From 6aa22eaf62ab6cd78073efbddbc2ff3b5f11883d Mon Sep 17 00:00:00 2001 From: Daniel Black Date: Wed, 7 Mar 2018 14:36:40 +1100 Subject: [PATCH 001/148] wsrep_sst_common: fix per shellcheck shellcheck -s sh wsrep_sst_common.sh In wsrep_sst_common.sh line 258: [ -n $3 ] && reval=$3 ^-- SC2070: -n doesn't work with unquoted arguments. Quote or use [[ ]]. ^-- SC2086: Double quote to prevent globbing and word splitting. --- scripts/wsrep_sst_common.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/wsrep_sst_common.sh b/scripts/wsrep_sst_common.sh index b9d9d04fef6..7f3fe23e0c4 100644 --- a/scripts/wsrep_sst_common.sh +++ b/scripts/wsrep_sst_common.sh @@ -255,7 +255,7 @@ parse_cnf() # use default if we haven't found a value if [ -z $reval ]; then - [ -n $3 ] && reval=$3 + [ -n "$3" ] && reval=$3 fi echo $reval } From 33e39f0682d966f67aa403a0be9bc7dbd44a69e6 Mon Sep 17 00:00:00 2001 From: Daniel Bartholomew Date: Thu, 3 May 2018 10:23:36 -0400 Subject: [PATCH 002/148] bump the VERSION --- VERSION | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/VERSION b/VERSION index 44f719ca097..23e938e60e1 100644 --- a/VERSION +++ b/VERSION @@ -1,4 +1,4 @@ MYSQL_VERSION_MAJOR=5 MYSQL_VERSION_MINOR=5 -MYSQL_VERSION_PATCH=60 +MYSQL_VERSION_PATCH=61 MYSQL_VERSION_EXTRA= From cf648afd5b336ea61eacb3d0c0e52e0777d12c16 Mon Sep 17 00:00:00 2001 From: Sergei Golubchik Date: Thu, 14 Jun 2018 15:12:13 +0200 Subject: [PATCH 003/148] fix galera sst tests note that ${A#foo} is $A if there's no prefix foo. That's why galera nodes tried to connect to 127.0.0.1:127.0.0.1 if there was no port in the address Followup for 2b35db5ac4e --- scripts/wsrep_sst_common.sh | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/scripts/wsrep_sst_common.sh b/scripts/wsrep_sst_common.sh index d20e3bc36c9..1f57f3ebbc2 100644 --- a/scripts/wsrep_sst_common.sh +++ b/scripts/wsrep_sst_common.sh @@ -41,15 +41,14 @@ case "$1" in addr_no_bracket=${WSREP_SST_OPT_ADDR#\[} readonly WSREP_SST_OPT_HOST_UNESCAPED=${addr_no_bracket%%\]*} readonly WSREP_SST_OPT_HOST="[${WSREP_SST_OPT_HOST_UNESCAPED}]" - remain=${WSREP_SST_OPT_ADDR#*\]} - remain=${remain#*:} ;; *) readonly WSREP_SST_OPT_HOST=${WSREP_SST_OPT_ADDR%%[:/]*} readonly WSREP_SST_OPT_HOST_UNESCAPED=$WSREP_SST_OPT_HOST - remain=${WSREP_SST_OPT_ADDR#*:} ;; esac + remain=${WSREP_SST_OPT_ADDR#${WSREP_SST_OPT_HOST}} + remain=${remain#:} readonly WSREP_SST_OPT_ADDR_PORT=${remain%%/*} remain=${remain#*/} readonly WSREP_SST_OPT_MODULE=${remain%%/*} From c09d54924a46df13daf68f61caf906b6fecefca1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jan=20Lindstr=C3=B6m?= Date: Thu, 19 Jul 2018 15:13:31 +0300 Subject: [PATCH 004/148] MDEV-10564: Galera `wsrep_debug` patch logs MySQL user credentials Restricted output for CREATE USER, GRANT, REVOKE and SET PASSWORD so that it shows only above keywords but not rest of query i.e. not user or password. --- sql/wsrep_mysqld.cc | 26 +++++++++++++++++++++++--- 1 file changed, 23 insertions(+), 3 deletions(-) diff --git a/sql/wsrep_mysqld.cc b/sql/wsrep_mysqld.cc index bd397a9a012..5b6575e7166 100644 --- a/sql/wsrep_mysqld.cc +++ b/sql/wsrep_mysqld.cc @@ -1317,6 +1317,25 @@ static bool wsrep_can_run_in_toi(THD *thd, const char *db, const char *table, } } +static const char* wsrep_get_query_or_msg(const THD* thd) +{ + switch(thd->lex->sql_command) + { + case SQLCOM_CREATE_USER: + return "CREATE USER"; + case SQLCOM_GRANT: + return "GRANT"; + case SQLCOM_REVOKE: + return "REVOKE"; + case SQLCOM_SET_OPTION: + if (thd->lex->definer) + return "SET PASSWORD"; + /* fallthrough */ + default: + return thd->query(); + } +} + /* returns: 0: statement was replicated as TOI @@ -1339,7 +1358,8 @@ static int wsrep_TOI_begin(THD *thd, char *db_, char *table_, } WSREP_DEBUG("TO BEGIN: %lld, %d : %s", (long long)wsrep_thd_trx_seqno(thd), - thd->wsrep_exec_mode, thd->query() ); + thd->wsrep_exec_mode, wsrep_get_query_or_msg(thd)); + switch (thd->lex->sql_command) { case SQLCOM_CREATE_VIEW: @@ -1413,8 +1433,8 @@ static void wsrep_TOI_end(THD *thd) { wsrep_status_t ret; wsrep_to_isolation--; - WSREP_DEBUG("TO END: %lld, %d : %s", (long long)wsrep_thd_trx_seqno(thd), - thd->wsrep_exec_mode, (thd->query()) ? thd->query() : "void"); + WSREP_DEBUG("TO END: %lld, %d: %s", (long long)wsrep_thd_trx_seqno(thd), + thd->wsrep_exec_mode, wsrep_get_query_or_msg(thd)); wsrep_set_SE_checkpoint(thd->wsrep_trx_meta.gtid.uuid, thd->wsrep_trx_meta.gtid.seqno); From f99fe68b4fb7ca1715d059d283e50f050f692294 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jan=20Lindstr=C3=B6m?= Date: Thu, 19 Jul 2018 21:05:36 +0300 Subject: [PATCH 005/148] Fix compile error. --- sql/sql_trigger.cc | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/sql/sql_trigger.cc b/sql/sql_trigger.cc index 34875824e2e..784464110cf 100644 --- a/sql/sql_trigger.cc +++ b/sql/sql_trigger.cc @@ -508,7 +508,9 @@ bool mysql_create_or_drop_trigger(THD *thd, TABLE_LIST *tables, bool create) if (err_status) goto end; } - WSREP_TO_ISOLATION_BEGIN(WSREP_MYSQL_DB, NULL, NULL); + + if (thd->wsrep_exec_mode == LOCAL_STATE) + WSREP_TO_ISOLATION_BEGIN(WSREP_MYSQL_DB, NULL, NULL); /* We should have only one table in table list. */ DBUG_ASSERT(tables->next_global == 0); From c863159c320008676aff978a7cdde5732678f975 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jan=20Lindstr=C3=B6m?= Date: Tue, 24 Jul 2018 14:54:50 +0300 Subject: [PATCH 006/148] MDEV-16799: Test wsrep.variables crash at sql_class.cc:639 thd_get_ha_data Problem was that binlog_hton was not initialized fully when needed i.e. when wsrep_on = true. --- sql/events.cc | 3 +++ sql/handler.cc | 1 + sql/log.cc | 12 ++---------- sql/log_event.cc | 5 ----- sql/sql_class.cc | 1 + sql/sql_insert.cc | 10 ++++++++-- sql/sql_parse.cc | 26 +++++++++++++++++++------- sql/wsrep_hton.cc | 21 ++++++++++++++------- sql/wsrep_mysqld.h | 3 +++ 9 files changed, 51 insertions(+), 31 deletions(-) diff --git a/sql/events.cc b/sql/events.cc index 661d9e19001..a30c1fadf75 100644 --- a/sql/events.cc +++ b/sql/events.cc @@ -331,6 +331,7 @@ Events::create_event(THD *thd, Event_parse_data *parse_data, if (check_access(thd, EVENT_ACL, parse_data->dbname.str, NULL, NULL, 0, 0)) DBUG_RETURN(TRUE); + WSREP_TO_ISOLATION_BEGIN(WSREP_MYSQL_DB, NULL, NULL); if (check_db_dir_existence(parse_data->dbname.str)) @@ -454,6 +455,7 @@ Events::update_event(THD *thd, Event_parse_data *parse_data, if (check_access(thd, EVENT_ACL, parse_data->dbname.str, NULL, NULL, 0, 0)) DBUG_RETURN(TRUE); + WSREP_TO_ISOLATION_BEGIN(WSREP_MYSQL_DB, NULL, NULL); if (new_dbname) /* It's a rename */ @@ -569,6 +571,7 @@ Events::drop_event(THD *thd, LEX_STRING dbname, LEX_STRING name, bool if_exists) if (check_access(thd, EVENT_ACL, dbname.str, NULL, NULL, 0, 0)) DBUG_RETURN(TRUE); + WSREP_TO_ISOLATION_BEGIN(WSREP_MYSQL_DB, NULL, NULL); /* diff --git a/sql/handler.cc b/sql/handler.cc index 128043a8d80..d8df91c82ab 100644 --- a/sql/handler.cc +++ b/sql/handler.cc @@ -4455,6 +4455,7 @@ handler::ha_create_partitioning_metadata(const char *name, const char *old_name, (!old_name && strcmp(name, table_share->path.str))); + mark_trx_read_write(); return create_partitioning_metadata(name, old_name, action_flag); } diff --git a/sql/log.cc b/sql/log.cc index 0098dd2ba3d..3034a6b894a 100644 --- a/sql/log.cc +++ b/sql/log.cc @@ -1707,16 +1707,8 @@ binlog_trans_log_truncate(THD *thd, my_off_t pos) int binlog_init(void *p) { binlog_hton= (handlerton *)p; -#ifdef WITH_WSREP - if (WSREP_ON) - binlog_hton->state= SHOW_OPTION_YES; - else - { -#endif /* WITH_WSREP */ - binlog_hton->state=opt_bin_log ? SHOW_OPTION_YES : SHOW_OPTION_NO; -#ifdef WITH_WSREP - } -#endif /* WITH_WSREP */ + binlog_hton->state= (WSREP_ON || opt_bin_log) ? SHOW_OPTION_YES + : SHOW_OPTION_NO; binlog_hton->db_type=DB_TYPE_BINLOG; binlog_hton->savepoint_offset= sizeof(my_off_t); binlog_hton->close_connection= binlog_close_connection; diff --git a/sql/log_event.cc b/sql/log_event.cc index 52df9fc5f84..5697f5fa707 100644 --- a/sql/log_event.cc +++ b/sql/log_event.cc @@ -7753,11 +7753,6 @@ User_var_log_event(const char* buf, uint event_len, we keep the flags set to UNDEF_F. */ uint bytes_read= ((val + val_len) - buf_start); - if (bytes_read > event_len) - { - error= true; - goto err; - } if ((data_written - bytes_read) > 0) { flags= (uint) *(buf + UV_VAL_IS_NULL + UV_VAL_TYPE_SIZE + diff --git a/sql/sql_class.cc b/sql/sql_class.cc index b3d964d4006..59746d466ea 100644 --- a/sql/sql_class.cc +++ b/sql/sql_class.cc @@ -6689,6 +6689,7 @@ int THD::binlog_query(THD::enum_binlog_query_type qtype, char const *query_arg, DBUG_ENTER("THD::binlog_query"); DBUG_PRINT("enter", ("qtype: %s query: '%-.*s'", show_query_type(qtype), (int) query_len, query_arg)); + #ifdef WITH_WSREP DBUG_ASSERT(query_arg && (WSREP_EMULATE_BINLOG(this) || mysql_bin_log.is_open())); diff --git a/sql/sql_insert.cc b/sql/sql_insert.cc index fa754d2da38..48fd4a2bd6e 100644 --- a/sql/sql_insert.cc +++ b/sql/sql_insert.cc @@ -4333,6 +4333,8 @@ bool select_create::send_eof() if (!table->s->tmp_table) { #ifdef WITH_WSREP + if (WSREP_ON) + { /* append table level exclusive key for CTAS */ @@ -4359,22 +4361,26 @@ bool select_create::send_eof() } /* If commit fails, we should be able to reset the OK status. */ thd->get_stmt_da()->set_overwrite_status(TRUE); + } #endif /* WITH_WSREP */ trans_commit_stmt(thd); if (!(thd->variables.option_bits & OPTION_GTID_BEGIN)) trans_commit_implicit(thd); #ifdef WITH_WSREP - thd->get_stmt_da()->set_overwrite_status(FALSE); + if (WSREP_ON) + { + thd->get_stmt_da()->set_overwrite_status(FALSE); mysql_mutex_lock(&thd->LOCK_wsrep_thd); if (thd->wsrep_conflict_state != NO_CONFLICT) { - WSREP_DEBUG("select_create commit failed, thd: %lu err: %d %s", + WSREP_DEBUG("select_create commit failed, thd: %lu err: %d %s", thd->thread_id, thd->wsrep_conflict_state, thd->query()); mysql_mutex_unlock(&thd->LOCK_wsrep_thd); abort_result_set(); DBUG_RETURN(true); } mysql_mutex_unlock(&thd->LOCK_wsrep_thd); + } #endif /* WITH_WSREP */ } else if (!thd->is_current_stmt_binlog_format_row()) diff --git a/sql/sql_parse.cc b/sql/sql_parse.cc index c353c50d8c0..2b11e492a94 100644 --- a/sql/sql_parse.cc +++ b/sql/sql_parse.cc @@ -5622,6 +5622,7 @@ finish: #ifdef WITH_WSREP else if (thd->spcont && (thd->wsrep_conflict_state == MUST_ABORT || + thd->wsrep_conflict_state == ABORTED || thd->wsrep_conflict_state == CERT_FAILURE)) { /* @@ -7017,7 +7018,9 @@ static void wsrep_mysql_parse(THD *thd, char *rawbuf, uint length, com_statement_info[thd->get_command()].m_key); MYSQL_SET_STATEMENT_TEXT(thd->m_statement_psi, thd->query(), thd->query_length()); + WSREP_DEBUG("Retry autocommit query: %s", thd->query()); } + mysql_parse(thd, rawbuf, length, parser_state); if (WSREP(thd)) { @@ -7031,6 +7034,11 @@ static void wsrep_mysql_parse(THD *thd, char *rawbuf, uint length, if (thd->wsrep_conflict_state == MUST_REPLAY) { + mysql_mutex_unlock(&thd->LOCK_wsrep_thd); + if (thd->lex->explain) + delete_explain_query(thd->lex); + mysql_mutex_lock(&thd->LOCK_wsrep_thd); + wsrep_replay_transaction(thd); } @@ -7044,7 +7052,7 @@ static void wsrep_mysql_parse(THD *thd, char *rawbuf, uint length, thd->lex->sql_command != SQLCOM_SELECT && (thd->wsrep_retry_counter < thd->variables.wsrep_retry_autocommit)) { - WSREP_DEBUG("wsrep retrying AC query: %s", + WSREP_DEBUG("wsrep retrying AC query: %s", (thd->query()) ? thd->query() : "void"); /* Performance Schema Interface instrumentation, end */ @@ -7061,27 +7069,31 @@ static void wsrep_mysql_parse(THD *thd, char *rawbuf, uint length, } else { - WSREP_DEBUG("%s, thd: %lu is_AC: %d, retry: %lu - %lu SQL: %s", - (thd->wsrep_conflict_state == ABORTED) ? + WSREP_DEBUG("%s, thd: %lu is_AC: %d, retry: %lu - %lu SQL: %s", + (thd->wsrep_conflict_state == ABORTED) ? "BF Aborted" : "cert failure", - thd->thread_id, is_autocommit, thd->wsrep_retry_counter, + thd->thread_id, is_autocommit, thd->wsrep_retry_counter, thd->variables.wsrep_retry_autocommit, thd->query()); my_error(ER_LOCK_DEADLOCK, MYF(0), "wsrep aborted transaction"); - thd->killed= NOT_KILLED; thd->wsrep_conflict_state= NO_CONFLICT; if (thd->wsrep_conflict_state != REPLAYING) thd->wsrep_retry_counter= 0; // reset } + + mysql_mutex_unlock(&thd->LOCK_wsrep_thd); + thd->reset_killed(); } else { set_if_smaller(thd->wsrep_retry_counter, 0); // reset; eventually ok + mysql_mutex_unlock(&thd->LOCK_wsrep_thd); } - mysql_mutex_unlock(&thd->LOCK_wsrep_thd); } /* If retry is requested clean up explain structure */ - if (thd->wsrep_conflict_state == RETRY_AUTOCOMMIT && thd->lex->explain) + if ((thd->wsrep_conflict_state == RETRY_AUTOCOMMIT || + thd->wsrep_conflict_state == MUST_REPLAY ) + && thd->lex->explain) delete_explain_query(thd->lex); } while (thd->wsrep_conflict_state== RETRY_AUTOCOMMIT); diff --git a/sql/wsrep_hton.cc b/sql/wsrep_hton.cc index 0a2264ac03c..734a0686a6d 100644 --- a/sql/wsrep_hton.cc +++ b/sql/wsrep_hton.cc @@ -24,6 +24,8 @@ #include #include "debug_sync.h" +extern handlerton *binlog_hton; +extern int binlog_close_connection(handlerton *hton, THD *thd); extern ulonglong thd_to_trx_id(THD *thd); extern "C" int thd_binlog_format(const MYSQL_THD thd); @@ -173,7 +175,10 @@ wsrep_close_connection(handlerton* hton, THD* thd) { DBUG_RETURN(0); } - DBUG_RETURN(wsrep_binlog_close_connection (thd)); + + if (wsrep_emulate_bin_log && thd_get_ha_data(thd, binlog_hton) != NULL) + binlog_hton->close_connection (binlog_hton, thd); + DBUG_RETURN(0); } /* @@ -256,9 +261,9 @@ static int wsrep_rollback(handlerton *hton, THD *thd, bool all) } if ((all || !thd_test_options(thd, OPTION_NOT_AUTOCOMMIT | OPTION_BEGIN)) && - thd->wsrep_conflict_state != MUST_REPLAY) + thd->variables.wsrep_on && thd->wsrep_conflict_state != MUST_REPLAY) { - if (WSREP(thd) && wsrep->post_rollback(wsrep, &thd->wsrep_ws_handle)) + if (wsrep && wsrep->post_rollback(wsrep, &thd->wsrep_ws_handle)) { DBUG_PRINT("wsrep", ("setting rollback fail")); WSREP_ERROR("settting rollback fail: thd: %llu, schema: %s, SQL: %s", @@ -299,12 +304,14 @@ int wsrep_commit(handlerton *hton, THD *thd, bool all) Transaction didn't go through wsrep->pre_commit() so just roll back possible changes to clean state. */ - if (WSREP(thd) && wsrep->post_rollback(wsrep, &thd->wsrep_ws_handle)) - { - DBUG_PRINT("wsrep", ("setting rollback fail")); - WSREP_ERROR("settting rollback fail: thd: %llu, schema: %s, SQL: %s", + if (WSREP_PROVIDER_EXISTS) { + if (wsrep && wsrep->post_rollback(wsrep, &thd->wsrep_ws_handle)) + { + DBUG_PRINT("wsrep", ("setting rollback fail")); + WSREP_ERROR("settting rollback fail: thd: %llu, schema: %s, SQL: %s", (long long)thd->real_id, (thd->db ? thd->db : "(null)"), thd->query()); + } } wsrep_cleanup_transaction(thd); } diff --git a/sql/wsrep_mysqld.h b/sql/wsrep_mysqld.h index 94c97f04aab..ee96a304f7b 100644 --- a/sql/wsrep_mysqld.h +++ b/sql/wsrep_mysqld.h @@ -204,6 +204,9 @@ extern void wsrep_prepend_PATH (const char* path); extern wsrep_seqno_t wsrep_locked_seqno; #define WSREP_ON \ + (global_system_variables.wsrep_on) + +#define WSREP_ON_NEW \ ((global_system_variables.wsrep_on) && \ wsrep_provider && \ strcmp(wsrep_provider, WSREP_NONE)) From 4d2b5523695ea6b6f7e6cde406165a09d517dfeb Mon Sep 17 00:00:00 2001 From: Daniele Sciascia Date: Tue, 22 May 2018 16:45:27 +0200 Subject: [PATCH 007/148] Fix FK constraint violation in applier, after ALTER TABLE ADD FK Adding a FK constraint to an existing table (ALTER TABLE ADD FOREIGN KEY) causes the applier to fail, if a concurrent DML statement that violate the new constraint (i.e. a DELETE or UPDATE of record in the parent table). For exmaple, the following scenario causes a crash in the applier: 1. ALTER successfully adds FK constraint in node_1 2. On node_2 is UPDATE is in pre_commit() and has certified successfully 3. ALTER is delivered in node_2 and BF aborts DML 4. Applying UPDATE event causes FK violation in node_1 To avoid this situation it is necessary for UPDATE to fail during certification. And for the UPDATE to fail certfication it is necessary that ALTER appends certification keys for both the child and the parent table. Before this patch, ALTER TABLE ADD FK only appended keys for child table which is ALTERed. --- .../suite/galera/r/mysql-wsrep#332.result | 111 ++++++++ .../suite/galera/t/mysql-wsrep#332.test | 113 ++++++++ scripts/mysql_config.pl | 2 +- sql/sql_alter.cc | 17 +- sql/sql_parse.h | 5 + sql/wsrep_mysqld.cc | 253 ++++++++++-------- sql/wsrep_mysqld.h | 4 +- 7 files changed, 383 insertions(+), 122 deletions(-) create mode 100644 mysql-test/suite/galera/r/mysql-wsrep#332.result create mode 100644 mysql-test/suite/galera/t/mysql-wsrep#332.test diff --git a/mysql-test/suite/galera/r/mysql-wsrep#332.result b/mysql-test/suite/galera/r/mysql-wsrep#332.result new file mode 100644 index 00000000000..8667f5e9c41 --- /dev/null +++ b/mysql-test/suite/galera/r/mysql-wsrep#332.result @@ -0,0 +1,111 @@ +CREATE TABLE p (f1 INTEGER PRIMARY KEY, f2 INTEGER) ENGINE=INNODB; +CREATE TABLE c (f1 INTEGER PRIMARY KEY, p_id INTEGER) ENGINE=INNODB; +INSERT INTO p VALUES (1, 0); +INSERT INTO p VALUES (2, 0); +INSERT INTO c VALUES (1, 1); +INSERT INTO c VALUES (2, 2); +SET AUTOCOMMIT=ON; +START TRANSACTION; +UPDATE p SET f1 = f1 + 100; +SET SESSION wsrep_sync_wait = 0; +SET GLOBAL wsrep_provider_options = 'dbug=d,apply_monitor_slave_enter_sync'; +ALTER TABLE c ADD FOREIGN KEY (p_id) REFERENCES p(f1); +SET SESSION wsrep_on = 0; +SET SESSION wsrep_on = 1; +SET GLOBAL wsrep_provider_options = 'dbug='; +SET GLOBAL wsrep_provider_options = 'dbug=d,local_monitor_enter_sync'; +COMMIT; +SET SESSION wsrep_on = 0; +SET SESSION wsrep_on = 1; +SET GLOBAL wsrep_provider_options = 'signal=apply_monitor_slave_enter_sync'; +SET GLOBAL wsrep_provider_options = 'signal=local_monitor_enter_sync'; +SET GLOBAL wsrep_provider_options = 'dbug='; +ERROR 40001: Deadlock found when trying to get lock; try restarting transaction +SELECT * FROM p; +f1 f2 +1 0 +2 0 +SELECT * FROM c; +f1 p_id +1 1 +2 2 +DROP TABLE c; +DROP TABLE p; +CREATE TABLE p1 (f1 INTEGER PRIMARY KEY, f2 INTEGER) ENGINE=INNODB; +CREATE TABLE p2 (f1 INTEGER PRIMARY KEY, f2 INTEGER) ENGINE=INNODB; +CREATE TABLE c (f1 INTEGER PRIMARY KEY, p_id1 INTEGER, p_id2 INTEGER) ENGINE=INNODB; +INSERT INTO p1 VALUES (1, 0), (2, 0); +INSERT INTO p2 VALUES (1, 0), (2, 0); +INSERT INTO c VALUES (1, 1, 1); +INSERT INTO c VALUES (2, 2, 2); +SET AUTOCOMMIT=ON; +START TRANSACTION; +UPDATE p1 SET f1 = f1 + 100; +SET SESSION wsrep_sync_wait = 0; +SET GLOBAL wsrep_provider_options = 'dbug=d,apply_monitor_slave_enter_sync'; +ALTER TABLE c ADD FOREIGN KEY (p_id1) REFERENCES p1(f1), ADD FOREIGN KEY (p_id2) REFERENCES p2(f1); +SET SESSION wsrep_on = 0; +SET SESSION wsrep_on = 1; +SET GLOBAL wsrep_provider_options = 'dbug='; +SET GLOBAL wsrep_provider_options = 'dbug=d,local_monitor_enter_sync'; +COMMIT; +SET SESSION wsrep_on = 0; +SET SESSION wsrep_on = 1; +SET GLOBAL wsrep_provider_options = 'signal=apply_monitor_slave_enter_sync'; +SET GLOBAL wsrep_provider_options = 'signal=local_monitor_enter_sync'; +SET GLOBAL wsrep_provider_options = 'dbug='; +ERROR 40001: Deadlock found when trying to get lock; try restarting transaction +SELECT * FROM p1; +f1 f2 +1 0 +2 0 +SELECT * FROM p2; +f1 f2 +1 0 +2 0 +SELECT * FROM c; +f1 p_id1 p_id2 +1 1 1 +2 2 2 +DROP TABLE c; +DROP TABLE p1; +DROP TABLE p2; +CREATE TABLE p1 (f1 INTEGER PRIMARY KEY, f2 INTEGER) ENGINE=INNODB; +CREATE TABLE p2 (f1 INTEGER PRIMARY KEY, f2 INTEGER) ENGINE=INNODB; +CREATE TABLE c (f1 INTEGER PRIMARY KEY, p_id1 INTEGER, p_id2 INTEGER) ENGINE=INNODB; +INSERT INTO p1 VALUES (1, 0), (2, 0); +INSERT INTO p2 VALUES (1, 0), (2, 0); +INSERT INTO c VALUES (1, 1, 1); +INSERT INTO c VALUES (2, 2, 2); +SET AUTOCOMMIT=ON; +START TRANSACTION; +UPDATE p2 SET f1 = f1 + 100; +SET SESSION wsrep_sync_wait = 0; +SET GLOBAL wsrep_provider_options = 'dbug=d,apply_monitor_slave_enter_sync'; +ALTER TABLE c ADD FOREIGN KEY (p_id1) REFERENCES p1(f1), ADD FOREIGN KEY (p_id2) REFERENCES p2(f1); +SET SESSION wsrep_on = 0; +SET SESSION wsrep_on = 1; +SET GLOBAL wsrep_provider_options = 'dbug='; +SET GLOBAL wsrep_provider_options = 'dbug=d,local_monitor_enter_sync'; +COMMIT; +SET SESSION wsrep_on = 0; +SET SESSION wsrep_on = 1; +SET GLOBAL wsrep_provider_options = 'signal=apply_monitor_slave_enter_sync'; +SET GLOBAL wsrep_provider_options = 'signal=local_monitor_enter_sync'; +SET GLOBAL wsrep_provider_options = 'dbug='; +ERROR 40001: Deadlock found when trying to get lock; try restarting transaction +SELECT * FROM p1; +f1 f2 +1 0 +2 0 +SELECT * FROM p2; +f1 f2 +1 0 +2 0 +SELECT * FROM c; +f1 p_id1 p_id2 +1 1 1 +2 2 2 +DROP TABLE c; +DROP TABLE p1; +DROP TABLE p2; diff --git a/mysql-test/suite/galera/t/mysql-wsrep#332.test b/mysql-test/suite/galera/t/mysql-wsrep#332.test new file mode 100644 index 00000000000..2da01ba900e --- /dev/null +++ b/mysql-test/suite/galera/t/mysql-wsrep#332.test @@ -0,0 +1,113 @@ +--source include/galera_cluster.inc +--source include/have_innodb.inc +--source include/have_debug_sync.inc +--source suite/galera/include/galera_have_debug_sync.inc + +# Open connection node_1a here, MW-369.inc will use it later +--connect node_1a, 127.0.0.1, root, , test, $NODE_MYPORT_1 + +# +# Test the scenario where a foreign key is added to an existing child table, and +# concurrently UPDATE the parent table so that it violates the constraint. +# +# We expect that ALTER TABLE ADD FOREIGN KEY adds a table level key on both +# parent and child table. And therefore we also expect the UPDATE to fail +# certification. +# +--connection node_1 +CREATE TABLE p (f1 INTEGER PRIMARY KEY, f2 INTEGER) ENGINE=INNODB; +CREATE TABLE c (f1 INTEGER PRIMARY KEY, p_id INTEGER) ENGINE=INNODB; + +INSERT INTO p VALUES (1, 0); +INSERT INTO p VALUES (2, 0); + +INSERT INTO c VALUES (1, 1); +INSERT INTO c VALUES (2, 2); + +--let $mw_369_parent_query = UPDATE p SET f1 = f1 + 100 +--let $mw_369_child_query = ALTER TABLE c ADD FOREIGN KEY (p_id) REFERENCES p(f1) + +--source MW-369.inc + +# Expect certification failure +--connection node_1 +--error ER_LOCK_DEADLOCK +--reap + +--connection node_2 +SELECT * FROM p; +SELECT * FROM c; + +DROP TABLE c; +DROP TABLE p; + + +# +# Same as above, except that two foreign keys pointing to different parent +# tables are added, p1 and p2. Concurrently UPDATE p1. +# +# Expect certification error on UPDATE. +# +--connection node_1 +CREATE TABLE p1 (f1 INTEGER PRIMARY KEY, f2 INTEGER) ENGINE=INNODB; +CREATE TABLE p2 (f1 INTEGER PRIMARY KEY, f2 INTEGER) ENGINE=INNODB; +CREATE TABLE c (f1 INTEGER PRIMARY KEY, p_id1 INTEGER, p_id2 INTEGER) ENGINE=INNODB; + +INSERT INTO p1 VALUES (1, 0), (2, 0); +INSERT INTO p2 VALUES (1, 0), (2, 0); + +INSERT INTO c VALUES (1, 1, 1); +INSERT INTO c VALUES (2, 2, 2); + +--let $mw_369_parent_query = UPDATE p1 SET f1 = f1 + 100 +--let $mw_369_child_query = ALTER TABLE c ADD FOREIGN KEY (p_id1) REFERENCES p1(f1), ADD FOREIGN KEY (p_id2) REFERENCES p2(f1) + +--source MW-369.inc + +# Expect certification failure +--connection node_1 +--error ER_LOCK_DEADLOCK +--reap + +--connection node_2 +SELECT * FROM p1; +SELECT * FROM p2; +SELECT * FROM c; + +DROP TABLE c; +DROP TABLE p1; +DROP TABLE p2; + + +# +# Same as above, except that UPDATE is on p2. +# +--connection node_1 +CREATE TABLE p1 (f1 INTEGER PRIMARY KEY, f2 INTEGER) ENGINE=INNODB; +CREATE TABLE p2 (f1 INTEGER PRIMARY KEY, f2 INTEGER) ENGINE=INNODB; +CREATE TABLE c (f1 INTEGER PRIMARY KEY, p_id1 INTEGER, p_id2 INTEGER) ENGINE=INNODB; + +INSERT INTO p1 VALUES (1, 0), (2, 0); +INSERT INTO p2 VALUES (1, 0), (2, 0); + +INSERT INTO c VALUES (1, 1, 1); +INSERT INTO c VALUES (2, 2, 2); + +--let $mw_369_parent_query = UPDATE p2 SET f1 = f1 + 100 +--let $mw_369_child_query = ALTER TABLE c ADD FOREIGN KEY (p_id1) REFERENCES p1(f1), ADD FOREIGN KEY (p_id2) REFERENCES p2(f1) + +--source MW-369.inc + +# Expect certification failure +--connection node_1 +--error ER_LOCK_DEADLOCK +--reap + +--connection node_2 +SELECT * FROM p1; +SELECT * FROM p2; +SELECT * FROM c; + +DROP TABLE c; +DROP TABLE p1; +DROP TABLE p2; diff --git a/scripts/mysql_config.pl b/scripts/mysql_config.pl index 113d8fc10be..c83aad5bc24 100644 --- a/scripts/mysql_config.pl +++ b/scripts/mysql_config.pl @@ -53,7 +53,7 @@ my $cwd = cwd(); my $basedir; my $socket = '/tmp/mysql.sock'; -my $version = '5.5.60'; +my $version = '5.5.61'; sub which { diff --git a/sql/sql_alter.cc b/sql/sql_alter.cc index 0b4636c1f0f..1d69b06d798 100644 --- a/sql/sql_alter.cc +++ b/sql/sql_alter.cc @@ -106,14 +106,10 @@ bool Alter_table_statement::execute(THD *thd) (!thd->is_current_stmt_binlog_format_row() || !find_temporary_table(thd, first_table))) { - if (wsrep_to_isolation_begin(thd, - lex->name.str ? select_lex->db : NULL, - lex->name.str ? lex->name.str : NULL, - first_table)) - { - WSREP_WARN("ALTER TABLE isolation failure"); - DBUG_RETURN(TRUE); - } + WSREP_TO_ISOLATION_BEGIN_ALTER(((lex->name.str) ? select_lex->db : NULL), + ((lex->name.str) ? lex->name.str : NULL), + first_table, + &alter_info); thd->variables.auto_increment_offset = 1; thd->variables.auto_increment_increment = 1; @@ -128,6 +124,11 @@ bool Alter_table_statement::execute(THD *thd) lex->ignore, lex->online); #ifdef WITH_WSREP +error: + { + WSREP_WARN("ALTER TABLE isolation failure"); + DBUG_RETURN(TRUE); + } #endif /* WITH_WSREP */ DBUG_RETURN(result); } diff --git a/sql/sql_parse.h b/sql/sql_parse.h index 2093ecc85ee..a0c1c89eecc 100644 --- a/sql/sql_parse.h +++ b/sql/sql_parse.h @@ -214,6 +214,11 @@ inline bool is_supported_parser_charset(CHARSET_INFO *cs) #define WSREP_TO_ISOLATION_BEGIN(db_, table_, table_list_) \ if (WSREP(thd) && wsrep_to_isolation_begin(thd, db_, table_, table_list_)) goto error; +#define WSREP_TO_ISOLATION_BEGIN_ALTER(db_, table_, table_list_, alter_info_) \ + if (WSREP(thd) && wsrep_to_isolation_begin(thd, db_, table_, \ + table_list_, alter_info_)) \ + goto error; + #define WSREP_TO_ISOLATION_END \ if (WSREP(thd) || (thd && thd->wsrep_exec_mode==TOTAL_ORDER)) \ wsrep_to_isolation_end(thd); diff --git a/sql/wsrep_mysqld.cc b/sql/wsrep_mysqld.cc index 54fdf430f86..a7950754666 100644 --- a/sql/wsrep_mysqld.cc +++ b/sql/wsrep_mysqld.cc @@ -981,43 +981,137 @@ static bool wsrep_prepare_key_for_isolation(const char* db, wsrep_buf_t* key, size_t* key_len) { - if (*key_len < 2) return false; + if (*key_len < 2) return false; - switch (wsrep_protocol_version) + switch (wsrep_protocol_version) + { + case 0: + *key_len= 0; + break; + case 1: + case 2: + case 3: + { + *key_len= 0; + if (db) { - case 0: - *key_len= 0; - break; - case 1: - case 2: - case 3: - { - *key_len= 0; - if (db) - { - // sql_print_information("%s.%s", db, table); - if (db) - { - key[*key_len].ptr= db; - key[*key_len].len= strlen(db); - ++(*key_len); - if (table) - { - key[*key_len].ptr= table; - key[*key_len].len= strlen(table); - ++(*key_len); - } - } - } - break; + // sql_print_information("%s.%s", db, table); + key[*key_len].ptr= db; + key[*key_len].len= strlen(db); + ++(*key_len); + if (table) + { + key[*key_len].ptr= table; + key[*key_len].len= strlen(table); + ++(*key_len); + } } - default: - return false; - } - - return true; + break; + } + default: + return false; + } + return true; } + +static bool wsrep_prepare_key_for_isolation(const char* db, + const char* table, + wsrep_key_arr_t* ka) +{ + wsrep_key_t* tmp; + tmp= (wsrep_key_t*)my_realloc(ka->keys, + (ka->keys_len + 1) * sizeof(wsrep_key_t), + MYF(0)); + if (!tmp) + { + WSREP_ERROR("Can't allocate memory for key_array"); + return false; + } + ka->keys= tmp; + if (!(ka->keys[ka->keys_len].key_parts= (wsrep_buf_t*) + my_malloc(sizeof(wsrep_buf_t)*2, MYF(0)))) + { + WSREP_ERROR("Can't allocate memory for key_parts"); + return false; + } + ka->keys[ka->keys_len].key_parts_num= 2; + ++ka->keys_len; + if (!wsrep_prepare_key_for_isolation(db, table, + (wsrep_buf_t*)ka->keys[ka->keys_len - 1].key_parts, + &ka->keys[ka->keys_len - 1].key_parts_num)) + { + WSREP_ERROR("Preparing keys for isolation failed"); + return false; + } + + return true; +} + + +static bool wsrep_prepare_keys_for_alter_add_fk(char* child_table_db, + Alter_info* alter_info, + wsrep_key_arr_t* ka) +{ + Key *key; + List_iterator key_iterator(alter_info->key_list); + while ((key= key_iterator++)) + { + if (key->type == Key::FOREIGN_KEY) + { + Foreign_key *fk_key= (Foreign_key *)key; + const char *db_name= fk_key->ref_table->db.str; + const char *table_name= fk_key->ref_table->table.str; + if (!db_name) + { + db_name= child_table_db; + } + if (!wsrep_prepare_key_for_isolation(db_name, table_name, ka)) + { + return false; + } + } + } + return true; +} + + +static bool wsrep_prepare_keys_for_isolation(THD* thd, + const char* db, + const char* table, + const TABLE_LIST* table_list, + Alter_info* alter_info, + wsrep_key_arr_t* ka) +{ + ka->keys= 0; + ka->keys_len= 0; + + if (db || table) + { + if (!wsrep_prepare_key_for_isolation(db, table, ka)) + goto err; + } + + for (const TABLE_LIST* table= table_list; table; table= table->next_global) + { + if (!wsrep_prepare_key_for_isolation(table->db, table->table_name, ka)) + goto err; + } + + if (alter_info && (alter_info->flags & ALTER_FOREIGN_KEY)) + { + if (!wsrep_prepare_keys_for_alter_add_fk(table_list->db, alter_info, ka)) + goto err; + } + + return false; + +err: + wsrep_keys_free(ka); + return true; +} + + /* Prepare key list from db/table and table_list */ bool wsrep_prepare_keys_for_isolation(THD* thd, const char* db, @@ -1025,78 +1119,7 @@ bool wsrep_prepare_keys_for_isolation(THD* thd, const TABLE_LIST* table_list, wsrep_key_arr_t* ka) { - ka->keys= 0; - ka->keys_len= 0; - - extern TABLE* find_temporary_table(THD*, const TABLE_LIST*); - - if (db || table) - { - TABLE_LIST tmp_table; - bzero((char*) &tmp_table,sizeof(tmp_table)); - tmp_table.table_name= (char*)db; - tmp_table.db= (char*)table; - if (!table || !find_temporary_table(thd, &tmp_table)) - { - if (!(ka->keys= (wsrep_key_t*)my_malloc(sizeof(wsrep_key_t), MYF(0)))) - { - WSREP_ERROR("Can't allocate memory for key_array"); - goto err; - } - ka->keys_len= 1; - if (!(ka->keys[0].key_parts= (wsrep_buf_t*) - my_malloc(sizeof(wsrep_buf_t)*2, MYF(0)))) - { - WSREP_ERROR("Can't allocate memory for key_parts"); - goto err; - } - ka->keys[0].key_parts_num= 2; - if (!wsrep_prepare_key_for_isolation( - db, table, - (wsrep_buf_t*)ka->keys[0].key_parts, - &ka->keys[0].key_parts_num)) - { - WSREP_ERROR("Preparing keys for isolation failed"); - goto err; - } - } - } - - for (const TABLE_LIST* table= table_list; table; table= table->next_global) - { - if (!find_temporary_table(thd, table)) - { - wsrep_key_t* tmp; - tmp= (wsrep_key_t*)my_realloc( - ka->keys, (ka->keys_len + 1) * sizeof(wsrep_key_t), MYF(0)); - if (!tmp) - { - WSREP_ERROR("Can't allocate memory for key_array"); - goto err; - } - ka->keys= tmp; - if (!(ka->keys[ka->keys_len].key_parts= (wsrep_buf_t*) - my_malloc(sizeof(wsrep_buf_t)*2, MYF(0)))) - { - WSREP_ERROR("Can't allocate memory for key_parts"); - goto err; - } - ka->keys[ka->keys_len].key_parts_num= 2; - ++ka->keys_len; - if (!wsrep_prepare_key_for_isolation( - table->db, table->table_name, - (wsrep_buf_t*)ka->keys[ka->keys_len - 1].key_parts, - &ka->keys[ka->keys_len - 1].key_parts_num)) - { - WSREP_ERROR("Preparing keys for isolation failed"); - goto err; - } - } - } - return true; -err: - wsrep_keys_free(ka); - return false; + return wsrep_prepare_keys_for_isolation(thd, db, table, table_list, NULL, ka); } @@ -1260,7 +1283,8 @@ create_view_query(THD *thd, uchar** buf, size_t* buf_len) } static int wsrep_TOI_begin(THD *thd, char *db_, char *table_, - const TABLE_LIST* table_list) + const TABLE_LIST* table_list, + Alter_info* alter_info) { wsrep_status_t ret(WSREP_WARNING); uchar* buf(0); @@ -1295,8 +1319,10 @@ static int wsrep_TOI_begin(THD *thd, char *db_, char *table_, wsrep_key_arr_t key_arr= {0, 0}; struct wsrep_buf buff = { buf, buf_len }; - if (!buf_err && - wsrep_prepare_keys_for_isolation(thd, db_, table_, table_list, &key_arr)&& + if (!buf_err && + !wsrep_prepare_keys_for_isolation(thd, db_, table_, + table_list, alter_info, &key_arr) && + key_arr.keys_len > 0 && WSREP_OK == (ret = wsrep->to_execute_start(wsrep, thd->thread_id, key_arr.keys, key_arr.keys_len, &buff, 1, @@ -1417,9 +1443,9 @@ static void wsrep_RSU_end(THD *thd) } int wsrep_to_isolation_begin(THD *thd, char *db_, char *table_, - const TABLE_LIST* table_list) + const TABLE_LIST* table_list, + Alter_info* alter_info) { - /* No isolation for applier or replaying threads. */ @@ -1469,9 +1495,12 @@ int wsrep_to_isolation_begin(THD *thd, char *db_, char *table_, if (thd->variables.wsrep_on && thd->wsrep_exec_mode==LOCAL_STATE) { switch (wsrep_OSU_method_options) { - case WSREP_OSU_TOI: ret = wsrep_TOI_begin(thd, db_, table_, - table_list); break; - case WSREP_OSU_RSU: ret = wsrep_RSU_begin(thd, db_, table_); break; + case WSREP_OSU_TOI: + ret= wsrep_TOI_begin(thd, db_, table_, table_list, alter_info); + break; + case WSREP_OSU_RSU: + ret= wsrep_RSU_begin(thd, db_, table_); + break; } if (!ret) { diff --git a/sql/wsrep_mysqld.h b/sql/wsrep_mysqld.h index 56e3baae7cc..b1dc5ba452b 100644 --- a/sql/wsrep_mysqld.h +++ b/sql/wsrep_mysqld.h @@ -305,8 +305,10 @@ extern PSI_mutex_key key_LOCK_wsrep_slave_threads; extern PSI_mutex_key key_LOCK_wsrep_desync; #endif /* HAVE_PSI_INTERFACE */ struct TABLE_LIST; +class Alter_info; int wsrep_to_isolation_begin(THD *thd, char *db_, char *table_, - const TABLE_LIST* table_list); + const TABLE_LIST* table_list, + Alter_info* alter_info = NULL); void wsrep_to_isolation_end(THD *thd); void wsrep_cleanup_transaction(THD *thd); int wsrep_to_buf_helper( From e88e26b4242e1c030bb138fca7ea2c916dbe6a76 Mon Sep 17 00:00:00 2001 From: Daniele Sciascia Date: Wed, 23 May 2018 14:13:11 +0200 Subject: [PATCH 008/148] Follow up to previous commit for codership/mysql-wsrep#332 Fix misplaced `DBUG_RETURN` in `Alter_table_statement::execute`. --- sql/sql_alter.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sql/sql_alter.cc b/sql/sql_alter.cc index 1d69b06d798..e343808cf77 100644 --- a/sql/sql_alter.cc +++ b/sql/sql_alter.cc @@ -123,6 +123,7 @@ bool Alter_table_statement::execute(THD *thd) select_lex->order_list.first, lex->ignore, lex->online); + DBUG_RETURN(result); #ifdef WITH_WSREP error: { @@ -130,5 +131,4 @@ error: DBUG_RETURN(TRUE); } #endif /* WITH_WSREP */ - DBUG_RETURN(result); } From 40f6bcb856ce05e15efd3070663af2686182147d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jan=20Lindstr=C3=B6m?= Date: Thu, 2 Aug 2018 20:35:44 +0300 Subject: [PATCH 009/148] Add missing WSREP(thd) condition and remove unnecessary DBUG_RETURN. --- sql/sql_alter.cc | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/sql/sql_alter.cc b/sql/sql_alter.cc index 1129b209775..0bf2d4be2ad 100644 --- a/sql/sql_alter.cc +++ b/sql/sql_alter.cc @@ -308,7 +308,8 @@ bool Sql_cmd_alter_table::execute(THD *thd) #ifdef WITH_WSREP TABLE *find_temporary_table(THD *thd, const TABLE_LIST *tl); - if ((!thd->is_current_stmt_binlog_format_row() || + if (WSREP(thd) && + (!thd->is_current_stmt_binlog_format_row() || !find_temporary_table(thd, first_table))) { WSREP_TO_ISOLATION_BEGIN_ALTER(((lex->name.str) ? select_lex->db : NULL), @@ -329,8 +330,6 @@ bool Sql_cmd_alter_table::execute(THD *thd) lex->ignore); DBUG_RETURN(result); - - DBUG_RETURN(result); #ifdef WITH_WSREP error: { From 1d414d9491db8b7252d37bcc917cd72a7869b313 Mon Sep 17 00:00:00 2001 From: Teemu Ollakka Date: Thu, 1 Mar 2018 17:07:07 +0200 Subject: [PATCH 010/148] codership/galera#501 Check cluster weight in galera_pc_weight test Check that cluster weight have proper values in galera_pc_weight test. Removed sleeps from tests and added condition waits for expected cluster sizes. Replaced galera suspend/resume with gmcast.isolate in order to avoid breaking client connections to server which is isolated from the cluster and to avoid the need to reset wsrep_cluster_address. Re-recorded galera_defaults. --- .../galera_3nodes/r/galera_pc_weight.result | 31 ++++++++-- .../galera_3nodes/t/galera_pc_weight.test | 58 ++++++++++--------- 2 files changed, 57 insertions(+), 32 deletions(-) diff --git a/mysql-test/suite/galera_3nodes/r/galera_pc_weight.result b/mysql-test/suite/galera_3nodes/r/galera_pc_weight.result index 6fb931638ef..9f845ffe776 100644 --- a/mysql-test/suite/galera_3nodes/r/galera_pc_weight.result +++ b/mysql-test/suite/galera_3nodes/r/galera_pc_weight.result @@ -1,11 +1,17 @@ +SELECT VARIABLE_VALUE = 3 FROM INFORMATION_SCHEMA.GLOBAL_STATUS WHERE VARIABLE_NAME = 'wsrep_cluster_weight'; +VARIABLE_VALUE = 3 SET GLOBAL wsrep_provider_options = 'pc.weight=3'; -Suspending node ... +SELECT VARIABLE_VALUE = 5 FROM INFORMATION_SCHEMA.GLOBAL_STATUS WHERE VARIABLE_NAME = 'wsrep_cluster_weight'; +VARIABLE_VALUE = 5 +SET GLOBAL wsrep_provider_options = 'gmcast.isolate=1'; SET SESSION wsrep_sync_wait=0; SET SESSION wsrep_on=OFF; SET SESSION wsrep_on=ON; SHOW STATUS LIKE 'wsrep_cluster_size'; Variable_name Value wsrep_cluster_size 2 +SHOW STATUS LIKE 'wsrep_cluster_weight'; +Variable_name Value SHOW STATUS LIKE 'wsrep_cluster_status'; Variable_name Value wsrep_cluster_status non-Primary @@ -22,9 +28,13 @@ SHOW STATUS LIKE 'wsrep_local_state_comment'; Variable_name Value wsrep_local_state_comment Initialized SET SESSION wsrep_sync_wait=0; +SET SESSION wsrep_on=OFF; +SET SESSION wsrep_on=ON; SHOW STATUS LIKE 'wsrep_cluster_size'; Variable_name Value wsrep_cluster_size 2 +SHOW STATUS LIKE 'wsrep_cluster_weight'; +Variable_name Value SHOW STATUS LIKE 'wsrep_cluster_status'; Variable_name Value wsrep_cluster_status non-Primary @@ -40,7 +50,8 @@ wsrep_local_state 0 SHOW STATUS LIKE 'wsrep_local_state_comment'; Variable_name Value wsrep_local_state_comment Initialized -Resuming node ... +SELECT VARIABLE_VALUE = 3 FROM INFORMATION_SCHEMA.GLOBAL_STATUS WHERE VARIABLE_NAME = 'wsrep_cluster_weight'; +VARIABLE_VALUE = 3 SELECT VARIABLE_VALUE = 'Primary' FROM INFORMATION_SCHEMA.GLOBAL_STATUS WHERE VARIABLE_NAME = 'wsrep_cluster_status'; VARIABLE_VALUE = 'Primary' 1 @@ -57,11 +68,14 @@ SELECT VARIABLE_VALUE = 'Synced' FROM INFORMATION_SCHEMA.GLOBAL_STATUS WHERE VAR VARIABLE_VALUE = 'Synced' 1 SET GLOBAL wsrep_provider_options = 'pc.weight=1'; -SET SESSION wsrep_sync_wait=0; -SET SESSION wsrep_sync_wait=0; +SELECT VARIABLE_VALUE = 1 FROM INFORMATION_SCHEMA.GLOBAL_STATUS WHERE VARIABLE_NAME = 'wsrep_cluster_weight'; +VARIABLE_VALUE = 1 +SET GLOBAL wsrep_provider_options = 'gmcast.isolate=0'; SELECT VARIABLE_VALUE = 3 FROM INFORMATION_SCHEMA.GLOBAL_STATUS WHERE VARIABLE_NAME = 'wsrep_cluster_size'; VARIABLE_VALUE = 3 1 +SELECT VARIABLE_VALUE = 3 FROM INFORMATION_SCHEMA.GLOBAL_STATUS WHERE VARIABLE_NAME = 'wsrep_cluster_weight'; +VARIABLE_VALUE = 3 SELECT VARIABLE_VALUE = 'Primary' FROM INFORMATION_SCHEMA.GLOBAL_STATUS WHERE VARIABLE_NAME = 'wsrep_cluster_status'; VARIABLE_VALUE = 'Primary' 1 @@ -80,6 +94,8 @@ VARIABLE_VALUE = 'Synced' SELECT VARIABLE_VALUE = 3 FROM INFORMATION_SCHEMA.GLOBAL_STATUS WHERE VARIABLE_NAME = 'wsrep_cluster_size'; VARIABLE_VALUE = 3 1 +SELECT VARIABLE_VALUE = 3 FROM INFORMATION_SCHEMA.GLOBAL_STATUS WHERE VARIABLE_NAME = 'wsrep_cluster_weight'; +VARIABLE_VALUE = 3 SELECT VARIABLE_VALUE = 'Primary' FROM INFORMATION_SCHEMA.GLOBAL_STATUS WHERE VARIABLE_NAME = 'wsrep_cluster_status'; VARIABLE_VALUE = 'Primary' 1 @@ -98,6 +114,8 @@ VARIABLE_VALUE = 'Synced' SELECT VARIABLE_VALUE = 3 FROM INFORMATION_SCHEMA.GLOBAL_STATUS WHERE VARIABLE_NAME = 'wsrep_cluster_size'; VARIABLE_VALUE = 3 1 +SELECT VARIABLE_VALUE = 3 FROM INFORMATION_SCHEMA.GLOBAL_STATUS WHERE VARIABLE_NAME = 'wsrep_cluster_weight'; +VARIABLE_VALUE = 3 SELECT VARIABLE_VALUE = 'Primary' FROM INFORMATION_SCHEMA.GLOBAL_STATUS WHERE VARIABLE_NAME = 'wsrep_cluster_status'; VARIABLE_VALUE = 'Primary' 1 @@ -116,6 +134,9 @@ VARIABLE_VALUE = 'Synced' SET GLOBAL wsrep_provider_options = 'pc.weight=1'; CALL mtr.add_suppression('WSREP: gcs_caused\\(\\) returned -1'); CALL mtr.add_suppression('overriding reported weight for'); +CALL mtr.add_suppression('SYNC message from member'); +CALL mtr.add_suppression('user message in state LEAVING'); +CALL mtr.add_suppression('sending install message failed: (Transport endpoint is not connected|Socket is not connected)'); CALL mtr.add_suppression('WSREP: user message in state LEAVING'); -CALL mtr.add_suppression('sending install message failed: Transport endpoint is not connected'); +CALL mtr.add_suppression('sending install message failed: (Transport endpoint is not connected|Socket is not connected)'); CALL mtr.add_suppression('overriding reported weight for'); diff --git a/mysql-test/suite/galera_3nodes/t/galera_pc_weight.test b/mysql-test/suite/galera_3nodes/t/galera_pc_weight.test index c118b7481bc..0a94e7cd85d 100644 --- a/mysql-test/suite/galera_3nodes/t/galera_pc_weight.test +++ b/mysql-test/suite/galera_3nodes/t/galera_pc_weight.test @@ -8,17 +8,16 @@ --source include/have_innodb.inc --connection node_1 +SELECT VARIABLE_VALUE = 3 FROM INFORMATION_SCHEMA.GLOBAL_STATUS WHERE VARIABLE_NAME = 'wsrep_cluster_weight'; SET GLOBAL wsrep_provider_options = 'pc.weight=3'; +SELECT VARIABLE_VALUE = 5 FROM INFORMATION_SCHEMA.GLOBAL_STATUS WHERE VARIABLE_NAME = 'wsrep_cluster_weight'; ---source include/wait_until_connected_again.inc ---source include/galera_suspend.inc ---sleep 10 +# Isolate node_1 from the cluster. +SET GLOBAL wsrep_provider_options = 'gmcast.isolate=1'; --connection node_2 # Do not wait for causality as we are no longer in the primary component SET SESSION wsrep_sync_wait=0; ---source include/wait_until_connected_again.inc - SET SESSION wsrep_on=OFF; --let $wait_condition = SELECT VARIABLE_VALUE = 'non-Primary' FROM INFORMATION_SCHEMA.GLOBAL_STATUS WHERE VARIABLE_NAME = 'wsrep_cluster_status' --source include/wait_condition.inc @@ -26,8 +25,9 @@ SET SESSION wsrep_on=ON; # We can not use SELECT queries here, as only SHOW is allowed to run. # For nodes #2 and #3, we expect a non-primary component of size 2 - +# and cluster weight 0 SHOW STATUS LIKE 'wsrep_cluster_size'; +SHOW STATUS LIKE 'wsrep_cluster_weight'; SHOW STATUS LIKE 'wsrep_cluster_status'; SHOW STATUS LIKE 'wsrep_connected'; SHOW STATUS LIKE 'wsrep_ready'; @@ -39,9 +39,13 @@ SHOW STATUS LIKE 'wsrep_local_state_comment'; --source include/galera_connect.inc --connection node_3 SET SESSION wsrep_sync_wait=0; ---source include/wait_until_connected_again.inc +SET SESSION wsrep_on=OFF; +--let $wait_condition = SELECT VARIABLE_VALUE = 'non-Primary' FROM INFORMATION_SCHEMA.GLOBAL_STATUS WHERE VARIABLE_NAME = 'wsrep_cluster_status' +--source include/wait_condition.inc +SET SESSION wsrep_on=ON; SHOW STATUS LIKE 'wsrep_cluster_size'; +SHOW STATUS LIKE 'wsrep_cluster_weight'; SHOW STATUS LIKE 'wsrep_cluster_status'; SHOW STATUS LIKE 'wsrep_connected'; SHOW STATUS LIKE 'wsrep_ready'; @@ -49,15 +53,13 @@ SHOW STATUS LIKE 'wsrep_local_state'; SHOW STATUS LIKE 'wsrep_local_state_comment'; --connection node_1 ---source include/galera_resume.inc ---sleep 10 ---source include/wait_until_connected_again.inc # For Node #1, we expect a primary component of size 1 --let $wait_condition = SELECT VARIABLE_VALUE = 1 FROM INFORMATION_SCHEMA.GLOBAL_STATUS WHERE VARIABLE_NAME = 'wsrep_cluster_size' --source include/wait_condition.inc +SELECT VARIABLE_VALUE = 3 FROM INFORMATION_SCHEMA.GLOBAL_STATUS WHERE VARIABLE_NAME = 'wsrep_cluster_weight'; SELECT VARIABLE_VALUE = 'Primary' FROM INFORMATION_SCHEMA.GLOBAL_STATUS WHERE VARIABLE_NAME = 'wsrep_cluster_status'; SELECT VARIABLE_VALUE = 'ON' FROM INFORMATION_SCHEMA.GLOBAL_STATUS WHERE VARIABLE_NAME = 'wsrep_connected'; SELECT VARIABLE_VALUE = 'ON' FROM INFORMATION_SCHEMA.GLOBAL_STATUS WHERE VARIABLE_NAME = 'wsrep_ready'; @@ -65,30 +67,27 @@ SELECT VARIABLE_VALUE = 4 FROM INFORMATION_SCHEMA.GLOBAL_STATUS WHERE VARIABLE_N SELECT VARIABLE_VALUE = 'Synced' FROM INFORMATION_SCHEMA.GLOBAL_STATUS WHERE VARIABLE_NAME = 'wsrep_local_state_comment'; SET GLOBAL wsrep_provider_options = 'pc.weight=1'; +SELECT VARIABLE_VALUE = 1 FROM INFORMATION_SCHEMA.GLOBAL_STATUS WHERE VARIABLE_NAME = 'wsrep_cluster_weight'; -# Restore the cluster by resetting wsrep_cluster_address on nodes #1 and #2 +# Resume cluster connectivity on node_1 +--connection node_1 +SET GLOBAL wsrep_provider_options = 'gmcast.isolate=0'; + +--let $wait_condition = SELECT VARIABLE_VALUE = 3 FROM INFORMATION_SCHEMA.GLOBAL_STATUS WHERE VARIABLE_NAME = 'wsrep_cluster_size' +--source include/wait_condition.inc --connection node_2 ---disable_query_log ---eval SET GLOBAL wsrep_cluster_address = @@wsrep_cluster_address; ---enable_query_log - -SET SESSION wsrep_sync_wait=0; ---source include/wait_until_connected_again.inc +--source include/wait_condition.inc --connection node_3 ---disable_query_log ---eval SET GLOBAL wsrep_cluster_address = @@wsrep_cluster_address; ---enable_query_log - -SET SESSION wsrep_sync_wait=0; ---source include/wait_until_connected_again.inc - -# On all nodes, we now expect a Primary component of size 3, Synced and ready +--source include/wait_condition.inc --connection node_1 ---source include/wait_until_connected_again.inc +--source include/wait_condition.inc + +# On all nodes, we now expect a Primary component of size 3, weight 3, Synced and ready SELECT VARIABLE_VALUE = 3 FROM INFORMATION_SCHEMA.GLOBAL_STATUS WHERE VARIABLE_NAME = 'wsrep_cluster_size'; +SELECT VARIABLE_VALUE = 3 FROM INFORMATION_SCHEMA.GLOBAL_STATUS WHERE VARIABLE_NAME = 'wsrep_cluster_weight'; SELECT VARIABLE_VALUE = 'Primary' FROM INFORMATION_SCHEMA.GLOBAL_STATUS WHERE VARIABLE_NAME = 'wsrep_cluster_status'; SELECT VARIABLE_VALUE = 'ON' FROM INFORMATION_SCHEMA.GLOBAL_STATUS WHERE VARIABLE_NAME = 'wsrep_connected'; SELECT VARIABLE_VALUE = 'ON' FROM INFORMATION_SCHEMA.GLOBAL_STATUS WHERE VARIABLE_NAME = 'wsrep_ready'; @@ -97,6 +96,7 @@ SELECT VARIABLE_VALUE = 'Synced' FROM INFORMATION_SCHEMA.GLOBAL_STATUS WHERE VAR --connection node_2 SELECT VARIABLE_VALUE = 3 FROM INFORMATION_SCHEMA.GLOBAL_STATUS WHERE VARIABLE_NAME = 'wsrep_cluster_size'; +SELECT VARIABLE_VALUE = 3 FROM INFORMATION_SCHEMA.GLOBAL_STATUS WHERE VARIABLE_NAME = 'wsrep_cluster_weight'; SELECT VARIABLE_VALUE = 'Primary' FROM INFORMATION_SCHEMA.GLOBAL_STATUS WHERE VARIABLE_NAME = 'wsrep_cluster_status'; SELECT VARIABLE_VALUE = 'ON' FROM INFORMATION_SCHEMA.GLOBAL_STATUS WHERE VARIABLE_NAME = 'wsrep_connected'; SELECT VARIABLE_VALUE = 'ON' FROM INFORMATION_SCHEMA.GLOBAL_STATUS WHERE VARIABLE_NAME = 'wsrep_ready'; @@ -105,6 +105,7 @@ SELECT VARIABLE_VALUE = 'Synced' FROM INFORMATION_SCHEMA.GLOBAL_STATUS WHERE VAR --connection node_3 SELECT VARIABLE_VALUE = 3 FROM INFORMATION_SCHEMA.GLOBAL_STATUS WHERE VARIABLE_NAME = 'wsrep_cluster_size'; +SELECT VARIABLE_VALUE = 3 FROM INFORMATION_SCHEMA.GLOBAL_STATUS WHERE VARIABLE_NAME = 'wsrep_cluster_weight'; SELECT VARIABLE_VALUE = 'Primary' FROM INFORMATION_SCHEMA.GLOBAL_STATUS WHERE VARIABLE_NAME = 'wsrep_cluster_status'; SELECT VARIABLE_VALUE = 'ON' FROM INFORMATION_SCHEMA.GLOBAL_STATUS WHERE VARIABLE_NAME = 'wsrep_connected'; SELECT VARIABLE_VALUE = 'ON' FROM INFORMATION_SCHEMA.GLOBAL_STATUS WHERE VARIABLE_NAME = 'wsrep_ready'; @@ -121,8 +122,11 @@ CALL mtr.add_suppression('WSREP: gcs_caused\\(\\) returned -1'); --connection node_2 CALL mtr.add_suppression('overriding reported weight for'); +CALL mtr.add_suppression('SYNC message from member'); +CALL mtr.add_suppression('user message in state LEAVING'); +CALL mtr.add_suppression('sending install message failed: (Transport endpoint is not connected|Socket is not connected)'); --connection node_3 CALL mtr.add_suppression('WSREP: user message in state LEAVING'); -CALL mtr.add_suppression('sending install message failed: Transport endpoint is not connected'); +CALL mtr.add_suppression('sending install message failed: (Transport endpoint is not connected|Socket is not connected)'); CALL mtr.add_suppression('overriding reported weight for'); From 639bd1c71f52f0bd6d91b33d9bee53a8c35d760b Mon Sep 17 00:00:00 2001 From: mkaruza Date: Fri, 6 Jul 2018 11:53:43 +0200 Subject: [PATCH 011/148] galera#505 mtr test MTR test for galera#505 --- mysql-test/suite/galera/r/galera#505.result | 5 +++++ mysql-test/suite/galera/t/galera#505.test | 17 +++++++++++++++++ 2 files changed, 22 insertions(+) create mode 100644 mysql-test/suite/galera/r/galera#505.result create mode 100644 mysql-test/suite/galera/t/galera#505.test diff --git a/mysql-test/suite/galera/r/galera#505.result b/mysql-test/suite/galera/r/galera#505.result new file mode 100644 index 00000000000..9ae09cac187 --- /dev/null +++ b/mysql-test/suite/galera/r/galera#505.result @@ -0,0 +1,5 @@ +SET GLOBAL wsrep_provider_options = 'pc.weight=3'; +SHOW GLOBAL VARIABLES LIKE 'wsrep_provider_options'; +Variable_name Value +wsrep_provider_options pc.weight = 3 +SET GLOBAL wsrep_provider_options = 'pc.weight=1'; diff --git a/mysql-test/suite/galera/t/galera#505.test b/mysql-test/suite/galera/t/galera#505.test new file mode 100644 index 00000000000..74aa781bc54 --- /dev/null +++ b/mysql-test/suite/galera/t/galera#505.test @@ -0,0 +1,17 @@ +# galera#505 - Change of pc.weight wsrep param will be correctly stored in wsrep_provider_options variable + +--source include/galera_cluster.inc + +--connection node_1 + +# Convert "... pc.weight = N; ..." to "N; ..." +--let $s1 = `SELECT SUBSTR(@@wsrep_provider_options, LOCATE('pc.weight =', @@wsrep_provider_options) + LENGTH('pc.weight = '))` +# Convert "N; ..." to "N" +--let $pc_weight_value = `SELECT SUBSTR('$s1', 1, LOCATE(';', '$s1') - 1)` + +SET GLOBAL wsrep_provider_options = 'pc.weight=3'; + +-- replace_regex /.*(pc\.weight = [0-9]+);.*/\1/ +SHOW GLOBAL VARIABLES LIKE 'wsrep_provider_options'; + +--eval SET GLOBAL wsrep_provider_options = 'pc.weight=$pc_weight_value' From 62e290923e0d9caedeb91e40d16b5dcef983048f Mon Sep 17 00:00:00 2001 From: Vasil Dimov Date: Mon, 16 Jul 2018 09:41:37 +0200 Subject: [PATCH 012/148] Put one filter per line in wsrep_sst_rsync.sh This way it is more readable and easy to change, also if a new entry is added or one removed, the diff will be easier to read. --- scripts/wsrep_sst_rsync.sh | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/scripts/wsrep_sst_rsync.sh b/scripts/wsrep_sst_rsync.sh index 5617142ea99..89afaa6ecbd 100644 --- a/scripts/wsrep_sst_rsync.sh +++ b/scripts/wsrep_sst_rsync.sh @@ -120,8 +120,14 @@ fi # --exclude '*.[0-9][0-9][0-9][0-9][0-9][0-9]' --exclude '*.index') # New filter - exclude everything except dirs (schemas) and innodb files -FILTER=(-f '- /lost+found' -f '- /.fseventsd' -f '- /.Trashes' - -f '+ /wsrep_sst_binlog.tar' -f '+ /ib_lru_dump' -f '+ /ibdata*' -f '+ /*/' -f '- /*') +FILTER=(-f '- /lost+found' + -f '- /.fseventsd' + -f '- /.Trashes' + -f '+ /wsrep_sst_binlog.tar' + -f '+ /ib_lru_dump' + -f '+ /ibdata*' + -f '+ /*/' + -f '- /*') if [ "$WSREP_SST_OPT_ROLE" = "donor" ] then From 3f0cd66a2bf5a1addfa2b020305ebc4e93ce51d1 Mon Sep 17 00:00:00 2001 From: Vasil Dimov Date: Mon, 16 Jul 2018 09:42:53 +0200 Subject: [PATCH 013/148] Also include InnoDB undo tablespaces in rsync sst If --innodb-undo-tablespaces is used, then InnoDB stores undo in a separate file(s) which whould also be replicated. This fixes Issue#337 This filter will cause sst failed at applying undo... https://github.com/codership/mysql-wsrep/issues/337 --- scripts/wsrep_sst_rsync.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/scripts/wsrep_sst_rsync.sh b/scripts/wsrep_sst_rsync.sh index 89afaa6ecbd..7dd78dd86d3 100644 --- a/scripts/wsrep_sst_rsync.sh +++ b/scripts/wsrep_sst_rsync.sh @@ -126,6 +126,7 @@ FILTER=(-f '- /lost+found' -f '+ /wsrep_sst_binlog.tar' -f '+ /ib_lru_dump' -f '+ /ibdata*' + -f '+ /undo*' -f '+ /*/' -f '- /*') From 9808e23a7aceeea69112fe8b6bf54460ecf4bb65 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jan=20Lindstr=C3=B6m?= Date: Fri, 3 Aug 2018 13:44:30 +0300 Subject: [PATCH 014/148] MariaDB adjustments. --- mysql-test/suite/galera/disabled.def | 1 + sql/wsrep_mysqld.cc | 18 +++++++++++++++--- 2 files changed, 16 insertions(+), 3 deletions(-) diff --git a/mysql-test/suite/galera/disabled.def b/mysql-test/suite/galera/disabled.def index fad1e69d4d7..bb5bd04c1f1 100644 --- a/mysql-test/suite/galera/disabled.def +++ b/mysql-test/suite/galera/disabled.def @@ -51,3 +51,4 @@ galera_admin : MDEV-13549 Galera test failures MW-416 : MDEV-13549 Galera test failures galera_wan : MDEV-13549 Galera test failures MW-388 : MDEV-13549 Galera test failures +galera#505 : Requires galera library version 25.3.24 diff --git a/sql/wsrep_mysqld.cc b/sql/wsrep_mysqld.cc index 91dbe75408a..bfd22ff1900 100644 --- a/sql/wsrep_mysqld.cc +++ b/sql/wsrep_mysqld.cc @@ -538,6 +538,9 @@ int wsrep_init() wsrep->provider_vendor, sizeof(provider_vendor) - 1); } + if (!wsrep_data_home_dir || strlen(wsrep_data_home_dir) == 0) + wsrep_data_home_dir = mysql_real_data_home; + char node_addr[512]= { 0, }; size_t const node_addr_max= sizeof(node_addr) - 1; if (!wsrep_node_address || !strcmp(wsrep_node_address, "")) @@ -933,9 +936,15 @@ static bool wsrep_prepare_key_for_isolation(const char* db, wsrep_key_arr_t* ka) { wsrep_key_t* tmp; - tmp= (wsrep_key_t*)my_realloc(ka->keys, - (ka->keys_len + 1) * sizeof(wsrep_key_t), - MYF(0)); + + if (!ka->keys) + tmp= (wsrep_key_t*)my_malloc((ka->keys_len + 1) * sizeof(wsrep_key_t), + MYF(0)); + else + tmp= (wsrep_key_t*)my_realloc(ka->keys, + (ka->keys_len + 1) * sizeof(wsrep_key_t), + MYF(0)); + if (!tmp) { WSREP_ERROR("Can't allocate memory for key_array"); @@ -1410,6 +1419,9 @@ static int wsrep_TOI_begin(THD *thd, char *db_, char *table_, case SQLCOM_ALTER_EVENT: buf_err= wsrep_alter_event_query(thd, &buf, &buf_len); break; + case SQLCOM_DROP_TABLE: + buf_err= wsrep_drop_table_query(thd, &buf, &buf_len); + break; case SQLCOM_CREATE_ROLE: if (sp_process_definer(thd)) { From ea0356e1ad506e55f2c26808c9b0e2d88953c79e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jan=20Lindstr=C3=B6m?= Date: Fri, 3 Aug 2018 16:43:32 +0300 Subject: [PATCH 015/148] Add galera library dependency directly to test case. --- mysql-test/suite/galera/disabled.def | 2 +- mysql-test/suite/galera/t/galera#505.test | 15 +++++++++++++++ 2 files changed, 16 insertions(+), 1 deletion(-) diff --git a/mysql-test/suite/galera/disabled.def b/mysql-test/suite/galera/disabled.def index bb5bd04c1f1..1dd3128a2d7 100644 --- a/mysql-test/suite/galera/disabled.def +++ b/mysql-test/suite/galera/disabled.def @@ -51,4 +51,4 @@ galera_admin : MDEV-13549 Galera test failures MW-416 : MDEV-13549 Galera test failures galera_wan : MDEV-13549 Galera test failures MW-388 : MDEV-13549 Galera test failures -galera#505 : Requires galera library version 25.3.24 + diff --git a/mysql-test/suite/galera/t/galera#505.test b/mysql-test/suite/galera/t/galera#505.test index 74aa781bc54..78cdf53db74 100644 --- a/mysql-test/suite/galera/t/galera#505.test +++ b/mysql-test/suite/galera/t/galera#505.test @@ -2,6 +2,21 @@ --source include/galera_cluster.inc +--disable_query_log +select CAST(REGEXP_REPLACE(variable_value,'^(\\d+)\\.(\\d+)\\.(\\d+)(r\\d+)','\\3') AS UNSIGNED) FROM INFORMATION_SCHEMA.GLOBAL_STATUS WHERE VARIABLE_NAME LIKE 'wsrep_provider_version' INTO @GALERA_VERSION; + +# Make sure that the test is operating on the right version of galera library. +--let $galera_version=24 +eval SET @REQUIRED_GALERA_VERSION='$galera_version'; + +SELECT @GALERA_VERSION, @REQUIRED_GALERA_VERSION; + +if (!`SELECT (@GALERA_VERSION < @REQUIRED_GALERA_VERSION)`) +{ + skip Test requires Galera library version 25.3.$galera_version; +} +--enable_query_log + --connection node_1 # Convert "... pc.weight = N; ..." to "N; ..." From 5d90717cc9e05f2a3bfe137031eb15fc1e291ad7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jan=20Lindstr=C3=B6m?= Date: Sat, 4 Aug 2018 11:28:25 +0300 Subject: [PATCH 016/148] Add wsrep.cnf --- support-files/CMakeLists.txt | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/support-files/CMakeLists.txt b/support-files/CMakeLists.txt index 80de8333db8..36340a2fbe7 100644 --- a/support-files/CMakeLists.txt +++ b/support-files/CMakeLists.txt @@ -102,6 +102,12 @@ IF(UNIX) DESTINATION ${inst_location} COMPONENT SupportFiles PERMISSIONS OWNER_READ OWNER_WRITE OWNER_EXECUTE GROUP_READ GROUP_EXECUTE WORLD_READ WORLD_EXECUTE) + CONFIGURE_FILE(${CMAKE_CURRENT_SOURCE_DIR}/wsrep.cnf.sh + ${CMAKE_CURRENT_BINARY_DIR}/wsrep.cnf @ONLY) + INSTALL(FILES ${CMAKE_CURRENT_BINARY_DIR}/wsrep.cnf + DESTINATION ${inst_location} COMPONENT SupportFiles + PERMISSIONS OWNER_READ OWNER_WRITE OWNER_EXECUTE GROUP_READ + GROUP_EXECUTE WORLD_READ WORLD_EXECUTE) IF (INSTALL_SYSCONFDIR) INSTALL(FILES ${CMAKE_CURRENT_BINARY_DIR}/mysql-log-rotate DESTINATION ${INSTALL_SYSCONFDIR}/logrotate.d From 2482306861ca107adfb6c8823cd9f6e413912ebe Mon Sep 17 00:00:00 2001 From: Daniel Bartholomew Date: Tue, 7 Aug 2018 10:17:08 -0400 Subject: [PATCH 017/148] bump the VERSION --- VERSION | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/VERSION b/VERSION index 59a439d4152..2eee908ea01 100644 --- a/VERSION +++ b/VERSION @@ -1,3 +1,3 @@ MYSQL_VERSION_MAJOR=10 MYSQL_VERSION_MINOR=0 -MYSQL_VERSION_PATCH=36 +MYSQL_VERSION_PATCH=37 From b291daaccdf92c357bcefe05a0a8108ee30e255f Mon Sep 17 00:00:00 2001 From: Olivier Bertrand Date: Tue, 7 Aug 2018 19:46:11 +0200 Subject: [PATCH 018/148] - Delete an assert(qrp) from JCATPARM *AllocCatInfo that is called with qrp=NULL from JDBConn::SetUUID. Also delete a clone of this function that was duplicated in javaconn.cpp. modified: storage/connect/javaconn.cpp modified: storage/connect/jdbconn.cpp - Update some disabled tests and results to avoid failure modified: storage/connect/mysql-test/connect/r/jdbc.result modified: storage/connect/mysql-test/connect/r/json_java_2.result modified: storage/connect/mysql-test/connect/r/json_java_3.result modified: storage/connect/mysql-test/connect/r/mongo_java_2.result modified: storage/connect/mysql-test/connect/r/mongo_java_3.result modified: storage/connect/mysql-test/connect/t/json_java_2.test modified: storage/connect/mysql-test/connect/t/json_java_3.test modified: storage/connect/mysql-test/connect/t/mongo_java_2.test modified: storage/connect/mysql-test/connect/t/mongo_java_3.test --- storage/connect/javaconn.cpp | 23 ------------------- storage/connect/jdbconn.cpp | 4 ---- .../connect/mysql-test/connect/r/jdbc.result | 1 - .../mysql-test/connect/r/json_java_2.result | 1 - .../mysql-test/connect/r/json_java_3.result | 1 - .../mysql-test/connect/r/mongo_java_2.result | 1 - .../mysql-test/connect/r/mongo_java_3.result | 1 - .../mysql-test/connect/t/json_java_2.test | 2 ++ .../mysql-test/connect/t/json_java_3.test | 2 ++ .../mysql-test/connect/t/mongo_java_2.test | 2 ++ .../mysql-test/connect/t/mongo_java_3.test | 2 ++ 11 files changed, 8 insertions(+), 32 deletions(-) diff --git a/storage/connect/javaconn.cpp b/storage/connect/javaconn.cpp index 37a96351a3b..f05db1892d9 100644 --- a/storage/connect/javaconn.cpp +++ b/storage/connect/javaconn.cpp @@ -81,29 +81,6 @@ GETDEF JAVAConn::GetDefaultJavaVMInitArgs = NULL; #define DEBUG_ONLY(f) ((void)0) #endif // !_DEBUG -/***********************************************************************/ -/* Allocate the structure used to refer to the result set. */ -/***********************************************************************/ -static JCATPARM *AllocCatInfo(PGLOBAL g, JCATINFO fid, PCSZ db, - PCSZ tab, PQRYRES qrp) -{ - JCATPARM *cap; - -#if defined(_DEBUG) - assert(qrp); -#endif - - if ((cap = (JCATPARM *)PlgDBSubAlloc(g, NULL, sizeof(JCATPARM)))) { - memset(cap, 0, sizeof(JCATPARM)); - cap->Id = fid; - cap->Qrp = qrp; - cap->DB = db; - cap->Tab = tab; - } // endif cap - - return cap; -} // end of AllocCatInfo - /***********************************************************************/ /* JAVAConn construction/destruction. */ /***********************************************************************/ diff --git a/storage/connect/jdbconn.cpp b/storage/connect/jdbconn.cpp index 24da65cf6a8..e0aca3333e6 100644 --- a/storage/connect/jdbconn.cpp +++ b/storage/connect/jdbconn.cpp @@ -322,10 +322,6 @@ static JCATPARM *AllocCatInfo(PGLOBAL g, JCATINFO fid, PCSZ db, { JCATPARM *cap; -#if defined(_DEBUG) - assert(qrp); -#endif - if ((cap = (JCATPARM *)PlgDBSubAlloc(g, NULL, sizeof(JCATPARM)))) { memset(cap, 0, sizeof(JCATPARM)); cap->Id = fid; diff --git a/storage/connect/mysql-test/connect/r/jdbc.result b/storage/connect/mysql-test/connect/r/jdbc.result index a16f2791e8f..12c8779f96d 100644 --- a/storage/connect/mysql-test/connect/r/jdbc.result +++ b/storage/connect/mysql-test/connect/r/jdbc.result @@ -236,7 +236,6 @@ WHEELFOR SALESMAN 10030.00 MARTIN ENGINEER 10000.00 DROP TABLE t1, connect.emp; CREATE TABLE t2 (command varchar(128) not null,number int(5) not null flag=1,message varchar(255) flag=2) ENGINE=CONNECT TABLE_TYPE=JDBC CONNECTION='jdbc:mariadb://localhost:PORT/connect' OPTION_LIST='User=root,Execsrc=1'; -SELECT * FROM t2 WHERE command='drop table tx1'; command number message drop table tx1 0 Execute: java.sql.SQLSyntaxErrorException: (conn:24) Unknown table 'connect.tx1' SELECT * FROM t2 WHERE command = 'create table tx1 (a int not null, b char(32), c double(8,2))'; diff --git a/storage/connect/mysql-test/connect/r/json_java_2.result b/storage/connect/mysql-test/connect/r/json_java_2.result index 6c578b35d6f..4bbac236200 100644 --- a/storage/connect/mysql-test/connect/r/json_java_2.result +++ b/storage/connect/mysql-test/connect/r/json_java_2.result @@ -1,4 +1,3 @@ -SET GLOBAL connect_class_path='C:/MariaDB-10.2/MariaDB/storage/connect/mysql-test/connect/std_data/Mongo2.jar'; set connect_enable_mongo=1; # # Test the MONGO table type diff --git a/storage/connect/mysql-test/connect/r/json_java_3.result b/storage/connect/mysql-test/connect/r/json_java_3.result index 4c5fc94fca6..eb8bfc022d6 100644 --- a/storage/connect/mysql-test/connect/r/json_java_3.result +++ b/storage/connect/mysql-test/connect/r/json_java_3.result @@ -1,4 +1,3 @@ -SET GLOBAL connect_class_path='C:/MariaDB-10.2/MariaDB/storage/connect/mysql-test/connect/std_data/Mongo3.jar'; set connect_enable_mongo=1; # # Test the MONGO table type diff --git a/storage/connect/mysql-test/connect/r/mongo_java_2.result b/storage/connect/mysql-test/connect/r/mongo_java_2.result index 67c67653e88..bc186d7137e 100644 --- a/storage/connect/mysql-test/connect/r/mongo_java_2.result +++ b/storage/connect/mysql-test/connect/r/mongo_java_2.result @@ -1,4 +1,3 @@ -SET GLOBAL connect_class_path='C:/MariaDB-10.2/MariaDB/storage/connect/mysql-test/connect/std_data/Mongo2.jar'; set connect_enable_mongo=1; # # Test the MONGO table type diff --git a/storage/connect/mysql-test/connect/r/mongo_java_3.result b/storage/connect/mysql-test/connect/r/mongo_java_3.result index 665178bd3ea..30c696fc9eb 100644 --- a/storage/connect/mysql-test/connect/r/mongo_java_3.result +++ b/storage/connect/mysql-test/connect/r/mongo_java_3.result @@ -1,4 +1,3 @@ -SET GLOBAL connect_class_path='C:/MariaDB-10.2/MariaDB/storage/connect/mysql-test/connect/std_data/Mongo3.jar'; set connect_enable_mongo=1; # # Test the MONGO table type diff --git a/storage/connect/mysql-test/connect/t/json_java_2.test b/storage/connect/mysql-test/connect/t/json_java_2.test index bb32eff4e94..2f64d8e2eed 100644 --- a/storage/connect/mysql-test/connect/t/json_java_2.test +++ b/storage/connect/mysql-test/connect/t/json_java_2.test @@ -1,7 +1,9 @@ -- source jdbconn.inc -- source mongo.inc +--disable_query_log eval SET GLOBAL connect_class_path='$MTR_SUITE_DIR/std_data/Mongo2.jar'; +--enable_query_log let $DRV= Java; let $VERS= 2; let $TYPE= JSON; diff --git a/storage/connect/mysql-test/connect/t/json_java_3.test b/storage/connect/mysql-test/connect/t/json_java_3.test index 29e66cd5a1c..cee8343772a 100644 --- a/storage/connect/mysql-test/connect/t/json_java_3.test +++ b/storage/connect/mysql-test/connect/t/json_java_3.test @@ -1,7 +1,9 @@ -- source jdbconn.inc -- source mongo.inc +--disable_query_log eval SET GLOBAL connect_class_path='$MTR_SUITE_DIR/std_data/Mongo3.jar'; +--enable_query_log let $DRV= Java; let $VERS= 3; let $TYPE= JSON; diff --git a/storage/connect/mysql-test/connect/t/mongo_java_2.test b/storage/connect/mysql-test/connect/t/mongo_java_2.test index 21da5dce68f..7dcd028185e 100644 --- a/storage/connect/mysql-test/connect/t/mongo_java_2.test +++ b/storage/connect/mysql-test/connect/t/mongo_java_2.test @@ -1,7 +1,9 @@ -- source jdbconn.inc -- source mongo.inc +--disable_query_log eval SET GLOBAL connect_class_path='$MTR_SUITE_DIR/std_data/Mongo2.jar'; +--enable_query_log let $DRV= Java; let $VERS= 2; let $TYPE= MONGO; diff --git a/storage/connect/mysql-test/connect/t/mongo_java_3.test b/storage/connect/mysql-test/connect/t/mongo_java_3.test index b7584adcc7e..aab16d5e003 100644 --- a/storage/connect/mysql-test/connect/t/mongo_java_3.test +++ b/storage/connect/mysql-test/connect/t/mongo_java_3.test @@ -1,7 +1,9 @@ -- source jdbconn.inc -- source mongo.inc +--disable_query_log eval SET GLOBAL connect_class_path='$MTR_SUITE_DIR/std_data/Mongo3.jar'; +--enable_query_log let $DRV= Java; let $VERS= 3; let $TYPE= MONGO; From dbf25197c16dcd2d4d0ef0d3a641f9f7dd7ab8a5 Mon Sep 17 00:00:00 2001 From: Olivier Bertrand Date: Wed, 8 Aug 2018 12:20:26 +0200 Subject: [PATCH 019/148] - Comment out failing Cyrillic test in xml2.test modified: storage/connect/mysql-test/connect/r/xml2.result modified: storage/connect/mysql-test/connect/t/xml2.test --- .../connect/mysql-test/connect/r/xml2.result | 31 ---------------- .../connect/mysql-test/connect/t/xml2.test | 36 +++++++++---------- 2 files changed, 18 insertions(+), 49 deletions(-) diff --git a/storage/connect/mysql-test/connect/r/xml2.result b/storage/connect/mysql-test/connect/r/xml2.result index eea53bf55c7..b8075fa1928 100644 --- a/storage/connect/mysql-test/connect/r/xml2.result +++ b/storage/connect/mysql-test/connect/r/xml2.result @@ -333,37 +333,6 @@ DROP TABLE t1; # # Testing Cyrillic # -CREATE TABLE t1 -( -c CHAR(16) CHARACTER SET utf8 -) ENGINE=CONNECT TABLE_TYPE=XML FILE_NAME='cp1251.xml' - OPTION_LIST='xmlsup=libxml2,rownode=b'; -SELECT * FROM t1; -c БВГДЕЖЗ -INSERT INTO t1 VALUES ('ИКЛМÐ'); -SELECT c, HEX(c) FROM t1; -c БВГДЕЖЗ -HEX(c) D091D092D093D094D095D096D097 -c ИКЛМР-HEX(c) D098D09AD09BD09CD09D -DROP TABLE t1; -CREATE TABLE t1 -( -c CHAR(16) CHARACTER SET cp1251 -) ENGINE=CONNECT TABLE_TYPE=XML FILE_NAME='cp1251.xml' - OPTION_LIST='xmlsup=libxml2,rownode=b'; -SELECT * FROM t1; -c БВГДЕЖЗ -c ИКЛМР-INSERT INTO t1 VALUES ('ОПРСТ'); -SELECT c, HEX(c) FROM t1; -c БВГДЕЖЗ -HEX(c) C1C2C3C4C5C6C7 -c ИКЛМР-HEX(c) C8CACBCCCD -c ОПРСТ -HEX(c) CECFD0D1D2 -DROP TABLE t1; # # Testing that the underlying file is created with a proper Encoding # diff --git a/storage/connect/mysql-test/connect/t/xml2.test b/storage/connect/mysql-test/connect/t/xml2.test index 0f26b8ab5c0..7bbc3dbd87c 100644 --- a/storage/connect/mysql-test/connect/t/xml2.test +++ b/storage/connect/mysql-test/connect/t/xml2.test @@ -240,24 +240,24 @@ DROP TABLE t1; --echo # --echo # Testing Cyrillic --echo # -CREATE TABLE t1 -( - c CHAR(16) CHARACTER SET utf8 -) ENGINE=CONNECT TABLE_TYPE=XML FILE_NAME='cp1251.xml' - OPTION_LIST='xmlsup=libxml2,rownode=b'; -SELECT * FROM t1; -INSERT INTO t1 VALUES ('ИКЛМÐ'); -SELECT c, HEX(c) FROM t1; -DROP TABLE t1; -CREATE TABLE t1 -( - c CHAR(16) CHARACTER SET cp1251 -) ENGINE=CONNECT TABLE_TYPE=XML FILE_NAME='cp1251.xml' - OPTION_LIST='xmlsup=libxml2,rownode=b'; -SELECT * FROM t1; -INSERT INTO t1 VALUES ('ОПРСТ'); -SELECT c, HEX(c) FROM t1; -DROP TABLE t1; +#CREATE TABLE t1 +#( +# c CHAR(16) CHARACTER SET utf8 +#) ENGINE=CONNECT TABLE_TYPE=XML FILE_NAME='cp1251.xml' +# OPTION_LIST='xmlsup=libxml2,rownode=b'; +#SELECT * FROM t1; +#INSERT INTO t1 VALUES ('ИКЛМÐ'); +#SELECT c, HEX(c) FROM t1; +#DROP TABLE t1; +#CREATE TABLE t1 +#( +# c CHAR(16) CHARACTER SET cp1251 +#) ENGINE=CONNECT TABLE_TYPE=XML FILE_NAME='cp1251.xml' +# OPTION_LIST='xmlsup=libxml2,rownode=b'; +#SELECT * FROM t1; +#INSERT INTO t1 VALUES ('ОПРСТ'); +#SELECT c, HEX(c) FROM t1; +#DROP TABLE t1; --echo # From 1b1b9413854d4aaf21d8eaf529c23567eb5e0daf Mon Sep 17 00:00:00 2001 From: Teodor Mircea Ionita Date: Thu, 16 Aug 2018 16:39:50 +0300 Subject: [PATCH 020/148] MDEV-17022: check if mtr --mem location is writeable --- mysql-test/mysql-test-run.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mysql-test/mysql-test-run.pl b/mysql-test/mysql-test-run.pl index ba49d88a85f..ade3f99104e 100755 --- a/mysql-test/mysql-test-run.pl +++ b/mysql-test/mysql-test-run.pl @@ -1457,7 +1457,7 @@ sub command_line_setup { foreach my $fs (@tmpfs_locations) { - if ( -d $fs ) + if ( -d $fs && -w $fs ) { my $template= "var_${opt_build_thread}_XXXX"; $opt_mem= tempdir( $template, DIR => $fs, CLEANUP => 0); From 064ba8cc9f429fbf403f8d2c564e5f59f6799df9 Mon Sep 17 00:00:00 2001 From: Daniel Black Date: Fri, 17 Nov 2017 08:00:32 +0800 Subject: [PATCH 021/148] item_cmp_type: simplier for a faster codepath The common case for this function is that both types are the same. The Item_result defination from include/mysql.h.pp is the following enum enum Item_result { STRING_RESULT=0, REAL_RESULT, INT_RESULT, ROW_RESULT, DECIMAL_RESULT, TIME_RESULT }; The compilers aren't quite smart enough to optimize to this shortcut so this makes it quicker. Before the change: 0000000000012730 : 12730: 89 f0 mov %esi,%eax 12732: 09 f8 or %edi,%eax 12734: 74 4c je 12782 12736: 83 ff 02 cmp $0x2,%edi 12739: 75 0a jne 12745 1273b: b8 02 00 00 00 mov $0x2,%eax 12740: 83 fe 02 cmp $0x2,%esi 12743: 74 3c je 12781 12745: 83 ff 03 cmp $0x3,%edi 12748: b8 03 00 00 00 mov $0x3,%eax 1274d: 74 32 je 12781 1274f: 83 fe 03 cmp $0x3,%esi 12752: 74 2d je 12781 12754: 83 ff 05 cmp $0x5,%edi 12757: b8 05 00 00 00 mov $0x5,%eax 1275c: 74 23 je 12781 1275e: 83 fe 05 cmp $0x5,%esi 12761: 74 1e je 12781 12763: 83 ff 04 cmp $0x4,%edi 12766: 74 05 je 1276d 12768: 83 ff 02 cmp $0x2,%edi 1276b: 75 0f jne 1277c 1276d: b8 04 00 00 00 mov $0x4,%eax 12772: 83 fe 02 cmp $0x2,%esi 12775: 74 0a je 12781 12777: 83 fe 04 cmp $0x4,%esi 1277a: 74 05 je 12781 1277c: b8 01 00 00 00 mov $0x1,%eax 12781: c3 retq 12782: 31 c0 xor %eax,%eax 12784: c3 retq After, noting the short cut and the beginning of the function: 0000000000012730 : 12730: 39 f7 cmp %esi,%edi 12732: 75 03 jne 12737 12734: 89 f8 mov %edi,%eax 12736: c3 retq 12737: 83 ff 03 cmp $0x3,%edi 1273a: b8 03 00 00 00 mov $0x3,%eax 1273f: 74 32 je 12773 12741: 83 fe 03 cmp $0x3,%esi 12744: 74 2d je 12773 12746: 83 ff 05 cmp $0x5,%edi 12749: b8 05 00 00 00 mov $0x5,%eax 1274e: 74 23 je 12773 12750: 83 fe 05 cmp $0x5,%esi 12753: 74 1e je 12773 12755: 83 ff 04 cmp $0x4,%edi 12758: 74 05 je 1275f 1275a: 83 ff 02 cmp $0x2,%edi 1275d: 75 0f jne 1276e 1275f: b8 04 00 00 00 mov $0x4,%eax 12764: 83 fe 02 cmp $0x2,%esi 12767: 74 0a je 12773 12769: 83 fe 04 cmp $0x4,%esi 1276c: 74 05 je 12773 1276e: b8 01 00 00 00 mov $0x1,%eax 12773: c3 retq Signed-off-by: Daniel Black --- sql/item.cc | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) diff --git a/sql/item.cc b/sql/item.cc index 0cf4864326f..745cbf31f0c 100644 --- a/sql/item.cc +++ b/sql/item.cc @@ -8719,13 +8719,11 @@ void Item_trigger_field::cleanup() Item_result item_cmp_type(Item_result a,Item_result b) { - if (a == STRING_RESULT && b == STRING_RESULT) - return STRING_RESULT; - if (a == INT_RESULT && b == INT_RESULT) - return INT_RESULT; - else if (a == ROW_RESULT || b == ROW_RESULT) + if (a == b) + return a; + if (a == ROW_RESULT || b == ROW_RESULT) return ROW_RESULT; - else if (a == TIME_RESULT || b == TIME_RESULT) + if (a == TIME_RESULT || b == TIME_RESULT) return TIME_RESULT; if ((a == INT_RESULT || a == DECIMAL_RESULT) && (b == INT_RESULT || b == DECIMAL_RESULT)) From 7d8d37c31d9cabaf31576eb3edeae6580ffb16b4 Mon Sep 17 00:00:00 2001 From: Varun Gupta Date: Thu, 23 Aug 2018 16:01:58 +0530 Subject: [PATCH 022/148] MDEV-17039: Query plan changes when we use GROUP BY optimization with optimizer_use_condition_selectivity=4 and use_stat_tables= PREFERABLY Currently the code that calculates selectivity for a table does not take into account the case when we can have GROUP BY optimization (looses index scan). --- mysql-test/r/group_min_max.result | 28 ++++++++++++++++++++++++++++ mysql-test/t/group_min_max.test | 17 +++++++++++++++++ sql/opt_range.cc | 13 ++++++++++++- 3 files changed, 57 insertions(+), 1 deletion(-) diff --git a/mysql-test/r/group_min_max.result b/mysql-test/r/group_min_max.result index 25cd4a25279..34e1e256faa 100644 --- a/mysql-test/r/group_min_max.result +++ b/mysql-test/r/group_min_max.result @@ -3733,5 +3733,33 @@ id MIN(a) MAX(a) 4 2001-01-04 2001-01-04 DROP TABLE t1; # +# Query plan changes when we use GROUP BY optimization with optimizer_use_condition_selectivity=4 +# and use_stat_tables= PREFERABLY +# +CREATE TABLE t1 (a INT, b INT,c INT DEFAULT 0, INDEX (a,b)); +INSERT INTO t1 (a, b) VALUES (1,1), (1,2), (1,3), (1,4), (1,5), +(2,2), (2,3), (2,1), (3,1), (4,1), (4,2), (4,3), (4,4), (4,5), (4,6); +set @save_optimizer_use_condition_selectivity= @@optimizer_use_condition_selectivity; +set @save_use_stat_tables= @@use_stat_tables; +set @@optimizer_use_condition_selectivity=4; +set @@use_stat_tables=PREFERABLY; +explain extended SELECT a FROM t1 AS t1_outer WHERE a IN (SELECT max(b) FROM t1 GROUP BY a); +id select_type table type possible_keys key key_len ref rows filtered Extra +1 PRIMARY ALL distinct_key NULL NULL NULL 8 100.00 +1 PRIMARY t1_outer ref a a 5 .max(b) 2 100.00 Using index +2 MATERIALIZED t1 range NULL a 5 NULL 8 100.00 Using index for group-by +Warnings: +Note 1003 select `test`.`t1_outer`.`a` AS `a` from (select max(`test`.`t1`.`b`) from `test`.`t1` group by `test`.`t1`.`a`) join `test`.`t1` `t1_outer` where (`test`.`t1_outer`.`a` = ``.`max(b)`) +set @@optimizer_use_condition_selectivity=@save_optimizer_use_condition_selectivity; +set @@use_stat_tables=@save_use_stat_tables; +explain extended SELECT a FROM t1 AS t1_outer WHERE a IN (SELECT max(b) FROM t1 GROUP BY a); +id select_type table type possible_keys key key_len ref rows filtered Extra +1 PRIMARY ALL distinct_key NULL NULL NULL 8 100.00 +1 PRIMARY t1_outer ref a a 5 .max(b) 2 100.00 Using index +2 MATERIALIZED t1 range NULL a 5 NULL 8 100.00 Using index for group-by +Warnings: +Note 1003 select `test`.`t1_outer`.`a` AS `a` from (select max(`test`.`t1`.`b`) from `test`.`t1` group by `test`.`t1`.`a`) join `test`.`t1` `t1_outer` where (`test`.`t1_outer`.`a` = ``.`max(b)`) +drop table t1; +# # End of 10.0 tests # diff --git a/mysql-test/t/group_min_max.test b/mysql-test/t/group_min_max.test index 8c9be0ca8db..72a556c9bc2 100644 --- a/mysql-test/t/group_min_max.test +++ b/mysql-test/t/group_min_max.test @@ -1519,6 +1519,23 @@ ALTER TABLE t1 ADD KEY(id,a); SELECT id,MIN(a),MAX(a) FROM t1 WHERE a>=DATE'2001-01-04' GROUP BY id; DROP TABLE t1; +--echo # +--echo # Query plan changes when we use GROUP BY optimization with optimizer_use_condition_selectivity=4 +--echo # and use_stat_tables= PREFERABLY +--echo # + +CREATE TABLE t1 (a INT, b INT,c INT DEFAULT 0, INDEX (a,b)); +INSERT INTO t1 (a, b) VALUES (1,1), (1,2), (1,3), (1,4), (1,5), +(2,2), (2,3), (2,1), (3,1), (4,1), (4,2), (4,3), (4,4), (4,5), (4,6); +set @save_optimizer_use_condition_selectivity= @@optimizer_use_condition_selectivity; +set @save_use_stat_tables= @@use_stat_tables; +set @@optimizer_use_condition_selectivity=4; +set @@use_stat_tables=PREFERABLY; +explain extended SELECT a FROM t1 AS t1_outer WHERE a IN (SELECT max(b) FROM t1 GROUP BY a); +set @@optimizer_use_condition_selectivity=@save_optimizer_use_condition_selectivity; +set @@use_stat_tables=@save_use_stat_tables; +explain extended SELECT a FROM t1 AS t1_outer WHERE a IN (SELECT max(b) FROM t1 GROUP BY a); +drop table t1; --echo # --echo # End of 10.0 tests diff --git a/sql/opt_range.cc b/sql/opt_range.cc index f1d84e5c623..734adfbc9d1 100644 --- a/sql/opt_range.cc +++ b/sql/opt_range.cc @@ -3501,7 +3501,18 @@ bool calculate_cond_selectivity_for_table(THD *thd, TABLE *table, Item *cond) table->cond_selectivity= 1.0; - if (!cond || table_records == 0) + if (table_records == 0) + DBUG_RETURN(FALSE); + + QUICK_SELECT_I *quick; + if ((quick=table->reginfo.join_tab->quick) && + quick->get_type() == QUICK_SELECT_I::QS_TYPE_GROUP_MIN_MAX) + { + table->cond_selectivity*= (quick->records/table_records); + DBUG_RETURN(FALSE); + } + + if (!cond) DBUG_RETURN(FALSE); if (table->pos_in_table_list->schema_table) From 0cafc1316410d118c0b6298daf4d923b3258c502 Mon Sep 17 00:00:00 2001 From: Varun Gupta Date: Fri, 24 Aug 2018 01:59:02 +0530 Subject: [PATCH 023/148] MDEV-17073: Crash during read_histogram_for_table with optimizer_use_condition_selectivity set to 4 No need to read statistics for tables that are not USER tables. We allocate memory for structures to collect statistics only for USER TABLES. --- mysql-test/r/stat_tables.result | 13 +++++++++++++ mysql-test/r/stat_tables_innodb.result | 13 +++++++++++++ mysql-test/t/stat_tables.test | 12 ++++++++++++ sql/sql_statistics.cc | 3 +++ 4 files changed, 41 insertions(+) diff --git a/mysql-test/r/stat_tables.result b/mysql-test/r/stat_tables.result index c1457d5e91a..cd78d44462e 100644 --- a/mysql-test/r/stat_tables.result +++ b/mysql-test/r/stat_tables.result @@ -577,3 +577,16 @@ SELECT * FROM mysql.column_stats; db_name table_name column_name min_value max_value nulls_ratio avg_length avg_frequency hist_size hist_type histogram DROP TABLE t1; set use_stat_tables=@save_use_stat_tables; +# +# MDEV-17023: Crash during read_histogram_for_table with optimizer_use_condition_selectivity set to 4 +# +set @save_optimizer_use_condition_selectivity=@@optimizer_use_condition_selectivity; +set @@optimizer_use_condition_selectivity=4; +set @@use_stat_tables= PREFERABLY; +explain +SELECT * FROM INFORMATION_SCHEMA.PROFILING, mysql.user; +id select_type table type possible_keys key key_len ref rows Extra +1 SIMPLE PROFILING ALL NULL NULL NULL NULL NULL +1 SIMPLE user ALL NULL NULL NULL NULL 4 Using join buffer (flat, BNL join) +set @@optimizer_use_condition_selectivity=@save_optimizer_use_condition_selectivity; +set use_stat_tables=@save_use_stat_tables; diff --git a/mysql-test/r/stat_tables_innodb.result b/mysql-test/r/stat_tables_innodb.result index 2ac868e9341..02a07fa8bbb 100644 --- a/mysql-test/r/stat_tables_innodb.result +++ b/mysql-test/r/stat_tables_innodb.result @@ -604,5 +604,18 @@ SELECT * FROM mysql.column_stats; db_name table_name column_name min_value max_value nulls_ratio avg_length avg_frequency hist_size hist_type histogram DROP TABLE t1; set use_stat_tables=@save_use_stat_tables; +# +# MDEV-17023: Crash during read_histogram_for_table with optimizer_use_condition_selectivity set to 4 +# +set @save_optimizer_use_condition_selectivity=@@optimizer_use_condition_selectivity; +set @@optimizer_use_condition_selectivity=4; +set @@use_stat_tables= PREFERABLY; +explain +SELECT * FROM INFORMATION_SCHEMA.PROFILING, mysql.user; +id select_type table type possible_keys key key_len ref rows Extra +1 SIMPLE PROFILING ALL NULL NULL NULL NULL NULL +1 SIMPLE user ALL NULL NULL NULL NULL 4 Using join buffer (flat, BNL join) +set @@optimizer_use_condition_selectivity=@save_optimizer_use_condition_selectivity; +set use_stat_tables=@save_use_stat_tables; set optimizer_switch=@save_optimizer_switch_for_stat_tables_test; SET SESSION STORAGE_ENGINE=DEFAULT; diff --git a/mysql-test/t/stat_tables.test b/mysql-test/t/stat_tables.test index d69b00618ea..a0b2a22b946 100644 --- a/mysql-test/t/stat_tables.test +++ b/mysql-test/t/stat_tables.test @@ -356,3 +356,15 @@ SELECT * FROM mysql.column_stats; DROP TABLE t1; set use_stat_tables=@save_use_stat_tables; + +--echo # +--echo # MDEV-17023: Crash during read_histogram_for_table with optimizer_use_condition_selectivity set to 4 +--echo # + +set @save_optimizer_use_condition_selectivity=@@optimizer_use_condition_selectivity; +set @@optimizer_use_condition_selectivity=4; +set @@use_stat_tables= PREFERABLY; +explain +SELECT * FROM INFORMATION_SCHEMA.PROFILING, mysql.user; +set @@optimizer_use_condition_selectivity=@save_optimizer_use_condition_selectivity; +set use_stat_tables=@save_use_stat_tables; diff --git a/sql/sql_statistics.cc b/sql/sql_statistics.cc index 537ede91710..cb75a5c2176 100644 --- a/sql/sql_statistics.cc +++ b/sql/sql_statistics.cc @@ -3129,6 +3129,9 @@ int read_statistics_for_tables_if_needed(THD *thd, TABLE_LIST *tables) if (!tl->is_view_or_derived() && !is_temporary_table(tl) && tl->table) { TABLE_SHARE *table_share= tl->table->s; + if (table_share && !(table_share->table_category == TABLE_CATEGORY_USER)) + continue; + if (table_share && table_share->stats_cb.stats_can_be_read && !table_share->stats_cb.stats_is_read) From f195286a3eae6328a1f90948205e90201c0479c5 Mon Sep 17 00:00:00 2001 From: Monty Date: Fri, 24 Aug 2018 18:08:56 +0300 Subject: [PATCH 024/148] MDEV-17021 Server crash or assertion `length <= column->length' failure in write_block_record Problem was that the number of NULL bit's was record wrong in the .frm file because there could be more fields marked NOT_NULL after the number of not_null fields where recorded. Fixed by copying test for virtual fields from prepare_create_field() The code change, only the test, doesn't have to be merged to 10.3 as this is fixed there. --- mysql-test/suite/maria/create.result | 26 +++++++++++++++++++++++ mysql-test/suite/maria/create.test | 31 ++++++++++++++++++++++++++++ sql/sql_table.cc | 4 ++++ 3 files changed, 61 insertions(+) create mode 100644 mysql-test/suite/maria/create.result create mode 100644 mysql-test/suite/maria/create.test diff --git a/mysql-test/suite/maria/create.result b/mysql-test/suite/maria/create.result new file mode 100644 index 00000000000..83c5b8d22e4 --- /dev/null +++ b/mysql-test/suite/maria/create.result @@ -0,0 +1,26 @@ +CREATE OR REPLACE TABLE t1 ( +f1 DECIMAL(43,0) NOT NULL, +f2 TIME(4) NULL, +f3 BINARY(101) NULL, +f4 TIMESTAMP(4) NULL, +f5 DATETIME(1) NULL, +f6 SET('a','b','c') NOT NULL DEFAULT 'a', +f7 VARBINARY(2332) NOT NULL DEFAULT '', +f8 DATE NULL, +f9 BLOB NULL, +f10 MEDIUMINT(45) NOT NULL DEFAULT 0, +f11 YEAR NULL, +f12 BIT(58) NULL, +v2 TIME(1) AS (f2) VIRTUAL, +v3 BINARY(115) AS (f3) VIRTUAL, +v4 TIMESTAMP(3) AS (f4) VIRTUAL, +v7 VARBINARY(658) AS (f7) PERSISTENT, +v8 DATE AS (f8) PERSISTENT, +v9 TINYTEXT AS (f9) PERSISTENT, +v11 YEAR AS (f11) VIRTUAL +) ENGINE=Aria; +INSERT IGNORE INTO t1 (f1,f2,f3,f4,f5,f6,f7,f8,f9,f10,f11,f12) VALUES +(0.8,'16:01:46',NULL,'2006-03-01 12:44:34','2029-10-10 21:27:53','a','foo','1989-12-24','bar',9,1975,b'1'); +Warnings: +Note 1265 Data truncated for column 'f1' at row 1 +DROP TABLE t1; diff --git a/mysql-test/suite/maria/create.test b/mysql-test/suite/maria/create.test new file mode 100644 index 00000000000..2e61a95d743 --- /dev/null +++ b/mysql-test/suite/maria/create.test @@ -0,0 +1,31 @@ +--source include/have_maria.inc + +# MDEV-17021 +# Server crash or assertion `length <= column->length' failure in +# write_block_record +# + +CREATE OR REPLACE TABLE t1 ( + f1 DECIMAL(43,0) NOT NULL, + f2 TIME(4) NULL, + f3 BINARY(101) NULL, + f4 TIMESTAMP(4) NULL, + f5 DATETIME(1) NULL, + f6 SET('a','b','c') NOT NULL DEFAULT 'a', + f7 VARBINARY(2332) NOT NULL DEFAULT '', + f8 DATE NULL, + f9 BLOB NULL, + f10 MEDIUMINT(45) NOT NULL DEFAULT 0, + f11 YEAR NULL, + f12 BIT(58) NULL, + v2 TIME(1) AS (f2) VIRTUAL, + v3 BINARY(115) AS (f3) VIRTUAL, + v4 TIMESTAMP(3) AS (f4) VIRTUAL, + v7 VARBINARY(658) AS (f7) PERSISTENT, + v8 DATE AS (f8) PERSISTENT, + v9 TINYTEXT AS (f9) PERSISTENT, + v11 YEAR AS (f11) VIRTUAL +) ENGINE=Aria; +INSERT IGNORE INTO t1 (f1,f2,f3,f4,f5,f6,f7,f8,f9,f10,f11,f12) VALUES + (0.8,'16:01:46',NULL,'2006-03-01 12:44:34','2029-10-10 21:27:53','a','foo','1989-12-24','bar',9,1975,b'1'); +DROP TABLE t1; diff --git a/sql/sql_table.cc b/sql/sql_table.cc index 9a2b4901d4e..f89a6d64fa6 100644 --- a/sql/sql_table.cc +++ b/sql/sql_table.cc @@ -3328,6 +3328,10 @@ mysql_prepare_create_table(THD *thd, HA_CREATE_INFO *create_info, } } + /* Virtual fields are always NULL */ + if (sql_field->vcol_info) + sql_field->flags&= ~NOT_NULL_FLAG; + if (sql_field->sql_type == MYSQL_TYPE_SET || sql_field->sql_type == MYSQL_TYPE_ENUM) { From 490e220ad2cf14321f18841a3e6c60fcb12a322e Mon Sep 17 00:00:00 2001 From: Monty Date: Fri, 24 Aug 2018 21:03:22 +0300 Subject: [PATCH 025/148] MDEV-17067 Server crash in write_block_record Problem was that Create_field::create_length_to_internal_length() calculated a different pack_length for NEWDECIMAL compared to Field_new_decimal constructor which lead to some unused bytes in the middle of the record, which Aria didn't like. --- mysql-test/suite/maria/create.result | 9 ++++++++- mysql-test/suite/maria/create.test | 11 +++++++++++ sql/field.cc | 17 +++++++++++------ 3 files changed, 30 insertions(+), 7 deletions(-) diff --git a/mysql-test/suite/maria/create.result b/mysql-test/suite/maria/create.result index 83c5b8d22e4..82c6b8c9871 100644 --- a/mysql-test/suite/maria/create.result +++ b/mysql-test/suite/maria/create.result @@ -1,4 +1,4 @@ -CREATE OR REPLACE TABLE t1 ( +CREATE OR REPLACE TABLE t1 ( f1 DECIMAL(43,0) NOT NULL, f2 TIME(4) NULL, f3 BINARY(101) NULL, @@ -24,3 +24,10 @@ INSERT IGNORE INTO t1 (f1,f2,f3,f4,f5,f6,f7,f8,f9,f10,f11,f12) VALUES Warnings: Note 1265 Data truncated for column 'f1' at row 1 DROP TABLE t1; +CREATE OR REPLACE TABLE t1 (a INT(45)); +INSERT IGNORE INTO t1 VALUES (1),(2); +CREATE OR REPLACE TABLE t2 ENGINE=Aria AS SELECT SUM(a) AS f1, IFNULL( 'qux', ExtractValue( 'foo', 'bar' ) ) AS f2 FROM t1; +select * from t2; +f1 f2 +3 qux +DROP TABLE t1, t2; diff --git a/mysql-test/suite/maria/create.test b/mysql-test/suite/maria/create.test index 2e61a95d743..8f2ffd7492f 100644 --- a/mysql-test/suite/maria/create.test +++ b/mysql-test/suite/maria/create.test @@ -29,3 +29,14 @@ CREATE OR REPLACE TABLE t1 ( INSERT IGNORE INTO t1 (f1,f2,f3,f4,f5,f6,f7,f8,f9,f10,f11,f12) VALUES (0.8,'16:01:46',NULL,'2006-03-01 12:44:34','2029-10-10 21:27:53','a','foo','1989-12-24','bar',9,1975,b'1'); DROP TABLE t1; + +# +# MDEV-17067 Server crash in write_block_record +# + +CREATE OR REPLACE TABLE t1 (a INT(45)); +INSERT IGNORE INTO t1 VALUES (1),(2); + +CREATE OR REPLACE TABLE t2 ENGINE=Aria AS SELECT SUM(a) AS f1, IFNULL( 'qux', ExtractValue( 'foo', 'bar' ) ) AS f2 FROM t1; +select * from t2; +DROP TABLE t1, t2; diff --git a/sql/field.cc b/sql/field.cc index a9a7d54929b..1427e055324 100644 --- a/sql/field.cc +++ b/sql/field.cc @@ -9065,13 +9065,18 @@ void Create_field::create_length_to_internal_length(void) } break; case MYSQL_TYPE_NEWDECIMAL: - key_length= pack_length= - my_decimal_get_binary_size(my_decimal_length_to_precision(length, - decimals, - flags & - UNSIGNED_FLAG), - decimals); + { + /* + This code must be identical to code in + Field_new_decimal::Field_new_decimal as otherwise the record layout + gets out of sync. + */ + uint precision= my_decimal_length_to_precision(length, decimals, + flags & UNSIGNED_FLAG); + set_if_smaller(precision, DECIMAL_MAX_PRECISION); + key_length= pack_length= my_decimal_get_binary_size(precision, decimals); break; + } default: key_length= pack_length= calc_pack_length(sql_type, length); break; From 4ba6327f9560a23c128c2434d0fe6511d0d94452 Mon Sep 17 00:00:00 2001 From: Anel Husakovic Date: Mon, 16 Apr 2018 21:11:58 +0000 Subject: [PATCH 026/148] Fix typo in `--srcdir` option in echo message status of mysql_install_db --- scripts/mysql_install_db.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/mysql_install_db.sh b/scripts/mysql_install_db.sh index 43ff4191e08..e4f2d419ea5 100644 --- a/scripts/mysql_install_db.sh +++ b/scripts/mysql_install_db.sh @@ -210,7 +210,7 @@ cannot_find_file() echo echo "If you compiled from source, you need to either run 'make install' to" echo "copy the software into the correct location ready for operation." - echo "If you don't want to do a full install, you can use the --srcddir" + echo "If you don't want to do a full install, you can use the --srcdir" echo "option to only install the mysql database and privilege tables" echo echo "If you compiled from source, you need to either run 'make install' to" From 6b22cc4ae074276eb0adca4c7a7a0b99cc6ca56b Mon Sep 17 00:00:00 2001 From: Daniel Black Date: Sat, 30 Jun 2018 21:23:21 +1000 Subject: [PATCH 027/148] connect engine: GetStringUTFChars takes pointer arg Avoids compile errors of the form: /storage/connect/jdbconn.cpp:1473:41: error: cannot initialize a parameter of type 'jboolean *' (aka 'unsigned char *') with an rvalue of type 'jboolean' (aka 'unsigned char') name = env->GetStringUTFChars(label, (jboolean)false); ^~~~~~~~~~~~~~~ /usr/lib/jvm/java-8-oracle/include/jni.h:1616:58: note: passing argument to parameter 'isCopy' here const char* GetStringUTFChars(jstring str, jboolean *isCopy) { --- storage/connect/javaconn.cpp | 4 ++-- storage/connect/jdbconn.cpp | 10 +++++----- storage/connect/jmgoconn.cpp | 4 ++-- storage/connect/tabjmg.cpp | 2 +- 4 files changed, 10 insertions(+), 10 deletions(-) diff --git a/storage/connect/javaconn.cpp b/storage/connect/javaconn.cpp index d1be0ca1848..e73149486a8 100644 --- a/storage/connect/javaconn.cpp +++ b/storage/connect/javaconn.cpp @@ -153,7 +153,7 @@ bool JAVAConn::Check(jint rc) if (exc != nullptr && tid != nullptr) { jstring s = (jstring)env->CallObjectMethod(exc, tid); - const char *utf = env->GetStringUTFChars(s, (jboolean)false); + const char *utf = env->GetStringUTFChars(s, NULL); env->DeleteLocalRef(s); Msg = PlugDup(m_G, utf); } else @@ -162,7 +162,7 @@ bool JAVAConn::Check(jint rc) env->ExceptionClear(); } else if (rc < 0) { s = (jstring)env->CallObjectMethod(job, errid); - Msg = (char*)env->GetStringUTFChars(s, (jboolean)false); + Msg = (char*)env->GetStringUTFChars(s, NULL); } else Msg = NULL; diff --git a/storage/connect/jdbconn.cpp b/storage/connect/jdbconn.cpp index ddbc3115f0b..7e42ca126d0 100644 --- a/storage/connect/jdbconn.cpp +++ b/storage/connect/jdbconn.cpp @@ -828,11 +828,11 @@ bool JDBConn::Connect(PJPARM sop) jstring s = (jstring)env->CallObjectMethod(job, qcid); if (s != nullptr) { - char *qch = (char*)env->GetStringUTFChars(s, (jboolean)false); + char *qch = (char*)env->GetStringUTFChars(s, NULL); m_IDQuoteChar[0] = *qch; } else { s = (jstring)env->CallObjectMethod(job, errid); - Msg = (char*)env->GetStringUTFChars(s, (jboolean)false); + Msg = (char*)env->GetStringUTFChars(s, NULL); } // endif s } // endif qcid @@ -1010,7 +1010,7 @@ void JDBConn::SetColumnValue(int rank, PSZ name, PVAL val) cn = nullptr; if (cn) { - field = env->GetStringUTFChars(cn, (jboolean)false); + field = env->GetStringUTFChars(cn, NULL); val->SetValue_psz((PSZ)field); } else val->Reset(); @@ -1084,7 +1084,7 @@ void JDBConn::SetColumnValue(int rank, PSZ name, PVAL val) cn = nullptr; if (cn) { - const char *field = env->GetStringUTFChars(cn, (jboolean)false); + const char *field = env->GetStringUTFChars(cn, NULL); val->SetValue_psz((PSZ)field); } else val->Reset(); @@ -1462,7 +1462,7 @@ bool JDBConn::SetParam(JDBCCOL *colp) return NULL; } // endif label - name = env->GetStringUTFChars(label, (jboolean)false); + name = env->GetStringUTFChars(label, NULL); crp = qrp->Colresp; // Column_Name crp->Kdata->SetValue((char*)name, i); n = env->GetIntArrayElements(val, 0); diff --git a/storage/connect/jmgoconn.cpp b/storage/connect/jmgoconn.cpp index 1731ccbeb8c..33668e69988 100644 --- a/storage/connect/jmgoconn.cpp +++ b/storage/connect/jmgoconn.cpp @@ -522,7 +522,7 @@ PSZ JMgoConn::GetDocument(void) jdc = (jstring)env->CallObjectMethod(job, getdocid); if (jdc) - doc = (PSZ)env->GetStringUTFChars(jdc, (jboolean)false); + doc = (PSZ)env->GetStringUTFChars(jdc, NULL); } // endif getdocid @@ -807,7 +807,7 @@ PSZ JMgoConn::GetColumnValue(PSZ path) fn = (jstring)env->CallObjectMethod(job, objfldid, jn); if (fn) - fld = (PSZ)env->GetStringUTFChars(fn, (jboolean)false); + fld = (PSZ)env->GetStringUTFChars(fn, NULL); } // endif objfldid diff --git a/storage/connect/tabjmg.cpp b/storage/connect/tabjmg.cpp index ba3e1c3e7c0..4653973a4db 100644 --- a/storage/connect/tabjmg.cpp +++ b/storage/connect/tabjmg.cpp @@ -101,7 +101,7 @@ bool JMGDISC::ColDesc(PGLOBAL g, jobject obj, char *pcn, char *pfmt, continue; jkey = (jstring)Jcp->env->CallObjectMethod(Jcp->job, bvnameid); - key = Jcp->env->GetStringUTFChars(jkey, (jboolean)false); + key = Jcp->env->GetStringUTFChars(jkey, NULL); if (pcn) { strncpy(colname, pcn, 64); From 51fb163b6d390119a7ca9641a4ca9b36e713fc35 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Vicen=C8=9Biu=20Ciorbaru?= Date: Sat, 25 Aug 2018 18:23:34 +0300 Subject: [PATCH 028/148] Fix clang warning of mismatched new[] and delete[] Warning: 'delete' applied to a pointer that was allocated with 'new[]'; did you mean 'delete[]'? --- storage/connect/javaconn.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/storage/connect/javaconn.cpp b/storage/connect/javaconn.cpp index e73149486a8..ec10b125737 100644 --- a/storage/connect/javaconn.cpp +++ b/storage/connect/javaconn.cpp @@ -456,7 +456,7 @@ bool JAVAConn::Open(PGLOBAL g) //=============== load and initialize Java VM and JNI interface ============= rc = CreateJavaVM(&jvm, (void**)&env, &vm_args); // YES !! - delete options; // we then no longer need the initialisation options. + delete[] options; // we then no longer need the initialisation options. switch (rc) { case JNI_OK: From 69d7bfd97092f050bd4c60ce79f60d48a249089b Mon Sep 17 00:00:00 2001 From: Varun Gupta Date: Fri, 24 Aug 2018 01:59:02 +0530 Subject: [PATCH 029/148] MDEV-17023: Crash during read_histogram_for_table with optimizer_use_condition_selectivity set to 4 No need to read statistics for tables that are not USER tables. We allocate memory for structures to collect statistics only for USER TABLES. --- mysql-test/r/stat_tables.result | 13 +++++++++++++ mysql-test/r/stat_tables_innodb.result | 13 +++++++++++++ mysql-test/t/stat_tables.test | 12 ++++++++++++ sql/sql_statistics.cc | 3 +++ 4 files changed, 41 insertions(+) diff --git a/mysql-test/r/stat_tables.result b/mysql-test/r/stat_tables.result index c1457d5e91a..cd78d44462e 100644 --- a/mysql-test/r/stat_tables.result +++ b/mysql-test/r/stat_tables.result @@ -577,3 +577,16 @@ SELECT * FROM mysql.column_stats; db_name table_name column_name min_value max_value nulls_ratio avg_length avg_frequency hist_size hist_type histogram DROP TABLE t1; set use_stat_tables=@save_use_stat_tables; +# +# MDEV-17023: Crash during read_histogram_for_table with optimizer_use_condition_selectivity set to 4 +# +set @save_optimizer_use_condition_selectivity=@@optimizer_use_condition_selectivity; +set @@optimizer_use_condition_selectivity=4; +set @@use_stat_tables= PREFERABLY; +explain +SELECT * FROM INFORMATION_SCHEMA.PROFILING, mysql.user; +id select_type table type possible_keys key key_len ref rows Extra +1 SIMPLE PROFILING ALL NULL NULL NULL NULL NULL +1 SIMPLE user ALL NULL NULL NULL NULL 4 Using join buffer (flat, BNL join) +set @@optimizer_use_condition_selectivity=@save_optimizer_use_condition_selectivity; +set use_stat_tables=@save_use_stat_tables; diff --git a/mysql-test/r/stat_tables_innodb.result b/mysql-test/r/stat_tables_innodb.result index 2ac868e9341..02a07fa8bbb 100644 --- a/mysql-test/r/stat_tables_innodb.result +++ b/mysql-test/r/stat_tables_innodb.result @@ -604,5 +604,18 @@ SELECT * FROM mysql.column_stats; db_name table_name column_name min_value max_value nulls_ratio avg_length avg_frequency hist_size hist_type histogram DROP TABLE t1; set use_stat_tables=@save_use_stat_tables; +# +# MDEV-17023: Crash during read_histogram_for_table with optimizer_use_condition_selectivity set to 4 +# +set @save_optimizer_use_condition_selectivity=@@optimizer_use_condition_selectivity; +set @@optimizer_use_condition_selectivity=4; +set @@use_stat_tables= PREFERABLY; +explain +SELECT * FROM INFORMATION_SCHEMA.PROFILING, mysql.user; +id select_type table type possible_keys key key_len ref rows Extra +1 SIMPLE PROFILING ALL NULL NULL NULL NULL NULL +1 SIMPLE user ALL NULL NULL NULL NULL 4 Using join buffer (flat, BNL join) +set @@optimizer_use_condition_selectivity=@save_optimizer_use_condition_selectivity; +set use_stat_tables=@save_use_stat_tables; set optimizer_switch=@save_optimizer_switch_for_stat_tables_test; SET SESSION STORAGE_ENGINE=DEFAULT; diff --git a/mysql-test/t/stat_tables.test b/mysql-test/t/stat_tables.test index d69b00618ea..a0b2a22b946 100644 --- a/mysql-test/t/stat_tables.test +++ b/mysql-test/t/stat_tables.test @@ -356,3 +356,15 @@ SELECT * FROM mysql.column_stats; DROP TABLE t1; set use_stat_tables=@save_use_stat_tables; + +--echo # +--echo # MDEV-17023: Crash during read_histogram_for_table with optimizer_use_condition_selectivity set to 4 +--echo # + +set @save_optimizer_use_condition_selectivity=@@optimizer_use_condition_selectivity; +set @@optimizer_use_condition_selectivity=4; +set @@use_stat_tables= PREFERABLY; +explain +SELECT * FROM INFORMATION_SCHEMA.PROFILING, mysql.user; +set @@optimizer_use_condition_selectivity=@save_optimizer_use_condition_selectivity; +set use_stat_tables=@save_use_stat_tables; diff --git a/sql/sql_statistics.cc b/sql/sql_statistics.cc index 537ede91710..cb75a5c2176 100644 --- a/sql/sql_statistics.cc +++ b/sql/sql_statistics.cc @@ -3129,6 +3129,9 @@ int read_statistics_for_tables_if_needed(THD *thd, TABLE_LIST *tables) if (!tl->is_view_or_derived() && !is_temporary_table(tl) && tl->table) { TABLE_SHARE *table_share= tl->table->s; + if (table_share && !(table_share->table_category == TABLE_CATEGORY_USER)) + continue; + if (table_share && table_share->stats_cb.stats_can_be_read && !table_share->stats_cb.stats_is_read) From c11fb374b53f5009942f481b905e721d08dd6e7b Mon Sep 17 00:00:00 2001 From: Julius Goryavsky Date: Mon, 27 Aug 2018 16:10:20 +0200 Subject: [PATCH 030/148] MDEV-10756: wsrep_sst_xtrabackup-v2 does not support innodb_data_home_dir Current versions of xtrabackup-v2 and mariabackup support the option --innodb-data-home-dir, but this parameter is not passed to them from the SST script, since the SST script does not receive this information from mysqld. The transfer of this information to the SST is already fixed by the MDEV-10754 patch, but we need to process it in the SST script. Also, we should take into account that on the joiner side the corresponding information is not read yet from the configuration file (at the mysqld side) during the start of SST, so the script must itself read it. https://jira.mariadb.org/browse/MDEV-10756 --- .../galera_sst_xtrabackup-v2_data_dir.result | 262 ++++++++++++++++++ .../t/galera_sst_xtrabackup-v2_data_dir.cnf | 16 ++ .../t/galera_sst_xtrabackup-v2_data_dir.test | 23 ++ scripts/wsrep_sst_common.sh | 5 + scripts/wsrep_sst_rsync.sh | 7 + scripts/wsrep_sst_xtrabackup-v2.sh | 28 +- 6 files changed, 339 insertions(+), 2 deletions(-) create mode 100644 mysql-test/suite/galera/r/galera_sst_xtrabackup-v2_data_dir.result create mode 100644 mysql-test/suite/galera/t/galera_sst_xtrabackup-v2_data_dir.cnf create mode 100644 mysql-test/suite/galera/t/galera_sst_xtrabackup-v2_data_dir.test diff --git a/mysql-test/suite/galera/r/galera_sst_xtrabackup-v2_data_dir.result b/mysql-test/suite/galera/r/galera_sst_xtrabackup-v2_data_dir.result new file mode 100644 index 00000000000..cec0f21ee22 --- /dev/null +++ b/mysql-test/suite/galera/r/galera_sst_xtrabackup-v2_data_dir.result @@ -0,0 +1,262 @@ +Performing State Transfer on a server that has been shut down cleanly and restarted +CREATE TABLE t1 (f1 CHAR(255)) ENGINE=InnoDB; +SET AUTOCOMMIT=OFF; +START TRANSACTION; +INSERT INTO t1 VALUES ('node1_committed_before'); +INSERT INTO t1 VALUES ('node1_committed_before'); +INSERT INTO t1 VALUES ('node1_committed_before'); +INSERT INTO t1 VALUES ('node1_committed_before'); +INSERT INTO t1 VALUES ('node1_committed_before'); +COMMIT; +SET AUTOCOMMIT=OFF; +START TRANSACTION; +INSERT INTO t1 VALUES ('node2_committed_before'); +INSERT INTO t1 VALUES ('node2_committed_before'); +INSERT INTO t1 VALUES ('node2_committed_before'); +INSERT INTO t1 VALUES ('node2_committed_before'); +INSERT INTO t1 VALUES ('node2_committed_before'); +COMMIT; +Shutting down server ... +SET AUTOCOMMIT=OFF; +START TRANSACTION; +INSERT INTO t1 VALUES ('node1_committed_during'); +INSERT INTO t1 VALUES ('node1_committed_during'); +INSERT INTO t1 VALUES ('node1_committed_during'); +INSERT INTO t1 VALUES ('node1_committed_during'); +INSERT INTO t1 VALUES ('node1_committed_during'); +COMMIT; +START TRANSACTION; +INSERT INTO t1 VALUES ('node1_to_be_committed_after'); +INSERT INTO t1 VALUES ('node1_to_be_committed_after'); +INSERT INTO t1 VALUES ('node1_to_be_committed_after'); +INSERT INTO t1 VALUES ('node1_to_be_committed_after'); +INSERT INTO t1 VALUES ('node1_to_be_committed_after'); +SET AUTOCOMMIT=OFF; +START TRANSACTION; +INSERT INTO t1 VALUES ('node1_to_be_rollbacked_after'); +INSERT INTO t1 VALUES ('node1_to_be_rollbacked_after'); +INSERT INTO t1 VALUES ('node1_to_be_rollbacked_after'); +INSERT INTO t1 VALUES ('node1_to_be_rollbacked_after'); +INSERT INTO t1 VALUES ('node1_to_be_rollbacked_after'); +Starting server ... +SET AUTOCOMMIT=OFF; +START TRANSACTION; +INSERT INTO t1 VALUES ('node2_committed_after'); +INSERT INTO t1 VALUES ('node2_committed_after'); +INSERT INTO t1 VALUES ('node2_committed_after'); +INSERT INTO t1 VALUES ('node2_committed_after'); +INSERT INTO t1 VALUES ('node2_committed_after'); +COMMIT; +INSERT INTO t1 VALUES ('node1_to_be_committed_after'); +INSERT INTO t1 VALUES ('node1_to_be_committed_after'); +INSERT INTO t1 VALUES ('node1_to_be_committed_after'); +INSERT INTO t1 VALUES ('node1_to_be_committed_after'); +INSERT INTO t1 VALUES ('node1_to_be_committed_after'); +COMMIT; +SET AUTOCOMMIT=OFF; +START TRANSACTION; +INSERT INTO t1 VALUES ('node1_committed_after'); +INSERT INTO t1 VALUES ('node1_committed_after'); +INSERT INTO t1 VALUES ('node1_committed_after'); +INSERT INTO t1 VALUES ('node1_committed_after'); +INSERT INTO t1 VALUES ('node1_committed_after'); +COMMIT; +INSERT INTO t1 VALUES ('node1_to_be_rollbacked_after'); +INSERT INTO t1 VALUES ('node1_to_be_rollbacked_after'); +INSERT INTO t1 VALUES ('node1_to_be_rollbacked_after'); +INSERT INTO t1 VALUES ('node1_to_be_rollbacked_after'); +INSERT INTO t1 VALUES ('node1_to_be_rollbacked_after'); +ROLLBACK; +SELECT COUNT(*) = 35 FROM t1; +COUNT(*) = 35 +1 +SELECT COUNT(*) = 0 FROM (SELECT COUNT(*) AS c, f1 FROM t1 GROUP BY f1 HAVING c NOT IN (5, 10)) AS a1; +COUNT(*) = 0 +1 +COMMIT; +SET AUTOCOMMIT=ON; +SELECT COUNT(*) = 35 FROM t1; +COUNT(*) = 35 +1 +SELECT COUNT(*) = 0 FROM (SELECT COUNT(*) AS c, f1 FROM t1 GROUP BY f1 HAVING c NOT IN (5, 10)) AS a1; +COUNT(*) = 0 +1 +DROP TABLE t1; +COMMIT; +SET AUTOCOMMIT=ON; +Performing State Transfer on a server that starts from a clean var directory +This is accomplished by shutting down node #2 and removing its var directory before restarting it +CREATE TABLE t1 (f1 CHAR(255)) ENGINE=InnoDB; +SET AUTOCOMMIT=OFF; +START TRANSACTION; +INSERT INTO t1 VALUES ('node1_committed_before'); +INSERT INTO t1 VALUES ('node1_committed_before'); +INSERT INTO t1 VALUES ('node1_committed_before'); +INSERT INTO t1 VALUES ('node1_committed_before'); +INSERT INTO t1 VALUES ('node1_committed_before'); +COMMIT; +SET AUTOCOMMIT=OFF; +START TRANSACTION; +INSERT INTO t1 VALUES ('node2_committed_before'); +INSERT INTO t1 VALUES ('node2_committed_before'); +INSERT INTO t1 VALUES ('node2_committed_before'); +INSERT INTO t1 VALUES ('node2_committed_before'); +INSERT INTO t1 VALUES ('node2_committed_before'); +COMMIT; +Shutting down server ... +Cleaning var directory ... +SET AUTOCOMMIT=OFF; +START TRANSACTION; +INSERT INTO t1 VALUES ('node1_committed_during'); +INSERT INTO t1 VALUES ('node1_committed_during'); +INSERT INTO t1 VALUES ('node1_committed_during'); +INSERT INTO t1 VALUES ('node1_committed_during'); +INSERT INTO t1 VALUES ('node1_committed_during'); +COMMIT; +START TRANSACTION; +INSERT INTO t1 VALUES ('node1_to_be_committed_after'); +INSERT INTO t1 VALUES ('node1_to_be_committed_after'); +INSERT INTO t1 VALUES ('node1_to_be_committed_after'); +INSERT INTO t1 VALUES ('node1_to_be_committed_after'); +INSERT INTO t1 VALUES ('node1_to_be_committed_after'); +SET AUTOCOMMIT=OFF; +START TRANSACTION; +INSERT INTO t1 VALUES ('node1_to_be_rollbacked_after'); +INSERT INTO t1 VALUES ('node1_to_be_rollbacked_after'); +INSERT INTO t1 VALUES ('node1_to_be_rollbacked_after'); +INSERT INTO t1 VALUES ('node1_to_be_rollbacked_after'); +INSERT INTO t1 VALUES ('node1_to_be_rollbacked_after'); +Starting server ... +SET AUTOCOMMIT=OFF; +START TRANSACTION; +INSERT INTO t1 VALUES ('node2_committed_after'); +INSERT INTO t1 VALUES ('node2_committed_after'); +INSERT INTO t1 VALUES ('node2_committed_after'); +INSERT INTO t1 VALUES ('node2_committed_after'); +INSERT INTO t1 VALUES ('node2_committed_after'); +COMMIT; +INSERT INTO t1 VALUES ('node1_to_be_committed_after'); +INSERT INTO t1 VALUES ('node1_to_be_committed_after'); +INSERT INTO t1 VALUES ('node1_to_be_committed_after'); +INSERT INTO t1 VALUES ('node1_to_be_committed_after'); +INSERT INTO t1 VALUES ('node1_to_be_committed_after'); +COMMIT; +SET AUTOCOMMIT=OFF; +START TRANSACTION; +INSERT INTO t1 VALUES ('node1_committed_after'); +INSERT INTO t1 VALUES ('node1_committed_after'); +INSERT INTO t1 VALUES ('node1_committed_after'); +INSERT INTO t1 VALUES ('node1_committed_after'); +INSERT INTO t1 VALUES ('node1_committed_after'); +COMMIT; +INSERT INTO t1 VALUES ('node1_to_be_rollbacked_after'); +INSERT INTO t1 VALUES ('node1_to_be_rollbacked_after'); +INSERT INTO t1 VALUES ('node1_to_be_rollbacked_after'); +INSERT INTO t1 VALUES ('node1_to_be_rollbacked_after'); +INSERT INTO t1 VALUES ('node1_to_be_rollbacked_after'); +ROLLBACK; +SELECT COUNT(*) = 35 FROM t1; +COUNT(*) = 35 +1 +SELECT COUNT(*) = 0 FROM (SELECT COUNT(*) AS c, f1 FROM t1 GROUP BY f1 HAVING c NOT IN (5, 10)) AS a1; +COUNT(*) = 0 +1 +COMMIT; +SET AUTOCOMMIT=ON; +SELECT COUNT(*) = 35 FROM t1; +COUNT(*) = 35 +1 +SELECT COUNT(*) = 0 FROM (SELECT COUNT(*) AS c, f1 FROM t1 GROUP BY f1 HAVING c NOT IN (5, 10)) AS a1; +COUNT(*) = 0 +1 +DROP TABLE t1; +COMMIT; +SET AUTOCOMMIT=ON; +Performing State Transfer on a server that has been killed and restarted +CREATE TABLE t1 (f1 CHAR(255)) ENGINE=InnoDB; +SET AUTOCOMMIT=OFF; +START TRANSACTION; +INSERT INTO t1 VALUES ('node1_committed_before'); +INSERT INTO t1 VALUES ('node1_committed_before'); +INSERT INTO t1 VALUES ('node1_committed_before'); +INSERT INTO t1 VALUES ('node1_committed_before'); +INSERT INTO t1 VALUES ('node1_committed_before'); +COMMIT; +SET AUTOCOMMIT=OFF; +START TRANSACTION; +INSERT INTO t1 VALUES ('node2_committed_before'); +INSERT INTO t1 VALUES ('node2_committed_before'); +INSERT INTO t1 VALUES ('node2_committed_before'); +INSERT INTO t1 VALUES ('node2_committed_before'); +INSERT INTO t1 VALUES ('node2_committed_before'); +COMMIT; +Killing server ... +SET AUTOCOMMIT=OFF; +START TRANSACTION; +INSERT INTO t1 VALUES ('node1_committed_during'); +INSERT INTO t1 VALUES ('node1_committed_during'); +INSERT INTO t1 VALUES ('node1_committed_during'); +INSERT INTO t1 VALUES ('node1_committed_during'); +INSERT INTO t1 VALUES ('node1_committed_during'); +COMMIT; +START TRANSACTION; +INSERT INTO t1 VALUES ('node1_to_be_committed_after'); +INSERT INTO t1 VALUES ('node1_to_be_committed_after'); +INSERT INTO t1 VALUES ('node1_to_be_committed_after'); +INSERT INTO t1 VALUES ('node1_to_be_committed_after'); +INSERT INTO t1 VALUES ('node1_to_be_committed_after'); +SET AUTOCOMMIT=OFF; +START TRANSACTION; +INSERT INTO t1 VALUES ('node1_to_be_rollbacked_after'); +INSERT INTO t1 VALUES ('node1_to_be_rollbacked_after'); +INSERT INTO t1 VALUES ('node1_to_be_rollbacked_after'); +INSERT INTO t1 VALUES ('node1_to_be_rollbacked_after'); +INSERT INTO t1 VALUES ('node1_to_be_rollbacked_after'); +Performing --wsrep-recover ... +Starting server ... +Using --wsrep-start-position when starting mysqld ... +SET AUTOCOMMIT=OFF; +START TRANSACTION; +INSERT INTO t1 VALUES ('node2_committed_after'); +INSERT INTO t1 VALUES ('node2_committed_after'); +INSERT INTO t1 VALUES ('node2_committed_after'); +INSERT INTO t1 VALUES ('node2_committed_after'); +INSERT INTO t1 VALUES ('node2_committed_after'); +COMMIT; +INSERT INTO t1 VALUES ('node1_to_be_committed_after'); +INSERT INTO t1 VALUES ('node1_to_be_committed_after'); +INSERT INTO t1 VALUES ('node1_to_be_committed_after'); +INSERT INTO t1 VALUES ('node1_to_be_committed_after'); +INSERT INTO t1 VALUES ('node1_to_be_committed_after'); +COMMIT; +SET AUTOCOMMIT=OFF; +START TRANSACTION; +INSERT INTO t1 VALUES ('node1_committed_after'); +INSERT INTO t1 VALUES ('node1_committed_after'); +INSERT INTO t1 VALUES ('node1_committed_after'); +INSERT INTO t1 VALUES ('node1_committed_after'); +INSERT INTO t1 VALUES ('node1_committed_after'); +COMMIT; +INSERT INTO t1 VALUES ('node1_to_be_rollbacked_after'); +INSERT INTO t1 VALUES ('node1_to_be_rollbacked_after'); +INSERT INTO t1 VALUES ('node1_to_be_rollbacked_after'); +INSERT INTO t1 VALUES ('node1_to_be_rollbacked_after'); +INSERT INTO t1 VALUES ('node1_to_be_rollbacked_after'); +ROLLBACK; +SELECT COUNT(*) = 35 FROM t1; +COUNT(*) = 35 +1 +SELECT COUNT(*) = 0 FROM (SELECT COUNT(*) AS c, f1 FROM t1 GROUP BY f1 HAVING c NOT IN (5, 10)) AS a1; +COUNT(*) = 0 +1 +COMMIT; +SET AUTOCOMMIT=ON; +SELECT COUNT(*) = 35 FROM t1; +COUNT(*) = 35 +1 +SELECT COUNT(*) = 0 FROM (SELECT COUNT(*) AS c, f1 FROM t1 GROUP BY f1 HAVING c NOT IN (5, 10)) AS a1; +COUNT(*) = 0 +1 +DROP TABLE t1; +COMMIT; +SET AUTOCOMMIT=ON; diff --git a/mysql-test/suite/galera/t/galera_sst_xtrabackup-v2_data_dir.cnf b/mysql-test/suite/galera/t/galera_sst_xtrabackup-v2_data_dir.cnf new file mode 100644 index 00000000000..89f23d24d87 --- /dev/null +++ b/mysql-test/suite/galera/t/galera_sst_xtrabackup-v2_data_dir.cnf @@ -0,0 +1,16 @@ +!include ../galera_2nodes.cnf + +[mysqld] +wsrep_sst_method=xtrabackup-v2 +wsrep_sst_auth="root:" +wsrep_debug=ON + +[mysqld.1] +wsrep_provider_options='base_port=@mysqld.1.#galera_port;gcache.size=1;pc.ignore_sb=true' + +[mysqld.2] +innodb_data_home_dir=@ENV.MYSQL_TMP_DIR/rsync_test_2 +wsrep_provider_options='base_port=@mysqld.2.#galera_port;gcache.size=1;pc.ignore_sb=true' + +[sst] +transferfmt=@ENV.MTR_GALERA_TFMT diff --git a/mysql-test/suite/galera/t/galera_sst_xtrabackup-v2_data_dir.test b/mysql-test/suite/galera/t/galera_sst_xtrabackup-v2_data_dir.test new file mode 100644 index 00000000000..135bc2a39f7 --- /dev/null +++ b/mysql-test/suite/galera/t/galera_sst_xtrabackup-v2_data_dir.test @@ -0,0 +1,23 @@ +--source include/big_test.inc +--source include/galera_cluster.inc +--source include/have_innodb.inc +--source include/have_xtrabackup.inc + +# Save original auto_increment_offset values. +--let $node_1=node_1 +--let $node_2=node_2 +--source include/auto_increment_offset_save.inc + +--source suite/galera/include/galera_st_shutdown_slave.inc +--source suite/galera/include/galera_st_clean_slave.inc + +--source suite/galera/include/galera_st_kill_slave.inc +--source suite/galera/include/galera_st_kill_slave_ddl.inc + +# Restore original auto_increment_offset values. +--source include/auto_increment_offset_restore.inc + +--source include/galera_end.inc + +# cleanup temporary database files: +--remove_files_wildcard $MYSQL_TMP_DIR/rsync_test_2 * diff --git a/scripts/wsrep_sst_common.sh b/scripts/wsrep_sst_common.sh index 7f1f44d0cdb..b489e99e647 100644 --- a/scripts/wsrep_sst_common.sh +++ b/scripts/wsrep_sst_common.sh @@ -28,6 +28,7 @@ WSREP_SST_OPT_DEFAULT="" WSREP_SST_OPT_EXTRA_DEFAULT="" WSREP_SST_OPT_SUFFIX_DEFAULT="" WSREP_SST_OPT_SUFFIX_VALUE="" +INNODB_DATA_HOME_DIR_ARG="" while [ $# -gt 0 ]; do case "$1" in @@ -67,6 +68,10 @@ case "$1" in readonly WSREP_SST_OPT_DATA="$2" shift ;; + '--innodb-data-home-dir') + readonly INNODB_DATA_HOME_DIR_ARG="$2" + shift + ;; '--defaults-file') readonly WSREP_SST_OPT_DEFAULT="$1=$2" shift diff --git a/scripts/wsrep_sst_rsync.sh b/scripts/wsrep_sst_rsync.sh index 77a25ffc530..a70c89d0b1f 100644 --- a/scripts/wsrep_sst_rsync.sh +++ b/scripts/wsrep_sst_rsync.sh @@ -122,10 +122,17 @@ else fi INNODB_DATA_HOME_DIR=${INNODB_DATA_HOME_DIR:-""} +# Try to set INNODB_DATA_HOME_DIR from the command line: +if [ ! -z "$INNODB_DATA_HOME_DIR_ARG" ]; then + INNODB_DATA_HOME_DIR=$INNODB_DATA_HOME_DIR_ARG +fi # if INNODB_DATA_HOME_DIR env. variable is not set, try to get it from my.cnf if [ -z "$INNODB_DATA_HOME_DIR" ]; then INNODB_DATA_HOME_DIR=$(parse_cnf mysqld$WSREP_SST_OPT_SUFFIX_VALUE innodb-data-home-dir '') fi +if [ -z "$INNODB_DATA_HOME_DIR" ]; then + INNODB_DATA_HOME_DIR=$(parse_cnf --mysqld innodb-data-home-dir "") +fi if [ -n "$INNODB_DATA_HOME_DIR" ]; then # handle both relative and absolute paths diff --git a/scripts/wsrep_sst_xtrabackup-v2.sh b/scripts/wsrep_sst_xtrabackup-v2.sh index 99bbabbe9be..5fad91df18b 100644 --- a/scripts/wsrep_sst_xtrabackup-v2.sh +++ b/scripts/wsrep_sst_xtrabackup-v2.sh @@ -899,7 +899,31 @@ fi get_stream get_transfer -INNOAPPLY="${INNOBACKUPEX_BIN} $disver $iapts --apply-log \$rebuildcmd \${DATA} ${INNOAPPLY}" +INNODB_DATA_HOME_DIR=${INNODB_DATA_HOME_DIR:-""} +# Try to set INNODB_DATA_HOME_DIR from the command line: +if [ ! -z "$INNODB_DATA_HOME_DIR_ARG" ]; then + INNODB_DATA_HOME_DIR=$INNODB_DATA_HOME_DIR_ARG +fi +# if INNODB_DATA_HOME_DIR env. variable is not set, try to get it from my.cnf +if [ -z "$INNODB_DATA_HOME_DIR" ]; then + INNODB_DATA_HOME_DIR=$(parse_cnf mysqld$WSREP_SST_OPT_SUFFIX_VALUE innodb-data-home-dir '') +fi +if [ -z "$INNODB_DATA_HOME_DIR" ]; then + INNODB_DATA_HOME_DIR=$(parse_cnf --mysqld innodb-data-home-dir "") +fi +if [ ! -z "$INNODB_DATA_HOME_DIR" ]; then + INNOEXTRA+=" --innodb-data-home-dir=$INNODB_DATA_HOME_DIR" +fi + +if [ -n "$INNODB_DATA_HOME_DIR" ]; then + # handle both relative and absolute paths + INNODB_DATA_HOME_DIR=$(cd $DATA; mkdir -p "$INNODB_DATA_HOME_DIR"; cd $INNODB_DATA_HOME_DIR; pwd -P) +else + # default to datadir + INNODB_DATA_HOME_DIR=$(cd $DATA; pwd -P) +fi + +INNOAPPLY="${INNOBACKUPEX_BIN} $disver $iapts \$INNOEXTRA --apply-log \$rebuildcmd \${DATA} ${INNOAPPLY}" INNOMOVE="${INNOBACKUPEX_BIN} ${WSREP_SST_OPT_CONF} $disver $impts --move-back --force-non-empty-directories \${DATA} ${INNOMOVE}" INNOBACKUP="${INNOBACKUPEX_BIN} ${WSREP_SST_OPT_CONF} $disver $iopts \$tmpopts \$INNOEXTRA --galera-info --stream=\$sfmt \$itmpdir ${INNOBACKUP}" @@ -1035,7 +1059,7 @@ then [[ -e $SST_PROGRESS_FILE ]] && wsrep_log_info "Stale sst_in_progress file: $SST_PROGRESS_FILE" [[ -n $SST_PROGRESS_FILE ]] && touch $SST_PROGRESS_FILE - ib_home_dir=$(parse_cnf --mysqld innodb-data-home-dir "") + ib_home_dir=$INNODB_DATA_HOME_DIR ib_log_dir=$(parse_cnf --mysqld innodb-log-group-home-dir "") ib_undo_dir=$(parse_cnf --mysqld innodb-undo-directory "") From a9c09c95bdd33ee0cbd3fb3254753ab2fc56f2a5 Mon Sep 17 00:00:00 2001 From: Varun Gupta Date: Tue, 28 Aug 2018 21:59:11 +0530 Subject: [PATCH 031/148] MDEV-15306: Wrong/Unexpected result with the value optimizer_use_condition_selectivity set to 4 Currently for selectivity calculation we perform range analysis for a column even when we don't have any statistics(EITS). This makes less sense but is used to catch contradiction for WHERE condition. So the solution is to not perform range analysis for selectivity calculation for columns that do not have statistics. --- mysql-test/r/selectivity.result | 44 ++++++++++++++++++++++++-- mysql-test/r/selectivity_innodb.result | 44 ++++++++++++++++++++++++-- mysql-test/t/selectivity.test | 36 +++++++++++++++++++++ sql/opt_range.cc | 10 ++++-- sql/sql_statistics.h | 29 ++++++++++++++--- 5 files changed, 152 insertions(+), 11 deletions(-) diff --git a/mysql-test/r/selectivity.result b/mysql-test/r/selectivity.result index 3e8fb8e2e41..6af4f9a9ace 100644 --- a/mysql-test/r/selectivity.result +++ b/mysql-test/r/selectivity.result @@ -782,9 +782,9 @@ set optimizer_use_condition_selectivity=3; explain extended select * from t1 where a < 1 and a > 7; id select_type table type possible_keys key key_len ref rows filtered Extra -1 SIMPLE NULL NULL NULL NULL NULL NULL NULL NULL Impossible WHERE noticed after reading const tables +1 SIMPLE t1 ALL NULL NULL NULL NULL 8 100.00 Using where Warnings: -Note 1003 select `test`.`t1`.`a` AS `a` from `test`.`t1` where 0 +Note 1003 select `test`.`t1`.`a` AS `a` from `test`.`t1` where ((`test`.`t1`.`a` < 1) and (`test`.`t1`.`a` > 7)) select * from t1 where a < 1 and a > 7; a drop table t1; @@ -1600,3 +1600,43 @@ drop table t1,t0; set histogram_size=@save_histogram_size; set optimizer_use_condition_selectivity=@save_optimizer_use_condition_selectivity; set use_stat_tables=@save_use_stat_tables; +# +# MDEV-15306: Wrong/Unexpected result with the value +# optimizer_use_condition_selectivity set to 4 +# +CREATE TABLE t1 (a INT); +INSERT INTO t1 VALUES (1), (2), (3), (4), (5), (6), (7), (8), (9), (10); +CREATE FUNCTION f1() RETURNS INT DETERMINISTIC +BEGIN +SET @cnt := @cnt + 1; +RETURN 1; +END;| +set @save_optimizer_use_condition_selectivity=@@optimizer_use_condition_selectivity; +set @save_use_stat_tables= @@use_stat_tables; +set @@use_stat_tables='complementary'; +set @@optimizer_use_condition_selectivity=4; +SET @cnt= 0; +SELECT * FROM t1 WHERE a = f1(); +a +1 +SELECT @cnt; +@cnt +1 +set @@use_stat_tables='preferably'; +analyze table t1 persistent for all; +Table Op Msg_type Msg_text +test.t1 analyze status Engine-independent statistics collected +test.t1 analyze status OK +SET @cnt := 0; +set @@optimizer_use_condition_selectivity=4; +SELECT * FROM t1 WHERE a = f1(); +a +1 +SELECT @cnt; +@cnt +2 +alter table t1 force; +set @@use_stat_tables= @save_use_stat_tables; +set @@optimizer_use_condition_selectivity=@save_optimizer_use_condition_selectivity; +drop table t1; +drop function f1; diff --git a/mysql-test/r/selectivity_innodb.result b/mysql-test/r/selectivity_innodb.result index 748ef0cb6ca..e0ed2865f13 100644 --- a/mysql-test/r/selectivity_innodb.result +++ b/mysql-test/r/selectivity_innodb.result @@ -789,9 +789,9 @@ set optimizer_use_condition_selectivity=3; explain extended select * from t1 where a < 1 and a > 7; id select_type table type possible_keys key key_len ref rows filtered Extra -1 SIMPLE NULL NULL NULL NULL NULL NULL NULL NULL Impossible WHERE noticed after reading const tables +1 SIMPLE t1 ALL NULL NULL NULL NULL 8 100.00 Using where Warnings: -Note 1003 select `test`.`t1`.`a` AS `a` from `test`.`t1` where 0 +Note 1003 select `test`.`t1`.`a` AS `a` from `test`.`t1` where ((`test`.`t1`.`a` < 1) and (`test`.`t1`.`a` > 7)) select * from t1 where a < 1 and a > 7; a drop table t1; @@ -1604,6 +1604,46 @@ drop table t1,t0; set histogram_size=@save_histogram_size; set optimizer_use_condition_selectivity=@save_optimizer_use_condition_selectivity; set use_stat_tables=@save_use_stat_tables; +# +# MDEV-15306: Wrong/Unexpected result with the value +# optimizer_use_condition_selectivity set to 4 +# +CREATE TABLE t1 (a INT); +INSERT INTO t1 VALUES (1), (2), (3), (4), (5), (6), (7), (8), (9), (10); +CREATE FUNCTION f1() RETURNS INT DETERMINISTIC +BEGIN +SET @cnt := @cnt + 1; +RETURN 1; +END;| +set @save_optimizer_use_condition_selectivity=@@optimizer_use_condition_selectivity; +set @save_use_stat_tables= @@use_stat_tables; +set @@use_stat_tables='complementary'; +set @@optimizer_use_condition_selectivity=4; +SET @cnt= 0; +SELECT * FROM t1 WHERE a = f1(); +a +1 +SELECT @cnt; +@cnt +1 +set @@use_stat_tables='preferably'; +analyze table t1 persistent for all; +Table Op Msg_type Msg_text +test.t1 analyze status Engine-independent statistics collected +test.t1 analyze status OK +SET @cnt := 0; +set @@optimizer_use_condition_selectivity=4; +SELECT * FROM t1 WHERE a = f1(); +a +1 +SELECT @cnt; +@cnt +2 +alter table t1 force; +set @@use_stat_tables= @save_use_stat_tables; +set @@optimizer_use_condition_selectivity=@save_optimizer_use_condition_selectivity; +drop table t1; +drop function f1; set optimizer_switch=@save_optimizer_switch_for_selectivity_test; set @tmp_ust= @@use_stat_tables; set @tmp_oucs= @@optimizer_use_condition_selectivity; diff --git a/mysql-test/t/selectivity.test b/mysql-test/t/selectivity.test index afaa937c360..557a4e92bca 100644 --- a/mysql-test/t/selectivity.test +++ b/mysql-test/t/selectivity.test @@ -1064,3 +1064,39 @@ drop table t1,t0; set histogram_size=@save_histogram_size; set optimizer_use_condition_selectivity=@save_optimizer_use_condition_selectivity; set use_stat_tables=@save_use_stat_tables; + +--echo # +--echo # MDEV-15306: Wrong/Unexpected result with the value +--echo # optimizer_use_condition_selectivity set to 4 +--echo # + +CREATE TABLE t1 (a INT); +INSERT INTO t1 VALUES (1), (2), (3), (4), (5), (6), (7), (8), (9), (10); + +delimiter |; +CREATE FUNCTION f1() RETURNS INT DETERMINISTIC +BEGIN + SET @cnt := @cnt + 1; + RETURN 1; +END;| +delimiter ;| +set @save_optimizer_use_condition_selectivity=@@optimizer_use_condition_selectivity; +set @save_use_stat_tables= @@use_stat_tables; +set @@use_stat_tables='complementary'; +set @@optimizer_use_condition_selectivity=4; +SET @cnt= 0; +SELECT * FROM t1 WHERE a = f1(); +SELECT @cnt; + +set @@use_stat_tables='preferably'; +analyze table t1 persistent for all; +SET @cnt := 0; +set @@optimizer_use_condition_selectivity=4; +SELECT * FROM t1 WHERE a = f1(); +SELECT @cnt; +alter table t1 force; +set @@use_stat_tables= @save_use_stat_tables; +set @@optimizer_use_condition_selectivity=@save_optimizer_use_condition_selectivity; +drop table t1; +drop function f1; + diff --git a/sql/opt_range.cc b/sql/opt_range.cc index 734adfbc9d1..ceabac2b744 100644 --- a/sql/opt_range.cc +++ b/sql/opt_range.cc @@ -3326,13 +3326,18 @@ bool create_key_parts_for_pseudo_indexes(RANGE_OPT_PARAM *param, for (field_ptr= table->field; *field_ptr; field_ptr++) { - if (bitmap_is_set(used_fields, (*field_ptr)->field_index)) + Column_statistics* col_stats= (*field_ptr)->read_stats; + if (bitmap_is_set(used_fields, (*field_ptr)->field_index) + && col_stats && !col_stats->no_stat_values_provided()) parts++; } KEY_PART *key_part; uint keys= 0; + if (!parts) + return TRUE; + if (!(key_part= (KEY_PART *) alloc_root(param->mem_root, sizeof(KEY_PART) * parts))) return TRUE; @@ -3628,7 +3633,8 @@ bool calculate_cond_selectivity_for_table(THD *thd, TABLE *table, Item *cond) */ if (thd->variables.optimizer_use_condition_selectivity > 2 && - !bitmap_is_clear_all(used_fields)) + !bitmap_is_clear_all(used_fields) && + thd->variables.use_stat_tables > 0) { PARAM param; MEM_ROOT alloc; diff --git a/sql/sql_statistics.h b/sql/sql_statistics.h index 6a43e42ab96..f28d56e4a69 100644 --- a/sql/sql_statistics.h +++ b/sql/sql_statistics.h @@ -342,12 +342,17 @@ private: public: Histogram histogram; + + uint32 no_values_provided_bitmap() + { + return + ((1 << (COLUMN_STAT_HISTOGRAM-COLUMN_STAT_COLUMN_NAME))-1) << + (COLUMN_STAT_COLUMN_NAME+1); + } void set_all_nulls() { - column_stat_nulls= - ((1 << (COLUMN_STAT_HISTOGRAM-COLUMN_STAT_COLUMN_NAME))-1) << - (COLUMN_STAT_COLUMN_NAME+1); + column_stat_nulls= no_values_provided_bitmap(); } void set_not_null(uint stat_field_no) @@ -393,8 +398,22 @@ public: bool min_max_values_are_provided() { return !is_null(COLUMN_STAT_MIN_VALUE) && - !is_null(COLUMN_STAT_MIN_VALUE); - } + !is_null(COLUMN_STAT_MAX_VALUE); + } + /* + This function checks whether the values for the fields of the statistical + tables that were NULL by DEFAULT for a column have changed or not. + + @retval + TRUE: Statistics are not present for a column + FALSE: Statisitics are present for a column + */ + bool no_stat_values_provided() + { + if (column_stat_nulls == no_values_provided_bitmap()) + return true; + return false; + } }; From b3c320bb0b93e516cda4db277cfa3efeef48c988 Mon Sep 17 00:00:00 2001 From: Varun Gupta Date: Wed, 29 Aug 2018 04:39:42 +0530 Subject: [PATCH 032/148] MDEV-16995: ER_CANT_CREATE_GEOMETRY_OBJECT encountered for a query with optimizer_use_condition_selectivity>=3 Selectivity analysis should be disabled for Geometrical columns for the case like geometric_field= string_constant. --- mysql-test/r/gis.result | 16 ++++++++++++++++ mysql-test/r/group_min_max.result | 2 +- mysql-test/t/gis.test | 15 +++++++++++++++ mysql-test/t/group_min_max.test | 2 +- sql/opt_range.cc | 6 +++++- 5 files changed, 38 insertions(+), 3 deletions(-) diff --git a/mysql-test/r/gis.result b/mysql-test/r/gis.result index f77cd4d14bf..fc69c13516f 100644 --- a/mysql-test/r/gis.result +++ b/mysql-test/r/gis.result @@ -1659,5 +1659,21 @@ c2 DROP TABLE t1; SET optimizer_switch=@save_optimizer_switch; # +# MDEV-16995: ER_CANT_CREATE_GEOMETRY_OBJECT encountered for a query with +# optimizer_use_condition_selectivity>=3 +# +CREATE TABLE t1 (a POINT); +INSERT INTO t1 VALUES (POINT(1,1)),(POINT(1,2)),(POINT(1,3)); +set @save_use_stat_tables= @@use_stat_tables; +set @save_optimizer_use_condition_selectivity= @@optimizer_use_condition_selectivity; +set @@use_stat_tables= PREFERABLY; +set @@optimizer_use_condition_selectivity=3; +SELECT COUNT(*) FROM t1 WHERE a IN ('test','test1'); +COUNT(*) +0 +set @@use_stat_tables= @save_use_stat_tables; +set @@optimizer_use_condition_selectivity= @save_optimizer_use_condition_selectivity; +drop table t1; +# # End 10.0 tests # diff --git a/mysql-test/r/group_min_max.result b/mysql-test/r/group_min_max.result index 34e1e256faa..a4cb8da5cce 100644 --- a/mysql-test/r/group_min_max.result +++ b/mysql-test/r/group_min_max.result @@ -3733,7 +3733,7 @@ id MIN(a) MAX(a) 4 2001-01-04 2001-01-04 DROP TABLE t1; # -# Query plan changes when we use GROUP BY optimization with optimizer_use_condition_selectivity=4 +# MDEV-17039: Query plan changes when we use GROUP BY optimization with optimizer_use_condition_selectivity=4 # and use_stat_tables= PREFERABLY # CREATE TABLE t1 (a INT, b INT,c INT DEFAULT 0, INDEX (a,b)); diff --git a/mysql-test/t/gis.test b/mysql-test/t/gis.test index 4192a3284b7..e41b236f864 100644 --- a/mysql-test/t/gis.test +++ b/mysql-test/t/gis.test @@ -1516,6 +1516,21 @@ SELECT LENGTH(CONCAT(t2,'--',t2)) c2 FROM (SELECT ST_BUFFER(POINT(x,y), 0) t2 FR DROP TABLE t1; SET optimizer_switch=@save_optimizer_switch; +--echo # +--echo # MDEV-16995: ER_CANT_CREATE_GEOMETRY_OBJECT encountered for a query with +--echo # optimizer_use_condition_selectivity>=3 +--echo # + +CREATE TABLE t1 (a POINT); +INSERT INTO t1 VALUES (POINT(1,1)),(POINT(1,2)),(POINT(1,3)); +set @save_use_stat_tables= @@use_stat_tables; +set @save_optimizer_use_condition_selectivity= @@optimizer_use_condition_selectivity; +set @@use_stat_tables= PREFERABLY; +set @@optimizer_use_condition_selectivity=3; +SELECT COUNT(*) FROM t1 WHERE a IN ('test','test1'); +set @@use_stat_tables= @save_use_stat_tables; +set @@optimizer_use_condition_selectivity= @save_optimizer_use_condition_selectivity; +drop table t1; --echo # --echo # End 10.0 tests diff --git a/mysql-test/t/group_min_max.test b/mysql-test/t/group_min_max.test index 72a556c9bc2..b10cfc7c8e7 100644 --- a/mysql-test/t/group_min_max.test +++ b/mysql-test/t/group_min_max.test @@ -1520,7 +1520,7 @@ SELECT id,MIN(a),MAX(a) FROM t1 WHERE a>=DATE'2001-01-04' GROUP BY id; DROP TABLE t1; --echo # ---echo # Query plan changes when we use GROUP BY optimization with optimizer_use_condition_selectivity=4 +--echo # MDEV-17039: Query plan changes when we use GROUP BY optimization with optimizer_use_condition_selectivity=4 --echo # and use_stat_tables= PREFERABLY --echo # diff --git a/sql/opt_range.cc b/sql/opt_range.cc index ceabac2b744..0fd2cd267fc 100644 --- a/sql/opt_range.cc +++ b/sql/opt_range.cc @@ -3328,7 +3328,8 @@ bool create_key_parts_for_pseudo_indexes(RANGE_OPT_PARAM *param, { Column_statistics* col_stats= (*field_ptr)->read_stats; if (bitmap_is_set(used_fields, (*field_ptr)->field_index) - && col_stats && !col_stats->no_stat_values_provided()) + && col_stats && !col_stats->no_stat_values_provided() + && !((*field_ptr)->type() == MYSQL_TYPE_GEOMETRY)) parts++; } @@ -3349,6 +3350,9 @@ bool create_key_parts_for_pseudo_indexes(RANGE_OPT_PARAM *param, if (bitmap_is_set(used_fields, (*field_ptr)->field_index)) { Field *field= *field_ptr; + if (field->type() == MYSQL_TYPE_GEOMETRY) + continue; + uint16 store_length; uint16 max_key_part_length= (uint16) table->file->max_key_part_length(); key_part->key= keys; From 42f09adab68f80fb99d6da0413cd4983ec13f5ab Mon Sep 17 00:00:00 2001 From: Monty Date: Thu, 30 Aug 2018 13:45:27 +0300 Subject: [PATCH 033/148] MDEV-16682 Assertion `(buff[7] & 7) == HEAD_PAGE' failed Problem was that SQL level tried to read a record with rnd_pos() that was already deleted by the same statement. In the case where the page for the record had been deleted, this caused an assert. Fixed by extending the assert to also handle empty pages and return HA_ERR_RECORD_DELETED for reads to deleted pages. --- mysql-test/suite/maria/maria.result | 4 ++++ mysql-test/suite/maria/maria.test | 10 ++++++++++ 2 files changed, 14 insertions(+) diff --git a/mysql-test/suite/maria/maria.result b/mysql-test/suite/maria/maria.result index 2aca47538cb..1cf48b0628d 100644 --- a/mysql-test/suite/maria/maria.result +++ b/mysql-test/suite/maria/maria.result @@ -2723,6 +2723,10 @@ id name -1 dog 2 cat DROP TABLE t1; +CREATE TABLE t1 (pk int, i2 int) ENGINE=Aria; +INSERT INTO t1 VALUES (1,2), (2,3),(3,4); +DELETE FROM tt.*, t1.* USING t1 AS tt LEFT JOIN t1 ON (tt.i2 = t1.pk); +DROP TABLE t1; # # End of 5.5 tests # diff --git a/mysql-test/suite/maria/maria.test b/mysql-test/suite/maria/maria.test index ab8e72dc321..954bd15744e 100644 --- a/mysql-test/suite/maria/maria.test +++ b/mysql-test/suite/maria/maria.test @@ -2012,6 +2012,16 @@ INSERT INTO t1 (name) VALUES ('cat'); SELECT * FROM t1; DROP TABLE t1; +# +# MDEV-16682 +# Assertion `(buff[7] & 7) == HEAD_PAGE' failed. +# + +CREATE TABLE t1 (pk int, i2 int) ENGINE=Aria; +INSERT INTO t1 VALUES (1,2), (2,3),(3,4); +DELETE FROM tt.*, t1.* USING t1 AS tt LEFT JOIN t1 ON (tt.i2 = t1.pk); +DROP TABLE t1; + --echo # --echo # End of 5.5 tests --echo # From 288212f489c8cd88c4cc98f8aecc3366c85a90be Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jan=20Lindstr=C3=B6m?= Date: Fri, 31 Aug 2018 15:30:44 +0300 Subject: [PATCH 034/148] Disable failing Galera tests. --- mysql-test/suite/galera/disabled.def | 2 ++ 1 file changed, 2 insertions(+) diff --git a/mysql-test/suite/galera/disabled.def b/mysql-test/suite/galera/disabled.def index 2ec3787c3b6..704cb753f0d 100644 --- a/mysql-test/suite/galera/disabled.def +++ b/mysql-test/suite/galera/disabled.def @@ -31,3 +31,5 @@ MW-416 : MDEV-13549 Galera test failures galera_wan : MDEV-13549 Galera test failures MW-388 : MDEV-13549 Galera test failures galera_sst_mysqldump_with_key : MDEV-16890 Galera test failure +galera.galera_binlog_stmt_autoinc : MDEV-17106 Test failure on galera.galera_binlog_stmt_autoinc +galera.galera_kill_ddl : MDEV-17108 Test failure on galera.galera_kill_ddl \ No newline at end of file From 796d54df115a0e5485a7df0835088a51dd0f9e77 Mon Sep 17 00:00:00 2001 From: Oleksandr Byelkin Date: Thu, 30 Aug 2018 15:18:35 +0200 Subject: [PATCH 035/148] MDEV-16957: Server crashes in Field_iterator_natural_join::next upon 2nd execution of SP The problem was that join_columns creation was not finished due to error of notfound column in USING, but next execution tried to use join_columns lists. Solution is cleanup the lists on error. It can eat memory in statement MEM_ROOT but it is an error and error will be fixed or statement/procedure removed/altered. --- mysql-test/r/join.result | 6 ++++-- mysql-test/r/sp.result | 17 +++++++++++++++++ mysql-test/t/join.test | 3 ++- mysql-test/t/sp.test | 21 +++++++++++++++++++++ sql/sql_base.cc | 14 +++++++++++++- sql/table.h | 10 ++++++++++ 6 files changed, 67 insertions(+), 4 deletions(-) diff --git a/mysql-test/r/join.result b/mysql-test/r/join.result index 7b0e7807e39..2e5ee30b54e 100644 --- a/mysql-test/r/join.result +++ b/mysql-test/r/join.result @@ -1514,11 +1514,13 @@ ERROR 42S22: Unknown column 'f' in 'from clause' DROP TABLE t; CREATE TABLE t (f INT); CALL p; -ERROR 42S22: Unknown column 'f' in 'from clause' +f DROP TABLE t; CREATE TABLE t (i INT); CALL p; -ERROR 42S22: Unknown column 'f' in 'from clause' +ERROR 42S22: Unknown column 't1.f' in 'field list' +CALL p; +ERROR 42S22: Unknown column 't1.f' in 'field list' DROP PROCEDURE p; DROP TABLE t; CREATE TABLE t1 (a INT, b INT); diff --git a/mysql-test/r/sp.result b/mysql-test/r/sp.result index 823c6f78cee..4535056242a 100644 --- a/mysql-test/r/sp.result +++ b/mysql-test/r/sp.result @@ -8055,4 +8055,21 @@ SET S.CLOSE_YN = '' where 1=1; drop function if exists f1; drop table t1,t2; +# +# MDEV-16957: Server crashes in Field_iterator_natural_join::next +# upon 2nd execution of SP +# +CREATE TABLE t1 (a INT, b VARCHAR(32)); +CREATE PROCEDURE sp() SELECT * FROM t1 AS t1x JOIN t1 AS t1y USING (c); +CALL sp; +ERROR 42S22: Unknown column 'c' in 'from clause' +CALL sp; +ERROR 42S22: Unknown column 'c' in 'from clause' +CALL sp; +ERROR 42S22: Unknown column 'c' in 'from clause' +alter table t1 add column c int; +CALL sp; +c a b a b +DROP PROCEDURE sp; +DROP TABLE t1; # End of 5.5 test diff --git a/mysql-test/t/join.test b/mysql-test/t/join.test index feafac57a7e..5a29fe72049 100644 --- a/mysql-test/t/join.test +++ b/mysql-test/t/join.test @@ -1185,12 +1185,13 @@ CREATE TABLE t (f INT); # # The following shouldn't fail as the table is now matching the using # ---error ER_BAD_FIELD_ERROR CALL p; DROP TABLE t; CREATE TABLE t (i INT); --error ER_BAD_FIELD_ERROR CALL p; +--error ER_BAD_FIELD_ERROR +CALL p; DROP PROCEDURE p; DROP TABLE t; diff --git a/mysql-test/t/sp.test b/mysql-test/t/sp.test index 0e42bf3c831..cb93cd31442 100644 --- a/mysql-test/t/sp.test +++ b/mysql-test/t/sp.test @@ -9353,4 +9353,25 @@ where 1=1; drop function if exists f1; drop table t1,t2; +--echo # +--echo # MDEV-16957: Server crashes in Field_iterator_natural_join::next +--echo # upon 2nd execution of SP +--echo # + +CREATE TABLE t1 (a INT, b VARCHAR(32)); +CREATE PROCEDURE sp() SELECT * FROM t1 AS t1x JOIN t1 AS t1y USING (c); +--error ER_BAD_FIELD_ERROR +CALL sp; +--error ER_BAD_FIELD_ERROR +CALL sp; +--error ER_BAD_FIELD_ERROR +CALL sp; +alter table t1 add column c int; +CALL sp; + +# Cleanup +DROP PROCEDURE sp; +DROP TABLE t1; + + --echo # End of 5.5 test diff --git a/sql/sql_base.cc b/sql/sql_base.cc index 8ffb7bc118b..272aa11977d 100644 --- a/sql/sql_base.cc +++ b/sql/sql_base.cc @@ -7764,10 +7764,22 @@ store_natural_using_join_columns(THD *thd, TABLE_LIST *natural_using_join, result= FALSE; -err: if (arena) thd->restore_active_arena(arena, &backup); DBUG_RETURN(result); + +err: + /* + Actually we failed to build join columns list, so we have to + clear it to avoid problems with half-build join on next run. + The list was created in mark_common_columns(). + */ + table_ref_1->remove_join_columns(); + table_ref_2->remove_join_columns(); + + if (arena) + thd->restore_active_arena(arena, &backup); + DBUG_RETURN(TRUE); } diff --git a/sql/table.h b/sql/table.h index 1d4a1d9a2d2..4725eb96432 100644 --- a/sql/table.h +++ b/sql/table.h @@ -2184,6 +2184,16 @@ struct TABLE_LIST } void set_lock_type(THD* thd, enum thr_lock_type lock); + void remove_join_columns() + { + if (join_columns) + { + join_columns->empty(); + join_columns= NULL; + is_join_columns_complete= FALSE; + } + } + private: bool prep_check_option(THD *thd, uint8 check_opt_type); bool prep_where(THD *thd, Item **conds, bool no_where_clause); From 63ad6a9e1a33ddd5547767b2894e09ae66196f69 Mon Sep 17 00:00:00 2001 From: Alexey Botchkov Date: Sun, 2 Sep 2018 09:24:33 +0400 Subject: [PATCH 036/148] MDEV-15890 Strange error message if you try to FLUSH TABLES after LOCK TABLES . Check if the argument of the FLUSH TABLE is a VIEW and handle it accordingly. --- mysql-test/r/flush.result | 24 +++++++ mysql-test/t/flush.test | 32 +++++++++ sql/sql_base.cc | 142 +++++++++++++++++++++++--------------- sql/sql_base.h | 3 +- sql/sql_reload.cc | 13 +++- sql/sql_table.cc | 2 +- sql/sql_trigger.cc | 2 +- sql/sql_truncate.cc | 2 +- 8 files changed, 159 insertions(+), 61 deletions(-) diff --git a/mysql-test/r/flush.result b/mysql-test/r/flush.result index b64351045bf..2d7b81b1907 100644 --- a/mysql-test/r/flush.result +++ b/mysql-test/r/flush.result @@ -496,3 +496,27 @@ flush relay logs,relay logs; ERROR HY000: Incorrect usage of FLUSH and RELAY LOGS flush slave,slave; ERROR HY000: Incorrect usage of FLUSH and SLAVE +# +# MDEV-15890 Strange error message if you try to +# FLUSH TABLES after LOCK TABLES . +# +CREATE TABLE t1 (qty INT, price INT); +CREATE VIEW v1 AS SELECT qty, price, qty*price AS value FROM t1; +LOCK TABLES v1 READ; +FLUSH TABLES v1; +ERROR HY000: Table 't1' was locked with a READ lock and can't be updated +UNLOCK TABLES; +LOCK TABLES v1 WRITE; +FLUSH TABLES v1; +ERROR HY000: Table 't1' was locked with a READ lock and can't be updated +UNLOCK TABLES; +LOCK TABLES v1 READ; +FLUSH TABLES t1; +ERROR HY000: Table 't1' was locked with a READ lock and can't be updated +UNLOCK TABLES; +LOCK TABLES t1 READ; +FLUSH TABLES v1; +ERROR HY000: Table 'v1' was not locked with LOCK TABLES +UNLOCK TABLES; +DROP VIEW v1; +DROP TABLE t1; diff --git a/mysql-test/t/flush.test b/mysql-test/t/flush.test index a1df9359d30..7736574b7df 100644 --- a/mysql-test/t/flush.test +++ b/mysql-test/t/flush.test @@ -709,3 +709,35 @@ DROP TABLE t1; flush relay logs,relay logs; --error ER_WRONG_USAGE flush slave,slave; + +--echo # +--echo # MDEV-15890 Strange error message if you try to +--echo # FLUSH TABLES after LOCK TABLES . +--echo # + +CREATE TABLE t1 (qty INT, price INT); +CREATE VIEW v1 AS SELECT qty, price, qty*price AS value FROM t1; + +LOCK TABLES v1 READ; +--error ER_TABLE_NOT_LOCKED_FOR_WRITE +FLUSH TABLES v1; +UNLOCK TABLES; + +LOCK TABLES v1 WRITE; +--error ER_TABLE_NOT_LOCKED_FOR_WRITE +FLUSH TABLES v1; +UNLOCK TABLES; + +LOCK TABLES v1 READ; +--error ER_TABLE_NOT_LOCKED_FOR_WRITE +FLUSH TABLES t1; +UNLOCK TABLES; + +LOCK TABLES t1 READ; +--error ER_TABLE_NOT_LOCKED +FLUSH TABLES v1; +UNLOCK TABLES; + +DROP VIEW v1; +DROP TABLE t1; + diff --git a/sql/sql_base.cc b/sql/sql_base.cc index 2a9b409dff5..7456b06e312 100644 --- a/sql/sql_base.cc +++ b/sql/sql_base.cc @@ -522,9 +522,10 @@ bool close_cached_tables(THD *thd, TABLE_LIST *tables, for (TABLE_LIST *table_list= tables_to_reopen; table_list; table_list= table_list->next_global) { + int err; /* A check that the table was locked for write is done by the caller. */ TABLE *table= find_table_for_mdl_upgrade(thd, table_list->db, - table_list->table_name, TRUE); + table_list->table_name, &err); /* May return NULL if this table has already been closed via an alias. */ if (! table) @@ -2121,6 +2122,66 @@ open_table_get_mdl_lock(THD *thd, Open_table_context *ot_ctx, } +/** + Check if the given table is actually a VIEW that was LOCK-ed + + @param thd Thread context. + @param t Table to check. + + @retval TRUE The 't'-table is a locked view + needed to remedy problem before retrying again. + @retval FALSE 't' was not locked, not a VIEW or an error happened. +*/ +bool is_locked_view(THD *thd, TABLE_LIST *t) +{ + DBUG_ENTER("check_locked_view"); + /* + Is this table a view and not a base table? + (it is work around to allow to open view with locked tables, + real fix will be made after definition cache will be made) + + Since opening of view which was not explicitly locked by LOCK + TABLES breaks metadata locking protocol (potentially can lead + to deadlocks) it should be disallowed. + */ + if (thd->mdl_context.is_lock_owner(MDL_key::TABLE, + t->db, t->table_name, + MDL_SHARED)) + { + char path[FN_REFLEN + 1]; + build_table_filename(path, sizeof(path) - 1, + t->db, t->table_name, reg_ext, 0); + /* + Note that we can't be 100% sure that it is a view since it's + possible that we either simply have not found unused TABLE + instance in THD::open_tables list or were unable to open table + during prelocking process (in this case in theory we still + should hold shared metadata lock on it). + */ + if (dd_frm_is_view(thd, path)) + { + /* + If parent_l of the table_list is non null then a merge table + has this view as child table, which is not supported. + */ + if (t->parent_l) + { + my_error(ER_WRONG_MRG_TABLE, MYF(0)); + DBUG_RETURN(FALSE); + } + + if (!tdc_open_view(thd, t, t->alias, CHECK_METADATA_VERSION)) + { + DBUG_ASSERT(t->view != 0); + DBUG_RETURN(TRUE); // VIEW + } + } + } + + DBUG_RETURN(FALSE); +} + + /** Open a base table. @@ -2263,50 +2324,10 @@ bool open_table(THD *thd, TABLE_LIST *table_list, Open_table_context *ot_ctx) DBUG_PRINT("info",("Using locked table")); goto reset; } - /* - Is this table a view and not a base table? - (it is work around to allow to open view with locked tables, - real fix will be made after definition cache will be made) - Since opening of view which was not explicitly locked by LOCK - TABLES breaks metadata locking protocol (potentially can lead - to deadlocks) it should be disallowed. - */ - if (thd->mdl_context.is_lock_owner(MDL_key::TABLE, - table_list->db, - table_list->table_name, - MDL_SHARED)) - { - char path[FN_REFLEN + 1]; - build_table_filename(path, sizeof(path) - 1, - table_list->db, table_list->table_name, reg_ext, 0); - /* - Note that we can't be 100% sure that it is a view since it's - possible that we either simply have not found unused TABLE - instance in THD::open_tables list or were unable to open table - during prelocking process (in this case in theory we still - should hold shared metadata lock on it). - */ - if (dd_frm_is_view(thd, path)) - { - /* - If parent_l of the table_list is non null then a merge table - has this view as child table, which is not supported. - */ - if (table_list->parent_l) - { - my_error(ER_WRONG_MRG_TABLE, MYF(0)); - DBUG_RETURN(true); - } + if (is_locked_view(thd, table_list)) + DBUG_RETURN(FALSE); // VIEW - if (!tdc_open_view(thd, table_list, alias, key, key_length, - CHECK_METADATA_VERSION)) - { - DBUG_ASSERT(table_list->view != 0); - DBUG_RETURN(FALSE); // VIEW - } - } - } /* No table in the locked tables list. In case of explicit LOCK TABLES this can happen if a user did not include the table into the list. @@ -2666,8 +2687,9 @@ TABLE *find_locked_table(TABLE *list, const char *db, const char *table_name) @param thd Thread context @param db Database name. @param table_name Name of table. - @param no_error Don't emit error if no suitable TABLE - instance were found. + @param p_error In the case of an error (when the function returns NULL) + the error number is stored there. + If the p_error is NULL, function launches the error itself. @note This function checks if the connection holds a global IX metadata lock. If no such lock is found, it is not safe to @@ -2680,15 +2702,15 @@ TABLE *find_locked_table(TABLE *list, const char *db, const char *table_name) */ TABLE *find_table_for_mdl_upgrade(THD *thd, const char *db, - const char *table_name, bool no_error) + const char *table_name, int *p_error) { TABLE *tab= find_locked_table(thd->open_tables, db, table_name); + int error; if (!tab) { - if (!no_error) - my_error(ER_TABLE_NOT_LOCKED, MYF(0), table_name); - return NULL; + error= ER_TABLE_NOT_LOCKED; + goto err_exit; } /* @@ -2700,9 +2722,8 @@ TABLE *find_table_for_mdl_upgrade(THD *thd, const char *db, if (!thd->mdl_context.is_lock_owner(MDL_key::GLOBAL, "", "", MDL_INTENTION_EXCLUSIVE)) { - if (!no_error) - my_error(ER_TABLE_NOT_LOCKED_FOR_WRITE, MYF(0), table_name); - return NULL; + error= ER_TABLE_NOT_LOCKED_FOR_WRITE; + goto err_exit; } while (tab->mdl_ticket != NULL && @@ -2710,10 +2731,21 @@ TABLE *find_table_for_mdl_upgrade(THD *thd, const char *db, (tab= find_locked_table(tab->next, db, table_name))) continue; - if (!tab && !no_error) - my_error(ER_TABLE_NOT_LOCKED_FOR_WRITE, MYF(0), table_name); + if (unlikely(!tab)) + { + error= ER_TABLE_NOT_LOCKED_FOR_WRITE; + goto err_exit; + } return tab; + +err_exit: + if (p_error) + *p_error= error; + else + my_error(error, MYF(0), table_name); + + return NULL; } @@ -4446,7 +4478,7 @@ open_tables_check_upgradable_mdl(THD *thd, TABLE_LIST *tables_start, Note that find_table_for_mdl_upgrade() will report an error if no suitable ticket is found. */ - if (!find_table_for_mdl_upgrade(thd, table->db, table->table_name, false)) + if (!find_table_for_mdl_upgrade(thd, table->db, table->table_name, NULL)) return TRUE; } diff --git a/sql/sql_base.h b/sql/sql_base.h index 74154184ebc..ac44299072b 100644 --- a/sql/sql_base.h +++ b/sql/sql_base.h @@ -126,6 +126,7 @@ TABLE *open_ltable(THD *thd, TABLE_LIST *table_list, thr_lock_type update, MYSQL_OPEN_GET_NEW_TABLE |\ MYSQL_OPEN_HAS_MDL_LOCK) +bool is_locked_view(THD *thd, TABLE_LIST *t); bool open_table(THD *thd, TABLE_LIST *table_list, Open_table_context *ot_ctx); bool get_key_map_from_key_list(key_map *map, TABLE *table, @@ -329,7 +330,7 @@ static inline bool tdc_open_view(THD *thd, TABLE_LIST *table_list, TABLE *find_table_for_mdl_upgrade(THD *thd, const char *db, const char *table_name, - bool no_error); + int *p_error); void mark_tmp_table_for_reuse(TABLE *table); int update_virtual_fields(THD *thd, TABLE *table, diff --git a/sql/sql_reload.cc b/sql/sql_reload.cc index 73dd9679ed7..ab9e7c33a92 100644 --- a/sql/sql_reload.cc +++ b/sql/sql_reload.cc @@ -288,9 +288,18 @@ bool reload_acl_and_cache(THD *thd, unsigned long long options, */ if (tables) { + int err; for (TABLE_LIST *t= tables; t; t= t->next_local) - if (!find_table_for_mdl_upgrade(thd, t->db, t->table_name, false)) - return 1; + if (!find_table_for_mdl_upgrade(thd, t->db, t->table_name, &err)) + { + if (is_locked_view(thd, t)) + t->next_local= t->next_global; + else + { + my_error(err, MYF(0), t->table_name); + return 1; + } + } } else { diff --git a/sql/sql_table.cc b/sql/sql_table.cc index 5bf349b81e4..dc55754ff01 100644 --- a/sql/sql_table.cc +++ b/sql/sql_table.cc @@ -2070,7 +2070,7 @@ bool mysql_rm_table(THD *thd,TABLE_LIST *tables, my_bool if_exists, in its elements. */ table->table= find_table_for_mdl_upgrade(thd, table->db, - table->table_name, false); + table->table_name, NULL); if (!table->table) DBUG_RETURN(true); table->mdl_request.ticket= table->table->mdl_ticket; diff --git a/sql/sql_trigger.cc b/sql/sql_trigger.cc index d9999e2aab7..91ecbe0cb7e 100644 --- a/sql/sql_trigger.cc +++ b/sql/sql_trigger.cc @@ -531,7 +531,7 @@ bool mysql_create_or_drop_trigger(THD *thd, TABLE_LIST *tables, bool create) /* Under LOCK TABLES we must only accept write locked tables. */ if (!(tables->table= find_table_for_mdl_upgrade(thd, tables->db, tables->table_name, - FALSE))) + NULL))) goto end; } else diff --git a/sql/sql_truncate.cc b/sql/sql_truncate.cc index 9a54b4f947f..57cb6df55ca 100644 --- a/sql/sql_truncate.cc +++ b/sql/sql_truncate.cc @@ -302,7 +302,7 @@ bool Sql_cmd_truncate_table::lock_table(THD *thd, TABLE_LIST *table_ref, if (thd->locked_tables_mode) { if (!(table= find_table_for_mdl_upgrade(thd, table_ref->db, - table_ref->table_name, FALSE))) + table_ref->table_name, NULL))) DBUG_RETURN(TRUE); *hton_can_recreate= ha_check_storage_engine_flag(table->s->db_type(), From eda88e60fbf6f451863ef33575f53f9f633e27e5 Mon Sep 17 00:00:00 2001 From: Daniel Black Date: Mon, 3 Sep 2018 09:53:05 +1000 Subject: [PATCH 037/148] galera_new_cluster.sh: unused variables --- scripts/galera_new_cluster.sh | 3 --- 1 file changed, 3 deletions(-) diff --git a/scripts/galera_new_cluster.sh b/scripts/galera_new_cluster.sh index 8bf2fa35cec..837e3e29942 100755 --- a/scripts/galera_new_cluster.sh +++ b/scripts/galera_new_cluster.sh @@ -21,9 +21,6 @@ EOF exit 0 fi -VERSION="@VERSION@@MYSQL_SERVER_SUFFIX@" -COMPILATION_COMMENT="@COMPILATION_COMMENT@" - systemctl set-environment _WSREP_NEW_CLUSTER='--wsrep-new-cluster' && \ systemctl start ${1:-mariadb} From 43c393ff4732e9ea8719864abeb73cefd5b528a9 Mon Sep 17 00:00:00 2001 From: Monty Date: Mon, 3 Sep 2018 11:10:30 +0300 Subject: [PATCH 038/148] MDEV-16682 Assertion `(buff[7] & 7) == HEAD_PAGE' failed Missed one file in last push... --- storage/maria/ma_blockrec.c | 18 +++++++++++++----- 1 file changed, 13 insertions(+), 5 deletions(-) diff --git a/storage/maria/ma_blockrec.c b/storage/maria/ma_blockrec.c index 58791418998..31026d99b68 100644 --- a/storage/maria/ma_blockrec.c +++ b/storage/maria/ma_blockrec.c @@ -53,10 +53,10 @@ Page header: LSN 7 bytes Log position for last page change - PAGE_TYPE 1 uchar 1 for head / 2 for tail / 3 for blob + PAGE_TYPE 1 uchar 0 unalloced / 1 for head / 2 for tail / 3 for blob DIR_COUNT 1 uchar Number of row/tail entries on page FREE_DIR_LINK 1 uchar Pointer to first free director entry or 255 if no - empty space 2 bytes Empty space on page + empty space 2 bytes Bytes of empty space on page The most significant bit in PAGE_TYPE is set to 1 if the data on the page can be compacted to get more space. (PAGE_CAN_BE_COMPACTED) @@ -5122,11 +5122,19 @@ int _ma_read_block_record(MARIA_HA *info, uchar *record, info->buff, share->page_type, PAGECACHE_LOCK_LEFT_UNLOCKED, 0))) DBUG_RETURN(my_errno); - DBUG_ASSERT((buff[PAGE_TYPE_OFFSET] & PAGE_TYPE_MASK) == HEAD_PAGE); - if (!(data= get_record_position(buff, block_size, offset, &end_of_data))) + + /* + Unallocated page access can happen if this is an access to a page where + all rows where deleted as part of this statement. + */ + DBUG_ASSERT((buff[PAGE_TYPE_OFFSET] & PAGE_TYPE_MASK) == HEAD_PAGE || + (buff[PAGE_TYPE_OFFSET] & PAGE_TYPE_MASK) == UNALLOCATED_PAGE); + + if (((buff[PAGE_TYPE_OFFSET] & PAGE_TYPE_MASK) == UNALLOCATED_PAGE) || + !(data= get_record_position(buff, block_size, offset, &end_of_data))) { DBUG_ASSERT(!maria_assert_if_crashed_table); - DBUG_PRINT("error", ("Wrong directory entry in data block")); + DBUG_PRINT("warning", ("Wrong directory entry in data block")); my_errno= HA_ERR_RECORD_DELETED; /* File crashed */ DBUG_RETURN(HA_ERR_RECORD_DELETED); } From a816eac92ac2381e1b9cd4d655e733bdeafb173e Mon Sep 17 00:00:00 2001 From: Oleksandr Byelkin Date: Mon, 3 Sep 2018 14:22:54 +0200 Subject: [PATCH 039/148] 5.6.41-84.1 --- storage/tokudb/CMakeLists.txt | 8 +- storage/tokudb/PerconaFT/CMakeLists.txt | 3 +- .../cmake_modules/TokuSetupCompiler.cmake | 3 + .../PerconaFT/ft/cachetable/cachetable.cc | 21 +- .../PerconaFT/ft/cachetable/cachetable.h | 8 +- .../PerconaFT/ft/ft-cachetable-wrappers.cc | 3 - .../tokudb/PerconaFT/ft/ft-test-helpers.cc | 3 - storage/tokudb/PerconaFT/ft/node.cc | 2 + .../PerconaFT/ft/serialize/block_allocator.cc | 2 +- .../PerconaFT/ft/tests/cachetable-4357.cc | 4 - .../PerconaFT/ft/tests/cachetable-4365.cc | 4 - .../PerconaFT/ft/tests/cachetable-5097.cc | 6 +- .../PerconaFT/ft/tests/cachetable-5978-2.cc | 7 +- .../PerconaFT/ft/tests/cachetable-5978.cc | 13 +- .../ft/tests/cachetable-all-write.cc | 5 +- .../ft/tests/cachetable-checkpoint-pending.cc | 8 +- .../cachetable-checkpoint-pinned-nodes.cc | 6 +- .../ft/tests/cachetable-cleaner-checkpoint.cc | 5 +- .../tests/cachetable-cleaner-checkpoint2.cc | 5 +- ...hetable-cleaner-thread-attrs-accumulate.cc | 8 +- ...etable-cleaner-thread-everything-pinned.cc | 5 +- ...e-cleaner-thread-nothing-needs-flushing.cc | 5 +- ...cachetable-cleaner-thread-same-fullhash.cc | 7 +- .../tests/cachetable-cleaner-thread-simple.cc | 7 +- .../ft/tests/cachetable-clock-eviction.cc | 9 +- .../ft/tests/cachetable-clock-eviction2.cc | 9 +- .../ft/tests/cachetable-clock-eviction3.cc | 9 +- .../ft/tests/cachetable-clock-eviction4.cc | 9 +- .../ft/tests/cachetable-clone-checkpoint.cc | 5 +- ...hetable-clone-partial-fetch-pinned-node.cc | 7 +- .../tests/cachetable-clone-partial-fetch.cc | 7 +- .../tests/cachetable-clone-pin-nonblocking.cc | 7 +- .../ft/tests/cachetable-clone-unpin-remove.cc | 5 +- .../tests/cachetable-eviction-close-test.cc | 4 - .../tests/cachetable-eviction-close-test2.cc | 4 - .../cachetable-eviction-getandpin-test.cc | 14 +- .../cachetable-eviction-getandpin-test2.cc | 12 +- .../cachetable-fetch-inducing-evictor.cc | 15 +- .../tests/cachetable-flush-during-cleaner.cc | 3 +- .../ft/tests/cachetable-getandpin-test.cc | 8 +- .../cachetable-kibbutz_and_flush_cachefile.cc | 3 +- .../ft/tests/cachetable-partial-fetch.cc | 18 +- .../ft/tests/cachetable-pin-checkpoint.cc | 6 - ...etable-pin-nonblocking-checkpoint-clean.cc | 9 +- .../tests/cachetable-prefetch-close-test.cc | 2 - .../cachetable-prefetch-getandpin-test.cc | 12 +- .../ft/tests/cachetable-put-checkpoint.cc | 9 - .../ft/tests/cachetable-simple-clone.cc | 7 +- .../ft/tests/cachetable-simple-clone2.cc | 5 +- .../ft/tests/cachetable-simple-close.cc | 20 +- .../tests/cachetable-simple-maybe-get-pin.cc | 3 +- .../ft/tests/cachetable-simple-pin-cheap.cc | 9 +- .../tests/cachetable-simple-pin-dep-nodes.cc | 8 +- ...cachetable-simple-pin-nonblocking-cheap.cc | 19 +- .../cachetable-simple-pin-nonblocking.cc | 13 +- .../ft/tests/cachetable-simple-pin.cc | 11 +- .../tests/cachetable-simple-put-dep-nodes.cc | 6 +- .../cachetable-simple-read-pin-nonblocking.cc | 13 +- .../ft/tests/cachetable-simple-read-pin.cc | 13 +- ...chetable-simple-unpin-remove-checkpoint.cc | 7 +- .../ft/tests/cachetable-simple-verify.cc | 5 +- .../PerconaFT/ft/tests/cachetable-test.cc | 22 +- .../tests/cachetable-unpin-and-remove-test.cc | 4 +- .../cachetable-unpin-remove-and-checkpoint.cc | 6 +- .../ft/tests/cachetable-unpin-test.cc | 2 - .../tokudb/PerconaFT/ft/tests/test-TDB2-pe.cc | 178 + .../tokudb/PerconaFT/ft/tests/test-TDB89.cc | 208 + .../tokudb/PerconaFT/ft/txn/rollback-apply.cc | 2 + storage/tokudb/PerconaFT/ft/txn/rollback.cc | 2 +- .../tokudb/PerconaFT/ftcxx/malloc_utils.cpp | 2 +- .../tokudb/PerconaFT/ftcxx/malloc_utils.hpp | 2 +- .../tokudb/PerconaFT/portability/memory.cc | 14 +- storage/tokudb/PerconaFT/portability/memory.h | 2 +- .../PerconaFT/portability/toku_assert.h | 2 +- .../PerconaFT/portability/toku_debug_sync.h | 3 +- .../PerconaFT/portability/toku_instr_mysql.cc | 6 +- .../portability/toku_instrumentation.h | 6 +- .../PerconaFT/portability/toku_portability.h | 2 +- .../PerconaFT/portability/toku_race_tools.h | 2 +- .../PerconaFT/src/tests/get_last_key.cc | 32 +- storage/tokudb/PerconaFT/src/ydb.cc | 3 + storage/tokudb/PerconaFT/tools/CMakeLists.txt | 19 +- storage/tokudb/PerconaFT/util/dmt.cc | 4 +- storage/tokudb/PerconaFT/util/minicron.cc | 3 +- .../tokudb/PerconaFT/util/scoped_malloc.cc | 2 +- .../tests/minicron-change-period-data-race.cc | 66 + storage/tokudb/ha_tokudb.cc | 325 +- storage/tokudb/ha_tokudb.h | 96 +- storage/tokudb/ha_tokudb_admin.cc | 8 +- storage/tokudb/ha_tokudb_alter_55.cc | 4 + storage/tokudb/ha_tokudb_alter_56.cc | 265 +- storage/tokudb/ha_tokudb_alter_common.cc | 6 +- storage/tokudb/ha_tokudb_update.cc | 94 +- storage/tokudb/hatoku_cmp.cc | 33 +- storage/tokudb/hatoku_cmp.h | 14 +- storage/tokudb/hatoku_defines.h | 52 +- storage/tokudb/hatoku_hton.cc | 172 +- storage/tokudb/hatoku_hton.h | 25 +- .../r/rpl_mixed_replace_into.result} | 0 .../r/rpl_row_replace_into.result | 3 + .../r/rpl_stmt_replace_into.result} | 3 + .../mysql-test/rpl/r/rpl_xa_interleave.result | 62 + .../t/rpl_mixed_replace_into.test | 0 .../t/rpl_row_replace_into.test | 0 .../t/rpl_stmt_replace_into.test | 0 .../mysql-test/rpl/t/rpl_xa_interleave.test | 103 + .../tokudb/include/fast_update_gen_footer.inc | 2 + .../include/fast_update_gen_footer_silent.inc | 9 + .../tokudb/include/fast_update_gen_header.inc | 6 + .../tokudb/include/fast_update_int.inc | 48 + .../tokudb/include/fast_upsert_gen_header.inc | 6 + .../tokudb/include/fast_upsert_int.inc | 19 + .../include/setup_fast_update_upsert.inc | 8 + .../mysql-test/tokudb/r/compressions.result | 6 + .../tokudb/r/fast_update_binlog_mixed.result | 225 +- .../tokudb/r/fast_update_binlog_row.result | 19 +- .../r/fast_update_binlog_statement.result | 222 +- .../tokudb/r/fast_update_blobs.result | 18253 +-------- .../r/fast_update_blobs_fixed_varchar.result | 33026 --------------- .../r/fast_update_blobs_with_varchar.result | 32771 +-------------- .../tokudb/r/fast_update_char.result | 60 +- .../tokudb/r/fast_update_deadlock.result | 19 +- .../tokudb/r/fast_update_decr_floor.result | 314 +- .../r/fast_update_disable_slow_update.result | 7 - .../tokudb/r/fast_update_error.result | 12 +- .../tokudb/r/fast_update_int.result | 562 +- .../tokudb/r/fast_update_int_bounds.result | 52 +- .../tokudb/r/fast_update_key.result | 54 +- .../tokudb/r/fast_update_sqlmode.result | 21 +- .../tokudb/r/fast_update_uint_bounds.result | 36 +- .../tokudb/r/fast_update_varchar.result | 13575 +------ .../tokudb/r/fast_upsert_bin_pad.result | Bin 659 -> 738 bytes .../tokudb/r/fast_upsert_char.result | 24 +- .../tokudb/r/fast_upsert_deadlock.result | 19 +- .../tokudb/r/fast_upsert_int.result | 428 +- .../tokudb/r/fast_upsert_key.result | 43 +- .../tokudb/r/fast_upsert_sqlmode.result | 23 +- .../tokudb/r/fast_upsert_values.result | 18 +- .../mysql-test/tokudb/r/tokudb_mrr.result | 706 + .../mysql-test/tokudb/t/compressions.test | 68 + .../tokudb/mysql-test/tokudb/t/disabled.def | 24 - .../t/fast_update_binlog_mixed-master.opt | 2 + .../tokudb/t/fast_update_binlog_mixed.test | 15 +- .../t/fast_update_binlog_row-master.opt | 2 + .../tokudb/t/fast_update_binlog_row.test | 19 +- .../t/fast_update_binlog_statement-master.opt | 2 + .../t/fast_update_binlog_statement.test | 15 +- .../mysql-test/tokudb/t/fast_update_blobs.py | 57 - .../tokudb/t/fast_update_blobs.test | 18575 +-------- .../t/fast_update_blobs_fixed_varchar.py | 63 - .../t/fast_update_blobs_fixed_varchar.test | 33287 ---------------- .../t/fast_update_blobs_with_varchar.py | 62 - .../t/fast_update_blobs_with_varchar.test | 33115 +-------------- .../mysql-test/tokudb/t/fast_update_char.test | 66 +- .../tokudb/t/fast_update_deadlock.test | 21 +- .../tokudb/t/fast_update_decr_floor.py | 58 - .../tokudb/t/fast_update_decr_floor.test | 409 +- .../t/fast_update_disable_slow_update.test | 17 - .../tokudb/t/fast_update_error.test | 16 +- .../mysql-test/tokudb/t/fast_update_int.py | 77 - .../mysql-test/tokudb/t/fast_update_int.test | 682 +- .../tokudb/t/fast_update_int_bounds.test | 55 +- .../mysql-test/tokudb/t/fast_update_key.test | 63 +- .../tokudb/t/fast_update_sqlmode.test | 25 +- .../tokudb/t/fast_update_uint_bounds.test | 42 +- .../tokudb/t/fast_update_varchar.py | 63 - .../tokudb/t/fast_update_varchar.test | 7390 +--- .../tokudb/t/fast_upsert_bin_pad.test | 19 +- .../mysql-test/tokudb/t/fast_upsert_char.test | 27 +- .../tokudb/t/fast_upsert_deadlock.test | 22 +- .../mysql-test/tokudb/t/fast_upsert_int.py | 50 - .../mysql-test/tokudb/t/fast_upsert_int.test | 486 +- .../mysql-test/tokudb/t/fast_upsert_key.test | 46 +- .../tokudb/t/fast_upsert_sqlmode.test | 27 +- .../tokudb/t/fast_upsert_values.test | 21 +- .../mysql-test/tokudb/t/tokudb_mrr.test | 89 + .../mysql-test/tokudb_bugs/r/PS-3773.result | 7 + .../r/alter_table_comment_rebuild_data.result | 186 + .../mysql-test/tokudb_bugs/t/PS-3773.test | 26 + .../t/alter_table_comment_rebuild_data.test | 184 + storage/tokudb/tokudb_debug.h | 5 - storage/tokudb/tokudb_dir_cmd.h | 6 +- storage/tokudb/tokudb_information_schema.cc | 74 +- storage/tokudb/tokudb_sysvars.cc | 139 +- storage/tokudb/tokudb_sysvars.h | 12 +- storage/tokudb/tokudb_thread.h | 26 +- storage/tokudb/tokudb_update_fun.cc | 230 +- 187 files changed, 4359 insertions(+), 194538 deletions(-) create mode 100644 storage/tokudb/PerconaFT/ft/tests/test-TDB2-pe.cc create mode 100644 storage/tokudb/PerconaFT/ft/tests/test-TDB89.cc create mode 100644 storage/tokudb/PerconaFT/util/tests/minicron-change-period-data-race.cc rename storage/tokudb/mysql-test/{tokudb_bugs/r/rpl_stmt_replace_into.result => rpl/r/rpl_mixed_replace_into.result} (100%) rename storage/tokudb/mysql-test/{tokudb_bugs => rpl}/r/rpl_row_replace_into.result (58%) rename storage/tokudb/mysql-test/{tokudb_bugs/r/rpl_mixed_replace_into.result => rpl/r/rpl_stmt_replace_into.result} (58%) create mode 100644 storage/tokudb/mysql-test/rpl/r/rpl_xa_interleave.result rename storage/tokudb/mysql-test/{tokudb_bugs => rpl}/t/rpl_mixed_replace_into.test (100%) rename storage/tokudb/mysql-test/{tokudb_bugs => rpl}/t/rpl_row_replace_into.test (100%) rename storage/tokudb/mysql-test/{tokudb_bugs => rpl}/t/rpl_stmt_replace_into.test (100%) create mode 100644 storage/tokudb/mysql-test/rpl/t/rpl_xa_interleave.test create mode 100644 storage/tokudb/mysql-test/tokudb/include/fast_update_gen_footer.inc create mode 100644 storage/tokudb/mysql-test/tokudb/include/fast_update_gen_footer_silent.inc create mode 100644 storage/tokudb/mysql-test/tokudb/include/fast_update_gen_header.inc create mode 100644 storage/tokudb/mysql-test/tokudb/include/fast_update_int.inc create mode 100644 storage/tokudb/mysql-test/tokudb/include/fast_upsert_gen_header.inc create mode 100644 storage/tokudb/mysql-test/tokudb/include/fast_upsert_int.inc create mode 100644 storage/tokudb/mysql-test/tokudb/include/setup_fast_update_upsert.inc create mode 100644 storage/tokudb/mysql-test/tokudb/r/compressions.result delete mode 100644 storage/tokudb/mysql-test/tokudb/r/fast_update_blobs_fixed_varchar.result delete mode 100644 storage/tokudb/mysql-test/tokudb/r/fast_update_disable_slow_update.result create mode 100644 storage/tokudb/mysql-test/tokudb/r/tokudb_mrr.result create mode 100644 storage/tokudb/mysql-test/tokudb/t/compressions.test create mode 100644 storage/tokudb/mysql-test/tokudb/t/fast_update_binlog_mixed-master.opt create mode 100644 storage/tokudb/mysql-test/tokudb/t/fast_update_binlog_row-master.opt create mode 100644 storage/tokudb/mysql-test/tokudb/t/fast_update_binlog_statement-master.opt delete mode 100644 storage/tokudb/mysql-test/tokudb/t/fast_update_blobs.py delete mode 100644 storage/tokudb/mysql-test/tokudb/t/fast_update_blobs_fixed_varchar.py delete mode 100644 storage/tokudb/mysql-test/tokudb/t/fast_update_blobs_fixed_varchar.test delete mode 100644 storage/tokudb/mysql-test/tokudb/t/fast_update_blobs_with_varchar.py delete mode 100644 storage/tokudb/mysql-test/tokudb/t/fast_update_decr_floor.py delete mode 100644 storage/tokudb/mysql-test/tokudb/t/fast_update_disable_slow_update.test delete mode 100644 storage/tokudb/mysql-test/tokudb/t/fast_update_int.py delete mode 100644 storage/tokudb/mysql-test/tokudb/t/fast_update_varchar.py delete mode 100644 storage/tokudb/mysql-test/tokudb/t/fast_upsert_int.py create mode 100644 storage/tokudb/mysql-test/tokudb/t/tokudb_mrr.test create mode 100644 storage/tokudb/mysql-test/tokudb_bugs/r/PS-3773.result create mode 100644 storage/tokudb/mysql-test/tokudb_bugs/r/alter_table_comment_rebuild_data.result create mode 100644 storage/tokudb/mysql-test/tokudb_bugs/t/PS-3773.test create mode 100644 storage/tokudb/mysql-test/tokudb_bugs/t/alter_table_comment_rebuild_data.test diff --git a/storage/tokudb/CMakeLists.txt b/storage/tokudb/CMakeLists.txt index 4580973cb80..0ac3c20bf16 100644 --- a/storage/tokudb/CMakeLists.txt +++ b/storage/tokudb/CMakeLists.txt @@ -1,4 +1,4 @@ -SET(TOKUDB_VERSION 5.6.39-83.1) +SET(TOKUDB_VERSION ) # PerconaFT only supports x86-64 and cmake-2.8.9+ IF(CMAKE_SYSTEM_PROCESSOR STREQUAL "x86_64" AND NOT CMAKE_VERSION VERSION_LESS "2.8.9") @@ -93,7 +93,11 @@ ELSEIF (EXISTS "${CMAKE_CURRENT_SOURCE_DIR}/ft-index/") MESSAGE(WARNING "Found ft-index sources, ft-index is deprecated and replaced with PerconaFT.") SET(TOKU_FT_DIR_NAME "ft-index") ELSE () - MESSAGE(FATAL_ERROR "Could not find PerconaFT sources.") + MESSAGE(FATAL_ERROR "Could not find PerconaFT sources.") +ENDIF () + +IF (WITH_VALGRIND) + SET(USE_VALGRIND "ON") ENDIF () ADD_SUBDIRECTORY(${TOKU_FT_DIR_NAME}) diff --git a/storage/tokudb/PerconaFT/CMakeLists.txt b/storage/tokudb/PerconaFT/CMakeLists.txt index 50db3068daa..68c98035e16 100644 --- a/storage/tokudb/PerconaFT/CMakeLists.txt +++ b/storage/tokudb/PerconaFT/CMakeLists.txt @@ -17,7 +17,8 @@ ENDIF() # detect when we are being built as a subproject if (DEFINED MYSQL_PROJECT_NAME_DOCSTRING) - add_definitions( -DMYSQL_TOKUDB_ENGINE=1) + add_definitions(-DMYSQL_TOKUDB_ENGINE=1) + add_definitions(-DMYSQL_VERSION_ID=${MYSQL_VERSION_ID}) # Extended PFS instrumentation: # -DTOKU_PFS_MUTEX_EXTENDED_CACHETABLEMMUTEX=1 if (WITH_PERFSCHEMA_STORAGE_ENGINE) diff --git a/storage/tokudb/PerconaFT/cmake_modules/TokuSetupCompiler.cmake b/storage/tokudb/PerconaFT/cmake_modules/TokuSetupCompiler.cmake index 1d59ab0f8fc..502fd192644 100644 --- a/storage/tokudb/PerconaFT/cmake_modules/TokuSetupCompiler.cmake +++ b/storage/tokudb/PerconaFT/cmake_modules/TokuSetupCompiler.cmake @@ -142,6 +142,9 @@ set_ldflags_if_supported( -Wno-error=strict-overflow ) +# new flag sets in MySQL 8.0 seem to explicitly disable this +set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -fexceptions") + ## set extra debugging flags and preprocessor definitions set(CMAKE_C_FLAGS_DEBUG "-g3 -O0 ${CMAKE_C_FLAGS_DEBUG}") set(CMAKE_CXX_FLAGS_DEBUG "-g3 -O0 ${CMAKE_CXX_FLAGS_DEBUG}") diff --git a/storage/tokudb/PerconaFT/ft/cachetable/cachetable.cc b/storage/tokudb/PerconaFT/ft/cachetable/cachetable.cc index ae2bb2846e8..d97d8762252 100644 --- a/storage/tokudb/PerconaFT/ft/cachetable/cachetable.cc +++ b/storage/tokudb/PerconaFT/ft/cachetable/cachetable.cc @@ -1290,7 +1290,6 @@ int toku_cachetable_get_and_pin ( CACHEKEY key, uint32_t fullhash, void**value, - long *sizep, CACHETABLE_WRITE_CALLBACK write_callback, CACHETABLE_FETCH_CALLBACK fetch_callback, CACHETABLE_PARTIAL_FETCH_REQUIRED_CALLBACK pf_req_callback, @@ -1311,7 +1310,6 @@ int toku_cachetable_get_and_pin ( key, fullhash, value, - sizep, write_callback, fetch_callback, pf_req_callback, @@ -1559,7 +1557,6 @@ int toku_cachetable_get_and_pin_with_dep_pairs ( CACHEKEY key, uint32_t fullhash, void**value, - long *sizep, CACHETABLE_WRITE_CALLBACK write_callback, CACHETABLE_FETCH_CALLBACK fetch_callback, CACHETABLE_PARTIAL_FETCH_REQUIRED_CALLBACK pf_req_callback, @@ -1743,7 +1740,6 @@ beginning: } got_value: *value = p->value_data; - if (sizep) *sizep = p->attr.size; return 0; } @@ -1856,6 +1852,22 @@ int toku_cachetable_maybe_get_and_pin_clean (CACHEFILE cachefile, CACHEKEY key, return r; } +int toku_cachetable_get_attr (CACHEFILE cachefile, CACHEKEY key, uint32_t fullhash, PAIR_ATTR *attr) { + CACHETABLE ct = cachefile->cachetable; + int r; + ct->list.pair_lock_by_fullhash(fullhash); + PAIR p = ct->list.find_pair(cachefile, key, fullhash); + if (p) { + // Assumes pair lock and full hash lock are the same mutex + *attr = p->attr; + r = 0; + } else { + r = -1; + } + ct->list.pair_unlock_by_fullhash(fullhash); + return r; +} + // // internal function to unpin a PAIR. // As of Clayface, this is may be called in two ways: @@ -1997,7 +2009,6 @@ int toku_cachetable_get_and_pin_nonblocking( CACHEKEY key, uint32_t fullhash, void**value, - long* UU(sizep), CACHETABLE_WRITE_CALLBACK write_callback, CACHETABLE_FETCH_CALLBACK fetch_callback, CACHETABLE_PARTIAL_FETCH_REQUIRED_CALLBACK pf_req_callback, diff --git a/storage/tokudb/PerconaFT/ft/cachetable/cachetable.h b/storage/tokudb/PerconaFT/ft/cachetable/cachetable.h index b9851f33e20..c5c21b49f94 100644 --- a/storage/tokudb/PerconaFT/ft/cachetable/cachetable.h +++ b/storage/tokudb/PerconaFT/ft/cachetable/cachetable.h @@ -352,7 +352,6 @@ int toku_cachetable_get_and_pin_with_dep_pairs ( CACHEKEY key, uint32_t fullhash, void**value, - long *sizep, CACHETABLE_WRITE_CALLBACK write_callback, CACHETABLE_FETCH_CALLBACK fetch_callback, CACHETABLE_PARTIAL_FETCH_REQUIRED_CALLBACK pf_req_callback, @@ -374,7 +373,6 @@ int toku_cachetable_get_and_pin ( CACHEKEY key, uint32_t fullhash, void**value, - long *sizep, CACHETABLE_WRITE_CALLBACK write_callback, CACHETABLE_FETCH_CALLBACK fetch_callback, CACHETABLE_PARTIAL_FETCH_REQUIRED_CALLBACK pf_req_callback, @@ -408,7 +406,6 @@ int toku_cachetable_get_and_pin_nonblocking ( CACHEKEY key, uint32_t fullhash, void**value, - long *sizep, CACHETABLE_WRITE_CALLBACK write_callback, CACHETABLE_FETCH_CALLBACK fetch_callback, CACHETABLE_PARTIAL_FETCH_REQUIRED_CALLBACK pf_req_callback, @@ -428,6 +425,11 @@ int toku_cachetable_maybe_get_and_pin (CACHEFILE, CACHEKEY, uint32_t /*fullhash* int toku_cachetable_maybe_get_and_pin_clean (CACHEFILE, CACHEKEY, uint32_t /*fullhash*/, pair_lock_type, void**); // Effect: Like maybe get and pin, but may pin a clean pair. +int toku_cachetable_get_attr(CACHEFILE, CACHEKEY, uint32_t /*fullhash*/, PAIR_ATTR *); +// Effect: get the attributes for cachekey +// Returns: 0 if success, non-zero if cachekey is not cached +// Notes: this function exists for tests + int toku_cachetable_unpin(CACHEFILE, PAIR, enum cachetable_dirty dirty, PAIR_ATTR size); // Effect: Unpin a memory object // Modifies: If the memory object is in the cachetable, then OR the dirty flag, diff --git a/storage/tokudb/PerconaFT/ft/ft-cachetable-wrappers.cc b/storage/tokudb/PerconaFT/ft/ft-cachetable-wrappers.cc index ca5ffa6a186..35ba864b9ea 100644 --- a/storage/tokudb/PerconaFT/ft/ft-cachetable-wrappers.cc +++ b/storage/tokudb/PerconaFT/ft/ft-cachetable-wrappers.cc @@ -178,7 +178,6 @@ toku_pin_ftnode_for_query( blocknum, fullhash, &node_v, - NULL, get_write_callbacks_for_node(ft_handle->ft), toku_ftnode_fetch_callback, toku_ftnode_pf_req_callback, @@ -209,7 +208,6 @@ toku_pin_ftnode_for_query( blocknum, fullhash, &node_v, - NULL, get_write_callbacks_for_node(ft_handle->ft), toku_ftnode_fetch_callback, toku_ftnode_pf_req_callback, @@ -289,7 +287,6 @@ toku_pin_ftnode_with_dep_nodes( blocknum, fullhash, &node_v, - NULL, get_write_callbacks_for_node(ft), toku_ftnode_fetch_callback, toku_ftnode_pf_req_callback, diff --git a/storage/tokudb/PerconaFT/ft/ft-test-helpers.cc b/storage/tokudb/PerconaFT/ft/ft-test-helpers.cc index 6fcdbbdc9e3..930fb3013d2 100644 --- a/storage/tokudb/PerconaFT/ft/ft-test-helpers.cc +++ b/storage/tokudb/PerconaFT/ft/ft-test-helpers.cc @@ -130,7 +130,6 @@ int toku_testsetup_get_sersize(FT_HANDLE ft_handle, BLOCKNUM diskoff) // Return ft_handle->ft->cf, diskoff, toku_cachetable_hash(ft_handle->ft->cf, diskoff), &node_v, - NULL, get_write_callbacks_for_node(ft_handle->ft), toku_ftnode_fetch_callback, toku_ftnode_pf_req_callback, @@ -158,7 +157,6 @@ int toku_testsetup_insert_to_leaf (FT_HANDLE ft_handle, BLOCKNUM blocknum, const blocknum, toku_cachetable_hash(ft_handle->ft->cf, blocknum), &node_v, - NULL, get_write_callbacks_for_node(ft_handle->ft), toku_ftnode_fetch_callback, toku_ftnode_pf_req_callback, @@ -236,7 +234,6 @@ int toku_testsetup_insert_to_nonleaf (FT_HANDLE ft_handle, BLOCKNUM blocknum, en blocknum, toku_cachetable_hash(ft_handle->ft->cf, blocknum), &node_v, - NULL, get_write_callbacks_for_node(ft_handle->ft), toku_ftnode_fetch_callback, toku_ftnode_pf_req_callback, diff --git a/storage/tokudb/PerconaFT/ft/node.cc b/storage/tokudb/PerconaFT/ft/node.cc index ce918940bd7..27943496fbf 100644 --- a/storage/tokudb/PerconaFT/ft/node.cc +++ b/storage/tokudb/PerconaFT/ft/node.cc @@ -156,6 +156,8 @@ void toku_evict_bn_from_memory(FTNODE node, int childnum, FT ft) { assert(!node->dirty); BASEMENTNODE bn = BLB(node, childnum); toku_ft_decrease_stats(&ft->in_memory_stats, bn->stat64_delta); + toku_ft_adjust_logical_row_count(ft, -BLB_LRD(node, childnum)); + BLB_LRD(node, childnum) = 0; destroy_basement_node(bn); set_BNULL(node, childnum); BP_STATE(node, childnum) = PT_ON_DISK; diff --git a/storage/tokudb/PerconaFT/ft/serialize/block_allocator.cc b/storage/tokudb/PerconaFT/ft/serialize/block_allocator.cc index 29f6daa293a..e64139f0eca 100644 --- a/storage/tokudb/PerconaFT/ft/serialize/block_allocator.cc +++ b/storage/tokudb/PerconaFT/ft/serialize/block_allocator.cc @@ -49,7 +49,7 @@ Copyright (c) 2006, 2015, Percona and/or its affiliates. All rights reserved. #include "ft/serialize/block_allocator.h" #include "ft/serialize/rbtree_mhs.h" -#if TOKU_DEBUG_PARANOID +#if defined(TOKU_DEBUG_PARANOID) && TOKU_DEBUG_PARANOID #define VALIDATE() Validate() #else #define VALIDATE() diff --git a/storage/tokudb/PerconaFT/ft/tests/cachetable-4357.cc b/storage/tokudb/PerconaFT/ft/tests/cachetable-4357.cc index 0af5c8185a9..dd76b7fbc08 100644 --- a/storage/tokudb/PerconaFT/ft/tests/cachetable-4357.cc +++ b/storage/tokudb/PerconaFT/ft/tests/cachetable-4357.cc @@ -42,13 +42,11 @@ CACHEFILE f1; static void *pin_nonblocking(void *arg) { void* v1; - long s1; int r = toku_cachetable_get_and_pin_nonblocking( f1, make_blocknum(1), toku_cachetable_hash(f1, make_blocknum(1)), &v1, - &s1, def_write_callback(NULL), def_fetch, def_pf_req_callback, def_pf_callback, PL_WRITE_EXPENSIVE, NULL, @@ -70,12 +68,10 @@ cachetable_test (void) { r = toku_cachetable_openf(&f1, ct, fname1, O_RDWR|O_CREAT, S_IRWXU|S_IRWXG|S_IRWXO); assert(r == 0); void* v1; - long s1; r = toku_cachetable_get_and_pin(f1, make_blocknum(1), toku_cachetable_hash(f1, make_blocknum(1)), &v1, - &s1, def_write_callback(NULL), def_fetch, def_pf_req_callback, diff --git a/storage/tokudb/PerconaFT/ft/tests/cachetable-4365.cc b/storage/tokudb/PerconaFT/ft/tests/cachetable-4365.cc index 7bee0b80770..75b6eb3fcea 100644 --- a/storage/tokudb/PerconaFT/ft/tests/cachetable-4365.cc +++ b/storage/tokudb/PerconaFT/ft/tests/cachetable-4365.cc @@ -42,13 +42,11 @@ CACHEFILE f1; static void *pin_nonblocking(void *arg) { void* v1; - long s1; int r = toku_cachetable_get_and_pin_nonblocking( f1, make_blocknum(1), toku_cachetable_hash(f1, make_blocknum(1)), &v1, - &s1, def_write_callback(NULL), def_fetch, def_pf_req_callback, def_pf_callback, PL_WRITE_EXPENSIVE, NULL, @@ -92,12 +90,10 @@ cachetable_test (void) { r = toku_cachetable_openf(&f1, ct, fname1, O_RDWR|O_CREAT, S_IRWXU|S_IRWXG|S_IRWXO); assert(r == 0); void* v1; - long s1; r = toku_cachetable_get_and_pin(f1, make_blocknum(1), toku_cachetable_hash(f1, make_blocknum(1)), &v1, - &s1, def_write_callback(nullptr), def_fetch, def_pf_req_callback, diff --git a/storage/tokudb/PerconaFT/ft/tests/cachetable-5097.cc b/storage/tokudb/PerconaFT/ft/tests/cachetable-5097.cc index 5ab0df88e08..b9c299eb762 100644 --- a/storage/tokudb/PerconaFT/ft/tests/cachetable-5097.cc +++ b/storage/tokudb/PerconaFT/ft/tests/cachetable-5097.cc @@ -88,7 +88,6 @@ flush (CACHEFILE f __attribute__((__unused__)), static void *f2_pin(void *arg) { int r; void* v1; - long s1; CACHETABLE_WRITE_CALLBACK wc = def_write_callback(NULL); // // these booleans for pe_callback just ensure that the @@ -98,7 +97,7 @@ static void *f2_pin(void *arg) { // This is just to ensure that the bug is being exercised // check_pe_callback = true; - r = toku_cachetable_get_and_pin(f2, make_blocknum(1), 1, &v1, &s1, wc, def_fetch, def_pf_req_callback, def_pf_callback, true, NULL); + r = toku_cachetable_get_and_pin(f2, make_blocknum(1), 1, &v1, wc, def_fetch, def_pf_req_callback, def_pf_callback, true, NULL); assert(r == 0); ct->ev.signal_eviction_thread(); usleep(1*1024*1024); @@ -141,13 +140,12 @@ cachetable_test (void) { assert(r == 0); void* v1; - long s1; CACHETABLE_WRITE_CALLBACK wc = def_write_callback(NULL); wc.pe_callback = pe_callback; wc.flush_callback = flush; // pin and unpin a node 20 times, just to get clock count up for (int i = 0; i < 20; i++) { - r = toku_cachetable_get_and_pin(f1, make_blocknum(1), 1, &v1, &s1, wc, def_fetch, def_pf_req_callback, def_pf_callback, true, NULL); + r = toku_cachetable_get_and_pin(f1, make_blocknum(1), 1, &v1, wc, def_fetch, def_pf_req_callback, def_pf_callback, true, NULL); assert(r == 0); r = toku_test_cachetable_unpin(f1, make_blocknum(1), 1, CACHETABLE_DIRTY, make_pair_attr(8)); assert(r == 0); diff --git a/storage/tokudb/PerconaFT/ft/tests/cachetable-5978-2.cc b/storage/tokudb/PerconaFT/ft/tests/cachetable-5978-2.cc index 0b5110ddd99..183c2c8bc44 100644 --- a/storage/tokudb/PerconaFT/ft/tests/cachetable-5978-2.cc +++ b/storage/tokudb/PerconaFT/ft/tests/cachetable-5978-2.cc @@ -131,13 +131,11 @@ static void *repin_one(void *UU(arg)) { CACHETABLE_WRITE_CALLBACK wc = def_write_callback(NULL); struct unlockers unlockers = {true, unpin_two, NULL, NULL}; void* v1; - long s1; int r = toku_cachetable_get_and_pin_nonblocking( f1, make_blocknum(1), 1, &v1, - &s1, wc, def_fetch, def_pf_req_callback, @@ -164,13 +162,12 @@ cachetable_test (void) { r = toku_cachetable_openf(&f1, ct, fname1, O_RDWR|O_CREAT, S_IRWXU|S_IRWXG|S_IRWXO); assert(r == 0); void* v1; - long s1; CACHETABLE_WRITE_CALLBACK wc = def_write_callback(NULL); // bring pairs 1 and 2 into memory, then unpin - r = toku_cachetable_get_and_pin(f1, make_blocknum(1), 1, &v1, &s1, wc, fetch_one, def_pf_req_callback, def_pf_callback, true, NULL); + r = toku_cachetable_get_and_pin(f1, make_blocknum(1), 1, &v1, wc, fetch_one, def_pf_req_callback, def_pf_callback, true, NULL); assert_zero(r); - r = toku_cachetable_get_and_pin(f1, make_blocknum(2), 2, &v1, &s1, wc, fetch_two, def_pf_req_callback, def_pf_callback, true, NULL); + r = toku_cachetable_get_and_pin(f1, make_blocknum(2), 2, &v1, wc, fetch_two, def_pf_req_callback, def_pf_callback, true, NULL); assert_zero(r); toku_pthread_t tid1; diff --git a/storage/tokudb/PerconaFT/ft/tests/cachetable-5978.cc b/storage/tokudb/PerconaFT/ft/tests/cachetable-5978.cc index a4ff6c33e6a..c8a6f366ce3 100644 --- a/storage/tokudb/PerconaFT/ft/tests/cachetable-5978.cc +++ b/storage/tokudb/PerconaFT/ft/tests/cachetable-5978.cc @@ -125,13 +125,11 @@ static void *repin_one(void *UU(arg)) { CACHETABLE_WRITE_CALLBACK wc = def_write_callback(NULL); struct unlockers unlockers = {true, unpin_four, NULL, NULL}; void* v1; - long s1; int r = toku_cachetable_get_and_pin_nonblocking( f1, make_blocknum(1), 1, &v1, - &s1, wc, def_fetch, def_pf_req_callback, @@ -149,13 +147,11 @@ static void *repin_two(void *UU(arg)) { CACHETABLE_WRITE_CALLBACK wc = def_write_callback(NULL); struct unlockers unlockers = {true, unpin_three, NULL, NULL}; void* v1; - long s1; int r = toku_cachetable_get_and_pin_nonblocking( f1, make_blocknum(2), 2, &v1, - &s1, wc, def_fetch, def_pf_req_callback, @@ -181,20 +177,19 @@ cachetable_test (void) { r = toku_cachetable_openf(&f1, ct, fname1, O_RDWR|O_CREAT, S_IRWXU|S_IRWXG|S_IRWXO); assert(r == 0); void* v1; - long s1; CACHETABLE_WRITE_CALLBACK wc = def_write_callback(NULL); // bring pairs 1 and 2 into memory, then unpin - r = toku_cachetable_get_and_pin(f1, make_blocknum(1), 1, &v1, &s1, wc, def_fetch, def_pf_req_callback, def_pf_callback, true, NULL); + r = toku_cachetable_get_and_pin(f1, make_blocknum(1), 1, &v1, wc, def_fetch, def_pf_req_callback, def_pf_callback, true, NULL); assert_zero(r); - r = toku_cachetable_get_and_pin(f1, make_blocknum(2), 2, &v1, &s1, wc, def_fetch, def_pf_req_callback, def_pf_callback, true, NULL); + r = toku_cachetable_get_and_pin(f1, make_blocknum(2), 2, &v1, wc, def_fetch, def_pf_req_callback, def_pf_callback, true, NULL); assert_zero(r); // now pin pairs 3 and 4 - r = toku_cachetable_get_and_pin(f1, make_blocknum(3), 3, &v1, &s1, wc, fetch_three, def_pf_req_callback, def_pf_callback, true, NULL); + r = toku_cachetable_get_and_pin(f1, make_blocknum(3), 3, &v1, wc, fetch_three, def_pf_req_callback, def_pf_callback, true, NULL); assert_zero(r); - r = toku_cachetable_get_and_pin(f1, make_blocknum(4), 4, &v1, &s1, wc, fetch_four, def_pf_req_callback, def_pf_callback, true, NULL); + r = toku_cachetable_get_and_pin(f1, make_blocknum(4), 4, &v1, wc, fetch_four, def_pf_req_callback, def_pf_callback, true, NULL); assert_zero(r); toku_pthread_t tid1; diff --git a/storage/tokudb/PerconaFT/ft/tests/cachetable-all-write.cc b/storage/tokudb/PerconaFT/ft/tests/cachetable-all-write.cc index bc08bab944e..efc844d53a9 100644 --- a/storage/tokudb/PerconaFT/ft/tests/cachetable-all-write.cc +++ b/storage/tokudb/PerconaFT/ft/tests/cachetable-all-write.cc @@ -73,12 +73,11 @@ cachetable_test (void) { void* v1; void* v2; - long s1, s2; CACHETABLE_WRITE_CALLBACK wc = def_write_callback(NULL); wc.flush_callback = flush; - r = toku_cachetable_get_and_pin(f1, make_blocknum(1), 1, &v1, &s1, wc, def_fetch, def_pf_req_callback, def_pf_callback, true, NULL); + r = toku_cachetable_get_and_pin(f1, make_blocknum(1), 1, &v1, wc, def_fetch, def_pf_req_callback, def_pf_callback, true, NULL); r = toku_test_cachetable_unpin(f1, make_blocknum(1), 1, CACHETABLE_DIRTY, make_pair_attr(8)); - r = toku_cachetable_get_and_pin(f1, make_blocknum(2), 2, &v2, &s2, wc, def_fetch, def_pf_req_callback, def_pf_callback, true, NULL); + r = toku_cachetable_get_and_pin(f1, make_blocknum(2), 2, &v2, wc, def_fetch, def_pf_req_callback, def_pf_callback, true, NULL); r = toku_test_cachetable_unpin(f1, make_blocknum(2), 2, CACHETABLE_CLEAN, make_pair_attr(8)); diff --git a/storage/tokudb/PerconaFT/ft/tests/cachetable-checkpoint-pending.cc b/storage/tokudb/PerconaFT/ft/tests/cachetable-checkpoint-pending.cc index 5e87fed740d..024e2f5d221 100644 --- a/storage/tokudb/PerconaFT/ft/tests/cachetable-checkpoint-pending.cc +++ b/storage/tokudb/PerconaFT/ft/tests/cachetable-checkpoint-pending.cc @@ -99,13 +99,15 @@ do_update (void *UU(ignore)) CACHEKEY key = make_blocknum(i); uint32_t hi = toku_cachetable_hash(cf, key); void *vv; - long size; CACHETABLE_WRITE_CALLBACK wc = def_write_callback(NULL); wc.flush_callback = flush; - int r = toku_cachetable_get_and_pin(cf, key, hi, &vv, &size, wc, fetch_die, def_pf_req_callback, def_pf_callback, true, 0); + int r = toku_cachetable_get_and_pin(cf, key, hi, &vv, wc, fetch_die, def_pf_req_callback, def_pf_callback, true, 0); //printf("g"); assert(r==0); - assert(size==sizeof(int)); + PAIR_ATTR attr; + r = toku_cachetable_get_attr(cf, key, hi, &attr); + assert(r==0); + assert(attr.size==sizeof(int)); int *CAST_FROM_VOIDP(v, vv); assert(*v==42); *v = 43; diff --git a/storage/tokudb/PerconaFT/ft/tests/cachetable-checkpoint-pinned-nodes.cc b/storage/tokudb/PerconaFT/ft/tests/cachetable-checkpoint-pinned-nodes.cc index 7f30305d673..0846974d3ef 100644 --- a/storage/tokudb/PerconaFT/ft/tests/cachetable-checkpoint-pinned-nodes.cc +++ b/storage/tokudb/PerconaFT/ft/tests/cachetable-checkpoint-pinned-nodes.cc @@ -110,13 +110,11 @@ cachetable_test (void) { void* v1; void* v2; - long s1; - long s2; CACHETABLE_WRITE_CALLBACK wc = def_write_callback(&dirty_val); wc.flush_callback = flush; - r = toku_cachetable_get_and_pin(f1, make_blocknum(1), 1, &v1, &s1, wc, fetch, def_pf_req_callback, def_pf_callback, true, &dirty_val); + r = toku_cachetable_get_and_pin(f1, make_blocknum(1), 1, &v1, wc, fetch, def_pf_req_callback, def_pf_callback, true, &dirty_val); wc.write_extraargs = NULL; - r = toku_cachetable_get_and_pin(f1, make_blocknum(2), 2, &v2, &s2, wc, fetch, def_pf_req_callback, def_pf_callback, true, NULL); + r = toku_cachetable_get_and_pin(f1, make_blocknum(2), 2, &v2, wc, fetch, def_pf_req_callback, def_pf_callback, true, NULL); // // Here is the test, we have two pairs, v1 is dirty, v2 is clean, but both are currently pinned diff --git a/storage/tokudb/PerconaFT/ft/tests/cachetable-cleaner-checkpoint.cc b/storage/tokudb/PerconaFT/ft/tests/cachetable-cleaner-checkpoint.cc index caa366e23d3..5afc1230e77 100644 --- a/storage/tokudb/PerconaFT/ft/tests/cachetable-cleaner-checkpoint.cc +++ b/storage/tokudb/PerconaFT/ft/tests/cachetable-cleaner-checkpoint.cc @@ -103,13 +103,10 @@ cachetable_test (void) { create_dummy_functions(f1); void* v1; - //void* v2; - long s1; - //long s2; CACHETABLE_WRITE_CALLBACK wc = def_write_callback(NULL); wc.flush_callback = flush; wc.cleaner_callback = cleaner_callback; - r = toku_cachetable_get_and_pin(f1, make_blocknum(1), 1, &v1, &s1, wc, def_fetch, def_pf_req_callback, def_pf_callback, true, NULL); + r = toku_cachetable_get_and_pin(f1, make_blocknum(1), 1, &v1, wc, def_fetch, def_pf_req_callback, def_pf_callback, true, NULL); PAIR_ATTR attr = make_pair_attr(8); attr.cache_pressure_size = 8; r = toku_test_cachetable_unpin(f1, make_blocknum(1), 1, CACHETABLE_DIRTY, attr); diff --git a/storage/tokudb/PerconaFT/ft/tests/cachetable-cleaner-checkpoint2.cc b/storage/tokudb/PerconaFT/ft/tests/cachetable-cleaner-checkpoint2.cc index 63f383b64b0..16e6102a234 100644 --- a/storage/tokudb/PerconaFT/ft/tests/cachetable-cleaner-checkpoint2.cc +++ b/storage/tokudb/PerconaFT/ft/tests/cachetable-cleaner-checkpoint2.cc @@ -103,13 +103,10 @@ cachetable_test (void) { create_dummy_functions(f1); void* v1; - //void* v2; - long s1; - //long s2; CACHETABLE_WRITE_CALLBACK wc = def_write_callback(NULL); wc.flush_callback = flush; wc.cleaner_callback = cleaner_callback; - r = toku_cachetable_get_and_pin(f1, make_blocknum(1), 1, &v1, &s1, wc, def_fetch, def_pf_req_callback, def_pf_callback, true, NULL); + r = toku_cachetable_get_and_pin(f1, make_blocknum(1), 1, &v1, wc, def_fetch, def_pf_req_callback, def_pf_callback, true, NULL); PAIR_ATTR attr = make_pair_attr(8); attr.cache_pressure_size = 8; r = toku_test_cachetable_unpin(f1, make_blocknum(1), 1, CACHETABLE_DIRTY, attr); diff --git a/storage/tokudb/PerconaFT/ft/tests/cachetable-cleaner-thread-attrs-accumulate.cc b/storage/tokudb/PerconaFT/ft/tests/cachetable-cleaner-thread-attrs-accumulate.cc index dd6c674af24..c3125d0ce57 100644 --- a/storage/tokudb/PerconaFT/ft/tests/cachetable-cleaner-thread-attrs-accumulate.cc +++ b/storage/tokudb/PerconaFT/ft/tests/cachetable-cleaner-thread-attrs-accumulate.cc @@ -107,15 +107,12 @@ run_test (void) { assert(STATUS_VALUE(CT_SIZE_CACHEPRESSURE) == 0); void* vs[n_pairs]; - //void* v2; - long ss[n_pairs]; - //long s2; PAIR_ATTR expect = { .size = 0, .nonleaf_size = 0, .leaf_size = 0, .rollback_size = 0, .cache_pressure_size = 0 }; CACHETABLE_WRITE_CALLBACK wc = def_write_callback(NULL); wc.flush_callback = flush; wc.write_extraargs = &expect; for (int i = 0; i < n_pairs; ++i) { - r = toku_cachetable_get_and_pin(f1, make_blocknum(i+1), i+1, &vs[i], &ss[i], + r = toku_cachetable_get_and_pin(f1, make_blocknum(i+1), i+1, &vs[i], wc, def_fetch, def_pf_req_callback, @@ -139,8 +136,7 @@ run_test (void) { assert(STATUS_VALUE(CT_SIZE_CACHEPRESSURE) == (uint64_t) expect.cache_pressure_size); void *big_v; - long big_s; - r = toku_cachetable_get_and_pin(f1, make_blocknum(n_pairs + 1), n_pairs + 1, &big_v, &big_s, + r = toku_cachetable_get_and_pin(f1, make_blocknum(n_pairs + 1), n_pairs + 1, &big_v, wc, def_fetch, def_pf_req_callback, diff --git a/storage/tokudb/PerconaFT/ft/tests/cachetable-cleaner-thread-everything-pinned.cc b/storage/tokudb/PerconaFT/ft/tests/cachetable-cleaner-thread-everything-pinned.cc index c518f9285d6..e643f7395a4 100644 --- a/storage/tokudb/PerconaFT/ft/tests/cachetable-cleaner-thread-everything-pinned.cc +++ b/storage/tokudb/PerconaFT/ft/tests/cachetable-cleaner-thread-everything-pinned.cc @@ -71,13 +71,10 @@ run_test (void) { assert(r==0); void* vs[8]; - //void* v2; - long ss[8]; - //long s2; for (int i = 0; i < 8; ++i) { CACHETABLE_WRITE_CALLBACK wc = def_write_callback(NULL); wc.cleaner_callback = everything_pinned_cleaner_callback; - r = toku_cachetable_get_and_pin(f1, make_blocknum(i+1), i+1, &vs[i], &ss[i], + r = toku_cachetable_get_and_pin(f1, make_blocknum(i+1), i+1, &vs[i], wc, def_fetch, def_pf_req_callback, diff --git a/storage/tokudb/PerconaFT/ft/tests/cachetable-cleaner-thread-nothing-needs-flushing.cc b/storage/tokudb/PerconaFT/ft/tests/cachetable-cleaner-thread-nothing-needs-flushing.cc index 63b2fd9a2b7..1dd2a8e0678 100644 --- a/storage/tokudb/PerconaFT/ft/tests/cachetable-cleaner-thread-nothing-needs-flushing.cc +++ b/storage/tokudb/PerconaFT/ft/tests/cachetable-cleaner-thread-nothing-needs-flushing.cc @@ -69,13 +69,10 @@ run_test (void) { r = toku_cachetable_openf(&f1, ct, fname1, O_RDWR|O_CREAT, S_IRWXU|S_IRWXG|S_IRWXO); assert(r == 0); void* vs[8]; - //void* v2; - long ss[8]; - //long s2; for (int i = 0; i < 8; ++i) { CACHETABLE_WRITE_CALLBACK wc = def_write_callback(NULL); wc.cleaner_callback = everything_pinned_cleaner_callback; - r = toku_cachetable_get_and_pin(f1, make_blocknum(i+1), i+1, &vs[i], &ss[i], + r = toku_cachetable_get_and_pin(f1, make_blocknum(i+1), i+1, &vs[i], wc, def_fetch, def_pf_req_callback, diff --git a/storage/tokudb/PerconaFT/ft/tests/cachetable-cleaner-thread-same-fullhash.cc b/storage/tokudb/PerconaFT/ft/tests/cachetable-cleaner-thread-same-fullhash.cc index c38483c8e46..af519d83d6f 100644 --- a/storage/tokudb/PerconaFT/ft/tests/cachetable-cleaner-thread-same-fullhash.cc +++ b/storage/tokudb/PerconaFT/ft/tests/cachetable-cleaner-thread-same-fullhash.cc @@ -76,12 +76,9 @@ run_test (void) { r = toku_cachetable_openf(&f1, ct, fname1, O_RDWR|O_CREAT, S_IRWXU|S_IRWXG|S_IRWXO); assert(r == 0); void* vs[5]; - //void* v2; - long ss[5]; - //long s2; CACHETABLE_WRITE_CALLBACK wc = def_write_callback(NULL); wc.cleaner_callback = my_cleaner_callback; - r = toku_cachetable_get_and_pin(f1, make_blocknum(1), 1, &vs[0], &ss[0], + r = toku_cachetable_get_and_pin(f1, make_blocknum(1), 1, &vs[0], wc, def_fetch, def_pf_req_callback, @@ -92,7 +89,7 @@ run_test (void) { attr.cache_pressure_size = 100; r = toku_test_cachetable_unpin(f1, make_blocknum(1), 1, CACHETABLE_CLEAN, attr); - r = toku_cachetable_get_and_pin(f1, make_blocknum(2), 1, &vs[1], &ss[1], + r = toku_cachetable_get_and_pin(f1, make_blocknum(2), 1, &vs[1], wc, def_fetch, def_pf_req_callback, diff --git a/storage/tokudb/PerconaFT/ft/tests/cachetable-cleaner-thread-simple.cc b/storage/tokudb/PerconaFT/ft/tests/cachetable-cleaner-thread-simple.cc index 8a5aa983f63..363b2d30935 100644 --- a/storage/tokudb/PerconaFT/ft/tests/cachetable-cleaner-thread-simple.cc +++ b/storage/tokudb/PerconaFT/ft/tests/cachetable-cleaner-thread-simple.cc @@ -77,12 +77,9 @@ run_test (void) { r = toku_cachetable_openf(&f1, ct, fname1, O_RDWR|O_CREAT, S_IRWXU|S_IRWXG|S_IRWXO); assert(r == 0); void* vs[5]; - //void* v2; - long ss[5]; - //long s2; CACHETABLE_WRITE_CALLBACK wc = def_write_callback(NULL); wc.cleaner_callback = my_cleaner_callback; - r = toku_cachetable_get_and_pin(f1, make_blocknum(100), 100, &vs[4], &ss[4], + r = toku_cachetable_get_and_pin(f1, make_blocknum(100), 100, &vs[4], wc, def_fetch, def_pf_req_callback, @@ -94,7 +91,7 @@ run_test (void) { r = toku_test_cachetable_unpin(f1, make_blocknum(100), 100, CACHETABLE_CLEAN, attr); for (int i = 0; i < 4; ++i) { - r = toku_cachetable_get_and_pin(f1, make_blocknum(i+1), i+1, &vs[i], &ss[i], + r = toku_cachetable_get_and_pin(f1, make_blocknum(i+1), i+1, &vs[i], wc, def_fetch, def_pf_req_callback, diff --git a/storage/tokudb/PerconaFT/ft/tests/cachetable-clock-eviction.cc b/storage/tokudb/PerconaFT/ft/tests/cachetable-clock-eviction.cc index 4f8516008ee..855a7154c1d 100644 --- a/storage/tokudb/PerconaFT/ft/tests/cachetable-clock-eviction.cc +++ b/storage/tokudb/PerconaFT/ft/tests/cachetable-clock-eviction.cc @@ -99,25 +99,24 @@ cachetable_test (void) { void* v1; void* v2; - long s1, s2; flush_may_occur = false; check_flush = true; CACHETABLE_WRITE_CALLBACK wc = def_write_callback(NULL); wc.flush_callback = flush; for (int i = 0; i < 100000; i++) { - r = toku_cachetable_get_and_pin(f1, make_blocknum(1), 1, &v1, &s1, wc, fetch, def_pf_req_callback, def_pf_callback, true, NULL); + r = toku_cachetable_get_and_pin(f1, make_blocknum(1), 1, &v1, wc, fetch, def_pf_req_callback, def_pf_callback, true, NULL); r = toku_test_cachetable_unpin(f1, make_blocknum(1), 1, CACHETABLE_CLEAN, make_pair_attr(1)); } for (int i = 0; i < 8; i++) { - r = toku_cachetable_get_and_pin(f1, make_blocknum(2), 2, &v2, &s2, wc, fetch, def_pf_req_callback, def_pf_callback, true, NULL); + r = toku_cachetable_get_and_pin(f1, make_blocknum(2), 2, &v2, wc, fetch, def_pf_req_callback, def_pf_callback, true, NULL); r = toku_test_cachetable_unpin(f1, make_blocknum(2), 2, CACHETABLE_CLEAN, make_pair_attr(1)); } for (int i = 0; i < 4; i++) { - r = toku_cachetable_get_and_pin(f1, make_blocknum(3), 3, &v2, &s2, wc, fetch, def_pf_req_callback, def_pf_callback, true, NULL); + r = toku_cachetable_get_and_pin(f1, make_blocknum(3), 3, &v2, wc, fetch, def_pf_req_callback, def_pf_callback, true, NULL); r = toku_test_cachetable_unpin(f1, make_blocknum(3), 3, CACHETABLE_CLEAN, make_pair_attr(1)); } for (int i = 0; i < 2; i++) { - r = toku_cachetable_get_and_pin(f1, make_blocknum(4), 4, &v2, &s2, wc, fetch, def_pf_req_callback, def_pf_callback, true, NULL); + r = toku_cachetable_get_and_pin(f1, make_blocknum(4), 4, &v2, wc, fetch, def_pf_req_callback, def_pf_callback, true, NULL); r = toku_test_cachetable_unpin(f1, make_blocknum(4), 4, CACHETABLE_CLEAN, make_pair_attr(1)); } flush_may_occur = true; diff --git a/storage/tokudb/PerconaFT/ft/tests/cachetable-clock-eviction2.cc b/storage/tokudb/PerconaFT/ft/tests/cachetable-clock-eviction2.cc index d35705002df..89b1fba5013 100644 --- a/storage/tokudb/PerconaFT/ft/tests/cachetable-clock-eviction2.cc +++ b/storage/tokudb/PerconaFT/ft/tests/cachetable-clock-eviction2.cc @@ -142,34 +142,33 @@ cachetable_test (void) { void* v1; void* v2; - long s1, s2; flush_may_occur = false; for (int i = 0; i < 100000; i++) { CACHETABLE_WRITE_CALLBACK wc = def_write_callback(NULL); wc.flush_callback = flush; wc.pe_callback = pe_callback; - r = toku_cachetable_get_and_pin(f1, make_blocknum(1), 1, &v1, &s1, wc, fetch, def_pf_req_callback, def_pf_callback, true, NULL); + r = toku_cachetable_get_and_pin(f1, make_blocknum(1), 1, &v1, wc, fetch, def_pf_req_callback, def_pf_callback, true, NULL); r = toku_test_cachetable_unpin(f1, make_blocknum(1), 1, CACHETABLE_CLEAN, make_pair_attr(4)); } for (int i = 0; i < 8; i++) { CACHETABLE_WRITE_CALLBACK wc = def_write_callback(NULL); wc.flush_callback = flush; wc.pe_callback = pe_callback; - r = toku_cachetable_get_and_pin(f1, make_blocknum(2), 2, &v2, &s2, wc, fetch, def_pf_req_callback, def_pf_callback, true, NULL); + r = toku_cachetable_get_and_pin(f1, make_blocknum(2), 2, &v2, wc, fetch, def_pf_req_callback, def_pf_callback, true, NULL); r = toku_test_cachetable_unpin(f1, make_blocknum(2), 2, CACHETABLE_CLEAN, make_pair_attr(4)); } for (int i = 0; i < 4; i++) { CACHETABLE_WRITE_CALLBACK wc = def_write_callback(NULL); wc.flush_callback = flush; wc.pe_callback = pe_callback; - r = toku_cachetable_get_and_pin(f1, make_blocknum(3), 3, &v2, &s2, wc, fetch, def_pf_req_callback, def_pf_callback, true, NULL); + r = toku_cachetable_get_and_pin(f1, make_blocknum(3), 3, &v2, wc, fetch, def_pf_req_callback, def_pf_callback, true, NULL); r = toku_test_cachetable_unpin(f1, make_blocknum(3), 3, CACHETABLE_CLEAN, make_pair_attr(4)); } for (int i = 0; i < 2; i++) { CACHETABLE_WRITE_CALLBACK wc = def_write_callback(NULL); wc.flush_callback = flush; wc.pe_callback = pe_callback; - r = toku_cachetable_get_and_pin(f1, make_blocknum(4), 4, &v2, &s2, wc, fetch, def_pf_req_callback, def_pf_callback, true, NULL); + r = toku_cachetable_get_and_pin(f1, make_blocknum(4), 4, &v2, wc, fetch, def_pf_req_callback, def_pf_callback, true, NULL); r = toku_test_cachetable_unpin(f1, make_blocknum(4), 4, CACHETABLE_CLEAN, make_pair_attr(4)); } flush_may_occur = false; diff --git a/storage/tokudb/PerconaFT/ft/tests/cachetable-clock-eviction3.cc b/storage/tokudb/PerconaFT/ft/tests/cachetable-clock-eviction3.cc index 97ae526a6b8..a6c8d2fdf72 100644 --- a/storage/tokudb/PerconaFT/ft/tests/cachetable-clock-eviction3.cc +++ b/storage/tokudb/PerconaFT/ft/tests/cachetable-clock-eviction3.cc @@ -159,14 +159,13 @@ cachetable_test (void) { void* v1; void* v2; - long s1, s2; flush_may_occur = false; for (int i = 0; i < 100000; i++) { CACHETABLE_WRITE_CALLBACK wc = def_write_callback(NULL); wc.flush_callback = flush; wc.pe_est_callback = pe_est_callback; wc.pe_callback = pe_callback; - r = toku_cachetable_get_and_pin(f1, make_blocknum(1), 1, &v1, &s1, wc, fetch, def_pf_req_callback, def_pf_callback, true, NULL); + r = toku_cachetable_get_and_pin(f1, make_blocknum(1), 1, &v1, wc, fetch, def_pf_req_callback, def_pf_callback, true, NULL); r = toku_test_cachetable_unpin(f1, make_blocknum(1), 1, CACHETABLE_CLEAN, make_pair_attr(4)); } for (int i = 0; i < 8; i++) { @@ -174,7 +173,7 @@ cachetable_test (void) { wc.flush_callback = flush; wc.pe_est_callback = pe_est_callback; wc.pe_callback = pe_callback; - r = toku_cachetable_get_and_pin(f1, make_blocknum(2), 2, &v2, &s2, wc, fetch, def_pf_req_callback, def_pf_callback, true, NULL); + r = toku_cachetable_get_and_pin(f1, make_blocknum(2), 2, &v2, wc, fetch, def_pf_req_callback, def_pf_callback, true, NULL); r = toku_test_cachetable_unpin(f1, make_blocknum(2), 2, CACHETABLE_CLEAN, make_pair_attr(4)); } for (int i = 0; i < 4; i++) { @@ -182,7 +181,7 @@ cachetable_test (void) { wc.flush_callback = flush; wc.pe_est_callback = pe_est_callback; wc.pe_callback = pe_callback; - r = toku_cachetable_get_and_pin(f1, make_blocknum(3), 3, &v2, &s2, wc, fetch, def_pf_req_callback, def_pf_callback, true, NULL); + r = toku_cachetable_get_and_pin(f1, make_blocknum(3), 3, &v2, wc, fetch, def_pf_req_callback, def_pf_callback, true, NULL); r = toku_test_cachetable_unpin(f1, make_blocknum(3), 3, CACHETABLE_CLEAN, make_pair_attr(4)); } for (int i = 0; i < 2; i++) { @@ -190,7 +189,7 @@ cachetable_test (void) { wc.flush_callback = flush; wc.pe_est_callback = pe_est_callback; wc.pe_callback = pe_callback; - r = toku_cachetable_get_and_pin(f1, make_blocknum(4), 4, &v2, &s2, wc, fetch, def_pf_req_callback, def_pf_callback, true, NULL); + r = toku_cachetable_get_and_pin(f1, make_blocknum(4), 4, &v2, wc, fetch, def_pf_req_callback, def_pf_callback, true, NULL); r = toku_test_cachetable_unpin(f1, make_blocknum(4), 4, CACHETABLE_CLEAN, make_pair_attr(4)); } flush_may_occur = false; diff --git a/storage/tokudb/PerconaFT/ft/tests/cachetable-clock-eviction4.cc b/storage/tokudb/PerconaFT/ft/tests/cachetable-clock-eviction4.cc index 9982bec26bd..8537a5a0d3d 100644 --- a/storage/tokudb/PerconaFT/ft/tests/cachetable-clock-eviction4.cc +++ b/storage/tokudb/PerconaFT/ft/tests/cachetable-clock-eviction4.cc @@ -137,7 +137,6 @@ cachetable_test (void) { void* v1; void* v2; - long s1, s2; flush_may_occur = false; check_flush = true; CACHETABLE_WRITE_CALLBACK wc = def_write_callback(NULL); @@ -145,19 +144,19 @@ cachetable_test (void) { wc.pe_est_callback = pe_est_callback; wc.pe_callback = pe_callback; for (int i = 0; i < 100000; i++) { - r = toku_cachetable_get_and_pin(f1, make_blocknum(1), 1, &v1, &s1, wc, fetch, def_pf_req_callback, def_pf_callback, true, NULL); + r = toku_cachetable_get_and_pin(f1, make_blocknum(1), 1, &v1, wc, fetch, def_pf_req_callback, def_pf_callback, true, NULL); r = toku_test_cachetable_unpin(f1, make_blocknum(1), 1, CACHETABLE_CLEAN, make_pair_attr(1)); } for (int i = 0; i < 8; i++) { - r = toku_cachetable_get_and_pin(f1, make_blocknum(2), 2, &v2, &s2, wc, fetch, def_pf_req_callback, def_pf_callback, true, NULL); + r = toku_cachetable_get_and_pin(f1, make_blocknum(2), 2, &v2, wc, fetch, def_pf_req_callback, def_pf_callback, true, NULL); r = toku_test_cachetable_unpin(f1, make_blocknum(2), 2, CACHETABLE_CLEAN, make_pair_attr(1)); } for (int i = 0; i < 4; i++) { - r = toku_cachetable_get_and_pin(f1, make_blocknum(3), 3, &v2, &s2, wc, fetch, def_pf_req_callback, def_pf_callback, true, NULL); + r = toku_cachetable_get_and_pin(f1, make_blocknum(3), 3, &v2, wc, fetch, def_pf_req_callback, def_pf_callback, true, NULL); r = toku_test_cachetable_unpin(f1, make_blocknum(3), 3, CACHETABLE_CLEAN, make_pair_attr(1)); } for (int i = 0; i < 2; i++) { - r = toku_cachetable_get_and_pin(f1, make_blocknum(4), 4, &v2, &s2, wc, fetch, def_pf_req_callback, def_pf_callback, true, NULL); + r = toku_cachetable_get_and_pin(f1, make_blocknum(4), 4, &v2, wc, fetch, def_pf_req_callback, def_pf_callback, true, NULL); r = toku_test_cachetable_unpin(f1, make_blocknum(4), 4, CACHETABLE_CLEAN, make_pair_attr(1)); } flush_may_occur = true; diff --git a/storage/tokudb/PerconaFT/ft/tests/cachetable-clone-checkpoint.cc b/storage/tokudb/PerconaFT/ft/tests/cachetable-clone-checkpoint.cc index 99d595b1ff1..e9571dfd0ee 100644 --- a/storage/tokudb/PerconaFT/ft/tests/cachetable-clone-checkpoint.cc +++ b/storage/tokudb/PerconaFT/ft/tests/cachetable-clone-checkpoint.cc @@ -101,11 +101,10 @@ cachetable_test (void) { create_dummy_functions(f1); void* v1; - long s1; CACHETABLE_WRITE_CALLBACK wc = def_write_callback(NULL); wc.flush_callback = flush; wc.clone_callback = clone_callback; - r = toku_cachetable_get_and_pin(f1, make_blocknum(1), 1, &v1, &s1, wc, def_fetch, def_pf_req_callback, def_pf_callback, true, NULL); + r = toku_cachetable_get_and_pin(f1, make_blocknum(1), 1, &v1, wc, def_fetch, def_pf_req_callback, def_pf_callback, true, NULL); assert_zero(r); r = toku_test_cachetable_unpin(f1, make_blocknum(1), 1, CACHETABLE_DIRTY, make_pair_attr(8)); assert_zero(r); @@ -124,7 +123,7 @@ cachetable_test (void) { usleep(1 * 1024 * 1024); - r = toku_cachetable_get_and_pin(f1, make_blocknum(1), 1, &v1, &s1, wc, def_fetch, def_pf_req_callback, def_pf_callback, true, NULL); + r = toku_cachetable_get_and_pin(f1, make_blocknum(1), 1, &v1, wc, def_fetch, def_pf_req_callback, def_pf_callback, true, NULL); assert_zero(r); assert(clone_flush_started && !clone_flush_completed); r = toku_test_cachetable_unpin(f1, make_blocknum(1), 1, CACHETABLE_CLEAN, make_pair_attr(8)); diff --git a/storage/tokudb/PerconaFT/ft/tests/cachetable-clone-partial-fetch-pinned-node.cc b/storage/tokudb/PerconaFT/ft/tests/cachetable-clone-partial-fetch-pinned-node.cc index 3361faa071e..42faa8ade86 100644 --- a/storage/tokudb/PerconaFT/ft/tests/cachetable-clone-partial-fetch-pinned-node.cc +++ b/storage/tokudb/PerconaFT/ft/tests/cachetable-clone-partial-fetch-pinned-node.cc @@ -95,12 +95,11 @@ cachetable_test (void) { create_dummy_functions(f1); void* v1; - long s1; CACHETABLE_WRITE_CALLBACK wc = def_write_callback(NULL); wc.clone_callback = clone_callback; wc.flush_callback = flush; - r = toku_cachetable_get_and_pin(f1, make_blocknum(1), 1, &v1, &s1, wc, def_fetch, def_pf_req_callback, def_pf_callback, true, NULL); + r = toku_cachetable_get_and_pin(f1, make_blocknum(1), 1, &v1, wc, def_fetch, def_pf_req_callback, def_pf_callback, true, NULL); assert_zero(r); r = toku_test_cachetable_unpin(f1, make_blocknum(1), 1, CACHETABLE_DIRTY, make_pair_attr(8)); assert_zero(r); @@ -109,13 +108,13 @@ cachetable_test (void) { CHECKPOINTER cp = toku_cachetable_get_checkpointer(ct); toku_cachetable_begin_checkpoint(cp, NULL); assert_zero(r); - r = toku_cachetable_get_and_pin(f1, make_blocknum(1), 1, &v1, &s1, wc, def_fetch, def_pf_req_callback, def_pf_callback, true, NULL); + r = toku_cachetable_get_and_pin(f1, make_blocknum(1), 1, &v1, wc, def_fetch, def_pf_req_callback, def_pf_callback, true, NULL); assert_zero(r); r = toku_test_cachetable_unpin(f1, make_blocknum(1), 1, CACHETABLE_CLEAN, make_pair_attr(8)); assert_zero(r); pf_called = false; - r = toku_cachetable_get_and_pin(f1, make_blocknum(1), 1, &v1, &s1, wc, def_fetch, def_pf_req_callback, def_pf_callback, true, NULL); + r = toku_cachetable_get_and_pin(f1, make_blocknum(1), 1, &v1, wc, def_fetch, def_pf_req_callback, def_pf_callback, true, NULL); assert_zero(r); assert(!pf_called); toku_cachetable_pf_pinned_pair(v1, true_pf_callback, NULL, f1, make_blocknum(1), 1); diff --git a/storage/tokudb/PerconaFT/ft/tests/cachetable-clone-partial-fetch.cc b/storage/tokudb/PerconaFT/ft/tests/cachetable-clone-partial-fetch.cc index 2b0b828b63c..912cd0df84f 100644 --- a/storage/tokudb/PerconaFT/ft/tests/cachetable-clone-partial-fetch.cc +++ b/storage/tokudb/PerconaFT/ft/tests/cachetable-clone-partial-fetch.cc @@ -100,12 +100,11 @@ cachetable_test (void) { create_dummy_functions(f1); void* v1; - long s1; CACHETABLE_WRITE_CALLBACK wc = def_write_callback(NULL); wc.clone_callback = clone_callback; wc.flush_callback = flush; - r = toku_cachetable_get_and_pin(f1, make_blocknum(1), 1, &v1, &s1, wc, def_fetch, def_pf_req_callback, def_pf_callback, true, NULL); + r = toku_cachetable_get_and_pin(f1, make_blocknum(1), 1, &v1, wc, def_fetch, def_pf_req_callback, def_pf_callback, true, NULL); assert_zero(r); r = toku_test_cachetable_unpin(f1, make_blocknum(1), 1, CACHETABLE_DIRTY, make_pair_attr(8)); assert_zero(r); @@ -114,13 +113,13 @@ cachetable_test (void) { CHECKPOINTER cp = toku_cachetable_get_checkpointer(ct); toku_cachetable_begin_checkpoint(cp, NULL); assert_zero(r); - r = toku_cachetable_get_and_pin(f1, make_blocknum(1), 1, &v1, &s1, wc, def_fetch, def_pf_req_callback, def_pf_callback, true, NULL); + r = toku_cachetable_get_and_pin(f1, make_blocknum(1), 1, &v1, wc, def_fetch, def_pf_req_callback, def_pf_callback, true, NULL); assert_zero(r); r = toku_test_cachetable_unpin(f1, make_blocknum(1), 1, CACHETABLE_CLEAN, make_pair_attr(8)); assert_zero(r); pf_called = false; - r = toku_cachetable_get_and_pin(f1, make_blocknum(1), 1, &v1, &s1, wc, def_fetch, true_pf_req_callback, true_pf_callback, true, NULL); + r = toku_cachetable_get_and_pin(f1, make_blocknum(1), 1, &v1, wc, def_fetch, true_pf_req_callback, true_pf_callback, true, NULL); assert_zero(r); r = toku_test_cachetable_unpin(f1, make_blocknum(1), 1, CACHETABLE_CLEAN, make_pair_attr(8)); assert_zero(r); diff --git a/storage/tokudb/PerconaFT/ft/tests/cachetable-clone-pin-nonblocking.cc b/storage/tokudb/PerconaFT/ft/tests/cachetable-clone-pin-nonblocking.cc index c66de89fbcf..81c6cecc3df 100644 --- a/storage/tokudb/PerconaFT/ft/tests/cachetable-clone-pin-nonblocking.cc +++ b/storage/tokudb/PerconaFT/ft/tests/cachetable-clone-pin-nonblocking.cc @@ -82,23 +82,22 @@ cachetable_test (enum cachetable_dirty dirty, bool cloneable) { create_dummy_functions(f1); void* v1; - long s1; CACHETABLE_WRITE_CALLBACK wc = def_write_callback(NULL); wc.clone_callback = cloneable ? clone_callback : NULL; wc.flush_callback = flush; - r = toku_cachetable_get_and_pin(f1, make_blocknum(1), 1, &v1, &s1, wc, def_fetch, def_pf_req_callback, def_pf_callback, true, NULL); + r = toku_cachetable_get_and_pin(f1, make_blocknum(1), 1, &v1, wc, def_fetch, def_pf_req_callback, def_pf_callback, true, NULL); r = toku_test_cachetable_unpin(f1, make_blocknum(1), 1, dirty, make_pair_attr(8)); // test that having a pin that passes false for may_modify_value does not stall behind checkpoint CHECKPOINTER cp = toku_cachetable_get_checkpointer(ct); toku_cachetable_begin_checkpoint(cp, NULL); - r = toku_cachetable_get_and_pin_nonblocking(f1, make_blocknum(1), 1, &v1, &s1, wc, def_fetch, def_pf_req_callback, def_pf_callback, PL_READ, NULL, NULL); + r = toku_cachetable_get_and_pin_nonblocking(f1, make_blocknum(1), 1, &v1, wc, def_fetch, def_pf_req_callback, def_pf_callback, PL_READ, NULL, NULL); assert(r == 0); r = toku_test_cachetable_unpin(f1, make_blocknum(1), 1, CACHETABLE_CLEAN, make_pair_attr(8)); assert(r == 0); - r = toku_cachetable_get_and_pin_nonblocking(f1, make_blocknum(1), 1, &v1, &s1, wc, def_fetch, def_pf_req_callback, def_pf_callback, PL_WRITE_EXPENSIVE, NULL, NULL); + r = toku_cachetable_get_and_pin_nonblocking(f1, make_blocknum(1), 1, &v1, wc, def_fetch, def_pf_req_callback, def_pf_callback, PL_WRITE_EXPENSIVE, NULL, NULL); assert(r == 0); r = toku_test_cachetable_unpin(f1, make_blocknum(1), 1, CACHETABLE_CLEAN, make_pair_attr(8)); diff --git a/storage/tokudb/PerconaFT/ft/tests/cachetable-clone-unpin-remove.cc b/storage/tokudb/PerconaFT/ft/tests/cachetable-clone-unpin-remove.cc index a4198217c11..625718f97cc 100644 --- a/storage/tokudb/PerconaFT/ft/tests/cachetable-clone-unpin-remove.cc +++ b/storage/tokudb/PerconaFT/ft/tests/cachetable-clone-unpin-remove.cc @@ -93,12 +93,11 @@ cachetable_test (void) { create_dummy_functions(f1); void* v1; - long s1; CACHETABLE_WRITE_CALLBACK wc = def_write_callback(NULL); wc.clone_callback = clone_callback; wc.flush_callback = flush; - r = toku_cachetable_get_and_pin(f1, make_blocknum(1), toku_cachetable_hash(f1, make_blocknum(1)), &v1, &s1, wc, def_fetch, def_pf_req_callback, def_pf_callback, true, NULL); + r = toku_cachetable_get_and_pin(f1, make_blocknum(1), toku_cachetable_hash(f1, make_blocknum(1)), &v1, wc, def_fetch, def_pf_req_callback, def_pf_callback, true, NULL); assert_zero(r); r = toku_test_cachetable_unpin(f1, make_blocknum(1), toku_cachetable_hash(f1, make_blocknum(1)), CACHETABLE_DIRTY, make_pair_attr(8)); assert_zero(r); @@ -108,7 +107,7 @@ cachetable_test (void) { CHECKPOINTER cp = toku_cachetable_get_checkpointer(ct); toku_cachetable_begin_checkpoint(cp, NULL); assert_zero(r); - r = toku_cachetable_get_and_pin(f1, make_blocknum(1), toku_cachetable_hash(f1, make_blocknum(1)), &v1, &s1, wc, def_fetch, def_pf_req_callback, def_pf_callback, true, NULL); + r = toku_cachetable_get_and_pin(f1, make_blocknum(1), toku_cachetable_hash(f1, make_blocknum(1)), &v1, wc, def_fetch, def_pf_req_callback, def_pf_callback, true, NULL); assert_zero(r); r = toku_test_cachetable_unpin_and_remove(f1, make_blocknum(1), NULL, NULL); assert_zero(r); diff --git a/storage/tokudb/PerconaFT/ft/tests/cachetable-eviction-close-test.cc b/storage/tokudb/PerconaFT/ft/tests/cachetable-eviction-close-test.cc index 84c507f489a..787353e679c 100644 --- a/storage/tokudb/PerconaFT/ft/tests/cachetable-eviction-close-test.cc +++ b/storage/tokudb/PerconaFT/ft/tests/cachetable-eviction-close-test.cc @@ -113,9 +113,7 @@ static void cachetable_eviction_full_test (void) { uint32_t fullhash = toku_cachetable_hash(f1, make_blocknum(0)); void* value1; - long size1; void* value2; - long size2; // // let's pin a node multiple times // and really bring up its clock count @@ -129,7 +127,6 @@ static void cachetable_eviction_full_test (void) { key, fullhash, &value1, - &size1, wc, fetch, def_pf_req_callback, @@ -150,7 +147,6 @@ static void cachetable_eviction_full_test (void) { make_blocknum(1), 1, &value2, - &size2, wc, fetch, def_pf_req_callback, diff --git a/storage/tokudb/PerconaFT/ft/tests/cachetable-eviction-close-test2.cc b/storage/tokudb/PerconaFT/ft/tests/cachetable-eviction-close-test2.cc index ba99815eec0..6fb5311c72f 100644 --- a/storage/tokudb/PerconaFT/ft/tests/cachetable-eviction-close-test2.cc +++ b/storage/tokudb/PerconaFT/ft/tests/cachetable-eviction-close-test2.cc @@ -126,9 +126,7 @@ static void cachetable_eviction_full_test (void) { uint32_t fullhash = toku_cachetable_hash(f1, make_blocknum(0)); void* value1; - long size1; void* value2; - long size2; // // let's pin a node multiple times // and really bring up its clock count @@ -143,7 +141,6 @@ static void cachetable_eviction_full_test (void) { key, fullhash, &value1, - &size1, wc, fetch, def_pf_req_callback, @@ -165,7 +162,6 @@ static void cachetable_eviction_full_test (void) { make_blocknum(1), 1, &value2, - &size2, wc, fetch, def_pf_req_callback, diff --git a/storage/tokudb/PerconaFT/ft/tests/cachetable-eviction-getandpin-test.cc b/storage/tokudb/PerconaFT/ft/tests/cachetable-eviction-getandpin-test.cc index cb448b88b24..61ba1e65a4d 100644 --- a/storage/tokudb/PerconaFT/ft/tests/cachetable-eviction-getandpin-test.cc +++ b/storage/tokudb/PerconaFT/ft/tests/cachetable-eviction-getandpin-test.cc @@ -83,7 +83,6 @@ static void cachetable_predef_fetch_maybegetandpin_test (void) { // let's get and pin this node a bunch of times to drive up the clock count for (int i = 0; i < 20; i++) { void* value; - long size; CACHETABLE_WRITE_CALLBACK wc = def_write_callback(NULL); wc.flush_callback = flush; r = toku_cachetable_get_and_pin( @@ -91,7 +90,6 @@ static void cachetable_predef_fetch_maybegetandpin_test (void) { key, fullhash, &value, - &size, wc, def_fetch, def_pf_req_callback, @@ -109,14 +107,12 @@ static void cachetable_predef_fetch_maybegetandpin_test (void) { // def_fetch another block, causing an eviction of the first block we made above do_sleep = true; void* value2; - long size2; CACHETABLE_WRITE_CALLBACK wc = def_write_callback(NULL); r = toku_cachetable_get_and_pin( f1, make_blocknum(1), 1, &value2, - &size2, wc, def_fetch, def_pf_req_callback, @@ -131,14 +127,16 @@ static void cachetable_predef_fetch_maybegetandpin_test (void) { toku_cachetable_verify(ct); void *v = 0; - long size = 0; // now verify that the block we are trying to evict is gone wc = def_write_callback(NULL); wc.flush_callback = flush; - r = toku_cachetable_get_and_pin_nonblocking(f1, key, fullhash, &v, &size, wc, def_fetch, def_pf_req_callback, def_pf_callback, PL_WRITE_EXPENSIVE, NULL, NULL); + r = toku_cachetable_get_and_pin_nonblocking(f1, key, fullhash, &v, wc, def_fetch, def_pf_req_callback, def_pf_callback, PL_WRITE_EXPENSIVE, NULL, NULL); assert(r == TOKUDB_TRY_AGAIN); - r = toku_cachetable_get_and_pin(f1, key, fullhash, &v, &size, wc, def_fetch, def_pf_req_callback, def_pf_callback, true, NULL); - assert(r == 0 && v == 0 && size == 8); + r = toku_cachetable_get_and_pin(f1, key, fullhash, &v, wc, def_fetch, def_pf_req_callback, def_pf_callback, true, NULL); + assert(r == 0 && v == 0); + PAIR_ATTR attr; + r = toku_cachetable_get_attr(f1, key, fullhash, &attr); + assert(r == 0 && attr.size == 8); do_sleep = false; struct timeval tend; diff --git a/storage/tokudb/PerconaFT/ft/tests/cachetable-eviction-getandpin-test2.cc b/storage/tokudb/PerconaFT/ft/tests/cachetable-eviction-getandpin-test2.cc index 37ec203299e..f6dd04f322f 100644 --- a/storage/tokudb/PerconaFT/ft/tests/cachetable-eviction-getandpin-test2.cc +++ b/storage/tokudb/PerconaFT/ft/tests/cachetable-eviction-getandpin-test2.cc @@ -93,13 +93,11 @@ static void cachetable_prefetch_maybegetandpin_test (void) { wc.pe_callback = pe_callback; for (int i = 0; i < 20; i++) { void* value; - long size; r = toku_cachetable_get_and_pin( f1, key, fullhash, &value, - &size, wc, def_fetch, def_pf_req_callback, @@ -116,13 +114,11 @@ static void cachetable_prefetch_maybegetandpin_test (void) { // fetch another block, causing an eviction of the first block we made above void* value2; - long size2; r = toku_cachetable_get_and_pin( f1, make_blocknum(1), 1, &value2, - &size2, wc, def_fetch, def_pf_req_callback, @@ -139,14 +135,12 @@ static void cachetable_prefetch_maybegetandpin_test (void) { toku_cachetable_verify(ct); void *v = 0; - long size = 0; // now verify that the block we are trying to evict may be pinned r = toku_cachetable_get_and_pin_nonblocking( f1, key, fullhash, &v, - &size, wc, def_fetch, def_pf_req_callback, @@ -161,7 +155,6 @@ static void cachetable_prefetch_maybegetandpin_test (void) { key, fullhash, &v, - &size, wc, def_fetch, def_pf_req_callback, @@ -169,7 +162,10 @@ static void cachetable_prefetch_maybegetandpin_test (void) { true, NULL ); - assert(r == 0 && v == 0 && size == 1); + assert(r == 0 && v == 0); + PAIR_ATTR attr; + r = toku_cachetable_get_attr(f1, key, fullhash, &attr); + assert(r == 0 && attr.size == 1); struct timeval tend; gettimeofday(&tend, NULL); diff --git a/storage/tokudb/PerconaFT/ft/tests/cachetable-fetch-inducing-evictor.cc b/storage/tokudb/PerconaFT/ft/tests/cachetable-fetch-inducing-evictor.cc index f330a6f20af..ff72e660bb5 100644 --- a/storage/tokudb/PerconaFT/ft/tests/cachetable-fetch-inducing-evictor.cc +++ b/storage/tokudb/PerconaFT/ft/tests/cachetable-fetch-inducing-evictor.cc @@ -70,9 +70,8 @@ cachetable_test (enum pin_evictor_test_type test_type, bool nonblocking) { r = toku_cachetable_openf(&f1, ct, fname1, O_RDWR|O_CREAT, S_IRWXU|S_IRWXG|S_IRWXO); assert(r == 0); void* v1; - long s1; CACHETABLE_WRITE_CALLBACK wc = def_write_callback(NULL); - r = toku_cachetable_get_and_pin(f1, make_blocknum(1), 1, &v1, &s1, wc, def_fetch, def_pf_req_callback, def_pf_callback, true, NULL); + r = toku_cachetable_get_and_pin(f1, make_blocknum(1), 1, &v1, wc, def_fetch, def_pf_req_callback, def_pf_callback, true, NULL); r = toku_test_cachetable_unpin(f1, make_blocknum(1), 1, CACHETABLE_CLEAN, make_pair_attr(8)); // at this point, we should have 8 bytes of data in a cachetable that supports 7 @@ -82,11 +81,11 @@ cachetable_test (enum pin_evictor_test_type test_type, bool nonblocking) { if (test_type == pin_in_memory) { old_num_ev_runs = evictor_test_helpers::get_num_eviction_runs(&ct->ev); if (nonblocking) { - r = toku_cachetable_get_and_pin_nonblocking(f1, make_blocknum(1), 1, &v1, &s1, wc, def_fetch, def_pf_req_callback, def_pf_callback, PL_WRITE_EXPENSIVE, NULL, NULL); + r = toku_cachetable_get_and_pin_nonblocking(f1, make_blocknum(1), 1, &v1, wc, def_fetch, def_pf_req_callback, def_pf_callback, PL_WRITE_EXPENSIVE, NULL, NULL); assert_zero(r); } else { - r = toku_cachetable_get_and_pin(f1, make_blocknum(1), 1, &v1, &s1, wc, def_fetch, def_pf_req_callback, def_pf_callback, true, NULL); + r = toku_cachetable_get_and_pin(f1, make_blocknum(1), 1, &v1, wc, def_fetch, def_pf_req_callback, def_pf_callback, true, NULL); assert_zero(r); } new_num_ev_runs = evictor_test_helpers::get_num_eviction_runs(&ct->ev); @@ -97,13 +96,13 @@ cachetable_test (enum pin_evictor_test_type test_type, bool nonblocking) { else if (test_type == pin_fetch) { old_num_ev_runs = evictor_test_helpers::get_num_eviction_runs(&ct->ev); if (nonblocking) { - r = toku_cachetable_get_and_pin_nonblocking(f1, make_blocknum(2), 2, &v1, &s1, wc, def_fetch, def_pf_req_callback, def_pf_callback, PL_WRITE_EXPENSIVE, NULL, NULL); + r = toku_cachetable_get_and_pin_nonblocking(f1, make_blocknum(2), 2, &v1, wc, def_fetch, def_pf_req_callback, def_pf_callback, PL_WRITE_EXPENSIVE, NULL, NULL); assert(r == TOKUDB_TRY_AGAIN); new_num_ev_runs = evictor_test_helpers::get_num_eviction_runs(&ct->ev); assert(new_num_ev_runs > old_num_ev_runs); } else { - r = toku_cachetable_get_and_pin(f1, make_blocknum(2), 2, &v1, &s1, wc, def_fetch, def_pf_req_callback, def_pf_callback, true, NULL); + r = toku_cachetable_get_and_pin(f1, make_blocknum(2), 2, &v1, wc, def_fetch, def_pf_req_callback, def_pf_callback, true, NULL); assert_zero(r); new_num_ev_runs = evictor_test_helpers::get_num_eviction_runs(&ct->ev); assert(new_num_ev_runs > old_num_ev_runs); @@ -114,13 +113,13 @@ cachetable_test (enum pin_evictor_test_type test_type, bool nonblocking) { else if (test_type == pin_partial_fetch) { old_num_ev_runs = evictor_test_helpers::get_num_eviction_runs(&ct->ev); if (nonblocking) { - r = toku_cachetable_get_and_pin_nonblocking(f1, make_blocknum(1), 1, &v1, &s1, wc, def_fetch, pf_req_callback, pf_callback, PL_WRITE_EXPENSIVE, NULL, NULL); + r = toku_cachetable_get_and_pin_nonblocking(f1, make_blocknum(1), 1, &v1, wc, def_fetch, pf_req_callback, pf_callback, PL_WRITE_EXPENSIVE, NULL, NULL); assert(r == TOKUDB_TRY_AGAIN); new_num_ev_runs = evictor_test_helpers::get_num_eviction_runs(&ct->ev); assert(new_num_ev_runs > old_num_ev_runs); } else { - r = toku_cachetable_get_and_pin(f1, make_blocknum(1), 1, &v1, &s1, wc, def_fetch, pf_req_callback, pf_callback, true, NULL); + r = toku_cachetable_get_and_pin(f1, make_blocknum(1), 1, &v1, wc, def_fetch, pf_req_callback, pf_callback, true, NULL); assert_zero(r); new_num_ev_runs = evictor_test_helpers::get_num_eviction_runs(&ct->ev); assert(new_num_ev_runs > old_num_ev_runs); diff --git a/storage/tokudb/PerconaFT/ft/tests/cachetable-flush-during-cleaner.cc b/storage/tokudb/PerconaFT/ft/tests/cachetable-flush-during-cleaner.cc index c52444d8e06..db8c5cc99e7 100644 --- a/storage/tokudb/PerconaFT/ft/tests/cachetable-flush-during-cleaner.cc +++ b/storage/tokudb/PerconaFT/ft/tests/cachetable-flush-during-cleaner.cc @@ -73,11 +73,10 @@ cachetable_test (void) { r = toku_cachetable_openf(&f1, ct, fname1, O_RDWR|O_CREAT, S_IRWXU|S_IRWXG|S_IRWXO); assert(r == 0); void* v1; - long s1; for (int i = 0; i < 10; i++) { CACHETABLE_WRITE_CALLBACK wc = def_write_callback(NULL); wc.cleaner_callback = cleaner_callback; - r = toku_cachetable_get_and_pin(f1, make_blocknum(i), i, &v1, &s1, wc, def_fetch, def_pf_req_callback, def_pf_callback, true, NULL); + r = toku_cachetable_get_and_pin(f1, make_blocknum(i), i, &v1, wc, def_fetch, def_pf_req_callback, def_pf_callback, true, NULL); PAIR_ATTR attr = make_pair_attr(8); attr.cache_pressure_size = 8; r = toku_test_cachetable_unpin(f1, make_blocknum(i), i, CACHETABLE_DIRTY, attr); diff --git a/storage/tokudb/PerconaFT/ft/tests/cachetable-getandpin-test.cc b/storage/tokudb/PerconaFT/ft/tests/cachetable-getandpin-test.cc index a9a9fd2408a..c5391722bca 100644 --- a/storage/tokudb/PerconaFT/ft/tests/cachetable-getandpin-test.cc +++ b/storage/tokudb/PerconaFT/ft/tests/cachetable-getandpin-test.cc @@ -93,12 +93,14 @@ cachetable_getandpin_test (int n) { for (i=1; i<=n; i++) { uint32_t hi; hi = toku_cachetable_hash(f1, make_blocknum(i)); - void *v; long size; + void *v; CACHETABLE_WRITE_CALLBACK wc = def_write_callback(NULL); wc.flush_callback = flush; - r = toku_cachetable_get_and_pin(f1, make_blocknum(i), hi, &v, &size, wc, fetch, def_pf_req_callback, def_pf_callback, true, 0); + r = toku_cachetable_get_and_pin(f1, make_blocknum(i), hi, &v, wc, fetch, def_pf_req_callback, def_pf_callback, true, 0); assert(r == 0); - assert(size == i); + PAIR_ATTR attr; + r = toku_cachetable_get_attr(f1, make_blocknum(i), hi, &attr); + assert(r == 0 && attr.size == i); r = toku_test_cachetable_unpin(f1, make_blocknum(i), hi, CACHETABLE_CLEAN, make_pair_attr(i)); assert(r == 0); diff --git a/storage/tokudb/PerconaFT/ft/tests/cachetable-kibbutz_and_flush_cachefile.cc b/storage/tokudb/PerconaFT/ft/tests/cachetable-kibbutz_and_flush_cachefile.cc index 17792ffb6d0..df4137e934b 100644 --- a/storage/tokudb/PerconaFT/ft/tests/cachetable-kibbutz_and_flush_cachefile.cc +++ b/storage/tokudb/PerconaFT/ft/tests/cachetable-kibbutz_and_flush_cachefile.cc @@ -69,10 +69,9 @@ run_test (void) { r = toku_cachetable_openf(&f1, ct, fname1, O_RDWR|O_CREAT, S_IRWXU|S_IRWXG|S_IRWXO); assert(r == 0); void* v1; - long s1; CACHETABLE_WRITE_CALLBACK wc = def_write_callback(NULL); - r = toku_cachetable_get_and_pin(f1, make_blocknum(1), 1, &v1, &s1, wc, def_fetch, def_pf_req_callback, def_pf_callback, true, NULL); + r = toku_cachetable_get_and_pin(f1, make_blocknum(1), 1, &v1, wc, def_fetch, def_pf_req_callback, def_pf_callback, true, NULL); foo = false; cachefile_kibbutz_enq(f1, kibbutz_work, f1); toku_cachefile_close(&f1, false, ZERO_LSN); diff --git a/storage/tokudb/PerconaFT/ft/tests/cachetable-partial-fetch.cc b/storage/tokudb/PerconaFT/ft/tests/cachetable-partial-fetch.cc index 5ae6cc60efb..42c60f1f8e6 100644 --- a/storage/tokudb/PerconaFT/ft/tests/cachetable-partial-fetch.cc +++ b/storage/tokudb/PerconaFT/ft/tests/cachetable-partial-fetch.cc @@ -121,11 +121,8 @@ cachetable_test (void) { r = toku_cachetable_openf(&f1, ct, fname1, O_RDWR|O_CREAT, S_IRWXU|S_IRWXG|S_IRWXO); assert(r == 0); void* v1; - //void* v2; - long s1; - //long s2; CACHETABLE_WRITE_CALLBACK wc = def_write_callback(NULL); - r = toku_cachetable_get_and_pin(f1, make_blocknum(1), 1, &v1, &s1, wc, fetch, pf_req_callback, pf_callback, true, NULL); + r = toku_cachetable_get_and_pin(f1, make_blocknum(1), 1, &v1, wc, fetch, pf_req_callback, pf_callback, true, NULL); assert(&fetch_val == v1); // // verify that a prefetch of this node will fail @@ -148,16 +145,19 @@ cachetable_test (void) { // // now get and pin node again, and make sure that partial fetch and fetch are not called // - r = toku_cachetable_get_and_pin(f1, make_blocknum(1), 1, &v1, &s1, wc, err_fetch, pf_req_callback, err_pf_callback, true, NULL); + r = toku_cachetable_get_and_pin(f1, make_blocknum(1), 1, &v1, wc, err_fetch, pf_req_callback, err_pf_callback, true, NULL); r = toku_test_cachetable_unpin(f1, make_blocknum(1), 1, CACHETABLE_CLEAN, make_pair_attr(8)); // // now make sure that if we say a partial fetch is required, that we get a partial fetch // and that read_extraargs properly passed down // pf_req_called = false; - r = toku_cachetable_get_and_pin(f1, make_blocknum(1), 1, &v1, &s1, wc, err_fetch, true_pf_req_callback, true_pf_callback, true, &fetch_val); + r = toku_cachetable_get_and_pin(f1, make_blocknum(1), 1, &v1, wc, err_fetch, true_pf_req_callback, true_pf_callback, true, &fetch_val); assert(pf_req_called); - assert(s1 == sizeof(fetch_val)+1); + PAIR_ATTR attr; + r = toku_cachetable_get_attr(f1, make_blocknum(1), 1, &attr); + assert(r == 0); + assert(attr.size == sizeof(fetch_val)+1); r = toku_test_cachetable_unpin(f1, make_blocknum(1), 1, CACHETABLE_CLEAN, make_pair_attr(8)); // close and reopen cachefile so we can do some simple prefetch tests @@ -185,7 +185,7 @@ cachetable_test (void) { // // now verify we can pin it, and NO fetch callback should get called // - r = toku_cachetable_get_and_pin(f1, make_blocknum(1), 1, &v1, &s1, wc, err_fetch, pf_req_callback, err_pf_callback, true, NULL); + r = toku_cachetable_get_and_pin(f1, make_blocknum(1), 1, &v1, wc, err_fetch, pf_req_callback, err_pf_callback, true, NULL); assert(&fetch_val == v1); r = toku_test_cachetable_unpin(f1, make_blocknum(1), 1, CACHETABLE_CLEAN, make_pair_attr(8)); @@ -205,7 +205,7 @@ cachetable_test (void) { &doing_prefetch ); assert(doing_prefetch); - r = toku_cachetable_get_and_pin(f1, make_blocknum(1), 1, &v1, &s1, wc, err_fetch, pf_req_callback, err_pf_callback, true, NULL); + r = toku_cachetable_get_and_pin(f1, make_blocknum(1), 1, &v1, wc, err_fetch, pf_req_callback, err_pf_callback, true, NULL); assert(&fetch_val == v1); r = toku_test_cachetable_unpin(f1, make_blocknum(1), 1, CACHETABLE_CLEAN, make_pair_attr(8)); diff --git a/storage/tokudb/PerconaFT/ft/tests/cachetable-pin-checkpoint.cc b/storage/tokudb/PerconaFT/ft/tests/cachetable-pin-checkpoint.cc index 65b02aebaec..9632b199daa 100644 --- a/storage/tokudb/PerconaFT/ft/tests/cachetable-pin-checkpoint.cc +++ b/storage/tokudb/PerconaFT/ft/tests/cachetable-pin-checkpoint.cc @@ -171,7 +171,6 @@ static void *move_numbers(void *arg) { */ void* v1; - long s1; CACHEKEY less_key; less_key.b = less; uint32_t less_fullhash = less; @@ -184,7 +183,6 @@ static void *move_numbers(void *arg) { less_key, less, &v1, - &s1, wc, fetch, def_pf_req_callback, def_pf_callback, PL_WRITE_CHEAP, NULL, @@ -205,7 +203,6 @@ static void *move_numbers(void *arg) { make_blocknum(greater), greater, &v1, - &s1, wc, fetch, def_pf_req_callback, def_pf_callback, PL_WRITE_CHEAP, NULL, @@ -238,7 +235,6 @@ static void *move_numbers(void *arg) { make_blocknum(third), third, &v1, - &s1, wc, fetch, def_pf_req_callback, def_pf_callback, PL_WRITE_CHEAP, NULL, @@ -264,7 +260,6 @@ static void *read_random_numbers(void *arg) { while(run_test) { int rand_key1 = random() % NUM_ELEMENTS; void* v1; - long s1; int r1; CACHETABLE_WRITE_CALLBACK wc = def_write_callback(NULL); wc.flush_callback = flush; @@ -274,7 +269,6 @@ static void *read_random_numbers(void *arg) { make_blocknum(rand_key1), rand_key1, &v1, - &s1, wc, fetch, def_pf_req_callback, def_pf_callback, PL_READ, NULL, diff --git a/storage/tokudb/PerconaFT/ft/tests/cachetable-pin-nonblocking-checkpoint-clean.cc b/storage/tokudb/PerconaFT/ft/tests/cachetable-pin-nonblocking-checkpoint-clean.cc index 758bfc6934b..2d358110280 100644 --- a/storage/tokudb/PerconaFT/ft/tests/cachetable-pin-nonblocking-checkpoint-clean.cc +++ b/storage/tokudb/PerconaFT/ft/tests/cachetable-pin-nonblocking-checkpoint-clean.cc @@ -57,18 +57,16 @@ run_test (void) { void* v1; void* v2; - long s1; - long s2; - r = toku_cachetable_get_and_pin(f1, make_blocknum(1), 1, &v1, &s1, def_write_callback(NULL), def_fetch, def_pf_req_callback, def_pf_callback, true, NULL); + r = toku_cachetable_get_and_pin(f1, make_blocknum(1), 1, &v1, def_write_callback(NULL), def_fetch, def_pf_req_callback, def_pf_callback, true, NULL); r = toku_test_cachetable_unpin(f1, make_blocknum(1), 1, CACHETABLE_CLEAN, make_pair_attr(8)); assert(r==0); for (int i = 0; i < 20; i++) { - r = toku_cachetable_get_and_pin(f1, make_blocknum(2), 2, &v2, &s2, def_write_callback(NULL), def_fetch, def_pf_req_callback, def_pf_callback, true, NULL); + r = toku_cachetable_get_and_pin(f1, make_blocknum(2), 2, &v2, def_write_callback(NULL), def_fetch, def_pf_req_callback, def_pf_callback, true, NULL); r = toku_test_cachetable_unpin(f1, make_blocknum(2), 2, CACHETABLE_CLEAN, make_pair_attr(8)); assert(r==0); } - r = toku_cachetable_get_and_pin(f1, make_blocknum(1), 1, &v2, &s2, def_write_callback(NULL), def_fetch, def_pf_req_callback, def_pf_callback, true, NULL); + r = toku_cachetable_get_and_pin(f1, make_blocknum(1), 1, &v2, def_write_callback(NULL), def_fetch, def_pf_req_callback, def_pf_callback, true, NULL); CHECKPOINTER cp = toku_cachetable_get_checkpointer(ct); toku_cachetable_begin_checkpoint(cp, NULL); // mark nodes as pending a checkpoint, so that get_and_pin_nonblocking on block 1 will return TOKUDB_TRY_AGAIN @@ -79,7 +77,6 @@ run_test (void) { make_blocknum(1), 1, &v1, - &s1, def_write_callback(NULL), def_fetch, def_pf_req_callback, diff --git a/storage/tokudb/PerconaFT/ft/tests/cachetable-prefetch-close-test.cc b/storage/tokudb/PerconaFT/ft/tests/cachetable-prefetch-close-test.cc index e4d4288fbdf..bcc6556b271 100644 --- a/storage/tokudb/PerconaFT/ft/tests/cachetable-prefetch-close-test.cc +++ b/storage/tokudb/PerconaFT/ft/tests/cachetable-prefetch-close-test.cc @@ -107,13 +107,11 @@ static void cachetable_prefetch_full_test (bool partial_fetch) { if (partial_fetch) { expect_pf = true; void* value; - long size; r = toku_cachetable_get_and_pin( f1, key, fullhash, &value, - &size, wc, fetch, def_pf_req_callback, diff --git a/storage/tokudb/PerconaFT/ft/tests/cachetable-prefetch-getandpin-test.cc b/storage/tokudb/PerconaFT/ft/tests/cachetable-prefetch-getandpin-test.cc index d446560ccf6..5769b5c8a41 100644 --- a/storage/tokudb/PerconaFT/ft/tests/cachetable-prefetch-getandpin-test.cc +++ b/storage/tokudb/PerconaFT/ft/tests/cachetable-prefetch-getandpin-test.cc @@ -124,13 +124,11 @@ static void cachetable_prefetch_maybegetandpin_test (bool do_partial_fetch) { if (do_partial_fetch) { expect_pf = true; void* value; - long size; r = toku_cachetable_get_and_pin( f1, key, fullhash, &value, - &size, wc, fetch, pf_req_callback, @@ -152,12 +150,14 @@ static void cachetable_prefetch_maybegetandpin_test (bool do_partial_fetch) { // verify that get_and_pin waits while the prefetch is in progress void *v = 0; - long size = 0; do_pf = false; - r = toku_cachetable_get_and_pin_nonblocking(f1, key, fullhash, &v, &size, wc, fetch, pf_req_callback, pf_callback, PL_WRITE_EXPENSIVE, NULL, NULL); + r = toku_cachetable_get_and_pin_nonblocking(f1, key, fullhash, &v, wc, fetch, pf_req_callback, pf_callback, PL_WRITE_EXPENSIVE, NULL, NULL); assert(r==TOKUDB_TRY_AGAIN); - r = toku_cachetable_get_and_pin(f1, key, fullhash, &v, &size, wc, fetch, pf_req_callback, pf_callback, true, NULL); - assert(r == 0 && v == 0 && size == 2); + r = toku_cachetable_get_and_pin(f1, key, fullhash, &v, wc, fetch, pf_req_callback, pf_callback, true, NULL); + assert(r == 0 && v == 0); + PAIR_ATTR attr; + r = toku_cachetable_get_attr(f1, key, fullhash, &attr); + assert(r == 0 && attr.size == 2); struct timeval tend; gettimeofday(&tend, NULL); diff --git a/storage/tokudb/PerconaFT/ft/tests/cachetable-put-checkpoint.cc b/storage/tokudb/PerconaFT/ft/tests/cachetable-put-checkpoint.cc index 4cf1678449b..a159d448b76 100644 --- a/storage/tokudb/PerconaFT/ft/tests/cachetable-put-checkpoint.cc +++ b/storage/tokudb/PerconaFT/ft/tests/cachetable-put-checkpoint.cc @@ -171,7 +171,6 @@ static void move_number_to_child( child = ((random() % 2) == 0) ? (2*parent + 1) : (2*parent + 2); void* v1; - long s1; CACHEKEY parent_key; parent_key.b = parent; uint32_t parent_fullhash = toku_cachetable_hash(f1, parent_key); @@ -189,7 +188,6 @@ static void move_number_to_child( child_key, child_fullhash, &v1, - &s1, wc, fetch, def_pf_req_callback, def_pf_callback, PL_WRITE_CHEAP, NULL, @@ -222,7 +220,6 @@ static void *move_numbers(void *arg) { int parent = 0; int r; void* v1; - long s1; CACHEKEY parent_key; parent_key.b = parent; uint32_t parent_fullhash = toku_cachetable_hash(f1, parent_key); @@ -234,7 +231,6 @@ static void *move_numbers(void *arg) { parent_key, parent_fullhash, &v1, - &s1, wc, fetch, def_pf_req_callback, def_pf_callback, PL_WRITE_CHEAP, NULL, @@ -280,7 +276,6 @@ static void merge_and_split_child( assert(child != other_child); void* v1; - long s1; CACHEKEY parent_key; parent_key.b = parent; @@ -299,7 +294,6 @@ static void merge_and_split_child( child_key, child_fullhash, &v1, - &s1, wc, fetch, def_pf_req_callback, def_pf_callback, PL_WRITE_CHEAP, NULL, @@ -325,7 +319,6 @@ static void merge_and_split_child( other_child_key, other_child_fullhash, &v1, - &s1, wc, fetch, def_pf_req_callback, def_pf_callback, PL_WRITE_CHEAP, NULL, @@ -387,7 +380,6 @@ static void *merge_and_split(void *arg) { int parent = 0; int r; void* v1; - long s1; CACHEKEY parent_key; parent_key.b = parent; uint32_t parent_fullhash = toku_cachetable_hash(f1, parent_key); @@ -399,7 +391,6 @@ static void *merge_and_split(void *arg) { parent_key, parent_fullhash, &v1, - &s1, wc, fetch, def_pf_req_callback, def_pf_callback, PL_WRITE_CHEAP, NULL, diff --git a/storage/tokudb/PerconaFT/ft/tests/cachetable-simple-clone.cc b/storage/tokudb/PerconaFT/ft/tests/cachetable-simple-clone.cc index f303f22cb33..c51096b3063 100644 --- a/storage/tokudb/PerconaFT/ft/tests/cachetable-simple-clone.cc +++ b/storage/tokudb/PerconaFT/ft/tests/cachetable-simple-clone.cc @@ -106,11 +106,10 @@ test_clean (enum cachetable_dirty dirty, bool cloneable) { create_dummy_functions(f1); void* v1; - long s1; CACHETABLE_WRITE_CALLBACK wc = def_write_callback(NULL); wc.clone_callback = cloneable ? clone_callback : NULL; wc.flush_callback = flush; - r = toku_cachetable_get_and_pin(f1, make_blocknum(1), 1, &v1, &s1, wc, def_fetch, def_pf_req_callback, def_pf_callback, true, NULL); + r = toku_cachetable_get_and_pin(f1, make_blocknum(1), 1, &v1, wc, def_fetch, def_pf_req_callback, def_pf_callback, true, NULL); r = toku_test_cachetable_unpin(f1, make_blocknum(1), 1, dirty, make_pair_attr(8)); check_flush = true; @@ -127,13 +126,13 @@ test_clean (enum cachetable_dirty dirty, bool cloneable) { gettimeofday(&tstart, NULL); // test that having a pin that passes false for may_modify_value does not stall behind checkpoint - r = toku_cachetable_get_and_pin(f1, make_blocknum(1), 1, &v1, &s1, wc, def_fetch, def_pf_req_callback, def_pf_callback, false, NULL); + r = toku_cachetable_get_and_pin(f1, make_blocknum(1), 1, &v1, wc, def_fetch, def_pf_req_callback, def_pf_callback, false, NULL); r = toku_test_cachetable_unpin(f1, make_blocknum(1), 1, CACHETABLE_CLEAN, make_pair_attr(8)); gettimeofday(&tend, NULL); assert(tdelta_usec(&tend, &tstart) <= 2000000); assert(!clone_called); - r = toku_cachetable_get_and_pin(f1, make_blocknum(1), 1, &v1, &s1, wc, def_fetch, def_pf_req_callback, def_pf_callback, true, NULL); + r = toku_cachetable_get_and_pin(f1, make_blocknum(1), 1, &v1, wc, def_fetch, def_pf_req_callback, def_pf_callback, true, NULL); gettimeofday(&tend, NULL); // we take 5 seconds for a write diff --git a/storage/tokudb/PerconaFT/ft/tests/cachetable-simple-clone2.cc b/storage/tokudb/PerconaFT/ft/tests/cachetable-simple-clone2.cc index 51cf70c3e76..341bbe92106 100644 --- a/storage/tokudb/PerconaFT/ft/tests/cachetable-simple-clone2.cc +++ b/storage/tokudb/PerconaFT/ft/tests/cachetable-simple-clone2.cc @@ -94,11 +94,10 @@ test_clean (enum cachetable_dirty dirty, bool cloneable) { check_flush = false; void* v1; - long s1; CACHETABLE_WRITE_CALLBACK wc = def_write_callback(NULL); wc.clone_callback = cloneable ? clone_callback : NULL; wc.flush_callback = flush; - r = toku_cachetable_get_and_pin(f1, make_blocknum(1), 1, &v1, &s1, wc, def_fetch, def_pf_req_callback, def_pf_callback, true, NULL); + r = toku_cachetable_get_and_pin(f1, make_blocknum(1), 1, &v1, wc, def_fetch, def_pf_req_callback, def_pf_callback, true, NULL); r = toku_test_cachetable_unpin(f1, make_blocknum(1), 1, CACHETABLE_DIRTY, make_pair_attr(8)); // begin checkpoint, since pair is clean, we should not @@ -106,7 +105,7 @@ test_clean (enum cachetable_dirty dirty, bool cloneable) { CHECKPOINTER cp = toku_cachetable_get_checkpointer(ct); toku_cachetable_begin_checkpoint(cp, NULL); assert_zero(r); - r = toku_cachetable_get_and_pin(f1, make_blocknum(1), 1, &v1, &s1, wc, def_fetch, def_pf_req_callback, def_pf_callback, true, NULL); + r = toku_cachetable_get_and_pin(f1, make_blocknum(1), 1, &v1, wc, def_fetch, def_pf_req_callback, def_pf_callback, true, NULL); // at this point, there should be no more dirty writes r = toku_test_cachetable_unpin(f1, make_blocknum(1), 1, dirty, make_pair_attr(8)); diff --git a/storage/tokudb/PerconaFT/ft/tests/cachetable-simple-close.cc b/storage/tokudb/PerconaFT/ft/tests/cachetable-simple-close.cc index f5024806fb3..c1c4cb4f16e 100644 --- a/storage/tokudb/PerconaFT/ft/tests/cachetable-simple-close.cc +++ b/storage/tokudb/PerconaFT/ft/tests/cachetable-simple-close.cc @@ -113,10 +113,9 @@ simple_test(bool unlink_on_close) { r = toku_cachetable_openf(&f1, ct, fname1, O_RDWR|O_CREAT, S_IRWXU|S_IRWXG|S_IRWXO); assert(r == 0); set_cf_userdata(f1); void* v1; - long s1; CACHETABLE_WRITE_CALLBACK wc = def_write_callback(NULL); wc.flush_callback = flush; - r = toku_cachetable_get_and_pin(f1, make_blocknum(1), toku_cachetable_hash(f1, make_blocknum(1)), &v1, &s1, wc, def_fetch, def_pf_req_callback, def_pf_callback, true, NULL); + r = toku_cachetable_get_and_pin(f1, make_blocknum(1), toku_cachetable_hash(f1, make_blocknum(1)), &v1, wc, def_fetch, def_pf_req_callback, def_pf_callback, true, NULL); r = toku_test_cachetable_unpin(f1, make_blocknum(1), toku_cachetable_hash(f1, make_blocknum(1)), CACHETABLE_DIRTY, make_pair_attr(8)); toku_cachetable_verify(ct); if (unlink_on_close) { @@ -169,9 +168,8 @@ static void test_pair_stays_in_cache(enum cachetable_dirty dirty) { r = toku_cachetable_openf(&f1, ct, fname1, O_RDWR|O_CREAT, S_IRWXU|S_IRWXG|S_IRWXO); assert(r == 0); void* v1; - long s1; CACHETABLE_WRITE_CALLBACK wc = def_write_callback(NULL); - r = toku_cachetable_get_and_pin(f1, make_blocknum(1), toku_cachetable_hash(f1, make_blocknum(1)), &v1, &s1, wc, def_fetch, def_pf_req_callback, def_pf_callback, true, NULL); + r = toku_cachetable_get_and_pin(f1, make_blocknum(1), toku_cachetable_hash(f1, make_blocknum(1)), &v1, wc, def_fetch, def_pf_req_callback, def_pf_callback, true, NULL); r = toku_test_cachetable_unpin(f1, make_blocknum(1), toku_cachetable_hash(f1, make_blocknum(1)), dirty, make_pair_attr(8)); toku_cachefile_close(&f1, false, ZERO_LSN); // now reopen the cachefile @@ -217,28 +215,25 @@ static void test_multiple_cachefiles(bool use_same_hash) { r = toku_cachetable_openf(&f3, ct, fname3, O_RDWR|O_CREAT, S_IRWXU|S_IRWXG|S_IRWXO); assert(r == 0); void* v1; - long s1; void* v2; - long s2; void* v3; - long s3; CACHETABLE_WRITE_CALLBACK wc = def_write_callback(NULL); for (int j = 0; j < 3; j++) { uint32_t hash = use_same_hash ? 1 : toku_cachetable_hash(f1, make_blocknum(j)); - r = toku_cachetable_get_and_pin(f1, make_blocknum(j), hash, &v1, &s1, wc, def_fetch, def_pf_req_callback, def_pf_callback, true, NULL); + r = toku_cachetable_get_and_pin(f1, make_blocknum(j), hash, &v1, wc, def_fetch, def_pf_req_callback, def_pf_callback, true, NULL); r = toku_test_cachetable_unpin(f1, make_blocknum(j), hash, CACHETABLE_CLEAN, make_pair_attr(8)); } for (int j = 0; j < 3; j++) { uint32_t hash = use_same_hash ? 1 : toku_cachetable_hash(f2, make_blocknum(j)); - r = toku_cachetable_get_and_pin(f2, make_blocknum(j), hash, &v2, &s2, wc, def_fetch, def_pf_req_callback, def_pf_callback, true, NULL); + r = toku_cachetable_get_and_pin(f2, make_blocknum(j), hash, &v2, wc, def_fetch, def_pf_req_callback, def_pf_callback, true, NULL); r = toku_test_cachetable_unpin(f2, make_blocknum(j), hash, CACHETABLE_CLEAN, make_pair_attr(8)); } for (int j = 0; j < 3; j++) { uint32_t hash = use_same_hash ? 1 : toku_cachetable_hash(f3, make_blocknum(j)); - r = toku_cachetable_get_and_pin(f3, make_blocknum(j), hash, &v3, &s3, wc, def_fetch, def_pf_req_callback, def_pf_callback, true, NULL); + r = toku_cachetable_get_and_pin(f3, make_blocknum(j), hash, &v3, wc, def_fetch, def_pf_req_callback, def_pf_callback, true, NULL); r = toku_test_cachetable_unpin(f3, make_blocknum(j), hash, CACHETABLE_CLEAN, make_pair_attr(8)); } @@ -299,9 +294,8 @@ static void test_evictor(void) { set_cf_userdata(f1); r = toku_cachetable_openf(&f2, ct, fname2, O_RDWR|O_CREAT, S_IRWXU|S_IRWXG|S_IRWXO); assert(r == 0); void* v1; - long s1; CACHETABLE_WRITE_CALLBACK wc = def_write_callback(NULL); - r = toku_cachetable_get_and_pin(f1, make_blocknum(1), toku_cachetable_hash(f1, make_blocknum(1)), &v1, &s1, wc, def_fetch, def_pf_req_callback, def_pf_callback, true, NULL); + r = toku_cachetable_get_and_pin(f1, make_blocknum(1), toku_cachetable_hash(f1, make_blocknum(1)), &v1, wc, def_fetch, def_pf_req_callback, def_pf_callback, true, NULL); r = toku_test_cachetable_unpin(f1, make_blocknum(1), toku_cachetable_hash(f1, make_blocknum(1)), CACHETABLE_CLEAN, make_pair_attr(8)); close_called = false; free_called = false; @@ -311,7 +305,7 @@ static void test_evictor(void) { // at this point, we should f1, along with one PAIR, stale in the cachetable // now let's pin another node, and ensure that it causes an eviction and free of f1 - r = toku_cachetable_get_and_pin(f2, make_blocknum(1), toku_cachetable_hash(f2, make_blocknum(1)), &v1, &s1, wc, def_fetch, def_pf_req_callback, def_pf_callback, true, NULL); + r = toku_cachetable_get_and_pin(f2, make_blocknum(1), toku_cachetable_hash(f2, make_blocknum(1)), &v1, wc, def_fetch, def_pf_req_callback, def_pf_callback, true, NULL); r = toku_test_cachetable_unpin(f2, make_blocknum(1), toku_cachetable_hash(f2, make_blocknum(1)), CACHETABLE_CLEAN, make_pair_attr(8)); // now sleep for 2 seconds, and check to see if f1 has been closed sleep(2); diff --git a/storage/tokudb/PerconaFT/ft/tests/cachetable-simple-maybe-get-pin.cc b/storage/tokudb/PerconaFT/ft/tests/cachetable-simple-maybe-get-pin.cc index 9e724dd536a..1b6ef3ec22d 100644 --- a/storage/tokudb/PerconaFT/ft/tests/cachetable-simple-maybe-get-pin.cc +++ b/storage/tokudb/PerconaFT/ft/tests/cachetable-simple-maybe-get-pin.cc @@ -57,11 +57,10 @@ cachetable_test (void) { CACHETABLE_WRITE_CALLBACK wc = def_write_callback(NULL); void* v1; - long s1; // nothing in cachetable, so this should fail r = toku_cachetable_maybe_get_and_pin(f1, make_blocknum(1), 1, PL_WRITE_EXPENSIVE, &v1); assert(r==-1); - r = toku_cachetable_get_and_pin(f1, make_blocknum(1), 1, &v1, &s1, wc, def_fetch, def_pf_req_callback, def_pf_callback, true, NULL); + r = toku_cachetable_get_and_pin(f1, make_blocknum(1), 1, &v1, wc, def_fetch, def_pf_req_callback, def_pf_callback, true, NULL); r = toku_test_cachetable_unpin(f1, make_blocknum(1), 1, CACHETABLE_CLEAN, make_pair_attr(8)); // maybe_get_and_pin_clean should succeed, maybe_get_and_pin should fail diff --git a/storage/tokudb/PerconaFT/ft/tests/cachetable-simple-pin-cheap.cc b/storage/tokudb/PerconaFT/ft/tests/cachetable-simple-pin-cheap.cc index fff5845ef8f..d79d1fb1eaf 100644 --- a/storage/tokudb/PerconaFT/ft/tests/cachetable-simple-pin-cheap.cc +++ b/storage/tokudb/PerconaFT/ft/tests/cachetable-simple-pin-cheap.cc @@ -80,12 +80,11 @@ run_test (pair_lock_type lock_type) { r = toku_cachetable_openf(&f1, ct, fname1, O_RDWR|O_CREAT, S_IRWXU|S_IRWXG|S_IRWXO); assert(r == 0); void* v1; - long s1; CACHETABLE_WRITE_CALLBACK wc = def_write_callback(NULL); - r = toku_cachetable_get_and_pin_with_dep_pairs(f1, make_blocknum(1), 1, &v1, &s1, wc, def_fetch, def_pf_req_callback, def_pf_callback, lock_type, NULL, 0, NULL, NULL); + r = toku_cachetable_get_and_pin_with_dep_pairs(f1, make_blocknum(1), 1, &v1, wc, def_fetch, def_pf_req_callback, def_pf_callback, lock_type, NULL, 0, NULL, NULL); cachefile_kibbutz_enq(f1, kibbutz_work, f1); reset_unlockers(&unlockers); - r = toku_cachetable_get_and_pin_nonblocking(f1, make_blocknum(1), 1, &v1, &s1, wc, def_fetch, def_pf_req_callback, def_pf_callback, PL_WRITE_EXPENSIVE, NULL, &unlockers); + r = toku_cachetable_get_and_pin_nonblocking(f1, make_blocknum(1), 1, &v1, wc, def_fetch, def_pf_req_callback, def_pf_callback, PL_WRITE_EXPENSIVE, NULL, &unlockers); // to fix #5393, we changed behavior on full fetch where if we // requested a PL_WRITE_CHEAP, and had to grab a PL_WRITE_EXPENSIVE for // a full fetch, we keep it as a PL_WRITE_EXPENSIVE because downgrading back @@ -100,11 +99,11 @@ run_test (pair_lock_type lock_type) { // now do the same test with a partial fetch required pf_called = false; - r = toku_cachetable_get_and_pin_with_dep_pairs(f1, make_blocknum(1), 1, &v1, &s1, wc, def_fetch, true_pf_req_callback, true_pf_callback, lock_type, NULL, 0, NULL, NULL); + r = toku_cachetable_get_and_pin_with_dep_pairs(f1, make_blocknum(1), 1, &v1, wc, def_fetch, true_pf_req_callback, true_pf_callback, lock_type, NULL, 0, NULL, NULL); assert(pf_called); cachefile_kibbutz_enq(f1, kibbutz_work, f1); reset_unlockers(&unlockers); - r = toku_cachetable_get_and_pin_nonblocking(f1, make_blocknum(1), 1, &v1, &s1, wc, def_fetch, def_pf_req_callback, def_pf_callback, PL_WRITE_EXPENSIVE, NULL, &unlockers); + r = toku_cachetable_get_and_pin_nonblocking(f1, make_blocknum(1), 1, &v1, wc, def_fetch, def_pf_req_callback, def_pf_callback, PL_WRITE_EXPENSIVE, NULL, &unlockers); if (lock_type == PL_WRITE_EXPENSIVE) { assert(r == TOKUDB_TRY_AGAIN); assert(!unlockers.locked); } diff --git a/storage/tokudb/PerconaFT/ft/tests/cachetable-simple-pin-dep-nodes.cc b/storage/tokudb/PerconaFT/ft/tests/cachetable-simple-pin-dep-nodes.cc index f4137cebd70..f8219a0ad1a 100644 --- a/storage/tokudb/PerconaFT/ft/tests/cachetable-simple-pin-dep-nodes.cc +++ b/storage/tokudb/PerconaFT/ft/tests/cachetable-simple-pin-dep-nodes.cc @@ -116,18 +116,15 @@ cachetable_test (bool write_first, bool write_second, bool start_checkpoint) { void* v1; void* v2; void* v3; - long s1; - long s2; - long s3; PAIR dependent_pairs[2]; CACHETABLE_WRITE_CALLBACK wc = def_write_callback(&val1); wc.flush_callback = flush; wc.write_extraargs = &val1; dest_pair = &dependent_pairs[0]; - r = toku_cachetable_get_and_pin(f1, make_blocknum(1), 1, &v1, &s1, wc, fetch, def_pf_req_callback, def_pf_callback, true, &val1); + r = toku_cachetable_get_and_pin(f1, make_blocknum(1), 1, &v1, wc, fetch, def_pf_req_callback, def_pf_callback, true, &val1); dest_pair = &dependent_pairs[1]; wc.write_extraargs = &val2; - r = toku_cachetable_get_and_pin(f1, make_blocknum(2), 2, &v2, &s2, wc, fetch, def_pf_req_callback, def_pf_callback, true, &val2); + r = toku_cachetable_get_and_pin(f1, make_blocknum(2), 2, &v2, wc, fetch, def_pf_req_callback, def_pf_callback, true, &val2); // now we set the dirty state of these two. enum cachetable_dirty cd[2]; @@ -152,7 +149,6 @@ cachetable_test (bool write_first, bool write_second, bool start_checkpoint) { make_blocknum(3), 3, &v3, - &s3, wc, fetch, def_pf_req_callback, def_pf_callback, PL_WRITE_EXPENSIVE, &val3, diff --git a/storage/tokudb/PerconaFT/ft/tests/cachetable-simple-pin-nonblocking-cheap.cc b/storage/tokudb/PerconaFT/ft/tests/cachetable-simple-pin-nonblocking-cheap.cc index 36e6e74b18c..9e3213a8462 100644 --- a/storage/tokudb/PerconaFT/ft/tests/cachetable-simple-pin-nonblocking-cheap.cc +++ b/storage/tokudb/PerconaFT/ft/tests/cachetable-simple-pin-nonblocking-cheap.cc @@ -78,15 +78,14 @@ static void reset_unlockers(UNLOCKERS unlockers) { static void run_case_that_should_succeed(CACHEFILE f1, pair_lock_type first_lock, pair_lock_type second_lock) { void* v1; - long s1; CACHETABLE_WRITE_CALLBACK wc = def_write_callback(NULL); wc.flush_callback = flush; struct unlockers unlockers = {true, unlock_dummy, NULL, NULL}; - int r = toku_cachetable_get_and_pin_nonblocking(f1, make_blocknum(1), 1, &v1, &s1, wc, def_fetch, def_pf_req_callback, def_pf_callback, first_lock, NULL, NULL); + int r = toku_cachetable_get_and_pin_nonblocking(f1, make_blocknum(1), 1, &v1, wc, def_fetch, def_pf_req_callback, def_pf_callback, first_lock, NULL, NULL); assert(r==0); cachefile_kibbutz_enq(f1, kibbutz_work, f1); reset_unlockers(&unlockers); - r = toku_cachetable_get_and_pin_nonblocking(f1, make_blocknum(1), 1, &v1, &s1, wc, def_fetch, def_pf_req_callback, def_pf_callback, second_lock, NULL, &unlockers); + r = toku_cachetable_get_and_pin_nonblocking(f1, make_blocknum(1), 1, &v1, wc, def_fetch, def_pf_req_callback, def_pf_callback, second_lock, NULL, &unlockers); assert(r==0); assert(unlockers.locked); r = toku_test_cachetable_unpin(f1, make_blocknum(1), 1, CACHETABLE_CLEAN, make_pair_attr(8)); assert(r==0); } @@ -94,22 +93,25 @@ run_case_that_should_succeed(CACHEFILE f1, pair_lock_type first_lock, pair_lock_ static void run_case_that_should_fail(CACHEFILE f1, pair_lock_type first_lock, pair_lock_type second_lock) { void* v1; - long s1; CACHETABLE_WRITE_CALLBACK wc = def_write_callback(NULL); wc.flush_callback = flush; struct unlockers unlockers = {true, unlock_dummy, NULL, NULL}; - int r = toku_cachetable_get_and_pin_nonblocking(f1, make_blocknum(1), 1, &v1, &s1, wc, def_fetch, def_pf_req_callback, def_pf_callback, first_lock, NULL, NULL); + int r = toku_cachetable_get_and_pin_nonblocking(f1, make_blocknum(1), 1, &v1, wc, def_fetch, def_pf_req_callback, def_pf_callback, first_lock, NULL, NULL); assert(r==0); cachefile_kibbutz_enq(f1, kibbutz_work, f1); reset_unlockers(&unlockers); - r = toku_cachetable_get_and_pin_nonblocking(f1, make_blocknum(1), 1, &v1, &s1, wc, def_fetch, def_pf_req_callback, def_pf_callback, second_lock, NULL, &unlockers); + r = toku_cachetable_get_and_pin_nonblocking(f1, make_blocknum(1), 1, &v1, wc, def_fetch, def_pf_req_callback, def_pf_callback, second_lock, NULL, &unlockers); assert(r == TOKUDB_TRY_AGAIN); assert(!unlockers.locked); } static void run_test (void) { - const int test_limit = 12; + // sometimes the cachetable evictor runs during the test. this sometimes causes cachetable pair locking contention, + // which results with a TOKUDB_TRY_AGAIN error occurring. unfortunately, the test does not expect this and fails. + // set cachetable size limit to a value big enough so that the cachetable evictor is not triggered during the test. + const int test_limit = 100; + int r; CACHETABLE ct; toku_cachetable_create(&ct, test_limit, ZERO_LSN, nullptr); @@ -119,14 +121,13 @@ run_test (void) { r = toku_cachetable_openf(&f1, ct, fname1, O_RDWR|O_CREAT, S_IRWXU|S_IRWXG|S_IRWXO); assert(r == 0); void* v1; - long s1; CACHETABLE_WRITE_CALLBACK wc = def_write_callback(NULL); wc.flush_callback = flush; // // test that if we are getting a PAIR for the first time that TOKUDB_TRY_AGAIN is returned // because the PAIR was not in the cachetable. // - r = toku_cachetable_get_and_pin_nonblocking(f1, make_blocknum(1), 1, &v1, &s1, wc, def_fetch, def_pf_req_callback, def_pf_callback, PL_WRITE_EXPENSIVE, NULL, NULL); + r = toku_cachetable_get_and_pin_nonblocking(f1, make_blocknum(1), 1, &v1, wc, def_fetch, def_pf_req_callback, def_pf_callback, PL_WRITE_EXPENSIVE, NULL, NULL); assert(r==TOKUDB_TRY_AGAIN); diff --git a/storage/tokudb/PerconaFT/ft/tests/cachetable-simple-pin-nonblocking.cc b/storage/tokudb/PerconaFT/ft/tests/cachetable-simple-pin-nonblocking.cc index 26551761435..6a09b53820c 100644 --- a/storage/tokudb/PerconaFT/ft/tests/cachetable-simple-pin-nonblocking.cc +++ b/storage/tokudb/PerconaFT/ft/tests/cachetable-simple-pin-nonblocking.cc @@ -103,34 +103,33 @@ run_test (void) { create_dummy_functions(f1); void* v1; - long s1; CACHETABLE_WRITE_CALLBACK wc = def_write_callback(NULL); wc.flush_callback = flush; // // test that if we are getting a PAIR for the first time that TOKUDB_TRY_AGAIN is returned // because the PAIR was not in the cachetable. // - r = toku_cachetable_get_and_pin_nonblocking(f1, make_blocknum(1), 1, &v1, &s1, wc, def_fetch, def_pf_req_callback, def_pf_callback, PL_WRITE_EXPENSIVE, NULL, NULL); + r = toku_cachetable_get_and_pin_nonblocking(f1, make_blocknum(1), 1, &v1, wc, def_fetch, def_pf_req_callback, def_pf_callback, PL_WRITE_EXPENSIVE, NULL, NULL); assert(r==TOKUDB_TRY_AGAIN); // now it should succeed - r = toku_cachetable_get_and_pin_nonblocking(f1, make_blocknum(1), 1, &v1, &s1, wc, def_fetch, def_pf_req_callback, def_pf_callback, PL_WRITE_EXPENSIVE, NULL, NULL); + r = toku_cachetable_get_and_pin_nonblocking(f1, make_blocknum(1), 1, &v1, wc, def_fetch, def_pf_req_callback, def_pf_callback, PL_WRITE_EXPENSIVE, NULL, NULL); assert(r==0); foo = false; cachefile_kibbutz_enq(f1, kibbutz_work, f1); // because node is in use, should return TOKUDB_TRY_AGAIN - r = toku_cachetable_get_and_pin_nonblocking(f1, make_blocknum(1), 1, &v1, &s1, wc, def_fetch, def_pf_req_callback, def_pf_callback, PL_WRITE_EXPENSIVE, NULL, NULL); + r = toku_cachetable_get_and_pin_nonblocking(f1, make_blocknum(1), 1, &v1, wc, def_fetch, def_pf_req_callback, def_pf_callback, PL_WRITE_EXPENSIVE, NULL, NULL); assert(r==TOKUDB_TRY_AGAIN); - r = toku_cachetable_get_and_pin(f1, make_blocknum(1), 1, &v1, &s1, wc, def_fetch, def_pf_req_callback, def_pf_callback, true, NULL); + r = toku_cachetable_get_and_pin(f1, make_blocknum(1), 1, &v1, wc, def_fetch, def_pf_req_callback, def_pf_callback, true, NULL); assert(foo); r = toku_test_cachetable_unpin(f1, make_blocknum(1), 1, CACHETABLE_CLEAN, make_pair_attr(8)); assert(r==0); // now make sure we get TOKUDB_TRY_AGAIN when a partial fetch is involved // first make sure value is there - r = toku_cachetable_get_and_pin_nonblocking(f1, make_blocknum(1), 1, &v1, &s1, wc, def_fetch, def_pf_req_callback, def_pf_callback, PL_WRITE_EXPENSIVE, NULL, NULL); + r = toku_cachetable_get_and_pin_nonblocking(f1, make_blocknum(1), 1, &v1, wc, def_fetch, def_pf_req_callback, def_pf_callback, PL_WRITE_EXPENSIVE, NULL, NULL); assert(r==0); r = toku_test_cachetable_unpin(f1, make_blocknum(1), 1, CACHETABLE_CLEAN, make_pair_attr(8)); assert(r==0); // now make sure that we get TOKUDB_TRY_AGAIN for the partial fetch - r = toku_cachetable_get_and_pin_nonblocking(f1, make_blocknum(1), 1, &v1, &s1, wc, def_fetch, true_def_pf_req_callback, true_def_pf_callback, PL_WRITE_EXPENSIVE, NULL, NULL); + r = toku_cachetable_get_and_pin_nonblocking(f1, make_blocknum(1), 1, &v1, wc, def_fetch, true_def_pf_req_callback, true_def_pf_callback, PL_WRITE_EXPENSIVE, NULL, NULL); assert(r==TOKUDB_TRY_AGAIN); toku_cachetable_verify(ct); diff --git a/storage/tokudb/PerconaFT/ft/tests/cachetable-simple-pin.cc b/storage/tokudb/PerconaFT/ft/tests/cachetable-simple-pin.cc index 12a6bf8926d..6750fdd3954 100644 --- a/storage/tokudb/PerconaFT/ft/tests/cachetable-simple-pin.cc +++ b/storage/tokudb/PerconaFT/ft/tests/cachetable-simple-pin.cc @@ -95,21 +95,18 @@ run_test (void) { create_dummy_functions(f1); void* v1; - //void* v2; - long s1; - //long s2; CACHETABLE_WRITE_CALLBACK wc = def_write_callback(NULL); wc.flush_callback = flush; - r = toku_cachetable_get_and_pin(f1, make_blocknum(1), 1, &v1, &s1, wc, def_fetch, def_pf_req_callback, def_pf_callback, true, NULL); + r = toku_cachetable_get_and_pin(f1, make_blocknum(1), 1, &v1, wc, def_fetch, def_pf_req_callback, def_pf_callback, true, NULL); foo = false; cachefile_kibbutz_enq(f1, kibbutz_work, f1); - r = toku_cachetable_get_and_pin(f1, make_blocknum(1), 1, &v1, &s1, wc, def_fetch, def_pf_req_callback, def_pf_callback, true, NULL); + r = toku_cachetable_get_and_pin(f1, make_blocknum(1), 1, &v1, wc, def_fetch, def_pf_req_callback, def_pf_callback, true, NULL); assert(foo); r = toku_test_cachetable_unpin(f1, make_blocknum(1), 1, CACHETABLE_CLEAN, make_pair_attr(8)); //now let's do a simple checkpoint test // first dirty the PAIR - r = toku_cachetable_get_and_pin(f1, make_blocknum(1), 1, &v1, &s1, wc, def_fetch, def_pf_req_callback, def_pf_callback, true, NULL); + r = toku_cachetable_get_and_pin(f1, make_blocknum(1), 1, &v1, wc, def_fetch, def_pf_req_callback, def_pf_callback, true, NULL); r = toku_test_cachetable_unpin(f1, make_blocknum(1), 1, CACHETABLE_DIRTY, make_pair_attr(8)); // now this should mark the pair for checkpoint @@ -121,7 +118,7 @@ run_test (void) { // check_me = true; flush_called = false; - r = toku_cachetable_get_and_pin(f1, make_blocknum(1), 1, &v1, &s1, wc, def_fetch, def_pf_req_callback, def_pf_callback, true, NULL); + r = toku_cachetable_get_and_pin(f1, make_blocknum(1), 1, &v1, wc, def_fetch, def_pf_req_callback, def_pf_callback, true, NULL); assert(flush_called); r = toku_test_cachetable_unpin(f1, make_blocknum(1), 1, CACHETABLE_CLEAN, make_pair_attr(8)); diff --git a/storage/tokudb/PerconaFT/ft/tests/cachetable-simple-put-dep-nodes.cc b/storage/tokudb/PerconaFT/ft/tests/cachetable-simple-put-dep-nodes.cc index 5cb8285526e..892c15a11b5 100644 --- a/storage/tokudb/PerconaFT/ft/tests/cachetable-simple-put-dep-nodes.cc +++ b/storage/tokudb/PerconaFT/ft/tests/cachetable-simple-put-dep-nodes.cc @@ -130,16 +130,14 @@ cachetable_test (bool write_first, bool write_second, bool start_checkpoint) { void* v1; void* v2; - long s1; - long s2; PAIR dependent_pairs[2]; CACHETABLE_WRITE_CALLBACK wc = def_write_callback(NULL); wc.flush_callback = flush; dest_pair = &dependent_pairs[0]; - r = toku_cachetable_get_and_pin(f1, make_blocknum(1), 1, &v1, &s1, wc, fetch, def_pf_req_callback, def_pf_callback, true, &val1); + r = toku_cachetable_get_and_pin(f1, make_blocknum(1), 1, &v1, wc, fetch, def_pf_req_callback, def_pf_callback, true, &val1); assert(r==0); dest_pair = &dependent_pairs[1]; - r = toku_cachetable_get_and_pin(f1, make_blocknum(2), 2, &v2, &s2, wc, fetch, def_pf_req_callback, def_pf_callback, true, &val2); + r = toku_cachetable_get_and_pin(f1, make_blocknum(2), 2, &v2, wc, fetch, def_pf_req_callback, def_pf_callback, true, &val2); assert(r==0); // now we set the dirty state of these two. diff --git a/storage/tokudb/PerconaFT/ft/tests/cachetable-simple-read-pin-nonblocking.cc b/storage/tokudb/PerconaFT/ft/tests/cachetable-simple-read-pin-nonblocking.cc index ebe05e50883..fdca6ef27ce 100644 --- a/storage/tokudb/PerconaFT/ft/tests/cachetable-simple-read-pin-nonblocking.cc +++ b/storage/tokudb/PerconaFT/ft/tests/cachetable-simple-read-pin-nonblocking.cc @@ -75,9 +75,8 @@ static int sleep_pf_callback(void* UU(ftnode_pv), void* UU(disk_data), void* UU( static void *run_expensive_pf(void *arg) { void* v1; - long s1; CACHETABLE_WRITE_CALLBACK wc = def_write_callback(NULL); - int r = toku_cachetable_get_and_pin_nonblocking(f1, make_blocknum(1), 1, &v1, &s1, wc, sleep_fetch, sleep_pf_req_callback, sleep_pf_callback, PL_READ, NULL, NULL); + int r = toku_cachetable_get_and_pin_nonblocking(f1, make_blocknum(1), 1, &v1, wc, sleep_fetch, sleep_pf_req_callback, sleep_pf_callback, PL_READ, NULL, NULL); assert(r == TOKUDB_TRY_AGAIN); assert(pf_called); return arg; @@ -85,9 +84,8 @@ static void *run_expensive_pf(void *arg) { static void *run_expensive_fetch(void *arg) { void* v1; - long s1; CACHETABLE_WRITE_CALLBACK wc = def_write_callback(NULL); - int r = toku_cachetable_get_and_pin_nonblocking(f1, make_blocknum(1), 1, &v1, &s1, wc, sleep_fetch, sleep_pf_req_callback, sleep_pf_callback, PL_READ, NULL, NULL); + int r = toku_cachetable_get_and_pin_nonblocking(f1, make_blocknum(1), 1, &v1, wc, sleep_fetch, sleep_pf_req_callback, sleep_pf_callback, PL_READ, NULL, NULL); assert(fetch_called); assert(r == TOKUDB_TRY_AGAIN); return arg; @@ -106,7 +104,6 @@ run_test (void) { r = toku_cachetable_openf(&f1, ct, fname1, O_RDWR|O_CREAT, S_IRWXU|S_IRWXG|S_IRWXO); assert(r == 0); void* v1; - long s1; CACHETABLE_WRITE_CALLBACK wc = def_write_callback(NULL); toku_pthread_t fetch_tid; @@ -118,7 +115,6 @@ run_test (void) { make_blocknum(1), 1, &v1, - &s1, wc, sleep_fetch, def_pf_req_callback, @@ -133,9 +129,9 @@ run_test (void) { assert_zero(r); // call with may_modify_node = false twice, make sure we can get it - r = toku_cachetable_get_and_pin_nonblocking(f1, make_blocknum(1), 1, &v1, &s1, wc, sleep_fetch, def_pf_req_callback, def_pf_callback, PL_READ, NULL, NULL); + r = toku_cachetable_get_and_pin_nonblocking(f1, make_blocknum(1), 1, &v1, wc, sleep_fetch, def_pf_req_callback, def_pf_callback, PL_READ, NULL, NULL); assert_zero(r); - r = toku_cachetable_get_and_pin_nonblocking(f1, make_blocknum(1), 1, &v1, &s1, wc, sleep_fetch, def_pf_req_callback, def_pf_callback, PL_READ, NULL, NULL); + r = toku_cachetable_get_and_pin_nonblocking(f1, make_blocknum(1), 1, &v1, wc, sleep_fetch, def_pf_req_callback, def_pf_callback, PL_READ, NULL, NULL); assert_zero(r); r = toku_test_cachetable_unpin(f1, make_blocknum(1), 1, CACHETABLE_CLEAN, make_pair_attr(8)); assert(r==0); @@ -151,7 +147,6 @@ run_test (void) { make_blocknum(1), 1, &v1, - &s1, wc, sleep_fetch, def_pf_req_callback, diff --git a/storage/tokudb/PerconaFT/ft/tests/cachetable-simple-read-pin.cc b/storage/tokudb/PerconaFT/ft/tests/cachetable-simple-read-pin.cc index dd5d59df002..1a8f3813ffa 100644 --- a/storage/tokudb/PerconaFT/ft/tests/cachetable-simple-read-pin.cc +++ b/storage/tokudb/PerconaFT/ft/tests/cachetable-simple-read-pin.cc @@ -77,11 +77,10 @@ static int sleep_pf_callback(void* UU(ftnode_pv), void* UU(disk_data), void* UU( static void *run_expensive_pf(void *arg) { void* v1; - long s1; CACHETABLE_WRITE_CALLBACK wc = def_write_callback(NULL); pf_called = false; fetch_called = false; - int r = toku_cachetable_get_and_pin(f1, make_blocknum(1), 1, &v1, &s1, wc, sleep_fetch, sleep_pf_req_callback, sleep_pf_callback, false, NULL); + int r = toku_cachetable_get_and_pin(f1, make_blocknum(1), 1, &v1, wc, sleep_fetch, sleep_pf_req_callback, sleep_pf_callback, false, NULL); assert_zero(r); assert(pf_called); return arg; @@ -89,11 +88,10 @@ static void *run_expensive_pf(void *arg) { static void *run_expensive_fetch(void *arg) { void* v1; - long s1; CACHETABLE_WRITE_CALLBACK wc = def_write_callback(NULL); pf_called = false; fetch_called = false; - int r = toku_cachetable_get_and_pin(f1, make_blocknum(1), 1, &v1, &s1, wc, sleep_fetch, sleep_pf_req_callback, sleep_pf_callback, false, NULL); + int r = toku_cachetable_get_and_pin(f1, make_blocknum(1), 1, &v1, wc, sleep_fetch, sleep_pf_req_callback, sleep_pf_callback, false, NULL); assert_zero(r); assert(fetch_called); return arg; @@ -112,7 +110,6 @@ run_test (void) { r = toku_cachetable_openf(&f1, ct, fname1, O_RDWR|O_CREAT, S_IRWXU|S_IRWXG|S_IRWXO); assert(r == 0); void* v1; - long s1; CACHETABLE_WRITE_CALLBACK wc = def_write_callback(NULL); toku_pthread_t fetch_tid; @@ -124,7 +121,6 @@ run_test (void) { make_blocknum(1), 1, &v1, - &s1, wc, sleep_fetch, def_pf_req_callback, @@ -141,9 +137,9 @@ run_test (void) { assert_zero(r); // call with may_modify_node = false twice, make sure we can get it - r = toku_cachetable_get_and_pin(f1, make_blocknum(1), 1, &v1, &s1, wc, sleep_fetch, def_pf_req_callback, def_pf_callback, false, NULL); + r = toku_cachetable_get_and_pin(f1, make_blocknum(1), 1, &v1, wc, sleep_fetch, def_pf_req_callback, def_pf_callback, false, NULL); assert_zero(r); - r = toku_cachetable_get_and_pin(f1, make_blocknum(1), 1, &v1, &s1, wc, sleep_fetch, def_pf_req_callback, def_pf_callback, false, NULL); + r = toku_cachetable_get_and_pin(f1, make_blocknum(1), 1, &v1, wc, sleep_fetch, def_pf_req_callback, def_pf_callback, false, NULL); assert_zero(r); r = toku_test_cachetable_unpin(f1, make_blocknum(1), 1, CACHETABLE_CLEAN, make_pair_attr(8)); assert(r==0); @@ -159,7 +155,6 @@ run_test (void) { make_blocknum(1), 1, &v1, - &s1, wc, sleep_fetch, def_pf_req_callback, diff --git a/storage/tokudb/PerconaFT/ft/tests/cachetable-simple-unpin-remove-checkpoint.cc b/storage/tokudb/PerconaFT/ft/tests/cachetable-simple-unpin-remove-checkpoint.cc index 7430fa27405..6b0efdb011f 100644 --- a/storage/tokudb/PerconaFT/ft/tests/cachetable-simple-unpin-remove-checkpoint.cc +++ b/storage/tokudb/PerconaFT/ft/tests/cachetable-simple-unpin-remove-checkpoint.cc @@ -70,11 +70,8 @@ cachetable_test (void) { create_dummy_functions(f1); void* v1; - //void* v2; - long s1; - //long s2; CACHETABLE_WRITE_CALLBACK wc = def_write_callback(NULL); - r = toku_cachetable_get_and_pin(f1, make_blocknum(1), toku_cachetable_hash(f1, make_blocknum(1)), &v1, &s1, wc, def_fetch, def_pf_req_callback, def_pf_callback, true, NULL); + r = toku_cachetable_get_and_pin(f1, make_blocknum(1), toku_cachetable_hash(f1, make_blocknum(1)), &v1, wc, def_fetch, def_pf_req_callback, def_pf_callback, true, NULL); CHECKPOINTER cp = toku_cachetable_get_checkpointer(ct); toku_cachetable_begin_checkpoint(cp, NULL); r = toku_test_cachetable_unpin_and_remove(f1, make_blocknum(1), remove_key_expect_checkpoint, NULL); @@ -85,7 +82,7 @@ cachetable_test (void) { NULL ); - r = toku_cachetable_get_and_pin(f1, make_blocknum(1), toku_cachetable_hash(f1, make_blocknum(1)), &v1, &s1, wc, def_fetch, def_pf_req_callback, def_pf_callback, true, NULL); + r = toku_cachetable_get_and_pin(f1, make_blocknum(1), toku_cachetable_hash(f1, make_blocknum(1)), &v1, wc, def_fetch, def_pf_req_callback, def_pf_callback, true, NULL); r = toku_test_cachetable_unpin_and_remove(f1, make_blocknum(1), remove_key_expect_no_checkpoint, NULL); toku_cachetable_verify(ct); diff --git a/storage/tokudb/PerconaFT/ft/tests/cachetable-simple-verify.cc b/storage/tokudb/PerconaFT/ft/tests/cachetable-simple-verify.cc index f8544ea82d3..67ff4b9669c 100644 --- a/storage/tokudb/PerconaFT/ft/tests/cachetable-simple-verify.cc +++ b/storage/tokudb/PerconaFT/ft/tests/cachetable-simple-verify.cc @@ -50,11 +50,8 @@ cachetable_test (void) { r = toku_cachetable_openf(&f1, ct, fname1, O_RDWR|O_CREAT, S_IRWXU|S_IRWXG|S_IRWXO); assert(r == 0); void* v1; - //void* v2; - long s1; - //long s2; CACHETABLE_WRITE_CALLBACK wc = def_write_callback(NULL); - r = toku_cachetable_get_and_pin(f1, make_blocknum(1), 1, &v1, &s1, wc, def_fetch, def_pf_req_callback, def_pf_callback, true, NULL); + r = toku_cachetable_get_and_pin(f1, make_blocknum(1), 1, &v1, wc, def_fetch, def_pf_req_callback, def_pf_callback, true, NULL); r = toku_test_cachetable_unpin(f1, make_blocknum(1), 1, CACHETABLE_DIRTY, make_pair_attr(8)); toku_cachetable_verify(ct); toku_cachefile_close(&f1, false, ZERO_LSN); diff --git a/storage/tokudb/PerconaFT/ft/tests/cachetable-test.cc b/storage/tokudb/PerconaFT/ft/tests/cachetable-test.cc index 64f688c470d..a2b04d578db 100644 --- a/storage/tokudb/PerconaFT/ft/tests/cachetable-test.cc +++ b/storage/tokudb/PerconaFT/ft/tests/cachetable-test.cc @@ -129,7 +129,7 @@ static void test_nested_pin (void) { wc.flush_callback = flush_n; toku_cachetable_put(f, make_blocknum(1), f1hash, &i0, make_pair_attr(1), wc, put_callback_nop); r = toku_test_cachetable_unpin(f, make_blocknum(1), f1hash, CACHETABLE_CLEAN, make_pair_attr(test_object_size)); - r = toku_cachetable_get_and_pin(f, make_blocknum(1), f1hash, &vv, NULL, wc, fetch_n, def_pf_req_callback, def_pf_callback, true, f2); + r = toku_cachetable_get_and_pin(f, make_blocknum(1), f1hash, &vv, wc, fetch_n, def_pf_req_callback, def_pf_callback, true, f2); assert(r==0); assert(vv==&i0); assert(i0==0); @@ -215,12 +215,12 @@ static void test_multi_filehandles (void) { wc.flush_callback = null_flush; toku_cachetable_put(f1, make_blocknum(1), toku_cachetable_hash(f1, make_blocknum(1)), (void*)124, make_pair_attr(test_object_size), wc, put_callback_nop); r = toku_test_cachetable_unpin(f1, make_blocknum(1), toku_cachetable_hash(f1, make_blocknum(1)), CACHETABLE_DIRTY, make_pair_attr(0)); assert(r==0); - r = toku_cachetable_get_and_pin(f2, make_blocknum(1), toku_cachetable_hash(f2, make_blocknum(1)), &v, NULL, wc, add123_fetch, def_pf_req_callback, def_pf_callback, true, (void*)123); assert(r==0); + r = toku_cachetable_get_and_pin(f2, make_blocknum(1), toku_cachetable_hash(f2, make_blocknum(1)), &v, wc, add123_fetch, def_pf_req_callback, def_pf_callback, true, (void*)123); assert(r==0); assert((unsigned long)v==124); - r = toku_cachetable_get_and_pin(f2, make_blocknum(2), toku_cachetable_hash(f2, make_blocknum(2)), &v, NULL, wc, add123_fetch, def_pf_req_callback, def_pf_callback, true, (void*)123); assert(r==0); + r = toku_cachetable_get_and_pin(f2, make_blocknum(2), toku_cachetable_hash(f2, make_blocknum(2)), &v, wc, add123_fetch, def_pf_req_callback, def_pf_callback, true, (void*)123); assert(r==0); assert((unsigned long)v==125); wc.write_extraargs = (void*)222; - r = toku_cachetable_get_and_pin(f3, make_blocknum(2), toku_cachetable_hash(f3, make_blocknum(2)), &v, NULL, wc, add222_fetch, def_pf_req_callback, def_pf_callback, true, (void*)222); assert(r==0); + r = toku_cachetable_get_and_pin(f3, make_blocknum(2), toku_cachetable_hash(f3, make_blocknum(2)), &v, wc, add222_fetch, def_pf_req_callback, def_pf_callback, true, (void*)222); assert(r==0); assert((unsigned long)v==224); // we support only one close for a file handle @@ -296,7 +296,7 @@ static void test_dirty(void) { assert(dirty == 1); assert(pinned == 0); - r = toku_cachetable_get_and_pin(f, key, hkey, &value, NULL, wc, + r = toku_cachetable_get_and_pin(f, key, hkey, &value, wc, test_dirty_fetch, def_pf_req_callback, def_pf_callback, true, 0); assert(r == 0); @@ -318,7 +318,7 @@ static void test_dirty(void) { key = make_blocknum(2); hkey = toku_cachetable_hash(f, key); r = toku_cachetable_get_and_pin(f, key, hkey, - &value, NULL, wc, + &value, wc, test_dirty_fetch, def_pf_req_callback, def_pf_callback, true, 0); assert(r == 0); @@ -338,7 +338,7 @@ static void test_dirty(void) { assert(pinned == 0); r = toku_cachetable_get_and_pin(f, key, hkey, - &value, NULL, wc, + &value, wc, test_dirty_fetch, def_pf_req_callback, def_pf_callback, true, 0); assert(r == 0); @@ -429,11 +429,13 @@ static void test_size_resize(void) { assert(r == 0); void *current_value; - long current_size; - r = toku_cachetable_get_and_pin(f, key, hkey, ¤t_value, ¤t_size, wc, 0, def_pf_req_callback, def_pf_callback, true, 0); + r = toku_cachetable_get_and_pin(f, key, hkey, ¤t_value, wc, 0, def_pf_req_callback, def_pf_callback, true, 0); assert(r == 0); assert(current_value == value); - assert(current_size == new_size); + PAIR_ATTR attr; + r = toku_cachetable_get_attr(f, key, hkey, &attr); + assert(r == 0); + assert(attr.size == new_size); r = toku_test_cachetable_unpin(f, key, hkey, CACHETABLE_CLEAN, make_pair_attr(new_size)); assert(r == 0); diff --git a/storage/tokudb/PerconaFT/ft/tests/cachetable-unpin-and-remove-test.cc b/storage/tokudb/PerconaFT/ft/tests/cachetable-unpin-and-remove-test.cc index 1a8932e8cdf..5290db26597 100644 --- a/storage/tokudb/PerconaFT/ft/tests/cachetable-unpin-and-remove-test.cc +++ b/storage/tokudb/PerconaFT/ft/tests/cachetable-unpin-and-remove-test.cc @@ -139,8 +139,8 @@ cachetable_put_evict_remove_test (int n) { } // get 0 - void *v; long s; - r = toku_cachetable_get_and_pin(f1, make_blocknum(0), hi[0], &v, &s, wc, fetch, def_pf_req_callback, def_pf_callback, true, 0); + void *v; + r = toku_cachetable_get_and_pin(f1, make_blocknum(0), hi[0], &v, wc, fetch, def_pf_req_callback, def_pf_callback, true, 0); assert(r == 0); // remove 0 diff --git a/storage/tokudb/PerconaFT/ft/tests/cachetable-unpin-remove-and-checkpoint.cc b/storage/tokudb/PerconaFT/ft/tests/cachetable-unpin-remove-and-checkpoint.cc index 0e44bf10349..9fe43672d39 100644 --- a/storage/tokudb/PerconaFT/ft/tests/cachetable-unpin-remove-and-checkpoint.cc +++ b/storage/tokudb/PerconaFT/ft/tests/cachetable-unpin-remove-and-checkpoint.cc @@ -71,10 +71,7 @@ run_test (void) { CACHETABLE_WRITE_CALLBACK wc = def_write_callback(NULL); void* v1; - //void* v2; - long s1; - //long s2; - r = toku_cachetable_get_and_pin(f1, make_blocknum(1), toku_cachetable_hash(f1, make_blocknum(1)), &v1, &s1, wc, def_fetch, def_pf_req_callback, def_pf_callback, true, NULL); + r = toku_cachetable_get_and_pin(f1, make_blocknum(1), toku_cachetable_hash(f1, make_blocknum(1)), &v1, wc, def_fetch, def_pf_req_callback, def_pf_callback, true, NULL); toku_test_cachetable_unpin( f1, make_blocknum(1), @@ -90,7 +87,6 @@ run_test (void) { make_blocknum(1), toku_cachetable_hash(f1, make_blocknum(1)), &v1, - &s1, wc, def_fetch, def_pf_req_callback, diff --git a/storage/tokudb/PerconaFT/ft/tests/cachetable-unpin-test.cc b/storage/tokudb/PerconaFT/ft/tests/cachetable-unpin-test.cc index 3780b497bf2..e41181d9c2e 100644 --- a/storage/tokudb/PerconaFT/ft/tests/cachetable-unpin-test.cc +++ b/storage/tokudb/PerconaFT/ft/tests/cachetable-unpin-test.cc @@ -102,7 +102,6 @@ unpin_and_evictor_test(enum unpin_evictor_test_type test_type) { evictor_test_helpers::disable_ev_thread(&ct->ev); void* value2; - long size2; CACHETABLE_WRITE_CALLBACK wc = def_write_callback(NULL); // this should put in the cachetable a pair of size 8 r = toku_cachetable_get_and_pin( @@ -110,7 +109,6 @@ unpin_and_evictor_test(enum unpin_evictor_test_type test_type) { make_blocknum(1), 1, &value2, - &size2, wc, def_fetch, def_pf_req_callback, diff --git a/storage/tokudb/PerconaFT/ft/tests/test-TDB2-pe.cc b/storage/tokudb/PerconaFT/ft/tests/test-TDB2-pe.cc new file mode 100644 index 00000000000..fc7d5cc4368 --- /dev/null +++ b/storage/tokudb/PerconaFT/ft/tests/test-TDB2-pe.cc @@ -0,0 +1,178 @@ +/* -*- mode: C++; c-basic-offset: 4; indent-tabs-mode: nil -*- */ +// vim: ft=cpp:expandtab:ts=8:sw=4:softtabstop=4: +#ident "$Id$" +/*====== +This file is part of PerconaFT. + + +Copyright (c) 2006, 2015, Percona and/or its affiliates. All rights reserved. + + PerconaFT is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License, version 2, + as published by the Free Software Foundation. + + PerconaFT is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with PerconaFT. If not, see . + +---------------------------------------- + + PerconaFT is free software: you can redistribute it and/or modify + it under the terms of the GNU Affero General Public License, version 3, + as published by the Free Software Foundation. + + PerconaFT is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU Affero General Public License for more details. + + You should have received a copy of the GNU Affero General Public License + along with PerconaFT. If not, see . +======= */ + +#ident \ + "Copyright (c) 2006, 2015, Percona and/or its affiliates. All rights reserved." + +/* The goal of this test. Make sure that inserts stay behind deletes. */ + +#include "test.h" + +#include "cachetable/checkpoint.h" +#include "ft-flusher-internal.h" +#include "ft-flusher.h" +#include + +static TOKUTXN const null_txn = 0; + +enum { NODESIZE = 1024, KSIZE = NODESIZE - 100, TOKU_PSIZE = 20 }; + +CACHETABLE ct; +FT_HANDLE ft; +const char *fname = TOKU_TEST_FILENAME; + +static int update_func(DB *UU(db), const DBT *key, const DBT *old_val, + const DBT *UU(extra), + void (*set_val)(const DBT *new_val, void *set_extra), + void *set_extra) { + DBT new_val; + assert(old_val->size > 0); + if (verbose) { + printf("applying update to %s\n", (char *)key->data); + } + toku_init_dbt(&new_val); + set_val(&new_val, set_extra); + return 0; +} + +static void doit() { + BLOCKNUM node_leaf; + BLOCKNUM node_root; + BLOCKNUM node_internal; + int r; + + toku_cachetable_create(&ct, 500 * 1024 * 1024, ZERO_LSN, nullptr); + unlink(fname); + r = toku_open_ft_handle(fname, 1, &ft, NODESIZE, NODESIZE / 2, + TOKU_DEFAULT_COMPRESSION_METHOD, ct, null_txn, + toku_builtin_compare_fun); + assert(r == 0); + + ft->options.update_fun = update_func; + ft->ft->update_fun = update_func; + + toku_testsetup_initialize(); // must precede any other toku_testsetup calls + char *pivots[1]; + pivots[0] = toku_strdup("kkkkk"); + int pivot_len = 6; + r = toku_testsetup_leaf(ft, &node_leaf, 2, pivots, &pivot_len); + assert(r == 0); + + toku_free(pivots[0]); + + r = toku_testsetup_nonleaf(ft, 1, &node_internal, 1, &node_leaf, 0, 0); + assert(r == 0); + + r = toku_testsetup_nonleaf(ft, 2, &node_root, 1, &node_internal, 0, 0); + assert(r == 0); + + r = toku_testsetup_root(ft, node_root); + assert(r == 0); + + r = toku_testsetup_insert_to_leaf(ft, node_leaf, + "a", // key + 2, // keylen + "aa", 3); + assert(r == 0); + + r = toku_testsetup_insert_to_leaf(ft, node_leaf, + "z", // key + 2, // keylen + "zz", 3); + assert(r == 0); + char filler[400]; + memset(filler, 0, sizeof(filler)); + // now we insert filler data so that the rebalance + // keeps it at two nodes + r = toku_testsetup_insert_to_leaf(ft, node_leaf, + "b", // key + 2, // keylen + filler, sizeof(filler)); + assert(r == 0); + r = toku_testsetup_insert_to_leaf(ft, node_leaf, + "y", // key + 2, // keylen + filler, sizeof(filler)); + assert(r == 0); + + r = toku_testsetup_insert_to_nonleaf(ft, node_internal, FT_INSERT, + "a", // key + 2, // keylen + "yy", 3); + assert(r == 0); + + r = toku_testsetup_insert_to_nonleaf(ft, node_root, FT_INSERT, + "a", // key + 2, // keylen + "zz", 3); + assert(r == 0); + + // at this point of time, the logical row count will be 6. This has to be + // manually set up as the tests work under the interface of the ft_send_msg + ft->ft->in_memory_logical_rows = 6; + // now run a checkpoint to get everything clean + CHECKPOINTER cp = toku_cachetable_get_checkpointer(ct); + r = toku_checkpoint(cp, NULL, NULL, NULL, NULL, NULL, CLIENT_CHECKPOINT); + assert_zero(r); + // now do a lookup on one of the keys, this should bring a leaf node up to + // date + DBT k; + struct check_pair pair = {2, "a", 3, "zz", 0}; + r = toku_ft_lookup(ft, toku_fill_dbt(&k, "a", 2), lookup_checkf, &pair); + assert(r == 0); + assert(ft->ft->in_memory_logical_rows == 4); + FTNODE node; + // now lock and release the leaf node to make sure it is what we expect it to + // be. + toku_pin_node_with_min_bfe(&node, node_leaf, ft); + for (int i = 0; i < 20; i++) { + toku_ftnode_pe_callback(node, make_pair_attr(0xffffffff), ft->ft, + def_pe_finalize_impl, nullptr); + } + toku_unpin_ftnode(ft->ft, node); + assert(ft->ft->in_memory_logical_rows == 6); + + r = toku_close_ft_handle_nolsn(ft, 0); + assert(r == 0); + toku_cachetable_close(&ct); +} + +int test_main(int argc __attribute__((__unused__)), + const char *argv[] __attribute__((__unused__))) { + default_parse_args(argc, argv); + doit(); + return 0; +} diff --git a/storage/tokudb/PerconaFT/ft/tests/test-TDB89.cc b/storage/tokudb/PerconaFT/ft/tests/test-TDB89.cc new file mode 100644 index 00000000000..9371a3a07b9 --- /dev/null +++ b/storage/tokudb/PerconaFT/ft/tests/test-TDB89.cc @@ -0,0 +1,208 @@ +/* -*- mode: C++; c-basic-offset: 4; indent-tabs-mode: nil -*- */ +// vim: ft=cpp:expandtab:ts=8:sw=4:softtabstop=4: +#ident "$Id$" +/*====== +This file is part of PerconaFT. + + +Copyright (c) 2006, 2015, Percona and/or its affiliates. All rights reserved. + + PerconaFT is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License, version 2, + as published by the Free Software Foundation. + + PerconaFT is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with PerconaFT. If not, see . + +---------------------------------------- + + PerconaFT is free software: you can redistribute it and/or modify + it under the terms of the GNU Affero General Public License, version 3, + as published by the Free Software Foundation. + + PerconaFT is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU Affero General Public License for more details. + + You should have received a copy of the GNU Affero General Public License + along with PerconaFT. If not, see . +======= */ + +#ident \ + "Copyright (c) 2006, 2015, Percona and/or its affiliates. All rights reserved." + +/* The goal of this test. Make sure that inserts stay behind deletes. */ + +#include "test.h" + +#include "cachetable/checkpoint.h" +#include "ft-flusher-internal.h" +#include "ft-flusher.h" +#include + +static TOKUTXN const null_txn = 0; + +enum { NODESIZE = 1024, KSIZE = NODESIZE - 100, TOKU_PSIZE = 20 }; + +CACHETABLE ct; +FT_HANDLE ft; +const char *fname = TOKU_TEST_FILENAME; + +static int update_func(DB *UU(db), const DBT *key, const DBT *old_val, + const DBT *UU(extra), + void (*set_val)(const DBT *new_val, void *set_extra), + void *set_extra) { + DBT new_val; + assert(old_val->size > 0); + if (verbose) { + printf("applying update to %s\n", (char *)key->data); + } + toku_init_dbt(&new_val); + set_val(&new_val, set_extra); + return 0; +} + +// callback functions for toku_ft_flush_some_child +static bool destroy_bn(void *UU(extra)) { return true; } + +static bool recursively_flush_should_not_happen(FTNODE UU(child), + void *UU(extra)) { + assert(false); +} + +static int child_to_flush(FT UU(h), FTNODE parent, void *UU(extra)) { + assert(parent->height == 1); + assert(parent->n_children == 1); + return 0; +} + +static void dummy_update_status(FTNODE UU(child), int UU(dirtied), + void *UU(extra)) {} + +static void doit() { + BLOCKNUM node_leaf; + BLOCKNUM node_root; + BLOCKNUM node_internal; + int r; + + toku_cachetable_create(&ct, 500 * 1024 * 1024, ZERO_LSN, nullptr); + unlink(fname); + r = toku_open_ft_handle(fname, 1, &ft, NODESIZE, NODESIZE / 2, + TOKU_DEFAULT_COMPRESSION_METHOD, ct, null_txn, + toku_builtin_compare_fun); + assert(r == 0); + + ft->options.update_fun = update_func; + ft->ft->update_fun = update_func; + + toku_testsetup_initialize(); // must precede any other toku_testsetup calls + char *pivots[1]; + pivots[0] = toku_strdup("kkkkk"); + int pivot_len = 6; + r = toku_testsetup_leaf(ft, &node_leaf, 2, pivots, &pivot_len); + assert(r == 0); + + toku_free(pivots[0]); + + r = toku_testsetup_nonleaf(ft, 1, &node_internal, 1, &node_leaf, 0, 0); + assert(r == 0); + + r = toku_testsetup_nonleaf(ft, 2, &node_root, 1, &node_internal, 0, 0); + assert(r == 0); + + r = toku_testsetup_root(ft, node_root); + assert(r == 0); + + r = toku_testsetup_insert_to_leaf(ft, node_leaf, + "a", // key + 2, // keylen + "aa", 3); + assert(r == 0); + + r = toku_testsetup_insert_to_leaf(ft, node_leaf, + "z", // key + 2, // keylen + "zz", 3); + assert(r == 0); + char filler[400]; + memset(filler, 0, sizeof(filler)); + // now we insert filler data so that the rebalance + // keeps it at two nodes + r = toku_testsetup_insert_to_leaf(ft, node_leaf, + "b", // key + 2, // keylen + filler, sizeof(filler)); + assert(r == 0); + r = toku_testsetup_insert_to_leaf(ft, node_leaf, + "y", // key + 2, // keylen + filler, sizeof(filler)); + assert(r == 0); + + r = toku_testsetup_insert_to_nonleaf(ft, node_internal, FT_INSERT, + "a", // key + 2, // keylen + "yy", 3); + assert(r == 0); + + r = toku_testsetup_insert_to_nonleaf(ft, node_root, FT_INSERT, + "a", // key + 2, // keylen + "zz", 3); + assert(r == 0); + + // at this point of time, the logical row count will be 6. This has to be + // manually set up as the tests work under the interface of the ft_send_msg + ft->ft->in_memory_logical_rows = 6; + // now run a checkpoint to get everything clean + CHECKPOINTER cp = toku_cachetable_get_checkpointer(ct); + r = toku_checkpoint(cp, NULL, NULL, NULL, NULL, NULL, CLIENT_CHECKPOINT); + assert_zero(r); + // now do a lookup on one of the keys, this should bring a leaf node up to + // date + DBT k; + struct check_pair pair = {2, "a", 3, "zz", 0}; + r = toku_ft_lookup(ft, toku_fill_dbt(&k, "a", 2), lookup_checkf, &pair); + assert(r == 0); + assert(ft->ft->in_memory_logical_rows == 4); + + // now lock and release the leaf node to make sure it is what we expect it to + // be. + FTNODE node = NULL; + ftnode_fetch_extra bfe; + bfe.create_for_min_read(ft->ft); + toku_pin_ftnode_with_dep_nodes( + ft->ft, node_internal, toku_cachetable_hash(ft->ft->cf, node_internal), + &bfe, PL_WRITE_EXPENSIVE, 0, NULL, &node, true); + assert(node->height == 1); + assert(node->n_children == 1); + + struct flusher_advice fa; + flusher_advice_init(&fa, child_to_flush, destroy_bn, + recursively_flush_should_not_happen, default_merge_child, + dummy_update_status, default_pick_child_after_split, + NULL); + + // do the flush which forces an evict of the leaf. logical row count back to + // 6 before the flush + toku_ft_flush_some_child(ft->ft, node, &fa); + + assert(ft->ft->in_memory_logical_rows == 5); + + r = toku_close_ft_handle_nolsn(ft, 0); + assert(r == 0); + toku_cachetable_close(&ct); +} + +int test_main(int argc __attribute__((__unused__)), + const char *argv[] __attribute__((__unused__))) { + default_parse_args(argc, argv); + doit(); + return 0; +} diff --git a/storage/tokudb/PerconaFT/ft/txn/rollback-apply.cc b/storage/tokudb/PerconaFT/ft/txn/rollback-apply.cc index c9464c3ed60..0f19c445a0f 100644 --- a/storage/tokudb/PerconaFT/ft/txn/rollback-apply.cc +++ b/storage/tokudb/PerconaFT/ft/txn/rollback-apply.cc @@ -230,8 +230,10 @@ int toku_rollback_commit(TOKUTXN txn, LSN lsn) { //If this transaction needs an fsync (if it commits) //save that in the parent. Since the commit really happens in the root txn. + toku_txn_lock(txn->parent); txn->parent->force_fsync_on_commit |= txn->force_fsync_on_commit; txn->parent->roll_info.num_rollentries += txn->roll_info.num_rollentries; + toku_txn_unlock(txn->parent); } else { r = apply_txn(txn, lsn, toku_commit_rollback_item); assert(r==0); diff --git a/storage/tokudb/PerconaFT/ft/txn/rollback.cc b/storage/tokudb/PerconaFT/ft/txn/rollback.cc index 88e660e2cda..0c793842f3c 100644 --- a/storage/tokudb/PerconaFT/ft/txn/rollback.cc +++ b/storage/tokudb/PerconaFT/ft/txn/rollback.cc @@ -276,7 +276,7 @@ void toku_get_and_pin_rollback_log(TOKUTXN txn, BLOCKNUM blocknum, ROLLBACK_LOG_ FT CAST_FROM_VOIDP(h, toku_cachefile_get_userdata(cf)); uint32_t hash = toku_cachetable_hash(cf, blocknum); int r = toku_cachetable_get_and_pin_with_dep_pairs(cf, blocknum, hash, - &value, NULL, + &value, get_write_callbacks_for_rollback_log(h), toku_rollback_fetch_callback, toku_rollback_pf_req_callback, diff --git a/storage/tokudb/PerconaFT/ftcxx/malloc_utils.cpp b/storage/tokudb/PerconaFT/ftcxx/malloc_utils.cpp index fbb5aa08571..6c0fb341542 100644 --- a/storage/tokudb/PerconaFT/ftcxx/malloc_utils.cpp +++ b/storage/tokudb/PerconaFT/ftcxx/malloc_utils.cpp @@ -39,7 +39,7 @@ Copyright (c) 2006, 2015, Percona and/or its affiliates. All rights reserved. #include "malloc_utils.hpp" -#if !HAVE_BITS_FUNCTEXCEPT_H +#if !defined(HAVE_BITS_FUNCTEXCEPT_H) || !HAVE_BITS_FUNCTEXCEPT_H namespace std { diff --git a/storage/tokudb/PerconaFT/ftcxx/malloc_utils.hpp b/storage/tokudb/PerconaFT/ftcxx/malloc_utils.hpp index 3e2b591430e..4aae801b1e2 100644 --- a/storage/tokudb/PerconaFT/ftcxx/malloc_utils.hpp +++ b/storage/tokudb/PerconaFT/ftcxx/malloc_utils.hpp @@ -47,7 +47,7 @@ Copyright (c) 2006, 2015, Percona and/or its affiliates. All rights reserved. #include #include -#if HAVE_BITS_FUNCTEXCEPT_H +#if defined(HAVE_BITS_FUNCTEXCEPT_H) && HAVE_BITS_FUNCTEXCEPT_H # include diff --git a/storage/tokudb/PerconaFT/portability/memory.cc b/storage/tokudb/PerconaFT/portability/memory.cc index 5430ff84b70..52bc99ce95c 100644 --- a/storage/tokudb/PerconaFT/portability/memory.cc +++ b/storage/tokudb/PerconaFT/portability/memory.cc @@ -176,7 +176,7 @@ toku_memory_footprint(void * p, size_t touched) void * toku_malloc(size_t size) { -#if __APPLE__ +#if defined(__APPLE__) if (size == 0) { return nullptr; } @@ -203,7 +203,7 @@ toku_malloc(size_t size) { } void *toku_malloc_aligned(size_t alignment, size_t size) { -#if __APPLE__ +#if defined(__APPLE__) if (size == 0) { return nullptr; } @@ -239,7 +239,7 @@ toku_calloc(size_t nmemb, size_t size) { void * toku_realloc(void *p, size_t size) { -#if __APPLE__ +#if defined(__APPLE__) if (size == 0) { if (p != nullptr) { toku_free(p); @@ -270,7 +270,7 @@ toku_realloc(void *p, size_t size) { } void *toku_realloc_aligned(size_t alignment, void *p, size_t size) { -#if __APPLE__ +#if defined(__APPLE__) if (size == 0) { if (p != nullptr) { toku_free(p); @@ -339,7 +339,7 @@ toku_free(void *p) { void * toku_xmalloc(size_t size) { -#if __APPLE__ +#if defined(__APPLE__) if (size == 0) { return nullptr; } @@ -369,7 +369,7 @@ void* toku_xmalloc_aligned(size_t alignment, size_t size) // Fail with a resource_assert if the allocation fails (don't return an error code). // Requires: alignment is a power of two. { -#if __APPLE__ +#if defined(__APPLE__) if (size == 0) { return nullptr; } @@ -403,7 +403,7 @@ toku_xcalloc(size_t nmemb, size_t size) { void * toku_xrealloc(void *v, size_t size) { -#if __APPLE__ +#if defined(__APPLE__) if (size == 0) { if (v != nullptr) { toku_free(v); diff --git a/storage/tokudb/PerconaFT/portability/memory.h b/storage/tokudb/PerconaFT/portability/memory.h index 5ae652d39fc..851e4d69e03 100644 --- a/storage/tokudb/PerconaFT/portability/memory.h +++ b/storage/tokudb/PerconaFT/portability/memory.h @@ -107,7 +107,7 @@ size_t toku_malloc_usable_size(void *p) __attribute__((__visibility__("default") #define XMALLOC(v) CAST_FROM_VOIDP(v, toku_xmalloc(sizeof(*v))) #define XMALLOC_N(n,v) CAST_FROM_VOIDP(v, toku_xmalloc((n)*sizeof(*v))) #define XCALLOC_N(n,v) CAST_FROM_VOIDP(v, toku_xcalloc((n), (sizeof(*v)))) -#define XCALLOC(v) XCALLOC_N(1,(v)) +#define XCALLOC(v) XCALLOC_N(1,v) #define XREALLOC(v,s) CAST_FROM_VOIDP(v, toku_xrealloc(v, s)) #define XREALLOC_N(n,v) CAST_FROM_VOIDP(v, toku_xrealloc(v, (n)*sizeof(*v))) diff --git a/storage/tokudb/PerconaFT/portability/toku_assert.h b/storage/tokudb/PerconaFT/portability/toku_assert.h index b0a7be3287b..a5593a93ed8 100644 --- a/storage/tokudb/PerconaFT/portability/toku_assert.h +++ b/storage/tokudb/PerconaFT/portability/toku_assert.h @@ -126,7 +126,7 @@ void db_env_do_backtrace(FILE *outf); #define resource_assert_zero(a) assert_zero(a) // indicates resource must be available, otherwise unrecoverable #define resource_assert_equals(a, b) assert_equals(a, b) // indicates resource must be available, otherwise unrecoverable -#if TOKU_DEBUG_PARANOID +#if defined(TOKU_DEBUG_PARANOID) && TOKU_DEBUG_PARANOID #define paranoid_invariant(a) assert(a) #define paranoid_invariant_null(a) assert_null(a) #define paranoid_invariant_notnull(a) assert(a) diff --git a/storage/tokudb/PerconaFT/portability/toku_debug_sync.h b/storage/tokudb/PerconaFT/portability/toku_debug_sync.h index 4a959cab1fe..cd087e2e17b 100644 --- a/storage/tokudb/PerconaFT/portability/toku_debug_sync.h +++ b/storage/tokudb/PerconaFT/portability/toku_debug_sync.h @@ -40,7 +40,8 @@ Copyright (c) 2006, 2015, Percona and/or its affiliates. All rights reserved. struct tokutxn; -#if defined(ENABLED_DEBUG_SYNC) +#if defined(MYSQL_TOKUDB_ENGINE) && MYSQL_TOKUDB_ENGINE && \ + defined(ENABLED_DEBUG_SYNC) && ENABLED_DEBUG_SYNC /* the below macros are defined in my_global.h, which is included in m_string.h, diff --git a/storage/tokudb/PerconaFT/portability/toku_instr_mysql.cc b/storage/tokudb/PerconaFT/portability/toku_instr_mysql.cc index b7b4c0ab233..6f69c3c31b9 100644 --- a/storage/tokudb/PerconaFT/portability/toku_instr_mysql.cc +++ b/storage/tokudb/PerconaFT/portability/toku_instr_mysql.cc @@ -1,4 +1,4 @@ -#ifdef MYSQL_TOKUDB_ENGINE +#ifdef TOKU_MYSQL_WITH_PFS #include "toku_portability.h" #include "toku_pthread.h" @@ -18,7 +18,7 @@ int toku_pthread_create(const toku_instr_key &key, const pthread_attr_t *attr, void *(*start_routine)(void *), void *arg) { -#if (MYSQL_VERSION_MAJOR >= 5) && (MYSQL_VERSION_MINOR >= 7) +#if (MYSQL_VERSION_ID >= 50700) return PSI_THREAD_CALL(spawn_thread)( key.id(), reinterpret_cast(thread), attr, start_routine, arg); @@ -362,4 +362,4 @@ void toku_instr_rwlock_unlock(toku_pthread_rwlock_t &rwlock) { PSI_RWLOCK_CALL(unlock_rwlock)(rwlock.psi_rwlock); } -#endif // MYSQL_TOKUDB_ENGINE +#endif // TOKU_MYSQL_WITH_PFS diff --git a/storage/tokudb/PerconaFT/portability/toku_instrumentation.h b/storage/tokudb/PerconaFT/portability/toku_instrumentation.h index c300f9275b8..7f2946d9702 100644 --- a/storage/tokudb/PerconaFT/portability/toku_instrumentation.h +++ b/storage/tokudb/PerconaFT/portability/toku_instrumentation.h @@ -41,7 +41,7 @@ class toku_instr_probe_empty { extern toku_instr_key toku_uninstrumented; -#ifndef MYSQL_TOKUDB_ENGINE +#ifndef TOKU_MYSQL_WITH_PFS #include @@ -245,10 +245,10 @@ inline void toku_instr_rwlock_wrlock_wait_end( inline void toku_instr_rwlock_unlock(UU(toku_pthread_rwlock_t &rwlock)) {} -#else // MYSQL_TOKUDB_ENGINE +#else // TOKU_MYSQL_WITH_PFS // There can be not only mysql but also mongodb or any other PFS stuff #include -#endif // MYSQL_TOKUDB_ENGINE +#endif // TOKU_MYSQL_WITH_PFS extern toku_instr_key toku_uninstrumented; diff --git a/storage/tokudb/PerconaFT/portability/toku_portability.h b/storage/tokudb/PerconaFT/portability/toku_portability.h index 8a3dcf5afc4..af49f8eeb04 100644 --- a/storage/tokudb/PerconaFT/portability/toku_portability.h +++ b/storage/tokudb/PerconaFT/portability/toku_portability.h @@ -69,7 +69,7 @@ Copyright (c) 2006, 2015, Percona and/or its affiliates. All rights reserved. #include #include -#if __FreeBSD__ +#if defined(__FreeBSD__) #include #endif diff --git a/storage/tokudb/PerconaFT/portability/toku_race_tools.h b/storage/tokudb/PerconaFT/portability/toku_race_tools.h index 8482a164fb8..65e44e776ba 100644 --- a/storage/tokudb/PerconaFT/portability/toku_race_tools.h +++ b/storage/tokudb/PerconaFT/portability/toku_race_tools.h @@ -40,7 +40,7 @@ Copyright (c) 2006, 2015, Percona and/or its affiliates. All rights reserved. #include -#if defined(__linux__) && USE_VALGRIND +#if defined(__linux__) && defined(USE_VALGRIND) && USE_VALGRIND # include # include diff --git a/storage/tokudb/PerconaFT/src/tests/get_last_key.cc b/storage/tokudb/PerconaFT/src/tests/get_last_key.cc index 3749d9ea8ff..ad6cf34fda3 100644 --- a/storage/tokudb/PerconaFT/src/tests/get_last_key.cc +++ b/storage/tokudb/PerconaFT/src/tests/get_last_key.cc @@ -161,16 +161,18 @@ static void do_test(size_t ct_size, int num_keys) r = env->txn_begin(env, nullptr, &txn, 0); CKERR(r); - DBT key, value; - for (i = 0; i < num_keys; i++) { - int v, k = toku_htonl(i); - dbt_init(&key, &k, sizeof(int)); - dbt_init(&value, &v, sizeof(int)); - get_value_by_key(&key, &value); - r = db->put(db, txn, &key, &value, 0); - CKERR(r); + { + DBT key, value; + for (i = 0; i < num_keys; i++) { + int v, k = toku_htonl(i); + dbt_init(&key, &k, sizeof(int)); + dbt_init(&value, &v, sizeof(int)); + get_value_by_key(&key, &value); + if (0) printf("put %d\n", k); + r = db->put(db, txn, &key, &value, 0); + CKERR(r); + } } - CKERR(r); int expect_r = num_keys == 0 ? DB_NOTFOUND : 0; check_last_key_matches(db, expect_r, num_keys - 1); @@ -186,13 +188,23 @@ static void do_test(size_t ct_size, int num_keys) r = env->txn_begin(env, nullptr, &txn, 0); CKERR(r); - r = db->del(db, txn, &key, 0); + // Delete the last key + { + DBT key; + int k = toku_htonl(num_keys - 1); + dbt_init(&key, &k, sizeof(int)); + if (0) printf("del %d\n", *(int*)key.data); + r = db->del(db, txn, &key, 0); + CKERR(r); + } check_last_key_matches(db, 0, num_keys - 1); r = txn->commit(txn, 0); + CKERR(r); check_last_key_matches(db, 0, num_keys - 1); r = txn2->commit(txn2, 0); + CKERR(r); check_last_key_matches(db, 0, num_keys - 1); //Run Garbage collection (NOTE does not work when everything fits in root??? WHY) diff --git a/storage/tokudb/PerconaFT/src/ydb.cc b/storage/tokudb/PerconaFT/src/ydb.cc index a172773bca3..66e7502f625 100644 --- a/storage/tokudb/PerconaFT/src/ydb.cc +++ b/storage/tokudb/PerconaFT/src/ydb.cc @@ -185,9 +185,12 @@ toku_ydb_init(void) { // Do not clean up resources if env is panicked, just exit ugly void toku_ydb_destroy(void) { + if (!ydb_layer_status.initialized) + return; if (env_is_panicked == 0) { toku_ft_layer_destroy(); } + ydb_layer_status.initialized = false; } static int diff --git a/storage/tokudb/PerconaFT/tools/CMakeLists.txt b/storage/tokudb/PerconaFT/tools/CMakeLists.txt index c5bce6453a7..d54c2c21827 100644 --- a/storage/tokudb/PerconaFT/tools/CMakeLists.txt +++ b/storage/tokudb/PerconaFT/tools/CMakeLists.txt @@ -8,11 +8,24 @@ foreach(tool ${tools}) # detect when we are being built as a subproject if (DEFINED MYSQL_PROJECT_NAME_DOCSTRING) + # if we are compiling under a MySQL variant, this macro must be present + GET_MYSQL_VERSION() + + if ((CMAKE_BUILD_TYPE MATCHES "Debug") AND (CMAKE_CXX_FLAGS_DEBUG MATCHES " -DENABLED_DEBUG_SYNC")) - target_link_libraries(${tool} sql binlog rpl master slave) - endif() - target_link_libraries(${tool} perconaserverclient) + if (MYSQL_BASE_VERSION VERSION_EQUAL "8.0") + target_link_libraries(${tool} sql_main sql_gis sql_main binlog rpl master slave ${ICU_LIBRARIES}) + else () + target_link_libraries(${tool} sql binlog rpl master slave) + endif () + else () + if (MYSQL_BASE_VERSION VERSION_EQUAL "8.0") + target_link_libraries(${tool} mysqlclient) + else () + target_link_libraries(${tool} perconaserverclient) + endif () + endif () endif () add_space_separated_property(TARGET ${tool} COMPILE_FLAGS -fvisibility=hidden) diff --git a/storage/tokudb/PerconaFT/util/dmt.cc b/storage/tokudb/PerconaFT/util/dmt.cc index b5b94982487..a584bf2b2bf 100644 --- a/storage/tokudb/PerconaFT/util/dmt.cc +++ b/storage/tokudb/PerconaFT/util/dmt.cc @@ -80,8 +80,8 @@ void dmt::create_from_sorted_memory_of_fix paranoid_invariant(numvalues > 0); void *ptr = toku_mempool_malloc(&this->mp, aligned_memsize); paranoid_invariant_notnull(ptr); - uint8_t * const CAST_FROM_VOIDP(dest, ptr); - const uint8_t * const CAST_FROM_VOIDP(src, mem); + uint8_t * const dest = static_cast(ptr); + const uint8_t * const src = static_cast(mem); if (pad_bytes == 0) { paranoid_invariant(aligned_memsize == mem_length); memcpy(dest, src, aligned_memsize); diff --git a/storage/tokudb/PerconaFT/util/minicron.cc b/storage/tokudb/PerconaFT/util/minicron.cc index c1412015be0..241e498c7ac 100644 --- a/storage/tokudb/PerconaFT/util/minicron.cc +++ b/storage/tokudb/PerconaFT/util/minicron.cc @@ -85,8 +85,9 @@ minicron_do (void *pv) toku_cond_wait(&p->condvar, &p->mutex); } else if (p->period_in_ms <= 1000) { + uint32_t period_in_ms = p->period_in_ms; toku_mutex_unlock(&p->mutex); - usleep(p->period_in_ms * 1000); + usleep(period_in_ms * 1000); toku_mutex_lock(&p->mutex); } else { diff --git a/storage/tokudb/PerconaFT/util/scoped_malloc.cc b/storage/tokudb/PerconaFT/util/scoped_malloc.cc index 55bbab39332..6c4fb95a318 100644 --- a/storage/tokudb/PerconaFT/util/scoped_malloc.cc +++ b/storage/tokudb/PerconaFT/util/scoped_malloc.cc @@ -94,7 +94,7 @@ namespace toku { } void destroy() { -#if TOKU_SCOPED_MALLOC_DEBUG +#if defined(TOKU_SCOPED_MALLOC_DEBUG) && TOKU_SCOPED_MALLOC_DEBUG printf("%s %p %p\n", __FUNCTION__, this, m_stack); #endif if (m_stack != NULL) { diff --git a/storage/tokudb/PerconaFT/util/tests/minicron-change-period-data-race.cc b/storage/tokudb/PerconaFT/util/tests/minicron-change-period-data-race.cc new file mode 100644 index 00000000000..952cbf5769b --- /dev/null +++ b/storage/tokudb/PerconaFT/util/tests/minicron-change-period-data-race.cc @@ -0,0 +1,66 @@ +/* -*- mode: C++; c-basic-offset: 4; indent-tabs-mode: nil -*- */ +// vim: ft=cpp:expandtab:ts=8:sw=4:softtabstop=4: +#ident "$Id$" +/*====== +This file is part of PerconaFT. + + +Copyright (c) 2018, Percona and/or its affiliates. All rights reserved. + + PerconaFT is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License, version 2, + as published by the Free Software Foundation. + + PerconaFT is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with PerconaFT. If not, see . + +---------------------------------------- + + PerconaFT is free software: you can redistribute it and/or modify + it under the terms of the GNU Affero General Public License, version 3, + as published by the Free Software Foundation. + + PerconaFT is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU Affero General Public License for more details. + + You should have received a copy of the GNU Affero General Public License + along with PerconaFT. If not, see . +======= */ + +#ident "Copyright (c) 2018, Percona and/or its affiliates. All rights reserved." + +#include +#include "test.h" +#include "util/minicron.h" +#include +#include +#include + +// The thread sanitizer detected a data race in the minicron in a test unrelated to the minicron. +// This test reproduces the data race in a much smaller test which merely runs minicron tasks +// while changing the minicron period in an unrelated thread. + +static int do_nothing(void *UU(v)) { + return 0; +} + +int test_main (int argc, const char *argv[]) { + default_parse_args(argc,argv); + + minicron m = {}; + int r = toku_minicron_setup(&m, 1, do_nothing, nullptr); + assert(r == 0); + for (int i=0; i<1000; i++) + toku_minicron_change_period(&m, 1); + r = toku_minicron_shutdown(&m); + assert(r == 0); + + return 0; +} diff --git a/storage/tokudb/ha_tokudb.cc b/storage/tokudb/ha_tokudb.cc index 8354a35cb70..548ac5c7b09 100644 --- a/storage/tokudb/ha_tokudb.cc +++ b/storage/tokudb/ha_tokudb.cc @@ -34,7 +34,7 @@ Copyright (c) 2006, 2015, Percona and/or its affiliates. All rights reserved. pfs_key_t ha_tokudb_mutex_key; pfs_key_t num_DBs_lock_key; -HASH TOKUDB_SHARE::_open_tables; +std::unordered_map TOKUDB_SHARE::_open_tables; tokudb::thread::mutex_t TOKUDB_SHARE::_open_tables_mutex; static const char* ha_tokudb_exts[] = { @@ -139,30 +139,18 @@ static void free_key_and_col_info (KEY_AND_COL_INFO* kc_info) { } -uchar* TOKUDB_SHARE::hash_get_key( - TOKUDB_SHARE* share, - size_t* length, - TOKUDB_UNUSED(my_bool not_used)) { - - *length = share->_full_table_name.length(); - return (uchar *) share->_full_table_name.c_ptr(); -} -void TOKUDB_SHARE::hash_free_element(TOKUDB_SHARE* share) { - share->destroy(); - delete share; -} void TOKUDB_SHARE::static_init() { - my_hash_init( - &_open_tables, - table_alias_charset, - 32, - 0, - 0, - (my_hash_get_key)hash_get_key, - (my_hash_free_key)hash_free_element, 0); + assert_always(_open_tables.size() == 0); } void TOKUDB_SHARE::static_destroy() { - my_hash_free(&_open_tables); + for (auto it = _open_tables.cbegin(); it != _open_tables.cend(); it++) { + TOKUDB_TRACE("_open_tables %s %p", it->first.c_str(), it->second); + TOKUDB_SHARE* share = it->second; + share->destroy(); + delete share; + } + _open_tables.clear(); + assert_always(_open_tables.size() == 0); } const char* TOKUDB_SHARE::get_state_string(share_state_t state) { static const char* state_string[] = { @@ -214,15 +202,16 @@ void TOKUDB_SHARE::destroy() { TOKUDB_SHARE_DBUG_VOID_RETURN(); } TOKUDB_SHARE* TOKUDB_SHARE::get_share(const char* table_name, - TABLE_SHARE* table_share, THR_LOCK_DATA* data, bool create_new) { + std::string find_table_name(table_name); mutex_t_lock(_open_tables_mutex); - int error = 0; - uint length = (uint)strlen(table_name); - TOKUDB_SHARE* share = (TOKUDB_SHARE*)my_hash_search( - &_open_tables, (uchar*)table_name, length); - + auto it = _open_tables.find(find_table_name); + TOKUDB_SHARE *share = nullptr; + if (it != _open_tables.end()) { + share = it->second; + assert_always(strcmp(table_name, share->full_table_name()) == 0); + } TOKUDB_TRACE_FOR_FLAGS( TOKUDB_DEBUG_SHARE, "existing share[%s] %s:share[%p]", @@ -240,14 +229,7 @@ TOKUDB_SHARE* TOKUDB_SHARE::get_share(const char* table_name, share->init(table_name); - error = my_hash_insert(&_open_tables, (uchar*)share); - if (error) { - free_key_and_col_info(&share->kc_info); - share->destroy(); - tokudb::memory::free((uchar*)share); - share = NULL; - goto exit; - } + _open_tables.insert({find_table_name, share}); } share->addref(); @@ -268,7 +250,10 @@ void TOKUDB_SHARE::drop_share(TOKUDB_SHARE* share) { share->_use_count); mutex_t_lock(_open_tables_mutex); - my_hash_delete(&_open_tables, (uchar*)share); + size_t n = _open_tables.erase(std::string(share->full_table_name())); + assert_always(n == 1); + share->destroy(); + delete share; mutex_t_unlock(_open_tables_mutex); } TOKUDB_SHARE::share_state_t TOKUDB_SHARE::addref() { @@ -426,7 +411,7 @@ const char *ha_tokudb::table_type() const { return tokudb_hton_name; } -const char *ha_tokudb::index_type(uint inx) { +const char *ha_tokudb::index_type(TOKUDB_UNUSED(uint inx)) { return "BTREE"; } @@ -466,7 +451,7 @@ static inline bool do_ignore_flag_optimization( return do_opt; } -#if TOKU_INCLUDE_EXTENDED_KEYS +#if defined(TOKU_INCLUDE_EXTENDED_KEYS) && TOKU_INCLUDE_EXTENDED_KEYS static inline uint get_ext_key_parts(const KEY *key) { #if (50609 <= MYSQL_VERSION_ID && MYSQL_VERSION_ID <= 50699) || \ (50700 <= MYSQL_VERSION_ID && MYSQL_VERSION_ID <= 50799) @@ -477,7 +462,7 @@ static inline uint get_ext_key_parts(const KEY *key) { #error #endif } -#endif +#endif // defined(TOKU_INCLUDE_EXTENDED_KEYS) && TOKU_INCLUDE_EXTENDED_KEYS ulonglong ha_tokudb::table_flags() const { return int_table_flags | HA_BINLOG_ROW_CAPABLE | HA_BINLOG_STMT_CAPABLE; @@ -487,7 +472,9 @@ ulonglong ha_tokudb::table_flags() const { // Returns a bit mask of capabilities of the key or its part specified by // the arguments. The capabilities are defined in sql/handler.h. // -ulong ha_tokudb::index_flags(uint idx, uint part, bool all_parts) const { +ulong ha_tokudb::index_flags(uint idx, + TOKUDB_UNUSED(uint part), + TOKUDB_UNUSED(bool all_parts)) const { TOKUDB_HANDLER_DBUG_ENTER(""); assert_always(table_share); ulong flags = (HA_READ_NEXT | HA_READ_PREV | HA_READ_ORDER | @@ -531,8 +518,10 @@ typedef struct index_read_info { // want to actually do anything with the data, hence // callback does nothing // -static int smart_dbt_do_nothing (DBT const *key, DBT const *row, void *context) { - return 0; +static int smart_dbt_do_nothing(TOKUDB_UNUSED(DBT const* key), + TOKUDB_UNUSED(DBT const* row), + TOKUDB_UNUSED(void* context)) { + return 0; } static int @@ -545,8 +534,9 @@ smart_dbt_callback_rowread_ptquery (DBT const *key, DBT const *row, void *conte // // Smart DBT callback function in case where we have a covering index // -static int -smart_dbt_callback_keyread(DBT const *key, DBT const *row, void *context) { +static int smart_dbt_callback_keyread(DBT const* key, + DBT TOKUDB_UNUSED(const* row), + void* context) { SMART_DBT_INFO info = (SMART_DBT_INFO)context; info->ha->extract_hidden_primary_key(info->keynr, key); info->ha->read_key_only(info->buf,info->keynr,key); @@ -568,20 +558,24 @@ smart_dbt_callback_rowread(DBT const *key, DBT const *row, void *context) { // // Smart DBT callback function in case where we have a covering index // -static int -smart_dbt_callback_ir_keyread(DBT const *key, DBT const *row, void *context) { +static int smart_dbt_callback_ir_keyread(DBT const* key, + TOKUDB_UNUSED(DBT const* row), + void* context) { INDEX_READ_INFO ir_info = (INDEX_READ_INFO)context; - ir_info->cmp = ir_info->smart_dbt_info.ha->prefix_cmp_dbts(ir_info->smart_dbt_info.keynr, ir_info->orig_key, key); + ir_info->cmp = ir_info->smart_dbt_info.ha->prefix_cmp_dbts( + ir_info->smart_dbt_info.keynr, ir_info->orig_key, key); if (ir_info->cmp) { return 0; } return smart_dbt_callback_keyread(key, row, &ir_info->smart_dbt_info); } -static int -smart_dbt_callback_lookup(DBT const *key, DBT const *row, void *context) { +static int smart_dbt_callback_lookup(DBT const* key, + TOKUDB_UNUSED(DBT const* row), + void* context) { INDEX_READ_INFO ir_info = (INDEX_READ_INFO)context; - ir_info->cmp = ir_info->smart_dbt_info.ha->prefix_cmp_dbts(ir_info->smart_dbt_info.keynr, ir_info->orig_key, key); + ir_info->cmp = ir_info->smart_dbt_info.ha->prefix_cmp_dbts( + ir_info->smart_dbt_info.keynr, ir_info->orig_key, key); return 0; } @@ -1020,16 +1014,12 @@ cleanup: return error; } - -static inline int tokudb_generate_row( - DB *dest_db, - DB *src_db, - DBT *dest_key, - DBT *dest_val, - const DBT *src_key, - const DBT *src_val - ) -{ +static inline int tokudb_generate_row(DB* dest_db, + TOKUDB_UNUSED(DB* src_db), + DBT* dest_key, + DBT* dest_val, + const DBT* src_key, + const DBT* src_val) { int error; DB* curr_db = dest_db; @@ -1043,7 +1033,7 @@ static inline int tokudb_generate_row( desc_size = (*(uint32_t *)row_desc) - 4; row_desc += 4; - if (is_key_pk(row_desc, desc_size)) { + if (is_key_pk(row_desc)) { if (dest_key->flags == DB_DBT_REALLOC && dest_key->data != NULL) { free(dest_key->data); } @@ -1106,7 +1096,7 @@ static inline int tokudb_generate_row( desc_size = (*(uint32_t *)row_desc) - 4; row_desc += 4; if (dest_val != NULL) { - if (!is_key_clustering(row_desc, desc_size) || src_val->size == 0) { + if (!is_key_clustering(desc_size) || src_val->size == 0) { dest_val->size = 0; } else { uchar* buff = NULL; @@ -1245,7 +1235,9 @@ ha_tokudb::ha_tokudb(handlerton * hton, TABLE_SHARE * table_arg):handler(hton, t tokudb_active_index = MAX_KEY; invalidate_icp(); trx_handler_list.data = this; +#if defined(TOKU_INCLUDE_RFR) && TOKU_INCLUDE_RFR in_rpl_write_rows = in_rpl_delete_rows = in_rpl_update_rows = false; +#endif // defined(TOKU_INCLUDE_RFR) && TOKU_INCLUDE_RFR TOKUDB_HANDLER_DBUG_VOID_RETURN; } @@ -1645,7 +1637,8 @@ int ha_tokudb::initialize_share(const char* name, int mode) { goto exit; } -#if WITH_PARTITION_STORAGE_ENGINE +#if defined(TOKU_INCLUDE_WRITE_FRM_DATA) && TOKU_INCLUDE_WRITE_FRM_DATA +#if defined(WITH_PARTITION_STORAGE_ENGINE) && WITH_PARTITION_STORAGE_ENGINE // verify frm data for non-partitioned tables if (TOKU_PARTITION_WRITE_FRM_DATA || table->part_info == NULL) { error = verify_frm_data(table->s->path.str, txn); @@ -1661,7 +1654,8 @@ int ha_tokudb::initialize_share(const char* name, int mode) { error = verify_frm_data(table->s->path.str, txn); if (error) goto exit; -#endif +#endif // defined(WITH_PARTITION_STORAGE_ENGINE) && WITH_PARTITION_STORAGE_ENGINE +#endif // defined(TOKU_INCLUDE_WRITE_FRM_DATA) && TOKU_INCLUDE_WRITE_FRM_DATA error = initialize_key_and_col_info( @@ -1884,7 +1878,7 @@ int ha_tokudb::open(const char *name, int mode, uint test_if_locked) { } // lookup or create share - share = TOKUDB_SHARE::get_share(name, table_share, &lock, true); + share = TOKUDB_SHARE::get_share(name, &lock, true); assert_always(share); if (share->state() != TOKUDB_SHARE::OPENED) { @@ -2082,6 +2076,7 @@ cleanup: return error; } +#if defined(TOKU_INCLUDE_WRITE_FRM_DATA) && TOKU_INCLUDE_WRITE_FRM_DATA int ha_tokudb::write_frm_data(DB* db, DB_TXN* txn, const char* frm_name) { TOKUDB_HANDLER_DBUG_ENTER("%p %p %s", db, txn, frm_name); @@ -2110,7 +2105,9 @@ int ha_tokudb::remove_frm_data(DB *db, DB_TXN *txn) { return remove_from_status(db, hatoku_frm_data, txn); } -static int smart_dbt_callback_verify_frm (DBT const *key, DBT const *row, void *context) { +static int smart_dbt_callback_verify_frm(TOKUDB_UNUSED(DBT const* key), + DBT const* row, + void* context) { DBT* stored_frm = (DBT *)context; stored_frm->size = row->size; stored_frm->data = (uchar *)tokudb::memory::malloc(row->size, MYF(MY_WME)); @@ -2170,6 +2167,7 @@ cleanup: tokudb::memory::free(stored_frm.data); TOKUDB_HANDLER_DBUG_RETURN(error); } +#endif // defined(TOKU_INCLUDE_WRITE_FRM_DATA) && TOKU_INCLUDE_WRITE_FRM_DATA // // Updates status.tokudb with a new max value used for the auto increment column @@ -2881,11 +2879,11 @@ DBT* ha_tokudb::pack_key( key_length, key_length > 0 ? key_ptr[0] : 0, inf_byte); -#if TOKU_INCLUDE_EXTENDED_KEYS +#if defined(TOKU_INCLUDE_EXTENDED_KEYS) && TOKU_INCLUDE_EXTENDED_KEYS if (keynr != primary_key && !tokudb_test(hidden_primary_key)) { DBUG_RETURN(pack_ext_key(key, keynr, buff, key_ptr, key_length, inf_byte)); } -#endif +#endif // defined(TOKU_INCLUDE_EXTENDED_KEYS) && TOKU_INCLUDE_EXTENDED_KEYS KEY* key_info = &table->key_info[keynr]; KEY_PART_INFO* key_part = key_info->key_part; KEY_PART_INFO* end = key_part + key_info->user_defined_key_parts; @@ -2930,7 +2928,7 @@ DBT* ha_tokudb::pack_key( DBUG_RETURN(key); } -#if TOKU_INCLUDE_EXTENDED_KEYS +#if defined(TOKU_INCLUDE_EXTENDED_KEYS) && TOKU_INCLUDE_EXTENDED_KEYS DBT* ha_tokudb::pack_ext_key( DBT* key, uint keynr, @@ -3036,7 +3034,7 @@ DBT* ha_tokudb::pack_ext_key( dbug_tmp_restore_column_map(table->write_set, old_map); DBUG_RETURN(key); } -#endif +#endif // defined(TOKU_INCLUDE_EXTENDED_KEYS) && TOKU_INCLUDE_EXTENDED_KEYS // // get max used hidden primary key value @@ -3382,21 +3380,21 @@ int ha_tokudb::bulk_insert_poll(void* extra, float progress) { #endif return 0; } -void ha_tokudb::loader_add_index_err(DB* db, - int i, - int err, - DBT* key, - DBT* val, +void ha_tokudb::loader_add_index_err(TOKUDB_UNUSED(DB* db), + TOKUDB_UNUSED(int i), + TOKUDB_UNUSED(int err), + TOKUDB_UNUSED(DBT* key), + TOKUDB_UNUSED(DBT* val), void* error_extra) { LOADER_CONTEXT context = (LOADER_CONTEXT)error_extra; assert_always(context->ha); context->ha->set_loader_error(err); } -void ha_tokudb::loader_dup(DB* db, - int i, +void ha_tokudb::loader_dup(TOKUDB_UNUSED(DB* db), + TOKUDB_UNUSED(int i), int err, DBT* key, - DBT* val, + TOKUDB_UNUSED(DBT* val), void* error_extra) { LOADER_CONTEXT context = (LOADER_CONTEXT)error_extra; assert_always(context->ha); @@ -3411,7 +3409,7 @@ void ha_tokudb::loader_dup(DB* db, // (ha_tokudb::write_row). If start_bulk_insert is called, then // this is guaranteed to be called. // -int ha_tokudb::end_bulk_insert(bool abort) { +int ha_tokudb::end_bulk_insert(TOKUDB_UNUSED(bool abort)) { TOKUDB_HANDLER_DBUG_ENTER(""); int error = 0; THD* thd = ha_thd(); @@ -3659,7 +3657,8 @@ cleanup: return error; } -static void maybe_do_unique_checks_delay(THD *thd) { +#if defined(TOKU_INCLUDE_RFR) && TOKU_INCLUDE_RFR +static void maybe_do_unique_checks_delay_fn(THD *thd) { if (thd->slave_thread) { uint64_t delay_ms = tokudb::sysvars::rpl_unique_checks_delay(thd); if (delay_ms) @@ -3667,11 +3666,19 @@ static void maybe_do_unique_checks_delay(THD *thd) { } } +#define maybe_do_unique_checks_delay(__thd) \ + (maybe_do_unique_checks_delay_fn(__thd)) + +#define maybe_do_unique_checks_delay_if_flags_set( \ + __thd, __flags_set, __flags_check) \ + { if (((__flags_set) & DB_OPFLAGS_MASK) == \ + (__flags_check)) maybe_do_unique_checks_delay_fn(__thd); } + static bool need_read_only(THD *thd) { return opt_readonly || !tokudb::sysvars::rpl_check_readonly(thd); } -static bool do_unique_checks(THD *thd, bool do_rpl_event) { +static bool do_unique_checks_fn(THD *thd, bool do_rpl_event) { if (do_rpl_event && thd->slave_thread && need_read_only(thd) && @@ -3682,6 +3689,26 @@ static bool do_unique_checks(THD *thd, bool do_rpl_event) { } } +#define do_unique_checks(__thd, __flags) \ + (do_unique_checks_fn(__thd, __flags)) + +#else + +#define maybe_do_unique_checks_delay(__thd) ((void)0) + +#define maybe_do_unique_checks_delay_if_flags_set( \ + __thd, __flags_set, __flags_check) \ + ((void)0) + +static bool do_unique_checks_fn(THD *thd) { + return !thd_test_options(thd, OPTION_RELAXED_UNIQUE_CHECKS); +} + +#define do_unique_checks(__thd, _flags) \ + (do_unique_checks_fn(__thd)) + +#endif // defined(TOKU_INCLUDE_RFR) && TOKU_INCLUDE_RFR + int ha_tokudb::do_uniqueness_checks(uchar* record, DB_TXN* txn, THD* thd) { int error = 0; // @@ -3866,7 +3893,11 @@ void ha_tokudb::set_main_dict_put_flags(THD* thd, bool opt_eligible, uint32_t* p } } -int ha_tokudb::insert_row_to_main_dictionary(uchar* record, DBT* pk_key, DBT* pk_val, DB_TXN* txn) { +int ha_tokudb::insert_row_to_main_dictionary( + DBT* pk_key, + DBT* pk_val, + DB_TXN* txn) { + int error = 0; uint curr_num_DBs = table->s->keys + tokudb_test(hidden_primary_key); assert_always(curr_num_DBs == 1); @@ -3876,8 +3907,7 @@ int ha_tokudb::insert_row_to_main_dictionary(uchar* record, DBT* pk_key, DBT* pk set_main_dict_put_flags(thd, true, &put_flags); // for test, make unique checks have a very long duration - if ((put_flags & DB_OPFLAGS_MASK) == DB_NOOVERWRITE) - maybe_do_unique_checks_delay(thd); + maybe_do_unique_checks_delay_if_flags_set(thd, put_flags, DB_NOOVERWRITE); error = share->file->put(share->file, txn, pk_key, pk_val, put_flags); if (error) { @@ -3896,8 +3926,7 @@ int ha_tokudb::insert_rows_to_dictionaries_mult(DBT* pk_key, DBT* pk_val, DB_TXN uint32_t flags = mult_put_flags[primary_key]; // for test, make unique checks have a very long duration - if ((flags & DB_OPFLAGS_MASK) == DB_NOOVERWRITE) - maybe_do_unique_checks_delay(thd); + maybe_do_unique_checks_delay_if_flags_set(thd, flags, DB_NOOVERWRITE); // the insert ignore optimization uses DB_NOOVERWRITE_NO_ERROR, // which is not allowed with env->put_multiple. @@ -4090,7 +4119,7 @@ int ha_tokudb::write_row(uchar * record) { goto cleanup; } if (curr_num_DBs == 1) { - error = insert_row_to_main_dictionary(record, &prim_key, &row, txn); + error = insert_row_to_main_dictionary(&prim_key, &row, txn); if (error) { goto cleanup; } } else { error = insert_rows_to_dictionaries_mult(&prim_key, &row, txn, thd); @@ -4618,10 +4647,10 @@ int ha_tokudb::index_init(uint keynr, bool sorted) { } tokudb_active_index = keynr; -#if TOKU_CLUSTERING_IS_COVERING +#if defined(TOKU_CLUSTERING_IS_COVERING) && TOKU_CLUSTERING_IS_COVERING if (keynr < table->s->keys && table->key_info[keynr].option_struct->clustering) key_read = false; -#endif +#endif // defined(TOKU_CLUSTERING_IS_COVERING) && TOKU_CLUSTERING_IS_COVERING last_cursor_error = 0; range_lock_grabbed = false; @@ -4708,8 +4737,7 @@ int ha_tokudb::index_end() { TOKUDB_HANDLER_DBUG_RETURN(0); } - -int ha_tokudb::handle_cursor_error(int error, int err_to_return, uint keynr) { +int ha_tokudb::handle_cursor_error(int error, int err_to_return) { TOKUDB_HANDLER_DBUG_ENTER(""); if (error) { error = map_to_handler_error(error); @@ -4846,21 +4874,37 @@ int ha_tokudb::read_full_row(uchar * buf) { // assumes key is stored in this->last_key // - error = share->file->getf_set( - share->file, - transaction, - cursor_flags, - &last_key, - smart_dbt_callback_rowread_ptquery, - &info - ); + error = share->file->getf_set(share->file, + transaction, + cursor_flags, + &last_key, + smart_dbt_callback_rowread_ptquery, + &info); + + DBUG_EXECUTE_IF("tokudb_fake_db_notfound_error_in_read_full_row", { + error = DB_NOTFOUND; + }); if (error) { if (error == DB_LOCK_NOTGRANTED) { error = HA_ERR_LOCK_WAIT_TIMEOUT; + } else if (error == DB_NOTFOUND) { + error = HA_ERR_CRASHED; + if (tokudb_active_index < share->_keys) { + sql_print_error( + "ha_tokudb::read_full_row on table %s cound not locate " + "record in PK that matches record found in key %s", + share->full_table_name(), + share->_key_descriptors[tokudb_active_index]._name); + } else { + sql_print_error( + "ha_tokudb::read_full_row on table %s cound not locate " + "record in PK that matches record found in key %d", + share->full_table_name(), + tokudb_active_index); + } } table->status = STATUS_NOT_FOUND; - TOKUDB_HANDLER_DBUG_RETURN(error == DB_NOTFOUND ? HA_ERR_CRASHED : error); } TOKUDB_HANDLER_DBUG_RETURN(error); @@ -4911,7 +4955,7 @@ int ha_tokudb::index_next_same(uchar* buf, const uchar* key, uint keylen) { } cleanup: - error = handle_cursor_error(error, HA_ERR_END_OF_FILE, tokudb_active_index); + error = handle_cursor_error(error, HA_ERR_END_OF_FILE); TOKUDB_HANDLER_DBUG_RETURN(error); } @@ -5038,7 +5082,7 @@ int ha_tokudb::index_read( error = HA_ERR_UNSUPPORTED; break; } - error = handle_cursor_error(error,HA_ERR_KEY_NOT_FOUND,tokudb_active_index); + error = handle_cursor_error(error, HA_ERR_KEY_NOT_FOUND); if (!error && !key_read && tokudb_active_index != primary_key && !key_is_clustering(&table->key_info[tokudb_active_index])) { error = read_full_row(buf); } @@ -5545,11 +5589,7 @@ int ha_tokudb::get_next( bulk_fetch_iteration++; } - error = - handle_cursor_error( - error, - HA_ERR_END_OF_FILE, - tokudb_active_index); + error = handle_cursor_error(error, HA_ERR_END_OF_FILE); if (error) { goto cleanup; } @@ -5580,11 +5620,7 @@ int ha_tokudb::get_next( SMART_DBT_CALLBACK(do_key_read), &info); } - error = - handle_cursor_error( - error, - HA_ERR_END_OF_FILE, - tokudb_active_index); + error = handle_cursor_error(error, HA_ERR_END_OF_FILE); } } } @@ -5682,7 +5718,7 @@ int ha_tokudb::index_first(uchar * buf) { info.keynr = tokudb_active_index; error = cursor->c_getf_first(cursor, flags, SMART_DBT_CALLBACK(key_read), &info); - error = handle_cursor_error(error,HA_ERR_END_OF_FILE,tokudb_active_index); + error = handle_cursor_error(error, HA_ERR_END_OF_FILE); // // still need to get entire contents of the row if operation done on @@ -5726,7 +5762,7 @@ int ha_tokudb::index_last(uchar * buf) { info.keynr = tokudb_active_index; error = cursor->c_getf_last(cursor, flags, SMART_DBT_CALLBACK(key_read), &info); - error = handle_cursor_error(error,HA_ERR_END_OF_FILE,tokudb_active_index); + error = handle_cursor_error(error, HA_ERR_END_OF_FILE); // // still need to get entire contents of the row if operation done on // secondary DB and it was NOT a covering index @@ -5909,14 +5945,16 @@ int ha_tokudb::rnd_pos(uchar * buf, uchar * pos) { ha_statistic_increment(&SSV::ha_read_rnd_count); tokudb_active_index = MAX_KEY; - // test rpl slave by inducing a delay before the point query THD *thd = ha_thd(); +#if defined(TOKU_INCLUDE_RFR) && TOKU_INCLUDE_RFR + // test rpl slave by inducing a delay before the point query if (thd->slave_thread && (in_rpl_delete_rows || in_rpl_update_rows)) { DBUG_EXECUTE_IF("tokudb_crash_if_rpl_looks_up_row", DBUG_ASSERT(0);); uint64_t delay_ms = tokudb::sysvars::rpl_lookup_rows_delay(thd); if (delay_ms) usleep(delay_ms * 1000); } +#endif // defined(TOKU_INCLUDE_RFR) && TOKU_INCLUDE_RFR info.ha = this; info.buf = buf; @@ -6106,11 +6144,11 @@ void ha_tokudb::position(const uchar * record) { int ha_tokudb::info(uint flag) { TOKUDB_HANDLER_DBUG_ENTER("%d", flag); int error = 0; -#if TOKU_CLUSTERING_IS_COVERING +#if defined(TOKU_CLUSTERING_IS_COVERING) && TOKU_CLUSTERING_IS_COVERING for (uint i=0; i < table->s->keys; i++) if (key_is_clustering(&table->key_info[i])) table->covering_keys.set_bit(i); -#endif +#endif // defined(TOKU_CLUSTERING_IS_COVERING) && TOKU_CLUSTERING_IS_COVERING DB_TXN* txn = NULL; if (flag & HA_STATUS_VARIABLE) { stats.records = share->row_count() + share->rows_from_locked_table; @@ -6684,12 +6722,14 @@ static toku_compression_method get_compression_method(DB* file) { return method; } -#if TOKU_INCLUDE_ROW_TYPE_COMPRESSION +#if defined(TOKU_INCLUDE_ROW_TYPE_COMPRESSION) && \ + TOKU_INCLUDE_ROW_TYPE_COMPRESSION enum row_type ha_tokudb::get_row_type() const { toku_compression_method compression_method = get_compression_method(share->file); return toku_compression_method_to_row_type(compression_method); } -#endif +#endif // defined(TOKU_INCLUDE_ROW_TYPE_COMPRESSION) && + // TOKU_INCLUDE_ROW_TYPE_COMPRESSION static int create_sub_table( const char* table_name, @@ -6814,7 +6854,8 @@ void ha_tokudb::update_create_info(HA_CREATE_INFO* create_info) { create_info->auto_increment_value = stats.auto_increment_value; } } -#if TOKU_INCLUDE_ROW_TYPE_COMPRESSION +#if defined(TOKU_INCLUDE_ROW_TYPE_COMPRESSION) && \ + TOKU_INCLUDE_ROW_TYPE_COMPRESSION if (!(create_info->used_fields & HA_CREATE_USED_ROW_FORMAT)) { // show create table asks us to update this create_info, this makes it // so we'll always show what compression type we're using @@ -6824,7 +6865,8 @@ void ha_tokudb::update_create_info(HA_CREATE_INFO* create_info) { create_info->row_type = ROW_TYPE_DEFAULT; } } -#endif +#endif // defined(TOKU_INCLUDE_ROW_TYPE_COMPRESSION) && + // TOKU_INCLUDE_ROW_TYPE_COMPRESSION } // @@ -6887,7 +6929,7 @@ int ha_tokudb::write_key_name_to_status(DB* status_block, char* key_name, DB_TXN // some tracing moved out of ha_tokudb::create, because ::create was // getting cluttered // -void ha_tokudb::trace_create_table_info(const char *name, TABLE * form) { +void ha_tokudb::trace_create_table_info(TABLE* form) { uint i; // // tracing information about what type of table we are creating @@ -7220,7 +7262,7 @@ int ha_tokudb::create( form->s->write_frm_image(); #endif -#if TOKU_INCLUDE_OPTION_STRUCTS +#if defined(TOKU_INCLUDE_OPTION_STRUCTS) && TOKU_INCLUDE_OPTION_STRUCTS const tokudb::sysvars::format_t row_format = (tokudb::sysvars::row_format_t)form->s->option_struct->row_format; #else @@ -7246,7 +7288,7 @@ int ha_tokudb::create( "TokuDB: invalid ROW_FORMAT specifier."); } } -#endif +#endif // defined(TOKU_INCLUDE_OPTION_STRUCTS) && TOKU_INCLUDE_OPTION_STRUCTS const toku_compression_method compression_method = row_format_to_toku_compression_method(row_format); @@ -7301,7 +7343,7 @@ int ha_tokudb::create( } /* do some tracing */ - trace_create_table_info(name,form); + trace_create_table_info(form); /* Create status.tokudb and save relevant metadata */ make_name(newname, newname_len, name, "status"); @@ -7339,7 +7381,8 @@ int ha_tokudb::create( goto cleanup; } -#if WITH_PARTITION_STORAGE_ENGINE +#if defined(TOKU_INCLUDE_WRITE_FRM_DATA) && TOKU_INCLUDE_WRITE_FRM_DATA +#if defined(WITH_PARTITION_STORAGE_ENGINE) && WITH_PARTITION_STORAGE_ENGINE if (TOKU_PARTITION_WRITE_FRM_DATA || form->part_info == NULL) { error = write_frm_data(status_block, txn, form->s->path.str); if (error) { @@ -7351,7 +7394,8 @@ int ha_tokudb::create( if (error) { goto cleanup; } -#endif +#endif // defined(WITH_PARTITION_STORAGE_ENGINE) && WITH_PARTITION_STORAGE_ENGINE +#endif // defined(TOKU_INCLUDE_WRITE_FRM_DATA) && TOKU_INCLUDE_WRITE_FRM_DATA error = allocate_key_and_col_info(form->s, &kc_info); if (error) { @@ -7422,7 +7466,7 @@ cleanup: TOKUDB_HANDLER_DBUG_RETURN(error); } -int ha_tokudb::discard_or_import_tablespace(my_bool discard) { +int ha_tokudb::discard_or_import_tablespace(TOKUDB_UNUSED(my_bool discard)) { /* if (discard) { my_errno=HA_ERR_WRONG_COMMAND; @@ -7621,7 +7665,7 @@ cleanup: // int ha_tokudb::delete_table(const char *name) { TOKUDB_HANDLER_DBUG_ENTER("%s", name); - TOKUDB_SHARE* share = TOKUDB_SHARE::get_share(name, NULL, NULL, false); + TOKUDB_SHARE* share = TOKUDB_SHARE::get_share(name, NULL, false); if (share) { share->unlock(); share->release(); @@ -7683,7 +7727,7 @@ static bool tokudb_check_db_dir_exist_from_table_name(const char *table_name) { // int ha_tokudb::rename_table(const char *from, const char *to) { TOKUDB_HANDLER_DBUG_ENTER("%s %s", from, to); - TOKUDB_SHARE* share = TOKUDB_SHARE::get_share(from, NULL, NULL, false); + TOKUDB_SHARE* share = TOKUDB_SHARE::get_share(from, NULL, false); if (share) { share->unlock(); share->release(); @@ -8541,13 +8585,10 @@ void ha_tokudb::restore_add_index( // Internal function called by ha_tokudb::prepare_drop_index and ha_tokudb::alter_table_phase2 // With a transaction, drops dictionaries associated with indexes in key_num // -int ha_tokudb::drop_indexes( - TABLE* table_arg, - uint* key_num, - uint num_of_keys, - KEY* key_info, - DB_TXN* txn) { - +int ha_tokudb::drop_indexes(uint* key_num, + uint num_of_keys, + KEY* key_info, + DB_TXN* txn) { TOKUDB_HANDLER_DBUG_ENTER(""); assert_always(txn); @@ -8605,11 +8646,7 @@ cleanup: // Restores dropped indexes in case of error in error path of // prepare_drop_index and alter_table_phase2 // -void ha_tokudb::restore_drop_indexes( - TABLE* table_arg, - uint* key_num, - uint num_of_keys) { - +void ha_tokudb::restore_drop_indexes(uint* key_num, uint num_of_keys) { // // reopen closed dictionaries // @@ -8921,6 +8958,7 @@ void ha_tokudb::remove_from_trx_handler_list() { trx->handlers = list_delete(trx->handlers, &trx_handler_list); } +#if defined(TOKU_INCLUDE_RFR) && TOKU_INCLUDE_RFR void ha_tokudb::rpl_before_write_rows() { in_rpl_write_rows = true; } @@ -8951,6 +8989,7 @@ bool ha_tokudb::rpl_lookup_rows() { else return tokudb::sysvars::rpl_lookup_rows(ha_thd()); } +#endif // defined(TOKU_INCLUDE_RFR) && TOKU_INCLUDE_RFR // table admin #include "ha_tokudb_admin.cc" diff --git a/storage/tokudb/ha_tokudb.h b/storage/tokudb/ha_tokudb.h index 9c6af2550cd..1f47308c978 100644 --- a/storage/tokudb/ha_tokudb.h +++ b/storage/tokudb/ha_tokudb.h @@ -79,7 +79,6 @@ public: // doesn't exist, otherwise will return NULL if an existing is not found. static TOKUDB_SHARE* get_share( const char* table_name, - TABLE_SHARE* table_share, THR_LOCK_DATA* data, bool create_new); @@ -274,16 +273,9 @@ public: uint32_t num_DBs; private: - static HASH _open_tables; + static std::unordered_map _open_tables; static tokudb::thread::mutex_t _open_tables_mutex; - static uchar* hash_get_key( - TOKUDB_SHARE* share, - size_t* length, - TOKUDB_UNUSED(my_bool not_used)); - - static void hash_free_element(TOKUDB_SHARE* share); - //********************************* // Spans open-close-open mutable tokudb::thread::mutex_t _mutex; @@ -657,11 +649,11 @@ private: DBT *create_dbt_key_from_table(DBT * key, uint keynr, uchar * buff, const uchar * record, bool* has_null, int key_length = MAX_KEY_LENGTH); DBT* create_dbt_key_for_lookup(DBT * key, KEY* key_info, uchar * buff, const uchar * record, bool* has_null, int key_length = MAX_KEY_LENGTH); DBT *pack_key(DBT * key, uint keynr, uchar * buff, const uchar * key_ptr, uint key_length, int8_t inf_byte); -#if TOKU_INCLUDE_EXTENDED_KEYS +#if defined(TOKU_INCLUDE_EXTENDED_KEYS) && TOKU_INCLUDE_EXTENDED_KEYS DBT *pack_ext_key(DBT * key, uint keynr, uchar * buff, const uchar * key_ptr, uint key_length, int8_t inf_byte); -#endif +#endif // defined(TOKU_INCLUDE_EXTENDED_KEYS) && TOKU_INCLUDE_EXTENDED_KEYS bool key_changed(uint keynr, const uchar * old_row, const uchar * new_row); - int handle_cursor_error(int error, int err_to_return, uint keynr); + int handle_cursor_error(int error, int err_to_return); DBT *get_pos(DBT * to, uchar * pos); int open_main_dictionary(const char* name, bool is_read_only, DB_TXN* txn); @@ -670,9 +662,11 @@ private: int estimate_num_rows(DB* db, uint64_t* num_rows, DB_TXN* txn); bool has_auto_increment_flag(uint* index); +#if defined(TOKU_INCLUDE_WRITE_FRM_DATA) && TOKU_INCLUDE_WRITE_FRM_DATA int write_frm_data(DB* db, DB_TXN* txn, const char* frm_name); int verify_frm_data(const char* frm_name, DB_TXN* trans); int remove_frm_data(DB *db, DB_TXN *txn); +#endif // defined(TOKU_INCLUDE_WRITE_FRM_DATA) && TOKU_INCLUDE_WRITE_FRM_DATA int write_to_status(DB* db, HA_METADATA_KEY curr_key_data, void* data, uint size, DB_TXN* txn); int remove_from_status(DB* db, HA_METADATA_KEY curr_key_data, DB_TXN* txn); @@ -706,12 +700,12 @@ private: toku_compression_method compression_method ); int create_main_dictionary(const char* name, TABLE* form, DB_TXN* txn, KEY_AND_COL_INFO* kc_info, toku_compression_method compression_method); - void trace_create_table_info(const char *name, TABLE * form); + void trace_create_table_info(TABLE* form); int is_index_unique(bool* is_unique, DB_TXN* txn, DB* db, KEY* key_info, int lock_flags); int is_val_unique(bool* is_unique, uchar* record, KEY* key_info, uint dict_index, DB_TXN* txn); int do_uniqueness_checks(uchar* record, DB_TXN* txn, THD* thd); void set_main_dict_put_flags(THD* thd, bool opt_eligible, uint32_t* put_flags); - int insert_row_to_main_dictionary(uchar* record, DBT* pk_key, DBT* pk_val, DB_TXN* txn); + int insert_row_to_main_dictionary(DBT* pk_key, DBT* pk_val, DB_TXN* txn); int insert_rows_to_dictionaries_mult(DBT* pk_key, DBT* pk_val, DB_TXN* txn, THD* thd); void test_row_packing(uchar* record, DBT* pk_key, DBT* pk_val); uint32_t fill_row_mutator( @@ -921,15 +915,15 @@ public: Item* idx_cond_push(uint keyno, class Item* idx_cond); void cancel_pushed_idx_cond(); -#if TOKU_INCLUDE_ALTER_56 +#if defined(TOKU_INCLUDE_ALTER_56) && TOKU_INCLUDE_ALTER_56 public: enum_alter_inplace_result check_if_supported_inplace_alter(TABLE *altered_table, Alter_inplace_info *ha_alter_info); bool prepare_inplace_alter_table(TABLE *altered_table, Alter_inplace_info *ha_alter_info); bool inplace_alter_table(TABLE *altered_table, Alter_inplace_info *ha_alter_info); bool commit_inplace_alter_table(TABLE *altered_table, Alter_inplace_info *ha_alter_info, bool commit); private: - int alter_table_add_index(TABLE *altered_table, Alter_inplace_info *ha_alter_info); - int alter_table_drop_index(TABLE *altered_table, Alter_inplace_info *ha_alter_info); + int alter_table_add_index(Alter_inplace_info* ha_alter_info); + int alter_table_drop_index(Alter_inplace_info* ha_alter_info); int alter_table_add_or_drop_column(TABLE *altered_table, Alter_inplace_info *ha_alter_info); int alter_table_expand_varchar_offsets(TABLE *altered_table, Alter_inplace_info *ha_alter_info); int alter_table_expand_columns(TABLE *altered_table, Alter_inplace_info *ha_alter_info); @@ -937,18 +931,21 @@ public: int alter_table_expand_blobs(TABLE *altered_table, Alter_inplace_info *ha_alter_info); void print_alter_info(TABLE *altered_table, Alter_inplace_info *ha_alter_info); int setup_kc_info(TABLE *altered_table, KEY_AND_COL_INFO *kc_info); - int new_row_descriptor(TABLE *table, TABLE *altered_table, Alter_inplace_info *ha_alter_info, uint32_t idx, DBT *row_descriptor); + int new_row_descriptor(TABLE* altered_table, + Alter_inplace_info* ha_alter_info, + uint32_t idx, + DBT* row_descriptor); public: -#endif -#if TOKU_INCLUDE_ALTER_55 +#endif // defined(TOKU_INCLUDE_ALTER_56) && TOKU_INCLUDE_ALTER_56 +#if defined(TOKU_INCLUDE_ALTER_55) && TOKU_INCLUDE_ALTER_55 public: // Returns true of the 5.6 inplace alter table interface is used. bool try_hot_alter_table(); // Used by the partition storage engine to provide new frm data for the table. int new_alter_table_frm_data(const uchar *frm_data, size_t frm_len); -#endif +#endif // defined(TOKU_INCLUDE_ALTER_55) && TOKU_INCLUDE_ALTER_55 private: int tokudb_add_index(TABLE* table_arg, @@ -962,12 +959,8 @@ public: uint num_of_keys, bool incremented_numDBs, bool modified_DBs); - int drop_indexes(TABLE* table_arg, - uint* key_num, - uint num_of_keys, - KEY* key_info, - DB_TXN* txn); - void restore_drop_indexes(TABLE* table_arg, uint* key_num, uint num_of_keys); + int drop_indexes(uint* key_num, uint num_of_keys, KEY* key_info, DB_TXN* txn); + void restore_drop_indexes(uint* key_num, uint num_of_keys); public: // delete all rows from the table @@ -1018,9 +1011,11 @@ public: uchar* buf, DBT* key_to_compare); -#if TOKU_INCLUDE_ROW_TYPE_COMPRESSION +#if defined(TOKU_INCLUDE_ROW_TYPE_COMPRESSION) && \ + TOKU_INCLUDE_ROW_TYPE_COMPRESSION enum row_type get_row_type() const; -#endif +#endif // defined(TOKU_INCLUDE_ROW_TYPE_COMPRESSION) && + // TOKU_INCLUDE_ROW_TYPE_COMPRESSION private: int read_full_row(uchar * buf); int __close(); @@ -1034,18 +1029,35 @@ private: void close_dsmrr(); void reset_dsmrr(); -#if TOKU_INCLUDE_WRITE_FRM_DATA +#if defined(TOKU_INCLUDE_WRITE_FRM_DATA) && TOKU_INCLUDE_WRITE_FRM_DATA int write_frm_data(const uchar *frm_data, size_t frm_len); -#endif -#if TOKU_INCLUDE_UPSERT +#endif // defined(TOKU_INCLUDE_WRITE_FRM_DATA) && TOKU_INCLUDE_WRITE_FRM_DATA + private: - int fast_update(THD *thd, List &update_fields, List &update_values, Item *conds); - bool check_fast_update(THD *thd, List &update_fields, List &update_values, Item *conds); - int send_update_message(List &update_fields, List &update_values, Item *conds, DB_TXN *txn); - int upsert(THD *thd, List &update_fields, List &update_values); - bool check_upsert(THD *thd, List &update_fields, List &update_values); - int send_upsert_message(THD *thd, List &update_fields, List &update_values, DB_TXN *txn); -#endif +#if defined(TOKU_INCLUDE_UPSERT) && TOKU_INCLUDE_UPSERT + MY_NODISCARD int fast_update(THD *thd, + List &update_fields, + List &update_values, + Item *conds); + MY_NODISCARD bool check_fast_update(THD *thd, + List &update_fields, + List &update_values, + Item *conds); + MY_NODISCARD int send_update_message(List &update_fields, + List &update_values, + Item *conds, + DB_TXN *txn); + MY_NODISCARD int upsert(THD *thd, + List &update_fields, + List &update_values); + MY_NODISCARD bool check_upsert(THD *thd, + List &update_fields, + List &update_values); + MY_NODISCARD int send_upsert_message(List &update_fields, + List &update_values, + DB_TXN *txn); +#endif // defined(TOKU_INCLUDE_UPSERT) && TOKU_INCLUDE_UPSERT + public: // mysql sometimes retires a txn before a cursor that references the txn is closed. // for example, commit is sometimes called before index_end. the following methods @@ -1060,6 +1072,7 @@ private: int do_optimize(THD *thd); int map_to_handler_error(int error); +#if defined(TOKU_INCLUDE_RFR) && TOKU_INCLUDE_RFR public: void rpl_before_write_rows(); void rpl_after_write_rows(); @@ -1072,9 +1085,10 @@ private: bool in_rpl_write_rows; bool in_rpl_delete_rows; bool in_rpl_update_rows; +#endif // defined(TOKU_INCLUDE_RFR) && TOKU_INCLUDE_RFR }; -#if TOKU_INCLUDE_OPTION_STRUCTS +#if defined(TOKU_INCLUDE_OPTION_STRUCTS) && TOKU_INCLUDE_OPTION_STRUCTS struct ha_table_option_struct { uint row_format; }; @@ -1092,7 +1106,7 @@ static inline bool key_is_clustering(const KEY *key) { static inline bool key_is_clustering(const KEY *key) { return key->flags & HA_CLUSTERING; } -#endif +#endif // defined(TOKU_INCLUDE_OPTION_STRUCTS) && TOKU_INCLUDE_OPTION_STRUCTS #endif // _HA_TOKUDB_H diff --git a/storage/tokudb/ha_tokudb_admin.cc b/storage/tokudb/ha_tokudb_admin.cc index 6d8e7173c8d..c400e5bd22c 100644 --- a/storage/tokudb/ha_tokudb_admin.cc +++ b/storage/tokudb/ha_tokudb_admin.cc @@ -760,7 +760,7 @@ done: } // namespace tokudb -int ha_tokudb::analyze(THD *thd, HA_CHECK_OPT *check_opt) { +int ha_tokudb::analyze(THD *thd, TOKUDB_UNUSED(HA_CHECK_OPT *check_opt)) { TOKUDB_HANDLER_DBUG_ENTER("%s", share->table_name()); int result = HA_ADMIN_OK; tokudb::sysvars::analyze_mode_t mode = tokudb::sysvars::analyze_mode(thd); @@ -985,7 +985,8 @@ cleanup: TOKUDB_HANDLER_DBUG_RETURN(error); } -int ha_tokudb::optimize(THD* thd, HA_CHECK_OPT* check_opt) { +int ha_tokudb::optimize(TOKUDB_UNUSED(THD* thd), + TOKUDB_UNUSED(HA_CHECK_OPT* check_opt)) { TOKUDB_HANDLER_DBUG_ENTER("%s", share->table_name()); int error; #if TOKU_OPTIMIZE_WITH_RECREATE @@ -1000,7 +1001,8 @@ struct check_context { THD* thd; }; -static int ha_tokudb_check_progress(void* extra, float progress) { +static int ha_tokudb_check_progress(void* extra, + TOKUDB_UNUSED(float progress)) { struct check_context* context = (struct check_context*)extra; int result = 0; if (thd_killed(context->thd)) diff --git a/storage/tokudb/ha_tokudb_alter_55.cc b/storage/tokudb/ha_tokudb_alter_55.cc index 3e6a38c97de..6ceec208768 100644 --- a/storage/tokudb/ha_tokudb_alter_55.cc +++ b/storage/tokudb/ha_tokudb_alter_55.cc @@ -35,7 +35,11 @@ bool ha_tokudb::try_hot_alter_table() { } int ha_tokudb::new_alter_table_frm_data(const uchar *frm_data, size_t frm_len) { +#if defined(TOKU_INCLUDE_WRITE_FRM_DATA) && TOKU_INCLUDE_WRITE_FRM_DATA return write_frm_data(frm_data, frm_len); +#else + return 0; +#endif // defined(TOKU_INCLUDE_WRITE_FRM_DATA) && TOKU_INCLUDE_WRITE_FRM_DATA } #endif diff --git a/storage/tokudb/ha_tokudb_alter_56.cc b/storage/tokudb/ha_tokudb_alter_56.cc index e005d678953..293086b897e 100644 --- a/storage/tokudb/ha_tokudb_alter_56.cc +++ b/storage/tokudb/ha_tokudb_alter_56.cc @@ -163,17 +163,13 @@ static int find_changed_fields( return changed_fields.elements(); } -static bool change_length_is_supported( - TABLE* table, - TABLE* altered_table, - Alter_inplace_info* ha_alter_info, - tokudb_alter_ctx* ctx); +static bool change_length_is_supported(TABLE* table, + TABLE* altered_table, + tokudb_alter_ctx* ctx); -static bool change_type_is_supported( - TABLE* table, - TABLE* altered_table, - Alter_inplace_info* ha_alter_info, - tokudb_alter_ctx* ctx); +static bool change_type_is_supported(TABLE* table, + TABLE* altered_table, + tokudb_alter_ctx* ctx); // The ha_alter_info->handler_flags can not be trusted. // This function maps the bogus handler flags to something we like. @@ -248,6 +244,40 @@ static bool only_flags(ulong bits, ulong mask) { return (bits & mask) != 0 && (bits & ~mask) == 0; } +// Table create options that should be ignored by TokuDB +// There are 25 total create options defined by mysql server (see handler.h), +// and only 4 options will touch engine data, either rebuild engine data or +// just update meta info: +// 1. HA_CREATE_USED_AUTO update auto_inc info +// 2. HA_CREATE_USED_CHARSET rebuild table if contains character columns +// 3. HA_CREATE_USED_ENGINE rebuild table +// 4. HA_CREATE_USED_ROW_FORMAT update compression method info +// +// All the others are either not supported by TokuDB or no need to +// touch engine data. +static constexpr uint32_t TOKUDB_IGNORED_ALTER_CREATE_OPTION_FIELDS = + HA_CREATE_USED_RAID | // deprecated field + HA_CREATE_USED_UNION | // for MERGE table + HA_CREATE_USED_INSERT_METHOD | // for MERGE table + HA_CREATE_USED_MIN_ROWS | // for MEMORY table + HA_CREATE_USED_MAX_ROWS | // for NDB table + HA_CREATE_USED_AVG_ROW_LENGTH | // for MyISAM table + HA_CREATE_USED_PACK_KEYS | // for MyISAM table + HA_CREATE_USED_DEFAULT_CHARSET | // no need to rebuild + HA_CREATE_USED_DATADIR | // ignored by alter + HA_CREATE_USED_INDEXDIR | // ignored by alter + HA_CREATE_USED_CHECKSUM | // for MyISAM table + HA_CREATE_USED_DELAY_KEY_WRITE | // for MyISAM table + HA_CREATE_USED_COMMENT | // no need to rebuild + HA_CREATE_USED_PASSWORD | // not supported by community version + HA_CREATE_USED_CONNECTION | // for FEDERATED table + HA_CREATE_USED_KEY_BLOCK_SIZE | // not supported by TokuDB + HA_CREATE_USED_TRANSACTIONAL | // unused + HA_CREATE_USED_PAGE_CHECKSUM | // unsued + HA_CREATE_USED_STATS_PERSISTENT | // not supported by TokuDB + HA_CREATE_USED_STATS_AUTO_RECALC | // not supported by TokuDB + HA_CREATE_USED_STATS_SAMPLE_PAGES; // not supported by TokuDB + // Check if an alter table operation on this table and described by the alter // table parameters is supported inplace and if so, what type of locking is // needed to execute it. return values: @@ -446,10 +476,7 @@ enum_alter_inplace_result ha_tokudb::check_if_supported_inplace_alter( setup_kc_info(altered_table, ctx->altered_table_kc_info) == 0) { // change column length - if (change_length_is_supported( - table, - altered_table, - ha_alter_info, ctx)) { + if (change_length_is_supported(table, altered_table, ctx)) { result = HA_ALTER_INPLACE_EXCLUSIVE_LOCK; } } else if ((ctx->handler_flags & Alter_inplace_info::ALTER_COLUMN_TYPE) && @@ -465,10 +492,7 @@ enum_alter_inplace_result ha_tokudb::check_if_supported_inplace_alter( setup_kc_info(altered_table, ctx->altered_table_kc_info) == 0) { // change column type - if (change_type_is_supported( - table, - altered_table, - ha_alter_info, ctx)) { + if (change_type_is_supported(table, altered_table, ctx)) { result = HA_ALTER_INPLACE_EXCLUSIVE_LOCK; } } else if (only_flags( @@ -503,6 +527,10 @@ enum_alter_inplace_result ha_tokudb::check_if_supported_inplace_alter( tokudb::sysvars::alter_print_error(thd) != 0)) { result = HA_ALTER_INPLACE_EXCLUSIVE_LOCK; } + } else if (only_flags( + create_info->used_fields, + TOKUDB_IGNORED_ALTER_CREATE_OPTION_FIELDS)) { + result = HA_ALTER_INPLACE_NO_LOCK_AFTER_PREPARE; } } #if TOKU_OPTIMIZE_WITH_RECREATE @@ -538,10 +566,8 @@ enum_alter_inplace_result ha_tokudb::check_if_supported_inplace_alter( } // Prepare for the alter operations -bool ha_tokudb::prepare_inplace_alter_table( - TABLE* altered_table, - Alter_inplace_info* ha_alter_info) { - +bool ha_tokudb::prepare_inplace_alter_table(TOKUDB_UNUSED(TABLE* altered_table), + Alter_inplace_info* ha_alter_info) { TOKUDB_HANDLER_DBUG_ENTER(""); tokudb_alter_ctx* ctx = static_cast(ha_alter_info->handler_ctx); @@ -571,13 +597,13 @@ bool ha_tokudb::inplace_alter_table( (ctx->handler_flags & (Alter_inplace_info::DROP_INDEX + Alter_inplace_info::DROP_UNIQUE_INDEX))) { - error = alter_table_drop_index(altered_table, ha_alter_info); + error = alter_table_drop_index(ha_alter_info); } if (error == 0 && (ctx->handler_flags & (Alter_inplace_info::ADD_INDEX + Alter_inplace_info::ADD_UNIQUE_INDEX))) { - error = alter_table_add_index(altered_table, ha_alter_info); + error = alter_table_add_index(ha_alter_info); } if (error == 0 && (ctx->handler_flags & @@ -644,20 +670,24 @@ bool ha_tokudb::inplace_alter_table( error = do_optimize(ha_thd()); } + +#if defined(TOKU_INCLUDE_WRITE_FRM_DATA) && TOKU_INCLUDE_WRITE_FRM_DATA #if (50600 <= MYSQL_VERSION_ID && MYSQL_VERSION_ID <= 50699) || \ (50700 <= MYSQL_VERSION_ID && MYSQL_VERSION_ID <= 50799) -#if WITH_PARTITION_STORAGE_ENGINE +#if defined(WITH_PARTITION_STORAGE_ENGINE) && WITH_PARTITION_STORAGE_ENGINE if (error == 0 && (TOKU_PARTITION_WRITE_FRM_DATA || altered_table->part_info == NULL)) { #else if (error == 0) { -#endif +#endif // defined(WITH_PARTITION_STORAGE_ENGINE) && WITH_PARTITION_STORAGE_ENGINE error = write_frm_data( share->status_block, ctx->alter_txn, altered_table->s->path.str); } -#endif +#endif // (50600 <= MYSQL_VERSION_ID && MYSQL_VERSION_ID <= 50699) || + // (50700 <= MYSQL_VERSION_ID && MYSQL_VERSION_ID <= 50799) +#endif // defined(TOKU_INCLUDE_WRITE_FRM_DATA) && TOKU_INCLUDE_WRITE_FRM_DATA bool result = false; // success if (error) { @@ -668,9 +698,7 @@ bool ha_tokudb::inplace_alter_table( DBUG_RETURN(result); } -int ha_tokudb::alter_table_add_index( - TABLE* altered_table, - Alter_inplace_info* ha_alter_info) { +int ha_tokudb::alter_table_add_index(Alter_inplace_info* ha_alter_info) { // sort keys in add index order KEY* key_info = (KEY*)tokudb::memory::malloc( @@ -741,9 +769,7 @@ static bool find_index_of_key( return false; } -int ha_tokudb::alter_table_drop_index( - TABLE* altered_table, - Alter_inplace_info* ha_alter_info) { +int ha_tokudb::alter_table_drop_index(Alter_inplace_info* ha_alter_info) { KEY *key_info = table->key_info; // translate key names to indexes into the key_info array @@ -771,12 +797,10 @@ int ha_tokudb::alter_table_drop_index( static_cast(ha_alter_info->handler_ctx); ctx->drop_index_changed = true; - int error = drop_indexes( - table, - index_drop_offsets, - ha_alter_info->index_drop_count, - key_info, - ctx->alter_txn); + int error = drop_indexes(index_drop_offsets, + ha_alter_info->index_drop_count, + key_info, + ctx->alter_txn); if (error == 0) ctx->reset_card = true; @@ -837,11 +861,7 @@ int ha_tokudb::alter_table_add_or_drop_column( // change to a new descriptor DBT row_descriptor; memset(&row_descriptor, 0, sizeof row_descriptor); error = new_row_descriptor( - table, - altered_table, - ha_alter_info, - i, - &row_descriptor); + altered_table, ha_alter_info, i, &row_descriptor); if (error) goto cleanup; error = share->key_file[i]->change_descriptor( @@ -891,11 +911,9 @@ int ha_tokudb::alter_table_add_or_drop_column( // transaction. // If abort then abort the alter transaction and try to rollback the // non-transactional changes. -bool ha_tokudb::commit_inplace_alter_table( - TABLE* altered_table, - Alter_inplace_info* ha_alter_info, - bool commit) { - +bool ha_tokudb::commit_inplace_alter_table(TOKUDB_UNUSED(TABLE* altered_table), + Alter_inplace_info* ha_alter_info, + bool commit) { TOKUDB_HANDLER_DBUG_ENTER(""); tokudb_alter_ctx* ctx = @@ -911,13 +929,14 @@ bool ha_tokudb::commit_inplace_alter_table( ha_alter_info->group_commit_ctx = NULL; } #endif +#if defined(TOKU_INCLUDE_WRITE_FRM_DATA) && TOKU_INCLUDE_WRITE_FRM_DATA #if (50500 <= MYSQL_VERSION_ID && MYSQL_VERSION_ID <= 50599) || \ (100000 <= MYSQL_VERSION_ID && MYSQL_VERSION_ID <= 100099) -#if WITH_PARTITION_STORAGE_ENGINE +#if defined(WITH_PARTITION_STORAGE_ENGINE) && WITH_PARTITION_STORAGE_ENGINE if (TOKU_PARTITION_WRITE_FRM_DATA || altered_table->part_info == NULL) { #else if (true) { -#endif +#endif // defined(WITH_PARTITION_STORAGE_ENGINE) && WITH_PARTITION_STORAGE_ENGINE int error = write_frm_data( share->status_block, ctx->alter_txn, @@ -928,7 +947,9 @@ bool ha_tokudb::commit_inplace_alter_table( print_error(error, MYF(0)); } } -#endif +#endif // (50500 <= MYSQL_VERSION_ID && MYSQL_VERSION_ID <= 50599) || + // (100000 <= MYSQL_VERSION_ID && MYSQL_VERSION_ID <= 100099) +#endif // defined(TOKU_INCLUDE_WRITE_FRM_DATA) && TOKU_INCLUDE_WRITE_FRM_DATA } if (!commit) { @@ -1010,10 +1031,8 @@ bool ha_tokudb::commit_inplace_alter_table( &index_drop_offsets[i]); assert_always(found); } - restore_drop_indexes( - table, - index_drop_offsets, - ha_alter_info->index_drop_count); + restore_drop_indexes(index_drop_offsets, + ha_alter_info->index_drop_count); } if (ctx->compression_changed) { uint32_t curr_num_DBs = @@ -1060,11 +1079,7 @@ int ha_tokudb::alter_table_expand_varchar_offsets( // change to a new descriptor DBT row_descriptor; memset(&row_descriptor, 0, sizeof row_descriptor); error = new_row_descriptor( - table, - altered_table, - ha_alter_info, - i, - &row_descriptor); + altered_table, ha_alter_info, i, &row_descriptor); if (error) break; error = share->key_file[i]->change_descriptor( @@ -1142,14 +1157,9 @@ static bool field_in_key_of_table(TABLE *table, Field *field) { // Return true if all changed varchar/varbinary field lengths can be changed // inplace, otherwise return false -static bool change_varchar_length_is_supported( - Field* old_field, - Field* new_field, - TABLE* table, - TABLE* altered_table, - Alter_inplace_info* ha_alter_info, - tokudb_alter_ctx* ctx) { - +static bool change_varchar_length_is_supported(Field* old_field, + Field* new_field, + tokudb_alter_ctx* ctx) { if (old_field->real_type() != MYSQL_TYPE_VARCHAR || new_field->real_type() != MYSQL_TYPE_VARCHAR || old_field->binary() != new_field->binary() || @@ -1168,12 +1178,9 @@ static bool change_varchar_length_is_supported( // Return true if all changed field lengths can be changed inplace, otherwise // return false -static bool change_length_is_supported( - TABLE* table, - TABLE* altered_table, - Alter_inplace_info* ha_alter_info, - tokudb_alter_ctx* ctx) { - +static bool change_length_is_supported(TABLE* table, + TABLE* altered_table, + tokudb_alter_ctx* ctx) { if (table->s->fields != altered_table->s->fields) return false; if (table->s->null_bytes != altered_table->s->null_bytes) @@ -1193,13 +1200,7 @@ static bool change_length_is_supported( if (field_in_key_of_table(table, old_field) || field_in_key_of_table(altered_table, new_field)) return false; // not in any key - if (!change_varchar_length_is_supported( - old_field, - new_field, - table, - altered_table, - ha_alter_info, - ctx)) + if (!change_varchar_length_is_supported(old_field, new_field, ctx)) return false; } @@ -1307,11 +1308,7 @@ int ha_tokudb::alter_table_expand_one_column( // change to a new descriptor DBT row_descriptor; memset(&row_descriptor, 0, sizeof row_descriptor); error = new_row_descriptor( - table, - altered_table, - ha_alter_info, - i, - &row_descriptor); + altered_table, ha_alter_info, i, &row_descriptor); if (error) break; error = share->key_file[i]->change_descriptor( @@ -1426,11 +1423,7 @@ int ha_tokudb::alter_table_expand_blobs( // change to a new descriptor DBT row_descriptor; memset(&row_descriptor, 0, sizeof row_descriptor); error = new_row_descriptor( - table, - altered_table, - ha_alter_info, - i, - &row_descriptor); + altered_table, ha_alter_info, i, &row_descriptor); if (error) break; error = share->key_file[i]->change_descriptor( @@ -1486,13 +1479,9 @@ int ha_tokudb::alter_table_expand_blobs( } // Return true if two fixed length fields can be changed inplace -static bool change_fixed_length_is_supported( - TABLE* table, - TABLE* altered_table, - Field* old_field, - Field* new_field, - tokudb_alter_ctx* ctx) { - +static bool change_fixed_length_is_supported(Field* old_field, + Field* new_field, + tokudb_alter_ctx* ctx) { // no change in size is supported if (old_field->pack_length() == new_field->pack_length()) return true; @@ -1503,13 +1492,9 @@ static bool change_fixed_length_is_supported( return true; } -static bool change_blob_length_is_supported( - TABLE* table, - TABLE* altered_table, - Field* old_field, - Field* new_field, - tokudb_alter_ctx* ctx) { - +static bool change_blob_length_is_supported(Field* old_field, + Field* new_field, + tokudb_alter_ctx* ctx) { // blob -> longer or equal length blob if (old_field->binary() && new_field->binary() && old_field->pack_length() <= new_field->pack_length()) { @@ -1541,26 +1526,16 @@ static bool is_int_type(enum_field_types t) { } // Return true if two field types can be changed inplace -static bool change_field_type_is_supported( - Field* old_field, - Field* new_field, - TABLE* table, - TABLE* altered_table, - Alter_inplace_info* ha_alter_info, - tokudb_alter_ctx* ctx) { - +static bool change_field_type_is_supported(Field* old_field, + Field* new_field, + tokudb_alter_ctx* ctx) { enum_field_types old_type = old_field->real_type(); enum_field_types new_type = new_field->real_type(); if (is_int_type(old_type)) { // int and unsigned int expansion if (is_int_type(new_type) && is_unsigned(old_field) == is_unsigned(new_field)) - return change_fixed_length_is_supported( - table, - altered_table, - old_field, - new_field, - ctx); + return change_fixed_length_is_supported(old_field, new_field, ctx); else return false; } else if (old_type == MYSQL_TYPE_STRING) { @@ -1568,43 +1543,24 @@ static bool change_field_type_is_supported( if (new_type == MYSQL_TYPE_STRING && old_field->binary() == new_field->binary() && old_field->charset()->number == new_field->charset()->number) - return change_fixed_length_is_supported( - table, - altered_table, - old_field, - new_field, - ctx); + return change_fixed_length_is_supported(old_field, new_field, ctx); else return false; } else if (old_type == MYSQL_TYPE_VARCHAR) { // varchar(X) -> varchar(Y) and varbinary(X) -> varbinary(Y) expansion // where X < 256 <= Y the ALTER_COLUMN_TYPE handler flag is set for // these cases - return change_varchar_length_is_supported( - old_field, - new_field, - table, - altered_table, - ha_alter_info, - ctx); + return change_varchar_length_is_supported(old_field, new_field, ctx); } else if (old_type == MYSQL_TYPE_BLOB && new_type == MYSQL_TYPE_BLOB) { - return change_blob_length_is_supported( - table, - altered_table, - old_field, - new_field, - ctx); + return change_blob_length_is_supported(old_field, new_field, ctx); } else return false; } // Return true if all changed field types can be changed inplace -static bool change_type_is_supported( - TABLE* table, - TABLE* altered_table, - Alter_inplace_info* ha_alter_info, - tokudb_alter_ctx* ctx) { - +static bool change_type_is_supported(TABLE* table, + TABLE* altered_table, + tokudb_alter_ctx* ctx) { if (table->s->null_bytes != altered_table->s->null_bytes) return false; if (table->s->fields != altered_table->s->fields) @@ -1620,13 +1576,7 @@ static bool change_type_is_supported( if (field_in_key_of_table(table, old_field) || field_in_key_of_table(altered_table, new_field)) return false; - if (!change_field_type_is_supported( - old_field, - new_field, - table, - altered_table, - ha_alter_info, - ctx)) + if (!change_field_type_is_supported(old_field, new_field, ctx)) return false; } return true; @@ -1636,13 +1586,10 @@ static bool change_type_is_supported( // table identified with idx. // Return the new descriptor in the row_descriptor DBT. // Return non-zero on error. -int ha_tokudb::new_row_descriptor( - TABLE* table, - TABLE* altered_table, - Alter_inplace_info* ha_alter_info, - uint32_t idx, - DBT* row_descriptor) { - +int ha_tokudb::new_row_descriptor(TABLE* altered_table, + Alter_inplace_info* ha_alter_info, + uint32_t idx, + DBT* row_descriptor) { int error = 0; tokudb_alter_ctx* ctx = static_cast(ha_alter_info->handler_ctx); diff --git a/storage/tokudb/ha_tokudb_alter_common.cc b/storage/tokudb/ha_tokudb_alter_common.cc index d41a676de1f..1de4c401750 100644 --- a/storage/tokudb/ha_tokudb_alter_common.cc +++ b/storage/tokudb/ha_tokudb_alter_common.cc @@ -764,13 +764,14 @@ exit: return retval; } -#if TOKU_INCLUDE_WRITE_FRM_DATA +#if defined(TOKU_INCLUDE_WRITE_FRM_DATA) && TOKU_INCLUDE_WRITE_FRM_DATA // write the new frm data to the status dictionary using the alter table // transaction int ha_tokudb::write_frm_data(const uchar* frm_data, size_t frm_len) { TOKUDB_DBUG_ENTER("write_frm_data"); int error = 0; +#if defined(WITH_PARTITION_STORAGE_ENGINE) && WITH_PARTITION_STORAGE_ENGINE if (TOKU_PARTITION_WRITE_FRM_DATA || table->part_info == NULL) { // write frmdata to status THD* thd = ha_thd(); @@ -787,9 +788,10 @@ int ha_tokudb::write_frm_data(const uchar* frm_data, size_t frm_len) { (uint)frm_len, txn); } +#endif // defined(WITH_PARTITION_STORAGE_ENGINE) && WITH_PARTITION_STORAGE_ENGINE TOKUDB_DBUG_RETURN(error); } -#endif +#endif // defined(TOKU_INCLUDE_WRITE_FRM_DATA) && TOKU_INCLUDE_WRITE_FRM_DATA #endif diff --git a/storage/tokudb/ha_tokudb_update.cc b/storage/tokudb/ha_tokudb_update.cc index 9fe5e729ec4..5b09279afc5 100644 --- a/storage/tokudb/ha_tokudb_update.cc +++ b/storage/tokudb/ha_tokudb_update.cc @@ -23,8 +23,6 @@ Copyright (c) 2006, 2015, Percona and/or its affiliates. All rights reserved. #ident "Copyright (c) 2006, 2015, Percona and/or its affiliates. All rights reserved." -#if TOKU_INCLUDE_UPSERT - // Point updates and upserts // Restrictions: @@ -130,7 +128,7 @@ static void dump_item_list(const char* h, List &l) { } // Find a Field by its Item name -static Field* find_field_by_name(TABLE* table, Item* item) { +static Field* find_field_by_name(TOKUDB_UNUSED(TABLE* table), Item* item) { if (item->type() != Item::FIELD_ITEM) return NULL; Item_field* field_item = static_cast(item); @@ -191,12 +189,9 @@ static uint32_t var_field_index( return v_index; } -static uint32_t blob_field_index( - TABLE* table, - KEY_AND_COL_INFO* kc_info, - uint idx, - uint field_num) { - +static uint32_t blob_field_index(TABLE* table, + KEY_AND_COL_INFO* kc_info, + uint field_num) { assert_always(field_num < table->s->fields); uint b_index; for (b_index = 0; b_index < kc_info->num_blobs; b_index++) { @@ -221,43 +216,46 @@ int ha_tokudb::fast_update( TOKUDB_HANDLER_DBUG_ENTER(""); int error = 0; + if (!tokudb::sysvars::enable_fast_update(thd)) { + error = ENOTSUP; + goto exit; + } + if (TOKUDB_UNLIKELY(TOKUDB_DEBUG_FLAGS(TOKUDB_DEBUG_UPSERT))) { dump_item_list("fields", update_fields); dump_item_list("values", update_values); if (conds) { - fprintf(stderr, "conds\n"); dump_item(conds); fprintf(stderr, "\n"); + fprintf(stderr, "conds\n"); + dump_item(conds); + fprintf(stderr, "\n"); } } if (update_fields.elements < 1 || update_fields.elements != update_values.elements) { error = ENOTSUP; // something is fishy with the parameters - goto return_error; + goto exit; } - + if (!check_fast_update(thd, update_fields, update_values, conds)) { - error = ENOTSUP; - goto check_error; + error = HA_ERR_UNSUPPORTED; + goto exit; } error = send_update_message( - update_fields, - update_values, - conds, - transaction); - if (error != 0) { - goto check_error; - } + update_fields, update_values, conds, transaction); -check_error: - if (error != 0) { - if (tokudb::sysvars::disable_slow_update(thd) != 0) + if (error) { + int mapped_error = map_to_handler_error(error); + if (mapped_error == error) error = HA_ERR_UNSUPPORTED; - if (error != ENOTSUP) - print_error(error, MYF(0)); } -return_error: +exit: + + if (error != 0 && error != ENOTSUP) + print_error(error, MYF(0)); + TOKUDB_HANDLER_DBUG_RETURN(error); } @@ -773,11 +771,7 @@ static void marshall_update( update_operation = '='; field_type = lhs_field->binary() ? UPDATE_TYPE_BLOB : UPDATE_TYPE_TEXT; offset = - blob_field_index( - table, - &share->kc_info, - table->s->primary_key, - lhs_field->field_index); + blob_field_index(table, &share->kc_info, lhs_field->field_index); v_str = *rhs_item->val_str(&v_str); v_length = v_str.length(); if (v_length >= lhs_field->max_data_length()) { @@ -953,9 +947,13 @@ int ha_tokudb::upsert( List& update_values) { TOKUDB_HANDLER_DBUG_ENTER(""); - int error = 0; + if (!tokudb::sysvars::enable_fast_upsert(thd)) { + error = ENOTSUP; + goto exit; + } + if (TOKUDB_UNLIKELY(TOKUDB_DEBUG_FLAGS(TOKUDB_DEBUG_UPSERT))) { fprintf(stderr, "upsert\n"); dump_item_list("update_fields", update_fields); @@ -966,28 +964,27 @@ int ha_tokudb::upsert( if (update_fields.elements < 1 || update_fields.elements != update_values.elements) { error = ENOTSUP; - goto return_error; + goto exit; } if (!check_upsert(thd, update_fields, update_values)) { - error = ENOTSUP; - goto check_error; - } - - error = send_upsert_message(thd, update_fields, update_values, transaction); - if (error != 0) { - goto check_error; + error = HA_ERR_UNSUPPORTED; + goto exit; } -check_error: - if (error != 0) { - if (tokudb::sysvars::disable_slow_upsert(thd) != 0) + error = send_upsert_message(update_fields, update_values, transaction); + + if (error) { + int mapped_error = map_to_handler_error(error); + if (mapped_error == error) error = HA_ERR_UNSUPPORTED; - if (error != ENOTSUP) - print_error(error, MYF(0)); } -return_error: +exit: + + if (error != 0 && error != ENOTSUP) + print_error(error, MYF(0)); + TOKUDB_HANDLER_DBUG_RETURN(error); } @@ -1036,7 +1033,6 @@ bool ha_tokudb::check_upsert( // Generate an upsert message and send it into the primary tree. // Return 0 if successful. int ha_tokudb::send_upsert_message( - THD* thd, List& update_fields, List& update_values, DB_TXN* txn) { @@ -1131,5 +1127,3 @@ int ha_tokudb::send_upsert_message( return error; } - -#endif diff --git a/storage/tokudb/hatoku_cmp.cc b/storage/tokudb/hatoku_cmp.cc index 0c4b5be7eb7..f064a125649 100644 --- a/storage/tokudb/hatoku_cmp.cc +++ b/storage/tokudb/hatoku_cmp.cc @@ -1865,15 +1865,10 @@ static uint32_t pack_desc_pk_info(uchar* buf, KEY_AND_COL_INFO* kc_info, TABLE_S return pos - buf; } -static uint32_t pack_desc_pk_offset_info( - uchar* buf, - KEY_AND_COL_INFO* kc_info, - TABLE_SHARE* table_share, - KEY_PART_INFO* key_part, - KEY* prim_key, - uchar* pk_info - ) -{ +static uint32_t pack_desc_pk_offset_info(uchar* buf, + KEY_PART_INFO* key_part, + KEY* prim_key, + uchar* pk_info) { uchar* pos = buf; uint16 field_index = key_part->field->field_index; bool found_col_in_pk = false; @@ -1999,7 +1994,9 @@ static uint32_t pack_desc_key_length_info(uchar* buf, KEY_AND_COL_INFO* kc_info, return pos - buf; } -static uint32_t pack_desc_char_info(uchar* buf, KEY_AND_COL_INFO* kc_info, TABLE_SHARE* table_share, KEY_PART_INFO* key_part) { +static uint32_t pack_desc_char_info(uchar* buf, + TABLE_SHARE* table_share, + KEY_PART_INFO* key_part) { uchar* pos = buf; uint16 field_index = key_part->field->field_index; Field* field = table_share->field[field_index]; @@ -2561,14 +2558,7 @@ static uint32_t create_toku_secondary_key_pack_descriptor ( pos += sizeof(uint32_t); } if (is_col_in_pk) { - pos += pack_desc_pk_offset_info( - pos, - kc_info, - table_share, - &curr_kpi, - prim_key, - pk_info - ); + pos += pack_desc_pk_offset_info(pos, &curr_kpi, prim_key, pk_info); } else { pos += pack_desc_offset_info( @@ -2585,12 +2575,7 @@ static uint32_t create_toku_secondary_key_pack_descriptor ( table_share, &curr_kpi ); - pos += pack_desc_char_info( - pos, - kc_info, - table_share, - &curr_kpi - ); + pos += pack_desc_char_info(pos, table_share, &curr_kpi); } offset = pos - buf; diff --git a/storage/tokudb/hatoku_cmp.h b/storage/tokudb/hatoku_cmp.h index 34b3cfbe1f8..b9261a608de 100644 --- a/storage/tokudb/hatoku_cmp.h +++ b/storage/tokudb/hatoku_cmp.h @@ -354,11 +354,7 @@ static uint32_t create_toku_clustering_val_pack_descriptor ( bool is_clustering ); -static inline bool is_key_clustering( - void* row_desc, - uint32_t row_desc_size - ) -{ +static inline bool is_key_clustering(uint32_t row_desc_size) { return (row_desc_size > 0); } @@ -384,12 +380,8 @@ static uint32_t create_toku_secondary_key_pack_descriptor ( KEY* prim_key ); -static inline bool is_key_pk( - void* row_desc, - uint32_t row_desc_size - ) -{ - uchar* buf = (uchar *)row_desc; +static inline bool is_key_pk(void* row_desc) { + uchar* buf = (uchar*)row_desc; return buf[0]; } diff --git a/storage/tokudb/hatoku_defines.h b/storage/tokudb/hatoku_defines.h index 05a06ac8142..e2fbe85b3b1 100644 --- a/storage/tokudb/hatoku_defines.h +++ b/storage/tokudb/hatoku_defines.h @@ -35,7 +35,7 @@ Copyright (c) 2006, 2015, Percona and/or its affiliates. All rights reserved. #include "log.h" #include "sql_class.h" #include "sql_show.h" -#include "discover.h" +#include "item_cmpfunc.h" #include #include "debug_sync.h" @@ -54,12 +54,17 @@ Copyright (c) 2006, 2015, Percona and/or its affiliates. All rights reserved. #include #include +#if !defined(__STDC_FORMAT_MACROS) #define __STDC_FORMAT_MACROS +#endif // !defined(__STDC_FORMAT_MACROS) #include #if defined(_WIN32) #include "misc.h" #endif +#include +#include + #include "db.h" #include "toku_os.h" #include "toku_time.h" @@ -69,14 +74,28 @@ Copyright (c) 2006, 2015, Percona and/or its affiliates. All rights reserved. #pragma interface /* gcc class implementation */ #endif +// TOKU_INCLUDE_WRITE_FRM_DATA, TOKU_PARTITION_WRITE_FRM_DATA, and +// TOKU_INCLUDE_DISCOVER_FRM all work together as two opposing sides +// of the same functionality. The 'WRITE' includes functionality to +// write a copy of every tables .frm data into the tables status dictionary on +// CREATE or ALTER. When WRITE is in, the .frm data is also verified whenever a +// table is opened. +// +// The 'DISCOVER' then implements the MySQL table discovery API which reads +// this same data and returns it back to MySQL. +// In most cases, they should all be in or out without mixing. There may be +// extreme cases though where one side (WRITE) is supported but perhaps +// 'DISCOVERY' may not be, thus the need for individual indicators. + #if 100000 <= MYSQL_VERSION_ID && MYSQL_VERSION_ID <= 100099 // mariadb 10.0 #define TOKU_USE_DB_TYPE_TOKUDB 1 #define TOKU_INCLUDE_ALTER_56 1 #define TOKU_INCLUDE_ROW_TYPE_COMPRESSION 0 #define TOKU_INCLUDE_XA 1 -#define TOKU_INCLUDE_WRITE_FRM_DATA 0 +#define TOKU_INCLUDE_WRITE_FRM_DATA 1 #define TOKU_PARTITION_WRITE_FRM_DATA 0 +#define TOKU_INCLUDE_DISCOVER_FRM 1 #if defined(MARIADB_BASE_VERSION) #define TOKU_INCLUDE_EXTENDED_KEYS 1 #endif @@ -90,7 +109,10 @@ Copyright (c) 2006, 2015, Percona and/or its affiliates. All rights reserved. #define TOKU_USE_DB_TYPE_UNKNOWN 1 #define TOKU_INCLUDE_ALTER_56 1 #define TOKU_INCLUDE_ROW_TYPE_COMPRESSION 0 +#define TOKU_INCLUDE_WRITE_FRM_DATA 1 #define TOKU_PARTITION_WRITE_FRM_DATA 0 +#define TOKU_INCLUDE_DISCOVER_FRM 1 +#define TOKU_INCLUDE_RFR 1 #else #error #endif @@ -102,21 +124,25 @@ Copyright (c) 2006, 2015, Percona and/or its affiliates. All rights reserved. #define TOKU_INCLUDE_ALTER_56 1 #define TOKU_INCLUDE_ROW_TYPE_COMPRESSION 0 #define TOKU_INCLUDE_XA 0 +#define TOKU_INCLUDE_WRITE_FRM_DATA 1 #define TOKU_PARTITION_WRITE_FRM_DATA 0 +#define TOKU_INCLUDE_DISCOVER_FRM 1 #else // mysql 5.6 with tokutek patches #define TOKU_USE_DB_TYPE_TOKUDB 1 // has DB_TYPE_TOKUDB patch #define TOKU_INCLUDE_ALTER_56 1 #define TOKU_INCLUDE_ROW_TYPE_COMPRESSION 1 // has tokudb row format compression patch #define TOKU_INCLUDE_XA 1 // has patch that fixes TC_LOG_MMAP code +#define TOKU_INCLUDE_WRITE_FRM_DATA 1 #define TOKU_PARTITION_WRITE_FRM_DATA 0 -#define TOKU_INCLUDE_WRITE_FRM_DATA 0 +#define TOKU_INCLUDE_DISCOVER_FRM 1 #define TOKU_INCLUDE_UPSERT 1 // has tokudb upsert patch #if defined(HTON_SUPPORTS_EXTENDED_KEYS) #define TOKU_INCLUDE_EXTENDED_KEYS 1 #endif #endif #define TOKU_OPTIMIZE_WITH_RECREATE 1 +#define TOKU_INCLUDE_RFR 1 #elif 50500 <= MYSQL_VERSION_ID && MYSQL_VERSION_ID <= 50599 // mysql 5.5 and mariadb 5.5 @@ -125,8 +151,9 @@ Copyright (c) 2006, 2015, Percona and/or its affiliates. All rights reserved. #define TOKU_INCLUDE_ALTER_55 1 #define TOKU_INCLUDE_ROW_TYPE_COMPRESSION 1 #define TOKU_INCLUDE_XA 1 -#define TOKU_PARTITION_WRITE_FRM_DATA 1 #define TOKU_INCLUDE_WRITE_FRM_DATA 1 +#define TOKU_PARTITION_WRITE_FRM_DATA 1 +#define TOKU_INCLUDE_DISCOVER_FRM 1 #define TOKU_INCLUDE_UPSERT 1 #if defined(MARIADB_BASE_VERSION) #define TOKU_INCLUDE_EXTENDED_KEYS 1 @@ -141,6 +168,11 @@ Copyright (c) 2006, 2015, Percona and/or its affiliates. All rights reserved. #endif +#if defined(TOKU_INCLUDE_DISCOVER_FRM) && TOKU_INCLUDE_DISCOVER_FRM +#include "discover.h" +#endif // defined(TOKU_INCLUDE_DISCOVER_FRM) && TOKU_INCLUDE_DISCOVER_FRM + + #ifdef MARIADB_BASE_VERSION // In MariaDB 5.3, thread progress reporting was introduced. // Only include that functionality if we're using maria 5.3 + @@ -248,13 +280,17 @@ inline uint tokudb_uint3korr(const uchar *a) { typedef unsigned int pfs_key_t; -#if defined(HAVE_PSI_MUTEX_INTERFACE) +#if defined(SAFE_MUTEX) || defined(HAVE_PSI_MUTEX_INTERFACE) #define mutex_t_lock(M) M.lock(__FILE__, __LINE__) -#define mutex_t_unlock(M) M.unlock(__FILE__, __LINE__) -#else // HAVE_PSI_MUTEX_INTERFACE +#else // SAFE_MUTEX || HAVE_PSI_MUTEX_INTERFACE #define mutex_t_lock(M) M.lock() +#endif // SAFE_MUTEX || HAVE_PSI_MUTEX_INTERFACE + +#if defined(SAFE_MUTEX) +#define mutex_t_unlock(M) M.unlock(__FILE__, __LINE__) +#else // SAFE_MUTEX #define mutex_t_unlock(M) M.unlock() -#endif // HAVE_PSI_MUTEX_INTERFACE +#endif // SAFE_MUTEX #if defined(HAVE_PSI_RWLOCK_INTERFACE) #define rwlock_t_lock_read(M) M.lock_read(__FILE__, __LINE__) diff --git a/storage/tokudb/hatoku_hton.cc b/storage/tokudb/hatoku_hton.cc index 114376f3541..610c9e07be0 100644 --- a/storage/tokudb/hatoku_hton.cc +++ b/storage/tokudb/hatoku_hton.cc @@ -28,6 +28,7 @@ Copyright (c) 2006, 2015, Percona and/or its affiliates. All rights reserved. #define TOKU_METADB_NAME "tokudb_meta" +#if defined(HAVE_PSI_MUTEX_INTERFACE) static pfs_key_t tokudb_map_mutex_key; static PSI_mutex_info all_tokudb_mutexes[] = { @@ -38,6 +39,7 @@ static PSI_mutex_info all_tokudb_mutexes[] = { static PSI_rwlock_info all_tokudb_rwlocks[] = { {&num_DBs_lock_key, "num_DBs_lock", 0}, }; +#endif /* HAVE_PSI_MUTEX_INTERFACE */ typedef struct savepoint_info { DB_TXN* txn; @@ -45,7 +47,7 @@ typedef struct savepoint_info { bool in_sub_stmt; } *SP_INFO, SP_INFO_T; -#if TOKU_INCLUDE_OPTION_STRUCTS +#if defined(TOKU_INCLUDE_OPTION_STRUCTS) && TOKU_INCLUDE_OPTION_STRUCTS ha_create_table_option tokudb_table_options[] = { HA_TOPTION_SYSVAR("compression", row_format, row_format), HA_TOPTION_END @@ -55,7 +57,7 @@ ha_create_table_option tokudb_index_options[] = { HA_IOPTION_BOOL("clustering", clustering, 0), HA_IOPTION_END }; -#endif +#endif // defined(TOKU_INCLUDE_OPTION_STRUCTS) && TOKU_INCLUDE_OPTION_STRUCTS static handler* tokudb_create_handler( handlerton* hton, @@ -74,19 +76,21 @@ static bool tokudb_show_status( THD* thd, stat_print_fn* print, enum ha_stat_type); -#if TOKU_INCLUDE_HANDLERTON_HANDLE_FATAL_SIGNAL +#if defined(TOKU_INCLUDE_HANDLERTON_HANDLE_FATAL_SIGNAL) && \ + TOKU_INCLUDE_HANDLERTON_HANDLE_FATAL_SIGNAL static void tokudb_handle_fatal_signal(handlerton* hton, THD* thd, int sig); -#endif +#endif // defined(TOKU_INCLUDE_HANDLERTON_HANDLE_FATAL_SIGNAL) && + // TOKU_INCLUDE_HANDLERTON_HANDLE_FATAL_SIGNAL static int tokudb_close_connection(handlerton* hton, THD* thd); static void tokudb_kill_connection(handlerton *hton, THD *thd); static int tokudb_commit(handlerton* hton, THD* thd, bool all); static int tokudb_rollback(handlerton* hton, THD* thd, bool all); -#if TOKU_INCLUDE_XA +#if defined(TOKU_INCLUDE_XA) && TOKU_INCLUDE_XA static int tokudb_xa_prepare(handlerton* hton, THD* thd, bool all); static int tokudb_xa_recover(handlerton* hton, XID* xid_list, uint len); static int tokudb_commit_by_xid(handlerton* hton, XID* xid); static int tokudb_rollback_by_xid(handlerton* hton, XID* xid); -#endif +#endif // defined(TOKU_INCLUDE_XA) && TOKU_INCLUDE_XA static int tokudb_rollback_to_savepoint( handlerton* hton, @@ -104,6 +108,7 @@ static int tokudb_discover_table_existence( const char* db, const char* name); #endif +#if defined(TOKU_INCLUDE_DISCOVER_FRM) && TOKU_INCLUDE_DISCOVER_FRM static int tokudb_discover( handlerton* hton, THD* thd, @@ -127,12 +132,13 @@ static int tokudb_discover3( char* path, uchar** frmblob, size_t* frmlen); +#endif // defined(TOKU_INCLUDE_DISCOVER_FRM) && TOKU_INCLUDE_DISCOVER_FRM handlerton* tokudb_hton; const char* ha_tokudb_ext = ".tokudb"; DB_ENV* db_env; -#if TOKU_THDVAR_MEMALLOC_BUG +#if defined(TOKU_THDVAR_MEMALLOC_BUG) && TOKU_THDVAR_MEMALLOC_BUG static tokudb::thread::mutex_t tokudb_map_mutex; static TREE tokudb_map; struct tokudb_map_pair { @@ -143,7 +149,7 @@ struct tokudb_map_pair { static int tokudb_map_pair_cmp(void *custom_arg, const void *a, const void *b) { #else static int tokudb_map_pair_cmp( - const void* custom_arg, + TOKUDB_UNUSED(const void* custom_arg), const void* a, const void* b) { #endif @@ -157,7 +163,7 @@ static int tokudb_map_pair_cmp( else return 0; }; -#endif +#endif // defined(TOKU_THDVAR_MEMALLOC_BUG) && TOKU_THDVAR_MEMALLOC_BUG static PARTITIONED_COUNTER tokudb_primary_key_bytes_inserted; void toku_hton_update_primary_key_bytes_inserted(uint64_t row_size) { @@ -383,31 +389,35 @@ static int tokudb_init_func(void *p) { tokudb_hton->discover_table = tokudb_discover_table; tokudb_hton->discover_table_existence = tokudb_discover_table_existence; #else +#if defined(TOKU_INCLUDE_DISCOVER_FRM) && TOKU_INCLUDE_DISCOVER_FRM tokudb_hton->discover = tokudb_discover; #if defined(MYSQL_HANDLERTON_INCLUDE_DISCOVER2) tokudb_hton->discover2 = tokudb_discover2; -#endif -#endif +#endif // MYSQL_HANDLERTON_INCLUDE_DISCOVER2 +#endif // defined(TOKU_INCLUDE_DISCOVER_FRM) && TOKU_INCLUDE_DISCOVER_FRM +#endif // 100000 <= MYSQL_VERSION_ID && MYSQL_VERSION_ID <= 100099 tokudb_hton->commit = tokudb_commit; tokudb_hton->rollback = tokudb_rollback; -#if TOKU_INCLUDE_XA +#if defined(TOKU_INCLUDE_XA) && TOKU_INCLUDE_XA tokudb_hton->prepare = tokudb_xa_prepare; tokudb_hton->recover = tokudb_xa_recover; tokudb_hton->commit_by_xid = tokudb_commit_by_xid; tokudb_hton->rollback_by_xid = tokudb_rollback_by_xid; -#endif +#endif // defined(TOKU_INCLUDE_XA) && TOKU_INCLUDE_XA tokudb_hton->panic = tokudb_end; tokudb_hton->flush_logs = tokudb_flush_logs; tokudb_hton->show_status = tokudb_show_status; -#if TOKU_INCLUDE_HANDLERTON_HANDLE_FATAL_SIGNAL +#if defined(TOKU_INCLUDE_HANDLERTON_HANDLE_FATAL_SIGNAL) && \ + TOKU_INCLUDE_HANDLERTON_HANDLE_FATAL_SIGNAL tokudb_hton->handle_fatal_signal = tokudb_handle_fatal_signal; -#endif +#endif // defined(TOKU_INCLUDE_HANDLERTON_HANDLE_FATAL_SIGNAL) && + // TOKU_INCLUDE_HANDLERTON_HANDLE_FATAL_SIGNAL -#if TOKU_INCLUDE_OPTION_STRUCTS +#if defined(TOKU_INCLUDE_OPTION_STRUCTS) && TOKU_INCLUDE_OPTION_STRUCTS tokudb_hton->table_options = tokudb_table_options; tokudb_hton->index_options = tokudb_index_options; -#endif +#endif // defined(TOKU_INCLUDE_OPTION_STRUCTS) && TOKU_INCLUDE_OPTION_STRUCTS if (!tokudb_home) tokudb_home = mysql_real_data_home; @@ -647,9 +657,9 @@ static int tokudb_init_func(void *p) { tokudb_primary_key_bytes_inserted = create_partitioned_counter(); -#if TOKU_THDVAR_MEMALLOC_BUG +#if defined(TOKU_THDVAR_MEMALLOC_BUG) && TOKU_THDVAR_MEMALLOC_BUG init_tree(&tokudb_map, 0, 0, 0, tokudb_map_pair_cmp, true, NULL, NULL); -#endif +#endif // defined(TOKU_THDVAR_MEMALLOC_BUG) && TOKU_THDVAR_MEMALLOC_BUG if (tokudb::sysvars::strip_frm_data) { r = tokudb::metadata::strip_frm_data(db_env); @@ -678,7 +688,7 @@ error: DBUG_RETURN(true); } -static int tokudb_done_func(void* p) { +static int tokudb_done_func(TOKUDB_UNUSED(void* p)) { TOKUDB_DBUG_ENTER(""); tokudb::memory::free(toku_global_status_variables); toku_global_status_variables = NULL; @@ -694,7 +704,8 @@ static handler* tokudb_create_handler( return new(mem_root) ha_tokudb(hton, table); } -int tokudb_end(handlerton* hton, ha_panic_function type) { +int tokudb_end(TOKUDB_UNUSED(handlerton* hton), + TOKUDB_UNUSED(ha_panic_function type)) { TOKUDB_DBUG_ENTER(""); int error = 0; @@ -714,7 +725,7 @@ int tokudb_end(handlerton* hton, ha_panic_function type) { // count the total number of prepared txn's that we discard long total_prepared = 0; -#if TOKU_INCLUDE_XA +#if defined(TOKU_INCLUDE_XA) && TOKU_INCLUDE_XA TOKUDB_TRACE_FOR_FLAGS(TOKUDB_DEBUG_XA, "begin XA cleanup"); while (1) { // get xid's @@ -741,11 +752,11 @@ int tokudb_end(handlerton* hton, ha_panic_function type) { total_prepared += n_prepared; } TOKUDB_TRACE_FOR_FLAGS(TOKUDB_DEBUG_XA, "end XA cleanup"); -#endif +#endif // defined(TOKU_INCLUDE_XA) && TOKU_INCLUDE_XA error = db_env->close( db_env, total_prepared > 0 ? TOKUFT_DIRTY_SHUTDOWN : 0); -#if TOKU_INCLUDE_XA +#if defined(TOKU_INCLUDE_XA) && TOKU_INCLUDE_XA if (error != 0 && total_prepared > 0) { sql_print_error( "%s: %ld prepared txns still live, please shutdown, error %d", @@ -753,7 +764,7 @@ int tokudb_end(handlerton* hton, ha_panic_function type) { total_prepared, error); } else -#endif +#endif // defined(TOKU_INCLUDE_XA) && TOKU_INCLUDE_XA assert_always(error == 0); db_env = NULL; } @@ -763,9 +774,9 @@ int tokudb_end(handlerton* hton, ha_panic_function type) { tokudb_primary_key_bytes_inserted = NULL; } -#if TOKU_THDVAR_MEMALLOC_BUG +#if defined(TOKU_THDVAR_MEMALLOC_BUG) && TOKU_THDVAR_MEMALLOC_BUG delete_tree(&tokudb_map); -#endif +#endif // defined(TOKU_THDVAR_MEMALLOC_BUG) && TOKU_THDVAR_MEMALLOC_BUG // 3938: drop the initialized flag and unlock tokudb_hton_initialized = 0; @@ -774,14 +785,14 @@ int tokudb_end(handlerton* hton, ha_panic_function type) { TOKUDB_DBUG_RETURN(error); } -static int tokudb_close_connection(handlerton* hton, THD* thd) { +static int tokudb_close_connection(TOKUDB_UNUSED(handlerton* hton), THD* thd) { int error = 0; tokudb_trx_data* trx = (tokudb_trx_data*)thd_get_ha_data(thd, tokudb_hton); if (trx && trx->checkpoint_lock_taken) { error = db_env->checkpointing_resume(db_env); } tokudb::memory::free(trx); -#if TOKU_THDVAR_MEMALLOC_BUG +#if defined(TOKU_THDVAR_MEMALLOC_BUG) && TOKU_THDVAR_MEMALLOC_BUG mutex_t_lock(tokudb_map_mutex); struct tokudb_map_pair key = {thd, NULL}; struct tokudb_map_pair* found_key = @@ -792,17 +803,17 @@ static int tokudb_close_connection(handlerton* hton, THD* thd) { tree_delete(&tokudb_map, found_key, sizeof(*found_key), NULL); } mutex_t_unlock(tokudb_map_mutex); -#endif +#endif // defined(TOKU_THDVAR_MEMALLOC_BUG) && TOKU_THDVAR_MEMALLOC_BUG return error; } -void tokudb_kill_connection(handlerton *hton, THD *thd) { +void tokudb_kill_connection(TOKUDB_UNUSED(handlerton* hton), THD* thd) { TOKUDB_DBUG_ENTER(""); db_env->kill_waiter(db_env, thd); DBUG_VOID_RETURN; } -bool tokudb_flush_logs(handlerton * hton) { +bool tokudb_flush_logs(TOKUDB_UNUSED(handlerton* hton)) { TOKUDB_DBUG_ENTER(""); int error; bool result = 0; @@ -894,7 +905,7 @@ extern "C" enum durability_properties thd_get_durability_property( #endif // Determine if an fsync is used when a transaction is committed. -static bool tokudb_sync_on_commit(THD* thd, tokudb_trx_data* trx, DB_TXN* txn) { +static bool tokudb_sync_on_commit(THD* thd) { #if MYSQL_VERSION_ID >= 50600 // Check the client durability property which is set during 2PC if (thd_get_durability_property(thd) == HA_IGNORE_DURABILITY) @@ -917,8 +928,7 @@ static int tokudb_commit(handlerton * hton, THD * thd, bool all) { DB_TXN **txn = all ? &trx->all : &trx->stmt; DB_TXN *this_txn = *txn; if (this_txn) { - uint32_t syncflag = - tokudb_sync_on_commit(thd, trx, this_txn) ? 0 : DB_TXN_NOSYNC; + uint32_t syncflag = tokudb_sync_on_commit(thd) ? 0 : DB_TXN_NOSYNC; TOKUDB_TRACE_FOR_FLAGS( TOKUDB_DEBUG_TXN, "commit trx %u txn %p syncflag %u", @@ -969,7 +979,7 @@ static int tokudb_rollback(handlerton * hton, THD * thd, bool all) { TOKUDB_DBUG_RETURN(0); } -#if TOKU_INCLUDE_XA +#if defined(TOKU_INCLUDE_XA) && TOKU_INCLUDE_XA static bool tokudb_sync_on_prepare(void) { TOKUDB_TRACE_FOR_FLAGS(TOKUDB_DEBUG_XA, "enter"); // skip sync of log if fsync log period > 0 @@ -1034,7 +1044,9 @@ static int tokudb_xa_prepare(handlerton* hton, THD* thd, bool all) { TOKUDB_DBUG_RETURN(r); } -static int tokudb_xa_recover(handlerton* hton, XID* xid_list, uint len) { +static int tokudb_xa_recover(TOKUDB_UNUSED(handlerton* hton), + XID* xid_list, + uint len) { TOKUDB_DBUG_ENTER(""); TOKUDB_TRACE_FOR_FLAGS(TOKUDB_DEBUG_XA, "enter"); int r = 0; @@ -1054,7 +1066,7 @@ static int tokudb_xa_recover(handlerton* hton, XID* xid_list, uint len) { TOKUDB_DBUG_RETURN((int)num_returned); } -static int tokudb_commit_by_xid(handlerton* hton, XID* xid) { +static int tokudb_commit_by_xid(TOKUDB_UNUSED(handlerton* hton), XID* xid) { TOKUDB_DBUG_ENTER(""); TOKUDB_TRACE_FOR_FLAGS(TOKUDB_DEBUG_XA, "enter"); TOKUDB_TRACE_FOR_FLAGS(TOKUDB_DEBUG_XA, "xid %p", xid); @@ -1074,7 +1086,7 @@ cleanup: TOKUDB_DBUG_RETURN(r); } -static int tokudb_rollback_by_xid(handlerton* hton, XID* xid) { +static int tokudb_rollback_by_xid(TOKUDB_UNUSED(handlerton* hton), XID* xid) { TOKUDB_DBUG_ENTER(""); TOKUDB_TRACE_FOR_FLAGS(TOKUDB_DEBUG_XA, "enter"); TOKUDB_TRACE_FOR_FLAGS(TOKUDB_DEBUG_XA, "xid %p", xid); @@ -1094,7 +1106,7 @@ cleanup: TOKUDB_DBUG_RETURN(r); } -#endif +#endif // defined(TOKU_INCLUDE_XA) && TOKU_INCLUDE_XA static int tokudb_savepoint(handlerton * hton, THD * thd, void *savepoint) { TOKUDB_DBUG_ENTER("%p", savepoint); @@ -1221,8 +1233,9 @@ static int tokudb_discover_table_existence( my_free(frmblob); return res != ENOENT; } -#endif +#endif // 100000 <= MYSQL_VERSION_ID && MYSQL_VERSION_ID <= 100099 +#if defined(TOKU_INCLUDE_DISCOVER_FRM) && TOKU_INCLUDE_DISCOVER_FRM static int tokudb_discover( handlerton* hton, THD* thd, @@ -1254,15 +1267,13 @@ static int tokudb_discover2( return tokudb_discover3(hton, thd, db, name, path, frmblob, frmlen); } -static int tokudb_discover3( - handlerton* hton, - THD* thd, - const char* db, - const char* name, - char* path, - uchar** frmblob, - size_t* frmlen) { - +static int tokudb_discover3(TOKUDB_UNUSED(handlerton* hton), + THD* thd, + const char* db, + const char* name, + char* path, + uchar** frmblob, + size_t* frmlen) { TOKUDB_DBUG_ENTER("%s %s %s", db, name, path); int error; DB* status_db = NULL; @@ -1320,6 +1331,7 @@ cleanup: } TOKUDB_DBUG_RETURN(error); } +#endif // defined(TOKU_INCLUDE_DISCOVER_FRM) && TOKU_INCLUDE_DISCOVER_FRM #define STATPRINT(legend, val) if (legend != NULL && val != NULL) \ @@ -1525,7 +1537,7 @@ cleanup: } static bool tokudb_show_status( - handlerton* hton, + TOKUDB_UNUSED(handlerton* hton), THD* thd, stat_print_fn* stat_print, enum ha_stat_type stat_type) { @@ -1540,7 +1552,8 @@ static bool tokudb_show_status( return false; } -#if TOKU_INCLUDE_HANDLERTON_HANDLE_FATAL_SIGNAL +#if defined(TOKU_INCLUDE_HANDLERTON_HANDLE_FATAL_SIGNAL) && \ + TOKU_INCLUDE_HANDLERTON_HANDLE_FATAL_SIGNAL static void tokudb_handle_fatal_signal( TOKUDB_UNUSED(handlerton* hton), TOKUDB_UNUSD(THD* thd), @@ -1550,12 +1563,12 @@ static void tokudb_handle_fatal_signal( db_env_try_gdb_stack_trace(tokudb_gdb_path); } } -#endif +#endif // defined(TOKU_INCLUDE_HANDLERTON_HANDLE_FATAL_SIGNAL) && + // TOKU_INCLUDE_HANDLERTON_HANDLE_FATAL_SIGNAL -static void tokudb_print_error( - const DB_ENV* db_env, - const char* db_errpfx, - const char* buffer) { +static void tokudb_print_error(TOKUDB_UNUSED(const DB_ENV* db_env), + const char* db_errpfx, + const char* buffer) { sql_print_error("%s: %s", db_errpfx, buffer); } @@ -1622,7 +1635,8 @@ struct st_mysql_storage_engine tokudb_storage_engine = { MYSQL_HANDLERTON_INTERFACE_VERSION }; -#if TOKU_INCLUDE_LOCK_TIMEOUT_QUERY_STRING +#if defined(TOKU_INCLUDE_LOCK_TIMEOUT_QUERY_STRING) && \ + TOKU_INCLUDE_LOCK_TIMEOUT_QUERY_STRING struct tokudb_search_txn_extra { bool match_found; uint64_t match_txn_id; @@ -1663,10 +1677,10 @@ static bool tokudb_txn_id_to_client_id( } return e.match_found; } -#endif +#endif // defined(TOKU_INCLUDE_LOCK_TIMEOUT_QUERY_STRING) && + // TOKU_INCLUDE_LOCK_TIMEOUT_QUERY_STRING static void tokudb_pretty_key( - const DB* db, const DBT* key, const char* default_key, String* out) { @@ -1688,12 +1702,12 @@ static void tokudb_pretty_key( } } -void tokudb_pretty_left_key(const DB* db, const DBT* key, String* out) { - tokudb_pretty_key(db, key, "-infinity", out); +void tokudb_pretty_left_key(const DBT* key, String* out) { + tokudb_pretty_key(key, "-infinity", out); } -void tokudb_pretty_right_key(const DB* db, const DBT* key, String* out) { - tokudb_pretty_key(db, key, "+infinity", out); +void tokudb_pretty_right_key(const DBT* key, String* out) { + tokudb_pretty_key(key, "+infinity", out); } const char* tokudb_get_index_name(DB* db) { @@ -1740,20 +1754,20 @@ static void tokudb_lock_timeout_callback( log_str.append_ulonglong(blocking_txnid); if (tokudb_equal_key(left_key, right_key)) { String key_str; - tokudb_pretty_key(db, left_key, "?", &key_str); + tokudb_pretty_key(left_key, "?", &key_str); log_str.append(", \"key\":"); log_str.append("\""); log_str.append(key_str); log_str.append("\""); } else { String left_str; - tokudb_pretty_left_key(db, left_key, &left_str); + tokudb_pretty_left_key(left_key, &left_str); log_str.append(", \"key_left\":"); log_str.append("\""); log_str.append(left_str); log_str.append("\""); String right_str; - tokudb_pretty_right_key(db, right_key, &right_str); + tokudb_pretty_right_key(right_key, &right_str); log_str.append(", \"key_right\":"); log_str.append("\""); log_str.append(right_str); @@ -1766,14 +1780,14 @@ static void tokudb_lock_timeout_callback( char* new_lock_timeout = tokudb::memory::strdup(log_str.c_ptr(), MY_FAE); tokudb::sysvars::set_last_lock_timeout(thd, new_lock_timeout); -#if TOKU_THDVAR_MEMALLOC_BUG +#if defined(TOKU_THDVAR_MEMALLOC_BUG) && TOKU_THDVAR_MEMALLOC_BUG mutex_t_lock(tokudb_map_mutex); struct tokudb_map_pair old_key = {thd, old_lock_timeout}; tree_delete(&tokudb_map, &old_key, sizeof old_key, NULL); struct tokudb_map_pair new_key = {thd, new_lock_timeout}; tree_insert(&tokudb_map, &new_key, sizeof new_key, NULL); mutex_t_unlock(tokudb_map_mutex); -#endif +#endif // defined(TOKU_THDVAR_MEMALLOC_BUG) && TOKU_THDVAR_MEMALLOC_BUG tokudb::memory::free(old_lock_timeout); } // dump to stderr @@ -1789,7 +1803,8 @@ static void tokudb_lock_timeout_callback( mysql_thread_id, (int)qs->length, qs->str); -#if TOKU_INCLUDE_LOCK_TIMEOUT_QUERY_STRING +#if defined(TOKU_INCLUDE_LOCK_TIMEOUT_QUERY_STRING) && \ + TOKU_INCLUDE_LOCK_TIMEOUT_QUERY_STRING uint64_t blocking_thread_id = 0; if (tokudb_txn_id_to_client_id( thd, @@ -1809,7 +1824,8 @@ static void tokudb_lock_timeout_callback( blocking_qs.c_ptr()); } } -#endif +#endif // defined(TOKU_INCLUDE_LOCK_TIMEOUT_QUERY_STRING) && + // TOKU_INCLUDE_LOCK_TIMEOUT_QUERY_STRING } } } @@ -1817,7 +1833,9 @@ static void tokudb_lock_timeout_callback( // Retrieves variables for information_schema.global_status. // Names (columnname) are automatically converted to upper case, // and prefixed with "TOKUDB_" -static int show_tokudb_vars(THD *thd, SHOW_VAR *var, char *buff) { +static int show_tokudb_vars(TOKUDB_UNUSED(THD* thd), + SHOW_VAR* var, + TOKUDB_UNUSED(char* buff)) { TOKUDB_DBUG_ENTER(""); int error; @@ -1921,16 +1939,6 @@ static SHOW_VAR toku_global_status_variables_export[]= { {NullS, NullS, SHOW_LONG} }; -#if TOKU_INCLUDE_BACKTRACE -#include -static void tokudb_backtrace(void) { - const int N_POINTERS = 30; - void *backtrace_pointers[N_POINTERS]; - int n = backtrace(backtrace_pointers, N_POINTERS); - backtrace_symbols_fd(backtrace_pointers, n, fileno(stderr)); -} -#endif - #ifdef MARIA_PLUGIN_INTERFACE_VERSION maria_declare_plugin(tokudb) #else diff --git a/storage/tokudb/hatoku_hton.h b/storage/tokudb/hatoku_hton.h index 7efc50b96e3..c5b6aab1769 100644 --- a/storage/tokudb/hatoku_hton.h +++ b/storage/tokudb/hatoku_hton.h @@ -92,7 +92,8 @@ inline toku_compression_method row_format_to_toku_compression_method( inline enum row_type row_format_to_row_type( tokudb::sysvars::row_format_t row_format) { -#if TOKU_INCLUDE_ROW_TYPE_COMPRESSION +#if defined(TOKU_INCLUDE_ROW_TYPE_COMPRESSION) && \ + TOKU_INCLUDE_ROW_TYPE_COMPRESSION switch (row_format) { case tokudb::sysvars::SRV_ROW_FORMAT_UNCOMPRESSED: return ROW_TYPE_TOKU_UNCOMPRESSED; @@ -111,13 +112,15 @@ inline enum row_type row_format_to_row_type( case tokudb::sysvars::SRV_ROW_FORMAT_DEFAULT: return ROW_TYPE_DEFAULT; } -#endif +#endif // defined(TOKU_INCLUDE_ROW_TYPE_COMPRESSION) && + // TOKU_INCLUDE_ROW_TYPE_COMPRESSION return ROW_TYPE_DEFAULT; } inline tokudb::sysvars::row_format_t row_type_to_row_format( enum row_type type) { -#if TOKU_INCLUDE_ROW_TYPE_COMPRESSION +#if defined(TOKU_INCLUDE_ROW_TYPE_COMPRESSION) && \ + TOKU_INCLUDE_ROW_TYPE_COMPRESSION switch (type) { case ROW_TYPE_TOKU_UNCOMPRESSED: return tokudb::sysvars::SRV_ROW_FORMAT_UNCOMPRESSED; @@ -138,7 +141,8 @@ inline tokudb::sysvars::row_format_t row_type_to_row_format( default: return tokudb::sysvars::SRV_ROW_FORMAT_DEFAULT; } -#endif +#endif // defined(TOKU_INCLUDE_ROW_TYPE_COMPRESSION) && + // TOKU_INCLUDE_ROW_TYPE_COMPRESSION return tokudb::sysvars::SRV_ROW_FORMAT_DEFAULT; } @@ -158,7 +162,8 @@ inline toku_compression_method row_type_to_toku_compression_method( void tokudb_checkpoint_lock(THD * thd); void tokudb_checkpoint_unlock(THD * thd); -inline uint64_t tokudb_get_lock_wait_time_callback(uint64_t default_wait_time) { +inline uint64_t tokudb_get_lock_wait_time_callback( + TOKUDB_UNUSED(uint64_t default_wait_time)) { THD *thd = current_thd; return tokudb::sysvars::lock_timeout(thd); } @@ -168,7 +173,8 @@ inline uint64_t tokudb_get_loader_memory_size_callback(void) { return tokudb::sysvars::loader_memory_size(thd); } -inline uint64_t tokudb_get_killed_time_callback(uint64_t default_killed_time) { +inline uint64_t tokudb_get_killed_time_callback( + TOKUDB_UNUSED(uint64_t default_killed_time)) { THD *thd = current_thd; return tokudb::sysvars::killed_time(thd); } @@ -178,7 +184,8 @@ inline int tokudb_killed_callback(void) { return thd_killed(thd); } -inline bool tokudb_killed_thd_callback(void *extra, uint64_t deleted_rows) { +inline bool tokudb_killed_thd_callback(void* extra, + TOKUDB_UNUSED(uint64_t deleted_rows)) { THD *thd = static_cast(extra); return thd_killed(thd) != 0; } @@ -196,8 +203,8 @@ void tokudb_split_dname( String& table_name, String& dictionary_name); -void tokudb_pretty_left_key(const DB* db, const DBT* key, String* out); -void tokudb_pretty_right_key(const DB* db, const DBT* key, String* out); +void tokudb_pretty_left_key(const DBT* key, String* out); +void tokudb_pretty_right_key(const DBT* key, String* out); const char *tokudb_get_index_name(DB* db); #endif //#ifdef _HATOKU_HTON diff --git a/storage/tokudb/mysql-test/tokudb_bugs/r/rpl_stmt_replace_into.result b/storage/tokudb/mysql-test/rpl/r/rpl_mixed_replace_into.result similarity index 100% rename from storage/tokudb/mysql-test/tokudb_bugs/r/rpl_stmt_replace_into.result rename to storage/tokudb/mysql-test/rpl/r/rpl_mixed_replace_into.result diff --git a/storage/tokudb/mysql-test/tokudb_bugs/r/rpl_row_replace_into.result b/storage/tokudb/mysql-test/rpl/r/rpl_row_replace_into.result similarity index 58% rename from storage/tokudb/mysql-test/tokudb_bugs/r/rpl_row_replace_into.result rename to storage/tokudb/mysql-test/rpl/r/rpl_row_replace_into.result index b1482aa0144..0f944801ebf 100644 --- a/storage/tokudb/mysql-test/tokudb_bugs/r/rpl_row_replace_into.result +++ b/storage/tokudb/mysql-test/rpl/r/rpl_row_replace_into.result @@ -1,4 +1,7 @@ include/master-slave.inc +Warnings: +Note #### Sending passwords in plain text without SSL/TLS is extremely insecure. +Note #### Storing MySQL user name or password information in the master info repository is not secure and is therefore not recommended. Please consider using the USER and PASSWORD connection options for START SLAVE; see the 'START SLAVE Syntax' in the MySQL Manual for more information. [connection master] set default_storage_engine='tokudb'; drop table if exists testr; diff --git a/storage/tokudb/mysql-test/tokudb_bugs/r/rpl_mixed_replace_into.result b/storage/tokudb/mysql-test/rpl/r/rpl_stmt_replace_into.result similarity index 58% rename from storage/tokudb/mysql-test/tokudb_bugs/r/rpl_mixed_replace_into.result rename to storage/tokudb/mysql-test/rpl/r/rpl_stmt_replace_into.result index b1482aa0144..0f944801ebf 100644 --- a/storage/tokudb/mysql-test/tokudb_bugs/r/rpl_mixed_replace_into.result +++ b/storage/tokudb/mysql-test/rpl/r/rpl_stmt_replace_into.result @@ -1,4 +1,7 @@ include/master-slave.inc +Warnings: +Note #### Sending passwords in plain text without SSL/TLS is extremely insecure. +Note #### Storing MySQL user name or password information in the master info repository is not secure and is therefore not recommended. Please consider using the USER and PASSWORD connection options for START SLAVE; see the 'START SLAVE Syntax' in the MySQL Manual for more information. [connection master] set default_storage_engine='tokudb'; drop table if exists testr; diff --git a/storage/tokudb/mysql-test/rpl/r/rpl_xa_interleave.result b/storage/tokudb/mysql-test/rpl/r/rpl_xa_interleave.result new file mode 100644 index 00000000000..72e8644f7f2 --- /dev/null +++ b/storage/tokudb/mysql-test/rpl/r/rpl_xa_interleave.result @@ -0,0 +1,62 @@ +include/master-slave.inc +Warnings: +Note #### Sending passwords in plain text without SSL/TLS is extremely insecure. +Note #### Storing MySQL user name or password information in the master info repository is not secure and is therefore not recommended. Please consider using the USER and PASSWORD connection options for START SLAVE; see the 'START SLAVE Syntax' in the MySQL Manual for more information. +[connection master] +CREATE TABLE t1(`a` INT) ENGINE=TokuDB; +XA START 'x1'; +INSERT INTO t1 VALUES (1); +XA END 'x1'; +XA PREPARE 'x1'; +BEGIN; +INSERT INTO t1 VALUES (10); +COMMIT; +XA START 'y1'; +INSERT INTO t1 VALUES (2); +XA END 'y1'; +XA PREPARE 'y1'; +XA COMMIT 'x1'; +XA COMMIT 'y1'; +BEGIN; +INSERT INTO t1 VALUES (11); +COMMIT; +XA START 'x2'; +INSERT INTO t1 VALUES (3); +XA END 'x2'; +XA PREPARE 'x2'; +XA START 'y2'; +INSERT INTO t1 VALUES (4); +XA END 'y2'; +XA PREPARE 'y2'; +XA COMMIT 'x2'; +XA COMMIT 'y2'; +XA START 'x1'; +INSERT INTO t1 VALUES (1); +XA END 'x1'; +XA PREPARE 'x1'; +BEGIN; +INSERT INTO t1 VALUES (10); +COMMIT; +XA START 'y1'; +INSERT INTO t1 VALUES (2); +XA END 'y1'; +XA PREPARE 'y1'; +XA ROLLBACK 'x1'; +XA ROLLBACK 'y1'; +BEGIN; +INSERT INTO t1 VALUES (11); +COMMIT; +XA START 'x2'; +INSERT INTO t1 VALUES (3); +XA END 'x2'; +XA PREPARE 'x2'; +XA START 'y2'; +INSERT INTO t1 VALUES (4); +XA END 'y2'; +XA PREPARE 'y2'; +XA ROLLBACK 'x2'; +XA ROLLBACK 'y2'; +TABLES t1 and t2 must be equal otherwise an error will be thrown. +include/diff_tables.inc [master:test.t1, slave:test.t1] +DROP TABLE t1; +include/rpl_end.inc diff --git a/storage/tokudb/mysql-test/tokudb_bugs/t/rpl_mixed_replace_into.test b/storage/tokudb/mysql-test/rpl/t/rpl_mixed_replace_into.test similarity index 100% rename from storage/tokudb/mysql-test/tokudb_bugs/t/rpl_mixed_replace_into.test rename to storage/tokudb/mysql-test/rpl/t/rpl_mixed_replace_into.test diff --git a/storage/tokudb/mysql-test/tokudb_bugs/t/rpl_row_replace_into.test b/storage/tokudb/mysql-test/rpl/t/rpl_row_replace_into.test similarity index 100% rename from storage/tokudb/mysql-test/tokudb_bugs/t/rpl_row_replace_into.test rename to storage/tokudb/mysql-test/rpl/t/rpl_row_replace_into.test diff --git a/storage/tokudb/mysql-test/tokudb_bugs/t/rpl_stmt_replace_into.test b/storage/tokudb/mysql-test/rpl/t/rpl_stmt_replace_into.test similarity index 100% rename from storage/tokudb/mysql-test/tokudb_bugs/t/rpl_stmt_replace_into.test rename to storage/tokudb/mysql-test/rpl/t/rpl_stmt_replace_into.test diff --git a/storage/tokudb/mysql-test/rpl/t/rpl_xa_interleave.test b/storage/tokudb/mysql-test/rpl/t/rpl_xa_interleave.test new file mode 100644 index 00000000000..3941604c855 --- /dev/null +++ b/storage/tokudb/mysql-test/rpl/t/rpl_xa_interleave.test @@ -0,0 +1,103 @@ +--source include/have_tokudb.inc +--source include/have_binlog_format_mixed_or_row.inc +--source include/master-slave.inc + +CREATE TABLE t1(`a` INT) ENGINE=TokuDB; + +## XA interleave commit +--connection master +XA START 'x1'; +INSERT INTO t1 VALUES (1); +XA END 'x1'; +XA PREPARE 'x1'; + +--connection master1 +BEGIN; +INSERT INTO t1 VALUES (10); +COMMIT; +XA START 'y1'; +INSERT INTO t1 VALUES (2); +XA END 'y1'; +XA PREPARE 'y1'; + +--connection master +XA COMMIT 'x1'; + +--connection master1 +XA COMMIT 'y1'; + +--connection master +BEGIN; +INSERT INTO t1 VALUES (11); +COMMIT; +XA START 'x2'; +INSERT INTO t1 VALUES (3); +XA END 'x2'; +XA PREPARE 'x2'; + +--connection master1 +XA START 'y2'; +INSERT INTO t1 VALUES (4); +XA END 'y2'; +XA PREPARE 'y2'; + +--connection master +XA COMMIT 'x2'; + +--connection master1 +XA COMMIT 'y2'; + +## XA interleave rollback +--connection master +XA START 'x1'; +INSERT INTO t1 VALUES (1); +XA END 'x1'; +XA PREPARE 'x1'; + +--connection master1 +BEGIN; +INSERT INTO t1 VALUES (10); +COMMIT; +XA START 'y1'; +INSERT INTO t1 VALUES (2); +XA END 'y1'; +XA PREPARE 'y1'; + +--connection master +XA ROLLBACK 'x1'; + +--connection master1 +XA ROLLBACK 'y1'; + +--connection master +BEGIN; +INSERT INTO t1 VALUES (11); +COMMIT; +XA START 'x2'; +INSERT INTO t1 VALUES (3); +XA END 'x2'; +XA PREPARE 'x2'; + +--connection master1 +XA START 'y2'; +INSERT INTO t1 VALUES (4); +XA END 'y2'; +XA PREPARE 'y2'; + +--connection master +XA ROLLBACK 'x2'; + +--connection master1 +XA ROLLBACK 'y2'; + +--connection master + +--sync_slave_with_master + +--echo TABLES t1 and t2 must be equal otherwise an error will be thrown. +--let $diff_tables= master:test.t1, slave:test.t1 +--source include/diff_tables.inc + +--connection master +DROP TABLE t1; +--source include/rpl_end.inc diff --git a/storage/tokudb/mysql-test/tokudb/include/fast_update_gen_footer.inc b/storage/tokudb/mysql-test/tokudb/include/fast_update_gen_footer.inc new file mode 100644 index 00000000000..6c7bc8aadda --- /dev/null +++ b/storage/tokudb/mysql-test/tokudb/include/fast_update_gen_footer.inc @@ -0,0 +1,2 @@ +--source $GENERATED +--remove_file $GENERATED diff --git a/storage/tokudb/mysql-test/tokudb/include/fast_update_gen_footer_silent.inc b/storage/tokudb/mysql-test/tokudb/include/fast_update_gen_footer_silent.inc new file mode 100644 index 00000000000..0a5314dd8e3 --- /dev/null +++ b/storage/tokudb/mysql-test/tokudb/include/fast_update_gen_footer_silent.inc @@ -0,0 +1,9 @@ +--echo This test does not produce any output on success +--disable_query_log +--disable_result_log +--let $old_include_silent= $include_silent +--let $include_silent= 1 +--source fast_update_gen_footer.inc +--let $include_silent= $old_include_silent +--enable_query_log +--enable_result_log diff --git a/storage/tokudb/mysql-test/tokudb/include/fast_update_gen_header.inc b/storage/tokudb/mysql-test/tokudb/include/fast_update_gen_header.inc new file mode 100644 index 00000000000..820385593c7 --- /dev/null +++ b/storage/tokudb/mysql-test/tokudb/include/fast_update_gen_header.inc @@ -0,0 +1,6 @@ +--source include/have_tokudb.inc +--source include/have_innodb.inc +--disable_query_log +set tokudb_enable_fast_update=1; +--source setup_fast_update_upsert.inc +--enable_query_log diff --git a/storage/tokudb/mysql-test/tokudb/include/fast_update_int.inc b/storage/tokudb/mysql-test/tokudb/include/fast_update_int.inc new file mode 100644 index 00000000000..645a02a2a2b --- /dev/null +++ b/storage/tokudb/mysql-test/tokudb/include/fast_update_int.inc @@ -0,0 +1,48 @@ +insert into t values (1,0), (2,0), (3,0); +select * from t; + +# set is fast +update t set x = 100 where id = 2; +select * from t; + +# increment is fast +update t set x = x + 1 where id = 3; +select * from t; + +# decrement is fast +update t set x = x - 1 where id = 3; +select * from t; + +# field=field+constant is fast +update t set x = x + 100 where id = 3; +select * from t; + +# field=field-constant is fast +update t set x = x - 100 where id = 3; +select * from t; + +# field=constant+field is not yet fast +--replace_regex /MariaDB/XYZ/ /MySQL/XYZ/ +--error ER_UNSUPPORTED_EXTENSION +update t set x = 1 + x where id = 1; + +# field=-field is not yet fast +--replace_regex /MariaDB/XYZ/ /MySQL/XYZ/ +--error ER_UNSUPPORTED_EXTENSION +update t set x = -x where id = 1; + +# yes, we can update a field in a non-existent row and the row is not inserted +update t set x = x + 1 where id = 100; +select * from t; + +# range updates are not yet fast +--replace_regex /MariaDB/XYZ/ /MySQL/XYZ/ +--error ER_UNSUPPORTED_EXTENSION +update t set x = x + 1 where 1 <= id and id < 100; + +# full table updates are not yet fast +--replace_regex /MariaDB/XYZ/ /MySQL/XYZ/ +--error ER_UNSUPPORTED_EXTENSION +update t set x = x + 1; + +drop table t; diff --git a/storage/tokudb/mysql-test/tokudb/include/fast_upsert_gen_header.inc b/storage/tokudb/mysql-test/tokudb/include/fast_upsert_gen_header.inc new file mode 100644 index 00000000000..26b19c66efa --- /dev/null +++ b/storage/tokudb/mysql-test/tokudb/include/fast_upsert_gen_header.inc @@ -0,0 +1,6 @@ +--source include/have_tokudb.inc +--source include/have_innodb.inc +--disable_query_log +set tokudb_enable_fast_upsert=1; +--source setup_fast_update_upsert.inc +--enable_query_log diff --git a/storage/tokudb/mysql-test/tokudb/include/fast_upsert_int.inc b/storage/tokudb/mysql-test/tokudb/include/fast_upsert_int.inc new file mode 100644 index 00000000000..45c206e496a --- /dev/null +++ b/storage/tokudb/mysql-test/tokudb/include/fast_upsert_int.inc @@ -0,0 +1,19 @@ +insert into tt (id) values (1),(2),(3) on duplicate key update x = 0; +insert into tt (id) values (1) on duplicate key update y = 0, z = 42; +insert into tt (id) values (1) on duplicate key update y = y + 1, z = z + 50; +insert into tt (id) values (1) on duplicate key update y = y - 1; +insert into tt (id) values (1) on duplicate key update z = z - 50; + +create table ti like tt; +alter table ti engine=innodb; +insert into ti (id) values (1),(2),(3) on duplicate key update x = 0; +insert into ti (id) values (1) on duplicate key update y = 0, z = 42; +insert into ti (id) values (1) on duplicate key update y = y + 1, z = z + 50; +insert into ti (id) values (1) on duplicate key update y = y - 1; +insert into ti (id) values (1) on duplicate key update z = z - 50; + +let $diff_tables = test.tt, test.ti; +source include/diff_tables.inc; + +drop table tt, ti; + diff --git a/storage/tokudb/mysql-test/tokudb/include/setup_fast_update_upsert.inc b/storage/tokudb/mysql-test/tokudb/include/setup_fast_update_upsert.inc new file mode 100644 index 00000000000..7d1c53b9faf --- /dev/null +++ b/storage/tokudb/mysql-test/tokudb/include/setup_fast_update_upsert.inc @@ -0,0 +1,8 @@ +# It's supposed that for strict mode some additional checks must be provided, +# what can lead to necessity to read some data from storage, +# while the general optimization for fast update and upsert is that +# there are no read operations during insert/update execution. +# That is why strict mode must be turned off for fast update/upsert testing. + +set session sql_mode=(select replace(@@sql_mode,'STRICT_TRANS_TABLES','')); +set session sql_mode=(select replace(@@sql_mode,'STRICT_ALL_TABLES','')); diff --git a/storage/tokudb/mysql-test/tokudb/r/compressions.result b/storage/tokudb/mysql-test/tokudb/r/compressions.result new file mode 100644 index 00000000000..87ba94ebbe8 --- /dev/null +++ b/storage/tokudb/mysql-test/tokudb/r/compressions.result @@ -0,0 +1,6 @@ +CREATE TABLE t1 (a INT) ENGINE=TokuDB ROW_FORMAT=TOKUDB_UNCOMPRESSED; +CREATE TABLE t2 (a INT) ENGINE=TokuDB ROW_FORMAT=TOKUDB_SNAPPY; +CREATE TABLE t3 (a INT) ENGINE=TokuDB ROW_FORMAT=TOKUDB_QUICKLZ; +CREATE TABLE t4 (a INT) ENGINE=TokuDB ROW_FORMAT=TOKUDB_LZMA; +CREATE TABLE t5 (a INT) ENGINE=TokuDB ROW_FORMAT=TOKUDB_ZLIB; +DROP TABLE t1, t2, t3, t4, t5; diff --git a/storage/tokudb/mysql-test/tokudb/r/fast_update_binlog_mixed.result b/storage/tokudb/mysql-test/tokudb/r/fast_update_binlog_mixed.result index 28fc4ebccf4..7d974affb9d 100644 --- a/storage/tokudb/mysql-test/tokudb/r/fast_update_binlog_mixed.result +++ b/storage/tokudb/mysql-test/tokudb/r/fast_update_binlog_mixed.result @@ -1,20 +1,15 @@ include/master-slave.inc +Warnings: +Note #### Sending passwords in plain text without SSL/TLS is extremely insecure. +Note #### Storing MySQL user name or password information in the master info repository is not secure and is therefore not recommended. Please consider using the USER and PASSWORD connection options for START SLAVE; see the 'START SLAVE Syntax' in the MySQL Manual for more information. [connection master] -set default_storage_engine='tokudb'; -create table tt (id int primary key, x int); -set session tokudb_disable_slow_upsert=1; -show variables like 'binlog_format'; -Variable_name Value -binlog_format MIXED -show variables like 'server_id'; -Variable_name Value -server_id 1 -show variables like 'binlog_format'; -Variable_name Value -binlog_format MIXED -show variables like 'server_id'; -Variable_name Value -server_id 2 +create table tt (id int primary key, x int) engine = tokudb; +set session sql_mode=(select replace(@@sql_mode,'STRICT_TRANS_TABLES','')); +set session sql_mode=(select replace(@@sql_mode,'STRICT_ALL_TABLES','')); +set session tokudb_enable_fast_update=1; +set session sql_mode=(select replace(@@sql_mode,'STRICT_TRANS_TABLES','')); +set session sql_mode=(select replace(@@sql_mode,'STRICT_ALL_TABLES','')); +set session tokudb_enable_fast_update=1; insert into tt values (0,0) on duplicate key update x=x+1; insert into tt values (1,0) on duplicate key update x=x+1; insert into tt values (2,0) on duplicate key update x=x+1; @@ -215,106 +210,106 @@ insert into tt values (96,0) on duplicate key update x=x+1; insert into tt values (97,0) on duplicate key update x=x+1; insert into tt values (98,0) on duplicate key update x=x+1; insert into tt values (99,0) on duplicate key update x=x+1; -update noar tt set x=x+1 where id=0; -update noar tt set x=x+1 where id=1; -update noar tt set x=x+1 where id=2; -update noar tt set x=x+1 where id=3; -update noar tt set x=x+1 where id=4; -update noar tt set x=x+1 where id=5; -update noar tt set x=x+1 where id=6; -update noar tt set x=x+1 where id=7; -update noar tt set x=x+1 where id=8; -update noar tt set x=x+1 where id=9; -update noar tt set x=x+1 where id=10; -update noar tt set x=x+1 where id=11; -update noar tt set x=x+1 where id=12; -update noar tt set x=x+1 where id=13; -update noar tt set x=x+1 where id=14; -update noar tt set x=x+1 where id=15; -update noar tt set x=x+1 where id=16; -update noar tt set x=x+1 where id=17; -update noar tt set x=x+1 where id=18; -update noar tt set x=x+1 where id=19; -update noar tt set x=x+1 where id=20; -update noar tt set x=x+1 where id=21; -update noar tt set x=x+1 where id=22; -update noar tt set x=x+1 where id=23; -update noar tt set x=x+1 where id=24; -update noar tt set x=x+1 where id=25; -update noar tt set x=x+1 where id=26; -update noar tt set x=x+1 where id=27; -update noar tt set x=x+1 where id=28; -update noar tt set x=x+1 where id=29; -update noar tt set x=x+1 where id=30; -update noar tt set x=x+1 where id=31; -update noar tt set x=x+1 where id=32; -update noar tt set x=x+1 where id=33; -update noar tt set x=x+1 where id=34; -update noar tt set x=x+1 where id=35; -update noar tt set x=x+1 where id=36; -update noar tt set x=x+1 where id=37; -update noar tt set x=x+1 where id=38; -update noar tt set x=x+1 where id=39; -update noar tt set x=x+1 where id=40; -update noar tt set x=x+1 where id=41; -update noar tt set x=x+1 where id=42; -update noar tt set x=x+1 where id=43; -update noar tt set x=x+1 where id=44; -update noar tt set x=x+1 where id=45; -update noar tt set x=x+1 where id=46; -update noar tt set x=x+1 where id=47; -update noar tt set x=x+1 where id=48; -update noar tt set x=x+1 where id=49; -update noar tt set x=x+1 where id=50; -update noar tt set x=x+1 where id=51; -update noar tt set x=x+1 where id=52; -update noar tt set x=x+1 where id=53; -update noar tt set x=x+1 where id=54; -update noar tt set x=x+1 where id=55; -update noar tt set x=x+1 where id=56; -update noar tt set x=x+1 where id=57; -update noar tt set x=x+1 where id=58; -update noar tt set x=x+1 where id=59; -update noar tt set x=x+1 where id=60; -update noar tt set x=x+1 where id=61; -update noar tt set x=x+1 where id=62; -update noar tt set x=x+1 where id=63; -update noar tt set x=x+1 where id=64; -update noar tt set x=x+1 where id=65; -update noar tt set x=x+1 where id=66; -update noar tt set x=x+1 where id=67; -update noar tt set x=x+1 where id=68; -update noar tt set x=x+1 where id=69; -update noar tt set x=x+1 where id=70; -update noar tt set x=x+1 where id=71; -update noar tt set x=x+1 where id=72; -update noar tt set x=x+1 where id=73; -update noar tt set x=x+1 where id=74; -update noar tt set x=x+1 where id=75; -update noar tt set x=x+1 where id=76; -update noar tt set x=x+1 where id=77; -update noar tt set x=x+1 where id=78; -update noar tt set x=x+1 where id=79; -update noar tt set x=x+1 where id=80; -update noar tt set x=x+1 where id=81; -update noar tt set x=x+1 where id=82; -update noar tt set x=x+1 where id=83; -update noar tt set x=x+1 where id=84; -update noar tt set x=x+1 where id=85; -update noar tt set x=x+1 where id=86; -update noar tt set x=x+1 where id=87; -update noar tt set x=x+1 where id=88; -update noar tt set x=x+1 where id=89; -update noar tt set x=x+1 where id=90; -update noar tt set x=x+1 where id=91; -update noar tt set x=x+1 where id=92; -update noar tt set x=x+1 where id=93; -update noar tt set x=x+1 where id=94; -update noar tt set x=x+1 where id=95; -update noar tt set x=x+1 where id=96; -update noar tt set x=x+1 where id=97; -update noar tt set x=x+1 where id=98; -update noar tt set x=x+1 where id=99; +update tt set x=x+1 where id=0; +update tt set x=x+1 where id=1; +update tt set x=x+1 where id=2; +update tt set x=x+1 where id=3; +update tt set x=x+1 where id=4; +update tt set x=x+1 where id=5; +update tt set x=x+1 where id=6; +update tt set x=x+1 where id=7; +update tt set x=x+1 where id=8; +update tt set x=x+1 where id=9; +update tt set x=x+1 where id=10; +update tt set x=x+1 where id=11; +update tt set x=x+1 where id=12; +update tt set x=x+1 where id=13; +update tt set x=x+1 where id=14; +update tt set x=x+1 where id=15; +update tt set x=x+1 where id=16; +update tt set x=x+1 where id=17; +update tt set x=x+1 where id=18; +update tt set x=x+1 where id=19; +update tt set x=x+1 where id=20; +update tt set x=x+1 where id=21; +update tt set x=x+1 where id=22; +update tt set x=x+1 where id=23; +update tt set x=x+1 where id=24; +update tt set x=x+1 where id=25; +update tt set x=x+1 where id=26; +update tt set x=x+1 where id=27; +update tt set x=x+1 where id=28; +update tt set x=x+1 where id=29; +update tt set x=x+1 where id=30; +update tt set x=x+1 where id=31; +update tt set x=x+1 where id=32; +update tt set x=x+1 where id=33; +update tt set x=x+1 where id=34; +update tt set x=x+1 where id=35; +update tt set x=x+1 where id=36; +update tt set x=x+1 where id=37; +update tt set x=x+1 where id=38; +update tt set x=x+1 where id=39; +update tt set x=x+1 where id=40; +update tt set x=x+1 where id=41; +update tt set x=x+1 where id=42; +update tt set x=x+1 where id=43; +update tt set x=x+1 where id=44; +update tt set x=x+1 where id=45; +update tt set x=x+1 where id=46; +update tt set x=x+1 where id=47; +update tt set x=x+1 where id=48; +update tt set x=x+1 where id=49; +update tt set x=x+1 where id=50; +update tt set x=x+1 where id=51; +update tt set x=x+1 where id=52; +update tt set x=x+1 where id=53; +update tt set x=x+1 where id=54; +update tt set x=x+1 where id=55; +update tt set x=x+1 where id=56; +update tt set x=x+1 where id=57; +update tt set x=x+1 where id=58; +update tt set x=x+1 where id=59; +update tt set x=x+1 where id=60; +update tt set x=x+1 where id=61; +update tt set x=x+1 where id=62; +update tt set x=x+1 where id=63; +update tt set x=x+1 where id=64; +update tt set x=x+1 where id=65; +update tt set x=x+1 where id=66; +update tt set x=x+1 where id=67; +update tt set x=x+1 where id=68; +update tt set x=x+1 where id=69; +update tt set x=x+1 where id=70; +update tt set x=x+1 where id=71; +update tt set x=x+1 where id=72; +update tt set x=x+1 where id=73; +update tt set x=x+1 where id=74; +update tt set x=x+1 where id=75; +update tt set x=x+1 where id=76; +update tt set x=x+1 where id=77; +update tt set x=x+1 where id=78; +update tt set x=x+1 where id=79; +update tt set x=x+1 where id=80; +update tt set x=x+1 where id=81; +update tt set x=x+1 where id=82; +update tt set x=x+1 where id=83; +update tt set x=x+1 where id=84; +update tt set x=x+1 where id=85; +update tt set x=x+1 where id=86; +update tt set x=x+1 where id=87; +update tt set x=x+1 where id=88; +update tt set x=x+1 where id=89; +update tt set x=x+1 where id=90; +update tt set x=x+1 where id=91; +update tt set x=x+1 where id=92; +update tt set x=x+1 where id=93; +update tt set x=x+1 where id=94; +update tt set x=x+1 where id=95; +update tt set x=x+1 where id=96; +update tt set x=x+1 where id=97; +update tt set x=x+1 where id=98; +update tt set x=x+1 where id=99; select * from tt where x != 2; id x include/diff_tables.inc [master:test.tt, slave:test.tt] diff --git a/storage/tokudb/mysql-test/tokudb/r/fast_update_binlog_row.result b/storage/tokudb/mysql-test/tokudb/r/fast_update_binlog_row.result index a2185b0705f..e48cfc01292 100644 --- a/storage/tokudb/mysql-test/tokudb/r/fast_update_binlog_row.result +++ b/storage/tokudb/mysql-test/tokudb/r/fast_update_binlog_row.result @@ -1,14 +1,15 @@ -set default_storage_engine='tokudb'; -create table tt (id int primary key, x int); -set session tokudb_disable_slow_upsert=1; -insert noar into tt values (1,0); -insert noar into tt values (1,0) on duplicate key update x=x+1; +create table tt (id int primary key, x int) engine = tokudb; +set session sql_mode=(select replace(@@sql_mode,'STRICT_TRANS_TABLES','')); +set session sql_mode=(select replace(@@sql_mode,'STRICT_ALL_TABLES','')); +set session tokudb_enable_fast_update=1; +set session tokudb_enable_fast_upsert=1; +insert into tt values (1,0); +insert into tt values (1,0) on duplicate key update x=x+1; ERROR 42000: Table 'tt' uses an extension that doesn't exist in this XYZ version -insert noar into tt values (2,0) on duplicate key update x=x+1; +insert into tt values (2,0) on duplicate key update x=x+1; ERROR 42000: Table 'tt' uses an extension that doesn't exist in this XYZ version -set session tokudb_disable_slow_update=1; -update noar tt set x=x+1 where id=1; +update tt set x=x+1 where id=1; ERROR 42000: Table 'tt' uses an extension that doesn't exist in this XYZ version -update noar tt set x=x+1 where id=2; +update tt set x=x+1 where id=2; ERROR 42000: Table 'tt' uses an extension that doesn't exist in this XYZ version drop table tt; diff --git a/storage/tokudb/mysql-test/tokudb/r/fast_update_binlog_statement.result b/storage/tokudb/mysql-test/tokudb/r/fast_update_binlog_statement.result index b21d58d2754..7d974affb9d 100644 --- a/storage/tokudb/mysql-test/tokudb/r/fast_update_binlog_statement.result +++ b/storage/tokudb/mysql-test/tokudb/r/fast_update_binlog_statement.result @@ -3,21 +3,13 @@ Warnings: Note #### Sending passwords in plain text without SSL/TLS is extremely insecure. Note #### Storing MySQL user name or password information in the master info repository is not secure and is therefore not recommended. Please consider using the USER and PASSWORD connection options for START SLAVE; see the 'START SLAVE Syntax' in the MySQL Manual for more information. [connection master] -set default_storage_engine='tokudb'; -create table tt (id int primary key, x int); -set session tokudb_disable_slow_upsert=1; -show variables like 'binlog_format'; -Variable_name Value -binlog_format STATEMENT -show variables like 'server_id'; -Variable_name Value -server_id 1 -show variables like 'binlog_format'; -Variable_name Value -binlog_format STATEMENT -show variables like 'server_id'; -Variable_name Value -server_id 2 +create table tt (id int primary key, x int) engine = tokudb; +set session sql_mode=(select replace(@@sql_mode,'STRICT_TRANS_TABLES','')); +set session sql_mode=(select replace(@@sql_mode,'STRICT_ALL_TABLES','')); +set session tokudb_enable_fast_update=1; +set session sql_mode=(select replace(@@sql_mode,'STRICT_TRANS_TABLES','')); +set session sql_mode=(select replace(@@sql_mode,'STRICT_ALL_TABLES','')); +set session tokudb_enable_fast_update=1; insert into tt values (0,0) on duplicate key update x=x+1; insert into tt values (1,0) on duplicate key update x=x+1; insert into tt values (2,0) on duplicate key update x=x+1; @@ -218,106 +210,106 @@ insert into tt values (96,0) on duplicate key update x=x+1; insert into tt values (97,0) on duplicate key update x=x+1; insert into tt values (98,0) on duplicate key update x=x+1; insert into tt values (99,0) on duplicate key update x=x+1; -update noar tt set x=x+1 where id=0; -update noar tt set x=x+1 where id=1; -update noar tt set x=x+1 where id=2; -update noar tt set x=x+1 where id=3; -update noar tt set x=x+1 where id=4; -update noar tt set x=x+1 where id=5; -update noar tt set x=x+1 where id=6; -update noar tt set x=x+1 where id=7; -update noar tt set x=x+1 where id=8; -update noar tt set x=x+1 where id=9; -update noar tt set x=x+1 where id=10; -update noar tt set x=x+1 where id=11; -update noar tt set x=x+1 where id=12; -update noar tt set x=x+1 where id=13; -update noar tt set x=x+1 where id=14; -update noar tt set x=x+1 where id=15; -update noar tt set x=x+1 where id=16; -update noar tt set x=x+1 where id=17; -update noar tt set x=x+1 where id=18; -update noar tt set x=x+1 where id=19; -update noar tt set x=x+1 where id=20; -update noar tt set x=x+1 where id=21; -update noar tt set x=x+1 where id=22; -update noar tt set x=x+1 where id=23; -update noar tt set x=x+1 where id=24; -update noar tt set x=x+1 where id=25; -update noar tt set x=x+1 where id=26; -update noar tt set x=x+1 where id=27; -update noar tt set x=x+1 where id=28; -update noar tt set x=x+1 where id=29; -update noar tt set x=x+1 where id=30; -update noar tt set x=x+1 where id=31; -update noar tt set x=x+1 where id=32; -update noar tt set x=x+1 where id=33; -update noar tt set x=x+1 where id=34; -update noar tt set x=x+1 where id=35; -update noar tt set x=x+1 where id=36; -update noar tt set x=x+1 where id=37; -update noar tt set x=x+1 where id=38; -update noar tt set x=x+1 where id=39; -update noar tt set x=x+1 where id=40; -update noar tt set x=x+1 where id=41; -update noar tt set x=x+1 where id=42; -update noar tt set x=x+1 where id=43; -update noar tt set x=x+1 where id=44; -update noar tt set x=x+1 where id=45; -update noar tt set x=x+1 where id=46; -update noar tt set x=x+1 where id=47; -update noar tt set x=x+1 where id=48; -update noar tt set x=x+1 where id=49; -update noar tt set x=x+1 where id=50; -update noar tt set x=x+1 where id=51; -update noar tt set x=x+1 where id=52; -update noar tt set x=x+1 where id=53; -update noar tt set x=x+1 where id=54; -update noar tt set x=x+1 where id=55; -update noar tt set x=x+1 where id=56; -update noar tt set x=x+1 where id=57; -update noar tt set x=x+1 where id=58; -update noar tt set x=x+1 where id=59; -update noar tt set x=x+1 where id=60; -update noar tt set x=x+1 where id=61; -update noar tt set x=x+1 where id=62; -update noar tt set x=x+1 where id=63; -update noar tt set x=x+1 where id=64; -update noar tt set x=x+1 where id=65; -update noar tt set x=x+1 where id=66; -update noar tt set x=x+1 where id=67; -update noar tt set x=x+1 where id=68; -update noar tt set x=x+1 where id=69; -update noar tt set x=x+1 where id=70; -update noar tt set x=x+1 where id=71; -update noar tt set x=x+1 where id=72; -update noar tt set x=x+1 where id=73; -update noar tt set x=x+1 where id=74; -update noar tt set x=x+1 where id=75; -update noar tt set x=x+1 where id=76; -update noar tt set x=x+1 where id=77; -update noar tt set x=x+1 where id=78; -update noar tt set x=x+1 where id=79; -update noar tt set x=x+1 where id=80; -update noar tt set x=x+1 where id=81; -update noar tt set x=x+1 where id=82; -update noar tt set x=x+1 where id=83; -update noar tt set x=x+1 where id=84; -update noar tt set x=x+1 where id=85; -update noar tt set x=x+1 where id=86; -update noar tt set x=x+1 where id=87; -update noar tt set x=x+1 where id=88; -update noar tt set x=x+1 where id=89; -update noar tt set x=x+1 where id=90; -update noar tt set x=x+1 where id=91; -update noar tt set x=x+1 where id=92; -update noar tt set x=x+1 where id=93; -update noar tt set x=x+1 where id=94; -update noar tt set x=x+1 where id=95; -update noar tt set x=x+1 where id=96; -update noar tt set x=x+1 where id=97; -update noar tt set x=x+1 where id=98; -update noar tt set x=x+1 where id=99; +update tt set x=x+1 where id=0; +update tt set x=x+1 where id=1; +update tt set x=x+1 where id=2; +update tt set x=x+1 where id=3; +update tt set x=x+1 where id=4; +update tt set x=x+1 where id=5; +update tt set x=x+1 where id=6; +update tt set x=x+1 where id=7; +update tt set x=x+1 where id=8; +update tt set x=x+1 where id=9; +update tt set x=x+1 where id=10; +update tt set x=x+1 where id=11; +update tt set x=x+1 where id=12; +update tt set x=x+1 where id=13; +update tt set x=x+1 where id=14; +update tt set x=x+1 where id=15; +update tt set x=x+1 where id=16; +update tt set x=x+1 where id=17; +update tt set x=x+1 where id=18; +update tt set x=x+1 where id=19; +update tt set x=x+1 where id=20; +update tt set x=x+1 where id=21; +update tt set x=x+1 where id=22; +update tt set x=x+1 where id=23; +update tt set x=x+1 where id=24; +update tt set x=x+1 where id=25; +update tt set x=x+1 where id=26; +update tt set x=x+1 where id=27; +update tt set x=x+1 where id=28; +update tt set x=x+1 where id=29; +update tt set x=x+1 where id=30; +update tt set x=x+1 where id=31; +update tt set x=x+1 where id=32; +update tt set x=x+1 where id=33; +update tt set x=x+1 where id=34; +update tt set x=x+1 where id=35; +update tt set x=x+1 where id=36; +update tt set x=x+1 where id=37; +update tt set x=x+1 where id=38; +update tt set x=x+1 where id=39; +update tt set x=x+1 where id=40; +update tt set x=x+1 where id=41; +update tt set x=x+1 where id=42; +update tt set x=x+1 where id=43; +update tt set x=x+1 where id=44; +update tt set x=x+1 where id=45; +update tt set x=x+1 where id=46; +update tt set x=x+1 where id=47; +update tt set x=x+1 where id=48; +update tt set x=x+1 where id=49; +update tt set x=x+1 where id=50; +update tt set x=x+1 where id=51; +update tt set x=x+1 where id=52; +update tt set x=x+1 where id=53; +update tt set x=x+1 where id=54; +update tt set x=x+1 where id=55; +update tt set x=x+1 where id=56; +update tt set x=x+1 where id=57; +update tt set x=x+1 where id=58; +update tt set x=x+1 where id=59; +update tt set x=x+1 where id=60; +update tt set x=x+1 where id=61; +update tt set x=x+1 where id=62; +update tt set x=x+1 where id=63; +update tt set x=x+1 where id=64; +update tt set x=x+1 where id=65; +update tt set x=x+1 where id=66; +update tt set x=x+1 where id=67; +update tt set x=x+1 where id=68; +update tt set x=x+1 where id=69; +update tt set x=x+1 where id=70; +update tt set x=x+1 where id=71; +update tt set x=x+1 where id=72; +update tt set x=x+1 where id=73; +update tt set x=x+1 where id=74; +update tt set x=x+1 where id=75; +update tt set x=x+1 where id=76; +update tt set x=x+1 where id=77; +update tt set x=x+1 where id=78; +update tt set x=x+1 where id=79; +update tt set x=x+1 where id=80; +update tt set x=x+1 where id=81; +update tt set x=x+1 where id=82; +update tt set x=x+1 where id=83; +update tt set x=x+1 where id=84; +update tt set x=x+1 where id=85; +update tt set x=x+1 where id=86; +update tt set x=x+1 where id=87; +update tt set x=x+1 where id=88; +update tt set x=x+1 where id=89; +update tt set x=x+1 where id=90; +update tt set x=x+1 where id=91; +update tt set x=x+1 where id=92; +update tt set x=x+1 where id=93; +update tt set x=x+1 where id=94; +update tt set x=x+1 where id=95; +update tt set x=x+1 where id=96; +update tt set x=x+1 where id=97; +update tt set x=x+1 where id=98; +update tt set x=x+1 where id=99; select * from tt where x != 2; id x include/diff_tables.inc [master:test.tt, slave:test.tt] diff --git a/storage/tokudb/mysql-test/tokudb/r/fast_update_blobs.result b/storage/tokudb/mysql-test/tokudb/r/fast_update_blobs.result index 39e0eadf9b8..4a963777fc0 100644 --- a/storage/tokudb/mysql-test/tokudb/r/fast_update_blobs.result +++ b/storage/tokudb/mysql-test/tokudb/r/fast_update_blobs.result @@ -1,18252 +1 @@ -set default_storage_engine='tokudb'; -drop table if exists t; -create table tt (id bigint unsigned primary key, -b0 tinyblob null, -b1 tinyblob null, -b2 tinyblob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set b0='O3XN3EYXMGZTZN1K5U5MZVJSTCI' where id=1; -update noar ti set b0='O3XN3EYXMGZTZN1K5U5MZVJSTCI' where id=1; -update noar tt set b1='NUJSL2DPUO3Y2VJJMOXGIKD5' where id=1; -update noar ti set b1='NUJSL2DPUO3Y2VJJMOXGIKD5' where id=1; -update noar tt set b2='GYH1A64A160VD620KTYFI0LMWTHTQ' where id=1; -update noar ti set b2='GYH1A64A160VD620KTYFI0LMWTHTQ' where id=1; -update noar tt set b0='R6NPFB2F' where id=2; -update noar ti set b0='R6NPFB2F' where id=2; -update noar tt set b1='I2FJYHVA88B5QIRGWO' where id=2; -update noar ti set b1='I2FJYHVA88B5QIRGWO' where id=2; -update noar tt set b2='VXNCR7V92TOSSD4S9CP1LU2QS7OYWI' where id=2; -update noar ti set b2='VXNCR7V92TOSSD4S9CP1LU2QS7OYWI' where id=2; -update noar tt set b0='0UQ09GUSN08XS' where id=3; -update noar ti set b0='0UQ09GUSN08XS' where id=3; -update noar tt set b1='5LWNM0Y07MT1PW2' where id=3; -update noar ti set b1='5LWNM0Y07MT1PW2' where id=3; -update noar tt set b2='HN4' where id=3; -update noar ti set b2='HN4' where id=3; -update noar tt set b0='C1QZDQRLS0PTQBP' where id=4; -update noar ti set b0='C1QZDQRLS0PTQBP' where id=4; -update noar tt set b1='143H1LL68O8ZQJI7K99JQVLCZ9' where id=4; -update noar ti set b1='143H1LL68O8ZQJI7K99JQVLCZ9' where id=4; -update noar tt set b2='4YOVMJ' where id=4; -update noar ti set b2='4YOVMJ' where id=4; -update noar tt set b0='T9SL9H4JFRX5BXQBG' where id=5; -update noar ti set b0='T9SL9H4JFRX5BXQBG' where id=5; -update noar tt set b1='IERUZ3U5PS27T7' where id=5; -update noar ti set b1='IERUZ3U5PS27T7' where id=5; -update noar tt set b2='3FJ10AUIZ70MM9N11G4GZ2SD' where id=5; -update noar ti set b2='3FJ10AUIZ70MM9N11G4GZ2SD' where id=5; -update noar tt set b0='2NW6C3TI50EG0EP8UXI4LDLQ8Q6AG02' where id=6; -update noar ti set b0='2NW6C3TI50EG0EP8UXI4LDLQ8Q6AG02' where id=6; -update noar tt set b1='W52A7GZSPSTEMZU80PEM' where id=6; -update noar ti set b1='W52A7GZSPSTEMZU80PEM' where id=6; -update noar tt set b2='F24TFX952ZCB8LKYJK3V5RPLC216' where id=6; -update noar ti set b2='F24TFX952ZCB8LKYJK3V5RPLC216' where id=6; -update noar tt set b0='CLKM' where id=7; -update noar ti set b0='CLKM' where id=7; -update noar tt set b1='V922ZOJPOWQ8DYEU1WPLNUI2V' where id=7; -update noar ti set b1='V922ZOJPOWQ8DYEU1WPLNUI2V' where id=7; -update noar tt set b2='KJHGLHTC' where id=7; -update noar ti set b2='KJHGLHTC' where id=7; -update noar tt set b0='OGYBFJIZYQ' where id=8; -update noar ti set b0='OGYBFJIZYQ' where id=8; -update noar tt set b1='37VFBYBMAZ4I139RNG8URUOU' where id=8; -update noar ti set b1='37VFBYBMAZ4I139RNG8URUOU' where id=8; -update noar tt set b2='2IA' where id=8; -update noar ti set b2='2IA' where id=8; -update noar tt set b0='Q' where id=9; -update noar ti set b0='Q' where id=9; -update noar tt set b1='E' where id=9; -update noar ti set b1='E' where id=9; -update noar tt set b2='VICTYSWSPPYUHIPU0HCJE' where id=9; -update noar ti set b2='VICTYSWSPPYUHIPU0HCJE' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -b0 tinyblob not null, -b1 tinyblob not null, -b2 tinyblob not null -) engine=tokudb; -insert into tt values (1,'','',''); -insert into tt values (2,'','',''); -insert into tt values (3,'','',''); -insert into tt values (4,'','',''); -insert into tt values (5,'','',''); -insert into tt values (6,'','',''); -insert into tt values (7,'','',''); -insert into tt values (8,'','',''); -insert into tt values (9,'','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set b0='78I7U' where id=1; -update noar ti set b0='78I7U' where id=1; -update noar tt set b1='2E' where id=1; -update noar ti set b1='2E' where id=1; -update noar tt set b2='Q2YKT0GTIOJXMLP' where id=1; -update noar ti set b2='Q2YKT0GTIOJXMLP' where id=1; -update noar tt set b0='E92J7SF7I48BP708TPG52I5' where id=2; -update noar ti set b0='E92J7SF7I48BP708TPG52I5' where id=2; -update noar tt set b1='R1Z9BSQKSB2SNUEYBP' where id=2; -update noar ti set b1='R1Z9BSQKSB2SNUEYBP' where id=2; -update noar tt set b2='4CE0T3D4V5LKBQKPR' where id=2; -update noar ti set b2='4CE0T3D4V5LKBQKPR' where id=2; -update noar tt set b0='T48NWMCR57OKPX5TYOV4U0' where id=3; -update noar ti set b0='T48NWMCR57OKPX5TYOV4U0' where id=3; -update noar tt set b1='81PWG56P2IG' where id=3; -update noar ti set b1='81PWG56P2IG' where id=3; -update noar tt set b2='RDGBM1UKE1JMOWHMX' where id=3; -update noar ti set b2='RDGBM1UKE1JMOWHMX' where id=3; -update noar tt set b0='I7SF7FI49T' where id=4; -update noar ti set b0='I7SF7FI49T' where id=4; -update noar tt set b1='7W2SY6IPNVID3Z9VA5VK51' where id=4; -update noar ti set b1='7W2SY6IPNVID3Z9VA5VK51' where id=4; -update noar tt set b2='J1SN8MNYDL69E7ZT1' where id=4; -update noar ti set b2='J1SN8MNYDL69E7ZT1' where id=4; -update noar tt set b0='ZQGK' where id=5; -update noar ti set b0='ZQGK' where id=5; -update noar tt set b1='V1H7K4A7VL5YC8' where id=5; -update noar ti set b1='V1H7K4A7VL5YC8' where id=5; -update noar tt set b2='WXXGE8SNSOG0SYKJTUUFP3TT' where id=5; -update noar ti set b2='WXXGE8SNSOG0SYKJTUUFP3TT' where id=5; -update noar tt set b0='I3JCH6NJX8M6675' where id=6; -update noar ti set b0='I3JCH6NJX8M6675' where id=6; -update noar tt set b1='ONSN97QXAQHJN' where id=6; -update noar ti set b1='ONSN97QXAQHJN' where id=6; -update noar tt set b2='SDSEY521KDIYIAJQ' where id=6; -update noar ti set b2='SDSEY521KDIYIAJQ' where id=6; -update noar tt set b0='7AUYSC9VLF0GUZXVWY1XGG125JDM2BD' where id=7; -update noar ti set b0='7AUYSC9VLF0GUZXVWY1XGG125JDM2BD' where id=7; -update noar tt set b1='TW2N' where id=7; -update noar ti set b1='TW2N' where id=7; -update noar tt set b2='UBOG0O1TQRMF44XE2LPILC5HUTB' where id=7; -update noar ti set b2='UBOG0O1TQRMF44XE2LPILC5HUTB' where id=7; -update noar tt set b0='RNILQ' where id=8; -update noar ti set b0='RNILQ' where id=8; -update noar tt set b1='Y4K42HA5ZBKY1GSCYHHRABS3' where id=8; -update noar ti set b1='Y4K42HA5ZBKY1GSCYHHRABS3' where id=8; -update noar tt set b2='K83J4' where id=8; -update noar ti set b2='K83J4' where id=8; -update noar tt set b0='SGIG8LERFZH5IN4' where id=9; -update noar ti set b0='SGIG8LERFZH5IN4' where id=9; -update noar tt set b1='DOB38I74JNL' where id=9; -update noar ti set b1='DOB38I74JNL' where id=9; -update noar tt set b2='NF7GFC2OWLCIL1FK' where id=9; -update noar ti set b2='NF7GFC2OWLCIL1FK' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -b0 tinyblob null, -b1 tinyblob null, -b2 blob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set b0='2ZMNW7MOI7XPC1SFNTNERTRG' where id=1; -update noar ti set b0='2ZMNW7MOI7XPC1SFNTNERTRG' where id=1; -update noar tt set b1='BYMTR69R' where id=1; -update noar ti set b1='BYMTR69R' where id=1; -update noar tt set b2='HL7' where id=1; -update noar ti set b2='HL7' where id=1; -update noar tt set b0='OZY1X19RJPGK8X00FRJL2F2NX' where id=2; -update noar ti set b0='OZY1X19RJPGK8X00FRJL2F2NX' where id=2; -update noar tt set b1='O2' where id=2; -update noar ti set b1='O2' where id=2; -update noar tt set b2='OTXZ24LPI7XYS7R26PNZ8' where id=2; -update noar ti set b2='OTXZ24LPI7XYS7R26PNZ8' where id=2; -update noar tt set b0='WNS6QDEXUIN7XIPE6G7HCI7I9NANP214' where id=3; -update noar ti set b0='WNS6QDEXUIN7XIPE6G7HCI7I9NANP214' where id=3; -update noar tt set b1='XUH4VZ1V67H5YZEPT8OVG9H7KFJ' where id=3; -update noar ti set b1='XUH4VZ1V67H5YZEPT8OVG9H7KFJ' where id=3; -update noar tt set b2='0EAC437AZVUO' where id=3; -update noar ti set b2='0EAC437AZVUO' where id=3; -update noar tt set b0='WM9' where id=4; -update noar ti set b0='WM9' where id=4; -update noar tt set b1='DF' where id=4; -update noar ti set b1='DF' where id=4; -update noar tt set b2='JWDAVSRXZYL6JBCEYU6YJXI3XPAGQ' where id=4; -update noar ti set b2='JWDAVSRXZYL6JBCEYU6YJXI3XPAGQ' where id=4; -update noar tt set b0='1' where id=5; -update noar ti set b0='1' where id=5; -update noar tt set b1='HOMT' where id=5; -update noar ti set b1='HOMT' where id=5; -update noar tt set b2='611LSHXW6C6' where id=5; -update noar ti set b2='611LSHXW6C6' where id=5; -update noar tt set b0='JMSBV35M4WX32UTN6' where id=6; -update noar ti set b0='JMSBV35M4WX32UTN6' where id=6; -update noar tt set b1='JQXWCHWG29RUAFA505RJU' where id=6; -update noar ti set b1='JQXWCHWG29RUAFA505RJU' where id=6; -update noar tt set b2='J96ILGE2OIV4N806O9PDLOJ' where id=6; -update noar ti set b2='J96ILGE2OIV4N806O9PDLOJ' where id=6; -update noar tt set b0='XO1VG8FBRDZD0SPU81NM' where id=7; -update noar ti set b0='XO1VG8FBRDZD0SPU81NM' where id=7; -update noar tt set b1='KY0MJVN' where id=7; -update noar ti set b1='KY0MJVN' where id=7; -update noar tt set b2='DNQ' where id=7; -update noar ti set b2='DNQ' where id=7; -update noar tt set b0='8XEKKIYOYS' where id=8; -update noar ti set b0='8XEKKIYOYS' where id=8; -update noar tt set b1='COVKXI827HCTZXZN8JHAC934JESF' where id=8; -update noar ti set b1='COVKXI827HCTZXZN8JHAC934JESF' where id=8; -update noar tt set b2='MA9SYQHPSQPDZMA9X' where id=8; -update noar ti set b2='MA9SYQHPSQPDZMA9X' where id=8; -update noar tt set b0='JQSW65RE1F6DI275' where id=9; -update noar ti set b0='JQSW65RE1F6DI275' where id=9; -update noar tt set b1='1LTAL1EJVLMJ4DAQY1OTX4I8ZOEDDS' where id=9; -update noar ti set b1='1LTAL1EJVLMJ4DAQY1OTX4I8ZOEDDS' where id=9; -update noar tt set b2='A8' where id=9; -update noar ti set b2='A8' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -b0 tinyblob not null, -b1 tinyblob not null, -b2 blob not null -) engine=tokudb; -insert into tt values (1,'','',''); -insert into tt values (2,'','',''); -insert into tt values (3,'','',''); -insert into tt values (4,'','',''); -insert into tt values (5,'','',''); -insert into tt values (6,'','',''); -insert into tt values (7,'','',''); -insert into tt values (8,'','',''); -insert into tt values (9,'','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set b0='VQOCKPL5H5DVLKVGMILZB0GZIK623L' where id=1; -update noar ti set b0='VQOCKPL5H5DVLKVGMILZB0GZIK623L' where id=1; -update noar tt set b1='3MRBTKCK069RHIDH1G51E' where id=1; -update noar ti set b1='3MRBTKCK069RHIDH1G51E' where id=1; -update noar tt set b2='IRFBLSQK734N83DBVL9C7OM56726' where id=1; -update noar ti set b2='IRFBLSQK734N83DBVL9C7OM56726' where id=1; -update noar tt set b0='5E0MA' where id=2; -update noar ti set b0='5E0MA' where id=2; -update noar tt set b1='YCS1EEK83OL' where id=2; -update noar ti set b1='YCS1EEK83OL' where id=2; -update noar tt set b2='PSTHRKGQDURK' where id=2; -update noar ti set b2='PSTHRKGQDURK' where id=2; -update noar tt set b0='H' where id=3; -update noar ti set b0='H' where id=3; -update noar tt set b1='R8WJJVIJV98M2SG0KIZG0SC9' where id=3; -update noar ti set b1='R8WJJVIJV98M2SG0KIZG0SC9' where id=3; -update noar tt set b2='ZYNCPB2CR42I7EPP7UQYVMLM' where id=3; -update noar ti set b2='ZYNCPB2CR42I7EPP7UQYVMLM' where id=3; -update noar tt set b0='1B1H2FKGCWOICZ83MAHE3O' where id=4; -update noar ti set b0='1B1H2FKGCWOICZ83MAHE3O' where id=4; -update noar tt set b1='WRHNYKV2B5LXAH70GPSPGG5' where id=4; -update noar ti set b1='WRHNYKV2B5LXAH70GPSPGG5' where id=4; -update noar tt set b2='S7SYT3T4EZGZ7VOQ88T5J2Z6TIJD2JLJ' where id=4; -update noar ti set b2='S7SYT3T4EZGZ7VOQ88T5J2Z6TIJD2JLJ' where id=4; -update noar tt set b0='72SNGZS4Q6OYF6EKM6KCCZRRJ57' where id=5; -update noar ti set b0='72SNGZS4Q6OYF6EKM6KCCZRRJ57' where id=5; -update noar tt set b1='T8F3D1PBIYHWGFBF83G025W' where id=5; -update noar ti set b1='T8F3D1PBIYHWGFBF83G025W' where id=5; -update noar tt set b2='9' where id=5; -update noar ti set b2='9' where id=5; -update noar tt set b0='3PAQF3PS3D89H' where id=6; -update noar ti set b0='3PAQF3PS3D89H' where id=6; -update noar tt set b1='Z5Y8S9X56BBZ29BXTDN1P1V' where id=6; -update noar ti set b1='Z5Y8S9X56BBZ29BXTDN1P1V' where id=6; -update noar tt set b2='X252FUABR21UFQBQDP2WNGDXMT' where id=6; -update noar ti set b2='X252FUABR21UFQBQDP2WNGDXMT' where id=6; -update noar tt set b0='DALFKMTLJZ5BXRG4EKS2FHLMVXPQL' where id=7; -update noar ti set b0='DALFKMTLJZ5BXRG4EKS2FHLMVXPQL' where id=7; -update noar tt set b1='RPQ8H6VEL5O6' where id=7; -update noar ti set b1='RPQ8H6VEL5O6' where id=7; -update noar tt set b2='ZF0DNOYMWRDWNNIS3HZY6WGU0NKI6EJ' where id=7; -update noar ti set b2='ZF0DNOYMWRDWNNIS3HZY6WGU0NKI6EJ' where id=7; -update noar tt set b0='Z4O3V4T5W' where id=8; -update noar ti set b0='Z4O3V4T5W' where id=8; -update noar tt set b1='12YE' where id=8; -update noar ti set b1='12YE' where id=8; -update noar tt set b2='GX5T10S2D5OGE9J1AMUNU1JPCZQ2' where id=8; -update noar ti set b2='GX5T10S2D5OGE9J1AMUNU1JPCZQ2' where id=8; -update noar tt set b0='Y' where id=9; -update noar ti set b0='Y' where id=9; -update noar tt set b1='O9PN' where id=9; -update noar ti set b1='O9PN' where id=9; -update noar tt set b2='B30TY855SEBYUJ86K3AYSW84DQLZ' where id=9; -update noar ti set b2='B30TY855SEBYUJ86K3AYSW84DQLZ' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -b0 tinyblob null, -b1 tinyblob null, -b2 mediumblob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set b0='XHX7H' where id=1; -update noar ti set b0='XHX7H' where id=1; -update noar tt set b1='70248WWK1SJUXW5M7H75KWRJK' where id=1; -update noar ti set b1='70248WWK1SJUXW5M7H75KWRJK' where id=1; -update noar tt set b2='2NTMLCWX1FQ3XZXCR7D8HPK8ZQ' where id=1; -update noar ti set b2='2NTMLCWX1FQ3XZXCR7D8HPK8ZQ' where id=1; -update noar tt set b0='L4Z9' where id=2; -update noar ti set b0='L4Z9' where id=2; -update noar tt set b1='UOLOKXZIO4FR7YYXRKGNU8VYE4D9' where id=2; -update noar ti set b1='UOLOKXZIO4FR7YYXRKGNU8VYE4D9' where id=2; -update noar tt set b2='40XELRCMK59A8MW521P' where id=2; -update noar ti set b2='40XELRCMK59A8MW521P' where id=2; -update noar tt set b0='A8PKOY8Q5EVB2KZ2OFABA9LH3GOOHFS' where id=3; -update noar ti set b0='A8PKOY8Q5EVB2KZ2OFABA9LH3GOOHFS' where id=3; -update noar tt set b1='2FHUA1G4SC89LVA1OEZN48IYX6O5G3' where id=3; -update noar ti set b1='2FHUA1G4SC89LVA1OEZN48IYX6O5G3' where id=3; -update noar tt set b2='8I12GS5B9SPHRKB4WJ0PHVIUY8' where id=3; -update noar ti set b2='8I12GS5B9SPHRKB4WJ0PHVIUY8' where id=3; -update noar tt set b0='QSJ0IPK3WGQ5FR75EAD6TECBU074ZDD4' where id=4; -update noar ti set b0='QSJ0IPK3WGQ5FR75EAD6TECBU074ZDD4' where id=4; -update noar tt set b1='AB82KEF1B7K2MQHQT' where id=4; -update noar ti set b1='AB82KEF1B7K2MQHQT' where id=4; -update noar tt set b2='QC8GL01FICTFYDKD958ZA81J' where id=4; -update noar ti set b2='QC8GL01FICTFYDKD958ZA81J' where id=4; -update noar tt set b0='DQJM1A9YDKA2NDZU4IJ9NIYS3RAB' where id=5; -update noar ti set b0='DQJM1A9YDKA2NDZU4IJ9NIYS3RAB' where id=5; -update noar tt set b1='KYNBC' where id=5; -update noar ti set b1='KYNBC' where id=5; -update noar tt set b2='CGMBIPMI16L0JI3O1TB7LLO' where id=5; -update noar ti set b2='CGMBIPMI16L0JI3O1TB7LLO' where id=5; -update noar tt set b0='1I87DCEFLW' where id=6; -update noar ti set b0='1I87DCEFLW' where id=6; -update noar tt set b1='SFFIDXJU4CKXUZETTVYAL2WL' where id=6; -update noar ti set b1='SFFIDXJU4CKXUZETTVYAL2WL' where id=6; -update noar tt set b2='9LQK51TFID4GU' where id=6; -update noar ti set b2='9LQK51TFID4GU' where id=6; -update noar tt set b0='ZH3YEK8W' where id=7; -update noar ti set b0='ZH3YEK8W' where id=7; -update noar tt set b1='DH2DLTG3LX9QQCG55ZS4VNFRMF' where id=7; -update noar ti set b1='DH2DLTG3LX9QQCG55ZS4VNFRMF' where id=7; -update noar tt set b2='OLEFIDX' where id=7; -update noar ti set b2='OLEFIDX' where id=7; -update noar tt set b0='4G2DDE6S6' where id=8; -update noar ti set b0='4G2DDE6S6' where id=8; -update noar tt set b1='UQVXK0N7BZ6VL' where id=8; -update noar ti set b1='UQVXK0N7BZ6VL' where id=8; -update noar tt set b2='KERVJYBEOIYZI4RJIJAJACE86L5ZZ1LZ' where id=8; -update noar ti set b2='KERVJYBEOIYZI4RJIJAJACE86L5ZZ1LZ' where id=8; -update noar tt set b0='ZV5ZM' where id=9; -update noar ti set b0='ZV5ZM' where id=9; -update noar tt set b1='W' where id=9; -update noar ti set b1='W' where id=9; -update noar tt set b2='MT' where id=9; -update noar ti set b2='MT' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -b0 tinyblob not null, -b1 tinyblob not null, -b2 mediumblob not null -) engine=tokudb; -insert into tt values (1,'','',''); -insert into tt values (2,'','',''); -insert into tt values (3,'','',''); -insert into tt values (4,'','',''); -insert into tt values (5,'','',''); -insert into tt values (6,'','',''); -insert into tt values (7,'','',''); -insert into tt values (8,'','',''); -insert into tt values (9,'','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set b0='NUXZ5RL0IJMYU45DPNFA96OOKUSEEH4' where id=1; -update noar ti set b0='NUXZ5RL0IJMYU45DPNFA96OOKUSEEH4' where id=1; -update noar tt set b1='HRCSHQZ43RE3M4JWWZH9X2U8' where id=1; -update noar ti set b1='HRCSHQZ43RE3M4JWWZH9X2U8' where id=1; -update noar tt set b2='A5E92XIT2SJGQHL' where id=1; -update noar ti set b2='A5E92XIT2SJGQHL' where id=1; -update noar tt set b0='LQKN4SPQ4D0' where id=2; -update noar ti set b0='LQKN4SPQ4D0' where id=2; -update noar tt set b1='XEGFM13YYUXX6DZ9' where id=2; -update noar ti set b1='XEGFM13YYUXX6DZ9' where id=2; -update noar tt set b2='03Q' where id=2; -update noar ti set b2='03Q' where id=2; -update noar tt set b0='LZ5MR01QEB7NW' where id=3; -update noar ti set b0='LZ5MR01QEB7NW' where id=3; -update noar tt set b1='4XRTJXIGD6FWLO20' where id=3; -update noar ti set b1='4XRTJXIGD6FWLO20' where id=3; -update noar tt set b2='8WLU8HWLI5OBSTUK1MIO' where id=3; -update noar ti set b2='8WLU8HWLI5OBSTUK1MIO' where id=3; -update noar tt set b0='QVDNHUKS4D' where id=4; -update noar ti set b0='QVDNHUKS4D' where id=4; -update noar tt set b1='ILQ3ZX70' where id=4; -update noar ti set b1='ILQ3ZX70' where id=4; -update noar tt set b2='2GP6' where id=4; -update noar ti set b2='2GP6' where id=4; -update noar tt set b0='FD' where id=5; -update noar ti set b0='FD' where id=5; -update noar tt set b1='IKKX' where id=5; -update noar ti set b1='IKKX' where id=5; -update noar tt set b2='9TVIX7LVDPXP' where id=5; -update noar ti set b2='9TVIX7LVDPXP' where id=5; -update noar tt set b0='IIO' where id=6; -update noar ti set b0='IIO' where id=6; -update noar tt set b1='HVH0RIDW2SEIPZWEXMV8S4R53FEE' where id=6; -update noar ti set b1='HVH0RIDW2SEIPZWEXMV8S4R53FEE' where id=6; -update noar tt set b2='NVZD7TBH0JXLDF36RM' where id=6; -update noar ti set b2='NVZD7TBH0JXLDF36RM' where id=6; -update noar tt set b0='5CGJYTET3XOUB7465GENRZOXH' where id=7; -update noar ti set b0='5CGJYTET3XOUB7465GENRZOXH' where id=7; -update noar tt set b1='Q81RZ584O113C9NPBF77GLU4AK' where id=7; -update noar ti set b1='Q81RZ584O113C9NPBF77GLU4AK' where id=7; -update noar tt set b2='MFHOY' where id=7; -update noar ti set b2='MFHOY' where id=7; -update noar tt set b0='G6T8VSVL58VIR' where id=8; -update noar ti set b0='G6T8VSVL58VIR' where id=8; -update noar tt set b1='7PB8QVUESXMQGHU6T' where id=8; -update noar ti set b1='7PB8QVUESXMQGHU6T' where id=8; -update noar tt set b2='FAWC4TYYMFOF0EMZTZOKZDGE693' where id=8; -update noar ti set b2='FAWC4TYYMFOF0EMZTZOKZDGE693' where id=8; -update noar tt set b0='3PHHB4DXRIH31KRNW4ERO4JP04ZF9ZC' where id=9; -update noar ti set b0='3PHHB4DXRIH31KRNW4ERO4JP04ZF9ZC' where id=9; -update noar tt set b1='WURT2JDSMEQJ72RCFX2' where id=9; -update noar ti set b1='WURT2JDSMEQJ72RCFX2' where id=9; -update noar tt set b2='Y9QEDVCOXUPKJWC7CVKWPTUGW8' where id=9; -update noar ti set b2='Y9QEDVCOXUPKJWC7CVKWPTUGW8' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -b0 tinyblob null, -b1 tinyblob null, -b2 longblob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set b0='E' where id=1; -update noar ti set b0='E' where id=1; -update noar tt set b1='DUYTE2MT0WSCRXZEN380DMUTSYT71B' where id=1; -update noar ti set b1='DUYTE2MT0WSCRXZEN380DMUTSYT71B' where id=1; -update noar tt set b2='348CU' where id=1; -update noar ti set b2='348CU' where id=1; -update noar tt set b0='OIBQKKYIY' where id=2; -update noar ti set b0='OIBQKKYIY' where id=2; -update noar tt set b1='R976ZBP25S0X9PPOY1NNAR' where id=2; -update noar ti set b1='R976ZBP25S0X9PPOY1NNAR' where id=2; -update noar tt set b2='FBBS' where id=2; -update noar ti set b2='FBBS' where id=2; -update noar tt set b0='PUGBX1YCQ2W353' where id=3; -update noar ti set b0='PUGBX1YCQ2W353' where id=3; -update noar tt set b1='1CQ' where id=3; -update noar ti set b1='1CQ' where id=3; -update noar tt set b2='7ANSC30V' where id=3; -update noar ti set b2='7ANSC30V' where id=3; -update noar tt set b0='6ZMFLWZVLJ6ZUGYDL5M5U31BWK' where id=4; -update noar ti set b0='6ZMFLWZVLJ6ZUGYDL5M5U31BWK' where id=4; -update noar tt set b1='40LVE0SITV4FXPFM1MSKTCF9ZGM3' where id=4; -update noar ti set b1='40LVE0SITV4FXPFM1MSKTCF9ZGM3' where id=4; -update noar tt set b2='1R8' where id=4; -update noar ti set b2='1R8' where id=4; -update noar tt set b0='FWD1SAM1BDI8' where id=5; -update noar ti set b0='FWD1SAM1BDI8' where id=5; -update noar tt set b1='1ZRU1LAVEVXQ2290WQYVWKYHS9DGP3' where id=5; -update noar ti set b1='1ZRU1LAVEVXQ2290WQYVWKYHS9DGP3' where id=5; -update noar tt set b2='XA' where id=5; -update noar ti set b2='XA' where id=5; -update noar tt set b0='BI7GAOW3G' where id=6; -update noar ti set b0='BI7GAOW3G' where id=6; -update noar tt set b1='KGB' where id=6; -update noar ti set b1='KGB' where id=6; -update noar tt set b2='WLYAZVYP27KDSUILDPHYLJFOERPQEYQ3' where id=6; -update noar ti set b2='WLYAZVYP27KDSUILDPHYLJFOERPQEYQ3' where id=6; -update noar tt set b0='7YISX5CUDJH' where id=7; -update noar ti set b0='7YISX5CUDJH' where id=7; -update noar tt set b1='VODNM1OUTLYDYGZPGH5LYS2Y5PACG' where id=7; -update noar ti set b1='VODNM1OUTLYDYGZPGH5LYS2Y5PACG' where id=7; -update noar tt set b2='8R24DIUHLITO0HUDNS' where id=7; -update noar ti set b2='8R24DIUHLITO0HUDNS' where id=7; -update noar tt set b0='2OB0A6PC6VJP7PK33V6' where id=8; -update noar ti set b0='2OB0A6PC6VJP7PK33V6' where id=8; -update noar tt set b1='2TFGQ3YXC0' where id=8; -update noar ti set b1='2TFGQ3YXC0' where id=8; -update noar tt set b2='N1PK7NXUONYKEYEZXZ3HU8' where id=8; -update noar ti set b2='N1PK7NXUONYKEYEZXZ3HU8' where id=8; -update noar tt set b0='SOE02A3GUY913QQLVLUGB' where id=9; -update noar ti set b0='SOE02A3GUY913QQLVLUGB' where id=9; -update noar tt set b1='VQ1JX' where id=9; -update noar ti set b1='VQ1JX' where id=9; -update noar tt set b2='64MNBYFJLP322NHM9' where id=9; -update noar ti set b2='64MNBYFJLP322NHM9' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -b0 tinyblob not null, -b1 tinyblob not null, -b2 longblob not null -) engine=tokudb; -insert into tt values (1,'','',''); -insert into tt values (2,'','',''); -insert into tt values (3,'','',''); -insert into tt values (4,'','',''); -insert into tt values (5,'','',''); -insert into tt values (6,'','',''); -insert into tt values (7,'','',''); -insert into tt values (8,'','',''); -insert into tt values (9,'','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set b0='XDAQ' where id=1; -update noar ti set b0='XDAQ' where id=1; -update noar tt set b1='VMWKBKP7A88SQURQGQJF7EX' where id=1; -update noar ti set b1='VMWKBKP7A88SQURQGQJF7EX' where id=1; -update noar tt set b2='5894HPJ9CL6' where id=1; -update noar ti set b2='5894HPJ9CL6' where id=1; -update noar tt set b0='O0RC' where id=2; -update noar ti set b0='O0RC' where id=2; -update noar tt set b1='KHHIB46XQJXJITZSF0SP4IPHPZD2P' where id=2; -update noar ti set b1='KHHIB46XQJXJITZSF0SP4IPHPZD2P' where id=2; -update noar tt set b2='XEIJOG' where id=2; -update noar ti set b2='XEIJOG' where id=2; -update noar tt set b0='77' where id=3; -update noar ti set b0='77' where id=3; -update noar tt set b1='J6NWB9ECQ7HW' where id=3; -update noar ti set b1='J6NWB9ECQ7HW' where id=3; -update noar tt set b2='8IKTO5RFV60NZO' where id=3; -update noar ti set b2='8IKTO5RFV60NZO' where id=3; -update noar tt set b0='VL3J0U18MHNWHP4UY2' where id=4; -update noar ti set b0='VL3J0U18MHNWHP4UY2' where id=4; -update noar tt set b1='HQG2U2C2KEH1QGP32' where id=4; -update noar ti set b1='HQG2U2C2KEH1QGP32' where id=4; -update noar tt set b2='2EK40KX2QPWLSI5F94C2TFA6Y9CG' where id=4; -update noar ti set b2='2EK40KX2QPWLSI5F94C2TFA6Y9CG' where id=4; -update noar tt set b0='BTXSRAYF1NI69VSLKDXGZ' where id=5; -update noar ti set b0='BTXSRAYF1NI69VSLKDXGZ' where id=5; -update noar tt set b1='RE' where id=5; -update noar ti set b1='RE' where id=5; -update noar tt set b2='6KK727IC0J0M1WWR7EYI88MTQ87' where id=5; -update noar ti set b2='6KK727IC0J0M1WWR7EYI88MTQ87' where id=5; -update noar tt set b0='S8WTCV8C9NF1PIFEX2HIUZUITT5XS7' where id=6; -update noar ti set b0='S8WTCV8C9NF1PIFEX2HIUZUITT5XS7' where id=6; -update noar tt set b1='4' where id=6; -update noar ti set b1='4' where id=6; -update noar tt set b2='IMTR26ZDPHGP57C6E3Q' where id=6; -update noar ti set b2='IMTR26ZDPHGP57C6E3Q' where id=6; -update noar tt set b0='GO0OUK72C67QUVDM5KF4N52VD2' where id=7; -update noar ti set b0='GO0OUK72C67QUVDM5KF4N52VD2' where id=7; -update noar tt set b1='8290NN8J5246IOBBQJHUZV' where id=7; -update noar ti set b1='8290NN8J5246IOBBQJHUZV' where id=7; -update noar tt set b2='OYB0N7YX1L1M31QLMO7LJ0Z5IQWM' where id=7; -update noar ti set b2='OYB0N7YX1L1M31QLMO7LJ0Z5IQWM' where id=7; -update noar tt set b0='K7OYBCJRFMJCDJ1LHNKVNXXL' where id=8; -update noar ti set b0='K7OYBCJRFMJCDJ1LHNKVNXXL' where id=8; -update noar tt set b1='1QCDJ8VLZR14ERF4VW7' where id=8; -update noar ti set b1='1QCDJ8VLZR14ERF4VW7' where id=8; -update noar tt set b2='AJBATT' where id=8; -update noar ti set b2='AJBATT' where id=8; -update noar tt set b0='STHCKDVFEWH5F8OODT' where id=9; -update noar ti set b0='STHCKDVFEWH5F8OODT' where id=9; -update noar tt set b1='150UQWNDMIX3J4SAED' where id=9; -update noar ti set b1='150UQWNDMIX3J4SAED' where id=9; -update noar tt set b2='FW3S181UYHPGD7XS9US' where id=9; -update noar ti set b2='FW3S181UYHPGD7XS9US' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -b0 tinyblob null, -b1 tinyblob null, -b2 text null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set b0='T83' where id=1; -update noar ti set b0='T83' where id=1; -update noar tt set b1='X48LAEEHK3ZH4V0NJ2YMVD' where id=1; -update noar ti set b1='X48LAEEHK3ZH4V0NJ2YMVD' where id=1; -update noar tt set b2='E6WJPGMSRHRDB' where id=1; -update noar ti set b2='E6WJPGMSRHRDB' where id=1; -update noar tt set b0='P5PHN4PM2G77JGF8Q' where id=2; -update noar ti set b0='P5PHN4PM2G77JGF8Q' where id=2; -update noar tt set b1='7C41T' where id=2; -update noar ti set b1='7C41T' where id=2; -update noar tt set b2='OYFXXMWFB5CV' where id=2; -update noar ti set b2='OYFXXMWFB5CV' where id=2; -update noar tt set b0='Y0ZQ5U2RRARVF' where id=3; -update noar ti set b0='Y0ZQ5U2RRARVF' where id=3; -update noar tt set b1='8XX12WLULLQ' where id=3; -update noar ti set b1='8XX12WLULLQ' where id=3; -update noar tt set b2='U4WNXJUWJZP8I3NQ51OAV4U7KTX9C' where id=3; -update noar ti set b2='U4WNXJUWJZP8I3NQ51OAV4U7KTX9C' where id=3; -update noar tt set b0='N7BSKZ3Y67' where id=4; -update noar ti set b0='N7BSKZ3Y67' where id=4; -update noar tt set b1='K5936GKS' where id=4; -update noar ti set b1='K5936GKS' where id=4; -update noar tt set b2='1ZO' where id=4; -update noar ti set b2='1ZO' where id=4; -update noar tt set b0='NY9DL1EZPR5' where id=5; -update noar ti set b0='NY9DL1EZPR5' where id=5; -update noar tt set b1='TQ6W4Y6KVJ6AA9QAB' where id=5; -update noar ti set b1='TQ6W4Y6KVJ6AA9QAB' where id=5; -update noar tt set b2='GP9894AUG675QNW' where id=5; -update noar ti set b2='GP9894AUG675QNW' where id=5; -update noar tt set b0='CZGZ9L99X6P9J9L4K6' where id=6; -update noar ti set b0='CZGZ9L99X6P9J9L4K6' where id=6; -update noar tt set b1='VKXYTSCF7JWFNPP1MGBEUDF5C' where id=6; -update noar ti set b1='VKXYTSCF7JWFNPP1MGBEUDF5C' where id=6; -update noar tt set b2='SLC08ZH6ABF56M4ZA2T1BR' where id=6; -update noar ti set b2='SLC08ZH6ABF56M4ZA2T1BR' where id=6; -update noar tt set b0='L' where id=7; -update noar ti set b0='L' where id=7; -update noar tt set b1='KYDSUG' where id=7; -update noar ti set b1='KYDSUG' where id=7; -update noar tt set b2='I4ZSA23JNPV5QI4KFXQIB536YAYBIE2Q' where id=7; -update noar ti set b2='I4ZSA23JNPV5QI4KFXQIB536YAYBIE2Q' where id=7; -update noar tt set b0='39A7UTUCUG6PYCJ8NA5LS' where id=8; -update noar ti set b0='39A7UTUCUG6PYCJ8NA5LS' where id=8; -update noar tt set b1='25S89JJZ' where id=8; -update noar ti set b1='25S89JJZ' where id=8; -update noar tt set b2='YTE0JXKIJ0YTDO' where id=8; -update noar ti set b2='YTE0JXKIJ0YTDO' where id=8; -update noar tt set b0='TY8TL9W8NGZTE1QMFYK3D1W426Z' where id=9; -update noar ti set b0='TY8TL9W8NGZTE1QMFYK3D1W426Z' where id=9; -update noar tt set b1='SNN' where id=9; -update noar ti set b1='SNN' where id=9; -update noar tt set b2='GTS3LG8H85VPSD69EF3X34AKL93HMN8' where id=9; -update noar ti set b2='GTS3LG8H85VPSD69EF3X34AKL93HMN8' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -b0 tinyblob not null, -b1 tinyblob not null, -b2 text not null -) engine=tokudb; -insert into tt values (1,'','',''); -insert into tt values (2,'','',''); -insert into tt values (3,'','',''); -insert into tt values (4,'','',''); -insert into tt values (5,'','',''); -insert into tt values (6,'','',''); -insert into tt values (7,'','',''); -insert into tt values (8,'','',''); -insert into tt values (9,'','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set b0='FLAD1DU9OIS5NG4U7BRH58WZ' where id=1; -update noar ti set b0='FLAD1DU9OIS5NG4U7BRH58WZ' where id=1; -update noar tt set b1='D6R0TPWR39QI4WELUE1N9139L337PIP' where id=1; -update noar ti set b1='D6R0TPWR39QI4WELUE1N9139L337PIP' where id=1; -update noar tt set b2='PT1PGFYPJIF0YQYHIZTX0CPER8NDK5' where id=1; -update noar ti set b2='PT1PGFYPJIF0YQYHIZTX0CPER8NDK5' where id=1; -update noar tt set b0='6PAC8KGF5EJZDZT' where id=2; -update noar ti set b0='6PAC8KGF5EJZDZT' where id=2; -update noar tt set b1='QB0RNZ0B76A73J7G3P9AAZQR220' where id=2; -update noar ti set b1='QB0RNZ0B76A73J7G3P9AAZQR220' where id=2; -update noar tt set b2='FWMXEQOZNZ' where id=2; -update noar ti set b2='FWMXEQOZNZ' where id=2; -update noar tt set b0='YVT4RPNTLO1G7HSQXE' where id=3; -update noar ti set b0='YVT4RPNTLO1G7HSQXE' where id=3; -update noar tt set b1='DPU3E51A9ZNWX1BJ9R3BS21GKDA' where id=3; -update noar ti set b1='DPU3E51A9ZNWX1BJ9R3BS21GKDA' where id=3; -update noar tt set b2='OB2VHDDM9SB0CI3HF3IAF' where id=3; -update noar ti set b2='OB2VHDDM9SB0CI3HF3IAF' where id=3; -update noar tt set b0='O6RM9IXR6EYFKYRAJP8DPBELZMK' where id=4; -update noar ti set b0='O6RM9IXR6EYFKYRAJP8DPBELZMK' where id=4; -update noar tt set b1='O8LUFAMEQVZOMJVUB4TGDBV' where id=4; -update noar ti set b1='O8LUFAMEQVZOMJVUB4TGDBV' where id=4; -update noar tt set b2='K6FRSLXB7BMOXMEZT7O3L0RVB' where id=4; -update noar ti set b2='K6FRSLXB7BMOXMEZT7O3L0RVB' where id=4; -update noar tt set b0='SZIE4M82QR3XSNZ3M' where id=5; -update noar ti set b0='SZIE4M82QR3XSNZ3M' where id=5; -update noar tt set b1='EODT7VSE8QDZURNG2I' where id=5; -update noar ti set b1='EODT7VSE8QDZURNG2I' where id=5; -update noar tt set b2='CQIYLXBZHF' where id=5; -update noar ti set b2='CQIYLXBZHF' where id=5; -update noar tt set b0='830KNDTN2VW2C' where id=6; -update noar ti set b0='830KNDTN2VW2C' where id=6; -update noar tt set b1='VML26A88V2GELPA2UM1E14J8' where id=6; -update noar ti set b1='VML26A88V2GELPA2UM1E14J8' where id=6; -update noar tt set b2='9OLDUH' where id=6; -update noar ti set b2='9OLDUH' where id=6; -update noar tt set b0='0C4NH6OS20EEXYT48MCGVTNT0NP' where id=7; -update noar ti set b0='0C4NH6OS20EEXYT48MCGVTNT0NP' where id=7; -update noar tt set b1='WIO6QBQUBOFRNFKKNSV' where id=7; -update noar ti set b1='WIO6QBQUBOFRNFKKNSV' where id=7; -update noar tt set b2='MHJZ6DF8JOCGG9G5NAJWT845PPWPFFN' where id=7; -update noar ti set b2='MHJZ6DF8JOCGG9G5NAJWT845PPWPFFN' where id=7; -update noar tt set b0='MGN3KRMZWRMZ59NU2ZWII' where id=8; -update noar ti set b0='MGN3KRMZWRMZ59NU2ZWII' where id=8; -update noar tt set b1='E1LLD5KHRL9E' where id=8; -update noar ti set b1='E1LLD5KHRL9E' where id=8; -update noar tt set b2='WKQWXX7U2PD9DETEEMZLI26' where id=8; -update noar ti set b2='WKQWXX7U2PD9DETEEMZLI26' where id=8; -update noar tt set b0='Z44ZNT67L2C' where id=9; -update noar ti set b0='Z44ZNT67L2C' where id=9; -update noar tt set b1='UC6X34E4EZOA1BXAGU62STY3' where id=9; -update noar ti set b1='UC6X34E4EZOA1BXAGU62STY3' where id=9; -update noar tt set b2='ZP795KUPO3' where id=9; -update noar ti set b2='ZP795KUPO3' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -b0 tinyblob null, -b1 blob null, -b2 tinyblob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set b0='W3E1BRU0QDRV7U052ZO8IYDY8' where id=1; -update noar ti set b0='W3E1BRU0QDRV7U052ZO8IYDY8' where id=1; -update noar tt set b1='1I56MCIYGN1XJ2' where id=1; -update noar ti set b1='1I56MCIYGN1XJ2' where id=1; -update noar tt set b2='YO5BN084JGRG' where id=1; -update noar ti set b2='YO5BN084JGRG' where id=1; -update noar tt set b0='1VLFX19NQ30GNIY1I2IJO0' where id=2; -update noar ti set b0='1VLFX19NQ30GNIY1I2IJO0' where id=2; -update noar tt set b1='7X2X4Q0ECDQH9Z716ML2DVQG8K' where id=2; -update noar ti set b1='7X2X4Q0ECDQH9Z716ML2DVQG8K' where id=2; -update noar tt set b2='FOAZC78KKO4N7CPBI7PFAMR3' where id=2; -update noar ti set b2='FOAZC78KKO4N7CPBI7PFAMR3' where id=2; -update noar tt set b0='BILB6BB71S5WA8S1DGNUA' where id=3; -update noar ti set b0='BILB6BB71S5WA8S1DGNUA' where id=3; -update noar tt set b1='1J6KN' where id=3; -update noar ti set b1='1J6KN' where id=3; -update noar tt set b2='S3' where id=3; -update noar ti set b2='S3' where id=3; -update noar tt set b0='3S1J5OTZW0A9RXHX9V' where id=4; -update noar ti set b0='3S1J5OTZW0A9RXHX9V' where id=4; -update noar tt set b1='YOTTW35UFC746O4KV37ILBK1WXW' where id=4; -update noar ti set b1='YOTTW35UFC746O4KV37ILBK1WXW' where id=4; -update noar tt set b2='UVRDWL1UBNWVT' where id=4; -update noar ti set b2='UVRDWL1UBNWVT' where id=4; -update noar tt set b0='KUWJPYFNL4MQXXUOS70TBOKQ5KF9TR' where id=5; -update noar ti set b0='KUWJPYFNL4MQXXUOS70TBOKQ5KF9TR' where id=5; -update noar tt set b1='GJ0QJZHLAMJV5SGC' where id=5; -update noar ti set b1='GJ0QJZHLAMJV5SGC' where id=5; -update noar tt set b2='7YZ60YY22K0AEEOIU0ZDN5' where id=5; -update noar ti set b2='7YZ60YY22K0AEEOIU0ZDN5' where id=5; -update noar tt set b0='586F' where id=6; -update noar ti set b0='586F' where id=6; -update noar tt set b1='QYJ93MZVBQWTK9B602FL' where id=6; -update noar ti set b1='QYJ93MZVBQWTK9B602FL' where id=6; -update noar tt set b2='TFL4VBCSYKY38FQPDA' where id=6; -update noar ti set b2='TFL4VBCSYKY38FQPDA' where id=6; -update noar tt set b0='5TTWSW3DPO3NT9' where id=7; -update noar ti set b0='5TTWSW3DPO3NT9' where id=7; -update noar tt set b1='GBBBC4X06T3LPN1JRBSZ' where id=7; -update noar ti set b1='GBBBC4X06T3LPN1JRBSZ' where id=7; -update noar tt set b2='GCQXIJFWLPKKCERQTS34QU4XUFWG4R' where id=7; -update noar ti set b2='GCQXIJFWLPKKCERQTS34QU4XUFWG4R' where id=7; -update noar tt set b0='ILIQQ3' where id=8; -update noar ti set b0='ILIQQ3' where id=8; -update noar tt set b1='6CAGH4E7SGX' where id=8; -update noar ti set b1='6CAGH4E7SGX' where id=8; -update noar tt set b2='98' where id=8; -update noar ti set b2='98' where id=8; -update noar tt set b0='BBIG0PVO87K' where id=9; -update noar ti set b0='BBIG0PVO87K' where id=9; -update noar tt set b1='ARJ1CMNVXQGJF6NX82' where id=9; -update noar ti set b1='ARJ1CMNVXQGJF6NX82' where id=9; -update noar tt set b2='5W9S1AF' where id=9; -update noar ti set b2='5W9S1AF' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -b0 tinyblob not null, -b1 blob not null, -b2 tinyblob not null -) engine=tokudb; -insert into tt values (1,'','',''); -insert into tt values (2,'','',''); -insert into tt values (3,'','',''); -insert into tt values (4,'','',''); -insert into tt values (5,'','',''); -insert into tt values (6,'','',''); -insert into tt values (7,'','',''); -insert into tt values (8,'','',''); -insert into tt values (9,'','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set b0='G1' where id=1; -update noar ti set b0='G1' where id=1; -update noar tt set b1='LP4PGUIVD2KVEOHG4G33P' where id=1; -update noar ti set b1='LP4PGUIVD2KVEOHG4G33P' where id=1; -update noar tt set b2='96F7VE7YN15VB52PZOA3TAXH85C' where id=1; -update noar ti set b2='96F7VE7YN15VB52PZOA3TAXH85C' where id=1; -update noar tt set b0='W31SHEPO0HUY5GV39SOW2LDW1OBUL' where id=2; -update noar ti set b0='W31SHEPO0HUY5GV39SOW2LDW1OBUL' where id=2; -update noar tt set b1='8DK9G' where id=2; -update noar ti set b1='8DK9G' where id=2; -update noar tt set b2='4O7SVQTY' where id=2; -update noar ti set b2='4O7SVQTY' where id=2; -update noar tt set b0='FUKX6X' where id=3; -update noar ti set b0='FUKX6X' where id=3; -update noar tt set b1='TPKJ4' where id=3; -update noar ti set b1='TPKJ4' where id=3; -update noar tt set b2='F7Z4Y04F4XBHYAYKD8' where id=3; -update noar ti set b2='F7Z4Y04F4XBHYAYKD8' where id=3; -update noar tt set b0='S09TJEE3VM5CWIZ3JDZ8TJ02' where id=4; -update noar ti set b0='S09TJEE3VM5CWIZ3JDZ8TJ02' where id=4; -update noar tt set b1='996' where id=4; -update noar ti set b1='996' where id=4; -update noar tt set b2='8IB0BBSXQR8Z2C4FP3GGG1K3Y9' where id=4; -update noar ti set b2='8IB0BBSXQR8Z2C4FP3GGG1K3Y9' where id=4; -update noar tt set b0='QY5KX' where id=5; -update noar ti set b0='QY5KX' where id=5; -update noar tt set b1='FI0TK' where id=5; -update noar ti set b1='FI0TK' where id=5; -update noar tt set b2='46RKT9QZG' where id=5; -update noar ti set b2='46RKT9QZG' where id=5; -update noar tt set b0='70Y4WLLLWS7YI0H7NUZN87' where id=6; -update noar ti set b0='70Y4WLLLWS7YI0H7NUZN87' where id=6; -update noar tt set b1='65UMA352KWXTE3WINMO52KN' where id=6; -update noar ti set b1='65UMA352KWXTE3WINMO52KN' where id=6; -update noar tt set b2='0KL6P4LD5MGAJ03NPU9X03BEVCPNO2' where id=6; -update noar ti set b2='0KL6P4LD5MGAJ03NPU9X03BEVCPNO2' where id=6; -update noar tt set b0='H2' where id=7; -update noar ti set b0='H2' where id=7; -update noar tt set b1='M4G61' where id=7; -update noar ti set b1='M4G61' where id=7; -update noar tt set b2='SMPY8OYCK3E5OF6N1B2X' where id=7; -update noar ti set b2='SMPY8OYCK3E5OF6N1B2X' where id=7; -update noar tt set b0='N44T19OMKUEH' where id=8; -update noar ti set b0='N44T19OMKUEH' where id=8; -update noar tt set b1='CKVR10TK6483Z553RQYV579' where id=8; -update noar ti set b1='CKVR10TK6483Z553RQYV579' where id=8; -update noar tt set b2='J3U3ZGSS3ASI2EV7168C4PPTCP4K' where id=8; -update noar ti set b2='J3U3ZGSS3ASI2EV7168C4PPTCP4K' where id=8; -update noar tt set b0='MSVCREOPDHFM8SEIEM6079YJVT' where id=9; -update noar ti set b0='MSVCREOPDHFM8SEIEM6079YJVT' where id=9; -update noar tt set b1='JPLMM7HS' where id=9; -update noar ti set b1='JPLMM7HS' where id=9; -update noar tt set b2='W11DG4Z889J1DA0YRC23Y' where id=9; -update noar ti set b2='W11DG4Z889J1DA0YRC23Y' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -b0 tinyblob null, -b1 blob null, -b2 blob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set b0='CQQ20FBKF9CLXAO8H' where id=1; -update noar ti set b0='CQQ20FBKF9CLXAO8H' where id=1; -update noar tt set b1='7D28UR82M5EQG1U8TDV4' where id=1; -update noar ti set b1='7D28UR82M5EQG1U8TDV4' where id=1; -update noar tt set b2='W' where id=1; -update noar ti set b2='W' where id=1; -update noar tt set b0='98D763XQ' where id=2; -update noar ti set b0='98D763XQ' where id=2; -update noar tt set b1='NX81TXXVGYJXRTGCBKGY8FLEV2' where id=2; -update noar ti set b1='NX81TXXVGYJXRTGCBKGY8FLEV2' where id=2; -update noar tt set b2='MAO3HC' where id=2; -update noar ti set b2='MAO3HC' where id=2; -update noar tt set b0='Y0CI' where id=3; -update noar ti set b0='Y0CI' where id=3; -update noar tt set b1='SSVK0B556CS' where id=3; -update noar ti set b1='SSVK0B556CS' where id=3; -update noar tt set b2='NM8AFB2S6T6XR5I0CMEDN9MAY' where id=3; -update noar ti set b2='NM8AFB2S6T6XR5I0CMEDN9MAY' where id=3; -update noar tt set b0='M3IHPBO' where id=4; -update noar ti set b0='M3IHPBO' where id=4; -update noar tt set b1='CV1P92O9FWKCWKBV' where id=4; -update noar ti set b1='CV1P92O9FWKCWKBV' where id=4; -update noar tt set b2='N6LZWRY04OBC3171GL3OF4LMWOWKAC8K' where id=4; -update noar ti set b2='N6LZWRY04OBC3171GL3OF4LMWOWKAC8K' where id=4; -update noar tt set b0='QR1' where id=5; -update noar ti set b0='QR1' where id=5; -update noar tt set b1='ND0WUELCVPSU' where id=5; -update noar ti set b1='ND0WUELCVPSU' where id=5; -update noar tt set b2='J58WCUVVYKXOX23IEK3B' where id=5; -update noar ti set b2='J58WCUVVYKXOX23IEK3B' where id=5; -update noar tt set b0='YPF8UO33Z66JTM64W' where id=6; -update noar ti set b0='YPF8UO33Z66JTM64W' where id=6; -update noar tt set b1='RGPKQ9USTQKZ' where id=6; -update noar ti set b1='RGPKQ9USTQKZ' where id=6; -update noar tt set b2='MB88S2L5TXQHFXU30PP34TF6F7IUBG' where id=6; -update noar ti set b2='MB88S2L5TXQHFXU30PP34TF6F7IUBG' where id=6; -update noar tt set b0='O0FTPQUKUS6GBDYYD' where id=7; -update noar ti set b0='O0FTPQUKUS6GBDYYD' where id=7; -update noar tt set b1='XWKV8OENAIGM4' where id=7; -update noar ti set b1='XWKV8OENAIGM4' where id=7; -update noar tt set b2='VCXV6XC0NM48IG3WNUJNOY3JWXF98IQ9' where id=7; -update noar ti set b2='VCXV6XC0NM48IG3WNUJNOY3JWXF98IQ9' where id=7; -update noar tt set b0='LPTK4JADRI6HB0' where id=8; -update noar ti set b0='LPTK4JADRI6HB0' where id=8; -update noar tt set b1='CMP7BGPEH5HE4MCAFVKFOK567CBIQSUS' where id=8; -update noar ti set b1='CMP7BGPEH5HE4MCAFVKFOK567CBIQSUS' where id=8; -update noar tt set b2='EO' where id=8; -update noar ti set b2='EO' where id=8; -update noar tt set b0='UFZOWSXE0Y5QMFOWWW2L' where id=9; -update noar ti set b0='UFZOWSXE0Y5QMFOWWW2L' where id=9; -update noar tt set b1='XAXW6AREZZBVIHVE0J660IE0D46S04AB' where id=9; -update noar ti set b1='XAXW6AREZZBVIHVE0J660IE0D46S04AB' where id=9; -update noar tt set b2='G8ZSERN0TMTZ5MI3Q7TEEHRRH9Z' where id=9; -update noar ti set b2='G8ZSERN0TMTZ5MI3Q7TEEHRRH9Z' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -b0 tinyblob not null, -b1 blob not null, -b2 blob not null -) engine=tokudb; -insert into tt values (1,'','',''); -insert into tt values (2,'','',''); -insert into tt values (3,'','',''); -insert into tt values (4,'','',''); -insert into tt values (5,'','',''); -insert into tt values (6,'','',''); -insert into tt values (7,'','',''); -insert into tt values (8,'','',''); -insert into tt values (9,'','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set b0='YB' where id=1; -update noar ti set b0='YB' where id=1; -update noar tt set b1='6NA7XYO28TKA75RND7MTI' where id=1; -update noar ti set b1='6NA7XYO28TKA75RND7MTI' where id=1; -update noar tt set b2='KL91GF8BLQRBOCE02JM3XRBBH' where id=1; -update noar ti set b2='KL91GF8BLQRBOCE02JM3XRBBH' where id=1; -update noar tt set b0='F1RI64V9YN7Y4VNIQ0IKLAI' where id=2; -update noar ti set b0='F1RI64V9YN7Y4VNIQ0IKLAI' where id=2; -update noar tt set b1='2U8Q9KD497XPFRJKC' where id=2; -update noar ti set b1='2U8Q9KD497XPFRJKC' where id=2; -update noar tt set b2='CTX86TY41S4COK62' where id=2; -update noar ti set b2='CTX86TY41S4COK62' where id=2; -update noar tt set b0='A1539Z2Y2C4KO' where id=3; -update noar ti set b0='A1539Z2Y2C4KO' where id=3; -update noar tt set b1='2VTLWM39ZJ1SW2D' where id=3; -update noar ti set b1='2VTLWM39ZJ1SW2D' where id=3; -update noar tt set b2='0PH0JTOTU1Q29H1TH' where id=3; -update noar ti set b2='0PH0JTOTU1Q29H1TH' where id=3; -update noar tt set b0='SIKAV8UZBK0J3RU' where id=4; -update noar ti set b0='SIKAV8UZBK0J3RU' where id=4; -update noar tt set b1='6H3M6N028SA1HT2' where id=4; -update noar ti set b1='6H3M6N028SA1HT2' where id=4; -update noar tt set b2='193J9L9FBGBYO5RX2HG07TV85VKV' where id=4; -update noar ti set b2='193J9L9FBGBYO5RX2HG07TV85VKV' where id=4; -update noar tt set b0='Q9SEGANQW35PGJSBJGLX48XH9' where id=5; -update noar ti set b0='Q9SEGANQW35PGJSBJGLX48XH9' where id=5; -update noar tt set b1='TIPBCO2X5NXW2B0CF' where id=5; -update noar ti set b1='TIPBCO2X5NXW2B0CF' where id=5; -update noar tt set b2='RB6GQK6PYEPRTMCE1' where id=5; -update noar ti set b2='RB6GQK6PYEPRTMCE1' where id=5; -update noar tt set b0='W' where id=6; -update noar ti set b0='W' where id=6; -update noar tt set b1='KTC8' where id=6; -update noar ti set b1='KTC8' where id=6; -update noar tt set b2='CR1RXZEDHFP6O' where id=6; -update noar ti set b2='CR1RXZEDHFP6O' where id=6; -update noar tt set b0='XKYNUGAKQL4' where id=7; -update noar ti set b0='XKYNUGAKQL4' where id=7; -update noar tt set b1='R2PER83QXP4YDUXYXXE' where id=7; -update noar ti set b1='R2PER83QXP4YDUXYXXE' where id=7; -update noar tt set b2='KF1J' where id=7; -update noar ti set b2='KF1J' where id=7; -update noar tt set b0='2HY6MVCXM6F2VLKIBSCV5BJ5APAT52X' where id=8; -update noar ti set b0='2HY6MVCXM6F2VLKIBSCV5BJ5APAT52X' where id=8; -update noar tt set b1='GV3FSDITS39B4E2152L9QQW9KR1' where id=8; -update noar ti set b1='GV3FSDITS39B4E2152L9QQW9KR1' where id=8; -update noar tt set b2='JVJGA13TXG' where id=8; -update noar ti set b2='JVJGA13TXG' where id=8; -update noar tt set b0='K07DD' where id=9; -update noar ti set b0='K07DD' where id=9; -update noar tt set b1='0DOL50' where id=9; -update noar ti set b1='0DOL50' where id=9; -update noar tt set b2='AKSCKJCMCP31EEULWVGME' where id=9; -update noar ti set b2='AKSCKJCMCP31EEULWVGME' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -b0 tinyblob null, -b1 blob null, -b2 mediumblob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set b0='M0WI88R27XF17NNSYV4MWD4EHFYT4ZN' where id=1; -update noar ti set b0='M0WI88R27XF17NNSYV4MWD4EHFYT4ZN' where id=1; -update noar tt set b1='7B154ZQPG3CP500HVK6796PQ469Z' where id=1; -update noar ti set b1='7B154ZQPG3CP500HVK6796PQ469Z' where id=1; -update noar tt set b2='ZSOS2GSH2H6KDOYLQUHUC5FMDW5B6N' where id=1; -update noar ti set b2='ZSOS2GSH2H6KDOYLQUHUC5FMDW5B6N' where id=1; -update noar tt set b0='0JED16Q9M3OYDCE9ADWIT' where id=2; -update noar ti set b0='0JED16Q9M3OYDCE9ADWIT' where id=2; -update noar tt set b1='ISFL7F' where id=2; -update noar ti set b1='ISFL7F' where id=2; -update noar tt set b2='JMWKPL6H84T89CIXQSCBS8Y' where id=2; -update noar ti set b2='JMWKPL6H84T89CIXQSCBS8Y' where id=2; -update noar tt set b0='0B' where id=3; -update noar ti set b0='0B' where id=3; -update noar tt set b1='2Q' where id=3; -update noar ti set b1='2Q' where id=3; -update noar tt set b2='KLD' where id=3; -update noar ti set b2='KLD' where id=3; -update noar tt set b0='9YCRAMCH5VVJNX1777X9NOW5GWLR45' where id=4; -update noar ti set b0='9YCRAMCH5VVJNX1777X9NOW5GWLR45' where id=4; -update noar tt set b1='VTHEJP' where id=4; -update noar ti set b1='VTHEJP' where id=4; -update noar tt set b2='QY4JBID6XQJE' where id=4; -update noar ti set b2='QY4JBID6XQJE' where id=4; -update noar tt set b0='D2X9' where id=5; -update noar ti set b0='D2X9' where id=5; -update noar tt set b1='Y7V3O80H1460PLM1' where id=5; -update noar ti set b1='Y7V3O80H1460PLM1' where id=5; -update noar tt set b2='GK8F0SW6D9C35' where id=5; -update noar ti set b2='GK8F0SW6D9C35' where id=5; -update noar tt set b0='HBL6AF6AUDGJU1P2L4X7FJ2KDQY' where id=6; -update noar ti set b0='HBL6AF6AUDGJU1P2L4X7FJ2KDQY' where id=6; -update noar tt set b1='RVNZ660' where id=6; -update noar ti set b1='RVNZ660' where id=6; -update noar tt set b2='DQM3' where id=6; -update noar ti set b2='DQM3' where id=6; -update noar tt set b0='F12SFLDWC5GIUS' where id=7; -update noar ti set b0='F12SFLDWC5GIUS' where id=7; -update noar tt set b1='KNU' where id=7; -update noar ti set b1='KNU' where id=7; -update noar tt set b2='KKBEDHEZCQDMJIJZMJ1UQ12ARK916O' where id=7; -update noar ti set b2='KKBEDHEZCQDMJIJZMJ1UQ12ARK916O' where id=7; -update noar tt set b0='X75C7ZY1AT' where id=8; -update noar ti set b0='X75C7ZY1AT' where id=8; -update noar tt set b1='TH7KMW1IO9JRKXQR2NBE9X85S554NB1' where id=8; -update noar ti set b1='TH7KMW1IO9JRKXQR2NBE9X85S554NB1' where id=8; -update noar tt set b2='T1UBOPGPW4C8A95L3UW96VK7UCEGBQC' where id=8; -update noar ti set b2='T1UBOPGPW4C8A95L3UW96VK7UCEGBQC' where id=8; -update noar tt set b0='ZVSQRQV' where id=9; -update noar ti set b0='ZVSQRQV' where id=9; -update noar tt set b1='ED1WY0SU' where id=9; -update noar ti set b1='ED1WY0SU' where id=9; -update noar tt set b2='93A58OVP0SQPZAYWU6FFQO2WHAJW3' where id=9; -update noar ti set b2='93A58OVP0SQPZAYWU6FFQO2WHAJW3' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -b0 tinyblob not null, -b1 blob not null, -b2 mediumblob not null -) engine=tokudb; -insert into tt values (1,'','',''); -insert into tt values (2,'','',''); -insert into tt values (3,'','',''); -insert into tt values (4,'','',''); -insert into tt values (5,'','',''); -insert into tt values (6,'','',''); -insert into tt values (7,'','',''); -insert into tt values (8,'','',''); -insert into tt values (9,'','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set b0='PBZ5' where id=1; -update noar ti set b0='PBZ5' where id=1; -update noar tt set b1='WA4D' where id=1; -update noar ti set b1='WA4D' where id=1; -update noar tt set b2='5X22DH9QMGE6GL423VVZSX9SEL6D9W' where id=1; -update noar ti set b2='5X22DH9QMGE6GL423VVZSX9SEL6D9W' where id=1; -update noar tt set b0='5TDZI1NG8LA7' where id=2; -update noar ti set b0='5TDZI1NG8LA7' where id=2; -update noar tt set b1='DK6I6YQQAKU' where id=2; -update noar ti set b1='DK6I6YQQAKU' where id=2; -update noar tt set b2='QLUP' where id=2; -update noar ti set b2='QLUP' where id=2; -update noar tt set b0='NDU7RWPL6HLW2TNTQMHSUJ3' where id=3; -update noar ti set b0='NDU7RWPL6HLW2TNTQMHSUJ3' where id=3; -update noar tt set b1='XKSPE0UZP7KX7' where id=3; -update noar ti set b1='XKSPE0UZP7KX7' where id=3; -update noar tt set b2='0UFZOQ9V7U0RI1EYA9A1' where id=3; -update noar ti set b2='0UFZOQ9V7U0RI1EYA9A1' where id=3; -update noar tt set b0='Z1BMVZXFSLPWMKARLIJ3C521MH8R0' where id=4; -update noar ti set b0='Z1BMVZXFSLPWMKARLIJ3C521MH8R0' where id=4; -update noar tt set b1='J22MX2IK8OG' where id=4; -update noar ti set b1='J22MX2IK8OG' where id=4; -update noar tt set b2='4W' where id=4; -update noar ti set b2='4W' where id=4; -update noar tt set b0='C2KAH' where id=5; -update noar ti set b0='C2KAH' where id=5; -update noar tt set b1='WF8C0Z9H7X6486S335GUK9RGZJTQ8' where id=5; -update noar ti set b1='WF8C0Z9H7X6486S335GUK9RGZJTQ8' where id=5; -update noar tt set b2='PFKHD013QZ7L' where id=5; -update noar ti set b2='PFKHD013QZ7L' where id=5; -update noar tt set b0='4HJ8EFFYXPWXDB5IFZTYYA2' where id=6; -update noar ti set b0='4HJ8EFFYXPWXDB5IFZTYYA2' where id=6; -update noar tt set b1='4DFR9JEE9AD7193OUYVA9Z67JK3YR57M' where id=6; -update noar ti set b1='4DFR9JEE9AD7193OUYVA9Z67JK3YR57M' where id=6; -update noar tt set b2='GKDATR4GK5BQ5IHFQ8NJJR2' where id=6; -update noar ti set b2='GKDATR4GK5BQ5IHFQ8NJJR2' where id=6; -update noar tt set b0='48TDHZ' where id=7; -update noar ti set b0='48TDHZ' where id=7; -update noar tt set b1='FV2GTDI0QI0JC19' where id=7; -update noar ti set b1='FV2GTDI0QI0JC19' where id=7; -update noar tt set b2='JG8HXRTBB5YLSBM40PAOQW6LLSX9W3Y' where id=7; -update noar ti set b2='JG8HXRTBB5YLSBM40PAOQW6LLSX9W3Y' where id=7; -update noar tt set b0='SHKGZWRYV2EY2C4NOVBV0Z6QL77TT' where id=8; -update noar ti set b0='SHKGZWRYV2EY2C4NOVBV0Z6QL77TT' where id=8; -update noar tt set b1='LAJ37V0' where id=8; -update noar ti set b1='LAJ37V0' where id=8; -update noar tt set b2='31HVRWD3ROXFP7O5PJMC' where id=8; -update noar ti set b2='31HVRWD3ROXFP7O5PJMC' where id=8; -update noar tt set b0='YXAL3S6DOGZ4ZEUVO02LG' where id=9; -update noar ti set b0='YXAL3S6DOGZ4ZEUVO02LG' where id=9; -update noar tt set b1='G' where id=9; -update noar ti set b1='G' where id=9; -update noar tt set b2='46HIP9JK' where id=9; -update noar ti set b2='46HIP9JK' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -b0 tinyblob null, -b1 blob null, -b2 longblob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set b0='BXJ7QD5CN60DC' where id=1; -update noar ti set b0='BXJ7QD5CN60DC' where id=1; -update noar tt set b1='SR7XRP327RKAHI0BSV2GQF9RXYO' where id=1; -update noar ti set b1='SR7XRP327RKAHI0BSV2GQF9RXYO' where id=1; -update noar tt set b2='NCPT4NVNV' where id=1; -update noar ti set b2='NCPT4NVNV' where id=1; -update noar tt set b0='TV4PGD9W3CJM1OANPKZDFKN8WNQYJNPN' where id=2; -update noar ti set b0='TV4PGD9W3CJM1OANPKZDFKN8WNQYJNPN' where id=2; -update noar tt set b1='8RI30V3ZQFAII43XWLCYB6TSI8' where id=2; -update noar ti set b1='8RI30V3ZQFAII43XWLCYB6TSI8' where id=2; -update noar tt set b2='LQO69OFXE2QSTP' where id=2; -update noar ti set b2='LQO69OFXE2QSTP' where id=2; -update noar tt set b0='QB4KJUGZSM' where id=3; -update noar ti set b0='QB4KJUGZSM' where id=3; -update noar tt set b1='3VCV77A89B8ECEGVQ6Y2GT51YFBCHN' where id=3; -update noar ti set b1='3VCV77A89B8ECEGVQ6Y2GT51YFBCHN' where id=3; -update noar tt set b2='DX0N7V13XEM009JORY262' where id=3; -update noar ti set b2='DX0N7V13XEM009JORY262' where id=3; -update noar tt set b0='HIG8U2GHT76BF8QRAB8H0949N' where id=4; -update noar ti set b0='HIG8U2GHT76BF8QRAB8H0949N' where id=4; -update noar tt set b1='9D6ESING7D2JSCM66JHARHIFFA8BBO9' where id=4; -update noar ti set b1='9D6ESING7D2JSCM66JHARHIFFA8BBO9' where id=4; -update noar tt set b2='I' where id=4; -update noar ti set b2='I' where id=4; -update noar tt set b0='LFFU3M3R23883RIO8Z00RXFF6OI7' where id=5; -update noar ti set b0='LFFU3M3R23883RIO8Z00RXFF6OI7' where id=5; -update noar tt set b1='943M5PMWQ' where id=5; -update noar ti set b1='943M5PMWQ' where id=5; -update noar tt set b2='08' where id=5; -update noar ti set b2='08' where id=5; -update noar tt set b0='PUQC49FYLWKBPV' where id=6; -update noar ti set b0='PUQC49FYLWKBPV' where id=6; -update noar tt set b1='LDVP4D7GYGHR33E' where id=6; -update noar ti set b1='LDVP4D7GYGHR33E' where id=6; -update noar tt set b2='9RDVM7GDHUGWPK7E8Q7IQ0' where id=6; -update noar ti set b2='9RDVM7GDHUGWPK7E8Q7IQ0' where id=6; -update noar tt set b0='E1U1N' where id=7; -update noar ti set b0='E1U1N' where id=7; -update noar tt set b1='KR68MDP85H1E' where id=7; -update noar ti set b1='KR68MDP85H1E' where id=7; -update noar tt set b2='3OGM7' where id=7; -update noar ti set b2='3OGM7' where id=7; -update noar tt set b0='96GPPR2SWZ0HGNLT7VWHPVMJF3S85W9' where id=8; -update noar ti set b0='96GPPR2SWZ0HGNLT7VWHPVMJF3S85W9' where id=8; -update noar tt set b1='N77AE7G57H2VW0PY' where id=8; -update noar ti set b1='N77AE7G57H2VW0PY' where id=8; -update noar tt set b2='5YCO' where id=8; -update noar ti set b2='5YCO' where id=8; -update noar tt set b0='CCY' where id=9; -update noar ti set b0='CCY' where id=9; -update noar tt set b1='MW7DKSWJV9KQA8IHRDI' where id=9; -update noar ti set b1='MW7DKSWJV9KQA8IHRDI' where id=9; -update noar tt set b2='2UVBD7RV9OQ1ET7YX4IU' where id=9; -update noar ti set b2='2UVBD7RV9OQ1ET7YX4IU' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -b0 tinyblob not null, -b1 blob not null, -b2 longblob not null -) engine=tokudb; -insert into tt values (1,'','',''); -insert into tt values (2,'','',''); -insert into tt values (3,'','',''); -insert into tt values (4,'','',''); -insert into tt values (5,'','',''); -insert into tt values (6,'','',''); -insert into tt values (7,'','',''); -insert into tt values (8,'','',''); -insert into tt values (9,'','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set b0='P3OR865OZCUSETY5' where id=1; -update noar ti set b0='P3OR865OZCUSETY5' where id=1; -update noar tt set b1='VIOG' where id=1; -update noar ti set b1='VIOG' where id=1; -update noar tt set b2='250TIVPKIXMPZ1C6Z5Y' where id=1; -update noar ti set b2='250TIVPKIXMPZ1C6Z5Y' where id=1; -update noar tt set b0='VM7I6NPR1XJN5JCHSUEH8PO38E0' where id=2; -update noar ti set b0='VM7I6NPR1XJN5JCHSUEH8PO38E0' where id=2; -update noar tt set b1='H' where id=2; -update noar ti set b1='H' where id=2; -update noar tt set b2='0P2NI' where id=2; -update noar ti set b2='0P2NI' where id=2; -update noar tt set b0='IGUVHY8524WPPGDPX5Q727IWK2' where id=3; -update noar ti set b0='IGUVHY8524WPPGDPX5Q727IWK2' where id=3; -update noar tt set b1='6TRDXA1NGYVYP8MU2PWR6Q33' where id=3; -update noar ti set b1='6TRDXA1NGYVYP8MU2PWR6Q33' where id=3; -update noar tt set b2='CDBAZME9LHTJ7SDMSQIPXT4AK' where id=3; -update noar ti set b2='CDBAZME9LHTJ7SDMSQIPXT4AK' where id=3; -update noar tt set b0='E17Q0M0GVPWZFVUPALGLF7Z' where id=4; -update noar ti set b0='E17Q0M0GVPWZFVUPALGLF7Z' where id=4; -update noar tt set b1='B138' where id=4; -update noar ti set b1='B138' where id=4; -update noar tt set b2='K28OT3' where id=4; -update noar ti set b2='K28OT3' where id=4; -update noar tt set b0='799NAUH9LZ6DQ2YM4YBDJXK0UP5C' where id=5; -update noar ti set b0='799NAUH9LZ6DQ2YM4YBDJXK0UP5C' where id=5; -update noar tt set b1='6ZN7TJLGBMFMI54KDBYH1' where id=5; -update noar ti set b1='6ZN7TJLGBMFMI54KDBYH1' where id=5; -update noar tt set b2='L3WOXG7WTTXC3IV' where id=5; -update noar ti set b2='L3WOXG7WTTXC3IV' where id=5; -update noar tt set b0='6DJX9N6ILL5TKHDKGEQFVFF3BT4' where id=6; -update noar ti set b0='6DJX9N6ILL5TKHDKGEQFVFF3BT4' where id=6; -update noar tt set b1='64MY4' where id=6; -update noar ti set b1='64MY4' where id=6; -update noar tt set b2='GOEJLSUYTIODH6NRU4N2ZQLV69EKRKU' where id=6; -update noar ti set b2='GOEJLSUYTIODH6NRU4N2ZQLV69EKRKU' where id=6; -update noar tt set b0='3M' where id=7; -update noar ti set b0='3M' where id=7; -update noar tt set b1='DZ88RA0VGO9OQAP1B877TIIJ' where id=7; -update noar ti set b1='DZ88RA0VGO9OQAP1B877TIIJ' where id=7; -update noar tt set b2='P7X3Y0U09' where id=7; -update noar ti set b2='P7X3Y0U09' where id=7; -update noar tt set b0='L1LTSJSTTAN' where id=8; -update noar ti set b0='L1LTSJSTTAN' where id=8; -update noar tt set b1='DIJE7V2X273ZJ5Q46LK526R8XAT0CD' where id=8; -update noar ti set b1='DIJE7V2X273ZJ5Q46LK526R8XAT0CD' where id=8; -update noar tt set b2='HDUWY57FI15DVFMH1X' where id=8; -update noar ti set b2='HDUWY57FI15DVFMH1X' where id=8; -update noar tt set b0='LWLFO7R2QHKNV87FR7S' where id=9; -update noar ti set b0='LWLFO7R2QHKNV87FR7S' where id=9; -update noar tt set b1='2RZUVK3S31BP6FB6Y0HSBW1NQ' where id=9; -update noar ti set b1='2RZUVK3S31BP6FB6Y0HSBW1NQ' where id=9; -update noar tt set b2='ZUY' where id=9; -update noar ti set b2='ZUY' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -b0 tinyblob null, -b1 blob null, -b2 text null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set b0='N5FAV' where id=1; -update noar ti set b0='N5FAV' where id=1; -update noar tt set b1='RYFWXW1F9RL' where id=1; -update noar ti set b1='RYFWXW1F9RL' where id=1; -update noar tt set b2='7DPV6J2QCEC5ADBFD3LGHEPQ45' where id=1; -update noar ti set b2='7DPV6J2QCEC5ADBFD3LGHEPQ45' where id=1; -update noar tt set b0='JIPOEWS3URK01XP4' where id=2; -update noar ti set b0='JIPOEWS3URK01XP4' where id=2; -update noar tt set b1='YOS5YFF2TLF' where id=2; -update noar ti set b1='YOS5YFF2TLF' where id=2; -update noar tt set b2='37NBJ61XX81S7MA1AYNE8JATUVML' where id=2; -update noar ti set b2='37NBJ61XX81S7MA1AYNE8JATUVML' where id=2; -update noar tt set b0='QQAF5MC' where id=3; -update noar ti set b0='QQAF5MC' where id=3; -update noar tt set b1='DY38O7X13Q9NQO435UNGT2GETFVEO80' where id=3; -update noar ti set b1='DY38O7X13Q9NQO435UNGT2GETFVEO80' where id=3; -update noar tt set b2='6JQECIJEBHAZ4XX45R6GUW19XG' where id=3; -update noar ti set b2='6JQECIJEBHAZ4XX45R6GUW19XG' where id=3; -update noar tt set b0='24AJA' where id=4; -update noar ti set b0='24AJA' where id=4; -update noar tt set b1='81E25ALZALDIW7SL2FOYANUMI0BEM1MD' where id=4; -update noar ti set b1='81E25ALZALDIW7SL2FOYANUMI0BEM1MD' where id=4; -update noar tt set b2='3BA2X' where id=4; -update noar ti set b2='3BA2X' where id=4; -update noar tt set b0='BNKHC8BMS5H28LNPCLY3DPJG0E86' where id=5; -update noar ti set b0='BNKHC8BMS5H28LNPCLY3DPJG0E86' where id=5; -update noar tt set b1='9CTRWMLS1FU634SKTZ0BHX' where id=5; -update noar ti set b1='9CTRWMLS1FU634SKTZ0BHX' where id=5; -update noar tt set b2='ZHIFCL6FCTUGV' where id=5; -update noar ti set b2='ZHIFCL6FCTUGV' where id=5; -update noar tt set b0='DQ9BCIUOL7UOB' where id=6; -update noar ti set b0='DQ9BCIUOL7UOB' where id=6; -update noar tt set b1='2Q5K2JDNDNMB79GEZO8S9E6SMU' where id=6; -update noar ti set b1='2Q5K2JDNDNMB79GEZO8S9E6SMU' where id=6; -update noar tt set b2='292UMJRNFY13ROE6ADFOF' where id=6; -update noar ti set b2='292UMJRNFY13ROE6ADFOF' where id=6; -update noar tt set b0='V1GX25GBFALLY0ANX95G454SE4F6H' where id=7; -update noar ti set b0='V1GX25GBFALLY0ANX95G454SE4F6H' where id=7; -update noar tt set b1='2OJI3LOTMTT2OB60P0N087EYP3' where id=7; -update noar ti set b1='2OJI3LOTMTT2OB60P0N087EYP3' where id=7; -update noar tt set b2='WS' where id=7; -update noar ti set b2='WS' where id=7; -update noar tt set b0='0Y5IB6UIQIKT58' where id=8; -update noar ti set b0='0Y5IB6UIQIKT58' where id=8; -update noar tt set b1='KIX01AKQWO8UAO4XBTA0' where id=8; -update noar ti set b1='KIX01AKQWO8UAO4XBTA0' where id=8; -update noar tt set b2='H0J8RBH3DTSM1XZ9CJZCJHEHFUR' where id=8; -update noar ti set b2='H0J8RBH3DTSM1XZ9CJZCJHEHFUR' where id=8; -update noar tt set b0='1EH88DP9RH' where id=9; -update noar ti set b0='1EH88DP9RH' where id=9; -update noar tt set b1='9N64S3DOR754' where id=9; -update noar ti set b1='9N64S3DOR754' where id=9; -update noar tt set b2='GFGUGUQVHR3JL50XHRY8SL3TEM' where id=9; -update noar ti set b2='GFGUGUQVHR3JL50XHRY8SL3TEM' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -b0 tinyblob not null, -b1 blob not null, -b2 text not null -) engine=tokudb; -insert into tt values (1,'','',''); -insert into tt values (2,'','',''); -insert into tt values (3,'','',''); -insert into tt values (4,'','',''); -insert into tt values (5,'','',''); -insert into tt values (6,'','',''); -insert into tt values (7,'','',''); -insert into tt values (8,'','',''); -insert into tt values (9,'','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set b0='OHE09CVN1PE6SOQ0TQIDQ966YRR' where id=1; -update noar ti set b0='OHE09CVN1PE6SOQ0TQIDQ966YRR' where id=1; -update noar tt set b1='2OA1ZU9B69P4LKS45N5HY82Q77WE' where id=1; -update noar ti set b1='2OA1ZU9B69P4LKS45N5HY82Q77WE' where id=1; -update noar tt set b2='BDDR6TUDPRAV12BSO42SHUH20SFS1' where id=1; -update noar ti set b2='BDDR6TUDPRAV12BSO42SHUH20SFS1' where id=1; -update noar tt set b0='NATFMK64HO0H1' where id=2; -update noar ti set b0='NATFMK64HO0H1' where id=2; -update noar tt set b1='NRR2H7LOZ87FSGKKDKOMDEFXXV8X15L' where id=2; -update noar ti set b1='NRR2H7LOZ87FSGKKDKOMDEFXXV8X15L' where id=2; -update noar tt set b2='X9RQIR7QAXVLKE' where id=2; -update noar ti set b2='X9RQIR7QAXVLKE' where id=2; -update noar tt set b0='SMXBH03' where id=3; -update noar ti set b0='SMXBH03' where id=3; -update noar tt set b1='LMF8WXBU6UUSS05VLM4AWXNK' where id=3; -update noar ti set b1='LMF8WXBU6UUSS05VLM4AWXNK' where id=3; -update noar tt set b2='K25NU1I1A7G1H37X8J' where id=3; -update noar ti set b2='K25NU1I1A7G1H37X8J' where id=3; -update noar tt set b0='YCAQOFZJORR6GHNPB5W4S5SXLNQHKJ' where id=4; -update noar ti set b0='YCAQOFZJORR6GHNPB5W4S5SXLNQHKJ' where id=4; -update noar tt set b1='UKVS095MVDHQFY' where id=4; -update noar ti set b1='UKVS095MVDHQFY' where id=4; -update noar tt set b2='P8YU3T6VH7RJZP' where id=4; -update noar ti set b2='P8YU3T6VH7RJZP' where id=4; -update noar tt set b0='MQWW3T3OE39ACEE4ORTN7E6E00BKY0WE' where id=5; -update noar ti set b0='MQWW3T3OE39ACEE4ORTN7E6E00BKY0WE' where id=5; -update noar tt set b1='D1W8LB4' where id=5; -update noar ti set b1='D1W8LB4' where id=5; -update noar tt set b2='5PUG6EW1NKHLO' where id=5; -update noar ti set b2='5PUG6EW1NKHLO' where id=5; -update noar tt set b0='MJ' where id=6; -update noar ti set b0='MJ' where id=6; -update noar tt set b1='9T' where id=6; -update noar ti set b1='9T' where id=6; -update noar tt set b2='JS' where id=6; -update noar ti set b2='JS' where id=6; -update noar tt set b0='PWMQ9Y62JLYVANGVNW2P' where id=7; -update noar ti set b0='PWMQ9Y62JLYVANGVNW2P' where id=7; -update noar tt set b1='4LSY6RIPCNCUJMAIW168LP4V1J4GMA' where id=7; -update noar ti set b1='4LSY6RIPCNCUJMAIW168LP4V1J4GMA' where id=7; -update noar tt set b2='2K8VOWIRB' where id=7; -update noar ti set b2='2K8VOWIRB' where id=7; -update noar tt set b0='D3FWQY2N45AD234LMFR6EE' where id=8; -update noar ti set b0='D3FWQY2N45AD234LMFR6EE' where id=8; -update noar tt set b1='D8PFGU6K1FZROQI2OKBPE' where id=8; -update noar ti set b1='D8PFGU6K1FZROQI2OKBPE' where id=8; -update noar tt set b2='UI2QM6RXB63N35PG0ZR6AE' where id=8; -update noar ti set b2='UI2QM6RXB63N35PG0ZR6AE' where id=8; -update noar tt set b0='HW8QRKNLSCZLLKVFI2PPF8UUO8ZB' where id=9; -update noar ti set b0='HW8QRKNLSCZLLKVFI2PPF8UUO8ZB' where id=9; -update noar tt set b1='V5O58RH9M2DTNG1WCNHU6UYI3' where id=9; -update noar ti set b1='V5O58RH9M2DTNG1WCNHU6UYI3' where id=9; -update noar tt set b2='VYTJN24E' where id=9; -update noar ti set b2='VYTJN24E' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -b0 tinyblob null, -b1 mediumblob null, -b2 tinyblob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set b0='7H20YF66A9RXV7GQ5J' where id=1; -update noar ti set b0='7H20YF66A9RXV7GQ5J' where id=1; -update noar tt set b1='IOAO4KGB5V31WO5' where id=1; -update noar ti set b1='IOAO4KGB5V31WO5' where id=1; -update noar tt set b2='RV57OU' where id=1; -update noar ti set b2='RV57OU' where id=1; -update noar tt set b0='OKHLNT1VZWFLDA6V2KX9EBAOF' where id=2; -update noar ti set b0='OKHLNT1VZWFLDA6V2KX9EBAOF' where id=2; -update noar tt set b1='SXLOO2Q3QHBIYJOOF9R5EE35CJV9' where id=2; -update noar ti set b1='SXLOO2Q3QHBIYJOOF9R5EE35CJV9' where id=2; -update noar tt set b2='NLX3M8' where id=2; -update noar ti set b2='NLX3M8' where id=2; -update noar tt set b0='RA9J9RZXZOBMX1' where id=3; -update noar ti set b0='RA9J9RZXZOBMX1' where id=3; -update noar tt set b1='P8TTGU2N4HNZVDT6184YH' where id=3; -update noar ti set b1='P8TTGU2N4HNZVDT6184YH' where id=3; -update noar tt set b2='3' where id=3; -update noar ti set b2='3' where id=3; -update noar tt set b0='D' where id=4; -update noar ti set b0='D' where id=4; -update noar tt set b1='4CY862DE' where id=4; -update noar ti set b1='4CY862DE' where id=4; -update noar tt set b2='HJ6K7T1DOUIJ8FV82LJ5' where id=4; -update noar ti set b2='HJ6K7T1DOUIJ8FV82LJ5' where id=4; -update noar tt set b0='8J0HWDJ120V' where id=5; -update noar ti set b0='8J0HWDJ120V' where id=5; -update noar tt set b1='U3XHYGU5HD' where id=5; -update noar ti set b1='U3XHYGU5HD' where id=5; -update noar tt set b2='SR3CRVL6OV' where id=5; -update noar ti set b2='SR3CRVL6OV' where id=5; -update noar tt set b0='MI' where id=6; -update noar ti set b0='MI' where id=6; -update noar tt set b1='0IA4PJS6DZ' where id=6; -update noar ti set b1='0IA4PJS6DZ' where id=6; -update noar tt set b2='QJHUDCHA4IYE' where id=6; -update noar ti set b2='QJHUDCHA4IYE' where id=6; -update noar tt set b0='SW5E' where id=7; -update noar ti set b0='SW5E' where id=7; -update noar tt set b1='8LETY9NARJSWRKOMD9EPH98WC3CE' where id=7; -update noar ti set b1='8LETY9NARJSWRKOMD9EPH98WC3CE' where id=7; -update noar tt set b2='XZA2174D548YOBREK4XJI' where id=7; -update noar ti set b2='XZA2174D548YOBREK4XJI' where id=7; -update noar tt set b0='KSK' where id=8; -update noar ti set b0='KSK' where id=8; -update noar tt set b1='YS7GP2LEZA22K2T804VTMPPI' where id=8; -update noar ti set b1='YS7GP2LEZA22K2T804VTMPPI' where id=8; -update noar tt set b2='J15HJL0K7E5WLYRBS34RD5SKTAPMOR' where id=8; -update noar ti set b2='J15HJL0K7E5WLYRBS34RD5SKTAPMOR' where id=8; -update noar tt set b0='X8UBULN4DAPQJ4J0SKRF8XIA' where id=9; -update noar ti set b0='X8UBULN4DAPQJ4J0SKRF8XIA' where id=9; -update noar tt set b1='J69B8PDS4PG3HCX6NB0UF2G5YJ92X6' where id=9; -update noar ti set b1='J69B8PDS4PG3HCX6NB0UF2G5YJ92X6' where id=9; -update noar tt set b2='LNLBZUVT51QSB8J154H0GX6OG' where id=9; -update noar ti set b2='LNLBZUVT51QSB8J154H0GX6OG' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -b0 tinyblob not null, -b1 mediumblob not null, -b2 tinyblob not null -) engine=tokudb; -insert into tt values (1,'','',''); -insert into tt values (2,'','',''); -insert into tt values (3,'','',''); -insert into tt values (4,'','',''); -insert into tt values (5,'','',''); -insert into tt values (6,'','',''); -insert into tt values (7,'','',''); -insert into tt values (8,'','',''); -insert into tt values (9,'','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set b0='D5NHT94GAYKZ0ZL8WJFOCP8C5Z955F' where id=1; -update noar ti set b0='D5NHT94GAYKZ0ZL8WJFOCP8C5Z955F' where id=1; -update noar tt set b1='E95' where id=1; -update noar ti set b1='E95' where id=1; -update noar tt set b2='E9S2FF4NARNCMNONETF904M547Y5A837' where id=1; -update noar ti set b2='E9S2FF4NARNCMNONETF904M547Y5A837' where id=1; -update noar tt set b0='DMVF21TT7UOOVLZG2M64' where id=2; -update noar ti set b0='DMVF21TT7UOOVLZG2M64' where id=2; -update noar tt set b1='7VVLJ672EB' where id=2; -update noar ti set b1='7VVLJ672EB' where id=2; -update noar tt set b2='K7' where id=2; -update noar ti set b2='K7' where id=2; -update noar tt set b0='NQI3T161XHZN5YHTZWD68SLXTNIN' where id=3; -update noar ti set b0='NQI3T161XHZN5YHTZWD68SLXTNIN' where id=3; -update noar tt set b1='T5I' where id=3; -update noar ti set b1='T5I' where id=3; -update noar tt set b2='20T3' where id=3; -update noar ti set b2='20T3' where id=3; -update noar tt set b0='EOS29XP3SERP0YJ2JAQRJ3' where id=4; -update noar ti set b0='EOS29XP3SERP0YJ2JAQRJ3' where id=4; -update noar tt set b1='QR379A0X6BVCODK1OPRW1LN6FD7PEZ2' where id=4; -update noar ti set b1='QR379A0X6BVCODK1OPRW1LN6FD7PEZ2' where id=4; -update noar tt set b2='82OANMH93' where id=4; -update noar ti set b2='82OANMH93' where id=4; -update noar tt set b0='31FIVXNTDC' where id=5; -update noar ti set b0='31FIVXNTDC' where id=5; -update noar tt set b1='5JZ8PZLP8IU50775QN0WPLMVOL7CJ9S' where id=5; -update noar ti set b1='5JZ8PZLP8IU50775QN0WPLMVOL7CJ9S' where id=5; -update noar tt set b2='EEEOV0XTLKJPEB07ZQ8P0D5O82A4BBTX' where id=5; -update noar ti set b2='EEEOV0XTLKJPEB07ZQ8P0D5O82A4BBTX' where id=5; -update noar tt set b0='AMMWWL6LQEJPRSTJLWFIGWT' where id=6; -update noar ti set b0='AMMWWL6LQEJPRSTJLWFIGWT' where id=6; -update noar tt set b1='HQPQZCS' where id=6; -update noar ti set b1='HQPQZCS' where id=6; -update noar tt set b2='HCVDS7GXPCLFTXB07WQCJX' where id=6; -update noar ti set b2='HCVDS7GXPCLFTXB07WQCJX' where id=6; -update noar tt set b0='OMNW' where id=7; -update noar ti set b0='OMNW' where id=7; -update noar tt set b1='2JTU2WCEE5T0A19' where id=7; -update noar ti set b1='2JTU2WCEE5T0A19' where id=7; -update noar tt set b2='27FB02D29NJBRT6F' where id=7; -update noar ti set b2='27FB02D29NJBRT6F' where id=7; -update noar tt set b0='R' where id=8; -update noar ti set b0='R' where id=8; -update noar tt set b1='FV' where id=8; -update noar ti set b1='FV' where id=8; -update noar tt set b2='QXYW88W2KI23FOGY04' where id=8; -update noar ti set b2='QXYW88W2KI23FOGY04' where id=8; -update noar tt set b0='3G01CANSG3FDFKHOODJKQB6FX' where id=9; -update noar ti set b0='3G01CANSG3FDFKHOODJKQB6FX' where id=9; -update noar tt set b1='UN6KUYV6UFWHVYWQKI7S1DDN6' where id=9; -update noar ti set b1='UN6KUYV6UFWHVYWQKI7S1DDN6' where id=9; -update noar tt set b2='EEUT1VDOTNJMTM5NFJPZH' where id=9; -update noar ti set b2='EEUT1VDOTNJMTM5NFJPZH' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -b0 tinyblob null, -b1 mediumblob null, -b2 blob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set b0='G3V17GK52' where id=1; -update noar ti set b0='G3V17GK52' where id=1; -update noar tt set b1='QHKDP02I65QSN' where id=1; -update noar ti set b1='QHKDP02I65QSN' where id=1; -update noar tt set b2='0JZ0CNQSUBS' where id=1; -update noar ti set b2='0JZ0CNQSUBS' where id=1; -update noar tt set b0='FGH0FPCA02P' where id=2; -update noar ti set b0='FGH0FPCA02P' where id=2; -update noar tt set b1='T5FEBH06R2FOZ40' where id=2; -update noar ti set b1='T5FEBH06R2FOZ40' where id=2; -update noar tt set b2='6' where id=2; -update noar ti set b2='6' where id=2; -update noar tt set b0='6A0XBN3F4DS2V2S' where id=3; -update noar ti set b0='6A0XBN3F4DS2V2S' where id=3; -update noar tt set b1='HGXSH0G3Z7EHQAI09FLJX' where id=3; -update noar ti set b1='HGXSH0G3Z7EHQAI09FLJX' where id=3; -update noar tt set b2='RZ86H6959C4001UMGW5J12WKMV039VH' where id=3; -update noar ti set b2='RZ86H6959C4001UMGW5J12WKMV039VH' where id=3; -update noar tt set b0='3G' where id=4; -update noar ti set b0='3G' where id=4; -update noar tt set b1='2KFCAJ2Q9TG8E3GTL3GSEM28XU6IIC4A' where id=4; -update noar ti set b1='2KFCAJ2Q9TG8E3GTL3GSEM28XU6IIC4A' where id=4; -update noar tt set b2='TFH78N9S' where id=4; -update noar ti set b2='TFH78N9S' where id=4; -update noar tt set b0='FNUJ7W' where id=5; -update noar ti set b0='FNUJ7W' where id=5; -update noar tt set b1='PVOABGSIGWNVQ5Y' where id=5; -update noar ti set b1='PVOABGSIGWNVQ5Y' where id=5; -update noar tt set b2='IJS0H0N92DP9Y8SWNZBAUU' where id=5; -update noar ti set b2='IJS0H0N92DP9Y8SWNZBAUU' where id=5; -update noar tt set b0='AGZHX' where id=6; -update noar ti set b0='AGZHX' where id=6; -update noar tt set b1='KPT3LZVGI' where id=6; -update noar ti set b1='KPT3LZVGI' where id=6; -update noar tt set b2='TD60T4QZJNAGLC1UE299XV' where id=6; -update noar ti set b2='TD60T4QZJNAGLC1UE299XV' where id=6; -update noar tt set b0='NK7ZXDZGGHJ531MUPCB13' where id=7; -update noar ti set b0='NK7ZXDZGGHJ531MUPCB13' where id=7; -update noar tt set b1='789A10YLUFH44S' where id=7; -update noar ti set b1='789A10YLUFH44S' where id=7; -update noar tt set b2='2ZBHBA8PDC7T0RZ93T' where id=7; -update noar ti set b2='2ZBHBA8PDC7T0RZ93T' where id=7; -update noar tt set b0='7XYYW' where id=8; -update noar ti set b0='7XYYW' where id=8; -update noar tt set b1='EJJ' where id=8; -update noar ti set b1='EJJ' where id=8; -update noar tt set b2='TOG0E6BYRKJV' where id=8; -update noar ti set b2='TOG0E6BYRKJV' where id=8; -update noar tt set b0='P94KRHR' where id=9; -update noar ti set b0='P94KRHR' where id=9; -update noar tt set b1='WDGKG7UBRX3FKBC2HR' where id=9; -update noar ti set b1='WDGKG7UBRX3FKBC2HR' where id=9; -update noar tt set b2='HDRRZ8MNM2YQ5LDTS' where id=9; -update noar ti set b2='HDRRZ8MNM2YQ5LDTS' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -b0 tinyblob not null, -b1 mediumblob not null, -b2 blob not null -) engine=tokudb; -insert into tt values (1,'','',''); -insert into tt values (2,'','',''); -insert into tt values (3,'','',''); -insert into tt values (4,'','',''); -insert into tt values (5,'','',''); -insert into tt values (6,'','',''); -insert into tt values (7,'','',''); -insert into tt values (8,'','',''); -insert into tt values (9,'','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set b0='LR1F2C5AYWHSULZV972FP0LNDTQ93UEY' where id=1; -update noar ti set b0='LR1F2C5AYWHSULZV972FP0LNDTQ93UEY' where id=1; -update noar tt set b1='VNS2FD255YHT737ZJAXMC56' where id=1; -update noar ti set b1='VNS2FD255YHT737ZJAXMC56' where id=1; -update noar tt set b2='WMCUL9CKIUUL29E11KVCAAB0B' where id=1; -update noar ti set b2='WMCUL9CKIUUL29E11KVCAAB0B' where id=1; -update noar tt set b0='HKU9TSDFCW83P4ADM91QT2SVRQMVV' where id=2; -update noar ti set b0='HKU9TSDFCW83P4ADM91QT2SVRQMVV' where id=2; -update noar tt set b1='THK6Q0PI7NVU9PXBW3RK3IZ1PMB6X3' where id=2; -update noar ti set b1='THK6Q0PI7NVU9PXBW3RK3IZ1PMB6X3' where id=2; -update noar tt set b2='LLVLZ91MUSQXOXFE8BYBC2GSIU3U54XN' where id=2; -update noar ti set b2='LLVLZ91MUSQXOXFE8BYBC2GSIU3U54XN' where id=2; -update noar tt set b0='8DVOSZRLWSTIK' where id=3; -update noar ti set b0='8DVOSZRLWSTIK' where id=3; -update noar tt set b1='2BGTY67YW7KX5TX1U5MD5' where id=3; -update noar ti set b1='2BGTY67YW7KX5TX1U5MD5' where id=3; -update noar tt set b2='UV9UNZDQECM0N2' where id=3; -update noar ti set b2='UV9UNZDQECM0N2' where id=3; -update noar tt set b0='OYXPNG3IALFMOKKTKBZF' where id=4; -update noar ti set b0='OYXPNG3IALFMOKKTKBZF' where id=4; -update noar tt set b1='YEPI66UUA1A240GD48' where id=4; -update noar ti set b1='YEPI66UUA1A240GD48' where id=4; -update noar tt set b2='HE4J4W7ZRZWLZI26XR23' where id=4; -update noar ti set b2='HE4J4W7ZRZWLZI26XR23' where id=4; -update noar tt set b0='130E6Y38TW24D082' where id=5; -update noar ti set b0='130E6Y38TW24D082' where id=5; -update noar tt set b1='VG018IS8ZQN1D' where id=5; -update noar ti set b1='VG018IS8ZQN1D' where id=5; -update noar tt set b2='QH6X8N45BQEG6FD4XHGD2JRAZGN6W6' where id=5; -update noar ti set b2='QH6X8N45BQEG6FD4XHGD2JRAZGN6W6' where id=5; -update noar tt set b0='HZJNJ9QPUC94J' where id=6; -update noar ti set b0='HZJNJ9QPUC94J' where id=6; -update noar tt set b1='12AQKBWP7' where id=6; -update noar ti set b1='12AQKBWP7' where id=6; -update noar tt set b2='LDOGKBAG57B7UCCNAD56V' where id=6; -update noar ti set b2='LDOGKBAG57B7UCCNAD56V' where id=6; -update noar tt set b0='M72' where id=7; -update noar ti set b0='M72' where id=7; -update noar tt set b1='13W65YYJOH49XZ8LE' where id=7; -update noar ti set b1='13W65YYJOH49XZ8LE' where id=7; -update noar tt set b2='CFCY' where id=7; -update noar ti set b2='CFCY' where id=7; -update noar tt set b0='K82JOXYRGMBEONIOXKGI4E3L0J' where id=8; -update noar ti set b0='K82JOXYRGMBEONIOXKGI4E3L0J' where id=8; -update noar tt set b1='BPW' where id=8; -update noar ti set b1='BPW' where id=8; -update noar tt set b2='AB3TYGHITLU260KVRVHUZSALSTLO55C' where id=8; -update noar ti set b2='AB3TYGHITLU260KVRVHUZSALSTLO55C' where id=8; -update noar tt set b0='5KSA3BQ1X1F86XAS' where id=9; -update noar ti set b0='5KSA3BQ1X1F86XAS' where id=9; -update noar tt set b1='6R689A37RVWEZ8RK4' where id=9; -update noar ti set b1='6R689A37RVWEZ8RK4' where id=9; -update noar tt set b2='249XCEBEUHQLF413TJ74LP' where id=9; -update noar ti set b2='249XCEBEUHQLF413TJ74LP' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -b0 tinyblob null, -b1 mediumblob null, -b2 mediumblob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set b0='VCO0JPLDALLG' where id=1; -update noar ti set b0='VCO0JPLDALLG' where id=1; -update noar tt set b1='YZ73XB0JK6XYBGSGAS9MJJ' where id=1; -update noar ti set b1='YZ73XB0JK6XYBGSGAS9MJJ' where id=1; -update noar tt set b2='DUB9P3TDVP2KEI' where id=1; -update noar ti set b2='DUB9P3TDVP2KEI' where id=1; -update noar tt set b0='L1X84LWN8QRDM' where id=2; -update noar ti set b0='L1X84LWN8QRDM' where id=2; -update noar tt set b1='HOR89OUSLFZQ' where id=2; -update noar ti set b1='HOR89OUSLFZQ' where id=2; -update noar tt set b2='II07KOFF5BETPB24O77O8Z' where id=2; -update noar ti set b2='II07KOFF5BETPB24O77O8Z' where id=2; -update noar tt set b0='3C5G9CY6G9BZ50KLHRYE' where id=3; -update noar ti set b0='3C5G9CY6G9BZ50KLHRYE' where id=3; -update noar tt set b1='BOT9A33IKQNQ' where id=3; -update noar ti set b1='BOT9A33IKQNQ' where id=3; -update noar tt set b2='19HXK4IFAMY409SFK00ZPMG' where id=3; -update noar ti set b2='19HXK4IFAMY409SFK00ZPMG' where id=3; -update noar tt set b0='A9MNK5MS60QKEJCRAGF6H55' where id=4; -update noar ti set b0='A9MNK5MS60QKEJCRAGF6H55' where id=4; -update noar tt set b1='BFVYS6M7OO494V6SIV8O7A' where id=4; -update noar ti set b1='BFVYS6M7OO494V6SIV8O7A' where id=4; -update noar tt set b2='Q0ZJKOUJV2Y8WFFYIMV20VKZHASNYL7' where id=4; -update noar ti set b2='Q0ZJKOUJV2Y8WFFYIMV20VKZHASNYL7' where id=4; -update noar tt set b0='YQ5CWFGV4LA5YU' where id=5; -update noar ti set b0='YQ5CWFGV4LA5YU' where id=5; -update noar tt set b1='3VG46KQDCT6EZFRFCT93OGBYP' where id=5; -update noar ti set b1='3VG46KQDCT6EZFRFCT93OGBYP' where id=5; -update noar tt set b2='L0H' where id=5; -update noar ti set b2='L0H' where id=5; -update noar tt set b0='58WDO1GR881BAT6VMOE0JAIO1U8ATM' where id=6; -update noar ti set b0='58WDO1GR881BAT6VMOE0JAIO1U8ATM' where id=6; -update noar tt set b1='W04PPC20CNITELJ24TJE9' where id=6; -update noar ti set b1='W04PPC20CNITELJ24TJE9' where id=6; -update noar tt set b2='FKO06Y1WWP9EF9231X8FSOF' where id=6; -update noar ti set b2='FKO06Y1WWP9EF9231X8FSOF' where id=6; -update noar tt set b0='6YV3CFTPOQMYFJAP74132DZ' where id=7; -update noar ti set b0='6YV3CFTPOQMYFJAP74132DZ' where id=7; -update noar tt set b1='NPZCGPF1KDZAZ8THVONNE' where id=7; -update noar ti set b1='NPZCGPF1KDZAZ8THVONNE' where id=7; -update noar tt set b2='FXFENBCXULQ6THLA5N1RKX' where id=7; -update noar ti set b2='FXFENBCXULQ6THLA5N1RKX' where id=7; -update noar tt set b0='Q6FWAJY98GNLU8RH4' where id=8; -update noar ti set b0='Q6FWAJY98GNLU8RH4' where id=8; -update noar tt set b1='38ZHPSGDNKDMVCDJ4SV0LLKGS' where id=8; -update noar ti set b1='38ZHPSGDNKDMVCDJ4SV0LLKGS' where id=8; -update noar tt set b2='X8P14PZT9PTRVF' where id=8; -update noar ti set b2='X8P14PZT9PTRVF' where id=8; -update noar tt set b0='SDRKTAPHLVRD13SOAKS0WRCE' where id=9; -update noar ti set b0='SDRKTAPHLVRD13SOAKS0WRCE' where id=9; -update noar tt set b1='XXCT9B8IUTBHFEMQ7TH6L30XK9CP5' where id=9; -update noar ti set b1='XXCT9B8IUTBHFEMQ7TH6L30XK9CP5' where id=9; -update noar tt set b2='DC0L9V' where id=9; -update noar ti set b2='DC0L9V' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -b0 tinyblob not null, -b1 mediumblob not null, -b2 mediumblob not null -) engine=tokudb; -insert into tt values (1,'','',''); -insert into tt values (2,'','',''); -insert into tt values (3,'','',''); -insert into tt values (4,'','',''); -insert into tt values (5,'','',''); -insert into tt values (6,'','',''); -insert into tt values (7,'','',''); -insert into tt values (8,'','',''); -insert into tt values (9,'','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set b0='8H5QEMP8Z93WE6J6H244WHNPLMNYIYA' where id=1; -update noar ti set b0='8H5QEMP8Z93WE6J6H244WHNPLMNYIYA' where id=1; -update noar tt set b1='M3Y4OT4' where id=1; -update noar ti set b1='M3Y4OT4' where id=1; -update noar tt set b2='0YFUJA8U3TZOPC6RXLJ3F69ZUPZYQPT' where id=1; -update noar ti set b2='0YFUJA8U3TZOPC6RXLJ3F69ZUPZYQPT' where id=1; -update noar tt set b0='FGGBOVA2XVGBH1E42QILO1N1BQ8CXBZI' where id=2; -update noar ti set b0='FGGBOVA2XVGBH1E42QILO1N1BQ8CXBZI' where id=2; -update noar tt set b1='VJ3D0R0JKTQ' where id=2; -update noar ti set b1='VJ3D0R0JKTQ' where id=2; -update noar tt set b2='8H8MPL0OG2CJJV5OQX05TNSUDVQL' where id=2; -update noar ti set b2='8H8MPL0OG2CJJV5OQX05TNSUDVQL' where id=2; -update noar tt set b0='6L12YITZKF4LDG44HCUIII78K' where id=3; -update noar ti set b0='6L12YITZKF4LDG44HCUIII78K' where id=3; -update noar tt set b1='WEX3OO556LIWHS8DPO6BBYTUY2X2' where id=3; -update noar ti set b1='WEX3OO556LIWHS8DPO6BBYTUY2X2' where id=3; -update noar tt set b2='NW' where id=3; -update noar ti set b2='NW' where id=3; -update noar tt set b0='MYDT5X143' where id=4; -update noar ti set b0='MYDT5X143' where id=4; -update noar tt set b1='04WKK4YFP4C807FZNQZPSVT' where id=4; -update noar ti set b1='04WKK4YFP4C807FZNQZPSVT' where id=4; -update noar tt set b2='R92M8YAE9YHF8JWHTU3YU' where id=4; -update noar ti set b2='R92M8YAE9YHF8JWHTU3YU' where id=4; -update noar tt set b0='PSFXPY89A39M0' where id=5; -update noar ti set b0='PSFXPY89A39M0' where id=5; -update noar tt set b1='T9QQ2P57OU67CJY' where id=5; -update noar ti set b1='T9QQ2P57OU67CJY' where id=5; -update noar tt set b2='MGYSY6VJUR4' where id=5; -update noar ti set b2='MGYSY6VJUR4' where id=5; -update noar tt set b0='8W37RYQ4JM9ITCP10PFJ5U2' where id=6; -update noar ti set b0='8W37RYQ4JM9ITCP10PFJ5U2' where id=6; -update noar tt set b1='H5O79F36HZS' where id=6; -update noar ti set b1='H5O79F36HZS' where id=6; -update noar tt set b2='WB9' where id=6; -update noar ti set b2='WB9' where id=6; -update noar tt set b0='AK7WTU9IVQNJXCE66XHKHYDQN0OE' where id=7; -update noar ti set b0='AK7WTU9IVQNJXCE66XHKHYDQN0OE' where id=7; -update noar tt set b1='UCJEYUVAOSM1UFXZPKPLOK4KOBFNLXP' where id=7; -update noar ti set b1='UCJEYUVAOSM1UFXZPKPLOK4KOBFNLXP' where id=7; -update noar tt set b2='23WBK' where id=7; -update noar ti set b2='23WBK' where id=7; -update noar tt set b0='Q276ZA93FRTBQNPYFWBI4Y2VF7N3' where id=8; -update noar ti set b0='Q276ZA93FRTBQNPYFWBI4Y2VF7N3' where id=8; -update noar tt set b1='97BBSW4XFX1C95TLO1T1LRAZLQ9NFN5A' where id=8; -update noar ti set b1='97BBSW4XFX1C95TLO1T1LRAZLQ9NFN5A' where id=8; -update noar tt set b2='DUKXEJK0JAC6W62BTZ5E' where id=8; -update noar ti set b2='DUKXEJK0JAC6W62BTZ5E' where id=8; -update noar tt set b0='M49S057P13EDI3DGCUS6UTA9N' where id=9; -update noar ti set b0='M49S057P13EDI3DGCUS6UTA9N' where id=9; -update noar tt set b1='BIT6W9BP45A04HII58G' where id=9; -update noar ti set b1='BIT6W9BP45A04HII58G' where id=9; -update noar tt set b2='0X24QVI' where id=9; -update noar ti set b2='0X24QVI' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -b0 tinyblob null, -b1 mediumblob null, -b2 longblob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set b0='RC3FJ0G' where id=1; -update noar ti set b0='RC3FJ0G' where id=1; -update noar tt set b1='4LWJ05NF59SO8A7N55B' where id=1; -update noar ti set b1='4LWJ05NF59SO8A7N55B' where id=1; -update noar tt set b2='V388YCB879EAURE' where id=1; -update noar ti set b2='V388YCB879EAURE' where id=1; -update noar tt set b0='GUUFRAJ' where id=2; -update noar ti set b0='GUUFRAJ' where id=2; -update noar tt set b1='YISROZ786YAUVSM' where id=2; -update noar ti set b1='YISROZ786YAUVSM' where id=2; -update noar tt set b2='FZ779HQ5MV1' where id=2; -update noar ti set b2='FZ779HQ5MV1' where id=2; -update noar tt set b0='TSXHOQGC4MOLERHFF7XCTKZK9U0' where id=3; -update noar ti set b0='TSXHOQGC4MOLERHFF7XCTKZK9U0' where id=3; -update noar tt set b1='TP9FIWYOXXOORH7ZFFT9X2UXJJR' where id=3; -update noar ti set b1='TP9FIWYOXXOORH7ZFFT9X2UXJJR' where id=3; -update noar tt set b2='ORZ37L3X9H101WX' where id=3; -update noar ti set b2='ORZ37L3X9H101WX' where id=3; -update noar tt set b0='8' where id=4; -update noar ti set b0='8' where id=4; -update noar tt set b1='QHVO7KU808904CP7MB503ELDJ79YKZ' where id=4; -update noar ti set b1='QHVO7KU808904CP7MB503ELDJ79YKZ' where id=4; -update noar tt set b2='ED0USKHRYPZWWNOHR6BJ' where id=4; -update noar ti set b2='ED0USKHRYPZWWNOHR6BJ' where id=4; -update noar tt set b0='F7UPEJ6THCHF' where id=5; -update noar ti set b0='F7UPEJ6THCHF' where id=5; -update noar tt set b1='UVGYAJTXTSD16SOSTB03' where id=5; -update noar ti set b1='UVGYAJTXTSD16SOSTB03' where id=5; -update noar tt set b2='382KK8' where id=5; -update noar ti set b2='382KK8' where id=5; -update noar tt set b0='ATAP386S4Q7XL5' where id=6; -update noar ti set b0='ATAP386S4Q7XL5' where id=6; -update noar tt set b1='J' where id=6; -update noar ti set b1='J' where id=6; -update noar tt set b2='QWB7VVS8VSVMWM' where id=6; -update noar ti set b2='QWB7VVS8VSVMWM' where id=6; -update noar tt set b0='Q42T35O3MXCHH0XUGPO0BE1T2Z3Y25I9' where id=7; -update noar ti set b0='Q42T35O3MXCHH0XUGPO0BE1T2Z3Y25I9' where id=7; -update noar tt set b1='VD5W0ZS' where id=7; -update noar ti set b1='VD5W0ZS' where id=7; -update noar tt set b2='Q7WDRS9XBHCF' where id=7; -update noar ti set b2='Q7WDRS9XBHCF' where id=7; -update noar tt set b0='U6DUHCZGKKZNAANMYNVZT7SVY8' where id=8; -update noar ti set b0='U6DUHCZGKKZNAANMYNVZT7SVY8' where id=8; -update noar tt set b1='M' where id=8; -update noar ti set b1='M' where id=8; -update noar tt set b2='3NXRJ' where id=8; -update noar ti set b2='3NXRJ' where id=8; -update noar tt set b0='99N97C7' where id=9; -update noar ti set b0='99N97C7' where id=9; -update noar tt set b1='7JKF57BEDGDX5DJ5PYV182F4Q5M8CUJ0' where id=9; -update noar ti set b1='7JKF57BEDGDX5DJ5PYV182F4Q5M8CUJ0' where id=9; -update noar tt set b2='VDB' where id=9; -update noar ti set b2='VDB' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -b0 tinyblob not null, -b1 mediumblob not null, -b2 longblob not null -) engine=tokudb; -insert into tt values (1,'','',''); -insert into tt values (2,'','',''); -insert into tt values (3,'','',''); -insert into tt values (4,'','',''); -insert into tt values (5,'','',''); -insert into tt values (6,'','',''); -insert into tt values (7,'','',''); -insert into tt values (8,'','',''); -insert into tt values (9,'','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set b0='XKDY8ACXOX8ENOXXR8RYBH8FAMAL6N' where id=1; -update noar ti set b0='XKDY8ACXOX8ENOXXR8RYBH8FAMAL6N' where id=1; -update noar tt set b1='IMHPNCEL9' where id=1; -update noar ti set b1='IMHPNCEL9' where id=1; -update noar tt set b2='L7L62L800Z4WVCIHCVINV94XL' where id=1; -update noar ti set b2='L7L62L800Z4WVCIHCVINV94XL' where id=1; -update noar tt set b0='RBPSPQWGWPLTHQ6F' where id=2; -update noar ti set b0='RBPSPQWGWPLTHQ6F' where id=2; -update noar tt set b1='8W2JYOK4B3' where id=2; -update noar ti set b1='8W2JYOK4B3' where id=2; -update noar tt set b2='8RW6127MR8K3ZME6LSCPSY9QRMM' where id=2; -update noar ti set b2='8RW6127MR8K3ZME6LSCPSY9QRMM' where id=2; -update noar tt set b0='ZJFQLEMC9J3MUPKH02XRFPKJ1GPA2' where id=3; -update noar ti set b0='ZJFQLEMC9J3MUPKH02XRFPKJ1GPA2' where id=3; -update noar tt set b1='7VV561KMJX7VRDGAKBZBMPRA' where id=3; -update noar ti set b1='7VV561KMJX7VRDGAKBZBMPRA' where id=3; -update noar tt set b2='HO45A8DY59MXR' where id=3; -update noar ti set b2='HO45A8DY59MXR' where id=3; -update noar tt set b0='9YGFHMPAOJT' where id=4; -update noar ti set b0='9YGFHMPAOJT' where id=4; -update noar tt set b1='Q783BWI451RKUTIUORM0A1XH1D' where id=4; -update noar ti set b1='Q783BWI451RKUTIUORM0A1XH1D' where id=4; -update noar tt set b2='4Q4QGYUCLA8P2' where id=4; -update noar ti set b2='4Q4QGYUCLA8P2' where id=4; -update noar tt set b0='Z2LI0DW41QA3NF335ISKDALN94ID1B' where id=5; -update noar ti set b0='Z2LI0DW41QA3NF335ISKDALN94ID1B' where id=5; -update noar tt set b1='94X08DXN3JGSN6OX5TNY' where id=5; -update noar ti set b1='94X08DXN3JGSN6OX5TNY' where id=5; -update noar tt set b2='08XHC0A9QE61JNX0H8M65J85XT1RB' where id=5; -update noar ti set b2='08XHC0A9QE61JNX0H8M65J85XT1RB' where id=5; -update noar tt set b0='1FIX84TDQI' where id=6; -update noar ti set b0='1FIX84TDQI' where id=6; -update noar tt set b1='CJ' where id=6; -update noar ti set b1='CJ' where id=6; -update noar tt set b2='B3DWKDMOHVKR' where id=6; -update noar ti set b2='B3DWKDMOHVKR' where id=6; -update noar tt set b0='AAKRU7H1L5W69XQ' where id=7; -update noar ti set b0='AAKRU7H1L5W69XQ' where id=7; -update noar tt set b1='GKX5U1G9GNZ1NNM4JE' where id=7; -update noar ti set b1='GKX5U1G9GNZ1NNM4JE' where id=7; -update noar tt set b2='QZBFHDQM23R3O' where id=7; -update noar ti set b2='QZBFHDQM23R3O' where id=7; -update noar tt set b0='ZRK9EJLOLDOYIBUAJUUKO' where id=8; -update noar ti set b0='ZRK9EJLOLDOYIBUAJUUKO' where id=8; -update noar tt set b1='7XSY' where id=8; -update noar ti set b1='7XSY' where id=8; -update noar tt set b2='R996UUTNJO99CM8' where id=8; -update noar ti set b2='R996UUTNJO99CM8' where id=8; -update noar tt set b0='582YZLBRXAEEDBS' where id=9; -update noar ti set b0='582YZLBRXAEEDBS' where id=9; -update noar tt set b1='IYYTVFADGRGCWS1' where id=9; -update noar ti set b1='IYYTVFADGRGCWS1' where id=9; -update noar tt set b2='D1T' where id=9; -update noar ti set b2='D1T' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -b0 tinyblob null, -b1 mediumblob null, -b2 text null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set b0='WIRORQ4KM9V8XE7PMT3GTSNNMT5' where id=1; -update noar ti set b0='WIRORQ4KM9V8XE7PMT3GTSNNMT5' where id=1; -update noar tt set b1='A3251TI36XPC9HO2U' where id=1; -update noar ti set b1='A3251TI36XPC9HO2U' where id=1; -update noar tt set b2='DQUMFTXH3F8O2GAK310VY2WE7H' where id=1; -update noar ti set b2='DQUMFTXH3F8O2GAK310VY2WE7H' where id=1; -update noar tt set b0='L' where id=2; -update noar ti set b0='L' where id=2; -update noar tt set b1='64TO' where id=2; -update noar ti set b1='64TO' where id=2; -update noar tt set b2='RG5ZJ18J3T259N193KHQ' where id=2; -update noar ti set b2='RG5ZJ18J3T259N193KHQ' where id=2; -update noar tt set b0='3KNWN' where id=3; -update noar ti set b0='3KNWN' where id=3; -update noar tt set b1='U8CKKEJT3P6QOFST681FF7' where id=3; -update noar ti set b1='U8CKKEJT3P6QOFST681FF7' where id=3; -update noar tt set b2='NUFA1BREMJPZCKO4RNL4EYCENJ' where id=3; -update noar ti set b2='NUFA1BREMJPZCKO4RNL4EYCENJ' where id=3; -update noar tt set b0='UZYNXGAF' where id=4; -update noar ti set b0='UZYNXGAF' where id=4; -update noar tt set b1='SIVSRI6XXDU' where id=4; -update noar ti set b1='SIVSRI6XXDU' where id=4; -update noar tt set b2='B1V3JA96D' where id=4; -update noar ti set b2='B1V3JA96D' where id=4; -update noar tt set b0='LBU' where id=5; -update noar ti set b0='LBU' where id=5; -update noar tt set b1='R' where id=5; -update noar ti set b1='R' where id=5; -update noar tt set b2='8XXOBX49KD' where id=5; -update noar ti set b2='8XXOBX49KD' where id=5; -update noar tt set b0='0K0RQ1EO3VW0H1L218H8EN64Q' where id=6; -update noar ti set b0='0K0RQ1EO3VW0H1L218H8EN64Q' where id=6; -update noar tt set b1='EZT3PQVTFNRSHIVV5ZCXJXEMG12U1NYN' where id=6; -update noar ti set b1='EZT3PQVTFNRSHIVV5ZCXJXEMG12U1NYN' where id=6; -update noar tt set b2='AY2PLXYBQJBXDF8Z' where id=6; -update noar ti set b2='AY2PLXYBQJBXDF8Z' where id=6; -update noar tt set b0='VF4ULFAUOSVG7ZDTKQ' where id=7; -update noar ti set b0='VF4ULFAUOSVG7ZDTKQ' where id=7; -update noar tt set b1='C9A3AP6' where id=7; -update noar ti set b1='C9A3AP6' where id=7; -update noar tt set b2='8LXTB1' where id=7; -update noar ti set b2='8LXTB1' where id=7; -update noar tt set b0='ZDO9R2W21' where id=8; -update noar ti set b0='ZDO9R2W21' where id=8; -update noar tt set b1='F3R362HRMBMV3OV4WAG601DQQK' where id=8; -update noar ti set b1='F3R362HRMBMV3OV4WAG601DQQK' where id=8; -update noar tt set b2='XERMA9UCH8F1F2P2282VK' where id=8; -update noar ti set b2='XERMA9UCH8F1F2P2282VK' where id=8; -update noar tt set b0='B5CXB4Z1QOTWCHZQ22WV7' where id=9; -update noar ti set b0='B5CXB4Z1QOTWCHZQ22WV7' where id=9; -update noar tt set b1='AUKE2FUDO4ZXJ4JW8MTS8' where id=9; -update noar ti set b1='AUKE2FUDO4ZXJ4JW8MTS8' where id=9; -update noar tt set b2='M9Z4LORON659SNL' where id=9; -update noar ti set b2='M9Z4LORON659SNL' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -b0 tinyblob not null, -b1 mediumblob not null, -b2 text not null -) engine=tokudb; -insert into tt values (1,'','',''); -insert into tt values (2,'','',''); -insert into tt values (3,'','',''); -insert into tt values (4,'','',''); -insert into tt values (5,'','',''); -insert into tt values (6,'','',''); -insert into tt values (7,'','',''); -insert into tt values (8,'','',''); -insert into tt values (9,'','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set b0='58VWJ07B' where id=1; -update noar ti set b0='58VWJ07B' where id=1; -update noar tt set b1='S962AC7' where id=1; -update noar ti set b1='S962AC7' where id=1; -update noar tt set b2='G4SZ7R35GUN3P26A' where id=1; -update noar ti set b2='G4SZ7R35GUN3P26A' where id=1; -update noar tt set b0='ALUHYRRH8HKH4Z51VK0I' where id=2; -update noar ti set b0='ALUHYRRH8HKH4Z51VK0I' where id=2; -update noar tt set b1='M3I11KSUB9' where id=2; -update noar ti set b1='M3I11KSUB9' where id=2; -update noar tt set b2='2T5TKRLXULPZ22T5STNLTUMQHKWEB1E' where id=2; -update noar ti set b2='2T5TKRLXULPZ22T5STNLTUMQHKWEB1E' where id=2; -update noar tt set b0='7CF' where id=3; -update noar ti set b0='7CF' where id=3; -update noar tt set b1='GTRZCS6U26EZX6BCEK9NO73M2' where id=3; -update noar ti set b1='GTRZCS6U26EZX6BCEK9NO73M2' where id=3; -update noar tt set b2='KDE' where id=3; -update noar ti set b2='KDE' where id=3; -update noar tt set b0='GLZV5M1WQFPJ3' where id=4; -update noar ti set b0='GLZV5M1WQFPJ3' where id=4; -update noar tt set b1='2GKJLOHPWK3PEE6' where id=4; -update noar ti set b1='2GKJLOHPWK3PEE6' where id=4; -update noar tt set b2='VCKWGAFKWEOFL1JQ9L' where id=4; -update noar ti set b2='VCKWGAFKWEOFL1JQ9L' where id=4; -update noar tt set b0='AX7RMVA9NQ61X7ZXVDCP2FI6L0PT' where id=5; -update noar ti set b0='AX7RMVA9NQ61X7ZXVDCP2FI6L0PT' where id=5; -update noar tt set b1='IMF0L3S64G6PUKRGFM2' where id=5; -update noar ti set b1='IMF0L3S64G6PUKRGFM2' where id=5; -update noar tt set b2='9LSKI5BR7DH3VQRLPW74OTLS' where id=5; -update noar ti set b2='9LSKI5BR7DH3VQRLPW74OTLS' where id=5; -update noar tt set b0='GQS3EC50U3BVCM6H3H4ZLYKI21C5' where id=6; -update noar ti set b0='GQS3EC50U3BVCM6H3H4ZLYKI21C5' where id=6; -update noar tt set b1='SAIMB8RE' where id=6; -update noar ti set b1='SAIMB8RE' where id=6; -update noar tt set b2='LBJJQ7MRSG8G0F38CDEB' where id=6; -update noar ti set b2='LBJJQ7MRSG8G0F38CDEB' where id=6; -update noar tt set b0='3D9XWMT0JF2Y5H2JLBTLZGP5K05J11' where id=7; -update noar ti set b0='3D9XWMT0JF2Y5H2JLBTLZGP5K05J11' where id=7; -update noar tt set b1='81FU' where id=7; -update noar ti set b1='81FU' where id=7; -update noar tt set b2='218UUTD8T4' where id=7; -update noar ti set b2='218UUTD8T4' where id=7; -update noar tt set b0='2K' where id=8; -update noar ti set b0='2K' where id=8; -update noar tt set b1='B2TWOZWNY6EAVO5KY8' where id=8; -update noar ti set b1='B2TWOZWNY6EAVO5KY8' where id=8; -update noar tt set b2='SPJCRCLHK5IPYSCN8CZR8WGRPD' where id=8; -update noar ti set b2='SPJCRCLHK5IPYSCN8CZR8WGRPD' where id=8; -update noar tt set b0='BYRBSWCWWWYLF5TXB6HHTVNU' where id=9; -update noar ti set b0='BYRBSWCWWWYLF5TXB6HHTVNU' where id=9; -update noar tt set b1='02G6UOLOEICXBBVFFG32U8PJKXKK6BMX' where id=9; -update noar ti set b1='02G6UOLOEICXBBVFFG32U8PJKXKK6BMX' where id=9; -update noar tt set b2='MP2GH63NZ64MDCC6YPBO1549AHVH3' where id=9; -update noar ti set b2='MP2GH63NZ64MDCC6YPBO1549AHVH3' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -b0 tinyblob null, -b1 longblob null, -b2 tinyblob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set b0='WXA7SP1HUDKEAHG00OY' where id=1; -update noar ti set b0='WXA7SP1HUDKEAHG00OY' where id=1; -update noar tt set b1='D4Y89QEGNY7DALJV2CDG' where id=1; -update noar ti set b1='D4Y89QEGNY7DALJV2CDG' where id=1; -update noar tt set b2='86CBXEO2MDCVKW52IWBJBFOE93W1' where id=1; -update noar ti set b2='86CBXEO2MDCVKW52IWBJBFOE93W1' where id=1; -update noar tt set b0='W0PGLR2FOPV8YF' where id=2; -update noar ti set b0='W0PGLR2FOPV8YF' where id=2; -update noar tt set b1='4D2LGR9Y' where id=2; -update noar ti set b1='4D2LGR9Y' where id=2; -update noar tt set b2='U7OYN1T7OI2895OSPWD' where id=2; -update noar ti set b2='U7OYN1T7OI2895OSPWD' where id=2; -update noar tt set b0='HJVNM9XM6PH7IEBZPG08CSM' where id=3; -update noar ti set b0='HJVNM9XM6PH7IEBZPG08CSM' where id=3; -update noar tt set b1='45PYSB58HTPHPWK60B4ORHPVJKVOJ' where id=3; -update noar ti set b1='45PYSB58HTPHPWK60B4ORHPVJKVOJ' where id=3; -update noar tt set b2='PCEJ7C' where id=3; -update noar ti set b2='PCEJ7C' where id=3; -update noar tt set b0='0ZCFY1TD0' where id=4; -update noar ti set b0='0ZCFY1TD0' where id=4; -update noar tt set b1='A5Y7D2VYANTWMF6RNS2DZBWYQ28' where id=4; -update noar ti set b1='A5Y7D2VYANTWMF6RNS2DZBWYQ28' where id=4; -update noar tt set b2='8L6RY6LDAOPWA' where id=4; -update noar ti set b2='8L6RY6LDAOPWA' where id=4; -update noar tt set b0='8OO5F3EUNAG0XNIWH36Q6O75O7A7' where id=5; -update noar ti set b0='8OO5F3EUNAG0XNIWH36Q6O75O7A7' where id=5; -update noar tt set b1='OLX5GHAATYOGGTF0PE2' where id=5; -update noar ti set b1='OLX5GHAATYOGGTF0PE2' where id=5; -update noar tt set b2='PQ7HLR2YXZ6BYEJF63CE' where id=5; -update noar ti set b2='PQ7HLR2YXZ6BYEJF63CE' where id=5; -update noar tt set b0='6H5S8G6F0F1F3W9PBUD8I0U' where id=6; -update noar ti set b0='6H5S8G6F0F1F3W9PBUD8I0U' where id=6; -update noar tt set b1='3W70ZQE2YSU' where id=6; -update noar ti set b1='3W70ZQE2YSU' where id=6; -update noar tt set b2='4' where id=6; -update noar ti set b2='4' where id=6; -update noar tt set b0='F93UERCGUA5H31QTL' where id=7; -update noar ti set b0='F93UERCGUA5H31QTL' where id=7; -update noar tt set b1='GMNM73XZLCJIF66AM6GZ14C6GX' where id=7; -update noar ti set b1='GMNM73XZLCJIF66AM6GZ14C6GX' where id=7; -update noar tt set b2='4OLM1P4' where id=7; -update noar ti set b2='4OLM1P4' where id=7; -update noar tt set b0='MW7YIKK8E2B78OGCH8Q8CQRMOQYG' where id=8; -update noar ti set b0='MW7YIKK8E2B78OGCH8Q8CQRMOQYG' where id=8; -update noar tt set b1='F84QH8AIP9Y83THER' where id=8; -update noar ti set b1='F84QH8AIP9Y83THER' where id=8; -update noar tt set b2='WDLC7KHUM5KDASBWVT7HTHT' where id=8; -update noar ti set b2='WDLC7KHUM5KDASBWVT7HTHT' where id=8; -update noar tt set b0='A6F58NLMH1' where id=9; -update noar ti set b0='A6F58NLMH1' where id=9; -update noar tt set b1='QW6F011ZNG4MLIQ53PHXSCHVEPLSDG5' where id=9; -update noar ti set b1='QW6F011ZNG4MLIQ53PHXSCHVEPLSDG5' where id=9; -update noar tt set b2='U89X7VALQUXVDMCJ0F3HV2D' where id=9; -update noar ti set b2='U89X7VALQUXVDMCJ0F3HV2D' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -b0 tinyblob not null, -b1 longblob not null, -b2 tinyblob not null -) engine=tokudb; -insert into tt values (1,'','',''); -insert into tt values (2,'','',''); -insert into tt values (3,'','',''); -insert into tt values (4,'','',''); -insert into tt values (5,'','',''); -insert into tt values (6,'','',''); -insert into tt values (7,'','',''); -insert into tt values (8,'','',''); -insert into tt values (9,'','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set b0='166MH3AEDCXCP3O7GRTTQZRO6BJKU19' where id=1; -update noar ti set b0='166MH3AEDCXCP3O7GRTTQZRO6BJKU19' where id=1; -update noar tt set b1='3C396EJJX7P' where id=1; -update noar ti set b1='3C396EJJX7P' where id=1; -update noar tt set b2='78AI3H1XRXU4' where id=1; -update noar ti set b2='78AI3H1XRXU4' where id=1; -update noar tt set b0='7QA9XB7YAEA05MCW144SI' where id=2; -update noar ti set b0='7QA9XB7YAEA05MCW144SI' where id=2; -update noar tt set b1='5OJIX' where id=2; -update noar ti set b1='5OJIX' where id=2; -update noar tt set b2='9RW4R36P4ASMH3S' where id=2; -update noar ti set b2='9RW4R36P4ASMH3S' where id=2; -update noar tt set b0='9' where id=3; -update noar ti set b0='9' where id=3; -update noar tt set b1='M0IC' where id=3; -update noar ti set b1='M0IC' where id=3; -update noar tt set b2='2SHOH1OK9' where id=3; -update noar ti set b2='2SHOH1OK9' where id=3; -update noar tt set b0='LQXJ0MK7LTPFDU8ZUG24JK6D' where id=4; -update noar ti set b0='LQXJ0MK7LTPFDU8ZUG24JK6D' where id=4; -update noar tt set b1='9US7U8O3RXETUBRH4W' where id=4; -update noar ti set b1='9US7U8O3RXETUBRH4W' where id=4; -update noar tt set b2='OJXDY' where id=4; -update noar ti set b2='OJXDY' where id=4; -update noar tt set b0='N' where id=5; -update noar ti set b0='N' where id=5; -update noar tt set b1='M7N7HKM5T05ZIUCV9BER' where id=5; -update noar ti set b1='M7N7HKM5T05ZIUCV9BER' where id=5; -update noar tt set b2='53' where id=5; -update noar ti set b2='53' where id=5; -update noar tt set b0='ELN3RS21Y94U3P6O9L81G7ANC' where id=6; -update noar ti set b0='ELN3RS21Y94U3P6O9L81G7ANC' where id=6; -update noar tt set b1='27XQXUH7BQNE' where id=6; -update noar ti set b1='27XQXUH7BQNE' where id=6; -update noar tt set b2='1' where id=6; -update noar ti set b2='1' where id=6; -update noar tt set b0='NLML8' where id=7; -update noar ti set b0='NLML8' where id=7; -update noar tt set b1='JJIITAXW2HMSZ7L5UXR1QRR' where id=7; -update noar ti set b1='JJIITAXW2HMSZ7L5UXR1QRR' where id=7; -update noar tt set b2='TEWE7JN90' where id=7; -update noar ti set b2='TEWE7JN90' where id=7; -update noar tt set b0='U0AU7M00Z65JGLYM41VEC8V23V' where id=8; -update noar ti set b0='U0AU7M00Z65JGLYM41VEC8V23V' where id=8; -update noar tt set b1='QK' where id=8; -update noar ti set b1='QK' where id=8; -update noar tt set b2='TU6HO1ZWTHP0SQQOD7UKZK047' where id=8; -update noar ti set b2='TU6HO1ZWTHP0SQQOD7UKZK047' where id=8; -update noar tt set b0='YQ245XZBQLDXKCR' where id=9; -update noar ti set b0='YQ245XZBQLDXKCR' where id=9; -update noar tt set b1='VYJ3P7V5BWD6P908EKQEAQRS32HYB' where id=9; -update noar ti set b1='VYJ3P7V5BWD6P908EKQEAQRS32HYB' where id=9; -update noar tt set b2='OW6OAAE6YJMQ9QID' where id=9; -update noar ti set b2='OW6OAAE6YJMQ9QID' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -b0 tinyblob null, -b1 longblob null, -b2 blob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set b0='3FYCUHVXJUWWR' where id=1; -update noar ti set b0='3FYCUHVXJUWWR' where id=1; -update noar tt set b1='OLSES8XDHIV' where id=1; -update noar ti set b1='OLSES8XDHIV' where id=1; -update noar tt set b2='T0KK244ZUAM9X84VJTUWY5IMH4' where id=1; -update noar ti set b2='T0KK244ZUAM9X84VJTUWY5IMH4' where id=1; -update noar tt set b0='A1SON62ULFVY1P' where id=2; -update noar ti set b0='A1SON62ULFVY1P' where id=2; -update noar tt set b1='BTQW520G58GQ1KN15C6GWPJ4DVH7W' where id=2; -update noar ti set b1='BTQW520G58GQ1KN15C6GWPJ4DVH7W' where id=2; -update noar tt set b2='0B' where id=2; -update noar ti set b2='0B' where id=2; -update noar tt set b0='5M996XG24LKZAC4L90IUW9' where id=3; -update noar ti set b0='5M996XG24LKZAC4L90IUW9' where id=3; -update noar tt set b1='QRJX14P243BP5E9WIAC' where id=3; -update noar ti set b1='QRJX14P243BP5E9WIAC' where id=3; -update noar tt set b2='QFXCMAXUBZTY6VK8GR3OXDJAPLE3RRP3' where id=3; -update noar ti set b2='QFXCMAXUBZTY6VK8GR3OXDJAPLE3RRP3' where id=3; -update noar tt set b0='Q8QFM1L5UOL36CL' where id=4; -update noar ti set b0='Q8QFM1L5UOL36CL' where id=4; -update noar tt set b1='SU6ADSJIBUKCP72OO44YJ' where id=4; -update noar ti set b1='SU6ADSJIBUKCP72OO44YJ' where id=4; -update noar tt set b2='T5BF45JTPVXPC2WQ4YUPB' where id=4; -update noar ti set b2='T5BF45JTPVXPC2WQ4YUPB' where id=4; -update noar tt set b0='OLQ2KW8KPS8X' where id=5; -update noar ti set b0='OLQ2KW8KPS8X' where id=5; -update noar tt set b1='LJPWC23XJT667T09MOI96' where id=5; -update noar ti set b1='LJPWC23XJT667T09MOI96' where id=5; -update noar tt set b2='FUU3MAMEX1QB9SBEO' where id=5; -update noar ti set b2='FUU3MAMEX1QB9SBEO' where id=5; -update noar tt set b0='84' where id=6; -update noar ti set b0='84' where id=6; -update noar tt set b1='O9SRSGIUITLXUFJIULAGGTVIBP' where id=6; -update noar ti set b1='O9SRSGIUITLXUFJIULAGGTVIBP' where id=6; -update noar tt set b2='TY7RHZI1PEJIP5D4S' where id=6; -update noar ti set b2='TY7RHZI1PEJIP5D4S' where id=6; -update noar tt set b0='BG6MCPR' where id=7; -update noar ti set b0='BG6MCPR' where id=7; -update noar tt set b1='GURK96DSFMDT5CR' where id=7; -update noar ti set b1='GURK96DSFMDT5CR' where id=7; -update noar tt set b2='M3D4NOFLZK3XF8' where id=7; -update noar ti set b2='M3D4NOFLZK3XF8' where id=7; -update noar tt set b0='6RGFQ9C5PC' where id=8; -update noar ti set b0='6RGFQ9C5PC' where id=8; -update noar tt set b1='TCC0934YN3IWLMSUB3' where id=8; -update noar ti set b1='TCC0934YN3IWLMSUB3' where id=8; -update noar tt set b2='AQ3' where id=8; -update noar ti set b2='AQ3' where id=8; -update noar tt set b0='PEM68STZNX358JKECE712MM' where id=9; -update noar ti set b0='PEM68STZNX358JKECE712MM' where id=9; -update noar tt set b1='IXNHU' where id=9; -update noar ti set b1='IXNHU' where id=9; -update noar tt set b2='EV6BAVDVJGXC8TN5XMG' where id=9; -update noar ti set b2='EV6BAVDVJGXC8TN5XMG' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -b0 tinyblob not null, -b1 longblob not null, -b2 blob not null -) engine=tokudb; -insert into tt values (1,'','',''); -insert into tt values (2,'','',''); -insert into tt values (3,'','',''); -insert into tt values (4,'','',''); -insert into tt values (5,'','',''); -insert into tt values (6,'','',''); -insert into tt values (7,'','',''); -insert into tt values (8,'','',''); -insert into tt values (9,'','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set b0='SH93XMF3AHVZ4S' where id=1; -update noar ti set b0='SH93XMF3AHVZ4S' where id=1; -update noar tt set b1='7IU3NH' where id=1; -update noar ti set b1='7IU3NH' where id=1; -update noar tt set b2='9PHIRPDK2' where id=1; -update noar ti set b2='9PHIRPDK2' where id=1; -update noar tt set b0='8ND8GZP1VYMHMKLEH72Y6Z' where id=2; -update noar ti set b0='8ND8GZP1VYMHMKLEH72Y6Z' where id=2; -update noar tt set b1='5Q7RKUTRI7SXBOV7Y9HCSURX3D' where id=2; -update noar ti set b1='5Q7RKUTRI7SXBOV7Y9HCSURX3D' where id=2; -update noar tt set b2='9V8K7PXD4SK4MRED6C48D612600' where id=2; -update noar ti set b2='9V8K7PXD4SK4MRED6C48D612600' where id=2; -update noar tt set b0='3H23IVIK467' where id=3; -update noar ti set b0='3H23IVIK467' where id=3; -update noar tt set b1='S5P8VXGG5MPIAP' where id=3; -update noar ti set b1='S5P8VXGG5MPIAP' where id=3; -update noar tt set b2='AHBTX5BTTYU5DXSP7PVNPJQ7AG' where id=3; -update noar ti set b2='AHBTX5BTTYU5DXSP7PVNPJQ7AG' where id=3; -update noar tt set b0='AANIZ1153DQ3IYBONFHYGOINVXRG' where id=4; -update noar ti set b0='AANIZ1153DQ3IYBONFHYGOINVXRG' where id=4; -update noar tt set b1='LGHOP7DNLW274' where id=4; -update noar ti set b1='LGHOP7DNLW274' where id=4; -update noar tt set b2='2AW8MQLKX9V95C4KW6Y1JB2O' where id=4; -update noar ti set b2='2AW8MQLKX9V95C4KW6Y1JB2O' where id=4; -update noar tt set b0='EPOP' where id=5; -update noar ti set b0='EPOP' where id=5; -update noar tt set b1='9G76VFO821Y2W0MVN48RCBB5V3TNB7M0' where id=5; -update noar ti set b1='9G76VFO821Y2W0MVN48RCBB5V3TNB7M0' where id=5; -update noar tt set b2='L0S8WT13TWB' where id=5; -update noar ti set b2='L0S8WT13TWB' where id=5; -update noar tt set b0='IYX9EI5N6YZJT0YU7BGDTL23JXEB9D3Y' where id=6; -update noar ti set b0='IYX9EI5N6YZJT0YU7BGDTL23JXEB9D3Y' where id=6; -update noar tt set b1='G08NUJECYUQTQZHQWMPPG0GUZWTBD7MO' where id=6; -update noar ti set b1='G08NUJECYUQTQZHQWMPPG0GUZWTBD7MO' where id=6; -update noar tt set b2='YAUH1BUM' where id=6; -update noar ti set b2='YAUH1BUM' where id=6; -update noar tt set b0='IKNVP7LCTZSZ1ROPVIP4U' where id=7; -update noar ti set b0='IKNVP7LCTZSZ1ROPVIP4U' where id=7; -update noar tt set b1='GOA0QNQF2M4' where id=7; -update noar ti set b1='GOA0QNQF2M4' where id=7; -update noar tt set b2='KJU92DVMH5' where id=7; -update noar ti set b2='KJU92DVMH5' where id=7; -update noar tt set b0='9R6573CAA5Q0W6PHM39M3W7O64U2E' where id=8; -update noar ti set b0='9R6573CAA5Q0W6PHM39M3W7O64U2E' where id=8; -update noar tt set b1='OP5NZWOTR4VV80RFSWGGK2MA' where id=8; -update noar ti set b1='OP5NZWOTR4VV80RFSWGGK2MA' where id=8; -update noar tt set b2='TN' where id=8; -update noar ti set b2='TN' where id=8; -update noar tt set b0='LSHJ5C0ZL' where id=9; -update noar ti set b0='LSHJ5C0ZL' where id=9; -update noar tt set b1='7SQA3937P0D8JU9V' where id=9; -update noar ti set b1='7SQA3937P0D8JU9V' where id=9; -update noar tt set b2='VKNSLMEA7' where id=9; -update noar ti set b2='VKNSLMEA7' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -b0 tinyblob null, -b1 longblob null, -b2 mediumblob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set b0='OK7AIIPW4IDXD1SD' where id=1; -update noar ti set b0='OK7AIIPW4IDXD1SD' where id=1; -update noar tt set b1='VWHFAOEC53GBBJDKAIMI3QSJU' where id=1; -update noar ti set b1='VWHFAOEC53GBBJDKAIMI3QSJU' where id=1; -update noar tt set b2='PKHPS' where id=1; -update noar ti set b2='PKHPS' where id=1; -update noar tt set b0='DTYNVT00GFQEYVVJPR2HMO2L8B' where id=2; -update noar ti set b0='DTYNVT00GFQEYVVJPR2HMO2L8B' where id=2; -update noar tt set b1='54KMF19CSD9K85686IE6F' where id=2; -update noar ti set b1='54KMF19CSD9K85686IE6F' where id=2; -update noar tt set b2='Z604T31AA' where id=2; -update noar ti set b2='Z604T31AA' where id=2; -update noar tt set b0='14KAF2Q16FY8FHA7M5GM36WHGONDJT4' where id=3; -update noar ti set b0='14KAF2Q16FY8FHA7M5GM36WHGONDJT4' where id=3; -update noar tt set b1='FJH98KFN9U5FLXWQ5U6LUYDE6B' where id=3; -update noar ti set b1='FJH98KFN9U5FLXWQ5U6LUYDE6B' where id=3; -update noar tt set b2='9' where id=3; -update noar ti set b2='9' where id=3; -update noar tt set b0='YE6NHHUSRJPXSX' where id=4; -update noar ti set b0='YE6NHHUSRJPXSX' where id=4; -update noar tt set b1='BO6YJZVDZGI8NXT0G' where id=4; -update noar ti set b1='BO6YJZVDZGI8NXT0G' where id=4; -update noar tt set b2='7Z' where id=4; -update noar ti set b2='7Z' where id=4; -update noar tt set b0='YTKGJI09L4O4GM6RB84YODFW9N' where id=5; -update noar ti set b0='YTKGJI09L4O4GM6RB84YODFW9N' where id=5; -update noar tt set b1='8DYMBLB' where id=5; -update noar ti set b1='8DYMBLB' where id=5; -update noar tt set b2='FR76TS6RN' where id=5; -update noar ti set b2='FR76TS6RN' where id=5; -update noar tt set b0='XM9L24AZEQNS9U6H' where id=6; -update noar ti set b0='XM9L24AZEQNS9U6H' where id=6; -update noar tt set b1='WT' where id=6; -update noar ti set b1='WT' where id=6; -update noar tt set b2='ZI' where id=6; -update noar ti set b2='ZI' where id=6; -update noar tt set b0='ONF0G' where id=7; -update noar ti set b0='ONF0G' where id=7; -update noar tt set b1='0G0G8QIEQ' where id=7; -update noar ti set b1='0G0G8QIEQ' where id=7; -update noar tt set b2='XOZIJ2F4M1E0MT3YOBQFWGR' where id=7; -update noar ti set b2='XOZIJ2F4M1E0MT3YOBQFWGR' where id=7; -update noar tt set b0='LYMRU' where id=8; -update noar ti set b0='LYMRU' where id=8; -update noar tt set b1='KT4J557BTJVDLMO1E7P' where id=8; -update noar ti set b1='KT4J557BTJVDLMO1E7P' where id=8; -update noar tt set b2='CTJ6JJB05GO' where id=8; -update noar ti set b2='CTJ6JJB05GO' where id=8; -update noar tt set b0='HQV4GGXN4BML' where id=9; -update noar ti set b0='HQV4GGXN4BML' where id=9; -update noar tt set b1='B98RQD4K' where id=9; -update noar ti set b1='B98RQD4K' where id=9; -update noar tt set b2='A4KVWSW2BCEDPL3DJ95' where id=9; -update noar ti set b2='A4KVWSW2BCEDPL3DJ95' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -b0 tinyblob not null, -b1 longblob not null, -b2 mediumblob not null -) engine=tokudb; -insert into tt values (1,'','',''); -insert into tt values (2,'','',''); -insert into tt values (3,'','',''); -insert into tt values (4,'','',''); -insert into tt values (5,'','',''); -insert into tt values (6,'','',''); -insert into tt values (7,'','',''); -insert into tt values (8,'','',''); -insert into tt values (9,'','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set b0='QRJR3AY1WUSN' where id=1; -update noar ti set b0='QRJR3AY1WUSN' where id=1; -update noar tt set b1='YYB7SZSQ8E06W' where id=1; -update noar ti set b1='YYB7SZSQ8E06W' where id=1; -update noar tt set b2='O' where id=1; -update noar ti set b2='O' where id=1; -update noar tt set b0='GN441L3IV50M4DPFX2' where id=2; -update noar ti set b0='GN441L3IV50M4DPFX2' where id=2; -update noar tt set b1='QZA8UWIM1PW750X8FW' where id=2; -update noar ti set b1='QZA8UWIM1PW750X8FW' where id=2; -update noar tt set b2='IWZEUOSSFDT0U1NFX5VDUWMCH' where id=2; -update noar ti set b2='IWZEUOSSFDT0U1NFX5VDUWMCH' where id=2; -update noar tt set b0='VO3Z8QO804BWD3DLVPPE8SWKG1LD' where id=3; -update noar ti set b0='VO3Z8QO804BWD3DLVPPE8SWKG1LD' where id=3; -update noar tt set b1='L5' where id=3; -update noar ti set b1='L5' where id=3; -update noar tt set b2='PDGK50QTEHWYYKN68X78YQ' where id=3; -update noar ti set b2='PDGK50QTEHWYYKN68X78YQ' where id=3; -update noar tt set b0='HLCPXHF' where id=4; -update noar ti set b0='HLCPXHF' where id=4; -update noar tt set b1='HS17C8BFK9CSYKJ5KYR' where id=4; -update noar ti set b1='HS17C8BFK9CSYKJ5KYR' where id=4; -update noar tt set b2='YPPEDN0YAO4SB2' where id=4; -update noar ti set b2='YPPEDN0YAO4SB2' where id=4; -update noar tt set b0='2UGGI' where id=5; -update noar ti set b0='2UGGI' where id=5; -update noar tt set b1='7F4UBQ' where id=5; -update noar ti set b1='7F4UBQ' where id=5; -update noar tt set b2='3R' where id=5; -update noar ti set b2='3R' where id=5; -update noar tt set b0='KP2W7G86NB3QDVVXO' where id=6; -update noar ti set b0='KP2W7G86NB3QDVVXO' where id=6; -update noar tt set b1='AXZ9VG63F' where id=6; -update noar ti set b1='AXZ9VG63F' where id=6; -update noar tt set b2='04SEY1G66F73U0Z' where id=6; -update noar ti set b2='04SEY1G66F73U0Z' where id=6; -update noar tt set b0='2K56ILPAM9IB' where id=7; -update noar ti set b0='2K56ILPAM9IB' where id=7; -update noar tt set b1='ZECBKQNED5XGPBJETYT6IU' where id=7; -update noar ti set b1='ZECBKQNED5XGPBJETYT6IU' where id=7; -update noar tt set b2='N7HH5DJIWBIXSMUPTUO9D14BIOEEZB1G' where id=7; -update noar ti set b2='N7HH5DJIWBIXSMUPTUO9D14BIOEEZB1G' where id=7; -update noar tt set b0='D31RONWAQF995FZ5L' where id=8; -update noar ti set b0='D31RONWAQF995FZ5L' where id=8; -update noar tt set b1='XBSL1F8PXC2RX2Z0U9' where id=8; -update noar ti set b1='XBSL1F8PXC2RX2Z0U9' where id=8; -update noar tt set b2='Q0ECZR5CS6JDFVJR85E6NNUXB0OVQ' where id=8; -update noar ti set b2='Q0ECZR5CS6JDFVJR85E6NNUXB0OVQ' where id=8; -update noar tt set b0='0K9' where id=9; -update noar ti set b0='0K9' where id=9; -update noar tt set b1='QRR36PG66K4G8HLBCC14B62' where id=9; -update noar ti set b1='QRR36PG66K4G8HLBCC14B62' where id=9; -update noar tt set b2='PVTZ8AN9T0BI3GX6YVWC' where id=9; -update noar ti set b2='PVTZ8AN9T0BI3GX6YVWC' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -b0 tinyblob null, -b1 longblob null, -b2 longblob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set b0='V4EXPNC4DXHNG' where id=1; -update noar ti set b0='V4EXPNC4DXHNG' where id=1; -update noar tt set b1='SVZ5L6R' where id=1; -update noar ti set b1='SVZ5L6R' where id=1; -update noar tt set b2='77UESANOA857QU' where id=1; -update noar ti set b2='77UESANOA857QU' where id=1; -update noar tt set b0='0R5' where id=2; -update noar ti set b0='0R5' where id=2; -update noar tt set b1='Z87UOK84DW2JXSH02JVOA1K1SDGH34UD' where id=2; -update noar ti set b1='Z87UOK84DW2JXSH02JVOA1K1SDGH34UD' where id=2; -update noar tt set b2='AHQRBXA0L50JMFM96SR6TRBGN45YL' where id=2; -update noar ti set b2='AHQRBXA0L50JMFM96SR6TRBGN45YL' where id=2; -update noar tt set b0='U6BQMY1WGUB4S' where id=3; -update noar ti set b0='U6BQMY1WGUB4S' where id=3; -update noar tt set b1='64S7596QB0D0XEML' where id=3; -update noar ti set b1='64S7596QB0D0XEML' where id=3; -update noar tt set b2='BQ5F' where id=3; -update noar ti set b2='BQ5F' where id=3; -update noar tt set b0='Q3QASTAZZYK9QNAVIPGHAJYW7' where id=4; -update noar ti set b0='Q3QASTAZZYK9QNAVIPGHAJYW7' where id=4; -update noar tt set b1='J0HWO627U6P8HMRESVK6' where id=4; -update noar ti set b1='J0HWO627U6P8HMRESVK6' where id=4; -update noar tt set b2='O0ENHDV' where id=4; -update noar ti set b2='O0ENHDV' where id=4; -update noar tt set b0='C893AUEKROVS5' where id=5; -update noar ti set b0='C893AUEKROVS5' where id=5; -update noar tt set b1='6NR' where id=5; -update noar ti set b1='6NR' where id=5; -update noar tt set b2='8QC5NTX4C8SWCKT0P5ZFY44AN' where id=5; -update noar ti set b2='8QC5NTX4C8SWCKT0P5ZFY44AN' where id=5; -update noar tt set b0='KE1TGBH7FLN3QT7PWW' where id=6; -update noar ti set b0='KE1TGBH7FLN3QT7PWW' where id=6; -update noar tt set b1='64MWOKJI7' where id=6; -update noar ti set b1='64MWOKJI7' where id=6; -update noar tt set b2='VPZP0UTUG5PCLLHYJ4ZKINX6KN3D' where id=6; -update noar ti set b2='VPZP0UTUG5PCLLHYJ4ZKINX6KN3D' where id=6; -update noar tt set b0='5QMP3U3IAZR2M4BIN3K0QOZEG' where id=7; -update noar ti set b0='5QMP3U3IAZR2M4BIN3K0QOZEG' where id=7; -update noar tt set b1='78RKVS7SYP98EC4UI01' where id=7; -update noar ti set b1='78RKVS7SYP98EC4UI01' where id=7; -update noar tt set b2='3ZPI3WITUTNZ0AFXS2OZ' where id=7; -update noar ti set b2='3ZPI3WITUTNZ0AFXS2OZ' where id=7; -update noar tt set b0='017JE1G' where id=8; -update noar ti set b0='017JE1G' where id=8; -update noar tt set b1='60S' where id=8; -update noar ti set b1='60S' where id=8; -update noar tt set b2='UBDB3PKH5VYSU3LUKC7ABXR3JY3XFG' where id=8; -update noar ti set b2='UBDB3PKH5VYSU3LUKC7ABXR3JY3XFG' where id=8; -update noar tt set b0='0GAV03D' where id=9; -update noar ti set b0='0GAV03D' where id=9; -update noar tt set b1='WEA46YHICT9JRIJL' where id=9; -update noar ti set b1='WEA46YHICT9JRIJL' where id=9; -update noar tt set b2='3LRQ4CJIQIR7NHV' where id=9; -update noar ti set b2='3LRQ4CJIQIR7NHV' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -b0 tinyblob not null, -b1 longblob not null, -b2 longblob not null -) engine=tokudb; -insert into tt values (1,'','',''); -insert into tt values (2,'','',''); -insert into tt values (3,'','',''); -insert into tt values (4,'','',''); -insert into tt values (5,'','',''); -insert into tt values (6,'','',''); -insert into tt values (7,'','',''); -insert into tt values (8,'','',''); -insert into tt values (9,'','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set b0='SIUOUQMQ94GMYUWWA4LL2JVURA2' where id=1; -update noar ti set b0='SIUOUQMQ94GMYUWWA4LL2JVURA2' where id=1; -update noar tt set b1='JIBD' where id=1; -update noar ti set b1='JIBD' where id=1; -update noar tt set b2='USWPA1J2AM9YOJHS65S' where id=1; -update noar ti set b2='USWPA1J2AM9YOJHS65S' where id=1; -update noar tt set b0='M4XC5M2VEZAR5SZZYWQ1MV78FGDEK' where id=2; -update noar ti set b0='M4XC5M2VEZAR5SZZYWQ1MV78FGDEK' where id=2; -update noar tt set b1='KA' where id=2; -update noar ti set b1='KA' where id=2; -update noar tt set b2='IG09OLU5DESH7L8RR29IG201DLWLMS' where id=2; -update noar ti set b2='IG09OLU5DESH7L8RR29IG201DLWLMS' where id=2; -update noar tt set b0='L9EDIO9IXIW8WZYQYVVW04N7DUY6' where id=3; -update noar ti set b0='L9EDIO9IXIW8WZYQYVVW04N7DUY6' where id=3; -update noar tt set b1='VJ' where id=3; -update noar ti set b1='VJ' where id=3; -update noar tt set b2='7P9P6E9B98VKB' where id=3; -update noar ti set b2='7P9P6E9B98VKB' where id=3; -update noar tt set b0='13' where id=4; -update noar ti set b0='13' where id=4; -update noar tt set b1='CHQUBL8UKBCBQE14D2JTPVXW33VKIOK' where id=4; -update noar ti set b1='CHQUBL8UKBCBQE14D2JTPVXW33VKIOK' where id=4; -update noar tt set b2='3F0OTCG0ERAZ9VLSG6JW6' where id=4; -update noar ti set b2='3F0OTCG0ERAZ9VLSG6JW6' where id=4; -update noar tt set b0='HH7GW75U' where id=5; -update noar ti set b0='HH7GW75U' where id=5; -update noar tt set b1='CLBXJJL209T9T1LE2UNZA' where id=5; -update noar ti set b1='CLBXJJL209T9T1LE2UNZA' where id=5; -update noar tt set b2='TIAVVOU3' where id=5; -update noar ti set b2='TIAVVOU3' where id=5; -update noar tt set b0='V8HDFCXHUJD8O8UJDG8UP89D2TR' where id=6; -update noar ti set b0='V8HDFCXHUJD8O8UJDG8UP89D2TR' where id=6; -update noar tt set b1='QA' where id=6; -update noar ti set b1='QA' where id=6; -update noar tt set b2='BQCG46E0D7GY8X7YES1OJ48SNJ4' where id=6; -update noar ti set b2='BQCG46E0D7GY8X7YES1OJ48SNJ4' where id=6; -update noar tt set b0='9FK5ZZV' where id=7; -update noar ti set b0='9FK5ZZV' where id=7; -update noar tt set b1='39GP3USPT5CI9YIV6LPI0D7PK0D2' where id=7; -update noar ti set b1='39GP3USPT5CI9YIV6LPI0D7PK0D2' where id=7; -update noar tt set b2='9C4C2R89T' where id=7; -update noar ti set b2='9C4C2R89T' where id=7; -update noar tt set b0='DJN0GRYNI07R99NWYRROPCNRFJMV1R' where id=8; -update noar ti set b0='DJN0GRYNI07R99NWYRROPCNRFJMV1R' where id=8; -update noar tt set b1='B9T7EZRIPV7SDL54BGW8M' where id=8; -update noar ti set b1='B9T7EZRIPV7SDL54BGW8M' where id=8; -update noar tt set b2='TAHG3DP0TNP9D35T3OG115246K9W27F' where id=8; -update noar ti set b2='TAHG3DP0TNP9D35T3OG115246K9W27F' where id=8; -update noar tt set b0='4GXJ5D2X27XZ6X0PV2LGURBYLG4XC1ZI' where id=9; -update noar ti set b0='4GXJ5D2X27XZ6X0PV2LGURBYLG4XC1ZI' where id=9; -update noar tt set b1='B6IZ1GE2X9LG17DRKQNA7RYZCT3EK4D5' where id=9; -update noar ti set b1='B6IZ1GE2X9LG17DRKQNA7RYZCT3EK4D5' where id=9; -update noar tt set b2='QHLK2DOD9AQQ0C' where id=9; -update noar ti set b2='QHLK2DOD9AQQ0C' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -b0 tinyblob null, -b1 longblob null, -b2 text null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set b0='TPJ3V1L' where id=1; -update noar ti set b0='TPJ3V1L' where id=1; -update noar tt set b1='LYLO3Q3638DJJYPSR9UH5X' where id=1; -update noar ti set b1='LYLO3Q3638DJJYPSR9UH5X' where id=1; -update noar tt set b2='HUF' where id=1; -update noar ti set b2='HUF' where id=1; -update noar tt set b0='NWU3N76SC4U0GPPMM43G5FIZ' where id=2; -update noar ti set b0='NWU3N76SC4U0GPPMM43G5FIZ' where id=2; -update noar tt set b1='B7GTI3IWHD1NRWZ29W2BQDP6F62OYR' where id=2; -update noar ti set b1='B7GTI3IWHD1NRWZ29W2BQDP6F62OYR' where id=2; -update noar tt set b2='FMQXSFXA4IH54Y' where id=2; -update noar ti set b2='FMQXSFXA4IH54Y' where id=2; -update noar tt set b0='UPDP71UGIPBOPC5YCH0M1DPEW4' where id=3; -update noar ti set b0='UPDP71UGIPBOPC5YCH0M1DPEW4' where id=3; -update noar tt set b1='9408YTEZ8T663GTS2QQX4746EK5J1F1S' where id=3; -update noar ti set b1='9408YTEZ8T663GTS2QQX4746EK5J1F1S' where id=3; -update noar tt set b2='7GUW9SK72J533N5FXC1K8LNULNVTICU' where id=3; -update noar ti set b2='7GUW9SK72J533N5FXC1K8LNULNVTICU' where id=3; -update noar tt set b0='5ZSOS8M4RL1XWQ8HY' where id=4; -update noar ti set b0='5ZSOS8M4RL1XWQ8HY' where id=4; -update noar tt set b1='X5Z5' where id=4; -update noar ti set b1='X5Z5' where id=4; -update noar tt set b2='LNRQ93XDBJDYQFXVO2RJ37H5HNMHVEJ' where id=4; -update noar ti set b2='LNRQ93XDBJDYQFXVO2RJ37H5HNMHVEJ' where id=4; -update noar tt set b0='94C2GL4YNGAASVN92IT2NW0QQP2RI' where id=5; -update noar ti set b0='94C2GL4YNGAASVN92IT2NW0QQP2RI' where id=5; -update noar tt set b1='X6ITDE7ABH53PF' where id=5; -update noar ti set b1='X6ITDE7ABH53PF' where id=5; -update noar tt set b2='W' where id=5; -update noar ti set b2='W' where id=5; -update noar tt set b0='CEG3XGBX6RQ7B1FENR3' where id=6; -update noar ti set b0='CEG3XGBX6RQ7B1FENR3' where id=6; -update noar tt set b1='CO4D27' where id=6; -update noar ti set b1='CO4D27' where id=6; -update noar tt set b2='DOIM41UC9' where id=6; -update noar ti set b2='DOIM41UC9' where id=6; -update noar tt set b0='0WADZ1INY29EM4NRYZQ3W5BSH9' where id=7; -update noar ti set b0='0WADZ1INY29EM4NRYZQ3W5BSH9' where id=7; -update noar tt set b1='BLV10XRZ11JW6GKD9PT2095822N8UKL' where id=7; -update noar ti set b1='BLV10XRZ11JW6GKD9PT2095822N8UKL' where id=7; -update noar tt set b2='XL0N1RL4UGLEEI4IMXOK0Q9CM8RD34W' where id=7; -update noar ti set b2='XL0N1RL4UGLEEI4IMXOK0Q9CM8RD34W' where id=7; -update noar tt set b0='QBL41UGAVZR93301XC' where id=8; -update noar ti set b0='QBL41UGAVZR93301XC' where id=8; -update noar tt set b1='LDHXR' where id=8; -update noar ti set b1='LDHXR' where id=8; -update noar tt set b2='N2QE8D3GV' where id=8; -update noar ti set b2='N2QE8D3GV' where id=8; -update noar tt set b0='9R10GK0V2OS1P0R' where id=9; -update noar ti set b0='9R10GK0V2OS1P0R' where id=9; -update noar tt set b1='MWZRTKITWAU26FG' where id=9; -update noar ti set b1='MWZRTKITWAU26FG' where id=9; -update noar tt set b2='JNN6LED3DUMX5MINF94PUSA2X8BISZ' where id=9; -update noar ti set b2='JNN6LED3DUMX5MINF94PUSA2X8BISZ' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -b0 tinyblob not null, -b1 longblob not null, -b2 text not null -) engine=tokudb; -insert into tt values (1,'','',''); -insert into tt values (2,'','',''); -insert into tt values (3,'','',''); -insert into tt values (4,'','',''); -insert into tt values (5,'','',''); -insert into tt values (6,'','',''); -insert into tt values (7,'','',''); -insert into tt values (8,'','',''); -insert into tt values (9,'','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set b0='SY45AWJB48MZHC43VI5DW' where id=1; -update noar ti set b0='SY45AWJB48MZHC43VI5DW' where id=1; -update noar tt set b1='96H' where id=1; -update noar ti set b1='96H' where id=1; -update noar tt set b2='1689MM2JZTPDAE8MNJY0EGRDK4' where id=1; -update noar ti set b2='1689MM2JZTPDAE8MNJY0EGRDK4' where id=1; -update noar tt set b0='C0O19W54H7X2EO0PJCIKC7' where id=2; -update noar ti set b0='C0O19W54H7X2EO0PJCIKC7' where id=2; -update noar tt set b1='JZBUGA4LZ4A60UZLUY1FFL8HROP3WUTX' where id=2; -update noar ti set b1='JZBUGA4LZ4A60UZLUY1FFL8HROP3WUTX' where id=2; -update noar tt set b2='WHY8VQENSVNTT3QEBSP' where id=2; -update noar ti set b2='WHY8VQENSVNTT3QEBSP' where id=2; -update noar tt set b0='TJ1O' where id=3; -update noar ti set b0='TJ1O' where id=3; -update noar tt set b1='4W0PA0WW' where id=3; -update noar ti set b1='4W0PA0WW' where id=3; -update noar tt set b2='S' where id=3; -update noar ti set b2='S' where id=3; -update noar tt set b0='PA0HGG5DVJC' where id=4; -update noar ti set b0='PA0HGG5DVJC' where id=4; -update noar tt set b1='VJH47XXPJ2O44R' where id=4; -update noar ti set b1='VJH47XXPJ2O44R' where id=4; -update noar tt set b2='5WON0SLKQORMLW327OP0I5YE' where id=4; -update noar ti set b2='5WON0SLKQORMLW327OP0I5YE' where id=4; -update noar tt set b0='K0FNWKUDU6PGTKBTQTD4FLBY1' where id=5; -update noar ti set b0='K0FNWKUDU6PGTKBTQTD4FLBY1' where id=5; -update noar tt set b1='0W6L6LE' where id=5; -update noar ti set b1='0W6L6LE' where id=5; -update noar tt set b2='PJCQRB7UFFS2RJEL' where id=5; -update noar ti set b2='PJCQRB7UFFS2RJEL' where id=5; -update noar tt set b0='IL6TP1RFJR94HAG7VYK7DL6AHQVN635F' where id=6; -update noar ti set b0='IL6TP1RFJR94HAG7VYK7DL6AHQVN635F' where id=6; -update noar tt set b1='QZTO52EKP2Y2Y4557L1I9MTYVKWCD' where id=6; -update noar ti set b1='QZTO52EKP2Y2Y4557L1I9MTYVKWCD' where id=6; -update noar tt set b2='XSLJT3MNK6RK4HECD5E56ESQTG01PCEA' where id=6; -update noar ti set b2='XSLJT3MNK6RK4HECD5E56ESQTG01PCEA' where id=6; -update noar tt set b0='TMAQ9ZOG4XPOGRZ' where id=7; -update noar ti set b0='TMAQ9ZOG4XPOGRZ' where id=7; -update noar tt set b1='YXAQPPYBPDFGH9WA3NUL3BZCX' where id=7; -update noar ti set b1='YXAQPPYBPDFGH9WA3NUL3BZCX' where id=7; -update noar tt set b2='PID8CVM27K9RJ1UB' where id=7; -update noar ti set b2='PID8CVM27K9RJ1UB' where id=7; -update noar tt set b0='PHFJ0NU50ZKFNXO' where id=8; -update noar ti set b0='PHFJ0NU50ZKFNXO' where id=8; -update noar tt set b1='WPBV4VCJ6U7MT8E' where id=8; -update noar ti set b1='WPBV4VCJ6U7MT8E' where id=8; -update noar tt set b2='R' where id=8; -update noar ti set b2='R' where id=8; -update noar tt set b0='958GJCAH96O' where id=9; -update noar ti set b0='958GJCAH96O' where id=9; -update noar tt set b1='AIUQ5E7L5BC53HLU3VB1' where id=9; -update noar ti set b1='AIUQ5E7L5BC53HLU3VB1' where id=9; -update noar tt set b2='VBEYW2GGA5C' where id=9; -update noar ti set b2='VBEYW2GGA5C' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -b0 tinyblob null, -b1 text null, -b2 tinyblob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set b0='XACHNX1V8L2VN8CILGTLWM' where id=1; -update noar ti set b0='XACHNX1V8L2VN8CILGTLWM' where id=1; -update noar tt set b1='A9MTUNFL5EDEMLWLI9RU4SIP' where id=1; -update noar ti set b1='A9MTUNFL5EDEMLWLI9RU4SIP' where id=1; -update noar tt set b2='M2LZ26BJND1NFOJDYCVDYY2C' where id=1; -update noar ti set b2='M2LZ26BJND1NFOJDYCVDYY2C' where id=1; -update noar tt set b0='1CL0J9L' where id=2; -update noar ti set b0='1CL0J9L' where id=2; -update noar tt set b1='26AIX' where id=2; -update noar ti set b1='26AIX' where id=2; -update noar tt set b2='9FRXB7JIQLUJM002NJ5RMV' where id=2; -update noar ti set b2='9FRXB7JIQLUJM002NJ5RMV' where id=2; -update noar tt set b0='6ZAEY1SYBUQL9' where id=3; -update noar ti set b0='6ZAEY1SYBUQL9' where id=3; -update noar tt set b1='IVQ4JSP77Y7UULE9A1A' where id=3; -update noar ti set b1='IVQ4JSP77Y7UULE9A1A' where id=3; -update noar tt set b2='C' where id=3; -update noar ti set b2='C' where id=3; -update noar tt set b0='YACCA1YGYGN' where id=4; -update noar ti set b0='YACCA1YGYGN' where id=4; -update noar tt set b1='TXP' where id=4; -update noar ti set b1='TXP' where id=4; -update noar tt set b2='Y3SQ73D3M7IP510OJN9ITSQO' where id=4; -update noar ti set b2='Y3SQ73D3M7IP510OJN9ITSQO' where id=4; -update noar tt set b0='EEQTPLLTY9BL617N' where id=5; -update noar ti set b0='EEQTPLLTY9BL617N' where id=5; -update noar tt set b1='NLBYP5VR2UQV' where id=5; -update noar ti set b1='NLBYP5VR2UQV' where id=5; -update noar tt set b2='5HUWC9Z1YAFNNQJ4BSXTBH' where id=5; -update noar ti set b2='5HUWC9Z1YAFNNQJ4BSXTBH' where id=5; -update noar tt set b0='X2Q6MI0C3DA21AO64P92RSUG2' where id=6; -update noar ti set b0='X2Q6MI0C3DA21AO64P92RSUG2' where id=6; -update noar tt set b1='MYB0RH25CM5Q' where id=6; -update noar ti set b1='MYB0RH25CM5Q' where id=6; -update noar tt set b2='K' where id=6; -update noar ti set b2='K' where id=6; -update noar tt set b0='OXQD66LHD40N05OX0UZUIVOKJF25G7Z' where id=7; -update noar ti set b0='OXQD66LHD40N05OX0UZUIVOKJF25G7Z' where id=7; -update noar tt set b1='VXWOLY7TY4L56GYDDYVUAPV0YM' where id=7; -update noar ti set b1='VXWOLY7TY4L56GYDDYVUAPV0YM' where id=7; -update noar tt set b2='7T2MC1QTPL9RVZZ6VWQJ0N1EL' where id=7; -update noar ti set b2='7T2MC1QTPL9RVZZ6VWQJ0N1EL' where id=7; -update noar tt set b0='BDGIOLLOX41TG66DSIG97IZ3RLWXB' where id=8; -update noar ti set b0='BDGIOLLOX41TG66DSIG97IZ3RLWXB' where id=8; -update noar tt set b1='FLHNNI472K' where id=8; -update noar ti set b1='FLHNNI472K' where id=8; -update noar tt set b2='Z7PR1N6R5A7CXK' where id=8; -update noar ti set b2='Z7PR1N6R5A7CXK' where id=8; -update noar tt set b0='FVEOP338T7' where id=9; -update noar ti set b0='FVEOP338T7' where id=9; -update noar tt set b1='KY0LPIV' where id=9; -update noar ti set b1='KY0LPIV' where id=9; -update noar tt set b2='Q1Z5ZR294ITKWNUCG01ME' where id=9; -update noar ti set b2='Q1Z5ZR294ITKWNUCG01ME' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -b0 tinyblob not null, -b1 text not null, -b2 tinyblob not null -) engine=tokudb; -insert into tt values (1,'','',''); -insert into tt values (2,'','',''); -insert into tt values (3,'','',''); -insert into tt values (4,'','',''); -insert into tt values (5,'','',''); -insert into tt values (6,'','',''); -insert into tt values (7,'','',''); -insert into tt values (8,'','',''); -insert into tt values (9,'','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set b0='4ZTREP' where id=1; -update noar ti set b0='4ZTREP' where id=1; -update noar tt set b1='L8X5S9IQ2RAHKD6XM3Z9KTQNO78YTW' where id=1; -update noar ti set b1='L8X5S9IQ2RAHKD6XM3Z9KTQNO78YTW' where id=1; -update noar tt set b2='41YMD8JTG51IEPGRGTQ6MM225E' where id=1; -update noar ti set b2='41YMD8JTG51IEPGRGTQ6MM225E' where id=1; -update noar tt set b0='2PLFJJ82CMFP42NE5018RC65' where id=2; -update noar ti set b0='2PLFJJ82CMFP42NE5018RC65' where id=2; -update noar tt set b1='8282NR6B' where id=2; -update noar ti set b1='8282NR6B' where id=2; -update noar tt set b2='4XGVY3J' where id=2; -update noar ti set b2='4XGVY3J' where id=2; -update noar tt set b0='29VMTNQG642ZYUT8PJWECJS' where id=3; -update noar ti set b0='29VMTNQG642ZYUT8PJWECJS' where id=3; -update noar tt set b1='JZW2D' where id=3; -update noar ti set b1='JZW2D' where id=3; -update noar tt set b2='BR1MP4ZC90V46MDG' where id=3; -update noar ti set b2='BR1MP4ZC90V46MDG' where id=3; -update noar tt set b0='NMS9QB' where id=4; -update noar ti set b0='NMS9QB' where id=4; -update noar tt set b1='3A26DG0S2XHI' where id=4; -update noar ti set b1='3A26DG0S2XHI' where id=4; -update noar tt set b2='QPJIUG' where id=4; -update noar ti set b2='QPJIUG' where id=4; -update noar tt set b0='O2OPXB1YLKS4PWF4' where id=5; -update noar ti set b0='O2OPXB1YLKS4PWF4' where id=5; -update noar tt set b1='VZQJMENLLJ8PZUYPVJQ6WRFQ5VYKLY' where id=5; -update noar ti set b1='VZQJMENLLJ8PZUYPVJQ6WRFQ5VYKLY' where id=5; -update noar tt set b2='RW2Y42NS7VZZ' where id=5; -update noar ti set b2='RW2Y42NS7VZZ' where id=5; -update noar tt set b0='JIU7D6LO5RA' where id=6; -update noar ti set b0='JIU7D6LO5RA' where id=6; -update noar tt set b1='RHLROSF28RI' where id=6; -update noar ti set b1='RHLROSF28RI' where id=6; -update noar tt set b2='3H5YMX4MZ94L35EAEAZLADR4D2TEP' where id=6; -update noar ti set b2='3H5YMX4MZ94L35EAEAZLADR4D2TEP' where id=6; -update noar tt set b0='N3J5GB7JGOT' where id=7; -update noar ti set b0='N3J5GB7JGOT' where id=7; -update noar tt set b1='74D0861LTF58RLG' where id=7; -update noar ti set b1='74D0861LTF58RLG' where id=7; -update noar tt set b2='OVU3UN' where id=7; -update noar ti set b2='OVU3UN' where id=7; -update noar tt set b0='UYP0FCWXVJXXVQ91653G1Q1' where id=8; -update noar ti set b0='UYP0FCWXVJXXVQ91653G1Q1' where id=8; -update noar tt set b1='MI45Q2XOB5LIYZR7HT6PRB' where id=8; -update noar ti set b1='MI45Q2XOB5LIYZR7HT6PRB' where id=8; -update noar tt set b2='RAGG7VXX7DZ40FALUEX' where id=8; -update noar ti set b2='RAGG7VXX7DZ40FALUEX' where id=8; -update noar tt set b0='NK' where id=9; -update noar ti set b0='NK' where id=9; -update noar tt set b1='ZGSZI1LMJ1BI82XFI6' where id=9; -update noar ti set b1='ZGSZI1LMJ1BI82XFI6' where id=9; -update noar tt set b2='CV1TLDFLXTRYFMYPEKI57U6YXX2FG' where id=9; -update noar ti set b2='CV1TLDFLXTRYFMYPEKI57U6YXX2FG' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -b0 tinyblob null, -b1 text null, -b2 blob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set b0='J6UT4L0CV5TFE' where id=1; -update noar ti set b0='J6UT4L0CV5TFE' where id=1; -update noar tt set b1='ULUG7J2AP3RBZR9BEWG48N6' where id=1; -update noar ti set b1='ULUG7J2AP3RBZR9BEWG48N6' where id=1; -update noar tt set b2='B5PFGDG0FVSR' where id=1; -update noar ti set b2='B5PFGDG0FVSR' where id=1; -update noar tt set b0='ACILM35DA1RCEMX72QNYDS' where id=2; -update noar ti set b0='ACILM35DA1RCEMX72QNYDS' where id=2; -update noar tt set b1='UDL9EWXMJYR5' where id=2; -update noar ti set b1='UDL9EWXMJYR5' where id=2; -update noar tt set b2='O9ZMOIXEA' where id=2; -update noar ti set b2='O9ZMOIXEA' where id=2; -update noar tt set b0='45BESPEY2SBE' where id=3; -update noar ti set b0='45BESPEY2SBE' where id=3; -update noar tt set b1='O655ZSCFIE871GV4PT3FI' where id=3; -update noar ti set b1='O655ZSCFIE871GV4PT3FI' where id=3; -update noar tt set b2='JYUSOPL0UTP19Y2ZXZMI2UEPKF' where id=3; -update noar ti set b2='JYUSOPL0UTP19Y2ZXZMI2UEPKF' where id=3; -update noar tt set b0='NP' where id=4; -update noar ti set b0='NP' where id=4; -update noar tt set b1='U68SQCT' where id=4; -update noar ti set b1='U68SQCT' where id=4; -update noar tt set b2='TDPUMJLW0JAK3D7Y1IHR' where id=4; -update noar ti set b2='TDPUMJLW0JAK3D7Y1IHR' where id=4; -update noar tt set b0='J8EM359HBKQT0' where id=5; -update noar ti set b0='J8EM359HBKQT0' where id=5; -update noar tt set b1='MGCQE9TVGNA1PBOSCMGYNHJZD' where id=5; -update noar ti set b1='MGCQE9TVGNA1PBOSCMGYNHJZD' where id=5; -update noar tt set b2='H8JXMDJKJ84C28OAX' where id=5; -update noar ti set b2='H8JXMDJKJ84C28OAX' where id=5; -update noar tt set b0='X3YBKBN9J0' where id=6; -update noar ti set b0='X3YBKBN9J0' where id=6; -update noar tt set b1='9EN14YI0UBGRKRGZX1ET' where id=6; -update noar ti set b1='9EN14YI0UBGRKRGZX1ET' where id=6; -update noar tt set b2='UICXV153KI63KIA3YL9YN58IP5P14B' where id=6; -update noar ti set b2='UICXV153KI63KIA3YL9YN58IP5P14B' where id=6; -update noar tt set b0='4UU4G6MY8DTWZVASILHQ' where id=7; -update noar ti set b0='4UU4G6MY8DTWZVASILHQ' where id=7; -update noar tt set b1='8Z7LRW9ENCJA5VT25AKUUO04' where id=7; -update noar ti set b1='8Z7LRW9ENCJA5VT25AKUUO04' where id=7; -update noar tt set b2='BMER3TQ1A3FIH9O' where id=7; -update noar ti set b2='BMER3TQ1A3FIH9O' where id=7; -update noar tt set b0='FY1YP7EHHO2GSO13Q8UERG5GL1D' where id=8; -update noar ti set b0='FY1YP7EHHO2GSO13Q8UERG5GL1D' where id=8; -update noar tt set b1='VNA082E3LI9G' where id=8; -update noar ti set b1='VNA082E3LI9G' where id=8; -update noar tt set b2='91EDWQ87M' where id=8; -update noar ti set b2='91EDWQ87M' where id=8; -update noar tt set b0='RZ3YBHHYG5WWXOZJMIE' where id=9; -update noar ti set b0='RZ3YBHHYG5WWXOZJMIE' where id=9; -update noar tt set b1='XN8LKNMPI' where id=9; -update noar ti set b1='XN8LKNMPI' where id=9; -update noar tt set b2='5Z' where id=9; -update noar ti set b2='5Z' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -b0 tinyblob not null, -b1 text not null, -b2 blob not null -) engine=tokudb; -insert into tt values (1,'','',''); -insert into tt values (2,'','',''); -insert into tt values (3,'','',''); -insert into tt values (4,'','',''); -insert into tt values (5,'','',''); -insert into tt values (6,'','',''); -insert into tt values (7,'','',''); -insert into tt values (8,'','',''); -insert into tt values (9,'','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set b0='JAOF86PXKZMP1DCOGYPEX67EUZAZD' where id=1; -update noar ti set b0='JAOF86PXKZMP1DCOGYPEX67EUZAZD' where id=1; -update noar tt set b1='LDG5RVX8F' where id=1; -update noar ti set b1='LDG5RVX8F' where id=1; -update noar tt set b2='ZCR6M6394O' where id=1; -update noar ti set b2='ZCR6M6394O' where id=1; -update noar tt set b0='9ZSJM50B2Y3MFOUVKC' where id=2; -update noar ti set b0='9ZSJM50B2Y3MFOUVKC' where id=2; -update noar tt set b1='SCCEKNG6YF' where id=2; -update noar ti set b1='SCCEKNG6YF' where id=2; -update noar tt set b2='PKXDPVWGICX5LHIHZKRI' where id=2; -update noar ti set b2='PKXDPVWGICX5LHIHZKRI' where id=2; -update noar tt set b0='F98Q0DMX' where id=3; -update noar ti set b0='F98Q0DMX' where id=3; -update noar tt set b1='HSWFR62' where id=3; -update noar ti set b1='HSWFR62' where id=3; -update noar tt set b2='FOTDH' where id=3; -update noar ti set b2='FOTDH' where id=3; -update noar tt set b0='KCK' where id=4; -update noar ti set b0='KCK' where id=4; -update noar tt set b1='UQTU3ZCBGJX' where id=4; -update noar ti set b1='UQTU3ZCBGJX' where id=4; -update noar tt set b2='B37KUKFKMC3EET1IP6' where id=4; -update noar ti set b2='B37KUKFKMC3EET1IP6' where id=4; -update noar tt set b0='DBLPTXA' where id=5; -update noar ti set b0='DBLPTXA' where id=5; -update noar tt set b1='WW7SS8L91YKM' where id=5; -update noar ti set b1='WW7SS8L91YKM' where id=5; -update noar tt set b2='NA' where id=5; -update noar ti set b2='NA' where id=5; -update noar tt set b0='NRNCPQLLLBBL5YN36PC3L7P811HCETY' where id=6; -update noar ti set b0='NRNCPQLLLBBL5YN36PC3L7P811HCETY' where id=6; -update noar tt set b1='P2K8SUMEKQGRHS9H4IO7L5EPZ7' where id=6; -update noar ti set b1='P2K8SUMEKQGRHS9H4IO7L5EPZ7' where id=6; -update noar tt set b2='RXOJ5' where id=6; -update noar ti set b2='RXOJ5' where id=6; -update noar tt set b0='RDDNNT' where id=7; -update noar ti set b0='RDDNNT' where id=7; -update noar tt set b1='CGQK3MHL0A20NU' where id=7; -update noar ti set b1='CGQK3MHL0A20NU' where id=7; -update noar tt set b2='UFK0AUJ7ZITUZZOSBPMB6C1Q' where id=7; -update noar ti set b2='UFK0AUJ7ZITUZZOSBPMB6C1Q' where id=7; -update noar tt set b0='TDRVBP3' where id=8; -update noar ti set b0='TDRVBP3' where id=8; -update noar tt set b1='L4TJZ5AHCQKQ9YJ89M' where id=8; -update noar ti set b1='L4TJZ5AHCQKQ9YJ89M' where id=8; -update noar tt set b2='CJWQN82XPOZG88O27UV01NGJ02V2K' where id=8; -update noar ti set b2='CJWQN82XPOZG88O27UV01NGJ02V2K' where id=8; -update noar tt set b0='SS9YA7U3VCZSS34VJDDE' where id=9; -update noar ti set b0='SS9YA7U3VCZSS34VJDDE' where id=9; -update noar tt set b1='KL5OI2675CDMOGA234B2BR3Y8' where id=9; -update noar ti set b1='KL5OI2675CDMOGA234B2BR3Y8' where id=9; -update noar tt set b2='6FYOP' where id=9; -update noar ti set b2='6FYOP' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -b0 tinyblob null, -b1 text null, -b2 mediumblob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set b0='NQ6E2TT4QEUBCL0BM5QYMUXKUUC' where id=1; -update noar ti set b0='NQ6E2TT4QEUBCL0BM5QYMUXKUUC' where id=1; -update noar tt set b1='2OZH' where id=1; -update noar ti set b1='2OZH' where id=1; -update noar tt set b2='M' where id=1; -update noar ti set b2='M' where id=1; -update noar tt set b0='6FZANCNLQB5500WADDZAK' where id=2; -update noar ti set b0='6FZANCNLQB5500WADDZAK' where id=2; -update noar tt set b1='AQNIUDUTQIFS' where id=2; -update noar ti set b1='AQNIUDUTQIFS' where id=2; -update noar tt set b2='539MKB4ULIIPBQTQ9N' where id=2; -update noar ti set b2='539MKB4ULIIPBQTQ9N' where id=2; -update noar tt set b0='T9K4XVUEVWP' where id=3; -update noar ti set b0='T9K4XVUEVWP' where id=3; -update noar tt set b1='53UC17TUE2R' where id=3; -update noar ti set b1='53UC17TUE2R' where id=3; -update noar tt set b2='M9H86EJYS258IAST' where id=3; -update noar ti set b2='M9H86EJYS258IAST' where id=3; -update noar tt set b0='GRQEOSO0KL5T' where id=4; -update noar ti set b0='GRQEOSO0KL5T' where id=4; -update noar tt set b1='06T5RMX3X06GN0T3627I4GPAQHV' where id=4; -update noar ti set b1='06T5RMX3X06GN0T3627I4GPAQHV' where id=4; -update noar tt set b2='S71PWP7V0OPD0P6JW' where id=4; -update noar ti set b2='S71PWP7V0OPD0P6JW' where id=4; -update noar tt set b0='QA43317YFTZ8Z5YIISY' where id=5; -update noar ti set b0='QA43317YFTZ8Z5YIISY' where id=5; -update noar tt set b1='S0PDNFO517' where id=5; -update noar ti set b1='S0PDNFO517' where id=5; -update noar tt set b2='8RLSMA8BC8SXOMV7G' where id=5; -update noar ti set b2='8RLSMA8BC8SXOMV7G' where id=5; -update noar tt set b0='WA3MOZRQSM9TRED7L0H' where id=6; -update noar ti set b0='WA3MOZRQSM9TRED7L0H' where id=6; -update noar tt set b1='SQ9' where id=6; -update noar ti set b1='SQ9' where id=6; -update noar tt set b2='AI24SPUR5ELGV' where id=6; -update noar ti set b2='AI24SPUR5ELGV' where id=6; -update noar tt set b0='AK67' where id=7; -update noar ti set b0='AK67' where id=7; -update noar tt set b1='ZKN47H9X6KD6W' where id=7; -update noar ti set b1='ZKN47H9X6KD6W' where id=7; -update noar tt set b2='AVCJG4V34FIFWQLO3A4KDVB' where id=7; -update noar ti set b2='AVCJG4V34FIFWQLO3A4KDVB' where id=7; -update noar tt set b0='YGS9AS49D' where id=8; -update noar ti set b0='YGS9AS49D' where id=8; -update noar tt set b1='04G70' where id=8; -update noar ti set b1='04G70' where id=8; -update noar tt set b2='WUIG8UVJ5K3ESR4EA59G5GEK' where id=8; -update noar ti set b2='WUIG8UVJ5K3ESR4EA59G5GEK' where id=8; -update noar tt set b0='9Y59RWP' where id=9; -update noar ti set b0='9Y59RWP' where id=9; -update noar tt set b1='PO24Y3PXHMZ' where id=9; -update noar ti set b1='PO24Y3PXHMZ' where id=9; -update noar tt set b2='ZF9SWWE06ND4J1J4OW6Y5NDIR1B' where id=9; -update noar ti set b2='ZF9SWWE06ND4J1J4OW6Y5NDIR1B' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -b0 tinyblob not null, -b1 text not null, -b2 mediumblob not null -) engine=tokudb; -insert into tt values (1,'','',''); -insert into tt values (2,'','',''); -insert into tt values (3,'','',''); -insert into tt values (4,'','',''); -insert into tt values (5,'','',''); -insert into tt values (6,'','',''); -insert into tt values (7,'','',''); -insert into tt values (8,'','',''); -insert into tt values (9,'','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set b0='CB7DR' where id=1; -update noar ti set b0='CB7DR' where id=1; -update noar tt set b1='3IV0V4FWCZSE8K63AQ2ABWB' where id=1; -update noar ti set b1='3IV0V4FWCZSE8K63AQ2ABWB' where id=1; -update noar tt set b2='JDTM2D021NWIIN' where id=1; -update noar ti set b2='JDTM2D021NWIIN' where id=1; -update noar tt set b0='BITNE28A94O6QUP' where id=2; -update noar ti set b0='BITNE28A94O6QUP' where id=2; -update noar tt set b1='UMNQHNDV' where id=2; -update noar ti set b1='UMNQHNDV' where id=2; -update noar tt set b2='JERM91Z2E5LU9CC' where id=2; -update noar ti set b2='JERM91Z2E5LU9CC' where id=2; -update noar tt set b0='2W2JH6VCFYO6QCE0DI0IWWJ07LQAVAQS' where id=3; -update noar ti set b0='2W2JH6VCFYO6QCE0DI0IWWJ07LQAVAQS' where id=3; -update noar tt set b1='5RYPYWU0361KJB44H9YC00AY3H8KYKB' where id=3; -update noar ti set b1='5RYPYWU0361KJB44H9YC00AY3H8KYKB' where id=3; -update noar tt set b2='I7V5B0TF' where id=3; -update noar ti set b2='I7V5B0TF' where id=3; -update noar tt set b0='GSHODRIHOYZRWESEQD6B0L' where id=4; -update noar ti set b0='GSHODRIHOYZRWESEQD6B0L' where id=4; -update noar tt set b1='P9OO2VK94SQX7954EITPZ1VWX9KQQ27' where id=4; -update noar ti set b1='P9OO2VK94SQX7954EITPZ1VWX9KQQ27' where id=4; -update noar tt set b2='2NBA9A86IJO6L' where id=4; -update noar ti set b2='2NBA9A86IJO6L' where id=4; -update noar tt set b0='3TDU4' where id=5; -update noar ti set b0='3TDU4' where id=5; -update noar tt set b1='CMCUYBXLGZUX2KZ0' where id=5; -update noar ti set b1='CMCUYBXLGZUX2KZ0' where id=5; -update noar tt set b2='4O4M2' where id=5; -update noar ti set b2='4O4M2' where id=5; -update noar tt set b0='WUVU8KP4WO' where id=6; -update noar ti set b0='WUVU8KP4WO' where id=6; -update noar tt set b1='NCCSZ' where id=6; -update noar ti set b1='NCCSZ' where id=6; -update noar tt set b2='3BFOMBUZAYFA1F36OSC5QJHU2MKP' where id=6; -update noar ti set b2='3BFOMBUZAYFA1F36OSC5QJHU2MKP' where id=6; -update noar tt set b0='GUX' where id=7; -update noar ti set b0='GUX' where id=7; -update noar tt set b1='CMKTB0YO39RHKZNY0M81ZW' where id=7; -update noar ti set b1='CMKTB0YO39RHKZNY0M81ZW' where id=7; -update noar tt set b2='KK7IRA9L20NW9R9ZGXP5' where id=7; -update noar ti set b2='KK7IRA9L20NW9R9ZGXP5' where id=7; -update noar tt set b0='GSI2IM6JPB2L' where id=8; -update noar ti set b0='GSI2IM6JPB2L' where id=8; -update noar tt set b1='U' where id=8; -update noar ti set b1='U' where id=8; -update noar tt set b2='Y70ZWZNCLRAU44ALT7SL9F2' where id=8; -update noar ti set b2='Y70ZWZNCLRAU44ALT7SL9F2' where id=8; -update noar tt set b0='CZKFARQ39XKQRYMEOPZ4ROXKTB4' where id=9; -update noar ti set b0='CZKFARQ39XKQRYMEOPZ4ROXKTB4' where id=9; -update noar tt set b1='C4T7JPODAU7C0PFY2FGG089NYSISK' where id=9; -update noar ti set b1='C4T7JPODAU7C0PFY2FGG089NYSISK' where id=9; -update noar tt set b2='AVIL6S41XDR' where id=9; -update noar ti set b2='AVIL6S41XDR' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -b0 tinyblob null, -b1 text null, -b2 longblob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set b0='ID15RM6NVRAE2G1SVR3ID6NMNE8' where id=1; -update noar ti set b0='ID15RM6NVRAE2G1SVR3ID6NMNE8' where id=1; -update noar tt set b1='5HM871AGHGOMW5M90ATJCQ94LLT' where id=1; -update noar ti set b1='5HM871AGHGOMW5M90ATJCQ94LLT' where id=1; -update noar tt set b2='N0ZJ8991LSCTIPFCEC59E3' where id=1; -update noar ti set b2='N0ZJ8991LSCTIPFCEC59E3' where id=1; -update noar tt set b0='KUTQ50HVQYE6COC26MBXCU1' where id=2; -update noar ti set b0='KUTQ50HVQYE6COC26MBXCU1' where id=2; -update noar tt set b1='YLDR7E378DNE' where id=2; -update noar ti set b1='YLDR7E378DNE' where id=2; -update noar tt set b2='NJJVF17WBMUWCSYY82F0' where id=2; -update noar ti set b2='NJJVF17WBMUWCSYY82F0' where id=2; -update noar tt set b0='3FQEA5CICF' where id=3; -update noar ti set b0='3FQEA5CICF' where id=3; -update noar tt set b1='ZQKVL3BTHCPO8R86RXMAGO' where id=3; -update noar ti set b1='ZQKVL3BTHCPO8R86RXMAGO' where id=3; -update noar tt set b2='SUDTA2Q17P8PC8EJXV3SQEQKGKQ' where id=3; -update noar ti set b2='SUDTA2Q17P8PC8EJXV3SQEQKGKQ' where id=3; -update noar tt set b0='ACZNH5S' where id=4; -update noar ti set b0='ACZNH5S' where id=4; -update noar tt set b1='7FLNC66NGQXBP6C9HM7EZW' where id=4; -update noar ti set b1='7FLNC66NGQXBP6C9HM7EZW' where id=4; -update noar tt set b2='1QVH7ZG3DBS8CYBKJH4' where id=4; -update noar ti set b2='1QVH7ZG3DBS8CYBKJH4' where id=4; -update noar tt set b0='SL2JPIFL9KJH9Y0ZNA' where id=5; -update noar ti set b0='SL2JPIFL9KJH9Y0ZNA' where id=5; -update noar tt set b1='74MXZYEC23I88SRDCDKL0KEN3XIGA' where id=5; -update noar ti set b1='74MXZYEC23I88SRDCDKL0KEN3XIGA' where id=5; -update noar tt set b2='F' where id=5; -update noar ti set b2='F' where id=5; -update noar tt set b0='ML4FYQJY' where id=6; -update noar ti set b0='ML4FYQJY' where id=6; -update noar tt set b1='J5A25CVP62XE15ZNWTDL' where id=6; -update noar ti set b1='J5A25CVP62XE15ZNWTDL' where id=6; -update noar tt set b2='AJ97L5X' where id=6; -update noar ti set b2='AJ97L5X' where id=6; -update noar tt set b0='4C1BU1FHDZGIWOB1UCOCK9' where id=7; -update noar ti set b0='4C1BU1FHDZGIWOB1UCOCK9' where id=7; -update noar tt set b1='RPP' where id=7; -update noar ti set b1='RPP' where id=7; -update noar tt set b2='TE76F0I8RK0YW680LKEPYMP2SFV6CO' where id=7; -update noar ti set b2='TE76F0I8RK0YW680LKEPYMP2SFV6CO' where id=7; -update noar tt set b0='X' where id=8; -update noar ti set b0='X' where id=8; -update noar tt set b1='O0X6BSPSO126CGGS2BG3KL' where id=8; -update noar ti set b1='O0X6BSPSO126CGGS2BG3KL' where id=8; -update noar tt set b2='JBJ0451' where id=8; -update noar ti set b2='JBJ0451' where id=8; -update noar tt set b0='F34MEXGXKFBM2UT' where id=9; -update noar ti set b0='F34MEXGXKFBM2UT' where id=9; -update noar tt set b1='BSRWZP0Z' where id=9; -update noar ti set b1='BSRWZP0Z' where id=9; -update noar tt set b2='37EEOCYR6T3PNEDX3FBQ92G4T53WODTW' where id=9; -update noar ti set b2='37EEOCYR6T3PNEDX3FBQ92G4T53WODTW' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -b0 tinyblob not null, -b1 text not null, -b2 longblob not null -) engine=tokudb; -insert into tt values (1,'','',''); -insert into tt values (2,'','',''); -insert into tt values (3,'','',''); -insert into tt values (4,'','',''); -insert into tt values (5,'','',''); -insert into tt values (6,'','',''); -insert into tt values (7,'','',''); -insert into tt values (8,'','',''); -insert into tt values (9,'','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set b0='7JBUS90CC54ZP' where id=1; -update noar ti set b0='7JBUS90CC54ZP' where id=1; -update noar tt set b1='Q3GDRWNXSY5D6MN7NO6IFE1O4FKSJ' where id=1; -update noar ti set b1='Q3GDRWNXSY5D6MN7NO6IFE1O4FKSJ' where id=1; -update noar tt set b2='7O74JBSYLSGCO1BSEDBGUK7P4F8UPYHY' where id=1; -update noar ti set b2='7O74JBSYLSGCO1BSEDBGUK7P4F8UPYHY' where id=1; -update noar tt set b0='VZY0DWFNAZOFKNZ60GSQQYFFPJXM' where id=2; -update noar ti set b0='VZY0DWFNAZOFKNZ60GSQQYFFPJXM' where id=2; -update noar tt set b1='CALYLSO8EXTSLTJFPTPXDT302' where id=2; -update noar ti set b1='CALYLSO8EXTSLTJFPTPXDT302' where id=2; -update noar tt set b2='BCLO1TUGPY9PS6VMPB4H53' where id=2; -update noar ti set b2='BCLO1TUGPY9PS6VMPB4H53' where id=2; -update noar tt set b0='LDNC3KFAGW5I' where id=3; -update noar ti set b0='LDNC3KFAGW5I' where id=3; -update noar tt set b1='MUYKZMYSE05JY16RL9RPL' where id=3; -update noar ti set b1='MUYKZMYSE05JY16RL9RPL' where id=3; -update noar tt set b2='9V56GV2MB7ST6EQ0C373AW3VJYPIB3' where id=3; -update noar ti set b2='9V56GV2MB7ST6EQ0C373AW3VJYPIB3' where id=3; -update noar tt set b0='GEY8K2LOBOUWBYMIJ9562W4TF6OCBB5' where id=4; -update noar ti set b0='GEY8K2LOBOUWBYMIJ9562W4TF6OCBB5' where id=4; -update noar tt set b1='LJBIHLQ535ZNG1EK7BT' where id=4; -update noar ti set b1='LJBIHLQ535ZNG1EK7BT' where id=4; -update noar tt set b2='9N646DR7QUUOC' where id=4; -update noar ti set b2='9N646DR7QUUOC' where id=4; -update noar tt set b0='430HB1DAVS6CF' where id=5; -update noar ti set b0='430HB1DAVS6CF' where id=5; -update noar tt set b1='0OV3ZGF2JUUDEKR5L' where id=5; -update noar ti set b1='0OV3ZGF2JUUDEKR5L' where id=5; -update noar tt set b2='5CFJKPAREPGLQYBVV736BL01Z' where id=5; -update noar ti set b2='5CFJKPAREPGLQYBVV736BL01Z' where id=5; -update noar tt set b0='AD312BIYRDC' where id=6; -update noar ti set b0='AD312BIYRDC' where id=6; -update noar tt set b1='Z16' where id=6; -update noar ti set b1='Z16' where id=6; -update noar tt set b2='LGZWGGFJ5UF36HJDJYD2K' where id=6; -update noar ti set b2='LGZWGGFJ5UF36HJDJYD2K' where id=6; -update noar tt set b0='E3QALDLJUSKLJRLI3F5TXI1KF' where id=7; -update noar ti set b0='E3QALDLJUSKLJRLI3F5TXI1KF' where id=7; -update noar tt set b1='UWI9LX49HEZ49F1AJ21ZDWVXII42RL' where id=7; -update noar ti set b1='UWI9LX49HEZ49F1AJ21ZDWVXII42RL' where id=7; -update noar tt set b2='8W9Y' where id=7; -update noar ti set b2='8W9Y' where id=7; -update noar tt set b0='KHXNWY' where id=8; -update noar ti set b0='KHXNWY' where id=8; -update noar tt set b1='JY99H9VWYTEYZAP2P8ICC1' where id=8; -update noar ti set b1='JY99H9VWYTEYZAP2P8ICC1' where id=8; -update noar tt set b2='AXAF9HDTLTU' where id=8; -update noar ti set b2='AXAF9HDTLTU' where id=8; -update noar tt set b0='YYQTPL5FVDQS9OQ2HGAZT19I' where id=9; -update noar ti set b0='YYQTPL5FVDQS9OQ2HGAZT19I' where id=9; -update noar tt set b1='6J0DCU71M0ASWYCZPRML1G4KMWLKO9' where id=9; -update noar ti set b1='6J0DCU71M0ASWYCZPRML1G4KMWLKO9' where id=9; -update noar tt set b2='M0H5STWTOHCH9PC' where id=9; -update noar ti set b2='M0H5STWTOHCH9PC' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -b0 tinyblob null, -b1 text null, -b2 text null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set b0='91DCSZ52QOPUF59N8T' where id=1; -update noar ti set b0='91DCSZ52QOPUF59N8T' where id=1; -update noar tt set b1='91IHWVIPDW753US2CW9TDI' where id=1; -update noar ti set b1='91IHWVIPDW753US2CW9TDI' where id=1; -update noar tt set b2='00D2H' where id=1; -update noar ti set b2='00D2H' where id=1; -update noar tt set b0='XZDPPXL0GDH1QZL9DSQK60OI0M1X84X' where id=2; -update noar ti set b0='XZDPPXL0GDH1QZL9DSQK60OI0M1X84X' where id=2; -update noar tt set b1='I' where id=2; -update noar ti set b1='I' where id=2; -update noar tt set b2='AHEXM1L97KOTB9KXI29YGDSY6FOF' where id=2; -update noar ti set b2='AHEXM1L97KOTB9KXI29YGDSY6FOF' where id=2; -update noar tt set b0='VYILFYJM08X5A1ZURWVYE6X7ADXO2S' where id=3; -update noar ti set b0='VYILFYJM08X5A1ZURWVYE6X7ADXO2S' where id=3; -update noar tt set b1='VAV9I4VHTMEZ0U8IEZQV' where id=3; -update noar ti set b1='VAV9I4VHTMEZ0U8IEZQV' where id=3; -update noar tt set b2='3PP5X4QIEXYD6C93ASOSQZVZW4TINIY' where id=3; -update noar ti set b2='3PP5X4QIEXYD6C93ASOSQZVZW4TINIY' where id=3; -update noar tt set b0='0XLZV04KSUMJFY92AK71V5AN3' where id=4; -update noar ti set b0='0XLZV04KSUMJFY92AK71V5AN3' where id=4; -update noar tt set b1='C4M9BGY6GTKID0D8W7QFIG' where id=4; -update noar ti set b1='C4M9BGY6GTKID0D8W7QFIG' where id=4; -update noar tt set b2='B4UK' where id=4; -update noar ti set b2='B4UK' where id=4; -update noar tt set b0='KIF9PC0XV722MUNP8CKWAVX' where id=5; -update noar ti set b0='KIF9PC0XV722MUNP8CKWAVX' where id=5; -update noar tt set b1='ULKUU2EK' where id=5; -update noar ti set b1='ULKUU2EK' where id=5; -update noar tt set b2='0RP6EJLHGTFEZLSUJM3FV' where id=5; -update noar ti set b2='0RP6EJLHGTFEZLSUJM3FV' where id=5; -update noar tt set b0='EKB7' where id=6; -update noar ti set b0='EKB7' where id=6; -update noar tt set b1='94K' where id=6; -update noar ti set b1='94K' where id=6; -update noar tt set b2='PA9H' where id=6; -update noar ti set b2='PA9H' where id=6; -update noar tt set b0='OAQ9A2Z2WWDK2C05JYB1XVNCSCVOAX' where id=7; -update noar ti set b0='OAQ9A2Z2WWDK2C05JYB1XVNCSCVOAX' where id=7; -update noar tt set b1='3UG8NITM4B' where id=7; -update noar ti set b1='3UG8NITM4B' where id=7; -update noar tt set b2='PS6MJPIGPL7WBXD6QHCWEF5EZ7' where id=7; -update noar ti set b2='PS6MJPIGPL7WBXD6QHCWEF5EZ7' where id=7; -update noar tt set b0='29ZHZEZ6IXV50BXETX8' where id=8; -update noar ti set b0='29ZHZEZ6IXV50BXETX8' where id=8; -update noar tt set b1='8I3NM1AZEP' where id=8; -update noar ti set b1='8I3NM1AZEP' where id=8; -update noar tt set b2='ZIE8PAUV13PKXDSB' where id=8; -update noar ti set b2='ZIE8PAUV13PKXDSB' where id=8; -update noar tt set b0='P7ZZOLEGWA' where id=9; -update noar ti set b0='P7ZZOLEGWA' where id=9; -update noar tt set b1='ZEY1GVHHPTJMQ8YIXEODPKD6A893' where id=9; -update noar ti set b1='ZEY1GVHHPTJMQ8YIXEODPKD6A893' where id=9; -update noar tt set b2='3U3PCBQYYCMKR3SHEJ' where id=9; -update noar ti set b2='3U3PCBQYYCMKR3SHEJ' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -b0 tinyblob not null, -b1 text not null, -b2 text not null -) engine=tokudb; -insert into tt values (1,'','',''); -insert into tt values (2,'','',''); -insert into tt values (3,'','',''); -insert into tt values (4,'','',''); -insert into tt values (5,'','',''); -insert into tt values (6,'','',''); -insert into tt values (7,'','',''); -insert into tt values (8,'','',''); -insert into tt values (9,'','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set b0='3VHW6PMZ2' where id=1; -update noar ti set b0='3VHW6PMZ2' where id=1; -update noar tt set b1='KOTGK0AV3UUROTM' where id=1; -update noar ti set b1='KOTGK0AV3UUROTM' where id=1; -update noar tt set b2='NQ2OJDDTWDURBJA4' where id=1; -update noar ti set b2='NQ2OJDDTWDURBJA4' where id=1; -update noar tt set b0='GTTPG2F21EXGXIMTS51HV5LYM452NMX' where id=2; -update noar ti set b0='GTTPG2F21EXGXIMTS51HV5LYM452NMX' where id=2; -update noar tt set b1='GBYE0' where id=2; -update noar ti set b1='GBYE0' where id=2; -update noar tt set b2='M9TO3FKFONZ5F3JQGZSOP2ILQRDBX' where id=2; -update noar ti set b2='M9TO3FKFONZ5F3JQGZSOP2ILQRDBX' where id=2; -update noar tt set b0='B4319RTBKXUV955KWWU2MKUO' where id=3; -update noar ti set b0='B4319RTBKXUV955KWWU2MKUO' where id=3; -update noar tt set b1='Q6PIZF4PZQZLK414RJEDFW' where id=3; -update noar ti set b1='Q6PIZF4PZQZLK414RJEDFW' where id=3; -update noar tt set b2='09UP4L2FGEJ53AFXVDMICCYCF5XV4' where id=3; -update noar ti set b2='09UP4L2FGEJ53AFXVDMICCYCF5XV4' where id=3; -update noar tt set b0='MF2U3X8OEE44EIJGW3F7I9T' where id=4; -update noar ti set b0='MF2U3X8OEE44EIJGW3F7I9T' where id=4; -update noar tt set b1='AQHCVO6WNYD4960ZQPP5' where id=4; -update noar ti set b1='AQHCVO6WNYD4960ZQPP5' where id=4; -update noar tt set b2='A04YIZ' where id=4; -update noar ti set b2='A04YIZ' where id=4; -update noar tt set b0='539WAPOAOKDJ5EYUSX4F' where id=5; -update noar ti set b0='539WAPOAOKDJ5EYUSX4F' where id=5; -update noar tt set b1='YX5DH' where id=5; -update noar ti set b1='YX5DH' where id=5; -update noar tt set b2='KBNW7EI9GT' where id=5; -update noar ti set b2='KBNW7EI9GT' where id=5; -update noar tt set b0='YTKJ4' where id=6; -update noar ti set b0='YTKJ4' where id=6; -update noar tt set b1='W8T941CRUZGE018BDESL26RYYQDLPR5K' where id=6; -update noar ti set b1='W8T941CRUZGE018BDESL26RYYQDLPR5K' where id=6; -update noar tt set b2='CIJ4JAYKUG' where id=6; -update noar ti set b2='CIJ4JAYKUG' where id=6; -update noar tt set b0='IMK5JCJD6FKDYH2KTTLFBCOPTOU' where id=7; -update noar ti set b0='IMK5JCJD6FKDYH2KTTLFBCOPTOU' where id=7; -update noar tt set b1='YQC2H44B78Z8PDTZ54FLH81BLYR28DK' where id=7; -update noar ti set b1='YQC2H44B78Z8PDTZ54FLH81BLYR28DK' where id=7; -update noar tt set b2='LT36URXKF16PVURRC61WUL' where id=7; -update noar ti set b2='LT36URXKF16PVURRC61WUL' where id=7; -update noar tt set b0='CK8JJ2RH79NGC3K79LZ9' where id=8; -update noar ti set b0='CK8JJ2RH79NGC3K79LZ9' where id=8; -update noar tt set b1='H' where id=8; -update noar ti set b1='H' where id=8; -update noar tt set b2='AOUJ2RUBOYPERTL02V7XPYSKHPLS4' where id=8; -update noar ti set b2='AOUJ2RUBOYPERTL02V7XPYSKHPLS4' where id=8; -update noar tt set b0='TYY4B20YTLT1WHX0I3E74O' where id=9; -update noar ti set b0='TYY4B20YTLT1WHX0I3E74O' where id=9; -update noar tt set b1='5MSSOO3CQILR74TVY86' where id=9; -update noar ti set b1='5MSSOO3CQILR74TVY86' where id=9; -update noar tt set b2='V21B9TTH2X612MTDW2Y' where id=9; -update noar ti set b2='V21B9TTH2X612MTDW2Y' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -b0 blob null, -b1 tinyblob null, -b2 tinyblob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set b0='LC8S6KPDD' where id=1; -update noar ti set b0='LC8S6KPDD' where id=1; -update noar tt set b1='TLLDEARF982' where id=1; -update noar ti set b1='TLLDEARF982' where id=1; -update noar tt set b2='ZVM3PFRK4JBRJJ48E129XZDDT' where id=1; -update noar ti set b2='ZVM3PFRK4JBRJJ48E129XZDDT' where id=1; -update noar tt set b0='XAQEJUH9CAW2CN2Y1OQ9QFBC' where id=2; -update noar ti set b0='XAQEJUH9CAW2CN2Y1OQ9QFBC' where id=2; -update noar tt set b1='33VKW0R95SXFZ' where id=2; -update noar ti set b1='33VKW0R95SXFZ' where id=2; -update noar tt set b2='AMGX9F' where id=2; -update noar ti set b2='AMGX9F' where id=2; -update noar tt set b0='1X1A6V' where id=3; -update noar ti set b0='1X1A6V' where id=3; -update noar tt set b1='J6T2XWFYLXJH6QREZ0' where id=3; -update noar ti set b1='J6T2XWFYLXJH6QREZ0' where id=3; -update noar tt set b2='RTBMVXOCOEISHDYKDTGE8' where id=3; -update noar ti set b2='RTBMVXOCOEISHDYKDTGE8' where id=3; -update noar tt set b0='BJM' where id=4; -update noar ti set b0='BJM' where id=4; -update noar tt set b1='KE50380QJ' where id=4; -update noar ti set b1='KE50380QJ' where id=4; -update noar tt set b2='87RJDL8EBX9XNJSKBAW9E30QOCS' where id=4; -update noar ti set b2='87RJDL8EBX9XNJSKBAW9E30QOCS' where id=4; -update noar tt set b0='O1VW0L1NLSGZLJBYQ9GNB917E' where id=5; -update noar ti set b0='O1VW0L1NLSGZLJBYQ9GNB917E' where id=5; -update noar tt set b1='XR321T8Z2WP5ZCKONENKVT4GV' where id=5; -update noar ti set b1='XR321T8Z2WP5ZCKONENKVT4GV' where id=5; -update noar tt set b2='NDF5N1R5OMSLJ04IWMZRVP' where id=5; -update noar ti set b2='NDF5N1R5OMSLJ04IWMZRVP' where id=5; -update noar tt set b0='2BB3BYC' where id=6; -update noar ti set b0='2BB3BYC' where id=6; -update noar tt set b1='BH2DF2O33A1S1VI8YUFQA4JWES9Z2LU' where id=6; -update noar ti set b1='BH2DF2O33A1S1VI8YUFQA4JWES9Z2LU' where id=6; -update noar tt set b2='XRYJSI04OJ74M1IL6F9ZS015GV' where id=6; -update noar ti set b2='XRYJSI04OJ74M1IL6F9ZS015GV' where id=6; -update noar tt set b0='PZKP9ERFSAJVOHCO7ONL' where id=7; -update noar ti set b0='PZKP9ERFSAJVOHCO7ONL' where id=7; -update noar tt set b1='WDMGY5HTUIN81RFPELXUE' where id=7; -update noar ti set b1='WDMGY5HTUIN81RFPELXUE' where id=7; -update noar tt set b2='FY774Z2PJ91O9XB817TZ078I' where id=7; -update noar ti set b2='FY774Z2PJ91O9XB817TZ078I' where id=7; -update noar tt set b0='4JJD618STH' where id=8; -update noar ti set b0='4JJD618STH' where id=8; -update noar tt set b1='OKLS4X' where id=8; -update noar ti set b1='OKLS4X' where id=8; -update noar tt set b2='UBMIJRROMCESRXBOI9AHQ4GC' where id=8; -update noar ti set b2='UBMIJRROMCESRXBOI9AHQ4GC' where id=8; -update noar tt set b0='Z3WSQBRPALJ2HLQ' where id=9; -update noar ti set b0='Z3WSQBRPALJ2HLQ' where id=9; -update noar tt set b1='8SWZFU0F0XUH' where id=9; -update noar ti set b1='8SWZFU0F0XUH' where id=9; -update noar tt set b2='TUHBCKAOBEYGP0RWXHC5R' where id=9; -update noar ti set b2='TUHBCKAOBEYGP0RWXHC5R' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -b0 blob not null, -b1 tinyblob not null, -b2 tinyblob not null -) engine=tokudb; -insert into tt values (1,'','',''); -insert into tt values (2,'','',''); -insert into tt values (3,'','',''); -insert into tt values (4,'','',''); -insert into tt values (5,'','',''); -insert into tt values (6,'','',''); -insert into tt values (7,'','',''); -insert into tt values (8,'','',''); -insert into tt values (9,'','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set b0='R93JVVYJJGWJH' where id=1; -update noar ti set b0='R93JVVYJJGWJH' where id=1; -update noar tt set b1='Q7YYMWIZKRHL' where id=1; -update noar ti set b1='Q7YYMWIZKRHL' where id=1; -update noar tt set b2='IVYNOOU7MHO2VL29HBN' where id=1; -update noar ti set b2='IVYNOOU7MHO2VL29HBN' where id=1; -update noar tt set b0='DOZKTU7CZ5X1NQOBH4IWFS7YN5S' where id=2; -update noar ti set b0='DOZKTU7CZ5X1NQOBH4IWFS7YN5S' where id=2; -update noar tt set b1='O6' where id=2; -update noar ti set b1='O6' where id=2; -update noar tt set b2='6NF' where id=2; -update noar ti set b2='6NF' where id=2; -update noar tt set b0='R' where id=3; -update noar ti set b0='R' where id=3; -update noar tt set b1='GSRB8VQIA7SF7WRE3XW14MIHUG' where id=3; -update noar ti set b1='GSRB8VQIA7SF7WRE3XW14MIHUG' where id=3; -update noar tt set b2='Z4SEBK' where id=3; -update noar ti set b2='Z4SEBK' where id=3; -update noar tt set b0='EU0NG5RLNQ0FG93SIRDU9A' where id=4; -update noar ti set b0='EU0NG5RLNQ0FG93SIRDU9A' where id=4; -update noar tt set b1='IJL4UHLTW8BM4GA5657' where id=4; -update noar ti set b1='IJL4UHLTW8BM4GA5657' where id=4; -update noar tt set b2='23' where id=4; -update noar ti set b2='23' where id=4; -update noar tt set b0='ZDN5A5GS3OS7LQY88E01BHTQMFN5' where id=5; -update noar ti set b0='ZDN5A5GS3OS7LQY88E01BHTQMFN5' where id=5; -update noar tt set b1='V' where id=5; -update noar ti set b1='V' where id=5; -update noar tt set b2='BBKV7E3NK63DB7PTNB5ZD27X' where id=5; -update noar ti set b2='BBKV7E3NK63DB7PTNB5ZD27X' where id=5; -update noar tt set b0='VAFM6B2QNOD565NT' where id=6; -update noar ti set b0='VAFM6B2QNOD565NT' where id=6; -update noar tt set b1='NZXGAS' where id=6; -update noar ti set b1='NZXGAS' where id=6; -update noar tt set b2='2I1K' where id=6; -update noar ti set b2='2I1K' where id=6; -update noar tt set b0='2KHYAGWQDIRI7' where id=7; -update noar ti set b0='2KHYAGWQDIRI7' where id=7; -update noar tt set b1='Z1YJXP5X080O6TZZC6CXIH2' where id=7; -update noar ti set b1='Z1YJXP5X080O6TZZC6CXIH2' where id=7; -update noar tt set b2='MDPB0RZV9CYYPZKYVLW9OKU1NH' where id=7; -update noar ti set b2='MDPB0RZV9CYYPZKYVLW9OKU1NH' where id=7; -update noar tt set b0='E5XVD0B3DVXQ2' where id=8; -update noar ti set b0='E5XVD0B3DVXQ2' where id=8; -update noar tt set b1='P9T' where id=8; -update noar ti set b1='P9T' where id=8; -update noar tt set b2='YV20LJ44P09WMKTBX10YSXQ6628BSG' where id=8; -update noar ti set b2='YV20LJ44P09WMKTBX10YSXQ6628BSG' where id=8; -update noar tt set b0='90F4IHGCHNWIBXCKYHK6AOTXXSIRK' where id=9; -update noar ti set b0='90F4IHGCHNWIBXCKYHK6AOTXXSIRK' where id=9; -update noar tt set b1='CXCQVMV9GZ2GMKGXEDV3' where id=9; -update noar ti set b1='CXCQVMV9GZ2GMKGXEDV3' where id=9; -update noar tt set b2='2Y' where id=9; -update noar ti set b2='2Y' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -b0 blob null, -b1 tinyblob null, -b2 blob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set b0='PEP5' where id=1; -update noar ti set b0='PEP5' where id=1; -update noar tt set b1='0M1I4BRP' where id=1; -update noar ti set b1='0M1I4BRP' where id=1; -update noar tt set b2='TG68K9G337OOXS41DJOR' where id=1; -update noar ti set b2='TG68K9G337OOXS41DJOR' where id=1; -update noar tt set b0='LAFGLX4X2RI0P0CCVW1C07N9' where id=2; -update noar ti set b0='LAFGLX4X2RI0P0CCVW1C07N9' where id=2; -update noar tt set b1='Z' where id=2; -update noar ti set b1='Z' where id=2; -update noar tt set b2='5A1RV7LFLWKYH5LYKJ' where id=2; -update noar ti set b2='5A1RV7LFLWKYH5LYKJ' where id=2; -update noar tt set b0='7FQUO63Y4J3F6XY5TK8WBL1JC' where id=3; -update noar ti set b0='7FQUO63Y4J3F6XY5TK8WBL1JC' where id=3; -update noar tt set b1='ZCFL2' where id=3; -update noar ti set b1='ZCFL2' where id=3; -update noar tt set b2='UAHJRG88YC' where id=3; -update noar ti set b2='UAHJRG88YC' where id=3; -update noar tt set b0='X8MRZEL6JK4171PBO1LZA' where id=4; -update noar ti set b0='X8MRZEL6JK4171PBO1LZA' where id=4; -update noar tt set b1='2XLXGEI' where id=4; -update noar ti set b1='2XLXGEI' where id=4; -update noar tt set b2='C975AHK0Z27QDSYVVA4L' where id=4; -update noar ti set b2='C975AHK0Z27QDSYVVA4L' where id=4; -update noar tt set b0='W51BKRA1Y0OFVGT45X7I' where id=5; -update noar ti set b0='W51BKRA1Y0OFVGT45X7I' where id=5; -update noar tt set b1='VH3YFW0ZYJGQAYTYCWEBCH' where id=5; -update noar ti set b1='VH3YFW0ZYJGQAYTYCWEBCH' where id=5; -update noar tt set b2='FRBI6B14RG9U9UR592ET15APGR8W' where id=5; -update noar ti set b2='FRBI6B14RG9U9UR592ET15APGR8W' where id=5; -update noar tt set b0='TETT3YQ7QK9NAJRBHKC26GKRIB8Q' where id=6; -update noar ti set b0='TETT3YQ7QK9NAJRBHKC26GKRIB8Q' where id=6; -update noar tt set b1='8QBHGJIDHZDIG8P5PQ0T' where id=6; -update noar ti set b1='8QBHGJIDHZDIG8P5PQ0T' where id=6; -update noar tt set b2='TTTCN0' where id=6; -update noar ti set b2='TTTCN0' where id=6; -update noar tt set b0='0HCXJ' where id=7; -update noar ti set b0='0HCXJ' where id=7; -update noar tt set b1='6M20GGPW' where id=7; -update noar ti set b1='6M20GGPW' where id=7; -update noar tt set b2='H4PLC08K2YNCTTSEKOOATSOZC' where id=7; -update noar ti set b2='H4PLC08K2YNCTTSEKOOATSOZC' where id=7; -update noar tt set b0='6ZT2BYN' where id=8; -update noar ti set b0='6ZT2BYN' where id=8; -update noar tt set b1='C' where id=8; -update noar ti set b1='C' where id=8; -update noar tt set b2='9O50YGHXIBRJ1JAJV6XSXWBVLQ10F' where id=8; -update noar ti set b2='9O50YGHXIBRJ1JAJV6XSXWBVLQ10F' where id=8; -update noar tt set b0='0V2590NK7A2R8CUD' where id=9; -update noar ti set b0='0V2590NK7A2R8CUD' where id=9; -update noar tt set b1='A25YFMPK4BFE5NSBM2F' where id=9; -update noar ti set b1='A25YFMPK4BFE5NSBM2F' where id=9; -update noar tt set b2='FUTR' where id=9; -update noar ti set b2='FUTR' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -b0 blob not null, -b1 tinyblob not null, -b2 blob not null -) engine=tokudb; -insert into tt values (1,'','',''); -insert into tt values (2,'','',''); -insert into tt values (3,'','',''); -insert into tt values (4,'','',''); -insert into tt values (5,'','',''); -insert into tt values (6,'','',''); -insert into tt values (7,'','',''); -insert into tt values (8,'','',''); -insert into tt values (9,'','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set b0='SEEJNAC9DJK5GNKNR8W' where id=1; -update noar ti set b0='SEEJNAC9DJK5GNKNR8W' where id=1; -update noar tt set b1='FHRNE3KON82' where id=1; -update noar ti set b1='FHRNE3KON82' where id=1; -update noar tt set b2='2VY2YKWAQHTL3ZMQYYUSH2X' where id=1; -update noar ti set b2='2VY2YKWAQHTL3ZMQYYUSH2X' where id=1; -update noar tt set b0='ECECHGW0JU383KKXKWP22J9DFT48020' where id=2; -update noar ti set b0='ECECHGW0JU383KKXKWP22J9DFT48020' where id=2; -update noar tt set b1='9UA4TJ5UNGWAEXSRT' where id=2; -update noar ti set b1='9UA4TJ5UNGWAEXSRT' where id=2; -update noar tt set b2='NUJ3C6NAEHY' where id=2; -update noar ti set b2='NUJ3C6NAEHY' where id=2; -update noar tt set b0='BM45KXCGD13W' where id=3; -update noar ti set b0='BM45KXCGD13W' where id=3; -update noar tt set b1='OTM8SVJQF5YJ7QWW2MG7OG5' where id=3; -update noar ti set b1='OTM8SVJQF5YJ7QWW2MG7OG5' where id=3; -update noar tt set b2='0GW3NNBC1IBDHBHQA4N26UNZLK6E14' where id=3; -update noar ti set b2='0GW3NNBC1IBDHBHQA4N26UNZLK6E14' where id=3; -update noar tt set b0='9F53FRNHTUMARSSHZWVODPVETVD3FZ' where id=4; -update noar ti set b0='9F53FRNHTUMARSSHZWVODPVETVD3FZ' where id=4; -update noar tt set b1='4D58G6ES' where id=4; -update noar ti set b1='4D58G6ES' where id=4; -update noar tt set b2='9LGGUHPFFS6C8Q' where id=4; -update noar ti set b2='9LGGUHPFFS6C8Q' where id=4; -update noar tt set b0='8BE9BDC8CUJ' where id=5; -update noar ti set b0='8BE9BDC8CUJ' where id=5; -update noar tt set b1='5U9GAOG25169IZ1DVKQS' where id=5; -update noar ti set b1='5U9GAOG25169IZ1DVKQS' where id=5; -update noar tt set b2='TU' where id=5; -update noar ti set b2='TU' where id=5; -update noar tt set b0='B5YH59M1N4D2STGW53AEU3LKJU' where id=6; -update noar ti set b0='B5YH59M1N4D2STGW53AEU3LKJU' where id=6; -update noar tt set b1='BAYSON04AWUZKZPIII1HV4S4TVHTS9V' where id=6; -update noar ti set b1='BAYSON04AWUZKZPIII1HV4S4TVHTS9V' where id=6; -update noar tt set b2='HTRN4Y8HJ9J13NLKE3K27JXDWJX' where id=6; -update noar ti set b2='HTRN4Y8HJ9J13NLKE3K27JXDWJX' where id=6; -update noar tt set b0='GPVBNFUQWO2I1J7JH6HSK' where id=7; -update noar ti set b0='GPVBNFUQWO2I1J7JH6HSK' where id=7; -update noar tt set b1='DFAX1A56JBW6Y7AO0S4JFMTGEXFCRQU' where id=7; -update noar ti set b1='DFAX1A56JBW6Y7AO0S4JFMTGEXFCRQU' where id=7; -update noar tt set b2='3BVI11ICJX659667G265' where id=7; -update noar ti set b2='3BVI11ICJX659667G265' where id=7; -update noar tt set b0='ZME9A' where id=8; -update noar ti set b0='ZME9A' where id=8; -update noar tt set b1='UPTYEY4UNJPCEMCI6NVVL5LW' where id=8; -update noar ti set b1='UPTYEY4UNJPCEMCI6NVVL5LW' where id=8; -update noar tt set b2='0V6JJU3Z3VE' where id=8; -update noar ti set b2='0V6JJU3Z3VE' where id=8; -update noar tt set b0='F2BKAP8T8R8T4R3WKMVOXZ' where id=9; -update noar ti set b0='F2BKAP8T8R8T4R3WKMVOXZ' where id=9; -update noar tt set b1='JDF2T0VFB7W2MKQMU' where id=9; -update noar ti set b1='JDF2T0VFB7W2MKQMU' where id=9; -update noar tt set b2='TJGGCMAD2XJ7NHZ' where id=9; -update noar ti set b2='TJGGCMAD2XJ7NHZ' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -b0 blob null, -b1 tinyblob null, -b2 mediumblob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set b0='89HQW2DZA6JSQRBZZ0GD0HGCGY3' where id=1; -update noar ti set b0='89HQW2DZA6JSQRBZZ0GD0HGCGY3' where id=1; -update noar tt set b1='NQX44RYUJENELUWJRR0PNEMBRLM5QX' where id=1; -update noar ti set b1='NQX44RYUJENELUWJRR0PNEMBRLM5QX' where id=1; -update noar tt set b2='OZ' where id=1; -update noar ti set b2='OZ' where id=1; -update noar tt set b0='PMB9FGECN5X7GF' where id=2; -update noar ti set b0='PMB9FGECN5X7GF' where id=2; -update noar tt set b1='61' where id=2; -update noar ti set b1='61' where id=2; -update noar tt set b2='6ESZLOBK2DN2XTVPB' where id=2; -update noar ti set b2='6ESZLOBK2DN2XTVPB' where id=2; -update noar tt set b0='JVZBP4BYUPKX' where id=3; -update noar ti set b0='JVZBP4BYUPKX' where id=3; -update noar tt set b1='24263MZNY58HDNO62BSFKWPJW77MXLN' where id=3; -update noar ti set b1='24263MZNY58HDNO62BSFKWPJW77MXLN' where id=3; -update noar tt set b2='D' where id=3; -update noar ti set b2='D' where id=3; -update noar tt set b0='2Y5C' where id=4; -update noar ti set b0='2Y5C' where id=4; -update noar tt set b1='B186EW3PAX2OVMHA05MQOC5DP' where id=4; -update noar ti set b1='B186EW3PAX2OVMHA05MQOC5DP' where id=4; -update noar tt set b2='LHCC7Y7I3GC70S8ZDJZ77GQT3K' where id=4; -update noar ti set b2='LHCC7Y7I3GC70S8ZDJZ77GQT3K' where id=4; -update noar tt set b0='9BA' where id=5; -update noar ti set b0='9BA' where id=5; -update noar tt set b1='FK' where id=5; -update noar ti set b1='FK' where id=5; -update noar tt set b2='JG9DVPO8S' where id=5; -update noar ti set b2='JG9DVPO8S' where id=5; -update noar tt set b0='K0ZPUBQQR21SOZOROVA0WDPW3ZIT' where id=6; -update noar ti set b0='K0ZPUBQQR21SOZOROVA0WDPW3ZIT' where id=6; -update noar tt set b1='9KM3XYBPW40G3' where id=6; -update noar ti set b1='9KM3XYBPW40G3' where id=6; -update noar tt set b2='6J96HOV' where id=6; -update noar ti set b2='6J96HOV' where id=6; -update noar tt set b0='CDKVHA3MZX' where id=7; -update noar ti set b0='CDKVHA3MZX' where id=7; -update noar tt set b1='2DU' where id=7; -update noar ti set b1='2DU' where id=7; -update noar tt set b2='55FNZK1VXBM0Z0UIHHRBZCANSNQDJW' where id=7; -update noar ti set b2='55FNZK1VXBM0Z0UIHHRBZCANSNQDJW' where id=7; -update noar tt set b0='OA89GY2RBCBE8H3OLTYCBEZ7TO7BH2X' where id=8; -update noar ti set b0='OA89GY2RBCBE8H3OLTYCBEZ7TO7BH2X' where id=8; -update noar tt set b1='I' where id=8; -update noar ti set b1='I' where id=8; -update noar tt set b2='21OL' where id=8; -update noar ti set b2='21OL' where id=8; -update noar tt set b0='X2JEQ9NJ0YM6E0E88F5' where id=9; -update noar ti set b0='X2JEQ9NJ0YM6E0E88F5' where id=9; -update noar tt set b1='26RRYIA42ZYNE571RKXIXL' where id=9; -update noar ti set b1='26RRYIA42ZYNE571RKXIXL' where id=9; -update noar tt set b2='1QOCKUXOB1PQXHSYKU13' where id=9; -update noar ti set b2='1QOCKUXOB1PQXHSYKU13' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -b0 blob not null, -b1 tinyblob not null, -b2 mediumblob not null -) engine=tokudb; -insert into tt values (1,'','',''); -insert into tt values (2,'','',''); -insert into tt values (3,'','',''); -insert into tt values (4,'','',''); -insert into tt values (5,'','',''); -insert into tt values (6,'','',''); -insert into tt values (7,'','',''); -insert into tt values (8,'','',''); -insert into tt values (9,'','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set b0='QKJ2VXAUU54GLFSLNL' where id=1; -update noar ti set b0='QKJ2VXAUU54GLFSLNL' where id=1; -update noar tt set b1='VQHEADM5' where id=1; -update noar ti set b1='VQHEADM5' where id=1; -update noar tt set b2='4J3AR3P3CO' where id=1; -update noar ti set b2='4J3AR3P3CO' where id=1; -update noar tt set b0='V' where id=2; -update noar ti set b0='V' where id=2; -update noar tt set b1='Z5B9YFY7' where id=2; -update noar ti set b1='Z5B9YFY7' where id=2; -update noar tt set b2='5IZZ8O87R8H9JLOUKTACH89ZG' where id=2; -update noar ti set b2='5IZZ8O87R8H9JLOUKTACH89ZG' where id=2; -update noar tt set b0='0IKFJ6GBDKS1Q' where id=3; -update noar ti set b0='0IKFJ6GBDKS1Q' where id=3; -update noar tt set b1='BCAAXYSWPSNRPHU1S19E07HP' where id=3; -update noar ti set b1='BCAAXYSWPSNRPHU1S19E07HP' where id=3; -update noar tt set b2='9EKB1V28W8M7CGN' where id=3; -update noar ti set b2='9EKB1V28W8M7CGN' where id=3; -update noar tt set b0='WMZZ11JK' where id=4; -update noar ti set b0='WMZZ11JK' where id=4; -update noar tt set b1='X1RCX7ASBLJ1EGNP7' where id=4; -update noar ti set b1='X1RCX7ASBLJ1EGNP7' where id=4; -update noar tt set b2='4CB94JR2ZZ' where id=4; -update noar ti set b2='4CB94JR2ZZ' where id=4; -update noar tt set b0='M3' where id=5; -update noar ti set b0='M3' where id=5; -update noar tt set b1='6GAY6ZXVT1CMHYIWQ8XTGTDFI0WVQMKL' where id=5; -update noar ti set b1='6GAY6ZXVT1CMHYIWQ8XTGTDFI0WVQMKL' where id=5; -update noar tt set b2='UCDRVCSWHCWYC67SRAR' where id=5; -update noar ti set b2='UCDRVCSWHCWYC67SRAR' where id=5; -update noar tt set b0='D0W4JKELXUL' where id=6; -update noar ti set b0='D0W4JKELXUL' where id=6; -update noar tt set b1='HDA4YQQNXCIGWQ348Z' where id=6; -update noar ti set b1='HDA4YQQNXCIGWQ348Z' where id=6; -update noar tt set b2='JBAKJMPT2QNJ4IECLUY4JYNV' where id=6; -update noar ti set b2='JBAKJMPT2QNJ4IECLUY4JYNV' where id=6; -update noar tt set b0='WFO3OIB87X3DK6S1I' where id=7; -update noar ti set b0='WFO3OIB87X3DK6S1I' where id=7; -update noar tt set b1='RS3D5PBFZO9CJWVNLHYT' where id=7; -update noar ti set b1='RS3D5PBFZO9CJWVNLHYT' where id=7; -update noar tt set b2='G' where id=7; -update noar ti set b2='G' where id=7; -update noar tt set b0='2' where id=8; -update noar ti set b0='2' where id=8; -update noar tt set b1='DJRIBESMKXG8S' where id=8; -update noar ti set b1='DJRIBESMKXG8S' where id=8; -update noar tt set b2='KORZIRY4DCLUTCZKKYAY47RQR4XTE2KK' where id=8; -update noar ti set b2='KORZIRY4DCLUTCZKKYAY47RQR4XTE2KK' where id=8; -update noar tt set b0='706B' where id=9; -update noar ti set b0='706B' where id=9; -update noar tt set b1='5GMQUM37WM2XWG6HJV1JGG7AYBHADM5' where id=9; -update noar ti set b1='5GMQUM37WM2XWG6HJV1JGG7AYBHADM5' where id=9; -update noar tt set b2='T0508F2Q9KOGQZXN' where id=9; -update noar ti set b2='T0508F2Q9KOGQZXN' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -b0 blob null, -b1 tinyblob null, -b2 longblob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set b0='FDEE00SJGD9Y1W2K7VQSFM7BRF7' where id=1; -update noar ti set b0='FDEE00SJGD9Y1W2K7VQSFM7BRF7' where id=1; -update noar tt set b1='4VBS9YDTZEDRJJM7PZFOHR4YN' where id=1; -update noar ti set b1='4VBS9YDTZEDRJJM7PZFOHR4YN' where id=1; -update noar tt set b2='XMC33BXO5TD64AUOLM' where id=1; -update noar ti set b2='XMC33BXO5TD64AUOLM' where id=1; -update noar tt set b0='8KBB3HQLAWI69NSDRW2' where id=2; -update noar ti set b0='8KBB3HQLAWI69NSDRW2' where id=2; -update noar tt set b1='BQX7B0QR594IAITQCVRH6' where id=2; -update noar ti set b1='BQX7B0QR594IAITQCVRH6' where id=2; -update noar tt set b2='6ONNFQBSJLYNKSW57MJ35E' where id=2; -update noar ti set b2='6ONNFQBSJLYNKSW57MJ35E' where id=2; -update noar tt set b0='PRFTAF07EFUG74GO0' where id=3; -update noar ti set b0='PRFTAF07EFUG74GO0' where id=3; -update noar tt set b1='AE9388LG1Q1V6YZ6WPEIYS' where id=3; -update noar ti set b1='AE9388LG1Q1V6YZ6WPEIYS' where id=3; -update noar tt set b2='8BX07HRNM8WVGZDQQES5TT8IMLA' where id=3; -update noar ti set b2='8BX07HRNM8WVGZDQQES5TT8IMLA' where id=3; -update noar tt set b0='9UGBMVPXOGSEAMGBBF7KN59FK9P9' where id=4; -update noar ti set b0='9UGBMVPXOGSEAMGBBF7KN59FK9P9' where id=4; -update noar tt set b1='89JBHBYODU547JUCHIRHUZLGAKNVLSLH' where id=4; -update noar ti set b1='89JBHBYODU547JUCHIRHUZLGAKNVLSLH' where id=4; -update noar tt set b2='0UBOSKPIS51HKQHY91J99G4U1ERLFH' where id=4; -update noar ti set b2='0UBOSKPIS51HKQHY91J99G4U1ERLFH' where id=4; -update noar tt set b0='I8' where id=5; -update noar ti set b0='I8' where id=5; -update noar tt set b1='CTK5BOQ8BSRB3POABSCUGIVS09C' where id=5; -update noar ti set b1='CTK5BOQ8BSRB3POABSCUGIVS09C' where id=5; -update noar tt set b2='OU01N' where id=5; -update noar ti set b2='OU01N' where id=5; -update noar tt set b0='FMFS' where id=6; -update noar ti set b0='FMFS' where id=6; -update noar tt set b1='PHHGM8F60860CJEVB59B8QKM8T3ZP0' where id=6; -update noar ti set b1='PHHGM8F60860CJEVB59B8QKM8T3ZP0' where id=6; -update noar tt set b2='6KRPVX34JMJG41QBWZAJJ5' where id=6; -update noar ti set b2='6KRPVX34JMJG41QBWZAJJ5' where id=6; -update noar tt set b0='BV2VGQD' where id=7; -update noar ti set b0='BV2VGQD' where id=7; -update noar tt set b1='JY0VHUBJ0YZNNZ8VYAO6HSSYLMA6K' where id=7; -update noar ti set b1='JY0VHUBJ0YZNNZ8VYAO6HSSYLMA6K' where id=7; -update noar tt set b2='FGS7P4Q' where id=7; -update noar ti set b2='FGS7P4Q' where id=7; -update noar tt set b0='MQMZBVENUCJ8UJJ09XNW6IYU2HXQXO' where id=8; -update noar ti set b0='MQMZBVENUCJ8UJJ09XNW6IYU2HXQXO' where id=8; -update noar tt set b1='UASAGZ68COLPUOCTC55' where id=8; -update noar ti set b1='UASAGZ68COLPUOCTC55' where id=8; -update noar tt set b2='4Y8DGERP9R40MM24Z2' where id=8; -update noar ti set b2='4Y8DGERP9R40MM24Z2' where id=8; -update noar tt set b0='46R6F31ILFURWXRZ7SB2U2U' where id=9; -update noar ti set b0='46R6F31ILFURWXRZ7SB2U2U' where id=9; -update noar tt set b1='Y4Y4B3S7' where id=9; -update noar ti set b1='Y4Y4B3S7' where id=9; -update noar tt set b2='RYKIS12QMX' where id=9; -update noar ti set b2='RYKIS12QMX' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -b0 blob not null, -b1 tinyblob not null, -b2 longblob not null -) engine=tokudb; -insert into tt values (1,'','',''); -insert into tt values (2,'','',''); -insert into tt values (3,'','',''); -insert into tt values (4,'','',''); -insert into tt values (5,'','',''); -insert into tt values (6,'','',''); -insert into tt values (7,'','',''); -insert into tt values (8,'','',''); -insert into tt values (9,'','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set b0='HSFH0ZTYWAWAHMCG7FMSPJF0Z8' where id=1; -update noar ti set b0='HSFH0ZTYWAWAHMCG7FMSPJF0Z8' where id=1; -update noar tt set b1='FW0A82DHRGPWW172BE37QY7NZWGS056Q' where id=1; -update noar ti set b1='FW0A82DHRGPWW172BE37QY7NZWGS056Q' where id=1; -update noar tt set b2='7WFSWBH1ZB5K9VGDERAZ3' where id=1; -update noar ti set b2='7WFSWBH1ZB5K9VGDERAZ3' where id=1; -update noar tt set b0='BNLQV27O4' where id=2; -update noar ti set b0='BNLQV27O4' where id=2; -update noar tt set b1='GCPGNML' where id=2; -update noar ti set b1='GCPGNML' where id=2; -update noar tt set b2='KBJSGMHY037OUXI19MIIC8G36EH2G5' where id=2; -update noar ti set b2='KBJSGMHY037OUXI19MIIC8G36EH2G5' where id=2; -update noar tt set b0='L4C5DMA0ZHTX80DOO28LEZ3DRHFX1' where id=3; -update noar ti set b0='L4C5DMA0ZHTX80DOO28LEZ3DRHFX1' where id=3; -update noar tt set b1='TIA737NKMB4NYWV0CUVZRZS17X' where id=3; -update noar ti set b1='TIA737NKMB4NYWV0CUVZRZS17X' where id=3; -update noar tt set b2='PI6XBD7ZO8VYFN94Z5DF6W' where id=3; -update noar ti set b2='PI6XBD7ZO8VYFN94Z5DF6W' where id=3; -update noar tt set b0='YAXJ29E6' where id=4; -update noar ti set b0='YAXJ29E6' where id=4; -update noar tt set b1='UOYZGEDRRATO' where id=4; -update noar ti set b1='UOYZGEDRRATO' where id=4; -update noar tt set b2='JJ8IYIEGMSQ' where id=4; -update noar ti set b2='JJ8IYIEGMSQ' where id=4; -update noar tt set b0='6' where id=5; -update noar ti set b0='6' where id=5; -update noar tt set b1='EWW35KLM88QKELLNH1NU9GASCGK09E' where id=5; -update noar ti set b1='EWW35KLM88QKELLNH1NU9GASCGK09E' where id=5; -update noar tt set b2='AEL3YG2NYESC8SGI6' where id=5; -update noar ti set b2='AEL3YG2NYESC8SGI6' where id=5; -update noar tt set b0='T0BWPQIK7V1OX2Q5QKID3B9' where id=6; -update noar ti set b0='T0BWPQIK7V1OX2Q5QKID3B9' where id=6; -update noar tt set b1='HJ' where id=6; -update noar ti set b1='HJ' where id=6; -update noar tt set b2='LNVTTVZ0V9TJ1M' where id=6; -update noar ti set b2='LNVTTVZ0V9TJ1M' where id=6; -update noar tt set b0='8ZDS806O8WM9ZS4IY07M' where id=7; -update noar ti set b0='8ZDS806O8WM9ZS4IY07M' where id=7; -update noar tt set b1='VV' where id=7; -update noar ti set b1='VV' where id=7; -update noar tt set b2='WCC2CJAU6D7YDWNU81XH4RKKLMM' where id=7; -update noar ti set b2='WCC2CJAU6D7YDWNU81XH4RKKLMM' where id=7; -update noar tt set b0='LWQ7NYFOBTX0YHXK9' where id=8; -update noar ti set b0='LWQ7NYFOBTX0YHXK9' where id=8; -update noar tt set b1='PGQYIJRK' where id=8; -update noar ti set b1='PGQYIJRK' where id=8; -update noar tt set b2='533Q0D' where id=8; -update noar ti set b2='533Q0D' where id=8; -update noar tt set b0='JTI9QQ9S5U57YJPX7SOLZ7YJWXL' where id=9; -update noar ti set b0='JTI9QQ9S5U57YJPX7SOLZ7YJWXL' where id=9; -update noar tt set b1='UQ8T18V5N' where id=9; -update noar ti set b1='UQ8T18V5N' where id=9; -update noar tt set b2='L6V03NK4BM686NRIL2XUL1TJ2UQZM4TH' where id=9; -update noar ti set b2='L6V03NK4BM686NRIL2XUL1TJ2UQZM4TH' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -b0 blob null, -b1 tinyblob null, -b2 text null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set b0='PJ1E2HNNBI4ELOR3D12XPPOAQ9DSV' where id=1; -update noar ti set b0='PJ1E2HNNBI4ELOR3D12XPPOAQ9DSV' where id=1; -update noar tt set b1='68BP87VDYTSIYZJKLIL60BN603I0' where id=1; -update noar ti set b1='68BP87VDYTSIYZJKLIL60BN603I0' where id=1; -update noar tt set b2='0BBFOY9HAG6VIXO6Q13PW' where id=1; -update noar ti set b2='0BBFOY9HAG6VIXO6Q13PW' where id=1; -update noar tt set b0='SR5XPP0YP76VA6V9NQBZ' where id=2; -update noar ti set b0='SR5XPP0YP76VA6V9NQBZ' where id=2; -update noar tt set b1='R1REPTM31Q5' where id=2; -update noar ti set b1='R1REPTM31Q5' where id=2; -update noar tt set b2='DI4RB2W63KPOZ6TVT68TR' where id=2; -update noar ti set b2='DI4RB2W63KPOZ6TVT68TR' where id=2; -update noar tt set b0='ZLVRXQHYMMPX3P81712GCLHLNSX0' where id=3; -update noar ti set b0='ZLVRXQHYMMPX3P81712GCLHLNSX0' where id=3; -update noar tt set b1='CPPOLKZE6ONH1I2N' where id=3; -update noar ti set b1='CPPOLKZE6ONH1I2N' where id=3; -update noar tt set b2='WSUHEQQM7Y7XGNVEV' where id=3; -update noar ti set b2='WSUHEQQM7Y7XGNVEV' where id=3; -update noar tt set b0='9MJJKQGO0' where id=4; -update noar ti set b0='9MJJKQGO0' where id=4; -update noar tt set b1='YSBTVV7YXKMQBJSXJCM6B59' where id=4; -update noar ti set b1='YSBTVV7YXKMQBJSXJCM6B59' where id=4; -update noar tt set b2='JO1RCM80UZKQGTYSQJ6' where id=4; -update noar ti set b2='JO1RCM80UZKQGTYSQJ6' where id=4; -update noar tt set b0='0YD46MV1XPS' where id=5; -update noar ti set b0='0YD46MV1XPS' where id=5; -update noar tt set b1='03' where id=5; -update noar ti set b1='03' where id=5; -update noar tt set b2='0JOLC82TINTME' where id=5; -update noar ti set b2='0JOLC82TINTME' where id=5; -update noar tt set b0='I0J37Y85HOMS847YR1D9XFWM' where id=6; -update noar ti set b0='I0J37Y85HOMS847YR1D9XFWM' where id=6; -update noar tt set b1='5GPA0UDONNC6XIF6' where id=6; -update noar ti set b1='5GPA0UDONNC6XIF6' where id=6; -update noar tt set b2='U425D3Z41P8OC' where id=6; -update noar ti set b2='U425D3Z41P8OC' where id=6; -update noar tt set b0='WG' where id=7; -update noar ti set b0='WG' where id=7; -update noar tt set b1='A8INT0H' where id=7; -update noar ti set b1='A8INT0H' where id=7; -update noar tt set b2='JMGT52ZFPU6T67Z0Y20LS7' where id=7; -update noar ti set b2='JMGT52ZFPU6T67Z0Y20LS7' where id=7; -update noar tt set b0='KT8EFTIRVHR3Q0ZJVTWPJUBKOYF97IG2' where id=8; -update noar ti set b0='KT8EFTIRVHR3Q0ZJVTWPJUBKOYF97IG2' where id=8; -update noar tt set b1='BK5GAXW' where id=8; -update noar ti set b1='BK5GAXW' where id=8; -update noar tt set b2='SMTYS20L9C06PH8RRN87' where id=8; -update noar ti set b2='SMTYS20L9C06PH8RRN87' where id=8; -update noar tt set b0='2UELG1RA45IC6FLK97PLSE87VD8ZAF' where id=9; -update noar ti set b0='2UELG1RA45IC6FLK97PLSE87VD8ZAF' where id=9; -update noar tt set b1='9' where id=9; -update noar ti set b1='9' where id=9; -update noar tt set b2='8LK5FLJIKUY6GL5' where id=9; -update noar ti set b2='8LK5FLJIKUY6GL5' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -b0 blob not null, -b1 tinyblob not null, -b2 text not null -) engine=tokudb; -insert into tt values (1,'','',''); -insert into tt values (2,'','',''); -insert into tt values (3,'','',''); -insert into tt values (4,'','',''); -insert into tt values (5,'','',''); -insert into tt values (6,'','',''); -insert into tt values (7,'','',''); -insert into tt values (8,'','',''); -insert into tt values (9,'','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set b0='AAXLS5G0PPUS' where id=1; -update noar ti set b0='AAXLS5G0PPUS' where id=1; -update noar tt set b1='WBBO5Q' where id=1; -update noar ti set b1='WBBO5Q' where id=1; -update noar tt set b2='814OEE9XUVIGN3PU7U3APBPI' where id=1; -update noar ti set b2='814OEE9XUVIGN3PU7U3APBPI' where id=1; -update noar tt set b0='XPLJ89D046BAKOO3EVDW1' where id=2; -update noar ti set b0='XPLJ89D046BAKOO3EVDW1' where id=2; -update noar tt set b1='TT8X8VOJG' where id=2; -update noar ti set b1='TT8X8VOJG' where id=2; -update noar tt set b2='JVV0CL' where id=2; -update noar ti set b2='JVV0CL' where id=2; -update noar tt set b0='J' where id=3; -update noar ti set b0='J' where id=3; -update noar tt set b1='RSRIUJ' where id=3; -update noar ti set b1='RSRIUJ' where id=3; -update noar tt set b2='LR2ZIH' where id=3; -update noar ti set b2='LR2ZIH' where id=3; -update noar tt set b0='6GF9CAL1EJLYO' where id=4; -update noar ti set b0='6GF9CAL1EJLYO' where id=4; -update noar tt set b1='JQYFXCUBLAWP2B' where id=4; -update noar ti set b1='JQYFXCUBLAWP2B' where id=4; -update noar tt set b2='LICKD8USL37F5F3RYYPSQSN' where id=4; -update noar ti set b2='LICKD8USL37F5F3RYYPSQSN' where id=4; -update noar tt set b0='Y4LGGE9XBOZ4' where id=5; -update noar ti set b0='Y4LGGE9XBOZ4' where id=5; -update noar tt set b1='6ZC2MRJ' where id=5; -update noar ti set b1='6ZC2MRJ' where id=5; -update noar tt set b2='30X3EE19FXZQVYSDTLDNAUCXP97SW99' where id=5; -update noar ti set b2='30X3EE19FXZQVYSDTLDNAUCXP97SW99' where id=5; -update noar tt set b0='KD9RVH' where id=6; -update noar ti set b0='KD9RVH' where id=6; -update noar tt set b1='U8GYRTCCXBVL7D' where id=6; -update noar ti set b1='U8GYRTCCXBVL7D' where id=6; -update noar tt set b2='0Z822KQQ4CI3G20C290O05' where id=6; -update noar ti set b2='0Z822KQQ4CI3G20C290O05' where id=6; -update noar tt set b0='TOO353J5QJ5PXT7QR' where id=7; -update noar ti set b0='TOO353J5QJ5PXT7QR' where id=7; -update noar tt set b1='9L4KVXIM9E1WF6Z8EB5APXVEL' where id=7; -update noar ti set b1='9L4KVXIM9E1WF6Z8EB5APXVEL' where id=7; -update noar tt set b2='F9XI1K' where id=7; -update noar ti set b2='F9XI1K' where id=7; -update noar tt set b0='39IV1R3FSSA3SV' where id=8; -update noar ti set b0='39IV1R3FSSA3SV' where id=8; -update noar tt set b1='WM15C2NO3WMTQ1L56LAQ' where id=8; -update noar ti set b1='WM15C2NO3WMTQ1L56LAQ' where id=8; -update noar tt set b2='BEQ04' where id=8; -update noar ti set b2='BEQ04' where id=8; -update noar tt set b0='MCIDX6SA137ZUIDQH5VQNE3HNLDLV1S' where id=9; -update noar ti set b0='MCIDX6SA137ZUIDQH5VQNE3HNLDLV1S' where id=9; -update noar tt set b1='WLNH9CVRXRM4' where id=9; -update noar ti set b1='WLNH9CVRXRM4' where id=9; -update noar tt set b2='JY2IKQH2A1L6ENF0NF73' where id=9; -update noar ti set b2='JY2IKQH2A1L6ENF0NF73' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -b0 blob null, -b1 blob null, -b2 tinyblob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set b0='IXZWHX4CZCW9ML2S65PTDI1HJ35U2ON' where id=1; -update noar ti set b0='IXZWHX4CZCW9ML2S65PTDI1HJ35U2ON' where id=1; -update noar tt set b1='QR3HW6I0KDWUK5' where id=1; -update noar ti set b1='QR3HW6I0KDWUK5' where id=1; -update noar tt set b2='U22MTI3N89H50N4BOYB7TUIS1PTV16EV' where id=1; -update noar ti set b2='U22MTI3N89H50N4BOYB7TUIS1PTV16EV' where id=1; -update noar tt set b0='QCS3D652TVA9DYYIYX87' where id=2; -update noar ti set b0='QCS3D652TVA9DYYIYX87' where id=2; -update noar tt set b1='DQGMST' where id=2; -update noar ti set b1='DQGMST' where id=2; -update noar tt set b2='LK9HJC4TVACHAHRATRA0TEB9K8OK' where id=2; -update noar ti set b2='LK9HJC4TVACHAHRATRA0TEB9K8OK' where id=2; -update noar tt set b0='SYTWGM7QYA9JO45UV85ED4' where id=3; -update noar ti set b0='SYTWGM7QYA9JO45UV85ED4' where id=3; -update noar tt set b1='MUB5JTTLW' where id=3; -update noar ti set b1='MUB5JTTLW' where id=3; -update noar tt set b2='YQR3ICEQA71' where id=3; -update noar ti set b2='YQR3ICEQA71' where id=3; -update noar tt set b0='SX' where id=4; -update noar ti set b0='SX' where id=4; -update noar tt set b1='IDG64I47X6PI0FYMB' where id=4; -update noar ti set b1='IDG64I47X6PI0FYMB' where id=4; -update noar tt set b2='2SHFW1M6UB437PA' where id=4; -update noar ti set b2='2SHFW1M6UB437PA' where id=4; -update noar tt set b0='43ZLUHPPBMAK6EA7SFID8' where id=5; -update noar ti set b0='43ZLUHPPBMAK6EA7SFID8' where id=5; -update noar tt set b1='H9L5L0KQG9IWXK46L1T' where id=5; -update noar ti set b1='H9L5L0KQG9IWXK46L1T' where id=5; -update noar tt set b2='8E09LXUMO' where id=5; -update noar ti set b2='8E09LXUMO' where id=5; -update noar tt set b0='CMCNAJWVO2QHB7C2UE2GFY' where id=6; -update noar ti set b0='CMCNAJWVO2QHB7C2UE2GFY' where id=6; -update noar tt set b1='JWVMMU' where id=6; -update noar ti set b1='JWVMMU' where id=6; -update noar tt set b2='7ER1I3QIR23P06LDKY1DMSGXR' where id=6; -update noar ti set b2='7ER1I3QIR23P06LDKY1DMSGXR' where id=6; -update noar tt set b0='Q8FPD00R73' where id=7; -update noar ti set b0='Q8FPD00R73' where id=7; -update noar tt set b1='1PXML1EAX7EVDACPEJV' where id=7; -update noar ti set b1='1PXML1EAX7EVDACPEJV' where id=7; -update noar tt set b2='Z84KEYJQRZA01CZR67' where id=7; -update noar ti set b2='Z84KEYJQRZA01CZR67' where id=7; -update noar tt set b0='Y5NA6ZHJ7M9X43' where id=8; -update noar ti set b0='Y5NA6ZHJ7M9X43' where id=8; -update noar tt set b1='GRNUNYHSFWWB6SJI37F5HBHHK3IJJ' where id=8; -update noar ti set b1='GRNUNYHSFWWB6SJI37F5HBHHK3IJJ' where id=8; -update noar tt set b2='I1XNSPT08' where id=8; -update noar ti set b2='I1XNSPT08' where id=8; -update noar tt set b0='8TBDS1ZAVCTZCZ8D' where id=9; -update noar ti set b0='8TBDS1ZAVCTZCZ8D' where id=9; -update noar tt set b1='W' where id=9; -update noar ti set b1='W' where id=9; -update noar tt set b2='95QSR3SL5KUZ' where id=9; -update noar ti set b2='95QSR3SL5KUZ' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -b0 blob not null, -b1 blob not null, -b2 tinyblob not null -) engine=tokudb; -insert into tt values (1,'','',''); -insert into tt values (2,'','',''); -insert into tt values (3,'','',''); -insert into tt values (4,'','',''); -insert into tt values (5,'','',''); -insert into tt values (6,'','',''); -insert into tt values (7,'','',''); -insert into tt values (8,'','',''); -insert into tt values (9,'','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set b0='WVAI8AEDFU6X1E4O6JYXNV7ELO90Q' where id=1; -update noar ti set b0='WVAI8AEDFU6X1E4O6JYXNV7ELO90Q' where id=1; -update noar tt set b1='6RHS0DF2OE1KKY6EKQO70' where id=1; -update noar ti set b1='6RHS0DF2OE1KKY6EKQO70' where id=1; -update noar tt set b2='Z1D4ZRTTRG3DAD8P6SO4FH1FV' where id=1; -update noar ti set b2='Z1D4ZRTTRG3DAD8P6SO4FH1FV' where id=1; -update noar tt set b0='GE89XGF9XIH8' where id=2; -update noar ti set b0='GE89XGF9XIH8' where id=2; -update noar tt set b1='AILJ5MACC5W' where id=2; -update noar ti set b1='AILJ5MACC5W' where id=2; -update noar tt set b2='9RGXWEA6CGO8G' where id=2; -update noar ti set b2='9RGXWEA6CGO8G' where id=2; -update noar tt set b0='043GDPRT3PN3UJCPQ6SUQB' where id=3; -update noar ti set b0='043GDPRT3PN3UJCPQ6SUQB' where id=3; -update noar tt set b1='WMCKIY0NQJI7J8T4J2' where id=3; -update noar ti set b1='WMCKIY0NQJI7J8T4J2' where id=3; -update noar tt set b2='COC9JP7DGW7E3LZU48449L' where id=3; -update noar ti set b2='COC9JP7DGW7E3LZU48449L' where id=3; -update noar tt set b0='IY4NG8VI1XELF8QKT9D42U5B3ERULKS' where id=4; -update noar ti set b0='IY4NG8VI1XELF8QKT9D42U5B3ERULKS' where id=4; -update noar tt set b1='L8ENZSLYV1KUT2849FO4A8DKHDYUDC5' where id=4; -update noar ti set b1='L8ENZSLYV1KUT2849FO4A8DKHDYUDC5' where id=4; -update noar tt set b2='DMNEG6' where id=4; -update noar ti set b2='DMNEG6' where id=4; -update noar tt set b0='U4NO' where id=5; -update noar ti set b0='U4NO' where id=5; -update noar tt set b1='I4X7OL' where id=5; -update noar ti set b1='I4X7OL' where id=5; -update noar tt set b2='SIG8DLU3EUFWPXA4AOD0' where id=5; -update noar ti set b2='SIG8DLU3EUFWPXA4AOD0' where id=5; -update noar tt set b0='2DSFS0IMOS' where id=6; -update noar ti set b0='2DSFS0IMOS' where id=6; -update noar tt set b1='LVTRKJA3QM8NS9GP3TOOYK9CYFKQQFOX' where id=6; -update noar ti set b1='LVTRKJA3QM8NS9GP3TOOYK9CYFKQQFOX' where id=6; -update noar tt set b2='ZTN7NFM8E584MLMPIVO0PDNX5XRVH' where id=6; -update noar ti set b2='ZTN7NFM8E584MLMPIVO0PDNX5XRVH' where id=6; -update noar tt set b0='R3UX8RP4PDR4CJK' where id=7; -update noar ti set b0='R3UX8RP4PDR4CJK' where id=7; -update noar tt set b1='16R9JH7' where id=7; -update noar ti set b1='16R9JH7' where id=7; -update noar tt set b2='U81LKIQVFI20UJEUO0VS2OAV' where id=7; -update noar ti set b2='U81LKIQVFI20UJEUO0VS2OAV' where id=7; -update noar tt set b0='HB9HCVU' where id=8; -update noar ti set b0='HB9HCVU' where id=8; -update noar tt set b1='470I0WQAP2666' where id=8; -update noar ti set b1='470I0WQAP2666' where id=8; -update noar tt set b2='SGZ1B0ARGAHV2YQ' where id=8; -update noar ti set b2='SGZ1B0ARGAHV2YQ' where id=8; -update noar tt set b0='1AY7PKEEPN32' where id=9; -update noar ti set b0='1AY7PKEEPN32' where id=9; -update noar tt set b1='VUQRLRXIHSJ6V264GOEJYWEWO0A' where id=9; -update noar ti set b1='VUQRLRXIHSJ6V264GOEJYWEWO0A' where id=9; -update noar tt set b2='7Y0W723Y23YVYJ6GPA4F' where id=9; -update noar ti set b2='7Y0W723Y23YVYJ6GPA4F' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -b0 blob null, -b1 blob null, -b2 blob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set b0='98P9O693V1NXZ9LP' where id=1; -update noar ti set b0='98P9O693V1NXZ9LP' where id=1; -update noar tt set b1='K9T6WBSQB7PVAK3JZVXN' where id=1; -update noar ti set b1='K9T6WBSQB7PVAK3JZVXN' where id=1; -update noar tt set b2='IPZGMVHE63DI5BDS05A487' where id=1; -update noar ti set b2='IPZGMVHE63DI5BDS05A487' where id=1; -update noar tt set b0='BSVY0QSL9W9GPFKMSO5A2BN7HMC1UX' where id=2; -update noar ti set b0='BSVY0QSL9W9GPFKMSO5A2BN7HMC1UX' where id=2; -update noar tt set b1='MIFHIG' where id=2; -update noar ti set b1='MIFHIG' where id=2; -update noar tt set b2='6139EB0SNTZEP0XKAOPM' where id=2; -update noar ti set b2='6139EB0SNTZEP0XKAOPM' where id=2; -update noar tt set b0='T73I1FL5AUDUA' where id=3; -update noar ti set b0='T73I1FL5AUDUA' where id=3; -update noar tt set b1='42ZUAEJSMHLR8N068TS7ZRVK47D' where id=3; -update noar ti set b1='42ZUAEJSMHLR8N068TS7ZRVK47D' where id=3; -update noar tt set b2='I6UK8YK5FO4OF' where id=3; -update noar ti set b2='I6UK8YK5FO4OF' where id=3; -update noar tt set b0='PTR8P4K3LALD285V' where id=4; -update noar ti set b0='PTR8P4K3LALD285V' where id=4; -update noar tt set b1='QGQ8M6WWTGIVZ9J11MRIAJZ7LYY' where id=4; -update noar ti set b1='QGQ8M6WWTGIVZ9J11MRIAJZ7LYY' where id=4; -update noar tt set b2='A54MBVPNYX02' where id=4; -update noar ti set b2='A54MBVPNYX02' where id=4; -update noar tt set b0='G2IRAH5HEZGV1' where id=5; -update noar ti set b0='G2IRAH5HEZGV1' where id=5; -update noar tt set b1='K7P8CWD3G1NEJ0B606NEC0AM9EWM' where id=5; -update noar ti set b1='K7P8CWD3G1NEJ0B606NEC0AM9EWM' where id=5; -update noar tt set b2='9WC5K0JYPSGEP0CTP59' where id=5; -update noar ti set b2='9WC5K0JYPSGEP0CTP59' where id=5; -update noar tt set b0='3S' where id=6; -update noar ti set b0='3S' where id=6; -update noar tt set b1='ZQ96C864' where id=6; -update noar ti set b1='ZQ96C864' where id=6; -update noar tt set b2='HHPMIIPN0ZDT6A9VVB675V29VS' where id=6; -update noar ti set b2='HHPMIIPN0ZDT6A9VVB675V29VS' where id=6; -update noar tt set b0='18XOL' where id=7; -update noar ti set b0='18XOL' where id=7; -update noar tt set b1='DXAXGVAYWAIEYDUQIJSH2J5J1K5' where id=7; -update noar ti set b1='DXAXGVAYWAIEYDUQIJSH2J5J1K5' where id=7; -update noar tt set b2='805OY0Y0B7J974FGTWN2QMO9' where id=7; -update noar ti set b2='805OY0Y0B7J974FGTWN2QMO9' where id=7; -update noar tt set b0='N1U6ZUL0MWO' where id=8; -update noar ti set b0='N1U6ZUL0MWO' where id=8; -update noar tt set b1='EBXY2S14913PV2MHYM8' where id=8; -update noar ti set b1='EBXY2S14913PV2MHYM8' where id=8; -update noar tt set b2='E6V25MRE8EGW4KRBEC744LST69R1HU5' where id=8; -update noar ti set b2='E6V25MRE8EGW4KRBEC744LST69R1HU5' where id=8; -update noar tt set b0='RFT7ZQI963AT85JNAQPO' where id=9; -update noar ti set b0='RFT7ZQI963AT85JNAQPO' where id=9; -update noar tt set b1='1S' where id=9; -update noar ti set b1='1S' where id=9; -update noar tt set b2='3ZC31H3O22' where id=9; -update noar ti set b2='3ZC31H3O22' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -b0 blob not null, -b1 blob not null, -b2 blob not null -) engine=tokudb; -insert into tt values (1,'','',''); -insert into tt values (2,'','',''); -insert into tt values (3,'','',''); -insert into tt values (4,'','',''); -insert into tt values (5,'','',''); -insert into tt values (6,'','',''); -insert into tt values (7,'','',''); -insert into tt values (8,'','',''); -insert into tt values (9,'','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set b0='QAO3X5CJKILWGDLA' where id=1; -update noar ti set b0='QAO3X5CJKILWGDLA' where id=1; -update noar tt set b1='9F9E8DSZ48V4PI50' where id=1; -update noar ti set b1='9F9E8DSZ48V4PI50' where id=1; -update noar tt set b2='AP6SL7SAH96NR228TS1F6' where id=1; -update noar ti set b2='AP6SL7SAH96NR228TS1F6' where id=1; -update noar tt set b0='DYTLSR4NZ6RVVUAM' where id=2; -update noar ti set b0='DYTLSR4NZ6RVVUAM' where id=2; -update noar tt set b1='TA5VJ42QB227AMUHDPL0IRSZSEMC' where id=2; -update noar ti set b1='TA5VJ42QB227AMUHDPL0IRSZSEMC' where id=2; -update noar tt set b2='ETQ8U6W998SW28J48' where id=2; -update noar ti set b2='ETQ8U6W998SW28J48' where id=2; -update noar tt set b0='5FSBN03813OG12CF54PTN9' where id=3; -update noar ti set b0='5FSBN03813OG12CF54PTN9' where id=3; -update noar tt set b1='0HFJUX62W4V28TFU3E0XJY' where id=3; -update noar ti set b1='0HFJUX62W4V28TFU3E0XJY' where id=3; -update noar tt set b2='17N' where id=3; -update noar ti set b2='17N' where id=3; -update noar tt set b0='D' where id=4; -update noar ti set b0='D' where id=4; -update noar tt set b1='Z3JBC1MTM2XC746ONBL44' where id=4; -update noar ti set b1='Z3JBC1MTM2XC746ONBL44' where id=4; -update noar tt set b2='RTD' where id=4; -update noar ti set b2='RTD' where id=4; -update noar tt set b0='9CCBGMSK9F8Q2RUXFS5VDVLGEZ63KWMS' where id=5; -update noar ti set b0='9CCBGMSK9F8Q2RUXFS5VDVLGEZ63KWMS' where id=5; -update noar tt set b1='UB3EX0L1N71AYE6BM85OWAHPDPC' where id=5; -update noar ti set b1='UB3EX0L1N71AYE6BM85OWAHPDPC' where id=5; -update noar tt set b2='MID3MUDG' where id=5; -update noar ti set b2='MID3MUDG' where id=5; -update noar tt set b0='UDX1TX8O69PLNWCR03VE3B3Z8IYCF8O' where id=6; -update noar ti set b0='UDX1TX8O69PLNWCR03VE3B3Z8IYCF8O' where id=6; -update noar tt set b1='IO07JDTZD0YSCW7D7JULKH2XR8Q' where id=6; -update noar ti set b1='IO07JDTZD0YSCW7D7JULKH2XR8Q' where id=6; -update noar tt set b2='RG4DI8AJED6CSID7V3ZO4OGTTZ1' where id=6; -update noar ti set b2='RG4DI8AJED6CSID7V3ZO4OGTTZ1' where id=6; -update noar tt set b0='LPRTXX5' where id=7; -update noar ti set b0='LPRTXX5' where id=7; -update noar tt set b1='HHIXGFDHRB' where id=7; -update noar ti set b1='HHIXGFDHRB' where id=7; -update noar tt set b2='9H8NPOIGYBP6U487P1ZUROFOAT5SJW97' where id=7; -update noar ti set b2='9H8NPOIGYBP6U487P1ZUROFOAT5SJW97' where id=7; -update noar tt set b0='KK7Y06H' where id=8; -update noar ti set b0='KK7Y06H' where id=8; -update noar tt set b1='01SMRXUZ2R' where id=8; -update noar ti set b1='01SMRXUZ2R' where id=8; -update noar tt set b2='FRLFQZEXW7O2YP4M' where id=8; -update noar ti set b2='FRLFQZEXW7O2YP4M' where id=8; -update noar tt set b0='WM9K587L' where id=9; -update noar ti set b0='WM9K587L' where id=9; -update noar tt set b1='00BIDQXMH' where id=9; -update noar ti set b1='00BIDQXMH' where id=9; -update noar tt set b2='DKLS' where id=9; -update noar ti set b2='DKLS' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -b0 blob null, -b1 blob null, -b2 mediumblob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set b0='ZI0WNWKEK8CLBNA8586IKD62TIMCSJ2B' where id=1; -update noar ti set b0='ZI0WNWKEK8CLBNA8586IKD62TIMCSJ2B' where id=1; -update noar tt set b1='Y2TW67X7' where id=1; -update noar ti set b1='Y2TW67X7' where id=1; -update noar tt set b2='PH' where id=1; -update noar ti set b2='PH' where id=1; -update noar tt set b0='VUIQ65K' where id=2; -update noar ti set b0='VUIQ65K' where id=2; -update noar tt set b1='0VGZ8KWSB' where id=2; -update noar ti set b1='0VGZ8KWSB' where id=2; -update noar tt set b2='C8DYRPU2JW1CP5' where id=2; -update noar ti set b2='C8DYRPU2JW1CP5' where id=2; -update noar tt set b0='X' where id=3; -update noar ti set b0='X' where id=3; -update noar tt set b1='Q5F3MZZ' where id=3; -update noar ti set b1='Q5F3MZZ' where id=3; -update noar tt set b2='YZ1R0TJLARJ61DHG6G39XW5N891Y' where id=3; -update noar ti set b2='YZ1R0TJLARJ61DHG6G39XW5N891Y' where id=3; -update noar tt set b0='O1K423U69LMMA5E1HKH' where id=4; -update noar ti set b0='O1K423U69LMMA5E1HKH' where id=4; -update noar tt set b1='R6VOP94BXWDICWTD1N' where id=4; -update noar ti set b1='R6VOP94BXWDICWTD1N' where id=4; -update noar tt set b2='I6SFGIYV5Z0R6FA17FT289Y2JKEMLD' where id=4; -update noar ti set b2='I6SFGIYV5Z0R6FA17FT289Y2JKEMLD' where id=4; -update noar tt set b0='P0PTIZBT0VBQ8Z5O1' where id=5; -update noar ti set b0='P0PTIZBT0VBQ8Z5O1' where id=5; -update noar tt set b1='Z3NM65FDT5ES2CCH0T1' where id=5; -update noar ti set b1='Z3NM65FDT5ES2CCH0T1' where id=5; -update noar tt set b2='CF2' where id=5; -update noar ti set b2='CF2' where id=5; -update noar tt set b0='LWK' where id=6; -update noar ti set b0='LWK' where id=6; -update noar tt set b1='3YF2DGHA' where id=6; -update noar ti set b1='3YF2DGHA' where id=6; -update noar tt set b2='DFQCONK04' where id=6; -update noar ti set b2='DFQCONK04' where id=6; -update noar tt set b0='5KAMOFWPXOP' where id=7; -update noar ti set b0='5KAMOFWPXOP' where id=7; -update noar tt set b1='BHU8F' where id=7; -update noar ti set b1='BHU8F' where id=7; -update noar tt set b2='NIRQ47GP' where id=7; -update noar ti set b2='NIRQ47GP' where id=7; -update noar tt set b0='T4OH01O811EB8H' where id=8; -update noar ti set b0='T4OH01O811EB8H' where id=8; -update noar tt set b1='0FHEH8U045T3Z3VECYRNXQYGU4WU' where id=8; -update noar ti set b1='0FHEH8U045T3Z3VECYRNXQYGU4WU' where id=8; -update noar tt set b2='14T35GPVUVPXONKOO0S7D4JM6TPHO7SH' where id=8; -update noar ti set b2='14T35GPVUVPXONKOO0S7D4JM6TPHO7SH' where id=8; -update noar tt set b0='6894B5HADGHLN' where id=9; -update noar ti set b0='6894B5HADGHLN' where id=9; -update noar tt set b1='V3F401GUM1H60HSYN5XMXN69P' where id=9; -update noar ti set b1='V3F401GUM1H60HSYN5XMXN69P' where id=9; -update noar tt set b2='BANDB' where id=9; -update noar ti set b2='BANDB' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -b0 blob not null, -b1 blob not null, -b2 mediumblob not null -) engine=tokudb; -insert into tt values (1,'','',''); -insert into tt values (2,'','',''); -insert into tt values (3,'','',''); -insert into tt values (4,'','',''); -insert into tt values (5,'','',''); -insert into tt values (6,'','',''); -insert into tt values (7,'','',''); -insert into tt values (8,'','',''); -insert into tt values (9,'','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set b0='YAX' where id=1; -update noar ti set b0='YAX' where id=1; -update noar tt set b1='UUA8JI8ZRUIL' where id=1; -update noar ti set b1='UUA8JI8ZRUIL' where id=1; -update noar tt set b2='Z5P2NI5V8AWINU6KLP' where id=1; -update noar ti set b2='Z5P2NI5V8AWINU6KLP' where id=1; -update noar tt set b0='JAWR6XH3F0TOPI47J6KEOQT82NW' where id=2; -update noar ti set b0='JAWR6XH3F0TOPI47J6KEOQT82NW' where id=2; -update noar tt set b1='QYP3K9BECZ9NS41BTMY27' where id=2; -update noar ti set b1='QYP3K9BECZ9NS41BTMY27' where id=2; -update noar tt set b2='8VUI5AMSC92RZX8GH1' where id=2; -update noar ti set b2='8VUI5AMSC92RZX8GH1' where id=2; -update noar tt set b0='D0W7G4U9SPQVLG6ZPAVN1LL' where id=3; -update noar ti set b0='D0W7G4U9SPQVLG6ZPAVN1LL' where id=3; -update noar tt set b1='R2YXFUKPZBADY6N1GCQFEXRY078FNA' where id=3; -update noar ti set b1='R2YXFUKPZBADY6N1GCQFEXRY078FNA' where id=3; -update noar tt set b2='R7PLQXEX25WHZ94HW7HYP' where id=3; -update noar ti set b2='R7PLQXEX25WHZ94HW7HYP' where id=3; -update noar tt set b0='U0W9ZVMKM7K8' where id=4; -update noar ti set b0='U0W9ZVMKM7K8' where id=4; -update noar tt set b1='U' where id=4; -update noar ti set b1='U' where id=4; -update noar tt set b2='3FOIEYZCL2X3UW' where id=4; -update noar ti set b2='3FOIEYZCL2X3UW' where id=4; -update noar tt set b0='P9NSYCPG1P0BFEQOHQ0YL5C9VMKZU' where id=5; -update noar ti set b0='P9NSYCPG1P0BFEQOHQ0YL5C9VMKZU' where id=5; -update noar tt set b1='4OY294SQFNFZM' where id=5; -update noar ti set b1='4OY294SQFNFZM' where id=5; -update noar tt set b2='XDK7' where id=5; -update noar ti set b2='XDK7' where id=5; -update noar tt set b0='MPY0FEGK1ZQ8CG90G' where id=6; -update noar ti set b0='MPY0FEGK1ZQ8CG90G' where id=6; -update noar tt set b1='N4MM4PIAHXR4GYYIQ8NP7RRY3RVWC' where id=6; -update noar ti set b1='N4MM4PIAHXR4GYYIQ8NP7RRY3RVWC' where id=6; -update noar tt set b2='HENDN4UMXS3BFHV9B4Z3ZUXKW927RM' where id=6; -update noar ti set b2='HENDN4UMXS3BFHV9B4Z3ZUXKW927RM' where id=6; -update noar tt set b0='CWW8WZ21JMGASA1EGAM6T8GPN37KXT65' where id=7; -update noar ti set b0='CWW8WZ21JMGASA1EGAM6T8GPN37KXT65' where id=7; -update noar tt set b1='GHXPI36S' where id=7; -update noar ti set b1='GHXPI36S' where id=7; -update noar tt set b2='1G8VRE7Y58F0' where id=7; -update noar ti set b2='1G8VRE7Y58F0' where id=7; -update noar tt set b0='V4IG5V8MPL6VYH8LK3198WTU' where id=8; -update noar ti set b0='V4IG5V8MPL6VYH8LK3198WTU' where id=8; -update noar tt set b1='M9LL14XZOAO9JY6COFRWECC' where id=8; -update noar ti set b1='M9LL14XZOAO9JY6COFRWECC' where id=8; -update noar tt set b2='NVRAKYIWYPFFOD0BT5T4Z' where id=8; -update noar ti set b2='NVRAKYIWYPFFOD0BT5T4Z' where id=8; -update noar tt set b0='M0JILK4VK7SVE557XUW908ZNHM4VD1TV' where id=9; -update noar ti set b0='M0JILK4VK7SVE557XUW908ZNHM4VD1TV' where id=9; -update noar tt set b1='K9U3DVOMLAVP8KGQ11NYEV6HE6JS' where id=9; -update noar ti set b1='K9U3DVOMLAVP8KGQ11NYEV6HE6JS' where id=9; -update noar tt set b2='N9ENZX5NTSTOHLVBPRY9' where id=9; -update noar ti set b2='N9ENZX5NTSTOHLVBPRY9' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -b0 blob null, -b1 blob null, -b2 longblob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set b0='56AMJL983G85V1XPLSP0' where id=1; -update noar ti set b0='56AMJL983G85V1XPLSP0' where id=1; -update noar tt set b1='3FWFB4' where id=1; -update noar ti set b1='3FWFB4' where id=1; -update noar tt set b2='0DZO1YWIZDXEZSW6QL3R1JE' where id=1; -update noar ti set b2='0DZO1YWIZDXEZSW6QL3R1JE' where id=1; -update noar tt set b0='DH6YE' where id=2; -update noar ti set b0='DH6YE' where id=2; -update noar tt set b1='Z1Y31' where id=2; -update noar ti set b1='Z1Y31' where id=2; -update noar tt set b2='C6H46H7IPKQ9RTN' where id=2; -update noar ti set b2='C6H46H7IPKQ9RTN' where id=2; -update noar tt set b0='M2JTOSE3ZUE7Z8D' where id=3; -update noar ti set b0='M2JTOSE3ZUE7Z8D' where id=3; -update noar tt set b1='P6ITGSNVA97Z11AGIW5BZLTFNDVG9GZ0' where id=3; -update noar ti set b1='P6ITGSNVA97Z11AGIW5BZLTFNDVG9GZ0' where id=3; -update noar tt set b2='D8RUIFXX15BSYKOTZLM1J6YVECXQ' where id=3; -update noar ti set b2='D8RUIFXX15BSYKOTZLM1J6YVECXQ' where id=3; -update noar tt set b0='ZB' where id=4; -update noar ti set b0='ZB' where id=4; -update noar tt set b1='BY264UQW5RX5T2KB2M' where id=4; -update noar ti set b1='BY264UQW5RX5T2KB2M' where id=4; -update noar tt set b2='P4Y' where id=4; -update noar ti set b2='P4Y' where id=4; -update noar tt set b0='R0E536JU0' where id=5; -update noar ti set b0='R0E536JU0' where id=5; -update noar tt set b1='NE1TFYCHQG8VZIMH8KB1NDG' where id=5; -update noar ti set b1='NE1TFYCHQG8VZIMH8KB1NDG' where id=5; -update noar tt set b2='L9FE' where id=5; -update noar ti set b2='L9FE' where id=5; -update noar tt set b0='IOW7HK5VP3JMKWOWR' where id=6; -update noar ti set b0='IOW7HK5VP3JMKWOWR' where id=6; -update noar tt set b1='H5PH3OLPW2' where id=6; -update noar ti set b1='H5PH3OLPW2' where id=6; -update noar tt set b2='A4SJ6UOC' where id=6; -update noar ti set b2='A4SJ6UOC' where id=6; -update noar tt set b0='OGXACY' where id=7; -update noar ti set b0='OGXACY' where id=7; -update noar tt set b1='1HDURLDWQFU6W0R68' where id=7; -update noar ti set b1='1HDURLDWQFU6W0R68' where id=7; -update noar tt set b2='9KSVB3P8GBVL7WSS29W6E' where id=7; -update noar ti set b2='9KSVB3P8GBVL7WSS29W6E' where id=7; -update noar tt set b0='AZ60M6KYCGAB08GR' where id=8; -update noar ti set b0='AZ60M6KYCGAB08GR' where id=8; -update noar tt set b1='5ET0Q4B4IE8BI4TG8' where id=8; -update noar ti set b1='5ET0Q4B4IE8BI4TG8' where id=8; -update noar tt set b2='KM8' where id=8; -update noar ti set b2='KM8' where id=8; -update noar tt set b0='Z2LE2LISQB2VTFH2M022RRN76BOQB' where id=9; -update noar ti set b0='Z2LE2LISQB2VTFH2M022RRN76BOQB' where id=9; -update noar tt set b1='B02MWV49R10TWTQZGDEMHFO1G4' where id=9; -update noar ti set b1='B02MWV49R10TWTQZGDEMHFO1G4' where id=9; -update noar tt set b2='9' where id=9; -update noar ti set b2='9' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -b0 blob not null, -b1 blob not null, -b2 longblob not null -) engine=tokudb; -insert into tt values (1,'','',''); -insert into tt values (2,'','',''); -insert into tt values (3,'','',''); -insert into tt values (4,'','',''); -insert into tt values (5,'','',''); -insert into tt values (6,'','',''); -insert into tt values (7,'','',''); -insert into tt values (8,'','',''); -insert into tt values (9,'','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set b0='D5RQ5CZ' where id=1; -update noar ti set b0='D5RQ5CZ' where id=1; -update noar tt set b1='M3XX7GMJ6LGX2GY75V20W4Q0LFBIX65' where id=1; -update noar ti set b1='M3XX7GMJ6LGX2GY75V20W4Q0LFBIX65' where id=1; -update noar tt set b2='PW' where id=1; -update noar ti set b2='PW' where id=1; -update noar tt set b0='RP7G3Z93X41UAZDJH' where id=2; -update noar ti set b0='RP7G3Z93X41UAZDJH' where id=2; -update noar tt set b1='3F310XIFVRVS663KAOF' where id=2; -update noar ti set b1='3F310XIFVRVS663KAOF' where id=2; -update noar tt set b2='ZN' where id=2; -update noar ti set b2='ZN' where id=2; -update noar tt set b0='HCO5RM66HFYY21VCRYK8IE274CUI0Z45' where id=3; -update noar ti set b0='HCO5RM66HFYY21VCRYK8IE274CUI0Z45' where id=3; -update noar tt set b1='O2HHP099ZWSR4AV7QTY' where id=3; -update noar ti set b1='O2HHP099ZWSR4AV7QTY' where id=3; -update noar tt set b2='I9AY8RMGX3YBY6DC104JW4UX' where id=3; -update noar ti set b2='I9AY8RMGX3YBY6DC104JW4UX' where id=3; -update noar tt set b0='Q4GH6SWGDV6' where id=4; -update noar ti set b0='Q4GH6SWGDV6' where id=4; -update noar tt set b1='NZGJYI3Z8PPAERH4WBKGH17O6RXN3RRD' where id=4; -update noar ti set b1='NZGJYI3Z8PPAERH4WBKGH17O6RXN3RRD' where id=4; -update noar tt set b2='M0VB12ETATHJXPV71C' where id=4; -update noar ti set b2='M0VB12ETATHJXPV71C' where id=4; -update noar tt set b0='CRT1768U969' where id=5; -update noar ti set b0='CRT1768U969' where id=5; -update noar tt set b1='9G5190KKG4KY7VYLNRTRDAYGRZLMRVN' where id=5; -update noar ti set b1='9G5190KKG4KY7VYLNRTRDAYGRZLMRVN' where id=5; -update noar tt set b2='MDH77KMMKEUX0WLYNL9ZHP7GTZ5' where id=5; -update noar ti set b2='MDH77KMMKEUX0WLYNL9ZHP7GTZ5' where id=5; -update noar tt set b0='E' where id=6; -update noar ti set b0='E' where id=6; -update noar tt set b1='AG1HPZKJZI2V3I2OY2KYZMF6R60R' where id=6; -update noar ti set b1='AG1HPZKJZI2V3I2OY2KYZMF6R60R' where id=6; -update noar tt set b2='ELA3ZVF41SQIDZSQ40' where id=6; -update noar ti set b2='ELA3ZVF41SQIDZSQ40' where id=6; -update noar tt set b0='3S' where id=7; -update noar ti set b0='3S' where id=7; -update noar tt set b1='NV' where id=7; -update noar ti set b1='NV' where id=7; -update noar tt set b2='0NXW8QE' where id=7; -update noar ti set b2='0NXW8QE' where id=7; -update noar tt set b0='YWF1WJL1YAHW5S' where id=8; -update noar ti set b0='YWF1WJL1YAHW5S' where id=8; -update noar tt set b1='QT18FZ87HUWU09YV50P' where id=8; -update noar ti set b1='QT18FZ87HUWU09YV50P' where id=8; -update noar tt set b2='F44MCHPPP4NVX0MGQX3YDHKK0ZX3' where id=8; -update noar ti set b2='F44MCHPPP4NVX0MGQX3YDHKK0ZX3' where id=8; -update noar tt set b0='HJ' where id=9; -update noar ti set b0='HJ' where id=9; -update noar tt set b1='399DX' where id=9; -update noar ti set b1='399DX' where id=9; -update noar tt set b2='D' where id=9; -update noar ti set b2='D' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -b0 blob null, -b1 blob null, -b2 text null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set b0='KUL9R62R5XHT9TLKXWAJ2' where id=1; -update noar ti set b0='KUL9R62R5XHT9TLKXWAJ2' where id=1; -update noar tt set b1='I16AISVK0C84JN94O' where id=1; -update noar ti set b1='I16AISVK0C84JN94O' where id=1; -update noar tt set b2='DZBSYN6XM3LQRMUOHVS' where id=1; -update noar ti set b2='DZBSYN6XM3LQRMUOHVS' where id=1; -update noar tt set b0='9QX7EWVD01RNO0K31H1C46P5Y' where id=2; -update noar ti set b0='9QX7EWVD01RNO0K31H1C46P5Y' where id=2; -update noar tt set b1='T5W4UV' where id=2; -update noar ti set b1='T5W4UV' where id=2; -update noar tt set b2='NSM3QUAFH69G13E71ZQ5FT' where id=2; -update noar ti set b2='NSM3QUAFH69G13E71ZQ5FT' where id=2; -update noar tt set b0='FZMG4K9M9' where id=3; -update noar ti set b0='FZMG4K9M9' where id=3; -update noar tt set b1='KDK2I3CZ5ODM4COM' where id=3; -update noar ti set b1='KDK2I3CZ5ODM4COM' where id=3; -update noar tt set b2='Q8CHH3VNZXM5JBOAK' where id=3; -update noar ti set b2='Q8CHH3VNZXM5JBOAK' where id=3; -update noar tt set b0='Z' where id=4; -update noar ti set b0='Z' where id=4; -update noar tt set b1='T9Z' where id=4; -update noar ti set b1='T9Z' where id=4; -update noar tt set b2='26PX3YLA2DBLW2KQ9T8ER825PG5AU2VX' where id=4; -update noar ti set b2='26PX3YLA2DBLW2KQ9T8ER825PG5AU2VX' where id=4; -update noar tt set b0='IYOSIQVCY0QYKLDMDBVTR5CKP47YC9C' where id=5; -update noar ti set b0='IYOSIQVCY0QYKLDMDBVTR5CKP47YC9C' where id=5; -update noar tt set b1='NEOGGYNOPY4JC1JXJ' where id=5; -update noar ti set b1='NEOGGYNOPY4JC1JXJ' where id=5; -update noar tt set b2='QD8W0VPV' where id=5; -update noar ti set b2='QD8W0VPV' where id=5; -update noar tt set b0='OHEIOC8XO6C7RTLXBIH99777UU7WZE3I' where id=6; -update noar ti set b0='OHEIOC8XO6C7RTLXBIH99777UU7WZE3I' where id=6; -update noar tt set b1='GDVTQ' where id=6; -update noar ti set b1='GDVTQ' where id=6; -update noar tt set b2='KSON25ZJHPPV2VCA1MADX2BGAGOEZ' where id=6; -update noar ti set b2='KSON25ZJHPPV2VCA1MADX2BGAGOEZ' where id=6; -update noar tt set b0='BYN85BOSV1PLLQB2AGSJLXBIHQUR' where id=7; -update noar ti set b0='BYN85BOSV1PLLQB2AGSJLXBIHQUR' where id=7; -update noar tt set b1='18EPY4WOA0PRS4UEH8IDQWFRMONY' where id=7; -update noar ti set b1='18EPY4WOA0PRS4UEH8IDQWFRMONY' where id=7; -update noar tt set b2='2K1WWKV3FFQ9GE1IVCG0' where id=7; -update noar ti set b2='2K1WWKV3FFQ9GE1IVCG0' where id=7; -update noar tt set b0='6O50X7JG01O476B92PVF' where id=8; -update noar ti set b0='6O50X7JG01O476B92PVF' where id=8; -update noar tt set b1='JF1' where id=8; -update noar ti set b1='JF1' where id=8; -update noar tt set b2='O8JXY5CFDL20' where id=8; -update noar ti set b2='O8JXY5CFDL20' where id=8; -update noar tt set b0='V27DZ' where id=9; -update noar ti set b0='V27DZ' where id=9; -update noar tt set b1='NBZCN2ASHLBS0SFFZ87R0D98' where id=9; -update noar ti set b1='NBZCN2ASHLBS0SFFZ87R0D98' where id=9; -update noar tt set b2='GEL' where id=9; -update noar ti set b2='GEL' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -b0 blob not null, -b1 blob not null, -b2 text not null -) engine=tokudb; -insert into tt values (1,'','',''); -insert into tt values (2,'','',''); -insert into tt values (3,'','',''); -insert into tt values (4,'','',''); -insert into tt values (5,'','',''); -insert into tt values (6,'','',''); -insert into tt values (7,'','',''); -insert into tt values (8,'','',''); -insert into tt values (9,'','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set b0='2J50PUSKS4CLILJ8BE' where id=1; -update noar ti set b0='2J50PUSKS4CLILJ8BE' where id=1; -update noar tt set b1='IZ7O58ECHPB9EJEF8H43UMVWC' where id=1; -update noar ti set b1='IZ7O58ECHPB9EJEF8H43UMVWC' where id=1; -update noar tt set b2='KSB8DY5VBCSVTJ' where id=1; -update noar ti set b2='KSB8DY5VBCSVTJ' where id=1; -update noar tt set b0='OP4RAOMGCIBUS9WP8O3GE8' where id=2; -update noar ti set b0='OP4RAOMGCIBUS9WP8O3GE8' where id=2; -update noar tt set b1='YXPLOGN9198B' where id=2; -update noar ti set b1='YXPLOGN9198B' where id=2; -update noar tt set b2='LA3M88Q' where id=2; -update noar ti set b2='LA3M88Q' where id=2; -update noar tt set b0='KHVIJHK6JLLYEGNG59QD6C6BXQFOD' where id=3; -update noar ti set b0='KHVIJHK6JLLYEGNG59QD6C6BXQFOD' where id=3; -update noar tt set b1='AQWK4196CLH31W5OF0K' where id=3; -update noar ti set b1='AQWK4196CLH31W5OF0K' where id=3; -update noar tt set b2='WQ3TDBB7I9' where id=3; -update noar ti set b2='WQ3TDBB7I9' where id=3; -update noar tt set b0='83D0GE8JEZBMPUGRXWAGACZB8TBSNMN' where id=4; -update noar ti set b0='83D0GE8JEZBMPUGRXWAGACZB8TBSNMN' where id=4; -update noar tt set b1='I6QS32TU' where id=4; -update noar ti set b1='I6QS32TU' where id=4; -update noar tt set b2='SV6UBP82JBWED' where id=4; -update noar ti set b2='SV6UBP82JBWED' where id=4; -update noar tt set b0='U' where id=5; -update noar ti set b0='U' where id=5; -update noar tt set b1='G5PVDKYQE2SFB5W445VJEK22JABFMB' where id=5; -update noar ti set b1='G5PVDKYQE2SFB5W445VJEK22JABFMB' where id=5; -update noar tt set b2='EOGDCBZLP7EB4O2V8SN' where id=5; -update noar ti set b2='EOGDCBZLP7EB4O2V8SN' where id=5; -update noar tt set b0='SA56' where id=6; -update noar ti set b0='SA56' where id=6; -update noar tt set b1='AAD24XLTEBO3R3HXZ2BHV0QY0J' where id=6; -update noar ti set b1='AAD24XLTEBO3R3HXZ2BHV0QY0J' where id=6; -update noar tt set b2='6TTM4VGMWV44BX457MNLAHN35KT' where id=6; -update noar ti set b2='6TTM4VGMWV44BX457MNLAHN35KT' where id=6; -update noar tt set b0='1G32Y30YJMQZKCV60V6RMHTY34' where id=7; -update noar ti set b0='1G32Y30YJMQZKCV60V6RMHTY34' where id=7; -update noar tt set b1='FRBYVQX0L2XTWWQJ0MNBTE13BUCCW' where id=7; -update noar ti set b1='FRBYVQX0L2XTWWQJ0MNBTE13BUCCW' where id=7; -update noar tt set b2='2C1PB72YP3XJPYDLS5Q90SDMSM5O275H' where id=7; -update noar ti set b2='2C1PB72YP3XJPYDLS5Q90SDMSM5O275H' where id=7; -update noar tt set b0='34QQYD9ABXX820FRK278269SY5RZ3' where id=8; -update noar ti set b0='34QQYD9ABXX820FRK278269SY5RZ3' where id=8; -update noar tt set b1='UQG9UCA6JER9C6AWJP9QLXV' where id=8; -update noar ti set b1='UQG9UCA6JER9C6AWJP9QLXV' where id=8; -update noar tt set b2='QIMCR0S7' where id=8; -update noar ti set b2='QIMCR0S7' where id=8; -update noar tt set b0='UHXB' where id=9; -update noar ti set b0='UHXB' where id=9; -update noar tt set b1='V8STWNA1AEQVKVDB7ZL8' where id=9; -update noar ti set b1='V8STWNA1AEQVKVDB7ZL8' where id=9; -update noar tt set b2='8KZE20JFQ7F80V' where id=9; -update noar ti set b2='8KZE20JFQ7F80V' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -b0 blob null, -b1 mediumblob null, -b2 tinyblob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set b0='7CDYYCLYVV3P' where id=1; -update noar ti set b0='7CDYYCLYVV3P' where id=1; -update noar tt set b1='GBZFHZ9' where id=1; -update noar ti set b1='GBZFHZ9' where id=1; -update noar tt set b2='T4BUQYE' where id=1; -update noar ti set b2='T4BUQYE' where id=1; -update noar tt set b0='S2EZBRBRWZ021679I5BNYZCP1VIUTJ' where id=2; -update noar ti set b0='S2EZBRBRWZ021679I5BNYZCP1VIUTJ' where id=2; -update noar tt set b1='G7LQ' where id=2; -update noar ti set b1='G7LQ' where id=2; -update noar tt set b2='XMN08ZVS2TRN6HE4JX9L' where id=2; -update noar ti set b2='XMN08ZVS2TRN6HE4JX9L' where id=2; -update noar tt set b0='O0P' where id=3; -update noar ti set b0='O0P' where id=3; -update noar tt set b1='S4OTKHKYR5UWJYEI2ILP04YL3JLT' where id=3; -update noar ti set b1='S4OTKHKYR5UWJYEI2ILP04YL3JLT' where id=3; -update noar tt set b2='J2EZDFMNI04QC35' where id=3; -update noar ti set b2='J2EZDFMNI04QC35' where id=3; -update noar tt set b0='AA7754SASPCBQ3KQRP21M' where id=4; -update noar ti set b0='AA7754SASPCBQ3KQRP21M' where id=4; -update noar tt set b1='1F358JYFLDLOXI' where id=4; -update noar ti set b1='1F358JYFLDLOXI' where id=4; -update noar tt set b2='HR0AQW8FX1E' where id=4; -update noar ti set b2='HR0AQW8FX1E' where id=4; -update noar tt set b0='PVMT' where id=5; -update noar ti set b0='PVMT' where id=5; -update noar tt set b1='2XR3QS' where id=5; -update noar ti set b1='2XR3QS' where id=5; -update noar tt set b2='ITAGAD' where id=5; -update noar ti set b2='ITAGAD' where id=5; -update noar tt set b0='6L68VMJY3SYTRRDC4HYA' where id=6; -update noar ti set b0='6L68VMJY3SYTRRDC4HYA' where id=6; -update noar tt set b1='WJUHNDSXWWAG' where id=6; -update noar ti set b1='WJUHNDSXWWAG' where id=6; -update noar tt set b2='58RVBGH37AO139VKFAQSK' where id=6; -update noar ti set b2='58RVBGH37AO139VKFAQSK' where id=6; -update noar tt set b0='67UD1' where id=7; -update noar ti set b0='67UD1' where id=7; -update noar tt set b1='2I8W7ESDGFM4Y5E' where id=7; -update noar ti set b1='2I8W7ESDGFM4Y5E' where id=7; -update noar tt set b2='X9EX9UGJEVO1OFNBW2A2GC2HARGT1' where id=7; -update noar ti set b2='X9EX9UGJEVO1OFNBW2A2GC2HARGT1' where id=7; -update noar tt set b0='0VR9B5RD28PB4W4QMWVRRFPVCL' where id=8; -update noar ti set b0='0VR9B5RD28PB4W4QMWVRRFPVCL' where id=8; -update noar tt set b1='5C7BUUI807GM63M' where id=8; -update noar ti set b1='5C7BUUI807GM63M' where id=8; -update noar tt set b2='K' where id=8; -update noar ti set b2='K' where id=8; -update noar tt set b0='ER' where id=9; -update noar ti set b0='ER' where id=9; -update noar tt set b1='OQ3MYTZL4ESWL6Z8V' where id=9; -update noar ti set b1='OQ3MYTZL4ESWL6Z8V' where id=9; -update noar tt set b2='JIDOINACMUZU' where id=9; -update noar ti set b2='JIDOINACMUZU' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -b0 blob not null, -b1 mediumblob not null, -b2 tinyblob not null -) engine=tokudb; -insert into tt values (1,'','',''); -insert into tt values (2,'','',''); -insert into tt values (3,'','',''); -insert into tt values (4,'','',''); -insert into tt values (5,'','',''); -insert into tt values (6,'','',''); -insert into tt values (7,'','',''); -insert into tt values (8,'','',''); -insert into tt values (9,'','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set b0='C6' where id=1; -update noar ti set b0='C6' where id=1; -update noar tt set b1='SOU6MIDKZC2SRYNIPESS8XSDENUA4' where id=1; -update noar ti set b1='SOU6MIDKZC2SRYNIPESS8XSDENUA4' where id=1; -update noar tt set b2='ARIUNWKSHU12NXO3RMMAPORPTP6GW' where id=1; -update noar ti set b2='ARIUNWKSHU12NXO3RMMAPORPTP6GW' where id=1; -update noar tt set b0='QO39RTKRAI' where id=2; -update noar ti set b0='QO39RTKRAI' where id=2; -update noar tt set b1='Y3XLVR33AXH7TVD9U07C2UO' where id=2; -update noar ti set b1='Y3XLVR33AXH7TVD9U07C2UO' where id=2; -update noar tt set b2='RT9ZNAF' where id=2; -update noar ti set b2='RT9ZNAF' where id=2; -update noar tt set b0='L987SRYNJVZ2P3E3SIY5I3' where id=3; -update noar ti set b0='L987SRYNJVZ2P3E3SIY5I3' where id=3; -update noar tt set b1='GLGA44' where id=3; -update noar ti set b1='GLGA44' where id=3; -update noar tt set b2='RU6U5' where id=3; -update noar ti set b2='RU6U5' where id=3; -update noar tt set b0='LZKU6COFRGCPOZK1VMVMS0F7' where id=4; -update noar ti set b0='LZKU6COFRGCPOZK1VMVMS0F7' where id=4; -update noar tt set b1='PYDZ60VDWUDKA9FQWP06A0I' where id=4; -update noar ti set b1='PYDZ60VDWUDKA9FQWP06A0I' where id=4; -update noar tt set b2='6JH9Q' where id=4; -update noar ti set b2='6JH9Q' where id=4; -update noar tt set b0='L0RESOTBTQV' where id=5; -update noar ti set b0='L0RESOTBTQV' where id=5; -update noar tt set b1='D2' where id=5; -update noar ti set b1='D2' where id=5; -update noar tt set b2='UG2GQNWXSYM' where id=5; -update noar ti set b2='UG2GQNWXSYM' where id=5; -update noar tt set b0='T8J' where id=6; -update noar ti set b0='T8J' where id=6; -update noar tt set b1='A3V96R26JYETEC7BRJNUOU3CYHXU5OR' where id=6; -update noar ti set b1='A3V96R26JYETEC7BRJNUOU3CYHXU5OR' where id=6; -update noar tt set b2='LCALHV6OS4RAO2MQSAX93NP334Q' where id=6; -update noar ti set b2='LCALHV6OS4RAO2MQSAX93NP334Q' where id=6; -update noar tt set b0='1YYQCPJV7OUC' where id=7; -update noar ti set b0='1YYQCPJV7OUC' where id=7; -update noar tt set b1='J76VDPWGNVZ81' where id=7; -update noar ti set b1='J76VDPWGNVZ81' where id=7; -update noar tt set b2='BG56WWJXFXMIHG4VUFK10XP' where id=7; -update noar ti set b2='BG56WWJXFXMIHG4VUFK10XP' where id=7; -update noar tt set b0='6BBHJLWDH8QZZH' where id=8; -update noar ti set b0='6BBHJLWDH8QZZH' where id=8; -update noar tt set b1='71P23X3Q77XFK3S0QQEO9MZVC88' where id=8; -update noar ti set b1='71P23X3Q77XFK3S0QQEO9MZVC88' where id=8; -update noar tt set b2='LZXU4W69N2DR' where id=8; -update noar ti set b2='LZXU4W69N2DR' where id=8; -update noar tt set b0='HETGMBF3GSCNU2C4DASNP' where id=9; -update noar ti set b0='HETGMBF3GSCNU2C4DASNP' where id=9; -update noar tt set b1='22GV5RJOB5H7741' where id=9; -update noar ti set b1='22GV5RJOB5H7741' where id=9; -update noar tt set b2='IDDR5KA9OHDG70M5ZC' where id=9; -update noar ti set b2='IDDR5KA9OHDG70M5ZC' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -b0 blob null, -b1 mediumblob null, -b2 blob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set b0='QHY19YQGCFEAQNPCDES9WSB7W7D7' where id=1; -update noar ti set b0='QHY19YQGCFEAQNPCDES9WSB7W7D7' where id=1; -update noar tt set b1='AF' where id=1; -update noar ti set b1='AF' where id=1; -update noar tt set b2='Y7KFGW5T7SV' where id=1; -update noar ti set b2='Y7KFGW5T7SV' where id=1; -update noar tt set b0='VC0IUSILD4PN81LG48YUY' where id=2; -update noar ti set b0='VC0IUSILD4PN81LG48YUY' where id=2; -update noar tt set b1='HRQ45I18BYA7GQBSMS' where id=2; -update noar ti set b1='HRQ45I18BYA7GQBSMS' where id=2; -update noar tt set b2='TF2HGCXUXXICVYW7PJG50K7BN' where id=2; -update noar ti set b2='TF2HGCXUXXICVYW7PJG50K7BN' where id=2; -update noar tt set b0='DM28KDBKQ71' where id=3; -update noar ti set b0='DM28KDBKQ71' where id=3; -update noar tt set b1='ZOTKU2Z25LMH78I1EGKTSVE7U0' where id=3; -update noar ti set b1='ZOTKU2Z25LMH78I1EGKTSVE7U0' where id=3; -update noar tt set b2='GPP6VN80AFJMNJ168695' where id=3; -update noar ti set b2='GPP6VN80AFJMNJ168695' where id=3; -update noar tt set b0='LRNFCS3D8HJL28' where id=4; -update noar ti set b0='LRNFCS3D8HJL28' where id=4; -update noar tt set b1='8EWKJ5ORQNDO158EJN0' where id=4; -update noar ti set b1='8EWKJ5ORQNDO158EJN0' where id=4; -update noar tt set b2='16JQ36TDSTKNJ780L2N9U' where id=4; -update noar ti set b2='16JQ36TDSTKNJ780L2N9U' where id=4; -update noar tt set b0='56RW5' where id=5; -update noar ti set b0='56RW5' where id=5; -update noar tt set b1='R7TL1XXDTN005D74MY9L' where id=5; -update noar ti set b1='R7TL1XXDTN005D74MY9L' where id=5; -update noar tt set b2='R0C' where id=5; -update noar ti set b2='R0C' where id=5; -update noar tt set b0='8ISFYDRRMQW0NDBPEC9L' where id=6; -update noar ti set b0='8ISFYDRRMQW0NDBPEC9L' where id=6; -update noar tt set b1='9PZLQTMB3RQHAP8XV5NI61LMQ0OM5' where id=6; -update noar ti set b1='9PZLQTMB3RQHAP8XV5NI61LMQ0OM5' where id=6; -update noar tt set b2='JUN9TLDZDV2N0RW9' where id=6; -update noar ti set b2='JUN9TLDZDV2N0RW9' where id=6; -update noar tt set b0='QCQ1GDVCVPDJH87QV' where id=7; -update noar ti set b0='QCQ1GDVCVPDJH87QV' where id=7; -update noar tt set b1='LOVX89LS6NE' where id=7; -update noar ti set b1='LOVX89LS6NE' where id=7; -update noar tt set b2='P' where id=7; -update noar ti set b2='P' where id=7; -update noar tt set b0='H7J22C64A28FAJ0TPGZC4N09EW7HP6Y' where id=8; -update noar ti set b0='H7J22C64A28FAJ0TPGZC4N09EW7HP6Y' where id=8; -update noar tt set b1='Z8DU5NMHP8XOI' where id=8; -update noar ti set b1='Z8DU5NMHP8XOI' where id=8; -update noar tt set b2='J205717P18L' where id=8; -update noar ti set b2='J205717P18L' where id=8; -update noar tt set b0='BAEHP6VAXCU2PC79GRQJ4TFE4ZTTPHB' where id=9; -update noar ti set b0='BAEHP6VAXCU2PC79GRQJ4TFE4ZTTPHB' where id=9; -update noar tt set b1='D4IJGT76XBJ9WSIC' where id=9; -update noar ti set b1='D4IJGT76XBJ9WSIC' where id=9; -update noar tt set b2='ERZ182THFSO1X1C' where id=9; -update noar ti set b2='ERZ182THFSO1X1C' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -b0 blob not null, -b1 mediumblob not null, -b2 blob not null -) engine=tokudb; -insert into tt values (1,'','',''); -insert into tt values (2,'','',''); -insert into tt values (3,'','',''); -insert into tt values (4,'','',''); -insert into tt values (5,'','',''); -insert into tt values (6,'','',''); -insert into tt values (7,'','',''); -insert into tt values (8,'','',''); -insert into tt values (9,'','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set b0='17AJDBI9' where id=1; -update noar ti set b0='17AJDBI9' where id=1; -update noar tt set b1='A53RGXM55SQQ16PE98R4ILCHOJL9KK27' where id=1; -update noar ti set b1='A53RGXM55SQQ16PE98R4ILCHOJL9KK27' where id=1; -update noar tt set b2='UIVSAMSD5SONPH0OYYX' where id=1; -update noar ti set b2='UIVSAMSD5SONPH0OYYX' where id=1; -update noar tt set b0='9W1O62Y4CR2FV5K0XEYXB' where id=2; -update noar ti set b0='9W1O62Y4CR2FV5K0XEYXB' where id=2; -update noar tt set b1='HOTTZNLX4PU3T68ZL8IAIHZQ' where id=2; -update noar ti set b1='HOTTZNLX4PU3T68ZL8IAIHZQ' where id=2; -update noar tt set b2='5KZ' where id=2; -update noar ti set b2='5KZ' where id=2; -update noar tt set b0='8XWIIERQXFLK8AKC1R1' where id=3; -update noar ti set b0='8XWIIERQXFLK8AKC1R1' where id=3; -update noar tt set b1='ZMEA7VELZYAQFHH1' where id=3; -update noar ti set b1='ZMEA7VELZYAQFHH1' where id=3; -update noar tt set b2='25O1X' where id=3; -update noar ti set b2='25O1X' where id=3; -update noar tt set b0='2FGED7D2KGPDLN' where id=4; -update noar ti set b0='2FGED7D2KGPDLN' where id=4; -update noar tt set b1='LN' where id=4; -update noar ti set b1='LN' where id=4; -update noar tt set b2='REZOU5LK3VX1ALEWM' where id=4; -update noar ti set b2='REZOU5LK3VX1ALEWM' where id=4; -update noar tt set b0='YCG' where id=5; -update noar ti set b0='YCG' where id=5; -update noar tt set b1='BAYLK1X9WTBT4TVG21V' where id=5; -update noar ti set b1='BAYLK1X9WTBT4TVG21V' where id=5; -update noar tt set b2='KWXST8PVYOSNRI0' where id=5; -update noar ti set b2='KWXST8PVYOSNRI0' where id=5; -update noar tt set b0='0I45AIEGXIA5UXC2' where id=6; -update noar ti set b0='0I45AIEGXIA5UXC2' where id=6; -update noar tt set b1='D5V346' where id=6; -update noar ti set b1='D5V346' where id=6; -update noar tt set b2='8' where id=6; -update noar ti set b2='8' where id=6; -update noar tt set b0='O891VTQKFH' where id=7; -update noar ti set b0='O891VTQKFH' where id=7; -update noar tt set b1='DS1EWMZR9RL5DA47Y3XP6UWEUQ5RDP' where id=7; -update noar ti set b1='DS1EWMZR9RL5DA47Y3XP6UWEUQ5RDP' where id=7; -update noar tt set b2='4Z34HE15BBU6YR31SKKFO2NMUZU2' where id=7; -update noar ti set b2='4Z34HE15BBU6YR31SKKFO2NMUZU2' where id=7; -update noar tt set b0='DP5H34ZBD9RXLQ80J3I3XHZLXIXBM' where id=8; -update noar ti set b0='DP5H34ZBD9RXLQ80J3I3XHZLXIXBM' where id=8; -update noar tt set b1='483RCPP45FUATV7YG5L' where id=8; -update noar ti set b1='483RCPP45FUATV7YG5L' where id=8; -update noar tt set b2='VC4D88' where id=8; -update noar ti set b2='VC4D88' where id=8; -update noar tt set b0='P' where id=9; -update noar ti set b0='P' where id=9; -update noar tt set b1='QMTZBK6UYYYW8Z' where id=9; -update noar ti set b1='QMTZBK6UYYYW8Z' where id=9; -update noar tt set b2='NSU' where id=9; -update noar ti set b2='NSU' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -b0 blob null, -b1 mediumblob null, -b2 mediumblob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set b0='65YJEE13IWQUE' where id=1; -update noar ti set b0='65YJEE13IWQUE' where id=1; -update noar tt set b1='TCTC1A' where id=1; -update noar ti set b1='TCTC1A' where id=1; -update noar tt set b2='OZXJ' where id=1; -update noar ti set b2='OZXJ' where id=1; -update noar tt set b0='TMS' where id=2; -update noar ti set b0='TMS' where id=2; -update noar tt set b1='ZWERA63F20BCAV3' where id=2; -update noar ti set b1='ZWERA63F20BCAV3' where id=2; -update noar tt set b2='L05MPNDVRUXSHD4P1RH' where id=2; -update noar ti set b2='L05MPNDVRUXSHD4P1RH' where id=2; -update noar tt set b0='EDLHA' where id=3; -update noar ti set b0='EDLHA' where id=3; -update noar tt set b1='73FRWPOG3' where id=3; -update noar ti set b1='73FRWPOG3' where id=3; -update noar tt set b2='DKHW3HVOO7YI1SR9V4LRU14E09ECG' where id=3; -update noar ti set b2='DKHW3HVOO7YI1SR9V4LRU14E09ECG' where id=3; -update noar tt set b0='YXF0VZISJ08NI6SEFLYM1GXPO' where id=4; -update noar ti set b0='YXF0VZISJ08NI6SEFLYM1GXPO' where id=4; -update noar tt set b1='XI5GWIEERUB19Y98ZMC' where id=4; -update noar ti set b1='XI5GWIEERUB19Y98ZMC' where id=4; -update noar tt set b2='WAV8FKTKQEACKL5IKKQ0E' where id=4; -update noar ti set b2='WAV8FKTKQEACKL5IKKQ0E' where id=4; -update noar tt set b0='06KHAXKMQTNW8B58CH1TATN9HHRU' where id=5; -update noar ti set b0='06KHAXKMQTNW8B58CH1TATN9HHRU' where id=5; -update noar tt set b1='NSNJ1PC01PN4NH' where id=5; -update noar ti set b1='NSNJ1PC01PN4NH' where id=5; -update noar tt set b2='LIVS5P695JXJXC7TXX975PBAMW' where id=5; -update noar ti set b2='LIVS5P695JXJXC7TXX975PBAMW' where id=5; -update noar tt set b0='L1CGVE' where id=6; -update noar ti set b0='L1CGVE' where id=6; -update noar tt set b1='K62BND8ATNVYH82TJL7JP2BQFP' where id=6; -update noar ti set b1='K62BND8ATNVYH82TJL7JP2BQFP' where id=6; -update noar tt set b2='69W77LR0AIXSUV3J6LW7UZNVE30' where id=6; -update noar ti set b2='69W77LR0AIXSUV3J6LW7UZNVE30' where id=6; -update noar tt set b0='1B6BH39B' where id=7; -update noar ti set b0='1B6BH39B' where id=7; -update noar tt set b1='JSYHA6JRTBYIMRBDTU' where id=7; -update noar ti set b1='JSYHA6JRTBYIMRBDTU' where id=7; -update noar tt set b2='P7O2D' where id=7; -update noar ti set b2='P7O2D' where id=7; -update noar tt set b0='ZR2GCW88R0V' where id=8; -update noar ti set b0='ZR2GCW88R0V' where id=8; -update noar tt set b1='WIFGDOLS5XXEJBG' where id=8; -update noar ti set b1='WIFGDOLS5XXEJBG' where id=8; -update noar tt set b2='6XGD7H0202357X9R6VSUKSR' where id=8; -update noar ti set b2='6XGD7H0202357X9R6VSUKSR' where id=8; -update noar tt set b0='ZYXY9PE3HP4870TLBPKEB7JVNCF' where id=9; -update noar ti set b0='ZYXY9PE3HP4870TLBPKEB7JVNCF' where id=9; -update noar tt set b1='E5GNDGEL12YEX3F6MCR4G4' where id=9; -update noar ti set b1='E5GNDGEL12YEX3F6MCR4G4' where id=9; -update noar tt set b2='LI34MJ75ED0C3MPTR30BS9RQV02I' where id=9; -update noar ti set b2='LI34MJ75ED0C3MPTR30BS9RQV02I' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -b0 blob not null, -b1 mediumblob not null, -b2 mediumblob not null -) engine=tokudb; -insert into tt values (1,'','',''); -insert into tt values (2,'','',''); -insert into tt values (3,'','',''); -insert into tt values (4,'','',''); -insert into tt values (5,'','',''); -insert into tt values (6,'','',''); -insert into tt values (7,'','',''); -insert into tt values (8,'','',''); -insert into tt values (9,'','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set b0='TOBQKN42SUUGP63XRGHY1J5' where id=1; -update noar ti set b0='TOBQKN42SUUGP63XRGHY1J5' where id=1; -update noar tt set b1='G4FKD' where id=1; -update noar ti set b1='G4FKD' where id=1; -update noar tt set b2='G' where id=1; -update noar ti set b2='G' where id=1; -update noar tt set b0='900SYJ5N0CTFSSW0IIFEB6U4E8' where id=2; -update noar ti set b0='900SYJ5N0CTFSSW0IIFEB6U4E8' where id=2; -update noar tt set b1='PNTRT71405K6SHAEBVAX' where id=2; -update noar ti set b1='PNTRT71405K6SHAEBVAX' where id=2; -update noar tt set b2='0D7T1OCJDHV6VIV9DZ5' where id=2; -update noar ti set b2='0D7T1OCJDHV6VIV9DZ5' where id=2; -update noar tt set b0='YHPBGEIAYMWFE2RR3W3S4IB' where id=3; -update noar ti set b0='YHPBGEIAYMWFE2RR3W3S4IB' where id=3; -update noar tt set b1='VAN8EKUEXNKRE' where id=3; -update noar ti set b1='VAN8EKUEXNKRE' where id=3; -update noar tt set b2='XJCR2JHJW5' where id=3; -update noar ti set b2='XJCR2JHJW5' where id=3; -update noar tt set b0='OXG5W7JU' where id=4; -update noar ti set b0='OXG5W7JU' where id=4; -update noar tt set b1='2L0QK0ZGS2GNH9CJG6JDZ1' where id=4; -update noar ti set b1='2L0QK0ZGS2GNH9CJG6JDZ1' where id=4; -update noar tt set b2='L2B7CLE3Q955XDFE2UR' where id=4; -update noar ti set b2='L2B7CLE3Q955XDFE2UR' where id=4; -update noar tt set b0='556B7WWPS5ZMMLMMH9Y6R86TTVI' where id=5; -update noar ti set b0='556B7WWPS5ZMMLMMH9Y6R86TTVI' where id=5; -update noar tt set b1='A5H2HTJ7NXYC1TDTE8RTYK0RIPXE' where id=5; -update noar ti set b1='A5H2HTJ7NXYC1TDTE8RTYK0RIPXE' where id=5; -update noar tt set b2='BXGQDZ3NYE0ORJ9Q7L3GTQ' where id=5; -update noar ti set b2='BXGQDZ3NYE0ORJ9Q7L3GTQ' where id=5; -update noar tt set b0='J13DGJMKK' where id=6; -update noar ti set b0='J13DGJMKK' where id=6; -update noar tt set b1='OKXKB36SIBQ6DYTAWWNCQRN' where id=6; -update noar ti set b1='OKXKB36SIBQ6DYTAWWNCQRN' where id=6; -update noar tt set b2='X' where id=6; -update noar ti set b2='X' where id=6; -update noar tt set b0='MQF' where id=7; -update noar ti set b0='MQF' where id=7; -update noar tt set b1='DF4BYC54BPBT16UGQDLQTT' where id=7; -update noar ti set b1='DF4BYC54BPBT16UGQDLQTT' where id=7; -update noar tt set b2='B6QFZ6D8JNN5ZP66R8G0A0HT6' where id=7; -update noar ti set b2='B6QFZ6D8JNN5ZP66R8G0A0HT6' where id=7; -update noar tt set b0='1P4JOLC1RP' where id=8; -update noar ti set b0='1P4JOLC1RP' where id=8; -update noar tt set b1='TSZ73EN' where id=8; -update noar ti set b1='TSZ73EN' where id=8; -update noar tt set b2='6CGX2FBTI8Y0VY2EUU4' where id=8; -update noar ti set b2='6CGX2FBTI8Y0VY2EUU4' where id=8; -update noar tt set b0='IE9PE17JCCSZZNYWWN7OFYZ0NHGDHM' where id=9; -update noar ti set b0='IE9PE17JCCSZZNYWWN7OFYZ0NHGDHM' where id=9; -update noar tt set b1='8PT11CX4KBBLGB0' where id=9; -update noar ti set b1='8PT11CX4KBBLGB0' where id=9; -update noar tt set b2='W4' where id=9; -update noar ti set b2='W4' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -b0 blob null, -b1 mediumblob null, -b2 longblob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set b0='9RMD' where id=1; -update noar ti set b0='9RMD' where id=1; -update noar tt set b1='TYIPDO3YUIUCVODS4' where id=1; -update noar ti set b1='TYIPDO3YUIUCVODS4' where id=1; -update noar tt set b2='6IV' where id=1; -update noar ti set b2='6IV' where id=1; -update noar tt set b0='6QH0E2YXDJNOCEHTAR2NTKDK20P9VWBQ' where id=2; -update noar ti set b0='6QH0E2YXDJNOCEHTAR2NTKDK20P9VWBQ' where id=2; -update noar tt set b1='3CIQ61ZPJ2XEIJEIVAZM17QAN' where id=2; -update noar ti set b1='3CIQ61ZPJ2XEIJEIVAZM17QAN' where id=2; -update noar tt set b2='EIHD06DJEAK5K1' where id=2; -update noar ti set b2='EIHD06DJEAK5K1' where id=2; -update noar tt set b0='RKKOEX2AIKMYTOK2LX' where id=3; -update noar ti set b0='RKKOEX2AIKMYTOK2LX' where id=3; -update noar tt set b1='I' where id=3; -update noar ti set b1='I' where id=3; -update noar tt set b2='W2R8SPPSDARAW20IL2PDHYQ1N5LZWDDT' where id=3; -update noar ti set b2='W2R8SPPSDARAW20IL2PDHYQ1N5LZWDDT' where id=3; -update noar tt set b0='1BHBGALM' where id=4; -update noar ti set b0='1BHBGALM' where id=4; -update noar tt set b1='NC23ZCD8' where id=4; -update noar ti set b1='NC23ZCD8' where id=4; -update noar tt set b2='XZ' where id=4; -update noar ti set b2='XZ' where id=4; -update noar tt set b0='1PQ0BA7' where id=5; -update noar ti set b0='1PQ0BA7' where id=5; -update noar tt set b1='187K13162HY8VE7HX7U7TX1N4OGGTXY' where id=5; -update noar ti set b1='187K13162HY8VE7HX7U7TX1N4OGGTXY' where id=5; -update noar tt set b2='H8TN56V' where id=5; -update noar ti set b2='H8TN56V' where id=5; -update noar tt set b0='1' where id=6; -update noar ti set b0='1' where id=6; -update noar tt set b1='OBY25SU3KGENETDEX6GHZA2D1D1MZJNO' where id=6; -update noar ti set b1='OBY25SU3KGENETDEX6GHZA2D1D1MZJNO' where id=6; -update noar tt set b2='V1P3HAQRATR52GGRFHM6SG' where id=6; -update noar ti set b2='V1P3HAQRATR52GGRFHM6SG' where id=6; -update noar tt set b0='83KD5K1Y137GDQKR8AA0VOYRZ6R6LYKC' where id=7; -update noar ti set b0='83KD5K1Y137GDQKR8AA0VOYRZ6R6LYKC' where id=7; -update noar tt set b1='JTLVFSMCVBHO' where id=7; -update noar ti set b1='JTLVFSMCVBHO' where id=7; -update noar tt set b2='EZIZDAKTNMEDTR91HB5AJJBM' where id=7; -update noar ti set b2='EZIZDAKTNMEDTR91HB5AJJBM' where id=7; -update noar tt set b0='C8GCJOOI0T4N8O' where id=8; -update noar ti set b0='C8GCJOOI0T4N8O' where id=8; -update noar tt set b1='8Q0C3NVR8' where id=8; -update noar ti set b1='8Q0C3NVR8' where id=8; -update noar tt set b2='NID37C0FSL14ZSTGY' where id=8; -update noar ti set b2='NID37C0FSL14ZSTGY' where id=8; -update noar tt set b0='J00I6E86QOY27A9H7O82YQSRFXVY' where id=9; -update noar ti set b0='J00I6E86QOY27A9H7O82YQSRFXVY' where id=9; -update noar tt set b1='PGV9HBB4WLB' where id=9; -update noar ti set b1='PGV9HBB4WLB' where id=9; -update noar tt set b2='T' where id=9; -update noar ti set b2='T' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -b0 blob not null, -b1 mediumblob not null, -b2 longblob not null -) engine=tokudb; -insert into tt values (1,'','',''); -insert into tt values (2,'','',''); -insert into tt values (3,'','',''); -insert into tt values (4,'','',''); -insert into tt values (5,'','',''); -insert into tt values (6,'','',''); -insert into tt values (7,'','',''); -insert into tt values (8,'','',''); -insert into tt values (9,'','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set b0='JRQ8DE4AB8NKCJXNHTNFTW5V8OKOX5K' where id=1; -update noar ti set b0='JRQ8DE4AB8NKCJXNHTNFTW5V8OKOX5K' where id=1; -update noar tt set b1='AIF22OVYI11YHRPD2LXXA0V3' where id=1; -update noar ti set b1='AIF22OVYI11YHRPD2LXXA0V3' where id=1; -update noar tt set b2='7DTC5DJ5G7TIDO8' where id=1; -update noar ti set b2='7DTC5DJ5G7TIDO8' where id=1; -update noar tt set b0='8' where id=2; -update noar ti set b0='8' where id=2; -update noar tt set b1='JXQOS9' where id=2; -update noar ti set b1='JXQOS9' where id=2; -update noar tt set b2='12O2O1T3N0P8KRRGEJS7B' where id=2; -update noar ti set b2='12O2O1T3N0P8KRRGEJS7B' where id=2; -update noar tt set b0='AX1T88VFY7RI3QB' where id=3; -update noar ti set b0='AX1T88VFY7RI3QB' where id=3; -update noar tt set b1='N4CMM2U1WGGXI7EKQ' where id=3; -update noar ti set b1='N4CMM2U1WGGXI7EKQ' where id=3; -update noar tt set b2='197JHL39G90FSL8VYQMQS' where id=3; -update noar ti set b2='197JHL39G90FSL8VYQMQS' where id=3; -update noar tt set b0='TDCNRDGPMRN9RU' where id=4; -update noar ti set b0='TDCNRDGPMRN9RU' where id=4; -update noar tt set b1='ZKKNM' where id=4; -update noar ti set b1='ZKKNM' where id=4; -update noar tt set b2='ULG0UUUE5Z7GVJGAALB6TGTK4' where id=4; -update noar ti set b2='ULG0UUUE5Z7GVJGAALB6TGTK4' where id=4; -update noar tt set b0='DIPOUWJYOMHHDIE6' where id=5; -update noar ti set b0='DIPOUWJYOMHHDIE6' where id=5; -update noar tt set b1='1X1SFHWKJ3NMQX510XRJENT4S' where id=5; -update noar ti set b1='1X1SFHWKJ3NMQX510XRJENT4S' where id=5; -update noar tt set b2='QCBUTH8YUR263U05GNOB5Q' where id=5; -update noar ti set b2='QCBUTH8YUR263U05GNOB5Q' where id=5; -update noar tt set b0='W1ZQ' where id=6; -update noar ti set b0='W1ZQ' where id=6; -update noar tt set b1='7NV0B333' where id=6; -update noar ti set b1='7NV0B333' where id=6; -update noar tt set b2='IF6OH1I4CMIVJ5HQBCKEWA' where id=6; -update noar ti set b2='IF6OH1I4CMIVJ5HQBCKEWA' where id=6; -update noar tt set b0='A1XWKO7' where id=7; -update noar ti set b0='A1XWKO7' where id=7; -update noar tt set b1='26LZNFVSG8P1Y0ZD9PGRV' where id=7; -update noar ti set b1='26LZNFVSG8P1Y0ZD9PGRV' where id=7; -update noar tt set b2='5G6O2RKTG' where id=7; -update noar ti set b2='5G6O2RKTG' where id=7; -update noar tt set b0='FKQV6DP5VRD364PVGTQG48MTQ' where id=8; -update noar ti set b0='FKQV6DP5VRD364PVGTQG48MTQ' where id=8; -update noar tt set b1='14IBLVPMUDIL14GN1' where id=8; -update noar ti set b1='14IBLVPMUDIL14GN1' where id=8; -update noar tt set b2='SX4PM3NPHD638' where id=8; -update noar ti set b2='SX4PM3NPHD638' where id=8; -update noar tt set b0='HLV213O72HW7YRQSGJD5M' where id=9; -update noar ti set b0='HLV213O72HW7YRQSGJD5M' where id=9; -update noar tt set b1='IBQ8NKFYS' where id=9; -update noar ti set b1='IBQ8NKFYS' where id=9; -update noar tt set b2='CJ3AW0YAXK7GZ3NR4V0KNVZGO08HTG' where id=9; -update noar ti set b2='CJ3AW0YAXK7GZ3NR4V0KNVZGO08HTG' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -b0 blob null, -b1 mediumblob null, -b2 text null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set b0='XW0PG070O391K72FDZIS7' where id=1; -update noar ti set b0='XW0PG070O391K72FDZIS7' where id=1; -update noar tt set b1='S' where id=1; -update noar ti set b1='S' where id=1; -update noar tt set b2='KTI8Z92T69FLTCDFN2PARZB5GZY44' where id=1; -update noar ti set b2='KTI8Z92T69FLTCDFN2PARZB5GZY44' where id=1; -update noar tt set b0='ZHF4' where id=2; -update noar ti set b0='ZHF4' where id=2; -update noar tt set b1='UBNUJQRVDRETQRXWOAXTW59G02CB0' where id=2; -update noar ti set b1='UBNUJQRVDRETQRXWOAXTW59G02CB0' where id=2; -update noar tt set b2='805FBNL1W' where id=2; -update noar ti set b2='805FBNL1W' where id=2; -update noar tt set b0='TIZLMT55R8LBU4H6LYJNJC7JBAJZEPK9' where id=3; -update noar ti set b0='TIZLMT55R8LBU4H6LYJNJC7JBAJZEPK9' where id=3; -update noar tt set b1='5P1W37GHJCY' where id=3; -update noar ti set b1='5P1W37GHJCY' where id=3; -update noar tt set b2='UHQ' where id=3; -update noar ti set b2='UHQ' where id=3; -update noar tt set b0='2J1T0B6BXK0T13K' where id=4; -update noar ti set b0='2J1T0B6BXK0T13K' where id=4; -update noar tt set b1='KVFQGXVV2NMWTEW6PORP' where id=4; -update noar ti set b1='KVFQGXVV2NMWTEW6PORP' where id=4; -update noar tt set b2='GC0E5VURDYYC' where id=4; -update noar ti set b2='GC0E5VURDYYC' where id=4; -update noar tt set b0='Y' where id=5; -update noar ti set b0='Y' where id=5; -update noar tt set b1='09MCJ2IEPNZQ302ES9QD6O35EDKJAXU' where id=5; -update noar ti set b1='09MCJ2IEPNZQ302ES9QD6O35EDKJAXU' where id=5; -update noar tt set b2='16YGB78H3H3FXKO8JXLH36QOY8O9LMFT' where id=5; -update noar ti set b2='16YGB78H3H3FXKO8JXLH36QOY8O9LMFT' where id=5; -update noar tt set b0='E9H7' where id=6; -update noar ti set b0='E9H7' where id=6; -update noar tt set b1='782SIPI2PQUIHBKX014RRI' where id=6; -update noar ti set b1='782SIPI2PQUIHBKX014RRI' where id=6; -update noar tt set b2='PKYYVDSWF00V5VDJTEVMFB5SOFPP9' where id=6; -update noar ti set b2='PKYYVDSWF00V5VDJTEVMFB5SOFPP9' where id=6; -update noar tt set b0='LRQSJNM8IJ' where id=7; -update noar ti set b0='LRQSJNM8IJ' where id=7; -update noar tt set b1='7YM0CR7635FYELLOA6N4N155OM7ODA2' where id=7; -update noar ti set b1='7YM0CR7635FYELLOA6N4N155OM7ODA2' where id=7; -update noar tt set b2='52SET7KYZ' where id=7; -update noar ti set b2='52SET7KYZ' where id=7; -update noar tt set b0='QA0WV6' where id=8; -update noar ti set b0='QA0WV6' where id=8; -update noar tt set b1='NOELJ7UF1S1V8F0JX21CN5XVI4UJ490Q' where id=8; -update noar ti set b1='NOELJ7UF1S1V8F0JX21CN5XVI4UJ490Q' where id=8; -update noar tt set b2='1TZ110V6J7BL' where id=8; -update noar ti set b2='1TZ110V6J7BL' where id=8; -update noar tt set b0='864XZ0BNOSHR' where id=9; -update noar ti set b0='864XZ0BNOSHR' where id=9; -update noar tt set b1='ZTYAMK4TO8OMA0KWLV8' where id=9; -update noar ti set b1='ZTYAMK4TO8OMA0KWLV8' where id=9; -update noar tt set b2='C6IFCKRZH7Q9RVXU6C' where id=9; -update noar ti set b2='C6IFCKRZH7Q9RVXU6C' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -b0 blob not null, -b1 mediumblob not null, -b2 text not null -) engine=tokudb; -insert into tt values (1,'','',''); -insert into tt values (2,'','',''); -insert into tt values (3,'','',''); -insert into tt values (4,'','',''); -insert into tt values (5,'','',''); -insert into tt values (6,'','',''); -insert into tt values (7,'','',''); -insert into tt values (8,'','',''); -insert into tt values (9,'','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set b0='8A3E7GNRJNWH1LICL603SIMW' where id=1; -update noar ti set b0='8A3E7GNRJNWH1LICL603SIMW' where id=1; -update noar tt set b1='L5ZUIANIN7YPH08SF6FACDJ' where id=1; -update noar ti set b1='L5ZUIANIN7YPH08SF6FACDJ' where id=1; -update noar tt set b2='5TT18' where id=1; -update noar ti set b2='5TT18' where id=1; -update noar tt set b0='COZY' where id=2; -update noar ti set b0='COZY' where id=2; -update noar tt set b1='6J29CSX73NBUF4R28PY4CVHAVI26U' where id=2; -update noar ti set b1='6J29CSX73NBUF4R28PY4CVHAVI26U' where id=2; -update noar tt set b2='4NYPYLX6Z100VQFH9Y2E' where id=2; -update noar ti set b2='4NYPYLX6Z100VQFH9Y2E' where id=2; -update noar tt set b0='59CCV5112PZRDB' where id=3; -update noar ti set b0='59CCV5112PZRDB' where id=3; -update noar tt set b1='9QAT315TO4C8N5HNJ0H36FZOJ39JISR' where id=3; -update noar ti set b1='9QAT315TO4C8N5HNJ0H36FZOJ39JISR' where id=3; -update noar tt set b2='E' where id=3; -update noar ti set b2='E' where id=3; -update noar tt set b0='1Z5AGHX' where id=4; -update noar ti set b0='1Z5AGHX' where id=4; -update noar tt set b1='I5MCPCL0HDHW' where id=4; -update noar ti set b1='I5MCPCL0HDHW' where id=4; -update noar tt set b2='BRJWNH91X5TD4Q4CBUIV5HG' where id=4; -update noar ti set b2='BRJWNH91X5TD4Q4CBUIV5HG' where id=4; -update noar tt set b0='ZJ2LCP' where id=5; -update noar ti set b0='ZJ2LCP' where id=5; -update noar tt set b1='9PFOHP58' where id=5; -update noar ti set b1='9PFOHP58' where id=5; -update noar tt set b2='E5D5IM5RZ6' where id=5; -update noar ti set b2='E5D5IM5RZ6' where id=5; -update noar tt set b0='0JI1' where id=6; -update noar ti set b0='0JI1' where id=6; -update noar tt set b1='Q81T' where id=6; -update noar ti set b1='Q81T' where id=6; -update noar tt set b2='HI5SXOMFVM7XSS2VFNAS661' where id=6; -update noar ti set b2='HI5SXOMFVM7XSS2VFNAS661' where id=6; -update noar tt set b0='WKROC99QPP' where id=7; -update noar ti set b0='WKROC99QPP' where id=7; -update noar tt set b1='MJLUQLTA65R9KKD40XB49OOOIR8624' where id=7; -update noar ti set b1='MJLUQLTA65R9KKD40XB49OOOIR8624' where id=7; -update noar tt set b2='84UCRON6EQMN0PCX1I6PYIWK96' where id=7; -update noar ti set b2='84UCRON6EQMN0PCX1I6PYIWK96' where id=7; -update noar tt set b0='3ZX7YSDOSBLK2O3163I' where id=8; -update noar ti set b0='3ZX7YSDOSBLK2O3163I' where id=8; -update noar tt set b1='6ODEIKVWGIBWHCH0ER20A7L' where id=8; -update noar ti set b1='6ODEIKVWGIBWHCH0ER20A7L' where id=8; -update noar tt set b2='6ORJ6ML11Y' where id=8; -update noar ti set b2='6ORJ6ML11Y' where id=8; -update noar tt set b0='DD5PRF62PI' where id=9; -update noar ti set b0='DD5PRF62PI' where id=9; -update noar tt set b1='KM7GBCPJ46P00L' where id=9; -update noar ti set b1='KM7GBCPJ46P00L' where id=9; -update noar tt set b2='V00KLD1QT7R3N81W4YKNV2KAO1ZBZ' where id=9; -update noar ti set b2='V00KLD1QT7R3N81W4YKNV2KAO1ZBZ' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -b0 blob null, -b1 longblob null, -b2 tinyblob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set b0='S9D8CGW60YGMTQMWKRDREED6A5QO' where id=1; -update noar ti set b0='S9D8CGW60YGMTQMWKRDREED6A5QO' where id=1; -update noar tt set b1='NVCBR4MERA08P7131Q3MRU3OCV14S38P' where id=1; -update noar ti set b1='NVCBR4MERA08P7131Q3MRU3OCV14S38P' where id=1; -update noar tt set b2='KLIM06OJPKVKFTUOD1VHGBKL3GR8VRGX' where id=1; -update noar ti set b2='KLIM06OJPKVKFTUOD1VHGBKL3GR8VRGX' where id=1; -update noar tt set b0='SWKR3YCK3UU8WMEU4UC3DBO32ZY0C' where id=2; -update noar ti set b0='SWKR3YCK3UU8WMEU4UC3DBO32ZY0C' where id=2; -update noar tt set b1='SYL2HJYD06L70ERBKTIKFFAI6' where id=2; -update noar ti set b1='SYL2HJYD06L70ERBKTIKFFAI6' where id=2; -update noar tt set b2='CPIVVNQX4TZR' where id=2; -update noar ti set b2='CPIVVNQX4TZR' where id=2; -update noar tt set b0='O6LZEOFE332J' where id=3; -update noar ti set b0='O6LZEOFE332J' where id=3; -update noar tt set b1='6K1TG4' where id=3; -update noar ti set b1='6K1TG4' where id=3; -update noar tt set b2='Y8WRN3DZ7SG60NHPYCQMRZ42S9FV' where id=3; -update noar ti set b2='Y8WRN3DZ7SG60NHPYCQMRZ42S9FV' where id=3; -update noar tt set b0='BPFSXIEV9EE2AXHQY48P' where id=4; -update noar ti set b0='BPFSXIEV9EE2AXHQY48P' where id=4; -update noar tt set b1='4QK0J7786RI3U8GL8' where id=4; -update noar ti set b1='4QK0J7786RI3U8GL8' where id=4; -update noar tt set b2='7BZQ3Y5PQM5545IZ' where id=4; -update noar ti set b2='7BZQ3Y5PQM5545IZ' where id=4; -update noar tt set b0='F9X5Y0PDAZPVSALW7ZG6ORKE' where id=5; -update noar ti set b0='F9X5Y0PDAZPVSALW7ZG6ORKE' where id=5; -update noar tt set b1='RNVNCLSRAZMG4B1ERM1KEI3' where id=5; -update noar ti set b1='RNVNCLSRAZMG4B1ERM1KEI3' where id=5; -update noar tt set b2='DVMQ8L' where id=5; -update noar ti set b2='DVMQ8L' where id=5; -update noar tt set b0='TKLUQHR44TEAJARKF' where id=6; -update noar ti set b0='TKLUQHR44TEAJARKF' where id=6; -update noar tt set b1='AN6T3S7PWCZYMO7J' where id=6; -update noar ti set b1='AN6T3S7PWCZYMO7J' where id=6; -update noar tt set b2='VG7J5A5JM6GSPYP29LLIB4' where id=6; -update noar ti set b2='VG7J5A5JM6GSPYP29LLIB4' where id=6; -update noar tt set b0='8LCRSAMFP8CG984YF7Z' where id=7; -update noar ti set b0='8LCRSAMFP8CG984YF7Z' where id=7; -update noar tt set b1='3YEF6XOJ80V074X' where id=7; -update noar ti set b1='3YEF6XOJ80V074X' where id=7; -update noar tt set b2='4X293VJ' where id=7; -update noar ti set b2='4X293VJ' where id=7; -update noar tt set b0='8V7KDWK7' where id=8; -update noar ti set b0='8V7KDWK7' where id=8; -update noar tt set b1='UGVZ2Y6A' where id=8; -update noar ti set b1='UGVZ2Y6A' where id=8; -update noar tt set b2='TWL2XU3NQ34Y9O' where id=8; -update noar ti set b2='TWL2XU3NQ34Y9O' where id=8; -update noar tt set b0='J8LIS3KDS' where id=9; -update noar ti set b0='J8LIS3KDS' where id=9; -update noar tt set b1='8D2ED4075IL' where id=9; -update noar ti set b1='8D2ED4075IL' where id=9; -update noar tt set b2='33P6MMTEXXA0PQ778QFWBTJ' where id=9; -update noar ti set b2='33P6MMTEXXA0PQ778QFWBTJ' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -b0 blob not null, -b1 longblob not null, -b2 tinyblob not null -) engine=tokudb; -insert into tt values (1,'','',''); -insert into tt values (2,'','',''); -insert into tt values (3,'','',''); -insert into tt values (4,'','',''); -insert into tt values (5,'','',''); -insert into tt values (6,'','',''); -insert into tt values (7,'','',''); -insert into tt values (8,'','',''); -insert into tt values (9,'','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set b0='7IZSEFD' where id=1; -update noar ti set b0='7IZSEFD' where id=1; -update noar tt set b1='4GJL9N7FHSIDG61M0XNTZ' where id=1; -update noar ti set b1='4GJL9N7FHSIDG61M0XNTZ' where id=1; -update noar tt set b2='YS9AII1CJDMF' where id=1; -update noar ti set b2='YS9AII1CJDMF' where id=1; -update noar tt set b0='H434P0HTV6OT92R09TQUS' where id=2; -update noar ti set b0='H434P0HTV6OT92R09TQUS' where id=2; -update noar tt set b1='HWW7IR4R5PFSPX' where id=2; -update noar ti set b1='HWW7IR4R5PFSPX' where id=2; -update noar tt set b2='8V51UP8H379U89BKY4BW50T' where id=2; -update noar ti set b2='8V51UP8H379U89BKY4BW50T' where id=2; -update noar tt set b0='3MG9NIUOU90SA8JCYL0V' where id=3; -update noar ti set b0='3MG9NIUOU90SA8JCYL0V' where id=3; -update noar tt set b1='0V1R4520PXY9TMM2CR7SB' where id=3; -update noar ti set b1='0V1R4520PXY9TMM2CR7SB' where id=3; -update noar tt set b2='3VTGYLUQVS41PFOYC4K5' where id=3; -update noar ti set b2='3VTGYLUQVS41PFOYC4K5' where id=3; -update noar tt set b0='UCLRQEJMTV6QFYXTHZ06L6GF' where id=4; -update noar ti set b0='UCLRQEJMTV6QFYXTHZ06L6GF' where id=4; -update noar tt set b1='ICAQ96TZUI32UHDO6NAKL' where id=4; -update noar ti set b1='ICAQ96TZUI32UHDO6NAKL' where id=4; -update noar tt set b2='HN55NKJC45LKROJ1DSTU84C' where id=4; -update noar ti set b2='HN55NKJC45LKROJ1DSTU84C' where id=4; -update noar tt set b0='N8JOW3KH' where id=5; -update noar ti set b0='N8JOW3KH' where id=5; -update noar tt set b1='T7ERDYJXVZ6JW0Z3M' where id=5; -update noar ti set b1='T7ERDYJXVZ6JW0Z3M' where id=5; -update noar tt set b2='EVR9BR8BKLEX50EMD674W1' where id=5; -update noar ti set b2='EVR9BR8BKLEX50EMD674W1' where id=5; -update noar tt set b0='SK0794NV4R7T' where id=6; -update noar ti set b0='SK0794NV4R7T' where id=6; -update noar tt set b1='1V4XK5PFGI1' where id=6; -update noar ti set b1='1V4XK5PFGI1' where id=6; -update noar tt set b2='WF7977XX5Q65S' where id=6; -update noar ti set b2='WF7977XX5Q65S' where id=6; -update noar tt set b0='0LLPSQ3VOIY' where id=7; -update noar ti set b0='0LLPSQ3VOIY' where id=7; -update noar tt set b1='LRDKSH1VM3GUY2LVWUPC4FK64FOA2' where id=7; -update noar ti set b1='LRDKSH1VM3GUY2LVWUPC4FK64FOA2' where id=7; -update noar tt set b2='P4T488LX0D34' where id=7; -update noar ti set b2='P4T488LX0D34' where id=7; -update noar tt set b0='EBQCITCU3W' where id=8; -update noar ti set b0='EBQCITCU3W' where id=8; -update noar tt set b1='A' where id=8; -update noar ti set b1='A' where id=8; -update noar tt set b2='B7' where id=8; -update noar ti set b2='B7' where id=8; -update noar tt set b0='K8KPAL103WSS9PIAL9M70K3W639MPFUY' where id=9; -update noar ti set b0='K8KPAL103WSS9PIAL9M70K3W639MPFUY' where id=9; -update noar tt set b1='CZYNCMLPJBRTATMTQCVQ3J7L94J3R' where id=9; -update noar ti set b1='CZYNCMLPJBRTATMTQCVQ3J7L94J3R' where id=9; -update noar tt set b2='H1KGAR37TJ6GVGWFC6DFYHC6PXE' where id=9; -update noar ti set b2='H1KGAR37TJ6GVGWFC6DFYHC6PXE' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -b0 blob null, -b1 longblob null, -b2 blob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set b0='S6BGCNQML5VSMTO' where id=1; -update noar ti set b0='S6BGCNQML5VSMTO' where id=1; -update noar tt set b1='VD1EVKRC2TFQ1CC6FKCZRYI8' where id=1; -update noar ti set b1='VD1EVKRC2TFQ1CC6FKCZRYI8' where id=1; -update noar tt set b2='X67SI5CDCJVVYCV' where id=1; -update noar ti set b2='X67SI5CDCJVVYCV' where id=1; -update noar tt set b0='68IYT2VTPGU53XUWLB4LQAK' where id=2; -update noar ti set b0='68IYT2VTPGU53XUWLB4LQAK' where id=2; -update noar tt set b1='XOZO8CN6N3' where id=2; -update noar ti set b1='XOZO8CN6N3' where id=2; -update noar tt set b2='PACFQEVFS4B2CZFNFOMYN5Z2' where id=2; -update noar ti set b2='PACFQEVFS4B2CZFNFOMYN5Z2' where id=2; -update noar tt set b0='1X96A1W1Y9907GZTISROBGP' where id=3; -update noar ti set b0='1X96A1W1Y9907GZTISROBGP' where id=3; -update noar tt set b1='4VM' where id=3; -update noar ti set b1='4VM' where id=3; -update noar tt set b2='52Y8Q' where id=3; -update noar ti set b2='52Y8Q' where id=3; -update noar tt set b0='0WOWESWQE6LGRUID7M7C93EVWLXUMYEN' where id=4; -update noar ti set b0='0WOWESWQE6LGRUID7M7C93EVWLXUMYEN' where id=4; -update noar tt set b1='J9B4WWK0LRQ9ET8MMAA' where id=4; -update noar ti set b1='J9B4WWK0LRQ9ET8MMAA' where id=4; -update noar tt set b2='ULGR71U7E70H6DZQ' where id=4; -update noar ti set b2='ULGR71U7E70H6DZQ' where id=4; -update noar tt set b0='4QYK2JM7JX7' where id=5; -update noar ti set b0='4QYK2JM7JX7' where id=5; -update noar tt set b1='C22ZY4W56PJHRKR' where id=5; -update noar ti set b1='C22ZY4W56PJHRKR' where id=5; -update noar tt set b2='C8RW9DEW2Q0DH2IRJJ' where id=5; -update noar ti set b2='C8RW9DEW2Q0DH2IRJJ' where id=5; -update noar tt set b0='82KG51AFJ7RP4ZEEJR7B6IK1M18OG0R1' where id=6; -update noar ti set b0='82KG51AFJ7RP4ZEEJR7B6IK1M18OG0R1' where id=6; -update noar tt set b1='XQP12ZWUTZ13WP8ZT5L' where id=6; -update noar ti set b1='XQP12ZWUTZ13WP8ZT5L' where id=6; -update noar tt set b2='O6KDED44V4SDF25HGK6H9N9B1IYOPYLS' where id=6; -update noar ti set b2='O6KDED44V4SDF25HGK6H9N9B1IYOPYLS' where id=6; -update noar tt set b0='RR5YOKA5L07KO78' where id=7; -update noar ti set b0='RR5YOKA5L07KO78' where id=7; -update noar tt set b1='DWS2FO1AF0YWUPUULKXWH' where id=7; -update noar ti set b1='DWS2FO1AF0YWUPUULKXWH' where id=7; -update noar tt set b2='HBHBYW0M' where id=7; -update noar ti set b2='HBHBYW0M' where id=7; -update noar tt set b0='KT17UQ5YLCA829XDOP4VDICS' where id=8; -update noar ti set b0='KT17UQ5YLCA829XDOP4VDICS' where id=8; -update noar tt set b1='HF6X3YCI9LCT5GPP8KTMYH63WI' where id=8; -update noar ti set b1='HF6X3YCI9LCT5GPP8KTMYH63WI' where id=8; -update noar tt set b2='WV3HEI8VOTJ9BYWON1LDPT4E' where id=8; -update noar ti set b2='WV3HEI8VOTJ9BYWON1LDPT4E' where id=8; -update noar tt set b0='2EOX3GK1TWM74' where id=9; -update noar ti set b0='2EOX3GK1TWM74' where id=9; -update noar tt set b1='T' where id=9; -update noar ti set b1='T' where id=9; -update noar tt set b2='NIYO3ETGFOO3B' where id=9; -update noar ti set b2='NIYO3ETGFOO3B' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -b0 blob not null, -b1 longblob not null, -b2 blob not null -) engine=tokudb; -insert into tt values (1,'','',''); -insert into tt values (2,'','',''); -insert into tt values (3,'','',''); -insert into tt values (4,'','',''); -insert into tt values (5,'','',''); -insert into tt values (6,'','',''); -insert into tt values (7,'','',''); -insert into tt values (8,'','',''); -insert into tt values (9,'','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set b0='0O5V16R4A5DALWQDBH5RQKD8X08GI4' where id=1; -update noar ti set b0='0O5V16R4A5DALWQDBH5RQKD8X08GI4' where id=1; -update noar tt set b1='D6L6LAGOD4311SH9' where id=1; -update noar ti set b1='D6L6LAGOD4311SH9' where id=1; -update noar tt set b2='JP58UA92HK6VLBUXHOVG62K4S4' where id=1; -update noar ti set b2='JP58UA92HK6VLBUXHOVG62K4S4' where id=1; -update noar tt set b0='XH' where id=2; -update noar ti set b0='XH' where id=2; -update noar tt set b1='VF6FH7OU' where id=2; -update noar ti set b1='VF6FH7OU' where id=2; -update noar tt set b2='4B34ABOY1LEM2Q7VQYA1AG50S1' where id=2; -update noar ti set b2='4B34ABOY1LEM2Q7VQYA1AG50S1' where id=2; -update noar tt set b0='QQ' where id=3; -update noar ti set b0='QQ' where id=3; -update noar tt set b1='618U8RXFJ01SV' where id=3; -update noar ti set b1='618U8RXFJ01SV' where id=3; -update noar tt set b2='0CBTO' where id=3; -update noar ti set b2='0CBTO' where id=3; -update noar tt set b0='59MT12LIVYGU705D8' where id=4; -update noar ti set b0='59MT12LIVYGU705D8' where id=4; -update noar tt set b1='WGBTAYK4GEJBPZC41Z3C85' where id=4; -update noar ti set b1='WGBTAYK4GEJBPZC41Z3C85' where id=4; -update noar tt set b2='S6' where id=4; -update noar ti set b2='S6' where id=4; -update noar tt set b0='KR0DUUTWSZCL2OJT0XIYDYT' where id=5; -update noar ti set b0='KR0DUUTWSZCL2OJT0XIYDYT' where id=5; -update noar tt set b1='5' where id=5; -update noar ti set b1='5' where id=5; -update noar tt set b2='YG9' where id=5; -update noar ti set b2='YG9' where id=5; -update noar tt set b0='REFVO3MHK1GJZQQAAKE' where id=6; -update noar ti set b0='REFVO3MHK1GJZQQAAKE' where id=6; -update noar tt set b1='F0DCOBO00MT8HZ' where id=6; -update noar ti set b1='F0DCOBO00MT8HZ' where id=6; -update noar tt set b2='E7AG8DSHYH8' where id=6; -update noar ti set b2='E7AG8DSHYH8' where id=6; -update noar tt set b0='BI0CX22WA4D' where id=7; -update noar ti set b0='BI0CX22WA4D' where id=7; -update noar tt set b1='R96V1S' where id=7; -update noar ti set b1='R96V1S' where id=7; -update noar tt set b2='JBLZKZXNWX21TJLET97XQ0K' where id=7; -update noar ti set b2='JBLZKZXNWX21TJLET97XQ0K' where id=7; -update noar tt set b0='K2KV2' where id=8; -update noar ti set b0='K2KV2' where id=8; -update noar tt set b1='7HTCOWTR9L3HQUY4OU5SA7' where id=8; -update noar ti set b1='7HTCOWTR9L3HQUY4OU5SA7' where id=8; -update noar tt set b2='2PZW8Y' where id=8; -update noar ti set b2='2PZW8Y' where id=8; -update noar tt set b0='JEO' where id=9; -update noar ti set b0='JEO' where id=9; -update noar tt set b1='9BQQX' where id=9; -update noar ti set b1='9BQQX' where id=9; -update noar tt set b2='KCRXVZNI72E022VFZME7ESUL' where id=9; -update noar ti set b2='KCRXVZNI72E022VFZME7ESUL' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -b0 blob null, -b1 longblob null, -b2 mediumblob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set b0='Z9DRIG2' where id=1; -update noar ti set b0='Z9DRIG2' where id=1; -update noar tt set b1='59RW2H' where id=1; -update noar ti set b1='59RW2H' where id=1; -update noar tt set b2='ZAFZPRWT' where id=1; -update noar ti set b2='ZAFZPRWT' where id=1; -update noar tt set b0='DRHEAF' where id=2; -update noar ti set b0='DRHEAF' where id=2; -update noar tt set b1='8IJPRLI86NV7MSSTP3S4' where id=2; -update noar ti set b1='8IJPRLI86NV7MSSTP3S4' where id=2; -update noar tt set b2='XISFCCV64GTIND6K3FGFEF1M4M' where id=2; -update noar ti set b2='XISFCCV64GTIND6K3FGFEF1M4M' where id=2; -update noar tt set b0='B6LZN46M309RX510TN0DZQSC49C83RT' where id=3; -update noar ti set b0='B6LZN46M309RX510TN0DZQSC49C83RT' where id=3; -update noar tt set b1='6W3357AR8SM9276W5Q03' where id=3; -update noar ti set b1='6W3357AR8SM9276W5Q03' where id=3; -update noar tt set b2='O1Y1YU1Q17QHYYHIA8L5O' where id=3; -update noar ti set b2='O1Y1YU1Q17QHYYHIA8L5O' where id=3; -update noar tt set b0='1OK0VTISQKQX' where id=4; -update noar ti set b0='1OK0VTISQKQX' where id=4; -update noar tt set b1='N8QVL' where id=4; -update noar ti set b1='N8QVL' where id=4; -update noar tt set b2='GAKWM18ZYD92YY0SFPISSW' where id=4; -update noar ti set b2='GAKWM18ZYD92YY0SFPISSW' where id=4; -update noar tt set b0='2JB1OQJLFEOE80KAEX5TMXED' where id=5; -update noar ti set b0='2JB1OQJLFEOE80KAEX5TMXED' where id=5; -update noar tt set b1='I3EAL2Y40NRP6C5EE9Y7VHKCX0H3O9A' where id=5; -update noar ti set b1='I3EAL2Y40NRP6C5EE9Y7VHKCX0H3O9A' where id=5; -update noar tt set b2='H2SDNMO7VWVZECEO57M41U0748SV1S' where id=5; -update noar ti set b2='H2SDNMO7VWVZECEO57M41U0748SV1S' where id=5; -update noar tt set b0='RK3WZ8QHQ3H73IUKKMQ' where id=6; -update noar ti set b0='RK3WZ8QHQ3H73IUKKMQ' where id=6; -update noar tt set b1='NDYVM09MKNQ1AFLZ6JFXSN69R9HV' where id=6; -update noar ti set b1='NDYVM09MKNQ1AFLZ6JFXSN69R9HV' where id=6; -update noar tt set b2='8UCX79SYBO0X8' where id=6; -update noar ti set b2='8UCX79SYBO0X8' where id=6; -update noar tt set b0='Z6G' where id=7; -update noar ti set b0='Z6G' where id=7; -update noar tt set b1='T' where id=7; -update noar ti set b1='T' where id=7; -update noar tt set b2='ILF218J65OX74' where id=7; -update noar ti set b2='ILF218J65OX74' where id=7; -update noar tt set b0='FTYIY590VAJY0616MBDOC7Q' where id=8; -update noar ti set b0='FTYIY590VAJY0616MBDOC7Q' where id=8; -update noar tt set b1='II7YNFI2SXTLYADNGM9W91' where id=8; -update noar ti set b1='II7YNFI2SXTLYADNGM9W91' where id=8; -update noar tt set b2='WYSX1ZJZ69CLFZGE2OO1K9BNZ' where id=8; -update noar ti set b2='WYSX1ZJZ69CLFZGE2OO1K9BNZ' where id=8; -update noar tt set b0='70VICVAIWLJOZRY5XFCLRYG' where id=9; -update noar ti set b0='70VICVAIWLJOZRY5XFCLRYG' where id=9; -update noar tt set b1='HA41' where id=9; -update noar ti set b1='HA41' where id=9; -update noar tt set b2='LJN5OANDXOAWWYE8P5L4T6DLXV' where id=9; -update noar ti set b2='LJN5OANDXOAWWYE8P5L4T6DLXV' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -b0 blob not null, -b1 longblob not null, -b2 mediumblob not null -) engine=tokudb; -insert into tt values (1,'','',''); -insert into tt values (2,'','',''); -insert into tt values (3,'','',''); -insert into tt values (4,'','',''); -insert into tt values (5,'','',''); -insert into tt values (6,'','',''); -insert into tt values (7,'','',''); -insert into tt values (8,'','',''); -insert into tt values (9,'','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set b0='IGFPUXUTPHXORPXDS9PZDB' where id=1; -update noar ti set b0='IGFPUXUTPHXORPXDS9PZDB' where id=1; -update noar tt set b1='3UUEPV5RDZB90S' where id=1; -update noar ti set b1='3UUEPV5RDZB90S' where id=1; -update noar tt set b2='7' where id=1; -update noar ti set b2='7' where id=1; -update noar tt set b0='EQK99PG8CYOJQ5RIRRX7TQCS' where id=2; -update noar ti set b0='EQK99PG8CYOJQ5RIRRX7TQCS' where id=2; -update noar tt set b1='MD' where id=2; -update noar ti set b1='MD' where id=2; -update noar tt set b2='EJ51C9I' where id=2; -update noar ti set b2='EJ51C9I' where id=2; -update noar tt set b0='CDD' where id=3; -update noar ti set b0='CDD' where id=3; -update noar tt set b1='VGPPO49NP8E4MUV0W3' where id=3; -update noar ti set b1='VGPPO49NP8E4MUV0W3' where id=3; -update noar tt set b2='9BQBGZ5E6DGQ5AZJYAMKN3GX' where id=3; -update noar ti set b2='9BQBGZ5E6DGQ5AZJYAMKN3GX' where id=3; -update noar tt set b0='MC5C6EKTD4HB7ZUF3' where id=4; -update noar ti set b0='MC5C6EKTD4HB7ZUF3' where id=4; -update noar tt set b1='BT2D0BK11557' where id=4; -update noar ti set b1='BT2D0BK11557' where id=4; -update noar tt set b2='A3BH399UBJ3JPMJ' where id=4; -update noar ti set b2='A3BH399UBJ3JPMJ' where id=4; -update noar tt set b0='48820CW4C7P7LWG' where id=5; -update noar ti set b0='48820CW4C7P7LWG' where id=5; -update noar tt set b1='LKNWTC1XWMX15NI7C7AQR9T' where id=5; -update noar ti set b1='LKNWTC1XWMX15NI7C7AQR9T' where id=5; -update noar tt set b2='TXO4L8OSFV3YPT' where id=5; -update noar ti set b2='TXO4L8OSFV3YPT' where id=5; -update noar tt set b0='I303F0E8UJRK6H8YHH70EPEIK' where id=6; -update noar ti set b0='I303F0E8UJRK6H8YHH70EPEIK' where id=6; -update noar tt set b1='2M4D2Q6XEA2OL4Z9KO4VB' where id=6; -update noar ti set b1='2M4D2Q6XEA2OL4Z9KO4VB' where id=6; -update noar tt set b2='ZMOUB7ETM94F719ULVOB1HG4AL3PP' where id=6; -update noar ti set b2='ZMOUB7ETM94F719ULVOB1HG4AL3PP' where id=6; -update noar tt set b0='GSL6NOHLUIPLJF6DM81UZQUN73XZP' where id=7; -update noar ti set b0='GSL6NOHLUIPLJF6DM81UZQUN73XZP' where id=7; -update noar tt set b1='ZHITRPU6JETS90OH' where id=7; -update noar ti set b1='ZHITRPU6JETS90OH' where id=7; -update noar tt set b2='0GVVNAK1K7DW7CBYZ9Z77H1' where id=7; -update noar ti set b2='0GVVNAK1K7DW7CBYZ9Z77H1' where id=7; -update noar tt set b0='PYXSEUBVM1ELYZO634W4AEDBXKW9WR' where id=8; -update noar ti set b0='PYXSEUBVM1ELYZO634W4AEDBXKW9WR' where id=8; -update noar tt set b1='GW465TWLHZB52' where id=8; -update noar ti set b1='GW465TWLHZB52' where id=8; -update noar tt set b2='QX41Q57G8ZNW8M9JV3WGR4SC6K' where id=8; -update noar ti set b2='QX41Q57G8ZNW8M9JV3WGR4SC6K' where id=8; -update noar tt set b0='ZCARQTAIX15MNWZRD9V7BYXEBS' where id=9; -update noar ti set b0='ZCARQTAIX15MNWZRD9V7BYXEBS' where id=9; -update noar tt set b1='00OFNNG1B0' where id=9; -update noar ti set b1='00OFNNG1B0' where id=9; -update noar tt set b2='X' where id=9; -update noar ti set b2='X' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -b0 blob null, -b1 longblob null, -b2 longblob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set b0='RV4HLLCLNSEZBKOOROTQSDA5' where id=1; -update noar ti set b0='RV4HLLCLNSEZBKOOROTQSDA5' where id=1; -update noar tt set b1='OSJ5BTRV3D' where id=1; -update noar ti set b1='OSJ5BTRV3D' where id=1; -update noar tt set b2='ZXFRGMI' where id=1; -update noar ti set b2='ZXFRGMI' where id=1; -update noar tt set b0='OKD966601VZDTT4QJREZ2Z0EW4TF' where id=2; -update noar ti set b0='OKD966601VZDTT4QJREZ2Z0EW4TF' where id=2; -update noar tt set b1='Z1' where id=2; -update noar ti set b1='Z1' where id=2; -update noar tt set b2='DBW0' where id=2; -update noar ti set b2='DBW0' where id=2; -update noar tt set b0='LTUVFUI6K8MEJGR39OB' where id=3; -update noar ti set b0='LTUVFUI6K8MEJGR39OB' where id=3; -update noar tt set b1='4E6OI5IG99V8H68NV13' where id=3; -update noar ti set b1='4E6OI5IG99V8H68NV13' where id=3; -update noar tt set b2='RT6LPPT36V9JDZMFJGXIAYW34H0EE' where id=3; -update noar ti set b2='RT6LPPT36V9JDZMFJGXIAYW34H0EE' where id=3; -update noar tt set b0='74JUQ5ARCZ' where id=4; -update noar ti set b0='74JUQ5ARCZ' where id=4; -update noar tt set b1='Z7BW2' where id=4; -update noar ti set b1='Z7BW2' where id=4; -update noar tt set b2='EMZH0U' where id=4; -update noar ti set b2='EMZH0U' where id=4; -update noar tt set b0='60V7CY06Z' where id=5; -update noar ti set b0='60V7CY06Z' where id=5; -update noar tt set b1='TAEP7THUV2OCI533QOA4NU3AQSAX2' where id=5; -update noar ti set b1='TAEP7THUV2OCI533QOA4NU3AQSAX2' where id=5; -update noar tt set b2='74' where id=5; -update noar ti set b2='74' where id=5; -update noar tt set b0='QPV50ZSO6P5VDHMCK7EB2E1' where id=6; -update noar ti set b0='QPV50ZSO6P5VDHMCK7EB2E1' where id=6; -update noar tt set b1='B3O9FWA9XMVTMAB3COZBB4ZDQTMRLVR5' where id=6; -update noar ti set b1='B3O9FWA9XMVTMAB3COZBB4ZDQTMRLVR5' where id=6; -update noar tt set b2='48DES2TG9T31KZA615CWY802H35' where id=6; -update noar ti set b2='48DES2TG9T31KZA615CWY802H35' where id=6; -update noar tt set b0='ZWZD85HMA4WLB' where id=7; -update noar ti set b0='ZWZD85HMA4WLB' where id=7; -update noar tt set b1='HFVM9E6AKPKJR80QEK1VNN6LA' where id=7; -update noar ti set b1='HFVM9E6AKPKJR80QEK1VNN6LA' where id=7; -update noar tt set b2='MUSG' where id=7; -update noar ti set b2='MUSG' where id=7; -update noar tt set b0='H1PHGFV745FIURX2L' where id=8; -update noar ti set b0='H1PHGFV745FIURX2L' where id=8; -update noar tt set b1='KXNAZMARY6PEWFPD1TU' where id=8; -update noar ti set b1='KXNAZMARY6PEWFPD1TU' where id=8; -update noar tt set b2='IR274' where id=8; -update noar ti set b2='IR274' where id=8; -update noar tt set b0='6B1HS' where id=9; -update noar ti set b0='6B1HS' where id=9; -update noar tt set b1='UWSHKJCUSXC4TUNN73MW1LXBKK1VXE' where id=9; -update noar ti set b1='UWSHKJCUSXC4TUNN73MW1LXBKK1VXE' where id=9; -update noar tt set b2='ENGXWAL5H3' where id=9; -update noar ti set b2='ENGXWAL5H3' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -b0 blob not null, -b1 longblob not null, -b2 longblob not null -) engine=tokudb; -insert into tt values (1,'','',''); -insert into tt values (2,'','',''); -insert into tt values (3,'','',''); -insert into tt values (4,'','',''); -insert into tt values (5,'','',''); -insert into tt values (6,'','',''); -insert into tt values (7,'','',''); -insert into tt values (8,'','',''); -insert into tt values (9,'','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set b0='I65YP8Q6RMOPP1' where id=1; -update noar ti set b0='I65YP8Q6RMOPP1' where id=1; -update noar tt set b1='A6S5VGN45FOYI2WH08ZIUUNS' where id=1; -update noar ti set b1='A6S5VGN45FOYI2WH08ZIUUNS' where id=1; -update noar tt set b2='D' where id=1; -update noar ti set b2='D' where id=1; -update noar tt set b0='3VVR' where id=2; -update noar ti set b0='3VVR' where id=2; -update noar tt set b1='YJ166H' where id=2; -update noar ti set b1='YJ166H' where id=2; -update noar tt set b2='YQL8AUSTOTDZFC5X1L75488DWHTYD' where id=2; -update noar ti set b2='YQL8AUSTOTDZFC5X1L75488DWHTYD' where id=2; -update noar tt set b0='9WXXI59' where id=3; -update noar ti set b0='9WXXI59' where id=3; -update noar tt set b1='43UCYDP6' where id=3; -update noar ti set b1='43UCYDP6' where id=3; -update noar tt set b2='44DJIDPX6X' where id=3; -update noar ti set b2='44DJIDPX6X' where id=3; -update noar tt set b0='X9EM2Q7DN6XA9EYTMKON9LES7' where id=4; -update noar ti set b0='X9EM2Q7DN6XA9EYTMKON9LES7' where id=4; -update noar tt set b1='YB8D3BOZ80HWSU1MESE05NTECJJAN6' where id=4; -update noar ti set b1='YB8D3BOZ80HWSU1MESE05NTECJJAN6' where id=4; -update noar tt set b2='FXL1UX9BB5LWE48O9F956ZRBE1S1SVA' where id=4; -update noar ti set b2='FXL1UX9BB5LWE48O9F956ZRBE1S1SVA' where id=4; -update noar tt set b0='10KPQ' where id=5; -update noar ti set b0='10KPQ' where id=5; -update noar tt set b1='GY0POJ8NM3J061AFL' where id=5; -update noar ti set b1='GY0POJ8NM3J061AFL' where id=5; -update noar tt set b2='104SXWP9IT9NNPA518U' where id=5; -update noar ti set b2='104SXWP9IT9NNPA518U' where id=5; -update noar tt set b0='LRKHUZ1X' where id=6; -update noar ti set b0='LRKHUZ1X' where id=6; -update noar tt set b1='GB' where id=6; -update noar ti set b1='GB' where id=6; -update noar tt set b2='6OLMUD' where id=6; -update noar ti set b2='6OLMUD' where id=6; -update noar tt set b0='121LKKWOJF0GK5J5MFZ7TG6U' where id=7; -update noar ti set b0='121LKKWOJF0GK5J5MFZ7TG6U' where id=7; -update noar tt set b1='2HH' where id=7; -update noar ti set b1='2HH' where id=7; -update noar tt set b2='QLBB99UECVAL0AGMINQK8YFH8' where id=7; -update noar ti set b2='QLBB99UECVAL0AGMINQK8YFH8' where id=7; -update noar tt set b0='1JLLP564VGPC1NSC4MO' where id=8; -update noar ti set b0='1JLLP564VGPC1NSC4MO' where id=8; -update noar tt set b1='V0RBCUR9R7ERSVEX' where id=8; -update noar ti set b1='V0RBCUR9R7ERSVEX' where id=8; -update noar tt set b2='UYYO7EG7XEF4PA6' where id=8; -update noar ti set b2='UYYO7EG7XEF4PA6' where id=8; -update noar tt set b0='Z1KLG' where id=9; -update noar ti set b0='Z1KLG' where id=9; -update noar tt set b1='G31ZEHD8RYC' where id=9; -update noar ti set b1='G31ZEHD8RYC' where id=9; -update noar tt set b2='0EOG74086EN49' where id=9; -update noar ti set b2='0EOG74086EN49' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -b0 blob null, -b1 longblob null, -b2 text null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set b0='ND3WYA' where id=1; -update noar ti set b0='ND3WYA' where id=1; -update noar tt set b1='O0WNNIJXSCQL0KNGXT4AHUCS9NNLWJ' where id=1; -update noar ti set b1='O0WNNIJXSCQL0KNGXT4AHUCS9NNLWJ' where id=1; -update noar tt set b2='LN6H5B6' where id=1; -update noar ti set b2='LN6H5B6' where id=1; -update noar tt set b0='G5HP1ZNNSX' where id=2; -update noar ti set b0='G5HP1ZNNSX' where id=2; -update noar tt set b1='C567L66GSSVNQL1D8UHVOZKLGWA9C' where id=2; -update noar ti set b1='C567L66GSSVNQL1D8UHVOZKLGWA9C' where id=2; -update noar tt set b2='85MHG8F3FUPGJKHEC' where id=2; -update noar ti set b2='85MHG8F3FUPGJKHEC' where id=2; -update noar tt set b0='T2ZH0DDO35XS3P1K' where id=3; -update noar ti set b0='T2ZH0DDO35XS3P1K' where id=3; -update noar tt set b1='RD5Y7CJ2TK6NRSPGNFTDJ3UX3J' where id=3; -update noar ti set b1='RD5Y7CJ2TK6NRSPGNFTDJ3UX3J' where id=3; -update noar tt set b2='78HFOQGARPMT790A' where id=3; -update noar ti set b2='78HFOQGARPMT790A' where id=3; -update noar tt set b0='A1008GD7MFMG0ZMP8CFZ0910FOXYZNA2' where id=4; -update noar ti set b0='A1008GD7MFMG0ZMP8CFZ0910FOXYZNA2' where id=4; -update noar tt set b1='Z8PY55DXURH15XSJBZ5O2SBT8K9B' where id=4; -update noar ti set b1='Z8PY55DXURH15XSJBZ5O2SBT8K9B' where id=4; -update noar tt set b2='R9ZKAJ69OL0KUFMXARKW4NWHWK' where id=4; -update noar ti set b2='R9ZKAJ69OL0KUFMXARKW4NWHWK' where id=4; -update noar tt set b0='DZK70UFCTD' where id=5; -update noar ti set b0='DZK70UFCTD' where id=5; -update noar tt set b1='L48I5RC2EA2TVF' where id=5; -update noar ti set b1='L48I5RC2EA2TVF' where id=5; -update noar tt set b2='1IOM92TI8BDNQEUMWWS' where id=5; -update noar ti set b2='1IOM92TI8BDNQEUMWWS' where id=5; -update noar tt set b0='PDO' where id=6; -update noar ti set b0='PDO' where id=6; -update noar tt set b1='WWH9Y6YZVMT56' where id=6; -update noar ti set b1='WWH9Y6YZVMT56' where id=6; -update noar tt set b2='2Z20PMRNSKD0BV38EITE6OOVD1Z8CQIN' where id=6; -update noar ti set b2='2Z20PMRNSKD0BV38EITE6OOVD1Z8CQIN' where id=6; -update noar tt set b0='CV4UQ523CL9UZUSJX88OXXU9J' where id=7; -update noar ti set b0='CV4UQ523CL9UZUSJX88OXXU9J' where id=7; -update noar tt set b1='RTNVM4KHK5OAMMRMOBSN' where id=7; -update noar ti set b1='RTNVM4KHK5OAMMRMOBSN' where id=7; -update noar tt set b2='K1KDUQ1TJP04Z2G48' where id=7; -update noar ti set b2='K1KDUQ1TJP04Z2G48' where id=7; -update noar tt set b0='GS4QQFS5F5PHTZEDCY95OIWVRCFCFA' where id=8; -update noar ti set b0='GS4QQFS5F5PHTZEDCY95OIWVRCFCFA' where id=8; -update noar tt set b1='NNM0V2MZUM76Y1JLHB2UQLXIPU0016' where id=8; -update noar ti set b1='NNM0V2MZUM76Y1JLHB2UQLXIPU0016' where id=8; -update noar tt set b2='O14734HMEVI' where id=8; -update noar ti set b2='O14734HMEVI' where id=8; -update noar tt set b0='JK0GUW' where id=9; -update noar ti set b0='JK0GUW' where id=9; -update noar tt set b1='D9UEO2TCB1NTVJUQNSMSO7O' where id=9; -update noar ti set b1='D9UEO2TCB1NTVJUQNSMSO7O' where id=9; -update noar tt set b2='5GWVO7U0DHDK69Y2H053EE' where id=9; -update noar ti set b2='5GWVO7U0DHDK69Y2H053EE' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -b0 blob not null, -b1 longblob not null, -b2 text not null -) engine=tokudb; -insert into tt values (1,'','',''); -insert into tt values (2,'','',''); -insert into tt values (3,'','',''); -insert into tt values (4,'','',''); -insert into tt values (5,'','',''); -insert into tt values (6,'','',''); -insert into tt values (7,'','',''); -insert into tt values (8,'','',''); -insert into tt values (9,'','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set b0='A6JGJ5JYDYG9M1D5ZY1G5X8LBK' where id=1; -update noar ti set b0='A6JGJ5JYDYG9M1D5ZY1G5X8LBK' where id=1; -update noar tt set b1='3CNMX8YH9BGGVEHS4CE' where id=1; -update noar ti set b1='3CNMX8YH9BGGVEHS4CE' where id=1; -update noar tt set b2='ZUA' where id=1; -update noar ti set b2='ZUA' where id=1; -update noar tt set b0='JJVUTKSYA4' where id=2; -update noar ti set b0='JJVUTKSYA4' where id=2; -update noar tt set b1='EDPEUCVHKFNP4IL2UE3' where id=2; -update noar ti set b1='EDPEUCVHKFNP4IL2UE3' where id=2; -update noar tt set b2='O2KVM93RDC4WGYV7LZ05G8B3N4E7X' where id=2; -update noar ti set b2='O2KVM93RDC4WGYV7LZ05G8B3N4E7X' where id=2; -update noar tt set b0='0T4JUDAIU' where id=3; -update noar ti set b0='0T4JUDAIU' where id=3; -update noar tt set b1='B0X21O' where id=3; -update noar ti set b1='B0X21O' where id=3; -update noar tt set b2='UXE1HG7IFDKNVRKB' where id=3; -update noar ti set b2='UXE1HG7IFDKNVRKB' where id=3; -update noar tt set b0='0QSQOR5Y2T93MAPCVPS2ZV' where id=4; -update noar ti set b0='0QSQOR5Y2T93MAPCVPS2ZV' where id=4; -update noar tt set b1='5U334HV76C0F3YGNF8GKLCF4BZ08QR' where id=4; -update noar ti set b1='5U334HV76C0F3YGNF8GKLCF4BZ08QR' where id=4; -update noar tt set b2='M113B8LRIMZOZX0G' where id=4; -update noar ti set b2='M113B8LRIMZOZX0G' where id=4; -update noar tt set b0='V4ZINFU59S' where id=5; -update noar ti set b0='V4ZINFU59S' where id=5; -update noar tt set b1='G6LJC9P5LLWJV9ANSPSQPPPAWYHGON' where id=5; -update noar ti set b1='G6LJC9P5LLWJV9ANSPSQPPPAWYHGON' where id=5; -update noar tt set b2='KZFNNN85SCLW4LFM458TII7NNK' where id=5; -update noar ti set b2='KZFNNN85SCLW4LFM458TII7NNK' where id=5; -update noar tt set b0='R0' where id=6; -update noar ti set b0='R0' where id=6; -update noar tt set b1='BA4KGZFQEBLX2XRD1QOR' where id=6; -update noar ti set b1='BA4KGZFQEBLX2XRD1QOR' where id=6; -update noar tt set b2='X2XC3F94D' where id=6; -update noar ti set b2='X2XC3F94D' where id=6; -update noar tt set b0='2YRLUJK6SLF3XC7M' where id=7; -update noar ti set b0='2YRLUJK6SLF3XC7M' where id=7; -update noar tt set b1='J2NT4C7PLLBGEDU3GOMEU6JP' where id=7; -update noar ti set b1='J2NT4C7PLLBGEDU3GOMEU6JP' where id=7; -update noar tt set b2='6JO97FFNJHTQMCC2AM01G3F4D0A9XXUW' where id=7; -update noar ti set b2='6JO97FFNJHTQMCC2AM01G3F4D0A9XXUW' where id=7; -update noar tt set b0='4QLZZPL3DNR22B3LX3XC85K5' where id=8; -update noar ti set b0='4QLZZPL3DNR22B3LX3XC85K5' where id=8; -update noar tt set b1='8C1MDIF7N0' where id=8; -update noar ti set b1='8C1MDIF7N0' where id=8; -update noar tt set b2='6YXGDYIXWAJP2LI2MI6Q0' where id=8; -update noar ti set b2='6YXGDYIXWAJP2LI2MI6Q0' where id=8; -update noar tt set b0='5WH4145AGVDBEG3BHV4JYMMF' where id=9; -update noar ti set b0='5WH4145AGVDBEG3BHV4JYMMF' where id=9; -update noar tt set b1='QNR4O6DPU' where id=9; -update noar ti set b1='QNR4O6DPU' where id=9; -update noar tt set b2='HFLXU8R1G' where id=9; -update noar ti set b2='HFLXU8R1G' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -b0 blob null, -b1 text null, -b2 tinyblob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set b0='B1EUCR' where id=1; -update noar ti set b0='B1EUCR' where id=1; -update noar tt set b1='VKU0K8YVVJ1M1DI79BEYHB0ZW' where id=1; -update noar ti set b1='VKU0K8YVVJ1M1DI79BEYHB0ZW' where id=1; -update noar tt set b2='YH88B551C' where id=1; -update noar ti set b2='YH88B551C' where id=1; -update noar tt set b0='9X67O7K6W2EYW4' where id=2; -update noar ti set b0='9X67O7K6W2EYW4' where id=2; -update noar tt set b1='9GYG9F44' where id=2; -update noar ti set b1='9GYG9F44' where id=2; -update noar tt set b2='JDOAQ6KUC5CMFR03CM' where id=2; -update noar ti set b2='JDOAQ6KUC5CMFR03CM' where id=2; -update noar tt set b0='9CPHQ7B8Z3' where id=3; -update noar ti set b0='9CPHQ7B8Z3' where id=3; -update noar tt set b1='2TVWNIGSVHZLJ' where id=3; -update noar ti set b1='2TVWNIGSVHZLJ' where id=3; -update noar tt set b2='VQR6C5W17KDJ2L32' where id=3; -update noar ti set b2='VQR6C5W17KDJ2L32' where id=3; -update noar tt set b0='TV2' where id=4; -update noar ti set b0='TV2' where id=4; -update noar tt set b1='JN415DV9HPR8PLHX61HJ7GG092' where id=4; -update noar ti set b1='JN415DV9HPR8PLHX61HJ7GG092' where id=4; -update noar tt set b2='1UO' where id=4; -update noar ti set b2='1UO' where id=4; -update noar tt set b0='XTPCW9609D79KN7TU' where id=5; -update noar ti set b0='XTPCW9609D79KN7TU' where id=5; -update noar tt set b1='JKMU2DGEMAB' where id=5; -update noar ti set b1='JKMU2DGEMAB' where id=5; -update noar tt set b2='S3O716HW0MFK6CSLDIIP3YYCXXA' where id=5; -update noar ti set b2='S3O716HW0MFK6CSLDIIP3YYCXXA' where id=5; -update noar tt set b0='VP3F77ZOTLX0' where id=6; -update noar ti set b0='VP3F77ZOTLX0' where id=6; -update noar tt set b1='WFFD8W3B4C9SYSH2VDJFT64V' where id=6; -update noar ti set b1='WFFD8W3B4C9SYSH2VDJFT64V' where id=6; -update noar tt set b2='D3VR83F2X8X5PPVOKT' where id=6; -update noar ti set b2='D3VR83F2X8X5PPVOKT' where id=6; -update noar tt set b0='YRIZ03REJNJHGSZS7NBVCVXKW' where id=7; -update noar ti set b0='YRIZ03REJNJHGSZS7NBVCVXKW' where id=7; -update noar tt set b1='U2P9IPQ85ADK' where id=7; -update noar ti set b1='U2P9IPQ85ADK' where id=7; -update noar tt set b2='F74G2GNZ' where id=7; -update noar ti set b2='F74G2GNZ' where id=7; -update noar tt set b0='0120V4BYBR' where id=8; -update noar ti set b0='0120V4BYBR' where id=8; -update noar tt set b1='7496AO8CA9ZAJIX8CJEYAGGIXGST4' where id=8; -update noar ti set b1='7496AO8CA9ZAJIX8CJEYAGGIXGST4' where id=8; -update noar tt set b2='FZZ8MZCTVE8AQN3162GABOPRJ9C6T' where id=8; -update noar ti set b2='FZZ8MZCTVE8AQN3162GABOPRJ9C6T' where id=8; -update noar tt set b0='IR4G6VQBK8DLV6' where id=9; -update noar ti set b0='IR4G6VQBK8DLV6' where id=9; -update noar tt set b1='157A149HUF2MJVOBRTSB3A' where id=9; -update noar ti set b1='157A149HUF2MJVOBRTSB3A' where id=9; -update noar tt set b2='ESD9EIVNV2G3MK9Z86SC13ZSMICFXUA' where id=9; -update noar ti set b2='ESD9EIVNV2G3MK9Z86SC13ZSMICFXUA' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -b0 blob not null, -b1 text not null, -b2 tinyblob not null -) engine=tokudb; -insert into tt values (1,'','',''); -insert into tt values (2,'','',''); -insert into tt values (3,'','',''); -insert into tt values (4,'','',''); -insert into tt values (5,'','',''); -insert into tt values (6,'','',''); -insert into tt values (7,'','',''); -insert into tt values (8,'','',''); -insert into tt values (9,'','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set b0='T4RZHTYOV92D077ZVD43JFF' where id=1; -update noar ti set b0='T4RZHTYOV92D077ZVD43JFF' where id=1; -update noar tt set b1='TQFD' where id=1; -update noar ti set b1='TQFD' where id=1; -update noar tt set b2='A' where id=1; -update noar ti set b2='A' where id=1; -update noar tt set b0='XHRCV97MTPE21A16TGZJ' where id=2; -update noar ti set b0='XHRCV97MTPE21A16TGZJ' where id=2; -update noar tt set b1='5BPP1' where id=2; -update noar ti set b1='5BPP1' where id=2; -update noar tt set b2='YZE70KE20TX4OZGW' where id=2; -update noar ti set b2='YZE70KE20TX4OZGW' where id=2; -update noar tt set b0='S9Z7D1A7OSZI58RJ21WYHDBMBAWK' where id=3; -update noar ti set b0='S9Z7D1A7OSZI58RJ21WYHDBMBAWK' where id=3; -update noar tt set b1='UGKFG7Y5YMQF0D1NQGCVJNEUS' where id=3; -update noar ti set b1='UGKFG7Y5YMQF0D1NQGCVJNEUS' where id=3; -update noar tt set b2='Y' where id=3; -update noar ti set b2='Y' where id=3; -update noar tt set b0='DRJ6HDNKW' where id=4; -update noar ti set b0='DRJ6HDNKW' where id=4; -update noar tt set b1='ILT47' where id=4; -update noar ti set b1='ILT47' where id=4; -update noar tt set b2='QQMJQGI7EV2C51MJ75VIF10N6' where id=4; -update noar ti set b2='QQMJQGI7EV2C51MJ75VIF10N6' where id=4; -update noar tt set b0='FAZB86899K4' where id=5; -update noar ti set b0='FAZB86899K4' where id=5; -update noar tt set b1='GCHLZYZPY8QJ60W' where id=5; -update noar ti set b1='GCHLZYZPY8QJ60W' where id=5; -update noar tt set b2='98O8PX' where id=5; -update noar ti set b2='98O8PX' where id=5; -update noar tt set b0='S' where id=6; -update noar ti set b0='S' where id=6; -update noar tt set b1='RSRBLPT172OA5SXM' where id=6; -update noar ti set b1='RSRBLPT172OA5SXM' where id=6; -update noar tt set b2='ZTCQAVC1TYKN938RLJCGNJ' where id=6; -update noar ti set b2='ZTCQAVC1TYKN938RLJCGNJ' where id=6; -update noar tt set b0='YFT9WPF81' where id=7; -update noar ti set b0='YFT9WPF81' where id=7; -update noar tt set b1='EF4E9DUGS3UWKLIM150G' where id=7; -update noar ti set b1='EF4E9DUGS3UWKLIM150G' where id=7; -update noar tt set b2='RW3EYE3UGWS' where id=7; -update noar ti set b2='RW3EYE3UGWS' where id=7; -update noar tt set b0='P' where id=8; -update noar ti set b0='P' where id=8; -update noar tt set b1='CG9P7SYZCK0MMHYZRO' where id=8; -update noar ti set b1='CG9P7SYZCK0MMHYZRO' where id=8; -update noar tt set b2='2FBGWQ8S6BRIK23BF3AZ4ODUDQBX' where id=8; -update noar ti set b2='2FBGWQ8S6BRIK23BF3AZ4ODUDQBX' where id=8; -update noar tt set b0='5HDPAV2625DUZ3IWP17M4XOUC' where id=9; -update noar ti set b0='5HDPAV2625DUZ3IWP17M4XOUC' where id=9; -update noar tt set b1='D5' where id=9; -update noar ti set b1='D5' where id=9; -update noar tt set b2='Z62O27HTVQ8EP7I' where id=9; -update noar ti set b2='Z62O27HTVQ8EP7I' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -b0 blob null, -b1 text null, -b2 blob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set b0='HA1HIAMV2HH' where id=1; -update noar ti set b0='HA1HIAMV2HH' where id=1; -update noar tt set b1='45EX2GGUMF6882GXEWHEAH4T7K8T6LH' where id=1; -update noar ti set b1='45EX2GGUMF6882GXEWHEAH4T7K8T6LH' where id=1; -update noar tt set b2='KEIQI2K' where id=1; -update noar ti set b2='KEIQI2K' where id=1; -update noar tt set b0='ARTUUP4SGQK77PH9I' where id=2; -update noar ti set b0='ARTUUP4SGQK77PH9I' where id=2; -update noar tt set b1='JFGHH15' where id=2; -update noar ti set b1='JFGHH15' where id=2; -update noar tt set b2='4W7BS4VZC02701' where id=2; -update noar ti set b2='4W7BS4VZC02701' where id=2; -update noar tt set b0='QDUL0ORSDP' where id=3; -update noar ti set b0='QDUL0ORSDP' where id=3; -update noar tt set b1='7FOK3YA' where id=3; -update noar ti set b1='7FOK3YA' where id=3; -update noar tt set b2='7J1B4IB5WCXU5S3JL7CUNQGF1' where id=3; -update noar ti set b2='7J1B4IB5WCXU5S3JL7CUNQGF1' where id=3; -update noar tt set b0='HX7UFX4SMJZ1QVHYQBY' where id=4; -update noar ti set b0='HX7UFX4SMJZ1QVHYQBY' where id=4; -update noar tt set b1='O9M' where id=4; -update noar ti set b1='O9M' where id=4; -update noar tt set b2='8ULWYUKC8H6Q9CIY8PLNKG9Z988AO' where id=4; -update noar ti set b2='8ULWYUKC8H6Q9CIY8PLNKG9Z988AO' where id=4; -update noar tt set b0='WEGH8P35N6G6K' where id=5; -update noar ti set b0='WEGH8P35N6G6K' where id=5; -update noar tt set b1='N' where id=5; -update noar ti set b1='N' where id=5; -update noar tt set b2='LYMBO5R67XEDQ641CUCXJ' where id=5; -update noar ti set b2='LYMBO5R67XEDQ641CUCXJ' where id=5; -update noar tt set b0='112IOFAN' where id=6; -update noar ti set b0='112IOFAN' where id=6; -update noar tt set b1='MSGCHV0NCZ7ZP74KIIARPW0P96FJGUO' where id=6; -update noar ti set b1='MSGCHV0NCZ7ZP74KIIARPW0P96FJGUO' where id=6; -update noar tt set b2='56F' where id=6; -update noar ti set b2='56F' where id=6; -update noar tt set b0='WSC6E7Q2Y3ZTVF6QVOQ' where id=7; -update noar ti set b0='WSC6E7Q2Y3ZTVF6QVOQ' where id=7; -update noar tt set b1='TJ6HKNWSOSLM0EEN5EL' where id=7; -update noar ti set b1='TJ6HKNWSOSLM0EEN5EL' where id=7; -update noar tt set b2='T9W9HDQTZG1I82HW6DGCWXMVS4FC' where id=7; -update noar ti set b2='T9W9HDQTZG1I82HW6DGCWXMVS4FC' where id=7; -update noar tt set b0='53ZT4AD' where id=8; -update noar ti set b0='53ZT4AD' where id=8; -update noar tt set b1='P1GGPXU5WFC43718F5O4O' where id=8; -update noar ti set b1='P1GGPXU5WFC43718F5O4O' where id=8; -update noar tt set b2='MVHG2E' where id=8; -update noar ti set b2='MVHG2E' where id=8; -update noar tt set b0='I5BL2WISRM5EVQJRVV84WXO57T4N' where id=9; -update noar ti set b0='I5BL2WISRM5EVQJRVV84WXO57T4N' where id=9; -update noar tt set b1='FYYJ0J3YKDDUYD7PWQCAM' where id=9; -update noar ti set b1='FYYJ0J3YKDDUYD7PWQCAM' where id=9; -update noar tt set b2='XRNJSJNUOPHMJ0H1W0QTME19' where id=9; -update noar ti set b2='XRNJSJNUOPHMJ0H1W0QTME19' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -b0 blob not null, -b1 text not null, -b2 blob not null -) engine=tokudb; -insert into tt values (1,'','',''); -insert into tt values (2,'','',''); -insert into tt values (3,'','',''); -insert into tt values (4,'','',''); -insert into tt values (5,'','',''); -insert into tt values (6,'','',''); -insert into tt values (7,'','',''); -insert into tt values (8,'','',''); -insert into tt values (9,'','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set b0='8EGO5L81728RPV4062RFW871PJYU9' where id=1; -update noar ti set b0='8EGO5L81728RPV4062RFW871PJYU9' where id=1; -update noar tt set b1='NX8UVM1AYN3CNYWRMJ2Y02Z0CNR5YS' where id=1; -update noar ti set b1='NX8UVM1AYN3CNYWRMJ2Y02Z0CNR5YS' where id=1; -update noar tt set b2='Y12LXQQ' where id=1; -update noar ti set b2='Y12LXQQ' where id=1; -update noar tt set b0='0BVQ7MB38GA' where id=2; -update noar ti set b0='0BVQ7MB38GA' where id=2; -update noar tt set b1='C01ZDY' where id=2; -update noar ti set b1='C01ZDY' where id=2; -update noar tt set b2='SETD4N39CHLM318H5E1WLWX' where id=2; -update noar ti set b2='SETD4N39CHLM318H5E1WLWX' where id=2; -update noar tt set b0='HA2LVP7NDKTXO1HHY3KAWQAIW' where id=3; -update noar ti set b0='HA2LVP7NDKTXO1HHY3KAWQAIW' where id=3; -update noar tt set b1='E9TWBDPA' where id=3; -update noar ti set b1='E9TWBDPA' where id=3; -update noar tt set b2='31' where id=3; -update noar ti set b2='31' where id=3; -update noar tt set b0='N1RBV1E57FFZMECMYPVBQCMCL57T6X' where id=4; -update noar ti set b0='N1RBV1E57FFZMECMYPVBQCMCL57T6X' where id=4; -update noar tt set b1='TN4OXKOF9NANKFX' where id=4; -update noar ti set b1='TN4OXKOF9NANKFX' where id=4; -update noar tt set b2='D21Q8HTGK' where id=4; -update noar ti set b2='D21Q8HTGK' where id=4; -update noar tt set b0='FHJ22A160B62SM72QI' where id=5; -update noar ti set b0='FHJ22A160B62SM72QI' where id=5; -update noar tt set b1='2BG2W7FF30EWYUS' where id=5; -update noar ti set b1='2BG2W7FF30EWYUS' where id=5; -update noar tt set b2='9VI9BG5VTQBZKGTLIOXUKE' where id=5; -update noar ti set b2='9VI9BG5VTQBZKGTLIOXUKE' where id=5; -update noar tt set b0='0ACIBLG2ISBH7U0' where id=6; -update noar ti set b0='0ACIBLG2ISBH7U0' where id=6; -update noar tt set b1='TP6FONDAL2KJVOM2NVMD5M3G' where id=6; -update noar ti set b1='TP6FONDAL2KJVOM2NVMD5M3G' where id=6; -update noar tt set b2='KC' where id=6; -update noar ti set b2='KC' where id=6; -update noar tt set b0='3A8GWSCW78AMUF' where id=7; -update noar ti set b0='3A8GWSCW78AMUF' where id=7; -update noar tt set b1='DV9QLRMQNQS' where id=7; -update noar ti set b1='DV9QLRMQNQS' where id=7; -update noar tt set b2='HOIUMKDXKZFBB6211T' where id=7; -update noar ti set b2='HOIUMKDXKZFBB6211T' where id=7; -update noar tt set b0='6P' where id=8; -update noar ti set b0='6P' where id=8; -update noar tt set b1='Y4MJE9N6CTPU2QIUHKD4SR7VQZK8S81' where id=8; -update noar ti set b1='Y4MJE9N6CTPU2QIUHKD4SR7VQZK8S81' where id=8; -update noar tt set b2='8BLLILMS7MI02V6RRQQDPWEE' where id=8; -update noar ti set b2='8BLLILMS7MI02V6RRQQDPWEE' where id=8; -update noar tt set b0='05HGJ2ZTCPITH5I18CTSP1' where id=9; -update noar ti set b0='05HGJ2ZTCPITH5I18CTSP1' where id=9; -update noar tt set b1='NVTJO9JHT3BCDGFVML9MNO' where id=9; -update noar ti set b1='NVTJO9JHT3BCDGFVML9MNO' where id=9; -update noar tt set b2='I6LVEERZ3J6E8' where id=9; -update noar ti set b2='I6LVEERZ3J6E8' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -b0 blob null, -b1 text null, -b2 mediumblob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set b0='UDJ5W3RPHI02CA' where id=1; -update noar ti set b0='UDJ5W3RPHI02CA' where id=1; -update noar tt set b1='IWKOODAOFT4RS5T6E6YF6FM7GWK' where id=1; -update noar ti set b1='IWKOODAOFT4RS5T6E6YF6FM7GWK' where id=1; -update noar tt set b2='0HUQAGALI' where id=1; -update noar ti set b2='0HUQAGALI' where id=1; -update noar tt set b0='UIQZ18K5FC02J2LU' where id=2; -update noar ti set b0='UIQZ18K5FC02J2LU' where id=2; -update noar tt set b1='DEK6BPTJ' where id=2; -update noar ti set b1='DEK6BPTJ' where id=2; -update noar tt set b2='F2H7NWIDZL9AWYZ4JQ0XMG3FB' where id=2; -update noar ti set b2='F2H7NWIDZL9AWYZ4JQ0XMG3FB' where id=2; -update noar tt set b0='Z8D1C4J6IC7NY7OKY5AB43FSKSMBSXXF' where id=3; -update noar ti set b0='Z8D1C4J6IC7NY7OKY5AB43FSKSMBSXXF' where id=3; -update noar tt set b1='VR0P9KPR510FU9QSTFEH4' where id=3; -update noar ti set b1='VR0P9KPR510FU9QSTFEH4' where id=3; -update noar tt set b2='I6UMQ59YSDFJ4LO4543VV2L' where id=3; -update noar ti set b2='I6UMQ59YSDFJ4LO4543VV2L' where id=3; -update noar tt set b0='R6YPBQ2OV5AT22VENGQO4GOJ' where id=4; -update noar ti set b0='R6YPBQ2OV5AT22VENGQO4GOJ' where id=4; -update noar tt set b1='XJ0TAIIVXJNDE2J836SE7' where id=4; -update noar ti set b1='XJ0TAIIVXJNDE2J836SE7' where id=4; -update noar tt set b2='1OQ73M' where id=4; -update noar ti set b2='1OQ73M' where id=4; -update noar tt set b0='LVE5T9HMVMI5HWMHTWZU5YY3VH' where id=5; -update noar ti set b0='LVE5T9HMVMI5HWMHTWZU5YY3VH' where id=5; -update noar tt set b1='FEA8YTBLNJU258GUGUJ70GV9B' where id=5; -update noar ti set b1='FEA8YTBLNJU258GUGUJ70GV9B' where id=5; -update noar tt set b2='P9TAHRCDJ2K69XF1NL1' where id=5; -update noar ti set b2='P9TAHRCDJ2K69XF1NL1' where id=5; -update noar tt set b0='VWED1OTEDB62D6JJ66' where id=6; -update noar ti set b0='VWED1OTEDB62D6JJ66' where id=6; -update noar tt set b1='1M8JPPLK1OT5PUL7TW2L1MX32NXCXD' where id=6; -update noar ti set b1='1M8JPPLK1OT5PUL7TW2L1MX32NXCXD' where id=6; -update noar tt set b2='CPIKRKHJKGCPQUGK1672HN' where id=6; -update noar ti set b2='CPIKRKHJKGCPQUGK1672HN' where id=6; -update noar tt set b0='O7TZFIEFB0ZTFFZ6EU9A7L2PNX' where id=7; -update noar ti set b0='O7TZFIEFB0ZTFFZ6EU9A7L2PNX' where id=7; -update noar tt set b1='YXTJ9S5VW2KD09D2B9Z7S8AW7RQW9NQE' where id=7; -update noar ti set b1='YXTJ9S5VW2KD09D2B9Z7S8AW7RQW9NQE' where id=7; -update noar tt set b2='NRLTOPISL5NGANN' where id=7; -update noar ti set b2='NRLTOPISL5NGANN' where id=7; -update noar tt set b0='11BPELVZ6JV8NUGFMK2YO' where id=8; -update noar ti set b0='11BPELVZ6JV8NUGFMK2YO' where id=8; -update noar tt set b1='BENH3OXMOT40J' where id=8; -update noar ti set b1='BENH3OXMOT40J' where id=8; -update noar tt set b2='QWQ5UMZB0Q80AG3Q0UZDTF63YK8S8J5' where id=8; -update noar ti set b2='QWQ5UMZB0Q80AG3Q0UZDTF63YK8S8J5' where id=8; -update noar tt set b0='T2' where id=9; -update noar ti set b0='T2' where id=9; -update noar tt set b1='5VMBH0X6340U4E9UA95L1NSUDRSD' where id=9; -update noar ti set b1='5VMBH0X6340U4E9UA95L1NSUDRSD' where id=9; -update noar tt set b2='07XICTUD4CK6XTTEC2JDV' where id=9; -update noar ti set b2='07XICTUD4CK6XTTEC2JDV' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -b0 blob not null, -b1 text not null, -b2 mediumblob not null -) engine=tokudb; -insert into tt values (1,'','',''); -insert into tt values (2,'','',''); -insert into tt values (3,'','',''); -insert into tt values (4,'','',''); -insert into tt values (5,'','',''); -insert into tt values (6,'','',''); -insert into tt values (7,'','',''); -insert into tt values (8,'','',''); -insert into tt values (9,'','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set b0='EDZTEJZONZLOLHZDY' where id=1; -update noar ti set b0='EDZTEJZONZLOLHZDY' where id=1; -update noar tt set b1='W3B52JOBRQUFLE7R' where id=1; -update noar ti set b1='W3B52JOBRQUFLE7R' where id=1; -update noar tt set b2='Z4ALPLU' where id=1; -update noar ti set b2='Z4ALPLU' where id=1; -update noar tt set b0='I2DO4X2E08E6NKCN7' where id=2; -update noar ti set b0='I2DO4X2E08E6NKCN7' where id=2; -update noar tt set b1='1ABP' where id=2; -update noar ti set b1='1ABP' where id=2; -update noar tt set b2='CT8Y369UVG1S015BRQOIYA' where id=2; -update noar ti set b2='CT8Y369UVG1S015BRQOIYA' where id=2; -update noar tt set b0='VAPEDI' where id=3; -update noar ti set b0='VAPEDI' where id=3; -update noar tt set b1='J4GLCT0A04SL' where id=3; -update noar ti set b1='J4GLCT0A04SL' where id=3; -update noar tt set b2='CPLUX8JR8BXT' where id=3; -update noar ti set b2='CPLUX8JR8BXT' where id=3; -update noar tt set b0='STGMGI3F1SMIT4FGGHLJ' where id=4; -update noar ti set b0='STGMGI3F1SMIT4FGGHLJ' where id=4; -update noar tt set b1='ZIVAR7XEOSZ2' where id=4; -update noar ti set b1='ZIVAR7XEOSZ2' where id=4; -update noar tt set b2='M5SIDWZ0BQQ048S7JKR74F8' where id=4; -update noar ti set b2='M5SIDWZ0BQQ048S7JKR74F8' where id=4; -update noar tt set b0='EW2RE7WEXNG4QBNZMVWD' where id=5; -update noar ti set b0='EW2RE7WEXNG4QBNZMVWD' where id=5; -update noar tt set b1='SM0RIHD7BN771MC56JYDE1PIHHWEV' where id=5; -update noar ti set b1='SM0RIHD7BN771MC56JYDE1PIHHWEV' where id=5; -update noar tt set b2='2ZCP4' where id=5; -update noar ti set b2='2ZCP4' where id=5; -update noar tt set b0='F8LZUXTWNUJHIB9JAQPC' where id=6; -update noar ti set b0='F8LZUXTWNUJHIB9JAQPC' where id=6; -update noar tt set b1='U' where id=6; -update noar ti set b1='U' where id=6; -update noar tt set b2='EVJPU4C94LR9' where id=6; -update noar ti set b2='EVJPU4C94LR9' where id=6; -update noar tt set b0='7QOMWZPD1QR63NZ9LAC96IZY6CO8154T' where id=7; -update noar ti set b0='7QOMWZPD1QR63NZ9LAC96IZY6CO8154T' where id=7; -update noar tt set b1='BKRGK9UL' where id=7; -update noar ti set b1='BKRGK9UL' where id=7; -update noar tt set b2='WHJQS5A' where id=7; -update noar ti set b2='WHJQS5A' where id=7; -update noar tt set b0='J820YVR6DJK7SQ9EW6XV9H045I1D2' where id=8; -update noar ti set b0='J820YVR6DJK7SQ9EW6XV9H045I1D2' where id=8; -update noar tt set b1='6E4O0ES2BJ5YRG24X' where id=8; -update noar ti set b1='6E4O0ES2BJ5YRG24X' where id=8; -update noar tt set b2='A46S4C7PIWHDL4YV' where id=8; -update noar ti set b2='A46S4C7PIWHDL4YV' where id=8; -update noar tt set b0='5D5D' where id=9; -update noar ti set b0='5D5D' where id=9; -update noar tt set b1='L1DP8MN2K' where id=9; -update noar ti set b1='L1DP8MN2K' where id=9; -update noar tt set b2='1WU6NWLJCALZUG0H5AX9W9YPL6PMSM2' where id=9; -update noar ti set b2='1WU6NWLJCALZUG0H5AX9W9YPL6PMSM2' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -b0 blob null, -b1 text null, -b2 longblob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set b0='W3IA19UIZY1KC751B' where id=1; -update noar ti set b0='W3IA19UIZY1KC751B' where id=1; -update noar tt set b1='E5HC1LONEX9AZ65D0AAISY99RHT' where id=1; -update noar ti set b1='E5HC1LONEX9AZ65D0AAISY99RHT' where id=1; -update noar tt set b2='X5NGFGVUUJQHLFUHMTMPFDZ9J' where id=1; -update noar ti set b2='X5NGFGVUUJQHLFUHMTMPFDZ9J' where id=1; -update noar tt set b0='52UJSV3' where id=2; -update noar ti set b0='52UJSV3' where id=2; -update noar tt set b1='L37XA72ODF426OEHTEC' where id=2; -update noar ti set b1='L37XA72ODF426OEHTEC' where id=2; -update noar tt set b2='F0F9M43TNV8UIB' where id=2; -update noar ti set b2='F0F9M43TNV8UIB' where id=2; -update noar tt set b0='SZ5SSAIW9QPDS5Y' where id=3; -update noar ti set b0='SZ5SSAIW9QPDS5Y' where id=3; -update noar tt set b1='TUNEO04475K426O4I6' where id=3; -update noar ti set b1='TUNEO04475K426O4I6' where id=3; -update noar tt set b2='NIETHOR663IPECZR8U9UUBU1VG6EBDK' where id=3; -update noar ti set b2='NIETHOR663IPECZR8U9UUBU1VG6EBDK' where id=3; -update noar tt set b0='U3C53R' where id=4; -update noar ti set b0='U3C53R' where id=4; -update noar tt set b1='1P3WNES2T32XMGOYHIUC755TP' where id=4; -update noar ti set b1='1P3WNES2T32XMGOYHIUC755TP' where id=4; -update noar tt set b2='6UAHCBWF2JBOPM' where id=4; -update noar ti set b2='6UAHCBWF2JBOPM' where id=4; -update noar tt set b0='J0AG2NX' where id=5; -update noar ti set b0='J0AG2NX' where id=5; -update noar tt set b1='W' where id=5; -update noar ti set b1='W' where id=5; -update noar tt set b2='9X0G5J' where id=5; -update noar ti set b2='9X0G5J' where id=5; -update noar tt set b0='80OCZLO2X8A5VVDWOH1' where id=6; -update noar ti set b0='80OCZLO2X8A5VVDWOH1' where id=6; -update noar tt set b1='4PULS' where id=6; -update noar ti set b1='4PULS' where id=6; -update noar tt set b2='54BV' where id=6; -update noar ti set b2='54BV' where id=6; -update noar tt set b0='IQYR2839P0VA35JB69GABVJE' where id=7; -update noar ti set b0='IQYR2839P0VA35JB69GABVJE' where id=7; -update noar tt set b1='X4WV9QNADO' where id=7; -update noar ti set b1='X4WV9QNADO' where id=7; -update noar tt set b2='E0W9' where id=7; -update noar ti set b2='E0W9' where id=7; -update noar tt set b0='GNSUWQ85FIPJANX58RFZ1PY1PT8' where id=8; -update noar ti set b0='GNSUWQ85FIPJANX58RFZ1PY1PT8' where id=8; -update noar tt set b1='JSTLNO9ZCBWPRBYXYXFKF5EJX936YS' where id=8; -update noar ti set b1='JSTLNO9ZCBWPRBYXYXFKF5EJX936YS' where id=8; -update noar tt set b2='XFFW' where id=8; -update noar ti set b2='XFFW' where id=8; -update noar tt set b0='20BGNJ' where id=9; -update noar ti set b0='20BGNJ' where id=9; -update noar tt set b1='DL8A3XINIRN44W275IA' where id=9; -update noar ti set b1='DL8A3XINIRN44W275IA' where id=9; -update noar tt set b2='K16' where id=9; -update noar ti set b2='K16' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -b0 blob not null, -b1 text not null, -b2 longblob not null -) engine=tokudb; -insert into tt values (1,'','',''); -insert into tt values (2,'','',''); -insert into tt values (3,'','',''); -insert into tt values (4,'','',''); -insert into tt values (5,'','',''); -insert into tt values (6,'','',''); -insert into tt values (7,'','',''); -insert into tt values (8,'','',''); -insert into tt values (9,'','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set b0='YAI1RJVG5HVWK2DOOTFI' where id=1; -update noar ti set b0='YAI1RJVG5HVWK2DOOTFI' where id=1; -update noar tt set b1='7F9NKS90DULKGW' where id=1; -update noar ti set b1='7F9NKS90DULKGW' where id=1; -update noar tt set b2='LZD1WD' where id=1; -update noar ti set b2='LZD1WD' where id=1; -update noar tt set b0='T8RY05QML9R2JAAAC0ZS' where id=2; -update noar ti set b0='T8RY05QML9R2JAAAC0ZS' where id=2; -update noar tt set b1='NUHRN3200BKNTEF9KGHIC00KL6455S' where id=2; -update noar ti set b1='NUHRN3200BKNTEF9KGHIC00KL6455S' where id=2; -update noar tt set b2='VKG2SP1O' where id=2; -update noar ti set b2='VKG2SP1O' where id=2; -update noar tt set b0='M45XTWC67ERX6' where id=3; -update noar ti set b0='M45XTWC67ERX6' where id=3; -update noar tt set b1='7T3A3OZM6L8CZ618LR445W72EEOCW7' where id=3; -update noar ti set b1='7T3A3OZM6L8CZ618LR445W72EEOCW7' where id=3; -update noar tt set b2='UQRWCK4ON8EOULPQFO2ST' where id=3; -update noar ti set b2='UQRWCK4ON8EOULPQFO2ST' where id=3; -update noar tt set b0='3J9X4TSW9OASS7XE4L' where id=4; -update noar ti set b0='3J9X4TSW9OASS7XE4L' where id=4; -update noar tt set b1='20HQSVWXEL585YIMX1N' where id=4; -update noar ti set b1='20HQSVWXEL585YIMX1N' where id=4; -update noar tt set b2='6G' where id=4; -update noar ti set b2='6G' where id=4; -update noar tt set b0='VE' where id=5; -update noar ti set b0='VE' where id=5; -update noar tt set b1='P2K9F0PI0I' where id=5; -update noar ti set b1='P2K9F0PI0I' where id=5; -update noar tt set b2='O957F' where id=5; -update noar ti set b2='O957F' where id=5; -update noar tt set b0='2ZAGNW74LF62AI0Q0MIUFUENHMVQE' where id=6; -update noar ti set b0='2ZAGNW74LF62AI0Q0MIUFUENHMVQE' where id=6; -update noar tt set b1='BHVD6PM' where id=6; -update noar ti set b1='BHVD6PM' where id=6; -update noar tt set b2='0TUXEQ1' where id=6; -update noar ti set b2='0TUXEQ1' where id=6; -update noar tt set b0='WE178WBM64YFNA0VR8R72' where id=7; -update noar ti set b0='WE178WBM64YFNA0VR8R72' where id=7; -update noar tt set b1='CEOBRM8B5RJPJIOWG5J201BX4H' where id=7; -update noar ti set b1='CEOBRM8B5RJPJIOWG5J201BX4H' where id=7; -update noar tt set b2='8OFITYK0IFVKCEYEEC' where id=7; -update noar ti set b2='8OFITYK0IFVKCEYEEC' where id=7; -update noar tt set b0='55N14DB5S1ZPLBF8YCK6DQBD1AU' where id=8; -update noar ti set b0='55N14DB5S1ZPLBF8YCK6DQBD1AU' where id=8; -update noar tt set b1='CE8CUTQ8T' where id=8; -update noar ti set b1='CE8CUTQ8T' where id=8; -update noar tt set b2='R44PRV4S8UJJVCFEY6OUD72' where id=8; -update noar ti set b2='R44PRV4S8UJJVCFEY6OUD72' where id=8; -update noar tt set b0='HT3BB1NSR1WYIWD7R2NKB' where id=9; -update noar ti set b0='HT3BB1NSR1WYIWD7R2NKB' where id=9; -update noar tt set b1='1V1AYK88R4B77I2' where id=9; -update noar ti set b1='1V1AYK88R4B77I2' where id=9; -update noar tt set b2='OL0F' where id=9; -update noar ti set b2='OL0F' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -b0 blob null, -b1 text null, -b2 text null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set b0='BG2X' where id=1; -update noar ti set b0='BG2X' where id=1; -update noar tt set b1='UY6IKKOSWBTTL2VW00' where id=1; -update noar ti set b1='UY6IKKOSWBTTL2VW00' where id=1; -update noar tt set b2='NF7WJICX71U' where id=1; -update noar ti set b2='NF7WJICX71U' where id=1; -update noar tt set b0='VHD07HKZCKMCOQ2E2UP' where id=2; -update noar ti set b0='VHD07HKZCKMCOQ2E2UP' where id=2; -update noar tt set b1='63WNHJM' where id=2; -update noar ti set b1='63WNHJM' where id=2; -update noar tt set b2='UNUV7RTG3CR0190G94TRQ0WPYG' where id=2; -update noar ti set b2='UNUV7RTG3CR0190G94TRQ0WPYG' where id=2; -update noar tt set b0='QG' where id=3; -update noar ti set b0='QG' where id=3; -update noar tt set b1='WZ0' where id=3; -update noar ti set b1='WZ0' where id=3; -update noar tt set b2='IVJNO9' where id=3; -update noar ti set b2='IVJNO9' where id=3; -update noar tt set b0='CGL' where id=4; -update noar ti set b0='CGL' where id=4; -update noar tt set b1='SULWDBXVXPT7UTR51' where id=4; -update noar ti set b1='SULWDBXVXPT7UTR51' where id=4; -update noar tt set b2='YTIG5IC9V19N6BKH7SK7MPKCDJ60YYCI' where id=4; -update noar ti set b2='YTIG5IC9V19N6BKH7SK7MPKCDJ60YYCI' where id=4; -update noar tt set b0='D2J9TR4KJH3VUF4KPQVXS0H687DUODC' where id=5; -update noar ti set b0='D2J9TR4KJH3VUF4KPQVXS0H687DUODC' where id=5; -update noar tt set b1='8JGAWQGIZG' where id=5; -update noar ti set b1='8JGAWQGIZG' where id=5; -update noar tt set b2='DTWP3ROISNNVRIQ8GJ1GT0' where id=5; -update noar ti set b2='DTWP3ROISNNVRIQ8GJ1GT0' where id=5; -update noar tt set b0='X9KK4D8' where id=6; -update noar ti set b0='X9KK4D8' where id=6; -update noar tt set b1='1D5WN511SYYH1U6R1Y82' where id=6; -update noar ti set b1='1D5WN511SYYH1U6R1Y82' where id=6; -update noar tt set b2='U1' where id=6; -update noar ti set b2='U1' where id=6; -update noar tt set b0='PVK9HKH22ZN' where id=7; -update noar ti set b0='PVK9HKH22ZN' where id=7; -update noar tt set b1='S6TGWWSYE9JNT16' where id=7; -update noar ti set b1='S6TGWWSYE9JNT16' where id=7; -update noar tt set b2='W48ZH6UD1N1W95' where id=7; -update noar ti set b2='W48ZH6UD1N1W95' where id=7; -update noar tt set b0='F9RERUVB0D' where id=8; -update noar ti set b0='F9RERUVB0D' where id=8; -update noar tt set b1='TKQS9USU7ZO6PDMSOXA9' where id=8; -update noar ti set b1='TKQS9USU7ZO6PDMSOXA9' where id=8; -update noar tt set b2='7' where id=8; -update noar ti set b2='7' where id=8; -update noar tt set b0='BO7H134KVBQJ' where id=9; -update noar ti set b0='BO7H134KVBQJ' where id=9; -update noar tt set b1='EQXK7T8KGWIVKGLHKYQLVZ4VYUOA1' where id=9; -update noar ti set b1='EQXK7T8KGWIVKGLHKYQLVZ4VYUOA1' where id=9; -update noar tt set b2='9R0K9R32A1NXM7PVO' where id=9; -update noar ti set b2='9R0K9R32A1NXM7PVO' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -b0 blob not null, -b1 text not null, -b2 text not null -) engine=tokudb; -insert into tt values (1,'','',''); -insert into tt values (2,'','',''); -insert into tt values (3,'','',''); -insert into tt values (4,'','',''); -insert into tt values (5,'','',''); -insert into tt values (6,'','',''); -insert into tt values (7,'','',''); -insert into tt values (8,'','',''); -insert into tt values (9,'','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set b0='6YJIUM3DXU5L88YZDGUK3Y4PI5R7' where id=1; -update noar ti set b0='6YJIUM3DXU5L88YZDGUK3Y4PI5R7' where id=1; -update noar tt set b1='WC89MCBB' where id=1; -update noar ti set b1='WC89MCBB' where id=1; -update noar tt set b2='RO44MTP21CU27' where id=1; -update noar ti set b2='RO44MTP21CU27' where id=1; -update noar tt set b0='HN9DXG0IU5WOFZO1Y3BJR9W' where id=2; -update noar ti set b0='HN9DXG0IU5WOFZO1Y3BJR9W' where id=2; -update noar tt set b1='XBN68N8' where id=2; -update noar ti set b1='XBN68N8' where id=2; -update noar tt set b2='3WG4Z' where id=2; -update noar ti set b2='3WG4Z' where id=2; -update noar tt set b0='R6Z546BGZ9YCCC6NGJ75ZV73QZ2' where id=3; -update noar ti set b0='R6Z546BGZ9YCCC6NGJ75ZV73QZ2' where id=3; -update noar tt set b1='OX8IO1YEL' where id=3; -update noar ti set b1='OX8IO1YEL' where id=3; -update noar tt set b2='2CV' where id=3; -update noar ti set b2='2CV' where id=3; -update noar tt set b0='NR45N4L93KTP91NT8XXE' where id=4; -update noar ti set b0='NR45N4L93KTP91NT8XXE' where id=4; -update noar tt set b1='OU7ER9' where id=4; -update noar ti set b1='OU7ER9' where id=4; -update noar tt set b2='DYU92F9A4NW230YJ3KZ20SI23' where id=4; -update noar ti set b2='DYU92F9A4NW230YJ3KZ20SI23' where id=4; -update noar tt set b0='TMBV' where id=5; -update noar ti set b0='TMBV' where id=5; -update noar tt set b1='2C0QQZE' where id=5; -update noar ti set b1='2C0QQZE' where id=5; -update noar tt set b2='2GCGV48N9OXXOM03HUGRDN' where id=5; -update noar ti set b2='2GCGV48N9OXXOM03HUGRDN' where id=5; -update noar tt set b0='75DRF204E30BJUAM67Z7JUW8CHIH4RK' where id=6; -update noar ti set b0='75DRF204E30BJUAM67Z7JUW8CHIH4RK' where id=6; -update noar tt set b1='HSZMFUUO5U2MU' where id=6; -update noar ti set b1='HSZMFUUO5U2MU' where id=6; -update noar tt set b2='0WGW88OQZBIX32MVN3EDUXF0' where id=6; -update noar ti set b2='0WGW88OQZBIX32MVN3EDUXF0' where id=6; -update noar tt set b0='PZL6E' where id=7; -update noar ti set b0='PZL6E' where id=7; -update noar tt set b1='2LC5JHCES1XOJE42QZCJ44ANKR0S' where id=7; -update noar ti set b1='2LC5JHCES1XOJE42QZCJ44ANKR0S' where id=7; -update noar tt set b2='4M20PZCX5GXE84L1L173OA8J5B' where id=7; -update noar ti set b2='4M20PZCX5GXE84L1L173OA8J5B' where id=7; -update noar tt set b0='OUUCMWSID2GYBV6IHR69' where id=8; -update noar ti set b0='OUUCMWSID2GYBV6IHR69' where id=8; -update noar tt set b1='MUVOME2X' where id=8; -update noar ti set b1='MUVOME2X' where id=8; -update noar tt set b2='SD9' where id=8; -update noar ti set b2='SD9' where id=8; -update noar tt set b0='2L1DV5DJU' where id=9; -update noar ti set b0='2L1DV5DJU' where id=9; -update noar tt set b1='1R5K1GNYARBRPEWQSU5' where id=9; -update noar ti set b1='1R5K1GNYARBRPEWQSU5' where id=9; -update noar tt set b2='13YB' where id=9; -update noar ti set b2='13YB' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -b0 mediumblob null, -b1 tinyblob null, -b2 tinyblob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set b0='126ME164I4' where id=1; -update noar ti set b0='126ME164I4' where id=1; -update noar tt set b1='5NI66P9XPXF0LMIPFBMO5OA5X1PF6SFW' where id=1; -update noar ti set b1='5NI66P9XPXF0LMIPFBMO5OA5X1PF6SFW' where id=1; -update noar tt set b2='8YF8TEGHBTFDVJEIKTWARSDFGAW7REVD' where id=1; -update noar ti set b2='8YF8TEGHBTFDVJEIKTWARSDFGAW7REVD' where id=1; -update noar tt set b0='SBSQERN72IRK8MD4D58UDJK7IMHQ' where id=2; -update noar ti set b0='SBSQERN72IRK8MD4D58UDJK7IMHQ' where id=2; -update noar tt set b1='B3BXCV3T' where id=2; -update noar ti set b1='B3BXCV3T' where id=2; -update noar tt set b2='IYCJVFA32U57A9JS1M8EY3YF0V7K' where id=2; -update noar ti set b2='IYCJVFA32U57A9JS1M8EY3YF0V7K' where id=2; -update noar tt set b0='VHLMO42D04HF7LDU54BHCYNHUG2ASE' where id=3; -update noar ti set b0='VHLMO42D04HF7LDU54BHCYNHUG2ASE' where id=3; -update noar tt set b1='USJ' where id=3; -update noar ti set b1='USJ' where id=3; -update noar tt set b2='EDI2X7Y2P33G1LEQLCQDFAJ2WFR3Z' where id=3; -update noar ti set b2='EDI2X7Y2P33G1LEQLCQDFAJ2WFR3Z' where id=3; -update noar tt set b0='B75PU0T58A30P91UMPPBEM6G3LD7' where id=4; -update noar ti set b0='B75PU0T58A30P91UMPPBEM6G3LD7' where id=4; -update noar tt set b1='4P4JMLBO' where id=4; -update noar ti set b1='4P4JMLBO' where id=4; -update noar tt set b2='T4JFWGIP21' where id=4; -update noar ti set b2='T4JFWGIP21' where id=4; -update noar tt set b0='E4FIGD9SAOF5RBU' where id=5; -update noar ti set b0='E4FIGD9SAOF5RBU' where id=5; -update noar tt set b1='Y7N4' where id=5; -update noar ti set b1='Y7N4' where id=5; -update noar tt set b2='TBT41O8HP1VJNRSL3' where id=5; -update noar ti set b2='TBT41O8HP1VJNRSL3' where id=5; -update noar tt set b0='F3' where id=6; -update noar ti set b0='F3' where id=6; -update noar tt set b1='WCJWOWHR3IEUD3HCL5FG2' where id=6; -update noar ti set b1='WCJWOWHR3IEUD3HCL5FG2' where id=6; -update noar tt set b2='MJVUIUQ3Y' where id=6; -update noar ti set b2='MJVUIUQ3Y' where id=6; -update noar tt set b0='CVJQTXFGZI97QJ9IVOM3EXYO18J3VNFP' where id=7; -update noar ti set b0='CVJQTXFGZI97QJ9IVOM3EXYO18J3VNFP' where id=7; -update noar tt set b1='LGV1H1P3SVY732SYFQW8FG1PK' where id=7; -update noar ti set b1='LGV1H1P3SVY732SYFQW8FG1PK' where id=7; -update noar tt set b2='3UVVSSE4ZFWIJ' where id=7; -update noar ti set b2='3UVVSSE4ZFWIJ' where id=7; -update noar tt set b0='ARSKK4U17TCPVXJVK1HBUJ3RY37AQ6JM' where id=8; -update noar ti set b0='ARSKK4U17TCPVXJVK1HBUJ3RY37AQ6JM' where id=8; -update noar tt set b1='JTAG1CNAU9T86A04D' where id=8; -update noar ti set b1='JTAG1CNAU9T86A04D' where id=8; -update noar tt set b2='JF1ELTCLJIGLHGX0TP1' where id=8; -update noar ti set b2='JF1ELTCLJIGLHGX0TP1' where id=8; -update noar tt set b0='MUWM8RW' where id=9; -update noar ti set b0='MUWM8RW' where id=9; -update noar tt set b1='R6I8D0F4O58R1S52QZ' where id=9; -update noar ti set b1='R6I8D0F4O58R1S52QZ' where id=9; -update noar tt set b2='BDFN2OAM3MV7XUSM0UBGT9' where id=9; -update noar ti set b2='BDFN2OAM3MV7XUSM0UBGT9' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -b0 mediumblob not null, -b1 tinyblob not null, -b2 tinyblob not null -) engine=tokudb; -insert into tt values (1,'','',''); -insert into tt values (2,'','',''); -insert into tt values (3,'','',''); -insert into tt values (4,'','',''); -insert into tt values (5,'','',''); -insert into tt values (6,'','',''); -insert into tt values (7,'','',''); -insert into tt values (8,'','',''); -insert into tt values (9,'','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set b0='TOQXPL0YQ84X8FISSQD3GP6G91D6WKL' where id=1; -update noar ti set b0='TOQXPL0YQ84X8FISSQD3GP6G91D6WKL' where id=1; -update noar tt set b1='XMJLU8FO5KU6CD243EU1KD4Z8H2C7V4L' where id=1; -update noar ti set b1='XMJLU8FO5KU6CD243EU1KD4Z8H2C7V4L' where id=1; -update noar tt set b2='8MS82E' where id=1; -update noar ti set b2='8MS82E' where id=1; -update noar tt set b0='J8UF5IWND19R10PSELGPVDJ6ENB' where id=2; -update noar ti set b0='J8UF5IWND19R10PSELGPVDJ6ENB' where id=2; -update noar tt set b1='AWS8T6V6HBG6FVJNFO66QEBT' where id=2; -update noar ti set b1='AWS8T6V6HBG6FVJNFO66QEBT' where id=2; -update noar tt set b2='SY2IHCUK6XSDN1TW' where id=2; -update noar ti set b2='SY2IHCUK6XSDN1TW' where id=2; -update noar tt set b0='1W7U5M66BHCAL6F' where id=3; -update noar ti set b0='1W7U5M66BHCAL6F' where id=3; -update noar tt set b1='UG102ERN' where id=3; -update noar ti set b1='UG102ERN' where id=3; -update noar tt set b2='COWHSG43NDFYMU2NHJC9NZJG' where id=3; -update noar ti set b2='COWHSG43NDFYMU2NHJC9NZJG' where id=3; -update noar tt set b0='067CYMTKJ0Y92LJ80B7V48F' where id=4; -update noar ti set b0='067CYMTKJ0Y92LJ80B7V48F' where id=4; -update noar tt set b1='RO8ZISHJ6E7FN3UZ0MJW' where id=4; -update noar ti set b1='RO8ZISHJ6E7FN3UZ0MJW' where id=4; -update noar tt set b2='KHCXPGTELK560WL7KR81RCGQDVXY0PMZ' where id=4; -update noar ti set b2='KHCXPGTELK560WL7KR81RCGQDVXY0PMZ' where id=4; -update noar tt set b0='BZBW1Q' where id=5; -update noar ti set b0='BZBW1Q' where id=5; -update noar tt set b1='08X74ERR6FHVR9QP2YA4' where id=5; -update noar ti set b1='08X74ERR6FHVR9QP2YA4' where id=5; -update noar tt set b2='YE2G0D98A84X56DIRSMS5M0EVJ3M' where id=5; -update noar ti set b2='YE2G0D98A84X56DIRSMS5M0EVJ3M' where id=5; -update noar tt set b0='IL2HM8MBPP' where id=6; -update noar ti set b0='IL2HM8MBPP' where id=6; -update noar tt set b1='6O5VGK0NU4ML5O0SU6GIRFK9WS' where id=6; -update noar ti set b1='6O5VGK0NU4ML5O0SU6GIRFK9WS' where id=6; -update noar tt set b2='Y3BGTN41TEZQM0W34639M' where id=6; -update noar ti set b2='Y3BGTN41TEZQM0W34639M' where id=6; -update noar tt set b0='O0' where id=7; -update noar ti set b0='O0' where id=7; -update noar tt set b1='PVL9B5P9995TI73QC5LEHE2ZAUTVD2' where id=7; -update noar ti set b1='PVL9B5P9995TI73QC5LEHE2ZAUTVD2' where id=7; -update noar tt set b2='UES' where id=7; -update noar ti set b2='UES' where id=7; -update noar tt set b0='6NGK3R3Y4M3WM3O' where id=8; -update noar ti set b0='6NGK3R3Y4M3WM3O' where id=8; -update noar tt set b1='9ASX73COHOYHL1ZVLSWQ4IBE1WZ2JON' where id=8; -update noar ti set b1='9ASX73COHOYHL1ZVLSWQ4IBE1WZ2JON' where id=8; -update noar tt set b2='RLSQUW1J3DKRJWE7Q' where id=8; -update noar ti set b2='RLSQUW1J3DKRJWE7Q' where id=8; -update noar tt set b0='RGFVE460GQ' where id=9; -update noar ti set b0='RGFVE460GQ' where id=9; -update noar tt set b1='8RST9AV224' where id=9; -update noar ti set b1='8RST9AV224' where id=9; -update noar tt set b2='WIPY25E3TV' where id=9; -update noar ti set b2='WIPY25E3TV' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -b0 mediumblob null, -b1 tinyblob null, -b2 blob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set b0='O8U' where id=1; -update noar ti set b0='O8U' where id=1; -update noar tt set b1='2RDLA1ZYPNBKZ9U2TP' where id=1; -update noar ti set b1='2RDLA1ZYPNBKZ9U2TP' where id=1; -update noar tt set b2='TT' where id=1; -update noar ti set b2='TT' where id=1; -update noar tt set b0='V7X' where id=2; -update noar ti set b0='V7X' where id=2; -update noar tt set b1='3KFLKNJ6KCZXH0' where id=2; -update noar ti set b1='3KFLKNJ6KCZXH0' where id=2; -update noar tt set b2='05TUBMQPNJXR6SRT4' where id=2; -update noar ti set b2='05TUBMQPNJXR6SRT4' where id=2; -update noar tt set b0='P4DV6' where id=3; -update noar ti set b0='P4DV6' where id=3; -update noar tt set b1='KGNRCMY21J2SI3VOUUS54S8AI' where id=3; -update noar ti set b1='KGNRCMY21J2SI3VOUUS54S8AI' where id=3; -update noar tt set b2='FV39CR' where id=3; -update noar ti set b2='FV39CR' where id=3; -update noar tt set b0='7' where id=4; -update noar ti set b0='7' where id=4; -update noar tt set b1='9TVGWWTKV3V25IR' where id=4; -update noar ti set b1='9TVGWWTKV3V25IR' where id=4; -update noar tt set b2='MZZ7M612OWBWZF931G' where id=4; -update noar ti set b2='MZZ7M612OWBWZF931G' where id=4; -update noar tt set b0='X0' where id=5; -update noar ti set b0='X0' where id=5; -update noar tt set b1='8CHXGXO1LC4312NU' where id=5; -update noar ti set b1='8CHXGXO1LC4312NU' where id=5; -update noar tt set b2='SAB' where id=5; -update noar ti set b2='SAB' where id=5; -update noar tt set b0='5SSOUP01IVG7QUI134XMH8PQLKX42HRX' where id=6; -update noar ti set b0='5SSOUP01IVG7QUI134XMH8PQLKX42HRX' where id=6; -update noar tt set b1='0I7NQP6ZL9VU414QT2PMSOIWEH7' where id=6; -update noar ti set b1='0I7NQP6ZL9VU414QT2PMSOIWEH7' where id=6; -update noar tt set b2='5RT2Y' where id=6; -update noar ti set b2='5RT2Y' where id=6; -update noar tt set b0='BMYG6OOGJHIFI2W0HUEWJI60ER' where id=7; -update noar ti set b0='BMYG6OOGJHIFI2W0HUEWJI60ER' where id=7; -update noar tt set b1='CJ7TRWQFN4OKMUU0QF23Q' where id=7; -update noar ti set b1='CJ7TRWQFN4OKMUU0QF23Q' where id=7; -update noar tt set b2='ILZII8X3UDMDN4HBMYNVC76M4TEV96' where id=7; -update noar ti set b2='ILZII8X3UDMDN4HBMYNVC76M4TEV96' where id=7; -update noar tt set b0='TQERA9KMBRN08NS3IEBHB' where id=8; -update noar ti set b0='TQERA9KMBRN08NS3IEBHB' where id=8; -update noar tt set b1='5GDI4H' where id=8; -update noar ti set b1='5GDI4H' where id=8; -update noar tt set b2='614OMCY3CUIEIMIZOLBTU' where id=8; -update noar ti set b2='614OMCY3CUIEIMIZOLBTU' where id=8; -update noar tt set b0='JM1TLRQZY8TCS1' where id=9; -update noar ti set b0='JM1TLRQZY8TCS1' where id=9; -update noar tt set b1='1FPOMFV0XC' where id=9; -update noar ti set b1='1FPOMFV0XC' where id=9; -update noar tt set b2='RK2TXCE90OYM0N0QYHIC' where id=9; -update noar ti set b2='RK2TXCE90OYM0N0QYHIC' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -b0 mediumblob not null, -b1 tinyblob not null, -b2 blob not null -) engine=tokudb; -insert into tt values (1,'','',''); -insert into tt values (2,'','',''); -insert into tt values (3,'','',''); -insert into tt values (4,'','',''); -insert into tt values (5,'','',''); -insert into tt values (6,'','',''); -insert into tt values (7,'','',''); -insert into tt values (8,'','',''); -insert into tt values (9,'','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set b0='3NO3QE8SVFDP7USX4Z5Y0NT2PI9M3X' where id=1; -update noar ti set b0='3NO3QE8SVFDP7USX4Z5Y0NT2PI9M3X' where id=1; -update noar tt set b1='MZDRHIQHVE1U' where id=1; -update noar ti set b1='MZDRHIQHVE1U' where id=1; -update noar tt set b2='AE866SA8O' where id=1; -update noar ti set b2='AE866SA8O' where id=1; -update noar tt set b0='3MJ97O5TMFUM9R7RGG97PLKOIY1EU4L' where id=2; -update noar ti set b0='3MJ97O5TMFUM9R7RGG97PLKOIY1EU4L' where id=2; -update noar tt set b1='N3YX' where id=2; -update noar ti set b1='N3YX' where id=2; -update noar tt set b2='VGJPIXFSRYGC9XESK5FFMSODQJJUAJ' where id=2; -update noar ti set b2='VGJPIXFSRYGC9XESK5FFMSODQJJUAJ' where id=2; -update noar tt set b0='U0DZTNTHT4KMB' where id=3; -update noar ti set b0='U0DZTNTHT4KMB' where id=3; -update noar tt set b1='BTBNSJ0Q02XJ7UIW' where id=3; -update noar ti set b1='BTBNSJ0Q02XJ7UIW' where id=3; -update noar tt set b2='BGW9PLDYAF74HXISD5XZV8E' where id=3; -update noar ti set b2='BGW9PLDYAF74HXISD5XZV8E' where id=3; -update noar tt set b0='TYF9WD0BV3392SLDR6C9R65ZBB35NP' where id=4; -update noar ti set b0='TYF9WD0BV3392SLDR6C9R65ZBB35NP' where id=4; -update noar tt set b1='IEOVT9T8A2LD1RKOL800XK' where id=4; -update noar ti set b1='IEOVT9T8A2LD1RKOL800XK' where id=4; -update noar tt set b2='45MQPXAQ3MK' where id=4; -update noar ti set b2='45MQPXAQ3MK' where id=4; -update noar tt set b0='UO9TMG2FPUXKO7VQAS0RVUT0C44' where id=5; -update noar ti set b0='UO9TMG2FPUXKO7VQAS0RVUT0C44' where id=5; -update noar tt set b1='HG6MW3CZMT076DKQ63MP6U' where id=5; -update noar ti set b1='HG6MW3CZMT076DKQ63MP6U' where id=5; -update noar tt set b2='ACOBS79' where id=5; -update noar ti set b2='ACOBS79' where id=5; -update noar tt set b0='N9UBNU31' where id=6; -update noar ti set b0='N9UBNU31' where id=6; -update noar tt set b1='QGQ5JJOP' where id=6; -update noar ti set b1='QGQ5JJOP' where id=6; -update noar tt set b2='3ORB5GAHWR45Q3F0G03IVPKU9S55E' where id=6; -update noar ti set b2='3ORB5GAHWR45Q3F0G03IVPKU9S55E' where id=6; -update noar tt set b0='ZG3LA4' where id=7; -update noar ti set b0='ZG3LA4' where id=7; -update noar tt set b1='RJEM7X6SO79WNCZ1EJ7YG' where id=7; -update noar ti set b1='RJEM7X6SO79WNCZ1EJ7YG' where id=7; -update noar tt set b2='RZQ2TFUB6I9S1ND9GE97LHW8TI4VG3' where id=7; -update noar ti set b2='RZQ2TFUB6I9S1ND9GE97LHW8TI4VG3' where id=7; -update noar tt set b0='M8CFRB67TF6VUIAZGQLA96Q' where id=8; -update noar ti set b0='M8CFRB67TF6VUIAZGQLA96Q' where id=8; -update noar tt set b1='CE39QBK72IY3A9R83BUGODRZ8T843V' where id=8; -update noar ti set b1='CE39QBK72IY3A9R83BUGODRZ8T843V' where id=8; -update noar tt set b2='3XL5CFCM' where id=8; -update noar ti set b2='3XL5CFCM' where id=8; -update noar tt set b0='ZLBDLDB0LTRNVUT1HMT41B09' where id=9; -update noar ti set b0='ZLBDLDB0LTRNVUT1HMT41B09' where id=9; -update noar tt set b1='LZUWC4R2DLQSCA7DA7G17WL' where id=9; -update noar ti set b1='LZUWC4R2DLQSCA7DA7G17WL' where id=9; -update noar tt set b2='90T1TPKPL' where id=9; -update noar ti set b2='90T1TPKPL' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -b0 mediumblob null, -b1 tinyblob null, -b2 mediumblob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set b0='LZT3B24BZJ58MTFPI0AY15ND7' where id=1; -update noar ti set b0='LZT3B24BZJ58MTFPI0AY15ND7' where id=1; -update noar tt set b1='C' where id=1; -update noar ti set b1='C' where id=1; -update noar tt set b2='H' where id=1; -update noar ti set b2='H' where id=1; -update noar tt set b0='PL9HXR38V96OMJLOCE' where id=2; -update noar ti set b0='PL9HXR38V96OMJLOCE' where id=2; -update noar tt set b1='64TYG5GXTSBSQL0U5' where id=2; -update noar ti set b1='64TYG5GXTSBSQL0U5' where id=2; -update noar tt set b2='5EXFNEJWFK1EW6O24BAUUQXTKHLIR' where id=2; -update noar ti set b2='5EXFNEJWFK1EW6O24BAUUQXTKHLIR' where id=2; -update noar tt set b0='JLAT3P' where id=3; -update noar ti set b0='JLAT3P' where id=3; -update noar tt set b1='CZZFILH6V2QJ6KQGGB4LZNQ' where id=3; -update noar ti set b1='CZZFILH6V2QJ6KQGGB4LZNQ' where id=3; -update noar tt set b2='T6GT6GX054H6KTZO' where id=3; -update noar ti set b2='T6GT6GX054H6KTZO' where id=3; -update noar tt set b0='KCLTZS' where id=4; -update noar ti set b0='KCLTZS' where id=4; -update noar tt set b1='ETMHSQZ89W3A67GEUFU9GOEZJ751YID' where id=4; -update noar ti set b1='ETMHSQZ89W3A67GEUFU9GOEZJ751YID' where id=4; -update noar tt set b2='ZUPQR2C3' where id=4; -update noar ti set b2='ZUPQR2C3' where id=4; -update noar tt set b0='P6Z7HZCAWM8TT4MR' where id=5; -update noar ti set b0='P6Z7HZCAWM8TT4MR' where id=5; -update noar tt set b1='9OZI2KZV0BJXPNDP8D5' where id=5; -update noar ti set b1='9OZI2KZV0BJXPNDP8D5' where id=5; -update noar tt set b2='SJB4SAACJX0033SGL5FS7Z4OW' where id=5; -update noar ti set b2='SJB4SAACJX0033SGL5FS7Z4OW' where id=5; -update noar tt set b0='Z5HY3UTTJM4SZJI4P7B' where id=6; -update noar ti set b0='Z5HY3UTTJM4SZJI4P7B' where id=6; -update noar tt set b1='SR3XY' where id=6; -update noar ti set b1='SR3XY' where id=6; -update noar tt set b2='7H2Y' where id=6; -update noar ti set b2='7H2Y' where id=6; -update noar tt set b0='9S0YRAE9BRVAEO2P62PJL1TNNPZ' where id=7; -update noar ti set b0='9S0YRAE9BRVAEO2P62PJL1TNNPZ' where id=7; -update noar tt set b1='TFF9CRW0R3UUGEFKMMSQDKA3' where id=7; -update noar ti set b1='TFF9CRW0R3UUGEFKMMSQDKA3' where id=7; -update noar tt set b2='KSSI31U8XGN' where id=7; -update noar ti set b2='KSSI31U8XGN' where id=7; -update noar tt set b0='GZODJABN6ERHMG' where id=8; -update noar ti set b0='GZODJABN6ERHMG' where id=8; -update noar tt set b1='2LFOYJUNKYNWA' where id=8; -update noar ti set b1='2LFOYJUNKYNWA' where id=8; -update noar tt set b2='JM2WLM7FFHNER' where id=8; -update noar ti set b2='JM2WLM7FFHNER' where id=8; -update noar tt set b0='Y' where id=9; -update noar ti set b0='Y' where id=9; -update noar tt set b1='WTRPBE2GYCSZNGSWFHXOLDB6YEMX1K' where id=9; -update noar ti set b1='WTRPBE2GYCSZNGSWFHXOLDB6YEMX1K' where id=9; -update noar tt set b2='F0Q0U4GUEJWOY4YPGLFZ8NPEUAZTO3O' where id=9; -update noar ti set b2='F0Q0U4GUEJWOY4YPGLFZ8NPEUAZTO3O' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -b0 mediumblob not null, -b1 tinyblob not null, -b2 mediumblob not null -) engine=tokudb; -insert into tt values (1,'','',''); -insert into tt values (2,'','',''); -insert into tt values (3,'','',''); -insert into tt values (4,'','',''); -insert into tt values (5,'','',''); -insert into tt values (6,'','',''); -insert into tt values (7,'','',''); -insert into tt values (8,'','',''); -insert into tt values (9,'','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set b0='A05SRQJGZ7' where id=1; -update noar ti set b0='A05SRQJGZ7' where id=1; -update noar tt set b1='V01D0Q6H28EVEIHQN1W6J' where id=1; -update noar ti set b1='V01D0Q6H28EVEIHQN1W6J' where id=1; -update noar tt set b2='2CUKXE4TXHAERP8PCR3OOLFGWQ5' where id=1; -update noar ti set b2='2CUKXE4TXHAERP8PCR3OOLFGWQ5' where id=1; -update noar tt set b0='NHD3V11P0FFD2UY6L21XZ2EMEYJIXKL5' where id=2; -update noar ti set b0='NHD3V11P0FFD2UY6L21XZ2EMEYJIXKL5' where id=2; -update noar tt set b1='5NJQ8QVAPV2TVK' where id=2; -update noar ti set b1='5NJQ8QVAPV2TVK' where id=2; -update noar tt set b2='VM4X3FQVC4' where id=2; -update noar ti set b2='VM4X3FQVC4' where id=2; -update noar tt set b0='DJ' where id=3; -update noar ti set b0='DJ' where id=3; -update noar tt set b1='NESZVJJD4B1ZM9O4E0VXOE' where id=3; -update noar ti set b1='NESZVJJD4B1ZM9O4E0VXOE' where id=3; -update noar tt set b2='3YJGJN' where id=3; -update noar ti set b2='3YJGJN' where id=3; -update noar tt set b0='RQ35TNJS' where id=4; -update noar ti set b0='RQ35TNJS' where id=4; -update noar tt set b1='5MM41JVC6R55EQE08PCS92RSQ' where id=4; -update noar ti set b1='5MM41JVC6R55EQE08PCS92RSQ' where id=4; -update noar tt set b2='KVCYVFNB43W' where id=4; -update noar ti set b2='KVCYVFNB43W' where id=4; -update noar tt set b0='3XZOC52CW' where id=5; -update noar ti set b0='3XZOC52CW' where id=5; -update noar tt set b1='0QJCD82UR6RIYAJLD1LDN1F1O' where id=5; -update noar ti set b1='0QJCD82UR6RIYAJLD1LDN1F1O' where id=5; -update noar tt set b2='E1KFF5C5EHAD1G6C6GTM9W9M5FT36D' where id=5; -update noar ti set b2='E1KFF5C5EHAD1G6C6GTM9W9M5FT36D' where id=5; -update noar tt set b0='HMK9NUY' where id=6; -update noar ti set b0='HMK9NUY' where id=6; -update noar tt set b1='G5D5RADDHGMMHWWBD' where id=6; -update noar ti set b1='G5D5RADDHGMMHWWBD' where id=6; -update noar tt set b2='FMMC3WMBIZSY' where id=6; -update noar ti set b2='FMMC3WMBIZSY' where id=6; -update noar tt set b0='PAQMG3JHRTOHM' where id=7; -update noar ti set b0='PAQMG3JHRTOHM' where id=7; -update noar tt set b1='HIUOWXIA1JV' where id=7; -update noar ti set b1='HIUOWXIA1JV' where id=7; -update noar tt set b2='QWG53YIKUC0G2WJI0L22SGGUI3P5' where id=7; -update noar ti set b2='QWG53YIKUC0G2WJI0L22SGGUI3P5' where id=7; -update noar tt set b0='L8ZNTB2Y' where id=8; -update noar ti set b0='L8ZNTB2Y' where id=8; -update noar tt set b1='Z779' where id=8; -update noar ti set b1='Z779' where id=8; -update noar tt set b2='JU43J7HCRRF' where id=8; -update noar ti set b2='JU43J7HCRRF' where id=8; -update noar tt set b0='14BF' where id=9; -update noar ti set b0='14BF' where id=9; -update noar tt set b1='LT47822OH70XCY5B1CYE3WGJZ168R0' where id=9; -update noar ti set b1='LT47822OH70XCY5B1CYE3WGJZ168R0' where id=9; -update noar tt set b2='FAEQNRP4HL2WW' where id=9; -update noar ti set b2='FAEQNRP4HL2WW' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -b0 mediumblob null, -b1 tinyblob null, -b2 longblob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set b0='AMECKXNV9YV8MTFOXZRYRJ0LCRHSDERU' where id=1; -update noar ti set b0='AMECKXNV9YV8MTFOXZRYRJ0LCRHSDERU' where id=1; -update noar tt set b1='HATOGF668ZZ2GO9YY8VGFH2MQTKTS1W3' where id=1; -update noar ti set b1='HATOGF668ZZ2GO9YY8VGFH2MQTKTS1W3' where id=1; -update noar tt set b2='VAIP2NN40' where id=1; -update noar ti set b2='VAIP2NN40' where id=1; -update noar tt set b0='7SS6BBCLKC5HGH7X406GXH0BCJWH' where id=2; -update noar ti set b0='7SS6BBCLKC5HGH7X406GXH0BCJWH' where id=2; -update noar tt set b1='EXY0XM' where id=2; -update noar ti set b1='EXY0XM' where id=2; -update noar tt set b2='HPY9F7NHPJJS8LA8V5' where id=2; -update noar ti set b2='HPY9F7NHPJJS8LA8V5' where id=2; -update noar tt set b0='9972H5GWJ0SHHLUHL5D06QE3VN' where id=3; -update noar ti set b0='9972H5GWJ0SHHLUHL5D06QE3VN' where id=3; -update noar tt set b1='7FJON' where id=3; -update noar ti set b1='7FJON' where id=3; -update noar tt set b2='CXWT5EMH0ADR8TM3IP5MP4L1N90G5U' where id=3; -update noar ti set b2='CXWT5EMH0ADR8TM3IP5MP4L1N90G5U' where id=3; -update noar tt set b0='7JFY99S8Q7SM5BWUB5MMFUSI10IVMD' where id=4; -update noar ti set b0='7JFY99S8Q7SM5BWUB5MMFUSI10IVMD' where id=4; -update noar tt set b1='10EZS17XQVRZ' where id=4; -update noar ti set b1='10EZS17XQVRZ' where id=4; -update noar tt set b2='8VQLS0BOACK9ZHM9I' where id=4; -update noar ti set b2='8VQLS0BOACK9ZHM9I' where id=4; -update noar tt set b0='D' where id=5; -update noar ti set b0='D' where id=5; -update noar tt set b1='JUYCRU4LNJ4SQTMB' where id=5; -update noar ti set b1='JUYCRU4LNJ4SQTMB' where id=5; -update noar tt set b2='VSTKFPQU5U06H2EUOPZI29TER4OAF' where id=5; -update noar ti set b2='VSTKFPQU5U06H2EUOPZI29TER4OAF' where id=5; -update noar tt set b0='VZSIYE' where id=6; -update noar ti set b0='VZSIYE' where id=6; -update noar tt set b1='LT' where id=6; -update noar ti set b1='LT' where id=6; -update noar tt set b2='ZCH2UWLV0HL8VHBZAS2FQMYV61' where id=6; -update noar ti set b2='ZCH2UWLV0HL8VHBZAS2FQMYV61' where id=6; -update noar tt set b0='4HR2T3HCBO9LAYMI2BFUYJ' where id=7; -update noar ti set b0='4HR2T3HCBO9LAYMI2BFUYJ' where id=7; -update noar tt set b1='W4NGL9JPIQPV70VYQYFE0T9W' where id=7; -update noar ti set b1='W4NGL9JPIQPV70VYQYFE0T9W' where id=7; -update noar tt set b2='V2011CWV9PD0Z' where id=7; -update noar ti set b2='V2011CWV9PD0Z' where id=7; -update noar tt set b0='VESMIIJH65VN' where id=8; -update noar ti set b0='VESMIIJH65VN' where id=8; -update noar tt set b1='EWJ' where id=8; -update noar ti set b1='EWJ' where id=8; -update noar tt set b2='NHNQMWJYDNOCDIJ2Y9I4LG05THXX' where id=8; -update noar ti set b2='NHNQMWJYDNOCDIJ2Y9I4LG05THXX' where id=8; -update noar tt set b0='BJ6IVVLXARD45JHT' where id=9; -update noar ti set b0='BJ6IVVLXARD45JHT' where id=9; -update noar tt set b1='XFOF22HUDV3ZR8SX9' where id=9; -update noar ti set b1='XFOF22HUDV3ZR8SX9' where id=9; -update noar tt set b2='QZ77HKNP39KE7UVQYM1130J9' where id=9; -update noar ti set b2='QZ77HKNP39KE7UVQYM1130J9' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -b0 mediumblob not null, -b1 tinyblob not null, -b2 longblob not null -) engine=tokudb; -insert into tt values (1,'','',''); -insert into tt values (2,'','',''); -insert into tt values (3,'','',''); -insert into tt values (4,'','',''); -insert into tt values (5,'','',''); -insert into tt values (6,'','',''); -insert into tt values (7,'','',''); -insert into tt values (8,'','',''); -insert into tt values (9,'','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set b0='U2T' where id=1; -update noar ti set b0='U2T' where id=1; -update noar tt set b1='903ENKDKW1' where id=1; -update noar ti set b1='903ENKDKW1' where id=1; -update noar tt set b2='6M2K5BL4YI1SKN' where id=1; -update noar ti set b2='6M2K5BL4YI1SKN' where id=1; -update noar tt set b0='FIC0G5YWH' where id=2; -update noar ti set b0='FIC0G5YWH' where id=2; -update noar tt set b1='135P99OLVSS1ZU55' where id=2; -update noar ti set b1='135P99OLVSS1ZU55' where id=2; -update noar tt set b2='8NQSORKUCSYNZNT70SHQA9ZYEKHG3' where id=2; -update noar ti set b2='8NQSORKUCSYNZNT70SHQA9ZYEKHG3' where id=2; -update noar tt set b0='HNB4TYD1GJIM3YPFVVEGHM9X8RQ3DXF' where id=3; -update noar ti set b0='HNB4TYD1GJIM3YPFVVEGHM9X8RQ3DXF' where id=3; -update noar tt set b1='AA1XX' where id=3; -update noar ti set b1='AA1XX' where id=3; -update noar tt set b2='CSBECP1H4RBYP' where id=3; -update noar ti set b2='CSBECP1H4RBYP' where id=3; -update noar tt set b0='E31BK1N0M' where id=4; -update noar ti set b0='E31BK1N0M' where id=4; -update noar tt set b1='GI8' where id=4; -update noar ti set b1='GI8' where id=4; -update noar tt set b2='PXX' where id=4; -update noar ti set b2='PXX' where id=4; -update noar tt set b0='0ULS' where id=5; -update noar ti set b0='0ULS' where id=5; -update noar tt set b1='CDC9' where id=5; -update noar ti set b1='CDC9' where id=5; -update noar tt set b2='NP57DQX' where id=5; -update noar ti set b2='NP57DQX' where id=5; -update noar tt set b0='ST2S4FTE8UMSK05NJOEP3TC' where id=6; -update noar ti set b0='ST2S4FTE8UMSK05NJOEP3TC' where id=6; -update noar tt set b1='BHMOD23PJERY6U' where id=6; -update noar ti set b1='BHMOD23PJERY6U' where id=6; -update noar tt set b2='J8B0V34HODM0H48O0DDW6J6FS9CDM' where id=6; -update noar ti set b2='J8B0V34HODM0H48O0DDW6J6FS9CDM' where id=6; -update noar tt set b0='0YIOYTP6GAAHQXPUNFL5D8FNMI' where id=7; -update noar ti set b0='0YIOYTP6GAAHQXPUNFL5D8FNMI' where id=7; -update noar tt set b1='9XBT9BHAY1MXWT2OK' where id=7; -update noar ti set b1='9XBT9BHAY1MXWT2OK' where id=7; -update noar tt set b2='AM' where id=7; -update noar ti set b2='AM' where id=7; -update noar tt set b0='KMM0M9' where id=8; -update noar ti set b0='KMM0M9' where id=8; -update noar tt set b1='EQN5AKY0CN75AZGCRHM4I8DL7ILLROW' where id=8; -update noar ti set b1='EQN5AKY0CN75AZGCRHM4I8DL7ILLROW' where id=8; -update noar tt set b2='AA0EWJ12' where id=8; -update noar ti set b2='AA0EWJ12' where id=8; -update noar tt set b0='QMPP9ZOZR4XGEWGVRZ5E6OTFFMBD' where id=9; -update noar ti set b0='QMPP9ZOZR4XGEWGVRZ5E6OTFFMBD' where id=9; -update noar tt set b1='GK9R9BWB6H1EKA2' where id=9; -update noar ti set b1='GK9R9BWB6H1EKA2' where id=9; -update noar tt set b2='4LV3Q2F79VOD02IU3393PJF7OITV2AUU' where id=9; -update noar ti set b2='4LV3Q2F79VOD02IU3393PJF7OITV2AUU' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -b0 mediumblob null, -b1 tinyblob null, -b2 text null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set b0='AA5HG6QGVVMLY53N966G96TI' where id=1; -update noar ti set b0='AA5HG6QGVVMLY53N966G96TI' where id=1; -update noar tt set b1='RG' where id=1; -update noar ti set b1='RG' where id=1; -update noar tt set b2='FCMJM' where id=1; -update noar ti set b2='FCMJM' where id=1; -update noar tt set b0='HUFIUZSQVH00107P0ZP652GD' where id=2; -update noar ti set b0='HUFIUZSQVH00107P0ZP652GD' where id=2; -update noar tt set b1='SDY3WEXZRP46DQPJG0GJB7A6T' where id=2; -update noar ti set b1='SDY3WEXZRP46DQPJG0GJB7A6T' where id=2; -update noar tt set b2='ZEEAA' where id=2; -update noar ti set b2='ZEEAA' where id=2; -update noar tt set b0='B4T419WE0' where id=3; -update noar ti set b0='B4T419WE0' where id=3; -update noar tt set b1='LWNTY2FYA7Q6OCDPIMVQV3Q' where id=3; -update noar ti set b1='LWNTY2FYA7Q6OCDPIMVQV3Q' where id=3; -update noar tt set b2='0NG74UWP9589JI' where id=3; -update noar ti set b2='0NG74UWP9589JI' where id=3; -update noar tt set b0='RO1KN9C4O9X0EGJG9F5API' where id=4; -update noar ti set b0='RO1KN9C4O9X0EGJG9F5API' where id=4; -update noar tt set b1='VSI5TA5PCAJ5FB' where id=4; -update noar ti set b1='VSI5TA5PCAJ5FB' where id=4; -update noar tt set b2='4VV276B51YDWQTA52JWTTGTMM5DH' where id=4; -update noar ti set b2='4VV276B51YDWQTA52JWTTGTMM5DH' where id=4; -update noar tt set b0='8L42EF8W1ITHIBI' where id=5; -update noar ti set b0='8L42EF8W1ITHIBI' where id=5; -update noar tt set b1='B4FFOD8XJ87EZ0MOCVGE1A' where id=5; -update noar ti set b1='B4FFOD8XJ87EZ0MOCVGE1A' where id=5; -update noar tt set b2='Q5Z' where id=5; -update noar ti set b2='Q5Z' where id=5; -update noar tt set b0='28DVY1MKS2IWSSVT8J' where id=6; -update noar ti set b0='28DVY1MKS2IWSSVT8J' where id=6; -update noar tt set b1='LD' where id=6; -update noar ti set b1='LD' where id=6; -update noar tt set b2='PAVN' where id=6; -update noar ti set b2='PAVN' where id=6; -update noar tt set b0='3FB' where id=7; -update noar ti set b0='3FB' where id=7; -update noar tt set b1='MXJ32CKR9F85QOEQW7QKK87' where id=7; -update noar ti set b1='MXJ32CKR9F85QOEQW7QKK87' where id=7; -update noar tt set b2='1B8M8R7XGPDKEXRLN' where id=7; -update noar ti set b2='1B8M8R7XGPDKEXRLN' where id=7; -update noar tt set b0='KFMHZJIDOOS' where id=8; -update noar ti set b0='KFMHZJIDOOS' where id=8; -update noar tt set b1='N81W91SLJE98SMGGD' where id=8; -update noar ti set b1='N81W91SLJE98SMGGD' where id=8; -update noar tt set b2='YRARYP' where id=8; -update noar ti set b2='YRARYP' where id=8; -update noar tt set b0='JJPJSULAEU6' where id=9; -update noar ti set b0='JJPJSULAEU6' where id=9; -update noar tt set b1='JZI' where id=9; -update noar ti set b1='JZI' where id=9; -update noar tt set b2='FAZS8L0NNL09Y0OXSLSFQHXGCR' where id=9; -update noar ti set b2='FAZS8L0NNL09Y0OXSLSFQHXGCR' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -b0 mediumblob not null, -b1 tinyblob not null, -b2 text not null -) engine=tokudb; -insert into tt values (1,'','',''); -insert into tt values (2,'','',''); -insert into tt values (3,'','',''); -insert into tt values (4,'','',''); -insert into tt values (5,'','',''); -insert into tt values (6,'','',''); -insert into tt values (7,'','',''); -insert into tt values (8,'','',''); -insert into tt values (9,'','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set b0='YMYCE8P8GMI7' where id=1; -update noar ti set b0='YMYCE8P8GMI7' where id=1; -update noar tt set b1='UZTBJ4THRVTSY20Q7Q2ZO8FYOA' where id=1; -update noar ti set b1='UZTBJ4THRVTSY20Q7Q2ZO8FYOA' where id=1; -update noar tt set b2='AJGXMDZ7X8' where id=1; -update noar ti set b2='AJGXMDZ7X8' where id=1; -update noar tt set b0='Y8O5HW3L4KBNEINC7M4GE7LZI' where id=2; -update noar ti set b0='Y8O5HW3L4KBNEINC7M4GE7LZI' where id=2; -update noar tt set b1='X2ZTV5HOCD6SPLDNOQYGMEG' where id=2; -update noar ti set b1='X2ZTV5HOCD6SPLDNOQYGMEG' where id=2; -update noar tt set b2='8HH8H71W0558C58N6ST9QZQJ39J6NXMP' where id=2; -update noar ti set b2='8HH8H71W0558C58N6ST9QZQJ39J6NXMP' where id=2; -update noar tt set b0='TNFY7' where id=3; -update noar ti set b0='TNFY7' where id=3; -update noar tt set b1='JEAB54UV1ENN8S6F' where id=3; -update noar ti set b1='JEAB54UV1ENN8S6F' where id=3; -update noar tt set b2='4SRC5NPY2N6JS2VGSC5BD7' where id=3; -update noar ti set b2='4SRC5NPY2N6JS2VGSC5BD7' where id=3; -update noar tt set b0='5NLP436C0GTZJE3NO9462NV' where id=4; -update noar ti set b0='5NLP436C0GTZJE3NO9462NV' where id=4; -update noar tt set b1='2PPH2R' where id=4; -update noar ti set b1='2PPH2R' where id=4; -update noar tt set b2='FT8B55Q97K5F01FLQXN6IB5IHX' where id=4; -update noar ti set b2='FT8B55Q97K5F01FLQXN6IB5IHX' where id=4; -update noar tt set b0='68VIBY5PW8W143FHF3YG' where id=5; -update noar ti set b0='68VIBY5PW8W143FHF3YG' where id=5; -update noar tt set b1='UT' where id=5; -update noar ti set b1='UT' where id=5; -update noar tt set b2='K4RPOHHTSRDIGQYO753GWG72U' where id=5; -update noar ti set b2='K4RPOHHTSRDIGQYO753GWG72U' where id=5; -update noar tt set b0='MO7YS' where id=6; -update noar ti set b0='MO7YS' where id=6; -update noar tt set b1='MQQ2O46FB9LA' where id=6; -update noar ti set b1='MQQ2O46FB9LA' where id=6; -update noar tt set b2='7ROGCMX0C9WFU3CZS3FVZCFW' where id=6; -update noar ti set b2='7ROGCMX0C9WFU3CZS3FVZCFW' where id=6; -update noar tt set b0='2PFN9A7BA8D3U8JEW2' where id=7; -update noar ti set b0='2PFN9A7BA8D3U8JEW2' where id=7; -update noar tt set b1='R6L460429H8J7HKTAX' where id=7; -update noar ti set b1='R6L460429H8J7HKTAX' where id=7; -update noar tt set b2='KS95ZJOYHZ2757URU18' where id=7; -update noar ti set b2='KS95ZJOYHZ2757URU18' where id=7; -update noar tt set b0='SPDC5UL0ICY5WAAXEWEL3W9C0' where id=8; -update noar ti set b0='SPDC5UL0ICY5WAAXEWEL3W9C0' where id=8; -update noar tt set b1='DJS2KYQ9VLMP8HFP4IT427FM' where id=8; -update noar ti set b1='DJS2KYQ9VLMP8HFP4IT427FM' where id=8; -update noar tt set b2='35' where id=8; -update noar ti set b2='35' where id=8; -update noar tt set b0='RLYZGX4MUS4V7M4MLCVNHMWSGDDK9' where id=9; -update noar ti set b0='RLYZGX4MUS4V7M4MLCVNHMWSGDDK9' where id=9; -update noar tt set b1='H' where id=9; -update noar ti set b1='H' where id=9; -update noar tt set b2='NEH1YQIO2YJDPUSQ' where id=9; -update noar ti set b2='NEH1YQIO2YJDPUSQ' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -b0 mediumblob null, -b1 blob null, -b2 tinyblob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set b0='VKPLK3N1ZIKT2H' where id=1; -update noar ti set b0='VKPLK3N1ZIKT2H' where id=1; -update noar tt set b1='LGT0YSN2PZLV1J6J8' where id=1; -update noar ti set b1='LGT0YSN2PZLV1J6J8' where id=1; -update noar tt set b2='7CSRRNGWYEVRH685AZQ98VU3U' where id=1; -update noar ti set b2='7CSRRNGWYEVRH685AZQ98VU3U' where id=1; -update noar tt set b0='LJVZZS65CV9L0LXT72I2O' where id=2; -update noar ti set b0='LJVZZS65CV9L0LXT72I2O' where id=2; -update noar tt set b1='PYFD8X2RUNJTGL78L' where id=2; -update noar ti set b1='PYFD8X2RUNJTGL78L' where id=2; -update noar tt set b2='HMNGSQ67GORBH8NYBOJTQNOLV0' where id=2; -update noar ti set b2='HMNGSQ67GORBH8NYBOJTQNOLV0' where id=2; -update noar tt set b0='QUQT1BMGCF7QD5RH3E2FDCYG2HTKE' where id=3; -update noar ti set b0='QUQT1BMGCF7QD5RH3E2FDCYG2HTKE' where id=3; -update noar tt set b1='RK7AK1N0S27WUR9V' where id=3; -update noar ti set b1='RK7AK1N0S27WUR9V' where id=3; -update noar tt set b2='3L' where id=3; -update noar ti set b2='3L' where id=3; -update noar tt set b0='JP4ZP7R9DG019H6S6DVUK9N9' where id=4; -update noar ti set b0='JP4ZP7R9DG019H6S6DVUK9N9' where id=4; -update noar tt set b1='6OK2GAJ85EXM5LQLNEU3' where id=4; -update noar ti set b1='6OK2GAJ85EXM5LQLNEU3' where id=4; -update noar tt set b2='2ML1QL1EQNBMTWE3VW6V9EZBC6V' where id=4; -update noar ti set b2='2ML1QL1EQNBMTWE3VW6V9EZBC6V' where id=4; -update noar tt set b0='8V3Q9BISTIOVU30EGGER4QO' where id=5; -update noar ti set b0='8V3Q9BISTIOVU30EGGER4QO' where id=5; -update noar tt set b1='LYW0RNG6K4FHMJH4L4MNJBX1O339' where id=5; -update noar ti set b1='LYW0RNG6K4FHMJH4L4MNJBX1O339' where id=5; -update noar tt set b2='DXJVMTC5RA8K6Z0' where id=5; -update noar ti set b2='DXJVMTC5RA8K6Z0' where id=5; -update noar tt set b0='BTT' where id=6; -update noar ti set b0='BTT' where id=6; -update noar tt set b1='EDSDMIZT' where id=6; -update noar ti set b1='EDSDMIZT' where id=6; -update noar tt set b2='RJ8GH25E83V36B7L0OM1F8IUJ' where id=6; -update noar ti set b2='RJ8GH25E83V36B7L0OM1F8IUJ' where id=6; -update noar tt set b0='RY' where id=7; -update noar ti set b0='RY' where id=7; -update noar tt set b1='FETAKMZA1TAYVC' where id=7; -update noar ti set b1='FETAKMZA1TAYVC' where id=7; -update noar tt set b2='D4ON5F2LHUWNGYSK659NMD26EMJR' where id=7; -update noar ti set b2='D4ON5F2LHUWNGYSK659NMD26EMJR' where id=7; -update noar tt set b0='6' where id=8; -update noar ti set b0='6' where id=8; -update noar tt set b1='NP7Q' where id=8; -update noar ti set b1='NP7Q' where id=8; -update noar tt set b2='92GHAK3UC41BQQQ74WDJKEZU4004W' where id=8; -update noar ti set b2='92GHAK3UC41BQQQ74WDJKEZU4004W' where id=8; -update noar tt set b0='4I70HF60JPC5AXVS' where id=9; -update noar ti set b0='4I70HF60JPC5AXVS' where id=9; -update noar tt set b1='XG5KV63MIR4' where id=9; -update noar ti set b1='XG5KV63MIR4' where id=9; -update noar tt set b2='M' where id=9; -update noar ti set b2='M' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -b0 mediumblob not null, -b1 blob not null, -b2 tinyblob not null -) engine=tokudb; -insert into tt values (1,'','',''); -insert into tt values (2,'','',''); -insert into tt values (3,'','',''); -insert into tt values (4,'','',''); -insert into tt values (5,'','',''); -insert into tt values (6,'','',''); -insert into tt values (7,'','',''); -insert into tt values (8,'','',''); -insert into tt values (9,'','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set b0='MDFIB' where id=1; -update noar ti set b0='MDFIB' where id=1; -update noar tt set b1='OQGVS0EOTEIM4N2UDZRMYZUR2ELJ1ZKI' where id=1; -update noar ti set b1='OQGVS0EOTEIM4N2UDZRMYZUR2ELJ1ZKI' where id=1; -update noar tt set b2='2UYHY7Q8SHCVVXMW38PD4TJP8IDT6IT' where id=1; -update noar ti set b2='2UYHY7Q8SHCVVXMW38PD4TJP8IDT6IT' where id=1; -update noar tt set b0='0AHCRI641CCOI4E7LNU55HZLOB' where id=2; -update noar ti set b0='0AHCRI641CCOI4E7LNU55HZLOB' where id=2; -update noar tt set b1='5BRY' where id=2; -update noar ti set b1='5BRY' where id=2; -update noar tt set b2='2W4GA02T952WC3LB8ZB7' where id=2; -update noar ti set b2='2W4GA02T952WC3LB8ZB7' where id=2; -update noar tt set b0='T9N54ULE3FM7QW9I6R65VZT0R' where id=3; -update noar ti set b0='T9N54ULE3FM7QW9I6R65VZT0R' where id=3; -update noar tt set b1='MIIUIJFI6Q0' where id=3; -update noar ti set b1='MIIUIJFI6Q0' where id=3; -update noar tt set b2='Y33MADV1S88N77O7BDV97RPA24' where id=3; -update noar ti set b2='Y33MADV1S88N77O7BDV97RPA24' where id=3; -update noar tt set b0='0OW7KECKABL7H25IV77X' where id=4; -update noar ti set b0='0OW7KECKABL7H25IV77X' where id=4; -update noar tt set b1='Z69J3UK9C0FQLMHK6DACGO' where id=4; -update noar ti set b1='Z69J3UK9C0FQLMHK6DACGO' where id=4; -update noar tt set b2='FKNZ3E0HAVK2F7OQF81HGY' where id=4; -update noar ti set b2='FKNZ3E0HAVK2F7OQF81HGY' where id=4; -update noar tt set b0='SJEG65Q5XMVJDMSNIPE2PA4' where id=5; -update noar ti set b0='SJEG65Q5XMVJDMSNIPE2PA4' where id=5; -update noar tt set b1='X0LAU7QAE' where id=5; -update noar ti set b1='X0LAU7QAE' where id=5; -update noar tt set b2='VA4TZ0' where id=5; -update noar ti set b2='VA4TZ0' where id=5; -update noar tt set b0='S67IEBZ5VE9E6KXVN69C6IKBXNC79' where id=6; -update noar ti set b0='S67IEBZ5VE9E6KXVN69C6IKBXNC79' where id=6; -update noar tt set b1='JS1T1T9WUJ0ONCALCWXRIP61' where id=6; -update noar ti set b1='JS1T1T9WUJ0ONCALCWXRIP61' where id=6; -update noar tt set b2='41IM1TLAGJRUF' where id=6; -update noar ti set b2='41IM1TLAGJRUF' where id=6; -update noar tt set b0='O4B6EQJIG6YGTE24JBUE9USP8YCXAYO' where id=7; -update noar ti set b0='O4B6EQJIG6YGTE24JBUE9USP8YCXAYO' where id=7; -update noar tt set b1='M1AGL5R1WUX8VPH2PD07K9' where id=7; -update noar ti set b1='M1AGL5R1WUX8VPH2PD07K9' where id=7; -update noar tt set b2='56JGZ0WFQ0CO' where id=7; -update noar ti set b2='56JGZ0WFQ0CO' where id=7; -update noar tt set b0='98WQGN0SEA3KWPX9' where id=8; -update noar ti set b0='98WQGN0SEA3KWPX9' where id=8; -update noar tt set b1='M' where id=8; -update noar ti set b1='M' where id=8; -update noar tt set b2='CCMBWCMP8EBLDBROU87X51YJ0PFGQDQ' where id=8; -update noar ti set b2='CCMBWCMP8EBLDBROU87X51YJ0PFGQDQ' where id=8; -update noar tt set b0='7EZ975GBTEZ8WNXJLPAGT7DBHS38BI' where id=9; -update noar ti set b0='7EZ975GBTEZ8WNXJLPAGT7DBHS38BI' where id=9; -update noar tt set b1='31ZGLQA6MNJCMHWH' where id=9; -update noar ti set b1='31ZGLQA6MNJCMHWH' where id=9; -update noar tt set b2='V2HSZ2ARKWL9ELN' where id=9; -update noar ti set b2='V2HSZ2ARKWL9ELN' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -b0 mediumblob null, -b1 blob null, -b2 blob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set b0='7AKGPPU11NCCRVU' where id=1; -update noar ti set b0='7AKGPPU11NCCRVU' where id=1; -update noar tt set b1='6IFGUZKQ2QOVLP492MIQ1OGMLKX' where id=1; -update noar ti set b1='6IFGUZKQ2QOVLP492MIQ1OGMLKX' where id=1; -update noar tt set b2='82DX861HZI' where id=1; -update noar ti set b2='82DX861HZI' where id=1; -update noar tt set b0='SKZ2I5L' where id=2; -update noar ti set b0='SKZ2I5L' where id=2; -update noar tt set b1='P9' where id=2; -update noar ti set b1='P9' where id=2; -update noar tt set b2='S93P0NASDKH91NAD03EUP4IRN' where id=2; -update noar ti set b2='S93P0NASDKH91NAD03EUP4IRN' where id=2; -update noar tt set b0='XE8FRXQ7NQPYZ' where id=3; -update noar ti set b0='XE8FRXQ7NQPYZ' where id=3; -update noar tt set b1='9AX6HGJ9XXMMGOSR658RH8H6KU' where id=3; -update noar ti set b1='9AX6HGJ9XXMMGOSR658RH8H6KU' where id=3; -update noar tt set b2='HHEI5' where id=3; -update noar ti set b2='HHEI5' where id=3; -update noar tt set b0='CYKKBK7S7S7D' where id=4; -update noar ti set b0='CYKKBK7S7S7D' where id=4; -update noar tt set b1='1C67J3MPCG4NKAQ0KYLDYNY' where id=4; -update noar ti set b1='1C67J3MPCG4NKAQ0KYLDYNY' where id=4; -update noar tt set b2='FVTB3MJI5A4UZBLLVHEK26QJ8Y3606G' where id=4; -update noar ti set b2='FVTB3MJI5A4UZBLLVHEK26QJ8Y3606G' where id=4; -update noar tt set b0='F5AXCNHWHF831HHCO4' where id=5; -update noar ti set b0='F5AXCNHWHF831HHCO4' where id=5; -update noar tt set b1='4Y7L42E36MZT6DM49H66V3B4L' where id=5; -update noar ti set b1='4Y7L42E36MZT6DM49H66V3B4L' where id=5; -update noar tt set b2='P' where id=5; -update noar ti set b2='P' where id=5; -update noar tt set b0='GRX6JREF7TMQ1FLW8' where id=6; -update noar ti set b0='GRX6JREF7TMQ1FLW8' where id=6; -update noar tt set b1='4YC0XH6C8' where id=6; -update noar ti set b1='4YC0XH6C8' where id=6; -update noar tt set b2='C' where id=6; -update noar ti set b2='C' where id=6; -update noar tt set b0='ICYOVFN1IZ48H8RQQESGDHL1N4IXT' where id=7; -update noar ti set b0='ICYOVFN1IZ48H8RQQESGDHL1N4IXT' where id=7; -update noar tt set b1='N1OL87YNVZY17DE5XIUTMB9KLPTIIW' where id=7; -update noar ti set b1='N1OL87YNVZY17DE5XIUTMB9KLPTIIW' where id=7; -update noar tt set b2='0IPWNZQWWODVEFLHVHVUOZ4CDDOB1Z' where id=7; -update noar ti set b2='0IPWNZQWWODVEFLHVHVUOZ4CDDOB1Z' where id=7; -update noar tt set b0='2L540LSQDZ9D7' where id=8; -update noar ti set b0='2L540LSQDZ9D7' where id=8; -update noar tt set b1='4O69ZESBJCLEWZFHZBR3' where id=8; -update noar ti set b1='4O69ZESBJCLEWZFHZBR3' where id=8; -update noar tt set b2='J' where id=8; -update noar ti set b2='J' where id=8; -update noar tt set b0='RLJ7OMM5RG9NS3JU6JNGNDKS' where id=9; -update noar ti set b0='RLJ7OMM5RG9NS3JU6JNGNDKS' where id=9; -update noar tt set b1='BK3SQAX98YDFZG6C0YA6YRSNF0SE' where id=9; -update noar ti set b1='BK3SQAX98YDFZG6C0YA6YRSNF0SE' where id=9; -update noar tt set b2='3G5AHBMBABMFAYASK1S8P18' where id=9; -update noar ti set b2='3G5AHBMBABMFAYASK1S8P18' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -b0 mediumblob not null, -b1 blob not null, -b2 blob not null -) engine=tokudb; -insert into tt values (1,'','',''); -insert into tt values (2,'','',''); -insert into tt values (3,'','',''); -insert into tt values (4,'','',''); -insert into tt values (5,'','',''); -insert into tt values (6,'','',''); -insert into tt values (7,'','',''); -insert into tt values (8,'','',''); -insert into tt values (9,'','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set b0='O91C7UOF2' where id=1; -update noar ti set b0='O91C7UOF2' where id=1; -update noar tt set b1='FDOELIS4SXL88' where id=1; -update noar ti set b1='FDOELIS4SXL88' where id=1; -update noar tt set b2='KETCLYBDCEUP4UX6DUV8JXAY' where id=1; -update noar ti set b2='KETCLYBDCEUP4UX6DUV8JXAY' where id=1; -update noar tt set b0='FVS8NGVZS3NS1C' where id=2; -update noar ti set b0='FVS8NGVZS3NS1C' where id=2; -update noar tt set b1='18RUXF2PF' where id=2; -update noar ti set b1='18RUXF2PF' where id=2; -update noar tt set b2='NAO' where id=2; -update noar ti set b2='NAO' where id=2; -update noar tt set b0='KHPPOP8K1F0OK9Z' where id=3; -update noar ti set b0='KHPPOP8K1F0OK9Z' where id=3; -update noar tt set b1='L7TEXY6O2G' where id=3; -update noar ti set b1='L7TEXY6O2G' where id=3; -update noar tt set b2='K6J6MY4ISE3' where id=3; -update noar ti set b2='K6J6MY4ISE3' where id=3; -update noar tt set b0='NVHHMT6GV0WN' where id=4; -update noar ti set b0='NVHHMT6GV0WN' where id=4; -update noar tt set b1='FP65XW87J8RLCQ7EQP' where id=4; -update noar ti set b1='FP65XW87J8RLCQ7EQP' where id=4; -update noar tt set b2='63CIMN' where id=4; -update noar ti set b2='63CIMN' where id=4; -update noar tt set b0='TRP2PJEMO' where id=5; -update noar ti set b0='TRP2PJEMO' where id=5; -update noar tt set b1='I2HA' where id=5; -update noar ti set b1='I2HA' where id=5; -update noar tt set b2='42XNK4KW1' where id=5; -update noar ti set b2='42XNK4KW1' where id=5; -update noar tt set b0='W3U' where id=6; -update noar ti set b0='W3U' where id=6; -update noar tt set b1='ALQ8C4RHKDP9NFX8561SJGJ' where id=6; -update noar ti set b1='ALQ8C4RHKDP9NFX8561SJGJ' where id=6; -update noar tt set b2='DGE1WSFZIPJ5AL' where id=6; -update noar ti set b2='DGE1WSFZIPJ5AL' where id=6; -update noar tt set b0='NLW2JZHCG3PM1TWA5' where id=7; -update noar ti set b0='NLW2JZHCG3PM1TWA5' where id=7; -update noar tt set b1='9999KA9DY' where id=7; -update noar ti set b1='9999KA9DY' where id=7; -update noar tt set b2='XELOLNNA' where id=7; -update noar ti set b2='XELOLNNA' where id=7; -update noar tt set b0='NQYSBME4MRMEIL1T5AG4QEDES0TUOSI5' where id=8; -update noar ti set b0='NQYSBME4MRMEIL1T5AG4QEDES0TUOSI5' where id=8; -update noar tt set b1='B8SH6SJLUCZ3CVFKX7' where id=8; -update noar ti set b1='B8SH6SJLUCZ3CVFKX7' where id=8; -update noar tt set b2='S5UK' where id=8; -update noar ti set b2='S5UK' where id=8; -update noar tt set b0='J24J15XUVQ4TWAYJZO3E9OF6UHT96' where id=9; -update noar ti set b0='J24J15XUVQ4TWAYJZO3E9OF6UHT96' where id=9; -update noar tt set b1='P40V3QGZKN2IWXVEVDZJD18SD237U6N' where id=9; -update noar ti set b1='P40V3QGZKN2IWXVEVDZJD18SD237U6N' where id=9; -update noar tt set b2='V1L0KAX6TW70B3U3HH4989AIQL' where id=9; -update noar ti set b2='V1L0KAX6TW70B3U3HH4989AIQL' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -b0 mediumblob null, -b1 blob null, -b2 mediumblob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set b0='3X26JF2IKOEJXR8RI8SJD4K1RQTZL77' where id=1; -update noar ti set b0='3X26JF2IKOEJXR8RI8SJD4K1RQTZL77' where id=1; -update noar tt set b1='1H89K0' where id=1; -update noar ti set b1='1H89K0' where id=1; -update noar tt set b2='AEBSTU3QJ7J' where id=1; -update noar ti set b2='AEBSTU3QJ7J' where id=1; -update noar tt set b0='IOVPXM9H' where id=2; -update noar ti set b0='IOVPXM9H' where id=2; -update noar tt set b1='DB03N79WJTM2' where id=2; -update noar ti set b1='DB03N79WJTM2' where id=2; -update noar tt set b2='6YZ' where id=2; -update noar ti set b2='6YZ' where id=2; -update noar tt set b0='MZBW4' where id=3; -update noar ti set b0='MZBW4' where id=3; -update noar tt set b1='VMGNKDF879CIPWM' where id=3; -update noar ti set b1='VMGNKDF879CIPWM' where id=3; -update noar tt set b2='9TAQQZ3YLFC8BZFSFP0OMH18E89QR2' where id=3; -update noar ti set b2='9TAQQZ3YLFC8BZFSFP0OMH18E89QR2' where id=3; -update noar tt set b0='QKALGN8UWXN5HK' where id=4; -update noar ti set b0='QKALGN8UWXN5HK' where id=4; -update noar tt set b1='DPYQX3EAGFPK3V09JGI3KOGNVSH3' where id=4; -update noar ti set b1='DPYQX3EAGFPK3V09JGI3KOGNVSH3' where id=4; -update noar tt set b2='XL9I080FF1ZPPQE1XXFXKTM14ETEU7R8' where id=4; -update noar ti set b2='XL9I080FF1ZPPQE1XXFXKTM14ETEU7R8' where id=4; -update noar tt set b0='LICZX7Z6L3UN9FGWFZMWA5' where id=5; -update noar ti set b0='LICZX7Z6L3UN9FGWFZMWA5' where id=5; -update noar tt set b1='W5HCDPWAYHRNLLEO' where id=5; -update noar ti set b1='W5HCDPWAYHRNLLEO' where id=5; -update noar tt set b2='Q38DFVLCJZWIS' where id=5; -update noar ti set b2='Q38DFVLCJZWIS' where id=5; -update noar tt set b0='XCWFUJEO7WH7I582SLGQMFOPAWSH' where id=6; -update noar ti set b0='XCWFUJEO7WH7I582SLGQMFOPAWSH' where id=6; -update noar tt set b1='W5TW0ZVH2KJJ9EM' where id=6; -update noar ti set b1='W5TW0ZVH2KJJ9EM' where id=6; -update noar tt set b2='3UQ32GZEYCEJR1F6GZ9D20Y4F' where id=6; -update noar ti set b2='3UQ32GZEYCEJR1F6GZ9D20Y4F' where id=6; -update noar tt set b0='VWA2Z4A7RG3LUMQSOACV8' where id=7; -update noar ti set b0='VWA2Z4A7RG3LUMQSOACV8' where id=7; -update noar tt set b1='74OBJ3' where id=7; -update noar ti set b1='74OBJ3' where id=7; -update noar tt set b2='DQ2FS82GDOWDKLFGT36X8Z3WBY5NHFZ' where id=7; -update noar ti set b2='DQ2FS82GDOWDKLFGT36X8Z3WBY5NHFZ' where id=7; -update noar tt set b0='847XT' where id=8; -update noar ti set b0='847XT' where id=8; -update noar tt set b1='DEFNGHAXTWVF7T5CFXD1YZIBXFWOE' where id=8; -update noar ti set b1='DEFNGHAXTWVF7T5CFXD1YZIBXFWOE' where id=8; -update noar tt set b2='I8Y94A9M12EE2PA8KH4LDCP' where id=8; -update noar ti set b2='I8Y94A9M12EE2PA8KH4LDCP' where id=8; -update noar tt set b0='6IWV2H0OSVESQUNFNIDM8SHM99MSEJG' where id=9; -update noar ti set b0='6IWV2H0OSVESQUNFNIDM8SHM99MSEJG' where id=9; -update noar tt set b1='X95F5RRP6BQRCL9ZGTR9FW' where id=9; -update noar ti set b1='X95F5RRP6BQRCL9ZGTR9FW' where id=9; -update noar tt set b2='EZ7MCODQ4T370IYQK0Q3Z4GE1TY4' where id=9; -update noar ti set b2='EZ7MCODQ4T370IYQK0Q3Z4GE1TY4' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -b0 mediumblob not null, -b1 blob not null, -b2 mediumblob not null -) engine=tokudb; -insert into tt values (1,'','',''); -insert into tt values (2,'','',''); -insert into tt values (3,'','',''); -insert into tt values (4,'','',''); -insert into tt values (5,'','',''); -insert into tt values (6,'','',''); -insert into tt values (7,'','',''); -insert into tt values (8,'','',''); -insert into tt values (9,'','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set b0='EJAYT73EFQF0JXCSHI6FCN68I' where id=1; -update noar ti set b0='EJAYT73EFQF0JXCSHI6FCN68I' where id=1; -update noar tt set b1='IZ4DWL82DMXQWHO39WJ' where id=1; -update noar ti set b1='IZ4DWL82DMXQWHO39WJ' where id=1; -update noar tt set b2='SW9AN82TRMA3O2' where id=1; -update noar ti set b2='SW9AN82TRMA3O2' where id=1; -update noar tt set b0='WJJ0LQEQMCCLZ3CYQOFAQM9RCQE2S5QK' where id=2; -update noar ti set b0='WJJ0LQEQMCCLZ3CYQOFAQM9RCQE2S5QK' where id=2; -update noar tt set b1='IKUX9' where id=2; -update noar ti set b1='IKUX9' where id=2; -update noar tt set b2='TBKO9S9YME5VMUMNM' where id=2; -update noar ti set b2='TBKO9S9YME5VMUMNM' where id=2; -update noar tt set b0='V4K0MSWCYRKVLAR1SDGD6VI8UIB6WKTV' where id=3; -update noar ti set b0='V4K0MSWCYRKVLAR1SDGD6VI8UIB6WKTV' where id=3; -update noar tt set b1='82DRWXJLWU0' where id=3; -update noar ti set b1='82DRWXJLWU0' where id=3; -update noar tt set b2='7CJLP30J0DEZ8DHXY9QL0REB1IP6C7' where id=3; -update noar ti set b2='7CJLP30J0DEZ8DHXY9QL0REB1IP6C7' where id=3; -update noar tt set b0='2W1KES6ZG' where id=4; -update noar ti set b0='2W1KES6ZG' where id=4; -update noar tt set b1='H6S8HZOE1OC12DLH' where id=4; -update noar ti set b1='H6S8HZOE1OC12DLH' where id=4; -update noar tt set b2='4KCV' where id=4; -update noar ti set b2='4KCV' where id=4; -update noar tt set b0='E1D1' where id=5; -update noar ti set b0='E1D1' where id=5; -update noar tt set b1='6R93XA7P7XS56BN9RE7L8CVU30UN6' where id=5; -update noar ti set b1='6R93XA7P7XS56BN9RE7L8CVU30UN6' where id=5; -update noar tt set b2='12D8WBNCCKT4VDTFTN2OUY41VKL' where id=5; -update noar ti set b2='12D8WBNCCKT4VDTFTN2OUY41VKL' where id=5; -update noar tt set b0='7AAB27VV' where id=6; -update noar ti set b0='7AAB27VV' where id=6; -update noar tt set b1='6JJVG4X4O9GG' where id=6; -update noar ti set b1='6JJVG4X4O9GG' where id=6; -update noar tt set b2='UUJW9L1LQUN0V6CBPPYYKL' where id=6; -update noar ti set b2='UUJW9L1LQUN0V6CBPPYYKL' where id=6; -update noar tt set b0='H7LKPK14' where id=7; -update noar ti set b0='H7LKPK14' where id=7; -update noar tt set b1='NNIC' where id=7; -update noar ti set b1='NNIC' where id=7; -update noar tt set b2='912R7JF3SGDANWMX' where id=7; -update noar ti set b2='912R7JF3SGDANWMX' where id=7; -update noar tt set b0='WR68BE4JVU9LR75NRIORVNL2' where id=8; -update noar ti set b0='WR68BE4JVU9LR75NRIORVNL2' where id=8; -update noar tt set b1='VI5' where id=8; -update noar ti set b1='VI5' where id=8; -update noar tt set b2='N3PA4V290N1' where id=8; -update noar ti set b2='N3PA4V290N1' where id=8; -update noar tt set b0='C1SFTQNYT6CYT21WLXUJCYIMF6' where id=9; -update noar ti set b0='C1SFTQNYT6CYT21WLXUJCYIMF6' where id=9; -update noar tt set b1='TN13NYRJ' where id=9; -update noar ti set b1='TN13NYRJ' where id=9; -update noar tt set b2='D6ZM8YMGN8DKA0669II8' where id=9; -update noar ti set b2='D6ZM8YMGN8DKA0669II8' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -b0 mediumblob null, -b1 blob null, -b2 longblob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set b0='1' where id=1; -update noar ti set b0='1' where id=1; -update noar tt set b1='L0N' where id=1; -update noar ti set b1='L0N' where id=1; -update noar tt set b2='AQQKVUJ9J' where id=1; -update noar ti set b2='AQQKVUJ9J' where id=1; -update noar tt set b0='E1PEZCW' where id=2; -update noar ti set b0='E1PEZCW' where id=2; -update noar tt set b1='4XBXLQHGD8YVSEQH88' where id=2; -update noar ti set b1='4XBXLQHGD8YVSEQH88' where id=2; -update noar tt set b2='QRLE9CRZAW0CP0CZK75' where id=2; -update noar ti set b2='QRLE9CRZAW0CP0CZK75' where id=2; -update noar tt set b0='4DWWUJ8FIP4H7C08QLID9' where id=3; -update noar ti set b0='4DWWUJ8FIP4H7C08QLID9' where id=3; -update noar tt set b1='ZWN0ARCSA4EBX52BLK36QVDRNDK7O3CW' where id=3; -update noar ti set b1='ZWN0ARCSA4EBX52BLK36QVDRNDK7O3CW' where id=3; -update noar tt set b2='Z' where id=3; -update noar ti set b2='Z' where id=3; -update noar tt set b0='UZNR324660DTPQ' where id=4; -update noar ti set b0='UZNR324660DTPQ' where id=4; -update noar tt set b1='ULR0Z' where id=4; -update noar ti set b1='ULR0Z' where id=4; -update noar tt set b2='S0WF13' where id=4; -update noar ti set b2='S0WF13' where id=4; -update noar tt set b0='YBO0YM' where id=5; -update noar ti set b0='YBO0YM' where id=5; -update noar tt set b1='GB4FX7AVD' where id=5; -update noar ti set b1='GB4FX7AVD' where id=5; -update noar tt set b2='WZX9U35NHLDLV4NK1ND1PL35A' where id=5; -update noar ti set b2='WZX9U35NHLDLV4NK1ND1PL35A' where id=5; -update noar tt set b0='9QSDYIK0X9N2SC' where id=6; -update noar ti set b0='9QSDYIK0X9N2SC' where id=6; -update noar tt set b1='W818Y' where id=6; -update noar ti set b1='W818Y' where id=6; -update noar tt set b2='KC7UY55SPKOJ' where id=6; -update noar ti set b2='KC7UY55SPKOJ' where id=6; -update noar tt set b0='THR6G359C' where id=7; -update noar ti set b0='THR6G359C' where id=7; -update noar tt set b1='9C6H4G78JPKM' where id=7; -update noar ti set b1='9C6H4G78JPKM' where id=7; -update noar tt set b2='8S9TGUB85I60MCM9' where id=7; -update noar ti set b2='8S9TGUB85I60MCM9' where id=7; -update noar tt set b0='TDL' where id=8; -update noar ti set b0='TDL' where id=8; -update noar tt set b1='85THFM0SKT34ARK2H1U3FIK72D9' where id=8; -update noar ti set b1='85THFM0SKT34ARK2H1U3FIK72D9' where id=8; -update noar tt set b2='7Y8X23H2FTD2T786JSW1R47PDBYFQ' where id=8; -update noar ti set b2='7Y8X23H2FTD2T786JSW1R47PDBYFQ' where id=8; -update noar tt set b0='S3Z15XFEBPYEW2NZM' where id=9; -update noar ti set b0='S3Z15XFEBPYEW2NZM' where id=9; -update noar tt set b1='R' where id=9; -update noar ti set b1='R' where id=9; -update noar tt set b2='QWIRW1T84WI9KTZ0W20Y2' where id=9; -update noar ti set b2='QWIRW1T84WI9KTZ0W20Y2' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -b0 mediumblob not null, -b1 blob not null, -b2 longblob not null -) engine=tokudb; -insert into tt values (1,'','',''); -insert into tt values (2,'','',''); -insert into tt values (3,'','',''); -insert into tt values (4,'','',''); -insert into tt values (5,'','',''); -insert into tt values (6,'','',''); -insert into tt values (7,'','',''); -insert into tt values (8,'','',''); -insert into tt values (9,'','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set b0='22WZ3FQ0ZUBMHZV9' where id=1; -update noar ti set b0='22WZ3FQ0ZUBMHZV9' where id=1; -update noar tt set b1='RSR1JAJDTRHLXTSGXJZ6WQTZHUGC' where id=1; -update noar ti set b1='RSR1JAJDTRHLXTSGXJZ6WQTZHUGC' where id=1; -update noar tt set b2='C3KE1GRUKMX24YJ207NB0BFIGLCOJ4F' where id=1; -update noar ti set b2='C3KE1GRUKMX24YJ207NB0BFIGLCOJ4F' where id=1; -update noar tt set b0='K09S3DYTK7MY7GAF' where id=2; -update noar ti set b0='K09S3DYTK7MY7GAF' where id=2; -update noar tt set b1='6EQHPW' where id=2; -update noar ti set b1='6EQHPW' where id=2; -update noar tt set b2='C6TNIL' where id=2; -update noar ti set b2='C6TNIL' where id=2; -update noar tt set b0='CVC79L9RD8S6WHRYUKWBIB08' where id=3; -update noar ti set b0='CVC79L9RD8S6WHRYUKWBIB08' where id=3; -update noar tt set b1='9P6JZ6B9LP9EQ6H' where id=3; -update noar ti set b1='9P6JZ6B9LP9EQ6H' where id=3; -update noar tt set b2='LTR15JO1CM5LLVKS7TDVYLFG8I79ZA' where id=3; -update noar ti set b2='LTR15JO1CM5LLVKS7TDVYLFG8I79ZA' where id=3; -update noar tt set b0='CJ3ECLJKIC73ZSX' where id=4; -update noar ti set b0='CJ3ECLJKIC73ZSX' where id=4; -update noar tt set b1='MI60P6L28O1D0UQ9NPW6XDLSA67FPO85' where id=4; -update noar ti set b1='MI60P6L28O1D0UQ9NPW6XDLSA67FPO85' where id=4; -update noar tt set b2='CQEZH6R6A9IH00WEK8JASF5PD0' where id=4; -update noar ti set b2='CQEZH6R6A9IH00WEK8JASF5PD0' where id=4; -update noar tt set b0='PQBFU01JRLDBRP5' where id=5; -update noar ti set b0='PQBFU01JRLDBRP5' where id=5; -update noar tt set b1='ZAWCQ9NOHB7' where id=5; -update noar ti set b1='ZAWCQ9NOHB7' where id=5; -update noar tt set b2='ACAAP0DFRUASTFUWJKIKAG' where id=5; -update noar ti set b2='ACAAP0DFRUASTFUWJKIKAG' where id=5; -update noar tt set b0='NH2TH' where id=6; -update noar ti set b0='NH2TH' where id=6; -update noar tt set b1='SEMC3JGTY5ET8PRRTMMR0TYJ' where id=6; -update noar ti set b1='SEMC3JGTY5ET8PRRTMMR0TYJ' where id=6; -update noar tt set b2='I0TOS1V1SM' where id=6; -update noar ti set b2='I0TOS1V1SM' where id=6; -update noar tt set b0='7V30E5Q' where id=7; -update noar ti set b0='7V30E5Q' where id=7; -update noar tt set b1='SX' where id=7; -update noar ti set b1='SX' where id=7; -update noar tt set b2='Q0IG' where id=7; -update noar ti set b2='Q0IG' where id=7; -update noar tt set b0='9AYRVW331LKLZ' where id=8; -update noar ti set b0='9AYRVW331LKLZ' where id=8; -update noar tt set b1='1Z7WEU11JK9S4QS21GZV' where id=8; -update noar ti set b1='1Z7WEU11JK9S4QS21GZV' where id=8; -update noar tt set b2='2Q78XXOA' where id=8; -update noar ti set b2='2Q78XXOA' where id=8; -update noar tt set b0='7R' where id=9; -update noar ti set b0='7R' where id=9; -update noar tt set b1='QSC' where id=9; -update noar ti set b1='QSC' where id=9; -update noar tt set b2='4A2DJWOV1UP6BE59HQ' where id=9; -update noar ti set b2='4A2DJWOV1UP6BE59HQ' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -b0 mediumblob null, -b1 blob null, -b2 text null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set b0='MSIMS2NJBQ6G' where id=1; -update noar ti set b0='MSIMS2NJBQ6G' where id=1; -update noar tt set b1='Y5IIO7KZ46GNNTAX5XNBF8SWL2BPKFT' where id=1; -update noar ti set b1='Y5IIO7KZ46GNNTAX5XNBF8SWL2BPKFT' where id=1; -update noar tt set b2='SPCOX5B8PCDRZ49S' where id=1; -update noar ti set b2='SPCOX5B8PCDRZ49S' where id=1; -update noar tt set b0='KM5F7FYPG24L46MRK5DVAH' where id=2; -update noar ti set b0='KM5F7FYPG24L46MRK5DVAH' where id=2; -update noar tt set b1='V6R5EMQB' where id=2; -update noar ti set b1='V6R5EMQB' where id=2; -update noar tt set b2='XAY2Q60TILQGUZSILTC7YXP' where id=2; -update noar ti set b2='XAY2Q60TILQGUZSILTC7YXP' where id=2; -update noar tt set b0='VMHYRIMI5XQKQ1TMZAEA20' where id=3; -update noar ti set b0='VMHYRIMI5XQKQ1TMZAEA20' where id=3; -update noar tt set b1='0FZF4RH7GEFW6U232Y' where id=3; -update noar ti set b1='0FZF4RH7GEFW6U232Y' where id=3; -update noar tt set b2='Q3MMINMGRD7PCYZMQL89VY6T' where id=3; -update noar ti set b2='Q3MMINMGRD7PCYZMQL89VY6T' where id=3; -update noar tt set b0='UPO2F4KASA7POVOGHMFU' where id=4; -update noar ti set b0='UPO2F4KASA7POVOGHMFU' where id=4; -update noar tt set b1='4ASTYO' where id=4; -update noar ti set b1='4ASTYO' where id=4; -update noar tt set b2='V5FT7N4F2N2F2SE37RQIT3YK' where id=4; -update noar ti set b2='V5FT7N4F2N2F2SE37RQIT3YK' where id=4; -update noar tt set b0='UMY5ONQU217ZGJZLU097' where id=5; -update noar ti set b0='UMY5ONQU217ZGJZLU097' where id=5; -update noar tt set b1='PSIFNNQIUM2YS4ITLEMXXZ92K' where id=5; -update noar ti set b1='PSIFNNQIUM2YS4ITLEMXXZ92K' where id=5; -update noar tt set b2='TCFFM6RBB6M1XOLMIUW' where id=5; -update noar ti set b2='TCFFM6RBB6M1XOLMIUW' where id=5; -update noar tt set b0='82JBQJR5KY7VHPDLR6W5' where id=6; -update noar ti set b0='82JBQJR5KY7VHPDLR6W5' where id=6; -update noar tt set b1='DME03HOM3Z9XOMCT53FT2T' where id=6; -update noar ti set b1='DME03HOM3Z9XOMCT53FT2T' where id=6; -update noar tt set b2='O5R4TX3ORZR1' where id=6; -update noar ti set b2='O5R4TX3ORZR1' where id=6; -update noar tt set b0='SLP' where id=7; -update noar ti set b0='SLP' where id=7; -update noar tt set b1='DYCNPMKRY12UGG9Y02AP8E2Y' where id=7; -update noar ti set b1='DYCNPMKRY12UGG9Y02AP8E2Y' where id=7; -update noar tt set b2='FFNU' where id=7; -update noar ti set b2='FFNU' where id=7; -update noar tt set b0='S8G07KK16CPD0KMT054BQQX4BQV' where id=8; -update noar ti set b0='S8G07KK16CPD0KMT054BQQX4BQV' where id=8; -update noar tt set b1='HB2H5C7HI01TZ4KNXIFKVF0ZCL' where id=8; -update noar ti set b1='HB2H5C7HI01TZ4KNXIFKVF0ZCL' where id=8; -update noar tt set b2='9JSROBS45G4M878HRRYDLAYS' where id=8; -update noar ti set b2='9JSROBS45G4M878HRRYDLAYS' where id=8; -update noar tt set b0='ZUD7W4N1ATN' where id=9; -update noar ti set b0='ZUD7W4N1ATN' where id=9; -update noar tt set b1='7D7MPVZ7LIJY41ANQPC83APJM' where id=9; -update noar ti set b1='7D7MPVZ7LIJY41ANQPC83APJM' where id=9; -update noar tt set b2='7E83N26' where id=9; -update noar ti set b2='7E83N26' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -b0 mediumblob not null, -b1 blob not null, -b2 text not null -) engine=tokudb; -insert into tt values (1,'','',''); -insert into tt values (2,'','',''); -insert into tt values (3,'','',''); -insert into tt values (4,'','',''); -insert into tt values (5,'','',''); -insert into tt values (6,'','',''); -insert into tt values (7,'','',''); -insert into tt values (8,'','',''); -insert into tt values (9,'','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set b0='P' where id=1; -update noar ti set b0='P' where id=1; -update noar tt set b1='P5GXUISHA' where id=1; -update noar ti set b1='P5GXUISHA' where id=1; -update noar tt set b2='AMKV' where id=1; -update noar ti set b2='AMKV' where id=1; -update noar tt set b0='1M' where id=2; -update noar ti set b0='1M' where id=2; -update noar tt set b1='ZLEERLPLTTANHGEC1' where id=2; -update noar ti set b1='ZLEERLPLTTANHGEC1' where id=2; -update noar tt set b2='E9MAJQCI94PY45VT1HU1782Y11O' where id=2; -update noar ti set b2='E9MAJQCI94PY45VT1HU1782Y11O' where id=2; -update noar tt set b0='Z4S528S2502' where id=3; -update noar ti set b0='Z4S528S2502' where id=3; -update noar tt set b1='2V7M3LQPCA5R4K1KMZ421RD' where id=3; -update noar ti set b1='2V7M3LQPCA5R4K1KMZ421RD' where id=3; -update noar tt set b2='SP0RNMDX0NFV1K' where id=3; -update noar ti set b2='SP0RNMDX0NFV1K' where id=3; -update noar tt set b0='GXA0MTKXAS9S26FODNE' where id=4; -update noar ti set b0='GXA0MTKXAS9S26FODNE' where id=4; -update noar tt set b1='2UE2V5MBC' where id=4; -update noar ti set b1='2UE2V5MBC' where id=4; -update noar tt set b2='91U6BU5TSUXJN35WXO4U872K3' where id=4; -update noar ti set b2='91U6BU5TSUXJN35WXO4U872K3' where id=4; -update noar tt set b0='FDRN6' where id=5; -update noar ti set b0='FDRN6' where id=5; -update noar tt set b1='UUBC4ORQHCTQP1' where id=5; -update noar ti set b1='UUBC4ORQHCTQP1' where id=5; -update noar tt set b2='27NP2S41' where id=5; -update noar ti set b2='27NP2S41' where id=5; -update noar tt set b0='7' where id=6; -update noar ti set b0='7' where id=6; -update noar tt set b1='QM84AD1VSB556AWDB03WYCUJ' where id=6; -update noar ti set b1='QM84AD1VSB556AWDB03WYCUJ' where id=6; -update noar tt set b2='2S4DPYHBAX4EOLDX0RMWIOK' where id=6; -update noar ti set b2='2S4DPYHBAX4EOLDX0RMWIOK' where id=6; -update noar tt set b0='QD' where id=7; -update noar ti set b0='QD' where id=7; -update noar tt set b1='28CGS888QNM6Z99UNARO' where id=7; -update noar ti set b1='28CGS888QNM6Z99UNARO' where id=7; -update noar tt set b2='MVLD78E1J' where id=7; -update noar ti set b2='MVLD78E1J' where id=7; -update noar tt set b0='LJ66FSSAA170ELUMEPIWZP0OZ8P2DUL' where id=8; -update noar ti set b0='LJ66FSSAA170ELUMEPIWZP0OZ8P2DUL' where id=8; -update noar tt set b1='GDNJAHWG' where id=8; -update noar ti set b1='GDNJAHWG' where id=8; -update noar tt set b2='LGD' where id=8; -update noar ti set b2='LGD' where id=8; -update noar tt set b0='Y0P4H' where id=9; -update noar ti set b0='Y0P4H' where id=9; -update noar tt set b1='F2QNF3D1BQGC' where id=9; -update noar ti set b1='F2QNF3D1BQGC' where id=9; -update noar tt set b2='ZJPHA58THT4GPYHW6MNEH5CBJ0' where id=9; -update noar ti set b2='ZJPHA58THT4GPYHW6MNEH5CBJ0' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -b0 mediumblob null, -b1 mediumblob null, -b2 tinyblob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set b0='346' where id=1; -update noar ti set b0='346' where id=1; -update noar tt set b1='84P9J' where id=1; -update noar ti set b1='84P9J' where id=1; -update noar tt set b2='IQWRE' where id=1; -update noar ti set b2='IQWRE' where id=1; -update noar tt set b0='H2W8A0RDIBPXG6O0U2U3E4R224' where id=2; -update noar ti set b0='H2W8A0RDIBPXG6O0U2U3E4R224' where id=2; -update noar tt set b1='P450GN9OV9' where id=2; -update noar ti set b1='P450GN9OV9' where id=2; -update noar tt set b2='KQ5M' where id=2; -update noar ti set b2='KQ5M' where id=2; -update noar tt set b0='JW4F0728JTXKM5LS3MJM3ZDKP6YKQU' where id=3; -update noar ti set b0='JW4F0728JTXKM5LS3MJM3ZDKP6YKQU' where id=3; -update noar tt set b1='T274QNQKO7Z86FJP42CE3XQ3DR5AES' where id=3; -update noar ti set b1='T274QNQKO7Z86FJP42CE3XQ3DR5AES' where id=3; -update noar tt set b2='4J' where id=3; -update noar ti set b2='4J' where id=3; -update noar tt set b0='9EFS5L36GAFM' where id=4; -update noar ti set b0='9EFS5L36GAFM' where id=4; -update noar tt set b1='D2UJVNS01272WL' where id=4; -update noar ti set b1='D2UJVNS01272WL' where id=4; -update noar tt set b2='7H8S2RDEH56IK9IJ6WMK6B1W77' where id=4; -update noar ti set b2='7H8S2RDEH56IK9IJ6WMK6B1W77' where id=4; -update noar tt set b0='WEU7FNNNUOW5FC' where id=5; -update noar ti set b0='WEU7FNNNUOW5FC' where id=5; -update noar tt set b1='VJLDG5FDJR41ZVYK' where id=5; -update noar ti set b1='VJLDG5FDJR41ZVYK' where id=5; -update noar tt set b2='505CKWK5SYJ1H33XP8YE4A9' where id=5; -update noar ti set b2='505CKWK5SYJ1H33XP8YE4A9' where id=5; -update noar tt set b0='VE4C61TWA5J5CM6' where id=6; -update noar ti set b0='VE4C61TWA5J5CM6' where id=6; -update noar tt set b1='W' where id=6; -update noar ti set b1='W' where id=6; -update noar tt set b2='9IM9MHLNVEJLORYR2' where id=6; -update noar ti set b2='9IM9MHLNVEJLORYR2' where id=6; -update noar tt set b0='PRJ18M7J9BOG7YE' where id=7; -update noar ti set b0='PRJ18M7J9BOG7YE' where id=7; -update noar tt set b1='LFTA28KX75B9TPTWXFG4Q' where id=7; -update noar ti set b1='LFTA28KX75B9TPTWXFG4Q' where id=7; -update noar tt set b2='LHVJ7NXTRNOKGBMDEWJQ' where id=7; -update noar ti set b2='LHVJ7NXTRNOKGBMDEWJQ' where id=7; -update noar tt set b0='BG9I68B' where id=8; -update noar ti set b0='BG9I68B' where id=8; -update noar tt set b1='ISCD8G04JC794SIL3LX8MLI7' where id=8; -update noar ti set b1='ISCD8G04JC794SIL3LX8MLI7' where id=8; -update noar tt set b2='DG' where id=8; -update noar ti set b2='DG' where id=8; -update noar tt set b0='YGKP2NRFBRT84' where id=9; -update noar ti set b0='YGKP2NRFBRT84' where id=9; -update noar tt set b1='03VF' where id=9; -update noar ti set b1='03VF' where id=9; -update noar tt set b2='90UQKJYBNHND17GAR' where id=9; -update noar ti set b2='90UQKJYBNHND17GAR' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -b0 mediumblob not null, -b1 mediumblob not null, -b2 tinyblob not null -) engine=tokudb; -insert into tt values (1,'','',''); -insert into tt values (2,'','',''); -insert into tt values (3,'','',''); -insert into tt values (4,'','',''); -insert into tt values (5,'','',''); -insert into tt values (6,'','',''); -insert into tt values (7,'','',''); -insert into tt values (8,'','',''); -insert into tt values (9,'','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set b0='6YRU50V3ATPC501BOQVTXL8868L52' where id=1; -update noar ti set b0='6YRU50V3ATPC501BOQVTXL8868L52' where id=1; -update noar tt set b1='08BIC1P1Q' where id=1; -update noar ti set b1='08BIC1P1Q' where id=1; -update noar tt set b2='QPDNDN7EYKKAHIJT0VRSGTUWDP06QHQ8' where id=1; -update noar ti set b2='QPDNDN7EYKKAHIJT0VRSGTUWDP06QHQ8' where id=1; -update noar tt set b0='NKZDG9CXZA' where id=2; -update noar ti set b0='NKZDG9CXZA' where id=2; -update noar tt set b1='BG825UXM2D' where id=2; -update noar ti set b1='BG825UXM2D' where id=2; -update noar tt set b2='K2NJILYK234B' where id=2; -update noar ti set b2='K2NJILYK234B' where id=2; -update noar tt set b0='15NIC8087P5' where id=3; -update noar ti set b0='15NIC8087P5' where id=3; -update noar tt set b1='B8YX3XP' where id=3; -update noar ti set b1='B8YX3XP' where id=3; -update noar tt set b2='CRDN503VDT' where id=3; -update noar ti set b2='CRDN503VDT' where id=3; -update noar tt set b0='AYT6AIF9FWQVV' where id=4; -update noar ti set b0='AYT6AIF9FWQVV' where id=4; -update noar tt set b1='E6O0' where id=4; -update noar ti set b1='E6O0' where id=4; -update noar tt set b2='OQ6A2BIUO3SVK0PD0OJ8DEFSXPUHUE' where id=4; -update noar ti set b2='OQ6A2BIUO3SVK0PD0OJ8DEFSXPUHUE' where id=4; -update noar tt set b0='P1LP9441U28B3EUW6CGMYACKB0' where id=5; -update noar ti set b0='P1LP9441U28B3EUW6CGMYACKB0' where id=5; -update noar tt set b1='YMP9WH9TM5VO2S0GEMK76P76H9MZ' where id=5; -update noar ti set b1='YMP9WH9TM5VO2S0GEMK76P76H9MZ' where id=5; -update noar tt set b2='BDIH' where id=5; -update noar ti set b2='BDIH' where id=5; -update noar tt set b0='1SDQR5' where id=6; -update noar ti set b0='1SDQR5' where id=6; -update noar tt set b1='0X9NCUXZIG22B5' where id=6; -update noar ti set b1='0X9NCUXZIG22B5' where id=6; -update noar tt set b2='TOUZPMSNGRWDR' where id=6; -update noar ti set b2='TOUZPMSNGRWDR' where id=6; -update noar tt set b0='CPO187XAHQEGW1S1FDAZDSPYQ' where id=7; -update noar ti set b0='CPO187XAHQEGW1S1FDAZDSPYQ' where id=7; -update noar tt set b1='3QIV1PEBAB0L' where id=7; -update noar ti set b1='3QIV1PEBAB0L' where id=7; -update noar tt set b2='GMMB0GKL315' where id=7; -update noar ti set b2='GMMB0GKL315' where id=7; -update noar tt set b0='RS13W6Z1AUXR' where id=8; -update noar ti set b0='RS13W6Z1AUXR' where id=8; -update noar tt set b1='4Z2H3V52XRMAUMY763NOO3GV' where id=8; -update noar ti set b1='4Z2H3V52XRMAUMY763NOO3GV' where id=8; -update noar tt set b2='GIW1FTH8TB' where id=8; -update noar ti set b2='GIW1FTH8TB' where id=8; -update noar tt set b0='92G26S3NU86O7DGGURQ71' where id=9; -update noar ti set b0='92G26S3NU86O7DGGURQ71' where id=9; -update noar tt set b1='K5R79G5VTHRSCP' where id=9; -update noar ti set b1='K5R79G5VTHRSCP' where id=9; -update noar tt set b2='2TOUXTX37XZ7W6Q' where id=9; -update noar ti set b2='2TOUXTX37XZ7W6Q' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -b0 mediumblob null, -b1 mediumblob null, -b2 blob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set b0='K20XMQ5ICM14FF' where id=1; -update noar ti set b0='K20XMQ5ICM14FF' where id=1; -update noar tt set b1='0NR' where id=1; -update noar ti set b1='0NR' where id=1; -update noar tt set b2='YKOUNOC' where id=1; -update noar ti set b2='YKOUNOC' where id=1; -update noar tt set b0='2CT8R' where id=2; -update noar ti set b0='2CT8R' where id=2; -update noar tt set b1='TZYUMDD' where id=2; -update noar ti set b1='TZYUMDD' where id=2; -update noar tt set b2='O4MWZJS' where id=2; -update noar ti set b2='O4MWZJS' where id=2; -update noar tt set b0='3K8UTRHBGC352I4A9ZL4OTCY2P' where id=3; -update noar ti set b0='3K8UTRHBGC352I4A9ZL4OTCY2P' where id=3; -update noar tt set b1='YFA5ZHPQNH4SIXSM5J5B5JC6NOS4JCH9' where id=3; -update noar ti set b1='YFA5ZHPQNH4SIXSM5J5B5JC6NOS4JCH9' where id=3; -update noar tt set b2='0Y478KRDRJM5E9HUGFQW83415' where id=3; -update noar ti set b2='0Y478KRDRJM5E9HUGFQW83415' where id=3; -update noar tt set b0='89V0' where id=4; -update noar ti set b0='89V0' where id=4; -update noar tt set b1='YOCMJQV9DMNGBXH6L' where id=4; -update noar ti set b1='YOCMJQV9DMNGBXH6L' where id=4; -update noar tt set b2='6KRBZ6KSR3K1UH327XJ8RXRM' where id=4; -update noar ti set b2='6KRBZ6KSR3K1UH327XJ8RXRM' where id=4; -update noar tt set b0='7M6EI4TJBNVQIZE3FA1TCCT0ABAW9EJ6' where id=5; -update noar ti set b0='7M6EI4TJBNVQIZE3FA1TCCT0ABAW9EJ6' where id=5; -update noar tt set b1='BHCJENERCZ2FDYWH7CH51FSL' where id=5; -update noar ti set b1='BHCJENERCZ2FDYWH7CH51FSL' where id=5; -update noar tt set b2='YXMUXG3P' where id=5; -update noar ti set b2='YXMUXG3P' where id=5; -update noar tt set b0='5' where id=6; -update noar ti set b0='5' where id=6; -update noar tt set b1='MSO2AU2INQ8KQFHQFEKC1' where id=6; -update noar ti set b1='MSO2AU2INQ8KQFHQFEKC1' where id=6; -update noar tt set b2='YQC2SIYODUIG88' where id=6; -update noar ti set b2='YQC2SIYODUIG88' where id=6; -update noar tt set b0='BZGP0N0WW94' where id=7; -update noar ti set b0='BZGP0N0WW94' where id=7; -update noar tt set b1='OSWCW9CV7KLK1RZ9MECOP5' where id=7; -update noar ti set b1='OSWCW9CV7KLK1RZ9MECOP5' where id=7; -update noar tt set b2='9X2HWBJ7OC1PBQ4' where id=7; -update noar ti set b2='9X2HWBJ7OC1PBQ4' where id=7; -update noar tt set b0='FQIUY7LUR3KKEG2E7KEFED5V0MW' where id=8; -update noar ti set b0='FQIUY7LUR3KKEG2E7KEFED5V0MW' where id=8; -update noar tt set b1='AUZSU' where id=8; -update noar ti set b1='AUZSU' where id=8; -update noar tt set b2='FGRCY' where id=8; -update noar ti set b2='FGRCY' where id=8; -update noar tt set b0='H5E6IJMPXJC' where id=9; -update noar ti set b0='H5E6IJMPXJC' where id=9; -update noar tt set b1='G62F1053W7' where id=9; -update noar ti set b1='G62F1053W7' where id=9; -update noar tt set b2='NPHPQ560DCNFGUEA' where id=9; -update noar ti set b2='NPHPQ560DCNFGUEA' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -b0 mediumblob not null, -b1 mediumblob not null, -b2 blob not null -) engine=tokudb; -insert into tt values (1,'','',''); -insert into tt values (2,'','',''); -insert into tt values (3,'','',''); -insert into tt values (4,'','',''); -insert into tt values (5,'','',''); -insert into tt values (6,'','',''); -insert into tt values (7,'','',''); -insert into tt values (8,'','',''); -insert into tt values (9,'','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set b0='UEPOWINI' where id=1; -update noar ti set b0='UEPOWINI' where id=1; -update noar tt set b1='WKGVV76LB4UBMC48HIBLD4M2QE' where id=1; -update noar ti set b1='WKGVV76LB4UBMC48HIBLD4M2QE' where id=1; -update noar tt set b2='5V37M1DQ' where id=1; -update noar ti set b2='5V37M1DQ' where id=1; -update noar tt set b0='OBULB2GPD7Y0PV4V79DLOLMT9' where id=2; -update noar ti set b0='OBULB2GPD7Y0PV4V79DLOLMT9' where id=2; -update noar tt set b1='IWQW2X42COGFS0A8F0N3KN6PG' where id=2; -update noar ti set b1='IWQW2X42COGFS0A8F0N3KN6PG' where id=2; -update noar tt set b2='AD4X5P' where id=2; -update noar ti set b2='AD4X5P' where id=2; -update noar tt set b0='LG1LPJUAI4MQXKO9D1O8Z08P18UM8Y' where id=3; -update noar ti set b0='LG1LPJUAI4MQXKO9D1O8Z08P18UM8Y' where id=3; -update noar tt set b1='CTGY99WEBKZH4SNWY' where id=3; -update noar ti set b1='CTGY99WEBKZH4SNWY' where id=3; -update noar tt set b2='L7GNOLVYTONCJ5MDK3ODKX2X' where id=3; -update noar ti set b2='L7GNOLVYTONCJ5MDK3ODKX2X' where id=3; -update noar tt set b0='OHUPUAZC2TARNQ' where id=4; -update noar ti set b0='OHUPUAZC2TARNQ' where id=4; -update noar tt set b1='F6R9J9' where id=4; -update noar ti set b1='F6R9J9' where id=4; -update noar tt set b2='WX' where id=4; -update noar ti set b2='WX' where id=4; -update noar tt set b0='4UARZDMBUV2RQRU49623Y0VMSQ' where id=5; -update noar ti set b0='4UARZDMBUV2RQRU49623Y0VMSQ' where id=5; -update noar tt set b1='VP34VK10RASDCQI3X7J0JO8X' where id=5; -update noar ti set b1='VP34VK10RASDCQI3X7J0JO8X' where id=5; -update noar tt set b2='WJFFRJB3AJQQGAN3NOHS3N9D86G' where id=5; -update noar ti set b2='WJFFRJB3AJQQGAN3NOHS3N9D86G' where id=5; -update noar tt set b0='V7TA9' where id=6; -update noar ti set b0='V7TA9' where id=6; -update noar tt set b1='IK3UI59XXL9H5T6CWY8M1WIUP7OJK' where id=6; -update noar ti set b1='IK3UI59XXL9H5T6CWY8M1WIUP7OJK' where id=6; -update noar tt set b2='1ACTUFUYBTQCY2R8S1K2ACLF' where id=6; -update noar ti set b2='1ACTUFUYBTQCY2R8S1K2ACLF' where id=6; -update noar tt set b0='T625PDFFOBDUJK2A1KVE' where id=7; -update noar ti set b0='T625PDFFOBDUJK2A1KVE' where id=7; -update noar tt set b1='23SSDBWB4TSWB8YIPAD5T3ZGHOH2FI9O' where id=7; -update noar ti set b1='23SSDBWB4TSWB8YIPAD5T3ZGHOH2FI9O' where id=7; -update noar tt set b2='U68BHPDQ6KDFQI865PZQ1DA' where id=7; -update noar ti set b2='U68BHPDQ6KDFQI865PZQ1DA' where id=7; -update noar tt set b0='4AFE5FF6SUQWPVRX9DY7PTS647D29H1I' where id=8; -update noar ti set b0='4AFE5FF6SUQWPVRX9DY7PTS647D29H1I' where id=8; -update noar tt set b1='2JY8X3GADKY0S1VT8Q' where id=8; -update noar ti set b1='2JY8X3GADKY0S1VT8Q' where id=8; -update noar tt set b2='ZIF9BYLNGX154X8K' where id=8; -update noar ti set b2='ZIF9BYLNGX154X8K' where id=8; -update noar tt set b0='7H1TU8YP5A0D' where id=9; -update noar ti set b0='7H1TU8YP5A0D' where id=9; -update noar tt set b1='ADW9A33GI' where id=9; -update noar ti set b1='ADW9A33GI' where id=9; -update noar tt set b2='6IU5TYU9OCB3F4UN9A10HLRF' where id=9; -update noar ti set b2='6IU5TYU9OCB3F4UN9A10HLRF' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -b0 mediumblob null, -b1 mediumblob null, -b2 mediumblob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set b0='P6WFN8S6301YT6PTL2H19SDUG1L' where id=1; -update noar ti set b0='P6WFN8S6301YT6PTL2H19SDUG1L' where id=1; -update noar tt set b1='WT4OI' where id=1; -update noar ti set b1='WT4OI' where id=1; -update noar tt set b2='GNZ' where id=1; -update noar ti set b2='GNZ' where id=1; -update noar tt set b0='POPSLHFW5QON1FT7AYJ6Y' where id=2; -update noar ti set b0='POPSLHFW5QON1FT7AYJ6Y' where id=2; -update noar tt set b1='HY3' where id=2; -update noar ti set b1='HY3' where id=2; -update noar tt set b2='ARFF5BETLD8AJJM' where id=2; -update noar ti set b2='ARFF5BETLD8AJJM' where id=2; -update noar tt set b0='HZ3U9ACQD0RZ' where id=3; -update noar ti set b0='HZ3U9ACQD0RZ' where id=3; -update noar tt set b1='Y730TNJRJFZT8LHDQHDDBD68JBF7G00' where id=3; -update noar ti set b1='Y730TNJRJFZT8LHDQHDDBD68JBF7G00' where id=3; -update noar tt set b2='3Y9W090ESO0SDFNCUJJN' where id=3; -update noar ti set b2='3Y9W090ESO0SDFNCUJJN' where id=3; -update noar tt set b0='TX753P8Y6OEJRGCRQ36FJGP0M11L' where id=4; -update noar ti set b0='TX753P8Y6OEJRGCRQ36FJGP0M11L' where id=4; -update noar tt set b1='O4SSRIWGVDZTTA9VZP7' where id=4; -update noar ti set b1='O4SSRIWGVDZTTA9VZP7' where id=4; -update noar tt set b2='2KHD2MAZPKM6EGWVU47WVF' where id=4; -update noar ti set b2='2KHD2MAZPKM6EGWVU47WVF' where id=4; -update noar tt set b0='4QVZKM' where id=5; -update noar ti set b0='4QVZKM' where id=5; -update noar tt set b1='0NJVRH' where id=5; -update noar ti set b1='0NJVRH' where id=5; -update noar tt set b2='V' where id=5; -update noar ti set b2='V' where id=5; -update noar tt set b0='85RL2F4OBNK' where id=6; -update noar ti set b0='85RL2F4OBNK' where id=6; -update noar tt set b1='PYGDSSP9E9' where id=6; -update noar ti set b1='PYGDSSP9E9' where id=6; -update noar tt set b2='2N5XN6O' where id=6; -update noar ti set b2='2N5XN6O' where id=6; -update noar tt set b0='QQG91P0SP1AXBV34X7I' where id=7; -update noar ti set b0='QQG91P0SP1AXBV34X7I' where id=7; -update noar tt set b1='QJ1RI65PXRIB3XNSIPJ05V5M' where id=7; -update noar ti set b1='QJ1RI65PXRIB3XNSIPJ05V5M' where id=7; -update noar tt set b2='NL13BN1UF870L4WD' where id=7; -update noar ti set b2='NL13BN1UF870L4WD' where id=7; -update noar tt set b0='OSZALWNP8A' where id=8; -update noar ti set b0='OSZALWNP8A' where id=8; -update noar tt set b1='UP1EOBGBI73I3QMI8G0P1' where id=8; -update noar ti set b1='UP1EOBGBI73I3QMI8G0P1' where id=8; -update noar tt set b2='1DTP8Z5509706J5MDAS4733S7Q2JEKF3' where id=8; -update noar ti set b2='1DTP8Z5509706J5MDAS4733S7Q2JEKF3' where id=8; -update noar tt set b0='PKDZWEWQW3FAGDMI5QLSLWQZP0' where id=9; -update noar ti set b0='PKDZWEWQW3FAGDMI5QLSLWQZP0' where id=9; -update noar tt set b1='W3GGOEW4YI6WM09QR51DU2VCH6N6T4FZ' where id=9; -update noar ti set b1='W3GGOEW4YI6WM09QR51DU2VCH6N6T4FZ' where id=9; -update noar tt set b2='TOR4GCUAWVDT2TTR8HGUK38T0QVS3D1Z' where id=9; -update noar ti set b2='TOR4GCUAWVDT2TTR8HGUK38T0QVS3D1Z' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -b0 mediumblob not null, -b1 mediumblob not null, -b2 mediumblob not null -) engine=tokudb; -insert into tt values (1,'','',''); -insert into tt values (2,'','',''); -insert into tt values (3,'','',''); -insert into tt values (4,'','',''); -insert into tt values (5,'','',''); -insert into tt values (6,'','',''); -insert into tt values (7,'','',''); -insert into tt values (8,'','',''); -insert into tt values (9,'','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set b0='GXSOQ7Y8MU0T2NYW81VXE7' where id=1; -update noar ti set b0='GXSOQ7Y8MU0T2NYW81VXE7' where id=1; -update noar tt set b1='9IKISSJJP94ULPMVA3PY' where id=1; -update noar ti set b1='9IKISSJJP94ULPMVA3PY' where id=1; -update noar tt set b2='6F0A1XO70VDST4Y' where id=1; -update noar ti set b2='6F0A1XO70VDST4Y' where id=1; -update noar tt set b0='2658MQ8OLXXWUYZS2' where id=2; -update noar ti set b0='2658MQ8OLXXWUYZS2' where id=2; -update noar tt set b1='2' where id=2; -update noar ti set b1='2' where id=2; -update noar tt set b2='XYNDTRKJ7N4C4JK' where id=2; -update noar ti set b2='XYNDTRKJ7N4C4JK' where id=2; -update noar tt set b0='G' where id=3; -update noar ti set b0='G' where id=3; -update noar tt set b1='1ZWM1CMIOZ1L70L' where id=3; -update noar ti set b1='1ZWM1CMIOZ1L70L' where id=3; -update noar tt set b2='KZEPB0CKY04QY3T406ZJ7QPP49UE' where id=3; -update noar ti set b2='KZEPB0CKY04QY3T406ZJ7QPP49UE' where id=3; -update noar tt set b0='DN6TGQGWLFC7FNCDVB4V1H1RUNTT' where id=4; -update noar ti set b0='DN6TGQGWLFC7FNCDVB4V1H1RUNTT' where id=4; -update noar tt set b1='SE0A7EG7OJHQS' where id=4; -update noar ti set b1='SE0A7EG7OJHQS' where id=4; -update noar tt set b2='3LDB8TIZUDRDCXM15U' where id=4; -update noar ti set b2='3LDB8TIZUDRDCXM15U' where id=4; -update noar tt set b0='RMQV63TKMJ6J' where id=5; -update noar ti set b0='RMQV63TKMJ6J' where id=5; -update noar tt set b1='R13LT1CXL6OUC737DD3C5A' where id=5; -update noar ti set b1='R13LT1CXL6OUC737DD3C5A' where id=5; -update noar tt set b2='GL2HS67PERDK2WI2P423ZLXL' where id=5; -update noar ti set b2='GL2HS67PERDK2WI2P423ZLXL' where id=5; -update noar tt set b0='SVDK4ZRGTOY4V7ZJ2XQQUKE0UL0EMJ' where id=6; -update noar ti set b0='SVDK4ZRGTOY4V7ZJ2XQQUKE0UL0EMJ' where id=6; -update noar tt set b1='W70M' where id=6; -update noar ti set b1='W70M' where id=6; -update noar tt set b2='QADLOFC4Q' where id=6; -update noar ti set b2='QADLOFC4Q' where id=6; -update noar tt set b0='3MIAR00DAZ' where id=7; -update noar ti set b0='3MIAR00DAZ' where id=7; -update noar tt set b1='01PA8WLFSFEZN2XA' where id=7; -update noar ti set b1='01PA8WLFSFEZN2XA' where id=7; -update noar tt set b2='8R1GFIUYGLP' where id=7; -update noar ti set b2='8R1GFIUYGLP' where id=7; -update noar tt set b0='KRMIL9JIRJJB5HW8BXCXK61VM1YYV2XR' where id=8; -update noar ti set b0='KRMIL9JIRJJB5HW8BXCXK61VM1YYV2XR' where id=8; -update noar tt set b1='8T1FA8H9B75Y191OC48Z738' where id=8; -update noar ti set b1='8T1FA8H9B75Y191OC48Z738' where id=8; -update noar tt set b2='C' where id=8; -update noar ti set b2='C' where id=8; -update noar tt set b0='CMOIIWX5R96XEN7GDP7O0' where id=9; -update noar ti set b0='CMOIIWX5R96XEN7GDP7O0' where id=9; -update noar tt set b1='PQNHV3TGXWYVB207C3KIXO0E6UFOG92J' where id=9; -update noar ti set b1='PQNHV3TGXWYVB207C3KIXO0E6UFOG92J' where id=9; -update noar tt set b2='QV1KYD2TXGLPZ' where id=9; -update noar ti set b2='QV1KYD2TXGLPZ' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -b0 mediumblob null, -b1 mediumblob null, -b2 longblob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set b0='YVZSPRURV56CHEXFPAJNC91114ZFQ48' where id=1; -update noar ti set b0='YVZSPRURV56CHEXFPAJNC91114ZFQ48' where id=1; -update noar tt set b1='DGL1F7Z08WLV5IQMJ5OQ9' where id=1; -update noar ti set b1='DGL1F7Z08WLV5IQMJ5OQ9' where id=1; -update noar tt set b2='YHU0YFWJ36TZBUY39RURXU3F' where id=1; -update noar ti set b2='YHU0YFWJ36TZBUY39RURXU3F' where id=1; -update noar tt set b0='1KDWZ6' where id=2; -update noar ti set b0='1KDWZ6' where id=2; -update noar tt set b1='WPKIJGS8U6OW0KQ' where id=2; -update noar ti set b1='WPKIJGS8U6OW0KQ' where id=2; -update noar tt set b2='UKNXU2D6' where id=2; -update noar ti set b2='UKNXU2D6' where id=2; -update noar tt set b0='DNXQTCNIILPE3' where id=3; -update noar ti set b0='DNXQTCNIILPE3' where id=3; -update noar tt set b1='VVTVVMZB8ZJ1C4N80DUWUL' where id=3; -update noar ti set b1='VVTVVMZB8ZJ1C4N80DUWUL' where id=3; -update noar tt set b2='1IYDTB9RW' where id=3; -update noar ti set b2='1IYDTB9RW' where id=3; -update noar tt set b0='SM9S4RM2OLJHH82OK1VV' where id=4; -update noar ti set b0='SM9S4RM2OLJHH82OK1VV' where id=4; -update noar tt set b1='ZGVH' where id=4; -update noar ti set b1='ZGVH' where id=4; -update noar tt set b2='BVJLZ3DPZ457XP92SFPLVA6GK' where id=4; -update noar ti set b2='BVJLZ3DPZ457XP92SFPLVA6GK' where id=4; -update noar tt set b0='VPQSA3J7S0CCZ8Q71AD0XJQS' where id=5; -update noar ti set b0='VPQSA3J7S0CCZ8Q71AD0XJQS' where id=5; -update noar tt set b1='0J53AY66ZO18P4G1CIW1U1N9Q9PBQ' where id=5; -update noar ti set b1='0J53AY66ZO18P4G1CIW1U1N9Q9PBQ' where id=5; -update noar tt set b2='2UH3OD3L49N2KVWVVNDTGYSX9' where id=5; -update noar ti set b2='2UH3OD3L49N2KVWVVNDTGYSX9' where id=5; -update noar tt set b0='027HVWMX' where id=6; -update noar ti set b0='027HVWMX' where id=6; -update noar tt set b1='0EWP60VWSG' where id=6; -update noar ti set b1='0EWP60VWSG' where id=6; -update noar tt set b2='SBWDFAWDP2PW8PC1LYZ' where id=6; -update noar ti set b2='SBWDFAWDP2PW8PC1LYZ' where id=6; -update noar tt set b0='VC224VNW0C118R1ABKF1MEX' where id=7; -update noar ti set b0='VC224VNW0C118R1ABKF1MEX' where id=7; -update noar tt set b1='YJAVPB3O' where id=7; -update noar ti set b1='YJAVPB3O' where id=7; -update noar tt set b2='XOH8YK' where id=7; -update noar ti set b2='XOH8YK' where id=7; -update noar tt set b0='I4PTT0OYGANXEAGYHO191GY' where id=8; -update noar ti set b0='I4PTT0OYGANXEAGYHO191GY' where id=8; -update noar tt set b1='97' where id=8; -update noar ti set b1='97' where id=8; -update noar tt set b2='0G4US9C6ME2U9UW8ASP0O89' where id=8; -update noar ti set b2='0G4US9C6ME2U9UW8ASP0O89' where id=8; -update noar tt set b0='MHIHYR7MNOZXNZDRRKVCJB1GQANIA12' where id=9; -update noar ti set b0='MHIHYR7MNOZXNZDRRKVCJB1GQANIA12' where id=9; -update noar tt set b1='RV9YGBTMGKJZ8U11TJMECE' where id=9; -update noar ti set b1='RV9YGBTMGKJZ8U11TJMECE' where id=9; -update noar tt set b2='ZT9BB6HA1L80DAEKJFME' where id=9; -update noar ti set b2='ZT9BB6HA1L80DAEKJFME' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -b0 mediumblob not null, -b1 mediumblob not null, -b2 longblob not null -) engine=tokudb; -insert into tt values (1,'','',''); -insert into tt values (2,'','',''); -insert into tt values (3,'','',''); -insert into tt values (4,'','',''); -insert into tt values (5,'','',''); -insert into tt values (6,'','',''); -insert into tt values (7,'','',''); -insert into tt values (8,'','',''); -insert into tt values (9,'','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set b0='6CAUYPW6EL' where id=1; -update noar ti set b0='6CAUYPW6EL' where id=1; -update noar tt set b1='NV9BR1BI6UJ' where id=1; -update noar ti set b1='NV9BR1BI6UJ' where id=1; -update noar tt set b2='JOXP2S3T0ZCVVKF' where id=1; -update noar ti set b2='JOXP2S3T0ZCVVKF' where id=1; -update noar tt set b0='736HKDM40' where id=2; -update noar ti set b0='736HKDM40' where id=2; -update noar tt set b1='999TXVGNA1FPQR' where id=2; -update noar ti set b1='999TXVGNA1FPQR' where id=2; -update noar tt set b2='8EQOQLECSGYGZT38X7YJPQ5FKFX1P1' where id=2; -update noar ti set b2='8EQOQLECSGYGZT38X7YJPQ5FKFX1P1' where id=2; -update noar tt set b0='VG0' where id=3; -update noar ti set b0='VG0' where id=3; -update noar tt set b1='5FRJYS' where id=3; -update noar ti set b1='5FRJYS' where id=3; -update noar tt set b2='EECZUH6K5PZ7CTY' where id=3; -update noar ti set b2='EECZUH6K5PZ7CTY' where id=3; -update noar tt set b0='M9T0HGZZGR' where id=4; -update noar ti set b0='M9T0HGZZGR' where id=4; -update noar tt set b1='QSDMVSYKJXJWIOO9K9' where id=4; -update noar ti set b1='QSDMVSYKJXJWIOO9K9' where id=4; -update noar tt set b2='6VWOLASJWXEEE2KGIEHXJUFO' where id=4; -update noar ti set b2='6VWOLASJWXEEE2KGIEHXJUFO' where id=4; -update noar tt set b0='AASGZL6TG912HM2MOCXUR' where id=5; -update noar ti set b0='AASGZL6TG912HM2MOCXUR' where id=5; -update noar tt set b1='P5KHI1V4LZF02XW' where id=5; -update noar ti set b1='P5KHI1V4LZF02XW' where id=5; -update noar tt set b2='EXSL7PAYETH8I' where id=5; -update noar ti set b2='EXSL7PAYETH8I' where id=5; -update noar tt set b0='0XN1YJICC01KGESUZF0H0L4OR5ML8K' where id=6; -update noar ti set b0='0XN1YJICC01KGESUZF0H0L4OR5ML8K' where id=6; -update noar tt set b1='G34DBPX8CQB2G02ZXZ4UMEL' where id=6; -update noar ti set b1='G34DBPX8CQB2G02ZXZ4UMEL' where id=6; -update noar tt set b2='N7' where id=6; -update noar ti set b2='N7' where id=6; -update noar tt set b0='Z5' where id=7; -update noar ti set b0='Z5' where id=7; -update noar tt set b1='NY3XMNT4PULZ2A9GBSX9JUS9LH' where id=7; -update noar ti set b1='NY3XMNT4PULZ2A9GBSX9JUS9LH' where id=7; -update noar tt set b2='L6EMKMTZ1M28N3HJE5XQLSB1FI' where id=7; -update noar ti set b2='L6EMKMTZ1M28N3HJE5XQLSB1FI' where id=7; -update noar tt set b0='Z6EFHLC10ZTTSL4JAQ9KPDE4' where id=8; -update noar ti set b0='Z6EFHLC10ZTTSL4JAQ9KPDE4' where id=8; -update noar tt set b1='4CBBYRA9VK6WY2DNRLLX4C79C8EV' where id=8; -update noar ti set b1='4CBBYRA9VK6WY2DNRLLX4C79C8EV' where id=8; -update noar tt set b2='2U4U02WW1EY1M8SCZKTAZDCGIMF4L8' where id=8; -update noar ti set b2='2U4U02WW1EY1M8SCZKTAZDCGIMF4L8' where id=8; -update noar tt set b0='OJ00U7A71MXNCE01YGFX8NBN90' where id=9; -update noar ti set b0='OJ00U7A71MXNCE01YGFX8NBN90' where id=9; -update noar tt set b1='8V6' where id=9; -update noar ti set b1='8V6' where id=9; -update noar tt set b2='9549E1OMTCYIYB21E3O2PV5N8CER30XY' where id=9; -update noar ti set b2='9549E1OMTCYIYB21E3O2PV5N8CER30XY' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -b0 mediumblob null, -b1 mediumblob null, -b2 text null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set b0='F7' where id=1; -update noar ti set b0='F7' where id=1; -update noar tt set b1='LSKALVO1TA' where id=1; -update noar ti set b1='LSKALVO1TA' where id=1; -update noar tt set b2='VQ0ENLI6G0E' where id=1; -update noar ti set b2='VQ0ENLI6G0E' where id=1; -update noar tt set b0='XAAZKI' where id=2; -update noar ti set b0='XAAZKI' where id=2; -update noar tt set b1='B5LTVGXCICBTRK05JY12' where id=2; -update noar ti set b1='B5LTVGXCICBTRK05JY12' where id=2; -update noar tt set b2='FCEQWB' where id=2; -update noar ti set b2='FCEQWB' where id=2; -update noar tt set b0='ZKDS5HAQ1UHL046JLEFBCFK8G' where id=3; -update noar ti set b0='ZKDS5HAQ1UHL046JLEFBCFK8G' where id=3; -update noar tt set b1='001IR8BY' where id=3; -update noar ti set b1='001IR8BY' where id=3; -update noar tt set b2='K9EA' where id=3; -update noar ti set b2='K9EA' where id=3; -update noar tt set b0='8UDFO9BE2EP87B2PQTBTY7W11B4GZI9' where id=4; -update noar ti set b0='8UDFO9BE2EP87B2PQTBTY7W11B4GZI9' where id=4; -update noar tt set b1='J3XPCEUY0X0ZO53Q' where id=4; -update noar ti set b1='J3XPCEUY0X0ZO53Q' where id=4; -update noar tt set b2='7030KX1FA0C6HRY6G6SEJ0Y9U' where id=4; -update noar ti set b2='7030KX1FA0C6HRY6G6SEJ0Y9U' where id=4; -update noar tt set b0='V' where id=5; -update noar ti set b0='V' where id=5; -update noar tt set b1='2J8MSZ134CBYT3CHZ0VQ' where id=5; -update noar ti set b1='2J8MSZ134CBYT3CHZ0VQ' where id=5; -update noar tt set b2='TH93LXEQ81W7JD9B5U7N6LRGYCZD' where id=5; -update noar ti set b2='TH93LXEQ81W7JD9B5U7N6LRGYCZD' where id=5; -update noar tt set b0='L3A50UKS2KTGPWOWS9QBA1L2XR' where id=6; -update noar ti set b0='L3A50UKS2KTGPWOWS9QBA1L2XR' where id=6; -update noar tt set b1='T9XOWRH' where id=6; -update noar ti set b1='T9XOWRH' where id=6; -update noar tt set b2='W9N92P6W2EDFRJYQ3P9CZ' where id=6; -update noar ti set b2='W9N92P6W2EDFRJYQ3P9CZ' where id=6; -update noar tt set b0='U37OKI2NHSGMGBTUND' where id=7; -update noar ti set b0='U37OKI2NHSGMGBTUND' where id=7; -update noar tt set b1='MROWBFH9FIJMCGFJAZN7CI38Q' where id=7; -update noar ti set b1='MROWBFH9FIJMCGFJAZN7CI38Q' where id=7; -update noar tt set b2='NE2FE3ADN2HLAJFBRJAH4C' where id=7; -update noar ti set b2='NE2FE3ADN2HLAJFBRJAH4C' where id=7; -update noar tt set b0='MEWI2ZWW8PGN' where id=8; -update noar ti set b0='MEWI2ZWW8PGN' where id=8; -update noar tt set b1='IOK449PT5AZK1SXOJD1Q' where id=8; -update noar ti set b1='IOK449PT5AZK1SXOJD1Q' where id=8; -update noar tt set b2='06DW4LX6WNB' where id=8; -update noar ti set b2='06DW4LX6WNB' where id=8; -update noar tt set b0='EENSHC0IGEUWW77OFGJBRFKA4DB4D' where id=9; -update noar ti set b0='EENSHC0IGEUWW77OFGJBRFKA4DB4D' where id=9; -update noar tt set b1='VT9EYPF9B6CYHKZ7UG5YCM97UXFI0PCT' where id=9; -update noar ti set b1='VT9EYPF9B6CYHKZ7UG5YCM97UXFI0PCT' where id=9; -update noar tt set b2='QMYR' where id=9; -update noar ti set b2='QMYR' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -b0 mediumblob not null, -b1 mediumblob not null, -b2 text not null -) engine=tokudb; -insert into tt values (1,'','',''); -insert into tt values (2,'','',''); -insert into tt values (3,'','',''); -insert into tt values (4,'','',''); -insert into tt values (5,'','',''); -insert into tt values (6,'','',''); -insert into tt values (7,'','',''); -insert into tt values (8,'','',''); -insert into tt values (9,'','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set b0='S' where id=1; -update noar ti set b0='S' where id=1; -update noar tt set b1='1I1YHX9UNR369ZS5FT' where id=1; -update noar ti set b1='1I1YHX9UNR369ZS5FT' where id=1; -update noar tt set b2='VQFOVRR10NADRRHBEKBMA06DTY2Q' where id=1; -update noar ti set b2='VQFOVRR10NADRRHBEKBMA06DTY2Q' where id=1; -update noar tt set b0='E97K7Q93YPFA9B3PUV' where id=2; -update noar ti set b0='E97K7Q93YPFA9B3PUV' where id=2; -update noar tt set b1='CY1OM0INXGW9XB6THLMNMM441' where id=2; -update noar ti set b1='CY1OM0INXGW9XB6THLMNMM441' where id=2; -update noar tt set b2='RCALC83TID0GSFMQHJA' where id=2; -update noar ti set b2='RCALC83TID0GSFMQHJA' where id=2; -update noar tt set b0='O2H2V79N2WO07QCCA' where id=3; -update noar ti set b0='O2H2V79N2WO07QCCA' where id=3; -update noar tt set b1='CK' where id=3; -update noar ti set b1='CK' where id=3; -update noar tt set b2='6QEDY4T0EHC4POKF2GFMCQ' where id=3; -update noar ti set b2='6QEDY4T0EHC4POKF2GFMCQ' where id=3; -update noar tt set b0='47DNAX5TQJLSWWV8NDASSTFH9VIF' where id=4; -update noar ti set b0='47DNAX5TQJLSWWV8NDASSTFH9VIF' where id=4; -update noar tt set b1='AES2MT4MCUQ7WBCJDBK' where id=4; -update noar ti set b1='AES2MT4MCUQ7WBCJDBK' where id=4; -update noar tt set b2='1WAV830TBGMFYHHD' where id=4; -update noar ti set b2='1WAV830TBGMFYHHD' where id=4; -update noar tt set b0='8IGASXFEQCJZLIPF4XTU7SK' where id=5; -update noar ti set b0='8IGASXFEQCJZLIPF4XTU7SK' where id=5; -update noar tt set b1='86TE048W4WEG5PW3YYUKUTRSYQ' where id=5; -update noar ti set b1='86TE048W4WEG5PW3YYUKUTRSYQ' where id=5; -update noar tt set b2='8T5' where id=5; -update noar ti set b2='8T5' where id=5; -update noar tt set b0='WMQO8O9B9FELFGIX2F' where id=6; -update noar ti set b0='WMQO8O9B9FELFGIX2F' where id=6; -update noar tt set b1='I616XPHHLS9D9FSW5BO20ERJRGF' where id=6; -update noar ti set b1='I616XPHHLS9D9FSW5BO20ERJRGF' where id=6; -update noar tt set b2='2A0' where id=6; -update noar ti set b2='2A0' where id=6; -update noar tt set b0='1E13TBB' where id=7; -update noar ti set b0='1E13TBB' where id=7; -update noar tt set b1='R34SV9Q079NDH9QLAYGIVG' where id=7; -update noar ti set b1='R34SV9Q079NDH9QLAYGIVG' where id=7; -update noar tt set b2='GI7Y6OOIN3B1IIUCA8S2KM5A0F9CV82' where id=7; -update noar ti set b2='GI7Y6OOIN3B1IIUCA8S2KM5A0F9CV82' where id=7; -update noar tt set b0='J8O3H9YC51NJQFX4Z7BEPS' where id=8; -update noar ti set b0='J8O3H9YC51NJQFX4Z7BEPS' where id=8; -update noar tt set b1='08WE5QAF3GFETJNGGO2BVFAFAOOOVZAU' where id=8; -update noar ti set b1='08WE5QAF3GFETJNGGO2BVFAFAOOOVZAU' where id=8; -update noar tt set b2='U7X78FYM' where id=8; -update noar ti set b2='U7X78FYM' where id=8; -update noar tt set b0='GSO6' where id=9; -update noar ti set b0='GSO6' where id=9; -update noar tt set b1='T7511LP29OS6VKSCC' where id=9; -update noar ti set b1='T7511LP29OS6VKSCC' where id=9; -update noar tt set b2='JMQ1' where id=9; -update noar ti set b2='JMQ1' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -b0 mediumblob null, -b1 longblob null, -b2 tinyblob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set b0='NA618TEHZX90CZFHBQDTC1V8XG9J75' where id=1; -update noar ti set b0='NA618TEHZX90CZFHBQDTC1V8XG9J75' where id=1; -update noar tt set b1='YTVASEIF' where id=1; -update noar ti set b1='YTVASEIF' where id=1; -update noar tt set b2='Y9RI6C78SD02T3X7KGTYQD76EQ7S' where id=1; -update noar ti set b2='Y9RI6C78SD02T3X7KGTYQD76EQ7S' where id=1; -update noar tt set b0='OO' where id=2; -update noar ti set b0='OO' where id=2; -update noar tt set b1='361GKY38WX0ED5S1DGA' where id=2; -update noar ti set b1='361GKY38WX0ED5S1DGA' where id=2; -update noar tt set b2='92Q' where id=2; -update noar ti set b2='92Q' where id=2; -update noar tt set b0='R0KDIDIA760DSETGB4PLOW5' where id=3; -update noar ti set b0='R0KDIDIA760DSETGB4PLOW5' where id=3; -update noar tt set b1='C' where id=3; -update noar ti set b1='C' where id=3; -update noar tt set b2='I4444EF9C2I' where id=3; -update noar ti set b2='I4444EF9C2I' where id=3; -update noar tt set b0='WVSTWO3BG' where id=4; -update noar ti set b0='WVSTWO3BG' where id=4; -update noar tt set b1='2XI3ZORR0BO5I245GEKZ' where id=4; -update noar ti set b1='2XI3ZORR0BO5I245GEKZ' where id=4; -update noar tt set b2='RRLDJ8' where id=4; -update noar ti set b2='RRLDJ8' where id=4; -update noar tt set b0='7' where id=5; -update noar ti set b0='7' where id=5; -update noar tt set b1='QI6MAPFBO3CP' where id=5; -update noar ti set b1='QI6MAPFBO3CP' where id=5; -update noar tt set b2='98TA4DPA5ON9BCVMA0Z' where id=5; -update noar ti set b2='98TA4DPA5ON9BCVMA0Z' where id=5; -update noar tt set b0='2G' where id=6; -update noar ti set b0='2G' where id=6; -update noar tt set b1='MYXD4ARGJWS55L9EXYC38RN4KMP' where id=6; -update noar ti set b1='MYXD4ARGJWS55L9EXYC38RN4KMP' where id=6; -update noar tt set b2='Y6481' where id=6; -update noar ti set b2='Y6481' where id=6; -update noar tt set b0='QH75' where id=7; -update noar ti set b0='QH75' where id=7; -update noar tt set b1='X3VFIAB337LYD7DBF' where id=7; -update noar ti set b1='X3VFIAB337LYD7DBF' where id=7; -update noar tt set b2='W6PWF0DV78' where id=7; -update noar ti set b2='W6PWF0DV78' where id=7; -update noar tt set b0='VUH87V5F' where id=8; -update noar ti set b0='VUH87V5F' where id=8; -update noar tt set b1='9TIEGAW1MPASPDCVI8' where id=8; -update noar ti set b1='9TIEGAW1MPASPDCVI8' where id=8; -update noar tt set b2='T53N9R4A6GX9AFHJAXSBV05NWGTQ8MY5' where id=8; -update noar ti set b2='T53N9R4A6GX9AFHJAXSBV05NWGTQ8MY5' where id=8; -update noar tt set b0='GR' where id=9; -update noar ti set b0='GR' where id=9; -update noar tt set b1='Z79RVKK5BPSGF3J3ORK08OE58SL' where id=9; -update noar ti set b1='Z79RVKK5BPSGF3J3ORK08OE58SL' where id=9; -update noar tt set b2='RA' where id=9; -update noar ti set b2='RA' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -b0 mediumblob not null, -b1 longblob not null, -b2 tinyblob not null -) engine=tokudb; -insert into tt values (1,'','',''); -insert into tt values (2,'','',''); -insert into tt values (3,'','',''); -insert into tt values (4,'','',''); -insert into tt values (5,'','',''); -insert into tt values (6,'','',''); -insert into tt values (7,'','',''); -insert into tt values (8,'','',''); -insert into tt values (9,'','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set b0='ZBGN66XH999Q9NEUF2RPNPP0ZW' where id=1; -update noar ti set b0='ZBGN66XH999Q9NEUF2RPNPP0ZW' where id=1; -update noar tt set b1='3Q0JKSO2Z5URP' where id=1; -update noar ti set b1='3Q0JKSO2Z5URP' where id=1; -update noar tt set b2='62S31IO5R7GSO4T67R9MSNGIRMWM' where id=1; -update noar ti set b2='62S31IO5R7GSO4T67R9MSNGIRMWM' where id=1; -update noar tt set b0='8JUBE94QLIIZRIZHH91HKDULEI82' where id=2; -update noar ti set b0='8JUBE94QLIIZRIZHH91HKDULEI82' where id=2; -update noar tt set b1='SRY8TJ2P2U0GNNMY7UQ06RJ5' where id=2; -update noar ti set b1='SRY8TJ2P2U0GNNMY7UQ06RJ5' where id=2; -update noar tt set b2='3E3582KWGAV' where id=2; -update noar ti set b2='3E3582KWGAV' where id=2; -update noar tt set b0='KRR08HTNGOQFATE' where id=3; -update noar ti set b0='KRR08HTNGOQFATE' where id=3; -update noar tt set b1='LHRC9549LTIAX408KGYLXC95ALVNOFD' where id=3; -update noar ti set b1='LHRC9549LTIAX408KGYLXC95ALVNOFD' where id=3; -update noar tt set b2='2FXVSY' where id=3; -update noar ti set b2='2FXVSY' where id=3; -update noar tt set b0='IU85IK7Q3' where id=4; -update noar ti set b0='IU85IK7Q3' where id=4; -update noar tt set b1='FXQ3XVXUK' where id=4; -update noar ti set b1='FXQ3XVXUK' where id=4; -update noar tt set b2='CZ47BC8ORPQPX8UVG0Q3ZTUC' where id=4; -update noar ti set b2='CZ47BC8ORPQPX8UVG0Q3ZTUC' where id=4; -update noar tt set b0='UXUUWQYNFZBGTIK41QZIEFTU6E35K6T' where id=5; -update noar ti set b0='UXUUWQYNFZBGTIK41QZIEFTU6E35K6T' where id=5; -update noar tt set b1='36L35ZIKE9' where id=5; -update noar ti set b1='36L35ZIKE9' where id=5; -update noar tt set b2='JGHEW6KHAMN6I0JRNM' where id=5; -update noar ti set b2='JGHEW6KHAMN6I0JRNM' where id=5; -update noar tt set b0='0K99Q2CWX3QGLH0CAGQW9JO73' where id=6; -update noar ti set b0='0K99Q2CWX3QGLH0CAGQW9JO73' where id=6; -update noar tt set b1='V8X4FUEET36BYH6IHCHOWLKMQURAOJLQ' where id=6; -update noar ti set b1='V8X4FUEET36BYH6IHCHOWLKMQURAOJLQ' where id=6; -update noar tt set b2='V9T4CJV55OTC' where id=6; -update noar ti set b2='V9T4CJV55OTC' where id=6; -update noar tt set b0='KEO9CF4VUE92ZBNNR23LPPZXX7VI25XB' where id=7; -update noar ti set b0='KEO9CF4VUE92ZBNNR23LPPZXX7VI25XB' where id=7; -update noar tt set b1='B8' where id=7; -update noar ti set b1='B8' where id=7; -update noar tt set b2='1P' where id=7; -update noar ti set b2='1P' where id=7; -update noar tt set b0='9JU5XTJQ8K4HH2LJ7A' where id=8; -update noar ti set b0='9JU5XTJQ8K4HH2LJ7A' where id=8; -update noar tt set b1='V5K2CS3ID7EFEA7D1MM4QNQVLES' where id=8; -update noar ti set b1='V5K2CS3ID7EFEA7D1MM4QNQVLES' where id=8; -update noar tt set b2='3VPWI83QLNJU4WJ1' where id=8; -update noar ti set b2='3VPWI83QLNJU4WJ1' where id=8; -update noar tt set b0='633PXANQAGN60YC35L' where id=9; -update noar ti set b0='633PXANQAGN60YC35L' where id=9; -update noar tt set b1='ZP9ZHVA05KAL' where id=9; -update noar ti set b1='ZP9ZHVA05KAL' where id=9; -update noar tt set b2='J5KPZMNK1UPHXM2QHPSF1' where id=9; -update noar ti set b2='J5KPZMNK1UPHXM2QHPSF1' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -b0 mediumblob null, -b1 longblob null, -b2 blob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set b0='NXQQRD3M53K6NF7IG92WK2' where id=1; -update noar ti set b0='NXQQRD3M53K6NF7IG92WK2' where id=1; -update noar tt set b1='I67SVCO2K1ZJ' where id=1; -update noar ti set b1='I67SVCO2K1ZJ' where id=1; -update noar tt set b2='I8P8YDS6KM6IRE7MNGCF' where id=1; -update noar ti set b2='I8P8YDS6KM6IRE7MNGCF' where id=1; -update noar tt set b0='Y2BA9' where id=2; -update noar ti set b0='Y2BA9' where id=2; -update noar tt set b1='HX5EKYFMQ3VRMNZFE6FH834TU' where id=2; -update noar ti set b1='HX5EKYFMQ3VRMNZFE6FH834TU' where id=2; -update noar tt set b2='338MG5UD1568BKI7Q7VXRH' where id=2; -update noar ti set b2='338MG5UD1568BKI7Q7VXRH' where id=2; -update noar tt set b0='UPT2SBB0WCVVNIT5Q13LA3ADYP' where id=3; -update noar ti set b0='UPT2SBB0WCVVNIT5Q13LA3ADYP' where id=3; -update noar tt set b1='EAVNHGU4MBF' where id=3; -update noar ti set b1='EAVNHGU4MBF' where id=3; -update noar tt set b2='GMIK44SYDK5UVA5C73J1VLJ4' where id=3; -update noar ti set b2='GMIK44SYDK5UVA5C73J1VLJ4' where id=3; -update noar tt set b0='J5NTXPBKQWD4CXLXSTE9GLZI8' where id=4; -update noar ti set b0='J5NTXPBKQWD4CXLXSTE9GLZI8' where id=4; -update noar tt set b1='FJ3SS8Y33FI5EK2M7IINN3Q7ALX' where id=4; -update noar ti set b1='FJ3SS8Y33FI5EK2M7IINN3Q7ALX' where id=4; -update noar tt set b2='NC16L3DLGP0KTW6O' where id=4; -update noar ti set b2='NC16L3DLGP0KTW6O' where id=4; -update noar tt set b0='Y32B7DG1B96EVU6436R7URQURO3MLYB' where id=5; -update noar ti set b0='Y32B7DG1B96EVU6436R7URQURO3MLYB' where id=5; -update noar tt set b1='GTWXKLA41ZRP8M22XSQQIM65' where id=5; -update noar ti set b1='GTWXKLA41ZRP8M22XSQQIM65' where id=5; -update noar tt set b2='YZD' where id=5; -update noar ti set b2='YZD' where id=5; -update noar tt set b0='B491VCNL4OYTZ5O1FF5RRF7U6' where id=6; -update noar ti set b0='B491VCNL4OYTZ5O1FF5RRF7U6' where id=6; -update noar tt set b1='EN3G0PC30KQ34XLFUAQR4' where id=6; -update noar ti set b1='EN3G0PC30KQ34XLFUAQR4' where id=6; -update noar tt set b2='LJ41D97' where id=6; -update noar ti set b2='LJ41D97' where id=6; -update noar tt set b0='WHBH65AFVEQ6H4P' where id=7; -update noar ti set b0='WHBH65AFVEQ6H4P' where id=7; -update noar tt set b1='8U59FI0LWKLVLNF5' where id=7; -update noar ti set b1='8U59FI0LWKLVLNF5' where id=7; -update noar tt set b2='15OVTL4S' where id=7; -update noar ti set b2='15OVTL4S' where id=7; -update noar tt set b0='L3UXTOFNSL251GMFH' where id=8; -update noar ti set b0='L3UXTOFNSL251GMFH' where id=8; -update noar tt set b1='J' where id=8; -update noar ti set b1='J' where id=8; -update noar tt set b2='KF1RO4N7WEO6QCWVUL' where id=8; -update noar ti set b2='KF1RO4N7WEO6QCWVUL' where id=8; -update noar tt set b0='4MSXYR4ABDFQXRVCZP5' where id=9; -update noar ti set b0='4MSXYR4ABDFQXRVCZP5' where id=9; -update noar tt set b1='7ISP2DR3001KSVQ6OHBS4JP' where id=9; -update noar ti set b1='7ISP2DR3001KSVQ6OHBS4JP' where id=9; -update noar tt set b2='48JY9SSEJZZXR80DWU' where id=9; -update noar ti set b2='48JY9SSEJZZXR80DWU' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -b0 mediumblob not null, -b1 longblob not null, -b2 blob not null -) engine=tokudb; -insert into tt values (1,'','',''); -insert into tt values (2,'','',''); -insert into tt values (3,'','',''); -insert into tt values (4,'','',''); -insert into tt values (5,'','',''); -insert into tt values (6,'','',''); -insert into tt values (7,'','',''); -insert into tt values (8,'','',''); -insert into tt values (9,'','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set b0='KO4OLH6SJXNY1R9UUQBLYGORMD' where id=1; -update noar ti set b0='KO4OLH6SJXNY1R9UUQBLYGORMD' where id=1; -update noar tt set b1='LZH9L4K002Q2ZZPBGZO27GRD' where id=1; -update noar ti set b1='LZH9L4K002Q2ZZPBGZO27GRD' where id=1; -update noar tt set b2='17A95DDREMLFVFG' where id=1; -update noar ti set b2='17A95DDREMLFVFG' where id=1; -update noar tt set b0='XCWFW6N02XT1JJZDCUTM1JN84ODHX' where id=2; -update noar ti set b0='XCWFW6N02XT1JJZDCUTM1JN84ODHX' where id=2; -update noar tt set b1='D788' where id=2; -update noar ti set b1='D788' where id=2; -update noar tt set b2='V6XZ' where id=2; -update noar ti set b2='V6XZ' where id=2; -update noar tt set b0='2DK1UBRVDBHVUENY4UEG2' where id=3; -update noar ti set b0='2DK1UBRVDBHVUENY4UEG2' where id=3; -update noar tt set b1='D3WJD5P3Q' where id=3; -update noar ti set b1='D3WJD5P3Q' where id=3; -update noar tt set b2='09QYU' where id=3; -update noar ti set b2='09QYU' where id=3; -update noar tt set b0='4KNVGVL' where id=4; -update noar ti set b0='4KNVGVL' where id=4; -update noar tt set b1='PNP3XAT1W' where id=4; -update noar ti set b1='PNP3XAT1W' where id=4; -update noar tt set b2='YSUCD8BDH63M98XA' where id=4; -update noar ti set b2='YSUCD8BDH63M98XA' where id=4; -update noar tt set b0='08R0L2BP967A' where id=5; -update noar ti set b0='08R0L2BP967A' where id=5; -update noar tt set b1='6J35EG97AWMVXOCCMMC6MLLDSF' where id=5; -update noar ti set b1='6J35EG97AWMVXOCCMMC6MLLDSF' where id=5; -update noar tt set b2='Q447UQ604H3UXLNAJ' where id=5; -update noar ti set b2='Q447UQ604H3UXLNAJ' where id=5; -update noar tt set b0='69MG7R9JH3UD2VYOTE0KNBVCB53M696B' where id=6; -update noar ti set b0='69MG7R9JH3UD2VYOTE0KNBVCB53M696B' where id=6; -update noar tt set b1='GLGGL6U1SG' where id=6; -update noar ti set b1='GLGGL6U1SG' where id=6; -update noar tt set b2='R00O9ECHZSYM5FIMSQY' where id=6; -update noar ti set b2='R00O9ECHZSYM5FIMSQY' where id=6; -update noar tt set b0='AH2W33QDICC269L69B9N0MFRVCW' where id=7; -update noar ti set b0='AH2W33QDICC269L69B9N0MFRVCW' where id=7; -update noar tt set b1='T6J2WH2I3Z5RWXVTSI7S4C6T7STOXXD' where id=7; -update noar ti set b1='T6J2WH2I3Z5RWXVTSI7S4C6T7STOXXD' where id=7; -update noar tt set b2='KSWRONRU4N7' where id=7; -update noar ti set b2='KSWRONRU4N7' where id=7; -update noar tt set b0='W6GGGMFZYS4OV6IJQG9VM' where id=8; -update noar ti set b0='W6GGGMFZYS4OV6IJQG9VM' where id=8; -update noar tt set b1='ZDHL3' where id=8; -update noar ti set b1='ZDHL3' where id=8; -update noar tt set b2='BCEOMRP0N01ZN1IB4A0' where id=8; -update noar ti set b2='BCEOMRP0N01ZN1IB4A0' where id=8; -update noar tt set b0='274URTSFZNZXXFUUODCLOKRLB753' where id=9; -update noar ti set b0='274URTSFZNZXXFUUODCLOKRLB753' where id=9; -update noar tt set b1='EEP0A' where id=9; -update noar ti set b1='EEP0A' where id=9; -update noar tt set b2='3H60DMQDZM35FQECAOFUJ0' where id=9; -update noar ti set b2='3H60DMQDZM35FQECAOFUJ0' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -b0 mediumblob null, -b1 longblob null, -b2 mediumblob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set b0='QEB3L4H90L8M9GEJTO0XIPE' where id=1; -update noar ti set b0='QEB3L4H90L8M9GEJTO0XIPE' where id=1; -update noar tt set b1='R3R24PNNIG8N65EIDJT' where id=1; -update noar ti set b1='R3R24PNNIG8N65EIDJT' where id=1; -update noar tt set b2='AZWFBDKVQ0E' where id=1; -update noar ti set b2='AZWFBDKVQ0E' where id=1; -update noar tt set b0='A36IN830DMYRBZC' where id=2; -update noar ti set b0='A36IN830DMYRBZC' where id=2; -update noar tt set b1='QLM8JTATMNIES9XESY' where id=2; -update noar ti set b1='QLM8JTATMNIES9XESY' where id=2; -update noar tt set b2='C26XNJX2NPBZILAYVHGKRS' where id=2; -update noar ti set b2='C26XNJX2NPBZILAYVHGKRS' where id=2; -update noar tt set b0='QT49FWECT9BS7A05NJ50FR7PG' where id=3; -update noar ti set b0='QT49FWECT9BS7A05NJ50FR7PG' where id=3; -update noar tt set b1='ATVWFNDOQ1R8' where id=3; -update noar ti set b1='ATVWFNDOQ1R8' where id=3; -update noar tt set b2='V' where id=3; -update noar ti set b2='V' where id=3; -update noar tt set b0='LPQKBR4IPN82SYO6A13W' where id=4; -update noar ti set b0='LPQKBR4IPN82SYO6A13W' where id=4; -update noar tt set b1='S7GAZ1INVKTJ' where id=4; -update noar ti set b1='S7GAZ1INVKTJ' where id=4; -update noar tt set b2='UYGU0JI9AI' where id=4; -update noar ti set b2='UYGU0JI9AI' where id=4; -update noar tt set b0='84T1AHYMJ' where id=5; -update noar ti set b0='84T1AHYMJ' where id=5; -update noar tt set b1='XW15XWNAKM' where id=5; -update noar ti set b1='XW15XWNAKM' where id=5; -update noar tt set b2='TXCEOAXNJ0CBRD31PEK3ZV0' where id=5; -update noar ti set b2='TXCEOAXNJ0CBRD31PEK3ZV0' where id=5; -update noar tt set b0='CPYZNWJBWN0O6X4ZSSZ4TDFCZMPIQ' where id=6; -update noar ti set b0='CPYZNWJBWN0O6X4ZSSZ4TDFCZMPIQ' where id=6; -update noar tt set b1='X9IDKTBK074WCZ92NWS6' where id=6; -update noar ti set b1='X9IDKTBK074WCZ92NWS6' where id=6; -update noar tt set b2='OT3QWO2' where id=6; -update noar ti set b2='OT3QWO2' where id=6; -update noar tt set b0='K4Z0SRYW9X39WDR6M1XI31DIY0Q6' where id=7; -update noar ti set b0='K4Z0SRYW9X39WDR6M1XI31DIY0Q6' where id=7; -update noar tt set b1='9KJPW50GJF28FJXP60KWP4MNVIR' where id=7; -update noar ti set b1='9KJPW50GJF28FJXP60KWP4MNVIR' where id=7; -update noar tt set b2='NKTGTP6Z88L73QKR' where id=7; -update noar ti set b2='NKTGTP6Z88L73QKR' where id=7; -update noar tt set b0='7A01' where id=8; -update noar ti set b0='7A01' where id=8; -update noar tt set b1='XDXY5DJHJXXGJTXK' where id=8; -update noar ti set b1='XDXY5DJHJXXGJTXK' where id=8; -update noar tt set b2='3O' where id=8; -update noar ti set b2='3O' where id=8; -update noar tt set b0='0K0SZ6N1NJEZCTNXA0B8M41N2IKJ' where id=9; -update noar ti set b0='0K0SZ6N1NJEZCTNXA0B8M41N2IKJ' where id=9; -update noar tt set b1='LLM7F8LF' where id=9; -update noar ti set b1='LLM7F8LF' where id=9; -update noar tt set b2='DJBWF1AI23LB4IF1O81RLJXTP2V2S9U' where id=9; -update noar ti set b2='DJBWF1AI23LB4IF1O81RLJXTP2V2S9U' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -b0 mediumblob not null, -b1 longblob not null, -b2 mediumblob not null -) engine=tokudb; -insert into tt values (1,'','',''); -insert into tt values (2,'','',''); -insert into tt values (3,'','',''); -insert into tt values (4,'','',''); -insert into tt values (5,'','',''); -insert into tt values (6,'','',''); -insert into tt values (7,'','',''); -insert into tt values (8,'','',''); -insert into tt values (9,'','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set b0='S2GNWID48DVN' where id=1; -update noar ti set b0='S2GNWID48DVN' where id=1; -update noar tt set b1='OP7BN4PVZJ75AAFBMV1749B1OASG' where id=1; -update noar ti set b1='OP7BN4PVZJ75AAFBMV1749B1OASG' where id=1; -update noar tt set b2='6BWBHHCPT' where id=1; -update noar ti set b2='6BWBHHCPT' where id=1; -update noar tt set b0='87' where id=2; -update noar ti set b0='87' where id=2; -update noar tt set b1='R70I2AXYVJS' where id=2; -update noar ti set b1='R70I2AXYVJS' where id=2; -update noar tt set b2='S8X0XMCORSW5Z' where id=2; -update noar ti set b2='S8X0XMCORSW5Z' where id=2; -update noar tt set b0='Q8KA8L1ZO0OTCO1K0RTPAAS033GKXYX' where id=3; -update noar ti set b0='Q8KA8L1ZO0OTCO1K0RTPAAS033GKXYX' where id=3; -update noar tt set b1='DAJCJIW60JU1NUO0EHA7B2SWSPH2' where id=3; -update noar ti set b1='DAJCJIW60JU1NUO0EHA7B2SWSPH2' where id=3; -update noar tt set b2='56854R' where id=3; -update noar ti set b2='56854R' where id=3; -update noar tt set b0='MA64632MHVXC' where id=4; -update noar ti set b0='MA64632MHVXC' where id=4; -update noar tt set b1='8Z5DPNB' where id=4; -update noar ti set b1='8Z5DPNB' where id=4; -update noar tt set b2='IY44E3' where id=4; -update noar ti set b2='IY44E3' where id=4; -update noar tt set b0='5WE6S5' where id=5; -update noar ti set b0='5WE6S5' where id=5; -update noar tt set b1='NPX' where id=5; -update noar ti set b1='NPX' where id=5; -update noar tt set b2='1BAKLV9JYJFDZQHRIRKCZQ9EMAOEM32' where id=5; -update noar ti set b2='1BAKLV9JYJFDZQHRIRKCZQ9EMAOEM32' where id=5; -update noar tt set b0='JCY' where id=6; -update noar ti set b0='JCY' where id=6; -update noar tt set b1='LAHAK6KVY73SBNQHV7B2AC3UQ1LQY' where id=6; -update noar ti set b1='LAHAK6KVY73SBNQHV7B2AC3UQ1LQY' where id=6; -update noar tt set b2='1S7EMKKQHB9L' where id=6; -update noar ti set b2='1S7EMKKQHB9L' where id=6; -update noar tt set b0='G5QJOG8H2KTWKQA86R8ND14SHO' where id=7; -update noar ti set b0='G5QJOG8H2KTWKQA86R8ND14SHO' where id=7; -update noar tt set b1='CSXYJQZFL45CIIJ' where id=7; -update noar ti set b1='CSXYJQZFL45CIIJ' where id=7; -update noar tt set b2='RVLHD7DKC8KE6I5SA00T3XKF2SJQAIC' where id=7; -update noar ti set b2='RVLHD7DKC8KE6I5SA00T3XKF2SJQAIC' where id=7; -update noar tt set b0='645EV2FJ72QLO24F58RVKODYAHZ' where id=8; -update noar ti set b0='645EV2FJ72QLO24F58RVKODYAHZ' where id=8; -update noar tt set b1='TN' where id=8; -update noar ti set b1='TN' where id=8; -update noar tt set b2='9SD7ZYLA9JTKZ7KINPRLKQCEYBSLTHXM' where id=8; -update noar ti set b2='9SD7ZYLA9JTKZ7KINPRLKQCEYBSLTHXM' where id=8; -update noar tt set b0='VFZEHQZZ4MAKFGEOHZ4VTHT55' where id=9; -update noar ti set b0='VFZEHQZZ4MAKFGEOHZ4VTHT55' where id=9; -update noar tt set b1='GJI4MEN8D4554SKXD' where id=9; -update noar ti set b1='GJI4MEN8D4554SKXD' where id=9; -update noar tt set b2='PU2UXKL4TJ' where id=9; -update noar ti set b2='PU2UXKL4TJ' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -b0 mediumblob null, -b1 longblob null, -b2 longblob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set b0='QGP605SFDMORJVG1X4A8HFF47R1GMXU' where id=1; -update noar ti set b0='QGP605SFDMORJVG1X4A8HFF47R1GMXU' where id=1; -update noar tt set b1='RMND1JHVZFKU5MRUTY2X6KXD5NOVD4RP' where id=1; -update noar ti set b1='RMND1JHVZFKU5MRUTY2X6KXD5NOVD4RP' where id=1; -update noar tt set b2='XC5RRXD4UIJNYYVXO' where id=1; -update noar ti set b2='XC5RRXD4UIJNYYVXO' where id=1; -update noar tt set b0='L1D' where id=2; -update noar ti set b0='L1D' where id=2; -update noar tt set b1='3' where id=2; -update noar ti set b1='3' where id=2; -update noar tt set b2='J4FURTLO7LOHFI6WCDVX5' where id=2; -update noar ti set b2='J4FURTLO7LOHFI6WCDVX5' where id=2; -update noar tt set b0='CPKZBHO1AE8FOMDX6QOTAE' where id=3; -update noar ti set b0='CPKZBHO1AE8FOMDX6QOTAE' where id=3; -update noar tt set b1='Z0Z83M4987340NEB2637' where id=3; -update noar ti set b1='Z0Z83M4987340NEB2637' where id=3; -update noar tt set b2='0E9G11M74UYE3IE9EEDL' where id=3; -update noar ti set b2='0E9G11M74UYE3IE9EEDL' where id=3; -update noar tt set b0='6N99N5I' where id=4; -update noar ti set b0='6N99N5I' where id=4; -update noar tt set b1='SFLEK27' where id=4; -update noar ti set b1='SFLEK27' where id=4; -update noar tt set b2='9TNERZ7UCPFT09TXNB' where id=4; -update noar ti set b2='9TNERZ7UCPFT09TXNB' where id=4; -update noar tt set b0='WRRLSIN' where id=5; -update noar ti set b0='WRRLSIN' where id=5; -update noar tt set b1='20UD58MVO' where id=5; -update noar ti set b1='20UD58MVO' where id=5; -update noar tt set b2='O22I3AAI91GPOPJW5VE' where id=5; -update noar ti set b2='O22I3AAI91GPOPJW5VE' where id=5; -update noar tt set b0='48X5A0KD6HNRA0PYRO34' where id=6; -update noar ti set b0='48X5A0KD6HNRA0PYRO34' where id=6; -update noar tt set b1='RUVCMGC05CKVUTKGFH8NH1CF' where id=6; -update noar ti set b1='RUVCMGC05CKVUTKGFH8NH1CF' where id=6; -update noar tt set b2='ERCBW35363OYOBYREBDJRDCNTSGUB8N8' where id=6; -update noar ti set b2='ERCBW35363OYOBYREBDJRDCNTSGUB8N8' where id=6; -update noar tt set b0='PHGE90JKAE14EVI' where id=7; -update noar ti set b0='PHGE90JKAE14EVI' where id=7; -update noar tt set b1='PUX8' where id=7; -update noar ti set b1='PUX8' where id=7; -update noar tt set b2='U562PGF7JNY3XPDA7ONZ' where id=7; -update noar ti set b2='U562PGF7JNY3XPDA7ONZ' where id=7; -update noar tt set b0='LJKEHRQUK58A7KLG6JQGN' where id=8; -update noar ti set b0='LJKEHRQUK58A7KLG6JQGN' where id=8; -update noar tt set b1='3IK2Q' where id=8; -update noar ti set b1='3IK2Q' where id=8; -update noar tt set b2='9LUEWCJIP1KKV6JNZXRYOEZW7YUG8Z7M' where id=8; -update noar ti set b2='9LUEWCJIP1KKV6JNZXRYOEZW7YUG8Z7M' where id=8; -update noar tt set b0='GJY3JNVBRPI1GR44YATZTW12IVA5P' where id=9; -update noar ti set b0='GJY3JNVBRPI1GR44YATZTW12IVA5P' where id=9; -update noar tt set b1='QMKPYZAGVG89OSFIFPBXY74SRT7' where id=9; -update noar ti set b1='QMKPYZAGVG89OSFIFPBXY74SRT7' where id=9; -update noar tt set b2='3KJTATITCH2IG90S' where id=9; -update noar ti set b2='3KJTATITCH2IG90S' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -b0 mediumblob not null, -b1 longblob not null, -b2 longblob not null -) engine=tokudb; -insert into tt values (1,'','',''); -insert into tt values (2,'','',''); -insert into tt values (3,'','',''); -insert into tt values (4,'','',''); -insert into tt values (5,'','',''); -insert into tt values (6,'','',''); -insert into tt values (7,'','',''); -insert into tt values (8,'','',''); -insert into tt values (9,'','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set b0='XLSSZRO' where id=1; -update noar ti set b0='XLSSZRO' where id=1; -update noar tt set b1='8' where id=1; -update noar ti set b1='8' where id=1; -update noar tt set b2='S8Q4QRFZYUFT36KU4EO78UPHHTX1F9C' where id=1; -update noar ti set b2='S8Q4QRFZYUFT36KU4EO78UPHHTX1F9C' where id=1; -update noar tt set b0='MAZR66TUMVRHAVG' where id=2; -update noar ti set b0='MAZR66TUMVRHAVG' where id=2; -update noar tt set b1='P8L5Y36PX' where id=2; -update noar ti set b1='P8L5Y36PX' where id=2; -update noar tt set b2='R0QWA98' where id=2; -update noar ti set b2='R0QWA98' where id=2; -update noar tt set b0='5XFZQ2UIQV6KLOQC3IJSIO84J66' where id=3; -update noar ti set b0='5XFZQ2UIQV6KLOQC3IJSIO84J66' where id=3; -update noar tt set b1='NV0WHD413MZ5UG0Q' where id=3; -update noar ti set b1='NV0WHD413MZ5UG0Q' where id=3; -update noar tt set b2='Q58X4R1NKDN07' where id=3; -update noar ti set b2='Q58X4R1NKDN07' where id=3; -update noar tt set b0='6LPVBTEW8' where id=4; -update noar ti set b0='6LPVBTEW8' where id=4; -update noar tt set b1='3UD320' where id=4; -update noar ti set b1='3UD320' where id=4; -update noar tt set b2='Z5U' where id=4; -update noar ti set b2='Z5U' where id=4; -update noar tt set b0='ZZ0F8BTA696P7' where id=5; -update noar ti set b0='ZZ0F8BTA696P7' where id=5; -update noar tt set b1='ERZ63IQCGM5GJSM73PBNWQVV2TDR' where id=5; -update noar ti set b1='ERZ63IQCGM5GJSM73PBNWQVV2TDR' where id=5; -update noar tt set b2='EH0T8993' where id=5; -update noar ti set b2='EH0T8993' where id=5; -update noar tt set b0='2XHTI3RA3ONPUTYQSQJDBIU0D' where id=6; -update noar ti set b0='2XHTI3RA3ONPUTYQSQJDBIU0D' where id=6; -update noar tt set b1='HN82VINZLWBNA69TOPU' where id=6; -update noar ti set b1='HN82VINZLWBNA69TOPU' where id=6; -update noar tt set b2='EAHU7YT1YP91SYEIOI29F6188' where id=6; -update noar ti set b2='EAHU7YT1YP91SYEIOI29F6188' where id=6; -update noar tt set b0='7GXGKG54FPDRKXJ' where id=7; -update noar ti set b0='7GXGKG54FPDRKXJ' where id=7; -update noar tt set b1='8QOHIX9AJ3030XGQZAAYKE8VEGX9' where id=7; -update noar ti set b1='8QOHIX9AJ3030XGQZAAYKE8VEGX9' where id=7; -update noar tt set b2='W8VM84Q' where id=7; -update noar ti set b2='W8VM84Q' where id=7; -update noar tt set b0='EV' where id=8; -update noar ti set b0='EV' where id=8; -update noar tt set b1='8HG0P' where id=8; -update noar ti set b1='8HG0P' where id=8; -update noar tt set b2='6J8XB9T2VKOGZ64AX7TJEB' where id=8; -update noar ti set b2='6J8XB9T2VKOGZ64AX7TJEB' where id=8; -update noar tt set b0='ECQLJ96HLRXI51N43K0ROIOESK6U' where id=9; -update noar ti set b0='ECQLJ96HLRXI51N43K0ROIOESK6U' where id=9; -update noar tt set b1='DRML428XG4R67BX0FN2G9GU' where id=9; -update noar ti set b1='DRML428XG4R67BX0FN2G9GU' where id=9; -update noar tt set b2='EW2G0TEWQ8GBQCRIH0083N5O' where id=9; -update noar ti set b2='EW2G0TEWQ8GBQCRIH0083N5O' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -b0 mediumblob null, -b1 longblob null, -b2 text null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set b0='MAXMPF7TUV0MCI56H1YFPH5' where id=1; -update noar ti set b0='MAXMPF7TUV0MCI56H1YFPH5' where id=1; -update noar tt set b1='S5EKMHZJ8CLDJ9MNKIFDL2H550SLET' where id=1; -update noar ti set b1='S5EKMHZJ8CLDJ9MNKIFDL2H550SLET' where id=1; -update noar tt set b2='C8KWQI6XUM04JT7OVZ' where id=1; -update noar ti set b2='C8KWQI6XUM04JT7OVZ' where id=1; -update noar tt set b0='LQEYSD1WNZTEGU2H67LBR6FZ0TX68Q' where id=2; -update noar ti set b0='LQEYSD1WNZTEGU2H67LBR6FZ0TX68Q' where id=2; -update noar tt set b1='4UYF6' where id=2; -update noar ti set b1='4UYF6' where id=2; -update noar tt set b2='X4S07Q4BPNVLFI70RX3GZHT8' where id=2; -update noar ti set b2='X4S07Q4BPNVLFI70RX3GZHT8' where id=2; -update noar tt set b0='F6MZ9NJELPT20WGF06OJQEK' where id=3; -update noar ti set b0='F6MZ9NJELPT20WGF06OJQEK' where id=3; -update noar tt set b1='S5O0BME9J8LYOAUECGIE26ZJ5HT' where id=3; -update noar ti set b1='S5O0BME9J8LYOAUECGIE26ZJ5HT' where id=3; -update noar tt set b2='6X8PYH566263PDZCHLKSYGAD9BMZP1' where id=3; -update noar ti set b2='6X8PYH566263PDZCHLKSYGAD9BMZP1' where id=3; -update noar tt set b0='R4K3C5YXY' where id=4; -update noar ti set b0='R4K3C5YXY' where id=4; -update noar tt set b1='BZ3VDZCVF33MFAJID27VS98' where id=4; -update noar ti set b1='BZ3VDZCVF33MFAJID27VS98' where id=4; -update noar tt set b2='919DT0JYDNP83TDYULW7ADCKU0KONWI' where id=4; -update noar ti set b2='919DT0JYDNP83TDYULW7ADCKU0KONWI' where id=4; -update noar tt set b0='X4' where id=5; -update noar ti set b0='X4' where id=5; -update noar tt set b1='Y8EMEG189APTMZQZNOZC8BEWRE' where id=5; -update noar ti set b1='Y8EMEG189APTMZQZNOZC8BEWRE' where id=5; -update noar tt set b2='O8G8767UNH2EGP51EDKM73' where id=5; -update noar ti set b2='O8G8767UNH2EGP51EDKM73' where id=5; -update noar tt set b0='T' where id=6; -update noar ti set b0='T' where id=6; -update noar tt set b1='UCOOJ2XL5I' where id=6; -update noar ti set b1='UCOOJ2XL5I' where id=6; -update noar tt set b2='GOAHWCD3HAT' where id=6; -update noar ti set b2='GOAHWCD3HAT' where id=6; -update noar tt set b0='RLWOZRXGBWP4U' where id=7; -update noar ti set b0='RLWOZRXGBWP4U' where id=7; -update noar tt set b1='003TSEHK4X0IN' where id=7; -update noar ti set b1='003TSEHK4X0IN' where id=7; -update noar tt set b2='VVRVGIUJXC1AQ9VEOM6Z50H7GDA6GOMD' where id=7; -update noar ti set b2='VVRVGIUJXC1AQ9VEOM6Z50H7GDA6GOMD' where id=7; -update noar tt set b0='DUX0L' where id=8; -update noar ti set b0='DUX0L' where id=8; -update noar tt set b1='JAZY2' where id=8; -update noar ti set b1='JAZY2' where id=8; -update noar tt set b2='KOSRX1CYE3IYSQ52O4NXSQH' where id=8; -update noar ti set b2='KOSRX1CYE3IYSQ52O4NXSQH' where id=8; -update noar tt set b0='T' where id=9; -update noar ti set b0='T' where id=9; -update noar tt set b1='I1' where id=9; -update noar ti set b1='I1' where id=9; -update noar tt set b2='M6IJVN179XNMABFH77B7XYQRO3ZPK6PX' where id=9; -update noar ti set b2='M6IJVN179XNMABFH77B7XYQRO3ZPK6PX' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -b0 mediumblob not null, -b1 longblob not null, -b2 text not null -) engine=tokudb; -insert into tt values (1,'','',''); -insert into tt values (2,'','',''); -insert into tt values (3,'','',''); -insert into tt values (4,'','',''); -insert into tt values (5,'','',''); -insert into tt values (6,'','',''); -insert into tt values (7,'','',''); -insert into tt values (8,'','',''); -insert into tt values (9,'','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set b0='ARF2OX6I4NCXXOJABZ3CJ' where id=1; -update noar ti set b0='ARF2OX6I4NCXXOJABZ3CJ' where id=1; -update noar tt set b1='NWIX38X5JHKFVS2J3K0HSXSF' where id=1; -update noar ti set b1='NWIX38X5JHKFVS2J3K0HSXSF' where id=1; -update noar tt set b2='T3QSG3MSW4GR4KOY7' where id=1; -update noar ti set b2='T3QSG3MSW4GR4KOY7' where id=1; -update noar tt set b0='TB4KUIEG0P3RJE9O8TJFCK2A6SD66WPN' where id=2; -update noar ti set b0='TB4KUIEG0P3RJE9O8TJFCK2A6SD66WPN' where id=2; -update noar tt set b1='ZB38GFHO5G25' where id=2; -update noar ti set b1='ZB38GFHO5G25' where id=2; -update noar tt set b2='DOXK2H4BDYPQ' where id=2; -update noar ti set b2='DOXK2H4BDYPQ' where id=2; -update noar tt set b0='HI2INZC3LV' where id=3; -update noar ti set b0='HI2INZC3LV' where id=3; -update noar tt set b1='SEYL29YL09' where id=3; -update noar ti set b1='SEYL29YL09' where id=3; -update noar tt set b2='Q373ECQ6WFJYBTX33IHAW9VV1Z74Y' where id=3; -update noar ti set b2='Q373ECQ6WFJYBTX33IHAW9VV1Z74Y' where id=3; -update noar tt set b0='IOFI267CHU6NYW5XD' where id=4; -update noar ti set b0='IOFI267CHU6NYW5XD' where id=4; -update noar tt set b1='1AZDD78RDDKF' where id=4; -update noar ti set b1='1AZDD78RDDKF' where id=4; -update noar tt set b2='J5XXCDGGQ' where id=4; -update noar ti set b2='J5XXCDGGQ' where id=4; -update noar tt set b0='COVLBUULRWR9ET91497QKD1ARXA24FX' where id=5; -update noar ti set b0='COVLBUULRWR9ET91497QKD1ARXA24FX' where id=5; -update noar tt set b1='FO87IWC9NOFOQ7H7LMWBHQTL0DMRV' where id=5; -update noar ti set b1='FO87IWC9NOFOQ7H7LMWBHQTL0DMRV' where id=5; -update noar tt set b2='NGRXKNKH8F' where id=5; -update noar ti set b2='NGRXKNKH8F' where id=5; -update noar tt set b0='B14N1BBIV' where id=6; -update noar ti set b0='B14N1BBIV' where id=6; -update noar tt set b1='GQGLP8AILOUJX7KR' where id=6; -update noar ti set b1='GQGLP8AILOUJX7KR' where id=6; -update noar tt set b2='VEZ00YSQH91RP854VU6WYX3O6WV' where id=6; -update noar ti set b2='VEZ00YSQH91RP854VU6WYX3O6WV' where id=6; -update noar tt set b0='HGG16UAO75AXAWXNHN2BJH6NF8' where id=7; -update noar ti set b0='HGG16UAO75AXAWXNHN2BJH6NF8' where id=7; -update noar tt set b1='HE69FHE59A62' where id=7; -update noar ti set b1='HE69FHE59A62' where id=7; -update noar tt set b2='QGYJUGF4SH2FVAIOSIUH7RIHQGAYT4IF' where id=7; -update noar ti set b2='QGYJUGF4SH2FVAIOSIUH7RIHQGAYT4IF' where id=7; -update noar tt set b0='0QPCNEPH4HS3Y95056PYHD' where id=8; -update noar ti set b0='0QPCNEPH4HS3Y95056PYHD' where id=8; -update noar tt set b1='76VVLV9EUICA8VI14EWHOZ981S' where id=8; -update noar ti set b1='76VVLV9EUICA8VI14EWHOZ981S' where id=8; -update noar tt set b2='FP9GJ88TSSXHZ6IG78HZL8LOE' where id=8; -update noar ti set b2='FP9GJ88TSSXHZ6IG78HZL8LOE' where id=8; -update noar tt set b0='9MK5D1D120TUO930' where id=9; -update noar ti set b0='9MK5D1D120TUO930' where id=9; -update noar tt set b1='ZIKXPL7092J9X5HGM0M8K3JGJY7C7L5' where id=9; -update noar ti set b1='ZIKXPL7092J9X5HGM0M8K3JGJY7C7L5' where id=9; -update noar tt set b2='896QEL8BV8U' where id=9; -update noar ti set b2='896QEL8BV8U' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -b0 mediumblob null, -b1 text null, -b2 tinyblob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set b0='W0QJFVJ' where id=1; -update noar ti set b0='W0QJFVJ' where id=1; -update noar tt set b1='YM1BF3D6W4TQOFK93FGYD8' where id=1; -update noar ti set b1='YM1BF3D6W4TQOFK93FGYD8' where id=1; -update noar tt set b2='FB6EQWNT30U4J' where id=1; -update noar ti set b2='FB6EQWNT30U4J' where id=1; -update noar tt set b0='P6P5PTOVMOWYREA5WLZA6MLJE8' where id=2; -update noar ti set b0='P6P5PTOVMOWYREA5WLZA6MLJE8' where id=2; -update noar tt set b1='HF' where id=2; -update noar ti set b1='HF' where id=2; -update noar tt set b2='RX470Z0SCFQ8A73FP2QVNTAVCV' where id=2; -update noar ti set b2='RX470Z0SCFQ8A73FP2QVNTAVCV' where id=2; -update noar tt set b0='9LKU6FRQVHWPBCYT915SINB9PZT3' where id=3; -update noar ti set b0='9LKU6FRQVHWPBCYT915SINB9PZT3' where id=3; -update noar tt set b1='OI' where id=3; -update noar ti set b1='OI' where id=3; -update noar tt set b2='7RJ1V' where id=3; -update noar ti set b2='7RJ1V' where id=3; -update noar tt set b0='Z7F9J8HST42KX4CR9CF97J48' where id=4; -update noar ti set b0='Z7F9J8HST42KX4CR9CF97J48' where id=4; -update noar tt set b1='OJUDCULJW2F' where id=4; -update noar ti set b1='OJUDCULJW2F' where id=4; -update noar tt set b2='2YBFLBOTWURCB0WGXIZU5L' where id=4; -update noar ti set b2='2YBFLBOTWURCB0WGXIZU5L' where id=4; -update noar tt set b0='WM3J2U097STSKM6U6DW7UJZ82S3' where id=5; -update noar ti set b0='WM3J2U097STSKM6U6DW7UJZ82S3' where id=5; -update noar tt set b1='UPF2RESCJ328IRRF0JE4' where id=5; -update noar ti set b1='UPF2RESCJ328IRRF0JE4' where id=5; -update noar tt set b2='E51TQ8CWY2O9370GPECYGE' where id=5; -update noar ti set b2='E51TQ8CWY2O9370GPECYGE' where id=5; -update noar tt set b0='6B5D7SRKWBVRD' where id=6; -update noar ti set b0='6B5D7SRKWBVRD' where id=6; -update noar tt set b1='BOKNV90GOXK7LS9DE94JZ4E3H130' where id=6; -update noar ti set b1='BOKNV90GOXK7LS9DE94JZ4E3H130' where id=6; -update noar tt set b2='0973T91EOUKAJ21KTO3UVDG2138XDE0P' where id=6; -update noar ti set b2='0973T91EOUKAJ21KTO3UVDG2138XDE0P' where id=6; -update noar tt set b0='E5EJ5O2KSMY301OH82D7QTLINLLAXO8' where id=7; -update noar ti set b0='E5EJ5O2KSMY301OH82D7QTLINLLAXO8' where id=7; -update noar tt set b1='2OO1VI791DPW' where id=7; -update noar ti set b1='2OO1VI791DPW' where id=7; -update noar tt set b2='M4L3WADCIDTSKP0K4B' where id=7; -update noar ti set b2='M4L3WADCIDTSKP0K4B' where id=7; -update noar tt set b0='OHLFBDOPP8LDRSVGFUKYF' where id=8; -update noar ti set b0='OHLFBDOPP8LDRSVGFUKYF' where id=8; -update noar tt set b1='HNGAG0PI2P14' where id=8; -update noar ti set b1='HNGAG0PI2P14' where id=8; -update noar tt set b2='LHO4A4W1ABLSI8OFLHLJ7ITQ0AJS08L' where id=8; -update noar ti set b2='LHO4A4W1ABLSI8OFLHLJ7ITQ0AJS08L' where id=8; -update noar tt set b0='1L4U80T47PB7QH9UB8EELVY6ZDF' where id=9; -update noar ti set b0='1L4U80T47PB7QH9UB8EELVY6ZDF' where id=9; -update noar tt set b1='4D8M2CDJ3HGPO9I8Q1IOBCIA' where id=9; -update noar ti set b1='4D8M2CDJ3HGPO9I8Q1IOBCIA' where id=9; -update noar tt set b2='XC8FQAYG7ZIJ33Y9GFND89NEZ' where id=9; -update noar ti set b2='XC8FQAYG7ZIJ33Y9GFND89NEZ' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -b0 mediumblob not null, -b1 text not null, -b2 tinyblob not null -) engine=tokudb; -insert into tt values (1,'','',''); -insert into tt values (2,'','',''); -insert into tt values (3,'','',''); -insert into tt values (4,'','',''); -insert into tt values (5,'','',''); -insert into tt values (6,'','',''); -insert into tt values (7,'','',''); -insert into tt values (8,'','',''); -insert into tt values (9,'','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set b0='QGWQDDONQL5X25L8VNYUUXU' where id=1; -update noar ti set b0='QGWQDDONQL5X25L8VNYUUXU' where id=1; -update noar tt set b1='EBL959YUAGUP1EPG2520JJDFH7OTM7XZ' where id=1; -update noar ti set b1='EBL959YUAGUP1EPG2520JJDFH7OTM7XZ' where id=1; -update noar tt set b2='1M3E1RBQE4UQAEIYNL7ESD03J' where id=1; -update noar ti set b2='1M3E1RBQE4UQAEIYNL7ESD03J' where id=1; -update noar tt set b0='8TJ' where id=2; -update noar ti set b0='8TJ' where id=2; -update noar tt set b1='1Q3Y77861R3AA9GCECZZ6E9MDLZP' where id=2; -update noar ti set b1='1Q3Y77861R3AA9GCECZZ6E9MDLZP' where id=2; -update noar tt set b2='HUN0WK1W5DUDLPUOHW' where id=2; -update noar ti set b2='HUN0WK1W5DUDLPUOHW' where id=2; -update noar tt set b0='GEQB5UIWO18S2JCI4O8536FTLVF0CR9K' where id=3; -update noar ti set b0='GEQB5UIWO18S2JCI4O8536FTLVF0CR9K' where id=3; -update noar tt set b1='P1YBSPIH2ZRKBN6ES' where id=3; -update noar ti set b1='P1YBSPIH2ZRKBN6ES' where id=3; -update noar tt set b2='LB5AASRDMOTT2POT3HED081HMHY49YN' where id=3; -update noar ti set b2='LB5AASRDMOTT2POT3HED081HMHY49YN' where id=3; -update noar tt set b0='5DYIRSIV5ZXMTKHL90FJ3K23' where id=4; -update noar ti set b0='5DYIRSIV5ZXMTKHL90FJ3K23' where id=4; -update noar tt set b1='YRAOVCPOBGHZZXDJRBTE8ZOR9KLD2' where id=4; -update noar ti set b1='YRAOVCPOBGHZZXDJRBTE8ZOR9KLD2' where id=4; -update noar tt set b2='8S35YGWXSQY22PPWC8SR5V20' where id=4; -update noar ti set b2='8S35YGWXSQY22PPWC8SR5V20' where id=4; -update noar tt set b0='CM1P4AU' where id=5; -update noar ti set b0='CM1P4AU' where id=5; -update noar tt set b1='TFQBR6' where id=5; -update noar ti set b1='TFQBR6' where id=5; -update noar tt set b2='PBGEKEEWEJGA' where id=5; -update noar ti set b2='PBGEKEEWEJGA' where id=5; -update noar tt set b0='A1KAGH5DTD510F2AH7TI6Q6Z13LA27T' where id=6; -update noar ti set b0='A1KAGH5DTD510F2AH7TI6Q6Z13LA27T' where id=6; -update noar tt set b1='X8FD0OFUZ64GWTW2RY5JP' where id=6; -update noar ti set b1='X8FD0OFUZ64GWTW2RY5JP' where id=6; -update noar tt set b2='3P7CJ7PKQIDQZVSQUQIT6QC4EEIVX26' where id=6; -update noar ti set b2='3P7CJ7PKQIDQZVSQUQIT6QC4EEIVX26' where id=6; -update noar tt set b0='06136OVB9R' where id=7; -update noar ti set b0='06136OVB9R' where id=7; -update noar tt set b1='ECTIILXY4HY8NH11H' where id=7; -update noar ti set b1='ECTIILXY4HY8NH11H' where id=7; -update noar tt set b2='IC2P5EB' where id=7; -update noar ti set b2='IC2P5EB' where id=7; -update noar tt set b0='IGP12N09O1SVH' where id=8; -update noar ti set b0='IGP12N09O1SVH' where id=8; -update noar tt set b1='JRMWRF4CYVMU2IL2OJC331G8GC5' where id=8; -update noar ti set b1='JRMWRF4CYVMU2IL2OJC331G8GC5' where id=8; -update noar tt set b2='TRRJCPEGX3N13TX8' where id=8; -update noar ti set b2='TRRJCPEGX3N13TX8' where id=8; -update noar tt set b0='D563TB8' where id=9; -update noar ti set b0='D563TB8' where id=9; -update noar tt set b1='TNY' where id=9; -update noar ti set b1='TNY' where id=9; -update noar tt set b2='PBLTJHGO6UE' where id=9; -update noar ti set b2='PBLTJHGO6UE' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -b0 mediumblob null, -b1 text null, -b2 blob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set b0='OJYDB8MWAB63YTG0E1JHFAPSEN8O39LG' where id=1; -update noar ti set b0='OJYDB8MWAB63YTG0E1JHFAPSEN8O39LG' where id=1; -update noar tt set b1='WEGWFTFTVR8TW7SII56CXYW' where id=1; -update noar ti set b1='WEGWFTFTVR8TW7SII56CXYW' where id=1; -update noar tt set b2='Y3NR81I9IF0XUF0MHY4IGB36' where id=1; -update noar ti set b2='Y3NR81I9IF0XUF0MHY4IGB36' where id=1; -update noar tt set b0='D' where id=2; -update noar ti set b0='D' where id=2; -update noar tt set b1='EKVU3NT3N0VK0YT4WI4V208D6P' where id=2; -update noar ti set b1='EKVU3NT3N0VK0YT4WI4V208D6P' where id=2; -update noar tt set b2='7N7CWUOSN0U30AEWR23F3J25' where id=2; -update noar ti set b2='7N7CWUOSN0U30AEWR23F3J25' where id=2; -update noar tt set b0='0DFBT' where id=3; -update noar ti set b0='0DFBT' where id=3; -update noar tt set b1='49QW73ZWRP501FZ62RV932VXQ80ZZZ1T' where id=3; -update noar ti set b1='49QW73ZWRP501FZ62RV932VXQ80ZZZ1T' where id=3; -update noar tt set b2='ITX2UTXA4USKKPCN9W0REEUYJSMSPJ' where id=3; -update noar ti set b2='ITX2UTXA4USKKPCN9W0REEUYJSMSPJ' where id=3; -update noar tt set b0='XRYLIKBG' where id=4; -update noar ti set b0='XRYLIKBG' where id=4; -update noar tt set b1='D1L4AVKB3PY29' where id=4; -update noar ti set b1='D1L4AVKB3PY29' where id=4; -update noar tt set b2='DY6P9IFKZGHA0O9QSP7Y48E2K0O3' where id=4; -update noar ti set b2='DY6P9IFKZGHA0O9QSP7Y48E2K0O3' where id=4; -update noar tt set b0='G' where id=5; -update noar ti set b0='G' where id=5; -update noar tt set b1='30DKW9NKEH2PLYT67' where id=5; -update noar ti set b1='30DKW9NKEH2PLYT67' where id=5; -update noar tt set b2='UYLWN4VI7YOJDY98BYC06H' where id=5; -update noar ti set b2='UYLWN4VI7YOJDY98BYC06H' where id=5; -update noar tt set b0='HD5C5FO62R60MV32' where id=6; -update noar ti set b0='HD5C5FO62R60MV32' where id=6; -update noar tt set b1='JPMT3ORK6X6B' where id=6; -update noar ti set b1='JPMT3ORK6X6B' where id=6; -update noar tt set b2='JMCN7IEYYPX5A7P7AKU' where id=6; -update noar ti set b2='JMCN7IEYYPX5A7P7AKU' where id=6; -update noar tt set b0='6ZT2CAC6SPGFJT' where id=7; -update noar ti set b0='6ZT2CAC6SPGFJT' where id=7; -update noar tt set b1='VWXZURFZ05JU1O2NEQUKAPUV4' where id=7; -update noar ti set b1='VWXZURFZ05JU1O2NEQUKAPUV4' where id=7; -update noar tt set b2='ZZ8DDB6FQC50ER9KZMX285' where id=7; -update noar ti set b2='ZZ8DDB6FQC50ER9KZMX285' where id=7; -update noar tt set b0='DZJGBEZX6I7UPE9TA' where id=8; -update noar ti set b0='DZJGBEZX6I7UPE9TA' where id=8; -update noar tt set b1='L27Q' where id=8; -update noar ti set b1='L27Q' where id=8; -update noar tt set b2='7UHPKHZWJY4H0P8VP7U4NULH19R0M' where id=8; -update noar ti set b2='7UHPKHZWJY4H0P8VP7U4NULH19R0M' where id=8; -update noar tt set b0='C0G51KDVAZ2BKY03FAY4E' where id=9; -update noar ti set b0='C0G51KDVAZ2BKY03FAY4E' where id=9; -update noar tt set b1='M5PCQ9U0G1VSKJ5RHL4HENT' where id=9; -update noar ti set b1='M5PCQ9U0G1VSKJ5RHL4HENT' where id=9; -update noar tt set b2='7PG5GFY0BINV4A' where id=9; -update noar ti set b2='7PG5GFY0BINV4A' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -b0 mediumblob not null, -b1 text not null, -b2 blob not null -) engine=tokudb; -insert into tt values (1,'','',''); -insert into tt values (2,'','',''); -insert into tt values (3,'','',''); -insert into tt values (4,'','',''); -insert into tt values (5,'','',''); -insert into tt values (6,'','',''); -insert into tt values (7,'','',''); -insert into tt values (8,'','',''); -insert into tt values (9,'','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set b0='WPLDP7C9S5COMWMF8L0UUJ' where id=1; -update noar ti set b0='WPLDP7C9S5COMWMF8L0UUJ' where id=1; -update noar tt set b1='S4QEXH0J9T' where id=1; -update noar ti set b1='S4QEXH0J9T' where id=1; -update noar tt set b2='ADA4K9BMN6Y7IR98WL' where id=1; -update noar ti set b2='ADA4K9BMN6Y7IR98WL' where id=1; -update noar tt set b0='1NN67JASBVRJ' where id=2; -update noar ti set b0='1NN67JASBVRJ' where id=2; -update noar tt set b1='DJP9MTVJMNF7M6DP4BRCKGT53' where id=2; -update noar ti set b1='DJP9MTVJMNF7M6DP4BRCKGT53' where id=2; -update noar tt set b2='X3YFQC62W25L2OMCZISXI2WP' where id=2; -update noar ti set b2='X3YFQC62W25L2OMCZISXI2WP' where id=2; -update noar tt set b0='KLCDLI5TTTM3TLT6PULCOHW' where id=3; -update noar ti set b0='KLCDLI5TTTM3TLT6PULCOHW' where id=3; -update noar tt set b1='8A4KA8V4DWXNK2UCMSNXDNZ0XIUMCK' where id=3; -update noar ti set b1='8A4KA8V4DWXNK2UCMSNXDNZ0XIUMCK' where id=3; -update noar tt set b2='WSKRRRSTW1VW4UJ9XBNUX3M' where id=3; -update noar ti set b2='WSKRRRSTW1VW4UJ9XBNUX3M' where id=3; -update noar tt set b0='ZDMKXU8JYR891BTOIZ050Y6EDB' where id=4; -update noar ti set b0='ZDMKXU8JYR891BTOIZ050Y6EDB' where id=4; -update noar tt set b1='J4XUPSONCZZDEI6IFW' where id=4; -update noar ti set b1='J4XUPSONCZZDEI6IFW' where id=4; -update noar tt set b2='U9WKYA6' where id=4; -update noar ti set b2='U9WKYA6' where id=4; -update noar tt set b0='G66' where id=5; -update noar ti set b0='G66' where id=5; -update noar tt set b1='KIFJN1NZGZDY5MVDRJQ' where id=5; -update noar ti set b1='KIFJN1NZGZDY5MVDRJQ' where id=5; -update noar tt set b2='QI2KOTI' where id=5; -update noar ti set b2='QI2KOTI' where id=5; -update noar tt set b0='6LI7VNF5DE7J4IBMOSKCR9693XCVVRE' where id=6; -update noar ti set b0='6LI7VNF5DE7J4IBMOSKCR9693XCVVRE' where id=6; -update noar tt set b1='JLIJWW1ENFYVXUX0O4FOW' where id=6; -update noar ti set b1='JLIJWW1ENFYVXUX0O4FOW' where id=6; -update noar tt set b2='7IML6T4324046OECV9J5RP0KRAL0' where id=6; -update noar ti set b2='7IML6T4324046OECV9J5RP0KRAL0' where id=6; -update noar tt set b0='FQVFWHN88E9XZ9KT' where id=7; -update noar ti set b0='FQVFWHN88E9XZ9KT' where id=7; -update noar tt set b1='ZCORTFD9TO' where id=7; -update noar ti set b1='ZCORTFD9TO' where id=7; -update noar tt set b2='NZWVZV5M7UEGZE412K48' where id=7; -update noar ti set b2='NZWVZV5M7UEGZE412K48' where id=7; -update noar tt set b0='14ZWGXXU02SJGP1R7ETFU5' where id=8; -update noar ti set b0='14ZWGXXU02SJGP1R7ETFU5' where id=8; -update noar tt set b1='MW9IVFHIBZDAYGC1F2KIV0E' where id=8; -update noar ti set b1='MW9IVFHIBZDAYGC1F2KIV0E' where id=8; -update noar tt set b2='OY' where id=8; -update noar ti set b2='OY' where id=8; -update noar tt set b0='ZCE1Z1' where id=9; -update noar ti set b0='ZCE1Z1' where id=9; -update noar tt set b1='ID6VRJF66OU8SN60EY' where id=9; -update noar ti set b1='ID6VRJF66OU8SN60EY' where id=9; -update noar tt set b2='DM39LR37P6XB7KQXY' where id=9; -update noar ti set b2='DM39LR37P6XB7KQXY' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -b0 mediumblob null, -b1 text null, -b2 mediumblob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set b0='MO26TDAU' where id=1; -update noar ti set b0='MO26TDAU' where id=1; -update noar tt set b1='OLY4PJ9DUHJRJ4MAT1WYDO8T03R69' where id=1; -update noar ti set b1='OLY4PJ9DUHJRJ4MAT1WYDO8T03R69' where id=1; -update noar tt set b2='M6JJZ08IG2MO99XAETZ70RM' where id=1; -update noar ti set b2='M6JJZ08IG2MO99XAETZ70RM' where id=1; -update noar tt set b0='B77CGU2C3' where id=2; -update noar ti set b0='B77CGU2C3' where id=2; -update noar tt set b1='9FGMC9UV' where id=2; -update noar ti set b1='9FGMC9UV' where id=2; -update noar tt set b2='PJXELC' where id=2; -update noar ti set b2='PJXELC' where id=2; -update noar tt set b0='HXGLD' where id=3; -update noar ti set b0='HXGLD' where id=3; -update noar tt set b1='C36IY80' where id=3; -update noar ti set b1='C36IY80' where id=3; -update noar tt set b2='PJPIRG2MO' where id=3; -update noar ti set b2='PJPIRG2MO' where id=3; -update noar tt set b0='7QZ1UONC' where id=4; -update noar ti set b0='7QZ1UONC' where id=4; -update noar tt set b1='DKSZ13EZV0H86XZG5E10U' where id=4; -update noar ti set b1='DKSZ13EZV0H86XZG5E10U' where id=4; -update noar tt set b2='WAX1MPIF2N2SXAI3NX' where id=4; -update noar ti set b2='WAX1MPIF2N2SXAI3NX' where id=4; -update noar tt set b0='P' where id=5; -update noar ti set b0='P' where id=5; -update noar tt set b1='WCNF845CIL32MU11UUST7' where id=5; -update noar ti set b1='WCNF845CIL32MU11UUST7' where id=5; -update noar tt set b2='7DPY2HIGM' where id=5; -update noar ti set b2='7DPY2HIGM' where id=5; -update noar tt set b0='XC9REDW3OFHXI08CWH4Q' where id=6; -update noar ti set b0='XC9REDW3OFHXI08CWH4Q' where id=6; -update noar tt set b1='R5N915M1Q0QI4EOP7' where id=6; -update noar ti set b1='R5N915M1Q0QI4EOP7' where id=6; -update noar tt set b2='TTK8KG5CCCN71SWMIK' where id=6; -update noar ti set b2='TTK8KG5CCCN71SWMIK' where id=6; -update noar tt set b0='RJPKUXAVTW252NE' where id=7; -update noar ti set b0='RJPKUXAVTW252NE' where id=7; -update noar tt set b1='HWCQBI7B965LGCS8UU3A' where id=7; -update noar ti set b1='HWCQBI7B965LGCS8UU3A' where id=7; -update noar tt set b2='G3P7O9PG4LD5Z8IMLTVT0K5E6' where id=7; -update noar ti set b2='G3P7O9PG4LD5Z8IMLTVT0K5E6' where id=7; -update noar tt set b0='QOBKPBE6VF45GYCNC' where id=8; -update noar ti set b0='QOBKPBE6VF45GYCNC' where id=8; -update noar tt set b1='A7MG33' where id=8; -update noar ti set b1='A7MG33' where id=8; -update noar tt set b2='6YTS36DH0ZTJ1JVF3PD07T968A' where id=8; -update noar ti set b2='6YTS36DH0ZTJ1JVF3PD07T968A' where id=8; -update noar tt set b0='9HQ3TSV' where id=9; -update noar ti set b0='9HQ3TSV' where id=9; -update noar tt set b1='VM82BLAHGL5T97UYA' where id=9; -update noar ti set b1='VM82BLAHGL5T97UYA' where id=9; -update noar tt set b2='BV7B20OH71VL3A7J' where id=9; -update noar ti set b2='BV7B20OH71VL3A7J' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -b0 mediumblob not null, -b1 text not null, -b2 mediumblob not null -) engine=tokudb; -insert into tt values (1,'','',''); -insert into tt values (2,'','',''); -insert into tt values (3,'','',''); -insert into tt values (4,'','',''); -insert into tt values (5,'','',''); -insert into tt values (6,'','',''); -insert into tt values (7,'','',''); -insert into tt values (8,'','',''); -insert into tt values (9,'','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set b0='SQSFIG54XSZ1E' where id=1; -update noar ti set b0='SQSFIG54XSZ1E' where id=1; -update noar tt set b1='6BXXLC212IQEQ' where id=1; -update noar ti set b1='6BXXLC212IQEQ' where id=1; -update noar tt set b2='GYVTR' where id=1; -update noar ti set b2='GYVTR' where id=1; -update noar tt set b0='LMF3IIR5HK225OXPP' where id=2; -update noar ti set b0='LMF3IIR5HK225OXPP' where id=2; -update noar tt set b1='RR0F06FJBW' where id=2; -update noar ti set b1='RR0F06FJBW' where id=2; -update noar tt set b2='4AMQY64RN6LUME5TYAB519Q' where id=2; -update noar ti set b2='4AMQY64RN6LUME5TYAB519Q' where id=2; -update noar tt set b0='RYQU2MQ' where id=3; -update noar ti set b0='RYQU2MQ' where id=3; -update noar tt set b1='Z3T' where id=3; -update noar ti set b1='Z3T' where id=3; -update noar tt set b2='FEKQEZ1V3AXGTRZ' where id=3; -update noar ti set b2='FEKQEZ1V3AXGTRZ' where id=3; -update noar tt set b0='J0FM9KOZUR7RO7JRSOVL0UJ' where id=4; -update noar ti set b0='J0FM9KOZUR7RO7JRSOVL0UJ' where id=4; -update noar tt set b1='24QUOXMREDZ5AS2BMQHYMW' where id=4; -update noar ti set b1='24QUOXMREDZ5AS2BMQHYMW' where id=4; -update noar tt set b2='ECOGBNK9IPH0WQIXW7' where id=4; -update noar ti set b2='ECOGBNK9IPH0WQIXW7' where id=4; -update noar tt set b0='OCY6M8H3GGQ57T8HJG5YF9' where id=5; -update noar ti set b0='OCY6M8H3GGQ57T8HJG5YF9' where id=5; -update noar tt set b1='9J3GLLT7QGGNL5' where id=5; -update noar ti set b1='9J3GLLT7QGGNL5' where id=5; -update noar tt set b2='O' where id=5; -update noar ti set b2='O' where id=5; -update noar tt set b0='38G39L714NT2F6TJ2' where id=6; -update noar ti set b0='38G39L714NT2F6TJ2' where id=6; -update noar tt set b1='Y5O1P9JY' where id=6; -update noar ti set b1='Y5O1P9JY' where id=6; -update noar tt set b2='HPKLJ3M2LLA24J93N6AL5D' where id=6; -update noar ti set b2='HPKLJ3M2LLA24J93N6AL5D' where id=6; -update noar tt set b0='84FQUWELNZGNWUHXWCB4N4YQ5S' where id=7; -update noar ti set b0='84FQUWELNZGNWUHXWCB4N4YQ5S' where id=7; -update noar tt set b1='QNE3' where id=7; -update noar ti set b1='QNE3' where id=7; -update noar tt set b2='A4VSP8T3SSXQ' where id=7; -update noar ti set b2='A4VSP8T3SSXQ' where id=7; -update noar tt set b0='EXFL3VSS21ZYCLRW2UW4OVYYT' where id=8; -update noar ti set b0='EXFL3VSS21ZYCLRW2UW4OVYYT' where id=8; -update noar tt set b1='HCAHS6X6M92VVSC7P2' where id=8; -update noar ti set b1='HCAHS6X6M92VVSC7P2' where id=8; -update noar tt set b2='J8TWW74' where id=8; -update noar ti set b2='J8TWW74' where id=8; -update noar tt set b0='9LXGXJ4ERVU7D9Z' where id=9; -update noar ti set b0='9LXGXJ4ERVU7D9Z' where id=9; -update noar tt set b1='E' where id=9; -update noar ti set b1='E' where id=9; -update noar tt set b2='4STJCY7EQ74FUNJHA9C' where id=9; -update noar ti set b2='4STJCY7EQ74FUNJHA9C' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -b0 mediumblob null, -b1 text null, -b2 longblob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set b0='MEY' where id=1; -update noar ti set b0='MEY' where id=1; -update noar tt set b1='WO8KREUBEIEZLLN7BOSUO05FXSTMGX' where id=1; -update noar ti set b1='WO8KREUBEIEZLLN7BOSUO05FXSTMGX' where id=1; -update noar tt set b2='BHEXCELMKQZQ2FI9XCIZ' where id=1; -update noar ti set b2='BHEXCELMKQZQ2FI9XCIZ' where id=1; -update noar tt set b0='GR35XAX7DH0IVGCZXE' where id=2; -update noar ti set b0='GR35XAX7DH0IVGCZXE' where id=2; -update noar tt set b1='KIZHZ1' where id=2; -update noar ti set b1='KIZHZ1' where id=2; -update noar tt set b2='JVIUV8JDRF7LSREK43L7YEA8R0P' where id=2; -update noar ti set b2='JVIUV8JDRF7LSREK43L7YEA8R0P' where id=2; -update noar tt set b0='DCVA0MAQ' where id=3; -update noar ti set b0='DCVA0MAQ' where id=3; -update noar tt set b1='VSIV4KCPQVJN' where id=3; -update noar ti set b1='VSIV4KCPQVJN' where id=3; -update noar tt set b2='NURPT' where id=3; -update noar ti set b2='NURPT' where id=3; -update noar tt set b0='CBX256Z5QSS8TDK547BLJ8USDF' where id=4; -update noar ti set b0='CBX256Z5QSS8TDK547BLJ8USDF' where id=4; -update noar tt set b1='W' where id=4; -update noar ti set b1='W' where id=4; -update noar tt set b2='PHL73DJ8MIFYBXS8GQN00' where id=4; -update noar ti set b2='PHL73DJ8MIFYBXS8GQN00' where id=4; -update noar tt set b0='PDAPO' where id=5; -update noar ti set b0='PDAPO' where id=5; -update noar tt set b1='75BOFPWVTS0SX9H13U' where id=5; -update noar ti set b1='75BOFPWVTS0SX9H13U' where id=5; -update noar tt set b2='U' where id=5; -update noar ti set b2='U' where id=5; -update noar tt set b0='6TTBI9QBDL8YC0BQ' where id=6; -update noar ti set b0='6TTBI9QBDL8YC0BQ' where id=6; -update noar tt set b1='R0RFXKIK8Q229G84HCG65GPFYHYPV4' where id=6; -update noar ti set b1='R0RFXKIK8Q229G84HCG65GPFYHYPV4' where id=6; -update noar tt set b2='YLVD17U4C2J9OQWTEPB3LURN0XL0Y3G' where id=6; -update noar ti set b2='YLVD17U4C2J9OQWTEPB3LURN0XL0Y3G' where id=6; -update noar tt set b0='LK1DQH34TFB0CK5BA1I' where id=7; -update noar ti set b0='LK1DQH34TFB0CK5BA1I' where id=7; -update noar tt set b1='NQ3HCK' where id=7; -update noar ti set b1='NQ3HCK' where id=7; -update noar tt set b2='KNDF1DKQRH5PO92' where id=7; -update noar ti set b2='KNDF1DKQRH5PO92' where id=7; -update noar tt set b0='UEMG' where id=8; -update noar ti set b0='UEMG' where id=8; -update noar tt set b1='8CXCKX5NRK9NTZ6IQE5R' where id=8; -update noar ti set b1='8CXCKX5NRK9NTZ6IQE5R' where id=8; -update noar tt set b2='ENVP2Z6ADCZ7N' where id=8; -update noar ti set b2='ENVP2Z6ADCZ7N' where id=8; -update noar tt set b0='TH4AGQYIC2VTL' where id=9; -update noar ti set b0='TH4AGQYIC2VTL' where id=9; -update noar tt set b1='NO3XHO0U' where id=9; -update noar ti set b1='NO3XHO0U' where id=9; -update noar tt set b2='FOS0YAIHPEJ4GXN47ME6S2I34KDCRF5' where id=9; -update noar ti set b2='FOS0YAIHPEJ4GXN47ME6S2I34KDCRF5' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -b0 mediumblob not null, -b1 text not null, -b2 longblob not null -) engine=tokudb; -insert into tt values (1,'','',''); -insert into tt values (2,'','',''); -insert into tt values (3,'','',''); -insert into tt values (4,'','',''); -insert into tt values (5,'','',''); -insert into tt values (6,'','',''); -insert into tt values (7,'','',''); -insert into tt values (8,'','',''); -insert into tt values (9,'','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set b0='47GCPQAS8Z' where id=1; -update noar ti set b0='47GCPQAS8Z' where id=1; -update noar tt set b1='RUUX6W0XPRGR1T' where id=1; -update noar ti set b1='RUUX6W0XPRGR1T' where id=1; -update noar tt set b2='O1OLWMDZE4N4KQTQ6V5SSQQ' where id=1; -update noar ti set b2='O1OLWMDZE4N4KQTQ6V5SSQQ' where id=1; -update noar tt set b0='5' where id=2; -update noar ti set b0='5' where id=2; -update noar tt set b1='2C16JT7MNVVYOOFGMCUH4H17UV2' where id=2; -update noar ti set b1='2C16JT7MNVVYOOFGMCUH4H17UV2' where id=2; -update noar tt set b2='HX4ZXAAAPJRGAEPNYGW' where id=2; -update noar ti set b2='HX4ZXAAAPJRGAEPNYGW' where id=2; -update noar tt set b0='UOEWA5QXDC' where id=3; -update noar ti set b0='UOEWA5QXDC' where id=3; -update noar tt set b1='Z6XUNYQK6CCEMFY1' where id=3; -update noar ti set b1='Z6XUNYQK6CCEMFY1' where id=3; -update noar tt set b2='VYBYWHFYAH8NZQSYSKBMI0X6T4V5PB' where id=3; -update noar ti set b2='VYBYWHFYAH8NZQSYSKBMI0X6T4V5PB' where id=3; -update noar tt set b0='RC28XF0SK9PK0ADQ' where id=4; -update noar ti set b0='RC28XF0SK9PK0ADQ' where id=4; -update noar tt set b1='Z3MJHR9Y' where id=4; -update noar ti set b1='Z3MJHR9Y' where id=4; -update noar tt set b2='PGVG9TYDNRXL4PHSNE2' where id=4; -update noar ti set b2='PGVG9TYDNRXL4PHSNE2' where id=4; -update noar tt set b0='Z8HXG3YMG81O' where id=5; -update noar ti set b0='Z8HXG3YMG81O' where id=5; -update noar tt set b1='HANBKEQB' where id=5; -update noar ti set b1='HANBKEQB' where id=5; -update noar tt set b2='WET8XPK0U46O04F2PWLYO' where id=5; -update noar ti set b2='WET8XPK0U46O04F2PWLYO' where id=5; -update noar tt set b0='1ZDVLUAH7SA3Y3C' where id=6; -update noar ti set b0='1ZDVLUAH7SA3Y3C' where id=6; -update noar tt set b1='7UXYUP8DL' where id=6; -update noar ti set b1='7UXYUP8DL' where id=6; -update noar tt set b2='43IEZTC48NRTT' where id=6; -update noar ti set b2='43IEZTC48NRTT' where id=6; -update noar tt set b0='CN0U6MFEDO87QXBTFV' where id=7; -update noar ti set b0='CN0U6MFEDO87QXBTFV' where id=7; -update noar tt set b1='12IR' where id=7; -update noar ti set b1='12IR' where id=7; -update noar tt set b2='AJ781Y60NOULD5D4EB6TRJ' where id=7; -update noar ti set b2='AJ781Y60NOULD5D4EB6TRJ' where id=7; -update noar tt set b0='F2R0ODT21WYB7UTUMMAX9QUT' where id=8; -update noar ti set b0='F2R0ODT21WYB7UTUMMAX9QUT' where id=8; -update noar tt set b1='UX96QNPUSYZ5N6' where id=8; -update noar ti set b1='UX96QNPUSYZ5N6' where id=8; -update noar tt set b2='KJPX7L' where id=8; -update noar ti set b2='KJPX7L' where id=8; -update noar tt set b0='HS9MW0WYQW1SOPDL9AFQ09RM' where id=9; -update noar ti set b0='HS9MW0WYQW1SOPDL9AFQ09RM' where id=9; -update noar tt set b1='2BN1M4X3C5151D634XWJ0F' where id=9; -update noar ti set b1='2BN1M4X3C5151D634XWJ0F' where id=9; -update noar tt set b2='3TF8SXGPMCDCUYXQVXFKYA1NX' where id=9; -update noar ti set b2='3TF8SXGPMCDCUYXQVXFKYA1NX' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -b0 mediumblob null, -b1 text null, -b2 text null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set b0='MV18' where id=1; -update noar ti set b0='MV18' where id=1; -update noar tt set b1='BBFXPWAZSE6R3KFIMM2KPW5' where id=1; -update noar ti set b1='BBFXPWAZSE6R3KFIMM2KPW5' where id=1; -update noar tt set b2='KM0ZBQMDVQBIZS80IHP2C' where id=1; -update noar ti set b2='KM0ZBQMDVQBIZS80IHP2C' where id=1; -update noar tt set b0='DRFLPZY511AXR8X722' where id=2; -update noar ti set b0='DRFLPZY511AXR8X722' where id=2; -update noar tt set b1='UZYAY9KJN6GN05N2Q4N15TK1FIGTQOK' where id=2; -update noar ti set b1='UZYAY9KJN6GN05N2Q4N15TK1FIGTQOK' where id=2; -update noar tt set b2='IW2GAUW4F83SDJML05MJNHVJLEH' where id=2; -update noar ti set b2='IW2GAUW4F83SDJML05MJNHVJLEH' where id=2; -update noar tt set b0='D06OK45UXZ52A1DTP7M1' where id=3; -update noar ti set b0='D06OK45UXZ52A1DTP7M1' where id=3; -update noar tt set b1='U' where id=3; -update noar ti set b1='U' where id=3; -update noar tt set b2='MOTJ7AML' where id=3; -update noar ti set b2='MOTJ7AML' where id=3; -update noar tt set b0='NJFIU7G28CN' where id=4; -update noar ti set b0='NJFIU7G28CN' where id=4; -update noar tt set b1='2RCIF4W' where id=4; -update noar ti set b1='2RCIF4W' where id=4; -update noar tt set b2='REBFM32' where id=4; -update noar ti set b2='REBFM32' where id=4; -update noar tt set b0='IVQMCZ9EFCI8BGMJ9Y8QVQVM4UGBAOD' where id=5; -update noar ti set b0='IVQMCZ9EFCI8BGMJ9Y8QVQVM4UGBAOD' where id=5; -update noar tt set b1='E5' where id=5; -update noar ti set b1='E5' where id=5; -update noar tt set b2='RL0RVKCO6UTR9B3TJ' where id=5; -update noar ti set b2='RL0RVKCO6UTR9B3TJ' where id=5; -update noar tt set b0='G' where id=6; -update noar ti set b0='G' where id=6; -update noar tt set b1='ZF' where id=6; -update noar ti set b1='ZF' where id=6; -update noar tt set b2='9M58ZXGHXIQZKMUH1ZJMM6BDQX4I' where id=6; -update noar ti set b2='9M58ZXGHXIQZKMUH1ZJMM6BDQX4I' where id=6; -update noar tt set b0='4NUHJK9Q4UBU9776I0ILL7OADOM33G' where id=7; -update noar ti set b0='4NUHJK9Q4UBU9776I0ILL7OADOM33G' where id=7; -update noar tt set b1='I4VIYZXAEF3RKS9PGRHQUZWMS5RNLT' where id=7; -update noar ti set b1='I4VIYZXAEF3RKS9PGRHQUZWMS5RNLT' where id=7; -update noar tt set b2='ER0OE7' where id=7; -update noar ti set b2='ER0OE7' where id=7; -update noar tt set b0='ZME8Q' where id=8; -update noar ti set b0='ZME8Q' where id=8; -update noar tt set b1='ESLK1' where id=8; -update noar ti set b1='ESLK1' where id=8; -update noar tt set b2='CAGDTXCI2MJ' where id=8; -update noar ti set b2='CAGDTXCI2MJ' where id=8; -update noar tt set b0='WEDXNTS76L0J55CIWBHJ7' where id=9; -update noar ti set b0='WEDXNTS76L0J55CIWBHJ7' where id=9; -update noar tt set b1='CDYAACCVDNH' where id=9; -update noar ti set b1='CDYAACCVDNH' where id=9; -update noar tt set b2='CREPE4E97E' where id=9; -update noar ti set b2='CREPE4E97E' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -b0 mediumblob not null, -b1 text not null, -b2 text not null -) engine=tokudb; -insert into tt values (1,'','',''); -insert into tt values (2,'','',''); -insert into tt values (3,'','',''); -insert into tt values (4,'','',''); -insert into tt values (5,'','',''); -insert into tt values (6,'','',''); -insert into tt values (7,'','',''); -insert into tt values (8,'','',''); -insert into tt values (9,'','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set b0='QC8Y8WMF2K31HRB8K1BABCIFEK2O7ZT1' where id=1; -update noar ti set b0='QC8Y8WMF2K31HRB8K1BABCIFEK2O7ZT1' where id=1; -update noar tt set b1='FJHT4U2MD3E001UC840968924PVD' where id=1; -update noar ti set b1='FJHT4U2MD3E001UC840968924PVD' where id=1; -update noar tt set b2='7VVN5F4TJKXVG' where id=1; -update noar ti set b2='7VVN5F4TJKXVG' where id=1; -update noar tt set b0='KAO8X7OYFBI2WHB3UQN47J1M4J' where id=2; -update noar ti set b0='KAO8X7OYFBI2WHB3UQN47J1M4J' where id=2; -update noar tt set b1='VSRFYUKV8VT46VWAV' where id=2; -update noar ti set b1='VSRFYUKV8VT46VWAV' where id=2; -update noar tt set b2='F1FXID9F' where id=2; -update noar ti set b2='F1FXID9F' where id=2; -update noar tt set b0='C' where id=3; -update noar ti set b0='C' where id=3; -update noar tt set b1='LYQLD3MOJHFTLYQJZTW7D' where id=3; -update noar ti set b1='LYQLD3MOJHFTLYQJZTW7D' where id=3; -update noar tt set b2='AOR38IUWZXLUIQIV1' where id=3; -update noar ti set b2='AOR38IUWZXLUIQIV1' where id=3; -update noar tt set b0='0MPJ71PDA0Z6663Q' where id=4; -update noar ti set b0='0MPJ71PDA0Z6663Q' where id=4; -update noar tt set b1='P2AD5S' where id=4; -update noar ti set b1='P2AD5S' where id=4; -update noar tt set b2='TZQ4LHVDN2UFLZ0P' where id=4; -update noar ti set b2='TZQ4LHVDN2UFLZ0P' where id=4; -update noar tt set b0='CSGGA6LH3FDSKN9AXVMDQ1JJ314AB2BJ' where id=5; -update noar ti set b0='CSGGA6LH3FDSKN9AXVMDQ1JJ314AB2BJ' where id=5; -update noar tt set b1='XK9P4BMU6RC424CNBO0POJL8' where id=5; -update noar ti set b1='XK9P4BMU6RC424CNBO0POJL8' where id=5; -update noar tt set b2='DALCTHKLU5RT3P' where id=5; -update noar ti set b2='DALCTHKLU5RT3P' where id=5; -update noar tt set b0='DFZUWI09WO' where id=6; -update noar ti set b0='DFZUWI09WO' where id=6; -update noar tt set b1='PQDNREGTFT0A' where id=6; -update noar ti set b1='PQDNREGTFT0A' where id=6; -update noar tt set b2='TUI2HHEO4H1IIFWTQA3' where id=6; -update noar ti set b2='TUI2HHEO4H1IIFWTQA3' where id=6; -update noar tt set b0='77' where id=7; -update noar ti set b0='77' where id=7; -update noar tt set b1='NGZNLFE318H8VHKLU1Y8X6RCJI0L25B' where id=7; -update noar ti set b1='NGZNLFE318H8VHKLU1Y8X6RCJI0L25B' where id=7; -update noar tt set b2='L1MV' where id=7; -update noar ti set b2='L1MV' where id=7; -update noar tt set b0='EABNWWR5W8YP94LBL8A4S4BLEBCYCVI2' where id=8; -update noar ti set b0='EABNWWR5W8YP94LBL8A4S4BLEBCYCVI2' where id=8; -update noar tt set b1='E8IGWGKYLN6RH275FMCHYDSTW' where id=8; -update noar ti set b1='E8IGWGKYLN6RH275FMCHYDSTW' where id=8; -update noar tt set b2='HTRDE033P5NLT0ZXTCZ' where id=8; -update noar ti set b2='HTRDE033P5NLT0ZXTCZ' where id=8; -update noar tt set b0='GODI9RMP6' where id=9; -update noar ti set b0='GODI9RMP6' where id=9; -update noar tt set b1='XZRQT0PIFZHJI23FG' where id=9; -update noar ti set b1='XZRQT0PIFZHJI23FG' where id=9; -update noar tt set b2='XOWPY1BNL679JDHKBKY8G95EG3' where id=9; -update noar ti set b2='XOWPY1BNL679JDHKBKY8G95EG3' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -b0 longblob null, -b1 tinyblob null, -b2 tinyblob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set b0='AO1Q5U9DUO' where id=1; -update noar ti set b0='AO1Q5U9DUO' where id=1; -update noar tt set b1='2V80' where id=1; -update noar ti set b1='2V80' where id=1; -update noar tt set b2='H2DJRSWGQE31N4DCMGJG4E5' where id=1; -update noar ti set b2='H2DJRSWGQE31N4DCMGJG4E5' where id=1; -update noar tt set b0='C1EB85YC9F4E2A06H7NZJA' where id=2; -update noar ti set b0='C1EB85YC9F4E2A06H7NZJA' where id=2; -update noar tt set b1='0C95J97UME2LZXM' where id=2; -update noar ti set b1='0C95J97UME2LZXM' where id=2; -update noar tt set b2='DYAMC3LJ8JB7IIDXZWR7' where id=2; -update noar ti set b2='DYAMC3LJ8JB7IIDXZWR7' where id=2; -update noar tt set b0='8JGN0M2QJ6' where id=3; -update noar ti set b0='8JGN0M2QJ6' where id=3; -update noar tt set b1='1ZSV3C' where id=3; -update noar ti set b1='1ZSV3C' where id=3; -update noar tt set b2='WLXCGC4INPCHJIGZF04D53ROXCD' where id=3; -update noar ti set b2='WLXCGC4INPCHJIGZF04D53ROXCD' where id=3; -update noar tt set b0='BOBD4YMJPPVU5JUXOQ5Z7YDO' where id=4; -update noar ti set b0='BOBD4YMJPPVU5JUXOQ5Z7YDO' where id=4; -update noar tt set b1='TY3749KD8QI3IP16CXJH5' where id=4; -update noar ti set b1='TY3749KD8QI3IP16CXJH5' where id=4; -update noar tt set b2='8GH9PU1C7PSZB3BJ' where id=4; -update noar ti set b2='8GH9PU1C7PSZB3BJ' where id=4; -update noar tt set b0='7YA56URK0CR5VMXI8R7VATMWUVNT3BAN' where id=5; -update noar ti set b0='7YA56URK0CR5VMXI8R7VATMWUVNT3BAN' where id=5; -update noar tt set b1='5WJFTNMHH' where id=5; -update noar ti set b1='5WJFTNMHH' where id=5; -update noar tt set b2='IYX' where id=5; -update noar ti set b2='IYX' where id=5; -update noar tt set b0='5X0O7GYS66631NP8066L7EVYCMEZHCY' where id=6; -update noar ti set b0='5X0O7GYS66631NP8066L7EVYCMEZHCY' where id=6; -update noar tt set b1='4BLUDKH4CCCHU8E4K2F' where id=6; -update noar ti set b1='4BLUDKH4CCCHU8E4K2F' where id=6; -update noar tt set b2='B4IR' where id=6; -update noar ti set b2='B4IR' where id=6; -update noar tt set b0='7CYJF6U7DCZA3F9AXO9J' where id=7; -update noar ti set b0='7CYJF6U7DCZA3F9AXO9J' where id=7; -update noar tt set b1='Y0VE4DUYQWYVBLZ4SGAY' where id=7; -update noar ti set b1='Y0VE4DUYQWYVBLZ4SGAY' where id=7; -update noar tt set b2='W58MCELG8SR963AIJVXD8Q2U' where id=7; -update noar ti set b2='W58MCELG8SR963AIJVXD8Q2U' where id=7; -update noar tt set b0='CP8E8FM2XFYNHUP0K7YOFVVYEIZB0' where id=8; -update noar ti set b0='CP8E8FM2XFYNHUP0K7YOFVVYEIZB0' where id=8; -update noar tt set b1='ASQQ1O' where id=8; -update noar ti set b1='ASQQ1O' where id=8; -update noar tt set b2='KC528T2F40C5G8QMK75OM98T7B' where id=8; -update noar ti set b2='KC528T2F40C5G8QMK75OM98T7B' where id=8; -update noar tt set b0='BY1DWN2568BVQ860EZ12F5E7Q94MQ' where id=9; -update noar ti set b0='BY1DWN2568BVQ860EZ12F5E7Q94MQ' where id=9; -update noar tt set b1='OVKD6KYWHN' where id=9; -update noar ti set b1='OVKD6KYWHN' where id=9; -update noar tt set b2='J4NLTRTR2L8BCN0TX0A7OBQJXSDU4QMH' where id=9; -update noar ti set b2='J4NLTRTR2L8BCN0TX0A7OBQJXSDU4QMH' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -b0 longblob not null, -b1 tinyblob not null, -b2 tinyblob not null -) engine=tokudb; -insert into tt values (1,'','',''); -insert into tt values (2,'','',''); -insert into tt values (3,'','',''); -insert into tt values (4,'','',''); -insert into tt values (5,'','',''); -insert into tt values (6,'','',''); -insert into tt values (7,'','',''); -insert into tt values (8,'','',''); -insert into tt values (9,'','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set b0='9K9' where id=1; -update noar ti set b0='9K9' where id=1; -update noar tt set b1='9DLH0DX2RCO' where id=1; -update noar ti set b1='9DLH0DX2RCO' where id=1; -update noar tt set b2='E' where id=1; -update noar ti set b2='E' where id=1; -update noar tt set b0='5FHW3MDI9WW4VAQJIQK9FS8WY0JHP3' where id=2; -update noar ti set b0='5FHW3MDI9WW4VAQJIQK9FS8WY0JHP3' where id=2; -update noar tt set b1='RWZ' where id=2; -update noar ti set b1='RWZ' where id=2; -update noar tt set b2='C1ZTZJF2THA1C' where id=2; -update noar ti set b2='C1ZTZJF2THA1C' where id=2; -update noar tt set b0='NHRAJ' where id=3; -update noar ti set b0='NHRAJ' where id=3; -update noar tt set b1='M9IFM79TMCWCV8IZZUSFUY0ST' where id=3; -update noar ti set b1='M9IFM79TMCWCV8IZZUSFUY0ST' where id=3; -update noar tt set b2='4F9H7I1K' where id=3; -update noar ti set b2='4F9H7I1K' where id=3; -update noar tt set b0='9COAH4ZYBHBLYZUSWTCYKL9KHX30SN' where id=4; -update noar ti set b0='9COAH4ZYBHBLYZUSWTCYKL9KHX30SN' where id=4; -update noar tt set b1='AVA5JQE5VTV76I1B18JKYWEPLMXK' where id=4; -update noar ti set b1='AVA5JQE5VTV76I1B18JKYWEPLMXK' where id=4; -update noar tt set b2='YPC1JFEN' where id=4; -update noar ti set b2='YPC1JFEN' where id=4; -update noar tt set b0='6R6FQ7OGEW5ZYPGRCGB8KIXVMJ' where id=5; -update noar ti set b0='6R6FQ7OGEW5ZYPGRCGB8KIXVMJ' where id=5; -update noar tt set b1='900SKJ4S' where id=5; -update noar ti set b1='900SKJ4S' where id=5; -update noar tt set b2='L8LUY297DXC6DMH24GQA5LDZFLDGY' where id=5; -update noar ti set b2='L8LUY297DXC6DMH24GQA5LDZFLDGY' where id=5; -update noar tt set b0='15B2E38A9PWIR2ZT5E02' where id=6; -update noar ti set b0='15B2E38A9PWIR2ZT5E02' where id=6; -update noar tt set b1='K3EQT3HVFNCOKX7KVEBPVV0623DC' where id=6; -update noar ti set b1='K3EQT3HVFNCOKX7KVEBPVV0623DC' where id=6; -update noar tt set b2='O1YW52AJF' where id=6; -update noar ti set b2='O1YW52AJF' where id=6; -update noar tt set b0='MPDOF2HY4G706LF4FTSSFCH4UAJ' where id=7; -update noar ti set b0='MPDOF2HY4G706LF4FTSSFCH4UAJ' where id=7; -update noar tt set b1='PGH2B44H' where id=7; -update noar ti set b1='PGH2B44H' where id=7; -update noar tt set b2='ZWM5D8B' where id=7; -update noar ti set b2='ZWM5D8B' where id=7; -update noar tt set b0='PMI296281Z1MZNC9FEZQI' where id=8; -update noar ti set b0='PMI296281Z1MZNC9FEZQI' where id=8; -update noar tt set b1='WUTL8LBBT4E6L5OCQ7' where id=8; -update noar ti set b1='WUTL8LBBT4E6L5OCQ7' where id=8; -update noar tt set b2='81633JX' where id=8; -update noar ti set b2='81633JX' where id=8; -update noar tt set b0='4C6HTXWGN3W8R9HE' where id=9; -update noar ti set b0='4C6HTXWGN3W8R9HE' where id=9; -update noar tt set b1='VCEE6B2423S' where id=9; -update noar ti set b1='VCEE6B2423S' where id=9; -update noar tt set b2='OHT2X' where id=9; -update noar ti set b2='OHT2X' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -b0 longblob null, -b1 tinyblob null, -b2 blob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set b0='SAM56HN8BG7QD80G8' where id=1; -update noar ti set b0='SAM56HN8BG7QD80G8' where id=1; -update noar tt set b1='R15XSOH2OSR4YAFE9ODY' where id=1; -update noar ti set b1='R15XSOH2OSR4YAFE9ODY' where id=1; -update noar tt set b2='0IQ6JWUO9BB6KZOJPV08P4XNHKK71U' where id=1; -update noar ti set b2='0IQ6JWUO9BB6KZOJPV08P4XNHKK71U' where id=1; -update noar tt set b0='LZ9T40P9' where id=2; -update noar ti set b0='LZ9T40P9' where id=2; -update noar tt set b1='D3SMXZ78I4S4K7WOMHW5T4C9R4WS9V' where id=2; -update noar ti set b1='D3SMXZ78I4S4K7WOMHW5T4C9R4WS9V' where id=2; -update noar tt set b2='8NPZFBYPQ3YSV6FO' where id=2; -update noar ti set b2='8NPZFBYPQ3YSV6FO' where id=2; -update noar tt set b0='TC5IHPDFRQWI3HKXLI9HC' where id=3; -update noar ti set b0='TC5IHPDFRQWI3HKXLI9HC' where id=3; -update noar tt set b1='7K2L0X8U0OVOIEDSMW86X' where id=3; -update noar ti set b1='7K2L0X8U0OVOIEDSMW86X' where id=3; -update noar tt set b2='W6HVMDLNMEFES8CRS' where id=3; -update noar ti set b2='W6HVMDLNMEFES8CRS' where id=3; -update noar tt set b0='OT53A2L1E5PVH' where id=4; -update noar ti set b0='OT53A2L1E5PVH' where id=4; -update noar tt set b1='5PUH44ZFM' where id=4; -update noar ti set b1='5PUH44ZFM' where id=4; -update noar tt set b2='VSEGOVEEN2O' where id=4; -update noar ti set b2='VSEGOVEEN2O' where id=4; -update noar tt set b0='45CGK5WD3YGL06' where id=5; -update noar ti set b0='45CGK5WD3YGL06' where id=5; -update noar tt set b1='BBYC0LCVOI5' where id=5; -update noar ti set b1='BBYC0LCVOI5' where id=5; -update noar tt set b2='AM151X28L4TXXXN7TU746X0MNZPM' where id=5; -update noar ti set b2='AM151X28L4TXXXN7TU746X0MNZPM' where id=5; -update noar tt set b0='1Y6' where id=6; -update noar ti set b0='1Y6' where id=6; -update noar tt set b1='HZ633R2Q9C' where id=6; -update noar ti set b1='HZ633R2Q9C' where id=6; -update noar tt set b2='8LMDSC8SR5JAR2OGHOMPEY5L5NBL6' where id=6; -update noar ti set b2='8LMDSC8SR5JAR2OGHOMPEY5L5NBL6' where id=6; -update noar tt set b0='PLPHB' where id=7; -update noar ti set b0='PLPHB' where id=7; -update noar tt set b1='1W8KXWQ7J2QK4N1JXGS2I6FCOIN' where id=7; -update noar ti set b1='1W8KXWQ7J2QK4N1JXGS2I6FCOIN' where id=7; -update noar tt set b2='GH8F6FJ29MY' where id=7; -update noar ti set b2='GH8F6FJ29MY' where id=7; -update noar tt set b0='O4CI9KUCGCW0V3JF8NBHXXMM51' where id=8; -update noar ti set b0='O4CI9KUCGCW0V3JF8NBHXXMM51' where id=8; -update noar tt set b1='OOVHQN9YMUXP0EDWNBCN7S8V' where id=8; -update noar ti set b1='OOVHQN9YMUXP0EDWNBCN7S8V' where id=8; -update noar tt set b2='LMMRQYAYYLWUS6' where id=8; -update noar ti set b2='LMMRQYAYYLWUS6' where id=8; -update noar tt set b0='YPG2VBTQGS' where id=9; -update noar ti set b0='YPG2VBTQGS' where id=9; -update noar tt set b1='O1WJ4JTW3AA0USFZNPCHB6IXNL' where id=9; -update noar ti set b1='O1WJ4JTW3AA0USFZNPCHB6IXNL' where id=9; -update noar tt set b2='1WQCD2FF' where id=9; -update noar ti set b2='1WQCD2FF' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -b0 longblob not null, -b1 tinyblob not null, -b2 blob not null -) engine=tokudb; -insert into tt values (1,'','',''); -insert into tt values (2,'','',''); -insert into tt values (3,'','',''); -insert into tt values (4,'','',''); -insert into tt values (5,'','',''); -insert into tt values (6,'','',''); -insert into tt values (7,'','',''); -insert into tt values (8,'','',''); -insert into tt values (9,'','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set b0='6S8VG4MAQA84CDN6UBD3J' where id=1; -update noar ti set b0='6S8VG4MAQA84CDN6UBD3J' where id=1; -update noar tt set b1='YFPFW55NM' where id=1; -update noar ti set b1='YFPFW55NM' where id=1; -update noar tt set b2='I9VI569FANSAE3XRWT2' where id=1; -update noar ti set b2='I9VI569FANSAE3XRWT2' where id=1; -update noar tt set b0='S' where id=2; -update noar ti set b0='S' where id=2; -update noar tt set b1='7K0MJV3C8P693M778O5V6K9ERG' where id=2; -update noar ti set b1='7K0MJV3C8P693M778O5V6K9ERG' where id=2; -update noar tt set b2='22IIESGLKV655X6ILO3RF5H1F' where id=2; -update noar ti set b2='22IIESGLKV655X6ILO3RF5H1F' where id=2; -update noar tt set b0='4SPA43Y1P4AAX4SNX8RPQ8QN9' where id=3; -update noar ti set b0='4SPA43Y1P4AAX4SNX8RPQ8QN9' where id=3; -update noar tt set b1='6' where id=3; -update noar ti set b1='6' where id=3; -update noar tt set b2='PAISUR28Z3FJXQWQ8SGP' where id=3; -update noar ti set b2='PAISUR28Z3FJXQWQ8SGP' where id=3; -update noar tt set b0='BOG3GB1AVT4PW' where id=4; -update noar ti set b0='BOG3GB1AVT4PW' where id=4; -update noar tt set b1='N8RWDFKEN4KP3OJQH' where id=4; -update noar ti set b1='N8RWDFKEN4KP3OJQH' where id=4; -update noar tt set b2='PNX3VV' where id=4; -update noar ti set b2='PNX3VV' where id=4; -update noar tt set b0='M' where id=5; -update noar ti set b0='M' where id=5; -update noar tt set b1='NXHRY6WIRK8DTGKKT7J2ASZ5I3F' where id=5; -update noar ti set b1='NXHRY6WIRK8DTGKKT7J2ASZ5I3F' where id=5; -update noar tt set b2='C0OMGNA85F' where id=5; -update noar ti set b2='C0OMGNA85F' where id=5; -update noar tt set b0='X7E9PF5W81VPECZ5U4G' where id=6; -update noar ti set b0='X7E9PF5W81VPECZ5U4G' where id=6; -update noar tt set b1='NM4038656KF77157N6' where id=6; -update noar ti set b1='NM4038656KF77157N6' where id=6; -update noar tt set b2='UX1VR87WWOZ50LBTIJE70M' where id=6; -update noar ti set b2='UX1VR87WWOZ50LBTIJE70M' where id=6; -update noar tt set b0='E0E5E9YUWLF' where id=7; -update noar ti set b0='E0E5E9YUWLF' where id=7; -update noar tt set b1='7WZJMK' where id=7; -update noar ti set b1='7WZJMK' where id=7; -update noar tt set b2='OO95XV6PACZH79YCRK' where id=7; -update noar ti set b2='OO95XV6PACZH79YCRK' where id=7; -update noar tt set b0='ZHDPAYP57BF29STXJYI' where id=8; -update noar ti set b0='ZHDPAYP57BF29STXJYI' where id=8; -update noar tt set b1='YRPQ10EMVCC0FM837T' where id=8; -update noar ti set b1='YRPQ10EMVCC0FM837T' where id=8; -update noar tt set b2='M6549RAU5ZTZ92W' where id=8; -update noar ti set b2='M6549RAU5ZTZ92W' where id=8; -update noar tt set b0='XWGAR890BTT2E2IF5PXSIFA' where id=9; -update noar ti set b0='XWGAR890BTT2E2IF5PXSIFA' where id=9; -update noar tt set b1='M3J35HC6BFQ1K900' where id=9; -update noar ti set b1='M3J35HC6BFQ1K900' where id=9; -update noar tt set b2='MPCC44697O40O' where id=9; -update noar ti set b2='MPCC44697O40O' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -b0 longblob null, -b1 tinyblob null, -b2 mediumblob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set b0='2QQUGS60TPE' where id=1; -update noar ti set b0='2QQUGS60TPE' where id=1; -update noar tt set b1='OD' where id=1; -update noar ti set b1='OD' where id=1; -update noar tt set b2='2QIIC55' where id=1; -update noar ti set b2='2QIIC55' where id=1; -update noar tt set b0='MRJLC2Z' where id=2; -update noar ti set b0='MRJLC2Z' where id=2; -update noar tt set b1='FUKJ2' where id=2; -update noar ti set b1='FUKJ2' where id=2; -update noar tt set b2='MC4M' where id=2; -update noar ti set b2='MC4M' where id=2; -update noar tt set b0='L2TXBHOASM14BLBVH3F92HX' where id=3; -update noar ti set b0='L2TXBHOASM14BLBVH3F92HX' where id=3; -update noar tt set b1='KRC' where id=3; -update noar ti set b1='KRC' where id=3; -update noar tt set b2='CH905BEE0YZBWE5UQTEY' where id=3; -update noar ti set b2='CH905BEE0YZBWE5UQTEY' where id=3; -update noar tt set b0='1K9V2T0HARGXHT7W' where id=4; -update noar ti set b0='1K9V2T0HARGXHT7W' where id=4; -update noar tt set b1='6RD3VD1E' where id=4; -update noar ti set b1='6RD3VD1E' where id=4; -update noar tt set b2='S0Q5NQFY7EC1DSNKR80' where id=4; -update noar ti set b2='S0Q5NQFY7EC1DSNKR80' where id=4; -update noar tt set b0='6S' where id=5; -update noar ti set b0='6S' where id=5; -update noar tt set b1='H7TXMBG5AQKYX0MEQ6S7DBS' where id=5; -update noar ti set b1='H7TXMBG5AQKYX0MEQ6S7DBS' where id=5; -update noar tt set b2='T6VF1E1J7WPOJGV22G2HN6R11WSRMU6' where id=5; -update noar ti set b2='T6VF1E1J7WPOJGV22G2HN6R11WSRMU6' where id=5; -update noar tt set b0='TSEVF' where id=6; -update noar ti set b0='TSEVF' where id=6; -update noar tt set b1='28JC0KDPQP0SIKD849TFGOGXM' where id=6; -update noar ti set b1='28JC0KDPQP0SIKD849TFGOGXM' where id=6; -update noar tt set b2='ZTSGA0RR1PYFAXAA1RJ7WZ' where id=6; -update noar ti set b2='ZTSGA0RR1PYFAXAA1RJ7WZ' where id=6; -update noar tt set b0='1RC5JR1NWDGQ2' where id=7; -update noar ti set b0='1RC5JR1NWDGQ2' where id=7; -update noar tt set b1='IO8V0YARYH1YLO6DXX' where id=7; -update noar ti set b1='IO8V0YARYH1YLO6DXX' where id=7; -update noar tt set b2='M50' where id=7; -update noar ti set b2='M50' where id=7; -update noar tt set b0='TCV53HBRVIRICVOH4N6K7ZIDW' where id=8; -update noar ti set b0='TCV53HBRVIRICVOH4N6K7ZIDW' where id=8; -update noar tt set b1='5AYQP99305I' where id=8; -update noar ti set b1='5AYQP99305I' where id=8; -update noar tt set b2='N0R323A7CLL1SL4YRG3' where id=8; -update noar ti set b2='N0R323A7CLL1SL4YRG3' where id=8; -update noar tt set b0='F0JZW67YWB7' where id=9; -update noar ti set b0='F0JZW67YWB7' where id=9; -update noar tt set b1='1ENYGRL9' where id=9; -update noar ti set b1='1ENYGRL9' where id=9; -update noar tt set b2='C6ECU7ZXZ528I26WI' where id=9; -update noar ti set b2='C6ECU7ZXZ528I26WI' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -b0 longblob not null, -b1 tinyblob not null, -b2 mediumblob not null -) engine=tokudb; -insert into tt values (1,'','',''); -insert into tt values (2,'','',''); -insert into tt values (3,'','',''); -insert into tt values (4,'','',''); -insert into tt values (5,'','',''); -insert into tt values (6,'','',''); -insert into tt values (7,'','',''); -insert into tt values (8,'','',''); -insert into tt values (9,'','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set b0='T8NSVY70MOJ2ETMHEP0N' where id=1; -update noar ti set b0='T8NSVY70MOJ2ETMHEP0N' where id=1; -update noar tt set b1='1Y5N5CVJRI590G' where id=1; -update noar ti set b1='1Y5N5CVJRI590G' where id=1; -update noar tt set b2='GHM8OHW' where id=1; -update noar ti set b2='GHM8OHW' where id=1; -update noar tt set b0='6S74ZO0I' where id=2; -update noar ti set b0='6S74ZO0I' where id=2; -update noar tt set b1='SB0ZH000IQ18NN0AH6P6ESHKCUC8E2AH' where id=2; -update noar ti set b1='SB0ZH000IQ18NN0AH6P6ESHKCUC8E2AH' where id=2; -update noar tt set b2='S1RD2FS' where id=2; -update noar ti set b2='S1RD2FS' where id=2; -update noar tt set b0='9ALNRHQEF5XLPH6' where id=3; -update noar ti set b0='9ALNRHQEF5XLPH6' where id=3; -update noar tt set b1='9O76H' where id=3; -update noar ti set b1='9O76H' where id=3; -update noar tt set b2='ABX4J7DTW7WBWC' where id=3; -update noar ti set b2='ABX4J7DTW7WBWC' where id=3; -update noar tt set b0='2FK59KPVTTB2C73ADSD5KA4C' where id=4; -update noar ti set b0='2FK59KPVTTB2C73ADSD5KA4C' where id=4; -update noar tt set b1='PMQFFW' where id=4; -update noar ti set b1='PMQFFW' where id=4; -update noar tt set b2='JR2JK8MNHH6J6VED29M0V17QZIV' where id=4; -update noar ti set b2='JR2JK8MNHH6J6VED29M0V17QZIV' where id=4; -update noar tt set b0='J0J949UY7HY6PL' where id=5; -update noar ti set b0='J0J949UY7HY6PL' where id=5; -update noar tt set b1='GEG9TMW8R0' where id=5; -update noar ti set b1='GEG9TMW8R0' where id=5; -update noar tt set b2='TPIYH7UZ0YRZUE6BCX' where id=5; -update noar ti set b2='TPIYH7UZ0YRZUE6BCX' where id=5; -update noar tt set b0='5IDJCQP4QIS9INXHNM' where id=6; -update noar ti set b0='5IDJCQP4QIS9INXHNM' where id=6; -update noar tt set b1='2' where id=6; -update noar ti set b1='2' where id=6; -update noar tt set b2='EG0LA5PCMA4CF7' where id=6; -update noar ti set b2='EG0LA5PCMA4CF7' where id=6; -update noar tt set b0='ZR2R6V753JDT3RJ' where id=7; -update noar ti set b0='ZR2R6V753JDT3RJ' where id=7; -update noar tt set b1='ECOV20CT003622M2SC37POU1US' where id=7; -update noar ti set b1='ECOV20CT003622M2SC37POU1US' where id=7; -update noar tt set b2='KD4GA34DSP' where id=7; -update noar ti set b2='KD4GA34DSP' where id=7; -update noar tt set b0='Z6DMP9' where id=8; -update noar ti set b0='Z6DMP9' where id=8; -update noar tt set b1='GEA9LTKCUY355LRH' where id=8; -update noar ti set b1='GEA9LTKCUY355LRH' where id=8; -update noar tt set b2='WDOW8PNXTWDZZ8GP1NPL5R26LIS9' where id=8; -update noar ti set b2='WDOW8PNXTWDZZ8GP1NPL5R26LIS9' where id=8; -update noar tt set b0='5LL1EAPYJ61KWOKKBPHZ2KA' where id=9; -update noar ti set b0='5LL1EAPYJ61KWOKKBPHZ2KA' where id=9; -update noar tt set b1='3H9IOO' where id=9; -update noar ti set b1='3H9IOO' where id=9; -update noar tt set b2='DDVWEORJ0YX7RJWSGOR' where id=9; -update noar ti set b2='DDVWEORJ0YX7RJWSGOR' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -b0 longblob null, -b1 tinyblob null, -b2 longblob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set b0='0BWCLHYO278EPHVO6URJ24' where id=1; -update noar ti set b0='0BWCLHYO278EPHVO6URJ24' where id=1; -update noar tt set b1='8AK0YL81MIJWH2RMMNWCYHYY1GYVG' where id=1; -update noar ti set b1='8AK0YL81MIJWH2RMMNWCYHYY1GYVG' where id=1; -update noar tt set b2='01SK8MRA9HBWHBEYJQ2RPL' where id=1; -update noar ti set b2='01SK8MRA9HBWHBEYJQ2RPL' where id=1; -update noar tt set b0='IV2RDYXOMOR877BW9R' where id=2; -update noar ti set b0='IV2RDYXOMOR877BW9R' where id=2; -update noar tt set b1='PN76KOCRHYZXJB2MNE' where id=2; -update noar ti set b1='PN76KOCRHYZXJB2MNE' where id=2; -update noar tt set b2='4' where id=2; -update noar ti set b2='4' where id=2; -update noar tt set b0='TJVXQKNV544V6I1EMB' where id=3; -update noar ti set b0='TJVXQKNV544V6I1EMB' where id=3; -update noar tt set b1='3NVX1LKP89REHKNQYNIW' where id=3; -update noar ti set b1='3NVX1LKP89REHKNQYNIW' where id=3; -update noar tt set b2='SIBATQUYCPQUKIVGL32L42Q2U7OSRPZ7' where id=3; -update noar ti set b2='SIBATQUYCPQUKIVGL32L42Q2U7OSRPZ7' where id=3; -update noar tt set b0='YGNWP03WN4OV' where id=4; -update noar ti set b0='YGNWP03WN4OV' where id=4; -update noar tt set b1='KBBY3SLSIO3H9VW760427DML07APJ' where id=4; -update noar ti set b1='KBBY3SLSIO3H9VW760427DML07APJ' where id=4; -update noar tt set b2='I4C6STI5EZPIUCB47' where id=4; -update noar ti set b2='I4C6STI5EZPIUCB47' where id=4; -update noar tt set b0='6HMYTMBOHK7ZG7HI' where id=5; -update noar ti set b0='6HMYTMBOHK7ZG7HI' where id=5; -update noar tt set b1='2YBE6W2LISOLJ2TOL83ANX' where id=5; -update noar ti set b1='2YBE6W2LISOLJ2TOL83ANX' where id=5; -update noar tt set b2='N4LBGJIRV5UJUC6ZU0N5UIDH' where id=5; -update noar ti set b2='N4LBGJIRV5UJUC6ZU0N5UIDH' where id=5; -update noar tt set b0='KYIJLX' where id=6; -update noar ti set b0='KYIJLX' where id=6; -update noar tt set b1='2EG3NAKA7XLIJZZ0GENA5KPY' where id=6; -update noar ti set b1='2EG3NAKA7XLIJZZ0GENA5KPY' where id=6; -update noar tt set b2='WCBFPTLC7' where id=6; -update noar ti set b2='WCBFPTLC7' where id=6; -update noar tt set b0='A5Y9ZQM0G5AHPM2JMEDKLMBWCCRI' where id=7; -update noar ti set b0='A5Y9ZQM0G5AHPM2JMEDKLMBWCCRI' where id=7; -update noar tt set b1='Q7M' where id=7; -update noar ti set b1='Q7M' where id=7; -update noar tt set b2='GC1P5' where id=7; -update noar ti set b2='GC1P5' where id=7; -update noar tt set b0='QMXRY5M8PLXZ7LGTNWNWELOXPE' where id=8; -update noar ti set b0='QMXRY5M8PLXZ7LGTNWNWELOXPE' where id=8; -update noar tt set b1='FURDKNG4YI35XMOKPJ' where id=8; -update noar ti set b1='FURDKNG4YI35XMOKPJ' where id=8; -update noar tt set b2='Q7MV00AYRYNPZR6B5GW4ID2S2QA' where id=8; -update noar ti set b2='Q7MV00AYRYNPZR6B5GW4ID2S2QA' where id=8; -update noar tt set b0='801F3' where id=9; -update noar ti set b0='801F3' where id=9; -update noar tt set b1='ABGSOMIFS2TEFZLG2OH4S28ND' where id=9; -update noar ti set b1='ABGSOMIFS2TEFZLG2OH4S28ND' where id=9; -update noar tt set b2='0B' where id=9; -update noar ti set b2='0B' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -b0 longblob not null, -b1 tinyblob not null, -b2 longblob not null -) engine=tokudb; -insert into tt values (1,'','',''); -insert into tt values (2,'','',''); -insert into tt values (3,'','',''); -insert into tt values (4,'','',''); -insert into tt values (5,'','',''); -insert into tt values (6,'','',''); -insert into tt values (7,'','',''); -insert into tt values (8,'','',''); -insert into tt values (9,'','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set b0='HYULH0EP5M8' where id=1; -update noar ti set b0='HYULH0EP5M8' where id=1; -update noar tt set b1='T9QEY2GNZ09V6SQ7SP' where id=1; -update noar ti set b1='T9QEY2GNZ09V6SQ7SP' where id=1; -update noar tt set b2='9FY4MXBQ82NZDO8ZQOY1B' where id=1; -update noar ti set b2='9FY4MXBQ82NZDO8ZQOY1B' where id=1; -update noar tt set b0='091LJ8FUTIA30IXFB2SY6' where id=2; -update noar ti set b0='091LJ8FUTIA30IXFB2SY6' where id=2; -update noar tt set b1='01BTTHIHI52M8ZLMVLO08ROL82NMC7F' where id=2; -update noar ti set b1='01BTTHIHI52M8ZLMVLO08ROL82NMC7F' where id=2; -update noar tt set b2='8VT8Y' where id=2; -update noar ti set b2='8VT8Y' where id=2; -update noar tt set b0='99OT5FQ' where id=3; -update noar ti set b0='99OT5FQ' where id=3; -update noar tt set b1='WICHM8MB6Q3F5M3OCECL7CO5' where id=3; -update noar ti set b1='WICHM8MB6Q3F5M3OCECL7CO5' where id=3; -update noar tt set b2='3RWK9JB3W7M4ZYSPU73ESH8RMWSW2N4' where id=3; -update noar ti set b2='3RWK9JB3W7M4ZYSPU73ESH8RMWSW2N4' where id=3; -update noar tt set b0='RT28R567061I' where id=4; -update noar ti set b0='RT28R567061I' where id=4; -update noar tt set b1='2G7BY2I79' where id=4; -update noar ti set b1='2G7BY2I79' where id=4; -update noar tt set b2='T' where id=4; -update noar ti set b2='T' where id=4; -update noar tt set b0='SHQW8BAXW6RYLN48O24LO8' where id=5; -update noar ti set b0='SHQW8BAXW6RYLN48O24LO8' where id=5; -update noar tt set b1='JOUTFFQZQCPCLMZRP' where id=5; -update noar ti set b1='JOUTFFQZQCPCLMZRP' where id=5; -update noar tt set b2='QNPC00ZJQ' where id=5; -update noar ti set b2='QNPC00ZJQ' where id=5; -update noar tt set b0='U4CQNM' where id=6; -update noar ti set b0='U4CQNM' where id=6; -update noar tt set b1='LBTTDH' where id=6; -update noar ti set b1='LBTTDH' where id=6; -update noar tt set b2='X25T0ZP3SMSWW7TE3IAB6GG151X' where id=6; -update noar ti set b2='X25T0ZP3SMSWW7TE3IAB6GG151X' where id=6; -update noar tt set b0='VSEYXELJNC4RO37RI6VTCIWQ9K9DD' where id=7; -update noar ti set b0='VSEYXELJNC4RO37RI6VTCIWQ9K9DD' where id=7; -update noar tt set b1='AM1K2Y78M0NYXTH6CG' where id=7; -update noar ti set b1='AM1K2Y78M0NYXTH6CG' where id=7; -update noar tt set b2='I5PCD9F3T9N8O7SYHB9QSU9J' where id=7; -update noar ti set b2='I5PCD9F3T9N8O7SYHB9QSU9J' where id=7; -update noar tt set b0='ECDO82LO' where id=8; -update noar ti set b0='ECDO82LO' where id=8; -update noar tt set b1='5UGU7XK' where id=8; -update noar ti set b1='5UGU7XK' where id=8; -update noar tt set b2='8AUBTFNUGF36SGSO3S' where id=8; -update noar ti set b2='8AUBTFNUGF36SGSO3S' where id=8; -update noar tt set b0='XRPVTL9V4WJP5C1W5Z5W1MWYNKU8' where id=9; -update noar ti set b0='XRPVTL9V4WJP5C1W5Z5W1MWYNKU8' where id=9; -update noar tt set b1='JQ3QW5VNJML1' where id=9; -update noar ti set b1='JQ3QW5VNJML1' where id=9; -update noar tt set b2='YY4NJ6VQEVAG6R182ACA8GHB' where id=9; -update noar ti set b2='YY4NJ6VQEVAG6R182ACA8GHB' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -b0 longblob null, -b1 tinyblob null, -b2 text null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set b0='9OAH7ZQKU326WS89' where id=1; -update noar ti set b0='9OAH7ZQKU326WS89' where id=1; -update noar tt set b1='URDN20WMFHSVETY' where id=1; -update noar ti set b1='URDN20WMFHSVETY' where id=1; -update noar tt set b2='C58B2DR2VTZ1JWLDXWD25UCL7O4SSV7' where id=1; -update noar ti set b2='C58B2DR2VTZ1JWLDXWD25UCL7O4SSV7' where id=1; -update noar tt set b0='N9USYEY1NWE' where id=2; -update noar ti set b0='N9USYEY1NWE' where id=2; -update noar tt set b1='YXAA801C8NCNCGK84C94IOWPP' where id=2; -update noar ti set b1='YXAA801C8NCNCGK84C94IOWPP' where id=2; -update noar tt set b2='YN3PCLXOTCVCJ5OWXOIUIPLYWPOP' where id=2; -update noar ti set b2='YN3PCLXOTCVCJ5OWXOIUIPLYWPOP' where id=2; -update noar tt set b0='N6UY69VK70TDUTXXR26JTGI2GE' where id=3; -update noar ti set b0='N6UY69VK70TDUTXXR26JTGI2GE' where id=3; -update noar tt set b1='QOGCPSDN5VPFW7611SXRCMMT1GGL6TC' where id=3; -update noar ti set b1='QOGCPSDN5VPFW7611SXRCMMT1GGL6TC' where id=3; -update noar tt set b2='AFM28GUN26CSE3' where id=3; -update noar ti set b2='AFM28GUN26CSE3' where id=3; -update noar tt set b0='UWOPMSTKSSMHGL0MWI15AD' where id=4; -update noar ti set b0='UWOPMSTKSSMHGL0MWI15AD' where id=4; -update noar tt set b1='26XMMIWK0Q' where id=4; -update noar ti set b1='26XMMIWK0Q' where id=4; -update noar tt set b2='MRFDVNRRVDNO3H' where id=4; -update noar ti set b2='MRFDVNRRVDNO3H' where id=4; -update noar tt set b0='V96NNPMYCA9ZMLJ9D01QD' where id=5; -update noar ti set b0='V96NNPMYCA9ZMLJ9D01QD' where id=5; -update noar tt set b1='0' where id=5; -update noar ti set b1='0' where id=5; -update noar tt set b2='2F2RML5OI48950RIF378W' where id=5; -update noar ti set b2='2F2RML5OI48950RIF378W' where id=5; -update noar tt set b0='BPY695C7AHD' where id=6; -update noar ti set b0='BPY695C7AHD' where id=6; -update noar tt set b1='248OQ9GSR2RYXBWDC4KL8X1IZ' where id=6; -update noar ti set b1='248OQ9GSR2RYXBWDC4KL8X1IZ' where id=6; -update noar tt set b2='VVG3V' where id=6; -update noar ti set b2='VVG3V' where id=6; -update noar tt set b0='IU8' where id=7; -update noar ti set b0='IU8' where id=7; -update noar tt set b1='2MDLCF1HBPK' where id=7; -update noar ti set b1='2MDLCF1HBPK' where id=7; -update noar tt set b2='DHANDJYN13HKRGMHU97XU7LTHFJ04' where id=7; -update noar ti set b2='DHANDJYN13HKRGMHU97XU7LTHFJ04' where id=7; -update noar tt set b0='PMKN6JH7M8LRSAUI77NKWG0' where id=8; -update noar ti set b0='PMKN6JH7M8LRSAUI77NKWG0' where id=8; -update noar tt set b1='CWP6S5YLYR' where id=8; -update noar ti set b1='CWP6S5YLYR' where id=8; -update noar tt set b2='8NDVQJY' where id=8; -update noar ti set b2='8NDVQJY' where id=8; -update noar tt set b0='95OQ48VEO5NUU5O' where id=9; -update noar ti set b0='95OQ48VEO5NUU5O' where id=9; -update noar tt set b1='QLS' where id=9; -update noar ti set b1='QLS' where id=9; -update noar tt set b2='3T9RVG' where id=9; -update noar ti set b2='3T9RVG' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -b0 longblob not null, -b1 tinyblob not null, -b2 text not null -) engine=tokudb; -insert into tt values (1,'','',''); -insert into tt values (2,'','',''); -insert into tt values (3,'','',''); -insert into tt values (4,'','',''); -insert into tt values (5,'','',''); -insert into tt values (6,'','',''); -insert into tt values (7,'','',''); -insert into tt values (8,'','',''); -insert into tt values (9,'','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set b0='PDSTKPDZE91' where id=1; -update noar ti set b0='PDSTKPDZE91' where id=1; -update noar tt set b1='E3' where id=1; -update noar ti set b1='E3' where id=1; -update noar tt set b2='JS' where id=1; -update noar ti set b2='JS' where id=1; -update noar tt set b0='F58' where id=2; -update noar ti set b0='F58' where id=2; -update noar tt set b1='2TO70GQPNANV2N66MMM6BO' where id=2; -update noar ti set b1='2TO70GQPNANV2N66MMM6BO' where id=2; -update noar tt set b2='BRZRB0HCX575NDPLZO3O475AH' where id=2; -update noar ti set b2='BRZRB0HCX575NDPLZO3O475AH' where id=2; -update noar tt set b0='E1NFTPA91D722R84FGZLIC' where id=3; -update noar ti set b0='E1NFTPA91D722R84FGZLIC' where id=3; -update noar tt set b1='ZXT03M7HGKP4SMTPQVR5L' where id=3; -update noar ti set b1='ZXT03M7HGKP4SMTPQVR5L' where id=3; -update noar tt set b2='FZK0NDUE7AF' where id=3; -update noar ti set b2='FZK0NDUE7AF' where id=3; -update noar tt set b0='IWPG63U6C8D' where id=4; -update noar ti set b0='IWPG63U6C8D' where id=4; -update noar tt set b1='0P4' where id=4; -update noar ti set b1='0P4' where id=4; -update noar tt set b2='N2QF' where id=4; -update noar ti set b2='N2QF' where id=4; -update noar tt set b0='OGR8QE52KQN0MOI1CBQ0CVERT2' where id=5; -update noar ti set b0='OGR8QE52KQN0MOI1CBQ0CVERT2' where id=5; -update noar tt set b1='9' where id=5; -update noar ti set b1='9' where id=5; -update noar tt set b2='523RCD1AE' where id=5; -update noar ti set b2='523RCD1AE' where id=5; -update noar tt set b0='1ZDG0QNTS3N7HZSLOS' where id=6; -update noar ti set b0='1ZDG0QNTS3N7HZSLOS' where id=6; -update noar tt set b1='42SRZSWXYCCB4H3JQWXPEV1H' where id=6; -update noar ti set b1='42SRZSWXYCCB4H3JQWXPEV1H' where id=6; -update noar tt set b2='YFO' where id=6; -update noar ti set b2='YFO' where id=6; -update noar tt set b0='ILFGIKC3CXIWBZ5N68XCAG' where id=7; -update noar ti set b0='ILFGIKC3CXIWBZ5N68XCAG' where id=7; -update noar tt set b1='69WLZBPZE06Y2ILA5X6T' where id=7; -update noar ti set b1='69WLZBPZE06Y2ILA5X6T' where id=7; -update noar tt set b2='CB2RZSYO060H04L' where id=7; -update noar ti set b2='CB2RZSYO060H04L' where id=7; -update noar tt set b0='T49IQ0OD1KBKBW1G87S9HN0TMXC6' where id=8; -update noar ti set b0='T49IQ0OD1KBKBW1G87S9HN0TMXC6' where id=8; -update noar tt set b1='13' where id=8; -update noar ti set b1='13' where id=8; -update noar tt set b2='BSQD1YMXZ2NX0S9OGW50BAJ' where id=8; -update noar ti set b2='BSQD1YMXZ2NX0S9OGW50BAJ' where id=8; -update noar tt set b0='O6' where id=9; -update noar ti set b0='O6' where id=9; -update noar tt set b1='CK1I41K4KL0IN2NLYRXTAXWLW' where id=9; -update noar ti set b1='CK1I41K4KL0IN2NLYRXTAXWLW' where id=9; -update noar tt set b2='II8LMTGKMBFQ1E02RFB2N2Q0CLUZ' where id=9; -update noar ti set b2='II8LMTGKMBFQ1E02RFB2N2Q0CLUZ' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -b0 longblob null, -b1 blob null, -b2 tinyblob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set b0='FYCQ4S8' where id=1; -update noar ti set b0='FYCQ4S8' where id=1; -update noar tt set b1='35B' where id=1; -update noar ti set b1='35B' where id=1; -update noar tt set b2='P8VN7P687AL48LX5GSZADPBNXFPD4C' where id=1; -update noar ti set b2='P8VN7P687AL48LX5GSZADPBNXFPD4C' where id=1; -update noar tt set b0='PLLTKRB02' where id=2; -update noar ti set b0='PLLTKRB02' where id=2; -update noar tt set b1='X8E6V5OVJL2GHBI2P6' where id=2; -update noar ti set b1='X8E6V5OVJL2GHBI2P6' where id=2; -update noar tt set b2='TIJ8MT3MGQGUB3AFEX' where id=2; -update noar ti set b2='TIJ8MT3MGQGUB3AFEX' where id=2; -update noar tt set b0='H78VKU4401' where id=3; -update noar ti set b0='H78VKU4401' where id=3; -update noar tt set b1='CCM22' where id=3; -update noar ti set b1='CCM22' where id=3; -update noar tt set b2='7A03CT9XZH3ER1SFY' where id=3; -update noar ti set b2='7A03CT9XZH3ER1SFY' where id=3; -update noar tt set b0='EYT4P9YTVTJTNULH59N1K' where id=4; -update noar ti set b0='EYT4P9YTVTJTNULH59N1K' where id=4; -update noar tt set b1='84O63N84MW6G1RCTN' where id=4; -update noar ti set b1='84O63N84MW6G1RCTN' where id=4; -update noar tt set b2='HPBKWC2CXFUFUDFOISLA05CHIBMQ6' where id=4; -update noar ti set b2='HPBKWC2CXFUFUDFOISLA05CHIBMQ6' where id=4; -update noar tt set b0='N8MF9PCA4Z6YX134' where id=5; -update noar ti set b0='N8MF9PCA4Z6YX134' where id=5; -update noar tt set b1='VVN9233GFFLJTF73H' where id=5; -update noar ti set b1='VVN9233GFFLJTF73H' where id=5; -update noar tt set b2='RHTNFYN2JJ7S3EHDZY696YHM82Y' where id=5; -update noar ti set b2='RHTNFYN2JJ7S3EHDZY696YHM82Y' where id=5; -update noar tt set b0='8FKKBVSQ2DD82Y3D853FEYWLH' where id=6; -update noar ti set b0='8FKKBVSQ2DD82Y3D853FEYWLH' where id=6; -update noar tt set b1='R7OZFKH0BXI2HTLSHY40TQUEZ6F' where id=6; -update noar ti set b1='R7OZFKH0BXI2HTLSHY40TQUEZ6F' where id=6; -update noar tt set b2='CQBC461FFJYUM68O0VR1ECIDMD2UIQ' where id=6; -update noar ti set b2='CQBC461FFJYUM68O0VR1ECIDMD2UIQ' where id=6; -update noar tt set b0='0RPIXAGCIBDD7U7J2' where id=7; -update noar ti set b0='0RPIXAGCIBDD7U7J2' where id=7; -update noar tt set b1='1ZR196R3BKHH349JP9PRJWD' where id=7; -update noar ti set b1='1ZR196R3BKHH349JP9PRJWD' where id=7; -update noar tt set b2='ND352LZPIGODOAE87MJS0EKH8LT676L' where id=7; -update noar ti set b2='ND352LZPIGODOAE87MJS0EKH8LT676L' where id=7; -update noar tt set b0='7DH3TV' where id=8; -update noar ti set b0='7DH3TV' where id=8; -update noar tt set b1='XRT54KYS58Y9FM4OOJC0U8C6DCND' where id=8; -update noar ti set b1='XRT54KYS58Y9FM4OOJC0U8C6DCND' where id=8; -update noar tt set b2='QS5702EDN5GBQMBSMNXT' where id=8; -update noar ti set b2='QS5702EDN5GBQMBSMNXT' where id=8; -update noar tt set b0='V45OU6BZ1P' where id=9; -update noar ti set b0='V45OU6BZ1P' where id=9; -update noar tt set b1='J85UR68X4N3RF5QNNLM4OPE8QV' where id=9; -update noar ti set b1='J85UR68X4N3RF5QNNLM4OPE8QV' where id=9; -update noar tt set b2='QO' where id=9; -update noar ti set b2='QO' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -b0 longblob not null, -b1 blob not null, -b2 tinyblob not null -) engine=tokudb; -insert into tt values (1,'','',''); -insert into tt values (2,'','',''); -insert into tt values (3,'','',''); -insert into tt values (4,'','',''); -insert into tt values (5,'','',''); -insert into tt values (6,'','',''); -insert into tt values (7,'','',''); -insert into tt values (8,'','',''); -insert into tt values (9,'','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set b0='KI3LKGOFDHFP9648RD2N48BBBP8F' where id=1; -update noar ti set b0='KI3LKGOFDHFP9648RD2N48BBBP8F' where id=1; -update noar tt set b1='1AGDVES6MMFRDUFDTBHGBC43BIN2' where id=1; -update noar ti set b1='1AGDVES6MMFRDUFDTBHGBC43BIN2' where id=1; -update noar tt set b2='BDQI5O1ALFOEWZHNMF7Q42ERH9' where id=1; -update noar ti set b2='BDQI5O1ALFOEWZHNMF7Q42ERH9' where id=1; -update noar tt set b0='TH8MZGQ7RARK9F0A088LHWJXTU7RQ9Y' where id=2; -update noar ti set b0='TH8MZGQ7RARK9F0A088LHWJXTU7RQ9Y' where id=2; -update noar tt set b1='OYB7L67O8RP9OAQ' where id=2; -update noar ti set b1='OYB7L67O8RP9OAQ' where id=2; -update noar tt set b2='3U5RHVIDLFNU3RDLCY' where id=2; -update noar ti set b2='3U5RHVIDLFNU3RDLCY' where id=2; -update noar tt set b0='82IM1ATOAOWSVWR62TXT9T' where id=3; -update noar ti set b0='82IM1ATOAOWSVWR62TXT9T' where id=3; -update noar tt set b1='Q4A' where id=3; -update noar ti set b1='Q4A' where id=3; -update noar tt set b2='32U53FTIF90QIF9DBFYDQ51' where id=3; -update noar ti set b2='32U53FTIF90QIF9DBFYDQ51' where id=3; -update noar tt set b0='OL5LBLVZOKDEM66RV39' where id=4; -update noar ti set b0='OL5LBLVZOKDEM66RV39' where id=4; -update noar tt set b1='ZG6T9O9WG7W8KX0ANYRD' where id=4; -update noar ti set b1='ZG6T9O9WG7W8KX0ANYRD' where id=4; -update noar tt set b2='HZQ34JJ9RVX003VKTGQKZPV9Q' where id=4; -update noar ti set b2='HZQ34JJ9RVX003VKTGQKZPV9Q' where id=4; -update noar tt set b0='W0UTC7ZE9UQQO' where id=5; -update noar ti set b0='W0UTC7ZE9UQQO' where id=5; -update noar tt set b1='SF9M1332U3LPWMA5Y7' where id=5; -update noar ti set b1='SF9M1332U3LPWMA5Y7' where id=5; -update noar tt set b2='TOA7NBKVBY953' where id=5; -update noar ti set b2='TOA7NBKVBY953' where id=5; -update noar tt set b0='XJ' where id=6; -update noar ti set b0='XJ' where id=6; -update noar tt set b1='3INUXN7RBVWIBI6VH85' where id=6; -update noar ti set b1='3INUXN7RBVWIBI6VH85' where id=6; -update noar tt set b2='1DPZSY9Z7XPB0VHMQQBOF8W7XZOH' where id=6; -update noar ti set b2='1DPZSY9Z7XPB0VHMQQBOF8W7XZOH' where id=6; -update noar tt set b0='X3E875' where id=7; -update noar ti set b0='X3E875' where id=7; -update noar tt set b1='8S1M9VHOUC3RK3DRZZ' where id=7; -update noar ti set b1='8S1M9VHOUC3RK3DRZZ' where id=7; -update noar tt set b2='DAXXE30KXBCJ2GSK7T64YKHKGDBLGC2' where id=7; -update noar ti set b2='DAXXE30KXBCJ2GSK7T64YKHKGDBLGC2' where id=7; -update noar tt set b0='84Y7F35ABG9BYK04EFFOGLI89N' where id=8; -update noar ti set b0='84Y7F35ABG9BYK04EFFOGLI89N' where id=8; -update noar tt set b1='99LFZWRY9WGSHLHFPP6QKGZVLLHU747D' where id=8; -update noar ti set b1='99LFZWRY9WGSHLHFPP6QKGZVLLHU747D' where id=8; -update noar tt set b2='H0RBGA2BY1396M48VC3E4ZGRXTJHVSF' where id=8; -update noar ti set b2='H0RBGA2BY1396M48VC3E4ZGRXTJHVSF' where id=8; -update noar tt set b0='H' where id=9; -update noar ti set b0='H' where id=9; -update noar tt set b1='BI8090ZMCTBV6A8O0M1FZQU' where id=9; -update noar ti set b1='BI8090ZMCTBV6A8O0M1FZQU' where id=9; -update noar tt set b2='1YNO52GZFN80LITZ69' where id=9; -update noar ti set b2='1YNO52GZFN80LITZ69' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -b0 longblob null, -b1 blob null, -b2 blob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set b0='P7GBXU2I' where id=1; -update noar ti set b0='P7GBXU2I' where id=1; -update noar tt set b1='H' where id=1; -update noar ti set b1='H' where id=1; -update noar tt set b2='ZL5RMN4PU' where id=1; -update noar ti set b2='ZL5RMN4PU' where id=1; -update noar tt set b0='KTMJ7DC693YHSIDX' where id=2; -update noar ti set b0='KTMJ7DC693YHSIDX' where id=2; -update noar tt set b1='61DW7JEP4JTXVSD94ZVGYN9' where id=2; -update noar ti set b1='61DW7JEP4JTXVSD94ZVGYN9' where id=2; -update noar tt set b2='RVHWFX8LCL8F' where id=2; -update noar ti set b2='RVHWFX8LCL8F' where id=2; -update noar tt set b0='CSEUQIHDL6XISQG1FY' where id=3; -update noar ti set b0='CSEUQIHDL6XISQG1FY' where id=3; -update noar tt set b1='9XO7KNHSNOUCXWZGT2VXK8Z3YUI' where id=3; -update noar ti set b1='9XO7KNHSNOUCXWZGT2VXK8Z3YUI' where id=3; -update noar tt set b2='814IJMG93S' where id=3; -update noar ti set b2='814IJMG93S' where id=3; -update noar tt set b0='6WXCOYCDPYB9DZJMWJDPFH6KV90RMS5' where id=4; -update noar ti set b0='6WXCOYCDPYB9DZJMWJDPFH6KV90RMS5' where id=4; -update noar tt set b1='H2YLU8VFWJQQUP' where id=4; -update noar ti set b1='H2YLU8VFWJQQUP' where id=4; -update noar tt set b2='QNNZKNW62JDZAS' where id=4; -update noar ti set b2='QNNZKNW62JDZAS' where id=4; -update noar tt set b0='0CLBPFMSZCFQ7VP' where id=5; -update noar ti set b0='0CLBPFMSZCFQ7VP' where id=5; -update noar tt set b1='TLPWMYSFOBTN' where id=5; -update noar ti set b1='TLPWMYSFOBTN' where id=5; -update noar tt set b2='AZZ2' where id=5; -update noar ti set b2='AZZ2' where id=5; -update noar tt set b0='VI54HTTGSSG9FGXEA' where id=6; -update noar ti set b0='VI54HTTGSSG9FGXEA' where id=6; -update noar tt set b1='W43M91NONCI4B6GA6GMMNPCOY38QP0' where id=6; -update noar ti set b1='W43M91NONCI4B6GA6GMMNPCOY38QP0' where id=6; -update noar tt set b2='6B1S2LJXDI7Z4M4N5BYW9M5' where id=6; -update noar ti set b2='6B1S2LJXDI7Z4M4N5BYW9M5' where id=6; -update noar tt set b0='BJ98ALF1' where id=7; -update noar ti set b0='BJ98ALF1' where id=7; -update noar tt set b1='IBQ6YU36AGR11W' where id=7; -update noar ti set b1='IBQ6YU36AGR11W' where id=7; -update noar tt set b2='RHUP7LK5KRYMIYQZH1ZM5Y8' where id=7; -update noar ti set b2='RHUP7LK5KRYMIYQZH1ZM5Y8' where id=7; -update noar tt set b0='6SV3Y7UQT779WX0G3' where id=8; -update noar ti set b0='6SV3Y7UQT779WX0G3' where id=8; -update noar tt set b1='11M1EZXN5X1RMN81LDS610C' where id=8; -update noar ti set b1='11M1EZXN5X1RMN81LDS610C' where id=8; -update noar tt set b2='UUH14XTJVMG9IMJF7' where id=8; -update noar ti set b2='UUH14XTJVMG9IMJF7' where id=8; -update noar tt set b0='FJSCNC5D96ALI50BUDBG' where id=9; -update noar ti set b0='FJSCNC5D96ALI50BUDBG' where id=9; -update noar tt set b1='0D3NY2R2903CQ4S2A3AR' where id=9; -update noar ti set b1='0D3NY2R2903CQ4S2A3AR' where id=9; -update noar tt set b2='Y4YN1R' where id=9; -update noar ti set b2='Y4YN1R' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -b0 longblob not null, -b1 blob not null, -b2 blob not null -) engine=tokudb; -insert into tt values (1,'','',''); -insert into tt values (2,'','',''); -insert into tt values (3,'','',''); -insert into tt values (4,'','',''); -insert into tt values (5,'','',''); -insert into tt values (6,'','',''); -insert into tt values (7,'','',''); -insert into tt values (8,'','',''); -insert into tt values (9,'','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set b0='RSV1XSY00FF' where id=1; -update noar ti set b0='RSV1XSY00FF' where id=1; -update noar tt set b1='STZUCWW' where id=1; -update noar ti set b1='STZUCWW' where id=1; -update noar tt set b2='W7ANLT9PJHKJW3CZUS' where id=1; -update noar ti set b2='W7ANLT9PJHKJW3CZUS' where id=1; -update noar tt set b0='YZ9A7ISZME1H4' where id=2; -update noar ti set b0='YZ9A7ISZME1H4' where id=2; -update noar tt set b1='DRNP7XEK7BIY8Q3TS6GGJWF0169BP' where id=2; -update noar ti set b1='DRNP7XEK7BIY8Q3TS6GGJWF0169BP' where id=2; -update noar tt set b2='PYZ9O7WNWH1DE' where id=2; -update noar ti set b2='PYZ9O7WNWH1DE' where id=2; -update noar tt set b0='37' where id=3; -update noar ti set b0='37' where id=3; -update noar tt set b1='G2XHVK9WREITW4FW' where id=3; -update noar ti set b1='G2XHVK9WREITW4FW' where id=3; -update noar tt set b2='TGJC7WT5XP0OXLKI' where id=3; -update noar ti set b2='TGJC7WT5XP0OXLKI' where id=3; -update noar tt set b0='RUYO092MKJ2D4NZBYVNRDE1E3' where id=4; -update noar ti set b0='RUYO092MKJ2D4NZBYVNRDE1E3' where id=4; -update noar tt set b1='80F8GBYCNKU3X2I39' where id=4; -update noar ti set b1='80F8GBYCNKU3X2I39' where id=4; -update noar tt set b2='KZN8BYISTCYF7OBIU' where id=4; -update noar ti set b2='KZN8BYISTCYF7OBIU' where id=4; -update noar tt set b0='FZ4AFEU65A' where id=5; -update noar ti set b0='FZ4AFEU65A' where id=5; -update noar tt set b1='RU' where id=5; -update noar ti set b1='RU' where id=5; -update noar tt set b2='PGN28I70YFPT7HSR1FMU0CQH' where id=5; -update noar ti set b2='PGN28I70YFPT7HSR1FMU0CQH' where id=5; -update noar tt set b0='G083EX25WVGXC5F7Y' where id=6; -update noar ti set b0='G083EX25WVGXC5F7Y' where id=6; -update noar tt set b1='7YLRA7BHA0NW5' where id=6; -update noar ti set b1='7YLRA7BHA0NW5' where id=6; -update noar tt set b2='CR1CE5JY04K' where id=6; -update noar ti set b2='CR1CE5JY04K' where id=6; -update noar tt set b0='F' where id=7; -update noar ti set b0='F' where id=7; -update noar tt set b1='CY68LEQMQ224DKWJM' where id=7; -update noar ti set b1='CY68LEQMQ224DKWJM' where id=7; -update noar tt set b2='7WEQT8U' where id=7; -update noar ti set b2='7WEQT8U' where id=7; -update noar tt set b0='7ARPD9VPZO' where id=8; -update noar ti set b0='7ARPD9VPZO' where id=8; -update noar tt set b1='HUORAOXM13NQM6TIUAHRUVYFCMAL6KE4' where id=8; -update noar ti set b1='HUORAOXM13NQM6TIUAHRUVYFCMAL6KE4' where id=8; -update noar tt set b2='9BPCXLB' where id=8; -update noar ti set b2='9BPCXLB' where id=8; -update noar tt set b0='CEZLV1BOUKKQ30EJ' where id=9; -update noar ti set b0='CEZLV1BOUKKQ30EJ' where id=9; -update noar tt set b1='H0Y' where id=9; -update noar ti set b1='H0Y' where id=9; -update noar tt set b2='2H0F' where id=9; -update noar ti set b2='2H0F' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -b0 longblob null, -b1 blob null, -b2 mediumblob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set b0='PKZ07U' where id=1; -update noar ti set b0='PKZ07U' where id=1; -update noar tt set b1='RQDZV72DDNECMNRL' where id=1; -update noar ti set b1='RQDZV72DDNECMNRL' where id=1; -update noar tt set b2='DFGTB33X' where id=1; -update noar ti set b2='DFGTB33X' where id=1; -update noar tt set b0='FH4EO7Y9RAC6TUYUWWZ5C13J70' where id=2; -update noar ti set b0='FH4EO7Y9RAC6TUYUWWZ5C13J70' where id=2; -update noar tt set b1='O9AZUPNJRM5D' where id=2; -update noar ti set b1='O9AZUPNJRM5D' where id=2; -update noar tt set b2='8CQTJ3HKHVML5E89' where id=2; -update noar ti set b2='8CQTJ3HKHVML5E89' where id=2; -update noar tt set b0='5EN' where id=3; -update noar ti set b0='5EN' where id=3; -update noar tt set b1='3' where id=3; -update noar ti set b1='3' where id=3; -update noar tt set b2='BLLT2PIIJ9SET531ICELVCUL' where id=3; -update noar ti set b2='BLLT2PIIJ9SET531ICELVCUL' where id=3; -update noar tt set b0='HHHB7DOZ41OT9K0ZT6AXHO' where id=4; -update noar ti set b0='HHHB7DOZ41OT9K0ZT6AXHO' where id=4; -update noar tt set b1='QWL89319SJ07NLNF' where id=4; -update noar ti set b1='QWL89319SJ07NLNF' where id=4; -update noar tt set b2='Q8XM48VXSM87QNZJFD1MIUWEUSZ8SJ0' where id=4; -update noar ti set b2='Q8XM48VXSM87QNZJFD1MIUWEUSZ8SJ0' where id=4; -update noar tt set b0='MI7V9CGT' where id=5; -update noar ti set b0='MI7V9CGT' where id=5; -update noar tt set b1='F4D2TA' where id=5; -update noar ti set b1='F4D2TA' where id=5; -update noar tt set b2='75' where id=5; -update noar ti set b2='75' where id=5; -update noar tt set b0='X5' where id=6; -update noar ti set b0='X5' where id=6; -update noar tt set b1='GSGBU4CLLDRZC2' where id=6; -update noar ti set b1='GSGBU4CLLDRZC2' where id=6; -update noar tt set b2='U8OADT7WWE5WQDAYMCK9F0Q04ZFEN' where id=6; -update noar ti set b2='U8OADT7WWE5WQDAYMCK9F0Q04ZFEN' where id=6; -update noar tt set b0='Y7OPDYU47AQF' where id=7; -update noar ti set b0='Y7OPDYU47AQF' where id=7; -update noar tt set b1='TQAA04AE3VZAS14Y71ITL0' where id=7; -update noar ti set b1='TQAA04AE3VZAS14Y71ITL0' where id=7; -update noar tt set b2='WGQJI40Y16NUIZAAQKSKXNN39' where id=7; -update noar ti set b2='WGQJI40Y16NUIZAAQKSKXNN39' where id=7; -update noar tt set b0='E2O' where id=8; -update noar ti set b0='E2O' where id=8; -update noar tt set b1='64M7YPD8' where id=8; -update noar ti set b1='64M7YPD8' where id=8; -update noar tt set b2='J' where id=8; -update noar ti set b2='J' where id=8; -update noar tt set b0='Z' where id=9; -update noar ti set b0='Z' where id=9; -update noar tt set b1='XLDS2S24' where id=9; -update noar ti set b1='XLDS2S24' where id=9; -update noar tt set b2='HLA2LL5N7QS3LK9T14AX' where id=9; -update noar ti set b2='HLA2LL5N7QS3LK9T14AX' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -b0 longblob not null, -b1 blob not null, -b2 mediumblob not null -) engine=tokudb; -insert into tt values (1,'','',''); -insert into tt values (2,'','',''); -insert into tt values (3,'','',''); -insert into tt values (4,'','',''); -insert into tt values (5,'','',''); -insert into tt values (6,'','',''); -insert into tt values (7,'','',''); -insert into tt values (8,'','',''); -insert into tt values (9,'','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set b0='ODFQBMOJ9C5HW2GEUTIO1ULWZJG5EMY' where id=1; -update noar ti set b0='ODFQBMOJ9C5HW2GEUTIO1ULWZJG5EMY' where id=1; -update noar tt set b1='1CK2HUAF52QFKLOEEXLI6IU20TN5VZB' where id=1; -update noar ti set b1='1CK2HUAF52QFKLOEEXLI6IU20TN5VZB' where id=1; -update noar tt set b2='ZQNKH9GGAFKINFTVSZV' where id=1; -update noar ti set b2='ZQNKH9GGAFKINFTVSZV' where id=1; -update noar tt set b0='JAQ1XIYE4OH28' where id=2; -update noar ti set b0='JAQ1XIYE4OH28' where id=2; -update noar tt set b1='95FGL5Y924ZKR3ZGVC7O6JRK3U98FR1G' where id=2; -update noar ti set b1='95FGL5Y924ZKR3ZGVC7O6JRK3U98FR1G' where id=2; -update noar tt set b2='GUH2I' where id=2; -update noar ti set b2='GUH2I' where id=2; -update noar tt set b0='XHVFXPRGELBLWQZTRQQRAS' where id=3; -update noar ti set b0='XHVFXPRGELBLWQZTRQQRAS' where id=3; -update noar tt set b1='FYNGE6QKP7I8LYPLDY9KUV7CBNL' where id=3; -update noar ti set b1='FYNGE6QKP7I8LYPLDY9KUV7CBNL' where id=3; -update noar tt set b2='HLC302TMZOWGF77P94723' where id=3; -update noar ti set b2='HLC302TMZOWGF77P94723' where id=3; -update noar tt set b0='V42L6H9ESXZE6YM0TI0HJ' where id=4; -update noar ti set b0='V42L6H9ESXZE6YM0TI0HJ' where id=4; -update noar tt set b1='J8ELZNRLVTMR0G19UKVYJJ7P3FPZJZY8' where id=4; -update noar ti set b1='J8ELZNRLVTMR0G19UKVYJJ7P3FPZJZY8' where id=4; -update noar tt set b2='WGDX39SEMN43IY4LU' where id=4; -update noar ti set b2='WGDX39SEMN43IY4LU' where id=4; -update noar tt set b0='3' where id=5; -update noar ti set b0='3' where id=5; -update noar tt set b1='FXRP3U89IL019Y8ASAC8OOG8LQLBGXP5' where id=5; -update noar ti set b1='FXRP3U89IL019Y8ASAC8OOG8LQLBGXP5' where id=5; -update noar tt set b2='N315G9MWFAND8BRWWXGXF4EB2' where id=5; -update noar ti set b2='N315G9MWFAND8BRWWXGXF4EB2' where id=5; -update noar tt set b0='L' where id=6; -update noar ti set b0='L' where id=6; -update noar tt set b1='BKRKBGQT29V2T47BLETD1OD1A51Q9GT' where id=6; -update noar ti set b1='BKRKBGQT29V2T47BLETD1OD1A51Q9GT' where id=6; -update noar tt set b2='SH2EYK' where id=6; -update noar ti set b2='SH2EYK' where id=6; -update noar tt set b0='SX85B75' where id=7; -update noar ti set b0='SX85B75' where id=7; -update noar tt set b1='9LBMIUWTN4KZY2V8P6C4WS95EP6V' where id=7; -update noar ti set b1='9LBMIUWTN4KZY2V8P6C4WS95EP6V' where id=7; -update noar tt set b2='23CSPD2RUC1RSK2VQJFSCAGSNLK8D69' where id=7; -update noar ti set b2='23CSPD2RUC1RSK2VQJFSCAGSNLK8D69' where id=7; -update noar tt set b0='4NVAXNV2A0C09GEV7AQ7SC6J' where id=8; -update noar ti set b0='4NVAXNV2A0C09GEV7AQ7SC6J' where id=8; -update noar tt set b1='C9F1B2PWUMTITLMF2T8ZS' where id=8; -update noar ti set b1='C9F1B2PWUMTITLMF2T8ZS' where id=8; -update noar tt set b2='9C' where id=8; -update noar ti set b2='9C' where id=8; -update noar tt set b0='EU3IC1JKD1PHPYL65KC14XV' where id=9; -update noar ti set b0='EU3IC1JKD1PHPYL65KC14XV' where id=9; -update noar tt set b1='POL7NS1S5' where id=9; -update noar ti set b1='POL7NS1S5' where id=9; -update noar tt set b2='AMTX' where id=9; -update noar ti set b2='AMTX' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -b0 longblob null, -b1 blob null, -b2 longblob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set b0='ENPIQ87BJMOJQJX67HP' where id=1; -update noar ti set b0='ENPIQ87BJMOJQJX67HP' where id=1; -update noar tt set b1='JEIMVJVNDOP72K9' where id=1; -update noar ti set b1='JEIMVJVNDOP72K9' where id=1; -update noar tt set b2='3' where id=1; -update noar ti set b2='3' where id=1; -update noar tt set b0='ED4T34F1922DFW9A' where id=2; -update noar ti set b0='ED4T34F1922DFW9A' where id=2; -update noar tt set b1='OL' where id=2; -update noar ti set b1='OL' where id=2; -update noar tt set b2='D7ZIWCL33J9XFNWTRV029RSZ2' where id=2; -update noar ti set b2='D7ZIWCL33J9XFNWTRV029RSZ2' where id=2; -update noar tt set b0='TZVW' where id=3; -update noar ti set b0='TZVW' where id=3; -update noar tt set b1='FSPC4SJW32E3OVJ6H' where id=3; -update noar ti set b1='FSPC4SJW32E3OVJ6H' where id=3; -update noar tt set b2='XOQUAXRI421KQIJ4694QSRQTM5Z66V' where id=3; -update noar ti set b2='XOQUAXRI421KQIJ4694QSRQTM5Z66V' where id=3; -update noar tt set b0='CIRXJL4IV6A8HE29TNNWFRBGJ' where id=4; -update noar ti set b0='CIRXJL4IV6A8HE29TNNWFRBGJ' where id=4; -update noar tt set b1='VMW8FZS' where id=4; -update noar ti set b1='VMW8FZS' where id=4; -update noar tt set b2='1ROB5A1JYBGM9M1NR2YDN9NVA' where id=4; -update noar ti set b2='1ROB5A1JYBGM9M1NR2YDN9NVA' where id=4; -update noar tt set b0='OEAENQ23ZWDRANJ' where id=5; -update noar ti set b0='OEAENQ23ZWDRANJ' where id=5; -update noar tt set b1='USZ3ULJNCRSIA0H70AVZZP4V' where id=5; -update noar ti set b1='USZ3ULJNCRSIA0H70AVZZP4V' where id=5; -update noar tt set b2='SR942GZFO3HKOX' where id=5; -update noar ti set b2='SR942GZFO3HKOX' where id=5; -update noar tt set b0='DCVOP' where id=6; -update noar ti set b0='DCVOP' where id=6; -update noar tt set b1='CSOTEHAHFHCL' where id=6; -update noar ti set b1='CSOTEHAHFHCL' where id=6; -update noar tt set b2='6Y2DXL4DXG17LCX1MAJ1Y' where id=6; -update noar ti set b2='6Y2DXL4DXG17LCX1MAJ1Y' where id=6; -update noar tt set b0='WC74ECVEP6YQ82' where id=7; -update noar ti set b0='WC74ECVEP6YQ82' where id=7; -update noar tt set b1='8TRH69PAVJE6904C66G7XBAPXX62FC' where id=7; -update noar ti set b1='8TRH69PAVJE6904C66G7XBAPXX62FC' where id=7; -update noar tt set b2='0NGH9WS' where id=7; -update noar ti set b2='0NGH9WS' where id=7; -update noar tt set b0='2E7IKLF7QZ3VRH8W88G5H7HK' where id=8; -update noar ti set b0='2E7IKLF7QZ3VRH8W88G5H7HK' where id=8; -update noar tt set b1='NNGNDKL' where id=8; -update noar ti set b1='NNGNDKL' where id=8; -update noar tt set b2='K4ODJ2XYSUVXJR0ZQ3510' where id=8; -update noar ti set b2='K4ODJ2XYSUVXJR0ZQ3510' where id=8; -update noar tt set b0='UNFTM5' where id=9; -update noar ti set b0='UNFTM5' where id=9; -update noar tt set b1='1K9PRBHKHVPOH5D2UJ0JSCPFCMN8VHW' where id=9; -update noar ti set b1='1K9PRBHKHVPOH5D2UJ0JSCPFCMN8VHW' where id=9; -update noar tt set b2='8J49AWQSEHADA09EQO6T8B2AYZYRIV39' where id=9; -update noar ti set b2='8J49AWQSEHADA09EQO6T8B2AYZYRIV39' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -b0 longblob not null, -b1 blob not null, -b2 longblob not null -) engine=tokudb; -insert into tt values (1,'','',''); -insert into tt values (2,'','',''); -insert into tt values (3,'','',''); -insert into tt values (4,'','',''); -insert into tt values (5,'','',''); -insert into tt values (6,'','',''); -insert into tt values (7,'','',''); -insert into tt values (8,'','',''); -insert into tt values (9,'','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set b0='4YR5OV2' where id=1; -update noar ti set b0='4YR5OV2' where id=1; -update noar tt set b1='TMH04BZ7KMMEJHF3XPKQZ1HK63AJQ' where id=1; -update noar ti set b1='TMH04BZ7KMMEJHF3XPKQZ1HK63AJQ' where id=1; -update noar tt set b2='4MSGH' where id=1; -update noar ti set b2='4MSGH' where id=1; -update noar tt set b0='HGP145XAWG5JIZQSGYYTBKNH0' where id=2; -update noar ti set b0='HGP145XAWG5JIZQSGYYTBKNH0' where id=2; -update noar tt set b1='4UFAD8B2A9FHOU8462HZ' where id=2; -update noar ti set b1='4UFAD8B2A9FHOU8462HZ' where id=2; -update noar tt set b2='O2Q77QH9BVOKYVVUCP4X' where id=2; -update noar ti set b2='O2Q77QH9BVOKYVVUCP4X' where id=2; -update noar tt set b0='DSINLDN0953FXRWNADCVP8LXLHH83ETA' where id=3; -update noar ti set b0='DSINLDN0953FXRWNADCVP8LXLHH83ETA' where id=3; -update noar tt set b1='8ZAIILLVTWNJBVV2Y7C2LP82M3PD' where id=3; -update noar ti set b1='8ZAIILLVTWNJBVV2Y7C2LP82M3PD' where id=3; -update noar tt set b2='HDVS3WLSS2OFR01C' where id=3; -update noar ti set b2='HDVS3WLSS2OFR01C' where id=3; -update noar tt set b0='66CG2YLNL4MAXVWW4SF2' where id=4; -update noar ti set b0='66CG2YLNL4MAXVWW4SF2' where id=4; -update noar tt set b1='3IS7GBN5JYNECRVUCVI7GIO86DB0R9' where id=4; -update noar ti set b1='3IS7GBN5JYNECRVUCVI7GIO86DB0R9' where id=4; -update noar tt set b2='FX2LL' where id=4; -update noar ti set b2='FX2LL' where id=4; -update noar tt set b0='7' where id=5; -update noar ti set b0='7' where id=5; -update noar tt set b1='RHBCYBESGLJNP9L' where id=5; -update noar ti set b1='RHBCYBESGLJNP9L' where id=5; -update noar tt set b2='DA9SKWUNC4LG' where id=5; -update noar ti set b2='DA9SKWUNC4LG' where id=5; -update noar tt set b0='1KEGXR44Y9MT9AX9YLPBI5DPT' where id=6; -update noar ti set b0='1KEGXR44Y9MT9AX9YLPBI5DPT' where id=6; -update noar tt set b1='4MW6F3KY6GDVOILZGGD4IZNFBKT' where id=6; -update noar ti set b1='4MW6F3KY6GDVOILZGGD4IZNFBKT' where id=6; -update noar tt set b2='FP9KL111TZD' where id=6; -update noar ti set b2='FP9KL111TZD' where id=6; -update noar tt set b0='B169' where id=7; -update noar ti set b0='B169' where id=7; -update noar tt set b1='SYTMF9HKR5OV04MSX' where id=7; -update noar ti set b1='SYTMF9HKR5OV04MSX' where id=7; -update noar tt set b2='8Z5MGK3Y3P2Y2JJ73WPG4TROKUYX6' where id=7; -update noar ti set b2='8Z5MGK3Y3P2Y2JJ73WPG4TROKUYX6' where id=7; -update noar tt set b0='UISFEX1OH47N6XLH8Z6R3UKDY' where id=8; -update noar ti set b0='UISFEX1OH47N6XLH8Z6R3UKDY' where id=8; -update noar tt set b1='TDWONE8LK71QK0Z2O4ACJEMSO' where id=8; -update noar ti set b1='TDWONE8LK71QK0Z2O4ACJEMSO' where id=8; -update noar tt set b2='7' where id=8; -update noar ti set b2='7' where id=8; -update noar tt set b0='1DIFDQ33SJ' where id=9; -update noar ti set b0='1DIFDQ33SJ' where id=9; -update noar tt set b1='YW' where id=9; -update noar ti set b1='YW' where id=9; -update noar tt set b2='2YBNPH4B4K9J' where id=9; -update noar ti set b2='2YBNPH4B4K9J' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -b0 longblob null, -b1 blob null, -b2 text null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set b0='QAXRZK5KTF05RY' where id=1; -update noar ti set b0='QAXRZK5KTF05RY' where id=1; -update noar tt set b1='0HVVWKQ9R2ZCY78VWGH4W8IO4F8BFI6' where id=1; -update noar ti set b1='0HVVWKQ9R2ZCY78VWGH4W8IO4F8BFI6' where id=1; -update noar tt set b2='BIME7O4DB5UYBR59F51VQ35G0X9SESE6' where id=1; -update noar ti set b2='BIME7O4DB5UYBR59F51VQ35G0X9SESE6' where id=1; -update noar tt set b0='Z4TH37UC8OQBPM9MKYEU' where id=2; -update noar ti set b0='Z4TH37UC8OQBPM9MKYEU' where id=2; -update noar tt set b1='CE6C8IAX4G6HHKABWNSX8' where id=2; -update noar ti set b1='CE6C8IAX4G6HHKABWNSX8' where id=2; -update noar tt set b2='K1LUOIOBRXYV2VXYK7O6T9P' where id=2; -update noar ti set b2='K1LUOIOBRXYV2VXYK7O6T9P' where id=2; -update noar tt set b0='0YXQE4HK7Z4' where id=3; -update noar ti set b0='0YXQE4HK7Z4' where id=3; -update noar tt set b1='DBQ2IKRP0ZSATUWH4FNF' where id=3; -update noar ti set b1='DBQ2IKRP0ZSATUWH4FNF' where id=3; -update noar tt set b2='UNM' where id=3; -update noar ti set b2='UNM' where id=3; -update noar tt set b0='8M6HWWJ5YW4Q0P2T0OCEHUTFWCKK' where id=4; -update noar ti set b0='8M6HWWJ5YW4Q0P2T0OCEHUTFWCKK' where id=4; -update noar tt set b1='8O' where id=4; -update noar ti set b1='8O' where id=4; -update noar tt set b2='K6AF' where id=4; -update noar ti set b2='K6AF' where id=4; -update noar tt set b0='W6IXIPZDQ1JKSJTMSXNF4XQ7XRJU' where id=5; -update noar ti set b0='W6IXIPZDQ1JKSJTMSXNF4XQ7XRJU' where id=5; -update noar tt set b1='7UF2W5SGY39DV93RIIRD5PB5DUWBQ47' where id=5; -update noar ti set b1='7UF2W5SGY39DV93RIIRD5PB5DUWBQ47' where id=5; -update noar tt set b2='VCCOWF' where id=5; -update noar ti set b2='VCCOWF' where id=5; -update noar tt set b0='QIQ2WRN2JG5' where id=6; -update noar ti set b0='QIQ2WRN2JG5' where id=6; -update noar tt set b1='9NVFK9Z7OD' where id=6; -update noar ti set b1='9NVFK9Z7OD' where id=6; -update noar tt set b2='HAPWZICVOCREFE1FYVZFVJ' where id=6; -update noar ti set b2='HAPWZICVOCREFE1FYVZFVJ' where id=6; -update noar tt set b0='TRKE5YSBPNENH9N' where id=7; -update noar ti set b0='TRKE5YSBPNENH9N' where id=7; -update noar tt set b1='AUOOJFP42U6846T5FRIZYY3' where id=7; -update noar ti set b1='AUOOJFP42U6846T5FRIZYY3' where id=7; -update noar tt set b2='5RC6PKF2' where id=7; -update noar ti set b2='5RC6PKF2' where id=7; -update noar tt set b0='Z5U3DBBB67QB' where id=8; -update noar ti set b0='Z5U3DBBB67QB' where id=8; -update noar tt set b1='B28TS61AQUL3E4WIKX8G6EJJ' where id=8; -update noar ti set b1='B28TS61AQUL3E4WIKX8G6EJJ' where id=8; -update noar tt set b2='WADXA8MBY2ZSFPJQCBVU8DJWY4YLFTV' where id=8; -update noar ti set b2='WADXA8MBY2ZSFPJQCBVU8DJWY4YLFTV' where id=8; -update noar tt set b0='3JY1IXFGGJV00F281OFEJX7EQ6CTB8J' where id=9; -update noar ti set b0='3JY1IXFGGJV00F281OFEJX7EQ6CTB8J' where id=9; -update noar tt set b1='YDQC52Q6V3QMAKCFI6TWHI6LD25E' where id=9; -update noar ti set b1='YDQC52Q6V3QMAKCFI6TWHI6LD25E' where id=9; -update noar tt set b2='ZM50PVKOJ1' where id=9; -update noar ti set b2='ZM50PVKOJ1' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -b0 longblob not null, -b1 blob not null, -b2 text not null -) engine=tokudb; -insert into tt values (1,'','',''); -insert into tt values (2,'','',''); -insert into tt values (3,'','',''); -insert into tt values (4,'','',''); -insert into tt values (5,'','',''); -insert into tt values (6,'','',''); -insert into tt values (7,'','',''); -insert into tt values (8,'','',''); -insert into tt values (9,'','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set b0='UIN6LSZOIQALWMSJYZGS9H' where id=1; -update noar ti set b0='UIN6LSZOIQALWMSJYZGS9H' where id=1; -update noar tt set b1='N6IIRBLCWO8C6OL8Z6A' where id=1; -update noar ti set b1='N6IIRBLCWO8C6OL8Z6A' where id=1; -update noar tt set b2='NJ1RWAC' where id=1; -update noar ti set b2='NJ1RWAC' where id=1; -update noar tt set b0='K691ZTWVMOCSR3DPI2' where id=2; -update noar ti set b0='K691ZTWVMOCSR3DPI2' where id=2; -update noar tt set b1='P8TYGH4OZ9NX95D19VYWI8' where id=2; -update noar ti set b1='P8TYGH4OZ9NX95D19VYWI8' where id=2; -update noar tt set b2='1CK27Z61SFUOJNEAODL3R8' where id=2; -update noar ti set b2='1CK27Z61SFUOJNEAODL3R8' where id=2; -update noar tt set b0='NGDGM03E25T' where id=3; -update noar ti set b0='NGDGM03E25T' where id=3; -update noar tt set b1='CS51C9XZP0S' where id=3; -update noar ti set b1='CS51C9XZP0S' where id=3; -update noar tt set b2='S0V6YWRP' where id=3; -update noar ti set b2='S0V6YWRP' where id=3; -update noar tt set b0='CP87S787CQJDQUI985I9E6' where id=4; -update noar ti set b0='CP87S787CQJDQUI985I9E6' where id=4; -update noar tt set b1='J8WW7NK1ELXNM323' where id=4; -update noar ti set b1='J8WW7NK1ELXNM323' where id=4; -update noar tt set b2='63IFZJ' where id=4; -update noar ti set b2='63IFZJ' where id=4; -update noar tt set b0='449VMKOWBMC80SYHI0C1HZ' where id=5; -update noar ti set b0='449VMKOWBMC80SYHI0C1HZ' where id=5; -update noar tt set b1='W8NUI2R1' where id=5; -update noar ti set b1='W8NUI2R1' where id=5; -update noar tt set b2='K89UZY6B1C4RBE' where id=5; -update noar ti set b2='K89UZY6B1C4RBE' where id=5; -update noar tt set b0='VUNXE4G05Y39HWW6X' where id=6; -update noar ti set b0='VUNXE4G05Y39HWW6X' where id=6; -update noar tt set b1='6WDUD8ZLY9UHNWO8UIG1OKMLMX' where id=6; -update noar ti set b1='6WDUD8ZLY9UHNWO8UIG1OKMLMX' where id=6; -update noar tt set b2='1GPF0Q' where id=6; -update noar ti set b2='1GPF0Q' where id=6; -update noar tt set b0='W9RXONTWFWDXVPPZQLP2NO2' where id=7; -update noar ti set b0='W9RXONTWFWDXVPPZQLP2NO2' where id=7; -update noar tt set b1='GFSKHX9AAAD5OM' where id=7; -update noar ti set b1='GFSKHX9AAAD5OM' where id=7; -update noar tt set b2='CRPQKMNOXWU56WQ5TF' where id=7; -update noar ti set b2='CRPQKMNOXWU56WQ5TF' where id=7; -update noar tt set b0='N9X1GX' where id=8; -update noar ti set b0='N9X1GX' where id=8; -update noar tt set b1='EDB9GS4SB40XX37XZOQNT04I' where id=8; -update noar ti set b1='EDB9GS4SB40XX37XZOQNT04I' where id=8; -update noar tt set b2='KVIN' where id=8; -update noar ti set b2='KVIN' where id=8; -update noar tt set b0='KC9L880VLFID96SBPHU6I' where id=9; -update noar ti set b0='KC9L880VLFID96SBPHU6I' where id=9; -update noar tt set b1='F1BU01H40ZR9WVSV3AA2' where id=9; -update noar ti set b1='F1BU01H40ZR9WVSV3AA2' where id=9; -update noar tt set b2='REJHZA0MTF5DIFXK2X8FKZV' where id=9; -update noar ti set b2='REJHZA0MTF5DIFXK2X8FKZV' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -b0 longblob null, -b1 mediumblob null, -b2 tinyblob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set b0='9WY4UVN1N6RW5' where id=1; -update noar ti set b0='9WY4UVN1N6RW5' where id=1; -update noar tt set b1='FVM6Z7YO4528HX' where id=1; -update noar ti set b1='FVM6Z7YO4528HX' where id=1; -update noar tt set b2='TNYUO4' where id=1; -update noar ti set b2='TNYUO4' where id=1; -update noar tt set b0='EIDJG721JXO29ITLO' where id=2; -update noar ti set b0='EIDJG721JXO29ITLO' where id=2; -update noar tt set b1='QEB2334H' where id=2; -update noar ti set b1='QEB2334H' where id=2; -update noar tt set b2='DCOZ8GG0VL7481JMB2CWHEU7ZOWD' where id=2; -update noar ti set b2='DCOZ8GG0VL7481JMB2CWHEU7ZOWD' where id=2; -update noar tt set b0='LVTV0WFBRWN461VD37' where id=3; -update noar ti set b0='LVTV0WFBRWN461VD37' where id=3; -update noar tt set b1='9' where id=3; -update noar ti set b1='9' where id=3; -update noar tt set b2='LQBPEW1ZQZNVFJZI8RN6' where id=3; -update noar ti set b2='LQBPEW1ZQZNVFJZI8RN6' where id=3; -update noar tt set b0='IH0WQNH' where id=4; -update noar ti set b0='IH0WQNH' where id=4; -update noar tt set b1='UA4K6FIFQV' where id=4; -update noar ti set b1='UA4K6FIFQV' where id=4; -update noar tt set b2='CL' where id=4; -update noar ti set b2='CL' where id=4; -update noar tt set b0='9VQ7PPXO667V7E94PYUFQK4FL' where id=5; -update noar ti set b0='9VQ7PPXO667V7E94PYUFQK4FL' where id=5; -update noar tt set b1='52EY8YFMX8X3M06IL' where id=5; -update noar ti set b1='52EY8YFMX8X3M06IL' where id=5; -update noar tt set b2='2RH9M1Y' where id=5; -update noar ti set b2='2RH9M1Y' where id=5; -update noar tt set b0='HZ16E873PXHA3K8VNRAD1' where id=6; -update noar ti set b0='HZ16E873PXHA3K8VNRAD1' where id=6; -update noar tt set b1='9RO5173ZYP' where id=6; -update noar ti set b1='9RO5173ZYP' where id=6; -update noar tt set b2='CVTKD0N0YFRNCB5DZF2HXA' where id=6; -update noar ti set b2='CVTKD0N0YFRNCB5DZF2HXA' where id=6; -update noar tt set b0='BX' where id=7; -update noar ti set b0='BX' where id=7; -update noar tt set b1='8PW8ADO9HBH' where id=7; -update noar ti set b1='8PW8ADO9HBH' where id=7; -update noar tt set b2='93C5R66R9BFTK1YNQ' where id=7; -update noar ti set b2='93C5R66R9BFTK1YNQ' where id=7; -update noar tt set b0='SK49SRN2SZB5HCUMI7HU' where id=8; -update noar ti set b0='SK49SRN2SZB5HCUMI7HU' where id=8; -update noar tt set b1='I6ZT6F73PDU80RMC38DA' where id=8; -update noar ti set b1='I6ZT6F73PDU80RMC38DA' where id=8; -update noar tt set b2='WGOSTZH26245ZYRS46ZPOR' where id=8; -update noar ti set b2='WGOSTZH26245ZYRS46ZPOR' where id=8; -update noar tt set b0='H1' where id=9; -update noar ti set b0='H1' where id=9; -update noar tt set b1='6VEFOJINMX1U5DT7' where id=9; -update noar ti set b1='6VEFOJINMX1U5DT7' where id=9; -update noar tt set b2='68FL5VYHZ89SKA645Y0LKWD' where id=9; -update noar ti set b2='68FL5VYHZ89SKA645Y0LKWD' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -b0 longblob not null, -b1 mediumblob not null, -b2 tinyblob not null -) engine=tokudb; -insert into tt values (1,'','',''); -insert into tt values (2,'','',''); -insert into tt values (3,'','',''); -insert into tt values (4,'','',''); -insert into tt values (5,'','',''); -insert into tt values (6,'','',''); -insert into tt values (7,'','',''); -insert into tt values (8,'','',''); -insert into tt values (9,'','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set b0='8DQW5WBMTRXJY9KRANK8H3YMKLZ30K1' where id=1; -update noar ti set b0='8DQW5WBMTRXJY9KRANK8H3YMKLZ30K1' where id=1; -update noar tt set b1='A98Z60U1JET53XA09YSD15QSE9YL' where id=1; -update noar ti set b1='A98Z60U1JET53XA09YSD15QSE9YL' where id=1; -update noar tt set b2='7AA264A0XNUBWHB2DHW' where id=1; -update noar ti set b2='7AA264A0XNUBWHB2DHW' where id=1; -update noar tt set b0='M' where id=2; -update noar ti set b0='M' where id=2; -update noar tt set b1='KJ89S07OE2IMKF924P2M2UF9' where id=2; -update noar ti set b1='KJ89S07OE2IMKF924P2M2UF9' where id=2; -update noar tt set b2='ICM92DK4' where id=2; -update noar ti set b2='ICM92DK4' where id=2; -update noar tt set b0='8NMQ1GGNDVGKP0SGP2GSGQNC' where id=3; -update noar ti set b0='8NMQ1GGNDVGKP0SGP2GSGQNC' where id=3; -update noar tt set b1='GP1QPEHS59MT1ZDCYJHWJOG7NHPE7' where id=3; -update noar ti set b1='GP1QPEHS59MT1ZDCYJHWJOG7NHPE7' where id=3; -update noar tt set b2='6OX5W6789XIVV010LA' where id=3; -update noar ti set b2='6OX5W6789XIVV010LA' where id=3; -update noar tt set b0='0RWA0540MONOTNWPIWA50VFGDHEM4SS' where id=4; -update noar ti set b0='0RWA0540MONOTNWPIWA50VFGDHEM4SS' where id=4; -update noar tt set b1='OW7' where id=4; -update noar ti set b1='OW7' where id=4; -update noar tt set b2='U2CQK2WYCG1L913208IET42' where id=4; -update noar ti set b2='U2CQK2WYCG1L913208IET42' where id=4; -update noar tt set b0='KAYKUL0J9OQ45B1' where id=5; -update noar ti set b0='KAYKUL0J9OQ45B1' where id=5; -update noar tt set b1='R7H30DYSCZE6QJQWOGW53RBLZY49' where id=5; -update noar ti set b1='R7H30DYSCZE6QJQWOGW53RBLZY49' where id=5; -update noar tt set b2='A8TUNVR1F0F1AQA4XA5M860' where id=5; -update noar ti set b2='A8TUNVR1F0F1AQA4XA5M860' where id=5; -update noar tt set b0='9F2A1G' where id=6; -update noar ti set b0='9F2A1G' where id=6; -update noar tt set b1='58UQG6XST8Z0C9YY' where id=6; -update noar ti set b1='58UQG6XST8Z0C9YY' where id=6; -update noar tt set b2='782RIGIQPIF8P116W85F' where id=6; -update noar ti set b2='782RIGIQPIF8P116W85F' where id=6; -update noar tt set b0='A7U4LM1J265LO' where id=7; -update noar ti set b0='A7U4LM1J265LO' where id=7; -update noar tt set b1='F690H' where id=7; -update noar ti set b1='F690H' where id=7; -update noar tt set b2='B312GJFW7NG002WBK' where id=7; -update noar ti set b2='B312GJFW7NG002WBK' where id=7; -update noar tt set b0='EFP9BPPSA1X0339VXXBOT' where id=8; -update noar ti set b0='EFP9BPPSA1X0339VXXBOT' where id=8; -update noar tt set b1='6HL7H1H7FL5EH77D' where id=8; -update noar ti set b1='6HL7H1H7FL5EH77D' where id=8; -update noar tt set b2='CL' where id=8; -update noar ti set b2='CL' where id=8; -update noar tt set b0='22OS4QLQOSGS6BOX' where id=9; -update noar ti set b0='22OS4QLQOSGS6BOX' where id=9; -update noar tt set b1='S05M97K' where id=9; -update noar ti set b1='S05M97K' where id=9; -update noar tt set b2='93VZTP0QCC5N5NGRQI' where id=9; -update noar ti set b2='93VZTP0QCC5N5NGRQI' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -b0 longblob null, -b1 mediumblob null, -b2 blob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set b0='7KVAM' where id=1; -update noar ti set b0='7KVAM' where id=1; -update noar tt set b1='AG7GAKAU8VXENX9HHIS7WSZRG6UWC9' where id=1; -update noar ti set b1='AG7GAKAU8VXENX9HHIS7WSZRG6UWC9' where id=1; -update noar tt set b2='JBKF2DYN1GF9P' where id=1; -update noar ti set b2='JBKF2DYN1GF9P' where id=1; -update noar tt set b0='1HU5' where id=2; -update noar ti set b0='1HU5' where id=2; -update noar tt set b1='0D59PARTH7HZ625LCZJMUO' where id=2; -update noar ti set b1='0D59PARTH7HZ625LCZJMUO' where id=2; -update noar tt set b2='VNTG6FNKZ5V22GZLR3A80TYZPI2' where id=2; -update noar ti set b2='VNTG6FNKZ5V22GZLR3A80TYZPI2' where id=2; -update noar tt set b0='HBGYWSH2QZDTH6VGDO1W2RF70GW' where id=3; -update noar ti set b0='HBGYWSH2QZDTH6VGDO1W2RF70GW' where id=3; -update noar tt set b1='V629VCCC3OVMPE1' where id=3; -update noar ti set b1='V629VCCC3OVMPE1' where id=3; -update noar tt set b2='2J95W41W66' where id=3; -update noar ti set b2='2J95W41W66' where id=3; -update noar tt set b0='XYYF16JGDCI2JYLYLWT8K7YFG' where id=4; -update noar ti set b0='XYYF16JGDCI2JYLYLWT8K7YFG' where id=4; -update noar tt set b1='M6FK0245FQ7MZLB7GQSFIL' where id=4; -update noar ti set b1='M6FK0245FQ7MZLB7GQSFIL' where id=4; -update noar tt set b2='FQRK' where id=4; -update noar ti set b2='FQRK' where id=4; -update noar tt set b0='HU2873TTB' where id=5; -update noar ti set b0='HU2873TTB' where id=5; -update noar tt set b1='27IQQ' where id=5; -update noar ti set b1='27IQQ' where id=5; -update noar tt set b2='Y8' where id=5; -update noar ti set b2='Y8' where id=5; -update noar tt set b0='7H' where id=6; -update noar ti set b0='7H' where id=6; -update noar tt set b1='24LS7IHXF' where id=6; -update noar ti set b1='24LS7IHXF' where id=6; -update noar tt set b2='T' where id=6; -update noar ti set b2='T' where id=6; -update noar tt set b0='0Z62IIV4ST' where id=7; -update noar ti set b0='0Z62IIV4ST' where id=7; -update noar tt set b1='7AV29C1IU984FXHCSRGWFSAX' where id=7; -update noar ti set b1='7AV29C1IU984FXHCSRGWFSAX' where id=7; -update noar tt set b2='U2WOU7' where id=7; -update noar ti set b2='U2WOU7' where id=7; -update noar tt set b0='F1FKZMXR' where id=8; -update noar ti set b0='F1FKZMXR' where id=8; -update noar tt set b1='WCS0NN0UFCT' where id=8; -update noar ti set b1='WCS0NN0UFCT' where id=8; -update noar tt set b2='PU2U87VVY90Y' where id=8; -update noar ti set b2='PU2U87VVY90Y' where id=8; -update noar tt set b0='P4IWAARBSZ1PUB' where id=9; -update noar ti set b0='P4IWAARBSZ1PUB' where id=9; -update noar tt set b1='KTQD8GIMBS2FP1PTJKKXFRSWAN6N' where id=9; -update noar ti set b1='KTQD8GIMBS2FP1PTJKKXFRSWAN6N' where id=9; -update noar tt set b2='N8YRTE0KJR0RJU' where id=9; -update noar ti set b2='N8YRTE0KJR0RJU' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -b0 longblob not null, -b1 mediumblob not null, -b2 blob not null -) engine=tokudb; -insert into tt values (1,'','',''); -insert into tt values (2,'','',''); -insert into tt values (3,'','',''); -insert into tt values (4,'','',''); -insert into tt values (5,'','',''); -insert into tt values (6,'','',''); -insert into tt values (7,'','',''); -insert into tt values (8,'','',''); -insert into tt values (9,'','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set b0='4X44KD5PUV2AB59GLIS' where id=1; -update noar ti set b0='4X44KD5PUV2AB59GLIS' where id=1; -update noar tt set b1='GUZFZEOPFFMR2CBAZM1IZQTD' where id=1; -update noar ti set b1='GUZFZEOPFFMR2CBAZM1IZQTD' where id=1; -update noar tt set b2='Q72YBK0TSJYHHY8PU' where id=1; -update noar ti set b2='Q72YBK0TSJYHHY8PU' where id=1; -update noar tt set b0='K19LDDP5C' where id=2; -update noar ti set b0='K19LDDP5C' where id=2; -update noar tt set b1='J6OBZKSTJ2JMO6QON' where id=2; -update noar ti set b1='J6OBZKSTJ2JMO6QON' where id=2; -update noar tt set b2='UDMV2VF31' where id=2; -update noar ti set b2='UDMV2VF31' where id=2; -update noar tt set b0='L5WGNU4WNIWH' where id=3; -update noar ti set b0='L5WGNU4WNIWH' where id=3; -update noar tt set b1='K75U2I' where id=3; -update noar ti set b1='K75U2I' where id=3; -update noar tt set b2='NZ55E' where id=3; -update noar ti set b2='NZ55E' where id=3; -update noar tt set b0='YQOB' where id=4; -update noar ti set b0='YQOB' where id=4; -update noar tt set b1='NXRM03CJW9' where id=4; -update noar ti set b1='NXRM03CJW9' where id=4; -update noar tt set b2='JGLE0BDVC72BQL379W' where id=4; -update noar ti set b2='JGLE0BDVC72BQL379W' where id=4; -update noar tt set b0='SYL3LQZYLJXJADASRPY7UUOO494HU' where id=5; -update noar ti set b0='SYL3LQZYLJXJADASRPY7UUOO494HU' where id=5; -update noar tt set b1='74NYBECENCTMECVHTANU0U' where id=5; -update noar ti set b1='74NYBECENCTMECVHTANU0U' where id=5; -update noar tt set b2='I1LS6BVPIU6AAFK2' where id=5; -update noar ti set b2='I1LS6BVPIU6AAFK2' where id=5; -update noar tt set b0='MCBSWZ3K3BOLH688CUKIBWS8ACODDFZ' where id=6; -update noar ti set b0='MCBSWZ3K3BOLH688CUKIBWS8ACODDFZ' where id=6; -update noar tt set b1='WIFT09PZWS2C42Q2PO6G2JF7QBEFO0' where id=6; -update noar ti set b1='WIFT09PZWS2C42Q2PO6G2JF7QBEFO0' where id=6; -update noar tt set b2='RYC8MM85X2QJE4OGS247UK42WU4X' where id=6; -update noar ti set b2='RYC8MM85X2QJE4OGS247UK42WU4X' where id=6; -update noar tt set b0='KVPZC4ZXTAOMSINCDGVNJ1OI' where id=7; -update noar ti set b0='KVPZC4ZXTAOMSINCDGVNJ1OI' where id=7; -update noar tt set b1='S60E9CU30Z4MYLX4' where id=7; -update noar ti set b1='S60E9CU30Z4MYLX4' where id=7; -update noar tt set b2='DW90E' where id=7; -update noar ti set b2='DW90E' where id=7; -update noar tt set b0='8YLSKDT5MR0TGVFG5WE3EORCEE' where id=8; -update noar ti set b0='8YLSKDT5MR0TGVFG5WE3EORCEE' where id=8; -update noar tt set b1='XLJSPV40KBLNNML' where id=8; -update noar ti set b1='XLJSPV40KBLNNML' where id=8; -update noar tt set b2='3TWZ1ZI' where id=8; -update noar ti set b2='3TWZ1ZI' where id=8; -update noar tt set b0='AOS56W' where id=9; -update noar ti set b0='AOS56W' where id=9; -update noar tt set b1='P379HOGZL9OGNTP23PUBSELFL' where id=9; -update noar ti set b1='P379HOGZL9OGNTP23PUBSELFL' where id=9; -update noar tt set b2='6NX5LO2H7U447EB34ZTX5' where id=9; -update noar ti set b2='6NX5LO2H7U447EB34ZTX5' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -b0 longblob null, -b1 mediumblob null, -b2 mediumblob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set b0='2HRCAP0905VZZN' where id=1; -update noar ti set b0='2HRCAP0905VZZN' where id=1; -update noar tt set b1='AX5W379S76BX' where id=1; -update noar ti set b1='AX5W379S76BX' where id=1; -update noar tt set b2='U3RA' where id=1; -update noar ti set b2='U3RA' where id=1; -update noar tt set b0='9G' where id=2; -update noar ti set b0='9G' where id=2; -update noar tt set b1='EKD8MUW0VE43O8YX54TZLOBSV2BC' where id=2; -update noar ti set b1='EKD8MUW0VE43O8YX54TZLOBSV2BC' where id=2; -update noar tt set b2='N63O2K45Y8G1SOR' where id=2; -update noar ti set b2='N63O2K45Y8G1SOR' where id=2; -update noar tt set b0='0MG0AN' where id=3; -update noar ti set b0='0MG0AN' where id=3; -update noar tt set b1='G6U9MCHSN76DXGP2DJ58T7JW' where id=3; -update noar ti set b1='G6U9MCHSN76DXGP2DJ58T7JW' where id=3; -update noar tt set b2='T005F4' where id=3; -update noar ti set b2='T005F4' where id=3; -update noar tt set b0='4PRQXZ9UI4HQYZ0C2L' where id=4; -update noar ti set b0='4PRQXZ9UI4HQYZ0C2L' where id=4; -update noar tt set b1='MF75X11414E' where id=4; -update noar ti set b1='MF75X11414E' where id=4; -update noar tt set b2='YGZUB2BJ72L24KA' where id=4; -update noar ti set b2='YGZUB2BJ72L24KA' where id=4; -update noar tt set b0='OTTOY3SL23GRFCG' where id=5; -update noar ti set b0='OTTOY3SL23GRFCG' where id=5; -update noar tt set b1='D457VTVI86PIOT0NHTU' where id=5; -update noar ti set b1='D457VTVI86PIOT0NHTU' where id=5; -update noar tt set b2='EJ4MQJGBAFHJGWKAZO2SDV' where id=5; -update noar ti set b2='EJ4MQJGBAFHJGWKAZO2SDV' where id=5; -update noar tt set b0='N86' where id=6; -update noar ti set b0='N86' where id=6; -update noar tt set b1='0JLVBVQ6HBOA3L' where id=6; -update noar ti set b1='0JLVBVQ6HBOA3L' where id=6; -update noar tt set b2='P52JAO' where id=6; -update noar ti set b2='P52JAO' where id=6; -update noar tt set b0='CIXD6375TYSKN2D0B2AM09NYD8FAJ6' where id=7; -update noar ti set b0='CIXD6375TYSKN2D0B2AM09NYD8FAJ6' where id=7; -update noar tt set b1='5DPK0NP' where id=7; -update noar ti set b1='5DPK0NP' where id=7; -update noar tt set b2='3ISKSVQO9UUWV70MZB' where id=7; -update noar ti set b2='3ISKSVQO9UUWV70MZB' where id=7; -update noar tt set b0='VMSZNXG67HA1H2PE90YJ9HI0P' where id=8; -update noar ti set b0='VMSZNXG67HA1H2PE90YJ9HI0P' where id=8; -update noar tt set b1='IHCGN1QMFZZ9IF81OAREN93IWONP4' where id=8; -update noar ti set b1='IHCGN1QMFZZ9IF81OAREN93IWONP4' where id=8; -update noar tt set b2='2Y7IVAILB1AEE4WS23' where id=8; -update noar ti set b2='2Y7IVAILB1AEE4WS23' where id=8; -update noar tt set b0='KQJY9VW30LCGNUBT6K8BKPRAHWGFWLT' where id=9; -update noar ti set b0='KQJY9VW30LCGNUBT6K8BKPRAHWGFWLT' where id=9; -update noar tt set b1='55SQU999SQM' where id=9; -update noar ti set b1='55SQU999SQM' where id=9; -update noar tt set b2='5Q' where id=9; -update noar ti set b2='5Q' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -b0 longblob not null, -b1 mediumblob not null, -b2 mediumblob not null -) engine=tokudb; -insert into tt values (1,'','',''); -insert into tt values (2,'','',''); -insert into tt values (3,'','',''); -insert into tt values (4,'','',''); -insert into tt values (5,'','',''); -insert into tt values (6,'','',''); -insert into tt values (7,'','',''); -insert into tt values (8,'','',''); -insert into tt values (9,'','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set b0='FA1E95MXS945VHWE13CFX2IM1' where id=1; -update noar ti set b0='FA1E95MXS945VHWE13CFX2IM1' where id=1; -update noar tt set b1='7RIHIQWB0OGWMN' where id=1; -update noar ti set b1='7RIHIQWB0OGWMN' where id=1; -update noar tt set b2='O5T7ZU9MUCT7RQP4' where id=1; -update noar ti set b2='O5T7ZU9MUCT7RQP4' where id=1; -update noar tt set b0='I1594G1NTW' where id=2; -update noar ti set b0='I1594G1NTW' where id=2; -update noar tt set b1='XMJGF9BO5T67ZEDM0FDT832N4HJE' where id=2; -update noar ti set b1='XMJGF9BO5T67ZEDM0FDT832N4HJE' where id=2; -update noar tt set b2='5JFWAF4NVPYNN7BZQQKW3Y0R1G' where id=2; -update noar ti set b2='5JFWAF4NVPYNN7BZQQKW3Y0R1G' where id=2; -update noar tt set b0='INBO28LEJ5522W2HGPJNZV' where id=3; -update noar ti set b0='INBO28LEJ5522W2HGPJNZV' where id=3; -update noar tt set b1='3GV7KD1RP3W' where id=3; -update noar ti set b1='3GV7KD1RP3W' where id=3; -update noar tt set b2='KQ8' where id=3; -update noar ti set b2='KQ8' where id=3; -update noar tt set b0='8SAC48T7RQV4NE66GSC4SWHR45F50T5' where id=4; -update noar ti set b0='8SAC48T7RQV4NE66GSC4SWHR45F50T5' where id=4; -update noar tt set b1='Y3EOTNDEXTG' where id=4; -update noar ti set b1='Y3EOTNDEXTG' where id=4; -update noar tt set b2='F23Q' where id=4; -update noar ti set b2='F23Q' where id=4; -update noar tt set b0='BQYNBGCE8IG0EQ6WY0QUYE5BJZ9B3' where id=5; -update noar ti set b0='BQYNBGCE8IG0EQ6WY0QUYE5BJZ9B3' where id=5; -update noar tt set b1='CCA67' where id=5; -update noar ti set b1='CCA67' where id=5; -update noar tt set b2='BMPL9SFXQA4U53F9TZFQ8A' where id=5; -update noar ti set b2='BMPL9SFXQA4U53F9TZFQ8A' where id=5; -update noar tt set b0='Z' where id=6; -update noar ti set b0='Z' where id=6; -update noar tt set b1='RKZ85JF1DHJGFGEL3' where id=6; -update noar ti set b1='RKZ85JF1DHJGFGEL3' where id=6; -update noar tt set b2='HUKZT97AVB9FG' where id=6; -update noar ti set b2='HUKZT97AVB9FG' where id=6; -update noar tt set b0='F5PIC6IVDAIG' where id=7; -update noar ti set b0='F5PIC6IVDAIG' where id=7; -update noar tt set b1='B8DC39H7HL857V4LIDV1H9AADDRAPRRN' where id=7; -update noar ti set b1='B8DC39H7HL857V4LIDV1H9AADDRAPRRN' where id=7; -update noar tt set b2='IBMAFBKRP9110OT3' where id=7; -update noar ti set b2='IBMAFBKRP9110OT3' where id=7; -update noar tt set b0='7XCQKY8QM4LD7' where id=8; -update noar ti set b0='7XCQKY8QM4LD7' where id=8; -update noar tt set b1='FNJW' where id=8; -update noar ti set b1='FNJW' where id=8; -update noar tt set b2='T8X8C4KNVP12Y0OSPGNJ' where id=8; -update noar ti set b2='T8X8C4KNVP12Y0OSPGNJ' where id=8; -update noar tt set b0='OTF42VCU9TVRLL24AINGU5L' where id=9; -update noar ti set b0='OTF42VCU9TVRLL24AINGU5L' where id=9; -update noar tt set b1='6CIR6DVLXFNI58BS7YN8LFWOJB8XI4C' where id=9; -update noar ti set b1='6CIR6DVLXFNI58BS7YN8LFWOJB8XI4C' where id=9; -update noar tt set b2='7XOC4WSG9PWL' where id=9; -update noar ti set b2='7XOC4WSG9PWL' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -b0 longblob null, -b1 mediumblob null, -b2 longblob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set b0='7P7VWR46M3K33Z3BYF' where id=1; -update noar ti set b0='7P7VWR46M3K33Z3BYF' where id=1; -update noar tt set b1='0IYUYTC8SX5UK5' where id=1; -update noar ti set b1='0IYUYTC8SX5UK5' where id=1; -update noar tt set b2='NXB1JU8NQJ85USRBVRFAF0N7XGD' where id=1; -update noar ti set b2='NXB1JU8NQJ85USRBVRFAF0N7XGD' where id=1; -update noar tt set b0='LYZDZIU8T1C9KNFPX8TGD32YGBWVZK' where id=2; -update noar ti set b0='LYZDZIU8T1C9KNFPX8TGD32YGBWVZK' where id=2; -update noar tt set b1='SKGQPIWP9974I3CMY90UHE423JM' where id=2; -update noar ti set b1='SKGQPIWP9974I3CMY90UHE423JM' where id=2; -update noar tt set b2='69WQFYV4PC0LBPVMKFF' where id=2; -update noar ti set b2='69WQFYV4PC0LBPVMKFF' where id=2; -update noar tt set b0='A6V959GEP86BDYAN373' where id=3; -update noar ti set b0='A6V959GEP86BDYAN373' where id=3; -update noar tt set b1='XJPR38131Q1BQR4FIW57YNJ4O' where id=3; -update noar ti set b1='XJPR38131Q1BQR4FIW57YNJ4O' where id=3; -update noar tt set b2='ES6XBCEW90EBS' where id=3; -update noar ti set b2='ES6XBCEW90EBS' where id=3; -update noar tt set b0='DYYUF2KGPQCUKCGW1HGVU9EFOH3BEKRH' where id=4; -update noar ti set b0='DYYUF2KGPQCUKCGW1HGVU9EFOH3BEKRH' where id=4; -update noar tt set b1='T' where id=4; -update noar ti set b1='T' where id=4; -update noar tt set b2='8806HIZCYWQGP84Y' where id=4; -update noar ti set b2='8806HIZCYWQGP84Y' where id=4; -update noar tt set b0='K66RLI8C8ZBW' where id=5; -update noar ti set b0='K66RLI8C8ZBW' where id=5; -update noar tt set b1='VZ' where id=5; -update noar ti set b1='VZ' where id=5; -update noar tt set b2='R6V30DDMUPYS1OIVE6E8R1VBVP6DA4' where id=5; -update noar ti set b2='R6V30DDMUPYS1OIVE6E8R1VBVP6DA4' where id=5; -update noar tt set b0='O1SAV3HZIXG' where id=6; -update noar ti set b0='O1SAV3HZIXG' where id=6; -update noar tt set b1='UP62E8JWIIRCVK74XPUCI' where id=6; -update noar ti set b1='UP62E8JWIIRCVK74XPUCI' where id=6; -update noar tt set b2='Y4D' where id=6; -update noar ti set b2='Y4D' where id=6; -update noar tt set b0='V' where id=7; -update noar ti set b0='V' where id=7; -update noar tt set b1='YCI' where id=7; -update noar ti set b1='YCI' where id=7; -update noar tt set b2='R' where id=7; -update noar ti set b2='R' where id=7; -update noar tt set b0='FMBEURZ2KGJ5PS380XBMU6Y' where id=8; -update noar ti set b0='FMBEURZ2KGJ5PS380XBMU6Y' where id=8; -update noar tt set b1='T106L5CAST5PFE0VS623TFGEYZZ32C' where id=8; -update noar ti set b1='T106L5CAST5PFE0VS623TFGEYZZ32C' where id=8; -update noar tt set b2='385N53THZY79SF5RIM5ODBXDAKJ' where id=8; -update noar ti set b2='385N53THZY79SF5RIM5ODBXDAKJ' where id=8; -update noar tt set b0='QC5RZNFNU7UXGLT8FCDP9E7JY4ZWE0OE' where id=9; -update noar ti set b0='QC5RZNFNU7UXGLT8FCDP9E7JY4ZWE0OE' where id=9; -update noar tt set b1='NP2THCZJI400L9HELKYX' where id=9; -update noar ti set b1='NP2THCZJI400L9HELKYX' where id=9; -update noar tt set b2='28GR' where id=9; -update noar ti set b2='28GR' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -b0 longblob not null, -b1 mediumblob not null, -b2 longblob not null -) engine=tokudb; -insert into tt values (1,'','',''); -insert into tt values (2,'','',''); -insert into tt values (3,'','',''); -insert into tt values (4,'','',''); -insert into tt values (5,'','',''); -insert into tt values (6,'','',''); -insert into tt values (7,'','',''); -insert into tt values (8,'','',''); -insert into tt values (9,'','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set b0='9WCJKFAZWB2KC' where id=1; -update noar ti set b0='9WCJKFAZWB2KC' where id=1; -update noar tt set b1='8TEX' where id=1; -update noar ti set b1='8TEX' where id=1; -update noar tt set b2='J1' where id=1; -update noar ti set b2='J1' where id=1; -update noar tt set b0='J0NC0MH' where id=2; -update noar ti set b0='J0NC0MH' where id=2; -update noar tt set b1='E00Y2O6J02D7RWMT' where id=2; -update noar ti set b1='E00Y2O6J02D7RWMT' where id=2; -update noar tt set b2='53IQCEG9BGXA4' where id=2; -update noar ti set b2='53IQCEG9BGXA4' where id=2; -update noar tt set b0='A499G37C' where id=3; -update noar ti set b0='A499G37C' where id=3; -update noar tt set b1='LO3X3BK4EL1RGMUWHQQERQXG' where id=3; -update noar ti set b1='LO3X3BK4EL1RGMUWHQQERQXG' where id=3; -update noar tt set b2='A7CV61DBVY33PLHL7MJD1AGVJNX0S2' where id=3; -update noar ti set b2='A7CV61DBVY33PLHL7MJD1AGVJNX0S2' where id=3; -update noar tt set b0='O5WZ459K4UF' where id=4; -update noar ti set b0='O5WZ459K4UF' where id=4; -update noar tt set b1='GLWJT8EO' where id=4; -update noar ti set b1='GLWJT8EO' where id=4; -update noar tt set b2='JI1RAX70CHL7IJRXPJ' where id=4; -update noar ti set b2='JI1RAX70CHL7IJRXPJ' where id=4; -update noar tt set b0='I39' where id=5; -update noar ti set b0='I39' where id=5; -update noar tt set b1='V096YO741VT2C33N4108QYSYHIGH' where id=5; -update noar ti set b1='V096YO741VT2C33N4108QYSYHIGH' where id=5; -update noar tt set b2='MV9JJ23SGNJ3IXJIDWN9HEUA50WZRY2' where id=5; -update noar ti set b2='MV9JJ23SGNJ3IXJIDWN9HEUA50WZRY2' where id=5; -update noar tt set b0='CEGX6WPZ0GGA' where id=6; -update noar ti set b0='CEGX6WPZ0GGA' where id=6; -update noar tt set b1='W' where id=6; -update noar ti set b1='W' where id=6; -update noar tt set b2='AVEHC3N2865I' where id=6; -update noar ti set b2='AVEHC3N2865I' where id=6; -update noar tt set b0='TWT3XE24F8CPDECQ' where id=7; -update noar ti set b0='TWT3XE24F8CPDECQ' where id=7; -update noar tt set b1='ED27COR9YM5ZA' where id=7; -update noar ti set b1='ED27COR9YM5ZA' where id=7; -update noar tt set b2='EAY35MSNQLGHD3LS2FV30J7JE1Y' where id=7; -update noar ti set b2='EAY35MSNQLGHD3LS2FV30J7JE1Y' where id=7; -update noar tt set b0='MW31JXELXP51Q754' where id=8; -update noar ti set b0='MW31JXELXP51Q754' where id=8; -update noar tt set b1='W8BGOASW' where id=8; -update noar ti set b1='W8BGOASW' where id=8; -update noar tt set b2='ZEMOYL4B2JI40MT70A' where id=8; -update noar ti set b2='ZEMOYL4B2JI40MT70A' where id=8; -update noar tt set b0='7F8R2KBX4NN1NYIDQ9IP3D' where id=9; -update noar ti set b0='7F8R2KBX4NN1NYIDQ9IP3D' where id=9; -update noar tt set b1='S07MWS3K0' where id=9; -update noar ti set b1='S07MWS3K0' where id=9; -update noar tt set b2='KPD1BFOIDVMWCY8RBXW5EA' where id=9; -update noar ti set b2='KPD1BFOIDVMWCY8RBXW5EA' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -b0 longblob null, -b1 mediumblob null, -b2 text null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set b0='0S' where id=1; -update noar ti set b0='0S' where id=1; -update noar tt set b1='Y8SP5F1GMZULHWT5' where id=1; -update noar ti set b1='Y8SP5F1GMZULHWT5' where id=1; -update noar tt set b2='YMWNAFC5PM7ZSZMTV' where id=1; -update noar ti set b2='YMWNAFC5PM7ZSZMTV' where id=1; -update noar tt set b0='GN102Z3FDV5KJ5F4RTSGNL08HN7O3' where id=2; -update noar ti set b0='GN102Z3FDV5KJ5F4RTSGNL08HN7O3' where id=2; -update noar tt set b1='HR1PNWRJGCBVZ5J9QN7' where id=2; -update noar ti set b1='HR1PNWRJGCBVZ5J9QN7' where id=2; -update noar tt set b2='URZ73ZIZO5F' where id=2; -update noar ti set b2='URZ73ZIZO5F' where id=2; -update noar tt set b0='NXPQ8ZCKPO96L' where id=3; -update noar ti set b0='NXPQ8ZCKPO96L' where id=3; -update noar tt set b1='72X8GEOOW9UULY7KVQ8EBBG' where id=3; -update noar ti set b1='72X8GEOOW9UULY7KVQ8EBBG' where id=3; -update noar tt set b2='42MODMQL9YNUQYX32P2HHROR1G5' where id=3; -update noar ti set b2='42MODMQL9YNUQYX32P2HHROR1G5' where id=3; -update noar tt set b0='DN3X7ZX2HT' where id=4; -update noar ti set b0='DN3X7ZX2HT' where id=4; -update noar tt set b1='3KYIR' where id=4; -update noar ti set b1='3KYIR' where id=4; -update noar tt set b2='BFEVJMPSSZK9FOUO' where id=4; -update noar ti set b2='BFEVJMPSSZK9FOUO' where id=4; -update noar tt set b0='TYBWSAX4R77B15BO' where id=5; -update noar ti set b0='TYBWSAX4R77B15BO' where id=5; -update noar tt set b1='6O8WFI6INKLBFTWPAJJNP26UXU' where id=5; -update noar ti set b1='6O8WFI6INKLBFTWPAJJNP26UXU' where id=5; -update noar tt set b2='SA97NF74WKQBKL1QU666AUUBDU3WAN' where id=5; -update noar ti set b2='SA97NF74WKQBKL1QU666AUUBDU3WAN' where id=5; -update noar tt set b0='JMXI7' where id=6; -update noar ti set b0='JMXI7' where id=6; -update noar tt set b1='5IKDW03TKYOG6RI84W6O' where id=6; -update noar ti set b1='5IKDW03TKYOG6RI84W6O' where id=6; -update noar tt set b2='AG' where id=6; -update noar ti set b2='AG' where id=6; -update noar tt set b0='4TQKM38CZJG1FXFV8FFB64IQGAT7P' where id=7; -update noar ti set b0='4TQKM38CZJG1FXFV8FFB64IQGAT7P' where id=7; -update noar tt set b1='OSEDUHZY6' where id=7; -update noar ti set b1='OSEDUHZY6' where id=7; -update noar tt set b2='9W64VN' where id=7; -update noar ti set b2='9W64VN' where id=7; -update noar tt set b0='MB3UDSMUYX25WW' where id=8; -update noar ti set b0='MB3UDSMUYX25WW' where id=8; -update noar tt set b1='TZIH9H9RV603LUG4TTF' where id=8; -update noar ti set b1='TZIH9H9RV603LUG4TTF' where id=8; -update noar tt set b2='1XIRUAKWKP63OY57X3HDDL5V' where id=8; -update noar ti set b2='1XIRUAKWKP63OY57X3HDDL5V' where id=8; -update noar tt set b0='KAL85OSD6' where id=9; -update noar ti set b0='KAL85OSD6' where id=9; -update noar tt set b1='3DIRBRFFUGO6SIP6JZ' where id=9; -update noar ti set b1='3DIRBRFFUGO6SIP6JZ' where id=9; -update noar tt set b2='T9YUML9EFXX96OTX' where id=9; -update noar ti set b2='T9YUML9EFXX96OTX' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -b0 longblob not null, -b1 mediumblob not null, -b2 text not null -) engine=tokudb; -insert into tt values (1,'','',''); -insert into tt values (2,'','',''); -insert into tt values (3,'','',''); -insert into tt values (4,'','',''); -insert into tt values (5,'','',''); -insert into tt values (6,'','',''); -insert into tt values (7,'','',''); -insert into tt values (8,'','',''); -insert into tt values (9,'','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set b0='3Z1O' where id=1; -update noar ti set b0='3Z1O' where id=1; -update noar tt set b1='K3RZVY05DRXGKFIS' where id=1; -update noar ti set b1='K3RZVY05DRXGKFIS' where id=1; -update noar tt set b2='7' where id=1; -update noar ti set b2='7' where id=1; -update noar tt set b0='6' where id=2; -update noar ti set b0='6' where id=2; -update noar tt set b1='4W1UFA6SHFBSR6BEF' where id=2; -update noar ti set b1='4W1UFA6SHFBSR6BEF' where id=2; -update noar tt set b2='4' where id=2; -update noar ti set b2='4' where id=2; -update noar tt set b0='68E5ZSX9SXXBRAU2QNMX8WFU2OQV' where id=3; -update noar ti set b0='68E5ZSX9SXXBRAU2QNMX8WFU2OQV' where id=3; -update noar tt set b1='ZXLJKNPT7ZDT0N8WKS' where id=3; -update noar ti set b1='ZXLJKNPT7ZDT0N8WKS' where id=3; -update noar tt set b2='AN7CC6P6S259WQ18QINXNOVBAB' where id=3; -update noar ti set b2='AN7CC6P6S259WQ18QINXNOVBAB' where id=3; -update noar tt set b0='A19RJCOIBN2' where id=4; -update noar ti set b0='A19RJCOIBN2' where id=4; -update noar tt set b1='K7HU9SO' where id=4; -update noar ti set b1='K7HU9SO' where id=4; -update noar tt set b2='Y3F5F6UD0K7' where id=4; -update noar ti set b2='Y3F5F6UD0K7' where id=4; -update noar tt set b0='V3AFEWALPM' where id=5; -update noar ti set b0='V3AFEWALPM' where id=5; -update noar tt set b1='EGY18YN7VO7IMW56N4ZEZFZPPITX' where id=5; -update noar ti set b1='EGY18YN7VO7IMW56N4ZEZFZPPITX' where id=5; -update noar tt set b2='RH' where id=5; -update noar ti set b2='RH' where id=5; -update noar tt set b0='3I3BWXW00BN2' where id=6; -update noar ti set b0='3I3BWXW00BN2' where id=6; -update noar tt set b1='YK8H7G4GVLP2DJTK' where id=6; -update noar ti set b1='YK8H7G4GVLP2DJTK' where id=6; -update noar tt set b2='TKOLZBD33YYLZHOCH1ENWJ4WUDJG9VF' where id=6; -update noar ti set b2='TKOLZBD33YYLZHOCH1ENWJ4WUDJG9VF' where id=6; -update noar tt set b0='7XDDUD7K0QUC' where id=7; -update noar ti set b0='7XDDUD7K0QUC' where id=7; -update noar tt set b1='12Y5TLV5S9DFULS' where id=7; -update noar ti set b1='12Y5TLV5S9DFULS' where id=7; -update noar tt set b2='Y45B2N81B4L4B5H6JPD5DMK67' where id=7; -update noar ti set b2='Y45B2N81B4L4B5H6JPD5DMK67' where id=7; -update noar tt set b0='E0JHKNVFAR3KPTD637' where id=8; -update noar ti set b0='E0JHKNVFAR3KPTD637' where id=8; -update noar tt set b1='PYMF51R3FE94PYB4R' where id=8; -update noar ti set b1='PYMF51R3FE94PYB4R' where id=8; -update noar tt set b2='G02HEX4P7' where id=8; -update noar ti set b2='G02HEX4P7' where id=8; -update noar tt set b0='KECZD' where id=9; -update noar ti set b0='KECZD' where id=9; -update noar tt set b1='WGYB464SCYUGEW8JNFHIX24SRE8H8MF' where id=9; -update noar ti set b1='WGYB464SCYUGEW8JNFHIX24SRE8H8MF' where id=9; -update noar tt set b2='XJST2DY' where id=9; -update noar ti set b2='XJST2DY' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -b0 longblob null, -b1 longblob null, -b2 tinyblob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set b0='R0HJK7N43O5' where id=1; -update noar ti set b0='R0HJK7N43O5' where id=1; -update noar tt set b1='67YBE4PLEFK' where id=1; -update noar ti set b1='67YBE4PLEFK' where id=1; -update noar tt set b2='928WX319S0DVW1E5O' where id=1; -update noar ti set b2='928WX319S0DVW1E5O' where id=1; -update noar tt set b0='ZN7XB' where id=2; -update noar ti set b0='ZN7XB' where id=2; -update noar tt set b1='W05UKU6L8' where id=2; -update noar ti set b1='W05UKU6L8' where id=2; -update noar tt set b2='ZT9Y8WIK1NALC6WR6AEQT0V0' where id=2; -update noar ti set b2='ZT9Y8WIK1NALC6WR6AEQT0V0' where id=2; -update noar tt set b0='LJBJTTIK39YLBVONT5NF7MA' where id=3; -update noar ti set b0='LJBJTTIK39YLBVONT5NF7MA' where id=3; -update noar tt set b1='GU75XPE8' where id=3; -update noar ti set b1='GU75XPE8' where id=3; -update noar tt set b2='VYGB51BKSA0UQEASS8UPM0SHRCSJ99N' where id=3; -update noar ti set b2='VYGB51BKSA0UQEASS8UPM0SHRCSJ99N' where id=3; -update noar tt set b0='R5RXTZ0RP7QC598B6V3' where id=4; -update noar ti set b0='R5RXTZ0RP7QC598B6V3' where id=4; -update noar tt set b1='2WE2S4YIMM4IQ9U' where id=4; -update noar ti set b1='2WE2S4YIMM4IQ9U' where id=4; -update noar tt set b2='AN02UDUSCHR' where id=4; -update noar ti set b2='AN02UDUSCHR' where id=4; -update noar tt set b0='BELMINE0LSCPU6KYF68V2P4PNZ7' where id=5; -update noar ti set b0='BELMINE0LSCPU6KYF68V2P4PNZ7' where id=5; -update noar tt set b1='1UH7BBSEOY' where id=5; -update noar ti set b1='1UH7BBSEOY' where id=5; -update noar tt set b2='JOB7D3J6NS0O4YFZKN' where id=5; -update noar ti set b2='JOB7D3J6NS0O4YFZKN' where id=5; -update noar tt set b0='VD9K1CA15D7VVWMM' where id=6; -update noar ti set b0='VD9K1CA15D7VVWMM' where id=6; -update noar tt set b1='96M5MVE8IFCKR438W9PE2L' where id=6; -update noar ti set b1='96M5MVE8IFCKR438W9PE2L' where id=6; -update noar tt set b2='XHENFSNRZZ2CCXVP5O' where id=6; -update noar ti set b2='XHENFSNRZZ2CCXVP5O' where id=6; -update noar tt set b0='6JWEQLBSCFJSHH8' where id=7; -update noar ti set b0='6JWEQLBSCFJSHH8' where id=7; -update noar tt set b1='ZS87OOWG6JI0WKEEWD' where id=7; -update noar ti set b1='ZS87OOWG6JI0WKEEWD' where id=7; -update noar tt set b2='RB3CBJ5PHG7OWQV94DUI04PSLHB8' where id=7; -update noar ti set b2='RB3CBJ5PHG7OWQV94DUI04PSLHB8' where id=7; -update noar tt set b0='LOAVEIF79OAJNXETED48D6J6F' where id=8; -update noar ti set b0='LOAVEIF79OAJNXETED48D6J6F' where id=8; -update noar tt set b1='KUXTEM64U080052KJSLRDZOQGR5M9H' where id=8; -update noar ti set b1='KUXTEM64U080052KJSLRDZOQGR5M9H' where id=8; -update noar tt set b2='7P3IHE7N' where id=8; -update noar ti set b2='7P3IHE7N' where id=8; -update noar tt set b0='GJJPZ0U8XA6ML5O6D02KH0' where id=9; -update noar ti set b0='GJJPZ0U8XA6ML5O6D02KH0' where id=9; -update noar tt set b1='CBVU8V2TPJ97924S64YJND0Z4MBA9NG5' where id=9; -update noar ti set b1='CBVU8V2TPJ97924S64YJND0Z4MBA9NG5' where id=9; -update noar tt set b2='L0IIEXDAY4K3K5J95XYI2QHQB3ON0A' where id=9; -update noar ti set b2='L0IIEXDAY4K3K5J95XYI2QHQB3ON0A' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -b0 longblob not null, -b1 longblob not null, -b2 tinyblob not null -) engine=tokudb; -insert into tt values (1,'','',''); -insert into tt values (2,'','',''); -insert into tt values (3,'','',''); -insert into tt values (4,'','',''); -insert into tt values (5,'','',''); -insert into tt values (6,'','',''); -insert into tt values (7,'','',''); -insert into tt values (8,'','',''); -insert into tt values (9,'','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set b0='O8WKUP0OJPHVO' where id=1; -update noar ti set b0='O8WKUP0OJPHVO' where id=1; -update noar tt set b1='KK9WTL5IKLWMW' where id=1; -update noar ti set b1='KK9WTL5IKLWMW' where id=1; -update noar tt set b2='HVQUD0PE0XWBN1MWD' where id=1; -update noar ti set b2='HVQUD0PE0XWBN1MWD' where id=1; -update noar tt set b0='HM3G7ACS9SU0YAWOPG' where id=2; -update noar ti set b0='HM3G7ACS9SU0YAWOPG' where id=2; -update noar tt set b1='JLHCSX7S69K6B86LCDKBL' where id=2; -update noar ti set b1='JLHCSX7S69K6B86LCDKBL' where id=2; -update noar tt set b2='8A4V7OQHV57EV9LQ17CJQQ' where id=2; -update noar ti set b2='8A4V7OQHV57EV9LQ17CJQQ' where id=2; -update noar tt set b0='C3W9X9RDX3OCY1BNWGDJVL8BRZ7E7B' where id=3; -update noar ti set b0='C3W9X9RDX3OCY1BNWGDJVL8BRZ7E7B' where id=3; -update noar tt set b1='H7ZHP5YILHI' where id=3; -update noar ti set b1='H7ZHP5YILHI' where id=3; -update noar tt set b2='CJNLQD2EWZ0DD03PC' where id=3; -update noar ti set b2='CJNLQD2EWZ0DD03PC' where id=3; -update noar tt set b0='TNIHXTKU8YA8K2G1BUSGIPM98GHP6' where id=4; -update noar ti set b0='TNIHXTKU8YA8K2G1BUSGIPM98GHP6' where id=4; -update noar tt set b1='8' where id=4; -update noar ti set b1='8' where id=4; -update noar tt set b2='Y2RP22TQM8EZC6IK2XR' where id=4; -update noar ti set b2='Y2RP22TQM8EZC6IK2XR' where id=4; -update noar tt set b0='JWIMKLKO' where id=5; -update noar ti set b0='JWIMKLKO' where id=5; -update noar tt set b1='DIIDNP0' where id=5; -update noar ti set b1='DIIDNP0' where id=5; -update noar tt set b2='7GG5758KKWFWZZS8BI282Q3TY' where id=5; -update noar ti set b2='7GG5758KKWFWZZS8BI282Q3TY' where id=5; -update noar tt set b0='HRU8N95LXV2L4BEP6Z3ACGNGI0OAFW9H' where id=6; -update noar ti set b0='HRU8N95LXV2L4BEP6Z3ACGNGI0OAFW9H' where id=6; -update noar tt set b1='YRHIWZFD59A7MQDYM0M' where id=6; -update noar ti set b1='YRHIWZFD59A7MQDYM0M' where id=6; -update noar tt set b2='M7MIYJRVFCZ8S' where id=6; -update noar ti set b2='M7MIYJRVFCZ8S' where id=6; -update noar tt set b0='4LF6QFJ49V1FWXX3P' where id=7; -update noar ti set b0='4LF6QFJ49V1FWXX3P' where id=7; -update noar tt set b1='B' where id=7; -update noar ti set b1='B' where id=7; -update noar tt set b2='Z7VKCPZWJYUA51NNSZ4I57RMT' where id=7; -update noar ti set b2='Z7VKCPZWJYUA51NNSZ4I57RMT' where id=7; -update noar tt set b0='O' where id=8; -update noar ti set b0='O' where id=8; -update noar tt set b1='79JWR7V3O' where id=8; -update noar ti set b1='79JWR7V3O' where id=8; -update noar tt set b2='E6KLVRC66LD60AMTJFWRPGRCJM' where id=8; -update noar ti set b2='E6KLVRC66LD60AMTJFWRPGRCJM' where id=8; -update noar tt set b0='KCCDWV' where id=9; -update noar ti set b0='KCCDWV' where id=9; -update noar tt set b1='XWQK9QSHLF1TOX5ZM54JS6S7UTWU' where id=9; -update noar ti set b1='XWQK9QSHLF1TOX5ZM54JS6S7UTWU' where id=9; -update noar tt set b2='4B9XB25G1LF7N8535CUPD003IH51L' where id=9; -update noar ti set b2='4B9XB25G1LF7N8535CUPD003IH51L' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -b0 longblob null, -b1 longblob null, -b2 blob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set b0='M6' where id=1; -update noar ti set b0='M6' where id=1; -update noar tt set b1='6WB5YDKXASEESOEIB0CGQ9FQB9BM0' where id=1; -update noar ti set b1='6WB5YDKXASEESOEIB0CGQ9FQB9BM0' where id=1; -update noar tt set b2='MWRV1ZC71KY' where id=1; -update noar ti set b2='MWRV1ZC71KY' where id=1; -update noar tt set b0='P' where id=2; -update noar ti set b0='P' where id=2; -update noar tt set b1='PBG23HPBYPJFWGGTTVQAVA1221A' where id=2; -update noar ti set b1='PBG23HPBYPJFWGGTTVQAVA1221A' where id=2; -update noar tt set b2='N5ODQH4CJNW3Y043G748CKFM55' where id=2; -update noar ti set b2='N5ODQH4CJNW3Y043G748CKFM55' where id=2; -update noar tt set b0='JFGNBFXQZY41RCK7EEZ3UMB5YS' where id=3; -update noar ti set b0='JFGNBFXQZY41RCK7EEZ3UMB5YS' where id=3; -update noar tt set b1='KYS6VKGUWE0O' where id=3; -update noar ti set b1='KYS6VKGUWE0O' where id=3; -update noar tt set b2='24KE6M2' where id=3; -update noar ti set b2='24KE6M2' where id=3; -update noar tt set b0='9PE715FW0LW8' where id=4; -update noar ti set b0='9PE715FW0LW8' where id=4; -update noar tt set b1='6S4QWFKRY7CQCHRTE8' where id=4; -update noar ti set b1='6S4QWFKRY7CQCHRTE8' where id=4; -update noar tt set b2='Z6HYGVQMIH8ZZRVIZCQH2517JVAM6WAF' where id=4; -update noar ti set b2='Z6HYGVQMIH8ZZRVIZCQH2517JVAM6WAF' where id=4; -update noar tt set b0='0' where id=5; -update noar ti set b0='0' where id=5; -update noar tt set b1='JM8G7EZOUK' where id=5; -update noar ti set b1='JM8G7EZOUK' where id=5; -update noar tt set b2='J2QLZXW1BS77WRCPFWDK0R7R40XWL5G' where id=5; -update noar ti set b2='J2QLZXW1BS77WRCPFWDK0R7R40XWL5G' where id=5; -update noar tt set b0='64WAV8VYYW4SJ9AXC7GAYXV66JT' where id=6; -update noar ti set b0='64WAV8VYYW4SJ9AXC7GAYXV66JT' where id=6; -update noar tt set b1='IRCO0S0B62VWHKKY4LQ' where id=6; -update noar ti set b1='IRCO0S0B62VWHKKY4LQ' where id=6; -update noar tt set b2='YE7TSIK8J3T6PPJYK5HXWORSGSH' where id=6; -update noar ti set b2='YE7TSIK8J3T6PPJYK5HXWORSGSH' where id=6; -update noar tt set b0='UQ2LESGHE' where id=7; -update noar ti set b0='UQ2LESGHE' where id=7; -update noar tt set b1='ZNQKKJGEPZX7KHW0QKJ5J3G62H' where id=7; -update noar ti set b1='ZNQKKJGEPZX7KHW0QKJ5J3G62H' where id=7; -update noar tt set b2='1U' where id=7; -update noar ti set b2='1U' where id=7; -update noar tt set b0='EGLLD3VTQG94' where id=8; -update noar ti set b0='EGLLD3VTQG94' where id=8; -update noar tt set b1='OFPKB092PQ' where id=8; -update noar ti set b1='OFPKB092PQ' where id=8; -update noar tt set b2='27FUKE1Q4N0K9VMYZNBNVN0TZ1' where id=8; -update noar ti set b2='27FUKE1Q4N0K9VMYZNBNVN0TZ1' where id=8; -update noar tt set b0='O46O' where id=9; -update noar ti set b0='O46O' where id=9; -update noar tt set b1='FCMBEMW0OFUVPO4HFG1' where id=9; -update noar ti set b1='FCMBEMW0OFUVPO4HFG1' where id=9; -update noar tt set b2='8HFH5IXT25D51NJ2' where id=9; -update noar ti set b2='8HFH5IXT25D51NJ2' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -b0 longblob not null, -b1 longblob not null, -b2 blob not null -) engine=tokudb; -insert into tt values (1,'','',''); -insert into tt values (2,'','',''); -insert into tt values (3,'','',''); -insert into tt values (4,'','',''); -insert into tt values (5,'','',''); -insert into tt values (6,'','',''); -insert into tt values (7,'','',''); -insert into tt values (8,'','',''); -insert into tt values (9,'','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set b0='LOIGPTMH2X0PVMR' where id=1; -update noar ti set b0='LOIGPTMH2X0PVMR' where id=1; -update noar tt set b1='57RGHKZE8M3OXGE' where id=1; -update noar ti set b1='57RGHKZE8M3OXGE' where id=1; -update noar tt set b2='LJHDI' where id=1; -update noar ti set b2='LJHDI' where id=1; -update noar tt set b0='9Y08OP0C3TPM0I67GKS52J9IBDWESIQ5' where id=2; -update noar ti set b0='9Y08OP0C3TPM0I67GKS52J9IBDWESIQ5' where id=2; -update noar tt set b1='63JJSAJFUBT00N5A63FV4' where id=2; -update noar ti set b1='63JJSAJFUBT00N5A63FV4' where id=2; -update noar tt set b2='TMQ47D4PZ7BKVK' where id=2; -update noar ti set b2='TMQ47D4PZ7BKVK' where id=2; -update noar tt set b0='7AFUGYCRF7ITUP9UBU9RQV' where id=3; -update noar ti set b0='7AFUGYCRF7ITUP9UBU9RQV' where id=3; -update noar tt set b1='XUTWM' where id=3; -update noar ti set b1='XUTWM' where id=3; -update noar tt set b2='EMGLMKTYRPSOI2OOULQZ' where id=3; -update noar ti set b2='EMGLMKTYRPSOI2OOULQZ' where id=3; -update noar tt set b0='0JE8HS' where id=4; -update noar ti set b0='0JE8HS' where id=4; -update noar tt set b1='YH0VA0DYH3F0A266D0TH1X5DP1W3CAT9' where id=4; -update noar ti set b1='YH0VA0DYH3F0A266D0TH1X5DP1W3CAT9' where id=4; -update noar tt set b2='6N33REG8SD4FHOS' where id=4; -update noar ti set b2='6N33REG8SD4FHOS' where id=4; -update noar tt set b0='MD4KNI3O3YPL3RPZPRVKL03' where id=5; -update noar ti set b0='MD4KNI3O3YPL3RPZPRVKL03' where id=5; -update noar tt set b1='RORK4YSJCSVRT' where id=5; -update noar ti set b1='RORK4YSJCSVRT' where id=5; -update noar tt set b2='C8ID8J2N7' where id=5; -update noar ti set b2='C8ID8J2N7' where id=5; -update noar tt set b0='ZU8F3BTWZG3P4018BBZPC' where id=6; -update noar ti set b0='ZU8F3BTWZG3P4018BBZPC' where id=6; -update noar tt set b1='0Z1FIOWA' where id=6; -update noar ti set b1='0Z1FIOWA' where id=6; -update noar tt set b2='TSGTY6PRQP4AT1HSNAO5WFB00JIQ2' where id=6; -update noar ti set b2='TSGTY6PRQP4AT1HSNAO5WFB00JIQ2' where id=6; -update noar tt set b0='N07TZK' where id=7; -update noar ti set b0='N07TZK' where id=7; -update noar tt set b1='GQ9OF7L2C' where id=7; -update noar ti set b1='GQ9OF7L2C' where id=7; -update noar tt set b2='6DZ2EY' where id=7; -update noar ti set b2='6DZ2EY' where id=7; -update noar tt set b0='T2QJSVQC4C1C6' where id=8; -update noar ti set b0='T2QJSVQC4C1C6' where id=8; -update noar tt set b1='DAO' where id=8; -update noar ti set b1='DAO' where id=8; -update noar tt set b2='OGCR9' where id=8; -update noar ti set b2='OGCR9' where id=8; -update noar tt set b0='2M' where id=9; -update noar ti set b0='2M' where id=9; -update noar tt set b1='Y4UB9DLPJVU77PS0EOENBQ5KZ' where id=9; -update noar ti set b1='Y4UB9DLPJVU77PS0EOENBQ5KZ' where id=9; -update noar tt set b2='05TWF3FI3IU6GS0VCVY5E4R9VJHT' where id=9; -update noar ti set b2='05TWF3FI3IU6GS0VCVY5E4R9VJHT' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -b0 longblob null, -b1 longblob null, -b2 mediumblob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set b0='TCW6EBVP9UP9QGMUS51KORF' where id=1; -update noar ti set b0='TCW6EBVP9UP9QGMUS51KORF' where id=1; -update noar tt set b1='8C3LUI4LKPTXEZLKMN55GYB' where id=1; -update noar ti set b1='8C3LUI4LKPTXEZLKMN55GYB' where id=1; -update noar tt set b2='42B6N2JQJNSCLKPA4PS3NL' where id=1; -update noar ti set b2='42B6N2JQJNSCLKPA4PS3NL' where id=1; -update noar tt set b0='QVSDA9OP9GA1497N' where id=2; -update noar ti set b0='QVSDA9OP9GA1497N' where id=2; -update noar tt set b1='O7VYDWML6GQR47VSOGLOOXYGT7NV' where id=2; -update noar ti set b1='O7VYDWML6GQR47VSOGLOOXYGT7NV' where id=2; -update noar tt set b2='HOSWBF1OKMCPINYL8ZSPFZJ' where id=2; -update noar ti set b2='HOSWBF1OKMCPINYL8ZSPFZJ' where id=2; -update noar tt set b0='Q8LK2JFAMAA1Q7GHC9VUUIZ12D' where id=3; -update noar ti set b0='Q8LK2JFAMAA1Q7GHC9VUUIZ12D' where id=3; -update noar tt set b1='I4N6RHTNI4QZELU0O194UHQ29R4O' where id=3; -update noar ti set b1='I4N6RHTNI4QZELU0O194UHQ29R4O' where id=3; -update noar tt set b2='1TPSL' where id=3; -update noar ti set b2='1TPSL' where id=3; -update noar tt set b0='OZRGLMGJUUDWXHU1TK' where id=4; -update noar ti set b0='OZRGLMGJUUDWXHU1TK' where id=4; -update noar tt set b1='MJ60Q5R2WH0MNTO1ORB230HXDL84L' where id=4; -update noar ti set b1='MJ60Q5R2WH0MNTO1ORB230HXDL84L' where id=4; -update noar tt set b2='041ND2IUG5F4RMG58N5' where id=4; -update noar ti set b2='041ND2IUG5F4RMG58N5' where id=4; -update noar tt set b0='SNZE32A' where id=5; -update noar ti set b0='SNZE32A' where id=5; -update noar tt set b1='KE66HRYN6CR' where id=5; -update noar ti set b1='KE66HRYN6CR' where id=5; -update noar tt set b2='KEZMOKYAOMVCIST330EO2PWW7' where id=5; -update noar ti set b2='KEZMOKYAOMVCIST330EO2PWW7' where id=5; -update noar tt set b0='9P2XB5CPWOZWV3GYYFI0RW0U4B63NDI8' where id=6; -update noar ti set b0='9P2XB5CPWOZWV3GYYFI0RW0U4B63NDI8' where id=6; -update noar tt set b1='KH1XS0JT' where id=6; -update noar ti set b1='KH1XS0JT' where id=6; -update noar tt set b2='USXE69YTV7FHGNQ' where id=6; -update noar ti set b2='USXE69YTV7FHGNQ' where id=6; -update noar tt set b0='DRPVW0RCXA8MDIBI' where id=7; -update noar ti set b0='DRPVW0RCXA8MDIBI' where id=7; -update noar tt set b1='8HBE24DW4SMQAR684WBOG8AOW20ZW1' where id=7; -update noar ti set b1='8HBE24DW4SMQAR684WBOG8AOW20ZW1' where id=7; -update noar tt set b2='T5Q9A00' where id=7; -update noar ti set b2='T5Q9A00' where id=7; -update noar tt set b0='AEJTADFSQO58GJ8RUWL8QF77Y679G9' where id=8; -update noar ti set b0='AEJTADFSQO58GJ8RUWL8QF77Y679G9' where id=8; -update noar tt set b1='VYCQ17FLWVL' where id=8; -update noar ti set b1='VYCQ17FLWVL' where id=8; -update noar tt set b2='ZT8NI2P9IXQW7ABNZDBG3' where id=8; -update noar ti set b2='ZT8NI2P9IXQW7ABNZDBG3' where id=8; -update noar tt set b0='YN1W59WFGNGAXBYCTPZSB' where id=9; -update noar ti set b0='YN1W59WFGNGAXBYCTPZSB' where id=9; -update noar tt set b1='K1K4E0L52QD4Z2S2XT3P0PAW0D51P5' where id=9; -update noar ti set b1='K1K4E0L52QD4Z2S2XT3P0PAW0D51P5' where id=9; -update noar tt set b2='QX0U6J6ES7HECXBYHZG221SVAQC14' where id=9; -update noar ti set b2='QX0U6J6ES7HECXBYHZG221SVAQC14' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -b0 longblob not null, -b1 longblob not null, -b2 mediumblob not null -) engine=tokudb; -insert into tt values (1,'','',''); -insert into tt values (2,'','',''); -insert into tt values (3,'','',''); -insert into tt values (4,'','',''); -insert into tt values (5,'','',''); -insert into tt values (6,'','',''); -insert into tt values (7,'','',''); -insert into tt values (8,'','',''); -insert into tt values (9,'','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set b0='XHH8E0XSN2I4NSK8A5DVRCP' where id=1; -update noar ti set b0='XHH8E0XSN2I4NSK8A5DVRCP' where id=1; -update noar tt set b1='AZERK72OLM48' where id=1; -update noar ti set b1='AZERK72OLM48' where id=1; -update noar tt set b2='FKE252EO' where id=1; -update noar ti set b2='FKE252EO' where id=1; -update noar tt set b0='PP9EED' where id=2; -update noar ti set b0='PP9EED' where id=2; -update noar tt set b1='5R' where id=2; -update noar ti set b1='5R' where id=2; -update noar tt set b2='4I6XG7D5R37RG3LU00J80' where id=2; -update noar ti set b2='4I6XG7D5R37RG3LU00J80' where id=2; -update noar tt set b0='HY8A2JS8YGQ1X950WNQQV' where id=3; -update noar ti set b0='HY8A2JS8YGQ1X950WNQQV' where id=3; -update noar tt set b1='70MXOM7E5EFKICV4ZZ1VXRXYBXFBWV5' where id=3; -update noar ti set b1='70MXOM7E5EFKICV4ZZ1VXRXYBXFBWV5' where id=3; -update noar tt set b2='KH' where id=3; -update noar ti set b2='KH' where id=3; -update noar tt set b0='CLUWPWGVV0VQS70AZXP4L' where id=4; -update noar ti set b0='CLUWPWGVV0VQS70AZXP4L' where id=4; -update noar tt set b1='6IBA3QKDFC86' where id=4; -update noar ti set b1='6IBA3QKDFC86' where id=4; -update noar tt set b2='8RAKOD46SSM011UG402AE' where id=4; -update noar ti set b2='8RAKOD46SSM011UG402AE' where id=4; -update noar tt set b0='47OOAO3OY7F71LSYTSH8G2CD42IVVGLD' where id=5; -update noar ti set b0='47OOAO3OY7F71LSYTSH8G2CD42IVVGLD' where id=5; -update noar tt set b1='5DCEX' where id=5; -update noar ti set b1='5DCEX' where id=5; -update noar tt set b2='936' where id=5; -update noar ti set b2='936' where id=5; -update noar tt set b0='OKXI7BSNF8VFXV9071ENG9E8RPM3' where id=6; -update noar ti set b0='OKXI7BSNF8VFXV9071ENG9E8RPM3' where id=6; -update noar tt set b1='ZNVFE7YGFHV' where id=6; -update noar ti set b1='ZNVFE7YGFHV' where id=6; -update noar tt set b2='48SD6JZNU6ZCBARXSSAZ4XCAAP' where id=6; -update noar ti set b2='48SD6JZNU6ZCBARXSSAZ4XCAAP' where id=6; -update noar tt set b0='PO5Y4CKD9CEUJK3UKCSJJ' where id=7; -update noar ti set b0='PO5Y4CKD9CEUJK3UKCSJJ' where id=7; -update noar tt set b1='GTMT0N7G0SN49C86N6XE1Y5R3HBCN' where id=7; -update noar ti set b1='GTMT0N7G0SN49C86N6XE1Y5R3HBCN' where id=7; -update noar tt set b2='EXI9CZZ7HTL9YDLMJNEGUSJU6' where id=7; -update noar ti set b2='EXI9CZZ7HTL9YDLMJNEGUSJU6' where id=7; -update noar tt set b0='GT3GZU2LPMI4HKCEHZZUFGLEC0O' where id=8; -update noar ti set b0='GT3GZU2LPMI4HKCEHZZUFGLEC0O' where id=8; -update noar tt set b1='BFWH8096KEUJPQHYFIMTTYU8WEY' where id=8; -update noar ti set b1='BFWH8096KEUJPQHYFIMTTYU8WEY' where id=8; -update noar tt set b2='S' where id=8; -update noar ti set b2='S' where id=8; -update noar tt set b0='1K45W48ID7H1EDY' where id=9; -update noar ti set b0='1K45W48ID7H1EDY' where id=9; -update noar tt set b1='GYLG39VE0JBO1MB5QLWTY' where id=9; -update noar ti set b1='GYLG39VE0JBO1MB5QLWTY' where id=9; -update noar tt set b2='RC0IPBSC' where id=9; -update noar ti set b2='RC0IPBSC' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -b0 longblob null, -b1 longblob null, -b2 longblob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set b0='VH69R' where id=1; -update noar ti set b0='VH69R' where id=1; -update noar tt set b1='1' where id=1; -update noar ti set b1='1' where id=1; -update noar tt set b2='KU0KOINH1J33J' where id=1; -update noar ti set b2='KU0KOINH1J33J' where id=1; -update noar tt set b0='3J39WA7HOWMUDVO4TD5R5JAXAR' where id=2; -update noar ti set b0='3J39WA7HOWMUDVO4TD5R5JAXAR' where id=2; -update noar tt set b1='2GEGVMH7T3K' where id=2; -update noar ti set b1='2GEGVMH7T3K' where id=2; -update noar tt set b2='BHLG33DTOJTJ2I15' where id=2; -update noar ti set b2='BHLG33DTOJTJ2I15' where id=2; -update noar tt set b0='2QLPTOEITFGJJSVACZ2' where id=3; -update noar ti set b0='2QLPTOEITFGJJSVACZ2' where id=3; -update noar tt set b1='KXCDLQIKEI0YCWT' where id=3; -update noar ti set b1='KXCDLQIKEI0YCWT' where id=3; -update noar tt set b2='AOM956HPGAV178JJ4LBQJOTA' where id=3; -update noar ti set b2='AOM956HPGAV178JJ4LBQJOTA' where id=3; -update noar tt set b0='M1KU9H' where id=4; -update noar ti set b0='M1KU9H' where id=4; -update noar tt set b1='OICW0BW5CU2C' where id=4; -update noar ti set b1='OICW0BW5CU2C' where id=4; -update noar tt set b2='M' where id=4; -update noar ti set b2='M' where id=4; -update noar tt set b0='RAEZSIUWDXWC8' where id=5; -update noar ti set b0='RAEZSIUWDXWC8' where id=5; -update noar tt set b1='PKCRYIL7FQP8UOHPHCI7' where id=5; -update noar ti set b1='PKCRYIL7FQP8UOHPHCI7' where id=5; -update noar tt set b2='PM3S0ZZABNWW2SJSMJR7QRGZZW' where id=5; -update noar ti set b2='PM3S0ZZABNWW2SJSMJR7QRGZZW' where id=5; -update noar tt set b0='Q1VR6YF' where id=6; -update noar ti set b0='Q1VR6YF' where id=6; -update noar tt set b1='ZF8PIXB4QVUL' where id=6; -update noar ti set b1='ZF8PIXB4QVUL' where id=6; -update noar tt set b2='9PIY24FPU2NLO5DFR' where id=6; -update noar ti set b2='9PIY24FPU2NLO5DFR' where id=6; -update noar tt set b0='R8ELXK9S618HG1NC6KRDKRVYJCNL1I' where id=7; -update noar ti set b0='R8ELXK9S618HG1NC6KRDKRVYJCNL1I' where id=7; -update noar tt set b1='IQQRKI9KAR7FMSNYBP0T' where id=7; -update noar ti set b1='IQQRKI9KAR7FMSNYBP0T' where id=7; -update noar tt set b2='OXF525BKZ3CHRMS9HIOHY' where id=7; -update noar ti set b2='OXF525BKZ3CHRMS9HIOHY' where id=7; -update noar tt set b0='KSJGXCHACNFN7AM' where id=8; -update noar ti set b0='KSJGXCHACNFN7AM' where id=8; -update noar tt set b1='4QBJRH2QXN95JFQM4' where id=8; -update noar ti set b1='4QBJRH2QXN95JFQM4' where id=8; -update noar tt set b2='SLG1MNLMALG3T5' where id=8; -update noar ti set b2='SLG1MNLMALG3T5' where id=8; -update noar tt set b0='0SUC73T9V41OF0YYW8BKEYNGA3L' where id=9; -update noar ti set b0='0SUC73T9V41OF0YYW8BKEYNGA3L' where id=9; -update noar tt set b1='UMU77' where id=9; -update noar ti set b1='UMU77' where id=9; -update noar tt set b2='2VD77658L33TDFZ267T51S9OQ0A8' where id=9; -update noar ti set b2='2VD77658L33TDFZ267T51S9OQ0A8' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -b0 longblob not null, -b1 longblob not null, -b2 longblob not null -) engine=tokudb; -insert into tt values (1,'','',''); -insert into tt values (2,'','',''); -insert into tt values (3,'','',''); -insert into tt values (4,'','',''); -insert into tt values (5,'','',''); -insert into tt values (6,'','',''); -insert into tt values (7,'','',''); -insert into tt values (8,'','',''); -insert into tt values (9,'','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set b0='RX' where id=1; -update noar ti set b0='RX' where id=1; -update noar tt set b1='7SFJKQ7NGLUF72G' where id=1; -update noar ti set b1='7SFJKQ7NGLUF72G' where id=1; -update noar tt set b2='0PS3ZQ82RIRXU3QZ2HXT7JT25' where id=1; -update noar ti set b2='0PS3ZQ82RIRXU3QZ2HXT7JT25' where id=1; -update noar tt set b0='P8IPKEVX6GG08UY4X1LR3XRPHOO1ODHH' where id=2; -update noar ti set b0='P8IPKEVX6GG08UY4X1LR3XRPHOO1ODHH' where id=2; -update noar tt set b1='XK6IA9WF7UVL7WSTM' where id=2; -update noar ti set b1='XK6IA9WF7UVL7WSTM' where id=2; -update noar tt set b2='VDIY64XOB7BLIJXFRI721NH' where id=2; -update noar ti set b2='VDIY64XOB7BLIJXFRI721NH' where id=2; -update noar tt set b0='J821WCG' where id=3; -update noar ti set b0='J821WCG' where id=3; -update noar tt set b1='80EX56MFC7IUZH92Y6JGYVH4U8' where id=3; -update noar ti set b1='80EX56MFC7IUZH92Y6JGYVH4U8' where id=3; -update noar tt set b2='XHS44SE0OG7VZ6AW6S431GUDH' where id=3; -update noar ti set b2='XHS44SE0OG7VZ6AW6S431GUDH' where id=3; -update noar tt set b0='EH3NET' where id=4; -update noar ti set b0='EH3NET' where id=4; -update noar tt set b1='TRR4VRBAHIKACQK9POT0H9SH0S1UEI4K' where id=4; -update noar ti set b1='TRR4VRBAHIKACQK9POT0H9SH0S1UEI4K' where id=4; -update noar tt set b2='PTOXLSHDOZVJ4LWT' where id=4; -update noar ti set b2='PTOXLSHDOZVJ4LWT' where id=4; -update noar tt set b0='GYZI' where id=5; -update noar ti set b0='GYZI' where id=5; -update noar tt set b1='YAEMFXIFLF4' where id=5; -update noar ti set b1='YAEMFXIFLF4' where id=5; -update noar tt set b2='ZVSIY6IF0' where id=5; -update noar ti set b2='ZVSIY6IF0' where id=5; -update noar tt set b0='IXOY98PLQ9OS9WUVBI397UQTN' where id=6; -update noar ti set b0='IXOY98PLQ9OS9WUVBI397UQTN' where id=6; -update noar tt set b1='XNSK1FW6XABO1HJGHYMRT' where id=6; -update noar ti set b1='XNSK1FW6XABO1HJGHYMRT' where id=6; -update noar tt set b2='B2HUPDHI42ICSX9KTZUD2EO4' where id=6; -update noar ti set b2='B2HUPDHI42ICSX9KTZUD2EO4' where id=6; -update noar tt set b0='1KV9NUL8DBR1699UPBH8FY8VZMKO' where id=7; -update noar ti set b0='1KV9NUL8DBR1699UPBH8FY8VZMKO' where id=7; -update noar tt set b1='7MAVLJXTDOQT5W5OW7FLCE4MC8558HGM' where id=7; -update noar ti set b1='7MAVLJXTDOQT5W5OW7FLCE4MC8558HGM' where id=7; -update noar tt set b2='7F99MF82OI64IFU37Q7DHASXMIRU' where id=7; -update noar ti set b2='7F99MF82OI64IFU37Q7DHASXMIRU' where id=7; -update noar tt set b0='OW0FE9S45ZTL5NBR7952SMGH0A5GYGNB' where id=8; -update noar ti set b0='OW0FE9S45ZTL5NBR7952SMGH0A5GYGNB' where id=8; -update noar tt set b1='KHZEVA47Y3G3EB4TTG47L890L8SVH' where id=8; -update noar ti set b1='KHZEVA47Y3G3EB4TTG47L890L8SVH' where id=8; -update noar tt set b2='3YYY52H1O9Z7TDJ63UT8' where id=8; -update noar ti set b2='3YYY52H1O9Z7TDJ63UT8' where id=8; -update noar tt set b0='KV5CBWGS2' where id=9; -update noar ti set b0='KV5CBWGS2' where id=9; -update noar tt set b1='K01P1ADJHBX9BCU2H579SUMF' where id=9; -update noar ti set b1='K01P1ADJHBX9BCU2H579SUMF' where id=9; -update noar tt set b2='ZTM617SXJQO962JQILLLJ51' where id=9; -update noar ti set b2='ZTM617SXJQO962JQILLLJ51' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -b0 longblob null, -b1 longblob null, -b2 text null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set b0='2WIKWBMMPT0BTDOSXDMBT0C' where id=1; -update noar ti set b0='2WIKWBMMPT0BTDOSXDMBT0C' where id=1; -update noar tt set b1='TGLJ1KJOGBEQKJP2LL' where id=1; -update noar ti set b1='TGLJ1KJOGBEQKJP2LL' where id=1; -update noar tt set b2='XKOKP4L285RBK8' where id=1; -update noar ti set b2='XKOKP4L285RBK8' where id=1; -update noar tt set b0='100MFWVG1L' where id=2; -update noar ti set b0='100MFWVG1L' where id=2; -update noar tt set b1='9XAKCPD3' where id=2; -update noar ti set b1='9XAKCPD3' where id=2; -update noar tt set b2='FUYFBZRR5TFCOHPC' where id=2; -update noar ti set b2='FUYFBZRR5TFCOHPC' where id=2; -update noar tt set b0='7I15R7YPIB8HO7OAJM5F0KL' where id=3; -update noar ti set b0='7I15R7YPIB8HO7OAJM5F0KL' where id=3; -update noar tt set b1='SU' where id=3; -update noar ti set b1='SU' where id=3; -update noar tt set b2='LP63XBPZ6R9SA6TFXL' where id=3; -update noar ti set b2='LP63XBPZ6R9SA6TFXL' where id=3; -update noar tt set b0='M70TWLABYGZ5HTH2DY4EZR' where id=4; -update noar ti set b0='M70TWLABYGZ5HTH2DY4EZR' where id=4; -update noar tt set b1='KX2I8N7TUCJRTF6E5T8TCEBY8XSE74CH' where id=4; -update noar ti set b1='KX2I8N7TUCJRTF6E5T8TCEBY8XSE74CH' where id=4; -update noar tt set b2='78Y7C6Q7IPA5X0VGSY4X5U70JSN9X8' where id=4; -update noar ti set b2='78Y7C6Q7IPA5X0VGSY4X5U70JSN9X8' where id=4; -update noar tt set b0='TRQ31J29CXMTFFQR1BRKZ4OLS3VNJ' where id=5; -update noar ti set b0='TRQ31J29CXMTFFQR1BRKZ4OLS3VNJ' where id=5; -update noar tt set b1='9KRQKLE71' where id=5; -update noar ti set b1='9KRQKLE71' where id=5; -update noar tt set b2='CW8BYP2AK41K43IGUP' where id=5; -update noar ti set b2='CW8BYP2AK41K43IGUP' where id=5; -update noar tt set b0='X3UO96CRHWBGZAY9H98S2' where id=6; -update noar ti set b0='X3UO96CRHWBGZAY9H98S2' where id=6; -update noar tt set b1='2MLWK3MDDBZ6' where id=6; -update noar ti set b1='2MLWK3MDDBZ6' where id=6; -update noar tt set b2='D7GGF1B6GJBUQK91TZZYFAWXN8ZJ' where id=6; -update noar ti set b2='D7GGF1B6GJBUQK91TZZYFAWXN8ZJ' where id=6; -update noar tt set b0='R9H5MTFZ3ZT80MCI' where id=7; -update noar ti set b0='R9H5MTFZ3ZT80MCI' where id=7; -update noar tt set b1='FXZSVI7TP' where id=7; -update noar ti set b1='FXZSVI7TP' where id=7; -update noar tt set b2='ON84ZS5BOJOYDICM' where id=7; -update noar ti set b2='ON84ZS5BOJOYDICM' where id=7; -update noar tt set b0='MDL5FYSRTB1HXSLSTW' where id=8; -update noar ti set b0='MDL5FYSRTB1HXSLSTW' where id=8; -update noar tt set b1='1HYNFP' where id=8; -update noar ti set b1='1HYNFP' where id=8; -update noar tt set b2='6FW32QWAD5QAUSHGFSAGBV3NW2Y4' where id=8; -update noar ti set b2='6FW32QWAD5QAUSHGFSAGBV3NW2Y4' where id=8; -update noar tt set b0='E9ZPTE6UYGOZN71HT7RKNRATSMG7T' where id=9; -update noar ti set b0='E9ZPTE6UYGOZN71HT7RKNRATSMG7T' where id=9; -update noar tt set b1='Z35NU7RZK9S0DIKZBDGRFH' where id=9; -update noar ti set b1='Z35NU7RZK9S0DIKZBDGRFH' where id=9; -update noar tt set b2='46GB' where id=9; -update noar ti set b2='46GB' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -b0 longblob not null, -b1 longblob not null, -b2 text not null -) engine=tokudb; -insert into tt values (1,'','',''); -insert into tt values (2,'','',''); -insert into tt values (3,'','',''); -insert into tt values (4,'','',''); -insert into tt values (5,'','',''); -insert into tt values (6,'','',''); -insert into tt values (7,'','',''); -insert into tt values (8,'','',''); -insert into tt values (9,'','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set b0='BH' where id=1; -update noar ti set b0='BH' where id=1; -update noar tt set b1='XX7RVUO4SIWCIVA7DMFFN3V6U' where id=1; -update noar ti set b1='XX7RVUO4SIWCIVA7DMFFN3V6U' where id=1; -update noar tt set b2='3LKF5' where id=1; -update noar ti set b2='3LKF5' where id=1; -update noar tt set b0='C8IJZ8LM08' where id=2; -update noar ti set b0='C8IJZ8LM08' where id=2; -update noar tt set b1='XPW4AV1YV3V' where id=2; -update noar ti set b1='XPW4AV1YV3V' where id=2; -update noar tt set b2='R3M39UVD5VSPO1WHGFXC47HBJOLBE' where id=2; -update noar ti set b2='R3M39UVD5VSPO1WHGFXC47HBJOLBE' where id=2; -update noar tt set b0='MDYZ4UMN' where id=3; -update noar ti set b0='MDYZ4UMN' where id=3; -update noar tt set b1='8U4G9SL1ECWR7MQPUWVUKM64ZF' where id=3; -update noar ti set b1='8U4G9SL1ECWR7MQPUWVUKM64ZF' where id=3; -update noar tt set b2='5' where id=3; -update noar ti set b2='5' where id=3; -update noar tt set b0='1CKYP7OR7TV7WOE' where id=4; -update noar ti set b0='1CKYP7OR7TV7WOE' where id=4; -update noar tt set b1='N8S' where id=4; -update noar ti set b1='N8S' where id=4; -update noar tt set b2='Y9KNQYN1TIJ8R3MMY9' where id=4; -update noar ti set b2='Y9KNQYN1TIJ8R3MMY9' where id=4; -update noar tt set b0='2J34U29IYY78WEVDEM2MMOQJDSTA' where id=5; -update noar ti set b0='2J34U29IYY78WEVDEM2MMOQJDSTA' where id=5; -update noar tt set b1='4Y68T5KGB9AMO2RQJ4YTOZYI' where id=5; -update noar ti set b1='4Y68T5KGB9AMO2RQJ4YTOZYI' where id=5; -update noar tt set b2='QBLXNG' where id=5; -update noar ti set b2='QBLXNG' where id=5; -update noar tt set b0='OVKTJB6EMLIBSKX' where id=6; -update noar ti set b0='OVKTJB6EMLIBSKX' where id=6; -update noar tt set b1='1LU91IHNHXOIALCCKCPUTTRVB' where id=6; -update noar ti set b1='1LU91IHNHXOIALCCKCPUTTRVB' where id=6; -update noar tt set b2='1YHRCT7' where id=6; -update noar ti set b2='1YHRCT7' where id=6; -update noar tt set b0='LT2QECPJ8ZGPE23R9MDQCW9LPG51DYN' where id=7; -update noar ti set b0='LT2QECPJ8ZGPE23R9MDQCW9LPG51DYN' where id=7; -update noar tt set b1='2XH2JJL3' where id=7; -update noar ti set b1='2XH2JJL3' where id=7; -update noar tt set b2='FY6D293RBNTB3SXH5Z7KW' where id=7; -update noar ti set b2='FY6D293RBNTB3SXH5Z7KW' where id=7; -update noar tt set b0='C7QF' where id=8; -update noar ti set b0='C7QF' where id=8; -update noar tt set b1='XAW65IM9JAAZ6V86R0F223WOO' where id=8; -update noar ti set b1='XAW65IM9JAAZ6V86R0F223WOO' where id=8; -update noar tt set b2='KV5OJN4B' where id=8; -update noar ti set b2='KV5OJN4B' where id=8; -update noar tt set b0='JAHB8FQT2D36DV4UX' where id=9; -update noar ti set b0='JAHB8FQT2D36DV4UX' where id=9; -update noar tt set b1='4PPNZJ' where id=9; -update noar ti set b1='4PPNZJ' where id=9; -update noar tt set b2='PPGI736QC17GGCA' where id=9; -update noar ti set b2='PPGI736QC17GGCA' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -b0 longblob null, -b1 text null, -b2 tinyblob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set b0='3YRR7GNBKJZOIQLADTO' where id=1; -update noar ti set b0='3YRR7GNBKJZOIQLADTO' where id=1; -update noar tt set b1='3E' where id=1; -update noar ti set b1='3E' where id=1; -update noar tt set b2='ELLO9IKPCOX11HV64LS5RVLQ40H8FG' where id=1; -update noar ti set b2='ELLO9IKPCOX11HV64LS5RVLQ40H8FG' where id=1; -update noar tt set b0='9W0E' where id=2; -update noar ti set b0='9W0E' where id=2; -update noar tt set b1='C07K9E2R61X7P' where id=2; -update noar ti set b1='C07K9E2R61X7P' where id=2; -update noar tt set b2='0IHZU2DFEP0ZK8DZMYXYN4H' where id=2; -update noar ti set b2='0IHZU2DFEP0ZK8DZMYXYN4H' where id=2; -update noar tt set b0='EVVN8BOWTNO4' where id=3; -update noar ti set b0='EVVN8BOWTNO4' where id=3; -update noar tt set b1='5UA3' where id=3; -update noar ti set b1='5UA3' where id=3; -update noar tt set b2='BQNR3PGGO' where id=3; -update noar ti set b2='BQNR3PGGO' where id=3; -update noar tt set b0='6WYQXCORSR8IDTF4M83P12073P' where id=4; -update noar ti set b0='6WYQXCORSR8IDTF4M83P12073P' where id=4; -update noar tt set b1='0F0F7E' where id=4; -update noar ti set b1='0F0F7E' where id=4; -update noar tt set b2='8MUPWP77CNI74YHCRTTBG0OQL7' where id=4; -update noar ti set b2='8MUPWP77CNI74YHCRTTBG0OQL7' where id=4; -update noar tt set b0='8J' where id=5; -update noar ti set b0='8J' where id=5; -update noar tt set b1='T1XJR0DQTPH' where id=5; -update noar ti set b1='T1XJR0DQTPH' where id=5; -update noar tt set b2='RTXMS51KBXM7TLOWDO34V7C3SYM' where id=5; -update noar ti set b2='RTXMS51KBXM7TLOWDO34V7C3SYM' where id=5; -update noar tt set b0='64ENRG818K' where id=6; -update noar ti set b0='64ENRG818K' where id=6; -update noar tt set b1='V359EERFLGTGF86GU' where id=6; -update noar ti set b1='V359EERFLGTGF86GU' where id=6; -update noar tt set b2='OKEWJ5HPG82BW9Q' where id=6; -update noar ti set b2='OKEWJ5HPG82BW9Q' where id=6; -update noar tt set b0='B2T0Z4F2MQ4' where id=7; -update noar ti set b0='B2T0Z4F2MQ4' where id=7; -update noar tt set b1='EE' where id=7; -update noar ti set b1='EE' where id=7; -update noar tt set b2='LHBI3' where id=7; -update noar ti set b2='LHBI3' where id=7; -update noar tt set b0='O3O' where id=8; -update noar ti set b0='O3O' where id=8; -update noar tt set b1='WRQMGL0UL1QC' where id=8; -update noar ti set b1='WRQMGL0UL1QC' where id=8; -update noar tt set b2='ITBDHX2' where id=8; -update noar ti set b2='ITBDHX2' where id=8; -update noar tt set b0='FJQD1PUN9UNRPTY4O6RBAF6' where id=9; -update noar ti set b0='FJQD1PUN9UNRPTY4O6RBAF6' where id=9; -update noar tt set b1='U72IE' where id=9; -update noar ti set b1='U72IE' where id=9; -update noar tt set b2='MHW3V5H4RX7BK1KHXD8FHR3C9SK4Y84' where id=9; -update noar ti set b2='MHW3V5H4RX7BK1KHXD8FHR3C9SK4Y84' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -b0 longblob not null, -b1 text not null, -b2 tinyblob not null -) engine=tokudb; -insert into tt values (1,'','',''); -insert into tt values (2,'','',''); -insert into tt values (3,'','',''); -insert into tt values (4,'','',''); -insert into tt values (5,'','',''); -insert into tt values (6,'','',''); -insert into tt values (7,'','',''); -insert into tt values (8,'','',''); -insert into tt values (9,'','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set b0='UGA5RP5GQVX6K5C3SK' where id=1; -update noar ti set b0='UGA5RP5GQVX6K5C3SK' where id=1; -update noar tt set b1='Q037HZVZMPDHWOD30D7JSKJ17KRIHWEG' where id=1; -update noar ti set b1='Q037HZVZMPDHWOD30D7JSKJ17KRIHWEG' where id=1; -update noar tt set b2='J' where id=1; -update noar ti set b2='J' where id=1; -update noar tt set b0='BH5Z6SC5AK87FK0' where id=2; -update noar ti set b0='BH5Z6SC5AK87FK0' where id=2; -update noar tt set b1='H7W3NNOGOSOXO' where id=2; -update noar ti set b1='H7W3NNOGOSOXO' where id=2; -update noar tt set b2='MPYY2' where id=2; -update noar ti set b2='MPYY2' where id=2; -update noar tt set b0='PYF0UJLUISPVI' where id=3; -update noar ti set b0='PYF0UJLUISPVI' where id=3; -update noar tt set b1='QTRQYD3JWZQGETKDFZE3MZIG9N0PH' where id=3; -update noar ti set b1='QTRQYD3JWZQGETKDFZE3MZIG9N0PH' where id=3; -update noar tt set b2='2NNT7DJT6R4KHXDXO6KY1723QATECD' where id=3; -update noar ti set b2='2NNT7DJT6R4KHXDXO6KY1723QATECD' where id=3; -update noar tt set b0='V3' where id=4; -update noar ti set b0='V3' where id=4; -update noar tt set b1='AHASUQ1OXD1GCV6X1Y915FT' where id=4; -update noar ti set b1='AHASUQ1OXD1GCV6X1Y915FT' where id=4; -update noar tt set b2='MGJMYRBTVQJ34CBBL9GJ8GEP07349' where id=4; -update noar ti set b2='MGJMYRBTVQJ34CBBL9GJ8GEP07349' where id=4; -update noar tt set b0='2Q5SVI4IRZAM2TISEABH0UG99O15' where id=5; -update noar ti set b0='2Q5SVI4IRZAM2TISEABH0UG99O15' where id=5; -update noar tt set b1='0RDD50BFQQRDJXD6R' where id=5; -update noar ti set b1='0RDD50BFQQRDJXD6R' where id=5; -update noar tt set b2='S13IBYF6UWKOOGF' where id=5; -update noar ti set b2='S13IBYF6UWKOOGF' where id=5; -update noar tt set b0='A73KY6' where id=6; -update noar ti set b0='A73KY6' where id=6; -update noar tt set b1='KQA5MY6GWPGUVBITQ0QOMNIJK' where id=6; -update noar ti set b1='KQA5MY6GWPGUVBITQ0QOMNIJK' where id=6; -update noar tt set b2='F8JSSGO75DT3FUP8CRBMB6U9SI7AF9' where id=6; -update noar ti set b2='F8JSSGO75DT3FUP8CRBMB6U9SI7AF9' where id=6; -update noar tt set b0='ODHO2TOU5E2' where id=7; -update noar ti set b0='ODHO2TOU5E2' where id=7; -update noar tt set b1='1C49DCZSASYUAFWVQHV0' where id=7; -update noar ti set b1='1C49DCZSASYUAFWVQHV0' where id=7; -update noar tt set b2='EKT76EMAVIM' where id=7; -update noar ti set b2='EKT76EMAVIM' where id=7; -update noar tt set b0='MV1I9WNI2RN3SU5J' where id=8; -update noar ti set b0='MV1I9WNI2RN3SU5J' where id=8; -update noar tt set b1='ZB0BIWVWKPY' where id=8; -update noar ti set b1='ZB0BIWVWKPY' where id=8; -update noar tt set b2='R2A7L5SCDKUBFRXVFZ078XI4F0Q' where id=8; -update noar ti set b2='R2A7L5SCDKUBFRXVFZ078XI4F0Q' where id=8; -update noar tt set b0='EDROEI5PKGT0' where id=9; -update noar ti set b0='EDROEI5PKGT0' where id=9; -update noar tt set b1='68Z9IRV04BRXGYK' where id=9; -update noar ti set b1='68Z9IRV04BRXGYK' where id=9; -update noar tt set b2='CUY50A2L5LSZUG3E4410X43Z62VQ' where id=9; -update noar ti set b2='CUY50A2L5LSZUG3E4410X43Z62VQ' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -b0 longblob null, -b1 text null, -b2 blob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set b0='J6FCD74UVB5' where id=1; -update noar ti set b0='J6FCD74UVB5' where id=1; -update noar tt set b1='H5WHS10JQM60O9' where id=1; -update noar ti set b1='H5WHS10JQM60O9' where id=1; -update noar tt set b2='9686UOK9UONR7398POIO4JL4J7FHVG0C' where id=1; -update noar ti set b2='9686UOK9UONR7398POIO4JL4J7FHVG0C' where id=1; -update noar tt set b0='ZUIYRD' where id=2; -update noar ti set b0='ZUIYRD' where id=2; -update noar tt set b1='L2SB3MFF01' where id=2; -update noar ti set b1='L2SB3MFF01' where id=2; -update noar tt set b2='7FT9HU6PL82VRXXO1YX5SVWEL3OWF7R' where id=2; -update noar ti set b2='7FT9HU6PL82VRXXO1YX5SVWEL3OWF7R' where id=2; -update noar tt set b0='EKT64H605JFTJEE' where id=3; -update noar ti set b0='EKT64H605JFTJEE' where id=3; -update noar tt set b1='FKY5TXTC5ZQ7JLRWFKOA862IV92HR' where id=3; -update noar ti set b1='FKY5TXTC5ZQ7JLRWFKOA862IV92HR' where id=3; -update noar tt set b2='1JUNHV1O1DHI56M' where id=3; -update noar ti set b2='1JUNHV1O1DHI56M' where id=3; -update noar tt set b0='E48CPX4JO' where id=4; -update noar ti set b0='E48CPX4JO' where id=4; -update noar tt set b1='1J264W' where id=4; -update noar ti set b1='1J264W' where id=4; -update noar tt set b2='SOP6F9TFH9371RJAL7XEQLWUHC' where id=4; -update noar ti set b2='SOP6F9TFH9371RJAL7XEQLWUHC' where id=4; -update noar tt set b0='DMDLFB85GFGXYO56FFFQQ' where id=5; -update noar ti set b0='DMDLFB85GFGXYO56FFFQQ' where id=5; -update noar tt set b1='PTQK6PEZ250WEAXPQR6M2O' where id=5; -update noar ti set b1='PTQK6PEZ250WEAXPQR6M2O' where id=5; -update noar tt set b2='QJ9J7' where id=5; -update noar ti set b2='QJ9J7' where id=5; -update noar tt set b0='1N' where id=6; -update noar ti set b0='1N' where id=6; -update noar tt set b1='ZRDECDH' where id=6; -update noar ti set b1='ZRDECDH' where id=6; -update noar tt set b2='FP0KL0ON9BM273YWP' where id=6; -update noar ti set b2='FP0KL0ON9BM273YWP' where id=6; -update noar tt set b0='LZP10T28A8R' where id=7; -update noar ti set b0='LZP10T28A8R' where id=7; -update noar tt set b1='XH3LBXFYZMBB' where id=7; -update noar ti set b1='XH3LBXFYZMBB' where id=7; -update noar tt set b2='KZB8' where id=7; -update noar ti set b2='KZB8' where id=7; -update noar tt set b0='SLO162JR7QM8P5VAPNZQY4M3IAXXXGS' where id=8; -update noar ti set b0='SLO162JR7QM8P5VAPNZQY4M3IAXXXGS' where id=8; -update noar tt set b1='7HKRTCHTFMHN' where id=8; -update noar ti set b1='7HKRTCHTFMHN' where id=8; -update noar tt set b2='LRWG6FPRCJJI0XYD' where id=8; -update noar ti set b2='LRWG6FPRCJJI0XYD' where id=8; -update noar tt set b0='TMC2R9T9J' where id=9; -update noar ti set b0='TMC2R9T9J' where id=9; -update noar tt set b1='CK38ZD95JWM' where id=9; -update noar ti set b1='CK38ZD95JWM' where id=9; -update noar tt set b2='8JCWBVUMYZDFA' where id=9; -update noar ti set b2='8JCWBVUMYZDFA' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -b0 longblob not null, -b1 text not null, -b2 blob not null -) engine=tokudb; -insert into tt values (1,'','',''); -insert into tt values (2,'','',''); -insert into tt values (3,'','',''); -insert into tt values (4,'','',''); -insert into tt values (5,'','',''); -insert into tt values (6,'','',''); -insert into tt values (7,'','',''); -insert into tt values (8,'','',''); -insert into tt values (9,'','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set b0='W5H0A7QOV7Z4GRUSWPB4C4' where id=1; -update noar ti set b0='W5H0A7QOV7Z4GRUSWPB4C4' where id=1; -update noar tt set b1='QWM' where id=1; -update noar ti set b1='QWM' where id=1; -update noar tt set b2='LPJ' where id=1; -update noar ti set b2='LPJ' where id=1; -update noar tt set b0='51FZQGI1HE76MSJFSB67K9BR' where id=2; -update noar ti set b0='51FZQGI1HE76MSJFSB67K9BR' where id=2; -update noar tt set b1='WP7VCQL3K7FXY78ZX5JZ7FT8I36G' where id=2; -update noar ti set b1='WP7VCQL3K7FXY78ZX5JZ7FT8I36G' where id=2; -update noar tt set b2='P6GIVWFKV4GOJH01UIJK' where id=2; -update noar ti set b2='P6GIVWFKV4GOJH01UIJK' where id=2; -update noar tt set b0='NPZSZOA2CFE1MFMEO9UIFY4RKW21I3' where id=3; -update noar ti set b0='NPZSZOA2CFE1MFMEO9UIFY4RKW21I3' where id=3; -update noar tt set b1='2CHULP14F0' where id=3; -update noar ti set b1='2CHULP14F0' where id=3; -update noar tt set b2='2VN4' where id=3; -update noar ti set b2='2VN4' where id=3; -update noar tt set b0='B346T0F3GH7HUGVSXP8E2KWYY7PX48WH' where id=4; -update noar ti set b0='B346T0F3GH7HUGVSXP8E2KWYY7PX48WH' where id=4; -update noar tt set b1='QMH04RIB0L1B' where id=4; -update noar ti set b1='QMH04RIB0L1B' where id=4; -update noar tt set b2='JU9MQ' where id=4; -update noar ti set b2='JU9MQ' where id=4; -update noar tt set b0='KOY2CD' where id=5; -update noar ti set b0='KOY2CD' where id=5; -update noar tt set b1='NF' where id=5; -update noar ti set b1='NF' where id=5; -update noar tt set b2='FA0RSJUT1S9I04N7WR58BVUOW4B3Q' where id=5; -update noar ti set b2='FA0RSJUT1S9I04N7WR58BVUOW4B3Q' where id=5; -update noar tt set b0='QZVQ' where id=6; -update noar ti set b0='QZVQ' where id=6; -update noar tt set b1='QWCIK63XQRC9LUPBGGQ058BV10' where id=6; -update noar ti set b1='QWCIK63XQRC9LUPBGGQ058BV10' where id=6; -update noar tt set b2='5QD9IKRLULQ' where id=6; -update noar ti set b2='5QD9IKRLULQ' where id=6; -update noar tt set b0='IVVMK5K6GU1' where id=7; -update noar ti set b0='IVVMK5K6GU1' where id=7; -update noar tt set b1='OR8KI32IW987HBEH4YTP' where id=7; -update noar ti set b1='OR8KI32IW987HBEH4YTP' where id=7; -update noar tt set b2='LX10XK7NIIPZFM1MU9G3BSCTB61988P' where id=7; -update noar ti set b2='LX10XK7NIIPZFM1MU9G3BSCTB61988P' where id=7; -update noar tt set b0='QP83DRFFB1B9SPU68JC' where id=8; -update noar ti set b0='QP83DRFFB1B9SPU68JC' where id=8; -update noar tt set b1='C6VSDYJ7A3928BYS' where id=8; -update noar ti set b1='C6VSDYJ7A3928BYS' where id=8; -update noar tt set b2='Y6A4' where id=8; -update noar ti set b2='Y6A4' where id=8; -update noar tt set b0='R1IEXEDHKURI5PIGU1QI319S' where id=9; -update noar ti set b0='R1IEXEDHKURI5PIGU1QI319S' where id=9; -update noar tt set b1='DYOXZHN4WEJTGQY5Z0K56WX1UNN4O' where id=9; -update noar ti set b1='DYOXZHN4WEJTGQY5Z0K56WX1UNN4O' where id=9; -update noar tt set b2='9SIJVBSVNZ2DPPITJAOL7NZI' where id=9; -update noar ti set b2='9SIJVBSVNZ2DPPITJAOL7NZI' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -b0 longblob null, -b1 text null, -b2 mediumblob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set b0='SD8LNOMFZJMJIN7A76Q6C2' where id=1; -update noar ti set b0='SD8LNOMFZJMJIN7A76Q6C2' where id=1; -update noar tt set b1='7CG' where id=1; -update noar ti set b1='7CG' where id=1; -update noar tt set b2='EJ1XQC1QEVLKCNWFAT4XY90HTW' where id=1; -update noar ti set b2='EJ1XQC1QEVLKCNWFAT4XY90HTW' where id=1; -update noar tt set b0='1R1TWOIZ48RSM6L1LX5XAGB4X' where id=2; -update noar ti set b0='1R1TWOIZ48RSM6L1LX5XAGB4X' where id=2; -update noar tt set b1='XVSF67DEFB3O2FA20USQTI6BEBSZI8' where id=2; -update noar ti set b1='XVSF67DEFB3O2FA20USQTI6BEBSZI8' where id=2; -update noar tt set b2='YZ9TSCBHD904R07GM' where id=2; -update noar ti set b2='YZ9TSCBHD904R07GM' where id=2; -update noar tt set b0='KSOIIEM36HWG4OC5VRNBWPV6PXHBIM5H' where id=3; -update noar ti set b0='KSOIIEM36HWG4OC5VRNBWPV6PXHBIM5H' where id=3; -update noar tt set b1='A8N01RR1WCSU1SS2I8VHNG3E7' where id=3; -update noar ti set b1='A8N01RR1WCSU1SS2I8VHNG3E7' where id=3; -update noar tt set b2='W8FZZ0N50CZ573683OC77B' where id=3; -update noar ti set b2='W8FZZ0N50CZ573683OC77B' where id=3; -update noar tt set b0='JIVJMP5E6SE9SQR8ABXH9AIHPJ3UBST4' where id=4; -update noar ti set b0='JIVJMP5E6SE9SQR8ABXH9AIHPJ3UBST4' where id=4; -update noar tt set b1='4TDI0M9YG3MTI51JYRL5A0Y43B30' where id=4; -update noar ti set b1='4TDI0M9YG3MTI51JYRL5A0Y43B30' where id=4; -update noar tt set b2='RTD' where id=4; -update noar ti set b2='RTD' where id=4; -update noar tt set b0='O' where id=5; -update noar ti set b0='O' where id=5; -update noar tt set b1='GZIHJPGN9B' where id=5; -update noar ti set b1='GZIHJPGN9B' where id=5; -update noar tt set b2='5MD2VBPM' where id=5; -update noar ti set b2='5MD2VBPM' where id=5; -update noar tt set b0='KKVFF6E27078NKO2MA4' where id=6; -update noar ti set b0='KKVFF6E27078NKO2MA4' where id=6; -update noar tt set b1='PMWX4ZHPF5GB4WNB1OPT5DROV' where id=6; -update noar ti set b1='PMWX4ZHPF5GB4WNB1OPT5DROV' where id=6; -update noar tt set b2='A' where id=6; -update noar ti set b2='A' where id=6; -update noar tt set b0='X' where id=7; -update noar ti set b0='X' where id=7; -update noar tt set b1='GG24EDPR' where id=7; -update noar ti set b1='GG24EDPR' where id=7; -update noar tt set b2='NN437ZTIVTN' where id=7; -update noar ti set b2='NN437ZTIVTN' where id=7; -update noar tt set b0='K876776IE07' where id=8; -update noar ti set b0='K876776IE07' where id=8; -update noar tt set b1='4TA2MKQ5CJIY6LB4A0U7DRWJK5T6' where id=8; -update noar ti set b1='4TA2MKQ5CJIY6LB4A0U7DRWJK5T6' where id=8; -update noar tt set b2='SUC7B4NVT36O96SX' where id=8; -update noar ti set b2='SUC7B4NVT36O96SX' where id=8; -update noar tt set b0='KVN53LB8RRYZUUR' where id=9; -update noar ti set b0='KVN53LB8RRYZUUR' where id=9; -update noar tt set b1='7QFOZ7' where id=9; -update noar ti set b1='7QFOZ7' where id=9; -update noar tt set b2='KIKSK89TRP93IRB7QBYUO4JP7X518Z' where id=9; -update noar ti set b2='KIKSK89TRP93IRB7QBYUO4JP7X518Z' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -b0 longblob not null, -b1 text not null, -b2 mediumblob not null -) engine=tokudb; -insert into tt values (1,'','',''); -insert into tt values (2,'','',''); -insert into tt values (3,'','',''); -insert into tt values (4,'','',''); -insert into tt values (5,'','',''); -insert into tt values (6,'','',''); -insert into tt values (7,'','',''); -insert into tt values (8,'','',''); -insert into tt values (9,'','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set b0='J836QLFGB91' where id=1; -update noar ti set b0='J836QLFGB91' where id=1; -update noar tt set b1='DVE18VX1C3YUYUHM4LHGZ9F57UHFT' where id=1; -update noar ti set b1='DVE18VX1C3YUYUHM4LHGZ9F57UHFT' where id=1; -update noar tt set b2='2HOCJ' where id=1; -update noar ti set b2='2HOCJ' where id=1; -update noar tt set b0='RWE7U2ZOVVLUUCH94BHPZQJC' where id=2; -update noar ti set b0='RWE7U2ZOVVLUUCH94BHPZQJC' where id=2; -update noar tt set b1='47FHIZ02XZXPDIJ25PQAJQ67QTT40K' where id=2; -update noar ti set b1='47FHIZ02XZXPDIJ25PQAJQ67QTT40K' where id=2; -update noar tt set b2='B0C4I' where id=2; -update noar ti set b2='B0C4I' where id=2; -update noar tt set b0='B04J7EPS19Y9JXYVZCBSB49L6SO6WTB6' where id=3; -update noar ti set b0='B04J7EPS19Y9JXYVZCBSB49L6SO6WTB6' where id=3; -update noar tt set b1='5ZBZ' where id=3; -update noar ti set b1='5ZBZ' where id=3; -update noar tt set b2='A8UH8AMVZFSYEILYY4NAOID14OUBBR' where id=3; -update noar ti set b2='A8UH8AMVZFSYEILYY4NAOID14OUBBR' where id=3; -update noar tt set b0='QF4N6K' where id=4; -update noar ti set b0='QF4N6K' where id=4; -update noar tt set b1='7JR0SLTGZY8JD2I' where id=4; -update noar ti set b1='7JR0SLTGZY8JD2I' where id=4; -update noar tt set b2='6AR' where id=4; -update noar ti set b2='6AR' where id=4; -update noar tt set b0='NL3RV98YUI46IJZMW33VCHA' where id=5; -update noar ti set b0='NL3RV98YUI46IJZMW33VCHA' where id=5; -update noar tt set b1='E9ZBPZ988HVR' where id=5; -update noar ti set b1='E9ZBPZ988HVR' where id=5; -update noar tt set b2='5JAIYR4H9R49JX3QU' where id=5; -update noar ti set b2='5JAIYR4H9R49JX3QU' where id=5; -update noar tt set b0='DX5XM' where id=6; -update noar ti set b0='DX5XM' where id=6; -update noar tt set b1='M430F56IMR' where id=6; -update noar ti set b1='M430F56IMR' where id=6; -update noar tt set b2='MTYQ51J8NKRRX2' where id=6; -update noar ti set b2='MTYQ51J8NKRRX2' where id=6; -update noar tt set b0='1VZ8NRAO3O72AL8EDUVFHROS94' where id=7; -update noar ti set b0='1VZ8NRAO3O72AL8EDUVFHROS94' where id=7; -update noar tt set b1='X5ORGUCXSLQTO' where id=7; -update noar ti set b1='X5ORGUCXSLQTO' where id=7; -update noar tt set b2='YIXNY' where id=7; -update noar ti set b2='YIXNY' where id=7; -update noar tt set b0='B1OGLBDU3BWA7DBFGMZ4OCB' where id=8; -update noar ti set b0='B1OGLBDU3BWA7DBFGMZ4OCB' where id=8; -update noar tt set b1='Q6DKOT844' where id=8; -update noar ti set b1='Q6DKOT844' where id=8; -update noar tt set b2='0ML0O877PF4D3H0PG1MIX6S' where id=8; -update noar ti set b2='0ML0O877PF4D3H0PG1MIX6S' where id=8; -update noar tt set b0='IW6GNF0DLNK5G5IUHLXJXD52OK' where id=9; -update noar ti set b0='IW6GNF0DLNK5G5IUHLXJXD52OK' where id=9; -update noar tt set b1='N8HRAHAHZX5SKMEVJI3TY6WKP78' where id=9; -update noar ti set b1='N8HRAHAHZX5SKMEVJI3TY6WKP78' where id=9; -update noar tt set b2='LDT2L5CSYWBJSK6' where id=9; -update noar ti set b2='LDT2L5CSYWBJSK6' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -b0 longblob null, -b1 text null, -b2 longblob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set b0='VHUPQMV3EEHHVAFA3AFTTID59CUOERXJ' where id=1; -update noar ti set b0='VHUPQMV3EEHHVAFA3AFTTID59CUOERXJ' where id=1; -update noar tt set b1='K991DO78VPO7SZSCVCFY8P1CGSL' where id=1; -update noar ti set b1='K991DO78VPO7SZSCVCFY8P1CGSL' where id=1; -update noar tt set b2='W5' where id=1; -update noar ti set b2='W5' where id=1; -update noar tt set b0='97WVCGVLTCIGYR' where id=2; -update noar ti set b0='97WVCGVLTCIGYR' where id=2; -update noar tt set b1='S5G' where id=2; -update noar ti set b1='S5G' where id=2; -update noar tt set b2='K1ESXBK3S19ZC2' where id=2; -update noar ti set b2='K1ESXBK3S19ZC2' where id=2; -update noar tt set b0='8V5GOVFP0VMSTBZFIYL3JYPBIPFKUM4P' where id=3; -update noar ti set b0='8V5GOVFP0VMSTBZFIYL3JYPBIPFKUM4P' where id=3; -update noar tt set b1='5J6YE826HEGAJNBER86T6Y3LZDVWZ4Z' where id=3; -update noar ti set b1='5J6YE826HEGAJNBER86T6Y3LZDVWZ4Z' where id=3; -update noar tt set b2='5MNX2IZ' where id=3; -update noar ti set b2='5MNX2IZ' where id=3; -update noar tt set b0='PLZB7' where id=4; -update noar ti set b0='PLZB7' where id=4; -update noar tt set b1='GVP7YDHSWIKB3P81P54M5TCDY0Z' where id=4; -update noar ti set b1='GVP7YDHSWIKB3P81P54M5TCDY0Z' where id=4; -update noar tt set b2='MIFCZ5FSG29F6A92V' where id=4; -update noar ti set b2='MIFCZ5FSG29F6A92V' where id=4; -update noar tt set b0='T4Z6JRZ8A528NLII5I' where id=5; -update noar ti set b0='T4Z6JRZ8A528NLII5I' where id=5; -update noar tt set b1='XA71' where id=5; -update noar ti set b1='XA71' where id=5; -update noar tt set b2='5CO1SE0TV4F0SCVSD' where id=5; -update noar ti set b2='5CO1SE0TV4F0SCVSD' where id=5; -update noar tt set b0='YKTEE7GXJLN9PB' where id=6; -update noar ti set b0='YKTEE7GXJLN9PB' where id=6; -update noar tt set b1='BZPJSGBLX732JERF3UJ2Z2FN' where id=6; -update noar ti set b1='BZPJSGBLX732JERF3UJ2Z2FN' where id=6; -update noar tt set b2='CVCVEAA4' where id=6; -update noar ti set b2='CVCVEAA4' where id=6; -update noar tt set b0='TOJL6M1VYI1' where id=7; -update noar ti set b0='TOJL6M1VYI1' where id=7; -update noar tt set b1='HRW0SQCE4CQE7U' where id=7; -update noar ti set b1='HRW0SQCE4CQE7U' where id=7; -update noar tt set b2='8VW59GFHIVBILH29LNDQ28KMYFXQU193' where id=7; -update noar ti set b2='8VW59GFHIVBILH29LNDQ28KMYFXQU193' where id=7; -update noar tt set b0='TM93JZRXAAWWG7HZY' where id=8; -update noar ti set b0='TM93JZRXAAWWG7HZY' where id=8; -update noar tt set b1='A69J5XKEIFLLT33RW7P8' where id=8; -update noar ti set b1='A69J5XKEIFLLT33RW7P8' where id=8; -update noar tt set b2='LPJTU0ZY5SX70NSM3I26NQSWRS' where id=8; -update noar ti set b2='LPJTU0ZY5SX70NSM3I26NQSWRS' where id=8; -update noar tt set b0='W65TICZSD1YDI' where id=9; -update noar ti set b0='W65TICZSD1YDI' where id=9; -update noar tt set b1='QIXKROMIO9P' where id=9; -update noar ti set b1='QIXKROMIO9P' where id=9; -update noar tt set b2='Y2' where id=9; -update noar ti set b2='Y2' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -b0 longblob not null, -b1 text not null, -b2 longblob not null -) engine=tokudb; -insert into tt values (1,'','',''); -insert into tt values (2,'','',''); -insert into tt values (3,'','',''); -insert into tt values (4,'','',''); -insert into tt values (5,'','',''); -insert into tt values (6,'','',''); -insert into tt values (7,'','',''); -insert into tt values (8,'','',''); -insert into tt values (9,'','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set b0='IXLQ' where id=1; -update noar ti set b0='IXLQ' where id=1; -update noar tt set b1='0GV8ET59V74TSL6UAKVQK7IA' where id=1; -update noar ti set b1='0GV8ET59V74TSL6UAKVQK7IA' where id=1; -update noar tt set b2='J5LLXL9C0Z' where id=1; -update noar ti set b2='J5LLXL9C0Z' where id=1; -update noar tt set b0='GN1' where id=2; -update noar ti set b0='GN1' where id=2; -update noar tt set b1='GCEHA6AQ8BC7ZJVBSH5TN0YBB' where id=2; -update noar ti set b1='GCEHA6AQ8BC7ZJVBSH5TN0YBB' where id=2; -update noar tt set b2='RRUM0MZ3F6UIBCGYY1ZRB6' where id=2; -update noar ti set b2='RRUM0MZ3F6UIBCGYY1ZRB6' where id=2; -update noar tt set b0='CHTLDYNLKO070GRYHN5AO' where id=3; -update noar ti set b0='CHTLDYNLKO070GRYHN5AO' where id=3; -update noar tt set b1='T6R74' where id=3; -update noar ti set b1='T6R74' where id=3; -update noar tt set b2='02QEW3K4JAZBMDPI3U34ITG' where id=3; -update noar ti set b2='02QEW3K4JAZBMDPI3U34ITG' where id=3; -update noar tt set b0='F86MITJKWEBY571S4' where id=4; -update noar ti set b0='F86MITJKWEBY571S4' where id=4; -update noar tt set b1='WCMSVXB2KATELVUDFXNR4B1CLLOTV' where id=4; -update noar ti set b1='WCMSVXB2KATELVUDFXNR4B1CLLOTV' where id=4; -update noar tt set b2='PWC' where id=4; -update noar ti set b2='PWC' where id=4; -update noar tt set b0='WPIL3JE320Z' where id=5; -update noar ti set b0='WPIL3JE320Z' where id=5; -update noar tt set b1='DNNVGHQWIHL2VB' where id=5; -update noar ti set b1='DNNVGHQWIHL2VB' where id=5; -update noar tt set b2='1Y1Z' where id=5; -update noar ti set b2='1Y1Z' where id=5; -update noar tt set b0='8I14EXD02CS' where id=6; -update noar ti set b0='8I14EXD02CS' where id=6; -update noar tt set b1='OPCV6ODUMXJ4' where id=6; -update noar ti set b1='OPCV6ODUMXJ4' where id=6; -update noar tt set b2='HTG0EQPAKHZ13DXTGLTXU7OW601PES' where id=6; -update noar ti set b2='HTG0EQPAKHZ13DXTGLTXU7OW601PES' where id=6; -update noar tt set b0='DPBY7XPODUL' where id=7; -update noar ti set b0='DPBY7XPODUL' where id=7; -update noar tt set b1='Y' where id=7; -update noar ti set b1='Y' where id=7; -update noar tt set b2='LJWJWLS3BRN' where id=7; -update noar ti set b2='LJWJWLS3BRN' where id=7; -update noar tt set b0='YKRGG60SV7370054Z10FO' where id=8; -update noar ti set b0='YKRGG60SV7370054Z10FO' where id=8; -update noar tt set b1='TUCXJJOP1ZZXTC9S1IOT3H' where id=8; -update noar ti set b1='TUCXJJOP1ZZXTC9S1IOT3H' where id=8; -update noar tt set b2='UQ7N2WEJFIOS3FDP9' where id=8; -update noar ti set b2='UQ7N2WEJFIOS3FDP9' where id=8; -update noar tt set b0='E40AN7BDA3PITTUSCD9ZZMMMKD9K' where id=9; -update noar ti set b0='E40AN7BDA3PITTUSCD9ZZMMMKD9K' where id=9; -update noar tt set b1='I93Z1FXE2HHMHCP8524DH1LV' where id=9; -update noar ti set b1='I93Z1FXE2HHMHCP8524DH1LV' where id=9; -update noar tt set b2='F8GN2' where id=9; -update noar ti set b2='F8GN2' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -b0 longblob null, -b1 text null, -b2 text null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set b0='W725N51H71T565X5T9X1' where id=1; -update noar ti set b0='W725N51H71T565X5T9X1' where id=1; -update noar tt set b1='HUELY9ZD20MVBVDI' where id=1; -update noar ti set b1='HUELY9ZD20MVBVDI' where id=1; -update noar tt set b2='GRL5E7IA5W12INXDIK0ZQ2Z5V6J1' where id=1; -update noar ti set b2='GRL5E7IA5W12INXDIK0ZQ2Z5V6J1' where id=1; -update noar tt set b0='OW' where id=2; -update noar ti set b0='OW' where id=2; -update noar tt set b1='N3O0NU0EPNA60BYWWC1Y97TV' where id=2; -update noar ti set b1='N3O0NU0EPNA60BYWWC1Y97TV' where id=2; -update noar tt set b2='P' where id=2; -update noar ti set b2='P' where id=2; -update noar tt set b0='ZQPCWFYWD9W' where id=3; -update noar ti set b0='ZQPCWFYWD9W' where id=3; -update noar tt set b1='MFWBI8N0QN14D4B94UMMNT6RW4BWXA' where id=3; -update noar ti set b1='MFWBI8N0QN14D4B94UMMNT6RW4BWXA' where id=3; -update noar tt set b2='YBX3QB40G25OSXCJ1K4FD297Z0L' where id=3; -update noar ti set b2='YBX3QB40G25OSXCJ1K4FD297Z0L' where id=3; -update noar tt set b0='KMR7G47F42Y' where id=4; -update noar ti set b0='KMR7G47F42Y' where id=4; -update noar tt set b1='U291AF6KA' where id=4; -update noar ti set b1='U291AF6KA' where id=4; -update noar tt set b2='UZIA1WNZ7QT4' where id=4; -update noar ti set b2='UZIA1WNZ7QT4' where id=4; -update noar tt set b0='NQ6DWZO45XCVWZIU6KNJM' where id=5; -update noar ti set b0='NQ6DWZO45XCVWZIU6KNJM' where id=5; -update noar tt set b1='UW9F7U' where id=5; -update noar ti set b1='UW9F7U' where id=5; -update noar tt set b2='K1IIRFTCWD7MB4X7' where id=5; -update noar ti set b2='K1IIRFTCWD7MB4X7' where id=5; -update noar tt set b0='2MN2UKF6N5SZWRU7' where id=6; -update noar ti set b0='2MN2UKF6N5SZWRU7' where id=6; -update noar tt set b1='233OZPX30ZW3284HGVODFHT' where id=6; -update noar ti set b1='233OZPX30ZW3284HGVODFHT' where id=6; -update noar tt set b2='Q0R0SO9R8Z50FFZ1TNFBZ4T5' where id=6; -update noar ti set b2='Q0R0SO9R8Z50FFZ1TNFBZ4T5' where id=6; -update noar tt set b0='90TJKR5AUJIB740YG5' where id=7; -update noar ti set b0='90TJKR5AUJIB740YG5' where id=7; -update noar tt set b1='Q3G5HYWMM8ZT51OND73QG7RQF8MH5' where id=7; -update noar ti set b1='Q3G5HYWMM8ZT51OND73QG7RQF8MH5' where id=7; -update noar tt set b2='FC0Z6LO041XJBG5O1ALZYTM15TRK0ZGN' where id=7; -update noar ti set b2='FC0Z6LO041XJBG5O1ALZYTM15TRK0ZGN' where id=7; -update noar tt set b0='RPGEPQ5JE5EZGPHHHE1KPZELS5J' where id=8; -update noar ti set b0='RPGEPQ5JE5EZGPHHHE1KPZELS5J' where id=8; -update noar tt set b1='I' where id=8; -update noar ti set b1='I' where id=8; -update noar tt set b2='BM7SW4MQ8YTUU4X4WTH' where id=8; -update noar ti set b2='BM7SW4MQ8YTUU4X4WTH' where id=8; -update noar tt set b0='XHOI1Y3UOSLIFVORTA4X6Q8KWNZVH6L' where id=9; -update noar ti set b0='XHOI1Y3UOSLIFVORTA4X6Q8KWNZVH6L' where id=9; -update noar tt set b1='A8BPZX77AZQO' where id=9; -update noar ti set b1='A8BPZX77AZQO' where id=9; -update noar tt set b2='N' where id=9; -update noar ti set b2='N' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -b0 longblob not null, -b1 text not null, -b2 text not null -) engine=tokudb; -insert into tt values (1,'','',''); -insert into tt values (2,'','',''); -insert into tt values (3,'','',''); -insert into tt values (4,'','',''); -insert into tt values (5,'','',''); -insert into tt values (6,'','',''); -insert into tt values (7,'','',''); -insert into tt values (8,'','',''); -insert into tt values (9,'','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set b0='S2FIIC4M2KV' where id=1; -update noar ti set b0='S2FIIC4M2KV' where id=1; -update noar tt set b1='YQSR' where id=1; -update noar ti set b1='YQSR' where id=1; -update noar tt set b2='FZC5TKJVBMB1WW7L' where id=1; -update noar ti set b2='FZC5TKJVBMB1WW7L' where id=1; -update noar tt set b0='7B1L17ADXH' where id=2; -update noar ti set b0='7B1L17ADXH' where id=2; -update noar tt set b1='NCRLGJ0HPRNA9FCM3' where id=2; -update noar ti set b1='NCRLGJ0HPRNA9FCM3' where id=2; -update noar tt set b2='HKBJCG1I2W4BLOV9' where id=2; -update noar ti set b2='HKBJCG1I2W4BLOV9' where id=2; -update noar tt set b0='NOPYPMB90PM7YHZK5AMVLP7NETD2' where id=3; -update noar ti set b0='NOPYPMB90PM7YHZK5AMVLP7NETD2' where id=3; -update noar tt set b1='RBU04MRNSEH4ZWJKJFIUS8G26KKDZ6N3' where id=3; -update noar ti set b1='RBU04MRNSEH4ZWJKJFIUS8G26KKDZ6N3' where id=3; -update noar tt set b2='DSPMVAY35RJLC8727' where id=3; -update noar ti set b2='DSPMVAY35RJLC8727' where id=3; -update noar tt set b0='X' where id=4; -update noar ti set b0='X' where id=4; -update noar tt set b1='M4YT2XF6B3' where id=4; -update noar ti set b1='M4YT2XF6B3' where id=4; -update noar tt set b2='LHB' where id=4; -update noar ti set b2='LHB' where id=4; -update noar tt set b0='6NUWYOVU7XBGL56IS' where id=5; -update noar ti set b0='6NUWYOVU7XBGL56IS' where id=5; -update noar tt set b1='WPU226NBPDPFHKPUZOASR4B' where id=5; -update noar ti set b1='WPU226NBPDPFHKPUZOASR4B' where id=5; -update noar tt set b2='F767Y2X1Z3U' where id=5; -update noar ti set b2='F767Y2X1Z3U' where id=5; -update noar tt set b0='LKIIMW3J090F6O3SMNQ3M' where id=6; -update noar ti set b0='LKIIMW3J090F6O3SMNQ3M' where id=6; -update noar tt set b1='N' where id=6; -update noar ti set b1='N' where id=6; -update noar tt set b2='6TZ6PIQ4VV2T' where id=6; -update noar ti set b2='6TZ6PIQ4VV2T' where id=6; -update noar tt set b0='X3V2F9U5OLX35QQG4ULCET0WIRK97' where id=7; -update noar ti set b0='X3V2F9U5OLX35QQG4ULCET0WIRK97' where id=7; -update noar tt set b1='7S54PCK5URKOHY6PVO5K' where id=7; -update noar ti set b1='7S54PCK5URKOHY6PVO5K' where id=7; -update noar tt set b2='NOYD7G7I' where id=7; -update noar ti set b2='NOYD7G7I' where id=7; -update noar tt set b0='IDE4A5' where id=8; -update noar ti set b0='IDE4A5' where id=8; -update noar tt set b1='0WZ0JADT8' where id=8; -update noar ti set b1='0WZ0JADT8' where id=8; -update noar tt set b2='DRJ85FAS8RN6BA2I0HWEA2Q' where id=8; -update noar ti set b2='DRJ85FAS8RN6BA2I0HWEA2Q' where id=8; -update noar tt set b0='BF39NXSJIP8OLCVGBN00' where id=9; -update noar ti set b0='BF39NXSJIP8OLCVGBN00' where id=9; -update noar tt set b1='PLLY62BC0UM8BLGJGGJ7LU15MG' where id=9; -update noar ti set b1='PLLY62BC0UM8BLGJGGJ7LU15MG' where id=9; -update noar tt set b2='0JBCQDQWFGODF' where id=9; -update noar ti set b2='0JBCQDQWFGODF' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -b0 text null, -b1 tinyblob null, -b2 tinyblob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set b0='WS9RHW5CQ7AKYJKMRXL2RZLLR' where id=1; -update noar ti set b0='WS9RHW5CQ7AKYJKMRXL2RZLLR' where id=1; -update noar tt set b1='0B7HZ582I1M0U6KM7D' where id=1; -update noar ti set b1='0B7HZ582I1M0U6KM7D' where id=1; -update noar tt set b2='2308KMB641OE' where id=1; -update noar ti set b2='2308KMB641OE' where id=1; -update noar tt set b0='52PYZU3ZQ4H6NUDU1P3XH' where id=2; -update noar ti set b0='52PYZU3ZQ4H6NUDU1P3XH' where id=2; -update noar tt set b1='X4NJAT8JN8L4B0BB' where id=2; -update noar ti set b1='X4NJAT8JN8L4B0BB' where id=2; -update noar tt set b2='K' where id=2; -update noar ti set b2='K' where id=2; -update noar tt set b0='ZWCR50LDMJ0' where id=3; -update noar ti set b0='ZWCR50LDMJ0' where id=3; -update noar tt set b1='ERHQ1Z45GDSPN4NUGP5YO4V4CDGKK3V' where id=3; -update noar ti set b1='ERHQ1Z45GDSPN4NUGP5YO4V4CDGKK3V' where id=3; -update noar tt set b2='W' where id=3; -update noar ti set b2='W' where id=3; -update noar tt set b0='PPQMNYBOOH69' where id=4; -update noar ti set b0='PPQMNYBOOH69' where id=4; -update noar tt set b1='Z7ZZTK8473T0T76Y0TF27' where id=4; -update noar ti set b1='Z7ZZTK8473T0T76Y0TF27' where id=4; -update noar tt set b2='AO5UEGO9BDNB2WMYVJF4ZPLA' where id=4; -update noar ti set b2='AO5UEGO9BDNB2WMYVJF4ZPLA' where id=4; -update noar tt set b0='FMDR0GVWPQ6QYPK0K9AASP4KJJZO71C9' where id=5; -update noar ti set b0='FMDR0GVWPQ6QYPK0K9AASP4KJJZO71C9' where id=5; -update noar tt set b1='BXM5OQMOV2H3T31NMV02Y' where id=5; -update noar ti set b1='BXM5OQMOV2H3T31NMV02Y' where id=5; -update noar tt set b2='3AEF5NH2KER56WAGNAQ' where id=5; -update noar ti set b2='3AEF5NH2KER56WAGNAQ' where id=5; -update noar tt set b0='K2DGUVO2ITLS5JMV54I4OKH' where id=6; -update noar ti set b0='K2DGUVO2ITLS5JMV54I4OKH' where id=6; -update noar tt set b1='MRUR5S6ZXDBMA' where id=6; -update noar ti set b1='MRUR5S6ZXDBMA' where id=6; -update noar tt set b2='B4K8Q80ATJJFD9F29L8ZQS98H0FXX2K5' where id=6; -update noar ti set b2='B4K8Q80ATJJFD9F29L8ZQS98H0FXX2K5' where id=6; -update noar tt set b0='I5GYSX' where id=7; -update noar ti set b0='I5GYSX' where id=7; -update noar tt set b1='RL' where id=7; -update noar ti set b1='RL' where id=7; -update noar tt set b2='C9DV9LB2YGHVDDQBUIEF' where id=7; -update noar ti set b2='C9DV9LB2YGHVDDQBUIEF' where id=7; -update noar tt set b0='7Q' where id=8; -update noar ti set b0='7Q' where id=8; -update noar tt set b1='3U90HTAFIVXNAXU3J0RHFJ' where id=8; -update noar ti set b1='3U90HTAFIVXNAXU3J0RHFJ' where id=8; -update noar tt set b2='9FFX6765EPY7' where id=8; -update noar ti set b2='9FFX6765EPY7' where id=8; -update noar tt set b0='XCYOVGDHDNKKB0BGPYI102JR7EIXZET' where id=9; -update noar ti set b0='XCYOVGDHDNKKB0BGPYI102JR7EIXZET' where id=9; -update noar tt set b1='48NH5Z5OJ80HSJ8AH4OH1U3' where id=9; -update noar ti set b1='48NH5Z5OJ80HSJ8AH4OH1U3' where id=9; -update noar tt set b2='EE6K02P5AB' where id=9; -update noar ti set b2='EE6K02P5AB' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -b0 text not null, -b1 tinyblob not null, -b2 tinyblob not null -) engine=tokudb; -insert into tt values (1,'','',''); -insert into tt values (2,'','',''); -insert into tt values (3,'','',''); -insert into tt values (4,'','',''); -insert into tt values (5,'','',''); -insert into tt values (6,'','',''); -insert into tt values (7,'','',''); -insert into tt values (8,'','',''); -insert into tt values (9,'','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set b0='W' where id=1; -update noar ti set b0='W' where id=1; -update noar tt set b1='LMTP0HBUV' where id=1; -update noar ti set b1='LMTP0HBUV' where id=1; -update noar tt set b2='HSVVBHU73SE6IWY621FX' where id=1; -update noar ti set b2='HSVVBHU73SE6IWY621FX' where id=1; -update noar tt set b0='N4CSLN' where id=2; -update noar ti set b0='N4CSLN' where id=2; -update noar tt set b1='UJABUUEUV18WB' where id=2; -update noar ti set b1='UJABUUEUV18WB' where id=2; -update noar tt set b2='V48QOLP0DP7QZDZSW4QCE' where id=2; -update noar ti set b2='V48QOLP0DP7QZDZSW4QCE' where id=2; -update noar tt set b0='9TZTJNYHJ3' where id=3; -update noar ti set b0='9TZTJNYHJ3' where id=3; -update noar tt set b1='6XH9OPDVC' where id=3; -update noar ti set b1='6XH9OPDVC' where id=3; -update noar tt set b2='HCOUDQ' where id=3; -update noar ti set b2='HCOUDQ' where id=3; -update noar tt set b0='99PQGD56BU7FHQGWOYJC' where id=4; -update noar ti set b0='99PQGD56BU7FHQGWOYJC' where id=4; -update noar tt set b1='LAHI6UJO6EKB7Z5WH5D334Q4UJM7LA' where id=4; -update noar ti set b1='LAHI6UJO6EKB7Z5WH5D334Q4UJM7LA' where id=4; -update noar tt set b2='J7RXGNDEBS3XZNRS7M3CUU1' where id=4; -update noar ti set b2='J7RXGNDEBS3XZNRS7M3CUU1' where id=4; -update noar tt set b0='V9EFS' where id=5; -update noar ti set b0='V9EFS' where id=5; -update noar tt set b1='BFJ3' where id=5; -update noar ti set b1='BFJ3' where id=5; -update noar tt set b2='OXPR9QS654' where id=5; -update noar ti set b2='OXPR9QS654' where id=5; -update noar tt set b0='806K' where id=6; -update noar ti set b0='806K' where id=6; -update noar tt set b1='7K94TPJ741TEI' where id=6; -update noar ti set b1='7K94TPJ741TEI' where id=6; -update noar tt set b2='3JN63UR0DNOXZPP683742HJ' where id=6; -update noar ti set b2='3JN63UR0DNOXZPP683742HJ' where id=6; -update noar tt set b0='Z4SMHSB06M5O59UM952HQS5608KH' where id=7; -update noar ti set b0='Z4SMHSB06M5O59UM952HQS5608KH' where id=7; -update noar tt set b1='DWG0ADX0ZJQORJL' where id=7; -update noar ti set b1='DWG0ADX0ZJQORJL' where id=7; -update noar tt set b2='CA4ITK2UZFGKJMM01FZ' where id=7; -update noar ti set b2='CA4ITK2UZFGKJMM01FZ' where id=7; -update noar tt set b0='30ARYOKSVNFNJNL' where id=8; -update noar ti set b0='30ARYOKSVNFNJNL' where id=8; -update noar tt set b1='7EF0MV6535YX1QYTOOVG4QK1' where id=8; -update noar ti set b1='7EF0MV6535YX1QYTOOVG4QK1' where id=8; -update noar tt set b2='I2INHN7R09XBX' where id=8; -update noar ti set b2='I2INHN7R09XBX' where id=8; -update noar tt set b0='VCOHKSB7V3I87ORQ2CN0N7LHNXA7HWF' where id=9; -update noar ti set b0='VCOHKSB7V3I87ORQ2CN0N7LHNXA7HWF' where id=9; -update noar tt set b1='LA5ILHAA31QU2ZFYL' where id=9; -update noar ti set b1='LA5ILHAA31QU2ZFYL' where id=9; -update noar tt set b2='SPZD17HVKKU' where id=9; -update noar ti set b2='SPZD17HVKKU' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -b0 text null, -b1 tinyblob null, -b2 blob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set b0='GCXZ895YBASD0IK1ELMFLN0UC' where id=1; -update noar ti set b0='GCXZ895YBASD0IK1ELMFLN0UC' where id=1; -update noar tt set b1='Y876W40Z5VYB2GDI9BV' where id=1; -update noar ti set b1='Y876W40Z5VYB2GDI9BV' where id=1; -update noar tt set b2='71C1KOZ3B8VEJP5Z2QYBMP78UGB1Y' where id=1; -update noar ti set b2='71C1KOZ3B8VEJP5Z2QYBMP78UGB1Y' where id=1; -update noar tt set b0='FI1Z0OS5D8U1D4SSCL' where id=2; -update noar ti set b0='FI1Z0OS5D8U1D4SSCL' where id=2; -update noar tt set b1='HXVYGU' where id=2; -update noar ti set b1='HXVYGU' where id=2; -update noar tt set b2='ZKCU' where id=2; -update noar ti set b2='ZKCU' where id=2; -update noar tt set b0='QUPNV94G' where id=3; -update noar ti set b0='QUPNV94G' where id=3; -update noar tt set b1='4SO1QP7AW08GCUPQ' where id=3; -update noar ti set b1='4SO1QP7AW08GCUPQ' where id=3; -update noar tt set b2='9I8MMI4DPDXFSK6U1TDXMVSSM' where id=3; -update noar ti set b2='9I8MMI4DPDXFSK6U1TDXMVSSM' where id=3; -update noar tt set b0='V9' where id=4; -update noar ti set b0='V9' where id=4; -update noar tt set b1='FAWA8YRHOX2I63H6EF93' where id=4; -update noar ti set b1='FAWA8YRHOX2I63H6EF93' where id=4; -update noar tt set b2='FAXSY62Q3LKKC68I3W991MACWTD37L' where id=4; -update noar ti set b2='FAXSY62Q3LKKC68I3W991MACWTD37L' where id=4; -update noar tt set b0='NYMONSDQ4MQ' where id=5; -update noar ti set b0='NYMONSDQ4MQ' where id=5; -update noar tt set b1='0HHYNS4VL7JFIW36PHZB88C7J' where id=5; -update noar ti set b1='0HHYNS4VL7JFIW36PHZB88C7J' where id=5; -update noar tt set b2='IZNWS78X9LDDVGLQDBRW2K83TDAM' where id=5; -update noar ti set b2='IZNWS78X9LDDVGLQDBRW2K83TDAM' where id=5; -update noar tt set b0='GGIQ4EY772KPSG501T9RQAEKDVQX' where id=6; -update noar ti set b0='GGIQ4EY772KPSG501T9RQAEKDVQX' where id=6; -update noar tt set b1='CF13HBZHJGB2ERMND9WZ4VOMV6QH' where id=6; -update noar ti set b1='CF13HBZHJGB2ERMND9WZ4VOMV6QH' where id=6; -update noar tt set b2='M9MN72C' where id=6; -update noar ti set b2='M9MN72C' where id=6; -update noar tt set b0='8H6G54PQQHAT196FPL4Y60DD9BMT' where id=7; -update noar ti set b0='8H6G54PQQHAT196FPL4Y60DD9BMT' where id=7; -update noar tt set b1='XFZ' where id=7; -update noar ti set b1='XFZ' where id=7; -update noar tt set b2='XH5' where id=7; -update noar ti set b2='XH5' where id=7; -update noar tt set b0='CBTBDHU5WNR9DPKSTLUNPIT0N7J7O77P' where id=8; -update noar ti set b0='CBTBDHU5WNR9DPKSTLUNPIT0N7J7O77P' where id=8; -update noar tt set b1='0V0W2UYBT' where id=8; -update noar ti set b1='0V0W2UYBT' where id=8; -update noar tt set b2='TAGL08D35XLRRKLUPITQBKR3DZUZ' where id=8; -update noar ti set b2='TAGL08D35XLRRKLUPITQBKR3DZUZ' where id=8; -update noar tt set b0='873B3' where id=9; -update noar ti set b0='873B3' where id=9; -update noar tt set b1='G2RCWFZX2UEOPX6FMS71PVXM' where id=9; -update noar ti set b1='G2RCWFZX2UEOPX6FMS71PVXM' where id=9; -update noar tt set b2='JI969NWTEN1RZ8BUTPZTK' where id=9; -update noar ti set b2='JI969NWTEN1RZ8BUTPZTK' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -b0 text not null, -b1 tinyblob not null, -b2 blob not null -) engine=tokudb; -insert into tt values (1,'','',''); -insert into tt values (2,'','',''); -insert into tt values (3,'','',''); -insert into tt values (4,'','',''); -insert into tt values (5,'','',''); -insert into tt values (6,'','',''); -insert into tt values (7,'','',''); -insert into tt values (8,'','',''); -insert into tt values (9,'','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set b0='W02CNZAIFE6IA3XPHR1HFZL4DEJKP1' where id=1; -update noar ti set b0='W02CNZAIFE6IA3XPHR1HFZL4DEJKP1' where id=1; -update noar tt set b1='2S0RGEC2NWEMOKIVLCNGA98NE5ZUADK' where id=1; -update noar ti set b1='2S0RGEC2NWEMOKIVLCNGA98NE5ZUADK' where id=1; -update noar tt set b2='6ALIGAHIG7OU6CYHHB46A0CO7FM7' where id=1; -update noar ti set b2='6ALIGAHIG7OU6CYHHB46A0CO7FM7' where id=1; -update noar tt set b0='7MI8UGUB6D9CM' where id=2; -update noar ti set b0='7MI8UGUB6D9CM' where id=2; -update noar tt set b1='9OZOGGDN05L0KC4YV17EG7ARPURZJ' where id=2; -update noar ti set b1='9OZOGGDN05L0KC4YV17EG7ARPURZJ' where id=2; -update noar tt set b2='KJWDCTGKH' where id=2; -update noar ti set b2='KJWDCTGKH' where id=2; -update noar tt set b0='SRLFGXFU' where id=3; -update noar ti set b0='SRLFGXFU' where id=3; -update noar tt set b1='NRAXYY33FI76750' where id=3; -update noar ti set b1='NRAXYY33FI76750' where id=3; -update noar tt set b2='HJOX9BI6KCST6M9VH2HBM0' where id=3; -update noar ti set b2='HJOX9BI6KCST6M9VH2HBM0' where id=3; -update noar tt set b0='1' where id=4; -update noar ti set b0='1' where id=4; -update noar tt set b1='7OPKY500TN6QA5LIVTE608C' where id=4; -update noar ti set b1='7OPKY500TN6QA5LIVTE608C' where id=4; -update noar tt set b2='N1TP86ODBIETCM4A6KH' where id=4; -update noar ti set b2='N1TP86ODBIETCM4A6KH' where id=4; -update noar tt set b0='91TQYZYM7GJLU99Q' where id=5; -update noar ti set b0='91TQYZYM7GJLU99Q' where id=5; -update noar tt set b1='HJIC7GF' where id=5; -update noar ti set b1='HJIC7GF' where id=5; -update noar tt set b2='DUT1H546UGUP0' where id=5; -update noar ti set b2='DUT1H546UGUP0' where id=5; -update noar tt set b0='I4KL0FJMFN7G88CM8A1YZRJFI' where id=6; -update noar ti set b0='I4KL0FJMFN7G88CM8A1YZRJFI' where id=6; -update noar tt set b1='Y5GX9NCQ2MH03' where id=6; -update noar ti set b1='Y5GX9NCQ2MH03' where id=6; -update noar tt set b2='3Y6G0GLO' where id=6; -update noar ti set b2='3Y6G0GLO' where id=6; -update noar tt set b0='COVBM' where id=7; -update noar ti set b0='COVBM' where id=7; -update noar tt set b1='VSRX00E6' where id=7; -update noar ti set b1='VSRX00E6' where id=7; -update noar tt set b2='IYNB6AJG90M6HI' where id=7; -update noar ti set b2='IYNB6AJG90M6HI' where id=7; -update noar tt set b0='UQK1HUF1EM04BEV4HA27' where id=8; -update noar ti set b0='UQK1HUF1EM04BEV4HA27' where id=8; -update noar tt set b1='UMPI' where id=8; -update noar ti set b1='UMPI' where id=8; -update noar tt set b2='BETVTQP5FSD6Q79XM' where id=8; -update noar ti set b2='BETVTQP5FSD6Q79XM' where id=8; -update noar tt set b0='6JZAY3R6UU5O3H' where id=9; -update noar ti set b0='6JZAY3R6UU5O3H' where id=9; -update noar tt set b1='EDXP5TEFI4OL0KLHVGJ5I2DB2SU' where id=9; -update noar ti set b1='EDXP5TEFI4OL0KLHVGJ5I2DB2SU' where id=9; -update noar tt set b2='W82SEP' where id=9; -update noar ti set b2='W82SEP' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -b0 text null, -b1 tinyblob null, -b2 mediumblob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set b0='R2BWLS' where id=1; -update noar ti set b0='R2BWLS' where id=1; -update noar tt set b1='ZDF9RS0NKL2GN0WG03BX' where id=1; -update noar ti set b1='ZDF9RS0NKL2GN0WG03BX' where id=1; -update noar tt set b2='OAI' where id=1; -update noar ti set b2='OAI' where id=1; -update noar tt set b0='1646ESR6RAL2PLJQHBFPG' where id=2; -update noar ti set b0='1646ESR6RAL2PLJQHBFPG' where id=2; -update noar tt set b1='3AZX293T2' where id=2; -update noar ti set b1='3AZX293T2' where id=2; -update noar tt set b2='L3AIYOZLK5' where id=2; -update noar ti set b2='L3AIYOZLK5' where id=2; -update noar tt set b0='S' where id=3; -update noar ti set b0='S' where id=3; -update noar tt set b1='XLYS9DA8I2I3NB3K09RUDZP26X' where id=3; -update noar ti set b1='XLYS9DA8I2I3NB3K09RUDZP26X' where id=3; -update noar tt set b2='9E' where id=3; -update noar ti set b2='9E' where id=3; -update noar tt set b0='7CIX6DFZ4P' where id=4; -update noar ti set b0='7CIX6DFZ4P' where id=4; -update noar tt set b1='CBAGXJS52VC4CCE3294TPMW7JCW' where id=4; -update noar ti set b1='CBAGXJS52VC4CCE3294TPMW7JCW' where id=4; -update noar tt set b2='96RZW66O6YKB6S1F4Q4ROSOANN951KE3' where id=4; -update noar ti set b2='96RZW66O6YKB6S1F4Q4ROSOANN951KE3' where id=4; -update noar tt set b0='CN4IMBRA6VFRQCAHTYX0FKRPI6GLI1' where id=5; -update noar ti set b0='CN4IMBRA6VFRQCAHTYX0FKRPI6GLI1' where id=5; -update noar tt set b1='UI' where id=5; -update noar ti set b1='UI' where id=5; -update noar tt set b2='6HGTWM1WK873UOEHXJILP7UT' where id=5; -update noar ti set b2='6HGTWM1WK873UOEHXJILP7UT' where id=5; -update noar tt set b0='J' where id=6; -update noar ti set b0='J' where id=6; -update noar tt set b1='QO9F2ZTHGUQS7ZV' where id=6; -update noar ti set b1='QO9F2ZTHGUQS7ZV' where id=6; -update noar tt set b2='RW0T7PHY31X2ZLMK3FGK8OL' where id=6; -update noar ti set b2='RW0T7PHY31X2ZLMK3FGK8OL' where id=6; -update noar tt set b0='6L5M21FO7GRRK1BGWQ' where id=7; -update noar ti set b0='6L5M21FO7GRRK1BGWQ' where id=7; -update noar tt set b1='YHZKTIH6MSL4V0FMJSNPLA' where id=7; -update noar ti set b1='YHZKTIH6MSL4V0FMJSNPLA' where id=7; -update noar tt set b2='PLKQZJOBU75APK3UK5GUU' where id=7; -update noar ti set b2='PLKQZJOBU75APK3UK5GUU' where id=7; -update noar tt set b0='Q01INRM3YFONS4OMY8AT84' where id=8; -update noar ti set b0='Q01INRM3YFONS4OMY8AT84' where id=8; -update noar tt set b1='YDLY7AEMS' where id=8; -update noar ti set b1='YDLY7AEMS' where id=8; -update noar tt set b2='JDMIJAFT0' where id=8; -update noar ti set b2='JDMIJAFT0' where id=8; -update noar tt set b0='LYMGXEHWIPSU0' where id=9; -update noar ti set b0='LYMGXEHWIPSU0' where id=9; -update noar tt set b1='NSVKLSVLJNGDU' where id=9; -update noar ti set b1='NSVKLSVLJNGDU' where id=9; -update noar tt set b2='JCNMN0PNRDM4ZUD37AD0I4SCL34' where id=9; -update noar ti set b2='JCNMN0PNRDM4ZUD37AD0I4SCL34' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -b0 text not null, -b1 tinyblob not null, -b2 mediumblob not null -) engine=tokudb; -insert into tt values (1,'','',''); -insert into tt values (2,'','',''); -insert into tt values (3,'','',''); -insert into tt values (4,'','',''); -insert into tt values (5,'','',''); -insert into tt values (6,'','',''); -insert into tt values (7,'','',''); -insert into tt values (8,'','',''); -insert into tt values (9,'','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set b0='KZLVWSLYP' where id=1; -update noar ti set b0='KZLVWSLYP' where id=1; -update noar tt set b1='PRIGWZX2' where id=1; -update noar ti set b1='PRIGWZX2' where id=1; -update noar tt set b2='ORQZVPP0JOJCXEOIBISVBO' where id=1; -update noar ti set b2='ORQZVPP0JOJCXEOIBISVBO' where id=1; -update noar tt set b0='BR2ZBJSWSOBQ' where id=2; -update noar ti set b0='BR2ZBJSWSOBQ' where id=2; -update noar tt set b1='LNQ85NN3W0' where id=2; -update noar ti set b1='LNQ85NN3W0' where id=2; -update noar tt set b2='E' where id=2; -update noar ti set b2='E' where id=2; -update noar tt set b0='3NHG5H' where id=3; -update noar ti set b0='3NHG5H' where id=3; -update noar tt set b1='T8GJE56GLP0MUOD0L700H25L7IYWZR' where id=3; -update noar ti set b1='T8GJE56GLP0MUOD0L700H25L7IYWZR' where id=3; -update noar tt set b2='OGMXEXZ6N4GZLC0FCGJYCM6DQ4F' where id=3; -update noar ti set b2='OGMXEXZ6N4GZLC0FCGJYCM6DQ4F' where id=3; -update noar tt set b0='AKFH' where id=4; -update noar ti set b0='AKFH' where id=4; -update noar tt set b1='MJ6KLHS7Z' where id=4; -update noar ti set b1='MJ6KLHS7Z' where id=4; -update noar tt set b2='JUBQVRKCG' where id=4; -update noar ti set b2='JUBQVRKCG' where id=4; -update noar tt set b0='FKMRKIMU' where id=5; -update noar ti set b0='FKMRKIMU' where id=5; -update noar tt set b1='U50ZE5FFO9W8E4K6AFP2EFYW08QOJUO' where id=5; -update noar ti set b1='U50ZE5FFO9W8E4K6AFP2EFYW08QOJUO' where id=5; -update noar tt set b2='CM1SWIRPXU5' where id=5; -update noar ti set b2='CM1SWIRPXU5' where id=5; -update noar tt set b0='M5PCMRB' where id=6; -update noar ti set b0='M5PCMRB' where id=6; -update noar tt set b1='FBURUI3K4GA0FVDWT' where id=6; -update noar ti set b1='FBURUI3K4GA0FVDWT' where id=6; -update noar tt set b2='C4O14LBKH942WDPOHTA7727RO5' where id=6; -update noar ti set b2='C4O14LBKH942WDPOHTA7727RO5' where id=6; -update noar tt set b0='8NW0SXJJVB6BIGXN86O7WFI' where id=7; -update noar ti set b0='8NW0SXJJVB6BIGXN86O7WFI' where id=7; -update noar tt set b1='HX7U13QFVN' where id=7; -update noar ti set b1='HX7U13QFVN' where id=7; -update noar tt set b2='3YLV3HUTQZ0HBDP83IMZKSWROKD' where id=7; -update noar ti set b2='3YLV3HUTQZ0HBDP83IMZKSWROKD' where id=7; -update noar tt set b0='861WKMVZYTDRCL218STCI5Q37TG' where id=8; -update noar ti set b0='861WKMVZYTDRCL218STCI5Q37TG' where id=8; -update noar tt set b1='G' where id=8; -update noar ti set b1='G' where id=8; -update noar tt set b2='28J7TPGOZY1L2H5NI4BXO' where id=8; -update noar ti set b2='28J7TPGOZY1L2H5NI4BXO' where id=8; -update noar tt set b0='9WU9K6AVXMHLHE' where id=9; -update noar ti set b0='9WU9K6AVXMHLHE' where id=9; -update noar tt set b1='V6W2F0RW2OI6' where id=9; -update noar ti set b1='V6W2F0RW2OI6' where id=9; -update noar tt set b2='TO6RY9SO8EUZG' where id=9; -update noar ti set b2='TO6RY9SO8EUZG' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -b0 text null, -b1 tinyblob null, -b2 longblob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set b0='P026RGI7' where id=1; -update noar ti set b0='P026RGI7' where id=1; -update noar tt set b1='HMB9' where id=1; -update noar ti set b1='HMB9' where id=1; -update noar tt set b2='9WXAOR36R22G4KIOMF61CJOPPREE1FPV' where id=1; -update noar ti set b2='9WXAOR36R22G4KIOMF61CJOPPREE1FPV' where id=1; -update noar tt set b0='Z7SLVMLJI90YXKSME4U5JSWW1NDAGPOJ' where id=2; -update noar ti set b0='Z7SLVMLJI90YXKSME4U5JSWW1NDAGPOJ' where id=2; -update noar tt set b1='L6GG3W5SD1J9KNDX9N86EHFF4IJ0G' where id=2; -update noar ti set b1='L6GG3W5SD1J9KNDX9N86EHFF4IJ0G' where id=2; -update noar tt set b2='I2EJVK6KO9CLLBW1GBL2VDW1JZXV' where id=2; -update noar ti set b2='I2EJVK6KO9CLLBW1GBL2VDW1JZXV' where id=2; -update noar tt set b0='7WT8QY6JHLN4PL' where id=3; -update noar ti set b0='7WT8QY6JHLN4PL' where id=3; -update noar tt set b1='ESYH9FOXUA' where id=3; -update noar ti set b1='ESYH9FOXUA' where id=3; -update noar tt set b2='VKU89BAEF0SML8GWML1M2O8U05NAN5F0' where id=3; -update noar ti set b2='VKU89BAEF0SML8GWML1M2O8U05NAN5F0' where id=3; -update noar tt set b0='NBQI1ETMT9YQTOJEMRMSV' where id=4; -update noar ti set b0='NBQI1ETMT9YQTOJEMRMSV' where id=4; -update noar tt set b1='5NBGCT6QI8I' where id=4; -update noar ti set b1='5NBGCT6QI8I' where id=4; -update noar tt set b2='G99KPIG3B1R3AMCH69LH9BUNFXC2G' where id=4; -update noar ti set b2='G99KPIG3B1R3AMCH69LH9BUNFXC2G' where id=4; -update noar tt set b0='AX5IKUQ7814AJMG8VJTY' where id=5; -update noar ti set b0='AX5IKUQ7814AJMG8VJTY' where id=5; -update noar tt set b1='0HRT' where id=5; -update noar ti set b1='0HRT' where id=5; -update noar tt set b2='JI0LRN' where id=5; -update noar ti set b2='JI0LRN' where id=5; -update noar tt set b0='ZLLRV' where id=6; -update noar ti set b0='ZLLRV' where id=6; -update noar tt set b1='AZO0WPETD1IEU2W0E' where id=6; -update noar ti set b1='AZO0WPETD1IEU2W0E' where id=6; -update noar tt set b2='2QWQNWUT7LJEJ0OMLZVANPHYRH' where id=6; -update noar ti set b2='2QWQNWUT7LJEJ0OMLZVANPHYRH' where id=6; -update noar tt set b0='VYCG8MQ1NXT4UG431981BA1CELN9X8' where id=7; -update noar ti set b0='VYCG8MQ1NXT4UG431981BA1CELN9X8' where id=7; -update noar tt set b1='N6FO' where id=7; -update noar ti set b1='N6FO' where id=7; -update noar tt set b2='YLLY98BWGIO81FAP6' where id=7; -update noar ti set b2='YLLY98BWGIO81FAP6' where id=7; -update noar tt set b0='18AF2WKP4MMXGCOWAL4' where id=8; -update noar ti set b0='18AF2WKP4MMXGCOWAL4' where id=8; -update noar tt set b1='5KVYXVMIUE8KC05A4JJY' where id=8; -update noar ti set b1='5KVYXVMIUE8KC05A4JJY' where id=8; -update noar tt set b2='C6X19L' where id=8; -update noar ti set b2='C6X19L' where id=8; -update noar tt set b0='U9B' where id=9; -update noar ti set b0='U9B' where id=9; -update noar tt set b1='P03ERPU' where id=9; -update noar ti set b1='P03ERPU' where id=9; -update noar tt set b2='2K926FRYLL80CNFU7V' where id=9; -update noar ti set b2='2K926FRYLL80CNFU7V' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -b0 text not null, -b1 tinyblob not null, -b2 longblob not null -) engine=tokudb; -insert into tt values (1,'','',''); -insert into tt values (2,'','',''); -insert into tt values (3,'','',''); -insert into tt values (4,'','',''); -insert into tt values (5,'','',''); -insert into tt values (6,'','',''); -insert into tt values (7,'','',''); -insert into tt values (8,'','',''); -insert into tt values (9,'','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set b0='LDZQ62' where id=1; -update noar ti set b0='LDZQ62' where id=1; -update noar tt set b1='TSHQCJAKBWKNSP' where id=1; -update noar ti set b1='TSHQCJAKBWKNSP' where id=1; -update noar tt set b2='V925Z2RR' where id=1; -update noar ti set b2='V925Z2RR' where id=1; -update noar tt set b0='8TA2EGNM082' where id=2; -update noar ti set b0='8TA2EGNM082' where id=2; -update noar tt set b1='ROPWSPB4JF7YPB4TM0PRPO' where id=2; -update noar ti set b1='ROPWSPB4JF7YPB4TM0PRPO' where id=2; -update noar tt set b2='NY0MFA6FH8UA' where id=2; -update noar ti set b2='NY0MFA6FH8UA' where id=2; -update noar tt set b0='9J0NTMDNSGDPJGRF' where id=3; -update noar ti set b0='9J0NTMDNSGDPJGRF' where id=3; -update noar tt set b1='GXXXJPHPV0JUJMP' where id=3; -update noar ti set b1='GXXXJPHPV0JUJMP' where id=3; -update noar tt set b2='01YM61LJ38X6' where id=3; -update noar ti set b2='01YM61LJ38X6' where id=3; -update noar tt set b0='N' where id=4; -update noar ti set b0='N' where id=4; -update noar tt set b1='G7UPQ9Y44OKF0TXUMZ2' where id=4; -update noar ti set b1='G7UPQ9Y44OKF0TXUMZ2' where id=4; -update noar tt set b2='TB5J' where id=4; -update noar ti set b2='TB5J' where id=4; -update noar tt set b0='A' where id=5; -update noar ti set b0='A' where id=5; -update noar tt set b1='6V70U56BSZGKY7NS5WVMQATXSXZ4' where id=5; -update noar ti set b1='6V70U56BSZGKY7NS5WVMQATXSXZ4' where id=5; -update noar tt set b2='WZIUE5OYFUQ4UA9CZVUBM1613ZP' where id=5; -update noar ti set b2='WZIUE5OYFUQ4UA9CZVUBM1613ZP' where id=5; -update noar tt set b0='ZTMC5C5Y67ZTOZHY' where id=6; -update noar ti set b0='ZTMC5C5Y67ZTOZHY' where id=6; -update noar tt set b1='147TP9MG12D7ATN5RB4HUHQRV' where id=6; -update noar ti set b1='147TP9MG12D7ATN5RB4HUHQRV' where id=6; -update noar tt set b2='VMHDCJ1J' where id=6; -update noar ti set b2='VMHDCJ1J' where id=6; -update noar tt set b0='UVK2JX29QW0W4DHOW2BQ4N' where id=7; -update noar ti set b0='UVK2JX29QW0W4DHOW2BQ4N' where id=7; -update noar tt set b1='A1EN6R7ABSBIK1JZY1CGSKWXBSGH' where id=7; -update noar ti set b1='A1EN6R7ABSBIK1JZY1CGSKWXBSGH' where id=7; -update noar tt set b2='EJ59VT5YXEEAM6BO86W6T' where id=7; -update noar ti set b2='EJ59VT5YXEEAM6BO86W6T' where id=7; -update noar tt set b0='U' where id=8; -update noar ti set b0='U' where id=8; -update noar tt set b1='78YUR0Q3D3K9U' where id=8; -update noar ti set b1='78YUR0Q3D3K9U' where id=8; -update noar tt set b2='IUM9GL98NMSU2ZY3BBN4SBLP3N' where id=8; -update noar ti set b2='IUM9GL98NMSU2ZY3BBN4SBLP3N' where id=8; -update noar tt set b0='FWVPAF0F0M3MKIUOVF4W1P' where id=9; -update noar ti set b0='FWVPAF0F0M3MKIUOVF4W1P' where id=9; -update noar tt set b1='WEXY9Y' where id=9; -update noar ti set b1='WEXY9Y' where id=9; -update noar tt set b2='J5RTQE5QAS' where id=9; -update noar ti set b2='J5RTQE5QAS' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -b0 text null, -b1 tinyblob null, -b2 text null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set b0='5C19WLU0CCGOFGGXQFW' where id=1; -update noar ti set b0='5C19WLU0CCGOFGGXQFW' where id=1; -update noar tt set b1='JZ11HN04EHQ61FA7QZFCT7TDJR' where id=1; -update noar ti set b1='JZ11HN04EHQ61FA7QZFCT7TDJR' where id=1; -update noar tt set b2='OFEOC45Q7USIYH5GLN6Q' where id=1; -update noar ti set b2='OFEOC45Q7USIYH5GLN6Q' where id=1; -update noar tt set b0='GL95P5IC6C8MDD7LWVLX9UEJO9IY5N1' where id=2; -update noar ti set b0='GL95P5IC6C8MDD7LWVLX9UEJO9IY5N1' where id=2; -update noar tt set b1='J4EJLSR2' where id=2; -update noar ti set b1='J4EJLSR2' where id=2; -update noar tt set b2='71153JRQONJ8DJZX37W6TLRLH' where id=2; -update noar ti set b2='71153JRQONJ8DJZX37W6TLRLH' where id=2; -update noar tt set b0='SGZVUKASDZQJTYFSL0XOE' where id=3; -update noar ti set b0='SGZVUKASDZQJTYFSL0XOE' where id=3; -update noar tt set b1='BFOB7FKIUVCB' where id=3; -update noar ti set b1='BFOB7FKIUVCB' where id=3; -update noar tt set b2='CTZDNML' where id=3; -update noar ti set b2='CTZDNML' where id=3; -update noar tt set b0='VFC8ZT5EFNA91HDN0ME2' where id=4; -update noar ti set b0='VFC8ZT5EFNA91HDN0ME2' where id=4; -update noar tt set b1='9HYIJD02YJC0TT5A' where id=4; -update noar ti set b1='9HYIJD02YJC0TT5A' where id=4; -update noar tt set b2='BGGBA3B6IK' where id=4; -update noar ti set b2='BGGBA3B6IK' where id=4; -update noar tt set b0='1ZAG871BYX00E0CHQ528B76JLWIYIGK' where id=5; -update noar ti set b0='1ZAG871BYX00E0CHQ528B76JLWIYIGK' where id=5; -update noar tt set b1='QR0QXSBRJDS5YDQ' where id=5; -update noar ti set b1='QR0QXSBRJDS5YDQ' where id=5; -update noar tt set b2='P1X' where id=5; -update noar ti set b2='P1X' where id=5; -update noar tt set b0='NMK41PD5HFO4A0L20JK46QB3FDN5AB' where id=6; -update noar ti set b0='NMK41PD5HFO4A0L20JK46QB3FDN5AB' where id=6; -update noar tt set b1='UQMAPQ3INLUX85L4RS2H' where id=6; -update noar ti set b1='UQMAPQ3INLUX85L4RS2H' where id=6; -update noar tt set b2='WG7KRKI3J51ZPWVE8NEE7OHW4GF' where id=6; -update noar ti set b2='WG7KRKI3J51ZPWVE8NEE7OHW4GF' where id=6; -update noar tt set b0='VYXOSHBDRNGO6P3HSYQ53GHWGODXG7KU' where id=7; -update noar ti set b0='VYXOSHBDRNGO6P3HSYQ53GHWGODXG7KU' where id=7; -update noar tt set b1='E9WE4QJ4' where id=7; -update noar ti set b1='E9WE4QJ4' where id=7; -update noar tt set b2='VM71160W2HBBWXQO735I' where id=7; -update noar ti set b2='VM71160W2HBBWXQO735I' where id=7; -update noar tt set b0='A11YB1TQEHRRY88A2F1YZB5U3' where id=8; -update noar ti set b0='A11YB1TQEHRRY88A2F1YZB5U3' where id=8; -update noar tt set b1='EKDSPE0BMY' where id=8; -update noar ti set b1='EKDSPE0BMY' where id=8; -update noar tt set b2='QOUAQXFP8GE8M8GESVCOIIV5C6V5' where id=8; -update noar ti set b2='QOUAQXFP8GE8M8GESVCOIIV5C6V5' where id=8; -update noar tt set b0='2JT6TY' where id=9; -update noar ti set b0='2JT6TY' where id=9; -update noar tt set b1='SZTYLSBW7VQ' where id=9; -update noar ti set b1='SZTYLSBW7VQ' where id=9; -update noar tt set b2='87' where id=9; -update noar ti set b2='87' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -b0 text not null, -b1 tinyblob not null, -b2 text not null -) engine=tokudb; -insert into tt values (1,'','',''); -insert into tt values (2,'','',''); -insert into tt values (3,'','',''); -insert into tt values (4,'','',''); -insert into tt values (5,'','',''); -insert into tt values (6,'','',''); -insert into tt values (7,'','',''); -insert into tt values (8,'','',''); -insert into tt values (9,'','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set b0='IUUKUIZIUNFRBJA1' where id=1; -update noar ti set b0='IUUKUIZIUNFRBJA1' where id=1; -update noar tt set b1='I7VEUQV1I2I3SIK1D3R0' where id=1; -update noar ti set b1='I7VEUQV1I2I3SIK1D3R0' where id=1; -update noar tt set b2='RLD962Z' where id=1; -update noar ti set b2='RLD962Z' where id=1; -update noar tt set b0='GIDBPR6XSWNT2P54' where id=2; -update noar ti set b0='GIDBPR6XSWNT2P54' where id=2; -update noar tt set b1='WNZ4B1WM31A2H9N6F6WPMCHY1Q' where id=2; -update noar ti set b1='WNZ4B1WM31A2H9N6F6WPMCHY1Q' where id=2; -update noar tt set b2='1J9DP0GVU3FZY' where id=2; -update noar ti set b2='1J9DP0GVU3FZY' where id=2; -update noar tt set b0='VSXJHTPJKYEDGP4SLHG0JLS54X' where id=3; -update noar ti set b0='VSXJHTPJKYEDGP4SLHG0JLS54X' where id=3; -update noar tt set b1='M4L3E3C6MFGX5GDIS9OGPHQ7F1' where id=3; -update noar ti set b1='M4L3E3C6MFGX5GDIS9OGPHQ7F1' where id=3; -update noar tt set b2='MJNMPY1T' where id=3; -update noar ti set b2='MJNMPY1T' where id=3; -update noar tt set b0='95OKX9T8U40BF' where id=4; -update noar ti set b0='95OKX9T8U40BF' where id=4; -update noar tt set b1='MUU1NMS69K' where id=4; -update noar ti set b1='MUU1NMS69K' where id=4; -update noar tt set b2='VKO8L48K29YTD1GJWRF1ZKZVYJFHFIK' where id=4; -update noar ti set b2='VKO8L48K29YTD1GJWRF1ZKZVYJFHFIK' where id=4; -update noar tt set b0='ECAFMVP' where id=5; -update noar ti set b0='ECAFMVP' where id=5; -update noar tt set b1='NMVUYN6DF9NA1GYAK8L5N0PI4J5FXB' where id=5; -update noar ti set b1='NMVUYN6DF9NA1GYAK8L5N0PI4J5FXB' where id=5; -update noar tt set b2='76E5XR398OY1ZRR5M4O5' where id=5; -update noar ti set b2='76E5XR398OY1ZRR5M4O5' where id=5; -update noar tt set b0='5MACI4J4S8MISFHETAA8F' where id=6; -update noar ti set b0='5MACI4J4S8MISFHETAA8F' where id=6; -update noar tt set b1='YB136' where id=6; -update noar ti set b1='YB136' where id=6; -update noar tt set b2='46' where id=6; -update noar ti set b2='46' where id=6; -update noar tt set b0='RYJ2E9MU62OCUPE3Q15NXSOWPJ' where id=7; -update noar ti set b0='RYJ2E9MU62OCUPE3Q15NXSOWPJ' where id=7; -update noar tt set b1='ANJ4DJQDDA1URAHXU9LB79V8DFCTTL' where id=7; -update noar ti set b1='ANJ4DJQDDA1URAHXU9LB79V8DFCTTL' where id=7; -update noar tt set b2='Q3I5RKQOAJN' where id=7; -update noar ti set b2='Q3I5RKQOAJN' where id=7; -update noar tt set b0='JVD6Y3GRUG' where id=8; -update noar ti set b0='JVD6Y3GRUG' where id=8; -update noar tt set b1='1QJ4SAN6Q' where id=8; -update noar ti set b1='1QJ4SAN6Q' where id=8; -update noar tt set b2='1CAWYWTL2Y1DZ4ER5JH1QXZ6RZKM6Y' where id=8; -update noar ti set b2='1CAWYWTL2Y1DZ4ER5JH1QXZ6RZKM6Y' where id=8; -update noar tt set b0='XFPY1Y0USG87O18SAACSQ' where id=9; -update noar ti set b0='XFPY1Y0USG87O18SAACSQ' where id=9; -update noar tt set b1='YX2JU92LEPE0PAH0JRMCG4C0I9XEU' where id=9; -update noar ti set b1='YX2JU92LEPE0PAH0JRMCG4C0I9XEU' where id=9; -update noar tt set b2='IUELD0ATIF341LF0RT86YJXO4F2' where id=9; -update noar ti set b2='IUELD0ATIF341LF0RT86YJXO4F2' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -b0 text null, -b1 blob null, -b2 tinyblob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set b0='639LW3SSYAH9ZKNWZOOH9A5WRT8HDZ9' where id=1; -update noar ti set b0='639LW3SSYAH9ZKNWZOOH9A5WRT8HDZ9' where id=1; -update noar tt set b1='OO4NXLDGOLPR0JCAHG724X174EAH2EI6' where id=1; -update noar ti set b1='OO4NXLDGOLPR0JCAHG724X174EAH2EI6' where id=1; -update noar tt set b2='BWE' where id=1; -update noar ti set b2='BWE' where id=1; -update noar tt set b0='70RQS' where id=2; -update noar ti set b0='70RQS' where id=2; -update noar tt set b1='959F09ZP' where id=2; -update noar ti set b1='959F09ZP' where id=2; -update noar tt set b2='LUJ8FWF3JKHTX' where id=2; -update noar ti set b2='LUJ8FWF3JKHTX' where id=2; -update noar tt set b0='R501GHKFLRXMYI3EV6DAO6F6A5W90PF' where id=3; -update noar ti set b0='R501GHKFLRXMYI3EV6DAO6F6A5W90PF' where id=3; -update noar tt set b1='VHXCSQXP765CQE0X9W2D' where id=3; -update noar ti set b1='VHXCSQXP765CQE0X9W2D' where id=3; -update noar tt set b2='VV' where id=3; -update noar ti set b2='VV' where id=3; -update noar tt set b0='UMN6WVI' where id=4; -update noar ti set b0='UMN6WVI' where id=4; -update noar tt set b1='VSCSC' where id=4; -update noar ti set b1='VSCSC' where id=4; -update noar tt set b2='QQILSU15ZC13OFR' where id=4; -update noar ti set b2='QQILSU15ZC13OFR' where id=4; -update noar tt set b0='3TFOOURBK' where id=5; -update noar ti set b0='3TFOOURBK' where id=5; -update noar tt set b1='OJKB44779HHS85NU2QQPTMH8GACK' where id=5; -update noar ti set b1='OJKB44779HHS85NU2QQPTMH8GACK' where id=5; -update noar tt set b2='4QE0RQ' where id=5; -update noar ti set b2='4QE0RQ' where id=5; -update noar tt set b0='JWDMXPXGJZH5V6I6DG9N' where id=6; -update noar ti set b0='JWDMXPXGJZH5V6I6DG9N' where id=6; -update noar tt set b1='7P3JUWPHCRI8AYNVR6' where id=6; -update noar ti set b1='7P3JUWPHCRI8AYNVR6' where id=6; -update noar tt set b2='3NUA5984ZRUPB4GF' where id=6; -update noar ti set b2='3NUA5984ZRUPB4GF' where id=6; -update noar tt set b0='VQQFLPAJ735O8V1DLRVLX84D557O' where id=7; -update noar ti set b0='VQQFLPAJ735O8V1DLRVLX84D557O' where id=7; -update noar tt set b1='76IHAPI4OJVP' where id=7; -update noar ti set b1='76IHAPI4OJVP' where id=7; -update noar tt set b2='RV0GX0ET1ESQ9LD' where id=7; -update noar ti set b2='RV0GX0ET1ESQ9LD' where id=7; -update noar tt set b0='M725JA0F' where id=8; -update noar ti set b0='M725JA0F' where id=8; -update noar tt set b1='DGNJ34BNQV3ZRFVYQD' where id=8; -update noar ti set b1='DGNJ34BNQV3ZRFVYQD' where id=8; -update noar tt set b2='EXSXZ3T3' where id=8; -update noar ti set b2='EXSXZ3T3' where id=8; -update noar tt set b0='GLUJBG3CD6P9ASKO0IHK8NG' where id=9; -update noar ti set b0='GLUJBG3CD6P9ASKO0IHK8NG' where id=9; -update noar tt set b1='XF' where id=9; -update noar ti set b1='XF' where id=9; -update noar tt set b2='01GLNOYMINL2LWTP14XTMQP5ZCD82NQD' where id=9; -update noar ti set b2='01GLNOYMINL2LWTP14XTMQP5ZCD82NQD' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -b0 text not null, -b1 blob not null, -b2 tinyblob not null -) engine=tokudb; -insert into tt values (1,'','',''); -insert into tt values (2,'','',''); -insert into tt values (3,'','',''); -insert into tt values (4,'','',''); -insert into tt values (5,'','',''); -insert into tt values (6,'','',''); -insert into tt values (7,'','',''); -insert into tt values (8,'','',''); -insert into tt values (9,'','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set b0='CVK0WBAQCY9D0VNT' where id=1; -update noar ti set b0='CVK0WBAQCY9D0VNT' where id=1; -update noar tt set b1='1GNE' where id=1; -update noar ti set b1='1GNE' where id=1; -update noar tt set b2='GMW1G9UIPYXAHTB4DNFEFQK5DD' where id=1; -update noar ti set b2='GMW1G9UIPYXAHTB4DNFEFQK5DD' where id=1; -update noar tt set b0='N7C0NKZFYQTI4DVBAWDS' where id=2; -update noar ti set b0='N7C0NKZFYQTI4DVBAWDS' where id=2; -update noar tt set b1='V8M4JV7Z91G9FM' where id=2; -update noar ti set b1='V8M4JV7Z91G9FM' where id=2; -update noar tt set b2='OC1KN7W3GZTGU8H5O' where id=2; -update noar ti set b2='OC1KN7W3GZTGU8H5O' where id=2; -update noar tt set b0='RA4XEY38I' where id=3; -update noar ti set b0='RA4XEY38I' where id=3; -update noar tt set b1='4067UUNNJ2Z1OMDG902WZ' where id=3; -update noar ti set b1='4067UUNNJ2Z1OMDG902WZ' where id=3; -update noar tt set b2='Z8Q7X1864VLQLA44K1OLU7HR7P5C' where id=3; -update noar ti set b2='Z8Q7X1864VLQLA44K1OLU7HR7P5C' where id=3; -update noar tt set b0='MKXU68RGV2JFUBLAFKW' where id=4; -update noar ti set b0='MKXU68RGV2JFUBLAFKW' where id=4; -update noar tt set b1='WY' where id=4; -update noar ti set b1='WY' where id=4; -update noar tt set b2='94PLXX31OLV9ZNOKKNF4QQJCPZC1RZ64' where id=4; -update noar ti set b2='94PLXX31OLV9ZNOKKNF4QQJCPZC1RZ64' where id=4; -update noar tt set b0='EVSIMUTGQJ8H2BDE3W4NU0RB48WZEIF3' where id=5; -update noar ti set b0='EVSIMUTGQJ8H2BDE3W4NU0RB48WZEIF3' where id=5; -update noar tt set b1='KBFS7C9CW7VTA8FVGRC5GWT4TRCB0KQO' where id=5; -update noar ti set b1='KBFS7C9CW7VTA8FVGRC5GWT4TRCB0KQO' where id=5; -update noar tt set b2='9CE3ITZNPH4THWMAM69F' where id=5; -update noar ti set b2='9CE3ITZNPH4THWMAM69F' where id=5; -update noar tt set b0='2AJ1IT271KPC49SNXMPLWI8' where id=6; -update noar ti set b0='2AJ1IT271KPC49SNXMPLWI8' where id=6; -update noar tt set b1='H68KJGZZ82QT0' where id=6; -update noar ti set b1='H68KJGZZ82QT0' where id=6; -update noar tt set b2='DRF8L7I40BJ68OXRSMC2MQV' where id=6; -update noar ti set b2='DRF8L7I40BJ68OXRSMC2MQV' where id=6; -update noar tt set b0='8VDUN8L' where id=7; -update noar ti set b0='8VDUN8L' where id=7; -update noar tt set b1='DQYXN1SVB' where id=7; -update noar ti set b1='DQYXN1SVB' where id=7; -update noar tt set b2='DFZQS9F1N3XSRS9CTCR' where id=7; -update noar ti set b2='DFZQS9F1N3XSRS9CTCR' where id=7; -update noar tt set b0='YUDJ16IKZSM77ZYJMA3XEJAPG1' where id=8; -update noar ti set b0='YUDJ16IKZSM77ZYJMA3XEJAPG1' where id=8; -update noar tt set b1='PEDQ01X' where id=8; -update noar ti set b1='PEDQ01X' where id=8; -update noar tt set b2='OB6UCNX3OLZPPGREZT5XPJ4' where id=8; -update noar ti set b2='OB6UCNX3OLZPPGREZT5XPJ4' where id=8; -update noar tt set b0='JDG1OW' where id=9; -update noar ti set b0='JDG1OW' where id=9; -update noar tt set b1='P5UQAPXFURKWC2VAIEZBHBIIU8' where id=9; -update noar ti set b1='P5UQAPXFURKWC2VAIEZBHBIIU8' where id=9; -update noar tt set b2='27' where id=9; -update noar ti set b2='27' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -b0 text null, -b1 blob null, -b2 blob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set b0='6604SEUPOJ1NH' where id=1; -update noar ti set b0='6604SEUPOJ1NH' where id=1; -update noar tt set b1='U9UKP73' where id=1; -update noar ti set b1='U9UKP73' where id=1; -update noar tt set b2='D20SE4B542DH5VQNU20KOSF6' where id=1; -update noar ti set b2='D20SE4B542DH5VQNU20KOSF6' where id=1; -update noar tt set b0='NF9XX' where id=2; -update noar ti set b0='NF9XX' where id=2; -update noar tt set b1='24ZM1CL7P' where id=2; -update noar ti set b1='24ZM1CL7P' where id=2; -update noar tt set b2='GIV9E0CEGWFO2APSS62LB2YDOU' where id=2; -update noar ti set b2='GIV9E0CEGWFO2APSS62LB2YDOU' where id=2; -update noar tt set b0='7FYNCVTSF75RXRBU94F3ILDL25GWMF' where id=3; -update noar ti set b0='7FYNCVTSF75RXRBU94F3ILDL25GWMF' where id=3; -update noar tt set b1='TM' where id=3; -update noar ti set b1='TM' where id=3; -update noar tt set b2='BZ0PGFK3NFMCWN5A57HD0QT777TO4' where id=3; -update noar ti set b2='BZ0PGFK3NFMCWN5A57HD0QT777TO4' where id=3; -update noar tt set b0='LMMPIO1Z3' where id=4; -update noar ti set b0='LMMPIO1Z3' where id=4; -update noar tt set b1='CPKDUI5UVT37Q2WF0UICR4T' where id=4; -update noar ti set b1='CPKDUI5UVT37Q2WF0UICR4T' where id=4; -update noar tt set b2='PXZRXSAO7R4LK5AG' where id=4; -update noar ti set b2='PXZRXSAO7R4LK5AG' where id=4; -update noar tt set b0='7SWE1SWALSTRY' where id=5; -update noar ti set b0='7SWE1SWALSTRY' where id=5; -update noar tt set b1='8IAPWSFR66EV4G' where id=5; -update noar ti set b1='8IAPWSFR66EV4G' where id=5; -update noar tt set b2='WLXCIO2HMZTHQ752H' where id=5; -update noar ti set b2='WLXCIO2HMZTHQ752H' where id=5; -update noar tt set b0='X1K5ULAKDCTH' where id=6; -update noar ti set b0='X1K5ULAKDCTH' where id=6; -update noar tt set b1='VU5GM75G7X5RBO8BSBYBUPEQ13V70R' where id=6; -update noar ti set b1='VU5GM75G7X5RBO8BSBYBUPEQ13V70R' where id=6; -update noar tt set b2='OSZE1IM69X' where id=6; -update noar ti set b2='OSZE1IM69X' where id=6; -update noar tt set b0='N4G6CRZX4K7YQ25ZEMGR674U9EFAPYKF' where id=7; -update noar ti set b0='N4G6CRZX4K7YQ25ZEMGR674U9EFAPYKF' where id=7; -update noar tt set b1='F8K1ETN3HQ62M' where id=7; -update noar ti set b1='F8K1ETN3HQ62M' where id=7; -update noar tt set b2='J8B5XCR' where id=7; -update noar ti set b2='J8B5XCR' where id=7; -update noar tt set b0='EGGSUMHTUZ2Z49D0P2NNMWPNU29' where id=8; -update noar ti set b0='EGGSUMHTUZ2Z49D0P2NNMWPNU29' where id=8; -update noar tt set b1='TSP0V0F7YFFP1KC' where id=8; -update noar ti set b1='TSP0V0F7YFFP1KC' where id=8; -update noar tt set b2='X6VM77DCFUFWE9OME' where id=8; -update noar ti set b2='X6VM77DCFUFWE9OME' where id=8; -update noar tt set b0='F695SRM8F6RMKMTDGEUWRWQIUSIBJZ' where id=9; -update noar ti set b0='F695SRM8F6RMKMTDGEUWRWQIUSIBJZ' where id=9; -update noar tt set b1='XP427W4M6C7JWKLNHC39VH6E2QQVXW23' where id=9; -update noar ti set b1='XP427W4M6C7JWKLNHC39VH6E2QQVXW23' where id=9; -update noar tt set b2='PL4S46' where id=9; -update noar ti set b2='PL4S46' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -b0 text not null, -b1 blob not null, -b2 blob not null -) engine=tokudb; -insert into tt values (1,'','',''); -insert into tt values (2,'','',''); -insert into tt values (3,'','',''); -insert into tt values (4,'','',''); -insert into tt values (5,'','',''); -insert into tt values (6,'','',''); -insert into tt values (7,'','',''); -insert into tt values (8,'','',''); -insert into tt values (9,'','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set b0='ZPW4ZC0FLWL' where id=1; -update noar ti set b0='ZPW4ZC0FLWL' where id=1; -update noar tt set b1='HRCFD' where id=1; -update noar ti set b1='HRCFD' where id=1; -update noar tt set b2='XMYRIB8X7DBYPENWR0E4N90SN27517W7' where id=1; -update noar ti set b2='XMYRIB8X7DBYPENWR0E4N90SN27517W7' where id=1; -update noar tt set b0='ANWYLJ7F3OVWYZZ15V27SZV1C2' where id=2; -update noar ti set b0='ANWYLJ7F3OVWYZZ15V27SZV1C2' where id=2; -update noar tt set b1='PBBDLSO9N7' where id=2; -update noar ti set b1='PBBDLSO9N7' where id=2; -update noar tt set b2='B4PBXG3NFGWOYQ5G6R1CSB' where id=2; -update noar ti set b2='B4PBXG3NFGWOYQ5G6R1CSB' where id=2; -update noar tt set b0='PENOUEMLJ5B1RC9L' where id=3; -update noar ti set b0='PENOUEMLJ5B1RC9L' where id=3; -update noar tt set b1='W95CKPSD7LJZNZEOPYDT3U' where id=3; -update noar ti set b1='W95CKPSD7LJZNZEOPYDT3U' where id=3; -update noar tt set b2='AO2ZUAJ44T3J' where id=3; -update noar ti set b2='AO2ZUAJ44T3J' where id=3; -update noar tt set b0='639I9XEB8NUM31TDPVVXPNANX3RSWH' where id=4; -update noar ti set b0='639I9XEB8NUM31TDPVVXPNANX3RSWH' where id=4; -update noar tt set b1='FZTY6' where id=4; -update noar ti set b1='FZTY6' where id=4; -update noar tt set b2='SEUWCXV7KAP' where id=4; -update noar ti set b2='SEUWCXV7KAP' where id=4; -update noar tt set b0='7NJI84HPMG99STTH370A3VVPULZE' where id=5; -update noar ti set b0='7NJI84HPMG99STTH370A3VVPULZE' where id=5; -update noar tt set b1='DMS1X1CR52AS25OOABXADW' where id=5; -update noar ti set b1='DMS1X1CR52AS25OOABXADW' where id=5; -update noar tt set b2='IME633' where id=5; -update noar ti set b2='IME633' where id=5; -update noar tt set b0='ZACORRE3QOAL71KOB4D7AK2UXXESWF' where id=6; -update noar ti set b0='ZACORRE3QOAL71KOB4D7AK2UXXESWF' where id=6; -update noar tt set b1='8S7W28XKIMSS085OXY4VCMXD49AXN' where id=6; -update noar ti set b1='8S7W28XKIMSS085OXY4VCMXD49AXN' where id=6; -update noar tt set b2='L91NFDQTXW849L0TDVC8QKSD9SCR6' where id=6; -update noar ti set b2='L91NFDQTXW849L0TDVC8QKSD9SCR6' where id=6; -update noar tt set b0='9GZG8PCEQNFJU7EQLI9ARFGST' where id=7; -update noar ti set b0='9GZG8PCEQNFJU7EQLI9ARFGST' where id=7; -update noar tt set b1='IX16SA4' where id=7; -update noar ti set b1='IX16SA4' where id=7; -update noar tt set b2='VG4EI3Q1H' where id=7; -update noar ti set b2='VG4EI3Q1H' where id=7; -update noar tt set b0='MY8HU0U2WH38W' where id=8; -update noar ti set b0='MY8HU0U2WH38W' where id=8; -update noar tt set b1='V' where id=8; -update noar ti set b1='V' where id=8; -update noar tt set b2='U5YFNFL3RU9794DGIG2E6KZW85QPLM' where id=8; -update noar ti set b2='U5YFNFL3RU9794DGIG2E6KZW85QPLM' where id=8; -update noar tt set b0='JE94WZHA6G75VPEXZAVV' where id=9; -update noar ti set b0='JE94WZHA6G75VPEXZAVV' where id=9; -update noar tt set b1='3QT5' where id=9; -update noar ti set b1='3QT5' where id=9; -update noar tt set b2='8HUO9PI' where id=9; -update noar ti set b2='8HUO9PI' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -b0 text null, -b1 blob null, -b2 mediumblob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set b0='Z0YMM5JM2NXUZRYPR' where id=1; -update noar ti set b0='Z0YMM5JM2NXUZRYPR' where id=1; -update noar tt set b1='ZI4QU' where id=1; -update noar ti set b1='ZI4QU' where id=1; -update noar tt set b2='IWLYQGF4F9XR' where id=1; -update noar ti set b2='IWLYQGF4F9XR' where id=1; -update noar tt set b0='8DF7PDUAK1Q8JO08I' where id=2; -update noar ti set b0='8DF7PDUAK1Q8JO08I' where id=2; -update noar tt set b1='CZ53T' where id=2; -update noar ti set b1='CZ53T' where id=2; -update noar tt set b2='2C8CV37B302RT4BES' where id=2; -update noar ti set b2='2C8CV37B302RT4BES' where id=2; -update noar tt set b0='GHYTKCC1RU62343XDLQ' where id=3; -update noar ti set b0='GHYTKCC1RU62343XDLQ' where id=3; -update noar tt set b1='ZPIC05VC4073GRPEVDLU1YY097ZQ' where id=3; -update noar ti set b1='ZPIC05VC4073GRPEVDLU1YY097ZQ' where id=3; -update noar tt set b2='68Y8EOS4ATCPDD' where id=3; -update noar ti set b2='68Y8EOS4ATCPDD' where id=3; -update noar tt set b0='TVO3MA44RIQC7B57ZSBDHVBG49JQEYJ' where id=4; -update noar ti set b0='TVO3MA44RIQC7B57ZSBDHVBG49JQEYJ' where id=4; -update noar tt set b1='2MF3' where id=4; -update noar ti set b1='2MF3' where id=4; -update noar tt set b2='HKSV7BZFVNLUXJU6OGVPGYRN' where id=4; -update noar ti set b2='HKSV7BZFVNLUXJU6OGVPGYRN' where id=4; -update noar tt set b0='BDC859S7' where id=5; -update noar ti set b0='BDC859S7' where id=5; -update noar tt set b1='AL3TQ1FEOB29PY811DZDD7L' where id=5; -update noar ti set b1='AL3TQ1FEOB29PY811DZDD7L' where id=5; -update noar tt set b2='ISINVKF23GAJLFF8KEC2FCY0' where id=5; -update noar ti set b2='ISINVKF23GAJLFF8KEC2FCY0' where id=5; -update noar tt set b0='NLJX7SF5ILDY6SHUPBFJLU' where id=6; -update noar ti set b0='NLJX7SF5ILDY6SHUPBFJLU' where id=6; -update noar tt set b1='NYE6E34KK7MJFTIC6UC8ZHUQ0H' where id=6; -update noar ti set b1='NYE6E34KK7MJFTIC6UC8ZHUQ0H' where id=6; -update noar tt set b2='ZR' where id=6; -update noar ti set b2='ZR' where id=6; -update noar tt set b0='7U3BBQI5DH4H' where id=7; -update noar ti set b0='7U3BBQI5DH4H' where id=7; -update noar tt set b1='MPYYN6Y92SG6ADA6WOBB9DS1RBF1E2' where id=7; -update noar ti set b1='MPYYN6Y92SG6ADA6WOBB9DS1RBF1E2' where id=7; -update noar tt set b2='P911GC' where id=7; -update noar ti set b2='P911GC' where id=7; -update noar tt set b0='YXYGPU9KQUXG' where id=8; -update noar ti set b0='YXYGPU9KQUXG' where id=8; -update noar tt set b1='15W4' where id=8; -update noar ti set b1='15W4' where id=8; -update noar tt set b2='22MEOHC9T3BTK0VPSVOPH9LR' where id=8; -update noar ti set b2='22MEOHC9T3BTK0VPSVOPH9LR' where id=8; -update noar tt set b0='JILIU' where id=9; -update noar ti set b0='JILIU' where id=9; -update noar tt set b1='O2GGP60RF2R7W4Z3R' where id=9; -update noar ti set b1='O2GGP60RF2R7W4Z3R' where id=9; -update noar tt set b2='7' where id=9; -update noar ti set b2='7' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -b0 text not null, -b1 blob not null, -b2 mediumblob not null -) engine=tokudb; -insert into tt values (1,'','',''); -insert into tt values (2,'','',''); -insert into tt values (3,'','',''); -insert into tt values (4,'','',''); -insert into tt values (5,'','',''); -insert into tt values (6,'','',''); -insert into tt values (7,'','',''); -insert into tt values (8,'','',''); -insert into tt values (9,'','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set b0='OEWYKUULY0Q7E3Y1NU8LX1EF2P4R6PD' where id=1; -update noar ti set b0='OEWYKUULY0Q7E3Y1NU8LX1EF2P4R6PD' where id=1; -update noar tt set b1='DN' where id=1; -update noar ti set b1='DN' where id=1; -update noar tt set b2='P7QT77VLUR2BGCXW9M1' where id=1; -update noar ti set b2='P7QT77VLUR2BGCXW9M1' where id=1; -update noar tt set b0='FPV99KYKUFTOQU' where id=2; -update noar ti set b0='FPV99KYKUFTOQU' where id=2; -update noar tt set b1='AY25HWDKZFVHYI4KUFOOLBR' where id=2; -update noar ti set b1='AY25HWDKZFVHYI4KUFOOLBR' where id=2; -update noar tt set b2='KWWNEU9SU8N9JLPH6D0' where id=2; -update noar ti set b2='KWWNEU9SU8N9JLPH6D0' where id=2; -update noar tt set b0='V34O7O5F7TC89GWNXK14A5WS' where id=3; -update noar ti set b0='V34O7O5F7TC89GWNXK14A5WS' where id=3; -update noar tt set b1='JWASTWP6EIIOH609BA7LX7CQI' where id=3; -update noar ti set b1='JWASTWP6EIIOH609BA7LX7CQI' where id=3; -update noar tt set b2='YIY0HZBFA' where id=3; -update noar ti set b2='YIY0HZBFA' where id=3; -update noar tt set b0='8H7DXS102TU3IXV0CCIZJXK' where id=4; -update noar ti set b0='8H7DXS102TU3IXV0CCIZJXK' where id=4; -update noar tt set b1='W' where id=4; -update noar ti set b1='W' where id=4; -update noar tt set b2='6QPG4F8JY0XBI5ZUCY4' where id=4; -update noar ti set b2='6QPG4F8JY0XBI5ZUCY4' where id=4; -update noar tt set b0='AW2KK' where id=5; -update noar ti set b0='AW2KK' where id=5; -update noar tt set b1='TJ6S4ZFS4486CBCD6AXJFI' where id=5; -update noar ti set b1='TJ6S4ZFS4486CBCD6AXJFI' where id=5; -update noar tt set b2='IS5W52VX669CAB8PJSSJMJ6ZQQ741QH' where id=5; -update noar ti set b2='IS5W52VX669CAB8PJSSJMJ6ZQQ741QH' where id=5; -update noar tt set b0='7A6Z6VEZJRSM' where id=6; -update noar ti set b0='7A6Z6VEZJRSM' where id=6; -update noar tt set b1='G696QBIK2QTVEVIZOWG9E2S' where id=6; -update noar ti set b1='G696QBIK2QTVEVIZOWG9E2S' where id=6; -update noar tt set b2='IZ073IH8YIOA' where id=6; -update noar ti set b2='IZ073IH8YIOA' where id=6; -update noar tt set b0='22I7VKEJDLR8WR891QMXIK8B0ESL70L' where id=7; -update noar ti set b0='22I7VKEJDLR8WR891QMXIK8B0ESL70L' where id=7; -update noar tt set b1='KZ4P7UQ391WEFSY797W2M3Q8PU' where id=7; -update noar ti set b1='KZ4P7UQ391WEFSY797W2M3Q8PU' where id=7; -update noar tt set b2='UD4U6MQMX89' where id=7; -update noar ti set b2='UD4U6MQMX89' where id=7; -update noar tt set b0='N026JXH0BVWP' where id=8; -update noar ti set b0='N026JXH0BVWP' where id=8; -update noar tt set b1='FYTUD' where id=8; -update noar ti set b1='FYTUD' where id=8; -update noar tt set b2='54' where id=8; -update noar ti set b2='54' where id=8; -update noar tt set b0='C1BT' where id=9; -update noar ti set b0='C1BT' where id=9; -update noar tt set b1='V0' where id=9; -update noar ti set b1='V0' where id=9; -update noar tt set b2='S6MOT0M8JOH8JN3DPS7P3A' where id=9; -update noar ti set b2='S6MOT0M8JOH8JN3DPS7P3A' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -b0 text null, -b1 blob null, -b2 longblob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set b0='ZBRG79B9G5RZEND4O7GQ9L' where id=1; -update noar ti set b0='ZBRG79B9G5RZEND4O7GQ9L' where id=1; -update noar tt set b1='40M' where id=1; -update noar ti set b1='40M' where id=1; -update noar tt set b2='AGW99IRGKV36OHW186A9CDMF1W' where id=1; -update noar ti set b2='AGW99IRGKV36OHW186A9CDMF1W' where id=1; -update noar tt set b0='4RHC85920A6RF' where id=2; -update noar ti set b0='4RHC85920A6RF' where id=2; -update noar tt set b1='X613EFQG9X5G7B92Y8M5U3A' where id=2; -update noar ti set b1='X613EFQG9X5G7B92Y8M5U3A' where id=2; -update noar tt set b2='ZXAKH' where id=2; -update noar ti set b2='ZXAKH' where id=2; -update noar tt set b0='S1DWBV0EOJCSXTWZ2P8TX4B' where id=3; -update noar ti set b0='S1DWBV0EOJCSXTWZ2P8TX4B' where id=3; -update noar tt set b1='O0DDZ53H3OKX0KDO6MK4OR' where id=3; -update noar ti set b1='O0DDZ53H3OKX0KDO6MK4OR' where id=3; -update noar tt set b2='J18WK' where id=3; -update noar ti set b2='J18WK' where id=3; -update noar tt set b0='969OH' where id=4; -update noar ti set b0='969OH' where id=4; -update noar tt set b1='DWJCHH7TVC3CWTBCPO6R0WK' where id=4; -update noar ti set b1='DWJCHH7TVC3CWTBCPO6R0WK' where id=4; -update noar tt set b2='GTT15TVKP' where id=4; -update noar ti set b2='GTT15TVKP' where id=4; -update noar tt set b0='25IL7ZXWJN9YWSPEZ26P8CSUKW0E' where id=5; -update noar ti set b0='25IL7ZXWJN9YWSPEZ26P8CSUKW0E' where id=5; -update noar tt set b1='LLC89' where id=5; -update noar ti set b1='LLC89' where id=5; -update noar tt set b2='CRY8702G6LVMB' where id=5; -update noar ti set b2='CRY8702G6LVMB' where id=5; -update noar tt set b0='HFE' where id=6; -update noar ti set b0='HFE' where id=6; -update noar tt set b1='EBWZ' where id=6; -update noar ti set b1='EBWZ' where id=6; -update noar tt set b2='FD' where id=6; -update noar ti set b2='FD' where id=6; -update noar tt set b0='LP3QOJEELP' where id=7; -update noar ti set b0='LP3QOJEELP' where id=7; -update noar tt set b1='R2OPGOQETJP' where id=7; -update noar ti set b1='R2OPGOQETJP' where id=7; -update noar tt set b2='2C2VXCUH1B9XL3YFW3NNJ4QNMB09QF' where id=7; -update noar ti set b2='2C2VXCUH1B9XL3YFW3NNJ4QNMB09QF' where id=7; -update noar tt set b0='7WVMQOGLF632B99IG3UDBPWR5RUL58QM' where id=8; -update noar ti set b0='7WVMQOGLF632B99IG3UDBPWR5RUL58QM' where id=8; -update noar tt set b1='GJBCRUWTQXDBEL1G7JU9MYP5AV7L0D8' where id=8; -update noar ti set b1='GJBCRUWTQXDBEL1G7JU9MYP5AV7L0D8' where id=8; -update noar tt set b2='T2EAB1E9L3MD4BIK1' where id=8; -update noar ti set b2='T2EAB1E9L3MD4BIK1' where id=8; -update noar tt set b0='M40E8H6JM6' where id=9; -update noar ti set b0='M40E8H6JM6' where id=9; -update noar tt set b1='HTYWYY9D0BSZMO0XRAZG2LXZMWS' where id=9; -update noar ti set b1='HTYWYY9D0BSZMO0XRAZG2LXZMWS' where id=9; -update noar tt set b2='XUB8ZSSJNJDAJ45PVYXN4GR2O1GBQT9' where id=9; -update noar ti set b2='XUB8ZSSJNJDAJ45PVYXN4GR2O1GBQT9' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -b0 text not null, -b1 blob not null, -b2 longblob not null -) engine=tokudb; -insert into tt values (1,'','',''); -insert into tt values (2,'','',''); -insert into tt values (3,'','',''); -insert into tt values (4,'','',''); -insert into tt values (5,'','',''); -insert into tt values (6,'','',''); -insert into tt values (7,'','',''); -insert into tt values (8,'','',''); -insert into tt values (9,'','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set b0='ECB3EOOST' where id=1; -update noar ti set b0='ECB3EOOST' where id=1; -update noar tt set b1='3' where id=1; -update noar ti set b1='3' where id=1; -update noar tt set b2='DT7AZRXV235GNTCG' where id=1; -update noar ti set b2='DT7AZRXV235GNTCG' where id=1; -update noar tt set b0='AJ' where id=2; -update noar ti set b0='AJ' where id=2; -update noar tt set b1='ZKRBO8BSF1QTD1O2YH8S3EQ' where id=2; -update noar ti set b1='ZKRBO8BSF1QTD1O2YH8S3EQ' where id=2; -update noar tt set b2='SWW2Y9S1NJ9CEEPL4X798V9' where id=2; -update noar ti set b2='SWW2Y9S1NJ9CEEPL4X798V9' where id=2; -update noar tt set b0='6MNNRV73AF0VZ3Z' where id=3; -update noar ti set b0='6MNNRV73AF0VZ3Z' where id=3; -update noar tt set b1='WKI' where id=3; -update noar ti set b1='WKI' where id=3; -update noar tt set b2='LDO005JI41OV6K099DZJQ4IS85' where id=3; -update noar ti set b2='LDO005JI41OV6K099DZJQ4IS85' where id=3; -update noar tt set b0='FZRNQGH6GJAE4S1XGOKZFCOR0' where id=4; -update noar ti set b0='FZRNQGH6GJAE4S1XGOKZFCOR0' where id=4; -update noar tt set b1='Y9HQ8FFNO3E53VLIGW4Q' where id=4; -update noar ti set b1='Y9HQ8FFNO3E53VLIGW4Q' where id=4; -update noar tt set b2='51282NTOVOEY77F' where id=4; -update noar ti set b2='51282NTOVOEY77F' where id=4; -update noar tt set b0='AZN4K5RY2OK' where id=5; -update noar ti set b0='AZN4K5RY2OK' where id=5; -update noar tt set b1='ULQ1KDH8Q' where id=5; -update noar ti set b1='ULQ1KDH8Q' where id=5; -update noar tt set b2='B0O0E15KI' where id=5; -update noar ti set b2='B0O0E15KI' where id=5; -update noar tt set b0='D36PS8GP5A85BT4PWGACGLD' where id=6; -update noar ti set b0='D36PS8GP5A85BT4PWGACGLD' where id=6; -update noar tt set b1='HJA2EVLGSMIMW' where id=6; -update noar ti set b1='HJA2EVLGSMIMW' where id=6; -update noar tt set b2='4X' where id=6; -update noar ti set b2='4X' where id=6; -update noar tt set b0='TDSTY3C9AMSBLWX83U2CBPI46' where id=7; -update noar ti set b0='TDSTY3C9AMSBLWX83U2CBPI46' where id=7; -update noar tt set b1='QJQL6O7A4AH9YVGKD72IU9P' where id=7; -update noar ti set b1='QJQL6O7A4AH9YVGKD72IU9P' where id=7; -update noar tt set b2='DIP13EXSBZEEM0K8NR0W23631K1J' where id=7; -update noar ti set b2='DIP13EXSBZEEM0K8NR0W23631K1J' where id=7; -update noar tt set b0='UQK9W7AR0H3I4UFPNCF1' where id=8; -update noar ti set b0='UQK9W7AR0H3I4UFPNCF1' where id=8; -update noar tt set b1='HJAZ' where id=8; -update noar ti set b1='HJAZ' where id=8; -update noar tt set b2='A569YD19ZF23K67YWVY' where id=8; -update noar ti set b2='A569YD19ZF23K67YWVY' where id=8; -update noar tt set b0='8WQW4RKLPDM2NL9B484D1MBM6UGMB3B4' where id=9; -update noar ti set b0='8WQW4RKLPDM2NL9B484D1MBM6UGMB3B4' where id=9; -update noar tt set b1='BNKWZ' where id=9; -update noar ti set b1='BNKWZ' where id=9; -update noar tt set b2='AVV955VSW47QH1CI42D0JZPG5C' where id=9; -update noar ti set b2='AVV955VSW47QH1CI42D0JZPG5C' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -b0 text null, -b1 blob null, -b2 text null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set b0='NBT461F4JIGF6B3KY70D3HCE25HVJ' where id=1; -update noar ti set b0='NBT461F4JIGF6B3KY70D3HCE25HVJ' where id=1; -update noar tt set b1='L41VQCK6DMMFND1KRV45H4' where id=1; -update noar ti set b1='L41VQCK6DMMFND1KRV45H4' where id=1; -update noar tt set b2='761E2M' where id=1; -update noar ti set b2='761E2M' where id=1; -update noar tt set b0='823Y9MXU' where id=2; -update noar ti set b0='823Y9MXU' where id=2; -update noar tt set b1='W165L' where id=2; -update noar ti set b1='W165L' where id=2; -update noar tt set b2='EJ66JI8AEI31YA' where id=2; -update noar ti set b2='EJ66JI8AEI31YA' where id=2; -update noar tt set b0='P7TRKT' where id=3; -update noar ti set b0='P7TRKT' where id=3; -update noar tt set b1='7RXAVJO' where id=3; -update noar ti set b1='7RXAVJO' where id=3; -update noar tt set b2='N' where id=3; -update noar ti set b2='N' where id=3; -update noar tt set b0='C24JOPE1FAY8WG39A4A0VNN85MMQPCN' where id=4; -update noar ti set b0='C24JOPE1FAY8WG39A4A0VNN85MMQPCN' where id=4; -update noar tt set b1='L0BYK' where id=4; -update noar ti set b1='L0BYK' where id=4; -update noar tt set b2='R' where id=4; -update noar ti set b2='R' where id=4; -update noar tt set b0='ZNPL0YRH2DX97MFQZDF5VH' where id=5; -update noar ti set b0='ZNPL0YRH2DX97MFQZDF5VH' where id=5; -update noar tt set b1='U2PAATZ1CQER202LLVBGE6A4HFDNOTH' where id=5; -update noar ti set b1='U2PAATZ1CQER202LLVBGE6A4HFDNOTH' where id=5; -update noar tt set b2='QRFL' where id=5; -update noar ti set b2='QRFL' where id=5; -update noar tt set b0='4WF5ZDFTYJ5TTDBSLLQ' where id=6; -update noar ti set b0='4WF5ZDFTYJ5TTDBSLLQ' where id=6; -update noar tt set b1='MTSA8YVP7XR0FHYE1' where id=6; -update noar ti set b1='MTSA8YVP7XR0FHYE1' where id=6; -update noar tt set b2='8MCJOJTMW7R42ALI0LZPVKJLYDMVZ9' where id=6; -update noar ti set b2='8MCJOJTMW7R42ALI0LZPVKJLYDMVZ9' where id=6; -update noar tt set b0='5CZIS' where id=7; -update noar ti set b0='5CZIS' where id=7; -update noar tt set b1='867FEWDBMDXK81MP8DQNH5CU4HT986AN' where id=7; -update noar ti set b1='867FEWDBMDXK81MP8DQNH5CU4HT986AN' where id=7; -update noar tt set b2='G43YTE6FP1WXH9JBV' where id=7; -update noar ti set b2='G43YTE6FP1WXH9JBV' where id=7; -update noar tt set b0='65K8A6QLXGX6439IDJ433TOO5AA' where id=8; -update noar ti set b0='65K8A6QLXGX6439IDJ433TOO5AA' where id=8; -update noar tt set b1='9W76O63W7V4Y0Q31U1WEHQR7' where id=8; -update noar ti set b1='9W76O63W7V4Y0Q31U1WEHQR7' where id=8; -update noar tt set b2='NLBIYQ8G3FZXP' where id=8; -update noar ti set b2='NLBIYQ8G3FZXP' where id=8; -update noar tt set b0='8M9OLVIMC4IPQ9' where id=9; -update noar ti set b0='8M9OLVIMC4IPQ9' where id=9; -update noar tt set b1='IA2SK9O1XLB2NVLOWQDECFEZ6WN6' where id=9; -update noar ti set b1='IA2SK9O1XLB2NVLOWQDECFEZ6WN6' where id=9; -update noar tt set b2='Y6HM4KI0DIOAST57MU29OXNVP8' where id=9; -update noar ti set b2='Y6HM4KI0DIOAST57MU29OXNVP8' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -b0 text not null, -b1 blob not null, -b2 text not null -) engine=tokudb; -insert into tt values (1,'','',''); -insert into tt values (2,'','',''); -insert into tt values (3,'','',''); -insert into tt values (4,'','',''); -insert into tt values (5,'','',''); -insert into tt values (6,'','',''); -insert into tt values (7,'','',''); -insert into tt values (8,'','',''); -insert into tt values (9,'','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set b0='9220T0A2HMH8PIR46F' where id=1; -update noar ti set b0='9220T0A2HMH8PIR46F' where id=1; -update noar tt set b1='QN7FF6OFKXBZC83EEVMF93YIHE' where id=1; -update noar ti set b1='QN7FF6OFKXBZC83EEVMF93YIHE' where id=1; -update noar tt set b2='DG71G8XOKJWL3PXPGWUIIXRQP4H' where id=1; -update noar ti set b2='DG71G8XOKJWL3PXPGWUIIXRQP4H' where id=1; -update noar tt set b0='C8IGFNSQMW7T5XSRPR3J99D22P' where id=2; -update noar ti set b0='C8IGFNSQMW7T5XSRPR3J99D22P' where id=2; -update noar tt set b1='PSB6Q2NC' where id=2; -update noar ti set b1='PSB6Q2NC' where id=2; -update noar tt set b2='RG0K57VG0HQUOUD0' where id=2; -update noar ti set b2='RG0K57VG0HQUOUD0' where id=2; -update noar tt set b0='VFXLJ1AM44AG1UHGDRYDU3GRG7KON4ZF' where id=3; -update noar ti set b0='VFXLJ1AM44AG1UHGDRYDU3GRG7KON4ZF' where id=3; -update noar tt set b1='ELHQO7Q7ZSIH7TB52VZZVY9' where id=3; -update noar ti set b1='ELHQO7Q7ZSIH7TB52VZZVY9' where id=3; -update noar tt set b2='72ST27NWEE6HBXYW051' where id=3; -update noar ti set b2='72ST27NWEE6HBXYW051' where id=3; -update noar tt set b0='XB' where id=4; -update noar ti set b0='XB' where id=4; -update noar tt set b1='59LZB2HU5IE2F5' where id=4; -update noar ti set b1='59LZB2HU5IE2F5' where id=4; -update noar tt set b2='M1VLCBAGLK6H1HXW' where id=4; -update noar ti set b2='M1VLCBAGLK6H1HXW' where id=4; -update noar tt set b0='VRJPWTGN' where id=5; -update noar ti set b0='VRJPWTGN' where id=5; -update noar tt set b1='QI8U81BF4LPXPIZYKK' where id=5; -update noar ti set b1='QI8U81BF4LPXPIZYKK' where id=5; -update noar tt set b2='82CDXLP59L5CKGP9BVO22B3J0GB0ZW' where id=5; -update noar ti set b2='82CDXLP59L5CKGP9BVO22B3J0GB0ZW' where id=5; -update noar tt set b0='02OYPKBNKR7E0Z1ZPBZDZ' where id=6; -update noar ti set b0='02OYPKBNKR7E0Z1ZPBZDZ' where id=6; -update noar tt set b1='9Z3WM5VSE' where id=6; -update noar ti set b1='9Z3WM5VSE' where id=6; -update noar tt set b2='63ZIB046VLTD4O5VPKX' where id=6; -update noar ti set b2='63ZIB046VLTD4O5VPKX' where id=6; -update noar tt set b0='MG5HS2' where id=7; -update noar ti set b0='MG5HS2' where id=7; -update noar tt set b1='5LIXBE4DGTF84UI7WRN8WB48LG94C' where id=7; -update noar ti set b1='5LIXBE4DGTF84UI7WRN8WB48LG94C' where id=7; -update noar tt set b2='X3HA80ZMJA6YR83XKMGGRIKIPG' where id=7; -update noar ti set b2='X3HA80ZMJA6YR83XKMGGRIKIPG' where id=7; -update noar tt set b0='KPWLLJG6B8L9VV' where id=8; -update noar ti set b0='KPWLLJG6B8L9VV' where id=8; -update noar tt set b1='0Z1AU57IVCBBFGX0ZBO' where id=8; -update noar ti set b1='0Z1AU57IVCBBFGX0ZBO' where id=8; -update noar tt set b2='YNCNTIX7KLQXD1' where id=8; -update noar ti set b2='YNCNTIX7KLQXD1' where id=8; -update noar tt set b0='U4QFAL1Y64SK2OJ0MH0NF' where id=9; -update noar ti set b0='U4QFAL1Y64SK2OJ0MH0NF' where id=9; -update noar tt set b1='IKS12Y0VM2' where id=9; -update noar ti set b1='IKS12Y0VM2' where id=9; -update noar tt set b2='1H6QA' where id=9; -update noar ti set b2='1H6QA' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -b0 text null, -b1 mediumblob null, -b2 tinyblob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set b0='X0S5ABI3AUYI83844TSV30978RGAXM' where id=1; -update noar ti set b0='X0S5ABI3AUYI83844TSV30978RGAXM' where id=1; -update noar tt set b1='YE8F7WZ2YPR4PUL2Q32SL5IA8' where id=1; -update noar ti set b1='YE8F7WZ2YPR4PUL2Q32SL5IA8' where id=1; -update noar tt set b2='NMP3QFUB3LZKUFS' where id=1; -update noar ti set b2='NMP3QFUB3LZKUFS' where id=1; -update noar tt set b0='HM48YMB8GUD7MHTFPZTB' where id=2; -update noar ti set b0='HM48YMB8GUD7MHTFPZTB' where id=2; -update noar tt set b1='KWBDN6VO7TRXXSNUS05IWZA850FS' where id=2; -update noar ti set b1='KWBDN6VO7TRXXSNUS05IWZA850FS' where id=2; -update noar tt set b2='1KH9YBYVOOST1712HSE0C96D4RJ6JM' where id=2; -update noar ti set b2='1KH9YBYVOOST1712HSE0C96D4RJ6JM' where id=2; -update noar tt set b0='WMG2UWPRYDO' where id=3; -update noar ti set b0='WMG2UWPRYDO' where id=3; -update noar tt set b1='T1IW3XTE281R5IGAB22VV88A0QB28IFN' where id=3; -update noar ti set b1='T1IW3XTE281R5IGAB22VV88A0QB28IFN' where id=3; -update noar tt set b2='TL0X2V9P577U3' where id=3; -update noar ti set b2='TL0X2V9P577U3' where id=3; -update noar tt set b0='XQU3M65OYG41OLHKRS4L' where id=4; -update noar ti set b0='XQU3M65OYG41OLHKRS4L' where id=4; -update noar tt set b1='HQ6J3M0SGEYYKBKUP52G6D59' where id=4; -update noar ti set b1='HQ6J3M0SGEYYKBKUP52G6D59' where id=4; -update noar tt set b2='26P8LE1L36' where id=4; -update noar ti set b2='26P8LE1L36' where id=4; -update noar tt set b0='YM77UE0' where id=5; -update noar ti set b0='YM77UE0' where id=5; -update noar tt set b1='Q0ALCATADV3XED' where id=5; -update noar ti set b1='Q0ALCATADV3XED' where id=5; -update noar tt set b2='HA9S7Y8TJJQ95S' where id=5; -update noar ti set b2='HA9S7Y8TJJQ95S' where id=5; -update noar tt set b0='UUD' where id=6; -update noar ti set b0='UUD' where id=6; -update noar tt set b1='IO3FHBCQ4CGWW' where id=6; -update noar ti set b1='IO3FHBCQ4CGWW' where id=6; -update noar tt set b2='J8CK17GJ8FOJ' where id=6; -update noar ti set b2='J8CK17GJ8FOJ' where id=6; -update noar tt set b0='6JDL18UKAH7TXORDN40Q' where id=7; -update noar ti set b0='6JDL18UKAH7TXORDN40Q' where id=7; -update noar tt set b1='87FZAU27' where id=7; -update noar ti set b1='87FZAU27' where id=7; -update noar tt set b2='WWQ2OS784LL8OGJTLN2QSBKZXCVB3A' where id=7; -update noar ti set b2='WWQ2OS784LL8OGJTLN2QSBKZXCVB3A' where id=7; -update noar tt set b0='UQYXETVAH8CZVRIUI1S' where id=8; -update noar ti set b0='UQYXETVAH8CZVRIUI1S' where id=8; -update noar tt set b1='S88GEIRLHWWG0Q' where id=8; -update noar ti set b1='S88GEIRLHWWG0Q' where id=8; -update noar tt set b2='1PLMDYYZJ2' where id=8; -update noar ti set b2='1PLMDYYZJ2' where id=8; -update noar tt set b0='B50CSRX8IIUOF7PL65MVCULH0WTRJ60' where id=9; -update noar ti set b0='B50CSRX8IIUOF7PL65MVCULH0WTRJ60' where id=9; -update noar tt set b1='SJD3MPLDIGV6IQE8' where id=9; -update noar ti set b1='SJD3MPLDIGV6IQE8' where id=9; -update noar tt set b2='CI2V0IC6FY0I4' where id=9; -update noar ti set b2='CI2V0IC6FY0I4' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -b0 text not null, -b1 mediumblob not null, -b2 tinyblob not null -) engine=tokudb; -insert into tt values (1,'','',''); -insert into tt values (2,'','',''); -insert into tt values (3,'','',''); -insert into tt values (4,'','',''); -insert into tt values (5,'','',''); -insert into tt values (6,'','',''); -insert into tt values (7,'','',''); -insert into tt values (8,'','',''); -insert into tt values (9,'','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set b0='CJTE' where id=1; -update noar ti set b0='CJTE' where id=1; -update noar tt set b1='PYQ0MDVWL9EEJWAX9HC82' where id=1; -update noar ti set b1='PYQ0MDVWL9EEJWAX9HC82' where id=1; -update noar tt set b2='PPZZLUOUNT8C3JP44' where id=1; -update noar ti set b2='PPZZLUOUNT8C3JP44' where id=1; -update noar tt set b0='A4ZF0SL49YRGNKR4B34836CHQUC6PD0' where id=2; -update noar ti set b0='A4ZF0SL49YRGNKR4B34836CHQUC6PD0' where id=2; -update noar tt set b1='TP5W92IJKPCMCJNI6CQLW' where id=2; -update noar ti set b1='TP5W92IJKPCMCJNI6CQLW' where id=2; -update noar tt set b2='CS5UF' where id=2; -update noar ti set b2='CS5UF' where id=2; -update noar tt set b0='JZGUSQTIA5Z15LO2NMYPJ' where id=3; -update noar ti set b0='JZGUSQTIA5Z15LO2NMYPJ' where id=3; -update noar tt set b1='M8T' where id=3; -update noar ti set b1='M8T' where id=3; -update noar tt set b2='B8E4NGYG9LXNKSUO6S' where id=3; -update noar ti set b2='B8E4NGYG9LXNKSUO6S' where id=3; -update noar tt set b0='9YON3RE0W896TOFMDSF4OFCR3QEH' where id=4; -update noar ti set b0='9YON3RE0W896TOFMDSF4OFCR3QEH' where id=4; -update noar tt set b1='QACCCZ91KH0U1G21I4TCYQ4Y5' where id=4; -update noar ti set b1='QACCCZ91KH0U1G21I4TCYQ4Y5' where id=4; -update noar tt set b2='YPQN1PD04GSNH' where id=4; -update noar ti set b2='YPQN1PD04GSNH' where id=4; -update noar tt set b0='HFOVI3S23LZMOQ84N3L3U4CEZNTJ' where id=5; -update noar ti set b0='HFOVI3S23LZMOQ84N3L3U4CEZNTJ' where id=5; -update noar tt set b1='QG5NI275LUGTJ10C6U' where id=5; -update noar ti set b1='QG5NI275LUGTJ10C6U' where id=5; -update noar tt set b2='IE5USMKZNBCMKQHBZ10EWQRFIZX2S1' where id=5; -update noar ti set b2='IE5USMKZNBCMKQHBZ10EWQRFIZX2S1' where id=5; -update noar tt set b0='I6EVI' where id=6; -update noar ti set b0='I6EVI' where id=6; -update noar tt set b1='YMSRQSIS9R6AIX9M0QV' where id=6; -update noar ti set b1='YMSRQSIS9R6AIX9M0QV' where id=6; -update noar tt set b2='OGF' where id=6; -update noar ti set b2='OGF' where id=6; -update noar tt set b0='KP5VR5MK2WKAFW6YM7OJRU' where id=7; -update noar ti set b0='KP5VR5MK2WKAFW6YM7OJRU' where id=7; -update noar tt set b1='AX49E3OSHZ1DXX8FBODUPEQ' where id=7; -update noar ti set b1='AX49E3OSHZ1DXX8FBODUPEQ' where id=7; -update noar tt set b2='KHXKNFBOQ8M3Y5HSZJ' where id=7; -update noar ti set b2='KHXKNFBOQ8M3Y5HSZJ' where id=7; -update noar tt set b0='6IDJH8EZVIOFDTTPNOTGH9H1YKP7SVW7' where id=8; -update noar ti set b0='6IDJH8EZVIOFDTTPNOTGH9H1YKP7SVW7' where id=8; -update noar tt set b1='870PQEAXH6XU' where id=8; -update noar ti set b1='870PQEAXH6XU' where id=8; -update noar tt set b2='K3N4W0JN' where id=8; -update noar ti set b2='K3N4W0JN' where id=8; -update noar tt set b0='UA4OBVP' where id=9; -update noar ti set b0='UA4OBVP' where id=9; -update noar tt set b1='JFOUKEJFILNPC' where id=9; -update noar ti set b1='JFOUKEJFILNPC' where id=9; -update noar tt set b2='3J7KDIVWZEI1LTDRLQZH' where id=9; -update noar ti set b2='3J7KDIVWZEI1LTDRLQZH' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -b0 text null, -b1 mediumblob null, -b2 blob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set b0='BF8FMI5OV3MNRME81W0TRC7XTQ7SBCBA' where id=1; -update noar ti set b0='BF8FMI5OV3MNRME81W0TRC7XTQ7SBCBA' where id=1; -update noar tt set b1='0S9BFER54JXZV' where id=1; -update noar ti set b1='0S9BFER54JXZV' where id=1; -update noar tt set b2='8H1M7N20Y8P3H80UMZ9M' where id=1; -update noar ti set b2='8H1M7N20Y8P3H80UMZ9M' where id=1; -update noar tt set b0='GHYTFR6FP6S0WJUNGE' where id=2; -update noar ti set b0='GHYTFR6FP6S0WJUNGE' where id=2; -update noar tt set b1='CCNSS' where id=2; -update noar ti set b1='CCNSS' where id=2; -update noar tt set b2='8O8TZ1RAZMM41CM' where id=2; -update noar ti set b2='8O8TZ1RAZMM41CM' where id=2; -update noar tt set b0='C2ESVEREHWQCQTOYGN6' where id=3; -update noar ti set b0='C2ESVEREHWQCQTOYGN6' where id=3; -update noar tt set b1='SANT9F' where id=3; -update noar ti set b1='SANT9F' where id=3; -update noar tt set b2='RGQYTEC8LSXXDHB3ABBP4U4C66ENGL1' where id=3; -update noar ti set b2='RGQYTEC8LSXXDHB3ABBP4U4C66ENGL1' where id=3; -update noar tt set b0='0VDZUGXVXAN4HW4A9ITEK2E209' where id=4; -update noar ti set b0='0VDZUGXVXAN4HW4A9ITEK2E209' where id=4; -update noar tt set b1='VEOSK9FXWFPW6U1KUF' where id=4; -update noar ti set b1='VEOSK9FXWFPW6U1KUF' where id=4; -update noar tt set b2='2JEOMXXOWTVU58XLY9NKA6VP' where id=4; -update noar ti set b2='2JEOMXXOWTVU58XLY9NKA6VP' where id=4; -update noar tt set b0='AAMQLFWQPZEC7XF77IC49B3YIFB' where id=5; -update noar ti set b0='AAMQLFWQPZEC7XF77IC49B3YIFB' where id=5; -update noar tt set b1='FIX' where id=5; -update noar ti set b1='FIX' where id=5; -update noar tt set b2='RAA95L9XGL7HY1SPB4PTQB97JD36N0' where id=5; -update noar ti set b2='RAA95L9XGL7HY1SPB4PTQB97JD36N0' where id=5; -update noar tt set b0='NIN0ME935VFQHL79UHMHVUMIX6OV4' where id=6; -update noar ti set b0='NIN0ME935VFQHL79UHMHVUMIX6OV4' where id=6; -update noar tt set b1='XFHGM' where id=6; -update noar ti set b1='XFHGM' where id=6; -update noar tt set b2='7NY2O3YR' where id=6; -update noar ti set b2='7NY2O3YR' where id=6; -update noar tt set b0='4TDJXIXKTGZTVP7FD9O6QWB' where id=7; -update noar ti set b0='4TDJXIXKTGZTVP7FD9O6QWB' where id=7; -update noar tt set b1='4JV4UC8Z2MMM0B4T9E7D6MC3NPYQXL8' where id=7; -update noar ti set b1='4JV4UC8Z2MMM0B4T9E7D6MC3NPYQXL8' where id=7; -update noar tt set b2='WEF5RKFXNTMBIQ06GJE5DQUV' where id=7; -update noar ti set b2='WEF5RKFXNTMBIQ06GJE5DQUV' where id=7; -update noar tt set b0='M8F9BRE7FG02AE2XMJKI4SGIMI65S' where id=8; -update noar ti set b0='M8F9BRE7FG02AE2XMJKI4SGIMI65S' where id=8; -update noar tt set b1='GK5WRIKSK4XUH2VRJVUFW' where id=8; -update noar ti set b1='GK5WRIKSK4XUH2VRJVUFW' where id=8; -update noar tt set b2='JTI37YQD0I2J' where id=8; -update noar ti set b2='JTI37YQD0I2J' where id=8; -update noar tt set b0='DQD9M7CWCBGS7NT1ZMEKF' where id=9; -update noar ti set b0='DQD9M7CWCBGS7NT1ZMEKF' where id=9; -update noar tt set b1='PBA1AEQJJCPGDV5E4' where id=9; -update noar ti set b1='PBA1AEQJJCPGDV5E4' where id=9; -update noar tt set b2='YZH1ZEZROAUD' where id=9; -update noar ti set b2='YZH1ZEZROAUD' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -b0 text not null, -b1 mediumblob not null, -b2 blob not null -) engine=tokudb; -insert into tt values (1,'','',''); -insert into tt values (2,'','',''); -insert into tt values (3,'','',''); -insert into tt values (4,'','',''); -insert into tt values (5,'','',''); -insert into tt values (6,'','',''); -insert into tt values (7,'','',''); -insert into tt values (8,'','',''); -insert into tt values (9,'','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set b0='2WI8IZ9' where id=1; -update noar ti set b0='2WI8IZ9' where id=1; -update noar tt set b1='VIVEZ0Y3JU9E8OH4C88TUS0LZIVR' where id=1; -update noar ti set b1='VIVEZ0Y3JU9E8OH4C88TUS0LZIVR' where id=1; -update noar tt set b2='8CFENFZ7FR5UOSZ7CNHTPX5UFJ1AC5I' where id=1; -update noar ti set b2='8CFENFZ7FR5UOSZ7CNHTPX5UFJ1AC5I' where id=1; -update noar tt set b0='X8LZ6OL0VQ6C' where id=2; -update noar ti set b0='X8LZ6OL0VQ6C' where id=2; -update noar tt set b1='XNIIY2XNSQTV8I8FBONZIAX' where id=2; -update noar ti set b1='XNIIY2XNSQTV8I8FBONZIAX' where id=2; -update noar tt set b2='S4J8EKR2SJXDT1K7VK4K2CAAB' where id=2; -update noar ti set b2='S4J8EKR2SJXDT1K7VK4K2CAAB' where id=2; -update noar tt set b0='W9PTO2QCQ8R' where id=3; -update noar ti set b0='W9PTO2QCQ8R' where id=3; -update noar tt set b1='AEDBOLJJ' where id=3; -update noar ti set b1='AEDBOLJJ' where id=3; -update noar tt set b2='8D8PFX89G0EW4R0R3XJG9CC1ASR' where id=3; -update noar ti set b2='8D8PFX89G0EW4R0R3XJG9CC1ASR' where id=3; -update noar tt set b0='LPRIH2I' where id=4; -update noar ti set b0='LPRIH2I' where id=4; -update noar tt set b1='IH12BTA0NKKFEQNQV4XMM' where id=4; -update noar ti set b1='IH12BTA0NKKFEQNQV4XMM' where id=4; -update noar tt set b2='YHOWHQSF' where id=4; -update noar ti set b2='YHOWHQSF' where id=4; -update noar tt set b0='HU2B02V9JZI7HR2TZKHD5ZVSCTKSQCL' where id=5; -update noar ti set b0='HU2B02V9JZI7HR2TZKHD5ZVSCTKSQCL' where id=5; -update noar tt set b1='V3T8UDWF95ZD3WSQZY6ZSZ5' where id=5; -update noar ti set b1='V3T8UDWF95ZD3WSQZY6ZSZ5' where id=5; -update noar tt set b2='F3HY8QP040TBJWRCCQQRTNVL' where id=5; -update noar ti set b2='F3HY8QP040TBJWRCCQQRTNVL' where id=5; -update noar tt set b0='6VK' where id=6; -update noar ti set b0='6VK' where id=6; -update noar tt set b1='DMYKRP3A31UU8LRZ5FE3RF8BFRX' where id=6; -update noar ti set b1='DMYKRP3A31UU8LRZ5FE3RF8BFRX' where id=6; -update noar tt set b2='RXZEP8UDXX4QAEHN0DHM6FUMMRUQN2' where id=6; -update noar ti set b2='RXZEP8UDXX4QAEHN0DHM6FUMMRUQN2' where id=6; -update noar tt set b0='MFEGY0' where id=7; -update noar ti set b0='MFEGY0' where id=7; -update noar tt set b1='AKOPUMQQDOC0V0T28NS5MY9YT5DRKSX0' where id=7; -update noar ti set b1='AKOPUMQQDOC0V0T28NS5MY9YT5DRKSX0' where id=7; -update noar tt set b2='2VYB4WHU77LZQ1P' where id=7; -update noar ti set b2='2VYB4WHU77LZQ1P' where id=7; -update noar tt set b0='H9SJQCBGJ6D7' where id=8; -update noar ti set b0='H9SJQCBGJ6D7' where id=8; -update noar tt set b1='1785LTCHMHA2Q' where id=8; -update noar ti set b1='1785LTCHMHA2Q' where id=8; -update noar tt set b2='JEJJ' where id=8; -update noar ti set b2='JEJJ' where id=8; -update noar tt set b0='QB7BP2WL' where id=9; -update noar ti set b0='QB7BP2WL' where id=9; -update noar tt set b1='JX' where id=9; -update noar ti set b1='JX' where id=9; -update noar tt set b2='XY87SOQ4NONQ3X7' where id=9; -update noar ti set b2='XY87SOQ4NONQ3X7' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -b0 text null, -b1 mediumblob null, -b2 mediumblob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set b0='NS7MMJRW5IIECP3GD1J22IKZOB' where id=1; -update noar ti set b0='NS7MMJRW5IIECP3GD1J22IKZOB' where id=1; -update noar tt set b1='N4J1BJJR7X34JAL970LXJYFYHGR' where id=1; -update noar ti set b1='N4J1BJJR7X34JAL970LXJYFYHGR' where id=1; -update noar tt set b2='AAGYHPJ3E0FQTZO' where id=1; -update noar ti set b2='AAGYHPJ3E0FQTZO' where id=1; -update noar tt set b0='UX3O5GNNSPL6TWHX85' where id=2; -update noar ti set b0='UX3O5GNNSPL6TWHX85' where id=2; -update noar tt set b1='B8XLIKSYCBB9BLG8FYV20N1WKEG6HWN' where id=2; -update noar ti set b1='B8XLIKSYCBB9BLG8FYV20N1WKEG6HWN' where id=2; -update noar tt set b2='BX3WLY05L16NKO2YU3K8' where id=2; -update noar ti set b2='BX3WLY05L16NKO2YU3K8' where id=2; -update noar tt set b0='VSZIM8W2A1' where id=3; -update noar ti set b0='VSZIM8W2A1' where id=3; -update noar tt set b1='FK37F7FG9OHDZTDW' where id=3; -update noar ti set b1='FK37F7FG9OHDZTDW' where id=3; -update noar tt set b2='NW2XMFHPL4PX1LOKVQ00V5JZNOTU' where id=3; -update noar ti set b2='NW2XMFHPL4PX1LOKVQ00V5JZNOTU' where id=3; -update noar tt set b0='YYWG58MPQKES63' where id=4; -update noar ti set b0='YYWG58MPQKES63' where id=4; -update noar tt set b1='W4CQ9KMF' where id=4; -update noar ti set b1='W4CQ9KMF' where id=4; -update noar tt set b2='EQDCYJ7AJ15D9' where id=4; -update noar ti set b2='EQDCYJ7AJ15D9' where id=4; -update noar tt set b0='K' where id=5; -update noar ti set b0='K' where id=5; -update noar tt set b1='I3ITBINECVO' where id=5; -update noar ti set b1='I3ITBINECVO' where id=5; -update noar tt set b2='Y006C4KR03U9' where id=5; -update noar ti set b2='Y006C4KR03U9' where id=5; -update noar tt set b0='DAQI8IUSWQ' where id=6; -update noar ti set b0='DAQI8IUSWQ' where id=6; -update noar tt set b1='Q4ERIJ' where id=6; -update noar ti set b1='Q4ERIJ' where id=6; -update noar tt set b2='69ALED3PKX2Z2UWZBE0WFZ' where id=6; -update noar ti set b2='69ALED3PKX2Z2UWZBE0WFZ' where id=6; -update noar tt set b0='5UUYI36GIYQCQJT5A6FGD62R9OD71ASC' where id=7; -update noar ti set b0='5UUYI36GIYQCQJT5A6FGD62R9OD71ASC' where id=7; -update noar tt set b1='MLM1KTXNMJNQ4WORGUP3J0DL0' where id=7; -update noar ti set b1='MLM1KTXNMJNQ4WORGUP3J0DL0' where id=7; -update noar tt set b2='XBC8HFTAQ7LF5O2YP6E' where id=7; -update noar ti set b2='XBC8HFTAQ7LF5O2YP6E' where id=7; -update noar tt set b0='KBKZN58GN4Q' where id=8; -update noar ti set b0='KBKZN58GN4Q' where id=8; -update noar tt set b1='Z79TSD2SZ29DJ' where id=8; -update noar ti set b1='Z79TSD2SZ29DJ' where id=8; -update noar tt set b2='Q1IKFP' where id=8; -update noar ti set b2='Q1IKFP' where id=8; -update noar tt set b0='0A1YV' where id=9; -update noar ti set b0='0A1YV' where id=9; -update noar tt set b1='VA8N2UFZPHUOSXDY40W2TJ3S' where id=9; -update noar ti set b1='VA8N2UFZPHUOSXDY40W2TJ3S' where id=9; -update noar tt set b2='JUPWBP15V' where id=9; -update noar ti set b2='JUPWBP15V' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -b0 text not null, -b1 mediumblob not null, -b2 mediumblob not null -) engine=tokudb; -insert into tt values (1,'','',''); -insert into tt values (2,'','',''); -insert into tt values (3,'','',''); -insert into tt values (4,'','',''); -insert into tt values (5,'','',''); -insert into tt values (6,'','',''); -insert into tt values (7,'','',''); -insert into tt values (8,'','',''); -insert into tt values (9,'','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set b0='B42YXTJ11558L3SS2A755' where id=1; -update noar ti set b0='B42YXTJ11558L3SS2A755' where id=1; -update noar tt set b1='6URJO63N2UCB8SV' where id=1; -update noar ti set b1='6URJO63N2UCB8SV' where id=1; -update noar tt set b2='7ZXAW9LETGZO323WWWL' where id=1; -update noar ti set b2='7ZXAW9LETGZO323WWWL' where id=1; -update noar tt set b0='9C61BPXPEER0VS2ZM51IRC4TVY83RJ8' where id=2; -update noar ti set b0='9C61BPXPEER0VS2ZM51IRC4TVY83RJ8' where id=2; -update noar tt set b1='DSZYS96XN' where id=2; -update noar ti set b1='DSZYS96XN' where id=2; -update noar tt set b2='5EO8S394DJRP' where id=2; -update noar ti set b2='5EO8S394DJRP' where id=2; -update noar tt set b0='12V4R9NGD682JLSLFY' where id=3; -update noar ti set b0='12V4R9NGD682JLSLFY' where id=3; -update noar tt set b1='IAO7RKWYU95SIF8C3' where id=3; -update noar ti set b1='IAO7RKWYU95SIF8C3' where id=3; -update noar tt set b2='SEBEDH6FAHGS6WIJTYAEUXSUQEPOR' where id=3; -update noar ti set b2='SEBEDH6FAHGS6WIJTYAEUXSUQEPOR' where id=3; -update noar tt set b0='6S04A0WC4P8TZN3T1EN9J4M' where id=4; -update noar ti set b0='6S04A0WC4P8TZN3T1EN9J4M' where id=4; -update noar tt set b1='EQ16VY3H89ZC4ADZFN6DSSB2FC9TK' where id=4; -update noar ti set b1='EQ16VY3H89ZC4ADZFN6DSSB2FC9TK' where id=4; -update noar tt set b2='3MSE9TBIVEXULDHAZZDBPYJM0QO' where id=4; -update noar ti set b2='3MSE9TBIVEXULDHAZZDBPYJM0QO' where id=4; -update noar tt set b0='1SDS1DXSA5' where id=5; -update noar ti set b0='1SDS1DXSA5' where id=5; -update noar tt set b1='DYU26KP9DJC0FMCOI3' where id=5; -update noar ti set b1='DYU26KP9DJC0FMCOI3' where id=5; -update noar tt set b2='U51619EWS8X5ARJSCQQZSOUZ377IR7L' where id=5; -update noar ti set b2='U51619EWS8X5ARJSCQQZSOUZ377IR7L' where id=5; -update noar tt set b0='FB6T8RZMCACBCEHI22X' where id=6; -update noar ti set b0='FB6T8RZMCACBCEHI22X' where id=6; -update noar tt set b1='ZI4' where id=6; -update noar ti set b1='ZI4' where id=6; -update noar tt set b2='6UMZPCXPEFLDM2RN5OFOQ' where id=6; -update noar ti set b2='6UMZPCXPEFLDM2RN5OFOQ' where id=6; -update noar tt set b0='2SOF3TELW33KHF63BL' where id=7; -update noar ti set b0='2SOF3TELW33KHF63BL' where id=7; -update noar tt set b1='7U' where id=7; -update noar ti set b1='7U' where id=7; -update noar tt set b2='1EYMATWT9BW6Z7X5WE3' where id=7; -update noar ti set b2='1EYMATWT9BW6Z7X5WE3' where id=7; -update noar tt set b0='7Z443FLV86ZH2501EOKGXXZ' where id=8; -update noar ti set b0='7Z443FLV86ZH2501EOKGXXZ' where id=8; -update noar tt set b1='PLV57' where id=8; -update noar ti set b1='PLV57' where id=8; -update noar tt set b2='KWB04L' where id=8; -update noar ti set b2='KWB04L' where id=8; -update noar tt set b0='EAFY9MI42W52M' where id=9; -update noar ti set b0='EAFY9MI42W52M' where id=9; -update noar tt set b1='1Y1C5C1U0MNW9XV3FKZ1Q23' where id=9; -update noar ti set b1='1Y1C5C1U0MNW9XV3FKZ1Q23' where id=9; -update noar tt set b2='2C8XFM53DUH' where id=9; -update noar ti set b2='2C8XFM53DUH' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -b0 text null, -b1 mediumblob null, -b2 longblob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set b0='Q1ZTCN9' where id=1; -update noar ti set b0='Q1ZTCN9' where id=1; -update noar tt set b1='VUIEEFQRXCE8689D87D8SLJ5' where id=1; -update noar ti set b1='VUIEEFQRXCE8689D87D8SLJ5' where id=1; -update noar tt set b2='Q4MIDSUO6EY337N1B3O1' where id=1; -update noar ti set b2='Q4MIDSUO6EY337N1B3O1' where id=1; -update noar tt set b0='Y1CZXZIJJBSJ79X' where id=2; -update noar ti set b0='Y1CZXZIJJBSJ79X' where id=2; -update noar tt set b1='PYOBZ2F212PX6O0M2E' where id=2; -update noar ti set b1='PYOBZ2F212PX6O0M2E' where id=2; -update noar tt set b2='2AAZYS99XL83EYF9Z4' where id=2; -update noar ti set b2='2AAZYS99XL83EYF9Z4' where id=2; -update noar tt set b0='HMDFCWFA8DRTJRZC8MA3' where id=3; -update noar ti set b0='HMDFCWFA8DRTJRZC8MA3' where id=3; -update noar tt set b1='267XDLG5AHJQ6HFC0INFC0HYWU1A2CRU' where id=3; -update noar ti set b1='267XDLG5AHJQ6HFC0INFC0HYWU1A2CRU' where id=3; -update noar tt set b2='J3AE3V7TPOVCDG37T6NB' where id=3; -update noar ti set b2='J3AE3V7TPOVCDG37T6NB' where id=3; -update noar tt set b0='FO20IT04ORHJMM12COG088YT' where id=4; -update noar ti set b0='FO20IT04ORHJMM12COG088YT' where id=4; -update noar tt set b1='6SNE0H24TV2CTJDG' where id=4; -update noar ti set b1='6SNE0H24TV2CTJDG' where id=4; -update noar tt set b2='ZIS2ET5324LHUGQ3VDE8G' where id=4; -update noar ti set b2='ZIS2ET5324LHUGQ3VDE8G' where id=4; -update noar tt set b0='V5N6AZLRRE3TV' where id=5; -update noar ti set b0='V5N6AZLRRE3TV' where id=5; -update noar tt set b1='EELN' where id=5; -update noar ti set b1='EELN' where id=5; -update noar tt set b2='67HZJK73HWS6KSYZK96' where id=5; -update noar ti set b2='67HZJK73HWS6KSYZK96' where id=5; -update noar tt set b0='UX4ANK1BE69TVFB13H9F1AEZRX5' where id=6; -update noar ti set b0='UX4ANK1BE69TVFB13H9F1AEZRX5' where id=6; -update noar tt set b1='OH2I1R8CL4EG94SO2LKNJUDVTFY' where id=6; -update noar ti set b1='OH2I1R8CL4EG94SO2LKNJUDVTFY' where id=6; -update noar tt set b2='0Q2EGS9T9C6FZ973KPBN56GVZK' where id=6; -update noar ti set b2='0Q2EGS9T9C6FZ973KPBN56GVZK' where id=6; -update noar tt set b0='JB53U7R6' where id=7; -update noar ti set b0='JB53U7R6' where id=7; -update noar tt set b1='T77JK24HG6L5GHRJU' where id=7; -update noar ti set b1='T77JK24HG6L5GHRJU' where id=7; -update noar tt set b2='0YFM97NAKHEB22G4T13857O58WHOCI' where id=7; -update noar ti set b2='0YFM97NAKHEB22G4T13857O58WHOCI' where id=7; -update noar tt set b0='4SECL86MXMMEP7KA12TP7' where id=8; -update noar ti set b0='4SECL86MXMMEP7KA12TP7' where id=8; -update noar tt set b1='AY6CPI4POOCV2H399OCF6V' where id=8; -update noar ti set b1='AY6CPI4POOCV2H399OCF6V' where id=8; -update noar tt set b2='TR' where id=8; -update noar ti set b2='TR' where id=8; -update noar tt set b0='MCU578SYBED9RSWNCRO4264' where id=9; -update noar ti set b0='MCU578SYBED9RSWNCRO4264' where id=9; -update noar tt set b1='9V0QU7VILY7GVPVKQFYJ8J4144RV2D' where id=9; -update noar ti set b1='9V0QU7VILY7GVPVKQFYJ8J4144RV2D' where id=9; -update noar tt set b2='6E9Q9M8Q8WQAFR0W1KQZF9D4L8' where id=9; -update noar ti set b2='6E9Q9M8Q8WQAFR0W1KQZF9D4L8' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -b0 text not null, -b1 mediumblob not null, -b2 longblob not null -) engine=tokudb; -insert into tt values (1,'','',''); -insert into tt values (2,'','',''); -insert into tt values (3,'','',''); -insert into tt values (4,'','',''); -insert into tt values (5,'','',''); -insert into tt values (6,'','',''); -insert into tt values (7,'','',''); -insert into tt values (8,'','',''); -insert into tt values (9,'','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set b0='PTLIFNY16MRL2495OL31JBA6EUFZQ' where id=1; -update noar ti set b0='PTLIFNY16MRL2495OL31JBA6EUFZQ' where id=1; -update noar tt set b1='3ICDB1LDOJMWSHUKC2J' where id=1; -update noar ti set b1='3ICDB1LDOJMWSHUKC2J' where id=1; -update noar tt set b2='FUTAZ' where id=1; -update noar ti set b2='FUTAZ' where id=1; -update noar tt set b0='RW4661J70687XJB7NU50WY56' where id=2; -update noar ti set b0='RW4661J70687XJB7NU50WY56' where id=2; -update noar tt set b1='KNAFYUXHDXJ750YHU1' where id=2; -update noar ti set b1='KNAFYUXHDXJ750YHU1' where id=2; -update noar tt set b2='HHXFF9P9JSZ3VO' where id=2; -update noar ti set b2='HHXFF9P9JSZ3VO' where id=2; -update noar tt set b0='LCW646' where id=3; -update noar ti set b0='LCW646' where id=3; -update noar tt set b1='4CDWTYITSHA9Z' where id=3; -update noar ti set b1='4CDWTYITSHA9Z' where id=3; -update noar tt set b2='237R8Y' where id=3; -update noar ti set b2='237R8Y' where id=3; -update noar tt set b0='QSYCQ' where id=4; -update noar ti set b0='QSYCQ' where id=4; -update noar tt set b1='H9E9KGGOBFVG' where id=4; -update noar ti set b1='H9E9KGGOBFVG' where id=4; -update noar tt set b2='AF01ZHN0GRUFD4CNNJ1431' where id=4; -update noar ti set b2='AF01ZHN0GRUFD4CNNJ1431' where id=4; -update noar tt set b0='5KI19YN7HZ32ZR259' where id=5; -update noar ti set b0='5KI19YN7HZ32ZR259' where id=5; -update noar tt set b1='ESYEW3U9G' where id=5; -update noar ti set b1='ESYEW3U9G' where id=5; -update noar tt set b2='41RLKV' where id=5; -update noar ti set b2='41RLKV' where id=5; -update noar tt set b0='B8EOH268AMN' where id=6; -update noar ti set b0='B8EOH268AMN' where id=6; -update noar tt set b1='QF2RQF8Q6704HRSEYNQJH441YFNF0' where id=6; -update noar ti set b1='QF2RQF8Q6704HRSEYNQJH441YFNF0' where id=6; -update noar tt set b2='CI8NO7V' where id=6; -update noar ti set b2='CI8NO7V' where id=6; -update noar tt set b0='8JUE0UOR0ECQ90J6ZTE097CJXPA' where id=7; -update noar ti set b0='8JUE0UOR0ECQ90J6ZTE097CJXPA' where id=7; -update noar tt set b1='FG6FFBVYM9A' where id=7; -update noar ti set b1='FG6FFBVYM9A' where id=7; -update noar tt set b2='V1ZZPJ73LZC0W76H9XF' where id=7; -update noar ti set b2='V1ZZPJ73LZC0W76H9XF' where id=7; -update noar tt set b0='G9CGK3PV9FABT7VG5NN1219LL' where id=8; -update noar ti set b0='G9CGK3PV9FABT7VG5NN1219LL' where id=8; -update noar tt set b1='Q3ZH5Q8J2ORJZ' where id=8; -update noar ti set b1='Q3ZH5Q8J2ORJZ' where id=8; -update noar tt set b2='FVQI3MYISE9ESOYSB' where id=8; -update noar ti set b2='FVQI3MYISE9ESOYSB' where id=8; -update noar tt set b0='4HHTTK' where id=9; -update noar ti set b0='4HHTTK' where id=9; -update noar tt set b1='5VT67S0S7YC5CHQ9VJRE' where id=9; -update noar ti set b1='5VT67S0S7YC5CHQ9VJRE' where id=9; -update noar tt set b2='5KWG061WWAGNL521A' where id=9; -update noar ti set b2='5KWG061WWAGNL521A' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -b0 text null, -b1 mediumblob null, -b2 text null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set b0='F1KPE' where id=1; -update noar ti set b0='F1KPE' where id=1; -update noar tt set b1='UZKD4TK45MYMKZPQ9F6I' where id=1; -update noar ti set b1='UZKD4TK45MYMKZPQ9F6I' where id=1; -update noar tt set b2='IQPWGKQME4SRRB4NQRI45ZTZJE' where id=1; -update noar ti set b2='IQPWGKQME4SRRB4NQRI45ZTZJE' where id=1; -update noar tt set b0='3YXNF7LEJ9ULZ2A' where id=2; -update noar ti set b0='3YXNF7LEJ9ULZ2A' where id=2; -update noar tt set b1='0O4I29IFUTX5GOEL' where id=2; -update noar ti set b1='0O4I29IFUTX5GOEL' where id=2; -update noar tt set b2='K60S8RLS8C86VU96Y9XAC05O55T' where id=2; -update noar ti set b2='K60S8RLS8C86VU96Y9XAC05O55T' where id=2; -update noar tt set b0='86TSE9D6M2' where id=3; -update noar ti set b0='86TSE9D6M2' where id=3; -update noar tt set b1='QY8XQICM17' where id=3; -update noar ti set b1='QY8XQICM17' where id=3; -update noar tt set b2='S3YIF43WK8LV617A7YY7LZ9J' where id=3; -update noar ti set b2='S3YIF43WK8LV617A7YY7LZ9J' where id=3; -update noar tt set b0='9VWXP37V' where id=4; -update noar ti set b0='9VWXP37V' where id=4; -update noar tt set b1='JX6384SVV3KLY9HMWVE8XQKX892ZZ' where id=4; -update noar ti set b1='JX6384SVV3KLY9HMWVE8XQKX892ZZ' where id=4; -update noar tt set b2='JR6JIHS7ZGPZTML4H9OPFYYW' where id=4; -update noar ti set b2='JR6JIHS7ZGPZTML4H9OPFYYW' where id=4; -update noar tt set b0='9PMJ81BFSRW07WT6UG0ICGWNV2Q1QX5' where id=5; -update noar ti set b0='9PMJ81BFSRW07WT6UG0ICGWNV2Q1QX5' where id=5; -update noar tt set b1='9ACHG9FTHCVYX0ICE4NHW1L' where id=5; -update noar ti set b1='9ACHG9FTHCVYX0ICE4NHW1L' where id=5; -update noar tt set b2='5' where id=5; -update noar ti set b2='5' where id=5; -update noar tt set b0='YF6GZE6QL4BXXXSOK9B1' where id=6; -update noar ti set b0='YF6GZE6QL4BXXXSOK9B1' where id=6; -update noar tt set b1='X8' where id=6; -update noar ti set b1='X8' where id=6; -update noar tt set b2='2I0NDLS8' where id=6; -update noar ti set b2='2I0NDLS8' where id=6; -update noar tt set b0='38CVZ57NIZOWZ7WK6' where id=7; -update noar ti set b0='38CVZ57NIZOWZ7WK6' where id=7; -update noar tt set b1='4AS06GZAUQJ0' where id=7; -update noar ti set b1='4AS06GZAUQJ0' where id=7; -update noar tt set b2='K3TME' where id=7; -update noar ti set b2='K3TME' where id=7; -update noar tt set b0='JP9O7DK2NP7ZEY' where id=8; -update noar ti set b0='JP9O7DK2NP7ZEY' where id=8; -update noar tt set b1='REZUKM5Z4X28OOLKJ2PKDIGGYC2D' where id=8; -update noar ti set b1='REZUKM5Z4X28OOLKJ2PKDIGGYC2D' where id=8; -update noar tt set b2='CNHLKRIFD2Q0M5FVTEOLC09IPDEH' where id=8; -update noar ti set b2='CNHLKRIFD2Q0M5FVTEOLC09IPDEH' where id=8; -update noar tt set b0='TENQM314ZB7PL5XIX' where id=9; -update noar ti set b0='TENQM314ZB7PL5XIX' where id=9; -update noar tt set b1='BKR3OVXX64UUIWWF' where id=9; -update noar ti set b1='BKR3OVXX64UUIWWF' where id=9; -update noar tt set b2='U' where id=9; -update noar ti set b2='U' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -b0 text not null, -b1 mediumblob not null, -b2 text not null -) engine=tokudb; -insert into tt values (1,'','',''); -insert into tt values (2,'','',''); -insert into tt values (3,'','',''); -insert into tt values (4,'','',''); -insert into tt values (5,'','',''); -insert into tt values (6,'','',''); -insert into tt values (7,'','',''); -insert into tt values (8,'','',''); -insert into tt values (9,'','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set b0='FZLG1JJ6REQTI4C6FIFBIC8NVVSCG4' where id=1; -update noar ti set b0='FZLG1JJ6REQTI4C6FIFBIC8NVVSCG4' where id=1; -update noar tt set b1='E5EYERVZOMPYYHN5XOUBF' where id=1; -update noar ti set b1='E5EYERVZOMPYYHN5XOUBF' where id=1; -update noar tt set b2='QFGWX7ZONIZW17M7QF9KMKLTNAH' where id=1; -update noar ti set b2='QFGWX7ZONIZW17M7QF9KMKLTNAH' where id=1; -update noar tt set b0='QD4H9HIP95Y4' where id=2; -update noar ti set b0='QD4H9HIP95Y4' where id=2; -update noar tt set b1='4TPXNUPI517KMFAA7T8P03MHU' where id=2; -update noar ti set b1='4TPXNUPI517KMFAA7T8P03MHU' where id=2; -update noar tt set b2='9MCF0LPM66GFQU49DV4F' where id=2; -update noar ti set b2='9MCF0LPM66GFQU49DV4F' where id=2; -update noar tt set b0='ODT' where id=3; -update noar ti set b0='ODT' where id=3; -update noar tt set b1='C1D0P0076RHFD9CDVQ9II0L1OF3LL' where id=3; -update noar ti set b1='C1D0P0076RHFD9CDVQ9II0L1OF3LL' where id=3; -update noar tt set b2='JMYFWQWMNCDZYEP4ZNW50F895OW' where id=3; -update noar ti set b2='JMYFWQWMNCDZYEP4ZNW50F895OW' where id=3; -update noar tt set b0='PAIPB3NQN' where id=4; -update noar ti set b0='PAIPB3NQN' where id=4; -update noar tt set b1='EC0NJU5USYIWDBXYZFPQQGKIR8' where id=4; -update noar ti set b1='EC0NJU5USYIWDBXYZFPQQGKIR8' where id=4; -update noar tt set b2='ZAPDPQR0GWVPQ7JOZBYF' where id=4; -update noar ti set b2='ZAPDPQR0GWVPQ7JOZBYF' where id=4; -update noar tt set b0='ZVG0E2G4YSFWXXI48FIOYYQ1JBBSWK' where id=5; -update noar ti set b0='ZVG0E2G4YSFWXXI48FIOYYQ1JBBSWK' where id=5; -update noar tt set b1='E1SM6MHM04' where id=5; -update noar ti set b1='E1SM6MHM04' where id=5; -update noar tt set b2='Q0YZ1WU25RVIF0SHOR8P2OXIN' where id=5; -update noar ti set b2='Q0YZ1WU25RVIF0SHOR8P2OXIN' where id=5; -update noar tt set b0='WFYU' where id=6; -update noar ti set b0='WFYU' where id=6; -update noar tt set b1='WNV76YAIUJN0ICYEXVQUQKXN7U6D' where id=6; -update noar ti set b1='WNV76YAIUJN0ICYEXVQUQKXN7U6D' where id=6; -update noar tt set b2='0R3B34FEFCZ4UN' where id=6; -update noar ti set b2='0R3B34FEFCZ4UN' where id=6; -update noar tt set b0='J2ZGLJJG8IUP7UHK4219VRVB9MM' where id=7; -update noar ti set b0='J2ZGLJJG8IUP7UHK4219VRVB9MM' where id=7; -update noar tt set b1='T623353FCRJGLPU676D8WALK6Z23VVQL' where id=7; -update noar ti set b1='T623353FCRJGLPU676D8WALK6Z23VVQL' where id=7; -update noar tt set b2='DZ' where id=7; -update noar ti set b2='DZ' where id=7; -update noar tt set b0='BY5HHOCT3093NKT' where id=8; -update noar ti set b0='BY5HHOCT3093NKT' where id=8; -update noar tt set b1='XBSIJGQJWZK7E0X1Z7' where id=8; -update noar ti set b1='XBSIJGQJWZK7E0X1Z7' where id=8; -update noar tt set b2='IQWMK3YBNTHPCOC9SE3LKQCOFZH' where id=8; -update noar ti set b2='IQWMK3YBNTHPCOC9SE3LKQCOFZH' where id=8; -update noar tt set b0='1YNRS1GX9Y2DHX0XB5BP29IULIYXH87Z' where id=9; -update noar ti set b0='1YNRS1GX9Y2DHX0XB5BP29IULIYXH87Z' where id=9; -update noar tt set b1='FA8PCZAUHHN847DPVD20V' where id=9; -update noar ti set b1='FA8PCZAUHHN847DPVD20V' where id=9; -update noar tt set b2='7HPTYCMEJDA8ACGI4AUYXD89XAESI' where id=9; -update noar ti set b2='7HPTYCMEJDA8ACGI4AUYXD89XAESI' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -b0 text null, -b1 longblob null, -b2 tinyblob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set b0='UUGMOZ1P3' where id=1; -update noar ti set b0='UUGMOZ1P3' where id=1; -update noar tt set b1='PBWC9AMOAT0NJTZRFDHAYJI9YNBYOPXW' where id=1; -update noar ti set b1='PBWC9AMOAT0NJTZRFDHAYJI9YNBYOPXW' where id=1; -update noar tt set b2='8F6X32CU7TLEJYCKSUWR' where id=1; -update noar ti set b2='8F6X32CU7TLEJYCKSUWR' where id=1; -update noar tt set b0='SNC6LN383ACJ4K0Y1NJ' where id=2; -update noar ti set b0='SNC6LN383ACJ4K0Y1NJ' where id=2; -update noar tt set b1='0HJPYQPGGOO40O26ZQK438L1LB0' where id=2; -update noar ti set b1='0HJPYQPGGOO40O26ZQK438L1LB0' where id=2; -update noar tt set b2='EAYEUB079Q6ULB' where id=2; -update noar ti set b2='EAYEUB079Q6ULB' where id=2; -update noar tt set b0='FBK0CKXVMY0NCQM7' where id=3; -update noar ti set b0='FBK0CKXVMY0NCQM7' where id=3; -update noar tt set b1='TM' where id=3; -update noar ti set b1='TM' where id=3; -update noar tt set b2='YL22GZAQSVO2JASQCI3FZX8HPSI' where id=3; -update noar ti set b2='YL22GZAQSVO2JASQCI3FZX8HPSI' where id=3; -update noar tt set b0='9QR2QL9QQR6BF' where id=4; -update noar ti set b0='9QR2QL9QQR6BF' where id=4; -update noar tt set b1='2F4LIFNIHGDSUSTINS0WUQMIV' where id=4; -update noar ti set b1='2F4LIFNIHGDSUSTINS0WUQMIV' where id=4; -update noar tt set b2='K4' where id=4; -update noar ti set b2='K4' where id=4; -update noar tt set b0='GDCE31TWJT' where id=5; -update noar ti set b0='GDCE31TWJT' where id=5; -update noar tt set b1='71Z3FE5XK6L9' where id=5; -update noar ti set b1='71Z3FE5XK6L9' where id=5; -update noar tt set b2='DBX91DP6TO' where id=5; -update noar ti set b2='DBX91DP6TO' where id=5; -update noar tt set b0='WO06OFL' where id=6; -update noar ti set b0='WO06OFL' where id=6; -update noar tt set b1='34' where id=6; -update noar ti set b1='34' where id=6; -update noar tt set b2='JNH9' where id=6; -update noar ti set b2='JNH9' where id=6; -update noar tt set b0='Y1Q2QPCMLDXGVVKEL026QTVCZMEE' where id=7; -update noar ti set b0='Y1Q2QPCMLDXGVVKEL026QTVCZMEE' where id=7; -update noar tt set b1='RI1RYZG3L2GFW18Z03HOYC5' where id=7; -update noar ti set b1='RI1RYZG3L2GFW18Z03HOYC5' where id=7; -update noar tt set b2='10OCM08ETI7GHGB3FA' where id=7; -update noar ti set b2='10OCM08ETI7GHGB3FA' where id=7; -update noar tt set b0='LU6L0URZ9S3OQFK24YINC1' where id=8; -update noar ti set b0='LU6L0URZ9S3OQFK24YINC1' where id=8; -update noar tt set b1='QX7RVVV' where id=8; -update noar ti set b1='QX7RVVV' where id=8; -update noar tt set b2='KX0MPDVWDG3MX7NLVTI5SQ4' where id=8; -update noar ti set b2='KX0MPDVWDG3MX7NLVTI5SQ4' where id=8; -update noar tt set b0='036' where id=9; -update noar ti set b0='036' where id=9; -update noar tt set b1='0W0UZUP2HSA22U0IAS5' where id=9; -update noar ti set b1='0W0UZUP2HSA22U0IAS5' where id=9; -update noar tt set b2='OZ0F' where id=9; -update noar ti set b2='OZ0F' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -b0 text not null, -b1 longblob not null, -b2 tinyblob not null -) engine=tokudb; -insert into tt values (1,'','',''); -insert into tt values (2,'','',''); -insert into tt values (3,'','',''); -insert into tt values (4,'','',''); -insert into tt values (5,'','',''); -insert into tt values (6,'','',''); -insert into tt values (7,'','',''); -insert into tt values (8,'','',''); -insert into tt values (9,'','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set b0='FG5GFLPIXT02' where id=1; -update noar ti set b0='FG5GFLPIXT02' where id=1; -update noar tt set b1='KYGJ4KO2M5K9699II6AGHI5T' where id=1; -update noar ti set b1='KYGJ4KO2M5K9699II6AGHI5T' where id=1; -update noar tt set b2='TJS03JSU2' where id=1; -update noar ti set b2='TJS03JSU2' where id=1; -update noar tt set b0='GSB' where id=2; -update noar ti set b0='GSB' where id=2; -update noar tt set b1='YO' where id=2; -update noar ti set b1='YO' where id=2; -update noar tt set b2='P99PYJZHXZFHQBDUQX' where id=2; -update noar ti set b2='P99PYJZHXZFHQBDUQX' where id=2; -update noar tt set b0='QQTGTYCEZHO7DS5Z0BT0HI' where id=3; -update noar ti set b0='QQTGTYCEZHO7DS5Z0BT0HI' where id=3; -update noar tt set b1='O42TZUJVKA7YEHVGYZ9' where id=3; -update noar ti set b1='O42TZUJVKA7YEHVGYZ9' where id=3; -update noar tt set b2='COKYO8BHKV5UBBOFBD3G7' where id=3; -update noar ti set b2='COKYO8BHKV5UBBOFBD3G7' where id=3; -update noar tt set b0='YTS9FYDEO87B599JY7V5JMXE' where id=4; -update noar ti set b0='YTS9FYDEO87B599JY7V5JMXE' where id=4; -update noar tt set b1='H14MBK1' where id=4; -update noar ti set b1='H14MBK1' where id=4; -update noar tt set b2='J1UUIK1W5JIETHQZ4HDRZWA' where id=4; -update noar ti set b2='J1UUIK1W5JIETHQZ4HDRZWA' where id=4; -update noar tt set b0='WW6S001TL1QV' where id=5; -update noar ti set b0='WW6S001TL1QV' where id=5; -update noar tt set b1='3SL' where id=5; -update noar ti set b1='3SL' where id=5; -update noar tt set b2='2350D0PGAD' where id=5; -update noar ti set b2='2350D0PGAD' where id=5; -update noar tt set b0='PY7KV6DLP' where id=6; -update noar ti set b0='PY7KV6DLP' where id=6; -update noar tt set b1='CJ5W6JZF203YL2E1JMBZKA483VH3JRI' where id=6; -update noar ti set b1='CJ5W6JZF203YL2E1JMBZKA483VH3JRI' where id=6; -update noar tt set b2='QGXI0Q8YJ' where id=6; -update noar ti set b2='QGXI0Q8YJ' where id=6; -update noar tt set b0='BU6WFNRGHPBWILUDPHBSIHRDI2ZGU6I' where id=7; -update noar ti set b0='BU6WFNRGHPBWILUDPHBSIHRDI2ZGU6I' where id=7; -update noar tt set b1='IVKCI5SIWEMS6Z677N0B1DME8JJ25L2I' where id=7; -update noar ti set b1='IVKCI5SIWEMS6Z677N0B1DME8JJ25L2I' where id=7; -update noar tt set b2='U8' where id=7; -update noar ti set b2='U8' where id=7; -update noar tt set b0='92PT815NVI59ES' where id=8; -update noar ti set b0='92PT815NVI59ES' where id=8; -update noar tt set b1='U3E9DZ4H37O8KYNPI' where id=8; -update noar ti set b1='U3E9DZ4H37O8KYNPI' where id=8; -update noar tt set b2='M1P1AL8RI5GT28OMG38PVPAKGJM8OY' where id=8; -update noar ti set b2='M1P1AL8RI5GT28OMG38PVPAKGJM8OY' where id=8; -update noar tt set b0='NJ97NFK6QUZ' where id=9; -update noar ti set b0='NJ97NFK6QUZ' where id=9; -update noar tt set b1='9N1MYO' where id=9; -update noar ti set b1='9N1MYO' where id=9; -update noar tt set b2='BDMG7MDSYCCHVJY2TEI7' where id=9; -update noar ti set b2='BDMG7MDSYCCHVJY2TEI7' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -b0 text null, -b1 longblob null, -b2 blob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set b0='EDIY6' where id=1; -update noar ti set b0='EDIY6' where id=1; -update noar tt set b1='58TPY5G' where id=1; -update noar ti set b1='58TPY5G' where id=1; -update noar tt set b2='8' where id=1; -update noar ti set b2='8' where id=1; -update noar tt set b0='TED6CUCZ2YTLEWABEODOHKPY' where id=2; -update noar ti set b0='TED6CUCZ2YTLEWABEODOHKPY' where id=2; -update noar tt set b1='MFNK' where id=2; -update noar ti set b1='MFNK' where id=2; -update noar tt set b2='CP2P45YB5RDFB2EKL4836' where id=2; -update noar ti set b2='CP2P45YB5RDFB2EKL4836' where id=2; -update noar tt set b0='TBQ9QWAZE2E26H3185DTTU2FCX' where id=3; -update noar ti set b0='TBQ9QWAZE2E26H3185DTTU2FCX' where id=3; -update noar tt set b1='8X44NE7RGRDRF4BCBZE3HPZZGLG9ZP9' where id=3; -update noar ti set b1='8X44NE7RGRDRF4BCBZE3HPZZGLG9ZP9' where id=3; -update noar tt set b2='4B9HKB4FOT05OTXEUVYTKD2YXQK' where id=3; -update noar ti set b2='4B9HKB4FOT05OTXEUVYTKD2YXQK' where id=3; -update noar tt set b0='P1EGDBQWU8Y98WCZ74W' where id=4; -update noar ti set b0='P1EGDBQWU8Y98WCZ74W' where id=4; -update noar tt set b1='X' where id=4; -update noar ti set b1='X' where id=4; -update noar tt set b2='K33PV3VRODEC3AWYU4LX3' where id=4; -update noar ti set b2='K33PV3VRODEC3AWYU4LX3' where id=4; -update noar tt set b0='AAD3SCXGXZ7KHLELVA' where id=5; -update noar ti set b0='AAD3SCXGXZ7KHLELVA' where id=5; -update noar tt set b1='NFB49OZR7JWU0ONDOJT6H' where id=5; -update noar ti set b1='NFB49OZR7JWU0ONDOJT6H' where id=5; -update noar tt set b2='97FWTMW3O2BQDFJCPAHA7ORR917EI' where id=5; -update noar ti set b2='97FWTMW3O2BQDFJCPAHA7ORR917EI' where id=5; -update noar tt set b0='1MEIX05A06L1KHZB767GB2Y' where id=6; -update noar ti set b0='1MEIX05A06L1KHZB767GB2Y' where id=6; -update noar tt set b1='KYUPVOMHNKWTEBF1' where id=6; -update noar ti set b1='KYUPVOMHNKWTEBF1' where id=6; -update noar tt set b2='GOL' where id=6; -update noar ti set b2='GOL' where id=6; -update noar tt set b0='S991AE337P7VLMOQ' where id=7; -update noar ti set b0='S991AE337P7VLMOQ' where id=7; -update noar tt set b1='26EB8QJTV5KOTXZJDH2N' where id=7; -update noar ti set b1='26EB8QJTV5KOTXZJDH2N' where id=7; -update noar tt set b2='6W8J8R68' where id=7; -update noar ti set b2='6W8J8R68' where id=7; -update noar tt set b0='BO3TGF' where id=8; -update noar ti set b0='BO3TGF' where id=8; -update noar tt set b1='ZUFG02URD9W4WJSFZ6XVR8V1PH1VXONT' where id=8; -update noar ti set b1='ZUFG02URD9W4WJSFZ6XVR8V1PH1VXONT' where id=8; -update noar tt set b2='WCNKT1RP4CZ035P2KRDTQF2A' where id=8; -update noar ti set b2='WCNKT1RP4CZ035P2KRDTQF2A' where id=8; -update noar tt set b0='3RV4SVJNFH5807' where id=9; -update noar ti set b0='3RV4SVJNFH5807' where id=9; -update noar tt set b1='HH0E8QCB9INLB' where id=9; -update noar ti set b1='HH0E8QCB9INLB' where id=9; -update noar tt set b2='9' where id=9; -update noar ti set b2='9' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -b0 text not null, -b1 longblob not null, -b2 blob not null -) engine=tokudb; -insert into tt values (1,'','',''); -insert into tt values (2,'','',''); -insert into tt values (3,'','',''); -insert into tt values (4,'','',''); -insert into tt values (5,'','',''); -insert into tt values (6,'','',''); -insert into tt values (7,'','',''); -insert into tt values (8,'','',''); -insert into tt values (9,'','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set b0='S1BZX1GMU2YND3ET9RJBOP7Q2S' where id=1; -update noar ti set b0='S1BZX1GMU2YND3ET9RJBOP7Q2S' where id=1; -update noar tt set b1='V0K31OUURZTPZO' where id=1; -update noar ti set b1='V0K31OUURZTPZO' where id=1; -update noar tt set b2='4ZZWYX4XPJHEYA88GMBDB5E' where id=1; -update noar ti set b2='4ZZWYX4XPJHEYA88GMBDB5E' where id=1; -update noar tt set b0='UNS8VQ6BTRS7LQRZH0Y' where id=2; -update noar ti set b0='UNS8VQ6BTRS7LQRZH0Y' where id=2; -update noar tt set b1='98H7FEP5HT' where id=2; -update noar ti set b1='98H7FEP5HT' where id=2; -update noar tt set b2='QTPIF0' where id=2; -update noar ti set b2='QTPIF0' where id=2; -update noar tt set b0='I6VATVQRU1VXHUIGYTBKE5' where id=3; -update noar ti set b0='I6VATVQRU1VXHUIGYTBKE5' where id=3; -update noar tt set b1='PYCER' where id=3; -update noar ti set b1='PYCER' where id=3; -update noar tt set b2='7CDT8FFD9OS19F1T2XIYJ' where id=3; -update noar ti set b2='7CDT8FFD9OS19F1T2XIYJ' where id=3; -update noar tt set b0='N0B501K95GPMN51NW' where id=4; -update noar ti set b0='N0B501K95GPMN51NW' where id=4; -update noar tt set b1='YD87UKN4S0' where id=4; -update noar ti set b1='YD87UKN4S0' where id=4; -update noar tt set b2='CZ7L9BHYOTL45P3P5HVCI77PV45R' where id=4; -update noar ti set b2='CZ7L9BHYOTL45P3P5HVCI77PV45R' where id=4; -update noar tt set b0='292MSMHCG9J7W8JV24Q' where id=5; -update noar ti set b0='292MSMHCG9J7W8JV24Q' where id=5; -update noar tt set b1='MWCPOCMY' where id=5; -update noar ti set b1='MWCPOCMY' where id=5; -update noar tt set b2='PG' where id=5; -update noar ti set b2='PG' where id=5; -update noar tt set b0='YBKSVEI6S76HXMT7J' where id=6; -update noar ti set b0='YBKSVEI6S76HXMT7J' where id=6; -update noar tt set b1='ASIL8EPIEP' where id=6; -update noar ti set b1='ASIL8EPIEP' where id=6; -update noar tt set b2='XEFHH7CNNMOYS0FQ4JGIRPZ' where id=6; -update noar ti set b2='XEFHH7CNNMOYS0FQ4JGIRPZ' where id=6; -update noar tt set b0='SVK3OKVD592V3DLJGZWI' where id=7; -update noar ti set b0='SVK3OKVD592V3DLJGZWI' where id=7; -update noar tt set b1='ZDN6T0H31T6U6SPT319GJS8AO6' where id=7; -update noar ti set b1='ZDN6T0H31T6U6SPT319GJS8AO6' where id=7; -update noar tt set b2='PTZED93DMLC9MH25D2H0' where id=7; -update noar ti set b2='PTZED93DMLC9MH25D2H0' where id=7; -update noar tt set b0='Z2257C73FE768H3OGQYRQYJ' where id=8; -update noar ti set b0='Z2257C73FE768H3OGQYRQYJ' where id=8; -update noar tt set b1='JFE2BNXQ6F6QO4F36PV' where id=8; -update noar ti set b1='JFE2BNXQ6F6QO4F36PV' where id=8; -update noar tt set b2='YNYCFK4IEVWDEK2I2NPGYPMDF' where id=8; -update noar ti set b2='YNYCFK4IEVWDEK2I2NPGYPMDF' where id=8; -update noar tt set b0='P7TEHC1E7H' where id=9; -update noar ti set b0='P7TEHC1E7H' where id=9; -update noar tt set b1='GAMS' where id=9; -update noar ti set b1='GAMS' where id=9; -update noar tt set b2='ISQVEH5DWMZA9CFO6TX' where id=9; -update noar ti set b2='ISQVEH5DWMZA9CFO6TX' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -b0 text null, -b1 longblob null, -b2 mediumblob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set b0='VEV9WU59A5QRVQHC' where id=1; -update noar ti set b0='VEV9WU59A5QRVQHC' where id=1; -update noar tt set b1='WV6Q5JD1392NNJMAKJ5' where id=1; -update noar ti set b1='WV6Q5JD1392NNJMAKJ5' where id=1; -update noar tt set b2='WN52ORPN75BUDPO8E1T29' where id=1; -update noar ti set b2='WN52ORPN75BUDPO8E1T29' where id=1; -update noar tt set b0='LNFEZR474NVFI' where id=2; -update noar ti set b0='LNFEZR474NVFI' where id=2; -update noar tt set b1='I4J85LC7Y5C6UAFAYW86GG8M7O0OUTN' where id=2; -update noar ti set b1='I4J85LC7Y5C6UAFAYW86GG8M7O0OUTN' where id=2; -update noar tt set b2='3DZU6' where id=2; -update noar ti set b2='3DZU6' where id=2; -update noar tt set b0='P6XMKGEREU7AA7ROKVRWVTAAN' where id=3; -update noar ti set b0='P6XMKGEREU7AA7ROKVRWVTAAN' where id=3; -update noar tt set b1='U32B4Y8PRCDZV5I3M29ITBE1' where id=3; -update noar ti set b1='U32B4Y8PRCDZV5I3M29ITBE1' where id=3; -update noar tt set b2='K9U3T4I6J3CG' where id=3; -update noar ti set b2='K9U3T4I6J3CG' where id=3; -update noar tt set b0='CR' where id=4; -update noar ti set b0='CR' where id=4; -update noar tt set b1='B38BF9K2P' where id=4; -update noar ti set b1='B38BF9K2P' where id=4; -update noar tt set b2='1IFYUVT2064YST' where id=4; -update noar ti set b2='1IFYUVT2064YST' where id=4; -update noar tt set b0='NT' where id=5; -update noar ti set b0='NT' where id=5; -update noar tt set b1='W9X11NURLXPNWPXN30' where id=5; -update noar ti set b1='W9X11NURLXPNWPXN30' where id=5; -update noar tt set b2='ZWI9O' where id=5; -update noar ti set b2='ZWI9O' where id=5; -update noar tt set b0='RN600UL03M' where id=6; -update noar ti set b0='RN600UL03M' where id=6; -update noar tt set b1='6FQDTUI' where id=6; -update noar ti set b1='6FQDTUI' where id=6; -update noar tt set b2='ITYTZVLJTMG9QY5TG00JVHIZTH' where id=6; -update noar ti set b2='ITYTZVLJTMG9QY5TG00JVHIZTH' where id=6; -update noar tt set b0='H8EKMVY2SZ7JW4YXVRO7Q' where id=7; -update noar ti set b0='H8EKMVY2SZ7JW4YXVRO7Q' where id=7; -update noar tt set b1='R18EEVGLUATFI1JRR2VJE16NVJO' where id=7; -update noar ti set b1='R18EEVGLUATFI1JRR2VJE16NVJO' where id=7; -update noar tt set b2='FG4G' where id=7; -update noar ti set b2='FG4G' where id=7; -update noar tt set b0='5NM000UZDLIF' where id=8; -update noar ti set b0='5NM000UZDLIF' where id=8; -update noar tt set b1='HYXNAJ8QYF' where id=8; -update noar ti set b1='HYXNAJ8QYF' where id=8; -update noar tt set b2='URU0KZ4NK2U' where id=8; -update noar ti set b2='URU0KZ4NK2U' where id=8; -update noar tt set b0='LRQK35RR' where id=9; -update noar ti set b0='LRQK35RR' where id=9; -update noar tt set b1='QACJ71GE6K5Z' where id=9; -update noar ti set b1='QACJ71GE6K5Z' where id=9; -update noar tt set b2='MSTWYPU' where id=9; -update noar ti set b2='MSTWYPU' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -b0 text not null, -b1 longblob not null, -b2 mediumblob not null -) engine=tokudb; -insert into tt values (1,'','',''); -insert into tt values (2,'','',''); -insert into tt values (3,'','',''); -insert into tt values (4,'','',''); -insert into tt values (5,'','',''); -insert into tt values (6,'','',''); -insert into tt values (7,'','',''); -insert into tt values (8,'','',''); -insert into tt values (9,'','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set b0='QDV1DW52NO1MN4WBTEHIA3' where id=1; -update noar ti set b0='QDV1DW52NO1MN4WBTEHIA3' where id=1; -update noar tt set b1='8Y23EXK4M9OJUBIEX1040CN7O0KIHVY' where id=1; -update noar ti set b1='8Y23EXK4M9OJUBIEX1040CN7O0KIHVY' where id=1; -update noar tt set b2='G1ZFVE1R9JMUG' where id=1; -update noar ti set b2='G1ZFVE1R9JMUG' where id=1; -update noar tt set b0='G1VTP8VER9X5XF76IHM' where id=2; -update noar ti set b0='G1VTP8VER9X5XF76IHM' where id=2; -update noar tt set b1='SA73SUE0VCNOE7BFNMD51ECOCHLO' where id=2; -update noar ti set b1='SA73SUE0VCNOE7BFNMD51ECOCHLO' where id=2; -update noar tt set b2='HPKDPWSVCQV' where id=2; -update noar ti set b2='HPKDPWSVCQV' where id=2; -update noar tt set b0='1FYN8LDJ6DNLJ34' where id=3; -update noar ti set b0='1FYN8LDJ6DNLJ34' where id=3; -update noar tt set b1='Z1SZ9WQ7VX' where id=3; -update noar ti set b1='Z1SZ9WQ7VX' where id=3; -update noar tt set b2='C4II1NMNM6JKNDQ5C80TZXKYZT' where id=3; -update noar ti set b2='C4II1NMNM6JKNDQ5C80TZXKYZT' where id=3; -update noar tt set b0='4XFAFZ8EF4QFK6XHLWC6BGH' where id=4; -update noar ti set b0='4XFAFZ8EF4QFK6XHLWC6BGH' where id=4; -update noar tt set b1='EMH5CJKDFI387I7LFB3A9HUQOCWQSJ' where id=4; -update noar ti set b1='EMH5CJKDFI387I7LFB3A9HUQOCWQSJ' where id=4; -update noar tt set b2='0JHKEL816XK' where id=4; -update noar ti set b2='0JHKEL816XK' where id=4; -update noar tt set b0='LPZCG1NJLEJ93YM9YWZ8C' where id=5; -update noar ti set b0='LPZCG1NJLEJ93YM9YWZ8C' where id=5; -update noar tt set b1='4I26Y2BZUYJDWBB5R9OZIBN9E' where id=5; -update noar ti set b1='4I26Y2BZUYJDWBB5R9OZIBN9E' where id=5; -update noar tt set b2='PPJJ82O7WFYXZK4D6LF44EZ' where id=5; -update noar ti set b2='PPJJ82O7WFYXZK4D6LF44EZ' where id=5; -update noar tt set b0='DE3306BZ9H185S' where id=6; -update noar ti set b0='DE3306BZ9H185S' where id=6; -update noar tt set b1='DC6RPIWT22VB9MRF5EL5V' where id=6; -update noar ti set b1='DC6RPIWT22VB9MRF5EL5V' where id=6; -update noar tt set b2='F5VQ' where id=6; -update noar ti set b2='F5VQ' where id=6; -update noar tt set b0='I3ZX4DBGGUQA39FDULDSD' where id=7; -update noar ti set b0='I3ZX4DBGGUQA39FDULDSD' where id=7; -update noar tt set b1='T4F' where id=7; -update noar ti set b1='T4F' where id=7; -update noar tt set b2='D1VR6GGTXT8Z4F' where id=7; -update noar ti set b2='D1VR6GGTXT8Z4F' where id=7; -update noar tt set b0='VSC6LZCV2ZE416NVFT764' where id=8; -update noar ti set b0='VSC6LZCV2ZE416NVFT764' where id=8; -update noar tt set b1='AUYFPW84B73M6HJ1OAT7F4L2940KLE' where id=8; -update noar ti set b1='AUYFPW84B73M6HJ1OAT7F4L2940KLE' where id=8; -update noar tt set b2='KX63IC4RB0PVY5D3FNGUJLEK2DMFY9' where id=8; -update noar ti set b2='KX63IC4RB0PVY5D3FNGUJLEK2DMFY9' where id=8; -update noar tt set b0='CY4P7S18Q9XA28M5XXG1N9CO8' where id=9; -update noar ti set b0='CY4P7S18Q9XA28M5XXG1N9CO8' where id=9; -update noar tt set b1='YFHB0JI3ZYNUZ404MZ4AAF' where id=9; -update noar ti set b1='YFHB0JI3ZYNUZ404MZ4AAF' where id=9; -update noar tt set b2='D9GAS0S5ROW' where id=9; -update noar ti set b2='D9GAS0S5ROW' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -b0 text null, -b1 longblob null, -b2 longblob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set b0='2NGUMPZUZX0TL260L' where id=1; -update noar ti set b0='2NGUMPZUZX0TL260L' where id=1; -update noar tt set b1='DW8W78O1G5OQ2EF0V3ID8DSH48O' where id=1; -update noar ti set b1='DW8W78O1G5OQ2EF0V3ID8DSH48O' where id=1; -update noar tt set b2='2JSMC5IUQBXOL1MX16TGXAJH' where id=1; -update noar ti set b2='2JSMC5IUQBXOL1MX16TGXAJH' where id=1; -update noar tt set b0='HIAH3SCF1YAVTQ3E1DZNGNVW' where id=2; -update noar ti set b0='HIAH3SCF1YAVTQ3E1DZNGNVW' where id=2; -update noar tt set b1='5EKU2AC' where id=2; -update noar ti set b1='5EKU2AC' where id=2; -update noar tt set b2='PGZ4HGDFR5MG9RFQPSW1J48E' where id=2; -update noar ti set b2='PGZ4HGDFR5MG9RFQPSW1J48E' where id=2; -update noar tt set b0='ZTTHM7B3BXVE' where id=3; -update noar ti set b0='ZTTHM7B3BXVE' where id=3; -update noar tt set b1='ZSNFZI9EUVQNEJNS26723HR' where id=3; -update noar ti set b1='ZSNFZI9EUVQNEJNS26723HR' where id=3; -update noar tt set b2='DKATUL9WLR81U5AO9H7FI' where id=3; -update noar ti set b2='DKATUL9WLR81U5AO9H7FI' where id=3; -update noar tt set b0='9R' where id=4; -update noar ti set b0='9R' where id=4; -update noar tt set b1='BZXBHWT' where id=4; -update noar ti set b1='BZXBHWT' where id=4; -update noar tt set b2='VC663OJ8UT9EW5P07LZ7B38JS2' where id=4; -update noar ti set b2='VC663OJ8UT9EW5P07LZ7B38JS2' where id=4; -update noar tt set b0='M2T' where id=5; -update noar ti set b0='M2T' where id=5; -update noar tt set b1='H6CXFZ725MF1PPCSZF' where id=5; -update noar ti set b1='H6CXFZ725MF1PPCSZF' where id=5; -update noar tt set b2='0VVHL1FA457G06IJETDPD45C0V5EUU' where id=5; -update noar ti set b2='0VVHL1FA457G06IJETDPD45C0V5EUU' where id=5; -update noar tt set b0='VJW3KOMHUQL4RW' where id=6; -update noar ti set b0='VJW3KOMHUQL4RW' where id=6; -update noar tt set b1='2B28D758GWHYYCXM4X' where id=6; -update noar ti set b1='2B28D758GWHYYCXM4X' where id=6; -update noar tt set b2='Y3J29IF87PC' where id=6; -update noar ti set b2='Y3J29IF87PC' where id=6; -update noar tt set b0='1' where id=7; -update noar ti set b0='1' where id=7; -update noar tt set b1='TQHPLGW8PLJQB9A' where id=7; -update noar ti set b1='TQHPLGW8PLJQB9A' where id=7; -update noar tt set b2='I89R20VLFWTEJ6WPY6VPW' where id=7; -update noar ti set b2='I89R20VLFWTEJ6WPY6VPW' where id=7; -update noar tt set b0='EQVFQ13R5L66IC7P9SNQ90GXFJ2VMV' where id=8; -update noar ti set b0='EQVFQ13R5L66IC7P9SNQ90GXFJ2VMV' where id=8; -update noar tt set b1='HXUSMNLI22HYEONA2GA6' where id=8; -update noar ti set b1='HXUSMNLI22HYEONA2GA6' where id=8; -update noar tt set b2='5DH9JOODED0Q7FM82I7ZKGYWWTG1' where id=8; -update noar ti set b2='5DH9JOODED0Q7FM82I7ZKGYWWTG1' where id=8; -update noar tt set b0='JSRU0RMHB3DZDIW13R3Q7BC3SAA' where id=9; -update noar ti set b0='JSRU0RMHB3DZDIW13R3Q7BC3SAA' where id=9; -update noar tt set b1='Z2JW8XTSL51UPV7B9OS3D' where id=9; -update noar ti set b1='Z2JW8XTSL51UPV7B9OS3D' where id=9; -update noar tt set b2='ZMU' where id=9; -update noar ti set b2='ZMU' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -b0 text not null, -b1 longblob not null, -b2 longblob not null -) engine=tokudb; -insert into tt values (1,'','',''); -insert into tt values (2,'','',''); -insert into tt values (3,'','',''); -insert into tt values (4,'','',''); -insert into tt values (5,'','',''); -insert into tt values (6,'','',''); -insert into tt values (7,'','',''); -insert into tt values (8,'','',''); -insert into tt values (9,'','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set b0='LJKN0KJFQ' where id=1; -update noar ti set b0='LJKN0KJFQ' where id=1; -update noar tt set b1='J8PFJQGICL' where id=1; -update noar ti set b1='J8PFJQGICL' where id=1; -update noar tt set b2='4AA3XU1LOHABMVAHPBZ631ALUFCZO9V' where id=1; -update noar ti set b2='4AA3XU1LOHABMVAHPBZ631ALUFCZO9V' where id=1; -update noar tt set b0='7O6' where id=2; -update noar ti set b0='7O6' where id=2; -update noar tt set b1='M6D2N2N4W5VYB06EKI' where id=2; -update noar ti set b1='M6D2N2N4W5VYB06EKI' where id=2; -update noar tt set b2='8E0TC8I31M6L572PHIXMRA' where id=2; -update noar ti set b2='8E0TC8I31M6L572PHIXMRA' where id=2; -update noar tt set b0='22BVZD36B74GL8467REMX1O4' where id=3; -update noar ti set b0='22BVZD36B74GL8467REMX1O4' where id=3; -update noar tt set b1='H17E70BNU9039OJG89UF3K3TI' where id=3; -update noar ti set b1='H17E70BNU9039OJG89UF3K3TI' where id=3; -update noar tt set b2='26M8B15CDHG5YEK' where id=3; -update noar ti set b2='26M8B15CDHG5YEK' where id=3; -update noar tt set b0='QTA5LHL4PILPW7NPQQ90PITP012M' where id=4; -update noar ti set b0='QTA5LHL4PILPW7NPQQ90PITP012M' where id=4; -update noar tt set b1='O68YTNV7MS2D' where id=4; -update noar ti set b1='O68YTNV7MS2D' where id=4; -update noar tt set b2='LOVI692I2W67ICLBID' where id=4; -update noar ti set b2='LOVI692I2W67ICLBID' where id=4; -update noar tt set b0='GKH3D' where id=5; -update noar ti set b0='GKH3D' where id=5; -update noar tt set b1='X0CMCGJM773FR99DV4BIAB' where id=5; -update noar ti set b1='X0CMCGJM773FR99DV4BIAB' where id=5; -update noar tt set b2='DRRUR4GR9BSW' where id=5; -update noar ti set b2='DRRUR4GR9BSW' where id=5; -update noar tt set b0='QDZR' where id=6; -update noar ti set b0='QDZR' where id=6; -update noar tt set b1='8OW73WTSBTU6LAXIK79J516X' where id=6; -update noar ti set b1='8OW73WTSBTU6LAXIK79J516X' where id=6; -update noar tt set b2='NLHR487IVFOBOF9OQ69SQ8R8WJP6X' where id=6; -update noar ti set b2='NLHR487IVFOBOF9OQ69SQ8R8WJP6X' where id=6; -update noar tt set b0='U2U1O0SBSAG' where id=7; -update noar ti set b0='U2U1O0SBSAG' where id=7; -update noar tt set b1='5GE0IWAZ1M6M126RGXLE' where id=7; -update noar ti set b1='5GE0IWAZ1M6M126RGXLE' where id=7; -update noar tt set b2='N279NXUJ2SWUAYUOXEPLYEUO' where id=7; -update noar ti set b2='N279NXUJ2SWUAYUOXEPLYEUO' where id=7; -update noar tt set b0='2C18JJE3CF6Q92UMJ9' where id=8; -update noar ti set b0='2C18JJE3CF6Q92UMJ9' where id=8; -update noar tt set b1='XIIXQGXKOT7G2P5JANVOS8X' where id=8; -update noar ti set b1='XIIXQGXKOT7G2P5JANVOS8X' where id=8; -update noar tt set b2='AC6CJR5Z8J81S4RK31F8M' where id=8; -update noar ti set b2='AC6CJR5Z8J81S4RK31F8M' where id=8; -update noar tt set b0='T595' where id=9; -update noar ti set b0='T595' where id=9; -update noar tt set b1='6HUCK6POCSAFHSZLNRVPLMGO8B' where id=9; -update noar ti set b1='6HUCK6POCSAFHSZLNRVPLMGO8B' where id=9; -update noar tt set b2='GQ89J3PPUW17294K0H7A9Z8J8XEP0M' where id=9; -update noar ti set b2='GQ89J3PPUW17294K0H7A9Z8J8XEP0M' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -b0 text null, -b1 longblob null, -b2 text null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set b0='HL0FNP7CE9H9B3G9BDLETK' where id=1; -update noar ti set b0='HL0FNP7CE9H9B3G9BDLETK' where id=1; -update noar tt set b1='PVO' where id=1; -update noar ti set b1='PVO' where id=1; -update noar tt set b2='S8YNFEYYWLMVIYGUMBDT8WQG5L6QKU5' where id=1; -update noar ti set b2='S8YNFEYYWLMVIYGUMBDT8WQG5L6QKU5' where id=1; -update noar tt set b0='GM184QL0VV6TSWV' where id=2; -update noar ti set b0='GM184QL0VV6TSWV' where id=2; -update noar tt set b1='SJZW15OHPP3MCWYRES9NMM7VEIE4' where id=2; -update noar ti set b1='SJZW15OHPP3MCWYRES9NMM7VEIE4' where id=2; -update noar tt set b2='DVHRUQ1BPVBB8PIC51F3RCYUE7T6ZOHT' where id=2; -update noar ti set b2='DVHRUQ1BPVBB8PIC51F3RCYUE7T6ZOHT' where id=2; -update noar tt set b0='T3SUCNTHSHUW9S5VRBV97SC' where id=3; -update noar ti set b0='T3SUCNTHSHUW9S5VRBV97SC' where id=3; -update noar tt set b1='OP8VT8F4AH9J9D9' where id=3; -update noar ti set b1='OP8VT8F4AH9J9D9' where id=3; -update noar tt set b2='5IW2MK4C7Q5Z3Q3W9M1JEOCNGIB4R' where id=3; -update noar ti set b2='5IW2MK4C7Q5Z3Q3W9M1JEOCNGIB4R' where id=3; -update noar tt set b0='01JNLPY3FC07Q7MR7SEUOG4' where id=4; -update noar ti set b0='01JNLPY3FC07Q7MR7SEUOG4' where id=4; -update noar tt set b1='BIMVQMYKY778883059GDKSWIPX47S' where id=4; -update noar ti set b1='BIMVQMYKY778883059GDKSWIPX47S' where id=4; -update noar tt set b2='00YU0I95PUABBNAMI1GCKCABOVUS' where id=4; -update noar ti set b2='00YU0I95PUABBNAMI1GCKCABOVUS' where id=4; -update noar tt set b0='3U6BE' where id=5; -update noar ti set b0='3U6BE' where id=5; -update noar tt set b1='FG334ISBNVVT2ROXCSJ' where id=5; -update noar ti set b1='FG334ISBNVVT2ROXCSJ' where id=5; -update noar tt set b2='T53RHR1265QK2VRI1W36QP77MAK7X' where id=5; -update noar ti set b2='T53RHR1265QK2VRI1W36QP77MAK7X' where id=5; -update noar tt set b0='H8JW' where id=6; -update noar ti set b0='H8JW' where id=6; -update noar tt set b1='GAKIJANPJVG1W3HJZG22SF1K2VPM7HT' where id=6; -update noar ti set b1='GAKIJANPJVG1W3HJZG22SF1K2VPM7HT' where id=6; -update noar tt set b2='WD94AI6BDICDEZ6IG8J9IZPJQC' where id=6; -update noar ti set b2='WD94AI6BDICDEZ6IG8J9IZPJQC' where id=6; -update noar tt set b0='YABRBGGTPYX522I3V' where id=7; -update noar ti set b0='YABRBGGTPYX522I3V' where id=7; -update noar tt set b1='G7E7PGPLOW4958282' where id=7; -update noar ti set b1='G7E7PGPLOW4958282' where id=7; -update noar tt set b2='MCB9TKDZBXHLW' where id=7; -update noar ti set b2='MCB9TKDZBXHLW' where id=7; -update noar tt set b0='ADN8PPM' where id=8; -update noar ti set b0='ADN8PPM' where id=8; -update noar tt set b1='42XRCNNAUE1F6KOEL2GQNX' where id=8; -update noar ti set b1='42XRCNNAUE1F6KOEL2GQNX' where id=8; -update noar tt set b2='S30726STKNXAZUAG6MKT8P5Y65PK0M' where id=8; -update noar ti set b2='S30726STKNXAZUAG6MKT8P5Y65PK0M' where id=8; -update noar tt set b0='F7C1E0GW6YKTZMNMLB8WKJKKEIKY' where id=9; -update noar ti set b0='F7C1E0GW6YKTZMNMLB8WKJKKEIKY' where id=9; -update noar tt set b1='KE5E8S9LXN2GZCCH' where id=9; -update noar ti set b1='KE5E8S9LXN2GZCCH' where id=9; -update noar tt set b2='QL3' where id=9; -update noar ti set b2='QL3' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -b0 text not null, -b1 longblob not null, -b2 text not null -) engine=tokudb; -insert into tt values (1,'','',''); -insert into tt values (2,'','',''); -insert into tt values (3,'','',''); -insert into tt values (4,'','',''); -insert into tt values (5,'','',''); -insert into tt values (6,'','',''); -insert into tt values (7,'','',''); -insert into tt values (8,'','',''); -insert into tt values (9,'','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set b0='X6LMVB76NTAXAGOR8DN5PL3X3TTUXCB' where id=1; -update noar ti set b0='X6LMVB76NTAXAGOR8DN5PL3X3TTUXCB' where id=1; -update noar tt set b1='LS566VGAAI6RQ7JP1J10OGE' where id=1; -update noar ti set b1='LS566VGAAI6RQ7JP1J10OGE' where id=1; -update noar tt set b2='7MH' where id=1; -update noar ti set b2='7MH' where id=1; -update noar tt set b0='4K4OMGG0PIO2ZSAGP' where id=2; -update noar ti set b0='4K4OMGG0PIO2ZSAGP' where id=2; -update noar tt set b1='U2L8X89150GACC6BIDKI0XSV5P094' where id=2; -update noar ti set b1='U2L8X89150GACC6BIDKI0XSV5P094' where id=2; -update noar tt set b2='G2T1I8Q8S9IBYQECZ86RZ4TTIACVZ' where id=2; -update noar ti set b2='G2T1I8Q8S9IBYQECZ86RZ4TTIACVZ' where id=2; -update noar tt set b0='3OHI6SLJZIA3OVB' where id=3; -update noar ti set b0='3OHI6SLJZIA3OVB' where id=3; -update noar tt set b1='MILHDQXXBYL0RA82IGQDO' where id=3; -update noar ti set b1='MILHDQXXBYL0RA82IGQDO' where id=3; -update noar tt set b2='0LX36X4AO' where id=3; -update noar ti set b2='0LX36X4AO' where id=3; -update noar tt set b0='KY3MG5742LGRZBC232TXTE1BH60SV' where id=4; -update noar ti set b0='KY3MG5742LGRZBC232TXTE1BH60SV' where id=4; -update noar tt set b1='P' where id=4; -update noar ti set b1='P' where id=4; -update noar tt set b2='927QY4ZJXANNGEHQM8JTGGE1B' where id=4; -update noar ti set b2='927QY4ZJXANNGEHQM8JTGGE1B' where id=4; -update noar tt set b0='R9JQPMS4KQFWF4ABBF6' where id=5; -update noar ti set b0='R9JQPMS4KQFWF4ABBF6' where id=5; -update noar tt set b1='J' where id=5; -update noar ti set b1='J' where id=5; -update noar tt set b2='SPF2VKZTAAR' where id=5; -update noar ti set b2='SPF2VKZTAAR' where id=5; -update noar tt set b0='EJ5YBRPHR' where id=6; -update noar ti set b0='EJ5YBRPHR' where id=6; -update noar tt set b1='GV2' where id=6; -update noar ti set b1='GV2' where id=6; -update noar tt set b2='HI90YAE5DF2WA7OIV2DDJHZKNM8EADH' where id=6; -update noar ti set b2='HI90YAE5DF2WA7OIV2DDJHZKNM8EADH' where id=6; -update noar tt set b0='R' where id=7; -update noar ti set b0='R' where id=7; -update noar tt set b1='5R2ZMNI8U4OSCN1RSXHA79OC66ACH' where id=7; -update noar ti set b1='5R2ZMNI8U4OSCN1RSXHA79OC66ACH' where id=7; -update noar tt set b2='9YFCAX' where id=7; -update noar ti set b2='9YFCAX' where id=7; -update noar tt set b0='Y1RN6IF8X31Y3DKNZ5GGPB3I2Z3DOA' where id=8; -update noar ti set b0='Y1RN6IF8X31Y3DKNZ5GGPB3I2Z3DOA' where id=8; -update noar tt set b1='B45L2BGXIR6AGB18MIL4IJ1YIE' where id=8; -update noar ti set b1='B45L2BGXIR6AGB18MIL4IJ1YIE' where id=8; -update noar tt set b2='3H02CTVAJ1UYT2BS8SJX5JB4V4JXXFA' where id=8; -update noar ti set b2='3H02CTVAJ1UYT2BS8SJX5JB4V4JXXFA' where id=8; -update noar tt set b0='954IT78G5DN4D' where id=9; -update noar ti set b0='954IT78G5DN4D' where id=9; -update noar tt set b1='S0ONUXIFI67G7T' where id=9; -update noar ti set b1='S0ONUXIFI67G7T' where id=9; -update noar tt set b2='K41RZTCZ61FMR' where id=9; -update noar ti set b2='K41RZTCZ61FMR' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -b0 text null, -b1 text null, -b2 tinyblob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set b0='9PDRR' where id=1; -update noar ti set b0='9PDRR' where id=1; -update noar tt set b1='YJWT6F3FJF6O69D4L2' where id=1; -update noar ti set b1='YJWT6F3FJF6O69D4L2' where id=1; -update noar tt set b2='N4QR' where id=1; -update noar ti set b2='N4QR' where id=1; -update noar tt set b0='B5R9FO1' where id=2; -update noar ti set b0='B5R9FO1' where id=2; -update noar tt set b1='0Q39EW' where id=2; -update noar ti set b1='0Q39EW' where id=2; -update noar tt set b2='96LO1MFORWSRU0JKFVNDX2KX1XGNINJ' where id=2; -update noar ti set b2='96LO1MFORWSRU0JKFVNDX2KX1XGNINJ' where id=2; -update noar tt set b0='Y4YX8921BJM4DW3Z7Z0W' where id=3; -update noar ti set b0='Y4YX8921BJM4DW3Z7Z0W' where id=3; -update noar tt set b1='ITM8GR2EDW8L7QA7QTD1JRFCC7NR6AZD' where id=3; -update noar ti set b1='ITM8GR2EDW8L7QA7QTD1JRFCC7NR6AZD' where id=3; -update noar tt set b2='9WWY7BGR7JMDIIZCF4A7FQPZN64N' where id=3; -update noar ti set b2='9WWY7BGR7JMDIIZCF4A7FQPZN64N' where id=3; -update noar tt set b0='Z6L250O1S' where id=4; -update noar ti set b0='Z6L250O1S' where id=4; -update noar tt set b1='YQL6L44N9XX39G6L23CZC5QOKY' where id=4; -update noar ti set b1='YQL6L44N9XX39G6L23CZC5QOKY' where id=4; -update noar tt set b2='2J0V08Z6RZD5WBKCXTEZW1FZLRDW7Y' where id=4; -update noar ti set b2='2J0V08Z6RZD5WBKCXTEZW1FZLRDW7Y' where id=4; -update noar tt set b0='IW5Q65CI0THXPBGQ3NAXXDNI06' where id=5; -update noar ti set b0='IW5Q65CI0THXPBGQ3NAXXDNI06' where id=5; -update noar tt set b1='U3B9K0CFSOOJ0RLKZW0MKUHEPYQ' where id=5; -update noar ti set b1='U3B9K0CFSOOJ0RLKZW0MKUHEPYQ' where id=5; -update noar tt set b2='PCPIC5BCS23NVUGXK4' where id=5; -update noar ti set b2='PCPIC5BCS23NVUGXK4' where id=5; -update noar tt set b0='29YI53POYKDJXB6DOKPEYBZSB9C' where id=6; -update noar ti set b0='29YI53POYKDJXB6DOKPEYBZSB9C' where id=6; -update noar tt set b1='UU4WGE7FUQVIFXD98O' where id=6; -update noar ti set b1='UU4WGE7FUQVIFXD98O' where id=6; -update noar tt set b2='MX3WNZ' where id=6; -update noar ti set b2='MX3WNZ' where id=6; -update noar tt set b0='3KV07CY5WSTUUUSD67DBEG6B' where id=7; -update noar ti set b0='3KV07CY5WSTUUUSD67DBEG6B' where id=7; -update noar tt set b1='9H8LBF7IPVSJVEWCEDDFKWOS' where id=7; -update noar ti set b1='9H8LBF7IPVSJVEWCEDDFKWOS' where id=7; -update noar tt set b2='8AN159KCL5KERUVC' where id=7; -update noar ti set b2='8AN159KCL5KERUVC' where id=7; -update noar tt set b0='7MMD31CWOVRTHTGM6CDAX35W7' where id=8; -update noar ti set b0='7MMD31CWOVRTHTGM6CDAX35W7' where id=8; -update noar tt set b1='XHM8L9CUJURAT' where id=8; -update noar ti set b1='XHM8L9CUJURAT' where id=8; -update noar tt set b2='CB3VD5FFE9T9WW3GGDZW09DWAQO' where id=8; -update noar ti set b2='CB3VD5FFE9T9WW3GGDZW09DWAQO' where id=8; -update noar tt set b0='767TM4RMFEBRS4NSYVSI6U8MKB8C' where id=9; -update noar ti set b0='767TM4RMFEBRS4NSYVSI6U8MKB8C' where id=9; -update noar tt set b1='D7X2NO5F6V6S01APM6O30EG5BHKM' where id=9; -update noar ti set b1='D7X2NO5F6V6S01APM6O30EG5BHKM' where id=9; -update noar tt set b2='6SDB8NYHYVZWXZEFTYC50X8YN' where id=9; -update noar ti set b2='6SDB8NYHYVZWXZEFTYC50X8YN' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -b0 text not null, -b1 text not null, -b2 tinyblob not null -) engine=tokudb; -insert into tt values (1,'','',''); -insert into tt values (2,'','',''); -insert into tt values (3,'','',''); -insert into tt values (4,'','',''); -insert into tt values (5,'','',''); -insert into tt values (6,'','',''); -insert into tt values (7,'','',''); -insert into tt values (8,'','',''); -insert into tt values (9,'','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set b0='9YTTXBH3O0JP8JHED' where id=1; -update noar ti set b0='9YTTXBH3O0JP8JHED' where id=1; -update noar tt set b1='BDSIF9GRHQ4SE0FO0PTW9GK' where id=1; -update noar ti set b1='BDSIF9GRHQ4SE0FO0PTW9GK' where id=1; -update noar tt set b2='9X3XHHY7BETNSR30NA44GUDFLCZRMFZ' where id=1; -update noar ti set b2='9X3XHHY7BETNSR30NA44GUDFLCZRMFZ' where id=1; -update noar tt set b0='NV3MVBDLV7FNH6PB8J5O06IVRV' where id=2; -update noar ti set b0='NV3MVBDLV7FNH6PB8J5O06IVRV' where id=2; -update noar tt set b1='LKXSN4SGRH2S8CRG' where id=2; -update noar ti set b1='LKXSN4SGRH2S8CRG' where id=2; -update noar tt set b2='U4Z0FNP2LK3PG' where id=2; -update noar ti set b2='U4Z0FNP2LK3PG' where id=2; -update noar tt set b0='50ZUMS' where id=3; -update noar ti set b0='50ZUMS' where id=3; -update noar tt set b1='60TXDK826A8NIVQ0ITO79H7S0VBQY93' where id=3; -update noar ti set b1='60TXDK826A8NIVQ0ITO79H7S0VBQY93' where id=3; -update noar tt set b2='HVJIGK1ZZ1C' where id=3; -update noar ti set b2='HVJIGK1ZZ1C' where id=3; -update noar tt set b0='K0MB' where id=4; -update noar ti set b0='K0MB' where id=4; -update noar tt set b1='XXGFNIO' where id=4; -update noar ti set b1='XXGFNIO' where id=4; -update noar tt set b2='AVHY40W9J7Z' where id=4; -update noar ti set b2='AVHY40W9J7Z' where id=4; -update noar tt set b0='Q' where id=5; -update noar ti set b0='Q' where id=5; -update noar tt set b1='5BLHLE' where id=5; -update noar ti set b1='5BLHLE' where id=5; -update noar tt set b2='TT6I' where id=5; -update noar ti set b2='TT6I' where id=5; -update noar tt set b0='TR6TBKNST5US9OF6J19AFF34K8KZH' where id=6; -update noar ti set b0='TR6TBKNST5US9OF6J19AFF34K8KZH' where id=6; -update noar tt set b1='08VYPDAD' where id=6; -update noar ti set b1='08VYPDAD' where id=6; -update noar tt set b2='SC2IP6C' where id=6; -update noar ti set b2='SC2IP6C' where id=6; -update noar tt set b0='WQYRGW4BHD17YJC8U1KMXUWE2WH' where id=7; -update noar ti set b0='WQYRGW4BHD17YJC8U1KMXUWE2WH' where id=7; -update noar tt set b1='0I1VKWQ5YCC9RQCFXXDQ0OGIE0EYSEM1' where id=7; -update noar ti set b1='0I1VKWQ5YCC9RQCFXXDQ0OGIE0EYSEM1' where id=7; -update noar tt set b2='TAIIGOZ1IVKIZCQJ0VPB1Y59Y' where id=7; -update noar ti set b2='TAIIGOZ1IVKIZCQJ0VPB1Y59Y' where id=7; -update noar tt set b0='MYPFFRUD9U9JQUCIE2VB1' where id=8; -update noar ti set b0='MYPFFRUD9U9JQUCIE2VB1' where id=8; -update noar tt set b1='AJXFU5274YAHNGLY64KL4QVWY14DQI' where id=8; -update noar ti set b1='AJXFU5274YAHNGLY64KL4QVWY14DQI' where id=8; -update noar tt set b2='XMKA9NAK0CUECYB0QLBCUZZKZ8M0IO7' where id=8; -update noar ti set b2='XMKA9NAK0CUECYB0QLBCUZZKZ8M0IO7' where id=8; -update noar tt set b0='ZAQ' where id=9; -update noar ti set b0='ZAQ' where id=9; -update noar tt set b1='UKJZ1K865PGML0CR' where id=9; -update noar ti set b1='UKJZ1K865PGML0CR' where id=9; -update noar tt set b2='3JZNQ6KYFI5CVIPW2' where id=9; -update noar ti set b2='3JZNQ6KYFI5CVIPW2' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -b0 text null, -b1 text null, -b2 blob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set b0='TKPI1SH2U0AA0QK5AAFPL3Z6DJIG4C' where id=1; -update noar ti set b0='TKPI1SH2U0AA0QK5AAFPL3Z6DJIG4C' where id=1; -update noar tt set b1='5VTYJ7IAH' where id=1; -update noar ti set b1='5VTYJ7IAH' where id=1; -update noar tt set b2='IWIH3TXEVUEOUB57FW6YO3O0XU2WXXWL' where id=1; -update noar ti set b2='IWIH3TXEVUEOUB57FW6YO3O0XU2WXXWL' where id=1; -update noar tt set b0='6PAXYU1552ZPFC8LHU3EB9V65NX262JA' where id=2; -update noar ti set b0='6PAXYU1552ZPFC8LHU3EB9V65NX262JA' where id=2; -update noar tt set b1='53UX1QOKRL7X8TXY85EZ' where id=2; -update noar ti set b1='53UX1QOKRL7X8TXY85EZ' where id=2; -update noar tt set b2='IHKV66Q2MTXPGWJJ' where id=2; -update noar ti set b2='IHKV66Q2MTXPGWJJ' where id=2; -update noar tt set b0='I0BGQKWU5L5JOKJWDLGXUKJDIP' where id=3; -update noar ti set b0='I0BGQKWU5L5JOKJWDLGXUKJDIP' where id=3; -update noar tt set b1='I18ATAJ20NKWC798E8EPIKQ4PYRH1EIZ' where id=3; -update noar ti set b1='I18ATAJ20NKWC798E8EPIKQ4PYRH1EIZ' where id=3; -update noar tt set b2='5' where id=3; -update noar ti set b2='5' where id=3; -update noar tt set b0='XSLQBWR13ENOHEY2W' where id=4; -update noar ti set b0='XSLQBWR13ENOHEY2W' where id=4; -update noar tt set b1='Z' where id=4; -update noar ti set b1='Z' where id=4; -update noar tt set b2='J54QREWMG121FEVNRC0SOAPBWB00YML8' where id=4; -update noar ti set b2='J54QREWMG121FEVNRC0SOAPBWB00YML8' where id=4; -update noar tt set b0='COAA589ST1CR0KT9I8RV0YU' where id=5; -update noar ti set b0='COAA589ST1CR0KT9I8RV0YU' where id=5; -update noar tt set b1='ZE72TSPZOVD50KLOKOP' where id=5; -update noar ti set b1='ZE72TSPZOVD50KLOKOP' where id=5; -update noar tt set b2='JH9ILCHR9WOVD55OOY34ZKVNU6' where id=5; -update noar ti set b2='JH9ILCHR9WOVD55OOY34ZKVNU6' where id=5; -update noar tt set b0='BVLQB5IZ7FYRS7YHET0PWZ' where id=6; -update noar ti set b0='BVLQB5IZ7FYRS7YHET0PWZ' where id=6; -update noar tt set b1='ORKV' where id=6; -update noar ti set b1='ORKV' where id=6; -update noar tt set b2='ZAPAO0VY74V2GNBM204HIE9NEO3OL1S' where id=6; -update noar ti set b2='ZAPAO0VY74V2GNBM204HIE9NEO3OL1S' where id=6; -update noar tt set b0='CP06CLD2RARFYGE8' where id=7; -update noar ti set b0='CP06CLD2RARFYGE8' where id=7; -update noar tt set b1='GTKGXWTKS14QVAHPND5' where id=7; -update noar ti set b1='GTKGXWTKS14QVAHPND5' where id=7; -update noar tt set b2='CM' where id=7; -update noar ti set b2='CM' where id=7; -update noar tt set b0='A3SJHCG64MY3SDDGP1H4TMFRJ9309D1S' where id=8; -update noar ti set b0='A3SJHCG64MY3SDDGP1H4TMFRJ9309D1S' where id=8; -update noar tt set b1='QR6J3GUTI8PHITP' where id=8; -update noar ti set b1='QR6J3GUTI8PHITP' where id=8; -update noar tt set b2='INP2JHVS1KGJ8F2X7AHYX8WMEVMOI87V' where id=8; -update noar ti set b2='INP2JHVS1KGJ8F2X7AHYX8WMEVMOI87V' where id=8; -update noar tt set b0='4OOENX85VMTHK0YOO4VASHQJ6FW4JTG' where id=9; -update noar ti set b0='4OOENX85VMTHK0YOO4VASHQJ6FW4JTG' where id=9; -update noar tt set b1='QY1D23A7XH3X' where id=9; -update noar ti set b1='QY1D23A7XH3X' where id=9; -update noar tt set b2='IZJJRU7DRVI3F2' where id=9; -update noar ti set b2='IZJJRU7DRVI3F2' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -b0 text not null, -b1 text not null, -b2 blob not null -) engine=tokudb; -insert into tt values (1,'','',''); -insert into tt values (2,'','',''); -insert into tt values (3,'','',''); -insert into tt values (4,'','',''); -insert into tt values (5,'','',''); -insert into tt values (6,'','',''); -insert into tt values (7,'','',''); -insert into tt values (8,'','',''); -insert into tt values (9,'','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set b0='ZOJ9SW49HXQQAZFK' where id=1; -update noar ti set b0='ZOJ9SW49HXQQAZFK' where id=1; -update noar tt set b1='6YP47XZYE1MVTK65OERJKIL2YET80BK' where id=1; -update noar ti set b1='6YP47XZYE1MVTK65OERJKIL2YET80BK' where id=1; -update noar tt set b2='K6B2HO6PT' where id=1; -update noar ti set b2='K6B2HO6PT' where id=1; -update noar tt set b0='G7UWUB4' where id=2; -update noar ti set b0='G7UWUB4' where id=2; -update noar tt set b1='H5NY6M6N96BLF9ICD2M8Y66VE' where id=2; -update noar ti set b1='H5NY6M6N96BLF9ICD2M8Y66VE' where id=2; -update noar tt set b2='DH0SBB0MMP09FDKGYRXGVNU1G92P44' where id=2; -update noar ti set b2='DH0SBB0MMP09FDKGYRXGVNU1G92P44' where id=2; -update noar tt set b0='GPHWBK8' where id=3; -update noar ti set b0='GPHWBK8' where id=3; -update noar tt set b1='TQ2JG9D0WP48GOR04L3GTDRBHG' where id=3; -update noar ti set b1='TQ2JG9D0WP48GOR04L3GTDRBHG' where id=3; -update noar tt set b2='AT1V1LM2K3G' where id=3; -update noar ti set b2='AT1V1LM2K3G' where id=3; -update noar tt set b0='QI4AM1Q8W5L4ENGSCR6KPQZOL9S6IF' where id=4; -update noar ti set b0='QI4AM1Q8W5L4ENGSCR6KPQZOL9S6IF' where id=4; -update noar tt set b1='PA2IBLRSF2USL6W32J7DSNLUVPUONY7H' where id=4; -update noar ti set b1='PA2IBLRSF2USL6W32J7DSNLUVPUONY7H' where id=4; -update noar tt set b2='735WPLOM' where id=4; -update noar ti set b2='735WPLOM' where id=4; -update noar tt set b0='U8MXOUAJU8Q0HLQZ8U5SLN9' where id=5; -update noar ti set b0='U8MXOUAJU8Q0HLQZ8U5SLN9' where id=5; -update noar tt set b1='G15702GA2MAUTTE9L87GY' where id=5; -update noar ti set b1='G15702GA2MAUTTE9L87GY' where id=5; -update noar tt set b2='NCWJ661R' where id=5; -update noar ti set b2='NCWJ661R' where id=5; -update noar tt set b0='939WN2' where id=6; -update noar ti set b0='939WN2' where id=6; -update noar tt set b1='01RSWCKNG7KR6GRAV7FLB901IYQV' where id=6; -update noar ti set b1='01RSWCKNG7KR6GRAV7FLB901IYQV' where id=6; -update noar tt set b2='B' where id=6; -update noar ti set b2='B' where id=6; -update noar tt set b0='1RNSOBU73X' where id=7; -update noar ti set b0='1RNSOBU73X' where id=7; -update noar tt set b1='3W606F9XRYI89205LMZNG1BS19XNU' where id=7; -update noar ti set b1='3W606F9XRYI89205LMZNG1BS19XNU' where id=7; -update noar tt set b2='JH4HDYDVZT9ITR' where id=7; -update noar ti set b2='JH4HDYDVZT9ITR' where id=7; -update noar tt set b0='PHJU3GC28F97RFABA2V69GGB0BUT235' where id=8; -update noar ti set b0='PHJU3GC28F97RFABA2V69GGB0BUT235' where id=8; -update noar tt set b1='53XB8R8PWE1NNNB7' where id=8; -update noar ti set b1='53XB8R8PWE1NNNB7' where id=8; -update noar tt set b2='UFPD2BL4SIOGE4VBF7O2O6L68VT' where id=8; -update noar ti set b2='UFPD2BL4SIOGE4VBF7O2O6L68VT' where id=8; -update noar tt set b0='V4F3D791' where id=9; -update noar ti set b0='V4F3D791' where id=9; -update noar tt set b1='9H4PC2PS3YEKU' where id=9; -update noar ti set b1='9H4PC2PS3YEKU' where id=9; -update noar tt set b2='6YVZOJIQCVDTPSX6N6GRG' where id=9; -update noar ti set b2='6YVZOJIQCVDTPSX6N6GRG' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -b0 text null, -b1 text null, -b2 mediumblob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set b0='8PFJXWHPTLME3MS7VAJ9ONHHQQ' where id=1; -update noar ti set b0='8PFJXWHPTLME3MS7VAJ9ONHHQQ' where id=1; -update noar tt set b1='C6RF5LRN62Q7TTG' where id=1; -update noar ti set b1='C6RF5LRN62Q7TTG' where id=1; -update noar tt set b2='X' where id=1; -update noar ti set b2='X' where id=1; -update noar tt set b0='YR4KE' where id=2; -update noar ti set b0='YR4KE' where id=2; -update noar tt set b1='R1WEIKTVQNOODULE' where id=2; -update noar ti set b1='R1WEIKTVQNOODULE' where id=2; -update noar tt set b2='0E2RPX0CRPKS5XXAAA9YDC5HL' where id=2; -update noar ti set b2='0E2RPX0CRPKS5XXAAA9YDC5HL' where id=2; -update noar tt set b0='ZQ80K8E8KJSMFXX' where id=3; -update noar ti set b0='ZQ80K8E8KJSMFXX' where id=3; -update noar tt set b1='13' where id=3; -update noar ti set b1='13' where id=3; -update noar tt set b2='2P1LXI' where id=3; -update noar ti set b2='2P1LXI' where id=3; -update noar tt set b0='YJMVH7FHL83P7DAR6BE396792V5FTXXE' where id=4; -update noar ti set b0='YJMVH7FHL83P7DAR6BE396792V5FTXXE' where id=4; -update noar tt set b1='1O32R1Q57Y6VBUG49PIIQ' where id=4; -update noar ti set b1='1O32R1Q57Y6VBUG49PIIQ' where id=4; -update noar tt set b2='J2Q' where id=4; -update noar ti set b2='J2Q' where id=4; -update noar tt set b0='JHZ60NXWD1Z1AU1' where id=5; -update noar ti set b0='JHZ60NXWD1Z1AU1' where id=5; -update noar tt set b1='KWRSEAMTEJR2FA7' where id=5; -update noar ti set b1='KWRSEAMTEJR2FA7' where id=5; -update noar tt set b2='IPIYGP01EUO' where id=5; -update noar ti set b2='IPIYGP01EUO' where id=5; -update noar tt set b0='S1P0MAEVOEQKFWAMRFHQA99ZB' where id=6; -update noar ti set b0='S1P0MAEVOEQKFWAMRFHQA99ZB' where id=6; -update noar tt set b1='DQOJ2V96R8H' where id=6; -update noar ti set b1='DQOJ2V96R8H' where id=6; -update noar tt set b2='70T9DR7KCA7WS5RLA40IPSJP' where id=6; -update noar ti set b2='70T9DR7KCA7WS5RLA40IPSJP' where id=6; -update noar tt set b0='TRMSFWV66PF' where id=7; -update noar ti set b0='TRMSFWV66PF' where id=7; -update noar tt set b1='8WSO2LT0VUHP1RMIM' where id=7; -update noar ti set b1='8WSO2LT0VUHP1RMIM' where id=7; -update noar tt set b2='DHKM3N3IJVJC' where id=7; -update noar ti set b2='DHKM3N3IJVJC' where id=7; -update noar tt set b0='T9GZ47NM' where id=8; -update noar ti set b0='T9GZ47NM' where id=8; -update noar tt set b1='68I4PDRVJE2' where id=8; -update noar ti set b1='68I4PDRVJE2' where id=8; -update noar tt set b2='ALPRPCMWH4I9OCHFRJ5WSRP4KORZFO7A' where id=8; -update noar ti set b2='ALPRPCMWH4I9OCHFRJ5WSRP4KORZFO7A' where id=8; -update noar tt set b0='2PH7G3W' where id=9; -update noar ti set b0='2PH7G3W' where id=9; -update noar tt set b1='VF4MQFQB9V6XA64VZV73Q6V1B037E9VO' where id=9; -update noar ti set b1='VF4MQFQB9V6XA64VZV73Q6V1B037E9VO' where id=9; -update noar tt set b2='S' where id=9; -update noar ti set b2='S' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -b0 text not null, -b1 text not null, -b2 mediumblob not null -) engine=tokudb; -insert into tt values (1,'','',''); -insert into tt values (2,'','',''); -insert into tt values (3,'','',''); -insert into tt values (4,'','',''); -insert into tt values (5,'','',''); -insert into tt values (6,'','',''); -insert into tt values (7,'','',''); -insert into tt values (8,'','',''); -insert into tt values (9,'','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set b0='QUJ9LBDNAXIHUFMR991SEHLDPJM' where id=1; -update noar ti set b0='QUJ9LBDNAXIHUFMR991SEHLDPJM' where id=1; -update noar tt set b1='UWA642K8WUJN78WE2R0A3AC1Z' where id=1; -update noar ti set b1='UWA642K8WUJN78WE2R0A3AC1Z' where id=1; -update noar tt set b2='RDZ9US' where id=1; -update noar ti set b2='RDZ9US' where id=1; -update noar tt set b0='4EW1J0I8' where id=2; -update noar ti set b0='4EW1J0I8' where id=2; -update noar tt set b1='P0IRCH8UR9KU52478' where id=2; -update noar ti set b1='P0IRCH8UR9KU52478' where id=2; -update noar tt set b2='HJOZI2OW98D7' where id=2; -update noar ti set b2='HJOZI2OW98D7' where id=2; -update noar tt set b0='9RJ9D9369596' where id=3; -update noar ti set b0='9RJ9D9369596' where id=3; -update noar tt set b1='TVXNJ5BU691U8Z01S' where id=3; -update noar ti set b1='TVXNJ5BU691U8Z01S' where id=3; -update noar tt set b2='C9LZXIVO2R1F3BDLA1HDR7' where id=3; -update noar ti set b2='C9LZXIVO2R1F3BDLA1HDR7' where id=3; -update noar tt set b0='IML54WVA5PRYNRPE0R7VAVD7DGL' where id=4; -update noar ti set b0='IML54WVA5PRYNRPE0R7VAVD7DGL' where id=4; -update noar tt set b1='FUOSDQBJ203P' where id=4; -update noar ti set b1='FUOSDQBJ203P' where id=4; -update noar tt set b2='QC11' where id=4; -update noar ti set b2='QC11' where id=4; -update noar tt set b0='OL2UZNX6J19SWR90S5ECPB2HC' where id=5; -update noar ti set b0='OL2UZNX6J19SWR90S5ECPB2HC' where id=5; -update noar tt set b1='A' where id=5; -update noar ti set b1='A' where id=5; -update noar tt set b2='68N06E5CUAV792AO' where id=5; -update noar ti set b2='68N06E5CUAV792AO' where id=5; -update noar tt set b0='H4U5K' where id=6; -update noar ti set b0='H4U5K' where id=6; -update noar tt set b1='6CTY54R1CV7MP8IRSITGY2E' where id=6; -update noar ti set b1='6CTY54R1CV7MP8IRSITGY2E' where id=6; -update noar tt set b2='Y50MFVAV039SF9YQUXIXIQP' where id=6; -update noar ti set b2='Y50MFVAV039SF9YQUXIXIQP' where id=6; -update noar tt set b0='VJ934C6XP73X7IHALF2008YX1RXCHKLL' where id=7; -update noar ti set b0='VJ934C6XP73X7IHALF2008YX1RXCHKLL' where id=7; -update noar tt set b1='F1FBJUSLMKORRUK0F2PF5JQWAV' where id=7; -update noar ti set b1='F1FBJUSLMKORRUK0F2PF5JQWAV' where id=7; -update noar tt set b2='8I1VRK' where id=7; -update noar ti set b2='8I1VRK' where id=7; -update noar tt set b0='1IFCV5OWSCDA0H69FP2L' where id=8; -update noar ti set b0='1IFCV5OWSCDA0H69FP2L' where id=8; -update noar tt set b1='U6ZE3HIWNQPFS0VMSV' where id=8; -update noar ti set b1='U6ZE3HIWNQPFS0VMSV' where id=8; -update noar tt set b2='OPO075JAZXT62TEHK' where id=8; -update noar ti set b2='OPO075JAZXT62TEHK' where id=8; -update noar tt set b0='UDXBKR5BT' where id=9; -update noar ti set b0='UDXBKR5BT' where id=9; -update noar tt set b1='M5M687DEUEBDZJ0OMCR71DGGDN84YG0' where id=9; -update noar ti set b1='M5M687DEUEBDZJ0OMCR71DGGDN84YG0' where id=9; -update noar tt set b2='3YV1IT' where id=9; -update noar ti set b2='3YV1IT' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -b0 text null, -b1 text null, -b2 longblob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set b0='P4AD2RGQ5Z8FCJFHPY1XPBFQ' where id=1; -update noar ti set b0='P4AD2RGQ5Z8FCJFHPY1XPBFQ' where id=1; -update noar tt set b1='00MV75PG3' where id=1; -update noar ti set b1='00MV75PG3' where id=1; -update noar tt set b2='RYVYLRSWKBTDMYEC1L1JT9D5ZMFX' where id=1; -update noar ti set b2='RYVYLRSWKBTDMYEC1L1JT9D5ZMFX' where id=1; -update noar tt set b0='U2TANQAGA77NH1K58V2R3' where id=2; -update noar ti set b0='U2TANQAGA77NH1K58V2R3' where id=2; -update noar tt set b1='63VLXO1C3D54A2' where id=2; -update noar ti set b1='63VLXO1C3D54A2' where id=2; -update noar tt set b2='JK2HLGFR8KK9F3KM3THI8' where id=2; -update noar ti set b2='JK2HLGFR8KK9F3KM3THI8' where id=2; -update noar tt set b0='BFIDS55EUYYHFCPQ7RVFZTZY35SDFP' where id=3; -update noar ti set b0='BFIDS55EUYYHFCPQ7RVFZTZY35SDFP' where id=3; -update noar tt set b1='UU6H2SZWJTX7MT8CH' where id=3; -update noar ti set b1='UU6H2SZWJTX7MT8CH' where id=3; -update noar tt set b2='JISET1GTB2PXR' where id=3; -update noar ti set b2='JISET1GTB2PXR' where id=3; -update noar tt set b0='E8PGHJ00E0EV8D9PJG44XKMWC1ZFPECH' where id=4; -update noar ti set b0='E8PGHJ00E0EV8D9PJG44XKMWC1ZFPECH' where id=4; -update noar tt set b1='XCO5EK1BCRPXK' where id=4; -update noar ti set b1='XCO5EK1BCRPXK' where id=4; -update noar tt set b2='N4DKM' where id=4; -update noar ti set b2='N4DKM' where id=4; -update noar tt set b0='4LGHUC2' where id=5; -update noar ti set b0='4LGHUC2' where id=5; -update noar tt set b1='SQG1PEBF3X44D0P4QI6936S93' where id=5; -update noar ti set b1='SQG1PEBF3X44D0P4QI6936S93' where id=5; -update noar tt set b2='V1SNEVI1QR31ZKJ5ZP4' where id=5; -update noar ti set b2='V1SNEVI1QR31ZKJ5ZP4' where id=5; -update noar tt set b0='8' where id=6; -update noar ti set b0='8' where id=6; -update noar tt set b1='LI9M938N2DY6O63RYS3' where id=6; -update noar ti set b1='LI9M938N2DY6O63RYS3' where id=6; -update noar tt set b2='I91ME1ZUAD6H2XO86WJK5BHEQS' where id=6; -update noar ti set b2='I91ME1ZUAD6H2XO86WJK5BHEQS' where id=6; -update noar tt set b0='ZDH6QOA6V42TN' where id=7; -update noar ti set b0='ZDH6QOA6V42TN' where id=7; -update noar tt set b1='OCIJD' where id=7; -update noar ti set b1='OCIJD' where id=7; -update noar tt set b2='NA9621YEEDZGASGE0' where id=7; -update noar ti set b2='NA9621YEEDZGASGE0' where id=7; -update noar tt set b0='7FGZFLEPTGIZZKZMRSMY9' where id=8; -update noar ti set b0='7FGZFLEPTGIZZKZMRSMY9' where id=8; -update noar tt set b1='61U3PWW00LL731GIOCZG' where id=8; -update noar ti set b1='61U3PWW00LL731GIOCZG' where id=8; -update noar tt set b2='4573VI901F86GDSDO4NL9661B' where id=8; -update noar ti set b2='4573VI901F86GDSDO4NL9661B' where id=8; -update noar tt set b0='BB1T3VLBBTF3J1JQIIM3' where id=9; -update noar ti set b0='BB1T3VLBBTF3J1JQIIM3' where id=9; -update noar tt set b1='YODBR' where id=9; -update noar ti set b1='YODBR' where id=9; -update noar tt set b2='PB6SXV8USIP4U0UQLUSONBQ0' where id=9; -update noar ti set b2='PB6SXV8USIP4U0UQLUSONBQ0' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -b0 text not null, -b1 text not null, -b2 longblob not null -) engine=tokudb; -insert into tt values (1,'','',''); -insert into tt values (2,'','',''); -insert into tt values (3,'','',''); -insert into tt values (4,'','',''); -insert into tt values (5,'','',''); -insert into tt values (6,'','',''); -insert into tt values (7,'','',''); -insert into tt values (8,'','',''); -insert into tt values (9,'','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set b0='31PKJM51YE4' where id=1; -update noar ti set b0='31PKJM51YE4' where id=1; -update noar tt set b1='WXXEI' where id=1; -update noar ti set b1='WXXEI' where id=1; -update noar tt set b2='YLN3FHUROB2FO2BR3DFS6' where id=1; -update noar ti set b2='YLN3FHUROB2FO2BR3DFS6' where id=1; -update noar tt set b0='HF4HBXQ6IS' where id=2; -update noar ti set b0='HF4HBXQ6IS' where id=2; -update noar tt set b1='Q8PDD' where id=2; -update noar ti set b1='Q8PDD' where id=2; -update noar tt set b2='O3X1SR3BJI2ZV9' where id=2; -update noar ti set b2='O3X1SR3BJI2ZV9' where id=2; -update noar tt set b0='UKDG5PRMIO4I' where id=3; -update noar ti set b0='UKDG5PRMIO4I' where id=3; -update noar tt set b1='JNO5J8O4NFBJEUN5QC8YH3VTBS4Y4' where id=3; -update noar ti set b1='JNO5J8O4NFBJEUN5QC8YH3VTBS4Y4' where id=3; -update noar tt set b2='MAEOTNCLB30YK2AP8N' where id=3; -update noar ti set b2='MAEOTNCLB30YK2AP8N' where id=3; -update noar tt set b0='NUBEYHPAOZOXHSY1TOLMN6F3JHXJ0Y72' where id=4; -update noar ti set b0='NUBEYHPAOZOXHSY1TOLMN6F3JHXJ0Y72' where id=4; -update noar tt set b1='RBR0JR6F6B8GWHK1W40BW4' where id=4; -update noar ti set b1='RBR0JR6F6B8GWHK1W40BW4' where id=4; -update noar tt set b2='X7WECAGSM9P5' where id=4; -update noar ti set b2='X7WECAGSM9P5' where id=4; -update noar tt set b0='DRVXBSP42P' where id=5; -update noar ti set b0='DRVXBSP42P' where id=5; -update noar tt set b1='MEO5' where id=5; -update noar ti set b1='MEO5' where id=5; -update noar tt set b2='NWR7410JBM0QX101I' where id=5; -update noar ti set b2='NWR7410JBM0QX101I' where id=5; -update noar tt set b0='U4LM8OY6H744' where id=6; -update noar ti set b0='U4LM8OY6H744' where id=6; -update noar tt set b1='JZLIYZVWLOSH7RQ6' where id=6; -update noar ti set b1='JZLIYZVWLOSH7RQ6' where id=6; -update noar tt set b2='AK7ERXV9UDLOAUFC6ZD8Z' where id=6; -update noar ti set b2='AK7ERXV9UDLOAUFC6ZD8Z' where id=6; -update noar tt set b0='EI13RVZEBO' where id=7; -update noar ti set b0='EI13RVZEBO' where id=7; -update noar tt set b1='MOKVMZ9NOFBE5MZ1R3' where id=7; -update noar ti set b1='MOKVMZ9NOFBE5MZ1R3' where id=7; -update noar tt set b2='IS1909KHX46Y52T75' where id=7; -update noar ti set b2='IS1909KHX46Y52T75' where id=7; -update noar tt set b0='7IAF' where id=8; -update noar ti set b0='7IAF' where id=8; -update noar tt set b1='V53X6XCV3KSPPXJV' where id=8; -update noar ti set b1='V53X6XCV3KSPPXJV' where id=8; -update noar tt set b2='F15HUXD0D2Z' where id=8; -update noar ti set b2='F15HUXD0D2Z' where id=8; -update noar tt set b0='7SA2WI9HJ16JCG92O78I0' where id=9; -update noar ti set b0='7SA2WI9HJ16JCG92O78I0' where id=9; -update noar tt set b1='QYVUDKJ' where id=9; -update noar ti set b1='QYVUDKJ' where id=9; -update noar tt set b2='75EKSBDTZEY6ZMUSR9RG99LKG3I' where id=9; -update noar ti set b2='75EKSBDTZEY6ZMUSR9RG99LKG3I' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -b0 text null, -b1 text null, -b2 text null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set b0='KGT2OUVZ4RW75Z720HTRXUEUT0C9L' where id=1; -update noar ti set b0='KGT2OUVZ4RW75Z720HTRXUEUT0C9L' where id=1; -update noar tt set b1='7VVLWMQ5RZI49LQ3CYGTBW37VRV1C08Y' where id=1; -update noar ti set b1='7VVLWMQ5RZI49LQ3CYGTBW37VRV1C08Y' where id=1; -update noar tt set b2='UHM3PVVOFK' where id=1; -update noar ti set b2='UHM3PVVOFK' where id=1; -update noar tt set b0='3WLFBVTSTFOAR1H6LZJII57' where id=2; -update noar ti set b0='3WLFBVTSTFOAR1H6LZJII57' where id=2; -update noar tt set b1='3RV5I3S44HLJ5C22YE1V1LZHV4XU5O7' where id=2; -update noar ti set b1='3RV5I3S44HLJ5C22YE1V1LZHV4XU5O7' where id=2; -update noar tt set b2='EH' where id=2; -update noar ti set b2='EH' where id=2; -update noar tt set b0='04K67BHVGEVC2IIE' where id=3; -update noar ti set b0='04K67BHVGEVC2IIE' where id=3; -update noar tt set b1='VQRJQFRDPSN2EO88GU84C' where id=3; -update noar ti set b1='VQRJQFRDPSN2EO88GU84C' where id=3; -update noar tt set b2='0E' where id=3; -update noar ti set b2='0E' where id=3; -update noar tt set b0='Z4KC4F123J711' where id=4; -update noar ti set b0='Z4KC4F123J711' where id=4; -update noar tt set b1='K07' where id=4; -update noar ti set b1='K07' where id=4; -update noar tt set b2='3CEN03R' where id=4; -update noar ti set b2='3CEN03R' where id=4; -update noar tt set b0='LZXPD2UT' where id=5; -update noar ti set b0='LZXPD2UT' where id=5; -update noar tt set b1='E386' where id=5; -update noar ti set b1='E386' where id=5; -update noar tt set b2='N6V64UW' where id=5; -update noar ti set b2='N6V64UW' where id=5; -update noar tt set b0='MZE3EVZ0GTQ847GEAHQ' where id=6; -update noar ti set b0='MZE3EVZ0GTQ847GEAHQ' where id=6; -update noar tt set b1='4J0F9WUCWY06C5IV9QBLUXXE1' where id=6; -update noar ti set b1='4J0F9WUCWY06C5IV9QBLUXXE1' where id=6; -update noar tt set b2='FRCJF1683XAKVEE' where id=6; -update noar ti set b2='FRCJF1683XAKVEE' where id=6; -update noar tt set b0='DR8V3B9VRB8UWPKDYNWN9VN14B' where id=7; -update noar ti set b0='DR8V3B9VRB8UWPKDYNWN9VN14B' where id=7; -update noar tt set b1='OTNQCJDJRKVUXXPU' where id=7; -update noar ti set b1='OTNQCJDJRKVUXXPU' where id=7; -update noar tt set b2='BIIJLOMAME661KQ7A2' where id=7; -update noar ti set b2='BIIJLOMAME661KQ7A2' where id=7; -update noar tt set b0='IS17X2UTDBJQBKOHQ997MQAFM7XK' where id=8; -update noar ti set b0='IS17X2UTDBJQBKOHQ997MQAFM7XK' where id=8; -update noar tt set b1='4103QO4O9HPIZ7Z970RORJ85J99QU2J2' where id=8; -update noar ti set b1='4103QO4O9HPIZ7Z970RORJ85J99QU2J2' where id=8; -update noar tt set b2='AWCPPC74S89S7GBV9ZZMJJN2CZX' where id=8; -update noar ti set b2='AWCPPC74S89S7GBV9ZZMJJN2CZX' where id=8; -update noar tt set b0='7373' where id=9; -update noar ti set b0='7373' where id=9; -update noar tt set b1='42O9AXDJDCC6GCTD7FI7' where id=9; -update noar ti set b1='42O9AXDJDCC6GCTD7FI7' where id=9; -update noar tt set b2='GO6MZKMUBB318SARJ' where id=9; -update noar ti set b2='GO6MZKMUBB318SARJ' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -b0 text not null, -b1 text not null, -b2 text not null -) engine=tokudb; -insert into tt values (1,'','',''); -insert into tt values (2,'','',''); -insert into tt values (3,'','',''); -insert into tt values (4,'','',''); -insert into tt values (5,'','',''); -insert into tt values (6,'','',''); -insert into tt values (7,'','',''); -insert into tt values (8,'','',''); -insert into tt values (9,'','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set b0='BN5I0IAG1H81K6N61ZL5DLGEEMR' where id=1; -update noar ti set b0='BN5I0IAG1H81K6N61ZL5DLGEEMR' where id=1; -update noar tt set b1='VI48T0MVLTMP21BJS607BACKW8' where id=1; -update noar ti set b1='VI48T0MVLTMP21BJS607BACKW8' where id=1; -update noar tt set b2='LR' where id=1; -update noar ti set b2='LR' where id=1; -update noar tt set b0='AOJ79MI3DOM7BB6IVCV4CN8' where id=2; -update noar ti set b0='AOJ79MI3DOM7BB6IVCV4CN8' where id=2; -update noar tt set b1='WSXB92NDOIWDCLCQGD2LM4CZX' where id=2; -update noar ti set b1='WSXB92NDOIWDCLCQGD2LM4CZX' where id=2; -update noar tt set b2='KNHK' where id=2; -update noar ti set b2='KNHK' where id=2; -update noar tt set b0='2G9N7R6EFQA7JE13ATMA3AH357VDS' where id=3; -update noar ti set b0='2G9N7R6EFQA7JE13ATMA3AH357VDS' where id=3; -update noar tt set b1='WJYP9XQVJ8RKEPQAGV' where id=3; -update noar ti set b1='WJYP9XQVJ8RKEPQAGV' where id=3; -update noar tt set b2='BFXR1STWUZY9RM' where id=3; -update noar ti set b2='BFXR1STWUZY9RM' where id=3; -update noar tt set b0='K0F3W234B0LZY6' where id=4; -update noar ti set b0='K0F3W234B0LZY6' where id=4; -update noar tt set b1='O5T9Y10C8OED2OC92ZJ8AB5WBCXCOB9S' where id=4; -update noar ti set b1='O5T9Y10C8OED2OC92ZJ8AB5WBCXCOB9S' where id=4; -update noar tt set b2='GBUS6Y9ECF' where id=4; -update noar ti set b2='GBUS6Y9ECF' where id=4; -update noar tt set b0='ZHC' where id=5; -update noar ti set b0='ZHC' where id=5; -update noar tt set b1='DQR9P5VSSBA01WQ' where id=5; -update noar ti set b1='DQR9P5VSSBA01WQ' where id=5; -update noar tt set b2='5' where id=5; -update noar ti set b2='5' where id=5; -update noar tt set b0='6T62BGHYI4JSUP45AT2ANX5' where id=6; -update noar ti set b0='6T62BGHYI4JSUP45AT2ANX5' where id=6; -update noar tt set b1='2XP9KMPQM56VQAPFI9H4CMMM4BW' where id=6; -update noar ti set b1='2XP9KMPQM56VQAPFI9H4CMMM4BW' where id=6; -update noar tt set b2='0QZ5R40' where id=6; -update noar ti set b2='0QZ5R40' where id=6; -update noar tt set b0='CXCL4RYSR57W7V3G1QK3M5W0ZH7' where id=7; -update noar ti set b0='CXCL4RYSR57W7V3G1QK3M5W0ZH7' where id=7; -update noar tt set b1='0HJLH1JK' where id=7; -update noar ti set b1='0HJLH1JK' where id=7; -update noar tt set b2='R09YIQW78' where id=7; -update noar ti set b2='R09YIQW78' where id=7; -update noar tt set b0='QLDCVCMHCISPBS8H9I' where id=8; -update noar ti set b0='QLDCVCMHCISPBS8H9I' where id=8; -update noar tt set b1='9Z1MCQY6GN5CVGWTE266LIE' where id=8; -update noar ti set b1='9Z1MCQY6GN5CVGWTE266LIE' where id=8; -update noar tt set b2='2IQ4JF3X0RK181I7DKZY' where id=8; -update noar ti set b2='2IQ4JF3X0RK181I7DKZY' where id=8; -update noar tt set b0='UDWIQTSM59BA8DBSPNLYS0EEJDFCFG' where id=9; -update noar ti set b0='UDWIQTSM59BA8DBSPNLYS0EEJDFCFG' where id=9; -update noar tt set b1='L' where id=9; -update noar ti set b1='L' where id=9; -update noar tt set b2='OQ22J6SMTSA0KSHTMU' where id=9; -update noar ti set b2='OQ22J6SMTSA0KSHTMU' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; +This test does not produce any output on success diff --git a/storage/tokudb/mysql-test/tokudb/r/fast_update_blobs_fixed_varchar.result b/storage/tokudb/mysql-test/tokudb/r/fast_update_blobs_fixed_varchar.result deleted file mode 100644 index 94e5da921a0..00000000000 --- a/storage/tokudb/mysql-test/tokudb/r/fast_update_blobs_fixed_varchar.result +++ /dev/null @@ -1,33026 +0,0 @@ -set default_storage_engine='tokudb'; -drop table if exists t; -create table tt (id bigint unsigned primary key, -f0 int null, -v0 varchar(32) null, -b0 tinyblob null, -b1 tinyblob null, -b2 tinyblob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='UP9F5O0JN4QXD8HH' where id=1; -update noar ti set v0='UP9F5O0JN4QXD8HH' where id=1; -update noar tt set b0='EQGX2U37E6GA0YSE85' where id=1; -update noar ti set b0='EQGX2U37E6GA0YSE85' where id=1; -update noar tt set v0='EAYWOECTE' where id=1; -update noar ti set v0='EAYWOECTE' where id=1; -update noar tt set b1='3DQMQ1AYYQMVH7KIDGQRPPYR2DG5L4FX' where id=1; -update noar ti set b1='3DQMQ1AYYQMVH7KIDGQRPPYR2DG5L4FX' where id=1; -update noar tt set v0='QAAYX2OSCJTKYCHQPOEVKQBB13B4U' where id=1; -update noar ti set v0='QAAYX2OSCJTKYCHQPOEVKQBB13B4U' where id=1; -update noar tt set b2='R7P1J6O112EUCRDX0WCD7IDVXRJ68' where id=1; -update noar ti set b2='R7P1J6O112EUCRDX0WCD7IDVXRJ68' where id=1; -update noar tt set v0='C2G3ODA9SGFXDOKM15LR9ZD8X' where id=2; -update noar ti set v0='C2G3ODA9SGFXDOKM15LR9ZD8X' where id=2; -update noar tt set b0='P2AACV03N5JCQ' where id=2; -update noar ti set b0='P2AACV03N5JCQ' where id=2; -update noar tt set v0='B6I2SNUZO7BF17MH8EN7WHCPCIE1NB' where id=2; -update noar ti set v0='B6I2SNUZO7BF17MH8EN7WHCPCIE1NB' where id=2; -update noar tt set b1='P39L5F08ZPVJE010T1ACA9ROE5Y5KWK' where id=2; -update noar ti set b1='P39L5F08ZPVJE010T1ACA9ROE5Y5KWK' where id=2; -update noar tt set v0='UEX612R01T443' where id=2; -update noar ti set v0='UEX612R01T443' where id=2; -update noar tt set b2='9BXWW9NT7MJPZH6E4LW' where id=2; -update noar ti set b2='9BXWW9NT7MJPZH6E4LW' where id=2; -update noar tt set v0='8VRY65Q0PZXYZMEWB7PAD08KK5T90973' where id=3; -update noar ti set v0='8VRY65Q0PZXYZMEWB7PAD08KK5T90973' where id=3; -update noar tt set b0='VN13VOB0DINTY1UYRUZQF1ASFG' where id=3; -update noar ti set b0='VN13VOB0DINTY1UYRUZQF1ASFG' where id=3; -update noar tt set v0='NKWSR6DE2RCFOSHBOWLUUDZ9CL4T8' where id=3; -update noar ti set v0='NKWSR6DE2RCFOSHBOWLUUDZ9CL4T8' where id=3; -update noar tt set b1='QB' where id=3; -update noar ti set b1='QB' where id=3; -update noar tt set v0='2EKWUEP95ULXGJB4OF' where id=3; -update noar ti set v0='2EKWUEP95ULXGJB4OF' where id=3; -update noar tt set b2='Q6IYFN' where id=3; -update noar ti set b2='Q6IYFN' where id=3; -update noar tt set v0='IKQCVMC' where id=4; -update noar ti set v0='IKQCVMC' where id=4; -update noar tt set b0='N535EEK3NPFVSLTB2FAFWRROGD744ZN' where id=4; -update noar ti set b0='N535EEK3NPFVSLTB2FAFWRROGD744ZN' where id=4; -update noar tt set v0='QHNVMNDLY3G4WOVP' where id=4; -update noar ti set v0='QHNVMNDLY3G4WOVP' where id=4; -update noar tt set b1='HDPRGT6XXXGVMZKEN9DN9' where id=4; -update noar ti set b1='HDPRGT6XXXGVMZKEN9DN9' where id=4; -update noar tt set v0='CV12CSM2AVQGZPHXA3Y2' where id=4; -update noar ti set v0='CV12CSM2AVQGZPHXA3Y2' where id=4; -update noar tt set b2='CW7Z0PVFFDQ8CK' where id=4; -update noar ti set b2='CW7Z0PVFFDQ8CK' where id=4; -update noar tt set v0='7SC69BS2SHACUDZVAT8KFC4' where id=5; -update noar ti set v0='7SC69BS2SHACUDZVAT8KFC4' where id=5; -update noar tt set b0='JDNI7VC' where id=5; -update noar ti set b0='JDNI7VC' where id=5; -update noar tt set v0='5SBZI8TP' where id=5; -update noar ti set v0='5SBZI8TP' where id=5; -update noar tt set b1='RTFVTNJXKCRHBSGJRY0IZN' where id=5; -update noar ti set b1='RTFVTNJXKCRHBSGJRY0IZN' where id=5; -update noar tt set v0='56VE0IR8LWSTMCHM' where id=5; -update noar ti set v0='56VE0IR8LWSTMCHM' where id=5; -update noar tt set b2='3FSJ78' where id=5; -update noar ti set b2='3FSJ78' where id=5; -update noar tt set v0='2X4Q8S76IL22ER5A2GVT' where id=6; -update noar ti set v0='2X4Q8S76IL22ER5A2GVT' where id=6; -update noar tt set b0='Y9101E34S6Z2OYB5MDYQPZGCM3IZL7' where id=6; -update noar ti set b0='Y9101E34S6Z2OYB5MDYQPZGCM3IZL7' where id=6; -update noar tt set v0='YQQR77N2QTM' where id=6; -update noar ti set v0='YQQR77N2QTM' where id=6; -update noar tt set b1='1ZALS3OP2JRCSCO8H66BE09WV8HC' where id=6; -update noar ti set b1='1ZALS3OP2JRCSCO8H66BE09WV8HC' where id=6; -update noar tt set v0='D8QT15LKKEJFNJG298Q77ZU' where id=6; -update noar ti set v0='D8QT15LKKEJFNJG298Q77ZU' where id=6; -update noar tt set b2='HYLO1AYTN' where id=6; -update noar ti set b2='HYLO1AYTN' where id=6; -update noar tt set v0='UFIWRPMOVW5C' where id=7; -update noar ti set v0='UFIWRPMOVW5C' where id=7; -update noar tt set b0='PES1N2P9GMTJDLGJAP5QDVQ4BNG' where id=7; -update noar ti set b0='PES1N2P9GMTJDLGJAP5QDVQ4BNG' where id=7; -update noar tt set v0='VLAQQZAT' where id=7; -update noar ti set v0='VLAQQZAT' where id=7; -update noar tt set b1='73FP' where id=7; -update noar ti set b1='73FP' where id=7; -update noar tt set v0='4DU1OB96AM6WMHZDR24WNN7NPI4' where id=7; -update noar ti set v0='4DU1OB96AM6WMHZDR24WNN7NPI4' where id=7; -update noar tt set b2='G1RF3N24F1U8L9I589U8WMO' where id=7; -update noar ti set b2='G1RF3N24F1U8L9I589U8WMO' where id=7; -update noar tt set v0='UYF92O382IWRRQ6MM1ZFAPQNZ8' where id=8; -update noar ti set v0='UYF92O382IWRRQ6MM1ZFAPQNZ8' where id=8; -update noar tt set b0='8KTWN9NSBQT6' where id=8; -update noar ti set b0='8KTWN9NSBQT6' where id=8; -update noar tt set v0='942BQ1D9B' where id=8; -update noar ti set v0='942BQ1D9B' where id=8; -update noar tt set b1='3IFV1B2FJY' where id=8; -update noar ti set b1='3IFV1B2FJY' where id=8; -update noar tt set v0='87I84MN9HJUQKYIFDPBRHR1' where id=8; -update noar ti set v0='87I84MN9HJUQKYIFDPBRHR1' where id=8; -update noar tt set b2='LYY8ML7GUN7UJ7IX53RYP2L' where id=8; -update noar ti set b2='LYY8ML7GUN7UJ7IX53RYP2L' where id=8; -update noar tt set v0='2XKR0RNJJPIN3Y4H' where id=9; -update noar ti set v0='2XKR0RNJJPIN3Y4H' where id=9; -update noar tt set b0='LDO4E' where id=9; -update noar ti set b0='LDO4E' where id=9; -update noar tt set v0='WHMJ' where id=9; -update noar ti set v0='WHMJ' where id=9; -update noar tt set b1='J2LM4S9MV' where id=9; -update noar ti set b1='J2LM4S9MV' where id=9; -update noar tt set v0='XXZEOMP3LRDU' where id=9; -update noar ti set v0='XXZEOMP3LRDU' where id=9; -update noar tt set b2='IE' where id=9; -update noar ti set b2='IE' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -f0 int null, -v0 varchar(256) null, -b0 tinyblob null, -b1 tinyblob null, -b2 tinyblob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='FV4DRG1LHP44HGV4NZR7TVIEWZ' where id=1; -update noar ti set v0='FV4DRG1LHP44HGV4NZR7TVIEWZ' where id=1; -update noar tt set b0='FS5PN4X2B32UINXW99V' where id=1; -update noar ti set b0='FS5PN4X2B32UINXW99V' where id=1; -update noar tt set v0='8MUQ8W189DGFJ5A8N8UO7NX2196MC07X' where id=1; -update noar ti set v0='8MUQ8W189DGFJ5A8N8UO7NX2196MC07X' where id=1; -update noar tt set b1='GZ3JC972E2NQEJ11M9IBZBTCXN' where id=1; -update noar ti set b1='GZ3JC972E2NQEJ11M9IBZBTCXN' where id=1; -update noar tt set v0='RHDYV4J2V78CSQI64WTQQV5MXGCR' where id=1; -update noar ti set v0='RHDYV4J2V78CSQI64WTQQV5MXGCR' where id=1; -update noar tt set b2='8MRPKVQM95Z6KHLNISO' where id=1; -update noar ti set b2='8MRPKVQM95Z6KHLNISO' where id=1; -update noar tt set v0='DXDUTO3S' where id=2; -update noar ti set v0='DXDUTO3S' where id=2; -update noar tt set b0='0I3UWLX861OUTPKVS4BN0XY' where id=2; -update noar ti set b0='0I3UWLX861OUTPKVS4BN0XY' where id=2; -update noar tt set v0='JXTIVEBV5XAVAO5D8' where id=2; -update noar ti set v0='JXTIVEBV5XAVAO5D8' where id=2; -update noar tt set b1='OLK6YMPAX' where id=2; -update noar ti set b1='OLK6YMPAX' where id=2; -update noar tt set v0='PKSX8' where id=2; -update noar ti set v0='PKSX8' where id=2; -update noar tt set b2='TR3HACE395' where id=2; -update noar ti set b2='TR3HACE395' where id=2; -update noar tt set v0='RVDWQJWJ7WJ31' where id=3; -update noar ti set v0='RVDWQJWJ7WJ31' where id=3; -update noar tt set b0='IWLR3WDB4URQJ325UVOPSAAQFE75K' where id=3; -update noar ti set b0='IWLR3WDB4URQJ325UVOPSAAQFE75K' where id=3; -update noar tt set v0='ICKMSBE7BB6XKU20326K' where id=3; -update noar ti set v0='ICKMSBE7BB6XKU20326K' where id=3; -update noar tt set b1='UNCMR8LMHNRPIV7TPUEA0WETDA' where id=3; -update noar ti set b1='UNCMR8LMHNRPIV7TPUEA0WETDA' where id=3; -update noar tt set v0='U8J0B0QD78HJJUJHB7A9R4CW27PBCEI' where id=3; -update noar ti set v0='U8J0B0QD78HJJUJHB7A9R4CW27PBCEI' where id=3; -update noar tt set b2='9O6QERAE1N5HA2ZX8XFOUVM90UANZQ' where id=3; -update noar ti set b2='9O6QERAE1N5HA2ZX8XFOUVM90UANZQ' where id=3; -update noar tt set v0='7AHJNKB1Z8U' where id=4; -update noar ti set v0='7AHJNKB1Z8U' where id=4; -update noar tt set b0='ZCTM9I' where id=4; -update noar ti set b0='ZCTM9I' where id=4; -update noar tt set v0='I8831J2C65TMWH9QG' where id=4; -update noar ti set v0='I8831J2C65TMWH9QG' where id=4; -update noar tt set b1='57GZ4NT0' where id=4; -update noar ti set b1='57GZ4NT0' where id=4; -update noar tt set v0='4ALMNYRG2AIWX1X5PUL7' where id=4; -update noar ti set v0='4ALMNYRG2AIWX1X5PUL7' where id=4; -update noar tt set b2='G8VLK2UJHDKN0CKREQU2V05HMDXT' where id=4; -update noar ti set b2='G8VLK2UJHDKN0CKREQU2V05HMDXT' where id=4; -update noar tt set v0='IFK8SRQR7OLE' where id=5; -update noar ti set v0='IFK8SRQR7OLE' where id=5; -update noar tt set b0='357P3X2S0R9V6ZXUWS' where id=5; -update noar ti set b0='357P3X2S0R9V6ZXUWS' where id=5; -update noar tt set v0='LFFTV125YF8EWV8U5PWY7LFHI5O5' where id=5; -update noar ti set v0='LFFTV125YF8EWV8U5PWY7LFHI5O5' where id=5; -update noar tt set b1='UG7KBKA931KNNT8TES3GY8XTQ' where id=5; -update noar ti set b1='UG7KBKA931KNNT8TES3GY8XTQ' where id=5; -update noar tt set v0='RK0Z2K1' where id=5; -update noar ti set v0='RK0Z2K1' where id=5; -update noar tt set b2='U6RCPA' where id=5; -update noar ti set b2='U6RCPA' where id=5; -update noar tt set v0='4MVHJPMHU72F5WMTA' where id=6; -update noar ti set v0='4MVHJPMHU72F5WMTA' where id=6; -update noar tt set b0='KCBTKDVRMH95K92' where id=6; -update noar ti set b0='KCBTKDVRMH95K92' where id=6; -update noar tt set v0='PDEJJ3T7IRI1LH4FVNM904PEN3ST108' where id=6; -update noar ti set v0='PDEJJ3T7IRI1LH4FVNM904PEN3ST108' where id=6; -update noar tt set b1='XM9OQPKZOBE' where id=6; -update noar ti set b1='XM9OQPKZOBE' where id=6; -update noar tt set v0='SZ7FDMF2E62FOJ8' where id=6; -update noar ti set v0='SZ7FDMF2E62FOJ8' where id=6; -update noar tt set b2='0C' where id=6; -update noar ti set b2='0C' where id=6; -update noar tt set v0='H9PXC7IBJFEPO' where id=7; -update noar ti set v0='H9PXC7IBJFEPO' where id=7; -update noar tt set b0='BIAS' where id=7; -update noar ti set b0='BIAS' where id=7; -update noar tt set v0='FZTAA5N6G74ZAF96QTK' where id=7; -update noar ti set v0='FZTAA5N6G74ZAF96QTK' where id=7; -update noar tt set b1='91IPC' where id=7; -update noar ti set b1='91IPC' where id=7; -update noar tt set v0='FZ5J' where id=7; -update noar ti set v0='FZ5J' where id=7; -update noar tt set b2='9B8XON1A2SIVAXVL6SOUSATA4JABU' where id=7; -update noar ti set b2='9B8XON1A2SIVAXVL6SOUSATA4JABU' where id=7; -update noar tt set v0='7UE62ORJT08A5' where id=8; -update noar ti set v0='7UE62ORJT08A5' where id=8; -update noar tt set b0='R7' where id=8; -update noar ti set b0='R7' where id=8; -update noar tt set v0='HUAN1GQIYG97GDIZA8RDTZSWPPY' where id=8; -update noar ti set v0='HUAN1GQIYG97GDIZA8RDTZSWPPY' where id=8; -update noar tt set b1='Y90' where id=8; -update noar ti set b1='Y90' where id=8; -update noar tt set v0='4TPOP' where id=8; -update noar ti set v0='4TPOP' where id=8; -update noar tt set b2='25CO3E822C8V0U51C0EOES2ZTAB4CZ0' where id=8; -update noar ti set b2='25CO3E822C8V0U51C0EOES2ZTAB4CZ0' where id=8; -update noar tt set v0='TTSNQKRUK85MVP9IPBMRY94C59' where id=9; -update noar ti set v0='TTSNQKRUK85MVP9IPBMRY94C59' where id=9; -update noar tt set b0='5D6JG1GGEMMH1X' where id=9; -update noar ti set b0='5D6JG1GGEMMH1X' where id=9; -update noar tt set v0='06RZDZW60' where id=9; -update noar ti set v0='06RZDZW60' where id=9; -update noar tt set b1='BNZ0U' where id=9; -update noar ti set b1='BNZ0U' where id=9; -update noar tt set v0='78Y8EGDRPM14PNR2DMXOZ1NC2FKF' where id=9; -update noar ti set v0='78Y8EGDRPM14PNR2DMXOZ1NC2FKF' where id=9; -update noar tt set b2='OOT1X' where id=9; -update noar ti set b2='OOT1X' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -f0 int not null, -v0 varchar(32) not null, -b0 tinyblob not null, -b1 tinyblob not null, -b2 tinyblob not null -) engine=tokudb; -insert into tt values (1,0,'','','',''); -insert into tt values (2,0,'','','',''); -insert into tt values (3,0,'','','',''); -insert into tt values (4,0,'','','',''); -insert into tt values (5,0,'','','',''); -insert into tt values (6,0,'','','',''); -insert into tt values (7,0,'','','',''); -insert into tt values (8,0,'','','',''); -insert into tt values (9,0,'','','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='VAKDKACN7UGM3' where id=1; -update noar ti set v0='VAKDKACN7UGM3' where id=1; -update noar tt set b0='2INNKXHAQ9C6QM' where id=1; -update noar ti set b0='2INNKXHAQ9C6QM' where id=1; -update noar tt set v0='W3SXABYIYYNHYMO1Q1XUMRTA0Z' where id=1; -update noar ti set v0='W3SXABYIYYNHYMO1Q1XUMRTA0Z' where id=1; -update noar tt set b1='FXWR8OYZTZ4BC8I5OBL3VM0AU' where id=1; -update noar ti set b1='FXWR8OYZTZ4BC8I5OBL3VM0AU' where id=1; -update noar tt set v0='UPTOQLZMLDGIHUPJZCK1Q' where id=1; -update noar ti set v0='UPTOQLZMLDGIHUPJZCK1Q' where id=1; -update noar tt set b2='P52EODM7ILUW9D3HJPK3PX3ZYP2M9J4V' where id=1; -update noar ti set b2='P52EODM7ILUW9D3HJPK3PX3ZYP2M9J4V' where id=1; -update noar tt set v0='G10QH4YXOPZW' where id=2; -update noar ti set v0='G10QH4YXOPZW' where id=2; -update noar tt set b0='4KEAGOEA922JI911K5PJ439' where id=2; -update noar ti set b0='4KEAGOEA922JI911K5PJ439' where id=2; -update noar tt set v0='CHOEPH6F' where id=2; -update noar ti set v0='CHOEPH6F' where id=2; -update noar tt set b1='KU1B83' where id=2; -update noar ti set b1='KU1B83' where id=2; -update noar tt set v0='HB5QQAP698WR4AVNF6' where id=2; -update noar ti set v0='HB5QQAP698WR4AVNF6' where id=2; -update noar tt set b2='WEIJ1BMVXJBDAKK2R7' where id=2; -update noar ti set b2='WEIJ1BMVXJBDAKK2R7' where id=2; -update noar tt set v0='JHSI1SUOPI8L8ACQPUB05HNP0B59' where id=3; -update noar ti set v0='JHSI1SUOPI8L8ACQPUB05HNP0B59' where id=3; -update noar tt set b0='T6FJIH8XKBRTG5WIOB' where id=3; -update noar ti set b0='T6FJIH8XKBRTG5WIOB' where id=3; -update noar tt set v0='OQLCJ4W6EM5' where id=3; -update noar ti set v0='OQLCJ4W6EM5' where id=3; -update noar tt set b1='GC84AGICWXQM1PKZH7382T1NZH8J' where id=3; -update noar ti set b1='GC84AGICWXQM1PKZH7382T1NZH8J' where id=3; -update noar tt set v0='RVW26FZ1FYIP7LWEDXN5DKT' where id=3; -update noar ti set v0='RVW26FZ1FYIP7LWEDXN5DKT' where id=3; -update noar tt set b2='ALVUZTUO87J1HFHLIVTOMI2P' where id=3; -update noar ti set b2='ALVUZTUO87J1HFHLIVTOMI2P' where id=3; -update noar tt set v0='UPQFDFLILA9GMY8ZP' where id=4; -update noar ti set v0='UPQFDFLILA9GMY8ZP' where id=4; -update noar tt set b0='8VO13VMPUE0RNQTR66Q5FG5CUMWIKUIG' where id=4; -update noar ti set b0='8VO13VMPUE0RNQTR66Q5FG5CUMWIKUIG' where id=4; -update noar tt set v0='28WY6FGO5LO7TY9F6ADVHSHHZLF0BDF' where id=4; -update noar ti set v0='28WY6FGO5LO7TY9F6ADVHSHHZLF0BDF' where id=4; -update noar tt set b1='6A' where id=4; -update noar ti set b1='6A' where id=4; -update noar tt set v0='NVQ2G891R7J1VFPWIQMPRKZ9P6U3' where id=4; -update noar ti set v0='NVQ2G891R7J1VFPWIQMPRKZ9P6U3' where id=4; -update noar tt set b2='VACFHQB260KA8FSHD' where id=4; -update noar ti set b2='VACFHQB260KA8FSHD' where id=4; -update noar tt set v0='UQ04H702XE3' where id=5; -update noar ti set v0='UQ04H702XE3' where id=5; -update noar tt set b0='4WK90T' where id=5; -update noar ti set b0='4WK90T' where id=5; -update noar tt set v0='G0X4UU92GBWF7MRMXLRIKFMTVL9QVFWO' where id=5; -update noar ti set v0='G0X4UU92GBWF7MRMXLRIKFMTVL9QVFWO' where id=5; -update noar tt set b1='67' where id=5; -update noar ti set b1='67' where id=5; -update noar tt set v0='62SKJ7JK11UR43YI385HCHI' where id=5; -update noar ti set v0='62SKJ7JK11UR43YI385HCHI' where id=5; -update noar tt set b2='FSB6QPRBEE6DY' where id=5; -update noar ti set b2='FSB6QPRBEE6DY' where id=5; -update noar tt set v0='TNSFYZTZO13PJCOXL6CV3O1RTU8UW' where id=6; -update noar ti set v0='TNSFYZTZO13PJCOXL6CV3O1RTU8UW' where id=6; -update noar tt set b0='BS1DL0BE35ID9SHB5ZE5FRASU' where id=6; -update noar ti set b0='BS1DL0BE35ID9SHB5ZE5FRASU' where id=6; -update noar tt set v0='ZY239H2DDXXYG' where id=6; -update noar ti set v0='ZY239H2DDXXYG' where id=6; -update noar tt set b1='KXFX21DFWC009FAH3KRZ7EBF3GR' where id=6; -update noar ti set b1='KXFX21DFWC009FAH3KRZ7EBF3GR' where id=6; -update noar tt set v0='TWFH53ICC' where id=6; -update noar ti set v0='TWFH53ICC' where id=6; -update noar tt set b2='Q4HWKTLFCKNOS' where id=6; -update noar ti set b2='Q4HWKTLFCKNOS' where id=6; -update noar tt set v0='LNTCIVFWR1FIX1XX588G43KVKI36F0NT' where id=7; -update noar ti set v0='LNTCIVFWR1FIX1XX588G43KVKI36F0NT' where id=7; -update noar tt set b0='0WHO6CZVMUFYHG22V9TJ7' where id=7; -update noar ti set b0='0WHO6CZVMUFYHG22V9TJ7' where id=7; -update noar tt set v0='7EQZZANQLD8BACAZ71OOALT0X' where id=7; -update noar ti set v0='7EQZZANQLD8BACAZ71OOALT0X' where id=7; -update noar tt set b1='PSPD411S51' where id=7; -update noar ti set b1='PSPD411S51' where id=7; -update noar tt set v0='WCKC4UWEQ02PSDDBTY8E' where id=7; -update noar ti set v0='WCKC4UWEQ02PSDDBTY8E' where id=7; -update noar tt set b2='C' where id=7; -update noar ti set b2='C' where id=7; -update noar tt set v0='IOEQJD1QBNUYBMYN3H' where id=8; -update noar ti set v0='IOEQJD1QBNUYBMYN3H' where id=8; -update noar tt set b0='ODNNLZR7LV8HC0I3TWHW' where id=8; -update noar ti set b0='ODNNLZR7LV8HC0I3TWHW' where id=8; -update noar tt set v0='OJRL9VSISYGV19' where id=8; -update noar ti set v0='OJRL9VSISYGV19' where id=8; -update noar tt set b1='92HSSW48949ZJ' where id=8; -update noar ti set b1='92HSSW48949ZJ' where id=8; -update noar tt set v0='R8MEEA3PLQJUZAOAU5UB4TZNO5RK0' where id=8; -update noar ti set v0='R8MEEA3PLQJUZAOAU5UB4TZNO5RK0' where id=8; -update noar tt set b2='VILUT4VXEUZ7WVQKC' where id=8; -update noar ti set b2='VILUT4VXEUZ7WVQKC' where id=8; -update noar tt set v0='5XXICQ2TY' where id=9; -update noar ti set v0='5XXICQ2TY' where id=9; -update noar tt set b0='JJRLLY6ZTS4' where id=9; -update noar ti set b0='JJRLLY6ZTS4' where id=9; -update noar tt set v0='S8QDOSBA' where id=9; -update noar ti set v0='S8QDOSBA' where id=9; -update noar tt set b1='2I65NAZ8H87BWLM7KBU0KSJUC5F6Q' where id=9; -update noar ti set b1='2I65NAZ8H87BWLM7KBU0KSJUC5F6Q' where id=9; -update noar tt set v0='ULKFH' where id=9; -update noar ti set v0='ULKFH' where id=9; -update noar tt set b2='TVTWI14US' where id=9; -update noar ti set b2='TVTWI14US' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -f0 int not null, -v0 varchar(256) not null, -b0 tinyblob not null, -b1 tinyblob not null, -b2 tinyblob not null -) engine=tokudb; -insert into tt values (1,0,'','','',''); -insert into tt values (2,0,'','','',''); -insert into tt values (3,0,'','','',''); -insert into tt values (4,0,'','','',''); -insert into tt values (5,0,'','','',''); -insert into tt values (6,0,'','','',''); -insert into tt values (7,0,'','','',''); -insert into tt values (8,0,'','','',''); -insert into tt values (9,0,'','','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='QETZC' where id=1; -update noar ti set v0='QETZC' where id=1; -update noar tt set b0='TBFFSKY5BH9W3ULR' where id=1; -update noar ti set b0='TBFFSKY5BH9W3ULR' where id=1; -update noar tt set v0='W0MFEVQ5CS168WH5KFMIKAWH9JQNN4W' where id=1; -update noar ti set v0='W0MFEVQ5CS168WH5KFMIKAWH9JQNN4W' where id=1; -update noar tt set b1='8QP6I5ASCMN83IZ3USHA21VI2' where id=1; -update noar ti set b1='8QP6I5ASCMN83IZ3USHA21VI2' where id=1; -update noar tt set v0='9JWYOU3K6WZI' where id=1; -update noar ti set v0='9JWYOU3K6WZI' where id=1; -update noar tt set b2='IN4KR562PBMSF' where id=1; -update noar ti set b2='IN4KR562PBMSF' where id=1; -update noar tt set v0='EIKL96PTPQ794B' where id=2; -update noar ti set v0='EIKL96PTPQ794B' where id=2; -update noar tt set b0='KN8188232Q8' where id=2; -update noar ti set b0='KN8188232Q8' where id=2; -update noar tt set v0='FF3' where id=2; -update noar ti set v0='FF3' where id=2; -update noar tt set b1='TB' where id=2; -update noar ti set b1='TB' where id=2; -update noar tt set v0='QPV4RBSX4125AWTY834' where id=2; -update noar ti set v0='QPV4RBSX4125AWTY834' where id=2; -update noar tt set b2='XU9S3BBQ' where id=2; -update noar ti set b2='XU9S3BBQ' where id=2; -update noar tt set v0='JZJGSUJLBWEIA4IX17ZJAUXWT' where id=3; -update noar ti set v0='JZJGSUJLBWEIA4IX17ZJAUXWT' where id=3; -update noar tt set b0='F2KY1HSC4PTG' where id=3; -update noar ti set b0='F2KY1HSC4PTG' where id=3; -update noar tt set v0='90G8C3HR' where id=3; -update noar ti set v0='90G8C3HR' where id=3; -update noar tt set b1='BX6Y2M3C1J85QTCJQDTO9FJ' where id=3; -update noar ti set b1='BX6Y2M3C1J85QTCJQDTO9FJ' where id=3; -update noar tt set v0='T7Y8' where id=3; -update noar ti set v0='T7Y8' where id=3; -update noar tt set b2='6IQY88FIXBUZP9PPR' where id=3; -update noar ti set b2='6IQY88FIXBUZP9PPR' where id=3; -update noar tt set v0='UBN41YI25' where id=4; -update noar ti set v0='UBN41YI25' where id=4; -update noar tt set b0='D36WQNQHAUZZXT26ZT8S69ZOKYN' where id=4; -update noar ti set b0='D36WQNQHAUZZXT26ZT8S69ZOKYN' where id=4; -update noar tt set v0='PC9PZZF8FD42E1RTYLHEDC' where id=4; -update noar ti set v0='PC9PZZF8FD42E1RTYLHEDC' where id=4; -update noar tt set b1='XYS7CK3GL4WRO' where id=4; -update noar ti set b1='XYS7CK3GL4WRO' where id=4; -update noar tt set v0='O7FOKS2XW4AJY6DOBITB8ZKLU' where id=4; -update noar ti set v0='O7FOKS2XW4AJY6DOBITB8ZKLU' where id=4; -update noar tt set b2='33CYAEQV38XU9YQYUQ50C1' where id=4; -update noar ti set b2='33CYAEQV38XU9YQYUQ50C1' where id=4; -update noar tt set v0='E83ZUZD7ZR1DCUFF0HR0U8ODLKOING' where id=5; -update noar ti set v0='E83ZUZD7ZR1DCUFF0HR0U8ODLKOING' where id=5; -update noar tt set b0='MZ69' where id=5; -update noar ti set b0='MZ69' where id=5; -update noar tt set v0='ACDSD99DMU1SSANQ4CGNR0YGIFSWIP3' where id=5; -update noar ti set v0='ACDSD99DMU1SSANQ4CGNR0YGIFSWIP3' where id=5; -update noar tt set b1='R' where id=5; -update noar ti set b1='R' where id=5; -update noar tt set v0='PJJP7H9OBOPBLD1XJX9' where id=5; -update noar ti set v0='PJJP7H9OBOPBLD1XJX9' where id=5; -update noar tt set b2='FPSV3B0P2NY7ZQT' where id=5; -update noar ti set b2='FPSV3B0P2NY7ZQT' where id=5; -update noar tt set v0='F4VDWWI3I75P4RR3GVHLGH' where id=6; -update noar ti set v0='F4VDWWI3I75P4RR3GVHLGH' where id=6; -update noar tt set b0='5VB87QH59H29RQLCAX4' where id=6; -update noar ti set b0='5VB87QH59H29RQLCAX4' where id=6; -update noar tt set v0='3HLJ0VCMM0OHQSK20R7MA91' where id=6; -update noar ti set v0='3HLJ0VCMM0OHQSK20R7MA91' where id=6; -update noar tt set b1='C7QKBMEGNQ7XV8Y4IYF' where id=6; -update noar ti set b1='C7QKBMEGNQ7XV8Y4IYF' where id=6; -update noar tt set v0='JRGEXWSFP2YZHMXO' where id=6; -update noar ti set v0='JRGEXWSFP2YZHMXO' where id=6; -update noar tt set b2='S8206U7YHC0' where id=6; -update noar ti set b2='S8206U7YHC0' where id=6; -update noar tt set v0='NTXQQX' where id=7; -update noar ti set v0='NTXQQX' where id=7; -update noar tt set b0='QURBVUCJWX9RK19R8N4B072VITFP41' where id=7; -update noar ti set b0='QURBVUCJWX9RK19R8N4B072VITFP41' where id=7; -update noar tt set v0='8GG30NBC7R059IZIP8' where id=7; -update noar ti set v0='8GG30NBC7R059IZIP8' where id=7; -update noar tt set b1='RJBP9AORKOYEHOPSKDRBUEYQMF34P' where id=7; -update noar ti set b1='RJBP9AORKOYEHOPSKDRBUEYQMF34P' where id=7; -update noar tt set v0='5C2NDN3WNS5XP3AS' where id=7; -update noar ti set v0='5C2NDN3WNS5XP3AS' where id=7; -update noar tt set b2='SE62H4S14' where id=7; -update noar ti set b2='SE62H4S14' where id=7; -update noar tt set v0='LGDNOAIMMRYGY3YKGDVTXOWD05WPA1N' where id=8; -update noar ti set v0='LGDNOAIMMRYGY3YKGDVTXOWD05WPA1N' where id=8; -update noar tt set b0='V4M5BI8QZ41Q' where id=8; -update noar ti set b0='V4M5BI8QZ41Q' where id=8; -update noar tt set v0='EE7RPU1GWTK7CH' where id=8; -update noar ti set v0='EE7RPU1GWTK7CH' where id=8; -update noar tt set b1='9BVHAABUKRU4G1T0MCKIELXWM5G' where id=8; -update noar ti set b1='9BVHAABUKRU4G1T0MCKIELXWM5G' where id=8; -update noar tt set v0='G8VF6M6W9JC6WBYD2O3KRA7AT' where id=8; -update noar ti set v0='G8VF6M6W9JC6WBYD2O3KRA7AT' where id=8; -update noar tt set b2='Z1OE5UXP5JM' where id=8; -update noar ti set b2='Z1OE5UXP5JM' where id=8; -update noar tt set v0='7MRC91R7MC1HEP6MKEMRQ5R4OR7PC' where id=9; -update noar ti set v0='7MRC91R7MC1HEP6MKEMRQ5R4OR7PC' where id=9; -update noar tt set b0='XNYR0LL6' where id=9; -update noar ti set b0='XNYR0LL6' where id=9; -update noar tt set v0='30PDV' where id=9; -update noar ti set v0='30PDV' where id=9; -update noar tt set b1='I2FTDXR0JKWPOPM9OAUB9EGSD6' where id=9; -update noar ti set b1='I2FTDXR0JKWPOPM9OAUB9EGSD6' where id=9; -update noar tt set v0='PT' where id=9; -update noar ti set v0='PT' where id=9; -update noar tt set b2='915O3J8G6EJH8FA' where id=9; -update noar ti set b2='915O3J8G6EJH8FA' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -f0 int null, -v0 varchar(32) null, -b0 tinyblob null, -b1 tinyblob null, -b2 blob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='GWUF6Q87WWWUX1QXW' where id=1; -update noar ti set v0='GWUF6Q87WWWUX1QXW' where id=1; -update noar tt set b0='ZCU3V6ZFNSEGV8FE8CTAIK7UUF1VF6' where id=1; -update noar ti set b0='ZCU3V6ZFNSEGV8FE8CTAIK7UUF1VF6' where id=1; -update noar tt set v0='BVQFNY3G0F8M9TY2V39YI' where id=1; -update noar ti set v0='BVQFNY3G0F8M9TY2V39YI' where id=1; -update noar tt set b1='PUAY76GUN6LT7W5TW6V9T' where id=1; -update noar ti set b1='PUAY76GUN6LT7W5TW6V9T' where id=1; -update noar tt set v0='CSPTN1ZPILA7VHVI77ELIEQZDKY' where id=1; -update noar ti set v0='CSPTN1ZPILA7VHVI77ELIEQZDKY' where id=1; -update noar tt set b2='2HTW962P9V' where id=1; -update noar ti set b2='2HTW962P9V' where id=1; -update noar tt set v0='4P7V99N74CHERVHHO0D4KBW28' where id=2; -update noar ti set v0='4P7V99N74CHERVHHO0D4KBW28' where id=2; -update noar tt set b0='BE6T2P053ZZK228F' where id=2; -update noar ti set b0='BE6T2P053ZZK228F' where id=2; -update noar tt set v0='4Y1' where id=2; -update noar ti set v0='4Y1' where id=2; -update noar tt set b1='V68Q9IZ7AZYZTWZIYJBF4MWD' where id=2; -update noar ti set b1='V68Q9IZ7AZYZTWZIYJBF4MWD' where id=2; -update noar tt set v0='HQ301L35BQHC79' where id=2; -update noar ti set v0='HQ301L35BQHC79' where id=2; -update noar tt set b2='PU6I' where id=2; -update noar ti set b2='PU6I' where id=2; -update noar tt set v0='9KN' where id=3; -update noar ti set v0='9KN' where id=3; -update noar tt set b0='WSYIPK2J' where id=3; -update noar ti set b0='WSYIPK2J' where id=3; -update noar tt set v0='YUG48SU6GAH' where id=3; -update noar ti set v0='YUG48SU6GAH' where id=3; -update noar tt set b1='6QBKIJO' where id=3; -update noar ti set b1='6QBKIJO' where id=3; -update noar tt set v0='INT' where id=3; -update noar ti set v0='INT' where id=3; -update noar tt set b2='691YYKB36QQ3' where id=3; -update noar ti set b2='691YYKB36QQ3' where id=3; -update noar tt set v0='GV6A2LQ1BICRHSG5' where id=4; -update noar ti set v0='GV6A2LQ1BICRHSG5' where id=4; -update noar tt set b0='VJX07MIPR0' where id=4; -update noar ti set b0='VJX07MIPR0' where id=4; -update noar tt set v0='6O6HXB7T8HSDSIA0I' where id=4; -update noar ti set v0='6O6HXB7T8HSDSIA0I' where id=4; -update noar tt set b1='SPB1RRMHM' where id=4; -update noar ti set b1='SPB1RRMHM' where id=4; -update noar tt set v0='VRS6VBF9CX5RZ491MVSOWQ4040XB2DWB' where id=4; -update noar ti set v0='VRS6VBF9CX5RZ491MVSOWQ4040XB2DWB' where id=4; -update noar tt set b2='3UNO4AL1AYIGYFXOJ14FLKCKLE76' where id=4; -update noar ti set b2='3UNO4AL1AYIGYFXOJ14FLKCKLE76' where id=4; -update noar tt set v0='EUFVIWUJ9335G1O8B8ICTPPMNAHAO3' where id=5; -update noar ti set v0='EUFVIWUJ9335G1O8B8ICTPPMNAHAO3' where id=5; -update noar tt set b0='ZEWP6Y21KJLMKMJ' where id=5; -update noar ti set b0='ZEWP6Y21KJLMKMJ' where id=5; -update noar tt set v0='PNPFO72319BVC7NBE34YD6VC5LYI6' where id=5; -update noar ti set v0='PNPFO72319BVC7NBE34YD6VC5LYI6' where id=5; -update noar tt set b1='4SIXIJIG5B' where id=5; -update noar ti set b1='4SIXIJIG5B' where id=5; -update noar tt set v0='JJJBYJAQ' where id=5; -update noar ti set v0='JJJBYJAQ' where id=5; -update noar tt set b2='E2M6LMONX38NXAA96VNZ8L0J' where id=5; -update noar ti set b2='E2M6LMONX38NXAA96VNZ8L0J' where id=5; -update noar tt set v0='7RMJUCAMFMEO7UH2GK8MLGDWM5I46Y' where id=6; -update noar ti set v0='7RMJUCAMFMEO7UH2GK8MLGDWM5I46Y' where id=6; -update noar tt set b0='IXVG0MCJE9F1DIIZ' where id=6; -update noar ti set b0='IXVG0MCJE9F1DIIZ' where id=6; -update noar tt set v0='NTFS5XE6GX74Z4Q1A2KD' where id=6; -update noar ti set v0='NTFS5XE6GX74Z4Q1A2KD' where id=6; -update noar tt set b1='J28C3O26G65K91CMD29UB0Z' where id=6; -update noar ti set b1='J28C3O26G65K91CMD29UB0Z' where id=6; -update noar tt set v0='05MEPHCVARQ' where id=6; -update noar ti set v0='05MEPHCVARQ' where id=6; -update noar tt set b2='LCKD2ORUDT0A4FSJF26F76J979LU8' where id=6; -update noar ti set b2='LCKD2ORUDT0A4FSJF26F76J979LU8' where id=6; -update noar tt set v0='M4L5K355LPYM8Q6KDSG93M68VV4Z' where id=7; -update noar ti set v0='M4L5K355LPYM8Q6KDSG93M68VV4Z' where id=7; -update noar tt set b0='NE531CI' where id=7; -update noar ti set b0='NE531CI' where id=7; -update noar tt set v0='WUM7D8NR' where id=7; -update noar ti set v0='WUM7D8NR' where id=7; -update noar tt set b1='3QDV0YC7W23L0CD2P5' where id=7; -update noar ti set b1='3QDV0YC7W23L0CD2P5' where id=7; -update noar tt set v0='18XOOA4BJ91AKRTT6DWUWLD5T5Q9' where id=7; -update noar ti set v0='18XOOA4BJ91AKRTT6DWUWLD5T5Q9' where id=7; -update noar tt set b2='767' where id=7; -update noar ti set b2='767' where id=7; -update noar tt set v0='KCVSPID558BWCE7VQS13LZFXT2F' where id=8; -update noar ti set v0='KCVSPID558BWCE7VQS13LZFXT2F' where id=8; -update noar tt set b0='149RUW7I1B89USG2N3X' where id=8; -update noar ti set b0='149RUW7I1B89USG2N3X' where id=8; -update noar tt set v0='GDMK0X9B4EUQGWSM4OB6A6NK1HLXO' where id=8; -update noar ti set v0='GDMK0X9B4EUQGWSM4OB6A6NK1HLXO' where id=8; -update noar tt set b1='X7R' where id=8; -update noar ti set b1='X7R' where id=8; -update noar tt set v0='6AFQRMNSGZZ92X42ENI83QK78MJL' where id=8; -update noar ti set v0='6AFQRMNSGZZ92X42ENI83QK78MJL' where id=8; -update noar tt set b2='WASUL5O52II3Y9N6LTVKIX' where id=8; -update noar ti set b2='WASUL5O52II3Y9N6LTVKIX' where id=8; -update noar tt set v0='ETPO6VXV54BD6' where id=9; -update noar ti set v0='ETPO6VXV54BD6' where id=9; -update noar tt set b0='IT5H87V' where id=9; -update noar ti set b0='IT5H87V' where id=9; -update noar tt set v0='H13F1498WH29X6VJW12Y7A97801N10VO' where id=9; -update noar ti set v0='H13F1498WH29X6VJW12Y7A97801N10VO' where id=9; -update noar tt set b1='NO4TCPZ8XBLG33PP2CWYCNF4P' where id=9; -update noar ti set b1='NO4TCPZ8XBLG33PP2CWYCNF4P' where id=9; -update noar tt set v0='V4ZQFEQ2X1IK0W' where id=9; -update noar ti set v0='V4ZQFEQ2X1IK0W' where id=9; -update noar tt set b2='0Q49W1U8M1NS7E8BAR2MY7PDZM6' where id=9; -update noar ti set b2='0Q49W1U8M1NS7E8BAR2MY7PDZM6' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -f0 int null, -v0 varchar(256) null, -b0 tinyblob null, -b1 tinyblob null, -b2 blob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='94937Y8ZS6B8UT3JNU43LY47TSY' where id=1; -update noar ti set v0='94937Y8ZS6B8UT3JNU43LY47TSY' where id=1; -update noar tt set b0='9TP198CFJR' where id=1; -update noar ti set b0='9TP198CFJR' where id=1; -update noar tt set v0='55H1YW4YSH4Q' where id=1; -update noar ti set v0='55H1YW4YSH4Q' where id=1; -update noar tt set b1='QX8CYN553IJSAIE4HQZFX8JAONPFP' where id=1; -update noar ti set b1='QX8CYN553IJSAIE4HQZFX8JAONPFP' where id=1; -update noar tt set v0='FPVDOM2S1S3E74' where id=1; -update noar ti set v0='FPVDOM2S1S3E74' where id=1; -update noar tt set b2='E1BWI9D39XI50' where id=1; -update noar ti set b2='E1BWI9D39XI50' where id=1; -update noar tt set v0='MBYDYL' where id=2; -update noar ti set v0='MBYDYL' where id=2; -update noar tt set b0='X' where id=2; -update noar ti set b0='X' where id=2; -update noar tt set v0='W0VI4WEWXSJNGVMKFH' where id=2; -update noar ti set v0='W0VI4WEWXSJNGVMKFH' where id=2; -update noar tt set b1='63R' where id=2; -update noar ti set b1='63R' where id=2; -update noar tt set v0='1K5TT2MRENM87JOSQ57HGU86HBBWH8' where id=2; -update noar ti set v0='1K5TT2MRENM87JOSQ57HGU86HBBWH8' where id=2; -update noar tt set b2='5QZG9QFLIQ2KER1TJ9VH' where id=2; -update noar ti set b2='5QZG9QFLIQ2KER1TJ9VH' where id=2; -update noar tt set v0='YRZGVC7LBEY88Q0T4QPBBTXXBSNN8' where id=3; -update noar ti set v0='YRZGVC7LBEY88Q0T4QPBBTXXBSNN8' where id=3; -update noar tt set b0='AKOKNIY8PBGCU' where id=3; -update noar ti set b0='AKOKNIY8PBGCU' where id=3; -update noar tt set v0='27B79PBL4QNS4G7AV0K43' where id=3; -update noar ti set v0='27B79PBL4QNS4G7AV0K43' where id=3; -update noar tt set b1='EVRHBFSETK' where id=3; -update noar ti set b1='EVRHBFSETK' where id=3; -update noar tt set v0='H8B8WSH' where id=3; -update noar ti set v0='H8B8WSH' where id=3; -update noar tt set b2='YULW7LTJCZJA02VNX3V0M' where id=3; -update noar ti set b2='YULW7LTJCZJA02VNX3V0M' where id=3; -update noar tt set v0='JPYZUZUC97RT6JA23OU' where id=4; -update noar ti set v0='JPYZUZUC97RT6JA23OU' where id=4; -update noar tt set b0='04NA8NXBG78MU' where id=4; -update noar ti set b0='04NA8NXBG78MU' where id=4; -update noar tt set v0='FED98K4MP' where id=4; -update noar ti set v0='FED98K4MP' where id=4; -update noar tt set b1='F1VR6TZ1K52' where id=4; -update noar ti set b1='F1VR6TZ1K52' where id=4; -update noar tt set v0='7HO0WY6D1XK' where id=4; -update noar ti set v0='7HO0WY6D1XK' where id=4; -update noar tt set b2='Q8IHI4A7' where id=4; -update noar ti set b2='Q8IHI4A7' where id=4; -update noar tt set v0='R82G' where id=5; -update noar ti set v0='R82G' where id=5; -update noar tt set b0='9UX6PFYQT' where id=5; -update noar ti set b0='9UX6PFYQT' where id=5; -update noar tt set v0='O90SP331MXJD8' where id=5; -update noar ti set v0='O90SP331MXJD8' where id=5; -update noar tt set b1='VSP2X9' where id=5; -update noar ti set b1='VSP2X9' where id=5; -update noar tt set v0='9O7HNUAFE7EZPNVL4H' where id=5; -update noar ti set v0='9O7HNUAFE7EZPNVL4H' where id=5; -update noar tt set b2='CWWNWYAEUT7X' where id=5; -update noar ti set b2='CWWNWYAEUT7X' where id=5; -update noar tt set v0='I4G1MRWGHIGAA' where id=6; -update noar ti set v0='I4G1MRWGHIGAA' where id=6; -update noar tt set b0='8F9GWX6YPAUDER17K5' where id=6; -update noar ti set b0='8F9GWX6YPAUDER17K5' where id=6; -update noar tt set v0='YL1NHUXMJYVR004AV5MB' where id=6; -update noar ti set v0='YL1NHUXMJYVR004AV5MB' where id=6; -update noar tt set b1='74YG2583WJ0EWNUWYQMWC5DKZ1BHYQ0' where id=6; -update noar ti set b1='74YG2583WJ0EWNUWYQMWC5DKZ1BHYQ0' where id=6; -update noar tt set v0='GXN9V3VYIH0DWMBFT9H91IJKN' where id=6; -update noar ti set v0='GXN9V3VYIH0DWMBFT9H91IJKN' where id=6; -update noar tt set b2='TC8U32U98FGXV6B94YDZOKPOSPL' where id=6; -update noar ti set b2='TC8U32U98FGXV6B94YDZOKPOSPL' where id=6; -update noar tt set v0='39MFY6FJT7PV6XZ4T' where id=7; -update noar ti set v0='39MFY6FJT7PV6XZ4T' where id=7; -update noar tt set b0='CVWHPW97GJ' where id=7; -update noar ti set b0='CVWHPW97GJ' where id=7; -update noar tt set v0='Q4GP' where id=7; -update noar ti set v0='Q4GP' where id=7; -update noar tt set b1='6AM3C7F2NO1NDD1DXIM' where id=7; -update noar ti set b1='6AM3C7F2NO1NDD1DXIM' where id=7; -update noar tt set v0='CCLP2TUG' where id=7; -update noar ti set v0='CCLP2TUG' where id=7; -update noar tt set b2='BV7UA' where id=7; -update noar ti set b2='BV7UA' where id=7; -update noar tt set v0='H5TIU1HN5H6S' where id=8; -update noar ti set v0='H5TIU1HN5H6S' where id=8; -update noar tt set b0='TPNQ6PKGDH7FRN' where id=8; -update noar ti set b0='TPNQ6PKGDH7FRN' where id=8; -update noar tt set v0='YATXKM3ZO4M2WSKJ4AJJRIMKJ1WWZ' where id=8; -update noar ti set v0='YATXKM3ZO4M2WSKJ4AJJRIMKJ1WWZ' where id=8; -update noar tt set b1='IUBVN' where id=8; -update noar ti set b1='IUBVN' where id=8; -update noar tt set v0='NJ' where id=8; -update noar ti set v0='NJ' where id=8; -update noar tt set b2='WI2WZ8ZC9IRVU3OJU04Q2IGIY' where id=8; -update noar ti set b2='WI2WZ8ZC9IRVU3OJU04Q2IGIY' where id=8; -update noar tt set v0='LOHGD82GJ9HE4P70Y9GX2HNEGYJDA0F' where id=9; -update noar ti set v0='LOHGD82GJ9HE4P70Y9GX2HNEGYJDA0F' where id=9; -update noar tt set b0='XIG3K30QJ3N3J7AWRBDQEKFNXYY' where id=9; -update noar ti set b0='XIG3K30QJ3N3J7AWRBDQEKFNXYY' where id=9; -update noar tt set v0='WDVP5U92KZNYU' where id=9; -update noar ti set v0='WDVP5U92KZNYU' where id=9; -update noar tt set b1='P4X1Z8SNE' where id=9; -update noar ti set b1='P4X1Z8SNE' where id=9; -update noar tt set v0='ZO' where id=9; -update noar ti set v0='ZO' where id=9; -update noar tt set b2='DHYMQIK7RBAZ12G8ISTU' where id=9; -update noar ti set b2='DHYMQIK7RBAZ12G8ISTU' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -f0 int not null, -v0 varchar(32) not null, -b0 tinyblob not null, -b1 tinyblob not null, -b2 blob not null -) engine=tokudb; -insert into tt values (1,0,'','','',''); -insert into tt values (2,0,'','','',''); -insert into tt values (3,0,'','','',''); -insert into tt values (4,0,'','','',''); -insert into tt values (5,0,'','','',''); -insert into tt values (6,0,'','','',''); -insert into tt values (7,0,'','','',''); -insert into tt values (8,0,'','','',''); -insert into tt values (9,0,'','','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='OD7U2GWRE4VBNUF1Q2OLW2GX0NIZG' where id=1; -update noar ti set v0='OD7U2GWRE4VBNUF1Q2OLW2GX0NIZG' where id=1; -update noar tt set b0='Z' where id=1; -update noar ti set b0='Z' where id=1; -update noar tt set v0='0NMBXJKAJ5ECX' where id=1; -update noar ti set v0='0NMBXJKAJ5ECX' where id=1; -update noar tt set b1='96' where id=1; -update noar ti set b1='96' where id=1; -update noar tt set v0='SQZC1FUZK' where id=1; -update noar ti set v0='SQZC1FUZK' where id=1; -update noar tt set b2='U3UEF26K59HNGYQ' where id=1; -update noar ti set b2='U3UEF26K59HNGYQ' where id=1; -update noar tt set v0='CUM51DE70R0P98N8QLW85VLUJJ85A4FA' where id=2; -update noar ti set v0='CUM51DE70R0P98N8QLW85VLUJJ85A4FA' where id=2; -update noar tt set b0='RY29M' where id=2; -update noar ti set b0='RY29M' where id=2; -update noar tt set v0='69SSVPI88KJPYU3CBPBZ' where id=2; -update noar ti set v0='69SSVPI88KJPYU3CBPBZ' where id=2; -update noar tt set b1='0PWCMD59CY5GJD0JR4EG6P7SIBX9QXC' where id=2; -update noar ti set b1='0PWCMD59CY5GJD0JR4EG6P7SIBX9QXC' where id=2; -update noar tt set v0='NQ9TP' where id=2; -update noar ti set v0='NQ9TP' where id=2; -update noar tt set b2='395' where id=2; -update noar ti set b2='395' where id=2; -update noar tt set v0='XZ3W5IEF' where id=3; -update noar ti set v0='XZ3W5IEF' where id=3; -update noar tt set b0='1EV8' where id=3; -update noar ti set b0='1EV8' where id=3; -update noar tt set v0='3GC1X' where id=3; -update noar ti set v0='3GC1X' where id=3; -update noar tt set b1='V6L5I2CMX3T876B5F6LXNN0ZUJ012Q9B' where id=3; -update noar ti set b1='V6L5I2CMX3T876B5F6LXNN0ZUJ012Q9B' where id=3; -update noar tt set v0='M764Q230O59PS78ZI' where id=3; -update noar ti set v0='M764Q230O59PS78ZI' where id=3; -update noar tt set b2='GQP5BGSGJWJ3W59BQ' where id=3; -update noar ti set b2='GQP5BGSGJWJ3W59BQ' where id=3; -update noar tt set v0='3BOP3AUY2' where id=4; -update noar ti set v0='3BOP3AUY2' where id=4; -update noar tt set b0='R47OJ1DD26TDV0KAD0DYFZXUHVBL5' where id=4; -update noar ti set b0='R47OJ1DD26TDV0KAD0DYFZXUHVBL5' where id=4; -update noar tt set v0='48AB02Z4WGF36W671LL23NGOP4' where id=4; -update noar ti set v0='48AB02Z4WGF36W671LL23NGOP4' where id=4; -update noar tt set b1='KBG3FMVLCMF735RE' where id=4; -update noar ti set b1='KBG3FMVLCMF735RE' where id=4; -update noar tt set v0='3GBRRDA1G7DXILQT02ZOB2JK1N' where id=4; -update noar ti set v0='3GBRRDA1G7DXILQT02ZOB2JK1N' where id=4; -update noar tt set b2='PZJ0T31G5LAQUCK2H53QUPTD8W6UJ' where id=4; -update noar ti set b2='PZJ0T31G5LAQUCK2H53QUPTD8W6UJ' where id=4; -update noar tt set v0='X6WDT9ZZEA6RZ2PSQ6BD80P03DSD29K' where id=5; -update noar ti set v0='X6WDT9ZZEA6RZ2PSQ6BD80P03DSD29K' where id=5; -update noar tt set b0='IGS' where id=5; -update noar ti set b0='IGS' where id=5; -update noar tt set v0='I84RXOJQCBFT9VA67SL37278K1FUPH' where id=5; -update noar ti set v0='I84RXOJQCBFT9VA67SL37278K1FUPH' where id=5; -update noar tt set b1='0QRESRYD1B8V34P09YT68ZK' where id=5; -update noar ti set b1='0QRESRYD1B8V34P09YT68ZK' where id=5; -update noar tt set v0='5AV5YLOLWC' where id=5; -update noar ti set v0='5AV5YLOLWC' where id=5; -update noar tt set b2='7' where id=5; -update noar ti set b2='7' where id=5; -update noar tt set v0='1E' where id=6; -update noar ti set v0='1E' where id=6; -update noar tt set b0='7XRZ3WJCKRTBRP' where id=6; -update noar ti set b0='7XRZ3WJCKRTBRP' where id=6; -update noar tt set v0='RUBPZ0C2' where id=6; -update noar ti set v0='RUBPZ0C2' where id=6; -update noar tt set b1='BDDVDB6TCQFJ69D3' where id=6; -update noar ti set b1='BDDVDB6TCQFJ69D3' where id=6; -update noar tt set v0='E' where id=6; -update noar ti set v0='E' where id=6; -update noar tt set b2='S03UXBDW18QC8ZVASS2T7R1HMY' where id=6; -update noar ti set b2='S03UXBDW18QC8ZVASS2T7R1HMY' where id=6; -update noar tt set v0='55' where id=7; -update noar ti set v0='55' where id=7; -update noar tt set b0='JFATL6SREEOIDZ6A9UN4CC' where id=7; -update noar ti set b0='JFATL6SREEOIDZ6A9UN4CC' where id=7; -update noar tt set v0='11S' where id=7; -update noar ti set v0='11S' where id=7; -update noar tt set b1='5KGSQ' where id=7; -update noar ti set b1='5KGSQ' where id=7; -update noar tt set v0='1' where id=7; -update noar ti set v0='1' where id=7; -update noar tt set b2='6HGM2NSDU52ESTP396DDXUDGG38ORY3' where id=7; -update noar ti set b2='6HGM2NSDU52ESTP396DDXUDGG38ORY3' where id=7; -update noar tt set v0='WDPYZ17V' where id=8; -update noar ti set v0='WDPYZ17V' where id=8; -update noar tt set b0='2HIKX2GKUXHKDQJJX2GYC7MRUI' where id=8; -update noar ti set b0='2HIKX2GKUXHKDQJJX2GYC7MRUI' where id=8; -update noar tt set v0='5MW6WUHMT4IIM48UID3P' where id=8; -update noar ti set v0='5MW6WUHMT4IIM48UID3P' where id=8; -update noar tt set b1='TZYAHU6LCH' where id=8; -update noar ti set b1='TZYAHU6LCH' where id=8; -update noar tt set v0='MZ0N8EAAUTTXFIQYAFO8HCCJ3IVX' where id=8; -update noar ti set v0='MZ0N8EAAUTTXFIQYAFO8HCCJ3IVX' where id=8; -update noar tt set b2='KKN4SQ8FXK3O0LFM8ULFIOT08X7MEA' where id=8; -update noar ti set b2='KKN4SQ8FXK3O0LFM8ULFIOT08X7MEA' where id=8; -update noar tt set v0='ZGPM8Q2DECD4GNAM' where id=9; -update noar ti set v0='ZGPM8Q2DECD4GNAM' where id=9; -update noar tt set b0='CGBIZU3S5I34' where id=9; -update noar ti set b0='CGBIZU3S5I34' where id=9; -update noar tt set v0='BO8OIBJJ' where id=9; -update noar ti set v0='BO8OIBJJ' where id=9; -update noar tt set b1='VBDU42CL7M3DST3CZX' where id=9; -update noar ti set b1='VBDU42CL7M3DST3CZX' where id=9; -update noar tt set v0='8UXMPQEC7VPCL78DN7V1HIQF' where id=9; -update noar ti set v0='8UXMPQEC7VPCL78DN7V1HIQF' where id=9; -update noar tt set b2='LS1O9ISP2F0VMVAVZCPXOQPBD2ELA' where id=9; -update noar ti set b2='LS1O9ISP2F0VMVAVZCPXOQPBD2ELA' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -f0 int not null, -v0 varchar(256) not null, -b0 tinyblob not null, -b1 tinyblob not null, -b2 blob not null -) engine=tokudb; -insert into tt values (1,0,'','','',''); -insert into tt values (2,0,'','','',''); -insert into tt values (3,0,'','','',''); -insert into tt values (4,0,'','','',''); -insert into tt values (5,0,'','','',''); -insert into tt values (6,0,'','','',''); -insert into tt values (7,0,'','','',''); -insert into tt values (8,0,'','','',''); -insert into tt values (9,0,'','','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='L' where id=1; -update noar ti set v0='L' where id=1; -update noar tt set b0='2FL5A671O3BLN70Z' where id=1; -update noar ti set b0='2FL5A671O3BLN70Z' where id=1; -update noar tt set v0='QXX2ACY06ZJYJNA6J374KEPB8' where id=1; -update noar ti set v0='QXX2ACY06ZJYJNA6J374KEPB8' where id=1; -update noar tt set b1='Z88LKRG9PVV' where id=1; -update noar ti set b1='Z88LKRG9PVV' where id=1; -update noar tt set v0='ITJVKBDE8V9GRU' where id=1; -update noar ti set v0='ITJVKBDE8V9GRU' where id=1; -update noar tt set b2='4NB2Z321QTPS33VXP5CLC1Z2G' where id=1; -update noar ti set b2='4NB2Z321QTPS33VXP5CLC1Z2G' where id=1; -update noar tt set v0='XJZT' where id=2; -update noar ti set v0='XJZT' where id=2; -update noar tt set b0='ZZ581EA78P1C4JQ' where id=2; -update noar ti set b0='ZZ581EA78P1C4JQ' where id=2; -update noar tt set v0='3CTYFUJY7LGYH5M6W' where id=2; -update noar ti set v0='3CTYFUJY7LGYH5M6W' where id=2; -update noar tt set b1='TB3I44RRHR4KJ' where id=2; -update noar ti set b1='TB3I44RRHR4KJ' where id=2; -update noar tt set v0='1CIW99I4R' where id=2; -update noar ti set v0='1CIW99I4R' where id=2; -update noar tt set b2='ZWIH2IPVXOOP8U8II' where id=2; -update noar ti set b2='ZWIH2IPVXOOP8U8II' where id=2; -update noar tt set v0='94LBME0N20NQMBR2BJQ49VZFK0ALI' where id=3; -update noar ti set v0='94LBME0N20NQMBR2BJQ49VZFK0ALI' where id=3; -update noar tt set b0='AFQI5X' where id=3; -update noar ti set b0='AFQI5X' where id=3; -update noar tt set v0='7AEDRDU66H00O9' where id=3; -update noar ti set v0='7AEDRDU66H00O9' where id=3; -update noar tt set b1='N1KM9GDCMUQTJ0LR' where id=3; -update noar ti set b1='N1KM9GDCMUQTJ0LR' where id=3; -update noar tt set v0='T5JGMRMIE016C2507BU7ILNEXI4G7X' where id=3; -update noar ti set v0='T5JGMRMIE016C2507BU7ILNEXI4G7X' where id=3; -update noar tt set b2='YV71Y' where id=3; -update noar ti set b2='YV71Y' where id=3; -update noar tt set v0='W' where id=4; -update noar ti set v0='W' where id=4; -update noar tt set b0='FZIWANCO77X4I5GHWTXV70L1UP0' where id=4; -update noar ti set b0='FZIWANCO77X4I5GHWTXV70L1UP0' where id=4; -update noar tt set v0='9K6BSUMDAZXGRC4W59RFL2C6GMXC524' where id=4; -update noar ti set v0='9K6BSUMDAZXGRC4W59RFL2C6GMXC524' where id=4; -update noar tt set b1='U2SBKAUALJ4Y5Q5OFU7KDF' where id=4; -update noar ti set b1='U2SBKAUALJ4Y5Q5OFU7KDF' where id=4; -update noar tt set v0='8R' where id=4; -update noar ti set v0='8R' where id=4; -update noar tt set b2='APZGIGFP18' where id=4; -update noar ti set b2='APZGIGFP18' where id=4; -update noar tt set v0='P' where id=5; -update noar ti set v0='P' where id=5; -update noar tt set b0='X8KG1HVY63KSFC08JOCAD' where id=5; -update noar ti set b0='X8KG1HVY63KSFC08JOCAD' where id=5; -update noar tt set v0='LS1U' where id=5; -update noar ti set v0='LS1U' where id=5; -update noar tt set b1='CWT3RKAZOCJS1TL' where id=5; -update noar ti set b1='CWT3RKAZOCJS1TL' where id=5; -update noar tt set v0='9MPSX9LPAGGJ8DJDO' where id=5; -update noar ti set v0='9MPSX9LPAGGJ8DJDO' where id=5; -update noar tt set b2='4V5YJ4953RQOMBG5O5' where id=5; -update noar ti set b2='4V5YJ4953RQOMBG5O5' where id=5; -update noar tt set v0='X81V6DQB9QG' where id=6; -update noar ti set v0='X81V6DQB9QG' where id=6; -update noar tt set b0='BTZQ83C0SCNSPLB103N4ADSXTJC1ACYM' where id=6; -update noar ti set b0='BTZQ83C0SCNSPLB103N4ADSXTJC1ACYM' where id=6; -update noar tt set v0='5CIDA4LCP7L8R6UBZ8LOZZ' where id=6; -update noar ti set v0='5CIDA4LCP7L8R6UBZ8LOZZ' where id=6; -update noar tt set b1='THX6T8NMBMS12NVSFCFM49OA5JVZ1' where id=6; -update noar ti set b1='THX6T8NMBMS12NVSFCFM49OA5JVZ1' where id=6; -update noar tt set v0='IRTO5W6GB1R6RZRVEXQPM6QQNKRLXTAS' where id=6; -update noar ti set v0='IRTO5W6GB1R6RZRVEXQPM6QQNKRLXTAS' where id=6; -update noar tt set b2='676QFRVGJ2EOCIXM0FOROPQ06' where id=6; -update noar ti set b2='676QFRVGJ2EOCIXM0FOROPQ06' where id=6; -update noar tt set v0='BAUNIP8914WKN5J52DGOWUGF' where id=7; -update noar ti set v0='BAUNIP8914WKN5J52DGOWUGF' where id=7; -update noar tt set b0='2EQ2M3WYFNOV' where id=7; -update noar ti set b0='2EQ2M3WYFNOV' where id=7; -update noar tt set v0='ZNN2Y9N5U55UUI6BPR' where id=7; -update noar ti set v0='ZNN2Y9N5U55UUI6BPR' where id=7; -update noar tt set b1='C47TW' where id=7; -update noar ti set b1='C47TW' where id=7; -update noar tt set v0='OU0NFUMIG7A2LW2T7P8BKDNCSSWLENT' where id=7; -update noar ti set v0='OU0NFUMIG7A2LW2T7P8BKDNCSSWLENT' where id=7; -update noar tt set b2='R5Q9Z2KD5OFHVPCUNIHHTD2MS52SDT' where id=7; -update noar ti set b2='R5Q9Z2KD5OFHVPCUNIHHTD2MS52SDT' where id=7; -update noar tt set v0='PT30PI2W8B0' where id=8; -update noar ti set v0='PT30PI2W8B0' where id=8; -update noar tt set b0='HK3C2VEG' where id=8; -update noar ti set b0='HK3C2VEG' where id=8; -update noar tt set v0='DCCLO9RUZ8O' where id=8; -update noar ti set v0='DCCLO9RUZ8O' where id=8; -update noar tt set b1='IZJYZPBRDCIWKIQJQS' where id=8; -update noar ti set b1='IZJYZPBRDCIWKIQJQS' where id=8; -update noar tt set v0='SDQIQC9XF0JYZ85TTKJ9Q8AW4ZFYRFUB' where id=8; -update noar ti set v0='SDQIQC9XF0JYZ85TTKJ9Q8AW4ZFYRFUB' where id=8; -update noar tt set b2='4ALWL4JIDD4IBGULTO08RN95RS2' where id=8; -update noar ti set b2='4ALWL4JIDD4IBGULTO08RN95RS2' where id=8; -update noar tt set v0='FVH3MLV0Q6RV3S8WL9VQ29JDOSJ' where id=9; -update noar ti set v0='FVH3MLV0Q6RV3S8WL9VQ29JDOSJ' where id=9; -update noar tt set b0='HPA6RHHBVPMWCLJTXDR' where id=9; -update noar ti set b0='HPA6RHHBVPMWCLJTXDR' where id=9; -update noar tt set v0='5XAGO1' where id=9; -update noar ti set v0='5XAGO1' where id=9; -update noar tt set b1='64G01OQJKHYJOEKVPCQV0' where id=9; -update noar ti set b1='64G01OQJKHYJOEKVPCQV0' where id=9; -update noar tt set v0='YQHPG0SW6QBGRDYF' where id=9; -update noar ti set v0='YQHPG0SW6QBGRDYF' where id=9; -update noar tt set b2='D9MJMYKITVI9H' where id=9; -update noar ti set b2='D9MJMYKITVI9H' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -f0 int null, -v0 varchar(32) null, -b0 tinyblob null, -b1 tinyblob null, -b2 mediumblob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='NY6I53I6NQ43Z3NE3GK27BS' where id=1; -update noar ti set v0='NY6I53I6NQ43Z3NE3GK27BS' where id=1; -update noar tt set b0='9M5A' where id=1; -update noar ti set b0='9M5A' where id=1; -update noar tt set v0='3WC52KXRYED8N4RG578' where id=1; -update noar ti set v0='3WC52KXRYED8N4RG578' where id=1; -update noar tt set b1='CFCQHJ1ZGY6X62BCX4WEQMHYHCZB77DL' where id=1; -update noar ti set b1='CFCQHJ1ZGY6X62BCX4WEQMHYHCZB77DL' where id=1; -update noar tt set v0='WZK8Z06Q8V6VZBVYPNSIKF7' where id=1; -update noar ti set v0='WZK8Z06Q8V6VZBVYPNSIKF7' where id=1; -update noar tt set b2='D' where id=1; -update noar ti set b2='D' where id=1; -update noar tt set v0='HIO6O0DZTZI25BMQP9' where id=2; -update noar ti set v0='HIO6O0DZTZI25BMQP9' where id=2; -update noar tt set b0='IHQ0FPU6WDRRMCJ7W6KB' where id=2; -update noar ti set b0='IHQ0FPU6WDRRMCJ7W6KB' where id=2; -update noar tt set v0='EYOP5UD' where id=2; -update noar ti set v0='EYOP5UD' where id=2; -update noar tt set b1='134X8Q' where id=2; -update noar ti set b1='134X8Q' where id=2; -update noar tt set v0='YSC2TV' where id=2; -update noar ti set v0='YSC2TV' where id=2; -update noar tt set b2='RDF9KMIH13Q2K0RBFBQHCCW' where id=2; -update noar ti set b2='RDF9KMIH13Q2K0RBFBQHCCW' where id=2; -update noar tt set v0='TU7CLC265Z3KYCTSK4P5VRXDU85PDY' where id=3; -update noar ti set v0='TU7CLC265Z3KYCTSK4P5VRXDU85PDY' where id=3; -update noar tt set b0='RYN4YHF35587CHO89H8584YBOZ' where id=3; -update noar ti set b0='RYN4YHF35587CHO89H8584YBOZ' where id=3; -update noar tt set v0='WJKXQNWJAP' where id=3; -update noar ti set v0='WJKXQNWJAP' where id=3; -update noar tt set b1='VX43Y650ZF9MJ48AC2VJPSPA1V4' where id=3; -update noar ti set b1='VX43Y650ZF9MJ48AC2VJPSPA1V4' where id=3; -update noar tt set v0='SINUFU60YCD0XB' where id=3; -update noar ti set v0='SINUFU60YCD0XB' where id=3; -update noar tt set b2='4QTRL' where id=3; -update noar ti set b2='4QTRL' where id=3; -update noar tt set v0='6DZMOESLINOXOFI6R24TM7C' where id=4; -update noar ti set v0='6DZMOESLINOXOFI6R24TM7C' where id=4; -update noar tt set b0='A1W13TZV' where id=4; -update noar ti set b0='A1W13TZV' where id=4; -update noar tt set v0='U7Q8H' where id=4; -update noar ti set v0='U7Q8H' where id=4; -update noar tt set b1='3DY7QYLMAX8DKVBUQOYFECB1C1Y' where id=4; -update noar ti set b1='3DY7QYLMAX8DKVBUQOYFECB1C1Y' where id=4; -update noar tt set v0='14VXFJCVMF469L8A6' where id=4; -update noar ti set v0='14VXFJCVMF469L8A6' where id=4; -update noar tt set b2='PABFN3XZWBL2PDY3OKT2H83' where id=4; -update noar ti set b2='PABFN3XZWBL2PDY3OKT2H83' where id=4; -update noar tt set v0='0JBOS89X8' where id=5; -update noar ti set v0='0JBOS89X8' where id=5; -update noar tt set b0='Z65DHL101QK76IJEW1' where id=5; -update noar ti set b0='Z65DHL101QK76IJEW1' where id=5; -update noar tt set v0='841064AI51KZRXWEXON66WF843HUN5O' where id=5; -update noar ti set v0='841064AI51KZRXWEXON66WF843HUN5O' where id=5; -update noar tt set b1='OYL3NDMKKYNQP6WHO8DUMRSDEV0SHG' where id=5; -update noar ti set b1='OYL3NDMKKYNQP6WHO8DUMRSDEV0SHG' where id=5; -update noar tt set v0='WCTD1IC' where id=5; -update noar ti set v0='WCTD1IC' where id=5; -update noar tt set b2='14Z8NAC5EFJYDOV5L23295W99FCRV' where id=5; -update noar ti set b2='14Z8NAC5EFJYDOV5L23295W99FCRV' where id=5; -update noar tt set v0='3HGRO53DFO' where id=6; -update noar ti set v0='3HGRO53DFO' where id=6; -update noar tt set b0='MWRAVX2J4XN9' where id=6; -update noar ti set b0='MWRAVX2J4XN9' where id=6; -update noar tt set v0='UFY8TS2D3Q4C77B' where id=6; -update noar ti set v0='UFY8TS2D3Q4C77B' where id=6; -update noar tt set b1='Y5L5J2RVN2CGT' where id=6; -update noar ti set b1='Y5L5J2RVN2CGT' where id=6; -update noar tt set v0='IH8I6XP1X691O' where id=6; -update noar ti set v0='IH8I6XP1X691O' where id=6; -update noar tt set b2='LMYYGGAOUEBWZ8CQHL0LINSW' where id=6; -update noar ti set b2='LMYYGGAOUEBWZ8CQHL0LINSW' where id=6; -update noar tt set v0='5P2Z1M0OS' where id=7; -update noar ti set v0='5P2Z1M0OS' where id=7; -update noar tt set b0='OPO722WMQXDTSQS9W4' where id=7; -update noar ti set b0='OPO722WMQXDTSQS9W4' where id=7; -update noar tt set v0='KYSAKL' where id=7; -update noar ti set v0='KYSAKL' where id=7; -update noar tt set b1='99YMP8FRZV03O7LG1' where id=7; -update noar ti set b1='99YMP8FRZV03O7LG1' where id=7; -update noar tt set v0='XQJT7NW4HYTNRM' where id=7; -update noar ti set v0='XQJT7NW4HYTNRM' where id=7; -update noar tt set b2='88OMWNINWYCJW2MDOPTB4TLCZDLG' where id=7; -update noar ti set b2='88OMWNINWYCJW2MDOPTB4TLCZDLG' where id=7; -update noar tt set v0='G6PHZFSV0CO6VZCL8C3Q3N3P' where id=8; -update noar ti set v0='G6PHZFSV0CO6VZCL8C3Q3N3P' where id=8; -update noar tt set b0='Q8LQNIPP0YCOKNI' where id=8; -update noar ti set b0='Q8LQNIPP0YCOKNI' where id=8; -update noar tt set v0='IRS2SKGU6898WQKKN104AA1IQZTIY' where id=8; -update noar ti set v0='IRS2SKGU6898WQKKN104AA1IQZTIY' where id=8; -update noar tt set b1='579Z2G7VN' where id=8; -update noar ti set b1='579Z2G7VN' where id=8; -update noar tt set v0='T5MYDI' where id=8; -update noar ti set v0='T5MYDI' where id=8; -update noar tt set b2='879OJ6J76ZCY' where id=8; -update noar ti set b2='879OJ6J76ZCY' where id=8; -update noar tt set v0='AXM4E' where id=9; -update noar ti set v0='AXM4E' where id=9; -update noar tt set b0='JM79E52Y1J8M07GMMPIHI7K8GGUEA' where id=9; -update noar ti set b0='JM79E52Y1J8M07GMMPIHI7K8GGUEA' where id=9; -update noar tt set v0='7X016' where id=9; -update noar ti set v0='7X016' where id=9; -update noar tt set b1='TQN4UF00YDS' where id=9; -update noar ti set b1='TQN4UF00YDS' where id=9; -update noar tt set v0='B6CKV5SWBUO024WIGOXOH7E5J' where id=9; -update noar ti set v0='B6CKV5SWBUO024WIGOXOH7E5J' where id=9; -update noar tt set b2='22YNXHK2BJYE4EY44U9ZV' where id=9; -update noar ti set b2='22YNXHK2BJYE4EY44U9ZV' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -f0 int null, -v0 varchar(256) null, -b0 tinyblob null, -b1 tinyblob null, -b2 mediumblob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='AH0QPE6' where id=1; -update noar ti set v0='AH0QPE6' where id=1; -update noar tt set b0='KOW0OPILMP' where id=1; -update noar ti set b0='KOW0OPILMP' where id=1; -update noar tt set v0='VYQRZ53O' where id=1; -update noar ti set v0='VYQRZ53O' where id=1; -update noar tt set b1='XHRJUZU506VQ7VXXYBWOY768JYPC' where id=1; -update noar ti set b1='XHRJUZU506VQ7VXXYBWOY768JYPC' where id=1; -update noar tt set v0='NSQMQ7M1QYKO5D' where id=1; -update noar ti set v0='NSQMQ7M1QYKO5D' where id=1; -update noar tt set b2='3170DAEAV68K1Z9' where id=1; -update noar ti set b2='3170DAEAV68K1Z9' where id=1; -update noar tt set v0='ZYPJOYEQQRLV1C9IUB' where id=2; -update noar ti set v0='ZYPJOYEQQRLV1C9IUB' where id=2; -update noar tt set b0='ME1D9ZSQZXG2SAS4WWKIJ' where id=2; -update noar ti set b0='ME1D9ZSQZXG2SAS4WWKIJ' where id=2; -update noar tt set v0='7S7XA8UK' where id=2; -update noar ti set v0='7S7XA8UK' where id=2; -update noar tt set b1='WOSI7SGUGD0Y' where id=2; -update noar ti set b1='WOSI7SGUGD0Y' where id=2; -update noar tt set v0='CM6' where id=2; -update noar ti set v0='CM6' where id=2; -update noar tt set b2='CVZONN07AXKD8A' where id=2; -update noar ti set b2='CVZONN07AXKD8A' where id=2; -update noar tt set v0='ACUP1MTUXUHQ' where id=3; -update noar ti set v0='ACUP1MTUXUHQ' where id=3; -update noar tt set b0='TB8DF8XOT5BJIJTM4GXT' where id=3; -update noar ti set b0='TB8DF8XOT5BJIJTM4GXT' where id=3; -update noar tt set v0='SVI24A1XH3WQN' where id=3; -update noar ti set v0='SVI24A1XH3WQN' where id=3; -update noar tt set b1='QSTAFZKF' where id=3; -update noar ti set b1='QSTAFZKF' where id=3; -update noar tt set v0='5R9ZK' where id=3; -update noar ti set v0='5R9ZK' where id=3; -update noar tt set b2='5IH15FMEGO5PW' where id=3; -update noar ti set b2='5IH15FMEGO5PW' where id=3; -update noar tt set v0='OLMD96PZ7V9ZVKQF3TLL8' where id=4; -update noar ti set v0='OLMD96PZ7V9ZVKQF3TLL8' where id=4; -update noar tt set b0='17KW3KEH52VIT21YEELVTQVVP' where id=4; -update noar ti set b0='17KW3KEH52VIT21YEELVTQVVP' where id=4; -update noar tt set v0='8XN2L5H4O74S' where id=4; -update noar ti set v0='8XN2L5H4O74S' where id=4; -update noar tt set b1='FHGZV50WE1VQ0CP9FKOPL8BJ' where id=4; -update noar ti set b1='FHGZV50WE1VQ0CP9FKOPL8BJ' where id=4; -update noar tt set v0='7EPKTYU7WG80OEBZ5' where id=4; -update noar ti set v0='7EPKTYU7WG80OEBZ5' where id=4; -update noar tt set b2='NJ1PU' where id=4; -update noar ti set b2='NJ1PU' where id=4; -update noar tt set v0='0JTXLLPR33Z' where id=5; -update noar ti set v0='0JTXLLPR33Z' where id=5; -update noar tt set b0='THOKSU8N2WAZI52R7B16D3LSAEU3ONO' where id=5; -update noar ti set b0='THOKSU8N2WAZI52R7B16D3LSAEU3ONO' where id=5; -update noar tt set v0='08KBBM4VSCYWENBVR' where id=5; -update noar ti set v0='08KBBM4VSCYWENBVR' where id=5; -update noar tt set b1='18UQ4HTXH05RMT' where id=5; -update noar ti set b1='18UQ4HTXH05RMT' where id=5; -update noar tt set v0='XZGKBSVKB6IA' where id=5; -update noar ti set v0='XZGKBSVKB6IA' where id=5; -update noar tt set b2='G' where id=5; -update noar ti set b2='G' where id=5; -update noar tt set v0='0AIUVJK8353JJHBZG11R44EV5OVQXV' where id=6; -update noar ti set v0='0AIUVJK8353JJHBZG11R44EV5OVQXV' where id=6; -update noar tt set b0='2' where id=6; -update noar ti set b0='2' where id=6; -update noar tt set v0='67TC4RXIU4J' where id=6; -update noar ti set v0='67TC4RXIU4J' where id=6; -update noar tt set b1='D09O3Q69M5HRNB06FTBMG' where id=6; -update noar ti set b1='D09O3Q69M5HRNB06FTBMG' where id=6; -update noar tt set v0='G1XBK8HV3' where id=6; -update noar ti set v0='G1XBK8HV3' where id=6; -update noar tt set b2='ZD53QVOY3K2IQ9Z9JJ6R1A' where id=6; -update noar ti set b2='ZD53QVOY3K2IQ9Z9JJ6R1A' where id=6; -update noar tt set v0='L9VOXIQHG7KL49BR23' where id=7; -update noar ti set v0='L9VOXIQHG7KL49BR23' where id=7; -update noar tt set b0='7HWQ5QUZV4XCCP7FOW' where id=7; -update noar ti set b0='7HWQ5QUZV4XCCP7FOW' where id=7; -update noar tt set v0='Y6E00MR1TKSTHC0NFXPGY892' where id=7; -update noar ti set v0='Y6E00MR1TKSTHC0NFXPGY892' where id=7; -update noar tt set b1='37VZIDMPXDBKGM' where id=7; -update noar ti set b1='37VZIDMPXDBKGM' where id=7; -update noar tt set v0='ZH7JNDM75ZPKNSXOPGENYV' where id=7; -update noar ti set v0='ZH7JNDM75ZPKNSXOPGENYV' where id=7; -update noar tt set b2='T1MO7TLWKGNY4ELCKW0' where id=7; -update noar ti set b2='T1MO7TLWKGNY4ELCKW0' where id=7; -update noar tt set v0='BUNE0RBQ1BZHKPE' where id=8; -update noar ti set v0='BUNE0RBQ1BZHKPE' where id=8; -update noar tt set b0='079SASB411YF18C2L00ZFZW59WJCRC' where id=8; -update noar ti set b0='079SASB411YF18C2L00ZFZW59WJCRC' where id=8; -update noar tt set v0='HO92F0CTWJ27ZWXFX8RX782EAOPR2YQ' where id=8; -update noar ti set v0='HO92F0CTWJ27ZWXFX8RX782EAOPR2YQ' where id=8; -update noar tt set b1='TASLAWC7CR250B0W9SEQOCMLCHTHNV' where id=8; -update noar ti set b1='TASLAWC7CR250B0W9SEQOCMLCHTHNV' where id=8; -update noar tt set v0='GFM5181G1KR' where id=8; -update noar ti set v0='GFM5181G1KR' where id=8; -update noar tt set b2='EGGELRME' where id=8; -update noar ti set b2='EGGELRME' where id=8; -update noar tt set v0='NU' where id=9; -update noar ti set v0='NU' where id=9; -update noar tt set b0='WXQ' where id=9; -update noar ti set b0='WXQ' where id=9; -update noar tt set v0='LYAW83V0ESNKSV42' where id=9; -update noar ti set v0='LYAW83V0ESNKSV42' where id=9; -update noar tt set b1='Q30QVJU432J' where id=9; -update noar ti set b1='Q30QVJU432J' where id=9; -update noar tt set v0='Y4AM8CYHHHGIH58OOJGMPWT' where id=9; -update noar ti set v0='Y4AM8CYHHHGIH58OOJGMPWT' where id=9; -update noar tt set b2='PJ1KK9M8DISBU6R8NP7BQM03' where id=9; -update noar ti set b2='PJ1KK9M8DISBU6R8NP7BQM03' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -f0 int not null, -v0 varchar(32) not null, -b0 tinyblob not null, -b1 tinyblob not null, -b2 mediumblob not null -) engine=tokudb; -insert into tt values (1,0,'','','',''); -insert into tt values (2,0,'','','',''); -insert into tt values (3,0,'','','',''); -insert into tt values (4,0,'','','',''); -insert into tt values (5,0,'','','',''); -insert into tt values (6,0,'','','',''); -insert into tt values (7,0,'','','',''); -insert into tt values (8,0,'','','',''); -insert into tt values (9,0,'','','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='EBDMVSE8SRS7' where id=1; -update noar ti set v0='EBDMVSE8SRS7' where id=1; -update noar tt set b0='3LLM47LYOHNHCMTKWDDL7J0PI3' where id=1; -update noar ti set b0='3LLM47LYOHNHCMTKWDDL7J0PI3' where id=1; -update noar tt set v0='ISMD5S9F3YHP8N61T60QIRWRW2YYI8' where id=1; -update noar ti set v0='ISMD5S9F3YHP8N61T60QIRWRW2YYI8' where id=1; -update noar tt set b1='YPTNHMJ6DEG2Z' where id=1; -update noar ti set b1='YPTNHMJ6DEG2Z' where id=1; -update noar tt set v0='MT58845PR24AZKRA0CXGGK2VOW' where id=1; -update noar ti set v0='MT58845PR24AZKRA0CXGGK2VOW' where id=1; -update noar tt set b2='U5PJTBALJ6G6S3R1G5GBI2KY5GHBT' where id=1; -update noar ti set b2='U5PJTBALJ6G6S3R1G5GBI2KY5GHBT' where id=1; -update noar tt set v0='JL4YOZB838MTJPSX9YK5INP54D' where id=2; -update noar ti set v0='JL4YOZB838MTJPSX9YK5INP54D' where id=2; -update noar tt set b0='6JNJRKL8L' where id=2; -update noar ti set b0='6JNJRKL8L' where id=2; -update noar tt set v0='97B6OSWMVOJ7P' where id=2; -update noar ti set v0='97B6OSWMVOJ7P' where id=2; -update noar tt set b1='BBZHEEZ58' where id=2; -update noar ti set b1='BBZHEEZ58' where id=2; -update noar tt set v0='K8H4AEJIG88D6L54' where id=2; -update noar ti set v0='K8H4AEJIG88D6L54' where id=2; -update noar tt set b2='OBVWZ9IS75O7OXGIEAE' where id=2; -update noar ti set b2='OBVWZ9IS75O7OXGIEAE' where id=2; -update noar tt set v0='R5W6007CPK3SKCC197EKYF6IIML' where id=3; -update noar ti set v0='R5W6007CPK3SKCC197EKYF6IIML' where id=3; -update noar tt set b0='0RPTS8X76FNYKXJESBQ6IJCZJ6466DFQ' where id=3; -update noar ti set b0='0RPTS8X76FNYKXJESBQ6IJCZJ6466DFQ' where id=3; -update noar tt set v0='1QXF0V6' where id=3; -update noar ti set v0='1QXF0V6' where id=3; -update noar tt set b1='545MG8ERXEY0ES2GWU6' where id=3; -update noar ti set b1='545MG8ERXEY0ES2GWU6' where id=3; -update noar tt set v0='9OER' where id=3; -update noar ti set v0='9OER' where id=3; -update noar tt set b2='2XLQR2ZLSAAF1J' where id=3; -update noar ti set b2='2XLQR2ZLSAAF1J' where id=3; -update noar tt set v0='AIG6T' where id=4; -update noar ti set v0='AIG6T' where id=4; -update noar tt set b0='UAA3DJVM4A67LENS9IQE4O34DAAZHE' where id=4; -update noar ti set b0='UAA3DJVM4A67LENS9IQE4O34DAAZHE' where id=4; -update noar tt set v0='Z8MH6087LWNL' where id=4; -update noar ti set v0='Z8MH6087LWNL' where id=4; -update noar tt set b1='2TO7O2GWF1S' where id=4; -update noar ti set b1='2TO7O2GWF1S' where id=4; -update noar tt set v0='112DGTZZFIGU6UW' where id=4; -update noar ti set v0='112DGTZZFIGU6UW' where id=4; -update noar tt set b2='ZUX' where id=4; -update noar ti set b2='ZUX' where id=4; -update noar tt set v0='5R812U1J4KC3I98Q9CD4Z5' where id=5; -update noar ti set v0='5R812U1J4KC3I98Q9CD4Z5' where id=5; -update noar tt set b0='W19LR394V1PUNQ5TOST08LK4JJ81' where id=5; -update noar ti set b0='W19LR394V1PUNQ5TOST08LK4JJ81' where id=5; -update noar tt set v0='N046OAF7KWWTFCHAK7M1MNEFUX6' where id=5; -update noar ti set v0='N046OAF7KWWTFCHAK7M1MNEFUX6' where id=5; -update noar tt set b1='BEX90' where id=5; -update noar ti set b1='BEX90' where id=5; -update noar tt set v0='W6ZJC283GG6XDRKDA00CU' where id=5; -update noar ti set v0='W6ZJC283GG6XDRKDA00CU' where id=5; -update noar tt set b2='SW6YF65ZZR' where id=5; -update noar ti set b2='SW6YF65ZZR' where id=5; -update noar tt set v0='FN4SQB7CLT' where id=6; -update noar ti set v0='FN4SQB7CLT' where id=6; -update noar tt set b0='91ESNOZG2HT8W5C3IL61K' where id=6; -update noar ti set b0='91ESNOZG2HT8W5C3IL61K' where id=6; -update noar tt set v0='OA0GW' where id=6; -update noar ti set v0='OA0GW' where id=6; -update noar tt set b1='KYB42T420M2S0RG5MVHEH8' where id=6; -update noar ti set b1='KYB42T420M2S0RG5MVHEH8' where id=6; -update noar tt set v0='SNXZDT6LXH' where id=6; -update noar ti set v0='SNXZDT6LXH' where id=6; -update noar tt set b2='3VXMULO4' where id=6; -update noar ti set b2='3VXMULO4' where id=6; -update noar tt set v0='24X59TQ4AO7TXEA8N' where id=7; -update noar ti set v0='24X59TQ4AO7TXEA8N' where id=7; -update noar tt set b0='OJNXGIEWCEJP0BO2ETUL2DRH3254VQ3' where id=7; -update noar ti set b0='OJNXGIEWCEJP0BO2ETUL2DRH3254VQ3' where id=7; -update noar tt set v0='C4ED5SOI' where id=7; -update noar ti set v0='C4ED5SOI' where id=7; -update noar tt set b1='FDEMF79SMDVEDRZV' where id=7; -update noar ti set b1='FDEMF79SMDVEDRZV' where id=7; -update noar tt set v0='45NRX77NHZ9DPO91YW24SFVC7R6PJ' where id=7; -update noar ti set v0='45NRX77NHZ9DPO91YW24SFVC7R6PJ' where id=7; -update noar tt set b2='H5DO1XGPAND5QL9ID' where id=7; -update noar ti set b2='H5DO1XGPAND5QL9ID' where id=7; -update noar tt set v0='735' where id=8; -update noar ti set v0='735' where id=8; -update noar tt set b0='F33F1LGLFK6MISSLGLQNIESWEGGNC59C' where id=8; -update noar ti set b0='F33F1LGLFK6MISSLGLQNIESWEGGNC59C' where id=8; -update noar tt set v0='Z74TECDZ0XQHY6B51AFC8B7G3A09GG2F' where id=8; -update noar ti set v0='Z74TECDZ0XQHY6B51AFC8B7G3A09GG2F' where id=8; -update noar tt set b1='OWZBVCAL9IARJLEV7J9RUGC' where id=8; -update noar ti set b1='OWZBVCAL9IARJLEV7J9RUGC' where id=8; -update noar tt set v0='HSG8G82JQIJEMQUMZMQ5ILG1UW' where id=8; -update noar ti set v0='HSG8G82JQIJEMQUMZMQ5ILG1UW' where id=8; -update noar tt set b2='1LZKUV2MNSKPN' where id=8; -update noar ti set b2='1LZKUV2MNSKPN' where id=8; -update noar tt set v0='1KMVQ13VKUTNUD8' where id=9; -update noar ti set v0='1KMVQ13VKUTNUD8' where id=9; -update noar tt set b0='8P7A9S32XDJZT44BQFQXMUMQ72' where id=9; -update noar ti set b0='8P7A9S32XDJZT44BQFQXMUMQ72' where id=9; -update noar tt set v0='HN7EL' where id=9; -update noar ti set v0='HN7EL' where id=9; -update noar tt set b1='YR8SBTP58NJMXP5BV24OL0K5B' where id=9; -update noar ti set b1='YR8SBTP58NJMXP5BV24OL0K5B' where id=9; -update noar tt set v0='MI782QHDFKDKX866T9KBZ09XVFJ' where id=9; -update noar ti set v0='MI782QHDFKDKX866T9KBZ09XVFJ' where id=9; -update noar tt set b2='9RE0JEAC4TGJ' where id=9; -update noar ti set b2='9RE0JEAC4TGJ' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -f0 int not null, -v0 varchar(256) not null, -b0 tinyblob not null, -b1 tinyblob not null, -b2 mediumblob not null -) engine=tokudb; -insert into tt values (1,0,'','','',''); -insert into tt values (2,0,'','','',''); -insert into tt values (3,0,'','','',''); -insert into tt values (4,0,'','','',''); -insert into tt values (5,0,'','','',''); -insert into tt values (6,0,'','','',''); -insert into tt values (7,0,'','','',''); -insert into tt values (8,0,'','','',''); -insert into tt values (9,0,'','','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='K8NSPJ189F8KM6OROEJOJ1NMIV9Y8K6' where id=1; -update noar ti set v0='K8NSPJ189F8KM6OROEJOJ1NMIV9Y8K6' where id=1; -update noar tt set b0='6LMF64A8OS2X3' where id=1; -update noar ti set b0='6LMF64A8OS2X3' where id=1; -update noar tt set v0='NNI1BGFAA9OM1JWZHRSDSL2KUVM44FI' where id=1; -update noar ti set v0='NNI1BGFAA9OM1JWZHRSDSL2KUVM44FI' where id=1; -update noar tt set b1='ZBROJ6Q3HRIT4GZ9V' where id=1; -update noar ti set b1='ZBROJ6Q3HRIT4GZ9V' where id=1; -update noar tt set v0='Q11983622ERSVR05GIPBXR' where id=1; -update noar ti set v0='Q11983622ERSVR05GIPBXR' where id=1; -update noar tt set b2='KN7KF' where id=1; -update noar ti set b2='KN7KF' where id=1; -update noar tt set v0='SB5ISHJJV44VO77GE8SKA7139TC38OL' where id=2; -update noar ti set v0='SB5ISHJJV44VO77GE8SKA7139TC38OL' where id=2; -update noar tt set b0='53Z8NQIBR7D10BD414BY' where id=2; -update noar ti set b0='53Z8NQIBR7D10BD414BY' where id=2; -update noar tt set v0='STPDGQUQ0LAO6SA402T1P8' where id=2; -update noar ti set v0='STPDGQUQ0LAO6SA402T1P8' where id=2; -update noar tt set b1='MKEXV3R8IK08W2J0QYJU362' where id=2; -update noar ti set b1='MKEXV3R8IK08W2J0QYJU362' where id=2; -update noar tt set v0='AP6Y9D9785T6W7FK6O1FPMGQOTLSWD' where id=2; -update noar ti set v0='AP6Y9D9785T6W7FK6O1FPMGQOTLSWD' where id=2; -update noar tt set b2='G59NTPAVZ95H2I82Q5B' where id=2; -update noar ti set b2='G59NTPAVZ95H2I82Q5B' where id=2; -update noar tt set v0='P7009TG4BTBWX' where id=3; -update noar ti set v0='P7009TG4BTBWX' where id=3; -update noar tt set b0='0SABYIY6HXY6M' where id=3; -update noar ti set b0='0SABYIY6HXY6M' where id=3; -update noar tt set v0='089COAGUJXOHIHSX9Y1VOR1O6' where id=3; -update noar ti set v0='089COAGUJXOHIHSX9Y1VOR1O6' where id=3; -update noar tt set b1='KWQEBDL877LC' where id=3; -update noar ti set b1='KWQEBDL877LC' where id=3; -update noar tt set v0='Y711VK8VM4KZYRYQB2CJG8J36' where id=3; -update noar ti set v0='Y711VK8VM4KZYRYQB2CJG8J36' where id=3; -update noar tt set b2='ZWXUKT4BQBTER9N6V' where id=3; -update noar ti set b2='ZWXUKT4BQBTER9N6V' where id=3; -update noar tt set v0='8TH9CZFHVO6LTLFZB73M7Q' where id=4; -update noar ti set v0='8TH9CZFHVO6LTLFZB73M7Q' where id=4; -update noar tt set b0='DPO8UJ6ZHYN3J0BL92' where id=4; -update noar ti set b0='DPO8UJ6ZHYN3J0BL92' where id=4; -update noar tt set v0='E2N' where id=4; -update noar ti set v0='E2N' where id=4; -update noar tt set b1='HBOUE8ABT5Q5DBGKN' where id=4; -update noar ti set b1='HBOUE8ABT5Q5DBGKN' where id=4; -update noar tt set v0='C6DA97JFDC' where id=4; -update noar ti set v0='C6DA97JFDC' where id=4; -update noar tt set b2='KJ47WRCHX9CDVXU99LMU' where id=4; -update noar ti set b2='KJ47WRCHX9CDVXU99LMU' where id=4; -update noar tt set v0='XFR3J' where id=5; -update noar ti set v0='XFR3J' where id=5; -update noar tt set b0='P78MA' where id=5; -update noar ti set b0='P78MA' where id=5; -update noar tt set v0='VGJFEI8BSG3VHUBNEPTI' where id=5; -update noar ti set v0='VGJFEI8BSG3VHUBNEPTI' where id=5; -update noar tt set b1='3EG2W3DYKCVK' where id=5; -update noar ti set b1='3EG2W3DYKCVK' where id=5; -update noar tt set v0='7M8LRFW9XOL945G' where id=5; -update noar ti set v0='7M8LRFW9XOL945G' where id=5; -update noar tt set b2='92LZO2S465NJ3ZZNVTH' where id=5; -update noar ti set b2='92LZO2S465NJ3ZZNVTH' where id=5; -update noar tt set v0='E5KTDNHV8YRLR8MS185F886N' where id=6; -update noar ti set v0='E5KTDNHV8YRLR8MS185F886N' where id=6; -update noar tt set b0='84W3KV27G41M470O5UM2MV58' where id=6; -update noar ti set b0='84W3KV27G41M470O5UM2MV58' where id=6; -update noar tt set v0='8WL1S7VOITW3A0V9EKAYZ5WSH5AVABKI' where id=6; -update noar ti set v0='8WL1S7VOITW3A0V9EKAYZ5WSH5AVABKI' where id=6; -update noar tt set b1='HVAUU0T8RUA7KFWQHXH102UCQZNP' where id=6; -update noar ti set b1='HVAUU0T8RUA7KFWQHXH102UCQZNP' where id=6; -update noar tt set v0='YRBNYN9OQEX299P95WWZ16GG1XEU' where id=6; -update noar ti set v0='YRBNYN9OQEX299P95WWZ16GG1XEU' where id=6; -update noar tt set b2='1JZW6RL836Y0B' where id=6; -update noar ti set b2='1JZW6RL836Y0B' where id=6; -update noar tt set v0='9AO0PMC1U3NK5VU6Y0A' where id=7; -update noar ti set v0='9AO0PMC1U3NK5VU6Y0A' where id=7; -update noar tt set b0='DXED3P' where id=7; -update noar ti set b0='DXED3P' where id=7; -update noar tt set v0='N91HXSDSGQ8957CF4SH' where id=7; -update noar ti set v0='N91HXSDSGQ8957CF4SH' where id=7; -update noar tt set b1='19RTEBXJ' where id=7; -update noar ti set b1='19RTEBXJ' where id=7; -update noar tt set v0='NA583' where id=7; -update noar ti set v0='NA583' where id=7; -update noar tt set b2='A8PIRU08HHI8P4NH1H7M8' where id=7; -update noar ti set b2='A8PIRU08HHI8P4NH1H7M8' where id=7; -update noar tt set v0='TCKTNX00RS7OCBZS6R' where id=8; -update noar ti set v0='TCKTNX00RS7OCBZS6R' where id=8; -update noar tt set b0='PFH2ECI5PSYY5X6RVW' where id=8; -update noar ti set b0='PFH2ECI5PSYY5X6RVW' where id=8; -update noar tt set v0='ZJLFP22U5MOVF' where id=8; -update noar ti set v0='ZJLFP22U5MOVF' where id=8; -update noar tt set b1='89XI3QPR7JM7LJD596FDN' where id=8; -update noar ti set b1='89XI3QPR7JM7LJD596FDN' where id=8; -update noar tt set v0='DNMX5QSFKDQJ' where id=8; -update noar ti set v0='DNMX5QSFKDQJ' where id=8; -update noar tt set b2='PMANK0RF34GV' where id=8; -update noar ti set b2='PMANK0RF34GV' where id=8; -update noar tt set v0='CP9OR4' where id=9; -update noar ti set v0='CP9OR4' where id=9; -update noar tt set b0='UBARS9EYH43DRZ4RQJQIP1X2JP2CP' where id=9; -update noar ti set b0='UBARS9EYH43DRZ4RQJQIP1X2JP2CP' where id=9; -update noar tt set v0='CIXEAVKVXU' where id=9; -update noar ti set v0='CIXEAVKVXU' where id=9; -update noar tt set b1='S9RGTGFSCE8CUTA2ZTQ934BBPGG' where id=9; -update noar ti set b1='S9RGTGFSCE8CUTA2ZTQ934BBPGG' where id=9; -update noar tt set v0='O6TZ8JM8A4W1' where id=9; -update noar ti set v0='O6TZ8JM8A4W1' where id=9; -update noar tt set b2='3QWTT010XHC5UHLN4S06' where id=9; -update noar ti set b2='3QWTT010XHC5UHLN4S06' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -f0 int null, -v0 varchar(32) null, -b0 tinyblob null, -b1 tinyblob null, -b2 longblob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='IO183H14D1WS' where id=1; -update noar ti set v0='IO183H14D1WS' where id=1; -update noar tt set b0='4659HHPODFOX7H28I' where id=1; -update noar ti set b0='4659HHPODFOX7H28I' where id=1; -update noar tt set v0='V794014B20ZPL8UA93XN4D4GN452ISBM' where id=1; -update noar ti set v0='V794014B20ZPL8UA93XN4D4GN452ISBM' where id=1; -update noar tt set b1='NP' where id=1; -update noar ti set b1='NP' where id=1; -update noar tt set v0='HZD70LUSY' where id=1; -update noar ti set v0='HZD70LUSY' where id=1; -update noar tt set b2='2W7TW' where id=1; -update noar ti set b2='2W7TW' where id=1; -update noar tt set v0='LG5Y5UAYTY0JI' where id=2; -update noar ti set v0='LG5Y5UAYTY0JI' where id=2; -update noar tt set b0='LI0' where id=2; -update noar ti set b0='LI0' where id=2; -update noar tt set v0='V0PQLUP624SPBJTVPYY6LWZ' where id=2; -update noar ti set v0='V0PQLUP624SPBJTVPYY6LWZ' where id=2; -update noar tt set b1='FFGMF67N' where id=2; -update noar ti set b1='FFGMF67N' where id=2; -update noar tt set v0='9ILULRIJ49FOWO701RS8US6EN0CLC' where id=2; -update noar ti set v0='9ILULRIJ49FOWO701RS8US6EN0CLC' where id=2; -update noar tt set b2='R2XLNNPFM35QH9PTFG7429YES3' where id=2; -update noar ti set b2='R2XLNNPFM35QH9PTFG7429YES3' where id=2; -update noar tt set v0='GO60CLY8UW1IE5DMDM' where id=3; -update noar ti set v0='GO60CLY8UW1IE5DMDM' where id=3; -update noar tt set b0='G7HTHTB611JX19W6CETJPCTDYFTC5' where id=3; -update noar ti set b0='G7HTHTB611JX19W6CETJPCTDYFTC5' where id=3; -update noar tt set v0='FPR08WZUWZD' where id=3; -update noar ti set v0='FPR08WZUWZD' where id=3; -update noar tt set b1='RFELQ2O9XNWVT8E1AO43S7O' where id=3; -update noar ti set b1='RFELQ2O9XNWVT8E1AO43S7O' where id=3; -update noar tt set v0='6JCMUIRX4CDT8R5V334OSNEQ8C' where id=3; -update noar ti set v0='6JCMUIRX4CDT8R5V334OSNEQ8C' where id=3; -update noar tt set b2='1W0RNVBQ9UQT0BXI' where id=3; -update noar ti set b2='1W0RNVBQ9UQT0BXI' where id=3; -update noar tt set v0='RHM' where id=4; -update noar ti set v0='RHM' where id=4; -update noar tt set b0='8O1VS8JKLHNNVEI2VTQIVBIK0' where id=4; -update noar ti set b0='8O1VS8JKLHNNVEI2VTQIVBIK0' where id=4; -update noar tt set v0='F1Y45M' where id=4; -update noar ti set v0='F1Y45M' where id=4; -update noar tt set b1='0AISSMOOX1GNSOIUN7B4C2708U8U1' where id=4; -update noar ti set b1='0AISSMOOX1GNSOIUN7B4C2708U8U1' where id=4; -update noar tt set v0='4FPJ12U2KXUUF34UUCF2HA7SU' where id=4; -update noar ti set v0='4FPJ12U2KXUUF34UUCF2HA7SU' where id=4; -update noar tt set b2='KEL3VYHM' where id=4; -update noar ti set b2='KEL3VYHM' where id=4; -update noar tt set v0='YSR5UG5GCIWVQB1VKWW4O0HEPU57A2' where id=5; -update noar ti set v0='YSR5UG5GCIWVQB1VKWW4O0HEPU57A2' where id=5; -update noar tt set b0='OW8NRFQ7RUF4WW0' where id=5; -update noar ti set b0='OW8NRFQ7RUF4WW0' where id=5; -update noar tt set v0='ZSLIWZKVJWS0XXD' where id=5; -update noar ti set v0='ZSLIWZKVJWS0XXD' where id=5; -update noar tt set b1='TW5TC0P8LQ7LK41H3NDGL5CC' where id=5; -update noar ti set b1='TW5TC0P8LQ7LK41H3NDGL5CC' where id=5; -update noar tt set v0='CR' where id=5; -update noar ti set v0='CR' where id=5; -update noar tt set b2='3A62GE0' where id=5; -update noar ti set b2='3A62GE0' where id=5; -update noar tt set v0='JIT6Z9A8DFG084KW7G' where id=6; -update noar ti set v0='JIT6Z9A8DFG084KW7G' where id=6; -update noar tt set b0='HM' where id=6; -update noar ti set b0='HM' where id=6; -update noar tt set v0='WJH3UE76ZSG' where id=6; -update noar ti set v0='WJH3UE76ZSG' where id=6; -update noar tt set b1='4NGYH5TWD57ZRWRV' where id=6; -update noar ti set b1='4NGYH5TWD57ZRWRV' where id=6; -update noar tt set v0='119K6HXZD492URWUT1ZEIOG' where id=6; -update noar ti set v0='119K6HXZD492URWUT1ZEIOG' where id=6; -update noar tt set b2='RCO3B5MT2DGXQZ' where id=6; -update noar ti set b2='RCO3B5MT2DGXQZ' where id=6; -update noar tt set v0='OJ291GEPK1RMR07OFH9' where id=7; -update noar ti set v0='OJ291GEPK1RMR07OFH9' where id=7; -update noar tt set b0='H24GEC0NZHAGY4QC757OI2QNFY74' where id=7; -update noar ti set b0='H24GEC0NZHAGY4QC757OI2QNFY74' where id=7; -update noar tt set v0='3P19Y7OJYE' where id=7; -update noar ti set v0='3P19Y7OJYE' where id=7; -update noar tt set b1='JH' where id=7; -update noar ti set b1='JH' where id=7; -update noar tt set v0='5' where id=7; -update noar ti set v0='5' where id=7; -update noar tt set b2='TAYUPP3H7J5RE70I8WWPKXEAA' where id=7; -update noar ti set b2='TAYUPP3H7J5RE70I8WWPKXEAA' where id=7; -update noar tt set v0='CFG0DPZS0CMB' where id=8; -update noar ti set v0='CFG0DPZS0CMB' where id=8; -update noar tt set b0='J6GJABCR9SJKK6BO5' where id=8; -update noar ti set b0='J6GJABCR9SJKK6BO5' where id=8; -update noar tt set v0='ERVZ4EV9HZXZS6YTS9P' where id=8; -update noar ti set v0='ERVZ4EV9HZXZS6YTS9P' where id=8; -update noar tt set b1='47TDQS84MGAB9Z4TC' where id=8; -update noar ti set b1='47TDQS84MGAB9Z4TC' where id=8; -update noar tt set v0='8GNSVLA8IHMYTUOYIM' where id=8; -update noar ti set v0='8GNSVLA8IHMYTUOYIM' where id=8; -update noar tt set b2='O475F' where id=8; -update noar ti set b2='O475F' where id=8; -update noar tt set v0='GG4GDZ4CSPDY2MGGS6L9QBH5W6' where id=9; -update noar ti set v0='GG4GDZ4CSPDY2MGGS6L9QBH5W6' where id=9; -update noar tt set b0='GES24NIWZ0FJ09HTB8' where id=9; -update noar ti set b0='GES24NIWZ0FJ09HTB8' where id=9; -update noar tt set v0='S2NHJIET' where id=9; -update noar ti set v0='S2NHJIET' where id=9; -update noar tt set b1='LZSCMC5B3MGLGS68WDDLX122GHBW8WR' where id=9; -update noar ti set b1='LZSCMC5B3MGLGS68WDDLX122GHBW8WR' where id=9; -update noar tt set v0='NNRHRO87YKM9ZHMXIXY94GO6T84EXDU7' where id=9; -update noar ti set v0='NNRHRO87YKM9ZHMXIXY94GO6T84EXDU7' where id=9; -update noar tt set b2='DUYWTHBGQTFWY0F7WBBRUIKL9CA5' where id=9; -update noar ti set b2='DUYWTHBGQTFWY0F7WBBRUIKL9CA5' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -f0 int null, -v0 varchar(256) null, -b0 tinyblob null, -b1 tinyblob null, -b2 longblob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='FQJEBWZ5H9QATEP' where id=1; -update noar ti set v0='FQJEBWZ5H9QATEP' where id=1; -update noar tt set b0='94KXNTAJHCFX3JG458XUZGAGAFFX' where id=1; -update noar ti set b0='94KXNTAJHCFX3JG458XUZGAGAFFX' where id=1; -update noar tt set v0='S4WX0KP4IYHF7WPV7WLVOZ79K81' where id=1; -update noar ti set v0='S4WX0KP4IYHF7WPV7WLVOZ79K81' where id=1; -update noar tt set b1='NF' where id=1; -update noar ti set b1='NF' where id=1; -update noar tt set v0='FYD1C8XIBYI16SHIVJJYNPY6P' where id=1; -update noar ti set v0='FYD1C8XIBYI16SHIVJJYNPY6P' where id=1; -update noar tt set b2='YXXQPI18CCSAAKIC5R3N52LUMGF7AJW' where id=1; -update noar ti set b2='YXXQPI18CCSAAKIC5R3N52LUMGF7AJW' where id=1; -update noar tt set v0='JRPGR9ZV6VQLXX4UZ5S229ZQB0SZ2' where id=2; -update noar ti set v0='JRPGR9ZV6VQLXX4UZ5S229ZQB0SZ2' where id=2; -update noar tt set b0='WEN30AFXA6DLGXWGAZ' where id=2; -update noar ti set b0='WEN30AFXA6DLGXWGAZ' where id=2; -update noar tt set v0='VP0W5C5TY' where id=2; -update noar ti set v0='VP0W5C5TY' where id=2; -update noar tt set b1='SX79T2M' where id=2; -update noar ti set b1='SX79T2M' where id=2; -update noar tt set v0='SMA1R3STCSPCR84YO8J9C26L2' where id=2; -update noar ti set v0='SMA1R3STCSPCR84YO8J9C26L2' where id=2; -update noar tt set b2='UZFK1OQXFUZG' where id=2; -update noar ti set b2='UZFK1OQXFUZG' where id=2; -update noar tt set v0='EGWWLFQJ0B1' where id=3; -update noar ti set v0='EGWWLFQJ0B1' where id=3; -update noar tt set b0='4V8RMAL' where id=3; -update noar ti set b0='4V8RMAL' where id=3; -update noar tt set v0='72GDUYZ86W8RJQYXL6QEE' where id=3; -update noar ti set v0='72GDUYZ86W8RJQYXL6QEE' where id=3; -update noar tt set b1='BZKLCI' where id=3; -update noar ti set b1='BZKLCI' where id=3; -update noar tt set v0='IHBKYL1BDZ6UT672YO' where id=3; -update noar ti set v0='IHBKYL1BDZ6UT672YO' where id=3; -update noar tt set b2='ULBHM2GQSZE57FYYBC7R2' where id=3; -update noar ti set b2='ULBHM2GQSZE57FYYBC7R2' where id=3; -update noar tt set v0='KX1L5YMHYO5TWA2NFF2ZC' where id=4; -update noar ti set v0='KX1L5YMHYO5TWA2NFF2ZC' where id=4; -update noar tt set b0='V8DA0B9D' where id=4; -update noar ti set b0='V8DA0B9D' where id=4; -update noar tt set v0='J7FI7Z46YLY5591JREZCXU55L7' where id=4; -update noar ti set v0='J7FI7Z46YLY5591JREZCXU55L7' where id=4; -update noar tt set b1='LYMOJ2NBZ3QSJHPUK2L2' where id=4; -update noar ti set b1='LYMOJ2NBZ3QSJHPUK2L2' where id=4; -update noar tt set v0='C1PDF82HCNUMTX7TD0IAUGU8781' where id=4; -update noar ti set v0='C1PDF82HCNUMTX7TD0IAUGU8781' where id=4; -update noar tt set b2='SHV4DZNX2T26CR0BA7GWG5139PTNG' where id=4; -update noar ti set b2='SHV4DZNX2T26CR0BA7GWG5139PTNG' where id=4; -update noar tt set v0='T772XEVGTFV' where id=5; -update noar ti set v0='T772XEVGTFV' where id=5; -update noar tt set b0='CFMKN8LUFBEBNRE4FJG7V7YU17IIE' where id=5; -update noar ti set b0='CFMKN8LUFBEBNRE4FJG7V7YU17IIE' where id=5; -update noar tt set v0='D' where id=5; -update noar ti set v0='D' where id=5; -update noar tt set b1='B6P2Y36S7LV04DBT' where id=5; -update noar ti set b1='B6P2Y36S7LV04DBT' where id=5; -update noar tt set v0='FUSTNCDCMYB00USXC9SG' where id=5; -update noar ti set v0='FUSTNCDCMYB00USXC9SG' where id=5; -update noar tt set b2='45X6B9C9CKO7ACSDYWF2C0UPEWBVD' where id=5; -update noar ti set b2='45X6B9C9CKO7ACSDYWF2C0UPEWBVD' where id=5; -update noar tt set v0='YRF' where id=6; -update noar ti set v0='YRF' where id=6; -update noar tt set b0='FIT19WCTO' where id=6; -update noar ti set b0='FIT19WCTO' where id=6; -update noar tt set v0='HUT7DKH54G3SEE08R8U1SCOJY' where id=6; -update noar ti set v0='HUT7DKH54G3SEE08R8U1SCOJY' where id=6; -update noar tt set b1='K5PWHFU4QXCT8PULYCJN845' where id=6; -update noar ti set b1='K5PWHFU4QXCT8PULYCJN845' where id=6; -update noar tt set v0='1ZV6T12OVT0O9J7WKV' where id=6; -update noar ti set v0='1ZV6T12OVT0O9J7WKV' where id=6; -update noar tt set b2='3AMDBYZFPO2GDDZGHKC7GBNJ' where id=6; -update noar ti set b2='3AMDBYZFPO2GDDZGHKC7GBNJ' where id=6; -update noar tt set v0='62649G70QT23G598IR5CKLPND4SFUKQ' where id=7; -update noar ti set v0='62649G70QT23G598IR5CKLPND4SFUKQ' where id=7; -update noar tt set b0='Q7PI30WPVLNLW00' where id=7; -update noar ti set b0='Q7PI30WPVLNLW00' where id=7; -update noar tt set v0='U4DU6U03LW0GDV' where id=7; -update noar ti set v0='U4DU6U03LW0GDV' where id=7; -update noar tt set b1='581AR1P21X8HKGJYNDH0AGXB' where id=7; -update noar ti set b1='581AR1P21X8HKGJYNDH0AGXB' where id=7; -update noar tt set v0='OEOCXX8MB38GTMW' where id=7; -update noar ti set v0='OEOCXX8MB38GTMW' where id=7; -update noar tt set b2='Y6G8ZWVI5EGH7NMJ326OQKJWZMCCO5IA' where id=7; -update noar ti set b2='Y6G8ZWVI5EGH7NMJ326OQKJWZMCCO5IA' where id=7; -update noar tt set v0='CM8RUHC2HEH2MSY47BATWMXMXIWV' where id=8; -update noar ti set v0='CM8RUHC2HEH2MSY47BATWMXMXIWV' where id=8; -update noar tt set b0='J48HOSOIR8ITD' where id=8; -update noar ti set b0='J48HOSOIR8ITD' where id=8; -update noar tt set v0='CJ7DM7VIS5FVFFTSC1A9T3IPOX512' where id=8; -update noar ti set v0='CJ7DM7VIS5FVFFTSC1A9T3IPOX512' where id=8; -update noar tt set b1='DDDA0C1KCQAGLX02PUPYX9JOTH1Q4WBY' where id=8; -update noar ti set b1='DDDA0C1KCQAGLX02PUPYX9JOTH1Q4WBY' where id=8; -update noar tt set v0='5WMFIGARIK08F4WOA1' where id=8; -update noar ti set v0='5WMFIGARIK08F4WOA1' where id=8; -update noar tt set b2='3C74W5EAAU06EEK745CEYPKEMQD' where id=8; -update noar ti set b2='3C74W5EAAU06EEK745CEYPKEMQD' where id=8; -update noar tt set v0='8YQL4C2UA838FLPTK8' where id=9; -update noar ti set v0='8YQL4C2UA838FLPTK8' where id=9; -update noar tt set b0='6MIA72A297ZYL2VLGDJ3HD1XR' where id=9; -update noar ti set b0='6MIA72A297ZYL2VLGDJ3HD1XR' where id=9; -update noar tt set v0='MW5PFU7AUWFDGRE6' where id=9; -update noar ti set v0='MW5PFU7AUWFDGRE6' where id=9; -update noar tt set b1='OTBG4W5FF1ZY6OML4FVJP1H14IBH' where id=9; -update noar ti set b1='OTBG4W5FF1ZY6OML4FVJP1H14IBH' where id=9; -update noar tt set v0='UGMRBVTEORP6EM3TJ' where id=9; -update noar ti set v0='UGMRBVTEORP6EM3TJ' where id=9; -update noar tt set b2='V' where id=9; -update noar ti set b2='V' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -f0 int not null, -v0 varchar(32) not null, -b0 tinyblob not null, -b1 tinyblob not null, -b2 longblob not null -) engine=tokudb; -insert into tt values (1,0,'','','',''); -insert into tt values (2,0,'','','',''); -insert into tt values (3,0,'','','',''); -insert into tt values (4,0,'','','',''); -insert into tt values (5,0,'','','',''); -insert into tt values (6,0,'','','',''); -insert into tt values (7,0,'','','',''); -insert into tt values (8,0,'','','',''); -insert into tt values (9,0,'','','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='7XTT73TB6O2ZROIS6Y' where id=1; -update noar ti set v0='7XTT73TB6O2ZROIS6Y' where id=1; -update noar tt set b0='Q7KGHH' where id=1; -update noar ti set b0='Q7KGHH' where id=1; -update noar tt set v0='XY1VOS09GPAWLXEETTVSP3T0' where id=1; -update noar ti set v0='XY1VOS09GPAWLXEETTVSP3T0' where id=1; -update noar tt set b1='1TK8D' where id=1; -update noar ti set b1='1TK8D' where id=1; -update noar tt set v0='16XA06KSW6NIT' where id=1; -update noar ti set v0='16XA06KSW6NIT' where id=1; -update noar tt set b2='7T3DDNQPF4OYECMNFGX5OXJF' where id=1; -update noar ti set b2='7T3DDNQPF4OYECMNFGX5OXJF' where id=1; -update noar tt set v0='IIN4XULFRSR58UT4H6XTFOFSNAYMMQBB' where id=2; -update noar ti set v0='IIN4XULFRSR58UT4H6XTFOFSNAYMMQBB' where id=2; -update noar tt set b0='ZFCOTEUO684CUJBGJSDWO7W' where id=2; -update noar ti set b0='ZFCOTEUO684CUJBGJSDWO7W' where id=2; -update noar tt set v0='X9FHNE7G6YYWCBP9EWH8RD4W' where id=2; -update noar ti set v0='X9FHNE7G6YYWCBP9EWH8RD4W' where id=2; -update noar tt set b1='M4OYBT793CUJ1674PHUUEAM8J55MS' where id=2; -update noar ti set b1='M4OYBT793CUJ1674PHUUEAM8J55MS' where id=2; -update noar tt set v0='F' where id=2; -update noar ti set v0='F' where id=2; -update noar tt set b2='2GX93CUWKA7GKHTWMR' where id=2; -update noar ti set b2='2GX93CUWKA7GKHTWMR' where id=2; -update noar tt set v0='3S8UD79J7ZMYZ' where id=3; -update noar ti set v0='3S8UD79J7ZMYZ' where id=3; -update noar tt set b0='6TBMQGKGL2JMT' where id=3; -update noar ti set b0='6TBMQGKGL2JMT' where id=3; -update noar tt set v0='Z950E9IRHP5L1VTLMJ0MECLQC51' where id=3; -update noar ti set v0='Z950E9IRHP5L1VTLMJ0MECLQC51' where id=3; -update noar tt set b1='4TZ3B' where id=3; -update noar ti set b1='4TZ3B' where id=3; -update noar tt set v0='V' where id=3; -update noar ti set v0='V' where id=3; -update noar tt set b2='4GU1VTRD5GF87HNJPJYP2SXK0IRBQPY' where id=3; -update noar ti set b2='4GU1VTRD5GF87HNJPJYP2SXK0IRBQPY' where id=3; -update noar tt set v0='ECEYJOFA504OPSNOEAOJ' where id=4; -update noar ti set v0='ECEYJOFA504OPSNOEAOJ' where id=4; -update noar tt set b0='OUYV5F' where id=4; -update noar ti set b0='OUYV5F' where id=4; -update noar tt set v0='7Y6J6LXKONTTGEVEUA9Z' where id=4; -update noar ti set v0='7Y6J6LXKONTTGEVEUA9Z' where id=4; -update noar tt set b1='P3LW' where id=4; -update noar ti set b1='P3LW' where id=4; -update noar tt set v0='SZ38GAN2EM51' where id=4; -update noar ti set v0='SZ38GAN2EM51' where id=4; -update noar tt set b2='9E' where id=4; -update noar ti set b2='9E' where id=4; -update noar tt set v0='2' where id=5; -update noar ti set v0='2' where id=5; -update noar tt set b0='IF7YOOD8UCL7FL' where id=5; -update noar ti set b0='IF7YOOD8UCL7FL' where id=5; -update noar tt set v0='HUHXW5QJF7P' where id=5; -update noar ti set v0='HUHXW5QJF7P' where id=5; -update noar tt set b1='54I625COL1E' where id=5; -update noar ti set b1='54I625COL1E' where id=5; -update noar tt set v0='T61CCMJU0FWNX' where id=5; -update noar ti set v0='T61CCMJU0FWNX' where id=5; -update noar tt set b2='Y1G0RDSE184U3EI21NQWJS7' where id=5; -update noar ti set b2='Y1G0RDSE184U3EI21NQWJS7' where id=5; -update noar tt set v0='HUHMVG3C6KFUIWZYPSJWAJFILVTWW0' where id=6; -update noar ti set v0='HUHMVG3C6KFUIWZYPSJWAJFILVTWW0' where id=6; -update noar tt set b0='SSS4' where id=6; -update noar ti set b0='SSS4' where id=6; -update noar tt set v0='22Q3QFMX9O6EK8JH5J' where id=6; -update noar ti set v0='22Q3QFMX9O6EK8JH5J' where id=6; -update noar tt set b1='GFQYG61MUE3BO5' where id=6; -update noar ti set b1='GFQYG61MUE3BO5' where id=6; -update noar tt set v0='MJ6RUYCTN1B04IXPBI6K7VONB3RZO' where id=6; -update noar ti set v0='MJ6RUYCTN1B04IXPBI6K7VONB3RZO' where id=6; -update noar tt set b2='QC1UN0X0ZDF6YK' where id=6; -update noar ti set b2='QC1UN0X0ZDF6YK' where id=6; -update noar tt set v0='16GAUCR1A7FZV3BN0' where id=7; -update noar ti set v0='16GAUCR1A7FZV3BN0' where id=7; -update noar tt set b0='4S71LZQD1MV4PLZ9K273TF0I' where id=7; -update noar ti set b0='4S71LZQD1MV4PLZ9K273TF0I' where id=7; -update noar tt set v0='B3DX22JT9KMPOMG4YQNQSEZD8I' where id=7; -update noar ti set v0='B3DX22JT9KMPOMG4YQNQSEZD8I' where id=7; -update noar tt set b1='901DP42WV97QFW1NLYDRR88AWP' where id=7; -update noar ti set b1='901DP42WV97QFW1NLYDRR88AWP' where id=7; -update noar tt set v0='RH1H99MQBOWGDNA6F0ZCAU0EHY' where id=7; -update noar ti set v0='RH1H99MQBOWGDNA6F0ZCAU0EHY' where id=7; -update noar tt set b2='UTJ24G95SZK28WIZTEG7FQAS2G5AFH' where id=7; -update noar ti set b2='UTJ24G95SZK28WIZTEG7FQAS2G5AFH' where id=7; -update noar tt set v0='5INBHYAFHU6UNXWXW82' where id=8; -update noar ti set v0='5INBHYAFHU6UNXWXW82' where id=8; -update noar tt set b0='R8' where id=8; -update noar ti set b0='R8' where id=8; -update noar tt set v0='86J3XWPQBDAE7DH6N4BSWCNKQ0DSICR4' where id=8; -update noar ti set v0='86J3XWPQBDAE7DH6N4BSWCNKQ0DSICR4' where id=8; -update noar tt set b1='XO9ADPIOC15W65' where id=8; -update noar ti set b1='XO9ADPIOC15W65' where id=8; -update noar tt set v0='ZWX' where id=8; -update noar ti set v0='ZWX' where id=8; -update noar tt set b2='DI02PG5UHYGW26QIP7RFN5' where id=8; -update noar ti set b2='DI02PG5UHYGW26QIP7RFN5' where id=8; -update noar tt set v0='23B' where id=9; -update noar ti set v0='23B' where id=9; -update noar tt set b0='OK7CO7B605S05ZEA2R' where id=9; -update noar ti set b0='OK7CO7B605S05ZEA2R' where id=9; -update noar tt set v0='MRAVTBHQJ2KMBQ' where id=9; -update noar ti set v0='MRAVTBHQJ2KMBQ' where id=9; -update noar tt set b1='VBVVXR' where id=9; -update noar ti set b1='VBVVXR' where id=9; -update noar tt set v0='WVYRUL7OKPOCAG' where id=9; -update noar ti set v0='WVYRUL7OKPOCAG' where id=9; -update noar tt set b2='AZYZ2TNI4' where id=9; -update noar ti set b2='AZYZ2TNI4' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -f0 int not null, -v0 varchar(256) not null, -b0 tinyblob not null, -b1 tinyblob not null, -b2 longblob not null -) engine=tokudb; -insert into tt values (1,0,'','','',''); -insert into tt values (2,0,'','','',''); -insert into tt values (3,0,'','','',''); -insert into tt values (4,0,'','','',''); -insert into tt values (5,0,'','','',''); -insert into tt values (6,0,'','','',''); -insert into tt values (7,0,'','','',''); -insert into tt values (8,0,'','','',''); -insert into tt values (9,0,'','','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='P8ERNEXJX0' where id=1; -update noar ti set v0='P8ERNEXJX0' where id=1; -update noar tt set b0='46LLDX6PU5W3C1AK8' where id=1; -update noar ti set b0='46LLDX6PU5W3C1AK8' where id=1; -update noar tt set v0='89DEUI' where id=1; -update noar ti set v0='89DEUI' where id=1; -update noar tt set b1='51OIFUHAFC' where id=1; -update noar ti set b1='51OIFUHAFC' where id=1; -update noar tt set v0='YDG1IG3BOYA8D9J7LNZM' where id=1; -update noar ti set v0='YDG1IG3BOYA8D9J7LNZM' where id=1; -update noar tt set b2='Q31K7LUKOKN63WE0536ZJVXE4VFGYJL' where id=1; -update noar ti set b2='Q31K7LUKOKN63WE0536ZJVXE4VFGYJL' where id=1; -update noar tt set v0='V' where id=2; -update noar ti set v0='V' where id=2; -update noar tt set b0='4' where id=2; -update noar ti set b0='4' where id=2; -update noar tt set v0='HF3LV51L9NUVQ16H' where id=2; -update noar ti set v0='HF3LV51L9NUVQ16H' where id=2; -update noar tt set b1='9TLL9T' where id=2; -update noar ti set b1='9TLL9T' where id=2; -update noar tt set v0='NJD6IG' where id=2; -update noar ti set v0='NJD6IG' where id=2; -update noar tt set b2='ZZ0LN5ILJ7E1WWMME26J6BFR5' where id=2; -update noar ti set b2='ZZ0LN5ILJ7E1WWMME26J6BFR5' where id=2; -update noar tt set v0='BMZSSN5DZ68AAZHDFVDKT6AOIN4' where id=3; -update noar ti set v0='BMZSSN5DZ68AAZHDFVDKT6AOIN4' where id=3; -update noar tt set b0='IYBES7D33F' where id=3; -update noar ti set b0='IYBES7D33F' where id=3; -update noar tt set v0='VRV9J3OELG82TP49NIIL93K0ILZK8OEH' where id=3; -update noar ti set v0='VRV9J3OELG82TP49NIIL93K0ILZK8OEH' where id=3; -update noar tt set b1='BAZMSYZ9' where id=3; -update noar ti set b1='BAZMSYZ9' where id=3; -update noar tt set v0='71TVIPM60CDQ' where id=3; -update noar ti set v0='71TVIPM60CDQ' where id=3; -update noar tt set b2='PQ0CQ9TQJ30QHIE6VMFKUZ0VM24' where id=3; -update noar ti set b2='PQ0CQ9TQJ30QHIE6VMFKUZ0VM24' where id=3; -update noar tt set v0='FK2QS2M38MG4SB' where id=4; -update noar ti set v0='FK2QS2M38MG4SB' where id=4; -update noar tt set b0='BJ53EUSXGLSJT2DK0HRSTKVNOC' where id=4; -update noar ti set b0='BJ53EUSXGLSJT2DK0HRSTKVNOC' where id=4; -update noar tt set v0='AW0JKGZG' where id=4; -update noar ti set v0='AW0JKGZG' where id=4; -update noar tt set b1='QYF22DIANJZJDLW' where id=4; -update noar ti set b1='QYF22DIANJZJDLW' where id=4; -update noar tt set v0='UOKB2TZJGOAY7W0CCY13IM6DCN83RNV' where id=4; -update noar ti set v0='UOKB2TZJGOAY7W0CCY13IM6DCN83RNV' where id=4; -update noar tt set b2='QFGB82ROQMFRJ' where id=4; -update noar ti set b2='QFGB82ROQMFRJ' where id=4; -update noar tt set v0='GCT1' where id=5; -update noar ti set v0='GCT1' where id=5; -update noar tt set b0='4AY3G3TMA6K1KLOG' where id=5; -update noar ti set b0='4AY3G3TMA6K1KLOG' where id=5; -update noar tt set v0='E2NQGKV9NQ' where id=5; -update noar ti set v0='E2NQGKV9NQ' where id=5; -update noar tt set b1='0FZXXTL56A9FDWQWTV8VDE5' where id=5; -update noar ti set b1='0FZXXTL56A9FDWQWTV8VDE5' where id=5; -update noar tt set v0='2' where id=5; -update noar ti set v0='2' where id=5; -update noar tt set b2='XNHFGL9O4331TJ8O5WGJ' where id=5; -update noar ti set b2='XNHFGL9O4331TJ8O5WGJ' where id=5; -update noar tt set v0='3WN2' where id=6; -update noar ti set v0='3WN2' where id=6; -update noar tt set b0='4OHP6FSU5QAPFHYGW3' where id=6; -update noar ti set b0='4OHP6FSU5QAPFHYGW3' where id=6; -update noar tt set v0='6LZLS7JDJZMXTEL09' where id=6; -update noar ti set v0='6LZLS7JDJZMXTEL09' where id=6; -update noar tt set b1='E56W' where id=6; -update noar ti set b1='E56W' where id=6; -update noar tt set v0='Z' where id=6; -update noar ti set v0='Z' where id=6; -update noar tt set b2='QL4P44RMBNPTM1BGXORDXA' where id=6; -update noar ti set b2='QL4P44RMBNPTM1BGXORDXA' where id=6; -update noar tt set v0='V72KAJT49Q3XNJJH3BZ38UIDBR' where id=7; -update noar ti set v0='V72KAJT49Q3XNJJH3BZ38UIDBR' where id=7; -update noar tt set b0='A8ZHTF28G2ESEKC2P' where id=7; -update noar ti set b0='A8ZHTF28G2ESEKC2P' where id=7; -update noar tt set v0='MSU2TK7T7X8H2PO002' where id=7; -update noar ti set v0='MSU2TK7T7X8H2PO002' where id=7; -update noar tt set b1='OEIVQ9JNR12TLNS9F9TRBO' where id=7; -update noar ti set b1='OEIVQ9JNR12TLNS9F9TRBO' where id=7; -update noar tt set v0='ORMWQRG' where id=7; -update noar ti set v0='ORMWQRG' where id=7; -update noar tt set b2='2TGJ' where id=7; -update noar ti set b2='2TGJ' where id=7; -update noar tt set v0='DM8NIYDI3UY7VYOP6CA' where id=8; -update noar ti set v0='DM8NIYDI3UY7VYOP6CA' where id=8; -update noar tt set b0='0R8SCQQHS2' where id=8; -update noar ti set b0='0R8SCQQHS2' where id=8; -update noar tt set v0='73V4GP8ZGHQUPGHJQNEMSNB6ZDC09RB' where id=8; -update noar ti set v0='73V4GP8ZGHQUPGHJQNEMSNB6ZDC09RB' where id=8; -update noar tt set b1='T5PUHSVI2D42NGLBRORMZ5QYC5DTXTZ' where id=8; -update noar ti set b1='T5PUHSVI2D42NGLBRORMZ5QYC5DTXTZ' where id=8; -update noar tt set v0='VQFLD8QM79CJWYS' where id=8; -update noar ti set v0='VQFLD8QM79CJWYS' where id=8; -update noar tt set b2='U71T03E3B7RY' where id=8; -update noar ti set b2='U71T03E3B7RY' where id=8; -update noar tt set v0='040Z9WA6YSCGWQ9B5W4NU423DTFI' where id=9; -update noar ti set v0='040Z9WA6YSCGWQ9B5W4NU423DTFI' where id=9; -update noar tt set b0='7S5ZH62ONHLKBLLQM6J9ME9PA2EP' where id=9; -update noar ti set b0='7S5ZH62ONHLKBLLQM6J9ME9PA2EP' where id=9; -update noar tt set v0='EPH88UO2JBO4A45I1MH7U9LLQT' where id=9; -update noar ti set v0='EPH88UO2JBO4A45I1MH7U9LLQT' where id=9; -update noar tt set b1='KBVAOHS4TOMRVITUY9PFOU9HHF' where id=9; -update noar ti set b1='KBVAOHS4TOMRVITUY9PFOU9HHF' where id=9; -update noar tt set v0='0JGT7D8SMB9C3EIG54GE57U12' where id=9; -update noar ti set v0='0JGT7D8SMB9C3EIG54GE57U12' where id=9; -update noar tt set b2='2Y57' where id=9; -update noar ti set b2='2Y57' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -f0 int null, -v0 varchar(32) null, -b0 tinyblob null, -b1 blob null, -b2 tinyblob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='BROUDSR' where id=1; -update noar ti set v0='BROUDSR' where id=1; -update noar tt set b0='RIX5UPSX8W3TD609MDRNEN' where id=1; -update noar ti set b0='RIX5UPSX8W3TD609MDRNEN' where id=1; -update noar tt set v0='FA2DJ12YMS4AGIP0AP38FZ4OG' where id=1; -update noar ti set v0='FA2DJ12YMS4AGIP0AP38FZ4OG' where id=1; -update noar tt set b1='MF3RMRFVZ1DL9FGW2IPNCF' where id=1; -update noar ti set b1='MF3RMRFVZ1DL9FGW2IPNCF' where id=1; -update noar tt set v0='2FGI' where id=1; -update noar ti set v0='2FGI' where id=1; -update noar tt set b2='DUJD9TNRDDT7IRA5SG429RDYRKPF7YYS' where id=1; -update noar ti set b2='DUJD9TNRDDT7IRA5SG429RDYRKPF7YYS' where id=1; -update noar tt set v0='KZA3SVRJMGZ' where id=2; -update noar ti set v0='KZA3SVRJMGZ' where id=2; -update noar tt set b0='BDM6QA64CL' where id=2; -update noar ti set b0='BDM6QA64CL' where id=2; -update noar tt set v0='KJDHM84OLBFC8HEV0U0' where id=2; -update noar ti set v0='KJDHM84OLBFC8HEV0U0' where id=2; -update noar tt set b1='G1SL9DX1N3O0CHC5I' where id=2; -update noar ti set b1='G1SL9DX1N3O0CHC5I' where id=2; -update noar tt set v0='1740XYPAI2DR1C' where id=2; -update noar ti set v0='1740XYPAI2DR1C' where id=2; -update noar tt set b2='UU' where id=2; -update noar ti set b2='UU' where id=2; -update noar tt set v0='HSHCU568NJ4QCQC9HDIU236FWGWW' where id=3; -update noar ti set v0='HSHCU568NJ4QCQC9HDIU236FWGWW' where id=3; -update noar tt set b0='4WPHC740' where id=3; -update noar ti set b0='4WPHC740' where id=3; -update noar tt set v0='SG33S788P0HN1B3AQX6' where id=3; -update noar ti set v0='SG33S788P0HN1B3AQX6' where id=3; -update noar tt set b1='44SHY2BBA9BLFRYF1FKKA5TE' where id=3; -update noar ti set b1='44SHY2BBA9BLFRYF1FKKA5TE' where id=3; -update noar tt set v0='ITFEBA8WACVKR67GS5QQ0OTQBAHB' where id=3; -update noar ti set v0='ITFEBA8WACVKR67GS5QQ0OTQBAHB' where id=3; -update noar tt set b2='YA4KQWU4AFP6SIO8' where id=3; -update noar ti set b2='YA4KQWU4AFP6SIO8' where id=3; -update noar tt set v0='BQ7W9X' where id=4; -update noar ti set v0='BQ7W9X' where id=4; -update noar tt set b0='QFUTQUZZF71D5J' where id=4; -update noar ti set b0='QFUTQUZZF71D5J' where id=4; -update noar tt set v0='2NPYTD9N3OJPUBJHSRH4RWMBOWQFT2P' where id=4; -update noar ti set v0='2NPYTD9N3OJPUBJHSRH4RWMBOWQFT2P' where id=4; -update noar tt set b1='1L98HMNCNYU' where id=4; -update noar ti set b1='1L98HMNCNYU' where id=4; -update noar tt set v0='6QIPIGAAFURBQ7DCUFBKHE7FTUEQWMB' where id=4; -update noar ti set v0='6QIPIGAAFURBQ7DCUFBKHE7FTUEQWMB' where id=4; -update noar tt set b2='60PQQJWWA9AZ' where id=4; -update noar ti set b2='60PQQJWWA9AZ' where id=4; -update noar tt set v0='WWQCW66A' where id=5; -update noar ti set v0='WWQCW66A' where id=5; -update noar tt set b0='M1MY4PN8NFJP' where id=5; -update noar ti set b0='M1MY4PN8NFJP' where id=5; -update noar tt set v0='DHTNK6F7SEKJVX0SIWCPGWA77IAQKY2U' where id=5; -update noar ti set v0='DHTNK6F7SEKJVX0SIWCPGWA77IAQKY2U' where id=5; -update noar tt set b1='B' where id=5; -update noar ti set b1='B' where id=5; -update noar tt set v0='6BYP' where id=5; -update noar ti set v0='6BYP' where id=5; -update noar tt set b2='HICT9Z5K4E' where id=5; -update noar ti set b2='HICT9Z5K4E' where id=5; -update noar tt set v0='F' where id=6; -update noar ti set v0='F' where id=6; -update noar tt set b0='MQZO2RFT36J' where id=6; -update noar ti set b0='MQZO2RFT36J' where id=6; -update noar tt set v0='ABFV2ZBHW67QVLBTGQMS662N2X' where id=6; -update noar ti set v0='ABFV2ZBHW67QVLBTGQMS662N2X' where id=6; -update noar tt set b1='7BKQ3B8NSXP3DVP94W67' where id=6; -update noar ti set b1='7BKQ3B8NSXP3DVP94W67' where id=6; -update noar tt set v0='4VSCO3SE9ENG1RHBJCDVHFVOEGJLX0' where id=6; -update noar ti set v0='4VSCO3SE9ENG1RHBJCDVHFVOEGJLX0' where id=6; -update noar tt set b2='9LFYQYL80G82XGFQ' where id=6; -update noar ti set b2='9LFYQYL80G82XGFQ' where id=6; -update noar tt set v0='OBREEN9N8JK5PF4TFS27FOI' where id=7; -update noar ti set v0='OBREEN9N8JK5PF4TFS27FOI' where id=7; -update noar tt set b0='WBJPALYRNREZ1DG97W22LW3YNPZ' where id=7; -update noar ti set b0='WBJPALYRNREZ1DG97W22LW3YNPZ' where id=7; -update noar tt set v0='G30MQH1Z3NTR7XBKHF' where id=7; -update noar ti set v0='G30MQH1Z3NTR7XBKHF' where id=7; -update noar tt set b1='0' where id=7; -update noar ti set b1='0' where id=7; -update noar tt set v0='JE7YZ' where id=7; -update noar ti set v0='JE7YZ' where id=7; -update noar tt set b2='KZK' where id=7; -update noar ti set b2='KZK' where id=7; -update noar tt set v0='W16ESY' where id=8; -update noar ti set v0='W16ESY' where id=8; -update noar tt set b0='2KHZO6WI' where id=8; -update noar ti set b0='2KHZO6WI' where id=8; -update noar tt set v0='0CPXCSLBIS5K522R' where id=8; -update noar ti set v0='0CPXCSLBIS5K522R' where id=8; -update noar tt set b1='A58CI6K4NQ7FQAPKWE9LG8OO' where id=8; -update noar ti set b1='A58CI6K4NQ7FQAPKWE9LG8OO' where id=8; -update noar tt set v0='BZRNYKOYM83Y93UCTAR1' where id=8; -update noar ti set v0='BZRNYKOYM83Y93UCTAR1' where id=8; -update noar tt set b2='JC2R1Z090XG8TBIPREB8RVM0LCGW' where id=8; -update noar ti set b2='JC2R1Z090XG8TBIPREB8RVM0LCGW' where id=8; -update noar tt set v0='1BS' where id=9; -update noar ti set v0='1BS' where id=9; -update noar tt set b0='3KLCZHEJFGRE1RWD27IFY0' where id=9; -update noar ti set b0='3KLCZHEJFGRE1RWD27IFY0' where id=9; -update noar tt set v0='IIPL2GQ7RWMNSAAZM2EBN9LWMHY7EXVE' where id=9; -update noar ti set v0='IIPL2GQ7RWMNSAAZM2EBN9LWMHY7EXVE' where id=9; -update noar tt set b1='OSRXH' where id=9; -update noar ti set b1='OSRXH' where id=9; -update noar tt set v0='MOJUUCMQUO0' where id=9; -update noar ti set v0='MOJUUCMQUO0' where id=9; -update noar tt set b2='EFKIQ6TG9RBD1N0IRU5QFJS7' where id=9; -update noar ti set b2='EFKIQ6TG9RBD1N0IRU5QFJS7' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -f0 int null, -v0 varchar(256) null, -b0 tinyblob null, -b1 blob null, -b2 tinyblob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='SRYJIKT9UMDUUVMJWKG' where id=1; -update noar ti set v0='SRYJIKT9UMDUUVMJWKG' where id=1; -update noar tt set b0='I6IK9FCUHYKXOM' where id=1; -update noar ti set b0='I6IK9FCUHYKXOM' where id=1; -update noar tt set v0='HUV9FWP3J26VL' where id=1; -update noar ti set v0='HUV9FWP3J26VL' where id=1; -update noar tt set b1='3WOW43V1QDPD6ZJ' where id=1; -update noar ti set b1='3WOW43V1QDPD6ZJ' where id=1; -update noar tt set v0='3J2NLWHDFJE0EH8ZAXD2U1827USBPIV' where id=1; -update noar ti set v0='3J2NLWHDFJE0EH8ZAXD2U1827USBPIV' where id=1; -update noar tt set b2='Y497E01' where id=1; -update noar ti set b2='Y497E01' where id=1; -update noar tt set v0='H1JY' where id=2; -update noar ti set v0='H1JY' where id=2; -update noar tt set b0='YI35EOFSQB7EZ7CRW7S9QI' where id=2; -update noar ti set b0='YI35EOFSQB7EZ7CRW7S9QI' where id=2; -update noar tt set v0='7LKGN6KR7MLI3XZVXA3TFYM' where id=2; -update noar ti set v0='7LKGN6KR7MLI3XZVXA3TFYM' where id=2; -update noar tt set b1='BE2S48NUFB7XPK9OUQSVE41PAZN0W' where id=2; -update noar ti set b1='BE2S48NUFB7XPK9OUQSVE41PAZN0W' where id=2; -update noar tt set v0='TAV8CKC1CEXWQF6G5R0QJ93' where id=2; -update noar ti set v0='TAV8CKC1CEXWQF6G5R0QJ93' where id=2; -update noar tt set b2='0DQPMM' where id=2; -update noar ti set b2='0DQPMM' where id=2; -update noar tt set v0='NY7MI21QOVN15AYK6A64' where id=3; -update noar ti set v0='NY7MI21QOVN15AYK6A64' where id=3; -update noar tt set b0='NEEQHUG6JF4GM7MH6KH63WQU604A' where id=3; -update noar ti set b0='NEEQHUG6JF4GM7MH6KH63WQU604A' where id=3; -update noar tt set v0='6H6SHGNTN7' where id=3; -update noar ti set v0='6H6SHGNTN7' where id=3; -update noar tt set b1='KT0GOJI68W5RVC9OU25240RLD5WJBR2' where id=3; -update noar ti set b1='KT0GOJI68W5RVC9OU25240RLD5WJBR2' where id=3; -update noar tt set v0='F5TC01JDVCVGUZN1WSTEXZ' where id=3; -update noar ti set v0='F5TC01JDVCVGUZN1WSTEXZ' where id=3; -update noar tt set b2='XUKBAL579EL1D' where id=3; -update noar ti set b2='XUKBAL579EL1D' where id=3; -update noar tt set v0='0VJEEDOX1YX1C2IRBUD' where id=4; -update noar ti set v0='0VJEEDOX1YX1C2IRBUD' where id=4; -update noar tt set b0='CHG' where id=4; -update noar ti set b0='CHG' where id=4; -update noar tt set v0='CPBEFBD' where id=4; -update noar ti set v0='CPBEFBD' where id=4; -update noar tt set b1='4I6' where id=4; -update noar ti set b1='4I6' where id=4; -update noar tt set v0='6UAQ6M4IWS1ILD798ZRF29YI73ZGFP2P' where id=4; -update noar ti set v0='6UAQ6M4IWS1ILD798ZRF29YI73ZGFP2P' where id=4; -update noar tt set b2='7RZBWU77YZSE' where id=4; -update noar ti set b2='7RZBWU77YZSE' where id=4; -update noar tt set v0='IHCY' where id=5; -update noar ti set v0='IHCY' where id=5; -update noar tt set b0='NF7MX9803ULIJCVUTSVGHDX6DGY0HCA7' where id=5; -update noar ti set b0='NF7MX9803ULIJCVUTSVGHDX6DGY0HCA7' where id=5; -update noar tt set v0='9HW38U6NN7' where id=5; -update noar ti set v0='9HW38U6NN7' where id=5; -update noar tt set b1='W5QHTB383UTHMHTA51STZFE' where id=5; -update noar ti set b1='W5QHTB383UTHMHTA51STZFE' where id=5; -update noar tt set v0='6H662CU5AK0ZVSLO91' where id=5; -update noar ti set v0='6H662CU5AK0ZVSLO91' where id=5; -update noar tt set b2='R' where id=5; -update noar ti set b2='R' where id=5; -update noar tt set v0='NIE1Y2RAXOXDF53KQE68GDYJ6QSP' where id=6; -update noar ti set v0='NIE1Y2RAXOXDF53KQE68GDYJ6QSP' where id=6; -update noar tt set b0='1HJIHCTB9UQ7SP77OO1GCB0XGZ' where id=6; -update noar ti set b0='1HJIHCTB9UQ7SP77OO1GCB0XGZ' where id=6; -update noar tt set v0='0' where id=6; -update noar ti set v0='0' where id=6; -update noar tt set b1='E5' where id=6; -update noar ti set b1='E5' where id=6; -update noar tt set v0='K5' where id=6; -update noar ti set v0='K5' where id=6; -update noar tt set b2='JDWGFIUQ58ZFW619J5V4N63' where id=6; -update noar ti set b2='JDWGFIUQ58ZFW619J5V4N63' where id=6; -update noar tt set v0='B486QLU' where id=7; -update noar ti set v0='B486QLU' where id=7; -update noar tt set b0='BYGMXZ2AJ55VN0DL8HHNGYNXAEAA7Z9' where id=7; -update noar ti set b0='BYGMXZ2AJ55VN0DL8HHNGYNXAEAA7Z9' where id=7; -update noar tt set v0='PF' where id=7; -update noar ti set v0='PF' where id=7; -update noar tt set b1='B384EWQEFMAH7SIHFGK98YQ3YY6CX7EA' where id=7; -update noar ti set b1='B384EWQEFMAH7SIHFGK98YQ3YY6CX7EA' where id=7; -update noar tt set v0='H5GZVSYQAXU24' where id=7; -update noar ti set v0='H5GZVSYQAXU24' where id=7; -update noar tt set b2='LLOXPNDN3SFLP29YOML' where id=7; -update noar ti set b2='LLOXPNDN3SFLP29YOML' where id=7; -update noar tt set v0='I5D7YUMCCM6B' where id=8; -update noar ti set v0='I5D7YUMCCM6B' where id=8; -update noar tt set b0='C5SM3TMLLRRSHROTJ' where id=8; -update noar ti set b0='C5SM3TMLLRRSHROTJ' where id=8; -update noar tt set v0='XSEOI' where id=8; -update noar ti set v0='XSEOI' where id=8; -update noar tt set b1='VTQ' where id=8; -update noar ti set b1='VTQ' where id=8; -update noar tt set v0='GQ23CUQG4O' where id=8; -update noar ti set v0='GQ23CUQG4O' where id=8; -update noar tt set b2='RGTFQ1BLW25X72BHAUHHD8' where id=8; -update noar ti set b2='RGTFQ1BLW25X72BHAUHHD8' where id=8; -update noar tt set v0='K7828F3XRT6XEE4PWP9J2T' where id=9; -update noar ti set v0='K7828F3XRT6XEE4PWP9J2T' where id=9; -update noar tt set b0='KDVF7O1W6S6JSRVV1EE' where id=9; -update noar ti set b0='KDVF7O1W6S6JSRVV1EE' where id=9; -update noar tt set v0='RS84B7KKF' where id=9; -update noar ti set v0='RS84B7KKF' where id=9; -update noar tt set b1='4V1QC9TC1O7J7C' where id=9; -update noar ti set b1='4V1QC9TC1O7J7C' where id=9; -update noar tt set v0='2IUL5W04RM34NU6M9QGQSX1' where id=9; -update noar ti set v0='2IUL5W04RM34NU6M9QGQSX1' where id=9; -update noar tt set b2='0RYE2TOC' where id=9; -update noar ti set b2='0RYE2TOC' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -f0 int not null, -v0 varchar(32) not null, -b0 tinyblob not null, -b1 blob not null, -b2 tinyblob not null -) engine=tokudb; -insert into tt values (1,0,'','','',''); -insert into tt values (2,0,'','','',''); -insert into tt values (3,0,'','','',''); -insert into tt values (4,0,'','','',''); -insert into tt values (5,0,'','','',''); -insert into tt values (6,0,'','','',''); -insert into tt values (7,0,'','','',''); -insert into tt values (8,0,'','','',''); -insert into tt values (9,0,'','','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='1M3BDN2LYVWHKCQ75NL' where id=1; -update noar ti set v0='1M3BDN2LYVWHKCQ75NL' where id=1; -update noar tt set b0='WIP8ZSUE5TWWDFRZ5PRGQ2' where id=1; -update noar ti set b0='WIP8ZSUE5TWWDFRZ5PRGQ2' where id=1; -update noar tt set v0='IVBVLGZYOJ0KOLDC1EJ2' where id=1; -update noar ti set v0='IVBVLGZYOJ0KOLDC1EJ2' where id=1; -update noar tt set b1='B2UVWA7PX2U2Y7I8XW5U' where id=1; -update noar ti set b1='B2UVWA7PX2U2Y7I8XW5U' where id=1; -update noar tt set v0='EYITE2Z9PS2' where id=1; -update noar ti set v0='EYITE2Z9PS2' where id=1; -update noar tt set b2='GIJ6XAP' where id=1; -update noar ti set b2='GIJ6XAP' where id=1; -update noar tt set v0='L3N86NTCWANSI9YAV' where id=2; -update noar ti set v0='L3N86NTCWANSI9YAV' where id=2; -update noar tt set b0='G' where id=2; -update noar ti set b0='G' where id=2; -update noar tt set v0='P7IGSKL6V3E4PEE9FLJRBDLJZ' where id=2; -update noar ti set v0='P7IGSKL6V3E4PEE9FLJRBDLJZ' where id=2; -update noar tt set b1='UKRP' where id=2; -update noar ti set b1='UKRP' where id=2; -update noar tt set v0='VSPIM7XWS63UKL78BZE09C2T' where id=2; -update noar ti set v0='VSPIM7XWS63UKL78BZE09C2T' where id=2; -update noar tt set b2='MBMPE7OE18X3YOF19' where id=2; -update noar ti set b2='MBMPE7OE18X3YOF19' where id=2; -update noar tt set v0='N0MTRRTI6GQVUXQ8' where id=3; -update noar ti set v0='N0MTRRTI6GQVUXQ8' where id=3; -update noar tt set b0='DLWFSYJEJ' where id=3; -update noar ti set b0='DLWFSYJEJ' where id=3; -update noar tt set v0='LFN' where id=3; -update noar ti set v0='LFN' where id=3; -update noar tt set b1='9E' where id=3; -update noar ti set b1='9E' where id=3; -update noar tt set v0='3V9YIBI3NSG14PLAUT8AF9' where id=3; -update noar ti set v0='3V9YIBI3NSG14PLAUT8AF9' where id=3; -update noar tt set b2='GFCL5OSNEESH' where id=3; -update noar ti set b2='GFCL5OSNEESH' where id=3; -update noar tt set v0='JL' where id=4; -update noar ti set v0='JL' where id=4; -update noar tt set b0='QOXK7Q0RHTN6B9LI' where id=4; -update noar ti set b0='QOXK7Q0RHTN6B9LI' where id=4; -update noar tt set v0='6HRO' where id=4; -update noar ti set v0='6HRO' where id=4; -update noar tt set b1='99VDLOCABCSKGDIZV2FAH6JP23YI' where id=4; -update noar ti set b1='99VDLOCABCSKGDIZV2FAH6JP23YI' where id=4; -update noar tt set v0='XA62B38YU0A0E' where id=4; -update noar ti set v0='XA62B38YU0A0E' where id=4; -update noar tt set b2='R6NPUAIAMBBVO1YGHA' where id=4; -update noar ti set b2='R6NPUAIAMBBVO1YGHA' where id=4; -update noar tt set v0='MJU' where id=5; -update noar ti set v0='MJU' where id=5; -update noar tt set b0='9BGE34Y6HBP' where id=5; -update noar ti set b0='9BGE34Y6HBP' where id=5; -update noar tt set v0='643ONEEBMJ513YTII3AYC6' where id=5; -update noar ti set v0='643ONEEBMJ513YTII3AYC6' where id=5; -update noar tt set b1='KR5OW82C9TJZ' where id=5; -update noar ti set b1='KR5OW82C9TJZ' where id=5; -update noar tt set v0='TKQJ2WHKB32H243G' where id=5; -update noar ti set v0='TKQJ2WHKB32H243G' where id=5; -update noar tt set b2='JOZZLIU466' where id=5; -update noar ti set b2='JOZZLIU466' where id=5; -update noar tt set v0='MXUCG5TGOAZPLNJOQ6DR2D' where id=6; -update noar ti set v0='MXUCG5TGOAZPLNJOQ6DR2D' where id=6; -update noar tt set b0='6ZSWB' where id=6; -update noar ti set b0='6ZSWB' where id=6; -update noar tt set v0='5' where id=6; -update noar ti set v0='5' where id=6; -update noar tt set b1='7YDUL' where id=6; -update noar ti set b1='7YDUL' where id=6; -update noar tt set v0='ATNVMUR03DOQWJYH2R0GKEQ5BAMDL' where id=6; -update noar ti set v0='ATNVMUR03DOQWJYH2R0GKEQ5BAMDL' where id=6; -update noar tt set b2='SLYHPNHJGA5C4' where id=6; -update noar ti set b2='SLYHPNHJGA5C4' where id=6; -update noar tt set v0='3XK9Y53' where id=7; -update noar ti set v0='3XK9Y53' where id=7; -update noar tt set b0='0ERE' where id=7; -update noar ti set b0='0ERE' where id=7; -update noar tt set v0='HRA20YBAAOA9AAO9BV' where id=7; -update noar ti set v0='HRA20YBAAOA9AAO9BV' where id=7; -update noar tt set b1='ECZBAA43XYZM52IU8W02KTHQMSJDLJB0' where id=7; -update noar ti set b1='ECZBAA43XYZM52IU8W02KTHQMSJDLJB0' where id=7; -update noar tt set v0='US8W3DHMGUB5' where id=7; -update noar ti set v0='US8W3DHMGUB5' where id=7; -update noar tt set b2='U1W12ER0A2C27' where id=7; -update noar ti set b2='U1W12ER0A2C27' where id=7; -update noar tt set v0='ZKOSAEBJLNUI0ASUBF2KMSVFT7D' where id=8; -update noar ti set v0='ZKOSAEBJLNUI0ASUBF2KMSVFT7D' where id=8; -update noar tt set b0='8MOJRLW5ZS8' where id=8; -update noar ti set b0='8MOJRLW5ZS8' where id=8; -update noar tt set v0='YLZ67TXQD5KM3TMFBMWTMO9HT05Z3GO' where id=8; -update noar ti set v0='YLZ67TXQD5KM3TMFBMWTMO9HT05Z3GO' where id=8; -update noar tt set b1='QYPWFX16YXC6UDQL5YD6AS204Q15' where id=8; -update noar ti set b1='QYPWFX16YXC6UDQL5YD6AS204Q15' where id=8; -update noar tt set v0='FY07OGWCSW' where id=8; -update noar ti set v0='FY07OGWCSW' where id=8; -update noar tt set b2='E69NUAPLPQYMZ3' where id=8; -update noar ti set b2='E69NUAPLPQYMZ3' where id=8; -update noar tt set v0='4ZUMNJ9QV6NN9H6JJVI' where id=9; -update noar ti set v0='4ZUMNJ9QV6NN9H6JJVI' where id=9; -update noar tt set b0='4' where id=9; -update noar ti set b0='4' where id=9; -update noar tt set v0='2UCK' where id=9; -update noar ti set v0='2UCK' where id=9; -update noar tt set b1='7B5YOYFVS9F5M' where id=9; -update noar ti set b1='7B5YOYFVS9F5M' where id=9; -update noar tt set v0='9CJWUGM69HNBDGLKO38TE5L12ADO' where id=9; -update noar ti set v0='9CJWUGM69HNBDGLKO38TE5L12ADO' where id=9; -update noar tt set b2='5E9QX8EC1OCFS9HNY2' where id=9; -update noar ti set b2='5E9QX8EC1OCFS9HNY2' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -f0 int not null, -v0 varchar(256) not null, -b0 tinyblob not null, -b1 blob not null, -b2 tinyblob not null -) engine=tokudb; -insert into tt values (1,0,'','','',''); -insert into tt values (2,0,'','','',''); -insert into tt values (3,0,'','','',''); -insert into tt values (4,0,'','','',''); -insert into tt values (5,0,'','','',''); -insert into tt values (6,0,'','','',''); -insert into tt values (7,0,'','','',''); -insert into tt values (8,0,'','','',''); -insert into tt values (9,0,'','','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='D16B' where id=1; -update noar ti set v0='D16B' where id=1; -update noar tt set b0='1GLRM' where id=1; -update noar ti set b0='1GLRM' where id=1; -update noar tt set v0='BWI' where id=1; -update noar ti set v0='BWI' where id=1; -update noar tt set b1='93XR68CG95P1FQ1AHRBWGQTBLZTBDCOZ' where id=1; -update noar ti set b1='93XR68CG95P1FQ1AHRBWGQTBLZTBDCOZ' where id=1; -update noar tt set v0='51CTWC3F4GJES8K4WAAZRFLR7C' where id=1; -update noar ti set v0='51CTWC3F4GJES8K4WAAZRFLR7C' where id=1; -update noar tt set b2='6Q050V' where id=1; -update noar ti set b2='6Q050V' where id=1; -update noar tt set v0='5KQRMV9R310WGQP8XOL' where id=2; -update noar ti set v0='5KQRMV9R310WGQP8XOL' where id=2; -update noar tt set b0='3X1HAD54DRB4MPS' where id=2; -update noar ti set b0='3X1HAD54DRB4MPS' where id=2; -update noar tt set v0='ID3PCB7AMA47VPDJKRCB87J1JVH4XZW' where id=2; -update noar ti set v0='ID3PCB7AMA47VPDJKRCB87J1JVH4XZW' where id=2; -update noar tt set b1='DRCLLAJP082OGQOFP' where id=2; -update noar ti set b1='DRCLLAJP082OGQOFP' where id=2; -update noar tt set v0='TIZ09' where id=2; -update noar ti set v0='TIZ09' where id=2; -update noar tt set b2='FITZRU85OZ3C' where id=2; -update noar ti set b2='FITZRU85OZ3C' where id=2; -update noar tt set v0='OMX9HNFQMFE0XTB' where id=3; -update noar ti set v0='OMX9HNFQMFE0XTB' where id=3; -update noar tt set b0='C2TINHJMIKHWBMK9PCPU7XS2O' where id=3; -update noar ti set b0='C2TINHJMIKHWBMK9PCPU7XS2O' where id=3; -update noar tt set v0='Z365ZS7F30D0IGO7WX81LD8RFHVT' where id=3; -update noar ti set v0='Z365ZS7F30D0IGO7WX81LD8RFHVT' where id=3; -update noar tt set b1='Z5W2JOI' where id=3; -update noar ti set b1='Z5W2JOI' where id=3; -update noar tt set v0='NZH2S8YRKZ29OBRX62M0HLTV7MMPW7' where id=3; -update noar ti set v0='NZH2S8YRKZ29OBRX62M0HLTV7MMPW7' where id=3; -update noar tt set b2='B104PRWOJMAPGY1VRDAOZC6GF5QM1W' where id=3; -update noar ti set b2='B104PRWOJMAPGY1VRDAOZC6GF5QM1W' where id=3; -update noar tt set v0='5V75N3V' where id=4; -update noar ti set v0='5V75N3V' where id=4; -update noar tt set b0='OUZT2ZB4TRH8KAE4LLPHI1' where id=4; -update noar ti set b0='OUZT2ZB4TRH8KAE4LLPHI1' where id=4; -update noar tt set v0='RDWE9JTRLPEHSMD1X7WN3' where id=4; -update noar ti set v0='RDWE9JTRLPEHSMD1X7WN3' where id=4; -update noar tt set b1='T5WR21RGSA7GUO7X' where id=4; -update noar ti set b1='T5WR21RGSA7GUO7X' where id=4; -update noar tt set v0='8FV' where id=4; -update noar ti set v0='8FV' where id=4; -update noar tt set b2='AK7P964L' where id=4; -update noar ti set b2='AK7P964L' where id=4; -update noar tt set v0='I4TT8488NY40' where id=5; -update noar ti set v0='I4TT8488NY40' where id=5; -update noar tt set b0='B057L4QV' where id=5; -update noar ti set b0='B057L4QV' where id=5; -update noar tt set v0='9ZCQXIJUON2TLU394' where id=5; -update noar ti set v0='9ZCQXIJUON2TLU394' where id=5; -update noar tt set b1='VKBNM' where id=5; -update noar ti set b1='VKBNM' where id=5; -update noar tt set v0='FW0E5N2LVX703UIAI44XY' where id=5; -update noar ti set v0='FW0E5N2LVX703UIAI44XY' where id=5; -update noar tt set b2='6GD5MNMXP4CSJEMVOP7IPUFD' where id=5; -update noar ti set b2='6GD5MNMXP4CSJEMVOP7IPUFD' where id=5; -update noar tt set v0='Y' where id=6; -update noar ti set v0='Y' where id=6; -update noar tt set b0='N778ONW15IE4' where id=6; -update noar ti set b0='N778ONW15IE4' where id=6; -update noar tt set v0='KDWKCNG464TOLSF46N9' where id=6; -update noar ti set v0='KDWKCNG464TOLSF46N9' where id=6; -update noar tt set b1='V7ADAMKHGLH0CXKWEVMCA9W' where id=6; -update noar ti set b1='V7ADAMKHGLH0CXKWEVMCA9W' where id=6; -update noar tt set v0='1UVE4PLGLR7V2OTFW7FB8' where id=6; -update noar ti set v0='1UVE4PLGLR7V2OTFW7FB8' where id=6; -update noar tt set b2='0H4ZY8F62LTM6V1093P2EEVGAY036A0' where id=6; -update noar ti set b2='0H4ZY8F62LTM6V1093P2EEVGAY036A0' where id=6; -update noar tt set v0='FBRSFD24Q603JJJQJA0U6MJ1U3Y' where id=7; -update noar ti set v0='FBRSFD24Q603JJJQJA0U6MJ1U3Y' where id=7; -update noar tt set b0='Z7KPMID44AT' where id=7; -update noar ti set b0='Z7KPMID44AT' where id=7; -update noar tt set v0='715A4JQ0HMSC7HOY0' where id=7; -update noar ti set v0='715A4JQ0HMSC7HOY0' where id=7; -update noar tt set b1='3C7UVSJNTN' where id=7; -update noar ti set b1='3C7UVSJNTN' where id=7; -update noar tt set v0='1S5ZS' where id=7; -update noar ti set v0='1S5ZS' where id=7; -update noar tt set b2='5X45ZRH6V8UQFK0767S0IRPTVBT62RE0' where id=7; -update noar ti set b2='5X45ZRH6V8UQFK0767S0IRPTVBT62RE0' where id=7; -update noar tt set v0='MUIHBB9LOF' where id=8; -update noar ti set v0='MUIHBB9LOF' where id=8; -update noar tt set b0='58Q8' where id=8; -update noar ti set b0='58Q8' where id=8; -update noar tt set v0='0TX' where id=8; -update noar ti set v0='0TX' where id=8; -update noar tt set b1='OIY8EE3' where id=8; -update noar ti set b1='OIY8EE3' where id=8; -update noar tt set v0='CFKBOCQP9O' where id=8; -update noar ti set v0='CFKBOCQP9O' where id=8; -update noar tt set b2='W0WCO3LKT0D8OHVX5' where id=8; -update noar ti set b2='W0WCO3LKT0D8OHVX5' where id=8; -update noar tt set v0='VH8XQZ' where id=9; -update noar ti set v0='VH8XQZ' where id=9; -update noar tt set b0='1BA3N' where id=9; -update noar ti set b0='1BA3N' where id=9; -update noar tt set v0='12YQQ23GYSM9M7T3SY0CAYCFQ5WJ4W' where id=9; -update noar ti set v0='12YQQ23GYSM9M7T3SY0CAYCFQ5WJ4W' where id=9; -update noar tt set b1='6TPTEJV2MA9AZ0K9JQ9KEKK9GK6' where id=9; -update noar ti set b1='6TPTEJV2MA9AZ0K9JQ9KEKK9GK6' where id=9; -update noar tt set v0='Q' where id=9; -update noar ti set v0='Q' where id=9; -update noar tt set b2='JUQP2VLQXK5M4DPBNZA71V023' where id=9; -update noar ti set b2='JUQP2VLQXK5M4DPBNZA71V023' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -f0 int null, -v0 varchar(32) null, -b0 tinyblob null, -b1 blob null, -b2 blob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='U50AJQ1JN1G0YH' where id=1; -update noar ti set v0='U50AJQ1JN1G0YH' where id=1; -update noar tt set b0='VAF3V1GU' where id=1; -update noar ti set b0='VAF3V1GU' where id=1; -update noar tt set v0='WJNS9B6981XFM1M1GF0XUI0' where id=1; -update noar ti set v0='WJNS9B6981XFM1M1GF0XUI0' where id=1; -update noar tt set b1='ZS5NQBM9YRUEMMGCSBFQYZS1T' where id=1; -update noar ti set b1='ZS5NQBM9YRUEMMGCSBFQYZS1T' where id=1; -update noar tt set v0='BX9VN7U7F4H1EU0CZ2VXLX36SMT' where id=1; -update noar ti set v0='BX9VN7U7F4H1EU0CZ2VXLX36SMT' where id=1; -update noar tt set b2='3G4CDC88E6435QRY' where id=1; -update noar ti set b2='3G4CDC88E6435QRY' where id=1; -update noar tt set v0='8J43KAUNM9' where id=2; -update noar ti set v0='8J43KAUNM9' where id=2; -update noar tt set b0='TH' where id=2; -update noar ti set b0='TH' where id=2; -update noar tt set v0='VS' where id=2; -update noar ti set v0='VS' where id=2; -update noar tt set b1='YOZ59SCEO8MVYNKIKJR' where id=2; -update noar ti set b1='YOZ59SCEO8MVYNKIKJR' where id=2; -update noar tt set v0='CMKKFCMT1K17U' where id=2; -update noar ti set v0='CMKKFCMT1K17U' where id=2; -update noar tt set b2='PYK0ACLSWCG22BKK9ITELHJ1' where id=2; -update noar ti set b2='PYK0ACLSWCG22BKK9ITELHJ1' where id=2; -update noar tt set v0='7QZUQ7SX6KTKPM6YLE31KVR3SLZRLOQ' where id=3; -update noar ti set v0='7QZUQ7SX6KTKPM6YLE31KVR3SLZRLOQ' where id=3; -update noar tt set b0='0OEV8YCO4T0HC8LKP47MY036MKEVES' where id=3; -update noar ti set b0='0OEV8YCO4T0HC8LKP47MY036MKEVES' where id=3; -update noar tt set v0='TDIPGQKTPH6CHWO4A5N4WNZ6UW' where id=3; -update noar ti set v0='TDIPGQKTPH6CHWO4A5N4WNZ6UW' where id=3; -update noar tt set b1='8PHCVSWXKSC8KL7PUOH' where id=3; -update noar ti set b1='8PHCVSWXKSC8KL7PUOH' where id=3; -update noar tt set v0='UOSA8ZTCO7684' where id=3; -update noar ti set v0='UOSA8ZTCO7684' where id=3; -update noar tt set b2='RGNKGWGGTXRNKA' where id=3; -update noar ti set b2='RGNKGWGGTXRNKA' where id=3; -update noar tt set v0='ABMW' where id=4; -update noar ti set v0='ABMW' where id=4; -update noar tt set b0='MAIY1I7W3YQA1QCKC3HUOPXQE02TQ6T' where id=4; -update noar ti set b0='MAIY1I7W3YQA1QCKC3HUOPXQE02TQ6T' where id=4; -update noar tt set v0='IHN7FTEI1D5M4JCTHNBY5GIDLHCLK5J9' where id=4; -update noar ti set v0='IHN7FTEI1D5M4JCTHNBY5GIDLHCLK5J9' where id=4; -update noar tt set b1='0PVBMVE' where id=4; -update noar ti set b1='0PVBMVE' where id=4; -update noar tt set v0='K' where id=4; -update noar ti set v0='K' where id=4; -update noar tt set b2='KA9J0D8SW7H4X6KMTG387N8EIG2Y' where id=4; -update noar ti set b2='KA9J0D8SW7H4X6KMTG387N8EIG2Y' where id=4; -update noar tt set v0='XECTDXBWT04EQJ8HQKXGGQ19NVIRDB' where id=5; -update noar ti set v0='XECTDXBWT04EQJ8HQKXGGQ19NVIRDB' where id=5; -update noar tt set b0='6K5XICS4' where id=5; -update noar ti set b0='6K5XICS4' where id=5; -update noar tt set v0='6WKS2DY0EPK3W' where id=5; -update noar ti set v0='6WKS2DY0EPK3W' where id=5; -update noar tt set b1='RD1PEV' where id=5; -update noar ti set b1='RD1PEV' where id=5; -update noar tt set v0='PSXIERURXWIWAJLZOHU7VSD' where id=5; -update noar ti set v0='PSXIERURXWIWAJLZOHU7VSD' where id=5; -update noar tt set b2='TX88HBADG4Y9N4FNKRQEB2' where id=5; -update noar ti set b2='TX88HBADG4Y9N4FNKRQEB2' where id=5; -update noar tt set v0='9UVEYD7AWTYQZOFBST08SJFWP2GD6J' where id=6; -update noar ti set v0='9UVEYD7AWTYQZOFBST08SJFWP2GD6J' where id=6; -update noar tt set b0='BQGUELQ0NJY0NCVTXTUNI3Q7ZLJUT' where id=6; -update noar ti set b0='BQGUELQ0NJY0NCVTXTUNI3Q7ZLJUT' where id=6; -update noar tt set v0='P4S5FGG0HC8BPUH6OE2FSI' where id=6; -update noar ti set v0='P4S5FGG0HC8BPUH6OE2FSI' where id=6; -update noar tt set b1='DB66VV0DE1Y3LPPP6JBNY1K' where id=6; -update noar ti set b1='DB66VV0DE1Y3LPPP6JBNY1K' where id=6; -update noar tt set v0='WPN' where id=6; -update noar ti set v0='WPN' where id=6; -update noar tt set b2='VHRHD6PZ3KO4M3Z' where id=6; -update noar ti set b2='VHRHD6PZ3KO4M3Z' where id=6; -update noar tt set v0='96AJTQZKM' where id=7; -update noar ti set v0='96AJTQZKM' where id=7; -update noar tt set b0='KH9K6' where id=7; -update noar ti set b0='KH9K6' where id=7; -update noar tt set v0='9EAE' where id=7; -update noar ti set v0='9EAE' where id=7; -update noar tt set b1='OP4NVCVKSFROYVOFM7GD0QJYKAVN3Y' where id=7; -update noar ti set b1='OP4NVCVKSFROYVOFM7GD0QJYKAVN3Y' where id=7; -update noar tt set v0='9ZANWI5' where id=7; -update noar ti set v0='9ZANWI5' where id=7; -update noar tt set b2='EMIAHLYA9R7OZ3KS8BDMAYMU22LY5Z' where id=7; -update noar ti set b2='EMIAHLYA9R7OZ3KS8BDMAYMU22LY5Z' where id=7; -update noar tt set v0='N92XHAMJE561R2Q0OJV2F95TSL58' where id=8; -update noar ti set v0='N92XHAMJE561R2Q0OJV2F95TSL58' where id=8; -update noar tt set b0='13K46DNSTTDOG' where id=8; -update noar ti set b0='13K46DNSTTDOG' where id=8; -update noar tt set v0='S18HGU8671HPALLH' where id=8; -update noar ti set v0='S18HGU8671HPALLH' where id=8; -update noar tt set b1='5TCFNGVDEQE71KW71YQUY6RFUGX' where id=8; -update noar ti set b1='5TCFNGVDEQE71KW71YQUY6RFUGX' where id=8; -update noar tt set v0='MR2EE98P9' where id=8; -update noar ti set v0='MR2EE98P9' where id=8; -update noar tt set b2='07JYA894MPURF4' where id=8; -update noar ti set b2='07JYA894MPURF4' where id=8; -update noar tt set v0='K67V75EW1A89BAB596N0X' where id=9; -update noar ti set v0='K67V75EW1A89BAB596N0X' where id=9; -update noar tt set b0='SY2QCCXKBEK2DT36U37J9MZUU' where id=9; -update noar ti set b0='SY2QCCXKBEK2DT36U37J9MZUU' where id=9; -update noar tt set v0='Q9HR' where id=9; -update noar ti set v0='Q9HR' where id=9; -update noar tt set b1='TB474GT9P915JA7' where id=9; -update noar ti set b1='TB474GT9P915JA7' where id=9; -update noar tt set v0='EIXA2H2E0XLCBJ3REOGVLSOCL2VYQGR' where id=9; -update noar ti set v0='EIXA2H2E0XLCBJ3REOGVLSOCL2VYQGR' where id=9; -update noar tt set b2='64MAF15KBC5Y8ZH236Q9KWRNL9Q' where id=9; -update noar ti set b2='64MAF15KBC5Y8ZH236Q9KWRNL9Q' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -f0 int null, -v0 varchar(256) null, -b0 tinyblob null, -b1 blob null, -b2 blob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='2I' where id=1; -update noar ti set v0='2I' where id=1; -update noar tt set b0='P1VI3KLF905KLGIKEXXXLI' where id=1; -update noar ti set b0='P1VI3KLF905KLGIKEXXXLI' where id=1; -update noar tt set v0='ZL66BQBQM17YN8NN' where id=1; -update noar ti set v0='ZL66BQBQM17YN8NN' where id=1; -update noar tt set b1='ZLNEVXTXK7OZJJ2NXOW75P20MA0AII' where id=1; -update noar ti set b1='ZLNEVXTXK7OZJJ2NXOW75P20MA0AII' where id=1; -update noar tt set v0='JYM' where id=1; -update noar ti set v0='JYM' where id=1; -update noar tt set b2='O7EZG' where id=1; -update noar ti set b2='O7EZG' where id=1; -update noar tt set v0='OJQX6UFC' where id=2; -update noar ti set v0='OJQX6UFC' where id=2; -update noar tt set b0='UA5Z9GE' where id=2; -update noar ti set b0='UA5Z9GE' where id=2; -update noar tt set v0='QKP63Y2BX56XFNX2T8WFHRTAQ' where id=2; -update noar ti set v0='QKP63Y2BX56XFNX2T8WFHRTAQ' where id=2; -update noar tt set b1='AZ92EZ1WD5462TBK4OJ3S5A4EMY20V' where id=2; -update noar ti set b1='AZ92EZ1WD5462TBK4OJ3S5A4EMY20V' where id=2; -update noar tt set v0='OFKREEXUWFEGP' where id=2; -update noar ti set v0='OFKREEXUWFEGP' where id=2; -update noar tt set b2='XGQ4D6WQ1U1N' where id=2; -update noar ti set b2='XGQ4D6WQ1U1N' where id=2; -update noar tt set v0='HB' where id=3; -update noar ti set v0='HB' where id=3; -update noar tt set b0='5NFEO3XO' where id=3; -update noar ti set b0='5NFEO3XO' where id=3; -update noar tt set v0='B3QNL6UGV5HTUJ4K7F9LDAF7RI57IMS' where id=3; -update noar ti set v0='B3QNL6UGV5HTUJ4K7F9LDAF7RI57IMS' where id=3; -update noar tt set b1='LB' where id=3; -update noar ti set b1='LB' where id=3; -update noar tt set v0='JNO3Q2YQLGP8XKMBULG' where id=3; -update noar ti set v0='JNO3Q2YQLGP8XKMBULG' where id=3; -update noar tt set b2='AS8IA3VPRLP4RRUQ73KA9499JQTU5IZ' where id=3; -update noar ti set b2='AS8IA3VPRLP4RRUQ73KA9499JQTU5IZ' where id=3; -update noar tt set v0='X0YQZQOCBTAVPPYD3ITSP19B6FGJZ4' where id=4; -update noar ti set v0='X0YQZQOCBTAVPPYD3ITSP19B6FGJZ4' where id=4; -update noar tt set b0='UO3BO1GU1' where id=4; -update noar ti set b0='UO3BO1GU1' where id=4; -update noar tt set v0='QT6NUID7WWRIPAKTKXI' where id=4; -update noar ti set v0='QT6NUID7WWRIPAKTKXI' where id=4; -update noar tt set b1='7OY2KLZUCP237I4FQC526E' where id=4; -update noar ti set b1='7OY2KLZUCP237I4FQC526E' where id=4; -update noar tt set v0='C8GU5JOE7M5FWUC2F' where id=4; -update noar ti set v0='C8GU5JOE7M5FWUC2F' where id=4; -update noar tt set b2='U824PWKGO1JY' where id=4; -update noar ti set b2='U824PWKGO1JY' where id=4; -update noar tt set v0='XL4GSK0MSY7FV' where id=5; -update noar ti set v0='XL4GSK0MSY7FV' where id=5; -update noar tt set b0='L48Q7HUKLKEWXDLILEVTOVRMCNYGKA' where id=5; -update noar ti set b0='L48Q7HUKLKEWXDLILEVTOVRMCNYGKA' where id=5; -update noar tt set v0='09YWQBVCZD4UBJE0J8' where id=5; -update noar ti set v0='09YWQBVCZD4UBJE0J8' where id=5; -update noar tt set b1='8DIWKYPD7E' where id=5; -update noar ti set b1='8DIWKYPD7E' where id=5; -update noar tt set v0='C3WXE4WDIUZY0XTPPDY42TOSIPP7QTS' where id=5; -update noar ti set v0='C3WXE4WDIUZY0XTPPDY42TOSIPP7QTS' where id=5; -update noar tt set b2='TDF3LPX43QS' where id=5; -update noar ti set b2='TDF3LPX43QS' where id=5; -update noar tt set v0='83HIYUSKT5XZ9AJH3U0' where id=6; -update noar ti set v0='83HIYUSKT5XZ9AJH3U0' where id=6; -update noar tt set b0='EQ5BGX62ZD4I' where id=6; -update noar ti set b0='EQ5BGX62ZD4I' where id=6; -update noar tt set v0='0P65' where id=6; -update noar ti set v0='0P65' where id=6; -update noar tt set b1='OLQUJG4V840WOZ5KQDDT2Z' where id=6; -update noar ti set b1='OLQUJG4V840WOZ5KQDDT2Z' where id=6; -update noar tt set v0='JKY8DKPSU5ZCSE4RZY7UWTECQROJSV' where id=6; -update noar ti set v0='JKY8DKPSU5ZCSE4RZY7UWTECQROJSV' where id=6; -update noar tt set b2='HWR99ZT6212ZD03XNDJ0HE6PBJ2XA' where id=6; -update noar ti set b2='HWR99ZT6212ZD03XNDJ0HE6PBJ2XA' where id=6; -update noar tt set v0='W9P1NM' where id=7; -update noar ti set v0='W9P1NM' where id=7; -update noar tt set b0='1DR7JOE0K3I6LHHPV6YTAOK39YN6' where id=7; -update noar ti set b0='1DR7JOE0K3I6LHHPV6YTAOK39YN6' where id=7; -update noar tt set v0='I6X4RWB7KNGMX' where id=7; -update noar ti set v0='I6X4RWB7KNGMX' where id=7; -update noar tt set b1='2M1L5Q6IE6RKXXCARG3G' where id=7; -update noar ti set b1='2M1L5Q6IE6RKXXCARG3G' where id=7; -update noar tt set v0='HB89KGI' where id=7; -update noar ti set v0='HB89KGI' where id=7; -update noar tt set b2='E3F4X52INZYBPN' where id=7; -update noar ti set b2='E3F4X52INZYBPN' where id=7; -update noar tt set v0='94Q79ZPQ' where id=8; -update noar ti set v0='94Q79ZPQ' where id=8; -update noar tt set b0='MF2NV06' where id=8; -update noar ti set b0='MF2NV06' where id=8; -update noar tt set v0='WHC1TTOU9WB5G7V1L' where id=8; -update noar ti set v0='WHC1TTOU9WB5G7V1L' where id=8; -update noar tt set b1='UOFP6Q' where id=8; -update noar ti set b1='UOFP6Q' where id=8; -update noar tt set v0='TFAA7CBYCM' where id=8; -update noar ti set v0='TFAA7CBYCM' where id=8; -update noar tt set b2='UBXAVUGQZ3K1R6O42YOTDPAKB' where id=8; -update noar ti set b2='UBXAVUGQZ3K1R6O42YOTDPAKB' where id=8; -update noar tt set v0='NP0R2D4L39UZ5KHB3FGNKJJW8X0MKD' where id=9; -update noar ti set v0='NP0R2D4L39UZ5KHB3FGNKJJW8X0MKD' where id=9; -update noar tt set b0='W54TD8RFZJPL0CH' where id=9; -update noar ti set b0='W54TD8RFZJPL0CH' where id=9; -update noar tt set v0='HHP7FFFJLG6XAW' where id=9; -update noar ti set v0='HHP7FFFJLG6XAW' where id=9; -update noar tt set b1='QVM199Y8KLB' where id=9; -update noar ti set b1='QVM199Y8KLB' where id=9; -update noar tt set v0='BVLR61' where id=9; -update noar ti set v0='BVLR61' where id=9; -update noar tt set b2='4F4EMXB23ZMBZ' where id=9; -update noar ti set b2='4F4EMXB23ZMBZ' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -f0 int not null, -v0 varchar(32) not null, -b0 tinyblob not null, -b1 blob not null, -b2 blob not null -) engine=tokudb; -insert into tt values (1,0,'','','',''); -insert into tt values (2,0,'','','',''); -insert into tt values (3,0,'','','',''); -insert into tt values (4,0,'','','',''); -insert into tt values (5,0,'','','',''); -insert into tt values (6,0,'','','',''); -insert into tt values (7,0,'','','',''); -insert into tt values (8,0,'','','',''); -insert into tt values (9,0,'','','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='JGZ22PUX22RVYWUQ90NI0W' where id=1; -update noar ti set v0='JGZ22PUX22RVYWUQ90NI0W' where id=1; -update noar tt set b0='Y6Y491PDVJKINUAGF4HXB1' where id=1; -update noar ti set b0='Y6Y491PDVJKINUAGF4HXB1' where id=1; -update noar tt set v0='3MEOHP6BVGLTOWGWX' where id=1; -update noar ti set v0='3MEOHP6BVGLTOWGWX' where id=1; -update noar tt set b1='6IFIC' where id=1; -update noar ti set b1='6IFIC' where id=1; -update noar tt set v0='0QFO1J' where id=1; -update noar ti set v0='0QFO1J' where id=1; -update noar tt set b2='GP7V8FP358G5S6ZE123UZMMUT50V' where id=1; -update noar ti set b2='GP7V8FP358G5S6ZE123UZMMUT50V' where id=1; -update noar tt set v0='HR8' where id=2; -update noar ti set v0='HR8' where id=2; -update noar tt set b0='SGUB2' where id=2; -update noar ti set b0='SGUB2' where id=2; -update noar tt set v0='EQ' where id=2; -update noar ti set v0='EQ' where id=2; -update noar tt set b1='9AB7D4IVRSRRSZ99' where id=2; -update noar ti set b1='9AB7D4IVRSRRSZ99' where id=2; -update noar tt set v0='YIYKIYQ3NPQTDXT4SKP1EE4' where id=2; -update noar ti set v0='YIYKIYQ3NPQTDXT4SKP1EE4' where id=2; -update noar tt set b2='9BO4H8QVM64IMSIWATXXI3D5' where id=2; -update noar ti set b2='9BO4H8QVM64IMSIWATXXI3D5' where id=2; -update noar tt set v0='00CSJNTU00LPOWDN2' where id=3; -update noar ti set v0='00CSJNTU00LPOWDN2' where id=3; -update noar tt set b0='WDY4KP6TI6T0NJQ4' where id=3; -update noar ti set b0='WDY4KP6TI6T0NJQ4' where id=3; -update noar tt set v0='ROUAJGDG2ZAHLU8MBWV09ZKMBUQ8IXW9' where id=3; -update noar ti set v0='ROUAJGDG2ZAHLU8MBWV09ZKMBUQ8IXW9' where id=3; -update noar tt set b1='W3RM35S3XD7055ENC9QGD4RQUYMOSXY' where id=3; -update noar ti set b1='W3RM35S3XD7055ENC9QGD4RQUYMOSXY' where id=3; -update noar tt set v0='KCBO8YT5QQ3XX8UR303CN32TJ' where id=3; -update noar ti set v0='KCBO8YT5QQ3XX8UR303CN32TJ' where id=3; -update noar tt set b2='3QVT7VU4HNAA9M4K3RY' where id=3; -update noar ti set b2='3QVT7VU4HNAA9M4K3RY' where id=3; -update noar tt set v0='19HAA3' where id=4; -update noar ti set v0='19HAA3' where id=4; -update noar tt set b0='PHN1UGAGK91H1YG3SM0O5FOPDSSJN' where id=4; -update noar ti set b0='PHN1UGAGK91H1YG3SM0O5FOPDSSJN' where id=4; -update noar tt set v0='UH24UTV72RU4O52HF' where id=4; -update noar ti set v0='UH24UTV72RU4O52HF' where id=4; -update noar tt set b1='D' where id=4; -update noar ti set b1='D' where id=4; -update noar tt set v0='P7DVWXYY5AVEGL35CAY36R' where id=4; -update noar ti set v0='P7DVWXYY5AVEGL35CAY36R' where id=4; -update noar tt set b2='9MCHIPI' where id=4; -update noar ti set b2='9MCHIPI' where id=4; -update noar tt set v0='PLQ8YYR4VTVMUJX8WRAT75BL8BJ2WH03' where id=5; -update noar ti set v0='PLQ8YYR4VTVMUJX8WRAT75BL8BJ2WH03' where id=5; -update noar tt set b0='NJKSRC2YQ0' where id=5; -update noar ti set b0='NJKSRC2YQ0' where id=5; -update noar tt set v0='98C64' where id=5; -update noar ti set v0='98C64' where id=5; -update noar tt set b1='KXQCT7XYWHLOJSNEDRIUML' where id=5; -update noar ti set b1='KXQCT7XYWHLOJSNEDRIUML' where id=5; -update noar tt set v0='FI3' where id=5; -update noar ti set v0='FI3' where id=5; -update noar tt set b2='3B8B4' where id=5; -update noar ti set b2='3B8B4' where id=5; -update noar tt set v0='HB033COOVWJKICWALPEO' where id=6; -update noar ti set v0='HB033COOVWJKICWALPEO' where id=6; -update noar tt set b0='VVJTVSDU6V090WRVK6BXW07RYJH' where id=6; -update noar ti set b0='VVJTVSDU6V090WRVK6BXW07RYJH' where id=6; -update noar tt set v0='WFK7YDQ3N6STR' where id=6; -update noar ti set v0='WFK7YDQ3N6STR' where id=6; -update noar tt set b1='QBULJ4330JUTOYL1M' where id=6; -update noar ti set b1='QBULJ4330JUTOYL1M' where id=6; -update noar tt set v0='C3M9DJJ' where id=6; -update noar ti set v0='C3M9DJJ' where id=6; -update noar tt set b2='2P74326LDCSTLA7OK4' where id=6; -update noar ti set b2='2P74326LDCSTLA7OK4' where id=6; -update noar tt set v0='46BJOC70NG5DP4HM68ARTTP6L8HXHYII' where id=7; -update noar ti set v0='46BJOC70NG5DP4HM68ARTTP6L8HXHYII' where id=7; -update noar tt set b0='CUP3DH234BCVBMZ' where id=7; -update noar ti set b0='CUP3DH234BCVBMZ' where id=7; -update noar tt set v0='PER6R2JCKVZGB7J' where id=7; -update noar ti set v0='PER6R2JCKVZGB7J' where id=7; -update noar tt set b1='53NRH80AK7AXT1QXSDUOE38' where id=7; -update noar ti set b1='53NRH80AK7AXT1QXSDUOE38' where id=7; -update noar tt set v0='VT748Z0BGB1O802K' where id=7; -update noar ti set v0='VT748Z0BGB1O802K' where id=7; -update noar tt set b2='D' where id=7; -update noar ti set b2='D' where id=7; -update noar tt set v0='KSU4N' where id=8; -update noar ti set v0='KSU4N' where id=8; -update noar tt set b0='K1H6OGC9P1ZFQ' where id=8; -update noar ti set b0='K1H6OGC9P1ZFQ' where id=8; -update noar tt set v0='SOIS7YSD7Z' where id=8; -update noar ti set v0='SOIS7YSD7Z' where id=8; -update noar tt set b1='EHE6QU8O27TY20L051T2535SOKO5JMG' where id=8; -update noar ti set b1='EHE6QU8O27TY20L051T2535SOKO5JMG' where id=8; -update noar tt set v0='B8LZU3VOWWKN' where id=8; -update noar ti set v0='B8LZU3VOWWKN' where id=8; -update noar tt set b2='XUIIUYK5UH8G7' where id=8; -update noar ti set b2='XUIIUYK5UH8G7' where id=8; -update noar tt set v0='L9EPDQWUXG6R8U2Q' where id=9; -update noar ti set v0='L9EPDQWUXG6R8U2Q' where id=9; -update noar tt set b0='NUP1ZFAUNKWKSLU4OGWAO4N21' where id=9; -update noar ti set b0='NUP1ZFAUNKWKSLU4OGWAO4N21' where id=9; -update noar tt set v0='8XRYAZ' where id=9; -update noar ti set v0='8XRYAZ' where id=9; -update noar tt set b1='RN6TXKN4' where id=9; -update noar ti set b1='RN6TXKN4' where id=9; -update noar tt set v0='93H5657J0AOL4ZPI4SRA' where id=9; -update noar ti set v0='93H5657J0AOL4ZPI4SRA' where id=9; -update noar tt set b2='DUE35HFWL6GGA6RJ9R' where id=9; -update noar ti set b2='DUE35HFWL6GGA6RJ9R' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -f0 int not null, -v0 varchar(256) not null, -b0 tinyblob not null, -b1 blob not null, -b2 blob not null -) engine=tokudb; -insert into tt values (1,0,'','','',''); -insert into tt values (2,0,'','','',''); -insert into tt values (3,0,'','','',''); -insert into tt values (4,0,'','','',''); -insert into tt values (5,0,'','','',''); -insert into tt values (6,0,'','','',''); -insert into tt values (7,0,'','','',''); -insert into tt values (8,0,'','','',''); -insert into tt values (9,0,'','','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='PCDEW2UXS4MRD2769QUFSNV1NV2J' where id=1; -update noar ti set v0='PCDEW2UXS4MRD2769QUFSNV1NV2J' where id=1; -update noar tt set b0='8AEVLOYIXTK51YZ5XLYBP148GJK' where id=1; -update noar ti set b0='8AEVLOYIXTK51YZ5XLYBP148GJK' where id=1; -update noar tt set v0='Y56OUJ7X6KC5B5PNKV' where id=1; -update noar ti set v0='Y56OUJ7X6KC5B5PNKV' where id=1; -update noar tt set b1='46275Z336R900LG0' where id=1; -update noar ti set b1='46275Z336R900LG0' where id=1; -update noar tt set v0='N0QEM7KWBPBOSZJQOFMFII' where id=1; -update noar ti set v0='N0QEM7KWBPBOSZJQOFMFII' where id=1; -update noar tt set b2='SAN4NOL' where id=1; -update noar ti set b2='SAN4NOL' where id=1; -update noar tt set v0='75A1BLXT2CI1MY352DRWGH' where id=2; -update noar ti set v0='75A1BLXT2CI1MY352DRWGH' where id=2; -update noar tt set b0='BJSL60TCELZ06IWA2NVTQ1LW92C' where id=2; -update noar ti set b0='BJSL60TCELZ06IWA2NVTQ1LW92C' where id=2; -update noar tt set v0='INK' where id=2; -update noar ti set v0='INK' where id=2; -update noar tt set b1='UX3W0WU9F9R27SVY3' where id=2; -update noar ti set b1='UX3W0WU9F9R27SVY3' where id=2; -update noar tt set v0='202MO30MWSJ3RBGJ' where id=2; -update noar ti set v0='202MO30MWSJ3RBGJ' where id=2; -update noar tt set b2='U971UM3IOS7LSP0ABARE5SU1' where id=2; -update noar ti set b2='U971UM3IOS7LSP0ABARE5SU1' where id=2; -update noar tt set v0='J7N199SON5ZMNWW' where id=3; -update noar ti set v0='J7N199SON5ZMNWW' where id=3; -update noar tt set b0='TSCTQCKWTIA16HDFF3HQZLT7ZAO9ZLUA' where id=3; -update noar ti set b0='TSCTQCKWTIA16HDFF3HQZLT7ZAO9ZLUA' where id=3; -update noar tt set v0='7SYK77QJZL8CI5TFBB7Q92' where id=3; -update noar ti set v0='7SYK77QJZL8CI5TFBB7Q92' where id=3; -update noar tt set b1='STG' where id=3; -update noar ti set b1='STG' where id=3; -update noar tt set v0='3JQ4HGVAFN77' where id=3; -update noar ti set v0='3JQ4HGVAFN77' where id=3; -update noar tt set b2='ALTL3UIEV3DE3PJNS7X3ZD13M51D6X' where id=3; -update noar ti set b2='ALTL3UIEV3DE3PJNS7X3ZD13M51D6X' where id=3; -update noar tt set v0='NMHW6POKCLRE0SG5D' where id=4; -update noar ti set v0='NMHW6POKCLRE0SG5D' where id=4; -update noar tt set b0='9T1LN0NHL0WFPC4R0LF92RP49L3' where id=4; -update noar ti set b0='9T1LN0NHL0WFPC4R0LF92RP49L3' where id=4; -update noar tt set v0='IFV9V7M47G6LS1PIDA7L1LUMCNMV' where id=4; -update noar ti set v0='IFV9V7M47G6LS1PIDA7L1LUMCNMV' where id=4; -update noar tt set b1='E' where id=4; -update noar ti set b1='E' where id=4; -update noar tt set v0='LKSJSI3W6G2T6G1A4OFY4' where id=4; -update noar ti set v0='LKSJSI3W6G2T6G1A4OFY4' where id=4; -update noar tt set b2='O90GIRSQJFHMRRAZ3N22SC9XZV6WLI4N' where id=4; -update noar ti set b2='O90GIRSQJFHMRRAZ3N22SC9XZV6WLI4N' where id=4; -update noar tt set v0='S9GK6K05JI7NVTLWZU9F0HSM1H0Z' where id=5; -update noar ti set v0='S9GK6K05JI7NVTLWZU9F0HSM1H0Z' where id=5; -update noar tt set b0='Y943RBCB56KZWNP0OR58JQHFXI1' where id=5; -update noar ti set b0='Y943RBCB56KZWNP0OR58JQHFXI1' where id=5; -update noar tt set v0='XR0LUZ3NRULEL13F' where id=5; -update noar ti set v0='XR0LUZ3NRULEL13F' where id=5; -update noar tt set b1='UEU3FSKSTFUG34QK8S1' where id=5; -update noar ti set b1='UEU3FSKSTFUG34QK8S1' where id=5; -update noar tt set v0='NDS' where id=5; -update noar ti set v0='NDS' where id=5; -update noar tt set b2='1KH365LZF35GJPDCRK0VN48KILJL' where id=5; -update noar ti set b2='1KH365LZF35GJPDCRK0VN48KILJL' where id=5; -update noar tt set v0='TNPCV1Z4ZMYJCAOQRBP' where id=6; -update noar ti set v0='TNPCV1Z4ZMYJCAOQRBP' where id=6; -update noar tt set b0='P1E0YW' where id=6; -update noar ti set b0='P1E0YW' where id=6; -update noar tt set v0='Y8G0MAGA3EVQKQXP1YKWKMIGR' where id=6; -update noar ti set v0='Y8G0MAGA3EVQKQXP1YKWKMIGR' where id=6; -update noar tt set b1='BXQ8EB8GZ9KU6' where id=6; -update noar ti set b1='BXQ8EB8GZ9KU6' where id=6; -update noar tt set v0='P9EDQX45D649GHOK9QXV5KNGB' where id=6; -update noar ti set v0='P9EDQX45D649GHOK9QXV5KNGB' where id=6; -update noar tt set b2='8NVA' where id=6; -update noar ti set b2='8NVA' where id=6; -update noar tt set v0='9U' where id=7; -update noar ti set v0='9U' where id=7; -update noar tt set b0='CZE082LCU1ICVFMUJNAZ4L0MA7ZPJ' where id=7; -update noar ti set b0='CZE082LCU1ICVFMUJNAZ4L0MA7ZPJ' where id=7; -update noar tt set v0='7KA025ITKEY7XSO5DEJXF5' where id=7; -update noar ti set v0='7KA025ITKEY7XSO5DEJXF5' where id=7; -update noar tt set b1='QDPJWOZA785IWSOD74VGM4' where id=7; -update noar ti set b1='QDPJWOZA785IWSOD74VGM4' where id=7; -update noar tt set v0='5028WYOHG3QSDHY4IKO41BJ6UCRU' where id=7; -update noar ti set v0='5028WYOHG3QSDHY4IKO41BJ6UCRU' where id=7; -update noar tt set b2='D80FF0YB163LD844VQ573TL' where id=7; -update noar ti set b2='D80FF0YB163LD844VQ573TL' where id=7; -update noar tt set v0='A0BCIUZX8RYKAMDOOA1VTQ8I5Y' where id=8; -update noar ti set v0='A0BCIUZX8RYKAMDOOA1VTQ8I5Y' where id=8; -update noar tt set b0='6QJEW9' where id=8; -update noar ti set b0='6QJEW9' where id=8; -update noar tt set v0='W5IXOQAA4OBYPGB8' where id=8; -update noar ti set v0='W5IXOQAA4OBYPGB8' where id=8; -update noar tt set b1='4IN2M2UD' where id=8; -update noar ti set b1='4IN2M2UD' where id=8; -update noar tt set v0='05TE675X1A1DM' where id=8; -update noar ti set v0='05TE675X1A1DM' where id=8; -update noar tt set b2='3JYYJZ' where id=8; -update noar ti set b2='3JYYJZ' where id=8; -update noar tt set v0='EPFKWCVOPGXJCWGW' where id=9; -update noar ti set v0='EPFKWCVOPGXJCWGW' where id=9; -update noar tt set b0='D6N26Y0EB6XXR4EF2G' where id=9; -update noar ti set b0='D6N26Y0EB6XXR4EF2G' where id=9; -update noar tt set v0='0BW' where id=9; -update noar ti set v0='0BW' where id=9; -update noar tt set b1='U3' where id=9; -update noar ti set b1='U3' where id=9; -update noar tt set v0='OPITJ9GXYBBZLWD8VQOAIWVFW1P63' where id=9; -update noar ti set v0='OPITJ9GXYBBZLWD8VQOAIWVFW1P63' where id=9; -update noar tt set b2='7FDVO1BS5JVV08LUEU77BV' where id=9; -update noar ti set b2='7FDVO1BS5JVV08LUEU77BV' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -f0 int null, -v0 varchar(32) null, -b0 tinyblob null, -b1 blob null, -b2 mediumblob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='6B5LYFZEER6TF1OIDUAP8HD' where id=1; -update noar ti set v0='6B5LYFZEER6TF1OIDUAP8HD' where id=1; -update noar tt set b0='XFPXPKBN3792X8PNCA0TZ1TTHA9295R7' where id=1; -update noar ti set b0='XFPXPKBN3792X8PNCA0TZ1TTHA9295R7' where id=1; -update noar tt set v0='T82NXGLCTBNWD59' where id=1; -update noar ti set v0='T82NXGLCTBNWD59' where id=1; -update noar tt set b1='34F670' where id=1; -update noar ti set b1='34F670' where id=1; -update noar tt set v0='UR7FPKM' where id=1; -update noar ti set v0='UR7FPKM' where id=1; -update noar tt set b2='IIF0G8F0U1MSQ' where id=1; -update noar ti set b2='IIF0G8F0U1MSQ' where id=1; -update noar tt set v0='9KE2DXE' where id=2; -update noar ti set v0='9KE2DXE' where id=2; -update noar tt set b0='X58CN7EJI5TX4RY5VGFEOV2OPJ' where id=2; -update noar ti set b0='X58CN7EJI5TX4RY5VGFEOV2OPJ' where id=2; -update noar tt set v0='FM0PE' where id=2; -update noar ti set v0='FM0PE' where id=2; -update noar tt set b1='2HI8LRAFUFFGME20KEVE7PVUCEZ' where id=2; -update noar ti set b1='2HI8LRAFUFFGME20KEVE7PVUCEZ' where id=2; -update noar tt set v0='M2QL' where id=2; -update noar ti set v0='M2QL' where id=2; -update noar tt set b2='4QRFDXKH0GJBVB' where id=2; -update noar ti set b2='4QRFDXKH0GJBVB' where id=2; -update noar tt set v0='080BP' where id=3; -update noar ti set v0='080BP' where id=3; -update noar tt set b0='V2VN' where id=3; -update noar ti set b0='V2VN' where id=3; -update noar tt set v0='JPUGCY0NCBHGLVQO' where id=3; -update noar ti set v0='JPUGCY0NCBHGLVQO' where id=3; -update noar tt set b1='G5HAS6QK0BUWGF8' where id=3; -update noar ti set b1='G5HAS6QK0BUWGF8' where id=3; -update noar tt set v0='RYJASUZR' where id=3; -update noar ti set v0='RYJASUZR' where id=3; -update noar tt set b2='B2PUJJILJDPQGT4' where id=3; -update noar ti set b2='B2PUJJILJDPQGT4' where id=3; -update noar tt set v0='FQUAAEZQSUEP69LAOAQN' where id=4; -update noar ti set v0='FQUAAEZQSUEP69LAOAQN' where id=4; -update noar tt set b0='JXDCUFFWA8Q86SGAA8RBI' where id=4; -update noar ti set b0='JXDCUFFWA8Q86SGAA8RBI' where id=4; -update noar tt set v0='1VINNTSHBZ9H4' where id=4; -update noar ti set v0='1VINNTSHBZ9H4' where id=4; -update noar tt set b1='G7DZ3NE8JFO7P' where id=4; -update noar ti set b1='G7DZ3NE8JFO7P' where id=4; -update noar tt set v0='99F91LAHG944QVUL' where id=4; -update noar ti set v0='99F91LAHG944QVUL' where id=4; -update noar tt set b2='PZV' where id=4; -update noar ti set b2='PZV' where id=4; -update noar tt set v0='MWL6NQ8WFTJ6T' where id=5; -update noar ti set v0='MWL6NQ8WFTJ6T' where id=5; -update noar tt set b0='7FB36L2GM5JSHQD6Q3C3WT' where id=5; -update noar ti set b0='7FB36L2GM5JSHQD6Q3C3WT' where id=5; -update noar tt set v0='04298HR9ZRFL3PSD2GDV53B1MEP058' where id=5; -update noar ti set v0='04298HR9ZRFL3PSD2GDV53B1MEP058' where id=5; -update noar tt set b1='EUBD1KUO1S2J' where id=5; -update noar ti set b1='EUBD1KUO1S2J' where id=5; -update noar tt set v0='0VZ3ECY2IU1EMZA85TFWGLX6VKO5EP' where id=5; -update noar ti set v0='0VZ3ECY2IU1EMZA85TFWGLX6VKO5EP' where id=5; -update noar tt set b2='TRSJN9Z4HF16F' where id=5; -update noar ti set b2='TRSJN9Z4HF16F' where id=5; -update noar tt set v0='Y4U6AZ4DR8F' where id=6; -update noar ti set v0='Y4U6AZ4DR8F' where id=6; -update noar tt set b0='7LEFKGWT94FVEBOKYVR0IC' where id=6; -update noar ti set b0='7LEFKGWT94FVEBOKYVR0IC' where id=6; -update noar tt set v0='MV7F' where id=6; -update noar ti set v0='MV7F' where id=6; -update noar tt set b1='I7QR' where id=6; -update noar ti set b1='I7QR' where id=6; -update noar tt set v0='SCP3UDJLZJH0M2ZYEL41PDJU' where id=6; -update noar ti set v0='SCP3UDJLZJH0M2ZYEL41PDJU' where id=6; -update noar tt set b2='HYJTBRJ84KMJ0' where id=6; -update noar ti set b2='HYJTBRJ84KMJ0' where id=6; -update noar tt set v0='68XV89D4TG6JY' where id=7; -update noar ti set v0='68XV89D4TG6JY' where id=7; -update noar tt set b0='J4DAA' where id=7; -update noar ti set b0='J4DAA' where id=7; -update noar tt set v0='HOOS0S27Z1IQ' where id=7; -update noar ti set v0='HOOS0S27Z1IQ' where id=7; -update noar tt set b1='M5WVHVJQ' where id=7; -update noar ti set b1='M5WVHVJQ' where id=7; -update noar tt set v0='FZGNYL9XKC1IFGP5RMAWCJ28PCSTUSP' where id=7; -update noar ti set v0='FZGNYL9XKC1IFGP5RMAWCJ28PCSTUSP' where id=7; -update noar tt set b2='4H9JSEGPGIW0AQT95URDXWDCG3B129' where id=7; -update noar ti set b2='4H9JSEGPGIW0AQT95URDXWDCG3B129' where id=7; -update noar tt set v0='Q41UB2MFEMYICSMH8B5LSW6C288M4MV' where id=8; -update noar ti set v0='Q41UB2MFEMYICSMH8B5LSW6C288M4MV' where id=8; -update noar tt set b0='0W8CHC2R5O9RLJOJARXFSFX' where id=8; -update noar ti set b0='0W8CHC2R5O9RLJOJARXFSFX' where id=8; -update noar tt set v0='HAFBFNG' where id=8; -update noar ti set v0='HAFBFNG' where id=8; -update noar tt set b1='3UKFNBNFD96F1LG577F9SFC9F43H8P3A' where id=8; -update noar ti set b1='3UKFNBNFD96F1LG577F9SFC9F43H8P3A' where id=8; -update noar tt set v0='0SJK2YS5XP19S83RZP3SJ4' where id=8; -update noar ti set v0='0SJK2YS5XP19S83RZP3SJ4' where id=8; -update noar tt set b2='LKSR9R' where id=8; -update noar ti set b2='LKSR9R' where id=8; -update noar tt set v0='3' where id=9; -update noar ti set v0='3' where id=9; -update noar tt set b0='BUHAUWE' where id=9; -update noar ti set b0='BUHAUWE' where id=9; -update noar tt set v0='6KNM5ZR7TGKPYWQ7A5E08U76A' where id=9; -update noar ti set v0='6KNM5ZR7TGKPYWQ7A5E08U76A' where id=9; -update noar tt set b1='S' where id=9; -update noar ti set b1='S' where id=9; -update noar tt set v0='I' where id=9; -update noar ti set v0='I' where id=9; -update noar tt set b2='PUZIW8ML' where id=9; -update noar ti set b2='PUZIW8ML' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -f0 int null, -v0 varchar(256) null, -b0 tinyblob null, -b1 blob null, -b2 mediumblob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='C3DXT5S' where id=1; -update noar ti set v0='C3DXT5S' where id=1; -update noar tt set b0='8EO1WTUFC0LWN' where id=1; -update noar ti set b0='8EO1WTUFC0LWN' where id=1; -update noar tt set v0='DA2XQOYGHAL' where id=1; -update noar ti set v0='DA2XQOYGHAL' where id=1; -update noar tt set b1='LBVLH18GCGVCQMTRNA9' where id=1; -update noar ti set b1='LBVLH18GCGVCQMTRNA9' where id=1; -update noar tt set v0='WDOI0FG44RUVMDH04PQXXWFSPIHGY6BY' where id=1; -update noar ti set v0='WDOI0FG44RUVMDH04PQXXWFSPIHGY6BY' where id=1; -update noar tt set b2='R229LSDCR' where id=1; -update noar ti set b2='R229LSDCR' where id=1; -update noar tt set v0='5IDZ5YW0J7D6WMPET66JYLPH8Q5QCS' where id=2; -update noar ti set v0='5IDZ5YW0J7D6WMPET66JYLPH8Q5QCS' where id=2; -update noar tt set b0='HX' where id=2; -update noar ti set b0='HX' where id=2; -update noar tt set v0='VQMNJXZ8FEJODOCFVS4T5MOIRAXG' where id=2; -update noar ti set v0='VQMNJXZ8FEJODOCFVS4T5MOIRAXG' where id=2; -update noar tt set b1='RGI92TQN81' where id=2; -update noar ti set b1='RGI92TQN81' where id=2; -update noar tt set v0='2V2AJEC57QHJXHGTA' where id=2; -update noar ti set v0='2V2AJEC57QHJXHGTA' where id=2; -update noar tt set b2='C6PX0G' where id=2; -update noar ti set b2='C6PX0G' where id=2; -update noar tt set v0='F6UTTEO8JTKGDF36Y3X1E9PIIBX' where id=3; -update noar ti set v0='F6UTTEO8JTKGDF36Y3X1E9PIIBX' where id=3; -update noar tt set b0='7E1IVSHIIZ8ZZU52' where id=3; -update noar ti set b0='7E1IVSHIIZ8ZZU52' where id=3; -update noar tt set v0='5QT1NDMGX29M0XHTYOCYH' where id=3; -update noar ti set v0='5QT1NDMGX29M0XHTYOCYH' where id=3; -update noar tt set b1='EKC' where id=3; -update noar ti set b1='EKC' where id=3; -update noar tt set v0='5L4YFFLX3X4NMZNR1MPQG35' where id=3; -update noar ti set v0='5L4YFFLX3X4NMZNR1MPQG35' where id=3; -update noar tt set b2='XQ64OCC6NGJJN0E7C4TGVRWG2KXCQ6' where id=3; -update noar ti set b2='XQ64OCC6NGJJN0E7C4TGVRWG2KXCQ6' where id=3; -update noar tt set v0='OLUKY7GTN04KJE3TG' where id=4; -update noar ti set v0='OLUKY7GTN04KJE3TG' where id=4; -update noar tt set b0='66QXTP6BBCW95F' where id=4; -update noar ti set b0='66QXTP6BBCW95F' where id=4; -update noar tt set v0='K' where id=4; -update noar ti set v0='K' where id=4; -update noar tt set b1='GON6T3UBR1SNJLPOD32LK' where id=4; -update noar ti set b1='GON6T3UBR1SNJLPOD32LK' where id=4; -update noar tt set v0='VNRAU1JZB02LNK4E32PBV00Z9EEHBUKX' where id=4; -update noar ti set v0='VNRAU1JZB02LNK4E32PBV00Z9EEHBUKX' where id=4; -update noar tt set b2='F0PP9G4BKJGUN' where id=4; -update noar ti set b2='F0PP9G4BKJGUN' where id=4; -update noar tt set v0='HOEC' where id=5; -update noar ti set v0='HOEC' where id=5; -update noar tt set b0='E2CI2TNI8DHORJ' where id=5; -update noar ti set b0='E2CI2TNI8DHORJ' where id=5; -update noar tt set v0='CR0K0KDJ86VV201QK8XE06' where id=5; -update noar ti set v0='CR0K0KDJ86VV201QK8XE06' where id=5; -update noar tt set b1='SIU7Q73K80' where id=5; -update noar ti set b1='SIU7Q73K80' where id=5; -update noar tt set v0='F9RTRGD0KM4FJX9LR5TWH50IIFEUDX1M' where id=5; -update noar ti set v0='F9RTRGD0KM4FJX9LR5TWH50IIFEUDX1M' where id=5; -update noar tt set b2='ADPS5DX10VWCY46M1JMLHIDW336CA' where id=5; -update noar ti set b2='ADPS5DX10VWCY46M1JMLHIDW336CA' where id=5; -update noar tt set v0='QQS9FY9IEXNBYT6QDU9Q89' where id=6; -update noar ti set v0='QQS9FY9IEXNBYT6QDU9Q89' where id=6; -update noar tt set b0='CAPVR994XAZ17D97KIBW89A2D' where id=6; -update noar ti set b0='CAPVR994XAZ17D97KIBW89A2D' where id=6; -update noar tt set v0='SO6' where id=6; -update noar ti set v0='SO6' where id=6; -update noar tt set b1='OBJC0N9RL82WOX3226WVK0SEEELZRI' where id=6; -update noar ti set b1='OBJC0N9RL82WOX3226WVK0SEEELZRI' where id=6; -update noar tt set v0='LHUBM79WKW1GIS7W7NZJ0SLK' where id=6; -update noar ti set v0='LHUBM79WKW1GIS7W7NZJ0SLK' where id=6; -update noar tt set b2='7IIIVNPZOY7Y6PQOEGKT' where id=6; -update noar ti set b2='7IIIVNPZOY7Y6PQOEGKT' where id=6; -update noar tt set v0='GQGXDN6FKY0E5W8UX92R8C4DG3MMOSTS' where id=7; -update noar ti set v0='GQGXDN6FKY0E5W8UX92R8C4DG3MMOSTS' where id=7; -update noar tt set b0='4ASI9COMIRVZCJ9HUDU2RE3AOODA8S0' where id=7; -update noar ti set b0='4ASI9COMIRVZCJ9HUDU2RE3AOODA8S0' where id=7; -update noar tt set v0='KSWFSU' where id=7; -update noar ti set v0='KSWFSU' where id=7; -update noar tt set b1='B6TAA473WR' where id=7; -update noar ti set b1='B6TAA473WR' where id=7; -update noar tt set v0='XI2CF6BS8Q94IG664R7BFHI4EZ3LB' where id=7; -update noar ti set v0='XI2CF6BS8Q94IG664R7BFHI4EZ3LB' where id=7; -update noar tt set b2='C3JB6EZ31V0LN2Y9GIN' where id=7; -update noar ti set b2='C3JB6EZ31V0LN2Y9GIN' where id=7; -update noar tt set v0='6I2Z81YA2UPRQOVI' where id=8; -update noar ti set v0='6I2Z81YA2UPRQOVI' where id=8; -update noar tt set b0='162Z4MPQADM' where id=8; -update noar ti set b0='162Z4MPQADM' where id=8; -update noar tt set v0='23GRKMS' where id=8; -update noar ti set v0='23GRKMS' where id=8; -update noar tt set b1='0YAYYLOQ5FR2K6LNRDZU2' where id=8; -update noar ti set b1='0YAYYLOQ5FR2K6LNRDZU2' where id=8; -update noar tt set v0='JIJDACY9Y0ULYG6DIETHY474' where id=8; -update noar ti set v0='JIJDACY9Y0ULYG6DIETHY474' where id=8; -update noar tt set b2='59M2PBKEX2HYURXMS0J7AZ1KXMF8' where id=8; -update noar ti set b2='59M2PBKEX2HYURXMS0J7AZ1KXMF8' where id=8; -update noar tt set v0='3KX7I4EMHI1TCEAZYR504DP7N' where id=9; -update noar ti set v0='3KX7I4EMHI1TCEAZYR504DP7N' where id=9; -update noar tt set b0='4GE5EQ7VU2L' where id=9; -update noar ti set b0='4GE5EQ7VU2L' where id=9; -update noar tt set v0='NPH7MHLZXCI5ZLK4X' where id=9; -update noar ti set v0='NPH7MHLZXCI5ZLK4X' where id=9; -update noar tt set b1='QS67A8QQYKBTSONRU8P' where id=9; -update noar ti set b1='QS67A8QQYKBTSONRU8P' where id=9; -update noar tt set v0='IYH360I' where id=9; -update noar ti set v0='IYH360I' where id=9; -update noar tt set b2='ZH' where id=9; -update noar ti set b2='ZH' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -f0 int not null, -v0 varchar(32) not null, -b0 tinyblob not null, -b1 blob not null, -b2 mediumblob not null -) engine=tokudb; -insert into tt values (1,0,'','','',''); -insert into tt values (2,0,'','','',''); -insert into tt values (3,0,'','','',''); -insert into tt values (4,0,'','','',''); -insert into tt values (5,0,'','','',''); -insert into tt values (6,0,'','','',''); -insert into tt values (7,0,'','','',''); -insert into tt values (8,0,'','','',''); -insert into tt values (9,0,'','','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='EY2KOT82FZ4FU' where id=1; -update noar ti set v0='EY2KOT82FZ4FU' where id=1; -update noar tt set b0='M9Y9H' where id=1; -update noar ti set b0='M9Y9H' where id=1; -update noar tt set v0='V4CPWY9' where id=1; -update noar ti set v0='V4CPWY9' where id=1; -update noar tt set b1='RLOVRWMKZNLNL9AY9F' where id=1; -update noar ti set b1='RLOVRWMKZNLNL9AY9F' where id=1; -update noar tt set v0='HVKEPSI' where id=1; -update noar ti set v0='HVKEPSI' where id=1; -update noar tt set b2='FSUWSIP1N8LH1RGTZP' where id=1; -update noar ti set b2='FSUWSIP1N8LH1RGTZP' where id=1; -update noar tt set v0='GV0H6I0L4DR0G' where id=2; -update noar ti set v0='GV0H6I0L4DR0G' where id=2; -update noar tt set b0='X0ITOY' where id=2; -update noar ti set b0='X0ITOY' where id=2; -update noar tt set v0='W' where id=2; -update noar ti set v0='W' where id=2; -update noar tt set b1='ZE2WQ9' where id=2; -update noar ti set b1='ZE2WQ9' where id=2; -update noar tt set v0='AXT1DCWHH6ADJED' where id=2; -update noar ti set v0='AXT1DCWHH6ADJED' where id=2; -update noar tt set b2='BQLKNKZU5P' where id=2; -update noar ti set b2='BQLKNKZU5P' where id=2; -update noar tt set v0='EV655YZBBY9' where id=3; -update noar ti set v0='EV655YZBBY9' where id=3; -update noar tt set b0='YVL' where id=3; -update noar ti set b0='YVL' where id=3; -update noar tt set v0='5BM4SI9T74QYJ5DO' where id=3; -update noar ti set v0='5BM4SI9T74QYJ5DO' where id=3; -update noar tt set b1='K2I08J6D' where id=3; -update noar ti set b1='K2I08J6D' where id=3; -update noar tt set v0='7YHPSP' where id=3; -update noar ti set v0='7YHPSP' where id=3; -update noar tt set b2='GSZA' where id=3; -update noar ti set b2='GSZA' where id=3; -update noar tt set v0='KW837W77GBTV3YIVT0M6DBXLLLUPO' where id=4; -update noar ti set v0='KW837W77GBTV3YIVT0M6DBXLLLUPO' where id=4; -update noar tt set b0='BW0S60WQ2SKCT75DZBJ2V' where id=4; -update noar ti set b0='BW0S60WQ2SKCT75DZBJ2V' where id=4; -update noar tt set v0='XLVI9UGH2QT8DIHLZOFVS0RLIS0HK0XB' where id=4; -update noar ti set v0='XLVI9UGH2QT8DIHLZOFVS0RLIS0HK0XB' where id=4; -update noar tt set b1='KELX3DWU3221X6DRMFHCR3FKUZ3Y6MM5' where id=4; -update noar ti set b1='KELX3DWU3221X6DRMFHCR3FKUZ3Y6MM5' where id=4; -update noar tt set v0='NMYYLI' where id=4; -update noar ti set v0='NMYYLI' where id=4; -update noar tt set b2='R8GB1X56EK2' where id=4; -update noar ti set b2='R8GB1X56EK2' where id=4; -update noar tt set v0='T7HS2RGP' where id=5; -update noar ti set v0='T7HS2RGP' where id=5; -update noar tt set b0='MAWBUNW' where id=5; -update noar ti set b0='MAWBUNW' where id=5; -update noar tt set v0='RHUV9VBFZWIVS0PQM3AQ' where id=5; -update noar ti set v0='RHUV9VBFZWIVS0PQM3AQ' where id=5; -update noar tt set b1='W1GTO1E' where id=5; -update noar ti set b1='W1GTO1E' where id=5; -update noar tt set v0='MI' where id=5; -update noar ti set v0='MI' where id=5; -update noar tt set b2='2FMUZ' where id=5; -update noar ti set b2='2FMUZ' where id=5; -update noar tt set v0='5UHFDUT' where id=6; -update noar ti set v0='5UHFDUT' where id=6; -update noar tt set b0='PO82BUFTM8UW4T9CW5CE' where id=6; -update noar ti set b0='PO82BUFTM8UW4T9CW5CE' where id=6; -update noar tt set v0='5O6JJ0OLDL87SD' where id=6; -update noar ti set v0='5O6JJ0OLDL87SD' where id=6; -update noar tt set b1='TBKKH643Y5MLRMDH5NZIVJZ9HP1N1' where id=6; -update noar ti set b1='TBKKH643Y5MLRMDH5NZIVJZ9HP1N1' where id=6; -update noar tt set v0='AE3' where id=6; -update noar ti set v0='AE3' where id=6; -update noar tt set b2='XZQ' where id=6; -update noar ti set b2='XZQ' where id=6; -update noar tt set v0='IK71I8BNGAO' where id=7; -update noar ti set v0='IK71I8BNGAO' where id=7; -update noar tt set b0='LKRWNU7LSVDDS1AV6SSL0VZJRK271CCL' where id=7; -update noar ti set b0='LKRWNU7LSVDDS1AV6SSL0VZJRK271CCL' where id=7; -update noar tt set v0='XBHNEAGTQH' where id=7; -update noar ti set v0='XBHNEAGTQH' where id=7; -update noar tt set b1='TZ7HA' where id=7; -update noar ti set b1='TZ7HA' where id=7; -update noar tt set v0='UZGTIP3CTTI8296N3W64WI1FBED' where id=7; -update noar ti set v0='UZGTIP3CTTI8296N3W64WI1FBED' where id=7; -update noar tt set b2='1HO' where id=7; -update noar ti set b2='1HO' where id=7; -update noar tt set v0='QZGTOMM6CA' where id=8; -update noar ti set v0='QZGTOMM6CA' where id=8; -update noar tt set b0='QNS2ENVLTD11WO' where id=8; -update noar ti set b0='QNS2ENVLTD11WO' where id=8; -update noar tt set v0='2F77494RHWG06SAGISA' where id=8; -update noar ti set v0='2F77494RHWG06SAGISA' where id=8; -update noar tt set b1='U' where id=8; -update noar ti set b1='U' where id=8; -update noar tt set v0='JHV3S2WSK1Q1FTMOZQMT' where id=8; -update noar ti set v0='JHV3S2WSK1Q1FTMOZQMT' where id=8; -update noar tt set b2='8G3144RP88EOQI3IJX2PKFEJJCMBZFFA' where id=8; -update noar ti set b2='8G3144RP88EOQI3IJX2PKFEJJCMBZFFA' where id=8; -update noar tt set v0='4H5EGT9UOKKP2F113ZE3RWOAQ5G' where id=9; -update noar ti set v0='4H5EGT9UOKKP2F113ZE3RWOAQ5G' where id=9; -update noar tt set b0='MS' where id=9; -update noar ti set b0='MS' where id=9; -update noar tt set v0='27YMHNTMO' where id=9; -update noar ti set v0='27YMHNTMO' where id=9; -update noar tt set b1='0WMAH17RW0XSEK67M5DWE8FM312S' where id=9; -update noar ti set b1='0WMAH17RW0XSEK67M5DWE8FM312S' where id=9; -update noar tt set v0='72H94E7RWBSWH' where id=9; -update noar ti set v0='72H94E7RWBSWH' where id=9; -update noar tt set b2='KKN1RK271JNFCFA8CFLAMS85' where id=9; -update noar ti set b2='KKN1RK271JNFCFA8CFLAMS85' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -f0 int not null, -v0 varchar(256) not null, -b0 tinyblob not null, -b1 blob not null, -b2 mediumblob not null -) engine=tokudb; -insert into tt values (1,0,'','','',''); -insert into tt values (2,0,'','','',''); -insert into tt values (3,0,'','','',''); -insert into tt values (4,0,'','','',''); -insert into tt values (5,0,'','','',''); -insert into tt values (6,0,'','','',''); -insert into tt values (7,0,'','','',''); -insert into tt values (8,0,'','','',''); -insert into tt values (9,0,'','','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='F47PP3MSOMOXLF0VPVO5HR2XMQ' where id=1; -update noar ti set v0='F47PP3MSOMOXLF0VPVO5HR2XMQ' where id=1; -update noar tt set b0='JHO0QT5EDZE9HC0DA1EUQ' where id=1; -update noar ti set b0='JHO0QT5EDZE9HC0DA1EUQ' where id=1; -update noar tt set v0='PPKUUXRW3JI' where id=1; -update noar ti set v0='PPKUUXRW3JI' where id=1; -update noar tt set b1='5ENA40PFDZQ7BEAS' where id=1; -update noar ti set b1='5ENA40PFDZQ7BEAS' where id=1; -update noar tt set v0='8' where id=1; -update noar ti set v0='8' where id=1; -update noar tt set b2='QYXB85F79E8K1O9VV58F53YVMY811NZR' where id=1; -update noar ti set b2='QYXB85F79E8K1O9VV58F53YVMY811NZR' where id=1; -update noar tt set v0='ZJWX' where id=2; -update noar ti set v0='ZJWX' where id=2; -update noar tt set b0='AHDNUCOCHS0U8GLH' where id=2; -update noar ti set b0='AHDNUCOCHS0U8GLH' where id=2; -update noar tt set v0='HNGZ2XPYQ' where id=2; -update noar ti set v0='HNGZ2XPYQ' where id=2; -update noar tt set b1='YB0WZHGHEBC6JQIZ' where id=2; -update noar ti set b1='YB0WZHGHEBC6JQIZ' where id=2; -update noar tt set v0='ZB5UW3UVZ7CPYXZ4TEIXW6BP' where id=2; -update noar ti set v0='ZB5UW3UVZ7CPYXZ4TEIXW6BP' where id=2; -update noar tt set b2='BQYI0XVEATBV1S8V45LZFAZUFV5FF' where id=2; -update noar ti set b2='BQYI0XVEATBV1S8V45LZFAZUFV5FF' where id=2; -update noar tt set v0='QCSNGR51XP22R0PJH5VKLZ61IILWLV' where id=3; -update noar ti set v0='QCSNGR51XP22R0PJH5VKLZ61IILWLV' where id=3; -update noar tt set b0='8BHWG3YMZ9S5Y' where id=3; -update noar ti set b0='8BHWG3YMZ9S5Y' where id=3; -update noar tt set v0='4LJQKTEWJIDBICUEJ4JVMAR' where id=3; -update noar ti set v0='4LJQKTEWJIDBICUEJ4JVMAR' where id=3; -update noar tt set b1='P7X4LP2CPD4M3O' where id=3; -update noar ti set b1='P7X4LP2CPD4M3O' where id=3; -update noar tt set v0='NAJH6NAG93V' where id=3; -update noar ti set v0='NAJH6NAG93V' where id=3; -update noar tt set b2='NM5R9HVG' where id=3; -update noar ti set b2='NM5R9HVG' where id=3; -update noar tt set v0='F0W7KZJLT7W37YWETQRIC7YIOFLFJ' where id=4; -update noar ti set v0='F0W7KZJLT7W37YWETQRIC7YIOFLFJ' where id=4; -update noar tt set b0='V1S' where id=4; -update noar ti set b0='V1S' where id=4; -update noar tt set v0='QG939T0RCTZZOK45OI' where id=4; -update noar ti set v0='QG939T0RCTZZOK45OI' where id=4; -update noar tt set b1='SNNLYMMNJH' where id=4; -update noar ti set b1='SNNLYMMNJH' where id=4; -update noar tt set v0='HJM1CT8RBSCD2VT9A9S1GQY' where id=4; -update noar ti set v0='HJM1CT8RBSCD2VT9A9S1GQY' where id=4; -update noar tt set b2='Z2JQCR43FP91R0PYW0JWFQ6H84N4' where id=4; -update noar ti set b2='Z2JQCR43FP91R0PYW0JWFQ6H84N4' where id=4; -update noar tt set v0='A' where id=5; -update noar ti set v0='A' where id=5; -update noar tt set b0='4A27OKHX0IXYTLXDQTC1JD0V' where id=5; -update noar ti set b0='4A27OKHX0IXYTLXDQTC1JD0V' where id=5; -update noar tt set v0='BDM4L1S9S6PC' where id=5; -update noar ti set v0='BDM4L1S9S6PC' where id=5; -update noar tt set b1='SWM1UC59OEZF99YJ' where id=5; -update noar ti set b1='SWM1UC59OEZF99YJ' where id=5; -update noar tt set v0='LBA8NGT8OS5AG239F' where id=5; -update noar ti set v0='LBA8NGT8OS5AG239F' where id=5; -update noar tt set b2='6K63LDEO5V857YD65CCJPLPIM78NQHYL' where id=5; -update noar ti set b2='6K63LDEO5V857YD65CCJPLPIM78NQHYL' where id=5; -update noar tt set v0='5B' where id=6; -update noar ti set v0='5B' where id=6; -update noar tt set b0='DE1ZCYS7YGC0RIJSOQ4B1R6VTYR6C' where id=6; -update noar ti set b0='DE1ZCYS7YGC0RIJSOQ4B1R6VTYR6C' where id=6; -update noar tt set v0='TNSW6MX2025GN4FAHQV7VO4CP' where id=6; -update noar ti set v0='TNSW6MX2025GN4FAHQV7VO4CP' where id=6; -update noar tt set b1='AVJW' where id=6; -update noar ti set b1='AVJW' where id=6; -update noar tt set v0='170QOOJCSKFNFBDELG9DU38DB75' where id=6; -update noar ti set v0='170QOOJCSKFNFBDELG9DU38DB75' where id=6; -update noar tt set b2='86B4OYLL764FGSPLRTJW3SSAKLE1YFT' where id=6; -update noar ti set b2='86B4OYLL764FGSPLRTJW3SSAKLE1YFT' where id=6; -update noar tt set v0='I' where id=7; -update noar ti set v0='I' where id=7; -update noar tt set b0='L1X29TN9QIECOHR2UFKYB12DMQV0O' where id=7; -update noar ti set b0='L1X29TN9QIECOHR2UFKYB12DMQV0O' where id=7; -update noar tt set v0='EJRE4JFNAOAK847M55GLUWBNWE' where id=7; -update noar ti set v0='EJRE4JFNAOAK847M55GLUWBNWE' where id=7; -update noar tt set b1='UKTH3YBA3W1771A' where id=7; -update noar ti set b1='UKTH3YBA3W1771A' where id=7; -update noar tt set v0='OWCQ6OYM0BXPA3F18K0ZAZIGHKOD' where id=7; -update noar ti set v0='OWCQ6OYM0BXPA3F18K0ZAZIGHKOD' where id=7; -update noar tt set b2='MJMJIHWB6QJNN8RBO67FHA' where id=7; -update noar ti set b2='MJMJIHWB6QJNN8RBO67FHA' where id=7; -update noar tt set v0='UAIS15X33YK46N' where id=8; -update noar ti set v0='UAIS15X33YK46N' where id=8; -update noar tt set b0='7ATDEB4XSSL8MYRN' where id=8; -update noar ti set b0='7ATDEB4XSSL8MYRN' where id=8; -update noar tt set v0='MV5LZ4XYDJ' where id=8; -update noar ti set v0='MV5LZ4XYDJ' where id=8; -update noar tt set b1='5T' where id=8; -update noar ti set b1='5T' where id=8; -update noar tt set v0='NHS2853EAA' where id=8; -update noar ti set v0='NHS2853EAA' where id=8; -update noar tt set b2='H7F8K8NZOFTNW6X1VJ6LAC' where id=8; -update noar ti set b2='H7F8K8NZOFTNW6X1VJ6LAC' where id=8; -update noar tt set v0='0AE69HV' where id=9; -update noar ti set v0='0AE69HV' where id=9; -update noar tt set b0='RSKND4QZZ8U98W80Q' where id=9; -update noar ti set b0='RSKND4QZZ8U98W80Q' where id=9; -update noar tt set v0='417IGVZ8QR8ER9Q2U' where id=9; -update noar ti set v0='417IGVZ8QR8ER9Q2U' where id=9; -update noar tt set b1='ABR1A1MUSQHULUDYEP7NVNC9ZJ5' where id=9; -update noar ti set b1='ABR1A1MUSQHULUDYEP7NVNC9ZJ5' where id=9; -update noar tt set v0='PQRCI081DPZJGQYNV8KZHN' where id=9; -update noar ti set v0='PQRCI081DPZJGQYNV8KZHN' where id=9; -update noar tt set b2='505DPHW1EXFMR' where id=9; -update noar ti set b2='505DPHW1EXFMR' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -f0 int null, -v0 varchar(32) null, -b0 tinyblob null, -b1 blob null, -b2 longblob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='WDHRS33KNLU32YXJP21A768C' where id=1; -update noar ti set v0='WDHRS33KNLU32YXJP21A768C' where id=1; -update noar tt set b0='MT48Z8JVYERY' where id=1; -update noar ti set b0='MT48Z8JVYERY' where id=1; -update noar tt set v0='IBO854VLI1' where id=1; -update noar ti set v0='IBO854VLI1' where id=1; -update noar tt set b1='MOZBITZUWASZ9JYCMX80' where id=1; -update noar ti set b1='MOZBITZUWASZ9JYCMX80' where id=1; -update noar tt set v0='RIF9NKVN88ENLI75WZ2OXDL92EQQWIW' where id=1; -update noar ti set v0='RIF9NKVN88ENLI75WZ2OXDL92EQQWIW' where id=1; -update noar tt set b2='K8SXDWAT7' where id=1; -update noar ti set b2='K8SXDWAT7' where id=1; -update noar tt set v0='X22TLC9EGL16' where id=2; -update noar ti set v0='X22TLC9EGL16' where id=2; -update noar tt set b0='08L4YG2DL6QRHQ0XO9S84GR' where id=2; -update noar ti set b0='08L4YG2DL6QRHQ0XO9S84GR' where id=2; -update noar tt set v0='ILB75339J325GRXFYRFFWWN9WEDA3' where id=2; -update noar ti set v0='ILB75339J325GRXFYRFFWWN9WEDA3' where id=2; -update noar tt set b1='MIYQRPKROHMWFRPBJH8Z9TFC' where id=2; -update noar ti set b1='MIYQRPKROHMWFRPBJH8Z9TFC' where id=2; -update noar tt set v0='VGZMHDKLJD4' where id=2; -update noar ti set v0='VGZMHDKLJD4' where id=2; -update noar tt set b2='1' where id=2; -update noar ti set b2='1' where id=2; -update noar tt set v0='9TJW89D1O' where id=3; -update noar ti set v0='9TJW89D1O' where id=3; -update noar tt set b0='ADJJ0Q417KDF39P96SLWHVTALR1X' where id=3; -update noar ti set b0='ADJJ0Q417KDF39P96SLWHVTALR1X' where id=3; -update noar tt set v0='P2V' where id=3; -update noar ti set v0='P2V' where id=3; -update noar tt set b1='BMQN6LGMA96C381159TO5AP9K' where id=3; -update noar ti set b1='BMQN6LGMA96C381159TO5AP9K' where id=3; -update noar tt set v0='XHA42IO' where id=3; -update noar ti set v0='XHA42IO' where id=3; -update noar tt set b2='P2W54ORD96LT3SNG84F1' where id=3; -update noar ti set b2='P2W54ORD96LT3SNG84F1' where id=3; -update noar tt set v0='NGGBXXO71SJZOTSQXI1NG6UCHCN91' where id=4; -update noar ti set v0='NGGBXXO71SJZOTSQXI1NG6UCHCN91' where id=4; -update noar tt set b0='L1ZPXHQ1JL' where id=4; -update noar ti set b0='L1ZPXHQ1JL' where id=4; -update noar tt set v0='O6BD1XKCK5FBOY6H54ETMMRN6' where id=4; -update noar ti set v0='O6BD1XKCK5FBOY6H54ETMMRN6' where id=4; -update noar tt set b1='UH3BS8VNNKX3ASL9' where id=4; -update noar ti set b1='UH3BS8VNNKX3ASL9' where id=4; -update noar tt set v0='GPBTD6L8RYD5QCIPK6VD3HZ8IGTUGA' where id=4; -update noar ti set v0='GPBTD6L8RYD5QCIPK6VD3HZ8IGTUGA' where id=4; -update noar tt set b2='9AZIG1SYZ9HG' where id=4; -update noar ti set b2='9AZIG1SYZ9HG' where id=4; -update noar tt set v0='NNZLTH' where id=5; -update noar ti set v0='NNZLTH' where id=5; -update noar tt set b0='94BZ3UMM7SWIRCHEDYFII' where id=5; -update noar ti set b0='94BZ3UMM7SWIRCHEDYFII' where id=5; -update noar tt set v0='HY2UPSP89T4BENWNM21FV5FQDLC' where id=5; -update noar ti set v0='HY2UPSP89T4BENWNM21FV5FQDLC' where id=5; -update noar tt set b1='I1TDJM' where id=5; -update noar ti set b1='I1TDJM' where id=5; -update noar tt set v0='CG6EOB89HUB7RA6RI64JK4O' where id=5; -update noar ti set v0='CG6EOB89HUB7RA6RI64JK4O' where id=5; -update noar tt set b2='ALSO4' where id=5; -update noar ti set b2='ALSO4' where id=5; -update noar tt set v0='UAB5AOOZLXNN7BXTEBDB' where id=6; -update noar ti set v0='UAB5AOOZLXNN7BXTEBDB' where id=6; -update noar tt set b0='I7' where id=6; -update noar ti set b0='I7' where id=6; -update noar tt set v0='8AEU5SN6QL4HZ3ZRY52GX2LBJIL' where id=6; -update noar ti set v0='8AEU5SN6QL4HZ3ZRY52GX2LBJIL' where id=6; -update noar tt set b1='UEPO6' where id=6; -update noar ti set b1='UEPO6' where id=6; -update noar tt set v0='CRK9W1DT' where id=6; -update noar ti set v0='CRK9W1DT' where id=6; -update noar tt set b2='P9Y7TLVVIFW8' where id=6; -update noar ti set b2='P9Y7TLVVIFW8' where id=6; -update noar tt set v0='XT5J63Z5H38I3TQWP3WDUO355V1J' where id=7; -update noar ti set v0='XT5J63Z5H38I3TQWP3WDUO355V1J' where id=7; -update noar tt set b0='20YY3GGQH2Z' where id=7; -update noar ti set b0='20YY3GGQH2Z' where id=7; -update noar tt set v0='ZE09IM92WRDK4FLPU73B8MYQ8KEFZB' where id=7; -update noar ti set v0='ZE09IM92WRDK4FLPU73B8MYQ8KEFZB' where id=7; -update noar tt set b1='LQ72X3FWAC2XW5KJDC3IU9PAUJVR4' where id=7; -update noar ti set b1='LQ72X3FWAC2XW5KJDC3IU9PAUJVR4' where id=7; -update noar tt set v0='U' where id=7; -update noar ti set v0='U' where id=7; -update noar tt set b2='2ROGFED5' where id=7; -update noar ti set b2='2ROGFED5' where id=7; -update noar tt set v0='ZONDL0IBOLZDU9H273IVP74YMNOI3BS9' where id=8; -update noar ti set v0='ZONDL0IBOLZDU9H273IVP74YMNOI3BS9' where id=8; -update noar tt set b0='6O25X1RVAIHQ' where id=8; -update noar ti set b0='6O25X1RVAIHQ' where id=8; -update noar tt set v0='6ZD6IJP43TW' where id=8; -update noar ti set v0='6ZD6IJP43TW' where id=8; -update noar tt set b1='6I0S1FVOFA8RB0' where id=8; -update noar ti set b1='6I0S1FVOFA8RB0' where id=8; -update noar tt set v0='RLXHM9HN2LM7T026A05ITRDTV' where id=8; -update noar ti set v0='RLXHM9HN2LM7T026A05ITRDTV' where id=8; -update noar tt set b2='WGT957DVXGCAA7HT' where id=8; -update noar ti set b2='WGT957DVXGCAA7HT' where id=8; -update noar tt set v0='PASDGS5HN57VJM2UMWJ388' where id=9; -update noar ti set v0='PASDGS5HN57VJM2UMWJ388' where id=9; -update noar tt set b0='R3HCKR5HHB7G591NWRUHM0' where id=9; -update noar ti set b0='R3HCKR5HHB7G591NWRUHM0' where id=9; -update noar tt set v0='3Q4UCD7DOJJ1DQFRTEUVZU4IFB' where id=9; -update noar ti set v0='3Q4UCD7DOJJ1DQFRTEUVZU4IFB' where id=9; -update noar tt set b1='SCW0N5NDPKB0NHK9TJ' where id=9; -update noar ti set b1='SCW0N5NDPKB0NHK9TJ' where id=9; -update noar tt set v0='2YAYTWYB2XF3RBQYMSA78X5WRCWS' where id=9; -update noar ti set v0='2YAYTWYB2XF3RBQYMSA78X5WRCWS' where id=9; -update noar tt set b2='U8W5KH07VVXYT4LRTUAFIPCVII7YPS8F' where id=9; -update noar ti set b2='U8W5KH07VVXYT4LRTUAFIPCVII7YPS8F' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -f0 int null, -v0 varchar(256) null, -b0 tinyblob null, -b1 blob null, -b2 longblob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='NTBA40QD64OZI9SOUMH' where id=1; -update noar ti set v0='NTBA40QD64OZI9SOUMH' where id=1; -update noar tt set b0='Q4LM' where id=1; -update noar ti set b0='Q4LM' where id=1; -update noar tt set v0='UD6C9R8TS93UM62PGW51KV78' where id=1; -update noar ti set v0='UD6C9R8TS93UM62PGW51KV78' where id=1; -update noar tt set b1='WTU0GJ3QIS4M' where id=1; -update noar ti set b1='WTU0GJ3QIS4M' where id=1; -update noar tt set v0='0AJU' where id=1; -update noar ti set v0='0AJU' where id=1; -update noar tt set b2='U803RIBS0KKX3VXBW' where id=1; -update noar ti set b2='U803RIBS0KKX3VXBW' where id=1; -update noar tt set v0='XW82C4PGSSYF8A85Z3TB8LTH07GU' where id=2; -update noar ti set v0='XW82C4PGSSYF8A85Z3TB8LTH07GU' where id=2; -update noar tt set b0='6CWV' where id=2; -update noar ti set b0='6CWV' where id=2; -update noar tt set v0='CPE' where id=2; -update noar ti set v0='CPE' where id=2; -update noar tt set b1='09I17I8ZA4O33EXT4ANNMA0Y5' where id=2; -update noar ti set b1='09I17I8ZA4O33EXT4ANNMA0Y5' where id=2; -update noar tt set v0='R' where id=2; -update noar ti set v0='R' where id=2; -update noar tt set b2='OABDSQSZ14' where id=2; -update noar ti set b2='OABDSQSZ14' where id=2; -update noar tt set v0='LKZ7QI0PERNZQY' where id=3; -update noar ti set v0='LKZ7QI0PERNZQY' where id=3; -update noar tt set b0='RUPT58G4NO9KBTDLO2T7AM7T' where id=3; -update noar ti set b0='RUPT58G4NO9KBTDLO2T7AM7T' where id=3; -update noar tt set v0='1E4REOGM52K' where id=3; -update noar ti set v0='1E4REOGM52K' where id=3; -update noar tt set b1='HYO3NDK2' where id=3; -update noar ti set b1='HYO3NDK2' where id=3; -update noar tt set v0='SC1Z' where id=3; -update noar ti set v0='SC1Z' where id=3; -update noar tt set b2='0' where id=3; -update noar ti set b2='0' where id=3; -update noar tt set v0='C' where id=4; -update noar ti set v0='C' where id=4; -update noar tt set b0='ARJMG8ZXXRKLDXZ' where id=4; -update noar ti set b0='ARJMG8ZXXRKLDXZ' where id=4; -update noar tt set v0='ZP1R308EZ87A82Q' where id=4; -update noar ti set v0='ZP1R308EZ87A82Q' where id=4; -update noar tt set b1='GN6BS59HGGAGDO' where id=4; -update noar ti set b1='GN6BS59HGGAGDO' where id=4; -update noar tt set v0='4DXJ8N43JPC57LX1A8T3OSM28KI' where id=4; -update noar ti set v0='4DXJ8N43JPC57LX1A8T3OSM28KI' where id=4; -update noar tt set b2='G8YQXBW25N' where id=4; -update noar ti set b2='G8YQXBW25N' where id=4; -update noar tt set v0='2679RC1V' where id=5; -update noar ti set v0='2679RC1V' where id=5; -update noar tt set b0='BBOF' where id=5; -update noar ti set b0='BBOF' where id=5; -update noar tt set v0='E2HNQTT8I' where id=5; -update noar ti set v0='E2HNQTT8I' where id=5; -update noar tt set b1='1AHUEVCVNZVQYVO7SX2VZE5' where id=5; -update noar ti set b1='1AHUEVCVNZVQYVO7SX2VZE5' where id=5; -update noar tt set v0='PXAWT9OF9D' where id=5; -update noar ti set v0='PXAWT9OF9D' where id=5; -update noar tt set b2='RUAFNTPYGD3JQGOVWLHLBP8KI' where id=5; -update noar ti set b2='RUAFNTPYGD3JQGOVWLHLBP8KI' where id=5; -update noar tt set v0='6QR3JYQHJLY6MCTG3BLZZ3K4TMJVGE6' where id=6; -update noar ti set v0='6QR3JYQHJLY6MCTG3BLZZ3K4TMJVGE6' where id=6; -update noar tt set b0='C80B6B4RRADS9XYF97LD4XOG' where id=6; -update noar ti set b0='C80B6B4RRADS9XYF97LD4XOG' where id=6; -update noar tt set v0='PJKX0YZ4SSIL' where id=6; -update noar ti set v0='PJKX0YZ4SSIL' where id=6; -update noar tt set b1='HWGFOS06UTONKW7MA9GAC1TXDZZM37PJ' where id=6; -update noar ti set b1='HWGFOS06UTONKW7MA9GAC1TXDZZM37PJ' where id=6; -update noar tt set v0='G' where id=6; -update noar ti set v0='G' where id=6; -update noar tt set b2='H3LS006JS4' where id=6; -update noar ti set b2='H3LS006JS4' where id=6; -update noar tt set v0='94KUF' where id=7; -update noar ti set v0='94KUF' where id=7; -update noar tt set b0='MH3ETLZNK4HLK68QAQZRRNO5' where id=7; -update noar ti set b0='MH3ETLZNK4HLK68QAQZRRNO5' where id=7; -update noar tt set v0='SPAFV9SF4ZQTUSGFRFF1A9' where id=7; -update noar ti set v0='SPAFV9SF4ZQTUSGFRFF1A9' where id=7; -update noar tt set b1='2' where id=7; -update noar ti set b1='2' where id=7; -update noar tt set v0='35RV386OX75TTP' where id=7; -update noar ti set v0='35RV386OX75TTP' where id=7; -update noar tt set b2='T3JEQU9QQ6P1XSXK3SJ6I' where id=7; -update noar ti set b2='T3JEQU9QQ6P1XSXK3SJ6I' where id=7; -update noar tt set v0='J8KONOV8F4PE' where id=8; -update noar ti set v0='J8KONOV8F4PE' where id=8; -update noar tt set b0='DA56BXX0MSX6PZDCI3IE' where id=8; -update noar ti set b0='DA56BXX0MSX6PZDCI3IE' where id=8; -update noar tt set v0='LDHS1OLTXTVZA852X' where id=8; -update noar ti set v0='LDHS1OLTXTVZA852X' where id=8; -update noar tt set b1='244JSQ3DWZ4B6ICJO2YUANJPZ' where id=8; -update noar ti set b1='244JSQ3DWZ4B6ICJO2YUANJPZ' where id=8; -update noar tt set v0='93QP6V6E5R21NZFPEN7JC' where id=8; -update noar ti set v0='93QP6V6E5R21NZFPEN7JC' where id=8; -update noar tt set b2='TIQQF5TEZ' where id=8; -update noar ti set b2='TIQQF5TEZ' where id=8; -update noar tt set v0='58JV6TXHDF4W62HWKHEUSZMZ' where id=9; -update noar ti set v0='58JV6TXHDF4W62HWKHEUSZMZ' where id=9; -update noar tt set b0='Y917I60YNKO2V7DERIC0OGE62J9RR' where id=9; -update noar ti set b0='Y917I60YNKO2V7DERIC0OGE62J9RR' where id=9; -update noar tt set v0='0UHU3' where id=9; -update noar ti set v0='0UHU3' where id=9; -update noar tt set b1='Z5U4DA9C8E2FSF2MSG0KJ' where id=9; -update noar ti set b1='Z5U4DA9C8E2FSF2MSG0KJ' where id=9; -update noar tt set v0='7G34N83XULZK89V8MKVKHJEY' where id=9; -update noar ti set v0='7G34N83XULZK89V8MKVKHJEY' where id=9; -update noar tt set b2='708DN748AGPTIB4YK' where id=9; -update noar ti set b2='708DN748AGPTIB4YK' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -f0 int not null, -v0 varchar(32) not null, -b0 tinyblob not null, -b1 blob not null, -b2 longblob not null -) engine=tokudb; -insert into tt values (1,0,'','','',''); -insert into tt values (2,0,'','','',''); -insert into tt values (3,0,'','','',''); -insert into tt values (4,0,'','','',''); -insert into tt values (5,0,'','','',''); -insert into tt values (6,0,'','','',''); -insert into tt values (7,0,'','','',''); -insert into tt values (8,0,'','','',''); -insert into tt values (9,0,'','','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='TU6AGUZJNNAZ7MW2N2UQ' where id=1; -update noar ti set v0='TU6AGUZJNNAZ7MW2N2UQ' where id=1; -update noar tt set b0='FL9RXSX' where id=1; -update noar ti set b0='FL9RXSX' where id=1; -update noar tt set v0='3K58VLTO58QYNOJNLHCV3LNZS' where id=1; -update noar ti set v0='3K58VLTO58QYNOJNLHCV3LNZS' where id=1; -update noar tt set b1='NN19J06QIO0UI8' where id=1; -update noar ti set b1='NN19J06QIO0UI8' where id=1; -update noar tt set v0='0671GVZ45D' where id=1; -update noar ti set v0='0671GVZ45D' where id=1; -update noar tt set b2='VOQLA6NMSO7XKGF6Y4CMS' where id=1; -update noar ti set b2='VOQLA6NMSO7XKGF6Y4CMS' where id=1; -update noar tt set v0='4MQ27LH8MN1F1DC9HZMDIMOKX0P' where id=2; -update noar ti set v0='4MQ27LH8MN1F1DC9HZMDIMOKX0P' where id=2; -update noar tt set b0='DGOOLVFI1' where id=2; -update noar ti set b0='DGOOLVFI1' where id=2; -update noar tt set v0='GJPSHLI' where id=2; -update noar ti set v0='GJPSHLI' where id=2; -update noar tt set b1='BZOXOYVV4BDOERKF4UY' where id=2; -update noar ti set b1='BZOXOYVV4BDOERKF4UY' where id=2; -update noar tt set v0='9BT3K9GY6LUSENS0J6UVDQQ5IGO' where id=2; -update noar ti set v0='9BT3K9GY6LUSENS0J6UVDQQ5IGO' where id=2; -update noar tt set b2='0DFSFATOIB' where id=2; -update noar ti set b2='0DFSFATOIB' where id=2; -update noar tt set v0='2' where id=3; -update noar ti set v0='2' where id=3; -update noar tt set b0='ETKXJ9P0V138UQLZ6' where id=3; -update noar ti set b0='ETKXJ9P0V138UQLZ6' where id=3; -update noar tt set v0='GYE2910FGUIVYQDYI663P4LW2LK3S' where id=3; -update noar ti set v0='GYE2910FGUIVYQDYI663P4LW2LK3S' where id=3; -update noar tt set b1='L' where id=3; -update noar ti set b1='L' where id=3; -update noar tt set v0='VAARRI' where id=3; -update noar ti set v0='VAARRI' where id=3; -update noar tt set b2='A' where id=3; -update noar ti set b2='A' where id=3; -update noar tt set v0='HWUE5JK9PRW27NAZV' where id=4; -update noar ti set v0='HWUE5JK9PRW27NAZV' where id=4; -update noar tt set b0='J5XQ6ISFQGK0MCXS3' where id=4; -update noar ti set b0='J5XQ6ISFQGK0MCXS3' where id=4; -update noar tt set v0='Z5STV9X' where id=4; -update noar ti set v0='Z5STV9X' where id=4; -update noar tt set b1='SEUNDD' where id=4; -update noar ti set b1='SEUNDD' where id=4; -update noar tt set v0='TQ0RW9DNG' where id=4; -update noar ti set v0='TQ0RW9DNG' where id=4; -update noar tt set b2='TPG9ZBD5S38EB' where id=4; -update noar ti set b2='TPG9ZBD5S38EB' where id=4; -update noar tt set v0='Y026IPMF3FPDEVS8DRU' where id=5; -update noar ti set v0='Y026IPMF3FPDEVS8DRU' where id=5; -update noar tt set b0='E4F0GXRULUMQ4CD8X08F50NJ' where id=5; -update noar ti set b0='E4F0GXRULUMQ4CD8X08F50NJ' where id=5; -update noar tt set v0='Q8ITIU8FFQMY8VI8YAIYX9JE473' where id=5; -update noar ti set v0='Q8ITIU8FFQMY8VI8YAIYX9JE473' where id=5; -update noar tt set b1='B85Z57UMWSFJLIIRM18FL4153L3' where id=5; -update noar ti set b1='B85Z57UMWSFJLIIRM18FL4153L3' where id=5; -update noar tt set v0='NE6IRZS' where id=5; -update noar ti set v0='NE6IRZS' where id=5; -update noar tt set b2='GKMVZB26W90COI5NIYXQ4G9IS9H5O1' where id=5; -update noar ti set b2='GKMVZB26W90COI5NIYXQ4G9IS9H5O1' where id=5; -update noar tt set v0='KC41VLR3T0' where id=6; -update noar ti set v0='KC41VLR3T0' where id=6; -update noar tt set b0='FLBLCNSV' where id=6; -update noar ti set b0='FLBLCNSV' where id=6; -update noar tt set v0='5ME6W4JJSG5GPTTPNK2TCURNWP' where id=6; -update noar ti set v0='5ME6W4JJSG5GPTTPNK2TCURNWP' where id=6; -update noar tt set b1='UA11OKFXPVQERX2GT3NQ1ZKF' where id=6; -update noar ti set b1='UA11OKFXPVQERX2GT3NQ1ZKF' where id=6; -update noar tt set v0='4B7FQBLJEU9KMAE7RHCJU8' where id=6; -update noar ti set v0='4B7FQBLJEU9KMAE7RHCJU8' where id=6; -update noar tt set b2='W60F2' where id=6; -update noar ti set b2='W60F2' where id=6; -update noar tt set v0='M' where id=7; -update noar ti set v0='M' where id=7; -update noar tt set b0='4W' where id=7; -update noar ti set b0='4W' where id=7; -update noar tt set v0='6FEVIL132IP5NS' where id=7; -update noar ti set v0='6FEVIL132IP5NS' where id=7; -update noar tt set b1='2PREOOKF7I' where id=7; -update noar ti set b1='2PREOOKF7I' where id=7; -update noar tt set v0='CD3DF9GLUASVAW1H' where id=7; -update noar ti set v0='CD3DF9GLUASVAW1H' where id=7; -update noar tt set b2='CGPUGUIZO7IPE' where id=7; -update noar ti set b2='CGPUGUIZO7IPE' where id=7; -update noar tt set v0='695UXWCGK' where id=8; -update noar ti set v0='695UXWCGK' where id=8; -update noar tt set b0='JOVPMBRAQF' where id=8; -update noar ti set b0='JOVPMBRAQF' where id=8; -update noar tt set v0='FC6NCXPX7TCMV42ODDUFK5UT6F7Q' where id=8; -update noar ti set v0='FC6NCXPX7TCMV42ODDUFK5UT6F7Q' where id=8; -update noar tt set b1='ETOJUFCE2YVPNBX7J' where id=8; -update noar ti set b1='ETOJUFCE2YVPNBX7J' where id=8; -update noar tt set v0='2' where id=8; -update noar ti set v0='2' where id=8; -update noar tt set b2='B7L9C6VIY9H94QVAADP6XXF6NSO' where id=8; -update noar ti set b2='B7L9C6VIY9H94QVAADP6XXF6NSO' where id=8; -update noar tt set v0='6KGBP' where id=9; -update noar ti set v0='6KGBP' where id=9; -update noar tt set b0='MFJNPF81H' where id=9; -update noar ti set b0='MFJNPF81H' where id=9; -update noar tt set v0='QHZ1CW3VWA' where id=9; -update noar ti set v0='QHZ1CW3VWA' where id=9; -update noar tt set b1='60HGFVDQ9' where id=9; -update noar ti set b1='60HGFVDQ9' where id=9; -update noar tt set v0='7JXN5T3AEDJKU2H3MW8' where id=9; -update noar ti set v0='7JXN5T3AEDJKU2H3MW8' where id=9; -update noar tt set b2='A9' where id=9; -update noar ti set b2='A9' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -f0 int not null, -v0 varchar(256) not null, -b0 tinyblob not null, -b1 blob not null, -b2 longblob not null -) engine=tokudb; -insert into tt values (1,0,'','','',''); -insert into tt values (2,0,'','','',''); -insert into tt values (3,0,'','','',''); -insert into tt values (4,0,'','','',''); -insert into tt values (5,0,'','','',''); -insert into tt values (6,0,'','','',''); -insert into tt values (7,0,'','','',''); -insert into tt values (8,0,'','','',''); -insert into tt values (9,0,'','','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='ML14I87M52OI3LOV' where id=1; -update noar ti set v0='ML14I87M52OI3LOV' where id=1; -update noar tt set b0='T2LNXF' where id=1; -update noar ti set b0='T2LNXF' where id=1; -update noar tt set v0='COW30MX' where id=1; -update noar ti set v0='COW30MX' where id=1; -update noar tt set b1='56GS6CYR054HPMAGJ4RH7J' where id=1; -update noar ti set b1='56GS6CYR054HPMAGJ4RH7J' where id=1; -update noar tt set v0='O8V74TFYBTIJY5HBNFZRK' where id=1; -update noar ti set v0='O8V74TFYBTIJY5HBNFZRK' where id=1; -update noar tt set b2='R2HV8TFSBPO9H25DZC4NDJNBKBK' where id=1; -update noar ti set b2='R2HV8TFSBPO9H25DZC4NDJNBKBK' where id=1; -update noar tt set v0='0M945P8TLQCZA5' where id=2; -update noar ti set v0='0M945P8TLQCZA5' where id=2; -update noar tt set b0='TMQSAXK3O6CV2VWUN8EGU' where id=2; -update noar ti set b0='TMQSAXK3O6CV2VWUN8EGU' where id=2; -update noar tt set v0='2BL1YR8ICTX9QJ91Y1P0V0S0FLXCAE' where id=2; -update noar ti set v0='2BL1YR8ICTX9QJ91Y1P0V0S0FLXCAE' where id=2; -update noar tt set b1='CSP8Y9V9E84MJLYWIYPF25JG87L0II' where id=2; -update noar ti set b1='CSP8Y9V9E84MJLYWIYPF25JG87L0II' where id=2; -update noar tt set v0='QNY1AVCIOXDBR0' where id=2; -update noar ti set v0='QNY1AVCIOXDBR0' where id=2; -update noar tt set b2='KP1CKU61O697A01X1EBIHXJ' where id=2; -update noar ti set b2='KP1CKU61O697A01X1EBIHXJ' where id=2; -update noar tt set v0='R95XHB9Z4X' where id=3; -update noar ti set v0='R95XHB9Z4X' where id=3; -update noar tt set b0='W978LDZMI4MB' where id=3; -update noar ti set b0='W978LDZMI4MB' where id=3; -update noar tt set v0='P5F1OZWC0LD38GND4D6I4M4URG3J2R' where id=3; -update noar ti set v0='P5F1OZWC0LD38GND4D6I4M4URG3J2R' where id=3; -update noar tt set b1='QXAQYTQZI' where id=3; -update noar ti set b1='QXAQYTQZI' where id=3; -update noar tt set v0='E7BQ2O7FO169' where id=3; -update noar ti set v0='E7BQ2O7FO169' where id=3; -update noar tt set b2='QE79JY1OL6F8SBI698' where id=3; -update noar ti set b2='QE79JY1OL6F8SBI698' where id=3; -update noar tt set v0='731ZKG3HSTTV5Q3C' where id=4; -update noar ti set v0='731ZKG3HSTTV5Q3C' where id=4; -update noar tt set b0='YQRTSFL4I6VQT9YSPP9ZUX63VVPCJ' where id=4; -update noar ti set b0='YQRTSFL4I6VQT9YSPP9ZUX63VVPCJ' where id=4; -update noar tt set v0='L3HTQW1NYIC0JVIW07' where id=4; -update noar ti set v0='L3HTQW1NYIC0JVIW07' where id=4; -update noar tt set b1='QNQT640' where id=4; -update noar ti set b1='QNQT640' where id=4; -update noar tt set v0='9EN0UFDTMKH9Z8QXMC6GIO' where id=4; -update noar ti set v0='9EN0UFDTMKH9Z8QXMC6GIO' where id=4; -update noar tt set b2='Q2AJ9GTIIEGIP4XYJXGUZGMSU' where id=4; -update noar ti set b2='Q2AJ9GTIIEGIP4XYJXGUZGMSU' where id=4; -update noar tt set v0='MSRAE8U85OQ6DH4GR' where id=5; -update noar ti set v0='MSRAE8U85OQ6DH4GR' where id=5; -update noar tt set b0='WKM' where id=5; -update noar ti set b0='WKM' where id=5; -update noar tt set v0='TC3S69MW6Y' where id=5; -update noar ti set v0='TC3S69MW6Y' where id=5; -update noar tt set b1='VPFE729THU' where id=5; -update noar ti set b1='VPFE729THU' where id=5; -update noar tt set v0='RQPXLU' where id=5; -update noar ti set v0='RQPXLU' where id=5; -update noar tt set b2='DPQ5VOOHOQH991K91M' where id=5; -update noar ti set b2='DPQ5VOOHOQH991K91M' where id=5; -update noar tt set v0='578R66NDCDOTU7K3E6Q' where id=6; -update noar ti set v0='578R66NDCDOTU7K3E6Q' where id=6; -update noar tt set b0='NL3QLUXO30S9YS8U84E23MVDYFIHZI' where id=6; -update noar ti set b0='NL3QLUXO30S9YS8U84E23MVDYFIHZI' where id=6; -update noar tt set v0='UND1DXNIOZ3A3XXBJLP' where id=6; -update noar ti set v0='UND1DXNIOZ3A3XXBJLP' where id=6; -update noar tt set b1='XKRDXYOAD7C7JG12QWG8E' where id=6; -update noar ti set b1='XKRDXYOAD7C7JG12QWG8E' where id=6; -update noar tt set v0='Y0XWR' where id=6; -update noar ti set v0='Y0XWR' where id=6; -update noar tt set b2='CFVG5P6V32N0BQB' where id=6; -update noar ti set b2='CFVG5P6V32N0BQB' where id=6; -update noar tt set v0='A0JJQPEMKG9I0YM8RQ0S0W' where id=7; -update noar ti set v0='A0JJQPEMKG9I0YM8RQ0S0W' where id=7; -update noar tt set b0='J616TJ3PI' where id=7; -update noar ti set b0='J616TJ3PI' where id=7; -update noar tt set v0='TEW3GCB8J7NELIG8BFNO44BU61E4' where id=7; -update noar ti set v0='TEW3GCB8J7NELIG8BFNO44BU61E4' where id=7; -update noar tt set b1='SD7JBTBO4MFD' where id=7; -update noar ti set b1='SD7JBTBO4MFD' where id=7; -update noar tt set v0='0E4S75CQ' where id=7; -update noar ti set v0='0E4S75CQ' where id=7; -update noar tt set b2='TYPD5454GII' where id=7; -update noar ti set b2='TYPD5454GII' where id=7; -update noar tt set v0='7B3DJPI7UW986UWKMNW9SF0MKDEEWT' where id=8; -update noar ti set v0='7B3DJPI7UW986UWKMNW9SF0MKDEEWT' where id=8; -update noar tt set b0='U' where id=8; -update noar ti set b0='U' where id=8; -update noar tt set v0='RRHU3ZNOK3TECPWR8M4PKTGZBN2TQ' where id=8; -update noar ti set v0='RRHU3ZNOK3TECPWR8M4PKTGZBN2TQ' where id=8; -update noar tt set b1='IF5Q7D7386XB5W702' where id=8; -update noar ti set b1='IF5Q7D7386XB5W702' where id=8; -update noar tt set v0='HZOWIY1VLZ2RMP' where id=8; -update noar ti set v0='HZOWIY1VLZ2RMP' where id=8; -update noar tt set b2='2E' where id=8; -update noar ti set b2='2E' where id=8; -update noar tt set v0='D70ZQ2CR172AUAH9' where id=9; -update noar ti set v0='D70ZQ2CR172AUAH9' where id=9; -update noar tt set b0='U84LRLN262APJLEUPBEBDHY' where id=9; -update noar ti set b0='U84LRLN262APJLEUPBEBDHY' where id=9; -update noar tt set v0='RHCMI' where id=9; -update noar ti set v0='RHCMI' where id=9; -update noar tt set b1='MWM' where id=9; -update noar ti set b1='MWM' where id=9; -update noar tt set v0='UFHKTSEXQ67JF8HUYH1DTB' where id=9; -update noar ti set v0='UFHKTSEXQ67JF8HUYH1DTB' where id=9; -update noar tt set b2='MDU8' where id=9; -update noar ti set b2='MDU8' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -f0 int null, -v0 varchar(32) null, -b0 tinyblob null, -b1 mediumblob null, -b2 tinyblob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='1VRMFX4G4AFLE4E5MY80XC5' where id=1; -update noar ti set v0='1VRMFX4G4AFLE4E5MY80XC5' where id=1; -update noar tt set b0='95WWKVA6F9FI8Q' where id=1; -update noar ti set b0='95WWKVA6F9FI8Q' where id=1; -update noar tt set v0='Q92TF1A61BHBRNJS7EXPI2I6' where id=1; -update noar ti set v0='Q92TF1A61BHBRNJS7EXPI2I6' where id=1; -update noar tt set b1='6TQB8PLTSONSD5TSE5NWM' where id=1; -update noar ti set b1='6TQB8PLTSONSD5TSE5NWM' where id=1; -update noar tt set v0='7QEMA86' where id=1; -update noar ti set v0='7QEMA86' where id=1; -update noar tt set b2='45QK8EPONXV' where id=1; -update noar ti set b2='45QK8EPONXV' where id=1; -update noar tt set v0='WZUKY9G5QH1KS4O05TN9QS5HZVJU6FQ' where id=2; -update noar ti set v0='WZUKY9G5QH1KS4O05TN9QS5HZVJU6FQ' where id=2; -update noar tt set b0='Z5OFP9S8' where id=2; -update noar ti set b0='Z5OFP9S8' where id=2; -update noar tt set v0='TU3STU3KUFBCFYIRYWEU' where id=2; -update noar ti set v0='TU3STU3KUFBCFYIRYWEU' where id=2; -update noar tt set b1='BRE0DWJNFEWE9YRH' where id=2; -update noar ti set b1='BRE0DWJNFEWE9YRH' where id=2; -update noar tt set v0='J7IEQE5703' where id=2; -update noar ti set v0='J7IEQE5703' where id=2; -update noar tt set b2='C107VTIDCQ8' where id=2; -update noar ti set b2='C107VTIDCQ8' where id=2; -update noar tt set v0='TCQLXXI8L80Z51K3C52O1P42SK4HD' where id=3; -update noar ti set v0='TCQLXXI8L80Z51K3C52O1P42SK4HD' where id=3; -update noar tt set b0='NSR9322' where id=3; -update noar ti set b0='NSR9322' where id=3; -update noar tt set v0='ZUZPG4LPXP723W5XIP3E6WEPVJAV' where id=3; -update noar ti set v0='ZUZPG4LPXP723W5XIP3E6WEPVJAV' where id=3; -update noar tt set b1='01PAEMGO52JMRX3EQQQPDQJ' where id=3; -update noar ti set b1='01PAEMGO52JMRX3EQQQPDQJ' where id=3; -update noar tt set v0='EK47LGXJP7731RW5V4Y' where id=3; -update noar ti set v0='EK47LGXJP7731RW5V4Y' where id=3; -update noar tt set b2='TEQLRLO0I72QHO1QMBI6DVKX1I' where id=3; -update noar ti set b2='TEQLRLO0I72QHO1QMBI6DVKX1I' where id=3; -update noar tt set v0='93OREX1ON9856K418AN8THCUHBO9VKC' where id=4; -update noar ti set v0='93OREX1ON9856K418AN8THCUHBO9VKC' where id=4; -update noar tt set b0='H21OQD37G4AVZDPEQ' where id=4; -update noar ti set b0='H21OQD37G4AVZDPEQ' where id=4; -update noar tt set v0='01FX4KUTJAN7' where id=4; -update noar ti set v0='01FX4KUTJAN7' where id=4; -update noar tt set b1='S' where id=4; -update noar ti set b1='S' where id=4; -update noar tt set v0='N8W' where id=4; -update noar ti set v0='N8W' where id=4; -update noar tt set b2='C67OG9AQW2XHSX788EC8M7F6QCM' where id=4; -update noar ti set b2='C67OG9AQW2XHSX788EC8M7F6QCM' where id=4; -update noar tt set v0='K6LC3SY0XEENCU4K6ZZ' where id=5; -update noar ti set v0='K6LC3SY0XEENCU4K6ZZ' where id=5; -update noar tt set b0='0974UPAJ3XD891G0' where id=5; -update noar ti set b0='0974UPAJ3XD891G0' where id=5; -update noar tt set v0='5BKCZY9NSXADUMATIWDY' where id=5; -update noar ti set v0='5BKCZY9NSXADUMATIWDY' where id=5; -update noar tt set b1='4T055CZ9LV8JJSWRNQBY379G' where id=5; -update noar ti set b1='4T055CZ9LV8JJSWRNQBY379G' where id=5; -update noar tt set v0='Z8VLTI10CF49ZQWN3' where id=5; -update noar ti set v0='Z8VLTI10CF49ZQWN3' where id=5; -update noar tt set b2='E7KJVJ33LKFN' where id=5; -update noar ti set b2='E7KJVJ33LKFN' where id=5; -update noar tt set v0='TZF1F8LC9NF3XGPMEGYJOP5YA' where id=6; -update noar ti set v0='TZF1F8LC9NF3XGPMEGYJOP5YA' where id=6; -update noar tt set b0='Y1HFKWOK2H7E6FQOIFXM3L3PDH9718J' where id=6; -update noar ti set b0='Y1HFKWOK2H7E6FQOIFXM3L3PDH9718J' where id=6; -update noar tt set v0='X4LTQQIHHNBXYLEUQ89C528Z76' where id=6; -update noar ti set v0='X4LTQQIHHNBXYLEUQ89C528Z76' where id=6; -update noar tt set b1='PSI9VQIR0IGSZ5KYE5QH164X' where id=6; -update noar ti set b1='PSI9VQIR0IGSZ5KYE5QH164X' where id=6; -update noar tt set v0='B8CYNXMT0RY75ZZMJN' where id=6; -update noar ti set v0='B8CYNXMT0RY75ZZMJN' where id=6; -update noar tt set b2='PAO8I6IZL5VGPUMB2TICK86C9UE00' where id=6; -update noar ti set b2='PAO8I6IZL5VGPUMB2TICK86C9UE00' where id=6; -update noar tt set v0='GGHTK97KZU34ISSAS7' where id=7; -update noar ti set v0='GGHTK97KZU34ISSAS7' where id=7; -update noar tt set b0='JRDP0EG' where id=7; -update noar ti set b0='JRDP0EG' where id=7; -update noar tt set v0='AF71GQ22W2Y5GYZT8EU4XKWHVHWBB' where id=7; -update noar ti set v0='AF71GQ22W2Y5GYZT8EU4XKWHVHWBB' where id=7; -update noar tt set b1='L1V93SPN2HITIYAN6P77YC' where id=7; -update noar ti set b1='L1V93SPN2HITIYAN6P77YC' where id=7; -update noar tt set v0='0RAPR9TJY' where id=7; -update noar ti set v0='0RAPR9TJY' where id=7; -update noar tt set b2='UPN14PREIP49OWNVE0' where id=7; -update noar ti set b2='UPN14PREIP49OWNVE0' where id=7; -update noar tt set v0='VQHCIUT0L87M8I5U06PJ' where id=8; -update noar ti set v0='VQHCIUT0L87M8I5U06PJ' where id=8; -update noar tt set b0='L7RBJILG0TX4QL2' where id=8; -update noar ti set b0='L7RBJILG0TX4QL2' where id=8; -update noar tt set v0='Z3ZW2I4VVBS5JD70Z48R6C7' where id=8; -update noar ti set v0='Z3ZW2I4VVBS5JD70Z48R6C7' where id=8; -update noar tt set b1='2DZKW' where id=8; -update noar ti set b1='2DZKW' where id=8; -update noar tt set v0='52KZVFC596F1WJNAKYE9CX25' where id=8; -update noar ti set v0='52KZVFC596F1WJNAKYE9CX25' where id=8; -update noar tt set b2='WEBHH5442FRO7W93AKRFLKP0' where id=8; -update noar ti set b2='WEBHH5442FRO7W93AKRFLKP0' where id=8; -update noar tt set v0='DZX0S0Q' where id=9; -update noar ti set v0='DZX0S0Q' where id=9; -update noar tt set b0='PCI0KO7' where id=9; -update noar ti set b0='PCI0KO7' where id=9; -update noar tt set v0='30RGI' where id=9; -update noar ti set v0='30RGI' where id=9; -update noar tt set b1='40SDA' where id=9; -update noar ti set b1='40SDA' where id=9; -update noar tt set v0='SZ16SPALTGY95V1QK3VWPYJXPZOHM' where id=9; -update noar ti set v0='SZ16SPALTGY95V1QK3VWPYJXPZOHM' where id=9; -update noar tt set b2='AEMV' where id=9; -update noar ti set b2='AEMV' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -f0 int null, -v0 varchar(256) null, -b0 tinyblob null, -b1 mediumblob null, -b2 tinyblob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='2W15VZFAGXO1IC20U6K3SN8' where id=1; -update noar ti set v0='2W15VZFAGXO1IC20U6K3SN8' where id=1; -update noar tt set b0='8EF9STP63WTU0KLDZYIH8UW0675OP7CV' where id=1; -update noar ti set b0='8EF9STP63WTU0KLDZYIH8UW0675OP7CV' where id=1; -update noar tt set v0='9Y1PSK6UUVNV8BYG0YIDEP2Q7BY' where id=1; -update noar ti set v0='9Y1PSK6UUVNV8BYG0YIDEP2Q7BY' where id=1; -update noar tt set b1='2AFZH5L727JLNJ8KZL36F9' where id=1; -update noar ti set b1='2AFZH5L727JLNJ8KZL36F9' where id=1; -update noar tt set v0='BIQB6B7FHO' where id=1; -update noar ti set v0='BIQB6B7FHO' where id=1; -update noar tt set b2='GL6LI1VFUX5IH' where id=1; -update noar ti set b2='GL6LI1VFUX5IH' where id=1; -update noar tt set v0='0PWUOCW9D37V21PQCSVP49FR' where id=2; -update noar ti set v0='0PWUOCW9D37V21PQCSVP49FR' where id=2; -update noar tt set b0='E0KJHOP8OJ0ENAJT' where id=2; -update noar ti set b0='E0KJHOP8OJ0ENAJT' where id=2; -update noar tt set v0='N3DOFVD7SJSY975RY53ZLC2CIZ6W' where id=2; -update noar ti set v0='N3DOFVD7SJSY975RY53ZLC2CIZ6W' where id=2; -update noar tt set b1='1CUKK1JN2WM0NLZ8' where id=2; -update noar ti set b1='1CUKK1JN2WM0NLZ8' where id=2; -update noar tt set v0='7K82' where id=2; -update noar ti set v0='7K82' where id=2; -update noar tt set b2='OOTEM3T1FZPX4D697UOEY5QX' where id=2; -update noar ti set b2='OOTEM3T1FZPX4D697UOEY5QX' where id=2; -update noar tt set v0='62HM5Y6NQTGHLEVYLZGIJ' where id=3; -update noar ti set v0='62HM5Y6NQTGHLEVYLZGIJ' where id=3; -update noar tt set b0='86V67W2YUT' where id=3; -update noar ti set b0='86V67W2YUT' where id=3; -update noar tt set v0='P' where id=3; -update noar ti set v0='P' where id=3; -update noar tt set b1='O5RQZC' where id=3; -update noar ti set b1='O5RQZC' where id=3; -update noar tt set v0='945WIBXTP57Y' where id=3; -update noar ti set v0='945WIBXTP57Y' where id=3; -update noar tt set b2='8SKKNV1X48PYBW' where id=3; -update noar ti set b2='8SKKNV1X48PYBW' where id=3; -update noar tt set v0='O1454YCYQHV4LOE1JYI' where id=4; -update noar ti set v0='O1454YCYQHV4LOE1JYI' where id=4; -update noar tt set b0='VG' where id=4; -update noar ti set b0='VG' where id=4; -update noar tt set v0='3R0ORL518D133GW7RGUD1JU8L' where id=4; -update noar ti set v0='3R0ORL518D133GW7RGUD1JU8L' where id=4; -update noar tt set b1='R1CKQ46TYP66UY8G' where id=4; -update noar ti set b1='R1CKQ46TYP66UY8G' where id=4; -update noar tt set v0='B8J8X695GO46DTG72M4MD0CUCSOXJ7J' where id=4; -update noar ti set v0='B8J8X695GO46DTG72M4MD0CUCSOXJ7J' where id=4; -update noar tt set b2='U4JE' where id=4; -update noar ti set b2='U4JE' where id=4; -update noar tt set v0='DVVZN8SWPMJA51SH69TM' where id=5; -update noar ti set v0='DVVZN8SWPMJA51SH69TM' where id=5; -update noar tt set b0='7WAOKHFI0TTXPMT10T5NFW5' where id=5; -update noar ti set b0='7WAOKHFI0TTXPMT10T5NFW5' where id=5; -update noar tt set v0='85VVXM0YGWDTT051NDPSVR2R6O' where id=5; -update noar ti set v0='85VVXM0YGWDTT051NDPSVR2R6O' where id=5; -update noar tt set b1='2BAZF' where id=5; -update noar ti set b1='2BAZF' where id=5; -update noar tt set v0='A1Z9ULRVF5LIXAYC6NC8J6K0PYM1DPP' where id=5; -update noar ti set v0='A1Z9ULRVF5LIXAYC6NC8J6K0PYM1DPP' where id=5; -update noar tt set b2='FV0L1XNPL8PKXJJ7F' where id=5; -update noar ti set b2='FV0L1XNPL8PKXJJ7F' where id=5; -update noar tt set v0='7MNF3R3DB2I051ETSS1K57' where id=6; -update noar ti set v0='7MNF3R3DB2I051ETSS1K57' where id=6; -update noar tt set b0='PHTK3TVC5DV1KRTKY4AMVY793' where id=6; -update noar ti set b0='PHTK3TVC5DV1KRTKY4AMVY793' where id=6; -update noar tt set v0='Z7QR3SPPNVA7ZWWNCMFYKOC' where id=6; -update noar ti set v0='Z7QR3SPPNVA7ZWWNCMFYKOC' where id=6; -update noar tt set b1='4P8ESDAC4UL' where id=6; -update noar ti set b1='4P8ESDAC4UL' where id=6; -update noar tt set v0='AYHVDJ9Z69E68F8G1I82BZQF' where id=6; -update noar ti set v0='AYHVDJ9Z69E68F8G1I82BZQF' where id=6; -update noar tt set b2='B7G7E9ZZJEO2LK66A' where id=6; -update noar ti set b2='B7G7E9ZZJEO2LK66A' where id=6; -update noar tt set v0='SHS2CK4' where id=7; -update noar ti set v0='SHS2CK4' where id=7; -update noar tt set b0='9FMVEOKOHMDLHXPP' where id=7; -update noar ti set b0='9FMVEOKOHMDLHXPP' where id=7; -update noar tt set v0='EWEL' where id=7; -update noar ti set v0='EWEL' where id=7; -update noar tt set b1='53NGDLL6TPJ' where id=7; -update noar ti set b1='53NGDLL6TPJ' where id=7; -update noar tt set v0='BCJP0' where id=7; -update noar ti set v0='BCJP0' where id=7; -update noar tt set b2='GMEY' where id=7; -update noar ti set b2='GMEY' where id=7; -update noar tt set v0='6DMI660WV9OQ0H7YO7YNRFP8UMOJA8NJ' where id=8; -update noar ti set v0='6DMI660WV9OQ0H7YO7YNRFP8UMOJA8NJ' where id=8; -update noar tt set b0='YZPW8BPV4K25EII9QH72P1' where id=8; -update noar ti set b0='YZPW8BPV4K25EII9QH72P1' where id=8; -update noar tt set v0='JGE0' where id=8; -update noar ti set v0='JGE0' where id=8; -update noar tt set b1='5D5EM68LJM8NOT0APW1VW56MPT' where id=8; -update noar ti set b1='5D5EM68LJM8NOT0APW1VW56MPT' where id=8; -update noar tt set v0='R2I5CBP4OPLTOO9LI3O' where id=8; -update noar ti set v0='R2I5CBP4OPLTOO9LI3O' where id=8; -update noar tt set b2='9RL6EL0WFKYGLGQR26' where id=8; -update noar ti set b2='9RL6EL0WFKYGLGQR26' where id=8; -update noar tt set v0='GBNPRCQ2ZGKE7KWD25D087JLSK1SEG3' where id=9; -update noar ti set v0='GBNPRCQ2ZGKE7KWD25D087JLSK1SEG3' where id=9; -update noar tt set b0='02VBYZ4TEGFVJ6953O7500B5UI13NZ' where id=9; -update noar ti set b0='02VBYZ4TEGFVJ6953O7500B5UI13NZ' where id=9; -update noar tt set v0='ACZS0HW6KVOPED80B' where id=9; -update noar ti set v0='ACZS0HW6KVOPED80B' where id=9; -update noar tt set b1='65L4NEL' where id=9; -update noar ti set b1='65L4NEL' where id=9; -update noar tt set v0='RR93HUL3GKJK4H59F' where id=9; -update noar ti set v0='RR93HUL3GKJK4H59F' where id=9; -update noar tt set b2='KEXJK79LG6Z7SQVON9OGBIFHDH882' where id=9; -update noar ti set b2='KEXJK79LG6Z7SQVON9OGBIFHDH882' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -f0 int not null, -v0 varchar(32) not null, -b0 tinyblob not null, -b1 mediumblob not null, -b2 tinyblob not null -) engine=tokudb; -insert into tt values (1,0,'','','',''); -insert into tt values (2,0,'','','',''); -insert into tt values (3,0,'','','',''); -insert into tt values (4,0,'','','',''); -insert into tt values (5,0,'','','',''); -insert into tt values (6,0,'','','',''); -insert into tt values (7,0,'','','',''); -insert into tt values (8,0,'','','',''); -insert into tt values (9,0,'','','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='KB7NNFEPFGD30AN5' where id=1; -update noar ti set v0='KB7NNFEPFGD30AN5' where id=1; -update noar tt set b0='HM33PSO674GLJB2NSXDY3VYEIRA7C1' where id=1; -update noar ti set b0='HM33PSO674GLJB2NSXDY3VYEIRA7C1' where id=1; -update noar tt set v0='0G1GH0BHIFS2JC62VY6XXPETSNYQI89' where id=1; -update noar ti set v0='0G1GH0BHIFS2JC62VY6XXPETSNYQI89' where id=1; -update noar tt set b1='QTQK1OM2RRCECOB9PJ2KZ' where id=1; -update noar ti set b1='QTQK1OM2RRCECOB9PJ2KZ' where id=1; -update noar tt set v0='0WZ8SVUCDJQFV7E5X6JAQEYFZN5XE' where id=1; -update noar ti set v0='0WZ8SVUCDJQFV7E5X6JAQEYFZN5XE' where id=1; -update noar tt set b2='BPDGHY' where id=1; -update noar ti set b2='BPDGHY' where id=1; -update noar tt set v0='FQUCKXGA' where id=2; -update noar ti set v0='FQUCKXGA' where id=2; -update noar tt set b0='4DWH' where id=2; -update noar ti set b0='4DWH' where id=2; -update noar tt set v0='ZZGNZV' where id=2; -update noar ti set v0='ZZGNZV' where id=2; -update noar tt set b1='Y9C3MRKYGBB9WLADG9' where id=2; -update noar ti set b1='Y9C3MRKYGBB9WLADG9' where id=2; -update noar tt set v0='AWCYQGFU2L92560YWRYH42Z' where id=2; -update noar ti set v0='AWCYQGFU2L92560YWRYH42Z' where id=2; -update noar tt set b2='N4S' where id=2; -update noar ti set b2='N4S' where id=2; -update noar tt set v0='I0DW85196WMNH03Q33PF2L6VQGKV3' where id=3; -update noar ti set v0='I0DW85196WMNH03Q33PF2L6VQGKV3' where id=3; -update noar tt set b0='LNPO' where id=3; -update noar ti set b0='LNPO' where id=3; -update noar tt set v0='QB5OKN4BP8E9' where id=3; -update noar ti set v0='QB5OKN4BP8E9' where id=3; -update noar tt set b1='AN7N10DQ31LVRQF9E5ZMN5TYHRU162W' where id=3; -update noar ti set b1='AN7N10DQ31LVRQF9E5ZMN5TYHRU162W' where id=3; -update noar tt set v0='HOL454K4D4PN' where id=3; -update noar ti set v0='HOL454K4D4PN' where id=3; -update noar tt set b2='8EKNE77L5LIZQ' where id=3; -update noar ti set b2='8EKNE77L5LIZQ' where id=3; -update noar tt set v0='E232C91K3JZSREE1U' where id=4; -update noar ti set v0='E232C91K3JZSREE1U' where id=4; -update noar tt set b0='LHRPTQVPOVMJV3' where id=4; -update noar ti set b0='LHRPTQVPOVMJV3' where id=4; -update noar tt set v0='S1GT6D3Z2IERK1TU88K2CUG30D6A4' where id=4; -update noar ti set v0='S1GT6D3Z2IERK1TU88K2CUG30D6A4' where id=4; -update noar tt set b1='JZ49KQ9FPJWOA45Y' where id=4; -update noar ti set b1='JZ49KQ9FPJWOA45Y' where id=4; -update noar tt set v0='ADD4RRT' where id=4; -update noar ti set v0='ADD4RRT' where id=4; -update noar tt set b2='KJC1YB8A' where id=4; -update noar ti set b2='KJC1YB8A' where id=4; -update noar tt set v0='7BPQZJG8VNYA4LH' where id=5; -update noar ti set v0='7BPQZJG8VNYA4LH' where id=5; -update noar tt set b0='29AN65ZZ6C2TO05YUGM8NREB3YT7I' where id=5; -update noar ti set b0='29AN65ZZ6C2TO05YUGM8NREB3YT7I' where id=5; -update noar tt set v0='K26EJK6SD8Z38E0C' where id=5; -update noar ti set v0='K26EJK6SD8Z38E0C' where id=5; -update noar tt set b1='XRT0QPQK4QJMYQF4MKG58P' where id=5; -update noar ti set b1='XRT0QPQK4QJMYQF4MKG58P' where id=5; -update noar tt set v0='AIZQ7FSGEWH7OPWSFKG2D' where id=5; -update noar ti set v0='AIZQ7FSGEWH7OPWSFKG2D' where id=5; -update noar tt set b2='JKZCGQL6P3IMWUHOY8Z2HARF' where id=5; -update noar ti set b2='JKZCGQL6P3IMWUHOY8Z2HARF' where id=5; -update noar tt set v0='CQ' where id=6; -update noar ti set v0='CQ' where id=6; -update noar tt set b0='58HUYQY8B2MABOG4' where id=6; -update noar ti set b0='58HUYQY8B2MABOG4' where id=6; -update noar tt set v0='PS0HAVDN8RH' where id=6; -update noar ti set v0='PS0HAVDN8RH' where id=6; -update noar tt set b1='N3CP3PP1S8DQWJCZW4EUWJD68Y' where id=6; -update noar ti set b1='N3CP3PP1S8DQWJCZW4EUWJD68Y' where id=6; -update noar tt set v0='02WB2K89S0JD4CFTKMKV' where id=6; -update noar ti set v0='02WB2K89S0JD4CFTKMKV' where id=6; -update noar tt set b2='CHFMR6F387X5LZLH2RMKXNTY0N0XIH' where id=6; -update noar ti set b2='CHFMR6F387X5LZLH2RMKXNTY0N0XIH' where id=6; -update noar tt set v0='HVNT8ORVFHSWZ382K1D7Q8WWIHSVUI' where id=7; -update noar ti set v0='HVNT8ORVFHSWZ382K1D7Q8WWIHSVUI' where id=7; -update noar tt set b0='4820B5WHWAKY' where id=7; -update noar ti set b0='4820B5WHWAKY' where id=7; -update noar tt set v0='QJBZZWA8054FOQENMYA7EM05U' where id=7; -update noar ti set v0='QJBZZWA8054FOQENMYA7EM05U' where id=7; -update noar tt set b1='DBU55XYF' where id=7; -update noar ti set b1='DBU55XYF' where id=7; -update noar tt set v0='FKS68V' where id=7; -update noar ti set v0='FKS68V' where id=7; -update noar tt set b2='HR7ZOPG2AGXHD6EGWGJW8PZT5FZ3' where id=7; -update noar ti set b2='HR7ZOPG2AGXHD6EGWGJW8PZT5FZ3' where id=7; -update noar tt set v0='X8RD' where id=8; -update noar ti set v0='X8RD' where id=8; -update noar tt set b0='ESSZY48XWLJXWBO9914EI0EM7JN' where id=8; -update noar ti set b0='ESSZY48XWLJXWBO9914EI0EM7JN' where id=8; -update noar tt set v0='5KTRQOQER14ZGDSVUFR4J6K4ZZASRO32' where id=8; -update noar ti set v0='5KTRQOQER14ZGDSVUFR4J6K4ZZASRO32' where id=8; -update noar tt set b1='LVC13F6' where id=8; -update noar ti set b1='LVC13F6' where id=8; -update noar tt set v0='PAVVSO76NPBUAZE4QXEF4' where id=8; -update noar ti set v0='PAVVSO76NPBUAZE4QXEF4' where id=8; -update noar tt set b2='QB2RXEPZ7UWINA677EIS3E02B0W3H19A' where id=8; -update noar ti set b2='QB2RXEPZ7UWINA677EIS3E02B0W3H19A' where id=8; -update noar tt set v0='VVVCTAITDEJHR3EQ6Z0M' where id=9; -update noar ti set v0='VVVCTAITDEJHR3EQ6Z0M' where id=9; -update noar tt set b0='7Y2Y21FL1MOZD7OAV580P5I' where id=9; -update noar ti set b0='7Y2Y21FL1MOZD7OAV580P5I' where id=9; -update noar tt set v0='PC7YS2BJ8I8ETJ7K8D647RGVUOAA4T' where id=9; -update noar ti set v0='PC7YS2BJ8I8ETJ7K8D647RGVUOAA4T' where id=9; -update noar tt set b1='6X5SUSZ7J4LIO9TJ31C629ZBZQ5LT' where id=9; -update noar ti set b1='6X5SUSZ7J4LIO9TJ31C629ZBZQ5LT' where id=9; -update noar tt set v0='6OSYYISFEW37TE' where id=9; -update noar ti set v0='6OSYYISFEW37TE' where id=9; -update noar tt set b2='AU4V744OWFIATF00E7WFHT' where id=9; -update noar ti set b2='AU4V744OWFIATF00E7WFHT' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -f0 int not null, -v0 varchar(256) not null, -b0 tinyblob not null, -b1 mediumblob not null, -b2 tinyblob not null -) engine=tokudb; -insert into tt values (1,0,'','','',''); -insert into tt values (2,0,'','','',''); -insert into tt values (3,0,'','','',''); -insert into tt values (4,0,'','','',''); -insert into tt values (5,0,'','','',''); -insert into tt values (6,0,'','','',''); -insert into tt values (7,0,'','','',''); -insert into tt values (8,0,'','','',''); -insert into tt values (9,0,'','','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='5RAQUY' where id=1; -update noar ti set v0='5RAQUY' where id=1; -update noar tt set b0='PDYSWCEONZER' where id=1; -update noar ti set b0='PDYSWCEONZER' where id=1; -update noar tt set v0='RT1W2I6N6L7FE5FN' where id=1; -update noar ti set v0='RT1W2I6N6L7FE5FN' where id=1; -update noar tt set b1='ZE' where id=1; -update noar ti set b1='ZE' where id=1; -update noar tt set v0='LI4EQR4LRI26X5TG06YL9DQ' where id=1; -update noar ti set v0='LI4EQR4LRI26X5TG06YL9DQ' where id=1; -update noar tt set b2='WTBVKL9M8J6LA' where id=1; -update noar ti set b2='WTBVKL9M8J6LA' where id=1; -update noar tt set v0='J13WWK7MCA' where id=2; -update noar ti set v0='J13WWK7MCA' where id=2; -update noar tt set b0='S' where id=2; -update noar ti set b0='S' where id=2; -update noar tt set v0='IUZCTB13WJCPZIL6OK7YRV7QF0XRF090' where id=2; -update noar ti set v0='IUZCTB13WJCPZIL6OK7YRV7QF0XRF090' where id=2; -update noar tt set b1='2UQ2U5BHGQUO0TG5' where id=2; -update noar ti set b1='2UQ2U5BHGQUO0TG5' where id=2; -update noar tt set v0='LI8F3G0SJODO3Y' where id=2; -update noar ti set v0='LI8F3G0SJODO3Y' where id=2; -update noar tt set b2='QNG3Q9AXRNH3IN1T4V' where id=2; -update noar ti set b2='QNG3Q9AXRNH3IN1T4V' where id=2; -update noar tt set v0='7A7VMT3260TBMEEOJ1GKN' where id=3; -update noar ti set v0='7A7VMT3260TBMEEOJ1GKN' where id=3; -update noar tt set b0='Y7' where id=3; -update noar ti set b0='Y7' where id=3; -update noar tt set v0='0LHVCF9EVYL5' where id=3; -update noar ti set v0='0LHVCF9EVYL5' where id=3; -update noar tt set b1='LR4NJ0' where id=3; -update noar ti set b1='LR4NJ0' where id=3; -update noar tt set v0='N784Z87F5EZ8XRQ' where id=3; -update noar ti set v0='N784Z87F5EZ8XRQ' where id=3; -update noar tt set b2='XUQU9JZ789P' where id=3; -update noar ti set b2='XUQU9JZ789P' where id=3; -update noar tt set v0='T5097HTJOUECSV4MA11LNILA47S4' where id=4; -update noar ti set v0='T5097HTJOUECSV4MA11LNILA47S4' where id=4; -update noar tt set b0='BOJIMD1NI78B' where id=4; -update noar ti set b0='BOJIMD1NI78B' where id=4; -update noar tt set v0='5LCKAANXHBAF18B1K' where id=4; -update noar ti set v0='5LCKAANXHBAF18B1K' where id=4; -update noar tt set b1='Q94N8AJHT9' where id=4; -update noar ti set b1='Q94N8AJHT9' where id=4; -update noar tt set v0='DXLTI183PJLSM1DNTPDOV' where id=4; -update noar ti set v0='DXLTI183PJLSM1DNTPDOV' where id=4; -update noar tt set b2='1I1Q7ANREC' where id=4; -update noar ti set b2='1I1Q7ANREC' where id=4; -update noar tt set v0='6KSXNGN5EOREL9' where id=5; -update noar ti set v0='6KSXNGN5EOREL9' where id=5; -update noar tt set b0='6XWD45L6SE0KOQSHQ25ZLSG5Q1' where id=5; -update noar ti set b0='6XWD45L6SE0KOQSHQ25ZLSG5Q1' where id=5; -update noar tt set v0='8Y321P6' where id=5; -update noar ti set v0='8Y321P6' where id=5; -update noar tt set b1='05P' where id=5; -update noar ti set b1='05P' where id=5; -update noar tt set v0='F' where id=5; -update noar ti set v0='F' where id=5; -update noar tt set b2='9LH195JEGW9TY0K9HFO3' where id=5; -update noar ti set b2='9LH195JEGW9TY0K9HFO3' where id=5; -update noar tt set v0='WHQ9P6JPQ6AEUOS661OW187HA757TYNY' where id=6; -update noar ti set v0='WHQ9P6JPQ6AEUOS661OW187HA757TYNY' where id=6; -update noar tt set b0='5YIFUMY9FN7' where id=6; -update noar ti set b0='5YIFUMY9FN7' where id=6; -update noar tt set v0='6F4Z0HU8ZJLEP5MNX0OX' where id=6; -update noar ti set v0='6F4Z0HU8ZJLEP5MNX0OX' where id=6; -update noar tt set b1='17YBZ9N' where id=6; -update noar ti set b1='17YBZ9N' where id=6; -update noar tt set v0='SXBC549EQOCE' where id=6; -update noar ti set v0='SXBC549EQOCE' where id=6; -update noar tt set b2='A6UGNGV4RLTPT6KV4D8W' where id=6; -update noar ti set b2='A6UGNGV4RLTPT6KV4D8W' where id=6; -update noar tt set v0='VQ7SSCUM1A9NRCT9Q' where id=7; -update noar ti set v0='VQ7SSCUM1A9NRCT9Q' where id=7; -update noar tt set b0='XZVPF9XQO6RZPHXAIWYCANXB2YMD' where id=7; -update noar ti set b0='XZVPF9XQO6RZPHXAIWYCANXB2YMD' where id=7; -update noar tt set v0='TPXWN6G2JUKH7K1AFIN3JXVL' where id=7; -update noar ti set v0='TPXWN6G2JUKH7K1AFIN3JXVL' where id=7; -update noar tt set b1='ITXCSQGBCPB4H8964PVM6' where id=7; -update noar ti set b1='ITXCSQGBCPB4H8964PVM6' where id=7; -update noar tt set v0='8N82MIQXQTQRVQ9EZK2FF81OYEIH' where id=7; -update noar ti set v0='8N82MIQXQTQRVQ9EZK2FF81OYEIH' where id=7; -update noar tt set b2='9TU66KR2O411WN' where id=7; -update noar ti set b2='9TU66KR2O411WN' where id=7; -update noar tt set v0='8PZEVNMGRINNDE' where id=8; -update noar ti set v0='8PZEVNMGRINNDE' where id=8; -update noar tt set b0='RP' where id=8; -update noar ti set b0='RP' where id=8; -update noar tt set v0='CPE0M5UJWR0LJNXC' where id=8; -update noar ti set v0='CPE0M5UJWR0LJNXC' where id=8; -update noar tt set b1='4SINDZR9PVFA8EV35HBG7N' where id=8; -update noar ti set b1='4SINDZR9PVFA8EV35HBG7N' where id=8; -update noar tt set v0='0IUD1QG' where id=8; -update noar ti set v0='0IUD1QG' where id=8; -update noar tt set b2='8XB67B5M' where id=8; -update noar ti set b2='8XB67B5M' where id=8; -update noar tt set v0='VALP9O' where id=9; -update noar ti set v0='VALP9O' where id=9; -update noar tt set b0='F0' where id=9; -update noar ti set b0='F0' where id=9; -update noar tt set v0='IJ9EA919X' where id=9; -update noar ti set v0='IJ9EA919X' where id=9; -update noar tt set b1='WB9XJK9L1WG2S3D4CCKADWWSQ0' where id=9; -update noar ti set b1='WB9XJK9L1WG2S3D4CCKADWWSQ0' where id=9; -update noar tt set v0='PB0T1ONB3VMV49VP704KWX0EXO' where id=9; -update noar ti set v0='PB0T1ONB3VMV49VP704KWX0EXO' where id=9; -update noar tt set b2='OT' where id=9; -update noar ti set b2='OT' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -f0 int null, -v0 varchar(32) null, -b0 tinyblob null, -b1 mediumblob null, -b2 blob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='LFO6J9LUCSDMJ9KO6DE6QQA' where id=1; -update noar ti set v0='LFO6J9LUCSDMJ9KO6DE6QQA' where id=1; -update noar tt set b0='HP1UH3I8E921KJQHJPBIRJE1Q0' where id=1; -update noar ti set b0='HP1UH3I8E921KJQHJPBIRJE1Q0' where id=1; -update noar tt set v0='RBGFPQA' where id=1; -update noar ti set v0='RBGFPQA' where id=1; -update noar tt set b1='MW5TZKCIXC8LEH1' where id=1; -update noar ti set b1='MW5TZKCIXC8LEH1' where id=1; -update noar tt set v0='5ZUA5ENER506ZMBIIA66DP91' where id=1; -update noar ti set v0='5ZUA5ENER506ZMBIIA66DP91' where id=1; -update noar tt set b2='A5PK3C44I2E' where id=1; -update noar ti set b2='A5PK3C44I2E' where id=1; -update noar tt set v0='VZKPMUB5ERASO1OZUMHH05DH' where id=2; -update noar ti set v0='VZKPMUB5ERASO1OZUMHH05DH' where id=2; -update noar tt set b0='D0NF45PFAURFIO6QVIAR1V9Y9WJUW' where id=2; -update noar ti set b0='D0NF45PFAURFIO6QVIAR1V9Y9WJUW' where id=2; -update noar tt set v0='W55OHMMA7YGNXDM9Z3YHIX7U4KXU3' where id=2; -update noar ti set v0='W55OHMMA7YGNXDM9Z3YHIX7U4KXU3' where id=2; -update noar tt set b1='D2BV6AT541R3QSPJQLNBQQ7BE31TCTZU' where id=2; -update noar ti set b1='D2BV6AT541R3QSPJQLNBQQ7BE31TCTZU' where id=2; -update noar tt set v0='9SITWNATENASOMPBGTA6' where id=2; -update noar ti set v0='9SITWNATENASOMPBGTA6' where id=2; -update noar tt set b2='U5KN6JV' where id=2; -update noar ti set b2='U5KN6JV' where id=2; -update noar tt set v0='4AZC0LR5YTQDH0780SWTF1G' where id=3; -update noar ti set v0='4AZC0LR5YTQDH0780SWTF1G' where id=3; -update noar tt set b0='J8VHEVVO' where id=3; -update noar ti set b0='J8VHEVVO' where id=3; -update noar tt set v0='7IM' where id=3; -update noar ti set v0='7IM' where id=3; -update noar tt set b1='U816FOYS' where id=3; -update noar ti set b1='U816FOYS' where id=3; -update noar tt set v0='0PTO9VCHOC7' where id=3; -update noar ti set v0='0PTO9VCHOC7' where id=3; -update noar tt set b2='AAQ' where id=3; -update noar ti set b2='AAQ' where id=3; -update noar tt set v0='1VTVFGJ8YDKFSKL41SW9' where id=4; -update noar ti set v0='1VTVFGJ8YDKFSKL41SW9' where id=4; -update noar tt set b0='9WHQZPZVMY5852X' where id=4; -update noar ti set b0='9WHQZPZVMY5852X' where id=4; -update noar tt set v0='3R936A7QG76F29' where id=4; -update noar ti set v0='3R936A7QG76F29' where id=4; -update noar tt set b1='GBOUZUXI00115FAVGV37ZL2RIJIK6I' where id=4; -update noar ti set b1='GBOUZUXI00115FAVGV37ZL2RIJIK6I' where id=4; -update noar tt set v0='LHVZKVLE0' where id=4; -update noar ti set v0='LHVZKVLE0' where id=4; -update noar tt set b2='PVD3A7HFZFZ74IEM3ZV0WL7O7T' where id=4; -update noar ti set b2='PVD3A7HFZFZ74IEM3ZV0WL7O7T' where id=4; -update noar tt set v0='UOMIE5BI4ASD' where id=5; -update noar ti set v0='UOMIE5BI4ASD' where id=5; -update noar tt set b0='GR' where id=5; -update noar ti set b0='GR' where id=5; -update noar tt set v0='6RDPF0C8QIJK7GLJG0WNW7V4LR3UMNK' where id=5; -update noar ti set v0='6RDPF0C8QIJK7GLJG0WNW7V4LR3UMNK' where id=5; -update noar tt set b1='AILNU53' where id=5; -update noar ti set b1='AILNU53' where id=5; -update noar tt set v0='OCUVH5L74DYX7FJKPHE2BVL' where id=5; -update noar ti set v0='OCUVH5L74DYX7FJKPHE2BVL' where id=5; -update noar tt set b2='3S8OJDXQIZX2D6ISY4Z352GCOR2SN' where id=5; -update noar ti set b2='3S8OJDXQIZX2D6ISY4Z352GCOR2SN' where id=5; -update noar tt set v0='1QQGMJYOOU6S067CKX' where id=6; -update noar ti set v0='1QQGMJYOOU6S067CKX' where id=6; -update noar tt set b0='L6KX28HGI3QCN8D8K0COPCL3Y1OO5V7' where id=6; -update noar ti set b0='L6KX28HGI3QCN8D8K0COPCL3Y1OO5V7' where id=6; -update noar tt set v0='OXNGWK0D' where id=6; -update noar ti set v0='OXNGWK0D' where id=6; -update noar tt set b1='L2O8MRM9IQ' where id=6; -update noar ti set b1='L2O8MRM9IQ' where id=6; -update noar tt set v0='KUB6QUNG8HF7' where id=6; -update noar ti set v0='KUB6QUNG8HF7' where id=6; -update noar tt set b2='NH7T9Z2YW9V' where id=6; -update noar ti set b2='NH7T9Z2YW9V' where id=6; -update noar tt set v0='8EUWNWJJBYQ' where id=7; -update noar ti set v0='8EUWNWJJBYQ' where id=7; -update noar tt set b0='EI27UT8EEF4DPTD3PJS9YQ1TQVL' where id=7; -update noar ti set b0='EI27UT8EEF4DPTD3PJS9YQ1TQVL' where id=7; -update noar tt set v0='8T5M2VQL8DRNKE9NPV3' where id=7; -update noar ti set v0='8T5M2VQL8DRNKE9NPV3' where id=7; -update noar tt set b1='BIVGNZ270YUUGWZF' where id=7; -update noar ti set b1='BIVGNZ270YUUGWZF' where id=7; -update noar tt set v0='RBDOR8F27YUR6B' where id=7; -update noar ti set v0='RBDOR8F27YUR6B' where id=7; -update noar tt set b2='T8G0UQV2FFA1J2DMH5TFTJGAG' where id=7; -update noar ti set b2='T8G0UQV2FFA1J2DMH5TFTJGAG' where id=7; -update noar tt set v0='W0Q68WXLP' where id=8; -update noar ti set v0='W0Q68WXLP' where id=8; -update noar tt set b0='PYC' where id=8; -update noar ti set b0='PYC' where id=8; -update noar tt set v0='N9I5SB3KJD6Z87X7GC40UMUEOLMVI' where id=8; -update noar ti set v0='N9I5SB3KJD6Z87X7GC40UMUEOLMVI' where id=8; -update noar tt set b1='WLJAO1WQE6' where id=8; -update noar ti set b1='WLJAO1WQE6' where id=8; -update noar tt set v0='F89YEUYOT3RY413X6Z9RBG0UL05H5Y0' where id=8; -update noar ti set v0='F89YEUYOT3RY413X6Z9RBG0UL05H5Y0' where id=8; -update noar tt set b2='ABXDN951SMBYK1HJIHE2AU5EXB2XCVP2' where id=8; -update noar ti set b2='ABXDN951SMBYK1HJIHE2AU5EXB2XCVP2' where id=8; -update noar tt set v0='232' where id=9; -update noar ti set v0='232' where id=9; -update noar tt set b0='9YX5O1CY26QL63OCD288PJFT6U1' where id=9; -update noar ti set b0='9YX5O1CY26QL63OCD288PJFT6U1' where id=9; -update noar tt set v0='MC68RVH1J96EZK89NAKZBMBJ50WSWY' where id=9; -update noar ti set v0='MC68RVH1J96EZK89NAKZBMBJ50WSWY' where id=9; -update noar tt set b1='28OSL1M5NDHP48VWBF1FYYCR1ZN9O' where id=9; -update noar ti set b1='28OSL1M5NDHP48VWBF1FYYCR1ZN9O' where id=9; -update noar tt set v0='5SYHN8JCZBH5ARMLEI' where id=9; -update noar ti set v0='5SYHN8JCZBH5ARMLEI' where id=9; -update noar tt set b2='CDVZL1LR3UZEHCRR' where id=9; -update noar ti set b2='CDVZL1LR3UZEHCRR' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -f0 int null, -v0 varchar(256) null, -b0 tinyblob null, -b1 mediumblob null, -b2 blob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='0BWP0' where id=1; -update noar ti set v0='0BWP0' where id=1; -update noar tt set b0='SGA' where id=1; -update noar ti set b0='SGA' where id=1; -update noar tt set v0='A8VSWYDJLGTX19M35PMCOSMV1ENIO0' where id=1; -update noar ti set v0='A8VSWYDJLGTX19M35PMCOSMV1ENIO0' where id=1; -update noar tt set b1='H58D9MOWNNZD5QDT' where id=1; -update noar ti set b1='H58D9MOWNNZD5QDT' where id=1; -update noar tt set v0='977V76KUAY4ZP52OOEMR0Q' where id=1; -update noar ti set v0='977V76KUAY4ZP52OOEMR0Q' where id=1; -update noar tt set b2='U5UT8HSNUKLTNG' where id=1; -update noar ti set b2='U5UT8HSNUKLTNG' where id=1; -update noar tt set v0='JR3OTPUDTD6JDW5M9KA22J' where id=2; -update noar ti set v0='JR3OTPUDTD6JDW5M9KA22J' where id=2; -update noar tt set b0='IPS6IJ5UJVQF' where id=2; -update noar ti set b0='IPS6IJ5UJVQF' where id=2; -update noar tt set v0='JYTX' where id=2; -update noar ti set v0='JYTX' where id=2; -update noar tt set b1='D0' where id=2; -update noar ti set b1='D0' where id=2; -update noar tt set v0='BAHUFJ8LWHPITWIHUV7WNL08O50FBA6J' where id=2; -update noar ti set v0='BAHUFJ8LWHPITWIHUV7WNL08O50FBA6J' where id=2; -update noar tt set b2='OXS9M6IHACX0T3E2Y6VG3N5T5UEA7' where id=2; -update noar ti set b2='OXS9M6IHACX0T3E2Y6VG3N5T5UEA7' where id=2; -update noar tt set v0='TB6JGCA1JSUK7GF4RUBBXG' where id=3; -update noar ti set v0='TB6JGCA1JSUK7GF4RUBBXG' where id=3; -update noar tt set b0='PG4AL8PCFDW0S84N' where id=3; -update noar ti set b0='PG4AL8PCFDW0S84N' where id=3; -update noar tt set v0='94TVPUOBVA266HK87ZGSP1M8W1P5GA' where id=3; -update noar ti set v0='94TVPUOBVA266HK87ZGSP1M8W1P5GA' where id=3; -update noar tt set b1='IQWYNVVP' where id=3; -update noar ti set b1='IQWYNVVP' where id=3; -update noar tt set v0='7P4MG6PZK6EE6TMMEVAJEVGCLPOKHSN' where id=3; -update noar ti set v0='7P4MG6PZK6EE6TMMEVAJEVGCLPOKHSN' where id=3; -update noar tt set b2='SRJF0WZPPW4L' where id=3; -update noar ti set b2='SRJF0WZPPW4L' where id=3; -update noar tt set v0='UKMLTWAK0KQJM73W0EO1B' where id=4; -update noar ti set v0='UKMLTWAK0KQJM73W0EO1B' where id=4; -update noar tt set b0='8Q5GOWZVNIT3T' where id=4; -update noar ti set b0='8Q5GOWZVNIT3T' where id=4; -update noar tt set v0='7YE8' where id=4; -update noar ti set v0='7YE8' where id=4; -update noar tt set b1='295AY9U2' where id=4; -update noar ti set b1='295AY9U2' where id=4; -update noar tt set v0='M36S9OMALWBMN' where id=4; -update noar ti set v0='M36S9OMALWBMN' where id=4; -update noar tt set b2='LEA5QF6IZZV8VJ7CBPKIOW8K5' where id=4; -update noar ti set b2='LEA5QF6IZZV8VJ7CBPKIOW8K5' where id=4; -update noar tt set v0='ARHJH1T2YE2EKK0OA69' where id=5; -update noar ti set v0='ARHJH1T2YE2EKK0OA69' where id=5; -update noar tt set b0='9NXOTRT6ZE7ET7N' where id=5; -update noar ti set b0='9NXOTRT6ZE7ET7N' where id=5; -update noar tt set v0='9Y' where id=5; -update noar ti set v0='9Y' where id=5; -update noar tt set b1='U7J9X28TW6C0E8Z62BL455TPX' where id=5; -update noar ti set b1='U7J9X28TW6C0E8Z62BL455TPX' where id=5; -update noar tt set v0='V282' where id=5; -update noar ti set v0='V282' where id=5; -update noar tt set b2='OBRSGLZQSM0UW4J6IK6RY' where id=5; -update noar ti set b2='OBRSGLZQSM0UW4J6IK6RY' where id=5; -update noar tt set v0='P' where id=6; -update noar ti set v0='P' where id=6; -update noar tt set b0='WZSX7DM8MPLD7' where id=6; -update noar ti set b0='WZSX7DM8MPLD7' where id=6; -update noar tt set v0='J1NZ' where id=6; -update noar ti set v0='J1NZ' where id=6; -update noar tt set b1='X' where id=6; -update noar ti set b1='X' where id=6; -update noar tt set v0='PFYED' where id=6; -update noar ti set v0='PFYED' where id=6; -update noar tt set b2='2VBL40UJ8RZXK7K3O8V8K' where id=6; -update noar ti set b2='2VBL40UJ8RZXK7K3O8V8K' where id=6; -update noar tt set v0='BMTT6HKT' where id=7; -update noar ti set v0='BMTT6HKT' where id=7; -update noar tt set b0='Y09GSCNXJ7KVNS' where id=7; -update noar ti set b0='Y09GSCNXJ7KVNS' where id=7; -update noar tt set v0='VRTJL0' where id=7; -update noar ti set v0='VRTJL0' where id=7; -update noar tt set b1='V73BY90FHEWCL7CW' where id=7; -update noar ti set b1='V73BY90FHEWCL7CW' where id=7; -update noar tt set v0='TJX7LSW5X23PUIRLY7UDFVJT2QP' where id=7; -update noar ti set v0='TJX7LSW5X23PUIRLY7UDFVJT2QP' where id=7; -update noar tt set b2='A1L6VGE' where id=7; -update noar ti set b2='A1L6VGE' where id=7; -update noar tt set v0='PORL6H2CVBVDS' where id=8; -update noar ti set v0='PORL6H2CVBVDS' where id=8; -update noar tt set b0='2V6HTENJ' where id=8; -update noar ti set b0='2V6HTENJ' where id=8; -update noar tt set v0='X1ZAQEV0NKO11' where id=8; -update noar ti set v0='X1ZAQEV0NKO11' where id=8; -update noar tt set b1='OO1NEXWRHUGL8IR5E7' where id=8; -update noar ti set b1='OO1NEXWRHUGL8IR5E7' where id=8; -update noar tt set v0='8OTFC9C' where id=8; -update noar ti set v0='8OTFC9C' where id=8; -update noar tt set b2='RAYG7R5179GCEQXWX4M6BF448RY7I' where id=8; -update noar ti set b2='RAYG7R5179GCEQXWX4M6BF448RY7I' where id=8; -update noar tt set v0='EY89HUXM9UKM' where id=9; -update noar ti set v0='EY89HUXM9UKM' where id=9; -update noar tt set b0='R4MD71HZJLPJKYL5' where id=9; -update noar ti set b0='R4MD71HZJLPJKYL5' where id=9; -update noar tt set v0='Y7IPXM05N1' where id=9; -update noar ti set v0='Y7IPXM05N1' where id=9; -update noar tt set b1='GNLY9GZEI7ZKDP05K' where id=9; -update noar ti set b1='GNLY9GZEI7ZKDP05K' where id=9; -update noar tt set v0='63BA8YP1LQQLR8BL2AJ62U' where id=9; -update noar ti set v0='63BA8YP1LQQLR8BL2AJ62U' where id=9; -update noar tt set b2='F93M70Q39H8HR9' where id=9; -update noar ti set b2='F93M70Q39H8HR9' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -f0 int not null, -v0 varchar(32) not null, -b0 tinyblob not null, -b1 mediumblob not null, -b2 blob not null -) engine=tokudb; -insert into tt values (1,0,'','','',''); -insert into tt values (2,0,'','','',''); -insert into tt values (3,0,'','','',''); -insert into tt values (4,0,'','','',''); -insert into tt values (5,0,'','','',''); -insert into tt values (6,0,'','','',''); -insert into tt values (7,0,'','','',''); -insert into tt values (8,0,'','','',''); -insert into tt values (9,0,'','','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='DIXB7DVORSS0YJ6M4KO3LYBKQKEYW' where id=1; -update noar ti set v0='DIXB7DVORSS0YJ6M4KO3LYBKQKEYW' where id=1; -update noar tt set b0='RAOXPW2H0XA60DKRFI985' where id=1; -update noar ti set b0='RAOXPW2H0XA60DKRFI985' where id=1; -update noar tt set v0='E9Q0J7M0ZF0IK1AF2N2FZFS8GZ' where id=1; -update noar ti set v0='E9Q0J7M0ZF0IK1AF2N2FZFS8GZ' where id=1; -update noar tt set b1='L1PKSET9ADDWPC3102' where id=1; -update noar ti set b1='L1PKSET9ADDWPC3102' where id=1; -update noar tt set v0='7WUS' where id=1; -update noar ti set v0='7WUS' where id=1; -update noar tt set b2='P6VLAF7TTL29DU2Q2PJTL13GPB' where id=1; -update noar ti set b2='P6VLAF7TTL29DU2Q2PJTL13GPB' where id=1; -update noar tt set v0='ADHAL' where id=2; -update noar ti set v0='ADHAL' where id=2; -update noar tt set b0='HVKTO64PQW87YILTMJTXGTSMAJ' where id=2; -update noar ti set b0='HVKTO64PQW87YILTMJTXGTSMAJ' where id=2; -update noar tt set v0='JO6NO69OOA29' where id=2; -update noar ti set v0='JO6NO69OOA29' where id=2; -update noar tt set b1='RO28C' where id=2; -update noar ti set b1='RO28C' where id=2; -update noar tt set v0='KO0A0MKPDPKM' where id=2; -update noar ti set v0='KO0A0MKPDPKM' where id=2; -update noar tt set b2='RMN6W3' where id=2; -update noar ti set b2='RMN6W3' where id=2; -update noar tt set v0='Q78ASDJS6ON6A3R9NQ00' where id=3; -update noar ti set v0='Q78ASDJS6ON6A3R9NQ00' where id=3; -update noar tt set b0='YDBM7OZL0QNGSJ' where id=3; -update noar ti set b0='YDBM7OZL0QNGSJ' where id=3; -update noar tt set v0='89K9AFEMUAGQBJ9WI47CMF1QFB065W5C' where id=3; -update noar ti set v0='89K9AFEMUAGQBJ9WI47CMF1QFB065W5C' where id=3; -update noar tt set b1='140AK8AJOWX8EBHJXQR0R8BYOAYUT4' where id=3; -update noar ti set b1='140AK8AJOWX8EBHJXQR0R8BYOAYUT4' where id=3; -update noar tt set v0='Y4R3W1CSM8Y' where id=3; -update noar ti set v0='Y4R3W1CSM8Y' where id=3; -update noar tt set b2='K1' where id=3; -update noar ti set b2='K1' where id=3; -update noar tt set v0='8A1I3X8I3Z6QXNA' where id=4; -update noar ti set v0='8A1I3X8I3Z6QXNA' where id=4; -update noar tt set b0='LIB' where id=4; -update noar ti set b0='LIB' where id=4; -update noar tt set v0='N9BTGQYBJXNEOIHM' where id=4; -update noar ti set v0='N9BTGQYBJXNEOIHM' where id=4; -update noar tt set b1='16H4Y5J8' where id=4; -update noar ti set b1='16H4Y5J8' where id=4; -update noar tt set v0='E' where id=4; -update noar ti set v0='E' where id=4; -update noar tt set b2='AERU7CMEE3QOTK' where id=4; -update noar ti set b2='AERU7CMEE3QOTK' where id=4; -update noar tt set v0='TCBQ' where id=5; -update noar ti set v0='TCBQ' where id=5; -update noar tt set b0='5CAWV3T0BMU66ULL6MJ9X4PUWHYFU' where id=5; -update noar ti set b0='5CAWV3T0BMU66ULL6MJ9X4PUWHYFU' where id=5; -update noar tt set v0='88ZQSJ8I' where id=5; -update noar ti set v0='88ZQSJ8I' where id=5; -update noar tt set b1='5AUFKZTTNFBC8TGSN1QIO' where id=5; -update noar ti set b1='5AUFKZTTNFBC8TGSN1QIO' where id=5; -update noar tt set v0='Q1TRAVTHCUZZPY927L6OASZP0UH2WYIF' where id=5; -update noar ti set v0='Q1TRAVTHCUZZPY927L6OASZP0UH2WYIF' where id=5; -update noar tt set b2='41OQMMNQKF72PCUCTQL897RNUC1TQK' where id=5; -update noar ti set b2='41OQMMNQKF72PCUCTQL897RNUC1TQK' where id=5; -update noar tt set v0='RF' where id=6; -update noar ti set v0='RF' where id=6; -update noar tt set b0='3YIE0OGJAQ2L1P9I94YKB9NIT90O3LZ' where id=6; -update noar ti set b0='3YIE0OGJAQ2L1P9I94YKB9NIT90O3LZ' where id=6; -update noar tt set v0='RP4TD8F5X04312BOD8HU07R553WS' where id=6; -update noar ti set v0='RP4TD8F5X04312BOD8HU07R553WS' where id=6; -update noar tt set b1='U' where id=6; -update noar ti set b1='U' where id=6; -update noar tt set v0='A3O9SE4QRROMO3NKKC07S3H' where id=6; -update noar ti set v0='A3O9SE4QRROMO3NKKC07S3H' where id=6; -update noar tt set b2='9NH68AXM8EHXT72N6BSZT6AELME' where id=6; -update noar ti set b2='9NH68AXM8EHXT72N6BSZT6AELME' where id=6; -update noar tt set v0='V' where id=7; -update noar ti set v0='V' where id=7; -update noar tt set b0='447352BQN1SO5O3ZO7UGJ' where id=7; -update noar ti set b0='447352BQN1SO5O3ZO7UGJ' where id=7; -update noar tt set v0='TF4W75LL5OZTWW8BD86BWDGA88' where id=7; -update noar ti set v0='TF4W75LL5OZTWW8BD86BWDGA88' where id=7; -update noar tt set b1='VSQHZD7SKSQSOXJ' where id=7; -update noar ti set b1='VSQHZD7SKSQSOXJ' where id=7; -update noar tt set v0='3F' where id=7; -update noar ti set v0='3F' where id=7; -update noar tt set b2='BDIT3UNK2D15JL1X8OILFX9T9754MX' where id=7; -update noar ti set b2='BDIT3UNK2D15JL1X8OILFX9T9754MX' where id=7; -update noar tt set v0='4IOV74FCTZ3IS71ZXB6EMRE0J1375GPH' where id=8; -update noar ti set v0='4IOV74FCTZ3IS71ZXB6EMRE0J1375GPH' where id=8; -update noar tt set b0='IJCV7JI0U6HY' where id=8; -update noar ti set b0='IJCV7JI0U6HY' where id=8; -update noar tt set v0='DI9UWF52HRT' where id=8; -update noar ti set v0='DI9UWF52HRT' where id=8; -update noar tt set b1='19SHPH1FM7' where id=8; -update noar ti set b1='19SHPH1FM7' where id=8; -update noar tt set v0='8GPCCD8U6SOISS43KG6CL9GHDD0H' where id=8; -update noar ti set v0='8GPCCD8U6SOISS43KG6CL9GHDD0H' where id=8; -update noar tt set b2='RSYLJ' where id=8; -update noar ti set b2='RSYLJ' where id=8; -update noar tt set v0='D1OQ4U29CZKC6GLL6FCVFKXAKEJ6L' where id=9; -update noar ti set v0='D1OQ4U29CZKC6GLL6FCVFKXAKEJ6L' where id=9; -update noar tt set b0='M0W61AUZK7SKBS0Z1FY' where id=9; -update noar ti set b0='M0W61AUZK7SKBS0Z1FY' where id=9; -update noar tt set v0='L' where id=9; -update noar ti set v0='L' where id=9; -update noar tt set b1='7KYOPIBM99BCQ0LIWVDSQFZW449070' where id=9; -update noar ti set b1='7KYOPIBM99BCQ0LIWVDSQFZW449070' where id=9; -update noar tt set v0='JVSK7PKW6XHNF5WAG3IOLCIFNZ' where id=9; -update noar ti set v0='JVSK7PKW6XHNF5WAG3IOLCIFNZ' where id=9; -update noar tt set b2='BVQ6R7TNV60ODTT1FRDA73ET6QVSZ87' where id=9; -update noar ti set b2='BVQ6R7TNV60ODTT1FRDA73ET6QVSZ87' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -f0 int not null, -v0 varchar(256) not null, -b0 tinyblob not null, -b1 mediumblob not null, -b2 blob not null -) engine=tokudb; -insert into tt values (1,0,'','','',''); -insert into tt values (2,0,'','','',''); -insert into tt values (3,0,'','','',''); -insert into tt values (4,0,'','','',''); -insert into tt values (5,0,'','','',''); -insert into tt values (6,0,'','','',''); -insert into tt values (7,0,'','','',''); -insert into tt values (8,0,'','','',''); -insert into tt values (9,0,'','','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='7I16QVHZR66AL41ZH4FTZHPZ201AC' where id=1; -update noar ti set v0='7I16QVHZR66AL41ZH4FTZHPZ201AC' where id=1; -update noar tt set b0='KKD' where id=1; -update noar ti set b0='KKD' where id=1; -update noar tt set v0='3XPM6HMVDVFTJMEJEJUAR5HSU1' where id=1; -update noar ti set v0='3XPM6HMVDVFTJMEJEJUAR5HSU1' where id=1; -update noar tt set b1='QTDWBVMXDK5KT' where id=1; -update noar ti set b1='QTDWBVMXDK5KT' where id=1; -update noar tt set v0='KVG9MK7S8C3I1JB0ESDJ7DAI' where id=1; -update noar ti set v0='KVG9MK7S8C3I1JB0ESDJ7DAI' where id=1; -update noar tt set b2='7J1P1MMJMA172' where id=1; -update noar ti set b2='7J1P1MMJMA172' where id=1; -update noar tt set v0='RNR6' where id=2; -update noar ti set v0='RNR6' where id=2; -update noar tt set b0='21JTA51SGQ46OYG25PU' where id=2; -update noar ti set b0='21JTA51SGQ46OYG25PU' where id=2; -update noar tt set v0='XC86ZUWD8FWPA26N8ZVGO2COGP' where id=2; -update noar ti set v0='XC86ZUWD8FWPA26N8ZVGO2COGP' where id=2; -update noar tt set b1='94YTJP5ITMAWX4V2YJ1YJSW44IBI' where id=2; -update noar ti set b1='94YTJP5ITMAWX4V2YJ1YJSW44IBI' where id=2; -update noar tt set v0='6WTGLOXR5UFCZEUQ2T3GVR' where id=2; -update noar ti set v0='6WTGLOXR5UFCZEUQ2T3GVR' where id=2; -update noar tt set b2='SK8T3XW9OUPIQDJ' where id=2; -update noar ti set b2='SK8T3XW9OUPIQDJ' where id=2; -update noar tt set v0='BMYNVI' where id=3; -update noar ti set v0='BMYNVI' where id=3; -update noar tt set b0='K11Z908MZVTSK5T3QGCFN5155A' where id=3; -update noar ti set b0='K11Z908MZVTSK5T3QGCFN5155A' where id=3; -update noar tt set v0='UNIUDPNGVDDXMWG' where id=3; -update noar ti set v0='UNIUDPNGVDDXMWG' where id=3; -update noar tt set b1='POVPBA1G1J4IQMX8J2S0G5M8O' where id=3; -update noar ti set b1='POVPBA1G1J4IQMX8J2S0G5M8O' where id=3; -update noar tt set v0='GDHVCKE2LV1N796' where id=3; -update noar ti set v0='GDHVCKE2LV1N796' where id=3; -update noar tt set b2='5YXYVVVP1IW2OG' where id=3; -update noar ti set b2='5YXYVVVP1IW2OG' where id=3; -update noar tt set v0='1DM7APHTV4Y8U4AUYDPU5SE7D9929H' where id=4; -update noar ti set v0='1DM7APHTV4Y8U4AUYDPU5SE7D9929H' where id=4; -update noar tt set b0='BCJSYPO4XS6D4BDP6NHA0QEIUJK6LD' where id=4; -update noar ti set b0='BCJSYPO4XS6D4BDP6NHA0QEIUJK6LD' where id=4; -update noar tt set v0='5WCB04GX2QW5VZAWMN4QB9EBOAK6M9' where id=4; -update noar ti set v0='5WCB04GX2QW5VZAWMN4QB9EBOAK6M9' where id=4; -update noar tt set b1='H' where id=4; -update noar ti set b1='H' where id=4; -update noar tt set v0='DT7945J17KV' where id=4; -update noar ti set v0='DT7945J17KV' where id=4; -update noar tt set b2='OB8KMNU' where id=4; -update noar ti set b2='OB8KMNU' where id=4; -update noar tt set v0='7SPXSUCMJ0JJ1ACSMHTSMXNZZ3VLO34' where id=5; -update noar ti set v0='7SPXSUCMJ0JJ1ACSMHTSMXNZZ3VLO34' where id=5; -update noar tt set b0='CXKK13O8DT7W75JSPRP2G' where id=5; -update noar ti set b0='CXKK13O8DT7W75JSPRP2G' where id=5; -update noar tt set v0='XQFOTKSCBERE1YV9' where id=5; -update noar ti set v0='XQFOTKSCBERE1YV9' where id=5; -update noar tt set b1='BU5UMGDCO6N8T5CWBHI76OAC0NUL2X' where id=5; -update noar ti set b1='BU5UMGDCO6N8T5CWBHI76OAC0NUL2X' where id=5; -update noar tt set v0='A' where id=5; -update noar ti set v0='A' where id=5; -update noar tt set b2='L6UCV41J66P4V5' where id=5; -update noar ti set b2='L6UCV41J66P4V5' where id=5; -update noar tt set v0='VRXJDL118RS' where id=6; -update noar ti set v0='VRXJDL118RS' where id=6; -update noar tt set b0='JXU89PSCQPDOWTJZ54DPTV0GH8RT' where id=6; -update noar ti set b0='JXU89PSCQPDOWTJZ54DPTV0GH8RT' where id=6; -update noar tt set v0='RVX0X9XSRBD05K2OUK' where id=6; -update noar ti set v0='RVX0X9XSRBD05K2OUK' where id=6; -update noar tt set b1='4T8GB3K' where id=6; -update noar ti set b1='4T8GB3K' where id=6; -update noar tt set v0='4GP5MACVYNWWMRC' where id=6; -update noar ti set v0='4GP5MACVYNWWMRC' where id=6; -update noar tt set b2='EE9J56' where id=6; -update noar ti set b2='EE9J56' where id=6; -update noar tt set v0='UA1YFZPY8YG3D4YNV' where id=7; -update noar ti set v0='UA1YFZPY8YG3D4YNV' where id=7; -update noar tt set b0='OEH7V6QFRRYP' where id=7; -update noar ti set b0='OEH7V6QFRRYP' where id=7; -update noar tt set v0='G482J8GK4GOQF' where id=7; -update noar ti set v0='G482J8GK4GOQF' where id=7; -update noar tt set b1='1QAOG3C6H4FPXM1FV0W38223HM205D0M' where id=7; -update noar ti set b1='1QAOG3C6H4FPXM1FV0W38223HM205D0M' where id=7; -update noar tt set v0='D' where id=7; -update noar ti set v0='D' where id=7; -update noar tt set b2='J2PJKPD3IJDWJ2FVG790O1511DZ0' where id=7; -update noar ti set b2='J2PJKPD3IJDWJ2FVG790O1511DZ0' where id=7; -update noar tt set v0='IWF4TMZ3U' where id=8; -update noar ti set v0='IWF4TMZ3U' where id=8; -update noar tt set b0='6SMHHEEM5Y' where id=8; -update noar ti set b0='6SMHHEEM5Y' where id=8; -update noar tt set v0='HAQIPOOEOB8A2Y5GSQUA7XEZF5' where id=8; -update noar ti set v0='HAQIPOOEOB8A2Y5GSQUA7XEZF5' where id=8; -update noar tt set b1='H650P' where id=8; -update noar ti set b1='H650P' where id=8; -update noar tt set v0='OWZIQYDZO' where id=8; -update noar ti set v0='OWZIQYDZO' where id=8; -update noar tt set b2='2KRH0CML7JQQFVAYJG8SSV' where id=8; -update noar ti set b2='2KRH0CML7JQQFVAYJG8SSV' where id=8; -update noar tt set v0='DT06CMEN433K' where id=9; -update noar ti set v0='DT06CMEN433K' where id=9; -update noar tt set b0='J' where id=9; -update noar ti set b0='J' where id=9; -update noar tt set v0='GFEVOXFXTZSUAYX65NSZU389LA6SE' where id=9; -update noar ti set v0='GFEVOXFXTZSUAYX65NSZU389LA6SE' where id=9; -update noar tt set b1='OB' where id=9; -update noar ti set b1='OB' where id=9; -update noar tt set v0='QE8HQV' where id=9; -update noar ti set v0='QE8HQV' where id=9; -update noar tt set b2='PWL00I4' where id=9; -update noar ti set b2='PWL00I4' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -f0 int null, -v0 varchar(32) null, -b0 tinyblob null, -b1 mediumblob null, -b2 mediumblob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='7Z858Y5VZ8NKN5L99R5XT4' where id=1; -update noar ti set v0='7Z858Y5VZ8NKN5L99R5XT4' where id=1; -update noar tt set b0='E9LDR1BDEV8I8X1S5CYQD91PSVL5I' where id=1; -update noar ti set b0='E9LDR1BDEV8I8X1S5CYQD91PSVL5I' where id=1; -update noar tt set v0='KKFUNM9NIBCJSOZEC04T4YYR3RW' where id=1; -update noar ti set v0='KKFUNM9NIBCJSOZEC04T4YYR3RW' where id=1; -update noar tt set b1='S5MD95WOAGVP8TVHKP9VRK8N9' where id=1; -update noar ti set b1='S5MD95WOAGVP8TVHKP9VRK8N9' where id=1; -update noar tt set v0='QW6GROI0CP183Z48ESY2DW366F' where id=1; -update noar ti set v0='QW6GROI0CP183Z48ESY2DW366F' where id=1; -update noar tt set b2='2EJ8VKCNME5O94UXNRMIS3FS' where id=1; -update noar ti set b2='2EJ8VKCNME5O94UXNRMIS3FS' where id=1; -update noar tt set v0='LAG' where id=2; -update noar ti set v0='LAG' where id=2; -update noar tt set b0='YJW9G' where id=2; -update noar ti set b0='YJW9G' where id=2; -update noar tt set v0='3BSFC8SOOBVX5YXHM534D6TMR5KHZKR' where id=2; -update noar ti set v0='3BSFC8SOOBVX5YXHM534D6TMR5KHZKR' where id=2; -update noar tt set b1='0O3IIKEMQ3DQNAIFD2L' where id=2; -update noar ti set b1='0O3IIKEMQ3DQNAIFD2L' where id=2; -update noar tt set v0='K4ZKQTSDAPJXS7HRVZ2UGN885HF' where id=2; -update noar ti set v0='K4ZKQTSDAPJXS7HRVZ2UGN885HF' where id=2; -update noar tt set b2='YRS616TBSWJQZ' where id=2; -update noar ti set b2='YRS616TBSWJQZ' where id=2; -update noar tt set v0='EIHFPEU65' where id=3; -update noar ti set v0='EIHFPEU65' where id=3; -update noar tt set b0='78XU0Y' where id=3; -update noar ti set b0='78XU0Y' where id=3; -update noar tt set v0='L146AC11XZA' where id=3; -update noar ti set v0='L146AC11XZA' where id=3; -update noar tt set b1='3LP149XR4UY2NJ3PJVNZ9X1BIJREG' where id=3; -update noar ti set b1='3LP149XR4UY2NJ3PJVNZ9X1BIJREG' where id=3; -update noar tt set v0='0C9EMH17SJWTEQC45SXTFEFQXCAG' where id=3; -update noar ti set v0='0C9EMH17SJWTEQC45SXTFEFQXCAG' where id=3; -update noar tt set b2='LTE5WKHH77PTEF3SX3S8' where id=3; -update noar ti set b2='LTE5WKHH77PTEF3SX3S8' where id=3; -update noar tt set v0='MZJDL7WLKQH9QXU' where id=4; -update noar ti set v0='MZJDL7WLKQH9QXU' where id=4; -update noar tt set b0='S9TAMM1IXUG8N6EKL' where id=4; -update noar ti set b0='S9TAMM1IXUG8N6EKL' where id=4; -update noar tt set v0='WZ8' where id=4; -update noar ti set v0='WZ8' where id=4; -update noar tt set b1='N1DVAOUGP6IZQ' where id=4; -update noar ti set b1='N1DVAOUGP6IZQ' where id=4; -update noar tt set v0='U8YKS397AIG' where id=4; -update noar ti set v0='U8YKS397AIG' where id=4; -update noar tt set b2='CB2P9CK3TKGGCJAT1GCM5TVHPTL' where id=4; -update noar ti set b2='CB2P9CK3TKGGCJAT1GCM5TVHPTL' where id=4; -update noar tt set v0='A672DWVSQKD8UI9DKFSTE4QO04MVYR' where id=5; -update noar ti set v0='A672DWVSQKD8UI9DKFSTE4QO04MVYR' where id=5; -update noar tt set b0='PZDSXVTKO6X8N8AFHR0I4HT' where id=5; -update noar ti set b0='PZDSXVTKO6X8N8AFHR0I4HT' where id=5; -update noar tt set v0='9XB3PM8WDU12' where id=5; -update noar ti set v0='9XB3PM8WDU12' where id=5; -update noar tt set b1='G5Z20O4X25BYJZXYERMG39WY3RK4KS' where id=5; -update noar ti set b1='G5Z20O4X25BYJZXYERMG39WY3RK4KS' where id=5; -update noar tt set v0='M1TL1CGO3H907GOXFMZ24MEVE48' where id=5; -update noar ti set v0='M1TL1CGO3H907GOXFMZ24MEVE48' where id=5; -update noar tt set b2='2JI1XUJWWSBH8SQ0WF25KOVJVT8QP8V' where id=5; -update noar ti set b2='2JI1XUJWWSBH8SQ0WF25KOVJVT8QP8V' where id=5; -update noar tt set v0='VC9XCXGJI' where id=6; -update noar ti set v0='VC9XCXGJI' where id=6; -update noar tt set b0='G0LI6NX6NXY6N5UH4K' where id=6; -update noar ti set b0='G0LI6NX6NXY6N5UH4K' where id=6; -update noar tt set v0='2WUB3FLDW522V8258FRA4Q' where id=6; -update noar ti set v0='2WUB3FLDW522V8258FRA4Q' where id=6; -update noar tt set b1='NYUOA5ISGOIHQVE4A' where id=6; -update noar ti set b1='NYUOA5ISGOIHQVE4A' where id=6; -update noar tt set v0='BZIHQRIAC64ECGOXMP55XK25L8V15' where id=6; -update noar ti set v0='BZIHQRIAC64ECGOXMP55XK25L8V15' where id=6; -update noar tt set b2='ST1XVS1Y6BRN352WDU0K' where id=6; -update noar ti set b2='ST1XVS1Y6BRN352WDU0K' where id=6; -update noar tt set v0='44UM' where id=7; -update noar ti set v0='44UM' where id=7; -update noar tt set b0='I5CQYP' where id=7; -update noar ti set b0='I5CQYP' where id=7; -update noar tt set v0='TJ343D1B3VWBIGG7NM' where id=7; -update noar ti set v0='TJ343D1B3VWBIGG7NM' where id=7; -update noar tt set b1='BXRYO2WNW36J1LWGYFTSD' where id=7; -update noar ti set b1='BXRYO2WNW36J1LWGYFTSD' where id=7; -update noar tt set v0='1E5D4PGNE4K4PPF5Y7' where id=7; -update noar ti set v0='1E5D4PGNE4K4PPF5Y7' where id=7; -update noar tt set b2='X64IMDG6OY1AXORNE' where id=7; -update noar ti set b2='X64IMDG6OY1AXORNE' where id=7; -update noar tt set v0='C87D6PCJ1CQ7CE9W2G487UM7GR160O' where id=8; -update noar ti set v0='C87D6PCJ1CQ7CE9W2G487UM7GR160O' where id=8; -update noar tt set b0='G' where id=8; -update noar ti set b0='G' where id=8; -update noar tt set v0='6WVA84SF805DAE43GF0LZB77H2D23' where id=8; -update noar ti set v0='6WVA84SF805DAE43GF0LZB77H2D23' where id=8; -update noar tt set b1='RJXO1WV60MHO7QJDMLLS5864KTPIX6' where id=8; -update noar ti set b1='RJXO1WV60MHO7QJDMLLS5864KTPIX6' where id=8; -update noar tt set v0='Y8' where id=8; -update noar ti set v0='Y8' where id=8; -update noar tt set b2='L3F5NGAUCR0O7F9EZB7' where id=8; -update noar ti set b2='L3F5NGAUCR0O7F9EZB7' where id=8; -update noar tt set v0='JTWG7CW' where id=9; -update noar ti set v0='JTWG7CW' where id=9; -update noar tt set b0='1EHDDNDS308FLBSJYSONAN3K1N97' where id=9; -update noar ti set b0='1EHDDNDS308FLBSJYSONAN3K1N97' where id=9; -update noar tt set v0='HXZJJ3Z02TW0RR4NYL9T5MXH2MSM62V' where id=9; -update noar ti set v0='HXZJJ3Z02TW0RR4NYL9T5MXH2MSM62V' where id=9; -update noar tt set b1='53W417XTIZNEAWWCG6K1SY0DO3F5' where id=9; -update noar ti set b1='53W417XTIZNEAWWCG6K1SY0DO3F5' where id=9; -update noar tt set v0='2JS79G5' where id=9; -update noar ti set v0='2JS79G5' where id=9; -update noar tt set b2='M4TTSJFI' where id=9; -update noar ti set b2='M4TTSJFI' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -f0 int null, -v0 varchar(256) null, -b0 tinyblob null, -b1 mediumblob null, -b2 mediumblob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='D68GG5Q9SOQATAJUIA71FZ0LEDUJV' where id=1; -update noar ti set v0='D68GG5Q9SOQATAJUIA71FZ0LEDUJV' where id=1; -update noar tt set b0='M6L7IKRR77JHURU1PAHKKO5' where id=1; -update noar ti set b0='M6L7IKRR77JHURU1PAHKKO5' where id=1; -update noar tt set v0='B32PCJG2QFKW056ZAR' where id=1; -update noar ti set v0='B32PCJG2QFKW056ZAR' where id=1; -update noar tt set b1='N7QS2BWRG3SLC' where id=1; -update noar ti set b1='N7QS2BWRG3SLC' where id=1; -update noar tt set v0='UQ64Y7DPBKG5' where id=1; -update noar ti set v0='UQ64Y7DPBKG5' where id=1; -update noar tt set b2='HD4QCS8BRY5XK5XIEVOFB' where id=1; -update noar ti set b2='HD4QCS8BRY5XK5XIEVOFB' where id=1; -update noar tt set v0='QXX6SFI6IGJTYGB78V9N' where id=2; -update noar ti set v0='QXX6SFI6IGJTYGB78V9N' where id=2; -update noar tt set b0='CE0I08TZ70OMNBVXH' where id=2; -update noar ti set b0='CE0I08TZ70OMNBVXH' where id=2; -update noar tt set v0='X4LAQGDSRN4SUR1GMJMDBUSQX5WWFI4' where id=2; -update noar ti set v0='X4LAQGDSRN4SUR1GMJMDBUSQX5WWFI4' where id=2; -update noar tt set b1='F74' where id=2; -update noar ti set b1='F74' where id=2; -update noar tt set v0='XFKZW' where id=2; -update noar ti set v0='XFKZW' where id=2; -update noar tt set b2='CWOHV9JOST77Z6DRWXBGPVTGWTAE3668' where id=2; -update noar ti set b2='CWOHV9JOST77Z6DRWXBGPVTGWTAE3668' where id=2; -update noar tt set v0='113R56G447OXN' where id=3; -update noar ti set v0='113R56G447OXN' where id=3; -update noar tt set b0='1J4VS2HN0H1GLX' where id=3; -update noar ti set b0='1J4VS2HN0H1GLX' where id=3; -update noar tt set v0='5I8UK79FU3EPV2P01DIL8TVZ5RPQK40' where id=3; -update noar ti set v0='5I8UK79FU3EPV2P01DIL8TVZ5RPQK40' where id=3; -update noar tt set b1='DT6GZG4F7VVXKSODBPXFONXT' where id=3; -update noar ti set b1='DT6GZG4F7VVXKSODBPXFONXT' where id=3; -update noar tt set v0='ZV62DWN8NDA2TZH51GP9' where id=3; -update noar ti set v0='ZV62DWN8NDA2TZH51GP9' where id=3; -update noar tt set b2='HV6VBZEX23A' where id=3; -update noar ti set b2='HV6VBZEX23A' where id=3; -update noar tt set v0='BE' where id=4; -update noar ti set v0='BE' where id=4; -update noar tt set b0='9D2YHOQIKL978QDU7WBGDZ9' where id=4; -update noar ti set b0='9D2YHOQIKL978QDU7WBGDZ9' where id=4; -update noar tt set v0='H8Z0P33VT7Z0R17DA8' where id=4; -update noar ti set v0='H8Z0P33VT7Z0R17DA8' where id=4; -update noar tt set b1='BQ2HZ2WMKRUU76I0PEYLZGB' where id=4; -update noar ti set b1='BQ2HZ2WMKRUU76I0PEYLZGB' where id=4; -update noar tt set v0='MM' where id=4; -update noar ti set v0='MM' where id=4; -update noar tt set b2='OAB3M7JQTU2UT4YPG' where id=4; -update noar ti set b2='OAB3M7JQTU2UT4YPG' where id=4; -update noar tt set v0='ESJHULU968AI45R' where id=5; -update noar ti set v0='ESJHULU968AI45R' where id=5; -update noar tt set b0='4IG69AXMK2PFPGJITJF5VN7H4LC' where id=5; -update noar ti set b0='4IG69AXMK2PFPGJITJF5VN7H4LC' where id=5; -update noar tt set v0='GWO4X' where id=5; -update noar ti set v0='GWO4X' where id=5; -update noar tt set b1='VIPWYMLC' where id=5; -update noar ti set b1='VIPWYMLC' where id=5; -update noar tt set v0='UI7W299N46VA4115O3' where id=5; -update noar ti set v0='UI7W299N46VA4115O3' where id=5; -update noar tt set b2='IRHYWH9112H5AT' where id=5; -update noar ti set b2='IRHYWH9112H5AT' where id=5; -update noar tt set v0='RLPAXD7BR7ZNBE28CVROUTKAI7WA7A9' where id=6; -update noar ti set v0='RLPAXD7BR7ZNBE28CVROUTKAI7WA7A9' where id=6; -update noar tt set b0='Y10NRZSOYNI' where id=6; -update noar ti set b0='Y10NRZSOYNI' where id=6; -update noar tt set v0='5' where id=6; -update noar ti set v0='5' where id=6; -update noar tt set b1='KBVSUGQ46GM' where id=6; -update noar ti set b1='KBVSUGQ46GM' where id=6; -update noar tt set v0='MXBS7CXSSB9ONXTGE55L3GNGW' where id=6; -update noar ti set v0='MXBS7CXSSB9ONXTGE55L3GNGW' where id=6; -update noar tt set b2='7A' where id=6; -update noar ti set b2='7A' where id=6; -update noar tt set v0='W74N269MMSYJ9LRXXA' where id=7; -update noar ti set v0='W74N269MMSYJ9LRXXA' where id=7; -update noar tt set b0='FWDL5' where id=7; -update noar ti set b0='FWDL5' where id=7; -update noar tt set v0='8ULHZH9MCXPG3' where id=7; -update noar ti set v0='8ULHZH9MCXPG3' where id=7; -update noar tt set b1='Y6J2M' where id=7; -update noar ti set b1='Y6J2M' where id=7; -update noar tt set v0='YV51SWJN7W4GULEZ2RKUD12I' where id=7; -update noar ti set v0='YV51SWJN7W4GULEZ2RKUD12I' where id=7; -update noar tt set b2='DE9I19TJR75FQTQDQ0HWZADBY' where id=7; -update noar ti set b2='DE9I19TJR75FQTQDQ0HWZADBY' where id=7; -update noar tt set v0='BLECES8XEXKTB2KY7FK9SQ16WY3JV' where id=8; -update noar ti set v0='BLECES8XEXKTB2KY7FK9SQ16WY3JV' where id=8; -update noar tt set b0='AR' where id=8; -update noar ti set b0='AR' where id=8; -update noar tt set v0='09IRF87DNC' where id=8; -update noar ti set v0='09IRF87DNC' where id=8; -update noar tt set b1='OICBIIUGDPPOAVGSWOSL1UCI2ICEPQ' where id=8; -update noar ti set b1='OICBIIUGDPPOAVGSWOSL1UCI2ICEPQ' where id=8; -update noar tt set v0='S16J2' where id=8; -update noar ti set v0='S16J2' where id=8; -update noar tt set b2='9RY8PFPAA9UAGNVT5UYSB2KNNDGQ1K' where id=8; -update noar ti set b2='9RY8PFPAA9UAGNVT5UYSB2KNNDGQ1K' where id=8; -update noar tt set v0='6D26BW19C2H9E0YB2' where id=9; -update noar ti set v0='6D26BW19C2H9E0YB2' where id=9; -update noar tt set b0='MED6' where id=9; -update noar ti set b0='MED6' where id=9; -update noar tt set v0='M0QWIXGOO068AXGB528E704V8MX' where id=9; -update noar ti set v0='M0QWIXGOO068AXGB528E704V8MX' where id=9; -update noar tt set b1='ZJC4W89KJC2FHJGB' where id=9; -update noar ti set b1='ZJC4W89KJC2FHJGB' where id=9; -update noar tt set v0='HQKDA2Y4S338AX76RUFTW3DTU44N40' where id=9; -update noar ti set v0='HQKDA2Y4S338AX76RUFTW3DTU44N40' where id=9; -update noar tt set b2='QZFMIAIEGLEXXTNT' where id=9; -update noar ti set b2='QZFMIAIEGLEXXTNT' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -f0 int not null, -v0 varchar(32) not null, -b0 tinyblob not null, -b1 mediumblob not null, -b2 mediumblob not null -) engine=tokudb; -insert into tt values (1,0,'','','',''); -insert into tt values (2,0,'','','',''); -insert into tt values (3,0,'','','',''); -insert into tt values (4,0,'','','',''); -insert into tt values (5,0,'','','',''); -insert into tt values (6,0,'','','',''); -insert into tt values (7,0,'','','',''); -insert into tt values (8,0,'','','',''); -insert into tt values (9,0,'','','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='S3F7S9AK0YP' where id=1; -update noar ti set v0='S3F7S9AK0YP' where id=1; -update noar tt set b0='Z5UUTMGMKKZJ' where id=1; -update noar ti set b0='Z5UUTMGMKKZJ' where id=1; -update noar tt set v0='K3L7RJO' where id=1; -update noar ti set v0='K3L7RJO' where id=1; -update noar tt set b1='1622058N4DPL7H55O5OOL4VUR51RBIIV' where id=1; -update noar ti set b1='1622058N4DPL7H55O5OOL4VUR51RBIIV' where id=1; -update noar tt set v0='K31R9YMPUNN98F01KA0FIZ' where id=1; -update noar ti set v0='K31R9YMPUNN98F01KA0FIZ' where id=1; -update noar tt set b2='NFJ72P3VX50PQTU3JREOK7DO77' where id=1; -update noar ti set b2='NFJ72P3VX50PQTU3JREOK7DO77' where id=1; -update noar tt set v0='3W6OXZC779BHQLZ2YDX774J7TULGDCX' where id=2; -update noar ti set v0='3W6OXZC779BHQLZ2YDX774J7TULGDCX' where id=2; -update noar tt set b0='Y2WB054PXLQ0Q2RL40280TYRK7' where id=2; -update noar ti set b0='Y2WB054PXLQ0Q2RL40280TYRK7' where id=2; -update noar tt set v0='IK4' where id=2; -update noar ti set v0='IK4' where id=2; -update noar tt set b1='ETBRSMGLTFRUPHTTP' where id=2; -update noar ti set b1='ETBRSMGLTFRUPHTTP' where id=2; -update noar tt set v0='B79HM6DJD4NWN8' where id=2; -update noar ti set v0='B79HM6DJD4NWN8' where id=2; -update noar tt set b2='V2MKIYITZS0M3L5JCLF3S' where id=2; -update noar ti set b2='V2MKIYITZS0M3L5JCLF3S' where id=2; -update noar tt set v0='2ZB67WCYT37M61OMFBBIAYWP3' where id=3; -update noar ti set v0='2ZB67WCYT37M61OMFBBIAYWP3' where id=3; -update noar tt set b0='EV4WGVR93A8CAG9FUL' where id=3; -update noar ti set b0='EV4WGVR93A8CAG9FUL' where id=3; -update noar tt set v0='IPVFRLP' where id=3; -update noar ti set v0='IPVFRLP' where id=3; -update noar tt set b1='31LU3C' where id=3; -update noar ti set b1='31LU3C' where id=3; -update noar tt set v0='OO7ZU06UD77M1RQZZFY03A' where id=3; -update noar ti set v0='OO7ZU06UD77M1RQZZFY03A' where id=3; -update noar tt set b2='60VHD7B5Y4W' where id=3; -update noar ti set b2='60VHD7B5Y4W' where id=3; -update noar tt set v0='BB94V2JU6ALPIBTLG' where id=4; -update noar ti set v0='BB94V2JU6ALPIBTLG' where id=4; -update noar tt set b0='6IXQYM3N0IV8PTZ2I' where id=4; -update noar ti set b0='6IXQYM3N0IV8PTZ2I' where id=4; -update noar tt set v0='BVHUE64X6' where id=4; -update noar ti set v0='BVHUE64X6' where id=4; -update noar tt set b1='S8TZAY1QNUV8' where id=4; -update noar ti set b1='S8TZAY1QNUV8' where id=4; -update noar tt set v0='YN5PRCVKAX5V4316L2IB' where id=4; -update noar ti set v0='YN5PRCVKAX5V4316L2IB' where id=4; -update noar tt set b2='AFUO' where id=4; -update noar ti set b2='AFUO' where id=4; -update noar tt set v0='OPJDDYQQD1TNGIU7IVLX94E' where id=5; -update noar ti set v0='OPJDDYQQD1TNGIU7IVLX94E' where id=5; -update noar tt set b0='8O2QDIE193WD6M75RXMNO54FPD' where id=5; -update noar ti set b0='8O2QDIE193WD6M75RXMNO54FPD' where id=5; -update noar tt set v0='6FHUDYMHQ' where id=5; -update noar ti set v0='6FHUDYMHQ' where id=5; -update noar tt set b1='961WQOFE' where id=5; -update noar ti set b1='961WQOFE' where id=5; -update noar tt set v0='13BNPH6SG2' where id=5; -update noar ti set v0='13BNPH6SG2' where id=5; -update noar tt set b2='FT7GPE0L3' where id=5; -update noar ti set b2='FT7GPE0L3' where id=5; -update noar tt set v0='CNZOKRHRC9WWZZRCRHPQ1' where id=6; -update noar ti set v0='CNZOKRHRC9WWZZRCRHPQ1' where id=6; -update noar tt set b0='3LO2V4LLBZMRPMGL3QQSDDKM05' where id=6; -update noar ti set b0='3LO2V4LLBZMRPMGL3QQSDDKM05' where id=6; -update noar tt set v0='6APG6HGWLJTIIBDS9' where id=6; -update noar ti set v0='6APG6HGWLJTIIBDS9' where id=6; -update noar tt set b1='XIUSQTJ3KQRAM3BIDUU5STK6Z' where id=6; -update noar ti set b1='XIUSQTJ3KQRAM3BIDUU5STK6Z' where id=6; -update noar tt set v0='WIHRFWOM6RIQT02NNT1' where id=6; -update noar ti set v0='WIHRFWOM6RIQT02NNT1' where id=6; -update noar tt set b2='GLC41' where id=6; -update noar ti set b2='GLC41' where id=6; -update noar tt set v0='HXU2ON7XXF45V07QK1FTHPYZ06VNY24J' where id=7; -update noar ti set v0='HXU2ON7XXF45V07QK1FTHPYZ06VNY24J' where id=7; -update noar tt set b0='B3URBSGX1J' where id=7; -update noar ti set b0='B3URBSGX1J' where id=7; -update noar tt set v0='LL36B' where id=7; -update noar ti set v0='LL36B' where id=7; -update noar tt set b1='8XH7466YFSOORGNOAGIW' where id=7; -update noar ti set b1='8XH7466YFSOORGNOAGIW' where id=7; -update noar tt set v0='1ZSQIMUMTW81HPTQ5BGQQU4KL8OWBD' where id=7; -update noar ti set v0='1ZSQIMUMTW81HPTQ5BGQQU4KL8OWBD' where id=7; -update noar tt set b2='4JSJLNDWQHXVZZ' where id=7; -update noar ti set b2='4JSJLNDWQHXVZZ' where id=7; -update noar tt set v0='RK7PKKVKDH3SYN0GLKQ6VNS' where id=8; -update noar ti set v0='RK7PKKVKDH3SYN0GLKQ6VNS' where id=8; -update noar tt set b0='YL1E91R8B9SNTZZ7K8BDF6JME86CET2' where id=8; -update noar ti set b0='YL1E91R8B9SNTZZ7K8BDF6JME86CET2' where id=8; -update noar tt set v0='EDSER' where id=8; -update noar ti set v0='EDSER' where id=8; -update noar tt set b1='L47ZLG9SZ6LXO2I8VKPZ7G' where id=8; -update noar ti set b1='L47ZLG9SZ6LXO2I8VKPZ7G' where id=8; -update noar tt set v0='U' where id=8; -update noar ti set v0='U' where id=8; -update noar tt set b2='R7U7QIA4BC5ILV' where id=8; -update noar ti set b2='R7U7QIA4BC5ILV' where id=8; -update noar tt set v0='L34A926M4' where id=9; -update noar ti set v0='L34A926M4' where id=9; -update noar tt set b0='V3P35UFHF9B44UGPV' where id=9; -update noar ti set b0='V3P35UFHF9B44UGPV' where id=9; -update noar tt set v0='HK81AJ' where id=9; -update noar ti set v0='HK81AJ' where id=9; -update noar tt set b1='E68MZTQEMU3J6NQY0JD7RBQ7' where id=9; -update noar ti set b1='E68MZTQEMU3J6NQY0JD7RBQ7' where id=9; -update noar tt set v0='87UJ1M' where id=9; -update noar ti set v0='87UJ1M' where id=9; -update noar tt set b2='HEPA59RITMM9FYMS6O1' where id=9; -update noar ti set b2='HEPA59RITMM9FYMS6O1' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -f0 int not null, -v0 varchar(256) not null, -b0 tinyblob not null, -b1 mediumblob not null, -b2 mediumblob not null -) engine=tokudb; -insert into tt values (1,0,'','','',''); -insert into tt values (2,0,'','','',''); -insert into tt values (3,0,'','','',''); -insert into tt values (4,0,'','','',''); -insert into tt values (5,0,'','','',''); -insert into tt values (6,0,'','','',''); -insert into tt values (7,0,'','','',''); -insert into tt values (8,0,'','','',''); -insert into tt values (9,0,'','','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='KR6CD6J84QBMHHZMQPX56F4TH20' where id=1; -update noar ti set v0='KR6CD6J84QBMHHZMQPX56F4TH20' where id=1; -update noar tt set b0='YKLJEKDQMMTVB66Q1Y8RO' where id=1; -update noar ti set b0='YKLJEKDQMMTVB66Q1Y8RO' where id=1; -update noar tt set v0='I87' where id=1; -update noar ti set v0='I87' where id=1; -update noar tt set b1='FIH4E146YD9XAI8WTZ6EI7ZT8E6H' where id=1; -update noar ti set b1='FIH4E146YD9XAI8WTZ6EI7ZT8E6H' where id=1; -update noar tt set v0='7Z4Y2IVOA28OHY0NRCVK9WDV056' where id=1; -update noar ti set v0='7Z4Y2IVOA28OHY0NRCVK9WDV056' where id=1; -update noar tt set b2='9MR583L9POAYT06HVFZU8AMA' where id=1; -update noar ti set b2='9MR583L9POAYT06HVFZU8AMA' where id=1; -update noar tt set v0='ZUI9ETVQ5ML65N' where id=2; -update noar ti set v0='ZUI9ETVQ5ML65N' where id=2; -update noar tt set b0='G96KUMZ' where id=2; -update noar ti set b0='G96KUMZ' where id=2; -update noar tt set v0='VDOV3MDT3' where id=2; -update noar ti set v0='VDOV3MDT3' where id=2; -update noar tt set b1='IH06FHS8' where id=2; -update noar ti set b1='IH06FHS8' where id=2; -update noar tt set v0='PMLW0AO0IO6K8OIS4G353MK6C' where id=2; -update noar ti set v0='PMLW0AO0IO6K8OIS4G353MK6C' where id=2; -update noar tt set b2='DSILZ9VZD3YPV7UKRX3M' where id=2; -update noar ti set b2='DSILZ9VZD3YPV7UKRX3M' where id=2; -update noar tt set v0='TWLJHR0FL' where id=3; -update noar ti set v0='TWLJHR0FL' where id=3; -update noar tt set b0='7488CW' where id=3; -update noar ti set b0='7488CW' where id=3; -update noar tt set v0='U151TG' where id=3; -update noar ti set v0='U151TG' where id=3; -update noar tt set b1='DNCZUGXB9G1OI9WQNM6XEO' where id=3; -update noar ti set b1='DNCZUGXB9G1OI9WQNM6XEO' where id=3; -update noar tt set v0='EPOBTSF40D33J8474BYRVTI85V' where id=3; -update noar ti set v0='EPOBTSF40D33J8474BYRVTI85V' where id=3; -update noar tt set b2='XI' where id=3; -update noar ti set b2='XI' where id=3; -update noar tt set v0='R0W5P3E' where id=4; -update noar ti set v0='R0W5P3E' where id=4; -update noar tt set b0='9HINPQNXGA9XVJ5A3VJIP8JS' where id=4; -update noar ti set b0='9HINPQNXGA9XVJ5A3VJIP8JS' where id=4; -update noar tt set v0='LGXWKJWGM48NZ4D3IN470WGA8B0P5' where id=4; -update noar ti set v0='LGXWKJWGM48NZ4D3IN470WGA8B0P5' where id=4; -update noar tt set b1='TTFV7HNFFF1TZS2TNQQN47IGRE' where id=4; -update noar ti set b1='TTFV7HNFFF1TZS2TNQQN47IGRE' where id=4; -update noar tt set v0='VJ0SQ2LI65VG9V' where id=4; -update noar ti set v0='VJ0SQ2LI65VG9V' where id=4; -update noar tt set b2='OC8G060CPO0T7NV' where id=4; -update noar ti set b2='OC8G060CPO0T7NV' where id=4; -update noar tt set v0='A76VH8AT62PN7X6SO' where id=5; -update noar ti set v0='A76VH8AT62PN7X6SO' where id=5; -update noar tt set b0='HQI' where id=5; -update noar ti set b0='HQI' where id=5; -update noar tt set v0='PPEUE809UU' where id=5; -update noar ti set v0='PPEUE809UU' where id=5; -update noar tt set b1='MBG' where id=5; -update noar ti set b1='MBG' where id=5; -update noar tt set v0='YL0FNAO8K0OD8OX7SQHGPO' where id=5; -update noar ti set v0='YL0FNAO8K0OD8OX7SQHGPO' where id=5; -update noar tt set b2='IW203FVPO0ZC80BQC9' where id=5; -update noar ti set b2='IW203FVPO0ZC80BQC9' where id=5; -update noar tt set v0='9' where id=6; -update noar ti set v0='9' where id=6; -update noar tt set b0='RA173ND740XTMO6TVAF3A121PZEO1' where id=6; -update noar ti set b0='RA173ND740XTMO6TVAF3A121PZEO1' where id=6; -update noar tt set v0='9ZZUQYADGJVNH' where id=6; -update noar ti set v0='9ZZUQYADGJVNH' where id=6; -update noar tt set b1='41LB5CSJ1KKXUA0FHUZ0LFVP0UN1' where id=6; -update noar ti set b1='41LB5CSJ1KKXUA0FHUZ0LFVP0UN1' where id=6; -update noar tt set v0='1MHTHUQFUE7NDVBKGWTLS20P' where id=6; -update noar ti set v0='1MHTHUQFUE7NDVBKGWTLS20P' where id=6; -update noar tt set b2='FZNWI0T7D8HEGGXCDLW5V8' where id=6; -update noar ti set b2='FZNWI0T7D8HEGGXCDLW5V8' where id=6; -update noar tt set v0='PYG168I5HPMQZJ50WTW' where id=7; -update noar ti set v0='PYG168I5HPMQZJ50WTW' where id=7; -update noar tt set b0='AIP4G' where id=7; -update noar ti set b0='AIP4G' where id=7; -update noar tt set v0='RLL56UBNGW9V0H5B1JFTJ8T45' where id=7; -update noar ti set v0='RLL56UBNGW9V0H5B1JFTJ8T45' where id=7; -update noar tt set b1='8R04DYD8WXDL9J8GA9K46' where id=7; -update noar ti set b1='8R04DYD8WXDL9J8GA9K46' where id=7; -update noar tt set v0='1440DQZJA75KEPZ' where id=7; -update noar ti set v0='1440DQZJA75KEPZ' where id=7; -update noar tt set b2='1RRLN29GGT5510H1HGJQRN' where id=7; -update noar ti set b2='1RRLN29GGT5510H1HGJQRN' where id=7; -update noar tt set v0='A7FP' where id=8; -update noar ti set v0='A7FP' where id=8; -update noar tt set b0='ANJCN9' where id=8; -update noar ti set b0='ANJCN9' where id=8; -update noar tt set v0='MOTAOXADB7OLGUA' where id=8; -update noar ti set v0='MOTAOXADB7OLGUA' where id=8; -update noar tt set b1='VKZ6KTY4RY' where id=8; -update noar ti set b1='VKZ6KTY4RY' where id=8; -update noar tt set v0='3UZR27J18RDXFZYM9R9O8YDJ5ZQ' where id=8; -update noar ti set v0='3UZR27J18RDXFZYM9R9O8YDJ5ZQ' where id=8; -update noar tt set b2='4FG0QHESKSZWVQXPYLO94LDQ3EJH' where id=8; -update noar ti set b2='4FG0QHESKSZWVQXPYLO94LDQ3EJH' where id=8; -update noar tt set v0='9QTTIQVM2X5445E1301' where id=9; -update noar ti set v0='9QTTIQVM2X5445E1301' where id=9; -update noar tt set b0='0ZUTGBTKWPV6DNOU368JF9' where id=9; -update noar ti set b0='0ZUTGBTKWPV6DNOU368JF9' where id=9; -update noar tt set v0='EOKS4EH9CAB58NNTO6' where id=9; -update noar ti set v0='EOKS4EH9CAB58NNTO6' where id=9; -update noar tt set b1='QV9JKQS7TFIZEI' where id=9; -update noar ti set b1='QV9JKQS7TFIZEI' where id=9; -update noar tt set v0='523I0MUVJGEERQWURHOKW2XA17U2L' where id=9; -update noar ti set v0='523I0MUVJGEERQWURHOKW2XA17U2L' where id=9; -update noar tt set b2='DJPLTJ3B3ZI5KDSGN3J' where id=9; -update noar ti set b2='DJPLTJ3B3ZI5KDSGN3J' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -f0 int null, -v0 varchar(32) null, -b0 tinyblob null, -b1 mediumblob null, -b2 longblob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='QI1D524Q1F0N1ZCQRQQBJHCO' where id=1; -update noar ti set v0='QI1D524Q1F0N1ZCQRQQBJHCO' where id=1; -update noar tt set b0='PAFV69S' where id=1; -update noar ti set b0='PAFV69S' where id=1; -update noar tt set v0='409ATEAANPGR91AX0A0M' where id=1; -update noar ti set v0='409ATEAANPGR91AX0A0M' where id=1; -update noar tt set b1='LB21FBR33M95CARMU64NI' where id=1; -update noar ti set b1='LB21FBR33M95CARMU64NI' where id=1; -update noar tt set v0='Z6HOGCQD4CD' where id=1; -update noar ti set v0='Z6HOGCQD4CD' where id=1; -update noar tt set b2='VPQZG88' where id=1; -update noar ti set b2='VPQZG88' where id=1; -update noar tt set v0='R9P0OHVUEQS4L63EA0RE93N' where id=2; -update noar ti set v0='R9P0OHVUEQS4L63EA0RE93N' where id=2; -update noar tt set b0='F0' where id=2; -update noar ti set b0='F0' where id=2; -update noar tt set v0='P28R16ZVLNQG03ZLOUQWMW' where id=2; -update noar ti set v0='P28R16ZVLNQG03ZLOUQWMW' where id=2; -update noar tt set b1='QIT57VJ4' where id=2; -update noar ti set b1='QIT57VJ4' where id=2; -update noar tt set v0='VFK7784E8XA1Y78T4KZ9X9F1JC1DW9' where id=2; -update noar ti set v0='VFK7784E8XA1Y78T4KZ9X9F1JC1DW9' where id=2; -update noar tt set b2='Q54H9KI1LH' where id=2; -update noar ti set b2='Q54H9KI1LH' where id=2; -update noar tt set v0='XSG3KHPK3SDS462XWJSDDK' where id=3; -update noar ti set v0='XSG3KHPK3SDS462XWJSDDK' where id=3; -update noar tt set b0='PMFR2O1H9EW9OIP1RHT6LOPF4ZJSQ' where id=3; -update noar ti set b0='PMFR2O1H9EW9OIP1RHT6LOPF4ZJSQ' where id=3; -update noar tt set v0='5HL3KNE693HPYYQ1WAJH' where id=3; -update noar ti set v0='5HL3KNE693HPYYQ1WAJH' where id=3; -update noar tt set b1='CWA86VXD80VCBODCTRZ2KH507K' where id=3; -update noar ti set b1='CWA86VXD80VCBODCTRZ2KH507K' where id=3; -update noar tt set v0='4JXQ0USI6W4NDSZ8SALR0ARP' where id=3; -update noar ti set v0='4JXQ0USI6W4NDSZ8SALR0ARP' where id=3; -update noar tt set b2='OE10V' where id=3; -update noar ti set b2='OE10V' where id=3; -update noar tt set v0='1PDUHI59GTBI3JKOKFW0' where id=4; -update noar ti set v0='1PDUHI59GTBI3JKOKFW0' where id=4; -update noar tt set b0='JDQBUVHWHW56AMEIODVTZVI2B1F' where id=4; -update noar ti set b0='JDQBUVHWHW56AMEIODVTZVI2B1F' where id=4; -update noar tt set v0='E45XB8CQV9ICXLVTEGF' where id=4; -update noar ti set v0='E45XB8CQV9ICXLVTEGF' where id=4; -update noar tt set b1='GQYJ04AD9B' where id=4; -update noar ti set b1='GQYJ04AD9B' where id=4; -update noar tt set v0='C88UGD7EP3W2SY2W' where id=4; -update noar ti set v0='C88UGD7EP3W2SY2W' where id=4; -update noar tt set b2='C6H1EG1PS62NB1NP1LZH7' where id=4; -update noar ti set b2='C6H1EG1PS62NB1NP1LZH7' where id=4; -update noar tt set v0='EGBAY8M07WWQ8FELS7BSO2ZFU' where id=5; -update noar ti set v0='EGBAY8M07WWQ8FELS7BSO2ZFU' where id=5; -update noar tt set b0='ITK60WIK' where id=5; -update noar ti set b0='ITK60WIK' where id=5; -update noar tt set v0='MHCY2LN8RDAS159QSJNNO5XL7ROVA81' where id=5; -update noar ti set v0='MHCY2LN8RDAS159QSJNNO5XL7ROVA81' where id=5; -update noar tt set b1='M3ZE1' where id=5; -update noar ti set b1='M3ZE1' where id=5; -update noar tt set v0='3TQW87CF8R6NRTA3MGSWKL' where id=5; -update noar ti set v0='3TQW87CF8R6NRTA3MGSWKL' where id=5; -update noar tt set b2='XF5EV84RRH46WSU' where id=5; -update noar ti set b2='XF5EV84RRH46WSU' where id=5; -update noar tt set v0='GAQPM9PEZ9J9' where id=6; -update noar ti set v0='GAQPM9PEZ9J9' where id=6; -update noar tt set b0='JNFM9DOS07CX' where id=6; -update noar ti set b0='JNFM9DOS07CX' where id=6; -update noar tt set v0='EKTA2JA' where id=6; -update noar ti set v0='EKTA2JA' where id=6; -update noar tt set b1='9TI64C8W' where id=6; -update noar ti set b1='9TI64C8W' where id=6; -update noar tt set v0='QPQO6L45ERCQ' where id=6; -update noar ti set v0='QPQO6L45ERCQ' where id=6; -update noar tt set b2='YU6O322N84' where id=6; -update noar ti set b2='YU6O322N84' where id=6; -update noar tt set v0='9MOPKEC3YHUC7JCBDE3DNAWYIQ5JGRLJ' where id=7; -update noar ti set v0='9MOPKEC3YHUC7JCBDE3DNAWYIQ5JGRLJ' where id=7; -update noar tt set b0='K1VOH19RCN5M0H9' where id=7; -update noar ti set b0='K1VOH19RCN5M0H9' where id=7; -update noar tt set v0='Z1PEO653XQ' where id=7; -update noar ti set v0='Z1PEO653XQ' where id=7; -update noar tt set b1='E7FTONJM9D5YK4XSC7B232MAHZEQBI' where id=7; -update noar ti set b1='E7FTONJM9D5YK4XSC7B232MAHZEQBI' where id=7; -update noar tt set v0='1CHPH7IBAKB5MJD7CER4ZW' where id=7; -update noar ti set v0='1CHPH7IBAKB5MJD7CER4ZW' where id=7; -update noar tt set b2='H8I2AB424FIW1G0Y06QAVQ' where id=7; -update noar ti set b2='H8I2AB424FIW1G0Y06QAVQ' where id=7; -update noar tt set v0='P9C6M01CH7T3O00LP9FSBMHZM' where id=8; -update noar ti set v0='P9C6M01CH7T3O00LP9FSBMHZM' where id=8; -update noar tt set b0='P1K19RV7VCEZTO7Z93Q1VMT' where id=8; -update noar ti set b0='P1K19RV7VCEZTO7Z93Q1VMT' where id=8; -update noar tt set v0='SYEX0YYSQ2027AF8R662XUHY38' where id=8; -update noar ti set v0='SYEX0YYSQ2027AF8R662XUHY38' where id=8; -update noar tt set b1='Z46W8IVOU102' where id=8; -update noar ti set b1='Z46W8IVOU102' where id=8; -update noar tt set v0='3FC82NFQVXW92HK4TLP4FI8AWWRKJ5' where id=8; -update noar ti set v0='3FC82NFQVXW92HK4TLP4FI8AWWRKJ5' where id=8; -update noar tt set b2='Z1F4CV84KTF' where id=8; -update noar ti set b2='Z1F4CV84KTF' where id=8; -update noar tt set v0='9WJE2BGKD' where id=9; -update noar ti set v0='9WJE2BGKD' where id=9; -update noar tt set b0='XHZX1I8N23X7PYXIZMSGJVTSG9YBPP' where id=9; -update noar ti set b0='XHZX1I8N23X7PYXIZMSGJVTSG9YBPP' where id=9; -update noar tt set v0='3ZC3UYU38PXORS1U5GC997LTW6QU3' where id=9; -update noar ti set v0='3ZC3UYU38PXORS1U5GC997LTW6QU3' where id=9; -update noar tt set b1='4MRXLH' where id=9; -update noar ti set b1='4MRXLH' where id=9; -update noar tt set v0='HX1SEM5J857LF8MG4EDN' where id=9; -update noar ti set v0='HX1SEM5J857LF8MG4EDN' where id=9; -update noar tt set b2='TLHBOX3UVX879TGT3W' where id=9; -update noar ti set b2='TLHBOX3UVX879TGT3W' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -f0 int null, -v0 varchar(256) null, -b0 tinyblob null, -b1 mediumblob null, -b2 longblob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='UGNW0NVR9CGHXEE' where id=1; -update noar ti set v0='UGNW0NVR9CGHXEE' where id=1; -update noar tt set b0='JZP1DF02Q2G08DC4J' where id=1; -update noar ti set b0='JZP1DF02Q2G08DC4J' where id=1; -update noar tt set v0='OUK5P1NMIKTAYB0LUOD' where id=1; -update noar ti set v0='OUK5P1NMIKTAYB0LUOD' where id=1; -update noar tt set b1='3RC0S4F0T9GKAFI3DGEWMYR6E4' where id=1; -update noar ti set b1='3RC0S4F0T9GKAFI3DGEWMYR6E4' where id=1; -update noar tt set v0='RXAQ2ZJKPIEGLGDS6GB6N' where id=1; -update noar ti set v0='RXAQ2ZJKPIEGLGDS6GB6N' where id=1; -update noar tt set b2='6X3Q836J0HJAMIO32I9MQ59PF' where id=1; -update noar ti set b2='6X3Q836J0HJAMIO32I9MQ59PF' where id=1; -update noar tt set v0='J' where id=2; -update noar ti set v0='J' where id=2; -update noar tt set b0='4EE1BFRMWLI12I1M7Y8LIJ7GCLD0' where id=2; -update noar ti set b0='4EE1BFRMWLI12I1M7Y8LIJ7GCLD0' where id=2; -update noar tt set v0='DVCWYO' where id=2; -update noar ti set v0='DVCWYO' where id=2; -update noar tt set b1='AV615JHC8H0YVWUZ8LCT6YEQV' where id=2; -update noar ti set b1='AV615JHC8H0YVWUZ8LCT6YEQV' where id=2; -update noar tt set v0='SQ32WAZI0XC9UCZOW57AK' where id=2; -update noar ti set v0='SQ32WAZI0XC9UCZOW57AK' where id=2; -update noar tt set b2='H8QNRP06IZ98HU' where id=2; -update noar ti set b2='H8QNRP06IZ98HU' where id=2; -update noar tt set v0='GCSIQH4HQGOVW6LOUMIFI3DNLK8PQJ' where id=3; -update noar ti set v0='GCSIQH4HQGOVW6LOUMIFI3DNLK8PQJ' where id=3; -update noar tt set b0='SR5BE2' where id=3; -update noar ti set b0='SR5BE2' where id=3; -update noar tt set v0='FUK4CPT09' where id=3; -update noar ti set v0='FUK4CPT09' where id=3; -update noar tt set b1='FK93J39T' where id=3; -update noar ti set b1='FK93J39T' where id=3; -update noar tt set v0='Y8MPUQX06QU93ISM' where id=3; -update noar ti set v0='Y8MPUQX06QU93ISM' where id=3; -update noar tt set b2='AQOM794MF6' where id=3; -update noar ti set b2='AQOM794MF6' where id=3; -update noar tt set v0='YGNZ37H2EY' where id=4; -update noar ti set v0='YGNZ37H2EY' where id=4; -update noar tt set b0='ISTM731LD2T0VS9GTV1127IZ31D7' where id=4; -update noar ti set b0='ISTM731LD2T0VS9GTV1127IZ31D7' where id=4; -update noar tt set v0='EVMR7QIFIA5ET' where id=4; -update noar ti set v0='EVMR7QIFIA5ET' where id=4; -update noar tt set b1='OEE8YI2NTBI830RQ50EOTJ' where id=4; -update noar ti set b1='OEE8YI2NTBI830RQ50EOTJ' where id=4; -update noar tt set v0='CM340O76' where id=4; -update noar ti set v0='CM340O76' where id=4; -update noar tt set b2='MTVH671' where id=4; -update noar ti set b2='MTVH671' where id=4; -update noar tt set v0='NUXIT7YXBWNU7JSSEG' where id=5; -update noar ti set v0='NUXIT7YXBWNU7JSSEG' where id=5; -update noar tt set b0='5Q2Q6V7687QVIXLKZ' where id=5; -update noar ti set b0='5Q2Q6V7687QVIXLKZ' where id=5; -update noar tt set v0='DRLXXKEFR' where id=5; -update noar ti set v0='DRLXXKEFR' where id=5; -update noar tt set b1='NKU03MBYK' where id=5; -update noar ti set b1='NKU03MBYK' where id=5; -update noar tt set v0='JVR3WRCQDPZRNM' where id=5; -update noar ti set v0='JVR3WRCQDPZRNM' where id=5; -update noar tt set b2='2EEAQS3Z3CAKPH6X5' where id=5; -update noar ti set b2='2EEAQS3Z3CAKPH6X5' where id=5; -update noar tt set v0='5MPNKQWARIS25H67PT69WJGFYFS68393' where id=6; -update noar ti set v0='5MPNKQWARIS25H67PT69WJGFYFS68393' where id=6; -update noar tt set b0='L0WOAUA8WXYQ79E8L' where id=6; -update noar ti set b0='L0WOAUA8WXYQ79E8L' where id=6; -update noar tt set v0='90K71NJ4WWF0T2EAP5' where id=6; -update noar ti set v0='90K71NJ4WWF0T2EAP5' where id=6; -update noar tt set b1='XHAOECLN4YC7LRK8U8CHX0C349' where id=6; -update noar ti set b1='XHAOECLN4YC7LRK8U8CHX0C349' where id=6; -update noar tt set v0='8734P' where id=6; -update noar ti set v0='8734P' where id=6; -update noar tt set b2='C' where id=6; -update noar ti set b2='C' where id=6; -update noar tt set v0='R' where id=7; -update noar ti set v0='R' where id=7; -update noar tt set b0='L3X5DO95UYNEIE48SV2R5' where id=7; -update noar ti set b0='L3X5DO95UYNEIE48SV2R5' where id=7; -update noar tt set v0='9GMTQFPDXZ5RZY6ELJ2UD8BEHIU' where id=7; -update noar ti set v0='9GMTQFPDXZ5RZY6ELJ2UD8BEHIU' where id=7; -update noar tt set b1='48TEU3QD39KNR7223EPV' where id=7; -update noar ti set b1='48TEU3QD39KNR7223EPV' where id=7; -update noar tt set v0='2T92WIU6XOLA5VU' where id=7; -update noar ti set v0='2T92WIU6XOLA5VU' where id=7; -update noar tt set b2='WMA40QRLVM937BKUZVF444M8A81QKX' where id=7; -update noar ti set b2='WMA40QRLVM937BKUZVF444M8A81QKX' where id=7; -update noar tt set v0='BPPUE21RWWR0NXYWDA' where id=8; -update noar ti set v0='BPPUE21RWWR0NXYWDA' where id=8; -update noar tt set b0='ZG9QN48YJM13AYU5YYQVM7BM145HVYOT' where id=8; -update noar ti set b0='ZG9QN48YJM13AYU5YYQVM7BM145HVYOT' where id=8; -update noar tt set v0='W97MQZ' where id=8; -update noar ti set v0='W97MQZ' where id=8; -update noar tt set b1='Q2652ZRV6NHLCVEN0212YE' where id=8; -update noar ti set b1='Q2652ZRV6NHLCVEN0212YE' where id=8; -update noar tt set v0='5TRGJOZFXF64CHGHVTGR6WQ55PU6' where id=8; -update noar ti set v0='5TRGJOZFXF64CHGHVTGR6WQ55PU6' where id=8; -update noar tt set b2='2Z2MHTS9A8M7AYJV' where id=8; -update noar ti set b2='2Z2MHTS9A8M7AYJV' where id=8; -update noar tt set v0='1SRR' where id=9; -update noar ti set v0='1SRR' where id=9; -update noar tt set b0='K0RGO5EAPJ9QXFISR2RBVI6Q1P' where id=9; -update noar ti set b0='K0RGO5EAPJ9QXFISR2RBVI6Q1P' where id=9; -update noar tt set v0='PFVSYT0IF6ZB' where id=9; -update noar ti set v0='PFVSYT0IF6ZB' where id=9; -update noar tt set b1='CE6AP' where id=9; -update noar ti set b1='CE6AP' where id=9; -update noar tt set v0='WSLG7UVT8HD4TT9X0C1' where id=9; -update noar ti set v0='WSLG7UVT8HD4TT9X0C1' where id=9; -update noar tt set b2='P7F7NRQYGF1TFO8ZOGBRJV' where id=9; -update noar ti set b2='P7F7NRQYGF1TFO8ZOGBRJV' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -f0 int not null, -v0 varchar(32) not null, -b0 tinyblob not null, -b1 mediumblob not null, -b2 longblob not null -) engine=tokudb; -insert into tt values (1,0,'','','',''); -insert into tt values (2,0,'','','',''); -insert into tt values (3,0,'','','',''); -insert into tt values (4,0,'','','',''); -insert into tt values (5,0,'','','',''); -insert into tt values (6,0,'','','',''); -insert into tt values (7,0,'','','',''); -insert into tt values (8,0,'','','',''); -insert into tt values (9,0,'','','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='07J9' where id=1; -update noar ti set v0='07J9' where id=1; -update noar tt set b0='DUNKPINS' where id=1; -update noar ti set b0='DUNKPINS' where id=1; -update noar tt set v0='YD9BMR9BDMAZ4LVFCUJG9GVNTM' where id=1; -update noar ti set v0='YD9BMR9BDMAZ4LVFCUJG9GVNTM' where id=1; -update noar tt set b1='T4EWDSW5IX2STVK1TPIL717N5N3VP' where id=1; -update noar ti set b1='T4EWDSW5IX2STVK1TPIL717N5N3VP' where id=1; -update noar tt set v0='3I9WPSAUCBCP9Y' where id=1; -update noar ti set v0='3I9WPSAUCBCP9Y' where id=1; -update noar tt set b2='89KVC0QT2EFKMSO846PA8GLF6FWBOVHS' where id=1; -update noar ti set b2='89KVC0QT2EFKMSO846PA8GLF6FWBOVHS' where id=1; -update noar tt set v0='AUDY6GSLY' where id=2; -update noar ti set v0='AUDY6GSLY' where id=2; -update noar tt set b0='IS3TCTF4X1Y5' where id=2; -update noar ti set b0='IS3TCTF4X1Y5' where id=2; -update noar tt set v0='L7KOQ5B' where id=2; -update noar ti set v0='L7KOQ5B' where id=2; -update noar tt set b1='C4398W6L1EQTAH6' where id=2; -update noar ti set b1='C4398W6L1EQTAH6' where id=2; -update noar tt set v0='1YV3LGXWK9G4JLPSU1YQ9T3IU2EK3GI' where id=2; -update noar ti set v0='1YV3LGXWK9G4JLPSU1YQ9T3IU2EK3GI' where id=2; -update noar tt set b2='8E8HPFSUFTRCF0ZTEJ2BWJB0L3DMB4OK' where id=2; -update noar ti set b2='8E8HPFSUFTRCF0ZTEJ2BWJB0L3DMB4OK' where id=2; -update noar tt set v0='KGDBMO3SQWHJN5F6JU3U70K' where id=3; -update noar ti set v0='KGDBMO3SQWHJN5F6JU3U70K' where id=3; -update noar tt set b0='EK55ZT' where id=3; -update noar ti set b0='EK55ZT' where id=3; -update noar tt set v0='K' where id=3; -update noar ti set v0='K' where id=3; -update noar tt set b1='079DI85RQAQ5ID094U1W9' where id=3; -update noar ti set b1='079DI85RQAQ5ID094U1W9' where id=3; -update noar tt set v0='7UVJRKSQ26BTR1L8H8' where id=3; -update noar ti set v0='7UVJRKSQ26BTR1L8H8' where id=3; -update noar tt set b2='84F' where id=3; -update noar ti set b2='84F' where id=3; -update noar tt set v0='OPQTY9S0013' where id=4; -update noar ti set v0='OPQTY9S0013' where id=4; -update noar tt set b0='3E03NQ5OUYGN7E' where id=4; -update noar ti set b0='3E03NQ5OUYGN7E' where id=4; -update noar tt set v0='IBMJ' where id=4; -update noar ti set v0='IBMJ' where id=4; -update noar tt set b1='GQO72754ZJRHIO1D1WQ' where id=4; -update noar ti set b1='GQO72754ZJRHIO1D1WQ' where id=4; -update noar tt set v0='659P2XRROO0W0IETQNNHPSRB5WIG8MC' where id=4; -update noar ti set v0='659P2XRROO0W0IETQNNHPSRB5WIG8MC' where id=4; -update noar tt set b2='SX8N2G6EG3PJ' where id=4; -update noar ti set b2='SX8N2G6EG3PJ' where id=4; -update noar tt set v0='R5VN14NT4BRCZ3HT79JTHVO2W9H4X' where id=5; -update noar ti set v0='R5VN14NT4BRCZ3HT79JTHVO2W9H4X' where id=5; -update noar tt set b0='Z1KDZ4QEXRFZ1WYE0O81' where id=5; -update noar ti set b0='Z1KDZ4QEXRFZ1WYE0O81' where id=5; -update noar tt set v0='OQ5K08AX2NLXEF0Y7TZ8AWEFOW5UL' where id=5; -update noar ti set v0='OQ5K08AX2NLXEF0Y7TZ8AWEFOW5UL' where id=5; -update noar tt set b1='QY5' where id=5; -update noar ti set b1='QY5' where id=5; -update noar tt set v0='68ABPZVUNIOF' where id=5; -update noar ti set v0='68ABPZVUNIOF' where id=5; -update noar tt set b2='U5MSBBG' where id=5; -update noar ti set b2='U5MSBBG' where id=5; -update noar tt set v0='0M60K' where id=6; -update noar ti set v0='0M60K' where id=6; -update noar tt set b0='CQE8YSG0P8FIEPK' where id=6; -update noar ti set b0='CQE8YSG0P8FIEPK' where id=6; -update noar tt set v0='TCGONP' where id=6; -update noar ti set v0='TCGONP' where id=6; -update noar tt set b1='WTUDN93FH9WR5EIVCC' where id=6; -update noar ti set b1='WTUDN93FH9WR5EIVCC' where id=6; -update noar tt set v0='UDBYJ2NP0L13M67FROEDNJ' where id=6; -update noar ti set v0='UDBYJ2NP0L13M67FROEDNJ' where id=6; -update noar tt set b2='KB7857KMDAE2A4ZP4H872LASYZIKI' where id=6; -update noar ti set b2='KB7857KMDAE2A4ZP4H872LASYZIKI' where id=6; -update noar tt set v0='CJN0Q' where id=7; -update noar ti set v0='CJN0Q' where id=7; -update noar tt set b0='UEX4LLVH' where id=7; -update noar ti set b0='UEX4LLVH' where id=7; -update noar tt set v0='FBDZA4KGFLK9VDBA6YF1BCB' where id=7; -update noar ti set v0='FBDZA4KGFLK9VDBA6YF1BCB' where id=7; -update noar tt set b1='Z' where id=7; -update noar ti set b1='Z' where id=7; -update noar tt set v0='PTHB1U2FB238V5AY8YWNPUD3BZZRWT' where id=7; -update noar ti set v0='PTHB1U2FB238V5AY8YWNPUD3BZZRWT' where id=7; -update noar tt set b2='OWJTW5N6I0MUL7' where id=7; -update noar ti set b2='OWJTW5N6I0MUL7' where id=7; -update noar tt set v0='I5Y0GD5PFS4148N3IX8Y0M' where id=8; -update noar ti set v0='I5Y0GD5PFS4148N3IX8Y0M' where id=8; -update noar tt set b0='JMG6XCLCSOTI7X' where id=8; -update noar ti set b0='JMG6XCLCSOTI7X' where id=8; -update noar tt set v0='7V' where id=8; -update noar ti set v0='7V' where id=8; -update noar tt set b1='L' where id=8; -update noar ti set b1='L' where id=8; -update noar tt set v0='H4F5IV445QI46N30L1A77HX' where id=8; -update noar ti set v0='H4F5IV445QI46N30L1A77HX' where id=8; -update noar tt set b2='CNBLU0YN0TW3TVZA7' where id=8; -update noar ti set b2='CNBLU0YN0TW3TVZA7' where id=8; -update noar tt set v0='A7PUDKEI861Z9JY1YPN0PTTG24SMQV' where id=9; -update noar ti set v0='A7PUDKEI861Z9JY1YPN0PTTG24SMQV' where id=9; -update noar tt set b0='YIHPA9MJ752BQCWTCFS6Z' where id=9; -update noar ti set b0='YIHPA9MJ752BQCWTCFS6Z' where id=9; -update noar tt set v0='UCHJNTO63C2M5HDX0MID5NGZTO82L5X' where id=9; -update noar ti set v0='UCHJNTO63C2M5HDX0MID5NGZTO82L5X' where id=9; -update noar tt set b1='5BQ9J410YDMIQLH5JYAK9JTNMTZ2GPFO' where id=9; -update noar ti set b1='5BQ9J410YDMIQLH5JYAK9JTNMTZ2GPFO' where id=9; -update noar tt set v0='HLUUN5PSG2EBDAER' where id=9; -update noar ti set v0='HLUUN5PSG2EBDAER' where id=9; -update noar tt set b2='HUXWVIJAC91WLWGWZ6Y' where id=9; -update noar ti set b2='HUXWVIJAC91WLWGWZ6Y' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -f0 int not null, -v0 varchar(256) not null, -b0 tinyblob not null, -b1 mediumblob not null, -b2 longblob not null -) engine=tokudb; -insert into tt values (1,0,'','','',''); -insert into tt values (2,0,'','','',''); -insert into tt values (3,0,'','','',''); -insert into tt values (4,0,'','','',''); -insert into tt values (5,0,'','','',''); -insert into tt values (6,0,'','','',''); -insert into tt values (7,0,'','','',''); -insert into tt values (8,0,'','','',''); -insert into tt values (9,0,'','','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='Y1HELL2FKSCKFYWHK81CHJL7TTB3C4JI' where id=1; -update noar ti set v0='Y1HELL2FKSCKFYWHK81CHJL7TTB3C4JI' where id=1; -update noar tt set b0='B1J2G22QAZLVOVP03K' where id=1; -update noar ti set b0='B1J2G22QAZLVOVP03K' where id=1; -update noar tt set v0='32M7T6IAS8' where id=1; -update noar ti set v0='32M7T6IAS8' where id=1; -update noar tt set b1='F41H0X9C4JYJ3' where id=1; -update noar ti set b1='F41H0X9C4JYJ3' where id=1; -update noar tt set v0='9YL7' where id=1; -update noar ti set v0='9YL7' where id=1; -update noar tt set b2='3' where id=1; -update noar ti set b2='3' where id=1; -update noar tt set v0='JF7H5N41N' where id=2; -update noar ti set v0='JF7H5N41N' where id=2; -update noar tt set b0='GORM0ID' where id=2; -update noar ti set b0='GORM0ID' where id=2; -update noar tt set v0='PSYD' where id=2; -update noar ti set v0='PSYD' where id=2; -update noar tt set b1='VWYUNAFKQCS5VJQ1YVM4DGT34' where id=2; -update noar ti set b1='VWYUNAFKQCS5VJQ1YVM4DGT34' where id=2; -update noar tt set v0='FKX75B0' where id=2; -update noar ti set v0='FKX75B0' where id=2; -update noar tt set b2='S' where id=2; -update noar ti set b2='S' where id=2; -update noar tt set v0='GQ3C2VIOTO' where id=3; -update noar ti set v0='GQ3C2VIOTO' where id=3; -update noar tt set b0='U0080HKSK66S1WLDI4' where id=3; -update noar ti set b0='U0080HKSK66S1WLDI4' where id=3; -update noar tt set v0='RIOXR7U1154H6' where id=3; -update noar ti set v0='RIOXR7U1154H6' where id=3; -update noar tt set b1='92OUPM55WJFZ93FVNM599USZRVTI29FD' where id=3; -update noar ti set b1='92OUPM55WJFZ93FVNM599USZRVTI29FD' where id=3; -update noar tt set v0='INSI9L7YES4S6M72OH2SB3BK8L' where id=3; -update noar ti set v0='INSI9L7YES4S6M72OH2SB3BK8L' where id=3; -update noar tt set b2='D0YFA7B23SBA7EZOYVK' where id=3; -update noar ti set b2='D0YFA7B23SBA7EZOYVK' where id=3; -update noar tt set v0='UWFW1YT9TR' where id=4; -update noar ti set v0='UWFW1YT9TR' where id=4; -update noar tt set b0='LC0JKL1H189YWRGASK7' where id=4; -update noar ti set b0='LC0JKL1H189YWRGASK7' where id=4; -update noar tt set v0='RJ0LOLIEIEI0VPYIOCEKSOSL' where id=4; -update noar ti set v0='RJ0LOLIEIEI0VPYIOCEKSOSL' where id=4; -update noar tt set b1='QI1Z6HHW7YL6J1GVMFPC4HE2110' where id=4; -update noar ti set b1='QI1Z6HHW7YL6J1GVMFPC4HE2110' where id=4; -update noar tt set v0='OLB3X9' where id=4; -update noar ti set v0='OLB3X9' where id=4; -update noar tt set b2='FR77ASOFM8DHX4WKEWXZCEQU81' where id=4; -update noar ti set b2='FR77ASOFM8DHX4WKEWXZCEQU81' where id=4; -update noar tt set v0='75EQXYSTLF9L' where id=5; -update noar ti set v0='75EQXYSTLF9L' where id=5; -update noar tt set b0='QLA96AONO9FMTQ1REJ8T9FOASIIP' where id=5; -update noar ti set b0='QLA96AONO9FMTQ1REJ8T9FOASIIP' where id=5; -update noar tt set v0='52F5SOPZCEJHDO85B80ZD9' where id=5; -update noar ti set v0='52F5SOPZCEJHDO85B80ZD9' where id=5; -update noar tt set b1='DX3P56C8RTV' where id=5; -update noar ti set b1='DX3P56C8RTV' where id=5; -update noar tt set v0='5CIRDRFLI46' where id=5; -update noar ti set v0='5CIRDRFLI46' where id=5; -update noar tt set b2='TSFZN780' where id=5; -update noar ti set b2='TSFZN780' where id=5; -update noar tt set v0='LERXY7N33M94X' where id=6; -update noar ti set v0='LERXY7N33M94X' where id=6; -update noar tt set b0='7OTMGUWQGSDQJHIRNE5F4DU7DZHPXHHZ' where id=6; -update noar ti set b0='7OTMGUWQGSDQJHIRNE5F4DU7DZHPXHHZ' where id=6; -update noar tt set v0='DJDFOB26H7LXNTX' where id=6; -update noar ti set v0='DJDFOB26H7LXNTX' where id=6; -update noar tt set b1='M3JBUKUU' where id=6; -update noar ti set b1='M3JBUKUU' where id=6; -update noar tt set v0='E2ARTWETV6PF' where id=6; -update noar ti set v0='E2ARTWETV6PF' where id=6; -update noar tt set b2='DPPCLK1SUW0VUPQ63' where id=6; -update noar ti set b2='DPPCLK1SUW0VUPQ63' where id=6; -update noar tt set v0='0LQ6P493JPNCO7YX5PFPRN8LNPL' where id=7; -update noar ti set v0='0LQ6P493JPNCO7YX5PFPRN8LNPL' where id=7; -update noar tt set b0='1QF5OTOLTC80E' where id=7; -update noar ti set b0='1QF5OTOLTC80E' where id=7; -update noar tt set v0='YKY6' where id=7; -update noar ti set v0='YKY6' where id=7; -update noar tt set b1='QT6R3RUR6BF27B' where id=7; -update noar ti set b1='QT6R3RUR6BF27B' where id=7; -update noar tt set v0='CPS2F8IV6BGIMYZP3GMJVB4I' where id=7; -update noar ti set v0='CPS2F8IV6BGIMYZP3GMJVB4I' where id=7; -update noar tt set b2='RKTFHR1Z1NP0P7VU20Z' where id=7; -update noar ti set b2='RKTFHR1Z1NP0P7VU20Z' where id=7; -update noar tt set v0='W4FR22244IVXF86053WMHMN9A6Y5LBT' where id=8; -update noar ti set v0='W4FR22244IVXF86053WMHMN9A6Y5LBT' where id=8; -update noar tt set b0='Q6K7UJDG9RPA5C1J' where id=8; -update noar ti set b0='Q6K7UJDG9RPA5C1J' where id=8; -update noar tt set v0='5Z5' where id=8; -update noar ti set v0='5Z5' where id=8; -update noar tt set b1='9ZP2C5ZOBGIKIHNG5A1HUN' where id=8; -update noar ti set b1='9ZP2C5ZOBGIKIHNG5A1HUN' where id=8; -update noar tt set v0='95ES6ZYFJS9Z9L9AM95E4YUAZS8J8' where id=8; -update noar ti set v0='95ES6ZYFJS9Z9L9AM95E4YUAZS8J8' where id=8; -update noar tt set b2='5G85BF4ME' where id=8; -update noar ti set b2='5G85BF4ME' where id=8; -update noar tt set v0='PO6I5UU' where id=9; -update noar ti set v0='PO6I5UU' where id=9; -update noar tt set b0='G8UNHO346VDSQY' where id=9; -update noar ti set b0='G8UNHO346VDSQY' where id=9; -update noar tt set v0='RU7' where id=9; -update noar ti set v0='RU7' where id=9; -update noar tt set b1='HZZ9VVU6WZPDGJVFY4CODI8ZH' where id=9; -update noar ti set b1='HZZ9VVU6WZPDGJVFY4CODI8ZH' where id=9; -update noar tt set v0='2L7ZQABVFBPMEA6UZ' where id=9; -update noar ti set v0='2L7ZQABVFBPMEA6UZ' where id=9; -update noar tt set b2='PS0LKOIW4HGSJJ27DFDX7XV5EJ' where id=9; -update noar ti set b2='PS0LKOIW4HGSJJ27DFDX7XV5EJ' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -f0 int null, -v0 varchar(32) null, -b0 tinyblob null, -b1 longblob null, -b2 tinyblob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='O499U2CZ1W0U5UI2Z' where id=1; -update noar ti set v0='O499U2CZ1W0U5UI2Z' where id=1; -update noar tt set b0='HOGQ6ZM7PN9OFRYJ' where id=1; -update noar ti set b0='HOGQ6ZM7PN9OFRYJ' where id=1; -update noar tt set v0='CBNRM20N' where id=1; -update noar ti set v0='CBNRM20N' where id=1; -update noar tt set b1='B1EGGLEC19FD' where id=1; -update noar ti set b1='B1EGGLEC19FD' where id=1; -update noar tt set v0='QH144WL15HL2' where id=1; -update noar ti set v0='QH144WL15HL2' where id=1; -update noar tt set b2='QW' where id=1; -update noar ti set b2='QW' where id=1; -update noar tt set v0='NN4RBU45QV5T' where id=2; -update noar ti set v0='NN4RBU45QV5T' where id=2; -update noar tt set b0='4IRAIOI2DEDW028P2Y0P4I9PW' where id=2; -update noar ti set b0='4IRAIOI2DEDW028P2Y0P4I9PW' where id=2; -update noar tt set v0='UXDZ86EVPLUYKPYG1BLB0P171MWI73' where id=2; -update noar ti set v0='UXDZ86EVPLUYKPYG1BLB0P171MWI73' where id=2; -update noar tt set b1='1CV3KS5OY6PV984WGM1V6J4H65WAWRJ' where id=2; -update noar ti set b1='1CV3KS5OY6PV984WGM1V6J4H65WAWRJ' where id=2; -update noar tt set v0='1GLZUW4P2BME97A9' where id=2; -update noar ti set v0='1GLZUW4P2BME97A9' where id=2; -update noar tt set b2='BA' where id=2; -update noar ti set b2='BA' where id=2; -update noar tt set v0='ABF9F8LHJ2FXCBXA4K12WIJLZCU3ZJ' where id=3; -update noar ti set v0='ABF9F8LHJ2FXCBXA4K12WIJLZCU3ZJ' where id=3; -update noar tt set b0='DW7C9KSN5F4F' where id=3; -update noar ti set b0='DW7C9KSN5F4F' where id=3; -update noar tt set v0='ILZZLX6XAMWY8MXTF8NQ4' where id=3; -update noar ti set v0='ILZZLX6XAMWY8MXTF8NQ4' where id=3; -update noar tt set b1='4EK0FH63EC4224EIEBE' where id=3; -update noar ti set b1='4EK0FH63EC4224EIEBE' where id=3; -update noar tt set v0='N2B6ZXIN2XPGMFXJFEZT7KXZ6R' where id=3; -update noar ti set v0='N2B6ZXIN2XPGMFXJFEZT7KXZ6R' where id=3; -update noar tt set b2='8BZS8XFLDG5NM47F20VL' where id=3; -update noar ti set b2='8BZS8XFLDG5NM47F20VL' where id=3; -update noar tt set v0='CFRL1' where id=4; -update noar ti set v0='CFRL1' where id=4; -update noar tt set b0='D6IHVPTY3E4OEHCVCG2XZI5CTX7' where id=4; -update noar ti set b0='D6IHVPTY3E4OEHCVCG2XZI5CTX7' where id=4; -update noar tt set v0='8XQWCT32XM5GUY' where id=4; -update noar ti set v0='8XQWCT32XM5GUY' where id=4; -update noar tt set b1='XU3B0LMV6' where id=4; -update noar ti set b1='XU3B0LMV6' where id=4; -update noar tt set v0='HNS54CLWPG' where id=4; -update noar ti set v0='HNS54CLWPG' where id=4; -update noar tt set b2='OCN93J' where id=4; -update noar ti set b2='OCN93J' where id=4; -update noar tt set v0='3NC3111G0' where id=5; -update noar ti set v0='3NC3111G0' where id=5; -update noar tt set b0='E7P4G7HSADKZ33JP' where id=5; -update noar ti set b0='E7P4G7HSADKZ33JP' where id=5; -update noar tt set v0='OQJOKYD3ZMO4ULOBOI5U0QE' where id=5; -update noar ti set v0='OQJOKYD3ZMO4ULOBOI5U0QE' where id=5; -update noar tt set b1='FUTBSPFJW9' where id=5; -update noar ti set b1='FUTBSPFJW9' where id=5; -update noar tt set v0='D2B382WPFCJFWUNF6DYWCU1JNRA5ZU7S' where id=5; -update noar ti set v0='D2B382WPFCJFWUNF6DYWCU1JNRA5ZU7S' where id=5; -update noar tt set b2='UGKLD2ZMDAXL8J' where id=5; -update noar ti set b2='UGKLD2ZMDAXL8J' where id=5; -update noar tt set v0='NL0' where id=6; -update noar ti set v0='NL0' where id=6; -update noar tt set b0='AFRT5VNZI6M9HBYGLNXW8S7F2AH4' where id=6; -update noar ti set b0='AFRT5VNZI6M9HBYGLNXW8S7F2AH4' where id=6; -update noar tt set v0='V9BWD3VTY6BJ3AWD1PNR' where id=6; -update noar ti set v0='V9BWD3VTY6BJ3AWD1PNR' where id=6; -update noar tt set b1='6FNDCH8SF5XB429IA5X' where id=6; -update noar ti set b1='6FNDCH8SF5XB429IA5X' where id=6; -update noar tt set v0='IF2ZL2R5MP1K2C4PEQ4SRPFI4CVW' where id=6; -update noar ti set v0='IF2ZL2R5MP1K2C4PEQ4SRPFI4CVW' where id=6; -update noar tt set b2='Z1X' where id=6; -update noar ti set b2='Z1X' where id=6; -update noar tt set v0='JP3L46DYRU57IMQUH6F11V6LD8I5PQFA' where id=7; -update noar ti set v0='JP3L46DYRU57IMQUH6F11V6LD8I5PQFA' where id=7; -update noar tt set b0='W8FEU2QI41UU' where id=7; -update noar ti set b0='W8FEU2QI41UU' where id=7; -update noar tt set v0='DTN5493H62FR4QMPLM0SHNBAY' where id=7; -update noar ti set v0='DTN5493H62FR4QMPLM0SHNBAY' where id=7; -update noar tt set b1='L' where id=7; -update noar ti set b1='L' where id=7; -update noar tt set v0='28N78LGK5681XW2O0ZQ3413N' where id=7; -update noar ti set v0='28N78LGK5681XW2O0ZQ3413N' where id=7; -update noar tt set b2='LB' where id=7; -update noar ti set b2='LB' where id=7; -update noar tt set v0='K0PXWYPVVS6UKSZXDVAD0KRCES18' where id=8; -update noar ti set v0='K0PXWYPVVS6UKSZXDVAD0KRCES18' where id=8; -update noar tt set b0='BE41M2NILQBGIFZKUVWWAXW5V' where id=8; -update noar ti set b0='BE41M2NILQBGIFZKUVWWAXW5V' where id=8; -update noar tt set v0='EA764I8854CN12SM61ZYUOLIM' where id=8; -update noar ti set v0='EA764I8854CN12SM61ZYUOLIM' where id=8; -update noar tt set b1='62C44ERE9T9B6OKFOFMJJ' where id=8; -update noar ti set b1='62C44ERE9T9B6OKFOFMJJ' where id=8; -update noar tt set v0='Z' where id=8; -update noar ti set v0='Z' where id=8; -update noar tt set b2='F' where id=8; -update noar ti set b2='F' where id=8; -update noar tt set v0='D' where id=9; -update noar ti set v0='D' where id=9; -update noar tt set b0='WLJ3G7B27FAP7' where id=9; -update noar ti set b0='WLJ3G7B27FAP7' where id=9; -update noar tt set v0='J4VVG' where id=9; -update noar ti set v0='J4VVG' where id=9; -update noar tt set b1='RW953YD6XQ8ZEYIJOTXF03TB6KX1' where id=9; -update noar ti set b1='RW953YD6XQ8ZEYIJOTXF03TB6KX1' where id=9; -update noar tt set v0='UW3BP' where id=9; -update noar ti set v0='UW3BP' where id=9; -update noar tt set b2='M5KQT1FW5W7U7JP6UU526891R' where id=9; -update noar ti set b2='M5KQT1FW5W7U7JP6UU526891R' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -f0 int null, -v0 varchar(256) null, -b0 tinyblob null, -b1 longblob null, -b2 tinyblob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='XF' where id=1; -update noar ti set v0='XF' where id=1; -update noar tt set b0='3' where id=1; -update noar ti set b0='3' where id=1; -update noar tt set v0='A6QOWZN4S58T5I9O1SYU' where id=1; -update noar ti set v0='A6QOWZN4S58T5I9O1SYU' where id=1; -update noar tt set b1='976UZYZWOTVTRXJXN7HZKE8I85A0K' where id=1; -update noar ti set b1='976UZYZWOTVTRXJXN7HZKE8I85A0K' where id=1; -update noar tt set v0='KASQOJAZYLH7522ZGJR7C0S' where id=1; -update noar ti set v0='KASQOJAZYLH7522ZGJR7C0S' where id=1; -update noar tt set b2='3WZ397NXLG3N' where id=1; -update noar ti set b2='3WZ397NXLG3N' where id=1; -update noar tt set v0='G15ZR759C18GH7ZRUBRMPI6' where id=2; -update noar ti set v0='G15ZR759C18GH7ZRUBRMPI6' where id=2; -update noar tt set b0='L9HOSVU9UFY82J60ER71CEO' where id=2; -update noar ti set b0='L9HOSVU9UFY82J60ER71CEO' where id=2; -update noar tt set v0='QGBSN1SYLXVBZHXF5QSE29GN4AGN' where id=2; -update noar ti set v0='QGBSN1SYLXVBZHXF5QSE29GN4AGN' where id=2; -update noar tt set b1='34LMM06001ZZ1' where id=2; -update noar ti set b1='34LMM06001ZZ1' where id=2; -update noar tt set v0='JOWCDZRHUAJS' where id=2; -update noar ti set v0='JOWCDZRHUAJS' where id=2; -update noar tt set b2='L0YP9JOAI' where id=2; -update noar ti set b2='L0YP9JOAI' where id=2; -update noar tt set v0='WS9OFMFTEA8' where id=3; -update noar ti set v0='WS9OFMFTEA8' where id=3; -update noar tt set b0='FPKZO1OKSF' where id=3; -update noar ti set b0='FPKZO1OKSF' where id=3; -update noar tt set v0='X' where id=3; -update noar ti set v0='X' where id=3; -update noar tt set b1='KTE0LMG' where id=3; -update noar ti set b1='KTE0LMG' where id=3; -update noar tt set v0='NFT97P3N' where id=3; -update noar ti set v0='NFT97P3N' where id=3; -update noar tt set b2='M0BKYAH9LAOAVA8HAFQ8' where id=3; -update noar ti set b2='M0BKYAH9LAOAVA8HAFQ8' where id=3; -update noar tt set v0='VWP5TMV4JPTEC' where id=4; -update noar ti set v0='VWP5TMV4JPTEC' where id=4; -update noar tt set b0='C863YPMAR8FZB14TSR04ILM' where id=4; -update noar ti set b0='C863YPMAR8FZB14TSR04ILM' where id=4; -update noar tt set v0='IFO2Z1JZT256W2ID6M2MPM17SJHJMS' where id=4; -update noar ti set v0='IFO2Z1JZT256W2ID6M2MPM17SJHJMS' where id=4; -update noar tt set b1='NVJGJ4BFA3LCV8G904HXRFVR' where id=4; -update noar ti set b1='NVJGJ4BFA3LCV8G904HXRFVR' where id=4; -update noar tt set v0='0NKJIY3PU9MX631CEARFT7ZSYV7BD' where id=4; -update noar ti set v0='0NKJIY3PU9MX631CEARFT7ZSYV7BD' where id=4; -update noar tt set b2='IXFWSLZ8BPF7SE5PAUO6JQ4JT10KG7FN' where id=4; -update noar ti set b2='IXFWSLZ8BPF7SE5PAUO6JQ4JT10KG7FN' where id=4; -update noar tt set v0='007UEFQYUZTFIC170KBWMHGVZ52DD' where id=5; -update noar ti set v0='007UEFQYUZTFIC170KBWMHGVZ52DD' where id=5; -update noar tt set b0='45R6A9J2WR5WFIY59L27NZCUJR76SF' where id=5; -update noar ti set b0='45R6A9J2WR5WFIY59L27NZCUJR76SF' where id=5; -update noar tt set v0='KXGQKB7M7J9' where id=5; -update noar ti set v0='KXGQKB7M7J9' where id=5; -update noar tt set b1='TTH7CLMJ55BJT90X3NPK2H' where id=5; -update noar ti set b1='TTH7CLMJ55BJT90X3NPK2H' where id=5; -update noar tt set v0='Z0JG' where id=5; -update noar ti set v0='Z0JG' where id=5; -update noar tt set b2='8V12WQ' where id=5; -update noar ti set b2='8V12WQ' where id=5; -update noar tt set v0='T5RDQMTUS4I6GG8A' where id=6; -update noar ti set v0='T5RDQMTUS4I6GG8A' where id=6; -update noar tt set b0='RXCSZUFA' where id=6; -update noar ti set b0='RXCSZUFA' where id=6; -update noar tt set v0='A78GCCEC3DFH3PBYRRJ' where id=6; -update noar ti set v0='A78GCCEC3DFH3PBYRRJ' where id=6; -update noar tt set b1='1WYJKHJ' where id=6; -update noar ti set b1='1WYJKHJ' where id=6; -update noar tt set v0='T8H438' where id=6; -update noar ti set v0='T8H438' where id=6; -update noar tt set b2='0U1C086J0CVWO667TVGWF2NCWR' where id=6; -update noar ti set b2='0U1C086J0CVWO667TVGWF2NCWR' where id=6; -update noar tt set v0='ZV9DD2K' where id=7; -update noar ti set v0='ZV9DD2K' where id=7; -update noar tt set b0='GAZRV51LRM2W7XARPJI96Q2W56JO1S' where id=7; -update noar ti set b0='GAZRV51LRM2W7XARPJI96Q2W56JO1S' where id=7; -update noar tt set v0='5B23WF2AV83ASMM86569CEWSOPD1IO' where id=7; -update noar ti set v0='5B23WF2AV83ASMM86569CEWSOPD1IO' where id=7; -update noar tt set b1='C319BC2GP5VNWH4B7K' where id=7; -update noar ti set b1='C319BC2GP5VNWH4B7K' where id=7; -update noar tt set v0='6' where id=7; -update noar ti set v0='6' where id=7; -update noar tt set b2='Q3SZ2DHXOIVE75P7PYMBD7A1LSLY' where id=7; -update noar ti set b2='Q3SZ2DHXOIVE75P7PYMBD7A1LSLY' where id=7; -update noar tt set v0='AOUSMNYZ1O3NG' where id=8; -update noar ti set v0='AOUSMNYZ1O3NG' where id=8; -update noar tt set b0='T5S15UY76FRGODV8PWRTD' where id=8; -update noar ti set b0='T5S15UY76FRGODV8PWRTD' where id=8; -update noar tt set v0='OHTUWHZ5QGM1IJ1' where id=8; -update noar ti set v0='OHTUWHZ5QGM1IJ1' where id=8; -update noar tt set b1='D5BDQWNSHW48MEC7YYKP7TH9' where id=8; -update noar ti set b1='D5BDQWNSHW48MEC7YYKP7TH9' where id=8; -update noar tt set v0='7GLJRK22AX' where id=8; -update noar ti set v0='7GLJRK22AX' where id=8; -update noar tt set b2='QTP9SXDN9KMZ2XLSCFEYQBN3S40RXZE3' where id=8; -update noar ti set b2='QTP9SXDN9KMZ2XLSCFEYQBN3S40RXZE3' where id=8; -update noar tt set v0='K9GFV5MCVWOGNW02OSARQTXIXD5MJGOA' where id=9; -update noar ti set v0='K9GFV5MCVWOGNW02OSARQTXIXD5MJGOA' where id=9; -update noar tt set b0='HW' where id=9; -update noar ti set b0='HW' where id=9; -update noar tt set v0='SMJKXITBLWIDWXTKHVFO' where id=9; -update noar ti set v0='SMJKXITBLWIDWXTKHVFO' where id=9; -update noar tt set b1='1KKUBT' where id=9; -update noar ti set b1='1KKUBT' where id=9; -update noar tt set v0='YSKSZJ54FUI5M3ZUJMRMB95T2WEOC1X8' where id=9; -update noar ti set v0='YSKSZJ54FUI5M3ZUJMRMB95T2WEOC1X8' where id=9; -update noar tt set b2='2FRG1Z3KBKZAZONJW910UZRZ5S8Z' where id=9; -update noar ti set b2='2FRG1Z3KBKZAZONJW910UZRZ5S8Z' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -f0 int not null, -v0 varchar(32) not null, -b0 tinyblob not null, -b1 longblob not null, -b2 tinyblob not null -) engine=tokudb; -insert into tt values (1,0,'','','',''); -insert into tt values (2,0,'','','',''); -insert into tt values (3,0,'','','',''); -insert into tt values (4,0,'','','',''); -insert into tt values (5,0,'','','',''); -insert into tt values (6,0,'','','',''); -insert into tt values (7,0,'','','',''); -insert into tt values (8,0,'','','',''); -insert into tt values (9,0,'','','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='AGORYO3XICF546JO' where id=1; -update noar ti set v0='AGORYO3XICF546JO' where id=1; -update noar tt set b0='DT4TGFZ02FOEZQ1YZHKUU2PM' where id=1; -update noar ti set b0='DT4TGFZ02FOEZQ1YZHKUU2PM' where id=1; -update noar tt set v0='3N4N9GK1ODC5UR7U03LY7MRTBBR125' where id=1; -update noar ti set v0='3N4N9GK1ODC5UR7U03LY7MRTBBR125' where id=1; -update noar tt set b1='L2NQR' where id=1; -update noar ti set b1='L2NQR' where id=1; -update noar tt set v0='ZF' where id=1; -update noar ti set v0='ZF' where id=1; -update noar tt set b2='5OEALYIG2NUOU1L42IED6ODGLMWVU' where id=1; -update noar ti set b2='5OEALYIG2NUOU1L42IED6ODGLMWVU' where id=1; -update noar tt set v0='VA37BM8OEW' where id=2; -update noar ti set v0='VA37BM8OEW' where id=2; -update noar tt set b0='SU4ER' where id=2; -update noar ti set b0='SU4ER' where id=2; -update noar tt set v0='ZVZ' where id=2; -update noar ti set v0='ZVZ' where id=2; -update noar tt set b1='1N0WILVRGEDP0KWFLHCVJNM' where id=2; -update noar ti set b1='1N0WILVRGEDP0KWFLHCVJNM' where id=2; -update noar tt set v0='V58CNNCU' where id=2; -update noar ti set v0='V58CNNCU' where id=2; -update noar tt set b2='8QIODIN7JXTNFF5ZY11' where id=2; -update noar ti set b2='8QIODIN7JXTNFF5ZY11' where id=2; -update noar tt set v0='WHBVGQWJ9V9' where id=3; -update noar ti set v0='WHBVGQWJ9V9' where id=3; -update noar tt set b0='FRXY4PBPM' where id=3; -update noar ti set b0='FRXY4PBPM' where id=3; -update noar tt set v0='TG4VPGMDOPZ7U0YP3FQKXP' where id=3; -update noar ti set v0='TG4VPGMDOPZ7U0YP3FQKXP' where id=3; -update noar tt set b1='BKKIPWCNZCOM4SFG6I1685' where id=3; -update noar ti set b1='BKKIPWCNZCOM4SFG6I1685' where id=3; -update noar tt set v0='FB51XUOQM8JSVNURD' where id=3; -update noar ti set v0='FB51XUOQM8JSVNURD' where id=3; -update noar tt set b2='JF466JG8VJLUTFA7RYSX' where id=3; -update noar ti set b2='JF466JG8VJLUTFA7RYSX' where id=3; -update noar tt set v0='Y19X8K12I3DJN41CB0M10M' where id=4; -update noar ti set v0='Y19X8K12I3DJN41CB0M10M' where id=4; -update noar tt set b0='G5TKU140GTS2OLMGI5LN6ROLC' where id=4; -update noar ti set b0='G5TKU140GTS2OLMGI5LN6ROLC' where id=4; -update noar tt set v0='00X' where id=4; -update noar ti set v0='00X' where id=4; -update noar tt set b1='UPK0Y' where id=4; -update noar ti set b1='UPK0Y' where id=4; -update noar tt set v0='ARLX6XOGACL8OT0NO16S' where id=4; -update noar ti set v0='ARLX6XOGACL8OT0NO16S' where id=4; -update noar tt set b2='TZNHOLJPYJN2LFQ0' where id=4; -update noar ti set b2='TZNHOLJPYJN2LFQ0' where id=4; -update noar tt set v0='WCVZS5WOX2DKE5WMAHHVHQ9SJ2DC6' where id=5; -update noar ti set v0='WCVZS5WOX2DKE5WMAHHVHQ9SJ2DC6' where id=5; -update noar tt set b0='FDTGFFYFCVKE39XRU4GU2' where id=5; -update noar ti set b0='FDTGFFYFCVKE39XRU4GU2' where id=5; -update noar tt set v0='67JQTYB3669A9ILN2ENV0ABPI3X54AH' where id=5; -update noar ti set v0='67JQTYB3669A9ILN2ENV0ABPI3X54AH' where id=5; -update noar tt set b1='CXRZ7CDSQMXTS03' where id=5; -update noar ti set b1='CXRZ7CDSQMXTS03' where id=5; -update noar tt set v0='Y5ZNL0M1AXRYWDNFPHNO67K86IEJXE0' where id=5; -update noar ti set v0='Y5ZNL0M1AXRYWDNFPHNO67K86IEJXE0' where id=5; -update noar tt set b2='S3IJ6AU434W0NNR' where id=5; -update noar ti set b2='S3IJ6AU434W0NNR' where id=5; -update noar tt set v0='OO' where id=6; -update noar ti set v0='OO' where id=6; -update noar tt set b0='0U' where id=6; -update noar ti set b0='0U' where id=6; -update noar tt set v0='BPRFO7AX' where id=6; -update noar ti set v0='BPRFO7AX' where id=6; -update noar tt set b1='HA43QB11MJGMWHOYM0UXTTZL5CG4XND' where id=6; -update noar ti set b1='HA43QB11MJGMWHOYM0UXTTZL5CG4XND' where id=6; -update noar tt set v0='FKLAWT88071J5FIWK4YPDRN8ZFVGH' where id=6; -update noar ti set v0='FKLAWT88071J5FIWK4YPDRN8ZFVGH' where id=6; -update noar tt set b2='SFDCA0GYJQ2NEKYPD0FCF947ACIAJIQQ' where id=6; -update noar ti set b2='SFDCA0GYJQ2NEKYPD0FCF947ACIAJIQQ' where id=6; -update noar tt set v0='0XOIHMW2VDC6ZV7M' where id=7; -update noar ti set v0='0XOIHMW2VDC6ZV7M' where id=7; -update noar tt set b0='3Q3QHT8UQ' where id=7; -update noar ti set b0='3Q3QHT8UQ' where id=7; -update noar tt set v0='DVPZT' where id=7; -update noar ti set v0='DVPZT' where id=7; -update noar tt set b1='PZJBM894C0ITAPPR1AC1L9YG0FD0' where id=7; -update noar ti set b1='PZJBM894C0ITAPPR1AC1L9YG0FD0' where id=7; -update noar tt set v0='DPO7CDC6JA419135ITNXEZH' where id=7; -update noar ti set v0='DPO7CDC6JA419135ITNXEZH' where id=7; -update noar tt set b2='7JEZQR1JD0O9QP' where id=7; -update noar ti set b2='7JEZQR1JD0O9QP' where id=7; -update noar tt set v0='HW5P3SW7XGW5DPDCLWZE14M3U' where id=8; -update noar ti set v0='HW5P3SW7XGW5DPDCLWZE14M3U' where id=8; -update noar tt set b0='VN1KPJ27EEYGT' where id=8; -update noar ti set b0='VN1KPJ27EEYGT' where id=8; -update noar tt set v0='A5TNYVJ5CE29Q' where id=8; -update noar ti set v0='A5TNYVJ5CE29Q' where id=8; -update noar tt set b1='91DT3KTEDGKG' where id=8; -update noar ti set b1='91DT3KTEDGKG' where id=8; -update noar tt set v0='BWVY' where id=8; -update noar ti set v0='BWVY' where id=8; -update noar tt set b2='NXBDW2864XZ65K3GBTR' where id=8; -update noar ti set b2='NXBDW2864XZ65K3GBTR' where id=8; -update noar tt set v0='C4LJBWGZI' where id=9; -update noar ti set v0='C4LJBWGZI' where id=9; -update noar tt set b0='MMFX1' where id=9; -update noar ti set b0='MMFX1' where id=9; -update noar tt set v0='PQYGKMNLJ6A3PB434R0ZZ3' where id=9; -update noar ti set v0='PQYGKMNLJ6A3PB434R0ZZ3' where id=9; -update noar tt set b1='CXLTIUK5KACD4' where id=9; -update noar ti set b1='CXLTIUK5KACD4' where id=9; -update noar tt set v0='FBC2TMO17MRZ5DP90GCLZVBUX17XE' where id=9; -update noar ti set v0='FBC2TMO17MRZ5DP90GCLZVBUX17XE' where id=9; -update noar tt set b2='6Z56T4PFMITOGQ' where id=9; -update noar ti set b2='6Z56T4PFMITOGQ' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -f0 int not null, -v0 varchar(256) not null, -b0 tinyblob not null, -b1 longblob not null, -b2 tinyblob not null -) engine=tokudb; -insert into tt values (1,0,'','','',''); -insert into tt values (2,0,'','','',''); -insert into tt values (3,0,'','','',''); -insert into tt values (4,0,'','','',''); -insert into tt values (5,0,'','','',''); -insert into tt values (6,0,'','','',''); -insert into tt values (7,0,'','','',''); -insert into tt values (8,0,'','','',''); -insert into tt values (9,0,'','','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='1IN6JSX20VB' where id=1; -update noar ti set v0='1IN6JSX20VB' where id=1; -update noar tt set b0='L9E5CTQTIXE4E8L6Z6EI76PFZHBC' where id=1; -update noar ti set b0='L9E5CTQTIXE4E8L6Z6EI76PFZHBC' where id=1; -update noar tt set v0='VB5' where id=1; -update noar ti set v0='VB5' where id=1; -update noar tt set b1='Z2XH055S871J974MO61IMS' where id=1; -update noar ti set b1='Z2XH055S871J974MO61IMS' where id=1; -update noar tt set v0='AV' where id=1; -update noar ti set v0='AV' where id=1; -update noar tt set b2='6KDRDIMINIHO908M' where id=1; -update noar ti set b2='6KDRDIMINIHO908M' where id=1; -update noar tt set v0='IS64XN3WH8N5OF1J1R' where id=2; -update noar ti set v0='IS64XN3WH8N5OF1J1R' where id=2; -update noar tt set b0='NVU2VCFUQ1B9RHO0M0PISUOG3KTK' where id=2; -update noar ti set b0='NVU2VCFUQ1B9RHO0M0PISUOG3KTK' where id=2; -update noar tt set v0='NCXQ0OXOXHLQNVE9N14V' where id=2; -update noar ti set v0='NCXQ0OXOXHLQNVE9N14V' where id=2; -update noar tt set b1='Q1N7955HTTRMSE4CR' where id=2; -update noar ti set b1='Q1N7955HTTRMSE4CR' where id=2; -update noar tt set v0='M1PHHA' where id=2; -update noar ti set v0='M1PHHA' where id=2; -update noar tt set b2='PBIO8SVVJOYWBDTHS2OJ51' where id=2; -update noar ti set b2='PBIO8SVVJOYWBDTHS2OJ51' where id=2; -update noar tt set v0='R' where id=3; -update noar ti set v0='R' where id=3; -update noar tt set b0='GA' where id=3; -update noar ti set b0='GA' where id=3; -update noar tt set v0='GMG16V2X12GR7TZ5B5F1X3IDQQMS4' where id=3; -update noar ti set v0='GMG16V2X12GR7TZ5B5F1X3IDQQMS4' where id=3; -update noar tt set b1='6IJHJ' where id=3; -update noar ti set b1='6IJHJ' where id=3; -update noar tt set v0='LTE7A9QFCWXBKC20VIMFGAVS9' where id=3; -update noar ti set v0='LTE7A9QFCWXBKC20VIMFGAVS9' where id=3; -update noar tt set b2='LG512WWLSUT8J' where id=3; -update noar ti set b2='LG512WWLSUT8J' where id=3; -update noar tt set v0='4NDWU0GK2I7RRABNP6TXUT1ZHJZZP9' where id=4; -update noar ti set v0='4NDWU0GK2I7RRABNP6TXUT1ZHJZZP9' where id=4; -update noar tt set b0='1BW56UHYXEV63T7SNH3S7AY' where id=4; -update noar ti set b0='1BW56UHYXEV63T7SNH3S7AY' where id=4; -update noar tt set v0='44XHNZ4NKEM3' where id=4; -update noar ti set v0='44XHNZ4NKEM3' where id=4; -update noar tt set b1='HQQMPW2F05HKZ97MEO12DC23TYCG' where id=4; -update noar ti set b1='HQQMPW2F05HKZ97MEO12DC23TYCG' where id=4; -update noar tt set v0='DH67CX5I5R84XPZEPQK' where id=4; -update noar ti set v0='DH67CX5I5R84XPZEPQK' where id=4; -update noar tt set b2='HMY3CDVT3GU0EQC25P' where id=4; -update noar ti set b2='HMY3CDVT3GU0EQC25P' where id=4; -update noar tt set v0='8TVGVRFK8F1STKHB6JCHTAG22D8' where id=5; -update noar ti set v0='8TVGVRFK8F1STKHB6JCHTAG22D8' where id=5; -update noar tt set b0='3AVTASCWQN6DL8QJANECKXNRLQVMFTP' where id=5; -update noar ti set b0='3AVTASCWQN6DL8QJANECKXNRLQVMFTP' where id=5; -update noar tt set v0='1OZF43HR25LIBWHR4' where id=5; -update noar ti set v0='1OZF43HR25LIBWHR4' where id=5; -update noar tt set b1='YUG1X33' where id=5; -update noar ti set b1='YUG1X33' where id=5; -update noar tt set v0='ZDCGL0AEMSJ1H5RIODK8N99DWEE04J9' where id=5; -update noar ti set v0='ZDCGL0AEMSJ1H5RIODK8N99DWEE04J9' where id=5; -update noar tt set b2='BQIF4A94AKY5' where id=5; -update noar ti set b2='BQIF4A94AKY5' where id=5; -update noar tt set v0='Y4XUS33LRKQESG22BJINOYYCW3' where id=6; -update noar ti set v0='Y4XUS33LRKQESG22BJINOYYCW3' where id=6; -update noar tt set b0='PT0250A8HK' where id=6; -update noar ti set b0='PT0250A8HK' where id=6; -update noar tt set v0='KQK1OBS0BCNQA630' where id=6; -update noar ti set v0='KQK1OBS0BCNQA630' where id=6; -update noar tt set b1='76GBXY8UG9VXVDDX5EKK4M' where id=6; -update noar ti set b1='76GBXY8UG9VXVDDX5EKK4M' where id=6; -update noar tt set v0='UXKBIB1BWBEE2VTLNWP4TEX' where id=6; -update noar ti set v0='UXKBIB1BWBEE2VTLNWP4TEX' where id=6; -update noar tt set b2='CZ4M3CIIYMCPTOO06' where id=6; -update noar ti set b2='CZ4M3CIIYMCPTOO06' where id=6; -update noar tt set v0='QAFP51MW' where id=7; -update noar ti set v0='QAFP51MW' where id=7; -update noar tt set b0='828GG2ODI1U' where id=7; -update noar ti set b0='828GG2ODI1U' where id=7; -update noar tt set v0='M2W97A2DI27EZFEA5220TSWGE' where id=7; -update noar ti set v0='M2W97A2DI27EZFEA5220TSWGE' where id=7; -update noar tt set b1='2Q2IAWITM' where id=7; -update noar ti set b1='2Q2IAWITM' where id=7; -update noar tt set v0='K8YU1VEF28VK07LAZSQG5QQLYOU8YI0J' where id=7; -update noar ti set v0='K8YU1VEF28VK07LAZSQG5QQLYOU8YI0J' where id=7; -update noar tt set b2='QS3Q6T' where id=7; -update noar ti set b2='QS3Q6T' where id=7; -update noar tt set v0='65CDRWY8HCF49GDNROB' where id=8; -update noar ti set v0='65CDRWY8HCF49GDNROB' where id=8; -update noar tt set b0='UMYRM4ZVF1O57UTEWBVJ' where id=8; -update noar ti set b0='UMYRM4ZVF1O57UTEWBVJ' where id=8; -update noar tt set v0='SECC406XNGDCQYL' where id=8; -update noar ti set v0='SECC406XNGDCQYL' where id=8; -update noar tt set b1='D391ZS4F9M352RM7LH99MC' where id=8; -update noar ti set b1='D391ZS4F9M352RM7LH99MC' where id=8; -update noar tt set v0='IK46SHTC3T8JM3DJ3' where id=8; -update noar ti set v0='IK46SHTC3T8JM3DJ3' where id=8; -update noar tt set b2='FPRI30GGVK3HKA9AH6OYIKFHPRPQF' where id=8; -update noar ti set b2='FPRI30GGVK3HKA9AH6OYIKFHPRPQF' where id=8; -update noar tt set v0='FP2L49GV21JEOLY3R8' where id=9; -update noar ti set v0='FP2L49GV21JEOLY3R8' where id=9; -update noar tt set b0='1YU0GUNLKUJXXLKX' where id=9; -update noar ti set b0='1YU0GUNLKUJXXLKX' where id=9; -update noar tt set v0='4P4U47' where id=9; -update noar ti set v0='4P4U47' where id=9; -update noar tt set b1='YJNOD22J' where id=9; -update noar ti set b1='YJNOD22J' where id=9; -update noar tt set v0='K0W7B6J3Q82M' where id=9; -update noar ti set v0='K0W7B6J3Q82M' where id=9; -update noar tt set b2='S2V60' where id=9; -update noar ti set b2='S2V60' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -f0 int null, -v0 varchar(32) null, -b0 tinyblob null, -b1 longblob null, -b2 blob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='1K3XH' where id=1; -update noar ti set v0='1K3XH' where id=1; -update noar tt set b0='Q5U7UL4OJZDEQ1UJ4KI' where id=1; -update noar ti set b0='Q5U7UL4OJZDEQ1UJ4KI' where id=1; -update noar tt set v0='GD9SVD3KL9QT6G9DDKFL' where id=1; -update noar ti set v0='GD9SVD3KL9QT6G9DDKFL' where id=1; -update noar tt set b1='AQNDP6H' where id=1; -update noar ti set b1='AQNDP6H' where id=1; -update noar tt set v0='T0MRA5CA30' where id=1; -update noar ti set v0='T0MRA5CA30' where id=1; -update noar tt set b2='NW' where id=1; -update noar ti set b2='NW' where id=1; -update noar tt set v0='EQ2KELGR7HJORF7' where id=2; -update noar ti set v0='EQ2KELGR7HJORF7' where id=2; -update noar tt set b0='O2M1YY' where id=2; -update noar ti set b0='O2M1YY' where id=2; -update noar tt set v0='S60MYWQR1GIB50DV4P6MH' where id=2; -update noar ti set v0='S60MYWQR1GIB50DV4P6MH' where id=2; -update noar tt set b1='CXY746' where id=2; -update noar ti set b1='CXY746' where id=2; -update noar tt set v0='INY09QPW8DOZ3OE6117SAR7P3F7BRZO' where id=2; -update noar ti set v0='INY09QPW8DOZ3OE6117SAR7P3F7BRZO' where id=2; -update noar tt set b2='1JILTTMNZ7HXC' where id=2; -update noar ti set b2='1JILTTMNZ7HXC' where id=2; -update noar tt set v0='UKY0' where id=3; -update noar ti set v0='UKY0' where id=3; -update noar tt set b0='XEZM3L55QWKP1GZGD60OYE2NL0ZRTS' where id=3; -update noar ti set b0='XEZM3L55QWKP1GZGD60OYE2NL0ZRTS' where id=3; -update noar tt set v0='5' where id=3; -update noar ti set v0='5' where id=3; -update noar tt set b1='OPW0WKQKP' where id=3; -update noar ti set b1='OPW0WKQKP' where id=3; -update noar tt set v0='J' where id=3; -update noar ti set v0='J' where id=3; -update noar tt set b2='RDYGAB6NJ3T' where id=3; -update noar ti set b2='RDYGAB6NJ3T' where id=3; -update noar tt set v0='NCRHZZPZA6ROJK8UPE5CR1MSCAHC66WH' where id=4; -update noar ti set v0='NCRHZZPZA6ROJK8UPE5CR1MSCAHC66WH' where id=4; -update noar tt set b0='EZEQ9NGJY' where id=4; -update noar ti set b0='EZEQ9NGJY' where id=4; -update noar tt set v0='CR87QQSP1V8F11S98FN2ZA0FK9BO34D' where id=4; -update noar ti set v0='CR87QQSP1V8F11S98FN2ZA0FK9BO34D' where id=4; -update noar tt set b1='CU8OAFJ0UR8WVPA3KRQ7VBQYCOT' where id=4; -update noar ti set b1='CU8OAFJ0UR8WVPA3KRQ7VBQYCOT' where id=4; -update noar tt set v0='C6SR' where id=4; -update noar ti set v0='C6SR' where id=4; -update noar tt set b2='O4KC2O0Z077GMO' where id=4; -update noar ti set b2='O4KC2O0Z077GMO' where id=4; -update noar tt set v0='WPFSK' where id=5; -update noar ti set v0='WPFSK' where id=5; -update noar tt set b0='AGKZJQAUEWKZN3T' where id=5; -update noar ti set b0='AGKZJQAUEWKZN3T' where id=5; -update noar tt set v0='8TOZML' where id=5; -update noar ti set v0='8TOZML' where id=5; -update noar tt set b1='GXK' where id=5; -update noar ti set b1='GXK' where id=5; -update noar tt set v0='1F2' where id=5; -update noar ti set v0='1F2' where id=5; -update noar tt set b2='WW5K3Y46PTQNZWM4L3LC4S9O' where id=5; -update noar ti set b2='WW5K3Y46PTQNZWM4L3LC4S9O' where id=5; -update noar tt set v0='4R00D4EW2TQELDS0VRM23VBIJ3BG' where id=6; -update noar ti set v0='4R00D4EW2TQELDS0VRM23VBIJ3BG' where id=6; -update noar tt set b0='UXC7ZCMRJV997TH2L' where id=6; -update noar ti set b0='UXC7ZCMRJV997TH2L' where id=6; -update noar tt set v0='A4ZJTONCH8KVRQ5I2OP1J0H0OEG3DHZ1' where id=6; -update noar ti set v0='A4ZJTONCH8KVRQ5I2OP1J0H0OEG3DHZ1' where id=6; -update noar tt set b1='A8TPPHWCFZO9M3OVKU2WSBW' where id=6; -update noar ti set b1='A8TPPHWCFZO9M3OVKU2WSBW' where id=6; -update noar tt set v0='EK' where id=6; -update noar ti set v0='EK' where id=6; -update noar tt set b2='A5C8R19EGHH1EY13X' where id=6; -update noar ti set b2='A5C8R19EGHH1EY13X' where id=6; -update noar tt set v0='84K5KZCH' where id=7; -update noar ti set v0='84K5KZCH' where id=7; -update noar tt set b0='ZRN6I9' where id=7; -update noar ti set b0='ZRN6I9' where id=7; -update noar tt set v0='62C9J9SRW1T5G9' where id=7; -update noar ti set v0='62C9J9SRW1T5G9' where id=7; -update noar tt set b1='C8JZHUY1CSPLFA67W' where id=7; -update noar ti set b1='C8JZHUY1CSPLFA67W' where id=7; -update noar tt set v0='NRV5DNF0P8WVIZGD2FU59' where id=7; -update noar ti set v0='NRV5DNF0P8WVIZGD2FU59' where id=7; -update noar tt set b2='IGQAM71M6XU18' where id=7; -update noar ti set b2='IGQAM71M6XU18' where id=7; -update noar tt set v0='BVW7GMN482797DMHX78' where id=8; -update noar ti set v0='BVW7GMN482797DMHX78' where id=8; -update noar tt set b0='WIYVLKRBP5GOOHQAMHHHRUII' where id=8; -update noar ti set b0='WIYVLKRBP5GOOHQAMHHHRUII' where id=8; -update noar tt set v0='8O8XNMRAAZ554P8WNYXMO' where id=8; -update noar ti set v0='8O8XNMRAAZ554P8WNYXMO' where id=8; -update noar tt set b1='642HII6FZYOKV' where id=8; -update noar ti set b1='642HII6FZYOKV' where id=8; -update noar tt set v0='2KVAEW3HIJZQX' where id=8; -update noar ti set v0='2KVAEW3HIJZQX' where id=8; -update noar tt set b2='JAT4IRM4' where id=8; -update noar ti set b2='JAT4IRM4' where id=8; -update noar tt set v0='VWJMDDHFZV4LLK88' where id=9; -update noar ti set v0='VWJMDDHFZV4LLK88' where id=9; -update noar tt set b0='289MZ3YXSMQ3YCQ7PN' where id=9; -update noar ti set b0='289MZ3YXSMQ3YCQ7PN' where id=9; -update noar tt set v0='INP8LKVJ38CMMVRVVKSZ4XWCAX31P' where id=9; -update noar ti set v0='INP8LKVJ38CMMVRVVKSZ4XWCAX31P' where id=9; -update noar tt set b1='99NJUURHWDZQ1JH' where id=9; -update noar ti set b1='99NJUURHWDZQ1JH' where id=9; -update noar tt set v0='YOE6EQOHL92NVVYUHJ15O' where id=9; -update noar ti set v0='YOE6EQOHL92NVVYUHJ15O' where id=9; -update noar tt set b2='CF9RUGIO' where id=9; -update noar ti set b2='CF9RUGIO' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -f0 int null, -v0 varchar(256) null, -b0 tinyblob null, -b1 longblob null, -b2 blob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='SLN938UF43CAA3ZH69NA16FWNMTF' where id=1; -update noar ti set v0='SLN938UF43CAA3ZH69NA16FWNMTF' where id=1; -update noar tt set b0='89O4V2FOJHTDSYI5T1C3JPSMO8J0RG4' where id=1; -update noar ti set b0='89O4V2FOJHTDSYI5T1C3JPSMO8J0RG4' where id=1; -update noar tt set v0='F9BLE' where id=1; -update noar ti set v0='F9BLE' where id=1; -update noar tt set b1='B6OJ4H6J7SFX6Q4A' where id=1; -update noar ti set b1='B6OJ4H6J7SFX6Q4A' where id=1; -update noar tt set v0='C0M2LB' where id=1; -update noar ti set v0='C0M2LB' where id=1; -update noar tt set b2='0ZREMSTZ3GWTYEY1NMT9ALSVC2T5' where id=1; -update noar ti set b2='0ZREMSTZ3GWTYEY1NMT9ALSVC2T5' where id=1; -update noar tt set v0='HOO0V05EYENEV677X9LWO88' where id=2; -update noar ti set v0='HOO0V05EYENEV677X9LWO88' where id=2; -update noar tt set b0='LXB94SJFEN87YRQGXL3BIC' where id=2; -update noar ti set b0='LXB94SJFEN87YRQGXL3BIC' where id=2; -update noar tt set v0='I4YRZD8Y2SIF66SDBFPKLB1OH4EW' where id=2; -update noar ti set v0='I4YRZD8Y2SIF66SDBFPKLB1OH4EW' where id=2; -update noar tt set b1='NC9BWOVFHD3E' where id=2; -update noar ti set b1='NC9BWOVFHD3E' where id=2; -update noar tt set v0='9XFD6MZLSP3JZOQCDKB0C8YG9H' where id=2; -update noar ti set v0='9XFD6MZLSP3JZOQCDKB0C8YG9H' where id=2; -update noar tt set b2='TOMK' where id=2; -update noar ti set b2='TOMK' where id=2; -update noar tt set v0='R0BK3AC03U8R2FYG7TLJMWG5SMMUM' where id=3; -update noar ti set v0='R0BK3AC03U8R2FYG7TLJMWG5SMMUM' where id=3; -update noar tt set b0='L78JB90Q' where id=3; -update noar ti set b0='L78JB90Q' where id=3; -update noar tt set v0='72SKBQ1KFHQUZEYOLU0' where id=3; -update noar ti set v0='72SKBQ1KFHQUZEYOLU0' where id=3; -update noar tt set b1='1X95L93FRD2BOMW1SKS' where id=3; -update noar ti set b1='1X95L93FRD2BOMW1SKS' where id=3; -update noar tt set v0='1LQ7M5PPXZQQYN1P5SMU6N8UN4' where id=3; -update noar ti set v0='1LQ7M5PPXZQQYN1P5SMU6N8UN4' where id=3; -update noar tt set b2='4A6F5WYDIL3Q220V5HI98G006MLK4IT' where id=3; -update noar ti set b2='4A6F5WYDIL3Q220V5HI98G006MLK4IT' where id=3; -update noar tt set v0='LIB92L6Z1RI8Y' where id=4; -update noar ti set v0='LIB92L6Z1RI8Y' where id=4; -update noar tt set b0='WEZM97NCABEO5SQERN' where id=4; -update noar ti set b0='WEZM97NCABEO5SQERN' where id=4; -update noar tt set v0='VJAHFANOBTHQ5RGQCSM49DNE7NOFXQ7' where id=4; -update noar ti set v0='VJAHFANOBTHQ5RGQCSM49DNE7NOFXQ7' where id=4; -update noar tt set b1='L2' where id=4; -update noar ti set b1='L2' where id=4; -update noar tt set v0='MVZ0O8' where id=4; -update noar ti set v0='MVZ0O8' where id=4; -update noar tt set b2='CRR6TN3HD8H9EKC1' where id=4; -update noar ti set b2='CRR6TN3HD8H9EKC1' where id=4; -update noar tt set v0='KQJ8A6MN6LNI0U42OXS71WVB9B520FY' where id=5; -update noar ti set v0='KQJ8A6MN6LNI0U42OXS71WVB9B520FY' where id=5; -update noar tt set b0='IDA02ZVBTMEBLLIQDE' where id=5; -update noar ti set b0='IDA02ZVBTMEBLLIQDE' where id=5; -update noar tt set v0='SWXDDGE00EXOIIWW' where id=5; -update noar ti set v0='SWXDDGE00EXOIIWW' where id=5; -update noar tt set b1='9ERJ55NSCT314' where id=5; -update noar ti set b1='9ERJ55NSCT314' where id=5; -update noar tt set v0='3TJ2CZNWZRZ' where id=5; -update noar ti set v0='3TJ2CZNWZRZ' where id=5; -update noar tt set b2='YG17' where id=5; -update noar ti set b2='YG17' where id=5; -update noar tt set v0='4SC4CW' where id=6; -update noar ti set v0='4SC4CW' where id=6; -update noar tt set b0='4V65D577IAX81KHQVECWP' where id=6; -update noar ti set b0='4V65D577IAX81KHQVECWP' where id=6; -update noar tt set v0='7Q9764PH4T3H38WB' where id=6; -update noar ti set v0='7Q9764PH4T3H38WB' where id=6; -update noar tt set b1='MBLDT' where id=6; -update noar ti set b1='MBLDT' where id=6; -update noar tt set v0='UK1QCP4I60TX2NAI6L8HLNB50EBT' where id=6; -update noar ti set v0='UK1QCP4I60TX2NAI6L8HLNB50EBT' where id=6; -update noar tt set b2='GWZ39V3CDED0ITA' where id=6; -update noar ti set b2='GWZ39V3CDED0ITA' where id=6; -update noar tt set v0='45JYABDDR9QQK7T' where id=7; -update noar ti set v0='45JYABDDR9QQK7T' where id=7; -update noar tt set b0='DTB3RO1ZFXGIJB' where id=7; -update noar ti set b0='DTB3RO1ZFXGIJB' where id=7; -update noar tt set v0='LZPHTCDNRHPQ8EM5R3OH8QCR3' where id=7; -update noar ti set v0='LZPHTCDNRHPQ8EM5R3OH8QCR3' where id=7; -update noar tt set b1='XH2FAF5QL9BT66CZLKHW97F4K92LP' where id=7; -update noar ti set b1='XH2FAF5QL9BT66CZLKHW97F4K92LP' where id=7; -update noar tt set v0='RG6991DPUJN9ZG3SSWTAXXXLDZ3G1ET' where id=7; -update noar ti set v0='RG6991DPUJN9ZG3SSWTAXXXLDZ3G1ET' where id=7; -update noar tt set b2='JNQEPXX' where id=7; -update noar ti set b2='JNQEPXX' where id=7; -update noar tt set v0='L2HHZ16U76YLMUHI58R5CMMV828' where id=8; -update noar ti set v0='L2HHZ16U76YLMUHI58R5CMMV828' where id=8; -update noar tt set b0='M0KKGLB80XBHUPNX5HS2F8VNO4UE31' where id=8; -update noar ti set b0='M0KKGLB80XBHUPNX5HS2F8VNO4UE31' where id=8; -update noar tt set v0='BVCIG' where id=8; -update noar ti set v0='BVCIG' where id=8; -update noar tt set b1='R' where id=8; -update noar ti set b1='R' where id=8; -update noar tt set v0='BKY3QTZ3QT8Z83YNQ134D' where id=8; -update noar ti set v0='BKY3QTZ3QT8Z83YNQ134D' where id=8; -update noar tt set b2='0E6WF2PBP966OKFLQIC64L5' where id=8; -update noar ti set b2='0E6WF2PBP966OKFLQIC64L5' where id=8; -update noar tt set v0='LTGS1HS06SBG4RUPSL' where id=9; -update noar ti set v0='LTGS1HS06SBG4RUPSL' where id=9; -update noar tt set b0='600YNT1CG9I8II1Q484T7S20' where id=9; -update noar ti set b0='600YNT1CG9I8II1Q484T7S20' where id=9; -update noar tt set v0='FBJ36E57STTYLNMWY7MV7VOEN' where id=9; -update noar ti set v0='FBJ36E57STTYLNMWY7MV7VOEN' where id=9; -update noar tt set b1='8EKRQ6Q7ZVDO44F21D1' where id=9; -update noar ti set b1='8EKRQ6Q7ZVDO44F21D1' where id=9; -update noar tt set v0='U808FK96FC96ZU504UG2FTBRLY3X' where id=9; -update noar ti set v0='U808FK96FC96ZU504UG2FTBRLY3X' where id=9; -update noar tt set b2='K52LZKUW3JEC6NJJPGBL4S2O5TELU81' where id=9; -update noar ti set b2='K52LZKUW3JEC6NJJPGBL4S2O5TELU81' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -f0 int not null, -v0 varchar(32) not null, -b0 tinyblob not null, -b1 longblob not null, -b2 blob not null -) engine=tokudb; -insert into tt values (1,0,'','','',''); -insert into tt values (2,0,'','','',''); -insert into tt values (3,0,'','','',''); -insert into tt values (4,0,'','','',''); -insert into tt values (5,0,'','','',''); -insert into tt values (6,0,'','','',''); -insert into tt values (7,0,'','','',''); -insert into tt values (8,0,'','','',''); -insert into tt values (9,0,'','','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='Z' where id=1; -update noar ti set v0='Z' where id=1; -update noar tt set b0='MWC0GOHOIZ2KSDX44PMNF' where id=1; -update noar ti set b0='MWC0GOHOIZ2KSDX44PMNF' where id=1; -update noar tt set v0='8V3JEWQ4P8KEZDX7K3S1MW8W4LXS' where id=1; -update noar ti set v0='8V3JEWQ4P8KEZDX7K3S1MW8W4LXS' where id=1; -update noar tt set b1='MTXKVRB8DQGQ5C9BO' where id=1; -update noar ti set b1='MTXKVRB8DQGQ5C9BO' where id=1; -update noar tt set v0='HSTZL' where id=1; -update noar ti set v0='HSTZL' where id=1; -update noar tt set b2='H' where id=1; -update noar ti set b2='H' where id=1; -update noar tt set v0='EZ4H0M4CW2S8ONRN7VVN6XJOUJ3Y6' where id=2; -update noar ti set v0='EZ4H0M4CW2S8ONRN7VVN6XJOUJ3Y6' where id=2; -update noar tt set b0='MHDZET29WB0ZCZG' where id=2; -update noar ti set b0='MHDZET29WB0ZCZG' where id=2; -update noar tt set v0='MR' where id=2; -update noar ti set v0='MR' where id=2; -update noar tt set b1='4L92MFYN5WB07LL0RV927K3RWYZV' where id=2; -update noar ti set b1='4L92MFYN5WB07LL0RV927K3RWYZV' where id=2; -update noar tt set v0='55GKF9GTDJUGGS9496' where id=2; -update noar ti set v0='55GKF9GTDJUGGS9496' where id=2; -update noar tt set b2='5TV8A' where id=2; -update noar ti set b2='5TV8A' where id=2; -update noar tt set v0='MIRICDCTY8J5E8' where id=3; -update noar ti set v0='MIRICDCTY8J5E8' where id=3; -update noar tt set b0='V6' where id=3; -update noar ti set b0='V6' where id=3; -update noar tt set v0='JWCA09Y6L6MV38EZVG9RP9UOMX' where id=3; -update noar ti set v0='JWCA09Y6L6MV38EZVG9RP9UOMX' where id=3; -update noar tt set b1='UP8QQ41AK4KLP9WH5B2E04LFRC5' where id=3; -update noar ti set b1='UP8QQ41AK4KLP9WH5B2E04LFRC5' where id=3; -update noar tt set v0='V68' where id=3; -update noar ti set v0='V68' where id=3; -update noar tt set b2='TDZDTU8YFECPDPVL52K5' where id=3; -update noar ti set b2='TDZDTU8YFECPDPVL52K5' where id=3; -update noar tt set v0='EG3U3V50H965OMD9QUNDBE1Y9KZXL9R' where id=4; -update noar ti set v0='EG3U3V50H965OMD9QUNDBE1Y9KZXL9R' where id=4; -update noar tt set b0='SIVPZXBFQOEL' where id=4; -update noar ti set b0='SIVPZXBFQOEL' where id=4; -update noar tt set v0='L88CJ2NJ85SU' where id=4; -update noar ti set v0='L88CJ2NJ85SU' where id=4; -update noar tt set b1='81V74GX0AT66SVTWGCCL' where id=4; -update noar ti set b1='81V74GX0AT66SVTWGCCL' where id=4; -update noar tt set v0='UPSVGRDDU9SRJZ01FRLATCALF1P2' where id=4; -update noar ti set v0='UPSVGRDDU9SRJZ01FRLATCALF1P2' where id=4; -update noar tt set b2='ORFOLCIW' where id=4; -update noar ti set b2='ORFOLCIW' where id=4; -update noar tt set v0='8X' where id=5; -update noar ti set v0='8X' where id=5; -update noar tt set b0='F1X7' where id=5; -update noar ti set b0='F1X7' where id=5; -update noar tt set v0='ALS6T3RQ3A5CG0ZI74I4C4J' where id=5; -update noar ti set v0='ALS6T3RQ3A5CG0ZI74I4C4J' where id=5; -update noar tt set b1='5A1U3PEWESFRAVHPBA' where id=5; -update noar ti set b1='5A1U3PEWESFRAVHPBA' where id=5; -update noar tt set v0='LGY1R7' where id=5; -update noar ti set v0='LGY1R7' where id=5; -update noar tt set b2='CSFWX30MJ' where id=5; -update noar ti set b2='CSFWX30MJ' where id=5; -update noar tt set v0='H2OWF5OLGG6XLG7R8UQRTF' where id=6; -update noar ti set v0='H2OWF5OLGG6XLG7R8UQRTF' where id=6; -update noar tt set b0='W839EDPSSNWA' where id=6; -update noar ti set b0='W839EDPSSNWA' where id=6; -update noar tt set v0='D80GYNUPX2GHWFLLE' where id=6; -update noar ti set v0='D80GYNUPX2GHWFLLE' where id=6; -update noar tt set b1='LY9THUCD8X6IS53HAGJE6B' where id=6; -update noar ti set b1='LY9THUCD8X6IS53HAGJE6B' where id=6; -update noar tt set v0='4YU' where id=6; -update noar ti set v0='4YU' where id=6; -update noar tt set b2='XSRFHTT' where id=6; -update noar ti set b2='XSRFHTT' where id=6; -update noar tt set v0='UX' where id=7; -update noar ti set v0='UX' where id=7; -update noar tt set b0='ACXLW8SH2MVIS7XSVQ' where id=7; -update noar ti set b0='ACXLW8SH2MVIS7XSVQ' where id=7; -update noar tt set v0='IRNCEZSXKV4WVR3CKP3654W2RCNJ5U' where id=7; -update noar ti set v0='IRNCEZSXKV4WVR3CKP3654W2RCNJ5U' where id=7; -update noar tt set b1='88SC6AJQG57A' where id=7; -update noar ti set b1='88SC6AJQG57A' where id=7; -update noar tt set v0='UY4QV4LL491RGY' where id=7; -update noar ti set v0='UY4QV4LL491RGY' where id=7; -update noar tt set b2='I17JTP4YDM56EFP3WJ1BELH053' where id=7; -update noar ti set b2='I17JTP4YDM56EFP3WJ1BELH053' where id=7; -update noar tt set v0='JQBBY5MLRO8HKVADD5LEX368V6NXO2F' where id=8; -update noar ti set v0='JQBBY5MLRO8HKVADD5LEX368V6NXO2F' where id=8; -update noar tt set b0='KZA5M8WAGWY' where id=8; -update noar ti set b0='KZA5M8WAGWY' where id=8; -update noar tt set v0='V6' where id=8; -update noar ti set v0='V6' where id=8; -update noar tt set b1='3PXA0SJ2PYYR9OVQNCZ51Q2XMI6AWXNU' where id=8; -update noar ti set b1='3PXA0SJ2PYYR9OVQNCZ51Q2XMI6AWXNU' where id=8; -update noar tt set v0='C0OQTZ7PPS1JGK5YSVU7OZ84AJ5X' where id=8; -update noar ti set v0='C0OQTZ7PPS1JGK5YSVU7OZ84AJ5X' where id=8; -update noar tt set b2='ZHX07RQ25QI7RO4PUS0V8M8T47X3XOO' where id=8; -update noar ti set b2='ZHX07RQ25QI7RO4PUS0V8M8T47X3XOO' where id=8; -update noar tt set v0='3ET1ZHMW09EJ' where id=9; -update noar ti set v0='3ET1ZHMW09EJ' where id=9; -update noar tt set b0='NKXSINV04QK95AVATWGARD' where id=9; -update noar ti set b0='NKXSINV04QK95AVATWGARD' where id=9; -update noar tt set v0='LXM35YTGNEKVHK65' where id=9; -update noar ti set v0='LXM35YTGNEKVHK65' where id=9; -update noar tt set b1='TQ9JDEX54TAHD2' where id=9; -update noar ti set b1='TQ9JDEX54TAHD2' where id=9; -update noar tt set v0='VDV' where id=9; -update noar ti set v0='VDV' where id=9; -update noar tt set b2='5' where id=9; -update noar ti set b2='5' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -f0 int not null, -v0 varchar(256) not null, -b0 tinyblob not null, -b1 longblob not null, -b2 blob not null -) engine=tokudb; -insert into tt values (1,0,'','','',''); -insert into tt values (2,0,'','','',''); -insert into tt values (3,0,'','','',''); -insert into tt values (4,0,'','','',''); -insert into tt values (5,0,'','','',''); -insert into tt values (6,0,'','','',''); -insert into tt values (7,0,'','','',''); -insert into tt values (8,0,'','','',''); -insert into tt values (9,0,'','','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='Q8IZKFPYW8BP8Q9Y7II8PRW1OWMR' where id=1; -update noar ti set v0='Q8IZKFPYW8BP8Q9Y7II8PRW1OWMR' where id=1; -update noar tt set b0='97DW2HLBA4O52WW5WK55LW524SRIUCF' where id=1; -update noar ti set b0='97DW2HLBA4O52WW5WK55LW524SRIUCF' where id=1; -update noar tt set v0='AXARTAO2RYJ40' where id=1; -update noar ti set v0='AXARTAO2RYJ40' where id=1; -update noar tt set b1='C13RQ' where id=1; -update noar ti set b1='C13RQ' where id=1; -update noar tt set v0='YJTXBC5B635DO8VPCTAC' where id=1; -update noar ti set v0='YJTXBC5B635DO8VPCTAC' where id=1; -update noar tt set b2='W5QZGI4LZYDBY8N' where id=1; -update noar ti set b2='W5QZGI4LZYDBY8N' where id=1; -update noar tt set v0='X3' where id=2; -update noar ti set v0='X3' where id=2; -update noar tt set b0='829' where id=2; -update noar ti set b0='829' where id=2; -update noar tt set v0='RPS6P' where id=2; -update noar ti set v0='RPS6P' where id=2; -update noar tt set b1='8HY84DB' where id=2; -update noar ti set b1='8HY84DB' where id=2; -update noar tt set v0='J7VXIEA6J5SYCEHLK1Y1W5BIQNCW' where id=2; -update noar ti set v0='J7VXIEA6J5SYCEHLK1Y1W5BIQNCW' where id=2; -update noar tt set b2='0RX3S1RMN648ADDVP3C2' where id=2; -update noar ti set b2='0RX3S1RMN648ADDVP3C2' where id=2; -update noar tt set v0='SC000MTAOA4Q6WIFCK9R80UHKC77HJ' where id=3; -update noar ti set v0='SC000MTAOA4Q6WIFCK9R80UHKC77HJ' where id=3; -update noar tt set b0='5T4' where id=3; -update noar ti set b0='5T4' where id=3; -update noar tt set v0='P9SZCCJ73N54DOSPBOM' where id=3; -update noar ti set v0='P9SZCCJ73N54DOSPBOM' where id=3; -update noar tt set b1='K1AMYTXXLXKV8FBPCWWYXEN4OP' where id=3; -update noar ti set b1='K1AMYTXXLXKV8FBPCWWYXEN4OP' where id=3; -update noar tt set v0='TFTNEC8BTU12BVLOERWD0Q7R3RCY' where id=3; -update noar ti set v0='TFTNEC8BTU12BVLOERWD0Q7R3RCY' where id=3; -update noar tt set b2='ZVCI1F43D0' where id=3; -update noar ti set b2='ZVCI1F43D0' where id=3; -update noar tt set v0='INJX9LLZMYWDTISDYW3J7' where id=4; -update noar ti set v0='INJX9LLZMYWDTISDYW3J7' where id=4; -update noar tt set b0='JCV2DU400JNN3SF2IZS00CAX59SCM' where id=4; -update noar ti set b0='JCV2DU400JNN3SF2IZS00CAX59SCM' where id=4; -update noar tt set v0='IRO' where id=4; -update noar ti set v0='IRO' where id=4; -update noar tt set b1='RD' where id=4; -update noar ti set b1='RD' where id=4; -update noar tt set v0='FORC4GNQDHSLW89H0IU08KCO' where id=4; -update noar ti set v0='FORC4GNQDHSLW89H0IU08KCO' where id=4; -update noar tt set b2='5O0P5YAAUE7O8SOOB7DH' where id=4; -update noar ti set b2='5O0P5YAAUE7O8SOOB7DH' where id=4; -update noar tt set v0='KRNKVK767N6I9WDC3T' where id=5; -update noar ti set v0='KRNKVK767N6I9WDC3T' where id=5; -update noar tt set b0='GGARGL' where id=5; -update noar ti set b0='GGARGL' where id=5; -update noar tt set v0='SLAXT7PPBMGGM' where id=5; -update noar ti set v0='SLAXT7PPBMGGM' where id=5; -update noar tt set b1='0H21PROOMP' where id=5; -update noar ti set b1='0H21PROOMP' where id=5; -update noar tt set v0='71BHTI3ZOKO' where id=5; -update noar ti set v0='71BHTI3ZOKO' where id=5; -update noar tt set b2='QUW8ASXOBC6W0QLOQKZP' where id=5; -update noar ti set b2='QUW8ASXOBC6W0QLOQKZP' where id=5; -update noar tt set v0='STTEY' where id=6; -update noar ti set v0='STTEY' where id=6; -update noar tt set b0='YFTA6WN5EFU214PUXNNKYL9J1S' where id=6; -update noar ti set b0='YFTA6WN5EFU214PUXNNKYL9J1S' where id=6; -update noar tt set v0='CLFCX08EPBKVI1XLY6QOE0G5PDWZZT5O' where id=6; -update noar ti set v0='CLFCX08EPBKVI1XLY6QOE0G5PDWZZT5O' where id=6; -update noar tt set b1='A8R8Z2XSAMS48' where id=6; -update noar ti set b1='A8R8Z2XSAMS48' where id=6; -update noar tt set v0='5R984I49V63I80N8FUNAXIDLWJRGE7H' where id=6; -update noar ti set v0='5R984I49V63I80N8FUNAXIDLWJRGE7H' where id=6; -update noar tt set b2='U4RBM4FEJ4B2H1XKRNFBDBTDP6WDP' where id=6; -update noar ti set b2='U4RBM4FEJ4B2H1XKRNFBDBTDP6WDP' where id=6; -update noar tt set v0='0WIKF1SKKAEZ1PM395GVMBMOIKEWJAU3' where id=7; -update noar ti set v0='0WIKF1SKKAEZ1PM395GVMBMOIKEWJAU3' where id=7; -update noar tt set b0='UKP176O557YP6KBEMYIK9POX' where id=7; -update noar ti set b0='UKP176O557YP6KBEMYIK9POX' where id=7; -update noar tt set v0='ASAQVXKLI' where id=7; -update noar ti set v0='ASAQVXKLI' where id=7; -update noar tt set b1='C4WAEUP3M3P8LF4Z08QIUN2ED3YVKP' where id=7; -update noar ti set b1='C4WAEUP3M3P8LF4Z08QIUN2ED3YVKP' where id=7; -update noar tt set v0='ERBWVMV8PZKBNRU' where id=7; -update noar ti set v0='ERBWVMV8PZKBNRU' where id=7; -update noar tt set b2='ICYRTU273A6QYMF1ANM' where id=7; -update noar ti set b2='ICYRTU273A6QYMF1ANM' where id=7; -update noar tt set v0='H62G8Z2D41MNUW34Y0K4' where id=8; -update noar ti set v0='H62G8Z2D41MNUW34Y0K4' where id=8; -update noar tt set b0='RCCGMG7C660YW3YM' where id=8; -update noar ti set b0='RCCGMG7C660YW3YM' where id=8; -update noar tt set v0='NVGVE9OMW4' where id=8; -update noar ti set v0='NVGVE9OMW4' where id=8; -update noar tt set b1='WFEMB92JM0PGU11NWVP911JLL' where id=8; -update noar ti set b1='WFEMB92JM0PGU11NWVP911JLL' where id=8; -update noar tt set v0='EUH4PS' where id=8; -update noar ti set v0='EUH4PS' where id=8; -update noar tt set b2='L0KPVX9TNA8LNRFEPCDOE2' where id=8; -update noar ti set b2='L0KPVX9TNA8LNRFEPCDOE2' where id=8; -update noar tt set v0='ARUSH6QG7Q4F5CHMULLPGU4XYBYHFUUF' where id=9; -update noar ti set v0='ARUSH6QG7Q4F5CHMULLPGU4XYBYHFUUF' where id=9; -update noar tt set b0='CSUNA2WONWB1HI71AY9XIXQ' where id=9; -update noar ti set b0='CSUNA2WONWB1HI71AY9XIXQ' where id=9; -update noar tt set v0='HXIBODJW23HMDFPJXK4LV6N9H1P0VT5' where id=9; -update noar ti set v0='HXIBODJW23HMDFPJXK4LV6N9H1P0VT5' where id=9; -update noar tt set b1='ALFBWLRFVLG' where id=9; -update noar ti set b1='ALFBWLRFVLG' where id=9; -update noar tt set v0='NE38IOVOVJLOFBZVV09VZ' where id=9; -update noar ti set v0='NE38IOVOVJLOFBZVV09VZ' where id=9; -update noar tt set b2='7C4PRT4R1A8769FV5RS0' where id=9; -update noar ti set b2='7C4PRT4R1A8769FV5RS0' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -f0 int null, -v0 varchar(32) null, -b0 tinyblob null, -b1 longblob null, -b2 mediumblob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='Z4OWMSJVX9KRJJLO9' where id=1; -update noar ti set v0='Z4OWMSJVX9KRJJLO9' where id=1; -update noar tt set b0='OXZ9F50W0SN' where id=1; -update noar ti set b0='OXZ9F50W0SN' where id=1; -update noar tt set v0='B19NDVZGJ9MFH' where id=1; -update noar ti set v0='B19NDVZGJ9MFH' where id=1; -update noar tt set b1='A8UHWDIG' where id=1; -update noar ti set b1='A8UHWDIG' where id=1; -update noar tt set v0='4GMZUQ5XGOXH2SU' where id=1; -update noar ti set v0='4GMZUQ5XGOXH2SU' where id=1; -update noar tt set b2='4LN8PYCOB' where id=1; -update noar ti set b2='4LN8PYCOB' where id=1; -update noar tt set v0='0E3Z4OUAWMEVB88II4G3XIH' where id=2; -update noar ti set v0='0E3Z4OUAWMEVB88II4G3XIH' where id=2; -update noar tt set b0='U7KMZF23WVFEPDKA16VHEB9Z' where id=2; -update noar ti set b0='U7KMZF23WVFEPDKA16VHEB9Z' where id=2; -update noar tt set v0='2LH5OJ9O8ZM9O512DKJ0' where id=2; -update noar ti set v0='2LH5OJ9O8ZM9O512DKJ0' where id=2; -update noar tt set b1='HDIG0' where id=2; -update noar ti set b1='HDIG0' where id=2; -update noar tt set v0='SA8Q828YDWOXRGR' where id=2; -update noar ti set v0='SA8Q828YDWOXRGR' where id=2; -update noar tt set b2='U' where id=2; -update noar ti set b2='U' where id=2; -update noar tt set v0='2XV3IJQFPB6U6O00HU66HH' where id=3; -update noar ti set v0='2XV3IJQFPB6U6O00HU66HH' where id=3; -update noar tt set b0='LXV5SYE119AF3VJJV29' where id=3; -update noar ti set b0='LXV5SYE119AF3VJJV29' where id=3; -update noar tt set v0='Y1BSH7OL6JF0GK3DW0SCCCE3CVL' where id=3; -update noar ti set v0='Y1BSH7OL6JF0GK3DW0SCCCE3CVL' where id=3; -update noar tt set b1='PFW1HS5706UVI42' where id=3; -update noar ti set b1='PFW1HS5706UVI42' where id=3; -update noar tt set v0='RW5' where id=3; -update noar ti set v0='RW5' where id=3; -update noar tt set b2='XFVWGA4PZVGGTZDZZQBK8FNIF5VELKTY' where id=3; -update noar ti set b2='XFVWGA4PZVGGTZDZZQBK8FNIF5VELKTY' where id=3; -update noar tt set v0='UQF' where id=4; -update noar ti set v0='UQF' where id=4; -update noar tt set b0='B88LE1L5IUOB0IMB' where id=4; -update noar ti set b0='B88LE1L5IUOB0IMB' where id=4; -update noar tt set v0='PI7RHD03X9QXWBE3B3YCBH' where id=4; -update noar ti set v0='PI7RHD03X9QXWBE3B3YCBH' where id=4; -update noar tt set b1='LRALB8FRE8LH84YTS2UW61' where id=4; -update noar ti set b1='LRALB8FRE8LH84YTS2UW61' where id=4; -update noar tt set v0='J28U8MKQPMFJM51FUR4T71VX5DJ' where id=4; -update noar ti set v0='J28U8MKQPMFJM51FUR4T71VX5DJ' where id=4; -update noar tt set b2='TU7OQK63' where id=4; -update noar ti set b2='TU7OQK63' where id=4; -update noar tt set v0='GM' where id=5; -update noar ti set v0='GM' where id=5; -update noar tt set b0='YX10VFTH4C' where id=5; -update noar ti set b0='YX10VFTH4C' where id=5; -update noar tt set v0='870' where id=5; -update noar ti set v0='870' where id=5; -update noar tt set b1='T0P40G' where id=5; -update noar ti set b1='T0P40G' where id=5; -update noar tt set v0='A5PB4RCW1GD0YN1VSC3BSP8APEIK' where id=5; -update noar ti set v0='A5PB4RCW1GD0YN1VSC3BSP8APEIK' where id=5; -update noar tt set b2='1CT58EU6E6J2DSSQ2' where id=5; -update noar ti set b2='1CT58EU6E6J2DSSQ2' where id=5; -update noar tt set v0='S' where id=6; -update noar ti set v0='S' where id=6; -update noar tt set b0='WYOC32VVE80T6KL5L53GXVLUP48' where id=6; -update noar ti set b0='WYOC32VVE80T6KL5L53GXVLUP48' where id=6; -update noar tt set v0='LR7BOL' where id=6; -update noar ti set v0='LR7BOL' where id=6; -update noar tt set b1='GOUEP9F' where id=6; -update noar ti set b1='GOUEP9F' where id=6; -update noar tt set v0='120MD4F' where id=6; -update noar ti set v0='120MD4F' where id=6; -update noar tt set b2='MRULR4Z133' where id=6; -update noar ti set b2='MRULR4Z133' where id=6; -update noar tt set v0='MNPVYRN0W7S7M0K' where id=7; -update noar ti set v0='MNPVYRN0W7S7M0K' where id=7; -update noar tt set b0='978O6F8PYYAZ5HKNCKQ2YEHBNF6SX' where id=7; -update noar ti set b0='978O6F8PYYAZ5HKNCKQ2YEHBNF6SX' where id=7; -update noar tt set v0='8TEAZN78DE2445UB0FRSE8FPXHM' where id=7; -update noar ti set v0='8TEAZN78DE2445UB0FRSE8FPXHM' where id=7; -update noar tt set b1='6Y8ZKJU3CUA4APVY' where id=7; -update noar ti set b1='6Y8ZKJU3CUA4APVY' where id=7; -update noar tt set v0='78RH586WLY' where id=7; -update noar ti set v0='78RH586WLY' where id=7; -update noar tt set b2='Z0' where id=7; -update noar ti set b2='Z0' where id=7; -update noar tt set v0='7QA3MTJ7B' where id=8; -update noar ti set v0='7QA3MTJ7B' where id=8; -update noar tt set b0='C53LS0W4' where id=8; -update noar ti set b0='C53LS0W4' where id=8; -update noar tt set v0='Z' where id=8; -update noar ti set v0='Z' where id=8; -update noar tt set b1='5C5HZF9AMURYW8860MKXMXLJ1D4' where id=8; -update noar ti set b1='5C5HZF9AMURYW8860MKXMXLJ1D4' where id=8; -update noar tt set v0='2OK6C72SA49D2956Y28FXO6JW57Y5RM6' where id=8; -update noar ti set v0='2OK6C72SA49D2956Y28FXO6JW57Y5RM6' where id=8; -update noar tt set b2='L2' where id=8; -update noar ti set b2='L2' where id=8; -update noar tt set v0='OR0AX8CR32A47VCFYP35F569G7XPH' where id=9; -update noar ti set v0='OR0AX8CR32A47VCFYP35F569G7XPH' where id=9; -update noar tt set b0='DJ66RI8L' where id=9; -update noar ti set b0='DJ66RI8L' where id=9; -update noar tt set v0='WZNUXG82TH5JXKMK1T5GXQT93F6NEA6C' where id=9; -update noar ti set v0='WZNUXG82TH5JXKMK1T5GXQT93F6NEA6C' where id=9; -update noar tt set b1='V9HDF' where id=9; -update noar ti set b1='V9HDF' where id=9; -update noar tt set v0='C1OBESVQ7Z16P1RSVWE5HVPCCR' where id=9; -update noar ti set v0='C1OBESVQ7Z16P1RSVWE5HVPCCR' where id=9; -update noar tt set b2='9LY3OTQNKWO6ZO5V2R6B7TY' where id=9; -update noar ti set b2='9LY3OTQNKWO6ZO5V2R6B7TY' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -f0 int null, -v0 varchar(256) null, -b0 tinyblob null, -b1 longblob null, -b2 mediumblob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='PHR5V7JY1WU073QOJIB56S73IF' where id=1; -update noar ti set v0='PHR5V7JY1WU073QOJIB56S73IF' where id=1; -update noar tt set b0='YDPEE02N29K5MWCWGYB1BTPW' where id=1; -update noar ti set b0='YDPEE02N29K5MWCWGYB1BTPW' where id=1; -update noar tt set v0='N6B' where id=1; -update noar ti set v0='N6B' where id=1; -update noar tt set b1='ZT2GN1XWKX76P886YGOBEG' where id=1; -update noar ti set b1='ZT2GN1XWKX76P886YGOBEG' where id=1; -update noar tt set v0='5J9' where id=1; -update noar ti set v0='5J9' where id=1; -update noar tt set b2='WIW2SI8KC14TTO8RMIR4V92WX4' where id=1; -update noar ti set b2='WIW2SI8KC14TTO8RMIR4V92WX4' where id=1; -update noar tt set v0='PE0MBBHL7MLCEJRXN7R3UJ' where id=2; -update noar ti set v0='PE0MBBHL7MLCEJRXN7R3UJ' where id=2; -update noar tt set b0='R2DC21AAZ6N9ALWARJP1QTNGML1WD' where id=2; -update noar ti set b0='R2DC21AAZ6N9ALWARJP1QTNGML1WD' where id=2; -update noar tt set v0='3WYBJXG52KK58V2BP' where id=2; -update noar ti set v0='3WYBJXG52KK58V2BP' where id=2; -update noar tt set b1='JDG' where id=2; -update noar ti set b1='JDG' where id=2; -update noar tt set v0='I210H2HYGTGKCL' where id=2; -update noar ti set v0='I210H2HYGTGKCL' where id=2; -update noar tt set b2='R1V9KA520TI2M4B' where id=2; -update noar ti set b2='R1V9KA520TI2M4B' where id=2; -update noar tt set v0='7P935LES9682SG' where id=3; -update noar ti set v0='7P935LES9682SG' where id=3; -update noar tt set b0='IWKWJE4' where id=3; -update noar ti set b0='IWKWJE4' where id=3; -update noar tt set v0='VUYA3' where id=3; -update noar ti set v0='VUYA3' where id=3; -update noar tt set b1='VJFQM' where id=3; -update noar ti set b1='VJFQM' where id=3; -update noar tt set v0='96NBM9QT1' where id=3; -update noar ti set v0='96NBM9QT1' where id=3; -update noar tt set b2='SZU' where id=3; -update noar ti set b2='SZU' where id=3; -update noar tt set v0='T9B8YK9CJ7XBG7G6RR2CF4' where id=4; -update noar ti set v0='T9B8YK9CJ7XBG7G6RR2CF4' where id=4; -update noar tt set b0='4QCRVLMJ9IJS50BTP' where id=4; -update noar ti set b0='4QCRVLMJ9IJS50BTP' where id=4; -update noar tt set v0='D96S383WHP6U6PK' where id=4; -update noar ti set v0='D96S383WHP6U6PK' where id=4; -update noar tt set b1='I5QOIHOX2ZA3PE' where id=4; -update noar ti set b1='I5QOIHOX2ZA3PE' where id=4; -update noar tt set v0='SKZJEFY75XN10' where id=4; -update noar ti set v0='SKZJEFY75XN10' where id=4; -update noar tt set b2='U04EZLXCQMYW3V3H4DALLQQMY7Q1KP6' where id=4; -update noar ti set b2='U04EZLXCQMYW3V3H4DALLQQMY7Q1KP6' where id=4; -update noar tt set v0='RMYBX5NQ8IBF6OQ1T08SBL' where id=5; -update noar ti set v0='RMYBX5NQ8IBF6OQ1T08SBL' where id=5; -update noar tt set b0='AD3N27TIWLDLLTSTAR17UIY4UH' where id=5; -update noar ti set b0='AD3N27TIWLDLLTSTAR17UIY4UH' where id=5; -update noar tt set v0='G011RPM26RZ' where id=5; -update noar ti set v0='G011RPM26RZ' where id=5; -update noar tt set b1='BDPPIL44T9VM90MCVMO7O3C' where id=5; -update noar ti set b1='BDPPIL44T9VM90MCVMO7O3C' where id=5; -update noar tt set v0='4C18KYFF0ME' where id=5; -update noar ti set v0='4C18KYFF0ME' where id=5; -update noar tt set b2='H84V0J5G64HOZPJH8IV9ZW' where id=5; -update noar ti set b2='H84V0J5G64HOZPJH8IV9ZW' where id=5; -update noar tt set v0='7MN53ZUSX1UGTHGNM2Q9' where id=6; -update noar ti set v0='7MN53ZUSX1UGTHGNM2Q9' where id=6; -update noar tt set b0='FAO3BUBZPHDUP7YF53599JA64UW1' where id=6; -update noar ti set b0='FAO3BUBZPHDUP7YF53599JA64UW1' where id=6; -update noar tt set v0='RL11BMUJI3RK87KFSRV74' where id=6; -update noar ti set v0='RL11BMUJI3RK87KFSRV74' where id=6; -update noar tt set b1='5I7' where id=6; -update noar ti set b1='5I7' where id=6; -update noar tt set v0='CD3XKD3DHJBRJBACFV24Y53HS2Q76R' where id=6; -update noar ti set v0='CD3XKD3DHJBRJBACFV24Y53HS2Q76R' where id=6; -update noar tt set b2='SP' where id=6; -update noar ti set b2='SP' where id=6; -update noar tt set v0='4VBV1HBP6MK2MGEV' where id=7; -update noar ti set v0='4VBV1HBP6MK2MGEV' where id=7; -update noar tt set b0='PMRNL0S4DFX43CEQ70E92LBO15S63' where id=7; -update noar ti set b0='PMRNL0S4DFX43CEQ70E92LBO15S63' where id=7; -update noar tt set v0='ZZCY1HXTUP629SUD1IPS5Y' where id=7; -update noar ti set v0='ZZCY1HXTUP629SUD1IPS5Y' where id=7; -update noar tt set b1='XBA19L7AOK96ZQRJI8IUCZ5X0' where id=7; -update noar ti set b1='XBA19L7AOK96ZQRJI8IUCZ5X0' where id=7; -update noar tt set v0='P06VTFH86K' where id=7; -update noar ti set v0='P06VTFH86K' where id=7; -update noar tt set b2='AD5PMS2XVLGB' where id=7; -update noar ti set b2='AD5PMS2XVLGB' where id=7; -update noar tt set v0='0QC20FZPXBIKCODRBJONNR0NUXC2SDSY' where id=8; -update noar ti set v0='0QC20FZPXBIKCODRBJONNR0NUXC2SDSY' where id=8; -update noar tt set b0='PZXM5598GDZSPH2RK' where id=8; -update noar ti set b0='PZXM5598GDZSPH2RK' where id=8; -update noar tt set v0='F346V5J05UXC749ALV' where id=8; -update noar ti set v0='F346V5J05UXC749ALV' where id=8; -update noar tt set b1='MNGKLUHW' where id=8; -update noar ti set b1='MNGKLUHW' where id=8; -update noar tt set v0='VF5RQKP6U1JC665EMC' where id=8; -update noar ti set v0='VF5RQKP6U1JC665EMC' where id=8; -update noar tt set b2='KPKFVA52DZQYAM7' where id=8; -update noar ti set b2='KPKFVA52DZQYAM7' where id=8; -update noar tt set v0='9JAUDHG1' where id=9; -update noar ti set v0='9JAUDHG1' where id=9; -update noar tt set b0='TEIH533FXWNAYHS6103XOVRG' where id=9; -update noar ti set b0='TEIH533FXWNAYHS6103XOVRG' where id=9; -update noar tt set v0='3HCG7' where id=9; -update noar ti set v0='3HCG7' where id=9; -update noar tt set b1='R5G5B45OC71VNE0XL' where id=9; -update noar ti set b1='R5G5B45OC71VNE0XL' where id=9; -update noar tt set v0='SHM2S6J5B0TD7E' where id=9; -update noar ti set v0='SHM2S6J5B0TD7E' where id=9; -update noar tt set b2='W75YOSOZM14Q43PVVOA5IS' where id=9; -update noar ti set b2='W75YOSOZM14Q43PVVOA5IS' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -f0 int not null, -v0 varchar(32) not null, -b0 tinyblob not null, -b1 longblob not null, -b2 mediumblob not null -) engine=tokudb; -insert into tt values (1,0,'','','',''); -insert into tt values (2,0,'','','',''); -insert into tt values (3,0,'','','',''); -insert into tt values (4,0,'','','',''); -insert into tt values (5,0,'','','',''); -insert into tt values (6,0,'','','',''); -insert into tt values (7,0,'','','',''); -insert into tt values (8,0,'','','',''); -insert into tt values (9,0,'','','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='WLU26SY' where id=1; -update noar ti set v0='WLU26SY' where id=1; -update noar tt set b0='YZ4TDUAVDJZG8G1YXCGI3DEPA8ZRIO' where id=1; -update noar ti set b0='YZ4TDUAVDJZG8G1YXCGI3DEPA8ZRIO' where id=1; -update noar tt set v0='0BRD64W' where id=1; -update noar ti set v0='0BRD64W' where id=1; -update noar tt set b1='RRM593JN698L1X' where id=1; -update noar ti set b1='RRM593JN698L1X' where id=1; -update noar tt set v0='UM7XVGQ5Z' where id=1; -update noar ti set v0='UM7XVGQ5Z' where id=1; -update noar tt set b2='KZQPGD' where id=1; -update noar ti set b2='KZQPGD' where id=1; -update noar tt set v0='97B7EGPHGKKVT' where id=2; -update noar ti set v0='97B7EGPHGKKVT' where id=2; -update noar tt set b0='CDALQLH7KEZRR342VS0A92C68OH' where id=2; -update noar ti set b0='CDALQLH7KEZRR342VS0A92C68OH' where id=2; -update noar tt set v0='2ETM' where id=2; -update noar ti set v0='2ETM' where id=2; -update noar tt set b1='EFQ11YOD94UJ523TC' where id=2; -update noar ti set b1='EFQ11YOD94UJ523TC' where id=2; -update noar tt set v0='VX39CALAZQIETW0VZQ8A18M9JF3Q65' where id=2; -update noar ti set v0='VX39CALAZQIETW0VZQ8A18M9JF3Q65' where id=2; -update noar tt set b2='EVT' where id=2; -update noar ti set b2='EVT' where id=2; -update noar tt set v0='HS7KQ' where id=3; -update noar ti set v0='HS7KQ' where id=3; -update noar tt set b0='NJ71T813LJVA9D2UB' where id=3; -update noar ti set b0='NJ71T813LJVA9D2UB' where id=3; -update noar tt set v0='6WL8H78VZNK40LSBMTTIGDVXE47' where id=3; -update noar ti set v0='6WL8H78VZNK40LSBMTTIGDVXE47' where id=3; -update noar tt set b1='ISW' where id=3; -update noar ti set b1='ISW' where id=3; -update noar tt set v0='MVNBNIZW619OYAD' where id=3; -update noar ti set v0='MVNBNIZW619OYAD' where id=3; -update noar tt set b2='TJRDN7EIQ16P28RO09RPOXC1PRRI5' where id=3; -update noar ti set b2='TJRDN7EIQ16P28RO09RPOXC1PRRI5' where id=3; -update noar tt set v0='6RA35JCA0GLZKT36IKSMGZE2ZI7A' where id=4; -update noar ti set v0='6RA35JCA0GLZKT36IKSMGZE2ZI7A' where id=4; -update noar tt set b0='ISM0MO' where id=4; -update noar ti set b0='ISM0MO' where id=4; -update noar tt set v0='QHECUZHAGRLIPND8POGCCHL5G4BKLUU' where id=4; -update noar ti set v0='QHECUZHAGRLIPND8POGCCHL5G4BKLUU' where id=4; -update noar tt set b1='RC0VVC355Q9EVQSJP3IIV4' where id=4; -update noar ti set b1='RC0VVC355Q9EVQSJP3IIV4' where id=4; -update noar tt set v0='6EJAXY8U078JRBAQFUFLBU6CP' where id=4; -update noar ti set v0='6EJAXY8U078JRBAQFUFLBU6CP' where id=4; -update noar tt set b2='ZQU0NF5W3' where id=4; -update noar ti set b2='ZQU0NF5W3' where id=4; -update noar tt set v0='LYIB' where id=5; -update noar ti set v0='LYIB' where id=5; -update noar tt set b0='YTTKYT' where id=5; -update noar ti set b0='YTTKYT' where id=5; -update noar tt set v0='Y5J' where id=5; -update noar ti set v0='Y5J' where id=5; -update noar tt set b1='RN3PU8YSC8YFYM1SR4WCOV' where id=5; -update noar ti set b1='RN3PU8YSC8YFYM1SR4WCOV' where id=5; -update noar tt set v0='9CKJ' where id=5; -update noar ti set v0='9CKJ' where id=5; -update noar tt set b2='X88L7YCEJE2K388800Z7FTVC233S4D2' where id=5; -update noar ti set b2='X88L7YCEJE2K388800Z7FTVC233S4D2' where id=5; -update noar tt set v0='S9VXSIGQ0RETGCC1EG3XERMJ9' where id=6; -update noar ti set v0='S9VXSIGQ0RETGCC1EG3XERMJ9' where id=6; -update noar tt set b0='KY43ISWEA2G53V6UNCVAEU' where id=6; -update noar ti set b0='KY43ISWEA2G53V6UNCVAEU' where id=6; -update noar tt set v0='LX39MDR0EP9B7UXACN83CEMWJDFFCXL' where id=6; -update noar ti set v0='LX39MDR0EP9B7UXACN83CEMWJDFFCXL' where id=6; -update noar tt set b1='FJEK0INZ48GXEYOOMFM8UJI4E71329G' where id=6; -update noar ti set b1='FJEK0INZ48GXEYOOMFM8UJI4E71329G' where id=6; -update noar tt set v0='8KXEL4T9OHE20' where id=6; -update noar ti set v0='8KXEL4T9OHE20' where id=6; -update noar tt set b2='XI' where id=6; -update noar ti set b2='XI' where id=6; -update noar tt set v0='1YZRB46JK8MLB7P6L184L4Q63IQ7' where id=7; -update noar ti set v0='1YZRB46JK8MLB7P6L184L4Q63IQ7' where id=7; -update noar tt set b0='EI' where id=7; -update noar ti set b0='EI' where id=7; -update noar tt set v0='0UEQV48I3657S45RI1UP6PBWTJJ6IE' where id=7; -update noar ti set v0='0UEQV48I3657S45RI1UP6PBWTJJ6IE' where id=7; -update noar tt set b1='03J03' where id=7; -update noar ti set b1='03J03' where id=7; -update noar tt set v0='RX5HY5' where id=7; -update noar ti set v0='RX5HY5' where id=7; -update noar tt set b2='57XF2C0DRU6WDN' where id=7; -update noar ti set b2='57XF2C0DRU6WDN' where id=7; -update noar tt set v0='9LG602GNKZHEQ0YB9ZOX' where id=8; -update noar ti set v0='9LG602GNKZHEQ0YB9ZOX' where id=8; -update noar tt set b0='MPHI3ONGH861VF' where id=8; -update noar ti set b0='MPHI3ONGH861VF' where id=8; -update noar tt set v0='5MITBB25PO5OWYPU242HZ' where id=8; -update noar ti set v0='5MITBB25PO5OWYPU242HZ' where id=8; -update noar tt set b1='2XXTYD' where id=8; -update noar ti set b1='2XXTYD' where id=8; -update noar tt set v0='MHFEI2AT1R9KLW0T6MY5U9V3YUUTA5H' where id=8; -update noar ti set v0='MHFEI2AT1R9KLW0T6MY5U9V3YUUTA5H' where id=8; -update noar tt set b2='PAQ0CTDBBQF' where id=8; -update noar ti set b2='PAQ0CTDBBQF' where id=8; -update noar tt set v0='1TG665CKQ5XN58Q' where id=9; -update noar ti set v0='1TG665CKQ5XN58Q' where id=9; -update noar tt set b0='C4TR0D0P' where id=9; -update noar ti set b0='C4TR0D0P' where id=9; -update noar tt set v0='4CI2VEBY60XZEZ44TY16X02CH921X' where id=9; -update noar ti set v0='4CI2VEBY60XZEZ44TY16X02CH921X' where id=9; -update noar tt set b1='UH9VKXEP17E' where id=9; -update noar ti set b1='UH9VKXEP17E' where id=9; -update noar tt set v0='W4SJ5OKSKXRQMUL' where id=9; -update noar ti set v0='W4SJ5OKSKXRQMUL' where id=9; -update noar tt set b2='MNULS18' where id=9; -update noar ti set b2='MNULS18' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -f0 int not null, -v0 varchar(256) not null, -b0 tinyblob not null, -b1 longblob not null, -b2 mediumblob not null -) engine=tokudb; -insert into tt values (1,0,'','','',''); -insert into tt values (2,0,'','','',''); -insert into tt values (3,0,'','','',''); -insert into tt values (4,0,'','','',''); -insert into tt values (5,0,'','','',''); -insert into tt values (6,0,'','','',''); -insert into tt values (7,0,'','','',''); -insert into tt values (8,0,'','','',''); -insert into tt values (9,0,'','','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='2YFR7YFNVBMABVD94CZ' where id=1; -update noar ti set v0='2YFR7YFNVBMABVD94CZ' where id=1; -update noar tt set b0='D1C352ZX6A4NXMJ07K2' where id=1; -update noar ti set b0='D1C352ZX6A4NXMJ07K2' where id=1; -update noar tt set v0='EDNM56X8XKUISQI1GRR2B5BD6CGBXI' where id=1; -update noar ti set v0='EDNM56X8XKUISQI1GRR2B5BD6CGBXI' where id=1; -update noar tt set b1='UWW2IIMZ' where id=1; -update noar ti set b1='UWW2IIMZ' where id=1; -update noar tt set v0='73Z1ME44RLDFYFONGR43' where id=1; -update noar ti set v0='73Z1ME44RLDFYFONGR43' where id=1; -update noar tt set b2='GLTX7S07N4TO3KS4EOCMYCZVO09T9M4' where id=1; -update noar ti set b2='GLTX7S07N4TO3KS4EOCMYCZVO09T9M4' where id=1; -update noar tt set v0='NAHVPZBIZFE9YKW9ETMZTZWQ7C4' where id=2; -update noar ti set v0='NAHVPZBIZFE9YKW9ETMZTZWQ7C4' where id=2; -update noar tt set b0='IU0G6YHBK1J9YS' where id=2; -update noar ti set b0='IU0G6YHBK1J9YS' where id=2; -update noar tt set v0='RGSAN0IW2JZ5V44L5YDP' where id=2; -update noar ti set v0='RGSAN0IW2JZ5V44L5YDP' where id=2; -update noar tt set b1='4CB53D2WRZW' where id=2; -update noar ti set b1='4CB53D2WRZW' where id=2; -update noar tt set v0='ILKAVIJV9WAJEF2PL5KZNSY' where id=2; -update noar ti set v0='ILKAVIJV9WAJEF2PL5KZNSY' where id=2; -update noar tt set b2='U1DD6E096K9BZEWNH' where id=2; -update noar ti set b2='U1DD6E096K9BZEWNH' where id=2; -update noar tt set v0='U7LJ1KK5C13EZOMEXM89QT1P08EZ' where id=3; -update noar ti set v0='U7LJ1KK5C13EZOMEXM89QT1P08EZ' where id=3; -update noar tt set b0='VRHT' where id=3; -update noar ti set b0='VRHT' where id=3; -update noar tt set v0='TY1FS55IE' where id=3; -update noar ti set v0='TY1FS55IE' where id=3; -update noar tt set b1='FNTVRMKQSSQN3Z7QXT' where id=3; -update noar ti set b1='FNTVRMKQSSQN3Z7QXT' where id=3; -update noar tt set v0='5D7G5VB9G2FOZ3VHF' where id=3; -update noar ti set v0='5D7G5VB9G2FOZ3VHF' where id=3; -update noar tt set b2='2KHZG4FU2NSE9CWHO' where id=3; -update noar ti set b2='2KHZG4FU2NSE9CWHO' where id=3; -update noar tt set v0='TAXA8L0K08MNRW6V5' where id=4; -update noar ti set v0='TAXA8L0K08MNRW6V5' where id=4; -update noar tt set b0='U5KJM4G20UPOIRIKR0XZ' where id=4; -update noar ti set b0='U5KJM4G20UPOIRIKR0XZ' where id=4; -update noar tt set v0='FASAEZ1A8E838PIIH6YB9KUO' where id=4; -update noar ti set v0='FASAEZ1A8E838PIIH6YB9KUO' where id=4; -update noar tt set b1='Y4XAX79W20RPOTLPADOKBHGX3AZBD' where id=4; -update noar ti set b1='Y4XAX79W20RPOTLPADOKBHGX3AZBD' where id=4; -update noar tt set v0='BP4TM' where id=4; -update noar ti set v0='BP4TM' where id=4; -update noar tt set b2='L1E8EAJCDCEZJBKDE993OH59WL' where id=4; -update noar ti set b2='L1E8EAJCDCEZJBKDE993OH59WL' where id=4; -update noar tt set v0='FSP6AHI4JKVAEYLP7YWH9BGMD4CH' where id=5; -update noar ti set v0='FSP6AHI4JKVAEYLP7YWH9BGMD4CH' where id=5; -update noar tt set b0='EAUUIB1B06ENPYLTKGW9HP3676Y3RGL' where id=5; -update noar ti set b0='EAUUIB1B06ENPYLTKGW9HP3676Y3RGL' where id=5; -update noar tt set v0='SJ0N28ERRQEO7CEZ6J6CBTIY0XENL7L' where id=5; -update noar ti set v0='SJ0N28ERRQEO7CEZ6J6CBTIY0XENL7L' where id=5; -update noar tt set b1='W0XNGYC' where id=5; -update noar ti set b1='W0XNGYC' where id=5; -update noar tt set v0='U84RKJTWQB9R5NWHWTN2JI6' where id=5; -update noar ti set v0='U84RKJTWQB9R5NWHWTN2JI6' where id=5; -update noar tt set b2='7WI0' where id=5; -update noar ti set b2='7WI0' where id=5; -update noar tt set v0='2ZJVWZ' where id=6; -update noar ti set v0='2ZJVWZ' where id=6; -update noar tt set b0='S6SKLIDK76UNZVFS6ES8OZBGVMS7' where id=6; -update noar ti set b0='S6SKLIDK76UNZVFS6ES8OZBGVMS7' where id=6; -update noar tt set v0='IPJORAM60NQXJI' where id=6; -update noar ti set v0='IPJORAM60NQXJI' where id=6; -update noar tt set b1='2Y0WW1' where id=6; -update noar ti set b1='2Y0WW1' where id=6; -update noar tt set v0='AEZMWB4EQIGWO8G' where id=6; -update noar ti set v0='AEZMWB4EQIGWO8G' where id=6; -update noar tt set b2='AGDY6STMHIKIS23HOJEYRJEWWCK4' where id=6; -update noar ti set b2='AGDY6STMHIKIS23HOJEYRJEWWCK4' where id=6; -update noar tt set v0='9XVL670GR8AVWKSA3662F4LYO' where id=7; -update noar ti set v0='9XVL670GR8AVWKSA3662F4LYO' where id=7; -update noar tt set b0='T' where id=7; -update noar ti set b0='T' where id=7; -update noar tt set v0='D5YVQG5QRNHRQRTP' where id=7; -update noar ti set v0='D5YVQG5QRNHRQRTP' where id=7; -update noar tt set b1='5GULAJQEFO16E7V2JRU8756SRBNWV2P' where id=7; -update noar ti set b1='5GULAJQEFO16E7V2JRU8756SRBNWV2P' where id=7; -update noar tt set v0='CEGHCLZ3Z48YEVB' where id=7; -update noar ti set v0='CEGHCLZ3Z48YEVB' where id=7; -update noar tt set b2='HSQTJAQ0B7BD' where id=7; -update noar ti set b2='HSQTJAQ0B7BD' where id=7; -update noar tt set v0='D73LVLM7' where id=8; -update noar ti set v0='D73LVLM7' where id=8; -update noar tt set b0='OQGJZH8QN8ABAFAP0NQC13P4' where id=8; -update noar ti set b0='OQGJZH8QN8ABAFAP0NQC13P4' where id=8; -update noar tt set v0='0KTTY' where id=8; -update noar ti set v0='0KTTY' where id=8; -update noar tt set b1='980R9UERD1Q' where id=8; -update noar ti set b1='980R9UERD1Q' where id=8; -update noar tt set v0='NHBXX0WNEF207MRLM0O' where id=8; -update noar ti set v0='NHBXX0WNEF207MRLM0O' where id=8; -update noar tt set b2='G9UZG8FZKV6G6187JTKJDCGCEKOZR0WX' where id=8; -update noar ti set b2='G9UZG8FZKV6G6187JTKJDCGCEKOZR0WX' where id=8; -update noar tt set v0='IR4KTP4LZO' where id=9; -update noar ti set v0='IR4KTP4LZO' where id=9; -update noar tt set b0='9OFE64610RU69' where id=9; -update noar ti set b0='9OFE64610RU69' where id=9; -update noar tt set v0='3J5P8KQB0ROFPY' where id=9; -update noar ti set v0='3J5P8KQB0ROFPY' where id=9; -update noar tt set b1='P0I23GYR6UO6NNDUE4VG' where id=9; -update noar ti set b1='P0I23GYR6UO6NNDUE4VG' where id=9; -update noar tt set v0='LV23IQFNKKCLA3RR' where id=9; -update noar ti set v0='LV23IQFNKKCLA3RR' where id=9; -update noar tt set b2='HXJPTZ45LOYP44OK8DPQSE1B1R7' where id=9; -update noar ti set b2='HXJPTZ45LOYP44OK8DPQSE1B1R7' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -f0 int null, -v0 varchar(32) null, -b0 tinyblob null, -b1 longblob null, -b2 longblob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='WKB6QCXEDAX7BKAZ7FBYFMXJ54JIZ4' where id=1; -update noar ti set v0='WKB6QCXEDAX7BKAZ7FBYFMXJ54JIZ4' where id=1; -update noar tt set b0='DAARWNBBKGNY0JBR1CD6W' where id=1; -update noar ti set b0='DAARWNBBKGNY0JBR1CD6W' where id=1; -update noar tt set v0='4YGA2EABOXMSCKOA' where id=1; -update noar ti set v0='4YGA2EABOXMSCKOA' where id=1; -update noar tt set b1='NFFFZVKDVLR' where id=1; -update noar ti set b1='NFFFZVKDVLR' where id=1; -update noar tt set v0='9I6KRK9IAX12CG7I2M7QITVNNNBXIG' where id=1; -update noar ti set v0='9I6KRK9IAX12CG7I2M7QITVNNNBXIG' where id=1; -update noar tt set b2='ETBQGKPB0A9Q2YULI8BHZ' where id=1; -update noar ti set b2='ETBQGKPB0A9Q2YULI8BHZ' where id=1; -update noar tt set v0='7S5KZ52Z2NNIIXV5XZBS' where id=2; -update noar ti set v0='7S5KZ52Z2NNIIXV5XZBS' where id=2; -update noar tt set b0='GDFU' where id=2; -update noar ti set b0='GDFU' where id=2; -update noar tt set v0='IM5YJ456Q7A0OZRTTEK7' where id=2; -update noar ti set v0='IM5YJ456Q7A0OZRTTEK7' where id=2; -update noar tt set b1='4Q4M2ZU4ODH33NYFX1MGDY1O967OE' where id=2; -update noar ti set b1='4Q4M2ZU4ODH33NYFX1MGDY1O967OE' where id=2; -update noar tt set v0='5L' where id=2; -update noar ti set v0='5L' where id=2; -update noar tt set b2='Q8XV5WET3W2ARGFM' where id=2; -update noar ti set b2='Q8XV5WET3W2ARGFM' where id=2; -update noar tt set v0='RRE0FA0' where id=3; -update noar ti set v0='RRE0FA0' where id=3; -update noar tt set b0='77LG4G1XJ1GN58QXHZEK7WF657GLL' where id=3; -update noar ti set b0='77LG4G1XJ1GN58QXHZEK7WF657GLL' where id=3; -update noar tt set v0='JO' where id=3; -update noar ti set v0='JO' where id=3; -update noar tt set b1='O230MX7LSTX8F3MY4R3N1' where id=3; -update noar ti set b1='O230MX7LSTX8F3MY4R3N1' where id=3; -update noar tt set v0='J3JEPDQ028UY4MT9MM' where id=3; -update noar ti set v0='J3JEPDQ028UY4MT9MM' where id=3; -update noar tt set b2='LBKFFTPKEVT760XOGV2' where id=3; -update noar ti set b2='LBKFFTPKEVT760XOGV2' where id=3; -update noar tt set v0='FD5P55NA3IIYPAR9WNOKGN21K' where id=4; -update noar ti set v0='FD5P55NA3IIYPAR9WNOKGN21K' where id=4; -update noar tt set b0='FM1CGVMA25LKCJPW06TM3S11' where id=4; -update noar ti set b0='FM1CGVMA25LKCJPW06TM3S11' where id=4; -update noar tt set v0='N' where id=4; -update noar ti set v0='N' where id=4; -update noar tt set b1='8FGHZT4SDT' where id=4; -update noar ti set b1='8FGHZT4SDT' where id=4; -update noar tt set v0='JGM5NWCYN0OFWKR417AJHODI75D' where id=4; -update noar ti set v0='JGM5NWCYN0OFWKR417AJHODI75D' where id=4; -update noar tt set b2='T7CWNK' where id=4; -update noar ti set b2='T7CWNK' where id=4; -update noar tt set v0='57W4FXI' where id=5; -update noar ti set v0='57W4FXI' where id=5; -update noar tt set b0='0MVW2VNB2FJHNONA' where id=5; -update noar ti set b0='0MVW2VNB2FJHNONA' where id=5; -update noar tt set v0='AHZWOCT' where id=5; -update noar ti set v0='AHZWOCT' where id=5; -update noar tt set b1='1WPFSUBUWOSGNWMSTGTGZ5' where id=5; -update noar ti set b1='1WPFSUBUWOSGNWMSTGTGZ5' where id=5; -update noar tt set v0='V4C6EK' where id=5; -update noar ti set v0='V4C6EK' where id=5; -update noar tt set b2='WFLN792PV0T7SZH1D' where id=5; -update noar ti set b2='WFLN792PV0T7SZH1D' where id=5; -update noar tt set v0='KEE87BO2779WDXH4DFKJJJQ2Z95T' where id=6; -update noar ti set v0='KEE87BO2779WDXH4DFKJJJQ2Z95T' where id=6; -update noar tt set b0='X' where id=6; -update noar ti set b0='X' where id=6; -update noar tt set v0='U7PLXDX4B0EPOGEHSI' where id=6; -update noar ti set v0='U7PLXDX4B0EPOGEHSI' where id=6; -update noar tt set b1='51NY1VUXRQGPYO' where id=6; -update noar ti set b1='51NY1VUXRQGPYO' where id=6; -update noar tt set v0='3GPYI35AKG3018X8BYVL5' where id=6; -update noar ti set v0='3GPYI35AKG3018X8BYVL5' where id=6; -update noar tt set b2='PHVNHICZ1MY39XI0JQV0E' where id=6; -update noar ti set b2='PHVNHICZ1MY39XI0JQV0E' where id=6; -update noar tt set v0='BAPY2FCG8BJ3ZR3DMI1MB' where id=7; -update noar ti set v0='BAPY2FCG8BJ3ZR3DMI1MB' where id=7; -update noar tt set b0='IOJH0GMSX9H2HZT' where id=7; -update noar ti set b0='IOJH0GMSX9H2HZT' where id=7; -update noar tt set v0='LO1908ZMFVVWW1OX3ZJZGJ0TS2J2QH' where id=7; -update noar ti set v0='LO1908ZMFVVWW1OX3ZJZGJ0TS2J2QH' where id=7; -update noar tt set b1='S7XAKSSGSXNIMPWBN7ULY95ETF3U2' where id=7; -update noar ti set b1='S7XAKSSGSXNIMPWBN7ULY95ETF3U2' where id=7; -update noar tt set v0='URKDP2MZNHHA3BLJM' where id=7; -update noar ti set v0='URKDP2MZNHHA3BLJM' where id=7; -update noar tt set b2='OUPA298IPRTHVWA5WUK0IS' where id=7; -update noar ti set b2='OUPA298IPRTHVWA5WUK0IS' where id=7; -update noar tt set v0='I9N2HBC11AYL24SX5M1NOPFD3M' where id=8; -update noar ti set v0='I9N2HBC11AYL24SX5M1NOPFD3M' where id=8; -update noar tt set b0='UUCWYUY0NR1DM8ZJ2WQ5' where id=8; -update noar ti set b0='UUCWYUY0NR1DM8ZJ2WQ5' where id=8; -update noar tt set v0='N7XFLJ' where id=8; -update noar ti set v0='N7XFLJ' where id=8; -update noar tt set b1='3VQY8R26AZ' where id=8; -update noar ti set b1='3VQY8R26AZ' where id=8; -update noar tt set v0='L3GG39QTMJAK3GMA46ZDPU' where id=8; -update noar ti set v0='L3GG39QTMJAK3GMA46ZDPU' where id=8; -update noar tt set b2='NMMCGNOWUTG19E9L266G4YPLKMY5A' where id=8; -update noar ti set b2='NMMCGNOWUTG19E9L266G4YPLKMY5A' where id=8; -update noar tt set v0='C2FQ96XNGUYC84D7HA9' where id=9; -update noar ti set v0='C2FQ96XNGUYC84D7HA9' where id=9; -update noar tt set b0='6U2M544B1UHZ' where id=9; -update noar ti set b0='6U2M544B1UHZ' where id=9; -update noar tt set v0='8JWSNHHEVZJS9PWV8VOW2GYGKRJ' where id=9; -update noar ti set v0='8JWSNHHEVZJS9PWV8VOW2GYGKRJ' where id=9; -update noar tt set b1='KHT6ABJV82' where id=9; -update noar ti set b1='KHT6ABJV82' where id=9; -update noar tt set v0='IDSLWB500SW2' where id=9; -update noar ti set v0='IDSLWB500SW2' where id=9; -update noar tt set b2='V8N7Q3W2' where id=9; -update noar ti set b2='V8N7Q3W2' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -f0 int null, -v0 varchar(256) null, -b0 tinyblob null, -b1 longblob null, -b2 longblob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='ZZQW0' where id=1; -update noar ti set v0='ZZQW0' where id=1; -update noar tt set b0='7W4HXNM2XQK5AH7NK1NP4OTXY85O4' where id=1; -update noar ti set b0='7W4HXNM2XQK5AH7NK1NP4OTXY85O4' where id=1; -update noar tt set v0='B51PLR39FSU741IED7JECCK7I3AFW6X' where id=1; -update noar ti set v0='B51PLR39FSU741IED7JECCK7I3AFW6X' where id=1; -update noar tt set b1='RQXOPJA6BWUOFKRY9VAZ' where id=1; -update noar ti set b1='RQXOPJA6BWUOFKRY9VAZ' where id=1; -update noar tt set v0='47O53I7DQFNDKOE9C91FTL03TES83OY' where id=1; -update noar ti set v0='47O53I7DQFNDKOE9C91FTL03TES83OY' where id=1; -update noar tt set b2='61GNDMNKWG59R5' where id=1; -update noar ti set b2='61GNDMNKWG59R5' where id=1; -update noar tt set v0='XM' where id=2; -update noar ti set v0='XM' where id=2; -update noar tt set b0='8X1WG83G2J' where id=2; -update noar ti set b0='8X1WG83G2J' where id=2; -update noar tt set v0='QAT1XOC' where id=2; -update noar ti set v0='QAT1XOC' where id=2; -update noar tt set b1='E7RZJTH1OUESGS9C7RV' where id=2; -update noar ti set b1='E7RZJTH1OUESGS9C7RV' where id=2; -update noar tt set v0='M8U02EG0' where id=2; -update noar ti set v0='M8U02EG0' where id=2; -update noar tt set b2='34O31HYEZYA6OJ3S9MLMUX' where id=2; -update noar ti set b2='34O31HYEZYA6OJ3S9MLMUX' where id=2; -update noar tt set v0='NOOIGJ1O42AEW7W5' where id=3; -update noar ti set v0='NOOIGJ1O42AEW7W5' where id=3; -update noar tt set b0='CETXM13QUCLHFNKMLWBWFDR' where id=3; -update noar ti set b0='CETXM13QUCLHFNKMLWBWFDR' where id=3; -update noar tt set v0='33GYEI3CBGMM4U5K' where id=3; -update noar ti set v0='33GYEI3CBGMM4U5K' where id=3; -update noar tt set b1='1HCE9MO3N' where id=3; -update noar ti set b1='1HCE9MO3N' where id=3; -update noar tt set v0='V' where id=3; -update noar ti set v0='V' where id=3; -update noar tt set b2='R9YTXMJLWQYR4C3S' where id=3; -update noar ti set b2='R9YTXMJLWQYR4C3S' where id=3; -update noar tt set v0='E81P6G145R87UTORECCZD66' where id=4; -update noar ti set v0='E81P6G145R87UTORECCZD66' where id=4; -update noar tt set b0='UHJDD49RGA3O5' where id=4; -update noar ti set b0='UHJDD49RGA3O5' where id=4; -update noar tt set v0='MJNR' where id=4; -update noar ti set v0='MJNR' where id=4; -update noar tt set b1='U5ZGGNWWXDGNQ2L3KVBUS' where id=4; -update noar ti set b1='U5ZGGNWWXDGNQ2L3KVBUS' where id=4; -update noar tt set v0='9JBZ2V72NV487MCABXNJFAGO88AAOWKZ' where id=4; -update noar ti set v0='9JBZ2V72NV487MCABXNJFAGO88AAOWKZ' where id=4; -update noar tt set b2='988U81QQL4IQ0ADZC7R0X3G0P' where id=4; -update noar ti set b2='988U81QQL4IQ0ADZC7R0X3G0P' where id=4; -update noar tt set v0='P5NDB15L65' where id=5; -update noar ti set v0='P5NDB15L65' where id=5; -update noar tt set b0='6DE6IE9M5I8BMNWEEHD94LFLZTYNYB' where id=5; -update noar ti set b0='6DE6IE9M5I8BMNWEEHD94LFLZTYNYB' where id=5; -update noar tt set v0='JJ78W2LVS1PNB3E7QBQFZH9MF877GV' where id=5; -update noar ti set v0='JJ78W2LVS1PNB3E7QBQFZH9MF877GV' where id=5; -update noar tt set b1='YRJPD7M76CU1G41PTS7ACSW2R30MZK1' where id=5; -update noar ti set b1='YRJPD7M76CU1G41PTS7ACSW2R30MZK1' where id=5; -update noar tt set v0='NLFLSAHM3Z7ST1BUEDUJF9' where id=5; -update noar ti set v0='NLFLSAHM3Z7ST1BUEDUJF9' where id=5; -update noar tt set b2='1DCP49QBNMLDZ507ECDLB7' where id=5; -update noar ti set b2='1DCP49QBNMLDZ507ECDLB7' where id=5; -update noar tt set v0='5OZBK90SEOWDD1E8WMSFCXLM' where id=6; -update noar ti set v0='5OZBK90SEOWDD1E8WMSFCXLM' where id=6; -update noar tt set b0='NUW1486JETPZFX50QPY6MXMMX' where id=6; -update noar ti set b0='NUW1486JETPZFX50QPY6MXMMX' where id=6; -update noar tt set v0='WDW7UDYLT6' where id=6; -update noar ti set v0='WDW7UDYLT6' where id=6; -update noar tt set b1='16205VJ3A0H7AZHA2' where id=6; -update noar ti set b1='16205VJ3A0H7AZHA2' where id=6; -update noar tt set v0='8QDJ' where id=6; -update noar ti set v0='8QDJ' where id=6; -update noar tt set b2='81575WF9W996JIP69N8E7R9CK2GA5PZ' where id=6; -update noar ti set b2='81575WF9W996JIP69N8E7R9CK2GA5PZ' where id=6; -update noar tt set v0='6GX3TE227BR0JBHVOZL5B5XUE8C7HMX' where id=7; -update noar ti set v0='6GX3TE227BR0JBHVOZL5B5XUE8C7HMX' where id=7; -update noar tt set b0='PAZR4B5S0' where id=7; -update noar ti set b0='PAZR4B5S0' where id=7; -update noar tt set v0='WI7OK8UVVDDBOBP5AYOMTKMS' where id=7; -update noar ti set v0='WI7OK8UVVDDBOBP5AYOMTKMS' where id=7; -update noar tt set b1='4' where id=7; -update noar ti set b1='4' where id=7; -update noar tt set v0='799XGAZ' where id=7; -update noar ti set v0='799XGAZ' where id=7; -update noar tt set b2='FZNOA' where id=7; -update noar ti set b2='FZNOA' where id=7; -update noar tt set v0='3FYM7UQLA91GXXIPHLXNPC9DMCCCM' where id=8; -update noar ti set v0='3FYM7UQLA91GXXIPHLXNPC9DMCCCM' where id=8; -update noar tt set b0='VPA5DHCSJLSJXIQDRSNSZMUHAXDW0PV' where id=8; -update noar ti set b0='VPA5DHCSJLSJXIQDRSNSZMUHAXDW0PV' where id=8; -update noar tt set v0='388H8ZC0KXRDBSG0JM58S9BJ29CIC2' where id=8; -update noar ti set v0='388H8ZC0KXRDBSG0JM58S9BJ29CIC2' where id=8; -update noar tt set b1='TIS1BLSO4F5HR1EG6ILDA6' where id=8; -update noar ti set b1='TIS1BLSO4F5HR1EG6ILDA6' where id=8; -update noar tt set v0='WDCJXV7J' where id=8; -update noar ti set v0='WDCJXV7J' where id=8; -update noar tt set b2='1VMSSOHVNHSEC0UC' where id=8; -update noar ti set b2='1VMSSOHVNHSEC0UC' where id=8; -update noar tt set v0='HQW9COPGPDMPTEEYGCVDUGJZAEPP' where id=9; -update noar ti set v0='HQW9COPGPDMPTEEYGCVDUGJZAEPP' where id=9; -update noar tt set b0='OSV32IDKYFMCG9PUGAT' where id=9; -update noar ti set b0='OSV32IDKYFMCG9PUGAT' where id=9; -update noar tt set v0='RNTGZDG3C5RFPE3EJS5N' where id=9; -update noar ti set v0='RNTGZDG3C5RFPE3EJS5N' where id=9; -update noar tt set b1='KKB7D0T3X4K09AE274GUS4PGB7OG6' where id=9; -update noar ti set b1='KKB7D0T3X4K09AE274GUS4PGB7OG6' where id=9; -update noar tt set v0='EGJJMA4IGGHY75QJAT211' where id=9; -update noar ti set v0='EGJJMA4IGGHY75QJAT211' where id=9; -update noar tt set b2='X9MA2TTQ19F50H' where id=9; -update noar ti set b2='X9MA2TTQ19F50H' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -f0 int not null, -v0 varchar(32) not null, -b0 tinyblob not null, -b1 longblob not null, -b2 longblob not null -) engine=tokudb; -insert into tt values (1,0,'','','',''); -insert into tt values (2,0,'','','',''); -insert into tt values (3,0,'','','',''); -insert into tt values (4,0,'','','',''); -insert into tt values (5,0,'','','',''); -insert into tt values (6,0,'','','',''); -insert into tt values (7,0,'','','',''); -insert into tt values (8,0,'','','',''); -insert into tt values (9,0,'','','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='ZBU2S38J3Q' where id=1; -update noar ti set v0='ZBU2S38J3Q' where id=1; -update noar tt set b0='Q2APNIMUSV2BHWZBZN6D8CDV' where id=1; -update noar ti set b0='Q2APNIMUSV2BHWZBZN6D8CDV' where id=1; -update noar tt set v0='DFYL6ZEYN7KA7LUONEJDAYEI0ZZMDWO' where id=1; -update noar ti set v0='DFYL6ZEYN7KA7LUONEJDAYEI0ZZMDWO' where id=1; -update noar tt set b1='M4OMQCR4GF2P60O895UZB' where id=1; -update noar ti set b1='M4OMQCR4GF2P60O895UZB' where id=1; -update noar tt set v0='CDDEHV' where id=1; -update noar ti set v0='CDDEHV' where id=1; -update noar tt set b2='M' where id=1; -update noar ti set b2='M' where id=1; -update noar tt set v0='KJ1S' where id=2; -update noar ti set v0='KJ1S' where id=2; -update noar tt set b0='TCZYCUZHHXKZ9G4JQDE' where id=2; -update noar ti set b0='TCZYCUZHHXKZ9G4JQDE' where id=2; -update noar tt set v0='7A58D22DZGY88D841RTD37OTLTH2R' where id=2; -update noar ti set v0='7A58D22DZGY88D841RTD37OTLTH2R' where id=2; -update noar tt set b1='9JLXP35NVDZ8VVI3H4QHMW' where id=2; -update noar ti set b1='9JLXP35NVDZ8VVI3H4QHMW' where id=2; -update noar tt set v0='AWMYMUIE7R7P59MM7XLCZ6' where id=2; -update noar ti set v0='AWMYMUIE7R7P59MM7XLCZ6' where id=2; -update noar tt set b2='P0U3H2NB0' where id=2; -update noar ti set b2='P0U3H2NB0' where id=2; -update noar tt set v0='WCOGGI5M' where id=3; -update noar ti set v0='WCOGGI5M' where id=3; -update noar tt set b0='TJRGZCN2SK2MMZON' where id=3; -update noar ti set b0='TJRGZCN2SK2MMZON' where id=3; -update noar tt set v0='7Q9' where id=3; -update noar ti set v0='7Q9' where id=3; -update noar tt set b1='IUC1ZAA0ZA6GNXWBBLHSKSBCP0SZ' where id=3; -update noar ti set b1='IUC1ZAA0ZA6GNXWBBLHSKSBCP0SZ' where id=3; -update noar tt set v0='HY1WKSR1H41EK28ZT' where id=3; -update noar ti set v0='HY1WKSR1H41EK28ZT' where id=3; -update noar tt set b2='630P3T988T7BBXM316RYT204' where id=3; -update noar ti set b2='630P3T988T7BBXM316RYT204' where id=3; -update noar tt set v0='6YEHRUFDST3B494335LRIMI9B519GW' where id=4; -update noar ti set v0='6YEHRUFDST3B494335LRIMI9B519GW' where id=4; -update noar tt set b0='BFKSIKTHXNVWFK7BU7CNB' where id=4; -update noar ti set b0='BFKSIKTHXNVWFK7BU7CNB' where id=4; -update noar tt set v0='0UEFCV' where id=4; -update noar ti set v0='0UEFCV' where id=4; -update noar tt set b1='30QD8KKVKXK8RXV597RRSTDKWP' where id=4; -update noar ti set b1='30QD8KKVKXK8RXV597RRSTDKWP' where id=4; -update noar tt set v0='1B8XNQ68X3REHRKV88G' where id=4; -update noar ti set v0='1B8XNQ68X3REHRKV88G' where id=4; -update noar tt set b2='7FELDTKWBV0KDTUR9OVC386L84EOV' where id=4; -update noar ti set b2='7FELDTKWBV0KDTUR9OVC386L84EOV' where id=4; -update noar tt set v0='BTNXKAWFSF9OGPRA5O1W2V32' where id=5; -update noar ti set v0='BTNXKAWFSF9OGPRA5O1W2V32' where id=5; -update noar tt set b0='29DZCELJRA522PU4OBJN6LEAMX5' where id=5; -update noar ti set b0='29DZCELJRA522PU4OBJN6LEAMX5' where id=5; -update noar tt set v0='422P9V03QR5Z3EVXW3KS92UE4' where id=5; -update noar ti set v0='422P9V03QR5Z3EVXW3KS92UE4' where id=5; -update noar tt set b1='MWWS1' where id=5; -update noar ti set b1='MWWS1' where id=5; -update noar tt set v0='DH9ZSREW1GJE0D24N5ERMRN1HZ' where id=5; -update noar ti set v0='DH9ZSREW1GJE0D24N5ERMRN1HZ' where id=5; -update noar tt set b2='7Z5BKGMF8AN1DQVG14A2ZTHW493E3K3C' where id=5; -update noar ti set b2='7Z5BKGMF8AN1DQVG14A2ZTHW493E3K3C' where id=5; -update noar tt set v0='JLB' where id=6; -update noar ti set v0='JLB' where id=6; -update noar tt set b0='AK4LL4Q12KMBV8LZYJ72Y4N0K' where id=6; -update noar ti set b0='AK4LL4Q12KMBV8LZYJ72Y4N0K' where id=6; -update noar tt set v0='YTXSMOJRCPR9W07XF1YMBPNSA9NBPZ' where id=6; -update noar ti set v0='YTXSMOJRCPR9W07XF1YMBPNSA9NBPZ' where id=6; -update noar tt set b1='BSQAMBT0ADXTQ5JUG0D8OXMICJ7C' where id=6; -update noar ti set b1='BSQAMBT0ADXTQ5JUG0D8OXMICJ7C' where id=6; -update noar tt set v0='JKCE76V6TKL2QSVB5' where id=6; -update noar ti set v0='JKCE76V6TKL2QSVB5' where id=6; -update noar tt set b2='XT69OFIKI1K3UVKOFAC2D0FHQ2DK6D2F' where id=6; -update noar ti set b2='XT69OFIKI1K3UVKOFAC2D0FHQ2DK6D2F' where id=6; -update noar tt set v0='HMUV51G' where id=7; -update noar ti set v0='HMUV51G' where id=7; -update noar tt set b0='47L401XYM4' where id=7; -update noar ti set b0='47L401XYM4' where id=7; -update noar tt set v0='VA' where id=7; -update noar ti set v0='VA' where id=7; -update noar tt set b1='3BJCHX32M543VN4J47RT5SB67ZOH' where id=7; -update noar ti set b1='3BJCHX32M543VN4J47RT5SB67ZOH' where id=7; -update noar tt set v0='OLDPGST7KC751HT4WHPPP676KJRWM' where id=7; -update noar ti set v0='OLDPGST7KC751HT4WHPPP676KJRWM' where id=7; -update noar tt set b2='1V1P8CLQYR66I6VDS5W1Z' where id=7; -update noar ti set b2='1V1P8CLQYR66I6VDS5W1Z' where id=7; -update noar tt set v0='5SHE97RIA' where id=8; -update noar ti set v0='5SHE97RIA' where id=8; -update noar tt set b0='MBU3B80UNT8R8VX' where id=8; -update noar ti set b0='MBU3B80UNT8R8VX' where id=8; -update noar tt set v0='6OX7NAC7UZZ' where id=8; -update noar ti set v0='6OX7NAC7UZZ' where id=8; -update noar tt set b1='UTIXFV5NU1SBAL7ETJC5XCCLCQ0OYJ' where id=8; -update noar ti set b1='UTIXFV5NU1SBAL7ETJC5XCCLCQ0OYJ' where id=8; -update noar tt set v0='Y' where id=8; -update noar ti set v0='Y' where id=8; -update noar tt set b2='LQDZFYUJMFOZR1DIJPGP945ZX' where id=8; -update noar ti set b2='LQDZFYUJMFOZR1DIJPGP945ZX' where id=8; -update noar tt set v0='2C408TQ76RR813WZHA3QAU' where id=9; -update noar ti set v0='2C408TQ76RR813WZHA3QAU' where id=9; -update noar tt set b0='YZCMPXZSCQ8219T5UOIW7FRE' where id=9; -update noar ti set b0='YZCMPXZSCQ8219T5UOIW7FRE' where id=9; -update noar tt set v0='L5RUTZ4B7B58J0UTKX1CK933AIYQ0DAI' where id=9; -update noar ti set v0='L5RUTZ4B7B58J0UTKX1CK933AIYQ0DAI' where id=9; -update noar tt set b1='L' where id=9; -update noar ti set b1='L' where id=9; -update noar tt set v0='E6V1T1DC' where id=9; -update noar ti set v0='E6V1T1DC' where id=9; -update noar tt set b2='FWL0BWE9J4KN' where id=9; -update noar ti set b2='FWL0BWE9J4KN' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -f0 int not null, -v0 varchar(256) not null, -b0 tinyblob not null, -b1 longblob not null, -b2 longblob not null -) engine=tokudb; -insert into tt values (1,0,'','','',''); -insert into tt values (2,0,'','','',''); -insert into tt values (3,0,'','','',''); -insert into tt values (4,0,'','','',''); -insert into tt values (5,0,'','','',''); -insert into tt values (6,0,'','','',''); -insert into tt values (7,0,'','','',''); -insert into tt values (8,0,'','','',''); -insert into tt values (9,0,'','','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='I49JXK16Y1VC' where id=1; -update noar ti set v0='I49JXK16Y1VC' where id=1; -update noar tt set b0='K48M' where id=1; -update noar ti set b0='K48M' where id=1; -update noar tt set v0='57JXV2GGDZTCZE7NEMX2' where id=1; -update noar ti set v0='57JXV2GGDZTCZE7NEMX2' where id=1; -update noar tt set b1='6L20A510ET1Y' where id=1; -update noar ti set b1='6L20A510ET1Y' where id=1; -update noar tt set v0='JGPA8GW7T' where id=1; -update noar ti set v0='JGPA8GW7T' where id=1; -update noar tt set b2='7B3GTBR8XCF8VCX0V3ROV0S853VWVQ9N' where id=1; -update noar ti set b2='7B3GTBR8XCF8VCX0V3ROV0S853VWVQ9N' where id=1; -update noar tt set v0='P5R0MD29EBY5KC5IV9PX1C' where id=2; -update noar ti set v0='P5R0MD29EBY5KC5IV9PX1C' where id=2; -update noar tt set b0='7MR1X5VEKVWWOFB84PM8VYQ' where id=2; -update noar ti set b0='7MR1X5VEKVWWOFB84PM8VYQ' where id=2; -update noar tt set v0='7' where id=2; -update noar ti set v0='7' where id=2; -update noar tt set b1='OOKDU' where id=2; -update noar ti set b1='OOKDU' where id=2; -update noar tt set v0='GLKBB4F' where id=2; -update noar ti set v0='GLKBB4F' where id=2; -update noar tt set b2='2DR80FS5SJHQLPMQ866PTWW' where id=2; -update noar ti set b2='2DR80FS5SJHQLPMQ866PTWW' where id=2; -update noar tt set v0='37JGHREY5Q3CXAYWKY5V' where id=3; -update noar ti set v0='37JGHREY5Q3CXAYWKY5V' where id=3; -update noar tt set b0='T5YYF79I6TPQ4B8DMX4WD1WAO9U5G' where id=3; -update noar ti set b0='T5YYF79I6TPQ4B8DMX4WD1WAO9U5G' where id=3; -update noar tt set v0='LAA6CDJQ5HVHGA2TRZ' where id=3; -update noar ti set v0='LAA6CDJQ5HVHGA2TRZ' where id=3; -update noar tt set b1='9QUOEBUNMJ0A4IVL8KYZ' where id=3; -update noar ti set b1='9QUOEBUNMJ0A4IVL8KYZ' where id=3; -update noar tt set v0='5VYYBY2VF96V6' where id=3; -update noar ti set v0='5VYYBY2VF96V6' where id=3; -update noar tt set b2='2JVMSDI15FSGS4HPFO7R8HILXVE' where id=3; -update noar ti set b2='2JVMSDI15FSGS4HPFO7R8HILXVE' where id=3; -update noar tt set v0='JV8KJ0D3PLWHUS7TDGC9V' where id=4; -update noar ti set v0='JV8KJ0D3PLWHUS7TDGC9V' where id=4; -update noar tt set b0='DB0ZTNMP24JG4PF' where id=4; -update noar ti set b0='DB0ZTNMP24JG4PF' where id=4; -update noar tt set v0='SJ46XX5' where id=4; -update noar ti set v0='SJ46XX5' where id=4; -update noar tt set b1='WZ8U' where id=4; -update noar ti set b1='WZ8U' where id=4; -update noar tt set v0='STCYR0T188C0' where id=4; -update noar ti set v0='STCYR0T188C0' where id=4; -update noar tt set b2='6LXB2BJLKDD' where id=4; -update noar ti set b2='6LXB2BJLKDD' where id=4; -update noar tt set v0='51E1IX2FFCJ9H9YAVTN' where id=5; -update noar ti set v0='51E1IX2FFCJ9H9YAVTN' where id=5; -update noar tt set b0='B7P6UM' where id=5; -update noar ti set b0='B7P6UM' where id=5; -update noar tt set v0='4AZD5NOM1' where id=5; -update noar ti set v0='4AZD5NOM1' where id=5; -update noar tt set b1='UPRKWJ3VB84ZRC0CBVLKRF8SCWH' where id=5; -update noar ti set b1='UPRKWJ3VB84ZRC0CBVLKRF8SCWH' where id=5; -update noar tt set v0='NOCBN1A79A2II3B' where id=5; -update noar ti set v0='NOCBN1A79A2II3B' where id=5; -update noar tt set b2='ZS' where id=5; -update noar ti set b2='ZS' where id=5; -update noar tt set v0='CB7IHOBJ4ATUTLQUWN' where id=6; -update noar ti set v0='CB7IHOBJ4ATUTLQUWN' where id=6; -update noar tt set b0='W9IUBJ4NU8YH3QO' where id=6; -update noar ti set b0='W9IUBJ4NU8YH3QO' where id=6; -update noar tt set v0='V7BIZO3MS1U' where id=6; -update noar ti set v0='V7BIZO3MS1U' where id=6; -update noar tt set b1='G4RIHF1818QC6TEQT3AA4' where id=6; -update noar ti set b1='G4RIHF1818QC6TEQT3AA4' where id=6; -update noar tt set v0='E510KMDIJ08JXHXBMJJUMOXF7VS' where id=6; -update noar ti set v0='E510KMDIJ08JXHXBMJJUMOXF7VS' where id=6; -update noar tt set b2='OVJN' where id=6; -update noar ti set b2='OVJN' where id=6; -update noar tt set v0='R25SBGXEV309CW1RBE6890P63KTBU3' where id=7; -update noar ti set v0='R25SBGXEV309CW1RBE6890P63KTBU3' where id=7; -update noar tt set b0='5998KF3KPFL08' where id=7; -update noar ti set b0='5998KF3KPFL08' where id=7; -update noar tt set v0='QHOHI8JYPQI' where id=7; -update noar ti set v0='QHOHI8JYPQI' where id=7; -update noar tt set b1='BUBHPPJXWY2RZHV606VMG5' where id=7; -update noar ti set b1='BUBHPPJXWY2RZHV606VMG5' where id=7; -update noar tt set v0='0FU2249A' where id=7; -update noar ti set v0='0FU2249A' where id=7; -update noar tt set b2='53SK5F83MS5QNW0DM' where id=7; -update noar ti set b2='53SK5F83MS5QNW0DM' where id=7; -update noar tt set v0='9466KNN1G8EVUQ4368' where id=8; -update noar ti set v0='9466KNN1G8EVUQ4368' where id=8; -update noar tt set b0='HI5PC' where id=8; -update noar ti set b0='HI5PC' where id=8; -update noar tt set v0='MOWF74G2NNABGLI2NYMJ57OO2' where id=8; -update noar ti set v0='MOWF74G2NNABGLI2NYMJ57OO2' where id=8; -update noar tt set b1='46WV457IVX5SEAD9' where id=8; -update noar ti set b1='46WV457IVX5SEAD9' where id=8; -update noar tt set v0='DKW6MKAU5PBEWF043CC8' where id=8; -update noar ti set v0='DKW6MKAU5PBEWF043CC8' where id=8; -update noar tt set b2='RVQQHZG' where id=8; -update noar ti set b2='RVQQHZG' where id=8; -update noar tt set v0='1V1IUMS1WRTQRDUIEHF' where id=9; -update noar ti set v0='1V1IUMS1WRTQRDUIEHF' where id=9; -update noar tt set b0='94PL9F5UNSZBRZX3JI5ACF38' where id=9; -update noar ti set b0='94PL9F5UNSZBRZX3JI5ACF38' where id=9; -update noar tt set v0='0OV' where id=9; -update noar ti set v0='0OV' where id=9; -update noar tt set b1='E' where id=9; -update noar ti set b1='E' where id=9; -update noar tt set v0='BHAFL3' where id=9; -update noar ti set v0='BHAFL3' where id=9; -update noar tt set b2='S5VBF9H' where id=9; -update noar ti set b2='S5VBF9H' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -f0 int null, -v0 varchar(32) null, -b0 blob null, -b1 tinyblob null, -b2 tinyblob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='AIP5C6GK1EXDR4VX' where id=1; -update noar ti set v0='AIP5C6GK1EXDR4VX' where id=1; -update noar tt set b0='IVBDVXHA0FE3JDGN2GBH6TEBJ' where id=1; -update noar ti set b0='IVBDVXHA0FE3JDGN2GBH6TEBJ' where id=1; -update noar tt set v0='X3A4XMHNLU' where id=1; -update noar ti set v0='X3A4XMHNLU' where id=1; -update noar tt set b1='8394I5M7P' where id=1; -update noar ti set b1='8394I5M7P' where id=1; -update noar tt set v0='BXNJZCUO5CBF' where id=1; -update noar ti set v0='BXNJZCUO5CBF' where id=1; -update noar tt set b2='X6Y3GJ8' where id=1; -update noar ti set b2='X6Y3GJ8' where id=1; -update noar tt set v0='ROG6OVJ3YA6A1TCOUYW4ZA0R' where id=2; -update noar ti set v0='ROG6OVJ3YA6A1TCOUYW4ZA0R' where id=2; -update noar tt set b0='Z1QVQX0KZ22YD6XVBDX0B8CQWYMA0' where id=2; -update noar ti set b0='Z1QVQX0KZ22YD6XVBDX0B8CQWYMA0' where id=2; -update noar tt set v0='NRT4JCBDDX7QHBH9YR8MRA0757D7' where id=2; -update noar ti set v0='NRT4JCBDDX7QHBH9YR8MRA0757D7' where id=2; -update noar tt set b1='3Z7BEXVVKVPM88DP8JZMAS' where id=2; -update noar ti set b1='3Z7BEXVVKVPM88DP8JZMAS' where id=2; -update noar tt set v0='9VJIEYZC9MDJDDPHKDGO2XS' where id=2; -update noar ti set v0='9VJIEYZC9MDJDDPHKDGO2XS' where id=2; -update noar tt set b2='RLATNT3J5YR4XU8' where id=2; -update noar ti set b2='RLATNT3J5YR4XU8' where id=2; -update noar tt set v0='7Y42XF9DUYYE' where id=3; -update noar ti set v0='7Y42XF9DUYYE' where id=3; -update noar tt set b0='SLULLESINTOCHUT518R3MH18E3QI' where id=3; -update noar ti set b0='SLULLESINTOCHUT518R3MH18E3QI' where id=3; -update noar tt set v0='QCRZX' where id=3; -update noar ti set v0='QCRZX' where id=3; -update noar tt set b1='VZW65' where id=3; -update noar ti set b1='VZW65' where id=3; -update noar tt set v0='MWYZIBW7Q0UL6EXUIDF369' where id=3; -update noar ti set v0='MWYZIBW7Q0UL6EXUIDF369' where id=3; -update noar tt set b2='NVQOPFMD4TJI3V6KYGW21IHOT' where id=3; -update noar ti set b2='NVQOPFMD4TJI3V6KYGW21IHOT' where id=3; -update noar tt set v0='S4L6DON8MM836D8XH0SPMMCHH59K' where id=4; -update noar ti set v0='S4L6DON8MM836D8XH0SPMMCHH59K' where id=4; -update noar tt set b0='THSF98AEOX8AOB9C9H23' where id=4; -update noar ti set b0='THSF98AEOX8AOB9C9H23' where id=4; -update noar tt set v0='R3WT8E31WJ3QVV66E7' where id=4; -update noar ti set v0='R3WT8E31WJ3QVV66E7' where id=4; -update noar tt set b1='DPQVDHE' where id=4; -update noar ti set b1='DPQVDHE' where id=4; -update noar tt set v0='3OMDLXE28A6JLJ1TPROBW8KX5CL9VXO' where id=4; -update noar ti set v0='3OMDLXE28A6JLJ1TPROBW8KX5CL9VXO' where id=4; -update noar tt set b2='D967J0OU' where id=4; -update noar ti set b2='D967J0OU' where id=4; -update noar tt set v0='WLGCRVF8VZEIZYDX0RN9XYUCX5R5' where id=5; -update noar ti set v0='WLGCRVF8VZEIZYDX0RN9XYUCX5R5' where id=5; -update noar tt set b0='7RM6M6RW' where id=5; -update noar ti set b0='7RM6M6RW' where id=5; -update noar tt set v0='W4LIVDNV' where id=5; -update noar ti set v0='W4LIVDNV' where id=5; -update noar tt set b1='O65D4Z' where id=5; -update noar ti set b1='O65D4Z' where id=5; -update noar tt set v0='VNNEBEGAL1PJ238' where id=5; -update noar ti set v0='VNNEBEGAL1PJ238' where id=5; -update noar tt set b2='E4FMJDQC1JF' where id=5; -update noar ti set b2='E4FMJDQC1JF' where id=5; -update noar tt set v0='FCXDF1VBUM3I4GPI0ZEPAG7QI7' where id=6; -update noar ti set v0='FCXDF1VBUM3I4GPI0ZEPAG7QI7' where id=6; -update noar tt set b0='DSYQVFY0BOFU1C5FABY' where id=6; -update noar ti set b0='DSYQVFY0BOFU1C5FABY' where id=6; -update noar tt set v0='7VSCKT9O' where id=6; -update noar ti set v0='7VSCKT9O' where id=6; -update noar tt set b1='ENV60KRC2RFTSP3ON3SNB4QM3W' where id=6; -update noar ti set b1='ENV60KRC2RFTSP3ON3SNB4QM3W' where id=6; -update noar tt set v0='JE7' where id=6; -update noar ti set v0='JE7' where id=6; -update noar tt set b2='U588UPEKEY9YBJSIOPWD7WIHR49' where id=6; -update noar ti set b2='U588UPEKEY9YBJSIOPWD7WIHR49' where id=6; -update noar tt set v0='PQPWMOTLZOU' where id=7; -update noar ti set v0='PQPWMOTLZOU' where id=7; -update noar tt set b0='KMTRBVMCE9LG2ZHYO8B9' where id=7; -update noar ti set b0='KMTRBVMCE9LG2ZHYO8B9' where id=7; -update noar tt set v0='4PWYQ8H1TQ6' where id=7; -update noar ti set v0='4PWYQ8H1TQ6' where id=7; -update noar tt set b1='D' where id=7; -update noar ti set b1='D' where id=7; -update noar tt set v0='QW3GY6QRU92OJX6QOJBTLFZ8ES8EGIGI' where id=7; -update noar ti set v0='QW3GY6QRU92OJX6QOJBTLFZ8ES8EGIGI' where id=7; -update noar tt set b2='8WI1XJJK' where id=7; -update noar ti set b2='8WI1XJJK' where id=7; -update noar tt set v0='ISTV' where id=8; -update noar ti set v0='ISTV' where id=8; -update noar tt set b0='X50QVX0K3FY3B' where id=8; -update noar ti set b0='X50QVX0K3FY3B' where id=8; -update noar tt set v0='5GTPVAA2IOUR03TI2IDBXQQF' where id=8; -update noar ti set v0='5GTPVAA2IOUR03TI2IDBXQQF' where id=8; -update noar tt set b1='7' where id=8; -update noar ti set b1='7' where id=8; -update noar tt set v0='I3MM0MBUXVTQR2GTIKOYWY3' where id=8; -update noar ti set v0='I3MM0MBUXVTQR2GTIKOYWY3' where id=8; -update noar tt set b2='CY907' where id=8; -update noar ti set b2='CY907' where id=8; -update noar tt set v0='XEUK6ZYDRQOCYYLZKBBW' where id=9; -update noar ti set v0='XEUK6ZYDRQOCYYLZKBBW' where id=9; -update noar tt set b0='18PMD' where id=9; -update noar ti set b0='18PMD' where id=9; -update noar tt set v0='ZAQFD' where id=9; -update noar ti set v0='ZAQFD' where id=9; -update noar tt set b1='HRQ' where id=9; -update noar ti set b1='HRQ' where id=9; -update noar tt set v0='2' where id=9; -update noar ti set v0='2' where id=9; -update noar tt set b2='E87IXO4MNDE8INLC3NKSHY' where id=9; -update noar ti set b2='E87IXO4MNDE8INLC3NKSHY' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -f0 int null, -v0 varchar(256) null, -b0 blob null, -b1 tinyblob null, -b2 tinyblob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='M7MUQB5XL' where id=1; -update noar ti set v0='M7MUQB5XL' where id=1; -update noar tt set b0='8RRKI0MIJIVXSWVFLKJDGMOA3EC6F' where id=1; -update noar ti set b0='8RRKI0MIJIVXSWVFLKJDGMOA3EC6F' where id=1; -update noar tt set v0='PDY' where id=1; -update noar ti set v0='PDY' where id=1; -update noar tt set b1='AJVAF0R' where id=1; -update noar ti set b1='AJVAF0R' where id=1; -update noar tt set v0='75GT' where id=1; -update noar ti set v0='75GT' where id=1; -update noar tt set b2='KV6LEQSGJ1KQ4W7VSIU' where id=1; -update noar ti set b2='KV6LEQSGJ1KQ4W7VSIU' where id=1; -update noar tt set v0='U4S83AXPC20ZG1' where id=2; -update noar ti set v0='U4S83AXPC20ZG1' where id=2; -update noar tt set b0='PGZA4LT' where id=2; -update noar ti set b0='PGZA4LT' where id=2; -update noar tt set v0='N1' where id=2; -update noar ti set v0='N1' where id=2; -update noar tt set b1='WI' where id=2; -update noar ti set b1='WI' where id=2; -update noar tt set v0='7Y6DSN6Q6S03QD04SYG6' where id=2; -update noar ti set v0='7Y6DSN6Q6S03QD04SYG6' where id=2; -update noar tt set b2='4KY9BKG36' where id=2; -update noar ti set b2='4KY9BKG36' where id=2; -update noar tt set v0='DYBLV' where id=3; -update noar ti set v0='DYBLV' where id=3; -update noar tt set b0='MPEDLK4AHMCVN9ETRH' where id=3; -update noar ti set b0='MPEDLK4AHMCVN9ETRH' where id=3; -update noar tt set v0='16CGQW78FW8BFSQY9RM' where id=3; -update noar ti set v0='16CGQW78FW8BFSQY9RM' where id=3; -update noar tt set b1='ZTQDP7HFVV7UOX4FAS' where id=3; -update noar ti set b1='ZTQDP7HFVV7UOX4FAS' where id=3; -update noar tt set v0='17BU0L3J' where id=3; -update noar ti set v0='17BU0L3J' where id=3; -update noar tt set b2='V87MKUB5RCASG' where id=3; -update noar ti set b2='V87MKUB5RCASG' where id=3; -update noar tt set v0='WJ2UP' where id=4; -update noar ti set v0='WJ2UP' where id=4; -update noar tt set b0='94T81QNS55HXC1CWNJFU0' where id=4; -update noar ti set b0='94T81QNS55HXC1CWNJFU0' where id=4; -update noar tt set v0='PHLBUEH' where id=4; -update noar ti set v0='PHLBUEH' where id=4; -update noar tt set b1='9PLNQ7WD2AY1CLRV5FD' where id=4; -update noar ti set b1='9PLNQ7WD2AY1CLRV5FD' where id=4; -update noar tt set v0='F' where id=4; -update noar ti set v0='F' where id=4; -update noar tt set b2='5JOYSH3W8H8' where id=4; -update noar ti set b2='5JOYSH3W8H8' where id=4; -update noar tt set v0='S3J8QTBHCLPWG755' where id=5; -update noar ti set v0='S3J8QTBHCLPWG755' where id=5; -update noar tt set b0='9Q00S9AXC4NU7C7RSFJC1U2' where id=5; -update noar ti set b0='9Q00S9AXC4NU7C7RSFJC1U2' where id=5; -update noar tt set v0='4LQ7C40AF49YCRYMCWTZU1O7' where id=5; -update noar ti set v0='4LQ7C40AF49YCRYMCWTZU1O7' where id=5; -update noar tt set b1='34NTH1KQ80DKYWJ' where id=5; -update noar ti set b1='34NTH1KQ80DKYWJ' where id=5; -update noar tt set v0='O' where id=5; -update noar ti set v0='O' where id=5; -update noar tt set b2='ROY5D1P1NTM2KZ' where id=5; -update noar ti set b2='ROY5D1P1NTM2KZ' where id=5; -update noar tt set v0='W7I54ILS7B5SIKDK99' where id=6; -update noar ti set v0='W7I54ILS7B5SIKDK99' where id=6; -update noar tt set b0='4SKRCDT62GMMYSHOFM94S' where id=6; -update noar ti set b0='4SKRCDT62GMMYSHOFM94S' where id=6; -update noar tt set v0='0H75SK7FMLDCGRYPSQBEYXX' where id=6; -update noar ti set v0='0H75SK7FMLDCGRYPSQBEYXX' where id=6; -update noar tt set b1='PTIHXY' where id=6; -update noar ti set b1='PTIHXY' where id=6; -update noar tt set v0='W1WRJIAHLAAPMFDKS' where id=6; -update noar ti set v0='W1WRJIAHLAAPMFDKS' where id=6; -update noar tt set b2='0ZJLUKU44YF8NWP' where id=6; -update noar ti set b2='0ZJLUKU44YF8NWP' where id=6; -update noar tt set v0='7W1WHIRQAZLR3X' where id=7; -update noar ti set v0='7W1WHIRQAZLR3X' where id=7; -update noar tt set b0='95PEAGL06CXI8XQFSA' where id=7; -update noar ti set b0='95PEAGL06CXI8XQFSA' where id=7; -update noar tt set v0='IIP76CEI5FS5B4TKZIQBPR24' where id=7; -update noar ti set v0='IIP76CEI5FS5B4TKZIQBPR24' where id=7; -update noar tt set b1='7QFL2IS8EZW3' where id=7; -update noar ti set b1='7QFL2IS8EZW3' where id=7; -update noar tt set v0='XVSYYHGZCZ4D0RJ49ASRPIVATP88XW0' where id=7; -update noar ti set v0='XVSYYHGZCZ4D0RJ49ASRPIVATP88XW0' where id=7; -update noar tt set b2='MGRU2JL9QW8J0W0HP6P' where id=7; -update noar ti set b2='MGRU2JL9QW8J0W0HP6P' where id=7; -update noar tt set v0='XDK7HERTKA2TVCJBMXB0XJZD' where id=8; -update noar ti set v0='XDK7HERTKA2TVCJBMXB0XJZD' where id=8; -update noar tt set b0='3SB' where id=8; -update noar ti set b0='3SB' where id=8; -update noar tt set v0='DMQCNLC' where id=8; -update noar ti set v0='DMQCNLC' where id=8; -update noar tt set b1='3OABOBW651QRPCXJSDWV' where id=8; -update noar ti set b1='3OABOBW651QRPCXJSDWV' where id=8; -update noar tt set v0='7MWPINXQH6JQTPV' where id=8; -update noar ti set v0='7MWPINXQH6JQTPV' where id=8; -update noar tt set b2='DCB7TW' where id=8; -update noar ti set b2='DCB7TW' where id=8; -update noar tt set v0='OFHRRZ3T' where id=9; -update noar ti set v0='OFHRRZ3T' where id=9; -update noar tt set b0='8ZXQ8PZ30KHP4' where id=9; -update noar ti set b0='8ZXQ8PZ30KHP4' where id=9; -update noar tt set v0='0A3BSZKOPA565O2K2' where id=9; -update noar ti set v0='0A3BSZKOPA565O2K2' where id=9; -update noar tt set b1='4H3O5WCZL1PXNVO87O' where id=9; -update noar ti set b1='4H3O5WCZL1PXNVO87O' where id=9; -update noar tt set v0='RGIOSFSPJN8A75F' where id=9; -update noar ti set v0='RGIOSFSPJN8A75F' where id=9; -update noar tt set b2='75' where id=9; -update noar ti set b2='75' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -f0 int not null, -v0 varchar(32) not null, -b0 blob not null, -b1 tinyblob not null, -b2 tinyblob not null -) engine=tokudb; -insert into tt values (1,0,'','','',''); -insert into tt values (2,0,'','','',''); -insert into tt values (3,0,'','','',''); -insert into tt values (4,0,'','','',''); -insert into tt values (5,0,'','','',''); -insert into tt values (6,0,'','','',''); -insert into tt values (7,0,'','','',''); -insert into tt values (8,0,'','','',''); -insert into tt values (9,0,'','','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='OKXV' where id=1; -update noar ti set v0='OKXV' where id=1; -update noar tt set b0='FUKXRMT3J9L2CZZL' where id=1; -update noar ti set b0='FUKXRMT3J9L2CZZL' where id=1; -update noar tt set v0='BJBMDJPN' where id=1; -update noar ti set v0='BJBMDJPN' where id=1; -update noar tt set b1='1A90D0KQ' where id=1; -update noar ti set b1='1A90D0KQ' where id=1; -update noar tt set v0='M' where id=1; -update noar ti set v0='M' where id=1; -update noar tt set b2='7TGZGXI29CF0SY91' where id=1; -update noar ti set b2='7TGZGXI29CF0SY91' where id=1; -update noar tt set v0='RML45IQYQKDYALTRW70VFX06H9RP' where id=2; -update noar ti set v0='RML45IQYQKDYALTRW70VFX06H9RP' where id=2; -update noar tt set b0='E0RJIW9JCDM9YCLCWWG9' where id=2; -update noar ti set b0='E0RJIW9JCDM9YCLCWWG9' where id=2; -update noar tt set v0='5' where id=2; -update noar ti set v0='5' where id=2; -update noar tt set b1='7A2N7ZMIF6MCYH' where id=2; -update noar ti set b1='7A2N7ZMIF6MCYH' where id=2; -update noar tt set v0='OMR68JHA0KVKW5YGVWNDFYFPQG' where id=2; -update noar ti set v0='OMR68JHA0KVKW5YGVWNDFYFPQG' where id=2; -update noar tt set b2='FC7X1G472Q5JDSKMM4CQJP46LO5W' where id=2; -update noar ti set b2='FC7X1G472Q5JDSKMM4CQJP46LO5W' where id=2; -update noar tt set v0='X5LSB4N2IBWBWM9Y9GVHZM3OE4D0W8' where id=3; -update noar ti set v0='X5LSB4N2IBWBWM9Y9GVHZM3OE4D0W8' where id=3; -update noar tt set b0='AMSVFHFMV0OM4RGF19KOGSMRD2FOMX4O' where id=3; -update noar ti set b0='AMSVFHFMV0OM4RGF19KOGSMRD2FOMX4O' where id=3; -update noar tt set v0='11O38AOC2F671ZJHE7YQD1HW724' where id=3; -update noar ti set v0='11O38AOC2F671ZJHE7YQD1HW724' where id=3; -update noar tt set b1='FD9S7YVCEM6CZ' where id=3; -update noar ti set b1='FD9S7YVCEM6CZ' where id=3; -update noar tt set v0='TGOHYDG4RKY' where id=3; -update noar ti set v0='TGOHYDG4RKY' where id=3; -update noar tt set b2='EI6VW8IZMIE6STV' where id=3; -update noar ti set b2='EI6VW8IZMIE6STV' where id=3; -update noar tt set v0='W' where id=4; -update noar ti set v0='W' where id=4; -update noar tt set b0='USLMDEQQBJ72IJHSU6NN9MF27LTUR' where id=4; -update noar ti set b0='USLMDEQQBJ72IJHSU6NN9MF27LTUR' where id=4; -update noar tt set v0='ZM3DG7C8NXX66S8PP' where id=4; -update noar ti set v0='ZM3DG7C8NXX66S8PP' where id=4; -update noar tt set b1='NCGWGBWT87J30J5ZCD' where id=4; -update noar ti set b1='NCGWGBWT87J30J5ZCD' where id=4; -update noar tt set v0='IGKISGROXONEIFJVHNW91D' where id=4; -update noar ti set v0='IGKISGROXONEIFJVHNW91D' where id=4; -update noar tt set b2='DMX8RSD9XDXTPU4Q1TZFI' where id=4; -update noar ti set b2='DMX8RSD9XDXTPU4Q1TZFI' where id=4; -update noar tt set v0='RULR' where id=5; -update noar ti set v0='RULR' where id=5; -update noar tt set b0='H' where id=5; -update noar ti set b0='H' where id=5; -update noar tt set v0='AV9RJMPNX84FSS' where id=5; -update noar ti set v0='AV9RJMPNX84FSS' where id=5; -update noar tt set b1='GW7AGVJWY13AFZHPCO5' where id=5; -update noar ti set b1='GW7AGVJWY13AFZHPCO5' where id=5; -update noar tt set v0='SZY7MANJ7J02PK' where id=5; -update noar ti set v0='SZY7MANJ7J02PK' where id=5; -update noar tt set b2='77EF6UPM830MUH5KS3R6Y9BD0D' where id=5; -update noar ti set b2='77EF6UPM830MUH5KS3R6Y9BD0D' where id=5; -update noar tt set v0='3I0K7MU758X33' where id=6; -update noar ti set v0='3I0K7MU758X33' where id=6; -update noar tt set b0='7X3KAJAECBTT5ATDFT' where id=6; -update noar ti set b0='7X3KAJAECBTT5ATDFT' where id=6; -update noar tt set v0='WZZ0S18EE78UNPJXDVDJIL4CTNRPY3T' where id=6; -update noar ti set v0='WZZ0S18EE78UNPJXDVDJIL4CTNRPY3T' where id=6; -update noar tt set b1='N4OGX8' where id=6; -update noar ti set b1='N4OGX8' where id=6; -update noar tt set v0='YVUTVNAFZ9PA5M2YXDUG3FICT7JLND' where id=6; -update noar ti set v0='YVUTVNAFZ9PA5M2YXDUG3FICT7JLND' where id=6; -update noar tt set b2='I' where id=6; -update noar ti set b2='I' where id=6; -update noar tt set v0='571OT26XF38KSOH4' where id=7; -update noar ti set v0='571OT26XF38KSOH4' where id=7; -update noar tt set b0='EQ4290L2UV' where id=7; -update noar ti set b0='EQ4290L2UV' where id=7; -update noar tt set v0='PBF10' where id=7; -update noar ti set v0='PBF10' where id=7; -update noar tt set b1='JWT5A' where id=7; -update noar ti set b1='JWT5A' where id=7; -update noar tt set v0='QZN66125ZD0' where id=7; -update noar ti set v0='QZN66125ZD0' where id=7; -update noar tt set b2='8O8RWW2NIXVDJ1TV' where id=7; -update noar ti set b2='8O8RWW2NIXVDJ1TV' where id=7; -update noar tt set v0='8TZCM0VKHMFQXNHZA047T2' where id=8; -update noar ti set v0='8TZCM0VKHMFQXNHZA047T2' where id=8; -update noar tt set b0='MCH' where id=8; -update noar ti set b0='MCH' where id=8; -update noar tt set v0='8CHUGB4Q2Q33O6YD9JCB' where id=8; -update noar ti set v0='8CHUGB4Q2Q33O6YD9JCB' where id=8; -update noar tt set b1='FAFTHFI4DRDXY1NFGIGHIS6L02H42IY' where id=8; -update noar ti set b1='FAFTHFI4DRDXY1NFGIGHIS6L02H42IY' where id=8; -update noar tt set v0='H098LT1TD40' where id=8; -update noar ti set v0='H098LT1TD40' where id=8; -update noar tt set b2='CI0B' where id=8; -update noar ti set b2='CI0B' where id=8; -update noar tt set v0='N1559NH1EOJB' where id=9; -update noar ti set v0='N1559NH1EOJB' where id=9; -update noar tt set b0='8J1VLZB1K' where id=9; -update noar ti set b0='8J1VLZB1K' where id=9; -update noar tt set v0='7CGE6Q04TEPCJ7VW' where id=9; -update noar ti set v0='7CGE6Q04TEPCJ7VW' where id=9; -update noar tt set b1='OLOUA' where id=9; -update noar ti set b1='OLOUA' where id=9; -update noar tt set v0='2FTAIAF90EHM2EYGL13FL7J' where id=9; -update noar ti set v0='2FTAIAF90EHM2EYGL13FL7J' where id=9; -update noar tt set b2='GQ8EA' where id=9; -update noar ti set b2='GQ8EA' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -f0 int not null, -v0 varchar(256) not null, -b0 blob not null, -b1 tinyblob not null, -b2 tinyblob not null -) engine=tokudb; -insert into tt values (1,0,'','','',''); -insert into tt values (2,0,'','','',''); -insert into tt values (3,0,'','','',''); -insert into tt values (4,0,'','','',''); -insert into tt values (5,0,'','','',''); -insert into tt values (6,0,'','','',''); -insert into tt values (7,0,'','','',''); -insert into tt values (8,0,'','','',''); -insert into tt values (9,0,'','','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='ZO7U7D3DNLFTD2MFBGV5P68WK8NY' where id=1; -update noar ti set v0='ZO7U7D3DNLFTD2MFBGV5P68WK8NY' where id=1; -update noar tt set b0='ZZ169AMK3LRNVY4LLEOQKTM5WWTEM' where id=1; -update noar ti set b0='ZZ169AMK3LRNVY4LLEOQKTM5WWTEM' where id=1; -update noar tt set v0='IYUB' where id=1; -update noar ti set v0='IYUB' where id=1; -update noar tt set b1='ZJOQEHT1LA5K5WTDHQ' where id=1; -update noar ti set b1='ZJOQEHT1LA5K5WTDHQ' where id=1; -update noar tt set v0='VLP3VPHCM' where id=1; -update noar ti set v0='VLP3VPHCM' where id=1; -update noar tt set b2='PG36567LNULM3L6' where id=1; -update noar ti set b2='PG36567LNULM3L6' where id=1; -update noar tt set v0='V8HCGT3WT41FJMEH' where id=2; -update noar ti set v0='V8HCGT3WT41FJMEH' where id=2; -update noar tt set b0='5QISCELYU8KDCIHLLN409LY0Y2LFM' where id=2; -update noar ti set b0='5QISCELYU8KDCIHLLN409LY0Y2LFM' where id=2; -update noar tt set v0='HTWZTQ4CD551X00W9I44YSM9E' where id=2; -update noar ti set v0='HTWZTQ4CD551X00W9I44YSM9E' where id=2; -update noar tt set b1='0V9BUYQ40D3BDUL4XLDV7DXV5T0ABD' where id=2; -update noar ti set b1='0V9BUYQ40D3BDUL4XLDV7DXV5T0ABD' where id=2; -update noar tt set v0='YSCA6E0PU' where id=2; -update noar ti set v0='YSCA6E0PU' where id=2; -update noar tt set b2='US6NQ61QWUE' where id=2; -update noar ti set b2='US6NQ61QWUE' where id=2; -update noar tt set v0='YZSKOG' where id=3; -update noar ti set v0='YZSKOG' where id=3; -update noar tt set b0='DUJCBW9IPF' where id=3; -update noar ti set b0='DUJCBW9IPF' where id=3; -update noar tt set v0='STQ05NUV' where id=3; -update noar ti set v0='STQ05NUV' where id=3; -update noar tt set b1='ZG8R2I1J' where id=3; -update noar ti set b1='ZG8R2I1J' where id=3; -update noar tt set v0='UMI2VHBWV304D889A2E85S6YCT27' where id=3; -update noar ti set v0='UMI2VHBWV304D889A2E85S6YCT27' where id=3; -update noar tt set b2='W5QN2MP754SU2EI113QE0WXUYX' where id=3; -update noar ti set b2='W5QN2MP754SU2EI113QE0WXUYX' where id=3; -update noar tt set v0='16DL356E5HE0RHQLVVHA4JIP73H' where id=4; -update noar ti set v0='16DL356E5HE0RHQLVVHA4JIP73H' where id=4; -update noar tt set b0='P91NYVJ' where id=4; -update noar ti set b0='P91NYVJ' where id=4; -update noar tt set v0='ZL2G24XEZJDM1GUZVT5047SD9' where id=4; -update noar ti set v0='ZL2G24XEZJDM1GUZVT5047SD9' where id=4; -update noar tt set b1='F5DXRNVBJ1QI9' where id=4; -update noar ti set b1='F5DXRNVBJ1QI9' where id=4; -update noar tt set v0='E6DKDKT5GH' where id=4; -update noar ti set v0='E6DKDKT5GH' where id=4; -update noar tt set b2='J7A3VSMEUCAXBJV98O3FT6NLUW' where id=4; -update noar ti set b2='J7A3VSMEUCAXBJV98O3FT6NLUW' where id=4; -update noar tt set v0='WBLV' where id=5; -update noar ti set v0='WBLV' where id=5; -update noar tt set b0='I5L6TZIL4NICY' where id=5; -update noar ti set b0='I5L6TZIL4NICY' where id=5; -update noar tt set v0='10TM8VPCA26948BVGPNM7UY5PFXYH' where id=5; -update noar ti set v0='10TM8VPCA26948BVGPNM7UY5PFXYH' where id=5; -update noar tt set b1='DFBDCAN540J5SC' where id=5; -update noar ti set b1='DFBDCAN540J5SC' where id=5; -update noar tt set v0='SCORH6ALK3CPVIIQ' where id=5; -update noar ti set v0='SCORH6ALK3CPVIIQ' where id=5; -update noar tt set b2='9NQ' where id=5; -update noar ti set b2='9NQ' where id=5; -update noar tt set v0='L9FU1YJPDN24JL2PARHTAFX' where id=6; -update noar ti set v0='L9FU1YJPDN24JL2PARHTAFX' where id=6; -update noar tt set b0='LJ82BOTS1LRZ4ZLO23J0JHO6Y878V' where id=6; -update noar ti set b0='LJ82BOTS1LRZ4ZLO23J0JHO6Y878V' where id=6; -update noar tt set v0='KWJMR5QAE3441O7W293V9B9' where id=6; -update noar ti set v0='KWJMR5QAE3441O7W293V9B9' where id=6; -update noar tt set b1='W7KLN4YPSEP' where id=6; -update noar ti set b1='W7KLN4YPSEP' where id=6; -update noar tt set v0='H5USTX' where id=6; -update noar ti set v0='H5USTX' where id=6; -update noar tt set b2='5PA377A2OWQZIJHGPGC4' where id=6; -update noar ti set b2='5PA377A2OWQZIJHGPGC4' where id=6; -update noar tt set v0='CEL4LFVC6UIFGQSWWITGVN' where id=7; -update noar ti set v0='CEL4LFVC6UIFGQSWWITGVN' where id=7; -update noar tt set b0='OY9YJKK28R9UIU2OZBVH7N0ZZLTE4P6' where id=7; -update noar ti set b0='OY9YJKK28R9UIU2OZBVH7N0ZZLTE4P6' where id=7; -update noar tt set v0='HU053GU4X63YLETGZMX91HYS4M4HX' where id=7; -update noar ti set v0='HU053GU4X63YLETGZMX91HYS4M4HX' where id=7; -update noar tt set b1='C8EDJXRWGHCQ7' where id=7; -update noar ti set b1='C8EDJXRWGHCQ7' where id=7; -update noar tt set v0='B9OSOCDT4BO3CF' where id=7; -update noar ti set v0='B9OSOCDT4BO3CF' where id=7; -update noar tt set b2='792MGR8IKDB4M' where id=7; -update noar ti set b2='792MGR8IKDB4M' where id=7; -update noar tt set v0='0ZCT6UEIP7H5S75' where id=8; -update noar ti set v0='0ZCT6UEIP7H5S75' where id=8; -update noar tt set b0='W66J664SQTDF6G' where id=8; -update noar ti set b0='W66J664SQTDF6G' where id=8; -update noar tt set v0='WAH3824ZXNFEIWQ' where id=8; -update noar ti set v0='WAH3824ZXNFEIWQ' where id=8; -update noar tt set b1='RJHS70ITMWVG0S6N4TMPDODPL' where id=8; -update noar ti set b1='RJHS70ITMWVG0S6N4TMPDODPL' where id=8; -update noar tt set v0='1Z4' where id=8; -update noar ti set v0='1Z4' where id=8; -update noar tt set b2='Y' where id=8; -update noar ti set b2='Y' where id=8; -update noar tt set v0='AG2' where id=9; -update noar ti set v0='AG2' where id=9; -update noar tt set b0='L6NZPTLWR0TY8' where id=9; -update noar ti set b0='L6NZPTLWR0TY8' where id=9; -update noar tt set v0='HVKQFH8SJKCTJEYQ1R' where id=9; -update noar ti set v0='HVKQFH8SJKCTJEYQ1R' where id=9; -update noar tt set b1='VXF0WMDS64J65N' where id=9; -update noar ti set b1='VXF0WMDS64J65N' where id=9; -update noar tt set v0='YABL8SFYRJGGEHFS3CW' where id=9; -update noar ti set v0='YABL8SFYRJGGEHFS3CW' where id=9; -update noar tt set b2='63Y1IBC3XEKPXYQV4KH7' where id=9; -update noar ti set b2='63Y1IBC3XEKPXYQV4KH7' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -f0 int null, -v0 varchar(32) null, -b0 blob null, -b1 tinyblob null, -b2 blob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='4V3' where id=1; -update noar ti set v0='4V3' where id=1; -update noar tt set b0='IPYCM' where id=1; -update noar ti set b0='IPYCM' where id=1; -update noar tt set v0='MJD71YVRMFSMTMBSQWF251ZJEKTFXB' where id=1; -update noar ti set v0='MJD71YVRMFSMTMBSQWF251ZJEKTFXB' where id=1; -update noar tt set b1='WZUN0' where id=1; -update noar ti set b1='WZUN0' where id=1; -update noar tt set v0='EATAB' where id=1; -update noar ti set v0='EATAB' where id=1; -update noar tt set b2='3A2XFVKANR0MJYXGT59FBC4KB' where id=1; -update noar ti set b2='3A2XFVKANR0MJYXGT59FBC4KB' where id=1; -update noar tt set v0='Q40MBD' where id=2; -update noar ti set v0='Q40MBD' where id=2; -update noar tt set b0='YQAZCMOUEVDDP6S0ZZI6RVCY' where id=2; -update noar ti set b0='YQAZCMOUEVDDP6S0ZZI6RVCY' where id=2; -update noar tt set v0='580L6YWAWE6TXDIQBHVAQ1HHSGAH8VC' where id=2; -update noar ti set v0='580L6YWAWE6TXDIQBHVAQ1HHSGAH8VC' where id=2; -update noar tt set b1='79F0HCZPAAK2XRCL' where id=2; -update noar ti set b1='79F0HCZPAAK2XRCL' where id=2; -update noar tt set v0='ACY8HN5C11JJ0GDNY' where id=2; -update noar ti set v0='ACY8HN5C11JJ0GDNY' where id=2; -update noar tt set b2='CMSUT' where id=2; -update noar ti set b2='CMSUT' where id=2; -update noar tt set v0='XEFIJ4K2QVKTHHIS7MF1A86JFZPFN7' where id=3; -update noar ti set v0='XEFIJ4K2QVKTHHIS7MF1A86JFZPFN7' where id=3; -update noar tt set b0='3IZGGWII' where id=3; -update noar ti set b0='3IZGGWII' where id=3; -update noar tt set v0='BBOOSJU4Y3J' where id=3; -update noar ti set v0='BBOOSJU4Y3J' where id=3; -update noar tt set b1='KFMQ92VC57EN8YV02MWYAZGQJ4TBVY' where id=3; -update noar ti set b1='KFMQ92VC57EN8YV02MWYAZGQJ4TBVY' where id=3; -update noar tt set v0='EKK0FFP1XFUMQ0UUIBVH2OTJTJRXE80I' where id=3; -update noar ti set v0='EKK0FFP1XFUMQ0UUIBVH2OTJTJRXE80I' where id=3; -update noar tt set b2='1P2NXYCR8I2AI039PC5A' where id=3; -update noar ti set b2='1P2NXYCR8I2AI039PC5A' where id=3; -update noar tt set v0='IO7R' where id=4; -update noar ti set v0='IO7R' where id=4; -update noar tt set b0='W6X' where id=4; -update noar ti set b0='W6X' where id=4; -update noar tt set v0='P9PJ71I2J3VPVBHVPKFCO8K9T01T73TU' where id=4; -update noar ti set v0='P9PJ71I2J3VPVBHVPKFCO8K9T01T73TU' where id=4; -update noar tt set b1='V2XRL80933' where id=4; -update noar ti set b1='V2XRL80933' where id=4; -update noar tt set v0='UJYED2HRLBX4VX99NN3CYTBVZ' where id=4; -update noar ti set v0='UJYED2HRLBX4VX99NN3CYTBVZ' where id=4; -update noar tt set b2='5OHLTABSL40' where id=4; -update noar ti set b2='5OHLTABSL40' where id=4; -update noar tt set v0='YUJGL68DCOF' where id=5; -update noar ti set v0='YUJGL68DCOF' where id=5; -update noar tt set b0='CSWMHVZEFWG18YWXYJ9S4QSQRT' where id=5; -update noar ti set b0='CSWMHVZEFWG18YWXYJ9S4QSQRT' where id=5; -update noar tt set v0='0DPY8BQBSCD5O' where id=5; -update noar ti set v0='0DPY8BQBSCD5O' where id=5; -update noar tt set b1='T65QKAUW4OLYFT8' where id=5; -update noar ti set b1='T65QKAUW4OLYFT8' where id=5; -update noar tt set v0='Q3QA4ATUD' where id=5; -update noar ti set v0='Q3QA4ATUD' where id=5; -update noar tt set b2='G1D8R7C4I2G73KW' where id=5; -update noar ti set b2='G1D8R7C4I2G73KW' where id=5; -update noar tt set v0='L0KR' where id=6; -update noar ti set v0='L0KR' where id=6; -update noar tt set b0='V07U6MPNIVMTR2YHOA580CEFYZ5ZBE' where id=6; -update noar ti set b0='V07U6MPNIVMTR2YHOA580CEFYZ5ZBE' where id=6; -update noar tt set v0='T' where id=6; -update noar ti set v0='T' where id=6; -update noar tt set b1='B' where id=6; -update noar ti set b1='B' where id=6; -update noar tt set v0='7OUJFDFIZ6WN4JOP6L1N3RE6B5X97' where id=6; -update noar ti set v0='7OUJFDFIZ6WN4JOP6L1N3RE6B5X97' where id=6; -update noar tt set b2='N4' where id=6; -update noar ti set b2='N4' where id=6; -update noar tt set v0='JCDE5C81LYQU6N71BD3D0PJDNV95VV' where id=7; -update noar ti set v0='JCDE5C81LYQU6N71BD3D0PJDNV95VV' where id=7; -update noar tt set b0='Z' where id=7; -update noar ti set b0='Z' where id=7; -update noar tt set v0='WCC0XI' where id=7; -update noar ti set v0='WCC0XI' where id=7; -update noar tt set b1='SLD6C' where id=7; -update noar ti set b1='SLD6C' where id=7; -update noar tt set v0='BXA4QJZWCW0259' where id=7; -update noar ti set v0='BXA4QJZWCW0259' where id=7; -update noar tt set b2='HXUFL' where id=7; -update noar ti set b2='HXUFL' where id=7; -update noar tt set v0='U96URWV2KJY7PXDOIHE' where id=8; -update noar ti set v0='U96URWV2KJY7PXDOIHE' where id=8; -update noar tt set b0='NU4BE16QA' where id=8; -update noar ti set b0='NU4BE16QA' where id=8; -update noar tt set v0='1LGOF20CN' where id=8; -update noar ti set v0='1LGOF20CN' where id=8; -update noar tt set b1='RMSAGLSKXX51TIN0SKNQ1XENXZ' where id=8; -update noar ti set b1='RMSAGLSKXX51TIN0SKNQ1XENXZ' where id=8; -update noar tt set v0='QLJL' where id=8; -update noar ti set v0='QLJL' where id=8; -update noar tt set b2='EWIW876964QKSZLTVRXDLRZY4NK6F' where id=8; -update noar ti set b2='EWIW876964QKSZLTVRXDLRZY4NK6F' where id=8; -update noar tt set v0='SV5PMFK697' where id=9; -update noar ti set v0='SV5PMFK697' where id=9; -update noar tt set b0='14QQG7QFB' where id=9; -update noar ti set b0='14QQG7QFB' where id=9; -update noar tt set v0='DDON01WFZ' where id=9; -update noar ti set v0='DDON01WFZ' where id=9; -update noar tt set b1='0MSE3ILJSMC' where id=9; -update noar ti set b1='0MSE3ILJSMC' where id=9; -update noar tt set v0='CKP' where id=9; -update noar ti set v0='CKP' where id=9; -update noar tt set b2='IJQCFGBGPQKI61STIUC2XGBT7' where id=9; -update noar ti set b2='IJQCFGBGPQKI61STIUC2XGBT7' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -f0 int null, -v0 varchar(256) null, -b0 blob null, -b1 tinyblob null, -b2 blob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='9XDFQHRZ' where id=1; -update noar ti set v0='9XDFQHRZ' where id=1; -update noar tt set b0='AEY7FS3YGODFKFOKNDDJF' where id=1; -update noar ti set b0='AEY7FS3YGODFKFOKNDDJF' where id=1; -update noar tt set v0='RUULZNA5ORJSRYXLUOQWXO85VJTJK15N' where id=1; -update noar ti set v0='RUULZNA5ORJSRYXLUOQWXO85VJTJK15N' where id=1; -update noar tt set b1='VPW5EDB97XAMAT5R67ZAVFOW7' where id=1; -update noar ti set b1='VPW5EDB97XAMAT5R67ZAVFOW7' where id=1; -update noar tt set v0='2OC1UQX7' where id=1; -update noar ti set v0='2OC1UQX7' where id=1; -update noar tt set b2='2DKRI' where id=1; -update noar ti set b2='2DKRI' where id=1; -update noar tt set v0='U4WJJ1' where id=2; -update noar ti set v0='U4WJJ1' where id=2; -update noar tt set b0='WEI' where id=2; -update noar ti set b0='WEI' where id=2; -update noar tt set v0='DOC' where id=2; -update noar ti set v0='DOC' where id=2; -update noar tt set b1='3MH8T' where id=2; -update noar ti set b1='3MH8T' where id=2; -update noar tt set v0='2' where id=2; -update noar ti set v0='2' where id=2; -update noar tt set b2='BHADQ1Y9WC2E9RWLCAUB97W2GMS2' where id=2; -update noar ti set b2='BHADQ1Y9WC2E9RWLCAUB97W2GMS2' where id=2; -update noar tt set v0='88VAS8IKNLBXD43R43HOK6' where id=3; -update noar ti set v0='88VAS8IKNLBXD43R43HOK6' where id=3; -update noar tt set b0='83EUI8ZFTT3WQSLEP0VJ' where id=3; -update noar ti set b0='83EUI8ZFTT3WQSLEP0VJ' where id=3; -update noar tt set v0='LMK14CTG9D90JG62SPGHTC' where id=3; -update noar ti set v0='LMK14CTG9D90JG62SPGHTC' where id=3; -update noar tt set b1='SH2K3JUEZ90G2' where id=3; -update noar ti set b1='SH2K3JUEZ90G2' where id=3; -update noar tt set v0='FR6GBB6OD2CMQEPK' where id=3; -update noar ti set v0='FR6GBB6OD2CMQEPK' where id=3; -update noar tt set b2='MP' where id=3; -update noar ti set b2='MP' where id=3; -update noar tt set v0='1W408VSWFUH30W49KRMGA7JSYT7' where id=4; -update noar ti set v0='1W408VSWFUH30W49KRMGA7JSYT7' where id=4; -update noar tt set b0='6L' where id=4; -update noar ti set b0='6L' where id=4; -update noar tt set v0='1PER18ILUB7TD5E1SX' where id=4; -update noar ti set v0='1PER18ILUB7TD5E1SX' where id=4; -update noar tt set b1='926K6RMUXV1HIA4OYK9PTTVKJA06EGM' where id=4; -update noar ti set b1='926K6RMUXV1HIA4OYK9PTTVKJA06EGM' where id=4; -update noar tt set v0='ZALNBXJMGKO' where id=4; -update noar ti set v0='ZALNBXJMGKO' where id=4; -update noar tt set b2='GPURKAN1YXECTLB6LF0UJ9SR5D13ANJ' where id=4; -update noar ti set b2='GPURKAN1YXECTLB6LF0UJ9SR5D13ANJ' where id=4; -update noar tt set v0='IYR' where id=5; -update noar ti set v0='IYR' where id=5; -update noar tt set b0='7L1HYF' where id=5; -update noar ti set b0='7L1HYF' where id=5; -update noar tt set v0='5MRO0E9ZU40IDPRIZO4LC9H8C673' where id=5; -update noar ti set v0='5MRO0E9ZU40IDPRIZO4LC9H8C673' where id=5; -update noar tt set b1='7GOL1TOIYIVVAKOA1MK' where id=5; -update noar ti set b1='7GOL1TOIYIVVAKOA1MK' where id=5; -update noar tt set v0='ZB0Z4B3S5K8' where id=5; -update noar ti set v0='ZB0Z4B3S5K8' where id=5; -update noar tt set b2='GPNONS6AC5BW47UWMMO2BG1CTX' where id=5; -update noar ti set b2='GPNONS6AC5BW47UWMMO2BG1CTX' where id=5; -update noar tt set v0='I0S7IWJX' where id=6; -update noar ti set v0='I0S7IWJX' where id=6; -update noar tt set b0='U9NUFNMZUO' where id=6; -update noar ti set b0='U9NUFNMZUO' where id=6; -update noar tt set v0='YA4Q7DF9HAX' where id=6; -update noar ti set v0='YA4Q7DF9HAX' where id=6; -update noar tt set b1='24RZ77VCJUQDR421R9CFL2BK' where id=6; -update noar ti set b1='24RZ77VCJUQDR421R9CFL2BK' where id=6; -update noar tt set v0='OVMIQQSA466D9V2TXC6GSO756XS' where id=6; -update noar ti set v0='OVMIQQSA466D9V2TXC6GSO756XS' where id=6; -update noar tt set b2='YTRR7P0GK3Y2DV72RE0T9052ZAYZ0Z' where id=6; -update noar ti set b2='YTRR7P0GK3Y2DV72RE0T9052ZAYZ0Z' where id=6; -update noar tt set v0='E41L6VELCJNGSDJGDRNRFD6ZJ2K251LU' where id=7; -update noar ti set v0='E41L6VELCJNGSDJGDRNRFD6ZJ2K251LU' where id=7; -update noar tt set b0='GRVD2LD' where id=7; -update noar ti set b0='GRVD2LD' where id=7; -update noar tt set v0='MOA1LDYHYD1YJMAHWU6V1BY5XFWC' where id=7; -update noar ti set v0='MOA1LDYHYD1YJMAHWU6V1BY5XFWC' where id=7; -update noar tt set b1='G5KK8NSOTNEE' where id=7; -update noar ti set b1='G5KK8NSOTNEE' where id=7; -update noar tt set v0='DWT98IBJOLGJ5PV90VPS8KAFQ8ENX8' where id=7; -update noar ti set v0='DWT98IBJOLGJ5PV90VPS8KAFQ8ENX8' where id=7; -update noar tt set b2='RCK8V6TBBQOLF4HL18G56K8GN6WQF7' where id=7; -update noar ti set b2='RCK8V6TBBQOLF4HL18G56K8GN6WQF7' where id=7; -update noar tt set v0='7KAQKL' where id=8; -update noar ti set v0='7KAQKL' where id=8; -update noar tt set b0='1QK3WK4X7H9ESZLU664' where id=8; -update noar ti set b0='1QK3WK4X7H9ESZLU664' where id=8; -update noar tt set v0='0K8GNCDSCR6HOT6T' where id=8; -update noar ti set v0='0K8GNCDSCR6HOT6T' where id=8; -update noar tt set b1='5FO39K' where id=8; -update noar ti set b1='5FO39K' where id=8; -update noar tt set v0='AMYERIXKF7WF0B3K' where id=8; -update noar ti set v0='AMYERIXKF7WF0B3K' where id=8; -update noar tt set b2='W7Y6K' where id=8; -update noar ti set b2='W7Y6K' where id=8; -update noar tt set v0='05F33BCNFEJLE7C6' where id=9; -update noar ti set v0='05F33BCNFEJLE7C6' where id=9; -update noar tt set b0='BPYFI7GUO7NJ39H22DJAZA575' where id=9; -update noar ti set b0='BPYFI7GUO7NJ39H22DJAZA575' where id=9; -update noar tt set v0='C1HM7JT' where id=9; -update noar ti set v0='C1HM7JT' where id=9; -update noar tt set b1='86NV1CKWSU1H2' where id=9; -update noar ti set b1='86NV1CKWSU1H2' where id=9; -update noar tt set v0='8N8GD' where id=9; -update noar ti set v0='8N8GD' where id=9; -update noar tt set b2='PO' where id=9; -update noar ti set b2='PO' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -f0 int not null, -v0 varchar(32) not null, -b0 blob not null, -b1 tinyblob not null, -b2 blob not null -) engine=tokudb; -insert into tt values (1,0,'','','',''); -insert into tt values (2,0,'','','',''); -insert into tt values (3,0,'','','',''); -insert into tt values (4,0,'','','',''); -insert into tt values (5,0,'','','',''); -insert into tt values (6,0,'','','',''); -insert into tt values (7,0,'','','',''); -insert into tt values (8,0,'','','',''); -insert into tt values (9,0,'','','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='ODV7UPZ7EQHSMLPPJISN7H33KN1DWL' where id=1; -update noar ti set v0='ODV7UPZ7EQHSMLPPJISN7H33KN1DWL' where id=1; -update noar tt set b0='NOMJ14GOTT' where id=1; -update noar ti set b0='NOMJ14GOTT' where id=1; -update noar tt set v0='A4WJYQDLIKP4KE3B2Y' where id=1; -update noar ti set v0='A4WJYQDLIKP4KE3B2Y' where id=1; -update noar tt set b1='3VPZR1RFYV5N3J2GPE' where id=1; -update noar ti set b1='3VPZR1RFYV5N3J2GPE' where id=1; -update noar tt set v0='A41YVCQYFG116I8L5' where id=1; -update noar ti set v0='A41YVCQYFG116I8L5' where id=1; -update noar tt set b2='VXPLF1PRL6ONXYUDMQGU4UZ6CJUX2E' where id=1; -update noar ti set b2='VXPLF1PRL6ONXYUDMQGU4UZ6CJUX2E' where id=1; -update noar tt set v0='F00WR8Y127NFVLB9LPDLSK6QS516O4' where id=2; -update noar ti set v0='F00WR8Y127NFVLB9LPDLSK6QS516O4' where id=2; -update noar tt set b0='GQ2Q' where id=2; -update noar ti set b0='GQ2Q' where id=2; -update noar tt set v0='8Q8UE61TB7C3MBLUAKQA6VDI' where id=2; -update noar ti set v0='8Q8UE61TB7C3MBLUAKQA6VDI' where id=2; -update noar tt set b1='R' where id=2; -update noar ti set b1='R' where id=2; -update noar tt set v0='F8LDN0I' where id=2; -update noar ti set v0='F8LDN0I' where id=2; -update noar tt set b2='PVJTI3VB6BC' where id=2; -update noar ti set b2='PVJTI3VB6BC' where id=2; -update noar tt set v0='ZNRYIVVL05C6KS228393WZ' where id=3; -update noar ti set v0='ZNRYIVVL05C6KS228393WZ' where id=3; -update noar tt set b0='DZL50VC9OUDR8QOP' where id=3; -update noar ti set b0='DZL50VC9OUDR8QOP' where id=3; -update noar tt set v0='VE' where id=3; -update noar ti set v0='VE' where id=3; -update noar tt set b1='SMJQGFR' where id=3; -update noar ti set b1='SMJQGFR' where id=3; -update noar tt set v0='AZ738MJ3ZEFMC4ZMBKDF38Y' where id=3; -update noar ti set v0='AZ738MJ3ZEFMC4ZMBKDF38Y' where id=3; -update noar tt set b2='4ZKQ61RGQ' where id=3; -update noar ti set b2='4ZKQ61RGQ' where id=3; -update noar tt set v0='IXIGZ9FZ' where id=4; -update noar ti set v0='IXIGZ9FZ' where id=4; -update noar tt set b0='QK244O0B0JZ0XAQY98' where id=4; -update noar ti set b0='QK244O0B0JZ0XAQY98' where id=4; -update noar tt set v0='XDVDW8RS54769WL993Q5' where id=4; -update noar ti set v0='XDVDW8RS54769WL993Q5' where id=4; -update noar tt set b1='PR1175' where id=4; -update noar ti set b1='PR1175' where id=4; -update noar tt set v0='29H7DBRF77936UVQUW' where id=4; -update noar ti set v0='29H7DBRF77936UVQUW' where id=4; -update noar tt set b2='BT2GAW54DFR9KYRCTN6517U6CIOW' where id=4; -update noar ti set b2='BT2GAW54DFR9KYRCTN6517U6CIOW' where id=4; -update noar tt set v0='ZE97K91' where id=5; -update noar ti set v0='ZE97K91' where id=5; -update noar tt set b0='6W9MIP3YW' where id=5; -update noar ti set b0='6W9MIP3YW' where id=5; -update noar tt set v0='SZTHASRIIJB6IWKTRKDHG29O3NEVP' where id=5; -update noar ti set v0='SZTHASRIIJB6IWKTRKDHG29O3NEVP' where id=5; -update noar tt set b1='IX0ET6JRLBQAE4U8MHDZVZNF0I8O' where id=5; -update noar ti set b1='IX0ET6JRLBQAE4U8MHDZVZNF0I8O' where id=5; -update noar tt set v0='W7KY2H9W7CK6K9P2BXXB9CYKY9' where id=5; -update noar ti set v0='W7KY2H9W7CK6K9P2BXXB9CYKY9' where id=5; -update noar tt set b2='84' where id=5; -update noar ti set b2='84' where id=5; -update noar tt set v0='RZRDIVG6ODN0SF8UOJX16K04B5X' where id=6; -update noar ti set v0='RZRDIVG6ODN0SF8UOJX16K04B5X' where id=6; -update noar tt set b0='SQFF04JOJ1IJXKG8VQSZB0TINX' where id=6; -update noar ti set b0='SQFF04JOJ1IJXKG8VQSZB0TINX' where id=6; -update noar tt set v0='T12NKR7DAXXQ' where id=6; -update noar ti set v0='T12NKR7DAXXQ' where id=6; -update noar tt set b1='UFLYIJVHAGE0JE5K4H6BZGC5LLYY' where id=6; -update noar ti set b1='UFLYIJVHAGE0JE5K4H6BZGC5LLYY' where id=6; -update noar tt set v0='FK2DCYYAYRR3KK' where id=6; -update noar ti set v0='FK2DCYYAYRR3KK' where id=6; -update noar tt set b2='7J' where id=6; -update noar ti set b2='7J' where id=6; -update noar tt set v0='KIR385LYTO2AK7L91' where id=7; -update noar ti set v0='KIR385LYTO2AK7L91' where id=7; -update noar tt set b0='4RXSJKU6XR8VZHJX10917N2FOFXS4YN' where id=7; -update noar ti set b0='4RXSJKU6XR8VZHJX10917N2FOFXS4YN' where id=7; -update noar tt set v0='PDCQIAUNNHVM7A8O1M0QAFW4IABLWX' where id=7; -update noar ti set v0='PDCQIAUNNHVM7A8O1M0QAFW4IABLWX' where id=7; -update noar tt set b1='FJVN7GTNZFMU46135YV35GH417G1T' where id=7; -update noar ti set b1='FJVN7GTNZFMU46135YV35GH417G1T' where id=7; -update noar tt set v0='S045UNV956NY4XKKLKJZBPGOBJ0J6CH' where id=7; -update noar ti set v0='S045UNV956NY4XKKLKJZBPGOBJ0J6CH' where id=7; -update noar tt set b2='9WMSZHX3WH2I35EG9O1' where id=7; -update noar ti set b2='9WMSZHX3WH2I35EG9O1' where id=7; -update noar tt set v0='1SFRKQD3NA1M48WH4FIXK5QY1BK' where id=8; -update noar ti set v0='1SFRKQD3NA1M48WH4FIXK5QY1BK' where id=8; -update noar tt set b0='LVYZFAB8I77YXFVO3O71WXNWCP0B' where id=8; -update noar ti set b0='LVYZFAB8I77YXFVO3O71WXNWCP0B' where id=8; -update noar tt set v0='XDS2HZ2MLTVU0EBGFB8AVYDX5FRCXK' where id=8; -update noar ti set v0='XDS2HZ2MLTVU0EBGFB8AVYDX5FRCXK' where id=8; -update noar tt set b1='4FS6QG3M8Q' where id=8; -update noar ti set b1='4FS6QG3M8Q' where id=8; -update noar tt set v0='RB5ZSM7NYGHDVSLGWRODNCD8' where id=8; -update noar ti set v0='RB5ZSM7NYGHDVSLGWRODNCD8' where id=8; -update noar tt set b2='O628V85DSK1' where id=8; -update noar ti set b2='O628V85DSK1' where id=8; -update noar tt set v0='7JP47VJLJRBTUI4S4SD8X4TN7GR5FDV' where id=9; -update noar ti set v0='7JP47VJLJRBTUI4S4SD8X4TN7GR5FDV' where id=9; -update noar tt set b0='7IDGS' where id=9; -update noar ti set b0='7IDGS' where id=9; -update noar tt set v0='TGJRIIRWWT4H0UYYH' where id=9; -update noar ti set v0='TGJRIIRWWT4H0UYYH' where id=9; -update noar tt set b1='CWFNXGFKIYSLTVM0AODZNRYH91F' where id=9; -update noar ti set b1='CWFNXGFKIYSLTVM0AODZNRYH91F' where id=9; -update noar tt set v0='D4IFZ9UQ08CA5' where id=9; -update noar ti set v0='D4IFZ9UQ08CA5' where id=9; -update noar tt set b2='ANVVLU062TAZOYGEN8ACB5C' where id=9; -update noar ti set b2='ANVVLU062TAZOYGEN8ACB5C' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -f0 int not null, -v0 varchar(256) not null, -b0 blob not null, -b1 tinyblob not null, -b2 blob not null -) engine=tokudb; -insert into tt values (1,0,'','','',''); -insert into tt values (2,0,'','','',''); -insert into tt values (3,0,'','','',''); -insert into tt values (4,0,'','','',''); -insert into tt values (5,0,'','','',''); -insert into tt values (6,0,'','','',''); -insert into tt values (7,0,'','','',''); -insert into tt values (8,0,'','','',''); -insert into tt values (9,0,'','','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='4M8YLA24RDDDL' where id=1; -update noar ti set v0='4M8YLA24RDDDL' where id=1; -update noar tt set b0='D4TP2IW6' where id=1; -update noar ti set b0='D4TP2IW6' where id=1; -update noar tt set v0='USQLL20Y9WEOOQJP9TE29YON1QB5IIS' where id=1; -update noar ti set v0='USQLL20Y9WEOOQJP9TE29YON1QB5IIS' where id=1; -update noar tt set b1='9CJPKGQ3W' where id=1; -update noar ti set b1='9CJPKGQ3W' where id=1; -update noar tt set v0='X0UP' where id=1; -update noar ti set v0='X0UP' where id=1; -update noar tt set b2='OKWPTR2D' where id=1; -update noar ti set b2='OKWPTR2D' where id=1; -update noar tt set v0='AF4ZO89HLZUL2R69POVU' where id=2; -update noar ti set v0='AF4ZO89HLZUL2R69POVU' where id=2; -update noar tt set b0='OU9P29YYO0' where id=2; -update noar ti set b0='OU9P29YYO0' where id=2; -update noar tt set v0='WRV5NIK57C8HU' where id=2; -update noar ti set v0='WRV5NIK57C8HU' where id=2; -update noar tt set b1='3NDY8RJLSAADPNBQRDDBD4PM333R1B' where id=2; -update noar ti set b1='3NDY8RJLSAADPNBQRDDBD4PM333R1B' where id=2; -update noar tt set v0='LSG95QU89O8GKJ9DDM32S561JXNR3T4B' where id=2; -update noar ti set v0='LSG95QU89O8GKJ9DDM32S561JXNR3T4B' where id=2; -update noar tt set b2='4UJ0BCHI3FUXJVN2H7Z2I7YN' where id=2; -update noar ti set b2='4UJ0BCHI3FUXJVN2H7Z2I7YN' where id=2; -update noar tt set v0='WEBJ' where id=3; -update noar ti set v0='WEBJ' where id=3; -update noar tt set b0='AG62V7OP8YSOGHHTBRDD9NH90M' where id=3; -update noar ti set b0='AG62V7OP8YSOGHHTBRDD9NH90M' where id=3; -update noar tt set v0='I9OFH' where id=3; -update noar ti set v0='I9OFH' where id=3; -update noar tt set b1='70D7UOBABGBCPMYGAL53EBJXWLMT' where id=3; -update noar ti set b1='70D7UOBABGBCPMYGAL53EBJXWLMT' where id=3; -update noar tt set v0='MV0BE2G5T3ZH69PLRH99KH6G4J8' where id=3; -update noar ti set v0='MV0BE2G5T3ZH69PLRH99KH6G4J8' where id=3; -update noar tt set b2='2BHYFO5VOCEO986NH4E6W77ZL6' where id=3; -update noar ti set b2='2BHYFO5VOCEO986NH4E6W77ZL6' where id=3; -update noar tt set v0='EF6DN0FYBD59BGLGQR' where id=4; -update noar ti set v0='EF6DN0FYBD59BGLGQR' where id=4; -update noar tt set b0='DYUOA3M5' where id=4; -update noar ti set b0='DYUOA3M5' where id=4; -update noar tt set v0='VKZ0EFQ4IB2NMUY1PSE43U2Q' where id=4; -update noar ti set v0='VKZ0EFQ4IB2NMUY1PSE43U2Q' where id=4; -update noar tt set b1='9XYPYQZQ360YTCSMHAK1HHNCL20POR' where id=4; -update noar ti set b1='9XYPYQZQ360YTCSMHAK1HHNCL20POR' where id=4; -update noar tt set v0='F372VYQTVDPGYJ6YJEWN1BP7OIMUUI' where id=4; -update noar ti set v0='F372VYQTVDPGYJ6YJEWN1BP7OIMUUI' where id=4; -update noar tt set b2='7ZYPK9Q' where id=4; -update noar ti set b2='7ZYPK9Q' where id=4; -update noar tt set v0='69O5' where id=5; -update noar ti set v0='69O5' where id=5; -update noar tt set b0='KSNF96TJ6HMRC9' where id=5; -update noar ti set b0='KSNF96TJ6HMRC9' where id=5; -update noar tt set v0='P0Q54' where id=5; -update noar ti set v0='P0Q54' where id=5; -update noar tt set b1='Z6' where id=5; -update noar ti set b1='Z6' where id=5; -update noar tt set v0='EOS2HQE0FNIXLRPI' where id=5; -update noar ti set v0='EOS2HQE0FNIXLRPI' where id=5; -update noar tt set b2='OY946LJQ3MQ555ZHHJEGPSO2E7ZTP' where id=5; -update noar ti set b2='OY946LJQ3MQ555ZHHJEGPSO2E7ZTP' where id=5; -update noar tt set v0='3JOTKETQCGE27KEUDNJYXXCKSJVUIA' where id=6; -update noar ti set v0='3JOTKETQCGE27KEUDNJYXXCKSJVUIA' where id=6; -update noar tt set b0='YHQDCVI' where id=6; -update noar ti set b0='YHQDCVI' where id=6; -update noar tt set v0='O2P00KQLPWIS6XCHJN78EFEUPJX7G8ND' where id=6; -update noar ti set v0='O2P00KQLPWIS6XCHJN78EFEUPJX7G8ND' where id=6; -update noar tt set b1='KPECLAOA' where id=6; -update noar ti set b1='KPECLAOA' where id=6; -update noar tt set v0='VGSOA0ZC' where id=6; -update noar ti set v0='VGSOA0ZC' where id=6; -update noar tt set b2='RUPIDL7O5UGPY' where id=6; -update noar ti set b2='RUPIDL7O5UGPY' where id=6; -update noar tt set v0='339AJBNX5BLY4OJ9IAQWQY' where id=7; -update noar ti set v0='339AJBNX5BLY4OJ9IAQWQY' where id=7; -update noar tt set b0='OZZNDH9KJ9NONF322ONYO3R7' where id=7; -update noar ti set b0='OZZNDH9KJ9NONF322ONYO3R7' where id=7; -update noar tt set v0='96' where id=7; -update noar ti set v0='96' where id=7; -update noar tt set b1='5REZ7R8JAZGCKN86H3' where id=7; -update noar ti set b1='5REZ7R8JAZGCKN86H3' where id=7; -update noar tt set v0='Z3FX9XT7MR3JIMCS8' where id=7; -update noar ti set v0='Z3FX9XT7MR3JIMCS8' where id=7; -update noar tt set b2='UJSTK5XOL5ZBFOSLUZX5N' where id=7; -update noar ti set b2='UJSTK5XOL5ZBFOSLUZX5N' where id=7; -update noar tt set v0='CGCYXO2SQ75H8GGE97SIO' where id=8; -update noar ti set v0='CGCYXO2SQ75H8GGE97SIO' where id=8; -update noar tt set b0='TGFIKBRLL' where id=8; -update noar ti set b0='TGFIKBRLL' where id=8; -update noar tt set v0='HRFE9X742SWXI0L1KSK7XUIN' where id=8; -update noar ti set v0='HRFE9X742SWXI0L1KSK7XUIN' where id=8; -update noar tt set b1='9ECT3260X69' where id=8; -update noar ti set b1='9ECT3260X69' where id=8; -update noar tt set v0='EIHZ1DCJ5MRT' where id=8; -update noar ti set v0='EIHZ1DCJ5MRT' where id=8; -update noar tt set b2='S7FMCMBWO' where id=8; -update noar ti set b2='S7FMCMBWO' where id=8; -update noar tt set v0='2NPSJYS8LQ' where id=9; -update noar ti set v0='2NPSJYS8LQ' where id=9; -update noar tt set b0='AHUV6N' where id=9; -update noar ti set b0='AHUV6N' where id=9; -update noar tt set v0='NBSMH39QV6CFZSCTWNTOIC3MGHISMRSJ' where id=9; -update noar ti set v0='NBSMH39QV6CFZSCTWNTOIC3MGHISMRSJ' where id=9; -update noar tt set b1='7VQZ487C6NWN02T6DJ6YI4BF' where id=9; -update noar ti set b1='7VQZ487C6NWN02T6DJ6YI4BF' where id=9; -update noar tt set v0='SAOX07KTBIV040IBBWIID8' where id=9; -update noar ti set v0='SAOX07KTBIV040IBBWIID8' where id=9; -update noar tt set b2='0937' where id=9; -update noar ti set b2='0937' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -f0 int null, -v0 varchar(32) null, -b0 blob null, -b1 tinyblob null, -b2 mediumblob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='JQZKF4OF4I1HY5' where id=1; -update noar ti set v0='JQZKF4OF4I1HY5' where id=1; -update noar tt set b0='QO3A' where id=1; -update noar ti set b0='QO3A' where id=1; -update noar tt set v0='64Q02FVIQJXQ5V' where id=1; -update noar ti set v0='64Q02FVIQJXQ5V' where id=1; -update noar tt set b1='YISKHI6URNRY0C22XGVH997WJ9HJROT' where id=1; -update noar ti set b1='YISKHI6URNRY0C22XGVH997WJ9HJROT' where id=1; -update noar tt set v0='CKKZN' where id=1; -update noar ti set v0='CKKZN' where id=1; -update noar tt set b2='HS' where id=1; -update noar ti set b2='HS' where id=1; -update noar tt set v0='T62APNUZGXYDEDGZW' where id=2; -update noar ti set v0='T62APNUZGXYDEDGZW' where id=2; -update noar tt set b0='S0PZCLTW' where id=2; -update noar ti set b0='S0PZCLTW' where id=2; -update noar tt set v0='6BZDJEJBTOQB1BB8ATW6WTP2' where id=2; -update noar ti set v0='6BZDJEJBTOQB1BB8ATW6WTP2' where id=2; -update noar tt set b1='4KZSC0E8W5VVPG1EK3R9FO8' where id=2; -update noar ti set b1='4KZSC0E8W5VVPG1EK3R9FO8' where id=2; -update noar tt set v0='3APFGA41351E35UKW9GNYR8' where id=2; -update noar ti set v0='3APFGA41351E35UKW9GNYR8' where id=2; -update noar tt set b2='FUN2K93OFXEZWLSCQ46N' where id=2; -update noar ti set b2='FUN2K93OFXEZWLSCQ46N' where id=2; -update noar tt set v0='3RBPJYLTC9Z' where id=3; -update noar ti set v0='3RBPJYLTC9Z' where id=3; -update noar tt set b0='DOYCKN0TFXCL63SG2HTVD3V' where id=3; -update noar ti set b0='DOYCKN0TFXCL63SG2HTVD3V' where id=3; -update noar tt set v0='85KW55IBZ6J2DLA3N5P7' where id=3; -update noar ti set v0='85KW55IBZ6J2DLA3N5P7' where id=3; -update noar tt set b1='DBVAH1A0V21O' where id=3; -update noar ti set b1='DBVAH1A0V21O' where id=3; -update noar tt set v0='HPK4HGY6BR9O5AZMC5HIU' where id=3; -update noar ti set v0='HPK4HGY6BR9O5AZMC5HIU' where id=3; -update noar tt set b2='YIPB2XUE3E42CFP9S8QNMEB8P' where id=3; -update noar ti set b2='YIPB2XUE3E42CFP9S8QNMEB8P' where id=3; -update noar tt set v0='DTU60U3L8B3GS3TVQ1CEKNOPP6' where id=4; -update noar ti set v0='DTU60U3L8B3GS3TVQ1CEKNOPP6' where id=4; -update noar tt set b0='WQFEFIK' where id=4; -update noar ti set b0='WQFEFIK' where id=4; -update noar tt set v0='N' where id=4; -update noar ti set v0='N' where id=4; -update noar tt set b1='G1P' where id=4; -update noar ti set b1='G1P' where id=4; -update noar tt set v0='LVG069PMOYPFNUJJ' where id=4; -update noar ti set v0='LVG069PMOYPFNUJJ' where id=4; -update noar tt set b2='17N4KB5YXDCAFFPN6VR' where id=4; -update noar ti set b2='17N4KB5YXDCAFFPN6VR' where id=4; -update noar tt set v0='NAL2IETRW4AW' where id=5; -update noar ti set v0='NAL2IETRW4AW' where id=5; -update noar tt set b0='27CI4KSS9ARHQVVM5K7' where id=5; -update noar ti set b0='27CI4KSS9ARHQVVM5K7' where id=5; -update noar tt set v0='AQ' where id=5; -update noar ti set v0='AQ' where id=5; -update noar tt set b1='0WWOL64LIXTQAP' where id=5; -update noar ti set b1='0WWOL64LIXTQAP' where id=5; -update noar tt set v0='W9IN034RPM5EEE8616Y3HRMNCRQ' where id=5; -update noar ti set v0='W9IN034RPM5EEE8616Y3HRMNCRQ' where id=5; -update noar tt set b2='9KEK93ZX' where id=5; -update noar ti set b2='9KEK93ZX' where id=5; -update noar tt set v0='PT' where id=6; -update noar ti set v0='PT' where id=6; -update noar tt set b0='HSCGIIQLA7HDBXD8OD76BLBL71NR1V' where id=6; -update noar ti set b0='HSCGIIQLA7HDBXD8OD76BLBL71NR1V' where id=6; -update noar tt set v0='ORYP20BYRK5WZMCT0NLRXM17SQUV' where id=6; -update noar ti set v0='ORYP20BYRK5WZMCT0NLRXM17SQUV' where id=6; -update noar tt set b1='1RC8HR6W8PEX1ESIJKI59' where id=6; -update noar ti set b1='1RC8HR6W8PEX1ESIJKI59' where id=6; -update noar tt set v0='Q3BOBVB4JTSSW9SA' where id=6; -update noar ti set v0='Q3BOBVB4JTSSW9SA' where id=6; -update noar tt set b2='J' where id=6; -update noar ti set b2='J' where id=6; -update noar tt set v0='D1EFQ3' where id=7; -update noar ti set v0='D1EFQ3' where id=7; -update noar tt set b0='BQE81RMMANSTYPPJKMJY' where id=7; -update noar ti set b0='BQE81RMMANSTYPPJKMJY' where id=7; -update noar tt set v0='7D52MJWV22ALOWVGQ21AEQTGOV5' where id=7; -update noar ti set v0='7D52MJWV22ALOWVGQ21AEQTGOV5' where id=7; -update noar tt set b1='MIDSBIHN0PG0Z831SUT5SPAA' where id=7; -update noar ti set b1='MIDSBIHN0PG0Z831SUT5SPAA' where id=7; -update noar tt set v0='UNTWDR' where id=7; -update noar ti set v0='UNTWDR' where id=7; -update noar tt set b2='K' where id=7; -update noar ti set b2='K' where id=7; -update noar tt set v0='AGY8E' where id=8; -update noar ti set v0='AGY8E' where id=8; -update noar tt set b0='TZCZEWYVWF5' where id=8; -update noar ti set b0='TZCZEWYVWF5' where id=8; -update noar tt set v0='YGA1WRO' where id=8; -update noar ti set v0='YGA1WRO' where id=8; -update noar tt set b1='QEZUWVP5Z62YHFHZDK' where id=8; -update noar ti set b1='QEZUWVP5Z62YHFHZDK' where id=8; -update noar tt set v0='86RZ' where id=8; -update noar ti set v0='86RZ' where id=8; -update noar tt set b2='0RWFZ7TPE63V6EEGKUYDHNHKL9VC' where id=8; -update noar ti set b2='0RWFZ7TPE63V6EEGKUYDHNHKL9VC' where id=8; -update noar tt set v0='DJLR7ZN66VHP5SJ52T1SJHXT6FFA' where id=9; -update noar ti set v0='DJLR7ZN66VHP5SJ52T1SJHXT6FFA' where id=9; -update noar tt set b0='ZXE0OG6EKSIR6J7Q1J0O2L5L' where id=9; -update noar ti set b0='ZXE0OG6EKSIR6J7Q1J0O2L5L' where id=9; -update noar tt set v0='F2XC3WBW3HC3RJNH' where id=9; -update noar ti set v0='F2XC3WBW3HC3RJNH' where id=9; -update noar tt set b1='F0I7I9R5XRXEH7WLIV00HC' where id=9; -update noar ti set b1='F0I7I9R5XRXEH7WLIV00HC' where id=9; -update noar tt set v0='T2NMZ9CR6MSWJ1I4D8N0IX8' where id=9; -update noar ti set v0='T2NMZ9CR6MSWJ1I4D8N0IX8' where id=9; -update noar tt set b2='XPFUETP3' where id=9; -update noar ti set b2='XPFUETP3' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -f0 int null, -v0 varchar(256) null, -b0 blob null, -b1 tinyblob null, -b2 mediumblob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='AQKVGZ6XDYVP' where id=1; -update noar ti set v0='AQKVGZ6XDYVP' where id=1; -update noar tt set b0='RBDJUEY5' where id=1; -update noar ti set b0='RBDJUEY5' where id=1; -update noar tt set v0='CQT4S9WM3IQUH3V40V4BW51WM' where id=1; -update noar ti set v0='CQT4S9WM3IQUH3V40V4BW51WM' where id=1; -update noar tt set b1='UQD5Y83TYJAJKZBJHMR171ZLSM' where id=1; -update noar ti set b1='UQD5Y83TYJAJKZBJHMR171ZLSM' where id=1; -update noar tt set v0='52K1R59WZ76P2GNL' where id=1; -update noar ti set v0='52K1R59WZ76P2GNL' where id=1; -update noar tt set b2='28RU6X7TPTCVKG8UMNFF36P' where id=1; -update noar ti set b2='28RU6X7TPTCVKG8UMNFF36P' where id=1; -update noar tt set v0='36AINGN9ZBYYFONO3JMRVXK4' where id=2; -update noar ti set v0='36AINGN9ZBYYFONO3JMRVXK4' where id=2; -update noar tt set b0='YIYS3UU6H' where id=2; -update noar ti set b0='YIYS3UU6H' where id=2; -update noar tt set v0='M1SYAHOU0961UPPGEXP' where id=2; -update noar ti set v0='M1SYAHOU0961UPPGEXP' where id=2; -update noar tt set b1='TJ81E5JY0X7XZJCDIE' where id=2; -update noar ti set b1='TJ81E5JY0X7XZJCDIE' where id=2; -update noar tt set v0='LG0TMT' where id=2; -update noar ti set v0='LG0TMT' where id=2; -update noar tt set b2='07ITRA1Y' where id=2; -update noar ti set b2='07ITRA1Y' where id=2; -update noar tt set v0='68XHZKEH98X4TKD' where id=3; -update noar ti set v0='68XHZKEH98X4TKD' where id=3; -update noar tt set b0='Q1X1SSM4P' where id=3; -update noar ti set b0='Q1X1SSM4P' where id=3; -update noar tt set v0='BHUGLWAG9IM' where id=3; -update noar ti set v0='BHUGLWAG9IM' where id=3; -update noar tt set b1='OR1TW6KTV4R7LM' where id=3; -update noar ti set b1='OR1TW6KTV4R7LM' where id=3; -update noar tt set v0='0361U4' where id=3; -update noar ti set v0='0361U4' where id=3; -update noar tt set b2='IH732A3V2MGGAGU8KKA8W' where id=3; -update noar ti set b2='IH732A3V2MGGAGU8KKA8W' where id=3; -update noar tt set v0='11EH8WAD5X0C6D8L3I3S' where id=4; -update noar ti set v0='11EH8WAD5X0C6D8L3I3S' where id=4; -update noar tt set b0='QVW7DDBC5' where id=4; -update noar ti set b0='QVW7DDBC5' where id=4; -update noar tt set v0='J0VYFHP35ATPVPKTCTJA9T2MQ09SW2' where id=4; -update noar ti set v0='J0VYFHP35ATPVPKTCTJA9T2MQ09SW2' where id=4; -update noar tt set b1='NHRQEPGF65BAAFBM317QIHWZ5T' where id=4; -update noar ti set b1='NHRQEPGF65BAAFBM317QIHWZ5T' where id=4; -update noar tt set v0='G0WOKPSIH2WJM2KP74CNE4VG64DD7MKT' where id=4; -update noar ti set v0='G0WOKPSIH2WJM2KP74CNE4VG64DD7MKT' where id=4; -update noar tt set b2='2UREJR0VTFHVY1Y8BW' where id=4; -update noar ti set b2='2UREJR0VTFHVY1Y8BW' where id=4; -update noar tt set v0='PEIABRO5VVBGRX2L556BFPJCC' where id=5; -update noar ti set v0='PEIABRO5VVBGRX2L556BFPJCC' where id=5; -update noar tt set b0='S0N67UTCBDKPWZLX0' where id=5; -update noar ti set b0='S0N67UTCBDKPWZLX0' where id=5; -update noar tt set v0='6Y6RNTSBC74' where id=5; -update noar ti set v0='6Y6RNTSBC74' where id=5; -update noar tt set b1='2JOF0P' where id=5; -update noar ti set b1='2JOF0P' where id=5; -update noar tt set v0='O9VXISL7JSAS2SA4VVS37CTC' where id=5; -update noar ti set v0='O9VXISL7JSAS2SA4VVS37CTC' where id=5; -update noar tt set b2='IAXLA99RXUBLC266TWBAMA5WHDXAA2ZD' where id=5; -update noar ti set b2='IAXLA99RXUBLC266TWBAMA5WHDXAA2ZD' where id=5; -update noar tt set v0='306AFPW' where id=6; -update noar ti set v0='306AFPW' where id=6; -update noar tt set b0='N5CP6VWDJJ9Y2JEJUPASJECMTXU6AMF' where id=6; -update noar ti set b0='N5CP6VWDJJ9Y2JEJUPASJECMTXU6AMF' where id=6; -update noar tt set v0='K1LM42BJW3EZWKU6' where id=6; -update noar ti set v0='K1LM42BJW3EZWKU6' where id=6; -update noar tt set b1='A3T7DGBY857NX1S' where id=6; -update noar ti set b1='A3T7DGBY857NX1S' where id=6; -update noar tt set v0='2U14QTNCNU2' where id=6; -update noar ti set v0='2U14QTNCNU2' where id=6; -update noar tt set b2='Z5BKVUHN6EDLVIT7UT9TUJK3' where id=6; -update noar ti set b2='Z5BKVUHN6EDLVIT7UT9TUJK3' where id=6; -update noar tt set v0='Q39KXSZKKW6W7ZVV' where id=7; -update noar ti set v0='Q39KXSZKKW6W7ZVV' where id=7; -update noar tt set b0='DY7E0' where id=7; -update noar ti set b0='DY7E0' where id=7; -update noar tt set v0='BP02QLIKA3GSK9IBRM0O4YI1' where id=7; -update noar ti set v0='BP02QLIKA3GSK9IBRM0O4YI1' where id=7; -update noar tt set b1='JZWJW34TDPV4NDSPK59L6' where id=7; -update noar ti set b1='JZWJW34TDPV4NDSPK59L6' where id=7; -update noar tt set v0='AMSO269EUQLFWBS1H6' where id=7; -update noar ti set v0='AMSO269EUQLFWBS1H6' where id=7; -update noar tt set b2='PSOXACLVZFR1LKX4LE7WIUSHWCS6U6R8' where id=7; -update noar ti set b2='PSOXACLVZFR1LKX4LE7WIUSHWCS6U6R8' where id=7; -update noar tt set v0='NF1976' where id=8; -update noar ti set v0='NF1976' where id=8; -update noar tt set b0='L2ADQY8GAIKROUZW74NATT7HE3CW6YC' where id=8; -update noar ti set b0='L2ADQY8GAIKROUZW74NATT7HE3CW6YC' where id=8; -update noar tt set v0='25E7C4AMBKJ6Q' where id=8; -update noar ti set v0='25E7C4AMBKJ6Q' where id=8; -update noar tt set b1='DAX' where id=8; -update noar ti set b1='DAX' where id=8; -update noar tt set v0='2BF186R9DC15VUHUZ4IWAICEQT' where id=8; -update noar ti set v0='2BF186R9DC15VUHUZ4IWAICEQT' where id=8; -update noar tt set b2='IETXCKKXSE81ZDM04A4V5J13PH' where id=8; -update noar ti set b2='IETXCKKXSE81ZDM04A4V5J13PH' where id=8; -update noar tt set v0='LC3OYXYDW26M0QJ8RC2F2' where id=9; -update noar ti set v0='LC3OYXYDW26M0QJ8RC2F2' where id=9; -update noar tt set b0='MOA1WS3U3YSSLT05' where id=9; -update noar ti set b0='MOA1WS3U3YSSLT05' where id=9; -update noar tt set v0='DFO4RL9FOZ9BW6TYMP58GSJJW6' where id=9; -update noar ti set v0='DFO4RL9FOZ9BW6TYMP58GSJJW6' where id=9; -update noar tt set b1='Z5HQE' where id=9; -update noar ti set b1='Z5HQE' where id=9; -update noar tt set v0='AFB3ADFRP7H' where id=9; -update noar ti set v0='AFB3ADFRP7H' where id=9; -update noar tt set b2='YLQTW6457I0M05Y5A4NZG6KE' where id=9; -update noar ti set b2='YLQTW6457I0M05Y5A4NZG6KE' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -f0 int not null, -v0 varchar(32) not null, -b0 blob not null, -b1 tinyblob not null, -b2 mediumblob not null -) engine=tokudb; -insert into tt values (1,0,'','','',''); -insert into tt values (2,0,'','','',''); -insert into tt values (3,0,'','','',''); -insert into tt values (4,0,'','','',''); -insert into tt values (5,0,'','','',''); -insert into tt values (6,0,'','','',''); -insert into tt values (7,0,'','','',''); -insert into tt values (8,0,'','','',''); -insert into tt values (9,0,'','','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='1QFLEOZY95V7GPXG' where id=1; -update noar ti set v0='1QFLEOZY95V7GPXG' where id=1; -update noar tt set b0='5N8T3FBDVP3D54MDD8VDP' where id=1; -update noar ti set b0='5N8T3FBDVP3D54MDD8VDP' where id=1; -update noar tt set v0='ES2HN9AFEBGV' where id=1; -update noar ti set v0='ES2HN9AFEBGV' where id=1; -update noar tt set b1='65WISW1WR30DZZN2OX' where id=1; -update noar ti set b1='65WISW1WR30DZZN2OX' where id=1; -update noar tt set v0='XEQRFC411G4VTSM0' where id=1; -update noar ti set v0='XEQRFC411G4VTSM0' where id=1; -update noar tt set b2='HBCU' where id=1; -update noar ti set b2='HBCU' where id=1; -update noar tt set v0='GEBTNO62' where id=2; -update noar ti set v0='GEBTNO62' where id=2; -update noar tt set b0='VZE9RJMBAWUF81G' where id=2; -update noar ti set b0='VZE9RJMBAWUF81G' where id=2; -update noar tt set v0='H3F3473K1OJG3FJG18' where id=2; -update noar ti set v0='H3F3473K1OJG3FJG18' where id=2; -update noar tt set b1='SNERJMZOPU' where id=2; -update noar ti set b1='SNERJMZOPU' where id=2; -update noar tt set v0='R' where id=2; -update noar ti set v0='R' where id=2; -update noar tt set b2='U6' where id=2; -update noar ti set b2='U6' where id=2; -update noar tt set v0='XXQVK9YR491UB0WIM0A2' where id=3; -update noar ti set v0='XXQVK9YR491UB0WIM0A2' where id=3; -update noar tt set b0='XJYZLCRXTR02LGTY4G' where id=3; -update noar ti set b0='XJYZLCRXTR02LGTY4G' where id=3; -update noar tt set v0='V4NMM9TEVFDH5OQ5C8Q05B' where id=3; -update noar ti set v0='V4NMM9TEVFDH5OQ5C8Q05B' where id=3; -update noar tt set b1='YYSUSK7XQJ' where id=3; -update noar ti set b1='YYSUSK7XQJ' where id=3; -update noar tt set v0='L7ZD' where id=3; -update noar ti set v0='L7ZD' where id=3; -update noar tt set b2='NCDYVN0FZ95CJU2O25H9M433RZYYZ' where id=3; -update noar ti set b2='NCDYVN0FZ95CJU2O25H9M433RZYYZ' where id=3; -update noar tt set v0='O7N' where id=4; -update noar ti set v0='O7N' where id=4; -update noar tt set b0='V68GBFWGO496QSP6TRUVUKQNVC' where id=4; -update noar ti set b0='V68GBFWGO496QSP6TRUVUKQNVC' where id=4; -update noar tt set v0='C55665A2VZVF' where id=4; -update noar ti set v0='C55665A2VZVF' where id=4; -update noar tt set b1='SHNHOWL5ZEAWGT57WH5MC' where id=4; -update noar ti set b1='SHNHOWL5ZEAWGT57WH5MC' where id=4; -update noar tt set v0='ILANGQBVR0U' where id=4; -update noar ti set v0='ILANGQBVR0U' where id=4; -update noar tt set b2='IGIUA0GJ9' where id=4; -update noar ti set b2='IGIUA0GJ9' where id=4; -update noar tt set v0='PM9L27OCD0NDFID' where id=5; -update noar ti set v0='PM9L27OCD0NDFID' where id=5; -update noar tt set b0='W3PD8K8' where id=5; -update noar ti set b0='W3PD8K8' where id=5; -update noar tt set v0='5QKI33GKH9DZVQZ' where id=5; -update noar ti set v0='5QKI33GKH9DZVQZ' where id=5; -update noar tt set b1='AORLPK' where id=5; -update noar ti set b1='AORLPK' where id=5; -update noar tt set v0='8AHJM7ONR1IGKZYSV89NC3WDY86FD1XG' where id=5; -update noar ti set v0='8AHJM7ONR1IGKZYSV89NC3WDY86FD1XG' where id=5; -update noar tt set b2='VGJUULSPU0B2' where id=5; -update noar ti set b2='VGJUULSPU0B2' where id=5; -update noar tt set v0='SOGNKNK0JTPD' where id=6; -update noar ti set v0='SOGNKNK0JTPD' where id=6; -update noar tt set b0='O' where id=6; -update noar ti set b0='O' where id=6; -update noar tt set v0='VGR7K16GHINUZDF97K' where id=6; -update noar ti set v0='VGR7K16GHINUZDF97K' where id=6; -update noar tt set b1='T924XEYY82I00GBQ4PHMY9KT3U188' where id=6; -update noar ti set b1='T924XEYY82I00GBQ4PHMY9KT3U188' where id=6; -update noar tt set v0='R76CM1FLVLG' where id=6; -update noar ti set v0='R76CM1FLVLG' where id=6; -update noar tt set b2='9W2K46LUBPULEUD2JHZNDBP1A39X0W' where id=6; -update noar ti set b2='9W2K46LUBPULEUD2JHZNDBP1A39X0W' where id=6; -update noar tt set v0='7PAW' where id=7; -update noar ti set v0='7PAW' where id=7; -update noar tt set b0='RB7HX7LZ0DO7V2H5RMPI' where id=7; -update noar ti set b0='RB7HX7LZ0DO7V2H5RMPI' where id=7; -update noar tt set v0='N2QDKTNJD6B' where id=7; -update noar ti set v0='N2QDKTNJD6B' where id=7; -update noar tt set b1='JIQB3SIBSFD1FRJZM6MD9IP8WM' where id=7; -update noar ti set b1='JIQB3SIBSFD1FRJZM6MD9IP8WM' where id=7; -update noar tt set v0='7XYRR9DB0P8ROJOQEK40HF' where id=7; -update noar ti set v0='7XYRR9DB0P8ROJOQEK40HF' where id=7; -update noar tt set b2='6UYR1QXWADW9P0V' where id=7; -update noar ti set b2='6UYR1QXWADW9P0V' where id=7; -update noar tt set v0='HX8KNLP6SQTLK8YIAD' where id=8; -update noar ti set v0='HX8KNLP6SQTLK8YIAD' where id=8; -update noar tt set b0='5QF1XQY8EEFN5V4AS7OXBQJREBSL9157' where id=8; -update noar ti set b0='5QF1XQY8EEFN5V4AS7OXBQJREBSL9157' where id=8; -update noar tt set v0='5S3RPTKS8623Q9CCIDTOA3O9JXDQD' where id=8; -update noar ti set v0='5S3RPTKS8623Q9CCIDTOA3O9JXDQD' where id=8; -update noar tt set b1='TCVWWZXMSNRC6B9MPP' where id=8; -update noar ti set b1='TCVWWZXMSNRC6B9MPP' where id=8; -update noar tt set v0='TXXCDN4SCMU79E' where id=8; -update noar ti set v0='TXXCDN4SCMU79E' where id=8; -update noar tt set b2='990E4IXCJKWENKUSTQL1NMFLS0HU4ZMG' where id=8; -update noar ti set b2='990E4IXCJKWENKUSTQL1NMFLS0HU4ZMG' where id=8; -update noar tt set v0='QH3JA7DFIKS8FX3G' where id=9; -update noar ti set v0='QH3JA7DFIKS8FX3G' where id=9; -update noar tt set b0='3UBRY77M38VEDTJJD6CSQ5OIG95T6' where id=9; -update noar ti set b0='3UBRY77M38VEDTJJD6CSQ5OIG95T6' where id=9; -update noar tt set v0='ZHNJMTJJNOGV82IWLWDB19AW9H2OFT0B' where id=9; -update noar ti set v0='ZHNJMTJJNOGV82IWLWDB19AW9H2OFT0B' where id=9; -update noar tt set b1='GO0ONIGKPY267V3UN3IP6S9' where id=9; -update noar ti set b1='GO0ONIGKPY267V3UN3IP6S9' where id=9; -update noar tt set v0='3B5Q7PIB4T2' where id=9; -update noar ti set v0='3B5Q7PIB4T2' where id=9; -update noar tt set b2='ATKB1B' where id=9; -update noar ti set b2='ATKB1B' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -f0 int not null, -v0 varchar(256) not null, -b0 blob not null, -b1 tinyblob not null, -b2 mediumblob not null -) engine=tokudb; -insert into tt values (1,0,'','','',''); -insert into tt values (2,0,'','','',''); -insert into tt values (3,0,'','','',''); -insert into tt values (4,0,'','','',''); -insert into tt values (5,0,'','','',''); -insert into tt values (6,0,'','','',''); -insert into tt values (7,0,'','','',''); -insert into tt values (8,0,'','','',''); -insert into tt values (9,0,'','','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='OI7J12' where id=1; -update noar ti set v0='OI7J12' where id=1; -update noar tt set b0='L2H2X0Q65JS27' where id=1; -update noar ti set b0='L2H2X0Q65JS27' where id=1; -update noar tt set v0='KG' where id=1; -update noar ti set v0='KG' where id=1; -update noar tt set b1='CURZAL8QB5H1I7CVQCMXRW4O' where id=1; -update noar ti set b1='CURZAL8QB5H1I7CVQCMXRW4O' where id=1; -update noar tt set v0='Y8ZTRWBC4711' where id=1; -update noar ti set v0='Y8ZTRWBC4711' where id=1; -update noar tt set b2='MTZ1GXBKO8OT70JR7' where id=1; -update noar ti set b2='MTZ1GXBKO8OT70JR7' where id=1; -update noar tt set v0='9II7AO8CJZ0IK9EH' where id=2; -update noar ti set v0='9II7AO8CJZ0IK9EH' where id=2; -update noar tt set b0='SZUCK76WLQH5Y6VMV546G50KH0251H9B' where id=2; -update noar ti set b0='SZUCK76WLQH5Y6VMV546G50KH0251H9B' where id=2; -update noar tt set v0='1LPE3' where id=2; -update noar ti set v0='1LPE3' where id=2; -update noar tt set b1='SQCT' where id=2; -update noar ti set b1='SQCT' where id=2; -update noar tt set v0='LOHJ0T' where id=2; -update noar ti set v0='LOHJ0T' where id=2; -update noar tt set b2='6VNDAK651XOCRRXG8J8WHXY2' where id=2; -update noar ti set b2='6VNDAK651XOCRRXG8J8WHXY2' where id=2; -update noar tt set v0='O1A9LK789AAVXFTZ2OTM' where id=3; -update noar ti set v0='O1A9LK789AAVXFTZ2OTM' where id=3; -update noar tt set b0='ZAB81UFY4Y62I5L1V' where id=3; -update noar ti set b0='ZAB81UFY4Y62I5L1V' where id=3; -update noar tt set v0='Y4AMEX5NGPS7YYPM8AKV0P3TQJ3U1D' where id=3; -update noar ti set v0='Y4AMEX5NGPS7YYPM8AKV0P3TQJ3U1D' where id=3; -update noar tt set b1='5N4EHOOG7S7MPJI0100TAILLME6' where id=3; -update noar ti set b1='5N4EHOOG7S7MPJI0100TAILLME6' where id=3; -update noar tt set v0='O' where id=3; -update noar ti set v0='O' where id=3; -update noar tt set b2='NA4BCU1Z2' where id=3; -update noar ti set b2='NA4BCU1Z2' where id=3; -update noar tt set v0='AOTVEXN0CF7VRDIDW64TV0H' where id=4; -update noar ti set v0='AOTVEXN0CF7VRDIDW64TV0H' where id=4; -update noar tt set b0='ALA3NK7N8WC7GP2CBRI7CX1V3' where id=4; -update noar ti set b0='ALA3NK7N8WC7GP2CBRI7CX1V3' where id=4; -update noar tt set v0='AR5KO486K' where id=4; -update noar ti set v0='AR5KO486K' where id=4; -update noar tt set b1='RCR3YKANN' where id=4; -update noar ti set b1='RCR3YKANN' where id=4; -update noar tt set v0='TLGJC19GVS6SLFK1O' where id=4; -update noar ti set v0='TLGJC19GVS6SLFK1O' where id=4; -update noar tt set b2='X3J231' where id=4; -update noar ti set b2='X3J231' where id=4; -update noar tt set v0='QMM8LAQS' where id=5; -update noar ti set v0='QMM8LAQS' where id=5; -update noar tt set b0='J2E7NVBTONPU6V425LE' where id=5; -update noar ti set b0='J2E7NVBTONPU6V425LE' where id=5; -update noar tt set v0='3EZNJ2PFM27PC1P26I9VODKBABQ0E9YW' where id=5; -update noar ti set v0='3EZNJ2PFM27PC1P26I9VODKBABQ0E9YW' where id=5; -update noar tt set b1='W2HSFYASIJKDGOUBVXFQMFNZ' where id=5; -update noar ti set b1='W2HSFYASIJKDGOUBVXFQMFNZ' where id=5; -update noar tt set v0='ZQSOMD43GFMFGJJ' where id=5; -update noar ti set v0='ZQSOMD43GFMFGJJ' where id=5; -update noar tt set b2='I6SI6YPOEPLT3GHC9707EM0FGVY' where id=5; -update noar ti set b2='I6SI6YPOEPLT3GHC9707EM0FGVY' where id=5; -update noar tt set v0='8MRACZEDAMCELBDHMVHGOPDR6XNVQXRK' where id=6; -update noar ti set v0='8MRACZEDAMCELBDHMVHGOPDR6XNVQXRK' where id=6; -update noar tt set b0='4ZEO72K7O4V37WKJB3J0QZ' where id=6; -update noar ti set b0='4ZEO72K7O4V37WKJB3J0QZ' where id=6; -update noar tt set v0='2K2LPBHY5XRWRFB64VF3RC7NPU' where id=6; -update noar ti set v0='2K2LPBHY5XRWRFB64VF3RC7NPU' where id=6; -update noar tt set b1='B' where id=6; -update noar ti set b1='B' where id=6; -update noar tt set v0='2RUM' where id=6; -update noar ti set v0='2RUM' where id=6; -update noar tt set b2='8Y' where id=6; -update noar ti set b2='8Y' where id=6; -update noar tt set v0='2AHJ44M79LR' where id=7; -update noar ti set v0='2AHJ44M79LR' where id=7; -update noar tt set b0='B3QRQU6XO' where id=7; -update noar ti set b0='B3QRQU6XO' where id=7; -update noar tt set v0='ZQMAN6W9DQO' where id=7; -update noar ti set v0='ZQMAN6W9DQO' where id=7; -update noar tt set b1='V78MZZW3CQBX0BZY' where id=7; -update noar ti set b1='V78MZZW3CQBX0BZY' where id=7; -update noar tt set v0='LJFDJPSEHKCBR1UQMLJC' where id=7; -update noar ti set v0='LJFDJPSEHKCBR1UQMLJC' where id=7; -update noar tt set b2='Y4DKDBXP7CN1XAH4G' where id=7; -update noar ti set b2='Y4DKDBXP7CN1XAH4G' where id=7; -update noar tt set v0='IK7AZ5XBBROYQ8F4IOC129ZJ' where id=8; -update noar ti set v0='IK7AZ5XBBROYQ8F4IOC129ZJ' where id=8; -update noar tt set b0='XT' where id=8; -update noar ti set b0='XT' where id=8; -update noar tt set v0='CTTTOX4FXK9Y3034TS4E7IDHKC' where id=8; -update noar ti set v0='CTTTOX4FXK9Y3034TS4E7IDHKC' where id=8; -update noar tt set b1='5UIAANG50UDRGFN' where id=8; -update noar ti set b1='5UIAANG50UDRGFN' where id=8; -update noar tt set v0='G' where id=8; -update noar ti set v0='G' where id=8; -update noar tt set b2='B' where id=8; -update noar ti set b2='B' where id=8; -update noar tt set v0='8TG7Z7T1' where id=9; -update noar ti set v0='8TG7Z7T1' where id=9; -update noar tt set b0='RDNYBT9KF8LK3CQ3OSZ' where id=9; -update noar ti set b0='RDNYBT9KF8LK3CQ3OSZ' where id=9; -update noar tt set v0='SAURT414' where id=9; -update noar ti set v0='SAURT414' where id=9; -update noar tt set b1='1UCRL3PWIYG' where id=9; -update noar ti set b1='1UCRL3PWIYG' where id=9; -update noar tt set v0='WJ3DK1' where id=9; -update noar ti set v0='WJ3DK1' where id=9; -update noar tt set b2='NYAZJ5HH60OQ3DS05LEXNKHDA2KH' where id=9; -update noar ti set b2='NYAZJ5HH60OQ3DS05LEXNKHDA2KH' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -f0 int null, -v0 varchar(32) null, -b0 blob null, -b1 tinyblob null, -b2 longblob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='HL08ND7Q6DMT3OHAN0JXSEN' where id=1; -update noar ti set v0='HL08ND7Q6DMT3OHAN0JXSEN' where id=1; -update noar tt set b0='DP58QF' where id=1; -update noar ti set b0='DP58QF' where id=1; -update noar tt set v0='TOBFDTZ' where id=1; -update noar ti set v0='TOBFDTZ' where id=1; -update noar tt set b1='C0T1VR7XJY2I5TZPSAWH6QP5SY5C' where id=1; -update noar ti set b1='C0T1VR7XJY2I5TZPSAWH6QP5SY5C' where id=1; -update noar tt set v0='O6M533' where id=1; -update noar ti set v0='O6M533' where id=1; -update noar tt set b2='J1QCYXJOTCHW2TG6ER49E3I8' where id=1; -update noar ti set b2='J1QCYXJOTCHW2TG6ER49E3I8' where id=1; -update noar tt set v0='1MLG4QUYLS5' where id=2; -update noar ti set v0='1MLG4QUYLS5' where id=2; -update noar tt set b0='JIZF' where id=2; -update noar ti set b0='JIZF' where id=2; -update noar tt set v0='KKZH' where id=2; -update noar ti set v0='KKZH' where id=2; -update noar tt set b1='VTY' where id=2; -update noar ti set b1='VTY' where id=2; -update noar tt set v0='JCIDR0Q' where id=2; -update noar ti set v0='JCIDR0Q' where id=2; -update noar tt set b2='AY783DZSX' where id=2; -update noar ti set b2='AY783DZSX' where id=2; -update noar tt set v0='G77SF9DW3V' where id=3; -update noar ti set v0='G77SF9DW3V' where id=3; -update noar tt set b0='W7AKNMEO8ZQRM2HAUI' where id=3; -update noar ti set b0='W7AKNMEO8ZQRM2HAUI' where id=3; -update noar tt set v0='GP2RCDN95RFE6Q2FORET3BQBUT' where id=3; -update noar ti set v0='GP2RCDN95RFE6Q2FORET3BQBUT' where id=3; -update noar tt set b1='QQ' where id=3; -update noar ti set b1='QQ' where id=3; -update noar tt set v0='DUXLNXEO' where id=3; -update noar ti set v0='DUXLNXEO' where id=3; -update noar tt set b2='IOXMLUCCUWG9190X' where id=3; -update noar ti set b2='IOXMLUCCUWG9190X' where id=3; -update noar tt set v0='2M8TGMTYRAE35B' where id=4; -update noar ti set v0='2M8TGMTYRAE35B' where id=4; -update noar tt set b0='P367R1OG' where id=4; -update noar ti set b0='P367R1OG' where id=4; -update noar tt set v0='DLUXSXJ' where id=4; -update noar ti set v0='DLUXSXJ' where id=4; -update noar tt set b1='A6DTY8XI3DO6K68I8SPJQD8HNL03K1' where id=4; -update noar ti set b1='A6DTY8XI3DO6K68I8SPJQD8HNL03K1' where id=4; -update noar tt set v0='RG49W6MANVB1NFRV1AKRGV3YGPC83' where id=4; -update noar ti set v0='RG49W6MANVB1NFRV1AKRGV3YGPC83' where id=4; -update noar tt set b2='UX7K28G' where id=4; -update noar ti set b2='UX7K28G' where id=4; -update noar tt set v0='R' where id=5; -update noar ti set v0='R' where id=5; -update noar tt set b0='DG27ZCOVM9WQGA' where id=5; -update noar ti set b0='DG27ZCOVM9WQGA' where id=5; -update noar tt set v0='GEBFAD60Z40LU0OB' where id=5; -update noar ti set v0='GEBFAD60Z40LU0OB' where id=5; -update noar tt set b1='0VDD84SRRGSAKPR6ZD3IJUKSG4' where id=5; -update noar ti set b1='0VDD84SRRGSAKPR6ZD3IJUKSG4' where id=5; -update noar tt set v0='V0MW93JK1OBS0OHC1KL' where id=5; -update noar ti set v0='V0MW93JK1OBS0OHC1KL' where id=5; -update noar tt set b2='WGV3M79OBFRIF18PO3STY4AU3T' where id=5; -update noar ti set b2='WGV3M79OBFRIF18PO3STY4AU3T' where id=5; -update noar tt set v0='X3RM6OE32' where id=6; -update noar ti set v0='X3RM6OE32' where id=6; -update noar tt set b0='PTODADEPHDB9D54DN5' where id=6; -update noar ti set b0='PTODADEPHDB9D54DN5' where id=6; -update noar tt set v0='YTUW1SVWSWCLJ143I20FL07EI0B5N' where id=6; -update noar ti set v0='YTUW1SVWSWCLJ143I20FL07EI0B5N' where id=6; -update noar tt set b1='565W558WPQ6KE3RZ5IXDHDPO' where id=6; -update noar ti set b1='565W558WPQ6KE3RZ5IXDHDPO' where id=6; -update noar tt set v0='TYRUWQTWTTN3HXCL1G5XSKK5ZN0H' where id=6; -update noar ti set v0='TYRUWQTWTTN3HXCL1G5XSKK5ZN0H' where id=6; -update noar tt set b2='19K9FVKBRVDPD6ATLMT0' where id=6; -update noar ti set b2='19K9FVKBRVDPD6ATLMT0' where id=6; -update noar tt set v0='LBIF0X8L' where id=7; -update noar ti set v0='LBIF0X8L' where id=7; -update noar tt set b0='R1985DLV' where id=7; -update noar ti set b0='R1985DLV' where id=7; -update noar tt set v0='V' where id=7; -update noar ti set v0='V' where id=7; -update noar tt set b1='FCQB1KVURQYSAFUL62ZDAC9E' where id=7; -update noar ti set b1='FCQB1KVURQYSAFUL62ZDAC9E' where id=7; -update noar tt set v0='L' where id=7; -update noar ti set v0='L' where id=7; -update noar tt set b2='J9POC94SSMTFZEY15Z' where id=7; -update noar ti set b2='J9POC94SSMTFZEY15Z' where id=7; -update noar tt set v0='0' where id=8; -update noar ti set v0='0' where id=8; -update noar tt set b0='4UZ2QBF6D8U5ONNKYS' where id=8; -update noar ti set b0='4UZ2QBF6D8U5ONNKYS' where id=8; -update noar tt set v0='E6POTG7BV3AWLSIYQKE' where id=8; -update noar ti set v0='E6POTG7BV3AWLSIYQKE' where id=8; -update noar tt set b1='6E1CXYETZS2L7' where id=8; -update noar ti set b1='6E1CXYETZS2L7' where id=8; -update noar tt set v0='Z855OK' where id=8; -update noar ti set v0='Z855OK' where id=8; -update noar tt set b2='M5C40FOV3EWMCRAN6O5RCM8P6H8' where id=8; -update noar ti set b2='M5C40FOV3EWMCRAN6O5RCM8P6H8' where id=8; -update noar tt set v0='LG8FIZK5SBLSHGYRXPZBOL96MI' where id=9; -update noar ti set v0='LG8FIZK5SBLSHGYRXPZBOL96MI' where id=9; -update noar tt set b0='Z3OSHXRBIJKE5WE01HGXZV' where id=9; -update noar ti set b0='Z3OSHXRBIJKE5WE01HGXZV' where id=9; -update noar tt set v0='NF2FK5MYMCVES2EAXB5C4D40T' where id=9; -update noar ti set v0='NF2FK5MYMCVES2EAXB5C4D40T' where id=9; -update noar tt set b1='S3ZSV00T' where id=9; -update noar ti set b1='S3ZSV00T' where id=9; -update noar tt set v0='TWVUKPSZ3Y8HF42O' where id=9; -update noar ti set v0='TWVUKPSZ3Y8HF42O' where id=9; -update noar tt set b2='LH02L19SD27935X7SNF' where id=9; -update noar ti set b2='LH02L19SD27935X7SNF' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -f0 int null, -v0 varchar(256) null, -b0 blob null, -b1 tinyblob null, -b2 longblob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='037BSCOD6UAEM5LDNURR' where id=1; -update noar ti set v0='037BSCOD6UAEM5LDNURR' where id=1; -update noar tt set b0='4YW3JEUTBJ1D4VHHA7QT9' where id=1; -update noar ti set b0='4YW3JEUTBJ1D4VHHA7QT9' where id=1; -update noar tt set v0='15Z94IRR19WZMA2NHVX1AULREG5L9J8' where id=1; -update noar ti set v0='15Z94IRR19WZMA2NHVX1AULREG5L9J8' where id=1; -update noar tt set b1='W7Z1RXA3ZTUBXYHNA' where id=1; -update noar ti set b1='W7Z1RXA3ZTUBXYHNA' where id=1; -update noar tt set v0='GZ1WBPP8PO7834SJKRADPAUBUJZ' where id=1; -update noar ti set v0='GZ1WBPP8PO7834SJKRADPAUBUJZ' where id=1; -update noar tt set b2='X9USN1N' where id=1; -update noar ti set b2='X9USN1N' where id=1; -update noar tt set v0='DK3OYIWLRKOX5CKZVFQ2TGE8AD' where id=2; -update noar ti set v0='DK3OYIWLRKOX5CKZVFQ2TGE8AD' where id=2; -update noar tt set b0='R5QHA0UTZKDO99Y2ETN0SQT9Q3' where id=2; -update noar ti set b0='R5QHA0UTZKDO99Y2ETN0SQT9Q3' where id=2; -update noar tt set v0='9OL0HBZOGLM13CZRIRDOJOZ1KU9' where id=2; -update noar ti set v0='9OL0HBZOGLM13CZRIRDOJOZ1KU9' where id=2; -update noar tt set b1='8Y33' where id=2; -update noar ti set b1='8Y33' where id=2; -update noar tt set v0='NK45G6F9KE5BE9C855NZ8S' where id=2; -update noar ti set v0='NK45G6F9KE5BE9C855NZ8S' where id=2; -update noar tt set b2='2IGA' where id=2; -update noar ti set b2='2IGA' where id=2; -update noar tt set v0='B67ULN' where id=3; -update noar ti set v0='B67ULN' where id=3; -update noar tt set b0='AF20HMLSZZFY' where id=3; -update noar ti set b0='AF20HMLSZZFY' where id=3; -update noar tt set v0='EL2LYNNMTGW6Z93QJ9B4C' where id=3; -update noar ti set v0='EL2LYNNMTGW6Z93QJ9B4C' where id=3; -update noar tt set b1='303BQITLZ9XIYWUU4L' where id=3; -update noar ti set b1='303BQITLZ9XIYWUU4L' where id=3; -update noar tt set v0='P9' where id=3; -update noar ti set v0='P9' where id=3; -update noar tt set b2='MO77HNMLFU1Q4SLEOTNH' where id=3; -update noar ti set b2='MO77HNMLFU1Q4SLEOTNH' where id=3; -update noar tt set v0='QSUWI3N' where id=4; -update noar ti set v0='QSUWI3N' where id=4; -update noar tt set b0='NROB647Y21JP6ZG8PS2H0PRA2E5FJJ0' where id=4; -update noar ti set b0='NROB647Y21JP6ZG8PS2H0PRA2E5FJJ0' where id=4; -update noar tt set v0='8J' where id=4; -update noar ti set v0='8J' where id=4; -update noar tt set b1='JBZHI9II7Y6YJE3QGWDOMAWW' where id=4; -update noar ti set b1='JBZHI9II7Y6YJE3QGWDOMAWW' where id=4; -update noar tt set v0='SXFNP56G12R0VV' where id=4; -update noar ti set v0='SXFNP56G12R0VV' where id=4; -update noar tt set b2='0J0FS6GRE5QLSG2CP2D93NNEH6AH' where id=4; -update noar ti set b2='0J0FS6GRE5QLSG2CP2D93NNEH6AH' where id=4; -update noar tt set v0='9PXH' where id=5; -update noar ti set v0='9PXH' where id=5; -update noar tt set b0='QZMT5GN9E' where id=5; -update noar ti set b0='QZMT5GN9E' where id=5; -update noar tt set v0='46G0EW2JW00712HPI' where id=5; -update noar ti set v0='46G0EW2JW00712HPI' where id=5; -update noar tt set b1='2TGWA4XA1LPIHAZ2819IK' where id=5; -update noar ti set b1='2TGWA4XA1LPIHAZ2819IK' where id=5; -update noar tt set v0='M2YNH389JT9C6D' where id=5; -update noar ti set v0='M2YNH389JT9C6D' where id=5; -update noar tt set b2='W' where id=5; -update noar ti set b2='W' where id=5; -update noar tt set v0='A8VH18SOSSTZC1I22OU8JZ6PTLEI3M' where id=6; -update noar ti set v0='A8VH18SOSSTZC1I22OU8JZ6PTLEI3M' where id=6; -update noar tt set b0='LQD9' where id=6; -update noar ti set b0='LQD9' where id=6; -update noar tt set v0='AZLK9SC06349JCTZHOZK1O0RM1ATWSDF' where id=6; -update noar ti set v0='AZLK9SC06349JCTZHOZK1O0RM1ATWSDF' where id=6; -update noar tt set b1='IK' where id=6; -update noar ti set b1='IK' where id=6; -update noar tt set v0='M4O' where id=6; -update noar ti set v0='M4O' where id=6; -update noar tt set b2='ORVTI5FU5YL0CR10PYNB1O' where id=6; -update noar ti set b2='ORVTI5FU5YL0CR10PYNB1O' where id=6; -update noar tt set v0='D8KM4C' where id=7; -update noar ti set v0='D8KM4C' where id=7; -update noar tt set b0='Q0LHBY3KXH' where id=7; -update noar ti set b0='Q0LHBY3KXH' where id=7; -update noar tt set v0='6GNDTR367H6K3N6J4SF1IK8Y' where id=7; -update noar ti set v0='6GNDTR367H6K3N6J4SF1IK8Y' where id=7; -update noar tt set b1='VNN6O2OFAPDZNMXFPZOJ' where id=7; -update noar ti set b1='VNN6O2OFAPDZNMXFPZOJ' where id=7; -update noar tt set v0='M66Z6ZUWVD8Z' where id=7; -update noar ti set v0='M66Z6ZUWVD8Z' where id=7; -update noar tt set b2='R1MUU63KRJCD0WVQ' where id=7; -update noar ti set b2='R1MUU63KRJCD0WVQ' where id=7; -update noar tt set v0='VW' where id=8; -update noar ti set v0='VW' where id=8; -update noar tt set b0='23EXKZTUHGSI2XCZJ6QC5' where id=8; -update noar ti set b0='23EXKZTUHGSI2XCZJ6QC5' where id=8; -update noar tt set v0='VM0IYDTL' where id=8; -update noar ti set v0='VM0IYDTL' where id=8; -update noar tt set b1='GHCI5XAPG83KZEFQDWCA7' where id=8; -update noar ti set b1='GHCI5XAPG83KZEFQDWCA7' where id=8; -update noar tt set v0='6W98FHZJ9VG' where id=8; -update noar ti set v0='6W98FHZJ9VG' where id=8; -update noar tt set b2='JKADCJ7TR1DYO4B9P4I' where id=8; -update noar ti set b2='JKADCJ7TR1DYO4B9P4I' where id=8; -update noar tt set v0='DJHM5O81KQ8' where id=9; -update noar ti set v0='DJHM5O81KQ8' where id=9; -update noar tt set b0='4UEFMIAVF93HL7PWE9FRJEWS3YNZTG' where id=9; -update noar ti set b0='4UEFMIAVF93HL7PWE9FRJEWS3YNZTG' where id=9; -update noar tt set v0='WZQ82KSAFPZXW08560P0NEQK6HHE5GSP' where id=9; -update noar ti set v0='WZQ82KSAFPZXW08560P0NEQK6HHE5GSP' where id=9; -update noar tt set b1='ZUY6KSNP80OXP4L4HZDY' where id=9; -update noar ti set b1='ZUY6KSNP80OXP4L4HZDY' where id=9; -update noar tt set v0='PLNEBEM31RDO2VK9QLN0I7MDZ' where id=9; -update noar ti set v0='PLNEBEM31RDO2VK9QLN0I7MDZ' where id=9; -update noar tt set b2='Q9I731ITHUFZM2INAGWF7' where id=9; -update noar ti set b2='Q9I731ITHUFZM2INAGWF7' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -f0 int not null, -v0 varchar(32) not null, -b0 blob not null, -b1 tinyblob not null, -b2 longblob not null -) engine=tokudb; -insert into tt values (1,0,'','','',''); -insert into tt values (2,0,'','','',''); -insert into tt values (3,0,'','','',''); -insert into tt values (4,0,'','','',''); -insert into tt values (5,0,'','','',''); -insert into tt values (6,0,'','','',''); -insert into tt values (7,0,'','','',''); -insert into tt values (8,0,'','','',''); -insert into tt values (9,0,'','','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='C42GOAGO' where id=1; -update noar ti set v0='C42GOAGO' where id=1; -update noar tt set b0='HN4WLXTY' where id=1; -update noar ti set b0='HN4WLXTY' where id=1; -update noar tt set v0='RH90QRFRIR83WY2C' where id=1; -update noar ti set v0='RH90QRFRIR83WY2C' where id=1; -update noar tt set b1='3B3T5GL6QCLKMR12FV7QJJLO7F' where id=1; -update noar ti set b1='3B3T5GL6QCLKMR12FV7QJJLO7F' where id=1; -update noar tt set v0='R02MJE6VKFBHN' where id=1; -update noar ti set v0='R02MJE6VKFBHN' where id=1; -update noar tt set b2='EVPJ1NGLYQ8MSPRRW0KEE9LQ' where id=1; -update noar ti set b2='EVPJ1NGLYQ8MSPRRW0KEE9LQ' where id=1; -update noar tt set v0='U33E21IEBDSBE26' where id=2; -update noar ti set v0='U33E21IEBDSBE26' where id=2; -update noar tt set b0='T7FN00HFEF7QE6ZNL4MLO9HIXYZHXB' where id=2; -update noar ti set b0='T7FN00HFEF7QE6ZNL4MLO9HIXYZHXB' where id=2; -update noar tt set v0='VFRBHOKTJTZ3FVZUYQI49LEO0KRZKA' where id=2; -update noar ti set v0='VFRBHOKTJTZ3FVZUYQI49LEO0KRZKA' where id=2; -update noar tt set b1='FE5WO0GZ24DV50CQUYH6ER' where id=2; -update noar ti set b1='FE5WO0GZ24DV50CQUYH6ER' where id=2; -update noar tt set v0='1D8H0' where id=2; -update noar ti set v0='1D8H0' where id=2; -update noar tt set b2='2RJ4C' where id=2; -update noar ti set b2='2RJ4C' where id=2; -update noar tt set v0='H6ZSWP2SY6LY7' where id=3; -update noar ti set v0='H6ZSWP2SY6LY7' where id=3; -update noar tt set b0='4L0WJMP0J' where id=3; -update noar ti set b0='4L0WJMP0J' where id=3; -update noar tt set v0='0782FAFVBIYP' where id=3; -update noar ti set v0='0782FAFVBIYP' where id=3; -update noar tt set b1='A' where id=3; -update noar ti set b1='A' where id=3; -update noar tt set v0='4SJ3C724XCY2OO6ZAKL2' where id=3; -update noar ti set v0='4SJ3C724XCY2OO6ZAKL2' where id=3; -update noar tt set b2='AI25R77LVHKWCJ5IT90OHAEGB0HFP' where id=3; -update noar ti set b2='AI25R77LVHKWCJ5IT90OHAEGB0HFP' where id=3; -update noar tt set v0='IP2PHUURA9TG2BYRSIXHN69VCR4' where id=4; -update noar ti set v0='IP2PHUURA9TG2BYRSIXHN69VCR4' where id=4; -update noar tt set b0='7ZKWYQM855KDNU0' where id=4; -update noar ti set b0='7ZKWYQM855KDNU0' where id=4; -update noar tt set v0='8TFKU3MM1UCNXO15' where id=4; -update noar ti set v0='8TFKU3MM1UCNXO15' where id=4; -update noar tt set b1='XOL13FKECZXFKXDTJVSN91MRZT' where id=4; -update noar ti set b1='XOL13FKECZXFKXDTJVSN91MRZT' where id=4; -update noar tt set v0='E' where id=4; -update noar ti set v0='E' where id=4; -update noar tt set b2='VC5PVJIQ0QZBPB4M602' where id=4; -update noar ti set b2='VC5PVJIQ0QZBPB4M602' where id=4; -update noar tt set v0='7IBXIAIYOMS0NEBK5QZSEHHP39J' where id=5; -update noar ti set v0='7IBXIAIYOMS0NEBK5QZSEHHP39J' where id=5; -update noar tt set b0='SSLR2AGMFPWOGIW15HQE' where id=5; -update noar ti set b0='SSLR2AGMFPWOGIW15HQE' where id=5; -update noar tt set v0='PG98BQTP' where id=5; -update noar ti set v0='PG98BQTP' where id=5; -update noar tt set b1='VJG5N8LIIMQ73NVRRU' where id=5; -update noar ti set b1='VJG5N8LIIMQ73NVRRU' where id=5; -update noar tt set v0='SCWX0YJFYQ9RJGWC13IG' where id=5; -update noar ti set v0='SCWX0YJFYQ9RJGWC13IG' where id=5; -update noar tt set b2='0REQYL6GMWRWVDU9GE' where id=5; -update noar ti set b2='0REQYL6GMWRWVDU9GE' where id=5; -update noar tt set v0='0ZOBV9YX' where id=6; -update noar ti set v0='0ZOBV9YX' where id=6; -update noar tt set b0='0MZZ2XV18L' where id=6; -update noar ti set b0='0MZZ2XV18L' where id=6; -update noar tt set v0='TGCUTH6145YS7' where id=6; -update noar ti set v0='TGCUTH6145YS7' where id=6; -update noar tt set b1='0YN7LFXSSES7FEHT4PFVV97Y0QU' where id=6; -update noar ti set b1='0YN7LFXSSES7FEHT4PFVV97Y0QU' where id=6; -update noar tt set v0='LYT0TI8TMD98EL3OCBNBJ774E6CAY51' where id=6; -update noar ti set v0='LYT0TI8TMD98EL3OCBNBJ774E6CAY51' where id=6; -update noar tt set b2='5HV9RBXVH1BPMRVU6ASD8J05ILORL' where id=6; -update noar ti set b2='5HV9RBXVH1BPMRVU6ASD8J05ILORL' where id=6; -update noar tt set v0='W26' where id=7; -update noar ti set v0='W26' where id=7; -update noar tt set b0='WUAVE5EXZ' where id=7; -update noar ti set b0='WUAVE5EXZ' where id=7; -update noar tt set v0='R14ATCQNG2MM8NAW2NM5PDSCOY' where id=7; -update noar ti set v0='R14ATCQNG2MM8NAW2NM5PDSCOY' where id=7; -update noar tt set b1='F08J9BB5D2C7708NZ05I5139R9N' where id=7; -update noar ti set b1='F08J9BB5D2C7708NZ05I5139R9N' where id=7; -update noar tt set v0='48NJAGD6GQMUK6VF3T8VJ' where id=7; -update noar ti set v0='48NJAGD6GQMUK6VF3T8VJ' where id=7; -update noar tt set b2='8SLDH' where id=7; -update noar ti set b2='8SLDH' where id=7; -update noar tt set v0='90WO80HNX4KHRGVLJ3T9' where id=8; -update noar ti set v0='90WO80HNX4KHRGVLJ3T9' where id=8; -update noar tt set b0='30XHF9SZ17MVI35B95ZVJRSLI' where id=8; -update noar ti set b0='30XHF9SZ17MVI35B95ZVJRSLI' where id=8; -update noar tt set v0='ZXOJZJIBRCUSDKQDDVR' where id=8; -update noar ti set v0='ZXOJZJIBRCUSDKQDDVR' where id=8; -update noar tt set b1='IV3M432DY0OK8ICM8P6BSPK' where id=8; -update noar ti set b1='IV3M432DY0OK8ICM8P6BSPK' where id=8; -update noar tt set v0='UXPRYKZRYDP0WQHCTDPBX9DJTD' where id=8; -update noar ti set v0='UXPRYKZRYDP0WQHCTDPBX9DJTD' where id=8; -update noar tt set b2='UMOL55ZDX9P3SMMKIYSFJRGC57C8YCL' where id=8; -update noar ti set b2='UMOL55ZDX9P3SMMKIYSFJRGC57C8YCL' where id=8; -update noar tt set v0='8Y0WO' where id=9; -update noar ti set v0='8Y0WO' where id=9; -update noar tt set b0='JEGB8G10FA01Y1NR2' where id=9; -update noar ti set b0='JEGB8G10FA01Y1NR2' where id=9; -update noar tt set v0='YF6E1B64NLQCTXNBNNXE6LVRLK62GKH8' where id=9; -update noar ti set v0='YF6E1B64NLQCTXNBNNXE6LVRLK62GKH8' where id=9; -update noar tt set b1='6UXFHBXAJ66' where id=9; -update noar ti set b1='6UXFHBXAJ66' where id=9; -update noar tt set v0='1R17PH0MGTJO0Y0IQ4EZW' where id=9; -update noar ti set v0='1R17PH0MGTJO0Y0IQ4EZW' where id=9; -update noar tt set b2='61MNMCQS6KD' where id=9; -update noar ti set b2='61MNMCQS6KD' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -f0 int not null, -v0 varchar(256) not null, -b0 blob not null, -b1 tinyblob not null, -b2 longblob not null -) engine=tokudb; -insert into tt values (1,0,'','','',''); -insert into tt values (2,0,'','','',''); -insert into tt values (3,0,'','','',''); -insert into tt values (4,0,'','','',''); -insert into tt values (5,0,'','','',''); -insert into tt values (6,0,'','','',''); -insert into tt values (7,0,'','','',''); -insert into tt values (8,0,'','','',''); -insert into tt values (9,0,'','','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='9RS28RMI8FV3XJ8ABG' where id=1; -update noar ti set v0='9RS28RMI8FV3XJ8ABG' where id=1; -update noar tt set b0='BZX6RZKXAZHRXW4FGY4L' where id=1; -update noar ti set b0='BZX6RZKXAZHRXW4FGY4L' where id=1; -update noar tt set v0='Q1B7M163EEEXWA7QH51PWXMF55FXM' where id=1; -update noar ti set v0='Q1B7M163EEEXWA7QH51PWXMF55FXM' where id=1; -update noar tt set b1='9LHC55YZ9508WHEGXP4LZ6IHMYKG6KTY' where id=1; -update noar ti set b1='9LHC55YZ9508WHEGXP4LZ6IHMYKG6KTY' where id=1; -update noar tt set v0='ODGERP7Z4RL2I8QNJ9FT5OQK' where id=1; -update noar ti set v0='ODGERP7Z4RL2I8QNJ9FT5OQK' where id=1; -update noar tt set b2='OKG' where id=1; -update noar ti set b2='OKG' where id=1; -update noar tt set v0='SXNPWX7JCVHVDTDGNHP' where id=2; -update noar ti set v0='SXNPWX7JCVHVDTDGNHP' where id=2; -update noar tt set b0='1' where id=2; -update noar ti set b0='1' where id=2; -update noar tt set v0='9' where id=2; -update noar ti set v0='9' where id=2; -update noar tt set b1='PDI0PNQTRKI1T56O8FBQAPZU9B' where id=2; -update noar ti set b1='PDI0PNQTRKI1T56O8FBQAPZU9B' where id=2; -update noar tt set v0='G2KKSDJN70FFTWQ3IQIPD6G8HZYGX' where id=2; -update noar ti set v0='G2KKSDJN70FFTWQ3IQIPD6G8HZYGX' where id=2; -update noar tt set b2='3DYCLBKT780I4D7GTQ5EPS2ZO5G7' where id=2; -update noar ti set b2='3DYCLBKT780I4D7GTQ5EPS2ZO5G7' where id=2; -update noar tt set v0='SCZOV67Y12P3H05HLPXTQWU2V1XC' where id=3; -update noar ti set v0='SCZOV67Y12P3H05HLPXTQWU2V1XC' where id=3; -update noar tt set b0='VFSCFM6UDB20W3C4C3X3H' where id=3; -update noar ti set b0='VFSCFM6UDB20W3C4C3X3H' where id=3; -update noar tt set v0='ZKS8CC0X7569A0IZ4AAKVGTIH3W2' where id=3; -update noar ti set v0='ZKS8CC0X7569A0IZ4AAKVGTIH3W2' where id=3; -update noar tt set b1='R30VRG7J5C4' where id=3; -update noar ti set b1='R30VRG7J5C4' where id=3; -update noar tt set v0='XSKMNRK7CDE8L7TUMG4ZB4IJQ' where id=3; -update noar ti set v0='XSKMNRK7CDE8L7TUMG4ZB4IJQ' where id=3; -update noar tt set b2='CN1IU44OUU4' where id=3; -update noar ti set b2='CN1IU44OUU4' where id=3; -update noar tt set v0='RCXYR8IC6XO9FMKFSHAXGSO6GRU' where id=4; -update noar ti set v0='RCXYR8IC6XO9FMKFSHAXGSO6GRU' where id=4; -update noar tt set b0='QUPEP6FCRTGAB5J2S7STT6K5EP4LRF' where id=4; -update noar ti set b0='QUPEP6FCRTGAB5J2S7STT6K5EP4LRF' where id=4; -update noar tt set v0='JHT9YYT07VE105BB58HCT' where id=4; -update noar ti set v0='JHT9YYT07VE105BB58HCT' where id=4; -update noar tt set b1='8RIYAFXTRB6MPG4ASFCHSWO1E6' where id=4; -update noar ti set b1='8RIYAFXTRB6MPG4ASFCHSWO1E6' where id=4; -update noar tt set v0='YM4WEQ19IMB92L876C6I0M82EGICZ' where id=4; -update noar ti set v0='YM4WEQ19IMB92L876C6I0M82EGICZ' where id=4; -update noar tt set b2='YZ4FUSYJPAXNS0D5SQKHWDBOU8' where id=4; -update noar ti set b2='YZ4FUSYJPAXNS0D5SQKHWDBOU8' where id=4; -update noar tt set v0='3CMWWGZ814VCI1FNGENS14CG' where id=5; -update noar ti set v0='3CMWWGZ814VCI1FNGENS14CG' where id=5; -update noar tt set b0='OH' where id=5; -update noar ti set b0='OH' where id=5; -update noar tt set v0='92LZBFM4CX90FKE4' where id=5; -update noar ti set v0='92LZBFM4CX90FKE4' where id=5; -update noar tt set b1='KX6' where id=5; -update noar ti set b1='KX6' where id=5; -update noar tt set v0='FVE272YWOB4B9V5WQ4E' where id=5; -update noar ti set v0='FVE272YWOB4B9V5WQ4E' where id=5; -update noar tt set b2='0OE' where id=5; -update noar ti set b2='0OE' where id=5; -update noar tt set v0='78IGGTMKJ' where id=6; -update noar ti set v0='78IGGTMKJ' where id=6; -update noar tt set b0='K05EWZ5D8FH' where id=6; -update noar ti set b0='K05EWZ5D8FH' where id=6; -update noar tt set v0='06YMKXNIV2V267E4STPLV5' where id=6; -update noar ti set v0='06YMKXNIV2V267E4STPLV5' where id=6; -update noar tt set b1='J1P507ATNGWP173LGF6B9MDVB0U6B0VC' where id=6; -update noar ti set b1='J1P507ATNGWP173LGF6B9MDVB0U6B0VC' where id=6; -update noar tt set v0='UUMKNRYHYIA0QKROO9Y238S6I' where id=6; -update noar ti set v0='UUMKNRYHYIA0QKROO9Y238S6I' where id=6; -update noar tt set b2='98AQGQKPWEGMCZQ4LZ' where id=6; -update noar ti set b2='98AQGQKPWEGMCZQ4LZ' where id=6; -update noar tt set v0='BGKM5YOE222Z4IN0PZPKZHLBO3GT0V76' where id=7; -update noar ti set v0='BGKM5YOE222Z4IN0PZPKZHLBO3GT0V76' where id=7; -update noar tt set b0='SCP57762NEZA2W16RJV10IX7QG29ME' where id=7; -update noar ti set b0='SCP57762NEZA2W16RJV10IX7QG29ME' where id=7; -update noar tt set v0='VJKJ' where id=7; -update noar ti set v0='VJKJ' where id=7; -update noar tt set b1='0FHCBD20XLCPYL' where id=7; -update noar ti set b1='0FHCBD20XLCPYL' where id=7; -update noar tt set v0='NQCJIQ5C18AFPZCJM5Z' where id=7; -update noar ti set v0='NQCJIQ5C18AFPZCJM5Z' where id=7; -update noar tt set b2='0AGMRCKUS4JU7BPIM5BB83ERIRQLLT' where id=7; -update noar ti set b2='0AGMRCKUS4JU7BPIM5BB83ERIRQLLT' where id=7; -update noar tt set v0='WCCB23VS' where id=8; -update noar ti set v0='WCCB23VS' where id=8; -update noar tt set b0='8FEI66J3P5MM7LAVVZCTKHU' where id=8; -update noar ti set b0='8FEI66J3P5MM7LAVVZCTKHU' where id=8; -update noar tt set v0='LSJPD3FMY6QU4TIQW' where id=8; -update noar ti set v0='LSJPD3FMY6QU4TIQW' where id=8; -update noar tt set b1='E84TBAO4LBA15TKDSUXD8' where id=8; -update noar ti set b1='E84TBAO4LBA15TKDSUXD8' where id=8; -update noar tt set v0='SJQ2FOI81BZY8DF2Y4S' where id=8; -update noar ti set v0='SJQ2FOI81BZY8DF2Y4S' where id=8; -update noar tt set b2='Q4AWTOP19YC1RF2' where id=8; -update noar ti set b2='Q4AWTOP19YC1RF2' where id=8; -update noar tt set v0='F2CMRQXJ7L2OBOARXJJS6FJ7K' where id=9; -update noar ti set v0='F2CMRQXJ7L2OBOARXJJS6FJ7K' where id=9; -update noar tt set b0='UXQ72ZJ1OL3D83U1J1TX30UB' where id=9; -update noar ti set b0='UXQ72ZJ1OL3D83U1J1TX30UB' where id=9; -update noar tt set v0='7D4N1BVA5UMHJLC7Y5ELXUBONSBEV3CI' where id=9; -update noar ti set v0='7D4N1BVA5UMHJLC7Y5ELXUBONSBEV3CI' where id=9; -update noar tt set b1='K7A253B9V9B' where id=9; -update noar ti set b1='K7A253B9V9B' where id=9; -update noar tt set v0='SWHHS1X89YUT4P' where id=9; -update noar ti set v0='SWHHS1X89YUT4P' where id=9; -update noar tt set b2='5LDJHY07T' where id=9; -update noar ti set b2='5LDJHY07T' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -f0 int null, -v0 varchar(32) null, -b0 blob null, -b1 blob null, -b2 tinyblob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='FTSNLX48FPC3Z59GRC00S3IWI8FOW8' where id=1; -update noar ti set v0='FTSNLX48FPC3Z59GRC00S3IWI8FOW8' where id=1; -update noar tt set b0='CBUDFPIL6G97OCZCTSFDPHLY' where id=1; -update noar ti set b0='CBUDFPIL6G97OCZCTSFDPHLY' where id=1; -update noar tt set v0='8VMHYNNDLEIF65WOEO2T' where id=1; -update noar ti set v0='8VMHYNNDLEIF65WOEO2T' where id=1; -update noar tt set b1='NIO9XQ' where id=1; -update noar ti set b1='NIO9XQ' where id=1; -update noar tt set v0='2WOFGZ7JB97UO1GPBYWEDWUYLE97A' where id=1; -update noar ti set v0='2WOFGZ7JB97UO1GPBYWEDWUYLE97A' where id=1; -update noar tt set b2='MX2CD2IYFNDUS5QL3SY1CQ5ZRWJ1BX' where id=1; -update noar ti set b2='MX2CD2IYFNDUS5QL3SY1CQ5ZRWJ1BX' where id=1; -update noar tt set v0='TWYXVR' where id=2; -update noar ti set v0='TWYXVR' where id=2; -update noar tt set b0='3DW7WN0SXKSZIMSVV' where id=2; -update noar ti set b0='3DW7WN0SXKSZIMSVV' where id=2; -update noar tt set v0='WOPYJ5ZTU7GBTV17' where id=2; -update noar ti set v0='WOPYJ5ZTU7GBTV17' where id=2; -update noar tt set b1='73L1459XU3O' where id=2; -update noar ti set b1='73L1459XU3O' where id=2; -update noar tt set v0='5A6EB' where id=2; -update noar ti set v0='5A6EB' where id=2; -update noar tt set b2='KNW8GW9MO644GJXEZVZ66NUO0D' where id=2; -update noar ti set b2='KNW8GW9MO644GJXEZVZ66NUO0D' where id=2; -update noar tt set v0='9X' where id=3; -update noar ti set v0='9X' where id=3; -update noar tt set b0='BR2YZKECOQ1DQ3U4JQSU0H40XGD89HT4' where id=3; -update noar ti set b0='BR2YZKECOQ1DQ3U4JQSU0H40XGD89HT4' where id=3; -update noar tt set v0='E317U' where id=3; -update noar ti set v0='E317U' where id=3; -update noar tt set b1='3SUXST' where id=3; -update noar ti set b1='3SUXST' where id=3; -update noar tt set v0='5JRFR7I9' where id=3; -update noar ti set v0='5JRFR7I9' where id=3; -update noar tt set b2='D8U6CDS' where id=3; -update noar ti set b2='D8U6CDS' where id=3; -update noar tt set v0='ZLTAFG8XKFQXLYXG4UXEFUGCP0L' where id=4; -update noar ti set v0='ZLTAFG8XKFQXLYXG4UXEFUGCP0L' where id=4; -update noar tt set b0='VX1YO3X13EDJX8USCGL9C8' where id=4; -update noar ti set b0='VX1YO3X13EDJX8USCGL9C8' where id=4; -update noar tt set v0='GWWGOFU9BJYVAK2JI9WKB1ODOJ0W5Y1' where id=4; -update noar ti set v0='GWWGOFU9BJYVAK2JI9WKB1ODOJ0W5Y1' where id=4; -update noar tt set b1='VKD6KSPB' where id=4; -update noar ti set b1='VKD6KSPB' where id=4; -update noar tt set v0='8YEQTSKBU2FWTO' where id=4; -update noar ti set v0='8YEQTSKBU2FWTO' where id=4; -update noar tt set b2='BGBHO7HM8U4F1OSBNASQDM2GIKLK3A0U' where id=4; -update noar ti set b2='BGBHO7HM8U4F1OSBNASQDM2GIKLK3A0U' where id=4; -update noar tt set v0='ALG' where id=5; -update noar ti set v0='ALG' where id=5; -update noar tt set b0='F4X' where id=5; -update noar ti set b0='F4X' where id=5; -update noar tt set v0='HGRTD2CA7KC' where id=5; -update noar ti set v0='HGRTD2CA7KC' where id=5; -update noar tt set b1='5M0ML18KQBLF35WRC' where id=5; -update noar ti set b1='5M0ML18KQBLF35WRC' where id=5; -update noar tt set v0='P5RMTMLEQEDBKCQKVP2C20' where id=5; -update noar ti set v0='P5RMTMLEQEDBKCQKVP2C20' where id=5; -update noar tt set b2='HE' where id=5; -update noar ti set b2='HE' where id=5; -update noar tt set v0='3H2WY7SZ65L' where id=6; -update noar ti set v0='3H2WY7SZ65L' where id=6; -update noar tt set b0='IT0M7CAWNCAKWVWOZSM6DYHH3P' where id=6; -update noar ti set b0='IT0M7CAWNCAKWVWOZSM6DYHH3P' where id=6; -update noar tt set v0='RB5HMOK29MILNHN2OSEYLUPPP4H' where id=6; -update noar ti set v0='RB5HMOK29MILNHN2OSEYLUPPP4H' where id=6; -update noar tt set b1='ZDXD5Y5U0LSXDM39KPJ62BSF0MI' where id=6; -update noar ti set b1='ZDXD5Y5U0LSXDM39KPJ62BSF0MI' where id=6; -update noar tt set v0='COT1BBYWGSTDATDQ4F1' where id=6; -update noar ti set v0='COT1BBYWGSTDATDQ4F1' where id=6; -update noar tt set b2='3IAST7R5MWTOR44ZGIF' where id=6; -update noar ti set b2='3IAST7R5MWTOR44ZGIF' where id=6; -update noar tt set v0='M' where id=7; -update noar ti set v0='M' where id=7; -update noar tt set b0='9D' where id=7; -update noar ti set b0='9D' where id=7; -update noar tt set v0='YL2DP77HVMK26RKN' where id=7; -update noar ti set v0='YL2DP77HVMK26RKN' where id=7; -update noar tt set b1='LG4KK022RYACFBWG3ZQH72Y7OG' where id=7; -update noar ti set b1='LG4KK022RYACFBWG3ZQH72Y7OG' where id=7; -update noar tt set v0='U6PVA70E7LPNVWS7FCZDWBDBLGEO' where id=7; -update noar ti set v0='U6PVA70E7LPNVWS7FCZDWBDBLGEO' where id=7; -update noar tt set b2='DXC34V' where id=7; -update noar ti set b2='DXC34V' where id=7; -update noar tt set v0='4NWU5HFSQBMVL0K54XJV4' where id=8; -update noar ti set v0='4NWU5HFSQBMVL0K54XJV4' where id=8; -update noar tt set b0='LXCZAUC2L4RM13NA70PW' where id=8; -update noar ti set b0='LXCZAUC2L4RM13NA70PW' where id=8; -update noar tt set v0='4PRBAPDWA' where id=8; -update noar ti set v0='4PRBAPDWA' where id=8; -update noar tt set b1='UMGIE5XK7MOTSYHEHHZTGJ1' where id=8; -update noar ti set b1='UMGIE5XK7MOTSYHEHHZTGJ1' where id=8; -update noar tt set v0='LFZX38DXDO0NIT' where id=8; -update noar ti set v0='LFZX38DXDO0NIT' where id=8; -update noar tt set b2='M3K4TLSYY5XJKOU6VAQSD55C' where id=8; -update noar ti set b2='M3K4TLSYY5XJKOU6VAQSD55C' where id=8; -update noar tt set v0='UXB1LCVR0U045R8Q1PXHUZKCZMPEJO' where id=9; -update noar ti set v0='UXB1LCVR0U045R8Q1PXHUZKCZMPEJO' where id=9; -update noar tt set b0='BY' where id=9; -update noar ti set b0='BY' where id=9; -update noar tt set v0='B1NMD9UAFP7JVAIEDD' where id=9; -update noar ti set v0='B1NMD9UAFP7JVAIEDD' where id=9; -update noar tt set b1='143KXIY2AV73KDRZP76CD57' where id=9; -update noar ti set b1='143KXIY2AV73KDRZP76CD57' where id=9; -update noar tt set v0='O6YTPMGO8C8T2ZJ6TL4WK3KV0HSFQ' where id=9; -update noar ti set v0='O6YTPMGO8C8T2ZJ6TL4WK3KV0HSFQ' where id=9; -update noar tt set b2='Q6YARMIVCGLZ44BFH9' where id=9; -update noar ti set b2='Q6YARMIVCGLZ44BFH9' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -f0 int null, -v0 varchar(256) null, -b0 blob null, -b1 blob null, -b2 tinyblob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='9EP71TJU73HKT5T30J2ZS8G2YXNAF' where id=1; -update noar ti set v0='9EP71TJU73HKT5T30J2ZS8G2YXNAF' where id=1; -update noar tt set b0='OX4N3QZ' where id=1; -update noar ti set b0='OX4N3QZ' where id=1; -update noar tt set v0='GR5GL4A1P9HOJSSI72XFN7Y43Z' where id=1; -update noar ti set v0='GR5GL4A1P9HOJSSI72XFN7Y43Z' where id=1; -update noar tt set b1='61D7POE3DH44KZRLFBXHX1P55B317EPX' where id=1; -update noar ti set b1='61D7POE3DH44KZRLFBXHX1P55B317EPX' where id=1; -update noar tt set v0='KUOSAQTI4ABBG2G9XCAB0FVAAGQ' where id=1; -update noar ti set v0='KUOSAQTI4ABBG2G9XCAB0FVAAGQ' where id=1; -update noar tt set b2='ORBA85WI0PUKLF00D3Q' where id=1; -update noar ti set b2='ORBA85WI0PUKLF00D3Q' where id=1; -update noar tt set v0='2XJSKST1WXO1Y' where id=2; -update noar ti set v0='2XJSKST1WXO1Y' where id=2; -update noar tt set b0='1CCD5E' where id=2; -update noar ti set b0='1CCD5E' where id=2; -update noar tt set v0='GFRXM5Q' where id=2; -update noar ti set v0='GFRXM5Q' where id=2; -update noar tt set b1='NL6U52NRV8' where id=2; -update noar ti set b1='NL6U52NRV8' where id=2; -update noar tt set v0='Q43S6HH4MNGO2VHWO9YR' where id=2; -update noar ti set v0='Q43S6HH4MNGO2VHWO9YR' where id=2; -update noar tt set b2='7EQWXQFWAZBKN' where id=2; -update noar ti set b2='7EQWXQFWAZBKN' where id=2; -update noar tt set v0='79RFKXOTL' where id=3; -update noar ti set v0='79RFKXOTL' where id=3; -update noar tt set b0='WTIMW24TP7I' where id=3; -update noar ti set b0='WTIMW24TP7I' where id=3; -update noar tt set v0='ELXQDU7CJAATSGK060LTLYQ' where id=3; -update noar ti set v0='ELXQDU7CJAATSGK060LTLYQ' where id=3; -update noar tt set b1='8SPYN6TFKGZ7ZA9XJ' where id=3; -update noar ti set b1='8SPYN6TFKGZ7ZA9XJ' where id=3; -update noar tt set v0='47ZAOIW5T4A42WJA4KISBUA5PL' where id=3; -update noar ti set v0='47ZAOIW5T4A42WJA4KISBUA5PL' where id=3; -update noar tt set b2='5GK3R97EGZKGSZFVA2N' where id=3; -update noar ti set b2='5GK3R97EGZKGSZFVA2N' where id=3; -update noar tt set v0='3OFTVEMAJFPFD84' where id=4; -update noar ti set v0='3OFTVEMAJFPFD84' where id=4; -update noar tt set b0='LD8XBJNMTKYX05' where id=4; -update noar ti set b0='LD8XBJNMTKYX05' where id=4; -update noar tt set v0='9UEGUHFUI4XGU255JCPSJW1VHDMWA' where id=4; -update noar ti set v0='9UEGUHFUI4XGU255JCPSJW1VHDMWA' where id=4; -update noar tt set b1='72U93SWVMQI6Q8K5HKBVB3LSYZMJU9F' where id=4; -update noar ti set b1='72U93SWVMQI6Q8K5HKBVB3LSYZMJU9F' where id=4; -update noar tt set v0='KNM88YL' where id=4; -update noar ti set v0='KNM88YL' where id=4; -update noar tt set b2='OG5IMCGVAXVF0E338CVH3JFGLQ' where id=4; -update noar ti set b2='OG5IMCGVAXVF0E338CVH3JFGLQ' where id=4; -update noar tt set v0='BF3LIFMQS7TD5MQWI7AXQ' where id=5; -update noar ti set v0='BF3LIFMQS7TD5MQWI7AXQ' where id=5; -update noar tt set b0='KT475U6FTQ3XR' where id=5; -update noar ti set b0='KT475U6FTQ3XR' where id=5; -update noar tt set v0='LVAY6YGCJJ0' where id=5; -update noar ti set v0='LVAY6YGCJJ0' where id=5; -update noar tt set b1='3JB476R7U1DUP97R' where id=5; -update noar ti set b1='3JB476R7U1DUP97R' where id=5; -update noar tt set v0='R3CB1GDQKTC6YSE0OSRH12QGJ4HD' where id=5; -update noar ti set v0='R3CB1GDQKTC6YSE0OSRH12QGJ4HD' where id=5; -update noar tt set b2='P4YX' where id=5; -update noar ti set b2='P4YX' where id=5; -update noar tt set v0='51VF6SUAHRQXG4HNUYFL1' where id=6; -update noar ti set v0='51VF6SUAHRQXG4HNUYFL1' where id=6; -update noar tt set b0='MBCKD91X' where id=6; -update noar ti set b0='MBCKD91X' where id=6; -update noar tt set v0='03PEHCGE6UVUI4905IXSR' where id=6; -update noar ti set v0='03PEHCGE6UVUI4905IXSR' where id=6; -update noar tt set b1='R59' where id=6; -update noar ti set b1='R59' where id=6; -update noar tt set v0='EYRVSM7TRBGC' where id=6; -update noar ti set v0='EYRVSM7TRBGC' where id=6; -update noar tt set b2='21FMKLL3QGXMHM3FDG' where id=6; -update noar ti set b2='21FMKLL3QGXMHM3FDG' where id=6; -update noar tt set v0='7AL01Y16PL8XI66ZQH3GKND42QF357' where id=7; -update noar ti set v0='7AL01Y16PL8XI66ZQH3GKND42QF357' where id=7; -update noar tt set b0='4CN7Y4WFF5JHJFCTJHLQ' where id=7; -update noar ti set b0='4CN7Y4WFF5JHJFCTJHLQ' where id=7; -update noar tt set v0='H99GE2OPVIJKUCLD' where id=7; -update noar ti set v0='H99GE2OPVIJKUCLD' where id=7; -update noar tt set b1='1NRK0WK98' where id=7; -update noar ti set b1='1NRK0WK98' where id=7; -update noar tt set v0='UWZTGH2XOT45Q0IUYSCY1' where id=7; -update noar ti set v0='UWZTGH2XOT45Q0IUYSCY1' where id=7; -update noar tt set b2='G4GZ4PBOYK7FS9O181I8F1A' where id=7; -update noar ti set b2='G4GZ4PBOYK7FS9O181I8F1A' where id=7; -update noar tt set v0='89MMK4CRYCK' where id=8; -update noar ti set v0='89MMK4CRYCK' where id=8; -update noar tt set b0='PTN65PFD87EFYCBME7YY0DR7Y2C8F0' where id=8; -update noar ti set b0='PTN65PFD87EFYCBME7YY0DR7Y2C8F0' where id=8; -update noar tt set v0='TZSXY1' where id=8; -update noar ti set v0='TZSXY1' where id=8; -update noar tt set b1='3' where id=8; -update noar ti set b1='3' where id=8; -update noar tt set v0='BTA4UXKGGNH0P54DA5SW2629OTM3' where id=8; -update noar ti set v0='BTA4UXKGGNH0P54DA5SW2629OTM3' where id=8; -update noar tt set b2='MUB1EKPITPMWVOH1QQZ3SR4D' where id=8; -update noar ti set b2='MUB1EKPITPMWVOH1QQZ3SR4D' where id=8; -update noar tt set v0='XP1Y3BIE4L0E' where id=9; -update noar ti set v0='XP1Y3BIE4L0E' where id=9; -update noar tt set b0='UUAHHACS7KK1RVSNWGX0XOJW03N' where id=9; -update noar ti set b0='UUAHHACS7KK1RVSNWGX0XOJW03N' where id=9; -update noar tt set v0='K9H6PGY9HJ' where id=9; -update noar ti set v0='K9H6PGY9HJ' where id=9; -update noar tt set b1='KDHDJTCIV25LY6OW6D4KEXSC' where id=9; -update noar ti set b1='KDHDJTCIV25LY6OW6D4KEXSC' where id=9; -update noar tt set v0='4DXN4LW' where id=9; -update noar ti set v0='4DXN4LW' where id=9; -update noar tt set b2='09IPJ7O62MUZINSQW3X4' where id=9; -update noar ti set b2='09IPJ7O62MUZINSQW3X4' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -f0 int not null, -v0 varchar(32) not null, -b0 blob not null, -b1 blob not null, -b2 tinyblob not null -) engine=tokudb; -insert into tt values (1,0,'','','',''); -insert into tt values (2,0,'','','',''); -insert into tt values (3,0,'','','',''); -insert into tt values (4,0,'','','',''); -insert into tt values (5,0,'','','',''); -insert into tt values (6,0,'','','',''); -insert into tt values (7,0,'','','',''); -insert into tt values (8,0,'','','',''); -insert into tt values (9,0,'','','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='YD' where id=1; -update noar ti set v0='YD' where id=1; -update noar tt set b0='JKKP2PL7WTT4A' where id=1; -update noar ti set b0='JKKP2PL7WTT4A' where id=1; -update noar tt set v0='NDSE90YJG2N2Y' where id=1; -update noar ti set v0='NDSE90YJG2N2Y' where id=1; -update noar tt set b1='EDSVO' where id=1; -update noar ti set b1='EDSVO' where id=1; -update noar tt set v0='LC3RVYFJGOXYE7K' where id=1; -update noar ti set v0='LC3RVYFJGOXYE7K' where id=1; -update noar tt set b2='TD2T' where id=1; -update noar ti set b2='TD2T' where id=1; -update noar tt set v0='NZ8' where id=2; -update noar ti set v0='NZ8' where id=2; -update noar tt set b0='OJ' where id=2; -update noar ti set b0='OJ' where id=2; -update noar tt set v0='KL8573' where id=2; -update noar ti set v0='KL8573' where id=2; -update noar tt set b1='1KF8ONUVJ9QGHESI4F3CH' where id=2; -update noar ti set b1='1KF8ONUVJ9QGHESI4F3CH' where id=2; -update noar tt set v0='LQLXIURUB45BFZUL4L103HQ29VCF2H' where id=2; -update noar ti set v0='LQLXIURUB45BFZUL4L103HQ29VCF2H' where id=2; -update noar tt set b2='0WSUSP6VZTDXP3' where id=2; -update noar ti set b2='0WSUSP6VZTDXP3' where id=2; -update noar tt set v0='6104383MNNBXXQ7G4D4BA5DJ2H' where id=3; -update noar ti set v0='6104383MNNBXXQ7G4D4BA5DJ2H' where id=3; -update noar tt set b0='R3SKHJ0K91VB8BVCDTOU' where id=3; -update noar ti set b0='R3SKHJ0K91VB8BVCDTOU' where id=3; -update noar tt set v0='ZMRU4860W2' where id=3; -update noar ti set v0='ZMRU4860W2' where id=3; -update noar tt set b1='9H0J8S9NNQTVAMWMBV1D' where id=3; -update noar ti set b1='9H0J8S9NNQTVAMWMBV1D' where id=3; -update noar tt set v0='8H' where id=3; -update noar ti set v0='8H' where id=3; -update noar tt set b2='B6BA0OQTNZFBS' where id=3; -update noar ti set b2='B6BA0OQTNZFBS' where id=3; -update noar tt set v0='WVW7D0CXPQKP0NSIECODW5FF16J' where id=4; -update noar ti set v0='WVW7D0CXPQKP0NSIECODW5FF16J' where id=4; -update noar tt set b0='BG9JZ5NLGWSCLR0MT0ORZ1W' where id=4; -update noar ti set b0='BG9JZ5NLGWSCLR0MT0ORZ1W' where id=4; -update noar tt set v0='8D2CUBQKV4' where id=4; -update noar ti set v0='8D2CUBQKV4' where id=4; -update noar tt set b1='KDWYWWWJF8KL' where id=4; -update noar ti set b1='KDWYWWWJF8KL' where id=4; -update noar tt set v0='NTJU5M' where id=4; -update noar ti set v0='NTJU5M' where id=4; -update noar tt set b2='8IKTEHCHCW' where id=4; -update noar ti set b2='8IKTEHCHCW' where id=4; -update noar tt set v0='KRMXQUNAHZE' where id=5; -update noar ti set v0='KRMXQUNAHZE' where id=5; -update noar tt set b0='SD9CD19UAT' where id=5; -update noar ti set b0='SD9CD19UAT' where id=5; -update noar tt set v0='5G77M' where id=5; -update noar ti set v0='5G77M' where id=5; -update noar tt set b1='2SUORZ4NKGK3B4R325XRSRNFTXWU' where id=5; -update noar ti set b1='2SUORZ4NKGK3B4R325XRSRNFTXWU' where id=5; -update noar tt set v0='YNO0RVZ6XRE3' where id=5; -update noar ti set v0='YNO0RVZ6XRE3' where id=5; -update noar tt set b2='X' where id=5; -update noar ti set b2='X' where id=5; -update noar tt set v0='1TYAGCJUWZ1K5IYLZP65SVKYQ' where id=6; -update noar ti set v0='1TYAGCJUWZ1K5IYLZP65SVKYQ' where id=6; -update noar tt set b0='I1BBXO0FDMCF2SQA4H8N00W73SY' where id=6; -update noar ti set b0='I1BBXO0FDMCF2SQA4H8N00W73SY' where id=6; -update noar tt set v0='8E6VZGXF31M' where id=6; -update noar ti set v0='8E6VZGXF31M' where id=6; -update noar tt set b1='AGQT35MHC54PRCUZNV4LS' where id=6; -update noar ti set b1='AGQT35MHC54PRCUZNV4LS' where id=6; -update noar tt set v0='UCHUW3EWIJ' where id=6; -update noar ti set v0='UCHUW3EWIJ' where id=6; -update noar tt set b2='VX5R1OM5FESHQVLQC9JFBRYMFP0ZH3XB' where id=6; -update noar ti set b2='VX5R1OM5FESHQVLQC9JFBRYMFP0ZH3XB' where id=6; -update noar tt set v0='2C0F' where id=7; -update noar ti set v0='2C0F' where id=7; -update noar tt set b0='TH5W7UZ7MTRT52YI1AF0534C1Z7AF' where id=7; -update noar ti set b0='TH5W7UZ7MTRT52YI1AF0534C1Z7AF' where id=7; -update noar tt set v0='VFAWG' where id=7; -update noar ti set v0='VFAWG' where id=7; -update noar tt set b1='P0RXNBWKZHA' where id=7; -update noar ti set b1='P0RXNBWKZHA' where id=7; -update noar tt set v0='2NATG' where id=7; -update noar ti set v0='2NATG' where id=7; -update noar tt set b2='GPCJ2ZBQO1VCB3R' where id=7; -update noar ti set b2='GPCJ2ZBQO1VCB3R' where id=7; -update noar tt set v0='6ZXMM5T' where id=8; -update noar ti set v0='6ZXMM5T' where id=8; -update noar tt set b0='BDK4CIHZ7OD9F7CTV' where id=8; -update noar ti set b0='BDK4CIHZ7OD9F7CTV' where id=8; -update noar tt set v0='9W' where id=8; -update noar ti set v0='9W' where id=8; -update noar tt set b1='PIJIKVA51RYQKB' where id=8; -update noar ti set b1='PIJIKVA51RYQKB' where id=8; -update noar tt set v0='SB9J9HMBEF10UKA' where id=8; -update noar ti set v0='SB9J9HMBEF10UKA' where id=8; -update noar tt set b2='VTRFSXTBYR73UBHUGE1DSPTBAI8HQJ' where id=8; -update noar ti set b2='VTRFSXTBYR73UBHUGE1DSPTBAI8HQJ' where id=8; -update noar tt set v0='SF3ZDLRX0KQX2IXFNRPTH' where id=9; -update noar ti set v0='SF3ZDLRX0KQX2IXFNRPTH' where id=9; -update noar tt set b0='BB0ONZFAF2' where id=9; -update noar ti set b0='BB0ONZFAF2' where id=9; -update noar tt set v0='X9ZIMD9MVPQW' where id=9; -update noar ti set v0='X9ZIMD9MVPQW' where id=9; -update noar tt set b1='B3H7OLTI' where id=9; -update noar ti set b1='B3H7OLTI' where id=9; -update noar tt set v0='WF0SLXFB397F' where id=9; -update noar ti set v0='WF0SLXFB397F' where id=9; -update noar tt set b2='J5TEJYU3M2I5K1V0CLLRN9B' where id=9; -update noar ti set b2='J5TEJYU3M2I5K1V0CLLRN9B' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -f0 int not null, -v0 varchar(256) not null, -b0 blob not null, -b1 blob not null, -b2 tinyblob not null -) engine=tokudb; -insert into tt values (1,0,'','','',''); -insert into tt values (2,0,'','','',''); -insert into tt values (3,0,'','','',''); -insert into tt values (4,0,'','','',''); -insert into tt values (5,0,'','','',''); -insert into tt values (6,0,'','','',''); -insert into tt values (7,0,'','','',''); -insert into tt values (8,0,'','','',''); -insert into tt values (9,0,'','','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='7ZY2N10WJFL3W7O5QE4P7G89UUHHPY' where id=1; -update noar ti set v0='7ZY2N10WJFL3W7O5QE4P7G89UUHHPY' where id=1; -update noar tt set b0='DXU33E2O7DYWD7WWW7965P3V394UH7V' where id=1; -update noar ti set b0='DXU33E2O7DYWD7WWW7965P3V394UH7V' where id=1; -update noar tt set v0='F9IYKKFYVHOQDHB' where id=1; -update noar ti set v0='F9IYKKFYVHOQDHB' where id=1; -update noar tt set b1='FGT40NAVGIG8EEFXD' where id=1; -update noar ti set b1='FGT40NAVGIG8EEFXD' where id=1; -update noar tt set v0='4X9NAY2Q4' where id=1; -update noar ti set v0='4X9NAY2Q4' where id=1; -update noar tt set b2='7TOHMB7' where id=1; -update noar ti set b2='7TOHMB7' where id=1; -update noar tt set v0='RM2O6DRPX3FSKOL031DGXYELDHM' where id=2; -update noar ti set v0='RM2O6DRPX3FSKOL031DGXYELDHM' where id=2; -update noar tt set b0='JZ11GJZDIC8VM24SR6IUJZ0WZO11' where id=2; -update noar ti set b0='JZ11GJZDIC8VM24SR6IUJZ0WZO11' where id=2; -update noar tt set v0='3UDTOQ5Y374TFOPIJIRZNV' where id=2; -update noar ti set v0='3UDTOQ5Y374TFOPIJIRZNV' where id=2; -update noar tt set b1='NL2LU02OF0TNID16A04XWGRG' where id=2; -update noar ti set b1='NL2LU02OF0TNID16A04XWGRG' where id=2; -update noar tt set v0='D7DY7EH2CG553QHJHV5' where id=2; -update noar ti set v0='D7DY7EH2CG553QHJHV5' where id=2; -update noar tt set b2='0S9I52JNFOKSRDORSRI8JC6D1W865CX' where id=2; -update noar ti set b2='0S9I52JNFOKSRDORSRI8JC6D1W865CX' where id=2; -update noar tt set v0='P77FPAAA6F2075P35ZV08B4P' where id=3; -update noar ti set v0='P77FPAAA6F2075P35ZV08B4P' where id=3; -update noar tt set b0='XOX' where id=3; -update noar ti set b0='XOX' where id=3; -update noar tt set v0='EGAGEV7C43CD5Z5U7O' where id=3; -update noar ti set v0='EGAGEV7C43CD5Z5U7O' where id=3; -update noar tt set b1='ZMT' where id=3; -update noar ti set b1='ZMT' where id=3; -update noar tt set v0='YVL5LFTE6YABM256048GZBVMRJ5SK' where id=3; -update noar ti set v0='YVL5LFTE6YABM256048GZBVMRJ5SK' where id=3; -update noar tt set b2='83RFGIGF' where id=3; -update noar ti set b2='83RFGIGF' where id=3; -update noar tt set v0='HYOQUL7INO0GH15GRHWB9XGG5YN' where id=4; -update noar ti set v0='HYOQUL7INO0GH15GRHWB9XGG5YN' where id=4; -update noar tt set b0='DHWDSY9DYCBFJ8UECW2ONLCXJW47' where id=4; -update noar ti set b0='DHWDSY9DYCBFJ8UECW2ONLCXJW47' where id=4; -update noar tt set v0='SFW3LQ0LAFFY79UF4' where id=4; -update noar ti set v0='SFW3LQ0LAFFY79UF4' where id=4; -update noar tt set b1='Q' where id=4; -update noar ti set b1='Q' where id=4; -update noar tt set v0='4MO2IAB5HVTQ16F' where id=4; -update noar ti set v0='4MO2IAB5HVTQ16F' where id=4; -update noar tt set b2='IF4' where id=4; -update noar ti set b2='IF4' where id=4; -update noar tt set v0='W7' where id=5; -update noar ti set v0='W7' where id=5; -update noar tt set b0='Y349Y' where id=5; -update noar ti set b0='Y349Y' where id=5; -update noar tt set v0='W6C63B6WDOKKLN02ZPE384ZOWOGHJ5C' where id=5; -update noar ti set v0='W6C63B6WDOKKLN02ZPE384ZOWOGHJ5C' where id=5; -update noar tt set b1='21BWMO8C47OW8Y9M83FHKBC9COWL7R' where id=5; -update noar ti set b1='21BWMO8C47OW8Y9M83FHKBC9COWL7R' where id=5; -update noar tt set v0='5GL0F5Z9MAMRP0I1HJX' where id=5; -update noar ti set v0='5GL0F5Z9MAMRP0I1HJX' where id=5; -update noar tt set b2='AAR57DP24PV5JAXPVL4U0SAM5V' where id=5; -update noar ti set b2='AAR57DP24PV5JAXPVL4U0SAM5V' where id=5; -update noar tt set v0='WQCMIC4TVW' where id=6; -update noar ti set v0='WQCMIC4TVW' where id=6; -update noar tt set b0='G281WN097XXGNA4NHOMFTTRS13D5' where id=6; -update noar ti set b0='G281WN097XXGNA4NHOMFTTRS13D5' where id=6; -update noar tt set v0='JQPRV1S9K0X6IMIM7JFPIX47HXW' where id=6; -update noar ti set v0='JQPRV1S9K0X6IMIM7JFPIX47HXW' where id=6; -update noar tt set b1='DMMZ' where id=6; -update noar ti set b1='DMMZ' where id=6; -update noar tt set v0='35KVTIA4F1HKC' where id=6; -update noar ti set v0='35KVTIA4F1HKC' where id=6; -update noar tt set b2='F9N1' where id=6; -update noar ti set b2='F9N1' where id=6; -update noar tt set v0='PKVQ4' where id=7; -update noar ti set v0='PKVQ4' where id=7; -update noar tt set b0='01CBOANC05OQ4MRYO719IP687GRZ' where id=7; -update noar ti set b0='01CBOANC05OQ4MRYO719IP687GRZ' where id=7; -update noar tt set v0='PW0X2YDQSM8B6642EGIYY728ETZ6D1' where id=7; -update noar ti set v0='PW0X2YDQSM8B6642EGIYY728ETZ6D1' where id=7; -update noar tt set b1='44OF0D7' where id=7; -update noar ti set b1='44OF0D7' where id=7; -update noar tt set v0='CCV' where id=7; -update noar ti set v0='CCV' where id=7; -update noar tt set b2='JRWZX' where id=7; -update noar ti set b2='JRWZX' where id=7; -update noar tt set v0='ZQ9TFF53XW53AUJ2O1J7BZF3RDI92C' where id=8; -update noar ti set v0='ZQ9TFF53XW53AUJ2O1J7BZF3RDI92C' where id=8; -update noar tt set b0='OO0V1G' where id=8; -update noar ti set b0='OO0V1G' where id=8; -update noar tt set v0='V' where id=8; -update noar ti set v0='V' where id=8; -update noar tt set b1='6RZL7O0QSA' where id=8; -update noar ti set b1='6RZL7O0QSA' where id=8; -update noar tt set v0='IG7SF370IQO' where id=8; -update noar ti set v0='IG7SF370IQO' where id=8; -update noar tt set b2='F4VK' where id=8; -update noar ti set b2='F4VK' where id=8; -update noar tt set v0='AJOOR3YRNX8YB71LGMAAN6MJHV9ID' where id=9; -update noar ti set v0='AJOOR3YRNX8YB71LGMAAN6MJHV9ID' where id=9; -update noar tt set b0='8GAP83BNYJCH85P2' where id=9; -update noar ti set b0='8GAP83BNYJCH85P2' where id=9; -update noar tt set v0='T27BL1YT' where id=9; -update noar ti set v0='T27BL1YT' where id=9; -update noar tt set b1='P4LJ9MBV3AIOQ79' where id=9; -update noar ti set b1='P4LJ9MBV3AIOQ79' where id=9; -update noar tt set v0='8Y1HDDLXFBHR3EP6' where id=9; -update noar ti set v0='8Y1HDDLXFBHR3EP6' where id=9; -update noar tt set b2='PEMLQ7A2CEYAJLG9S' where id=9; -update noar ti set b2='PEMLQ7A2CEYAJLG9S' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -f0 int null, -v0 varchar(32) null, -b0 blob null, -b1 blob null, -b2 blob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='OHILF04F60NXEJRL6F' where id=1; -update noar ti set v0='OHILF04F60NXEJRL6F' where id=1; -update noar tt set b0='C8I3P4ITSKDS8ORHDT0W9G5' where id=1; -update noar ti set b0='C8I3P4ITSKDS8ORHDT0W9G5' where id=1; -update noar tt set v0='XL10OB0' where id=1; -update noar ti set v0='XL10OB0' where id=1; -update noar tt set b1='OGP68635LUQ1KYQ8VV31LO52ISV' where id=1; -update noar ti set b1='OGP68635LUQ1KYQ8VV31LO52ISV' where id=1; -update noar tt set v0='FRU' where id=1; -update noar ti set v0='FRU' where id=1; -update noar tt set b2='JY54DILVUGLQPNSD1VSY6G' where id=1; -update noar ti set b2='JY54DILVUGLQPNSD1VSY6G' where id=1; -update noar tt set v0='4HJ1KMDM9LNE5ZSABV6C' where id=2; -update noar ti set v0='4HJ1KMDM9LNE5ZSABV6C' where id=2; -update noar tt set b0='XVB0SARTERFOSG6NJT5XAGU49V0AV' where id=2; -update noar ti set b0='XVB0SARTERFOSG6NJT5XAGU49V0AV' where id=2; -update noar tt set v0='AGIZS88F8CRH33T9OVH2O0JDRA3Q6' where id=2; -update noar ti set v0='AGIZS88F8CRH33T9OVH2O0JDRA3Q6' where id=2; -update noar tt set b1='XFUZ' where id=2; -update noar ti set b1='XFUZ' where id=2; -update noar tt set v0='WRNNPI53MB1Q5BZVUCJM90IM4M1D' where id=2; -update noar ti set v0='WRNNPI53MB1Q5BZVUCJM90IM4M1D' where id=2; -update noar tt set b2='ZUNFTPAWM8JUPD820CTVY' where id=2; -update noar ti set b2='ZUNFTPAWM8JUPD820CTVY' where id=2; -update noar tt set v0='FS2BT489HS0S2RFWMF67GR00U9IH' where id=3; -update noar ti set v0='FS2BT489HS0S2RFWMF67GR00U9IH' where id=3; -update noar tt set b0='7Z2LUM8K46K8V3AEN74DGKGNWPAE40' where id=3; -update noar ti set b0='7Z2LUM8K46K8V3AEN74DGKGNWPAE40' where id=3; -update noar tt set v0='LSO1AKTYIJJO2IA7' where id=3; -update noar ti set v0='LSO1AKTYIJJO2IA7' where id=3; -update noar tt set b1='JB' where id=3; -update noar ti set b1='JB' where id=3; -update noar tt set v0='41L7PJA1LI73S8JF1KXUE' where id=3; -update noar ti set v0='41L7PJA1LI73S8JF1KXUE' where id=3; -update noar tt set b2='QKGXEY' where id=3; -update noar ti set b2='QKGXEY' where id=3; -update noar tt set v0='3FXQ6VWJ1CSU' where id=4; -update noar ti set v0='3FXQ6VWJ1CSU' where id=4; -update noar tt set b0='R1GZA9AD76DJUBM' where id=4; -update noar ti set b0='R1GZA9AD76DJUBM' where id=4; -update noar tt set v0='RO6PR48BBWTJT' where id=4; -update noar ti set v0='RO6PR48BBWTJT' where id=4; -update noar tt set b1='DD3NLHSN3A8MQ4VKZ3N' where id=4; -update noar ti set b1='DD3NLHSN3A8MQ4VKZ3N' where id=4; -update noar tt set v0='J5C9U04KYK400MO47SA6' where id=4; -update noar ti set v0='J5C9U04KYK400MO47SA6' where id=4; -update noar tt set b2='9' where id=4; -update noar ti set b2='9' where id=4; -update noar tt set v0='LV9YVQ7Q263C26I02318HP69Y3FP2QC' where id=5; -update noar ti set v0='LV9YVQ7Q263C26I02318HP69Y3FP2QC' where id=5; -update noar tt set b0='CCE' where id=5; -update noar ti set b0='CCE' where id=5; -update noar tt set v0='IXKG3KA3GSUXAIEA438P4WBN6ITHJ5' where id=5; -update noar ti set v0='IXKG3KA3GSUXAIEA438P4WBN6ITHJ5' where id=5; -update noar tt set b1='ITV76CAQZVFQFE4VCU1HCSE3DG' where id=5; -update noar ti set b1='ITV76CAQZVFQFE4VCU1HCSE3DG' where id=5; -update noar tt set v0='8KWVNJJTY4Z86' where id=5; -update noar ti set v0='8KWVNJJTY4Z86' where id=5; -update noar tt set b2='WSTT2TG6IPKP7VVNGT' where id=5; -update noar ti set b2='WSTT2TG6IPKP7VVNGT' where id=5; -update noar tt set v0='CM' where id=6; -update noar ti set v0='CM' where id=6; -update noar tt set b0='NXIK5VOBE' where id=6; -update noar ti set b0='NXIK5VOBE' where id=6; -update noar tt set v0='GVNB6' where id=6; -update noar ti set v0='GVNB6' where id=6; -update noar tt set b1='Q99' where id=6; -update noar ti set b1='Q99' where id=6; -update noar tt set v0='AK' where id=6; -update noar ti set v0='AK' where id=6; -update noar tt set b2='DVPR4YH8FCR6YFTBG1B4BDH8IP' where id=6; -update noar ti set b2='DVPR4YH8FCR6YFTBG1B4BDH8IP' where id=6; -update noar tt set v0='EHB6BL3GYLRDONWF' where id=7; -update noar ti set v0='EHB6BL3GYLRDONWF' where id=7; -update noar tt set b0='1VT0U80Y9MD6NQ0QX5JO' where id=7; -update noar ti set b0='1VT0U80Y9MD6NQ0QX5JO' where id=7; -update noar tt set v0='T' where id=7; -update noar ti set v0='T' where id=7; -update noar tt set b1='HYDQGXSWL8' where id=7; -update noar ti set b1='HYDQGXSWL8' where id=7; -update noar tt set v0='16Z1PJZCLZ87W2EAIWJOCL36ML1M' where id=7; -update noar ti set v0='16Z1PJZCLZ87W2EAIWJOCL36ML1M' where id=7; -update noar tt set b2='FB' where id=7; -update noar ti set b2='FB' where id=7; -update noar tt set v0='LVANGGM7YQQ4OKAV0E8MZ' where id=8; -update noar ti set v0='LVANGGM7YQQ4OKAV0E8MZ' where id=8; -update noar tt set b0='FNX2VFNQSRPHLU1CX' where id=8; -update noar ti set b0='FNX2VFNQSRPHLU1CX' where id=8; -update noar tt set v0='ADUVBROBXM' where id=8; -update noar ti set v0='ADUVBROBXM' where id=8; -update noar tt set b1='52AKHOTG3' where id=8; -update noar ti set b1='52AKHOTG3' where id=8; -update noar tt set v0='AUY577K9AA7ZZRG8I94' where id=8; -update noar ti set v0='AUY577K9AA7ZZRG8I94' where id=8; -update noar tt set b2='8C4K90555ZLV1KPGHQ6KJIGAGM9I8J1' where id=8; -update noar ti set b2='8C4K90555ZLV1KPGHQ6KJIGAGM9I8J1' where id=8; -update noar tt set v0='XF04BXXZFNG7L0OLQJ2DWFKPA' where id=9; -update noar ti set v0='XF04BXXZFNG7L0OLQJ2DWFKPA' where id=9; -update noar tt set b0='6VZJQ1WTMMPYW0PQBU673TMCHJ2QQY' where id=9; -update noar ti set b0='6VZJQ1WTMMPYW0PQBU673TMCHJ2QQY' where id=9; -update noar tt set v0='L1SONQIKQPKYGQLK8UIZK851HNT5Q' where id=9; -update noar ti set v0='L1SONQIKQPKYGQLK8UIZK851HNT5Q' where id=9; -update noar tt set b1='EJ0GL9FU3AGQX9TXFJKZ4FQRIKSBB2J' where id=9; -update noar ti set b1='EJ0GL9FU3AGQX9TXFJKZ4FQRIKSBB2J' where id=9; -update noar tt set v0='YLU1JHLC' where id=9; -update noar ti set v0='YLU1JHLC' where id=9; -update noar tt set b2='69YT' where id=9; -update noar ti set b2='69YT' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -f0 int null, -v0 varchar(256) null, -b0 blob null, -b1 blob null, -b2 blob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='VK78QUVI77ZN4BF6D1JOS8UN' where id=1; -update noar ti set v0='VK78QUVI77ZN4BF6D1JOS8UN' where id=1; -update noar tt set b0='YZEFHBAU7VW7QX1LMAVAMZ5AFOW7PPWC' where id=1; -update noar ti set b0='YZEFHBAU7VW7QX1LMAVAMZ5AFOW7PPWC' where id=1; -update noar tt set v0='HVC3ZWEZR45QMEONCRHKW3WR' where id=1; -update noar ti set v0='HVC3ZWEZR45QMEONCRHKW3WR' where id=1; -update noar tt set b1='VMM6XW1NFF863B2ZDJK5LH' where id=1; -update noar ti set b1='VMM6XW1NFF863B2ZDJK5LH' where id=1; -update noar tt set v0='ABECRXSVLXS3OK6A4VMOEPQ' where id=1; -update noar ti set v0='ABECRXSVLXS3OK6A4VMOEPQ' where id=1; -update noar tt set b2='805Y6RS1MLESLG4K8SQWB9' where id=1; -update noar ti set b2='805Y6RS1MLESLG4K8SQWB9' where id=1; -update noar tt set v0='148T7RW05854PEGF3' where id=2; -update noar ti set v0='148T7RW05854PEGF3' where id=2; -update noar tt set b0='3H' where id=2; -update noar ti set b0='3H' where id=2; -update noar tt set v0='9NIFKEGJQRZTUJTRVH7' where id=2; -update noar ti set v0='9NIFKEGJQRZTUJTRVH7' where id=2; -update noar tt set b1='MQR1C' where id=2; -update noar ti set b1='MQR1C' where id=2; -update noar tt set v0='XI0YT5ZMXLZKKAETDAS' where id=2; -update noar ti set v0='XI0YT5ZMXLZKKAETDAS' where id=2; -update noar tt set b2='0JC2RRT9AZYLTTAI' where id=2; -update noar ti set b2='0JC2RRT9AZYLTTAI' where id=2; -update noar tt set v0='T0G0NWX4IS3AF9495ZKDI1K' where id=3; -update noar ti set v0='T0G0NWX4IS3AF9495ZKDI1K' where id=3; -update noar tt set b0='47F60' where id=3; -update noar ti set b0='47F60' where id=3; -update noar tt set v0='371MW2SWY668OLPBBIG' where id=3; -update noar ti set v0='371MW2SWY668OLPBBIG' where id=3; -update noar tt set b1='2W' where id=3; -update noar ti set b1='2W' where id=3; -update noar tt set v0='IQ7' where id=3; -update noar ti set v0='IQ7' where id=3; -update noar tt set b2='5P04YDSA' where id=3; -update noar ti set b2='5P04YDSA' where id=3; -update noar tt set v0='3UW' where id=4; -update noar ti set v0='3UW' where id=4; -update noar tt set b0='SYILSORIIM7FAX8WKDUCV9VENY' where id=4; -update noar ti set b0='SYILSORIIM7FAX8WKDUCV9VENY' where id=4; -update noar tt set v0='AWA7UIJ9F33VV4P3WOKHISAE6' where id=4; -update noar ti set v0='AWA7UIJ9F33VV4P3WOKHISAE6' where id=4; -update noar tt set b1='CD8NI' where id=4; -update noar ti set b1='CD8NI' where id=4; -update noar tt set v0='R6ITDVE394UNGYZROOSHMXBG7LBDD6' where id=4; -update noar ti set v0='R6ITDVE394UNGYZROOSHMXBG7LBDD6' where id=4; -update noar tt set b2='RUG30GRB078XSRE4XQEMLC9AO4GY2R1' where id=4; -update noar ti set b2='RUG30GRB078XSRE4XQEMLC9AO4GY2R1' where id=4; -update noar tt set v0='HST854VB108C' where id=5; -update noar ti set v0='HST854VB108C' where id=5; -update noar tt set b0='D7' where id=5; -update noar ti set b0='D7' where id=5; -update noar tt set v0='KNCWJQT513GRUJIW8LDG9O0RB3DZ1M' where id=5; -update noar ti set v0='KNCWJQT513GRUJIW8LDG9O0RB3DZ1M' where id=5; -update noar tt set b1='EYZ8LC9ZBD4DNILTKGNZE93QNYPS' where id=5; -update noar ti set b1='EYZ8LC9ZBD4DNILTKGNZE93QNYPS' where id=5; -update noar tt set v0='2C2G5PLZU2E3TRY' where id=5; -update noar ti set v0='2C2G5PLZU2E3TRY' where id=5; -update noar tt set b2='16Z3Z4HIPKBBHXHPXNM7TNZUZX48' where id=5; -update noar ti set b2='16Z3Z4HIPKBBHXHPXNM7TNZUZX48' where id=5; -update noar tt set v0='0RHDKGUPVQ8XMC15GW5DAJDF' where id=6; -update noar ti set v0='0RHDKGUPVQ8XMC15GW5DAJDF' where id=6; -update noar tt set b0='GEO5636JY3SWSY1IRJWTNAMP' where id=6; -update noar ti set b0='GEO5636JY3SWSY1IRJWTNAMP' where id=6; -update noar tt set v0='NO1CS3PBA' where id=6; -update noar ti set v0='NO1CS3PBA' where id=6; -update noar tt set b1='RWPFII00Q2NO24PWXEFDW7M00' where id=6; -update noar ti set b1='RWPFII00Q2NO24PWXEFDW7M00' where id=6; -update noar tt set v0='2T8MTSX152AB8THITMTIFD7QQN404' where id=6; -update noar ti set v0='2T8MTSX152AB8THITMTIFD7QQN404' where id=6; -update noar tt set b2='P6IC' where id=6; -update noar ti set b2='P6IC' where id=6; -update noar tt set v0='D2HH5M8CH01W8IC89MT' where id=7; -update noar ti set v0='D2HH5M8CH01W8IC89MT' where id=7; -update noar tt set b0='YIQB0M4KWBZ6YXBY8EYT62EI707BCE' where id=7; -update noar ti set b0='YIQB0M4KWBZ6YXBY8EYT62EI707BCE' where id=7; -update noar tt set v0='6BSXBGQK' where id=7; -update noar ti set v0='6BSXBGQK' where id=7; -update noar tt set b1='YHQW6AU6K913C3GX3EMQCWBQ' where id=7; -update noar ti set b1='YHQW6AU6K913C3GX3EMQCWBQ' where id=7; -update noar tt set v0='BU5VTADN' where id=7; -update noar ti set v0='BU5VTADN' where id=7; -update noar tt set b2='2X6OBIB1EQW6G5OQ7B9ZBT6Y' where id=7; -update noar ti set b2='2X6OBIB1EQW6G5OQ7B9ZBT6Y' where id=7; -update noar tt set v0='H5MIFDOWE3G' where id=8; -update noar ti set v0='H5MIFDOWE3G' where id=8; -update noar tt set b0='JR9R55XL3MU9C14O' where id=8; -update noar ti set b0='JR9R55XL3MU9C14O' where id=8; -update noar tt set v0='757K0OIKSJQDRJ8HGMLX2K2SUYQ' where id=8; -update noar ti set v0='757K0OIKSJQDRJ8HGMLX2K2SUYQ' where id=8; -update noar tt set b1='WY3' where id=8; -update noar ti set b1='WY3' where id=8; -update noar tt set v0='3QVHTO3FQ5YLUA' where id=8; -update noar ti set v0='3QVHTO3FQ5YLUA' where id=8; -update noar tt set b2='3MKUV' where id=8; -update noar ti set b2='3MKUV' where id=8; -update noar tt set v0='PQZ7UCD72P2RRLLOTDR5QPIE0BJ5' where id=9; -update noar ti set v0='PQZ7UCD72P2RRLLOTDR5QPIE0BJ5' where id=9; -update noar tt set b0='1HCMZ4YZ7' where id=9; -update noar ti set b0='1HCMZ4YZ7' where id=9; -update noar tt set v0='KQW7T8CY9ZWP63N00F97' where id=9; -update noar ti set v0='KQW7T8CY9ZWP63N00F97' where id=9; -update noar tt set b1='LIXNRRJC3BLTMWCA0FJMH0BWBFG91YS' where id=9; -update noar ti set b1='LIXNRRJC3BLTMWCA0FJMH0BWBFG91YS' where id=9; -update noar tt set v0='QH156VY8U8ZL89719A6COFXJ2M' where id=9; -update noar ti set v0='QH156VY8U8ZL89719A6COFXJ2M' where id=9; -update noar tt set b2='UCCP3G084WAKSFS9' where id=9; -update noar ti set b2='UCCP3G084WAKSFS9' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -f0 int not null, -v0 varchar(32) not null, -b0 blob not null, -b1 blob not null, -b2 blob not null -) engine=tokudb; -insert into tt values (1,0,'','','',''); -insert into tt values (2,0,'','','',''); -insert into tt values (3,0,'','','',''); -insert into tt values (4,0,'','','',''); -insert into tt values (5,0,'','','',''); -insert into tt values (6,0,'','','',''); -insert into tt values (7,0,'','','',''); -insert into tt values (8,0,'','','',''); -insert into tt values (9,0,'','','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='B5XWHWKNJK1PTAAW3WE2LR2J6HFAJ1KB' where id=1; -update noar ti set v0='B5XWHWKNJK1PTAAW3WE2LR2J6HFAJ1KB' where id=1; -update noar tt set b0='AQK8983Q5PY5B0R7' where id=1; -update noar ti set b0='AQK8983Q5PY5B0R7' where id=1; -update noar tt set v0='IP8OWZPLPHZX08TXADD687XTUE' where id=1; -update noar ti set v0='IP8OWZPLPHZX08TXADD687XTUE' where id=1; -update noar tt set b1='4RLR' where id=1; -update noar ti set b1='4RLR' where id=1; -update noar tt set v0='TTAFDB4FN9JF5C8878TIBJ' where id=1; -update noar ti set v0='TTAFDB4FN9JF5C8878TIBJ' where id=1; -update noar tt set b2='UM91JULKWUQS86JS01ERWEM0HKKFTA2' where id=1; -update noar ti set b2='UM91JULKWUQS86JS01ERWEM0HKKFTA2' where id=1; -update noar tt set v0='V2UXBYWMPOWS06HIIRI3' where id=2; -update noar ti set v0='V2UXBYWMPOWS06HIIRI3' where id=2; -update noar tt set b0='HJHRQ8PV6JHB9DO0L5REVCGSR' where id=2; -update noar ti set b0='HJHRQ8PV6JHB9DO0L5REVCGSR' where id=2; -update noar tt set v0='6ZPN2DJDX5C9RUO' where id=2; -update noar ti set v0='6ZPN2DJDX5C9RUO' where id=2; -update noar tt set b1='B98DODIGBA' where id=2; -update noar ti set b1='B98DODIGBA' where id=2; -update noar tt set v0='KBMTV956BWQYH4IJXTIYJ0Q3O' where id=2; -update noar ti set v0='KBMTV956BWQYH4IJXTIYJ0Q3O' where id=2; -update noar tt set b2='7AN5TAY95NZ' where id=2; -update noar ti set b2='7AN5TAY95NZ' where id=2; -update noar tt set v0='BVLR72H4Z0FASJESJU2DOUKOB6GCMB' where id=3; -update noar ti set v0='BVLR72H4Z0FASJESJU2DOUKOB6GCMB' where id=3; -update noar tt set b0='R23GLO' where id=3; -update noar ti set b0='R23GLO' where id=3; -update noar tt set v0='SWIC1LY6CB222UBSVEA88CKWSHCI73J' where id=3; -update noar ti set v0='SWIC1LY6CB222UBSVEA88CKWSHCI73J' where id=3; -update noar tt set b1='68KKE7M9L7BX2MKZNK9V8CE5UC' where id=3; -update noar ti set b1='68KKE7M9L7BX2MKZNK9V8CE5UC' where id=3; -update noar tt set v0='KFRJRFKWZX9J67QNGE091IEQSQBTR6' where id=3; -update noar ti set v0='KFRJRFKWZX9J67QNGE091IEQSQBTR6' where id=3; -update noar tt set b2='B1LMRJAC7AB7UGP9G1VSYITAFFTF3P2' where id=3; -update noar ti set b2='B1LMRJAC7AB7UGP9G1VSYITAFFTF3P2' where id=3; -update noar tt set v0='MSG8KH2QHKM24IUKFNTQ8' where id=4; -update noar ti set v0='MSG8KH2QHKM24IUKFNTQ8' where id=4; -update noar tt set b0='I7' where id=4; -update noar ti set b0='I7' where id=4; -update noar tt set v0='PYXXJR6FTHTH' where id=4; -update noar ti set v0='PYXXJR6FTHTH' where id=4; -update noar tt set b1='X4P2X' where id=4; -update noar ti set b1='X4P2X' where id=4; -update noar tt set v0='M55060DV5VQIRPHUAWR0F5UKLKH' where id=4; -update noar ti set v0='M55060DV5VQIRPHUAWR0F5UKLKH' where id=4; -update noar tt set b2='56NSLOR' where id=4; -update noar ti set b2='56NSLOR' where id=4; -update noar tt set v0='QH36L2YOAWU06RR48JCSQYG' where id=5; -update noar ti set v0='QH36L2YOAWU06RR48JCSQYG' where id=5; -update noar tt set b0='2LCECGVHIAFWLKMIXTTT3BYU5' where id=5; -update noar ti set b0='2LCECGVHIAFWLKMIXTTT3BYU5' where id=5; -update noar tt set v0='GLKR0M2RG0IUN3IOH' where id=5; -update noar ti set v0='GLKR0M2RG0IUN3IOH' where id=5; -update noar tt set b1='ZCNWUWA14AQ' where id=5; -update noar ti set b1='ZCNWUWA14AQ' where id=5; -update noar tt set v0='ZWRT6V7UMML' where id=5; -update noar ti set v0='ZWRT6V7UMML' where id=5; -update noar tt set b2='DHXQZ16C5P2JJURQTU' where id=5; -update noar ti set b2='DHXQZ16C5P2JJURQTU' where id=5; -update noar tt set v0='RU30IHVPF8JHJGMLZKOU55R6WW20DW' where id=6; -update noar ti set v0='RU30IHVPF8JHJGMLZKOU55R6WW20DW' where id=6; -update noar tt set b0='K7GJAPHJY1ZCZMPZOBR5U' where id=6; -update noar ti set b0='K7GJAPHJY1ZCZMPZOBR5U' where id=6; -update noar tt set v0='IQ' where id=6; -update noar ti set v0='IQ' where id=6; -update noar tt set b1='ZT2H1ROSHU1ODB231F591' where id=6; -update noar ti set b1='ZT2H1ROSHU1ODB231F591' where id=6; -update noar tt set v0='8UTCDLMXU17E' where id=6; -update noar ti set v0='8UTCDLMXU17E' where id=6; -update noar tt set b2='3U5LUDCE6AQK366' where id=6; -update noar ti set b2='3U5LUDCE6AQK366' where id=6; -update noar tt set v0='WYF3G4OSDUYMDMLQ' where id=7; -update noar ti set v0='WYF3G4OSDUYMDMLQ' where id=7; -update noar tt set b0='890M8R8857IUJ70D0R1EO6359' where id=7; -update noar ti set b0='890M8R8857IUJ70D0R1EO6359' where id=7; -update noar tt set v0='GAKJP' where id=7; -update noar ti set v0='GAKJP' where id=7; -update noar tt set b1='XAF' where id=7; -update noar ti set b1='XAF' where id=7; -update noar tt set v0='CO83M' where id=7; -update noar ti set v0='CO83M' where id=7; -update noar tt set b2='371Y58KL7UAFIVULL2UW4R' where id=7; -update noar ti set b2='371Y58KL7UAFIVULL2UW4R' where id=7; -update noar tt set v0='WQBVS64ACCNCTC3D9SV53X8W0WD' where id=8; -update noar ti set v0='WQBVS64ACCNCTC3D9SV53X8W0WD' where id=8; -update noar tt set b0='RNW6XQ2XV1AS9DV0' where id=8; -update noar ti set b0='RNW6XQ2XV1AS9DV0' where id=8; -update noar tt set v0='LCNOX19GU690FN2NIQRA3QKMP9FUNVDZ' where id=8; -update noar ti set v0='LCNOX19GU690FN2NIQRA3QKMP9FUNVDZ' where id=8; -update noar tt set b1='EOMGAJHOPKPSVL99' where id=8; -update noar ti set b1='EOMGAJHOPKPSVL99' where id=8; -update noar tt set v0='VDJG5ZCF3S6PTJOV' where id=8; -update noar ti set v0='VDJG5ZCF3S6PTJOV' where id=8; -update noar tt set b2='Q0HJLIWI2BE553NIPGDXQOOJGJ' where id=8; -update noar ti set b2='Q0HJLIWI2BE553NIPGDXQOOJGJ' where id=8; -update noar tt set v0='UJO9DQD1TU15WJKC' where id=9; -update noar ti set v0='UJO9DQD1TU15WJKC' where id=9; -update noar tt set b0='PGTZGOTNUPLUUDVRJTDCES61UL1' where id=9; -update noar ti set b0='PGTZGOTNUPLUUDVRJTDCES61UL1' where id=9; -update noar tt set v0='4JA99KW3OHT06PG4IRSV' where id=9; -update noar ti set v0='4JA99KW3OHT06PG4IRSV' where id=9; -update noar tt set b1='HSHJIRXKIY2IF1G0KY9P' where id=9; -update noar ti set b1='HSHJIRXKIY2IF1G0KY9P' where id=9; -update noar tt set v0='8MCAYW972R5T' where id=9; -update noar ti set v0='8MCAYW972R5T' where id=9; -update noar tt set b2='2VCOWY8HEVHJSPX5MYW4L7HI' where id=9; -update noar ti set b2='2VCOWY8HEVHJSPX5MYW4L7HI' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -f0 int not null, -v0 varchar(256) not null, -b0 blob not null, -b1 blob not null, -b2 blob not null -) engine=tokudb; -insert into tt values (1,0,'','','',''); -insert into tt values (2,0,'','','',''); -insert into tt values (3,0,'','','',''); -insert into tt values (4,0,'','','',''); -insert into tt values (5,0,'','','',''); -insert into tt values (6,0,'','','',''); -insert into tt values (7,0,'','','',''); -insert into tt values (8,0,'','','',''); -insert into tt values (9,0,'','','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='ENG49' where id=1; -update noar ti set v0='ENG49' where id=1; -update noar tt set b0='CC500FPMVMNWMSGW424KY2TO4M9UM1I' where id=1; -update noar ti set b0='CC500FPMVMNWMSGW424KY2TO4M9UM1I' where id=1; -update noar tt set v0='N35ZIBQB' where id=1; -update noar ti set v0='N35ZIBQB' where id=1; -update noar tt set b1='KBMT6QF7K2S3MWCAVA3' where id=1; -update noar ti set b1='KBMT6QF7K2S3MWCAVA3' where id=1; -update noar tt set v0='9W839TN2URY' where id=1; -update noar ti set v0='9W839TN2URY' where id=1; -update noar tt set b2='P3S0AXGAUQ91SA3VW' where id=1; -update noar ti set b2='P3S0AXGAUQ91SA3VW' where id=1; -update noar tt set v0='Q8QLH334JIMV81KILO7AU06LOC4Z1O1O' where id=2; -update noar ti set v0='Q8QLH334JIMV81KILO7AU06LOC4Z1O1O' where id=2; -update noar tt set b0='5BY3E035HCQQ4L4' where id=2; -update noar ti set b0='5BY3E035HCQQ4L4' where id=2; -update noar tt set v0='M5FEIQEDND1P8UWOVN3P' where id=2; -update noar ti set v0='M5FEIQEDND1P8UWOVN3P' where id=2; -update noar tt set b1='R7EBVNKM3HNZ5L2AFQEON2UI7HD36K9E' where id=2; -update noar ti set b1='R7EBVNKM3HNZ5L2AFQEON2UI7HD36K9E' where id=2; -update noar tt set v0='DHHDQ3CQMQCK' where id=2; -update noar ti set v0='DHHDQ3CQMQCK' where id=2; -update noar tt set b2='CG4GXAPLZKCM24PCDQ1I8A1JLKVMJ6Q' where id=2; -update noar ti set b2='CG4GXAPLZKCM24PCDQ1I8A1JLKVMJ6Q' where id=2; -update noar tt set v0='D20TQ70E2LNLI3QF18LPVXFBDSSCU' where id=3; -update noar ti set v0='D20TQ70E2LNLI3QF18LPVXFBDSSCU' where id=3; -update noar tt set b0='S0F6W6' where id=3; -update noar ti set b0='S0F6W6' where id=3; -update noar tt set v0='8TXFK8J3YQE' where id=3; -update noar ti set v0='8TXFK8J3YQE' where id=3; -update noar tt set b1='L9AZE8OV907G' where id=3; -update noar ti set b1='L9AZE8OV907G' where id=3; -update noar tt set v0='6Z' where id=3; -update noar ti set v0='6Z' where id=3; -update noar tt set b2='HYR' where id=3; -update noar ti set b2='HYR' where id=3; -update noar tt set v0='1IUL5P' where id=4; -update noar ti set v0='1IUL5P' where id=4; -update noar tt set b0='LFU6C4D28N' where id=4; -update noar ti set b0='LFU6C4D28N' where id=4; -update noar tt set v0='ZGT0Q9C8MAV' where id=4; -update noar ti set v0='ZGT0Q9C8MAV' where id=4; -update noar tt set b1='3Q1CIJU2ET0QY2ET4F0M' where id=4; -update noar ti set b1='3Q1CIJU2ET0QY2ET4F0M' where id=4; -update noar tt set v0='L3TPCI2P' where id=4; -update noar ti set v0='L3TPCI2P' where id=4; -update noar tt set b2='BV' where id=4; -update noar ti set b2='BV' where id=4; -update noar tt set v0='OLX65KBZY06B4KDG5FZXOE' where id=5; -update noar ti set v0='OLX65KBZY06B4KDG5FZXOE' where id=5; -update noar tt set b0='5D' where id=5; -update noar ti set b0='5D' where id=5; -update noar tt set v0='DXUJXA204RFEN0IGC2ISZ' where id=5; -update noar ti set v0='DXUJXA204RFEN0IGC2ISZ' where id=5; -update noar tt set b1='T9B8J1J29GAH1GTF24ZRXT' where id=5; -update noar ti set b1='T9B8J1J29GAH1GTF24ZRXT' where id=5; -update noar tt set v0='3EE6K56HE' where id=5; -update noar ti set v0='3EE6K56HE' where id=5; -update noar tt set b2='XNXG479PGDSVM' where id=5; -update noar ti set b2='XNXG479PGDSVM' where id=5; -update noar tt set v0='TU519WQ6YW7X' where id=6; -update noar ti set v0='TU519WQ6YW7X' where id=6; -update noar tt set b0='D80AY6WP' where id=6; -update noar ti set b0='D80AY6WP' where id=6; -update noar tt set v0='OSLSZUUNTMAMBJTKL9P2P8FG1KME9BRZ' where id=6; -update noar ti set v0='OSLSZUUNTMAMBJTKL9P2P8FG1KME9BRZ' where id=6; -update noar tt set b1='YO2I2OY2A' where id=6; -update noar ti set b1='YO2I2OY2A' where id=6; -update noar tt set v0='R0A4ZAK0TNLTO6D1' where id=6; -update noar ti set v0='R0A4ZAK0TNLTO6D1' where id=6; -update noar tt set b2='ORM5UFLVZL' where id=6; -update noar ti set b2='ORM5UFLVZL' where id=6; -update noar tt set v0='TWNRHB4VTSV3TNI' where id=7; -update noar ti set v0='TWNRHB4VTSV3TNI' where id=7; -update noar tt set b0='WLBEJX29J9LH' where id=7; -update noar ti set b0='WLBEJX29J9LH' where id=7; -update noar tt set v0='4SEBSEP726' where id=7; -update noar ti set v0='4SEBSEP726' where id=7; -update noar tt set b1='WQJ4FZ3EN' where id=7; -update noar ti set b1='WQJ4FZ3EN' where id=7; -update noar tt set v0='I2UON3E46X9W1FV9OJ' where id=7; -update noar ti set v0='I2UON3E46X9W1FV9OJ' where id=7; -update noar tt set b2='6FSY81G28EGA82XS4LF52PPSSADGD5K' where id=7; -update noar ti set b2='6FSY81G28EGA82XS4LF52PPSSADGD5K' where id=7; -update noar tt set v0='GBBQ2D31H' where id=8; -update noar ti set v0='GBBQ2D31H' where id=8; -update noar tt set b0='1NQBHYLDY0JE' where id=8; -update noar ti set b0='1NQBHYLDY0JE' where id=8; -update noar tt set v0='ENOVCTT9B3' where id=8; -update noar ti set v0='ENOVCTT9B3' where id=8; -update noar tt set b1='SJH2ZOTLTP9D02' where id=8; -update noar ti set b1='SJH2ZOTLTP9D02' where id=8; -update noar tt set v0='MSCQXU7VJ38WSMX' where id=8; -update noar ti set v0='MSCQXU7VJ38WSMX' where id=8; -update noar tt set b2='FBT7QAYDD2U5S22C1QF9NS7' where id=8; -update noar ti set b2='FBT7QAYDD2U5S22C1QF9NS7' where id=8; -update noar tt set v0='Y0SJA2IOKECPIS5QW2PTYE5' where id=9; -update noar ti set v0='Y0SJA2IOKECPIS5QW2PTYE5' where id=9; -update noar tt set b0='6GLYG' where id=9; -update noar ti set b0='6GLYG' where id=9; -update noar tt set v0='LDP7KC70MWPL3R4686063RI' where id=9; -update noar ti set v0='LDP7KC70MWPL3R4686063RI' where id=9; -update noar tt set b1='S9MLH5GW19JH2HIHQ0YXIZV0Z6CT94E' where id=9; -update noar ti set b1='S9MLH5GW19JH2HIHQ0YXIZV0Z6CT94E' where id=9; -update noar tt set v0='GI52HNS13DFOWW8DKGSYZXD8W5JRDSHZ' where id=9; -update noar ti set v0='GI52HNS13DFOWW8DKGSYZXD8W5JRDSHZ' where id=9; -update noar tt set b2='P0HCZMA4VF' where id=9; -update noar ti set b2='P0HCZMA4VF' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -f0 int null, -v0 varchar(32) null, -b0 blob null, -b1 blob null, -b2 mediumblob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='KZT4TITWSAVW' where id=1; -update noar ti set v0='KZT4TITWSAVW' where id=1; -update noar tt set b0='MS2OUXU7H' where id=1; -update noar ti set b0='MS2OUXU7H' where id=1; -update noar tt set v0='RY' where id=1; -update noar ti set v0='RY' where id=1; -update noar tt set b1='BSHEN5MCKW9CQP29YR167VE7OUDS2A8' where id=1; -update noar ti set b1='BSHEN5MCKW9CQP29YR167VE7OUDS2A8' where id=1; -update noar tt set v0='CGPE5W5TTQ1EC76HOL6MUMFSVEOH1ZY' where id=1; -update noar ti set v0='CGPE5W5TTQ1EC76HOL6MUMFSVEOH1ZY' where id=1; -update noar tt set b2='6PJPF2HUYQNROCDVBG885HGVZAA1' where id=1; -update noar ti set b2='6PJPF2HUYQNROCDVBG885HGVZAA1' where id=1; -update noar tt set v0='19A8GWJU54GNZ4UPXPEV15RAOXN9TB' where id=2; -update noar ti set v0='19A8GWJU54GNZ4UPXPEV15RAOXN9TB' where id=2; -update noar tt set b0='YIKOB' where id=2; -update noar ti set b0='YIKOB' where id=2; -update noar tt set v0='F7AZ48ZE2R07' where id=2; -update noar ti set v0='F7AZ48ZE2R07' where id=2; -update noar tt set b1='HVFXLESGBGUUCNI2O' where id=2; -update noar ti set b1='HVFXLESGBGUUCNI2O' where id=2; -update noar tt set v0='E' where id=2; -update noar ti set v0='E' where id=2; -update noar tt set b2='32NVYGC7UFWUF' where id=2; -update noar ti set b2='32NVYGC7UFWUF' where id=2; -update noar tt set v0='OAWFILZI2' where id=3; -update noar ti set v0='OAWFILZI2' where id=3; -update noar tt set b0='F5MGCCZC3QRC0G7O7DXNV5' where id=3; -update noar ti set b0='F5MGCCZC3QRC0G7O7DXNV5' where id=3; -update noar tt set v0='S4GGFIZV' where id=3; -update noar ti set v0='S4GGFIZV' where id=3; -update noar tt set b1='A05BY29833UWJI' where id=3; -update noar ti set b1='A05BY29833UWJI' where id=3; -update noar tt set v0='A2U5BBM5CO530IDG0L' where id=3; -update noar ti set v0='A2U5BBM5CO530IDG0L' where id=3; -update noar tt set b2='7YUCW7R' where id=3; -update noar ti set b2='7YUCW7R' where id=3; -update noar tt set v0='VUT491Y62VENDE771WY7NLRRNLHAVSR' where id=4; -update noar ti set v0='VUT491Y62VENDE771WY7NLRRNLHAVSR' where id=4; -update noar tt set b0='4DWXPSGTTRKGHF9BFBP' where id=4; -update noar ti set b0='4DWXPSGTTRKGHF9BFBP' where id=4; -update noar tt set v0='ASBOMH781KLEZG0' where id=4; -update noar ti set v0='ASBOMH781KLEZG0' where id=4; -update noar tt set b1='OGREEJZ8RQ09U5JUZ7' where id=4; -update noar ti set b1='OGREEJZ8RQ09U5JUZ7' where id=4; -update noar tt set v0='A7AGXSU' where id=4; -update noar ti set v0='A7AGXSU' where id=4; -update noar tt set b2='LCK4BHD71I43QITRTL8J2RPF7NW' where id=4; -update noar ti set b2='LCK4BHD71I43QITRTL8J2RPF7NW' where id=4; -update noar tt set v0='JAAU91Z614BWAJH62SJ71ACXIWV7963Z' where id=5; -update noar ti set v0='JAAU91Z614BWAJH62SJ71ACXIWV7963Z' where id=5; -update noar tt set b0='LWF1RT6HAO61NQLSX4Q' where id=5; -update noar ti set b0='LWF1RT6HAO61NQLSX4Q' where id=5; -update noar tt set v0='7U7YXPLPZTU0YWTF62GTY' where id=5; -update noar ti set v0='7U7YXPLPZTU0YWTF62GTY' where id=5; -update noar tt set b1='3COYWTUBNXWU7X7TWVK9VMAU1YFB' where id=5; -update noar ti set b1='3COYWTUBNXWU7X7TWVK9VMAU1YFB' where id=5; -update noar tt set v0='6QPMHGUWTKBKH4AN5NOID9F' where id=5; -update noar ti set v0='6QPMHGUWTKBKH4AN5NOID9F' where id=5; -update noar tt set b2='EC9BO0421XEECDWTKT0' where id=5; -update noar ti set b2='EC9BO0421XEECDWTKT0' where id=5; -update noar tt set v0='B16EWXV2LGK4VC7MR' where id=6; -update noar ti set v0='B16EWXV2LGK4VC7MR' where id=6; -update noar tt set b0='21YMLLW5I0751DD0QL8LF2TNZTF5' where id=6; -update noar ti set b0='21YMLLW5I0751DD0QL8LF2TNZTF5' where id=6; -update noar tt set v0='9Y80NY2KR11EOZQVYZEB' where id=6; -update noar ti set v0='9Y80NY2KR11EOZQVYZEB' where id=6; -update noar tt set b1='EDL7NLGZBGIODSCYAC3RLC5407FC' where id=6; -update noar ti set b1='EDL7NLGZBGIODSCYAC3RLC5407FC' where id=6; -update noar tt set v0='S' where id=6; -update noar ti set v0='S' where id=6; -update noar tt set b2='F0D2IUT8' where id=6; -update noar ti set b2='F0D2IUT8' where id=6; -update noar tt set v0='93LTA852LOLF0IESR722O61Y2VK' where id=7; -update noar ti set v0='93LTA852LOLF0IESR722O61Y2VK' where id=7; -update noar tt set b0='OVK9LD' where id=7; -update noar ti set b0='OVK9LD' where id=7; -update noar tt set v0='N4AFLHOQ4FHMG1NK6I9K8XD1816O9MJ0' where id=7; -update noar ti set v0='N4AFLHOQ4FHMG1NK6I9K8XD1816O9MJ0' where id=7; -update noar tt set b1='BPGSSJF0S7L3QETMS2QPI1QJSV8UCXSI' where id=7; -update noar ti set b1='BPGSSJF0S7L3QETMS2QPI1QJSV8UCXSI' where id=7; -update noar tt set v0='4GLFBFZ0GPO0GNAZ5K7UX' where id=7; -update noar ti set v0='4GLFBFZ0GPO0GNAZ5K7UX' where id=7; -update noar tt set b2='WVWQ2LLDE3VBP9P' where id=7; -update noar ti set b2='WVWQ2LLDE3VBP9P' where id=7; -update noar tt set v0='NQ6' where id=8; -update noar ti set v0='NQ6' where id=8; -update noar tt set b0='BOXGC4GCCCRQM6T0LDBPUJF75' where id=8; -update noar ti set b0='BOXGC4GCCCRQM6T0LDBPUJF75' where id=8; -update noar tt set v0='7QLX07FRSBDU38ORE' where id=8; -update noar ti set v0='7QLX07FRSBDU38ORE' where id=8; -update noar tt set b1='1ILLBG9' where id=8; -update noar ti set b1='1ILLBG9' where id=8; -update noar tt set v0='FDGID' where id=8; -update noar ti set v0='FDGID' where id=8; -update noar tt set b2='87ZTUHZWGN0CX0YNEOFHO8IXL' where id=8; -update noar ti set b2='87ZTUHZWGN0CX0YNEOFHO8IXL' where id=8; -update noar tt set v0='NKZR2PECZ' where id=9; -update noar ti set v0='NKZR2PECZ' where id=9; -update noar tt set b0='484DD78SBLNA35RJQBLVGQCVA1QL' where id=9; -update noar ti set b0='484DD78SBLNA35RJQBLVGQCVA1QL' where id=9; -update noar tt set v0='18X4UT9C0J' where id=9; -update noar ti set v0='18X4UT9C0J' where id=9; -update noar tt set b1='E3AYHM3R9W9OKRLVKDRVAGAXA8I' where id=9; -update noar ti set b1='E3AYHM3R9W9OKRLVKDRVAGAXA8I' where id=9; -update noar tt set v0='8N5JKPFXKDYCYKUCCOC' where id=9; -update noar ti set v0='8N5JKPFXKDYCYKUCCOC' where id=9; -update noar tt set b2='SCY40ATF' where id=9; -update noar ti set b2='SCY40ATF' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -f0 int null, -v0 varchar(256) null, -b0 blob null, -b1 blob null, -b2 mediumblob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='4VBEPI09G8SPPCW5FXZHBLP' where id=1; -update noar ti set v0='4VBEPI09G8SPPCW5FXZHBLP' where id=1; -update noar tt set b0='381N4RLRMC0D' where id=1; -update noar ti set b0='381N4RLRMC0D' where id=1; -update noar tt set v0='DHJ7C' where id=1; -update noar ti set v0='DHJ7C' where id=1; -update noar tt set b1='LU07O32FRLKX9HOGTN3C2O' where id=1; -update noar ti set b1='LU07O32FRLKX9HOGTN3C2O' where id=1; -update noar tt set v0='I58R' where id=1; -update noar ti set v0='I58R' where id=1; -update noar tt set b2='H12L' where id=1; -update noar ti set b2='H12L' where id=1; -update noar tt set v0='S4E0LXUEP4TR7' where id=2; -update noar ti set v0='S4E0LXUEP4TR7' where id=2; -update noar tt set b0='LD' where id=2; -update noar ti set b0='LD' where id=2; -update noar tt set v0='13JTXWVY' where id=2; -update noar ti set v0='13JTXWVY' where id=2; -update noar tt set b1='264Z2OB6' where id=2; -update noar ti set b1='264Z2OB6' where id=2; -update noar tt set v0='7GSMC2W1SF05' where id=2; -update noar ti set v0='7GSMC2W1SF05' where id=2; -update noar tt set b2='P2KSDF6IVFF4VJAHV33OOHO8FUXWFV' where id=2; -update noar ti set b2='P2KSDF6IVFF4VJAHV33OOHO8FUXWFV' where id=2; -update noar tt set v0='MQQQQ' where id=3; -update noar ti set v0='MQQQQ' where id=3; -update noar tt set b0='VARZC6C3Y' where id=3; -update noar ti set b0='VARZC6C3Y' where id=3; -update noar tt set v0='94ZHFDNQC5W09VUX8' where id=3; -update noar ti set v0='94ZHFDNQC5W09VUX8' where id=3; -update noar tt set b1='SZFP38YO' where id=3; -update noar ti set b1='SZFP38YO' where id=3; -update noar tt set v0='B3MHLTZF4D4W5M3ZBI47RIL' where id=3; -update noar ti set v0='B3MHLTZF4D4W5M3ZBI47RIL' where id=3; -update noar tt set b2='94CW2MS7OBE27RATU2K' where id=3; -update noar ti set b2='94CW2MS7OBE27RATU2K' where id=3; -update noar tt set v0='3VGGAK2BTYF' where id=4; -update noar ti set v0='3VGGAK2BTYF' where id=4; -update noar tt set b0='TBWDT3KUPZ9EHA0Y3YK2BRL3B149F' where id=4; -update noar ti set b0='TBWDT3KUPZ9EHA0Y3YK2BRL3B149F' where id=4; -update noar tt set v0='JPUAMYXPU' where id=4; -update noar ti set v0='JPUAMYXPU' where id=4; -update noar tt set b1='M5186X143OMHX2Q98B' where id=4; -update noar ti set b1='M5186X143OMHX2Q98B' where id=4; -update noar tt set v0='ZFDZ7' where id=4; -update noar ti set v0='ZFDZ7' where id=4; -update noar tt set b2='NCCKPHFEGEPORMH4V' where id=4; -update noar ti set b2='NCCKPHFEGEPORMH4V' where id=4; -update noar tt set v0='GHQAPQOX6JEV40OEJRPUP' where id=5; -update noar ti set v0='GHQAPQOX6JEV40OEJRPUP' where id=5; -update noar tt set b0='SMGA31AX' where id=5; -update noar ti set b0='SMGA31AX' where id=5; -update noar tt set v0='3A15NHFIOVRW99JYUA7JQ9Y15XGX9LA' where id=5; -update noar ti set v0='3A15NHFIOVRW99JYUA7JQ9Y15XGX9LA' where id=5; -update noar tt set b1='BA' where id=5; -update noar ti set b1='BA' where id=5; -update noar tt set v0='HSCKK0YJLWM2E1ZFYWEK7AR75FKNXHB' where id=5; -update noar ti set v0='HSCKK0YJLWM2E1ZFYWEK7AR75FKNXHB' where id=5; -update noar tt set b2='4IE6YTZW3CTEGXJIEYQALLFLEM0B78Q' where id=5; -update noar ti set b2='4IE6YTZW3CTEGXJIEYQALLFLEM0B78Q' where id=5; -update noar tt set v0='CBCSJHTN2BBEAJ9V4QEIYTZ' where id=6; -update noar ti set v0='CBCSJHTN2BBEAJ9V4QEIYTZ' where id=6; -update noar tt set b0='RKUVTNPX4GR1GAX8BS2IT93U3' where id=6; -update noar ti set b0='RKUVTNPX4GR1GAX8BS2IT93U3' where id=6; -update noar tt set v0='UQXMATR53GSSZMHQKTE4M4N3626E6ZU' where id=6; -update noar ti set v0='UQXMATR53GSSZMHQKTE4M4N3626E6ZU' where id=6; -update noar tt set b1='ZW' where id=6; -update noar ti set b1='ZW' where id=6; -update noar tt set v0='6J9B03ZBROAKM4HQQQ959FGUNOM7V' where id=6; -update noar ti set v0='6J9B03ZBROAKM4HQQQ959FGUNOM7V' where id=6; -update noar tt set b2='07RU3USF09KPQZ7' where id=6; -update noar ti set b2='07RU3USF09KPQZ7' where id=6; -update noar tt set v0='RLL8IP6UB' where id=7; -update noar ti set v0='RLL8IP6UB' where id=7; -update noar tt set b0='P3DQGX3L' where id=7; -update noar ti set b0='P3DQGX3L' where id=7; -update noar tt set v0='95M3L' where id=7; -update noar ti set v0='95M3L' where id=7; -update noar tt set b1='VDCAY' where id=7; -update noar ti set b1='VDCAY' where id=7; -update noar tt set v0='7WR5VZBXN0SVY0DD7UXTPQYHKDC2W' where id=7; -update noar ti set v0='7WR5VZBXN0SVY0DD7UXTPQYHKDC2W' where id=7; -update noar tt set b2='X51HMOWCX' where id=7; -update noar ti set b2='X51HMOWCX' where id=7; -update noar tt set v0='VPTFJZK29D3MMNMD77E0UT0J' where id=8; -update noar ti set v0='VPTFJZK29D3MMNMD77E0UT0J' where id=8; -update noar tt set b0='HB' where id=8; -update noar ti set b0='HB' where id=8; -update noar tt set v0='N3HTNHHNY9BUUM5QQ3MTLMBJSDH' where id=8; -update noar ti set v0='N3HTNHHNY9BUUM5QQ3MTLMBJSDH' where id=8; -update noar tt set b1='MWHWBCVEFHQVYVQBBWF8XZCC3' where id=8; -update noar ti set b1='MWHWBCVEFHQVYVQBBWF8XZCC3' where id=8; -update noar tt set v0='TZO' where id=8; -update noar ti set v0='TZO' where id=8; -update noar tt set b2='6LK6355' where id=8; -update noar ti set b2='6LK6355' where id=8; -update noar tt set v0='D55XI3MV' where id=9; -update noar ti set v0='D55XI3MV' where id=9; -update noar tt set b0='3XNAX8XQ' where id=9; -update noar ti set b0='3XNAX8XQ' where id=9; -update noar tt set v0='623IIHDLWODSZUZ70NCJRD1SW6WD' where id=9; -update noar ti set v0='623IIHDLWODSZUZ70NCJRD1SW6WD' where id=9; -update noar tt set b1='C8MXNIQUVCCV2USUQDALLU7ED0YYMAW' where id=9; -update noar ti set b1='C8MXNIQUVCCV2USUQDALLU7ED0YYMAW' where id=9; -update noar tt set v0='8K8' where id=9; -update noar ti set v0='8K8' where id=9; -update noar tt set b2='HM48O4S280' where id=9; -update noar ti set b2='HM48O4S280' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -f0 int not null, -v0 varchar(32) not null, -b0 blob not null, -b1 blob not null, -b2 mediumblob not null -) engine=tokudb; -insert into tt values (1,0,'','','',''); -insert into tt values (2,0,'','','',''); -insert into tt values (3,0,'','','',''); -insert into tt values (4,0,'','','',''); -insert into tt values (5,0,'','','',''); -insert into tt values (6,0,'','','',''); -insert into tt values (7,0,'','','',''); -insert into tt values (8,0,'','','',''); -insert into tt values (9,0,'','','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='B2JJ0IGT466DD342NIHJ400FPS8S' where id=1; -update noar ti set v0='B2JJ0IGT466DD342NIHJ400FPS8S' where id=1; -update noar tt set b0='FO755' where id=1; -update noar ti set b0='FO755' where id=1; -update noar tt set v0='89' where id=1; -update noar ti set v0='89' where id=1; -update noar tt set b1='7946EO9X7PL581IWEZ3QTRXSK6A11' where id=1; -update noar ti set b1='7946EO9X7PL581IWEZ3QTRXSK6A11' where id=1; -update noar tt set v0='COQN6PNGXOQXES6' where id=1; -update noar ti set v0='COQN6PNGXOQXES6' where id=1; -update noar tt set b2='XG9D3WDSSW5Z21EUEQEJ892RQ' where id=1; -update noar ti set b2='XG9D3WDSSW5Z21EUEQEJ892RQ' where id=1; -update noar tt set v0='V' where id=2; -update noar ti set v0='V' where id=2; -update noar tt set b0='NIN' where id=2; -update noar ti set b0='NIN' where id=2; -update noar tt set v0='Z5ZTHUP' where id=2; -update noar ti set v0='Z5ZTHUP' where id=2; -update noar tt set b1='SHSQU3S' where id=2; -update noar ti set b1='SHSQU3S' where id=2; -update noar tt set v0='ZSTBY' where id=2; -update noar ti set v0='ZSTBY' where id=2; -update noar tt set b2='DNAHKYH' where id=2; -update noar ti set b2='DNAHKYH' where id=2; -update noar tt set v0='1E' where id=3; -update noar ti set v0='1E' where id=3; -update noar tt set b0='9NWJEJLUQ3KAVOGLK' where id=3; -update noar ti set b0='9NWJEJLUQ3KAVOGLK' where id=3; -update noar tt set v0='NOQSB3S67WPMDZM6A036SMYSGU80B' where id=3; -update noar ti set v0='NOQSB3S67WPMDZM6A036SMYSGU80B' where id=3; -update noar tt set b1='8I7YP47E3CQBFANVYEKZOZLJP8' where id=3; -update noar ti set b1='8I7YP47E3CQBFANVYEKZOZLJP8' where id=3; -update noar tt set v0='LZ9ETUNO1IWKIAK0ZRDAB3O96A' where id=3; -update noar ti set v0='LZ9ETUNO1IWKIAK0ZRDAB3O96A' where id=3; -update noar tt set b2='64I3VO6HNCPPA0DE1PX5S' where id=3; -update noar ti set b2='64I3VO6HNCPPA0DE1PX5S' where id=3; -update noar tt set v0='PC' where id=4; -update noar ti set v0='PC' where id=4; -update noar tt set b0='JOCZYPPDR7NFLDAT5IG1' where id=4; -update noar ti set b0='JOCZYPPDR7NFLDAT5IG1' where id=4; -update noar tt set v0='URXU7X4PYID73D97NZ50T86CX4OPJ4' where id=4; -update noar ti set v0='URXU7X4PYID73D97NZ50T86CX4OPJ4' where id=4; -update noar tt set b1='0S7UQTKIGW' where id=4; -update noar ti set b1='0S7UQTKIGW' where id=4; -update noar tt set v0='O5F8E7YXH2D6063EZ20WUQCN2DW' where id=4; -update noar ti set v0='O5F8E7YXH2D6063EZ20WUQCN2DW' where id=4; -update noar tt set b2='K' where id=4; -update noar ti set b2='K' where id=4; -update noar tt set v0='7YHFQU3I4EH17J' where id=5; -update noar ti set v0='7YHFQU3I4EH17J' where id=5; -update noar tt set b0='JAALZOAOZI17GTLPFQTCWR' where id=5; -update noar ti set b0='JAALZOAOZI17GTLPFQTCWR' where id=5; -update noar tt set v0='4U8709VO9FIYKA7T9Z99PS59' where id=5; -update noar ti set v0='4U8709VO9FIYKA7T9Z99PS59' where id=5; -update noar tt set b1='UXW7' where id=5; -update noar ti set b1='UXW7' where id=5; -update noar tt set v0='YVFKHHOIEIMABGM4WZRX1O9' where id=5; -update noar ti set v0='YVFKHHOIEIMABGM4WZRX1O9' where id=5; -update noar tt set b2='3GCA4MWQN128COX' where id=5; -update noar ti set b2='3GCA4MWQN128COX' where id=5; -update noar tt set v0='ZYR9GELTCZP2NWRW5QOTLLS3ZF' where id=6; -update noar ti set v0='ZYR9GELTCZP2NWRW5QOTLLS3ZF' where id=6; -update noar tt set b0='BTMAHZR2EK3MAIUXOX8E7EG' where id=6; -update noar ti set b0='BTMAHZR2EK3MAIUXOX8E7EG' where id=6; -update noar tt set v0='UBVGUXSKIE68E1CG7WOKZRJ1QSBPA252' where id=6; -update noar ti set v0='UBVGUXSKIE68E1CG7WOKZRJ1QSBPA252' where id=6; -update noar tt set b1='KQ7OEZ03N8YPTLINJ7' where id=6; -update noar ti set b1='KQ7OEZ03N8YPTLINJ7' where id=6; -update noar tt set v0='0XMSEDDO7HX8GH1QM6117FJ6YK8VTM' where id=6; -update noar ti set v0='0XMSEDDO7HX8GH1QM6117FJ6YK8VTM' where id=6; -update noar tt set b2='RWAT2ATCZWTNLY9A91RK79C' where id=6; -update noar ti set b2='RWAT2ATCZWTNLY9A91RK79C' where id=6; -update noar tt set v0='4A5G3ZF7L9RXF' where id=7; -update noar ti set v0='4A5G3ZF7L9RXF' where id=7; -update noar tt set b0='FDVTNNXXLTQB3HKOPMA34SFHVRGC' where id=7; -update noar ti set b0='FDVTNNXXLTQB3HKOPMA34SFHVRGC' where id=7; -update noar tt set v0='O545BWFODY258MOQWZ26KP8Y4QPYY7B' where id=7; -update noar ti set v0='O545BWFODY258MOQWZ26KP8Y4QPYY7B' where id=7; -update noar tt set b1='60YVF7NMPB' where id=7; -update noar ti set b1='60YVF7NMPB' where id=7; -update noar tt set v0='OHTHMKDOEGGX9M7VLR64FK4M2DUB' where id=7; -update noar ti set v0='OHTHMKDOEGGX9M7VLR64FK4M2DUB' where id=7; -update noar tt set b2='NLDSV2MQM36K02HEYDSD' where id=7; -update noar ti set b2='NLDSV2MQM36K02HEYDSD' where id=7; -update noar tt set v0='NSVK00ZZHXTIDSF1' where id=8; -update noar ti set v0='NSVK00ZZHXTIDSF1' where id=8; -update noar tt set b0='OZ59JEWF82GC2DJ1' where id=8; -update noar ti set b0='OZ59JEWF82GC2DJ1' where id=8; -update noar tt set v0='6M8' where id=8; -update noar ti set v0='6M8' where id=8; -update noar tt set b1='TU5AVI81UW' where id=8; -update noar ti set b1='TU5AVI81UW' where id=8; -update noar tt set v0='5WHYY1VSTGCA62RV0' where id=8; -update noar ti set v0='5WHYY1VSTGCA62RV0' where id=8; -update noar tt set b2='9PJX6OWQDJLM' where id=8; -update noar ti set b2='9PJX6OWQDJLM' where id=8; -update noar tt set v0='VZ' where id=9; -update noar ti set v0='VZ' where id=9; -update noar tt set b0='P0' where id=9; -update noar ti set b0='P0' where id=9; -update noar tt set v0='L71F' where id=9; -update noar ti set v0='L71F' where id=9; -update noar tt set b1='7GTH98IMQ0U3ARQCD1XHK55RU' where id=9; -update noar ti set b1='7GTH98IMQ0U3ARQCD1XHK55RU' where id=9; -update noar tt set v0='VVQJPK9ZTNHS64JB3ILOAQP' where id=9; -update noar ti set v0='VVQJPK9ZTNHS64JB3ILOAQP' where id=9; -update noar tt set b2='EW05R5GNAKQQNJRGVUY38Y7' where id=9; -update noar ti set b2='EW05R5GNAKQQNJRGVUY38Y7' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -f0 int not null, -v0 varchar(256) not null, -b0 blob not null, -b1 blob not null, -b2 mediumblob not null -) engine=tokudb; -insert into tt values (1,0,'','','',''); -insert into tt values (2,0,'','','',''); -insert into tt values (3,0,'','','',''); -insert into tt values (4,0,'','','',''); -insert into tt values (5,0,'','','',''); -insert into tt values (6,0,'','','',''); -insert into tt values (7,0,'','','',''); -insert into tt values (8,0,'','','',''); -insert into tt values (9,0,'','','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='SA3X4JGOB68SJY9L5HH' where id=1; -update noar ti set v0='SA3X4JGOB68SJY9L5HH' where id=1; -update noar tt set b0='MDBK6YRQI3R883' where id=1; -update noar ti set b0='MDBK6YRQI3R883' where id=1; -update noar tt set v0='QRY6Y5CO8TA' where id=1; -update noar ti set v0='QRY6Y5CO8TA' where id=1; -update noar tt set b1='QLAZUHHET2' where id=1; -update noar ti set b1='QLAZUHHET2' where id=1; -update noar tt set v0='SZ5M12GN5B6DGH3329T884PHFYEMUGH' where id=1; -update noar ti set v0='SZ5M12GN5B6DGH3329T884PHFYEMUGH' where id=1; -update noar tt set b2='HQMX8QA' where id=1; -update noar ti set b2='HQMX8QA' where id=1; -update noar tt set v0='MA7W92O6V4W3KB9JMJVU' where id=2; -update noar ti set v0='MA7W92O6V4W3KB9JMJVU' where id=2; -update noar tt set b0='6RWRVGTSP2SXMPRQMV608NV' where id=2; -update noar ti set b0='6RWRVGTSP2SXMPRQMV608NV' where id=2; -update noar tt set v0='7KHCP15BW5NCCG' where id=2; -update noar ti set v0='7KHCP15BW5NCCG' where id=2; -update noar tt set b1='2H77WGLS' where id=2; -update noar ti set b1='2H77WGLS' where id=2; -update noar tt set v0='6Z2Q2ZVR8G2T9HW0OA0' where id=2; -update noar ti set v0='6Z2Q2ZVR8G2T9HW0OA0' where id=2; -update noar tt set b2='9KM7P452BH00P4S6J' where id=2; -update noar ti set b2='9KM7P452BH00P4S6J' where id=2; -update noar tt set v0='OI' where id=3; -update noar ti set v0='OI' where id=3; -update noar tt set b0='HKHGIYJ9D8OMDHT' where id=3; -update noar ti set b0='HKHGIYJ9D8OMDHT' where id=3; -update noar tt set v0='KXENQHSIISGF2UVUAA1C' where id=3; -update noar ti set v0='KXENQHSIISGF2UVUAA1C' where id=3; -update noar tt set b1='RFEAWVGCKFFWT2FD5' where id=3; -update noar ti set b1='RFEAWVGCKFFWT2FD5' where id=3; -update noar tt set v0='WGOPQYEVF59CN4AC4FYUPH3N' where id=3; -update noar ti set v0='WGOPQYEVF59CN4AC4FYUPH3N' where id=3; -update noar tt set b2='IC9KI8QNHH4YE8DJOW8RFVH' where id=3; -update noar ti set b2='IC9KI8QNHH4YE8DJOW8RFVH' where id=3; -update noar tt set v0='L' where id=4; -update noar ti set v0='L' where id=4; -update noar tt set b0='SZGCK' where id=4; -update noar ti set b0='SZGCK' where id=4; -update noar tt set v0='U3UI6YWDMOF55ONPCYL' where id=4; -update noar ti set v0='U3UI6YWDMOF55ONPCYL' where id=4; -update noar tt set b1='H332P8KJISM69S3VHN3Y' where id=4; -update noar ti set b1='H332P8KJISM69S3VHN3Y' where id=4; -update noar tt set v0='TDEDM0BJUP0VDDQZIU009AZ2CNZDUB' where id=4; -update noar ti set v0='TDEDM0BJUP0VDDQZIU009AZ2CNZDUB' where id=4; -update noar tt set b2='AGF1441A4990UCXPN' where id=4; -update noar ti set b2='AGF1441A4990UCXPN' where id=4; -update noar tt set v0='GIRGT90YQ1VM9JJ3PGCZHKPSN' where id=5; -update noar ti set v0='GIRGT90YQ1VM9JJ3PGCZHKPSN' where id=5; -update noar tt set b0='CDDA4VW6N38CNX2V3MD' where id=5; -update noar ti set b0='CDDA4VW6N38CNX2V3MD' where id=5; -update noar tt set v0='FKGNWPUYDNM5YQPHWD74MCI' where id=5; -update noar ti set v0='FKGNWPUYDNM5YQPHWD74MCI' where id=5; -update noar tt set b1='5ZMOIGPW6JGFRYHEFZVNG9B77QTFZ' where id=5; -update noar ti set b1='5ZMOIGPW6JGFRYHEFZVNG9B77QTFZ' where id=5; -update noar tt set v0='PD0H55' where id=5; -update noar ti set v0='PD0H55' where id=5; -update noar tt set b2='OTW' where id=5; -update noar ti set b2='OTW' where id=5; -update noar tt set v0='OIKN0KUSI7XLZM7M' where id=6; -update noar ti set v0='OIKN0KUSI7XLZM7M' where id=6; -update noar tt set b0='LGG9X8' where id=6; -update noar ti set b0='LGG9X8' where id=6; -update noar tt set v0='JIF0M0ODF9FDON4SE0GRI4E' where id=6; -update noar ti set v0='JIF0M0ODF9FDON4SE0GRI4E' where id=6; -update noar tt set b1='7JW506T2RLP7ITWGWS4LC300C' where id=6; -update noar ti set b1='7JW506T2RLP7ITWGWS4LC300C' where id=6; -update noar tt set v0='8JYGGZ1OXWZWU' where id=6; -update noar ti set v0='8JYGGZ1OXWZWU' where id=6; -update noar tt set b2='XOUNAM288C3N7GTYIG494KGPZJ4O' where id=6; -update noar ti set b2='XOUNAM288C3N7GTYIG494KGPZJ4O' where id=6; -update noar tt set v0='ULCNOU1BOU6L900G15Q3W' where id=7; -update noar ti set v0='ULCNOU1BOU6L900G15Q3W' where id=7; -update noar tt set b0='WRSR0UPPI' where id=7; -update noar ti set b0='WRSR0UPPI' where id=7; -update noar tt set v0='HS6S2L897G2' where id=7; -update noar ti set v0='HS6S2L897G2' where id=7; -update noar tt set b1='469U152024V' where id=7; -update noar ti set b1='469U152024V' where id=7; -update noar tt set v0='I775LNVNL22PT' where id=7; -update noar ti set v0='I775LNVNL22PT' where id=7; -update noar tt set b2='RYNAD77YXGVFD6G' where id=7; -update noar ti set b2='RYNAD77YXGVFD6G' where id=7; -update noar tt set v0='ZVBNJMMKJY4OTM' where id=8; -update noar ti set v0='ZVBNJMMKJY4OTM' where id=8; -update noar tt set b0='4FR8UG043GI5J29TZFM5XI4QFRO0DG2' where id=8; -update noar ti set b0='4FR8UG043GI5J29TZFM5XI4QFRO0DG2' where id=8; -update noar tt set v0='LOV9' where id=8; -update noar ti set v0='LOV9' where id=8; -update noar tt set b1='9TXUMOBU' where id=8; -update noar ti set b1='9TXUMOBU' where id=8; -update noar tt set v0='U8A3Z6S9LPOG5ROV9RS2' where id=8; -update noar ti set v0='U8A3Z6S9LPOG5ROV9RS2' where id=8; -update noar tt set b2='RDT9OVGBGGT8YMKR9XKKD' where id=8; -update noar ti set b2='RDT9OVGBGGT8YMKR9XKKD' where id=8; -update noar tt set v0='T1E45YGYID0C' where id=9; -update noar ti set v0='T1E45YGYID0C' where id=9; -update noar tt set b0='51G51Z38LETUJVGQ4GTB884G5' where id=9; -update noar ti set b0='51G51Z38LETUJVGQ4GTB884G5' where id=9; -update noar tt set v0='N5PR7Y6CEOXCAHZ68XSRFPGR76' where id=9; -update noar ti set v0='N5PR7Y6CEOXCAHZ68XSRFPGR76' where id=9; -update noar tt set b1='59WZ35V8VSGNBMJPTXS0YMD0Z2XUME' where id=9; -update noar ti set b1='59WZ35V8VSGNBMJPTXS0YMD0Z2XUME' where id=9; -update noar tt set v0='OSCI2H1G2BECV97JMQIG2SE88LW89T4M' where id=9; -update noar ti set v0='OSCI2H1G2BECV97JMQIG2SE88LW89T4M' where id=9; -update noar tt set b2='J1' where id=9; -update noar ti set b2='J1' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -f0 int null, -v0 varchar(32) null, -b0 blob null, -b1 blob null, -b2 longblob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='XZSOYQBUV8XCR7DD7S' where id=1; -update noar ti set v0='XZSOYQBUV8XCR7DD7S' where id=1; -update noar tt set b0='XM5A45SR6JKDGOQ7NWLYGXM4BT7WQ5' where id=1; -update noar ti set b0='XM5A45SR6JKDGOQ7NWLYGXM4BT7WQ5' where id=1; -update noar tt set v0='74AV89LKECW3' where id=1; -update noar ti set v0='74AV89LKECW3' where id=1; -update noar tt set b1='UEURZIUTR' where id=1; -update noar ti set b1='UEURZIUTR' where id=1; -update noar tt set v0='35JKMMRB7230OXVD5KDXBLYYSGNP5' where id=1; -update noar ti set v0='35JKMMRB7230OXVD5KDXBLYYSGNP5' where id=1; -update noar tt set b2='KY83QPADSIYWXPL0D5DBHUMH4L4O4' where id=1; -update noar ti set b2='KY83QPADSIYWXPL0D5DBHUMH4L4O4' where id=1; -update noar tt set v0='AEHZWNJ3L' where id=2; -update noar ti set v0='AEHZWNJ3L' where id=2; -update noar tt set b0='BIJ' where id=2; -update noar ti set b0='BIJ' where id=2; -update noar tt set v0='6' where id=2; -update noar ti set v0='6' where id=2; -update noar tt set b1='EQRCHAIQKLLTW3M07DOCFXK1O' where id=2; -update noar ti set b1='EQRCHAIQKLLTW3M07DOCFXK1O' where id=2; -update noar tt set v0='1K' where id=2; -update noar ti set v0='1K' where id=2; -update noar tt set b2='6S2GLXJSGK8' where id=2; -update noar ti set b2='6S2GLXJSGK8' where id=2; -update noar tt set v0='LYMQRDOJ229DZ55YCC9CCGVC' where id=3; -update noar ti set v0='LYMQRDOJ229DZ55YCC9CCGVC' where id=3; -update noar tt set b0='YVX5GXUVV8BGAZ8JSN8S6QD2L519' where id=3; -update noar ti set b0='YVX5GXUVV8BGAZ8JSN8S6QD2L519' where id=3; -update noar tt set v0='46R8WYY8LMLFFF' where id=3; -update noar ti set v0='46R8WYY8LMLFFF' where id=3; -update noar tt set b1='3Z6FBHA2LF8QK8N7XOLTBKZ6P' where id=3; -update noar ti set b1='3Z6FBHA2LF8QK8N7XOLTBKZ6P' where id=3; -update noar tt set v0='O9Q6MNEL7JH8Y3ND9SJYP2ASHXT7BVZ' where id=3; -update noar ti set v0='O9Q6MNEL7JH8Y3ND9SJYP2ASHXT7BVZ' where id=3; -update noar tt set b2='8XV0K6BP' where id=3; -update noar ti set b2='8XV0K6BP' where id=3; -update noar tt set v0='67' where id=4; -update noar ti set v0='67' where id=4; -update noar tt set b0='EZYTLWP8JKROGYM4TYP' where id=4; -update noar ti set b0='EZYTLWP8JKROGYM4TYP' where id=4; -update noar tt set v0='OWYZHKL4RS79SSXKNOTT7G6T4B029' where id=4; -update noar ti set v0='OWYZHKL4RS79SSXKNOTT7G6T4B029' where id=4; -update noar tt set b1='AXCJMJ9I9QAANRQ' where id=4; -update noar ti set b1='AXCJMJ9I9QAANRQ' where id=4; -update noar tt set v0='86ZYTIALIYTFWKL6KX' where id=4; -update noar ti set v0='86ZYTIALIYTFWKL6KX' where id=4; -update noar tt set b2='4' where id=4; -update noar ti set b2='4' where id=4; -update noar tt set v0='OLOJE8RCKL1OEJ' where id=5; -update noar ti set v0='OLOJE8RCKL1OEJ' where id=5; -update noar tt set b0='0ZTDBK1T3XMM' where id=5; -update noar ti set b0='0ZTDBK1T3XMM' where id=5; -update noar tt set v0='KHSIRMYH1FXRWTCWYYOR375U13N38QBL' where id=5; -update noar ti set v0='KHSIRMYH1FXRWTCWYYOR375U13N38QBL' where id=5; -update noar tt set b1='GNG2TMEPDG7847VW' where id=5; -update noar ti set b1='GNG2TMEPDG7847VW' where id=5; -update noar tt set v0='4Y79BZ6' where id=5; -update noar ti set v0='4Y79BZ6' where id=5; -update noar tt set b2='7RPOLXS4GFG8CEVYAD7LEE0FCDZHSNY' where id=5; -update noar ti set b2='7RPOLXS4GFG8CEVYAD7LEE0FCDZHSNY' where id=5; -update noar tt set v0='PMU7301VX' where id=6; -update noar ti set v0='PMU7301VX' where id=6; -update noar tt set b0='ZDNEEOJ9IUU49THGVGEJ8W' where id=6; -update noar ti set b0='ZDNEEOJ9IUU49THGVGEJ8W' where id=6; -update noar tt set v0='KZD' where id=6; -update noar ti set v0='KZD' where id=6; -update noar tt set b1='YWQI579QM13IYIJHQ1KOYHFK8RM9K' where id=6; -update noar ti set b1='YWQI579QM13IYIJHQ1KOYHFK8RM9K' where id=6; -update noar tt set v0='DE16UEYJBYCYQ0F' where id=6; -update noar ti set v0='DE16UEYJBYCYQ0F' where id=6; -update noar tt set b2='AYB1X13P5P397D' where id=6; -update noar ti set b2='AYB1X13P5P397D' where id=6; -update noar tt set v0='VP6I3BWBWZZ8FO0Z' where id=7; -update noar ti set v0='VP6I3BWBWZZ8FO0Z' where id=7; -update noar tt set b0='SWVIGSPVUE0WI82DDFQQ2F4YYAXCRE' where id=7; -update noar ti set b0='SWVIGSPVUE0WI82DDFQQ2F4YYAXCRE' where id=7; -update noar tt set v0='72231WR5LUPEOM7J9UWQKJ6' where id=7; -update noar ti set v0='72231WR5LUPEOM7J9UWQKJ6' where id=7; -update noar tt set b1='ZKLUL7PU16AT2FSY02VJ77UE1BLUTE3' where id=7; -update noar ti set b1='ZKLUL7PU16AT2FSY02VJ77UE1BLUTE3' where id=7; -update noar tt set v0='TQ68D6UR48TA' where id=7; -update noar ti set v0='TQ68D6UR48TA' where id=7; -update noar tt set b2='8K6VCI2ZHYEPGKBC84Q5LR1' where id=7; -update noar ti set b2='8K6VCI2ZHYEPGKBC84Q5LR1' where id=7; -update noar tt set v0='ERW2BHQPAV9UFD4ZNYRXHALG95H1YN' where id=8; -update noar ti set v0='ERW2BHQPAV9UFD4ZNYRXHALG95H1YN' where id=8; -update noar tt set b0='3JX94NKAISVA0W' where id=8; -update noar ti set b0='3JX94NKAISVA0W' where id=8; -update noar tt set v0='RJ4E0UWMPONKU0IHRLW79H7R0KPMZZOY' where id=8; -update noar ti set v0='RJ4E0UWMPONKU0IHRLW79H7R0KPMZZOY' where id=8; -update noar tt set b1='0QHFWBDNQZHKUIPJDHQOH8RV0IR6Y8VA' where id=8; -update noar ti set b1='0QHFWBDNQZHKUIPJDHQOH8RV0IR6Y8VA' where id=8; -update noar tt set v0='RSQNOGQGXU6J89TZEEJYRL4920A6ZJU1' where id=8; -update noar ti set v0='RSQNOGQGXU6J89TZEEJYRL4920A6ZJU1' where id=8; -update noar tt set b2='XCPLKDR5M7J0NYHBI6Z6' where id=8; -update noar ti set b2='XCPLKDR5M7J0NYHBI6Z6' where id=8; -update noar tt set v0='SKIHNALLGOL6K58E70G5SIA6HNEHW' where id=9; -update noar ti set v0='SKIHNALLGOL6K58E70G5SIA6HNEHW' where id=9; -update noar tt set b0='01CPNP6EORHNBG5VQA48KYXJXO2WJ' where id=9; -update noar ti set b0='01CPNP6EORHNBG5VQA48KYXJXO2WJ' where id=9; -update noar tt set v0='0XNX8NBSN' where id=9; -update noar ti set v0='0XNX8NBSN' where id=9; -update noar tt set b1='9HCNW4WI3GFHY0RHCA' where id=9; -update noar ti set b1='9HCNW4WI3GFHY0RHCA' where id=9; -update noar tt set v0='XBU93Q3RFISOBT3283Q9' where id=9; -update noar ti set v0='XBU93Q3RFISOBT3283Q9' where id=9; -update noar tt set b2='PGWTKEJI58S1X3GZL9QW' where id=9; -update noar ti set b2='PGWTKEJI58S1X3GZL9QW' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -f0 int null, -v0 varchar(256) null, -b0 blob null, -b1 blob null, -b2 longblob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='5Z6RPD3X' where id=1; -update noar ti set v0='5Z6RPD3X' where id=1; -update noar tt set b0='UCT91WU' where id=1; -update noar ti set b0='UCT91WU' where id=1; -update noar tt set v0='77HADWM7P6HD2' where id=1; -update noar ti set v0='77HADWM7P6HD2' where id=1; -update noar tt set b1='TYYGFRN0NJWVOR1GXG59VGFST47PEL2J' where id=1; -update noar ti set b1='TYYGFRN0NJWVOR1GXG59VGFST47PEL2J' where id=1; -update noar tt set v0='N7HX0T9W61WDKUBJ7XXH2T8' where id=1; -update noar ti set v0='N7HX0T9W61WDKUBJ7XXH2T8' where id=1; -update noar tt set b2='C7P2IJCXUQ' where id=1; -update noar ti set b2='C7P2IJCXUQ' where id=1; -update noar tt set v0='1GUS2YRG' where id=2; -update noar ti set v0='1GUS2YRG' where id=2; -update noar tt set b0='T3JX3WRU3ZZ' where id=2; -update noar ti set b0='T3JX3WRU3ZZ' where id=2; -update noar tt set v0='1QHPG6' where id=2; -update noar ti set v0='1QHPG6' where id=2; -update noar tt set b1='QYET3NE' where id=2; -update noar ti set b1='QYET3NE' where id=2; -update noar tt set v0='FGB16UNM0EUVAVK0UANCROUTT4X' where id=2; -update noar ti set v0='FGB16UNM0EUVAVK0UANCROUTT4X' where id=2; -update noar tt set b2='L0N0DEAD' where id=2; -update noar ti set b2='L0N0DEAD' where id=2; -update noar tt set v0='RPJA1IVLHM3S0XFR9BOGFO' where id=3; -update noar ti set v0='RPJA1IVLHM3S0XFR9BOGFO' where id=3; -update noar tt set b0='W71K5VTHQAPL921M0ZF0CO23MCDMFXSU' where id=3; -update noar ti set b0='W71K5VTHQAPL921M0ZF0CO23MCDMFXSU' where id=3; -update noar tt set v0='EEOSSHLVQQ67BHT9H6BPMI7CLWXRTBYS' where id=3; -update noar ti set v0='EEOSSHLVQQ67BHT9H6BPMI7CLWXRTBYS' where id=3; -update noar tt set b1='8VYHSBMMEQM2Y' where id=3; -update noar ti set b1='8VYHSBMMEQM2Y' where id=3; -update noar tt set v0='33DIQ1PHA7JI38I4TTP6I1FUUNGQ' where id=3; -update noar ti set v0='33DIQ1PHA7JI38I4TTP6I1FUUNGQ' where id=3; -update noar tt set b2='AH1J86Q7HFPPTLFPVAR2TW8RJO' where id=3; -update noar ti set b2='AH1J86Q7HFPPTLFPVAR2TW8RJO' where id=3; -update noar tt set v0='V8DI4NXOZYJSKNY6ID6GWY00H5V851' where id=4; -update noar ti set v0='V8DI4NXOZYJSKNY6ID6GWY00H5V851' where id=4; -update noar tt set b0='BTM30K' where id=4; -update noar ti set b0='BTM30K' where id=4; -update noar tt set v0='6VL' where id=4; -update noar ti set v0='6VL' where id=4; -update noar tt set b1='DT4VOQ3Y' where id=4; -update noar ti set b1='DT4VOQ3Y' where id=4; -update noar tt set v0='HXNBMVA0' where id=4; -update noar ti set v0='HXNBMVA0' where id=4; -update noar tt set b2='488OR2H88P9WKDSJTJ3NN44XMD' where id=4; -update noar ti set b2='488OR2H88P9WKDSJTJ3NN44XMD' where id=4; -update noar tt set v0='49Y2C9C3FBN' where id=5; -update noar ti set v0='49Y2C9C3FBN' where id=5; -update noar tt set b0='2QLQPVAAIS3NXFEN2W9ELV4XW' where id=5; -update noar ti set b0='2QLQPVAAIS3NXFEN2W9ELV4XW' where id=5; -update noar tt set v0='XS54RZZBV0' where id=5; -update noar ti set v0='XS54RZZBV0' where id=5; -update noar tt set b1='S4A5X0EUT8ENTPUBKB5QP6LW8YOOFS' where id=5; -update noar ti set b1='S4A5X0EUT8ENTPUBKB5QP6LW8YOOFS' where id=5; -update noar tt set v0='ZNW2BYORH' where id=5; -update noar ti set v0='ZNW2BYORH' where id=5; -update noar tt set b2='6FW37Y57' where id=5; -update noar ti set b2='6FW37Y57' where id=5; -update noar tt set v0='9WNPHACK' where id=6; -update noar ti set v0='9WNPHACK' where id=6; -update noar tt set b0='ONDSRYWJL33TL6ZBI5UDCVXSRIJ7PYJ' where id=6; -update noar ti set b0='ONDSRYWJL33TL6ZBI5UDCVXSRIJ7PYJ' where id=6; -update noar tt set v0='4' where id=6; -update noar ti set v0='4' where id=6; -update noar tt set b1='QCHSP4DROBUU3JKEG1D59RZQFKDVM' where id=6; -update noar ti set b1='QCHSP4DROBUU3JKEG1D59RZQFKDVM' where id=6; -update noar tt set v0='P0HSXMTH763OZWWE3THANU4YMHSOC' where id=6; -update noar ti set v0='P0HSXMTH763OZWWE3THANU4YMHSOC' where id=6; -update noar tt set b2='MU9C' where id=6; -update noar ti set b2='MU9C' where id=6; -update noar tt set v0='2IDJ4YVYN71K2JCRIHFR' where id=7; -update noar ti set v0='2IDJ4YVYN71K2JCRIHFR' where id=7; -update noar tt set b0='085XPJMWG4EAVDICW3X2MV6' where id=7; -update noar ti set b0='085XPJMWG4EAVDICW3X2MV6' where id=7; -update noar tt set v0='I3G6' where id=7; -update noar ti set v0='I3G6' where id=7; -update noar tt set b1='03EV0G' where id=7; -update noar ti set b1='03EV0G' where id=7; -update noar tt set v0='ZRA' where id=7; -update noar ti set v0='ZRA' where id=7; -update noar tt set b2='1HO9ESSC7ZNQGMJS2WDUPQLXV' where id=7; -update noar ti set b2='1HO9ESSC7ZNQGMJS2WDUPQLXV' where id=7; -update noar tt set v0='BXCISN1XCRZPD47TEA7NG1Y1Q' where id=8; -update noar ti set v0='BXCISN1XCRZPD47TEA7NG1Y1Q' where id=8; -update noar tt set b0='KA0JJNF2GIK4N3RMMI' where id=8; -update noar ti set b0='KA0JJNF2GIK4N3RMMI' where id=8; -update noar tt set v0='5HJDWSFEXIA' where id=8; -update noar ti set v0='5HJDWSFEXIA' where id=8; -update noar tt set b1='Q2A1AF40HLUPBYF0DCJKNSC4' where id=8; -update noar ti set b1='Q2A1AF40HLUPBYF0DCJKNSC4' where id=8; -update noar tt set v0='UKT' where id=8; -update noar ti set v0='UKT' where id=8; -update noar tt set b2='O86UDDD7C7Z' where id=8; -update noar ti set b2='O86UDDD7C7Z' where id=8; -update noar tt set v0='L7TC' where id=9; -update noar ti set v0='L7TC' where id=9; -update noar tt set b0='3TD99CICLNR5YY2F7SE79REJSBJ6EQ' where id=9; -update noar ti set b0='3TD99CICLNR5YY2F7SE79REJSBJ6EQ' where id=9; -update noar tt set v0='RYM970UI38Z4PBQCDRLCLSXE14M0' where id=9; -update noar ti set v0='RYM970UI38Z4PBQCDRLCLSXE14M0' where id=9; -update noar tt set b1='65QVVVL6' where id=9; -update noar ti set b1='65QVVVL6' where id=9; -update noar tt set v0='MMVW0VMXH9C4EF8QZ' where id=9; -update noar ti set v0='MMVW0VMXH9C4EF8QZ' where id=9; -update noar tt set b2='OGXCDIENDG7HIS4V' where id=9; -update noar ti set b2='OGXCDIENDG7HIS4V' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -f0 int not null, -v0 varchar(32) not null, -b0 blob not null, -b1 blob not null, -b2 longblob not null -) engine=tokudb; -insert into tt values (1,0,'','','',''); -insert into tt values (2,0,'','','',''); -insert into tt values (3,0,'','','',''); -insert into tt values (4,0,'','','',''); -insert into tt values (5,0,'','','',''); -insert into tt values (6,0,'','','',''); -insert into tt values (7,0,'','','',''); -insert into tt values (8,0,'','','',''); -insert into tt values (9,0,'','','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='MRFA4NQEG02TO3MG482KEWAX84CFXQ' where id=1; -update noar ti set v0='MRFA4NQEG02TO3MG482KEWAX84CFXQ' where id=1; -update noar tt set b0='60J3CU4GW0C2UXD6G1G' where id=1; -update noar ti set b0='60J3CU4GW0C2UXD6G1G' where id=1; -update noar tt set v0='HBWJGUX36S5CMNC3159B62M5PA' where id=1; -update noar ti set v0='HBWJGUX36S5CMNC3159B62M5PA' where id=1; -update noar tt set b1='38XV123' where id=1; -update noar ti set b1='38XV123' where id=1; -update noar tt set v0='28LP' where id=1; -update noar ti set v0='28LP' where id=1; -update noar tt set b2='V' where id=1; -update noar ti set b2='V' where id=1; -update noar tt set v0='H2CX0EI0BE5E0500NBVZ52AG0Z045Z' where id=2; -update noar ti set v0='H2CX0EI0BE5E0500NBVZ52AG0Z045Z' where id=2; -update noar tt set b0='TOYY8QRR' where id=2; -update noar ti set b0='TOYY8QRR' where id=2; -update noar tt set v0='BDEGJ8PZHAXUH0IT8J08546E' where id=2; -update noar ti set v0='BDEGJ8PZHAXUH0IT8J08546E' where id=2; -update noar tt set b1='E9425ENC3G8T' where id=2; -update noar ti set b1='E9425ENC3G8T' where id=2; -update noar tt set v0='40ILIJWUC5ZF0U4P8Z6HG1GI6530V' where id=2; -update noar ti set v0='40ILIJWUC5ZF0U4P8Z6HG1GI6530V' where id=2; -update noar tt set b2='79ID' where id=2; -update noar ti set b2='79ID' where id=2; -update noar tt set v0='FK7Q68DSV6VFFGN8ZJFDWGH6BVHVJBAR' where id=3; -update noar ti set v0='FK7Q68DSV6VFFGN8ZJFDWGH6BVHVJBAR' where id=3; -update noar tt set b0='ODKXSQM86X3EVDGD' where id=3; -update noar ti set b0='ODKXSQM86X3EVDGD' where id=3; -update noar tt set v0='3HF4O5KWQCC2U2GA8' where id=3; -update noar ti set v0='3HF4O5KWQCC2U2GA8' where id=3; -update noar tt set b1='9PLRZBE9O3A4KVLJ' where id=3; -update noar ti set b1='9PLRZBE9O3A4KVLJ' where id=3; -update noar tt set v0='RX2QCYKB6WC5YE3ALHKIK' where id=3; -update noar ti set v0='RX2QCYKB6WC5YE3ALHKIK' where id=3; -update noar tt set b2='DQGVF5NS79RI9CHT7SG6J8VS' where id=3; -update noar ti set b2='DQGVF5NS79RI9CHT7SG6J8VS' where id=3; -update noar tt set v0='3VYP5GBPXC2RQZ9YKB4UVY' where id=4; -update noar ti set v0='3VYP5GBPXC2RQZ9YKB4UVY' where id=4; -update noar tt set b0='6W' where id=4; -update noar ti set b0='6W' where id=4; -update noar tt set v0='EXTZWLBKOJASKTSCNYDWV' where id=4; -update noar ti set v0='EXTZWLBKOJASKTSCNYDWV' where id=4; -update noar tt set b1='0VG7XQ2W1' where id=4; -update noar ti set b1='0VG7XQ2W1' where id=4; -update noar tt set v0='TJQ0BYJHKAMQFVZ3YNG1N' where id=4; -update noar ti set v0='TJQ0BYJHKAMQFVZ3YNG1N' where id=4; -update noar tt set b2='RVOBLQ06SNSXEXQ3F2RVIBQ0LVP' where id=4; -update noar ti set b2='RVOBLQ06SNSXEXQ3F2RVIBQ0LVP' where id=4; -update noar tt set v0='Z0MGERB' where id=5; -update noar ti set v0='Z0MGERB' where id=5; -update noar tt set b0='QWX5X6C1J3' where id=5; -update noar ti set b0='QWX5X6C1J3' where id=5; -update noar tt set v0='ILJQY9I5MG53AFYU7I2N' where id=5; -update noar ti set v0='ILJQY9I5MG53AFYU7I2N' where id=5; -update noar tt set b1='KC6BN6TFX7PHU' where id=5; -update noar ti set b1='KC6BN6TFX7PHU' where id=5; -update noar tt set v0='HDWZDH5HEHNM' where id=5; -update noar ti set v0='HDWZDH5HEHNM' where id=5; -update noar tt set b2='63SERHO0YBUJB9PYSYRRTQ61J' where id=5; -update noar ti set b2='63SERHO0YBUJB9PYSYRRTQ61J' where id=5; -update noar tt set v0='87FGO0VZZB42' where id=6; -update noar ti set v0='87FGO0VZZB42' where id=6; -update noar tt set b0='IDLWK6863KXO1D5C5' where id=6; -update noar ti set b0='IDLWK6863KXO1D5C5' where id=6; -update noar tt set v0='0YU9NO' where id=6; -update noar ti set v0='0YU9NO' where id=6; -update noar tt set b1='NPTBKDIVWXRXYKBNT77LBKMLTTWH85RA' where id=6; -update noar ti set b1='NPTBKDIVWXRXYKBNT77LBKMLTTWH85RA' where id=6; -update noar tt set v0='E9QTHKC8EGOV4741EH375LQ43NWV' where id=6; -update noar ti set v0='E9QTHKC8EGOV4741EH375LQ43NWV' where id=6; -update noar tt set b2='JQ13AXVDH2GTN8UGD4' where id=6; -update noar ti set b2='JQ13AXVDH2GTN8UGD4' where id=6; -update noar tt set v0='VTTTDQ' where id=7; -update noar ti set v0='VTTTDQ' where id=7; -update noar tt set b0='UPS7JT5GTW' where id=7; -update noar ti set b0='UPS7JT5GTW' where id=7; -update noar tt set v0='RLKLLWKW5ZXUG3KSXGH' where id=7; -update noar ti set v0='RLKLLWKW5ZXUG3KSXGH' where id=7; -update noar tt set b1='JJC8BWFMC9FXWDDMXRL1URXCEO2' where id=7; -update noar ti set b1='JJC8BWFMC9FXWDDMXRL1URXCEO2' where id=7; -update noar tt set v0='KU6B7A7KTIZJU6LGKR25LHQTYS6M' where id=7; -update noar ti set v0='KU6B7A7KTIZJU6LGKR25LHQTYS6M' where id=7; -update noar tt set b2='LYBVMWSAQ0R630F' where id=7; -update noar ti set b2='LYBVMWSAQ0R630F' where id=7; -update noar tt set v0='YOTXIA2W2VYOY' where id=8; -update noar ti set v0='YOTXIA2W2VYOY' where id=8; -update noar tt set b0='9JIPEW8EDE1YYZZ' where id=8; -update noar ti set b0='9JIPEW8EDE1YYZZ' where id=8; -update noar tt set v0='Z9' where id=8; -update noar ti set v0='Z9' where id=8; -update noar tt set b1='DD8JD0X' where id=8; -update noar ti set b1='DD8JD0X' where id=8; -update noar tt set v0='55NQRT2SEOFG588R' where id=8; -update noar ti set v0='55NQRT2SEOFG588R' where id=8; -update noar tt set b2='VF3DCAM54AWFZNY90I740RM' where id=8; -update noar ti set b2='VF3DCAM54AWFZNY90I740RM' where id=8; -update noar tt set v0='6U0VND' where id=9; -update noar ti set v0='6U0VND' where id=9; -update noar tt set b0='CU9AC7VOWSXIM1TPPDOIZKQMDV47NYH' where id=9; -update noar ti set b0='CU9AC7VOWSXIM1TPPDOIZKQMDV47NYH' where id=9; -update noar tt set v0='DV5SZ3T6GG9D7O8' where id=9; -update noar ti set v0='DV5SZ3T6GG9D7O8' where id=9; -update noar tt set b1='JTK51YZ3MH7EPV38ZA3' where id=9; -update noar ti set b1='JTK51YZ3MH7EPV38ZA3' where id=9; -update noar tt set v0='P82AFYAR1SWYN3HVKU4KNPS5R' where id=9; -update noar ti set v0='P82AFYAR1SWYN3HVKU4KNPS5R' where id=9; -update noar tt set b2='9XJURTXR95AO6UC4SMN' where id=9; -update noar ti set b2='9XJURTXR95AO6UC4SMN' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -f0 int not null, -v0 varchar(256) not null, -b0 blob not null, -b1 blob not null, -b2 longblob not null -) engine=tokudb; -insert into tt values (1,0,'','','',''); -insert into tt values (2,0,'','','',''); -insert into tt values (3,0,'','','',''); -insert into tt values (4,0,'','','',''); -insert into tt values (5,0,'','','',''); -insert into tt values (6,0,'','','',''); -insert into tt values (7,0,'','','',''); -insert into tt values (8,0,'','','',''); -insert into tt values (9,0,'','','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='E4EXF3DQ5EZRK780' where id=1; -update noar ti set v0='E4EXF3DQ5EZRK780' where id=1; -update noar tt set b0='1C9CPGVIUDGPO1LF1ENEDI' where id=1; -update noar ti set b0='1C9CPGVIUDGPO1LF1ENEDI' where id=1; -update noar tt set v0='002Q3NZEQJYRA6696QCXDGM6VF6P' where id=1; -update noar ti set v0='002Q3NZEQJYRA6696QCXDGM6VF6P' where id=1; -update noar tt set b1='V9KP' where id=1; -update noar ti set b1='V9KP' where id=1; -update noar tt set v0='F2A0L606CZEN4IHJ89JXFJW' where id=1; -update noar ti set v0='F2A0L606CZEN4IHJ89JXFJW' where id=1; -update noar tt set b2='75OJNCY' where id=1; -update noar ti set b2='75OJNCY' where id=1; -update noar tt set v0='4GSPODX06S79' where id=2; -update noar ti set v0='4GSPODX06S79' where id=2; -update noar tt set b0='LNIDCUASEW0XACQ7XK5ZMKGE' where id=2; -update noar ti set b0='LNIDCUASEW0XACQ7XK5ZMKGE' where id=2; -update noar tt set v0='O' where id=2; -update noar ti set v0='O' where id=2; -update noar tt set b1='PM' where id=2; -update noar ti set b1='PM' where id=2; -update noar tt set v0='CQJM6AIB' where id=2; -update noar ti set v0='CQJM6AIB' where id=2; -update noar tt set b2='OOK843ZBAQWQOWWKSE7M0C6GE' where id=2; -update noar ti set b2='OOK843ZBAQWQOWWKSE7M0C6GE' where id=2; -update noar tt set v0='C0DRBIBVEQQ' where id=3; -update noar ti set v0='C0DRBIBVEQQ' where id=3; -update noar tt set b0='7TLZ460RY6F3UQ854VDSZCW7UKA8VZC' where id=3; -update noar ti set b0='7TLZ460RY6F3UQ854VDSZCW7UKA8VZC' where id=3; -update noar tt set v0='KESKC9LQP' where id=3; -update noar ti set v0='KESKC9LQP' where id=3; -update noar tt set b1='GWE91K7T6IA3TU3KO34WUK' where id=3; -update noar ti set b1='GWE91K7T6IA3TU3KO34WUK' where id=3; -update noar tt set v0='Z' where id=3; -update noar ti set v0='Z' where id=3; -update noar tt set b2='YP4M0UJPD55M96EY85SCXASV5' where id=3; -update noar ti set b2='YP4M0UJPD55M96EY85SCXASV5' where id=3; -update noar tt set v0='WSHKMHTX45HT40N907ZU6D8' where id=4; -update noar ti set v0='WSHKMHTX45HT40N907ZU6D8' where id=4; -update noar tt set b0='IA8X2PE4V9QDDOCLSK' where id=4; -update noar ti set b0='IA8X2PE4V9QDDOCLSK' where id=4; -update noar tt set v0='EA2ZTC5F5IZL' where id=4; -update noar ti set v0='EA2ZTC5F5IZL' where id=4; -update noar tt set b1='45V9KS2XGKQEW127UZVB5KVNL0DFK6Y4' where id=4; -update noar ti set b1='45V9KS2XGKQEW127UZVB5KVNL0DFK6Y4' where id=4; -update noar tt set v0='1JN6FVFO77UU39NN01OMB' where id=4; -update noar ti set v0='1JN6FVFO77UU39NN01OMB' where id=4; -update noar tt set b2='1LIN9GX6SED2A6ZGQTJVAT5KL' where id=4; -update noar ti set b2='1LIN9GX6SED2A6ZGQTJVAT5KL' where id=4; -update noar tt set v0='06PN8G66U6S' where id=5; -update noar ti set v0='06PN8G66U6S' where id=5; -update noar tt set b0='DQMYC40O2SPY4OUWGPH7W' where id=5; -update noar ti set b0='DQMYC40O2SPY4OUWGPH7W' where id=5; -update noar tt set v0='1CATTVVN3TUR5B2JUXG9IP' where id=5; -update noar ti set v0='1CATTVVN3TUR5B2JUXG9IP' where id=5; -update noar tt set b1='MLFD5HUO' where id=5; -update noar ti set b1='MLFD5HUO' where id=5; -update noar tt set v0='X' where id=5; -update noar ti set v0='X' where id=5; -update noar tt set b2='X4XFUD2H8FP9XX6TN3Y55UO6MCD' where id=5; -update noar ti set b2='X4XFUD2H8FP9XX6TN3Y55UO6MCD' where id=5; -update noar tt set v0='3121FM8PL49' where id=6; -update noar ti set v0='3121FM8PL49' where id=6; -update noar tt set b0='4YKXWSOKD23' where id=6; -update noar ti set b0='4YKXWSOKD23' where id=6; -update noar tt set v0='SIT58PSG071K3R3F9' where id=6; -update noar ti set v0='SIT58PSG071K3R3F9' where id=6; -update noar tt set b1='0CLF64KDZI3F70SJMJAPXAE4' where id=6; -update noar ti set b1='0CLF64KDZI3F70SJMJAPXAE4' where id=6; -update noar tt set v0='JI' where id=6; -update noar ti set v0='JI' where id=6; -update noar tt set b2='4W8EDUIBLU2JGY1XB3IL' where id=6; -update noar ti set b2='4W8EDUIBLU2JGY1XB3IL' where id=6; -update noar tt set v0='FRM83WBO0FJIZU8ZY' where id=7; -update noar ti set v0='FRM83WBO0FJIZU8ZY' where id=7; -update noar tt set b0='R1E1Q6BYNPR76Y6QTUSF' where id=7; -update noar ti set b0='R1E1Q6BYNPR76Y6QTUSF' where id=7; -update noar tt set v0='NT34Y1IK' where id=7; -update noar ti set v0='NT34Y1IK' where id=7; -update noar tt set b1='6IDUJC0L9W8' where id=7; -update noar ti set b1='6IDUJC0L9W8' where id=7; -update noar tt set v0='6A9OV4AA8X2A3RAJ4M' where id=7; -update noar ti set v0='6A9OV4AA8X2A3RAJ4M' where id=7; -update noar tt set b2='LFZX87JR7U2JD8XBYWSA2' where id=7; -update noar ti set b2='LFZX87JR7U2JD8XBYWSA2' where id=7; -update noar tt set v0='39OQP' where id=8; -update noar ti set v0='39OQP' where id=8; -update noar tt set b0='HYOSCL6MQX' where id=8; -update noar ti set b0='HYOSCL6MQX' where id=8; -update noar tt set v0='JK6W9DTRVATP' where id=8; -update noar ti set v0='JK6W9DTRVATP' where id=8; -update noar tt set b1='U' where id=8; -update noar ti set b1='U' where id=8; -update noar tt set v0='6GGV' where id=8; -update noar ti set v0='6GGV' where id=8; -update noar tt set b2='KUHL' where id=8; -update noar ti set b2='KUHL' where id=8; -update noar tt set v0='EHUA546TZ959J9VT' where id=9; -update noar ti set v0='EHUA546TZ959J9VT' where id=9; -update noar tt set b0='C89CQKID907R936YRPZQ4KHSOS81' where id=9; -update noar ti set b0='C89CQKID907R936YRPZQ4KHSOS81' where id=9; -update noar tt set v0='0SXIMJUMZZW38IDV' where id=9; -update noar ti set v0='0SXIMJUMZZW38IDV' where id=9; -update noar tt set b1='8KOTJ8X6MSRVZV' where id=9; -update noar ti set b1='8KOTJ8X6MSRVZV' where id=9; -update noar tt set v0='7ZFRE2CGEQH5I2' where id=9; -update noar ti set v0='7ZFRE2CGEQH5I2' where id=9; -update noar tt set b2='P4FC4FWF2STJZ4ZGBWZS' where id=9; -update noar ti set b2='P4FC4FWF2STJZ4ZGBWZS' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -f0 int null, -v0 varchar(32) null, -b0 blob null, -b1 mediumblob null, -b2 tinyblob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='YHU8CYU5OFONA4UEP4E4KNP99F' where id=1; -update noar ti set v0='YHU8CYU5OFONA4UEP4E4KNP99F' where id=1; -update noar tt set b0='VGFYNO6LMPHIQI0HBTK0EIWT50F9MZ' where id=1; -update noar ti set b0='VGFYNO6LMPHIQI0HBTK0EIWT50F9MZ' where id=1; -update noar tt set v0='EXEMNGGMU62GRIBQ994QVIPH865LEG3' where id=1; -update noar ti set v0='EXEMNGGMU62GRIBQ994QVIPH865LEG3' where id=1; -update noar tt set b1='V5OQNLG5LK9MQBEKKV' where id=1; -update noar ti set b1='V5OQNLG5LK9MQBEKKV' where id=1; -update noar tt set v0='Q914BHJY7G5XWPP94IJT9DYOME8I6JPS' where id=1; -update noar ti set v0='Q914BHJY7G5XWPP94IJT9DYOME8I6JPS' where id=1; -update noar tt set b2='CDS' where id=1; -update noar ti set b2='CDS' where id=1; -update noar tt set v0='LONTOQ8OEUG' where id=2; -update noar ti set v0='LONTOQ8OEUG' where id=2; -update noar tt set b0='5YGQ8UZ7' where id=2; -update noar ti set b0='5YGQ8UZ7' where id=2; -update noar tt set v0='DXYQ02YV' where id=2; -update noar ti set v0='DXYQ02YV' where id=2; -update noar tt set b1='DL' where id=2; -update noar ti set b1='DL' where id=2; -update noar tt set v0='9LIPFVKDFF78NUU95FAY0S' where id=2; -update noar ti set v0='9LIPFVKDFF78NUU95FAY0S' where id=2; -update noar tt set b2='KYWHW6WC' where id=2; -update noar ti set b2='KYWHW6WC' where id=2; -update noar tt set v0='CLW9C' where id=3; -update noar ti set v0='CLW9C' where id=3; -update noar tt set b0='40BMCZXNX' where id=3; -update noar ti set b0='40BMCZXNX' where id=3; -update noar tt set v0='LUW9NWULY36DTK' where id=3; -update noar ti set v0='LUW9NWULY36DTK' where id=3; -update noar tt set b1='P28PVAY24X9798HBJENN' where id=3; -update noar ti set b1='P28PVAY24X9798HBJENN' where id=3; -update noar tt set v0='Z8OF7HXD4LHHE69MPVX1094O' where id=3; -update noar ti set v0='Z8OF7HXD4LHHE69MPVX1094O' where id=3; -update noar tt set b2='OLEE2RX5NS0YEAW50HYY0VKFKQ9B' where id=3; -update noar ti set b2='OLEE2RX5NS0YEAW50HYY0VKFKQ9B' where id=3; -update noar tt set v0='FAKJNV' where id=4; -update noar ti set v0='FAKJNV' where id=4; -update noar tt set b0='FZYOH7OHONINERAV7OVYU0' where id=4; -update noar ti set b0='FZYOH7OHONINERAV7OVYU0' where id=4; -update noar tt set v0='W7EY8OZDI886261DGTK10OJ04XI6' where id=4; -update noar ti set v0='W7EY8OZDI886261DGTK10OJ04XI6' where id=4; -update noar tt set b1='VGW' where id=4; -update noar ti set b1='VGW' where id=4; -update noar tt set v0='LRHKZOU735YTIHGHUJNZ1AD' where id=4; -update noar ti set v0='LRHKZOU735YTIHGHUJNZ1AD' where id=4; -update noar tt set b2='TOKSC7DEMGLW9TU0V6XCR' where id=4; -update noar ti set b2='TOKSC7DEMGLW9TU0V6XCR' where id=4; -update noar tt set v0='BZSQ9HL1SG3KFRHWP' where id=5; -update noar ti set v0='BZSQ9HL1SG3KFRHWP' where id=5; -update noar tt set b0='PAVSZY4' where id=5; -update noar ti set b0='PAVSZY4' where id=5; -update noar tt set v0='9RE' where id=5; -update noar ti set v0='9RE' where id=5; -update noar tt set b1='NCJWIQHW2GAYGVW9RAF5C6RC' where id=5; -update noar ti set b1='NCJWIQHW2GAYGVW9RAF5C6RC' where id=5; -update noar tt set v0='V4AZCZRGD' where id=5; -update noar ti set v0='V4AZCZRGD' where id=5; -update noar tt set b2='F5MO8T0O1THEGRWIJAD' where id=5; -update noar ti set b2='F5MO8T0O1THEGRWIJAD' where id=5; -update noar tt set v0='529' where id=6; -update noar ti set v0='529' where id=6; -update noar tt set b0='ZI3A21TG' where id=6; -update noar ti set b0='ZI3A21TG' where id=6; -update noar tt set v0='7LW67NCE736' where id=6; -update noar ti set v0='7LW67NCE736' where id=6; -update noar tt set b1='SOYRELC04KJ6VO7' where id=6; -update noar ti set b1='SOYRELC04KJ6VO7' where id=6; -update noar tt set v0='YCVNQOOGR05W1S3KDO' where id=6; -update noar ti set v0='YCVNQOOGR05W1S3KDO' where id=6; -update noar tt set b2='0J7U647CCWN7TXTZ6KUUUPZ925PBP' where id=6; -update noar ti set b2='0J7U647CCWN7TXTZ6KUUUPZ925PBP' where id=6; -update noar tt set v0='2V8MSSLQQOSCUWVNCKMD2IE0M' where id=7; -update noar ti set v0='2V8MSSLQQOSCUWVNCKMD2IE0M' where id=7; -update noar tt set b0='5TVUR2ZB4Y' where id=7; -update noar ti set b0='5TVUR2ZB4Y' where id=7; -update noar tt set v0='5DASH0' where id=7; -update noar ti set v0='5DASH0' where id=7; -update noar tt set b1='Y3D46R3CYV4TP4QLU' where id=7; -update noar ti set b1='Y3D46R3CYV4TP4QLU' where id=7; -update noar tt set v0='L0YRTL8EVG3RGFMCD4A' where id=7; -update noar ti set v0='L0YRTL8EVG3RGFMCD4A' where id=7; -update noar tt set b2='QCVHDFCYHVGBAG19EORT0HIPP0O77NJZ' where id=7; -update noar ti set b2='QCVHDFCYHVGBAG19EORT0HIPP0O77NJZ' where id=7; -update noar tt set v0='4HSSP' where id=8; -update noar ti set v0='4HSSP' where id=8; -update noar tt set b0='XUKDKTJ72I8YQDLEX4WFIXU06RK6Q' where id=8; -update noar ti set b0='XUKDKTJ72I8YQDLEX4WFIXU06RK6Q' where id=8; -update noar tt set v0='7SLV9Z1PN0TZL4X29WPLDJYURW' where id=8; -update noar ti set v0='7SLV9Z1PN0TZL4X29WPLDJYURW' where id=8; -update noar tt set b1='IDWOB1JL' where id=8; -update noar ti set b1='IDWOB1JL' where id=8; -update noar tt set v0='C7WB8SH4' where id=8; -update noar ti set v0='C7WB8SH4' where id=8; -update noar tt set b2='9Y' where id=8; -update noar ti set b2='9Y' where id=8; -update noar tt set v0='KHV9VAA2WB0YJT6CJU0G34SIAWYTE' where id=9; -update noar ti set v0='KHV9VAA2WB0YJT6CJU0G34SIAWYTE' where id=9; -update noar tt set b0='G9SKYUJCLMKU2OIG61Q' where id=9; -update noar ti set b0='G9SKYUJCLMKU2OIG61Q' where id=9; -update noar tt set v0='DWM7YOVLTTJ4DMKZ4NNTUISN' where id=9; -update noar ti set v0='DWM7YOVLTTJ4DMKZ4NNTUISN' where id=9; -update noar tt set b1='L12X9YZ6ZGK49GBK9LIUM3ODNGLKBQKK' where id=9; -update noar ti set b1='L12X9YZ6ZGK49GBK9LIUM3ODNGLKBQKK' where id=9; -update noar tt set v0='N8EAWSXZCMZF' where id=9; -update noar ti set v0='N8EAWSXZCMZF' where id=9; -update noar tt set b2='J6Z1NMUWPWV' where id=9; -update noar ti set b2='J6Z1NMUWPWV' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -f0 int null, -v0 varchar(256) null, -b0 blob null, -b1 mediumblob null, -b2 tinyblob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='8GUQR0FCMDI2RGD' where id=1; -update noar ti set v0='8GUQR0FCMDI2RGD' where id=1; -update noar tt set b0='DWJ' where id=1; -update noar ti set b0='DWJ' where id=1; -update noar tt set v0='8AU5Y3GFRRC8D3XCQ1' where id=1; -update noar ti set v0='8AU5Y3GFRRC8D3XCQ1' where id=1; -update noar tt set b1='68UZXR1K53PEKKLRN0Z0' where id=1; -update noar ti set b1='68UZXR1K53PEKKLRN0Z0' where id=1; -update noar tt set v0='3LOHEBRD85U9FVXXCHNBFB9' where id=1; -update noar ti set v0='3LOHEBRD85U9FVXXCHNBFB9' where id=1; -update noar tt set b2='V41' where id=1; -update noar ti set b2='V41' where id=1; -update noar tt set v0='SESYZM8NFW' where id=2; -update noar ti set v0='SESYZM8NFW' where id=2; -update noar tt set b0='8H1FO471WQ9XCT' where id=2; -update noar ti set b0='8H1FO471WQ9XCT' where id=2; -update noar tt set v0='HJY3X0CBPKG1SIXQW7J6' where id=2; -update noar ti set v0='HJY3X0CBPKG1SIXQW7J6' where id=2; -update noar tt set b1='OQ7E682BAOTGSJL0D7UXGLDT' where id=2; -update noar ti set b1='OQ7E682BAOTGSJL0D7UXGLDT' where id=2; -update noar tt set v0='ALI81HA5HJFJPQ9' where id=2; -update noar ti set v0='ALI81HA5HJFJPQ9' where id=2; -update noar tt set b2='88UM590LAJ0JMQYO5561IXXL9RY' where id=2; -update noar ti set b2='88UM590LAJ0JMQYO5561IXXL9RY' where id=2; -update noar tt set v0='I4' where id=3; -update noar ti set v0='I4' where id=3; -update noar tt set b0='ZHYB9SFIF3WMK35XBCILM' where id=3; -update noar ti set b0='ZHYB9SFIF3WMK35XBCILM' where id=3; -update noar tt set v0='OC' where id=3; -update noar ti set v0='OC' where id=3; -update noar tt set b1='9DOENC0JNBEXYYZYSB6ZGK' where id=3; -update noar ti set b1='9DOENC0JNBEXYYZYSB6ZGK' where id=3; -update noar tt set v0='J9FORFWH1RV6Z6B8IEW8Y' where id=3; -update noar ti set v0='J9FORFWH1RV6Z6B8IEW8Y' where id=3; -update noar tt set b2='6CXDR5K0' where id=3; -update noar ti set b2='6CXDR5K0' where id=3; -update noar tt set v0='FWN25C' where id=4; -update noar ti set v0='FWN25C' where id=4; -update noar tt set b0='HSXJ18OLZFYKXAFMTUL23XG8L7LGG' where id=4; -update noar ti set b0='HSXJ18OLZFYKXAFMTUL23XG8L7LGG' where id=4; -update noar tt set v0='RJ25O7CM54CCWYDF47YF79AK2V' where id=4; -update noar ti set v0='RJ25O7CM54CCWYDF47YF79AK2V' where id=4; -update noar tt set b1='LJ14H2H219TXFR54J3' where id=4; -update noar ti set b1='LJ14H2H219TXFR54J3' where id=4; -update noar tt set v0='48RKTO3H8SJW1L' where id=4; -update noar ti set v0='48RKTO3H8SJW1L' where id=4; -update noar tt set b2='1H2Q0KIIX16BW21GR' where id=4; -update noar ti set b2='1H2Q0KIIX16BW21GR' where id=4; -update noar tt set v0='GSX0DYF61NT9FKDMKV9EAR2P35' where id=5; -update noar ti set v0='GSX0DYF61NT9FKDMKV9EAR2P35' where id=5; -update noar tt set b0='YTQIY' where id=5; -update noar ti set b0='YTQIY' where id=5; -update noar tt set v0='2KQ2KY3NRXK3KFYNKHLF' where id=5; -update noar ti set v0='2KQ2KY3NRXK3KFYNKHLF' where id=5; -update noar tt set b1='4PUKW8G' where id=5; -update noar ti set b1='4PUKW8G' where id=5; -update noar tt set v0='36YDO7TSCKND29VOGDOW438SY0' where id=5; -update noar ti set v0='36YDO7TSCKND29VOGDOW438SY0' where id=5; -update noar tt set b2='I0JJEBZT4V95FJHW' where id=5; -update noar ti set b2='I0JJEBZT4V95FJHW' where id=5; -update noar tt set v0='OHXSQJRC6FZ6MRA3MWW5A65B0' where id=6; -update noar ti set v0='OHXSQJRC6FZ6MRA3MWW5A65B0' where id=6; -update noar tt set b0='15PL4CVY3IQOOX2T9M7WWX6CHK' where id=6; -update noar ti set b0='15PL4CVY3IQOOX2T9M7WWX6CHK' where id=6; -update noar tt set v0='4XGG656T0W5NGNEVQHFG' where id=6; -update noar ti set v0='4XGG656T0W5NGNEVQHFG' where id=6; -update noar tt set b1='8P12WV8G1YI7H4T270EL5OPUFF4N' where id=6; -update noar ti set b1='8P12WV8G1YI7H4T270EL5OPUFF4N' where id=6; -update noar tt set v0='VHPNY6WQAAM' where id=6; -update noar ti set v0='VHPNY6WQAAM' where id=6; -update noar tt set b2='C1GXCW7ZJO3YRBGZK43YLC4JRCHHN' where id=6; -update noar ti set b2='C1GXCW7ZJO3YRBGZK43YLC4JRCHHN' where id=6; -update noar tt set v0='KP07N9Z78GZZD3O0R9PCLZQE88E3' where id=7; -update noar ti set v0='KP07N9Z78GZZD3O0R9PCLZQE88E3' where id=7; -update noar tt set b0='E1534PDCYYKEY6HMK8ERQ5FH3DXTN7VC' where id=7; -update noar ti set b0='E1534PDCYYKEY6HMK8ERQ5FH3DXTN7VC' where id=7; -update noar tt set v0='XCON96ZERYB4Y89FGAKS8' where id=7; -update noar ti set v0='XCON96ZERYB4Y89FGAKS8' where id=7; -update noar tt set b1='959VVUQDCGZE36X5KODWM4KK4UKAM2PU' where id=7; -update noar ti set b1='959VVUQDCGZE36X5KODWM4KK4UKAM2PU' where id=7; -update noar tt set v0='TL2HKYMKM3G1PH2H' where id=7; -update noar ti set v0='TL2HKYMKM3G1PH2H' where id=7; -update noar tt set b2='TDUTHXS52LP61BC5IW7YB2V' where id=7; -update noar ti set b2='TDUTHXS52LP61BC5IW7YB2V' where id=7; -update noar tt set v0='C9D1R' where id=8; -update noar ti set v0='C9D1R' where id=8; -update noar tt set b0='ZC64X5FMTIN08K7HRQ90S1BBPWCH1' where id=8; -update noar ti set b0='ZC64X5FMTIN08K7HRQ90S1BBPWCH1' where id=8; -update noar tt set v0='C1' where id=8; -update noar ti set v0='C1' where id=8; -update noar tt set b1='20JRYK6EEXRMQG' where id=8; -update noar ti set b1='20JRYK6EEXRMQG' where id=8; -update noar tt set v0='1H' where id=8; -update noar ti set v0='1H' where id=8; -update noar tt set b2='5HEF65UEGQ8JY4YNG7' where id=8; -update noar ti set b2='5HEF65UEGQ8JY4YNG7' where id=8; -update noar tt set v0='B7LEOT1OTK2BXBS' where id=9; -update noar ti set v0='B7LEOT1OTK2BXBS' where id=9; -update noar tt set b0='JNIJ2N45E03U4ZR30OTAVS1' where id=9; -update noar ti set b0='JNIJ2N45E03U4ZR30OTAVS1' where id=9; -update noar tt set v0='DRU2IPXDFGL7YX50O' where id=9; -update noar ti set v0='DRU2IPXDFGL7YX50O' where id=9; -update noar tt set b1='NKTU6IXVVHFW15IES' where id=9; -update noar ti set b1='NKTU6IXVVHFW15IES' where id=9; -update noar tt set v0='49L35R8HI855WAK' where id=9; -update noar ti set v0='49L35R8HI855WAK' where id=9; -update noar tt set b2='WOVRVP459QYK7YH3NCTUKBWVS7BS0ORL' where id=9; -update noar ti set b2='WOVRVP459QYK7YH3NCTUKBWVS7BS0ORL' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -f0 int not null, -v0 varchar(32) not null, -b0 blob not null, -b1 mediumblob not null, -b2 tinyblob not null -) engine=tokudb; -insert into tt values (1,0,'','','',''); -insert into tt values (2,0,'','','',''); -insert into tt values (3,0,'','','',''); -insert into tt values (4,0,'','','',''); -insert into tt values (5,0,'','','',''); -insert into tt values (6,0,'','','',''); -insert into tt values (7,0,'','','',''); -insert into tt values (8,0,'','','',''); -insert into tt values (9,0,'','','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='LENCHJMQGGCJ303MFPAUJWZ5BJ5EW' where id=1; -update noar ti set v0='LENCHJMQGGCJ303MFPAUJWZ5BJ5EW' where id=1; -update noar tt set b0='F8CE2ZW3PJPUIPTU2E' where id=1; -update noar ti set b0='F8CE2ZW3PJPUIPTU2E' where id=1; -update noar tt set v0='QVO5DP5LH5S57TLRTQ5JEXXXYMWX8G' where id=1; -update noar ti set v0='QVO5DP5LH5S57TLRTQ5JEXXXYMWX8G' where id=1; -update noar tt set b1='BCMZJAYS7EEY9' where id=1; -update noar ti set b1='BCMZJAYS7EEY9' where id=1; -update noar tt set v0='8Z4P1C0HXXB9JHRMGQKDM' where id=1; -update noar ti set v0='8Z4P1C0HXXB9JHRMGQKDM' where id=1; -update noar tt set b2='OEY' where id=1; -update noar ti set b2='OEY' where id=1; -update noar tt set v0='ZOCWCU9OZVY45W4JT' where id=2; -update noar ti set v0='ZOCWCU9OZVY45W4JT' where id=2; -update noar tt set b0='OL9IV' where id=2; -update noar ti set b0='OL9IV' where id=2; -update noar tt set v0='XQJRV2PKCWR2Q1T6STZOP2P7VYJKHG' where id=2; -update noar ti set v0='XQJRV2PKCWR2Q1T6STZOP2P7VYJKHG' where id=2; -update noar tt set b1='2X0KL88GKI2ACT3JIC5H9YNV0' where id=2; -update noar ti set b1='2X0KL88GKI2ACT3JIC5H9YNV0' where id=2; -update noar tt set v0='JO1BQEGX1160ZXTFVW8S75' where id=2; -update noar ti set v0='JO1BQEGX1160ZXTFVW8S75' where id=2; -update noar tt set b2='4EN84QTXSYD6Z' where id=2; -update noar ti set b2='4EN84QTXSYD6Z' where id=2; -update noar tt set v0='8VWIPY3HJBD' where id=3; -update noar ti set v0='8VWIPY3HJBD' where id=3; -update noar tt set b0='JZTMAX12E' where id=3; -update noar ti set b0='JZTMAX12E' where id=3; -update noar tt set v0='2' where id=3; -update noar ti set v0='2' where id=3; -update noar tt set b1='HRZXJOLSTZLJPPL5316EO' where id=3; -update noar ti set b1='HRZXJOLSTZLJPPL5316EO' where id=3; -update noar tt set v0='EM86XP33CAOD6M1ENO7Y' where id=3; -update noar ti set v0='EM86XP33CAOD6M1ENO7Y' where id=3; -update noar tt set b2='OW620YFSMA69YHF' where id=3; -update noar ti set b2='OW620YFSMA69YHF' where id=3; -update noar tt set v0='1637J6' where id=4; -update noar ti set v0='1637J6' where id=4; -update noar tt set b0='MQ1R5OB9ZKUFKYTT20RJ6' where id=4; -update noar ti set b0='MQ1R5OB9ZKUFKYTT20RJ6' where id=4; -update noar tt set v0='UQMF31RVBD12BSFJRYMQIV4C' where id=4; -update noar ti set v0='UQMF31RVBD12BSFJRYMQIV4C' where id=4; -update noar tt set b1='B6XHCI5JPW5POLPWYL46A64M' where id=4; -update noar ti set b1='B6XHCI5JPW5POLPWYL46A64M' where id=4; -update noar tt set v0='2DJB86' where id=4; -update noar ti set v0='2DJB86' where id=4; -update noar tt set b2='6HNL2C' where id=4; -update noar ti set b2='6HNL2C' where id=4; -update noar tt set v0='0UI' where id=5; -update noar ti set v0='0UI' where id=5; -update noar tt set b0='B4' where id=5; -update noar ti set b0='B4' where id=5; -update noar tt set v0='8SDVFDD4LE53VREW5SKEL4Q' where id=5; -update noar ti set v0='8SDVFDD4LE53VREW5SKEL4Q' where id=5; -update noar tt set b1='103KHBOZLLOAXXX6S6M' where id=5; -update noar ti set b1='103KHBOZLLOAXXX6S6M' where id=5; -update noar tt set v0='2RKD4ISGZH22E50208WFO978URY' where id=5; -update noar ti set v0='2RKD4ISGZH22E50208WFO978URY' where id=5; -update noar tt set b2='GE4EIB1TDHL' where id=5; -update noar ti set b2='GE4EIB1TDHL' where id=5; -update noar tt set v0='VQLU' where id=6; -update noar ti set v0='VQLU' where id=6; -update noar tt set b0='9NSR79YXU78F4JPMWL' where id=6; -update noar ti set b0='9NSR79YXU78F4JPMWL' where id=6; -update noar tt set v0='3BJY0SUVRNY5POX' where id=6; -update noar ti set v0='3BJY0SUVRNY5POX' where id=6; -update noar tt set b1='3YFD9U4V5' where id=6; -update noar ti set b1='3YFD9U4V5' where id=6; -update noar tt set v0='SKET5AFRD8YLN3Q717DFLVNVML' where id=6; -update noar ti set v0='SKET5AFRD8YLN3Q717DFLVNVML' where id=6; -update noar tt set b2='0WLWS5E2YQWN' where id=6; -update noar ti set b2='0WLWS5E2YQWN' where id=6; -update noar tt set v0='IM07ZOBJQLSKD' where id=7; -update noar ti set v0='IM07ZOBJQLSKD' where id=7; -update noar tt set b0='N9HCNH6435OB5B' where id=7; -update noar ti set b0='N9HCNH6435OB5B' where id=7; -update noar tt set v0='Y4JH8PSVCG34S0DSX43ENKQ4Z' where id=7; -update noar ti set v0='Y4JH8PSVCG34S0DSX43ENKQ4Z' where id=7; -update noar tt set b1='R3YBDYYBLXOSJZV' where id=7; -update noar ti set b1='R3YBDYYBLXOSJZV' where id=7; -update noar tt set v0='SKSVUX8K27' where id=7; -update noar ti set v0='SKSVUX8K27' where id=7; -update noar tt set b2='1ZIAT4BP9KNQ7ZZLPO95' where id=7; -update noar ti set b2='1ZIAT4BP9KNQ7ZZLPO95' where id=7; -update noar tt set v0='UPVJHEGO8XSSKQ0HIT0TW7PHJM' where id=8; -update noar ti set v0='UPVJHEGO8XSSKQ0HIT0TW7PHJM' where id=8; -update noar tt set b0='8Q2J4SVUB' where id=8; -update noar ti set b0='8Q2J4SVUB' where id=8; -update noar tt set v0='4T5' where id=8; -update noar ti set v0='4T5' where id=8; -update noar tt set b1='LOJCOJMQQVTGQZHQ16AEYH53CZ3OQFTW' where id=8; -update noar ti set b1='LOJCOJMQQVTGQZHQ16AEYH53CZ3OQFTW' where id=8; -update noar tt set v0='46GCM7JYG3A5VMCTR' where id=8; -update noar ti set v0='46GCM7JYG3A5VMCTR' where id=8; -update noar tt set b2='7M3YITAX5NT20RYJKXJWJ18LU87' where id=8; -update noar ti set b2='7M3YITAX5NT20RYJKXJWJ18LU87' where id=8; -update noar tt set v0='VTNEF76C0Q086YPQO7X' where id=9; -update noar ti set v0='VTNEF76C0Q086YPQO7X' where id=9; -update noar tt set b0='JASX0YR' where id=9; -update noar ti set b0='JASX0YR' where id=9; -update noar tt set v0='TE61595SIGRAQV1SGXJ5SZF' where id=9; -update noar ti set v0='TE61595SIGRAQV1SGXJ5SZF' where id=9; -update noar tt set b1='80I8VQNZNEUEG5IV07HF6L1ELJCK' where id=9; -update noar ti set b1='80I8VQNZNEUEG5IV07HF6L1ELJCK' where id=9; -update noar tt set v0='QA99Q6AW' where id=9; -update noar ti set v0='QA99Q6AW' where id=9; -update noar tt set b2='HPRKSGR8K' where id=9; -update noar ti set b2='HPRKSGR8K' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -f0 int not null, -v0 varchar(256) not null, -b0 blob not null, -b1 mediumblob not null, -b2 tinyblob not null -) engine=tokudb; -insert into tt values (1,0,'','','',''); -insert into tt values (2,0,'','','',''); -insert into tt values (3,0,'','','',''); -insert into tt values (4,0,'','','',''); -insert into tt values (5,0,'','','',''); -insert into tt values (6,0,'','','',''); -insert into tt values (7,0,'','','',''); -insert into tt values (8,0,'','','',''); -insert into tt values (9,0,'','','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='7KE3LHTP5IY9' where id=1; -update noar ti set v0='7KE3LHTP5IY9' where id=1; -update noar tt set b0='21I8J2CB' where id=1; -update noar ti set b0='21I8J2CB' where id=1; -update noar tt set v0='APIXTPBM3718M8KQ72ZQZR4TX4' where id=1; -update noar ti set v0='APIXTPBM3718M8KQ72ZQZR4TX4' where id=1; -update noar tt set b1='XIKAH6SSWNAE7JXLOQ3JZV' where id=1; -update noar ti set b1='XIKAH6SSWNAE7JXLOQ3JZV' where id=1; -update noar tt set v0='V7QJGK07FNLEN2E1VL5A9YL' where id=1; -update noar ti set v0='V7QJGK07FNLEN2E1VL5A9YL' where id=1; -update noar tt set b2='GVVDX3X2ZLO6828Q' where id=1; -update noar ti set b2='GVVDX3X2ZLO6828Q' where id=1; -update noar tt set v0='1XZV8X0OUWP9OILZELIHLFKI6B551V' where id=2; -update noar ti set v0='1XZV8X0OUWP9OILZELIHLFKI6B551V' where id=2; -update noar tt set b0='04B9BCVC6UF' where id=2; -update noar ti set b0='04B9BCVC6UF' where id=2; -update noar tt set v0='XACGUK6JZ39S' where id=2; -update noar ti set v0='XACGUK6JZ39S' where id=2; -update noar tt set b1='5TDCAD12HYZ1KK4RZOL37QHHU4F' where id=2; -update noar ti set b1='5TDCAD12HYZ1KK4RZOL37QHHU4F' where id=2; -update noar tt set v0='817G1ZPRB1P9' where id=2; -update noar ti set v0='817G1ZPRB1P9' where id=2; -update noar tt set b2='7G7IQBSRB' where id=2; -update noar ti set b2='7G7IQBSRB' where id=2; -update noar tt set v0='RIKSRC' where id=3; -update noar ti set v0='RIKSRC' where id=3; -update noar tt set b0='ERYPUE9L9E03PG538PHCV5O4HT99I' where id=3; -update noar ti set b0='ERYPUE9L9E03PG538PHCV5O4HT99I' where id=3; -update noar tt set v0='NMOX7V4L' where id=3; -update noar ti set v0='NMOX7V4L' where id=3; -update noar tt set b1='SFI314YVRWT5EC8LFZOBM8Q36L93I' where id=3; -update noar ti set b1='SFI314YVRWT5EC8LFZOBM8Q36L93I' where id=3; -update noar tt set v0='2' where id=3; -update noar ti set v0='2' where id=3; -update noar tt set b2='UC78XHGAYM59XXY2G5GFTQSB46' where id=3; -update noar ti set b2='UC78XHGAYM59XXY2G5GFTQSB46' where id=3; -update noar tt set v0='0E5LWC0QCM' where id=4; -update noar ti set v0='0E5LWC0QCM' where id=4; -update noar tt set b0='P836SEON6ZCG0877253UU28VRT' where id=4; -update noar ti set b0='P836SEON6ZCG0877253UU28VRT' where id=4; -update noar tt set v0='ARP9ZZDBVM1JWICL' where id=4; -update noar ti set v0='ARP9ZZDBVM1JWICL' where id=4; -update noar tt set b1='SU9JTW21GLI' where id=4; -update noar ti set b1='SU9JTW21GLI' where id=4; -update noar tt set v0='BK4CRYAFI7YY1BKAWKR' where id=4; -update noar ti set v0='BK4CRYAFI7YY1BKAWKR' where id=4; -update noar tt set b2='Y9I49WR8XO6XH0OIG6VEOJVOOIBVRQE' where id=4; -update noar ti set b2='Y9I49WR8XO6XH0OIG6VEOJVOOIBVRQE' where id=4; -update noar tt set v0='5BUOI381SO8' where id=5; -update noar ti set v0='5BUOI381SO8' where id=5; -update noar tt set b0='31O58AJ2GTUFR' where id=5; -update noar ti set b0='31O58AJ2GTUFR' where id=5; -update noar tt set v0='IOI2X2W2IQ1G4LDKH7WL' where id=5; -update noar ti set v0='IOI2X2W2IQ1G4LDKH7WL' where id=5; -update noar tt set b1='9S34' where id=5; -update noar ti set b1='9S34' where id=5; -update noar tt set v0='W058N7ZIR8F72K0H9J' where id=5; -update noar ti set v0='W058N7ZIR8F72K0H9J' where id=5; -update noar tt set b2='WLLLPR99ZUFVFA6XU' where id=5; -update noar ti set b2='WLLLPR99ZUFVFA6XU' where id=5; -update noar tt set v0='DBN29FX4B9RMM9OW6EPSDEUMWPL71Y' where id=6; -update noar ti set v0='DBN29FX4B9RMM9OW6EPSDEUMWPL71Y' where id=6; -update noar tt set b0='B547NZRK7B47GNWAPCWRLFRIC7SSRW' where id=6; -update noar ti set b0='B547NZRK7B47GNWAPCWRLFRIC7SSRW' where id=6; -update noar tt set v0='8K4B0I7FVMXWLSYJVBPNA' where id=6; -update noar ti set v0='8K4B0I7FVMXWLSYJVBPNA' where id=6; -update noar tt set b1='2C8DYVNWBTJ5QY3YMOM2WINC' where id=6; -update noar ti set b1='2C8DYVNWBTJ5QY3YMOM2WINC' where id=6; -update noar tt set v0='7VH7LLE4VFMXRZWGGAT99QE534GI57' where id=6; -update noar ti set v0='7VH7LLE4VFMXRZWGGAT99QE534GI57' where id=6; -update noar tt set b2='FCVFYSR' where id=6; -update noar ti set b2='FCVFYSR' where id=6; -update noar tt set v0='I' where id=7; -update noar ti set v0='I' where id=7; -update noar tt set b0='JQ32WTDI8T22UAHTM0W' where id=7; -update noar ti set b0='JQ32WTDI8T22UAHTM0W' where id=7; -update noar tt set v0='NNT16P3VU25BLZHJ2LC67' where id=7; -update noar ti set v0='NNT16P3VU25BLZHJ2LC67' where id=7; -update noar tt set b1='95ZHCB616' where id=7; -update noar ti set b1='95ZHCB616' where id=7; -update noar tt set v0='QYPQTKA0PT52151U552C7RIL0X' where id=7; -update noar ti set v0='QYPQTKA0PT52151U552C7RIL0X' where id=7; -update noar tt set b2='NS78ZGRVCB10FE5YXZCYBBXOJ35G5LB' where id=7; -update noar ti set b2='NS78ZGRVCB10FE5YXZCYBBXOJ35G5LB' where id=7; -update noar tt set v0='DKQ4ROWI42' where id=8; -update noar ti set v0='DKQ4ROWI42' where id=8; -update noar tt set b0='16OZZDQI94RKL1I072N32A' where id=8; -update noar ti set b0='16OZZDQI94RKL1I072N32A' where id=8; -update noar tt set v0='R8NC3U2IGMULREWYQKS6F8N9K7' where id=8; -update noar ti set v0='R8NC3U2IGMULREWYQKS6F8N9K7' where id=8; -update noar tt set b1='LHI3MLYH2LWJBIBVXJC7X6JTURMOXUL' where id=8; -update noar ti set b1='LHI3MLYH2LWJBIBVXJC7X6JTURMOXUL' where id=8; -update noar tt set v0='PEBLZ83Y6MQJ3OA69SBGB2RTXDCTPAXF' where id=8; -update noar ti set v0='PEBLZ83Y6MQJ3OA69SBGB2RTXDCTPAXF' where id=8; -update noar tt set b2='9ZAJYA' where id=8; -update noar ti set b2='9ZAJYA' where id=8; -update noar tt set v0='CGJB4SNM2E5P1JUU2N3CUIE827' where id=9; -update noar ti set v0='CGJB4SNM2E5P1JUU2N3CUIE827' where id=9; -update noar tt set b0='SINX94DOZ3QX308YSXDPO4' where id=9; -update noar ti set b0='SINX94DOZ3QX308YSXDPO4' where id=9; -update noar tt set v0='LR4SUXDK2K6HL' where id=9; -update noar ti set v0='LR4SUXDK2K6HL' where id=9; -update noar tt set b1='9F6Z3M4FV1R79SWU2N4Z' where id=9; -update noar ti set b1='9F6Z3M4FV1R79SWU2N4Z' where id=9; -update noar tt set v0='DA' where id=9; -update noar ti set v0='DA' where id=9; -update noar tt set b2='W5W64F4V2TSZ5MON' where id=9; -update noar ti set b2='W5W64F4V2TSZ5MON' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -f0 int null, -v0 varchar(32) null, -b0 blob null, -b1 mediumblob null, -b2 blob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='ITOG3R3GJXZ8F8X7A9706KE6PP6RI6' where id=1; -update noar ti set v0='ITOG3R3GJXZ8F8X7A9706KE6PP6RI6' where id=1; -update noar tt set b0='1UDVLBTE4BSQODU42ZKHBKXF0L6KFHGO' where id=1; -update noar ti set b0='1UDVLBTE4BSQODU42ZKHBKXF0L6KFHGO' where id=1; -update noar tt set v0='NL54S1X9CBX12MLSOG4P9B5' where id=1; -update noar ti set v0='NL54S1X9CBX12MLSOG4P9B5' where id=1; -update noar tt set b1='8U05N' where id=1; -update noar ti set b1='8U05N' where id=1; -update noar tt set v0='YB6F96FWM1MB6E8YJPRVG6' where id=1; -update noar ti set v0='YB6F96FWM1MB6E8YJPRVG6' where id=1; -update noar tt set b2='Z3WLIR' where id=1; -update noar ti set b2='Z3WLIR' where id=1; -update noar tt set v0='T94CJK2G2GHLXFLL' where id=2; -update noar ti set v0='T94CJK2G2GHLXFLL' where id=2; -update noar tt set b0='Q7KFYALKLHPJXO' where id=2; -update noar ti set b0='Q7KFYALKLHPJXO' where id=2; -update noar tt set v0='58INGAY6W' where id=2; -update noar ti set v0='58INGAY6W' where id=2; -update noar tt set b1='S' where id=2; -update noar ti set b1='S' where id=2; -update noar tt set v0='QRNDPMADAAAJKWHAL2CVQ9MS' where id=2; -update noar ti set v0='QRNDPMADAAAJKWHAL2CVQ9MS' where id=2; -update noar tt set b2='0N2TXCY81M41S' where id=2; -update noar ti set b2='0N2TXCY81M41S' where id=2; -update noar tt set v0='S8FL4WPHM86RI1R4K' where id=3; -update noar ti set v0='S8FL4WPHM86RI1R4K' where id=3; -update noar tt set b0='MG2FV' where id=3; -update noar ti set b0='MG2FV' where id=3; -update noar tt set v0='EJKUC8DHX4PI' where id=3; -update noar ti set v0='EJKUC8DHX4PI' where id=3; -update noar tt set b1='FEGUSYFOI5CTMZMVVYAWE' where id=3; -update noar ti set b1='FEGUSYFOI5CTMZMVVYAWE' where id=3; -update noar tt set v0='KCH8UXZI1R8XPS8509D3X5JQ' where id=3; -update noar ti set v0='KCH8UXZI1R8XPS8509D3X5JQ' where id=3; -update noar tt set b2='9672KLS2' where id=3; -update noar ti set b2='9672KLS2' where id=3; -update noar tt set v0='D2HB7TL852QVJR0' where id=4; -update noar ti set v0='D2HB7TL852QVJR0' where id=4; -update noar tt set b0='BDQ6MIROG1R1PKP8EMQIETZB' where id=4; -update noar ti set b0='BDQ6MIROG1R1PKP8EMQIETZB' where id=4; -update noar tt set v0='DJDM' where id=4; -update noar ti set v0='DJDM' where id=4; -update noar tt set b1='K' where id=4; -update noar ti set b1='K' where id=4; -update noar tt set v0='PQ0W0KDBR9AQ09F' where id=4; -update noar ti set v0='PQ0W0KDBR9AQ09F' where id=4; -update noar tt set b2='69XW7K4HJG0AWKEJ' where id=4; -update noar ti set b2='69XW7K4HJG0AWKEJ' where id=4; -update noar tt set v0='QR15ZOIDRJTJDL6V' where id=5; -update noar ti set v0='QR15ZOIDRJTJDL6V' where id=5; -update noar tt set b0='O45HSTJ8QWWBUMYDVZTNLV9T2EYMV' where id=5; -update noar ti set b0='O45HSTJ8QWWBUMYDVZTNLV9T2EYMV' where id=5; -update noar tt set v0='SNPC1FHWOH0KHXXVJ92' where id=5; -update noar ti set v0='SNPC1FHWOH0KHXXVJ92' where id=5; -update noar tt set b1='C213DZQCL9IOXOB4SH7XYVG' where id=5; -update noar ti set b1='C213DZQCL9IOXOB4SH7XYVG' where id=5; -update noar tt set v0='WO6WWH28S6LPS96Y22BY' where id=5; -update noar ti set v0='WO6WWH28S6LPS96Y22BY' where id=5; -update noar tt set b2='UVMBWD5WY0' where id=5; -update noar ti set b2='UVMBWD5WY0' where id=5; -update noar tt set v0='W1AHLWPMFAS' where id=6; -update noar ti set v0='W1AHLWPMFAS' where id=6; -update noar tt set b0='0IZTDWZMH1C1BU' where id=6; -update noar ti set b0='0IZTDWZMH1C1BU' where id=6; -update noar tt set v0='YSBSYJAF' where id=6; -update noar ti set v0='YSBSYJAF' where id=6; -update noar tt set b1='2' where id=6; -update noar ti set b1='2' where id=6; -update noar tt set v0='XASLZDRI' where id=6; -update noar ti set v0='XASLZDRI' where id=6; -update noar tt set b2='BG' where id=6; -update noar ti set b2='BG' where id=6; -update noar tt set v0='1KIX3X5DS' where id=7; -update noar ti set v0='1KIX3X5DS' where id=7; -update noar tt set b0='BOIH' where id=7; -update noar ti set b0='BOIH' where id=7; -update noar tt set v0='VK' where id=7; -update noar ti set v0='VK' where id=7; -update noar tt set b1='17U86DE' where id=7; -update noar ti set b1='17U86DE' where id=7; -update noar tt set v0='OYS54B7AMPCSDG19O' where id=7; -update noar ti set v0='OYS54B7AMPCSDG19O' where id=7; -update noar tt set b2='5I8HTVOCNAO6XAO8K1JLO84AKMWIB9W5' where id=7; -update noar ti set b2='5I8HTVOCNAO6XAO8K1JLO84AKMWIB9W5' where id=7; -update noar tt set v0='DIYL5GB5FG530' where id=8; -update noar ti set v0='DIYL5GB5FG530' where id=8; -update noar tt set b0='78BMSMAW3UWGE4OF3KS8C2Y740' where id=8; -update noar ti set b0='78BMSMAW3UWGE4OF3KS8C2Y740' where id=8; -update noar tt set v0='KEBWB7FHP2PSEHOO5LHIS' where id=8; -update noar ti set v0='KEBWB7FHP2PSEHOO5LHIS' where id=8; -update noar tt set b1='OCI7ZNYO4G0WT5XXFFWEJKCX' where id=8; -update noar ti set b1='OCI7ZNYO4G0WT5XXFFWEJKCX' where id=8; -update noar tt set v0='X' where id=8; -update noar ti set v0='X' where id=8; -update noar tt set b2='JTWRO3Y52IO' where id=8; -update noar ti set b2='JTWRO3Y52IO' where id=8; -update noar tt set v0='2GTHJS3I3FT610VCWU929' where id=9; -update noar ti set v0='2GTHJS3I3FT610VCWU929' where id=9; -update noar tt set b0='HIC9EZ' where id=9; -update noar ti set b0='HIC9EZ' where id=9; -update noar tt set v0='02M2R965' where id=9; -update noar ti set v0='02M2R965' where id=9; -update noar tt set b1='2OBNUP6QP5CRHZ13F60B05YER4M9' where id=9; -update noar ti set b1='2OBNUP6QP5CRHZ13F60B05YER4M9' where id=9; -update noar tt set v0='N1XNJEB1EPLORB8' where id=9; -update noar ti set v0='N1XNJEB1EPLORB8' where id=9; -update noar tt set b2='CODJ3KO7G94' where id=9; -update noar ti set b2='CODJ3KO7G94' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -f0 int null, -v0 varchar(256) null, -b0 blob null, -b1 mediumblob null, -b2 blob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='59U' where id=1; -update noar ti set v0='59U' where id=1; -update noar tt set b0='OVOSKGHWA0W' where id=1; -update noar ti set b0='OVOSKGHWA0W' where id=1; -update noar tt set v0='6AW' where id=1; -update noar ti set v0='6AW' where id=1; -update noar tt set b1='CPSHR5QXFDQGR63' where id=1; -update noar ti set b1='CPSHR5QXFDQGR63' where id=1; -update noar tt set v0='Z' where id=1; -update noar ti set v0='Z' where id=1; -update noar tt set b2='Y6OPCJCGB9KYZ1XQR9AB323NE8R4Y' where id=1; -update noar ti set b2='Y6OPCJCGB9KYZ1XQR9AB323NE8R4Y' where id=1; -update noar tt set v0='9' where id=2; -update noar ti set v0='9' where id=2; -update noar tt set b0='T6LJ1P99EHE5QCYYF9WLOWC1O' where id=2; -update noar ti set b0='T6LJ1P99EHE5QCYYF9WLOWC1O' where id=2; -update noar tt set v0='PUN2GUFBEJFWKG58SZ0IBKUVVN42HD' where id=2; -update noar ti set v0='PUN2GUFBEJFWKG58SZ0IBKUVVN42HD' where id=2; -update noar tt set b1='VADBHP' where id=2; -update noar ti set b1='VADBHP' where id=2; -update noar tt set v0='LSXUG781WLGC7S2BQ99U3PEIRRGBA' where id=2; -update noar ti set v0='LSXUG781WLGC7S2BQ99U3PEIRRGBA' where id=2; -update noar tt set b2='BKOX26PEZW0VUBW4GZB' where id=2; -update noar ti set b2='BKOX26PEZW0VUBW4GZB' where id=2; -update noar tt set v0='RSQ1CT699EQ4QCV' where id=3; -update noar ti set v0='RSQ1CT699EQ4QCV' where id=3; -update noar tt set b0='8SGM6RHWQ0ZKUQL3145Q2QUI3' where id=3; -update noar ti set b0='8SGM6RHWQ0ZKUQL3145Q2QUI3' where id=3; -update noar tt set v0='A7BKUNKLZMN5RP0VN2V5HEHHB5TX6E28' where id=3; -update noar ti set v0='A7BKUNKLZMN5RP0VN2V5HEHHB5TX6E28' where id=3; -update noar tt set b1='4G61POD3IA3WY3HZDYXU01XFJTT4' where id=3; -update noar ti set b1='4G61POD3IA3WY3HZDYXU01XFJTT4' where id=3; -update noar tt set v0='HJMS65VUXQA617KERLP4Z' where id=3; -update noar ti set v0='HJMS65VUXQA617KERLP4Z' where id=3; -update noar tt set b2='PXDCNY811KVX3A8X' where id=3; -update noar ti set b2='PXDCNY811KVX3A8X' where id=3; -update noar tt set v0='ET9WOOJ72IJWE6G2L4OPOBNW3BL884S' where id=4; -update noar ti set v0='ET9WOOJ72IJWE6G2L4OPOBNW3BL884S' where id=4; -update noar tt set b0='E5U73MKDE0Z' where id=4; -update noar ti set b0='E5U73MKDE0Z' where id=4; -update noar tt set v0='6YXLPCT4LCFXRUHH' where id=4; -update noar ti set v0='6YXLPCT4LCFXRUHH' where id=4; -update noar tt set b1='Z1I9HJTI' where id=4; -update noar ti set b1='Z1I9HJTI' where id=4; -update noar tt set v0='OA2CVH35HBKFMYIE5YIIGV375V5' where id=4; -update noar ti set v0='OA2CVH35HBKFMYIE5YIIGV375V5' where id=4; -update noar tt set b2='QWWTS6AMLM8S8DJ38YNYHFAHHO' where id=4; -update noar ti set b2='QWWTS6AMLM8S8DJ38YNYHFAHHO' where id=4; -update noar tt set v0='M886E0A0IW' where id=5; -update noar ti set v0='M886E0A0IW' where id=5; -update noar tt set b0='D4NWLPMWF4TZSS9X' where id=5; -update noar ti set b0='D4NWLPMWF4TZSS9X' where id=5; -update noar tt set v0='NI3PFYM1' where id=5; -update noar ti set v0='NI3PFYM1' where id=5; -update noar tt set b1='Y1TL9GGE01FKO43' where id=5; -update noar ti set b1='Y1TL9GGE01FKO43' where id=5; -update noar tt set v0='N' where id=5; -update noar ti set v0='N' where id=5; -update noar tt set b2='XM9' where id=5; -update noar ti set b2='XM9' where id=5; -update noar tt set v0='ASACW0Z0UVVUH6CQJ2ZS3F9ORVG0Z' where id=6; -update noar ti set v0='ASACW0Z0UVVUH6CQJ2ZS3F9ORVG0Z' where id=6; -update noar tt set b0='23HG3VOO99BEW2S3C65S8WTRO7FV3AGT' where id=6; -update noar ti set b0='23HG3VOO99BEW2S3C65S8WTRO7FV3AGT' where id=6; -update noar tt set v0='P1NUMMGTINZQ1D4M5CO8GU' where id=6; -update noar ti set v0='P1NUMMGTINZQ1D4M5CO8GU' where id=6; -update noar tt set b1='C0ZE64AMXX222F8CMXB7FPC497G4L5' where id=6; -update noar ti set b1='C0ZE64AMXX222F8CMXB7FPC497G4L5' where id=6; -update noar tt set v0='T6EL2' where id=6; -update noar ti set v0='T6EL2' where id=6; -update noar tt set b2='9W8HCI1K71VQ4CJ9HCXZU8H1A' where id=6; -update noar ti set b2='9W8HCI1K71VQ4CJ9HCXZU8H1A' where id=6; -update noar tt set v0='W9LL4NP3MFHBO01MH2VYN5W5PR4P' where id=7; -update noar ti set v0='W9LL4NP3MFHBO01MH2VYN5W5PR4P' where id=7; -update noar tt set b0='OL2YROBHGOVWY' where id=7; -update noar ti set b0='OL2YROBHGOVWY' where id=7; -update noar tt set v0='GQMOZ4H09WV3MJ' where id=7; -update noar ti set v0='GQMOZ4H09WV3MJ' where id=7; -update noar tt set b1='U4PW0K0XRG8A9DOVKBR0T34RP1QWTHL' where id=7; -update noar ti set b1='U4PW0K0XRG8A9DOVKBR0T34RP1QWTHL' where id=7; -update noar tt set v0='LSYG2AW8' where id=7; -update noar ti set v0='LSYG2AW8' where id=7; -update noar tt set b2='J64ILDEI186574IIPWSN' where id=7; -update noar ti set b2='J64ILDEI186574IIPWSN' where id=7; -update noar tt set v0='UP995JT0UA760VU8CVU69YMQUA3RK85' where id=8; -update noar ti set v0='UP995JT0UA760VU8CVU69YMQUA3RK85' where id=8; -update noar tt set b0='00ZL4MB8LPEKI47IQCRY4PZ0J' where id=8; -update noar ti set b0='00ZL4MB8LPEKI47IQCRY4PZ0J' where id=8; -update noar tt set v0='90YRASU6UNNBG43FYHLKJJY' where id=8; -update noar ti set v0='90YRASU6UNNBG43FYHLKJJY' where id=8; -update noar tt set b1='55GLKAGYF1Y9UCS4' where id=8; -update noar ti set b1='55GLKAGYF1Y9UCS4' where id=8; -update noar tt set v0='K80' where id=8; -update noar ti set v0='K80' where id=8; -update noar tt set b2='C2BFRWRRAUVRW7RD' where id=8; -update noar ti set b2='C2BFRWRRAUVRW7RD' where id=8; -update noar tt set v0='5U3ZZ10VJ2D3GDU0DQP2Q7X5BHBE' where id=9; -update noar ti set v0='5U3ZZ10VJ2D3GDU0DQP2Q7X5BHBE' where id=9; -update noar tt set b0='LT2AZ2VG91XJLFJT2YJDUQ00I2CZ5W5' where id=9; -update noar ti set b0='LT2AZ2VG91XJLFJT2YJDUQ00I2CZ5W5' where id=9; -update noar tt set v0='4F62RVEULDMZH7D80L18AZ54BRL' where id=9; -update noar ti set v0='4F62RVEULDMZH7D80L18AZ54BRL' where id=9; -update noar tt set b1='9906C' where id=9; -update noar ti set b1='9906C' where id=9; -update noar tt set v0='AP1K8SG3P1315FSIE1SHQJ7' where id=9; -update noar ti set v0='AP1K8SG3P1315FSIE1SHQJ7' where id=9; -update noar tt set b2='LRTG' where id=9; -update noar ti set b2='LRTG' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -f0 int not null, -v0 varchar(32) not null, -b0 blob not null, -b1 mediumblob not null, -b2 blob not null -) engine=tokudb; -insert into tt values (1,0,'','','',''); -insert into tt values (2,0,'','','',''); -insert into tt values (3,0,'','','',''); -insert into tt values (4,0,'','','',''); -insert into tt values (5,0,'','','',''); -insert into tt values (6,0,'','','',''); -insert into tt values (7,0,'','','',''); -insert into tt values (8,0,'','','',''); -insert into tt values (9,0,'','','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='MY536V' where id=1; -update noar ti set v0='MY536V' where id=1; -update noar tt set b0='XQAOXVVXMXTHF0QBYFLLQMQBN52DJMVJ' where id=1; -update noar ti set b0='XQAOXVVXMXTHF0QBYFLLQMQBN52DJMVJ' where id=1; -update noar tt set v0='QDD84ZQMV3YO4UH5UJ0LOQNL' where id=1; -update noar ti set v0='QDD84ZQMV3YO4UH5UJ0LOQNL' where id=1; -update noar tt set b1='CN7UKL2EOKGVZ3' where id=1; -update noar ti set b1='CN7UKL2EOKGVZ3' where id=1; -update noar tt set v0='NRMTOG6H4WZBHK' where id=1; -update noar ti set v0='NRMTOG6H4WZBHK' where id=1; -update noar tt set b2='K9518GHCZKVKVHZXY16KGROOO5D' where id=1; -update noar ti set b2='K9518GHCZKVKVHZXY16KGROOO5D' where id=1; -update noar tt set v0='TQ9I4CV2BO7' where id=2; -update noar ti set v0='TQ9I4CV2BO7' where id=2; -update noar tt set b0='SEX6EIVX4C9F0' where id=2; -update noar ti set b0='SEX6EIVX4C9F0' where id=2; -update noar tt set v0='5T06JQ' where id=2; -update noar ti set v0='5T06JQ' where id=2; -update noar tt set b1='Z11OZ' where id=2; -update noar ti set b1='Z11OZ' where id=2; -update noar tt set v0='IJ805IE7TSYAL' where id=2; -update noar ti set v0='IJ805IE7TSYAL' where id=2; -update noar tt set b2='1O6TFXDUBS7YS385N96DCFWQ' where id=2; -update noar ti set b2='1O6TFXDUBS7YS385N96DCFWQ' where id=2; -update noar tt set v0='UCQK3OU3AF5IIEPXBCZGLA62YFOJ' where id=3; -update noar ti set v0='UCQK3OU3AF5IIEPXBCZGLA62YFOJ' where id=3; -update noar tt set b0='H9BW62UMJXU3NO1DSPYBM8X68' where id=3; -update noar ti set b0='H9BW62UMJXU3NO1DSPYBM8X68' where id=3; -update noar tt set v0='QHPRE2OQGPDQSSQLHE8Z34SWKIH9G' where id=3; -update noar ti set v0='QHPRE2OQGPDQSSQLHE8Z34SWKIH9G' where id=3; -update noar tt set b1='LB0RO' where id=3; -update noar ti set b1='LB0RO' where id=3; -update noar tt set v0='TW44BF90VR0WCBE1J0JOXKH2W9E' where id=3; -update noar ti set v0='TW44BF90VR0WCBE1J0JOXKH2W9E' where id=3; -update noar tt set b2='WXGUET' where id=3; -update noar ti set b2='WXGUET' where id=3; -update noar tt set v0='XASQQH6' where id=4; -update noar ti set v0='XASQQH6' where id=4; -update noar tt set b0='Y' where id=4; -update noar ti set b0='Y' where id=4; -update noar tt set v0='KYTV4S9YGW7IH0YSE5MPHJF72' where id=4; -update noar ti set v0='KYTV4S9YGW7IH0YSE5MPHJF72' where id=4; -update noar tt set b1='DOKMBRIXB9MV3EH91C4HG' where id=4; -update noar ti set b1='DOKMBRIXB9MV3EH91C4HG' where id=4; -update noar tt set v0='SPYUWU2ZHQ07FEQMK' where id=4; -update noar ti set v0='SPYUWU2ZHQ07FEQMK' where id=4; -update noar tt set b2='IH5ISXX3VSMBCGYYTILYHOAAMBU' where id=4; -update noar ti set b2='IH5ISXX3VSMBCGYYTILYHOAAMBU' where id=4; -update noar tt set v0='J4' where id=5; -update noar ti set v0='J4' where id=5; -update noar tt set b0='EIX3' where id=5; -update noar ti set b0='EIX3' where id=5; -update noar tt set v0='J2' where id=5; -update noar ti set v0='J2' where id=5; -update noar tt set b1='FG0E1' where id=5; -update noar ti set b1='FG0E1' where id=5; -update noar tt set v0='XTNT961RTWDJ32T0X7' where id=5; -update noar ti set v0='XTNT961RTWDJ32T0X7' where id=5; -update noar tt set b2='VXCTXR7XMSY' where id=5; -update noar ti set b2='VXCTXR7XMSY' where id=5; -update noar tt set v0='HL9AB5FDWTZC0KG8Q54J8BNY0PI7K' where id=6; -update noar ti set v0='HL9AB5FDWTZC0KG8Q54J8BNY0PI7K' where id=6; -update noar tt set b0='0EPNIQOMICMFJBDCVURVLESQUWYEHK9O' where id=6; -update noar ti set b0='0EPNIQOMICMFJBDCVURVLESQUWYEHK9O' where id=6; -update noar tt set v0='HADYSO2P237N8NR821EOX7' where id=6; -update noar ti set v0='HADYSO2P237N8NR821EOX7' where id=6; -update noar tt set b1='AT3PUFU92JYRZSAF9RRX7H365K' where id=6; -update noar ti set b1='AT3PUFU92JYRZSAF9RRX7H365K' where id=6; -update noar tt set v0='3BHHRAI89K17ID4FQO4P2NMF7' where id=6; -update noar ti set v0='3BHHRAI89K17ID4FQO4P2NMF7' where id=6; -update noar tt set b2='SA9P560TS' where id=6; -update noar ti set b2='SA9P560TS' where id=6; -update noar tt set v0='YYDOY5LRUMJYTZW1DTVN0BXZ' where id=7; -update noar ti set v0='YYDOY5LRUMJYTZW1DTVN0BXZ' where id=7; -update noar tt set b0='HFFJ3U' where id=7; -update noar ti set b0='HFFJ3U' where id=7; -update noar tt set v0='BRC5QUDL6NJNKFOWJ4XW9ST5' where id=7; -update noar ti set v0='BRC5QUDL6NJNKFOWJ4XW9ST5' where id=7; -update noar tt set b1='BQXYLD31N617' where id=7; -update noar ti set b1='BQXYLD31N617' where id=7; -update noar tt set v0='V27M4X71O4PMPA46F8REVC553R' where id=7; -update noar ti set v0='V27M4X71O4PMPA46F8REVC553R' where id=7; -update noar tt set b2='2BK' where id=7; -update noar ti set b2='2BK' where id=7; -update noar tt set v0='IX' where id=8; -update noar ti set v0='IX' where id=8; -update noar tt set b0='HNHW' where id=8; -update noar ti set b0='HNHW' where id=8; -update noar tt set v0='9UN8DNWIYR5P7R0' where id=8; -update noar ti set v0='9UN8DNWIYR5P7R0' where id=8; -update noar tt set b1='LYL' where id=8; -update noar ti set b1='LYL' where id=8; -update noar tt set v0='RCVMRAS41NP63HZNGNS1TZOOUMRYG0' where id=8; -update noar ti set v0='RCVMRAS41NP63HZNGNS1TZOOUMRYG0' where id=8; -update noar tt set b2='IIEYS30P0VSFAIII7S8JWV8EIC7FW6' where id=8; -update noar ti set b2='IIEYS30P0VSFAIII7S8JWV8EIC7FW6' where id=8; -update noar tt set v0='NP3MYIX6KYGRVPG0TIH7YX4MXJI59' where id=9; -update noar ti set v0='NP3MYIX6KYGRVPG0TIH7YX4MXJI59' where id=9; -update noar tt set b0='W23EIGBK' where id=9; -update noar ti set b0='W23EIGBK' where id=9; -update noar tt set v0='9M' where id=9; -update noar ti set v0='9M' where id=9; -update noar tt set b1='LFLWK5KQ3NMAFHHO4YDEXSMAXLZJ4ADW' where id=9; -update noar ti set b1='LFLWK5KQ3NMAFHHO4YDEXSMAXLZJ4ADW' where id=9; -update noar tt set v0='OMD4L0EBGB25S86VEKD8A09HFNI6MD' where id=9; -update noar ti set v0='OMD4L0EBGB25S86VEKD8A09HFNI6MD' where id=9; -update noar tt set b2='2TSGHR55W5TB8WBF0HEQEGOHC0DBZO20' where id=9; -update noar ti set b2='2TSGHR55W5TB8WBF0HEQEGOHC0DBZO20' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -f0 int not null, -v0 varchar(256) not null, -b0 blob not null, -b1 mediumblob not null, -b2 blob not null -) engine=tokudb; -insert into tt values (1,0,'','','',''); -insert into tt values (2,0,'','','',''); -insert into tt values (3,0,'','','',''); -insert into tt values (4,0,'','','',''); -insert into tt values (5,0,'','','',''); -insert into tt values (6,0,'','','',''); -insert into tt values (7,0,'','','',''); -insert into tt values (8,0,'','','',''); -insert into tt values (9,0,'','','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='IRV5CW5YBR' where id=1; -update noar ti set v0='IRV5CW5YBR' where id=1; -update noar tt set b0='XVSQJ' where id=1; -update noar ti set b0='XVSQJ' where id=1; -update noar tt set v0='Z1LYOC5JTUF3SPKEL' where id=1; -update noar ti set v0='Z1LYOC5JTUF3SPKEL' where id=1; -update noar tt set b1='EZVPDSJ979XMSMAO' where id=1; -update noar ti set b1='EZVPDSJ979XMSMAO' where id=1; -update noar tt set v0='BN1SJ' where id=1; -update noar ti set v0='BN1SJ' where id=1; -update noar tt set b2='KTC68LPMFS0' where id=1; -update noar ti set b2='KTC68LPMFS0' where id=1; -update noar tt set v0='71P3GWXEQKCD918IIV' where id=2; -update noar ti set v0='71P3GWXEQKCD918IIV' where id=2; -update noar tt set b0='LE9GFFDW0Z4H81352W5E9ISJB3KGKYTP' where id=2; -update noar ti set b0='LE9GFFDW0Z4H81352W5E9ISJB3KGKYTP' where id=2; -update noar tt set v0='Y8NU1CW6KLH6EY7' where id=2; -update noar ti set v0='Y8NU1CW6KLH6EY7' where id=2; -update noar tt set b1='932ZZW83D24GDQS13S' where id=2; -update noar ti set b1='932ZZW83D24GDQS13S' where id=2; -update noar tt set v0='VL675IMIE9LBRG9SJSJ1VSMG' where id=2; -update noar ti set v0='VL675IMIE9LBRG9SJSJ1VSMG' where id=2; -update noar tt set b2='34L9GGYG900581VF' where id=2; -update noar ti set b2='34L9GGYG900581VF' where id=2; -update noar tt set v0='J4946MQM1HZ7453N75BER0867IE4L' where id=3; -update noar ti set v0='J4946MQM1HZ7453N75BER0867IE4L' where id=3; -update noar tt set b0='O8UXHUVTNTD' where id=3; -update noar ti set b0='O8UXHUVTNTD' where id=3; -update noar tt set v0='DOH8' where id=3; -update noar ti set v0='DOH8' where id=3; -update noar tt set b1='KNKTAGHKP2RIN0X7WLE7KO9W' where id=3; -update noar ti set b1='KNKTAGHKP2RIN0X7WLE7KO9W' where id=3; -update noar tt set v0='FZM1JRRQ9B1FZLQBOI149AG' where id=3; -update noar ti set v0='FZM1JRRQ9B1FZLQBOI149AG' where id=3; -update noar tt set b2='4GMCG7OFL2FI9GB1BC1ONAM9' where id=3; -update noar ti set b2='4GMCG7OFL2FI9GB1BC1ONAM9' where id=3; -update noar tt set v0='PC2LW9SMOYE0' where id=4; -update noar ti set v0='PC2LW9SMOYE0' where id=4; -update noar tt set b0='DWID8FBCFAJRIVK6FOIQ2NAI4FI6RQE' where id=4; -update noar ti set b0='DWID8FBCFAJRIVK6FOIQ2NAI4FI6RQE' where id=4; -update noar tt set v0='4FG' where id=4; -update noar ti set v0='4FG' where id=4; -update noar tt set b1='DH3HL4ONMAJX' where id=4; -update noar ti set b1='DH3HL4ONMAJX' where id=4; -update noar tt set v0='WSDZ403' where id=4; -update noar ti set v0='WSDZ403' where id=4; -update noar tt set b2='T43AP9568KY3FQ8G0X36PF5RBIXM1Q' where id=4; -update noar ti set b2='T43AP9568KY3FQ8G0X36PF5RBIXM1Q' where id=4; -update noar tt set v0='P9QRJ5701B4D30VXF9W0WLG5P3OIIO02' where id=5; -update noar ti set v0='P9QRJ5701B4D30VXF9W0WLG5P3OIIO02' where id=5; -update noar tt set b0='OH5GQFHRM8Y7JPSAQQ' where id=5; -update noar ti set b0='OH5GQFHRM8Y7JPSAQQ' where id=5; -update noar tt set v0='F0ZSA5RB44XCL8KW368FKKQL0ZM2' where id=5; -update noar ti set v0='F0ZSA5RB44XCL8KW368FKKQL0ZM2' where id=5; -update noar tt set b1='1MYBRNTIDMYCWK8SELNPX7XJSN0K2T3' where id=5; -update noar ti set b1='1MYBRNTIDMYCWK8SELNPX7XJSN0K2T3' where id=5; -update noar tt set v0='KCLUN9ODJSDJULWYVLEA' where id=5; -update noar ti set v0='KCLUN9ODJSDJULWYVLEA' where id=5; -update noar tt set b2='FSMJM9AFL3QFXGP6YQHIHVMEZ6LI' where id=5; -update noar ti set b2='FSMJM9AFL3QFXGP6YQHIHVMEZ6LI' where id=5; -update noar tt set v0='QMJ3MHMYT9OY4CWYTB8I' where id=6; -update noar ti set v0='QMJ3MHMYT9OY4CWYTB8I' where id=6; -update noar tt set b0='CA1NN9R3EG2BQHPIA' where id=6; -update noar ti set b0='CA1NN9R3EG2BQHPIA' where id=6; -update noar tt set v0='M9CEK4R2IQ5CC6QCC2UP6CBZZK9OSEH' where id=6; -update noar ti set v0='M9CEK4R2IQ5CC6QCC2UP6CBZZK9OSEH' where id=6; -update noar tt set b1='LO61' where id=6; -update noar ti set b1='LO61' where id=6; -update noar tt set v0='VMGKHFCXMOCD0YGYG6RYNF' where id=6; -update noar ti set v0='VMGKHFCXMOCD0YGYG6RYNF' where id=6; -update noar tt set b2='9ZX80L1XM4CAYL0SJJI' where id=6; -update noar ti set b2='9ZX80L1XM4CAYL0SJJI' where id=6; -update noar tt set v0='B9LK2JKCVFZYA' where id=7; -update noar ti set v0='B9LK2JKCVFZYA' where id=7; -update noar tt set b0='ISO8IMFU5PYYHSYQ1LY6MQ6Y' where id=7; -update noar ti set b0='ISO8IMFU5PYYHSYQ1LY6MQ6Y' where id=7; -update noar tt set v0='DOIZXF7D' where id=7; -update noar ti set v0='DOIZXF7D' where id=7; -update noar tt set b1='ZG9X21TM07G9O1YYNAW' where id=7; -update noar ti set b1='ZG9X21TM07G9O1YYNAW' where id=7; -update noar tt set v0='KYR3INXS16NLC99XK7IODNBL' where id=7; -update noar ti set v0='KYR3INXS16NLC99XK7IODNBL' where id=7; -update noar tt set b2='TKOZMA0ZSK7IS1W7DFVZZ72' where id=7; -update noar ti set b2='TKOZMA0ZSK7IS1W7DFVZZ72' where id=7; -update noar tt set v0='NJX' where id=8; -update noar ti set v0='NJX' where id=8; -update noar tt set b0='472' where id=8; -update noar ti set b0='472' where id=8; -update noar tt set v0='401I8DPN0WPVS' where id=8; -update noar ti set v0='401I8DPN0WPVS' where id=8; -update noar tt set b1='1OEM4Z4Q7U4BRQJ56ZX38D6YVE' where id=8; -update noar ti set b1='1OEM4Z4Q7U4BRQJ56ZX38D6YVE' where id=8; -update noar tt set v0='6F6VM1ODPTHEQC861QN2APT3Z4JU0' where id=8; -update noar ti set v0='6F6VM1ODPTHEQC861QN2APT3Z4JU0' where id=8; -update noar tt set b2='BHK220T0ML55B0KVAAVVSTV7EXGYSOY' where id=8; -update noar ti set b2='BHK220T0ML55B0KVAAVVSTV7EXGYSOY' where id=8; -update noar tt set v0='Q97QHWA1Q' where id=9; -update noar ti set v0='Q97QHWA1Q' where id=9; -update noar tt set b0='8LM2W1' where id=9; -update noar ti set b0='8LM2W1' where id=9; -update noar tt set v0='WIZWGFDIWV' where id=9; -update noar ti set v0='WIZWGFDIWV' where id=9; -update noar tt set b1='4LIFZ7YDW17HONV5YLMNQR8T7HI' where id=9; -update noar ti set b1='4LIFZ7YDW17HONV5YLMNQR8T7HI' where id=9; -update noar tt set v0='WCNMCPSQKTHNEAY6UOMLNMJEA63LO' where id=9; -update noar ti set v0='WCNMCPSQKTHNEAY6UOMLNMJEA63LO' where id=9; -update noar tt set b2='9PCXMC44LON4AQTZMWKRXO931BLFTM' where id=9; -update noar ti set b2='9PCXMC44LON4AQTZMWKRXO931BLFTM' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -f0 int null, -v0 varchar(32) null, -b0 blob null, -b1 mediumblob null, -b2 mediumblob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='N5KJMZ1KDS4OJJX71QUYNWYU19HH' where id=1; -update noar ti set v0='N5KJMZ1KDS4OJJX71QUYNWYU19HH' where id=1; -update noar tt set b0='ERIADJNWSBR' where id=1; -update noar ti set b0='ERIADJNWSBR' where id=1; -update noar tt set v0='ORD4TEHMBZD6VWB9ZUPM83' where id=1; -update noar ti set v0='ORD4TEHMBZD6VWB9ZUPM83' where id=1; -update noar tt set b1='CR4QHT2FNSS23' where id=1; -update noar ti set b1='CR4QHT2FNSS23' where id=1; -update noar tt set v0='WP' where id=1; -update noar ti set v0='WP' where id=1; -update noar tt set b2='JCHFLPB1VBB27B' where id=1; -update noar ti set b2='JCHFLPB1VBB27B' where id=1; -update noar tt set v0='A3G' where id=2; -update noar ti set v0='A3G' where id=2; -update noar tt set b0='Z8NQFOH7D6K' where id=2; -update noar ti set b0='Z8NQFOH7D6K' where id=2; -update noar tt set v0='KS72XRPIRXJDEND59O463JY' where id=2; -update noar ti set v0='KS72XRPIRXJDEND59O463JY' where id=2; -update noar tt set b1='KHACXVRCJE5HRB6N5P9ZQ2JTTYHZ8Q9' where id=2; -update noar ti set b1='KHACXVRCJE5HRB6N5P9ZQ2JTTYHZ8Q9' where id=2; -update noar tt set v0='81FGKA05Y7D31P13H' where id=2; -update noar ti set v0='81FGKA05Y7D31P13H' where id=2; -update noar tt set b2='2PZKYZF4MSHAPDPBU3' where id=2; -update noar ti set b2='2PZKYZF4MSHAPDPBU3' where id=2; -update noar tt set v0='F6PA8' where id=3; -update noar ti set v0='F6PA8' where id=3; -update noar tt set b0='GH4J94IV' where id=3; -update noar ti set b0='GH4J94IV' where id=3; -update noar tt set v0='EDU3VNBQSG9CRMDM8S0A1WQYMYJCWII' where id=3; -update noar ti set v0='EDU3VNBQSG9CRMDM8S0A1WQYMYJCWII' where id=3; -update noar tt set b1='1I6S9B' where id=3; -update noar ti set b1='1I6S9B' where id=3; -update noar tt set v0='7Y6NRB96JB97' where id=3; -update noar ti set v0='7Y6NRB96JB97' where id=3; -update noar tt set b2='B33LA4YBDIJ7MOACCDW1Z' where id=3; -update noar ti set b2='B33LA4YBDIJ7MOACCDW1Z' where id=3; -update noar tt set v0='5SL2JK24Z' where id=4; -update noar ti set v0='5SL2JK24Z' where id=4; -update noar tt set b0='JSNCEDBH3P0FO3K4LF1PWG07HR33O' where id=4; -update noar ti set b0='JSNCEDBH3P0FO3K4LF1PWG07HR33O' where id=4; -update noar tt set v0='FTGZ620E59NGNVA1' where id=4; -update noar ti set v0='FTGZ620E59NGNVA1' where id=4; -update noar tt set b1='8E5JR8KU95HZC73IMJSP09HQZ' where id=4; -update noar ti set b1='8E5JR8KU95HZC73IMJSP09HQZ' where id=4; -update noar tt set v0='NAOODGFOOQ8IPIPSDEF2GPGN11U' where id=4; -update noar ti set v0='NAOODGFOOQ8IPIPSDEF2GPGN11U' where id=4; -update noar tt set b2='RY8' where id=4; -update noar ti set b2='RY8' where id=4; -update noar tt set v0='AZ1VPEZU3Z2T5JQIX4Q9DVGFBZEQI21N' where id=5; -update noar ti set v0='AZ1VPEZU3Z2T5JQIX4Q9DVGFBZEQI21N' where id=5; -update noar tt set b0='2BWV68W' where id=5; -update noar ti set b0='2BWV68W' where id=5; -update noar tt set v0='DBC76KL8TMHZV1GVPQ' where id=5; -update noar ti set v0='DBC76KL8TMHZV1GVPQ' where id=5; -update noar tt set b1='HGBHO0BDZ68C88XA03MPAQY9X' where id=5; -update noar ti set b1='HGBHO0BDZ68C88XA03MPAQY9X' where id=5; -update noar tt set v0='R8DBA8L' where id=5; -update noar ti set v0='R8DBA8L' where id=5; -update noar tt set b2='31A4I' where id=5; -update noar ti set b2='31A4I' where id=5; -update noar tt set v0='WA636V15B9GDCI1ITU2G7' where id=6; -update noar ti set v0='WA636V15B9GDCI1ITU2G7' where id=6; -update noar tt set b0='T0F9Y2OK7LSGSJSQWAR' where id=6; -update noar ti set b0='T0F9Y2OK7LSGSJSQWAR' where id=6; -update noar tt set v0='DL9C99TBK48600UA' where id=6; -update noar ti set v0='DL9C99TBK48600UA' where id=6; -update noar tt set b1='VSPXKBDP4LRLNWBX' where id=6; -update noar ti set b1='VSPXKBDP4LRLNWBX' where id=6; -update noar tt set v0='XC6BG2Z82OR1Q2C71CBVNXVIXTUVGDH' where id=6; -update noar ti set v0='XC6BG2Z82OR1Q2C71CBVNXVIXTUVGDH' where id=6; -update noar tt set b2='99PV51V6SRK8LPLFZ4S5V88RE2SC' where id=6; -update noar ti set b2='99PV51V6SRK8LPLFZ4S5V88RE2SC' where id=6; -update noar tt set v0='MJJH0NSVS8ZAN3MB3MG9S8P5KZOMQ' where id=7; -update noar ti set v0='MJJH0NSVS8ZAN3MB3MG9S8P5KZOMQ' where id=7; -update noar tt set b0='HO0CC' where id=7; -update noar ti set b0='HO0CC' where id=7; -update noar tt set v0='5611U' where id=7; -update noar ti set v0='5611U' where id=7; -update noar tt set b1='O' where id=7; -update noar ti set b1='O' where id=7; -update noar tt set v0='17YU2' where id=7; -update noar ti set v0='17YU2' where id=7; -update noar tt set b2='WA4' where id=7; -update noar ti set b2='WA4' where id=7; -update noar tt set v0='402ZOE20KD0GOYHOMNQ' where id=8; -update noar ti set v0='402ZOE20KD0GOYHOMNQ' where id=8; -update noar tt set b0='AKQTYVEO3O51208L74FY1GEMGK6QRA' where id=8; -update noar ti set b0='AKQTYVEO3O51208L74FY1GEMGK6QRA' where id=8; -update noar tt set v0='EHJAQJ' where id=8; -update noar ti set v0='EHJAQJ' where id=8; -update noar tt set b1='WSN7JX9S5SNAX05' where id=8; -update noar ti set b1='WSN7JX9S5SNAX05' where id=8; -update noar tt set v0='KD3C1TUP1481SXP1JNR' where id=8; -update noar ti set v0='KD3C1TUP1481SXP1JNR' where id=8; -update noar tt set b2='5TK1C32O1A' where id=8; -update noar ti set b2='5TK1C32O1A' where id=8; -update noar tt set v0='BQOUTX5LM5OU6JBBMNDFTGS7XY6ZHVEV' where id=9; -update noar ti set v0='BQOUTX5LM5OU6JBBMNDFTGS7XY6ZHVEV' where id=9; -update noar tt set b0='SH' where id=9; -update noar ti set b0='SH' where id=9; -update noar tt set v0='D2V98LQTQD0DWC4C' where id=9; -update noar ti set v0='D2V98LQTQD0DWC4C' where id=9; -update noar tt set b1='FSZ3HRXXNZQ6XY1U4LW7DGKM' where id=9; -update noar ti set b1='FSZ3HRXXNZQ6XY1U4LW7DGKM' where id=9; -update noar tt set v0='8NM652E0VAO4H6FV23IHDKTWY' where id=9; -update noar ti set v0='8NM652E0VAO4H6FV23IHDKTWY' where id=9; -update noar tt set b2='3OC5BFRUE0W1EG0U0N5BCNHG49102N63' where id=9; -update noar ti set b2='3OC5BFRUE0W1EG0U0N5BCNHG49102N63' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -f0 int null, -v0 varchar(256) null, -b0 blob null, -b1 mediumblob null, -b2 mediumblob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='SW2PV7VHXKWNJ23MNV5IX4YGGDY86Z' where id=1; -update noar ti set v0='SW2PV7VHXKWNJ23MNV5IX4YGGDY86Z' where id=1; -update noar tt set b0='F8H2' where id=1; -update noar ti set b0='F8H2' where id=1; -update noar tt set v0='17H7X' where id=1; -update noar ti set v0='17H7X' where id=1; -update noar tt set b1='EZOUM34' where id=1; -update noar ti set b1='EZOUM34' where id=1; -update noar tt set v0='AC10Y6VLZ6JN70CRMC1HY2ZHTGB491' where id=1; -update noar ti set v0='AC10Y6VLZ6JN70CRMC1HY2ZHTGB491' where id=1; -update noar tt set b2='NHAXZIMNOJ0U0SNF' where id=1; -update noar ti set b2='NHAXZIMNOJ0U0SNF' where id=1; -update noar tt set v0='B0KZHQGF6CYR03RY1' where id=2; -update noar ti set v0='B0KZHQGF6CYR03RY1' where id=2; -update noar tt set b0='BL797J4RQ9452NIS1LF' where id=2; -update noar ti set b0='BL797J4RQ9452NIS1LF' where id=2; -update noar tt set v0='YPBYOXK63Y9UG1ITKTRLIJL' where id=2; -update noar ti set v0='YPBYOXK63Y9UG1ITKTRLIJL' where id=2; -update noar tt set b1='4OWQBA84VV' where id=2; -update noar ti set b1='4OWQBA84VV' where id=2; -update noar tt set v0='M3QOBSZY9B9GOKJ' where id=2; -update noar ti set v0='M3QOBSZY9B9GOKJ' where id=2; -update noar tt set b2='LE9462VD99GUBWG03177F' where id=2; -update noar ti set b2='LE9462VD99GUBWG03177F' where id=2; -update noar tt set v0='WIJC872X7EQJY9B7502OKDI' where id=3; -update noar ti set v0='WIJC872X7EQJY9B7502OKDI' where id=3; -update noar tt set b0='6CHA0I7H36CQIQFBGEOR9M76' where id=3; -update noar ti set b0='6CHA0I7H36CQIQFBGEOR9M76' where id=3; -update noar tt set v0='RV94JD6BIAGURU9HE1KO5HY9' where id=3; -update noar ti set v0='RV94JD6BIAGURU9HE1KO5HY9' where id=3; -update noar tt set b1='E13OL5JNLHVRLYXT7V28ZZNHMSJ7' where id=3; -update noar ti set b1='E13OL5JNLHVRLYXT7V28ZZNHMSJ7' where id=3; -update noar tt set v0='DEDP674JVTGL' where id=3; -update noar ti set v0='DEDP674JVTGL' where id=3; -update noar tt set b2='OWXM3KD' where id=3; -update noar ti set b2='OWXM3KD' where id=3; -update noar tt set v0='IHH2ZNP2XT' where id=4; -update noar ti set v0='IHH2ZNP2XT' where id=4; -update noar tt set b0='BQMMFEFAS8AQ' where id=4; -update noar ti set b0='BQMMFEFAS8AQ' where id=4; -update noar tt set v0='0UB1YYL5SJALUI' where id=4; -update noar ti set v0='0UB1YYL5SJALUI' where id=4; -update noar tt set b1='ZNL7NF3V1BX10YGQ3ADPIDE2I4A3O' where id=4; -update noar ti set b1='ZNL7NF3V1BX10YGQ3ADPIDE2I4A3O' where id=4; -update noar tt set v0='WYRXJ25ESZOQ5CUDS1LX' where id=4; -update noar ti set v0='WYRXJ25ESZOQ5CUDS1LX' where id=4; -update noar tt set b2='5ID2J1FTROF2BBYHO9P0M34' where id=4; -update noar ti set b2='5ID2J1FTROF2BBYHO9P0M34' where id=4; -update noar tt set v0='B' where id=5; -update noar ti set v0='B' where id=5; -update noar tt set b0='7V08' where id=5; -update noar ti set b0='7V08' where id=5; -update noar tt set v0='IUU93QFVD2V3IFG' where id=5; -update noar ti set v0='IUU93QFVD2V3IFG' where id=5; -update noar tt set b1='PI4MJIM991QXVXGHXYXNQTTPXSUGUMH' where id=5; -update noar ti set b1='PI4MJIM991QXVXGHXYXNQTTPXSUGUMH' where id=5; -update noar tt set v0='QJUMN7YWH8MRUHNQ39K7U7G0G7ZS' where id=5; -update noar ti set v0='QJUMN7YWH8MRUHNQ39K7U7G0G7ZS' where id=5; -update noar tt set b2='5CBIQ1H9XNHU' where id=5; -update noar ti set b2='5CBIQ1H9XNHU' where id=5; -update noar tt set v0='8XSK4CG' where id=6; -update noar ti set v0='8XSK4CG' where id=6; -update noar tt set b0='QJRXEQPBIAJEFCEAIVFK63DZCIB6Q' where id=6; -update noar ti set b0='QJRXEQPBIAJEFCEAIVFK63DZCIB6Q' where id=6; -update noar tt set v0='4SI2HE185PFQ9F832CUSS064BVFIH9VN' where id=6; -update noar ti set v0='4SI2HE185PFQ9F832CUSS064BVFIH9VN' where id=6; -update noar tt set b1='RIG8HQV1OCET8XRFGOTX8K' where id=6; -update noar ti set b1='RIG8HQV1OCET8XRFGOTX8K' where id=6; -update noar tt set v0='PPZJ1SVAFD45VGRA6T1GTZN6WQ3' where id=6; -update noar ti set v0='PPZJ1SVAFD45VGRA6T1GTZN6WQ3' where id=6; -update noar tt set b2='VORIRPQL6YTQU3' where id=6; -update noar ti set b2='VORIRPQL6YTQU3' where id=6; -update noar tt set v0='4L' where id=7; -update noar ti set v0='4L' where id=7; -update noar tt set b0='1D' where id=7; -update noar ti set b0='1D' where id=7; -update noar tt set v0='X68J2K7YHY44O8KP' where id=7; -update noar ti set v0='X68J2K7YHY44O8KP' where id=7; -update noar tt set b1='B1TFG4RH04TMLGINF6MN7V21PCE' where id=7; -update noar ti set b1='B1TFG4RH04TMLGINF6MN7V21PCE' where id=7; -update noar tt set v0='DAK2H2CANSHHZF' where id=7; -update noar ti set v0='DAK2H2CANSHHZF' where id=7; -update noar tt set b2='MRRWI' where id=7; -update noar ti set b2='MRRWI' where id=7; -update noar tt set v0='47029PLPUXTMO3' where id=8; -update noar ti set v0='47029PLPUXTMO3' where id=8; -update noar tt set b0='PU8RWT88B49Y7JS2MJGN3ZP8IF8ZP' where id=8; -update noar ti set b0='PU8RWT88B49Y7JS2MJGN3ZP8IF8ZP' where id=8; -update noar tt set v0='YLUZAQ3K5187UVSJ2DRNGQHIG09' where id=8; -update noar ti set v0='YLUZAQ3K5187UVSJ2DRNGQHIG09' where id=8; -update noar tt set b1='213NHTTL3XU5CEALLCL9ASL6ZRD' where id=8; -update noar ti set b1='213NHTTL3XU5CEALLCL9ASL6ZRD' where id=8; -update noar tt set v0='1JUWQCLVPCFZ3NWIOL6HFEGDTHAFMJZY' where id=8; -update noar ti set v0='1JUWQCLVPCFZ3NWIOL6HFEGDTHAFMJZY' where id=8; -update noar tt set b2='WVQFOJ2M' where id=8; -update noar ti set b2='WVQFOJ2M' where id=8; -update noar tt set v0='QVB7ZL6KW39JAUAVVIEW' where id=9; -update noar ti set v0='QVB7ZL6KW39JAUAVVIEW' where id=9; -update noar tt set b0='NZC789TBRYH9UEARWEEW29JDB' where id=9; -update noar ti set b0='NZC789TBRYH9UEARWEEW29JDB' where id=9; -update noar tt set v0='V' where id=9; -update noar ti set v0='V' where id=9; -update noar tt set b1='VLNMWZEIS8N' where id=9; -update noar ti set b1='VLNMWZEIS8N' where id=9; -update noar tt set v0='UBRT' where id=9; -update noar ti set v0='UBRT' where id=9; -update noar tt set b2='2KS' where id=9; -update noar ti set b2='2KS' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -f0 int not null, -v0 varchar(32) not null, -b0 blob not null, -b1 mediumblob not null, -b2 mediumblob not null -) engine=tokudb; -insert into tt values (1,0,'','','',''); -insert into tt values (2,0,'','','',''); -insert into tt values (3,0,'','','',''); -insert into tt values (4,0,'','','',''); -insert into tt values (5,0,'','','',''); -insert into tt values (6,0,'','','',''); -insert into tt values (7,0,'','','',''); -insert into tt values (8,0,'','','',''); -insert into tt values (9,0,'','','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='6D' where id=1; -update noar ti set v0='6D' where id=1; -update noar tt set b0='CZJP6U7EQG1VS0M' where id=1; -update noar ti set b0='CZJP6U7EQG1VS0M' where id=1; -update noar tt set v0='TE0M8ZPFM5N1ECJ16V' where id=1; -update noar ti set v0='TE0M8ZPFM5N1ECJ16V' where id=1; -update noar tt set b1='IR3QPVQITLAQZKNP4EURIO9VDD' where id=1; -update noar ti set b1='IR3QPVQITLAQZKNP4EURIO9VDD' where id=1; -update noar tt set v0='XICTDK24N8LCJEKUSV0I9A31FZK' where id=1; -update noar ti set v0='XICTDK24N8LCJEKUSV0I9A31FZK' where id=1; -update noar tt set b2='87XEHIEXPU1ZRXXZ8A1SUON0J6FFE5Z' where id=1; -update noar ti set b2='87XEHIEXPU1ZRXXZ8A1SUON0J6FFE5Z' where id=1; -update noar tt set v0='TSKU5P3DH09' where id=2; -update noar ti set v0='TSKU5P3DH09' where id=2; -update noar tt set b0='8WAKINKY' where id=2; -update noar ti set b0='8WAKINKY' where id=2; -update noar tt set v0='GHAVEO37WC2DVU457H8' where id=2; -update noar ti set v0='GHAVEO37WC2DVU457H8' where id=2; -update noar tt set b1='KZIEEZK6O10DLXXM3VT34OZ740EF54ZS' where id=2; -update noar ti set b1='KZIEEZK6O10DLXXM3VT34OZ740EF54ZS' where id=2; -update noar tt set v0='0X5GW' where id=2; -update noar ti set v0='0X5GW' where id=2; -update noar tt set b2='T1FIJ98O85PRWJKKU81BTM' where id=2; -update noar ti set b2='T1FIJ98O85PRWJKKU81BTM' where id=2; -update noar tt set v0='PT8THOOEEYT' where id=3; -update noar ti set v0='PT8THOOEEYT' where id=3; -update noar tt set b0='0U985NFT6MZ7EQ8BGEIAD' where id=3; -update noar ti set b0='0U985NFT6MZ7EQ8BGEIAD' where id=3; -update noar tt set v0='MZ' where id=3; -update noar ti set v0='MZ' where id=3; -update noar tt set b1='FQI0VEJ' where id=3; -update noar ti set b1='FQI0VEJ' where id=3; -update noar tt set v0='AN4YWWXOUIH7SBVK5XCRRZFG055D611Z' where id=3; -update noar ti set v0='AN4YWWXOUIH7SBVK5XCRRZFG055D611Z' where id=3; -update noar tt set b2='5U' where id=3; -update noar ti set b2='5U' where id=3; -update noar tt set v0='8I' where id=4; -update noar ti set v0='8I' where id=4; -update noar tt set b0='KM8NE8283ULA6DSASU5P4RFX8H6L9V' where id=4; -update noar ti set b0='KM8NE8283ULA6DSASU5P4RFX8H6L9V' where id=4; -update noar tt set v0='ERIS9HADIZWSBCBTSQZOEXQFKI' where id=4; -update noar ti set v0='ERIS9HADIZWSBCBTSQZOEXQFKI' where id=4; -update noar tt set b1='2SZJWI94RJLNS' where id=4; -update noar ti set b1='2SZJWI94RJLNS' where id=4; -update noar tt set v0='USWCFOEDAHHR' where id=4; -update noar ti set v0='USWCFOEDAHHR' where id=4; -update noar tt set b2='PPF3GR12GMF6OJDPGI8E0PPYKZCQ' where id=4; -update noar ti set b2='PPF3GR12GMF6OJDPGI8E0PPYKZCQ' where id=4; -update noar tt set v0='ROCN1XQKX1MBYHZXDUJSSB87UDEY8CR' where id=5; -update noar ti set v0='ROCN1XQKX1MBYHZXDUJSSB87UDEY8CR' where id=5; -update noar tt set b0='NV0GFI' where id=5; -update noar ti set b0='NV0GFI' where id=5; -update noar tt set v0='N8T87BRHF3Q3SQCR0W' where id=5; -update noar ti set v0='N8T87BRHF3Q3SQCR0W' where id=5; -update noar tt set b1='XXJBEY5Z3UMGHOR7X45K8M' where id=5; -update noar ti set b1='XXJBEY5Z3UMGHOR7X45K8M' where id=5; -update noar tt set v0='P98TEYUOP3W60HGNW7V1EC8' where id=5; -update noar ti set v0='P98TEYUOP3W60HGNW7V1EC8' where id=5; -update noar tt set b2='3IYH0F0KMJJKZ621RJAAC6ZLSV' where id=5; -update noar ti set b2='3IYH0F0KMJJKZ621RJAAC6ZLSV' where id=5; -update noar tt set v0='GAAK6QY2S14UAR' where id=6; -update noar ti set v0='GAAK6QY2S14UAR' where id=6; -update noar tt set b0='RMH4M0WQ330UF' where id=6; -update noar ti set b0='RMH4M0WQ330UF' where id=6; -update noar tt set v0='3CA2NADO' where id=6; -update noar ti set v0='3CA2NADO' where id=6; -update noar tt set b1='6TDHSCS7K27JXY88C9P35JO' where id=6; -update noar ti set b1='6TDHSCS7K27JXY88C9P35JO' where id=6; -update noar tt set v0='JS9H6JEL4JUG9EO1YJ' where id=6; -update noar ti set v0='JS9H6JEL4JUG9EO1YJ' where id=6; -update noar tt set b2='7SPM' where id=6; -update noar ti set b2='7SPM' where id=6; -update noar tt set v0='15YPH9FN2MBHPI' where id=7; -update noar ti set v0='15YPH9FN2MBHPI' where id=7; -update noar tt set b0='FU32E5KY4H96Y96J45LMKL' where id=7; -update noar ti set b0='FU32E5KY4H96Y96J45LMKL' where id=7; -update noar tt set v0='UR4ZFQI36WJ' where id=7; -update noar ti set v0='UR4ZFQI36WJ' where id=7; -update noar tt set b1='MIWL503XT51Q1BZOS9JD45JGI2EEJQJ' where id=7; -update noar ti set b1='MIWL503XT51Q1BZOS9JD45JGI2EEJQJ' where id=7; -update noar tt set v0='H1VNR2' where id=7; -update noar ti set v0='H1VNR2' where id=7; -update noar tt set b2='EC' where id=7; -update noar ti set b2='EC' where id=7; -update noar tt set v0='ELEV9QVTWUGZAANIBJUVB6' where id=8; -update noar ti set v0='ELEV9QVTWUGZAANIBJUVB6' where id=8; -update noar tt set b0='1TYUDZGJTV1HFLIBSBNNJX5' where id=8; -update noar ti set b0='1TYUDZGJTV1HFLIBSBNNJX5' where id=8; -update noar tt set v0='PO1U6484WLGTWW' where id=8; -update noar ti set v0='PO1U6484WLGTWW' where id=8; -update noar tt set b1='MPEH9668VLH4Z70DYZ5ICFJUE7RJJM' where id=8; -update noar ti set b1='MPEH9668VLH4Z70DYZ5ICFJUE7RJJM' where id=8; -update noar tt set v0='Q2EBTHWBH9AVBYG27DNEV69' where id=8; -update noar ti set v0='Q2EBTHWBH9AVBYG27DNEV69' where id=8; -update noar tt set b2='BUE1Y8' where id=8; -update noar ti set b2='BUE1Y8' where id=8; -update noar tt set v0='8716G' where id=9; -update noar ti set v0='8716G' where id=9; -update noar tt set b0='7B25VLGCY765O8X8QK1GZ01WP' where id=9; -update noar ti set b0='7B25VLGCY765O8X8QK1GZ01WP' where id=9; -update noar tt set v0='J47OLD' where id=9; -update noar ti set v0='J47OLD' where id=9; -update noar tt set b1='CNC6F3YOZM0ZBJQXNYCN1SK6B' where id=9; -update noar ti set b1='CNC6F3YOZM0ZBJQXNYCN1SK6B' where id=9; -update noar tt set v0='OUPFB1GV82TGS0R' where id=9; -update noar ti set v0='OUPFB1GV82TGS0R' where id=9; -update noar tt set b2='5OV5SO869OHGPBH3EEU1STWA7223TWID' where id=9; -update noar ti set b2='5OV5SO869OHGPBH3EEU1STWA7223TWID' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -f0 int not null, -v0 varchar(256) not null, -b0 blob not null, -b1 mediumblob not null, -b2 mediumblob not null -) engine=tokudb; -insert into tt values (1,0,'','','',''); -insert into tt values (2,0,'','','',''); -insert into tt values (3,0,'','','',''); -insert into tt values (4,0,'','','',''); -insert into tt values (5,0,'','','',''); -insert into tt values (6,0,'','','',''); -insert into tt values (7,0,'','','',''); -insert into tt values (8,0,'','','',''); -insert into tt values (9,0,'','','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='BQIG0V48MQ' where id=1; -update noar ti set v0='BQIG0V48MQ' where id=1; -update noar tt set b0='U' where id=1; -update noar ti set b0='U' where id=1; -update noar tt set v0='KJ70PJMRUE9CG3QVAIWZCHCB94SNP' where id=1; -update noar ti set v0='KJ70PJMRUE9CG3QVAIWZCHCB94SNP' where id=1; -update noar tt set b1='7BVHTXKW0FGX5AH1QBZIRSB4H45CB8D' where id=1; -update noar ti set b1='7BVHTXKW0FGX5AH1QBZIRSB4H45CB8D' where id=1; -update noar tt set v0='UKZOK7WDUMP4CHYTGFA693ISOCQ5SJR' where id=1; -update noar ti set v0='UKZOK7WDUMP4CHYTGFA693ISOCQ5SJR' where id=1; -update noar tt set b2='LSVX4CP3AFZ1MJRPJ1M03345OBN7056S' where id=1; -update noar ti set b2='LSVX4CP3AFZ1MJRPJ1M03345OBN7056S' where id=1; -update noar tt set v0='IY22HYGFBU2J91G4RVA7L' where id=2; -update noar ti set v0='IY22HYGFBU2J91G4RVA7L' where id=2; -update noar tt set b0='96TX' where id=2; -update noar ti set b0='96TX' where id=2; -update noar tt set v0='6F26Y3SF30AORMCLT3P0QBW' where id=2; -update noar ti set v0='6F26Y3SF30AORMCLT3P0QBW' where id=2; -update noar tt set b1='37' where id=2; -update noar ti set b1='37' where id=2; -update noar tt set v0='GM1VUV4IE2Z8TSLDKPIC8O3LEE' where id=2; -update noar ti set v0='GM1VUV4IE2Z8TSLDKPIC8O3LEE' where id=2; -update noar tt set b2='7XTV' where id=2; -update noar ti set b2='7XTV' where id=2; -update noar tt set v0='2OJDOPU4W5U2QAAGQS' where id=3; -update noar ti set v0='2OJDOPU4W5U2QAAGQS' where id=3; -update noar tt set b0='STO31HDZ9' where id=3; -update noar ti set b0='STO31HDZ9' where id=3; -update noar tt set v0='BEV9C295UUTGU6JKSSXP0RTHFM' where id=3; -update noar ti set v0='BEV9C295UUTGU6JKSSXP0RTHFM' where id=3; -update noar tt set b1='3IS6GS' where id=3; -update noar ti set b1='3IS6GS' where id=3; -update noar tt set v0='KXMB3YLGU5Q08Q0K2GRKYX' where id=3; -update noar ti set v0='KXMB3YLGU5Q08Q0K2GRKYX' where id=3; -update noar tt set b2='26PKN10' where id=3; -update noar ti set b2='26PKN10' where id=3; -update noar tt set v0='D429CLUHMO8ZI4HY4NX0QM7BGV11' where id=4; -update noar ti set v0='D429CLUHMO8ZI4HY4NX0QM7BGV11' where id=4; -update noar tt set b0='QBDPZTZU3S3F' where id=4; -update noar ti set b0='QBDPZTZU3S3F' where id=4; -update noar tt set v0='J282VL9NUXXG4VA933TZQ' where id=4; -update noar ti set v0='J282VL9NUXXG4VA933TZQ' where id=4; -update noar tt set b1='MBFGCOZQJGZX2L7E2MEOOR6VZVNJW' where id=4; -update noar ti set b1='MBFGCOZQJGZX2L7E2MEOOR6VZVNJW' where id=4; -update noar tt set v0='ZWXY974S38FMBFV' where id=4; -update noar ti set v0='ZWXY974S38FMBFV' where id=4; -update noar tt set b2='XHU6OPXEQ080X266J04A0KH' where id=4; -update noar ti set b2='XHU6OPXEQ080X266J04A0KH' where id=4; -update noar tt set v0='1M6B87GOIVIPCSZ1F9' where id=5; -update noar ti set v0='1M6B87GOIVIPCSZ1F9' where id=5; -update noar tt set b0='4WLW2SH71KNBDY3QIX2EYPKGW' where id=5; -update noar ti set b0='4WLW2SH71KNBDY3QIX2EYPKGW' where id=5; -update noar tt set v0='R55W4ZB' where id=5; -update noar ti set v0='R55W4ZB' where id=5; -update noar tt set b1='E' where id=5; -update noar ti set b1='E' where id=5; -update noar tt set v0='O5UJTSY' where id=5; -update noar ti set v0='O5UJTSY' where id=5; -update noar tt set b2='ECGI50WCOC6QZ5GIRKRRD9DBZSJK' where id=5; -update noar ti set b2='ECGI50WCOC6QZ5GIRKRRD9DBZSJK' where id=5; -update noar tt set v0='X60PKVKDN7SUFYB' where id=6; -update noar ti set v0='X60PKVKDN7SUFYB' where id=6; -update noar tt set b0='V06T6G9KYONYW7S5YI2' where id=6; -update noar ti set b0='V06T6G9KYONYW7S5YI2' where id=6; -update noar tt set v0='EHTX6L1Q087I8QD13YTLC99F' where id=6; -update noar ti set v0='EHTX6L1Q087I8QD13YTLC99F' where id=6; -update noar tt set b1='G520YS1MHUT7O11WYC' where id=6; -update noar ti set b1='G520YS1MHUT7O11WYC' where id=6; -update noar tt set v0='MPOIMTQBBJGX0RX6RTO1Z0O' where id=6; -update noar ti set v0='MPOIMTQBBJGX0RX6RTO1Z0O' where id=6; -update noar tt set b2='38I' where id=6; -update noar ti set b2='38I' where id=6; -update noar tt set v0='01VEGNGP53I4DT3XWTFO4802RW' where id=7; -update noar ti set v0='01VEGNGP53I4DT3XWTFO4802RW' where id=7; -update noar tt set b0='L5C75GGHCZ9SWIJVTAXTI' where id=7; -update noar ti set b0='L5C75GGHCZ9SWIJVTAXTI' where id=7; -update noar tt set v0='H' where id=7; -update noar ti set v0='H' where id=7; -update noar tt set b1='JRXS4NN4KWTDW3010HQZA2JFS' where id=7; -update noar ti set b1='JRXS4NN4KWTDW3010HQZA2JFS' where id=7; -update noar tt set v0='XKGDKH6AO98944HFOBH' where id=7; -update noar ti set v0='XKGDKH6AO98944HFOBH' where id=7; -update noar tt set b2='NXG04X' where id=7; -update noar ti set b2='NXG04X' where id=7; -update noar tt set v0='8T6K0ZTSNZMZOQVT6QE' where id=8; -update noar ti set v0='8T6K0ZTSNZMZOQVT6QE' where id=8; -update noar tt set b0='EBCF1LXUI3BW7ZG9' where id=8; -update noar ti set b0='EBCF1LXUI3BW7ZG9' where id=8; -update noar tt set v0='4H93DK64' where id=8; -update noar ti set v0='4H93DK64' where id=8; -update noar tt set b1='TY5085JCOHSIURQRINI1' where id=8; -update noar ti set b1='TY5085JCOHSIURQRINI1' where id=8; -update noar tt set v0='EG4DI9M18EIDKLSI3ACB3Y6MW4YYUJ' where id=8; -update noar ti set v0='EG4DI9M18EIDKLSI3ACB3Y6MW4YYUJ' where id=8; -update noar tt set b2='DXKYOVX2P4PF' where id=8; -update noar ti set b2='DXKYOVX2P4PF' where id=8; -update noar tt set v0='5W0' where id=9; -update noar ti set v0='5W0' where id=9; -update noar tt set b0='V002D73J66' where id=9; -update noar ti set b0='V002D73J66' where id=9; -update noar tt set v0='VEX5KQOZYNC1NJ1YJHXEEG92W199ACHS' where id=9; -update noar ti set v0='VEX5KQOZYNC1NJ1YJHXEEG92W199ACHS' where id=9; -update noar tt set b1='QSIBF6VC44RR6J3THXL55QDN9ISGAHX0' where id=9; -update noar ti set b1='QSIBF6VC44RR6J3THXL55QDN9ISGAHX0' where id=9; -update noar tt set v0='AUMWUDDXSX7751FZ292NOZ7GK3C' where id=9; -update noar ti set v0='AUMWUDDXSX7751FZ292NOZ7GK3C' where id=9; -update noar tt set b2='K021K' where id=9; -update noar ti set b2='K021K' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -f0 int null, -v0 varchar(32) null, -b0 blob null, -b1 mediumblob null, -b2 longblob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='0WE13K3D0WQ79RMKLJB94AVWB1' where id=1; -update noar ti set v0='0WE13K3D0WQ79RMKLJB94AVWB1' where id=1; -update noar tt set b0='WTPMT9GNO2SX4L704AO8' where id=1; -update noar ti set b0='WTPMT9GNO2SX4L704AO8' where id=1; -update noar tt set v0='UPP6' where id=1; -update noar ti set v0='UPP6' where id=1; -update noar tt set b1='5SNSUW0D35GFQL4YVJMA5KMXE' where id=1; -update noar ti set b1='5SNSUW0D35GFQL4YVJMA5KMXE' where id=1; -update noar tt set v0='791AWJYXW0OLL9A6BUPDU' where id=1; -update noar ti set v0='791AWJYXW0OLL9A6BUPDU' where id=1; -update noar tt set b2='6N0TMADS' where id=1; -update noar ti set b2='6N0TMADS' where id=1; -update noar tt set v0='0UPUGWCOPUTSO' where id=2; -update noar ti set v0='0UPUGWCOPUTSO' where id=2; -update noar tt set b0='BHW81UO6TMVGGTLB0V8CB56VH' where id=2; -update noar ti set b0='BHW81UO6TMVGGTLB0V8CB56VH' where id=2; -update noar tt set v0='L1Q' where id=2; -update noar ti set v0='L1Q' where id=2; -update noar tt set b1='DKQK78FKYWKL3MNE4WLS' where id=2; -update noar ti set b1='DKQK78FKYWKL3MNE4WLS' where id=2; -update noar tt set v0='ZMZ3ZCRE6DU0LESKX7OFE76CMUS' where id=2; -update noar ti set v0='ZMZ3ZCRE6DU0LESKX7OFE76CMUS' where id=2; -update noar tt set b2='U5YYORW586TJJYAHMSZZ83' where id=2; -update noar ti set b2='U5YYORW586TJJYAHMSZZ83' where id=2; -update noar tt set v0='TK2MS' where id=3; -update noar ti set v0='TK2MS' where id=3; -update noar tt set b0='RT6ZI1IRXFAVG' where id=3; -update noar ti set b0='RT6ZI1IRXFAVG' where id=3; -update noar tt set v0='DNHVUO348NNKBURNBZJ2XTSOTFBG11Q' where id=3; -update noar ti set v0='DNHVUO348NNKBURNBZJ2XTSOTFBG11Q' where id=3; -update noar tt set b1='59OBESBU4ZLIUM9NUU4BXQP' where id=3; -update noar ti set b1='59OBESBU4ZLIUM9NUU4BXQP' where id=3; -update noar tt set v0='MJ5FY2R8BQ2V9WZNEZGE82LJ87JZPWC4' where id=3; -update noar ti set v0='MJ5FY2R8BQ2V9WZNEZGE82LJ87JZPWC4' where id=3; -update noar tt set b2='9CBAXDODBKZCTJLVI2K2' where id=3; -update noar ti set b2='9CBAXDODBKZCTJLVI2K2' where id=3; -update noar tt set v0='LJG7HWD8Z5SM0F8R4O79UPED' where id=4; -update noar ti set v0='LJG7HWD8Z5SM0F8R4O79UPED' where id=4; -update noar tt set b0='XQ3VBWD93A2IDW9' where id=4; -update noar ti set b0='XQ3VBWD93A2IDW9' where id=4; -update noar tt set v0='I5X' where id=4; -update noar ti set v0='I5X' where id=4; -update noar tt set b1='FGT79W7UXB5U35CWY' where id=4; -update noar ti set b1='FGT79W7UXB5U35CWY' where id=4; -update noar tt set v0='5JWPVJDMJI7LEDHPMI1RA5FA6G5EGHEB' where id=4; -update noar ti set v0='5JWPVJDMJI7LEDHPMI1RA5FA6G5EGHEB' where id=4; -update noar tt set b2='GL7SJT' where id=4; -update noar ti set b2='GL7SJT' where id=4; -update noar tt set v0='NDMJXT8BQVZ0GKBD0RJ4E8KZL' where id=5; -update noar ti set v0='NDMJXT8BQVZ0GKBD0RJ4E8KZL' where id=5; -update noar tt set b0='JJHB9BLEFUUJYBNEEZALJQ5R17' where id=5; -update noar ti set b0='JJHB9BLEFUUJYBNEEZALJQ5R17' where id=5; -update noar tt set v0='2BLNFM2N6MNU2T' where id=5; -update noar ti set v0='2BLNFM2N6MNU2T' where id=5; -update noar tt set b1='P6YDETIJZ015' where id=5; -update noar ti set b1='P6YDETIJZ015' where id=5; -update noar tt set v0='7OD1C0FVLAI2J87OBF1TY39H' where id=5; -update noar ti set v0='7OD1C0FVLAI2J87OBF1TY39H' where id=5; -update noar tt set b2='NYMBT1' where id=5; -update noar ti set b2='NYMBT1' where id=5; -update noar tt set v0='T0LQILREIUB0OA9T2U7A' where id=6; -update noar ti set v0='T0LQILREIUB0OA9T2U7A' where id=6; -update noar tt set b0='2' where id=6; -update noar ti set b0='2' where id=6; -update noar tt set v0='QQM4507UPABZ30K7OG' where id=6; -update noar ti set v0='QQM4507UPABZ30K7OG' where id=6; -update noar tt set b1='BQIESDUYAEN' where id=6; -update noar ti set b1='BQIESDUYAEN' where id=6; -update noar tt set v0='Q02BFLEZ23IXYNPX2' where id=6; -update noar ti set v0='Q02BFLEZ23IXYNPX2' where id=6; -update noar tt set b2='HFLGOSNLQ8CUD7ZC4B1RDJG' where id=6; -update noar ti set b2='HFLGOSNLQ8CUD7ZC4B1RDJG' where id=6; -update noar tt set v0='29' where id=7; -update noar ti set v0='29' where id=7; -update noar tt set b0='PM8VWHIOIAQUQHZDOE2E2O0QPCG46W' where id=7; -update noar ti set b0='PM8VWHIOIAQUQHZDOE2E2O0QPCG46W' where id=7; -update noar tt set v0='OW39W1EZXS' where id=7; -update noar ti set v0='OW39W1EZXS' where id=7; -update noar tt set b1='OJOHE7DCQG76ZL61IO4BT1S4G5' where id=7; -update noar ti set b1='OJOHE7DCQG76ZL61IO4BT1S4G5' where id=7; -update noar tt set v0='CO93IP1J4XOLTM2QPU49NGUJRFN1' where id=7; -update noar ti set v0='CO93IP1J4XOLTM2QPU49NGUJRFN1' where id=7; -update noar tt set b2='Y' where id=7; -update noar ti set b2='Y' where id=7; -update noar tt set v0='500ZCJ2RPANJ4OXGA2CU66O7XW9ELZEP' where id=8; -update noar ti set v0='500ZCJ2RPANJ4OXGA2CU66O7XW9ELZEP' where id=8; -update noar tt set b0='OANLK0Y' where id=8; -update noar ti set b0='OANLK0Y' where id=8; -update noar tt set v0='8Z9J6S' where id=8; -update noar ti set v0='8Z9J6S' where id=8; -update noar tt set b1='H1D159L47A0AZRJUHQECXX38DQ4R3' where id=8; -update noar ti set b1='H1D159L47A0AZRJUHQECXX38DQ4R3' where id=8; -update noar tt set v0='KR1UA5IF' where id=8; -update noar ti set v0='KR1UA5IF' where id=8; -update noar tt set b2='QRSQOZJMEA6ABGQUMYN' where id=8; -update noar ti set b2='QRSQOZJMEA6ABGQUMYN' where id=8; -update noar tt set v0='M8LT4DQSM093C5T' where id=9; -update noar ti set v0='M8LT4DQSM093C5T' where id=9; -update noar tt set b0='A05A27K1U2U' where id=9; -update noar ti set b0='A05A27K1U2U' where id=9; -update noar tt set v0='7OJULO' where id=9; -update noar ti set v0='7OJULO' where id=9; -update noar tt set b1='MG1Y3' where id=9; -update noar ti set b1='MG1Y3' where id=9; -update noar tt set v0='5JJMFU06GXV4OQL20O8E1J' where id=9; -update noar ti set v0='5JJMFU06GXV4OQL20O8E1J' where id=9; -update noar tt set b2='3XA5SYLOVMRZUS' where id=9; -update noar ti set b2='3XA5SYLOVMRZUS' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -f0 int null, -v0 varchar(256) null, -b0 blob null, -b1 mediumblob null, -b2 longblob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='97E1XUJ9XDI1W147HASZVGKQ91WCTU1R' where id=1; -update noar ti set v0='97E1XUJ9XDI1W147HASZVGKQ91WCTU1R' where id=1; -update noar tt set b0='KM' where id=1; -update noar ti set b0='KM' where id=1; -update noar tt set v0='0C' where id=1; -update noar ti set v0='0C' where id=1; -update noar tt set b1='IMR' where id=1; -update noar ti set b1='IMR' where id=1; -update noar tt set v0='GR' where id=1; -update noar ti set v0='GR' where id=1; -update noar tt set b2='CUGV1US' where id=1; -update noar ti set b2='CUGV1US' where id=1; -update noar tt set v0='Q8KGM96QGRPDN7QDCKYGKXR' where id=2; -update noar ti set v0='Q8KGM96QGRPDN7QDCKYGKXR' where id=2; -update noar tt set b0='MUZ5WXICBS2WBB1GPR48OEMVJSHN6NRJ' where id=2; -update noar ti set b0='MUZ5WXICBS2WBB1GPR48OEMVJSHN6NRJ' where id=2; -update noar tt set v0='E6FESUB7U988XRFL3XYC' where id=2; -update noar ti set v0='E6FESUB7U988XRFL3XYC' where id=2; -update noar tt set b1='OQMLS9NS5BYY' where id=2; -update noar ti set b1='OQMLS9NS5BYY' where id=2; -update noar tt set v0='MOIC92LMU2QS44ZUFSGC23EH7YAT' where id=2; -update noar ti set v0='MOIC92LMU2QS44ZUFSGC23EH7YAT' where id=2; -update noar tt set b2='R5G0CJO331FI' where id=2; -update noar ti set b2='R5G0CJO331FI' where id=2; -update noar tt set v0='LR8UZMQF5QYGVR6NA62T2' where id=3; -update noar ti set v0='LR8UZMQF5QYGVR6NA62T2' where id=3; -update noar tt set b0='EGCBWS7D1ET1PQL1J' where id=3; -update noar ti set b0='EGCBWS7D1ET1PQL1J' where id=3; -update noar tt set v0='CI2MG09ZO' where id=3; -update noar ti set v0='CI2MG09ZO' where id=3; -update noar tt set b1='LMAF' where id=3; -update noar ti set b1='LMAF' where id=3; -update noar tt set v0='MC0RXWCTJHYR0FDNSN7WBTMXQ4BZ7E' where id=3; -update noar ti set v0='MC0RXWCTJHYR0FDNSN7WBTMXQ4BZ7E' where id=3; -update noar tt set b2='GC8UP' where id=3; -update noar ti set b2='GC8UP' where id=3; -update noar tt set v0='JJ0I4Y48D1S' where id=4; -update noar ti set v0='JJ0I4Y48D1S' where id=4; -update noar tt set b0='X' where id=4; -update noar ti set b0='X' where id=4; -update noar tt set v0='FW' where id=4; -update noar ti set v0='FW' where id=4; -update noar tt set b1='NQYPVRA9ICAVR5CNXU9PUQWOK11' where id=4; -update noar ti set b1='NQYPVRA9ICAVR5CNXU9PUQWOK11' where id=4; -update noar tt set v0='TMYFTZC47R0SL1RLJKGH101QQ9CDILM' where id=4; -update noar ti set v0='TMYFTZC47R0SL1RLJKGH101QQ9CDILM' where id=4; -update noar tt set b2='REDHGMH0J94R05GBYRMV31PP' where id=4; -update noar ti set b2='REDHGMH0J94R05GBYRMV31PP' where id=4; -update noar tt set v0='LCC13I41I2XPNQ6' where id=5; -update noar ti set v0='LCC13I41I2XPNQ6' where id=5; -update noar tt set b0='NMDYFPN4KNCKGY' where id=5; -update noar ti set b0='NMDYFPN4KNCKGY' where id=5; -update noar tt set v0='R85LLOZ1YPPDZNXRGD4PZA19EH9VITR' where id=5; -update noar ti set v0='R85LLOZ1YPPDZNXRGD4PZA19EH9VITR' where id=5; -update noar tt set b1='8XZLATWQBYJN' where id=5; -update noar ti set b1='8XZLATWQBYJN' where id=5; -update noar tt set v0='731YTQFDAV7TG60HL2DTG' where id=5; -update noar ti set v0='731YTQFDAV7TG60HL2DTG' where id=5; -update noar tt set b2='1LR7EA' where id=5; -update noar ti set b2='1LR7EA' where id=5; -update noar tt set v0='WXS3LI82FMETYPW' where id=6; -update noar ti set v0='WXS3LI82FMETYPW' where id=6; -update noar tt set b0='92TQ0TVCY82PO6DZI1HOMDO' where id=6; -update noar ti set b0='92TQ0TVCY82PO6DZI1HOMDO' where id=6; -update noar tt set v0='8U8QE01IQ0' where id=6; -update noar ti set v0='8U8QE01IQ0' where id=6; -update noar tt set b1='4GTENHIUJP6U' where id=6; -update noar ti set b1='4GTENHIUJP6U' where id=6; -update noar tt set v0='DR07ASCBKRZ9U51O9G7' where id=6; -update noar ti set v0='DR07ASCBKRZ9U51O9G7' where id=6; -update noar tt set b2='DHAHWE4' where id=6; -update noar ti set b2='DHAHWE4' where id=6; -update noar tt set v0='Y5N0ERXN7FKT' where id=7; -update noar ti set v0='Y5N0ERXN7FKT' where id=7; -update noar tt set b0='PCXS9N2C1IVE1KS28WD' where id=7; -update noar ti set b0='PCXS9N2C1IVE1KS28WD' where id=7; -update noar tt set v0='71FR6QH1KQD581Y144X51PI8YWHSK' where id=7; -update noar ti set v0='71FR6QH1KQD581Y144X51PI8YWHSK' where id=7; -update noar tt set b1='J429Q3RB3FV' where id=7; -update noar ti set b1='J429Q3RB3FV' where id=7; -update noar tt set v0='271YT7XLN7IW2VBG0C1K9YAR19Z1C' where id=7; -update noar ti set v0='271YT7XLN7IW2VBG0C1K9YAR19Z1C' where id=7; -update noar tt set b2='M77C' where id=7; -update noar ti set b2='M77C' where id=7; -update noar tt set v0='SX1I46X0P3BQ3A1DNZ5URHN08' where id=8; -update noar ti set v0='SX1I46X0P3BQ3A1DNZ5URHN08' where id=8; -update noar tt set b0='LI66Y7W93T' where id=8; -update noar ti set b0='LI66Y7W93T' where id=8; -update noar tt set v0='5DC5GIO5PIWAWOX' where id=8; -update noar ti set v0='5DC5GIO5PIWAWOX' where id=8; -update noar tt set b1='W5DJV7YMJVTZKOEXHI7PRNDRB' where id=8; -update noar ti set b1='W5DJV7YMJVTZKOEXHI7PRNDRB' where id=8; -update noar tt set v0='RM3WVK573' where id=8; -update noar ti set v0='RM3WVK573' where id=8; -update noar tt set b2='1' where id=8; -update noar ti set b2='1' where id=8; -update noar tt set v0='4W2QI5PAA' where id=9; -update noar ti set v0='4W2QI5PAA' where id=9; -update noar tt set b0='BGAWIR' where id=9; -update noar ti set b0='BGAWIR' where id=9; -update noar tt set v0='L0BM2G10OYDC2YIS8CV192VBFWOX93P' where id=9; -update noar ti set v0='L0BM2G10OYDC2YIS8CV192VBFWOX93P' where id=9; -update noar tt set b1='8V3550SQJ6RXO96DUBW8XMMLVSG' where id=9; -update noar ti set b1='8V3550SQJ6RXO96DUBW8XMMLVSG' where id=9; -update noar tt set v0='VHD' where id=9; -update noar ti set v0='VHD' where id=9; -update noar tt set b2='QM0T3O' where id=9; -update noar ti set b2='QM0T3O' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -f0 int not null, -v0 varchar(32) not null, -b0 blob not null, -b1 mediumblob not null, -b2 longblob not null -) engine=tokudb; -insert into tt values (1,0,'','','',''); -insert into tt values (2,0,'','','',''); -insert into tt values (3,0,'','','',''); -insert into tt values (4,0,'','','',''); -insert into tt values (5,0,'','','',''); -insert into tt values (6,0,'','','',''); -insert into tt values (7,0,'','','',''); -insert into tt values (8,0,'','','',''); -insert into tt values (9,0,'','','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='HDMWJEJYITMNNYX1U' where id=1; -update noar ti set v0='HDMWJEJYITMNNYX1U' where id=1; -update noar tt set b0='0CS51LUJW7T19KR9E01PJH' where id=1; -update noar ti set b0='0CS51LUJW7T19KR9E01PJH' where id=1; -update noar tt set v0='A8KX4XZW1DJH751UEJ4HZ1SX' where id=1; -update noar ti set v0='A8KX4XZW1DJH751UEJ4HZ1SX' where id=1; -update noar tt set b1='34KYR48KNOCK4' where id=1; -update noar ti set b1='34KYR48KNOCK4' where id=1; -update noar tt set v0='I1WQ9IZL0OIBEXOB244CVAZE0BKMVO' where id=1; -update noar ti set v0='I1WQ9IZL0OIBEXOB244CVAZE0BKMVO' where id=1; -update noar tt set b2='Y7ATFNYO7' where id=1; -update noar ti set b2='Y7ATFNYO7' where id=1; -update noar tt set v0='J9RS8XGCJQ6' where id=2; -update noar ti set v0='J9RS8XGCJQ6' where id=2; -update noar tt set b0='HXVFI3ST5Z5P3YLH7GE2J3OGHTD0IW1' where id=2; -update noar ti set b0='HXVFI3ST5Z5P3YLH7GE2J3OGHTD0IW1' where id=2; -update noar tt set v0='JABWAPPSQ1V4K7FC68ZLO5JL' where id=2; -update noar ti set v0='JABWAPPSQ1V4K7FC68ZLO5JL' where id=2; -update noar tt set b1='M77MS2' where id=2; -update noar ti set b1='M77MS2' where id=2; -update noar tt set v0='F0QU' where id=2; -update noar ti set v0='F0QU' where id=2; -update noar tt set b2='P88ZN2NN3KLP3OSRR33QJQ9P0SB' where id=2; -update noar ti set b2='P88ZN2NN3KLP3OSRR33QJQ9P0SB' where id=2; -update noar tt set v0='3JLU366FB18V4ZTEK601WB' where id=3; -update noar ti set v0='3JLU366FB18V4ZTEK601WB' where id=3; -update noar tt set b0='5ESQRKIXY8H13ZGCB9Z' where id=3; -update noar ti set b0='5ESQRKIXY8H13ZGCB9Z' where id=3; -update noar tt set v0='A4NE543FUM' where id=3; -update noar ti set v0='A4NE543FUM' where id=3; -update noar tt set b1='Q9AXGAPOHCY' where id=3; -update noar ti set b1='Q9AXGAPOHCY' where id=3; -update noar tt set v0='H1BGXUBT1HR4GSVZDMU2LVVVWT5NKPLU' where id=3; -update noar ti set v0='H1BGXUBT1HR4GSVZDMU2LVVVWT5NKPLU' where id=3; -update noar tt set b2='O7SQ5ML' where id=3; -update noar ti set b2='O7SQ5ML' where id=3; -update noar tt set v0='3AF' where id=4; -update noar ti set v0='3AF' where id=4; -update noar tt set b0='24JPTNJHV4Q1FIPZB7Q' where id=4; -update noar ti set b0='24JPTNJHV4Q1FIPZB7Q' where id=4; -update noar tt set v0='CCNO07GXFY' where id=4; -update noar ti set v0='CCNO07GXFY' where id=4; -update noar tt set b1='7QPS4' where id=4; -update noar ti set b1='7QPS4' where id=4; -update noar tt set v0='MDE24SRIYDSB9ZPH82253JJV' where id=4; -update noar ti set v0='MDE24SRIYDSB9ZPH82253JJV' where id=4; -update noar tt set b2='VFRMUS9P5H27USAPL8BOTXYHBC' where id=4; -update noar ti set b2='VFRMUS9P5H27USAPL8BOTXYHBC' where id=4; -update noar tt set v0='3HGOMKYBF' where id=5; -update noar ti set v0='3HGOMKYBF' where id=5; -update noar tt set b0='K47L33M365G' where id=5; -update noar ti set b0='K47L33M365G' where id=5; -update noar tt set v0='1M9B6O16X' where id=5; -update noar ti set v0='1M9B6O16X' where id=5; -update noar tt set b1='YHGWSUZ7S4' where id=5; -update noar ti set b1='YHGWSUZ7S4' where id=5; -update noar tt set v0='1D20' where id=5; -update noar ti set v0='1D20' where id=5; -update noar tt set b2='3OTDQC8B22SHV9HO1SDOI6VFDZAE' where id=5; -update noar ti set b2='3OTDQC8B22SHV9HO1SDOI6VFDZAE' where id=5; -update noar tt set v0='8GT639GS7HP' where id=6; -update noar ti set v0='8GT639GS7HP' where id=6; -update noar tt set b0='KL1DV74H8' where id=6; -update noar ti set b0='KL1DV74H8' where id=6; -update noar tt set v0='9GSU3G915K9PI5O6VVZ83RMOFHD9U' where id=6; -update noar ti set v0='9GSU3G915K9PI5O6VVZ83RMOFHD9U' where id=6; -update noar tt set b1='9ML6HBFTGEETGA5J5KC7RXOK' where id=6; -update noar ti set b1='9ML6HBFTGEETGA5J5KC7RXOK' where id=6; -update noar tt set v0='L09UQWOTR5K9R526RESABLN' where id=6; -update noar ti set v0='L09UQWOTR5K9R526RESABLN' where id=6; -update noar tt set b2='G46BCWJHCQBUWL6X8NC607N' where id=6; -update noar ti set b2='G46BCWJHCQBUWL6X8NC607N' where id=6; -update noar tt set v0='N1' where id=7; -update noar ti set v0='N1' where id=7; -update noar tt set b0='VEP93ONIHZF02XFHZ' where id=7; -update noar ti set b0='VEP93ONIHZF02XFHZ' where id=7; -update noar tt set v0='RIC7B5NAEHXR' where id=7; -update noar ti set v0='RIC7B5NAEHXR' where id=7; -update noar tt set b1='74MCMDA5RH2QLUWSNJA1NN2H21XP' where id=7; -update noar ti set b1='74MCMDA5RH2QLUWSNJA1NN2H21XP' where id=7; -update noar tt set v0='M72KS5ODPA8MB' where id=7; -update noar ti set v0='M72KS5ODPA8MB' where id=7; -update noar tt set b2='5SGGCFJN7X1' where id=7; -update noar ti set b2='5SGGCFJN7X1' where id=7; -update noar tt set v0='DAZX3NSXB0OBPPQ' where id=8; -update noar ti set v0='DAZX3NSXB0OBPPQ' where id=8; -update noar tt set b0='U61RD7IEXFT7Y7Y6QTRJ' where id=8; -update noar ti set b0='U61RD7IEXFT7Y7Y6QTRJ' where id=8; -update noar tt set v0='FR445O9YLXSF2R0GASN041L7KCRNP' where id=8; -update noar ti set v0='FR445O9YLXSF2R0GASN041L7KCRNP' where id=8; -update noar tt set b1='V18NFTREY61U0D9D93SSDWIE' where id=8; -update noar ti set b1='V18NFTREY61U0D9D93SSDWIE' where id=8; -update noar tt set v0='7OV4IW9A6S7AY7LFNOK3SCNE18G' where id=8; -update noar ti set v0='7OV4IW9A6S7AY7LFNOK3SCNE18G' where id=8; -update noar tt set b2='U9G9JWXJ43QUD5I9' where id=8; -update noar ti set b2='U9G9JWXJ43QUD5I9' where id=8; -update noar tt set v0='6ZGELJ9UVDG9D3L87PWDO' where id=9; -update noar ti set v0='6ZGELJ9UVDG9D3L87PWDO' where id=9; -update noar tt set b0='K2HD65SB2KCR9BEWN1H' where id=9; -update noar ti set b0='K2HD65SB2KCR9BEWN1H' where id=9; -update noar tt set v0='OSC2HAI079QH0RJHEB' where id=9; -update noar ti set v0='OSC2HAI079QH0RJHEB' where id=9; -update noar tt set b1='JJEJM4' where id=9; -update noar ti set b1='JJEJM4' where id=9; -update noar tt set v0='0IA' where id=9; -update noar ti set v0='0IA' where id=9; -update noar tt set b2='ZSGMQ5V2SLVBWMI7C2OY0YV' where id=9; -update noar ti set b2='ZSGMQ5V2SLVBWMI7C2OY0YV' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -f0 int not null, -v0 varchar(256) not null, -b0 blob not null, -b1 mediumblob not null, -b2 longblob not null -) engine=tokudb; -insert into tt values (1,0,'','','',''); -insert into tt values (2,0,'','','',''); -insert into tt values (3,0,'','','',''); -insert into tt values (4,0,'','','',''); -insert into tt values (5,0,'','','',''); -insert into tt values (6,0,'','','',''); -insert into tt values (7,0,'','','',''); -insert into tt values (8,0,'','','',''); -insert into tt values (9,0,'','','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='H2EIRBSKSKXRKA9SQRHZSHO' where id=1; -update noar ti set v0='H2EIRBSKSKXRKA9SQRHZSHO' where id=1; -update noar tt set b0='H' where id=1; -update noar ti set b0='H' where id=1; -update noar tt set v0='CV0YRCOWJVNF7RC5Y58V' where id=1; -update noar ti set v0='CV0YRCOWJVNF7RC5Y58V' where id=1; -update noar tt set b1='4P7XXZZBYOGRSDGDM513I2' where id=1; -update noar ti set b1='4P7XXZZBYOGRSDGDM513I2' where id=1; -update noar tt set v0='QWIZJ' where id=1; -update noar ti set v0='QWIZJ' where id=1; -update noar tt set b2='S6H44KS9ZJ0BWR8LCNPNIUOW53' where id=1; -update noar ti set b2='S6H44KS9ZJ0BWR8LCNPNIUOW53' where id=1; -update noar tt set v0='IDKCNNQ22UU4EF0EC7AS' where id=2; -update noar ti set v0='IDKCNNQ22UU4EF0EC7AS' where id=2; -update noar tt set b0='EXW08T6PWVVKKZVOH' where id=2; -update noar ti set b0='EXW08T6PWVVKKZVOH' where id=2; -update noar tt set v0='CO0C27QLQ' where id=2; -update noar ti set v0='CO0C27QLQ' where id=2; -update noar tt set b1='B2VN22Y4JG5Q' where id=2; -update noar ti set b1='B2VN22Y4JG5Q' where id=2; -update noar tt set v0='9D29IU2CEZ4' where id=2; -update noar ti set v0='9D29IU2CEZ4' where id=2; -update noar tt set b2='F' where id=2; -update noar ti set b2='F' where id=2; -update noar tt set v0='FMT2OIVXT7J90ZY5MCM' where id=3; -update noar ti set v0='FMT2OIVXT7J90ZY5MCM' where id=3; -update noar tt set b0='L9A2UWTTWYNY6SPB1KXZYB9Z9R6HSI6' where id=3; -update noar ti set b0='L9A2UWTTWYNY6SPB1KXZYB9Z9R6HSI6' where id=3; -update noar tt set v0='FQ2N' where id=3; -update noar ti set v0='FQ2N' where id=3; -update noar tt set b1='WPQRVGG1HT8S0Z2Y02QWA217T3' where id=3; -update noar ti set b1='WPQRVGG1HT8S0Z2Y02QWA217T3' where id=3; -update noar tt set v0='AZSSCSR' where id=3; -update noar ti set v0='AZSSCSR' where id=3; -update noar tt set b2='QYHN' where id=3; -update noar ti set b2='QYHN' where id=3; -update noar tt set v0='T1SQFDTWO' where id=4; -update noar ti set v0='T1SQFDTWO' where id=4; -update noar tt set b0='PE5YVFTX9PU504DYZM67TRLKBIS0' where id=4; -update noar ti set b0='PE5YVFTX9PU504DYZM67TRLKBIS0' where id=4; -update noar tt set v0='RY09VV1M0' where id=4; -update noar ti set v0='RY09VV1M0' where id=4; -update noar tt set b1='Z1GXL7Y3SS1VUMB' where id=4; -update noar ti set b1='Z1GXL7Y3SS1VUMB' where id=4; -update noar tt set v0='RP3JS5W5HB8JW1DJA426635I0Y0VL' where id=4; -update noar ti set v0='RP3JS5W5HB8JW1DJA426635I0Y0VL' where id=4; -update noar tt set b2='JC9EYKF3PHEONPH4U' where id=4; -update noar ti set b2='JC9EYKF3PHEONPH4U' where id=4; -update noar tt set v0='L9BU76R32OKWI145AMTUMENCZPIPU' where id=5; -update noar ti set v0='L9BU76R32OKWI145AMTUMENCZPIPU' where id=5; -update noar tt set b0='BWBEEIHFSBDTMLGXWBJSIMZ' where id=5; -update noar ti set b0='BWBEEIHFSBDTMLGXWBJSIMZ' where id=5; -update noar tt set v0='XNIY1IQLB9U513LC7I4OFFGHK9PWS' where id=5; -update noar ti set v0='XNIY1IQLB9U513LC7I4OFFGHK9PWS' where id=5; -update noar tt set b1='SWH' where id=5; -update noar ti set b1='SWH' where id=5; -update noar tt set v0='QD' where id=5; -update noar ti set v0='QD' where id=5; -update noar tt set b2='DBZTO4VYF3' where id=5; -update noar ti set b2='DBZTO4VYF3' where id=5; -update noar tt set v0='UYNJCADJ2D03DRBAEFABUQ8CEWMFUJ' where id=6; -update noar ti set v0='UYNJCADJ2D03DRBAEFABUQ8CEWMFUJ' where id=6; -update noar tt set b0='1OH5KC7V2RCIM9QOYSIF' where id=6; -update noar ti set b0='1OH5KC7V2RCIM9QOYSIF' where id=6; -update noar tt set v0='E' where id=6; -update noar ti set v0='E' where id=6; -update noar tt set b1='9WJFHKSFXB9058XHVNFG06' where id=6; -update noar ti set b1='9WJFHKSFXB9058XHVNFG06' where id=6; -update noar tt set v0='7WG8NT0LTVDQIVSDNKX249RNOZ' where id=6; -update noar ti set v0='7WG8NT0LTVDQIVSDNKX249RNOZ' where id=6; -update noar tt set b2='MDIXJ8G66' where id=6; -update noar ti set b2='MDIXJ8G66' where id=6; -update noar tt set v0='TODOH8LKNYXSOFZULC2NZWJ40J2L8' where id=7; -update noar ti set v0='TODOH8LKNYXSOFZULC2NZWJ40J2L8' where id=7; -update noar tt set b0='T885HND' where id=7; -update noar ti set b0='T885HND' where id=7; -update noar tt set v0='ZP' where id=7; -update noar ti set v0='ZP' where id=7; -update noar tt set b1='82VL5YJC94RTOPB6DY7' where id=7; -update noar ti set b1='82VL5YJC94RTOPB6DY7' where id=7; -update noar tt set v0='ZU' where id=7; -update noar ti set v0='ZU' where id=7; -update noar tt set b2='0' where id=7; -update noar ti set b2='0' where id=7; -update noar tt set v0='PHO63' where id=8; -update noar ti set v0='PHO63' where id=8; -update noar tt set b0='8X6XYAOUAAT6ZV9AB2C8DVDCM8YX6N' where id=8; -update noar ti set b0='8X6XYAOUAAT6ZV9AB2C8DVDCM8YX6N' where id=8; -update noar tt set v0='AXU6EPJ56US0X1WA7N2Q1' where id=8; -update noar ti set v0='AXU6EPJ56US0X1WA7N2Q1' where id=8; -update noar tt set b1='Z0581T7D7PV' where id=8; -update noar ti set b1='Z0581T7D7PV' where id=8; -update noar tt set v0='X6TCA2VEVIIVK' where id=8; -update noar ti set v0='X6TCA2VEVIIVK' where id=8; -update noar tt set b2='DFAH72C18' where id=8; -update noar ti set b2='DFAH72C18' where id=8; -update noar tt set v0='Q2AITF9FSIFZZW1ZIY04AOYSV26' where id=9; -update noar ti set v0='Q2AITF9FSIFZZW1ZIY04AOYSV26' where id=9; -update noar tt set b0='KJFKEYMSX4H8YEKOWUXM' where id=9; -update noar ti set b0='KJFKEYMSX4H8YEKOWUXM' where id=9; -update noar tt set v0='M7QZV2W8' where id=9; -update noar ti set v0='M7QZV2W8' where id=9; -update noar tt set b1='GJJWLMCX7KHXZI' where id=9; -update noar ti set b1='GJJWLMCX7KHXZI' where id=9; -update noar tt set v0='VM0Y4KKC8D8MRTZVSALGRKUKNWQ' where id=9; -update noar ti set v0='VM0Y4KKC8D8MRTZVSALGRKUKNWQ' where id=9; -update noar tt set b2='2' where id=9; -update noar ti set b2='2' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -f0 int null, -v0 varchar(32) null, -b0 blob null, -b1 longblob null, -b2 tinyblob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='8PS5LIM97XCVWW4SN' where id=1; -update noar ti set v0='8PS5LIM97XCVWW4SN' where id=1; -update noar tt set b0='EAPSA49721L' where id=1; -update noar ti set b0='EAPSA49721L' where id=1; -update noar tt set v0='2VN2R0CX' where id=1; -update noar ti set v0='2VN2R0CX' where id=1; -update noar tt set b1='SJ' where id=1; -update noar ti set b1='SJ' where id=1; -update noar tt set v0='KYGQC6ZPX8LEI8' where id=1; -update noar ti set v0='KYGQC6ZPX8LEI8' where id=1; -update noar tt set b2='T915HILYU61P9OC74KEB' where id=1; -update noar ti set b2='T915HILYU61P9OC74KEB' where id=1; -update noar tt set v0='XNHQUSQL5VIE6KB5Y1QS' where id=2; -update noar ti set v0='XNHQUSQL5VIE6KB5Y1QS' where id=2; -update noar tt set b0='B7N3BW0W1LDKY3USEQ0U9EWGUKB' where id=2; -update noar ti set b0='B7N3BW0W1LDKY3USEQ0U9EWGUKB' where id=2; -update noar tt set v0='DAEA418JD95MM1VWO8KI0CS' where id=2; -update noar ti set v0='DAEA418JD95MM1VWO8KI0CS' where id=2; -update noar tt set b1='Q63OHX2EHXSRM17MQOT' where id=2; -update noar ti set b1='Q63OHX2EHXSRM17MQOT' where id=2; -update noar tt set v0='XK4A0R0PH1UMR76PWN8GLANQ0XTSYG' where id=2; -update noar ti set v0='XK4A0R0PH1UMR76PWN8GLANQ0XTSYG' where id=2; -update noar tt set b2='DOXYPOK8UEMGKK2LTZDWA3K9ZWSYOIO' where id=2; -update noar ti set b2='DOXYPOK8UEMGKK2LTZDWA3K9ZWSYOIO' where id=2; -update noar tt set v0='DF0ZFJ' where id=3; -update noar ti set v0='DF0ZFJ' where id=3; -update noar tt set b0='KX76YECE7L2ZYWWXSGO0X1W' where id=3; -update noar ti set b0='KX76YECE7L2ZYWWXSGO0X1W' where id=3; -update noar tt set v0='RZO9VQN8PP5QOBAIKIKJ2J' where id=3; -update noar ti set v0='RZO9VQN8PP5QOBAIKIKJ2J' where id=3; -update noar tt set b1='FYFVU7CMTVP5LFXJO' where id=3; -update noar ti set b1='FYFVU7CMTVP5LFXJO' where id=3; -update noar tt set v0='I6OK' where id=3; -update noar ti set v0='I6OK' where id=3; -update noar tt set b2='QHACU8HI0N5' where id=3; -update noar ti set b2='QHACU8HI0N5' where id=3; -update noar tt set v0='61BGS6Q1W340FGXCBU2V' where id=4; -update noar ti set v0='61BGS6Q1W340FGXCBU2V' where id=4; -update noar tt set b0='MXB91ANCYFM4LJ8MGPFBYP6DD9' where id=4; -update noar ti set b0='MXB91ANCYFM4LJ8MGPFBYP6DD9' where id=4; -update noar tt set v0='0AQK9ICMO7VWI4E' where id=4; -update noar ti set v0='0AQK9ICMO7VWI4E' where id=4; -update noar tt set b1='6L' where id=4; -update noar ti set b1='6L' where id=4; -update noar tt set v0='Q7R9YKWYDPNBRFALA89XXTJNB' where id=4; -update noar ti set v0='Q7R9YKWYDPNBRFALA89XXTJNB' where id=4; -update noar tt set b2='LYOZ8RS2BI567UM2LBUH7K' where id=4; -update noar ti set b2='LYOZ8RS2BI567UM2LBUH7K' where id=4; -update noar tt set v0='U' where id=5; -update noar ti set v0='U' where id=5; -update noar tt set b0='QLFO85GTIAK78WBOX5Y8VUUB4' where id=5; -update noar ti set b0='QLFO85GTIAK78WBOX5Y8VUUB4' where id=5; -update noar tt set v0='0FRNZL62' where id=5; -update noar ti set v0='0FRNZL62' where id=5; -update noar tt set b1='UIVZF5ANZ9ELJ6BMFMF' where id=5; -update noar ti set b1='UIVZF5ANZ9ELJ6BMFMF' where id=5; -update noar tt set v0='M1MD5PKP173' where id=5; -update noar ti set v0='M1MD5PKP173' where id=5; -update noar tt set b2='LMI5KJTU' where id=5; -update noar ti set b2='LMI5KJTU' where id=5; -update noar tt set v0='GD3RYUP6BJ9JAOSW4TO' where id=6; -update noar ti set v0='GD3RYUP6BJ9JAOSW4TO' where id=6; -update noar tt set b0='SR8' where id=6; -update noar ti set b0='SR8' where id=6; -update noar tt set v0='6CNB6VSRXDCJLB7EHC5OADJ4E' where id=6; -update noar ti set v0='6CNB6VSRXDCJLB7EHC5OADJ4E' where id=6; -update noar tt set b1='W9VW779LBHJLSHQK94UAMHWCGAEX3' where id=6; -update noar ti set b1='W9VW779LBHJLSHQK94UAMHWCGAEX3' where id=6; -update noar tt set v0='0B2ILT82R3' where id=6; -update noar ti set v0='0B2ILT82R3' where id=6; -update noar tt set b2='TGI97HZ' where id=6; -update noar ti set b2='TGI97HZ' where id=6; -update noar tt set v0='FAFZ3XL4M4' where id=7; -update noar ti set v0='FAFZ3XL4M4' where id=7; -update noar tt set b0='OCGZ' where id=7; -update noar ti set b0='OCGZ' where id=7; -update noar tt set v0='SDKVIWY6PZ40ZKH3EUR' where id=7; -update noar ti set v0='SDKVIWY6PZ40ZKH3EUR' where id=7; -update noar tt set b1='P261PRNROR6RNUPDMVBN8' where id=7; -update noar ti set b1='P261PRNROR6RNUPDMVBN8' where id=7; -update noar tt set v0='RBFUH' where id=7; -update noar ti set v0='RBFUH' where id=7; -update noar tt set b2='24B7V2NL' where id=7; -update noar ti set b2='24B7V2NL' where id=7; -update noar tt set v0='40Y15OF35FLX4Y90L58U2R2XYL5KQFJ' where id=8; -update noar ti set v0='40Y15OF35FLX4Y90L58U2R2XYL5KQFJ' where id=8; -update noar tt set b0='2TKRA8AMMPVBZLFA6' where id=8; -update noar ti set b0='2TKRA8AMMPVBZLFA6' where id=8; -update noar tt set v0='8EOGL83MPGHUL3LJ' where id=8; -update noar ti set v0='8EOGL83MPGHUL3LJ' where id=8; -update noar tt set b1='4KP252TBDA0XUH905GBOBEE' where id=8; -update noar ti set b1='4KP252TBDA0XUH905GBOBEE' where id=8; -update noar tt set v0='BMFHSF0DF' where id=8; -update noar ti set v0='BMFHSF0DF' where id=8; -update noar tt set b2='PBXCGKQG17PXSPP8414N' where id=8; -update noar ti set b2='PBXCGKQG17PXSPP8414N' where id=8; -update noar tt set v0='WCLX8KXI3TAW1TQ70PXP0' where id=9; -update noar ti set v0='WCLX8KXI3TAW1TQ70PXP0' where id=9; -update noar tt set b0='BFVHGBX3XSTZRMIPC52CGQO5SM2F' where id=9; -update noar ti set b0='BFVHGBX3XSTZRMIPC52CGQO5SM2F' where id=9; -update noar tt set v0='VI33D4FBYY29OPRHB0KX7FFE' where id=9; -update noar ti set v0='VI33D4FBYY29OPRHB0KX7FFE' where id=9; -update noar tt set b1='D2VJFNFHJ1VJ' where id=9; -update noar ti set b1='D2VJFNFHJ1VJ' where id=9; -update noar tt set v0='DAMO' where id=9; -update noar ti set v0='DAMO' where id=9; -update noar tt set b2='HZGDDJC9LOX03Z1T6FV' where id=9; -update noar ti set b2='HZGDDJC9LOX03Z1T6FV' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -f0 int null, -v0 varchar(256) null, -b0 blob null, -b1 longblob null, -b2 tinyblob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='EO35151XGXNWNVBQ' where id=1; -update noar ti set v0='EO35151XGXNWNVBQ' where id=1; -update noar tt set b0='HP24C0IDRAOPS41SMCDLP76ZHXEZ' where id=1; -update noar ti set b0='HP24C0IDRAOPS41SMCDLP76ZHXEZ' where id=1; -update noar tt set v0='59RZ38K1EN8X2TAZHF3R' where id=1; -update noar ti set v0='59RZ38K1EN8X2TAZHF3R' where id=1; -update noar tt set b1='6T2VPG1YK5' where id=1; -update noar ti set b1='6T2VPG1YK5' where id=1; -update noar tt set v0='ZBJIEF9BTW2Q9R1L6PVYBK067GND' where id=1; -update noar ti set v0='ZBJIEF9BTW2Q9R1L6PVYBK067GND' where id=1; -update noar tt set b2='JLIN0B15OLBA0LWA' where id=1; -update noar ti set b2='JLIN0B15OLBA0LWA' where id=1; -update noar tt set v0='PY2Q5I' where id=2; -update noar ti set v0='PY2Q5I' where id=2; -update noar tt set b0='NS' where id=2; -update noar ti set b0='NS' where id=2; -update noar tt set v0='W2DS' where id=2; -update noar ti set v0='W2DS' where id=2; -update noar tt set b1='0GN7SNIJ5H3539L4' where id=2; -update noar ti set b1='0GN7SNIJ5H3539L4' where id=2; -update noar tt set v0='XDE3ETOXZNK29RTXMM591W6CGSKKBZ' where id=2; -update noar ti set v0='XDE3ETOXZNK29RTXMM591W6CGSKKBZ' where id=2; -update noar tt set b2='SV72XPP4' where id=2; -update noar ti set b2='SV72XPP4' where id=2; -update noar tt set v0='JCSKFFSTO98U1S4CWW5WI2ETM' where id=3; -update noar ti set v0='JCSKFFSTO98U1S4CWW5WI2ETM' where id=3; -update noar tt set b0='MPVGTETTY7WSHDTI4DHGEGI' where id=3; -update noar ti set b0='MPVGTETTY7WSHDTI4DHGEGI' where id=3; -update noar tt set v0='TJPJ3H3IRXU0UY3ZDYRQZSD9S' where id=3; -update noar ti set v0='TJPJ3H3IRXU0UY3ZDYRQZSD9S' where id=3; -update noar tt set b1='VTU62' where id=3; -update noar ti set b1='VTU62' where id=3; -update noar tt set v0='AD' where id=3; -update noar ti set v0='AD' where id=3; -update noar tt set b2='F036JBM6EZCJ5W9EBNH2' where id=3; -update noar ti set b2='F036JBM6EZCJ5W9EBNH2' where id=3; -update noar tt set v0='ANCJZOJN4T1FHNRC87521K2I5' where id=4; -update noar ti set v0='ANCJZOJN4T1FHNRC87521K2I5' where id=4; -update noar tt set b0='99YAW8NHFSZIRBNUQZT6Q57AKMB9B7' where id=4; -update noar ti set b0='99YAW8NHFSZIRBNUQZT6Q57AKMB9B7' where id=4; -update noar tt set v0='SJ4PFBUSIVNC96K' where id=4; -update noar ti set v0='SJ4PFBUSIVNC96K' where id=4; -update noar tt set b1='3316AOE23OWPVBP5C' where id=4; -update noar ti set b1='3316AOE23OWPVBP5C' where id=4; -update noar tt set v0='AP5' where id=4; -update noar ti set v0='AP5' where id=4; -update noar tt set b2='GF5AR' where id=4; -update noar ti set b2='GF5AR' where id=4; -update noar tt set v0='7YLDFU952E9EOOL2H0B2KOGXPIX8YAE' where id=5; -update noar ti set v0='7YLDFU952E9EOOL2H0B2KOGXPIX8YAE' where id=5; -update noar tt set b0='G56336ZWCDEO0L81GQRLYGX' where id=5; -update noar ti set b0='G56336ZWCDEO0L81GQRLYGX' where id=5; -update noar tt set v0='HFUAIK2NWGGBDB' where id=5; -update noar ti set v0='HFUAIK2NWGGBDB' where id=5; -update noar tt set b1='SRFMFGZB7D5IN42V2LFA96U860MA' where id=5; -update noar ti set b1='SRFMFGZB7D5IN42V2LFA96U860MA' where id=5; -update noar tt set v0='C25M16UN5OW6NJ2' where id=5; -update noar ti set v0='C25M16UN5OW6NJ2' where id=5; -update noar tt set b2='35WMBZBN449HQHPFEN55ZV' where id=5; -update noar ti set b2='35WMBZBN449HQHPFEN55ZV' where id=5; -update noar tt set v0='DFN6' where id=6; -update noar ti set v0='DFN6' where id=6; -update noar tt set b0='MC8QTALEWA6O' where id=6; -update noar ti set b0='MC8QTALEWA6O' where id=6; -update noar tt set v0='H3R64PPQ3F5SHVRT6YSK7TS' where id=6; -update noar ti set v0='H3R64PPQ3F5SHVRT6YSK7TS' where id=6; -update noar tt set b1='6XRUP' where id=6; -update noar ti set b1='6XRUP' where id=6; -update noar tt set v0='IAS1906LURE5CP21CNWFL' where id=6; -update noar ti set v0='IAS1906LURE5CP21CNWFL' where id=6; -update noar tt set b2='M' where id=6; -update noar ti set b2='M' where id=6; -update noar tt set v0='LC1SGKPUUEWO24V8OBFHV0FGIXD' where id=7; -update noar ti set v0='LC1SGKPUUEWO24V8OBFHV0FGIXD' where id=7; -update noar tt set b0='8F66VWZAL' where id=7; -update noar ti set b0='8F66VWZAL' where id=7; -update noar tt set v0='D5BDQV1ZHCJ5T6F0QU2XM' where id=7; -update noar ti set v0='D5BDQV1ZHCJ5T6F0QU2XM' where id=7; -update noar tt set b1='OMVXBQCLI4' where id=7; -update noar ti set b1='OMVXBQCLI4' where id=7; -update noar tt set v0='ZRTTNABSPS4012QQSU118' where id=7; -update noar ti set v0='ZRTTNABSPS4012QQSU118' where id=7; -update noar tt set b2='5YG47300AA9XRQLEBQSY7RNE' where id=7; -update noar ti set b2='5YG47300AA9XRQLEBQSY7RNE' where id=7; -update noar tt set v0='X' where id=8; -update noar ti set v0='X' where id=8; -update noar tt set b0='DDX1JVXC3UME' where id=8; -update noar ti set b0='DDX1JVXC3UME' where id=8; -update noar tt set v0='6ICFLBOKN' where id=8; -update noar ti set v0='6ICFLBOKN' where id=8; -update noar tt set b1='GULF4ORP4WL19KNDOFD1OEZKAAIE2' where id=8; -update noar ti set b1='GULF4ORP4WL19KNDOFD1OEZKAAIE2' where id=8; -update noar tt set v0='Z7WSTX0RWQ3S03P17TZQ6DH5Q6PT5' where id=8; -update noar ti set v0='Z7WSTX0RWQ3S03P17TZQ6DH5Q6PT5' where id=8; -update noar tt set b2='O' where id=8; -update noar ti set b2='O' where id=8; -update noar tt set v0='U7QNS' where id=9; -update noar ti set v0='U7QNS' where id=9; -update noar tt set b0='H8P7RYPEFKJZ91SKF7KM0IYZJZY' where id=9; -update noar ti set b0='H8P7RYPEFKJZ91SKF7KM0IYZJZY' where id=9; -update noar tt set v0='P7N032KMP7DNVE8CTGWXBLGT3JSQ2Q' where id=9; -update noar ti set v0='P7N032KMP7DNVE8CTGWXBLGT3JSQ2Q' where id=9; -update noar tt set b1='GLQFG8ZVW0ZXM20JHLDQ7I' where id=9; -update noar ti set b1='GLQFG8ZVW0ZXM20JHLDQ7I' where id=9; -update noar tt set v0='90V15OL6OXEPHKHKHZZAFYW5BY5D8D' where id=9; -update noar ti set v0='90V15OL6OXEPHKHKHZZAFYW5BY5D8D' where id=9; -update noar tt set b2='FIHEU9H20H2VLWQ' where id=9; -update noar ti set b2='FIHEU9H20H2VLWQ' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -f0 int not null, -v0 varchar(32) not null, -b0 blob not null, -b1 longblob not null, -b2 tinyblob not null -) engine=tokudb; -insert into tt values (1,0,'','','',''); -insert into tt values (2,0,'','','',''); -insert into tt values (3,0,'','','',''); -insert into tt values (4,0,'','','',''); -insert into tt values (5,0,'','','',''); -insert into tt values (6,0,'','','',''); -insert into tt values (7,0,'','','',''); -insert into tt values (8,0,'','','',''); -insert into tt values (9,0,'','','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='GA7V0GLVX1GV9N26RMWKWI5EOAO3OA00' where id=1; -update noar ti set v0='GA7V0GLVX1GV9N26RMWKWI5EOAO3OA00' where id=1; -update noar tt set b0='5Q' where id=1; -update noar ti set b0='5Q' where id=1; -update noar tt set v0='16HFLSMCC9XYTXXOF' where id=1; -update noar ti set v0='16HFLSMCC9XYTXXOF' where id=1; -update noar tt set b1='VTTXU10D7BP' where id=1; -update noar ti set b1='VTTXU10D7BP' where id=1; -update noar tt set v0='QALVJYSPL9NT3NYDC' where id=1; -update noar ti set v0='QALVJYSPL9NT3NYDC' where id=1; -update noar tt set b2='C0QH2L' where id=1; -update noar ti set b2='C0QH2L' where id=1; -update noar tt set v0='I61UE3V1RIPKSXIVTKMS' where id=2; -update noar ti set v0='I61UE3V1RIPKSXIVTKMS' where id=2; -update noar tt set b0='391P428Y3V1J54' where id=2; -update noar ti set b0='391P428Y3V1J54' where id=2; -update noar tt set v0='5WAJJYDAV6PYFJR4KX2CDS9FT9AGD0HU' where id=2; -update noar ti set v0='5WAJJYDAV6PYFJR4KX2CDS9FT9AGD0HU' where id=2; -update noar tt set b1='BUATSX' where id=2; -update noar ti set b1='BUATSX' where id=2; -update noar tt set v0='GZGPA1PVX2Q50C6D2' where id=2; -update noar ti set v0='GZGPA1PVX2Q50C6D2' where id=2; -update noar tt set b2='TH4MFGV5HE' where id=2; -update noar ti set b2='TH4MFGV5HE' where id=2; -update noar tt set v0='GFX' where id=3; -update noar ti set v0='GFX' where id=3; -update noar tt set b0='3MGY24NBRN46WPKI' where id=3; -update noar ti set b0='3MGY24NBRN46WPKI' where id=3; -update noar tt set v0='FM6PPJUBE9FGEB' where id=3; -update noar ti set v0='FM6PPJUBE9FGEB' where id=3; -update noar tt set b1='T8HTP4A7M34N4MIWP6' where id=3; -update noar ti set b1='T8HTP4A7M34N4MIWP6' where id=3; -update noar tt set v0='53UZH8HAPKV1WX50E3B15' where id=3; -update noar ti set v0='53UZH8HAPKV1WX50E3B15' where id=3; -update noar tt set b2='Y1OG47300PATBI5P5YOMM' where id=3; -update noar ti set b2='Y1OG47300PATBI5P5YOMM' where id=3; -update noar tt set v0='976AQV38MW7NNVGY' where id=4; -update noar ti set v0='976AQV38MW7NNVGY' where id=4; -update noar tt set b0='TDISXZCDNW' where id=4; -update noar ti set b0='TDISXZCDNW' where id=4; -update noar tt set v0='USJJHE0TZM6C9EQ7PYOVF2WE' where id=4; -update noar ti set v0='USJJHE0TZM6C9EQ7PYOVF2WE' where id=4; -update noar tt set b1='OBFIP9IU5MARHUNQR' where id=4; -update noar ti set b1='OBFIP9IU5MARHUNQR' where id=4; -update noar tt set v0='3SDZJQ' where id=4; -update noar ti set v0='3SDZJQ' where id=4; -update noar tt set b2='11IVV' where id=4; -update noar ti set b2='11IVV' where id=4; -update noar tt set v0='LK9G2JFA0T' where id=5; -update noar ti set v0='LK9G2JFA0T' where id=5; -update noar tt set b0='QSGVCBUDBXTLI0RTV7E903JU' where id=5; -update noar ti set b0='QSGVCBUDBXTLI0RTV7E903JU' where id=5; -update noar tt set v0='Q0H' where id=5; -update noar ti set v0='Q0H' where id=5; -update noar tt set b1='MVD5U1JO509POLUF7GISSHSZI3VE11GA' where id=5; -update noar ti set b1='MVD5U1JO509POLUF7GISSHSZI3VE11GA' where id=5; -update noar tt set v0='B1QKH4XHUD1OCA3C3M6UHO5' where id=5; -update noar ti set v0='B1QKH4XHUD1OCA3C3M6UHO5' where id=5; -update noar tt set b2='IIC0X' where id=5; -update noar ti set b2='IIC0X' where id=5; -update noar tt set v0='92XC2H' where id=6; -update noar ti set v0='92XC2H' where id=6; -update noar tt set b0='02MVSPMKNPJFWP' where id=6; -update noar ti set b0='02MVSPMKNPJFWP' where id=6; -update noar tt set v0='H4UXF2SZSLG06ZKVPYG519KZGAQ3ZGT' where id=6; -update noar ti set v0='H4UXF2SZSLG06ZKVPYG519KZGAQ3ZGT' where id=6; -update noar tt set b1='TVEMKEGELF0XQWMZ69ZU4AS3EM' where id=6; -update noar ti set b1='TVEMKEGELF0XQWMZ69ZU4AS3EM' where id=6; -update noar tt set v0='I' where id=6; -update noar ti set v0='I' where id=6; -update noar tt set b2='8PY5YXWWQR0E8BT4850MOT' where id=6; -update noar ti set b2='8PY5YXWWQR0E8BT4850MOT' where id=6; -update noar tt set v0='JG' where id=7; -update noar ti set v0='JG' where id=7; -update noar tt set b0='9B5BVF2' where id=7; -update noar ti set b0='9B5BVF2' where id=7; -update noar tt set v0='EICUIUC1PZ9HBA1Z9CFKRZBP1PX6' where id=7; -update noar ti set v0='EICUIUC1PZ9HBA1Z9CFKRZBP1PX6' where id=7; -update noar tt set b1='SL5AEVL1GPDAMDCZ6O0MNZ512OXQF1' where id=7; -update noar ti set b1='SL5AEVL1GPDAMDCZ6O0MNZ512OXQF1' where id=7; -update noar tt set v0='NBB0Y501BC98UZBNV76GBEJQDGEQ447' where id=7; -update noar ti set v0='NBB0Y501BC98UZBNV76GBEJQDGEQ447' where id=7; -update noar tt set b2='2WQ19E38FZHQRQBIJSSWJIQV3LV1WW' where id=7; -update noar ti set b2='2WQ19E38FZHQRQBIJSSWJIQV3LV1WW' where id=7; -update noar tt set v0='MFPPEGLKB6EUQJPYWASJ' where id=8; -update noar ti set v0='MFPPEGLKB6EUQJPYWASJ' where id=8; -update noar tt set b0='RRLQ' where id=8; -update noar ti set b0='RRLQ' where id=8; -update noar tt set v0='U15QKE7E7CX6F9M1U2PRVE' where id=8; -update noar ti set v0='U15QKE7E7CX6F9M1U2PRVE' where id=8; -update noar tt set b1='HG' where id=8; -update noar ti set b1='HG' where id=8; -update noar tt set v0='D3D' where id=8; -update noar ti set v0='D3D' where id=8; -update noar tt set b2='6I71R60QRS1QEB53W5XCAQA3' where id=8; -update noar ti set b2='6I71R60QRS1QEB53W5XCAQA3' where id=8; -update noar tt set v0='BC2TROQ5J' where id=9; -update noar ti set v0='BC2TROQ5J' where id=9; -update noar tt set b0='DBKL0WVJHLHHZBU158HXCTC' where id=9; -update noar ti set b0='DBKL0WVJHLHHZBU158HXCTC' where id=9; -update noar tt set v0='Q86QF0H' where id=9; -update noar ti set v0='Q86QF0H' where id=9; -update noar tt set b1='DVKXRXENQFY6HUB9BC' where id=9; -update noar ti set b1='DVKXRXENQFY6HUB9BC' where id=9; -update noar tt set v0='Q5GAC9A0MFXD1ISX0A7R4GDOI8XFGZUA' where id=9; -update noar ti set v0='Q5GAC9A0MFXD1ISX0A7R4GDOI8XFGZUA' where id=9; -update noar tt set b2='O3UKR2' where id=9; -update noar ti set b2='O3UKR2' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -f0 int not null, -v0 varchar(256) not null, -b0 blob not null, -b1 longblob not null, -b2 tinyblob not null -) engine=tokudb; -insert into tt values (1,0,'','','',''); -insert into tt values (2,0,'','','',''); -insert into tt values (3,0,'','','',''); -insert into tt values (4,0,'','','',''); -insert into tt values (5,0,'','','',''); -insert into tt values (6,0,'','','',''); -insert into tt values (7,0,'','','',''); -insert into tt values (8,0,'','','',''); -insert into tt values (9,0,'','','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='GT78ZCXRR3SK9A9EPSY7PDVY8K' where id=1; -update noar ti set v0='GT78ZCXRR3SK9A9EPSY7PDVY8K' where id=1; -update noar tt set b0='A' where id=1; -update noar ti set b0='A' where id=1; -update noar tt set v0='WIW0DNI' where id=1; -update noar ti set v0='WIW0DNI' where id=1; -update noar tt set b1='69R2XAL6UYYNSGMJM7H9' where id=1; -update noar ti set b1='69R2XAL6UYYNSGMJM7H9' where id=1; -update noar tt set v0='GN4' where id=1; -update noar ti set v0='GN4' where id=1; -update noar tt set b2='7MQYPD2W9BDBIIWQD' where id=1; -update noar ti set b2='7MQYPD2W9BDBIIWQD' where id=1; -update noar tt set v0='F' where id=2; -update noar ti set v0='F' where id=2; -update noar tt set b0='R3915QKQK9VAVM9A92NHXKWTPX32RT' where id=2; -update noar ti set b0='R3915QKQK9VAVM9A92NHXKWTPX32RT' where id=2; -update noar tt set v0='MG53LSY6HH' where id=2; -update noar ti set v0='MG53LSY6HH' where id=2; -update noar tt set b1='JKTMH876L9YY5LS3O3' where id=2; -update noar ti set b1='JKTMH876L9YY5LS3O3' where id=2; -update noar tt set v0='LQRPM5CU3' where id=2; -update noar ti set v0='LQRPM5CU3' where id=2; -update noar tt set b2='E2JYMUF3WOWBQKKDSAWFXHT7DI5RBXP' where id=2; -update noar ti set b2='E2JYMUF3WOWBQKKDSAWFXHT7DI5RBXP' where id=2; -update noar tt set v0='AY2WR33JL7162Q254BPVNW4M81QUZW' where id=3; -update noar ti set v0='AY2WR33JL7162Q254BPVNW4M81QUZW' where id=3; -update noar tt set b0='YXGHCE2NBRXEDIBRHH5TGO4' where id=3; -update noar ti set b0='YXGHCE2NBRXEDIBRHH5TGO4' where id=3; -update noar tt set v0='K4PL40ZEC5' where id=3; -update noar ti set v0='K4PL40ZEC5' where id=3; -update noar tt set b1='B478WS19IJFHQBFWHGH9VCE' where id=3; -update noar ti set b1='B478WS19IJFHQBFWHGH9VCE' where id=3; -update noar tt set v0='XWDL' where id=3; -update noar ti set v0='XWDL' where id=3; -update noar tt set b2='3QRY2X' where id=3; -update noar ti set b2='3QRY2X' where id=3; -update noar tt set v0='XN7XEWKTET' where id=4; -update noar ti set v0='XN7XEWKTET' where id=4; -update noar tt set b0='N5IK4PK9OUMZ4E0N' where id=4; -update noar ti set b0='N5IK4PK9OUMZ4E0N' where id=4; -update noar tt set v0='F6MLS7F08G1Y7SFGLHZ' where id=4; -update noar ti set v0='F6MLS7F08G1Y7SFGLHZ' where id=4; -update noar tt set b1='OY0MSTB90LJ8XZ8HC0K' where id=4; -update noar ti set b1='OY0MSTB90LJ8XZ8HC0K' where id=4; -update noar tt set v0='9CPZ6KLPA62RVPDNSU3QSE28' where id=4; -update noar ti set v0='9CPZ6KLPA62RVPDNSU3QSE28' where id=4; -update noar tt set b2='09H' where id=4; -update noar ti set b2='09H' where id=4; -update noar tt set v0='0CASECR6AEU9H93GYO' where id=5; -update noar ti set v0='0CASECR6AEU9H93GYO' where id=5; -update noar tt set b0='BOMIRTM6WXSYR4N08K2C74JAZC45' where id=5; -update noar ti set b0='BOMIRTM6WXSYR4N08K2C74JAZC45' where id=5; -update noar tt set v0='UWR075JQW2KXULXYXXU9AVBVWWX7SD' where id=5; -update noar ti set v0='UWR075JQW2KXULXYXXU9AVBVWWX7SD' where id=5; -update noar tt set b1='3Q8M7VVQ63G1P6L067D' where id=5; -update noar ti set b1='3Q8M7VVQ63G1P6L067D' where id=5; -update noar tt set v0='J8OR5YIL1CQXKS99U' where id=5; -update noar ti set v0='J8OR5YIL1CQXKS99U' where id=5; -update noar tt set b2='3FGU0QIE65G9LU' where id=5; -update noar ti set b2='3FGU0QIE65G9LU' where id=5; -update noar tt set v0='18V36V8P5' where id=6; -update noar ti set v0='18V36V8P5' where id=6; -update noar tt set b0='0UAJED77GUAIQTE7ZM2L4ZHVJRIDP8' where id=6; -update noar ti set b0='0UAJED77GUAIQTE7ZM2L4ZHVJRIDP8' where id=6; -update noar tt set v0='FRZGUT0NEEJRZ2KMV4ULIZ' where id=6; -update noar ti set v0='FRZGUT0NEEJRZ2KMV4ULIZ' where id=6; -update noar tt set b1='22HT12J432ZQMWTATX7B3D1JKRC6DG' where id=6; -update noar ti set b1='22HT12J432ZQMWTATX7B3D1JKRC6DG' where id=6; -update noar tt set v0='WTKIR5E' where id=6; -update noar ti set v0='WTKIR5E' where id=6; -update noar tt set b2='6' where id=6; -update noar ti set b2='6' where id=6; -update noar tt set v0='L8DZP8UC2KYA9ZYJO89QJM6JR' where id=7; -update noar ti set v0='L8DZP8UC2KYA9ZYJO89QJM6JR' where id=7; -update noar tt set b0='MRFCSM0VL0XK9SKBWVF38FYGW2UQU' where id=7; -update noar ti set b0='MRFCSM0VL0XK9SKBWVF38FYGW2UQU' where id=7; -update noar tt set v0='6T8BM' where id=7; -update noar ti set v0='6T8BM' where id=7; -update noar tt set b1='OIC607YT9KM5BPX27XZNZ1YRLLPWU' where id=7; -update noar ti set b1='OIC607YT9KM5BPX27XZNZ1YRLLPWU' where id=7; -update noar tt set v0='LUFTRKXOPVCA' where id=7; -update noar ti set v0='LUFTRKXOPVCA' where id=7; -update noar tt set b2='T295EWPNS33SQ1ODAIU' where id=7; -update noar ti set b2='T295EWPNS33SQ1ODAIU' where id=7; -update noar tt set v0='1GEH0CM6583MELPXY0' where id=8; -update noar ti set v0='1GEH0CM6583MELPXY0' where id=8; -update noar tt set b0='7O2VVWLCTZQLC3Z4EPOX72FO' where id=8; -update noar ti set b0='7O2VVWLCTZQLC3Z4EPOX72FO' where id=8; -update noar tt set v0='ITNM5XP3K6FE9H' where id=8; -update noar ti set v0='ITNM5XP3K6FE9H' where id=8; -update noar tt set b1='IT2U6T2VC60CO5W77E' where id=8; -update noar ti set b1='IT2U6T2VC60CO5W77E' where id=8; -update noar tt set v0='R5L3VX0' where id=8; -update noar ti set v0='R5L3VX0' where id=8; -update noar tt set b2='EWZL5PV1NFIPT5GP2AERUC9HOU' where id=8; -update noar ti set b2='EWZL5PV1NFIPT5GP2AERUC9HOU' where id=8; -update noar tt set v0='S4AT689IDOAY4EF' where id=9; -update noar ti set v0='S4AT689IDOAY4EF' where id=9; -update noar tt set b0='E33ICTT04MQNA0H905DTP8' where id=9; -update noar ti set b0='E33ICTT04MQNA0H905DTP8' where id=9; -update noar tt set v0='PWANA7K2W3ST7FOBCH' where id=9; -update noar ti set v0='PWANA7K2W3ST7FOBCH' where id=9; -update noar tt set b1='HNCRVBHT8OP93KA5N' where id=9; -update noar ti set b1='HNCRVBHT8OP93KA5N' where id=9; -update noar tt set v0='HYR66Y8N1CXQS7NVB9PJET41Q1KB0HT3' where id=9; -update noar ti set v0='HYR66Y8N1CXQS7NVB9PJET41Q1KB0HT3' where id=9; -update noar tt set b2='51U0I' where id=9; -update noar ti set b2='51U0I' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -f0 int null, -v0 varchar(32) null, -b0 blob null, -b1 longblob null, -b2 blob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='C36HZUEST1Q8EC2HG5G90QEHF0UEPM' where id=1; -update noar ti set v0='C36HZUEST1Q8EC2HG5G90QEHF0UEPM' where id=1; -update noar tt set b0='36J8JV9H7D5XAT9FT' where id=1; -update noar ti set b0='36J8JV9H7D5XAT9FT' where id=1; -update noar tt set v0='GEE8KPNXHKV4' where id=1; -update noar ti set v0='GEE8KPNXHKV4' where id=1; -update noar tt set b1='CI5FA2O3WT80G' where id=1; -update noar ti set b1='CI5FA2O3WT80G' where id=1; -update noar tt set v0='TO9' where id=1; -update noar ti set v0='TO9' where id=1; -update noar tt set b2='H61E9OWLF53K1LSZ81H6455ZVX5TX0' where id=1; -update noar ti set b2='H61E9OWLF53K1LSZ81H6455ZVX5TX0' where id=1; -update noar tt set v0='L5STQPKFZO3' where id=2; -update noar ti set v0='L5STQPKFZO3' where id=2; -update noar tt set b0='4MPAC26ADRUH' where id=2; -update noar ti set b0='4MPAC26ADRUH' where id=2; -update noar tt set v0='45GNQO833T2YBXQCY' where id=2; -update noar ti set v0='45GNQO833T2YBXQCY' where id=2; -update noar tt set b1='PVHSKPZFXQOPX4S6G0U70XWWC' where id=2; -update noar ti set b1='PVHSKPZFXQOPX4S6G0U70XWWC' where id=2; -update noar tt set v0='94D8D9Z2CCQ' where id=2; -update noar ti set v0='94D8D9Z2CCQ' where id=2; -update noar tt set b2='POU6TEUFEZQTRSCYJ' where id=2; -update noar ti set b2='POU6TEUFEZQTRSCYJ' where id=2; -update noar tt set v0='N2WYWRJXRF4RCYWIZCNZ' where id=3; -update noar ti set v0='N2WYWRJXRF4RCYWIZCNZ' where id=3; -update noar tt set b0='BX05GCHRSVNI6O57N9YLHRENNYT5' where id=3; -update noar ti set b0='BX05GCHRSVNI6O57N9YLHRENNYT5' where id=3; -update noar tt set v0='4AKF9ZHRX4UCAQ6JDW' where id=3; -update noar ti set v0='4AKF9ZHRX4UCAQ6JDW' where id=3; -update noar tt set b1='NDWYANAY0DVBOJYFGCIGJR1MTJ3OQV' where id=3; -update noar ti set b1='NDWYANAY0DVBOJYFGCIGJR1MTJ3OQV' where id=3; -update noar tt set v0='X6I' where id=3; -update noar ti set v0='X6I' where id=3; -update noar tt set b2='DBUDX1WO3' where id=3; -update noar ti set b2='DBUDX1WO3' where id=3; -update noar tt set v0='6SFF' where id=4; -update noar ti set v0='6SFF' where id=4; -update noar tt set b0='NEGS' where id=4; -update noar ti set b0='NEGS' where id=4; -update noar tt set v0='385AH0O2Y7FILZ' where id=4; -update noar ti set v0='385AH0O2Y7FILZ' where id=4; -update noar tt set b1='585' where id=4; -update noar ti set b1='585' where id=4; -update noar tt set v0='KI48I2P9C732XWNYCMBDD5JCN2E' where id=4; -update noar ti set v0='KI48I2P9C732XWNYCMBDD5JCN2E' where id=4; -update noar tt set b2='0Y86B1ER520HP1' where id=4; -update noar ti set b2='0Y86B1ER520HP1' where id=4; -update noar tt set v0='A95PPO36G56FH' where id=5; -update noar ti set v0='A95PPO36G56FH' where id=5; -update noar tt set b0='I55BFWUUMEPTCVFLLONIOWW1' where id=5; -update noar ti set b0='I55BFWUUMEPTCVFLLONIOWW1' where id=5; -update noar tt set v0='DRDVL57LT3XKW6VIWG1QDJF7' where id=5; -update noar ti set v0='DRDVL57LT3XKW6VIWG1QDJF7' where id=5; -update noar tt set b1='IF3UHWP5JMHIY' where id=5; -update noar ti set b1='IF3UHWP5JMHIY' where id=5; -update noar tt set v0='R4OA1UY3M' where id=5; -update noar ti set v0='R4OA1UY3M' where id=5; -update noar tt set b2='CPTRMBQY5N7YCM' where id=5; -update noar ti set b2='CPTRMBQY5N7YCM' where id=5; -update noar tt set v0='81Z' where id=6; -update noar ti set v0='81Z' where id=6; -update noar tt set b0='S5KJGLJIR9' where id=6; -update noar ti set b0='S5KJGLJIR9' where id=6; -update noar tt set v0='NHU' where id=6; -update noar ti set v0='NHU' where id=6; -update noar tt set b1='0EUZV632ERWLB1' where id=6; -update noar ti set b1='0EUZV632ERWLB1' where id=6; -update noar tt set v0='8QP4PM' where id=6; -update noar ti set v0='8QP4PM' where id=6; -update noar tt set b2='EIQGP4WULQLLUCFPCB' where id=6; -update noar ti set b2='EIQGP4WULQLLUCFPCB' where id=6; -update noar tt set v0='P9129VX9AV' where id=7; -update noar ti set v0='P9129VX9AV' where id=7; -update noar tt set b0='OGNDP01FAQVB0U5JIEVVYF4WD9V3' where id=7; -update noar ti set b0='OGNDP01FAQVB0U5JIEVVYF4WD9V3' where id=7; -update noar tt set v0='4NGNQ' where id=7; -update noar ti set v0='4NGNQ' where id=7; -update noar tt set b1='YHJUSH1TW5VTFR3ZJ72H8GIO4JNMR5Z' where id=7; -update noar ti set b1='YHJUSH1TW5VTFR3ZJ72H8GIO4JNMR5Z' where id=7; -update noar tt set v0='U' where id=7; -update noar ti set v0='U' where id=7; -update noar tt set b2='IQILSVHC4XDZ7WC3IYPQXHP2TWUQ' where id=7; -update noar ti set b2='IQILSVHC4XDZ7WC3IYPQXHP2TWUQ' where id=7; -update noar tt set v0='8LUENSHEX9S688SM78A' where id=8; -update noar ti set v0='8LUENSHEX9S688SM78A' where id=8; -update noar tt set b0='XLVG4OJ4ZFUF7ZHE3HPU1D5OER7XRHB' where id=8; -update noar ti set b0='XLVG4OJ4ZFUF7ZHE3HPU1D5OER7XRHB' where id=8; -update noar tt set v0='1LEQX' where id=8; -update noar ti set v0='1LEQX' where id=8; -update noar tt set b1='9JGWRVXLZV' where id=8; -update noar ti set b1='9JGWRVXLZV' where id=8; -update noar tt set v0='PW1HZUORRP39YX9P241NP7TJRCE0' where id=8; -update noar ti set v0='PW1HZUORRP39YX9P241NP7TJRCE0' where id=8; -update noar tt set b2='R88X9PPI' where id=8; -update noar ti set b2='R88X9PPI' where id=8; -update noar tt set v0='WKNZBTGV4UBC97X7U6PNHKBEZF' where id=9; -update noar ti set v0='WKNZBTGV4UBC97X7U6PNHKBEZF' where id=9; -update noar tt set b0='26S02F8E' where id=9; -update noar ti set b0='26S02F8E' where id=9; -update noar tt set v0='R4AV9PCU5A' where id=9; -update noar ti set v0='R4AV9PCU5A' where id=9; -update noar tt set b1='7L' where id=9; -update noar ti set b1='7L' where id=9; -update noar tt set v0='3NOUSJXWDRAAWI48CEDPULQ54Y6CZ' where id=9; -update noar ti set v0='3NOUSJXWDRAAWI48CEDPULQ54Y6CZ' where id=9; -update noar tt set b2='Y' where id=9; -update noar ti set b2='Y' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -f0 int null, -v0 varchar(256) null, -b0 blob null, -b1 longblob null, -b2 blob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='FUPYHDGNF1A06G' where id=1; -update noar ti set v0='FUPYHDGNF1A06G' where id=1; -update noar tt set b0='F43ST7XYO' where id=1; -update noar ti set b0='F43ST7XYO' where id=1; -update noar tt set v0='HLWBWJU3' where id=1; -update noar ti set v0='HLWBWJU3' where id=1; -update noar tt set b1='9DY77CE8KVVVBNTJ4T2QDWU5XZWCQX6Z' where id=1; -update noar ti set b1='9DY77CE8KVVVBNTJ4T2QDWU5XZWCQX6Z' where id=1; -update noar tt set v0='I03CD1MEE1OQUYW56HE8C1R7BIT7FQFJ' where id=1; -update noar ti set v0='I03CD1MEE1OQUYW56HE8C1R7BIT7FQFJ' where id=1; -update noar tt set b2='9V9X35I5XURE' where id=1; -update noar ti set b2='9V9X35I5XURE' where id=1; -update noar tt set v0='9B8X4BB' where id=2; -update noar ti set v0='9B8X4BB' where id=2; -update noar tt set b0='97O' where id=2; -update noar ti set b0='97O' where id=2; -update noar tt set v0='WYFH' where id=2; -update noar ti set v0='WYFH' where id=2; -update noar tt set b1='H1WR5' where id=2; -update noar ti set b1='H1WR5' where id=2; -update noar tt set v0='MDRL1M5SJ8F' where id=2; -update noar ti set v0='MDRL1M5SJ8F' where id=2; -update noar tt set b2='0HZNM33WJQN0' where id=2; -update noar ti set b2='0HZNM33WJQN0' where id=2; -update noar tt set v0='8LT3EP7YEXMAE2I0I7M14D' where id=3; -update noar ti set v0='8LT3EP7YEXMAE2I0I7M14D' where id=3; -update noar tt set b0='7C4I5AKJMUWR9286XQ70SAS2M' where id=3; -update noar ti set b0='7C4I5AKJMUWR9286XQ70SAS2M' where id=3; -update noar tt set v0='MVEG6KJCG2RIC34ODHCMIGY' where id=3; -update noar ti set v0='MVEG6KJCG2RIC34ODHCMIGY' where id=3; -update noar tt set b1='PGOKP785' where id=3; -update noar ti set b1='PGOKP785' where id=3; -update noar tt set v0='CCTK7UWCEFUVB45O9NYOI' where id=3; -update noar ti set v0='CCTK7UWCEFUVB45O9NYOI' where id=3; -update noar tt set b2='T13VC' where id=3; -update noar ti set b2='T13VC' where id=3; -update noar tt set v0='VEI303DC6XMZ0HBYE4SKH' where id=4; -update noar ti set v0='VEI303DC6XMZ0HBYE4SKH' where id=4; -update noar tt set b0='914GUTMT1DOB1OLPE' where id=4; -update noar ti set b0='914GUTMT1DOB1OLPE' where id=4; -update noar tt set v0='7IUU' where id=4; -update noar ti set v0='7IUU' where id=4; -update noar tt set b1='2VN2UWTC4TRE' where id=4; -update noar ti set b1='2VN2UWTC4TRE' where id=4; -update noar tt set v0='O66JHIVO1AGBFCQ4EZQBG0B' where id=4; -update noar ti set v0='O66JHIVO1AGBFCQ4EZQBG0B' where id=4; -update noar tt set b2='C5P8' where id=4; -update noar ti set b2='C5P8' where id=4; -update noar tt set v0='QR05WA5PD' where id=5; -update noar ti set v0='QR05WA5PD' where id=5; -update noar tt set b0='84JTVN8ATF' where id=5; -update noar ti set b0='84JTVN8ATF' where id=5; -update noar tt set v0='JT94DMCHFIMFVLI2RFC5FPVCBXOCP' where id=5; -update noar ti set v0='JT94DMCHFIMFVLI2RFC5FPVCBXOCP' where id=5; -update noar tt set b1='DVYT7VF0VDS2G9' where id=5; -update noar ti set b1='DVYT7VF0VDS2G9' where id=5; -update noar tt set v0='7BX67U528R6ROEAHW0II9ZR9' where id=5; -update noar ti set v0='7BX67U528R6ROEAHW0II9ZR9' where id=5; -update noar tt set b2='G2DCYIM9E5A0XIER438YC' where id=5; -update noar ti set b2='G2DCYIM9E5A0XIER438YC' where id=5; -update noar tt set v0='3L64' where id=6; -update noar ti set v0='3L64' where id=6; -update noar tt set b0='DKDMRE' where id=6; -update noar ti set b0='DKDMRE' where id=6; -update noar tt set v0='LSV1G944Q' where id=6; -update noar ti set v0='LSV1G944Q' where id=6; -update noar tt set b1='OXY68XHZL5GFO3XQ1G182TX' where id=6; -update noar ti set b1='OXY68XHZL5GFO3XQ1G182TX' where id=6; -update noar tt set v0='XNEOTPHKBPLPZ7UFYE9M9E' where id=6; -update noar ti set v0='XNEOTPHKBPLPZ7UFYE9M9E' where id=6; -update noar tt set b2='V9M2EEEO1HG7M1KHP8EBLKHJT8' where id=6; -update noar ti set b2='V9M2EEEO1HG7M1KHP8EBLKHJT8' where id=6; -update noar tt set v0='11SAC4M26X2X9RZJ7K23OK' where id=7; -update noar ti set v0='11SAC4M26X2X9RZJ7K23OK' where id=7; -update noar tt set b0='IK5XR3J130Y3LKRKTG8L1X187NQJ' where id=7; -update noar ti set b0='IK5XR3J130Y3LKRKTG8L1X187NQJ' where id=7; -update noar tt set v0='3D9QRSJ' where id=7; -update noar ti set v0='3D9QRSJ' where id=7; -update noar tt set b1='NTSTZI07ZQI4BDILUXDIKWC7PCLTA' where id=7; -update noar ti set b1='NTSTZI07ZQI4BDILUXDIKWC7PCLTA' where id=7; -update noar tt set v0='H6D1XBTNP8SZDINQXUO4I' where id=7; -update noar ti set v0='H6D1XBTNP8SZDINQXUO4I' where id=7; -update noar tt set b2='8FT' where id=7; -update noar ti set b2='8FT' where id=7; -update noar tt set v0='CLQN8TD9WRT8GOVGA9OMWAN9LTM100' where id=8; -update noar ti set v0='CLQN8TD9WRT8GOVGA9OMWAN9LTM100' where id=8; -update noar tt set b0='4L7LCGMES48M' where id=8; -update noar ti set b0='4L7LCGMES48M' where id=8; -update noar tt set v0='VUJ87D0CMPOFNG' where id=8; -update noar ti set v0='VUJ87D0CMPOFNG' where id=8; -update noar tt set b1='SYB3DUANMPK4IXEJMOZO7MOT' where id=8; -update noar ti set b1='SYB3DUANMPK4IXEJMOZO7MOT' where id=8; -update noar tt set v0='LJ29Y07Q6DJAE30N' where id=8; -update noar ti set v0='LJ29Y07Q6DJAE30N' where id=8; -update noar tt set b2='5AWE6LXUB6FIR' where id=8; -update noar ti set b2='5AWE6LXUB6FIR' where id=8; -update noar tt set v0='473NI0VBUSDFZ23K1AJI' where id=9; -update noar ti set v0='473NI0VBUSDFZ23K1AJI' where id=9; -update noar tt set b0='P51Z' where id=9; -update noar ti set b0='P51Z' where id=9; -update noar tt set v0='FRAA6BL9WJNW41FVYV9QOD' where id=9; -update noar ti set v0='FRAA6BL9WJNW41FVYV9QOD' where id=9; -update noar tt set b1='6' where id=9; -update noar ti set b1='6' where id=9; -update noar tt set v0='1PBUUP4FQ7JM0X7UI74' where id=9; -update noar ti set v0='1PBUUP4FQ7JM0X7UI74' where id=9; -update noar tt set b2='QR0UZI72K5L29M5OLZ4SVRK' where id=9; -update noar ti set b2='QR0UZI72K5L29M5OLZ4SVRK' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -f0 int not null, -v0 varchar(32) not null, -b0 blob not null, -b1 longblob not null, -b2 blob not null -) engine=tokudb; -insert into tt values (1,0,'','','',''); -insert into tt values (2,0,'','','',''); -insert into tt values (3,0,'','','',''); -insert into tt values (4,0,'','','',''); -insert into tt values (5,0,'','','',''); -insert into tt values (6,0,'','','',''); -insert into tt values (7,0,'','','',''); -insert into tt values (8,0,'','','',''); -insert into tt values (9,0,'','','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='AWFE8OQ1E1FO616TR7OA8ZTDT' where id=1; -update noar ti set v0='AWFE8OQ1E1FO616TR7OA8ZTDT' where id=1; -update noar tt set b0='7M102Z0M5R8EXZA4MI' where id=1; -update noar ti set b0='7M102Z0M5R8EXZA4MI' where id=1; -update noar tt set v0='BZG96LW0GOYAO' where id=1; -update noar ti set v0='BZG96LW0GOYAO' where id=1; -update noar tt set b1='T7Z89JTW0OEH13HF' where id=1; -update noar ti set b1='T7Z89JTW0OEH13HF' where id=1; -update noar tt set v0='91320WY5GSJA6N65DXCONIX163S7' where id=1; -update noar ti set v0='91320WY5GSJA6N65DXCONIX163S7' where id=1; -update noar tt set b2='IF0X0DEUDQOP2BIFVD' where id=1; -update noar ti set b2='IF0X0DEUDQOP2BIFVD' where id=1; -update noar tt set v0='Q0TQ9DG5BEENYOCHS03TUWRJG3A' where id=2; -update noar ti set v0='Q0TQ9DG5BEENYOCHS03TUWRJG3A' where id=2; -update noar tt set b0='YE4X5D3SMYWLRW2ZP5' where id=2; -update noar ti set b0='YE4X5D3SMYWLRW2ZP5' where id=2; -update noar tt set v0='SSLVY5' where id=2; -update noar ti set v0='SSLVY5' where id=2; -update noar tt set b1='7WZ18ILWYI5GC61L7VET3' where id=2; -update noar ti set b1='7WZ18ILWYI5GC61L7VET3' where id=2; -update noar tt set v0='J' where id=2; -update noar ti set v0='J' where id=2; -update noar tt set b2='05X1RO4GKWOYUP3K0SKDLA86Z1XX6BT' where id=2; -update noar ti set b2='05X1RO4GKWOYUP3K0SKDLA86Z1XX6BT' where id=2; -update noar tt set v0='M5MQVR' where id=3; -update noar ti set v0='M5MQVR' where id=3; -update noar tt set b0='TIR2UKCSOFMYUGO5472TD5RT' where id=3; -update noar ti set b0='TIR2UKCSOFMYUGO5472TD5RT' where id=3; -update noar tt set v0='FT2LNNOJWJFVG14IW' where id=3; -update noar ti set v0='FT2LNNOJWJFVG14IW' where id=3; -update noar tt set b1='9TOOWAH' where id=3; -update noar ti set b1='9TOOWAH' where id=3; -update noar tt set v0='XJ9K78' where id=3; -update noar ti set v0='XJ9K78' where id=3; -update noar tt set b2='ESBLTK' where id=3; -update noar ti set b2='ESBLTK' where id=3; -update noar tt set v0='7O29PDQQNPO0NFH4DPQXZVVE9F' where id=4; -update noar ti set v0='7O29PDQQNPO0NFH4DPQXZVVE9F' where id=4; -update noar tt set b0='0HBYFECN9ASG0NR4TQDID0ZCM9L' where id=4; -update noar ti set b0='0HBYFECN9ASG0NR4TQDID0ZCM9L' where id=4; -update noar tt set v0='VSPY1QPYTK3YQ9K6JB5H4DM73R' where id=4; -update noar ti set v0='VSPY1QPYTK3YQ9K6JB5H4DM73R' where id=4; -update noar tt set b1='WK7AB8INJZCO3DL' where id=4; -update noar ti set b1='WK7AB8INJZCO3DL' where id=4; -update noar tt set v0='HM8L2S28FSA2HDQS7MINDGT' where id=4; -update noar ti set v0='HM8L2S28FSA2HDQS7MINDGT' where id=4; -update noar tt set b2='ACW' where id=4; -update noar ti set b2='ACW' where id=4; -update noar tt set v0='OAOKG5L8IRQ8OZ18ZI2BRF' where id=5; -update noar ti set v0='OAOKG5L8IRQ8OZ18ZI2BRF' where id=5; -update noar tt set b0='K1' where id=5; -update noar ti set b0='K1' where id=5; -update noar tt set v0='L0Q6TG79RL' where id=5; -update noar ti set v0='L0Q6TG79RL' where id=5; -update noar tt set b1='WDCNMFM31AKKEDRPI3ZIQ16M' where id=5; -update noar ti set b1='WDCNMFM31AKKEDRPI3ZIQ16M' where id=5; -update noar tt set v0='GRB3S6LSLPCLQDNAMLM0DRK9IH' where id=5; -update noar ti set v0='GRB3S6LSLPCLQDNAMLM0DRK9IH' where id=5; -update noar tt set b2='7NNEEXBI0ERDRW23FWRNP2KQRBLEQ' where id=5; -update noar ti set b2='7NNEEXBI0ERDRW23FWRNP2KQRBLEQ' where id=5; -update noar tt set v0='PHZD7ULA1W51VT6PMI739XZS' where id=6; -update noar ti set v0='PHZD7ULA1W51VT6PMI739XZS' where id=6; -update noar tt set b0='3945SX04W11J04Y' where id=6; -update noar ti set b0='3945SX04W11J04Y' where id=6; -update noar tt set v0='WUZ70OI7ZTV0KWOEMI' where id=6; -update noar ti set v0='WUZ70OI7ZTV0KWOEMI' where id=6; -update noar tt set b1='T' where id=6; -update noar ti set b1='T' where id=6; -update noar tt set v0='EZMOHX14Y0FR' where id=6; -update noar ti set v0='EZMOHX14Y0FR' where id=6; -update noar tt set b2='C74Q08PFU7SBTAEG52OAAHCO' where id=6; -update noar ti set b2='C74Q08PFU7SBTAEG52OAAHCO' where id=6; -update noar tt set v0='P' where id=7; -update noar ti set v0='P' where id=7; -update noar tt set b0='R6GJD95LYE46' where id=7; -update noar ti set b0='R6GJD95LYE46' where id=7; -update noar tt set v0='WG1CHOSEPFH36RKB6RY51WS' where id=7; -update noar ti set v0='WG1CHOSEPFH36RKB6RY51WS' where id=7; -update noar tt set b1='7XTOK' where id=7; -update noar ti set b1='7XTOK' where id=7; -update noar tt set v0='06YRMX0QP6SG6QUJJ19NKZXHR6' where id=7; -update noar ti set v0='06YRMX0QP6SG6QUJJ19NKZXHR6' where id=7; -update noar tt set b2='Q2HM9KS8CBTGYVCL3C31X' where id=7; -update noar ti set b2='Q2HM9KS8CBTGYVCL3C31X' where id=7; -update noar tt set v0='327KGVFXPA0316FT1ZA8XIAIX0H' where id=8; -update noar ti set v0='327KGVFXPA0316FT1ZA8XIAIX0H' where id=8; -update noar tt set b0='X3X361PXNR44Q6G5WIN5IRAVFIS5I' where id=8; -update noar ti set b0='X3X361PXNR44Q6G5WIN5IRAVFIS5I' where id=8; -update noar tt set v0='98UZSF9BUM1ROH0OV2' where id=8; -update noar ti set v0='98UZSF9BUM1ROH0OV2' where id=8; -update noar tt set b1='ZNCHZH8NQL' where id=8; -update noar ti set b1='ZNCHZH8NQL' where id=8; -update noar tt set v0='48FBHIG0N5XHHEA' where id=8; -update noar ti set v0='48FBHIG0N5XHHEA' where id=8; -update noar tt set b2='HUQ0S0HOHKD61ZZEOVR1LNV14H' where id=8; -update noar ti set b2='HUQ0S0HOHKD61ZZEOVR1LNV14H' where id=8; -update noar tt set v0='WIHJDOI6ILQLS833AI2R' where id=9; -update noar ti set v0='WIHJDOI6ILQLS833AI2R' where id=9; -update noar tt set b0='0UNZKDPCS' where id=9; -update noar ti set b0='0UNZKDPCS' where id=9; -update noar tt set v0='FZTQKCGIQS7HZGS2WF' where id=9; -update noar ti set v0='FZTQKCGIQS7HZGS2WF' where id=9; -update noar tt set b1='4IGWIHGSWCD96XWQVST4VQF5' where id=9; -update noar ti set b1='4IGWIHGSWCD96XWQVST4VQF5' where id=9; -update noar tt set v0='M9J50DDC5GT8KBKXWT97728CEEJ' where id=9; -update noar ti set v0='M9J50DDC5GT8KBKXWT97728CEEJ' where id=9; -update noar tt set b2='EKL1PKSRVRH40RFY' where id=9; -update noar ti set b2='EKL1PKSRVRH40RFY' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -f0 int not null, -v0 varchar(256) not null, -b0 blob not null, -b1 longblob not null, -b2 blob not null -) engine=tokudb; -insert into tt values (1,0,'','','',''); -insert into tt values (2,0,'','','',''); -insert into tt values (3,0,'','','',''); -insert into tt values (4,0,'','','',''); -insert into tt values (5,0,'','','',''); -insert into tt values (6,0,'','','',''); -insert into tt values (7,0,'','','',''); -insert into tt values (8,0,'','','',''); -insert into tt values (9,0,'','','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='ON34SW6GOI6YEEYHIT4T' where id=1; -update noar ti set v0='ON34SW6GOI6YEEYHIT4T' where id=1; -update noar tt set b0='3EEMUY3P90' where id=1; -update noar ti set b0='3EEMUY3P90' where id=1; -update noar tt set v0='TS' where id=1; -update noar ti set v0='TS' where id=1; -update noar tt set b1='RLHOOZDTBQ' where id=1; -update noar ti set b1='RLHOOZDTBQ' where id=1; -update noar tt set v0='NRWUFVX65P9X8MOWQ5GPFV' where id=1; -update noar ti set v0='NRWUFVX65P9X8MOWQ5GPFV' where id=1; -update noar tt set b2='Q4GQLMZ5BJIMDC' where id=1; -update noar ti set b2='Q4GQLMZ5BJIMDC' where id=1; -update noar tt set v0='K5NIM86I5JB1T2X8L6G8NS6OG6W' where id=2; -update noar ti set v0='K5NIM86I5JB1T2X8L6G8NS6OG6W' where id=2; -update noar tt set b0='FT36QBK4MBMEEM0SPLDRNJ' where id=2; -update noar ti set b0='FT36QBK4MBMEEM0SPLDRNJ' where id=2; -update noar tt set v0='7ZV6MWYKYGTW5BPOFL' where id=2; -update noar ti set v0='7ZV6MWYKYGTW5BPOFL' where id=2; -update noar tt set b1='X0RXBN4YT8MR8GKIGX2ZCCDG5DH' where id=2; -update noar ti set b1='X0RXBN4YT8MR8GKIGX2ZCCDG5DH' where id=2; -update noar tt set v0='G9AKVXO3' where id=2; -update noar ti set v0='G9AKVXO3' where id=2; -update noar tt set b2='OOBQ3OEFKS7E1H0SQYTJVPPJMEN4' where id=2; -update noar ti set b2='OOBQ3OEFKS7E1H0SQYTJVPPJMEN4' where id=2; -update noar tt set v0='4' where id=3; -update noar ti set v0='4' where id=3; -update noar tt set b0='X7IAILF08583IT1IY17V5ZFGIGHDWLX3' where id=3; -update noar ti set b0='X7IAILF08583IT1IY17V5ZFGIGHDWLX3' where id=3; -update noar tt set v0='NWXHVFO9Z' where id=3; -update noar ti set v0='NWXHVFO9Z' where id=3; -update noar tt set b1='XNIIUSPF3GWN2K1AFIEMS41' where id=3; -update noar ti set b1='XNIIUSPF3GWN2K1AFIEMS41' where id=3; -update noar tt set v0='LIGMTF924REBH0J' where id=3; -update noar ti set v0='LIGMTF924REBH0J' where id=3; -update noar tt set b2='RS10M9NA5F1J0GV' where id=3; -update noar ti set b2='RS10M9NA5F1J0GV' where id=3; -update noar tt set v0='LQ0MQIWDN98C408QFP' where id=4; -update noar ti set v0='LQ0MQIWDN98C408QFP' where id=4; -update noar tt set b0='RR9OW' where id=4; -update noar ti set b0='RR9OW' where id=4; -update noar tt set v0='BOYZEYFH2XSTMHCU71XKPZ6FD90QTV9X' where id=4; -update noar ti set v0='BOYZEYFH2XSTMHCU71XKPZ6FD90QTV9X' where id=4; -update noar tt set b1='W2QU4XKNZ511' where id=4; -update noar ti set b1='W2QU4XKNZ511' where id=4; -update noar tt set v0='1RWRMZD0KA5Y0BAU2WYJTP2ZWR' where id=4; -update noar ti set v0='1RWRMZD0KA5Y0BAU2WYJTP2ZWR' where id=4; -update noar tt set b2='7' where id=4; -update noar ti set b2='7' where id=4; -update noar tt set v0='EE' where id=5; -update noar ti set v0='EE' where id=5; -update noar tt set b0='5AL7CE92GT' where id=5; -update noar ti set b0='5AL7CE92GT' where id=5; -update noar tt set v0='BJIS15P17SGQP38FL1QPGZQODUGW4XZS' where id=5; -update noar ti set v0='BJIS15P17SGQP38FL1QPGZQODUGW4XZS' where id=5; -update noar tt set b1='Z1O6X4NWGQDI9I43JMSE4GN' where id=5; -update noar ti set b1='Z1O6X4NWGQDI9I43JMSE4GN' where id=5; -update noar tt set v0='FJTJIDC2ZPM9LXFGGQWRA' where id=5; -update noar ti set v0='FJTJIDC2ZPM9LXFGGQWRA' where id=5; -update noar tt set b2='T77QTT7V5LRZUAVHBVPD0ACV4F' where id=5; -update noar ti set b2='T77QTT7V5LRZUAVHBVPD0ACV4F' where id=5; -update noar tt set v0='GNT4L4J0V3' where id=6; -update noar ti set v0='GNT4L4J0V3' where id=6; -update noar tt set b0='FSGQ40SAQ2PW8G6BQJ3HOM302' where id=6; -update noar ti set b0='FSGQ40SAQ2PW8G6BQJ3HOM302' where id=6; -update noar tt set v0='YQ5' where id=6; -update noar ti set v0='YQ5' where id=6; -update noar tt set b1='XR80YMUF92' where id=6; -update noar ti set b1='XR80YMUF92' where id=6; -update noar tt set v0='PF309N31UIMVFI8EOHJOWQ6LO6NBMB5' where id=6; -update noar ti set v0='PF309N31UIMVFI8EOHJOWQ6LO6NBMB5' where id=6; -update noar tt set b2='VJC6LHQM9UZ3' where id=6; -update noar ti set b2='VJC6LHQM9UZ3' where id=6; -update noar tt set v0='YGQFQJG3Z7ZIBCL5EXT8' where id=7; -update noar ti set v0='YGQFQJG3Z7ZIBCL5EXT8' where id=7; -update noar tt set b0='FTGCCRU' where id=7; -update noar ti set b0='FTGCCRU' where id=7; -update noar tt set v0='WZAKE46509' where id=7; -update noar ti set v0='WZAKE46509' where id=7; -update noar tt set b1='CBUPWWIAHJVE67SCZ9G4TN7P' where id=7; -update noar ti set b1='CBUPWWIAHJVE67SCZ9G4TN7P' where id=7; -update noar tt set v0='RTJ03' where id=7; -update noar ti set v0='RTJ03' where id=7; -update noar tt set b2='VIB' where id=7; -update noar ti set b2='VIB' where id=7; -update noar tt set v0='NUCUQDLQF2TOBMSPFZ' where id=8; -update noar ti set v0='NUCUQDLQF2TOBMSPFZ' where id=8; -update noar tt set b0='5GHZ2PI8TS4L8WY4W' where id=8; -update noar ti set b0='5GHZ2PI8TS4L8WY4W' where id=8; -update noar tt set v0='JU40VR5TNNZKJCHMJ8' where id=8; -update noar ti set v0='JU40VR5TNNZKJCHMJ8' where id=8; -update noar tt set b1='QNG6B2' where id=8; -update noar ti set b1='QNG6B2' where id=8; -update noar tt set v0='CN4JHQQT26FW7AMLMDOCUJ83YB' where id=8; -update noar ti set v0='CN4JHQQT26FW7AMLMDOCUJ83YB' where id=8; -update noar tt set b2='IO6QT9W' where id=8; -update noar ti set b2='IO6QT9W' where id=8; -update noar tt set v0='GLT2IXMGUJKZF0ZO6Y0LIMPUR2RAR' where id=9; -update noar ti set v0='GLT2IXMGUJKZF0ZO6Y0LIMPUR2RAR' where id=9; -update noar tt set b0='GQOZIU419CI8AX' where id=9; -update noar ti set b0='GQOZIU419CI8AX' where id=9; -update noar tt set v0='G1847DTXD5K4TNE4DZKR7LW' where id=9; -update noar ti set v0='G1847DTXD5K4TNE4DZKR7LW' where id=9; -update noar tt set b1='N' where id=9; -update noar ti set b1='N' where id=9; -update noar tt set v0='CMHG24TNY0HE9JCV1K8QC2B3G' where id=9; -update noar ti set v0='CMHG24TNY0HE9JCV1K8QC2B3G' where id=9; -update noar tt set b2='YG759HGELB06KCMH0AGY' where id=9; -update noar ti set b2='YG759HGELB06KCMH0AGY' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -f0 int null, -v0 varchar(32) null, -b0 blob null, -b1 longblob null, -b2 mediumblob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='8Y3' where id=1; -update noar ti set v0='8Y3' where id=1; -update noar tt set b0='C7M20TP5NKK' where id=1; -update noar ti set b0='C7M20TP5NKK' where id=1; -update noar tt set v0='2ISG42PKQUYJ3' where id=1; -update noar ti set v0='2ISG42PKQUYJ3' where id=1; -update noar tt set b1='DJFRKU8X' where id=1; -update noar ti set b1='DJFRKU8X' where id=1; -update noar tt set v0='PEZLQW4KNI8KS99CT2C6AKZ1OK1' where id=1; -update noar ti set v0='PEZLQW4KNI8KS99CT2C6AKZ1OK1' where id=1; -update noar tt set b2='0FCRQVLB5DFDS3K6N26BCA1M1VMB403' where id=1; -update noar ti set b2='0FCRQVLB5DFDS3K6N26BCA1M1VMB403' where id=1; -update noar tt set v0='2U5V9ZSPD2MY3O25XXL2N6ZWB4Q6DWGE' where id=2; -update noar ti set v0='2U5V9ZSPD2MY3O25XXL2N6ZWB4Q6DWGE' where id=2; -update noar tt set b0='60O315' where id=2; -update noar ti set b0='60O315' where id=2; -update noar tt set v0='PFV4BEXLLRRNEEWTITGFSTS6' where id=2; -update noar ti set v0='PFV4BEXLLRRNEEWTITGFSTS6' where id=2; -update noar tt set b1='GFO8M01KOUXFD5A02OU3C4ZTGQZ8O' where id=2; -update noar ti set b1='GFO8M01KOUXFD5A02OU3C4ZTGQZ8O' where id=2; -update noar tt set v0='IZR1' where id=2; -update noar ti set v0='IZR1' where id=2; -update noar tt set b2='F6SCCPN2NFEKZP79N' where id=2; -update noar ti set b2='F6SCCPN2NFEKZP79N' where id=2; -update noar tt set v0='1IYS8D2OL30ZWU' where id=3; -update noar ti set v0='1IYS8D2OL30ZWU' where id=3; -update noar tt set b0='DMPWIBQCEAZ9RTHU' where id=3; -update noar ti set b0='DMPWIBQCEAZ9RTHU' where id=3; -update noar tt set v0='ONDJ7B94EN77IXSXEF23' where id=3; -update noar ti set v0='ONDJ7B94EN77IXSXEF23' where id=3; -update noar tt set b1='UR0WSHTBS4QZ' where id=3; -update noar ti set b1='UR0WSHTBS4QZ' where id=3; -update noar tt set v0='7TXALEXNOTPQFQG1YOTBCC' where id=3; -update noar ti set v0='7TXALEXNOTPQFQG1YOTBCC' where id=3; -update noar tt set b2='Y51ZCWRUE6UNVFLQE8QFGJBUTW7KEEW1' where id=3; -update noar ti set b2='Y51ZCWRUE6UNVFLQE8QFGJBUTW7KEEW1' where id=3; -update noar tt set v0='GQ4J9YUIOHP1XMALJDZG2' where id=4; -update noar ti set v0='GQ4J9YUIOHP1XMALJDZG2' where id=4; -update noar tt set b0='5D77OFM2RCP8K34C4877' where id=4; -update noar ti set b0='5D77OFM2RCP8K34C4877' where id=4; -update noar tt set v0='DPWBEJKK1' where id=4; -update noar ti set v0='DPWBEJKK1' where id=4; -update noar tt set b1='4PY93OUIDUL' where id=4; -update noar ti set b1='4PY93OUIDUL' where id=4; -update noar tt set v0='9B3QUDM74XNPELR4FOJ7YNUA8OAQQ' where id=4; -update noar ti set v0='9B3QUDM74XNPELR4FOJ7YNUA8OAQQ' where id=4; -update noar tt set b2='U2P' where id=4; -update noar ti set b2='U2P' where id=4; -update noar tt set v0='MVLAAO6ZZW0EP54ZHQW2QASI9HHFSSZK' where id=5; -update noar ti set v0='MVLAAO6ZZW0EP54ZHQW2QASI9HHFSSZK' where id=5; -update noar tt set b0='5DEZK0A28PXP9R45E4H' where id=5; -update noar ti set b0='5DEZK0A28PXP9R45E4H' where id=5; -update noar tt set v0='YL2LGG579J7' where id=5; -update noar ti set v0='YL2LGG579J7' where id=5; -update noar tt set b1='0N3U8H04ENSBB0J67AJU517IT81VU7W' where id=5; -update noar ti set b1='0N3U8H04ENSBB0J67AJU517IT81VU7W' where id=5; -update noar tt set v0='GGGSMOO69KWTJGNBRNNWLOG8PA' where id=5; -update noar ti set v0='GGGSMOO69KWTJGNBRNNWLOG8PA' where id=5; -update noar tt set b2='3BUA5Q' where id=5; -update noar ti set b2='3BUA5Q' where id=5; -update noar tt set v0='2AIXGG2USKTI8A' where id=6; -update noar ti set v0='2AIXGG2USKTI8A' where id=6; -update noar tt set b0='511JOA3UVHFJXLI2GYXZOXXL19' where id=6; -update noar ti set b0='511JOA3UVHFJXLI2GYXZOXXL19' where id=6; -update noar tt set v0='YJ8YG420YXZAPER' where id=6; -update noar ti set v0='YJ8YG420YXZAPER' where id=6; -update noar tt set b1='TV52WC6AA7HTQ7RWVVZBUMS0N0H4IU' where id=6; -update noar ti set b1='TV52WC6AA7HTQ7RWVVZBUMS0N0H4IU' where id=6; -update noar tt set v0='9NTD8DMB8PTECD5MXFOEUJ5L87' where id=6; -update noar ti set v0='9NTD8DMB8PTECD5MXFOEUJ5L87' where id=6; -update noar tt set b2='HQXNBEL9KYL2DPIHAVNLEKBAM1' where id=6; -update noar ti set b2='HQXNBEL9KYL2DPIHAVNLEKBAM1' where id=6; -update noar tt set v0='WY3LFGM0OTK3RXC8KO7TX3' where id=7; -update noar ti set v0='WY3LFGM0OTK3RXC8KO7TX3' where id=7; -update noar tt set b0='UYICPWZAKPO1DRVSEJRMFG88' where id=7; -update noar ti set b0='UYICPWZAKPO1DRVSEJRMFG88' where id=7; -update noar tt set v0='H4XGE' where id=7; -update noar ti set v0='H4XGE' where id=7; -update noar tt set b1='HKJEJF6' where id=7; -update noar ti set b1='HKJEJF6' where id=7; -update noar tt set v0='Q713SG03E' where id=7; -update noar ti set v0='Q713SG03E' where id=7; -update noar tt set b2='S4BAN' where id=7; -update noar ti set b2='S4BAN' where id=7; -update noar tt set v0='GC' where id=8; -update noar ti set v0='GC' where id=8; -update noar tt set b0='CR5YQDGXFHQ56V77W4LU1FZSR4GBRC2' where id=8; -update noar ti set b0='CR5YQDGXFHQ56V77W4LU1FZSR4GBRC2' where id=8; -update noar tt set v0='QVRCYS8SH1GYKWKLPQ6' where id=8; -update noar ti set v0='QVRCYS8SH1GYKWKLPQ6' where id=8; -update noar tt set b1='6CNGJHSOMOQSCZAN4' where id=8; -update noar ti set b1='6CNGJHSOMOQSCZAN4' where id=8; -update noar tt set v0='N' where id=8; -update noar ti set v0='N' where id=8; -update noar tt set b2='LF8JOERZ8TANILPUAN3I2O56F7YBBG4G' where id=8; -update noar ti set b2='LF8JOERZ8TANILPUAN3I2O56F7YBBG4G' where id=8; -update noar tt set v0='RZ5TQBROVDMBNWF2F6BE8MNG946' where id=9; -update noar ti set v0='RZ5TQBROVDMBNWF2F6BE8MNG946' where id=9; -update noar tt set b0='OOHO1L' where id=9; -update noar ti set b0='OOHO1L' where id=9; -update noar tt set v0='18VCHBJ7W4KJY6CQDY' where id=9; -update noar ti set v0='18VCHBJ7W4KJY6CQDY' where id=9; -update noar tt set b1='X5BCUCM9VEDYYIAY5FZTNJ5W' where id=9; -update noar ti set b1='X5BCUCM9VEDYYIAY5FZTNJ5W' where id=9; -update noar tt set v0='Y3887D8R2CGZYP7AO4G8TTO7' where id=9; -update noar ti set v0='Y3887D8R2CGZYP7AO4G8TTO7' where id=9; -update noar tt set b2='MEOZ2COU46VAAX4' where id=9; -update noar ti set b2='MEOZ2COU46VAAX4' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -f0 int null, -v0 varchar(256) null, -b0 blob null, -b1 longblob null, -b2 mediumblob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='RP7CWTP0UNYRTSVWJ' where id=1; -update noar ti set v0='RP7CWTP0UNYRTSVWJ' where id=1; -update noar tt set b0='H2' where id=1; -update noar ti set b0='H2' where id=1; -update noar tt set v0='0BYL4R8G9HND4VMWMNEOQYO9' where id=1; -update noar ti set v0='0BYL4R8G9HND4VMWMNEOQYO9' where id=1; -update noar tt set b1='74PLQCVRJCRFHKJ07980K4' where id=1; -update noar ti set b1='74PLQCVRJCRFHKJ07980K4' where id=1; -update noar tt set v0='MK7QYEG8UCHEHAMZ2JQKP' where id=1; -update noar ti set v0='MK7QYEG8UCHEHAMZ2JQKP' where id=1; -update noar tt set b2='VNS6MMZLULKB5SU9' where id=1; -update noar ti set b2='VNS6MMZLULKB5SU9' where id=1; -update noar tt set v0='96EA6JRIE0MHA74K2KZXMWBSBK' where id=2; -update noar ti set v0='96EA6JRIE0MHA74K2KZXMWBSBK' where id=2; -update noar tt set b0='3M1LFR91' where id=2; -update noar ti set b0='3M1LFR91' where id=2; -update noar tt set v0='06YHVUESSO3LYS396W6BT1N5' where id=2; -update noar ti set v0='06YHVUESSO3LYS396W6BT1N5' where id=2; -update noar tt set b1='I90L6' where id=2; -update noar ti set b1='I90L6' where id=2; -update noar tt set v0='QJLNAMAIIDUG' where id=2; -update noar ti set v0='QJLNAMAIIDUG' where id=2; -update noar tt set b2='A171AT8ZDPY2OBR4S9' where id=2; -update noar ti set b2='A171AT8ZDPY2OBR4S9' where id=2; -update noar tt set v0='IKZBS4K2' where id=3; -update noar ti set v0='IKZBS4K2' where id=3; -update noar tt set b0='20LSQ9JLF7U0XTML' where id=3; -update noar ti set b0='20LSQ9JLF7U0XTML' where id=3; -update noar tt set v0='EXFXU7IHYHLM1Q7DSIXH5RKJJICBH6' where id=3; -update noar ti set v0='EXFXU7IHYHLM1Q7DSIXH5RKJJICBH6' where id=3; -update noar tt set b1='TJ8ZKT1NVUS918LZTFZ' where id=3; -update noar ti set b1='TJ8ZKT1NVUS918LZTFZ' where id=3; -update noar tt set v0='E30DI811ATKH5LX37NGY9COGEK' where id=3; -update noar ti set v0='E30DI811ATKH5LX37NGY9COGEK' where id=3; -update noar tt set b2='GEN6IEOKW3R' where id=3; -update noar ti set b2='GEN6IEOKW3R' where id=3; -update noar tt set v0='VLBNSU6647' where id=4; -update noar ti set v0='VLBNSU6647' where id=4; -update noar tt set b0='F7BZVRUAUUJGS2ZIVILP7U' where id=4; -update noar ti set b0='F7BZVRUAUUJGS2ZIVILP7U' where id=4; -update noar tt set v0='6VGCON4QPOA483EDJVG1CS6L03L' where id=4; -update noar ti set v0='6VGCON4QPOA483EDJVG1CS6L03L' where id=4; -update noar tt set b1='6VOAVF' where id=4; -update noar ti set b1='6VOAVF' where id=4; -update noar tt set v0='DHGRTS4E1MLFO' where id=4; -update noar ti set v0='DHGRTS4E1MLFO' where id=4; -update noar tt set b2='VSNUPD' where id=4; -update noar ti set b2='VSNUPD' where id=4; -update noar tt set v0='X6RI4L2Z05NM5K0Y84K6W8R2' where id=5; -update noar ti set v0='X6RI4L2Z05NM5K0Y84K6W8R2' where id=5; -update noar tt set b0='Q3CPKIN7AWZC' where id=5; -update noar ti set b0='Q3CPKIN7AWZC' where id=5; -update noar tt set v0='MP8YMBMBNS' where id=5; -update noar ti set v0='MP8YMBMBNS' where id=5; -update noar tt set b1='A4OPRVH33' where id=5; -update noar ti set b1='A4OPRVH33' where id=5; -update noar tt set v0='ITJG7Y1DTTGHZ9HAXAOOFJVQ01HF4G' where id=5; -update noar ti set v0='ITJG7Y1DTTGHZ9HAXAOOFJVQ01HF4G' where id=5; -update noar tt set b2='5RGR4DZQ43CDXC' where id=5; -update noar ti set b2='5RGR4DZQ43CDXC' where id=5; -update noar tt set v0='D87Y5WN' where id=6; -update noar ti set v0='D87Y5WN' where id=6; -update noar tt set b0='G' where id=6; -update noar ti set b0='G' where id=6; -update noar tt set v0='YQ752CPTFT1WSLNV6' where id=6; -update noar ti set v0='YQ752CPTFT1WSLNV6' where id=6; -update noar tt set b1='RA3HNHL8I52HH9JK' where id=6; -update noar ti set b1='RA3HNHL8I52HH9JK' where id=6; -update noar tt set v0='NX90WCPXSPNQRAB0ATBXRA7UYV2DSE' where id=6; -update noar ti set v0='NX90WCPXSPNQRAB0ATBXRA7UYV2DSE' where id=6; -update noar tt set b2='BBUGZA' where id=6; -update noar ti set b2='BBUGZA' where id=6; -update noar tt set v0='EJBS46I' where id=7; -update noar ti set v0='EJBS46I' where id=7; -update noar tt set b0='ZKBUAPNC4GXPS2M23143M7SQID' where id=7; -update noar ti set b0='ZKBUAPNC4GXPS2M23143M7SQID' where id=7; -update noar tt set v0='53U' where id=7; -update noar ti set v0='53U' where id=7; -update noar tt set b1='30GQ4PWIB6DFFUDL4GSPNEJCLIELT' where id=7; -update noar ti set b1='30GQ4PWIB6DFFUDL4GSPNEJCLIELT' where id=7; -update noar tt set v0='MEN8ZFINIGCU5YBK' where id=7; -update noar ti set v0='MEN8ZFINIGCU5YBK' where id=7; -update noar tt set b2='8TZX5AAU' where id=7; -update noar ti set b2='8TZX5AAU' where id=7; -update noar tt set v0='QQIRMPX87NJUOM7D5YU60G' where id=8; -update noar ti set v0='QQIRMPX87NJUOM7D5YU60G' where id=8; -update noar tt set b0='OPP90DRY9PMJ' where id=8; -update noar ti set b0='OPP90DRY9PMJ' where id=8; -update noar tt set v0='S5SZXMSXGTGAQAN10B3WGRF' where id=8; -update noar ti set v0='S5SZXMSXGTGAQAN10B3WGRF' where id=8; -update noar tt set b1='YQHIORNSVLA9L3' where id=8; -update noar ti set b1='YQHIORNSVLA9L3' where id=8; -update noar tt set v0='LWH7YTTWDTZGOVMB9CV' where id=8; -update noar ti set v0='LWH7YTTWDTZGOVMB9CV' where id=8; -update noar tt set b2='IR85OPJI921MQBRY88DK' where id=8; -update noar ti set b2='IR85OPJI921MQBRY88DK' where id=8; -update noar tt set v0='2BHA6BWS0PIGZCO42TQM38RUD25QD' where id=9; -update noar ti set v0='2BHA6BWS0PIGZCO42TQM38RUD25QD' where id=9; -update noar tt set b0='I6KHR6I' where id=9; -update noar ti set b0='I6KHR6I' where id=9; -update noar tt set v0='10LFBX0LYRDXGF4BJFKZQJNH0H' where id=9; -update noar ti set v0='10LFBX0LYRDXGF4BJFKZQJNH0H' where id=9; -update noar tt set b1='BLLTY4V80DHCX3DKDTMO1W0C66' where id=9; -update noar ti set b1='BLLTY4V80DHCX3DKDTMO1W0C66' where id=9; -update noar tt set v0='Q7JDC3F3C406B5OT10ALKRW64' where id=9; -update noar ti set v0='Q7JDC3F3C406B5OT10ALKRW64' where id=9; -update noar tt set b2='FO9726N1GEAAEUJ8ZVT84A' where id=9; -update noar ti set b2='FO9726N1GEAAEUJ8ZVT84A' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -f0 int not null, -v0 varchar(32) not null, -b0 blob not null, -b1 longblob not null, -b2 mediumblob not null -) engine=tokudb; -insert into tt values (1,0,'','','',''); -insert into tt values (2,0,'','','',''); -insert into tt values (3,0,'','','',''); -insert into tt values (4,0,'','','',''); -insert into tt values (5,0,'','','',''); -insert into tt values (6,0,'','','',''); -insert into tt values (7,0,'','','',''); -insert into tt values (8,0,'','','',''); -insert into tt values (9,0,'','','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='YVHFGA42' where id=1; -update noar ti set v0='YVHFGA42' where id=1; -update noar tt set b0='HPI' where id=1; -update noar ti set b0='HPI' where id=1; -update noar tt set v0='9KCNJW1XEJNCTJ' where id=1; -update noar ti set v0='9KCNJW1XEJNCTJ' where id=1; -update noar tt set b1='5HM7OIWEYRIJSF5YMFLYDPCVC' where id=1; -update noar ti set b1='5HM7OIWEYRIJSF5YMFLYDPCVC' where id=1; -update noar tt set v0='FARLMBQ' where id=1; -update noar ti set v0='FARLMBQ' where id=1; -update noar tt set b2='B0U7' where id=1; -update noar ti set b2='B0U7' where id=1; -update noar tt set v0='8DQNPHJFW9NZ' where id=2; -update noar ti set v0='8DQNPHJFW9NZ' where id=2; -update noar tt set b0='32PJQ7I' where id=2; -update noar ti set b0='32PJQ7I' where id=2; -update noar tt set v0='F3Z80HY0GY5SP54HPQU' where id=2; -update noar ti set v0='F3Z80HY0GY5SP54HPQU' where id=2; -update noar tt set b1='GIVWCKC8KQ4PM0H09D7SDG4' where id=2; -update noar ti set b1='GIVWCKC8KQ4PM0H09D7SDG4' where id=2; -update noar tt set v0='C27ZNH7GEPTN3CO5OPT58TYN83' where id=2; -update noar ti set v0='C27ZNH7GEPTN3CO5OPT58TYN83' where id=2; -update noar tt set b2='0FAX88NDEI52FNB66D064YQW' where id=2; -update noar ti set b2='0FAX88NDEI52FNB66D064YQW' where id=2; -update noar tt set v0='7Z04R5C2FY11XMMR0HA340YMR' where id=3; -update noar ti set v0='7Z04R5C2FY11XMMR0HA340YMR' where id=3; -update noar tt set b0='SHFIZYCW92IFDXA9UH0FDLVUXB' where id=3; -update noar ti set b0='SHFIZYCW92IFDXA9UH0FDLVUXB' where id=3; -update noar tt set v0='FE6TR27YNM1UJXY5HPJ2EU01BD' where id=3; -update noar ti set v0='FE6TR27YNM1UJXY5HPJ2EU01BD' where id=3; -update noar tt set b1='XNLAQ0QDRM502A' where id=3; -update noar ti set b1='XNLAQ0QDRM502A' where id=3; -update noar tt set v0='P8HOG53Z2OAN70M1M' where id=3; -update noar ti set v0='P8HOG53Z2OAN70M1M' where id=3; -update noar tt set b2='M' where id=3; -update noar ti set b2='M' where id=3; -update noar tt set v0='M0B5P0BNTNWKXVZY1SFGAF5TC0W4WT' where id=4; -update noar ti set v0='M0B5P0BNTNWKXVZY1SFGAF5TC0W4WT' where id=4; -update noar tt set b0='Y3Q16O' where id=4; -update noar ti set b0='Y3Q16O' where id=4; -update noar tt set v0='9M24D39D' where id=4; -update noar ti set v0='9M24D39D' where id=4; -update noar tt set b1='AUBI2H1VOR96B6PA4UKU0GLG4D' where id=4; -update noar ti set b1='AUBI2H1VOR96B6PA4UKU0GLG4D' where id=4; -update noar tt set v0='LBXCA1WZQT66K7PH2M1BHZKDWA7KAHH' where id=4; -update noar ti set v0='LBXCA1WZQT66K7PH2M1BHZKDWA7KAHH' where id=4; -update noar tt set b2='0P76Y65Y80Z8DWTM887J1ZD67BITJIK5' where id=4; -update noar ti set b2='0P76Y65Y80Z8DWTM887J1ZD67BITJIK5' where id=4; -update noar tt set v0='MKOA85VC40EUBGFZ08N5B6Y47THV' where id=5; -update noar ti set v0='MKOA85VC40EUBGFZ08N5B6Y47THV' where id=5; -update noar tt set b0='NKSCZJW6YW7O1BQ5FD' where id=5; -update noar ti set b0='NKSCZJW6YW7O1BQ5FD' where id=5; -update noar tt set v0='KG5U7CLTSLBNPASK6J00' where id=5; -update noar ti set v0='KG5U7CLTSLBNPASK6J00' where id=5; -update noar tt set b1='N7WKLPO9F5M6G7NNBQ4PS92O0' where id=5; -update noar ti set b1='N7WKLPO9F5M6G7NNBQ4PS92O0' where id=5; -update noar tt set v0='3GF7X10QAZCAEOJYHR' where id=5; -update noar ti set v0='3GF7X10QAZCAEOJYHR' where id=5; -update noar tt set b2='5E9UZGJVSA961R' where id=5; -update noar ti set b2='5E9UZGJVSA961R' where id=5; -update noar tt set v0='INOMBPQ13' where id=6; -update noar ti set v0='INOMBPQ13' where id=6; -update noar tt set b0='RV0VI8DJOQTFY1VRUBW8GPIQRIM' where id=6; -update noar ti set b0='RV0VI8DJOQTFY1VRUBW8GPIQRIM' where id=6; -update noar tt set v0='SLZYIEH0GSQO9Y976SJM7OY8WCAMC9P' where id=6; -update noar ti set v0='SLZYIEH0GSQO9Y976SJM7OY8WCAMC9P' where id=6; -update noar tt set b1='GQX6P0XBP8' where id=6; -update noar ti set b1='GQX6P0XBP8' where id=6; -update noar tt set v0='V5LX63EOP5E6HS2' where id=6; -update noar ti set v0='V5LX63EOP5E6HS2' where id=6; -update noar tt set b2='6GWMAJ3669T307F' where id=6; -update noar ti set b2='6GWMAJ3669T307F' where id=6; -update noar tt set v0='E9TZWKCMRA044PE' where id=7; -update noar ti set v0='E9TZWKCMRA044PE' where id=7; -update noar tt set b0='CYFARUDS8CWCU9DORMII02N' where id=7; -update noar ti set b0='CYFARUDS8CWCU9DORMII02N' where id=7; -update noar tt set v0='X0CD7MR8FBLJFLQE135KUJ' where id=7; -update noar ti set v0='X0CD7MR8FBLJFLQE135KUJ' where id=7; -update noar tt set b1='874BRIOJU3INV0ZO6RB6SRN8CW' where id=7; -update noar ti set b1='874BRIOJU3INV0ZO6RB6SRN8CW' where id=7; -update noar tt set v0='FCNKRMJ' where id=7; -update noar ti set v0='FCNKRMJ' where id=7; -update noar tt set b2='VIYE91QZ7VLSV65FV' where id=7; -update noar ti set b2='VIYE91QZ7VLSV65FV' where id=7; -update noar tt set v0='LO9ZZY3E49X86LDO7DPJL2' where id=8; -update noar ti set v0='LO9ZZY3E49X86LDO7DPJL2' where id=8; -update noar tt set b0='KEGTD0' where id=8; -update noar ti set b0='KEGTD0' where id=8; -update noar tt set v0='XTDJQZCQUBQJKY0MV7FF2GA8A2' where id=8; -update noar ti set v0='XTDJQZCQUBQJKY0MV7FF2GA8A2' where id=8; -update noar tt set b1='CR6RYHAGWYQCIC6MJXWZTXC75FJA' where id=8; -update noar ti set b1='CR6RYHAGWYQCIC6MJXWZTXC75FJA' where id=8; -update noar tt set v0='59DD448RJKL' where id=8; -update noar ti set v0='59DD448RJKL' where id=8; -update noar tt set b2='TYWB' where id=8; -update noar ti set b2='TYWB' where id=8; -update noar tt set v0='YCZ0R65OSXPKXYY8N' where id=9; -update noar ti set v0='YCZ0R65OSXPKXYY8N' where id=9; -update noar tt set b0='HVQ3C5DNERP4C' where id=9; -update noar ti set b0='HVQ3C5DNERP4C' where id=9; -update noar tt set v0='U4E9M3DB6978B0T' where id=9; -update noar ti set v0='U4E9M3DB6978B0T' where id=9; -update noar tt set b1='VQ2UVBMRQHOHUJ795XYEPJ40J71DX' where id=9; -update noar ti set b1='VQ2UVBMRQHOHUJ795XYEPJ40J71DX' where id=9; -update noar tt set v0='YD46X1R2QUQNP8M6G1LJWNA1WRXP3Y5A' where id=9; -update noar ti set v0='YD46X1R2QUQNP8M6G1LJWNA1WRXP3Y5A' where id=9; -update noar tt set b2='N1IIZHXVX1K4G0' where id=9; -update noar ti set b2='N1IIZHXVX1K4G0' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -f0 int not null, -v0 varchar(256) not null, -b0 blob not null, -b1 longblob not null, -b2 mediumblob not null -) engine=tokudb; -insert into tt values (1,0,'','','',''); -insert into tt values (2,0,'','','',''); -insert into tt values (3,0,'','','',''); -insert into tt values (4,0,'','','',''); -insert into tt values (5,0,'','','',''); -insert into tt values (6,0,'','','',''); -insert into tt values (7,0,'','','',''); -insert into tt values (8,0,'','','',''); -insert into tt values (9,0,'','','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='NZXJ90XMYGTZB0RPJ0SP' where id=1; -update noar ti set v0='NZXJ90XMYGTZB0RPJ0SP' where id=1; -update noar tt set b0='899T3TVG2LTTORAWL0EGI' where id=1; -update noar ti set b0='899T3TVG2LTTORAWL0EGI' where id=1; -update noar tt set v0='5WFSQGFMY56Z1' where id=1; -update noar ti set v0='5WFSQGFMY56Z1' where id=1; -update noar tt set b1='ZL4YN6BLROC' where id=1; -update noar ti set b1='ZL4YN6BLROC' where id=1; -update noar tt set v0='PB824GVF4HHU3Y2UVN' where id=1; -update noar ti set v0='PB824GVF4HHU3Y2UVN' where id=1; -update noar tt set b2='19GG3J899DOC8WC99RNU0RK26' where id=1; -update noar ti set b2='19GG3J899DOC8WC99RNU0RK26' where id=1; -update noar tt set v0='UY7IA5MSI3' where id=2; -update noar ti set v0='UY7IA5MSI3' where id=2; -update noar tt set b0='DAYFUPLX' where id=2; -update noar ti set b0='DAYFUPLX' where id=2; -update noar tt set v0='ST' where id=2; -update noar ti set v0='ST' where id=2; -update noar tt set b1='AJEDD3ZC41' where id=2; -update noar ti set b1='AJEDD3ZC41' where id=2; -update noar tt set v0='4HO1RIGUZBMM' where id=2; -update noar ti set v0='4HO1RIGUZBMM' where id=2; -update noar tt set b2='7MH6L7XZKI6' where id=2; -update noar ti set b2='7MH6L7XZKI6' where id=2; -update noar tt set v0='FYJO84BHH5XUW564WW6590JZC374' where id=3; -update noar ti set v0='FYJO84BHH5XUW564WW6590JZC374' where id=3; -update noar tt set b0='F78S' where id=3; -update noar ti set b0='F78S' where id=3; -update noar tt set v0='04AHZK5P' where id=3; -update noar ti set v0='04AHZK5P' where id=3; -update noar tt set b1='4Q27EG2ZAA470C0Q7CZIQFDQ' where id=3; -update noar ti set b1='4Q27EG2ZAA470C0Q7CZIQFDQ' where id=3; -update noar tt set v0='SE798L3AERBT' where id=3; -update noar ti set v0='SE798L3AERBT' where id=3; -update noar tt set b2='69NY2N5FI7NZSXDHX7WAFO4T2FX3GDJ' where id=3; -update noar ti set b2='69NY2N5FI7NZSXDHX7WAFO4T2FX3GDJ' where id=3; -update noar tt set v0='D1CS' where id=4; -update noar ti set v0='D1CS' where id=4; -update noar tt set b0='YZTDGG649QB218Y' where id=4; -update noar ti set b0='YZTDGG649QB218Y' where id=4; -update noar tt set v0='YYKDWWOPOCWEG' where id=4; -update noar ti set v0='YYKDWWOPOCWEG' where id=4; -update noar tt set b1='BGBJIOYDJ2ERACX1K2M' where id=4; -update noar ti set b1='BGBJIOYDJ2ERACX1K2M' where id=4; -update noar tt set v0='JJDK5' where id=4; -update noar ti set v0='JJDK5' where id=4; -update noar tt set b2='QHOYQLYML19MXXSKS43J59J' where id=4; -update noar ti set b2='QHOYQLYML19MXXSKS43J59J' where id=4; -update noar tt set v0='VCK2G203AHNV7EX891M730A193LV' where id=5; -update noar ti set v0='VCK2G203AHNV7EX891M730A193LV' where id=5; -update noar tt set b0='T2S0' where id=5; -update noar ti set b0='T2S0' where id=5; -update noar tt set v0='8' where id=5; -update noar ti set v0='8' where id=5; -update noar tt set b1='ELNBDW3T2PMKSEAQU' where id=5; -update noar ti set b1='ELNBDW3T2PMKSEAQU' where id=5; -update noar tt set v0='LFQ' where id=5; -update noar ti set v0='LFQ' where id=5; -update noar tt set b2='SJUBUB3UBQWIQA31KPVI9H' where id=5; -update noar ti set b2='SJUBUB3UBQWIQA31KPVI9H' where id=5; -update noar tt set v0='ZP3ZSSQZFF0T7D0YKQXH304XCO' where id=6; -update noar ti set v0='ZP3ZSSQZFF0T7D0YKQXH304XCO' where id=6; -update noar tt set b0='L0I6318E4K78XR0SLC9O17' where id=6; -update noar ti set b0='L0I6318E4K78XR0SLC9O17' where id=6; -update noar tt set v0='92XSYU2J9AKJWFFIK8KCWDC2VDQLU9' where id=6; -update noar ti set v0='92XSYU2J9AKJWFFIK8KCWDC2VDQLU9' where id=6; -update noar tt set b1='S2EH5G24' where id=6; -update noar ti set b1='S2EH5G24' where id=6; -update noar tt set v0='I2AWY65O5PQH64U7NA8Q8VHV8BRB8IBN' where id=6; -update noar ti set v0='I2AWY65O5PQH64U7NA8Q8VHV8BRB8IBN' where id=6; -update noar tt set b2='FRF1CMSYYDWPVO050SGL' where id=6; -update noar ti set b2='FRF1CMSYYDWPVO050SGL' where id=6; -update noar tt set v0='0RJQEC8XWVE' where id=7; -update noar ti set v0='0RJQEC8XWVE' where id=7; -update noar tt set b0='BGYPMLS81YE0UD9O0MQS' where id=7; -update noar ti set b0='BGYPMLS81YE0UD9O0MQS' where id=7; -update noar tt set v0='CTTJCMWL5PRDAHRQJZB' where id=7; -update noar ti set v0='CTTJCMWL5PRDAHRQJZB' where id=7; -update noar tt set b1='AXO03UIKOVM54NNSMY' where id=7; -update noar ti set b1='AXO03UIKOVM54NNSMY' where id=7; -update noar tt set v0='S' where id=7; -update noar ti set v0='S' where id=7; -update noar tt set b2='0FH7H9L93D6M7QQOKU5MBRLL' where id=7; -update noar ti set b2='0FH7H9L93D6M7QQOKU5MBRLL' where id=7; -update noar tt set v0='PABN14PGJECJNR2NVYGBR1IW9FXLH' where id=8; -update noar ti set v0='PABN14PGJECJNR2NVYGBR1IW9FXLH' where id=8; -update noar tt set b0='66ZN5LOOHOQJLVEBVV2MT7ZOS16OD' where id=8; -update noar ti set b0='66ZN5LOOHOQJLVEBVV2MT7ZOS16OD' where id=8; -update noar tt set v0='NDYQOZG3I453DTRYOUJB' where id=8; -update noar ti set v0='NDYQOZG3I453DTRYOUJB' where id=8; -update noar tt set b1='13XJRQY1BLHQOQJ' where id=8; -update noar ti set b1='13XJRQY1BLHQOQJ' where id=8; -update noar tt set v0='YGN19TJZC6WB94WKQAFG52SXDY2AX8O9' where id=8; -update noar ti set v0='YGN19TJZC6WB94WKQAFG52SXDY2AX8O9' where id=8; -update noar tt set b2='DKRRR284ZNLL4H6892' where id=8; -update noar ti set b2='DKRRR284ZNLL4H6892' where id=8; -update noar tt set v0='OJPSA' where id=9; -update noar ti set v0='OJPSA' where id=9; -update noar tt set b0='7ORBM8TWGMI73CHH4ER4' where id=9; -update noar ti set b0='7ORBM8TWGMI73CHH4ER4' where id=9; -update noar tt set v0='4HN7HS70D8UEW5ZQ84YG4T9IY8NDQ' where id=9; -update noar ti set v0='4HN7HS70D8UEW5ZQ84YG4T9IY8NDQ' where id=9; -update noar tt set b1='ZFVVPTZJI' where id=9; -update noar ti set b1='ZFVVPTZJI' where id=9; -update noar tt set v0='CU8YLJVTI98PLG7R7QCGSPAH3' where id=9; -update noar ti set v0='CU8YLJVTI98PLG7R7QCGSPAH3' where id=9; -update noar tt set b2='O9ZCW1UZH396XV0HQ8JWR6OF4V0S9QFV' where id=9; -update noar ti set b2='O9ZCW1UZH396XV0HQ8JWR6OF4V0S9QFV' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -f0 int null, -v0 varchar(32) null, -b0 blob null, -b1 longblob null, -b2 longblob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='36KMNYF5NQKSZRZ8B3NT6BQ5WWLV93Y' where id=1; -update noar ti set v0='36KMNYF5NQKSZRZ8B3NT6BQ5WWLV93Y' where id=1; -update noar tt set b0='VWGRXG0U33O5W4IQKEG0ZULMK' where id=1; -update noar ti set b0='VWGRXG0U33O5W4IQKEG0ZULMK' where id=1; -update noar tt set v0='27MIGXJ3DB00VUCM7PQ0ZFXI84OVCDUJ' where id=1; -update noar ti set v0='27MIGXJ3DB00VUCM7PQ0ZFXI84OVCDUJ' where id=1; -update noar tt set b1='9GK4QDNY7' where id=1; -update noar ti set b1='9GK4QDNY7' where id=1; -update noar tt set v0='220TDAQR0S228' where id=1; -update noar ti set v0='220TDAQR0S228' where id=1; -update noar tt set b2='Q7WA0N66ESPQVU1YUMEK8AMG1538J' where id=1; -update noar ti set b2='Q7WA0N66ESPQVU1YUMEK8AMG1538J' where id=1; -update noar tt set v0='T8PKEN7YQ2DBHUV' where id=2; -update noar ti set v0='T8PKEN7YQ2DBHUV' where id=2; -update noar tt set b0='WL01LKNKI8' where id=2; -update noar ti set b0='WL01LKNKI8' where id=2; -update noar tt set v0='W7RC63VP494IICS1' where id=2; -update noar ti set v0='W7RC63VP494IICS1' where id=2; -update noar tt set b1='8QZDJ6AIXM2G0BHSOTQ0' where id=2; -update noar ti set b1='8QZDJ6AIXM2G0BHSOTQ0' where id=2; -update noar tt set v0='Q9X' where id=2; -update noar ti set v0='Q9X' where id=2; -update noar tt set b2='XWOOLZJTO6PNJWE4S' where id=2; -update noar ti set b2='XWOOLZJTO6PNJWE4S' where id=2; -update noar tt set v0='TGJQV42' where id=3; -update noar ti set v0='TGJQV42' where id=3; -update noar tt set b0='VU0VTJE' where id=3; -update noar ti set b0='VU0VTJE' where id=3; -update noar tt set v0='FTX5462YZHTVU1QR93APBM' where id=3; -update noar ti set v0='FTX5462YZHTVU1QR93APBM' where id=3; -update noar tt set b1='OYJ37WNO7OTI' where id=3; -update noar ti set b1='OYJ37WNO7OTI' where id=3; -update noar tt set v0='L82CWAAF' where id=3; -update noar ti set v0='L82CWAAF' where id=3; -update noar tt set b2='RNEZY454' where id=3; -update noar ti set b2='RNEZY454' where id=3; -update noar tt set v0='RLIQ5GKZCTI07UW9Q' where id=4; -update noar ti set v0='RLIQ5GKZCTI07UW9Q' where id=4; -update noar tt set b0='D5FJAZPUPS8TJ7WY8P1ZY1SUSRHCBW' where id=4; -update noar ti set b0='D5FJAZPUPS8TJ7WY8P1ZY1SUSRHCBW' where id=4; -update noar tt set v0='GS' where id=4; -update noar ti set v0='GS' where id=4; -update noar tt set b1='33JH8B09ERBN1LBNN8H281M5AE' where id=4; -update noar ti set b1='33JH8B09ERBN1LBNN8H281M5AE' where id=4; -update noar tt set v0='GI564DW56VC' where id=4; -update noar ti set v0='GI564DW56VC' where id=4; -update noar tt set b2='TX01EYJTTJX' where id=4; -update noar ti set b2='TX01EYJTTJX' where id=4; -update noar tt set v0='0F8VHUHJ6CUIHQLR9PZT' where id=5; -update noar ti set v0='0F8VHUHJ6CUIHQLR9PZT' where id=5; -update noar tt set b0='Z69YU9VI8ZHM' where id=5; -update noar ti set b0='Z69YU9VI8ZHM' where id=5; -update noar tt set v0='Y35VBO01MV4C10508UFR3OTFTMFWP7' where id=5; -update noar ti set v0='Y35VBO01MV4C10508UFR3OTFTMFWP7' where id=5; -update noar tt set b1='2P6WTYSX3PMUDI187GJJR4' where id=5; -update noar ti set b1='2P6WTYSX3PMUDI187GJJR4' where id=5; -update noar tt set v0='FOMM99M2AK9LMR2SOM557ZK9PR9UAMFV' where id=5; -update noar ti set v0='FOMM99M2AK9LMR2SOM557ZK9PR9UAMFV' where id=5; -update noar tt set b2='D' where id=5; -update noar ti set b2='D' where id=5; -update noar tt set v0='U4GVVIMBZVBJ4HW6B993N8KOYGT3' where id=6; -update noar ti set v0='U4GVVIMBZVBJ4HW6B993N8KOYGT3' where id=6; -update noar tt set b0='LUOLZXIZ30H' where id=6; -update noar ti set b0='LUOLZXIZ30H' where id=6; -update noar tt set v0='TZDUN3455DA96FRNMHSJTKW121' where id=6; -update noar ti set v0='TZDUN3455DA96FRNMHSJTKW121' where id=6; -update noar tt set b1='FU3BZXDWC6GL2D2M0R6EC' where id=6; -update noar ti set b1='FU3BZXDWC6GL2D2M0R6EC' where id=6; -update noar tt set v0='O' where id=6; -update noar ti set v0='O' where id=6; -update noar tt set b2='5Q79G9LOE5A6CJZLIFK9M4M2' where id=6; -update noar ti set b2='5Q79G9LOE5A6CJZLIFK9M4M2' where id=6; -update noar tt set v0='33DS53D2Q8Q4ZTA993KH3DBPG6F' where id=7; -update noar ti set v0='33DS53D2Q8Q4ZTA993KH3DBPG6F' where id=7; -update noar tt set b0='510IELL5TIQ' where id=7; -update noar ti set b0='510IELL5TIQ' where id=7; -update noar tt set v0='LA' where id=7; -update noar ti set v0='LA' where id=7; -update noar tt set b1='NAKPR7XF101' where id=7; -update noar ti set b1='NAKPR7XF101' where id=7; -update noar tt set v0='2I66AU2BE0I4Q2AAH7QUU' where id=7; -update noar ti set v0='2I66AU2BE0I4Q2AAH7QUU' where id=7; -update noar tt set b2='X2UW2JDND' where id=7; -update noar ti set b2='X2UW2JDND' where id=7; -update noar tt set v0='2' where id=8; -update noar ti set v0='2' where id=8; -update noar tt set b0='ZS3ZF156GO6ZAYVJ00Y790DIRY2Q' where id=8; -update noar ti set b0='ZS3ZF156GO6ZAYVJ00Y790DIRY2Q' where id=8; -update noar tt set v0='AK7UEQIXG2MEVJL30USL2AQI15HX' where id=8; -update noar ti set v0='AK7UEQIXG2MEVJL30USL2AQI15HX' where id=8; -update noar tt set b1='Z59OU7MLQBBYG7M2KH7T08QAF' where id=8; -update noar ti set b1='Z59OU7MLQBBYG7M2KH7T08QAF' where id=8; -update noar tt set v0='AHSHR' where id=8; -update noar ti set v0='AHSHR' where id=8; -update noar tt set b2='TA37' where id=8; -update noar ti set b2='TA37' where id=8; -update noar tt set v0='V' where id=9; -update noar ti set v0='V' where id=9; -update noar tt set b0='E5IK99NWBORU2GYA086QGPO95431GYI' where id=9; -update noar ti set b0='E5IK99NWBORU2GYA086QGPO95431GYI' where id=9; -update noar tt set v0='M9VWOEWL017NV1MUF4XD4M28J8ZGKFWB' where id=9; -update noar ti set v0='M9VWOEWL017NV1MUF4XD4M28J8ZGKFWB' where id=9; -update noar tt set b1='OE9AZQG51FA7N' where id=9; -update noar ti set b1='OE9AZQG51FA7N' where id=9; -update noar tt set v0='QBCNTLTYHXJ91NB' where id=9; -update noar ti set v0='QBCNTLTYHXJ91NB' where id=9; -update noar tt set b2='7GNGQJHI1VGP8KAT6NOG3JTS' where id=9; -update noar ti set b2='7GNGQJHI1VGP8KAT6NOG3JTS' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -f0 int null, -v0 varchar(256) null, -b0 blob null, -b1 longblob null, -b2 longblob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='F9SRLA1L6XW8G7I' where id=1; -update noar ti set v0='F9SRLA1L6XW8G7I' where id=1; -update noar tt set b0='1R0FIE9LHUS1E0TJ2J5V' where id=1; -update noar ti set b0='1R0FIE9LHUS1E0TJ2J5V' where id=1; -update noar tt set v0='GFGRMUYF8LFZ4MTH' where id=1; -update noar ti set v0='GFGRMUYF8LFZ4MTH' where id=1; -update noar tt set b1='ZAX573ZJ8BWE9CEHMV2G' where id=1; -update noar ti set b1='ZAX573ZJ8BWE9CEHMV2G' where id=1; -update noar tt set v0='N75WAONFYAW9VNVFZ32F0C969V7J' where id=1; -update noar ti set v0='N75WAONFYAW9VNVFZ32F0C969V7J' where id=1; -update noar tt set b2='VJRFNWXXRVT244W' where id=1; -update noar ti set b2='VJRFNWXXRVT244W' where id=1; -update noar tt set v0='NHHV' where id=2; -update noar ti set v0='NHHV' where id=2; -update noar tt set b0='QRXI3XWRJC178QDPJUCHACA4I' where id=2; -update noar ti set b0='QRXI3XWRJC178QDPJUCHACA4I' where id=2; -update noar tt set v0='4W1RJI4O' where id=2; -update noar ti set v0='4W1RJI4O' where id=2; -update noar tt set b1='6UNKUOUYQ8LOK8493O3XRAP4G' where id=2; -update noar ti set b1='6UNKUOUYQ8LOK8493O3XRAP4G' where id=2; -update noar tt set v0='L8T4NICFI7R0FFJ3E0JTE4HQS7MKAVNQ' where id=2; -update noar ti set v0='L8T4NICFI7R0FFJ3E0JTE4HQS7MKAVNQ' where id=2; -update noar tt set b2='YS0BD73CG' where id=2; -update noar ti set b2='YS0BD73CG' where id=2; -update noar tt set v0='BFA8GU' where id=3; -update noar ti set v0='BFA8GU' where id=3; -update noar tt set b0='3TGDMLX3MVSBD7N' where id=3; -update noar ti set b0='3TGDMLX3MVSBD7N' where id=3; -update noar tt set v0='DDINNLNT6' where id=3; -update noar ti set v0='DDINNLNT6' where id=3; -update noar tt set b1='HFFJNY1SGGMLS1LQE1YE544F5V' where id=3; -update noar ti set b1='HFFJNY1SGGMLS1LQE1YE544F5V' where id=3; -update noar tt set v0='ANCK0PGOZK' where id=3; -update noar ti set v0='ANCK0PGOZK' where id=3; -update noar tt set b2='R2ASFCSZKFXYJBDG2FZRLR5B' where id=3; -update noar ti set b2='R2ASFCSZKFXYJBDG2FZRLR5B' where id=3; -update noar tt set v0='KM3T2BH7R' where id=4; -update noar ti set v0='KM3T2BH7R' where id=4; -update noar tt set b0='9QR92IX522BZ7AIPZZXO1B5AI' where id=4; -update noar ti set b0='9QR92IX522BZ7AIPZZXO1B5AI' where id=4; -update noar tt set v0='7MQYNJ9RQXNHDZ68ETY' where id=4; -update noar ti set v0='7MQYNJ9RQXNHDZ68ETY' where id=4; -update noar tt set b1='0BMRIM' where id=4; -update noar ti set b1='0BMRIM' where id=4; -update noar tt set v0='2TN0H' where id=4; -update noar ti set v0='2TN0H' where id=4; -update noar tt set b2='23HGJ7Y1Z3FX' where id=4; -update noar ti set b2='23HGJ7Y1Z3FX' where id=4; -update noar tt set v0='LH2XL3XT5I47KPX2TVIIQPXZDC3K39GB' where id=5; -update noar ti set v0='LH2XL3XT5I47KPX2TVIIQPXZDC3K39GB' where id=5; -update noar tt set b0='AH5LZY459R' where id=5; -update noar ti set b0='AH5LZY459R' where id=5; -update noar tt set v0='275SHUBF9TBQHCS5Y2VUZLLO4ZO8WB' where id=5; -update noar ti set v0='275SHUBF9TBQHCS5Y2VUZLLO4ZO8WB' where id=5; -update noar tt set b1='1BAZ4G' where id=5; -update noar ti set b1='1BAZ4G' where id=5; -update noar tt set v0='D1T565BLUVDR4SOB8FHYHC4WR7MJ' where id=5; -update noar ti set v0='D1T565BLUVDR4SOB8FHYHC4WR7MJ' where id=5; -update noar tt set b2='LUKV' where id=5; -update noar ti set b2='LUKV' where id=5; -update noar tt set v0='SUQQLE' where id=6; -update noar ti set v0='SUQQLE' where id=6; -update noar tt set b0='8VWUK367J11K' where id=6; -update noar ti set b0='8VWUK367J11K' where id=6; -update noar tt set v0='KKZYFQ8HEXUX5L48RYGP278Y5D0J' where id=6; -update noar ti set v0='KKZYFQ8HEXUX5L48RYGP278Y5D0J' where id=6; -update noar tt set b1='CKP1A21X9AIW' where id=6; -update noar ti set b1='CKP1A21X9AIW' where id=6; -update noar tt set v0='K96G2ALJ44L06PBS5VA0KH9CSM2SB' where id=6; -update noar ti set v0='K96G2ALJ44L06PBS5VA0KH9CSM2SB' where id=6; -update noar tt set b2='0FMYLMDSORQLHY7JT187WLC3WJG' where id=6; -update noar ti set b2='0FMYLMDSORQLHY7JT187WLC3WJG' where id=6; -update noar tt set v0='JST20FUIF8GXL2VD5I0W9AS74ZTJ4Z' where id=7; -update noar ti set v0='JST20FUIF8GXL2VD5I0W9AS74ZTJ4Z' where id=7; -update noar tt set b0='IX4BGOC6G4E6VPV' where id=7; -update noar ti set b0='IX4BGOC6G4E6VPV' where id=7; -update noar tt set v0='J8L0PFWFN97' where id=7; -update noar ti set v0='J8L0PFWFN97' where id=7; -update noar tt set b1='KJNKRUW' where id=7; -update noar ti set b1='KJNKRUW' where id=7; -update noar tt set v0='TMN8DX' where id=7; -update noar ti set v0='TMN8DX' where id=7; -update noar tt set b2='QEFNIA4ERU' where id=7; -update noar ti set b2='QEFNIA4ERU' where id=7; -update noar tt set v0='MY55UD7WQD71PFOJQRD9LM2ILO6D13' where id=8; -update noar ti set v0='MY55UD7WQD71PFOJQRD9LM2ILO6D13' where id=8; -update noar tt set b0='9O168LWC0QCZ9NAOK' where id=8; -update noar ti set b0='9O168LWC0QCZ9NAOK' where id=8; -update noar tt set v0='175I7P3ZZVOXUQDPJ' where id=8; -update noar ti set v0='175I7P3ZZVOXUQDPJ' where id=8; -update noar tt set b1='N1NU66JIEZN50OA033HHMGQBBMQZ' where id=8; -update noar ti set b1='N1NU66JIEZN50OA033HHMGQBBMQZ' where id=8; -update noar tt set v0='O53YWI64GQXZ28PMG' where id=8; -update noar ti set v0='O53YWI64GQXZ28PMG' where id=8; -update noar tt set b2='6M39DYZQFD0NBDO4BT1TIFPU6MA3FZN' where id=8; -update noar ti set b2='6M39DYZQFD0NBDO4BT1TIFPU6MA3FZN' where id=8; -update noar tt set v0='QGS20CI8JOGZ2LN' where id=9; -update noar ti set v0='QGS20CI8JOGZ2LN' where id=9; -update noar tt set b0='KIB8R1IQL40HELLBSAY4' where id=9; -update noar ti set b0='KIB8R1IQL40HELLBSAY4' where id=9; -update noar tt set v0='R1YQ39NFTA5HJ3Q39TOO' where id=9; -update noar ti set v0='R1YQ39NFTA5HJ3Q39TOO' where id=9; -update noar tt set b1='MH9UJ5OOLBNZX23HNO0E3SB' where id=9; -update noar ti set b1='MH9UJ5OOLBNZX23HNO0E3SB' where id=9; -update noar tt set v0='LHF' where id=9; -update noar ti set v0='LHF' where id=9; -update noar tt set b2='DQQGUYRR7FK' where id=9; -update noar ti set b2='DQQGUYRR7FK' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -f0 int not null, -v0 varchar(32) not null, -b0 blob not null, -b1 longblob not null, -b2 longblob not null -) engine=tokudb; -insert into tt values (1,0,'','','',''); -insert into tt values (2,0,'','','',''); -insert into tt values (3,0,'','','',''); -insert into tt values (4,0,'','','',''); -insert into tt values (5,0,'','','',''); -insert into tt values (6,0,'','','',''); -insert into tt values (7,0,'','','',''); -insert into tt values (8,0,'','','',''); -insert into tt values (9,0,'','','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='8GPLQ2H6LCXQQLUCX6H2434S' where id=1; -update noar ti set v0='8GPLQ2H6LCXQQLUCX6H2434S' where id=1; -update noar tt set b0='OWH8WXM0V0G671FPP70N' where id=1; -update noar ti set b0='OWH8WXM0V0G671FPP70N' where id=1; -update noar tt set v0='WKLTCEGNAPP' where id=1; -update noar ti set v0='WKLTCEGNAPP' where id=1; -update noar tt set b1='4LELLB9RSCP01SH92F8B' where id=1; -update noar ti set b1='4LELLB9RSCP01SH92F8B' where id=1; -update noar tt set v0='804B4UA7K8' where id=1; -update noar ti set v0='804B4UA7K8' where id=1; -update noar tt set b2='G422L880BT609WEAFFBUPVZ7GHTA1EA' where id=1; -update noar ti set b2='G422L880BT609WEAFFBUPVZ7GHTA1EA' where id=1; -update noar tt set v0='EF7BZ2K2GIYMQ8EJJDHMDYF' where id=2; -update noar ti set v0='EF7BZ2K2GIYMQ8EJJDHMDYF' where id=2; -update noar tt set b0='019XDLGIAZNU1' where id=2; -update noar ti set b0='019XDLGIAZNU1' where id=2; -update noar tt set v0='D78JVO6AGD0XB2ZGTBE6Q' where id=2; -update noar ti set v0='D78JVO6AGD0XB2ZGTBE6Q' where id=2; -update noar tt set b1='QFKJ29' where id=2; -update noar ti set b1='QFKJ29' where id=2; -update noar tt set v0='KODEDFT5AVALRJE642GBAY53PK0RR9' where id=2; -update noar ti set v0='KODEDFT5AVALRJE642GBAY53PK0RR9' where id=2; -update noar tt set b2='15AP6UCOLW810J1PTG' where id=2; -update noar ti set b2='15AP6UCOLW810J1PTG' where id=2; -update noar tt set v0='XAL' where id=3; -update noar ti set v0='XAL' where id=3; -update noar tt set b0='7J26PRN8C83FX9NTDGA2MTYO' where id=3; -update noar ti set b0='7J26PRN8C83FX9NTDGA2MTYO' where id=3; -update noar tt set v0='9NEEYNNPVW8OYO2MXZ' where id=3; -update noar ti set v0='9NEEYNNPVW8OYO2MXZ' where id=3; -update noar tt set b1='RZYPB09VJK8S0I5DPFTESBDQ9I' where id=3; -update noar ti set b1='RZYPB09VJK8S0I5DPFTESBDQ9I' where id=3; -update noar tt set v0='LA96L307Q927TU' where id=3; -update noar ti set v0='LA96L307Q927TU' where id=3; -update noar tt set b2='ULVU8VA4GEJXXTCGNHPFZC59IOK' where id=3; -update noar ti set b2='ULVU8VA4GEJXXTCGNHPFZC59IOK' where id=3; -update noar tt set v0='L3JDAZ0UVBF4R6VBG2NAY8' where id=4; -update noar ti set v0='L3JDAZ0UVBF4R6VBG2NAY8' where id=4; -update noar tt set b0='RPFSCVC8PI1HJ2780I40ZXYCPDA4D' where id=4; -update noar ti set b0='RPFSCVC8PI1HJ2780I40ZXYCPDA4D' where id=4; -update noar tt set v0='PH6L9IJMI1BORWBE6JUKD814KIL7YGL' where id=4; -update noar ti set v0='PH6L9IJMI1BORWBE6JUKD814KIL7YGL' where id=4; -update noar tt set b1='Y9AZEIZKYP0H0VB' where id=4; -update noar ti set b1='Y9AZEIZKYP0H0VB' where id=4; -update noar tt set v0='D2JE4G1XVQRM16MB0XZNTN6' where id=4; -update noar ti set v0='D2JE4G1XVQRM16MB0XZNTN6' where id=4; -update noar tt set b2='S9NH5SHX' where id=4; -update noar ti set b2='S9NH5SHX' where id=4; -update noar tt set v0='V9F2ZSL37WLS0X0SK6G' where id=5; -update noar ti set v0='V9F2ZSL37WLS0X0SK6G' where id=5; -update noar tt set b0='DX2' where id=5; -update noar ti set b0='DX2' where id=5; -update noar tt set v0='JWO3EVP5FP4KQ4YSQ3G1' where id=5; -update noar ti set v0='JWO3EVP5FP4KQ4YSQ3G1' where id=5; -update noar tt set b1='SBK3GDH7956ACJVK3E4M9J3PSQ7XF4' where id=5; -update noar ti set b1='SBK3GDH7956ACJVK3E4M9J3PSQ7XF4' where id=5; -update noar tt set v0='PCSJTMOGEAB' where id=5; -update noar ti set v0='PCSJTMOGEAB' where id=5; -update noar tt set b2='07C940PPX' where id=5; -update noar ti set b2='07C940PPX' where id=5; -update noar tt set v0='8THA7J0M3BWE5' where id=6; -update noar ti set v0='8THA7J0M3BWE5' where id=6; -update noar tt set b0='WKKLD98GM7JZ2YOQQC6JXWISIYJDIT' where id=6; -update noar ti set b0='WKKLD98GM7JZ2YOQQC6JXWISIYJDIT' where id=6; -update noar tt set v0='L50POLU0VDY3IFU' where id=6; -update noar ti set v0='L50POLU0VDY3IFU' where id=6; -update noar tt set b1='1X3ZIUSKN6EMJA5UU3JWF21F7VT761S' where id=6; -update noar ti set b1='1X3ZIUSKN6EMJA5UU3JWF21F7VT761S' where id=6; -update noar tt set v0='PMS7' where id=6; -update noar ti set v0='PMS7' where id=6; -update noar tt set b2='PJJND65FI1RSKM' where id=6; -update noar ti set b2='PJJND65FI1RSKM' where id=6; -update noar tt set v0='WMRC9AMUZKFOU5NZEGJ6L6' where id=7; -update noar ti set v0='WMRC9AMUZKFOU5NZEGJ6L6' where id=7; -update noar tt set b0='PJC8' where id=7; -update noar ti set b0='PJC8' where id=7; -update noar tt set v0='TIF00BS3S3RQ37N427XB2' where id=7; -update noar ti set v0='TIF00BS3S3RQ37N427XB2' where id=7; -update noar tt set b1='78XD267G1' where id=7; -update noar ti set b1='78XD267G1' where id=7; -update noar tt set v0='1ZN70DJC6' where id=7; -update noar ti set v0='1ZN70DJC6' where id=7; -update noar tt set b2='DP851L3AKBXNIVAF' where id=7; -update noar ti set b2='DP851L3AKBXNIVAF' where id=7; -update noar tt set v0='MESI2ZCXKXYYQXCDZN2L1C0KRD' where id=8; -update noar ti set v0='MESI2ZCXKXYYQXCDZN2L1C0KRD' where id=8; -update noar tt set b0='D6N' where id=8; -update noar ti set b0='D6N' where id=8; -update noar tt set v0='88WP5W36R47SP0QAYZDN11' where id=8; -update noar ti set v0='88WP5W36R47SP0QAYZDN11' where id=8; -update noar tt set b1='ZYGGU58Q3X0N261OA98ALJ4' where id=8; -update noar ti set b1='ZYGGU58Q3X0N261OA98ALJ4' where id=8; -update noar tt set v0='L082YDCPXZXWI' where id=8; -update noar ti set v0='L082YDCPXZXWI' where id=8; -update noar tt set b2='EENU1' where id=8; -update noar ti set b2='EENU1' where id=8; -update noar tt set v0='S5G3N7S9LN' where id=9; -update noar ti set v0='S5G3N7S9LN' where id=9; -update noar tt set b0='X988JCHG8CCJQP87E0QQOCB' where id=9; -update noar ti set b0='X988JCHG8CCJQP87E0QQOCB' where id=9; -update noar tt set v0='B' where id=9; -update noar ti set v0='B' where id=9; -update noar tt set b1='0111U1F9LIVZPDB5QBM6' where id=9; -update noar ti set b1='0111U1F9LIVZPDB5QBM6' where id=9; -update noar tt set v0='4' where id=9; -update noar ti set v0='4' where id=9; -update noar tt set b2='JIUCXC4UYQC0G2TY99LSPE2Y' where id=9; -update noar ti set b2='JIUCXC4UYQC0G2TY99LSPE2Y' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -f0 int not null, -v0 varchar(256) not null, -b0 blob not null, -b1 longblob not null, -b2 longblob not null -) engine=tokudb; -insert into tt values (1,0,'','','',''); -insert into tt values (2,0,'','','',''); -insert into tt values (3,0,'','','',''); -insert into tt values (4,0,'','','',''); -insert into tt values (5,0,'','','',''); -insert into tt values (6,0,'','','',''); -insert into tt values (7,0,'','','',''); -insert into tt values (8,0,'','','',''); -insert into tt values (9,0,'','','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='WZSWH6Y00NEN6LW041Y2X' where id=1; -update noar ti set v0='WZSWH6Y00NEN6LW041Y2X' where id=1; -update noar tt set b0='6Z34AM8J5KEB9L6ZG9BTY421' where id=1; -update noar ti set b0='6Z34AM8J5KEB9L6ZG9BTY421' where id=1; -update noar tt set v0='CJYE3HDWFIT105T5G755UH4BJF5F' where id=1; -update noar ti set v0='CJYE3HDWFIT105T5G755UH4BJF5F' where id=1; -update noar tt set b1='OAJMFRLU76X9' where id=1; -update noar ti set b1='OAJMFRLU76X9' where id=1; -update noar tt set v0='1MNBR3R5PO' where id=1; -update noar ti set v0='1MNBR3R5PO' where id=1; -update noar tt set b2='UAJ0SK7Q2' where id=1; -update noar ti set b2='UAJ0SK7Q2' where id=1; -update noar tt set v0='BHYUFIWO' where id=2; -update noar ti set v0='BHYUFIWO' where id=2; -update noar tt set b0='WDARKHG2KHYJ8SNPGW4CP5MQ6U' where id=2; -update noar ti set b0='WDARKHG2KHYJ8SNPGW4CP5MQ6U' where id=2; -update noar tt set v0='OPGVKNTX6C09DTKID835RMKNMOC' where id=2; -update noar ti set v0='OPGVKNTX6C09DTKID835RMKNMOC' where id=2; -update noar tt set b1='O9QYKCBWEX9I7M9YFMT79L0ZK9DBQ9K' where id=2; -update noar ti set b1='O9QYKCBWEX9I7M9YFMT79L0ZK9DBQ9K' where id=2; -update noar tt set v0='KOMB6YDSB9NN25J0AACL0ZXPAMWUS' where id=2; -update noar ti set v0='KOMB6YDSB9NN25J0AACL0ZXPAMWUS' where id=2; -update noar tt set b2='K8O8Z21YGQ36EGFN3N9ZLMD37CNR' where id=2; -update noar ti set b2='K8O8Z21YGQ36EGFN3N9ZLMD37CNR' where id=2; -update noar tt set v0='4V' where id=3; -update noar ti set v0='4V' where id=3; -update noar tt set b0='QGTAV0H4GYZ5MYRK' where id=3; -update noar ti set b0='QGTAV0H4GYZ5MYRK' where id=3; -update noar tt set v0='NTIH0EZO4UEGW7X' where id=3; -update noar ti set v0='NTIH0EZO4UEGW7X' where id=3; -update noar tt set b1='6' where id=3; -update noar ti set b1='6' where id=3; -update noar tt set v0='56FU430NGWJRUJ98FOV3RJO' where id=3; -update noar ti set v0='56FU430NGWJRUJ98FOV3RJO' where id=3; -update noar tt set b2='CXQ2G9K' where id=3; -update noar ti set b2='CXQ2G9K' where id=3; -update noar tt set v0='VOUUQ' where id=4; -update noar ti set v0='VOUUQ' where id=4; -update noar tt set b0='WXY8ZT0BCLM6R6W' where id=4; -update noar ti set b0='WXY8ZT0BCLM6R6W' where id=4; -update noar tt set v0='U0OCHRKJ1HJHD' where id=4; -update noar ti set v0='U0OCHRKJ1HJHD' where id=4; -update noar tt set b1='B6PXT' where id=4; -update noar ti set b1='B6PXT' where id=4; -update noar tt set v0='52F3' where id=4; -update noar ti set v0='52F3' where id=4; -update noar tt set b2='YLR1YSS8E' where id=4; -update noar ti set b2='YLR1YSS8E' where id=4; -update noar tt set v0='7OOCKIMW0WV7GOZ115YQ' where id=5; -update noar ti set v0='7OOCKIMW0WV7GOZ115YQ' where id=5; -update noar tt set b0='7OU06252VWH6UEVZICURW' where id=5; -update noar ti set b0='7OU06252VWH6UEVZICURW' where id=5; -update noar tt set v0='T1EGP3NK0IDPR272KG5CO3GNRMTNLXHL' where id=5; -update noar ti set v0='T1EGP3NK0IDPR272KG5CO3GNRMTNLXHL' where id=5; -update noar tt set b1='H8W88NALHVHLLHPRIB3RY4VVME' where id=5; -update noar ti set b1='H8W88NALHVHLLHPRIB3RY4VVME' where id=5; -update noar tt set v0='F5GCOHL7KHQ4S' where id=5; -update noar ti set v0='F5GCOHL7KHQ4S' where id=5; -update noar tt set b2='RW7B6C6P' where id=5; -update noar ti set b2='RW7B6C6P' where id=5; -update noar tt set v0='2WQJM2GDHN9Q3UWBPEAIP78WB39O' where id=6; -update noar ti set v0='2WQJM2GDHN9Q3UWBPEAIP78WB39O' where id=6; -update noar tt set b0='87OJCS' where id=6; -update noar ti set b0='87OJCS' where id=6; -update noar tt set v0='472AN273NG5Q' where id=6; -update noar ti set v0='472AN273NG5Q' where id=6; -update noar tt set b1='HNT294IXJ8N4EJYHQKO9YYE255' where id=6; -update noar ti set b1='HNT294IXJ8N4EJYHQKO9YYE255' where id=6; -update noar tt set v0='H0QD5UIMN6UCPXOOXDTG8W4W3P9HBCM' where id=6; -update noar ti set v0='H0QD5UIMN6UCPXOOXDTG8W4W3P9HBCM' where id=6; -update noar tt set b2='F0R9PBV0LPL7N9' where id=6; -update noar ti set b2='F0R9PBV0LPL7N9' where id=6; -update noar tt set v0='XIVVI6VRIFLQ6IMMI2Z63T9XK23' where id=7; -update noar ti set v0='XIVVI6VRIFLQ6IMMI2Z63T9XK23' where id=7; -update noar tt set b0='WRFHS6Q8UI876' where id=7; -update noar ti set b0='WRFHS6Q8UI876' where id=7; -update noar tt set v0='888748F25DODKPN6GWTK2CV' where id=7; -update noar ti set v0='888748F25DODKPN6GWTK2CV' where id=7; -update noar tt set b1='VKGMSYXPVF6ZDHNB60W9N3H' where id=7; -update noar ti set b1='VKGMSYXPVF6ZDHNB60W9N3H' where id=7; -update noar tt set v0='GX74AFF1DT6RN05U6B09Z25EEBQLHVNE' where id=7; -update noar ti set v0='GX74AFF1DT6RN05U6B09Z25EEBQLHVNE' where id=7; -update noar tt set b2='KX3CHWY' where id=7; -update noar ti set b2='KX3CHWY' where id=7; -update noar tt set v0='W26GMIS4TJ8SZ0NTB0' where id=8; -update noar ti set v0='W26GMIS4TJ8SZ0NTB0' where id=8; -update noar tt set b0='PE4M1VGOJHB827SC4OVO6PHOIIS6P' where id=8; -update noar ti set b0='PE4M1VGOJHB827SC4OVO6PHOIIS6P' where id=8; -update noar tt set v0='J2M1J648DI7SEYI' where id=8; -update noar ti set v0='J2M1J648DI7SEYI' where id=8; -update noar tt set b1='OL0DGZV9FUUUMRMFR0IC3T' where id=8; -update noar ti set b1='OL0DGZV9FUUUMRMFR0IC3T' where id=8; -update noar tt set v0='ART112HVZFQJ4WHZQ8O4E58CRJ2HT3CR' where id=8; -update noar ti set v0='ART112HVZFQJ4WHZQ8O4E58CRJ2HT3CR' where id=8; -update noar tt set b2='PMGAH6PHG49M7E17D5VG' where id=8; -update noar ti set b2='PMGAH6PHG49M7E17D5VG' where id=8; -update noar tt set v0='KZCETM9WZ0BRXYLZE0DVJ' where id=9; -update noar ti set v0='KZCETM9WZ0BRXYLZE0DVJ' where id=9; -update noar tt set b0='FLCCW8KG3E52QZ9QEMY1RS9' where id=9; -update noar ti set b0='FLCCW8KG3E52QZ9QEMY1RS9' where id=9; -update noar tt set v0='4SGDM' where id=9; -update noar ti set v0='4SGDM' where id=9; -update noar tt set b1='FZ0EYPWU4MCQXIBM6EXH5' where id=9; -update noar ti set b1='FZ0EYPWU4MCQXIBM6EXH5' where id=9; -update noar tt set v0='JJC0E3MZZM550RW7' where id=9; -update noar ti set v0='JJC0E3MZZM550RW7' where id=9; -update noar tt set b2='YJIWRO3B4K1' where id=9; -update noar ti set b2='YJIWRO3B4K1' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -f0 int null, -v0 varchar(32) null, -b0 mediumblob null, -b1 tinyblob null, -b2 tinyblob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='87OKZU5TLETJ9T' where id=1; -update noar ti set v0='87OKZU5TLETJ9T' where id=1; -update noar tt set b0='JQ3N4CVUKEV191GYDB36' where id=1; -update noar ti set b0='JQ3N4CVUKEV191GYDB36' where id=1; -update noar tt set v0='6H2VA1BO0JDX6D191H' where id=1; -update noar ti set v0='6H2VA1BO0JDX6D191H' where id=1; -update noar tt set b1='Q2O7HQXK5T29DUJUMAXI2DK9Y' where id=1; -update noar ti set b1='Q2O7HQXK5T29DUJUMAXI2DK9Y' where id=1; -update noar tt set v0='P2H5DRX87YA0Z6RE7J45LNOAG4' where id=1; -update noar ti set v0='P2H5DRX87YA0Z6RE7J45LNOAG4' where id=1; -update noar tt set b2='ENZPNC6850Q' where id=1; -update noar ti set b2='ENZPNC6850Q' where id=1; -update noar tt set v0='BSURJH' where id=2; -update noar ti set v0='BSURJH' where id=2; -update noar tt set b0='1GPTGGJZ9DVDZ' where id=2; -update noar ti set b0='1GPTGGJZ9DVDZ' where id=2; -update noar tt set v0='X7590G2SM4C5I9ED6ZU21K' where id=2; -update noar ti set v0='X7590G2SM4C5I9ED6ZU21K' where id=2; -update noar tt set b1='VJ50XM9WA2UJ' where id=2; -update noar ti set b1='VJ50XM9WA2UJ' where id=2; -update noar tt set v0='1LC' where id=2; -update noar ti set v0='1LC' where id=2; -update noar tt set b2='7CWQ1OOI3JNDILNDZ0DS' where id=2; -update noar ti set b2='7CWQ1OOI3JNDILNDZ0DS' where id=2; -update noar tt set v0='JWHWY6A036' where id=3; -update noar ti set v0='JWHWY6A036' where id=3; -update noar tt set b0='V0KAVOMO1LF74M1GMHHWF49B8X698I' where id=3; -update noar ti set b0='V0KAVOMO1LF74M1GMHHWF49B8X698I' where id=3; -update noar tt set v0='L17TX1AB6SHJ7M8HFZSJAFLFT4BE94Q' where id=3; -update noar ti set v0='L17TX1AB6SHJ7M8HFZSJAFLFT4BE94Q' where id=3; -update noar tt set b1='BJIT5VAWNMBSXKLZR4L' where id=3; -update noar ti set b1='BJIT5VAWNMBSXKLZR4L' where id=3; -update noar tt set v0='CI2T0ELF18IQMKK3SSG3998CF08VHY' where id=3; -update noar ti set v0='CI2T0ELF18IQMKK3SSG3998CF08VHY' where id=3; -update noar tt set b2='CNGJ9SOUI919F1F9RVPMORH7KFQI' where id=3; -update noar ti set b2='CNGJ9SOUI919F1F9RVPMORH7KFQI' where id=3; -update noar tt set v0='ZCQVS5L34ZTA1O7' where id=4; -update noar ti set v0='ZCQVS5L34ZTA1O7' where id=4; -update noar tt set b0='DUJ5T13XWFYQPH' where id=4; -update noar ti set b0='DUJ5T13XWFYQPH' where id=4; -update noar tt set v0='P0TI13' where id=4; -update noar ti set v0='P0TI13' where id=4; -update noar tt set b1='EW8VT5JNIA28TOFGL7WF0M' where id=4; -update noar ti set b1='EW8VT5JNIA28TOFGL7WF0M' where id=4; -update noar tt set v0='GRDLZOYORX' where id=4; -update noar ti set v0='GRDLZOYORX' where id=4; -update noar tt set b2='H777G5JWFCWAD7CT' where id=4; -update noar ti set b2='H777G5JWFCWAD7CT' where id=4; -update noar tt set v0='AOZLW58C3TA5WIJC' where id=5; -update noar ti set v0='AOZLW58C3TA5WIJC' where id=5; -update noar tt set b0='H9K1BEKCFP81GKZU7IFLT01HUDMEM' where id=5; -update noar ti set b0='H9K1BEKCFP81GKZU7IFLT01HUDMEM' where id=5; -update noar tt set v0='LEJ2LA26IS7CIER8' where id=5; -update noar ti set v0='LEJ2LA26IS7CIER8' where id=5; -update noar tt set b1='KR2P94MCZWOOHA7PDJC5AVTEC7' where id=5; -update noar ti set b1='KR2P94MCZWOOHA7PDJC5AVTEC7' where id=5; -update noar tt set v0='HAY0ECTW0P4X4W8NEM6WQRBVEERES41' where id=5; -update noar ti set v0='HAY0ECTW0P4X4W8NEM6WQRBVEERES41' where id=5; -update noar tt set b2='AGKM4732V' where id=5; -update noar ti set b2='AGKM4732V' where id=5; -update noar tt set v0='U0O' where id=6; -update noar ti set v0='U0O' where id=6; -update noar tt set b0='WAL3O8CHEENU20HYW9D9J4H8J8' where id=6; -update noar ti set b0='WAL3O8CHEENU20HYW9D9J4H8J8' where id=6; -update noar tt set v0='OQQKKH6C5GYZSMLX55WCSE4819' where id=6; -update noar ti set v0='OQQKKH6C5GYZSMLX55WCSE4819' where id=6; -update noar tt set b1='SUOM5TXOSVKS' where id=6; -update noar ti set b1='SUOM5TXOSVKS' where id=6; -update noar tt set v0='BA1P531' where id=6; -update noar ti set v0='BA1P531' where id=6; -update noar tt set b2='I5KHIU' where id=6; -update noar ti set b2='I5KHIU' where id=6; -update noar tt set v0='H3H77I10D7KRFLLSO' where id=7; -update noar ti set v0='H3H77I10D7KRFLLSO' where id=7; -update noar tt set b0='VXZP4KOH103TP4Z51FMW3M5FMWR7' where id=7; -update noar ti set b0='VXZP4KOH103TP4Z51FMW3M5FMWR7' where id=7; -update noar tt set v0='D4RS0KLDZ' where id=7; -update noar ti set v0='D4RS0KLDZ' where id=7; -update noar tt set b1='7651JKONMR6YVQCI2DQ0OFW' where id=7; -update noar ti set b1='7651JKONMR6YVQCI2DQ0OFW' where id=7; -update noar tt set v0='6F43F5' where id=7; -update noar ti set v0='6F43F5' where id=7; -update noar tt set b2='5' where id=7; -update noar ti set b2='5' where id=7; -update noar tt set v0='DI1D4FLY1Z8' where id=8; -update noar ti set v0='DI1D4FLY1Z8' where id=8; -update noar tt set b0='FB1YJ7E9W798NQL4TW8F74KMMH7R' where id=8; -update noar ti set b0='FB1YJ7E9W798NQL4TW8F74KMMH7R' where id=8; -update noar tt set v0='QC28GGVYIPJM4ZYJHC0W7EJKH' where id=8; -update noar ti set v0='QC28GGVYIPJM4ZYJHC0W7EJKH' where id=8; -update noar tt set b1='N3E0PL' where id=8; -update noar ti set b1='N3E0PL' where id=8; -update noar tt set v0='MOQX7FSSX3QI8' where id=8; -update noar ti set v0='MOQX7FSSX3QI8' where id=8; -update noar tt set b2='5CDFC24QUIYV2FMNGIZJD2J3H' where id=8; -update noar ti set b2='5CDFC24QUIYV2FMNGIZJD2J3H' where id=8; -update noar tt set v0='WPSCP04B3GBJB' where id=9; -update noar ti set v0='WPSCP04B3GBJB' where id=9; -update noar tt set b0='Q1J' where id=9; -update noar ti set b0='Q1J' where id=9; -update noar tt set v0='3JFAM9DDGY90ICTOPP645I1AI1N' where id=9; -update noar ti set v0='3JFAM9DDGY90ICTOPP645I1AI1N' where id=9; -update noar tt set b1='OJTTYWDTQE079C790LB6ZF3NAIOLHF6O' where id=9; -update noar ti set b1='OJTTYWDTQE079C790LB6ZF3NAIOLHF6O' where id=9; -update noar tt set v0='HG0R66VTQS0QK8P49YQ' where id=9; -update noar ti set v0='HG0R66VTQS0QK8P49YQ' where id=9; -update noar tt set b2='39PANN16' where id=9; -update noar ti set b2='39PANN16' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -f0 int null, -v0 varchar(256) null, -b0 mediumblob null, -b1 tinyblob null, -b2 tinyblob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='1SC4OSLOMRIC' where id=1; -update noar ti set v0='1SC4OSLOMRIC' where id=1; -update noar tt set b0='W4IZAY3GJFUTN0PKPKA' where id=1; -update noar ti set b0='W4IZAY3GJFUTN0PKPKA' where id=1; -update noar tt set v0='3J82CFDHJNPM6' where id=1; -update noar ti set v0='3J82CFDHJNPM6' where id=1; -update noar tt set b1='05JNHG0MK6QV' where id=1; -update noar ti set b1='05JNHG0MK6QV' where id=1; -update noar tt set v0='Z1RIZD' where id=1; -update noar ti set v0='Z1RIZD' where id=1; -update noar tt set b2='AMFDBY6BREDVYGVO' where id=1; -update noar ti set b2='AMFDBY6BREDVYGVO' where id=1; -update noar tt set v0='WH' where id=2; -update noar ti set v0='WH' where id=2; -update noar tt set b0='RGCYH72AXAI5VYD6F9LDDU' where id=2; -update noar ti set b0='RGCYH72AXAI5VYD6F9LDDU' where id=2; -update noar tt set v0='HW7NN44BG' where id=2; -update noar ti set v0='HW7NN44BG' where id=2; -update noar tt set b1='ML' where id=2; -update noar ti set b1='ML' where id=2; -update noar tt set v0='KRBSJ8ULZ2FE68Q2GD06K' where id=2; -update noar ti set v0='KRBSJ8ULZ2FE68Q2GD06K' where id=2; -update noar tt set b2='T47' where id=2; -update noar ti set b2='T47' where id=2; -update noar tt set v0='O8PDWBEIIMC3RJK8JX6KSM536' where id=3; -update noar ti set v0='O8PDWBEIIMC3RJK8JX6KSM536' where id=3; -update noar tt set b0='6M0H1FUWM05MX01IF' where id=3; -update noar ti set b0='6M0H1FUWM05MX01IF' where id=3; -update noar tt set v0='86KYXXKKNNEPZB' where id=3; -update noar ti set v0='86KYXXKKNNEPZB' where id=3; -update noar tt set b1='OP5MZRMIEH' where id=3; -update noar ti set b1='OP5MZRMIEH' where id=3; -update noar tt set v0='ZH129JAQNONQF8D9AYTZZNZ6V9BLR' where id=3; -update noar ti set v0='ZH129JAQNONQF8D9AYTZZNZ6V9BLR' where id=3; -update noar tt set b2='X7NC09C2W38OZ' where id=3; -update noar ti set b2='X7NC09C2W38OZ' where id=3; -update noar tt set v0='0LIVJXNT9RXHPU909ETBT75G' where id=4; -update noar ti set v0='0LIVJXNT9RXHPU909ETBT75G' where id=4; -update noar tt set b0='PO89BPI4R0LFEQCGYJ1M8JSYN3N' where id=4; -update noar ti set b0='PO89BPI4R0LFEQCGYJ1M8JSYN3N' where id=4; -update noar tt set v0='L9LLZVTAYZTFKCI452TY' where id=4; -update noar ti set v0='L9LLZVTAYZTFKCI452TY' where id=4; -update noar tt set b1='35' where id=4; -update noar ti set b1='35' where id=4; -update noar tt set v0='Y4PUSRZXTGVSOXPCS7OHOP0R0JL51Z' where id=4; -update noar ti set v0='Y4PUSRZXTGVSOXPCS7OHOP0R0JL51Z' where id=4; -update noar tt set b2='94JHPDLD3STCMOROLB' where id=4; -update noar ti set b2='94JHPDLD3STCMOROLB' where id=4; -update noar tt set v0='CKT1' where id=5; -update noar ti set v0='CKT1' where id=5; -update noar tt set b0='11D9FTIXH7V' where id=5; -update noar ti set b0='11D9FTIXH7V' where id=5; -update noar tt set v0='VO8UZ54U0TSUUD763IMWC9UGT' where id=5; -update noar ti set v0='VO8UZ54U0TSUUD763IMWC9UGT' where id=5; -update noar tt set b1='7P86AOIY7MZJ9JX7' where id=5; -update noar ti set b1='7P86AOIY7MZJ9JX7' where id=5; -update noar tt set v0='0476SFW7S92U3QH8DX9' where id=5; -update noar ti set v0='0476SFW7S92U3QH8DX9' where id=5; -update noar tt set b2='D3BFGXLKSZ55TZ53' where id=5; -update noar ti set b2='D3BFGXLKSZ55TZ53' where id=5; -update noar tt set v0='C7BMNNG2BWPUKRTKHWKY8189D' where id=6; -update noar ti set v0='C7BMNNG2BWPUKRTKHWKY8189D' where id=6; -update noar tt set b0='FR2ZMC5' where id=6; -update noar ti set b0='FR2ZMC5' where id=6; -update noar tt set v0='0EGU' where id=6; -update noar ti set v0='0EGU' where id=6; -update noar tt set b1='5NRSN8T801KDK1CCBPWK32FUZCI' where id=6; -update noar ti set b1='5NRSN8T801KDK1CCBPWK32FUZCI' where id=6; -update noar tt set v0='HAZ8RJS9G1NYB96MYS2ND8' where id=6; -update noar ti set v0='HAZ8RJS9G1NYB96MYS2ND8' where id=6; -update noar tt set b2='67IRM5RI2EL34IK9IYNEDL7CJAYR88J' where id=6; -update noar ti set b2='67IRM5RI2EL34IK9IYNEDL7CJAYR88J' where id=6; -update noar tt set v0='ZQL10LCTJP1BJCQO53YX5RQF0' where id=7; -update noar ti set v0='ZQL10LCTJP1BJCQO53YX5RQF0' where id=7; -update noar tt set b0='RG5SM' where id=7; -update noar ti set b0='RG5SM' where id=7; -update noar tt set v0='IMOZA0B1Y' where id=7; -update noar ti set v0='IMOZA0B1Y' where id=7; -update noar tt set b1='1WNU0S5ETE9ABI3NWWPI1IP7V4AZYP9' where id=7; -update noar ti set b1='1WNU0S5ETE9ABI3NWWPI1IP7V4AZYP9' where id=7; -update noar tt set v0='DCPGQQEIYPHZ37X0F' where id=7; -update noar ti set v0='DCPGQQEIYPHZ37X0F' where id=7; -update noar tt set b2='6TQDJJZ' where id=7; -update noar ti set b2='6TQDJJZ' where id=7; -update noar tt set v0='IKHIFJ7SJ42' where id=8; -update noar ti set v0='IKHIFJ7SJ42' where id=8; -update noar tt set b0='LS9196MG8SXLJDVFXFBI' where id=8; -update noar ti set b0='LS9196MG8SXLJDVFXFBI' where id=8; -update noar tt set v0='6NDVGYGMQKKKSINXS' where id=8; -update noar ti set v0='6NDVGYGMQKKKSINXS' where id=8; -update noar tt set b1='LWGCQZTBWFCTTI2XMA' where id=8; -update noar ti set b1='LWGCQZTBWFCTTI2XMA' where id=8; -update noar tt set v0='GMMJATMW3LMD56CFV7YA4KJXL' where id=8; -update noar ti set v0='GMMJATMW3LMD56CFV7YA4KJXL' where id=8; -update noar tt set b2='PI40S3HHIIPC0UE5DENQ8H' where id=8; -update noar ti set b2='PI40S3HHIIPC0UE5DENQ8H' where id=8; -update noar tt set v0='B8G5H0RSC4NZGG1DP' where id=9; -update noar ti set v0='B8G5H0RSC4NZGG1DP' where id=9; -update noar tt set b0='KE2C6OU262H5J2EPY9VWW2K2V3D4' where id=9; -update noar ti set b0='KE2C6OU262H5J2EPY9VWW2K2V3D4' where id=9; -update noar tt set v0='3H4X' where id=9; -update noar ti set v0='3H4X' where id=9; -update noar tt set b1='RXTM' where id=9; -update noar ti set b1='RXTM' where id=9; -update noar tt set v0='TGMHBYX' where id=9; -update noar ti set v0='TGMHBYX' where id=9; -update noar tt set b2='WHHM9MCZ5CYDTOY' where id=9; -update noar ti set b2='WHHM9MCZ5CYDTOY' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -f0 int not null, -v0 varchar(32) not null, -b0 mediumblob not null, -b1 tinyblob not null, -b2 tinyblob not null -) engine=tokudb; -insert into tt values (1,0,'','','',''); -insert into tt values (2,0,'','','',''); -insert into tt values (3,0,'','','',''); -insert into tt values (4,0,'','','',''); -insert into tt values (5,0,'','','',''); -insert into tt values (6,0,'','','',''); -insert into tt values (7,0,'','','',''); -insert into tt values (8,0,'','','',''); -insert into tt values (9,0,'','','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='HUO79V9G6XHM5008O8JBDWJ6' where id=1; -update noar ti set v0='HUO79V9G6XHM5008O8JBDWJ6' where id=1; -update noar tt set b0='1N844DQVF5GB' where id=1; -update noar ti set b0='1N844DQVF5GB' where id=1; -update noar tt set v0='J877HK48ASEOQHGXKHQPJDDHM08YJ' where id=1; -update noar ti set v0='J877HK48ASEOQHGXKHQPJDDHM08YJ' where id=1; -update noar tt set b1='VPI5TB059X1IEFOQISDA09KEX7Q' where id=1; -update noar ti set b1='VPI5TB059X1IEFOQISDA09KEX7Q' where id=1; -update noar tt set v0='PWUG8S' where id=1; -update noar ti set v0='PWUG8S' where id=1; -update noar tt set b2='ER0E0OV515GXRPIRJN42' where id=1; -update noar ti set b2='ER0E0OV515GXRPIRJN42' where id=1; -update noar tt set v0='UR5KI248ZZTD84X' where id=2; -update noar ti set v0='UR5KI248ZZTD84X' where id=2; -update noar tt set b0='H1MYN52M96HWSCPAE3XWQCBVXX1PK70E' where id=2; -update noar ti set b0='H1MYN52M96HWSCPAE3XWQCBVXX1PK70E' where id=2; -update noar tt set v0='CSNXT5R5BI' where id=2; -update noar ti set v0='CSNXT5R5BI' where id=2; -update noar tt set b1='LJ1U4GXCRTOKI1DZ73MUKEF0DVAR' where id=2; -update noar ti set b1='LJ1U4GXCRTOKI1DZ73MUKEF0DVAR' where id=2; -update noar tt set v0='QBQ2FJKMPKTDTYDQ9BFUZBVOFGYTG4' where id=2; -update noar ti set v0='QBQ2FJKMPKTDTYDQ9BFUZBVOFGYTG4' where id=2; -update noar tt set b2='VE' where id=2; -update noar ti set b2='VE' where id=2; -update noar tt set v0='S1TUW7B4RAR3QRUOLRTR3XX273' where id=3; -update noar ti set v0='S1TUW7B4RAR3QRUOLRTR3XX273' where id=3; -update noar tt set b0='G9AHPIVCCKHMYY7IW' where id=3; -update noar ti set b0='G9AHPIVCCKHMYY7IW' where id=3; -update noar tt set v0='OHH092Y76OOVJ4R' where id=3; -update noar ti set v0='OHH092Y76OOVJ4R' where id=3; -update noar tt set b1='0' where id=3; -update noar ti set b1='0' where id=3; -update noar tt set v0='X87UNEMY6HHSLEQ8L' where id=3; -update noar ti set v0='X87UNEMY6HHSLEQ8L' where id=3; -update noar tt set b2='M9FYLGXQG1TC2IR8ID333J75RWV8' where id=3; -update noar ti set b2='M9FYLGXQG1TC2IR8ID333J75RWV8' where id=3; -update noar tt set v0='8XV4GNN8748FOINVN9' where id=4; -update noar ti set v0='8XV4GNN8748FOINVN9' where id=4; -update noar tt set b0='6WGZV0' where id=4; -update noar ti set b0='6WGZV0' where id=4; -update noar tt set v0='UFVBMBYZ6Y8ARWVED1PZ4L4A92GE4Q' where id=4; -update noar ti set v0='UFVBMBYZ6Y8ARWVED1PZ4L4A92GE4Q' where id=4; -update noar tt set b1='LT33PK4' where id=4; -update noar ti set b1='LT33PK4' where id=4; -update noar tt set v0='JVG17O' where id=4; -update noar ti set v0='JVG17O' where id=4; -update noar tt set b2='SHA4ZUW1PU5C82K57W85Z5FL15UPVG' where id=4; -update noar ti set b2='SHA4ZUW1PU5C82K57W85Z5FL15UPVG' where id=4; -update noar tt set v0='W21X0J71JT' where id=5; -update noar ti set v0='W21X0J71JT' where id=5; -update noar tt set b0='EHQ2K8SM' where id=5; -update noar ti set b0='EHQ2K8SM' where id=5; -update noar tt set v0='J5KTHW9IMWW8UWGIKT68I2049XW0P41T' where id=5; -update noar ti set v0='J5KTHW9IMWW8UWGIKT68I2049XW0P41T' where id=5; -update noar tt set b1='WPJPELW3D8VL3YY0UFE' where id=5; -update noar ti set b1='WPJPELW3D8VL3YY0UFE' where id=5; -update noar tt set v0='B6VQ14U40CG9ZRI94TM94' where id=5; -update noar ti set v0='B6VQ14U40CG9ZRI94TM94' where id=5; -update noar tt set b2='ZAGVLBV4N89JTI' where id=5; -update noar ti set b2='ZAGVLBV4N89JTI' where id=5; -update noar tt set v0='XY' where id=6; -update noar ti set v0='XY' where id=6; -update noar tt set b0='U' where id=6; -update noar ti set b0='U' where id=6; -update noar tt set v0='CMN03HKL3KEYK7WOH0RLVEBZX0CMTPPL' where id=6; -update noar ti set v0='CMN03HKL3KEYK7WOH0RLVEBZX0CMTPPL' where id=6; -update noar tt set b1='5I4HRRDQ6CO68KS8XDL47GO1YG' where id=6; -update noar ti set b1='5I4HRRDQ6CO68KS8XDL47GO1YG' where id=6; -update noar tt set v0='IVXNJYTDPC8K9KFGN2BYBS76R7OZ58PA' where id=6; -update noar ti set v0='IVXNJYTDPC8K9KFGN2BYBS76R7OZ58PA' where id=6; -update noar tt set b2='VSQHTRZ9QV6SM02BZ1HE' where id=6; -update noar ti set b2='VSQHTRZ9QV6SM02BZ1HE' where id=6; -update noar tt set v0='6URRVG' where id=7; -update noar ti set v0='6URRVG' where id=7; -update noar tt set b0='IBOX55CAOW3' where id=7; -update noar ti set b0='IBOX55CAOW3' where id=7; -update noar tt set v0='P02GH' where id=7; -update noar ti set v0='P02GH' where id=7; -update noar tt set b1='2ANUWZINQHN7FRGGLGNA' where id=7; -update noar ti set b1='2ANUWZINQHN7FRGGLGNA' where id=7; -update noar tt set v0='3MUKWM36X2UWDWN' where id=7; -update noar ti set v0='3MUKWM36X2UWDWN' where id=7; -update noar tt set b2='E7VF5JWD009BD4MTC6YUQBMMQHKH3YDQ' where id=7; -update noar ti set b2='E7VF5JWD009BD4MTC6YUQBMMQHKH3YDQ' where id=7; -update noar tt set v0='K9Z7XG10UT02FG4WSF8LJ06Z4OR1H8XV' where id=8; -update noar ti set v0='K9Z7XG10UT02FG4WSF8LJ06Z4OR1H8XV' where id=8; -update noar tt set b0='QME6SVVQ56J80OH2AY45T6F01KSV6X' where id=8; -update noar ti set b0='QME6SVVQ56J80OH2AY45T6F01KSV6X' where id=8; -update noar tt set v0='9IH2RI42ORV0ZNTMA6AJAEQZ98JHVPU' where id=8; -update noar ti set v0='9IH2RI42ORV0ZNTMA6AJAEQZ98JHVPU' where id=8; -update noar tt set b1='7GDL2UJLKHKJISW5' where id=8; -update noar ti set b1='7GDL2UJLKHKJISW5' where id=8; -update noar tt set v0='HAZA9MY1Y9HW1EIE' where id=8; -update noar ti set v0='HAZA9MY1Y9HW1EIE' where id=8; -update noar tt set b2='29TAXOAZVHD3OMKETO' where id=8; -update noar ti set b2='29TAXOAZVHD3OMKETO' where id=8; -update noar tt set v0='PAN' where id=9; -update noar ti set v0='PAN' where id=9; -update noar tt set b0='KJAPU6C4H3YW03PSPV91K' where id=9; -update noar ti set b0='KJAPU6C4H3YW03PSPV91K' where id=9; -update noar tt set v0='47K63WLB7UJUKJ93FA' where id=9; -update noar ti set v0='47K63WLB7UJUKJ93FA' where id=9; -update noar tt set b1='AF2X8BOMV4VERYWXA7JOIFZI3' where id=9; -update noar ti set b1='AF2X8BOMV4VERYWXA7JOIFZI3' where id=9; -update noar tt set v0='4H' where id=9; -update noar ti set v0='4H' where id=9; -update noar tt set b2='A2DLGH05Q3Y6XTL0O4271OBF' where id=9; -update noar ti set b2='A2DLGH05Q3Y6XTL0O4271OBF' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -f0 int not null, -v0 varchar(256) not null, -b0 mediumblob not null, -b1 tinyblob not null, -b2 tinyblob not null -) engine=tokudb; -insert into tt values (1,0,'','','',''); -insert into tt values (2,0,'','','',''); -insert into tt values (3,0,'','','',''); -insert into tt values (4,0,'','','',''); -insert into tt values (5,0,'','','',''); -insert into tt values (6,0,'','','',''); -insert into tt values (7,0,'','','',''); -insert into tt values (8,0,'','','',''); -insert into tt values (9,0,'','','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='ITZV7T' where id=1; -update noar ti set v0='ITZV7T' where id=1; -update noar tt set b0='ON850QZ46IRH51HQJFA6PGIIXPOC8RIM' where id=1; -update noar ti set b0='ON850QZ46IRH51HQJFA6PGIIXPOC8RIM' where id=1; -update noar tt set v0='4PLKPTNKUSL0M0AF7' where id=1; -update noar ti set v0='4PLKPTNKUSL0M0AF7' where id=1; -update noar tt set b1='XGX7OX65W6JUR42TWG0' where id=1; -update noar ti set b1='XGX7OX65W6JUR42TWG0' where id=1; -update noar tt set v0='8IYJJGBDE2TNF7KW' where id=1; -update noar ti set v0='8IYJJGBDE2TNF7KW' where id=1; -update noar tt set b2='5DYP4BWA' where id=1; -update noar ti set b2='5DYP4BWA' where id=1; -update noar tt set v0='EA007E1RYR0HIGH6PAII0MJOARG7' where id=2; -update noar ti set v0='EA007E1RYR0HIGH6PAII0MJOARG7' where id=2; -update noar tt set b0='ZW3V8FA6PX4LK13WRO' where id=2; -update noar ti set b0='ZW3V8FA6PX4LK13WRO' where id=2; -update noar tt set v0='1WQ2G861492YFWCOWPRL7I93Y7ZH7' where id=2; -update noar ti set v0='1WQ2G861492YFWCOWPRL7I93Y7ZH7' where id=2; -update noar tt set b1='FR6DA85JDALGBQ5DBBWUSPECEEL646H' where id=2; -update noar ti set b1='FR6DA85JDALGBQ5DBBWUSPECEEL646H' where id=2; -update noar tt set v0='GM51N1IVE2D8UEWC4W93E2T3R6' where id=2; -update noar ti set v0='GM51N1IVE2D8UEWC4W93E2T3R6' where id=2; -update noar tt set b2='LKALLE4WOJ4Z9XWGN0L9IO9K' where id=2; -update noar ti set b2='LKALLE4WOJ4Z9XWGN0L9IO9K' where id=2; -update noar tt set v0='XAOIA17PZYG7I7O2' where id=3; -update noar ti set v0='XAOIA17PZYG7I7O2' where id=3; -update noar tt set b0='HEOCWGUCQYFJVUT0' where id=3; -update noar ti set b0='HEOCWGUCQYFJVUT0' where id=3; -update noar tt set v0='7A85306HEHF' where id=3; -update noar ti set v0='7A85306HEHF' where id=3; -update noar tt set b1='IOOAC94MPF58H6NR3PRP78D2' where id=3; -update noar ti set b1='IOOAC94MPF58H6NR3PRP78D2' where id=3; -update noar tt set v0='BQHTKVG0J78DABNHLCHC65B4' where id=3; -update noar ti set v0='BQHTKVG0J78DABNHLCHC65B4' where id=3; -update noar tt set b2='8YCQR3' where id=3; -update noar ti set b2='8YCQR3' where id=3; -update noar tt set v0='D9BIK' where id=4; -update noar ti set v0='D9BIK' where id=4; -update noar tt set b0='S2KYY07XA4I8' where id=4; -update noar ti set b0='S2KYY07XA4I8' where id=4; -update noar tt set v0='4M5MTGJ6YKK3T04TV4AH' where id=4; -update noar ti set v0='4M5MTGJ6YKK3T04TV4AH' where id=4; -update noar tt set b1='PDF6XMXQ0TV5T0AX3M8SDD2VMOXCFE' where id=4; -update noar ti set b1='PDF6XMXQ0TV5T0AX3M8SDD2VMOXCFE' where id=4; -update noar tt set v0='NDA6YMNSL3DLRU1BHFY8D2RFJ0X36AGX' where id=4; -update noar ti set v0='NDA6YMNSL3DLRU1BHFY8D2RFJ0X36AGX' where id=4; -update noar tt set b2='LET' where id=4; -update noar ti set b2='LET' where id=4; -update noar tt set v0='JPLAI' where id=5; -update noar ti set v0='JPLAI' where id=5; -update noar tt set b0='6JNJZFU0V42VL5563Y3FR6UBG' where id=5; -update noar ti set b0='6JNJZFU0V42VL5563Y3FR6UBG' where id=5; -update noar tt set v0='376615FHEH784C91UCM0RTC07TM4AI' where id=5; -update noar ti set v0='376615FHEH784C91UCM0RTC07TM4AI' where id=5; -update noar tt set b1='KVX1UZZKLOCXMPB3OIB' where id=5; -update noar ti set b1='KVX1UZZKLOCXMPB3OIB' where id=5; -update noar tt set v0='4HNFR2QGG6DA5IL681IVGNX' where id=5; -update noar ti set v0='4HNFR2QGG6DA5IL681IVGNX' where id=5; -update noar tt set b2='KQI6JR24387IH' where id=5; -update noar ti set b2='KQI6JR24387IH' where id=5; -update noar tt set v0='JKTC94MRJX6R' where id=6; -update noar ti set v0='JKTC94MRJX6R' where id=6; -update noar tt set b0='JGBCTL3Z139UFNWFF56PNAV06YVM7OH' where id=6; -update noar ti set b0='JGBCTL3Z139UFNWFF56PNAV06YVM7OH' where id=6; -update noar tt set v0='GH' where id=6; -update noar ti set v0='GH' where id=6; -update noar tt set b1='QR5C62BWM0QZMWMXAY4IL' where id=6; -update noar ti set b1='QR5C62BWM0QZMWMXAY4IL' where id=6; -update noar tt set v0='IWXHVO8FMLTP5SU8' where id=6; -update noar ti set v0='IWXHVO8FMLTP5SU8' where id=6; -update noar tt set b2='V96ZQR5GSVZ5K9MKECJ133OO2OH6E9' where id=6; -update noar ti set b2='V96ZQR5GSVZ5K9MKECJ133OO2OH6E9' where id=6; -update noar tt set v0='KRB1B8AE7WP7NUTEGMG2EUWI01I5V' where id=7; -update noar ti set v0='KRB1B8AE7WP7NUTEGMG2EUWI01I5V' where id=7; -update noar tt set b0='J0CFBHE1F' where id=7; -update noar ti set b0='J0CFBHE1F' where id=7; -update noar tt set v0='YPN5Y' where id=7; -update noar ti set v0='YPN5Y' where id=7; -update noar tt set b1='FHW' where id=7; -update noar ti set b1='FHW' where id=7; -update noar tt set v0='84FR7714FR78NAFQRKPBQSKODZXNS' where id=7; -update noar ti set v0='84FR7714FR78NAFQRKPBQSKODZXNS' where id=7; -update noar tt set b2='VXA7V7YZXURWDT' where id=7; -update noar ti set b2='VXA7V7YZXURWDT' where id=7; -update noar tt set v0='2Y279KGG4Y3YC3KYQDFDYQUYGHHOP5O' where id=8; -update noar ti set v0='2Y279KGG4Y3YC3KYQDFDYQUYGHHOP5O' where id=8; -update noar tt set b0='KXUMI50M49RBI35RIC' where id=8; -update noar ti set b0='KXUMI50M49RBI35RIC' where id=8; -update noar tt set v0='OYVHVNZ05NW62X4HSMED0PJ7L' where id=8; -update noar ti set v0='OYVHVNZ05NW62X4HSMED0PJ7L' where id=8; -update noar tt set b1='3IYBZCIUMGOBJ0S4GG1ZQ5I9ZGLM9I' where id=8; -update noar ti set b1='3IYBZCIUMGOBJ0S4GG1ZQ5I9ZGLM9I' where id=8; -update noar tt set v0='UOYDRBK' where id=8; -update noar ti set v0='UOYDRBK' where id=8; -update noar tt set b2='7CHZJJDZOJ0GN978Z' where id=8; -update noar ti set b2='7CHZJJDZOJ0GN978Z' where id=8; -update noar tt set v0='6Y7S9ZBMMUKY0ZILT6BR' where id=9; -update noar ti set v0='6Y7S9ZBMMUKY0ZILT6BR' where id=9; -update noar tt set b0='I9X11SW1EODQG98RHHOEXT7IIXXBXOP' where id=9; -update noar ti set b0='I9X11SW1EODQG98RHHOEXT7IIXXBXOP' where id=9; -update noar tt set v0='VA9W3B5T' where id=9; -update noar ti set v0='VA9W3B5T' where id=9; -update noar tt set b1='F6EM4P9ZTZRB4OHTDUP8OKEM' where id=9; -update noar ti set b1='F6EM4P9ZTZRB4OHTDUP8OKEM' where id=9; -update noar tt set v0='B6FE9DDY2CX51O0PU78M14H2JE' where id=9; -update noar ti set v0='B6FE9DDY2CX51O0PU78M14H2JE' where id=9; -update noar tt set b2='R80JMKEGT9LJP1YET4' where id=9; -update noar ti set b2='R80JMKEGT9LJP1YET4' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -f0 int null, -v0 varchar(32) null, -b0 mediumblob null, -b1 tinyblob null, -b2 blob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='F31RGXE0MLWRAO2FIZJ850K2PBBKK9' where id=1; -update noar ti set v0='F31RGXE0MLWRAO2FIZJ850K2PBBKK9' where id=1; -update noar tt set b0='AYB' where id=1; -update noar ti set b0='AYB' where id=1; -update noar tt set v0='UQRRD4R0SF7FTZ4K9W8JOGTWSOFO82' where id=1; -update noar ti set v0='UQRRD4R0SF7FTZ4K9W8JOGTWSOFO82' where id=1; -update noar tt set b1='66PBTAZWWP4UAZR1SMYP2ZZ4H0FYFD' where id=1; -update noar ti set b1='66PBTAZWWP4UAZR1SMYP2ZZ4H0FYFD' where id=1; -update noar tt set v0='GHLAT1APUGZGESDBK9WXF4NJQKS27' where id=1; -update noar ti set v0='GHLAT1APUGZGESDBK9WXF4NJQKS27' where id=1; -update noar tt set b2='XU2MJ8RT03C5SJ5XGC5' where id=1; -update noar ti set b2='XU2MJ8RT03C5SJ5XGC5' where id=1; -update noar tt set v0='HGWGS1TRENA1HWTHMYDHD05NY' where id=2; -update noar ti set v0='HGWGS1TRENA1HWTHMYDHD05NY' where id=2; -update noar tt set b0='1F6DMY0O53385QDOKPEMSO4W' where id=2; -update noar ti set b0='1F6DMY0O53385QDOKPEMSO4W' where id=2; -update noar tt set v0='9LZZ' where id=2; -update noar ti set v0='9LZZ' where id=2; -update noar tt set b1='6TPP760126T7' where id=2; -update noar ti set b1='6TPP760126T7' where id=2; -update noar tt set v0='NIGOG9MOPDJJTK0IPPJSV07TN' where id=2; -update noar ti set v0='NIGOG9MOPDJJTK0IPPJSV07TN' where id=2; -update noar tt set b2='YKYYTR3PBSW8OOXOTNLP27' where id=2; -update noar ti set b2='YKYYTR3PBSW8OOXOTNLP27' where id=2; -update noar tt set v0='UQ9SFQ03' where id=3; -update noar ti set v0='UQ9SFQ03' where id=3; -update noar tt set b0='Y' where id=3; -update noar ti set b0='Y' where id=3; -update noar tt set v0='B5GT' where id=3; -update noar ti set v0='B5GT' where id=3; -update noar tt set b1='6QFZAM' where id=3; -update noar ti set b1='6QFZAM' where id=3; -update noar tt set v0='0PONGRCRT0JCWJN7ER47OOL07LV9WCBA' where id=3; -update noar ti set v0='0PONGRCRT0JCWJN7ER47OOL07LV9WCBA' where id=3; -update noar tt set b2='LJFIPSOJSB40I7OZ4B3EUA8UCJ' where id=3; -update noar ti set b2='LJFIPSOJSB40I7OZ4B3EUA8UCJ' where id=3; -update noar tt set v0='6S57PV63EXYW' where id=4; -update noar ti set v0='6S57PV63EXYW' where id=4; -update noar tt set b0='15SNQWWN219H8JY' where id=4; -update noar ti set b0='15SNQWWN219H8JY' where id=4; -update noar tt set v0='JDQIOHTOYCE' where id=4; -update noar ti set v0='JDQIOHTOYCE' where id=4; -update noar tt set b1='Y' where id=4; -update noar ti set b1='Y' where id=4; -update noar tt set v0='MCKHXA73DR8N' where id=4; -update noar ti set v0='MCKHXA73DR8N' where id=4; -update noar tt set b2='EEJC' where id=4; -update noar ti set b2='EEJC' where id=4; -update noar tt set v0='26UI08CQN9JY97POUWKXW93ISQOQ' where id=5; -update noar ti set v0='26UI08CQN9JY97POUWKXW93ISQOQ' where id=5; -update noar tt set b0='FRCBLSNC' where id=5; -update noar ti set b0='FRCBLSNC' where id=5; -update noar tt set v0='A9ZPAT6' where id=5; -update noar ti set v0='A9ZPAT6' where id=5; -update noar tt set b1='XD9CGHREL' where id=5; -update noar ti set b1='XD9CGHREL' where id=5; -update noar tt set v0='UU0KFX068A4GWA88RA9214B747EY' where id=5; -update noar ti set v0='UU0KFX068A4GWA88RA9214B747EY' where id=5; -update noar tt set b2='J303Y0Y4BR8YXE' where id=5; -update noar ti set b2='J303Y0Y4BR8YXE' where id=5; -update noar tt set v0='GQ809Y4QBFP' where id=6; -update noar ti set v0='GQ809Y4QBFP' where id=6; -update noar tt set b0='VPHF8W7W7QVS' where id=6; -update noar ti set b0='VPHF8W7W7QVS' where id=6; -update noar tt set v0='00IDXVYQMVQX63L6CFB3IEYFPXEQ' where id=6; -update noar ti set v0='00IDXVYQMVQX63L6CFB3IEYFPXEQ' where id=6; -update noar tt set b1='37X4X3' where id=6; -update noar ti set b1='37X4X3' where id=6; -update noar tt set v0='XIRP8TC5L0TF52WLHJVTP5Y' where id=6; -update noar ti set v0='XIRP8TC5L0TF52WLHJVTP5Y' where id=6; -update noar tt set b2='5XXCIRA13RH5VT70PUT8Z4K2ZRS6M' where id=6; -update noar ti set b2='5XXCIRA13RH5VT70PUT8Z4K2ZRS6M' where id=6; -update noar tt set v0='745Z3D41KF8Z' where id=7; -update noar ti set v0='745Z3D41KF8Z' where id=7; -update noar tt set b0='TQTF5X03QYY' where id=7; -update noar ti set b0='TQTF5X03QYY' where id=7; -update noar tt set v0='K06L6R6' where id=7; -update noar ti set v0='K06L6R6' where id=7; -update noar tt set b1='OPC3' where id=7; -update noar ti set b1='OPC3' where id=7; -update noar tt set v0='R61JV3CPNDAL1MGY1' where id=7; -update noar ti set v0='R61JV3CPNDAL1MGY1' where id=7; -update noar tt set b2='L3GM6T2J' where id=7; -update noar ti set b2='L3GM6T2J' where id=7; -update noar tt set v0='CA6VYJIQOWPIBZ7UAS3N1J9Q' where id=8; -update noar ti set v0='CA6VYJIQOWPIBZ7UAS3N1J9Q' where id=8; -update noar tt set b0='D9CA' where id=8; -update noar ti set b0='D9CA' where id=8; -update noar tt set v0='IUAG7AUZ9TRO' where id=8; -update noar ti set v0='IUAG7AUZ9TRO' where id=8; -update noar tt set b1='WLFBZS74UBDLJFFF' where id=8; -update noar ti set b1='WLFBZS74UBDLJFFF' where id=8; -update noar tt set v0='5YLIFGQCFY6ER8YDGUARM85DU64O0D8' where id=8; -update noar ti set v0='5YLIFGQCFY6ER8YDGUARM85DU64O0D8' where id=8; -update noar tt set b2='KIUOUPS4J5E6FC5' where id=8; -update noar ti set b2='KIUOUPS4J5E6FC5' where id=8; -update noar tt set v0='7D8JAA7IWTQNQ2RR8I' where id=9; -update noar ti set v0='7D8JAA7IWTQNQ2RR8I' where id=9; -update noar tt set b0='R2M' where id=9; -update noar ti set b0='R2M' where id=9; -update noar tt set v0='QMO' where id=9; -update noar ti set v0='QMO' where id=9; -update noar tt set b1='QRG5IONJV3GI45PW' where id=9; -update noar ti set b1='QRG5IONJV3GI45PW' where id=9; -update noar tt set v0='6S907LXNKUSGHQPHFR8UHG' where id=9; -update noar ti set v0='6S907LXNKUSGHQPHFR8UHG' where id=9; -update noar tt set b2='T2EYYQR' where id=9; -update noar ti set b2='T2EYYQR' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -f0 int null, -v0 varchar(256) null, -b0 mediumblob null, -b1 tinyblob null, -b2 blob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='SY0OPAECW338K1XNKXFE' where id=1; -update noar ti set v0='SY0OPAECW338K1XNKXFE' where id=1; -update noar tt set b0='L1QASV' where id=1; -update noar ti set b0='L1QASV' where id=1; -update noar tt set v0='YUV' where id=1; -update noar ti set v0='YUV' where id=1; -update noar tt set b1='8ANLEZ1RWE6IQ16VE7BI' where id=1; -update noar ti set b1='8ANLEZ1RWE6IQ16VE7BI' where id=1; -update noar tt set v0='DRVINSKIA0FAIO481IB' where id=1; -update noar ti set v0='DRVINSKIA0FAIO481IB' where id=1; -update noar tt set b2='LPR99FNTUJ8XXU931SPARSXX9QQ' where id=1; -update noar ti set b2='LPR99FNTUJ8XXU931SPARSXX9QQ' where id=1; -update noar tt set v0='X9AY2FBI6OSTRBE' where id=2; -update noar ti set v0='X9AY2FBI6OSTRBE' where id=2; -update noar tt set b0='WK33TOH9INBWUJ696EZM6U0V' where id=2; -update noar ti set b0='WK33TOH9INBWUJ696EZM6U0V' where id=2; -update noar tt set v0='J4WPEAZBLQQWUNJYB3N2J1YUOD61ZQ67' where id=2; -update noar ti set v0='J4WPEAZBLQQWUNJYB3N2J1YUOD61ZQ67' where id=2; -update noar tt set b1='4OJGGIDH8D3NB1M038997V' where id=2; -update noar ti set b1='4OJGGIDH8D3NB1M038997V' where id=2; -update noar tt set v0='8PT4K7LKFPUNENSV2UQ0AXCLF1' where id=2; -update noar ti set v0='8PT4K7LKFPUNENSV2UQ0AXCLF1' where id=2; -update noar tt set b2='N2NLV' where id=2; -update noar ti set b2='N2NLV' where id=2; -update noar tt set v0='5GUX8M7ZB2F' where id=3; -update noar ti set v0='5GUX8M7ZB2F' where id=3; -update noar tt set b0='ZTXXIH8H' where id=3; -update noar ti set b0='ZTXXIH8H' where id=3; -update noar tt set v0='FZ3ZJ258O0J' where id=3; -update noar ti set v0='FZ3ZJ258O0J' where id=3; -update noar tt set b1='JRK8TF9OFW71MWQPNNNRB4YD0UYVGY' where id=3; -update noar ti set b1='JRK8TF9OFW71MWQPNNNRB4YD0UYVGY' where id=3; -update noar tt set v0='RUQJLT89XRUD8KDYZLE15PS6G3' where id=3; -update noar ti set v0='RUQJLT89XRUD8KDYZLE15PS6G3' where id=3; -update noar tt set b2='7ASOO6UQTNUQK9' where id=3; -update noar ti set b2='7ASOO6UQTNUQK9' where id=3; -update noar tt set v0='EP48AAT33SMTSXOO6OAG4BPVFA' where id=4; -update noar ti set v0='EP48AAT33SMTSXOO6OAG4BPVFA' where id=4; -update noar tt set b0='6S9FC8150NDF6YTJVN20QRUXRIQ1' where id=4; -update noar ti set b0='6S9FC8150NDF6YTJVN20QRUXRIQ1' where id=4; -update noar tt set v0='QE87L6EHRF4O55MEEYYOMOPBN' where id=4; -update noar ti set v0='QE87L6EHRF4O55MEEYYOMOPBN' where id=4; -update noar tt set b1='1QO32MJMKK0EYTFG3K6TEWIFQUX' where id=4; -update noar ti set b1='1QO32MJMKK0EYTFG3K6TEWIFQUX' where id=4; -update noar tt set v0='LQWU7' where id=4; -update noar ti set v0='LQWU7' where id=4; -update noar tt set b2='5DLPN0Q9HOJSY7ZZMD6Y70CEZB8K7' where id=4; -update noar ti set b2='5DLPN0Q9HOJSY7ZZMD6Y70CEZB8K7' where id=4; -update noar tt set v0='F5J0W63FVTERMBVLC53Y' where id=5; -update noar ti set v0='F5J0W63FVTERMBVLC53Y' where id=5; -update noar tt set b0='9LZYMVO' where id=5; -update noar ti set b0='9LZYMVO' where id=5; -update noar tt set v0='O' where id=5; -update noar ti set v0='O' where id=5; -update noar tt set b1='B9DCAQVX5IPR6EVE67KNU' where id=5; -update noar ti set b1='B9DCAQVX5IPR6EVE67KNU' where id=5; -update noar tt set v0='V2DZXICDR4PSRG0D8DOJZ' where id=5; -update noar ti set v0='V2DZXICDR4PSRG0D8DOJZ' where id=5; -update noar tt set b2='FGCZ64X2T00' where id=5; -update noar ti set b2='FGCZ64X2T00' where id=5; -update noar tt set v0='OKKOZ2CHPHL9GQ' where id=6; -update noar ti set v0='OKKOZ2CHPHL9GQ' where id=6; -update noar tt set b0='6UVNF9Z8HSJ6GKXHMFYS' where id=6; -update noar ti set b0='6UVNF9Z8HSJ6GKXHMFYS' where id=6; -update noar tt set v0='WNZA3LDNI9C03KT8BQPMQ0PB' where id=6; -update noar ti set v0='WNZA3LDNI9C03KT8BQPMQ0PB' where id=6; -update noar tt set b1='LQHXETX' where id=6; -update noar ti set b1='LQHXETX' where id=6; -update noar tt set v0='PC1N' where id=6; -update noar ti set v0='PC1N' where id=6; -update noar tt set b2='1C757WM190NZV' where id=6; -update noar ti set b2='1C757WM190NZV' where id=6; -update noar tt set v0='6UHRX9DY' where id=7; -update noar ti set v0='6UHRX9DY' where id=7; -update noar tt set b0='5DCC8W12ZVMVVNVEVDZ44D1QQY1S253' where id=7; -update noar ti set b0='5DCC8W12ZVMVVNVEVDZ44D1QQY1S253' where id=7; -update noar tt set v0='V9UT22S9778O3JFERB' where id=7; -update noar ti set v0='V9UT22S9778O3JFERB' where id=7; -update noar tt set b1='184RX3MH1MJKBOLZ35OF68B' where id=7; -update noar ti set b1='184RX3MH1MJKBOLZ35OF68B' where id=7; -update noar tt set v0='VO9IMQNE1Z80ACMEV7KYB3O9' where id=7; -update noar ti set v0='VO9IMQNE1Z80ACMEV7KYB3O9' where id=7; -update noar tt set b2='WD8Q' where id=7; -update noar ti set b2='WD8Q' where id=7; -update noar tt set v0='WMILX6' where id=8; -update noar ti set v0='WMILX6' where id=8; -update noar tt set b0='16SB' where id=8; -update noar ti set b0='16SB' where id=8; -update noar tt set v0='2ONKX0D2L82NPE4FFDR2HI2QXLF6YNB' where id=8; -update noar ti set v0='2ONKX0D2L82NPE4FFDR2HI2QXLF6YNB' where id=8; -update noar tt set b1='RJKALFDDI6FPCGHS' where id=8; -update noar ti set b1='RJKALFDDI6FPCGHS' where id=8; -update noar tt set v0='IL97UQZV7BQ86' where id=8; -update noar ti set v0='IL97UQZV7BQ86' where id=8; -update noar tt set b2='A' where id=8; -update noar ti set b2='A' where id=8; -update noar tt set v0='Q7OLHBQS590OZONM' where id=9; -update noar ti set v0='Q7OLHBQS590OZONM' where id=9; -update noar tt set b0='OOHBCUU5TKSD' where id=9; -update noar ti set b0='OOHBCUU5TKSD' where id=9; -update noar tt set v0='22BQU9' where id=9; -update noar ti set v0='22BQU9' where id=9; -update noar tt set b1='7RG0' where id=9; -update noar ti set b1='7RG0' where id=9; -update noar tt set v0='1H8HFYKMPFAE2O3LFW095UQ2' where id=9; -update noar ti set v0='1H8HFYKMPFAE2O3LFW095UQ2' where id=9; -update noar tt set b2='9AHD0WO4HWHD0EZVRRNIYJ1Z' where id=9; -update noar ti set b2='9AHD0WO4HWHD0EZVRRNIYJ1Z' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -f0 int not null, -v0 varchar(32) not null, -b0 mediumblob not null, -b1 tinyblob not null, -b2 blob not null -) engine=tokudb; -insert into tt values (1,0,'','','',''); -insert into tt values (2,0,'','','',''); -insert into tt values (3,0,'','','',''); -insert into tt values (4,0,'','','',''); -insert into tt values (5,0,'','','',''); -insert into tt values (6,0,'','','',''); -insert into tt values (7,0,'','','',''); -insert into tt values (8,0,'','','',''); -insert into tt values (9,0,'','','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='SIVJHAUK7P' where id=1; -update noar ti set v0='SIVJHAUK7P' where id=1; -update noar tt set b0='EV2X' where id=1; -update noar ti set b0='EV2X' where id=1; -update noar tt set v0='F21KLMSSA9MEC5Y4GHS17Z0I2NUG430' where id=1; -update noar ti set v0='F21KLMSSA9MEC5Y4GHS17Z0I2NUG430' where id=1; -update noar tt set b1='PYR9SM5M261MGJP' where id=1; -update noar ti set b1='PYR9SM5M261MGJP' where id=1; -update noar tt set v0='MU86PYFVX8SAVBZ' where id=1; -update noar ti set v0='MU86PYFVX8SAVBZ' where id=1; -update noar tt set b2='SQRRWZKR93O3N' where id=1; -update noar ti set b2='SQRRWZKR93O3N' where id=1; -update noar tt set v0='4PURI39PXJAWZQO586MXD2DR0C7EDF0' where id=2; -update noar ti set v0='4PURI39PXJAWZQO586MXD2DR0C7EDF0' where id=2; -update noar tt set b0='EWNV1M8DWR799Z4OICLDK96H' where id=2; -update noar ti set b0='EWNV1M8DWR799Z4OICLDK96H' where id=2; -update noar tt set v0='WC1UUNO5Y4' where id=2; -update noar ti set v0='WC1UUNO5Y4' where id=2; -update noar tt set b1='I51S8KYIXFJUOMN633HJ7N' where id=2; -update noar ti set b1='I51S8KYIXFJUOMN633HJ7N' where id=2; -update noar tt set v0='IZDFCQ2LCRQHYF0XQIDTSUAF2R' where id=2; -update noar ti set v0='IZDFCQ2LCRQHYF0XQIDTSUAF2R' where id=2; -update noar tt set b2='3PRI0FSUOQGSB8OR9242E' where id=2; -update noar ti set b2='3PRI0FSUOQGSB8OR9242E' where id=2; -update noar tt set v0='KUR546DX91YCD3A2VDUCSTW2IT' where id=3; -update noar ti set v0='KUR546DX91YCD3A2VDUCSTW2IT' where id=3; -update noar tt set b0='C8P3PPVR5EXZ' where id=3; -update noar ti set b0='C8P3PPVR5EXZ' where id=3; -update noar tt set v0='WFEIFJ3ONX3W8VUPGA' where id=3; -update noar ti set v0='WFEIFJ3ONX3W8VUPGA' where id=3; -update noar tt set b1='0G474G6GJV4' where id=3; -update noar ti set b1='0G474G6GJV4' where id=3; -update noar tt set v0='J4DNHZ1' where id=3; -update noar ti set v0='J4DNHZ1' where id=3; -update noar tt set b2='FIZUCBVDBH3AIQ0IV5QQMJVORL' where id=3; -update noar ti set b2='FIZUCBVDBH3AIQ0IV5QQMJVORL' where id=3; -update noar tt set v0='OU6IZFZ22Q8VVXYEO8E9MH2VS' where id=4; -update noar ti set v0='OU6IZFZ22Q8VVXYEO8E9MH2VS' where id=4; -update noar tt set b0='WGJJ3H3FUN0V9KG7788M283WEP' where id=4; -update noar ti set b0='WGJJ3H3FUN0V9KG7788M283WEP' where id=4; -update noar tt set v0='31DQIR06TS3YVPNODRS0SS806M1' where id=4; -update noar ti set v0='31DQIR06TS3YVPNODRS0SS806M1' where id=4; -update noar tt set b1='AAFPM2UDEWFQV414522M6NU' where id=4; -update noar ti set b1='AAFPM2UDEWFQV414522M6NU' where id=4; -update noar tt set v0='BHOOWY' where id=4; -update noar ti set v0='BHOOWY' where id=4; -update noar tt set b2='PYT' where id=4; -update noar ti set b2='PYT' where id=4; -update noar tt set v0='LMW4K1NGY0BMYO6X91J6IEF1M21I' where id=5; -update noar ti set v0='LMW4K1NGY0BMYO6X91J6IEF1M21I' where id=5; -update noar tt set b0='MSUFZBIC63FZIGHRC45TCRG' where id=5; -update noar ti set b0='MSUFZBIC63FZIGHRC45TCRG' where id=5; -update noar tt set v0='A5DQWZXTRBDR7CJSPU7Y2' where id=5; -update noar ti set v0='A5DQWZXTRBDR7CJSPU7Y2' where id=5; -update noar tt set b1='0WO' where id=5; -update noar ti set b1='0WO' where id=5; -update noar tt set v0='M24YXCB3X' where id=5; -update noar ti set v0='M24YXCB3X' where id=5; -update noar tt set b2='CHTSZY2SWDXR0YOPIAZ67VGSEIZTEZKR' where id=5; -update noar ti set b2='CHTSZY2SWDXR0YOPIAZ67VGSEIZTEZKR' where id=5; -update noar tt set v0='77EGNRM73Q6DZFXBJEC52D213Z' where id=6; -update noar ti set v0='77EGNRM73Q6DZFXBJEC52D213Z' where id=6; -update noar tt set b0='T5680CNGJY' where id=6; -update noar ti set b0='T5680CNGJY' where id=6; -update noar tt set v0='TWLXY1PLHZ52JOU' where id=6; -update noar ti set v0='TWLXY1PLHZ52JOU' where id=6; -update noar tt set b1='3Z7TMCO8F8CWS7I6V90C' where id=6; -update noar ti set b1='3Z7TMCO8F8CWS7I6V90C' where id=6; -update noar tt set v0='VHFKN3IQ' where id=6; -update noar ti set v0='VHFKN3IQ' where id=6; -update noar tt set b2='251I63TA628PO2ZOJKQSPQRL0GPB1RP' where id=6; -update noar ti set b2='251I63TA628PO2ZOJKQSPQRL0GPB1RP' where id=6; -update noar tt set v0='SRS2RZX58ZX1JSMU' where id=7; -update noar ti set v0='SRS2RZX58ZX1JSMU' where id=7; -update noar tt set b0='7KWUNO5PHGZNWAH15EH0Q80YUAVVSP' where id=7; -update noar ti set b0='7KWUNO5PHGZNWAH15EH0Q80YUAVVSP' where id=7; -update noar tt set v0='IO95UWAGBCCAD' where id=7; -update noar ti set v0='IO95UWAGBCCAD' where id=7; -update noar tt set b1='S5GOD79CX' where id=7; -update noar ti set b1='S5GOD79CX' where id=7; -update noar tt set v0='6W4HWAOAC23V7Z01OUDZEYVCDE5238O' where id=7; -update noar ti set v0='6W4HWAOAC23V7Z01OUDZEYVCDE5238O' where id=7; -update noar tt set b2='3JYP1BKFW1D71LEHXCLQFNBGO8' where id=7; -update noar ti set b2='3JYP1BKFW1D71LEHXCLQFNBGO8' where id=7; -update noar tt set v0='35OA6F64XFIRJPDA5YISMR' where id=8; -update noar ti set v0='35OA6F64XFIRJPDA5YISMR' where id=8; -update noar tt set b0='ANK' where id=8; -update noar ti set b0='ANK' where id=8; -update noar tt set v0='6JR3GM8AL73DN4W4DIL6GNS' where id=8; -update noar ti set v0='6JR3GM8AL73DN4W4DIL6GNS' where id=8; -update noar tt set b1='UG' where id=8; -update noar ti set b1='UG' where id=8; -update noar tt set v0='WTUK9EIZ8CS82V0857WII3OX07X4MG5T' where id=8; -update noar ti set v0='WTUK9EIZ8CS82V0857WII3OX07X4MG5T' where id=8; -update noar tt set b2='WIKG54ZG12I02' where id=8; -update noar ti set b2='WIKG54ZG12I02' where id=8; -update noar tt set v0='TOC5QBGYG' where id=9; -update noar ti set v0='TOC5QBGYG' where id=9; -update noar tt set b0='3G9613IVZ7VJ4YPJ8YQU6LJLPMS3B87' where id=9; -update noar ti set b0='3G9613IVZ7VJ4YPJ8YQU6LJLPMS3B87' where id=9; -update noar tt set v0='K7TCPDM03GS0ZJNAYSQEKW5' where id=9; -update noar ti set v0='K7TCPDM03GS0ZJNAYSQEKW5' where id=9; -update noar tt set b1='QIELXT6HBET73' where id=9; -update noar ti set b1='QIELXT6HBET73' where id=9; -update noar tt set v0='W8AK1C6K8HZ' where id=9; -update noar ti set v0='W8AK1C6K8HZ' where id=9; -update noar tt set b2='0A4MFE944U0I6V' where id=9; -update noar ti set b2='0A4MFE944U0I6V' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -f0 int not null, -v0 varchar(256) not null, -b0 mediumblob not null, -b1 tinyblob not null, -b2 blob not null -) engine=tokudb; -insert into tt values (1,0,'','','',''); -insert into tt values (2,0,'','','',''); -insert into tt values (3,0,'','','',''); -insert into tt values (4,0,'','','',''); -insert into tt values (5,0,'','','',''); -insert into tt values (6,0,'','','',''); -insert into tt values (7,0,'','','',''); -insert into tt values (8,0,'','','',''); -insert into tt values (9,0,'','','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='LTHSBR8' where id=1; -update noar ti set v0='LTHSBR8' where id=1; -update noar tt set b0='T' where id=1; -update noar ti set b0='T' where id=1; -update noar tt set v0='4' where id=1; -update noar ti set v0='4' where id=1; -update noar tt set b1='Q2IDNVGZMHDLWXHA8Q7' where id=1; -update noar ti set b1='Q2IDNVGZMHDLWXHA8Q7' where id=1; -update noar tt set v0='QQN' where id=1; -update noar ti set v0='QQN' where id=1; -update noar tt set b2='XVMAK6L1B5GGJBWOMXIXGK' where id=1; -update noar ti set b2='XVMAK6L1B5GGJBWOMXIXGK' where id=1; -update noar tt set v0='ETPY1WJ6UYWW34W3YSRJ1PLK' where id=2; -update noar ti set v0='ETPY1WJ6UYWW34W3YSRJ1PLK' where id=2; -update noar tt set b0='BOEBAHREXS3DM5SLXR4M99FP9B' where id=2; -update noar ti set b0='BOEBAHREXS3DM5SLXR4M99FP9B' where id=2; -update noar tt set v0='ZME2X6HC' where id=2; -update noar ti set v0='ZME2X6HC' where id=2; -update noar tt set b1='JZPJ1OV5WON7SWVWB6HLBNR5' where id=2; -update noar ti set b1='JZPJ1OV5WON7SWVWB6HLBNR5' where id=2; -update noar tt set v0='QSOA' where id=2; -update noar ti set v0='QSOA' where id=2; -update noar tt set b2='G56LST5' where id=2; -update noar ti set b2='G56LST5' where id=2; -update noar tt set v0='RUWST3D1QMOLNS4ZOJSKOL91T9' where id=3; -update noar ti set v0='RUWST3D1QMOLNS4ZOJSKOL91T9' where id=3; -update noar tt set b0='45942MACD3LSGZ7RWC' where id=3; -update noar ti set b0='45942MACD3LSGZ7RWC' where id=3; -update noar tt set v0='5QMJX2C360JAAAEWCT8Y17' where id=3; -update noar ti set v0='5QMJX2C360JAAAEWCT8Y17' where id=3; -update noar tt set b1='SZHW1BGHFXSN0K7SZ83VAM21B' where id=3; -update noar ti set b1='SZHW1BGHFXSN0K7SZ83VAM21B' where id=3; -update noar tt set v0='J905FUTQ' where id=3; -update noar ti set v0='J905FUTQ' where id=3; -update noar tt set b2='W9YCRC7UDZJJNB1XZ3CU5J' where id=3; -update noar ti set b2='W9YCRC7UDZJJNB1XZ3CU5J' where id=3; -update noar tt set v0='IXGR24PS08CNJJD8K8D' where id=4; -update noar ti set v0='IXGR24PS08CNJJD8K8D' where id=4; -update noar tt set b0='DAJLYHP' where id=4; -update noar ti set b0='DAJLYHP' where id=4; -update noar tt set v0='EDMEWL3XAI8C5ZOI8SO9H9B5VJU' where id=4; -update noar ti set v0='EDMEWL3XAI8C5ZOI8SO9H9B5VJU' where id=4; -update noar tt set b1='PEZAD8JNDVOE0Z7IZMD51QLIJ8' where id=4; -update noar ti set b1='PEZAD8JNDVOE0Z7IZMD51QLIJ8' where id=4; -update noar tt set v0='OYTPFN5PQ03ISDPVZ652H4MZ2XEW3C' where id=4; -update noar ti set v0='OYTPFN5PQ03ISDPVZ652H4MZ2XEW3C' where id=4; -update noar tt set b2='O5F8JJ46Y6VJV8TPISGGBD' where id=4; -update noar ti set b2='O5F8JJ46Y6VJV8TPISGGBD' where id=4; -update noar tt set v0='YR48H4C377UKCR5BV2HPEG' where id=5; -update noar ti set v0='YR48H4C377UKCR5BV2HPEG' where id=5; -update noar tt set b0='80I5UVGAM4TVZY825D0Y70NWGQCIB' where id=5; -update noar ti set b0='80I5UVGAM4TVZY825D0Y70NWGQCIB' where id=5; -update noar tt set v0='JKQGPBOEKIVUBONHEPUTQS1' where id=5; -update noar ti set v0='JKQGPBOEKIVUBONHEPUTQS1' where id=5; -update noar tt set b1='J9QMX1YME34LU' where id=5; -update noar ti set b1='J9QMX1YME34LU' where id=5; -update noar tt set v0='4PQJPJ6XYEHYCLN' where id=5; -update noar ti set v0='4PQJPJ6XYEHYCLN' where id=5; -update noar tt set b2='RRLK08F7GAV4SPN1JOIXZY' where id=5; -update noar ti set b2='RRLK08F7GAV4SPN1JOIXZY' where id=5; -update noar tt set v0='YWM9UGC' where id=6; -update noar ti set v0='YWM9UGC' where id=6; -update noar tt set b0='7BLZ60JRV1XZ8WJL79ZH6DM' where id=6; -update noar ti set b0='7BLZ60JRV1XZ8WJL79ZH6DM' where id=6; -update noar tt set v0='K1' where id=6; -update noar ti set v0='K1' where id=6; -update noar tt set b1='UD0QN' where id=6; -update noar ti set b1='UD0QN' where id=6; -update noar tt set v0='H790' where id=6; -update noar ti set v0='H790' where id=6; -update noar tt set b2='02HTOXE8' where id=6; -update noar ti set b2='02HTOXE8' where id=6; -update noar tt set v0='XZBE09N6DDPS3O94KERZSB2Q' where id=7; -update noar ti set v0='XZBE09N6DDPS3O94KERZSB2Q' where id=7; -update noar tt set b0='V0HQI5IWHMZ' where id=7; -update noar ti set b0='V0HQI5IWHMZ' where id=7; -update noar tt set v0='Q2GREC4R7ACG58H' where id=7; -update noar ti set v0='Q2GREC4R7ACG58H' where id=7; -update noar tt set b1='HG0W6FB' where id=7; -update noar ti set b1='HG0W6FB' where id=7; -update noar tt set v0='UVM9NDSZXJ' where id=7; -update noar ti set v0='UVM9NDSZXJ' where id=7; -update noar tt set b2='KAAO386YRDS9ZF0DXW' where id=7; -update noar ti set b2='KAAO386YRDS9ZF0DXW' where id=7; -update noar tt set v0='ERPS' where id=8; -update noar ti set v0='ERPS' where id=8; -update noar tt set b0='B7M' where id=8; -update noar ti set b0='B7M' where id=8; -update noar tt set v0='1XQHWEZ7HCZ' where id=8; -update noar ti set v0='1XQHWEZ7HCZ' where id=8; -update noar tt set b1='7N0AC0ONOTQWVMZJ86' where id=8; -update noar ti set b1='7N0AC0ONOTQWVMZJ86' where id=8; -update noar tt set v0='GC' where id=8; -update noar ti set v0='GC' where id=8; -update noar tt set b2='2ILH6YR07S' where id=8; -update noar ti set b2='2ILH6YR07S' where id=8; -update noar tt set v0='LCRCXKT25DSSYFY80JJ' where id=9; -update noar ti set v0='LCRCXKT25DSSYFY80JJ' where id=9; -update noar tt set b0='3X' where id=9; -update noar ti set b0='3X' where id=9; -update noar tt set v0='DCI2GYN5Z712HZI2QP4MDRO' where id=9; -update noar ti set v0='DCI2GYN5Z712HZI2QP4MDRO' where id=9; -update noar tt set b1='E7LAWRMNPGJLGSBB3N2D5H0SL3AIMB' where id=9; -update noar ti set b1='E7LAWRMNPGJLGSBB3N2D5H0SL3AIMB' where id=9; -update noar tt set v0='2ROT25R3QCUD1S' where id=9; -update noar ti set v0='2ROT25R3QCUD1S' where id=9; -update noar tt set b2='IUNYUI9OAE3' where id=9; -update noar ti set b2='IUNYUI9OAE3' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -f0 int null, -v0 varchar(32) null, -b0 mediumblob null, -b1 tinyblob null, -b2 mediumblob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='O4GVM81UCTZNBS' where id=1; -update noar ti set v0='O4GVM81UCTZNBS' where id=1; -update noar tt set b0='9K' where id=1; -update noar ti set b0='9K' where id=1; -update noar tt set v0='P2JV' where id=1; -update noar ti set v0='P2JV' where id=1; -update noar tt set b1='XBAVC2D8RYRB9ROTHP8AGFAH2' where id=1; -update noar ti set b1='XBAVC2D8RYRB9ROTHP8AGFAH2' where id=1; -update noar tt set v0='R23G0NG9XG' where id=1; -update noar ti set v0='R23G0NG9XG' where id=1; -update noar tt set b2='JRB7KPMBFW98BW18T8' where id=1; -update noar ti set b2='JRB7KPMBFW98BW18T8' where id=1; -update noar tt set v0='5N5' where id=2; -update noar ti set v0='5N5' where id=2; -update noar tt set b0='XLIV0VDVLL1G5NRW4GEAER9Z' where id=2; -update noar ti set b0='XLIV0VDVLL1G5NRW4GEAER9Z' where id=2; -update noar tt set v0='O907FMR99IMCWOTN' where id=2; -update noar ti set v0='O907FMR99IMCWOTN' where id=2; -update noar tt set b1='4FPZ962VXP3JD8R7PN33' where id=2; -update noar ti set b1='4FPZ962VXP3JD8R7PN33' where id=2; -update noar tt set v0='682ZF4PXU9E' where id=2; -update noar ti set v0='682ZF4PXU9E' where id=2; -update noar tt set b2='TGHZMRDNJB1U4I681HWZ9PCJPP' where id=2; -update noar ti set b2='TGHZMRDNJB1U4I681HWZ9PCJPP' where id=2; -update noar tt set v0='JCC1JYTJXUT4FJBHNDZNM3H69OYNF' where id=3; -update noar ti set v0='JCC1JYTJXUT4FJBHNDZNM3H69OYNF' where id=3; -update noar tt set b0='A3PWQD0FD52HO3CS1' where id=3; -update noar ti set b0='A3PWQD0FD52HO3CS1' where id=3; -update noar tt set v0='KLIN79H57E8F5TBMK6TC' where id=3; -update noar ti set v0='KLIN79H57E8F5TBMK6TC' where id=3; -update noar tt set b1='46D02H8JXD3GNBMUX' where id=3; -update noar ti set b1='46D02H8JXD3GNBMUX' where id=3; -update noar tt set v0='13QF' where id=3; -update noar ti set v0='13QF' where id=3; -update noar tt set b2='RPCRYIH5PZZL54F8EYA4FQEN062' where id=3; -update noar ti set b2='RPCRYIH5PZZL54F8EYA4FQEN062' where id=3; -update noar tt set v0='T089OJE05FFC' where id=4; -update noar ti set v0='T089OJE05FFC' where id=4; -update noar tt set b0='I5A4TY2BT262V6IOOMEMO8B3IL1M6VA2' where id=4; -update noar ti set b0='I5A4TY2BT262V6IOOMEMO8B3IL1M6VA2' where id=4; -update noar tt set v0='DFLPZ' where id=4; -update noar ti set v0='DFLPZ' where id=4; -update noar tt set b1='MF3QMJRLYYZJY829Y' where id=4; -update noar ti set b1='MF3QMJRLYYZJY829Y' where id=4; -update noar tt set v0='7EXDTR' where id=4; -update noar ti set v0='7EXDTR' where id=4; -update noar tt set b2='U9099VOC' where id=4; -update noar ti set b2='U9099VOC' where id=4; -update noar tt set v0='X5D9ZZY5ED1' where id=5; -update noar ti set v0='X5D9ZZY5ED1' where id=5; -update noar tt set b0='QUSPOQAPIA01ZBLVB3R8' where id=5; -update noar ti set b0='QUSPOQAPIA01ZBLVB3R8' where id=5; -update noar tt set v0='4VFO7WDD7KMO103N3UEH8SNZ1L6MU' where id=5; -update noar ti set v0='4VFO7WDD7KMO103N3UEH8SNZ1L6MU' where id=5; -update noar tt set b1='X25A10QVYXYOASUJ' where id=5; -update noar ti set b1='X25A10QVYXYOASUJ' where id=5; -update noar tt set v0='7UR' where id=5; -update noar ti set v0='7UR' where id=5; -update noar tt set b2='O0VI' where id=5; -update noar ti set b2='O0VI' where id=5; -update noar tt set v0='IZHOZJITXW79RME1' where id=6; -update noar ti set v0='IZHOZJITXW79RME1' where id=6; -update noar tt set b0='5AGDB4' where id=6; -update noar ti set b0='5AGDB4' where id=6; -update noar tt set v0='JEPUJ4R1XY7UQ' where id=6; -update noar ti set v0='JEPUJ4R1XY7UQ' where id=6; -update noar tt set b1='8O9ZNLCUC1SCDI04PRS1PMFWF23S0RA' where id=6; -update noar ti set b1='8O9ZNLCUC1SCDI04PRS1PMFWF23S0RA' where id=6; -update noar tt set v0='HQKAE0IZSN' where id=6; -update noar ti set v0='HQKAE0IZSN' where id=6; -update noar tt set b2='H63P6PWO7JJFYI32J2V65HWC5' where id=6; -update noar ti set b2='H63P6PWO7JJFYI32J2V65HWC5' where id=6; -update noar tt set v0='SOSSWIQ8' where id=7; -update noar ti set v0='SOSSWIQ8' where id=7; -update noar tt set b0='014EKNDZTZN9I25H' where id=7; -update noar ti set b0='014EKNDZTZN9I25H' where id=7; -update noar tt set v0='P0D3PG1N1EP5CF56' where id=7; -update noar ti set v0='P0D3PG1N1EP5CF56' where id=7; -update noar tt set b1='6YQ8IXU4JNW' where id=7; -update noar ti set b1='6YQ8IXU4JNW' where id=7; -update noar tt set v0='U8KEWEFUJ' where id=7; -update noar ti set v0='U8KEWEFUJ' where id=7; -update noar tt set b2='FK1Y' where id=7; -update noar ti set b2='FK1Y' where id=7; -update noar tt set v0='HXA9OWTUP7GK' where id=8; -update noar ti set v0='HXA9OWTUP7GK' where id=8; -update noar tt set b0='RV9Y4ZEOW37P4JZ0BA75ZLZX0' where id=8; -update noar ti set b0='RV9Y4ZEOW37P4JZ0BA75ZLZX0' where id=8; -update noar tt set v0='2K' where id=8; -update noar ti set v0='2K' where id=8; -update noar tt set b1='XMYON35ZQZCH8D' where id=8; -update noar ti set b1='XMYON35ZQZCH8D' where id=8; -update noar tt set v0='35' where id=8; -update noar ti set v0='35' where id=8; -update noar tt set b2='5F489KFTJ2LG2' where id=8; -update noar ti set b2='5F489KFTJ2LG2' where id=8; -update noar tt set v0='G0G0VLM17EFBU' where id=9; -update noar ti set v0='G0G0VLM17EFBU' where id=9; -update noar tt set b0='KN6XI62R' where id=9; -update noar ti set b0='KN6XI62R' where id=9; -update noar tt set v0='EBXVDUMPWUP53ZRX' where id=9; -update noar ti set v0='EBXVDUMPWUP53ZRX' where id=9; -update noar tt set b1='J' where id=9; -update noar ti set b1='J' where id=9; -update noar tt set v0='X8ZX2S' where id=9; -update noar ti set v0='X8ZX2S' where id=9; -update noar tt set b2='ABNA85AE8H25AY4D83FJONELG1FBU3L7' where id=9; -update noar ti set b2='ABNA85AE8H25AY4D83FJONELG1FBU3L7' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -f0 int null, -v0 varchar(256) null, -b0 mediumblob null, -b1 tinyblob null, -b2 mediumblob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='BRNJ' where id=1; -update noar ti set v0='BRNJ' where id=1; -update noar tt set b0='R0ZEP9T' where id=1; -update noar ti set b0='R0ZEP9T' where id=1; -update noar tt set v0='ADQXWREPB637SILIJQ5N05NBGT' where id=1; -update noar ti set v0='ADQXWREPB637SILIJQ5N05NBGT' where id=1; -update noar tt set b1='2JWOBDTVSVAE6T8RN8QCPXIF1DYDES9' where id=1; -update noar ti set b1='2JWOBDTVSVAE6T8RN8QCPXIF1DYDES9' where id=1; -update noar tt set v0='YISO92KUL2QB35L5S57PI6DWM' where id=1; -update noar ti set v0='YISO92KUL2QB35L5S57PI6DWM' where id=1; -update noar tt set b2='HZ3OVMOBWG3WSAA32' where id=1; -update noar ti set b2='HZ3OVMOBWG3WSAA32' where id=1; -update noar tt set v0='0QY2NKDXBDTCQKS9UEMOQD7' where id=2; -update noar ti set v0='0QY2NKDXBDTCQKS9UEMOQD7' where id=2; -update noar tt set b0='ZEQA9Y8FDD694ZLKY2M8P9H3' where id=2; -update noar ti set b0='ZEQA9Y8FDD694ZLKY2M8P9H3' where id=2; -update noar tt set v0='ITOPJXOYH' where id=2; -update noar ti set v0='ITOPJXOYH' where id=2; -update noar tt set b1='HQGSGMLH0PGPB8' where id=2; -update noar ti set b1='HQGSGMLH0PGPB8' where id=2; -update noar tt set v0='44KJN' where id=2; -update noar ti set v0='44KJN' where id=2; -update noar tt set b2='Q23BYKABZ' where id=2; -update noar ti set b2='Q23BYKABZ' where id=2; -update noar tt set v0='3DLUCW0V529HOY0J' where id=3; -update noar ti set v0='3DLUCW0V529HOY0J' where id=3; -update noar tt set b0='M7OM2WQ' where id=3; -update noar ti set b0='M7OM2WQ' where id=3; -update noar tt set v0='F3C4D0Z0DC25L6XD3C' where id=3; -update noar ti set v0='F3C4D0Z0DC25L6XD3C' where id=3; -update noar tt set b1='WC41P1WQNRMHIFLDGZWY7OT3A783U' where id=3; -update noar ti set b1='WC41P1WQNRMHIFLDGZWY7OT3A783U' where id=3; -update noar tt set v0='N313TH' where id=3; -update noar ti set v0='N313TH' where id=3; -update noar tt set b2='8WGJ2P1P' where id=3; -update noar ti set b2='8WGJ2P1P' where id=3; -update noar tt set v0='PZ47VRUVV0W21MZVZ' where id=4; -update noar ti set v0='PZ47VRUVV0W21MZVZ' where id=4; -update noar tt set b0='U4Z2' where id=4; -update noar ti set b0='U4Z2' where id=4; -update noar tt set v0='6QVYTY3BBX1KJ7SLW9IU2HQ' where id=4; -update noar ti set v0='6QVYTY3BBX1KJ7SLW9IU2HQ' where id=4; -update noar tt set b1='KKO6A2QFSR1INUQ17' where id=4; -update noar ti set b1='KKO6A2QFSR1INUQ17' where id=4; -update noar tt set v0='TTN9F9KHFXV' where id=4; -update noar ti set v0='TTN9F9KHFXV' where id=4; -update noar tt set b2='NQVCQZYGXAO9NIMGHR0TK' where id=4; -update noar ti set b2='NQVCQZYGXAO9NIMGHR0TK' where id=4; -update noar tt set v0='LEGRO7N8Z69VB80L' where id=5; -update noar ti set v0='LEGRO7N8Z69VB80L' where id=5; -update noar tt set b0='8908XTYODQO0' where id=5; -update noar ti set b0='8908XTYODQO0' where id=5; -update noar tt set v0='SR' where id=5; -update noar ti set v0='SR' where id=5; -update noar tt set b1='QF5SXFVPA98' where id=5; -update noar ti set b1='QF5SXFVPA98' where id=5; -update noar tt set v0='5KNUMGRJ8683IZGDJS' where id=5; -update noar ti set v0='5KNUMGRJ8683IZGDJS' where id=5; -update noar tt set b2='F5CIDVNCIJ4WDXG' where id=5; -update noar ti set b2='F5CIDVNCIJ4WDXG' where id=5; -update noar tt set v0='XY9EYTT5WRX2QXTXDG09CDKMOYB' where id=6; -update noar ti set v0='XY9EYTT5WRX2QXTXDG09CDKMOYB' where id=6; -update noar tt set b0='985BSDRIFUAC70MH11TGFCN3P6' where id=6; -update noar ti set b0='985BSDRIFUAC70MH11TGFCN3P6' where id=6; -update noar tt set v0='AW7EIJ4HNW' where id=6; -update noar ti set v0='AW7EIJ4HNW' where id=6; -update noar tt set b1='X6BFNKFP2VS00SAYLMAJOO' where id=6; -update noar ti set b1='X6BFNKFP2VS00SAYLMAJOO' where id=6; -update noar tt set v0='DNO34BG10QBJO54977AI6M3KBA5VYHQ3' where id=6; -update noar ti set v0='DNO34BG10QBJO54977AI6M3KBA5VYHQ3' where id=6; -update noar tt set b2='SVZDG45A3505DQZ' where id=6; -update noar ti set b2='SVZDG45A3505DQZ' where id=6; -update noar tt set v0='UHJNP7T9KPC72M5HR' where id=7; -update noar ti set v0='UHJNP7T9KPC72M5HR' where id=7; -update noar tt set b0='0SOMHBCZV7T8STTP610F33CF5Z8' where id=7; -update noar ti set b0='0SOMHBCZV7T8STTP610F33CF5Z8' where id=7; -update noar tt set v0='GYWMS3LQIXTVLW8CH70' where id=7; -update noar ti set v0='GYWMS3LQIXTVLW8CH70' where id=7; -update noar tt set b1='PH2A949QDC5CB7YSQ041SBHLDV' where id=7; -update noar ti set b1='PH2A949QDC5CB7YSQ041SBHLDV' where id=7; -update noar tt set v0='DIXSDMFQSHD8' where id=7; -update noar ti set v0='DIXSDMFQSHD8' where id=7; -update noar tt set b2='HFIO8EBDF8BZZRPCZ75VC' where id=7; -update noar ti set b2='HFIO8EBDF8BZZRPCZ75VC' where id=7; -update noar tt set v0='8FQHKJ95U' where id=8; -update noar ti set v0='8FQHKJ95U' where id=8; -update noar tt set b0='BI8A545TJ9PU' where id=8; -update noar ti set b0='BI8A545TJ9PU' where id=8; -update noar tt set v0='WDTW2XQ7OW0UFA5CG' where id=8; -update noar ti set v0='WDTW2XQ7OW0UFA5CG' where id=8; -update noar tt set b1='MW843BW73P9EMAMJUD74TZKXJ9R3TW' where id=8; -update noar ti set b1='MW843BW73P9EMAMJUD74TZKXJ9R3TW' where id=8; -update noar tt set v0='QCP0VM2JKA0Z94CMUZXQ9XWBO1VXYY7' where id=8; -update noar ti set v0='QCP0VM2JKA0Z94CMUZXQ9XWBO1VXYY7' where id=8; -update noar tt set b2='ZGZ4LOJ6ULEM8HH8UBOS9EHYZLQ' where id=8; -update noar ti set b2='ZGZ4LOJ6ULEM8HH8UBOS9EHYZLQ' where id=8; -update noar tt set v0='K6' where id=9; -update noar ti set v0='K6' where id=9; -update noar tt set b0='LPZQ2' where id=9; -update noar ti set b0='LPZQ2' where id=9; -update noar tt set v0='WU8NI46FNT' where id=9; -update noar ti set v0='WU8NI46FNT' where id=9; -update noar tt set b1='ONSU5ENQH5AC3GREDTK1YASH' where id=9; -update noar ti set b1='ONSU5ENQH5AC3GREDTK1YASH' where id=9; -update noar tt set v0='UC8ALF0VFUA981K8D0JMA8FP8' where id=9; -update noar ti set v0='UC8ALF0VFUA981K8D0JMA8FP8' where id=9; -update noar tt set b2='CNBZG6GP3IG' where id=9; -update noar ti set b2='CNBZG6GP3IG' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -f0 int not null, -v0 varchar(32) not null, -b0 mediumblob not null, -b1 tinyblob not null, -b2 mediumblob not null -) engine=tokudb; -insert into tt values (1,0,'','','',''); -insert into tt values (2,0,'','','',''); -insert into tt values (3,0,'','','',''); -insert into tt values (4,0,'','','',''); -insert into tt values (5,0,'','','',''); -insert into tt values (6,0,'','','',''); -insert into tt values (7,0,'','','',''); -insert into tt values (8,0,'','','',''); -insert into tt values (9,0,'','','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='TH7UVMIEIKOWKWC6D0HS' where id=1; -update noar ti set v0='TH7UVMIEIKOWKWC6D0HS' where id=1; -update noar tt set b0='8C3Q698B5AZWC69VJ15OBMFDTC' where id=1; -update noar ti set b0='8C3Q698B5AZWC69VJ15OBMFDTC' where id=1; -update noar tt set v0='CS' where id=1; -update noar ti set v0='CS' where id=1; -update noar tt set b1='IM454LYD6X5S2U4XC165Q' where id=1; -update noar ti set b1='IM454LYD6X5S2U4XC165Q' where id=1; -update noar tt set v0='6' where id=1; -update noar ti set v0='6' where id=1; -update noar tt set b2='VYY9WRU623S4B094RHYYW' where id=1; -update noar ti set b2='VYY9WRU623S4B094RHYYW' where id=1; -update noar tt set v0='7D2AA' where id=2; -update noar ti set v0='7D2AA' where id=2; -update noar tt set b0='24UUWTHBBLKGX8OEMYIRTM8S0XGT' where id=2; -update noar ti set b0='24UUWTHBBLKGX8OEMYIRTM8S0XGT' where id=2; -update noar tt set v0='B59P527ZW8R9' where id=2; -update noar ti set v0='B59P527ZW8R9' where id=2; -update noar tt set b1='9UURG9ZUJSQEZ7Z5BSSZYL3OOFB' where id=2; -update noar ti set b1='9UURG9ZUJSQEZ7Z5BSSZYL3OOFB' where id=2; -update noar tt set v0='UDPTMLINC5EE' where id=2; -update noar ti set v0='UDPTMLINC5EE' where id=2; -update noar tt set b2='0WZM2RXM7CXM5NXQ8IG' where id=2; -update noar ti set b2='0WZM2RXM7CXM5NXQ8IG' where id=2; -update noar tt set v0='2' where id=3; -update noar ti set v0='2' where id=3; -update noar tt set b0='XVMVMSX9E' where id=3; -update noar ti set b0='XVMVMSX9E' where id=3; -update noar tt set v0='Q9JPLXDKTN' where id=3; -update noar ti set v0='Q9JPLXDKTN' where id=3; -update noar tt set b1='4CZVQ20XZ1GEP63L4Q8D94VTYAVQ' where id=3; -update noar ti set b1='4CZVQ20XZ1GEP63L4Q8D94VTYAVQ' where id=3; -update noar tt set v0='1SFSJS' where id=3; -update noar ti set v0='1SFSJS' where id=3; -update noar tt set b2='V' where id=3; -update noar ti set b2='V' where id=3; -update noar tt set v0='JN4BJM70W10T15C15EKMVUNGSH' where id=4; -update noar ti set v0='JN4BJM70W10T15C15EKMVUNGSH' where id=4; -update noar tt set b0='LYD6Q1' where id=4; -update noar ti set b0='LYD6Q1' where id=4; -update noar tt set v0='6WJPTLDWMLIX8344U25HMW3XZA' where id=4; -update noar ti set v0='6WJPTLDWMLIX8344U25HMW3XZA' where id=4; -update noar tt set b1='7' where id=4; -update noar ti set b1='7' where id=4; -update noar tt set v0='644EE3PPAXKGXJQ3M8B0XY' where id=4; -update noar ti set v0='644EE3PPAXKGXJQ3M8B0XY' where id=4; -update noar tt set b2='33HIWBVW7ZUN8AM4NVDIA7JCU6OV' where id=4; -update noar ti set b2='33HIWBVW7ZUN8AM4NVDIA7JCU6OV' where id=4; -update noar tt set v0='Y9ETXJCII3MC58' where id=5; -update noar ti set v0='Y9ETXJCII3MC58' where id=5; -update noar tt set b0='0N0HGVJLLBH37CD1VAA8VK5U5TC' where id=5; -update noar ti set b0='0N0HGVJLLBH37CD1VAA8VK5U5TC' where id=5; -update noar tt set v0='AFTZA16CIX1W' where id=5; -update noar ti set v0='AFTZA16CIX1W' where id=5; -update noar tt set b1='4' where id=5; -update noar ti set b1='4' where id=5; -update noar tt set v0='FY75YOMMXG9OLMDD1Z' where id=5; -update noar ti set v0='FY75YOMMXG9OLMDD1Z' where id=5; -update noar tt set b2='4IWO74GU7GZP9PIRRX9US4YW' where id=5; -update noar ti set b2='4IWO74GU7GZP9PIRRX9US4YW' where id=5; -update noar tt set v0='M9A' where id=6; -update noar ti set v0='M9A' where id=6; -update noar tt set b0='U' where id=6; -update noar ti set b0='U' where id=6; -update noar tt set v0='I3A0RXR95B2R5DLSSG5' where id=6; -update noar ti set v0='I3A0RXR95B2R5DLSSG5' where id=6; -update noar tt set b1='W5MTAI14B4O7LJVMP1H' where id=6; -update noar ti set b1='W5MTAI14B4O7LJVMP1H' where id=6; -update noar tt set v0='U' where id=6; -update noar ti set v0='U' where id=6; -update noar tt set b2='81Z1R' where id=6; -update noar ti set b2='81Z1R' where id=6; -update noar tt set v0='Z3HU22K7BN64IBJTE2' where id=7; -update noar ti set v0='Z3HU22K7BN64IBJTE2' where id=7; -update noar tt set b0='2QFGR9DI' where id=7; -update noar ti set b0='2QFGR9DI' where id=7; -update noar tt set v0='W64Y4HRF4XMQ2O' where id=7; -update noar ti set v0='W64Y4HRF4XMQ2O' where id=7; -update noar tt set b1='7NKKHVW9SNPP6OJZH1G' where id=7; -update noar ti set b1='7NKKHVW9SNPP6OJZH1G' where id=7; -update noar tt set v0='U6LF1' where id=7; -update noar ti set v0='U6LF1' where id=7; -update noar tt set b2='X22XVF5SE0NXWLLIII8S9UH79JUMT' where id=7; -update noar ti set b2='X22XVF5SE0NXWLLIII8S9UH79JUMT' where id=7; -update noar tt set v0='TMMVCKDIVAS4P' where id=8; -update noar ti set v0='TMMVCKDIVAS4P' where id=8; -update noar tt set b0='FGX8YR7MD9T68' where id=8; -update noar ti set b0='FGX8YR7MD9T68' where id=8; -update noar tt set v0='7C01B' where id=8; -update noar ti set v0='7C01B' where id=8; -update noar tt set b1='D423L38DIHGBLZWNY71P66VH5BMNOMG' where id=8; -update noar ti set b1='D423L38DIHGBLZWNY71P66VH5BMNOMG' where id=8; -update noar tt set v0='EJGNO9SXMFSG0FMB0VVB' where id=8; -update noar ti set v0='EJGNO9SXMFSG0FMB0VVB' where id=8; -update noar tt set b2='AA32BL9UJBHRJ3T' where id=8; -update noar ti set b2='AA32BL9UJBHRJ3T' where id=8; -update noar tt set v0='4UST1' where id=9; -update noar ti set v0='4UST1' where id=9; -update noar tt set b0='8U6X4AWR4QC7DVRGN5PXIY9E5' where id=9; -update noar ti set b0='8U6X4AWR4QC7DVRGN5PXIY9E5' where id=9; -update noar tt set v0='IK9INHJ4GI46WRT9F89CO56CLJ1' where id=9; -update noar ti set v0='IK9INHJ4GI46WRT9F89CO56CLJ1' where id=9; -update noar tt set b1='J7BM4P3M5UAOWETNSNKM9G6FQAIB' where id=9; -update noar ti set b1='J7BM4P3M5UAOWETNSNKM9G6FQAIB' where id=9; -update noar tt set v0='E8GIZWM0T' where id=9; -update noar ti set v0='E8GIZWM0T' where id=9; -update noar tt set b2='0342DNAD3R3VQ0FSG' where id=9; -update noar ti set b2='0342DNAD3R3VQ0FSG' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -f0 int not null, -v0 varchar(256) not null, -b0 mediumblob not null, -b1 tinyblob not null, -b2 mediumblob not null -) engine=tokudb; -insert into tt values (1,0,'','','',''); -insert into tt values (2,0,'','','',''); -insert into tt values (3,0,'','','',''); -insert into tt values (4,0,'','','',''); -insert into tt values (5,0,'','','',''); -insert into tt values (6,0,'','','',''); -insert into tt values (7,0,'','','',''); -insert into tt values (8,0,'','','',''); -insert into tt values (9,0,'','','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='6KVFIRTZ354LYTPXK2FM6F97F' where id=1; -update noar ti set v0='6KVFIRTZ354LYTPXK2FM6F97F' where id=1; -update noar tt set b0='4LMHLFRN56JGAYHAS0JBO2UZPX72NSA' where id=1; -update noar ti set b0='4LMHLFRN56JGAYHAS0JBO2UZPX72NSA' where id=1; -update noar tt set v0='XRZO7583' where id=1; -update noar ti set v0='XRZO7583' where id=1; -update noar tt set b1='TP97NN39JN5O54' where id=1; -update noar ti set b1='TP97NN39JN5O54' where id=1; -update noar tt set v0='M7NQMI3AKMZLAFMZYCRBUP' where id=1; -update noar ti set v0='M7NQMI3AKMZLAFMZYCRBUP' where id=1; -update noar tt set b2='2JT09K00UUG5Y2' where id=1; -update noar ti set b2='2JT09K00UUG5Y2' where id=1; -update noar tt set v0='QQDS1' where id=2; -update noar ti set v0='QQDS1' where id=2; -update noar tt set b0='14YAZ0UDWUR1PWNWF5AABRS' where id=2; -update noar ti set b0='14YAZ0UDWUR1PWNWF5AABRS' where id=2; -update noar tt set v0='2HPFLNOI' where id=2; -update noar ti set v0='2HPFLNOI' where id=2; -update noar tt set b1='VW' where id=2; -update noar ti set b1='VW' where id=2; -update noar tt set v0='D7EDMNGL5HOJ7QZGUSWKBZ1VQMVKDW' where id=2; -update noar ti set v0='D7EDMNGL5HOJ7QZGUSWKBZ1VQMVKDW' where id=2; -update noar tt set b2='TKQHZBAB7UII22N' where id=2; -update noar ti set b2='TKQHZBAB7UII22N' where id=2; -update noar tt set v0='GATB8QG4K12HS44HIJ54R8W' where id=3; -update noar ti set v0='GATB8QG4K12HS44HIJ54R8W' where id=3; -update noar tt set b0='N8R' where id=3; -update noar ti set b0='N8R' where id=3; -update noar tt set v0='OAZT' where id=3; -update noar ti set v0='OAZT' where id=3; -update noar tt set b1='1V1HVIW6735HX67NZTU' where id=3; -update noar ti set b1='1V1HVIW6735HX67NZTU' where id=3; -update noar tt set v0='A4Q3RW6RG7' where id=3; -update noar ti set v0='A4Q3RW6RG7' where id=3; -update noar tt set b2='X33R0KLS8Z9GG4P25FY7O279GN1Y' where id=3; -update noar ti set b2='X33R0KLS8Z9GG4P25FY7O279GN1Y' where id=3; -update noar tt set v0='CM5TSXRMW1B0ONLI9KYOUGC' where id=4; -update noar ti set v0='CM5TSXRMW1B0ONLI9KYOUGC' where id=4; -update noar tt set b0='GV7U3UZBN8OPMV3ZFQT7CH3RVVHQG' where id=4; -update noar ti set b0='GV7U3UZBN8OPMV3ZFQT7CH3RVVHQG' where id=4; -update noar tt set v0='LOIQWJJ9808COO0NY78QD9OISPK0BW' where id=4; -update noar ti set v0='LOIQWJJ9808COO0NY78QD9OISPK0BW' where id=4; -update noar tt set b1='SQR93' where id=4; -update noar ti set b1='SQR93' where id=4; -update noar tt set v0='QGCI76U34C9FB6' where id=4; -update noar ti set v0='QGCI76U34C9FB6' where id=4; -update noar tt set b2='6KUIT' where id=4; -update noar ti set b2='6KUIT' where id=4; -update noar tt set v0='3QT0K8O' where id=5; -update noar ti set v0='3QT0K8O' where id=5; -update noar tt set b0='SQDLGBEULRU2EFQ440' where id=5; -update noar ti set b0='SQDLGBEULRU2EFQ440' where id=5; -update noar tt set v0='DTD1RKDYV4KC1' where id=5; -update noar ti set v0='DTD1RKDYV4KC1' where id=5; -update noar tt set b1='X0GFUQGAL5WHK' where id=5; -update noar ti set b1='X0GFUQGAL5WHK' where id=5; -update noar tt set v0='B8H6KHRET1P5XKIQ3CCHCTIZTAUA2' where id=5; -update noar ti set v0='B8H6KHRET1P5XKIQ3CCHCTIZTAUA2' where id=5; -update noar tt set b2='VATYHMH8N7A2877NMEU2JFB891U' where id=5; -update noar ti set b2='VATYHMH8N7A2877NMEU2JFB891U' where id=5; -update noar tt set v0='67HUVP3PJU0N' where id=6; -update noar ti set v0='67HUVP3PJU0N' where id=6; -update noar tt set b0='HUPD22HZD' where id=6; -update noar ti set b0='HUPD22HZD' where id=6; -update noar tt set v0='J3P70REANLB2I348DELB20PO' where id=6; -update noar ti set v0='J3P70REANLB2I348DELB20PO' where id=6; -update noar tt set b1='3UFYMMM8RQP530AU08RZEF716TDSH4' where id=6; -update noar ti set b1='3UFYMMM8RQP530AU08RZEF716TDSH4' where id=6; -update noar tt set v0='LD' where id=6; -update noar ti set v0='LD' where id=6; -update noar tt set b2='KJ53P' where id=6; -update noar ti set b2='KJ53P' where id=6; -update noar tt set v0='I' where id=7; -update noar ti set v0='I' where id=7; -update noar tt set b0='RC4COSJJY' where id=7; -update noar ti set b0='RC4COSJJY' where id=7; -update noar tt set v0='QJ3YEZ4BYIVWBN3UCNT3QJ5BUZ3' where id=7; -update noar ti set v0='QJ3YEZ4BYIVWBN3UCNT3QJ5BUZ3' where id=7; -update noar tt set b1='II1L6B1V0MG2B24F4S0H0FDY' where id=7; -update noar ti set b1='II1L6B1V0MG2B24F4S0H0FDY' where id=7; -update noar tt set v0='9713QXUKOK3UME' where id=7; -update noar ti set v0='9713QXUKOK3UME' where id=7; -update noar tt set b2='CTN6M9KSTBDPI3B6QOSFJYQ' where id=7; -update noar ti set b2='CTN6M9KSTBDPI3B6QOSFJYQ' where id=7; -update noar tt set v0='SOU5QQ2PUUR9FV7QCZ' where id=8; -update noar ti set v0='SOU5QQ2PUUR9FV7QCZ' where id=8; -update noar tt set b0='Z6P5' where id=8; -update noar ti set b0='Z6P5' where id=8; -update noar tt set v0='LYFA21YOE9Y1Q484CH6WJK' where id=8; -update noar ti set v0='LYFA21YOE9Y1Q484CH6WJK' where id=8; -update noar tt set b1='ZQJBW970U8KO82' where id=8; -update noar ti set b1='ZQJBW970U8KO82' where id=8; -update noar tt set v0='Z9LKVD62S3B7ZIFL' where id=8; -update noar ti set v0='Z9LKVD62S3B7ZIFL' where id=8; -update noar tt set b2='GPGBBO8B1R2WG5MGSZGC2P28' where id=8; -update noar ti set b2='GPGBBO8B1R2WG5MGSZGC2P28' where id=8; -update noar tt set v0='0949Y6VFL63EZGIGDDZSXE4OUNRUTL0C' where id=9; -update noar ti set v0='0949Y6VFL63EZGIGDDZSXE4OUNRUTL0C' where id=9; -update noar tt set b0='NO' where id=9; -update noar ti set b0='NO' where id=9; -update noar tt set v0='3SXZAU2MA481SH8XBX7O569DFSFX' where id=9; -update noar ti set v0='3SXZAU2MA481SH8XBX7O569DFSFX' where id=9; -update noar tt set b1='Q333A2Q8' where id=9; -update noar ti set b1='Q333A2Q8' where id=9; -update noar tt set v0='NLLGJR235L' where id=9; -update noar ti set v0='NLLGJR235L' where id=9; -update noar tt set b2='4SM7WEFTVMSNRPHZJOBF3BFZ8EYVAO' where id=9; -update noar ti set b2='4SM7WEFTVMSNRPHZJOBF3BFZ8EYVAO' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -f0 int null, -v0 varchar(32) null, -b0 mediumblob null, -b1 tinyblob null, -b2 longblob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='GIAIMRY' where id=1; -update noar ti set v0='GIAIMRY' where id=1; -update noar tt set b0='MQ2R6P6CYS1GOBM0' where id=1; -update noar ti set b0='MQ2R6P6CYS1GOBM0' where id=1; -update noar tt set v0='J6TX9Z74YL3XLT1BVL4QOM2NIU' where id=1; -update noar ti set v0='J6TX9Z74YL3XLT1BVL4QOM2NIU' where id=1; -update noar tt set b1='V8S21JGOUIJD0J66VXD68FM0T3I' where id=1; -update noar ti set b1='V8S21JGOUIJD0J66VXD68FM0T3I' where id=1; -update noar tt set v0='7LPDBCFNA70OE97CT' where id=1; -update noar ti set v0='7LPDBCFNA70OE97CT' where id=1; -update noar tt set b2='ZR69U74BCO' where id=1; -update noar ti set b2='ZR69U74BCO' where id=1; -update noar tt set v0='UOKZD0DDO3E49RAFA8OR3HRKLO8PSRSV' where id=2; -update noar ti set v0='UOKZD0DDO3E49RAFA8OR3HRKLO8PSRSV' where id=2; -update noar tt set b0='F3XBXIPQ48QMUMW8S6JI8JIU5' where id=2; -update noar ti set b0='F3XBXIPQ48QMUMW8S6JI8JIU5' where id=2; -update noar tt set v0='0GEQQBJQ2MQEEBTEPK2' where id=2; -update noar ti set v0='0GEQQBJQ2MQEEBTEPK2' where id=2; -update noar tt set b1='M5JGSJWRAZIVHTZNPXIELWA' where id=2; -update noar ti set b1='M5JGSJWRAZIVHTZNPXIELWA' where id=2; -update noar tt set v0='VWVXBHKJL68XCP0W8BY' where id=2; -update noar ti set v0='VWVXBHKJL68XCP0W8BY' where id=2; -update noar tt set b2='RL4R431VDKQHBN1' where id=2; -update noar ti set b2='RL4R431VDKQHBN1' where id=2; -update noar tt set v0='USCYELR8BY07HI1R6' where id=3; -update noar ti set v0='USCYELR8BY07HI1R6' where id=3; -update noar tt set b0='QRFHDFW' where id=3; -update noar ti set b0='QRFHDFW' where id=3; -update noar tt set v0='I8FDSW3GO5MX76024G1TSNOGV3FXK' where id=3; -update noar ti set v0='I8FDSW3GO5MX76024G1TSNOGV3FXK' where id=3; -update noar tt set b1='U3NLW608YCBIJO6ZO7Y8HO' where id=3; -update noar ti set b1='U3NLW608YCBIJO6ZO7Y8HO' where id=3; -update noar tt set v0='VJQW8B0TRHU' where id=3; -update noar ti set v0='VJQW8B0TRHU' where id=3; -update noar tt set b2='19EL7ZQELWN' where id=3; -update noar ti set b2='19EL7ZQELWN' where id=3; -update noar tt set v0='KQ9WZM60583O3QP' where id=4; -update noar ti set v0='KQ9WZM60583O3QP' where id=4; -update noar tt set b0='XMJSL2ZPKOTM0996LF' where id=4; -update noar ti set b0='XMJSL2ZPKOTM0996LF' where id=4; -update noar tt set v0='4BPGHZWRCAYJBF8' where id=4; -update noar ti set v0='4BPGHZWRCAYJBF8' where id=4; -update noar tt set b1='L5E014TG7U5KZ7F7LC' where id=4; -update noar ti set b1='L5E014TG7U5KZ7F7LC' where id=4; -update noar tt set v0='PXKJIV0140NLLQDCR830INOHTB' where id=4; -update noar ti set v0='PXKJIV0140NLLQDCR830INOHTB' where id=4; -update noar tt set b2='RW4C' where id=4; -update noar ti set b2='RW4C' where id=4; -update noar tt set v0='3RWBK0BJY1PRLOJZZ' where id=5; -update noar ti set v0='3RWBK0BJY1PRLOJZZ' where id=5; -update noar tt set b0='A' where id=5; -update noar ti set b0='A' where id=5; -update noar tt set v0='SK8YEBOP1HU601TMMF5SMOQ9' where id=5; -update noar ti set v0='SK8YEBOP1HU601TMMF5SMOQ9' where id=5; -update noar tt set b1='INR0H0' where id=5; -update noar ti set b1='INR0H0' where id=5; -update noar tt set v0='JRB1J3N0' where id=5; -update noar ti set v0='JRB1J3N0' where id=5; -update noar tt set b2='NBVXYTYWGLIGGJHRA2C0' where id=5; -update noar ti set b2='NBVXYTYWGLIGGJHRA2C0' where id=5; -update noar tt set v0='RQLW' where id=6; -update noar ti set v0='RQLW' where id=6; -update noar tt set b0='SSLIJIZW3I8Z13LC2RM577' where id=6; -update noar ti set b0='SSLIJIZW3I8Z13LC2RM577' where id=6; -update noar tt set v0='2BO5N3W8WI4N6OME2MKD1NC' where id=6; -update noar ti set v0='2BO5N3W8WI4N6OME2MKD1NC' where id=6; -update noar tt set b1='IGAKA851VXVNQNPZH5DWRH65' where id=6; -update noar ti set b1='IGAKA851VXVNQNPZH5DWRH65' where id=6; -update noar tt set v0='NSMUJPVQC' where id=6; -update noar ti set v0='NSMUJPVQC' where id=6; -update noar tt set b2='ID5IN1AB2LDFAEUR2G' where id=6; -update noar ti set b2='ID5IN1AB2LDFAEUR2G' where id=6; -update noar tt set v0='RMO' where id=7; -update noar ti set v0='RMO' where id=7; -update noar tt set b0='5Y3J41T33RPMQ' where id=7; -update noar ti set b0='5Y3J41T33RPMQ' where id=7; -update noar tt set v0='1' where id=7; -update noar ti set v0='1' where id=7; -update noar tt set b1='7UNXD8539M1AQVAKJ2K5XNQ' where id=7; -update noar ti set b1='7UNXD8539M1AQVAKJ2K5XNQ' where id=7; -update noar tt set v0='02UNVRHFT9MLHAY6J8' where id=7; -update noar ti set v0='02UNVRHFT9MLHAY6J8' where id=7; -update noar tt set b2='3Z6EL36QQSE8CDT8' where id=7; -update noar ti set b2='3Z6EL36QQSE8CDT8' where id=7; -update noar tt set v0='SZCHT9NJLJN2A7N7XZYF1RL6' where id=8; -update noar ti set v0='SZCHT9NJLJN2A7N7XZYF1RL6' where id=8; -update noar tt set b0='43LZI9FW6X7VK33RMGFXX56V' where id=8; -update noar ti set b0='43LZI9FW6X7VK33RMGFXX56V' where id=8; -update noar tt set v0='3ZLCOU6F7W7O7S3C5HJPL51QM0H1M' where id=8; -update noar ti set v0='3ZLCOU6F7W7O7S3C5HJPL51QM0H1M' where id=8; -update noar tt set b1='I4YIYKNQBOK8T1OOGR5' where id=8; -update noar ti set b1='I4YIYKNQBOK8T1OOGR5' where id=8; -update noar tt set v0='KCEW67CD9YUS' where id=8; -update noar ti set v0='KCEW67CD9YUS' where id=8; -update noar tt set b2='Q75FX4L9CUPC8B' where id=8; -update noar ti set b2='Q75FX4L9CUPC8B' where id=8; -update noar tt set v0='PWEUDK6CSU7SMTFE8MHRDRI6' where id=9; -update noar ti set v0='PWEUDK6CSU7SMTFE8MHRDRI6' where id=9; -update noar tt set b0='CN46TH3KF31A81KW0Q2BNXGRE5' where id=9; -update noar ti set b0='CN46TH3KF31A81KW0Q2BNXGRE5' where id=9; -update noar tt set v0='6FSSBVOPALV64D' where id=9; -update noar ti set v0='6FSSBVOPALV64D' where id=9; -update noar tt set b1='2BHVYYA53WPZY8R' where id=9; -update noar ti set b1='2BHVYYA53WPZY8R' where id=9; -update noar tt set v0='KN2OPHKMAK3AKEEE1CV0E5B8L' where id=9; -update noar ti set v0='KN2OPHKMAK3AKEEE1CV0E5B8L' where id=9; -update noar tt set b2='I847C7HSS26WCT' where id=9; -update noar ti set b2='I847C7HSS26WCT' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -f0 int null, -v0 varchar(256) null, -b0 mediumblob null, -b1 tinyblob null, -b2 longblob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='QH6K36CVT4MOFWFPT7ASIGBMTQ' where id=1; -update noar ti set v0='QH6K36CVT4MOFWFPT7ASIGBMTQ' where id=1; -update noar tt set b0='KYWWIJPJPJFC740FUSHV13C' where id=1; -update noar ti set b0='KYWWIJPJPJFC740FUSHV13C' where id=1; -update noar tt set v0='BVIR3ZIFIK5LQPP5L8XE94CFQX' where id=1; -update noar ti set v0='BVIR3ZIFIK5LQPP5L8XE94CFQX' where id=1; -update noar tt set b1='BHDWN391SU' where id=1; -update noar ti set b1='BHDWN391SU' where id=1; -update noar tt set v0='YD1V8YJY9FJ0LAO0NGKBLQ67CVWCGW' where id=1; -update noar ti set v0='YD1V8YJY9FJ0LAO0NGKBLQ67CVWCGW' where id=1; -update noar tt set b2='L5QS406J4LPEKBWBD' where id=1; -update noar ti set b2='L5QS406J4LPEKBWBD' where id=1; -update noar tt set v0='1AC0DQ33PWSR' where id=2; -update noar ti set v0='1AC0DQ33PWSR' where id=2; -update noar tt set b0='43Q4CLY7QFSV6G4W84CBHJGX' where id=2; -update noar ti set b0='43Q4CLY7QFSV6G4W84CBHJGX' where id=2; -update noar tt set v0='YL5YNZST4U2HM02KAEL344B' where id=2; -update noar ti set v0='YL5YNZST4U2HM02KAEL344B' where id=2; -update noar tt set b1='J' where id=2; -update noar ti set b1='J' where id=2; -update noar tt set v0='NEWUL' where id=2; -update noar ti set v0='NEWUL' where id=2; -update noar tt set b2='2O' where id=2; -update noar ti set b2='2O' where id=2; -update noar tt set v0='I2OMK9JODMVRJFVXVZ0C82MOWZ8MYS1A' where id=3; -update noar ti set v0='I2OMK9JODMVRJFVXVZ0C82MOWZ8MYS1A' where id=3; -update noar tt set b0='OJRCJGW' where id=3; -update noar ti set b0='OJRCJGW' where id=3; -update noar tt set v0='JEE1YC2ZN0J71DUVEH' where id=3; -update noar ti set v0='JEE1YC2ZN0J71DUVEH' where id=3; -update noar tt set b1='3QYLUDZR3B18RDIH7B7YEBYJ4W8HJ' where id=3; -update noar ti set b1='3QYLUDZR3B18RDIH7B7YEBYJ4W8HJ' where id=3; -update noar tt set v0='S594BSI16QSX4W4G' where id=3; -update noar ti set v0='S594BSI16QSX4W4G' where id=3; -update noar tt set b2='QP6RCNTURLSL' where id=3; -update noar ti set b2='QP6RCNTURLSL' where id=3; -update noar tt set v0='T' where id=4; -update noar ti set v0='T' where id=4; -update noar tt set b0='5' where id=4; -update noar ti set b0='5' where id=4; -update noar tt set v0='OOJ0IIMQ914CNHNC6QG2BG423LEW49' where id=4; -update noar ti set v0='OOJ0IIMQ914CNHNC6QG2BG423LEW49' where id=4; -update noar tt set b1='DAKMMKFRPIENJI2' where id=4; -update noar ti set b1='DAKMMKFRPIENJI2' where id=4; -update noar tt set v0='V17OVNSOEHPEGA81' where id=4; -update noar ti set v0='V17OVNSOEHPEGA81' where id=4; -update noar tt set b2='P6Q0' where id=4; -update noar ti set b2='P6Q0' where id=4; -update noar tt set v0='JDWALEQEYOSUHM' where id=5; -update noar ti set v0='JDWALEQEYOSUHM' where id=5; -update noar tt set b0='8UX4O6B' where id=5; -update noar ti set b0='8UX4O6B' where id=5; -update noar tt set v0='D5IUH8VXUFCD2A3DRXL39' where id=5; -update noar ti set v0='D5IUH8VXUFCD2A3DRXL39' where id=5; -update noar tt set b1='E5GK5A4UOAFU21JAJFMIJ4' where id=5; -update noar ti set b1='E5GK5A4UOAFU21JAJFMIJ4' where id=5; -update noar tt set v0='37G6QITT8UWJAQSPO6W9QMJLHHF74KB3' where id=5; -update noar ti set v0='37G6QITT8UWJAQSPO6W9QMJLHHF74KB3' where id=5; -update noar tt set b2='WXOLDPZBH7O6WE1A54RUJ3QVYKT8E' where id=5; -update noar ti set b2='WXOLDPZBH7O6WE1A54RUJ3QVYKT8E' where id=5; -update noar tt set v0='C8VRMW3LVHOC5S4' where id=6; -update noar ti set v0='C8VRMW3LVHOC5S4' where id=6; -update noar tt set b0='0YV87CFU2XYDSHJV1BM0M160BKF4' where id=6; -update noar ti set b0='0YV87CFU2XYDSHJV1BM0M160BKF4' where id=6; -update noar tt set v0='KO6V0ME4R2PFB0J0W8I5V2X4RL5REZLU' where id=6; -update noar ti set v0='KO6V0ME4R2PFB0J0W8I5V2X4RL5REZLU' where id=6; -update noar tt set b1='XXJ4R8IY69HZFWEP8VT1NNY' where id=6; -update noar ti set b1='XXJ4R8IY69HZFWEP8VT1NNY' where id=6; -update noar tt set v0='TWOV' where id=6; -update noar ti set v0='TWOV' where id=6; -update noar tt set b2='0EMX3IAEC2NFEZP' where id=6; -update noar ti set b2='0EMX3IAEC2NFEZP' where id=6; -update noar tt set v0='C6OJ2A' where id=7; -update noar ti set v0='C6OJ2A' where id=7; -update noar tt set b0='CQSIZ3GYCN3QOEQUC0B558PUM4NRPAG9' where id=7; -update noar ti set b0='CQSIZ3GYCN3QOEQUC0B558PUM4NRPAG9' where id=7; -update noar tt set v0='O0TZ6YK6Y7Y5WL7DGB7BHGAJX0N' where id=7; -update noar ti set v0='O0TZ6YK6Y7Y5WL7DGB7BHGAJX0N' where id=7; -update noar tt set b1='KAKJT3PO15XEAX6H06XYSASU8GY' where id=7; -update noar ti set b1='KAKJT3PO15XEAX6H06XYSASU8GY' where id=7; -update noar tt set v0='BSEVL' where id=7; -update noar ti set v0='BSEVL' where id=7; -update noar tt set b2='8YZUJYMYW' where id=7; -update noar ti set b2='8YZUJYMYW' where id=7; -update noar tt set v0='BSTI1E' where id=8; -update noar ti set v0='BSTI1E' where id=8; -update noar tt set b0='KLN0LA8' where id=8; -update noar ti set b0='KLN0LA8' where id=8; -update noar tt set v0='4EKCYHA04LRFBWGN6Z' where id=8; -update noar ti set v0='4EKCYHA04LRFBWGN6Z' where id=8; -update noar tt set b1='EZZRX914WC5F7V26A6TESEUQD' where id=8; -update noar ti set b1='EZZRX914WC5F7V26A6TESEUQD' where id=8; -update noar tt set v0='3M9BPW5V46K6XHA' where id=8; -update noar ti set v0='3M9BPW5V46K6XHA' where id=8; -update noar tt set b2='TSKCIU5Y5N6KYRPKDRJQ19HBVYS3C' where id=8; -update noar ti set b2='TSKCIU5Y5N6KYRPKDRJQ19HBVYS3C' where id=8; -update noar tt set v0='0LXC71ITYRX7UFGLNUGRWWVHG19B' where id=9; -update noar ti set v0='0LXC71ITYRX7UFGLNUGRWWVHG19B' where id=9; -update noar tt set b0='INH4GNQWU19CZCONEVI2X3BMH4' where id=9; -update noar ti set b0='INH4GNQWU19CZCONEVI2X3BMH4' where id=9; -update noar tt set v0='YEMOKFWHBEO9K' where id=9; -update noar ti set v0='YEMOKFWHBEO9K' where id=9; -update noar tt set b1='2CWV7QJWYPW1VP7SWH3SI3I' where id=9; -update noar ti set b1='2CWV7QJWYPW1VP7SWH3SI3I' where id=9; -update noar tt set v0='R1MN2YW8QMAVWHW1' where id=9; -update noar ti set v0='R1MN2YW8QMAVWHW1' where id=9; -update noar tt set b2='9WUD29' where id=9; -update noar ti set b2='9WUD29' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -f0 int not null, -v0 varchar(32) not null, -b0 mediumblob not null, -b1 tinyblob not null, -b2 longblob not null -) engine=tokudb; -insert into tt values (1,0,'','','',''); -insert into tt values (2,0,'','','',''); -insert into tt values (3,0,'','','',''); -insert into tt values (4,0,'','','',''); -insert into tt values (5,0,'','','',''); -insert into tt values (6,0,'','','',''); -insert into tt values (7,0,'','','',''); -insert into tt values (8,0,'','','',''); -insert into tt values (9,0,'','','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='B5T8' where id=1; -update noar ti set v0='B5T8' where id=1; -update noar tt set b0='CO660TAJODWYREKTIL8MWIW5P2AE87' where id=1; -update noar ti set b0='CO660TAJODWYREKTIL8MWIW5P2AE87' where id=1; -update noar tt set v0='T804NWS769TX4' where id=1; -update noar ti set v0='T804NWS769TX4' where id=1; -update noar tt set b1='MRIT7' where id=1; -update noar ti set b1='MRIT7' where id=1; -update noar tt set v0='P965465JJWB3B0OGMUKJYERD6A9JJQWH' where id=1; -update noar ti set v0='P965465JJWB3B0OGMUKJYERD6A9JJQWH' where id=1; -update noar tt set b2='L3VSL' where id=1; -update noar ti set b2='L3VSL' where id=1; -update noar tt set v0='A0LGKO8Q8K64CBGE41CO3QP0' where id=2; -update noar ti set v0='A0LGKO8Q8K64CBGE41CO3QP0' where id=2; -update noar tt set b0='FOWFJ0K0T2PUQ1RXKBPZFXUK1R2' where id=2; -update noar ti set b0='FOWFJ0K0T2PUQ1RXKBPZFXUK1R2' where id=2; -update noar tt set v0='C9H904Q' where id=2; -update noar ti set v0='C9H904Q' where id=2; -update noar tt set b1='G5VF3NYLN7C1VWF80P348IWXXZD9' where id=2; -update noar ti set b1='G5VF3NYLN7C1VWF80P348IWXXZD9' where id=2; -update noar tt set v0='Q8W5VA3JQ7ITF899ATZUA6304' where id=2; -update noar ti set v0='Q8W5VA3JQ7ITF899ATZUA6304' where id=2; -update noar tt set b2='F' where id=2; -update noar ti set b2='F' where id=2; -update noar tt set v0='PD2ERK4ZXXWISLGO24E18P' where id=3; -update noar ti set v0='PD2ERK4ZXXWISLGO24E18P' where id=3; -update noar tt set b0='LA67KMQ5B65VQYOWE0B' where id=3; -update noar ti set b0='LA67KMQ5B65VQYOWE0B' where id=3; -update noar tt set v0='PWN6NKI9Z4T' where id=3; -update noar ti set v0='PWN6NKI9Z4T' where id=3; -update noar tt set b1='F7Y2IVQB3LHPM23A' where id=3; -update noar ti set b1='F7Y2IVQB3LHPM23A' where id=3; -update noar tt set v0='SVJ' where id=3; -update noar ti set v0='SVJ' where id=3; -update noar tt set b2='UF7DA6ZNGPMGEV3FKZ1BSIYF6EQH5BM' where id=3; -update noar ti set b2='UF7DA6ZNGPMGEV3FKZ1BSIYF6EQH5BM' where id=3; -update noar tt set v0='KIDNWJM4D9' where id=4; -update noar ti set v0='KIDNWJM4D9' where id=4; -update noar tt set b0='E747G3' where id=4; -update noar ti set b0='E747G3' where id=4; -update noar tt set v0='Z4H3CQ0FE1H11JIZAIBDLMFDCJP55G' where id=4; -update noar ti set v0='Z4H3CQ0FE1H11JIZAIBDLMFDCJP55G' where id=4; -update noar tt set b1='524HM3B33V0O69AHSIKA' where id=4; -update noar ti set b1='524HM3B33V0O69AHSIKA' where id=4; -update noar tt set v0='VOL4RLSSP0HVD60WPW894AD34RB9' where id=4; -update noar ti set v0='VOL4RLSSP0HVD60WPW894AD34RB9' where id=4; -update noar tt set b2='4' where id=4; -update noar ti set b2='4' where id=4; -update noar tt set v0='9TE1U5U9NFQMZFHSR1R' where id=5; -update noar ti set v0='9TE1U5U9NFQMZFHSR1R' where id=5; -update noar tt set b0='X7UTGX47OC2A2F' where id=5; -update noar ti set b0='X7UTGX47OC2A2F' where id=5; -update noar tt set v0='S4CAA2KY4ZJJF5KA23R9GNEKK0IOG' where id=5; -update noar ti set v0='S4CAA2KY4ZJJF5KA23R9GNEKK0IOG' where id=5; -update noar tt set b1='94VNW042WE6Q77VSK57PCZTODOHJH' where id=5; -update noar ti set b1='94VNW042WE6Q77VSK57PCZTODOHJH' where id=5; -update noar tt set v0='7QHFHI6RCUBYZV' where id=5; -update noar ti set v0='7QHFHI6RCUBYZV' where id=5; -update noar tt set b2='TMNH1U3HUJYYF3N09S7W24' where id=5; -update noar ti set b2='TMNH1U3HUJYYF3N09S7W24' where id=5; -update noar tt set v0='BTB2NO9491ICN5IP8WZJMSLU6XP' where id=6; -update noar ti set v0='BTB2NO9491ICN5IP8WZJMSLU6XP' where id=6; -update noar tt set b0='76IMRVZPAVNFZ8UMXV' where id=6; -update noar ti set b0='76IMRVZPAVNFZ8UMXV' where id=6; -update noar tt set v0='7SZV42' where id=6; -update noar ti set v0='7SZV42' where id=6; -update noar tt set b1='E7J6TRPPXVE7O0GNXKIJF' where id=6; -update noar ti set b1='E7J6TRPPXVE7O0GNXKIJF' where id=6; -update noar tt set v0='E2O7AJASI' where id=6; -update noar ti set v0='E2O7AJASI' where id=6; -update noar tt set b2='DJXDN1UEJADMCZHZ9ID94YKV63RXITE' where id=6; -update noar ti set b2='DJXDN1UEJADMCZHZ9ID94YKV63RXITE' where id=6; -update noar tt set v0='MLRH7GDXVXLN1OC' where id=7; -update noar ti set v0='MLRH7GDXVXLN1OC' where id=7; -update noar tt set b0='DUACNJ2UV7AF4SK1SIE9PV' where id=7; -update noar ti set b0='DUACNJ2UV7AF4SK1SIE9PV' where id=7; -update noar tt set v0='A4DXTA3SN6ZT2A8B0YR69YKW57DBM' where id=7; -update noar ti set v0='A4DXTA3SN6ZT2A8B0YR69YKW57DBM' where id=7; -update noar tt set b1='EOJR5YXUNWA1R' where id=7; -update noar ti set b1='EOJR5YXUNWA1R' where id=7; -update noar tt set v0='D0LQEI2S' where id=7; -update noar ti set v0='D0LQEI2S' where id=7; -update noar tt set b2='QVNAUUOJESJ9' where id=7; -update noar ti set b2='QVNAUUOJESJ9' where id=7; -update noar tt set v0='L9BL' where id=8; -update noar ti set v0='L9BL' where id=8; -update noar tt set b0='1IN4MACQGCPUZFK5JB' where id=8; -update noar ti set b0='1IN4MACQGCPUZFK5JB' where id=8; -update noar tt set v0='4KS0T9XZOZUR73ZL4DDI4MSZZ' where id=8; -update noar ti set v0='4KS0T9XZOZUR73ZL4DDI4MSZZ' where id=8; -update noar tt set b1='C9QX5Q83QEABX0KA1Z9U' where id=8; -update noar ti set b1='C9QX5Q83QEABX0KA1Z9U' where id=8; -update noar tt set v0='87674KIIE7PMNBVEKFZCCB0Q3' where id=8; -update noar ti set v0='87674KIIE7PMNBVEKFZCCB0Q3' where id=8; -update noar tt set b2='90CJOZW8OSS' where id=8; -update noar ti set b2='90CJOZW8OSS' where id=8; -update noar tt set v0='3RKWDA8MDQLJ4OJFXUEM7KK7EBPTM74F' where id=9; -update noar ti set v0='3RKWDA8MDQLJ4OJFXUEM7KK7EBPTM74F' where id=9; -update noar tt set b0='YKBU49YBLGBEFCE' where id=9; -update noar ti set b0='YKBU49YBLGBEFCE' where id=9; -update noar tt set v0='EWEX6U9JT' where id=9; -update noar ti set v0='EWEX6U9JT' where id=9; -update noar tt set b1='PEYDDLZ4BY3958T5N44F' where id=9; -update noar ti set b1='PEYDDLZ4BY3958T5N44F' where id=9; -update noar tt set v0='UMJGWE19' where id=9; -update noar ti set v0='UMJGWE19' where id=9; -update noar tt set b2='URP014FRP0VT' where id=9; -update noar ti set b2='URP014FRP0VT' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -f0 int not null, -v0 varchar(256) not null, -b0 mediumblob not null, -b1 tinyblob not null, -b2 longblob not null -) engine=tokudb; -insert into tt values (1,0,'','','',''); -insert into tt values (2,0,'','','',''); -insert into tt values (3,0,'','','',''); -insert into tt values (4,0,'','','',''); -insert into tt values (5,0,'','','',''); -insert into tt values (6,0,'','','',''); -insert into tt values (7,0,'','','',''); -insert into tt values (8,0,'','','',''); -insert into tt values (9,0,'','','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='6ICUD1RCNYUXD5G8QH2U' where id=1; -update noar ti set v0='6ICUD1RCNYUXD5G8QH2U' where id=1; -update noar tt set b0='T1' where id=1; -update noar ti set b0='T1' where id=1; -update noar tt set v0='TK6WHZBR7W2AX7GQ9Y6HVN0Z7' where id=1; -update noar ti set v0='TK6WHZBR7W2AX7GQ9Y6HVN0Z7' where id=1; -update noar tt set b1='6018X9W9Z9MCMN3H6' where id=1; -update noar ti set b1='6018X9W9Z9MCMN3H6' where id=1; -update noar tt set v0='O09X4V22OY3' where id=1; -update noar ti set v0='O09X4V22OY3' where id=1; -update noar tt set b2='WV92NADHCLKMYZV' where id=1; -update noar ti set b2='WV92NADHCLKMYZV' where id=1; -update noar tt set v0='I8YHO0RNDEN' where id=2; -update noar ti set v0='I8YHO0RNDEN' where id=2; -update noar tt set b0='L7WIUK5PF1F17IAEMZ6QYZ3VS' where id=2; -update noar ti set b0='L7WIUK5PF1F17IAEMZ6QYZ3VS' where id=2; -update noar tt set v0='IHSJ84PGBL5BTYL54TN2IX' where id=2; -update noar ti set v0='IHSJ84PGBL5BTYL54TN2IX' where id=2; -update noar tt set b1='36YOFM5O' where id=2; -update noar ti set b1='36YOFM5O' where id=2; -update noar tt set v0='HEQL7ODFJE3EO' where id=2; -update noar ti set v0='HEQL7ODFJE3EO' where id=2; -update noar tt set b2='7GPCM6K' where id=2; -update noar ti set b2='7GPCM6K' where id=2; -update noar tt set v0='UIPTAMOL3IC39LAV' where id=3; -update noar ti set v0='UIPTAMOL3IC39LAV' where id=3; -update noar tt set b0='66BOACX' where id=3; -update noar ti set b0='66BOACX' where id=3; -update noar tt set v0='4FS' where id=3; -update noar ti set v0='4FS' where id=3; -update noar tt set b1='GG' where id=3; -update noar ti set b1='GG' where id=3; -update noar tt set v0='2ZVCNCKHBSAOQL' where id=3; -update noar ti set v0='2ZVCNCKHBSAOQL' where id=3; -update noar tt set b2='RPGCLKP5CEC6L2N1TI7FQ0L1I' where id=3; -update noar ti set b2='RPGCLKP5CEC6L2N1TI7FQ0L1I' where id=3; -update noar tt set v0='SCKOIL5H5K8B90YVHJ0MZU00R6H' where id=4; -update noar ti set v0='SCKOIL5H5K8B90YVHJ0MZU00R6H' where id=4; -update noar tt set b0='LR6Z972L5FG' where id=4; -update noar ti set b0='LR6Z972L5FG' where id=4; -update noar tt set v0='BY4CVT' where id=4; -update noar ti set v0='BY4CVT' where id=4; -update noar tt set b1='SDC' where id=4; -update noar ti set b1='SDC' where id=4; -update noar tt set v0='Y352PRISAM7MWMUYZERKSGTIXHPA1OZ' where id=4; -update noar ti set v0='Y352PRISAM7MWMUYZERKSGTIXHPA1OZ' where id=4; -update noar tt set b2='H1B7J070BUNTWK8E' where id=4; -update noar ti set b2='H1B7J070BUNTWK8E' where id=4; -update noar tt set v0='4AQH50' where id=5; -update noar ti set v0='4AQH50' where id=5; -update noar tt set b0='84IVLFZQRRJ9SH1I9J' where id=5; -update noar ti set b0='84IVLFZQRRJ9SH1I9J' where id=5; -update noar tt set v0='837GEMP8JCRPN9D4V5C' where id=5; -update noar ti set v0='837GEMP8JCRPN9D4V5C' where id=5; -update noar tt set b1='O5FKFCJ18SWQA0CKWSEXJTI3OQ4' where id=5; -update noar ti set b1='O5FKFCJ18SWQA0CKWSEXJTI3OQ4' where id=5; -update noar tt set v0='T5P7O7ITWTZAO3LJWJV1BK0' where id=5; -update noar ti set v0='T5P7O7ITWTZAO3LJWJV1BK0' where id=5; -update noar tt set b2='HMTQXKEX' where id=5; -update noar ti set b2='HMTQXKEX' where id=5; -update noar tt set v0='RJXBPTV9XI31S7T1F45F0C7A41' where id=6; -update noar ti set v0='RJXBPTV9XI31S7T1F45F0C7A41' where id=6; -update noar tt set b0='H5VNEK4OM60IZPXQR2' where id=6; -update noar ti set b0='H5VNEK4OM60IZPXQR2' where id=6; -update noar tt set v0='P03NT7AEHRHX4WM6UI2C' where id=6; -update noar ti set v0='P03NT7AEHRHX4WM6UI2C' where id=6; -update noar tt set b1='2UL7' where id=6; -update noar ti set b1='2UL7' where id=6; -update noar tt set v0='KSSES9' where id=6; -update noar ti set v0='KSSES9' where id=6; -update noar tt set b2='0R1CE' where id=6; -update noar ti set b2='0R1CE' where id=6; -update noar tt set v0='004ASRUTRXET8B55A5L2EHS' where id=7; -update noar ti set v0='004ASRUTRXET8B55A5L2EHS' where id=7; -update noar tt set b0='KMCPFG23ITA' where id=7; -update noar ti set b0='KMCPFG23ITA' where id=7; -update noar tt set v0='02Q6RRXZ402OX2D6D9I2KRVDXA4C' where id=7; -update noar ti set v0='02Q6RRXZ402OX2D6D9I2KRVDXA4C' where id=7; -update noar tt set b1='PHMMX' where id=7; -update noar ti set b1='PHMMX' where id=7; -update noar tt set v0='I699IXJ56C1EWL3IR8EASD5' where id=7; -update noar ti set v0='I699IXJ56C1EWL3IR8EASD5' where id=7; -update noar tt set b2='G4ZDG2KLOJLWCTR' where id=7; -update noar ti set b2='G4ZDG2KLOJLWCTR' where id=7; -update noar tt set v0='U48AZW3XYEDI' where id=8; -update noar ti set v0='U48AZW3XYEDI' where id=8; -update noar tt set b0='ZAQBZNMNUVV3WFJML' where id=8; -update noar ti set b0='ZAQBZNMNUVV3WFJML' where id=8; -update noar tt set v0='8B' where id=8; -update noar ti set v0='8B' where id=8; -update noar tt set b1='SH9LRS6WMZWBYYOP' where id=8; -update noar ti set b1='SH9LRS6WMZWBYYOP' where id=8; -update noar tt set v0='RCSLSOK7UM7EV5YC' where id=8; -update noar ti set v0='RCSLSOK7UM7EV5YC' where id=8; -update noar tt set b2='9RFV4DRC2QWZ78ULQFPWX' where id=8; -update noar ti set b2='9RFV4DRC2QWZ78ULQFPWX' where id=8; -update noar tt set v0='3JP8TX9UYXC01HRKUJS4FWWFLP0' where id=9; -update noar ti set v0='3JP8TX9UYXC01HRKUJS4FWWFLP0' where id=9; -update noar tt set b0='2VVWHN4JC486SPQRGB7USS42W6XYC' where id=9; -update noar ti set b0='2VVWHN4JC486SPQRGB7USS42W6XYC' where id=9; -update noar tt set v0='3' where id=9; -update noar ti set v0='3' where id=9; -update noar tt set b1='44IXRD64PHO1BZ6MQJXIR9NNT6X9' where id=9; -update noar ti set b1='44IXRD64PHO1BZ6MQJXIR9NNT6X9' where id=9; -update noar tt set v0='7SQLH7E3EL1MAMTKS9RHQ' where id=9; -update noar ti set v0='7SQLH7E3EL1MAMTKS9RHQ' where id=9; -update noar tt set b2='6F5K8QQMN5ROZ8YJUB8M3UG' where id=9; -update noar ti set b2='6F5K8QQMN5ROZ8YJUB8M3UG' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -f0 int null, -v0 varchar(32) null, -b0 mediumblob null, -b1 blob null, -b2 tinyblob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='R8QC2LK3FJ9TUON4F' where id=1; -update noar ti set v0='R8QC2LK3FJ9TUON4F' where id=1; -update noar tt set b0='XW095Q43CN08D6SWVNGMYTFWFZUY' where id=1; -update noar ti set b0='XW095Q43CN08D6SWVNGMYTFWFZUY' where id=1; -update noar tt set v0='P6IOMB9' where id=1; -update noar ti set v0='P6IOMB9' where id=1; -update noar tt set b1='ZRSNSV45CAK063WFF1EBPIVO2X' where id=1; -update noar ti set b1='ZRSNSV45CAK063WFF1EBPIVO2X' where id=1; -update noar tt set v0='X781BE65UV0H8ODU2890' where id=1; -update noar ti set v0='X781BE65UV0H8ODU2890' where id=1; -update noar tt set b2='9JA9HXZOF4VLLMIC2DMDBMYARQ6ZC45' where id=1; -update noar ti set b2='9JA9HXZOF4VLLMIC2DMDBMYARQ6ZC45' where id=1; -update noar tt set v0='8W0K6RVWR1' where id=2; -update noar ti set v0='8W0K6RVWR1' where id=2; -update noar tt set b0='Z5Q7SQY8TQ052H2ELWVQ' where id=2; -update noar ti set b0='Z5Q7SQY8TQ052H2ELWVQ' where id=2; -update noar tt set v0='CEHVCWEL0B' where id=2; -update noar ti set v0='CEHVCWEL0B' where id=2; -update noar tt set b1='VM6T54E7KMJ' where id=2; -update noar ti set b1='VM6T54E7KMJ' where id=2; -update noar tt set v0='VE22WDZ' where id=2; -update noar ti set v0='VE22WDZ' where id=2; -update noar tt set b2='A9RZQCNNJBKDMB995J1V' where id=2; -update noar ti set b2='A9RZQCNNJBKDMB995J1V' where id=2; -update noar tt set v0='GOYN6CB99Q2KSG' where id=3; -update noar ti set v0='GOYN6CB99Q2KSG' where id=3; -update noar tt set b0='Z3ZLMFUD3M0' where id=3; -update noar ti set b0='Z3ZLMFUD3M0' where id=3; -update noar tt set v0='2T2TKFUYFZSDXBRGRBX9' where id=3; -update noar ti set v0='2T2TKFUYFZSDXBRGRBX9' where id=3; -update noar tt set b1='8X1UYGUVV61YPTHI' where id=3; -update noar ti set b1='8X1UYGUVV61YPTHI' where id=3; -update noar tt set v0='UK9V1XOPRP' where id=3; -update noar ti set v0='UK9V1XOPRP' where id=3; -update noar tt set b2='IIK3I7K1EHBLJ04LO038GRFILXDWPC2I' where id=3; -update noar ti set b2='IIK3I7K1EHBLJ04LO038GRFILXDWPC2I' where id=3; -update noar tt set v0='V6Z5C0' where id=4; -update noar ti set v0='V6Z5C0' where id=4; -update noar tt set b0='OK' where id=4; -update noar ti set b0='OK' where id=4; -update noar tt set v0='SM4CK413M1DQ3I41Y5AQ8KV' where id=4; -update noar ti set v0='SM4CK413M1DQ3I41Y5AQ8KV' where id=4; -update noar tt set b1='KOCCH34SMIW' where id=4; -update noar ti set b1='KOCCH34SMIW' where id=4; -update noar tt set v0='T77UAO0HF4FG' where id=4; -update noar ti set v0='T77UAO0HF4FG' where id=4; -update noar tt set b2='E8L0JOV5ZRCF7IJ1CMB' where id=4; -update noar ti set b2='E8L0JOV5ZRCF7IJ1CMB' where id=4; -update noar tt set v0='TCDIADG65A2GNZ009XE49D' where id=5; -update noar ti set v0='TCDIADG65A2GNZ009XE49D' where id=5; -update noar tt set b0='8MXEFNSR2ZWXB0A4RUTURVKGT' where id=5; -update noar ti set b0='8MXEFNSR2ZWXB0A4RUTURVKGT' where id=5; -update noar tt set v0='R40STLD0E' where id=5; -update noar ti set v0='R40STLD0E' where id=5; -update noar tt set b1='ENSYOB814N3L5DS55' where id=5; -update noar ti set b1='ENSYOB814N3L5DS55' where id=5; -update noar tt set v0='DWL' where id=5; -update noar ti set v0='DWL' where id=5; -update noar tt set b2='O3IKTL' where id=5; -update noar ti set b2='O3IKTL' where id=5; -update noar tt set v0='I625QTG0ZNOSYY6' where id=6; -update noar ti set v0='I625QTG0ZNOSYY6' where id=6; -update noar tt set b0='KJSS' where id=6; -update noar ti set b0='KJSS' where id=6; -update noar tt set v0='MEG' where id=6; -update noar ti set v0='MEG' where id=6; -update noar tt set b1='YAVEXA' where id=6; -update noar ti set b1='YAVEXA' where id=6; -update noar tt set v0='K2HVIJE7XZ2SEQUK6CHR4WNQ521' where id=6; -update noar ti set v0='K2HVIJE7XZ2SEQUK6CHR4WNQ521' where id=6; -update noar tt set b2='3GY9BAIKRSKX7QIX27GQMZQFZIZIA2CV' where id=6; -update noar ti set b2='3GY9BAIKRSKX7QIX27GQMZQFZIZIA2CV' where id=6; -update noar tt set v0='H5KTNKJIU37H4NMK8MA3SB1ZX' where id=7; -update noar ti set v0='H5KTNKJIU37H4NMK8MA3SB1ZX' where id=7; -update noar tt set b0='4DLSCD5A' where id=7; -update noar ti set b0='4DLSCD5A' where id=7; -update noar tt set v0='027' where id=7; -update noar ti set v0='027' where id=7; -update noar tt set b1='R577GJ8DRRXOUOADUDGO' where id=7; -update noar ti set b1='R577GJ8DRRXOUOADUDGO' where id=7; -update noar tt set v0='VMX38I58JTEQ' where id=7; -update noar ti set v0='VMX38I58JTEQ' where id=7; -update noar tt set b2='D' where id=7; -update noar ti set b2='D' where id=7; -update noar tt set v0='0HUB528TLU' where id=8; -update noar ti set v0='0HUB528TLU' where id=8; -update noar tt set b0='SISMFBBG9IJ' where id=8; -update noar ti set b0='SISMFBBG9IJ' where id=8; -update noar tt set v0='SH' where id=8; -update noar ti set v0='SH' where id=8; -update noar tt set b1='5PKBSY13703MGH1RR21OGJ3PGA' where id=8; -update noar ti set b1='5PKBSY13703MGH1RR21OGJ3PGA' where id=8; -update noar tt set v0='06PXG73FRVAYONSA24X' where id=8; -update noar ti set v0='06PXG73FRVAYONSA24X' where id=8; -update noar tt set b2='7OYLAEPV3PU8FTBORQAL8CUF70MKPPG' where id=8; -update noar ti set b2='7OYLAEPV3PU8FTBORQAL8CUF70MKPPG' where id=8; -update noar tt set v0='1M5OC' where id=9; -update noar ti set v0='1M5OC' where id=9; -update noar tt set b0='P4B2KFW3D11ZUI5S08ER3NK' where id=9; -update noar ti set b0='P4B2KFW3D11ZUI5S08ER3NK' where id=9; -update noar tt set v0='B7GKKTX1EDIUQ7QSZ55GP7DXZ6LM4' where id=9; -update noar ti set v0='B7GKKTX1EDIUQ7QSZ55GP7DXZ6LM4' where id=9; -update noar tt set b1='MGLPJ' where id=9; -update noar ti set b1='MGLPJ' where id=9; -update noar tt set v0='0JEJ1C0S' where id=9; -update noar ti set v0='0JEJ1C0S' where id=9; -update noar tt set b2='P13R2' where id=9; -update noar ti set b2='P13R2' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -f0 int null, -v0 varchar(256) null, -b0 mediumblob null, -b1 blob null, -b2 tinyblob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='67BTHJWFWE0HGKZEYMU' where id=1; -update noar ti set v0='67BTHJWFWE0HGKZEYMU' where id=1; -update noar tt set b0='GAP0E1KP8L90MYLFMC6N01LDEC7KOT1' where id=1; -update noar ti set b0='GAP0E1KP8L90MYLFMC6N01LDEC7KOT1' where id=1; -update noar tt set v0='KQ7JCZ6YGQUK' where id=1; -update noar ti set v0='KQ7JCZ6YGQUK' where id=1; -update noar tt set b1='ZE0OUQIZZXN' where id=1; -update noar ti set b1='ZE0OUQIZZXN' where id=1; -update noar tt set v0='ZQLCYPCRT22QNN5GYUEBZXBLOZK48' where id=1; -update noar ti set v0='ZQLCYPCRT22QNN5GYUEBZXBLOZK48' where id=1; -update noar tt set b2='PXC5H5I9K0HPV243NF20IN6JY8' where id=1; -update noar ti set b2='PXC5H5I9K0HPV243NF20IN6JY8' where id=1; -update noar tt set v0='QPA2ZM9B2' where id=2; -update noar ti set v0='QPA2ZM9B2' where id=2; -update noar tt set b0='VNEXOVNAKX526KFG84' where id=2; -update noar ti set b0='VNEXOVNAKX526KFG84' where id=2; -update noar tt set v0='CJ58BVSXDAX02ZGK645N1JDQ' where id=2; -update noar ti set v0='CJ58BVSXDAX02ZGK645N1JDQ' where id=2; -update noar tt set b1='MDHDCKAS59ABXUXMGWPT' where id=2; -update noar ti set b1='MDHDCKAS59ABXUXMGWPT' where id=2; -update noar tt set v0='ALU' where id=2; -update noar ti set v0='ALU' where id=2; -update noar tt set b2='RNJR9E97ZPOL6L6KMU' where id=2; -update noar ti set b2='RNJR9E97ZPOL6L6KMU' where id=2; -update noar tt set v0='I377CVOQZIN8TRT9B7ZRKW27B' where id=3; -update noar ti set v0='I377CVOQZIN8TRT9B7ZRKW27B' where id=3; -update noar tt set b0='AE0VVV7WZLPFC51675YUZ2' where id=3; -update noar ti set b0='AE0VVV7WZLPFC51675YUZ2' where id=3; -update noar tt set v0='CSDAJS86J1590XZP' where id=3; -update noar ti set v0='CSDAJS86J1590XZP' where id=3; -update noar tt set b1='XI815HQWI9RUXNNPSFT05XVM6GLO' where id=3; -update noar ti set b1='XI815HQWI9RUXNNPSFT05XVM6GLO' where id=3; -update noar tt set v0='DVZAGDMMTQEM8OU916DJJET570YUW0T' where id=3; -update noar ti set v0='DVZAGDMMTQEM8OU916DJJET570YUW0T' where id=3; -update noar tt set b2='HCR5OV3FSQC5FP8155RAP' where id=3; -update noar ti set b2='HCR5OV3FSQC5FP8155RAP' where id=3; -update noar tt set v0='QUHWAN4EYATR' where id=4; -update noar ti set v0='QUHWAN4EYATR' where id=4; -update noar tt set b0='34CM0GT6WJOUHH5F4P6MWY97J' where id=4; -update noar ti set b0='34CM0GT6WJOUHH5F4P6MWY97J' where id=4; -update noar tt set v0='XK4Q00TBJNKJUSGVLH' where id=4; -update noar ti set v0='XK4Q00TBJNKJUSGVLH' where id=4; -update noar tt set b1='3WCXG6AA5X1M6JO9YZ' where id=4; -update noar ti set b1='3WCXG6AA5X1M6JO9YZ' where id=4; -update noar tt set v0='DAZ3DJH0ABMB' where id=4; -update noar ti set v0='DAZ3DJH0ABMB' where id=4; -update noar tt set b2='C5VM9LBTMDJT6OQJ8K6QW3GSO4' where id=4; -update noar ti set b2='C5VM9LBTMDJT6OQJ8K6QW3GSO4' where id=4; -update noar tt set v0='1IL299' where id=5; -update noar ti set v0='1IL299' where id=5; -update noar tt set b0='KZOM0QTTBJ90ZB' where id=5; -update noar ti set b0='KZOM0QTTBJ90ZB' where id=5; -update noar tt set v0='EUNJNXOBVA31QN3408LUHOW8B2S6' where id=5; -update noar ti set v0='EUNJNXOBVA31QN3408LUHOW8B2S6' where id=5; -update noar tt set b1='8SXR8JKCFA39FFEO3L1OID8W4DVQP8BP' where id=5; -update noar ti set b1='8SXR8JKCFA39FFEO3L1OID8W4DVQP8BP' where id=5; -update noar tt set v0='IJ6GYZP35IIFATQWH' where id=5; -update noar ti set v0='IJ6GYZP35IIFATQWH' where id=5; -update noar tt set b2='S08HKTK84JDUNPEYBP926B6FL4LDXBED' where id=5; -update noar ti set b2='S08HKTK84JDUNPEYBP926B6FL4LDXBED' where id=5; -update noar tt set v0='NNV29Q20BZ' where id=6; -update noar ti set v0='NNV29Q20BZ' where id=6; -update noar tt set b0='DI79XD7HSQTEXTDWO3A4AKBL' where id=6; -update noar ti set b0='DI79XD7HSQTEXTDWO3A4AKBL' where id=6; -update noar tt set v0='Q' where id=6; -update noar ti set v0='Q' where id=6; -update noar tt set b1='L6YXGO74SG4D6C8N5VN9FP7' where id=6; -update noar ti set b1='L6YXGO74SG4D6C8N5VN9FP7' where id=6; -update noar tt set v0='75UJEYIXOVO1QW6R6FAJ1' where id=6; -update noar ti set v0='75UJEYIXOVO1QW6R6FAJ1' where id=6; -update noar tt set b2='0M' where id=6; -update noar ti set b2='0M' where id=6; -update noar tt set v0='T00L1NMMO3GHS2QP' where id=7; -update noar ti set v0='T00L1NMMO3GHS2QP' where id=7; -update noar tt set b0='MRG1SJXK14E6VXIQ0S' where id=7; -update noar ti set b0='MRG1SJXK14E6VXIQ0S' where id=7; -update noar tt set v0='G5JNUYA44UH' where id=7; -update noar ti set v0='G5JNUYA44UH' where id=7; -update noar tt set b1='JYZ' where id=7; -update noar ti set b1='JYZ' where id=7; -update noar tt set v0='AF4KTNJDOVNZMSB' where id=7; -update noar ti set v0='AF4KTNJDOVNZMSB' where id=7; -update noar tt set b2='AJXGITWFG4JWQIZBR5H' where id=7; -update noar ti set b2='AJXGITWFG4JWQIZBR5H' where id=7; -update noar tt set v0='O50HPL6' where id=8; -update noar ti set v0='O50HPL6' where id=8; -update noar tt set b0='GR8YO1YKJWEELAFIO48G' where id=8; -update noar ti set b0='GR8YO1YKJWEELAFIO48G' where id=8; -update noar tt set v0='3R1X2BQFZKA6P0LNM' where id=8; -update noar ti set v0='3R1X2BQFZKA6P0LNM' where id=8; -update noar tt set b1='KUOVK84V5W75M' where id=8; -update noar ti set b1='KUOVK84V5W75M' where id=8; -update noar tt set v0='HUSA2VJFUP32S5AM1GROM3UR' where id=8; -update noar ti set v0='HUSA2VJFUP32S5AM1GROM3UR' where id=8; -update noar tt set b2='NLMGMJGPGPPFLIG806PCCRG5W' where id=8; -update noar ti set b2='NLMGMJGPGPPFLIG806PCCRG5W' where id=8; -update noar tt set v0='991152K' where id=9; -update noar ti set v0='991152K' where id=9; -update noar tt set b0='3F1258VOJH4DXW' where id=9; -update noar ti set b0='3F1258VOJH4DXW' where id=9; -update noar tt set v0='0VXXFX3UF4H' where id=9; -update noar ti set v0='0VXXFX3UF4H' where id=9; -update noar tt set b1='EYV771VH5QVAO8J6Q' where id=9; -update noar ti set b1='EYV771VH5QVAO8J6Q' where id=9; -update noar tt set v0='6JL311MCJIW' where id=9; -update noar ti set v0='6JL311MCJIW' where id=9; -update noar tt set b2='NOBKY' where id=9; -update noar ti set b2='NOBKY' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -f0 int not null, -v0 varchar(32) not null, -b0 mediumblob not null, -b1 blob not null, -b2 tinyblob not null -) engine=tokudb; -insert into tt values (1,0,'','','',''); -insert into tt values (2,0,'','','',''); -insert into tt values (3,0,'','','',''); -insert into tt values (4,0,'','','',''); -insert into tt values (5,0,'','','',''); -insert into tt values (6,0,'','','',''); -insert into tt values (7,0,'','','',''); -insert into tt values (8,0,'','','',''); -insert into tt values (9,0,'','','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='FQN6G7XJ37Y3YMRZO5A6CNLW60VDB5U' where id=1; -update noar ti set v0='FQN6G7XJ37Y3YMRZO5A6CNLW60VDB5U' where id=1; -update noar tt set b0='M52KWNIGXZ3MQDL6WLRXGUZ9XN9W5URQ' where id=1; -update noar ti set b0='M52KWNIGXZ3MQDL6WLRXGUZ9XN9W5URQ' where id=1; -update noar tt set v0='PR4AUXMX58G2IRMCCGGGA4OY2G' where id=1; -update noar ti set v0='PR4AUXMX58G2IRMCCGGGA4OY2G' where id=1; -update noar tt set b1='YLOEKANQP40LMJZK6HKC' where id=1; -update noar ti set b1='YLOEKANQP40LMJZK6HKC' where id=1; -update noar tt set v0='Y96RZF9X5F7GOH' where id=1; -update noar ti set v0='Y96RZF9X5F7GOH' where id=1; -update noar tt set b2='QMJLIHBXNF5T3FF5O5DS9ZY5A740C' where id=1; -update noar ti set b2='QMJLIHBXNF5T3FF5O5DS9ZY5A740C' where id=1; -update noar tt set v0='IRBK3A6SSL19AVVZK7882CN4GLHTUI' where id=2; -update noar ti set v0='IRBK3A6SSL19AVVZK7882CN4GLHTUI' where id=2; -update noar tt set b0='2650IYQGBQF3EB4407E50SP4DVD' where id=2; -update noar ti set b0='2650IYQGBQF3EB4407E50SP4DVD' where id=2; -update noar tt set v0='H2' where id=2; -update noar ti set v0='H2' where id=2; -update noar tt set b1='MLJC4538GVQOJC1QIZCFA6AD372A7L' where id=2; -update noar ti set b1='MLJC4538GVQOJC1QIZCFA6AD372A7L' where id=2; -update noar tt set v0='RTE19UD32WW93E3T2ZZ' where id=2; -update noar ti set v0='RTE19UD32WW93E3T2ZZ' where id=2; -update noar tt set b2='F' where id=2; -update noar ti set b2='F' where id=2; -update noar tt set v0='0BJYLKRJNX2TB2O47MJJ' where id=3; -update noar ti set v0='0BJYLKRJNX2TB2O47MJJ' where id=3; -update noar tt set b0='WTV1' where id=3; -update noar ti set b0='WTV1' where id=3; -update noar tt set v0='ZWUXOL6' where id=3; -update noar ti set v0='ZWUXOL6' where id=3; -update noar tt set b1='11SUJQO4YFTLMOOVF3LNULU86TT8' where id=3; -update noar ti set b1='11SUJQO4YFTLMOOVF3LNULU86TT8' where id=3; -update noar tt set v0='KXDQWZ16V42ZW32Q5QILJEYJ1SKBLND' where id=3; -update noar ti set v0='KXDQWZ16V42ZW32Q5QILJEYJ1SKBLND' where id=3; -update noar tt set b2='RD35802WDOU28WJ9JHNEAJOP9NS' where id=3; -update noar ti set b2='RD35802WDOU28WJ9JHNEAJOP9NS' where id=3; -update noar tt set v0='Y26QIP7X25UGQPBGVKCSRAM0QLE' where id=4; -update noar ti set v0='Y26QIP7X25UGQPBGVKCSRAM0QLE' where id=4; -update noar tt set b0='22QEXO3717O24F1VCJ889W83405' where id=4; -update noar ti set b0='22QEXO3717O24F1VCJ889W83405' where id=4; -update noar tt set v0='YT1' where id=4; -update noar ti set v0='YT1' where id=4; -update noar tt set b1='NLKP' where id=4; -update noar ti set b1='NLKP' where id=4; -update noar tt set v0='QJGMUBBM1L755499R' where id=4; -update noar ti set v0='QJGMUBBM1L755499R' where id=4; -update noar tt set b2='9LI09Y1GQWU0LZ6OSYU6Z31' where id=4; -update noar ti set b2='9LI09Y1GQWU0LZ6OSYU6Z31' where id=4; -update noar tt set v0='28NT8TAU8' where id=5; -update noar ti set v0='28NT8TAU8' where id=5; -update noar tt set b0='MHKU5RZP0EOMFXZR' where id=5; -update noar ti set b0='MHKU5RZP0EOMFXZR' where id=5; -update noar tt set v0='LBFX92TK76BVIN11V3SZ' where id=5; -update noar ti set v0='LBFX92TK76BVIN11V3SZ' where id=5; -update noar tt set b1='UJK' where id=5; -update noar ti set b1='UJK' where id=5; -update noar tt set v0='ASX6X96L6L5FQF0N1' where id=5; -update noar ti set v0='ASX6X96L6L5FQF0N1' where id=5; -update noar tt set b2='FXDF1YA' where id=5; -update noar ti set b2='FXDF1YA' where id=5; -update noar tt set v0='CSRDWM89AT5WXH9HI5XPTZ66DT8' where id=6; -update noar ti set v0='CSRDWM89AT5WXH9HI5XPTZ66DT8' where id=6; -update noar tt set b0='PKKO6' where id=6; -update noar ti set b0='PKKO6' where id=6; -update noar tt set v0='OXR74IFCKYZ' where id=6; -update noar ti set v0='OXR74IFCKYZ' where id=6; -update noar tt set b1='H4IS5L9ZQJIPMRGUP' where id=6; -update noar ti set b1='H4IS5L9ZQJIPMRGUP' where id=6; -update noar tt set v0='67RFAEBELGL1WQ7FVFO63A16384H9I' where id=6; -update noar ti set v0='67RFAEBELGL1WQ7FVFO63A16384H9I' where id=6; -update noar tt set b2='A4B6XL43IRA1751' where id=6; -update noar ti set b2='A4B6XL43IRA1751' where id=6; -update noar tt set v0='RIZP7PPK6OUP66EIUZS' where id=7; -update noar ti set v0='RIZP7PPK6OUP66EIUZS' where id=7; -update noar tt set b0='KP8M' where id=7; -update noar ti set b0='KP8M' where id=7; -update noar tt set v0='PH50J3BKXTSQ0W8USNS0IQW6' where id=7; -update noar ti set v0='PH50J3BKXTSQ0W8USNS0IQW6' where id=7; -update noar tt set b1='LS44E8TM6H94XBZP1MNHPDBTLJM' where id=7; -update noar ti set b1='LS44E8TM6H94XBZP1MNHPDBTLJM' where id=7; -update noar tt set v0='LJWN3SR3OC8' where id=7; -update noar ti set v0='LJWN3SR3OC8' where id=7; -update noar tt set b2='EQ4IMRHUQ1ANBUAI33JNIYM2J8P8R1' where id=7; -update noar ti set b2='EQ4IMRHUQ1ANBUAI33JNIYM2J8P8R1' where id=7; -update noar tt set v0='1D1IPKY643I7J050MOSRUC5M' where id=8; -update noar ti set v0='1D1IPKY643I7J050MOSRUC5M' where id=8; -update noar tt set b0='HX5G00MH71VBWAHGH4DK0SM' where id=8; -update noar ti set b0='HX5G00MH71VBWAHGH4DK0SM' where id=8; -update noar tt set v0='YHWLKLPWT1YMOS88A64' where id=8; -update noar ti set v0='YHWLKLPWT1YMOS88A64' where id=8; -update noar tt set b1='3P7ZN47QWV' where id=8; -update noar ti set b1='3P7ZN47QWV' where id=8; -update noar tt set v0='HET5NB5YKRUWLYPA4SBULLXE' where id=8; -update noar ti set v0='HET5NB5YKRUWLYPA4SBULLXE' where id=8; -update noar tt set b2='B2YRQAAOSYKOVPN906' where id=8; -update noar ti set b2='B2YRQAAOSYKOVPN906' where id=8; -update noar tt set v0='D7S7ER7RAEI4FCE9' where id=9; -update noar ti set v0='D7S7ER7RAEI4FCE9' where id=9; -update noar tt set b0='3A8CWYTL4PSVB' where id=9; -update noar ti set b0='3A8CWYTL4PSVB' where id=9; -update noar tt set v0='EAUGZ4AJUJG4P8E9X58EI96QZ0L5' where id=9; -update noar ti set v0='EAUGZ4AJUJG4P8E9X58EI96QZ0L5' where id=9; -update noar tt set b1='D8NRDPO7FAPIAFJJB6MIGS' where id=9; -update noar ti set b1='D8NRDPO7FAPIAFJJB6MIGS' where id=9; -update noar tt set v0='OINIE' where id=9; -update noar ti set v0='OINIE' where id=9; -update noar tt set b2='5NVE03D0PPWS0O' where id=9; -update noar ti set b2='5NVE03D0PPWS0O' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -f0 int not null, -v0 varchar(256) not null, -b0 mediumblob not null, -b1 blob not null, -b2 tinyblob not null -) engine=tokudb; -insert into tt values (1,0,'','','',''); -insert into tt values (2,0,'','','',''); -insert into tt values (3,0,'','','',''); -insert into tt values (4,0,'','','',''); -insert into tt values (5,0,'','','',''); -insert into tt values (6,0,'','','',''); -insert into tt values (7,0,'','','',''); -insert into tt values (8,0,'','','',''); -insert into tt values (9,0,'','','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='BZV2Q' where id=1; -update noar ti set v0='BZV2Q' where id=1; -update noar tt set b0='70HPAHMYEBGQ7DAZWPDUIKX4D4DAQU0' where id=1; -update noar ti set b0='70HPAHMYEBGQ7DAZWPDUIKX4D4DAQU0' where id=1; -update noar tt set v0='NPJTHWRK3A5Q7YVYAR4V2RJBKCXSLPR' where id=1; -update noar ti set v0='NPJTHWRK3A5Q7YVYAR4V2RJBKCXSLPR' where id=1; -update noar tt set b1='OLCCW9884V' where id=1; -update noar ti set b1='OLCCW9884V' where id=1; -update noar tt set v0='Y4QFAS4R3Q0UA2QIS1' where id=1; -update noar ti set v0='Y4QFAS4R3Q0UA2QIS1' where id=1; -update noar tt set b2='39PWV6V9' where id=1; -update noar ti set b2='39PWV6V9' where id=1; -update noar tt set v0='XS8N49YFK56H2CPKC' where id=2; -update noar ti set v0='XS8N49YFK56H2CPKC' where id=2; -update noar tt set b0='8F26IUJ3304SI1MJHC9VZN5TI06KW' where id=2; -update noar ti set b0='8F26IUJ3304SI1MJHC9VZN5TI06KW' where id=2; -update noar tt set v0='L1YZIY1AZ8IV' where id=2; -update noar ti set v0='L1YZIY1AZ8IV' where id=2; -update noar tt set b1='9E25QUAW7ZKWVV' where id=2; -update noar ti set b1='9E25QUAW7ZKWVV' where id=2; -update noar tt set v0='XYDESP2FWID57U2KJ0F4E7B' where id=2; -update noar ti set v0='XYDESP2FWID57U2KJ0F4E7B' where id=2; -update noar tt set b2='MZOD78TXP5X9UAL8QGUPEARGVG' where id=2; -update noar ti set b2='MZOD78TXP5X9UAL8QGUPEARGVG' where id=2; -update noar tt set v0='RDO0O4NIIXFLZTF4H4J7PF' where id=3; -update noar ti set v0='RDO0O4NIIXFLZTF4H4J7PF' where id=3; -update noar tt set b0='XRAJSP2D27E59PQ69P' where id=3; -update noar ti set b0='XRAJSP2D27E59PQ69P' where id=3; -update noar tt set v0='RSLUEJ2HYFSXHV2LZDXR5A6' where id=3; -update noar ti set v0='RSLUEJ2HYFSXHV2LZDXR5A6' where id=3; -update noar tt set b1='UCWRU80ERD5VP9I59A5XWA7VF2PQR1DD' where id=3; -update noar ti set b1='UCWRU80ERD5VP9I59A5XWA7VF2PQR1DD' where id=3; -update noar tt set v0='6Q0EVNDWO7SRQ5MHKRZ97N5M55' where id=3; -update noar ti set v0='6Q0EVNDWO7SRQ5MHKRZ97N5M55' where id=3; -update noar tt set b2='UIDKH' where id=3; -update noar ti set b2='UIDKH' where id=3; -update noar tt set v0='771WVJSIQ7LV6070SQ3A0E2WUBOF' where id=4; -update noar ti set v0='771WVJSIQ7LV6070SQ3A0E2WUBOF' where id=4; -update noar tt set b0='QZBPQNJTWVFUW415A9D' where id=4; -update noar ti set b0='QZBPQNJTWVFUW415A9D' where id=4; -update noar tt set v0='XCPT4BZLB64K' where id=4; -update noar ti set v0='XCPT4BZLB64K' where id=4; -update noar tt set b1='19UR7J9MT' where id=4; -update noar ti set b1='19UR7J9MT' where id=4; -update noar tt set v0='VOIN4KBV4X5ELC' where id=4; -update noar ti set v0='VOIN4KBV4X5ELC' where id=4; -update noar tt set b2='B0E9BCE6CX24HQ8JI' where id=4; -update noar ti set b2='B0E9BCE6CX24HQ8JI' where id=4; -update noar tt set v0='CEBPVBLWAKS42NQE6FBIIIYH814' where id=5; -update noar ti set v0='CEBPVBLWAKS42NQE6FBIIIYH814' where id=5; -update noar tt set b0='VZKRPII9Q3EC7S82BU1W2LR' where id=5; -update noar ti set b0='VZKRPII9Q3EC7S82BU1W2LR' where id=5; -update noar tt set v0='YJU85T81LMUJMPVSX4A' where id=5; -update noar ti set v0='YJU85T81LMUJMPVSX4A' where id=5; -update noar tt set b1='OCYV' where id=5; -update noar ti set b1='OCYV' where id=5; -update noar tt set v0='QNTBSI5K9YLYH5845VEV2N7LECABL9Y' where id=5; -update noar ti set v0='QNTBSI5K9YLYH5845VEV2N7LECABL9Y' where id=5; -update noar tt set b2='P65VWA3W7INEXCCFCNKTO9' where id=5; -update noar ti set b2='P65VWA3W7INEXCCFCNKTO9' where id=5; -update noar tt set v0='SU1FIL' where id=6; -update noar ti set v0='SU1FIL' where id=6; -update noar tt set b0='YZHYRTNBVSX1YA85U665VZ6' where id=6; -update noar ti set b0='YZHYRTNBVSX1YA85U665VZ6' where id=6; -update noar tt set v0='YM3VQ6KPLKNUFLHI6324' where id=6; -update noar ti set v0='YM3VQ6KPLKNUFLHI6324' where id=6; -update noar tt set b1='NEOWM' where id=6; -update noar ti set b1='NEOWM' where id=6; -update noar tt set v0='QV8W07IHSM40YC05O8R78C' where id=6; -update noar ti set v0='QV8W07IHSM40YC05O8R78C' where id=6; -update noar tt set b2='X99HHGF84VDAH91LD2M71IU107ERG8L' where id=6; -update noar ti set b2='X99HHGF84VDAH91LD2M71IU107ERG8L' where id=6; -update noar tt set v0='FU30S66VQYDKNJREU6LSPIUKBENQ' where id=7; -update noar ti set v0='FU30S66VQYDKNJREU6LSPIUKBENQ' where id=7; -update noar tt set b0='O31TH' where id=7; -update noar ti set b0='O31TH' where id=7; -update noar tt set v0='A797AJILPK6XYSNDTWZ2YII4456SY' where id=7; -update noar ti set v0='A797AJILPK6XYSNDTWZ2YII4456SY' where id=7; -update noar tt set b1='YXOHM6ECVM' where id=7; -update noar ti set b1='YXOHM6ECVM' where id=7; -update noar tt set v0='7C95XJ2LRIV6' where id=7; -update noar ti set v0='7C95XJ2LRIV6' where id=7; -update noar tt set b2='PQ435VKTYGV7YPPGIXX2SK14X' where id=7; -update noar ti set b2='PQ435VKTYGV7YPPGIXX2SK14X' where id=7; -update noar tt set v0='XGB0Y5T01LJJWBH' where id=8; -update noar ti set v0='XGB0Y5T01LJJWBH' where id=8; -update noar tt set b0='XQT4OVI4' where id=8; -update noar ti set b0='XQT4OVI4' where id=8; -update noar tt set v0='RP0YWBXHY92QPDBD04VADJQPA' where id=8; -update noar ti set v0='RP0YWBXHY92QPDBD04VADJQPA' where id=8; -update noar tt set b1='A5O9RGDGZH2F6AHI7LLW' where id=8; -update noar ti set b1='A5O9RGDGZH2F6AHI7LLW' where id=8; -update noar tt set v0='R4ZG1' where id=8; -update noar ti set v0='R4ZG1' where id=8; -update noar tt set b2='OSA7VEHFHG5U' where id=8; -update noar ti set b2='OSA7VEHFHG5U' where id=8; -update noar tt set v0='N1QKLVG' where id=9; -update noar ti set v0='N1QKLVG' where id=9; -update noar tt set b0='7YPU4WI' where id=9; -update noar ti set b0='7YPU4WI' where id=9; -update noar tt set v0='L1PPQ' where id=9; -update noar ti set v0='L1PPQ' where id=9; -update noar tt set b1='RF7W812XL67EC1CNJ3X98DR5Q' where id=9; -update noar ti set b1='RF7W812XL67EC1CNJ3X98DR5Q' where id=9; -update noar tt set v0='PAZIHGWAOVO96' where id=9; -update noar ti set v0='PAZIHGWAOVO96' where id=9; -update noar tt set b2='RPAFE' where id=9; -update noar ti set b2='RPAFE' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -f0 int null, -v0 varchar(32) null, -b0 mediumblob null, -b1 blob null, -b2 blob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='6PHBSQ7Y4VCUYALN6KYBOV521QF' where id=1; -update noar ti set v0='6PHBSQ7Y4VCUYALN6KYBOV521QF' where id=1; -update noar tt set b0='U7NO' where id=1; -update noar ti set b0='U7NO' where id=1; -update noar tt set v0='ZRC49GNPMY0FUQLO120EHOZSDM5127IR' where id=1; -update noar ti set v0='ZRC49GNPMY0FUQLO120EHOZSDM5127IR' where id=1; -update noar tt set b1='2N86J09RSRSZGE2DI6QBMRM8SVBTHN' where id=1; -update noar ti set b1='2N86J09RSRSZGE2DI6QBMRM8SVBTHN' where id=1; -update noar tt set v0='56CU7CK8YRW6XAS' where id=1; -update noar ti set v0='56CU7CK8YRW6XAS' where id=1; -update noar tt set b2='140HE0B0CTFZODPX' where id=1; -update noar ti set b2='140HE0B0CTFZODPX' where id=1; -update noar tt set v0='XSIBHV2I4BEQWHFBV057H1PMYKJV' where id=2; -update noar ti set v0='XSIBHV2I4BEQWHFBV057H1PMYKJV' where id=2; -update noar tt set b0='EDP8OE6' where id=2; -update noar ti set b0='EDP8OE6' where id=2; -update noar tt set v0='UNW7SHM336OW4M03V1KM' where id=2; -update noar ti set v0='UNW7SHM336OW4M03V1KM' where id=2; -update noar tt set b1='PKZZCG1GVZZCXLDT5' where id=2; -update noar ti set b1='PKZZCG1GVZZCXLDT5' where id=2; -update noar tt set v0='6R21CV7VK0BZ8PATQ' where id=2; -update noar ti set v0='6R21CV7VK0BZ8PATQ' where id=2; -update noar tt set b2='WVRZ37OICTKFJ5PUPSU3' where id=2; -update noar ti set b2='WVRZ37OICTKFJ5PUPSU3' where id=2; -update noar tt set v0='Y2UWX6N8RN9KHGUYIYT' where id=3; -update noar ti set v0='Y2UWX6N8RN9KHGUYIYT' where id=3; -update noar tt set b0='CY7IEJAYPZWD908MQO' where id=3; -update noar ti set b0='CY7IEJAYPZWD908MQO' where id=3; -update noar tt set v0='SC04XJTKFABZB5CFL0LHXVV1N2I5U' where id=3; -update noar ti set v0='SC04XJTKFABZB5CFL0LHXVV1N2I5U' where id=3; -update noar tt set b1='I2ANSGNBNY4TCLOB3' where id=3; -update noar ti set b1='I2ANSGNBNY4TCLOB3' where id=3; -update noar tt set v0='TEFS2EAPKQKA2UTQPEC31' where id=3; -update noar ti set v0='TEFS2EAPKQKA2UTQPEC31' where id=3; -update noar tt set b2='0BTYJPL0EU0YM1DNCD' where id=3; -update noar ti set b2='0BTYJPL0EU0YM1DNCD' where id=3; -update noar tt set v0='AEHJEOJ9J06' where id=4; -update noar ti set v0='AEHJEOJ9J06' where id=4; -update noar tt set b0='UF0468UDNV6' where id=4; -update noar ti set b0='UF0468UDNV6' where id=4; -update noar tt set v0='1ZJ0F8NQ0QQL72VM5ML' where id=4; -update noar ti set v0='1ZJ0F8NQ0QQL72VM5ML' where id=4; -update noar tt set b1='539S5OWUAOJQKJL8ZV7H8E0KJ357' where id=4; -update noar ti set b1='539S5OWUAOJQKJL8ZV7H8E0KJ357' where id=4; -update noar tt set v0='HX86B' where id=4; -update noar ti set v0='HX86B' where id=4; -update noar tt set b2='6KLR0SSIW79DQQUD75WGHG10H5X' where id=4; -update noar ti set b2='6KLR0SSIW79DQQUD75WGHG10H5X' where id=4; -update noar tt set v0='JTMC9WMMI5TAZWD0KXQY' where id=5; -update noar ti set v0='JTMC9WMMI5TAZWD0KXQY' where id=5; -update noar tt set b0='UOXYRCHEQMAPMK' where id=5; -update noar ti set b0='UOXYRCHEQMAPMK' where id=5; -update noar tt set v0='QHQ1B524526G2PIJC0GFWIY' where id=5; -update noar ti set v0='QHQ1B524526G2PIJC0GFWIY' where id=5; -update noar tt set b1='3USO7LM7XHRMYG1B7J0' where id=5; -update noar ti set b1='3USO7LM7XHRMYG1B7J0' where id=5; -update noar tt set v0='OL3GGMER2A3GJVAXK' where id=5; -update noar ti set v0='OL3GGMER2A3GJVAXK' where id=5; -update noar tt set b2='DMSE7U0ACHESDK' where id=5; -update noar ti set b2='DMSE7U0ACHESDK' where id=5; -update noar tt set v0='SR0SQ523IBKW2JE' where id=6; -update noar ti set v0='SR0SQ523IBKW2JE' where id=6; -update noar tt set b0='4359SBJQOHRT9ZFWTG' where id=6; -update noar ti set b0='4359SBJQOHRT9ZFWTG' where id=6; -update noar tt set v0='B0KW0SJ08MW340IP9GHO7IDZDRLUW3G' where id=6; -update noar ti set v0='B0KW0SJ08MW340IP9GHO7IDZDRLUW3G' where id=6; -update noar tt set b1='R7A2OW21XWPAN' where id=6; -update noar ti set b1='R7A2OW21XWPAN' where id=6; -update noar tt set v0='9OSQPO81YR11PLLYE2FD82CIU' where id=6; -update noar ti set v0='9OSQPO81YR11PLLYE2FD82CIU' where id=6; -update noar tt set b2='AKH4F4D58KIFJSBLMHPATP94S62CX' where id=6; -update noar ti set b2='AKH4F4D58KIFJSBLMHPATP94S62CX' where id=6; -update noar tt set v0='R9KO2K6MHY8ZKTTJHO2VD' where id=7; -update noar ti set v0='R9KO2K6MHY8ZKTTJHO2VD' where id=7; -update noar tt set b0='RFMU4U7385YOGELC9YZ40HW55Z81' where id=7; -update noar ti set b0='RFMU4U7385YOGELC9YZ40HW55Z81' where id=7; -update noar tt set v0='X' where id=7; -update noar ti set v0='X' where id=7; -update noar tt set b1='ZVCZVCMTN18OAD' where id=7; -update noar ti set b1='ZVCZVCMTN18OAD' where id=7; -update noar tt set v0='AG6Z6N621BYD' where id=7; -update noar ti set v0='AG6Z6N621BYD' where id=7; -update noar tt set b2='S1R2JVZBXB4SDY2QN8XZ2PQ97EOHR' where id=7; -update noar ti set b2='S1R2JVZBXB4SDY2QN8XZ2PQ97EOHR' where id=7; -update noar tt set v0='HIK5Q3LVC640VF5YFMHYDT7B0' where id=8; -update noar ti set v0='HIK5Q3LVC640VF5YFMHYDT7B0' where id=8; -update noar tt set b0='BZR3VGEQ28WWRL8YQL4QEW9Y' where id=8; -update noar ti set b0='BZR3VGEQ28WWRL8YQL4QEW9Y' where id=8; -update noar tt set v0='Z' where id=8; -update noar ti set v0='Z' where id=8; -update noar tt set b1='RITL86P5LOCCTJRS97PX857VCERWJ1M' where id=8; -update noar ti set b1='RITL86P5LOCCTJRS97PX857VCERWJ1M' where id=8; -update noar tt set v0='CB353NB8P28' where id=8; -update noar ti set v0='CB353NB8P28' where id=8; -update noar tt set b2='KAWXRL0GFD6HO1' where id=8; -update noar ti set b2='KAWXRL0GFD6HO1' where id=8; -update noar tt set v0='W5S7LRXW8U7R88985CVOFWH0' where id=9; -update noar ti set v0='W5S7LRXW8U7R88985CVOFWH0' where id=9; -update noar tt set b0='7XC' where id=9; -update noar ti set b0='7XC' where id=9; -update noar tt set v0='IT' where id=9; -update noar ti set v0='IT' where id=9; -update noar tt set b1='MI6U3DTH' where id=9; -update noar ti set b1='MI6U3DTH' where id=9; -update noar tt set v0='KZH' where id=9; -update noar ti set v0='KZH' where id=9; -update noar tt set b2='R8B05M265W2UKRNGMGPAAZLMROPNPL6' where id=9; -update noar ti set b2='R8B05M265W2UKRNGMGPAAZLMROPNPL6' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -f0 int null, -v0 varchar(256) null, -b0 mediumblob null, -b1 blob null, -b2 blob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='Y4TZBZMBF9G455X' where id=1; -update noar ti set v0='Y4TZBZMBF9G455X' where id=1; -update noar tt set b0='ES984128VENB0O3QE46YSJKTFVPVSDK' where id=1; -update noar ti set b0='ES984128VENB0O3QE46YSJKTFVPVSDK' where id=1; -update noar tt set v0='1XX2SL5AA92HNCL369LI3UFJQZM1ZAU' where id=1; -update noar ti set v0='1XX2SL5AA92HNCL369LI3UFJQZM1ZAU' where id=1; -update noar tt set b1='YR8HB73TGRC' where id=1; -update noar ti set b1='YR8HB73TGRC' where id=1; -update noar tt set v0='HGN' where id=1; -update noar ti set v0='HGN' where id=1; -update noar tt set b2='B0QL4TDP2' where id=1; -update noar ti set b2='B0QL4TDP2' where id=1; -update noar tt set v0='RR2GA9SPHKWJOX9LQK6FW1T4GOAS3CA' where id=2; -update noar ti set v0='RR2GA9SPHKWJOX9LQK6FW1T4GOAS3CA' where id=2; -update noar tt set b0='NQSEROAA6FSF' where id=2; -update noar ti set b0='NQSEROAA6FSF' where id=2; -update noar tt set v0='B35I4BRVSG0KKND7JINAP3DPGG5BAM3' where id=2; -update noar ti set v0='B35I4BRVSG0KKND7JINAP3DPGG5BAM3' where id=2; -update noar tt set b1='6QSJEX0HFNW7FH104T4INL8C' where id=2; -update noar ti set b1='6QSJEX0HFNW7FH104T4INL8C' where id=2; -update noar tt set v0='8PCOHQINEVNHHH64ZJN6QUCM' where id=2; -update noar ti set v0='8PCOHQINEVNHHH64ZJN6QUCM' where id=2; -update noar tt set b2='GL' where id=2; -update noar ti set b2='GL' where id=2; -update noar tt set v0='8Y5A8V98BP7EW2TCPN5R0MXX5CEOM' where id=3; -update noar ti set v0='8Y5A8V98BP7EW2TCPN5R0MXX5CEOM' where id=3; -update noar tt set b0='T2F0EYNFVUJLJ6NQEIAIEJNOFA6' where id=3; -update noar ti set b0='T2F0EYNFVUJLJ6NQEIAIEJNOFA6' where id=3; -update noar tt set v0='IPFSEQAHHX4SDFLSWDAL' where id=3; -update noar ti set v0='IPFSEQAHHX4SDFLSWDAL' where id=3; -update noar tt set b1='V0EFFTRX5VOWYDB2067' where id=3; -update noar ti set b1='V0EFFTRX5VOWYDB2067' where id=3; -update noar tt set v0='PV41I8M1W' where id=3; -update noar ti set v0='PV41I8M1W' where id=3; -update noar tt set b2='JUA25967FMTBO7NJAOZL' where id=3; -update noar ti set b2='JUA25967FMTBO7NJAOZL' where id=3; -update noar tt set v0='CSU9SD2PYH363GU0DJDLFIZ5CFRVBG5E' where id=4; -update noar ti set v0='CSU9SD2PYH363GU0DJDLFIZ5CFRVBG5E' where id=4; -update noar tt set b0='EDK7W3NPMYPBZYMFF8LB9J3YEVNR' where id=4; -update noar ti set b0='EDK7W3NPMYPBZYMFF8LB9J3YEVNR' where id=4; -update noar tt set v0='N0LOA5RZQWY6PUDV5D1G1DHLI8' where id=4; -update noar ti set v0='N0LOA5RZQWY6PUDV5D1G1DHLI8' where id=4; -update noar tt set b1='2UNC3' where id=4; -update noar ti set b1='2UNC3' where id=4; -update noar tt set v0='U0SDKJVX9MWJ7C6G1DD30H5251NO8X' where id=4; -update noar ti set v0='U0SDKJVX9MWJ7C6G1DD30H5251NO8X' where id=4; -update noar tt set b2='34QWF0BX23CJD7O47ICQHKM21EMEK' where id=4; -update noar ti set b2='34QWF0BX23CJD7O47ICQHKM21EMEK' where id=4; -update noar tt set v0='4ZWP6TENOTG4KUO44H7VV2F8QE7P87J' where id=5; -update noar ti set v0='4ZWP6TENOTG4KUO44H7VV2F8QE7P87J' where id=5; -update noar tt set b0='DCEOZ8QWMACAJ8YEDYQOHR5' where id=5; -update noar ti set b0='DCEOZ8QWMACAJ8YEDYQOHR5' where id=5; -update noar tt set v0='20L2FONG4TR6R51A' where id=5; -update noar ti set v0='20L2FONG4TR6R51A' where id=5; -update noar tt set b1='GNYN' where id=5; -update noar ti set b1='GNYN' where id=5; -update noar tt set v0='1CE3NRRDXST3J' where id=5; -update noar ti set v0='1CE3NRRDXST3J' where id=5; -update noar tt set b2='ZL9Z473SC' where id=5; -update noar ti set b2='ZL9Z473SC' where id=5; -update noar tt set v0='CXG89W7K117LAW4PM4' where id=6; -update noar ti set v0='CXG89W7K117LAW4PM4' where id=6; -update noar tt set b0='4HYCL4K5I' where id=6; -update noar ti set b0='4HYCL4K5I' where id=6; -update noar tt set v0='4MUTIM4AVW6EM325PCKKPRBBE' where id=6; -update noar ti set v0='4MUTIM4AVW6EM325PCKKPRBBE' where id=6; -update noar tt set b1='CZMUB7LQDSO8NXPZHFFF0R3E3H5' where id=6; -update noar ti set b1='CZMUB7LQDSO8NXPZHFFF0R3E3H5' where id=6; -update noar tt set v0='22QA6ORL' where id=6; -update noar ti set v0='22QA6ORL' where id=6; -update noar tt set b2='HF3RCHN' where id=6; -update noar ti set b2='HF3RCHN' where id=6; -update noar tt set v0='AO2AK2AJKSJ5SRVZDV4MTAX0TLUY' where id=7; -update noar ti set v0='AO2AK2AJKSJ5SRVZDV4MTAX0TLUY' where id=7; -update noar tt set b0='TXNBPAKFEMVH8074UA3FS' where id=7; -update noar ti set b0='TXNBPAKFEMVH8074UA3FS' where id=7; -update noar tt set v0='36DD99P3KEX8WEFFVF' where id=7; -update noar ti set v0='36DD99P3KEX8WEFFVF' where id=7; -update noar tt set b1='W7ZI2WD' where id=7; -update noar ti set b1='W7ZI2WD' where id=7; -update noar tt set v0='W3EF5RGS' where id=7; -update noar ti set v0='W3EF5RGS' where id=7; -update noar tt set b2='IRPNKBRGTFQMAPB57MYKVD' where id=7; -update noar ti set b2='IRPNKBRGTFQMAPB57MYKVD' where id=7; -update noar tt set v0='NHU93TBBFQ7RJBC4A562GOLNSDZRGFM' where id=8; -update noar ti set v0='NHU93TBBFQ7RJBC4A562GOLNSDZRGFM' where id=8; -update noar tt set b0='MG5ILW6D4BEFDQGVF' where id=8; -update noar ti set b0='MG5ILW6D4BEFDQGVF' where id=8; -update noar tt set v0='C0QA' where id=8; -update noar ti set v0='C0QA' where id=8; -update noar tt set b1='7Q0JVX7VLC' where id=8; -update noar ti set b1='7Q0JVX7VLC' where id=8; -update noar tt set v0='2CIXW0ML6XY71' where id=8; -update noar ti set v0='2CIXW0ML6XY71' where id=8; -update noar tt set b2='3BYHJDKFSJDX1ZH52' where id=8; -update noar ti set b2='3BYHJDKFSJDX1ZH52' where id=8; -update noar tt set v0='XF7NHJ9X25DG9EW' where id=9; -update noar ti set v0='XF7NHJ9X25DG9EW' where id=9; -update noar tt set b0='BMDKZ71VYRXAZ853WHJEF131' where id=9; -update noar ti set b0='BMDKZ71VYRXAZ853WHJEF131' where id=9; -update noar tt set v0='HTOTNKI7' where id=9; -update noar ti set v0='HTOTNKI7' where id=9; -update noar tt set b1='2AAVR46M5AMJM7Z54TNJ' where id=9; -update noar ti set b1='2AAVR46M5AMJM7Z54TNJ' where id=9; -update noar tt set v0='FFNMAEX8F18QQUUQM8K09CSQI4' where id=9; -update noar ti set v0='FFNMAEX8F18QQUUQM8K09CSQI4' where id=9; -update noar tt set b2='SD05IDPKDIOFHK1AD7' where id=9; -update noar ti set b2='SD05IDPKDIOFHK1AD7' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -f0 int not null, -v0 varchar(32) not null, -b0 mediumblob not null, -b1 blob not null, -b2 blob not null -) engine=tokudb; -insert into tt values (1,0,'','','',''); -insert into tt values (2,0,'','','',''); -insert into tt values (3,0,'','','',''); -insert into tt values (4,0,'','','',''); -insert into tt values (5,0,'','','',''); -insert into tt values (6,0,'','','',''); -insert into tt values (7,0,'','','',''); -insert into tt values (8,0,'','','',''); -insert into tt values (9,0,'','','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='TDB0XNEKN6SEIE6J13SCC44P' where id=1; -update noar ti set v0='TDB0XNEKN6SEIE6J13SCC44P' where id=1; -update noar tt set b0='HF1Z1I6DH15D7SC4XZ7NSSBXKFT' where id=1; -update noar ti set b0='HF1Z1I6DH15D7SC4XZ7NSSBXKFT' where id=1; -update noar tt set v0='VL6D1ABM7O0DCTC3B9F6Y2' where id=1; -update noar ti set v0='VL6D1ABM7O0DCTC3B9F6Y2' where id=1; -update noar tt set b1='J6KQC03N9WS5T' where id=1; -update noar ti set b1='J6KQC03N9WS5T' where id=1; -update noar tt set v0='6QDTKE' where id=1; -update noar ti set v0='6QDTKE' where id=1; -update noar tt set b2='9BXKL13NWBW8X427QPWHEWXJS4' where id=1; -update noar ti set b2='9BXKL13NWBW8X427QPWHEWXJS4' where id=1; -update noar tt set v0='YU5UJPEXI1RK9Y30' where id=2; -update noar ti set v0='YU5UJPEXI1RK9Y30' where id=2; -update noar tt set b0='LHS80SHX18' where id=2; -update noar ti set b0='LHS80SHX18' where id=2; -update noar tt set v0='NS3V5N9GAT1NKNNP4KXFH5MPV9I' where id=2; -update noar ti set v0='NS3V5N9GAT1NKNNP4KXFH5MPV9I' where id=2; -update noar tt set b1='WXLEEXPX0W8PRVFSBFRZUB1' where id=2; -update noar ti set b1='WXLEEXPX0W8PRVFSBFRZUB1' where id=2; -update noar tt set v0='BBZG9VV93QW06CEUYKT0ERCSZC4HF' where id=2; -update noar ti set v0='BBZG9VV93QW06CEUYKT0ERCSZC4HF' where id=2; -update noar tt set b2='62DESWXL6R1JXMRC' where id=2; -update noar ti set b2='62DESWXL6R1JXMRC' where id=2; -update noar tt set v0='D3B93X' where id=3; -update noar ti set v0='D3B93X' where id=3; -update noar tt set b0='VMRUKMU0QM0EALZIKKEUEHZJ' where id=3; -update noar ti set b0='VMRUKMU0QM0EALZIKKEUEHZJ' where id=3; -update noar tt set v0='0A86ZGSPK94NZPA' where id=3; -update noar ti set v0='0A86ZGSPK94NZPA' where id=3; -update noar tt set b1='KRH6037' where id=3; -update noar ti set b1='KRH6037' where id=3; -update noar tt set v0='F529R0SW0' where id=3; -update noar ti set v0='F529R0SW0' where id=3; -update noar tt set b2='LE' where id=3; -update noar ti set b2='LE' where id=3; -update noar tt set v0='O51K98R1D53XEHVWLDI8T' where id=4; -update noar ti set v0='O51K98R1D53XEHVWLDI8T' where id=4; -update noar tt set b0='IZ4' where id=4; -update noar ti set b0='IZ4' where id=4; -update noar tt set v0='OP3' where id=4; -update noar ti set v0='OP3' where id=4; -update noar tt set b1='KOO39KB4M40ZTOK5W57E3K' where id=4; -update noar ti set b1='KOO39KB4M40ZTOK5W57E3K' where id=4; -update noar tt set v0='9HNNVU' where id=4; -update noar ti set v0='9HNNVU' where id=4; -update noar tt set b2='BL72X6R33KN7M0MDGUQG1844PEMUK' where id=4; -update noar ti set b2='BL72X6R33KN7M0MDGUQG1844PEMUK' where id=4; -update noar tt set v0='IB8JAVD6B11P1CKNKQ1Z7WE6COA7K' where id=5; -update noar ti set v0='IB8JAVD6B11P1CKNKQ1Z7WE6COA7K' where id=5; -update noar tt set b0='2H2I2B0QK' where id=5; -update noar ti set b0='2H2I2B0QK' where id=5; -update noar tt set v0='KZE88XM8DOPVXGH98H6XJF' where id=5; -update noar ti set v0='KZE88XM8DOPVXGH98H6XJF' where id=5; -update noar tt set b1='U0' where id=5; -update noar ti set b1='U0' where id=5; -update noar tt set v0='PXL4AOB2VX2LZAWOY' where id=5; -update noar ti set v0='PXL4AOB2VX2LZAWOY' where id=5; -update noar tt set b2='DMZPNS6RQ' where id=5; -update noar ti set b2='DMZPNS6RQ' where id=5; -update noar tt set v0='N4J5MQ' where id=6; -update noar ti set v0='N4J5MQ' where id=6; -update noar tt set b0='XTP4Q6DJ1H6NHH1DZ2X7E' where id=6; -update noar ti set b0='XTP4Q6DJ1H6NHH1DZ2X7E' where id=6; -update noar tt set v0='MFFCTTILOEY4II3F58VRQBC7WW6IPH6K' where id=6; -update noar ti set v0='MFFCTTILOEY4II3F58VRQBC7WW6IPH6K' where id=6; -update noar tt set b1='U9BN90SLUZJ' where id=6; -update noar ti set b1='U9BN90SLUZJ' where id=6; -update noar tt set v0='O7205UUWHX55MYYLOEAAEQ5DW' where id=6; -update noar ti set v0='O7205UUWHX55MYYLOEAAEQ5DW' where id=6; -update noar tt set b2='D6EBJ0N3KAQ1DFZRTSY3PH' where id=6; -update noar ti set b2='D6EBJ0N3KAQ1DFZRTSY3PH' where id=6; -update noar tt set v0='H1IEGU70Y8EKE0VQSAY' where id=7; -update noar ti set v0='H1IEGU70Y8EKE0VQSAY' where id=7; -update noar tt set b0='ACHG6DW7QLMIPUO3UOMJ7DYS9CDGPB70' where id=7; -update noar ti set b0='ACHG6DW7QLMIPUO3UOMJ7DYS9CDGPB70' where id=7; -update noar tt set v0='E5ZI' where id=7; -update noar ti set v0='E5ZI' where id=7; -update noar tt set b1='VG34IT6J6C33WOAFK' where id=7; -update noar ti set b1='VG34IT6J6C33WOAFK' where id=7; -update noar tt set v0='4H2' where id=7; -update noar ti set v0='4H2' where id=7; -update noar tt set b2='ZVWYMD' where id=7; -update noar ti set b2='ZVWYMD' where id=7; -update noar tt set v0='OF2T87N0H2TAJ7R87' where id=8; -update noar ti set v0='OF2T87N0H2TAJ7R87' where id=8; -update noar tt set b0='6F70BEJW0WBGZUJEFP3MOO' where id=8; -update noar ti set b0='6F70BEJW0WBGZUJEFP3MOO' where id=8; -update noar tt set v0='5SCFF5' where id=8; -update noar ti set v0='5SCFF5' where id=8; -update noar tt set b1='F9' where id=8; -update noar ti set b1='F9' where id=8; -update noar tt set v0='VCEYC' where id=8; -update noar ti set v0='VCEYC' where id=8; -update noar tt set b2='LYFXXSAX3KF4LCG2WG6' where id=8; -update noar ti set b2='LYFXXSAX3KF4LCG2WG6' where id=8; -update noar tt set v0='Q7HBDAKR3WKUFG8E7J' where id=9; -update noar ti set v0='Q7HBDAKR3WKUFG8E7J' where id=9; -update noar tt set b0='ZS4ZO6M2Y6O07842Y4' where id=9; -update noar ti set b0='ZS4ZO6M2Y6O07842Y4' where id=9; -update noar tt set v0='1YP259TLCFZ' where id=9; -update noar ti set v0='1YP259TLCFZ' where id=9; -update noar tt set b1='Z4I9Q13AZVG65UV8O8XJCIJQNU' where id=9; -update noar ti set b1='Z4I9Q13AZVG65UV8O8XJCIJQNU' where id=9; -update noar tt set v0='Y1CSBR491TD2P7O7PBVX5GZOYTWC6' where id=9; -update noar ti set v0='Y1CSBR491TD2P7O7PBVX5GZOYTWC6' where id=9; -update noar tt set b2='T86II1W97FJ' where id=9; -update noar ti set b2='T86II1W97FJ' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -f0 int not null, -v0 varchar(256) not null, -b0 mediumblob not null, -b1 blob not null, -b2 blob not null -) engine=tokudb; -insert into tt values (1,0,'','','',''); -insert into tt values (2,0,'','','',''); -insert into tt values (3,0,'','','',''); -insert into tt values (4,0,'','','',''); -insert into tt values (5,0,'','','',''); -insert into tt values (6,0,'','','',''); -insert into tt values (7,0,'','','',''); -insert into tt values (8,0,'','','',''); -insert into tt values (9,0,'','','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='IGKFL4WG3' where id=1; -update noar ti set v0='IGKFL4WG3' where id=1; -update noar tt set b0='DVPJCQFD' where id=1; -update noar ti set b0='DVPJCQFD' where id=1; -update noar tt set v0='QF338QJ1VB0D050POMBUHWAXF' where id=1; -update noar ti set v0='QF338QJ1VB0D050POMBUHWAXF' where id=1; -update noar tt set b1='QM8H7W5NXQJ44KV' where id=1; -update noar ti set b1='QM8H7W5NXQJ44KV' where id=1; -update noar tt set v0='XT8ZUPD38WDTQ' where id=1; -update noar ti set v0='XT8ZUPD38WDTQ' where id=1; -update noar tt set b2='BT7CH7FQ53' where id=1; -update noar ti set b2='BT7CH7FQ53' where id=1; -update noar tt set v0='LCF861RM1M8FJAE82PQ' where id=2; -update noar ti set v0='LCF861RM1M8FJAE82PQ' where id=2; -update noar tt set b0='P7PRND4OFZ8GA62MIK96FSB6PX4' where id=2; -update noar ti set b0='P7PRND4OFZ8GA62MIK96FSB6PX4' where id=2; -update noar tt set v0='41LF' where id=2; -update noar ti set v0='41LF' where id=2; -update noar tt set b1='WF1U' where id=2; -update noar ti set b1='WF1U' where id=2; -update noar tt set v0='M' where id=2; -update noar ti set v0='M' where id=2; -update noar tt set b2='GR0VTMZ270BTZ0UPJDHELM1QV7SJ6O' where id=2; -update noar ti set b2='GR0VTMZ270BTZ0UPJDHELM1QV7SJ6O' where id=2; -update noar tt set v0='70ROSZ254I4NTDZLZZRAL0F03F' where id=3; -update noar ti set v0='70ROSZ254I4NTDZLZZRAL0F03F' where id=3; -update noar tt set b0='CVDAN1DN9' where id=3; -update noar ti set b0='CVDAN1DN9' where id=3; -update noar tt set v0='B9' where id=3; -update noar ti set v0='B9' where id=3; -update noar tt set b1='9BNQ' where id=3; -update noar ti set b1='9BNQ' where id=3; -update noar tt set v0='ISDDR7MD2IV7QU' where id=3; -update noar ti set v0='ISDDR7MD2IV7QU' where id=3; -update noar tt set b2='IY37D93XDNFNW' where id=3; -update noar ti set b2='IY37D93XDNFNW' where id=3; -update noar tt set v0='MNAX' where id=4; -update noar ti set v0='MNAX' where id=4; -update noar tt set b0='OJA4P1VJYH7C2VCBDU4EPNF5UAYDXPJ' where id=4; -update noar ti set b0='OJA4P1VJYH7C2VCBDU4EPNF5UAYDXPJ' where id=4; -update noar tt set v0='MU8ZVRAQ1RZKEVPH6NRSAK8X0' where id=4; -update noar ti set v0='MU8ZVRAQ1RZKEVPH6NRSAK8X0' where id=4; -update noar tt set b1='QHXII8ZKIBZF9GA73NZ' where id=4; -update noar ti set b1='QHXII8ZKIBZF9GA73NZ' where id=4; -update noar tt set v0='1SR1KNF7DAWK2J60ZZDMKIE9N0VPGVI' where id=4; -update noar ti set v0='1SR1KNF7DAWK2J60ZZDMKIE9N0VPGVI' where id=4; -update noar tt set b2='NFEUT3ZV6WGU4ZGC3A05NJA29MVJM7J' where id=4; -update noar ti set b2='NFEUT3ZV6WGU4ZGC3A05NJA29MVJM7J' where id=4; -update noar tt set v0='0QVJ8144RLXMSE99' where id=5; -update noar ti set v0='0QVJ8144RLXMSE99' where id=5; -update noar tt set b0='LUH7C7XZOSD8ZHEE2A77XPU1R46ADGL9' where id=5; -update noar ti set b0='LUH7C7XZOSD8ZHEE2A77XPU1R46ADGL9' where id=5; -update noar tt set v0='NCVEQTQ128JHYQ7VCMNC6RG' where id=5; -update noar ti set v0='NCVEQTQ128JHYQ7VCMNC6RG' where id=5; -update noar tt set b1='E3AUDPD5GU4PJIW0XIY6TH4' where id=5; -update noar ti set b1='E3AUDPD5GU4PJIW0XIY6TH4' where id=5; -update noar tt set v0='ALAKKAPWJR9FYXE6VP85LOW' where id=5; -update noar ti set v0='ALAKKAPWJR9FYXE6VP85LOW' where id=5; -update noar tt set b2='MQN' where id=5; -update noar ti set b2='MQN' where id=5; -update noar tt set v0='IWVWJ9ZVXW2JOAYJFG8KYMWXUF' where id=6; -update noar ti set v0='IWVWJ9ZVXW2JOAYJFG8KYMWXUF' where id=6; -update noar tt set b0='P8IW5K5TSW8PMEKGP4ZWGFR671WUQJ' where id=6; -update noar ti set b0='P8IW5K5TSW8PMEKGP4ZWGFR671WUQJ' where id=6; -update noar tt set v0='0' where id=6; -update noar ti set v0='0' where id=6; -update noar tt set b1='DBTIGJ3OL' where id=6; -update noar ti set b1='DBTIGJ3OL' where id=6; -update noar tt set v0='K9TU8ICNYTNOQK678IRSWUHQZSTLT' where id=6; -update noar ti set v0='K9TU8ICNYTNOQK678IRSWUHQZSTLT' where id=6; -update noar tt set b2='G1SPT1' where id=6; -update noar ti set b2='G1SPT1' where id=6; -update noar tt set v0='B6H2FJ0H9SW' where id=7; -update noar ti set v0='B6H2FJ0H9SW' where id=7; -update noar tt set b0='SGO7ZYPAFTA5BRQ4TQH2QT1CF3' where id=7; -update noar ti set b0='SGO7ZYPAFTA5BRQ4TQH2QT1CF3' where id=7; -update noar tt set v0='6GJPV9ERN72T0LB1UBL5YSQXO76I' where id=7; -update noar ti set v0='6GJPV9ERN72T0LB1UBL5YSQXO76I' where id=7; -update noar tt set b1='CO3Y7S0NQNM' where id=7; -update noar ti set b1='CO3Y7S0NQNM' where id=7; -update noar tt set v0='JQ4JAI0DKXGZAF54ZN1WM3TV3MSI' where id=7; -update noar ti set v0='JQ4JAI0DKXGZAF54ZN1WM3TV3MSI' where id=7; -update noar tt set b2='KPZ03UC4Z6CIV07JR2P54AR0R95' where id=7; -update noar ti set b2='KPZ03UC4Z6CIV07JR2P54AR0R95' where id=7; -update noar tt set v0='BICODOUW059Y0PEO4Q4WS' where id=8; -update noar ti set v0='BICODOUW059Y0PEO4Q4WS' where id=8; -update noar tt set b0='J0SCKLLLTZY2MNZS3WUR' where id=8; -update noar ti set b0='J0SCKLLLTZY2MNZS3WUR' where id=8; -update noar tt set v0='27ANXJ26DAL9JL5D6F10867EYI85' where id=8; -update noar ti set v0='27ANXJ26DAL9JL5D6F10867EYI85' where id=8; -update noar tt set b1='WQVV09UCZ3' where id=8; -update noar ti set b1='WQVV09UCZ3' where id=8; -update noar tt set v0='KXI126UJEIBYGEK0UN2M9RA2ZE6' where id=8; -update noar ti set v0='KXI126UJEIBYGEK0UN2M9RA2ZE6' where id=8; -update noar tt set b2='02CWRB6EEJZAHRUWK0QAN5XBCGD5H' where id=8; -update noar ti set b2='02CWRB6EEJZAHRUWK0QAN5XBCGD5H' where id=8; -update noar tt set v0='RUB04G2OPFFPVZLLFB' where id=9; -update noar ti set v0='RUB04G2OPFFPVZLLFB' where id=9; -update noar tt set b0='WIEK856NKM586SBBOY7UKMWXQ8D74LWX' where id=9; -update noar ti set b0='WIEK856NKM586SBBOY7UKMWXQ8D74LWX' where id=9; -update noar tt set v0='HCZEHMFLF' where id=9; -update noar ti set v0='HCZEHMFLF' where id=9; -update noar tt set b1='WP039LEGOIQUESIV4OQU0ECTQH' where id=9; -update noar ti set b1='WP039LEGOIQUESIV4OQU0ECTQH' where id=9; -update noar tt set v0='RFKHKT' where id=9; -update noar ti set v0='RFKHKT' where id=9; -update noar tt set b2='QOXKBTVJPDJU7' where id=9; -update noar ti set b2='QOXKBTVJPDJU7' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -f0 int null, -v0 varchar(32) null, -b0 mediumblob null, -b1 blob null, -b2 mediumblob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='90JH9JCXYSQHPI5XRY02G3S8834ZNRVH' where id=1; -update noar ti set v0='90JH9JCXYSQHPI5XRY02G3S8834ZNRVH' where id=1; -update noar tt set b0='NFS7IENZ933UAA2G7201TFFVKZ' where id=1; -update noar ti set b0='NFS7IENZ933UAA2G7201TFFVKZ' where id=1; -update noar tt set v0='V8BDNVM' where id=1; -update noar ti set v0='V8BDNVM' where id=1; -update noar tt set b1='S33OPPVOY' where id=1; -update noar ti set b1='S33OPPVOY' where id=1; -update noar tt set v0='G45V1J19G0KF3AT' where id=1; -update noar ti set v0='G45V1J19G0KF3AT' where id=1; -update noar tt set b2='D7OKFH4KWB' where id=1; -update noar ti set b2='D7OKFH4KWB' where id=1; -update noar tt set v0='ULE71DP70EUEV3' where id=2; -update noar ti set v0='ULE71DP70EUEV3' where id=2; -update noar tt set b0='KQNMZYVTGAJ' where id=2; -update noar ti set b0='KQNMZYVTGAJ' where id=2; -update noar tt set v0='PB53TL593ZQDB4MUJBHUAKVU39XE2P8' where id=2; -update noar ti set v0='PB53TL593ZQDB4MUJBHUAKVU39XE2P8' where id=2; -update noar tt set b1='AFPDV' where id=2; -update noar ti set b1='AFPDV' where id=2; -update noar tt set v0='8V3DIQB9I9AMHL2WOPC62ZPU' where id=2; -update noar ti set v0='8V3DIQB9I9AMHL2WOPC62ZPU' where id=2; -update noar tt set b2='035LJ8JWYVC4KTMUU' where id=2; -update noar ti set b2='035LJ8JWYVC4KTMUU' where id=2; -update noar tt set v0='TI4W' where id=3; -update noar ti set v0='TI4W' where id=3; -update noar tt set b0='HPHIYCBE3GHQF8FRJRQB4' where id=3; -update noar ti set b0='HPHIYCBE3GHQF8FRJRQB4' where id=3; -update noar tt set v0='5WZOJN4' where id=3; -update noar ti set v0='5WZOJN4' where id=3; -update noar tt set b1='XT2' where id=3; -update noar ti set b1='XT2' where id=3; -update noar tt set v0='260YNAXJ0HTEBQL' where id=3; -update noar ti set v0='260YNAXJ0HTEBQL' where id=3; -update noar tt set b2='KZFE7Z3VZNQBSSA3OPAU' where id=3; -update noar ti set b2='KZFE7Z3VZNQBSSA3OPAU' where id=3; -update noar tt set v0='WZ23GI' where id=4; -update noar ti set v0='WZ23GI' where id=4; -update noar tt set b0='SVTOQ0JEJJKZFHVOYN96NU98ZKK1' where id=4; -update noar ti set b0='SVTOQ0JEJJKZFHVOYN96NU98ZKK1' where id=4; -update noar tt set v0='Q9' where id=4; -update noar ti set v0='Q9' where id=4; -update noar tt set b1='4' where id=4; -update noar ti set b1='4' where id=4; -update noar tt set v0='TW206QEY0AHCEF3R6597V9GYUG62' where id=4; -update noar ti set v0='TW206QEY0AHCEF3R6597V9GYUG62' where id=4; -update noar tt set b2='2Z2XOO650CW6KL79V' where id=4; -update noar ti set b2='2Z2XOO650CW6KL79V' where id=4; -update noar tt set v0='4IRSK87QL41S61MX5IHDE0XRFLC' where id=5; -update noar ti set v0='4IRSK87QL41S61MX5IHDE0XRFLC' where id=5; -update noar tt set b0='IJO' where id=5; -update noar ti set b0='IJO' where id=5; -update noar tt set v0='A7A58GH43OTRJRL' where id=5; -update noar ti set v0='A7A58GH43OTRJRL' where id=5; -update noar tt set b1='K8VS8QQYJHBL5YRS' where id=5; -update noar ti set b1='K8VS8QQYJHBL5YRS' where id=5; -update noar tt set v0='41RFQRYTQLSWYWAU5' where id=5; -update noar ti set v0='41RFQRYTQLSWYWAU5' where id=5; -update noar tt set b2='9I307GJ2RR87G' where id=5; -update noar ti set b2='9I307GJ2RR87G' where id=5; -update noar tt set v0='IJXHXCX416P4L1YITQXJM' where id=6; -update noar ti set v0='IJXHXCX416P4L1YITQXJM' where id=6; -update noar tt set b0='OE3NV57EM9KUJC9BGYQ190DY3IE' where id=6; -update noar ti set b0='OE3NV57EM9KUJC9BGYQ190DY3IE' where id=6; -update noar tt set v0='3TS87BVZDP2KFBY9OSLGBXRE' where id=6; -update noar ti set v0='3TS87BVZDP2KFBY9OSLGBXRE' where id=6; -update noar tt set b1='FMS1EY3RZ5GT8FS' where id=6; -update noar ti set b1='FMS1EY3RZ5GT8FS' where id=6; -update noar tt set v0='MQXQV9X81EUG2WLCZEBWC9R3FKDL' where id=6; -update noar ti set v0='MQXQV9X81EUG2WLCZEBWC9R3FKDL' where id=6; -update noar tt set b2='X3IJJZP37MMKTL' where id=6; -update noar ti set b2='X3IJJZP37MMKTL' where id=6; -update noar tt set v0='X7' where id=7; -update noar ti set v0='X7' where id=7; -update noar tt set b0='CB7KZXWCEAZOGJQQUF' where id=7; -update noar ti set b0='CB7KZXWCEAZOGJQQUF' where id=7; -update noar tt set v0='ZN1EXMEX3I78YNO57WFO8J1' where id=7; -update noar ti set v0='ZN1EXMEX3I78YNO57WFO8J1' where id=7; -update noar tt set b1='PHZ5BT8KXLLCKARPTI61U6AN' where id=7; -update noar ti set b1='PHZ5BT8KXLLCKARPTI61U6AN' where id=7; -update noar tt set v0='49PDZV4AN1TF59OIY0U' where id=7; -update noar ti set v0='49PDZV4AN1TF59OIY0U' where id=7; -update noar tt set b2='NUWZ3EM87ZOQDZP02GA' where id=7; -update noar ti set b2='NUWZ3EM87ZOQDZP02GA' where id=7; -update noar tt set v0='0HQ8ZSP8TF8WXMLN2LAFP3URKT888TT5' where id=8; -update noar ti set v0='0HQ8ZSP8TF8WXMLN2LAFP3URKT888TT5' where id=8; -update noar tt set b0='ZQ4SWQW8GPQW3G4RTBM7WC' where id=8; -update noar ti set b0='ZQ4SWQW8GPQW3G4RTBM7WC' where id=8; -update noar tt set v0='EC9I07HL5JCIKBG107OKZHY3JC' where id=8; -update noar ti set v0='EC9I07HL5JCIKBG107OKZHY3JC' where id=8; -update noar tt set b1='N7IHW8R8758T' where id=8; -update noar ti set b1='N7IHW8R8758T' where id=8; -update noar tt set v0='XQU68C3V8BMY1' where id=8; -update noar ti set v0='XQU68C3V8BMY1' where id=8; -update noar tt set b2='X6SMDBM47TP4SUYWHFLZBSO' where id=8; -update noar ti set b2='X6SMDBM47TP4SUYWHFLZBSO' where id=8; -update noar tt set v0='S7HM16ES' where id=9; -update noar ti set v0='S7HM16ES' where id=9; -update noar tt set b0='EBI6UIYSAKYHSLFHNER6E' where id=9; -update noar ti set b0='EBI6UIYSAKYHSLFHNER6E' where id=9; -update noar tt set v0='1X3AYKJ0H291Z1B' where id=9; -update noar ti set v0='1X3AYKJ0H291Z1B' where id=9; -update noar tt set b1='YW91JJKQ3G27RLB93BO0AH' where id=9; -update noar ti set b1='YW91JJKQ3G27RLB93BO0AH' where id=9; -update noar tt set v0='TS22Q27WI2T' where id=9; -update noar ti set v0='TS22Q27WI2T' where id=9; -update noar tt set b2='7OBW6SE79MTOPZ8Z5XKB0' where id=9; -update noar ti set b2='7OBW6SE79MTOPZ8Z5XKB0' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -f0 int null, -v0 varchar(256) null, -b0 mediumblob null, -b1 blob null, -b2 mediumblob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='G4' where id=1; -update noar ti set v0='G4' where id=1; -update noar tt set b0='XH6LPCWIBGE7U3AR' where id=1; -update noar ti set b0='XH6LPCWIBGE7U3AR' where id=1; -update noar tt set v0='MMKJLE2N6DP8' where id=1; -update noar ti set v0='MMKJLE2N6DP8' where id=1; -update noar tt set b1='AVXULQ6J9FP4MFR8IDCVEM7K8' where id=1; -update noar ti set b1='AVXULQ6J9FP4MFR8IDCVEM7K8' where id=1; -update noar tt set v0='VQJ' where id=1; -update noar ti set v0='VQJ' where id=1; -update noar tt set b2='LDWWWO36CLHH3L5H24QY2' where id=1; -update noar ti set b2='LDWWWO36CLHH3L5H24QY2' where id=1; -update noar tt set v0='03E1MHHYX6R49QGW6H7LYM6NUDKLE6' where id=2; -update noar ti set v0='03E1MHHYX6R49QGW6H7LYM6NUDKLE6' where id=2; -update noar tt set b0='3VN6K5WUEGSWEJY7245' where id=2; -update noar ti set b0='3VN6K5WUEGSWEJY7245' where id=2; -update noar tt set v0='9S7032YS8T4JCKJCUST9XJ5' where id=2; -update noar ti set v0='9S7032YS8T4JCKJCUST9XJ5' where id=2; -update noar tt set b1='6' where id=2; -update noar ti set b1='6' where id=2; -update noar tt set v0='0M7MZB' where id=2; -update noar ti set v0='0M7MZB' where id=2; -update noar tt set b2='28J2KK5LULHTNW' where id=2; -update noar ti set b2='28J2KK5LULHTNW' where id=2; -update noar tt set v0='GEAQPS0MZ3' where id=3; -update noar ti set v0='GEAQPS0MZ3' where id=3; -update noar tt set b0='IO6J' where id=3; -update noar ti set b0='IO6J' where id=3; -update noar tt set v0='4B1HER5' where id=3; -update noar ti set v0='4B1HER5' where id=3; -update noar tt set b1='RCGLKC3DBFLRT4XE5CTVEL3KKDR' where id=3; -update noar ti set b1='RCGLKC3DBFLRT4XE5CTVEL3KKDR' where id=3; -update noar tt set v0='RITASI9U8PUUZ380ERYUD5' where id=3; -update noar ti set v0='RITASI9U8PUUZ380ERYUD5' where id=3; -update noar tt set b2='8XEQG44B8U1K4U5RJ1' where id=3; -update noar ti set b2='8XEQG44B8U1K4U5RJ1' where id=3; -update noar tt set v0='MSS0S0VYE8NUX' where id=4; -update noar ti set v0='MSS0S0VYE8NUX' where id=4; -update noar tt set b0='L' where id=4; -update noar ti set b0='L' where id=4; -update noar tt set v0='1JS3WP30RW08VIPB' where id=4; -update noar ti set v0='1JS3WP30RW08VIPB' where id=4; -update noar tt set b1='VUC7XW6P' where id=4; -update noar ti set b1='VUC7XW6P' where id=4; -update noar tt set v0='J8GKS6C9NINBCJBSKNSP8UR4ODQ63S' where id=4; -update noar ti set v0='J8GKS6C9NINBCJBSKNSP8UR4ODQ63S' where id=4; -update noar tt set b2='MFDJ3WFZL6BIW4N' where id=4; -update noar ti set b2='MFDJ3WFZL6BIW4N' where id=4; -update noar tt set v0='HUPTWNX9D' where id=5; -update noar ti set v0='HUPTWNX9D' where id=5; -update noar tt set b0='0' where id=5; -update noar ti set b0='0' where id=5; -update noar tt set v0='9E1PA6K5TBTO3E' where id=5; -update noar ti set v0='9E1PA6K5TBTO3E' where id=5; -update noar tt set b1='TG5HB6BO0U8SBZUCC' where id=5; -update noar ti set b1='TG5HB6BO0U8SBZUCC' where id=5; -update noar tt set v0='Z0N1Z0TDQ551OX82R04B5CNP' where id=5; -update noar ti set v0='Z0N1Z0TDQ551OX82R04B5CNP' where id=5; -update noar tt set b2='YJW7SAQ' where id=5; -update noar ti set b2='YJW7SAQ' where id=5; -update noar tt set v0='5JN863S' where id=6; -update noar ti set v0='5JN863S' where id=6; -update noar tt set b0='G5419V4S4HPN8I45EOD01' where id=6; -update noar ti set b0='G5419V4S4HPN8I45EOD01' where id=6; -update noar tt set v0='A5JY24D06HBDSVT6CEJI95O4PY7V6' where id=6; -update noar ti set v0='A5JY24D06HBDSVT6CEJI95O4PY7V6' where id=6; -update noar tt set b1='BQH1023SCHEIP7VZ9CL' where id=6; -update noar ti set b1='BQH1023SCHEIP7VZ9CL' where id=6; -update noar tt set v0='4GMD35TKQS3GL5EXZD' where id=6; -update noar ti set v0='4GMD35TKQS3GL5EXZD' where id=6; -update noar tt set b2='U4' where id=6; -update noar ti set b2='U4' where id=6; -update noar tt set v0='YQY91HGT6CZXPZ6FS654PI222M5JN' where id=7; -update noar ti set v0='YQY91HGT6CZXPZ6FS654PI222M5JN' where id=7; -update noar tt set b0='OCS6' where id=7; -update noar ti set b0='OCS6' where id=7; -update noar tt set v0='O9OD4U5EBJ163500XCIGXLY16E0WZ5PG' where id=7; -update noar ti set v0='O9OD4U5EBJ163500XCIGXLY16E0WZ5PG' where id=7; -update noar tt set b1='M5TC854Z3OIMPUH7OY1BFMZZDA' where id=7; -update noar ti set b1='M5TC854Z3OIMPUH7OY1BFMZZDA' where id=7; -update noar tt set v0='XL814W' where id=7; -update noar ti set v0='XL814W' where id=7; -update noar tt set b2='VK0ET6BNDNTEAW2MHXH3EQNM0G' where id=7; -update noar ti set b2='VK0ET6BNDNTEAW2MHXH3EQNM0G' where id=7; -update noar tt set v0='P7F53' where id=8; -update noar ti set v0='P7F53' where id=8; -update noar tt set b0='5RYHDUJ06' where id=8; -update noar ti set b0='5RYHDUJ06' where id=8; -update noar tt set v0='5G4X0PNV1DF5YDXBI80FFIYJAB3T7' where id=8; -update noar ti set v0='5G4X0PNV1DF5YDXBI80FFIYJAB3T7' where id=8; -update noar tt set b1='2WF5UJ0FN150C' where id=8; -update noar ti set b1='2WF5UJ0FN150C' where id=8; -update noar tt set v0='6Q2HOPX09K3ZYJP18LZ5HW4W3HI6' where id=8; -update noar ti set v0='6Q2HOPX09K3ZYJP18LZ5HW4W3HI6' where id=8; -update noar tt set b2='86TITEDXSTRL1EJ7EK76X2Z9L72LI' where id=8; -update noar ti set b2='86TITEDXSTRL1EJ7EK76X2Z9L72LI' where id=8; -update noar tt set v0='4' where id=9; -update noar ti set v0='4' where id=9; -update noar tt set b0='LIZ6X7OOK1GBKH' where id=9; -update noar ti set b0='LIZ6X7OOK1GBKH' where id=9; -update noar tt set v0='9NHM1W' where id=9; -update noar ti set v0='9NHM1W' where id=9; -update noar tt set b1='EUSA3G4DCKIFBC79MHH' where id=9; -update noar ti set b1='EUSA3G4DCKIFBC79MHH' where id=9; -update noar tt set v0='6ZF0OC6RE7' where id=9; -update noar ti set v0='6ZF0OC6RE7' where id=9; -update noar tt set b2='W3CQ5DV9L5IYL5O46PRS7OOH' where id=9; -update noar ti set b2='W3CQ5DV9L5IYL5O46PRS7OOH' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -f0 int not null, -v0 varchar(32) not null, -b0 mediumblob not null, -b1 blob not null, -b2 mediumblob not null -) engine=tokudb; -insert into tt values (1,0,'','','',''); -insert into tt values (2,0,'','','',''); -insert into tt values (3,0,'','','',''); -insert into tt values (4,0,'','','',''); -insert into tt values (5,0,'','','',''); -insert into tt values (6,0,'','','',''); -insert into tt values (7,0,'','','',''); -insert into tt values (8,0,'','','',''); -insert into tt values (9,0,'','','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='7B8FQ73YEJGZHENXAJ43UG3ZWS' where id=1; -update noar ti set v0='7B8FQ73YEJGZHENXAJ43UG3ZWS' where id=1; -update noar tt set b0='C1XZECMEXQQ85MWO702HDNF42II' where id=1; -update noar ti set b0='C1XZECMEXQQ85MWO702HDNF42II' where id=1; -update noar tt set v0='NJ1O4XLSF8AK' where id=1; -update noar ti set v0='NJ1O4XLSF8AK' where id=1; -update noar tt set b1='UB1I471NRUS' where id=1; -update noar ti set b1='UB1I471NRUS' where id=1; -update noar tt set v0='TY2ASUFN9JITJKX673UE' where id=1; -update noar ti set v0='TY2ASUFN9JITJKX673UE' where id=1; -update noar tt set b2='0H2RIMLRBQHRHZK03MYDGDZJTZ' where id=1; -update noar ti set b2='0H2RIMLRBQHRHZK03MYDGDZJTZ' where id=1; -update noar tt set v0='3FGT69LXG0L9XYPA09562K' where id=2; -update noar ti set v0='3FGT69LXG0L9XYPA09562K' where id=2; -update noar tt set b0='24NWM5SYSH99NY6NFQYSMSLDFL4P' where id=2; -update noar ti set b0='24NWM5SYSH99NY6NFQYSMSLDFL4P' where id=2; -update noar tt set v0='SRRX01W2BP76FAXDO' where id=2; -update noar ti set v0='SRRX01W2BP76FAXDO' where id=2; -update noar tt set b1='XRKFA1V97JLR3YLEK9BT37866T7O' where id=2; -update noar ti set b1='XRKFA1V97JLR3YLEK9BT37866T7O' where id=2; -update noar tt set v0='XHBWXK2YDGJL8K34GPC6B2D24Z4H5T91' where id=2; -update noar ti set v0='XHBWXK2YDGJL8K34GPC6B2D24Z4H5T91' where id=2; -update noar tt set b2='V3GBL9VLPU' where id=2; -update noar ti set b2='V3GBL9VLPU' where id=2; -update noar tt set v0='65VU4N4740WRVHVLDHA1I3' where id=3; -update noar ti set v0='65VU4N4740WRVHVLDHA1I3' where id=3; -update noar tt set b0='NIZU7BVBJUWX' where id=3; -update noar ti set b0='NIZU7BVBJUWX' where id=3; -update noar tt set v0='3T8QAATEOX7RYZKGAAVWKGFKB2' where id=3; -update noar ti set v0='3T8QAATEOX7RYZKGAAVWKGFKB2' where id=3; -update noar tt set b1='LKIFY' where id=3; -update noar ti set b1='LKIFY' where id=3; -update noar tt set v0='2VE' where id=3; -update noar ti set v0='2VE' where id=3; -update noar tt set b2='23PKF53QJK07BFDEF0TTV5' where id=3; -update noar ti set b2='23PKF53QJK07BFDEF0TTV5' where id=3; -update noar tt set v0='77' where id=4; -update noar ti set v0='77' where id=4; -update noar tt set b0='XIHVIHJ3L4LF1B6ES3' where id=4; -update noar ti set b0='XIHVIHJ3L4LF1B6ES3' where id=4; -update noar tt set v0='SKAUW22O1639PDHUM1FEZT2TKN44KN6O' where id=4; -update noar ti set v0='SKAUW22O1639PDHUM1FEZT2TKN44KN6O' where id=4; -update noar tt set b1='YI23NFUNCOEW3DGYJ51PPBOX27H' where id=4; -update noar ti set b1='YI23NFUNCOEW3DGYJ51PPBOX27H' where id=4; -update noar tt set v0='CEBPYVVT9DKIFF7YR3X2HVQ9' where id=4; -update noar ti set v0='CEBPYVVT9DKIFF7YR3X2HVQ9' where id=4; -update noar tt set b2='W33XOOJ' where id=4; -update noar ti set b2='W33XOOJ' where id=4; -update noar tt set v0='DYQO4K9X81VBRDEL' where id=5; -update noar ti set v0='DYQO4K9X81VBRDEL' where id=5; -update noar tt set b0='MD1CAIOSPXH1EX3YQGIJ9C' where id=5; -update noar ti set b0='MD1CAIOSPXH1EX3YQGIJ9C' where id=5; -update noar tt set v0='CEYMXL' where id=5; -update noar ti set v0='CEYMXL' where id=5; -update noar tt set b1='1TKM9O70B' where id=5; -update noar ti set b1='1TKM9O70B' where id=5; -update noar tt set v0='D15WZM1ZZAJYEB7E5OCJ' where id=5; -update noar ti set v0='D15WZM1ZZAJYEB7E5OCJ' where id=5; -update noar tt set b2='02' where id=5; -update noar ti set b2='02' where id=5; -update noar tt set v0='ZMGH3HEHNCWOB73J69KS' where id=6; -update noar ti set v0='ZMGH3HEHNCWOB73J69KS' where id=6; -update noar tt set b0='6ZRSRCKXIFVT33H9009L2FVLV' where id=6; -update noar ti set b0='6ZRSRCKXIFVT33H9009L2FVLV' where id=6; -update noar tt set v0='TVMU0MUTHDP71DB9LO' where id=6; -update noar ti set v0='TVMU0MUTHDP71DB9LO' where id=6; -update noar tt set b1='BBQXANP967V1SJL04RFQ32Z5NNG4M1T' where id=6; -update noar ti set b1='BBQXANP967V1SJL04RFQ32Z5NNG4M1T' where id=6; -update noar tt set v0='CNY3METERU7LAQ' where id=6; -update noar ti set v0='CNY3METERU7LAQ' where id=6; -update noar tt set b2='8L7J1EA9I4' where id=6; -update noar ti set b2='8L7J1EA9I4' where id=6; -update noar tt set v0='BZYO0JBFR3C92Z5KTYLZ' where id=7; -update noar ti set v0='BZYO0JBFR3C92Z5KTYLZ' where id=7; -update noar tt set b0='RYA22F622D1NE7JA8Y62A0EK8' where id=7; -update noar ti set b0='RYA22F622D1NE7JA8Y62A0EK8' where id=7; -update noar tt set v0='A3BZKLMK7DDTK4V510NOH1GBRYSE9JJ' where id=7; -update noar ti set v0='A3BZKLMK7DDTK4V510NOH1GBRYSE9JJ' where id=7; -update noar tt set b1='EMVLE7F3J9W3HZRXZQRBRX' where id=7; -update noar ti set b1='EMVLE7F3J9W3HZRXZQRBRX' where id=7; -update noar tt set v0='K' where id=7; -update noar ti set v0='K' where id=7; -update noar tt set b2='LXAVN' where id=7; -update noar ti set b2='LXAVN' where id=7; -update noar tt set v0='K' where id=8; -update noar ti set v0='K' where id=8; -update noar tt set b0='80YAXMS7Z6' where id=8; -update noar ti set b0='80YAXMS7Z6' where id=8; -update noar tt set v0='00HV5QHL7BGDF7KK6' where id=8; -update noar ti set v0='00HV5QHL7BGDF7KK6' where id=8; -update noar tt set b1='94O3H18FPQ2JVDSXQ1FPO8IN7TK' where id=8; -update noar ti set b1='94O3H18FPQ2JVDSXQ1FPO8IN7TK' where id=8; -update noar tt set v0='YRF744QRP1QD1M' where id=8; -update noar ti set v0='YRF744QRP1QD1M' where id=8; -update noar tt set b2='A71EQS4QAL7N' where id=8; -update noar ti set b2='A71EQS4QAL7N' where id=8; -update noar tt set v0='A7OP6WTJTPCW35089J' where id=9; -update noar ti set v0='A7OP6WTJTPCW35089J' where id=9; -update noar tt set b0='T7HJ691SN1T7' where id=9; -update noar ti set b0='T7HJ691SN1T7' where id=9; -update noar tt set v0='XUYEHWRRDKMB00MC4' where id=9; -update noar ti set v0='XUYEHWRRDKMB00MC4' where id=9; -update noar tt set b1='F4BA1MN632ESHVT7NVD4ZIA4' where id=9; -update noar ti set b1='F4BA1MN632ESHVT7NVD4ZIA4' where id=9; -update noar tt set v0='YR4OIB04J3A9E7U2U' where id=9; -update noar ti set v0='YR4OIB04J3A9E7U2U' where id=9; -update noar tt set b2='8' where id=9; -update noar ti set b2='8' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -f0 int not null, -v0 varchar(256) not null, -b0 mediumblob not null, -b1 blob not null, -b2 mediumblob not null -) engine=tokudb; -insert into tt values (1,0,'','','',''); -insert into tt values (2,0,'','','',''); -insert into tt values (3,0,'','','',''); -insert into tt values (4,0,'','','',''); -insert into tt values (5,0,'','','',''); -insert into tt values (6,0,'','','',''); -insert into tt values (7,0,'','','',''); -insert into tt values (8,0,'','','',''); -insert into tt values (9,0,'','','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='7S14B59AS35GC' where id=1; -update noar ti set v0='7S14B59AS35GC' where id=1; -update noar tt set b0='KN8YTWFLVPSGN4JUXHGF9T8YE' where id=1; -update noar ti set b0='KN8YTWFLVPSGN4JUXHGF9T8YE' where id=1; -update noar tt set v0='Z3Z' where id=1; -update noar ti set v0='Z3Z' where id=1; -update noar tt set b1='24S6JMFII5HYNSI' where id=1; -update noar ti set b1='24S6JMFII5HYNSI' where id=1; -update noar tt set v0='WKS' where id=1; -update noar ti set v0='WKS' where id=1; -update noar tt set b2='1DHIDHUA8X1AEXYVAHM6X7Q' where id=1; -update noar ti set b2='1DHIDHUA8X1AEXYVAHM6X7Q' where id=1; -update noar tt set v0='OC9EXECYRG4FQ2V8R2J3WERD' where id=2; -update noar ti set v0='OC9EXECYRG4FQ2V8R2J3WERD' where id=2; -update noar tt set b0='EET6UW7Y3078K3H9J7' where id=2; -update noar ti set b0='EET6UW7Y3078K3H9J7' where id=2; -update noar tt set v0='FA8X2M9M' where id=2; -update noar ti set v0='FA8X2M9M' where id=2; -update noar tt set b1='G' where id=2; -update noar ti set b1='G' where id=2; -update noar tt set v0='7XR4CKJ6IFDD1UM25F7' where id=2; -update noar ti set v0='7XR4CKJ6IFDD1UM25F7' where id=2; -update noar tt set b2='MSL0FLBNQ6NE2PG839WDNLPK6O2ENW' where id=2; -update noar ti set b2='MSL0FLBNQ6NE2PG839WDNLPK6O2ENW' where id=2; -update noar tt set v0='WDJKZXXI4FE' where id=3; -update noar ti set v0='WDJKZXXI4FE' where id=3; -update noar tt set b0='OSXR6QWOSPHFF' where id=3; -update noar ti set b0='OSXR6QWOSPHFF' where id=3; -update noar tt set v0='USU3W' where id=3; -update noar ti set v0='USU3W' where id=3; -update noar tt set b1='VX' where id=3; -update noar ti set b1='VX' where id=3; -update noar tt set v0='ZCQG3VMYJ2CR4LSBUQW44' where id=3; -update noar ti set v0='ZCQG3VMYJ2CR4LSBUQW44' where id=3; -update noar tt set b2='FFVQG21R9JISEKPKADFIJZVZGEO5J3BW' where id=3; -update noar ti set b2='FFVQG21R9JISEKPKADFIJZVZGEO5J3BW' where id=3; -update noar tt set v0='3PGN5LMSE' where id=4; -update noar ti set v0='3PGN5LMSE' where id=4; -update noar tt set b0='F3JGST' where id=4; -update noar ti set b0='F3JGST' where id=4; -update noar tt set v0='6WFBZVU50BEDL5US0AHBR94E3TJ' where id=4; -update noar ti set v0='6WFBZVU50BEDL5US0AHBR94E3TJ' where id=4; -update noar tt set b1='4P9QMI8ND' where id=4; -update noar ti set b1='4P9QMI8ND' where id=4; -update noar tt set v0='QZ8VMGWFLML6MS0KXG6IR8VVIVI' where id=4; -update noar ti set v0='QZ8VMGWFLML6MS0KXG6IR8VVIVI' where id=4; -update noar tt set b2='B0AQGVNEIHKFC8GNLOTW' where id=4; -update noar ti set b2='B0AQGVNEIHKFC8GNLOTW' where id=4; -update noar tt set v0='ULWJ4O4GZPO74SQYVX5R2C' where id=5; -update noar ti set v0='ULWJ4O4GZPO74SQYVX5R2C' where id=5; -update noar tt set b0='B47P87GW7HGNCJ7Q6J1V4R3HAN0Z' where id=5; -update noar ti set b0='B47P87GW7HGNCJ7Q6J1V4R3HAN0Z' where id=5; -update noar tt set v0='SPIOZOFBJ751HYZK4GXY0WW' where id=5; -update noar ti set v0='SPIOZOFBJ751HYZK4GXY0WW' where id=5; -update noar tt set b1='7O0ZNTD787TSZ0S0KI3WMD4VBQ' where id=5; -update noar ti set b1='7O0ZNTD787TSZ0S0KI3WMD4VBQ' where id=5; -update noar tt set v0='3F' where id=5; -update noar ti set v0='3F' where id=5; -update noar tt set b2='MDU46LH5OILXALG4O89A' where id=5; -update noar ti set b2='MDU46LH5OILXALG4O89A' where id=5; -update noar tt set v0='GO87SKZD39NOF2VNSXW54ZRI8HFYLM' where id=6; -update noar ti set v0='GO87SKZD39NOF2VNSXW54ZRI8HFYLM' where id=6; -update noar tt set b0='1B299U729Y5GTU9XYQ6WKP' where id=6; -update noar ti set b0='1B299U729Y5GTU9XYQ6WKP' where id=6; -update noar tt set v0='3QL1SSQ3J8ILZ' where id=6; -update noar ti set v0='3QL1SSQ3J8ILZ' where id=6; -update noar tt set b1='YW5OI10T1UVD6N35JOGCB' where id=6; -update noar ti set b1='YW5OI10T1UVD6N35JOGCB' where id=6; -update noar tt set v0='M81OQ457829G5ODMAV7GP3XJWH' where id=6; -update noar ti set v0='M81OQ457829G5ODMAV7GP3XJWH' where id=6; -update noar tt set b2='207VU3YLGSE9KQ9GT7N14QYB0MWS' where id=6; -update noar ti set b2='207VU3YLGSE9KQ9GT7N14QYB0MWS' where id=6; -update noar tt set v0='3' where id=7; -update noar ti set v0='3' where id=7; -update noar tt set b0='IB' where id=7; -update noar ti set b0='IB' where id=7; -update noar tt set v0='DD58LRPU16LY' where id=7; -update noar ti set v0='DD58LRPU16LY' where id=7; -update noar tt set b1='6VHXF4Q2K7XYGSK' where id=7; -update noar ti set b1='6VHXF4Q2K7XYGSK' where id=7; -update noar tt set v0='IRF1JKPNFPIF0SX0BYB36M' where id=7; -update noar ti set v0='IRF1JKPNFPIF0SX0BYB36M' where id=7; -update noar tt set b2='TC875JYEI4I7ENIOCG' where id=7; -update noar ti set b2='TC875JYEI4I7ENIOCG' where id=7; -update noar tt set v0='V2A6AMVQ8H5EG' where id=8; -update noar ti set v0='V2A6AMVQ8H5EG' where id=8; -update noar tt set b0='D7P56RTHEZ96ERKIAGGNQN5KBFG3TN' where id=8; -update noar ti set b0='D7P56RTHEZ96ERKIAGGNQN5KBFG3TN' where id=8; -update noar tt set v0='XC0Y8RA39VRI418' where id=8; -update noar ti set v0='XC0Y8RA39VRI418' where id=8; -update noar tt set b1='TB2IRT9CGTZSKFLOBHZZXRO0K' where id=8; -update noar ti set b1='TB2IRT9CGTZSKFLOBHZZXRO0K' where id=8; -update noar tt set v0='IGFJQ148M4ORWD' where id=8; -update noar ti set v0='IGFJQ148M4ORWD' where id=8; -update noar tt set b2='EQUEHWHEOUSTB1J0NEZ35MK9Z8NSJUU6' where id=8; -update noar ti set b2='EQUEHWHEOUSTB1J0NEZ35MK9Z8NSJUU6' where id=8; -update noar tt set v0='H8L4A07GPSM3R2TTS5GIQMZ8' where id=9; -update noar ti set v0='H8L4A07GPSM3R2TTS5GIQMZ8' where id=9; -update noar tt set b0='B33HHKKYZ11VOCLB9XKBKZD' where id=9; -update noar ti set b0='B33HHKKYZ11VOCLB9XKBKZD' where id=9; -update noar tt set v0='W0XDM4A9WI9MGZFSMG' where id=9; -update noar ti set v0='W0XDM4A9WI9MGZFSMG' where id=9; -update noar tt set b1='OKMDTPM' where id=9; -update noar ti set b1='OKMDTPM' where id=9; -update noar tt set v0='2FYVQD4MBNK3X1N994' where id=9; -update noar ti set v0='2FYVQD4MBNK3X1N994' where id=9; -update noar tt set b2='6WS7B7Y6QIOZWUML6IG899IWARPWY' where id=9; -update noar ti set b2='6WS7B7Y6QIOZWUML6IG899IWARPWY' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -f0 int null, -v0 varchar(32) null, -b0 mediumblob null, -b1 blob null, -b2 longblob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='8UR9KRLJLDKXKC' where id=1; -update noar ti set v0='8UR9KRLJLDKXKC' where id=1; -update noar tt set b0='IW2PDF5NKZA2S7DBB1Q' where id=1; -update noar ti set b0='IW2PDF5NKZA2S7DBB1Q' where id=1; -update noar tt set v0='80OU09IVF5YC9631JHKUOX4T0' where id=1; -update noar ti set v0='80OU09IVF5YC9631JHKUOX4T0' where id=1; -update noar tt set b1='1E6JDLVULNGIADOIRV2YS7E' where id=1; -update noar ti set b1='1E6JDLVULNGIADOIRV2YS7E' where id=1; -update noar tt set v0='478YRFWB761UFCQ8Q4RC6US3NV1ZG' where id=1; -update noar ti set v0='478YRFWB761UFCQ8Q4RC6US3NV1ZG' where id=1; -update noar tt set b2='L' where id=1; -update noar ti set b2='L' where id=1; -update noar tt set v0='VG7JMSSA40PC8QIRIDFZZE2FPEDHM7' where id=2; -update noar ti set v0='VG7JMSSA40PC8QIRIDFZZE2FPEDHM7' where id=2; -update noar tt set b0='JSWRJFOCTCBQ5KCD1H' where id=2; -update noar ti set b0='JSWRJFOCTCBQ5KCD1H' where id=2; -update noar tt set v0='FCGDWNEQH8JWZAHKBM' where id=2; -update noar ti set v0='FCGDWNEQH8JWZAHKBM' where id=2; -update noar tt set b1='Q48G07O10R8PXLI' where id=2; -update noar ti set b1='Q48G07O10R8PXLI' where id=2; -update noar tt set v0='9MK7ZXQA11TBMX0W73X118YE' where id=2; -update noar ti set v0='9MK7ZXQA11TBMX0W73X118YE' where id=2; -update noar tt set b2='C6941HH7MM7H0K6QFR5Y' where id=2; -update noar ti set b2='C6941HH7MM7H0K6QFR5Y' where id=2; -update noar tt set v0='GKNZ' where id=3; -update noar ti set v0='GKNZ' where id=3; -update noar tt set b0='EV5RZK5WMXJ7MC96C7L' where id=3; -update noar ti set b0='EV5RZK5WMXJ7MC96C7L' where id=3; -update noar tt set v0='6M7NBNE5IXGW981NCUH1THKFVJTXHO' where id=3; -update noar ti set v0='6M7NBNE5IXGW981NCUH1THKFVJTXHO' where id=3; -update noar tt set b1='2G3BXPL43AYT' where id=3; -update noar ti set b1='2G3BXPL43AYT' where id=3; -update noar tt set v0='1C361A31AHEV5SI6QZO47VXDTBKFD03' where id=3; -update noar ti set v0='1C361A31AHEV5SI6QZO47VXDTBKFD03' where id=3; -update noar tt set b2='3NCH' where id=3; -update noar ti set b2='3NCH' where id=3; -update noar tt set v0='497S15D5IBFH1JAOPY4KKFIUEK' where id=4; -update noar ti set v0='497S15D5IBFH1JAOPY4KKFIUEK' where id=4; -update noar tt set b0='FH' where id=4; -update noar ti set b0='FH' where id=4; -update noar tt set v0='WPZASKJ0GKT3R9YRCUM4WLYY2MG' where id=4; -update noar ti set v0='WPZASKJ0GKT3R9YRCUM4WLYY2MG' where id=4; -update noar tt set b1='F31K3A4HQP9AWPSH2Z28XAA7JYUR' where id=4; -update noar ti set b1='F31K3A4HQP9AWPSH2Z28XAA7JYUR' where id=4; -update noar tt set v0='48X3SY' where id=4; -update noar ti set v0='48X3SY' where id=4; -update noar tt set b2='D1W1JDMTTX3YPW96OODLDJK' where id=4; -update noar ti set b2='D1W1JDMTTX3YPW96OODLDJK' where id=4; -update noar tt set v0='CWVELQR6UGSHBWXL9X94R7W54ZIM8D' where id=5; -update noar ti set v0='CWVELQR6UGSHBWXL9X94R7W54ZIM8D' where id=5; -update noar tt set b0='N2NFABMYWYW2U8SHQ7LQ2JQSUFC' where id=5; -update noar ti set b0='N2NFABMYWYW2U8SHQ7LQ2JQSUFC' where id=5; -update noar tt set v0='B1L' where id=5; -update noar ti set v0='B1L' where id=5; -update noar tt set b1='1CS7NV5YO05SWF' where id=5; -update noar ti set b1='1CS7NV5YO05SWF' where id=5; -update noar tt set v0='ZPZIA8HUB8WAKF5LKB1V0KS' where id=5; -update noar ti set v0='ZPZIA8HUB8WAKF5LKB1V0KS' where id=5; -update noar tt set b2='1BM6MLZHYFJC9P7E58WC' where id=5; -update noar ti set b2='1BM6MLZHYFJC9P7E58WC' where id=5; -update noar tt set v0='TUO29W31B8XINLH' where id=6; -update noar ti set v0='TUO29W31B8XINLH' where id=6; -update noar tt set b0='GQ531HW8F82O6' where id=6; -update noar ti set b0='GQ531HW8F82O6' where id=6; -update noar tt set v0='IA' where id=6; -update noar ti set v0='IA' where id=6; -update noar tt set b1='B33DK98SAWJHKFL1YVGFWM' where id=6; -update noar ti set b1='B33DK98SAWJHKFL1YVGFWM' where id=6; -update noar tt set v0='TV4GKDE9H1OBU' where id=6; -update noar ti set v0='TV4GKDE9H1OBU' where id=6; -update noar tt set b2='6AOTB3AERUJC92K2LOKK' where id=6; -update noar ti set b2='6AOTB3AERUJC92K2LOKK' where id=6; -update noar tt set v0='MD6UNO940OBMWIF6NSE2A8V9EL' where id=7; -update noar ti set v0='MD6UNO940OBMWIF6NSE2A8V9EL' where id=7; -update noar tt set b0='QQL13XE45GBT1TQ2MWIAIB' where id=7; -update noar ti set b0='QQL13XE45GBT1TQ2MWIAIB' where id=7; -update noar tt set v0='EI' where id=7; -update noar ti set v0='EI' where id=7; -update noar tt set b1='RNM652MLJZT0' where id=7; -update noar ti set b1='RNM652MLJZT0' where id=7; -update noar tt set v0='FQYKNTX3A9GKZ5SPC19AXYUCPV' where id=7; -update noar ti set v0='FQYKNTX3A9GKZ5SPC19AXYUCPV' where id=7; -update noar tt set b2='JNNOHSDRG64OXE0OB' where id=7; -update noar ti set b2='JNNOHSDRG64OXE0OB' where id=7; -update noar tt set v0='2HZDFN8KN6PM61FR3A2' where id=8; -update noar ti set v0='2HZDFN8KN6PM61FR3A2' where id=8; -update noar tt set b0='2' where id=8; -update noar ti set b0='2' where id=8; -update noar tt set v0='P51974RMYC4L7HHQMQKDKM8JHHQGUP' where id=8; -update noar ti set v0='P51974RMYC4L7HHQMQKDKM8JHHQGUP' where id=8; -update noar tt set b1='M' where id=8; -update noar ti set b1='M' where id=8; -update noar tt set v0='HGOO5962UPC2X3V' where id=8; -update noar ti set v0='HGOO5962UPC2X3V' where id=8; -update noar tt set b2='A52KYQ50PN0' where id=8; -update noar ti set b2='A52KYQ50PN0' where id=8; -update noar tt set v0='J073' where id=9; -update noar ti set v0='J073' where id=9; -update noar tt set b0='N544CFIGEXJSF0TT6M67KERQ69FQNY1' where id=9; -update noar ti set b0='N544CFIGEXJSF0TT6M67KERQ69FQNY1' where id=9; -update noar tt set v0='OIZK769PG' where id=9; -update noar ti set v0='OIZK769PG' where id=9; -update noar tt set b1='KJM0MPAE2BY205YCVEENTT6TNFR1' where id=9; -update noar ti set b1='KJM0MPAE2BY205YCVEENTT6TNFR1' where id=9; -update noar tt set v0='2G6NVTY6AC0U0M9GRVB1NSZ62GC2NK' where id=9; -update noar ti set v0='2G6NVTY6AC0U0M9GRVB1NSZ62GC2NK' where id=9; -update noar tt set b2='79P1V68U0' where id=9; -update noar ti set b2='79P1V68U0' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -f0 int null, -v0 varchar(256) null, -b0 mediumblob null, -b1 blob null, -b2 longblob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='ISR9WXX6PGU' where id=1; -update noar ti set v0='ISR9WXX6PGU' where id=1; -update noar tt set b0='8Z1N0UMH54VIAAKXUQOMQ3' where id=1; -update noar ti set b0='8Z1N0UMH54VIAAKXUQOMQ3' where id=1; -update noar tt set v0='9JYGYBM' where id=1; -update noar ti set v0='9JYGYBM' where id=1; -update noar tt set b1='OGVAZSKD2' where id=1; -update noar ti set b1='OGVAZSKD2' where id=1; -update noar tt set v0='WNJS0UUMDUA7GANHY6HM6OL6C5LZ' where id=1; -update noar ti set v0='WNJS0UUMDUA7GANHY6HM6OL6C5LZ' where id=1; -update noar tt set b2='S32' where id=1; -update noar ti set b2='S32' where id=1; -update noar tt set v0='I2J0STKJAZDOVQH4QZ27PR6T8' where id=2; -update noar ti set v0='I2J0STKJAZDOVQH4QZ27PR6T8' where id=2; -update noar tt set b0='NKVX1YV7F20DRRGY' where id=2; -update noar ti set b0='NKVX1YV7F20DRRGY' where id=2; -update noar tt set v0='92T1NMQ78Q5OAMG9' where id=2; -update noar ti set v0='92T1NMQ78Q5OAMG9' where id=2; -update noar tt set b1='U36L4WFXYIJQRPN7TJ71F1' where id=2; -update noar ti set b1='U36L4WFXYIJQRPN7TJ71F1' where id=2; -update noar tt set v0='VYOZ88ZMKKRABK0VBP0' where id=2; -update noar ti set v0='VYOZ88ZMKKRABK0VBP0' where id=2; -update noar tt set b2='HGJ1H6PW0J24CGMP1DHSZ24BYI49R' where id=2; -update noar ti set b2='HGJ1H6PW0J24CGMP1DHSZ24BYI49R' where id=2; -update noar tt set v0='SS7BOL6H7N0XCR4SFVA2Z94NVP40E' where id=3; -update noar ti set v0='SS7BOL6H7N0XCR4SFVA2Z94NVP40E' where id=3; -update noar tt set b0='4ZE1WNY0JQMNRASFYM4HL6' where id=3; -update noar ti set b0='4ZE1WNY0JQMNRASFYM4HL6' where id=3; -update noar tt set v0='J7QNHGSIAGQFK8MUAKU530FLS5Q47GL' where id=3; -update noar ti set v0='J7QNHGSIAGQFK8MUAKU530FLS5Q47GL' where id=3; -update noar tt set b1='PC6BA9R5LLFR3GUDH' where id=3; -update noar ti set b1='PC6BA9R5LLFR3GUDH' where id=3; -update noar tt set v0='P4926J2FC3PIZPATF9Q8WA8CKB' where id=3; -update noar ti set v0='P4926J2FC3PIZPATF9Q8WA8CKB' where id=3; -update noar tt set b2='S15' where id=3; -update noar ti set b2='S15' where id=3; -update noar tt set v0='L7YR' where id=4; -update noar ti set v0='L7YR' where id=4; -update noar tt set b0='SP35PUJV65' where id=4; -update noar ti set b0='SP35PUJV65' where id=4; -update noar tt set v0='9' where id=4; -update noar ti set v0='9' where id=4; -update noar tt set b1='VH9EZQ4JNE' where id=4; -update noar ti set b1='VH9EZQ4JNE' where id=4; -update noar tt set v0='YFJNI1D' where id=4; -update noar ti set v0='YFJNI1D' where id=4; -update noar tt set b2='L79RVMADYMG3ZB1FYIMM' where id=4; -update noar ti set b2='L79RVMADYMG3ZB1FYIMM' where id=4; -update noar tt set v0='H4QSO5PO546ZL6L' where id=5; -update noar ti set v0='H4QSO5PO546ZL6L' where id=5; -update noar tt set b0='DRWAD8MAYLAOXBTPCMPQZR87' where id=5; -update noar ti set b0='DRWAD8MAYLAOXBTPCMPQZR87' where id=5; -update noar tt set v0='XR0OCXAGQR' where id=5; -update noar ti set v0='XR0OCXAGQR' where id=5; -update noar tt set b1='SDQUEK7CI1DZ8AWS1TW' where id=5; -update noar ti set b1='SDQUEK7CI1DZ8AWS1TW' where id=5; -update noar tt set v0='PJ6D3SK79R8LRTU0' where id=5; -update noar ti set v0='PJ6D3SK79R8LRTU0' where id=5; -update noar tt set b2='RV2AEIERE7' where id=5; -update noar ti set b2='RV2AEIERE7' where id=5; -update noar tt set v0='Y1NB36ESX4AVRM2TW6N' where id=6; -update noar ti set v0='Y1NB36ESX4AVRM2TW6N' where id=6; -update noar tt set b0='FZBOACYRVYUE3P9AAY' where id=6; -update noar ti set b0='FZBOACYRVYUE3P9AAY' where id=6; -update noar tt set v0='IDCAQXXEEDIVD1RNS61G01GYYNNB' where id=6; -update noar ti set v0='IDCAQXXEEDIVD1RNS61G01GYYNNB' where id=6; -update noar tt set b1='4X3OUQ8NFKW45PMYD4' where id=6; -update noar ti set b1='4X3OUQ8NFKW45PMYD4' where id=6; -update noar tt set v0='RTU5J32' where id=6; -update noar ti set v0='RTU5J32' where id=6; -update noar tt set b2='0N' where id=6; -update noar ti set b2='0N' where id=6; -update noar tt set v0='ZZNVIX3IHKY3FOV1LV6AQ' where id=7; -update noar ti set v0='ZZNVIX3IHKY3FOV1LV6AQ' where id=7; -update noar tt set b0='HME4D4PV12W9NAE' where id=7; -update noar ti set b0='HME4D4PV12W9NAE' where id=7; -update noar tt set v0='I40IIF6SJP' where id=7; -update noar ti set v0='I40IIF6SJP' where id=7; -update noar tt set b1='5FDYKBU' where id=7; -update noar ti set b1='5FDYKBU' where id=7; -update noar tt set v0='HMFGH' where id=7; -update noar ti set v0='HMFGH' where id=7; -update noar tt set b2='M2KA7GDORAC' where id=7; -update noar ti set b2='M2KA7GDORAC' where id=7; -update noar tt set v0='43I' where id=8; -update noar ti set v0='43I' where id=8; -update noar tt set b0='LAIWPXQITAO5D4ZJ' where id=8; -update noar ti set b0='LAIWPXQITAO5D4ZJ' where id=8; -update noar tt set v0='RR6W70RXF9H75ILON9NOWNCUQ7H7D2JV' where id=8; -update noar ti set v0='RR6W70RXF9H75ILON9NOWNCUQ7H7D2JV' where id=8; -update noar tt set b1='1R0JD6888CXA2LXO6IQBF0YBODMGKE' where id=8; -update noar ti set b1='1R0JD6888CXA2LXO6IQBF0YBODMGKE' where id=8; -update noar tt set v0='OKI77PW8XCTR' where id=8; -update noar ti set v0='OKI77PW8XCTR' where id=8; -update noar tt set b2='PQJ0CM1LNWYCS27' where id=8; -update noar ti set b2='PQJ0CM1LNWYCS27' where id=8; -update noar tt set v0='JO7I' where id=9; -update noar ti set v0='JO7I' where id=9; -update noar tt set b0='YCQ8SU2E' where id=9; -update noar ti set b0='YCQ8SU2E' where id=9; -update noar tt set v0='PA' where id=9; -update noar ti set v0='PA' where id=9; -update noar tt set b1='NXH2QQTC9XAM' where id=9; -update noar ti set b1='NXH2QQTC9XAM' where id=9; -update noar tt set v0='SCCAESY87D4S3' where id=9; -update noar ti set v0='SCCAESY87D4S3' where id=9; -update noar tt set b2='G' where id=9; -update noar ti set b2='G' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -f0 int not null, -v0 varchar(32) not null, -b0 mediumblob not null, -b1 blob not null, -b2 longblob not null -) engine=tokudb; -insert into tt values (1,0,'','','',''); -insert into tt values (2,0,'','','',''); -insert into tt values (3,0,'','','',''); -insert into tt values (4,0,'','','',''); -insert into tt values (5,0,'','','',''); -insert into tt values (6,0,'','','',''); -insert into tt values (7,0,'','','',''); -insert into tt values (8,0,'','','',''); -insert into tt values (9,0,'','','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='VD7WAWF5C6G' where id=1; -update noar ti set v0='VD7WAWF5C6G' where id=1; -update noar tt set b0='O95PK0VNM' where id=1; -update noar ti set b0='O95PK0VNM' where id=1; -update noar tt set v0='QDPE7AEOVBU6Z' where id=1; -update noar ti set v0='QDPE7AEOVBU6Z' where id=1; -update noar tt set b1='ZQ4FMANLXB5Y855V1AF' where id=1; -update noar ti set b1='ZQ4FMANLXB5Y855V1AF' where id=1; -update noar tt set v0='H3D9RLUKCKYF025WX9' where id=1; -update noar ti set v0='H3D9RLUKCKYF025WX9' where id=1; -update noar tt set b2='ARO6CR3VN014A5GOFL7LHPG' where id=1; -update noar ti set b2='ARO6CR3VN014A5GOFL7LHPG' where id=1; -update noar tt set v0='CJCYJPILO9MZRY50SJUG0U5X58HE7Z' where id=2; -update noar ti set v0='CJCYJPILO9MZRY50SJUG0U5X58HE7Z' where id=2; -update noar tt set b0='1EI48IYTSQJKWDO44NHHCWAZ' where id=2; -update noar ti set b0='1EI48IYTSQJKWDO44NHHCWAZ' where id=2; -update noar tt set v0='YFCS3I8' where id=2; -update noar ti set v0='YFCS3I8' where id=2; -update noar tt set b1='2R2834D4' where id=2; -update noar ti set b1='2R2834D4' where id=2; -update noar tt set v0='0XY6JB8S1OO29KEHS' where id=2; -update noar ti set v0='0XY6JB8S1OO29KEHS' where id=2; -update noar tt set b2='2IWV' where id=2; -update noar ti set b2='2IWV' where id=2; -update noar tt set v0='DR' where id=3; -update noar ti set v0='DR' where id=3; -update noar tt set b0='RJBOW44WMWY0WFW1TUD5IMARS80JF' where id=3; -update noar ti set b0='RJBOW44WMWY0WFW1TUD5IMARS80JF' where id=3; -update noar tt set v0='4CR5FYWLN9CMXRLJKA0' where id=3; -update noar ti set v0='4CR5FYWLN9CMXRLJKA0' where id=3; -update noar tt set b1='3U69SZ0S' where id=3; -update noar ti set b1='3U69SZ0S' where id=3; -update noar tt set v0='7M4Y6EK4SSO7N4AY5U3CR' where id=3; -update noar ti set v0='7M4Y6EK4SSO7N4AY5U3CR' where id=3; -update noar tt set b2='LNHK3' where id=3; -update noar ti set b2='LNHK3' where id=3; -update noar tt set v0='LSP3TLSF6Z37YH2ZF120' where id=4; -update noar ti set v0='LSP3TLSF6Z37YH2ZF120' where id=4; -update noar tt set b0='6FGS1V8NEKK9L39Z' where id=4; -update noar ti set b0='6FGS1V8NEKK9L39Z' where id=4; -update noar tt set v0='AG7MFQ5IN8R222D3LQDNHJY9O32' where id=4; -update noar ti set v0='AG7MFQ5IN8R222D3LQDNHJY9O32' where id=4; -update noar tt set b1='AL746MG0288QOKRB8RW2M7357WC6QYA9' where id=4; -update noar ti set b1='AL746MG0288QOKRB8RW2M7357WC6QYA9' where id=4; -update noar tt set v0='4DMC1NZUB' where id=4; -update noar ti set v0='4DMC1NZUB' where id=4; -update noar tt set b2='ZBDVCHEKYI6VLCHX7ZLGXH' where id=4; -update noar ti set b2='ZBDVCHEKYI6VLCHX7ZLGXH' where id=4; -update noar tt set v0='JEKN0W6GBF59W53' where id=5; -update noar ti set v0='JEKN0W6GBF59W53' where id=5; -update noar tt set b0='4RU0T9T14WSI7S841BV8694YA7' where id=5; -update noar ti set b0='4RU0T9T14WSI7S841BV8694YA7' where id=5; -update noar tt set v0='AQADRD6YU4RGFD4899I7M' where id=5; -update noar ti set v0='AQADRD6YU4RGFD4899I7M' where id=5; -update noar tt set b1='20MBDRFOACOWLIZ' where id=5; -update noar ti set b1='20MBDRFOACOWLIZ' where id=5; -update noar tt set v0='EDGI' where id=5; -update noar ti set v0='EDGI' where id=5; -update noar tt set b2='TA4YTJGKOQN6CIQA49X9FFUY8IXC' where id=5; -update noar ti set b2='TA4YTJGKOQN6CIQA49X9FFUY8IXC' where id=5; -update noar tt set v0='D7CFZ3PP9S8MURGG' where id=6; -update noar ti set v0='D7CFZ3PP9S8MURGG' where id=6; -update noar tt set b0='FY' where id=6; -update noar ti set b0='FY' where id=6; -update noar tt set v0='3X' where id=6; -update noar ti set v0='3X' where id=6; -update noar tt set b1='EX7K7L9Q4LNLT944LDWDWAGCD' where id=6; -update noar ti set b1='EX7K7L9Q4LNLT944LDWDWAGCD' where id=6; -update noar tt set v0='DLFF2' where id=6; -update noar ti set v0='DLFF2' where id=6; -update noar tt set b2='PKMDA5WKSBGGD4CUVVOSVM9JRAOW4BXY' where id=6; -update noar ti set b2='PKMDA5WKSBGGD4CUVVOSVM9JRAOW4BXY' where id=6; -update noar tt set v0='3YDOUK5PQEKI' where id=7; -update noar ti set v0='3YDOUK5PQEKI' where id=7; -update noar tt set b0='F81H5' where id=7; -update noar ti set b0='F81H5' where id=7; -update noar tt set v0='HQH2IT47QD504WDSK' where id=7; -update noar ti set v0='HQH2IT47QD504WDSK' where id=7; -update noar tt set b1='N21JBYFT2IXHNRTJP' where id=7; -update noar ti set b1='N21JBYFT2IXHNRTJP' where id=7; -update noar tt set v0='E45RH1HPDH' where id=7; -update noar ti set v0='E45RH1HPDH' where id=7; -update noar tt set b2='QC51ET4L8' where id=7; -update noar ti set b2='QC51ET4L8' where id=7; -update noar tt set v0='AE9697VORYRR' where id=8; -update noar ti set v0='AE9697VORYRR' where id=8; -update noar tt set b0='6W3B5EMV845MUC' where id=8; -update noar ti set b0='6W3B5EMV845MUC' where id=8; -update noar tt set v0='39LIRV' where id=8; -update noar ti set v0='39LIRV' where id=8; -update noar tt set b1='F2TGHWC9IUTHIL' where id=8; -update noar ti set b1='F2TGHWC9IUTHIL' where id=8; -update noar tt set v0='1OR38' where id=8; -update noar ti set v0='1OR38' where id=8; -update noar tt set b2='7926KICTICTAQ' where id=8; -update noar ti set b2='7926KICTICTAQ' where id=8; -update noar tt set v0='0TF27LTHCH' where id=9; -update noar ti set v0='0TF27LTHCH' where id=9; -update noar tt set b0='0YT1FR6DG1PN' where id=9; -update noar ti set b0='0YT1FR6DG1PN' where id=9; -update noar tt set v0='VFUBV8HGHYSZL' where id=9; -update noar ti set v0='VFUBV8HGHYSZL' where id=9; -update noar tt set b1='UJG27D3FH66WZ4GKUEOJ11Y428IFEA' where id=9; -update noar ti set b1='UJG27D3FH66WZ4GKUEOJ11Y428IFEA' where id=9; -update noar tt set v0='TXSHQ3DV30YXDF' where id=9; -update noar ti set v0='TXSHQ3DV30YXDF' where id=9; -update noar tt set b2='YORRUYO6JI5ZF4UG' where id=9; -update noar ti set b2='YORRUYO6JI5ZF4UG' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -f0 int not null, -v0 varchar(256) not null, -b0 mediumblob not null, -b1 blob not null, -b2 longblob not null -) engine=tokudb; -insert into tt values (1,0,'','','',''); -insert into tt values (2,0,'','','',''); -insert into tt values (3,0,'','','',''); -insert into tt values (4,0,'','','',''); -insert into tt values (5,0,'','','',''); -insert into tt values (6,0,'','','',''); -insert into tt values (7,0,'','','',''); -insert into tt values (8,0,'','','',''); -insert into tt values (9,0,'','','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='19' where id=1; -update noar ti set v0='19' where id=1; -update noar tt set b0='C2QZ683CFXPUROG1HQHO' where id=1; -update noar ti set b0='C2QZ683CFXPUROG1HQHO' where id=1; -update noar tt set v0='KN' where id=1; -update noar ti set v0='KN' where id=1; -update noar tt set b1='8VGPX' where id=1; -update noar ti set b1='8VGPX' where id=1; -update noar tt set v0='43N1QXPY' where id=1; -update noar ti set v0='43N1QXPY' where id=1; -update noar tt set b2='3YIFUB1YGDBS0UA80A3RIC' where id=1; -update noar ti set b2='3YIFUB1YGDBS0UA80A3RIC' where id=1; -update noar tt set v0='R4GK5749SGL8EGKKR4WVB0IL2OBCIN' where id=2; -update noar ti set v0='R4GK5749SGL8EGKKR4WVB0IL2OBCIN' where id=2; -update noar tt set b0='S8LGZE3' where id=2; -update noar ti set b0='S8LGZE3' where id=2; -update noar tt set v0='2JS1K263R0N6HHBDG1Q7T8FHDLL8OG4H' where id=2; -update noar ti set v0='2JS1K263R0N6HHBDG1Q7T8FHDLL8OG4H' where id=2; -update noar tt set b1='59BU1KWHY510' where id=2; -update noar ti set b1='59BU1KWHY510' where id=2; -update noar tt set v0='QMMAY4Q8T5LGSJKYGQ48IY' where id=2; -update noar ti set v0='QMMAY4Q8T5LGSJKYGQ48IY' where id=2; -update noar tt set b2='IZU3RP3LEMKU0CI0ABR4XTI' where id=2; -update noar ti set b2='IZU3RP3LEMKU0CI0ABR4XTI' where id=2; -update noar tt set v0='5PAE9QOX5X7SZ3CA1M' where id=3; -update noar ti set v0='5PAE9QOX5X7SZ3CA1M' where id=3; -update noar tt set b0='YHNAYVGCR3F8Z3CY821SP05ZJHL25QRR' where id=3; -update noar ti set b0='YHNAYVGCR3F8Z3CY821SP05ZJHL25QRR' where id=3; -update noar tt set v0='PW45QZ84VAOEB5' where id=3; -update noar ti set v0='PW45QZ84VAOEB5' where id=3; -update noar tt set b1='E4RQJFBYQ3VFBKUDRCFZBP7FK0IB8SYD' where id=3; -update noar ti set b1='E4RQJFBYQ3VFBKUDRCFZBP7FK0IB8SYD' where id=3; -update noar tt set v0='87ZN2J1T' where id=3; -update noar ti set v0='87ZN2J1T' where id=3; -update noar tt set b2='SCOUDZA80CUGIJQW49XANU3' where id=3; -update noar ti set b2='SCOUDZA80CUGIJQW49XANU3' where id=3; -update noar tt set v0='FUQNGO75RVANVB3O' where id=4; -update noar ti set v0='FUQNGO75RVANVB3O' where id=4; -update noar tt set b0='T4QKEBFD0OS8BFA53K9X6EOPH7B82' where id=4; -update noar ti set b0='T4QKEBFD0OS8BFA53K9X6EOPH7B82' where id=4; -update noar tt set v0='JF6X1U2MR6C6LZ3EP569W0OC21YHA19M' where id=4; -update noar ti set v0='JF6X1U2MR6C6LZ3EP569W0OC21YHA19M' where id=4; -update noar tt set b1='1EJVK328XZ7EAIL4X' where id=4; -update noar ti set b1='1EJVK328XZ7EAIL4X' where id=4; -update noar tt set v0='N4818DGUKV1C3GJC897KQ' where id=4; -update noar ti set v0='N4818DGUKV1C3GJC897KQ' where id=4; -update noar tt set b2='LJR2YPSN' where id=4; -update noar ti set b2='LJR2YPSN' where id=4; -update noar tt set v0='CL0LEIE' where id=5; -update noar ti set v0='CL0LEIE' where id=5; -update noar tt set b0='9G34WG2V70UNP3YBKHA6I8' where id=5; -update noar ti set b0='9G34WG2V70UNP3YBKHA6I8' where id=5; -update noar tt set v0='OWJ20FBL9PX4ZFPEN60EN3MDS2NXCR1' where id=5; -update noar ti set v0='OWJ20FBL9PX4ZFPEN60EN3MDS2NXCR1' where id=5; -update noar tt set b1='MF7DUEU0' where id=5; -update noar ti set b1='MF7DUEU0' where id=5; -update noar tt set v0='VV1UTXQYHZ7R635465K9' where id=5; -update noar ti set v0='VV1UTXQYHZ7R635465K9' where id=5; -update noar tt set b2='O1D35TXQ5YNEAJ7M5ITY3' where id=5; -update noar ti set b2='O1D35TXQ5YNEAJ7M5ITY3' where id=5; -update noar tt set v0='X62KI1TYN' where id=6; -update noar ti set v0='X62KI1TYN' where id=6; -update noar tt set b0='Y1OWRRGO' where id=6; -update noar ti set b0='Y1OWRRGO' where id=6; -update noar tt set v0='W1JJ8LPN0' where id=6; -update noar ti set v0='W1JJ8LPN0' where id=6; -update noar tt set b1='7VHUJINYF0ZARR5E' where id=6; -update noar ti set b1='7VHUJINYF0ZARR5E' where id=6; -update noar tt set v0='J9GI8U4EKMSGF4L' where id=6; -update noar ti set v0='J9GI8U4EKMSGF4L' where id=6; -update noar tt set b2='VMH9TY2NQXWO1LBXP8SWFEG3868KG8CM' where id=6; -update noar ti set b2='VMH9TY2NQXWO1LBXP8SWFEG3868KG8CM' where id=6; -update noar tt set v0='CS5A452FYDFMFIAOGOS4G0VW7L' where id=7; -update noar ti set v0='CS5A452FYDFMFIAOGOS4G0VW7L' where id=7; -update noar tt set b0='QXR' where id=7; -update noar ti set b0='QXR' where id=7; -update noar tt set v0='6WM2FXV9DGRO3A' where id=7; -update noar ti set v0='6WM2FXV9DGRO3A' where id=7; -update noar tt set b1='HVPB41MWF' where id=7; -update noar ti set b1='HVPB41MWF' where id=7; -update noar tt set v0='243B0JW6WZRN26AZXR9098' where id=7; -update noar ti set v0='243B0JW6WZRN26AZXR9098' where id=7; -update noar tt set b2='7MKD' where id=7; -update noar ti set b2='7MKD' where id=7; -update noar tt set v0='P1TZ2G52FG34K547' where id=8; -update noar ti set v0='P1TZ2G52FG34K547' where id=8; -update noar tt set b0='DBG8' where id=8; -update noar ti set b0='DBG8' where id=8; -update noar tt set v0='Q0DFEXW' where id=8; -update noar ti set v0='Q0DFEXW' where id=8; -update noar tt set b1='C2HVBOF2A6MH0L' where id=8; -update noar ti set b1='C2HVBOF2A6MH0L' where id=8; -update noar tt set v0='3B0P9WFYCQ57NH6' where id=8; -update noar ti set v0='3B0P9WFYCQ57NH6' where id=8; -update noar tt set b2='IDQW9R06L368O7QJW' where id=8; -update noar ti set b2='IDQW9R06L368O7QJW' where id=8; -update noar tt set v0='YCPUVZ' where id=9; -update noar ti set v0='YCPUVZ' where id=9; -update noar tt set b0='VXGIJN' where id=9; -update noar ti set b0='VXGIJN' where id=9; -update noar tt set v0='OFOIIUFRFWDYUEFB' where id=9; -update noar ti set v0='OFOIIUFRFWDYUEFB' where id=9; -update noar tt set b1='DC' where id=9; -update noar ti set b1='DC' where id=9; -update noar tt set v0='DS4EPIKJY' where id=9; -update noar ti set v0='DS4EPIKJY' where id=9; -update noar tt set b2='77VW8EHRDHSV3T1U' where id=9; -update noar ti set b2='77VW8EHRDHSV3T1U' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -f0 int null, -v0 varchar(32) null, -b0 mediumblob null, -b1 mediumblob null, -b2 tinyblob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='ESKE40X' where id=1; -update noar ti set v0='ESKE40X' where id=1; -update noar tt set b0='LLL5KKO' where id=1; -update noar ti set b0='LLL5KKO' where id=1; -update noar tt set v0='5PWJCKBL8O4B4O' where id=1; -update noar ti set v0='5PWJCKBL8O4B4O' where id=1; -update noar tt set b1='19' where id=1; -update noar ti set b1='19' where id=1; -update noar tt set v0='IUSFETJGMVYF6FVZ03ALH3PLGL' where id=1; -update noar ti set v0='IUSFETJGMVYF6FVZ03ALH3PLGL' where id=1; -update noar tt set b2='XEU' where id=1; -update noar ti set b2='XEU' where id=1; -update noar tt set v0='RO0O0' where id=2; -update noar ti set v0='RO0O0' where id=2; -update noar tt set b0='9ES5HYCR01U' where id=2; -update noar ti set b0='9ES5HYCR01U' where id=2; -update noar tt set v0='NKK0OM1TUHIGX6V8WQV' where id=2; -update noar ti set v0='NKK0OM1TUHIGX6V8WQV' where id=2; -update noar tt set b1='TH295DA2' where id=2; -update noar ti set b1='TH295DA2' where id=2; -update noar tt set v0='ONQU5XO899' where id=2; -update noar ti set v0='ONQU5XO899' where id=2; -update noar tt set b2='AL6ND8KTPBV5DNX2VRH33PGXBYQ5' where id=2; -update noar ti set b2='AL6ND8KTPBV5DNX2VRH33PGXBYQ5' where id=2; -update noar tt set v0='ZP6IMUG9O8ETCYHF' where id=3; -update noar ti set v0='ZP6IMUG9O8ETCYHF' where id=3; -update noar tt set b0='KJF0NBSI1PWNPQJ7KXCBZ' where id=3; -update noar ti set b0='KJF0NBSI1PWNPQJ7KXCBZ' where id=3; -update noar tt set v0='9MWLLSUW9APVY28Z6RFFU90ZMUSJ07LA' where id=3; -update noar ti set v0='9MWLLSUW9APVY28Z6RFFU90ZMUSJ07LA' where id=3; -update noar tt set b1='9S66I8RUJVCFYJ5HF6' where id=3; -update noar ti set b1='9S66I8RUJVCFYJ5HF6' where id=3; -update noar tt set v0='J6C4S5CCT1E' where id=3; -update noar ti set v0='J6C4S5CCT1E' where id=3; -update noar tt set b2='MFE4' where id=3; -update noar ti set b2='MFE4' where id=3; -update noar tt set v0='5V443W5VTD30GM3FRHYFW9Y6J4W' where id=4; -update noar ti set v0='5V443W5VTD30GM3FRHYFW9Y6J4W' where id=4; -update noar tt set b0='NLZT' where id=4; -update noar ti set b0='NLZT' where id=4; -update noar tt set v0='7GB2EIF4B4JH' where id=4; -update noar ti set v0='7GB2EIF4B4JH' where id=4; -update noar tt set b1='PUMUSF2SWC42IOGXIAU2YUSHXCYOMNXA' where id=4; -update noar ti set b1='PUMUSF2SWC42IOGXIAU2YUSHXCYOMNXA' where id=4; -update noar tt set v0='UZNEZEI2NUG80TWC8BX8O9HKX2GV6' where id=4; -update noar ti set v0='UZNEZEI2NUG80TWC8BX8O9HKX2GV6' where id=4; -update noar tt set b2='Y3' where id=4; -update noar ti set b2='Y3' where id=4; -update noar tt set v0='A00815CH3Y910MNCCUUCQV0F' where id=5; -update noar ti set v0='A00815CH3Y910MNCCUUCQV0F' where id=5; -update noar tt set b0='RXLW11CYWPLA8427ONFI8P6VKAQLTH' where id=5; -update noar ti set b0='RXLW11CYWPLA8427ONFI8P6VKAQLTH' where id=5; -update noar tt set v0='HG8P5MPBS43XHN1CKX2I5ZJUJO6S5' where id=5; -update noar ti set v0='HG8P5MPBS43XHN1CKX2I5ZJUJO6S5' where id=5; -update noar tt set b1='SDGTLX7B30P9O9' where id=5; -update noar ti set b1='SDGTLX7B30P9O9' where id=5; -update noar tt set v0='56' where id=5; -update noar ti set v0='56' where id=5; -update noar tt set b2='3XNWJHNFOO8SO62ADV1FOWBI7' where id=5; -update noar ti set b2='3XNWJHNFOO8SO62ADV1FOWBI7' where id=5; -update noar tt set v0='AU6Q71SSJEUXWE4V3G0LE7VC1' where id=6; -update noar ti set v0='AU6Q71SSJEUXWE4V3G0LE7VC1' where id=6; -update noar tt set b0='8Q6ONZ6H0KH9ST43SI67D' where id=6; -update noar ti set b0='8Q6ONZ6H0KH9ST43SI67D' where id=6; -update noar tt set v0='AR0RLNHG1JO8C' where id=6; -update noar ti set v0='AR0RLNHG1JO8C' where id=6; -update noar tt set b1='PP1J57S6U4BF802Q5P' where id=6; -update noar ti set b1='PP1J57S6U4BF802Q5P' where id=6; -update noar tt set v0='8DIMOP94VVPA94O0RP9IMPBZBSAIU' where id=6; -update noar ti set v0='8DIMOP94VVPA94O0RP9IMPBZBSAIU' where id=6; -update noar tt set b2='XWDI1QSDHZPRDMKGEDUW' where id=6; -update noar ti set b2='XWDI1QSDHZPRDMKGEDUW' where id=6; -update noar tt set v0='EUK0USOF' where id=7; -update noar ti set v0='EUK0USOF' where id=7; -update noar tt set b0='9QR' where id=7; -update noar ti set b0='9QR' where id=7; -update noar tt set v0='ZG3FD2CP2' where id=7; -update noar ti set v0='ZG3FD2CP2' where id=7; -update noar tt set b1='YAB57LLKACRGZB4IVBMN' where id=7; -update noar ti set b1='YAB57LLKACRGZB4IVBMN' where id=7; -update noar tt set v0='K' where id=7; -update noar ti set v0='K' where id=7; -update noar tt set b2='OUL95Y0L3M6GYB0X9PQJP0H9W7UKV3N7' where id=7; -update noar ti set b2='OUL95Y0L3M6GYB0X9PQJP0H9W7UKV3N7' where id=7; -update noar tt set v0='OMQ80INY4OJ3SQSZ2CIMQQ3QPF' where id=8; -update noar ti set v0='OMQ80INY4OJ3SQSZ2CIMQQ3QPF' where id=8; -update noar tt set b0='ZVYO5D1MO07M7AOA3BD9ITTT8XEJ0L' where id=8; -update noar ti set b0='ZVYO5D1MO07M7AOA3BD9ITTT8XEJ0L' where id=8; -update noar tt set v0='I8KNYVW2GHYAV5A98TYPJQOFEZ' where id=8; -update noar ti set v0='I8KNYVW2GHYAV5A98TYPJQOFEZ' where id=8; -update noar tt set b1='FM5JJOVOFGA9U99F' where id=8; -update noar ti set b1='FM5JJOVOFGA9U99F' where id=8; -update noar tt set v0='33W4ZF6ASNEQLBCUHIUF4IZVOQ7' where id=8; -update noar ti set v0='33W4ZF6ASNEQLBCUHIUF4IZVOQ7' where id=8; -update noar tt set b2='RLHE' where id=8; -update noar ti set b2='RLHE' where id=8; -update noar tt set v0='4IS1CL3X8VV0P5FMYOX' where id=9; -update noar ti set v0='4IS1CL3X8VV0P5FMYOX' where id=9; -update noar tt set b0='WW5QRRMSILFKFFSFK7QU' where id=9; -update noar ti set b0='WW5QRRMSILFKFFSFK7QU' where id=9; -update noar tt set v0='DTXVN59DWGE29BA30UNZQPY' where id=9; -update noar ti set v0='DTXVN59DWGE29BA30UNZQPY' where id=9; -update noar tt set b1='PKZ' where id=9; -update noar ti set b1='PKZ' where id=9; -update noar tt set v0='IQKLV9W1770IRK41OODGO7' where id=9; -update noar ti set v0='IQKLV9W1770IRK41OODGO7' where id=9; -update noar tt set b2='1IOAPH' where id=9; -update noar ti set b2='1IOAPH' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -f0 int null, -v0 varchar(256) null, -b0 mediumblob null, -b1 mediumblob null, -b2 tinyblob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='R5OOV9SGLR1AWETR5BAV8NPO' where id=1; -update noar ti set v0='R5OOV9SGLR1AWETR5BAV8NPO' where id=1; -update noar tt set b0='LU7ECFMBSHRIZT8LAOHM8QY5N33ACAV3' where id=1; -update noar ti set b0='LU7ECFMBSHRIZT8LAOHM8QY5N33ACAV3' where id=1; -update noar tt set v0='QVCDH85UHQT5Z' where id=1; -update noar ti set v0='QVCDH85UHQT5Z' where id=1; -update noar tt set b1='HKAXEDOYT3230XGCX' where id=1; -update noar ti set b1='HKAXEDOYT3230XGCX' where id=1; -update noar tt set v0='NMUU9X1OPO6N8GK' where id=1; -update noar ti set v0='NMUU9X1OPO6N8GK' where id=1; -update noar tt set b2='SMUJFLJRTD1X2DLI' where id=1; -update noar ti set b2='SMUJFLJRTD1X2DLI' where id=1; -update noar tt set v0='LFKBOTAR7N8ER7SOPDU2PQKBTG' where id=2; -update noar ti set v0='LFKBOTAR7N8ER7SOPDU2PQKBTG' where id=2; -update noar tt set b0='3AWBQ8H1TGPXMRLHULZ4WM6M7UH' where id=2; -update noar ti set b0='3AWBQ8H1TGPXMRLHULZ4WM6M7UH' where id=2; -update noar tt set v0='22Z1XQGFVHN9TGWDYBI2QIRLYD' where id=2; -update noar ti set v0='22Z1XQGFVHN9TGWDYBI2QIRLYD' where id=2; -update noar tt set b1='AYUEUYMG61QXM8OFPV93VQ8X7K1R8SG9' where id=2; -update noar ti set b1='AYUEUYMG61QXM8OFPV93VQ8X7K1R8SG9' where id=2; -update noar tt set v0='RIJQ6NJ9ND92GK9706UWQXO6KR28Z' where id=2; -update noar ti set v0='RIJQ6NJ9ND92GK9706UWQXO6KR28Z' where id=2; -update noar tt set b2='AGYT2G3WKY57GNYLTUY5GEO' where id=2; -update noar ti set b2='AGYT2G3WKY57GNYLTUY5GEO' where id=2; -update noar tt set v0='4XO5SHLRX4SKLQE6QWP25' where id=3; -update noar ti set v0='4XO5SHLRX4SKLQE6QWP25' where id=3; -update noar tt set b0='MLHD5WMHHC5C00I773S6T' where id=3; -update noar ti set b0='MLHD5WMHHC5C00I773S6T' where id=3; -update noar tt set v0='V6NHRADFXUEYD4TZKJ007KCLAXNV' where id=3; -update noar ti set v0='V6NHRADFXUEYD4TZKJ007KCLAXNV' where id=3; -update noar tt set b1='RTK25YQ' where id=3; -update noar ti set b1='RTK25YQ' where id=3; -update noar tt set v0='F0E2YH8UPCTUVXAWIS0KQPH2TQ1TBHQG' where id=3; -update noar ti set v0='F0E2YH8UPCTUVXAWIS0KQPH2TQ1TBHQG' where id=3; -update noar tt set b2='CJHOIK0CMM1FIEF' where id=3; -update noar ti set b2='CJHOIK0CMM1FIEF' where id=3; -update noar tt set v0='0D39IMT' where id=4; -update noar ti set v0='0D39IMT' where id=4; -update noar tt set b0='7' where id=4; -update noar ti set b0='7' where id=4; -update noar tt set v0='GVQAIDZM17' where id=4; -update noar ti set v0='GVQAIDZM17' where id=4; -update noar tt set b1='9VZ' where id=4; -update noar ti set b1='9VZ' where id=4; -update noar tt set v0='KDISCFUM8SFYGSOXGOCLUGE5KUU5M' where id=4; -update noar ti set v0='KDISCFUM8SFYGSOXGOCLUGE5KUU5M' where id=4; -update noar tt set b2='2WPGSZ8H' where id=4; -update noar ti set b2='2WPGSZ8H' where id=4; -update noar tt set v0='YL7JUB36EY9WQDV4TEX' where id=5; -update noar ti set v0='YL7JUB36EY9WQDV4TEX' where id=5; -update noar tt set b0='SSQLFF9SG2SW64LORD' where id=5; -update noar ti set b0='SSQLFF9SG2SW64LORD' where id=5; -update noar tt set v0='MUTZ8G36YNJE5P1WFN' where id=5; -update noar ti set v0='MUTZ8G36YNJE5P1WFN' where id=5; -update noar tt set b1='Q26FJSQ1VV44S4KEAN5K7L55' where id=5; -update noar ti set b1='Q26FJSQ1VV44S4KEAN5K7L55' where id=5; -update noar tt set v0='NWBF' where id=5; -update noar ti set v0='NWBF' where id=5; -update noar tt set b2='UMVXDA4NCSHAHL' where id=5; -update noar ti set b2='UMVXDA4NCSHAHL' where id=5; -update noar tt set v0='XMMQQ5LMFJPJPHKLUQHYNK' where id=6; -update noar ti set v0='XMMQQ5LMFJPJPHKLUQHYNK' where id=6; -update noar tt set b0='X' where id=6; -update noar ti set b0='X' where id=6; -update noar tt set v0='X03YJP' where id=6; -update noar ti set v0='X03YJP' where id=6; -update noar tt set b1='6MQIRL7LC6' where id=6; -update noar ti set b1='6MQIRL7LC6' where id=6; -update noar tt set v0='PU3HBPFOQL7PEOF99A' where id=6; -update noar ti set v0='PU3HBPFOQL7PEOF99A' where id=6; -update noar tt set b2='KY1OZ5KY' where id=6; -update noar ti set b2='KY1OZ5KY' where id=6; -update noar tt set v0='0XGOCI' where id=7; -update noar ti set v0='0XGOCI' where id=7; -update noar tt set b0='XQY14CT806U0EURARMI9' where id=7; -update noar ti set b0='XQY14CT806U0EURARMI9' where id=7; -update noar tt set v0='O25HUZUAZ6DRAEVLD8NTKXNA' where id=7; -update noar ti set v0='O25HUZUAZ6DRAEVLD8NTKXNA' where id=7; -update noar tt set b1='6VXD2S' where id=7; -update noar ti set b1='6VXD2S' where id=7; -update noar tt set v0='OS4XBYT94QEI4' where id=7; -update noar ti set v0='OS4XBYT94QEI4' where id=7; -update noar tt set b2='Z5UPUBDKF346LK4ODQMCHRLO' where id=7; -update noar ti set b2='Z5UPUBDKF346LK4ODQMCHRLO' where id=7; -update noar tt set v0='WYFF' where id=8; -update noar ti set v0='WYFF' where id=8; -update noar tt set b0='ER3JCL' where id=8; -update noar ti set b0='ER3JCL' where id=8; -update noar tt set v0='QP9UF9ZYCW' where id=8; -update noar ti set v0='QP9UF9ZYCW' where id=8; -update noar tt set b1='35SHDMR0KJPLZB736KC8L6AIZKU47EQ' where id=8; -update noar ti set b1='35SHDMR0KJPLZB736KC8L6AIZKU47EQ' where id=8; -update noar tt set v0='MTP6S' where id=8; -update noar ti set v0='MTP6S' where id=8; -update noar tt set b2='QZH08N732PWIZ09VGVGUS2RPY0VM' where id=8; -update noar ti set b2='QZH08N732PWIZ09VGVGUS2RPY0VM' where id=8; -update noar tt set v0='TV4JLNGWK9' where id=9; -update noar ti set v0='TV4JLNGWK9' where id=9; -update noar tt set b0='8DIOV4U36NOT' where id=9; -update noar ti set b0='8DIOV4U36NOT' where id=9; -update noar tt set v0='CYZ0ISDFX4YLMN3I65GCBO6T1PEW7XAR' where id=9; -update noar ti set v0='CYZ0ISDFX4YLMN3I65GCBO6T1PEW7XAR' where id=9; -update noar tt set b1='6AJAF5LQSLR9IWWKZOX' where id=9; -update noar ti set b1='6AJAF5LQSLR9IWWKZOX' where id=9; -update noar tt set v0='T2KBMGGWH8X3UTW7DAD9HG3XXT' where id=9; -update noar ti set v0='T2KBMGGWH8X3UTW7DAD9HG3XXT' where id=9; -update noar tt set b2='QRPN03UJXMA4CYD6VBIYXD3VOND' where id=9; -update noar ti set b2='QRPN03UJXMA4CYD6VBIYXD3VOND' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -f0 int not null, -v0 varchar(32) not null, -b0 mediumblob not null, -b1 mediumblob not null, -b2 tinyblob not null -) engine=tokudb; -insert into tt values (1,0,'','','',''); -insert into tt values (2,0,'','','',''); -insert into tt values (3,0,'','','',''); -insert into tt values (4,0,'','','',''); -insert into tt values (5,0,'','','',''); -insert into tt values (6,0,'','','',''); -insert into tt values (7,0,'','','',''); -insert into tt values (8,0,'','','',''); -insert into tt values (9,0,'','','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='GDSS1UEFQ8ZLH293SNN0KARC' where id=1; -update noar ti set v0='GDSS1UEFQ8ZLH293SNN0KARC' where id=1; -update noar tt set b0='Y0' where id=1; -update noar ti set b0='Y0' where id=1; -update noar tt set v0='QX9IYANLE' where id=1; -update noar ti set v0='QX9IYANLE' where id=1; -update noar tt set b1='7F9MGHG3T5JOY2O092IWR2JT' where id=1; -update noar ti set b1='7F9MGHG3T5JOY2O092IWR2JT' where id=1; -update noar tt set v0='M2VO91HQKJRHKUEWTR86T5YVN5HDN' where id=1; -update noar ti set v0='M2VO91HQKJRHKUEWTR86T5YVN5HDN' where id=1; -update noar tt set b2='0X1HMJ44PFOW' where id=1; -update noar ti set b2='0X1HMJ44PFOW' where id=1; -update noar tt set v0='SOJREY9' where id=2; -update noar ti set v0='SOJREY9' where id=2; -update noar tt set b0='CQ8WIDML7ML4NZ38UN' where id=2; -update noar ti set b0='CQ8WIDML7ML4NZ38UN' where id=2; -update noar tt set v0='UX56CCRGQ442YJ83BKU5EDJS' where id=2; -update noar ti set v0='UX56CCRGQ442YJ83BKU5EDJS' where id=2; -update noar tt set b1='1N2IP9P0CA955SB61MU4N' where id=2; -update noar ti set b1='1N2IP9P0CA955SB61MU4N' where id=2; -update noar tt set v0='8KNVTMZX22RTR' where id=2; -update noar ti set v0='8KNVTMZX22RTR' where id=2; -update noar tt set b2='YC5H8S8A4NX31P81Z5PCOYE51FYOL9I3' where id=2; -update noar ti set b2='YC5H8S8A4NX31P81Z5PCOYE51FYOL9I3' where id=2; -update noar tt set v0='9OTFK7B6S5PQ7TJR887RZXPVZ' where id=3; -update noar ti set v0='9OTFK7B6S5PQ7TJR887RZXPVZ' where id=3; -update noar tt set b0='GOIEBK4Y9IN3ZM4XW2ROS' where id=3; -update noar ti set b0='GOIEBK4Y9IN3ZM4XW2ROS' where id=3; -update noar tt set v0='KU8' where id=3; -update noar ti set v0='KU8' where id=3; -update noar tt set b1='NZ3C2VS90BUHU48XB5PFT0' where id=3; -update noar ti set b1='NZ3C2VS90BUHU48XB5PFT0' where id=3; -update noar tt set v0='YE16YNZUDH0' where id=3; -update noar ti set v0='YE16YNZUDH0' where id=3; -update noar tt set b2='HLL18OFQ88I7YQ4BZ4PL6DI' where id=3; -update noar ti set b2='HLL18OFQ88I7YQ4BZ4PL6DI' where id=3; -update noar tt set v0='XNSSCA66VJEU0EH0ZDD' where id=4; -update noar ti set v0='XNSSCA66VJEU0EH0ZDD' where id=4; -update noar tt set b0='4W1FJ99CUUKD5YDNI0E4RQRDA1VQC' where id=4; -update noar ti set b0='4W1FJ99CUUKD5YDNI0E4RQRDA1VQC' where id=4; -update noar tt set v0='EOUD4EC36Z65H5WT0MSPV1X4HL9' where id=4; -update noar ti set v0='EOUD4EC36Z65H5WT0MSPV1X4HL9' where id=4; -update noar tt set b1='JKDW8KJF5USOTIQMBZGQPO2EB4' where id=4; -update noar ti set b1='JKDW8KJF5USOTIQMBZGQPO2EB4' where id=4; -update noar tt set v0='WMSC4ZDKQVXFONMD1J' where id=4; -update noar ti set v0='WMSC4ZDKQVXFONMD1J' where id=4; -update noar tt set b2='5FX9USFRQX7XTLTD4LIB' where id=4; -update noar ti set b2='5FX9USFRQX7XTLTD4LIB' where id=4; -update noar tt set v0='3S59D9H0TAKVYZSLD927V' where id=5; -update noar ti set v0='3S59D9H0TAKVYZSLD927V' where id=5; -update noar tt set b0='237XV' where id=5; -update noar ti set b0='237XV' where id=5; -update noar tt set v0='EJYBRW8' where id=5; -update noar ti set v0='EJYBRW8' where id=5; -update noar tt set b1='TNZOOMW' where id=5; -update noar ti set b1='TNZOOMW' where id=5; -update noar tt set v0='AYJYPLAPKMZCP7GG' where id=5; -update noar ti set v0='AYJYPLAPKMZCP7GG' where id=5; -update noar tt set b2='8Q48YQYNI9B3DAKO6BXWULR94Q0AN' where id=5; -update noar ti set b2='8Q48YQYNI9B3DAKO6BXWULR94Q0AN' where id=5; -update noar tt set v0='N2YAP9Q' where id=6; -update noar ti set v0='N2YAP9Q' where id=6; -update noar tt set b0='Q95' where id=6; -update noar ti set b0='Q95' where id=6; -update noar tt set v0='P31LOYKZBP69829DCM6C4' where id=6; -update noar ti set v0='P31LOYKZBP69829DCM6C4' where id=6; -update noar tt set b1='WBA40XN0HKVS' where id=6; -update noar ti set b1='WBA40XN0HKVS' where id=6; -update noar tt set v0='278E194SJC78BHPYY968SP' where id=6; -update noar ti set v0='278E194SJC78BHPYY968SP' where id=6; -update noar tt set b2='3047CLE3XNL89JN9HI4S' where id=6; -update noar ti set b2='3047CLE3XNL89JN9HI4S' where id=6; -update noar tt set v0='FWU5YS2GMEEUR8WN96L' where id=7; -update noar ti set v0='FWU5YS2GMEEUR8WN96L' where id=7; -update noar tt set b0='Y500RXT09RUE8YXD93LNEV0N4Y8OQ' where id=7; -update noar ti set b0='Y500RXT09RUE8YXD93LNEV0N4Y8OQ' where id=7; -update noar tt set v0='8T93W47KBBQLC35IGE' where id=7; -update noar ti set v0='8T93W47KBBQLC35IGE' where id=7; -update noar tt set b1='LGXYSMX0JKHPMBC4GQNWCP' where id=7; -update noar ti set b1='LGXYSMX0JKHPMBC4GQNWCP' where id=7; -update noar tt set v0='ZYOZN9B11ZTS5TGPBS6KDVSI166RFSXO' where id=7; -update noar ti set v0='ZYOZN9B11ZTS5TGPBS6KDVSI166RFSXO' where id=7; -update noar tt set b2='KQ' where id=7; -update noar ti set b2='KQ' where id=7; -update noar tt set v0='P' where id=8; -update noar ti set v0='P' where id=8; -update noar tt set b0='3H1' where id=8; -update noar ti set b0='3H1' where id=8; -update noar tt set v0='E0PCQYO6H89VCG2EVHB60JY3LB' where id=8; -update noar ti set v0='E0PCQYO6H89VCG2EVHB60JY3LB' where id=8; -update noar tt set b1='A2MUO51MBHR25C6V' where id=8; -update noar ti set b1='A2MUO51MBHR25C6V' where id=8; -update noar tt set v0='OYIJU3PUQ7E1D0QJKDZ1YIA8O29G690W' where id=8; -update noar ti set v0='OYIJU3PUQ7E1D0QJKDZ1YIA8O29G690W' where id=8; -update noar tt set b2='6' where id=8; -update noar ti set b2='6' where id=8; -update noar tt set v0='JHUT7E5KSL7S9T9F57UXG' where id=9; -update noar ti set v0='JHUT7E5KSL7S9T9F57UXG' where id=9; -update noar tt set b0='PMPAZVSIAZ8SJB3HLPVQXF' where id=9; -update noar ti set b0='PMPAZVSIAZ8SJB3HLPVQXF' where id=9; -update noar tt set v0='NZO9P' where id=9; -update noar ti set v0='NZO9P' where id=9; -update noar tt set b1='UGINMSFFT1OE84O2SFHZ1B66OOR1Y' where id=9; -update noar ti set b1='UGINMSFFT1OE84O2SFHZ1B66OOR1Y' where id=9; -update noar tt set v0='N6TAZF3GWWRS0YEZ' where id=9; -update noar ti set v0='N6TAZF3GWWRS0YEZ' where id=9; -update noar tt set b2='QKW2ZW3XKZ' where id=9; -update noar ti set b2='QKW2ZW3XKZ' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -f0 int not null, -v0 varchar(256) not null, -b0 mediumblob not null, -b1 mediumblob not null, -b2 tinyblob not null -) engine=tokudb; -insert into tt values (1,0,'','','',''); -insert into tt values (2,0,'','','',''); -insert into tt values (3,0,'','','',''); -insert into tt values (4,0,'','','',''); -insert into tt values (5,0,'','','',''); -insert into tt values (6,0,'','','',''); -insert into tt values (7,0,'','','',''); -insert into tt values (8,0,'','','',''); -insert into tt values (9,0,'','','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='8085H3WKGE3ZSZ80KVBZB82J' where id=1; -update noar ti set v0='8085H3WKGE3ZSZ80KVBZB82J' where id=1; -update noar tt set b0='4M9AQLQITJTM3D02HCSS' where id=1; -update noar ti set b0='4M9AQLQITJTM3D02HCSS' where id=1; -update noar tt set v0='9NZPL44HOVCBHMNK6FH3JX' where id=1; -update noar ti set v0='9NZPL44HOVCBHMNK6FH3JX' where id=1; -update noar tt set b1='CG15I442' where id=1; -update noar ti set b1='CG15I442' where id=1; -update noar tt set v0='RHKTSYDBV05L' where id=1; -update noar ti set v0='RHKTSYDBV05L' where id=1; -update noar tt set b2='HA4ARL2GWP9E' where id=1; -update noar ti set b2='HA4ARL2GWP9E' where id=1; -update noar tt set v0='U7470ME9RH3' where id=2; -update noar ti set v0='U7470ME9RH3' where id=2; -update noar tt set b0='7COSTURH6IZFAI6TLASAJBXUND' where id=2; -update noar ti set b0='7COSTURH6IZFAI6TLASAJBXUND' where id=2; -update noar tt set v0='X8D64HF61R6ANMTFSGMHANEP' where id=2; -update noar ti set v0='X8D64HF61R6ANMTFSGMHANEP' where id=2; -update noar tt set b1='PCKYFQK9QJKFKLODURDINF' where id=2; -update noar ti set b1='PCKYFQK9QJKFKLODURDINF' where id=2; -update noar tt set v0='S7UDILAPODSR98KN8' where id=2; -update noar ti set v0='S7UDILAPODSR98KN8' where id=2; -update noar tt set b2='67V6Q94R' where id=2; -update noar ti set b2='67V6Q94R' where id=2; -update noar tt set v0='X' where id=3; -update noar ti set v0='X' where id=3; -update noar tt set b0='JO3O33' where id=3; -update noar ti set b0='JO3O33' where id=3; -update noar tt set v0='WKLXFGEM630S0FR9REQSGQ' where id=3; -update noar ti set v0='WKLXFGEM630S0FR9REQSGQ' where id=3; -update noar tt set b1='ZJX3S8HRZN69U' where id=3; -update noar ti set b1='ZJX3S8HRZN69U' where id=3; -update noar tt set v0='JW1WRP9S3FSAAS9Q06LBN7' where id=3; -update noar ti set v0='JW1WRP9S3FSAAS9Q06LBN7' where id=3; -update noar tt set b2='414NXGALJ3KK43W62CFBJBQ6P47YR5M' where id=3; -update noar ti set b2='414NXGALJ3KK43W62CFBJBQ6P47YR5M' where id=3; -update noar tt set v0='QEUQ9L0EI0UZNA6KVE824MXRXBWK8ZUN' where id=4; -update noar ti set v0='QEUQ9L0EI0UZNA6KVE824MXRXBWK8ZUN' where id=4; -update noar tt set b0='5GRDYB3R5YEIIH4BX4CUGFVJOZV' where id=4; -update noar ti set b0='5GRDYB3R5YEIIH4BX4CUGFVJOZV' where id=4; -update noar tt set v0='BYITJTGH5E1ZLE' where id=4; -update noar ti set v0='BYITJTGH5E1ZLE' where id=4; -update noar tt set b1='VJFWXCXHSX3O335PTA9Q3R' where id=4; -update noar ti set b1='VJFWXCXHSX3O335PTA9Q3R' where id=4; -update noar tt set v0='Z0I6J1448LRWEOVSJVKRHEAOZ2APBKWB' where id=4; -update noar ti set v0='Z0I6J1448LRWEOVSJVKRHEAOZ2APBKWB' where id=4; -update noar tt set b2='ZLQ89NZF9D08XHSQJAFRCV' where id=4; -update noar ti set b2='ZLQ89NZF9D08XHSQJAFRCV' where id=4; -update noar tt set v0='PXJFN8GSR0T4MF6OZ' where id=5; -update noar ti set v0='PXJFN8GSR0T4MF6OZ' where id=5; -update noar tt set b0='NSFY594582' where id=5; -update noar ti set b0='NSFY594582' where id=5; -update noar tt set v0='E31UGGZR62GTVYJ9KX0' where id=5; -update noar ti set v0='E31UGGZR62GTVYJ9KX0' where id=5; -update noar tt set b1='17KC538KG3GOSXD4C77I' where id=5; -update noar ti set b1='17KC538KG3GOSXD4C77I' where id=5; -update noar tt set v0='3CNYFDLATOJV8VEEIZ0GRID0KTZLY' where id=5; -update noar ti set v0='3CNYFDLATOJV8VEEIZ0GRID0KTZLY' where id=5; -update noar tt set b2='1AEGEW3A4PH3TF5J46KDYYS9SKIXR' where id=5; -update noar ti set b2='1AEGEW3A4PH3TF5J46KDYYS9SKIXR' where id=5; -update noar tt set v0='YR1OG8C5GH75Z5JHINPU' where id=6; -update noar ti set v0='YR1OG8C5GH75Z5JHINPU' where id=6; -update noar tt set b0='OKL5TBL99MY0G6MQQ8ZHI74FRY' where id=6; -update noar ti set b0='OKL5TBL99MY0G6MQQ8ZHI74FRY' where id=6; -update noar tt set v0='CIHNSDTWYH9LHP56FJ2B0FZ8GH' where id=6; -update noar ti set v0='CIHNSDTWYH9LHP56FJ2B0FZ8GH' where id=6; -update noar tt set b1='GI7F' where id=6; -update noar ti set b1='GI7F' where id=6; -update noar tt set v0='S7YTJF2J629F0HAOTQALJ' where id=6; -update noar ti set v0='S7YTJF2J629F0HAOTQALJ' where id=6; -update noar tt set b2='6Y0XKM56FW3ITOZ' where id=6; -update noar ti set b2='6Y0XKM56FW3ITOZ' where id=6; -update noar tt set v0='DBHE91TH' where id=7; -update noar ti set v0='DBHE91TH' where id=7; -update noar tt set b0='HMZ2KQE63VUTX7C3ZKCRZYJY' where id=7; -update noar ti set b0='HMZ2KQE63VUTX7C3ZKCRZYJY' where id=7; -update noar tt set v0='CKWXOZSA306SB6G' where id=7; -update noar ti set v0='CKWXOZSA306SB6G' where id=7; -update noar tt set b1='OB7K9ATROTGJ0OWBAG49C' where id=7; -update noar ti set b1='OB7K9ATROTGJ0OWBAG49C' where id=7; -update noar tt set v0='IYHS4P0GPQ4K' where id=7; -update noar ti set v0='IYHS4P0GPQ4K' where id=7; -update noar tt set b2='M9YFL5LCUM1NG' where id=7; -update noar ti set b2='M9YFL5LCUM1NG' where id=7; -update noar tt set v0='9WA83KFOQY7OWOE5AZPWC' where id=8; -update noar ti set v0='9WA83KFOQY7OWOE5AZPWC' where id=8; -update noar tt set b0='ZQZZ3GTO37AP1PAR1P2LD53GXIFC' where id=8; -update noar ti set b0='ZQZZ3GTO37AP1PAR1P2LD53GXIFC' where id=8; -update noar tt set v0='1GG0BXR967MSXST5' where id=8; -update noar ti set v0='1GG0BXR967MSXST5' where id=8; -update noar tt set b1='FYIJNQCZJTBKCAHIYWT7WLT8MW7' where id=8; -update noar ti set b1='FYIJNQCZJTBKCAHIYWT7WLT8MW7' where id=8; -update noar tt set v0='L50YBS9L8IV3DHCXYMA7TWS879DCPQI1' where id=8; -update noar ti set v0='L50YBS9L8IV3DHCXYMA7TWS879DCPQI1' where id=8; -update noar tt set b2='61H5GFXDQO7JF8U' where id=8; -update noar ti set b2='61H5GFXDQO7JF8U' where id=8; -update noar tt set v0='WG2W60DMI' where id=9; -update noar ti set v0='WG2W60DMI' where id=9; -update noar tt set b0='6YSOK97V9VOJNMEWE9WU8CMN' where id=9; -update noar ti set b0='6YSOK97V9VOJNMEWE9WU8CMN' where id=9; -update noar tt set v0='4RC6UM4WJJHE8KHJU28Y46' where id=9; -update noar ti set v0='4RC6UM4WJJHE8KHJU28Y46' where id=9; -update noar tt set b1='XMM5D2BOQDHGYMRBM' where id=9; -update noar ti set b1='XMM5D2BOQDHGYMRBM' where id=9; -update noar tt set v0='RIHX6GY5EHUT91TK2B9TGDU' where id=9; -update noar ti set v0='RIHX6GY5EHUT91TK2B9TGDU' where id=9; -update noar tt set b2='M040NX2' where id=9; -update noar ti set b2='M040NX2' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -f0 int null, -v0 varchar(32) null, -b0 mediumblob null, -b1 mediumblob null, -b2 blob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='OM9F6DGLJGWD3OWJ0' where id=1; -update noar ti set v0='OM9F6DGLJGWD3OWJ0' where id=1; -update noar tt set b0='WX2Q' where id=1; -update noar ti set b0='WX2Q' where id=1; -update noar tt set v0='KK3X' where id=1; -update noar ti set v0='KK3X' where id=1; -update noar tt set b1='165' where id=1; -update noar ti set b1='165' where id=1; -update noar tt set v0='X1WV45UVU5UDZ8545XS' where id=1; -update noar ti set v0='X1WV45UVU5UDZ8545XS' where id=1; -update noar tt set b2='R' where id=1; -update noar ti set b2='R' where id=1; -update noar tt set v0='6W0' where id=2; -update noar ti set v0='6W0' where id=2; -update noar tt set b0='2UL9TLTPUT6TPAPQ8ZQZMA3FQ' where id=2; -update noar ti set b0='2UL9TLTPUT6TPAPQ8ZQZMA3FQ' where id=2; -update noar tt set v0='I34TEVC82NCGG2F0ZHDI' where id=2; -update noar ti set v0='I34TEVC82NCGG2F0ZHDI' where id=2; -update noar tt set b1='URE9V' where id=2; -update noar ti set b1='URE9V' where id=2; -update noar tt set v0='V354JGXG1EHAY' where id=2; -update noar ti set v0='V354JGXG1EHAY' where id=2; -update noar tt set b2='69GQOP6MLGRP08HGSY9NBIEWUTM8' where id=2; -update noar ti set b2='69GQOP6MLGRP08HGSY9NBIEWUTM8' where id=2; -update noar tt set v0='ZR' where id=3; -update noar ti set v0='ZR' where id=3; -update noar tt set b0='XHD0WD7VIH93' where id=3; -update noar ti set b0='XHD0WD7VIH93' where id=3; -update noar tt set v0='N89UHDMRLLF6' where id=3; -update noar ti set v0='N89UHDMRLLF6' where id=3; -update noar tt set b1='NTUQEEGNZP9EBZ' where id=3; -update noar ti set b1='NTUQEEGNZP9EBZ' where id=3; -update noar tt set v0='TD04E4MMEJYR2U3Y2R' where id=3; -update noar ti set v0='TD04E4MMEJYR2U3Y2R' where id=3; -update noar tt set b2='LX9F0OG3CVT5GYBDK299DAK784SP' where id=3; -update noar ti set b2='LX9F0OG3CVT5GYBDK299DAK784SP' where id=3; -update noar tt set v0='MBP36W3IML' where id=4; -update noar ti set v0='MBP36W3IML' where id=4; -update noar tt set b0='QX7LXSPL0G0KVHN14ACCMCDY7BPQL' where id=4; -update noar ti set b0='QX7LXSPL0G0KVHN14ACCMCDY7BPQL' where id=4; -update noar tt set v0='MPPKJIHXGWF83NOYN' where id=4; -update noar ti set v0='MPPKJIHXGWF83NOYN' where id=4; -update noar tt set b1='DPXSFNFNZPER1KI4DJHR3' where id=4; -update noar ti set b1='DPXSFNFNZPER1KI4DJHR3' where id=4; -update noar tt set v0='URSS' where id=4; -update noar ti set v0='URSS' where id=4; -update noar tt set b2='MX4JZICCQ3K1RQN9' where id=4; -update noar ti set b2='MX4JZICCQ3K1RQN9' where id=4; -update noar tt set v0='KC3VGV0A2X757OC7L73MX2R1' where id=5; -update noar ti set v0='KC3VGV0A2X757OC7L73MX2R1' where id=5; -update noar tt set b0='ZXV5MSXG3RNJ2NR1RZRW6NGZBNOL3WN5' where id=5; -update noar ti set b0='ZXV5MSXG3RNJ2NR1RZRW6NGZBNOL3WN5' where id=5; -update noar tt set v0='34YNPL29DFCIZ2SKU02TS32NS8' where id=5; -update noar ti set v0='34YNPL29DFCIZ2SKU02TS32NS8' where id=5; -update noar tt set b1='9A3P6JWZX92Q6J3T90FHOA1ARI9D' where id=5; -update noar ti set b1='9A3P6JWZX92Q6J3T90FHOA1ARI9D' where id=5; -update noar tt set v0='NU7UZN37ZWLGPGESTQCKDA' where id=5; -update noar ti set v0='NU7UZN37ZWLGPGESTQCKDA' where id=5; -update noar tt set b2='WI6WPD2E' where id=5; -update noar ti set b2='WI6WPD2E' where id=5; -update noar tt set v0='178K6SRB8D0B4RBRHGFB87HF' where id=6; -update noar ti set v0='178K6SRB8D0B4RBRHGFB87HF' where id=6; -update noar tt set b0='NS5IPKY5T4VL' where id=6; -update noar ti set b0='NS5IPKY5T4VL' where id=6; -update noar tt set v0='VOH0MR9VJR6M0QEJQZIOL1RA7XD4RX' where id=6; -update noar ti set v0='VOH0MR9VJR6M0QEJQZIOL1RA7XD4RX' where id=6; -update noar tt set b1='YO4BDZ7CU2WV9AOCF49IIH8' where id=6; -update noar ti set b1='YO4BDZ7CU2WV9AOCF49IIH8' where id=6; -update noar tt set v0='XYQDCYR97CE2LG4J99XA' where id=6; -update noar ti set v0='XYQDCYR97CE2LG4J99XA' where id=6; -update noar tt set b2='IZX4L2ISKJVGV2FJ8W' where id=6; -update noar ti set b2='IZX4L2ISKJVGV2FJ8W' where id=6; -update noar tt set v0='KLKT9AUMZE4SDHD6O8X7FUJUAPX' where id=7; -update noar ti set v0='KLKT9AUMZE4SDHD6O8X7FUJUAPX' where id=7; -update noar tt set b0='ZNEIJHUAJ6GLJ' where id=7; -update noar ti set b0='ZNEIJHUAJ6GLJ' where id=7; -update noar tt set v0='23J1QZRV27FFHPH1BVV' where id=7; -update noar ti set v0='23J1QZRV27FFHPH1BVV' where id=7; -update noar tt set b1='RWHRD2YVW' where id=7; -update noar ti set b1='RWHRD2YVW' where id=7; -update noar tt set v0='IGZ' where id=7; -update noar ti set v0='IGZ' where id=7; -update noar tt set b2='XGRZ98XQ0V5P7HIFFRUO4J8' where id=7; -update noar ti set b2='XGRZ98XQ0V5P7HIFFRUO4J8' where id=7; -update noar tt set v0='MKKIQ4OJT' where id=8; -update noar ti set v0='MKKIQ4OJT' where id=8; -update noar tt set b0='JY' where id=8; -update noar ti set b0='JY' where id=8; -update noar tt set v0='MOGTDQ8ERF7JECXGSHUX3W92TYMKR' where id=8; -update noar ti set v0='MOGTDQ8ERF7JECXGSHUX3W92TYMKR' where id=8; -update noar tt set b1='D61JS2ST6F6FGEC29XOE2DRS27U5BSPP' where id=8; -update noar ti set b1='D61JS2ST6F6FGEC29XOE2DRS27U5BSPP' where id=8; -update noar tt set v0='G6LMY1LUTIFU2DFE89R' where id=8; -update noar ti set v0='G6LMY1LUTIFU2DFE89R' where id=8; -update noar tt set b2='3OJ3VH5BYH99Q8NWP9FTLZHV771CYX' where id=8; -update noar ti set b2='3OJ3VH5BYH99Q8NWP9FTLZHV771CYX' where id=8; -update noar tt set v0='0LD8B63HBY' where id=9; -update noar ti set v0='0LD8B63HBY' where id=9; -update noar tt set b0='GFWWZWRI5DF7I0RZZVSAN5WZVCJA' where id=9; -update noar ti set b0='GFWWZWRI5DF7I0RZZVSAN5WZVCJA' where id=9; -update noar tt set v0='JW8GKXES9ZRT3GI15V1Q' where id=9; -update noar ti set v0='JW8GKXES9ZRT3GI15V1Q' where id=9; -update noar tt set b1='ZN' where id=9; -update noar ti set b1='ZN' where id=9; -update noar tt set v0='TYPZJ6VDMQ' where id=9; -update noar ti set v0='TYPZJ6VDMQ' where id=9; -update noar tt set b2='365FB9MNA3ZTD' where id=9; -update noar ti set b2='365FB9MNA3ZTD' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -f0 int null, -v0 varchar(256) null, -b0 mediumblob null, -b1 mediumblob null, -b2 blob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='5LT' where id=1; -update noar ti set v0='5LT' where id=1; -update noar tt set b0='LNXTCKX' where id=1; -update noar ti set b0='LNXTCKX' where id=1; -update noar tt set v0='UEWTU2JHM' where id=1; -update noar ti set v0='UEWTU2JHM' where id=1; -update noar tt set b1='FD0B2WDPSNR2M' where id=1; -update noar ti set b1='FD0B2WDPSNR2M' where id=1; -update noar tt set v0='7PT7CA8EIPOKESUND9CGTSED8R' where id=1; -update noar ti set v0='7PT7CA8EIPOKESUND9CGTSED8R' where id=1; -update noar tt set b2='0REM82L82' where id=1; -update noar ti set b2='0REM82L82' where id=1; -update noar tt set v0='441X29DK2003SSIY9MLK19M3KI07V' where id=2; -update noar ti set v0='441X29DK2003SSIY9MLK19M3KI07V' where id=2; -update noar tt set b0='VUJ4F8SUTHE78DYTDL68YENPLWG' where id=2; -update noar ti set b0='VUJ4F8SUTHE78DYTDL68YENPLWG' where id=2; -update noar tt set v0='9Q3MZI4P686SDKP9K' where id=2; -update noar ti set v0='9Q3MZI4P686SDKP9K' where id=2; -update noar tt set b1='5' where id=2; -update noar ti set b1='5' where id=2; -update noar tt set v0='BJXRK44RBZ0Y9R1BDG4' where id=2; -update noar ti set v0='BJXRK44RBZ0Y9R1BDG4' where id=2; -update noar tt set b2='MX60I' where id=2; -update noar ti set b2='MX60I' where id=2; -update noar tt set v0='ACCEQTDTGF32KA9CWALURYM' where id=3; -update noar ti set v0='ACCEQTDTGF32KA9CWALURYM' where id=3; -update noar tt set b0='KR8R2' where id=3; -update noar ti set b0='KR8R2' where id=3; -update noar tt set v0='O227LV5IC' where id=3; -update noar ti set v0='O227LV5IC' where id=3; -update noar tt set b1='SMMYEVVNUJZLWRRET4DV6G3V4M0YEWPJ' where id=3; -update noar ti set b1='SMMYEVVNUJZLWRRET4DV6G3V4M0YEWPJ' where id=3; -update noar tt set v0='E0YCM1RDTAXZKA52CJBYMWGV86C' where id=3; -update noar ti set v0='E0YCM1RDTAXZKA52CJBYMWGV86C' where id=3; -update noar tt set b2='YHXJBMUTMPGHD8R9YGE' where id=3; -update noar ti set b2='YHXJBMUTMPGHD8R9YGE' where id=3; -update noar tt set v0='RSMLA8XZJ64CF7J' where id=4; -update noar ti set v0='RSMLA8XZJ64CF7J' where id=4; -update noar tt set b0='95A49B5F' where id=4; -update noar ti set b0='95A49B5F' where id=4; -update noar tt set v0='CUJY5X9' where id=4; -update noar ti set v0='CUJY5X9' where id=4; -update noar tt set b1='4VZ4K3L' where id=4; -update noar ti set b1='4VZ4K3L' where id=4; -update noar tt set v0='DSRUC2' where id=4; -update noar ti set v0='DSRUC2' where id=4; -update noar tt set b2='5JSGWN6K1C8KX7DOLHY' where id=4; -update noar ti set b2='5JSGWN6K1C8KX7DOLHY' where id=4; -update noar tt set v0='X51KLB1OEF' where id=5; -update noar ti set v0='X51KLB1OEF' where id=5; -update noar tt set b0='AYMJUWOZK96GYL4KY337XQXRHAPYC' where id=5; -update noar ti set b0='AYMJUWOZK96GYL4KY337XQXRHAPYC' where id=5; -update noar tt set v0='152K5' where id=5; -update noar ti set v0='152K5' where id=5; -update noar tt set b1='6SEO8JMU8FD' where id=5; -update noar ti set b1='6SEO8JMU8FD' where id=5; -update noar tt set v0='J7XKWW5BI5K6' where id=5; -update noar ti set v0='J7XKWW5BI5K6' where id=5; -update noar tt set b2='VWY0KY7KQF7FYZS1LO3L6LZ4P9WNO8' where id=5; -update noar ti set b2='VWY0KY7KQF7FYZS1LO3L6LZ4P9WNO8' where id=5; -update noar tt set v0='4Q677GFVA' where id=6; -update noar ti set v0='4Q677GFVA' where id=6; -update noar tt set b0='X' where id=6; -update noar ti set b0='X' where id=6; -update noar tt set v0='9ZYSUK' where id=6; -update noar ti set v0='9ZYSUK' where id=6; -update noar tt set b1='JKSJKEF9QZQGEH' where id=6; -update noar ti set b1='JKSJKEF9QZQGEH' where id=6; -update noar tt set v0='ZJOUBF1695NIJDHIMAO384' where id=6; -update noar ti set v0='ZJOUBF1695NIJDHIMAO384' where id=6; -update noar tt set b2='ZW74LM9ZBUANXXE6584WQUU79QI9T' where id=6; -update noar ti set b2='ZW74LM9ZBUANXXE6584WQUU79QI9T' where id=6; -update noar tt set v0='XZR654NKSROEH0BPWM9YI9R' where id=7; -update noar ti set v0='XZR654NKSROEH0BPWM9YI9R' where id=7; -update noar tt set b0='MAGDKKGQH' where id=7; -update noar ti set b0='MAGDKKGQH' where id=7; -update noar tt set v0='0ILPRB4YW2F48EICCZXX47P9JJP' where id=7; -update noar ti set v0='0ILPRB4YW2F48EICCZXX47P9JJP' where id=7; -update noar tt set b1='FQC9RK9G12JXVWV' where id=7; -update noar ti set b1='FQC9RK9G12JXVWV' where id=7; -update noar tt set v0='UWOH3778BPPUF' where id=7; -update noar ti set v0='UWOH3778BPPUF' where id=7; -update noar tt set b2='2' where id=7; -update noar ti set b2='2' where id=7; -update noar tt set v0='OROP4X0XUUKUQEGMDO' where id=8; -update noar ti set v0='OROP4X0XUUKUQEGMDO' where id=8; -update noar tt set b0='9KHZFWINZY22TR7DFR' where id=8; -update noar ti set b0='9KHZFWINZY22TR7DFR' where id=8; -update noar tt set v0='VD5YC1BGL128OG3LX7DK7O6H5CUU' where id=8; -update noar ti set v0='VD5YC1BGL128OG3LX7DK7O6H5CUU' where id=8; -update noar tt set b1='8P5D3NB8NIUX4LVZVLV3J5UANFL4OE2' where id=8; -update noar ti set b1='8P5D3NB8NIUX4LVZVLV3J5UANFL4OE2' where id=8; -update noar tt set v0='W575DZ' where id=8; -update noar ti set v0='W575DZ' where id=8; -update noar tt set b2='6JI0SDRKAW8N04BTJDR7Q' where id=8; -update noar ti set b2='6JI0SDRKAW8N04BTJDR7Q' where id=8; -update noar tt set v0='1M7TXVB4FKNRNSJKY5G1QETEX44V' where id=9; -update noar ti set v0='1M7TXVB4FKNRNSJKY5G1QETEX44V' where id=9; -update noar tt set b0='0MSG9HJDENISRY77JWUELH0E0W8NFO8T' where id=9; -update noar ti set b0='0MSG9HJDENISRY77JWUELH0E0W8NFO8T' where id=9; -update noar tt set v0='3D74L3KEP1HWSTH54FZPHV' where id=9; -update noar ti set v0='3D74L3KEP1HWSTH54FZPHV' where id=9; -update noar tt set b1='YCSV912PEB6BE' where id=9; -update noar ti set b1='YCSV912PEB6BE' where id=9; -update noar tt set v0='27' where id=9; -update noar ti set v0='27' where id=9; -update noar tt set b2='3XG0MVJXZ63XGJJZBA8' where id=9; -update noar ti set b2='3XG0MVJXZ63XGJJZBA8' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -f0 int not null, -v0 varchar(32) not null, -b0 mediumblob not null, -b1 mediumblob not null, -b2 blob not null -) engine=tokudb; -insert into tt values (1,0,'','','',''); -insert into tt values (2,0,'','','',''); -insert into tt values (3,0,'','','',''); -insert into tt values (4,0,'','','',''); -insert into tt values (5,0,'','','',''); -insert into tt values (6,0,'','','',''); -insert into tt values (7,0,'','','',''); -insert into tt values (8,0,'','','',''); -insert into tt values (9,0,'','','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='JGN4QTFHFK' where id=1; -update noar ti set v0='JGN4QTFHFK' where id=1; -update noar tt set b0='DNYP0EE1ES4JDL577TSS00Q' where id=1; -update noar ti set b0='DNYP0EE1ES4JDL577TSS00Q' where id=1; -update noar tt set v0='UPJSWGW4MM6LI0F8K961PASN' where id=1; -update noar ti set v0='UPJSWGW4MM6LI0F8K961PASN' where id=1; -update noar tt set b1='FPG3R88I37FLO5' where id=1; -update noar ti set b1='FPG3R88I37FLO5' where id=1; -update noar tt set v0='BV0BA9' where id=1; -update noar ti set v0='BV0BA9' where id=1; -update noar tt set b2='WMCJM4LEX7DX0W6KPEF08UON' where id=1; -update noar ti set b2='WMCJM4LEX7DX0W6KPEF08UON' where id=1; -update noar tt set v0='G7' where id=2; -update noar ti set v0='G7' where id=2; -update noar tt set b0='TFH' where id=2; -update noar ti set b0='TFH' where id=2; -update noar tt set v0='M7AQAS08TI4B82' where id=2; -update noar ti set v0='M7AQAS08TI4B82' where id=2; -update noar tt set b1='H5LK7PEHOB3Y24G' where id=2; -update noar ti set b1='H5LK7PEHOB3Y24G' where id=2; -update noar tt set v0='5X419VQ4KWPIBM' where id=2; -update noar ti set v0='5X419VQ4KWPIBM' where id=2; -update noar tt set b2='VPBBD' where id=2; -update noar ti set b2='VPBBD' where id=2; -update noar tt set v0='LJXZ91ZOXXTW1HPYB304EC' where id=3; -update noar ti set v0='LJXZ91ZOXXTW1HPYB304EC' where id=3; -update noar tt set b0='E76KK42IV0L2P8Y7O7VOZOO6' where id=3; -update noar ti set b0='E76KK42IV0L2P8Y7O7VOZOO6' where id=3; -update noar tt set v0='B0' where id=3; -update noar ti set v0='B0' where id=3; -update noar tt set b1='UOT5F79' where id=3; -update noar ti set b1='UOT5F79' where id=3; -update noar tt set v0='4270VR8' where id=3; -update noar ti set v0='4270VR8' where id=3; -update noar tt set b2='9I8918KAPITNFZLWIFJ266FOANA' where id=3; -update noar ti set b2='9I8918KAPITNFZLWIFJ266FOANA' where id=3; -update noar tt set v0='5OKW3JXHD6E7435MINJ7M' where id=4; -update noar ti set v0='5OKW3JXHD6E7435MINJ7M' where id=4; -update noar tt set b0='1YBYYBD4B7AY7JHH3U8JSNNB6I1WXG8R' where id=4; -update noar ti set b0='1YBYYBD4B7AY7JHH3U8JSNNB6I1WXG8R' where id=4; -update noar tt set v0='PKWJU4I8IWH6VVQX0K3EW80YNKOZH' where id=4; -update noar ti set v0='PKWJU4I8IWH6VVQX0K3EW80YNKOZH' where id=4; -update noar tt set b1='AJMIJEEV' where id=4; -update noar ti set b1='AJMIJEEV' where id=4; -update noar tt set v0='GCAK54V1BUTU5FI2U' where id=4; -update noar ti set v0='GCAK54V1BUTU5FI2U' where id=4; -update noar tt set b2='QU93GWILSD4O439A49LHE' where id=4; -update noar ti set b2='QU93GWILSD4O439A49LHE' where id=4; -update noar tt set v0='HYREQ9FG9UNRGMAIYX' where id=5; -update noar ti set v0='HYREQ9FG9UNRGMAIYX' where id=5; -update noar tt set b0='3GBT0' where id=5; -update noar ti set b0='3GBT0' where id=5; -update noar tt set v0='S18EQDS' where id=5; -update noar ti set v0='S18EQDS' where id=5; -update noar tt set b1='ACKI84AH8DHCDERB53Z335MBTLKK66F9' where id=5; -update noar ti set b1='ACKI84AH8DHCDERB53Z335MBTLKK66F9' where id=5; -update noar tt set v0='SLO3BUOT5U3IE9' where id=5; -update noar ti set v0='SLO3BUOT5U3IE9' where id=5; -update noar tt set b2='2D91TPELQGJ' where id=5; -update noar ti set b2='2D91TPELQGJ' where id=5; -update noar tt set v0='F6132GVKX24P' where id=6; -update noar ti set v0='F6132GVKX24P' where id=6; -update noar tt set b0='KOPC7I2KY5FP5H815EF9F2QCIEWF' where id=6; -update noar ti set b0='KOPC7I2KY5FP5H815EF9F2QCIEWF' where id=6; -update noar tt set v0='UDKKHE4CR8EVX2Q5LO17BP9LO77' where id=6; -update noar ti set v0='UDKKHE4CR8EVX2Q5LO17BP9LO77' where id=6; -update noar tt set b1='H7P21A' where id=6; -update noar ti set b1='H7P21A' where id=6; -update noar tt set v0='3YIK9FNE5ILY' where id=6; -update noar ti set v0='3YIK9FNE5ILY' where id=6; -update noar tt set b2='063JBL6QOSQ34B5MUKL' where id=6; -update noar ti set b2='063JBL6QOSQ34B5MUKL' where id=6; -update noar tt set v0='WX9WXYIGGR4DZZQMA1MGXIB' where id=7; -update noar ti set v0='WX9WXYIGGR4DZZQMA1MGXIB' where id=7; -update noar tt set b0='1CMHFS9WQILWH' where id=7; -update noar ti set b0='1CMHFS9WQILWH' where id=7; -update noar tt set v0='CZMKT8F' where id=7; -update noar ti set v0='CZMKT8F' where id=7; -update noar tt set b1='YE0YYRN5A5V58T0I' where id=7; -update noar ti set b1='YE0YYRN5A5V58T0I' where id=7; -update noar tt set v0='9D22H8K' where id=7; -update noar ti set v0='9D22H8K' where id=7; -update noar tt set b2='HMNAC11J4S9PLTL8KSKSQTY8' where id=7; -update noar ti set b2='HMNAC11J4S9PLTL8KSKSQTY8' where id=7; -update noar tt set v0='N8RNIJ8R75RVP8OO4G35501BCZH1E5PK' where id=8; -update noar ti set v0='N8RNIJ8R75RVP8OO4G35501BCZH1E5PK' where id=8; -update noar tt set b0='IBPTTO45M40M8W4A5T9QK4779' where id=8; -update noar ti set b0='IBPTTO45M40M8W4A5T9QK4779' where id=8; -update noar tt set v0='TEQKE1C2DJEOCRRT7W8PR' where id=8; -update noar ti set v0='TEQKE1C2DJEOCRRT7W8PR' where id=8; -update noar tt set b1='7D' where id=8; -update noar ti set b1='7D' where id=8; -update noar tt set v0='4FABU203DVBSM4CIVQYA5R8EFIL' where id=8; -update noar ti set v0='4FABU203DVBSM4CIVQYA5R8EFIL' where id=8; -update noar tt set b2='2DGHEUT4H0HCQ19DB' where id=8; -update noar ti set b2='2DGHEUT4H0HCQ19DB' where id=8; -update noar tt set v0='VMZTHZ8WZ4KHWA' where id=9; -update noar ti set v0='VMZTHZ8WZ4KHWA' where id=9; -update noar tt set b0='Q8G4ANO9FWPMBSYSP7EU8TH2G' where id=9; -update noar ti set b0='Q8G4ANO9FWPMBSYSP7EU8TH2G' where id=9; -update noar tt set v0='GA0HBEDG28ISRLMNH6B45Y8P' where id=9; -update noar ti set v0='GA0HBEDG28ISRLMNH6B45Y8P' where id=9; -update noar tt set b1='IHM9GX2SND8MNR7AAF4UE02' where id=9; -update noar ti set b1='IHM9GX2SND8MNR7AAF4UE02' where id=9; -update noar tt set v0='MBJDOXW3LS0RS730WJ175KYZWATGWZQ' where id=9; -update noar ti set v0='MBJDOXW3LS0RS730WJ175KYZWATGWZQ' where id=9; -update noar tt set b2='WB84KK3ES0T' where id=9; -update noar ti set b2='WB84KK3ES0T' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -f0 int not null, -v0 varchar(256) not null, -b0 mediumblob not null, -b1 mediumblob not null, -b2 blob not null -) engine=tokudb; -insert into tt values (1,0,'','','',''); -insert into tt values (2,0,'','','',''); -insert into tt values (3,0,'','','',''); -insert into tt values (4,0,'','','',''); -insert into tt values (5,0,'','','',''); -insert into tt values (6,0,'','','',''); -insert into tt values (7,0,'','','',''); -insert into tt values (8,0,'','','',''); -insert into tt values (9,0,'','','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='QBY6LV' where id=1; -update noar ti set v0='QBY6LV' where id=1; -update noar tt set b0='OVKC107A0Y3ZCY12G43LYBUR' where id=1; -update noar ti set b0='OVKC107A0Y3ZCY12G43LYBUR' where id=1; -update noar tt set v0='K8LJYQ2PFKJDD' where id=1; -update noar ti set v0='K8LJYQ2PFKJDD' where id=1; -update noar tt set b1='GSYQNRKCBJJA' where id=1; -update noar ti set b1='GSYQNRKCBJJA' where id=1; -update noar tt set v0='E1U' where id=1; -update noar ti set v0='E1U' where id=1; -update noar tt set b2='MQQZGAUVAOEENS7AJ2' where id=1; -update noar ti set b2='MQQZGAUVAOEENS7AJ2' where id=1; -update noar tt set v0='S3WZ0YC9V011XSG4EEPPZ6H4MT4D' where id=2; -update noar ti set v0='S3WZ0YC9V011XSG4EEPPZ6H4MT4D' where id=2; -update noar tt set b0='DI83NAA0MNS3QRLM' where id=2; -update noar ti set b0='DI83NAA0MNS3QRLM' where id=2; -update noar tt set v0='JA6SRDWITUO9VV4TKXB7' where id=2; -update noar ti set v0='JA6SRDWITUO9VV4TKXB7' where id=2; -update noar tt set b1='13Z57OG4PEDBVPEFRHBRNPQ0V6' where id=2; -update noar ti set b1='13Z57OG4PEDBVPEFRHBRNPQ0V6' where id=2; -update noar tt set v0='NHJWJ601DZ' where id=2; -update noar ti set v0='NHJWJ601DZ' where id=2; -update noar tt set b2='QL3D8OO67BS' where id=2; -update noar ti set b2='QL3D8OO67BS' where id=2; -update noar tt set v0='FO13D2POSU4TKT366NP' where id=3; -update noar ti set v0='FO13D2POSU4TKT366NP' where id=3; -update noar tt set b0='F3P6CJK2U4KNYIXE' where id=3; -update noar ti set b0='F3P6CJK2U4KNYIXE' where id=3; -update noar tt set v0='EFFCKQKTEZ288' where id=3; -update noar ti set v0='EFFCKQKTEZ288' where id=3; -update noar tt set b1='8ETN5QNUEVH77IU8S0QCDQBTCD' where id=3; -update noar ti set b1='8ETN5QNUEVH77IU8S0QCDQBTCD' where id=3; -update noar tt set v0='W4CZLDZO3CQY0T4ACQH24FD' where id=3; -update noar ti set v0='W4CZLDZO3CQY0T4ACQH24FD' where id=3; -update noar tt set b2='68OQ9XSPWC' where id=3; -update noar ti set b2='68OQ9XSPWC' where id=3; -update noar tt set v0='C4CDQ5M2IABWBS42HAAS' where id=4; -update noar ti set v0='C4CDQ5M2IABWBS42HAAS' where id=4; -update noar tt set b0='5EJRVGKY0XB' where id=4; -update noar ti set b0='5EJRVGKY0XB' where id=4; -update noar tt set v0='F2WNH15FORSUB632R1FFBHY4B' where id=4; -update noar ti set v0='F2WNH15FORSUB632R1FFBHY4B' where id=4; -update noar tt set b1='NDCBEC2CY8G4VPOEQVMZFX8Y' where id=4; -update noar ti set b1='NDCBEC2CY8G4VPOEQVMZFX8Y' where id=4; -update noar tt set v0='BRVH6XJTK3DVSWMQG' where id=4; -update noar ti set v0='BRVH6XJTK3DVSWMQG' where id=4; -update noar tt set b2='8OMQPM95BTW6JLXXX4WSYCH82CJG34K' where id=4; -update noar ti set b2='8OMQPM95BTW6JLXXX4WSYCH82CJG34K' where id=4; -update noar tt set v0='B3EBNE7I32' where id=5; -update noar ti set v0='B3EBNE7I32' where id=5; -update noar tt set b0='P' where id=5; -update noar ti set b0='P' where id=5; -update noar tt set v0='AMZYJPSCET70XVUJMHCTXQBSXX' where id=5; -update noar ti set v0='AMZYJPSCET70XVUJMHCTXQBSXX' where id=5; -update noar tt set b1='RQJJQ' where id=5; -update noar ti set b1='RQJJQ' where id=5; -update noar tt set v0='SI' where id=5; -update noar ti set v0='SI' where id=5; -update noar tt set b2='1Q0W67XJ5R53' where id=5; -update noar ti set b2='1Q0W67XJ5R53' where id=5; -update noar tt set v0='W' where id=6; -update noar ti set v0='W' where id=6; -update noar tt set b0='ZQQZZS2650TVV58' where id=6; -update noar ti set b0='ZQQZZS2650TVV58' where id=6; -update noar tt set v0='FMX6N8SRJPGSUBJZS46S' where id=6; -update noar ti set v0='FMX6N8SRJPGSUBJZS46S' where id=6; -update noar tt set b1='T3VSKTNGPN0OLHGAV9K5Y1I5ERVQ' where id=6; -update noar ti set b1='T3VSKTNGPN0OLHGAV9K5Y1I5ERVQ' where id=6; -update noar tt set v0='ZR5A64D' where id=6; -update noar ti set v0='ZR5A64D' where id=6; -update noar tt set b2='0L98AT5YQK6KGF5' where id=6; -update noar ti set b2='0L98AT5YQK6KGF5' where id=6; -update noar tt set v0='F24NBRI1HGH6HU02SBHZLKL78KFV2W' where id=7; -update noar ti set v0='F24NBRI1HGH6HU02SBHZLKL78KFV2W' where id=7; -update noar tt set b0='3BCZN' where id=7; -update noar ti set b0='3BCZN' where id=7; -update noar tt set v0='NM07MR8SN9L69D0' where id=7; -update noar ti set v0='NM07MR8SN9L69D0' where id=7; -update noar tt set b1='2KFQF9IPL4WMX5Z' where id=7; -update noar ti set b1='2KFQF9IPL4WMX5Z' where id=7; -update noar tt set v0='2PCTBJ' where id=7; -update noar ti set v0='2PCTBJ' where id=7; -update noar tt set b2='QLHI32EKBMNNVQD' where id=7; -update noar ti set b2='QLHI32EKBMNNVQD' where id=7; -update noar tt set v0='S98ROI44IXUYDXQ' where id=8; -update noar ti set v0='S98ROI44IXUYDXQ' where id=8; -update noar tt set b0='NWISI' where id=8; -update noar ti set b0='NWISI' where id=8; -update noar tt set v0='8SG4UK11AXE016YB452' where id=8; -update noar ti set v0='8SG4UK11AXE016YB452' where id=8; -update noar tt set b1='9FGH3A2JVQ3GFF4CJ' where id=8; -update noar ti set b1='9FGH3A2JVQ3GFF4CJ' where id=8; -update noar tt set v0='8E54PD6V905HEA17WB' where id=8; -update noar ti set v0='8E54PD6V905HEA17WB' where id=8; -update noar tt set b2='ZMLRM3O0' where id=8; -update noar ti set b2='ZMLRM3O0' where id=8; -update noar tt set v0='9H2YM2J5E0BS0A8OJB8P24B2H3' where id=9; -update noar ti set v0='9H2YM2J5E0BS0A8OJB8P24B2H3' where id=9; -update noar tt set b0='F4H1' where id=9; -update noar ti set b0='F4H1' where id=9; -update noar tt set v0='U3URAFKJP8TL07NMU03N94JGNO' where id=9; -update noar ti set v0='U3URAFKJP8TL07NMU03N94JGNO' where id=9; -update noar tt set b1='WBKOZUBPFKC' where id=9; -update noar ti set b1='WBKOZUBPFKC' where id=9; -update noar tt set v0='950NBB1L1WJAYF' where id=9; -update noar ti set v0='950NBB1L1WJAYF' where id=9; -update noar tt set b2='3JZE6A0GL6K4055LXF8KEJUBALFGF6F1' where id=9; -update noar ti set b2='3JZE6A0GL6K4055LXF8KEJUBALFGF6F1' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -f0 int null, -v0 varchar(32) null, -b0 mediumblob null, -b1 mediumblob null, -b2 mediumblob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='9877QISJZWDG5TRCA0WOA7QDCQDY3N' where id=1; -update noar ti set v0='9877QISJZWDG5TRCA0WOA7QDCQDY3N' where id=1; -update noar tt set b0='UN1MQMGSL0USVSIKFO' where id=1; -update noar ti set b0='UN1MQMGSL0USVSIKFO' where id=1; -update noar tt set v0='O0N4X' where id=1; -update noar ti set v0='O0N4X' where id=1; -update noar tt set b1='31' where id=1; -update noar ti set b1='31' where id=1; -update noar tt set v0='X9TCNPDK1TY305U72VI6' where id=1; -update noar ti set v0='X9TCNPDK1TY305U72VI6' where id=1; -update noar tt set b2='06R' where id=1; -update noar ti set b2='06R' where id=1; -update noar tt set v0='L0N3UJP51CXLT3Z69XI6NAQ3EWP1GB' where id=2; -update noar ti set v0='L0N3UJP51CXLT3Z69XI6NAQ3EWP1GB' where id=2; -update noar tt set b0='LWH30LLDH2JV6TYUGF' where id=2; -update noar ti set b0='LWH30LLDH2JV6TYUGF' where id=2; -update noar tt set v0='2PI29TFFIO0' where id=2; -update noar ti set v0='2PI29TFFIO0' where id=2; -update noar tt set b1='K5YRI9TSHS67Z77F2A3S9U5U4RQW3C' where id=2; -update noar ti set b1='K5YRI9TSHS67Z77F2A3S9U5U4RQW3C' where id=2; -update noar tt set v0='9QIKKPAYU3XFX4C' where id=2; -update noar ti set v0='9QIKKPAYU3XFX4C' where id=2; -update noar tt set b2='8OCM2CRFW759M0' where id=2; -update noar ti set b2='8OCM2CRFW759M0' where id=2; -update noar tt set v0='ZOUS40IIDM9XTCG2Z7P9MCHS' where id=3; -update noar ti set v0='ZOUS40IIDM9XTCG2Z7P9MCHS' where id=3; -update noar tt set b0='7E3BD5O1' where id=3; -update noar ti set b0='7E3BD5O1' where id=3; -update noar tt set v0='QZ4KN75FEGVF9' where id=3; -update noar ti set v0='QZ4KN75FEGVF9' where id=3; -update noar tt set b1='QF1KX7WTP' where id=3; -update noar ti set b1='QF1KX7WTP' where id=3; -update noar tt set v0='HOPUNF7M30GQNI0Y7JXIU6AKYK3A4EG' where id=3; -update noar ti set v0='HOPUNF7M30GQNI0Y7JXIU6AKYK3A4EG' where id=3; -update noar tt set b2='WPHABIAUXA0U0' where id=3; -update noar ti set b2='WPHABIAUXA0U0' where id=3; -update noar tt set v0='4806XCACSQKO' where id=4; -update noar ti set v0='4806XCACSQKO' where id=4; -update noar tt set b0='JR71U4' where id=4; -update noar ti set b0='JR71U4' where id=4; -update noar tt set v0='6Q8RPDXCTCI75U8W6FV5TG1CE4ZRG' where id=4; -update noar ti set v0='6Q8RPDXCTCI75U8W6FV5TG1CE4ZRG' where id=4; -update noar tt set b1='N3FRK2FP' where id=4; -update noar ti set b1='N3FRK2FP' where id=4; -update noar tt set v0='QEBD6LKNO' where id=4; -update noar ti set v0='QEBD6LKNO' where id=4; -update noar tt set b2='6U63NHFD42RY20S1' where id=4; -update noar ti set b2='6U63NHFD42RY20S1' where id=4; -update noar tt set v0='3MO6O6SHTRK' where id=5; -update noar ti set v0='3MO6O6SHTRK' where id=5; -update noar tt set b0='IE3A9KPQJ7R4KNYF2WPAEEC97A' where id=5; -update noar ti set b0='IE3A9KPQJ7R4KNYF2WPAEEC97A' where id=5; -update noar tt set v0='LD26DWMCPJVL1K7' where id=5; -update noar ti set v0='LD26DWMCPJVL1K7' where id=5; -update noar tt set b1='L26WI76NIFVTSFMZ7GBBU40KKANO8Z6' where id=5; -update noar ti set b1='L26WI76NIFVTSFMZ7GBBU40KKANO8Z6' where id=5; -update noar tt set v0='KLH0JBWPYGSKYGZ8Q7NCG' where id=5; -update noar ti set v0='KLH0JBWPYGSKYGZ8Q7NCG' where id=5; -update noar tt set b2='IKQDOQT694KK' where id=5; -update noar ti set b2='IKQDOQT694KK' where id=5; -update noar tt set v0='KW7OUX2ZGXXIMXVNEP2MG15M13' where id=6; -update noar ti set v0='KW7OUX2ZGXXIMXVNEP2MG15M13' where id=6; -update noar tt set b0='KXRZKKZW7D' where id=6; -update noar ti set b0='KXRZKKZW7D' where id=6; -update noar tt set v0='5XINU22GELE81P0O8HFW2D' where id=6; -update noar ti set v0='5XINU22GELE81P0O8HFW2D' where id=6; -update noar tt set b1='MWM54FOMUB2WR' where id=6; -update noar ti set b1='MWM54FOMUB2WR' where id=6; -update noar tt set v0='1DD2B4KHSMHUW18CSMSPH12OMCH09L65' where id=6; -update noar ti set v0='1DD2B4KHSMHUW18CSMSPH12OMCH09L65' where id=6; -update noar tt set b2='4QRM7CD07XREJXMP2UWT7BK8NV3K' where id=6; -update noar ti set b2='4QRM7CD07XREJXMP2UWT7BK8NV3K' where id=6; -update noar tt set v0='46MBYC4OHHEGFY1K7928BN37LSBE' where id=7; -update noar ti set v0='46MBYC4OHHEGFY1K7928BN37LSBE' where id=7; -update noar tt set b0='5VHGNSJLOZ5IHO0WVQVNJ1WO5VUGHP8Y' where id=7; -update noar ti set b0='5VHGNSJLOZ5IHO0WVQVNJ1WO5VUGHP8Y' where id=7; -update noar tt set v0='7J' where id=7; -update noar ti set v0='7J' where id=7; -update noar tt set b1='FXXY2EWJE8JXKTH' where id=7; -update noar ti set b1='FXXY2EWJE8JXKTH' where id=7; -update noar tt set v0='1DXSFXQ' where id=7; -update noar ti set v0='1DXSFXQ' where id=7; -update noar tt set b2='8898HQDTJF' where id=7; -update noar ti set b2='8898HQDTJF' where id=7; -update noar tt set v0='9F82N2B9FI' where id=8; -update noar ti set v0='9F82N2B9FI' where id=8; -update noar tt set b0='D9P8FY' where id=8; -update noar ti set b0='D9P8FY' where id=8; -update noar tt set v0='0E6LKTH10EG' where id=8; -update noar ti set v0='0E6LKTH10EG' where id=8; -update noar tt set b1='PBB3AQ' where id=8; -update noar ti set b1='PBB3AQ' where id=8; -update noar tt set v0='L99E7LA' where id=8; -update noar ti set v0='L99E7LA' where id=8; -update noar tt set b2='ZW40C5QYC5' where id=8; -update noar ti set b2='ZW40C5QYC5' where id=8; -update noar tt set v0='VKA30BP6ECKRZPY0N3FP' where id=9; -update noar ti set v0='VKA30BP6ECKRZPY0N3FP' where id=9; -update noar tt set b0='O' where id=9; -update noar ti set b0='O' where id=9; -update noar tt set v0='14QD9JUSW4P8AYRHHH607B4V' where id=9; -update noar ti set v0='14QD9JUSW4P8AYRHHH607B4V' where id=9; -update noar tt set b1='8LY6P8ZBRNQM4VUGA9Y8K3PG9NKJR7ZB' where id=9; -update noar ti set b1='8LY6P8ZBRNQM4VUGA9Y8K3PG9NKJR7ZB' where id=9; -update noar tt set v0='PA6GLXJTEX' where id=9; -update noar ti set v0='PA6GLXJTEX' where id=9; -update noar tt set b2='KIEBI52U' where id=9; -update noar ti set b2='KIEBI52U' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -f0 int null, -v0 varchar(256) null, -b0 mediumblob null, -b1 mediumblob null, -b2 mediumblob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='H5HBU6R8BZYCIII1IFV4YLME' where id=1; -update noar ti set v0='H5HBU6R8BZYCIII1IFV4YLME' where id=1; -update noar tt set b0='N24KW0DCPYJQ2EQF0NHLE6FB7JJ' where id=1; -update noar ti set b0='N24KW0DCPYJQ2EQF0NHLE6FB7JJ' where id=1; -update noar tt set v0='14VXM7NSH8JELONFR89PG' where id=1; -update noar ti set v0='14VXM7NSH8JELONFR89PG' where id=1; -update noar tt set b1='BS5GV' where id=1; -update noar ti set b1='BS5GV' where id=1; -update noar tt set v0='RI5DGFRDWTME4' where id=1; -update noar ti set v0='RI5DGFRDWTME4' where id=1; -update noar tt set b2='QVO1VLYYV8QJ4KUSJDF' where id=1; -update noar ti set b2='QVO1VLYYV8QJ4KUSJDF' where id=1; -update noar tt set v0='DCJBP1W73KPH44P9A2F4' where id=2; -update noar ti set v0='DCJBP1W73KPH44P9A2F4' where id=2; -update noar tt set b0='R9SCSZYP2NW8W4MG5L4XPWV6LLUX9L' where id=2; -update noar ti set b0='R9SCSZYP2NW8W4MG5L4XPWV6LLUX9L' where id=2; -update noar tt set v0='B9KMSZ29WFF5IAY9K' where id=2; -update noar ti set v0='B9KMSZ29WFF5IAY9K' where id=2; -update noar tt set b1='G6EANYJD4AOC4R53' where id=2; -update noar ti set b1='G6EANYJD4AOC4R53' where id=2; -update noar tt set v0='QPFLNX' where id=2; -update noar ti set v0='QPFLNX' where id=2; -update noar tt set b2='N' where id=2; -update noar ti set b2='N' where id=2; -update noar tt set v0='KHET61D2' where id=3; -update noar ti set v0='KHET61D2' where id=3; -update noar tt set b0='HO5B1HZTHVILWBW1X9ZYWB63O' where id=3; -update noar ti set b0='HO5B1HZTHVILWBW1X9ZYWB63O' where id=3; -update noar tt set v0='PQDIOQK5LLXYD9GVBOM22P' where id=3; -update noar ti set v0='PQDIOQK5LLXYD9GVBOM22P' where id=3; -update noar tt set b1='EI1DPMO13ZMK5EE87' where id=3; -update noar ti set b1='EI1DPMO13ZMK5EE87' where id=3; -update noar tt set v0='7GDUXQNDOKFXNW9POZ8DDAYY83U7M3' where id=3; -update noar ti set v0='7GDUXQNDOKFXNW9POZ8DDAYY83U7M3' where id=3; -update noar tt set b2='0273OXVZ57ZESOFIFLBCTY4WPVM' where id=3; -update noar ti set b2='0273OXVZ57ZESOFIFLBCTY4WPVM' where id=3; -update noar tt set v0='G01U6X7A43G8Q' where id=4; -update noar ti set v0='G01U6X7A43G8Q' where id=4; -update noar tt set b0='2NIWV8FFS' where id=4; -update noar ti set b0='2NIWV8FFS' where id=4; -update noar tt set v0='9UK0J14GF0DC' where id=4; -update noar ti set v0='9UK0J14GF0DC' where id=4; -update noar tt set b1='B2C6Y4HNDL9QZKP2ZDU4BO5' where id=4; -update noar ti set b1='B2C6Y4HNDL9QZKP2ZDU4BO5' where id=4; -update noar tt set v0='3YLJH4XW0' where id=4; -update noar ti set v0='3YLJH4XW0' where id=4; -update noar tt set b2='AECACJFS' where id=4; -update noar ti set b2='AECACJFS' where id=4; -update noar tt set v0='311H3EHC' where id=5; -update noar ti set v0='311H3EHC' where id=5; -update noar tt set b0='YAHEPPLTBEXW0A4NGLNIOALW7' where id=5; -update noar ti set b0='YAHEPPLTBEXW0A4NGLNIOALW7' where id=5; -update noar tt set v0='0A8L603F5ZNLBXE528SF1KG8R93' where id=5; -update noar ti set v0='0A8L603F5ZNLBXE528SF1KG8R93' where id=5; -update noar tt set b1='4' where id=5; -update noar ti set b1='4' where id=5; -update noar tt set v0='WUBWN34O6QC9UJYYVEQ56BCS' where id=5; -update noar ti set v0='WUBWN34O6QC9UJYYVEQ56BCS' where id=5; -update noar tt set b2='DFVG6J' where id=5; -update noar ti set b2='DFVG6J' where id=5; -update noar tt set v0='WARQW9ICF8U8MQV4ZQBUENP2U3BEHL' where id=6; -update noar ti set v0='WARQW9ICF8U8MQV4ZQBUENP2U3BEHL' where id=6; -update noar tt set b0='NCEALEANHJ5S4YYUV' where id=6; -update noar ti set b0='NCEALEANHJ5S4YYUV' where id=6; -update noar tt set v0='G1NMBSNUER7DSXM0' where id=6; -update noar ti set v0='G1NMBSNUER7DSXM0' where id=6; -update noar tt set b1='HD4UGAIHZ3FS72PHGD5I9LH0S' where id=6; -update noar ti set b1='HD4UGAIHZ3FS72PHGD5I9LH0S' where id=6; -update noar tt set v0='QGNO39Z2T055QG39QV2NPSVI9MPY3J74' where id=6; -update noar ti set v0='QGNO39Z2T055QG39QV2NPSVI9MPY3J74' where id=6; -update noar tt set b2='AZ' where id=6; -update noar ti set b2='AZ' where id=6; -update noar tt set v0='MIR9' where id=7; -update noar ti set v0='MIR9' where id=7; -update noar tt set b0='RSKLUMYAC5LN4JWVT' where id=7; -update noar ti set b0='RSKLUMYAC5LN4JWVT' where id=7; -update noar tt set v0='NSAGD36PD97Q7OFAPSLGZ3Y5' where id=7; -update noar ti set v0='NSAGD36PD97Q7OFAPSLGZ3Y5' where id=7; -update noar tt set b1='G8YRCVXB3J11YVQOYRZDDHJ5Z12' where id=7; -update noar ti set b1='G8YRCVXB3J11YVQOYRZDDHJ5Z12' where id=7; -update noar tt set v0='JYUJ30HLYSNIO40BHKUUS9IMTYNKDD' where id=7; -update noar ti set v0='JYUJ30HLYSNIO40BHKUUS9IMTYNKDD' where id=7; -update noar tt set b2='AA5GR0WPXUI0ETO1HSEO3OZ' where id=7; -update noar ti set b2='AA5GR0WPXUI0ETO1HSEO3OZ' where id=7; -update noar tt set v0='MF5V32X6B9VVCDF' where id=8; -update noar ti set v0='MF5V32X6B9VVCDF' where id=8; -update noar tt set b0='WKAS4XO23A2VIXMW7UX56LGCJHH24T' where id=8; -update noar ti set b0='WKAS4XO23A2VIXMW7UX56LGCJHH24T' where id=8; -update noar tt set v0='40492I' where id=8; -update noar ti set v0='40492I' where id=8; -update noar tt set b1='K2XZKP6YUKJ599MBIULYS' where id=8; -update noar ti set b1='K2XZKP6YUKJ599MBIULYS' where id=8; -update noar tt set v0='AKIQYVM4DN6QAV7HPN905S1LCXZE7' where id=8; -update noar ti set v0='AKIQYVM4DN6QAV7HPN905S1LCXZE7' where id=8; -update noar tt set b2='9W4XY9Y8XCO6I5BWBQG' where id=8; -update noar ti set b2='9W4XY9Y8XCO6I5BWBQG' where id=8; -update noar tt set v0='8ODC8TJ8X32TFC6U6K' where id=9; -update noar ti set v0='8ODC8TJ8X32TFC6U6K' where id=9; -update noar tt set b0='B982RRGEVL02Y91VWCW7' where id=9; -update noar ti set b0='B982RRGEVL02Y91VWCW7' where id=9; -update noar tt set v0='CY' where id=9; -update noar ti set v0='CY' where id=9; -update noar tt set b1='WUS5' where id=9; -update noar ti set b1='WUS5' where id=9; -update noar tt set v0='DB6UV1N9FS9YCN3S' where id=9; -update noar ti set v0='DB6UV1N9FS9YCN3S' where id=9; -update noar tt set b2='2JR32MU3K1L2OY8KW7HU' where id=9; -update noar ti set b2='2JR32MU3K1L2OY8KW7HU' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -f0 int not null, -v0 varchar(32) not null, -b0 mediumblob not null, -b1 mediumblob not null, -b2 mediumblob not null -) engine=tokudb; -insert into tt values (1,0,'','','',''); -insert into tt values (2,0,'','','',''); -insert into tt values (3,0,'','','',''); -insert into tt values (4,0,'','','',''); -insert into tt values (5,0,'','','',''); -insert into tt values (6,0,'','','',''); -insert into tt values (7,0,'','','',''); -insert into tt values (8,0,'','','',''); -insert into tt values (9,0,'','','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='0BAHDVEMAF6TXCHRV8RZ' where id=1; -update noar ti set v0='0BAHDVEMAF6TXCHRV8RZ' where id=1; -update noar tt set b0='6W681RWYE9QLQA1SEJ4WFK' where id=1; -update noar ti set b0='6W681RWYE9QLQA1SEJ4WFK' where id=1; -update noar tt set v0='3P24TYJXMVSW1' where id=1; -update noar ti set v0='3P24TYJXMVSW1' where id=1; -update noar tt set b1='K4F6RIK9WB4LCL7XIFDP2XP8IG8XRCV2' where id=1; -update noar ti set b1='K4F6RIK9WB4LCL7XIFDP2XP8IG8XRCV2' where id=1; -update noar tt set v0='YWF7ZMWX1WUXMVUQXZSFQV70D59' where id=1; -update noar ti set v0='YWF7ZMWX1WUXMVUQXZSFQV70D59' where id=1; -update noar tt set b2='YQJN2J5I9IL' where id=1; -update noar ti set b2='YQJN2J5I9IL' where id=1; -update noar tt set v0='S' where id=2; -update noar ti set v0='S' where id=2; -update noar tt set b0='0VM3S2TQIMV9KGQRHO6042353V' where id=2; -update noar ti set b0='0VM3S2TQIMV9KGQRHO6042353V' where id=2; -update noar tt set v0='MH01K96WWUEY06YQA3AJVXDWPLH57' where id=2; -update noar ti set v0='MH01K96WWUEY06YQA3AJVXDWPLH57' where id=2; -update noar tt set b1='VYC8U14504KR3B7U94QMIG' where id=2; -update noar ti set b1='VYC8U14504KR3B7U94QMIG' where id=2; -update noar tt set v0='TTKPMGOB5J4C8ZDJZ5WJ' where id=2; -update noar ti set v0='TTKPMGOB5J4C8ZDJZ5WJ' where id=2; -update noar tt set b2='ZOH0X84S14SV8NUT513W9' where id=2; -update noar ti set b2='ZOH0X84S14SV8NUT513W9' where id=2; -update noar tt set v0='HXJD18J' where id=3; -update noar ti set v0='HXJD18J' where id=3; -update noar tt set b0='0BX' where id=3; -update noar ti set b0='0BX' where id=3; -update noar tt set v0='1' where id=3; -update noar ti set v0='1' where id=3; -update noar tt set b1='96NGGQAJN' where id=3; -update noar ti set b1='96NGGQAJN' where id=3; -update noar tt set v0='MC6CSVS6K1' where id=3; -update noar ti set v0='MC6CSVS6K1' where id=3; -update noar tt set b2='L0O4RE2TBDVJQ6W3N5S1O97E0P2B' where id=3; -update noar ti set b2='L0O4RE2TBDVJQ6W3N5S1O97E0P2B' where id=3; -update noar tt set v0='QF4JB1HEQD2QBB7V8G3E8O8I' where id=4; -update noar ti set v0='QF4JB1HEQD2QBB7V8G3E8O8I' where id=4; -update noar tt set b0='6I8CIW9S3IDV5NGH15SQK6WG7ZIMZGVU' where id=4; -update noar ti set b0='6I8CIW9S3IDV5NGH15SQK6WG7ZIMZGVU' where id=4; -update noar tt set v0='DCR9KRAGB88R2612GK5I7A0YZ8J4D0VD' where id=4; -update noar ti set v0='DCR9KRAGB88R2612GK5I7A0YZ8J4D0VD' where id=4; -update noar tt set b1='NI2C7ZOLRMSM6YGXBS8HPK1VS91PZ5N' where id=4; -update noar ti set b1='NI2C7ZOLRMSM6YGXBS8HPK1VS91PZ5N' where id=4; -update noar tt set v0='5XUO7VXPWMI' where id=4; -update noar ti set v0='5XUO7VXPWMI' where id=4; -update noar tt set b2='75SPATWCF81WH' where id=4; -update noar ti set b2='75SPATWCF81WH' where id=4; -update noar tt set v0='LO3ZCGWS2SG31I0OJDTQ1V0J7' where id=5; -update noar ti set v0='LO3ZCGWS2SG31I0OJDTQ1V0J7' where id=5; -update noar tt set b0='STKLF0T58SM0TNDE8LQ1SCESW3' where id=5; -update noar ti set b0='STKLF0T58SM0TNDE8LQ1SCESW3' where id=5; -update noar tt set v0='OWTAU1BMK3' where id=5; -update noar ti set v0='OWTAU1BMK3' where id=5; -update noar tt set b1='6ZBEU3POBSYDBCXXI' where id=5; -update noar ti set b1='6ZBEU3POBSYDBCXXI' where id=5; -update noar tt set v0='RZ8LS9TCURZQREHXPJC' where id=5; -update noar ti set v0='RZ8LS9TCURZQREHXPJC' where id=5; -update noar tt set b2='JRB2IC86L908' where id=5; -update noar ti set b2='JRB2IC86L908' where id=5; -update noar tt set v0='TX4Z95BP4ZFBM2P5KWOXWV3328QF' where id=6; -update noar ti set v0='TX4Z95BP4ZFBM2P5KWOXWV3328QF' where id=6; -update noar tt set b0='J7D0KN5E8QTPSXC6TG69YTQBKP0EAHN' where id=6; -update noar ti set b0='J7D0KN5E8QTPSXC6TG69YTQBKP0EAHN' where id=6; -update noar tt set v0='VT425GBDCBJHX0DF' where id=6; -update noar ti set v0='VT425GBDCBJHX0DF' where id=6; -update noar tt set b1='B1JP4IR0TVN5KUGN' where id=6; -update noar ti set b1='B1JP4IR0TVN5KUGN' where id=6; -update noar tt set v0='MRM55C4H2Q7ZH8UBLSONG' where id=6; -update noar ti set v0='MRM55C4H2Q7ZH8UBLSONG' where id=6; -update noar tt set b2='QL36ARLN7RQKK8L' where id=6; -update noar ti set b2='QL36ARLN7RQKK8L' where id=6; -update noar tt set v0='Q99C0OIYH65GU' where id=7; -update noar ti set v0='Q99C0OIYH65GU' where id=7; -update noar tt set b0='XDVX0DGI0CTY89ZM' where id=7; -update noar ti set b0='XDVX0DGI0CTY89ZM' where id=7; -update noar tt set v0='ACHAXOTSM8O8NI99' where id=7; -update noar ti set v0='ACHAXOTSM8O8NI99' where id=7; -update noar tt set b1='3JJMYB9CV3' where id=7; -update noar ti set b1='3JJMYB9CV3' where id=7; -update noar tt set v0='MGI4MN0JK78U6C672AM1UL4KV3G2D' where id=7; -update noar ti set v0='MGI4MN0JK78U6C672AM1UL4KV3G2D' where id=7; -update noar tt set b2='WA1UB0KFK' where id=7; -update noar ti set b2='WA1UB0KFK' where id=7; -update noar tt set v0='QJYN' where id=8; -update noar ti set v0='QJYN' where id=8; -update noar tt set b0='DIG7UHHJCFM2UO7OI4I386' where id=8; -update noar ti set b0='DIG7UHHJCFM2UO7OI4I386' where id=8; -update noar tt set v0='T03WQPBFRY625D8QVKQ0NJ0J' where id=8; -update noar ti set v0='T03WQPBFRY625D8QVKQ0NJ0J' where id=8; -update noar tt set b1='61D' where id=8; -update noar ti set b1='61D' where id=8; -update noar tt set v0='HE2FTABS59W' where id=8; -update noar ti set v0='HE2FTABS59W' where id=8; -update noar tt set b2='I95UH4GBSJIYOECBPWORJS8UENPO6LIE' where id=8; -update noar ti set b2='I95UH4GBSJIYOECBPWORJS8UENPO6LIE' where id=8; -update noar tt set v0='M42AB4VQ2ALSM9ACEITW5S' where id=9; -update noar ti set v0='M42AB4VQ2ALSM9ACEITW5S' where id=9; -update noar tt set b0='XNE8LXH4KCO' where id=9; -update noar ti set b0='XNE8LXH4KCO' where id=9; -update noar tt set v0='DW60C619CFATRZHWWYQ' where id=9; -update noar ti set v0='DW60C619CFATRZHWWYQ' where id=9; -update noar tt set b1='HPZYGB9ROV6YKMRFYMRL' where id=9; -update noar ti set b1='HPZYGB9ROV6YKMRFYMRL' where id=9; -update noar tt set v0='VCSXIF5FXB8JJ4K3A8' where id=9; -update noar ti set v0='VCSXIF5FXB8JJ4K3A8' where id=9; -update noar tt set b2='MWNN5' where id=9; -update noar ti set b2='MWNN5' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -f0 int not null, -v0 varchar(256) not null, -b0 mediumblob not null, -b1 mediumblob not null, -b2 mediumblob not null -) engine=tokudb; -insert into tt values (1,0,'','','',''); -insert into tt values (2,0,'','','',''); -insert into tt values (3,0,'','','',''); -insert into tt values (4,0,'','','',''); -insert into tt values (5,0,'','','',''); -insert into tt values (6,0,'','','',''); -insert into tt values (7,0,'','','',''); -insert into tt values (8,0,'','','',''); -insert into tt values (9,0,'','','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='H3TPN3DRU0XGIKN2FMSS5AWDSLXM' where id=1; -update noar ti set v0='H3TPN3DRU0XGIKN2FMSS5AWDSLXM' where id=1; -update noar tt set b0='XRX4H3LKY7PBHS8JDR4JM5D04I' where id=1; -update noar ti set b0='XRX4H3LKY7PBHS8JDR4JM5D04I' where id=1; -update noar tt set v0='E14IDYSDQPNLKU41DRZNPRMO2' where id=1; -update noar ti set v0='E14IDYSDQPNLKU41DRZNPRMO2' where id=1; -update noar tt set b1='HI2PJJPAS8' where id=1; -update noar ti set b1='HI2PJJPAS8' where id=1; -update noar tt set v0='HLQ9IBJE4ELQURD9B8L77PEAYY0670Q' where id=1; -update noar ti set v0='HLQ9IBJE4ELQURD9B8L77PEAYY0670Q' where id=1; -update noar tt set b2='PJ' where id=1; -update noar ti set b2='PJ' where id=1; -update noar tt set v0='FTDU0OC1GUNA7SDZHXJ7SPDEC7ZO20' where id=2; -update noar ti set v0='FTDU0OC1GUNA7SDZHXJ7SPDEC7ZO20' where id=2; -update noar tt set b0='ZRGVTEBI4KPJY8E06V' where id=2; -update noar ti set b0='ZRGVTEBI4KPJY8E06V' where id=2; -update noar tt set v0='VGU9UVGXAUOAOXCXZW' where id=2; -update noar ti set v0='VGU9UVGXAUOAOXCXZW' where id=2; -update noar tt set b1='65C9K7YS0ZCLWD' where id=2; -update noar ti set b1='65C9K7YS0ZCLWD' where id=2; -update noar tt set v0='LFWR2B61HLW3Q' where id=2; -update noar ti set v0='LFWR2B61HLW3Q' where id=2; -update noar tt set b2='JEA7LIHL8UDSL3' where id=2; -update noar ti set b2='JEA7LIHL8UDSL3' where id=2; -update noar tt set v0='JXELV8Z' where id=3; -update noar ti set v0='JXELV8Z' where id=3; -update noar tt set b0='98RUG' where id=3; -update noar ti set b0='98RUG' where id=3; -update noar tt set v0='ZZQVTZXL4IRGK' where id=3; -update noar ti set v0='ZZQVTZXL4IRGK' where id=3; -update noar tt set b1='LK0R7FFED8' where id=3; -update noar ti set b1='LK0R7FFED8' where id=3; -update noar tt set v0='HRA69F' where id=3; -update noar ti set v0='HRA69F' where id=3; -update noar tt set b2='ETNHVB7G17WDHSWG5SEOEGP8X5' where id=3; -update noar ti set b2='ETNHVB7G17WDHSWG5SEOEGP8X5' where id=3; -update noar tt set v0='SIY0Z6T64C411KAP626OXUDYOJD9IO' where id=4; -update noar ti set v0='SIY0Z6T64C411KAP626OXUDYOJD9IO' where id=4; -update noar tt set b0='YL6LRM' where id=4; -update noar ti set b0='YL6LRM' where id=4; -update noar tt set v0='BFPCF281ON415AEGCNGUWMNEE' where id=4; -update noar ti set v0='BFPCF281ON415AEGCNGUWMNEE' where id=4; -update noar tt set b1='5W7LZTC25UT1C1RGE' where id=4; -update noar ti set b1='5W7LZTC25UT1C1RGE' where id=4; -update noar tt set v0='1P6IZFJ8SB8YWFSKDHLJ1XLIPU1L' where id=4; -update noar ti set v0='1P6IZFJ8SB8YWFSKDHLJ1XLIPU1L' where id=4; -update noar tt set b2='ZT6' where id=4; -update noar ti set b2='ZT6' where id=4; -update noar tt set v0='61SFKGPZ7RI' where id=5; -update noar ti set v0='61SFKGPZ7RI' where id=5; -update noar tt set b0='C13THBYNTEWVXXX' where id=5; -update noar ti set b0='C13THBYNTEWVXXX' where id=5; -update noar tt set v0='NI9OREOUY0XPPP8S86G49Q' where id=5; -update noar ti set v0='NI9OREOUY0XPPP8S86G49Q' where id=5; -update noar tt set b1='Z7XN29W7Y' where id=5; -update noar ti set b1='Z7XN29W7Y' where id=5; -update noar tt set v0='8P3B048Y6X6EGUC6A6C1EN2R9SIARW' where id=5; -update noar ti set v0='8P3B048Y6X6EGUC6A6C1EN2R9SIARW' where id=5; -update noar tt set b2='62KSURH9XUQCN8E5FKTPVY3TUIC56VUW' where id=5; -update noar ti set b2='62KSURH9XUQCN8E5FKTPVY3TUIC56VUW' where id=5; -update noar tt set v0='5HVQIRGO' where id=6; -update noar ti set v0='5HVQIRGO' where id=6; -update noar tt set b0='AN2GWY2ANAVLC0MPS' where id=6; -update noar ti set b0='AN2GWY2ANAVLC0MPS' where id=6; -update noar tt set v0='FX1SAZS7FNLC5SLEU' where id=6; -update noar ti set v0='FX1SAZS7FNLC5SLEU' where id=6; -update noar tt set b1='ZUCS3JKAZ54F8TIBWRD2JFG43VGJ9' where id=6; -update noar ti set b1='ZUCS3JKAZ54F8TIBWRD2JFG43VGJ9' where id=6; -update noar tt set v0='GBNOLS59XYLDBFY8ZIT2ASYMD5MVEJOQ' where id=6; -update noar ti set v0='GBNOLS59XYLDBFY8ZIT2ASYMD5MVEJOQ' where id=6; -update noar tt set b2='K72OXPLKADZMIC5B1APJ8AA4SX' where id=6; -update noar ti set b2='K72OXPLKADZMIC5B1APJ8AA4SX' where id=6; -update noar tt set v0='KQBMDXVJJ0BM3S' where id=7; -update noar ti set v0='KQBMDXVJJ0BM3S' where id=7; -update noar tt set b0='CJLHH932LR1NWIT' where id=7; -update noar ti set b0='CJLHH932LR1NWIT' where id=7; -update noar tt set v0='R0VKSU' where id=7; -update noar ti set v0='R0VKSU' where id=7; -update noar tt set b1='E7WLWME8XHMA' where id=7; -update noar ti set b1='E7WLWME8XHMA' where id=7; -update noar tt set v0='SXK7F33NM5KD09' where id=7; -update noar ti set v0='SXK7F33NM5KD09' where id=7; -update noar tt set b2='K7UQ70V1P7NC7JO05F84' where id=7; -update noar ti set b2='K7UQ70V1P7NC7JO05F84' where id=7; -update noar tt set v0='B51VK1I' where id=8; -update noar ti set v0='B51VK1I' where id=8; -update noar tt set b0='PNO2' where id=8; -update noar ti set b0='PNO2' where id=8; -update noar tt set v0='XGGLAK4D7J89F' where id=8; -update noar ti set v0='XGGLAK4D7J89F' where id=8; -update noar tt set b1='ZTJ4' where id=8; -update noar ti set b1='ZTJ4' where id=8; -update noar tt set v0='8N7YU77T1DQVG6' where id=8; -update noar ti set v0='8N7YU77T1DQVG6' where id=8; -update noar tt set b2='JKJNOK108967KI694YJ3GMXN' where id=8; -update noar ti set b2='JKJNOK108967KI694YJ3GMXN' where id=8; -update noar tt set v0='5VSYNDN' where id=9; -update noar ti set v0='5VSYNDN' where id=9; -update noar tt set b0='97I9SQW6UACXU' where id=9; -update noar ti set b0='97I9SQW6UACXU' where id=9; -update noar tt set v0='6O7SAIM4O7WBH0CRK3VJ3RDIG' where id=9; -update noar ti set v0='6O7SAIM4O7WBH0CRK3VJ3RDIG' where id=9; -update noar tt set b1='GW5ZRV' where id=9; -update noar ti set b1='GW5ZRV' where id=9; -update noar tt set v0='49AEMDJRGYULPQ6H7Z98B2' where id=9; -update noar ti set v0='49AEMDJRGYULPQ6H7Z98B2' where id=9; -update noar tt set b2='S6AV9M95RBLBB6B1HTED9AT5CPLYT406' where id=9; -update noar ti set b2='S6AV9M95RBLBB6B1HTED9AT5CPLYT406' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -f0 int null, -v0 varchar(32) null, -b0 mediumblob null, -b1 mediumblob null, -b2 longblob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='G3JVL6F5LUIGOVJOV7XKIPINF8OTVVQ' where id=1; -update noar ti set v0='G3JVL6F5LUIGOVJOV7XKIPINF8OTVVQ' where id=1; -update noar tt set b0='5DHOY458T59FUCJF477T2EEBT8' where id=1; -update noar ti set b0='5DHOY458T59FUCJF477T2EEBT8' where id=1; -update noar tt set v0='F7J8497T' where id=1; -update noar ti set v0='F7J8497T' where id=1; -update noar tt set b1='6DCRKO' where id=1; -update noar ti set b1='6DCRKO' where id=1; -update noar tt set v0='2IT' where id=1; -update noar ti set v0='2IT' where id=1; -update noar tt set b2='ZMFJR3VBCSRKRNVWK20GDSORC4J' where id=1; -update noar ti set b2='ZMFJR3VBCSRKRNVWK20GDSORC4J' where id=1; -update noar tt set v0='K50NZH9' where id=2; -update noar ti set v0='K50NZH9' where id=2; -update noar tt set b0='5FHTDP' where id=2; -update noar ti set b0='5FHTDP' where id=2; -update noar tt set v0='DB73JMV8GO1JINNN1TJ0QIQC' where id=2; -update noar ti set v0='DB73JMV8GO1JINNN1TJ0QIQC' where id=2; -update noar tt set b1='3VDFPGI6KC2V7411W8R5GK1P8U31' where id=2; -update noar ti set b1='3VDFPGI6KC2V7411W8R5GK1P8U31' where id=2; -update noar tt set v0='S8Z8JGZ8BP8' where id=2; -update noar ti set v0='S8Z8JGZ8BP8' where id=2; -update noar tt set b2='3Q8ZNSY74C1' where id=2; -update noar ti set b2='3Q8ZNSY74C1' where id=2; -update noar tt set v0='3YX9721VVEJDUDA' where id=3; -update noar ti set v0='3YX9721VVEJDUDA' where id=3; -update noar tt set b0='JH8AS' where id=3; -update noar ti set b0='JH8AS' where id=3; -update noar tt set v0='29WHSNKACBSE2JKTQ9FCIVNPSFS6AQ5A' where id=3; -update noar ti set v0='29WHSNKACBSE2JKTQ9FCIVNPSFS6AQ5A' where id=3; -update noar tt set b1='SEKWFEUG96PK' where id=3; -update noar ti set b1='SEKWFEUG96PK' where id=3; -update noar tt set v0='GQS651EF8DJ41CDK2TZAITF' where id=3; -update noar ti set v0='GQS651EF8DJ41CDK2TZAITF' where id=3; -update noar tt set b2='CSEAJ4G5WAKF6JHIWKU' where id=3; -update noar ti set b2='CSEAJ4G5WAKF6JHIWKU' where id=3; -update noar tt set v0='T3JKP' where id=4; -update noar ti set v0='T3JKP' where id=4; -update noar tt set b0='NOHMKZ1WS' where id=4; -update noar ti set b0='NOHMKZ1WS' where id=4; -update noar tt set v0='FADTOTBMZ6' where id=4; -update noar ti set v0='FADTOTBMZ6' where id=4; -update noar tt set b1='X618XFZRZ' where id=4; -update noar ti set b1='X618XFZRZ' where id=4; -update noar tt set v0='7WCT37YR' where id=4; -update noar ti set v0='7WCT37YR' where id=4; -update noar tt set b2='DN8CZ3FLXM' where id=4; -update noar ti set b2='DN8CZ3FLXM' where id=4; -update noar tt set v0='MDC60H' where id=5; -update noar ti set v0='MDC60H' where id=5; -update noar tt set b0='HLBZP30B1F8HXDJ8VM1VV5JN2QM' where id=5; -update noar ti set b0='HLBZP30B1F8HXDJ8VM1VV5JN2QM' where id=5; -update noar tt set v0='4LHRO5LIG9GTI6XWHNM' where id=5; -update noar ti set v0='4LHRO5LIG9GTI6XWHNM' where id=5; -update noar tt set b1='A42N14FN6ZUFJPG25N7' where id=5; -update noar ti set b1='A42N14FN6ZUFJPG25N7' where id=5; -update noar tt set v0='FSTR36P4I756P5AOTMPKMBW77976OOY' where id=5; -update noar ti set v0='FSTR36P4I756P5AOTMPKMBW77976OOY' where id=5; -update noar tt set b2='B26H7JBWQ46WY66JOVMXDB2T4H0E' where id=5; -update noar ti set b2='B26H7JBWQ46WY66JOVMXDB2T4H0E' where id=5; -update noar tt set v0='5ER9SBYR474TI' where id=6; -update noar ti set v0='5ER9SBYR474TI' where id=6; -update noar tt set b0='ELHTM5FH345EH12P07IL0HM7XC8GSBM3' where id=6; -update noar ti set b0='ELHTM5FH345EH12P07IL0HM7XC8GSBM3' where id=6; -update noar tt set v0='6I5N96WQPOJUA26UKYGJYN' where id=6; -update noar ti set v0='6I5N96WQPOJUA26UKYGJYN' where id=6; -update noar tt set b1='B669WKZJ5' where id=6; -update noar ti set b1='B669WKZJ5' where id=6; -update noar tt set v0='PLHRL5ENXYTLELOPPWT' where id=6; -update noar ti set v0='PLHRL5ENXYTLELOPPWT' where id=6; -update noar tt set b2='NUPN5ITY9WVM5KHUSC1R' where id=6; -update noar ti set b2='NUPN5ITY9WVM5KHUSC1R' where id=6; -update noar tt set v0='3VEMKM7M58PWF6TYMXMGGSHC2A' where id=7; -update noar ti set v0='3VEMKM7M58PWF6TYMXMGGSHC2A' where id=7; -update noar tt set b0='OCDOMAN43X9TWS87LT5HAJZF' where id=7; -update noar ti set b0='OCDOMAN43X9TWS87LT5HAJZF' where id=7; -update noar tt set v0='L38LX68UP48MBJO0FN2JZHDEUY' where id=7; -update noar ti set v0='L38LX68UP48MBJO0FN2JZHDEUY' where id=7; -update noar tt set b1='XE845LW8Y' where id=7; -update noar ti set b1='XE845LW8Y' where id=7; -update noar tt set v0='YU4BP3ST769M9ZEP' where id=7; -update noar ti set v0='YU4BP3ST769M9ZEP' where id=7; -update noar tt set b2='GWQJ' where id=7; -update noar ti set b2='GWQJ' where id=7; -update noar tt set v0='LEAT3THR6XNFG' where id=8; -update noar ti set v0='LEAT3THR6XNFG' where id=8; -update noar tt set b0='KEHBDLF75SC4X3KLT' where id=8; -update noar ti set b0='KEHBDLF75SC4X3KLT' where id=8; -update noar tt set v0='G' where id=8; -update noar ti set v0='G' where id=8; -update noar tt set b1='3PTN937' where id=8; -update noar ti set b1='3PTN937' where id=8; -update noar tt set v0='EJYW79RK0GN653T7LD02B3RYRVBS00W' where id=8; -update noar ti set v0='EJYW79RK0GN653T7LD02B3RYRVBS00W' where id=8; -update noar tt set b2='EV79D96U3W' where id=8; -update noar ti set b2='EV79D96U3W' where id=8; -update noar tt set v0='31J2F45RFWPSMUELRIH1KG' where id=9; -update noar ti set v0='31J2F45RFWPSMUELRIH1KG' where id=9; -update noar tt set b0='K56NDM1AELA0TBO1Y' where id=9; -update noar ti set b0='K56NDM1AELA0TBO1Y' where id=9; -update noar tt set v0='P812SBQB6NX6N5H7238C2C' where id=9; -update noar ti set v0='P812SBQB6NX6N5H7238C2C' where id=9; -update noar tt set b1='ZNK04XXCLH7TT414M9TBSUZ7FFQEVXWO' where id=9; -update noar ti set b1='ZNK04XXCLH7TT414M9TBSUZ7FFQEVXWO' where id=9; -update noar tt set v0='M7JE77EBR4ZCJS86WFQM5DZ6XV67' where id=9; -update noar ti set v0='M7JE77EBR4ZCJS86WFQM5DZ6XV67' where id=9; -update noar tt set b2='SE5XDPPMCIFPJRA21NUUUCU45M1B' where id=9; -update noar ti set b2='SE5XDPPMCIFPJRA21NUUUCU45M1B' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -f0 int null, -v0 varchar(256) null, -b0 mediumblob null, -b1 mediumblob null, -b2 longblob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='CK8A595P72N6P0OL4S' where id=1; -update noar ti set v0='CK8A595P72N6P0OL4S' where id=1; -update noar tt set b0='J7O19GQZK52JRH9211' where id=1; -update noar ti set b0='J7O19GQZK52JRH9211' where id=1; -update noar tt set v0='QYPTT3WQBKIL8QF' where id=1; -update noar ti set v0='QYPTT3WQBKIL8QF' where id=1; -update noar tt set b1='HQ9CUW8ZQ96SZCC0E77W' where id=1; -update noar ti set b1='HQ9CUW8ZQ96SZCC0E77W' where id=1; -update noar tt set v0='OO8PDNF7H3GVKL5U0YQO8ETO7N32HP' where id=1; -update noar ti set v0='OO8PDNF7H3GVKL5U0YQO8ETO7N32HP' where id=1; -update noar tt set b2='8I6PRR2IY415NNT5M544QAP60CM7' where id=1; -update noar ti set b2='8I6PRR2IY415NNT5M544QAP60CM7' where id=1; -update noar tt set v0='5YVCJ5AZVA17EFOD0P0P7CZ939P4T' where id=2; -update noar ti set v0='5YVCJ5AZVA17EFOD0P0P7CZ939P4T' where id=2; -update noar tt set b0='H2VH' where id=2; -update noar ti set b0='H2VH' where id=2; -update noar tt set v0='QF017CHXF2CGB6VEDIU7K7NABF2GXX' where id=2; -update noar ti set v0='QF017CHXF2CGB6VEDIU7K7NABF2GXX' where id=2; -update noar tt set b1='L7Z8' where id=2; -update noar ti set b1='L7Z8' where id=2; -update noar tt set v0='Y02JEIX25Q43038ASD0AG4JCKMK62OBV' where id=2; -update noar ti set v0='Y02JEIX25Q43038ASD0AG4JCKMK62OBV' where id=2; -update noar tt set b2='EHON58K2C' where id=2; -update noar ti set b2='EHON58K2C' where id=2; -update noar tt set v0='3XHE45N1F3RXNCNEH2MP' where id=3; -update noar ti set v0='3XHE45N1F3RXNCNEH2MP' where id=3; -update noar tt set b0='4VW8YCBJH0AFCXD' where id=3; -update noar ti set b0='4VW8YCBJH0AFCXD' where id=3; -update noar tt set v0='0FGVW3' where id=3; -update noar ti set v0='0FGVW3' where id=3; -update noar tt set b1='L60ZXJ' where id=3; -update noar ti set b1='L60ZXJ' where id=3; -update noar tt set v0='ZR863418A2MYJRI5SWKECGR85X' where id=3; -update noar ti set v0='ZR863418A2MYJRI5SWKECGR85X' where id=3; -update noar tt set b2='QRXY106JJJXT7BC7' where id=3; -update noar ti set b2='QRXY106JJJXT7BC7' where id=3; -update noar tt set v0='KXTKUTFBHZ6JYXXOVJETN5' where id=4; -update noar ti set v0='KXTKUTFBHZ6JYXXOVJETN5' where id=4; -update noar tt set b0='C' where id=4; -update noar ti set b0='C' where id=4; -update noar tt set v0='PY' where id=4; -update noar ti set v0='PY' where id=4; -update noar tt set b1='43N2' where id=4; -update noar ti set b1='43N2' where id=4; -update noar tt set v0='QKL4P3Q8E00IC9BNL' where id=4; -update noar ti set v0='QKL4P3Q8E00IC9BNL' where id=4; -update noar tt set b2='ZKR2B48NE4' where id=4; -update noar ti set b2='ZKR2B48NE4' where id=4; -update noar tt set v0='7UTT0GWR' where id=5; -update noar ti set v0='7UTT0GWR' where id=5; -update noar tt set b0='GBPSWEUC07S8CEQK6F9F4C901NU' where id=5; -update noar ti set b0='GBPSWEUC07S8CEQK6F9F4C901NU' where id=5; -update noar tt set v0='89UD0Z2ZC9T1TZTGGWHENLYN1D85J' where id=5; -update noar ti set v0='89UD0Z2ZC9T1TZTGGWHENLYN1D85J' where id=5; -update noar tt set b1='5XU3NUX0CTN4DG09ZNH' where id=5; -update noar ti set b1='5XU3NUX0CTN4DG09ZNH' where id=5; -update noar tt set v0='LALQ' where id=5; -update noar ti set v0='LALQ' where id=5; -update noar tt set b2='SH' where id=5; -update noar ti set b2='SH' where id=5; -update noar tt set v0='R6JLQZGKWR81SZ' where id=6; -update noar ti set v0='R6JLQZGKWR81SZ' where id=6; -update noar tt set b0='237UZM1ZBF6FRKWIUBB8NJME' where id=6; -update noar ti set b0='237UZM1ZBF6FRKWIUBB8NJME' where id=6; -update noar tt set v0='26U' where id=6; -update noar ti set v0='26U' where id=6; -update noar tt set b1='I1AR4ITBCZM7156AZT3CWE60XJME' where id=6; -update noar ti set b1='I1AR4ITBCZM7156AZT3CWE60XJME' where id=6; -update noar tt set v0='SAO0AZ6GBN5QSQIFF1A7' where id=6; -update noar ti set v0='SAO0AZ6GBN5QSQIFF1A7' where id=6; -update noar tt set b2='X60FUXSPG9YLJN3DLI9C0E0' where id=6; -update noar ti set b2='X60FUXSPG9YLJN3DLI9C0E0' where id=6; -update noar tt set v0='9A36ANO' where id=7; -update noar ti set v0='9A36ANO' where id=7; -update noar tt set b0='1GMKUTQSGOOHV3R2YXKD9ITUNH5' where id=7; -update noar ti set b0='1GMKUTQSGOOHV3R2YXKD9ITUNH5' where id=7; -update noar tt set v0='FYLAAPTKRR6ZYTPBUCMQI' where id=7; -update noar ti set v0='FYLAAPTKRR6ZYTPBUCMQI' where id=7; -update noar tt set b1='Q1XEWKNBFERKC9' where id=7; -update noar ti set b1='Q1XEWKNBFERKC9' where id=7; -update noar tt set v0='NMOYYKNGCKC52TXEY2EO2WHLBPX9L9' where id=7; -update noar ti set v0='NMOYYKNGCKC52TXEY2EO2WHLBPX9L9' where id=7; -update noar tt set b2='9Z9CFXP2RLDIZX18MHIYODG0N0T7' where id=7; -update noar ti set b2='9Z9CFXP2RLDIZX18MHIYODG0N0T7' where id=7; -update noar tt set v0='VFXDZSP5SV' where id=8; -update noar ti set v0='VFXDZSP5SV' where id=8; -update noar tt set b0='DCFZLAGM7VK0G' where id=8; -update noar ti set b0='DCFZLAGM7VK0G' where id=8; -update noar tt set v0='NZPFG9XUIP7E47FJ0BZO0HCO8KDVZI3' where id=8; -update noar ti set v0='NZPFG9XUIP7E47FJ0BZO0HCO8KDVZI3' where id=8; -update noar tt set b1='HYIUARFCUAQK0LECUQXMI5GZ6ECUO7J' where id=8; -update noar ti set b1='HYIUARFCUAQK0LECUQXMI5GZ6ECUO7J' where id=8; -update noar tt set v0='CM' where id=8; -update noar ti set v0='CM' where id=8; -update noar tt set b2='O8RWVET0PPHFRWEQ3' where id=8; -update noar ti set b2='O8RWVET0PPHFRWEQ3' where id=8; -update noar tt set v0='UV4H4JDL39' where id=9; -update noar ti set v0='UV4H4JDL39' where id=9; -update noar tt set b0='ORYI7OW' where id=9; -update noar ti set b0='ORYI7OW' where id=9; -update noar tt set v0='Z2JRH4QP5Z4LYVM1U0C1' where id=9; -update noar ti set v0='Z2JRH4QP5Z4LYVM1U0C1' where id=9; -update noar tt set b1='51SMCI56FBSZTR1X2EIFCVWZHREK' where id=9; -update noar ti set b1='51SMCI56FBSZTR1X2EIFCVWZHREK' where id=9; -update noar tt set v0='UG2AUGUD6P92US' where id=9; -update noar ti set v0='UG2AUGUD6P92US' where id=9; -update noar tt set b2='KXW83HP0OM4TVPRR3OJKPX2VWZXBL' where id=9; -update noar ti set b2='KXW83HP0OM4TVPRR3OJKPX2VWZXBL' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -f0 int not null, -v0 varchar(32) not null, -b0 mediumblob not null, -b1 mediumblob not null, -b2 longblob not null -) engine=tokudb; -insert into tt values (1,0,'','','',''); -insert into tt values (2,0,'','','',''); -insert into tt values (3,0,'','','',''); -insert into tt values (4,0,'','','',''); -insert into tt values (5,0,'','','',''); -insert into tt values (6,0,'','','',''); -insert into tt values (7,0,'','','',''); -insert into tt values (8,0,'','','',''); -insert into tt values (9,0,'','','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='JKNAQNP4WZ9VV6OASGH5' where id=1; -update noar ti set v0='JKNAQNP4WZ9VV6OASGH5' where id=1; -update noar tt set b0='0Q811XJSVP' where id=1; -update noar ti set b0='0Q811XJSVP' where id=1; -update noar tt set v0='0TJ92Z9GHE5VEFS2IZOIMMR' where id=1; -update noar ti set v0='0TJ92Z9GHE5VEFS2IZOIMMR' where id=1; -update noar tt set b1='DX0EWRZ4W4YCMYXVZ5O7OZE46WAN9YUP' where id=1; -update noar ti set b1='DX0EWRZ4W4YCMYXVZ5O7OZE46WAN9YUP' where id=1; -update noar tt set v0='G7ASUHP0EJGKN5QLO78QR12B' where id=1; -update noar ti set v0='G7ASUHP0EJGKN5QLO78QR12B' where id=1; -update noar tt set b2='UNTAPML9' where id=1; -update noar ti set b2='UNTAPML9' where id=1; -update noar tt set v0='H1G1UZPE15HKKROLKXWIFYE' where id=2; -update noar ti set v0='H1G1UZPE15HKKROLKXWIFYE' where id=2; -update noar tt set b0='L9X48NG' where id=2; -update noar ti set b0='L9X48NG' where id=2; -update noar tt set v0='5UCSZZCCYQ' where id=2; -update noar ti set v0='5UCSZZCCYQ' where id=2; -update noar tt set b1='MB6A2GQSXVR59TCXRCX4' where id=2; -update noar ti set b1='MB6A2GQSXVR59TCXRCX4' where id=2; -update noar tt set v0='M5SAO36OAJM9IIQ37D' where id=2; -update noar ti set v0='M5SAO36OAJM9IIQ37D' where id=2; -update noar tt set b2='Q1HKK3' where id=2; -update noar ti set b2='Q1HKK3' where id=2; -update noar tt set v0='J6MA' where id=3; -update noar ti set v0='J6MA' where id=3; -update noar tt set b0='UZI0FZJX2A0OUUI0V' where id=3; -update noar ti set b0='UZI0FZJX2A0OUUI0V' where id=3; -update noar tt set v0='IAR8ESMFN3Y6UPCCCPHAKFFRYB' where id=3; -update noar ti set v0='IAR8ESMFN3Y6UPCCCPHAKFFRYB' where id=3; -update noar tt set b1='8FFELU8R14UWY8WJEA8EC27W3O15BS9C' where id=3; -update noar ti set b1='8FFELU8R14UWY8WJEA8EC27W3O15BS9C' where id=3; -update noar tt set v0='7ODYWRSK1BZDX1AL66Q3BONXGK5W' where id=3; -update noar ti set v0='7ODYWRSK1BZDX1AL66Q3BONXGK5W' where id=3; -update noar tt set b2='L9A4N5AWUYQV92BS70TV9LRUW71' where id=3; -update noar ti set b2='L9A4N5AWUYQV92BS70TV9LRUW71' where id=3; -update noar tt set v0='OLIBLMY4IN28GHAA2QN' where id=4; -update noar ti set v0='OLIBLMY4IN28GHAA2QN' where id=4; -update noar tt set b0='ROUA8LL7' where id=4; -update noar ti set b0='ROUA8LL7' where id=4; -update noar tt set v0='T033JU8NH1PVSVG9HOJV' where id=4; -update noar ti set v0='T033JU8NH1PVSVG9HOJV' where id=4; -update noar tt set b1='2C6T' where id=4; -update noar ti set b1='2C6T' where id=4; -update noar tt set v0='XXV7025GRIS8' where id=4; -update noar ti set v0='XXV7025GRIS8' where id=4; -update noar tt set b2='40VP9TDL' where id=4; -update noar ti set b2='40VP9TDL' where id=4; -update noar tt set v0='S' where id=5; -update noar ti set v0='S' where id=5; -update noar tt set b0='AA9PFDK3DJWQZP' where id=5; -update noar ti set b0='AA9PFDK3DJWQZP' where id=5; -update noar tt set v0='YK7CCBUDXR' where id=5; -update noar ti set v0='YK7CCBUDXR' where id=5; -update noar tt set b1='FAHYBOK7WST5OH1WGJG053LW9C9' where id=5; -update noar ti set b1='FAHYBOK7WST5OH1WGJG053LW9C9' where id=5; -update noar tt set v0='8SG1MPK9JNAZ90O3KTL' where id=5; -update noar ti set v0='8SG1MPK9JNAZ90O3KTL' where id=5; -update noar tt set b2='JTJ4S5' where id=5; -update noar ti set b2='JTJ4S5' where id=5; -update noar tt set v0='9YXCB' where id=6; -update noar ti set v0='9YXCB' where id=6; -update noar tt set b0='67MBNZG2H83' where id=6; -update noar ti set b0='67MBNZG2H83' where id=6; -update noar tt set v0='5MUB5WMI8O' where id=6; -update noar ti set v0='5MUB5WMI8O' where id=6; -update noar tt set b1='K8501YN77P2PQ' where id=6; -update noar ti set b1='K8501YN77P2PQ' where id=6; -update noar tt set v0='K6IUW4DXQEBY9BSKVO8R4D' where id=6; -update noar ti set v0='K6IUW4DXQEBY9BSKVO8R4D' where id=6; -update noar tt set b2='DBBHQMOIZ4DIWKSE0JRUACSQZOPPUW28' where id=6; -update noar ti set b2='DBBHQMOIZ4DIWKSE0JRUACSQZOPPUW28' where id=6; -update noar tt set v0='C7KLRM1NQYDVU9IJYR' where id=7; -update noar ti set v0='C7KLRM1NQYDVU9IJYR' where id=7; -update noar tt set b0='17B18IBW88F0FCN065LYHAZDS6DFHJ' where id=7; -update noar ti set b0='17B18IBW88F0FCN065LYHAZDS6DFHJ' where id=7; -update noar tt set v0='QPAGZE3ZJTG0D7ANB4FBDGMX' where id=7; -update noar ti set v0='QPAGZE3ZJTG0D7ANB4FBDGMX' where id=7; -update noar tt set b1='XSGF4C3YXBD927GJNUN' where id=7; -update noar ti set b1='XSGF4C3YXBD927GJNUN' where id=7; -update noar tt set v0='Q1JIN8ZT' where id=7; -update noar ti set v0='Q1JIN8ZT' where id=7; -update noar tt set b2='0V72PNGG73CY' where id=7; -update noar ti set b2='0V72PNGG73CY' where id=7; -update noar tt set v0='RHLAQ8SV' where id=8; -update noar ti set v0='RHLAQ8SV' where id=8; -update noar tt set b0='K5C5I2W8AMI9NF9NMWRO' where id=8; -update noar ti set b0='K5C5I2W8AMI9NF9NMWRO' where id=8; -update noar tt set v0='YID3V' where id=8; -update noar ti set v0='YID3V' where id=8; -update noar tt set b1='KWMZJ' where id=8; -update noar ti set b1='KWMZJ' where id=8; -update noar tt set v0='GP4X' where id=8; -update noar ti set v0='GP4X' where id=8; -update noar tt set b2='8PI6RRBDDVIZ342W35RVJBY2' where id=8; -update noar ti set b2='8PI6RRBDDVIZ342W35RVJBY2' where id=8; -update noar tt set v0='06I9GWIQM3NFUJEJ0A9VE0KIYMKA4' where id=9; -update noar ti set v0='06I9GWIQM3NFUJEJ0A9VE0KIYMKA4' where id=9; -update noar tt set b0='F2AUP44P7EOZ10177HOB9T4N' where id=9; -update noar ti set b0='F2AUP44P7EOZ10177HOB9T4N' where id=9; -update noar tt set v0='AXQPXAHFK' where id=9; -update noar ti set v0='AXQPXAHFK' where id=9; -update noar tt set b1='IJP5EZO9JW1KMEJ8PQF' where id=9; -update noar ti set b1='IJP5EZO9JW1KMEJ8PQF' where id=9; -update noar tt set v0='OXPWSD3WP4GXVJ' where id=9; -update noar ti set v0='OXPWSD3WP4GXVJ' where id=9; -update noar tt set b2='E2QYLAU9USSLI4YIGCW3QFYMGVG' where id=9; -update noar ti set b2='E2QYLAU9USSLI4YIGCW3QFYMGVG' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -f0 int not null, -v0 varchar(256) not null, -b0 mediumblob not null, -b1 mediumblob not null, -b2 longblob not null -) engine=tokudb; -insert into tt values (1,0,'','','',''); -insert into tt values (2,0,'','','',''); -insert into tt values (3,0,'','','',''); -insert into tt values (4,0,'','','',''); -insert into tt values (5,0,'','','',''); -insert into tt values (6,0,'','','',''); -insert into tt values (7,0,'','','',''); -insert into tt values (8,0,'','','',''); -insert into tt values (9,0,'','','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='WLBAV4077MELIJ5HWJH70J03' where id=1; -update noar ti set v0='WLBAV4077MELIJ5HWJH70J03' where id=1; -update noar tt set b0='KQS' where id=1; -update noar ti set b0='KQS' where id=1; -update noar tt set v0='YU03X2GVVITELQYT9J1IKYOL6W3VZ' where id=1; -update noar ti set v0='YU03X2GVVITELQYT9J1IKYOL6W3VZ' where id=1; -update noar tt set b1='59B1WBBTEGKNT263OZ4IL9R32A6YDZZ3' where id=1; -update noar ti set b1='59B1WBBTEGKNT263OZ4IL9R32A6YDZZ3' where id=1; -update noar tt set v0='TKG645' where id=1; -update noar ti set v0='TKG645' where id=1; -update noar tt set b2='KOBHB4D2GT28QYBD70T4SGVU' where id=1; -update noar ti set b2='KOBHB4D2GT28QYBD70T4SGVU' where id=1; -update noar tt set v0='A1P9KN' where id=2; -update noar ti set v0='A1P9KN' where id=2; -update noar tt set b0='A7FNK' where id=2; -update noar ti set b0='A7FNK' where id=2; -update noar tt set v0='HQ5FNSCF2772N544PY57GIOL2Q3RWVBY' where id=2; -update noar ti set v0='HQ5FNSCF2772N544PY57GIOL2Q3RWVBY' where id=2; -update noar tt set b1='3C9XJOW6BMZYSEJ0FOGYE2YCZ' where id=2; -update noar ti set b1='3C9XJOW6BMZYSEJ0FOGYE2YCZ' where id=2; -update noar tt set v0='UYWFBTP60GXKJL9OS52PHFM6SS' where id=2; -update noar ti set v0='UYWFBTP60GXKJL9OS52PHFM6SS' where id=2; -update noar tt set b2='PPEAK' where id=2; -update noar ti set b2='PPEAK' where id=2; -update noar tt set v0='INIDZFWSJSG95SVE' where id=3; -update noar ti set v0='INIDZFWSJSG95SVE' where id=3; -update noar tt set b0='EI893KPUOL6VWUA' where id=3; -update noar ti set b0='EI893KPUOL6VWUA' where id=3; -update noar tt set v0='K4P51E7' where id=3; -update noar ti set v0='K4P51E7' where id=3; -update noar tt set b1='0ZYXW7RES' where id=3; -update noar ti set b1='0ZYXW7RES' where id=3; -update noar tt set v0='VUPVR1JZYCR1LOMCKHAHZBRZMGS6L6O8' where id=3; -update noar ti set v0='VUPVR1JZYCR1LOMCKHAHZBRZMGS6L6O8' where id=3; -update noar tt set b2='Q6MR070B4AJD12' where id=3; -update noar ti set b2='Q6MR070B4AJD12' where id=3; -update noar tt set v0='WVDN5W' where id=4; -update noar ti set v0='WVDN5W' where id=4; -update noar tt set b0='8N4JGT2EVQVOGELBN1PNF5NGF55HNNZR' where id=4; -update noar ti set b0='8N4JGT2EVQVOGELBN1PNF5NGF55HNNZR' where id=4; -update noar tt set v0='OF3Q0Q64WV7JSJBJVEJ2104SD1HK' where id=4; -update noar ti set v0='OF3Q0Q64WV7JSJBJVEJ2104SD1HK' where id=4; -update noar tt set b1='K363TWC4' where id=4; -update noar ti set b1='K363TWC4' where id=4; -update noar tt set v0='PAA5JMZPSTM9XS3LI5KRXK2TCP3K6P2S' where id=4; -update noar ti set v0='PAA5JMZPSTM9XS3LI5KRXK2TCP3K6P2S' where id=4; -update noar tt set b2='6JBS4YIV992S69JTTS' where id=4; -update noar ti set b2='6JBS4YIV992S69JTTS' where id=4; -update noar tt set v0='PZJOGPY71EHNFVTQCX619HCAPX' where id=5; -update noar ti set v0='PZJOGPY71EHNFVTQCX619HCAPX' where id=5; -update noar tt set b0='G8C81ZI5DFATD51J77SRMK3C5OXYSH' where id=5; -update noar ti set b0='G8C81ZI5DFATD51J77SRMK3C5OXYSH' where id=5; -update noar tt set v0='TSFSPH15HO918AVUVGDYUOKIXF' where id=5; -update noar ti set v0='TSFSPH15HO918AVUVGDYUOKIXF' where id=5; -update noar tt set b1='3XFPNYCBTAJ' where id=5; -update noar ti set b1='3XFPNYCBTAJ' where id=5; -update noar tt set v0='AN7Q9HAQDQDGBES0HZY2T1SJ23CN1I' where id=5; -update noar ti set v0='AN7Q9HAQDQDGBES0HZY2T1SJ23CN1I' where id=5; -update noar tt set b2='CLFMGOM' where id=5; -update noar ti set b2='CLFMGOM' where id=5; -update noar tt set v0='OXH3FWIQMICPGNA' where id=6; -update noar ti set v0='OXH3FWIQMICPGNA' where id=6; -update noar tt set b0='X' where id=6; -update noar ti set b0='X' where id=6; -update noar tt set v0='X41JEBA' where id=6; -update noar ti set v0='X41JEBA' where id=6; -update noar tt set b1='3P7YN4Z' where id=6; -update noar ti set b1='3P7YN4Z' where id=6; -update noar tt set v0='JJMRWJ9RQTEU8J' where id=6; -update noar ti set v0='JJMRWJ9RQTEU8J' where id=6; -update noar tt set b2='JQFZI9YK1B2ZUNPV3IJ' where id=6; -update noar ti set b2='JQFZI9YK1B2ZUNPV3IJ' where id=6; -update noar tt set v0='N8DKRT7VE7' where id=7; -update noar ti set v0='N8DKRT7VE7' where id=7; -update noar tt set b0='WU8QRNQXXXXI0GQZEP47Z47E83FQS' where id=7; -update noar ti set b0='WU8QRNQXXXXI0GQZEP47Z47E83FQS' where id=7; -update noar tt set v0='JGCT4XA8OX9IOZ3AN42J' where id=7; -update noar ti set v0='JGCT4XA8OX9IOZ3AN42J' where id=7; -update noar tt set b1='LBGEXL1XCNWU3APRT6V1B9MFYJ9768VE' where id=7; -update noar ti set b1='LBGEXL1XCNWU3APRT6V1B9MFYJ9768VE' where id=7; -update noar tt set v0='6WKZ7' where id=7; -update noar ti set v0='6WKZ7' where id=7; -update noar tt set b2='AQM8T' where id=7; -update noar ti set b2='AQM8T' where id=7; -update noar tt set v0='YLY8' where id=8; -update noar ti set v0='YLY8' where id=8; -update noar tt set b0='SXC956LGDQHNHN1A7Q0A34H' where id=8; -update noar ti set b0='SXC956LGDQHNHN1A7Q0A34H' where id=8; -update noar tt set v0='MLJB' where id=8; -update noar ti set v0='MLJB' where id=8; -update noar tt set b1='CENHWRLIF1KFHBRJ32W1RC5ZMPSB36O' where id=8; -update noar ti set b1='CENHWRLIF1KFHBRJ32W1RC5ZMPSB36O' where id=8; -update noar tt set v0='PP380IR' where id=8; -update noar ti set v0='PP380IR' where id=8; -update noar tt set b2='K8FGDEH324GBTAVNB49RWW9' where id=8; -update noar ti set b2='K8FGDEH324GBTAVNB49RWW9' where id=8; -update noar tt set v0='OZTL03EGGAXV8L' where id=9; -update noar ti set v0='OZTL03EGGAXV8L' where id=9; -update noar tt set b0='3VOM4MAX' where id=9; -update noar ti set b0='3VOM4MAX' where id=9; -update noar tt set v0='DD' where id=9; -update noar ti set v0='DD' where id=9; -update noar tt set b1='C7QKTAFQ4T24MF2L1LCMLHCA8JB' where id=9; -update noar ti set b1='C7QKTAFQ4T24MF2L1LCMLHCA8JB' where id=9; -update noar tt set v0='GW0EHX3B3MIAL2UF5T' where id=9; -update noar ti set v0='GW0EHX3B3MIAL2UF5T' where id=9; -update noar tt set b2='7FBEQCLVSRS2538T' where id=9; -update noar ti set b2='7FBEQCLVSRS2538T' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -f0 int null, -v0 varchar(32) null, -b0 mediumblob null, -b1 longblob null, -b2 tinyblob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='95I' where id=1; -update noar ti set v0='95I' where id=1; -update noar tt set b0='NMQVTSSO' where id=1; -update noar ti set b0='NMQVTSSO' where id=1; -update noar tt set v0='3FP1N8EY1TDKSYKVDZCO' where id=1; -update noar ti set v0='3FP1N8EY1TDKSYKVDZCO' where id=1; -update noar tt set b1='FDD8Q' where id=1; -update noar ti set b1='FDD8Q' where id=1; -update noar tt set v0='IBJHK1RVAVDAT' where id=1; -update noar ti set v0='IBJHK1RVAVDAT' where id=1; -update noar tt set b2='333CXXQMTFLHY93MQK' where id=1; -update noar ti set b2='333CXXQMTFLHY93MQK' where id=1; -update noar tt set v0='WUO7MDQ22HW' where id=2; -update noar ti set v0='WUO7MDQ22HW' where id=2; -update noar tt set b0='HBCULRU6GUB4ZAAGBMC9U7CZ72220' where id=2; -update noar ti set b0='HBCULRU6GUB4ZAAGBMC9U7CZ72220' where id=2; -update noar tt set v0='042IMO56MS4T5W2Y8H' where id=2; -update noar ti set v0='042IMO56MS4T5W2Y8H' where id=2; -update noar tt set b1='XC6CM' where id=2; -update noar ti set b1='XC6CM' where id=2; -update noar tt set v0='S' where id=2; -update noar ti set v0='S' where id=2; -update noar tt set b2='G1UMFP7ISB334' where id=2; -update noar ti set b2='G1UMFP7ISB334' where id=2; -update noar tt set v0='PS2FCZVP6' where id=3; -update noar ti set v0='PS2FCZVP6' where id=3; -update noar tt set b0='0DKE' where id=3; -update noar ti set b0='0DKE' where id=3; -update noar tt set v0='V4JM820DI' where id=3; -update noar ti set v0='V4JM820DI' where id=3; -update noar tt set b1='GQYZL5D7U3XSPB' where id=3; -update noar ti set b1='GQYZL5D7U3XSPB' where id=3; -update noar tt set v0='DJH1YMHVFVWJF8Z00GYTWXKN7FJVHZUY' where id=3; -update noar ti set v0='DJH1YMHVFVWJF8Z00GYTWXKN7FJVHZUY' where id=3; -update noar tt set b2='SAGT8WGPRTV' where id=3; -update noar ti set b2='SAGT8WGPRTV' where id=3; -update noar tt set v0='FCJQIX0XMNZEYH4' where id=4; -update noar ti set v0='FCJQIX0XMNZEYH4' where id=4; -update noar tt set b0='O1JG3DN5U8R' where id=4; -update noar ti set b0='O1JG3DN5U8R' where id=4; -update noar tt set v0='F12DDFKE1L' where id=4; -update noar ti set v0='F12DDFKE1L' where id=4; -update noar tt set b1='F4Z9DUPSBX01A' where id=4; -update noar ti set b1='F4Z9DUPSBX01A' where id=4; -update noar tt set v0='AV862HFWU' where id=4; -update noar ti set v0='AV862HFWU' where id=4; -update noar tt set b2='9YQG7TXM0HZPWWJBBWCA36WZX37S7' where id=4; -update noar ti set b2='9YQG7TXM0HZPWWJBBWCA36WZX37S7' where id=4; -update noar tt set v0='T0FV73DQHJ8BOFM66VXJKFXE' where id=5; -update noar ti set v0='T0FV73DQHJ8BOFM66VXJKFXE' where id=5; -update noar tt set b0='NLYWQGLR92IGXQOWD9PPRY' where id=5; -update noar ti set b0='NLYWQGLR92IGXQOWD9PPRY' where id=5; -update noar tt set v0='51E75UY0C9TOYL' where id=5; -update noar ti set v0='51E75UY0C9TOYL' where id=5; -update noar tt set b1='ZQNJWNRCZJ1IZR41AYRZO7' where id=5; -update noar ti set b1='ZQNJWNRCZJ1IZR41AYRZO7' where id=5; -update noar tt set v0='6OHL5J7KKDJF14GTZCG0UDZXCPRVLJA' where id=5; -update noar ti set v0='6OHL5J7KKDJF14GTZCG0UDZXCPRVLJA' where id=5; -update noar tt set b2='EOT' where id=5; -update noar ti set b2='EOT' where id=5; -update noar tt set v0='K21UVNBJ5RL6CUEYG' where id=6; -update noar ti set v0='K21UVNBJ5RL6CUEYG' where id=6; -update noar tt set b0='X6H58EYZAUJ8I8I8RPX4VI8ZBYC5' where id=6; -update noar ti set b0='X6H58EYZAUJ8I8I8RPX4VI8ZBYC5' where id=6; -update noar tt set v0='1G409TIT12G0DDS0D' where id=6; -update noar ti set v0='1G409TIT12G0DDS0D' where id=6; -update noar tt set b1='SOUP3U' where id=6; -update noar ti set b1='SOUP3U' where id=6; -update noar tt set v0='S0LINMQJRR74ML2' where id=6; -update noar ti set v0='S0LINMQJRR74ML2' where id=6; -update noar tt set b2='1PAH' where id=6; -update noar ti set b2='1PAH' where id=6; -update noar tt set v0='T300F2METXIR' where id=7; -update noar ti set v0='T300F2METXIR' where id=7; -update noar tt set b0='M9WYOD7E1FZ' where id=7; -update noar ti set b0='M9WYOD7E1FZ' where id=7; -update noar tt set v0='DOB3Q78HLLYGM0S59' where id=7; -update noar ti set v0='DOB3Q78HLLYGM0S59' where id=7; -update noar tt set b1='SAB' where id=7; -update noar ti set b1='SAB' where id=7; -update noar tt set v0='ZO9CA9L87Z1FSSOEW09EC' where id=7; -update noar ti set v0='ZO9CA9L87Z1FSSOEW09EC' where id=7; -update noar tt set b2='0SNHAGSVF7CTXHY6PXTFN82SRY8S2' where id=7; -update noar ti set b2='0SNHAGSVF7CTXHY6PXTFN82SRY8S2' where id=7; -update noar tt set v0='Z' where id=8; -update noar ti set v0='Z' where id=8; -update noar tt set b0='H0N7E0ASYC9K7KSZHYNSNWTYYH9K' where id=8; -update noar ti set b0='H0N7E0ASYC9K7KSZHYNSNWTYYH9K' where id=8; -update noar tt set v0='IYJ' where id=8; -update noar ti set v0='IYJ' where id=8; -update noar tt set b1='FI61P170Y9S8' where id=8; -update noar ti set b1='FI61P170Y9S8' where id=8; -update noar tt set v0='BBLE7NYD4XIQU199MLI' where id=8; -update noar ti set v0='BBLE7NYD4XIQU199MLI' where id=8; -update noar tt set b2='HFII9CV' where id=8; -update noar ti set b2='HFII9CV' where id=8; -update noar tt set v0='9XJZUR4KNR' where id=9; -update noar ti set v0='9XJZUR4KNR' where id=9; -update noar tt set b0='8FE67ZCTBV4TKT35ZD80' where id=9; -update noar ti set b0='8FE67ZCTBV4TKT35ZD80' where id=9; -update noar tt set v0='N2JSSUL7D' where id=9; -update noar ti set v0='N2JSSUL7D' where id=9; -update noar tt set b1='BB9Z' where id=9; -update noar ti set b1='BB9Z' where id=9; -update noar tt set v0='FOHT2EL637L212F0P1BK' where id=9; -update noar ti set v0='FOHT2EL637L212F0P1BK' where id=9; -update noar tt set b2='53SCTONT71V8B3S6IV1AZR44E14' where id=9; -update noar ti set b2='53SCTONT71V8B3S6IV1AZR44E14' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -f0 int null, -v0 varchar(256) null, -b0 mediumblob null, -b1 longblob null, -b2 tinyblob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='VFG5L2CPECRJNGMJR97Q3ZHJS7MO' where id=1; -update noar ti set v0='VFG5L2CPECRJNGMJR97Q3ZHJS7MO' where id=1; -update noar tt set b0='1LMK8GHOJ19CJ' where id=1; -update noar ti set b0='1LMK8GHOJ19CJ' where id=1; -update noar tt set v0='4PJM764WBGQZTKNUQB2N7' where id=1; -update noar ti set v0='4PJM764WBGQZTKNUQB2N7' where id=1; -update noar tt set b1='S3GZYB' where id=1; -update noar ti set b1='S3GZYB' where id=1; -update noar tt set v0='6M8HQU0IOAQNMAFBYIWNCIL5EKIM64' where id=1; -update noar ti set v0='6M8HQU0IOAQNMAFBYIWNCIL5EKIM64' where id=1; -update noar tt set b2='V2KAXYMUULLPYNPL' where id=1; -update noar ti set b2='V2KAXYMUULLPYNPL' where id=1; -update noar tt set v0='SWOD4A2MKQ5PG8VPSTTHT' where id=2; -update noar ti set v0='SWOD4A2MKQ5PG8VPSTTHT' where id=2; -update noar tt set b0='Z7W18SQNC7JP2PNZG8JCT1' where id=2; -update noar ti set b0='Z7W18SQNC7JP2PNZG8JCT1' where id=2; -update noar tt set v0='N4PIZT5VW1' where id=2; -update noar ti set v0='N4PIZT5VW1' where id=2; -update noar tt set b1='BNXMY4UHG63' where id=2; -update noar ti set b1='BNXMY4UHG63' where id=2; -update noar tt set v0='3H7FDHO5W' where id=2; -update noar ti set v0='3H7FDHO5W' where id=2; -update noar tt set b2='DABZ7M' where id=2; -update noar ti set b2='DABZ7M' where id=2; -update noar tt set v0='GINT5LHEKMIRGC5BI2LIG889NY5HWK2R' where id=3; -update noar ti set v0='GINT5LHEKMIRGC5BI2LIG889NY5HWK2R' where id=3; -update noar tt set b0='HLWLY38VIK72LUFHUROLVQGDRIX' where id=3; -update noar ti set b0='HLWLY38VIK72LUFHUROLVQGDRIX' where id=3; -update noar tt set v0='UKO8WEN0BIXD70ZSP' where id=3; -update noar ti set v0='UKO8WEN0BIXD70ZSP' where id=3; -update noar tt set b1='9P5CPL3GSMW5Z4HV' where id=3; -update noar ti set b1='9P5CPL3GSMW5Z4HV' where id=3; -update noar tt set v0='OS1GLY' where id=3; -update noar ti set v0='OS1GLY' where id=3; -update noar tt set b2='E2SPQGFZQ08P' where id=3; -update noar ti set b2='E2SPQGFZQ08P' where id=3; -update noar tt set v0='0TU289OPBQ12JW3F' where id=4; -update noar ti set v0='0TU289OPBQ12JW3F' where id=4; -update noar tt set b0='PB58BXHFXGHZFIBXL4YEG7P' where id=4; -update noar ti set b0='PB58BXHFXGHZFIBXL4YEG7P' where id=4; -update noar tt set v0='OKIISE018' where id=4; -update noar ti set v0='OKIISE018' where id=4; -update noar tt set b1='W3T' where id=4; -update noar ti set b1='W3T' where id=4; -update noar tt set v0='LGY3Y9QP3OAHX0DSGCKFUA' where id=4; -update noar ti set v0='LGY3Y9QP3OAHX0DSGCKFUA' where id=4; -update noar tt set b2='F95S0PABDVYQYGZZZGCJ75SNEP6C4FX' where id=4; -update noar ti set b2='F95S0PABDVYQYGZZZGCJ75SNEP6C4FX' where id=4; -update noar tt set v0='JQ1V6J4SC99FXGLZQH299T17I977D3' where id=5; -update noar ti set v0='JQ1V6J4SC99FXGLZQH299T17I977D3' where id=5; -update noar tt set b0='FN0YPHLZTW3B8HJ8ENJSUF' where id=5; -update noar ti set b0='FN0YPHLZTW3B8HJ8ENJSUF' where id=5; -update noar tt set v0='YQX165XO7176N4YQ6ZOGPUEZVWPSI' where id=5; -update noar ti set v0='YQX165XO7176N4YQ6ZOGPUEZVWPSI' where id=5; -update noar tt set b1='HPP71S7Y0KRCS70WUJUSBBYE' where id=5; -update noar ti set b1='HPP71S7Y0KRCS70WUJUSBBYE' where id=5; -update noar tt set v0='CR50D0704GO02YB6O66E0OB0MDEXEUM1' where id=5; -update noar ti set v0='CR50D0704GO02YB6O66E0OB0MDEXEUM1' where id=5; -update noar tt set b2='LQKSZ7EEU1WE6HVXVUG' where id=5; -update noar ti set b2='LQKSZ7EEU1WE6HVXVUG' where id=5; -update noar tt set v0='ODHK37YEHW70ZVPCLJODEPQ' where id=6; -update noar ti set v0='ODHK37YEHW70ZVPCLJODEPQ' where id=6; -update noar tt set b0='MTXIKVAMAMUFC7N3TTKDL41' where id=6; -update noar ti set b0='MTXIKVAMAMUFC7N3TTKDL41' where id=6; -update noar tt set v0='W0F8M' where id=6; -update noar ti set v0='W0F8M' where id=6; -update noar tt set b1='SBJRP0V644AMU5KKYPB3SU48IIG' where id=6; -update noar ti set b1='SBJRP0V644AMU5KKYPB3SU48IIG' where id=6; -update noar tt set v0='L1WRXEAE38MZJ38I87X5K9' where id=6; -update noar ti set v0='L1WRXEAE38MZJ38I87X5K9' where id=6; -update noar tt set b2='57VFYAZEUU03IPUE1NPGBMQOOY5SDI' where id=6; -update noar ti set b2='57VFYAZEUU03IPUE1NPGBMQOOY5SDI' where id=6; -update noar tt set v0='85RD3' where id=7; -update noar ti set v0='85RD3' where id=7; -update noar tt set b0='707GBZT04KODU83AV8GG38G8S5' where id=7; -update noar ti set b0='707GBZT04KODU83AV8GG38G8S5' where id=7; -update noar tt set v0='KSLCIRJDQMXR7OI9OZZOGA5' where id=7; -update noar ti set v0='KSLCIRJDQMXR7OI9OZZOGA5' where id=7; -update noar tt set b1='P3QM225FN4F62DNP2QDDY2' where id=7; -update noar ti set b1='P3QM225FN4F62DNP2QDDY2' where id=7; -update noar tt set v0='P58V9XBMAED0XNXLHWKU' where id=7; -update noar ti set v0='P58V9XBMAED0XNXLHWKU' where id=7; -update noar tt set b2='NTMKBN7PGN9X6CGDMK0ZHLE' where id=7; -update noar ti set b2='NTMKBN7PGN9X6CGDMK0ZHLE' where id=7; -update noar tt set v0='LSCBRGMT' where id=8; -update noar ti set v0='LSCBRGMT' where id=8; -update noar tt set b0='J5GXHNA2MHELZKAJYUHK94SFU' where id=8; -update noar ti set b0='J5GXHNA2MHELZKAJYUHK94SFU' where id=8; -update noar tt set v0='UMHHXJYFSHDUM1NRTRKEE' where id=8; -update noar ti set v0='UMHHXJYFSHDUM1NRTRKEE' where id=8; -update noar tt set b1='V7' where id=8; -update noar ti set b1='V7' where id=8; -update noar tt set v0='7QPORD4BTT6VKQ6P1ST5H82BH4KI77' where id=8; -update noar ti set v0='7QPORD4BTT6VKQ6P1ST5H82BH4KI77' where id=8; -update noar tt set b2='GJFMU0UYJVBCGO9KWK1TQ7' where id=8; -update noar ti set b2='GJFMU0UYJVBCGO9KWK1TQ7' where id=8; -update noar tt set v0='W77IE2L763KEMKT4ONIVLMV0AJ' where id=9; -update noar ti set v0='W77IE2L763KEMKT4ONIVLMV0AJ' where id=9; -update noar tt set b0='DYG9DUC5NKEOOW4GM0BO3CLNX9L' where id=9; -update noar ti set b0='DYG9DUC5NKEOOW4GM0BO3CLNX9L' where id=9; -update noar tt set v0='8ANM0B3O6JNHZIAK33B02UN2TM2L' where id=9; -update noar ti set v0='8ANM0B3O6JNHZIAK33B02UN2TM2L' where id=9; -update noar tt set b1='U3VGOZSLQVQWNA4N8SO54Q6HF' where id=9; -update noar ti set b1='U3VGOZSLQVQWNA4N8SO54Q6HF' where id=9; -update noar tt set v0='GIY0CFJKLIWBN' where id=9; -update noar ti set v0='GIY0CFJKLIWBN' where id=9; -update noar tt set b2='72S2LM' where id=9; -update noar ti set b2='72S2LM' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -f0 int not null, -v0 varchar(32) not null, -b0 mediumblob not null, -b1 longblob not null, -b2 tinyblob not null -) engine=tokudb; -insert into tt values (1,0,'','','',''); -insert into tt values (2,0,'','','',''); -insert into tt values (3,0,'','','',''); -insert into tt values (4,0,'','','',''); -insert into tt values (5,0,'','','',''); -insert into tt values (6,0,'','','',''); -insert into tt values (7,0,'','','',''); -insert into tt values (8,0,'','','',''); -insert into tt values (9,0,'','','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='1XDJXG3KL04V2IGTCEULGKM' where id=1; -update noar ti set v0='1XDJXG3KL04V2IGTCEULGKM' where id=1; -update noar tt set b0='C' where id=1; -update noar ti set b0='C' where id=1; -update noar tt set v0='AQH6BPLIU114H6J4NACPDW4' where id=1; -update noar ti set v0='AQH6BPLIU114H6J4NACPDW4' where id=1; -update noar tt set b1='V1HGEC' where id=1; -update noar ti set b1='V1HGEC' where id=1; -update noar tt set v0='M6I35002MJ09CZZNQP' where id=1; -update noar ti set v0='M6I35002MJ09CZZNQP' where id=1; -update noar tt set b2='0ULKUFT8PMZ' where id=1; -update noar ti set b2='0ULKUFT8PMZ' where id=1; -update noar tt set v0='4LW518PD' where id=2; -update noar ti set v0='4LW518PD' where id=2; -update noar tt set b0='R0AZQ7BTVEGI' where id=2; -update noar ti set b0='R0AZQ7BTVEGI' where id=2; -update noar tt set v0='DGRSGDGYLAW10FZI7YWZR3AD' where id=2; -update noar ti set v0='DGRSGDGYLAW10FZI7YWZR3AD' where id=2; -update noar tt set b1='U1T2' where id=2; -update noar ti set b1='U1T2' where id=2; -update noar tt set v0='X73R7TESZAUJQZWQ4OOK40694H0' where id=2; -update noar ti set v0='X73R7TESZAUJQZWQ4OOK40694H0' where id=2; -update noar tt set b2='BP50AFNQRXQQ7' where id=2; -update noar ti set b2='BP50AFNQRXQQ7' where id=2; -update noar tt set v0='1P7TBXW3CU7J23' where id=3; -update noar ti set v0='1P7TBXW3CU7J23' where id=3; -update noar tt set b0='O5X03A28F4OIACSNEWX6JRJIKW' where id=3; -update noar ti set b0='O5X03A28F4OIACSNEWX6JRJIKW' where id=3; -update noar tt set v0='8PBU9RJUOTWQLURFPRQB6V' where id=3; -update noar ti set v0='8PBU9RJUOTWQLURFPRQB6V' where id=3; -update noar tt set b1='BM2' where id=3; -update noar ti set b1='BM2' where id=3; -update noar tt set v0='23OAB8A8D2TEPNEXT2IVF5XTK1IEPM' where id=3; -update noar ti set v0='23OAB8A8D2TEPNEXT2IVF5XTK1IEPM' where id=3; -update noar tt set b2='WTDEB66' where id=3; -update noar ti set b2='WTDEB66' where id=3; -update noar tt set v0='DPKYV3VWKVRPLX82DNMZZUZJ8HRZ4HY' where id=4; -update noar ti set v0='DPKYV3VWKVRPLX82DNMZZUZJ8HRZ4HY' where id=4; -update noar tt set b0='RD8L6H4FJH8OGW1NW' where id=4; -update noar ti set b0='RD8L6H4FJH8OGW1NW' where id=4; -update noar tt set v0='JKOGIJ6FUAP' where id=4; -update noar ti set v0='JKOGIJ6FUAP' where id=4; -update noar tt set b1='6FT7JWGAJSB5RH8XJMP' where id=4; -update noar ti set b1='6FT7JWGAJSB5RH8XJMP' where id=4; -update noar tt set v0='SONO7WAM1MC2PLFO0AWKMDYT8WIMI80Y' where id=4; -update noar ti set v0='SONO7WAM1MC2PLFO0AWKMDYT8WIMI80Y' where id=4; -update noar tt set b2='WH5FJJY1N' where id=4; -update noar ti set b2='WH5FJJY1N' where id=4; -update noar tt set v0='E' where id=5; -update noar ti set v0='E' where id=5; -update noar tt set b0='26VL706C5V0X' where id=5; -update noar ti set b0='26VL706C5V0X' where id=5; -update noar tt set v0='A4OYGZASQI8OZEW' where id=5; -update noar ti set v0='A4OYGZASQI8OZEW' where id=5; -update noar tt set b1='GNHVD4' where id=5; -update noar ti set b1='GNHVD4' where id=5; -update noar tt set v0='1' where id=5; -update noar ti set v0='1' where id=5; -update noar tt set b2='1HIIVKQD2MYVJ0LY7PHE4UO' where id=5; -update noar ti set b2='1HIIVKQD2MYVJ0LY7PHE4UO' where id=5; -update noar tt set v0='8ZX7K2R8FSQ79QAN3MCPAVMGHIB' where id=6; -update noar ti set v0='8ZX7K2R8FSQ79QAN3MCPAVMGHIB' where id=6; -update noar tt set b0='WIM' where id=6; -update noar ti set b0='WIM' where id=6; -update noar tt set v0='MPL5JPFE1KJ' where id=6; -update noar ti set v0='MPL5JPFE1KJ' where id=6; -update noar tt set b1='YI0F681Y1S7NHSAY80' where id=6; -update noar ti set b1='YI0F681Y1S7NHSAY80' where id=6; -update noar tt set v0='38881W4OFXFMKNDKH60WWSZI9' where id=6; -update noar ti set v0='38881W4OFXFMKNDKH60WWSZI9' where id=6; -update noar tt set b2='M5DKPR72UOAG00B2D4MCERUIWGODR' where id=6; -update noar ti set b2='M5DKPR72UOAG00B2D4MCERUIWGODR' where id=6; -update noar tt set v0='7CKQZELK' where id=7; -update noar ti set v0='7CKQZELK' where id=7; -update noar tt set b0='MRBTX7STQW' where id=7; -update noar ti set b0='MRBTX7STQW' where id=7; -update noar tt set v0='DBZ' where id=7; -update noar ti set v0='DBZ' where id=7; -update noar tt set b1='12D2BFU2NPZJNYXV9E1VKQQEKSP' where id=7; -update noar ti set b1='12D2BFU2NPZJNYXV9E1VKQQEKSP' where id=7; -update noar tt set v0='P5SUKF15N916SF2' where id=7; -update noar ti set v0='P5SUKF15N916SF2' where id=7; -update noar tt set b2='335Q78OGASW20RME3' where id=7; -update noar ti set b2='335Q78OGASW20RME3' where id=7; -update noar tt set v0='4SFHPVEVJFT5MPE2A8NCFJM4N2YZOTVY' where id=8; -update noar ti set v0='4SFHPVEVJFT5MPE2A8NCFJM4N2YZOTVY' where id=8; -update noar tt set b0='CR5FYIAKM' where id=8; -update noar ti set b0='CR5FYIAKM' where id=8; -update noar tt set v0='UA11CJTJGIUC2UKSQJA4' where id=8; -update noar ti set v0='UA11CJTJGIUC2UKSQJA4' where id=8; -update noar tt set b1='ULQEQYUYMOR72' where id=8; -update noar ti set b1='ULQEQYUYMOR72' where id=8; -update noar tt set v0='44QUU37ETM' where id=8; -update noar ti set v0='44QUU37ETM' where id=8; -update noar tt set b2='YJNNZ9VNF' where id=8; -update noar ti set b2='YJNNZ9VNF' where id=8; -update noar tt set v0='76QXK7WD21278XXVTR3DF2U4QW7RO8O' where id=9; -update noar ti set v0='76QXK7WD21278XXVTR3DF2U4QW7RO8O' where id=9; -update noar tt set b0='GMZDODSL2J53324IHEMOG7L' where id=9; -update noar ti set b0='GMZDODSL2J53324IHEMOG7L' where id=9; -update noar tt set v0='XXIKG55EII29JBW4U5QGLV1A3RKY4' where id=9; -update noar ti set v0='XXIKG55EII29JBW4U5QGLV1A3RKY4' where id=9; -update noar tt set b1='KXNCTBGFNU5' where id=9; -update noar ti set b1='KXNCTBGFNU5' where id=9; -update noar tt set v0='E59OE4GW5OIN42GROA5Y5L' where id=9; -update noar ti set v0='E59OE4GW5OIN42GROA5Y5L' where id=9; -update noar tt set b2='YGRTKYNBAZWBULWKRJ26276KT7JKO3VZ' where id=9; -update noar ti set b2='YGRTKYNBAZWBULWKRJ26276KT7JKO3VZ' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -f0 int not null, -v0 varchar(256) not null, -b0 mediumblob not null, -b1 longblob not null, -b2 tinyblob not null -) engine=tokudb; -insert into tt values (1,0,'','','',''); -insert into tt values (2,0,'','','',''); -insert into tt values (3,0,'','','',''); -insert into tt values (4,0,'','','',''); -insert into tt values (5,0,'','','',''); -insert into tt values (6,0,'','','',''); -insert into tt values (7,0,'','','',''); -insert into tt values (8,0,'','','',''); -insert into tt values (9,0,'','','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='OPOE' where id=1; -update noar ti set v0='OPOE' where id=1; -update noar tt set b0='37S7WTG5E0DQ9HG90LSD8' where id=1; -update noar ti set b0='37S7WTG5E0DQ9HG90LSD8' where id=1; -update noar tt set v0='0Q32G3JJH5GA00VZ8GG' where id=1; -update noar ti set v0='0Q32G3JJH5GA00VZ8GG' where id=1; -update noar tt set b1='4KHPZO84BVUC7' where id=1; -update noar ti set b1='4KHPZO84BVUC7' where id=1; -update noar tt set v0='Y' where id=1; -update noar ti set v0='Y' where id=1; -update noar tt set b2='WC90BJSWIZ8HWHA6LWSJUOMP3P1IND8I' where id=1; -update noar ti set b2='WC90BJSWIZ8HWHA6LWSJUOMP3P1IND8I' where id=1; -update noar tt set v0='N4N8XSNTQVC3E' where id=2; -update noar ti set v0='N4N8XSNTQVC3E' where id=2; -update noar tt set b0='PLIQCI6AAEJ8QQ23FSPV8DAKKN' where id=2; -update noar ti set b0='PLIQCI6AAEJ8QQ23FSPV8DAKKN' where id=2; -update noar tt set v0='B00JIYJAQYX1W581M4R6' where id=2; -update noar ti set v0='B00JIYJAQYX1W581M4R6' where id=2; -update noar tt set b1='E8K219PT0' where id=2; -update noar ti set b1='E8K219PT0' where id=2; -update noar tt set v0='SJQS406DWOC4KTH463OBZ59' where id=2; -update noar ti set v0='SJQS406DWOC4KTH463OBZ59' where id=2; -update noar tt set b2='EZFJ1KV91U7NNJRWC2UTM' where id=2; -update noar ti set b2='EZFJ1KV91U7NNJRWC2UTM' where id=2; -update noar tt set v0='FWT6VTP5Z87FDO8T' where id=3; -update noar ti set v0='FWT6VTP5Z87FDO8T' where id=3; -update noar tt set b0='H0T5J9UVM54HY' where id=3; -update noar ti set b0='H0T5J9UVM54HY' where id=3; -update noar tt set v0='YUOVJM8SDILW6OHM1E2393H' where id=3; -update noar ti set v0='YUOVJM8SDILW6OHM1E2393H' where id=3; -update noar tt set b1='FN8MR' where id=3; -update noar ti set b1='FN8MR' where id=3; -update noar tt set v0='E10VVYH0OY229H2UIHQ1APEFK1CFD' where id=3; -update noar ti set v0='E10VVYH0OY229H2UIHQ1APEFK1CFD' where id=3; -update noar tt set b2='9TSAFOKJZTH02LOKMEQ' where id=3; -update noar ti set b2='9TSAFOKJZTH02LOKMEQ' where id=3; -update noar tt set v0='S2C7ZVPVA1YBW29N5BUP0V8LNZBN' where id=4; -update noar ti set v0='S2C7ZVPVA1YBW29N5BUP0V8LNZBN' where id=4; -update noar tt set b0='0FAV0PY9DKOUTPL410' where id=4; -update noar ti set b0='0FAV0PY9DKOUTPL410' where id=4; -update noar tt set v0='1SOJM' where id=4; -update noar ti set v0='1SOJM' where id=4; -update noar tt set b1='QGY8E3KAYV06LBUY' where id=4; -update noar ti set b1='QGY8E3KAYV06LBUY' where id=4; -update noar tt set v0='9VL5U2MDRXA' where id=4; -update noar ti set v0='9VL5U2MDRXA' where id=4; -update noar tt set b2='T72CYO00J' where id=4; -update noar ti set b2='T72CYO00J' where id=4; -update noar tt set v0='LYPMJ0R7MGU1F9D1I3D8QY8M9LEEH856' where id=5; -update noar ti set v0='LYPMJ0R7MGU1F9D1I3D8QY8M9LEEH856' where id=5; -update noar tt set b0='19CPT36N2UBDK' where id=5; -update noar ti set b0='19CPT36N2UBDK' where id=5; -update noar tt set v0='D1P8GG5' where id=5; -update noar ti set v0='D1P8GG5' where id=5; -update noar tt set b1='JOXL1' where id=5; -update noar ti set b1='JOXL1' where id=5; -update noar tt set v0='ZDNG173' where id=5; -update noar ti set v0='ZDNG173' where id=5; -update noar tt set b2='UJBY26EDXTMW2DURS0PXFRT' where id=5; -update noar ti set b2='UJBY26EDXTMW2DURS0PXFRT' where id=5; -update noar tt set v0='F615DJMS2U63IBC1YKW63R6HF' where id=6; -update noar ti set v0='F615DJMS2U63IBC1YKW63R6HF' where id=6; -update noar tt set b0='BYFY2S7K2CBGIO' where id=6; -update noar ti set b0='BYFY2S7K2CBGIO' where id=6; -update noar tt set v0='9C0SUD5IJAO29B9' where id=6; -update noar ti set v0='9C0SUD5IJAO29B9' where id=6; -update noar tt set b1='S1S7IPOZLUO' where id=6; -update noar ti set b1='S1S7IPOZLUO' where id=6; -update noar tt set v0='PMRHZQ29' where id=6; -update noar ti set v0='PMRHZQ29' where id=6; -update noar tt set b2='3X1UVSQL12OEU' where id=6; -update noar ti set b2='3X1UVSQL12OEU' where id=6; -update noar tt set v0='8I2BBFPJKJOSV8ZHPD6F6' where id=7; -update noar ti set v0='8I2BBFPJKJOSV8ZHPD6F6' where id=7; -update noar tt set b0='11ZHKVY73' where id=7; -update noar ti set b0='11ZHKVY73' where id=7; -update noar tt set v0='4BIVO2URW5BCQ' where id=7; -update noar ti set v0='4BIVO2URW5BCQ' where id=7; -update noar tt set b1='R56L0HU90EJEC6HWTXQM4GBMYRD' where id=7; -update noar ti set b1='R56L0HU90EJEC6HWTXQM4GBMYRD' where id=7; -update noar tt set v0='WRA7NWDPROPIXF' where id=7; -update noar ti set v0='WRA7NWDPROPIXF' where id=7; -update noar tt set b2='JK7LH71YYXB6AIN9VEPWUOTHHPW1JW' where id=7; -update noar ti set b2='JK7LH71YYXB6AIN9VEPWUOTHHPW1JW' where id=7; -update noar tt set v0='M3P3ANQD5QJRLYT8H2CKVGD' where id=8; -update noar ti set v0='M3P3ANQD5QJRLYT8H2CKVGD' where id=8; -update noar tt set b0='OXVQRRK3UNHKU' where id=8; -update noar ti set b0='OXVQRRK3UNHKU' where id=8; -update noar tt set v0='DHZ8891D44U4BLUTZMQ2VBBU' where id=8; -update noar ti set v0='DHZ8891D44U4BLUTZMQ2VBBU' where id=8; -update noar tt set b1='4EHVPJQ0NXSGQSU4YV47JI39PI7A' where id=8; -update noar ti set b1='4EHVPJQ0NXSGQSU4YV47JI39PI7A' where id=8; -update noar tt set v0='1TNM7D4CUG6CAR4JUKOW1GN4Q5C1' where id=8; -update noar ti set v0='1TNM7D4CUG6CAR4JUKOW1GN4Q5C1' where id=8; -update noar tt set b2='AUP' where id=8; -update noar ti set b2='AUP' where id=8; -update noar tt set v0='EOYBG2AYA7YFOTJJP7M57' where id=9; -update noar ti set v0='EOYBG2AYA7YFOTJJP7M57' where id=9; -update noar tt set b0='Q8TYATVXTHGC7ANFJAK33WWB' where id=9; -update noar ti set b0='Q8TYATVXTHGC7ANFJAK33WWB' where id=9; -update noar tt set v0='89A5647ORACMW64Y2Z7PXIP6' where id=9; -update noar ti set v0='89A5647ORACMW64Y2Z7PXIP6' where id=9; -update noar tt set b1='75HGKA' where id=9; -update noar ti set b1='75HGKA' where id=9; -update noar tt set v0='NKW9GBGVB9QJ2L' where id=9; -update noar ti set v0='NKW9GBGVB9QJ2L' where id=9; -update noar tt set b2='3GYSR3ZEAO0B' where id=9; -update noar ti set b2='3GYSR3ZEAO0B' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -f0 int null, -v0 varchar(32) null, -b0 mediumblob null, -b1 longblob null, -b2 blob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='868M7MOY8GSMM9XXDSGITFSFC6U' where id=1; -update noar ti set v0='868M7MOY8GSMM9XXDSGITFSFC6U' where id=1; -update noar tt set b0='9VXWUW' where id=1; -update noar ti set b0='9VXWUW' where id=1; -update noar tt set v0='HPOPQVBEUA8' where id=1; -update noar ti set v0='HPOPQVBEUA8' where id=1; -update noar tt set b1='U4KXTRR2XKV1' where id=1; -update noar ti set b1='U4KXTRR2XKV1' where id=1; -update noar tt set v0='IISFKUZI3WHYQPQB9C76' where id=1; -update noar ti set v0='IISFKUZI3WHYQPQB9C76' where id=1; -update noar tt set b2='C301SQZEDU8M8U842V0BWL' where id=1; -update noar ti set b2='C301SQZEDU8M8U842V0BWL' where id=1; -update noar tt set v0='CE5DN76GACHA8XXBIK5IUZXWRX7AQ' where id=2; -update noar ti set v0='CE5DN76GACHA8XXBIK5IUZXWRX7AQ' where id=2; -update noar tt set b0='21KM636A9' where id=2; -update noar ti set b0='21KM636A9' where id=2; -update noar tt set v0='6S' where id=2; -update noar ti set v0='6S' where id=2; -update noar tt set b1='TOFL505VRHEM4SSAG9' where id=2; -update noar ti set b1='TOFL505VRHEM4SSAG9' where id=2; -update noar tt set v0='6CT91' where id=2; -update noar ti set v0='6CT91' where id=2; -update noar tt set b2='L0UA' where id=2; -update noar ti set b2='L0UA' where id=2; -update noar tt set v0='5906TXUPHOMNY5XPC2P0RTTD' where id=3; -update noar ti set v0='5906TXUPHOMNY5XPC2P0RTTD' where id=3; -update noar tt set b0='4NREU9YGYIFPGAAWGAZKLC0' where id=3; -update noar ti set b0='4NREU9YGYIFPGAAWGAZKLC0' where id=3; -update noar tt set v0='TIRXY40XEXNUZCN66V1QA' where id=3; -update noar ti set v0='TIRXY40XEXNUZCN66V1QA' where id=3; -update noar tt set b1='U98TVT14B5IQHWAFMRK9X5SBNNI6' where id=3; -update noar ti set b1='U98TVT14B5IQHWAFMRK9X5SBNNI6' where id=3; -update noar tt set v0='37B84' where id=3; -update noar ti set v0='37B84' where id=3; -update noar tt set b2='IP0PO8UNRKNA0SN34EBPU24NDL8624D' where id=3; -update noar ti set b2='IP0PO8UNRKNA0SN34EBPU24NDL8624D' where id=3; -update noar tt set v0='Z8AXKYEUTROS8S734OQ1HOQ8PL' where id=4; -update noar ti set v0='Z8AXKYEUTROS8S734OQ1HOQ8PL' where id=4; -update noar tt set b0='HA4' where id=4; -update noar ti set b0='HA4' where id=4; -update noar tt set v0='LL0EUFOY0Q7LOJ7H8OC0' where id=4; -update noar ti set v0='LL0EUFOY0Q7LOJ7H8OC0' where id=4; -update noar tt set b1='S8ML' where id=4; -update noar ti set b1='S8ML' where id=4; -update noar tt set v0='RB22TEPR7F9JE1ZP59Q1DRBBSBW' where id=4; -update noar ti set v0='RB22TEPR7F9JE1ZP59Q1DRBBSBW' where id=4; -update noar tt set b2='NV3SJPY3CBAVIF2KXM30AWT21RK44CO' where id=4; -update noar ti set b2='NV3SJPY3CBAVIF2KXM30AWT21RK44CO' where id=4; -update noar tt set v0='Y7F7' where id=5; -update noar ti set v0='Y7F7' where id=5; -update noar tt set b0='V' where id=5; -update noar ti set b0='V' where id=5; -update noar tt set v0='C1YL6217XM4LOWNVC4ZJRXM2U4V' where id=5; -update noar ti set v0='C1YL6217XM4LOWNVC4ZJRXM2U4V' where id=5; -update noar tt set b1='K5N1B' where id=5; -update noar ti set b1='K5N1B' where id=5; -update noar tt set v0='ZGD9UTCRDPUY' where id=5; -update noar ti set v0='ZGD9UTCRDPUY' where id=5; -update noar tt set b2='SATRTYJUGH8J7OK6WYFBVCU4B' where id=5; -update noar ti set b2='SATRTYJUGH8J7OK6WYFBVCU4B' where id=5; -update noar tt set v0='AXW32QDT1LRKZ42STBT08HCV31S' where id=6; -update noar ti set v0='AXW32QDT1LRKZ42STBT08HCV31S' where id=6; -update noar tt set b0='BYWLJGBU6' where id=6; -update noar ti set b0='BYWLJGBU6' where id=6; -update noar tt set v0='96S1XXU6224WV5EYSPVY6QH9X17MKHX' where id=6; -update noar ti set v0='96S1XXU6224WV5EYSPVY6QH9X17MKHX' where id=6; -update noar tt set b1='Q33HUHJSWUDN9SR71BH2DNYJXSFP' where id=6; -update noar ti set b1='Q33HUHJSWUDN9SR71BH2DNYJXSFP' where id=6; -update noar tt set v0='K07D838SX16763OZ6AY' where id=6; -update noar ti set v0='K07D838SX16763OZ6AY' where id=6; -update noar tt set b2='0R' where id=6; -update noar ti set b2='0R' where id=6; -update noar tt set v0='KHOUT7WPSTFHFE4VZ' where id=7; -update noar ti set v0='KHOUT7WPSTFHFE4VZ' where id=7; -update noar tt set b0='X8KVKYKV31W8' where id=7; -update noar ti set b0='X8KVKYKV31W8' where id=7; -update noar tt set v0='EDJX88AU9RMI4U4DGUXMK' where id=7; -update noar ti set v0='EDJX88AU9RMI4U4DGUXMK' where id=7; -update noar tt set b1='XF7KPD9P82RY5WR8S8D098' where id=7; -update noar ti set b1='XF7KPD9P82RY5WR8S8D098' where id=7; -update noar tt set v0='E6' where id=7; -update noar ti set v0='E6' where id=7; -update noar tt set b2='GSBEM4UKWO8LXYS3FBXC' where id=7; -update noar ti set b2='GSBEM4UKWO8LXYS3FBXC' where id=7; -update noar tt set v0='GLOL7TEKUMYULQLRKV' where id=8; -update noar ti set v0='GLOL7TEKUMYULQLRKV' where id=8; -update noar tt set b0='1PB823LGOA2GBJRWYFQGN81IA7C0' where id=8; -update noar ti set b0='1PB823LGOA2GBJRWYFQGN81IA7C0' where id=8; -update noar tt set v0='4MM7LCMHALSJW4WYSGSBR1IVV3II8MO' where id=8; -update noar ti set v0='4MM7LCMHALSJW4WYSGSBR1IVV3II8MO' where id=8; -update noar tt set b1='GGM6NEOAD2YY0REFAV' where id=8; -update noar ti set b1='GGM6NEOAD2YY0REFAV' where id=8; -update noar tt set v0='0L448OJZM' where id=8; -update noar ti set v0='0L448OJZM' where id=8; -update noar tt set b2='HSX2K0XZ3GSGSRQYW3XVXV4BYCL44CE' where id=8; -update noar ti set b2='HSX2K0XZ3GSGSRQYW3XVXV4BYCL44CE' where id=8; -update noar tt set v0='T0R1J0F5M7QEC6ODYBJWRB' where id=9; -update noar ti set v0='T0R1J0F5M7QEC6ODYBJWRB' where id=9; -update noar tt set b0='U5L6U9' where id=9; -update noar ti set b0='U5L6U9' where id=9; -update noar tt set v0='U1K7ENH1X3N8P0KX96J5P' where id=9; -update noar ti set v0='U1K7ENH1X3N8P0KX96J5P' where id=9; -update noar tt set b1='OVJYCJA' where id=9; -update noar ti set b1='OVJYCJA' where id=9; -update noar tt set v0='M63IT55ZZBK5OC3C455TID' where id=9; -update noar ti set v0='M63IT55ZZBK5OC3C455TID' where id=9; -update noar tt set b2='DQ286QVQUDVCHXUCLPB' where id=9; -update noar ti set b2='DQ286QVQUDVCHXUCLPB' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -f0 int null, -v0 varchar(256) null, -b0 mediumblob null, -b1 longblob null, -b2 blob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='CQ9W2BFQDWKBBRC9043O8O0D' where id=1; -update noar ti set v0='CQ9W2BFQDWKBBRC9043O8O0D' where id=1; -update noar tt set b0='BE4N6EVTSHELQ4V3J31CVMO56LU' where id=1; -update noar ti set b0='BE4N6EVTSHELQ4V3J31CVMO56LU' where id=1; -update noar tt set v0='C93DIPTTYOVHVQA0RPS6CTNX' where id=1; -update noar ti set v0='C93DIPTTYOVHVQA0RPS6CTNX' where id=1; -update noar tt set b1='FRYU9UAO' where id=1; -update noar ti set b1='FRYU9UAO' where id=1; -update noar tt set v0='0C7LTBI4NVK5XEDTEC6DFIMSX3B0TGV' where id=1; -update noar ti set v0='0C7LTBI4NVK5XEDTEC6DFIMSX3B0TGV' where id=1; -update noar tt set b2='862RE92FD7DT28UVZHGWN8WVH2B' where id=1; -update noar ti set b2='862RE92FD7DT28UVZHGWN8WVH2B' where id=1; -update noar tt set v0='0JPR9J9HOBFVMQIPLEW' where id=2; -update noar ti set v0='0JPR9J9HOBFVMQIPLEW' where id=2; -update noar tt set b0='DJQDSUZFG1PZ5Y8US01VZWBQ0GQMXO' where id=2; -update noar ti set b0='DJQDSUZFG1PZ5Y8US01VZWBQ0GQMXO' where id=2; -update noar tt set v0='A9C5Y3CEG57KT6DUV8BC64ZJ0G' where id=2; -update noar ti set v0='A9C5Y3CEG57KT6DUV8BC64ZJ0G' where id=2; -update noar tt set b1='AIYHQ6' where id=2; -update noar ti set b1='AIYHQ6' where id=2; -update noar tt set v0='SH5' where id=2; -update noar ti set v0='SH5' where id=2; -update noar tt set b2='VYXPBTN1KH9' where id=2; -update noar ti set b2='VYXPBTN1KH9' where id=2; -update noar tt set v0='RM0EMGE1M24NQGPD' where id=3; -update noar ti set v0='RM0EMGE1M24NQGPD' where id=3; -update noar tt set b0='94YRQSVSF3SL4AP36T2T16' where id=3; -update noar ti set b0='94YRQSVSF3SL4AP36T2T16' where id=3; -update noar tt set v0='QPZPOVCNBQ5604' where id=3; -update noar ti set v0='QPZPOVCNBQ5604' where id=3; -update noar tt set b1='BM5G5H' where id=3; -update noar ti set b1='BM5G5H' where id=3; -update noar tt set v0='VLDFR4KBEO9M' where id=3; -update noar ti set v0='VLDFR4KBEO9M' where id=3; -update noar tt set b2='CXRMA95TAT7O4HOXRPTVH5BXWW3NLZ4O' where id=3; -update noar ti set b2='CXRMA95TAT7O4HOXRPTVH5BXWW3NLZ4O' where id=3; -update noar tt set v0='VR' where id=4; -update noar ti set v0='VR' where id=4; -update noar tt set b0='AQG7M0ZLE95CKEX' where id=4; -update noar ti set b0='AQG7M0ZLE95CKEX' where id=4; -update noar tt set v0='Z7DEOAWVBPRDBFMFL' where id=4; -update noar ti set v0='Z7DEOAWVBPRDBFMFL' where id=4; -update noar tt set b1='PA57HMZMK99DIQQ2POFS6LKMKB68P' where id=4; -update noar ti set b1='PA57HMZMK99DIQQ2POFS6LKMKB68P' where id=4; -update noar tt set v0='ZXYKP6SQB54DXX371' where id=4; -update noar ti set v0='ZXYKP6SQB54DXX371' where id=4; -update noar tt set b2='8TE3APDZZZYZ' where id=4; -update noar ti set b2='8TE3APDZZZYZ' where id=4; -update noar tt set v0='4G2C' where id=5; -update noar ti set v0='4G2C' where id=5; -update noar tt set b0='0I2JY2X46CBPZJI' where id=5; -update noar ti set b0='0I2JY2X46CBPZJI' where id=5; -update noar tt set v0='OL9KD4UQGP5XT8MLQQP3YGQXBFFI' where id=5; -update noar ti set v0='OL9KD4UQGP5XT8MLQQP3YGQXBFFI' where id=5; -update noar tt set b1='B20VKDD2VDGU' where id=5; -update noar ti set b1='B20VKDD2VDGU' where id=5; -update noar tt set v0='IP4STFWNQMW836A74VQ' where id=5; -update noar ti set v0='IP4STFWNQMW836A74VQ' where id=5; -update noar tt set b2='04SAVL7342H9OAPP5JL8T7HLYRXK466O' where id=5; -update noar ti set b2='04SAVL7342H9OAPP5JL8T7HLYRXK466O' where id=5; -update noar tt set v0='PSPEL3T84M' where id=6; -update noar ti set v0='PSPEL3T84M' where id=6; -update noar tt set b0='103DCO' where id=6; -update noar ti set b0='103DCO' where id=6; -update noar tt set v0='FDDAJ607NWDWCDG98X9' where id=6; -update noar ti set v0='FDDAJ607NWDWCDG98X9' where id=6; -update noar tt set b1='MFXBLQDIZR4N39N10NCAN980R' where id=6; -update noar ti set b1='MFXBLQDIZR4N39N10NCAN980R' where id=6; -update noar tt set v0='FH815IXX57ORKB5W23LV' where id=6; -update noar ti set v0='FH815IXX57ORKB5W23LV' where id=6; -update noar tt set b2='AARYDA' where id=6; -update noar ti set b2='AARYDA' where id=6; -update noar tt set v0='EHISY2O856GDXUAEYHABUCGR0Y' where id=7; -update noar ti set v0='EHISY2O856GDXUAEYHABUCGR0Y' where id=7; -update noar tt set b0='27P' where id=7; -update noar ti set b0='27P' where id=7; -update noar tt set v0='795IAK4YYMY13CSCBP1267A' where id=7; -update noar ti set v0='795IAK4YYMY13CSCBP1267A' where id=7; -update noar tt set b1='DIUML2QK2DOG45CX1T' where id=7; -update noar ti set b1='DIUML2QK2DOG45CX1T' where id=7; -update noar tt set v0='IIZZG5BEUX2RS2MAS90RI8EOHCZB57H0' where id=7; -update noar ti set v0='IIZZG5BEUX2RS2MAS90RI8EOHCZB57H0' where id=7; -update noar tt set b2='Y3YFJFGCX5V' where id=7; -update noar ti set b2='Y3YFJFGCX5V' where id=7; -update noar tt set v0='KF' where id=8; -update noar ti set v0='KF' where id=8; -update noar tt set b0='KQ5M39W8F' where id=8; -update noar ti set b0='KQ5M39W8F' where id=8; -update noar tt set v0='V0N7KHYJWYB4BU4ODUWBST' where id=8; -update noar ti set v0='V0N7KHYJWYB4BU4ODUWBST' where id=8; -update noar tt set b1='HH6S58YOR45B1FKE' where id=8; -update noar ti set b1='HH6S58YOR45B1FKE' where id=8; -update noar tt set v0='DX32Z' where id=8; -update noar ti set v0='DX32Z' where id=8; -update noar tt set b2='Z1CW' where id=8; -update noar ti set b2='Z1CW' where id=8; -update noar tt set v0='NUI' where id=9; -update noar ti set v0='NUI' where id=9; -update noar tt set b0='7DVKSBYK2Y3X4SSA389RIX7UGAI7IHZ' where id=9; -update noar ti set b0='7DVKSBYK2Y3X4SSA389RIX7UGAI7IHZ' where id=9; -update noar tt set v0='5V69PYQVGU' where id=9; -update noar ti set v0='5V69PYQVGU' where id=9; -update noar tt set b1='WCCK9IHUAKCB5LRMADZQ4THZ' where id=9; -update noar ti set b1='WCCK9IHUAKCB5LRMADZQ4THZ' where id=9; -update noar tt set v0='2SLJIWZZA0ZGQ87XLSKF' where id=9; -update noar ti set v0='2SLJIWZZA0ZGQ87XLSKF' where id=9; -update noar tt set b2='S7XO' where id=9; -update noar ti set b2='S7XO' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -f0 int not null, -v0 varchar(32) not null, -b0 mediumblob not null, -b1 longblob not null, -b2 blob not null -) engine=tokudb; -insert into tt values (1,0,'','','',''); -insert into tt values (2,0,'','','',''); -insert into tt values (3,0,'','','',''); -insert into tt values (4,0,'','','',''); -insert into tt values (5,0,'','','',''); -insert into tt values (6,0,'','','',''); -insert into tt values (7,0,'','','',''); -insert into tt values (8,0,'','','',''); -insert into tt values (9,0,'','','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='OKW0L2RLLUV4J0' where id=1; -update noar ti set v0='OKW0L2RLLUV4J0' where id=1; -update noar tt set b0='WZVWV1I6NEOXYZ2' where id=1; -update noar ti set b0='WZVWV1I6NEOXYZ2' where id=1; -update noar tt set v0='YIE6F371LZVJ71B5WC30X4MDCFIMOB' where id=1; -update noar ti set v0='YIE6F371LZVJ71B5WC30X4MDCFIMOB' where id=1; -update noar tt set b1='NJGZV33OVII3I532831ODDF' where id=1; -update noar ti set b1='NJGZV33OVII3I532831ODDF' where id=1; -update noar tt set v0='UV6ADP8R40FXLL43K' where id=1; -update noar ti set v0='UV6ADP8R40FXLL43K' where id=1; -update noar tt set b2='5K4KE58' where id=1; -update noar ti set b2='5K4KE58' where id=1; -update noar tt set v0='UX28LZOZYET61QCVM9DKSM8' where id=2; -update noar ti set v0='UX28LZOZYET61QCVM9DKSM8' where id=2; -update noar tt set b0='6O9LV98O9A5WR9I97T9CB0TMTOI' where id=2; -update noar ti set b0='6O9LV98O9A5WR9I97T9CB0TMTOI' where id=2; -update noar tt set v0='GZMJTX14ICF1UQ2' where id=2; -update noar ti set v0='GZMJTX14ICF1UQ2' where id=2; -update noar tt set b1='HGMGRRIIDL1' where id=2; -update noar ti set b1='HGMGRRIIDL1' where id=2; -update noar tt set v0='J257RWCEKH33CJRKMM' where id=2; -update noar ti set v0='J257RWCEKH33CJRKMM' where id=2; -update noar tt set b2='BS00J88MLS50FLCY7QM64BKYSB' where id=2; -update noar ti set b2='BS00J88MLS50FLCY7QM64BKYSB' where id=2; -update noar tt set v0='2FFOKRTAC22D2P8VD8SJC07IXE6' where id=3; -update noar ti set v0='2FFOKRTAC22D2P8VD8SJC07IXE6' where id=3; -update noar tt set b0='ERMLDOFAOF9859L1UA' where id=3; -update noar ti set b0='ERMLDOFAOF9859L1UA' where id=3; -update noar tt set v0='HZZ2XVZH95AASFVQDLBDCU0V5BF' where id=3; -update noar ti set v0='HZZ2XVZH95AASFVQDLBDCU0V5BF' where id=3; -update noar tt set b1='2UX2Z1HRALYTXMWDRTL' where id=3; -update noar ti set b1='2UX2Z1HRALYTXMWDRTL' where id=3; -update noar tt set v0='5TH4ZIMC4' where id=3; -update noar ti set v0='5TH4ZIMC4' where id=3; -update noar tt set b2='S0C' where id=3; -update noar ti set b2='S0C' where id=3; -update noar tt set v0='C' where id=4; -update noar ti set v0='C' where id=4; -update noar tt set b0='RFAJBFIVNZQPXPCVDW4KD8L11ZFJM8JT' where id=4; -update noar ti set b0='RFAJBFIVNZQPXPCVDW4KD8L11ZFJM8JT' where id=4; -update noar tt set v0='S35WKQBIPS6C285DS' where id=4; -update noar ti set v0='S35WKQBIPS6C285DS' where id=4; -update noar tt set b1='NPLJBL' where id=4; -update noar ti set b1='NPLJBL' where id=4; -update noar tt set v0='L72XTV1GL083J6V4JLXKNCQ' where id=4; -update noar ti set v0='L72XTV1GL083J6V4JLXKNCQ' where id=4; -update noar tt set b2='RQ6HURJO651EQBQJMER0X18ZKFZ' where id=4; -update noar ti set b2='RQ6HURJO651EQBQJMER0X18ZKFZ' where id=4; -update noar tt set v0='YJ89YJUS9V3YAHS8HR4GM8FV42S' where id=5; -update noar ti set v0='YJ89YJUS9V3YAHS8HR4GM8FV42S' where id=5; -update noar tt set b0='IM2PAQ' where id=5; -update noar ti set b0='IM2PAQ' where id=5; -update noar tt set v0='PQ5PY2V2VXZW0W19BKSYYN73RQ7O8' where id=5; -update noar ti set v0='PQ5PY2V2VXZW0W19BKSYYN73RQ7O8' where id=5; -update noar tt set b1='JF' where id=5; -update noar ti set b1='JF' where id=5; -update noar tt set v0='6WYR5' where id=5; -update noar ti set v0='6WYR5' where id=5; -update noar tt set b2='8TC34ZRWSY4EFCENV9AR31G9' where id=5; -update noar ti set b2='8TC34ZRWSY4EFCENV9AR31G9' where id=5; -update noar tt set v0='YYYN87E7IEA' where id=6; -update noar ti set v0='YYYN87E7IEA' where id=6; -update noar tt set b0='WM4ZRZZ36JHGCX' where id=6; -update noar ti set b0='WM4ZRZZ36JHGCX' where id=6; -update noar tt set v0='O693ZV71' where id=6; -update noar ti set v0='O693ZV71' where id=6; -update noar tt set b1='FYSY91LT' where id=6; -update noar ti set b1='FYSY91LT' where id=6; -update noar tt set v0='HZPKWU7SJR6TXBL' where id=6; -update noar ti set v0='HZPKWU7SJR6TXBL' where id=6; -update noar tt set b2='T83B2Y7GNAOTUNQX1L9VBHLVE6A' where id=6; -update noar ti set b2='T83B2Y7GNAOTUNQX1L9VBHLVE6A' where id=6; -update noar tt set v0='SKU5RRNBM797W3C' where id=7; -update noar ti set v0='SKU5RRNBM797W3C' where id=7; -update noar tt set b0='OC11PJ' where id=7; -update noar ti set b0='OC11PJ' where id=7; -update noar tt set v0='WFKMMADSY3UWBYQBW22GIC0N' where id=7; -update noar ti set v0='WFKMMADSY3UWBYQBW22GIC0N' where id=7; -update noar tt set b1='UTG9M3059BOI23A2B' where id=7; -update noar ti set b1='UTG9M3059BOI23A2B' where id=7; -update noar tt set v0='UH1392IBLDUDJ18SIBY2DA' where id=7; -update noar ti set v0='UH1392IBLDUDJ18SIBY2DA' where id=7; -update noar tt set b2='K2XFEOSQSU666DHJ9GNUPR7WL' where id=7; -update noar ti set b2='K2XFEOSQSU666DHJ9GNUPR7WL' where id=7; -update noar tt set v0='ACGGISOONHW' where id=8; -update noar ti set v0='ACGGISOONHW' where id=8; -update noar tt set b0='N' where id=8; -update noar ti set b0='N' where id=8; -update noar tt set v0='7Y8N' where id=8; -update noar ti set v0='7Y8N' where id=8; -update noar tt set b1='K4EE1EZOA8ZU54SO6WB' where id=8; -update noar ti set b1='K4EE1EZOA8ZU54SO6WB' where id=8; -update noar tt set v0='N90VUUQ5FVVMM' where id=8; -update noar ti set v0='N90VUUQ5FVVMM' where id=8; -update noar tt set b2='SUBATF9KXZBXSDUEGSU9YBD03G' where id=8; -update noar ti set b2='SUBATF9KXZBXSDUEGSU9YBD03G' where id=8; -update noar tt set v0='XZMVYA' where id=9; -update noar ti set v0='XZMVYA' where id=9; -update noar tt set b0='8YIUC3LXL5FBK90GCZTXVR0HXZ4G' where id=9; -update noar ti set b0='8YIUC3LXL5FBK90GCZTXVR0HXZ4G' where id=9; -update noar tt set v0='D4ZTC1YH7IFF2ASVK2X3OAXVN' where id=9; -update noar ti set v0='D4ZTC1YH7IFF2ASVK2X3OAXVN' where id=9; -update noar tt set b1='VQYK59X17' where id=9; -update noar ti set b1='VQYK59X17' where id=9; -update noar tt set v0='EOEBS8ACEQGF' where id=9; -update noar ti set v0='EOEBS8ACEQGF' where id=9; -update noar tt set b2='UJU8LP0HX4EK45FHU5Y47HIBRIR' where id=9; -update noar ti set b2='UJU8LP0HX4EK45FHU5Y47HIBRIR' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -f0 int not null, -v0 varchar(256) not null, -b0 mediumblob not null, -b1 longblob not null, -b2 blob not null -) engine=tokudb; -insert into tt values (1,0,'','','',''); -insert into tt values (2,0,'','','',''); -insert into tt values (3,0,'','','',''); -insert into tt values (4,0,'','','',''); -insert into tt values (5,0,'','','',''); -insert into tt values (6,0,'','','',''); -insert into tt values (7,0,'','','',''); -insert into tt values (8,0,'','','',''); -insert into tt values (9,0,'','','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='1CLWSO1JIYEZ3JQ' where id=1; -update noar ti set v0='1CLWSO1JIYEZ3JQ' where id=1; -update noar tt set b0='UED7YCNFQ9J97URGLNZ8GY' where id=1; -update noar ti set b0='UED7YCNFQ9J97URGLNZ8GY' where id=1; -update noar tt set v0='L5CFN37PY6H2SFQIG' where id=1; -update noar ti set v0='L5CFN37PY6H2SFQIG' where id=1; -update noar tt set b1='O10G02' where id=1; -update noar ti set b1='O10G02' where id=1; -update noar tt set v0='Y2P1VSIB4Q3DX5XMG7K0OMT1OQX6' where id=1; -update noar ti set v0='Y2P1VSIB4Q3DX5XMG7K0OMT1OQX6' where id=1; -update noar tt set b2='T5R18M9RFX78E1H' where id=1; -update noar ti set b2='T5R18M9RFX78E1H' where id=1; -update noar tt set v0='20XPQRC9FY1CN77EI' where id=2; -update noar ti set v0='20XPQRC9FY1CN77EI' where id=2; -update noar tt set b0='D2V8MDORXXJYBALB2EE9X' where id=2; -update noar ti set b0='D2V8MDORXXJYBALB2EE9X' where id=2; -update noar tt set v0='RW' where id=2; -update noar ti set v0='RW' where id=2; -update noar tt set b1='4X' where id=2; -update noar ti set b1='4X' where id=2; -update noar tt set v0='U6AFHTURD5L1A9JW0R8KQ' where id=2; -update noar ti set v0='U6AFHTURD5L1A9JW0R8KQ' where id=2; -update noar tt set b2='J5FM3P4EPHKOJ5I8CFYHQZ8GXUGEKJH' where id=2; -update noar ti set b2='J5FM3P4EPHKOJ5I8CFYHQZ8GXUGEKJH' where id=2; -update noar tt set v0='SUXE4EX3YDEVHZSOJV2Y2666T' where id=3; -update noar ti set v0='SUXE4EX3YDEVHZSOJV2Y2666T' where id=3; -update noar tt set b0='IP3VS9V0DGEF4NTEPK' where id=3; -update noar ti set b0='IP3VS9V0DGEF4NTEPK' where id=3; -update noar tt set v0='0EOZI64QZSVS6HNBI1QJO8OLWEGG' where id=3; -update noar ti set v0='0EOZI64QZSVS6HNBI1QJO8OLWEGG' where id=3; -update noar tt set b1='T' where id=3; -update noar ti set b1='T' where id=3; -update noar tt set v0='OC62B5JF1UXIPA6YOH4K8TYG' where id=3; -update noar ti set v0='OC62B5JF1UXIPA6YOH4K8TYG' where id=3; -update noar tt set b2='TRY9OF7TXBHWT5X8ZSLB' where id=3; -update noar ti set b2='TRY9OF7TXBHWT5X8ZSLB' where id=3; -update noar tt set v0='GT01QAX4X77DJ3JYQLJT' where id=4; -update noar ti set v0='GT01QAX4X77DJ3JYQLJT' where id=4; -update noar tt set b0='E4FLVAWGSGUJQ83EWT0AG3KRU14' where id=4; -update noar ti set b0='E4FLVAWGSGUJQ83EWT0AG3KRU14' where id=4; -update noar tt set v0='JXOXHX83ZPBEYLK9BXY4W3' where id=4; -update noar ti set v0='JXOXHX83ZPBEYLK9BXY4W3' where id=4; -update noar tt set b1='I543WWJYP9LYHDJ0YG1GBBC5US' where id=4; -update noar ti set b1='I543WWJYP9LYHDJ0YG1GBBC5US' where id=4; -update noar tt set v0='YOVGSLMD' where id=4; -update noar ti set v0='YOVGSLMD' where id=4; -update noar tt set b2='MD0PO' where id=4; -update noar ti set b2='MD0PO' where id=4; -update noar tt set v0='YOGBQBY8Y7CCW2CP96V' where id=5; -update noar ti set v0='YOGBQBY8Y7CCW2CP96V' where id=5; -update noar tt set b0='SO10T7T9RFS7MBOJ7LHDO47MY6DT57' where id=5; -update noar ti set b0='SO10T7T9RFS7MBOJ7LHDO47MY6DT57' where id=5; -update noar tt set v0='4NSPPCQO2MUBO09IH3GT1C' where id=5; -update noar ti set v0='4NSPPCQO2MUBO09IH3GT1C' where id=5; -update noar tt set b1='7CPSCVY5HDY0781INS9OHR4PI9W6I3' where id=5; -update noar ti set b1='7CPSCVY5HDY0781INS9OHR4PI9W6I3' where id=5; -update noar tt set v0='EHQ5ME' where id=5; -update noar ti set v0='EHQ5ME' where id=5; -update noar tt set b2='HAADR3OINKE87BBMV' where id=5; -update noar ti set b2='HAADR3OINKE87BBMV' where id=5; -update noar tt set v0='7YP1M' where id=6; -update noar ti set v0='7YP1M' where id=6; -update noar tt set b0='I3N5L5HF' where id=6; -update noar ti set b0='I3N5L5HF' where id=6; -update noar tt set v0='ZSA' where id=6; -update noar ti set v0='ZSA' where id=6; -update noar tt set b1='HLKTPVJ0XHBTXURRBKSU1PTE7P3' where id=6; -update noar ti set b1='HLKTPVJ0XHBTXURRBKSU1PTE7P3' where id=6; -update noar tt set v0='4IL7E8QHZ' where id=6; -update noar ti set v0='4IL7E8QHZ' where id=6; -update noar tt set b2='ZQVYHM33W72AAZD2VBVO34RE03H1TY' where id=6; -update noar ti set b2='ZQVYHM33W72AAZD2VBVO34RE03H1TY' where id=6; -update noar tt set v0='WJQF' where id=7; -update noar ti set v0='WJQF' where id=7; -update noar tt set b0='TQHT6TLPJ7QTJLICK' where id=7; -update noar ti set b0='TQHT6TLPJ7QTJLICK' where id=7; -update noar tt set v0='D7Z8IED45D6ZZUBO1D6U3A7NNKI' where id=7; -update noar ti set v0='D7Z8IED45D6ZZUBO1D6U3A7NNKI' where id=7; -update noar tt set b1='TPO98N9TSGX6BG51XMCHD' where id=7; -update noar ti set b1='TPO98N9TSGX6BG51XMCHD' where id=7; -update noar tt set v0='R' where id=7; -update noar ti set v0='R' where id=7; -update noar tt set b2='LPC0FNP8EFCVHN5' where id=7; -update noar ti set b2='LPC0FNP8EFCVHN5' where id=7; -update noar tt set v0='6ZFTC9B52IRFLZOSC11' where id=8; -update noar ti set v0='6ZFTC9B52IRFLZOSC11' where id=8; -update noar tt set b0='EOR6NMOHKM9MU5KJY58XY70' where id=8; -update noar ti set b0='EOR6NMOHKM9MU5KJY58XY70' where id=8; -update noar tt set v0='YMH0G1EH89OUW7ZQDPX' where id=8; -update noar ti set v0='YMH0G1EH89OUW7ZQDPX' where id=8; -update noar tt set b1='8IY11L1A' where id=8; -update noar ti set b1='8IY11L1A' where id=8; -update noar tt set v0='KL' where id=8; -update noar ti set v0='KL' where id=8; -update noar tt set b2='AJORWIPC02P6WZXQO3' where id=8; -update noar ti set b2='AJORWIPC02P6WZXQO3' where id=8; -update noar tt set v0='N5OMB3JO5OFAHVKCFPUG65KPE6' where id=9; -update noar ti set v0='N5OMB3JO5OFAHVKCFPUG65KPE6' where id=9; -update noar tt set b0='LTCUO5WBXZTPVGCQ' where id=9; -update noar ti set b0='LTCUO5WBXZTPVGCQ' where id=9; -update noar tt set v0='DHZV01HANF1AQ3HHRTT6F72BI' where id=9; -update noar ti set v0='DHZV01HANF1AQ3HHRTT6F72BI' where id=9; -update noar tt set b1='LQIH6' where id=9; -update noar ti set b1='LQIH6' where id=9; -update noar tt set v0='09YV50MZ3L7E0YIM7RPRC0EMTLGLL' where id=9; -update noar ti set v0='09YV50MZ3L7E0YIM7RPRC0EMTLGLL' where id=9; -update noar tt set b2='7437N5EMEVCKHG3628162YTCEL76SM' where id=9; -update noar ti set b2='7437N5EMEVCKHG3628162YTCEL76SM' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -f0 int null, -v0 varchar(32) null, -b0 mediumblob null, -b1 longblob null, -b2 mediumblob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='6ICAQJG3BD2DG9RDYEB' where id=1; -update noar ti set v0='6ICAQJG3BD2DG9RDYEB' where id=1; -update noar tt set b0='KKRAGG8' where id=1; -update noar ti set b0='KKRAGG8' where id=1; -update noar tt set v0='QVQ65UTTGMJ' where id=1; -update noar ti set v0='QVQ65UTTGMJ' where id=1; -update noar tt set b1='2Q4PUE60PW7OC5EBDPCHD' where id=1; -update noar ti set b1='2Q4PUE60PW7OC5EBDPCHD' where id=1; -update noar tt set v0='0HHQQY4B74RZJL6JOOYBS1' where id=1; -update noar ti set v0='0HHQQY4B74RZJL6JOOYBS1' where id=1; -update noar tt set b2='IFTLM2OI0P' where id=1; -update noar ti set b2='IFTLM2OI0P' where id=1; -update noar tt set v0='N066VUM7SXC833ZY3YZA1YZD' where id=2; -update noar ti set v0='N066VUM7SXC833ZY3YZA1YZD' where id=2; -update noar tt set b0='L0T0IJD5HSI8VFC7' where id=2; -update noar ti set b0='L0T0IJD5HSI8VFC7' where id=2; -update noar tt set v0='T1F2AYXQENO2NS' where id=2; -update noar ti set v0='T1F2AYXQENO2NS' where id=2; -update noar tt set b1='GQBLNM6VL5FMJ4XODE37YG4EJEPS' where id=2; -update noar ti set b1='GQBLNM6VL5FMJ4XODE37YG4EJEPS' where id=2; -update noar tt set v0='GQZ6Q' where id=2; -update noar ti set v0='GQZ6Q' where id=2; -update noar tt set b2='WCYLQAMBGYBWAP4RE5O2AM0PNNJKBS' where id=2; -update noar ti set b2='WCYLQAMBGYBWAP4RE5O2AM0PNNJKBS' where id=2; -update noar tt set v0='7LU0JY4SPVX9SWESBU5T0OOJ' where id=3; -update noar ti set v0='7LU0JY4SPVX9SWESBU5T0OOJ' where id=3; -update noar tt set b0='Y4ASNUCLNXM6' where id=3; -update noar ti set b0='Y4ASNUCLNXM6' where id=3; -update noar tt set v0='3TY5MEEZMYIY8IRS' where id=3; -update noar ti set v0='3TY5MEEZMYIY8IRS' where id=3; -update noar tt set b1='1CEJNNX2IR7BV' where id=3; -update noar ti set b1='1CEJNNX2IR7BV' where id=3; -update noar tt set v0='34GERYM7URA7S5PF0Z3OQ122446V0' where id=3; -update noar ti set v0='34GERYM7URA7S5PF0Z3OQ122446V0' where id=3; -update noar tt set b2='6T22' where id=3; -update noar ti set b2='6T22' where id=3; -update noar tt set v0='0S2W9LCYJKTAGCQE4JMS3Q4' where id=4; -update noar ti set v0='0S2W9LCYJKTAGCQE4JMS3Q4' where id=4; -update noar tt set b0='4O8X7BZ3HSN2D97C58FMC41I5DL2Z73B' where id=4; -update noar ti set b0='4O8X7BZ3HSN2D97C58FMC41I5DL2Z73B' where id=4; -update noar tt set v0='WZLJBWT0DUJOHEIYKI19FIANLZEL' where id=4; -update noar ti set v0='WZLJBWT0DUJOHEIYKI19FIANLZEL' where id=4; -update noar tt set b1='BTQZ4VSKD5BB5VY8Y71SX' where id=4; -update noar ti set b1='BTQZ4VSKD5BB5VY8Y71SX' where id=4; -update noar tt set v0='006HJG6KAK5I0D1YEY5XLS1J9K2U7K' where id=4; -update noar ti set v0='006HJG6KAK5I0D1YEY5XLS1J9K2U7K' where id=4; -update noar tt set b2='H1H8JCHNR0U2X275YCXOAQ6AGCK39' where id=4; -update noar ti set b2='H1H8JCHNR0U2X275YCXOAQ6AGCK39' where id=4; -update noar tt set v0='GOP2IOEVXA13W6OAO0Y0O8AVI0P' where id=5; -update noar ti set v0='GOP2IOEVXA13W6OAO0Y0O8AVI0P' where id=5; -update noar tt set b0='LLB3DPHB' where id=5; -update noar ti set b0='LLB3DPHB' where id=5; -update noar tt set v0='FUEAOGMQQASZ0H62' where id=5; -update noar ti set v0='FUEAOGMQQASZ0H62' where id=5; -update noar tt set b1='47KCT0' where id=5; -update noar ti set b1='47KCT0' where id=5; -update noar tt set v0='F' where id=5; -update noar ti set v0='F' where id=5; -update noar tt set b2='USWXXMRSL4WM09S' where id=5; -update noar ti set b2='USWXXMRSL4WM09S' where id=5; -update noar tt set v0='XGA2' where id=6; -update noar ti set v0='XGA2' where id=6; -update noar tt set b0='CXLYUT6XP86UQD' where id=6; -update noar ti set b0='CXLYUT6XP86UQD' where id=6; -update noar tt set v0='EZPO76IXA5EWPR' where id=6; -update noar ti set v0='EZPO76IXA5EWPR' where id=6; -update noar tt set b1='HR1R6X5G28' where id=6; -update noar ti set b1='HR1R6X5G28' where id=6; -update noar tt set v0='85M2Q3Q7NJ0W' where id=6; -update noar ti set v0='85M2Q3Q7NJ0W' where id=6; -update noar tt set b2='UFT4JO6DZKMI8T95HP0TFA' where id=6; -update noar ti set b2='UFT4JO6DZKMI8T95HP0TFA' where id=6; -update noar tt set v0='8ZOP5XVK2NUE29TF7MCJ' where id=7; -update noar ti set v0='8ZOP5XVK2NUE29TF7MCJ' where id=7; -update noar tt set b0='FLF4XLQARQC418NXL' where id=7; -update noar ti set b0='FLF4XLQARQC418NXL' where id=7; -update noar tt set v0='XG0451Q9TG6SOO5V2' where id=7; -update noar ti set v0='XG0451Q9TG6SOO5V2' where id=7; -update noar tt set b1='Y3030NJP3SIFAXX3MNJUUPWCT' where id=7; -update noar ti set b1='Y3030NJP3SIFAXX3MNJUUPWCT' where id=7; -update noar tt set v0='HLWUPQ4KPPTRRFXGXYU6' where id=7; -update noar ti set v0='HLWUPQ4KPPTRRFXGXYU6' where id=7; -update noar tt set b2='TN12L3Z50P3WOTRJ39G8SQGFQ3F0RJWB' where id=7; -update noar ti set b2='TN12L3Z50P3WOTRJ39G8SQGFQ3F0RJWB' where id=7; -update noar tt set v0='7ZN5S' where id=8; -update noar ti set v0='7ZN5S' where id=8; -update noar tt set b0='AI02OF' where id=8; -update noar ti set b0='AI02OF' where id=8; -update noar tt set v0='IV2O71UNNLXEUFD2GS5VM82' where id=8; -update noar ti set v0='IV2O71UNNLXEUFD2GS5VM82' where id=8; -update noar tt set b1='OLPH4T4CR8B' where id=8; -update noar ti set b1='OLPH4T4CR8B' where id=8; -update noar tt set v0='8ZJO671AE0SR850F3H7X' where id=8; -update noar ti set v0='8ZJO671AE0SR850F3H7X' where id=8; -update noar tt set b2='IXV8Z79' where id=8; -update noar ti set b2='IXV8Z79' where id=8; -update noar tt set v0='TPISPCSM75XLQ5GE75X' where id=9; -update noar ti set v0='TPISPCSM75XLQ5GE75X' where id=9; -update noar tt set b0='4OGY4C4AL' where id=9; -update noar ti set b0='4OGY4C4AL' where id=9; -update noar tt set v0='JFBQJODX7F7RY0OCRTMXRLPG25O6815' where id=9; -update noar ti set v0='JFBQJODX7F7RY0OCRTMXRLPG25O6815' where id=9; -update noar tt set b1='GZSA0UZGV2PBFRRKV6116Y90Z3Q1W' where id=9; -update noar ti set b1='GZSA0UZGV2PBFRRKV6116Y90Z3Q1W' where id=9; -update noar tt set v0='AB7HT2DTGYSUYWRVUBMLN' where id=9; -update noar ti set v0='AB7HT2DTGYSUYWRVUBMLN' where id=9; -update noar tt set b2='TKD8M35DT' where id=9; -update noar ti set b2='TKD8M35DT' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -f0 int null, -v0 varchar(256) null, -b0 mediumblob null, -b1 longblob null, -b2 mediumblob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='HL6X65Q8MWKC01' where id=1; -update noar ti set v0='HL6X65Q8MWKC01' where id=1; -update noar tt set b0='QIF7Y4TCS9HAJNLIRM1H9U9EOZ4WN0H' where id=1; -update noar ti set b0='QIF7Y4TCS9HAJNLIRM1H9U9EOZ4WN0H' where id=1; -update noar tt set v0='UN1D2PEQKVKFVT' where id=1; -update noar ti set v0='UN1D2PEQKVKFVT' where id=1; -update noar tt set b1='F9FG66TVH1R6SD57' where id=1; -update noar ti set b1='F9FG66TVH1R6SD57' where id=1; -update noar tt set v0='N6HJHC86S2TUANP1GQNDOX95' where id=1; -update noar ti set v0='N6HJHC86S2TUANP1GQNDOX95' where id=1; -update noar tt set b2='2ZMVL7S1BCVS0K9KAMYGRSO' where id=1; -update noar ti set b2='2ZMVL7S1BCVS0K9KAMYGRSO' where id=1; -update noar tt set v0='93NJ997KQOK0O1N20ZDLHAWL2X60BZGD' where id=2; -update noar ti set v0='93NJ997KQOK0O1N20ZDLHAWL2X60BZGD' where id=2; -update noar tt set b0='P06B8NT660THG2C48M5T2YEK8NJBZ' where id=2; -update noar ti set b0='P06B8NT660THG2C48M5T2YEK8NJBZ' where id=2; -update noar tt set v0='VPK5TRC9CR6W6W9KONU23ZHCR' where id=2; -update noar ti set v0='VPK5TRC9CR6W6W9KONU23ZHCR' where id=2; -update noar tt set b1='PIFGCEU5D2WVWYTS' where id=2; -update noar ti set b1='PIFGCEU5D2WVWYTS' where id=2; -update noar tt set v0='AH090T1NN6QJA' where id=2; -update noar ti set v0='AH090T1NN6QJA' where id=2; -update noar tt set b2='KH8VKK08YLF9SZZE' where id=2; -update noar ti set b2='KH8VKK08YLF9SZZE' where id=2; -update noar tt set v0='NUFISPR718CXL36K01QR2E' where id=3; -update noar ti set v0='NUFISPR718CXL36K01QR2E' where id=3; -update noar tt set b0='CMOEN' where id=3; -update noar ti set b0='CMOEN' where id=3; -update noar tt set v0='QHT5O8PJZXQ2Y4P5W0W' where id=3; -update noar ti set v0='QHT5O8PJZXQ2Y4P5W0W' where id=3; -update noar tt set b1='XDNBYZG47OWS4RQ4JDSYIVMMFO' where id=3; -update noar ti set b1='XDNBYZG47OWS4RQ4JDSYIVMMFO' where id=3; -update noar tt set v0='6QA2R430FYJVX2Q0F2WOMLKU' where id=3; -update noar ti set v0='6QA2R430FYJVX2Q0F2WOMLKU' where id=3; -update noar tt set b2='E0BYPZPA410BKF80WVMMNJQ' where id=3; -update noar ti set b2='E0BYPZPA410BKF80WVMMNJQ' where id=3; -update noar tt set v0='HKEB8U1JPX10XPBX' where id=4; -update noar ti set v0='HKEB8U1JPX10XPBX' where id=4; -update noar tt set b0='0UX1GQBFWAJF9CF95V3D64OKFXPX8' where id=4; -update noar ti set b0='0UX1GQBFWAJF9CF95V3D64OKFXPX8' where id=4; -update noar tt set v0='EKRQUHR6OZRJB0U7E9' where id=4; -update noar ti set v0='EKRQUHR6OZRJB0U7E9' where id=4; -update noar tt set b1='FQPG4O8NED7ZWPFR8R58GQDEHOR4E' where id=4; -update noar ti set b1='FQPG4O8NED7ZWPFR8R58GQDEHOR4E' where id=4; -update noar tt set v0='IXRT3GZ7G66DID5U52BDYUJ1VY3H' where id=4; -update noar ti set v0='IXRT3GZ7G66DID5U52BDYUJ1VY3H' where id=4; -update noar tt set b2='80HWYLXFNG9607NOU3LB9MXA5' where id=4; -update noar ti set b2='80HWYLXFNG9607NOU3LB9MXA5' where id=4; -update noar tt set v0='6HFGFL1TJUX0' where id=5; -update noar ti set v0='6HFGFL1TJUX0' where id=5; -update noar tt set b0='B12D0JCF4K1YEQBA5WN82S8LG0C' where id=5; -update noar ti set b0='B12D0JCF4K1YEQBA5WN82S8LG0C' where id=5; -update noar tt set v0='JHYMC6XM1RND9QBW1YJX6ST6IAVZJW' where id=5; -update noar ti set v0='JHYMC6XM1RND9QBW1YJX6ST6IAVZJW' where id=5; -update noar tt set b1='VTQ1QU' where id=5; -update noar ti set b1='VTQ1QU' where id=5; -update noar tt set v0='635UBV8GAGK9HSU86GWO56IRM0U3Q' where id=5; -update noar ti set v0='635UBV8GAGK9HSU86GWO56IRM0U3Q' where id=5; -update noar tt set b2='0K' where id=5; -update noar ti set b2='0K' where id=5; -update noar tt set v0='FU3Y7X5ES8UAFGSTG49WUK9GELEI' where id=6; -update noar ti set v0='FU3Y7X5ES8UAFGSTG49WUK9GELEI' where id=6; -update noar tt set b0='W2XZ74MD769OWJZ8WRQ35AB8U16JL' where id=6; -update noar ti set b0='W2XZ74MD769OWJZ8WRQ35AB8U16JL' where id=6; -update noar tt set v0='X04MKKS1H6UTHC3SCDGK8UZCXGOU' where id=6; -update noar ti set v0='X04MKKS1H6UTHC3SCDGK8UZCXGOU' where id=6; -update noar tt set b1='5Z8NQLPF0BG75HG5X9O8W82CUC42XYM' where id=6; -update noar ti set b1='5Z8NQLPF0BG75HG5X9O8W82CUC42XYM' where id=6; -update noar tt set v0='K88PEOOTJRS2FKHCP3A87R' where id=6; -update noar ti set v0='K88PEOOTJRS2FKHCP3A87R' where id=6; -update noar tt set b2='YC9CFD' where id=6; -update noar ti set b2='YC9CFD' where id=6; -update noar tt set v0='GDXON6P' where id=7; -update noar ti set v0='GDXON6P' where id=7; -update noar tt set b0='GY6F89HPAZZ1BQ4IY5XU8GAYVL8UDT5' where id=7; -update noar ti set b0='GY6F89HPAZZ1BQ4IY5XU8GAYVL8UDT5' where id=7; -update noar tt set v0='KXUCUE9KFOF27M0B6YFLUN36DH5C6BRB' where id=7; -update noar ti set v0='KXUCUE9KFOF27M0B6YFLUN36DH5C6BRB' where id=7; -update noar tt set b1='8X8B3YNGA35OQ4389GHAWF7Q8' where id=7; -update noar ti set b1='8X8B3YNGA35OQ4389GHAWF7Q8' where id=7; -update noar tt set v0='C2WRU00MGLWUR8BDVY984G39BZH1ZR' where id=7; -update noar ti set v0='C2WRU00MGLWUR8BDVY984G39BZH1ZR' where id=7; -update noar tt set b2='PVZ4AKJ353UB64VE3OSDYPQ3KT8QV' where id=7; -update noar ti set b2='PVZ4AKJ353UB64VE3OSDYPQ3KT8QV' where id=7; -update noar tt set v0='SNR9FVT0Y4P5' where id=8; -update noar ti set v0='SNR9FVT0Y4P5' where id=8; -update noar tt set b0='2DYBASI0QWSF' where id=8; -update noar ti set b0='2DYBASI0QWSF' where id=8; -update noar tt set v0='TPBK10P51C' where id=8; -update noar ti set v0='TPBK10P51C' where id=8; -update noar tt set b1='LNDR52KIKO' where id=8; -update noar ti set b1='LNDR52KIKO' where id=8; -update noar tt set v0='62ZAK0A5AQRO6D1HU948H11IR9L0' where id=8; -update noar ti set v0='62ZAK0A5AQRO6D1HU948H11IR9L0' where id=8; -update noar tt set b2='FGIAKLOB7IW4O2FVAA5' where id=8; -update noar ti set b2='FGIAKLOB7IW4O2FVAA5' where id=8; -update noar tt set v0='B4' where id=9; -update noar ti set v0='B4' where id=9; -update noar tt set b0='QYPEPO8Q6EI' where id=9; -update noar ti set b0='QYPEPO8Q6EI' where id=9; -update noar tt set v0='8YGCDOB6RDZ51P7PJ' where id=9; -update noar ti set v0='8YGCDOB6RDZ51P7PJ' where id=9; -update noar tt set b1='NEBZTEUWFI' where id=9; -update noar ti set b1='NEBZTEUWFI' where id=9; -update noar tt set v0='2TUNBPN' where id=9; -update noar ti set v0='2TUNBPN' where id=9; -update noar tt set b2='8PV615PLHISK770CB4' where id=9; -update noar ti set b2='8PV615PLHISK770CB4' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -f0 int not null, -v0 varchar(32) not null, -b0 mediumblob not null, -b1 longblob not null, -b2 mediumblob not null -) engine=tokudb; -insert into tt values (1,0,'','','',''); -insert into tt values (2,0,'','','',''); -insert into tt values (3,0,'','','',''); -insert into tt values (4,0,'','','',''); -insert into tt values (5,0,'','','',''); -insert into tt values (6,0,'','','',''); -insert into tt values (7,0,'','','',''); -insert into tt values (8,0,'','','',''); -insert into tt values (9,0,'','','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='UP8EUHCYNQW2QQ' where id=1; -update noar ti set v0='UP8EUHCYNQW2QQ' where id=1; -update noar tt set b0='NS9DV' where id=1; -update noar ti set b0='NS9DV' where id=1; -update noar tt set v0='FT2W4T90Y2AOM3Q0Q6KSLXR2' where id=1; -update noar ti set v0='FT2W4T90Y2AOM3Q0Q6KSLXR2' where id=1; -update noar tt set b1='V1CK5H92V93W1KZLY6PWVNSAL14M2I' where id=1; -update noar ti set b1='V1CK5H92V93W1KZLY6PWVNSAL14M2I' where id=1; -update noar tt set v0='XFIZ2HYZSYJYAS0F' where id=1; -update noar ti set v0='XFIZ2HYZSYJYAS0F' where id=1; -update noar tt set b2='MXF72G1QK99R' where id=1; -update noar ti set b2='MXF72G1QK99R' where id=1; -update noar tt set v0='STEBGQH1RQ8C5N1IP9C03' where id=2; -update noar ti set v0='STEBGQH1RQ8C5N1IP9C03' where id=2; -update noar tt set b0='SW0PKDH16OSWHSXOGDI0' where id=2; -update noar ti set b0='SW0PKDH16OSWHSXOGDI0' where id=2; -update noar tt set v0='3F5VJZEDF68' where id=2; -update noar ti set v0='3F5VJZEDF68' where id=2; -update noar tt set b1='CU8OL2KG' where id=2; -update noar ti set b1='CU8OL2KG' where id=2; -update noar tt set v0='L3NWK3TOG7QK9F7ZII9PSECJA1T' where id=2; -update noar ti set v0='L3NWK3TOG7QK9F7ZII9PSECJA1T' where id=2; -update noar tt set b2='YIVKR1LF28FECBNQD0' where id=2; -update noar ti set b2='YIVKR1LF28FECBNQD0' where id=2; -update noar tt set v0='7V4ER' where id=3; -update noar ti set v0='7V4ER' where id=3; -update noar tt set b0='JIGR0F2BTT3Y2RG8320' where id=3; -update noar ti set b0='JIGR0F2BTT3Y2RG8320' where id=3; -update noar tt set v0='PABTE86OA32BMMM' where id=3; -update noar ti set v0='PABTE86OA32BMMM' where id=3; -update noar tt set b1='13S2MP40EV0H0CHAQYU64NBEE' where id=3; -update noar ti set b1='13S2MP40EV0H0CHAQYU64NBEE' where id=3; -update noar tt set v0='LV' where id=3; -update noar ti set v0='LV' where id=3; -update noar tt set b2='WQBU1L11HJYBABJNIWBR8I2BAZTAF' where id=3; -update noar ti set b2='WQBU1L11HJYBABJNIWBR8I2BAZTAF' where id=3; -update noar tt set v0='7I' where id=4; -update noar ti set v0='7I' where id=4; -update noar tt set b0='Z' where id=4; -update noar ti set b0='Z' where id=4; -update noar tt set v0='IDY9XZE5P08EON0MXW1W54' where id=4; -update noar ti set v0='IDY9XZE5P08EON0MXW1W54' where id=4; -update noar tt set b1='E36C050AKNVQE2JHULQEVD4I8' where id=4; -update noar ti set b1='E36C050AKNVQE2JHULQEVD4I8' where id=4; -update noar tt set v0='K1F8CGDB603UCUQ' where id=4; -update noar ti set v0='K1F8CGDB603UCUQ' where id=4; -update noar tt set b2='C9AZGNR42TJ7RAWZOJPV869T' where id=4; -update noar ti set b2='C9AZGNR42TJ7RAWZOJPV869T' where id=4; -update noar tt set v0='AWDXCF' where id=5; -update noar ti set v0='AWDXCF' where id=5; -update noar tt set b0='JPVJIQYQMSN7SE10GFL7QY3SXIN76GE1' where id=5; -update noar ti set b0='JPVJIQYQMSN7SE10GFL7QY3SXIN76GE1' where id=5; -update noar tt set v0='VK2EK4L9S' where id=5; -update noar ti set v0='VK2EK4L9S' where id=5; -update noar tt set b1='W7QUW4IG0UEZR5WC' where id=5; -update noar ti set b1='W7QUW4IG0UEZR5WC' where id=5; -update noar tt set v0='FSXTN4YVUW' where id=5; -update noar ti set v0='FSXTN4YVUW' where id=5; -update noar tt set b2='H' where id=5; -update noar ti set b2='H' where id=5; -update noar tt set v0='E6OSJ04WE7A9FNYDR1AIAY' where id=6; -update noar ti set v0='E6OSJ04WE7A9FNYDR1AIAY' where id=6; -update noar tt set b0='H2IO' where id=6; -update noar ti set b0='H2IO' where id=6; -update noar tt set v0='I3N7DAYDEQ5G6QWE8L33TY77588LFZ' where id=6; -update noar ti set v0='I3N7DAYDEQ5G6QWE8L33TY77588LFZ' where id=6; -update noar tt set b1='FLHZ1U0N0CKEKGARXUBB86IOTQV4SUY' where id=6; -update noar ti set b1='FLHZ1U0N0CKEKGARXUBB86IOTQV4SUY' where id=6; -update noar tt set v0='EKMSWA13UQYHCEUBZ33IQD9QN' where id=6; -update noar ti set v0='EKMSWA13UQYHCEUBZ33IQD9QN' where id=6; -update noar tt set b2='HH82LP' where id=6; -update noar ti set b2='HH82LP' where id=6; -update noar tt set v0='ZQOXCC8AO3Z1XG3MH4MWFJU9AQV195' where id=7; -update noar ti set v0='ZQOXCC8AO3Z1XG3MH4MWFJU9AQV195' where id=7; -update noar tt set b0='TMPEJVA589A7L9KPDDIO' where id=7; -update noar ti set b0='TMPEJVA589A7L9KPDDIO' where id=7; -update noar tt set v0='MWN053JH6WESLL43MQCO5Y79' where id=7; -update noar ti set v0='MWN053JH6WESLL43MQCO5Y79' where id=7; -update noar tt set b1='VO7FN' where id=7; -update noar ti set b1='VO7FN' where id=7; -update noar tt set v0='6XA7H8MZ2Y2IYU273770LTPEO' where id=7; -update noar ti set v0='6XA7H8MZ2Y2IYU273770LTPEO' where id=7; -update noar tt set b2='TDOAX0JYJ7SPYTZD703FFMIZRZ' where id=7; -update noar ti set b2='TDOAX0JYJ7SPYTZD703FFMIZRZ' where id=7; -update noar tt set v0='13BMKR3K3' where id=8; -update noar ti set v0='13BMKR3K3' where id=8; -update noar tt set b0='GUY2PPNARATT9FC7J7RG8BN8PQDZ2W' where id=8; -update noar ti set b0='GUY2PPNARATT9FC7J7RG8BN8PQDZ2W' where id=8; -update noar tt set v0='7KTKO3YH0Z73GZUWDCI' where id=8; -update noar ti set v0='7KTKO3YH0Z73GZUWDCI' where id=8; -update noar tt set b1='L2MB68QRGTK2YIB' where id=8; -update noar ti set b1='L2MB68QRGTK2YIB' where id=8; -update noar tt set v0='R' where id=8; -update noar ti set v0='R' where id=8; -update noar tt set b2='OLUWE5NMPGARAHC9W7UGJWKSW0' where id=8; -update noar ti set b2='OLUWE5NMPGARAHC9W7UGJWKSW0' where id=8; -update noar tt set v0='4J6R9SFFK2JLSR57XOZZC1M5D5LLNW37' where id=9; -update noar ti set v0='4J6R9SFFK2JLSR57XOZZC1M5D5LLNW37' where id=9; -update noar tt set b0='XU19W07I9ZIT2LBCX' where id=9; -update noar ti set b0='XU19W07I9ZIT2LBCX' where id=9; -update noar tt set v0='5UDERDQVLB' where id=9; -update noar ti set v0='5UDERDQVLB' where id=9; -update noar tt set b1='LHYA95WGSUFQTKO2Y4JUQ8B' where id=9; -update noar ti set b1='LHYA95WGSUFQTKO2Y4JUQ8B' where id=9; -update noar tt set v0='WUXLJKIMXT758FZQ9XAJLHHK8BHY' where id=9; -update noar ti set v0='WUXLJKIMXT758FZQ9XAJLHHK8BHY' where id=9; -update noar tt set b2='S3XY8TTBZOJDEQ65ZIRXTA7DXYX' where id=9; -update noar ti set b2='S3XY8TTBZOJDEQ65ZIRXTA7DXYX' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -f0 int not null, -v0 varchar(256) not null, -b0 mediumblob not null, -b1 longblob not null, -b2 mediumblob not null -) engine=tokudb; -insert into tt values (1,0,'','','',''); -insert into tt values (2,0,'','','',''); -insert into tt values (3,0,'','','',''); -insert into tt values (4,0,'','','',''); -insert into tt values (5,0,'','','',''); -insert into tt values (6,0,'','','',''); -insert into tt values (7,0,'','','',''); -insert into tt values (8,0,'','','',''); -insert into tt values (9,0,'','','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='2ILZ' where id=1; -update noar ti set v0='2ILZ' where id=1; -update noar tt set b0='EC2DB40PJPXYCM' where id=1; -update noar ti set b0='EC2DB40PJPXYCM' where id=1; -update noar tt set v0='Q56QK20ZVFFTYIRHT3HRO5LHXX2A' where id=1; -update noar ti set v0='Q56QK20ZVFFTYIRHT3HRO5LHXX2A' where id=1; -update noar tt set b1='35Y4YJ7Q6APBMA3Y6' where id=1; -update noar ti set b1='35Y4YJ7Q6APBMA3Y6' where id=1; -update noar tt set v0='EZ2RY65IWA2AX0DIT0W7UVO1U7FKGDJO' where id=1; -update noar ti set v0='EZ2RY65IWA2AX0DIT0W7UVO1U7FKGDJO' where id=1; -update noar tt set b2='7H' where id=1; -update noar ti set b2='7H' where id=1; -update noar tt set v0='0RAW4EE86K22E5HST5EE7G8' where id=2; -update noar ti set v0='0RAW4EE86K22E5HST5EE7G8' where id=2; -update noar tt set b0='UO49FZ0A16ZILH790RTWQQPK' where id=2; -update noar ti set b0='UO49FZ0A16ZILH790RTWQQPK' where id=2; -update noar tt set v0='JKU23TO8EYKZ' where id=2; -update noar ti set v0='JKU23TO8EYKZ' where id=2; -update noar tt set b1='2H1DMWZSW' where id=2; -update noar ti set b1='2H1DMWZSW' where id=2; -update noar tt set v0='RRMYN3PW74FL7GHYAFZXNEOT' where id=2; -update noar ti set v0='RRMYN3PW74FL7GHYAFZXNEOT' where id=2; -update noar tt set b2='W3NOD0QR75HDT8H3RU7K4T5J6A34O6D' where id=2; -update noar ti set b2='W3NOD0QR75HDT8H3RU7K4T5J6A34O6D' where id=2; -update noar tt set v0='3GJWTO5Z' where id=3; -update noar ti set v0='3GJWTO5Z' where id=3; -update noar tt set b0='CN8QL0OXPCMDXNDRNH' where id=3; -update noar ti set b0='CN8QL0OXPCMDXNDRNH' where id=3; -update noar tt set v0='I5897KCNWE' where id=3; -update noar ti set v0='I5897KCNWE' where id=3; -update noar tt set b1='L8TG6653YGZXH' where id=3; -update noar ti set b1='L8TG6653YGZXH' where id=3; -update noar tt set v0='DSSIQV5QU' where id=3; -update noar ti set v0='DSSIQV5QU' where id=3; -update noar tt set b2='WZG4ZDR140F652LJADP' where id=3; -update noar ti set b2='WZG4ZDR140F652LJADP' where id=3; -update noar tt set v0='DE1JB' where id=4; -update noar ti set v0='DE1JB' where id=4; -update noar tt set b0='TMFQH787LU6MCMUFKCXW3K3U9AX8HC' where id=4; -update noar ti set b0='TMFQH787LU6MCMUFKCXW3K3U9AX8HC' where id=4; -update noar tt set v0='W5BI4AVIQV' where id=4; -update noar ti set v0='W5BI4AVIQV' where id=4; -update noar tt set b1='5T1PGF2CAEU799SHQ' where id=4; -update noar ti set b1='5T1PGF2CAEU799SHQ' where id=4; -update noar tt set v0='E18INA41CSOVI6X0YES' where id=4; -update noar ti set v0='E18INA41CSOVI6X0YES' where id=4; -update noar tt set b2='S1SDYU28WMEB' where id=4; -update noar ti set b2='S1SDYU28WMEB' where id=4; -update noar tt set v0='5FMBX4JJH7BDXXTY' where id=5; -update noar ti set v0='5FMBX4JJH7BDXXTY' where id=5; -update noar tt set b0='U21SWD95UC5D6WK' where id=5; -update noar ti set b0='U21SWD95UC5D6WK' where id=5; -update noar tt set v0='KOA4YF0DIORPY9PH' where id=5; -update noar ti set v0='KOA4YF0DIORPY9PH' where id=5; -update noar tt set b1='G4ZDF1H8W8JKE947F55CDJJSIW' where id=5; -update noar ti set b1='G4ZDF1H8W8JKE947F55CDJJSIW' where id=5; -update noar tt set v0='IA7VJO92RM5PR' where id=5; -update noar ti set v0='IA7VJO92RM5PR' where id=5; -update noar tt set b2='51HGLPS16LBXFZZEJJNAVF6SGQA7ZLB' where id=5; -update noar ti set b2='51HGLPS16LBXFZZEJJNAVF6SGQA7ZLB' where id=5; -update noar tt set v0='OWGPFRKXO85CT3YUE8WC4WN87JOFJ6G1' where id=6; -update noar ti set v0='OWGPFRKXO85CT3YUE8WC4WN87JOFJ6G1' where id=6; -update noar tt set b0='EP6TG4WLY63QOLPXRP4V4OOU2' where id=6; -update noar ti set b0='EP6TG4WLY63QOLPXRP4V4OOU2' where id=6; -update noar tt set v0='E3PFBB4JE8JJ0XW' where id=6; -update noar ti set v0='E3PFBB4JE8JJ0XW' where id=6; -update noar tt set b1='SUBZ6CDLFTS2GM4A753VA' where id=6; -update noar ti set b1='SUBZ6CDLFTS2GM4A753VA' where id=6; -update noar tt set v0='G1XWSSEZGGS0SLY1BISMJ' where id=6; -update noar ti set v0='G1XWSSEZGGS0SLY1BISMJ' where id=6; -update noar tt set b2='UA1FLG0XFXP69QUM' where id=6; -update noar ti set b2='UA1FLG0XFXP69QUM' where id=6; -update noar tt set v0='CD6VOUA0SYMEZ' where id=7; -update noar ti set v0='CD6VOUA0SYMEZ' where id=7; -update noar tt set b0='MGJ2H5AF3MRLD94' where id=7; -update noar ti set b0='MGJ2H5AF3MRLD94' where id=7; -update noar tt set v0='MHUKEY22WIM1U3AM9VP9D4ZU9MAL0O' where id=7; -update noar ti set v0='MHUKEY22WIM1U3AM9VP9D4ZU9MAL0O' where id=7; -update noar tt set b1='Q' where id=7; -update noar ti set b1='Q' where id=7; -update noar tt set v0='RSRFRYHC3NQ23YY1T9Y54' where id=7; -update noar ti set v0='RSRFRYHC3NQ23YY1T9Y54' where id=7; -update noar tt set b2='29UIT2ODNFU0F3IJFJ1Z2K3CTKVYMEM1' where id=7; -update noar ti set b2='29UIT2ODNFU0F3IJFJ1Z2K3CTKVYMEM1' where id=7; -update noar tt set v0='SOR8KWP4L8R00Q7Z3H72AO2' where id=8; -update noar ti set v0='SOR8KWP4L8R00Q7Z3H72AO2' where id=8; -update noar tt set b0='LHAMU6Q0JNQ18EIEOL0MZ8E5' where id=8; -update noar ti set b0='LHAMU6Q0JNQ18EIEOL0MZ8E5' where id=8; -update noar tt set v0='J8Q36JWZULIGIMDEFL0CGJHCMA' where id=8; -update noar ti set v0='J8Q36JWZULIGIMDEFL0CGJHCMA' where id=8; -update noar tt set b1='MLO7AU04JXN8BW4094EVGA25YRQA' where id=8; -update noar ti set b1='MLO7AU04JXN8BW4094EVGA25YRQA' where id=8; -update noar tt set v0='NB' where id=8; -update noar ti set v0='NB' where id=8; -update noar tt set b2='1JLDKBEEYE3L' where id=8; -update noar ti set b2='1JLDKBEEYE3L' where id=8; -update noar tt set v0='TS89N' where id=9; -update noar ti set v0='TS89N' where id=9; -update noar tt set b0='P0VGLFCBH4FW92DZS6H6YZ35M' where id=9; -update noar ti set b0='P0VGLFCBH4FW92DZS6H6YZ35M' where id=9; -update noar tt set v0='H9WMGS' where id=9; -update noar ti set v0='H9WMGS' where id=9; -update noar tt set b1='4GWF7K' where id=9; -update noar ti set b1='4GWF7K' where id=9; -update noar tt set v0='YP8DUVFOGGBWO6P7G12I7TXXT' where id=9; -update noar ti set v0='YP8DUVFOGGBWO6P7G12I7TXXT' where id=9; -update noar tt set b2='YUDEX6B1NMV8GS0QEWDNC' where id=9; -update noar ti set b2='YUDEX6B1NMV8GS0QEWDNC' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -f0 int null, -v0 varchar(32) null, -b0 mediumblob null, -b1 longblob null, -b2 longblob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='AW2OD3GD' where id=1; -update noar ti set v0='AW2OD3GD' where id=1; -update noar tt set b0='LD362B0PY4GL3FP1N2K1ZQO' where id=1; -update noar ti set b0='LD362B0PY4GL3FP1N2K1ZQO' where id=1; -update noar tt set v0='NJUSK' where id=1; -update noar ti set v0='NJUSK' where id=1; -update noar tt set b1='F' where id=1; -update noar ti set b1='F' where id=1; -update noar tt set v0='BJJ9M6P7QKBIQVRWX4HZ2DOBN85CYUX' where id=1; -update noar ti set v0='BJJ9M6P7QKBIQVRWX4HZ2DOBN85CYUX' where id=1; -update noar tt set b2='TYHABQSNJ1K22M09URS41D' where id=1; -update noar ti set b2='TYHABQSNJ1K22M09URS41D' where id=1; -update noar tt set v0='QRK51RMVEC75W2VLPKO8BEAJ2F5Y' where id=2; -update noar ti set v0='QRK51RMVEC75W2VLPKO8BEAJ2F5Y' where id=2; -update noar tt set b0='JPET4IBA84O284OPWW7T' where id=2; -update noar ti set b0='JPET4IBA84O284OPWW7T' where id=2; -update noar tt set v0='XNEREF12QCG6OABO8JDTC39' where id=2; -update noar ti set v0='XNEREF12QCG6OABO8JDTC39' where id=2; -update noar tt set b1='XP1G1POT0LU1PH460E3YCX00KEL2ZYGH' where id=2; -update noar ti set b1='XP1G1POT0LU1PH460E3YCX00KEL2ZYGH' where id=2; -update noar tt set v0='2ECYTOWRO36RH5J2' where id=2; -update noar ti set v0='2ECYTOWRO36RH5J2' where id=2; -update noar tt set b2='28E5SE' where id=2; -update noar ti set b2='28E5SE' where id=2; -update noar tt set v0='14272XVETGR3VA1Z0V3A4PFJRU' where id=3; -update noar ti set v0='14272XVETGR3VA1Z0V3A4PFJRU' where id=3; -update noar tt set b0='31ZJQR5435MQL6KOUNUVGDFFK' where id=3; -update noar ti set b0='31ZJQR5435MQL6KOUNUVGDFFK' where id=3; -update noar tt set v0='WTF4054OEH982JDO00' where id=3; -update noar ti set v0='WTF4054OEH982JDO00' where id=3; -update noar tt set b1='ZSG682327IWQ64PEDQ19' where id=3; -update noar ti set b1='ZSG682327IWQ64PEDQ19' where id=3; -update noar tt set v0='ET2' where id=3; -update noar ti set v0='ET2' where id=3; -update noar tt set b2='BZ5OA' where id=3; -update noar ti set b2='BZ5OA' where id=3; -update noar tt set v0='BZK47' where id=4; -update noar ti set v0='BZK47' where id=4; -update noar tt set b0='VIS0F5Q2M7J' where id=4; -update noar ti set b0='VIS0F5Q2M7J' where id=4; -update noar tt set v0='6GN9JDJUGUJ1RMBA3JI' where id=4; -update noar ti set v0='6GN9JDJUGUJ1RMBA3JI' where id=4; -update noar tt set b1='7KCYUNPOAXVLDI7G8O6QKH' where id=4; -update noar ti set b1='7KCYUNPOAXVLDI7G8O6QKH' where id=4; -update noar tt set v0='N3' where id=4; -update noar ti set v0='N3' where id=4; -update noar tt set b2='FGJIZ58FVIY30WQSE5R5AW' where id=4; -update noar ti set b2='FGJIZ58FVIY30WQSE5R5AW' where id=4; -update noar tt set v0='RLE8P7' where id=5; -update noar ti set v0='RLE8P7' where id=5; -update noar tt set b0='2DCN2T9BYR0PC7QPQP56S' where id=5; -update noar ti set b0='2DCN2T9BYR0PC7QPQP56S' where id=5; -update noar tt set v0='KIMLSNBFAOASH5BEYNF0AN7XYV' where id=5; -update noar ti set v0='KIMLSNBFAOASH5BEYNF0AN7XYV' where id=5; -update noar tt set b1='LGR3R859K5XVPBNXI' where id=5; -update noar ti set b1='LGR3R859K5XVPBNXI' where id=5; -update noar tt set v0='DDK3QTDLKYSBUJ45O6BBWNNHI9J' where id=5; -update noar ti set v0='DDK3QTDLKYSBUJ45O6BBWNNHI9J' where id=5; -update noar tt set b2='0J313M5XGSZ5JGO3FWKGCR8' where id=5; -update noar ti set b2='0J313M5XGSZ5JGO3FWKGCR8' where id=5; -update noar tt set v0='QKHEY31TBVXX9GGTQ' where id=6; -update noar ti set v0='QKHEY31TBVXX9GGTQ' where id=6; -update noar tt set b0='GCA3TNF' where id=6; -update noar ti set b0='GCA3TNF' where id=6; -update noar tt set v0='6R75YFUCHPV6S0ZKO6WZKT5' where id=6; -update noar ti set v0='6R75YFUCHPV6S0ZKO6WZKT5' where id=6; -update noar tt set b1='H8P5MLQ2GMF3EI73W8BOXR0Z5QMMD7' where id=6; -update noar ti set b1='H8P5MLQ2GMF3EI73W8BOXR0Z5QMMD7' where id=6; -update noar tt set v0='5FPFN6VW5EIE9JGM' where id=6; -update noar ti set v0='5FPFN6VW5EIE9JGM' where id=6; -update noar tt set b2='WD2JX194' where id=6; -update noar ti set b2='WD2JX194' where id=6; -update noar tt set v0='IS1XT4LLD46FC5M80QNUE49BR' where id=7; -update noar ti set v0='IS1XT4LLD46FC5M80QNUE49BR' where id=7; -update noar tt set b0='CZI3' where id=7; -update noar ti set b0='CZI3' where id=7; -update noar tt set v0='3XQ0679P67887H8' where id=7; -update noar ti set v0='3XQ0679P67887H8' where id=7; -update noar tt set b1='QLV' where id=7; -update noar ti set b1='QLV' where id=7; -update noar tt set v0='6WMIUUJHCR1' where id=7; -update noar ti set v0='6WMIUUJHCR1' where id=7; -update noar tt set b2='IM9NUCDA' where id=7; -update noar ti set b2='IM9NUCDA' where id=7; -update noar tt set v0='OM9' where id=8; -update noar ti set v0='OM9' where id=8; -update noar tt set b0='4TAL4BXY0L1SNT00MA1E' where id=8; -update noar ti set b0='4TAL4BXY0L1SNT00MA1E' where id=8; -update noar tt set v0='Y09B0WO5XG66YFI9XV48JZ' where id=8; -update noar ti set v0='Y09B0WO5XG66YFI9XV48JZ' where id=8; -update noar tt set b1='6CVSMPHFRZUTYYPK1GVFYVRGASMF9' where id=8; -update noar ti set b1='6CVSMPHFRZUTYYPK1GVFYVRGASMF9' where id=8; -update noar tt set v0='YKHKWB8KAUQUB' where id=8; -update noar ti set v0='YKHKWB8KAUQUB' where id=8; -update noar tt set b2='CXSVD0YIDHDCCG5VYWK847F6' where id=8; -update noar ti set b2='CXSVD0YIDHDCCG5VYWK847F6' where id=8; -update noar tt set v0='STWZ8EFG' where id=9; -update noar ti set v0='STWZ8EFG' where id=9; -update noar tt set b0='L5FN0Q3HRTD2' where id=9; -update noar ti set b0='L5FN0Q3HRTD2' where id=9; -update noar tt set v0='BRXONH' where id=9; -update noar ti set v0='BRXONH' where id=9; -update noar tt set b1='ZXN9DJBZQLCZ20ZN7' where id=9; -update noar ti set b1='ZXN9DJBZQLCZ20ZN7' where id=9; -update noar tt set v0='VI2ACASVXBNGE8GPBK6OU2WXK' where id=9; -update noar ti set v0='VI2ACASVXBNGE8GPBK6OU2WXK' where id=9; -update noar tt set b2='LMPC2ETNA' where id=9; -update noar ti set b2='LMPC2ETNA' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -f0 int null, -v0 varchar(256) null, -b0 mediumblob null, -b1 longblob null, -b2 longblob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='GFVBAQREW06YKPH3ZKO5QGNSXJHJHYP' where id=1; -update noar ti set v0='GFVBAQREW06YKPH3ZKO5QGNSXJHJHYP' where id=1; -update noar tt set b0='IM68GEOZJYF4IWM2Q1AJX1JDS3' where id=1; -update noar ti set b0='IM68GEOZJYF4IWM2Q1AJX1JDS3' where id=1; -update noar tt set v0='797K4URFJYTU4AKXX4T8ZIMBTTREKMEN' where id=1; -update noar ti set v0='797K4URFJYTU4AKXX4T8ZIMBTTREKMEN' where id=1; -update noar tt set b1='TQKGOJ' where id=1; -update noar ti set b1='TQKGOJ' where id=1; -update noar tt set v0='F1YPQRFBIKU527B4C4OTMQ151RZDL4GX' where id=1; -update noar ti set v0='F1YPQRFBIKU527B4C4OTMQ151RZDL4GX' where id=1; -update noar tt set b2='LS6IXQ5IVE31Z52K2JEZU7' where id=1; -update noar ti set b2='LS6IXQ5IVE31Z52K2JEZU7' where id=1; -update noar tt set v0='J4UOLAMN6B8XYNHFQCM6L' where id=2; -update noar ti set v0='J4UOLAMN6B8XYNHFQCM6L' where id=2; -update noar tt set b0='L65GIWZORKTMQVP' where id=2; -update noar ti set b0='L65GIWZORKTMQVP' where id=2; -update noar tt set v0='Q4B93LVPSFJ0' where id=2; -update noar ti set v0='Q4B93LVPSFJ0' where id=2; -update noar tt set b1='BDTLPEH6HZG5T33HEPG' where id=2; -update noar ti set b1='BDTLPEH6HZG5T33HEPG' where id=2; -update noar tt set v0='MZXCDT6' where id=2; -update noar ti set v0='MZXCDT6' where id=2; -update noar tt set b2='NF9RRLPHRE27SPVIVYO1QYM1GQX2C' where id=2; -update noar ti set b2='NF9RRLPHRE27SPVIVYO1QYM1GQX2C' where id=2; -update noar tt set v0='J4BU1W7REMUKXRZL8HNQMQPX' where id=3; -update noar ti set v0='J4BU1W7REMUKXRZL8HNQMQPX' where id=3; -update noar tt set b0='XYOQF1BGUALE93SPMPA3V2M6FD3HVQJ' where id=3; -update noar ti set b0='XYOQF1BGUALE93SPMPA3V2M6FD3HVQJ' where id=3; -update noar tt set v0='KM2CEA871P1NO6H47' where id=3; -update noar ti set v0='KM2CEA871P1NO6H47' where id=3; -update noar tt set b1='94S7HOXCPBEUV5VYF25Z' where id=3; -update noar ti set b1='94S7HOXCPBEUV5VYF25Z' where id=3; -update noar tt set v0='K5B' where id=3; -update noar ti set v0='K5B' where id=3; -update noar tt set b2='03TL80UC7J75ZV8QW655MXCPHD18WQ' where id=3; -update noar ti set b2='03TL80UC7J75ZV8QW655MXCPHD18WQ' where id=3; -update noar tt set v0='8NPRY9QZ5AS8KELE8C' where id=4; -update noar ti set v0='8NPRY9QZ5AS8KELE8C' where id=4; -update noar tt set b0='45J3TDDBV7CNO387HGRGGJC2IS8' where id=4; -update noar ti set b0='45J3TDDBV7CNO387HGRGGJC2IS8' where id=4; -update noar tt set v0='1X9O' where id=4; -update noar ti set v0='1X9O' where id=4; -update noar tt set b1='748TTPZYZO7W4WTIJ' where id=4; -update noar ti set b1='748TTPZYZO7W4WTIJ' where id=4; -update noar tt set v0='EGVA4ZBNYAB2P5F2T' where id=4; -update noar ti set v0='EGVA4ZBNYAB2P5F2T' where id=4; -update noar tt set b2='CM5JF' where id=4; -update noar ti set b2='CM5JF' where id=4; -update noar tt set v0='NA4F40ROMV9RJ90X33RRR9GOMSB79G' where id=5; -update noar ti set v0='NA4F40ROMV9RJ90X33RRR9GOMSB79G' where id=5; -update noar tt set b0='R8XA2S55BRHOYJ5F63O' where id=5; -update noar ti set b0='R8XA2S55BRHOYJ5F63O' where id=5; -update noar tt set v0='BFSK1QVY8QS6P520515' where id=5; -update noar ti set v0='BFSK1QVY8QS6P520515' where id=5; -update noar tt set b1='V82EP3EY21TF0GYJEDJB6TK777V468L' where id=5; -update noar ti set b1='V82EP3EY21TF0GYJEDJB6TK777V468L' where id=5; -update noar tt set v0='ZSKLP21' where id=5; -update noar ti set v0='ZSKLP21' where id=5; -update noar tt set b2='6MRX5I3WNEKK' where id=5; -update noar ti set b2='6MRX5I3WNEKK' where id=5; -update noar tt set v0='EELYQHJUMOXFSOWIACVIX1M98DYLT4' where id=6; -update noar ti set v0='EELYQHJUMOXFSOWIACVIX1M98DYLT4' where id=6; -update noar tt set b0='Y9ZJPJ0QXQ31IN7BRHC7B65MFS' where id=6; -update noar ti set b0='Y9ZJPJ0QXQ31IN7BRHC7B65MFS' where id=6; -update noar tt set v0='82L' where id=6; -update noar ti set v0='82L' where id=6; -update noar tt set b1='6JYV5JRCFFPFK41WR6Q' where id=6; -update noar ti set b1='6JYV5JRCFFPFK41WR6Q' where id=6; -update noar tt set v0='L' where id=6; -update noar ti set v0='L' where id=6; -update noar tt set b2='D8QQ' where id=6; -update noar ti set b2='D8QQ' where id=6; -update noar tt set v0='80H89' where id=7; -update noar ti set v0='80H89' where id=7; -update noar tt set b0='TAFW7RE4REC3LNPX18C0QY' where id=7; -update noar ti set b0='TAFW7RE4REC3LNPX18C0QY' where id=7; -update noar tt set v0='KAGU' where id=7; -update noar ti set v0='KAGU' where id=7; -update noar tt set b1='LZNXX0959H5ED8QHDU6UXQT1WA' where id=7; -update noar ti set b1='LZNXX0959H5ED8QHDU6UXQT1WA' where id=7; -update noar tt set v0='WUU4MI2ET0RZQB' where id=7; -update noar ti set v0='WUU4MI2ET0RZQB' where id=7; -update noar tt set b2='AGK3XHZEBS5' where id=7; -update noar ti set b2='AGK3XHZEBS5' where id=7; -update noar tt set v0='ECA81L0Z58ANQVR63KHKES49ZL6EWW' where id=8; -update noar ti set v0='ECA81L0Z58ANQVR63KHKES49ZL6EWW' where id=8; -update noar tt set b0='JB495VPK' where id=8; -update noar ti set b0='JB495VPK' where id=8; -update noar tt set v0='MFO2' where id=8; -update noar ti set v0='MFO2' where id=8; -update noar tt set b1='MJREI2BSLULVL' where id=8; -update noar ti set b1='MJREI2BSLULVL' where id=8; -update noar tt set v0='Y0SS5UUUT53SJQFDZJI3659BR3K' where id=8; -update noar ti set v0='Y0SS5UUUT53SJQFDZJI3659BR3K' where id=8; -update noar tt set b2='RD' where id=8; -update noar ti set b2='RD' where id=8; -update noar tt set v0='T4DMD5CDZWUAY3Y36' where id=9; -update noar ti set v0='T4DMD5CDZWUAY3Y36' where id=9; -update noar tt set b0='48' where id=9; -update noar ti set b0='48' where id=9; -update noar tt set v0='K' where id=9; -update noar ti set v0='K' where id=9; -update noar tt set b1='9SEYLX2KGLOGJZNXX' where id=9; -update noar ti set b1='9SEYLX2KGLOGJZNXX' where id=9; -update noar tt set v0='VSCF' where id=9; -update noar ti set v0='VSCF' where id=9; -update noar tt set b2='VQBHMDLD0T2XHVBJD5' where id=9; -update noar ti set b2='VQBHMDLD0T2XHVBJD5' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -f0 int not null, -v0 varchar(32) not null, -b0 mediumblob not null, -b1 longblob not null, -b2 longblob not null -) engine=tokudb; -insert into tt values (1,0,'','','',''); -insert into tt values (2,0,'','','',''); -insert into tt values (3,0,'','','',''); -insert into tt values (4,0,'','','',''); -insert into tt values (5,0,'','','',''); -insert into tt values (6,0,'','','',''); -insert into tt values (7,0,'','','',''); -insert into tt values (8,0,'','','',''); -insert into tt values (9,0,'','','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='G' where id=1; -update noar ti set v0='G' where id=1; -update noar tt set b0='VAND2VIP5YLB0PPBZ961VVVF' where id=1; -update noar ti set b0='VAND2VIP5YLB0PPBZ961VVVF' where id=1; -update noar tt set v0='PXMUZSAL35EG5NDGO4' where id=1; -update noar ti set v0='PXMUZSAL35EG5NDGO4' where id=1; -update noar tt set b1='DFM4ER0JQ6NN05XRDBR22H' where id=1; -update noar ti set b1='DFM4ER0JQ6NN05XRDBR22H' where id=1; -update noar tt set v0='DXY' where id=1; -update noar ti set v0='DXY' where id=1; -update noar tt set b2='NS8EHGK3BXBM61FU0HXMG13KWA8936' where id=1; -update noar ti set b2='NS8EHGK3BXBM61FU0HXMG13KWA8936' where id=1; -update noar tt set v0='P72602TGNU' where id=2; -update noar ti set v0='P72602TGNU' where id=2; -update noar tt set b0='P5UHFRNRTJ2SCVWTU' where id=2; -update noar ti set b0='P5UHFRNRTJ2SCVWTU' where id=2; -update noar tt set v0='90EQCZY01DS063Y8RPGEFFPRKB' where id=2; -update noar ti set v0='90EQCZY01DS063Y8RPGEFFPRKB' where id=2; -update noar tt set b1='B9KN3OVZNDVQDR98KAHQGUOA6HRR' where id=2; -update noar ti set b1='B9KN3OVZNDVQDR98KAHQGUOA6HRR' where id=2; -update noar tt set v0='9NIGMQ30WMDMLKJWEKBNIOQ9R8GQH' where id=2; -update noar ti set v0='9NIGMQ30WMDMLKJWEKBNIOQ9R8GQH' where id=2; -update noar tt set b2='2RY63T41FRDOGB1MJ4MNWF7QW6O4VNMU' where id=2; -update noar ti set b2='2RY63T41FRDOGB1MJ4MNWF7QW6O4VNMU' where id=2; -update noar tt set v0='VOBZ9E5HN5PLDZ8WTSGRZ4F' where id=3; -update noar ti set v0='VOBZ9E5HN5PLDZ8WTSGRZ4F' where id=3; -update noar tt set b0='BMFSDJUT2OWQKFG894IAFGPFSY' where id=3; -update noar ti set b0='BMFSDJUT2OWQKFG894IAFGPFSY' where id=3; -update noar tt set v0='NZKF22IJSEM325QAECDAZRMDXFNBDM' where id=3; -update noar ti set v0='NZKF22IJSEM325QAECDAZRMDXFNBDM' where id=3; -update noar tt set b1='1HLTX77QNRUI2FJ3T6F9' where id=3; -update noar ti set b1='1HLTX77QNRUI2FJ3T6F9' where id=3; -update noar tt set v0='FGCMAVX0BW5UJHW73QTZJEPO4' where id=3; -update noar ti set v0='FGCMAVX0BW5UJHW73QTZJEPO4' where id=3; -update noar tt set b2='A6ANELT5R4SOTNQM8D12OJ4K7XTH6' where id=3; -update noar ti set b2='A6ANELT5R4SOTNQM8D12OJ4K7XTH6' where id=3; -update noar tt set v0='IV7U64WM8BJNU' where id=4; -update noar ti set v0='IV7U64WM8BJNU' where id=4; -update noar tt set b0='7NHBKRGA3J9HZGGA98J2KFY' where id=4; -update noar ti set b0='7NHBKRGA3J9HZGGA98J2KFY' where id=4; -update noar tt set v0='KQA778' where id=4; -update noar ti set v0='KQA778' where id=4; -update noar tt set b1='BKCZPSWKTIRJI6H5GH39I3ZFE79L' where id=4; -update noar ti set b1='BKCZPSWKTIRJI6H5GH39I3ZFE79L' where id=4; -update noar tt set v0='09P40844DPQ4AD7YHW5R5W0YA' where id=4; -update noar ti set v0='09P40844DPQ4AD7YHW5R5W0YA' where id=4; -update noar tt set b2='PFTMK7OJ' where id=4; -update noar ti set b2='PFTMK7OJ' where id=4; -update noar tt set v0='B7OCE' where id=5; -update noar ti set v0='B7OCE' where id=5; -update noar tt set b0='P4K6WO9ZGIYWXTALZ4K3WXQ4A8ZBZH' where id=5; -update noar ti set b0='P4K6WO9ZGIYWXTALZ4K3WXQ4A8ZBZH' where id=5; -update noar tt set v0='9J7TEROHHPY99BUCBVLC6LF4PHLRPCRT' where id=5; -update noar ti set v0='9J7TEROHHPY99BUCBVLC6LF4PHLRPCRT' where id=5; -update noar tt set b1='ZR36ZBK86UEEWJI7FSAA59TBE1' where id=5; -update noar ti set b1='ZR36ZBK86UEEWJI7FSAA59TBE1' where id=5; -update noar tt set v0='VCHB' where id=5; -update noar ti set v0='VCHB' where id=5; -update noar tt set b2='VOCE69FAPUN2XOAI96GU5' where id=5; -update noar ti set b2='VOCE69FAPUN2XOAI96GU5' where id=5; -update noar tt set v0='Z' where id=6; -update noar ti set v0='Z' where id=6; -update noar tt set b0='M3Y04D0V12UE20SV1Q9NUU5IPQIVZGBZ' where id=6; -update noar ti set b0='M3Y04D0V12UE20SV1Q9NUU5IPQIVZGBZ' where id=6; -update noar tt set v0='1IJW3F9O7MHN2LN3' where id=6; -update noar ti set v0='1IJW3F9O7MHN2LN3' where id=6; -update noar tt set b1='BEVM5ASK74UL5P8DLYE' where id=6; -update noar ti set b1='BEVM5ASK74UL5P8DLYE' where id=6; -update noar tt set v0='JPGKTZ6S1OZQ3R05G' where id=6; -update noar ti set v0='JPGKTZ6S1OZQ3R05G' where id=6; -update noar tt set b2='8JTQZ7V0OW4GHOMMAWB0QA2JQC383' where id=6; -update noar ti set b2='8JTQZ7V0OW4GHOMMAWB0QA2JQC383' where id=6; -update noar tt set v0='8Q4X8FTS4317' where id=7; -update noar ti set v0='8Q4X8FTS4317' where id=7; -update noar tt set b0='P0762NB0AZO6GTTBXCZ434FM8FG' where id=7; -update noar ti set b0='P0762NB0AZO6GTTBXCZ434FM8FG' where id=7; -update noar tt set v0='DV3' where id=7; -update noar ti set v0='DV3' where id=7; -update noar tt set b1='T0CE' where id=7; -update noar ti set b1='T0CE' where id=7; -update noar tt set v0='QLVY' where id=7; -update noar ti set v0='QLVY' where id=7; -update noar tt set b2='OMEKF' where id=7; -update noar ti set b2='OMEKF' where id=7; -update noar tt set v0='RXWO' where id=8; -update noar ti set v0='RXWO' where id=8; -update noar tt set b0='7Q7SY0D4W3C0TZDGTI5BEJD5' where id=8; -update noar ti set b0='7Q7SY0D4W3C0TZDGTI5BEJD5' where id=8; -update noar tt set v0='JM0D9VG8XLDTN3MSGE6LU' where id=8; -update noar ti set v0='JM0D9VG8XLDTN3MSGE6LU' where id=8; -update noar tt set b1='1XRWW45Q00BAT1FULKP0N' where id=8; -update noar ti set b1='1XRWW45Q00BAT1FULKP0N' where id=8; -update noar tt set v0='G1L5UPGBQWZ4QUR71H6YCH60TWW8OZHB' where id=8; -update noar ti set v0='G1L5UPGBQWZ4QUR71H6YCH60TWW8OZHB' where id=8; -update noar tt set b2='V9OJRMLCDW46D6T5R5LN4FPNURE7TF' where id=8; -update noar ti set b2='V9OJRMLCDW46D6T5R5LN4FPNURE7TF' where id=8; -update noar tt set v0='UEGT03NKE1Q302ZXJ2' where id=9; -update noar ti set v0='UEGT03NKE1Q302ZXJ2' where id=9; -update noar tt set b0='WHK6THY43PBQKOACBT' where id=9; -update noar ti set b0='WHK6THY43PBQKOACBT' where id=9; -update noar tt set v0='MJIHUP814XARHFL2OPZKS' where id=9; -update noar ti set v0='MJIHUP814XARHFL2OPZKS' where id=9; -update noar tt set b1='9ACLHM8MVAZC6CTRXV5GKXQ5DN1' where id=9; -update noar ti set b1='9ACLHM8MVAZC6CTRXV5GKXQ5DN1' where id=9; -update noar tt set v0='GQIQ0WY' where id=9; -update noar ti set v0='GQIQ0WY' where id=9; -update noar tt set b2='O7LJT0NABGE5' where id=9; -update noar ti set b2='O7LJT0NABGE5' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -f0 int not null, -v0 varchar(256) not null, -b0 mediumblob not null, -b1 longblob not null, -b2 longblob not null -) engine=tokudb; -insert into tt values (1,0,'','','',''); -insert into tt values (2,0,'','','',''); -insert into tt values (3,0,'','','',''); -insert into tt values (4,0,'','','',''); -insert into tt values (5,0,'','','',''); -insert into tt values (6,0,'','','',''); -insert into tt values (7,0,'','','',''); -insert into tt values (8,0,'','','',''); -insert into tt values (9,0,'','','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='790RTHC395T6VUA57FX1' where id=1; -update noar ti set v0='790RTHC395T6VUA57FX1' where id=1; -update noar tt set b0='HT628UM42HKNJOBM8YTODY' where id=1; -update noar ti set b0='HT628UM42HKNJOBM8YTODY' where id=1; -update noar tt set v0='52BJ4RVTILA05AUIWWOI707PPPGXM8E' where id=1; -update noar ti set v0='52BJ4RVTILA05AUIWWOI707PPPGXM8E' where id=1; -update noar tt set b1='ONW43OQTL1ODGYH6NBMX' where id=1; -update noar ti set b1='ONW43OQTL1ODGYH6NBMX' where id=1; -update noar tt set v0='LSME4LOU7T4NEFE373VQ55QS' where id=1; -update noar ti set v0='LSME4LOU7T4NEFE373VQ55QS' where id=1; -update noar tt set b2='PN5OM45LA1B8SWRBSHHY6SSI1WSV' where id=1; -update noar ti set b2='PN5OM45LA1B8SWRBSHHY6SSI1WSV' where id=1; -update noar tt set v0='WD' where id=2; -update noar ti set v0='WD' where id=2; -update noar tt set b0='AHX43TEQLHKL1Y7I94A9NAT3T' where id=2; -update noar ti set b0='AHX43TEQLHKL1Y7I94A9NAT3T' where id=2; -update noar tt set v0='L' where id=2; -update noar ti set v0='L' where id=2; -update noar tt set b1='5P7P0XQ7AQ3O' where id=2; -update noar ti set b1='5P7P0XQ7AQ3O' where id=2; -update noar tt set v0='RRA7C2OARDA9XFOEIV' where id=2; -update noar ti set v0='RRA7C2OARDA9XFOEIV' where id=2; -update noar tt set b2='8A4MJ72YHJZ0DHTTJEZ54T912B2P1Z' where id=2; -update noar ti set b2='8A4MJ72YHJZ0DHTTJEZ54T912B2P1Z' where id=2; -update noar tt set v0='01BRERG9FB6N' where id=3; -update noar ti set v0='01BRERG9FB6N' where id=3; -update noar tt set b0='N5' where id=3; -update noar ti set b0='N5' where id=3; -update noar tt set v0='5FV6ZVV9UPI2H4AT9DYDYX82UYJG28K' where id=3; -update noar ti set v0='5FV6ZVV9UPI2H4AT9DYDYX82UYJG28K' where id=3; -update noar tt set b1='KSSUDN39VU' where id=3; -update noar ti set b1='KSSUDN39VU' where id=3; -update noar tt set v0='YFM9TM02KM964YMTYJPPIATLBJWNZ' where id=3; -update noar ti set v0='YFM9TM02KM964YMTYJPPIATLBJWNZ' where id=3; -update noar tt set b2='VXAM0CPF8JY' where id=3; -update noar ti set b2='VXAM0CPF8JY' where id=3; -update noar tt set v0='M' where id=4; -update noar ti set v0='M' where id=4; -update noar tt set b0='E4TNNL7ZTSTDVBIHRCP' where id=4; -update noar ti set b0='E4TNNL7ZTSTDVBIHRCP' where id=4; -update noar tt set v0='4URQ7XB0CREBIDGMU2TPRN24L1YC' where id=4; -update noar ti set v0='4URQ7XB0CREBIDGMU2TPRN24L1YC' where id=4; -update noar tt set b1='XAY2VSX5YVF2M4OK28WNFYG5Z' where id=4; -update noar ti set b1='XAY2VSX5YVF2M4OK28WNFYG5Z' where id=4; -update noar tt set v0='VAURJFSFL63LKHASC0QBSEF7Z0Z8FRG5' where id=4; -update noar ti set v0='VAURJFSFL63LKHASC0QBSEF7Z0Z8FRG5' where id=4; -update noar tt set b2='5BH9HH30AFAZUCVG2ZV0HIQQ1HWN' where id=4; -update noar ti set b2='5BH9HH30AFAZUCVG2ZV0HIQQ1HWN' where id=4; -update noar tt set v0='MN58Y59CF8ZPOA3ZNB6YPSSNF' where id=5; -update noar ti set v0='MN58Y59CF8ZPOA3ZNB6YPSSNF' where id=5; -update noar tt set b0='FAWEUNRX98QGODB' where id=5; -update noar ti set b0='FAWEUNRX98QGODB' where id=5; -update noar tt set v0='G2BEWGS0S476SC02MLAWZSKM67F' where id=5; -update noar ti set v0='G2BEWGS0S476SC02MLAWZSKM67F' where id=5; -update noar tt set b1='JIMPQKSPSU6FDMHN' where id=5; -update noar ti set b1='JIMPQKSPSU6FDMHN' where id=5; -update noar tt set v0='90X8Z18QOII' where id=5; -update noar ti set v0='90X8Z18QOII' where id=5; -update noar tt set b2='E2TZZSWUGHHUB48M' where id=5; -update noar ti set b2='E2TZZSWUGHHUB48M' where id=5; -update noar tt set v0='1W8AR8VKNBWHJVYIPWUNQ6XSV' where id=6; -update noar ti set v0='1W8AR8VKNBWHJVYIPWUNQ6XSV' where id=6; -update noar tt set b0='40XRV7KKCK3YF' where id=6; -update noar ti set b0='40XRV7KKCK3YF' where id=6; -update noar tt set v0='MMLACYF12OLT7QJIGVLO7NN9T5DE' where id=6; -update noar ti set v0='MMLACYF12OLT7QJIGVLO7NN9T5DE' where id=6; -update noar tt set b1='2ATD8' where id=6; -update noar ti set b1='2ATD8' where id=6; -update noar tt set v0='ZQ29ELJKL8FMVFN25YDK7A7A' where id=6; -update noar ti set v0='ZQ29ELJKL8FMVFN25YDK7A7A' where id=6; -update noar tt set b2='7JPC' where id=6; -update noar ti set b2='7JPC' where id=6; -update noar tt set v0='TVZVG42OQXT7W1AAFVGVRA0PQ' where id=7; -update noar ti set v0='TVZVG42OQXT7W1AAFVGVRA0PQ' where id=7; -update noar tt set b0='VC7QWJKY2VA6T' where id=7; -update noar ti set b0='VC7QWJKY2VA6T' where id=7; -update noar tt set v0='ETZWG' where id=7; -update noar ti set v0='ETZWG' where id=7; -update noar tt set b1='YKR7SNOFV7LTHBBARW7QMTHQBOWLJAM4' where id=7; -update noar ti set b1='YKR7SNOFV7LTHBBARW7QMTHQBOWLJAM4' where id=7; -update noar tt set v0='30G4GSXJZ' where id=7; -update noar ti set v0='30G4GSXJZ' where id=7; -update noar tt set b2='ZHOVLIUX4GXYO4BB' where id=7; -update noar ti set b2='ZHOVLIUX4GXYO4BB' where id=7; -update noar tt set v0='KPW7CE5EZP93841EIWR9G' where id=8; -update noar ti set v0='KPW7CE5EZP93841EIWR9G' where id=8; -update noar tt set b0='LL0QMRWAA9PI3T2FPGCZIBFJ3' where id=8; -update noar ti set b0='LL0QMRWAA9PI3T2FPGCZIBFJ3' where id=8; -update noar tt set v0='J1H4HSGZGOW5YQ4AFFEFD3Y4Z3RG1' where id=8; -update noar ti set v0='J1H4HSGZGOW5YQ4AFFEFD3Y4Z3RG1' where id=8; -update noar tt set b1='3D6NSXOSNNFTUN17GPJDPTI39EEJ' where id=8; -update noar ti set b1='3D6NSXOSNNFTUN17GPJDPTI39EEJ' where id=8; -update noar tt set v0='9NO7XV' where id=8; -update noar ti set v0='9NO7XV' where id=8; -update noar tt set b2='UEMTSBBAAEL1T0RYNQJAD7KN5RAI1U' where id=8; -update noar ti set b2='UEMTSBBAAEL1T0RYNQJAD7KN5RAI1U' where id=8; -update noar tt set v0='XMAL5Y4J5I72Z' where id=9; -update noar ti set v0='XMAL5Y4J5I72Z' where id=9; -update noar tt set b0='5Y7LXA9QZPS01' where id=9; -update noar ti set b0='5Y7LXA9QZPS01' where id=9; -update noar tt set v0='4NGEHL5FCVD27B189OU3ELC' where id=9; -update noar ti set v0='4NGEHL5FCVD27B189OU3ELC' where id=9; -update noar tt set b1='UR3JIFC' where id=9; -update noar ti set b1='UR3JIFC' where id=9; -update noar tt set v0='1ICQGUUGU' where id=9; -update noar ti set v0='1ICQGUUGU' where id=9; -update noar tt set b2='53XKIDZT2CRFH38' where id=9; -update noar ti set b2='53XKIDZT2CRFH38' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -f0 int null, -v0 varchar(32) null, -b0 longblob null, -b1 tinyblob null, -b2 tinyblob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='NMSM29H6DK50HWHQISJ' where id=1; -update noar ti set v0='NMSM29H6DK50HWHQISJ' where id=1; -update noar tt set b0='9273AYFX0G9X3Z3CAWJXQ1OL6ARUXYLB' where id=1; -update noar ti set b0='9273AYFX0G9X3Z3CAWJXQ1OL6ARUXYLB' where id=1; -update noar tt set v0='UUU6F8RV7R9' where id=1; -update noar ti set v0='UUU6F8RV7R9' where id=1; -update noar tt set b1='DCM' where id=1; -update noar ti set b1='DCM' where id=1; -update noar tt set v0='JT' where id=1; -update noar ti set v0='JT' where id=1; -update noar tt set b2='PR8QLXBMQX106WM' where id=1; -update noar ti set b2='PR8QLXBMQX106WM' where id=1; -update noar tt set v0='BU0PMEXJ8G6QE5YWF0AAE' where id=2; -update noar ti set v0='BU0PMEXJ8G6QE5YWF0AAE' where id=2; -update noar tt set b0='TBW0SONU8T61JI8AK791KDTXQIN9230' where id=2; -update noar ti set b0='TBW0SONU8T61JI8AK791KDTXQIN9230' where id=2; -update noar tt set v0='DYORRDDP8G2NCYDUMV0IRB' where id=2; -update noar ti set v0='DYORRDDP8G2NCYDUMV0IRB' where id=2; -update noar tt set b1='O3CQMSMY' where id=2; -update noar ti set b1='O3CQMSMY' where id=2; -update noar tt set v0='21FILP' where id=2; -update noar ti set v0='21FILP' where id=2; -update noar tt set b2='R8HN' where id=2; -update noar ti set b2='R8HN' where id=2; -update noar tt set v0='B827Z2WU883Z7I' where id=3; -update noar ti set v0='B827Z2WU883Z7I' where id=3; -update noar tt set b0='UMSUPM8K60RN5ER0NKJIL0N06B' where id=3; -update noar ti set b0='UMSUPM8K60RN5ER0NKJIL0N06B' where id=3; -update noar tt set v0='XDADHODWEUY4G4Q0VL2SIBI7' where id=3; -update noar ti set v0='XDADHODWEUY4G4Q0VL2SIBI7' where id=3; -update noar tt set b1='15' where id=3; -update noar ti set b1='15' where id=3; -update noar tt set v0='TGCHUW4F' where id=3; -update noar ti set v0='TGCHUW4F' where id=3; -update noar tt set b2='RAX5FFKBU3KORZVHQBY' where id=3; -update noar ti set b2='RAX5FFKBU3KORZVHQBY' where id=3; -update noar tt set v0='UWNJM31LCHB4JCADLKRS6EFV' where id=4; -update noar ti set v0='UWNJM31LCHB4JCADLKRS6EFV' where id=4; -update noar tt set b0='2D51W3YI331FLFV' where id=4; -update noar ti set b0='2D51W3YI331FLFV' where id=4; -update noar tt set v0='RQ18XZVGTI8JWOH49H' where id=4; -update noar ti set v0='RQ18XZVGTI8JWOH49H' where id=4; -update noar tt set b1='BHGY2M500JY' where id=4; -update noar ti set b1='BHGY2M500JY' where id=4; -update noar tt set v0='EGPSP' where id=4; -update noar ti set v0='EGPSP' where id=4; -update noar tt set b2='20XCRZ14H6PS8C87MTLYV' where id=4; -update noar ti set b2='20XCRZ14H6PS8C87MTLYV' where id=4; -update noar tt set v0='3KYD4KKDFF6EDGNH2EOQSVN4X1A3' where id=5; -update noar ti set v0='3KYD4KKDFF6EDGNH2EOQSVN4X1A3' where id=5; -update noar tt set b0='3ZXORPJRSI0JYWL7' where id=5; -update noar ti set b0='3ZXORPJRSI0JYWL7' where id=5; -update noar tt set v0='5CBV7YFYESZ8092NS36' where id=5; -update noar ti set v0='5CBV7YFYESZ8092NS36' where id=5; -update noar tt set b1='KMQWEB8OND' where id=5; -update noar ti set b1='KMQWEB8OND' where id=5; -update noar tt set v0='DXFS86XHGCBOAWO28' where id=5; -update noar ti set v0='DXFS86XHGCBOAWO28' where id=5; -update noar tt set b2='3XIP7Z10' where id=5; -update noar ti set b2='3XIP7Z10' where id=5; -update noar tt set v0='F0' where id=6; -update noar ti set v0='F0' where id=6; -update noar tt set b0='6DUFB' where id=6; -update noar ti set b0='6DUFB' where id=6; -update noar tt set v0='83K3AJYJAIGQGJZQ9AEXLZ' where id=6; -update noar ti set v0='83K3AJYJAIGQGJZQ9AEXLZ' where id=6; -update noar tt set b1='ZZ' where id=6; -update noar ti set b1='ZZ' where id=6; -update noar tt set v0='UWHL5SFDGC3U8SY962W' where id=6; -update noar ti set v0='UWHL5SFDGC3U8SY962W' where id=6; -update noar tt set b2='LH46J49812YLMJOP6U4P8' where id=6; -update noar ti set b2='LH46J49812YLMJOP6U4P8' where id=6; -update noar tt set v0='ZPS8905B45PQ4XMJ9671' where id=7; -update noar ti set v0='ZPS8905B45PQ4XMJ9671' where id=7; -update noar tt set b0='F2BUSFY79M6FFF43N9C' where id=7; -update noar ti set b0='F2BUSFY79M6FFF43N9C' where id=7; -update noar tt set v0='KDG' where id=7; -update noar ti set v0='KDG' where id=7; -update noar tt set b1='2C950BVNFZH04Y' where id=7; -update noar ti set b1='2C950BVNFZH04Y' where id=7; -update noar tt set v0='EIV2G4FK' where id=7; -update noar ti set v0='EIV2G4FK' where id=7; -update noar tt set b2='O0TF19PKL7QACHFU9640C' where id=7; -update noar ti set b2='O0TF19PKL7QACHFU9640C' where id=7; -update noar tt set v0='E0SS7QM4J5JAL7KAQPRD0X6PLFF3TS6' where id=8; -update noar ti set v0='E0SS7QM4J5JAL7KAQPRD0X6PLFF3TS6' where id=8; -update noar tt set b0='E9K6EGGQNK0PI0B' where id=8; -update noar ti set b0='E9K6EGGQNK0PI0B' where id=8; -update noar tt set v0='IBZSN9Q7GNG7W1JMSGH4RBIAOVT76' where id=8; -update noar ti set v0='IBZSN9Q7GNG7W1JMSGH4RBIAOVT76' where id=8; -update noar tt set b1='Y1URGPYSED9WI0X7YZKAKK2' where id=8; -update noar ti set b1='Y1URGPYSED9WI0X7YZKAKK2' where id=8; -update noar tt set v0='L0RZESP8QO5YU4CT9DX5A3FTRBQMQ6IL' where id=8; -update noar ti set v0='L0RZESP8QO5YU4CT9DX5A3FTRBQMQ6IL' where id=8; -update noar tt set b2='W7YTTAHB8MZCMK57K7U9W1IWXTZV' where id=8; -update noar ti set b2='W7YTTAHB8MZCMK57K7U9W1IWXTZV' where id=8; -update noar tt set v0='NIDNR4DDEZJX8FX' where id=9; -update noar ti set v0='NIDNR4DDEZJX8FX' where id=9; -update noar tt set b0='K5M7UIX6X4AMVMYBA' where id=9; -update noar ti set b0='K5M7UIX6X4AMVMYBA' where id=9; -update noar tt set v0='JJ7KRBADHMYZZKG970SSYJVB4' where id=9; -update noar ti set v0='JJ7KRBADHMYZZKG970SSYJVB4' where id=9; -update noar tt set b1='WLCM4H0G8N6AEM38DXUE429FBY' where id=9; -update noar ti set b1='WLCM4H0G8N6AEM38DXUE429FBY' where id=9; -update noar tt set v0='PX0O3X2985S93SA5XT1Q86OAP4V' where id=9; -update noar ti set v0='PX0O3X2985S93SA5XT1Q86OAP4V' where id=9; -update noar tt set b2='JUIEMBZASHWHKHA' where id=9; -update noar ti set b2='JUIEMBZASHWHKHA' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -f0 int null, -v0 varchar(256) null, -b0 longblob null, -b1 tinyblob null, -b2 tinyblob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='X93JKKYLNZ1DJX0G662MC81P8' where id=1; -update noar ti set v0='X93JKKYLNZ1DJX0G662MC81P8' where id=1; -update noar tt set b0='70C8Q9' where id=1; -update noar ti set b0='70C8Q9' where id=1; -update noar tt set v0='2WEG3XPJI7H59VB9DOI3IERT' where id=1; -update noar ti set v0='2WEG3XPJI7H59VB9DOI3IERT' where id=1; -update noar tt set b1='ZK1R0YQN' where id=1; -update noar ti set b1='ZK1R0YQN' where id=1; -update noar tt set v0='138UKGR0RAEQ66C00RYE6HAK24YVCZA' where id=1; -update noar ti set v0='138UKGR0RAEQ66C00RYE6HAK24YVCZA' where id=1; -update noar tt set b2='1KDGDZAMW40942M384LW1NWC0OFPBYZR' where id=1; -update noar ti set b2='1KDGDZAMW40942M384LW1NWC0OFPBYZR' where id=1; -update noar tt set v0='0OZI' where id=2; -update noar ti set v0='0OZI' where id=2; -update noar tt set b0='U4SZ8HT04FMI9TDTNABW' where id=2; -update noar ti set b0='U4SZ8HT04FMI9TDTNABW' where id=2; -update noar tt set v0='7JPRGN4WG7QO2K92FI51PDOMOVK' where id=2; -update noar ti set v0='7JPRGN4WG7QO2K92FI51PDOMOVK' where id=2; -update noar tt set b1='VQO5EJHPNTSIHSQI6XCT2KHOIY0GM6XE' where id=2; -update noar ti set b1='VQO5EJHPNTSIHSQI6XCT2KHOIY0GM6XE' where id=2; -update noar tt set v0='5NE8DB' where id=2; -update noar ti set v0='5NE8DB' where id=2; -update noar tt set b2='9LCIF96V518YY9YJHOVTQZ6M' where id=2; -update noar ti set b2='9LCIF96V518YY9YJHOVTQZ6M' where id=2; -update noar tt set v0='T7XLD98FUQO4MR8N8S0DX4' where id=3; -update noar ti set v0='T7XLD98FUQO4MR8N8S0DX4' where id=3; -update noar tt set b0='KK1C12BDZZVDIDJ2G3' where id=3; -update noar ti set b0='KK1C12BDZZVDIDJ2G3' where id=3; -update noar tt set v0='WKT95IMCT2MEGNI5HU03V6RL8DZT' where id=3; -update noar ti set v0='WKT95IMCT2MEGNI5HU03V6RL8DZT' where id=3; -update noar tt set b1='BFE0VWLYNJVGC7UD10E1H0FYV3' where id=3; -update noar ti set b1='BFE0VWLYNJVGC7UD10E1H0FYV3' where id=3; -update noar tt set v0='H7F98OE9DKXDHDIGJ9M0RFANP65BBDGR' where id=3; -update noar ti set v0='H7F98OE9DKXDHDIGJ9M0RFANP65BBDGR' where id=3; -update noar tt set b2='O' where id=3; -update noar ti set b2='O' where id=3; -update noar tt set v0='1MTIRNG48V1T8XYURCNMV' where id=4; -update noar ti set v0='1MTIRNG48V1T8XYURCNMV' where id=4; -update noar tt set b0='IWS9L80PEDJLT11XCK00KIBM0J2DP' where id=4; -update noar ti set b0='IWS9L80PEDJLT11XCK00KIBM0J2DP' where id=4; -update noar tt set v0='C9P3BNL7' where id=4; -update noar ti set v0='C9P3BNL7' where id=4; -update noar tt set b1='6SSW4V' where id=4; -update noar ti set b1='6SSW4V' where id=4; -update noar tt set v0='XOHPQG1TR5B0LDG3EVSWUQPIBI' where id=4; -update noar ti set v0='XOHPQG1TR5B0LDG3EVSWUQPIBI' where id=4; -update noar tt set b2='W1HKDA0N02' where id=4; -update noar ti set b2='W1HKDA0N02' where id=4; -update noar tt set v0='9YE61SC45H4P2RVHD4QE4Z7F4X' where id=5; -update noar ti set v0='9YE61SC45H4P2RVHD4QE4Z7F4X' where id=5; -update noar tt set b0='LJGYR84YLV4YF1S8PUDRR38ZHBZB9O' where id=5; -update noar ti set b0='LJGYR84YLV4YF1S8PUDRR38ZHBZB9O' where id=5; -update noar tt set v0='AZF49VDJ22T4D5FWZ54FZ1H2MUW61US5' where id=5; -update noar ti set v0='AZF49VDJ22T4D5FWZ54FZ1H2MUW61US5' where id=5; -update noar tt set b1='25TCNQZGUOT1EO' where id=5; -update noar ti set b1='25TCNQZGUOT1EO' where id=5; -update noar tt set v0='K789U8YVKFK1ASMU6555XH2UTM2RSG8' where id=5; -update noar ti set v0='K789U8YVKFK1ASMU6555XH2UTM2RSG8' where id=5; -update noar tt set b2='56HBNVGEB5ELTVVBTVKCGHC' where id=5; -update noar ti set b2='56HBNVGEB5ELTVVBTVKCGHC' where id=5; -update noar tt set v0='QUMVG' where id=6; -update noar ti set v0='QUMVG' where id=6; -update noar tt set b0='PLWJR1I8HQ0S9H989S7ZV8VSA' where id=6; -update noar ti set b0='PLWJR1I8HQ0S9H989S7ZV8VSA' where id=6; -update noar tt set v0='E30JWNCI7' where id=6; -update noar ti set v0='E30JWNCI7' where id=6; -update noar tt set b1='V3R631N5HGSP' where id=6; -update noar ti set b1='V3R631N5HGSP' where id=6; -update noar tt set v0='G4UQTEBRLTS1YU6' where id=6; -update noar ti set v0='G4UQTEBRLTS1YU6' where id=6; -update noar tt set b2='Z1MVBHVOIN2V2BJBWOK3O6Z1I9' where id=6; -update noar ti set b2='Z1MVBHVOIN2V2BJBWOK3O6Z1I9' where id=6; -update noar tt set v0='WU7N3HDCILEXQ0G5DAGL1QN86W7Y' where id=7; -update noar ti set v0='WU7N3HDCILEXQ0G5DAGL1QN86W7Y' where id=7; -update noar tt set b0='1N1PCBWQF59IQR3I9KGBCV3B' where id=7; -update noar ti set b0='1N1PCBWQF59IQR3I9KGBCV3B' where id=7; -update noar tt set v0='Q' where id=7; -update noar ti set v0='Q' where id=7; -update noar tt set b1='181PN5GNN4HC8778WIM76JKLUS53HUS' where id=7; -update noar ti set b1='181PN5GNN4HC8778WIM76JKLUS53HUS' where id=7; -update noar tt set v0='T94NEFAUX4YM3AP29KOB8G' where id=7; -update noar ti set v0='T94NEFAUX4YM3AP29KOB8G' where id=7; -update noar tt set b2='4YG9NHJDFV7H76FEZSZ9E0BHCJT' where id=7; -update noar ti set b2='4YG9NHJDFV7H76FEZSZ9E0BHCJT' where id=7; -update noar tt set v0='MDQO' where id=8; -update noar ti set v0='MDQO' where id=8; -update noar tt set b0='PQHWPQ0P35JC34KVQ5N6VXYYM8J2' where id=8; -update noar ti set b0='PQHWPQ0P35JC34KVQ5N6VXYYM8J2' where id=8; -update noar tt set v0='LCKL0K9PBPGVCB8WU' where id=8; -update noar ti set v0='LCKL0K9PBPGVCB8WU' where id=8; -update noar tt set b1='0C47US0RL4' where id=8; -update noar ti set b1='0C47US0RL4' where id=8; -update noar tt set v0='M8UWSLBX7CD0LW4NW2RB' where id=8; -update noar ti set v0='M8UWSLBX7CD0LW4NW2RB' where id=8; -update noar tt set b2='5Z3H8QMP37GM' where id=8; -update noar ti set b2='5Z3H8QMP37GM' where id=8; -update noar tt set v0='GPWTR613HAU5Z2BRH51BRO' where id=9; -update noar ti set v0='GPWTR613HAU5Z2BRH51BRO' where id=9; -update noar tt set b0='LTGHC9O9IPBSBGT01P2F9' where id=9; -update noar ti set b0='LTGHC9O9IPBSBGT01P2F9' where id=9; -update noar tt set v0='YAWN' where id=9; -update noar ti set v0='YAWN' where id=9; -update noar tt set b1='B65HZ3NMYZYVMG9Z7XF' where id=9; -update noar ti set b1='B65HZ3NMYZYVMG9Z7XF' where id=9; -update noar tt set v0='G5VHN1U1PJJECTCRIQ3PNBV' where id=9; -update noar ti set v0='G5VHN1U1PJJECTCRIQ3PNBV' where id=9; -update noar tt set b2='0A134MBZTZVZRPV2R1Y085H' where id=9; -update noar ti set b2='0A134MBZTZVZRPV2R1Y085H' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -f0 int not null, -v0 varchar(32) not null, -b0 longblob not null, -b1 tinyblob not null, -b2 tinyblob not null -) engine=tokudb; -insert into tt values (1,0,'','','',''); -insert into tt values (2,0,'','','',''); -insert into tt values (3,0,'','','',''); -insert into tt values (4,0,'','','',''); -insert into tt values (5,0,'','','',''); -insert into tt values (6,0,'','','',''); -insert into tt values (7,0,'','','',''); -insert into tt values (8,0,'','','',''); -insert into tt values (9,0,'','','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='4JKHGYGKBS0G96RATZ38J' where id=1; -update noar ti set v0='4JKHGYGKBS0G96RATZ38J' where id=1; -update noar tt set b0='WX' where id=1; -update noar ti set b0='WX' where id=1; -update noar tt set v0='EVA9ZA0B073PP7WRNOSJVKHLO' where id=1; -update noar ti set v0='EVA9ZA0B073PP7WRNOSJVKHLO' where id=1; -update noar tt set b1='FV352N8SXI6Q9440H5M6' where id=1; -update noar ti set b1='FV352N8SXI6Q9440H5M6' where id=1; -update noar tt set v0='XQNZGSBUIWJUTR6ZNDV7XIBMFVVZQM5' where id=1; -update noar ti set v0='XQNZGSBUIWJUTR6ZNDV7XIBMFVVZQM5' where id=1; -update noar tt set b2='93NSXKNT76WP1AYJ' where id=1; -update noar ti set b2='93NSXKNT76WP1AYJ' where id=1; -update noar tt set v0='CGB2XFXIR' where id=2; -update noar ti set v0='CGB2XFXIR' where id=2; -update noar tt set b0='IHO327JYV794G0RQH7LA7URIBJWW' where id=2; -update noar ti set b0='IHO327JYV794G0RQH7LA7URIBJWW' where id=2; -update noar tt set v0='UMXMTB98EV60DRZ0JSB' where id=2; -update noar ti set v0='UMXMTB98EV60DRZ0JSB' where id=2; -update noar tt set b1='E9IFJ90331470' where id=2; -update noar ti set b1='E9IFJ90331470' where id=2; -update noar tt set v0='L7IWJAT086QZDQXPF6ECFVH5' where id=2; -update noar ti set v0='L7IWJAT086QZDQXPF6ECFVH5' where id=2; -update noar tt set b2='YQXL29Y5P5JA' where id=2; -update noar ti set b2='YQXL29Y5P5JA' where id=2; -update noar tt set v0='IF3' where id=3; -update noar ti set v0='IF3' where id=3; -update noar tt set b0='Z327MOBIH5UNGT9' where id=3; -update noar ti set b0='Z327MOBIH5UNGT9' where id=3; -update noar tt set v0='ZZEDB552VCCM7I6JM28' where id=3; -update noar ti set v0='ZZEDB552VCCM7I6JM28' where id=3; -update noar tt set b1='9' where id=3; -update noar ti set b1='9' where id=3; -update noar tt set v0='V4PT5595UDSE02CIC94GX4RZZO' where id=3; -update noar ti set v0='V4PT5595UDSE02CIC94GX4RZZO' where id=3; -update noar tt set b2='06NDBSIP6SZOTZ6LBEUP5415HVODSJF4' where id=3; -update noar ti set b2='06NDBSIP6SZOTZ6LBEUP5415HVODSJF4' where id=3; -update noar tt set v0='NPZ2GQHN' where id=4; -update noar ti set v0='NPZ2GQHN' where id=4; -update noar tt set b0='MYQKZXCZR26DP82VWJH0HO3N4GA' where id=4; -update noar ti set b0='MYQKZXCZR26DP82VWJH0HO3N4GA' where id=4; -update noar tt set v0='D5MGNN4Y' where id=4; -update noar ti set v0='D5MGNN4Y' where id=4; -update noar tt set b1='CJ3EQT8H5ZK92SYWQ3U27BS2CNV0I' where id=4; -update noar ti set b1='CJ3EQT8H5ZK92SYWQ3U27BS2CNV0I' where id=4; -update noar tt set v0='J016SR4A1DF2P8X8ZNDV' where id=4; -update noar ti set v0='J016SR4A1DF2P8X8ZNDV' where id=4; -update noar tt set b2='5IANI6G1NQKYF9I46T3' where id=4; -update noar ti set b2='5IANI6G1NQKYF9I46T3' where id=4; -update noar tt set v0='BCIWXNAWRS9M549UQTMSL7PIKXNZH' where id=5; -update noar ti set v0='BCIWXNAWRS9M549UQTMSL7PIKXNZH' where id=5; -update noar tt set b0='Z2ODG96SKB09KIFRJX' where id=5; -update noar ti set b0='Z2ODG96SKB09KIFRJX' where id=5; -update noar tt set v0='IS99EO6VJ66' where id=5; -update noar ti set v0='IS99EO6VJ66' where id=5; -update noar tt set b1='0JRF1RXMGBQMJY0QT6AUVIZ' where id=5; -update noar ti set b1='0JRF1RXMGBQMJY0QT6AUVIZ' where id=5; -update noar tt set v0='LM1FNI62ENHU7AZ865EGKT' where id=5; -update noar ti set v0='LM1FNI62ENHU7AZ865EGKT' where id=5; -update noar tt set b2='9ZT1' where id=5; -update noar ti set b2='9ZT1' where id=5; -update noar tt set v0='L7VFIOX704O6PM51UCBTGC5S8RIC' where id=6; -update noar ti set v0='L7VFIOX704O6PM51UCBTGC5S8RIC' where id=6; -update noar tt set b0='6G4OMQVW5X' where id=6; -update noar ti set b0='6G4OMQVW5X' where id=6; -update noar tt set v0='YZN34MDP466BG55X' where id=6; -update noar ti set v0='YZN34MDP466BG55X' where id=6; -update noar tt set b1='PM8K0Y155ONLXB2W2H9U53ZO' where id=6; -update noar ti set b1='PM8K0Y155ONLXB2W2H9U53ZO' where id=6; -update noar tt set v0='RQVJHLS739VTGG8590HXQ7KI40' where id=6; -update noar ti set v0='RQVJHLS739VTGG8590HXQ7KI40' where id=6; -update noar tt set b2='4' where id=6; -update noar ti set b2='4' where id=6; -update noar tt set v0='8O9' where id=7; -update noar ti set v0='8O9' where id=7; -update noar tt set b0='NFX58YYOUZQD66SJS37JC123LAV5R' where id=7; -update noar ti set b0='NFX58YYOUZQD66SJS37JC123LAV5R' where id=7; -update noar tt set v0='4TBUU' where id=7; -update noar ti set v0='4TBUU' where id=7; -update noar tt set b1='BLUDG' where id=7; -update noar ti set b1='BLUDG' where id=7; -update noar tt set v0='YA2UP7G1I2SS0IWBI1S8IN' where id=7; -update noar ti set v0='YA2UP7G1I2SS0IWBI1S8IN' where id=7; -update noar tt set b2='CJD3WB776' where id=7; -update noar ti set b2='CJD3WB776' where id=7; -update noar tt set v0='COUZVICO6LPT17D8ZSMMRYTXDMM7VFM' where id=8; -update noar ti set v0='COUZVICO6LPT17D8ZSMMRYTXDMM7VFM' where id=8; -update noar tt set b0='E' where id=8; -update noar ti set b0='E' where id=8; -update noar tt set v0='AT' where id=8; -update noar ti set v0='AT' where id=8; -update noar tt set b1='OW597CDINVP6O0' where id=8; -update noar ti set b1='OW597CDINVP6O0' where id=8; -update noar tt set v0='WRM7CFZOUWX4S00HTCOTT5OOAM' where id=8; -update noar ti set v0='WRM7CFZOUWX4S00HTCOTT5OOAM' where id=8; -update noar tt set b2='1WGQ8HBB4EDLR7J5BYQBZ' where id=8; -update noar ti set b2='1WGQ8HBB4EDLR7J5BYQBZ' where id=8; -update noar tt set v0='E7YO7' where id=9; -update noar ti set v0='E7YO7' where id=9; -update noar tt set b0='BAAQSW1W3QQYC' where id=9; -update noar ti set b0='BAAQSW1W3QQYC' where id=9; -update noar tt set v0='6IQDSGGOVZL2H3A5NMVNPECOQEHDNUR' where id=9; -update noar ti set v0='6IQDSGGOVZL2H3A5NMVNPECOQEHDNUR' where id=9; -update noar tt set b1='N3SIY0U25Q4IR4SYI74OJGS' where id=9; -update noar ti set b1='N3SIY0U25Q4IR4SYI74OJGS' where id=9; -update noar tt set v0='R2' where id=9; -update noar ti set v0='R2' where id=9; -update noar tt set b2='JBZC' where id=9; -update noar ti set b2='JBZC' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -f0 int not null, -v0 varchar(256) not null, -b0 longblob not null, -b1 tinyblob not null, -b2 tinyblob not null -) engine=tokudb; -insert into tt values (1,0,'','','',''); -insert into tt values (2,0,'','','',''); -insert into tt values (3,0,'','','',''); -insert into tt values (4,0,'','','',''); -insert into tt values (5,0,'','','',''); -insert into tt values (6,0,'','','',''); -insert into tt values (7,0,'','','',''); -insert into tt values (8,0,'','','',''); -insert into tt values (9,0,'','','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='6T57Z0MJ5HF28YRCCLEK4GC' where id=1; -update noar ti set v0='6T57Z0MJ5HF28YRCCLEK4GC' where id=1; -update noar tt set b0='2' where id=1; -update noar ti set b0='2' where id=1; -update noar tt set v0='SPZPC6T4ML6HA2W78HT' where id=1; -update noar ti set v0='SPZPC6T4ML6HA2W78HT' where id=1; -update noar tt set b1='8E5E0EH77USBWL' where id=1; -update noar ti set b1='8E5E0EH77USBWL' where id=1; -update noar tt set v0='JQEBFMBDE0YWEF83LRI97DS730TBH' where id=1; -update noar ti set v0='JQEBFMBDE0YWEF83LRI97DS730TBH' where id=1; -update noar tt set b2='WC' where id=1; -update noar ti set b2='WC' where id=1; -update noar tt set v0='VHYWOX66ZSZ2DCEFMTBNZSTON5EN0' where id=2; -update noar ti set v0='VHYWOX66ZSZ2DCEFMTBNZSTON5EN0' where id=2; -update noar tt set b0='R414V99Y3EWO1DF0Q6VBHCN0U8TBFH0' where id=2; -update noar ti set b0='R414V99Y3EWO1DF0Q6VBHCN0U8TBFH0' where id=2; -update noar tt set v0='UVNZL21Y67JQTEM6M' where id=2; -update noar ti set v0='UVNZL21Y67JQTEM6M' where id=2; -update noar tt set b1='8CP' where id=2; -update noar ti set b1='8CP' where id=2; -update noar tt set v0='OV1LLSZMEN2' where id=2; -update noar ti set v0='OV1LLSZMEN2' where id=2; -update noar tt set b2='Y' where id=2; -update noar ti set b2='Y' where id=2; -update noar tt set v0='MAD' where id=3; -update noar ti set v0='MAD' where id=3; -update noar tt set b0='4' where id=3; -update noar ti set b0='4' where id=3; -update noar tt set v0='NIG6QCNDBD' where id=3; -update noar ti set v0='NIG6QCNDBD' where id=3; -update noar tt set b1='NUS2MMOL' where id=3; -update noar ti set b1='NUS2MMOL' where id=3; -update noar tt set v0='FWI9485DIK9M7ULG' where id=3; -update noar ti set v0='FWI9485DIK9M7ULG' where id=3; -update noar tt set b2='PDNTVL3PG4QLZ0176TMLDS3M' where id=3; -update noar ti set b2='PDNTVL3PG4QLZ0176TMLDS3M' where id=3; -update noar tt set v0='GK3X5I89EI9IUHQB2L696TWY82UR0ZM' where id=4; -update noar ti set v0='GK3X5I89EI9IUHQB2L696TWY82UR0ZM' where id=4; -update noar tt set b0='94UEBT9MDZ34ILEQ9VDL4BI4YURIKY' where id=4; -update noar ti set b0='94UEBT9MDZ34ILEQ9VDL4BI4YURIKY' where id=4; -update noar tt set v0='9833Y62899920HA' where id=4; -update noar ti set v0='9833Y62899920HA' where id=4; -update noar tt set b1='7EUY4R3NGGIFVI2X4W1OIV4Y' where id=4; -update noar ti set b1='7EUY4R3NGGIFVI2X4W1OIV4Y' where id=4; -update noar tt set v0='BTH8YX7AOUOO0PQE4T1KNNWMKKSR' where id=4; -update noar ti set v0='BTH8YX7AOUOO0PQE4T1KNNWMKKSR' where id=4; -update noar tt set b2='7GQPWLKBNIRFAE1V9VXBIG39X0H24' where id=4; -update noar ti set b2='7GQPWLKBNIRFAE1V9VXBIG39X0H24' where id=4; -update noar tt set v0='F' where id=5; -update noar ti set v0='F' where id=5; -update noar tt set b0='B2' where id=5; -update noar ti set b0='B2' where id=5; -update noar tt set v0='H4KNIR7K2IDD1' where id=5; -update noar ti set v0='H4KNIR7K2IDD1' where id=5; -update noar tt set b1='QYMXMYPGIYX0I1P' where id=5; -update noar ti set b1='QYMXMYPGIYX0I1P' where id=5; -update noar tt set v0='8WF20H' where id=5; -update noar ti set v0='8WF20H' where id=5; -update noar tt set b2='OEN5' where id=5; -update noar ti set b2='OEN5' where id=5; -update noar tt set v0='1U9FCA33VEPAVFZ8' where id=6; -update noar ti set v0='1U9FCA33VEPAVFZ8' where id=6; -update noar tt set b0='PATN3LEKBVQGRY8RNN0GWQDR' where id=6; -update noar ti set b0='PATN3LEKBVQGRY8RNN0GWQDR' where id=6; -update noar tt set v0='MZOWMIURY0OG2CH' where id=6; -update noar ti set v0='MZOWMIURY0OG2CH' where id=6; -update noar tt set b1='NZ31WVLY8CHY8PSDY1' where id=6; -update noar ti set b1='NZ31WVLY8CHY8PSDY1' where id=6; -update noar tt set v0='WQ4YN3PQZSD3TKI5SPMASVY3D3TNP' where id=6; -update noar ti set v0='WQ4YN3PQZSD3TKI5SPMASVY3D3TNP' where id=6; -update noar tt set b2='4CIZ04MZA54QKHZ2' where id=6; -update noar ti set b2='4CIZ04MZA54QKHZ2' where id=6; -update noar tt set v0='TPTLQ1WBIY7G0U9TE190DRYH' where id=7; -update noar ti set v0='TPTLQ1WBIY7G0U9TE190DRYH' where id=7; -update noar tt set b0='RGALWIA38AQRPN' where id=7; -update noar ti set b0='RGALWIA38AQRPN' where id=7; -update noar tt set v0='1ADCW' where id=7; -update noar ti set v0='1ADCW' where id=7; -update noar tt set b1='6' where id=7; -update noar ti set b1='6' where id=7; -update noar tt set v0='XA4U5H3T76306ELD0IOICWK3NO5I5' where id=7; -update noar ti set v0='XA4U5H3T76306ELD0IOICWK3NO5I5' where id=7; -update noar tt set b2='1R735KSH2SM7IU0L4RHTHD9VDCT379FW' where id=7; -update noar ti set b2='1R735KSH2SM7IU0L4RHTHD9VDCT379FW' where id=7; -update noar tt set v0='HQZZ' where id=8; -update noar ti set v0='HQZZ' where id=8; -update noar tt set b0='ZMKGY' where id=8; -update noar ti set b0='ZMKGY' where id=8; -update noar tt set v0='VIS8RFT' where id=8; -update noar ti set v0='VIS8RFT' where id=8; -update noar tt set b1='40FPV46TH38OV846TI0VCBYBNHU' where id=8; -update noar ti set b1='40FPV46TH38OV846TI0VCBYBNHU' where id=8; -update noar tt set v0='B76' where id=8; -update noar ti set v0='B76' where id=8; -update noar tt set b2='B6U9UD8BVWK0PK4PQ9O' where id=8; -update noar ti set b2='B6U9UD8BVWK0PK4PQ9O' where id=8; -update noar tt set v0='23R1YXZGW0FNHLGXDV2YY' where id=9; -update noar ti set v0='23R1YXZGW0FNHLGXDV2YY' where id=9; -update noar tt set b0='CWY1IVH3WPNFILPSU9Z3770WH1' where id=9; -update noar ti set b0='CWY1IVH3WPNFILPSU9Z3770WH1' where id=9; -update noar tt set v0='9VE0PIRV3B' where id=9; -update noar ti set v0='9VE0PIRV3B' where id=9; -update noar tt set b1='KW1TVEE' where id=9; -update noar ti set b1='KW1TVEE' where id=9; -update noar tt set v0='9AY7ZHE2D6U15FBFET9' where id=9; -update noar ti set v0='9AY7ZHE2D6U15FBFET9' where id=9; -update noar tt set b2='AWHDVCOLTLGJ' where id=9; -update noar ti set b2='AWHDVCOLTLGJ' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -f0 int null, -v0 varchar(32) null, -b0 longblob null, -b1 tinyblob null, -b2 blob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='05CWV2GHJXH51UP' where id=1; -update noar ti set v0='05CWV2GHJXH51UP' where id=1; -update noar tt set b0='EHCD' where id=1; -update noar ti set b0='EHCD' where id=1; -update noar tt set v0='W5AN0F0E9SJWKA2F6DTJ6JGS' where id=1; -update noar ti set v0='W5AN0F0E9SJWKA2F6DTJ6JGS' where id=1; -update noar tt set b1='ST7ZYLSTR102S71TCSY3XPQRCG6F8OJR' where id=1; -update noar ti set b1='ST7ZYLSTR102S71TCSY3XPQRCG6F8OJR' where id=1; -update noar tt set v0='A0ZJ' where id=1; -update noar ti set v0='A0ZJ' where id=1; -update noar tt set b2='NJU7BOAI8VM0W0CQM29C' where id=1; -update noar ti set b2='NJU7BOAI8VM0W0CQM29C' where id=1; -update noar tt set v0='0EBR5' where id=2; -update noar ti set v0='0EBR5' where id=2; -update noar tt set b0='5Z5N9WWMKF0ICX9T6PN6ZYAM30IZ' where id=2; -update noar ti set b0='5Z5N9WWMKF0ICX9T6PN6ZYAM30IZ' where id=2; -update noar tt set v0='6TC9G3DYUGS4RG4' where id=2; -update noar ti set v0='6TC9G3DYUGS4RG4' where id=2; -update noar tt set b1='VW3RDWEK1R7' where id=2; -update noar ti set b1='VW3RDWEK1R7' where id=2; -update noar tt set v0='HQYDID8' where id=2; -update noar ti set v0='HQYDID8' where id=2; -update noar tt set b2='MRTVEJ2HQQ' where id=2; -update noar ti set b2='MRTVEJ2HQQ' where id=2; -update noar tt set v0='ALKMVDQ0QYU2BZT' where id=3; -update noar ti set v0='ALKMVDQ0QYU2BZT' where id=3; -update noar tt set b0='E0T9VH0ADK8PX0KIHRZ8CVQRETH' where id=3; -update noar ti set b0='E0T9VH0ADK8PX0KIHRZ8CVQRETH' where id=3; -update noar tt set v0='AU9R17' where id=3; -update noar ti set v0='AU9R17' where id=3; -update noar tt set b1='114VNC2' where id=3; -update noar ti set b1='114VNC2' where id=3; -update noar tt set v0='NZZ' where id=3; -update noar ti set v0='NZZ' where id=3; -update noar tt set b2='OLCES341WKYAB02S5J20TKNOOJ7X9DQY' where id=3; -update noar ti set b2='OLCES341WKYAB02S5J20TKNOOJ7X9DQY' where id=3; -update noar tt set v0='2F8EJZ2UKXEZ' where id=4; -update noar ti set v0='2F8EJZ2UKXEZ' where id=4; -update noar tt set b0='SH09QABX99K63AGBWG1T90FIJQS1Z' where id=4; -update noar ti set b0='SH09QABX99K63AGBWG1T90FIJQS1Z' where id=4; -update noar tt set v0='5H4CMXP60IQJYI3N' where id=4; -update noar ti set v0='5H4CMXP60IQJYI3N' where id=4; -update noar tt set b1='GTE9V8WRNN651CECWGGY2' where id=4; -update noar ti set b1='GTE9V8WRNN651CECWGGY2' where id=4; -update noar tt set v0='75I3ZOKJSQ7E36A9ZLVJ' where id=4; -update noar ti set v0='75I3ZOKJSQ7E36A9ZLVJ' where id=4; -update noar tt set b2='WR7AB' where id=4; -update noar ti set b2='WR7AB' where id=4; -update noar tt set v0='UKS' where id=5; -update noar ti set v0='UKS' where id=5; -update noar tt set b0='F4HYLEFNDMFB41Z6GEP9JK3IF6Q0' where id=5; -update noar ti set b0='F4HYLEFNDMFB41Z6GEP9JK3IF6Q0' where id=5; -update noar tt set v0='SGFCDL7L85' where id=5; -update noar ti set v0='SGFCDL7L85' where id=5; -update noar tt set b1='9IOUZQSVQD846O52N' where id=5; -update noar ti set b1='9IOUZQSVQD846O52N' where id=5; -update noar tt set v0='WZVC9X' where id=5; -update noar ti set v0='WZVC9X' where id=5; -update noar tt set b2='GKMIS4V5KL' where id=5; -update noar ti set b2='GKMIS4V5KL' where id=5; -update noar tt set v0='YZLU5P6JW37HK84HS5PREIW67IN7' where id=6; -update noar ti set v0='YZLU5P6JW37HK84HS5PREIW67IN7' where id=6; -update noar tt set b0='ONPM8OR' where id=6; -update noar ti set b0='ONPM8OR' where id=6; -update noar tt set v0='6VNFHCUH0' where id=6; -update noar ti set v0='6VNFHCUH0' where id=6; -update noar tt set b1='IKZHW5S1DZP8JY6GK4U' where id=6; -update noar ti set b1='IKZHW5S1DZP8JY6GK4U' where id=6; -update noar tt set v0='378AB7WXHPW' where id=6; -update noar ti set v0='378AB7WXHPW' where id=6; -update noar tt set b2='A8HGRZRSQ4JITVGR3E4ZK1ES1' where id=6; -update noar ti set b2='A8HGRZRSQ4JITVGR3E4ZK1ES1' where id=6; -update noar tt set v0='FTAY6H5KIALKS6L' where id=7; -update noar ti set v0='FTAY6H5KIALKS6L' where id=7; -update noar tt set b0='GE4XOCVTI4ZAU35E67U1' where id=7; -update noar ti set b0='GE4XOCVTI4ZAU35E67U1' where id=7; -update noar tt set v0='KBVF76IFMI4IAGDC' where id=7; -update noar ti set v0='KBVF76IFMI4IAGDC' where id=7; -update noar tt set b1='9K7ZN87VSEC5PBR98125430EV' where id=7; -update noar ti set b1='9K7ZN87VSEC5PBR98125430EV' where id=7; -update noar tt set v0='SV7GRLJP0PWX4U3P40HF9HMETT0' where id=7; -update noar ti set v0='SV7GRLJP0PWX4U3P40HF9HMETT0' where id=7; -update noar tt set b2='R2FY6MUAYN43X9ITTPDFCPKG' where id=7; -update noar ti set b2='R2FY6MUAYN43X9ITTPDFCPKG' where id=7; -update noar tt set v0='G1ET1KC' where id=8; -update noar ti set v0='G1ET1KC' where id=8; -update noar tt set b0='47OHVP05PZ' where id=8; -update noar ti set b0='47OHVP05PZ' where id=8; -update noar tt set v0='WORGCZSQ3DV92ZWFWZ' where id=8; -update noar ti set v0='WORGCZSQ3DV92ZWFWZ' where id=8; -update noar tt set b1='KQ6MX9JODAO' where id=8; -update noar ti set b1='KQ6MX9JODAO' where id=8; -update noar tt set v0='OZMM8R5WVIQ8X4GAQ5V6XJ' where id=8; -update noar ti set v0='OZMM8R5WVIQ8X4GAQ5V6XJ' where id=8; -update noar tt set b2='ELI7FK0AT22XBYAARYD3EUZ3' where id=8; -update noar ti set b2='ELI7FK0AT22XBYAARYD3EUZ3' where id=8; -update noar tt set v0='S6XLX4IP' where id=9; -update noar ti set v0='S6XLX4IP' where id=9; -update noar tt set b0='56MM1D70V8C4Y0F2' where id=9; -update noar ti set b0='56MM1D70V8C4Y0F2' where id=9; -update noar tt set v0='EN59XNPMTT9JA' where id=9; -update noar ti set v0='EN59XNPMTT9JA' where id=9; -update noar tt set b1='HEIOWG4Y50N4PD8ZBDMIG8' where id=9; -update noar ti set b1='HEIOWG4Y50N4PD8ZBDMIG8' where id=9; -update noar tt set v0='59L6BZEI9IQ' where id=9; -update noar ti set v0='59L6BZEI9IQ' where id=9; -update noar tt set b2='Z43TH0999N3WJVZ8HCB2' where id=9; -update noar ti set b2='Z43TH0999N3WJVZ8HCB2' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -f0 int null, -v0 varchar(256) null, -b0 longblob null, -b1 tinyblob null, -b2 blob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='KKSH' where id=1; -update noar ti set v0='KKSH' where id=1; -update noar tt set b0='20RENUKZACFQK2TZMGW5' where id=1; -update noar ti set b0='20RENUKZACFQK2TZMGW5' where id=1; -update noar tt set v0='G3NOK' where id=1; -update noar ti set v0='G3NOK' where id=1; -update noar tt set b1='MNT' where id=1; -update noar ti set b1='MNT' where id=1; -update noar tt set v0='MBR08KP' where id=1; -update noar ti set v0='MBR08KP' where id=1; -update noar tt set b2='V85YQ293ZGI2Z' where id=1; -update noar ti set b2='V85YQ293ZGI2Z' where id=1; -update noar tt set v0='U8U' where id=2; -update noar ti set v0='U8U' where id=2; -update noar tt set b0='MDMCX7G1V0FY3TTOLIWCPN8BRQMD' where id=2; -update noar ti set b0='MDMCX7G1V0FY3TTOLIWCPN8BRQMD' where id=2; -update noar tt set v0='PIW9S70EWBH' where id=2; -update noar ti set v0='PIW9S70EWBH' where id=2; -update noar tt set b1='3CJ9SAKJ4I7NDAEIGG3IAMLP0Z3M' where id=2; -update noar ti set b1='3CJ9SAKJ4I7NDAEIGG3IAMLP0Z3M' where id=2; -update noar tt set v0='N' where id=2; -update noar ti set v0='N' where id=2; -update noar tt set b2='AWGZRY1DZAKN797A9MZ' where id=2; -update noar ti set b2='AWGZRY1DZAKN797A9MZ' where id=2; -update noar tt set v0='S0HH' where id=3; -update noar ti set v0='S0HH' where id=3; -update noar tt set b0='8JVAE5N1PL' where id=3; -update noar ti set b0='8JVAE5N1PL' where id=3; -update noar tt set v0='QFBMMTYCMH' where id=3; -update noar ti set v0='QFBMMTYCMH' where id=3; -update noar tt set b1='K5BAGGN' where id=3; -update noar ti set b1='K5BAGGN' where id=3; -update noar tt set v0='WFNL6JXSRV' where id=3; -update noar ti set v0='WFNL6JXSRV' where id=3; -update noar tt set b2='W66T66ZYPTRA' where id=3; -update noar ti set b2='W66T66ZYPTRA' where id=3; -update noar tt set v0='N' where id=4; -update noar ti set v0='N' where id=4; -update noar tt set b0='YLL3JUP' where id=4; -update noar ti set b0='YLL3JUP' where id=4; -update noar tt set v0='CULAOUYY74VFCMWWNR3RP4F9NSOJBE3' where id=4; -update noar ti set v0='CULAOUYY74VFCMWWNR3RP4F9NSOJBE3' where id=4; -update noar tt set b1='JW4RPJY4K8GCZIZJ' where id=4; -update noar ti set b1='JW4RPJY4K8GCZIZJ' where id=4; -update noar tt set v0='GQUTME1NL8ZPNN95HAA808XA' where id=4; -update noar ti set v0='GQUTME1NL8ZPNN95HAA808XA' where id=4; -update noar tt set b2='BSDJ2' where id=4; -update noar ti set b2='BSDJ2' where id=4; -update noar tt set v0='EYOY6Y04IDVFMTNWVL2BYV0' where id=5; -update noar ti set v0='EYOY6Y04IDVFMTNWVL2BYV0' where id=5; -update noar tt set b0='VMD3Z948Q7HOU9QKNMHSO' where id=5; -update noar ti set b0='VMD3Z948Q7HOU9QKNMHSO' where id=5; -update noar tt set v0='LL1VFJPVE1E18D7P' where id=5; -update noar ti set v0='LL1VFJPVE1E18D7P' where id=5; -update noar tt set b1='KPOCZE' where id=5; -update noar ti set b1='KPOCZE' where id=5; -update noar tt set v0='KW057LMWSU7A6JKPEWBO7N6U' where id=5; -update noar ti set v0='KW057LMWSU7A6JKPEWBO7N6U' where id=5; -update noar tt set b2='09FCD3NXHS23TQYKIZ7SINSGT5EQ63' where id=5; -update noar ti set b2='09FCD3NXHS23TQYKIZ7SINSGT5EQ63' where id=5; -update noar tt set v0='LASCQOV7EIV19W8P7J' where id=6; -update noar ti set v0='LASCQOV7EIV19W8P7J' where id=6; -update noar tt set b0='CXRIEOFUSG7O' where id=6; -update noar ti set b0='CXRIEOFUSG7O' where id=6; -update noar tt set v0='B6L2CYW29VR6NZFK4U2JB01O' where id=6; -update noar ti set v0='B6L2CYW29VR6NZFK4U2JB01O' where id=6; -update noar tt set b1='P6QTM59F326L8FPY902I' where id=6; -update noar ti set b1='P6QTM59F326L8FPY902I' where id=6; -update noar tt set v0='24KB7QYB5X8ZDAP1RY1' where id=6; -update noar ti set v0='24KB7QYB5X8ZDAP1RY1' where id=6; -update noar tt set b2='S94QJUQSF8FUDXP31QX0VW' where id=6; -update noar ti set b2='S94QJUQSF8FUDXP31QX0VW' where id=6; -update noar tt set v0='1697HSPIOZSBQJRKG5AWP4K7TF1A6N' where id=7; -update noar ti set v0='1697HSPIOZSBQJRKG5AWP4K7TF1A6N' where id=7; -update noar tt set b0='N4Y6LL9Z11WFX5D4DOCJ' where id=7; -update noar ti set b0='N4Y6LL9Z11WFX5D4DOCJ' where id=7; -update noar tt set v0='N7JM' where id=7; -update noar ti set v0='N7JM' where id=7; -update noar tt set b1='OK4NDKW3724' where id=7; -update noar ti set b1='OK4NDKW3724' where id=7; -update noar tt set v0='RJZS4GL5DLN' where id=7; -update noar ti set v0='RJZS4GL5DLN' where id=7; -update noar tt set b2='ORQD68OU0R' where id=7; -update noar ti set b2='ORQD68OU0R' where id=7; -update noar tt set v0='R75BKW4AL0U2QD66JFDZCO76' where id=8; -update noar ti set v0='R75BKW4AL0U2QD66JFDZCO76' where id=8; -update noar tt set b0='38L' where id=8; -update noar ti set b0='38L' where id=8; -update noar tt set v0='EGNFNW' where id=8; -update noar ti set v0='EGNFNW' where id=8; -update noar tt set b1='49' where id=8; -update noar ti set b1='49' where id=8; -update noar tt set v0='8BFY74JEQSYWCU477CL497ZTN7NJ' where id=8; -update noar ti set v0='8BFY74JEQSYWCU477CL497ZTN7NJ' where id=8; -update noar tt set b2='I3QS' where id=8; -update noar ti set b2='I3QS' where id=8; -update noar tt set v0='ZC6ZHZ4EFIQ7NV5' where id=9; -update noar ti set v0='ZC6ZHZ4EFIQ7NV5' where id=9; -update noar tt set b0='6JAV9F0C' where id=9; -update noar ti set b0='6JAV9F0C' where id=9; -update noar tt set v0='XE7FH2N66T2X2UMSEAL9I7ZTFV' where id=9; -update noar ti set v0='XE7FH2N66T2X2UMSEAL9I7ZTFV' where id=9; -update noar tt set b1='JS6K' where id=9; -update noar ti set b1='JS6K' where id=9; -update noar tt set v0='E8YVB509UQULR' where id=9; -update noar ti set v0='E8YVB509UQULR' where id=9; -update noar tt set b2='HO4NQEWU52AX27Y92GYM6DHTW00' where id=9; -update noar ti set b2='HO4NQEWU52AX27Y92GYM6DHTW00' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -f0 int not null, -v0 varchar(32) not null, -b0 longblob not null, -b1 tinyblob not null, -b2 blob not null -) engine=tokudb; -insert into tt values (1,0,'','','',''); -insert into tt values (2,0,'','','',''); -insert into tt values (3,0,'','','',''); -insert into tt values (4,0,'','','',''); -insert into tt values (5,0,'','','',''); -insert into tt values (6,0,'','','',''); -insert into tt values (7,0,'','','',''); -insert into tt values (8,0,'','','',''); -insert into tt values (9,0,'','','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='730S4BY2LFQ1ROQ6RZ' where id=1; -update noar ti set v0='730S4BY2LFQ1ROQ6RZ' where id=1; -update noar tt set b0='15284GTV59H2JZG847J3HHA9EBK' where id=1; -update noar ti set b0='15284GTV59H2JZG847J3HHA9EBK' where id=1; -update noar tt set v0='I9VJGQYZJBWCLC' where id=1; -update noar ti set v0='I9VJGQYZJBWCLC' where id=1; -update noar tt set b1='95CR1CHKS' where id=1; -update noar ti set b1='95CR1CHKS' where id=1; -update noar tt set v0='JRNCJUP3KMGW94RVQ3UBHSEGDOGV' where id=1; -update noar ti set v0='JRNCJUP3KMGW94RVQ3UBHSEGDOGV' where id=1; -update noar tt set b2='VKQCVL71BUU1' where id=1; -update noar ti set b2='VKQCVL71BUU1' where id=1; -update noar tt set v0='0ZRBDO' where id=2; -update noar ti set v0='0ZRBDO' where id=2; -update noar tt set b0='HAO9Z1KDQEPV4RP2RQUTQ' where id=2; -update noar ti set b0='HAO9Z1KDQEPV4RP2RQUTQ' where id=2; -update noar tt set v0='05JYULBJ49Q38BOVGP2TZ58A' where id=2; -update noar ti set v0='05JYULBJ49Q38BOVGP2TZ58A' where id=2; -update noar tt set b1='R0OQXQOQR' where id=2; -update noar ti set b1='R0OQXQOQR' where id=2; -update noar tt set v0='C3WP5AQV59YJ8GVSJYF' where id=2; -update noar ti set v0='C3WP5AQV59YJ8GVSJYF' where id=2; -update noar tt set b2='FO519T33SP' where id=2; -update noar ti set b2='FO519T33SP' where id=2; -update noar tt set v0='W5U7XIIF9HTF2PXPOTGHMT' where id=3; -update noar ti set v0='W5U7XIIF9HTF2PXPOTGHMT' where id=3; -update noar tt set b0='5LBTK3UEGFWJRGXGVPLT' where id=3; -update noar ti set b0='5LBTK3UEGFWJRGXGVPLT' where id=3; -update noar tt set v0='VXJ3QQ1QSB1698ITA5P4ORECHHIP3DZ' where id=3; -update noar ti set v0='VXJ3QQ1QSB1698ITA5P4ORECHHIP3DZ' where id=3; -update noar tt set b1='UOGVNYUYLM9ALF28MMXCWR2AG26O8VA0' where id=3; -update noar ti set b1='UOGVNYUYLM9ALF28MMXCWR2AG26O8VA0' where id=3; -update noar tt set v0='3DK2H85BRW8LM' where id=3; -update noar ti set v0='3DK2H85BRW8LM' where id=3; -update noar tt set b2='J3E8D6F5V9CURDJR2EW5DYH82RMZNS' where id=3; -update noar ti set b2='J3E8D6F5V9CURDJR2EW5DYH82RMZNS' where id=3; -update noar tt set v0='C2' where id=4; -update noar ti set v0='C2' where id=4; -update noar tt set b0='AAVC7N7RT0G9WHDYV' where id=4; -update noar ti set b0='AAVC7N7RT0G9WHDYV' where id=4; -update noar tt set v0='DOS4Z0EV0QDJ90XY95B11KZ3F0EZ' where id=4; -update noar ti set v0='DOS4Z0EV0QDJ90XY95B11KZ3F0EZ' where id=4; -update noar tt set b1='EWVU6RRB6BC0HU8OQSR67VXHNAL1T2C' where id=4; -update noar ti set b1='EWVU6RRB6BC0HU8OQSR67VXHNAL1T2C' where id=4; -update noar tt set v0='TQICCY1AZX4FOA72NG8L0402A4REK' where id=4; -update noar ti set v0='TQICCY1AZX4FOA72NG8L0402A4REK' where id=4; -update noar tt set b2='YEZNQFTW6BGO1ELWFZY0Z' where id=4; -update noar ti set b2='YEZNQFTW6BGO1ELWFZY0Z' where id=4; -update noar tt set v0='P5L4FKEV5L3S98URRX00UH38XA1P0' where id=5; -update noar ti set v0='P5L4FKEV5L3S98URRX00UH38XA1P0' where id=5; -update noar tt set b0='82W' where id=5; -update noar ti set b0='82W' where id=5; -update noar tt set v0='DSNSQC' where id=5; -update noar ti set v0='DSNSQC' where id=5; -update noar tt set b1='R7EOMNRT6C' where id=5; -update noar ti set b1='R7EOMNRT6C' where id=5; -update noar tt set v0='U6FQ0SA0TAJXE1W' where id=5; -update noar ti set v0='U6FQ0SA0TAJXE1W' where id=5; -update noar tt set b2='DGI6MBQ6OI1JOWJKJ7HW5RNBUWG4N' where id=5; -update noar ti set b2='DGI6MBQ6OI1JOWJKJ7HW5RNBUWG4N' where id=5; -update noar tt set v0='7N2I7E0G8OMF0D9YN22PZ714P1UM3' where id=6; -update noar ti set v0='7N2I7E0G8OMF0D9YN22PZ714P1UM3' where id=6; -update noar tt set b0='6Q8E019EXCBF0FY1E' where id=6; -update noar ti set b0='6Q8E019EXCBF0FY1E' where id=6; -update noar tt set v0='5' where id=6; -update noar ti set v0='5' where id=6; -update noar tt set b1='7R9Z76C2IUAJEZD0LI0Y3T4Q71BSKM' where id=6; -update noar ti set b1='7R9Z76C2IUAJEZD0LI0Y3T4Q71BSKM' where id=6; -update noar tt set v0='8FNO6PICJVNM8F4P' where id=6; -update noar ti set v0='8FNO6PICJVNM8F4P' where id=6; -update noar tt set b2='KGA3FLL' where id=6; -update noar ti set b2='KGA3FLL' where id=6; -update noar tt set v0='FOFOU5SSBEY74' where id=7; -update noar ti set v0='FOFOU5SSBEY74' where id=7; -update noar tt set b0='N5MI1T5J2P' where id=7; -update noar ti set b0='N5MI1T5J2P' where id=7; -update noar tt set v0='6G6B3T6B4607B6HCW' where id=7; -update noar ti set v0='6G6B3T6B4607B6HCW' where id=7; -update noar tt set b1='S4LOH43M5F6' where id=7; -update noar ti set b1='S4LOH43M5F6' where id=7; -update noar tt set v0='DHA034' where id=7; -update noar ti set v0='DHA034' where id=7; -update noar tt set b2='M7T44RG3L34D4T4FQDZ2MK0TH' where id=7; -update noar ti set b2='M7T44RG3L34D4T4FQDZ2MK0TH' where id=7; -update noar tt set v0='P2FZDIK7APOX3DK4Z' where id=8; -update noar ti set v0='P2FZDIK7APOX3DK4Z' where id=8; -update noar tt set b0='EGYD8ZXFKSC4T1XYLL706Z64ORT2WRS' where id=8; -update noar ti set b0='EGYD8ZXFKSC4T1XYLL706Z64ORT2WRS' where id=8; -update noar tt set v0='935X' where id=8; -update noar ti set v0='935X' where id=8; -update noar tt set b1='VLI4SLWTQX78L1AHA1W2UAD9SQ4A8' where id=8; -update noar ti set b1='VLI4SLWTQX78L1AHA1W2UAD9SQ4A8' where id=8; -update noar tt set v0='LVEE855CMT0VPDG9YWPFI629QPO8' where id=8; -update noar ti set v0='LVEE855CMT0VPDG9YWPFI629QPO8' where id=8; -update noar tt set b2='6NIGT1D0MP' where id=8; -update noar ti set b2='6NIGT1D0MP' where id=8; -update noar tt set v0='131K6JLGSPA17809FK7U4ZX' where id=9; -update noar ti set v0='131K6JLGSPA17809FK7U4ZX' where id=9; -update noar tt set b0='OZ6WVU765FF0GBBGLL0EP3SFFDJ3FI94' where id=9; -update noar ti set b0='OZ6WVU765FF0GBBGLL0EP3SFFDJ3FI94' where id=9; -update noar tt set v0='ZRZCEYVHE8SVX5PEM0U3FYRW7R3N3SE' where id=9; -update noar ti set v0='ZRZCEYVHE8SVX5PEM0U3FYRW7R3N3SE' where id=9; -update noar tt set b1='GRV8FZELWL4FOLG' where id=9; -update noar ti set b1='GRV8FZELWL4FOLG' where id=9; -update noar tt set v0='116I2QN' where id=9; -update noar ti set v0='116I2QN' where id=9; -update noar tt set b2='1R6P1BWARP405YJY1058C8HDKL' where id=9; -update noar ti set b2='1R6P1BWARP405YJY1058C8HDKL' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -f0 int not null, -v0 varchar(256) not null, -b0 longblob not null, -b1 tinyblob not null, -b2 blob not null -) engine=tokudb; -insert into tt values (1,0,'','','',''); -insert into tt values (2,0,'','','',''); -insert into tt values (3,0,'','','',''); -insert into tt values (4,0,'','','',''); -insert into tt values (5,0,'','','',''); -insert into tt values (6,0,'','','',''); -insert into tt values (7,0,'','','',''); -insert into tt values (8,0,'','','',''); -insert into tt values (9,0,'','','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='6V0PFHSZ1I4U0GJYMJWWL79BLQD7' where id=1; -update noar ti set v0='6V0PFHSZ1I4U0GJYMJWWL79BLQD7' where id=1; -update noar tt set b0='GFRW4X7XUDD2U2T2PQMO3MYYN0I9F45' where id=1; -update noar ti set b0='GFRW4X7XUDD2U2T2PQMO3MYYN0I9F45' where id=1; -update noar tt set v0='5YMEEJRA0942V1UQPF' where id=1; -update noar ti set v0='5YMEEJRA0942V1UQPF' where id=1; -update noar tt set b1='6CJI4KZQFS36JRRKF8TWX' where id=1; -update noar ti set b1='6CJI4KZQFS36JRRKF8TWX' where id=1; -update noar tt set v0='PVPD4XT6IP9T0KH61MGZ9G1ZI91A' where id=1; -update noar ti set v0='PVPD4XT6IP9T0KH61MGZ9G1ZI91A' where id=1; -update noar tt set b2='MTA7K' where id=1; -update noar ti set b2='MTA7K' where id=1; -update noar tt set v0='DE1J9NYSXH' where id=2; -update noar ti set v0='DE1J9NYSXH' where id=2; -update noar tt set b0='ME' where id=2; -update noar ti set b0='ME' where id=2; -update noar tt set v0='LUMY' where id=2; -update noar ti set v0='LUMY' where id=2; -update noar tt set b1='4MX64BHNUYYBQ5' where id=2; -update noar ti set b1='4MX64BHNUYYBQ5' where id=2; -update noar tt set v0='MHOHJ48ZCG5SMT4E03L' where id=2; -update noar ti set v0='MHOHJ48ZCG5SMT4E03L' where id=2; -update noar tt set b2='HJR9BOT3CK3QODJ' where id=2; -update noar ti set b2='HJR9BOT3CK3QODJ' where id=2; -update noar tt set v0='TNW2K5G2VUZS4U2JETI4XUYSLBBOVJ0' where id=3; -update noar ti set v0='TNW2K5G2VUZS4U2JETI4XUYSLBBOVJ0' where id=3; -update noar tt set b0='B1IFC' where id=3; -update noar ti set b0='B1IFC' where id=3; -update noar tt set v0='DI' where id=3; -update noar ti set v0='DI' where id=3; -update noar tt set b1='24T8Q166CZ9ZMF78MMG1NUTQ9OP4' where id=3; -update noar ti set b1='24T8Q166CZ9ZMF78MMG1NUTQ9OP4' where id=3; -update noar tt set v0='T5PTXNR7XUJHSR7T0N8HUGHUQQKER' where id=3; -update noar ti set v0='T5PTXNR7XUJHSR7T0N8HUGHUQQKER' where id=3; -update noar tt set b2='9MJMHTWGM2UGCD9B56U4ZEWR6VH5Z2' where id=3; -update noar ti set b2='9MJMHTWGM2UGCD9B56U4ZEWR6VH5Z2' where id=3; -update noar tt set v0='YOWG86VZT' where id=4; -update noar ti set v0='YOWG86VZT' where id=4; -update noar tt set b0='AGDF41DN42BRHYU57UIWVYFAYN45AG' where id=4; -update noar ti set b0='AGDF41DN42BRHYU57UIWVYFAYN45AG' where id=4; -update noar tt set v0='HS' where id=4; -update noar ti set v0='HS' where id=4; -update noar tt set b1='1OP3PZDWS02S6ENKIZY4' where id=4; -update noar ti set b1='1OP3PZDWS02S6ENKIZY4' where id=4; -update noar tt set v0='QRLR6P0FP0CZ1BO462UAUPG8NQ6E' where id=4; -update noar ti set v0='QRLR6P0FP0CZ1BO462UAUPG8NQ6E' where id=4; -update noar tt set b2='AVTGL0CGTE9OKPJ30XTFHVXX5' where id=4; -update noar ti set b2='AVTGL0CGTE9OKPJ30XTFHVXX5' where id=4; -update noar tt set v0='NV6FS02' where id=5; -update noar ti set v0='NV6FS02' where id=5; -update noar tt set b0='AY4TZT7SF8NAMBRO0SBB18BAJ3LJNW' where id=5; -update noar ti set b0='AY4TZT7SF8NAMBRO0SBB18BAJ3LJNW' where id=5; -update noar tt set v0='81F4EHR05SMKI' where id=5; -update noar ti set v0='81F4EHR05SMKI' where id=5; -update noar tt set b1='EJJBZ8S05AZBVEQN8KPG3DZLB' where id=5; -update noar ti set b1='EJJBZ8S05AZBVEQN8KPG3DZLB' where id=5; -update noar tt set v0='95B4U0TCG9K856HGXA7RW' where id=5; -update noar ti set v0='95B4U0TCG9K856HGXA7RW' where id=5; -update noar tt set b2='XBB1YZ' where id=5; -update noar ti set b2='XBB1YZ' where id=5; -update noar tt set v0='U7NDZ3BMIDZDUOWVQJMN3JWA' where id=6; -update noar ti set v0='U7NDZ3BMIDZDUOWVQJMN3JWA' where id=6; -update noar tt set b0='Z37FCV' where id=6; -update noar ti set b0='Z37FCV' where id=6; -update noar tt set v0='H3OK99TGZQ5LZ4NELPTOIER1014' where id=6; -update noar ti set v0='H3OK99TGZQ5LZ4NELPTOIER1014' where id=6; -update noar tt set b1='MWMUBQI' where id=6; -update noar ti set b1='MWMUBQI' where id=6; -update noar tt set v0='1R1' where id=6; -update noar ti set v0='1R1' where id=6; -update noar tt set b2='W4AAOWN4VXVG' where id=6; -update noar ti set b2='W4AAOWN4VXVG' where id=6; -update noar tt set v0='G3PACK2JABA3KLRKLI6X79L1KT' where id=7; -update noar ti set v0='G3PACK2JABA3KLRKLI6X79L1KT' where id=7; -update noar tt set b0='CCGVTTTHW0OD' where id=7; -update noar ti set b0='CCGVTTTHW0OD' where id=7; -update noar tt set v0='VMFRW67BCJ2PL1' where id=7; -update noar ti set v0='VMFRW67BCJ2PL1' where id=7; -update noar tt set b1='JSKM0KOTVXK' where id=7; -update noar ti set b1='JSKM0KOTVXK' where id=7; -update noar tt set v0='HDMULHJ5EO8QGR8XE' where id=7; -update noar ti set v0='HDMULHJ5EO8QGR8XE' where id=7; -update noar tt set b2='QTMB871NBPMLAEV0X5DMPOIUGNTL' where id=7; -update noar ti set b2='QTMB871NBPMLAEV0X5DMPOIUGNTL' where id=7; -update noar tt set v0='39' where id=8; -update noar ti set v0='39' where id=8; -update noar tt set b0='IE5EQ279SF81NZN0F9YQB7SZTOXI' where id=8; -update noar ti set b0='IE5EQ279SF81NZN0F9YQB7SZTOXI' where id=8; -update noar tt set v0='YRQ1U3LKY' where id=8; -update noar ti set v0='YRQ1U3LKY' where id=8; -update noar tt set b1='H50O0EBD9HVWVYYSTB0YDN' where id=8; -update noar ti set b1='H50O0EBD9HVWVYYSTB0YDN' where id=8; -update noar tt set v0='XXJTR597GXMVODUXZUQSFVOT7K13UEJ' where id=8; -update noar ti set v0='XXJTR597GXMVODUXZUQSFVOT7K13UEJ' where id=8; -update noar tt set b2='BZU77E' where id=8; -update noar ti set b2='BZU77E' where id=8; -update noar tt set v0='7UCXHJ2BHYMRV438VMEBING0V2' where id=9; -update noar ti set v0='7UCXHJ2BHYMRV438VMEBING0V2' where id=9; -update noar tt set b0='WN' where id=9; -update noar ti set b0='WN' where id=9; -update noar tt set v0='ERJVY' where id=9; -update noar ti set v0='ERJVY' where id=9; -update noar tt set b1='FFOP90Y0MRU5S547XTE' where id=9; -update noar ti set b1='FFOP90Y0MRU5S547XTE' where id=9; -update noar tt set v0='JRQA3B4V81QELFKFV0GNPAB04XVRAK1E' where id=9; -update noar ti set v0='JRQA3B4V81QELFKFV0GNPAB04XVRAK1E' where id=9; -update noar tt set b2='17NMQWC0EVHMHGDHZLGACL99S' where id=9; -update noar ti set b2='17NMQWC0EVHMHGDHZLGACL99S' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -f0 int null, -v0 varchar(32) null, -b0 longblob null, -b1 tinyblob null, -b2 mediumblob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='2N4ROCGAQ9W6C' where id=1; -update noar ti set v0='2N4ROCGAQ9W6C' where id=1; -update noar tt set b0='DGXCWUN0RG6PDFYNATN16XG' where id=1; -update noar ti set b0='DGXCWUN0RG6PDFYNATN16XG' where id=1; -update noar tt set v0='D33MZSIVZJ1AK4ML' where id=1; -update noar ti set v0='D33MZSIVZJ1AK4ML' where id=1; -update noar tt set b1='N5LJR' where id=1; -update noar ti set b1='N5LJR' where id=1; -update noar tt set v0='QHJGF8RQQ2DQZK5XE01XRQORBEY' where id=1; -update noar ti set v0='QHJGF8RQQ2DQZK5XE01XRQORBEY' where id=1; -update noar tt set b2='P0MTJZV' where id=1; -update noar ti set b2='P0MTJZV' where id=1; -update noar tt set v0='PLPRA9V8J4PZWAVPGXH5OKTTQYQ8' where id=2; -update noar ti set v0='PLPRA9V8J4PZWAVPGXH5OKTTQYQ8' where id=2; -update noar tt set b0='A3K0JMOX5W6PHDNQ3BBUNKAY0' where id=2; -update noar ti set b0='A3K0JMOX5W6PHDNQ3BBUNKAY0' where id=2; -update noar tt set v0='Q0LFZDW5Q3NAL5EDM4PA9VGAFTCY' where id=2; -update noar ti set v0='Q0LFZDW5Q3NAL5EDM4PA9VGAFTCY' where id=2; -update noar tt set b1='YOPHXZ5HBHIL6NSAF' where id=2; -update noar ti set b1='YOPHXZ5HBHIL6NSAF' where id=2; -update noar tt set v0='W11FDNBKWTMH1VAE0IK8MAZJUND' where id=2; -update noar ti set v0='W11FDNBKWTMH1VAE0IK8MAZJUND' where id=2; -update noar tt set b2='MINAY2M9UTBNN3F0NTFEJW6823H6' where id=2; -update noar ti set b2='MINAY2M9UTBNN3F0NTFEJW6823H6' where id=2; -update noar tt set v0='0IXVZAA585JQ93YX' where id=3; -update noar ti set v0='0IXVZAA585JQ93YX' where id=3; -update noar tt set b0='RHIA88UBDAEY' where id=3; -update noar ti set b0='RHIA88UBDAEY' where id=3; -update noar tt set v0='FUHCOOVI' where id=3; -update noar ti set v0='FUHCOOVI' where id=3; -update noar tt set b1='2WKSOWXP3O82B7GD5LDRWLT' where id=3; -update noar ti set b1='2WKSOWXP3O82B7GD5LDRWLT' where id=3; -update noar tt set v0='6N0BN1DITVFU7L9FUTT7AMOZ' where id=3; -update noar ti set v0='6N0BN1DITVFU7L9FUTT7AMOZ' where id=3; -update noar tt set b2='XCAEAN067QGVUH2E5PK' where id=3; -update noar ti set b2='XCAEAN067QGVUH2E5PK' where id=3; -update noar tt set v0='UC2XEZBVY18AF06' where id=4; -update noar ti set v0='UC2XEZBVY18AF06' where id=4; -update noar tt set b0='LOQTAWUXG9UZ' where id=4; -update noar ti set b0='LOQTAWUXG9UZ' where id=4; -update noar tt set v0='KFT5NK' where id=4; -update noar ti set v0='KFT5NK' where id=4; -update noar tt set b1='5P60EU13ZYKKNUSS5FIE61' where id=4; -update noar ti set b1='5P60EU13ZYKKNUSS5FIE61' where id=4; -update noar tt set v0='BD869JZAWF8H6LZKQ10A3C7IQCC' where id=4; -update noar ti set v0='BD869JZAWF8H6LZKQ10A3C7IQCC' where id=4; -update noar tt set b2='647AWAJKC1166WN' where id=4; -update noar ti set b2='647AWAJKC1166WN' where id=4; -update noar tt set v0='TVE59UI4IEQC6AUGCHEA01MP4G0' where id=5; -update noar ti set v0='TVE59UI4IEQC6AUGCHEA01MP4G0' where id=5; -update noar tt set b0='KGS5J' where id=5; -update noar ti set b0='KGS5J' where id=5; -update noar tt set v0='G3YEWM' where id=5; -update noar ti set v0='G3YEWM' where id=5; -update noar tt set b1='W7J4ED6QBUDUW6B7YO4ZZ6MWZ8MEDWJU' where id=5; -update noar ti set b1='W7J4ED6QBUDUW6B7YO4ZZ6MWZ8MEDWJU' where id=5; -update noar tt set v0='KZAF8OOIMM28VYTFWASFB' where id=5; -update noar ti set v0='KZAF8OOIMM28VYTFWASFB' where id=5; -update noar tt set b2='TJ' where id=5; -update noar ti set b2='TJ' where id=5; -update noar tt set v0='YM2591GG' where id=6; -update noar ti set v0='YM2591GG' where id=6; -update noar tt set b0='ZXWI1IPN4CSFLBBO0BPE0HHC3K5' where id=6; -update noar ti set b0='ZXWI1IPN4CSFLBBO0BPE0HHC3K5' where id=6; -update noar tt set v0='XB9T5' where id=6; -update noar ti set v0='XB9T5' where id=6; -update noar tt set b1='WATA' where id=6; -update noar ti set b1='WATA' where id=6; -update noar tt set v0='I5YTE45DJR' where id=6; -update noar ti set v0='I5YTE45DJR' where id=6; -update noar tt set b2='U3EWV8' where id=6; -update noar ti set b2='U3EWV8' where id=6; -update noar tt set v0='UJ0OKLPUNNF9P' where id=7; -update noar ti set v0='UJ0OKLPUNNF9P' where id=7; -update noar tt set b0='LGE4PATGU7D' where id=7; -update noar ti set b0='LGE4PATGU7D' where id=7; -update noar tt set v0='OTKP1H5KOU1UXJ' where id=7; -update noar ti set v0='OTKP1H5KOU1UXJ' where id=7; -update noar tt set b1='2UED6I7BZPFHI' where id=7; -update noar ti set b1='2UED6I7BZPFHI' where id=7; -update noar tt set v0='3MG5GWM8TII6U9GI' where id=7; -update noar ti set v0='3MG5GWM8TII6U9GI' where id=7; -update noar tt set b2='R3H' where id=7; -update noar ti set b2='R3H' where id=7; -update noar tt set v0='S5XW9O5FYOR65UVQ6PN' where id=8; -update noar ti set v0='S5XW9O5FYOR65UVQ6PN' where id=8; -update noar tt set b0='QNJOT24A9J0WLGW6XXGE43KS' where id=8; -update noar ti set b0='QNJOT24A9J0WLGW6XXGE43KS' where id=8; -update noar tt set v0='X' where id=8; -update noar ti set v0='X' where id=8; -update noar tt set b1='5JK9LZ' where id=8; -update noar ti set b1='5JK9LZ' where id=8; -update noar tt set v0='IM5OPSJTM22S4ILNLWYLF5IVR1E' where id=8; -update noar ti set v0='IM5OPSJTM22S4ILNLWYLF5IVR1E' where id=8; -update noar tt set b2='7IFQOFLDTABWKHZGMC' where id=8; -update noar ti set b2='7IFQOFLDTABWKHZGMC' where id=8; -update noar tt set v0='Q' where id=9; -update noar ti set v0='Q' where id=9; -update noar tt set b0='55RSJQPQGNK4IIF4WJJE' where id=9; -update noar ti set b0='55RSJQPQGNK4IIF4WJJE' where id=9; -update noar tt set v0='760X865' where id=9; -update noar ti set v0='760X865' where id=9; -update noar tt set b1='BFZDNY31A0G5S5FTCNG' where id=9; -update noar ti set b1='BFZDNY31A0G5S5FTCNG' where id=9; -update noar tt set v0='8SRMHIO8545TQJXTMZ4BCY' where id=9; -update noar ti set v0='8SRMHIO8545TQJXTMZ4BCY' where id=9; -update noar tt set b2='1J6BVHGRWUISD9KGWQD7' where id=9; -update noar ti set b2='1J6BVHGRWUISD9KGWQD7' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -f0 int null, -v0 varchar(256) null, -b0 longblob null, -b1 tinyblob null, -b2 mediumblob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='RD70OX8ODB0NCBAZTVTZEU' where id=1; -update noar ti set v0='RD70OX8ODB0NCBAZTVTZEU' where id=1; -update noar tt set b0='Y92C53L8PL15NOI' where id=1; -update noar ti set b0='Y92C53L8PL15NOI' where id=1; -update noar tt set v0='2XBQ8S7GXIVIL6YGKYCXHK' where id=1; -update noar ti set v0='2XBQ8S7GXIVIL6YGKYCXHK' where id=1; -update noar tt set b1='U8ZBXL1659' where id=1; -update noar ti set b1='U8ZBXL1659' where id=1; -update noar tt set v0='AJG3MMIQRUELS5VDOWNIAPYSH1UDT2' where id=1; -update noar ti set v0='AJG3MMIQRUELS5VDOWNIAPYSH1UDT2' where id=1; -update noar tt set b2='1L7EWWTLXGMQE9J0EEUH' where id=1; -update noar ti set b2='1L7EWWTLXGMQE9J0EEUH' where id=1; -update noar tt set v0='D7SCVRVGBC6FAL1MP3X2M72' where id=2; -update noar ti set v0='D7SCVRVGBC6FAL1MP3X2M72' where id=2; -update noar tt set b0='3MWUX' where id=2; -update noar ti set b0='3MWUX' where id=2; -update noar tt set v0='1UPJVKWX5IGL40RLX' where id=2; -update noar ti set v0='1UPJVKWX5IGL40RLX' where id=2; -update noar tt set b1='PDVOFWH6ZJS86BZH4JV9HPS3PLFL' where id=2; -update noar ti set b1='PDVOFWH6ZJS86BZH4JV9HPS3PLFL' where id=2; -update noar tt set v0='FO6WZC' where id=2; -update noar ti set v0='FO6WZC' where id=2; -update noar tt set b2='TXTDVBB9Q3U6300X3IBYRWN6' where id=2; -update noar ti set b2='TXTDVBB9Q3U6300X3IBYRWN6' where id=2; -update noar tt set v0='O0Y23DMP' where id=3; -update noar ti set v0='O0Y23DMP' where id=3; -update noar tt set b0='7SCQ125WYJHTE2F1D5KLPNLMAGKCM2EQ' where id=3; -update noar ti set b0='7SCQ125WYJHTE2F1D5KLPNLMAGKCM2EQ' where id=3; -update noar tt set v0='ZX' where id=3; -update noar ti set v0='ZX' where id=3; -update noar tt set b1='SJPJ0QKG3NMAE95F74LFA' where id=3; -update noar ti set b1='SJPJ0QKG3NMAE95F74LFA' where id=3; -update noar tt set v0='QCFIRB' where id=3; -update noar ti set v0='QCFIRB' where id=3; -update noar tt set b2='61RNR7TKM0' where id=3; -update noar ti set b2='61RNR7TKM0' where id=3; -update noar tt set v0='MOM2875A' where id=4; -update noar ti set v0='MOM2875A' where id=4; -update noar tt set b0='PVX0W272C790UEEQYI17' where id=4; -update noar ti set b0='PVX0W272C790UEEQYI17' where id=4; -update noar tt set v0='AGRRK8MKRNX' where id=4; -update noar ti set v0='AGRRK8MKRNX' where id=4; -update noar tt set b1='LJBKN4DZF5V5PYPM6PP6GHFQM' where id=4; -update noar ti set b1='LJBKN4DZF5V5PYPM6PP6GHFQM' where id=4; -update noar tt set v0='QVMNIB4R85ORTKVQB10C4' where id=4; -update noar ti set v0='QVMNIB4R85ORTKVQB10C4' where id=4; -update noar tt set b2='VK6YDMZLD368ZB7WT92B538' where id=4; -update noar ti set b2='VK6YDMZLD368ZB7WT92B538' where id=4; -update noar tt set v0='PU4PSZO48T24' where id=5; -update noar ti set v0='PU4PSZO48T24' where id=5; -update noar tt set b0='5HS8HFYCEGQXQED40' where id=5; -update noar ti set b0='5HS8HFYCEGQXQED40' where id=5; -update noar tt set v0='4145GCWLCY8' where id=5; -update noar ti set v0='4145GCWLCY8' where id=5; -update noar tt set b1='XCMUA173L2QRYTTAIEWY43' where id=5; -update noar ti set b1='XCMUA173L2QRYTTAIEWY43' where id=5; -update noar tt set v0='50E4HCA1Z02SIH2MAY' where id=5; -update noar ti set v0='50E4HCA1Z02SIH2MAY' where id=5; -update noar tt set b2='FYBX4UIECOBA3RB493JAA3A1LKTN4FQ' where id=5; -update noar ti set b2='FYBX4UIECOBA3RB493JAA3A1LKTN4FQ' where id=5; -update noar tt set v0='RMG94ZT069YMYFP2Z9DYP' where id=6; -update noar ti set v0='RMG94ZT069YMYFP2Z9DYP' where id=6; -update noar tt set b0='IPVS8JYIRKXPIRFTEIMC' where id=6; -update noar ti set b0='IPVS8JYIRKXPIRFTEIMC' where id=6; -update noar tt set v0='NV6F7C3' where id=6; -update noar ti set v0='NV6F7C3' where id=6; -update noar tt set b1='BZGRAXDER2SCL' where id=6; -update noar ti set b1='BZGRAXDER2SCL' where id=6; -update noar tt set v0='S9MGBTTMWS6L0PF1' where id=6; -update noar ti set v0='S9MGBTTMWS6L0PF1' where id=6; -update noar tt set b2='OAK32A4GZ7XNE4CUWH780ZA16XQDSL' where id=6; -update noar ti set b2='OAK32A4GZ7XNE4CUWH780ZA16XQDSL' where id=6; -update noar tt set v0='8' where id=7; -update noar ti set v0='8' where id=7; -update noar tt set b0='31NFW36WWY8S0E9JV19IRYNWL' where id=7; -update noar ti set b0='31NFW36WWY8S0E9JV19IRYNWL' where id=7; -update noar tt set v0='4' where id=7; -update noar ti set v0='4' where id=7; -update noar tt set b1='H4IF9Z5U' where id=7; -update noar ti set b1='H4IF9Z5U' where id=7; -update noar tt set v0='5O9UGK290V8HLCT2I5GQ' where id=7; -update noar ti set v0='5O9UGK290V8HLCT2I5GQ' where id=7; -update noar tt set b2='QVQSQDOI6XMSDO6EEB1DW' where id=7; -update noar ti set b2='QVQSQDOI6XMSDO6EEB1DW' where id=7; -update noar tt set v0='Q2F16N34HO02TODSGB72LXFAG0S3' where id=8; -update noar ti set v0='Q2F16N34HO02TODSGB72LXFAG0S3' where id=8; -update noar tt set b0='TO9XSLES2I9DXSH3RMD4SO2IOWKF' where id=8; -update noar ti set b0='TO9XSLES2I9DXSH3RMD4SO2IOWKF' where id=8; -update noar tt set v0='64NRTXEHBENL' where id=8; -update noar ti set v0='64NRTXEHBENL' where id=8; -update noar tt set b1='HY1' where id=8; -update noar ti set b1='HY1' where id=8; -update noar tt set v0='K86FP9U3B8BA6FOF' where id=8; -update noar ti set v0='K86FP9U3B8BA6FOF' where id=8; -update noar tt set b2='GNTAL6M8YYJLDZ43YQ5' where id=8; -update noar ti set b2='GNTAL6M8YYJLDZ43YQ5' where id=8; -update noar tt set v0='ZFKK9JVU4I3MKLF1SA79CL7OLUW20' where id=9; -update noar ti set v0='ZFKK9JVU4I3MKLF1SA79CL7OLUW20' where id=9; -update noar tt set b0='83BIKBZ8BYR' where id=9; -update noar ti set b0='83BIKBZ8BYR' where id=9; -update noar tt set v0='JQWIY8YS3T' where id=9; -update noar ti set v0='JQWIY8YS3T' where id=9; -update noar tt set b1='0GBAYKNWFG' where id=9; -update noar ti set b1='0GBAYKNWFG' where id=9; -update noar tt set v0='SF7F653H' where id=9; -update noar ti set v0='SF7F653H' where id=9; -update noar tt set b2='M8WH' where id=9; -update noar ti set b2='M8WH' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -f0 int not null, -v0 varchar(32) not null, -b0 longblob not null, -b1 tinyblob not null, -b2 mediumblob not null -) engine=tokudb; -insert into tt values (1,0,'','','',''); -insert into tt values (2,0,'','','',''); -insert into tt values (3,0,'','','',''); -insert into tt values (4,0,'','','',''); -insert into tt values (5,0,'','','',''); -insert into tt values (6,0,'','','',''); -insert into tt values (7,0,'','','',''); -insert into tt values (8,0,'','','',''); -insert into tt values (9,0,'','','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='FZ7PUE6SXVTPO1F5D2WK8CQVAOFPP9' where id=1; -update noar ti set v0='FZ7PUE6SXVTPO1F5D2WK8CQVAOFPP9' where id=1; -update noar tt set b0='EJQE8R' where id=1; -update noar ti set b0='EJQE8R' where id=1; -update noar tt set v0='QMNR1BUUN1QJJTOJLSMH' where id=1; -update noar ti set v0='QMNR1BUUN1QJJTOJLSMH' where id=1; -update noar tt set b1='IFAL1R2LOWBT7ENH22PRWPLY1TX' where id=1; -update noar ti set b1='IFAL1R2LOWBT7ENH22PRWPLY1TX' where id=1; -update noar tt set v0='K0NU1WJY7MO7X8P08ZD' where id=1; -update noar ti set v0='K0NU1WJY7MO7X8P08ZD' where id=1; -update noar tt set b2='JLLMQ47SCEUHTR' where id=1; -update noar ti set b2='JLLMQ47SCEUHTR' where id=1; -update noar tt set v0='8S' where id=2; -update noar ti set v0='8S' where id=2; -update noar tt set b0='WQJ4' where id=2; -update noar ti set b0='WQJ4' where id=2; -update noar tt set v0='YKRG0479ZPEKL1V6J530LRLOIAUN4G' where id=2; -update noar ti set v0='YKRG0479ZPEKL1V6J530LRLOIAUN4G' where id=2; -update noar tt set b1='TLF3B4JMRHU84DZ2Q6TY6UVKOWXG' where id=2; -update noar ti set b1='TLF3B4JMRHU84DZ2Q6TY6UVKOWXG' where id=2; -update noar tt set v0='FBT3D28A4J5C04F3BNXZ8DO9' where id=2; -update noar ti set v0='FBT3D28A4J5C04F3BNXZ8DO9' where id=2; -update noar tt set b2='MJL35DYL' where id=2; -update noar ti set b2='MJL35DYL' where id=2; -update noar tt set v0='Z9' where id=3; -update noar ti set v0='Z9' where id=3; -update noar tt set b0='GJHRT1W47E6' where id=3; -update noar ti set b0='GJHRT1W47E6' where id=3; -update noar tt set v0='M17PWKLFVSU6AQMX3PS' where id=3; -update noar ti set v0='M17PWKLFVSU6AQMX3PS' where id=3; -update noar tt set b1='G61C3DNJIN' where id=3; -update noar ti set b1='G61C3DNJIN' where id=3; -update noar tt set v0='EILFUTALO4ZKXPVYNT7K4SETPU' where id=3; -update noar ti set v0='EILFUTALO4ZKXPVYNT7K4SETPU' where id=3; -update noar tt set b2='KJNRTM35FLMA8PBF' where id=3; -update noar ti set b2='KJNRTM35FLMA8PBF' where id=3; -update noar tt set v0='B1NAHK1XVQR0RWZ5H9Q1KOX4E5' where id=4; -update noar ti set v0='B1NAHK1XVQR0RWZ5H9Q1KOX4E5' where id=4; -update noar tt set b0='P9A3' where id=4; -update noar ti set b0='P9A3' where id=4; -update noar tt set v0='71G2YNAMD5UB0LJ4TWJPS' where id=4; -update noar ti set v0='71G2YNAMD5UB0LJ4TWJPS' where id=4; -update noar tt set b1='2UOMPTMCWZ' where id=4; -update noar ti set b1='2UOMPTMCWZ' where id=4; -update noar tt set v0='COGVAD7G2Q1X6GAY8MTWBQGEMQXK7' where id=4; -update noar ti set v0='COGVAD7G2Q1X6GAY8MTWBQGEMQXK7' where id=4; -update noar tt set b2='FKYGXFPCB05BE1FL6RJ5' where id=4; -update noar ti set b2='FKYGXFPCB05BE1FL6RJ5' where id=4; -update noar tt set v0='Z8L2KQ' where id=5; -update noar ti set v0='Z8L2KQ' where id=5; -update noar tt set b0='SPBPR58URQJYCXA0' where id=5; -update noar ti set b0='SPBPR58URQJYCXA0' where id=5; -update noar tt set v0='RDM6PM8UZSDP6I9M58IFNZ5EBI' where id=5; -update noar ti set v0='RDM6PM8UZSDP6I9M58IFNZ5EBI' where id=5; -update noar tt set b1='43PPO8K8J118' where id=5; -update noar ti set b1='43PPO8K8J118' where id=5; -update noar tt set v0='A7PR5A4AZPAXQ6O747YNKMKJYR5I' where id=5; -update noar ti set v0='A7PR5A4AZPAXQ6O747YNKMKJYR5I' where id=5; -update noar tt set b2='L5ELRSKPFKEG' where id=5; -update noar ti set b2='L5ELRSKPFKEG' where id=5; -update noar tt set v0='NZRH9I' where id=6; -update noar ti set v0='NZRH9I' where id=6; -update noar tt set b0='UP' where id=6; -update noar ti set b0='UP' where id=6; -update noar tt set v0='S8086K3ZXZJU8' where id=6; -update noar ti set v0='S8086K3ZXZJU8' where id=6; -update noar tt set b1='720NGQSRP' where id=6; -update noar ti set b1='720NGQSRP' where id=6; -update noar tt set v0='VBFXXN2A1IA586XHMQT586E' where id=6; -update noar ti set v0='VBFXXN2A1IA586XHMQT586E' where id=6; -update noar tt set b2='M2G1W8OO' where id=6; -update noar ti set b2='M2G1W8OO' where id=6; -update noar tt set v0='2Q63A4VFY5HYCVS0FVVV60KDB' where id=7; -update noar ti set v0='2Q63A4VFY5HYCVS0FVVV60KDB' where id=7; -update noar tt set b0='GOFNXH1YLGE36L8F6IP24R' where id=7; -update noar ti set b0='GOFNXH1YLGE36L8F6IP24R' where id=7; -update noar tt set v0='HH1V76ESR6I54UH' where id=7; -update noar ti set v0='HH1V76ESR6I54UH' where id=7; -update noar tt set b1='II' where id=7; -update noar ti set b1='II' where id=7; -update noar tt set v0='6N9CDW7RN4O94MR4N9YERGEIP45WX5XD' where id=7; -update noar ti set v0='6N9CDW7RN4O94MR4N9YERGEIP45WX5XD' where id=7; -update noar tt set b2='0SKY532ITRABK3FSQD1' where id=7; -update noar ti set b2='0SKY532ITRABK3FSQD1' where id=7; -update noar tt set v0='MCIGW' where id=8; -update noar ti set v0='MCIGW' where id=8; -update noar tt set b0='VOQJVNS' where id=8; -update noar ti set b0='VOQJVNS' where id=8; -update noar tt set v0='7VQV5KG6YFU5EM6FM3' where id=8; -update noar ti set v0='7VQV5KG6YFU5EM6FM3' where id=8; -update noar tt set b1='LT8WA5J7VKQZ11A1' where id=8; -update noar ti set b1='LT8WA5J7VKQZ11A1' where id=8; -update noar tt set v0='KGEMVKXFLY8BMNUUR45CU' where id=8; -update noar ti set v0='KGEMVKXFLY8BMNUUR45CU' where id=8; -update noar tt set b2='QB99UFZ69F6X8ZAHAX5UKEVXW' where id=8; -update noar ti set b2='QB99UFZ69F6X8ZAHAX5UKEVXW' where id=8; -update noar tt set v0='775A' where id=9; -update noar ti set v0='775A' where id=9; -update noar tt set b0='H9J064UBBH' where id=9; -update noar ti set b0='H9J064UBBH' where id=9; -update noar tt set v0='2SNEAFD6PO891I7HYJB0' where id=9; -update noar ti set v0='2SNEAFD6PO891I7HYJB0' where id=9; -update noar tt set b1='FXPVE61LHENX1' where id=9; -update noar ti set b1='FXPVE61LHENX1' where id=9; -update noar tt set v0='Y9EV63TDO62ARS1G5X09OH9OYJH' where id=9; -update noar ti set v0='Y9EV63TDO62ARS1G5X09OH9OYJH' where id=9; -update noar tt set b2='LNJEFPY' where id=9; -update noar ti set b2='LNJEFPY' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -f0 int not null, -v0 varchar(256) not null, -b0 longblob not null, -b1 tinyblob not null, -b2 mediumblob not null -) engine=tokudb; -insert into tt values (1,0,'','','',''); -insert into tt values (2,0,'','','',''); -insert into tt values (3,0,'','','',''); -insert into tt values (4,0,'','','',''); -insert into tt values (5,0,'','','',''); -insert into tt values (6,0,'','','',''); -insert into tt values (7,0,'','','',''); -insert into tt values (8,0,'','','',''); -insert into tt values (9,0,'','','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='0Q6GF787KRD3' where id=1; -update noar ti set v0='0Q6GF787KRD3' where id=1; -update noar tt set b0='QSK1HG57JS8B866PRTA' where id=1; -update noar ti set b0='QSK1HG57JS8B866PRTA' where id=1; -update noar tt set v0='8STLWRX' where id=1; -update noar ti set v0='8STLWRX' where id=1; -update noar tt set b1='SRULMDFEWMBGNJIYWX7E1IRMOR' where id=1; -update noar ti set b1='SRULMDFEWMBGNJIYWX7E1IRMOR' where id=1; -update noar tt set v0='8GJBMZL' where id=1; -update noar ti set v0='8GJBMZL' where id=1; -update noar tt set b2='AQFC7N6NDHR0FO' where id=1; -update noar ti set b2='AQFC7N6NDHR0FO' where id=1; -update noar tt set v0='5LFX03FH9513APAJ6CTSGMM8KUVD' where id=2; -update noar ti set v0='5LFX03FH9513APAJ6CTSGMM8KUVD' where id=2; -update noar tt set b0='60LSBHXM22AVJN3G9R6DS3SZBXFW9L' where id=2; -update noar ti set b0='60LSBHXM22AVJN3G9R6DS3SZBXFW9L' where id=2; -update noar tt set v0='5JFR050' where id=2; -update noar ti set v0='5JFR050' where id=2; -update noar tt set b1='01HWZ9YF' where id=2; -update noar ti set b1='01HWZ9YF' where id=2; -update noar tt set v0='52VYTJM5H4MVPRE301NS' where id=2; -update noar ti set v0='52VYTJM5H4MVPRE301NS' where id=2; -update noar tt set b2='3VPQ9EKXJFM97' where id=2; -update noar ti set b2='3VPQ9EKXJFM97' where id=2; -update noar tt set v0='KDB11X1496UVI1U' where id=3; -update noar ti set v0='KDB11X1496UVI1U' where id=3; -update noar tt set b0='XGMO9QNRO9ME8TWDJIHKDELMKYZ000UY' where id=3; -update noar ti set b0='XGMO9QNRO9ME8TWDJIHKDELMKYZ000UY' where id=3; -update noar tt set v0='SMLLU79BKTT8TMN2TZ2D74HN' where id=3; -update noar ti set v0='SMLLU79BKTT8TMN2TZ2D74HN' where id=3; -update noar tt set b1='TV' where id=3; -update noar ti set b1='TV' where id=3; -update noar tt set v0='H5KAZCNJQZKBYQ5M318JXL4XHC9K' where id=3; -update noar ti set v0='H5KAZCNJQZKBYQ5M318JXL4XHC9K' where id=3; -update noar tt set b2='RT4M5QLJ5LYT' where id=3; -update noar ti set b2='RT4M5QLJ5LYT' where id=3; -update noar tt set v0='VC8S6OMVW' where id=4; -update noar ti set v0='VC8S6OMVW' where id=4; -update noar tt set b0='9MEZF8V4PLZLW' where id=4; -update noar ti set b0='9MEZF8V4PLZLW' where id=4; -update noar tt set v0='PFB2SCNE22U9BNBGQRNJACHDVV2QI' where id=4; -update noar ti set v0='PFB2SCNE22U9BNBGQRNJACHDVV2QI' where id=4; -update noar tt set b1='MIJHPF5N59NR9EDW0' where id=4; -update noar ti set b1='MIJHPF5N59NR9EDW0' where id=4; -update noar tt set v0='WOWE2C3IODFJFMC9LWS' where id=4; -update noar ti set v0='WOWE2C3IODFJFMC9LWS' where id=4; -update noar tt set b2='H0D5P8Q8IC6GD0DOHZT5K4N0Q6F' where id=4; -update noar ti set b2='H0D5P8Q8IC6GD0DOHZT5K4N0Q6F' where id=4; -update noar tt set v0='2NDGE1Z3P5IXLJJWVZXYOEGA' where id=5; -update noar ti set v0='2NDGE1Z3P5IXLJJWVZXYOEGA' where id=5; -update noar tt set b0='FZNEIU84PJBN3C6YYI' where id=5; -update noar ti set b0='FZNEIU84PJBN3C6YYI' where id=5; -update noar tt set v0='BLP441B5SNKUTP535V2M4ICEPHRG7VTT' where id=5; -update noar ti set v0='BLP441B5SNKUTP535V2M4ICEPHRG7VTT' where id=5; -update noar tt set b1='95YKOE4Q2I8QTUHRRTEWYTX0RFJQ' where id=5; -update noar ti set b1='95YKOE4Q2I8QTUHRRTEWYTX0RFJQ' where id=5; -update noar tt set v0='7ZOVBYLA' where id=5; -update noar ti set v0='7ZOVBYLA' where id=5; -update noar tt set b2='5L1Y55XLRJ27M6V3' where id=5; -update noar ti set b2='5L1Y55XLRJ27M6V3' where id=5; -update noar tt set v0='W08S2MF5WBGL2EGYSKXMP' where id=6; -update noar ti set v0='W08S2MF5WBGL2EGYSKXMP' where id=6; -update noar tt set b0='OIQZP03O4WLDJNX4PIMQ7IX' where id=6; -update noar ti set b0='OIQZP03O4WLDJNX4PIMQ7IX' where id=6; -update noar tt set v0='TGT' where id=6; -update noar ti set v0='TGT' where id=6; -update noar tt set b1='A' where id=6; -update noar ti set b1='A' where id=6; -update noar tt set v0='764RESI3Q' where id=6; -update noar ti set v0='764RESI3Q' where id=6; -update noar tt set b2='6' where id=6; -update noar ti set b2='6' where id=6; -update noar tt set v0='7BAO314HNL61D' where id=7; -update noar ti set v0='7BAO314HNL61D' where id=7; -update noar tt set b0='L8QMLIURK' where id=7; -update noar ti set b0='L8QMLIURK' where id=7; -update noar tt set v0='91ZVZS14NYX' where id=7; -update noar ti set v0='91ZVZS14NYX' where id=7; -update noar tt set b1='EC99D' where id=7; -update noar ti set b1='EC99D' where id=7; -update noar tt set v0='7MWYVKTNC7' where id=7; -update noar ti set v0='7MWYVKTNC7' where id=7; -update noar tt set b2='D139L8F4BICXB2M34' where id=7; -update noar ti set b2='D139L8F4BICXB2M34' where id=7; -update noar tt set v0='U' where id=8; -update noar ti set v0='U' where id=8; -update noar tt set b0='XSY2VZ07AXYUO0NS77ESUHBR' where id=8; -update noar ti set b0='XSY2VZ07AXYUO0NS77ESUHBR' where id=8; -update noar tt set v0='GCR' where id=8; -update noar ti set v0='GCR' where id=8; -update noar tt set b1='7749S6RDRLQV' where id=8; -update noar ti set b1='7749S6RDRLQV' where id=8; -update noar tt set v0='25CYCOGKTM6DEU17' where id=8; -update noar ti set v0='25CYCOGKTM6DEU17' where id=8; -update noar tt set b2='AXJ5W' where id=8; -update noar ti set b2='AXJ5W' where id=8; -update noar tt set v0='4P3MNGQRKFGRP' where id=9; -update noar ti set v0='4P3MNGQRKFGRP' where id=9; -update noar tt set b0='ZOE411' where id=9; -update noar ti set b0='ZOE411' where id=9; -update noar tt set v0='2BWZ0FDLXYLJB' where id=9; -update noar ti set v0='2BWZ0FDLXYLJB' where id=9; -update noar tt set b1='QKOYU80ZTH4JESLZW5T44PKV' where id=9; -update noar ti set b1='QKOYU80ZTH4JESLZW5T44PKV' where id=9; -update noar tt set v0='XYHEEQG3ANCU' where id=9; -update noar ti set v0='XYHEEQG3ANCU' where id=9; -update noar tt set b2='Y' where id=9; -update noar ti set b2='Y' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -f0 int null, -v0 varchar(32) null, -b0 longblob null, -b1 tinyblob null, -b2 longblob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='AMKN518R' where id=1; -update noar ti set v0='AMKN518R' where id=1; -update noar tt set b0='0FXWYX' where id=1; -update noar ti set b0='0FXWYX' where id=1; -update noar tt set v0='DS7H4U6ZVWBNESD40PO' where id=1; -update noar ti set v0='DS7H4U6ZVWBNESD40PO' where id=1; -update noar tt set b1='0MRZJXM80RDB' where id=1; -update noar ti set b1='0MRZJXM80RDB' where id=1; -update noar tt set v0='YGG' where id=1; -update noar ti set v0='YGG' where id=1; -update noar tt set b2='8PDQZGLX0B16C6R4WD0' where id=1; -update noar ti set b2='8PDQZGLX0B16C6R4WD0' where id=1; -update noar tt set v0='AOW238NCU56ABN9AX8SYH24ICP1SGJA' where id=2; -update noar ti set v0='AOW238NCU56ABN9AX8SYH24ICP1SGJA' where id=2; -update noar tt set b0='P271B61YFCH04QI9' where id=2; -update noar ti set b0='P271B61YFCH04QI9' where id=2; -update noar tt set v0='R0AG194' where id=2; -update noar ti set v0='R0AG194' where id=2; -update noar tt set b1='DXM59' where id=2; -update noar ti set b1='DXM59' where id=2; -update noar tt set v0='1GAFD' where id=2; -update noar ti set v0='1GAFD' where id=2; -update noar tt set b2='V08C' where id=2; -update noar ti set b2='V08C' where id=2; -update noar tt set v0='UESSCADYUXHI603Z66AQKPB' where id=3; -update noar ti set v0='UESSCADYUXHI603Z66AQKPB' where id=3; -update noar tt set b0='0OO05YC8NW53LXJQ7K3SU5UH9' where id=3; -update noar ti set b0='0OO05YC8NW53LXJQ7K3SU5UH9' where id=3; -update noar tt set v0='ADE7SQ1MM7UTY1S3044JX' where id=3; -update noar ti set v0='ADE7SQ1MM7UTY1S3044JX' where id=3; -update noar tt set b1='6MZJOLDIY0YN8Q' where id=3; -update noar ti set b1='6MZJOLDIY0YN8Q' where id=3; -update noar tt set v0='WDCN6P3APTUDKJBE8UM9MMPSBZSVM3' where id=3; -update noar ti set v0='WDCN6P3APTUDKJBE8UM9MMPSBZSVM3' where id=3; -update noar tt set b2='XGPXTP5HYBY0GXYUPKSFWQOSCR' where id=3; -update noar ti set b2='XGPXTP5HYBY0GXYUPKSFWQOSCR' where id=3; -update noar tt set v0='IA1M3GZP' where id=4; -update noar ti set v0='IA1M3GZP' where id=4; -update noar tt set b0='XFW9XK8F7V3YWPE72NEXILJOR2X1W' where id=4; -update noar ti set b0='XFW9XK8F7V3YWPE72NEXILJOR2X1W' where id=4; -update noar tt set v0='RJ25GDFJ6FLETIGOLK' where id=4; -update noar ti set v0='RJ25GDFJ6FLETIGOLK' where id=4; -update noar tt set b1='B5CV97LRB29AM0MLYPYXC3S' where id=4; -update noar ti set b1='B5CV97LRB29AM0MLYPYXC3S' where id=4; -update noar tt set v0='3EO' where id=4; -update noar ti set v0='3EO' where id=4; -update noar tt set b2='2GRR0CMCH4DNQL663JRX5' where id=4; -update noar ti set b2='2GRR0CMCH4DNQL663JRX5' where id=4; -update noar tt set v0='F2HM9HI4TDCYSULTE' where id=5; -update noar ti set v0='F2HM9HI4TDCYSULTE' where id=5; -update noar tt set b0='1516QOFM8HYHA' where id=5; -update noar ti set b0='1516QOFM8HYHA' where id=5; -update noar tt set v0='1K3' where id=5; -update noar ti set v0='1K3' where id=5; -update noar tt set b1='H' where id=5; -update noar ti set b1='H' where id=5; -update noar tt set v0='53XP3Q38QT' where id=5; -update noar ti set v0='53XP3Q38QT' where id=5; -update noar tt set b2='A0Y8M7A7BH74LJT63Q8A' where id=5; -update noar ti set b2='A0Y8M7A7BH74LJT63Q8A' where id=5; -update noar tt set v0='NI5ZAZXKLQERKZLZ9RA190EUS' where id=6; -update noar ti set v0='NI5ZAZXKLQERKZLZ9RA190EUS' where id=6; -update noar tt set b0='N749' where id=6; -update noar ti set b0='N749' where id=6; -update noar tt set v0='BJIUELODFXRKSTUT5ZMX9AWFREPTN7' where id=6; -update noar ti set v0='BJIUELODFXRKSTUT5ZMX9AWFREPTN7' where id=6; -update noar tt set b1='CWKMETCRQY588KS' where id=6; -update noar ti set b1='CWKMETCRQY588KS' where id=6; -update noar tt set v0='1P7O51T11A81QLQ8BAQ2IYF' where id=6; -update noar ti set v0='1P7O51T11A81QLQ8BAQ2IYF' where id=6; -update noar tt set b2='5MAFSL7XGACIL46HYXUY' where id=6; -update noar ti set b2='5MAFSL7XGACIL46HYXUY' where id=6; -update noar tt set v0='AXQV94DIW' where id=7; -update noar ti set v0='AXQV94DIW' where id=7; -update noar tt set b0='NQS9SRKTXP9' where id=7; -update noar ti set b0='NQS9SRKTXP9' where id=7; -update noar tt set v0='PFBEWG2NMJ6MN61RD1GJ7ANVSZONP3N8' where id=7; -update noar ti set v0='PFBEWG2NMJ6MN61RD1GJ7ANVSZONP3N8' where id=7; -update noar tt set b1='JV57OKZV6KJU8L5KD3NRQV86' where id=7; -update noar ti set b1='JV57OKZV6KJU8L5KD3NRQV86' where id=7; -update noar tt set v0='FXCIF6H9S7OZ5MRVB' where id=7; -update noar ti set v0='FXCIF6H9S7OZ5MRVB' where id=7; -update noar tt set b2='BYTJIU1IW6SRY' where id=7; -update noar ti set b2='BYTJIU1IW6SRY' where id=7; -update noar tt set v0='ARDKPAQZB62ST2MYFV9DRFY7Y' where id=8; -update noar ti set v0='ARDKPAQZB62ST2MYFV9DRFY7Y' where id=8; -update noar tt set b0='GBBERWWWTH7YJCCSIC6' where id=8; -update noar ti set b0='GBBERWWWTH7YJCCSIC6' where id=8; -update noar tt set v0='IAYJ3L6OPXV1T16WFD04P88SMS6I' where id=8; -update noar ti set v0='IAYJ3L6OPXV1T16WFD04P88SMS6I' where id=8; -update noar tt set b1='G0FE61ARBFKMOVDL81P4WG4CW56' where id=8; -update noar ti set b1='G0FE61ARBFKMOVDL81P4WG4CW56' where id=8; -update noar tt set v0='KL9H6FWKTTNJ8DMCD2LJXFX9YN' where id=8; -update noar ti set v0='KL9H6FWKTTNJ8DMCD2LJXFX9YN' where id=8; -update noar tt set b2='ZGCH2QY2USXDSUULHJTWDLZEGFRZOWI' where id=8; -update noar ti set b2='ZGCH2QY2USXDSUULHJTWDLZEGFRZOWI' where id=8; -update noar tt set v0='RDB0SV' where id=9; -update noar ti set v0='RDB0SV' where id=9; -update noar tt set b0='CP4D3J8INCWF9RDZ9FHN2' where id=9; -update noar ti set b0='CP4D3J8INCWF9RDZ9FHN2' where id=9; -update noar tt set v0='WTTNO' where id=9; -update noar ti set v0='WTTNO' where id=9; -update noar tt set b1='EY5N7RCKWEP9TA8QOQY7' where id=9; -update noar ti set b1='EY5N7RCKWEP9TA8QOQY7' where id=9; -update noar tt set v0='UCSEZ4HAY27S4VPB8EPPMJLQYDR6EY9' where id=9; -update noar ti set v0='UCSEZ4HAY27S4VPB8EPPMJLQYDR6EY9' where id=9; -update noar tt set b2='3L53BEZVT2YKOYV1WOE9MQHCH06CQT' where id=9; -update noar ti set b2='3L53BEZVT2YKOYV1WOE9MQHCH06CQT' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -f0 int null, -v0 varchar(256) null, -b0 longblob null, -b1 tinyblob null, -b2 longblob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='SOWO51D' where id=1; -update noar ti set v0='SOWO51D' where id=1; -update noar tt set b0='CW42JX9F' where id=1; -update noar ti set b0='CW42JX9F' where id=1; -update noar tt set v0='9352UQCNYHHRRX22HL' where id=1; -update noar ti set v0='9352UQCNYHHRRX22HL' where id=1; -update noar tt set b1='L5UR0OGI3WQ2MGI9797A3W087NZ3UZ' where id=1; -update noar ti set b1='L5UR0OGI3WQ2MGI9797A3W087NZ3UZ' where id=1; -update noar tt set v0='KJ0I2YS7XM5L2NA' where id=1; -update noar ti set v0='KJ0I2YS7XM5L2NA' where id=1; -update noar tt set b2='K6OT2MVZJ60BM' where id=1; -update noar ti set b2='K6OT2MVZJ60BM' where id=1; -update noar tt set v0='1R' where id=2; -update noar ti set v0='1R' where id=2; -update noar tt set b0='YNLCQAN6VRAZ5582G4QHZKY' where id=2; -update noar ti set b0='YNLCQAN6VRAZ5582G4QHZKY' where id=2; -update noar tt set v0='CF' where id=2; -update noar ti set v0='CF' where id=2; -update noar tt set b1='LGA0GYM4B' where id=2; -update noar ti set b1='LGA0GYM4B' where id=2; -update noar tt set v0='ZETIV9WPQIXMXO' where id=2; -update noar ti set v0='ZETIV9WPQIXMXO' where id=2; -update noar tt set b2='084R77QBRAE8WR3628C9WWDPZG3OFF82' where id=2; -update noar ti set b2='084R77QBRAE8WR3628C9WWDPZG3OFF82' where id=2; -update noar tt set v0='HHJLNXF0DYJO' where id=3; -update noar ti set v0='HHJLNXF0DYJO' where id=3; -update noar tt set b0='TFGZ6T98E' where id=3; -update noar ti set b0='TFGZ6T98E' where id=3; -update noar tt set v0='Q7WE08LW97RNLVQ2HE2' where id=3; -update noar ti set v0='Q7WE08LW97RNLVQ2HE2' where id=3; -update noar tt set b1='PK27J26DJRNSE8Z5Y3D' where id=3; -update noar ti set b1='PK27J26DJRNSE8Z5Y3D' where id=3; -update noar tt set v0='KS3DE63Z9GCZTFH0Y6S6D6LUFS2Q16' where id=3; -update noar ti set v0='KS3DE63Z9GCZTFH0Y6S6D6LUFS2Q16' where id=3; -update noar tt set b2='Y7H0IDONT9IFRBSRU53PBB3OBEYZP' where id=3; -update noar ti set b2='Y7H0IDONT9IFRBSRU53PBB3OBEYZP' where id=3; -update noar tt set v0='8W2CJVT4WA54UI' where id=4; -update noar ti set v0='8W2CJVT4WA54UI' where id=4; -update noar tt set b0='KR9MOZJ77HSZY1DM6QDYQRMF' where id=4; -update noar ti set b0='KR9MOZJ77HSZY1DM6QDYQRMF' where id=4; -update noar tt set v0='V73' where id=4; -update noar ti set v0='V73' where id=4; -update noar tt set b1='ODYJBLEREP6' where id=4; -update noar ti set b1='ODYJBLEREP6' where id=4; -update noar tt set v0='NZQ4D2' where id=4; -update noar ti set v0='NZQ4D2' where id=4; -update noar tt set b2='PQAZ5' where id=4; -update noar ti set b2='PQAZ5' where id=4; -update noar tt set v0='0RDJOP1076MERNE' where id=5; -update noar ti set v0='0RDJOP1076MERNE' where id=5; -update noar tt set b0='1QDVZPW6WRZSI12' where id=5; -update noar ti set b0='1QDVZPW6WRZSI12' where id=5; -update noar tt set v0='RTYH5GEXL24NL6YUUMZZ0D' where id=5; -update noar ti set v0='RTYH5GEXL24NL6YUUMZZ0D' where id=5; -update noar tt set b1='8ZWA3JYXBJW5MTFW8E1' where id=5; -update noar ti set b1='8ZWA3JYXBJW5MTFW8E1' where id=5; -update noar tt set v0='AQCVQ1AENG3NLEL7R65GAD' where id=5; -update noar ti set v0='AQCVQ1AENG3NLEL7R65GAD' where id=5; -update noar tt set b2='12M9TR' where id=5; -update noar ti set b2='12M9TR' where id=5; -update noar tt set v0='OGWXVFYWBCCHAKOT0F7B600VSES4' where id=6; -update noar ti set v0='OGWXVFYWBCCHAKOT0F7B600VSES4' where id=6; -update noar tt set b0='PFR11' where id=6; -update noar ti set b0='PFR11' where id=6; -update noar tt set v0='NM' where id=6; -update noar ti set v0='NM' where id=6; -update noar tt set b1='YO' where id=6; -update noar ti set b1='YO' where id=6; -update noar tt set v0='08' where id=6; -update noar ti set v0='08' where id=6; -update noar tt set b2='ZAFFIM7JPH5XQ8QMWX' where id=6; -update noar ti set b2='ZAFFIM7JPH5XQ8QMWX' where id=6; -update noar tt set v0='TL3PSNXPZEXVJ9MJJ034' where id=7; -update noar ti set v0='TL3PSNXPZEXVJ9MJJ034' where id=7; -update noar tt set b0='D33GM' where id=7; -update noar ti set b0='D33GM' where id=7; -update noar tt set v0='SWGVJF9M' where id=7; -update noar ti set v0='SWGVJF9M' where id=7; -update noar tt set b1='VXRVHPBENQ50KG65JIHR' where id=7; -update noar ti set b1='VXRVHPBENQ50KG65JIHR' where id=7; -update noar tt set v0='ARKIXE' where id=7; -update noar ti set v0='ARKIXE' where id=7; -update noar tt set b2='QSGER' where id=7; -update noar ti set b2='QSGER' where id=7; -update noar tt set v0='ROIXMP10Q9Y3KN5AVX9GUG' where id=8; -update noar ti set v0='ROIXMP10Q9Y3KN5AVX9GUG' where id=8; -update noar tt set b0='RKGA9Y3U6QZ77YJ5KS00O' where id=8; -update noar ti set b0='RKGA9Y3U6QZ77YJ5KS00O' where id=8; -update noar tt set v0='F7D8ZEV0' where id=8; -update noar ti set v0='F7D8ZEV0' where id=8; -update noar tt set b1='JBKE385POLSW3QALFRCN' where id=8; -update noar ti set b1='JBKE385POLSW3QALFRCN' where id=8; -update noar tt set v0='ORW3Y9T11C8Q' where id=8; -update noar ti set v0='ORW3Y9T11C8Q' where id=8; -update noar tt set b2='LWNNCF8H' where id=8; -update noar ti set b2='LWNNCF8H' where id=8; -update noar tt set v0='FHU92WKHX4KUMNRKHK1K5MJNPCWVGFD' where id=9; -update noar ti set v0='FHU92WKHX4KUMNRKHK1K5MJNPCWVGFD' where id=9; -update noar tt set b0='X96QN56HQU83HKPWEKB' where id=9; -update noar ti set b0='X96QN56HQU83HKPWEKB' where id=9; -update noar tt set v0='ONNW9IYZZ2N6R' where id=9; -update noar ti set v0='ONNW9IYZZ2N6R' where id=9; -update noar tt set b1='KH3TJ' where id=9; -update noar ti set b1='KH3TJ' where id=9; -update noar tt set v0='CTE13H2593J839' where id=9; -update noar ti set v0='CTE13H2593J839' where id=9; -update noar tt set b2='RD7AZ' where id=9; -update noar ti set b2='RD7AZ' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -f0 int not null, -v0 varchar(32) not null, -b0 longblob not null, -b1 tinyblob not null, -b2 longblob not null -) engine=tokudb; -insert into tt values (1,0,'','','',''); -insert into tt values (2,0,'','','',''); -insert into tt values (3,0,'','','',''); -insert into tt values (4,0,'','','',''); -insert into tt values (5,0,'','','',''); -insert into tt values (6,0,'','','',''); -insert into tt values (7,0,'','','',''); -insert into tt values (8,0,'','','',''); -insert into tt values (9,0,'','','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='JYD0' where id=1; -update noar ti set v0='JYD0' where id=1; -update noar tt set b0='F7IB' where id=1; -update noar ti set b0='F7IB' where id=1; -update noar tt set v0='J5' where id=1; -update noar ti set v0='J5' where id=1; -update noar tt set b1='XDODL' where id=1; -update noar ti set b1='XDODL' where id=1; -update noar tt set v0='SKJ1150CIQOO1DWL81E' where id=1; -update noar ti set v0='SKJ1150CIQOO1DWL81E' where id=1; -update noar tt set b2='LX2KWJKX1MWC9ZEPM49DCKY' where id=1; -update noar ti set b2='LX2KWJKX1MWC9ZEPM49DCKY' where id=1; -update noar tt set v0='GVXF2MFZ5H0GTKIJ6D70K1R3PZFR' where id=2; -update noar ti set v0='GVXF2MFZ5H0GTKIJ6D70K1R3PZFR' where id=2; -update noar tt set b0='09DA' where id=2; -update noar ti set b0='09DA' where id=2; -update noar tt set v0='CRJN1TBRKT5T5GOEMVG' where id=2; -update noar ti set v0='CRJN1TBRKT5T5GOEMVG' where id=2; -update noar tt set b1='F0JMXZ7S90' where id=2; -update noar ti set b1='F0JMXZ7S90' where id=2; -update noar tt set v0='LP6A6' where id=2; -update noar ti set v0='LP6A6' where id=2; -update noar tt set b2='UIQD0KP1CHQLUDI3' where id=2; -update noar ti set b2='UIQD0KP1CHQLUDI3' where id=2; -update noar tt set v0='22LYYRZJHDF5NL2UDXUNRB8T5' where id=3; -update noar ti set v0='22LYYRZJHDF5NL2UDXUNRB8T5' where id=3; -update noar tt set b0='JL4E4EX51Y1H9GIH8VZ5ZLYIM8S2EGM9' where id=3; -update noar ti set b0='JL4E4EX51Y1H9GIH8VZ5ZLYIM8S2EGM9' where id=3; -update noar tt set v0='V9EHCQKJZP7BBEWPCYGUMY0' where id=3; -update noar ti set v0='V9EHCQKJZP7BBEWPCYGUMY0' where id=3; -update noar tt set b1='EWV05LVNEISX2' where id=3; -update noar ti set b1='EWV05LVNEISX2' where id=3; -update noar tt set v0='8MDS8' where id=3; -update noar ti set v0='8MDS8' where id=3; -update noar tt set b2='UTDKHY1MRV5GM9LZJ8E8XWK6TV6ZJADW' where id=3; -update noar ti set b2='UTDKHY1MRV5GM9LZJ8E8XWK6TV6ZJADW' where id=3; -update noar tt set v0='VQV6NYXA69FRRCN9ZF' where id=4; -update noar ti set v0='VQV6NYXA69FRRCN9ZF' where id=4; -update noar tt set b0='LGGD3WK09KYHRF40S06JS9XS' where id=4; -update noar ti set b0='LGGD3WK09KYHRF40S06JS9XS' where id=4; -update noar tt set v0='H0L5VK4HARVUKH6LD69QCK4' where id=4; -update noar ti set v0='H0L5VK4HARVUKH6LD69QCK4' where id=4; -update noar tt set b1='96DVSAFX6U5DZYW89SH3R7ALK' where id=4; -update noar ti set b1='96DVSAFX6U5DZYW89SH3R7ALK' where id=4; -update noar tt set v0='3VUSH3BLQ36VWLSED6EHH85R' where id=4; -update noar ti set v0='3VUSH3BLQ36VWLSED6EHH85R' where id=4; -update noar tt set b2='BKGOPGAJZKADFH5KGY6LBPF' where id=4; -update noar ti set b2='BKGOPGAJZKADFH5KGY6LBPF' where id=4; -update noar tt set v0='8ZLDZ8PWMTE1A9XK94RQ7TS' where id=5; -update noar ti set v0='8ZLDZ8PWMTE1A9XK94RQ7TS' where id=5; -update noar tt set b0='YOMCYS3K88OSZ6V2' where id=5; -update noar ti set b0='YOMCYS3K88OSZ6V2' where id=5; -update noar tt set v0='4WGEQV1EISR' where id=5; -update noar ti set v0='4WGEQV1EISR' where id=5; -update noar tt set b1='9LED93E1RDOJ9' where id=5; -update noar ti set b1='9LED93E1RDOJ9' where id=5; -update noar tt set v0='1UGDMIJREX58WFGDWFJYH8IYV308L' where id=5; -update noar ti set v0='1UGDMIJREX58WFGDWFJYH8IYV308L' where id=5; -update noar tt set b2='9M0EZCD' where id=5; -update noar ti set b2='9M0EZCD' where id=5; -update noar tt set v0='5' where id=6; -update noar ti set v0='5' where id=6; -update noar tt set b0='OKT9FZDP9K0CVL0A4V9E' where id=6; -update noar ti set b0='OKT9FZDP9K0CVL0A4V9E' where id=6; -update noar tt set v0='5UEGPRI7PWJC2F1KPFLB' where id=6; -update noar ti set v0='5UEGPRI7PWJC2F1KPFLB' where id=6; -update noar tt set b1='180KB' where id=6; -update noar ti set b1='180KB' where id=6; -update noar tt set v0='GCNA' where id=6; -update noar ti set v0='GCNA' where id=6; -update noar tt set b2='IK83PAN49HVMR' where id=6; -update noar ti set b2='IK83PAN49HVMR' where id=6; -update noar tt set v0='TCMPVZMV122EWAOB4ZVT5TBB' where id=7; -update noar ti set v0='TCMPVZMV122EWAOB4ZVT5TBB' where id=7; -update noar tt set b0='YS7RLIHD6SLTJ' where id=7; -update noar ti set b0='YS7RLIHD6SLTJ' where id=7; -update noar tt set v0='WANRFGN5' where id=7; -update noar ti set v0='WANRFGN5' where id=7; -update noar tt set b1='YTKXXC1XV8QFQLIAYON5LIXE2VWZDZ' where id=7; -update noar ti set b1='YTKXXC1XV8QFQLIAYON5LIXE2VWZDZ' where id=7; -update noar tt set v0='UTW2A2' where id=7; -update noar ti set v0='UTW2A2' where id=7; -update noar tt set b2='C0V' where id=7; -update noar ti set b2='C0V' where id=7; -update noar tt set v0='O0SOVFM9E7YD' where id=8; -update noar ti set v0='O0SOVFM9E7YD' where id=8; -update noar tt set b0='HJRRZ5IGYO1AA6MIDA7LFQQY' where id=8; -update noar ti set b0='HJRRZ5IGYO1AA6MIDA7LFQQY' where id=8; -update noar tt set v0='SZBZALZOODO9ME1ZTUUI26P' where id=8; -update noar ti set v0='SZBZALZOODO9ME1ZTUUI26P' where id=8; -update noar tt set b1='4HSU2L8IQV5H20Y' where id=8; -update noar ti set b1='4HSU2L8IQV5H20Y' where id=8; -update noar tt set v0='L0DPUJENALYJIG2D87N0' where id=8; -update noar ti set v0='L0DPUJENALYJIG2D87N0' where id=8; -update noar tt set b2='74SM' where id=8; -update noar ti set b2='74SM' where id=8; -update noar tt set v0='ASF47OFFZ7Y0DUSXG08T' where id=9; -update noar ti set v0='ASF47OFFZ7Y0DUSXG08T' where id=9; -update noar tt set b0='ZUM' where id=9; -update noar ti set b0='ZUM' where id=9; -update noar tt set v0='U2Q0' where id=9; -update noar ti set v0='U2Q0' where id=9; -update noar tt set b1='8IA2SRMDYD' where id=9; -update noar ti set b1='8IA2SRMDYD' where id=9; -update noar tt set v0='NN69CTRFMB9QYOQ' where id=9; -update noar ti set v0='NN69CTRFMB9QYOQ' where id=9; -update noar tt set b2='ZWMPABBX5CZZJXDOS12GKS' where id=9; -update noar ti set b2='ZWMPABBX5CZZJXDOS12GKS' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -f0 int not null, -v0 varchar(256) not null, -b0 longblob not null, -b1 tinyblob not null, -b2 longblob not null -) engine=tokudb; -insert into tt values (1,0,'','','',''); -insert into tt values (2,0,'','','',''); -insert into tt values (3,0,'','','',''); -insert into tt values (4,0,'','','',''); -insert into tt values (5,0,'','','',''); -insert into tt values (6,0,'','','',''); -insert into tt values (7,0,'','','',''); -insert into tt values (8,0,'','','',''); -insert into tt values (9,0,'','','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='M99S8I2IRCQH5CD46VLA427' where id=1; -update noar ti set v0='M99S8I2IRCQH5CD46VLA427' where id=1; -update noar tt set b0='4E02MII1T7NLO' where id=1; -update noar ti set b0='4E02MII1T7NLO' where id=1; -update noar tt set v0='3J573ZT' where id=1; -update noar ti set v0='3J573ZT' where id=1; -update noar tt set b1='QRF9UIKJ5DLZ2YQCKXP1I' where id=1; -update noar ti set b1='QRF9UIKJ5DLZ2YQCKXP1I' where id=1; -update noar tt set v0='19SDTJ5F9B9QX266FTKW' where id=1; -update noar ti set v0='19SDTJ5F9B9QX266FTKW' where id=1; -update noar tt set b2='SSHDFQ7UTSKK6PV9WSSZ42PLV' where id=1; -update noar ti set b2='SSHDFQ7UTSKK6PV9WSSZ42PLV' where id=1; -update noar tt set v0='PC' where id=2; -update noar ti set v0='PC' where id=2; -update noar tt set b0='8' where id=2; -update noar ti set b0='8' where id=2; -update noar tt set v0='6E4ZRH4NFG188CWEN2' where id=2; -update noar ti set v0='6E4ZRH4NFG188CWEN2' where id=2; -update noar tt set b1='XBUMIMTVN86' where id=2; -update noar ti set b1='XBUMIMTVN86' where id=2; -update noar tt set v0='NHWR4UJ04FKKNC' where id=2; -update noar ti set v0='NHWR4UJ04FKKNC' where id=2; -update noar tt set b2='0XKDA8UWY9K' where id=2; -update noar ti set b2='0XKDA8UWY9K' where id=2; -update noar tt set v0='ZJ5DUZWT175X7OJUWL3ENVU' where id=3; -update noar ti set v0='ZJ5DUZWT175X7OJUWL3ENVU' where id=3; -update noar tt set b0='QUE2HOAPC5OL250AN39QO4HT' where id=3; -update noar ti set b0='QUE2HOAPC5OL250AN39QO4HT' where id=3; -update noar tt set v0='TII50M0DWAHABRACZ' where id=3; -update noar ti set v0='TII50M0DWAHABRACZ' where id=3; -update noar tt set b1='9RPJ3TE7G' where id=3; -update noar ti set b1='9RPJ3TE7G' where id=3; -update noar tt set v0='K' where id=3; -update noar ti set v0='K' where id=3; -update noar tt set b2='PY72N2Y98VISCGZ3Q8ADOURI6CE' where id=3; -update noar ti set b2='PY72N2Y98VISCGZ3Q8ADOURI6CE' where id=3; -update noar tt set v0='B0D033EEHKFT1XHNT' where id=4; -update noar ti set v0='B0D033EEHKFT1XHNT' where id=4; -update noar tt set b0='X' where id=4; -update noar ti set b0='X' where id=4; -update noar tt set v0='P1049NF91FRET2FUMFI' where id=4; -update noar ti set v0='P1049NF91FRET2FUMFI' where id=4; -update noar tt set b1='QALRV6BAVNH36RX171OIEK3F58' where id=4; -update noar ti set b1='QALRV6BAVNH36RX171OIEK3F58' where id=4; -update noar tt set v0='P3UJI0DVU596CVXB672JJXNF1Q4S7' where id=4; -update noar ti set v0='P3UJI0DVU596CVXB672JJXNF1Q4S7' where id=4; -update noar tt set b2='BVH124539SW3IWLJYF58E5QWRWVUQC' where id=4; -update noar ti set b2='BVH124539SW3IWLJYF58E5QWRWVUQC' where id=4; -update noar tt set v0='PG4FFS7E1VI8DC0' where id=5; -update noar ti set v0='PG4FFS7E1VI8DC0' where id=5; -update noar tt set b0='FVFGBLHRA2AEPZ80FBIMYK8' where id=5; -update noar ti set b0='FVFGBLHRA2AEPZ80FBIMYK8' where id=5; -update noar tt set v0='U75IP181HOE0ZN8YWHG8V39WG09O65' where id=5; -update noar ti set v0='U75IP181HOE0ZN8YWHG8V39WG09O65' where id=5; -update noar tt set b1='JYTQFQM3S911GD2N80' where id=5; -update noar ti set b1='JYTQFQM3S911GD2N80' where id=5; -update noar tt set v0='MF6276OYVE3R2934LBEB9QKM5CKO' where id=5; -update noar ti set v0='MF6276OYVE3R2934LBEB9QKM5CKO' where id=5; -update noar tt set b2='TCB20NFDJ8QHO' where id=5; -update noar ti set b2='TCB20NFDJ8QHO' where id=5; -update noar tt set v0='08G6WYWFI0L8S3OXI68GG693DE' where id=6; -update noar ti set v0='08G6WYWFI0L8S3OXI68GG693DE' where id=6; -update noar tt set b0='VXO' where id=6; -update noar ti set b0='VXO' where id=6; -update noar tt set v0='4L8V81BY30LDLGCOCWNJITDCXB' where id=6; -update noar ti set v0='4L8V81BY30LDLGCOCWNJITDCXB' where id=6; -update noar tt set b1='DKXOXHBHWPD' where id=6; -update noar ti set b1='DKXOXHBHWPD' where id=6; -update noar tt set v0='IBESIH8QFN7PA68NJYP1Q3MQQVY16OI0' where id=6; -update noar ti set v0='IBESIH8QFN7PA68NJYP1Q3MQQVY16OI0' where id=6; -update noar tt set b2='GF9O9W' where id=6; -update noar ti set b2='GF9O9W' where id=6; -update noar tt set v0='DUPB' where id=7; -update noar ti set v0='DUPB' where id=7; -update noar tt set b0='0342H1DT' where id=7; -update noar ti set b0='0342H1DT' where id=7; -update noar tt set v0='CCFHHSTSW7R5JFH9OJZGY6' where id=7; -update noar ti set v0='CCFHHSTSW7R5JFH9OJZGY6' where id=7; -update noar tt set b1='IPIH7' where id=7; -update noar ti set b1='IPIH7' where id=7; -update noar tt set v0='CTLXLPUUCKCJ0H7QOLEH7E8' where id=7; -update noar ti set v0='CTLXLPUUCKCJ0H7QOLEH7E8' where id=7; -update noar tt set b2='AUATGUTLUG2UUG5' where id=7; -update noar ti set b2='AUATGUTLUG2UUG5' where id=7; -update noar tt set v0='LQ3KPTKAQL4GMMU0E28XYH' where id=8; -update noar ti set v0='LQ3KPTKAQL4GMMU0E28XYH' where id=8; -update noar tt set b0='O2V' where id=8; -update noar ti set b0='O2V' where id=8; -update noar tt set v0='ZZDDAR0BFVUBKX8JVND1AWZMT' where id=8; -update noar ti set v0='ZZDDAR0BFVUBKX8JVND1AWZMT' where id=8; -update noar tt set b1='YTA1C6K' where id=8; -update noar ti set b1='YTA1C6K' where id=8; -update noar tt set v0='ATJMIRC6E9DPYSBMOYLPG' where id=8; -update noar ti set v0='ATJMIRC6E9DPYSBMOYLPG' where id=8; -update noar tt set b2='OAMZA90FIE4LGI3VO8MF41V' where id=8; -update noar ti set b2='OAMZA90FIE4LGI3VO8MF41V' where id=8; -update noar tt set v0='X4NIW' where id=9; -update noar ti set v0='X4NIW' where id=9; -update noar tt set b0='9N9UOM7OD2Y' where id=9; -update noar ti set b0='9N9UOM7OD2Y' where id=9; -update noar tt set v0='5FTKNURQNRN1L9C5' where id=9; -update noar ti set v0='5FTKNURQNRN1L9C5' where id=9; -update noar tt set b1='PYWNLU2O' where id=9; -update noar ti set b1='PYWNLU2O' where id=9; -update noar tt set v0='CUSL3R0T4ZX13HWHVQZ77FGZ2L' where id=9; -update noar ti set v0='CUSL3R0T4ZX13HWHVQZ77FGZ2L' where id=9; -update noar tt set b2='M00LOB' where id=9; -update noar ti set b2='M00LOB' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -f0 int null, -v0 varchar(32) null, -b0 longblob null, -b1 blob null, -b2 tinyblob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='HP56HAOK' where id=1; -update noar ti set v0='HP56HAOK' where id=1; -update noar tt set b0='G7OLRDEPR5' where id=1; -update noar ti set b0='G7OLRDEPR5' where id=1; -update noar tt set v0='TTIJTJ08I1K5B1GQY8LFP' where id=1; -update noar ti set v0='TTIJTJ08I1K5B1GQY8LFP' where id=1; -update noar tt set b1='6' where id=1; -update noar ti set b1='6' where id=1; -update noar tt set v0='MHGB7T49EQF3M' where id=1; -update noar ti set v0='MHGB7T49EQF3M' where id=1; -update noar tt set b2='6O1ZHDJRLNQM63MO54ODB2WYFBOGPYF9' where id=1; -update noar ti set b2='6O1ZHDJRLNQM63MO54ODB2WYFBOGPYF9' where id=1; -update noar tt set v0='P90QC5LM26OF21JSV6A2136YZ9' where id=2; -update noar ti set v0='P90QC5LM26OF21JSV6A2136YZ9' where id=2; -update noar tt set b0='QECR' where id=2; -update noar ti set b0='QECR' where id=2; -update noar tt set v0='989AOHSSCCMSVGG65' where id=2; -update noar ti set v0='989AOHSSCCMSVGG65' where id=2; -update noar tt set b1='ZQCDRG9FDEWN79E' where id=2; -update noar ti set b1='ZQCDRG9FDEWN79E' where id=2; -update noar tt set v0='WK32FBBR9827K' where id=2; -update noar ti set v0='WK32FBBR9827K' where id=2; -update noar tt set b2='ZT3U0RYHX1H' where id=2; -update noar ti set b2='ZT3U0RYHX1H' where id=2; -update noar tt set v0='G2' where id=3; -update noar ti set v0='G2' where id=3; -update noar tt set b0='0U921ZG' where id=3; -update noar ti set b0='0U921ZG' where id=3; -update noar tt set v0='SJHW7YC8VP1LT4C60XB44OHBYGI6C9' where id=3; -update noar ti set v0='SJHW7YC8VP1LT4C60XB44OHBYGI6C9' where id=3; -update noar tt set b1='GT7CZO' where id=3; -update noar ti set b1='GT7CZO' where id=3; -update noar tt set v0='EMDIIWNNKLPJ8G6HYJIBHP4GO46LP2' where id=3; -update noar ti set v0='EMDIIWNNKLPJ8G6HYJIBHP4GO46LP2' where id=3; -update noar tt set b2='C1MUT9JRB' where id=3; -update noar ti set b2='C1MUT9JRB' where id=3; -update noar tt set v0='84PG8AQZXQ8VK4641GAAXQY1DY' where id=4; -update noar ti set v0='84PG8AQZXQ8VK4641GAAXQY1DY' where id=4; -update noar tt set b0='LJX3BN' where id=4; -update noar ti set b0='LJX3BN' where id=4; -update noar tt set v0='A6XG9' where id=4; -update noar ti set v0='A6XG9' where id=4; -update noar tt set b1='FNTLKKP9MLO81YB11D7EL' where id=4; -update noar ti set b1='FNTLKKP9MLO81YB11D7EL' where id=4; -update noar tt set v0='VX2X33TZ0SWL6LFCL' where id=4; -update noar ti set v0='VX2X33TZ0SWL6LFCL' where id=4; -update noar tt set b2='8DV7LQHXA1M18BGMYOW3R2ZP936AMGS' where id=4; -update noar ti set b2='8DV7LQHXA1M18BGMYOW3R2ZP936AMGS' where id=4; -update noar tt set v0='EB4LMO7AFXFH82QSPA4M' where id=5; -update noar ti set v0='EB4LMO7AFXFH82QSPA4M' where id=5; -update noar tt set b0='UY7V4U2QSC8' where id=5; -update noar ti set b0='UY7V4U2QSC8' where id=5; -update noar tt set v0='JQXOX' where id=5; -update noar ti set v0='JQXOX' where id=5; -update noar tt set b1='5JF27Q2T3T' where id=5; -update noar ti set b1='5JF27Q2T3T' where id=5; -update noar tt set v0='IWGULX' where id=5; -update noar ti set v0='IWGULX' where id=5; -update noar tt set b2='KWCI258S5SZJ7' where id=5; -update noar ti set b2='KWCI258S5SZJ7' where id=5; -update noar tt set v0='YX524FJRZ5LHPU2K1CIQ2FYRR1' where id=6; -update noar ti set v0='YX524FJRZ5LHPU2K1CIQ2FYRR1' where id=6; -update noar tt set b0='6MGQD51' where id=6; -update noar ti set b0='6MGQD51' where id=6; -update noar tt set v0='WDOFFPB' where id=6; -update noar ti set v0='WDOFFPB' where id=6; -update noar tt set b1='ZIYIS33' where id=6; -update noar ti set b1='ZIYIS33' where id=6; -update noar tt set v0='60T0M9TIH0L8C' where id=6; -update noar ti set v0='60T0M9TIH0L8C' where id=6; -update noar tt set b2='AS' where id=6; -update noar ti set b2='AS' where id=6; -update noar tt set v0='JJJM5519IARJY8SND' where id=7; -update noar ti set v0='JJJM5519IARJY8SND' where id=7; -update noar tt set b0='CXG4UTEQD' where id=7; -update noar ti set b0='CXG4UTEQD' where id=7; -update noar tt set v0='J65328RGS0P3O7R02CK6KOQIKZE6D2' where id=7; -update noar ti set v0='J65328RGS0P3O7R02CK6KOQIKZE6D2' where id=7; -update noar tt set b1='DDWYLSBRDEPKWS6JN3H0DCU6TF' where id=7; -update noar ti set b1='DDWYLSBRDEPKWS6JN3H0DCU6TF' where id=7; -update noar tt set v0='YCXHCJT03CLG' where id=7; -update noar ti set v0='YCXHCJT03CLG' where id=7; -update noar tt set b2='UBRWTX0BST0SVF5B3U0WFJ7IDP3CK' where id=7; -update noar ti set b2='UBRWTX0BST0SVF5B3U0WFJ7IDP3CK' where id=7; -update noar tt set v0='OBVOKHC1M7W19J71P3AWL08QA2WY9' where id=8; -update noar ti set v0='OBVOKHC1M7W19J71P3AWL08QA2WY9' where id=8; -update noar tt set b0='4P6LR2YQO97ZUAU25' where id=8; -update noar ti set b0='4P6LR2YQO97ZUAU25' where id=8; -update noar tt set v0='18QYEU7TO2877V7PV7JBZ5YG3O5' where id=8; -update noar ti set v0='18QYEU7TO2877V7PV7JBZ5YG3O5' where id=8; -update noar tt set b1='2ROPMEXK' where id=8; -update noar ti set b1='2ROPMEXK' where id=8; -update noar tt set v0='1' where id=8; -update noar ti set v0='1' where id=8; -update noar tt set b2='1D8WS6RRJUIA8KE22Z0ELO05' where id=8; -update noar ti set b2='1D8WS6RRJUIA8KE22Z0ELO05' where id=8; -update noar tt set v0='KJWIWZ5GU48DQIJK1TWMV2KQGX6SW5' where id=9; -update noar ti set v0='KJWIWZ5GU48DQIJK1TWMV2KQGX6SW5' where id=9; -update noar tt set b0='RJZLE1ODIN6II' where id=9; -update noar ti set b0='RJZLE1ODIN6II' where id=9; -update noar tt set v0='GLT6O4EPVIEX8B4K7R0Z0VGV' where id=9; -update noar ti set v0='GLT6O4EPVIEX8B4K7R0Z0VGV' where id=9; -update noar tt set b1='94DA1ZZN' where id=9; -update noar ti set b1='94DA1ZZN' where id=9; -update noar tt set v0='LMGR9K8KAWEUX' where id=9; -update noar ti set v0='LMGR9K8KAWEUX' where id=9; -update noar tt set b2='NFTKHJX5MTRXV6F2CRT' where id=9; -update noar ti set b2='NFTKHJX5MTRXV6F2CRT' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -f0 int null, -v0 varchar(256) null, -b0 longblob null, -b1 blob null, -b2 tinyblob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='J8HDDAT0LN9KYLOHBC1XRT9V9' where id=1; -update noar ti set v0='J8HDDAT0LN9KYLOHBC1XRT9V9' where id=1; -update noar tt set b0='W1QOJD8JCM9FECU8CQ655' where id=1; -update noar ti set b0='W1QOJD8JCM9FECU8CQ655' where id=1; -update noar tt set v0='L94C1LQE4B451UGJQE5EL5O97MCGR1X6' where id=1; -update noar ti set v0='L94C1LQE4B451UGJQE5EL5O97MCGR1X6' where id=1; -update noar tt set b1='S7H928OA4SD1J98GAB09ODZNVWP21MG3' where id=1; -update noar ti set b1='S7H928OA4SD1J98GAB09ODZNVWP21MG3' where id=1; -update noar tt set v0='DXKWWKDD8YJWUBB4HELE6' where id=1; -update noar ti set v0='DXKWWKDD8YJWUBB4HELE6' where id=1; -update noar tt set b2='H5B1LU9OXOCAO7TXN59GW4AZIU6H' where id=1; -update noar ti set b2='H5B1LU9OXOCAO7TXN59GW4AZIU6H' where id=1; -update noar tt set v0='D5PCCNL' where id=2; -update noar ti set v0='D5PCCNL' where id=2; -update noar tt set b0='WYIM5V289NC31' where id=2; -update noar ti set b0='WYIM5V289NC31' where id=2; -update noar tt set v0='LMSRY6C7PHO31F3OEQONH5KRHW18E' where id=2; -update noar ti set v0='LMSRY6C7PHO31F3OEQONH5KRHW18E' where id=2; -update noar tt set b1='P' where id=2; -update noar ti set b1='P' where id=2; -update noar tt set v0='VTZIN736HITAKZ3' where id=2; -update noar ti set v0='VTZIN736HITAKZ3' where id=2; -update noar tt set b2='BAYX7EZ' where id=2; -update noar ti set b2='BAYX7EZ' where id=2; -update noar tt set v0='9SSDMCAR' where id=3; -update noar ti set v0='9SSDMCAR' where id=3; -update noar tt set b0='7PPU991R8HZGOIX16UG9UMDW9TS9A' where id=3; -update noar ti set b0='7PPU991R8HZGOIX16UG9UMDW9TS9A' where id=3; -update noar tt set v0='QLJRG4AVBDXLFZW2QEJBEWRH1ESE89TV' where id=3; -update noar ti set v0='QLJRG4AVBDXLFZW2QEJBEWRH1ESE89TV' where id=3; -update noar tt set b1='H56B8I5MDLJLH0A15GPDB6F9P3KSJG' where id=3; -update noar ti set b1='H56B8I5MDLJLH0A15GPDB6F9P3KSJG' where id=3; -update noar tt set v0='KNX5OBC' where id=3; -update noar ti set v0='KNX5OBC' where id=3; -update noar tt set b2='9ZQN04AZKMH1VC3JQ' where id=3; -update noar ti set b2='9ZQN04AZKMH1VC3JQ' where id=3; -update noar tt set v0='ZYWZ1P4H' where id=4; -update noar ti set v0='ZYWZ1P4H' where id=4; -update noar tt set b0='42O0JE2XYTYVXN1XQCDZ9R7X' where id=4; -update noar ti set b0='42O0JE2XYTYVXN1XQCDZ9R7X' where id=4; -update noar tt set v0='V14XH3' where id=4; -update noar ti set v0='V14XH3' where id=4; -update noar tt set b1='CXSHF8XXSMQZR962FIKXW809ORTQQO' where id=4; -update noar ti set b1='CXSHF8XXSMQZR962FIKXW809ORTQQO' where id=4; -update noar tt set v0='O2CFTKK667I3M' where id=4; -update noar ti set v0='O2CFTKK667I3M' where id=4; -update noar tt set b2='KJCIZJ7MJP' where id=4; -update noar ti set b2='KJCIZJ7MJP' where id=4; -update noar tt set v0='NYBN7APWVT05L41SI20MM' where id=5; -update noar ti set v0='NYBN7APWVT05L41SI20MM' where id=5; -update noar tt set b0='2FGDIQYVYXOT10UKJOC9D3OCX7FPD8V' where id=5; -update noar ti set b0='2FGDIQYVYXOT10UKJOC9D3OCX7FPD8V' where id=5; -update noar tt set v0='DKP6E5FHHNZFBGA' where id=5; -update noar ti set v0='DKP6E5FHHNZFBGA' where id=5; -update noar tt set b1='VWNGRSAIZ16XJ2GJG2WIY3' where id=5; -update noar ti set b1='VWNGRSAIZ16XJ2GJG2WIY3' where id=5; -update noar tt set v0='HSPLRP64P0V914KX' where id=5; -update noar ti set v0='HSPLRP64P0V914KX' where id=5; -update noar tt set b2='LLM0UUTY6VZUNX' where id=5; -update noar ti set b2='LLM0UUTY6VZUNX' where id=5; -update noar tt set v0='BA6' where id=6; -update noar ti set v0='BA6' where id=6; -update noar tt set b0='OCIB31YBKYQPTC4SA' where id=6; -update noar ti set b0='OCIB31YBKYQPTC4SA' where id=6; -update noar tt set v0='XDPTKWIPLXHKHGOVHE' where id=6; -update noar ti set v0='XDPTKWIPLXHKHGOVHE' where id=6; -update noar tt set b1='WMRL7IPV738' where id=6; -update noar ti set b1='WMRL7IPV738' where id=6; -update noar tt set v0='CWOLZ063TQVSZU5' where id=6; -update noar ti set v0='CWOLZ063TQVSZU5' where id=6; -update noar tt set b2='6C3P7MLWKBMXBNO9Q5Z' where id=6; -update noar ti set b2='6C3P7MLWKBMXBNO9Q5Z' where id=6; -update noar tt set v0='0XGG4CIDTCAKX7KXKZ' where id=7; -update noar ti set v0='0XGG4CIDTCAKX7KXKZ' where id=7; -update noar tt set b0='6JEA2CL7YNEA51TDPLYM9A' where id=7; -update noar ti set b0='6JEA2CL7YNEA51TDPLYM9A' where id=7; -update noar tt set v0='C1B2Q7SBPDK79TFHKYT0C7796RZ8MT' where id=7; -update noar ti set v0='C1B2Q7SBPDK79TFHKYT0C7796RZ8MT' where id=7; -update noar tt set b1='WSTSRGR83WL37RVEKHYPSEF1T' where id=7; -update noar ti set b1='WSTSRGR83WL37RVEKHYPSEF1T' where id=7; -update noar tt set v0='JBRZ9RN8XTKWF' where id=7; -update noar ti set v0='JBRZ9RN8XTKWF' where id=7; -update noar tt set b2='B772S' where id=7; -update noar ti set b2='B772S' where id=7; -update noar tt set v0='EU2VFN23NFBFZK' where id=8; -update noar ti set v0='EU2VFN23NFBFZK' where id=8; -update noar tt set b0='XW0TN' where id=8; -update noar ti set b0='XW0TN' where id=8; -update noar tt set v0='PBHCYP2GSPS7WXZM' where id=8; -update noar ti set v0='PBHCYP2GSPS7WXZM' where id=8; -update noar tt set b1='YLIGT52NNNOOPPAYAECPR9ZQUF' where id=8; -update noar ti set b1='YLIGT52NNNOOPPAYAECPR9ZQUF' where id=8; -update noar tt set v0='1PIW2OPDTXCUSOPGML1' where id=8; -update noar ti set v0='1PIW2OPDTXCUSOPGML1' where id=8; -update noar tt set b2='BSV6Z1' where id=8; -update noar ti set b2='BSV6Z1' where id=8; -update noar tt set v0='CR9CDU75OBQUEA54YLTFMTEZI3I5QGH' where id=9; -update noar ti set v0='CR9CDU75OBQUEA54YLTFMTEZI3I5QGH' where id=9; -update noar tt set b0='UWXHKPP8HC5' where id=9; -update noar ti set b0='UWXHKPP8HC5' where id=9; -update noar tt set v0='WD4ODPZU7172RKH46LH355HF8FWSFN4' where id=9; -update noar ti set v0='WD4ODPZU7172RKH46LH355HF8FWSFN4' where id=9; -update noar tt set b1='A4DV' where id=9; -update noar ti set b1='A4DV' where id=9; -update noar tt set v0='FCKWPCYCVPUPL2ELJ3HU8HX78H8CZH' where id=9; -update noar ti set v0='FCKWPCYCVPUPL2ELJ3HU8HX78H8CZH' where id=9; -update noar tt set b2='1BNRD0KZESJ' where id=9; -update noar ti set b2='1BNRD0KZESJ' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -f0 int not null, -v0 varchar(32) not null, -b0 longblob not null, -b1 blob not null, -b2 tinyblob not null -) engine=tokudb; -insert into tt values (1,0,'','','',''); -insert into tt values (2,0,'','','',''); -insert into tt values (3,0,'','','',''); -insert into tt values (4,0,'','','',''); -insert into tt values (5,0,'','','',''); -insert into tt values (6,0,'','','',''); -insert into tt values (7,0,'','','',''); -insert into tt values (8,0,'','','',''); -insert into tt values (9,0,'','','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='FDMBXMBZHLZ' where id=1; -update noar ti set v0='FDMBXMBZHLZ' where id=1; -update noar tt set b0='IN5' where id=1; -update noar ti set b0='IN5' where id=1; -update noar tt set v0='97RMBKCJ0E0TY7NDLPKCOTE' where id=1; -update noar ti set v0='97RMBKCJ0E0TY7NDLPKCOTE' where id=1; -update noar tt set b1='JC4ICJ1' where id=1; -update noar ti set b1='JC4ICJ1' where id=1; -update noar tt set v0='7LEW2A0GP7LRLR3YXZ7OZ' where id=1; -update noar ti set v0='7LEW2A0GP7LRLR3YXZ7OZ' where id=1; -update noar tt set b2='VV2PJISPDZPI9B1JTU8SYRHTLL3774H' where id=1; -update noar ti set b2='VV2PJISPDZPI9B1JTU8SYRHTLL3774H' where id=1; -update noar tt set v0='9JRHNMIZJYSJ60MNB1HU33KCZAT6' where id=2; -update noar ti set v0='9JRHNMIZJYSJ60MNB1HU33KCZAT6' where id=2; -update noar tt set b0='BDN' where id=2; -update noar ti set b0='BDN' where id=2; -update noar tt set v0='HFKTTJ2P56' where id=2; -update noar ti set v0='HFKTTJ2P56' where id=2; -update noar tt set b1='FQEKIJIAI21LFMVP4VTY9' where id=2; -update noar ti set b1='FQEKIJIAI21LFMVP4VTY9' where id=2; -update noar tt set v0='MTZNEEF9MS7S7' where id=2; -update noar ti set v0='MTZNEEF9MS7S7' where id=2; -update noar tt set b2='OVB2HNAM72VCVORWF' where id=2; -update noar ti set b2='OVB2HNAM72VCVORWF' where id=2; -update noar tt set v0='6YC3' where id=3; -update noar ti set v0='6YC3' where id=3; -update noar tt set b0='Y05G95FY4SE7W3QI6EAMKM6G2' where id=3; -update noar ti set b0='Y05G95FY4SE7W3QI6EAMKM6G2' where id=3; -update noar tt set v0='QIMI8819MFN6FS28I21749AQ5RMQ' where id=3; -update noar ti set v0='QIMI8819MFN6FS28I21749AQ5RMQ' where id=3; -update noar tt set b1='GWKEYWSRSR7Y121Y601DNZQA' where id=3; -update noar ti set b1='GWKEYWSRSR7Y121Y601DNZQA' where id=3; -update noar tt set v0='IVME1J7E4DUFGS8TG' where id=3; -update noar ti set v0='IVME1J7E4DUFGS8TG' where id=3; -update noar tt set b2='KDEIC' where id=3; -update noar ti set b2='KDEIC' where id=3; -update noar tt set v0='H71T' where id=4; -update noar ti set v0='H71T' where id=4; -update noar tt set b0='ULEC8DPS4XVME6L6AX32DY6U7IMJE2F' where id=4; -update noar ti set b0='ULEC8DPS4XVME6L6AX32DY6U7IMJE2F' where id=4; -update noar tt set v0='Y' where id=4; -update noar ti set v0='Y' where id=4; -update noar tt set b1='IBCR8AOPQTK4MFD6OESZ' where id=4; -update noar ti set b1='IBCR8AOPQTK4MFD6OESZ' where id=4; -update noar tt set v0='DTTSM' where id=4; -update noar ti set v0='DTTSM' where id=4; -update noar tt set b2='8JT634KDTKI1ISORGQAXIUS6F8P' where id=4; -update noar ti set b2='8JT634KDTKI1ISORGQAXIUS6F8P' where id=4; -update noar tt set v0='KC1' where id=5; -update noar ti set v0='KC1' where id=5; -update noar tt set b0='IA17F78LYRM838BIY' where id=5; -update noar ti set b0='IA17F78LYRM838BIY' where id=5; -update noar tt set v0='XEY9VFYIBQPCF880Y8DF28VAFMYS51R4' where id=5; -update noar ti set v0='XEY9VFYIBQPCF880Y8DF28VAFMYS51R4' where id=5; -update noar tt set b1='GAR51MMI6D80' where id=5; -update noar ti set b1='GAR51MMI6D80' where id=5; -update noar tt set v0='VVA' where id=5; -update noar ti set v0='VVA' where id=5; -update noar tt set b2='VX86DN8I6DGJWJ2Z4U6F3DMSS6H' where id=5; -update noar ti set b2='VX86DN8I6DGJWJ2Z4U6F3DMSS6H' where id=5; -update noar tt set v0='OF4V1Z3SZPSZ7NICXZE0' where id=6; -update noar ti set v0='OF4V1Z3SZPSZ7NICXZE0' where id=6; -update noar tt set b0='JC681GMG4LY9P2HMW7YJ9Z6Q9QRQF' where id=6; -update noar ti set b0='JC681GMG4LY9P2HMW7YJ9Z6Q9QRQF' where id=6; -update noar tt set v0='3SD1J1IYLFCDD71Z0NMAFXPOSI9YVBQ' where id=6; -update noar ti set v0='3SD1J1IYLFCDD71Z0NMAFXPOSI9YVBQ' where id=6; -update noar tt set b1='ZRNI6TP' where id=6; -update noar ti set b1='ZRNI6TP' where id=6; -update noar tt set v0='Z6R2ZQ014G7I34ZYI2L2W' where id=6; -update noar ti set v0='Z6R2ZQ014G7I34ZYI2L2W' where id=6; -update noar tt set b2='FU69KU5JEDVUP7YP9ECJ4' where id=6; -update noar ti set b2='FU69KU5JEDVUP7YP9ECJ4' where id=6; -update noar tt set v0='OHB6M2CYXQKA7RZ1O' where id=7; -update noar ti set v0='OHB6M2CYXQKA7RZ1O' where id=7; -update noar tt set b0='ZUTA7SWI861CQUECRE38D9A5OI1A' where id=7; -update noar ti set b0='ZUTA7SWI861CQUECRE38D9A5OI1A' where id=7; -update noar tt set v0='2O7SXIVCGXWWRQ12AJJ2P3A' where id=7; -update noar ti set v0='2O7SXIVCGXWWRQ12AJJ2P3A' where id=7; -update noar tt set b1='P261AQYE1NUS5138KQUU072ICEC6RDV' where id=7; -update noar ti set b1='P261AQYE1NUS5138KQUU072ICEC6RDV' where id=7; -update noar tt set v0='W7IY0NVWY784N52IZZ3G0CDFHZQNSWRQ' where id=7; -update noar ti set v0='W7IY0NVWY784N52IZZ3G0CDFHZQNSWRQ' where id=7; -update noar tt set b2='4D8ZX' where id=7; -update noar ti set b2='4D8ZX' where id=7; -update noar tt set v0='LSMG00U26MN2K38' where id=8; -update noar ti set v0='LSMG00U26MN2K38' where id=8; -update noar tt set b0='I0PCB4F1DXL10JI5R28ZIW9I5' where id=8; -update noar ti set b0='I0PCB4F1DXL10JI5R28ZIW9I5' where id=8; -update noar tt set v0='G8FY41LT922HZUT9YJMOFAA' where id=8; -update noar ti set v0='G8FY41LT922HZUT9YJMOFAA' where id=8; -update noar tt set b1='TG27BX3YPYVHVFHJGIIZ' where id=8; -update noar ti set b1='TG27BX3YPYVHVFHJGIIZ' where id=8; -update noar tt set v0='JEVXA' where id=8; -update noar ti set v0='JEVXA' where id=8; -update noar tt set b2='Z9E9YW6GF54ZP' where id=8; -update noar ti set b2='Z9E9YW6GF54ZP' where id=8; -update noar tt set v0='U7IMZ8AZ52GSJMM0IODKASSXNBRUFT' where id=9; -update noar ti set v0='U7IMZ8AZ52GSJMM0IODKASSXNBRUFT' where id=9; -update noar tt set b0='RZPCQSX9B446BLSDNHPH8220IQ4G' where id=9; -update noar ti set b0='RZPCQSX9B446BLSDNHPH8220IQ4G' where id=9; -update noar tt set v0='3A3NVWMQRGGHVL4' where id=9; -update noar ti set v0='3A3NVWMQRGGHVL4' where id=9; -update noar tt set b1='6RDM' where id=9; -update noar ti set b1='6RDM' where id=9; -update noar tt set v0='VW6DCIYMR3R8FV5BEQGF42PRDT' where id=9; -update noar ti set v0='VW6DCIYMR3R8FV5BEQGF42PRDT' where id=9; -update noar tt set b2='2ZTZ4' where id=9; -update noar ti set b2='2ZTZ4' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -f0 int not null, -v0 varchar(256) not null, -b0 longblob not null, -b1 blob not null, -b2 tinyblob not null -) engine=tokudb; -insert into tt values (1,0,'','','',''); -insert into tt values (2,0,'','','',''); -insert into tt values (3,0,'','','',''); -insert into tt values (4,0,'','','',''); -insert into tt values (5,0,'','','',''); -insert into tt values (6,0,'','','',''); -insert into tt values (7,0,'','','',''); -insert into tt values (8,0,'','','',''); -insert into tt values (9,0,'','','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='NK' where id=1; -update noar ti set v0='NK' where id=1; -update noar tt set b0='5YBYPF5S5RU91AWR1R' where id=1; -update noar ti set b0='5YBYPF5S5RU91AWR1R' where id=1; -update noar tt set v0='0UIOY4JXKXHN020SY' where id=1; -update noar ti set v0='0UIOY4JXKXHN020SY' where id=1; -update noar tt set b1='JF4RHRR1W2YX3VZF5QZI1' where id=1; -update noar ti set b1='JF4RHRR1W2YX3VZF5QZI1' where id=1; -update noar tt set v0='ZJOF716TFIJNGO6F7BGP7L' where id=1; -update noar ti set v0='ZJOF716TFIJNGO6F7BGP7L' where id=1; -update noar tt set b2='U9IV' where id=1; -update noar ti set b2='U9IV' where id=1; -update noar tt set v0='WWRKNUY2TJ1GNC35VRZZ0WQ' where id=2; -update noar ti set v0='WWRKNUY2TJ1GNC35VRZZ0WQ' where id=2; -update noar tt set b0='1' where id=2; -update noar ti set b0='1' where id=2; -update noar tt set v0='ZW4615PKVK9' where id=2; -update noar ti set v0='ZW4615PKVK9' where id=2; -update noar tt set b1='WFG47HAX' where id=2; -update noar ti set b1='WFG47HAX' where id=2; -update noar tt set v0='FCYRXWWLLVS858VHO4IFLVO' where id=2; -update noar ti set v0='FCYRXWWLLVS858VHO4IFLVO' where id=2; -update noar tt set b2='QT73T90ZH' where id=2; -update noar ti set b2='QT73T90ZH' where id=2; -update noar tt set v0='WJXPCK19YF8H5BV' where id=3; -update noar ti set v0='WJXPCK19YF8H5BV' where id=3; -update noar tt set b0='PZZ5QG6P69GY9Y56Z5DQB5FC' where id=3; -update noar ti set b0='PZZ5QG6P69GY9Y56Z5DQB5FC' where id=3; -update noar tt set v0='F8KO' where id=3; -update noar ti set v0='F8KO' where id=3; -update noar tt set b1='ZJJPNE' where id=3; -update noar ti set b1='ZJJPNE' where id=3; -update noar tt set v0='M9H3' where id=3; -update noar ti set v0='M9H3' where id=3; -update noar tt set b2='O27R54EKB09GM' where id=3; -update noar ti set b2='O27R54EKB09GM' where id=3; -update noar tt set v0='XV4U9V6PMOO9' where id=4; -update noar ti set v0='XV4U9V6PMOO9' where id=4; -update noar tt set b0='H8XMELGU14DAMBOX3G4' where id=4; -update noar ti set b0='H8XMELGU14DAMBOX3G4' where id=4; -update noar tt set v0='I' where id=4; -update noar ti set v0='I' where id=4; -update noar tt set b1='LOS9JN6AELVWO89FTHMHDQL9QFVZSIA' where id=4; -update noar ti set b1='LOS9JN6AELVWO89FTHMHDQL9QFVZSIA' where id=4; -update noar tt set v0='Q1GYJGEH59S8X9PY8KDB7T' where id=4; -update noar ti set v0='Q1GYJGEH59S8X9PY8KDB7T' where id=4; -update noar tt set b2='55SXRGAVKNZMIAUS75EJQWE9W' where id=4; -update noar ti set b2='55SXRGAVKNZMIAUS75EJQWE9W' where id=4; -update noar tt set v0='NC9G3JGSOW3KL6AU' where id=5; -update noar ti set v0='NC9G3JGSOW3KL6AU' where id=5; -update noar tt set b0='HL7QSN59WQU37AI58S86' where id=5; -update noar ti set b0='HL7QSN59WQU37AI58S86' where id=5; -update noar tt set v0='6NJ' where id=5; -update noar ti set v0='6NJ' where id=5; -update noar tt set b1='E6ZAAGPE3Y0J098YV637ZX962I' where id=5; -update noar ti set b1='E6ZAAGPE3Y0J098YV637ZX962I' where id=5; -update noar tt set v0='ERRPK' where id=5; -update noar ti set v0='ERRPK' where id=5; -update noar tt set b2='69ZWHWL3PS6EQ4UZSB2BV' where id=5; -update noar ti set b2='69ZWHWL3PS6EQ4UZSB2BV' where id=5; -update noar tt set v0='5LQSB8OJ5KBEI9' where id=6; -update noar ti set v0='5LQSB8OJ5KBEI9' where id=6; -update noar tt set b0='KLBOV3YWPGV0AGROTP' where id=6; -update noar ti set b0='KLBOV3YWPGV0AGROTP' where id=6; -update noar tt set v0='7GCDMWD1RGSVDQKV74WLQ36PCOO339T' where id=6; -update noar ti set v0='7GCDMWD1RGSVDQKV74WLQ36PCOO339T' where id=6; -update noar tt set b1='SA7DBBEM03HV3OQF5XWZHKH' where id=6; -update noar ti set b1='SA7DBBEM03HV3OQF5XWZHKH' where id=6; -update noar tt set v0='N8F0O3II8007D1LAE8PPZY4RVXAM0B' where id=6; -update noar ti set v0='N8F0O3II8007D1LAE8PPZY4RVXAM0B' where id=6; -update noar tt set b2='G8TQ7LN4M7V6W9O' where id=6; -update noar ti set b2='G8TQ7LN4M7V6W9O' where id=6; -update noar tt set v0='G5KCL2WEH8T39S0SU5TRTUXQJQQT' where id=7; -update noar ti set v0='G5KCL2WEH8T39S0SU5TRTUXQJQQT' where id=7; -update noar tt set b0='96' where id=7; -update noar ti set b0='96' where id=7; -update noar tt set v0='ZRZJKUDBDF1ZJFRTF2' where id=7; -update noar ti set v0='ZRZJKUDBDF1ZJFRTF2' where id=7; -update noar tt set b1='2LX2DBGEMYYBT' where id=7; -update noar ti set b1='2LX2DBGEMYYBT' where id=7; -update noar tt set v0='QIY4' where id=7; -update noar ti set v0='QIY4' where id=7; -update noar tt set b2='VZ3HD5S57BR1X2CQ9SS2B' where id=7; -update noar ti set b2='VZ3HD5S57BR1X2CQ9SS2B' where id=7; -update noar tt set v0='AY9AXOSF5X2BXE0TXD4F057QT' where id=8; -update noar ti set v0='AY9AXOSF5X2BXE0TXD4F057QT' where id=8; -update noar tt set b0='TR9V7' where id=8; -update noar ti set b0='TR9V7' where id=8; -update noar tt set v0='FAMWRAC2NK5T2EFFLEHYR' where id=8; -update noar ti set v0='FAMWRAC2NK5T2EFFLEHYR' where id=8; -update noar tt set b1='X63PFWT8U4A3VEC04TL66JGAD4GGUDEC' where id=8; -update noar ti set b1='X63PFWT8U4A3VEC04TL66JGAD4GGUDEC' where id=8; -update noar tt set v0='D2W60R' where id=8; -update noar ti set v0='D2W60R' where id=8; -update noar tt set b2='XYX2WR768S0JNN8F3MRH8GO' where id=8; -update noar ti set b2='XYX2WR768S0JNN8F3MRH8GO' where id=8; -update noar tt set v0='V4ISLGA9Z6UP779' where id=9; -update noar ti set v0='V4ISLGA9Z6UP779' where id=9; -update noar tt set b0='M0QVZDDRXZ3T48NTT' where id=9; -update noar ti set b0='M0QVZDDRXZ3T48NTT' where id=9; -update noar tt set v0='YAPOI114LUC0TZ7FKFELBKX6' where id=9; -update noar ti set v0='YAPOI114LUC0TZ7FKFELBKX6' where id=9; -update noar tt set b1='7UA10WXQ0OWFNTX36' where id=9; -update noar ti set b1='7UA10WXQ0OWFNTX36' where id=9; -update noar tt set v0='H24BPAPLR1MW97BRDLZP812' where id=9; -update noar ti set v0='H24BPAPLR1MW97BRDLZP812' where id=9; -update noar tt set b2='0TG1KCTYG8' where id=9; -update noar ti set b2='0TG1KCTYG8' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -f0 int null, -v0 varchar(32) null, -b0 longblob null, -b1 blob null, -b2 blob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='XIMAZBOU80YUH2OQZHQI' where id=1; -update noar ti set v0='XIMAZBOU80YUH2OQZHQI' where id=1; -update noar tt set b0='9H9O410P4G4NA55' where id=1; -update noar ti set b0='9H9O410P4G4NA55' where id=1; -update noar tt set v0='7KAPI2OQG4FRSFSAOB' where id=1; -update noar ti set v0='7KAPI2OQG4FRSFSAOB' where id=1; -update noar tt set b1='HQUY8LR' where id=1; -update noar ti set b1='HQUY8LR' where id=1; -update noar tt set v0='4KC7Q6H15PRGL' where id=1; -update noar ti set v0='4KC7Q6H15PRGL' where id=1; -update noar tt set b2='ZYUXJLYG3LJQXD5QZ3DMEE' where id=1; -update noar ti set b2='ZYUXJLYG3LJQXD5QZ3DMEE' where id=1; -update noar tt set v0='MHWGZ0G3OV4IFHR4PO4F30FNAF' where id=2; -update noar ti set v0='MHWGZ0G3OV4IFHR4PO4F30FNAF' where id=2; -update noar tt set b0='8SI7VOKA' where id=2; -update noar ti set b0='8SI7VOKA' where id=2; -update noar tt set v0='CP8ALTG70GLXRQH1GDGCSCTY9QIN7ML' where id=2; -update noar ti set v0='CP8ALTG70GLXRQH1GDGCSCTY9QIN7ML' where id=2; -update noar tt set b1='6FG5C69J6AB6UE06GU' where id=2; -update noar ti set b1='6FG5C69J6AB6UE06GU' where id=2; -update noar tt set v0='6CQ25HT6JRHB4DA79BAG98IE9KDGPQWY' where id=2; -update noar ti set v0='6CQ25HT6JRHB4DA79BAG98IE9KDGPQWY' where id=2; -update noar tt set b2='YR54MZ7K9' where id=2; -update noar ti set b2='YR54MZ7K9' where id=2; -update noar tt set v0='EDSAD' where id=3; -update noar ti set v0='EDSAD' where id=3; -update noar tt set b0='1HPUTZ73TSO69K' where id=3; -update noar ti set b0='1HPUTZ73TSO69K' where id=3; -update noar tt set v0='QH' where id=3; -update noar ti set v0='QH' where id=3; -update noar tt set b1='HH' where id=3; -update noar ti set b1='HH' where id=3; -update noar tt set v0='WQ2GT9QWSRBPD' where id=3; -update noar ti set v0='WQ2GT9QWSRBPD' where id=3; -update noar tt set b2='BCZU1HB3A0GGW4' where id=3; -update noar ti set b2='BCZU1HB3A0GGW4' where id=3; -update noar tt set v0='MKBZTNJ5VMRWBDRVH8YV2JYB4YDGM4YD' where id=4; -update noar ti set v0='MKBZTNJ5VMRWBDRVH8YV2JYB4YDGM4YD' where id=4; -update noar tt set b0='DWDDVYJR89GF86EF5N1PSETNJDJNN21' where id=4; -update noar ti set b0='DWDDVYJR89GF86EF5N1PSETNJDJNN21' where id=4; -update noar tt set v0='DX5SEFWHLXTOX' where id=4; -update noar ti set v0='DX5SEFWHLXTOX' where id=4; -update noar tt set b1='6AS351N' where id=4; -update noar ti set b1='6AS351N' where id=4; -update noar tt set v0='2WQTUH4QIHG' where id=4; -update noar ti set v0='2WQTUH4QIHG' where id=4; -update noar tt set b2='IUXJNABYS' where id=4; -update noar ti set b2='IUXJNABYS' where id=4; -update noar tt set v0='5X19E59HMI457DP8WOX' where id=5; -update noar ti set v0='5X19E59HMI457DP8WOX' where id=5; -update noar tt set b0='IO' where id=5; -update noar ti set b0='IO' where id=5; -update noar tt set v0='EHF' where id=5; -update noar ti set v0='EHF' where id=5; -update noar tt set b1='IY2IOQURIW0FH2GFEPROFUQJ9T' where id=5; -update noar ti set b1='IY2IOQURIW0FH2GFEPROFUQJ9T' where id=5; -update noar tt set v0='G7ZE2BM21DTN3NJZUZI6YPY' where id=5; -update noar ti set v0='G7ZE2BM21DTN3NJZUZI6YPY' where id=5; -update noar tt set b2='V5TQKW64OIDC2P4' where id=5; -update noar ti set b2='V5TQKW64OIDC2P4' where id=5; -update noar tt set v0='CYIMYZUXG1VVN175LYOS5M3OE0IRJ' where id=6; -update noar ti set v0='CYIMYZUXG1VVN175LYOS5M3OE0IRJ' where id=6; -update noar tt set b0='X95W9JOO8BQDLNZM8SJ3XZTEA' where id=6; -update noar ti set b0='X95W9JOO8BQDLNZM8SJ3XZTEA' where id=6; -update noar tt set v0='08IVW52KJOA5L5XIHM76EW8' where id=6; -update noar ti set v0='08IVW52KJOA5L5XIHM76EW8' where id=6; -update noar tt set b1='DV2Y4ZTEF2KRF9U' where id=6; -update noar ti set b1='DV2Y4ZTEF2KRF9U' where id=6; -update noar tt set v0='PB0E3D062GLQN3ZVWPES729ZL' where id=6; -update noar ti set v0='PB0E3D062GLQN3ZVWPES729ZL' where id=6; -update noar tt set b2='P' where id=6; -update noar ti set b2='P' where id=6; -update noar tt set v0='LZJJZ6A1XDLZV6PMVFG11' where id=7; -update noar ti set v0='LZJJZ6A1XDLZV6PMVFG11' where id=7; -update noar tt set b0='SGVTT8HDR' where id=7; -update noar ti set b0='SGVTT8HDR' where id=7; -update noar tt set v0='J2HF74' where id=7; -update noar ti set v0='J2HF74' where id=7; -update noar tt set b1='P96QZZRO3OCK1D9ZP7B851' where id=7; -update noar ti set b1='P96QZZRO3OCK1D9ZP7B851' where id=7; -update noar tt set v0='RODE3UEF1RFZ9G6YLUV' where id=7; -update noar ti set v0='RODE3UEF1RFZ9G6YLUV' where id=7; -update noar tt set b2='DM0HICD3VL4F21XOUPW' where id=7; -update noar ti set b2='DM0HICD3VL4F21XOUPW' where id=7; -update noar tt set v0='AF' where id=8; -update noar ti set v0='AF' where id=8; -update noar tt set b0='W8FAMBTTVYKVIAYBDO1VEWR' where id=8; -update noar ti set b0='W8FAMBTTVYKVIAYBDO1VEWR' where id=8; -update noar tt set v0='OKML0GZO' where id=8; -update noar ti set v0='OKML0GZO' where id=8; -update noar tt set b1='24PJ60ILWQYYS1EG3TWDLHU' where id=8; -update noar ti set b1='24PJ60ILWQYYS1EG3TWDLHU' where id=8; -update noar tt set v0='JGKL5KU20NMIGSFKKROIJZIJ48KF5NTJ' where id=8; -update noar ti set v0='JGKL5KU20NMIGSFKKROIJZIJ48KF5NTJ' where id=8; -update noar tt set b2='7U4BC' where id=8; -update noar ti set b2='7U4BC' where id=8; -update noar tt set v0='N0G06HDVMA9HP1QPKH0XZ3KP4L' where id=9; -update noar ti set v0='N0G06HDVMA9HP1QPKH0XZ3KP4L' where id=9; -update noar tt set b0='LWFWA74BDCU' where id=9; -update noar ti set b0='LWFWA74BDCU' where id=9; -update noar tt set v0='0JL25MS' where id=9; -update noar ti set v0='0JL25MS' where id=9; -update noar tt set b1='TCJB63E' where id=9; -update noar ti set b1='TCJB63E' where id=9; -update noar tt set v0='GBSUW1X0FV0750OADI9SEBB4ENVTGG' where id=9; -update noar ti set v0='GBSUW1X0FV0750OADI9SEBB4ENVTGG' where id=9; -update noar tt set b2='KY2FK8H3SMZQBQM06FIHOEK6D8Y8' where id=9; -update noar ti set b2='KY2FK8H3SMZQBQM06FIHOEK6D8Y8' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -f0 int null, -v0 varchar(256) null, -b0 longblob null, -b1 blob null, -b2 blob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='IUWBC9Y6QMDXDVYR' where id=1; -update noar ti set v0='IUWBC9Y6QMDXDVYR' where id=1; -update noar tt set b0='3L4O1W6L' where id=1; -update noar ti set b0='3L4O1W6L' where id=1; -update noar tt set v0='L35O' where id=1; -update noar ti set v0='L35O' where id=1; -update noar tt set b1='SGA' where id=1; -update noar ti set b1='SGA' where id=1; -update noar tt set v0='6PJEW3' where id=1; -update noar ti set v0='6PJEW3' where id=1; -update noar tt set b2='ZKJ3' where id=1; -update noar ti set b2='ZKJ3' where id=1; -update noar tt set v0='NEK' where id=2; -update noar ti set v0='NEK' where id=2; -update noar tt set b0='TEYF3TK8AOTDJQ5OE90F57E3H' where id=2; -update noar ti set b0='TEYF3TK8AOTDJQ5OE90F57E3H' where id=2; -update noar tt set v0='8QGW2AB4WQVGWT46YR2YU9R' where id=2; -update noar ti set v0='8QGW2AB4WQVGWT46YR2YU9R' where id=2; -update noar tt set b1='V95RPGER5UOLZWYZTIXQSBS' where id=2; -update noar ti set b1='V95RPGER5UOLZWYZTIXQSBS' where id=2; -update noar tt set v0='T1JE7M' where id=2; -update noar ti set v0='T1JE7M' where id=2; -update noar tt set b2='5TWLNAMCU9H4O9BS40G0L1OB6FB' where id=2; -update noar ti set b2='5TWLNAMCU9H4O9BS40G0L1OB6FB' where id=2; -update noar tt set v0='4JWGCZZW4RNO15YF9CB' where id=3; -update noar ti set v0='4JWGCZZW4RNO15YF9CB' where id=3; -update noar tt set b0='ZY4NSRK9OOZ' where id=3; -update noar ti set b0='ZY4NSRK9OOZ' where id=3; -update noar tt set v0='KZXGF4CQ5TZG7F7NJKO' where id=3; -update noar ti set v0='KZXGF4CQ5TZG7F7NJKO' where id=3; -update noar tt set b1='RSP' where id=3; -update noar ti set b1='RSP' where id=3; -update noar tt set v0='T1ONZ' where id=3; -update noar ti set v0='T1ONZ' where id=3; -update noar tt set b2='28UPM1PV25C1HHNFGP1' where id=3; -update noar ti set b2='28UPM1PV25C1HHNFGP1' where id=3; -update noar tt set v0='R4YKZQORXOYQTS05PWQ' where id=4; -update noar ti set v0='R4YKZQORXOYQTS05PWQ' where id=4; -update noar tt set b0='1R0U' where id=4; -update noar ti set b0='1R0U' where id=4; -update noar tt set v0='YL9FX1GM6XJHJE' where id=4; -update noar ti set v0='YL9FX1GM6XJHJE' where id=4; -update noar tt set b1='FFBSOMJDGFKBV' where id=4; -update noar ti set b1='FFBSOMJDGFKBV' where id=4; -update noar tt set v0='I1H3SFETRWC' where id=4; -update noar ti set v0='I1H3SFETRWC' where id=4; -update noar tt set b2='3YOVBYBZLFTZT5EXVANJ9DN' where id=4; -update noar ti set b2='3YOVBYBZLFTZT5EXVANJ9DN' where id=4; -update noar tt set v0='V' where id=5; -update noar ti set v0='V' where id=5; -update noar tt set b0='ZGWR5KP2LXFIR01TXD5ZPY5' where id=5; -update noar ti set b0='ZGWR5KP2LXFIR01TXD5ZPY5' where id=5; -update noar tt set v0='6SWK1W9S3BK5CZF8DSPNCAM' where id=5; -update noar ti set v0='6SWK1W9S3BK5CZF8DSPNCAM' where id=5; -update noar tt set b1='IXAVX3LYSEV79VRV6MI8FLP' where id=5; -update noar ti set b1='IXAVX3LYSEV79VRV6MI8FLP' where id=5; -update noar tt set v0='21VSAEYY0W' where id=5; -update noar ti set v0='21VSAEYY0W' where id=5; -update noar tt set b2='B6RIHC5GGN0HP1QSLNLH2EJKZR' where id=5; -update noar ti set b2='B6RIHC5GGN0HP1QSLNLH2EJKZR' where id=5; -update noar tt set v0='ISBEVIZ2SMEOSTE67TJ' where id=6; -update noar ti set v0='ISBEVIZ2SMEOSTE67TJ' where id=6; -update noar tt set b0='LXGS6Z82XVIWFJE3JNQD7' where id=6; -update noar ti set b0='LXGS6Z82XVIWFJE3JNQD7' where id=6; -update noar tt set v0='15T30XA0EHLM9Z1BJIVX34NQHCU' where id=6; -update noar ti set v0='15T30XA0EHLM9Z1BJIVX34NQHCU' where id=6; -update noar tt set b1='LNXJQKDJ3X6337S2' where id=6; -update noar ti set b1='LNXJQKDJ3X6337S2' where id=6; -update noar tt set v0='XUHU88Y4J29GADBMDRE' where id=6; -update noar ti set v0='XUHU88Y4J29GADBMDRE' where id=6; -update noar tt set b2='PR7U8X' where id=6; -update noar ti set b2='PR7U8X' where id=6; -update noar tt set v0='B6TBGDHSYG0CCTR' where id=7; -update noar ti set v0='B6TBGDHSYG0CCTR' where id=7; -update noar tt set b0='OHCBQU0FPZNLISDBAXV9VLR6U8P' where id=7; -update noar ti set b0='OHCBQU0FPZNLISDBAXV9VLR6U8P' where id=7; -update noar tt set v0='YU5' where id=7; -update noar ti set v0='YU5' where id=7; -update noar tt set b1='BGMBXSJQMPEFIP6E77KS9N3A37JMJI3' where id=7; -update noar ti set b1='BGMBXSJQMPEFIP6E77KS9N3A37JMJI3' where id=7; -update noar tt set v0='UUMNZ9ZJ23GRRC3PBDXRK5YHEZV' where id=7; -update noar ti set v0='UUMNZ9ZJ23GRRC3PBDXRK5YHEZV' where id=7; -update noar tt set b2='H3X9Q73J53CFAAO45M4A0URJMEPI' where id=7; -update noar ti set b2='H3X9Q73J53CFAAO45M4A0URJMEPI' where id=7; -update noar tt set v0='1' where id=8; -update noar ti set v0='1' where id=8; -update noar tt set b0='V62TI7A1RY3X2GPVGHG9WVHQ5NKUPJ' where id=8; -update noar ti set b0='V62TI7A1RY3X2GPVGHG9WVHQ5NKUPJ' where id=8; -update noar tt set v0='46K37GU404HS0B0U8BLJ445JYNGTW5OF' where id=8; -update noar ti set v0='46K37GU404HS0B0U8BLJ445JYNGTW5OF' where id=8; -update noar tt set b1='A8LJKWUQNRXUQ4J40859X4KH85IT' where id=8; -update noar ti set b1='A8LJKWUQNRXUQ4J40859X4KH85IT' where id=8; -update noar tt set v0='P3CEKKJKZBMQ3OSEE1I' where id=8; -update noar ti set v0='P3CEKKJKZBMQ3OSEE1I' where id=8; -update noar tt set b2='HNCO4R7' where id=8; -update noar ti set b2='HNCO4R7' where id=8; -update noar tt set v0='6SXV0S61XDZJYSZ8NN4RY7D2O76BYY' where id=9; -update noar ti set v0='6SXV0S61XDZJYSZ8NN4RY7D2O76BYY' where id=9; -update noar tt set b0='4D7JHY' where id=9; -update noar ti set b0='4D7JHY' where id=9; -update noar tt set v0='0VOHP79' where id=9; -update noar ti set v0='0VOHP79' where id=9; -update noar tt set b1='1JBM735T9ORWVC5A6BIZWR2Y' where id=9; -update noar ti set b1='1JBM735T9ORWVC5A6BIZWR2Y' where id=9; -update noar tt set v0='GM8IKQPIWI2J8MDTDJVE' where id=9; -update noar ti set v0='GM8IKQPIWI2J8MDTDJVE' where id=9; -update noar tt set b2='ZPM6S7XTS3' where id=9; -update noar ti set b2='ZPM6S7XTS3' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -f0 int not null, -v0 varchar(32) not null, -b0 longblob not null, -b1 blob not null, -b2 blob not null -) engine=tokudb; -insert into tt values (1,0,'','','',''); -insert into tt values (2,0,'','','',''); -insert into tt values (3,0,'','','',''); -insert into tt values (4,0,'','','',''); -insert into tt values (5,0,'','','',''); -insert into tt values (6,0,'','','',''); -insert into tt values (7,0,'','','',''); -insert into tt values (8,0,'','','',''); -insert into tt values (9,0,'','','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='1AF01X3WS227' where id=1; -update noar ti set v0='1AF01X3WS227' where id=1; -update noar tt set b0='1R49AHBWT09IF5HLF5R6KAV' where id=1; -update noar ti set b0='1R49AHBWT09IF5HLF5R6KAV' where id=1; -update noar tt set v0='P0HDP2' where id=1; -update noar ti set v0='P0HDP2' where id=1; -update noar tt set b1='V4ZOBTMDUQSJUIMTX6OGRVV73PK0COX' where id=1; -update noar ti set b1='V4ZOBTMDUQSJUIMTX6OGRVV73PK0COX' where id=1; -update noar tt set v0='BCG9Y1I8X8VGOCNQMH5HH' where id=1; -update noar ti set v0='BCG9Y1I8X8VGOCNQMH5HH' where id=1; -update noar tt set b2='BAL8' where id=1; -update noar ti set b2='BAL8' where id=1; -update noar tt set v0='W6KIP' where id=2; -update noar ti set v0='W6KIP' where id=2; -update noar tt set b0='A1LN2XZW6' where id=2; -update noar ti set b0='A1LN2XZW6' where id=2; -update noar tt set v0='T8OWOMFO8ER645CKXBR4N5J4' where id=2; -update noar ti set v0='T8OWOMFO8ER645CKXBR4N5J4' where id=2; -update noar tt set b1='M65A8F75ZLFATNCGIEJ9BKS' where id=2; -update noar ti set b1='M65A8F75ZLFATNCGIEJ9BKS' where id=2; -update noar tt set v0='2WKZN7' where id=2; -update noar ti set v0='2WKZN7' where id=2; -update noar tt set b2='X2F' where id=2; -update noar ti set b2='X2F' where id=2; -update noar tt set v0='9P13EK0CEVA6SHZQHKV3DN7' where id=3; -update noar ti set v0='9P13EK0CEVA6SHZQHKV3DN7' where id=3; -update noar tt set b0='9W6E78T54GKTFAALZXPH79ONCOYJ' where id=3; -update noar ti set b0='9W6E78T54GKTFAALZXPH79ONCOYJ' where id=3; -update noar tt set v0='LSL8W0AC' where id=3; -update noar ti set v0='LSL8W0AC' where id=3; -update noar tt set b1='XSNNK80QZV5MNFZ2E6623QS' where id=3; -update noar ti set b1='XSNNK80QZV5MNFZ2E6623QS' where id=3; -update noar tt set v0='NHGCAVU9RIWUMN3YC7LQVG' where id=3; -update noar ti set v0='NHGCAVU9RIWUMN3YC7LQVG' where id=3; -update noar tt set b2='L' where id=3; -update noar ti set b2='L' where id=3; -update noar tt set v0='INJGNJQEBMWEIPWVJU0CE8R9B5HXQ' where id=4; -update noar ti set v0='INJGNJQEBMWEIPWVJU0CE8R9B5HXQ' where id=4; -update noar tt set b0='8GI41B8OW7V' where id=4; -update noar ti set b0='8GI41B8OW7V' where id=4; -update noar tt set v0='HHE80S' where id=4; -update noar ti set v0='HHE80S' where id=4; -update noar tt set b1='S' where id=4; -update noar ti set b1='S' where id=4; -update noar tt set v0='IXT6ZVZDZMK0T85YJN45MEG057' where id=4; -update noar ti set v0='IXT6ZVZDZMK0T85YJN45MEG057' where id=4; -update noar tt set b2='R1K2O4FKFMPRJXD6PZCW' where id=4; -update noar ti set b2='R1K2O4FKFMPRJXD6PZCW' where id=4; -update noar tt set v0='8F37QD6Y' where id=5; -update noar ti set v0='8F37QD6Y' where id=5; -update noar tt set b0='XERSA78' where id=5; -update noar ti set b0='XERSA78' where id=5; -update noar tt set v0='J2I1EOVVPK6F7R08H3RVMJ' where id=5; -update noar ti set v0='J2I1EOVVPK6F7R08H3RVMJ' where id=5; -update noar tt set b1='0TJCITGVWSB' where id=5; -update noar ti set b1='0TJCITGVWSB' where id=5; -update noar tt set v0='74FN6VF072SQ2WCCWSLG3PD' where id=5; -update noar ti set v0='74FN6VF072SQ2WCCWSLG3PD' where id=5; -update noar tt set b2='0IKG' where id=5; -update noar ti set b2='0IKG' where id=5; -update noar tt set v0='VA09DG6FN2X61PWLR684YT120V' where id=6; -update noar ti set v0='VA09DG6FN2X61PWLR684YT120V' where id=6; -update noar tt set b0='O10HRJ7R0HXSHN2J7V5' where id=6; -update noar ti set b0='O10HRJ7R0HXSHN2J7V5' where id=6; -update noar tt set v0='4ZRP8BKUT3Q1QEBG' where id=6; -update noar ti set v0='4ZRP8BKUT3Q1QEBG' where id=6; -update noar tt set b1='NLJHW2' where id=6; -update noar ti set b1='NLJHW2' where id=6; -update noar tt set v0='YOCXOS72XX4HO8K7G39UKCE9O' where id=6; -update noar ti set v0='YOCXOS72XX4HO8K7G39UKCE9O' where id=6; -update noar tt set b2='GBV9V4LQSJZ09UMHMEKGLSRJN' where id=6; -update noar ti set b2='GBV9V4LQSJZ09UMHMEKGLSRJN' where id=6; -update noar tt set v0='EVIU5FYHPGJH8WLTPNVFFE1PV' where id=7; -update noar ti set v0='EVIU5FYHPGJH8WLTPNVFFE1PV' where id=7; -update noar tt set b0='LTK177PKH35YPZ9A91' where id=7; -update noar ti set b0='LTK177PKH35YPZ9A91' where id=7; -update noar tt set v0='JMBFPP8Z554VG2VSYENDG' where id=7; -update noar ti set v0='JMBFPP8Z554VG2VSYENDG' where id=7; -update noar tt set b1='HR7JF0B25' where id=7; -update noar ti set b1='HR7JF0B25' where id=7; -update noar tt set v0='DPWFLMRYQHCSD6HDA1IG1UT6SVHU75' where id=7; -update noar ti set v0='DPWFLMRYQHCSD6HDA1IG1UT6SVHU75' where id=7; -update noar tt set b2='VHQ8IUZPUCPHA' where id=7; -update noar ti set b2='VHQ8IUZPUCPHA' where id=7; -update noar tt set v0='6O29JV8UO5HKA6VDNZ1V6Z36X' where id=8; -update noar ti set v0='6O29JV8UO5HKA6VDNZ1V6Z36X' where id=8; -update noar tt set b0='H5LETTK4PYX' where id=8; -update noar ti set b0='H5LETTK4PYX' where id=8; -update noar tt set v0='VYTJ3790LQU8NQYR' where id=8; -update noar ti set v0='VYTJ3790LQU8NQYR' where id=8; -update noar tt set b1='MVSR5HHA4C5AXWQS5GENVVV1B62BWN' where id=8; -update noar ti set b1='MVSR5HHA4C5AXWQS5GENVVV1B62BWN' where id=8; -update noar tt set v0='NKPACDJB' where id=8; -update noar ti set v0='NKPACDJB' where id=8; -update noar tt set b2='YILN1WQ' where id=8; -update noar ti set b2='YILN1WQ' where id=8; -update noar tt set v0='8IJ2AEJQSU1GYNXR9OYSS68X0J1NF' where id=9; -update noar ti set v0='8IJ2AEJQSU1GYNXR9OYSS68X0J1NF' where id=9; -update noar tt set b0='C0YEYJD9CW3CG1UX1EKO470' where id=9; -update noar ti set b0='C0YEYJD9CW3CG1UX1EKO470' where id=9; -update noar tt set v0='7B6SBJ87W5' where id=9; -update noar ti set v0='7B6SBJ87W5' where id=9; -update noar tt set b1='B8FKWM' where id=9; -update noar ti set b1='B8FKWM' where id=9; -update noar tt set v0='V2H3LBB1JLD10C1XPA6T4DHS40NA' where id=9; -update noar ti set v0='V2H3LBB1JLD10C1XPA6T4DHS40NA' where id=9; -update noar tt set b2='G8KDCJRBHAP0AY' where id=9; -update noar ti set b2='G8KDCJRBHAP0AY' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -f0 int not null, -v0 varchar(256) not null, -b0 longblob not null, -b1 blob not null, -b2 blob not null -) engine=tokudb; -insert into tt values (1,0,'','','',''); -insert into tt values (2,0,'','','',''); -insert into tt values (3,0,'','','',''); -insert into tt values (4,0,'','','',''); -insert into tt values (5,0,'','','',''); -insert into tt values (6,0,'','','',''); -insert into tt values (7,0,'','','',''); -insert into tt values (8,0,'','','',''); -insert into tt values (9,0,'','','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='9HIHW2P64KCSIM0' where id=1; -update noar ti set v0='9HIHW2P64KCSIM0' where id=1; -update noar tt set b0='ZGOYY60STTLGSKT9QSZLQ016' where id=1; -update noar ti set b0='ZGOYY60STTLGSKT9QSZLQ016' where id=1; -update noar tt set v0='HSQZ4J2VKO4U' where id=1; -update noar ti set v0='HSQZ4J2VKO4U' where id=1; -update noar tt set b1='O9I191I9DGIXABA' where id=1; -update noar ti set b1='O9I191I9DGIXABA' where id=1; -update noar tt set v0='YTA5XSHN31AE8KDC' where id=1; -update noar ti set v0='YTA5XSHN31AE8KDC' where id=1; -update noar tt set b2='F' where id=1; -update noar ti set b2='F' where id=1; -update noar tt set v0='A3WT1XH4' where id=2; -update noar ti set v0='A3WT1XH4' where id=2; -update noar tt set b0='TOPUAFDME79J8UHW8L9' where id=2; -update noar ti set b0='TOPUAFDME79J8UHW8L9' where id=2; -update noar tt set v0='GEY' where id=2; -update noar ti set v0='GEY' where id=2; -update noar tt set b1='EHK29M241DFY8ZGHCJ4' where id=2; -update noar ti set b1='EHK29M241DFY8ZGHCJ4' where id=2; -update noar tt set v0='91MC94IR9C1JWCQ' where id=2; -update noar ti set v0='91MC94IR9C1JWCQ' where id=2; -update noar tt set b2='99Z186GL74WPV9FFZGF1' where id=2; -update noar ti set b2='99Z186GL74WPV9FFZGF1' where id=2; -update noar tt set v0='I02RJX4AV9XPDDPEGL3Q24' where id=3; -update noar ti set v0='I02RJX4AV9XPDDPEGL3Q24' where id=3; -update noar tt set b0='064766' where id=3; -update noar ti set b0='064766' where id=3; -update noar tt set v0='KO4M0BU57' where id=3; -update noar ti set v0='KO4M0BU57' where id=3; -update noar tt set b1='D7MHSNW' where id=3; -update noar ti set b1='D7MHSNW' where id=3; -update noar tt set v0='5FXAKS9OEW' where id=3; -update noar ti set v0='5FXAKS9OEW' where id=3; -update noar tt set b2='9RXKSRFLL6DK' where id=3; -update noar ti set b2='9RXKSRFLL6DK' where id=3; -update noar tt set v0='5IJ1250RDGKZ8OR' where id=4; -update noar ti set v0='5IJ1250RDGKZ8OR' where id=4; -update noar tt set b0='X6' where id=4; -update noar ti set b0='X6' where id=4; -update noar tt set v0='ABQ28OV1794IZIE8GRIE74SBJP5' where id=4; -update noar ti set v0='ABQ28OV1794IZIE8GRIE74SBJP5' where id=4; -update noar tt set b1='D6FHCAV3A7QJ' where id=4; -update noar ti set b1='D6FHCAV3A7QJ' where id=4; -update noar tt set v0='RVYUOMOXHG3G' where id=4; -update noar ti set v0='RVYUOMOXHG3G' where id=4; -update noar tt set b2='MFJ0N3SHFY' where id=4; -update noar ti set b2='MFJ0N3SHFY' where id=4; -update noar tt set v0='5E9XK8AZJR2QHDW2M217K9UDW4YIMZ93' where id=5; -update noar ti set v0='5E9XK8AZJR2QHDW2M217K9UDW4YIMZ93' where id=5; -update noar tt set b0='3MM1N38' where id=5; -update noar ti set b0='3MM1N38' where id=5; -update noar tt set v0='YIG77DRP1NT7MA70YZNZ' where id=5; -update noar ti set v0='YIG77DRP1NT7MA70YZNZ' where id=5; -update noar tt set b1='HM5VT0VIFMX5' where id=5; -update noar ti set b1='HM5VT0VIFMX5' where id=5; -update noar tt set v0='E44S3M2D7' where id=5; -update noar ti set v0='E44S3M2D7' where id=5; -update noar tt set b2='9KGB9YS547AVWSIW07JVLMT' where id=5; -update noar ti set b2='9KGB9YS547AVWSIW07JVLMT' where id=5; -update noar tt set v0='TFLIRGQORV6S6HMK' where id=6; -update noar ti set v0='TFLIRGQORV6S6HMK' where id=6; -update noar tt set b0='JH0' where id=6; -update noar ti set b0='JH0' where id=6; -update noar tt set v0='SF3TUCQR1JTGU0LXWE1R0DNRHOGTPP8' where id=6; -update noar ti set v0='SF3TUCQR1JTGU0LXWE1R0DNRHOGTPP8' where id=6; -update noar tt set b1='WLUXRR3FE969X574' where id=6; -update noar ti set b1='WLUXRR3FE969X574' where id=6; -update noar tt set v0='AO2' where id=6; -update noar ti set v0='AO2' where id=6; -update noar tt set b2='FK' where id=6; -update noar ti set b2='FK' where id=6; -update noar tt set v0='1O0X7DOSU3CWQXWP5Y74OK7E9MQX' where id=7; -update noar ti set v0='1O0X7DOSU3CWQXWP5Y74OK7E9MQX' where id=7; -update noar tt set b0='RGV6MBE' where id=7; -update noar ti set b0='RGV6MBE' where id=7; -update noar tt set v0='51ZZZA9JI87KLBVKVLQVOQZV9LL8XX62' where id=7; -update noar ti set v0='51ZZZA9JI87KLBVKVLQVOQZV9LL8XX62' where id=7; -update noar tt set b1='LME1J16K3DC0VTDCXM44TW' where id=7; -update noar ti set b1='LME1J16K3DC0VTDCXM44TW' where id=7; -update noar tt set v0='6J4B6ZITB5N6A8YJCJQ1XJPMRSHLI' where id=7; -update noar ti set v0='6J4B6ZITB5N6A8YJCJQ1XJPMRSHLI' where id=7; -update noar tt set b2='GYSIE47ALW8' where id=7; -update noar ti set b2='GYSIE47ALW8' where id=7; -update noar tt set v0='KE' where id=8; -update noar ti set v0='KE' where id=8; -update noar tt set b0='BB8XO8EUNS6GX675FX9GVI' where id=8; -update noar ti set b0='BB8XO8EUNS6GX675FX9GVI' where id=8; -update noar tt set v0='7VZ05FTTP6HMT5BLGOP7LYNXUN4' where id=8; -update noar ti set v0='7VZ05FTTP6HMT5BLGOP7LYNXUN4' where id=8; -update noar tt set b1='K' where id=8; -update noar ti set b1='K' where id=8; -update noar tt set v0='TSFBMY5HR2YHSDT6E559F08J' where id=8; -update noar ti set v0='TSFBMY5HR2YHSDT6E559F08J' where id=8; -update noar tt set b2='HGIQ8168E62PTPD5BFMAIEW' where id=8; -update noar ti set b2='HGIQ8168E62PTPD5BFMAIEW' where id=8; -update noar tt set v0='42XP' where id=9; -update noar ti set v0='42XP' where id=9; -update noar tt set b0='NO4TPSLA6LT' where id=9; -update noar ti set b0='NO4TPSLA6LT' where id=9; -update noar tt set v0='OVJ9MSPPOOA84LA8NUG' where id=9; -update noar ti set v0='OVJ9MSPPOOA84LA8NUG' where id=9; -update noar tt set b1='TE4U' where id=9; -update noar ti set b1='TE4U' where id=9; -update noar tt set v0='PUUGG3UFRZGZ29HMYYY0S7KCQP8LBQ' where id=9; -update noar ti set v0='PUUGG3UFRZGZ29HMYYY0S7KCQP8LBQ' where id=9; -update noar tt set b2='4B5SPQICKSHW93TKJKE8IBB8MJB2YI2S' where id=9; -update noar ti set b2='4B5SPQICKSHW93TKJKE8IBB8MJB2YI2S' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -f0 int null, -v0 varchar(32) null, -b0 longblob null, -b1 blob null, -b2 mediumblob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='GF17L1U1SX3LZMBL72' where id=1; -update noar ti set v0='GF17L1U1SX3LZMBL72' where id=1; -update noar tt set b0='BIXPE4LKQ735CMRFJ8CKEHY0CA8JQ' where id=1; -update noar ti set b0='BIXPE4LKQ735CMRFJ8CKEHY0CA8JQ' where id=1; -update noar tt set v0='VWW0Q' where id=1; -update noar ti set v0='VWW0Q' where id=1; -update noar tt set b1='QHEY4IW47M65KY9' where id=1; -update noar ti set b1='QHEY4IW47M65KY9' where id=1; -update noar tt set v0='2DYGP7345S1BKLKSZRGR9CLCA1DOZE' where id=1; -update noar ti set v0='2DYGP7345S1BKLKSZRGR9CLCA1DOZE' where id=1; -update noar tt set b2='WH5G4TLGEOBCK3X6BZ3CHTFJEZUSHHW' where id=1; -update noar ti set b2='WH5G4TLGEOBCK3X6BZ3CHTFJEZUSHHW' where id=1; -update noar tt set v0='RRGD' where id=2; -update noar ti set v0='RRGD' where id=2; -update noar tt set b0='IM' where id=2; -update noar ti set b0='IM' where id=2; -update noar tt set v0='Y6S1111MTK1NDOZ33RV3OEA1A9' where id=2; -update noar ti set v0='Y6S1111MTK1NDOZ33RV3OEA1A9' where id=2; -update noar tt set b1='T' where id=2; -update noar ti set b1='T' where id=2; -update noar tt set v0='5E3YSZ5D7ZKM2Y8HBTWN20P1F235' where id=2; -update noar ti set v0='5E3YSZ5D7ZKM2Y8HBTWN20P1F235' where id=2; -update noar tt set b2='EAH1Z1NKJFFOSGL4RYQRNARL' where id=2; -update noar ti set b2='EAH1Z1NKJFFOSGL4RYQRNARL' where id=2; -update noar tt set v0='21OE8CJNWI5' where id=3; -update noar ti set v0='21OE8CJNWI5' where id=3; -update noar tt set b0='PDOMXFN73FCT' where id=3; -update noar ti set b0='PDOMXFN73FCT' where id=3; -update noar tt set v0='NZ5TXD3AQDQ' where id=3; -update noar ti set v0='NZ5TXD3AQDQ' where id=3; -update noar tt set b1='ZO0PYX3IF3Q4FP23Z7LGKWNOJNZ3UP8' where id=3; -update noar ti set b1='ZO0PYX3IF3Q4FP23Z7LGKWNOJNZ3UP8' where id=3; -update noar tt set v0='ORJIBHYU9Y238PAKK7C' where id=3; -update noar ti set v0='ORJIBHYU9Y238PAKK7C' where id=3; -update noar tt set b2='H5RD5YWAS8' where id=3; -update noar ti set b2='H5RD5YWAS8' where id=3; -update noar tt set v0='Q19GASNYG9JIAP46IJRBAL1XCW7' where id=4; -update noar ti set v0='Q19GASNYG9JIAP46IJRBAL1XCW7' where id=4; -update noar tt set b0='TWBIUI2Q5BO3LD3RIQC' where id=4; -update noar ti set b0='TWBIUI2Q5BO3LD3RIQC' where id=4; -update noar tt set v0='1SFP' where id=4; -update noar ti set v0='1SFP' where id=4; -update noar tt set b1='X86J3UPKVPZ0PE4W' where id=4; -update noar ti set b1='X86J3UPKVPZ0PE4W' where id=4; -update noar tt set v0='WA890F8YZF968HN' where id=4; -update noar ti set v0='WA890F8YZF968HN' where id=4; -update noar tt set b2='EWS07I9' where id=4; -update noar ti set b2='EWS07I9' where id=4; -update noar tt set v0='169TT2I3RUI7GDBSQT8F48CBI' where id=5; -update noar ti set v0='169TT2I3RUI7GDBSQT8F48CBI' where id=5; -update noar tt set b0='MHWTYHVC8E88QYOY6Z' where id=5; -update noar ti set b0='MHWTYHVC8E88QYOY6Z' where id=5; -update noar tt set v0='V8X1VR71VBZL4U5OGQR6WFHHURAAUF' where id=5; -update noar ti set v0='V8X1VR71VBZL4U5OGQR6WFHHURAAUF' where id=5; -update noar tt set b1='6I3T' where id=5; -update noar ti set b1='6I3T' where id=5; -update noar tt set v0='XN' where id=5; -update noar ti set v0='XN' where id=5; -update noar tt set b2='PZ3NZBKIR0PCSWZWC3VLXU3PTO5AUP' where id=5; -update noar ti set b2='PZ3NZBKIR0PCSWZWC3VLXU3PTO5AUP' where id=5; -update noar tt set v0='DJ2OR7DROVN' where id=6; -update noar ti set v0='DJ2OR7DROVN' where id=6; -update noar tt set b0='I6430XDDKVG627T2CUIX' where id=6; -update noar ti set b0='I6430XDDKVG627T2CUIX' where id=6; -update noar tt set v0='KAAEGP' where id=6; -update noar ti set v0='KAAEGP' where id=6; -update noar tt set b1='5H' where id=6; -update noar ti set b1='5H' where id=6; -update noar tt set v0='VQ14VVOP7U' where id=6; -update noar ti set v0='VQ14VVOP7U' where id=6; -update noar tt set b2='68BW9OMT2WFVC8U0PE77IQCLTSEK5D' where id=6; -update noar ti set b2='68BW9OMT2WFVC8U0PE77IQCLTSEK5D' where id=6; -update noar tt set v0='QMDIF8Z144FMY1J4OUBYBJOEY0ZOY0' where id=7; -update noar ti set v0='QMDIF8Z144FMY1J4OUBYBJOEY0ZOY0' where id=7; -update noar tt set b0='HVW5I3S' where id=7; -update noar ti set b0='HVW5I3S' where id=7; -update noar tt set v0='K9DYRGMR' where id=7; -update noar ti set v0='K9DYRGMR' where id=7; -update noar tt set b1='KP8UAE2WQKDR46SVQ4AVB9O9LXWZSVTB' where id=7; -update noar ti set b1='KP8UAE2WQKDR46SVQ4AVB9O9LXWZSVTB' where id=7; -update noar tt set v0='X' where id=7; -update noar ti set v0='X' where id=7; -update noar tt set b2='OBI72B7V81ADVKN26LVJKWJ6' where id=7; -update noar ti set b2='OBI72B7V81ADVKN26LVJKWJ6' where id=7; -update noar tt set v0='ZDXIBY' where id=8; -update noar ti set v0='ZDXIBY' where id=8; -update noar tt set b0='0LV853A7FHMSQ' where id=8; -update noar ti set b0='0LV853A7FHMSQ' where id=8; -update noar tt set v0='SXSMCIVD9' where id=8; -update noar ti set v0='SXSMCIVD9' where id=8; -update noar tt set b1='6AFPUJCZE7HNH' where id=8; -update noar ti set b1='6AFPUJCZE7HNH' where id=8; -update noar tt set v0='AQIQNPEVRW3BN40DBBSSL9S4PWY9U5N0' where id=8; -update noar ti set v0='AQIQNPEVRW3BN40DBBSSL9S4PWY9U5N0' where id=8; -update noar tt set b2='P06N9D7KMGE9R2CKLFQ8K08H7' where id=8; -update noar ti set b2='P06N9D7KMGE9R2CKLFQ8K08H7' where id=8; -update noar tt set v0='VW23U5K782KC5Y4O9GK552P55C' where id=9; -update noar ti set v0='VW23U5K782KC5Y4O9GK552P55C' where id=9; -update noar tt set b0='ZF' where id=9; -update noar ti set b0='ZF' where id=9; -update noar tt set v0='0KYY7' where id=9; -update noar ti set v0='0KYY7' where id=9; -update noar tt set b1='Q6NKN8TYPGE3FB5265N' where id=9; -update noar ti set b1='Q6NKN8TYPGE3FB5265N' where id=9; -update noar tt set v0='9XR' where id=9; -update noar ti set v0='9XR' where id=9; -update noar tt set b2='Q4RE36AW59CYH' where id=9; -update noar ti set b2='Q4RE36AW59CYH' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -f0 int null, -v0 varchar(256) null, -b0 longblob null, -b1 blob null, -b2 mediumblob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='3S0WWESDHKR4K2WT6QJDUD' where id=1; -update noar ti set v0='3S0WWESDHKR4K2WT6QJDUD' where id=1; -update noar tt set b0='98S345IMCAKXRS78TW57CGSQMV' where id=1; -update noar ti set b0='98S345IMCAKXRS78TW57CGSQMV' where id=1; -update noar tt set v0='LP2B7MV4T39WOGIDDT' where id=1; -update noar ti set v0='LP2B7MV4T39WOGIDDT' where id=1; -update noar tt set b1='T6JI' where id=1; -update noar ti set b1='T6JI' where id=1; -update noar tt set v0='2SQEKQZBACK1C0JCAP12IDTDAGS' where id=1; -update noar ti set v0='2SQEKQZBACK1C0JCAP12IDTDAGS' where id=1; -update noar tt set b2='HBH2TP3YS3X' where id=1; -update noar ti set b2='HBH2TP3YS3X' where id=1; -update noar tt set v0='EFB580L901RLHWFBZFMAD6LDD' where id=2; -update noar ti set v0='EFB580L901RLHWFBZFMAD6LDD' where id=2; -update noar tt set b0='0R' where id=2; -update noar ti set b0='0R' where id=2; -update noar tt set v0='TSLL5J9ABLE5VJ5QWU9DT' where id=2; -update noar ti set v0='TSLL5J9ABLE5VJ5QWU9DT' where id=2; -update noar tt set b1='KSZC3MI418X1X0P4LJRE' where id=2; -update noar ti set b1='KSZC3MI418X1X0P4LJRE' where id=2; -update noar tt set v0='T' where id=2; -update noar ti set v0='T' where id=2; -update noar tt set b2='Q14Z7EY36NPU498XWNSPZZ0RHLJUK' where id=2; -update noar ti set b2='Q14Z7EY36NPU498XWNSPZZ0RHLJUK' where id=2; -update noar tt set v0='2EYU368F9AIF0NHDJIH' where id=3; -update noar ti set v0='2EYU368F9AIF0NHDJIH' where id=3; -update noar tt set b0='R62QJWMOQZGTJ832UVCG25' where id=3; -update noar ti set b0='R62QJWMOQZGTJ832UVCG25' where id=3; -update noar tt set v0='4CQ06TQ' where id=3; -update noar ti set v0='4CQ06TQ' where id=3; -update noar tt set b1='X0H0S121RZCUZOWMM00W' where id=3; -update noar ti set b1='X0H0S121RZCUZOWMM00W' where id=3; -update noar tt set v0='07JPZUIHCF' where id=3; -update noar ti set v0='07JPZUIHCF' where id=3; -update noar tt set b2='O5K2VGGLZ' where id=3; -update noar ti set b2='O5K2VGGLZ' where id=3; -update noar tt set v0='A1PELQZP43WBDFWKYKZCO' where id=4; -update noar ti set v0='A1PELQZP43WBDFWKYKZCO' where id=4; -update noar tt set b0='TT3Q6E3CMRB49183WEDUCX1GUY1JB' where id=4; -update noar ti set b0='TT3Q6E3CMRB49183WEDUCX1GUY1JB' where id=4; -update noar tt set v0='BVZUTKEGUNII55' where id=4; -update noar ti set v0='BVZUTKEGUNII55' where id=4; -update noar tt set b1='QFO7XNDIN3W17DQBKWFELY4SYUTK' where id=4; -update noar ti set b1='QFO7XNDIN3W17DQBKWFELY4SYUTK' where id=4; -update noar tt set v0='GKZGU5XQE70G953153KW' where id=4; -update noar ti set v0='GKZGU5XQE70G953153KW' where id=4; -update noar tt set b2='0UT6VL9YRZ1BQGN2ZDDEND52KCJFIS' where id=4; -update noar ti set b2='0UT6VL9YRZ1BQGN2ZDDEND52KCJFIS' where id=4; -update noar tt set v0='IZ' where id=5; -update noar ti set v0='IZ' where id=5; -update noar tt set b0='PO' where id=5; -update noar ti set b0='PO' where id=5; -update noar tt set v0='IVLTDAOOVSAQ43COLDYYX3DS' where id=5; -update noar ti set v0='IVLTDAOOVSAQ43COLDYYX3DS' where id=5; -update noar tt set b1='LTM2Y7Q' where id=5; -update noar ti set b1='LTM2Y7Q' where id=5; -update noar tt set v0='6ILNNFYIFNPWETFXWWIGBP47X' where id=5; -update noar ti set v0='6ILNNFYIFNPWETFXWWIGBP47X' where id=5; -update noar tt set b2='ZJ9SEVPPPUFS4I' where id=5; -update noar ti set b2='ZJ9SEVPPPUFS4I' where id=5; -update noar tt set v0='3SQ8V1UBKQ78IT1NY6LYU1YUJ376OZWR' where id=6; -update noar ti set v0='3SQ8V1UBKQ78IT1NY6LYU1YUJ376OZWR' where id=6; -update noar tt set b0='BSE6T' where id=6; -update noar ti set b0='BSE6T' where id=6; -update noar tt set v0='SHSX1C95PJQHLU1CZOGSN6UCZLJBJHP' where id=6; -update noar ti set v0='SHSX1C95PJQHLU1CZOGSN6UCZLJBJHP' where id=6; -update noar tt set b1='Y4SSYZOGTV9XROMOTB5' where id=6; -update noar ti set b1='Y4SSYZOGTV9XROMOTB5' where id=6; -update noar tt set v0='F' where id=6; -update noar ti set v0='F' where id=6; -update noar tt set b2='4Z0V' where id=6; -update noar ti set b2='4Z0V' where id=6; -update noar tt set v0='EA8' where id=7; -update noar ti set v0='EA8' where id=7; -update noar tt set b0='02E687JK0K7LGDGAZ8VCQD' where id=7; -update noar ti set b0='02E687JK0K7LGDGAZ8VCQD' where id=7; -update noar tt set v0='2JVD7' where id=7; -update noar ti set v0='2JVD7' where id=7; -update noar tt set b1='829O6NNRJKWVJC3D07MHEWBYSE' where id=7; -update noar ti set b1='829O6NNRJKWVJC3D07MHEWBYSE' where id=7; -update noar tt set v0='CEKZE1U5RFIGD9AI0YW3' where id=7; -update noar ti set v0='CEKZE1U5RFIGD9AI0YW3' where id=7; -update noar tt set b2='EEFYBQ0' where id=7; -update noar ti set b2='EEFYBQ0' where id=7; -update noar tt set v0='6XHZQE03N4ZUCM0VE' where id=8; -update noar ti set v0='6XHZQE03N4ZUCM0VE' where id=8; -update noar tt set b0='YJ95' where id=8; -update noar ti set b0='YJ95' where id=8; -update noar tt set v0='4UEX038RMDJP6MPCHW7' where id=8; -update noar ti set v0='4UEX038RMDJP6MPCHW7' where id=8; -update noar tt set b1='QQ70KCQSVCC1QQUJZ9F6' where id=8; -update noar ti set b1='QQ70KCQSVCC1QQUJZ9F6' where id=8; -update noar tt set v0='NMB2NNIWLG3LVTX' where id=8; -update noar ti set v0='NMB2NNIWLG3LVTX' where id=8; -update noar tt set b2='5IPYW3GJOMUOCT8TPAMYPD' where id=8; -update noar ti set b2='5IPYW3GJOMUOCT8TPAMYPD' where id=8; -update noar tt set v0='56W3KQQQJG19X3MK1FU7693' where id=9; -update noar ti set v0='56W3KQQQJG19X3MK1FU7693' where id=9; -update noar tt set b0='EDJ8VGTE7K6UN0MB7V' where id=9; -update noar ti set b0='EDJ8VGTE7K6UN0MB7V' where id=9; -update noar tt set v0='JIAJQUSNHMO5SFJ9M' where id=9; -update noar ti set v0='JIAJQUSNHMO5SFJ9M' where id=9; -update noar tt set b1='MLV4JJE8VHT6QEAE2BTRD5Z' where id=9; -update noar ti set b1='MLV4JJE8VHT6QEAE2BTRD5Z' where id=9; -update noar tt set v0='IWCFX9FX' where id=9; -update noar ti set v0='IWCFX9FX' where id=9; -update noar tt set b2='OSD77LC4JJWD6RN' where id=9; -update noar ti set b2='OSD77LC4JJWD6RN' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -f0 int not null, -v0 varchar(32) not null, -b0 longblob not null, -b1 blob not null, -b2 mediumblob not null -) engine=tokudb; -insert into tt values (1,0,'','','',''); -insert into tt values (2,0,'','','',''); -insert into tt values (3,0,'','','',''); -insert into tt values (4,0,'','','',''); -insert into tt values (5,0,'','','',''); -insert into tt values (6,0,'','','',''); -insert into tt values (7,0,'','','',''); -insert into tt values (8,0,'','','',''); -insert into tt values (9,0,'','','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='JGKB0Y2UJ' where id=1; -update noar ti set v0='JGKB0Y2UJ' where id=1; -update noar tt set b0='1EJZ4F' where id=1; -update noar ti set b0='1EJZ4F' where id=1; -update noar tt set v0='IPXSVZDVJK' where id=1; -update noar ti set v0='IPXSVZDVJK' where id=1; -update noar tt set b1='X7MGG5VY0C7JM' where id=1; -update noar ti set b1='X7MGG5VY0C7JM' where id=1; -update noar tt set v0='2J4RLDNK09RXS7Q92XUB0CXYUL' where id=1; -update noar ti set v0='2J4RLDNK09RXS7Q92XUB0CXYUL' where id=1; -update noar tt set b2='H0GCJD97' where id=1; -update noar ti set b2='H0GCJD97' where id=1; -update noar tt set v0='DSKHARQ1TPSGP5P2K' where id=2; -update noar ti set v0='DSKHARQ1TPSGP5P2K' where id=2; -update noar tt set b0='UST5EVB0TVB2OU0A8A' where id=2; -update noar ti set b0='UST5EVB0TVB2OU0A8A' where id=2; -update noar tt set v0='H455KF89AVZT' where id=2; -update noar ti set v0='H455KF89AVZT' where id=2; -update noar tt set b1='NBG' where id=2; -update noar ti set b1='NBG' where id=2; -update noar tt set v0='ILZ7WNV9UYBK6VYZDMEM' where id=2; -update noar ti set v0='ILZ7WNV9UYBK6VYZDMEM' where id=2; -update noar tt set b2='YDRIJRSB85QDIN0YMW6ADZ7QQI' where id=2; -update noar ti set b2='YDRIJRSB85QDIN0YMW6ADZ7QQI' where id=2; -update noar tt set v0='SSRBQH' where id=3; -update noar ti set v0='SSRBQH' where id=3; -update noar tt set b0='ZKC6DGD1BV3QC3XJWNJ6F0QFC80' where id=3; -update noar ti set b0='ZKC6DGD1BV3QC3XJWNJ6F0QFC80' where id=3; -update noar tt set v0='TR3E4EOX' where id=3; -update noar ti set v0='TR3E4EOX' where id=3; -update noar tt set b1='UZGN19LO2S50ANQXKJDZODO9' where id=3; -update noar ti set b1='UZGN19LO2S50ANQXKJDZODO9' where id=3; -update noar tt set v0='O3KC3BOJAHY' where id=3; -update noar ti set v0='O3KC3BOJAHY' where id=3; -update noar tt set b2='UEGN7YSGXA6RS842PNGBN9GS502CX' where id=3; -update noar ti set b2='UEGN7YSGXA6RS842PNGBN9GS502CX' where id=3; -update noar tt set v0='H5TPELD' where id=4; -update noar ti set v0='H5TPELD' where id=4; -update noar tt set b0='6B627B1YBSD1M' where id=4; -update noar ti set b0='6B627B1YBSD1M' where id=4; -update noar tt set v0='CXARHVNQD9IYEW9H' where id=4; -update noar ti set v0='CXARHVNQD9IYEW9H' where id=4; -update noar tt set b1='QPP3CFQRY6SI' where id=4; -update noar ti set b1='QPP3CFQRY6SI' where id=4; -update noar tt set v0='82VFOC1N2GK0NFQTTN4WK6' where id=4; -update noar ti set v0='82VFOC1N2GK0NFQTTN4WK6' where id=4; -update noar tt set b2='5VNK' where id=4; -update noar ti set b2='5VNK' where id=4; -update noar tt set v0='WP2CLGWII5KY2NE' where id=5; -update noar ti set v0='WP2CLGWII5KY2NE' where id=5; -update noar tt set b0='3IYOS7L3YJ8323Z1JX3WHCTM0F' where id=5; -update noar ti set b0='3IYOS7L3YJ8323Z1JX3WHCTM0F' where id=5; -update noar tt set v0='C3P4Y6ZT78RPWA72' where id=5; -update noar ti set v0='C3P4Y6ZT78RPWA72' where id=5; -update noar tt set b1='DOI00DZHRR3UX3A63K3Z7GM' where id=5; -update noar ti set b1='DOI00DZHRR3UX3A63K3Z7GM' where id=5; -update noar tt set v0='0C5H4TTNKZHOGJOWR' where id=5; -update noar ti set v0='0C5H4TTNKZHOGJOWR' where id=5; -update noar tt set b2='2HA5DGYHB17G5' where id=5; -update noar ti set b2='2HA5DGYHB17G5' where id=5; -update noar tt set v0='9BWN6Y3' where id=6; -update noar ti set v0='9BWN6Y3' where id=6; -update noar tt set b0='LN9B7A43' where id=6; -update noar ti set b0='LN9B7A43' where id=6; -update noar tt set v0='L7VM8FK1Y7VBEOMO' where id=6; -update noar ti set v0='L7VM8FK1Y7VBEOMO' where id=6; -update noar tt set b1='YUMOW' where id=6; -update noar ti set b1='YUMOW' where id=6; -update noar tt set v0='Z7GK8H7ARENPWJHH83QYRFFB97E6K' where id=6; -update noar ti set v0='Z7GK8H7ARENPWJHH83QYRFFB97E6K' where id=6; -update noar tt set b2='UALSJ' where id=6; -update noar ti set b2='UALSJ' where id=6; -update noar tt set v0='5PJY8KHE4LWLS53YDP' where id=7; -update noar ti set v0='5PJY8KHE4LWLS53YDP' where id=7; -update noar tt set b0='2L50XCEL922NS5AWAJUTLD7NYGUQ' where id=7; -update noar ti set b0='2L50XCEL922NS5AWAJUTLD7NYGUQ' where id=7; -update noar tt set v0='RK0B6DG5E1PN5Q5F3T' where id=7; -update noar ti set v0='RK0B6DG5E1PN5Q5F3T' where id=7; -update noar tt set b1='9XDHHGVUSLEZP' where id=7; -update noar ti set b1='9XDHHGVUSLEZP' where id=7; -update noar tt set v0='NLMCMP5WIC0EQE0GP9AWH45' where id=7; -update noar ti set v0='NLMCMP5WIC0EQE0GP9AWH45' where id=7; -update noar tt set b2='Z0XYU9PX00H1GBUDWE13X' where id=7; -update noar ti set b2='Z0XYU9PX00H1GBUDWE13X' where id=7; -update noar tt set v0='PGMNTSSJW2S8JKRFEKER0V2906JL14L' where id=8; -update noar ti set v0='PGMNTSSJW2S8JKRFEKER0V2906JL14L' where id=8; -update noar tt set b0='6A1Z4H33S' where id=8; -update noar ti set b0='6A1Z4H33S' where id=8; -update noar tt set v0='RJ9CY' where id=8; -update noar ti set v0='RJ9CY' where id=8; -update noar tt set b1='TOZX3PRA38J802U0A3WCEV' where id=8; -update noar ti set b1='TOZX3PRA38J802U0A3WCEV' where id=8; -update noar tt set v0='4UOKAYJ77U7GZJ5FW2HBT0014UB' where id=8; -update noar ti set v0='4UOKAYJ77U7GZJ5FW2HBT0014UB' where id=8; -update noar tt set b2='3YDUVXCHZ3EL9ZRMORV208XUS55' where id=8; -update noar ti set b2='3YDUVXCHZ3EL9ZRMORV208XUS55' where id=8; -update noar tt set v0='ZIF3GSX5DZ2NRQO49G' where id=9; -update noar ti set v0='ZIF3GSX5DZ2NRQO49G' where id=9; -update noar tt set b0='Q32P6M959NECCWAU2CSE' where id=9; -update noar ti set b0='Q32P6M959NECCWAU2CSE' where id=9; -update noar tt set v0='9B8TGX78IC10HEPR1Y24WQOQEL8' where id=9; -update noar ti set v0='9B8TGX78IC10HEPR1Y24WQOQEL8' where id=9; -update noar tt set b1='5F117LFBRUG231EQ' where id=9; -update noar ti set b1='5F117LFBRUG231EQ' where id=9; -update noar tt set v0='4' where id=9; -update noar ti set v0='4' where id=9; -update noar tt set b2='25IKV' where id=9; -update noar ti set b2='25IKV' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -f0 int not null, -v0 varchar(256) not null, -b0 longblob not null, -b1 blob not null, -b2 mediumblob not null -) engine=tokudb; -insert into tt values (1,0,'','','',''); -insert into tt values (2,0,'','','',''); -insert into tt values (3,0,'','','',''); -insert into tt values (4,0,'','','',''); -insert into tt values (5,0,'','','',''); -insert into tt values (6,0,'','','',''); -insert into tt values (7,0,'','','',''); -insert into tt values (8,0,'','','',''); -insert into tt values (9,0,'','','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='FTO2NVMQRDWT7WKZU6LWJDWKKLKTI' where id=1; -update noar ti set v0='FTO2NVMQRDWT7WKZU6LWJDWKKLKTI' where id=1; -update noar tt set b0='RMLALBMZZ1' where id=1; -update noar ti set b0='RMLALBMZZ1' where id=1; -update noar tt set v0='QZ3W00BE07FX82AO58YDQ2C' where id=1; -update noar ti set v0='QZ3W00BE07FX82AO58YDQ2C' where id=1; -update noar tt set b1='D2M4A1KF6RMU4XO9FEM8PXQ21OC5' where id=1; -update noar ti set b1='D2M4A1KF6RMU4XO9FEM8PXQ21OC5' where id=1; -update noar tt set v0='7' where id=1; -update noar ti set v0='7' where id=1; -update noar tt set b2='ZYP4DTZK9UBXKWYKKTA' where id=1; -update noar ti set b2='ZYP4DTZK9UBXKWYKKTA' where id=1; -update noar tt set v0='97OOXX3HDOG23LX1FM0VO' where id=2; -update noar ti set v0='97OOXX3HDOG23LX1FM0VO' where id=2; -update noar tt set b0='R5QX46G5M' where id=2; -update noar ti set b0='R5QX46G5M' where id=2; -update noar tt set v0='VMG79OX2A4HTCO8INP3SDHCR9ZGAL' where id=2; -update noar ti set v0='VMG79OX2A4HTCO8INP3SDHCR9ZGAL' where id=2; -update noar tt set b1='R' where id=2; -update noar ti set b1='R' where id=2; -update noar tt set v0='7DUXG95GKWEPVQMTM' where id=2; -update noar ti set v0='7DUXG95GKWEPVQMTM' where id=2; -update noar tt set b2='XGXKA3OHOTFA2PMHD3Q1HO4KCGNE' where id=2; -update noar ti set b2='XGXKA3OHOTFA2PMHD3Q1HO4KCGNE' where id=2; -update noar tt set v0='7PZ4Z15KA4PQKMWYQ1JHHPNRM1P9' where id=3; -update noar ti set v0='7PZ4Z15KA4PQKMWYQ1JHHPNRM1P9' where id=3; -update noar tt set b0='CYVMM5QZQT4QXOXAHYCZL' where id=3; -update noar ti set b0='CYVMM5QZQT4QXOXAHYCZL' where id=3; -update noar tt set v0='IXXL1Z8AG1H58W1EO03S2SWSRNPJ96' where id=3; -update noar ti set v0='IXXL1Z8AG1H58W1EO03S2SWSRNPJ96' where id=3; -update noar tt set b1='IAZ21JZUZ30GXWFLTKNNX' where id=3; -update noar ti set b1='IAZ21JZUZ30GXWFLTKNNX' where id=3; -update noar tt set v0='FMI' where id=3; -update noar ti set v0='FMI' where id=3; -update noar tt set b2='R4CUILU2BYAKFYMDLV' where id=3; -update noar ti set b2='R4CUILU2BYAKFYMDLV' where id=3; -update noar tt set v0='P1S0APBNU' where id=4; -update noar ti set v0='P1S0APBNU' where id=4; -update noar tt set b0='LGCSDOY6909' where id=4; -update noar ti set b0='LGCSDOY6909' where id=4; -update noar tt set v0='XQQUM2C5UQTA0SFB' where id=4; -update noar ti set v0='XQQUM2C5UQTA0SFB' where id=4; -update noar tt set b1='ZK4XUNF9WQNO' where id=4; -update noar ti set b1='ZK4XUNF9WQNO' where id=4; -update noar tt set v0='FE3E91PYNGTFCDV523H9QECK2UV5R9C' where id=4; -update noar ti set v0='FE3E91PYNGTFCDV523H9QECK2UV5R9C' where id=4; -update noar tt set b2='YR2J0YXK0Q' where id=4; -update noar ti set b2='YR2J0YXK0Q' where id=4; -update noar tt set v0='GIM78IORLAV2CVJ3YKKJPZD6I85' where id=5; -update noar ti set v0='GIM78IORLAV2CVJ3YKKJPZD6I85' where id=5; -update noar tt set b0='2SYOY1GLX3S6QXT1G87ZP' where id=5; -update noar ti set b0='2SYOY1GLX3S6QXT1G87ZP' where id=5; -update noar tt set v0='8BBW5JB0XDFQOSBT7655LOVU' where id=5; -update noar ti set v0='8BBW5JB0XDFQOSBT7655LOVU' where id=5; -update noar tt set b1='OKU84Q1QXHOSHYA' where id=5; -update noar ti set b1='OKU84Q1QXHOSHYA' where id=5; -update noar tt set v0='WUZKBYF0MJF9LY0Z7MW9B1SDTGG' where id=5; -update noar ti set v0='WUZKBYF0MJF9LY0Z7MW9B1SDTGG' where id=5; -update noar tt set b2='972R8P3BIB5G9UYJUQGBFO' where id=5; -update noar ti set b2='972R8P3BIB5G9UYJUQGBFO' where id=5; -update noar tt set v0='8V8V6PC9PAXGYF0Y2' where id=6; -update noar ti set v0='8V8V6PC9PAXGYF0Y2' where id=6; -update noar tt set b0='YENZ2TPH4Q3KSPA' where id=6; -update noar ti set b0='YENZ2TPH4Q3KSPA' where id=6; -update noar tt set v0='UWE' where id=6; -update noar ti set v0='UWE' where id=6; -update noar tt set b1='3EM30LIF4DWVC6PORYPB5EJL7XQ2V0M3' where id=6; -update noar ti set b1='3EM30LIF4DWVC6PORYPB5EJL7XQ2V0M3' where id=6; -update noar tt set v0='2SGNX5XBWKIBTTVH' where id=6; -update noar ti set v0='2SGNX5XBWKIBTTVH' where id=6; -update noar tt set b2='MX9WN14U2CVRTMGV0WHYSU1E' where id=6; -update noar ti set b2='MX9WN14U2CVRTMGV0WHYSU1E' where id=6; -update noar tt set v0='2VCUJMG3RMFRVH1KT22AC8HTD5W5NZ' where id=7; -update noar ti set v0='2VCUJMG3RMFRVH1KT22AC8HTD5W5NZ' where id=7; -update noar tt set b0='JS' where id=7; -update noar ti set b0='JS' where id=7; -update noar tt set v0='B2P267OQ1MAS3WU3U' where id=7; -update noar ti set v0='B2P267OQ1MAS3WU3U' where id=7; -update noar tt set b1='NOTIEHG55AEFI2WMV6JC76EZ' where id=7; -update noar ti set b1='NOTIEHG55AEFI2WMV6JC76EZ' where id=7; -update noar tt set v0='1LPSBB0' where id=7; -update noar ti set v0='1LPSBB0' where id=7; -update noar tt set b2='6TNNQHEHZYRPDWOZANBDHQDFJ3WDK7' where id=7; -update noar ti set b2='6TNNQHEHZYRPDWOZANBDHQDFJ3WDK7' where id=7; -update noar tt set v0='KG0JWNVUQ722399VHTV7YOA' where id=8; -update noar ti set v0='KG0JWNVUQ722399VHTV7YOA' where id=8; -update noar tt set b0='3Q76OP' where id=8; -update noar ti set b0='3Q76OP' where id=8; -update noar tt set v0='RBKDSTAI6' where id=8; -update noar ti set v0='RBKDSTAI6' where id=8; -update noar tt set b1='35PG77PKUUYWNG9GP7JMJD3' where id=8; -update noar ti set b1='35PG77PKUUYWNG9GP7JMJD3' where id=8; -update noar tt set v0='23EYCUMEU0AVHTLVS' where id=8; -update noar ti set v0='23EYCUMEU0AVHTLVS' where id=8; -update noar tt set b2='CW5F' where id=8; -update noar ti set b2='CW5F' where id=8; -update noar tt set v0='IZHLGIXARP' where id=9; -update noar ti set v0='IZHLGIXARP' where id=9; -update noar tt set b0='D6M81TBG0EJYQAECGJJ66FI6OUZMCY0' where id=9; -update noar ti set b0='D6M81TBG0EJYQAECGJJ66FI6OUZMCY0' where id=9; -update noar tt set v0='B1OLWPNGSEKHVF0O29' where id=9; -update noar ti set v0='B1OLWPNGSEKHVF0O29' where id=9; -update noar tt set b1='QQAMNZCS56W1XEY' where id=9; -update noar ti set b1='QQAMNZCS56W1XEY' where id=9; -update noar tt set v0='GSQP8AZFADL1CR0FMFOLB' where id=9; -update noar ti set v0='GSQP8AZFADL1CR0FMFOLB' where id=9; -update noar tt set b2='3LQYU9W5Z61LITFHR' where id=9; -update noar ti set b2='3LQYU9W5Z61LITFHR' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -f0 int null, -v0 varchar(32) null, -b0 longblob null, -b1 blob null, -b2 longblob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='YONYM18' where id=1; -update noar ti set v0='YONYM18' where id=1; -update noar tt set b0='AI0QWE8N05I' where id=1; -update noar ti set b0='AI0QWE8N05I' where id=1; -update noar tt set v0='QLUZKSOOS56V' where id=1; -update noar ti set v0='QLUZKSOOS56V' where id=1; -update noar tt set b1='2U8JCISQB714A7YD11WK' where id=1; -update noar ti set b1='2U8JCISQB714A7YD11WK' where id=1; -update noar tt set v0='CATCGHN' where id=1; -update noar ti set v0='CATCGHN' where id=1; -update noar tt set b2='5KYO69AU9BOFGTUNPGUBALY' where id=1; -update noar ti set b2='5KYO69AU9BOFGTUNPGUBALY' where id=1; -update noar tt set v0='R' where id=2; -update noar ti set v0='R' where id=2; -update noar tt set b0='TGJYF6U40KSAC8UETFEX8H' where id=2; -update noar ti set b0='TGJYF6U40KSAC8UETFEX8H' where id=2; -update noar tt set v0='K7ZY5X8OWZAX' where id=2; -update noar ti set v0='K7ZY5X8OWZAX' where id=2; -update noar tt set b1='4GFVEME5YM4IV1ABHX8O2XS6056Z84' where id=2; -update noar ti set b1='4GFVEME5YM4IV1ABHX8O2XS6056Z84' where id=2; -update noar tt set v0='15XOYTMCQ' where id=2; -update noar ti set v0='15XOYTMCQ' where id=2; -update noar tt set b2='NSLY879L8AIZF2WX' where id=2; -update noar ti set b2='NSLY879L8AIZF2WX' where id=2; -update noar tt set v0='DNVTNZID4' where id=3; -update noar ti set v0='DNVTNZID4' where id=3; -update noar tt set b0='C1ZSLVL0MXY36RA' where id=3; -update noar ti set b0='C1ZSLVL0MXY36RA' where id=3; -update noar tt set v0='1PMFMNMY' where id=3; -update noar ti set v0='1PMFMNMY' where id=3; -update noar tt set b1='SM07010J6QPHP' where id=3; -update noar ti set b1='SM07010J6QPHP' where id=3; -update noar tt set v0='RIVP8IA08FPWSAN1WS' where id=3; -update noar ti set v0='RIVP8IA08FPWSAN1WS' where id=3; -update noar tt set b2='Q9UBZZ6KKNO45' where id=3; -update noar ti set b2='Q9UBZZ6KKNO45' where id=3; -update noar tt set v0='XTRFC869O8BNJKAPA03OK372JB' where id=4; -update noar ti set v0='XTRFC869O8BNJKAPA03OK372JB' where id=4; -update noar tt set b0='A6P23P5KVI1K3PEULJ' where id=4; -update noar ti set b0='A6P23P5KVI1K3PEULJ' where id=4; -update noar tt set v0='D6B28WGE' where id=4; -update noar ti set v0='D6B28WGE' where id=4; -update noar tt set b1='CU42ITSWPX' where id=4; -update noar ti set b1='CU42ITSWPX' where id=4; -update noar tt set v0='27WF9TOUI4FG52WGIXIG' where id=4; -update noar ti set v0='27WF9TOUI4FG52WGIXIG' where id=4; -update noar tt set b2='DUNRJYBKHPJWWX1K4IFMQJ9PM266Y' where id=4; -update noar ti set b2='DUNRJYBKHPJWWX1K4IFMQJ9PM266Y' where id=4; -update noar tt set v0='TDWHWPT1J4JYOI8' where id=5; -update noar ti set v0='TDWHWPT1J4JYOI8' where id=5; -update noar tt set b0='XD9H09BGNV9WTWKV6N4J67HL5' where id=5; -update noar ti set b0='XD9H09BGNV9WTWKV6N4J67HL5' where id=5; -update noar tt set v0='IKP2SJ' where id=5; -update noar ti set v0='IKP2SJ' where id=5; -update noar tt set b1='P52QQ02DYEZ57' where id=5; -update noar ti set b1='P52QQ02DYEZ57' where id=5; -update noar tt set v0='HNKJ1IEV4Y3NHHX2WG' where id=5; -update noar ti set v0='HNKJ1IEV4Y3NHHX2WG' where id=5; -update noar tt set b2='WI4IZFGLWN5QFG3' where id=5; -update noar ti set b2='WI4IZFGLWN5QFG3' where id=5; -update noar tt set v0='M5XVPJ04XXIOJ4S1' where id=6; -update noar ti set v0='M5XVPJ04XXIOJ4S1' where id=6; -update noar tt set b0='3VF5DDS8KPOZR5A85SM49JM1EZRTK8P' where id=6; -update noar ti set b0='3VF5DDS8KPOZR5A85SM49JM1EZRTK8P' where id=6; -update noar tt set v0='5D7JM' where id=6; -update noar ti set v0='5D7JM' where id=6; -update noar tt set b1='AQBXXPX7C110IDEXHH5' where id=6; -update noar ti set b1='AQBXXPX7C110IDEXHH5' where id=6; -update noar tt set v0='39ZLEVXA8HX37FBLIUU' where id=6; -update noar ti set v0='39ZLEVXA8HX37FBLIUU' where id=6; -update noar tt set b2='7KVP4NELFMNOZBUKRRNV3828GVT3' where id=6; -update noar ti set b2='7KVP4NELFMNOZBUKRRNV3828GVT3' where id=6; -update noar tt set v0='Z09T7DRWMGHAICKJJPPN0DIG2GA' where id=7; -update noar ti set v0='Z09T7DRWMGHAICKJJPPN0DIG2GA' where id=7; -update noar tt set b0='S9THXU9UZR14393V3J' where id=7; -update noar ti set b0='S9THXU9UZR14393V3J' where id=7; -update noar tt set v0='7' where id=7; -update noar ti set v0='7' where id=7; -update noar tt set b1='N7A9QKAKI565RW0ECJ85SJKGTN' where id=7; -update noar ti set b1='N7A9QKAKI565RW0ECJ85SJKGTN' where id=7; -update noar tt set v0='CHOSPO4IRCRDVM0LRECY' where id=7; -update noar ti set v0='CHOSPO4IRCRDVM0LRECY' where id=7; -update noar tt set b2='53KJJP4JM6KXQC2RJ1A6' where id=7; -update noar ti set b2='53KJJP4JM6KXQC2RJ1A6' where id=7; -update noar tt set v0='MP7YRS37FMJ1' where id=8; -update noar ti set v0='MP7YRS37FMJ1' where id=8; -update noar tt set b0='K' where id=8; -update noar ti set b0='K' where id=8; -update noar tt set v0='L8WFI1YNJ' where id=8; -update noar ti set v0='L8WFI1YNJ' where id=8; -update noar tt set b1='ZZXY2SD2EZTMZXM8ZPKCW04' where id=8; -update noar ti set b1='ZZXY2SD2EZTMZXM8ZPKCW04' where id=8; -update noar tt set v0='2GBIZMPN86LRDVA3SSHBKZ6B' where id=8; -update noar ti set v0='2GBIZMPN86LRDVA3SSHBKZ6B' where id=8; -update noar tt set b2='PHWAPRHKJHVJFU61VC' where id=8; -update noar ti set b2='PHWAPRHKJHVJFU61VC' where id=8; -update noar tt set v0='J1LR6T4RDXR58D6WJC5UBW4ZXBGN' where id=9; -update noar ti set v0='J1LR6T4RDXR58D6WJC5UBW4ZXBGN' where id=9; -update noar tt set b0='23QDE7DNP9MJX9NER4MAOJX5U5NFQH7B' where id=9; -update noar ti set b0='23QDE7DNP9MJX9NER4MAOJX5U5NFQH7B' where id=9; -update noar tt set v0='HZJAZDYSHQ24O5GARXIFE795ZUTZ6HBC' where id=9; -update noar ti set v0='HZJAZDYSHQ24O5GARXIFE795ZUTZ6HBC' where id=9; -update noar tt set b1='P4FBPYO8ASE6XD6JVZ' where id=9; -update noar ti set b1='P4FBPYO8ASE6XD6JVZ' where id=9; -update noar tt set v0='DPG9BR0RF3768OV1GZVZ8440WH' where id=9; -update noar ti set v0='DPG9BR0RF3768OV1GZVZ8440WH' where id=9; -update noar tt set b2='5NDSYFRC9V1UZV' where id=9; -update noar ti set b2='5NDSYFRC9V1UZV' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -f0 int null, -v0 varchar(256) null, -b0 longblob null, -b1 blob null, -b2 longblob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='Z14GAEOUESAUR3K28KN' where id=1; -update noar ti set v0='Z14GAEOUESAUR3K28KN' where id=1; -update noar tt set b0='B9MAEXFNN2Z' where id=1; -update noar ti set b0='B9MAEXFNN2Z' where id=1; -update noar tt set v0='XI8FG328ASUUDNEL395WH9E' where id=1; -update noar ti set v0='XI8FG328ASUUDNEL395WH9E' where id=1; -update noar tt set b1='KB78MOSXXMHBZURL' where id=1; -update noar ti set b1='KB78MOSXXMHBZURL' where id=1; -update noar tt set v0='MFNTOWT1SNC4X366MZ8OIQ4SM' where id=1; -update noar ti set v0='MFNTOWT1SNC4X366MZ8OIQ4SM' where id=1; -update noar tt set b2='RZ0R8BR90MLLN4BKBB' where id=1; -update noar ti set b2='RZ0R8BR90MLLN4BKBB' where id=1; -update noar tt set v0='N9O01' where id=2; -update noar ti set v0='N9O01' where id=2; -update noar tt set b0='3OPTL2H3HQ8A1URVG07' where id=2; -update noar ti set b0='3OPTL2H3HQ8A1URVG07' where id=2; -update noar tt set v0='EKTHJUE76PWUJSDUZ7DT9Y' where id=2; -update noar ti set v0='EKTHJUE76PWUJSDUZ7DT9Y' where id=2; -update noar tt set b1='01R2TC8H6EGQJ67N5DWG9KQARBYBF4V' where id=2; -update noar ti set b1='01R2TC8H6EGQJ67N5DWG9KQARBYBF4V' where id=2; -update noar tt set v0='Y2MABJNHO4LN0X3GW7RU7VDS' where id=2; -update noar ti set v0='Y2MABJNHO4LN0X3GW7RU7VDS' where id=2; -update noar tt set b2='OF4OHJHNE65TDWC375VO3I' where id=2; -update noar ti set b2='OF4OHJHNE65TDWC375VO3I' where id=2; -update noar tt set v0='Z' where id=3; -update noar ti set v0='Z' where id=3; -update noar tt set b0='FEDDVZHGKKNOT3FUPS' where id=3; -update noar ti set b0='FEDDVZHGKKNOT3FUPS' where id=3; -update noar tt set v0='5CZ7J1B5URMY93CP6M9MO5IDRI4X' where id=3; -update noar ti set v0='5CZ7J1B5URMY93CP6M9MO5IDRI4X' where id=3; -update noar tt set b1='NAMG0TOBWBW2IP38J' where id=3; -update noar ti set b1='NAMG0TOBWBW2IP38J' where id=3; -update noar tt set v0='6OW03S1HJ8VH7L' where id=3; -update noar ti set v0='6OW03S1HJ8VH7L' where id=3; -update noar tt set b2='NT3T2G7HDX828PJUKV2OOSNX0' where id=3; -update noar ti set b2='NT3T2G7HDX828PJUKV2OOSNX0' where id=3; -update noar tt set v0='DAEAH8C0AIKJM4N01LQEUAN87B' where id=4; -update noar ti set v0='DAEAH8C0AIKJM4N01LQEUAN87B' where id=4; -update noar tt set b0='VIF4OQ71GD1C0K3' where id=4; -update noar ti set b0='VIF4OQ71GD1C0K3' where id=4; -update noar tt set v0='1E6NOEWBLQJ0ZXGST' where id=4; -update noar ti set v0='1E6NOEWBLQJ0ZXGST' where id=4; -update noar tt set b1='M1GZUS4KW9CM2P' where id=4; -update noar ti set b1='M1GZUS4KW9CM2P' where id=4; -update noar tt set v0='M4LEX8O8295OL54QJL' where id=4; -update noar ti set v0='M4LEX8O8295OL54QJL' where id=4; -update noar tt set b2='K5GYGGL6YP8J' where id=4; -update noar ti set b2='K5GYGGL6YP8J' where id=4; -update noar tt set v0='5YRVUOR5MF3D9' where id=5; -update noar ti set v0='5YRVUOR5MF3D9' where id=5; -update noar tt set b0='IOL4O' where id=5; -update noar ti set b0='IOL4O' where id=5; -update noar tt set v0='90I99KWXQSJYCGMMO6H7R1CO61NH' where id=5; -update noar ti set v0='90I99KWXQSJYCGMMO6H7R1CO61NH' where id=5; -update noar tt set b1='87YP56QR318G' where id=5; -update noar ti set b1='87YP56QR318G' where id=5; -update noar tt set v0='R0OS4P' where id=5; -update noar ti set v0='R0OS4P' where id=5; -update noar tt set b2='E5KQ15WIC' where id=5; -update noar ti set b2='E5KQ15WIC' where id=5; -update noar tt set v0='Q25B08G3RWCJYDN8' where id=6; -update noar ti set v0='Q25B08G3RWCJYDN8' where id=6; -update noar tt set b0='WFLJOQGPOBQIDJLO60' where id=6; -update noar ti set b0='WFLJOQGPOBQIDJLO60' where id=6; -update noar tt set v0='34ZIYEHGL7BOQXDJMMZALEMZ' where id=6; -update noar ti set v0='34ZIYEHGL7BOQXDJMMZALEMZ' where id=6; -update noar tt set b1='WF39BNL4OELFYLL3S4ATK84MMTG' where id=6; -update noar ti set b1='WF39BNL4OELFYLL3S4ATK84MMTG' where id=6; -update noar tt set v0='PX83216T247D' where id=6; -update noar ti set v0='PX83216T247D' where id=6; -update noar tt set b2='K41D7JT9UK' where id=6; -update noar ti set b2='K41D7JT9UK' where id=6; -update noar tt set v0='6YUD7' where id=7; -update noar ti set v0='6YUD7' where id=7; -update noar tt set b0='9S' where id=7; -update noar ti set b0='9S' where id=7; -update noar tt set v0='5P1N4WXLFAG3WFKFT6FI7BIRTZBPB' where id=7; -update noar ti set v0='5P1N4WXLFAG3WFKFT6FI7BIRTZBPB' where id=7; -update noar tt set b1='8YB7RBOIK' where id=7; -update noar ti set b1='8YB7RBOIK' where id=7; -update noar tt set v0='LMPETMV' where id=7; -update noar ti set v0='LMPETMV' where id=7; -update noar tt set b2='NSS8A54OG88BAJ3MRGHOZW79GC7H' where id=7; -update noar ti set b2='NSS8A54OG88BAJ3MRGHOZW79GC7H' where id=7; -update noar tt set v0='BG8CO4W2E8041' where id=8; -update noar ti set v0='BG8CO4W2E8041' where id=8; -update noar tt set b0='A2KA9KUHAD' where id=8; -update noar ti set b0='A2KA9KUHAD' where id=8; -update noar tt set v0='6KBJS2BW0LTY9K' where id=8; -update noar ti set v0='6KBJS2BW0LTY9K' where id=8; -update noar tt set b1='D7WTF3ZHJWT9OFLODDRE5F5DZ7U52' where id=8; -update noar ti set b1='D7WTF3ZHJWT9OFLODDRE5F5DZ7U52' where id=8; -update noar tt set v0='D648BBX55FIWVDFRPVEUW6WTCZ' where id=8; -update noar ti set v0='D648BBX55FIWVDFRPVEUW6WTCZ' where id=8; -update noar tt set b2='QI092KXNURF0D8SD512' where id=8; -update noar ti set b2='QI092KXNURF0D8SD512' where id=8; -update noar tt set v0='YJBVM9ZR5X7G9GI8Z5A29XZ' where id=9; -update noar ti set v0='YJBVM9ZR5X7G9GI8Z5A29XZ' where id=9; -update noar tt set b0='QBRE3KQURVJBPQYETCQK7T9A' where id=9; -update noar ti set b0='QBRE3KQURVJBPQYETCQK7T9A' where id=9; -update noar tt set v0='2RQONV2' where id=9; -update noar ti set v0='2RQONV2' where id=9; -update noar tt set b1='KXEU5ZHHMYUQRPX5YN2JKLDX1U4SF' where id=9; -update noar ti set b1='KXEU5ZHHMYUQRPX5YN2JKLDX1U4SF' where id=9; -update noar tt set v0='R8GJ54FYQYS7C' where id=9; -update noar ti set v0='R8GJ54FYQYS7C' where id=9; -update noar tt set b2='4KYCJBBB230K6PHESSQ4' where id=9; -update noar ti set b2='4KYCJBBB230K6PHESSQ4' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -f0 int not null, -v0 varchar(32) not null, -b0 longblob not null, -b1 blob not null, -b2 longblob not null -) engine=tokudb; -insert into tt values (1,0,'','','',''); -insert into tt values (2,0,'','','',''); -insert into tt values (3,0,'','','',''); -insert into tt values (4,0,'','','',''); -insert into tt values (5,0,'','','',''); -insert into tt values (6,0,'','','',''); -insert into tt values (7,0,'','','',''); -insert into tt values (8,0,'','','',''); -insert into tt values (9,0,'','','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='DDSVFV8H0GENIFR6EWVXJR3QRB5' where id=1; -update noar ti set v0='DDSVFV8H0GENIFR6EWVXJR3QRB5' where id=1; -update noar tt set b0='7QM43QQ8UZ3' where id=1; -update noar ti set b0='7QM43QQ8UZ3' where id=1; -update noar tt set v0='JPROF4J4G2RKZ' where id=1; -update noar ti set v0='JPROF4J4G2RKZ' where id=1; -update noar tt set b1='ASRD9DD6H' where id=1; -update noar ti set b1='ASRD9DD6H' where id=1; -update noar tt set v0='RAN29HIW' where id=1; -update noar ti set v0='RAN29HIW' where id=1; -update noar tt set b2='YIYZR4KYFCOPK8Y' where id=1; -update noar ti set b2='YIYZR4KYFCOPK8Y' where id=1; -update noar tt set v0='OMSBMGFKOFGVW6' where id=2; -update noar ti set v0='OMSBMGFKOFGVW6' where id=2; -update noar tt set b0='G7FGHHFS9SDXYSMX4UFLGEHII29SX1' where id=2; -update noar ti set b0='G7FGHHFS9SDXYSMX4UFLGEHII29SX1' where id=2; -update noar tt set v0='S9DRXQFLS4S0UHMI96JB82796' where id=2; -update noar ti set v0='S9DRXQFLS4S0UHMI96JB82796' where id=2; -update noar tt set b1='Q6UT929U1JSJYTO' where id=2; -update noar ti set b1='Q6UT929U1JSJYTO' where id=2; -update noar tt set v0='CR4MB70H3ZTETYJDAW05QYWTJVG0' where id=2; -update noar ti set v0='CR4MB70H3ZTETYJDAW05QYWTJVG0' where id=2; -update noar tt set b2='VCS1BQJB8MUU7IXPQG' where id=2; -update noar ti set b2='VCS1BQJB8MUU7IXPQG' where id=2; -update noar tt set v0='7NFAKJE4350LHIG' where id=3; -update noar ti set v0='7NFAKJE4350LHIG' where id=3; -update noar tt set b0='6XFRW4R7JEHRN38QGW78V2DRNSJCM' where id=3; -update noar ti set b0='6XFRW4R7JEHRN38QGW78V2DRNSJCM' where id=3; -update noar tt set v0='RSIG88YV99' where id=3; -update noar ti set v0='RSIG88YV99' where id=3; -update noar tt set b1='W7YII0CZD0NY5LON80PI' where id=3; -update noar ti set b1='W7YII0CZD0NY5LON80PI' where id=3; -update noar tt set v0='UBJ09SVBII8' where id=3; -update noar ti set v0='UBJ09SVBII8' where id=3; -update noar tt set b2='GT3AI' where id=3; -update noar ti set b2='GT3AI' where id=3; -update noar tt set v0='0RV110SPRAZV5LV' where id=4; -update noar ti set v0='0RV110SPRAZV5LV' where id=4; -update noar tt set b0='7J9L3SW1QE8KMA0HWYL7W4QRAVNMI' where id=4; -update noar ti set b0='7J9L3SW1QE8KMA0HWYL7W4QRAVNMI' where id=4; -update noar tt set v0='W9Y98RZYGULDM7854BZT2IQUQ9TVN1' where id=4; -update noar ti set v0='W9Y98RZYGULDM7854BZT2IQUQ9TVN1' where id=4; -update noar tt set b1='7KE1X3HZ8YUS59BCJ8TZODH81AS' where id=4; -update noar ti set b1='7KE1X3HZ8YUS59BCJ8TZODH81AS' where id=4; -update noar tt set v0='5GKSOZ00HPHEDOD3SSLNI' where id=4; -update noar ti set v0='5GKSOZ00HPHEDOD3SSLNI' where id=4; -update noar tt set b2='L6Z8U64ORXR' where id=4; -update noar ti set b2='L6Z8U64ORXR' where id=4; -update noar tt set v0='A' where id=5; -update noar ti set v0='A' where id=5; -update noar tt set b0='MHYML2TCAXUKDD9P60888LM' where id=5; -update noar ti set b0='MHYML2TCAXUKDD9P60888LM' where id=5; -update noar tt set v0='EQ2NCZP' where id=5; -update noar ti set v0='EQ2NCZP' where id=5; -update noar tt set b1='COVK8CP5D7XYHERKBW7DNVU' where id=5; -update noar ti set b1='COVK8CP5D7XYHERKBW7DNVU' where id=5; -update noar tt set v0='YXF4D5QCXUF1ETKT' where id=5; -update noar ti set v0='YXF4D5QCXUF1ETKT' where id=5; -update noar tt set b2='6B0B05GWIUR' where id=5; -update noar ti set b2='6B0B05GWIUR' where id=5; -update noar tt set v0='O0LQI9OTX6TD19UQBL6IXM0D' where id=6; -update noar ti set v0='O0LQI9OTX6TD19UQBL6IXM0D' where id=6; -update noar tt set b0='WK9YH3YK0CCTI5JVNVX5Y1TO' where id=6; -update noar ti set b0='WK9YH3YK0CCTI5JVNVX5Y1TO' where id=6; -update noar tt set v0='SVHLNKOUVOQF7HOE6MRNFO86LND' where id=6; -update noar ti set v0='SVHLNKOUVOQF7HOE6MRNFO86LND' where id=6; -update noar tt set b1='VDFRUC5JSF6881ALDXJ' where id=6; -update noar ti set b1='VDFRUC5JSF6881ALDXJ' where id=6; -update noar tt set v0='OW6DCW7YIL6B265' where id=6; -update noar ti set v0='OW6DCW7YIL6B265' where id=6; -update noar tt set b2='PMG2VH0BY' where id=6; -update noar ti set b2='PMG2VH0BY' where id=6; -update noar tt set v0='NEIBCF43BE2YX6' where id=7; -update noar ti set v0='NEIBCF43BE2YX6' where id=7; -update noar tt set b0='CI' where id=7; -update noar ti set b0='CI' where id=7; -update noar tt set v0='92306LUVG4A22A2DLBMSSWKAP4' where id=7; -update noar ti set v0='92306LUVG4A22A2DLBMSSWKAP4' where id=7; -update noar tt set b1='QN1NNOTXV4CGU6MROHX6P8QBUKR31' where id=7; -update noar ti set b1='QN1NNOTXV4CGU6MROHX6P8QBUKR31' where id=7; -update noar tt set v0='54ZQYHSYM1' where id=7; -update noar ti set v0='54ZQYHSYM1' where id=7; -update noar tt set b2='TO' where id=7; -update noar ti set b2='TO' where id=7; -update noar tt set v0='WWY8ZWJDKBSTSMWKCKMP01MD9' where id=8; -update noar ti set v0='WWY8ZWJDKBSTSMWKCKMP01MD9' where id=8; -update noar tt set b0='A3AI0YAS36ED6YQY4X09DB8QEBF' where id=8; -update noar ti set b0='A3AI0YAS36ED6YQY4X09DB8QEBF' where id=8; -update noar tt set v0='PG17VN1CO6' where id=8; -update noar ti set v0='PG17VN1CO6' where id=8; -update noar tt set b1='RE' where id=8; -update noar ti set b1='RE' where id=8; -update noar tt set v0='54W' where id=8; -update noar ti set v0='54W' where id=8; -update noar tt set b2='RG6G8LKYUO9HNPLTA8GF4LEA2' where id=8; -update noar ti set b2='RG6G8LKYUO9HNPLTA8GF4LEA2' where id=8; -update noar tt set v0='B5V87HLW52NL8HM4K0JJOTZWZ' where id=9; -update noar ti set v0='B5V87HLW52NL8HM4K0JJOTZWZ' where id=9; -update noar tt set b0='I7EFVYGT0GHHPFOPKHQ7SJD0J046F0HP' where id=9; -update noar ti set b0='I7EFVYGT0GHHPFOPKHQ7SJD0J046F0HP' where id=9; -update noar tt set v0='1J34' where id=9; -update noar ti set v0='1J34' where id=9; -update noar tt set b1='C9HSHQ0UC4NPZ2NFRMFL6UHI' where id=9; -update noar ti set b1='C9HSHQ0UC4NPZ2NFRMFL6UHI' where id=9; -update noar tt set v0='E5N4DDJFCAOVK3R20FNQOFY1RXPCCF' where id=9; -update noar ti set v0='E5N4DDJFCAOVK3R20FNQOFY1RXPCCF' where id=9; -update noar tt set b2='NPZLW5YTKBN6MJQZXK6YYAO' where id=9; -update noar ti set b2='NPZLW5YTKBN6MJQZXK6YYAO' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -f0 int not null, -v0 varchar(256) not null, -b0 longblob not null, -b1 blob not null, -b2 longblob not null -) engine=tokudb; -insert into tt values (1,0,'','','',''); -insert into tt values (2,0,'','','',''); -insert into tt values (3,0,'','','',''); -insert into tt values (4,0,'','','',''); -insert into tt values (5,0,'','','',''); -insert into tt values (6,0,'','','',''); -insert into tt values (7,0,'','','',''); -insert into tt values (8,0,'','','',''); -insert into tt values (9,0,'','','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='7RRJK4TZV3H6FJ3UQBRSHD' where id=1; -update noar ti set v0='7RRJK4TZV3H6FJ3UQBRSHD' where id=1; -update noar tt set b0='F5Z6D1ZFQLI51RFAUEOEQX9D6I48VF' where id=1; -update noar ti set b0='F5Z6D1ZFQLI51RFAUEOEQX9D6I48VF' where id=1; -update noar tt set v0='M' where id=1; -update noar ti set v0='M' where id=1; -update noar tt set b1='MQSFGLWER9K18JDS6IDPJW7' where id=1; -update noar ti set b1='MQSFGLWER9K18JDS6IDPJW7' where id=1; -update noar tt set v0='Y5LWOJ1TLVW06ARBP85Q3AHVLLV' where id=1; -update noar ti set v0='Y5LWOJ1TLVW06ARBP85Q3AHVLLV' where id=1; -update noar tt set b2='7J5W' where id=1; -update noar ti set b2='7J5W' where id=1; -update noar tt set v0='76I5PJYIS5' where id=2; -update noar ti set v0='76I5PJYIS5' where id=2; -update noar tt set b0='OX8Y39TCDCU98IT5J6ZZAPM' where id=2; -update noar ti set b0='OX8Y39TCDCU98IT5J6ZZAPM' where id=2; -update noar tt set v0='OI0E84MVEFLOTTRP' where id=2; -update noar ti set v0='OI0E84MVEFLOTTRP' where id=2; -update noar tt set b1='RRQOS' where id=2; -update noar ti set b1='RRQOS' where id=2; -update noar tt set v0='FFV38CZ3GHK9LFKCGODIZN9V' where id=2; -update noar ti set v0='FFV38CZ3GHK9LFKCGODIZN9V' where id=2; -update noar tt set b2='VC6GX3ECGLBQPHPV8FRA' where id=2; -update noar ti set b2='VC6GX3ECGLBQPHPV8FRA' where id=2; -update noar tt set v0='QPOQWY9WV7OV9Q5ABLRIQ73AB' where id=3; -update noar ti set v0='QPOQWY9WV7OV9Q5ABLRIQ73AB' where id=3; -update noar tt set b0='PX2WBY728KK03DB1KW3J' where id=3; -update noar ti set b0='PX2WBY728KK03DB1KW3J' where id=3; -update noar tt set v0='EYTBUGV60NDETLEKT8TMZLCA3PUF6KQZ' where id=3; -update noar ti set v0='EYTBUGV60NDETLEKT8TMZLCA3PUF6KQZ' where id=3; -update noar tt set b1='CMT1IFG44R' where id=3; -update noar ti set b1='CMT1IFG44R' where id=3; -update noar tt set v0='3Z8T9EW8ZT0VIU97S33QNPNLTWC' where id=3; -update noar ti set v0='3Z8T9EW8ZT0VIU97S33QNPNLTWC' where id=3; -update noar tt set b2='8DR8PJX3XFS2UEF' where id=3; -update noar ti set b2='8DR8PJX3XFS2UEF' where id=3; -update noar tt set v0='TFS1Y929M' where id=4; -update noar ti set v0='TFS1Y929M' where id=4; -update noar tt set b0='ASR0UTSTP8S99CAY' where id=4; -update noar ti set b0='ASR0UTSTP8S99CAY' where id=4; -update noar tt set v0='3QDD47CDXYMOME87DZYE' where id=4; -update noar ti set v0='3QDD47CDXYMOME87DZYE' where id=4; -update noar tt set b1='0HKBU09GXP6NW' where id=4; -update noar ti set b1='0HKBU09GXP6NW' where id=4; -update noar tt set v0='8D4' where id=4; -update noar ti set v0='8D4' where id=4; -update noar tt set b2='UXKSQ02' where id=4; -update noar ti set b2='UXKSQ02' where id=4; -update noar tt set v0='1A5L0F9Y5JFQYY3NIFCW3H8UC0KSMZK' where id=5; -update noar ti set v0='1A5L0F9Y5JFQYY3NIFCW3H8UC0KSMZK' where id=5; -update noar tt set b0='7ECFT9UE70Y1NDDY' where id=5; -update noar ti set b0='7ECFT9UE70Y1NDDY' where id=5; -update noar tt set v0='68JBZCC3R2I9YAE5TE2YF9' where id=5; -update noar ti set v0='68JBZCC3R2I9YAE5TE2YF9' where id=5; -update noar tt set b1='PCQPR05FTJBLPA31CR61G' where id=5; -update noar ti set b1='PCQPR05FTJBLPA31CR61G' where id=5; -update noar tt set v0='MH1TCBDS' where id=5; -update noar ti set v0='MH1TCBDS' where id=5; -update noar tt set b2='VUUIPZNRC13P0KY6EOG' where id=5; -update noar ti set b2='VUUIPZNRC13P0KY6EOG' where id=5; -update noar tt set v0='NEVMDPL4YWR4EB79YB25M6F' where id=6; -update noar ti set v0='NEVMDPL4YWR4EB79YB25M6F' where id=6; -update noar tt set b0='C1FZ3T7EC9UV0FY' where id=6; -update noar ti set b0='C1FZ3T7EC9UV0FY' where id=6; -update noar tt set v0='CICVJ9V1E9DURZJUQMP5MWTPWKEH5NT' where id=6; -update noar ti set v0='CICVJ9V1E9DURZJUQMP5MWTPWKEH5NT' where id=6; -update noar tt set b1='TF1G43K8T' where id=6; -update noar ti set b1='TF1G43K8T' where id=6; -update noar tt set v0='D9EQ0NF2VKKG6I9GPSNAOQM' where id=6; -update noar ti set v0='D9EQ0NF2VKKG6I9GPSNAOQM' where id=6; -update noar tt set b2='IRKI97C7ABF' where id=6; -update noar ti set b2='IRKI97C7ABF' where id=6; -update noar tt set v0='1X7FJQ4SHPO50QLDVYN0PMCQ' where id=7; -update noar ti set v0='1X7FJQ4SHPO50QLDVYN0PMCQ' where id=7; -update noar tt set b0='ME1RMXO9C6CKH1LWSQKS3RMEPJCCAO' where id=7; -update noar ti set b0='ME1RMXO9C6CKH1LWSQKS3RMEPJCCAO' where id=7; -update noar tt set v0='V' where id=7; -update noar ti set v0='V' where id=7; -update noar tt set b1='MY37S2NDPR' where id=7; -update noar ti set b1='MY37S2NDPR' where id=7; -update noar tt set v0='IG10I6M' where id=7; -update noar ti set v0='IG10I6M' where id=7; -update noar tt set b2='Y0BV7AUD891EIT48Z5Z7HMSHBM3FBLZD' where id=7; -update noar ti set b2='Y0BV7AUD891EIT48Z5Z7HMSHBM3FBLZD' where id=7; -update noar tt set v0='9OZ' where id=8; -update noar ti set v0='9OZ' where id=8; -update noar tt set b0='QJD5K8Q9HRHRF' where id=8; -update noar ti set b0='QJD5K8Q9HRHRF' where id=8; -update noar tt set v0='FO5UYDQA02GDM2PLVOWGZU' where id=8; -update noar ti set v0='FO5UYDQA02GDM2PLVOWGZU' where id=8; -update noar tt set b1='3K0' where id=8; -update noar ti set b1='3K0' where id=8; -update noar tt set v0='HMD874KV9J9EW6DTZXOWLYKCCIY570B' where id=8; -update noar ti set v0='HMD874KV9J9EW6DTZXOWLYKCCIY570B' where id=8; -update noar tt set b2='CBN1TMGTBEQ6GLDJL9QKON0L37JD6MV' where id=8; -update noar ti set b2='CBN1TMGTBEQ6GLDJL9QKON0L37JD6MV' where id=8; -update noar tt set v0='AAN2QC0JJZ26N310BPEAM1' where id=9; -update noar ti set v0='AAN2QC0JJZ26N310BPEAM1' where id=9; -update noar tt set b0='ABZHC09ZR2CZV3SRBMABYE5L' where id=9; -update noar ti set b0='ABZHC09ZR2CZV3SRBMABYE5L' where id=9; -update noar tt set v0='SP5I6G2BKJGRU' where id=9; -update noar ti set v0='SP5I6G2BKJGRU' where id=9; -update noar tt set b1='LNQNAWKLVS' where id=9; -update noar ti set b1='LNQNAWKLVS' where id=9; -update noar tt set v0='WGDF8SCS648ASOGN0K1L' where id=9; -update noar ti set v0='WGDF8SCS648ASOGN0K1L' where id=9; -update noar tt set b2='8O067WLVCGVKY8CPNM110C2N349N' where id=9; -update noar ti set b2='8O067WLVCGVKY8CPNM110C2N349N' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -f0 int null, -v0 varchar(32) null, -b0 longblob null, -b1 mediumblob null, -b2 tinyblob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='LXB51EVH933IPZ7O' where id=1; -update noar ti set v0='LXB51EVH933IPZ7O' where id=1; -update noar tt set b0='VVWWZ51BFZOEI8S4DTC09XISHW5002' where id=1; -update noar ti set b0='VVWWZ51BFZOEI8S4DTC09XISHW5002' where id=1; -update noar tt set v0='TSILO3GTPADNUYJNZZSTX' where id=1; -update noar ti set v0='TSILO3GTPADNUYJNZZSTX' where id=1; -update noar tt set b1='0Y5THGJXR8MY09' where id=1; -update noar ti set b1='0Y5THGJXR8MY09' where id=1; -update noar tt set v0='ONMKON6E680NVD2I9' where id=1; -update noar ti set v0='ONMKON6E680NVD2I9' where id=1; -update noar tt set b2='NU942F03I' where id=1; -update noar ti set b2='NU942F03I' where id=1; -update noar tt set v0='6HTK85Z1TEI6597H7AC' where id=2; -update noar ti set v0='6HTK85Z1TEI6597H7AC' where id=2; -update noar tt set b0='G7VNB96Z2LDV491' where id=2; -update noar ti set b0='G7VNB96Z2LDV491' where id=2; -update noar tt set v0='F8' where id=2; -update noar ti set v0='F8' where id=2; -update noar tt set b1='WQ5N8SG05PPBAC26YTO3NCE' where id=2; -update noar ti set b1='WQ5N8SG05PPBAC26YTO3NCE' where id=2; -update noar tt set v0='UU01XWY4Y' where id=2; -update noar ti set v0='UU01XWY4Y' where id=2; -update noar tt set b2='AF8A10BTGDI' where id=2; -update noar ti set b2='AF8A10BTGDI' where id=2; -update noar tt set v0='H37MOIAF9' where id=3; -update noar ti set v0='H37MOIAF9' where id=3; -update noar tt set b0='XNJ61TTRPDRZTS3X1WKPIDZB3VB81' where id=3; -update noar ti set b0='XNJ61TTRPDRZTS3X1WKPIDZB3VB81' where id=3; -update noar tt set v0='PEZ088L04Q' where id=3; -update noar ti set v0='PEZ088L04Q' where id=3; -update noar tt set b1='9UJWCTDHDWX7ELWEU0ZXM1AWEAQBD' where id=3; -update noar ti set b1='9UJWCTDHDWX7ELWEU0ZXM1AWEAQBD' where id=3; -update noar tt set v0='3HSJXW7BS0Y9T8B14TQSN69G' where id=3; -update noar ti set v0='3HSJXW7BS0Y9T8B14TQSN69G' where id=3; -update noar tt set b2='G1' where id=3; -update noar ti set b2='G1' where id=3; -update noar tt set v0='QGT280XEDYKPFF9' where id=4; -update noar ti set v0='QGT280XEDYKPFF9' where id=4; -update noar tt set b0='81OS93RR73ATUZB069CLJGA' where id=4; -update noar ti set b0='81OS93RR73ATUZB069CLJGA' where id=4; -update noar tt set v0='8US1FKCAF7BPLPTX3WN4' where id=4; -update noar ti set v0='8US1FKCAF7BPLPTX3WN4' where id=4; -update noar tt set b1='GEOLMX04V8YZ6MZFRIFPBP1DU9C2Y4A' where id=4; -update noar ti set b1='GEOLMX04V8YZ6MZFRIFPBP1DU9C2Y4A' where id=4; -update noar tt set v0='XPNWZEVNKFN6' where id=4; -update noar ti set v0='XPNWZEVNKFN6' where id=4; -update noar tt set b2='OADRS66BV7TBH2CR5IOKMTXK8V2ITN' where id=4; -update noar ti set b2='OADRS66BV7TBH2CR5IOKMTXK8V2ITN' where id=4; -update noar tt set v0='D0SU1SWXO10VHV' where id=5; -update noar ti set v0='D0SU1SWXO10VHV' where id=5; -update noar tt set b0='LQ4DRJ67' where id=5; -update noar ti set b0='LQ4DRJ67' where id=5; -update noar tt set v0='KCXV' where id=5; -update noar ti set v0='KCXV' where id=5; -update noar tt set b1='PCVGLFROKVYGKTUDS6MS' where id=5; -update noar ti set b1='PCVGLFROKVYGKTUDS6MS' where id=5; -update noar tt set v0='X63T5ZEDC7' where id=5; -update noar ti set v0='X63T5ZEDC7' where id=5; -update noar tt set b2='XJ8D7TZY54VUCEIO9GFMA48DO45Q' where id=5; -update noar ti set b2='XJ8D7TZY54VUCEIO9GFMA48DO45Q' where id=5; -update noar tt set v0='FJD4EYFIG47M190MW9GY' where id=6; -update noar ti set v0='FJD4EYFIG47M190MW9GY' where id=6; -update noar tt set b0='HP8M8EPA1N8A' where id=6; -update noar ti set b0='HP8M8EPA1N8A' where id=6; -update noar tt set v0='7DXMHU91JL72A4GAEB1T3PB8739H' where id=6; -update noar ti set v0='7DXMHU91JL72A4GAEB1T3PB8739H' where id=6; -update noar tt set b1='R' where id=6; -update noar ti set b1='R' where id=6; -update noar tt set v0='IZ9ENZKO66P7J5SHXYO0SY0BB7X' where id=6; -update noar ti set v0='IZ9ENZKO66P7J5SHXYO0SY0BB7X' where id=6; -update noar tt set b2='CARDU0M2JXD4U3B32KD1Q25FT2M507HW' where id=6; -update noar ti set b2='CARDU0M2JXD4U3B32KD1Q25FT2M507HW' where id=6; -update noar tt set v0='K8M0ME4QQWLE7J' where id=7; -update noar ti set v0='K8M0ME4QQWLE7J' where id=7; -update noar tt set b0='OXP87CUOH2DIH' where id=7; -update noar ti set b0='OXP87CUOH2DIH' where id=7; -update noar tt set v0='TCXXMB08G0213LLV0AH6AD7MG10GX' where id=7; -update noar ti set v0='TCXXMB08G0213LLV0AH6AD7MG10GX' where id=7; -update noar tt set b1='NSFBPDKH' where id=7; -update noar ti set b1='NSFBPDKH' where id=7; -update noar tt set v0='TDHS2IZLRCGE0' where id=7; -update noar ti set v0='TDHS2IZLRCGE0' where id=7; -update noar tt set b2='CX1QBHUUKZTZZ3EMEBZ91X7AJITF' where id=7; -update noar ti set b2='CX1QBHUUKZTZZ3EMEBZ91X7AJITF' where id=7; -update noar tt set v0='SKY' where id=8; -update noar ti set v0='SKY' where id=8; -update noar tt set b0='WQZ5CD0AR1GW58NPRN420B72EDUT19Y' where id=8; -update noar ti set b0='WQZ5CD0AR1GW58NPRN420B72EDUT19Y' where id=8; -update noar tt set v0='63LVMQB8EPY1C88MFO' where id=8; -update noar ti set v0='63LVMQB8EPY1C88MFO' where id=8; -update noar tt set b1='7JOEOOP7BIYH' where id=8; -update noar ti set b1='7JOEOOP7BIYH' where id=8; -update noar tt set v0='PYXAGS2ZLZVGM9XWHWX9HR' where id=8; -update noar ti set v0='PYXAGS2ZLZVGM9XWHWX9HR' where id=8; -update noar tt set b2='2' where id=8; -update noar ti set b2='2' where id=8; -update noar tt set v0='N5Y07Y8' where id=9; -update noar ti set v0='N5Y07Y8' where id=9; -update noar tt set b0='UZ898T' where id=9; -update noar ti set b0='UZ898T' where id=9; -update noar tt set v0='TGJGUPGGOO60LZN' where id=9; -update noar ti set v0='TGJGUPGGOO60LZN' where id=9; -update noar tt set b1='RHSJT6U9LQ4QCXDHQ7YL19EUNQV' where id=9; -update noar ti set b1='RHSJT6U9LQ4QCXDHQ7YL19EUNQV' where id=9; -update noar tt set v0='YGLESPKD68ILW' where id=9; -update noar ti set v0='YGLESPKD68ILW' where id=9; -update noar tt set b2='0RP733O6O5KTZJ81YWA3FARG' where id=9; -update noar ti set b2='0RP733O6O5KTZJ81YWA3FARG' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -f0 int null, -v0 varchar(256) null, -b0 longblob null, -b1 mediumblob null, -b2 tinyblob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='G1H9ZMYHDU' where id=1; -update noar ti set v0='G1H9ZMYHDU' where id=1; -update noar tt set b0='PABQ4WHRQB90WDGQGPRO1' where id=1; -update noar ti set b0='PABQ4WHRQB90WDGQGPRO1' where id=1; -update noar tt set v0='D96UZ0QVUJA2PBZE31P' where id=1; -update noar ti set v0='D96UZ0QVUJA2PBZE31P' where id=1; -update noar tt set b1='H0KDGY' where id=1; -update noar ti set b1='H0KDGY' where id=1; -update noar tt set v0='DH9MJ3' where id=1; -update noar ti set v0='DH9MJ3' where id=1; -update noar tt set b2='O5EC4WLTRIKHV2T8KSL' where id=1; -update noar ti set b2='O5EC4WLTRIKHV2T8KSL' where id=1; -update noar tt set v0='4PV3LIOE4T3ZSYEBAXEJW930O' where id=2; -update noar ti set v0='4PV3LIOE4T3ZSYEBAXEJW930O' where id=2; -update noar tt set b0='8PI03J1PMTLTXV' where id=2; -update noar ti set b0='8PI03J1PMTLTXV' where id=2; -update noar tt set v0='HFZDGNQZMHH303' where id=2; -update noar ti set v0='HFZDGNQZMHH303' where id=2; -update noar tt set b1='81I9O4QYU1QU' where id=2; -update noar ti set b1='81I9O4QYU1QU' where id=2; -update noar tt set v0='ATXQTWYN0ON6AS3ODR6' where id=2; -update noar ti set v0='ATXQTWYN0ON6AS3ODR6' where id=2; -update noar tt set b2='C' where id=2; -update noar ti set b2='C' where id=2; -update noar tt set v0='OTJ1162L63TWT3KEDDURS09V8HGSN6X' where id=3; -update noar ti set v0='OTJ1162L63TWT3KEDDURS09V8HGSN6X' where id=3; -update noar tt set b0='D7GNPDSSGG1LI' where id=3; -update noar ti set b0='D7GNPDSSGG1LI' where id=3; -update noar tt set v0='4RP86GH31TP8S2E2QL7CYQC6CKVPSNQV' where id=3; -update noar ti set v0='4RP86GH31TP8S2E2QL7CYQC6CKVPSNQV' where id=3; -update noar tt set b1='TYYHOVA35LB80IB59P3MM7' where id=3; -update noar ti set b1='TYYHOVA35LB80IB59P3MM7' where id=3; -update noar tt set v0='N19ALO7' where id=3; -update noar ti set v0='N19ALO7' where id=3; -update noar tt set b2='6EAXNJL9YDRK1RBMDDYJMVJYDEWXBPJ' where id=3; -update noar ti set b2='6EAXNJL9YDRK1RBMDDYJMVJYDEWXBPJ' where id=3; -update noar tt set v0='QSESKOBV35MWO581P6HKH881KP' where id=4; -update noar ti set v0='QSESKOBV35MWO581P6HKH881KP' where id=4; -update noar tt set b0='2W' where id=4; -update noar ti set b0='2W' where id=4; -update noar tt set v0='M2MD3A3XZUT50Q3KJ0ONYM' where id=4; -update noar ti set v0='M2MD3A3XZUT50Q3KJ0ONYM' where id=4; -update noar tt set b1='OC26D68' where id=4; -update noar ti set b1='OC26D68' where id=4; -update noar tt set v0='29VCK73FFCXRMH4Q8GUH1XCKFRVDRTK4' where id=4; -update noar ti set v0='29VCK73FFCXRMH4Q8GUH1XCKFRVDRTK4' where id=4; -update noar tt set b2='JR8G8S6XLMOEHF72DDMQPRKZ92' where id=4; -update noar ti set b2='JR8G8S6XLMOEHF72DDMQPRKZ92' where id=4; -update noar tt set v0='PN' where id=5; -update noar ti set v0='PN' where id=5; -update noar tt set b0='XWEFDCIILCY5' where id=5; -update noar ti set b0='XWEFDCIILCY5' where id=5; -update noar tt set v0='6JA6EKKGEOYJXAE0LONRI2TQJG' where id=5; -update noar ti set v0='6JA6EKKGEOYJXAE0LONRI2TQJG' where id=5; -update noar tt set b1='7SFHYH2T1QK6XGRJ6WW4MI88WRY6G5' where id=5; -update noar ti set b1='7SFHYH2T1QK6XGRJ6WW4MI88WRY6G5' where id=5; -update noar tt set v0='8O399Z0LCJOUDDJROX4SA' where id=5; -update noar ti set v0='8O399Z0LCJOUDDJROX4SA' where id=5; -update noar tt set b2='GFM3' where id=5; -update noar ti set b2='GFM3' where id=5; -update noar tt set v0='VNKH' where id=6; -update noar ti set v0='VNKH' where id=6; -update noar tt set b0='YGYMF3PLA2M3' where id=6; -update noar ti set b0='YGYMF3PLA2M3' where id=6; -update noar tt set v0='4PL5829VMSYNXJZKXLPFSS05YYA2U' where id=6; -update noar ti set v0='4PL5829VMSYNXJZKXLPFSS05YYA2U' where id=6; -update noar tt set b1='YJJ46L89X6M9' where id=6; -update noar ti set b1='YJJ46L89X6M9' where id=6; -update noar tt set v0='WHEZKK2FMOBNNS3X0Q' where id=6; -update noar ti set v0='WHEZKK2FMOBNNS3X0Q' where id=6; -update noar tt set b2='YVXATQDES26FWAK94BRIG' where id=6; -update noar ti set b2='YVXATQDES26FWAK94BRIG' where id=6; -update noar tt set v0='PADT6071U6NP' where id=7; -update noar ti set v0='PADT6071U6NP' where id=7; -update noar tt set b0='S53LPR8NS6V3CIM' where id=7; -update noar ti set b0='S53LPR8NS6V3CIM' where id=7; -update noar tt set v0='E4H7Z5EH5PL4' where id=7; -update noar ti set v0='E4H7Z5EH5PL4' where id=7; -update noar tt set b1='16D7520MJ6' where id=7; -update noar ti set b1='16D7520MJ6' where id=7; -update noar tt set v0='QBVH4MDZU' where id=7; -update noar ti set v0='QBVH4MDZU' where id=7; -update noar tt set b2='S2IX6SWEM69GF9LZ5U9H65EH' where id=7; -update noar ti set b2='S2IX6SWEM69GF9LZ5U9H65EH' where id=7; -update noar tt set v0='T078TFXU0Z' where id=8; -update noar ti set v0='T078TFXU0Z' where id=8; -update noar tt set b0='YFR' where id=8; -update noar ti set b0='YFR' where id=8; -update noar tt set v0='9N3NS4T16OVFT95ZJ80EHU2LQRS7PMEF' where id=8; -update noar ti set v0='9N3NS4T16OVFT95ZJ80EHU2LQRS7PMEF' where id=8; -update noar tt set b1='ZP8ULZRBFF2Z9O9X' where id=8; -update noar ti set b1='ZP8ULZRBFF2Z9O9X' where id=8; -update noar tt set v0='HLYQYQYFV224OY8' where id=8; -update noar ti set v0='HLYQYQYFV224OY8' where id=8; -update noar tt set b2='U462OA4KR4IRMY4CT7BJR9EOK' where id=8; -update noar ti set b2='U462OA4KR4IRMY4CT7BJR9EOK' where id=8; -update noar tt set v0='KJ5LIUOVSG9' where id=9; -update noar ti set v0='KJ5LIUOVSG9' where id=9; -update noar tt set b0='SUJJPR2' where id=9; -update noar ti set b0='SUJJPR2' where id=9; -update noar tt set v0='ICUDHA3SCRBQJQTYG' where id=9; -update noar ti set v0='ICUDHA3SCRBQJQTYG' where id=9; -update noar tt set b1='8I6T9F5J55H5HQ5ZHL2NCG547C' where id=9; -update noar ti set b1='8I6T9F5J55H5HQ5ZHL2NCG547C' where id=9; -update noar tt set v0='OKXC505ZDUC1VWS9' where id=9; -update noar ti set v0='OKXC505ZDUC1VWS9' where id=9; -update noar tt set b2='CPMK94U96ONWWFN7C' where id=9; -update noar ti set b2='CPMK94U96ONWWFN7C' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -f0 int not null, -v0 varchar(32) not null, -b0 longblob not null, -b1 mediumblob not null, -b2 tinyblob not null -) engine=tokudb; -insert into tt values (1,0,'','','',''); -insert into tt values (2,0,'','','',''); -insert into tt values (3,0,'','','',''); -insert into tt values (4,0,'','','',''); -insert into tt values (5,0,'','','',''); -insert into tt values (6,0,'','','',''); -insert into tt values (7,0,'','','',''); -insert into tt values (8,0,'','','',''); -insert into tt values (9,0,'','','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='6K2SJJW66IDTR' where id=1; -update noar ti set v0='6K2SJJW66IDTR' where id=1; -update noar tt set b0='5X2E4JI6FICQBNGU' where id=1; -update noar ti set b0='5X2E4JI6FICQBNGU' where id=1; -update noar tt set v0='U4RYDCKS00KW2OOK2HGEI5DKT' where id=1; -update noar ti set v0='U4RYDCKS00KW2OOK2HGEI5DKT' where id=1; -update noar tt set b1='3N5' where id=1; -update noar ti set b1='3N5' where id=1; -update noar tt set v0='8WQ' where id=1; -update noar ti set v0='8WQ' where id=1; -update noar tt set b2='E' where id=1; -update noar ti set b2='E' where id=1; -update noar tt set v0='IPKF' where id=2; -update noar ti set v0='IPKF' where id=2; -update noar tt set b0='RBSYU1EISEBS2531J2T8' where id=2; -update noar ti set b0='RBSYU1EISEBS2531J2T8' where id=2; -update noar tt set v0='4G97KWNHQV5TPKFQR8Y1YO7USW0DGSE' where id=2; -update noar ti set v0='4G97KWNHQV5TPKFQR8Y1YO7USW0DGSE' where id=2; -update noar tt set b1='ZI4180UK' where id=2; -update noar ti set b1='ZI4180UK' where id=2; -update noar tt set v0='1EMBWCUZMBOGYE3O3VEPA' where id=2; -update noar ti set v0='1EMBWCUZMBOGYE3O3VEPA' where id=2; -update noar tt set b2='8ZJW6BD7JOMEMUWH9CT8HQFID0PNAODZ' where id=2; -update noar ti set b2='8ZJW6BD7JOMEMUWH9CT8HQFID0PNAODZ' where id=2; -update noar tt set v0='BB84RG75BZJYD5HESV95VF9MORW1FK1' where id=3; -update noar ti set v0='BB84RG75BZJYD5HESV95VF9MORW1FK1' where id=3; -update noar tt set b0='ROKAP1N' where id=3; -update noar ti set b0='ROKAP1N' where id=3; -update noar tt set v0='ZR95U5OAG' where id=3; -update noar ti set v0='ZR95U5OAG' where id=3; -update noar tt set b1='KVQOTYY8BIR40GWJNDEX2LIM5C2T3O' where id=3; -update noar ti set b1='KVQOTYY8BIR40GWJNDEX2LIM5C2T3O' where id=3; -update noar tt set v0='4B243U3SQAU05HZ86' where id=3; -update noar ti set v0='4B243U3SQAU05HZ86' where id=3; -update noar tt set b2='ETFU1Q8RCGYGU65GGOTR' where id=3; -update noar ti set b2='ETFU1Q8RCGYGU65GGOTR' where id=3; -update noar tt set v0='ZNXU9CI8DGBIU5NQ' where id=4; -update noar ti set v0='ZNXU9CI8DGBIU5NQ' where id=4; -update noar tt set b0='FIQH1CCS4YBYVA6C8XU4N' where id=4; -update noar ti set b0='FIQH1CCS4YBYVA6C8XU4N' where id=4; -update noar tt set v0='UQMMFNCR21YX0SBZ2WTY64B1T0W8GLIJ' where id=4; -update noar ti set v0='UQMMFNCR21YX0SBZ2WTY64B1T0W8GLIJ' where id=4; -update noar tt set b1='1VR0W62SSPIQRV' where id=4; -update noar ti set b1='1VR0W62SSPIQRV' where id=4; -update noar tt set v0='KSEU60F3N0SOCE57QGO9GP6' where id=4; -update noar ti set v0='KSEU60F3N0SOCE57QGO9GP6' where id=4; -update noar tt set b2='RKRNM' where id=4; -update noar ti set b2='RKRNM' where id=4; -update noar tt set v0='US5EO8Y3KGQ' where id=5; -update noar ti set v0='US5EO8Y3KGQ' where id=5; -update noar tt set b0='LAVSR1GAT' where id=5; -update noar ti set b0='LAVSR1GAT' where id=5; -update noar tt set v0='VV3ZHJKFQ9IWQAZH' where id=5; -update noar ti set v0='VV3ZHJKFQ9IWQAZH' where id=5; -update noar tt set b1='31FCDPNMIAS5UXNLM' where id=5; -update noar ti set b1='31FCDPNMIAS5UXNLM' where id=5; -update noar tt set v0='6VZHU2MHIM2Y4RJC33BP1KA7MZ2DBL' where id=5; -update noar ti set v0='6VZHU2MHIM2Y4RJC33BP1KA7MZ2DBL' where id=5; -update noar tt set b2='7KBE2F' where id=5; -update noar ti set b2='7KBE2F' where id=5; -update noar tt set v0='QA34XR7VUJ8LH1OVXF70R6HF4V' where id=6; -update noar ti set v0='QA34XR7VUJ8LH1OVXF70R6HF4V' where id=6; -update noar tt set b0='PAFY' where id=6; -update noar ti set b0='PAFY' where id=6; -update noar tt set v0='9J' where id=6; -update noar ti set v0='9J' where id=6; -update noar tt set b1='0Y1XAJTYUMCRKLHNPB8Q2SZ06AJ88E' where id=6; -update noar ti set b1='0Y1XAJTYUMCRKLHNPB8Q2SZ06AJ88E' where id=6; -update noar tt set v0='I3SWKJZ' where id=6; -update noar ti set v0='I3SWKJZ' where id=6; -update noar tt set b2='T1MGQH8O28UNLWBF8YTVL1IWKPBGG3' where id=6; -update noar ti set b2='T1MGQH8O28UNLWBF8YTVL1IWKPBGG3' where id=6; -update noar tt set v0='VGN6A' where id=7; -update noar ti set v0='VGN6A' where id=7; -update noar tt set b0='57PCONKI' where id=7; -update noar ti set b0='57PCONKI' where id=7; -update noar tt set v0='X' where id=7; -update noar ti set v0='X' where id=7; -update noar tt set b1='HIL5LCX54AAWSHCL' where id=7; -update noar ti set b1='HIL5LCX54AAWSHCL' where id=7; -update noar tt set v0='8XPG8OF9KTYXXD174DKQ' where id=7; -update noar ti set v0='8XPG8OF9KTYXXD174DKQ' where id=7; -update noar tt set b2='T87J9Y7L7BKG' where id=7; -update noar ti set b2='T87J9Y7L7BKG' where id=7; -update noar tt set v0='PR' where id=8; -update noar ti set v0='PR' where id=8; -update noar tt set b0='C8A7QMQ0EUWAK' where id=8; -update noar ti set b0='C8A7QMQ0EUWAK' where id=8; -update noar tt set v0='RBKPU1JRANU7BZ0' where id=8; -update noar ti set v0='RBKPU1JRANU7BZ0' where id=8; -update noar tt set b1='XZT4DOI3WSU3EH' where id=8; -update noar ti set b1='XZT4DOI3WSU3EH' where id=8; -update noar tt set v0='UN1BDAFIIKY' where id=8; -update noar ti set v0='UN1BDAFIIKY' where id=8; -update noar tt set b2='6ZCDIOYBFTPNXE9FSFBH5XS82IS' where id=8; -update noar ti set b2='6ZCDIOYBFTPNXE9FSFBH5XS82IS' where id=8; -update noar tt set v0='0J50NLVHB97V0B47YH0Q9RZFJ428MNR3' where id=9; -update noar ti set v0='0J50NLVHB97V0B47YH0Q9RZFJ428MNR3' where id=9; -update noar tt set b0='LRK5A56Q1ZDDFV4MA' where id=9; -update noar ti set b0='LRK5A56Q1ZDDFV4MA' where id=9; -update noar tt set v0='BR8TXBWKS5CU1P5J9B07XKLA' where id=9; -update noar ti set v0='BR8TXBWKS5CU1P5J9B07XKLA' where id=9; -update noar tt set b1='9L3E9BSA59AP05EHZTX8G' where id=9; -update noar ti set b1='9L3E9BSA59AP05EHZTX8G' where id=9; -update noar tt set v0='TZEINUV7KPKMF6CXKH401PZ8F' where id=9; -update noar ti set v0='TZEINUV7KPKMF6CXKH401PZ8F' where id=9; -update noar tt set b2='QWYGS2ASPLEN07OS8N' where id=9; -update noar ti set b2='QWYGS2ASPLEN07OS8N' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -f0 int not null, -v0 varchar(256) not null, -b0 longblob not null, -b1 mediumblob not null, -b2 tinyblob not null -) engine=tokudb; -insert into tt values (1,0,'','','',''); -insert into tt values (2,0,'','','',''); -insert into tt values (3,0,'','','',''); -insert into tt values (4,0,'','','',''); -insert into tt values (5,0,'','','',''); -insert into tt values (6,0,'','','',''); -insert into tt values (7,0,'','','',''); -insert into tt values (8,0,'','','',''); -insert into tt values (9,0,'','','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='9TS0MDH3P' where id=1; -update noar ti set v0='9TS0MDH3P' where id=1; -update noar tt set b0='0CMLOH3TTQ2Q1' where id=1; -update noar ti set b0='0CMLOH3TTQ2Q1' where id=1; -update noar tt set v0='T8S756' where id=1; -update noar ti set v0='T8S756' where id=1; -update noar tt set b1='355ARES50AS85AUBYYVP0WL22' where id=1; -update noar ti set b1='355ARES50AS85AUBYYVP0WL22' where id=1; -update noar tt set v0='NYYZ7GE0NMLN4ZEOGZA8L1MJNNJ1S1YJ' where id=1; -update noar ti set v0='NYYZ7GE0NMLN4ZEOGZA8L1MJNNJ1S1YJ' where id=1; -update noar tt set b2='3PN2LXLQMBPKXZXPC48432XO5O' where id=1; -update noar ti set b2='3PN2LXLQMBPKXZXPC48432XO5O' where id=1; -update noar tt set v0='LS6XDT' where id=2; -update noar ti set v0='LS6XDT' where id=2; -update noar tt set b0='RW' where id=2; -update noar ti set b0='RW' where id=2; -update noar tt set v0='QY' where id=2; -update noar ti set v0='QY' where id=2; -update noar tt set b1='4BRIS' where id=2; -update noar ti set b1='4BRIS' where id=2; -update noar tt set v0='N8INEEY5RS' where id=2; -update noar ti set v0='N8INEEY5RS' where id=2; -update noar tt set b2='Y1WV8YLS' where id=2; -update noar ti set b2='Y1WV8YLS' where id=2; -update noar tt set v0='5KQJN0PTESKD59S8IT0TXZZR3R' where id=3; -update noar ti set v0='5KQJN0PTESKD59S8IT0TXZZR3R' where id=3; -update noar tt set b0='7LY8M6FAAUCZW8ZB' where id=3; -update noar ti set b0='7LY8M6FAAUCZW8ZB' where id=3; -update noar tt set v0='2CVN4J9V' where id=3; -update noar ti set v0='2CVN4J9V' where id=3; -update noar tt set b1='OP9GIEYSIB5YY8AK' where id=3; -update noar ti set b1='OP9GIEYSIB5YY8AK' where id=3; -update noar tt set v0='THS1HQ9XQXU3RVDCFQ8L1J' where id=3; -update noar ti set v0='THS1HQ9XQXU3RVDCFQ8L1J' where id=3; -update noar tt set b2='MOB8C53CXLUNG9QBNUNU4HYFOUFYFEOH' where id=3; -update noar ti set b2='MOB8C53CXLUNG9QBNUNU4HYFOUFYFEOH' where id=3; -update noar tt set v0='0V8L9WE7P3Q417Z5' where id=4; -update noar ti set v0='0V8L9WE7P3Q417Z5' where id=4; -update noar tt set b0='RL4YLL6FLGJ6S2J1' where id=4; -update noar ti set b0='RL4YLL6FLGJ6S2J1' where id=4; -update noar tt set v0='QFSKH2H1TS3BCNISDGH0' where id=4; -update noar ti set v0='QFSKH2H1TS3BCNISDGH0' where id=4; -update noar tt set b1='35QLAE3KA7PKEL7O9CGKK0PULE679C' where id=4; -update noar ti set b1='35QLAE3KA7PKEL7O9CGKK0PULE679C' where id=4; -update noar tt set v0='EQII2R355RSR' where id=4; -update noar ti set v0='EQII2R355RSR' where id=4; -update noar tt set b2='P6MDBFRNHDLWGI9OHO' where id=4; -update noar ti set b2='P6MDBFRNHDLWGI9OHO' where id=4; -update noar tt set v0='F3CL46CEH030ET6KW296UDFJ89XSLR' where id=5; -update noar ti set v0='F3CL46CEH030ET6KW296UDFJ89XSLR' where id=5; -update noar tt set b0='MQCEAXFPYQBQFPKC7QCD887X1UA4J' where id=5; -update noar ti set b0='MQCEAXFPYQBQFPKC7QCD887X1UA4J' where id=5; -update noar tt set v0='ZXRE5TYFAG4Z1VJIEZCY' where id=5; -update noar ti set v0='ZXRE5TYFAG4Z1VJIEZCY' where id=5; -update noar tt set b1='E2' where id=5; -update noar ti set b1='E2' where id=5; -update noar tt set v0='UL7EQXI7' where id=5; -update noar ti set v0='UL7EQXI7' where id=5; -update noar tt set b2='I8BC1Z' where id=5; -update noar ti set b2='I8BC1Z' where id=5; -update noar tt set v0='CQS6JNTZUDTERIHXWWTJHB40' where id=6; -update noar ti set v0='CQS6JNTZUDTERIHXWWTJHB40' where id=6; -update noar tt set b0='NQM2QIW' where id=6; -update noar ti set b0='NQM2QIW' where id=6; -update noar tt set v0='OCVQ828X97WN8' where id=6; -update noar ti set v0='OCVQ828X97WN8' where id=6; -update noar tt set b1='EEFEBSCQHC2' where id=6; -update noar ti set b1='EEFEBSCQHC2' where id=6; -update noar tt set v0='WG5YJ3IH3CYIKW17T0GVT' where id=6; -update noar ti set v0='WG5YJ3IH3CYIKW17T0GVT' where id=6; -update noar tt set b2='J8FTISLJ6OY43HSJM8' where id=6; -update noar ti set b2='J8FTISLJ6OY43HSJM8' where id=6; -update noar tt set v0='D63NS3K8GG' where id=7; -update noar ti set v0='D63NS3K8GG' where id=7; -update noar tt set b0='HQV4N0' where id=7; -update noar ti set b0='HQV4N0' where id=7; -update noar tt set v0='NLBFM6UXLAV8C04Q59' where id=7; -update noar ti set v0='NLBFM6UXLAV8C04Q59' where id=7; -update noar tt set b1='NB650R7J' where id=7; -update noar ti set b1='NB650R7J' where id=7; -update noar tt set v0='6UPSO6NOSR2ZW3VN44JQKAIX4Z' where id=7; -update noar ti set v0='6UPSO6NOSR2ZW3VN44JQKAIX4Z' where id=7; -update noar tt set b2='ORNLBCUZFR4VCYB96' where id=7; -update noar ti set b2='ORNLBCUZFR4VCYB96' where id=7; -update noar tt set v0='3RO482PQGYIBMWQ' where id=8; -update noar ti set v0='3RO482PQGYIBMWQ' where id=8; -update noar tt set b0='ZQ' where id=8; -update noar ti set b0='ZQ' where id=8; -update noar tt set v0='NS76MOHY' where id=8; -update noar ti set v0='NS76MOHY' where id=8; -update noar tt set b1='3DJSVFJM4CDFO42OBNML0DD' where id=8; -update noar ti set b1='3DJSVFJM4CDFO42OBNML0DD' where id=8; -update noar tt set v0='F8RF8BD' where id=8; -update noar ti set v0='F8RF8BD' where id=8; -update noar tt set b2='KAUSE91' where id=8; -update noar ti set b2='KAUSE91' where id=8; -update noar tt set v0='JN' where id=9; -update noar ti set v0='JN' where id=9; -update noar tt set b0='Z6KWLR' where id=9; -update noar ti set b0='Z6KWLR' where id=9; -update noar tt set v0='AWGO2VKOGWP79UOC2DH25EUQBL5Q' where id=9; -update noar ti set v0='AWGO2VKOGWP79UOC2DH25EUQBL5Q' where id=9; -update noar tt set b1='K9BO70L4M4BO4CDN4IO9' where id=9; -update noar ti set b1='K9BO70L4M4BO4CDN4IO9' where id=9; -update noar tt set v0='EO34' where id=9; -update noar ti set v0='EO34' where id=9; -update noar tt set b2='5TZWF3U9AEYMQIRS10' where id=9; -update noar ti set b2='5TZWF3U9AEYMQIRS10' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -f0 int null, -v0 varchar(32) null, -b0 longblob null, -b1 mediumblob null, -b2 blob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='NY2V9AYD28KL3MQ7BOU' where id=1; -update noar ti set v0='NY2V9AYD28KL3MQ7BOU' where id=1; -update noar tt set b0='GNAGKPJA6YRNGN4KN' where id=1; -update noar ti set b0='GNAGKPJA6YRNGN4KN' where id=1; -update noar tt set v0='986J0K48ZSZ5DEODKG30W72P' where id=1; -update noar ti set v0='986J0K48ZSZ5DEODKG30W72P' where id=1; -update noar tt set b1='EXI9D2AO0' where id=1; -update noar ti set b1='EXI9D2AO0' where id=1; -update noar tt set v0='PQC8YMO' where id=1; -update noar ti set v0='PQC8YMO' where id=1; -update noar tt set b2='9M1V87WDQ9JL8ZVQVOUVLBMT' where id=1; -update noar ti set b2='9M1V87WDQ9JL8ZVQVOUVLBMT' where id=1; -update noar tt set v0='U7DWK1JFZKOHO0' where id=2; -update noar ti set v0='U7DWK1JFZKOHO0' where id=2; -update noar tt set b0='SD6OSYJQ0UP3H95V9B0YWLH' where id=2; -update noar ti set b0='SD6OSYJQ0UP3H95V9B0YWLH' where id=2; -update noar tt set v0='NBJ304PT4KLMQCAYKWHYZKT9Z7' where id=2; -update noar ti set v0='NBJ304PT4KLMQCAYKWHYZKT9Z7' where id=2; -update noar tt set b1='8RXU115RILP4396UHKAGGS760' where id=2; -update noar ti set b1='8RXU115RILP4396UHKAGGS760' where id=2; -update noar tt set v0='A2SBP34613FAAA0QOI' where id=2; -update noar ti set v0='A2SBP34613FAAA0QOI' where id=2; -update noar tt set b2='MKVCN5DY9CE72K8NX14YW4' where id=2; -update noar ti set b2='MKVCN5DY9CE72K8NX14YW4' where id=2; -update noar tt set v0='T3F2H345ESDXDFRMEAC2ZT3B' where id=3; -update noar ti set v0='T3F2H345ESDXDFRMEAC2ZT3B' where id=3; -update noar tt set b0='GFAG1TKHE34M1' where id=3; -update noar ti set b0='GFAG1TKHE34M1' where id=3; -update noar tt set v0='L68WIMVP65' where id=3; -update noar ti set v0='L68WIMVP65' where id=3; -update noar tt set b1='HA8D9TUD2IV4Z16OB5CP5TUEZHVD5' where id=3; -update noar ti set b1='HA8D9TUD2IV4Z16OB5CP5TUEZHVD5' where id=3; -update noar tt set v0='AN9KA1YD3IF2CN2MMBW' where id=3; -update noar ti set v0='AN9KA1YD3IF2CN2MMBW' where id=3; -update noar tt set b2='JGEIOEXK2KR0GPPDLP0BRIUCKUHQRUQT' where id=3; -update noar ti set b2='JGEIOEXK2KR0GPPDLP0BRIUCKUHQRUQT' where id=3; -update noar tt set v0='8OR' where id=4; -update noar ti set v0='8OR' where id=4; -update noar tt set b0='A0I15NYCO' where id=4; -update noar ti set b0='A0I15NYCO' where id=4; -update noar tt set v0='6MJYG6QADFXS0SBQIGEB' where id=4; -update noar ti set v0='6MJYG6QADFXS0SBQIGEB' where id=4; -update noar tt set b1='8LDJM326VPILF9PO0NX9' where id=4; -update noar ti set b1='8LDJM326VPILF9PO0NX9' where id=4; -update noar tt set v0='9' where id=4; -update noar ti set v0='9' where id=4; -update noar tt set b2='MV7FMC1PWIE20TN30MSYH1Q98P7RJ' where id=4; -update noar ti set b2='MV7FMC1PWIE20TN30MSYH1Q98P7RJ' where id=4; -update noar tt set v0='K66A0FG20A2PR1KKYI7NEMRBODDMC' where id=5; -update noar ti set v0='K66A0FG20A2PR1KKYI7NEMRBODDMC' where id=5; -update noar tt set b0='2AWUIS5FJMD3E5LI33MN8E9CQHNEOVE' where id=5; -update noar ti set b0='2AWUIS5FJMD3E5LI33MN8E9CQHNEOVE' where id=5; -update noar tt set v0='Z7B9VR3B82H8KYIMDBWMNQ6RA8ZU65K' where id=5; -update noar ti set v0='Z7B9VR3B82H8KYIMDBWMNQ6RA8ZU65K' where id=5; -update noar tt set b1='N568K29XYH9ZF3XYDOGM0BS6201WB' where id=5; -update noar ti set b1='N568K29XYH9ZF3XYDOGM0BS6201WB' where id=5; -update noar tt set v0='V6LZL2BUJ' where id=5; -update noar ti set v0='V6LZL2BUJ' where id=5; -update noar tt set b2='SNMJ2R8FDL4BCIKQ5' where id=5; -update noar ti set b2='SNMJ2R8FDL4BCIKQ5' where id=5; -update noar tt set v0='61ZLFTCDMJPM0VIY1G0I5A' where id=6; -update noar ti set v0='61ZLFTCDMJPM0VIY1G0I5A' where id=6; -update noar tt set b0='L3MKS4JOQ0JNJZMNCZ4ZCPC1BW9' where id=6; -update noar ti set b0='L3MKS4JOQ0JNJZMNCZ4ZCPC1BW9' where id=6; -update noar tt set v0='7G2JYXUXWF4' where id=6; -update noar ti set v0='7G2JYXUXWF4' where id=6; -update noar tt set b1='E0E6CCGWJD7FC' where id=6; -update noar ti set b1='E0E6CCGWJD7FC' where id=6; -update noar tt set v0='XGUN6QNIEYNCTOT' where id=6; -update noar ti set v0='XGUN6QNIEYNCTOT' where id=6; -update noar tt set b2='QEU906YOVQ' where id=6; -update noar ti set b2='QEU906YOVQ' where id=6; -update noar tt set v0='UM' where id=7; -update noar ti set v0='UM' where id=7; -update noar tt set b0='OPG20V4XVH7VFHVS' where id=7; -update noar ti set b0='OPG20V4XVH7VFHVS' where id=7; -update noar tt set v0='JGLTG9Z5ND3GIH2ERFK3P4WNYSRC5' where id=7; -update noar ti set v0='JGLTG9Z5ND3GIH2ERFK3P4WNYSRC5' where id=7; -update noar tt set b1='BI4YIZ8TMQ' where id=7; -update noar ti set b1='BI4YIZ8TMQ' where id=7; -update noar tt set v0='CDF' where id=7; -update noar ti set v0='CDF' where id=7; -update noar tt set b2='K1846T0O2Z6PQQP05GKWDC1WZ6' where id=7; -update noar ti set b2='K1846T0O2Z6PQQP05GKWDC1WZ6' where id=7; -update noar tt set v0='WMZE9KY3X87UFEGX3I' where id=8; -update noar ti set v0='WMZE9KY3X87UFEGX3I' where id=8; -update noar tt set b0='TCIAC2BZWIVPQ9Q4ULH168QEHN8' where id=8; -update noar ti set b0='TCIAC2BZWIVPQ9Q4ULH168QEHN8' where id=8; -update noar tt set v0='MFSAHNC01KBVQQ75BC' where id=8; -update noar ti set v0='MFSAHNC01KBVQQ75BC' where id=8; -update noar tt set b1='K05O0BLUTOKTZF6ZJ3F' where id=8; -update noar ti set b1='K05O0BLUTOKTZF6ZJ3F' where id=8; -update noar tt set v0='M' where id=8; -update noar ti set v0='M' where id=8; -update noar tt set b2='EL5' where id=8; -update noar ti set b2='EL5' where id=8; -update noar tt set v0='CBXCGZYCLO0XEPNGVUVA' where id=9; -update noar ti set v0='CBXCGZYCLO0XEPNGVUVA' where id=9; -update noar tt set b0='0NFY2CYIFR' where id=9; -update noar ti set b0='0NFY2CYIFR' where id=9; -update noar tt set v0='EQGYRHPK836AOF' where id=9; -update noar ti set v0='EQGYRHPK836AOF' where id=9; -update noar tt set b1='QUFUPB09US52' where id=9; -update noar ti set b1='QUFUPB09US52' where id=9; -update noar tt set v0='TMT5B' where id=9; -update noar ti set v0='TMT5B' where id=9; -update noar tt set b2='S503WU5RTVN9B27' where id=9; -update noar ti set b2='S503WU5RTVN9B27' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -f0 int null, -v0 varchar(256) null, -b0 longblob null, -b1 mediumblob null, -b2 blob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='PU0243VWIF4B6XH53LHDDZMVRVYE4PJY' where id=1; -update noar ti set v0='PU0243VWIF4B6XH53LHDDZMVRVYE4PJY' where id=1; -update noar tt set b0='TD2Q53X2RUAGDI6A0CK2A9C2OF4VUK' where id=1; -update noar ti set b0='TD2Q53X2RUAGDI6A0CK2A9C2OF4VUK' where id=1; -update noar tt set v0='PG5VSTFS34O31D42A1WE2S' where id=1; -update noar ti set v0='PG5VSTFS34O31D42A1WE2S' where id=1; -update noar tt set b1='58EDT7WQ337DKZ6T016YWOJUHH' where id=1; -update noar ti set b1='58EDT7WQ337DKZ6T016YWOJUHH' where id=1; -update noar tt set v0='IODP3IKTLSW514079080WBTEZ' where id=1; -update noar ti set v0='IODP3IKTLSW514079080WBTEZ' where id=1; -update noar tt set b2='RH6OKNO2JOY2CXNNI5CLQFDZIGNL0Q' where id=1; -update noar ti set b2='RH6OKNO2JOY2CXNNI5CLQFDZIGNL0Q' where id=1; -update noar tt set v0='WXDP6T761RGM68FRZ31UEA11EOA2' where id=2; -update noar ti set v0='WXDP6T761RGM68FRZ31UEA11EOA2' where id=2; -update noar tt set b0='XWJZ67VKOOFBH27HP' where id=2; -update noar ti set b0='XWJZ67VKOOFBH27HP' where id=2; -update noar tt set v0='G1NWW83LA4QOTBL7VQ' where id=2; -update noar ti set v0='G1NWW83LA4QOTBL7VQ' where id=2; -update noar tt set b1='3TR833VN' where id=2; -update noar ti set b1='3TR833VN' where id=2; -update noar tt set v0='XLL1JHVPRABD' where id=2; -update noar ti set v0='XLL1JHVPRABD' where id=2; -update noar tt set b2='KR02VZPISZOX3' where id=2; -update noar ti set b2='KR02VZPISZOX3' where id=2; -update noar tt set v0='CSTJRDS3EDJLGZD' where id=3; -update noar ti set v0='CSTJRDS3EDJLGZD' where id=3; -update noar tt set b0='7U3YADF' where id=3; -update noar ti set b0='7U3YADF' where id=3; -update noar tt set v0='PA33FIMK' where id=3; -update noar ti set v0='PA33FIMK' where id=3; -update noar tt set b1='QLXWHDQL2J4PYPUMK50IZUMZF' where id=3; -update noar ti set b1='QLXWHDQL2J4PYPUMK50IZUMZF' where id=3; -update noar tt set v0='7OSIMBKV3' where id=3; -update noar ti set v0='7OSIMBKV3' where id=3; -update noar tt set b2='9P63D50WO' where id=3; -update noar ti set b2='9P63D50WO' where id=3; -update noar tt set v0='B' where id=4; -update noar ti set v0='B' where id=4; -update noar tt set b0='ZI60CR3YU' where id=4; -update noar ti set b0='ZI60CR3YU' where id=4; -update noar tt set v0='K7BM16E7EEC2SCT488OABNVMF' where id=4; -update noar ti set v0='K7BM16E7EEC2SCT488OABNVMF' where id=4; -update noar tt set b1='DFO4TZ3JI9B4' where id=4; -update noar ti set b1='DFO4TZ3JI9B4' where id=4; -update noar tt set v0='K77XRSWQTJTA12S73I47A739' where id=4; -update noar ti set v0='K77XRSWQTJTA12S73I47A739' where id=4; -update noar tt set b2='EO50VRN' where id=4; -update noar ti set b2='EO50VRN' where id=4; -update noar tt set v0='R38CI5QP6IHTL3RJAV' where id=5; -update noar ti set v0='R38CI5QP6IHTL3RJAV' where id=5; -update noar tt set b0='9JKZMR476BMU5LNH69HDOHV4E' where id=5; -update noar ti set b0='9JKZMR476BMU5LNH69HDOHV4E' where id=5; -update noar tt set v0='WTLOMCY9' where id=5; -update noar ti set v0='WTLOMCY9' where id=5; -update noar tt set b1='7P1' where id=5; -update noar ti set b1='7P1' where id=5; -update noar tt set v0='8JG0' where id=5; -update noar ti set v0='8JG0' where id=5; -update noar tt set b2='DYFL4CUNB' where id=5; -update noar ti set b2='DYFL4CUNB' where id=5; -update noar tt set v0='68WUG89' where id=6; -update noar ti set v0='68WUG89' where id=6; -update noar tt set b0='IJ0U3G585DNTV6KRA8Z7UMQ' where id=6; -update noar ti set b0='IJ0U3G585DNTV6KRA8Z7UMQ' where id=6; -update noar tt set v0='QSCJRC9Y8WVVMU4GSXL' where id=6; -update noar ti set v0='QSCJRC9Y8WVVMU4GSXL' where id=6; -update noar tt set b1='SSUH7EJ86PQC7R1PR' where id=6; -update noar ti set b1='SSUH7EJ86PQC7R1PR' where id=6; -update noar tt set v0='08BVPHGCTOYDJANC08U5U50XT' where id=6; -update noar ti set v0='08BVPHGCTOYDJANC08U5U50XT' where id=6; -update noar tt set b2='H7' where id=6; -update noar ti set b2='H7' where id=6; -update noar tt set v0='G6S8M1820V1XO74S5SQ' where id=7; -update noar ti set v0='G6S8M1820V1XO74S5SQ' where id=7; -update noar tt set b0='3H' where id=7; -update noar ti set b0='3H' where id=7; -update noar tt set v0='H0O9HZHX8XD73DRNW' where id=7; -update noar ti set v0='H0O9HZHX8XD73DRNW' where id=7; -update noar tt set b1='KO712MFU5OXPY6XLRAH4E3E9C' where id=7; -update noar ti set b1='KO712MFU5OXPY6XLRAH4E3E9C' where id=7; -update noar tt set v0='4ME5IJ60RGW8' where id=7; -update noar ti set v0='4ME5IJ60RGW8' where id=7; -update noar tt set b2='6' where id=7; -update noar ti set b2='6' where id=7; -update noar tt set v0='4G1XESX3UU7TX5QUUVDP' where id=8; -update noar ti set v0='4G1XESX3UU7TX5QUUVDP' where id=8; -update noar tt set b0='FQ6Y7AJB5B1KNI3O4WZ' where id=8; -update noar ti set b0='FQ6Y7AJB5B1KNI3O4WZ' where id=8; -update noar tt set v0='L8ADRM5UTXW' where id=8; -update noar ti set v0='L8ADRM5UTXW' where id=8; -update noar tt set b1='I58SCELVBM8ENNR1' where id=8; -update noar ti set b1='I58SCELVBM8ENNR1' where id=8; -update noar tt set v0='P6X02730A51CITJL2B5T1OU4PQFD855R' where id=8; -update noar ti set v0='P6X02730A51CITJL2B5T1OU4PQFD855R' where id=8; -update noar tt set b2='8OA6S0O5XV' where id=8; -update noar ti set b2='8OA6S0O5XV' where id=8; -update noar tt set v0='C' where id=9; -update noar ti set v0='C' where id=9; -update noar tt set b0='DYVA472M3CZIOATJ8' where id=9; -update noar ti set b0='DYVA472M3CZIOATJ8' where id=9; -update noar tt set v0='8L' where id=9; -update noar ti set v0='8L' where id=9; -update noar tt set b1='6E0KPQOR' where id=9; -update noar ti set b1='6E0KPQOR' where id=9; -update noar tt set v0='3Z45SH4X8B6FT07K' where id=9; -update noar ti set v0='3Z45SH4X8B6FT07K' where id=9; -update noar tt set b2='G0RAQNSEACS' where id=9; -update noar ti set b2='G0RAQNSEACS' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -f0 int not null, -v0 varchar(32) not null, -b0 longblob not null, -b1 mediumblob not null, -b2 blob not null -) engine=tokudb; -insert into tt values (1,0,'','','',''); -insert into tt values (2,0,'','','',''); -insert into tt values (3,0,'','','',''); -insert into tt values (4,0,'','','',''); -insert into tt values (5,0,'','','',''); -insert into tt values (6,0,'','','',''); -insert into tt values (7,0,'','','',''); -insert into tt values (8,0,'','','',''); -insert into tt values (9,0,'','','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='13YRU' where id=1; -update noar ti set v0='13YRU' where id=1; -update noar tt set b0='RY2V8YLWEL60PTHJO5GLKBM73AC' where id=1; -update noar ti set b0='RY2V8YLWEL60PTHJO5GLKBM73AC' where id=1; -update noar tt set v0='28CPM4LYE3QYH9JD05HSKWHHAQ9GJ' where id=1; -update noar ti set v0='28CPM4LYE3QYH9JD05HSKWHHAQ9GJ' where id=1; -update noar tt set b1='WFRDECHOEGAUXW71VURN6Q2A8' where id=1; -update noar ti set b1='WFRDECHOEGAUXW71VURN6Q2A8' where id=1; -update noar tt set v0='10S5F9RFU22M60T77Y4Y19RY0CQ7J' where id=1; -update noar ti set v0='10S5F9RFU22M60T77Y4Y19RY0CQ7J' where id=1; -update noar tt set b2='5UHXO' where id=1; -update noar ti set b2='5UHXO' where id=1; -update noar tt set v0='BGLOM0' where id=2; -update noar ti set v0='BGLOM0' where id=2; -update noar tt set b0='57BSMBFFYRTYYHHD7TXG3JVFARFQ' where id=2; -update noar ti set b0='57BSMBFFYRTYYHHD7TXG3JVFARFQ' where id=2; -update noar tt set v0='M6HLEVD9J67KV21PCLEDQXH4N' where id=2; -update noar ti set v0='M6HLEVD9J67KV21PCLEDQXH4N' where id=2; -update noar tt set b1='E1BNI02Z5I6W89Q' where id=2; -update noar ti set b1='E1BNI02Z5I6W89Q' where id=2; -update noar tt set v0='S9U342SAFFBVSV8HBFPGEA57N34X9U' where id=2; -update noar ti set v0='S9U342SAFFBVSV8HBFPGEA57N34X9U' where id=2; -update noar tt set b2='UVL37GGK9WY5P7R053VU503ZUQF61P' where id=2; -update noar ti set b2='UVL37GGK9WY5P7R053VU503ZUQF61P' where id=2; -update noar tt set v0='2ZZOKPMCJYMQG8Q9A2' where id=3; -update noar ti set v0='2ZZOKPMCJYMQG8Q9A2' where id=3; -update noar tt set b0='5X2O0NGRP8O14YCWJ2WPYEXTNGB' where id=3; -update noar ti set b0='5X2O0NGRP8O14YCWJ2WPYEXTNGB' where id=3; -update noar tt set v0='VIS1PZ83SJRLOE30HUJO7K9EPWOOZ' where id=3; -update noar ti set v0='VIS1PZ83SJRLOE30HUJO7K9EPWOOZ' where id=3; -update noar tt set b1='JNI' where id=3; -update noar ti set b1='JNI' where id=3; -update noar tt set v0='I86WBGJ7UO' where id=3; -update noar ti set v0='I86WBGJ7UO' where id=3; -update noar tt set b2='KV9EQ3AO0NCDGY2HKI1' where id=3; -update noar ti set b2='KV9EQ3AO0NCDGY2HKI1' where id=3; -update noar tt set v0='0FR13GFXWT6A' where id=4; -update noar ti set v0='0FR13GFXWT6A' where id=4; -update noar tt set b0='T5PXLME89GEJIQGSFLWH7' where id=4; -update noar ti set b0='T5PXLME89GEJIQGSFLWH7' where id=4; -update noar tt set v0='AXJIMRV4AACRMERBZHWNZYS7' where id=4; -update noar ti set v0='AXJIMRV4AACRMERBZHWNZYS7' where id=4; -update noar tt set b1='X' where id=4; -update noar ti set b1='X' where id=4; -update noar tt set v0='UC4IH59N2KOQWIUZT66DV3818' where id=4; -update noar ti set v0='UC4IH59N2KOQWIUZT66DV3818' where id=4; -update noar tt set b2='NLU8A8UKTK9F648EWNQHQ' where id=4; -update noar ti set b2='NLU8A8UKTK9F648EWNQHQ' where id=4; -update noar tt set v0='WUQRPE' where id=5; -update noar ti set v0='WUQRPE' where id=5; -update noar tt set b0='SSZXOCKA3EIF4FGFIIGC7W' where id=5; -update noar ti set b0='SSZXOCKA3EIF4FGFIIGC7W' where id=5; -update noar tt set v0='RFQ4NIIXYXPQGS6HX0LS6QYKEOT0C' where id=5; -update noar ti set v0='RFQ4NIIXYXPQGS6HX0LS6QYKEOT0C' where id=5; -update noar tt set b1='G0' where id=5; -update noar ti set b1='G0' where id=5; -update noar tt set v0='HSYK' where id=5; -update noar ti set v0='HSYK' where id=5; -update noar tt set b2='1TIS2BSHSFS2' where id=5; -update noar ti set b2='1TIS2BSHSFS2' where id=5; -update noar tt set v0='VJVHOZ0ZJVRYFNWRIOAZZAE1Y4DNU2GL' where id=6; -update noar ti set v0='VJVHOZ0ZJVRYFNWRIOAZZAE1Y4DNU2GL' where id=6; -update noar tt set b0='RX4CW00Z07R60QD04GZ3AA9HPG80P' where id=6; -update noar ti set b0='RX4CW00Z07R60QD04GZ3AA9HPG80P' where id=6; -update noar tt set v0='CKKEMN9HN0PHYCW93TUK680LU836WUQI' where id=6; -update noar ti set v0='CKKEMN9HN0PHYCW93TUK680LU836WUQI' where id=6; -update noar tt set b1='M6J3MW1RN9EDUGEQDBLOXGCK7PUZC39C' where id=6; -update noar ti set b1='M6J3MW1RN9EDUGEQDBLOXGCK7PUZC39C' where id=6; -update noar tt set v0='7HBUD1IX0SYW7P6' where id=6; -update noar ti set v0='7HBUD1IX0SYW7P6' where id=6; -update noar tt set b2='L7SN1I8' where id=6; -update noar ti set b2='L7SN1I8' where id=6; -update noar tt set v0='K827W6QROVQE0ZCAHLLWTWE7' where id=7; -update noar ti set v0='K827W6QROVQE0ZCAHLLWTWE7' where id=7; -update noar tt set b0='ZIRT3HUAYYOGAPBLAYQO03H' where id=7; -update noar ti set b0='ZIRT3HUAYYOGAPBLAYQO03H' where id=7; -update noar tt set v0='VCF0AYOOJ26NMZ4GA7PM' where id=7; -update noar ti set v0='VCF0AYOOJ26NMZ4GA7PM' where id=7; -update noar tt set b1='MRBRCR1PWAC9HR2B2G2' where id=7; -update noar ti set b1='MRBRCR1PWAC9HR2B2G2' where id=7; -update noar tt set v0='XPBWZF2VK' where id=7; -update noar ti set v0='XPBWZF2VK' where id=7; -update noar tt set b2='X82Q2U83BJRBNXW6NT3L' where id=7; -update noar ti set b2='X82Q2U83BJRBNXW6NT3L' where id=7; -update noar tt set v0='53XNMDTGTWELZPEJ9GDNVC0I' where id=8; -update noar ti set v0='53XNMDTGTWELZPEJ9GDNVC0I' where id=8; -update noar tt set b0='53KEDWGVCNC6RJPKK' where id=8; -update noar ti set b0='53KEDWGVCNC6RJPKK' where id=8; -update noar tt set v0='JRTYKPMVJTZZE' where id=8; -update noar ti set v0='JRTYKPMVJTZZE' where id=8; -update noar tt set b1='X1NGRWUSX6' where id=8; -update noar ti set b1='X1NGRWUSX6' where id=8; -update noar tt set v0='RKBR7FOTNDVSO3' where id=8; -update noar ti set v0='RKBR7FOTNDVSO3' where id=8; -update noar tt set b2='GR' where id=8; -update noar ti set b2='GR' where id=8; -update noar tt set v0='WYO' where id=9; -update noar ti set v0='WYO' where id=9; -update noar tt set b0='U08SNEV3U3SUDPE05LITOMR77' where id=9; -update noar ti set b0='U08SNEV3U3SUDPE05LITOMR77' where id=9; -update noar tt set v0='6L3L6FWLZCT' where id=9; -update noar ti set v0='6L3L6FWLZCT' where id=9; -update noar tt set b1='6BC54JOSGZVB' where id=9; -update noar ti set b1='6BC54JOSGZVB' where id=9; -update noar tt set v0='KP6HATGVF' where id=9; -update noar ti set v0='KP6HATGVF' where id=9; -update noar tt set b2='30R0W256SGTR1IGGLT5A0TJUZX' where id=9; -update noar ti set b2='30R0W256SGTR1IGGLT5A0TJUZX' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -f0 int not null, -v0 varchar(256) not null, -b0 longblob not null, -b1 mediumblob not null, -b2 blob not null -) engine=tokudb; -insert into tt values (1,0,'','','',''); -insert into tt values (2,0,'','','',''); -insert into tt values (3,0,'','','',''); -insert into tt values (4,0,'','','',''); -insert into tt values (5,0,'','','',''); -insert into tt values (6,0,'','','',''); -insert into tt values (7,0,'','','',''); -insert into tt values (8,0,'','','',''); -insert into tt values (9,0,'','','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='M91AP06W697DLGNYDQ' where id=1; -update noar ti set v0='M91AP06W697DLGNYDQ' where id=1; -update noar tt set b0='WFDAHZMNCU43Q' where id=1; -update noar ti set b0='WFDAHZMNCU43Q' where id=1; -update noar tt set v0='VP34CV5WT66' where id=1; -update noar ti set v0='VP34CV5WT66' where id=1; -update noar tt set b1='MH46QOYX43FGR1G48H1MQOD' where id=1; -update noar ti set b1='MH46QOYX43FGR1G48H1MQOD' where id=1; -update noar tt set v0='423TAD7T91Y1E94VGC26CVV4W24SM1PT' where id=1; -update noar ti set v0='423TAD7T91Y1E94VGC26CVV4W24SM1PT' where id=1; -update noar tt set b2='N3Q043CNTKV20LNH6X5T' where id=1; -update noar ti set b2='N3Q043CNTKV20LNH6X5T' where id=1; -update noar tt set v0='ZBWF131G0KDB' where id=2; -update noar ti set v0='ZBWF131G0KDB' where id=2; -update noar tt set b0='X84' where id=2; -update noar ti set b0='X84' where id=2; -update noar tt set v0='8ZR4AOD' where id=2; -update noar ti set v0='8ZR4AOD' where id=2; -update noar tt set b1='VGRTFJ48FI0HX8XFKD2CRWS' where id=2; -update noar ti set b1='VGRTFJ48FI0HX8XFKD2CRWS' where id=2; -update noar tt set v0='63JYKWV46HV08HJIV5M1' where id=2; -update noar ti set v0='63JYKWV46HV08HJIV5M1' where id=2; -update noar tt set b2='YUJDIQBKG5QLYE6ZA6AEF6PCDH76K9' where id=2; -update noar ti set b2='YUJDIQBKG5QLYE6ZA6AEF6PCDH76K9' where id=2; -update noar tt set v0='4GJSF' where id=3; -update noar ti set v0='4GJSF' where id=3; -update noar tt set b0='TKTO4JCXSZEKM28WLLA03U9YNEX11LPU' where id=3; -update noar ti set b0='TKTO4JCXSZEKM28WLLA03U9YNEX11LPU' where id=3; -update noar tt set v0='X179U' where id=3; -update noar ti set v0='X179U' where id=3; -update noar tt set b1='YE8QLET' where id=3; -update noar ti set b1='YE8QLET' where id=3; -update noar tt set v0='QXX2EDQ72UR41OFT4RKL' where id=3; -update noar ti set v0='QXX2EDQ72UR41OFT4RKL' where id=3; -update noar tt set b2='9IN4TGJI0M3C28T6K090Z3GJ22M7' where id=3; -update noar ti set b2='9IN4TGJI0M3C28T6K090Z3GJ22M7' where id=3; -update noar tt set v0='R1LR0BU781VQH9YNDR9TC' where id=4; -update noar ti set v0='R1LR0BU781VQH9YNDR9TC' where id=4; -update noar tt set b0='CF20MW0PJEDADAAWX3OVDKLW4OM1EXA8' where id=4; -update noar ti set b0='CF20MW0PJEDADAAWX3OVDKLW4OM1EXA8' where id=4; -update noar tt set v0='Q1QSWRVN' where id=4; -update noar ti set v0='Q1QSWRVN' where id=4; -update noar tt set b1='4ZQPNIXREP3W0ROQ8TMJD8S' where id=4; -update noar ti set b1='4ZQPNIXREP3W0ROQ8TMJD8S' where id=4; -update noar tt set v0='FLHMN92346E' where id=4; -update noar ti set v0='FLHMN92346E' where id=4; -update noar tt set b2='2' where id=4; -update noar ti set b2='2' where id=4; -update noar tt set v0='4BHTTJHCCTV0Q9SH' where id=5; -update noar ti set v0='4BHTTJHCCTV0Q9SH' where id=5; -update noar tt set b0='L2XSM3SNNFZYJ8TWTQH90SEKWJ4WEV' where id=5; -update noar ti set b0='L2XSM3SNNFZYJ8TWTQH90SEKWJ4WEV' where id=5; -update noar tt set v0='4' where id=5; -update noar ti set v0='4' where id=5; -update noar tt set b1='3BIP35NZ091ZGJFHKEZR6AFE' where id=5; -update noar ti set b1='3BIP35NZ091ZGJFHKEZR6AFE' where id=5; -update noar tt set v0='Z0JOVB8YQXYUZCG3' where id=5; -update noar ti set v0='Z0JOVB8YQXYUZCG3' where id=5; -update noar tt set b2='R' where id=5; -update noar ti set b2='R' where id=5; -update noar tt set v0='LRPLON0QPLAXN72LVEIPYV' where id=6; -update noar ti set v0='LRPLON0QPLAXN72LVEIPYV' where id=6; -update noar tt set b0='DHYIKBWWKME2L0SO1HIRT27E0RSEE' where id=6; -update noar ti set b0='DHYIKBWWKME2L0SO1HIRT27E0RSEE' where id=6; -update noar tt set v0='ZBK11UTXJL83E7J0YCWT9B' where id=6; -update noar ti set v0='ZBK11UTXJL83E7J0YCWT9B' where id=6; -update noar tt set b1='BM48FL2S0160X21SQU0M7V0GN8R' where id=6; -update noar ti set b1='BM48FL2S0160X21SQU0M7V0GN8R' where id=6; -update noar tt set v0='R1JQ8EH3P' where id=6; -update noar ti set v0='R1JQ8EH3P' where id=6; -update noar tt set b2='SIIZOUOLMW4' where id=6; -update noar ti set b2='SIIZOUOLMW4' where id=6; -update noar tt set v0='2WOLIFVUIXE10YIKPS8ASZ1URZ5TN1VH' where id=7; -update noar ti set v0='2WOLIFVUIXE10YIKPS8ASZ1URZ5TN1VH' where id=7; -update noar tt set b0='3HH5ZYF' where id=7; -update noar ti set b0='3HH5ZYF' where id=7; -update noar tt set v0='Z9HKX7Q93ZBUWGGG9OJ7' where id=7; -update noar ti set v0='Z9HKX7Q93ZBUWGGG9OJ7' where id=7; -update noar tt set b1='AA1L4NVNZ7PIK431FYKKEIN9PDX' where id=7; -update noar ti set b1='AA1L4NVNZ7PIK431FYKKEIN9PDX' where id=7; -update noar tt set v0='Z31UX09LP8YAORHPKBW5Z14NSZBKXYZ' where id=7; -update noar ti set v0='Z31UX09LP8YAORHPKBW5Z14NSZBKXYZ' where id=7; -update noar tt set b2='6J73A7' where id=7; -update noar ti set b2='6J73A7' where id=7; -update noar tt set v0='XCRDMJGUDH' where id=8; -update noar ti set v0='XCRDMJGUDH' where id=8; -update noar tt set b0='MYU59R5' where id=8; -update noar ti set b0='MYU59R5' where id=8; -update noar tt set v0='2RZ4BZT43FNDPANPPIB4IOE' where id=8; -update noar ti set v0='2RZ4BZT43FNDPANPPIB4IOE' where id=8; -update noar tt set b1='S3XOCZ' where id=8; -update noar ti set b1='S3XOCZ' where id=8; -update noar tt set v0='R6SZLL8Y79M43F6C8WO0VH0DN' where id=8; -update noar ti set v0='R6SZLL8Y79M43F6C8WO0VH0DN' where id=8; -update noar tt set b2='KXFZN4SHRSY2MXZNBPU13RHD' where id=8; -update noar ti set b2='KXFZN4SHRSY2MXZNBPU13RHD' where id=8; -update noar tt set v0='XWRZBI03EZ2ZN3HT' where id=9; -update noar ti set v0='XWRZBI03EZ2ZN3HT' where id=9; -update noar tt set b0='DE360E3PXUJ6' where id=9; -update noar ti set b0='DE360E3PXUJ6' where id=9; -update noar tt set v0='YZE60BFK' where id=9; -update noar ti set v0='YZE60BFK' where id=9; -update noar tt set b1='D5S2S4I9LEN' where id=9; -update noar ti set b1='D5S2S4I9LEN' where id=9; -update noar tt set v0='30C1' where id=9; -update noar ti set v0='30C1' where id=9; -update noar tt set b2='B749A33E4X57LCY7I45' where id=9; -update noar ti set b2='B749A33E4X57LCY7I45' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -f0 int null, -v0 varchar(32) null, -b0 longblob null, -b1 mediumblob null, -b2 mediumblob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='00FB6PZZRH8VF6MKRIPFZQ6PRP6J' where id=1; -update noar ti set v0='00FB6PZZRH8VF6MKRIPFZQ6PRP6J' where id=1; -update noar tt set b0='8R2TBRF3YEE7LGFGR3CICN6A' where id=1; -update noar ti set b0='8R2TBRF3YEE7LGFGR3CICN6A' where id=1; -update noar tt set v0='AAFIWC9KRCEIMPJE6DXCL01' where id=1; -update noar ti set v0='AAFIWC9KRCEIMPJE6DXCL01' where id=1; -update noar tt set b1='BC7I85KLFN0H6MZHP1GDVELNVR' where id=1; -update noar ti set b1='BC7I85KLFN0H6MZHP1GDVELNVR' where id=1; -update noar tt set v0='IXUGHC' where id=1; -update noar ti set v0='IXUGHC' where id=1; -update noar tt set b2='G5AQZZ395G51RNMY7Y5E8D3U' where id=1; -update noar ti set b2='G5AQZZ395G51RNMY7Y5E8D3U' where id=1; -update noar tt set v0='09IH2LSETI1RUWLPR70NJ6HQ' where id=2; -update noar ti set v0='09IH2LSETI1RUWLPR70NJ6HQ' where id=2; -update noar tt set b0='TM9LRQCSIN5N6Q4KUZRB1' where id=2; -update noar ti set b0='TM9LRQCSIN5N6Q4KUZRB1' where id=2; -update noar tt set v0='FT' where id=2; -update noar ti set v0='FT' where id=2; -update noar tt set b1='EJFPN8' where id=2; -update noar ti set b1='EJFPN8' where id=2; -update noar tt set v0='2A0' where id=2; -update noar ti set v0='2A0' where id=2; -update noar tt set b2='GJL709' where id=2; -update noar ti set b2='GJL709' where id=2; -update noar tt set v0='OLX2PSVBXWS0C71JOZJB' where id=3; -update noar ti set v0='OLX2PSVBXWS0C71JOZJB' where id=3; -update noar tt set b0='EMV3BIN2SP' where id=3; -update noar ti set b0='EMV3BIN2SP' where id=3; -update noar tt set v0='UIRC5JL' where id=3; -update noar ti set v0='UIRC5JL' where id=3; -update noar tt set b1='195I3WA6NYCYW1YASG0ZJ700TNONWEUP' where id=3; -update noar ti set b1='195I3WA6NYCYW1YASG0ZJ700TNONWEUP' where id=3; -update noar tt set v0='P9WF2VRNU6TNSF8O6V8H25PITG3CY' where id=3; -update noar ti set v0='P9WF2VRNU6TNSF8O6V8H25PITG3CY' where id=3; -update noar tt set b2='IM1XYJCMAP920EO2LGFQBFCWY3G' where id=3; -update noar ti set b2='IM1XYJCMAP920EO2LGFQBFCWY3G' where id=3; -update noar tt set v0='SBKUH35FAH48UB0YP4EW' where id=4; -update noar ti set v0='SBKUH35FAH48UB0YP4EW' where id=4; -update noar tt set b0='FTC1BVAZQTPWTQ0' where id=4; -update noar ti set b0='FTC1BVAZQTPWTQ0' where id=4; -update noar tt set v0='S3ZX5KB77454KVR06GAYDTS' where id=4; -update noar ti set v0='S3ZX5KB77454KVR06GAYDTS' where id=4; -update noar tt set b1='XL9L5PG9H541R76HFPR' where id=4; -update noar ti set b1='XL9L5PG9H541R76HFPR' where id=4; -update noar tt set v0='LR7MFNWGUI4YVT' where id=4; -update noar ti set v0='LR7MFNWGUI4YVT' where id=4; -update noar tt set b2='96FVYVM9OKZM0' where id=4; -update noar ti set b2='96FVYVM9OKZM0' where id=4; -update noar tt set v0='YL5XWTGFQ4HG95KNG7' where id=5; -update noar ti set v0='YL5XWTGFQ4HG95KNG7' where id=5; -update noar tt set b0='F7RU567MOYILMM0J83GNTC' where id=5; -update noar ti set b0='F7RU567MOYILMM0J83GNTC' where id=5; -update noar tt set v0='M6FX' where id=5; -update noar ti set v0='M6FX' where id=5; -update noar tt set b1='XB0YJTA' where id=5; -update noar ti set b1='XB0YJTA' where id=5; -update noar tt set v0='MN1H1FFV6HQD0LH38831KFSL3VLM' where id=5; -update noar ti set v0='MN1H1FFV6HQD0LH38831KFSL3VLM' where id=5; -update noar tt set b2='CQQ0XD27ASX0OTQ05DO2HGMWHJN2JB' where id=5; -update noar ti set b2='CQQ0XD27ASX0OTQ05DO2HGMWHJN2JB' where id=5; -update noar tt set v0='WJB85SDF7HGXOW4' where id=6; -update noar ti set v0='WJB85SDF7HGXOW4' where id=6; -update noar tt set b0='OWLGVRB2MZVP1U148CP' where id=6; -update noar ti set b0='OWLGVRB2MZVP1U148CP' where id=6; -update noar tt set v0='QZ78KXHAUUGSPXV' where id=6; -update noar ti set v0='QZ78KXHAUUGSPXV' where id=6; -update noar tt set b1='UC0KTMXW5RJF105646Q' where id=6; -update noar ti set b1='UC0KTMXW5RJF105646Q' where id=6; -update noar tt set v0='HGPUOYEL17YEHOJ5PWLKBLKO' where id=6; -update noar ti set v0='HGPUOYEL17YEHOJ5PWLKBLKO' where id=6; -update noar tt set b2='ZZ8QIL06NJW' where id=6; -update noar ti set b2='ZZ8QIL06NJW' where id=6; -update noar tt set v0='HHE4BLRWYL8MW312' where id=7; -update noar ti set v0='HHE4BLRWYL8MW312' where id=7; -update noar tt set b0='6BPQ7F6Y4T03S8U' where id=7; -update noar ti set b0='6BPQ7F6Y4T03S8U' where id=7; -update noar tt set v0='3B' where id=7; -update noar ti set v0='3B' where id=7; -update noar tt set b1='332B9K18TRAW7G2T' where id=7; -update noar ti set b1='332B9K18TRAW7G2T' where id=7; -update noar tt set v0='6S' where id=7; -update noar ti set v0='6S' where id=7; -update noar tt set b2='PGWRUCBGDWJBPQZNC828N4OQN' where id=7; -update noar ti set b2='PGWRUCBGDWJBPQZNC828N4OQN' where id=7; -update noar tt set v0='104IA' where id=8; -update noar ti set v0='104IA' where id=8; -update noar tt set b0='RZCE88WILA8XAQQ6B50WM' where id=8; -update noar ti set b0='RZCE88WILA8XAQQ6B50WM' where id=8; -update noar tt set v0='X8LI' where id=8; -update noar ti set v0='X8LI' where id=8; -update noar tt set b1='8NST28S5DJRV75TRI09M1MU2HDHNI4G' where id=8; -update noar ti set b1='8NST28S5DJRV75TRI09M1MU2HDHNI4G' where id=8; -update noar tt set v0='3' where id=8; -update noar ti set v0='3' where id=8; -update noar tt set b2='OLK72EDBVAK07WA5' where id=8; -update noar ti set b2='OLK72EDBVAK07WA5' where id=8; -update noar tt set v0='GAQ1DY7XOX8O' where id=9; -update noar ti set v0='GAQ1DY7XOX8O' where id=9; -update noar tt set b0='XH75R7N5W1QDBYB5LO9FCRJLF04R' where id=9; -update noar ti set b0='XH75R7N5W1QDBYB5LO9FCRJLF04R' where id=9; -update noar tt set v0='KSL0EQIBOIM5' where id=9; -update noar ti set v0='KSL0EQIBOIM5' where id=9; -update noar tt set b1='8JHI51DRO8DU165WZV61SJ8E5ANSJG' where id=9; -update noar ti set b1='8JHI51DRO8DU165WZV61SJ8E5ANSJG' where id=9; -update noar tt set v0='1WRL7K7T' where id=9; -update noar ti set v0='1WRL7K7T' where id=9; -update noar tt set b2='ZAQ1A4658AI' where id=9; -update noar ti set b2='ZAQ1A4658AI' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -f0 int null, -v0 varchar(256) null, -b0 longblob null, -b1 mediumblob null, -b2 mediumblob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='H7PWUSSI7CLDO' where id=1; -update noar ti set v0='H7PWUSSI7CLDO' where id=1; -update noar tt set b0='QHV9BDB8NJ8H8VL7Q8770ZPHRPDT6' where id=1; -update noar ti set b0='QHV9BDB8NJ8H8VL7Q8770ZPHRPDT6' where id=1; -update noar tt set v0='JD8R9J8GB08J3HIQPZ0C' where id=1; -update noar ti set v0='JD8R9J8GB08J3HIQPZ0C' where id=1; -update noar tt set b1='S9FGA3606KWD03IRGMPT86YR5OK3VV' where id=1; -update noar ti set b1='S9FGA3606KWD03IRGMPT86YR5OK3VV' where id=1; -update noar tt set v0='0Z8SM37F8Z9G2ZF774BMPHHV0C31RD' where id=1; -update noar ti set v0='0Z8SM37F8Z9G2ZF774BMPHHV0C31RD' where id=1; -update noar tt set b2='KTW941MFT4HCM' where id=1; -update noar ti set b2='KTW941MFT4HCM' where id=1; -update noar tt set v0='KWTBDNBNO9PL7M7NY9P' where id=2; -update noar ti set v0='KWTBDNBNO9PL7M7NY9P' where id=2; -update noar tt set b0='BZT64' where id=2; -update noar ti set b0='BZT64' where id=2; -update noar tt set v0='F30VO50IIHERLQHBEZRFMIA3AKH4MRHU' where id=2; -update noar ti set v0='F30VO50IIHERLQHBEZRFMIA3AKH4MRHU' where id=2; -update noar tt set b1='P7G10ZMN6928HUKBP0T' where id=2; -update noar ti set b1='P7G10ZMN6928HUKBP0T' where id=2; -update noar tt set v0='2I3ZAJIFLHA67IE' where id=2; -update noar ti set v0='2I3ZAJIFLHA67IE' where id=2; -update noar tt set b2='4L6PX54NP1VIJ27KYYSXUPYF91LQHC' where id=2; -update noar ti set b2='4L6PX54NP1VIJ27KYYSXUPYF91LQHC' where id=2; -update noar tt set v0='SL9WN43MI9N' where id=3; -update noar ti set v0='SL9WN43MI9N' where id=3; -update noar tt set b0='OZDH5W7BZRIKXVGLERSD' where id=3; -update noar ti set b0='OZDH5W7BZRIKXVGLERSD' where id=3; -update noar tt set v0='8IABTKDP3O35GY5S7MNV' where id=3; -update noar ti set v0='8IABTKDP3O35GY5S7MNV' where id=3; -update noar tt set b1='T8W' where id=3; -update noar ti set b1='T8W' where id=3; -update noar tt set v0='WBV6LIQRKUO1HWZOG0QOI0Z' where id=3; -update noar ti set v0='WBV6LIQRKUO1HWZOG0QOI0Z' where id=3; -update noar tt set b2='YYWKKQTU20ZS15MO6Q63L0D' where id=3; -update noar ti set b2='YYWKKQTU20ZS15MO6Q63L0D' where id=3; -update noar tt set v0='PRDLCXAU4J6UHU90EO1HVWM1NMITR' where id=4; -update noar ti set v0='PRDLCXAU4J6UHU90EO1HVWM1NMITR' where id=4; -update noar tt set b0='7W' where id=4; -update noar ti set b0='7W' where id=4; -update noar tt set v0='AJ17PND6CVNTYB28TAJTHHG1PE' where id=4; -update noar ti set v0='AJ17PND6CVNTYB28TAJTHHG1PE' where id=4; -update noar tt set b1='KXZSFUE5AL099UI0TZXXUO10J' where id=4; -update noar ti set b1='KXZSFUE5AL099UI0TZXXUO10J' where id=4; -update noar tt set v0='X' where id=4; -update noar ti set v0='X' where id=4; -update noar tt set b2='Q3Y9QBJGCE6FAL' where id=4; -update noar ti set b2='Q3Y9QBJGCE6FAL' where id=4; -update noar tt set v0='09H70FKTTM4D34X3TGNQID2' where id=5; -update noar ti set v0='09H70FKTTM4D34X3TGNQID2' where id=5; -update noar tt set b0='TX6A4KP2P7JELQNBMXGN04PDNP' where id=5; -update noar ti set b0='TX6A4KP2P7JELQNBMXGN04PDNP' where id=5; -update noar tt set v0='ZLT57ZRR50CTPLPWEF3DZK' where id=5; -update noar ti set v0='ZLT57ZRR50CTPLPWEF3DZK' where id=5; -update noar tt set b1='NZ09BRYPUX' where id=5; -update noar ti set b1='NZ09BRYPUX' where id=5; -update noar tt set v0='V1EHU2C7QDT2N3L4CHDKA' where id=5; -update noar ti set v0='V1EHU2C7QDT2N3L4CHDKA' where id=5; -update noar tt set b2='638DN7UG5FZ608O7SXHCNC29GJA5PPPC' where id=5; -update noar ti set b2='638DN7UG5FZ608O7SXHCNC29GJA5PPPC' where id=5; -update noar tt set v0='PUTUB8X4BT1T09YL6YQKWENNTB3PX4' where id=6; -update noar ti set v0='PUTUB8X4BT1T09YL6YQKWENNTB3PX4' where id=6; -update noar tt set b0='D58FU7Z9Q' where id=6; -update noar ti set b0='D58FU7Z9Q' where id=6; -update noar tt set v0='ZE03V1UICLY9' where id=6; -update noar ti set v0='ZE03V1UICLY9' where id=6; -update noar tt set b1='G5QERH5OM769V' where id=6; -update noar ti set b1='G5QERH5OM769V' where id=6; -update noar tt set v0='F2N5KW2' where id=6; -update noar ti set v0='F2N5KW2' where id=6; -update noar tt set b2='0XP4E3' where id=6; -update noar ti set b2='0XP4E3' where id=6; -update noar tt set v0='FDEBKIWKZ92BH7939WG4JG8D' where id=7; -update noar ti set v0='FDEBKIWKZ92BH7939WG4JG8D' where id=7; -update noar tt set b0='PNJ4QYU' where id=7; -update noar ti set b0='PNJ4QYU' where id=7; -update noar tt set v0='58B485L2JEFXJASSJ79L4P691EPUO' where id=7; -update noar ti set v0='58B485L2JEFXJASSJ79L4P691EPUO' where id=7; -update noar tt set b1='IWBJ43FLI5L284AC88M8FW' where id=7; -update noar ti set b1='IWBJ43FLI5L284AC88M8FW' where id=7; -update noar tt set v0='D6NG6SSKBMFXWP9XPFMX' where id=7; -update noar ti set v0='D6NG6SSKBMFXWP9XPFMX' where id=7; -update noar tt set b2='92PBWEYRMTIXS25K' where id=7; -update noar ti set b2='92PBWEYRMTIXS25K' where id=7; -update noar tt set v0='RFX3QIFOD7A4H8PYIPZ5AM' where id=8; -update noar ti set v0='RFX3QIFOD7A4H8PYIPZ5AM' where id=8; -update noar tt set b0='HYL1WXSL7VBJ8C' where id=8; -update noar ti set b0='HYL1WXSL7VBJ8C' where id=8; -update noar tt set v0='5HBD3J0DYNU0HQC7OTC6E5GD6OS6' where id=8; -update noar ti set v0='5HBD3J0DYNU0HQC7OTC6E5GD6OS6' where id=8; -update noar tt set b1='I93RGDK2S2IBYSJX683M8XI4TM6F' where id=8; -update noar ti set b1='I93RGDK2S2IBYSJX683M8XI4TM6F' where id=8; -update noar tt set v0='86MYBJHMKEIVUYAUHTX5UJC3F' where id=8; -update noar ti set v0='86MYBJHMKEIVUYAUHTX5UJC3F' where id=8; -update noar tt set b2='ACBVT2NWF5QL' where id=8; -update noar ti set b2='ACBVT2NWF5QL' where id=8; -update noar tt set v0='GVXBOH50YB9CZQZSHPBB41LJL7XFPRSZ' where id=9; -update noar ti set v0='GVXBOH50YB9CZQZSHPBB41LJL7XFPRSZ' where id=9; -update noar tt set b0='82YAEK23VOIVH2B' where id=9; -update noar ti set b0='82YAEK23VOIVH2B' where id=9; -update noar tt set v0='AYZ1' where id=9; -update noar ti set v0='AYZ1' where id=9; -update noar tt set b1='J6TWWGAU7Y3SB1ZC1UPAHBU' where id=9; -update noar ti set b1='J6TWWGAU7Y3SB1ZC1UPAHBU' where id=9; -update noar tt set v0='2G1KBSPXPEDJTI9L' where id=9; -update noar ti set v0='2G1KBSPXPEDJTI9L' where id=9; -update noar tt set b2='D25OPT0JBWKE6MZGX' where id=9; -update noar ti set b2='D25OPT0JBWKE6MZGX' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -f0 int not null, -v0 varchar(32) not null, -b0 longblob not null, -b1 mediumblob not null, -b2 mediumblob not null -) engine=tokudb; -insert into tt values (1,0,'','','',''); -insert into tt values (2,0,'','','',''); -insert into tt values (3,0,'','','',''); -insert into tt values (4,0,'','','',''); -insert into tt values (5,0,'','','',''); -insert into tt values (6,0,'','','',''); -insert into tt values (7,0,'','','',''); -insert into tt values (8,0,'','','',''); -insert into tt values (9,0,'','','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='19WRBYZHOSNVJZTEW4BX5' where id=1; -update noar ti set v0='19WRBYZHOSNVJZTEW4BX5' where id=1; -update noar tt set b0='5NLLUTTYGXEJG' where id=1; -update noar ti set b0='5NLLUTTYGXEJG' where id=1; -update noar tt set v0='UAZKSN883G60G' where id=1; -update noar ti set v0='UAZKSN883G60G' where id=1; -update noar tt set b1='8ZUGO0XKJZFEUJ2ISHVYO' where id=1; -update noar ti set b1='8ZUGO0XKJZFEUJ2ISHVYO' where id=1; -update noar tt set v0='V6AVPVY2' where id=1; -update noar ti set v0='V6AVPVY2' where id=1; -update noar tt set b2='M83SQO5F7FTUIOF5VA7QXFHFHXP0582G' where id=1; -update noar ti set b2='M83SQO5F7FTUIOF5VA7QXFHFHXP0582G' where id=1; -update noar tt set v0='A55' where id=2; -update noar ti set v0='A55' where id=2; -update noar tt set b0='8BIXZ4SLL8Y3BJ' where id=2; -update noar ti set b0='8BIXZ4SLL8Y3BJ' where id=2; -update noar tt set v0='9E5T5ZHNFPXYJA0WMZQ' where id=2; -update noar ti set v0='9E5T5ZHNFPXYJA0WMZQ' where id=2; -update noar tt set b1='JSUL91' where id=2; -update noar ti set b1='JSUL91' where id=2; -update noar tt set v0='LWLQWLO7TJ91' where id=2; -update noar ti set v0='LWLQWLO7TJ91' where id=2; -update noar tt set b2='3BV4PS98UHJN7A4TI3TW7V92593' where id=2; -update noar ti set b2='3BV4PS98UHJN7A4TI3TW7V92593' where id=2; -update noar tt set v0='Y2HLYCMU5KPDMKR2RQW1KKKL9QKRUBE' where id=3; -update noar ti set v0='Y2HLYCMU5KPDMKR2RQW1KKKL9QKRUBE' where id=3; -update noar tt set b0='U3AWTAA7CY5X3RWK2NJNRVASNTZDC3' where id=3; -update noar ti set b0='U3AWTAA7CY5X3RWK2NJNRVASNTZDC3' where id=3; -update noar tt set v0='159GG0L3U8K8WOVX5KS8' where id=3; -update noar ti set v0='159GG0L3U8K8WOVX5KS8' where id=3; -update noar tt set b1='5JJN0WB5W' where id=3; -update noar ti set b1='5JJN0WB5W' where id=3; -update noar tt set v0='TG4XTMQWTF113PMOQXARUP6CNN898D' where id=3; -update noar ti set v0='TG4XTMQWTF113PMOQXARUP6CNN898D' where id=3; -update noar tt set b2='RDIKUPFLJMXEIO6V3LANGO' where id=3; -update noar ti set b2='RDIKUPFLJMXEIO6V3LANGO' where id=3; -update noar tt set v0='GAQCGTP18GHBEAZ9JHNDB2H12EMBA' where id=4; -update noar ti set v0='GAQCGTP18GHBEAZ9JHNDB2H12EMBA' where id=4; -update noar tt set b0='SJ8DBKD97A0NPJ9UFCZQ5XSPDQOHA' where id=4; -update noar ti set b0='SJ8DBKD97A0NPJ9UFCZQ5XSPDQOHA' where id=4; -update noar tt set v0='HNJ4DMWVAREEK8RM1R8RBQ2UC0USLEL' where id=4; -update noar ti set v0='HNJ4DMWVAREEK8RM1R8RBQ2UC0USLEL' where id=4; -update noar tt set b1='VRD5TZ263YVJE741QUHVQH15V0M9F' where id=4; -update noar ti set b1='VRD5TZ263YVJE741QUHVQH15V0M9F' where id=4; -update noar tt set v0='J3QGZUIH4FNEETIOXN' where id=4; -update noar ti set v0='J3QGZUIH4FNEETIOXN' where id=4; -update noar tt set b2='YA9A8ZG0I2EMDRQPZJJ5G9UQUQI' where id=4; -update noar ti set b2='YA9A8ZG0I2EMDRQPZJJ5G9UQUQI' where id=4; -update noar tt set v0='FJS7OTAA05IFMCA8W4TFQSOPCK51JL' where id=5; -update noar ti set v0='FJS7OTAA05IFMCA8W4TFQSOPCK51JL' where id=5; -update noar tt set b0='E1JVFVFNKMLM31ES2TQ8P' where id=5; -update noar ti set b0='E1JVFVFNKMLM31ES2TQ8P' where id=5; -update noar tt set v0='VE028ZUFMNF2E' where id=5; -update noar ti set v0='VE028ZUFMNF2E' where id=5; -update noar tt set b1='Y' where id=5; -update noar ti set b1='Y' where id=5; -update noar tt set v0='LN2IYOLXWKDU864JUK8UB5' where id=5; -update noar ti set v0='LN2IYOLXWKDU864JUK8UB5' where id=5; -update noar tt set b2='VIM983X3O4P2HHKEPCSJ7T0D4EUT' where id=5; -update noar ti set b2='VIM983X3O4P2HHKEPCSJ7T0D4EUT' where id=5; -update noar tt set v0='G0WVNZ' where id=6; -update noar ti set v0='G0WVNZ' where id=6; -update noar tt set b0='X3YSYRK7GA' where id=6; -update noar ti set b0='X3YSYRK7GA' where id=6; -update noar tt set v0='CWH0XWJOUIA9813EIVCJ22N' where id=6; -update noar ti set v0='CWH0XWJOUIA9813EIVCJ22N' where id=6; -update noar tt set b1='BHQ41RGENUD' where id=6; -update noar ti set b1='BHQ41RGENUD' where id=6; -update noar tt set v0='F1UM7L39EOAO6N847IK7QBNA84QCQ' where id=6; -update noar ti set v0='F1UM7L39EOAO6N847IK7QBNA84QCQ' where id=6; -update noar tt set b2='RORZW0DXLOYT5K18H6C7D9Z1WBK0G' where id=6; -update noar ti set b2='RORZW0DXLOYT5K18H6C7D9Z1WBK0G' where id=6; -update noar tt set v0='8H587RNNMIR2FIE7NH01MP7Y2Q1' where id=7; -update noar ti set v0='8H587RNNMIR2FIE7NH01MP7Y2Q1' where id=7; -update noar tt set b0='RFMGAYF089WSL9EA7FLILK85J81UV' where id=7; -update noar ti set b0='RFMGAYF089WSL9EA7FLILK85J81UV' where id=7; -update noar tt set v0='VJSY6JER0HHFP4MUM9LNBAY' where id=7; -update noar ti set v0='VJSY6JER0HHFP4MUM9LNBAY' where id=7; -update noar tt set b1='H63NZISDDG' where id=7; -update noar ti set b1='H63NZISDDG' where id=7; -update noar tt set v0='STR0C39QZ1GU9K5YZLBRL3QTV5PQX3' where id=7; -update noar ti set v0='STR0C39QZ1GU9K5YZLBRL3QTV5PQX3' where id=7; -update noar tt set b2='X8GU0O3JSG0Z3ZNPZ8LPM9KG8ZUUO' where id=7; -update noar ti set b2='X8GU0O3JSG0Z3ZNPZ8LPM9KG8ZUUO' where id=7; -update noar tt set v0='C5UX96BGJAGGFCBV2LLGD6GPW1' where id=8; -update noar ti set v0='C5UX96BGJAGGFCBV2LLGD6GPW1' where id=8; -update noar tt set b0='6PCSJXA2BV0IX6C4Q83167RZAG3U8' where id=8; -update noar ti set b0='6PCSJXA2BV0IX6C4Q83167RZAG3U8' where id=8; -update noar tt set v0='ZAC159HQCC26J3ZEL3LXQ6GF8F' where id=8; -update noar ti set v0='ZAC159HQCC26J3ZEL3LXQ6GF8F' where id=8; -update noar tt set b1='Q2B8HJL07A8ZI3HF0S15S' where id=8; -update noar ti set b1='Q2B8HJL07A8ZI3HF0S15S' where id=8; -update noar tt set v0='C3RAXUVXJHKZAV458GYVJ' where id=8; -update noar ti set v0='C3RAXUVXJHKZAV458GYVJ' where id=8; -update noar tt set b2='FB99J0JUK' where id=8; -update noar ti set b2='FB99J0JUK' where id=8; -update noar tt set v0='RLFAPPNF' where id=9; -update noar ti set v0='RLFAPPNF' where id=9; -update noar tt set b0='NEW3N1VI5LB08NYG38889DBXBC2NS' where id=9; -update noar ti set b0='NEW3N1VI5LB08NYG38889DBXBC2NS' where id=9; -update noar tt set v0='DELZ1' where id=9; -update noar ti set v0='DELZ1' where id=9; -update noar tt set b1='S' where id=9; -update noar ti set b1='S' where id=9; -update noar tt set v0='JU2' where id=9; -update noar ti set v0='JU2' where id=9; -update noar tt set b2='F139IV56DMN20MZG9DR2D' where id=9; -update noar ti set b2='F139IV56DMN20MZG9DR2D' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -f0 int not null, -v0 varchar(256) not null, -b0 longblob not null, -b1 mediumblob not null, -b2 mediumblob not null -) engine=tokudb; -insert into tt values (1,0,'','','',''); -insert into tt values (2,0,'','','',''); -insert into tt values (3,0,'','','',''); -insert into tt values (4,0,'','','',''); -insert into tt values (5,0,'','','',''); -insert into tt values (6,0,'','','',''); -insert into tt values (7,0,'','','',''); -insert into tt values (8,0,'','','',''); -insert into tt values (9,0,'','','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='SV0I' where id=1; -update noar ti set v0='SV0I' where id=1; -update noar tt set b0='KYMCXW37ZZYG9G1WF5ATXZKKKP' where id=1; -update noar ti set b0='KYMCXW37ZZYG9G1WF5ATXZKKKP' where id=1; -update noar tt set v0='MDKL6V' where id=1; -update noar ti set v0='MDKL6V' where id=1; -update noar tt set b1='MD4I9' where id=1; -update noar ti set b1='MD4I9' where id=1; -update noar tt set v0='YRMD9J0S33QTI9IIU0TI' where id=1; -update noar ti set v0='YRMD9J0S33QTI9IIU0TI' where id=1; -update noar tt set b2='K6' where id=1; -update noar ti set b2='K6' where id=1; -update noar tt set v0='6YXAOZDH0MGSQQK7ITJB' where id=2; -update noar ti set v0='6YXAOZDH0MGSQQK7ITJB' where id=2; -update noar tt set b0='KX4604VMO2H8XLHK9991OA' where id=2; -update noar ti set b0='KX4604VMO2H8XLHK9991OA' where id=2; -update noar tt set v0='RWDD74PFGPZU929A69' where id=2; -update noar ti set v0='RWDD74PFGPZU929A69' where id=2; -update noar tt set b1='VEZYHQKCXB79AUNRTN9YHY5P4' where id=2; -update noar ti set b1='VEZYHQKCXB79AUNRTN9YHY5P4' where id=2; -update noar tt set v0='VCCHNOCTD0KD9LNGWARX61ZP37MFEP' where id=2; -update noar ti set v0='VCCHNOCTD0KD9LNGWARX61ZP37MFEP' where id=2; -update noar tt set b2='VC6I970OBZDVQ8FNMS8Q210WSQ' where id=2; -update noar ti set b2='VC6I970OBZDVQ8FNMS8Q210WSQ' where id=2; -update noar tt set v0='NWD' where id=3; -update noar ti set v0='NWD' where id=3; -update noar tt set b0='0VHIDTC5JFAJB9BLX5QRWM7' where id=3; -update noar ti set b0='0VHIDTC5JFAJB9BLX5QRWM7' where id=3; -update noar tt set v0='HITJS54ZP1IHZ68T5AWZV9YPGS6' where id=3; -update noar ti set v0='HITJS54ZP1IHZ68T5AWZV9YPGS6' where id=3; -update noar tt set b1='N9QHQ14Y7' where id=3; -update noar ti set b1='N9QHQ14Y7' where id=3; -update noar tt set v0='E3ZCYHVHJUMRH557COJ9AW66WZL' where id=3; -update noar ti set v0='E3ZCYHVHJUMRH557COJ9AW66WZL' where id=3; -update noar tt set b2='44OU4CUBY8Z8GW7ZEFYYJ' where id=3; -update noar ti set b2='44OU4CUBY8Z8GW7ZEFYYJ' where id=3; -update noar tt set v0='UIA27FV2PWKWD1' where id=4; -update noar ti set v0='UIA27FV2PWKWD1' where id=4; -update noar tt set b0='8QE' where id=4; -update noar ti set b0='8QE' where id=4; -update noar tt set v0='Q' where id=4; -update noar ti set v0='Q' where id=4; -update noar tt set b1='Q2KMULE3' where id=4; -update noar ti set b1='Q2KMULE3' where id=4; -update noar tt set v0='YQ8OSCP9LM9W77YT6LBNZHC' where id=4; -update noar ti set v0='YQ8OSCP9LM9W77YT6LBNZHC' where id=4; -update noar tt set b2='99GLQ19ZZYHHU1WK6GFG' where id=4; -update noar ti set b2='99GLQ19ZZYHHU1WK6GFG' where id=4; -update noar tt set v0='B8IBBYQR3X4V' where id=5; -update noar ti set v0='B8IBBYQR3X4V' where id=5; -update noar tt set b0='F05Z4R0R7CZOBS5' where id=5; -update noar ti set b0='F05Z4R0R7CZOBS5' where id=5; -update noar tt set v0='JMGENIVG' where id=5; -update noar ti set v0='JMGENIVG' where id=5; -update noar tt set b1='FPQFEBR0SNDPFZ10N43BRN' where id=5; -update noar ti set b1='FPQFEBR0SNDPFZ10N43BRN' where id=5; -update noar tt set v0='DWQEAT8R1GU1UP043WW' where id=5; -update noar ti set v0='DWQEAT8R1GU1UP043WW' where id=5; -update noar tt set b2='3249945GFY9EOZR9ZLYQQD65V24' where id=5; -update noar ti set b2='3249945GFY9EOZR9ZLYQQD65V24' where id=5; -update noar tt set v0='48JZTBIWYK5Z' where id=6; -update noar ti set v0='48JZTBIWYK5Z' where id=6; -update noar tt set b0='3H8SVB1P17GET7EPIYG2MQ9ZNJ77Y02O' where id=6; -update noar ti set b0='3H8SVB1P17GET7EPIYG2MQ9ZNJ77Y02O' where id=6; -update noar tt set v0='23K8V7LX0AEOA74U9RQC3RS3GOOD1' where id=6; -update noar ti set v0='23K8V7LX0AEOA74U9RQC3RS3GOOD1' where id=6; -update noar tt set b1='GXADYKHDGDFCQ0N' where id=6; -update noar ti set b1='GXADYKHDGDFCQ0N' where id=6; -update noar tt set v0='DUKD05KLP0VDYFX0MB0JJ3TSG' where id=6; -update noar ti set v0='DUKD05KLP0VDYFX0MB0JJ3TSG' where id=6; -update noar tt set b2='DRP4RVCCMQT577SVE402NZ' where id=6; -update noar ti set b2='DRP4RVCCMQT577SVE402NZ' where id=6; -update noar tt set v0='58RFM0SYRWFARK' where id=7; -update noar ti set v0='58RFM0SYRWFARK' where id=7; -update noar tt set b0='88UZW72BTIRS1' where id=7; -update noar ti set b0='88UZW72BTIRS1' where id=7; -update noar tt set v0='NEQWA2TA40O3' where id=7; -update noar ti set v0='NEQWA2TA40O3' where id=7; -update noar tt set b1='G90ASRGC4BST' where id=7; -update noar ti set b1='G90ASRGC4BST' where id=7; -update noar tt set v0='VOMQ7G7XTVRY' where id=7; -update noar ti set v0='VOMQ7G7XTVRY' where id=7; -update noar tt set b2='96DLBNYMGQMBS' where id=7; -update noar ti set b2='96DLBNYMGQMBS' where id=7; -update noar tt set v0='S' where id=8; -update noar ti set v0='S' where id=8; -update noar tt set b0='J4HL4ATOGX4FJ7MSPDWQLP6Z2D' where id=8; -update noar ti set b0='J4HL4ATOGX4FJ7MSPDWQLP6Z2D' where id=8; -update noar tt set v0='8ZDMVNZSE38MRNPOB' where id=8; -update noar ti set v0='8ZDMVNZSE38MRNPOB' where id=8; -update noar tt set b1='J8VNWGHLWZ4Y6C' where id=8; -update noar ti set b1='J8VNWGHLWZ4Y6C' where id=8; -update noar tt set v0='6KAC16J06245FUPO3I' where id=8; -update noar ti set v0='6KAC16J06245FUPO3I' where id=8; -update noar tt set b2='SGD6M' where id=8; -update noar ti set b2='SGD6M' where id=8; -update noar tt set v0='MYF02N' where id=9; -update noar ti set v0='MYF02N' where id=9; -update noar tt set b0='EMFT87852EDNAY6GCIRU1H5JKKB4' where id=9; -update noar ti set b0='EMFT87852EDNAY6GCIRU1H5JKKB4' where id=9; -update noar tt set v0='LU6IZ9Y4KZ6XYKGEF9YY9' where id=9; -update noar ti set v0='LU6IZ9Y4KZ6XYKGEF9YY9' where id=9; -update noar tt set b1='JY5UGRX' where id=9; -update noar ti set b1='JY5UGRX' where id=9; -update noar tt set v0='3T5PRLJ3MVUN1MU61' where id=9; -update noar ti set v0='3T5PRLJ3MVUN1MU61' where id=9; -update noar tt set b2='295XFAMRT' where id=9; -update noar ti set b2='295XFAMRT' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -f0 int null, -v0 varchar(32) null, -b0 longblob null, -b1 mediumblob null, -b2 longblob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='53GM4O1DEVA23I501' where id=1; -update noar ti set v0='53GM4O1DEVA23I501' where id=1; -update noar tt set b0='TZHNQO02UW2ZI0NDG' where id=1; -update noar ti set b0='TZHNQO02UW2ZI0NDG' where id=1; -update noar tt set v0='BIWM4X0EL13' where id=1; -update noar ti set v0='BIWM4X0EL13' where id=1; -update noar tt set b1='D1Z0Y6X6VS7EEOCE35HM2H7ZBN5O81OF' where id=1; -update noar ti set b1='D1Z0Y6X6VS7EEOCE35HM2H7ZBN5O81OF' where id=1; -update noar tt set v0='0I9TZG9JE6A9LJTUZZMGY9BIAQM' where id=1; -update noar ti set v0='0I9TZG9JE6A9LJTUZZMGY9BIAQM' where id=1; -update noar tt set b2='DTBGWI45DT0JH5VM18' where id=1; -update noar ti set b2='DTBGWI45DT0JH5VM18' where id=1; -update noar tt set v0='R63SJ9WSTG9QXD5JOEO9A' where id=2; -update noar ti set v0='R63SJ9WSTG9QXD5JOEO9A' where id=2; -update noar tt set b0='C8EBOM3KUSK4UPNGKUC07Q67' where id=2; -update noar ti set b0='C8EBOM3KUSK4UPNGKUC07Q67' where id=2; -update noar tt set v0='MKSC' where id=2; -update noar ti set v0='MKSC' where id=2; -update noar tt set b1='RU92ZFBZ8NA2ZYVQ' where id=2; -update noar ti set b1='RU92ZFBZ8NA2ZYVQ' where id=2; -update noar tt set v0='YHZDKHH5L32PMPVH314BVFC' where id=2; -update noar ti set v0='YHZDKHH5L32PMPVH314BVFC' where id=2; -update noar tt set b2='RBXKHMSY' where id=2; -update noar ti set b2='RBXKHMSY' where id=2; -update noar tt set v0='VABOMGJ0ZOA0EP1SB3XC5NRE' where id=3; -update noar ti set v0='VABOMGJ0ZOA0EP1SB3XC5NRE' where id=3; -update noar tt set b0='G2RXB62681' where id=3; -update noar ti set b0='G2RXB62681' where id=3; -update noar tt set v0='10BU6RUQIPRD4DMKOR46MGBIUN8173' where id=3; -update noar ti set v0='10BU6RUQIPRD4DMKOR46MGBIUN8173' where id=3; -update noar tt set b1='8C7H0E' where id=3; -update noar ti set b1='8C7H0E' where id=3; -update noar tt set v0='TH9LIPWC' where id=3; -update noar ti set v0='TH9LIPWC' where id=3; -update noar tt set b2='VGTX4UL3Q34AY9SZK53MMOF' where id=3; -update noar ti set b2='VGTX4UL3Q34AY9SZK53MMOF' where id=3; -update noar tt set v0='YSM04' where id=4; -update noar ti set v0='YSM04' where id=4; -update noar tt set b0='C5' where id=4; -update noar ti set b0='C5' where id=4; -update noar tt set v0='982IFQ8DXI0MMHXTHGDY' where id=4; -update noar ti set v0='982IFQ8DXI0MMHXTHGDY' where id=4; -update noar tt set b1='I8F93LP9BYT6' where id=4; -update noar ti set b1='I8F93LP9BYT6' where id=4; -update noar tt set v0='SN' where id=4; -update noar ti set v0='SN' where id=4; -update noar tt set b2='EES7IGO1FD72CPSMQ2BGP4' where id=4; -update noar ti set b2='EES7IGO1FD72CPSMQ2BGP4' where id=4; -update noar tt set v0='SIRX7721I' where id=5; -update noar ti set v0='SIRX7721I' where id=5; -update noar tt set b0='V5G0EKJ4AD4BXM2N6VQYJ7' where id=5; -update noar ti set b0='V5G0EKJ4AD4BXM2N6VQYJ7' where id=5; -update noar tt set v0='DVT4X6PV7C8PLYXMMZOTY' where id=5; -update noar ti set v0='DVT4X6PV7C8PLYXMMZOTY' where id=5; -update noar tt set b1='SQUGGBCBBSEEYPOZFKARB397K6LRG' where id=5; -update noar ti set b1='SQUGGBCBBSEEYPOZFKARB397K6LRG' where id=5; -update noar tt set v0='DJS0J6GOUY6JB6UPFUK35AT77U4KZ' where id=5; -update noar ti set v0='DJS0J6GOUY6JB6UPFUK35AT77U4KZ' where id=5; -update noar tt set b2='7T8KSWKU49SF0U52S5P05' where id=5; -update noar ti set b2='7T8KSWKU49SF0U52S5P05' where id=5; -update noar tt set v0='8T2UQUX11AKE2U5AQLEY' where id=6; -update noar ti set v0='8T2UQUX11AKE2U5AQLEY' where id=6; -update noar tt set b0='VMNBOUGFTAXLJ3LCO7Q6CO' where id=6; -update noar ti set b0='VMNBOUGFTAXLJ3LCO7Q6CO' where id=6; -update noar tt set v0='9JDVBN2SMHEZS2L069SRBOUD' where id=6; -update noar ti set v0='9JDVBN2SMHEZS2L069SRBOUD' where id=6; -update noar tt set b1='Z3JOHLX39C0RE' where id=6; -update noar ti set b1='Z3JOHLX39C0RE' where id=6; -update noar tt set v0='GCQZLR4JZ871S' where id=6; -update noar ti set v0='GCQZLR4JZ871S' where id=6; -update noar tt set b2='DT3W' where id=6; -update noar ti set b2='DT3W' where id=6; -update noar tt set v0='FFWRTK6ZH0R8628EPGG9MA' where id=7; -update noar ti set v0='FFWRTK6ZH0R8628EPGG9MA' where id=7; -update noar tt set b0='L3O' where id=7; -update noar ti set b0='L3O' where id=7; -update noar tt set v0='LKN7YQETMUGY' where id=7; -update noar ti set v0='LKN7YQETMUGY' where id=7; -update noar tt set b1='POZS4Z75WVQT4DPLQTPAAFIOI1PYN' where id=7; -update noar ti set b1='POZS4Z75WVQT4DPLQTPAAFIOI1PYN' where id=7; -update noar tt set v0='IQ4HHO7A' where id=7; -update noar ti set v0='IQ4HHO7A' where id=7; -update noar tt set b2='P2UA49ZAEK0' where id=7; -update noar ti set b2='P2UA49ZAEK0' where id=7; -update noar tt set v0='EL06087A6ZHWXO73FIFK2M4ZFZVQ9B' where id=8; -update noar ti set v0='EL06087A6ZHWXO73FIFK2M4ZFZVQ9B' where id=8; -update noar tt set b0='OBG8R' where id=8; -update noar ti set b0='OBG8R' where id=8; -update noar tt set v0='NEZ0B6GW20GINB' where id=8; -update noar ti set v0='NEZ0B6GW20GINB' where id=8; -update noar tt set b1='460I5CCIEHK' where id=8; -update noar ti set b1='460I5CCIEHK' where id=8; -update noar tt set v0='RZ' where id=8; -update noar ti set v0='RZ' where id=8; -update noar tt set b2='2CSP' where id=8; -update noar ti set b2='2CSP' where id=8; -update noar tt set v0='SOTUGJT6OK0JDFU0L' where id=9; -update noar ti set v0='SOTUGJT6OK0JDFU0L' where id=9; -update noar tt set b0='NFFOG4527YDL7PH345Z1FCF' where id=9; -update noar ti set b0='NFFOG4527YDL7PH345Z1FCF' where id=9; -update noar tt set v0='DLNRAMVOZMF7H6Q8VO5WITXRLSCFKAT' where id=9; -update noar ti set v0='DLNRAMVOZMF7H6Q8VO5WITXRLSCFKAT' where id=9; -update noar tt set b1='OOD8' where id=9; -update noar ti set b1='OOD8' where id=9; -update noar tt set v0='KLOIJPKGCKZEM' where id=9; -update noar ti set v0='KLOIJPKGCKZEM' where id=9; -update noar tt set b2='GB9BOCGXG70' where id=9; -update noar ti set b2='GB9BOCGXG70' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -f0 int null, -v0 varchar(256) null, -b0 longblob null, -b1 mediumblob null, -b2 longblob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='L4RISOX3VAO1PZB' where id=1; -update noar ti set v0='L4RISOX3VAO1PZB' where id=1; -update noar tt set b0='NDO6MKQJVC5K7' where id=1; -update noar ti set b0='NDO6MKQJVC5K7' where id=1; -update noar tt set v0='G' where id=1; -update noar ti set v0='G' where id=1; -update noar tt set b1='G77HCANFT4MZP033AMIGXIN7Z3UPDEHR' where id=1; -update noar ti set b1='G77HCANFT4MZP033AMIGXIN7Z3UPDEHR' where id=1; -update noar tt set v0='J' where id=1; -update noar ti set v0='J' where id=1; -update noar tt set b2='C9YBTLKJSX1KECNYGT' where id=1; -update noar ti set b2='C9YBTLKJSX1KECNYGT' where id=1; -update noar tt set v0='YUJ' where id=2; -update noar ti set v0='YUJ' where id=2; -update noar tt set b0='Y57T0S2AVVHU5LXPH1ATVYEM56UED4U' where id=2; -update noar ti set b0='Y57T0S2AVVHU5LXPH1ATVYEM56UED4U' where id=2; -update noar tt set v0='BM' where id=2; -update noar ti set v0='BM' where id=2; -update noar tt set b1='H1GGH7V709TWJ' where id=2; -update noar ti set b1='H1GGH7V709TWJ' where id=2; -update noar tt set v0='HZGCQ6L3L8V3YJJ4WHRD2BPLJ' where id=2; -update noar ti set v0='HZGCQ6L3L8V3YJJ4WHRD2BPLJ' where id=2; -update noar tt set b2='Q9CEF81OEU' where id=2; -update noar ti set b2='Q9CEF81OEU' where id=2; -update noar tt set v0='2FVB' where id=3; -update noar ti set v0='2FVB' where id=3; -update noar tt set b0='LBI8DQ6PO3WL5HPA43' where id=3; -update noar ti set b0='LBI8DQ6PO3WL5HPA43' where id=3; -update noar tt set v0='TQ89DWT51' where id=3; -update noar ti set v0='TQ89DWT51' where id=3; -update noar tt set b1='UPTOMLQ4Y' where id=3; -update noar ti set b1='UPTOMLQ4Y' where id=3; -update noar tt set v0='EYBXFY9D9SL4CX31PW2A3K8V' where id=3; -update noar ti set v0='EYBXFY9D9SL4CX31PW2A3K8V' where id=3; -update noar tt set b2='ZQKCUAZBZ' where id=3; -update noar ti set b2='ZQKCUAZBZ' where id=3; -update noar tt set v0='HXRKKFK36YSNQSXZIKCD3X0YWFI5JOI' where id=4; -update noar ti set v0='HXRKKFK36YSNQSXZIKCD3X0YWFI5JOI' where id=4; -update noar tt set b0='B814' where id=4; -update noar ti set b0='B814' where id=4; -update noar tt set v0='H1LFUKRH3W82E92YUVTFUE4' where id=4; -update noar ti set v0='H1LFUKRH3W82E92YUVTFUE4' where id=4; -update noar tt set b1='Y57' where id=4; -update noar ti set b1='Y57' where id=4; -update noar tt set v0='ODXL1WRAR1GWSUZW1WITRU02HI' where id=4; -update noar ti set v0='ODXL1WRAR1GWSUZW1WITRU02HI' where id=4; -update noar tt set b2='SO' where id=4; -update noar ti set b2='SO' where id=4; -update noar tt set v0='DCSHUYWOBZSEO2S7P66IBHE1OD' where id=5; -update noar ti set v0='DCSHUYWOBZSEO2S7P66IBHE1OD' where id=5; -update noar tt set b0='5ZC2A' where id=5; -update noar ti set b0='5ZC2A' where id=5; -update noar tt set v0='0PMNIF34E59R9IXHAWK36H' where id=5; -update noar ti set v0='0PMNIF34E59R9IXHAWK36H' where id=5; -update noar tt set b1='WL3S2DPE' where id=5; -update noar ti set b1='WL3S2DPE' where id=5; -update noar tt set v0='L8RLGVU2P36DB' where id=5; -update noar ti set v0='L8RLGVU2P36DB' where id=5; -update noar tt set b2='4C147CE2O8KNI5MJS3LAZQ' where id=5; -update noar ti set b2='4C147CE2O8KNI5MJS3LAZQ' where id=5; -update noar tt set v0='62SHHUOC0ZAXM' where id=6; -update noar ti set v0='62SHHUOC0ZAXM' where id=6; -update noar tt set b0='XJWYW' where id=6; -update noar ti set b0='XJWYW' where id=6; -update noar tt set v0='8DUOQ90ETELRNHQE' where id=6; -update noar ti set v0='8DUOQ90ETELRNHQE' where id=6; -update noar tt set b1='43E1DS2RG2KKYAYPHMBA' where id=6; -update noar ti set b1='43E1DS2RG2KKYAYPHMBA' where id=6; -update noar tt set v0='436UBFXCZX4OIU' where id=6; -update noar ti set v0='436UBFXCZX4OIU' where id=6; -update noar tt set b2='MP6Y' where id=6; -update noar ti set b2='MP6Y' where id=6; -update noar tt set v0='CZE5EHSLWEZ9RQ' where id=7; -update noar ti set v0='CZE5EHSLWEZ9RQ' where id=7; -update noar tt set b0='APGF951C76TFJBXLRZAOQ71W7Q' where id=7; -update noar ti set b0='APGF951C76TFJBXLRZAOQ71W7Q' where id=7; -update noar tt set v0='WGLT01U8U4AI1X9Y' where id=7; -update noar ti set v0='WGLT01U8U4AI1X9Y' where id=7; -update noar tt set b1='82H3YR9DPUU9KA3KRD5QH5MOUXP553M' where id=7; -update noar ti set b1='82H3YR9DPUU9KA3KRD5QH5MOUXP553M' where id=7; -update noar tt set v0='7PEY8MRS5X7TRM' where id=7; -update noar ti set v0='7PEY8MRS5X7TRM' where id=7; -update noar tt set b2='SVT88RR48B50BSQI0ZK' where id=7; -update noar ti set b2='SVT88RR48B50BSQI0ZK' where id=7; -update noar tt set v0='3H0QUW' where id=8; -update noar ti set v0='3H0QUW' where id=8; -update noar tt set b0='EA5NX7TGDM100VBQUNMDBO27NYLMJ' where id=8; -update noar ti set b0='EA5NX7TGDM100VBQUNMDBO27NYLMJ' where id=8; -update noar tt set v0='XKK9U3Y4W58Y1YXABY' where id=8; -update noar ti set v0='XKK9U3Y4W58Y1YXABY' where id=8; -update noar tt set b1='MMIU4NQ5LV0HPBOB4H3MHAFEL4Q' where id=8; -update noar ti set b1='MMIU4NQ5LV0HPBOB4H3MHAFEL4Q' where id=8; -update noar tt set v0='QZBNALCNAQVYNKO3MSAUQ39RH' where id=8; -update noar ti set v0='QZBNALCNAQVYNKO3MSAUQ39RH' where id=8; -update noar tt set b2='NJ5' where id=8; -update noar ti set b2='NJ5' where id=8; -update noar tt set v0='ZL8IDMBL7TWY' where id=9; -update noar ti set v0='ZL8IDMBL7TWY' where id=9; -update noar tt set b0='9XJARF' where id=9; -update noar ti set b0='9XJARF' where id=9; -update noar tt set v0='GI4T4IFWO4S38BY6YUMU2S6B3NIKG' where id=9; -update noar ti set v0='GI4T4IFWO4S38BY6YUMU2S6B3NIKG' where id=9; -update noar tt set b1='A1OJXJQK5G6AX2IN' where id=9; -update noar ti set b1='A1OJXJQK5G6AX2IN' where id=9; -update noar tt set v0='AEL51' where id=9; -update noar ti set v0='AEL51' where id=9; -update noar tt set b2='POBL1ER37YN7Y5U' where id=9; -update noar ti set b2='POBL1ER37YN7Y5U' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -f0 int not null, -v0 varchar(32) not null, -b0 longblob not null, -b1 mediumblob not null, -b2 longblob not null -) engine=tokudb; -insert into tt values (1,0,'','','',''); -insert into tt values (2,0,'','','',''); -insert into tt values (3,0,'','','',''); -insert into tt values (4,0,'','','',''); -insert into tt values (5,0,'','','',''); -insert into tt values (6,0,'','','',''); -insert into tt values (7,0,'','','',''); -insert into tt values (8,0,'','','',''); -insert into tt values (9,0,'','','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='H9QPY5H2' where id=1; -update noar ti set v0='H9QPY5H2' where id=1; -update noar tt set b0='V63RG8ONNGC7H22GPLNXM4KQUJJ45' where id=1; -update noar ti set b0='V63RG8ONNGC7H22GPLNXM4KQUJJ45' where id=1; -update noar tt set v0='GX' where id=1; -update noar ti set v0='GX' where id=1; -update noar tt set b1='TXG6DGPI8QCPP5E9P495MZZ31WTV5' where id=1; -update noar ti set b1='TXG6DGPI8QCPP5E9P495MZZ31WTV5' where id=1; -update noar tt set v0='AS6VIZXRHXGF5CU5IKO' where id=1; -update noar ti set v0='AS6VIZXRHXGF5CU5IKO' where id=1; -update noar tt set b2='88OECCKK5R3FR32XCG3KWNN0X8DZ7N' where id=1; -update noar ti set b2='88OECCKK5R3FR32XCG3KWNN0X8DZ7N' where id=1; -update noar tt set v0='C2HT0V701JR2O' where id=2; -update noar ti set v0='C2HT0V701JR2O' where id=2; -update noar tt set b0='IJNXOZHVN5USQ28AEO5SQD4Z' where id=2; -update noar ti set b0='IJNXOZHVN5USQ28AEO5SQD4Z' where id=2; -update noar tt set v0='5VJ0KK4PZT083UML4GXEU0BN1' where id=2; -update noar ti set v0='5VJ0KK4PZT083UML4GXEU0BN1' where id=2; -update noar tt set b1='HEMXBGZPJ1J56Z8SK0' where id=2; -update noar ti set b1='HEMXBGZPJ1J56Z8SK0' where id=2; -update noar tt set v0='JIKHKE3WKU4PA04QZOMBPFU' where id=2; -update noar ti set v0='JIKHKE3WKU4PA04QZOMBPFU' where id=2; -update noar tt set b2='8N' where id=2; -update noar ti set b2='8N' where id=2; -update noar tt set v0='CLSINGPZ8C6Y13D36S18S7R' where id=3; -update noar ti set v0='CLSINGPZ8C6Y13D36S18S7R' where id=3; -update noar tt set b0='OODQISFS89FWFTZL5ZSS2RHC8AY' where id=3; -update noar ti set b0='OODQISFS89FWFTZL5ZSS2RHC8AY' where id=3; -update noar tt set v0='V7' where id=3; -update noar ti set v0='V7' where id=3; -update noar tt set b1='KX' where id=3; -update noar ti set b1='KX' where id=3; -update noar tt set v0='ZPR4WFWTT9OY4SYI' where id=3; -update noar ti set v0='ZPR4WFWTT9OY4SYI' where id=3; -update noar tt set b2='4RHWI7EDSPOGMFSMKB6ZEIWDI6XUOFA0' where id=3; -update noar ti set b2='4RHWI7EDSPOGMFSMKB6ZEIWDI6XUOFA0' where id=3; -update noar tt set v0='UUGTGBHO5VKKDS4FPK02MUTFJAA' where id=4; -update noar ti set v0='UUGTGBHO5VKKDS4FPK02MUTFJAA' where id=4; -update noar tt set b0='LHHLWH33C53WE1DSHON' where id=4; -update noar ti set b0='LHHLWH33C53WE1DSHON' where id=4; -update noar tt set v0='OUNKLEXQFOD4OX9413JHJPU7' where id=4; -update noar ti set v0='OUNKLEXQFOD4OX9413JHJPU7' where id=4; -update noar tt set b1='UNAGA5GKZLJE0ZSB710IPCP8RXQ0T' where id=4; -update noar ti set b1='UNAGA5GKZLJE0ZSB710IPCP8RXQ0T' where id=4; -update noar tt set v0='6WU' where id=4; -update noar ti set v0='6WU' where id=4; -update noar tt set b2='DNQ36ZIFDVGLCOWN1NIV' where id=4; -update noar ti set b2='DNQ36ZIFDVGLCOWN1NIV' where id=4; -update noar tt set v0='SFSLP03QKQ0K17DFGB' where id=5; -update noar ti set v0='SFSLP03QKQ0K17DFGB' where id=5; -update noar tt set b0='D323QGG8FK6FN1FZ4S3' where id=5; -update noar ti set b0='D323QGG8FK6FN1FZ4S3' where id=5; -update noar tt set v0='5DH6DVD0JFOS44OHZ8' where id=5; -update noar ti set v0='5DH6DVD0JFOS44OHZ8' where id=5; -update noar tt set b1='7K4OV2' where id=5; -update noar ti set b1='7K4OV2' where id=5; -update noar tt set v0='9BQICLCFA5T6QLZZBSXVG5PGEFBRI6L4' where id=5; -update noar ti set v0='9BQICLCFA5T6QLZZBSXVG5PGEFBRI6L4' where id=5; -update noar tt set b2='38J1RX' where id=5; -update noar ti set b2='38J1RX' where id=5; -update noar tt set v0='PSLRRW8DLIQY' where id=6; -update noar ti set v0='PSLRRW8DLIQY' where id=6; -update noar tt set b0='RCB' where id=6; -update noar ti set b0='RCB' where id=6; -update noar tt set v0='2G1WPRUQ93HVJ' where id=6; -update noar ti set v0='2G1WPRUQ93HVJ' where id=6; -update noar tt set b1='HXCVG' where id=6; -update noar ti set b1='HXCVG' where id=6; -update noar tt set v0='7LWJPRZG1K5B79' where id=6; -update noar ti set v0='7LWJPRZG1K5B79' where id=6; -update noar tt set b2='VD7HW7BWEBA49N47OBJOID4I' where id=6; -update noar ti set b2='VD7HW7BWEBA49N47OBJOID4I' where id=6; -update noar tt set v0='Q7CJZNPSTQUYRC116QWMR2XM6HFKGT' where id=7; -update noar ti set v0='Q7CJZNPSTQUYRC116QWMR2XM6HFKGT' where id=7; -update noar tt set b0='J4B86VXKO9FJVP4LFUSN0' where id=7; -update noar ti set b0='J4B86VXKO9FJVP4LFUSN0' where id=7; -update noar tt set v0='06WSVXH72U' where id=7; -update noar ti set v0='06WSVXH72U' where id=7; -update noar tt set b1='IRO92GHSS2672XRO' where id=7; -update noar ti set b1='IRO92GHSS2672XRO' where id=7; -update noar tt set v0='LRF2G2P8B4AF3JS7D4PZM5B92QA3' where id=7; -update noar ti set v0='LRF2G2P8B4AF3JS7D4PZM5B92QA3' where id=7; -update noar tt set b2='IDJQMHPKEHUORU1XH' where id=7; -update noar ti set b2='IDJQMHPKEHUORU1XH' where id=7; -update noar tt set v0='4CERH4D25I6S1URL3JDXPGX1D18BVDH' where id=8; -update noar ti set v0='4CERH4D25I6S1URL3JDXPGX1D18BVDH' where id=8; -update noar tt set b0='XR30NGMZUMRDS2IXNWY4R' where id=8; -update noar ti set b0='XR30NGMZUMRDS2IXNWY4R' where id=8; -update noar tt set v0='OQC20GU1X5PK' where id=8; -update noar ti set v0='OQC20GU1X5PK' where id=8; -update noar tt set b1='45735S0LT5TME6HYIX6F' where id=8; -update noar ti set b1='45735S0LT5TME6HYIX6F' where id=8; -update noar tt set v0='EIZI4MUW4MJSTN' where id=8; -update noar ti set v0='EIZI4MUW4MJSTN' where id=8; -update noar tt set b2='94Y0H979D2L' where id=8; -update noar ti set b2='94Y0H979D2L' where id=8; -update noar tt set v0='SYNCBWWWWQNF' where id=9; -update noar ti set v0='SYNCBWWWWQNF' where id=9; -update noar tt set b0='6QKFTGROT5RM0B8PD23HEW' where id=9; -update noar ti set b0='6QKFTGROT5RM0B8PD23HEW' where id=9; -update noar tt set v0='OZOHAABVMAIA6KS' where id=9; -update noar ti set v0='OZOHAABVMAIA6KS' where id=9; -update noar tt set b1='FIDV' where id=9; -update noar ti set b1='FIDV' where id=9; -update noar tt set v0='PDXS146I' where id=9; -update noar ti set v0='PDXS146I' where id=9; -update noar tt set b2='O3ICGR' where id=9; -update noar ti set b2='O3ICGR' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -f0 int not null, -v0 varchar(256) not null, -b0 longblob not null, -b1 mediumblob not null, -b2 longblob not null -) engine=tokudb; -insert into tt values (1,0,'','','',''); -insert into tt values (2,0,'','','',''); -insert into tt values (3,0,'','','',''); -insert into tt values (4,0,'','','',''); -insert into tt values (5,0,'','','',''); -insert into tt values (6,0,'','','',''); -insert into tt values (7,0,'','','',''); -insert into tt values (8,0,'','','',''); -insert into tt values (9,0,'','','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='7OUVWO14BXTC2FFE05VV9NT7Z8OGGP' where id=1; -update noar ti set v0='7OUVWO14BXTC2FFE05VV9NT7Z8OGGP' where id=1; -update noar tt set b0='98DN3F7IA8V' where id=1; -update noar ti set b0='98DN3F7IA8V' where id=1; -update noar tt set v0='9W0H4F5SB78AO86U9KQE9' where id=1; -update noar ti set v0='9W0H4F5SB78AO86U9KQE9' where id=1; -update noar tt set b1='7HP8ET9CUISH3C8ZWC2WEUA7MMT0' where id=1; -update noar ti set b1='7HP8ET9CUISH3C8ZWC2WEUA7MMT0' where id=1; -update noar tt set v0='1WJ71HC77768G81' where id=1; -update noar ti set v0='1WJ71HC77768G81' where id=1; -update noar tt set b2='REN32GGSU8R7DM' where id=1; -update noar ti set b2='REN32GGSU8R7DM' where id=1; -update noar tt set v0='A75CFQOLP' where id=2; -update noar ti set v0='A75CFQOLP' where id=2; -update noar tt set b0='22OVT6BS' where id=2; -update noar ti set b0='22OVT6BS' where id=2; -update noar tt set v0='4UFN3RKW9V8HD9XSR9B3B8N' where id=2; -update noar ti set v0='4UFN3RKW9V8HD9XSR9B3B8N' where id=2; -update noar tt set b1='X4PFCPCQS23ODW37' where id=2; -update noar ti set b1='X4PFCPCQS23ODW37' where id=2; -update noar tt set v0='SBWQR2MOXVSUWYP0J' where id=2; -update noar ti set v0='SBWQR2MOXVSUWYP0J' where id=2; -update noar tt set b2='DH9N82RSVXZGWC7W4QENQ7E4FC855L' where id=2; -update noar ti set b2='DH9N82RSVXZGWC7W4QENQ7E4FC855L' where id=2; -update noar tt set v0='V83OL775PG2MZJR31J4DKOUUIEVZNF6B' where id=3; -update noar ti set v0='V83OL775PG2MZJR31J4DKOUUIEVZNF6B' where id=3; -update noar tt set b0='L4T64W1L5VH9D702' where id=3; -update noar ti set b0='L4T64W1L5VH9D702' where id=3; -update noar tt set v0='RRPULLIIC0BVS0O86H6F8ZYKPFV' where id=3; -update noar ti set v0='RRPULLIIC0BVS0O86H6F8ZYKPFV' where id=3; -update noar tt set b1='MHYSND5NPSN5DZT42' where id=3; -update noar ti set b1='MHYSND5NPSN5DZT42' where id=3; -update noar tt set v0='YKO0QGYV4SWYPHHWC5PKNC' where id=3; -update noar ti set v0='YKO0QGYV4SWYPHHWC5PKNC' where id=3; -update noar tt set b2='6WXSDXOTF4UXKRXZG' where id=3; -update noar ti set b2='6WXSDXOTF4UXKRXZG' where id=3; -update noar tt set v0='LOS63PP8QO9IN378CN' where id=4; -update noar ti set v0='LOS63PP8QO9IN378CN' where id=4; -update noar tt set b0='I' where id=4; -update noar ti set b0='I' where id=4; -update noar tt set v0='OO00J' where id=4; -update noar ti set v0='OO00J' where id=4; -update noar tt set b1='A9QUJK6979S' where id=4; -update noar ti set b1='A9QUJK6979S' where id=4; -update noar tt set v0='WHGA8SK4DHEV0EGB0GTL574JGT9' where id=4; -update noar ti set v0='WHGA8SK4DHEV0EGB0GTL574JGT9' where id=4; -update noar tt set b2='U' where id=4; -update noar ti set b2='U' where id=4; -update noar tt set v0='NHBH4K3' where id=5; -update noar ti set v0='NHBH4K3' where id=5; -update noar tt set b0='JVT3FJDFV2L9X3DN' where id=5; -update noar ti set b0='JVT3FJDFV2L9X3DN' where id=5; -update noar tt set v0='9N0BCC2' where id=5; -update noar ti set v0='9N0BCC2' where id=5; -update noar tt set b1='S9KB5Y06UQCWCRVY2CH' where id=5; -update noar ti set b1='S9KB5Y06UQCWCRVY2CH' where id=5; -update noar tt set v0='7Q3EENH3' where id=5; -update noar ti set v0='7Q3EENH3' where id=5; -update noar tt set b2='Y5LJUO0PBZPW4SA0DLD6IBR' where id=5; -update noar ti set b2='Y5LJUO0PBZPW4SA0DLD6IBR' where id=5; -update noar tt set v0='IU' where id=6; -update noar ti set v0='IU' where id=6; -update noar tt set b0='RR0OLRL25ZZ7' where id=6; -update noar ti set b0='RR0OLRL25ZZ7' where id=6; -update noar tt set v0='IETYL45BUYZZXTN2UBLAP9LIGV11XF8G' where id=6; -update noar ti set v0='IETYL45BUYZZXTN2UBLAP9LIGV11XF8G' where id=6; -update noar tt set b1='M' where id=6; -update noar ti set b1='M' where id=6; -update noar tt set v0='0HGZ' where id=6; -update noar ti set v0='0HGZ' where id=6; -update noar tt set b2='YH339TZ' where id=6; -update noar ti set b2='YH339TZ' where id=6; -update noar tt set v0='5IUUJC4S2OZ' where id=7; -update noar ti set v0='5IUUJC4S2OZ' where id=7; -update noar tt set b0='036C3AXTNVVCB8JTD' where id=7; -update noar ti set b0='036C3AXTNVVCB8JTD' where id=7; -update noar tt set v0='V0DGP8HU3R253WW5ZINO9YAFPENSEP' where id=7; -update noar ti set v0='V0DGP8HU3R253WW5ZINO9YAFPENSEP' where id=7; -update noar tt set b1='L56KD9JRAP' where id=7; -update noar ti set b1='L56KD9JRAP' where id=7; -update noar tt set v0='4XMI7IWACR2CMX585GPUQ2Q67EXM2F' where id=7; -update noar ti set v0='4XMI7IWACR2CMX585GPUQ2Q67EXM2F' where id=7; -update noar tt set b2='S3I7OU419YWCYK15J2R2LMH6L' where id=7; -update noar ti set b2='S3I7OU419YWCYK15J2R2LMH6L' where id=7; -update noar tt set v0='C0TRSA9R3' where id=8; -update noar ti set v0='C0TRSA9R3' where id=8; -update noar tt set b0='3888YQI9FRO' where id=8; -update noar ti set b0='3888YQI9FRO' where id=8; -update noar tt set v0='YOT24JL9P2Y68NR41U66GH' where id=8; -update noar ti set v0='YOT24JL9P2Y68NR41U66GH' where id=8; -update noar tt set b1='EKPV81UGDHBMK0ST1OIKYIK' where id=8; -update noar ti set b1='EKPV81UGDHBMK0ST1OIKYIK' where id=8; -update noar tt set v0='KBC' where id=8; -update noar ti set v0='KBC' where id=8; -update noar tt set b2='H9PNFSSCOB2VSJRDNN' where id=8; -update noar ti set b2='H9PNFSSCOB2VSJRDNN' where id=8; -update noar tt set v0='D14D2YHTPYINSH3LWVER8EQHHLDQ9G2G' where id=9; -update noar ti set v0='D14D2YHTPYINSH3LWVER8EQHHLDQ9G2G' where id=9; -update noar tt set b0='QKDPQEWMDFJZWDDXYW1GFFZ' where id=9; -update noar ti set b0='QKDPQEWMDFJZWDDXYW1GFFZ' where id=9; -update noar tt set v0='LPFSM8ITGUS29850' where id=9; -update noar ti set v0='LPFSM8ITGUS29850' where id=9; -update noar tt set b1='1JANQAZQ2XHESQBMIRINRT' where id=9; -update noar ti set b1='1JANQAZQ2XHESQBMIRINRT' where id=9; -update noar tt set v0='FT5SD3OUHVJGTC2CZL' where id=9; -update noar ti set v0='FT5SD3OUHVJGTC2CZL' where id=9; -update noar tt set b2='DMIWDIZVCAQYKQD8IKZ5PUZR8' where id=9; -update noar ti set b2='DMIWDIZVCAQYKQD8IKZ5PUZR8' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -f0 int null, -v0 varchar(32) null, -b0 longblob null, -b1 longblob null, -b2 tinyblob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='M94PP53E' where id=1; -update noar ti set v0='M94PP53E' where id=1; -update noar tt set b0='U' where id=1; -update noar ti set b0='U' where id=1; -update noar tt set v0='NBDQP21L' where id=1; -update noar ti set v0='NBDQP21L' where id=1; -update noar tt set b1='V4VSKNTAOK8KFGS58UQIG3L1BS21R' where id=1; -update noar ti set b1='V4VSKNTAOK8KFGS58UQIG3L1BS21R' where id=1; -update noar tt set v0='O5IP5GUJ5PYMPQO942N' where id=1; -update noar ti set v0='O5IP5GUJ5PYMPQO942N' where id=1; -update noar tt set b2='FJU5NP' where id=1; -update noar ti set b2='FJU5NP' where id=1; -update noar tt set v0='JDU582XDCSNKJIKDEHPQZ6XYG42W' where id=2; -update noar ti set v0='JDU582XDCSNKJIKDEHPQZ6XYG42W' where id=2; -update noar tt set b0='J' where id=2; -update noar ti set b0='J' where id=2; -update noar tt set v0='WUURWEFW93G7B271BX40FY0PMJ7K93' where id=2; -update noar ti set v0='WUURWEFW93G7B271BX40FY0PMJ7K93' where id=2; -update noar tt set b1='6R73AY4Q2ETGHR0' where id=2; -update noar ti set b1='6R73AY4Q2ETGHR0' where id=2; -update noar tt set v0='CU7' where id=2; -update noar ti set v0='CU7' where id=2; -update noar tt set b2='RN4Y19IBZGRQX89S8DLLV6T0EA81BXSB' where id=2; -update noar ti set b2='RN4Y19IBZGRQX89S8DLLV6T0EA81BXSB' where id=2; -update noar tt set v0='JRBUO6S6PDHRZVJ8' where id=3; -update noar ti set v0='JRBUO6S6PDHRZVJ8' where id=3; -update noar tt set b0='YD4I1422ET6A6ABUKL' where id=3; -update noar ti set b0='YD4I1422ET6A6ABUKL' where id=3; -update noar tt set v0='YNIWR64NUS197I' where id=3; -update noar ti set v0='YNIWR64NUS197I' where id=3; -update noar tt set b1='7JRCB2CGUYA5' where id=3; -update noar ti set b1='7JRCB2CGUYA5' where id=3; -update noar tt set v0='T7FI5X9L2WR' where id=3; -update noar ti set v0='T7FI5X9L2WR' where id=3; -update noar tt set b2='UZZ1UDCR148' where id=3; -update noar ti set b2='UZZ1UDCR148' where id=3; -update noar tt set v0='5TZCMG37LETTU' where id=4; -update noar ti set v0='5TZCMG37LETTU' where id=4; -update noar tt set b0='X085TJMND2P8EV1OTDYDFMBQX85' where id=4; -update noar ti set b0='X085TJMND2P8EV1OTDYDFMBQX85' where id=4; -update noar tt set v0='ZYVN78RL8T' where id=4; -update noar ti set v0='ZYVN78RL8T' where id=4; -update noar tt set b1='AQEZW' where id=4; -update noar ti set b1='AQEZW' where id=4; -update noar tt set v0='6R6QEAMCY0TZYP' where id=4; -update noar ti set v0='6R6QEAMCY0TZYP' where id=4; -update noar tt set b2='1WNQQVMJW92CIFW9' where id=4; -update noar ti set b2='1WNQQVMJW92CIFW9' where id=4; -update noar tt set v0='3XJKQ6IXJ4B8D43CPAR4V32MJ' where id=5; -update noar ti set v0='3XJKQ6IXJ4B8D43CPAR4V32MJ' where id=5; -update noar tt set b0='4E7Y5MA8IP' where id=5; -update noar ti set b0='4E7Y5MA8IP' where id=5; -update noar tt set v0='Y69J4HPB7ZXRLML7DDRPT5YCSNPSGKT' where id=5; -update noar ti set v0='Y69J4HPB7ZXRLML7DDRPT5YCSNPSGKT' where id=5; -update noar tt set b1='ZYKXO25V5GK' where id=5; -update noar ti set b1='ZYKXO25V5GK' where id=5; -update noar tt set v0='MB0JAEO4I34IK' where id=5; -update noar ti set v0='MB0JAEO4I34IK' where id=5; -update noar tt set b2='E0WZ8WP' where id=5; -update noar ti set b2='E0WZ8WP' where id=5; -update noar tt set v0='CIMNXD8SZS8KJG04' where id=6; -update noar ti set v0='CIMNXD8SZS8KJG04' where id=6; -update noar tt set b0='UP' where id=6; -update noar ti set b0='UP' where id=6; -update noar tt set v0='TP6' where id=6; -update noar ti set v0='TP6' where id=6; -update noar tt set b1='76OUEUQGJU14C2Y' where id=6; -update noar ti set b1='76OUEUQGJU14C2Y' where id=6; -update noar tt set v0='RSUY34S6LA0L8Z06PSOWMVK1V' where id=6; -update noar ti set v0='RSUY34S6LA0L8Z06PSOWMVK1V' where id=6; -update noar tt set b2='9VRVR2ZZZ' where id=6; -update noar ti set b2='9VRVR2ZZZ' where id=6; -update noar tt set v0='W2H271NI83M4J6BOLE4M2' where id=7; -update noar ti set v0='W2H271NI83M4J6BOLE4M2' where id=7; -update noar tt set b0='XHV5YP2PZ6NRYTIL1' where id=7; -update noar ti set b0='XHV5YP2PZ6NRYTIL1' where id=7; -update noar tt set v0='GC2U99OY' where id=7; -update noar ti set v0='GC2U99OY' where id=7; -update noar tt set b1='ILEMB' where id=7; -update noar ti set b1='ILEMB' where id=7; -update noar tt set v0='UB9GGW8ZRJA9V6LJ5OWS' where id=7; -update noar ti set v0='UB9GGW8ZRJA9V6LJ5OWS' where id=7; -update noar tt set b2='ZHNWPOG4FKJ26JP7F' where id=7; -update noar ti set b2='ZHNWPOG4FKJ26JP7F' where id=7; -update noar tt set v0='PO6CTZ7KW19' where id=8; -update noar ti set v0='PO6CTZ7KW19' where id=8; -update noar tt set b0='QI520YIHI98TQ1N5LBI68D' where id=8; -update noar ti set b0='QI520YIHI98TQ1N5LBI68D' where id=8; -update noar tt set v0='STMKJYF16DQICHEQO4GRII1' where id=8; -update noar ti set v0='STMKJYF16DQICHEQO4GRII1' where id=8; -update noar tt set b1='7PSH4KJKJVAL2CER7MPTZH2QKNF79' where id=8; -update noar ti set b1='7PSH4KJKJVAL2CER7MPTZH2QKNF79' where id=8; -update noar tt set v0='PGR9CDQDZ3' where id=8; -update noar ti set v0='PGR9CDQDZ3' where id=8; -update noar tt set b2='ORRLMZKZA2' where id=8; -update noar ti set b2='ORRLMZKZA2' where id=8; -update noar tt set v0='EK0R7848949LAYLFWEUQGE' where id=9; -update noar ti set v0='EK0R7848949LAYLFWEUQGE' where id=9; -update noar tt set b0='SSVIJFXQH9DZLS6' where id=9; -update noar ti set b0='SSVIJFXQH9DZLS6' where id=9; -update noar tt set v0='NVNNO4Y1BSC1LU6VY1VMK' where id=9; -update noar ti set v0='NVNNO4Y1BSC1LU6VY1VMK' where id=9; -update noar tt set b1='JRS2S3ELCUET9B4FR' where id=9; -update noar ti set b1='JRS2S3ELCUET9B4FR' where id=9; -update noar tt set v0='KAQ7AS72K7QSRXAYCH' where id=9; -update noar ti set v0='KAQ7AS72K7QSRXAYCH' where id=9; -update noar tt set b2='KJ1T1EY0NKK70TXY7ZRAHT' where id=9; -update noar ti set b2='KJ1T1EY0NKK70TXY7ZRAHT' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -f0 int null, -v0 varchar(256) null, -b0 longblob null, -b1 longblob null, -b2 tinyblob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='1L3JD2VY' where id=1; -update noar ti set v0='1L3JD2VY' where id=1; -update noar tt set b0='J63FHEY3TYE' where id=1; -update noar ti set b0='J63FHEY3TYE' where id=1; -update noar tt set v0='J0T1S6EVVKUK2V2SQLI' where id=1; -update noar ti set v0='J0T1S6EVVKUK2V2SQLI' where id=1; -update noar tt set b1='M8EKN39WP0YCKOC07' where id=1; -update noar ti set b1='M8EKN39WP0YCKOC07' where id=1; -update noar tt set v0='00JGZEK9K1SXFJYDHI11' where id=1; -update noar ti set v0='00JGZEK9K1SXFJYDHI11' where id=1; -update noar tt set b2='V0EW5HLMRDU5NF5H5OGLJ94F9HVKJKOC' where id=1; -update noar ti set b2='V0EW5HLMRDU5NF5H5OGLJ94F9HVKJKOC' where id=1; -update noar tt set v0='UTZKBP67QK3J1S41LROR5URPRK9' where id=2; -update noar ti set v0='UTZKBP67QK3J1S41LROR5URPRK9' where id=2; -update noar tt set b0='55ZITT0L6ICEHU' where id=2; -update noar ti set b0='55ZITT0L6ICEHU' where id=2; -update noar tt set v0='7GZF5HQWS218K' where id=2; -update noar ti set v0='7GZF5HQWS218K' where id=2; -update noar tt set b1='TKB' where id=2; -update noar ti set b1='TKB' where id=2; -update noar tt set v0='6SYV0P0SVHDJAVCQRYCZOZ66A0C' where id=2; -update noar ti set v0='6SYV0P0SVHDJAVCQRYCZOZ66A0C' where id=2; -update noar tt set b2='IJ0CX' where id=2; -update noar ti set b2='IJ0CX' where id=2; -update noar tt set v0='MW8GN1C4JCI1SYN7OVRBCX' where id=3; -update noar ti set v0='MW8GN1C4JCI1SYN7OVRBCX' where id=3; -update noar tt set b0='GWJSG5MH9Z02VXJTPHPI' where id=3; -update noar ti set b0='GWJSG5MH9Z02VXJTPHPI' where id=3; -update noar tt set v0='2JQV1F5NYWAVL0CK0TIV8PTUAWN' where id=3; -update noar ti set v0='2JQV1F5NYWAVL0CK0TIV8PTUAWN' where id=3; -update noar tt set b1='MPL5521' where id=3; -update noar ti set b1='MPL5521' where id=3; -update noar tt set v0='J7XJU1UU57M8H5EMY3I7N25USHR' where id=3; -update noar ti set v0='J7XJU1UU57M8H5EMY3I7N25USHR' where id=3; -update noar tt set b2='K7673RNUK0TT9S51Y7K5F959PU' where id=3; -update noar ti set b2='K7673RNUK0TT9S51Y7K5F959PU' where id=3; -update noar tt set v0='7LDNXY9VCK40B474NHE3KAQ11S88E0J' where id=4; -update noar ti set v0='7LDNXY9VCK40B474NHE3KAQ11S88E0J' where id=4; -update noar tt set b0='ZP' where id=4; -update noar ti set b0='ZP' where id=4; -update noar tt set v0='4NY64EYY90YH3SP8O' where id=4; -update noar ti set v0='4NY64EYY90YH3SP8O' where id=4; -update noar tt set b1='KZW4P4WIJTC9J5C062URWJ7JJV' where id=4; -update noar ti set b1='KZW4P4WIJTC9J5C062URWJ7JJV' where id=4; -update noar tt set v0='PPAO' where id=4; -update noar ti set v0='PPAO' where id=4; -update noar tt set b2='BYLQW' where id=4; -update noar ti set b2='BYLQW' where id=4; -update noar tt set v0='RF5GJQCAQUY2XDHC6ODWTDYHGEP93T8R' where id=5; -update noar ti set v0='RF5GJQCAQUY2XDHC6ODWTDYHGEP93T8R' where id=5; -update noar tt set b0='OECWMXC0RC32EE' where id=5; -update noar ti set b0='OECWMXC0RC32EE' where id=5; -update noar tt set v0='8E28C6AR3PXWRI89EH6DDXSF2HY' where id=5; -update noar ti set v0='8E28C6AR3PXWRI89EH6DDXSF2HY' where id=5; -update noar tt set b1='WVUNMT6S4LNXQGEEHD' where id=5; -update noar ti set b1='WVUNMT6S4LNXQGEEHD' where id=5; -update noar tt set v0='WEI8DSRUK6OV8SL2K34L0' where id=5; -update noar ti set v0='WEI8DSRUK6OV8SL2K34L0' where id=5; -update noar tt set b2='SWOC2LRCK9363EEG7DUE4GJSTA' where id=5; -update noar ti set b2='SWOC2LRCK9363EEG7DUE4GJSTA' where id=5; -update noar tt set v0='0MHIDNU8MNQT4DO' where id=6; -update noar ti set v0='0MHIDNU8MNQT4DO' where id=6; -update noar tt set b0='GDV0DO6DLW9ANJWAPNRZ3RYLTR3' where id=6; -update noar ti set b0='GDV0DO6DLW9ANJWAPNRZ3RYLTR3' where id=6; -update noar tt set v0='9G75CWCZS3AD2M8PHI9' where id=6; -update noar ti set v0='9G75CWCZS3AD2M8PHI9' where id=6; -update noar tt set b1='AKDMGXHXNSTN180R80N60' where id=6; -update noar ti set b1='AKDMGXHXNSTN180R80N60' where id=6; -update noar tt set v0='N' where id=6; -update noar ti set v0='N' where id=6; -update noar tt set b2='MUX5CQ7MF6OZW01925CXY7YL03Q' where id=6; -update noar ti set b2='MUX5CQ7MF6OZW01925CXY7YL03Q' where id=6; -update noar tt set v0='AKBO' where id=7; -update noar ti set v0='AKBO' where id=7; -update noar tt set b0='FWZY4IR5QNHRZOI36' where id=7; -update noar ti set b0='FWZY4IR5QNHRZOI36' where id=7; -update noar tt set v0='JRC5GCAF8ITLLL' where id=7; -update noar ti set v0='JRC5GCAF8ITLLL' where id=7; -update noar tt set b1='R2VGE0UTR4S4CR3JDLWUIN' where id=7; -update noar ti set b1='R2VGE0UTR4S4CR3JDLWUIN' where id=7; -update noar tt set v0='7362WX3GF1XRADAX9UBKE' where id=7; -update noar ti set v0='7362WX3GF1XRADAX9UBKE' where id=7; -update noar tt set b2='N1A59W2OJPK8E9N2TRMOXYBAQV06I' where id=7; -update noar ti set b2='N1A59W2OJPK8E9N2TRMOXYBAQV06I' where id=7; -update noar tt set v0='RTEVCC' where id=8; -update noar ti set v0='RTEVCC' where id=8; -update noar tt set b0='ZP7LPXPN5HIV' where id=8; -update noar ti set b0='ZP7LPXPN5HIV' where id=8; -update noar tt set v0='7VGJSXTJDJ9C77HU495GVXAG07CA' where id=8; -update noar ti set v0='7VGJSXTJDJ9C77HU495GVXAG07CA' where id=8; -update noar tt set b1='OXMFEK15KOEE0POD' where id=8; -update noar ti set b1='OXMFEK15KOEE0POD' where id=8; -update noar tt set v0='IJ6Z29ON72W4R7QOSZF5J' where id=8; -update noar ti set v0='IJ6Z29ON72W4R7QOSZF5J' where id=8; -update noar tt set b2='3K2QANRH' where id=8; -update noar ti set b2='3K2QANRH' where id=8; -update noar tt set v0='KRQW683FFJKC11SS6VJKB4V4SG804' where id=9; -update noar ti set v0='KRQW683FFJKC11SS6VJKB4V4SG804' where id=9; -update noar tt set b0='ZN96KNGEM' where id=9; -update noar ti set b0='ZN96KNGEM' where id=9; -update noar tt set v0='PT9UPGQ3N06KG4L4' where id=9; -update noar ti set v0='PT9UPGQ3N06KG4L4' where id=9; -update noar tt set b1='RDHE25CMLNDNBJOQ' where id=9; -update noar ti set b1='RDHE25CMLNDNBJOQ' where id=9; -update noar tt set v0='ZG1UAZ1DT' where id=9; -update noar ti set v0='ZG1UAZ1DT' where id=9; -update noar tt set b2='6HMGD7FA2CB0NHTQKBQ28JQC4IB94VJ' where id=9; -update noar ti set b2='6HMGD7FA2CB0NHTQKBQ28JQC4IB94VJ' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -f0 int not null, -v0 varchar(32) not null, -b0 longblob not null, -b1 longblob not null, -b2 tinyblob not null -) engine=tokudb; -insert into tt values (1,0,'','','',''); -insert into tt values (2,0,'','','',''); -insert into tt values (3,0,'','','',''); -insert into tt values (4,0,'','','',''); -insert into tt values (5,0,'','','',''); -insert into tt values (6,0,'','','',''); -insert into tt values (7,0,'','','',''); -insert into tt values (8,0,'','','',''); -insert into tt values (9,0,'','','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='WPZR' where id=1; -update noar ti set v0='WPZR' where id=1; -update noar tt set b0='G3DM695' where id=1; -update noar ti set b0='G3DM695' where id=1; -update noar tt set v0='H5PXMFUUOQE4S21WLM2I' where id=1; -update noar ti set v0='H5PXMFUUOQE4S21WLM2I' where id=1; -update noar tt set b1='1JDSP964HWWAF' where id=1; -update noar ti set b1='1JDSP964HWWAF' where id=1; -update noar tt set v0='LZP6G776LMNVSGWDHOTLZ4WKC' where id=1; -update noar ti set v0='LZP6G776LMNVSGWDHOTLZ4WKC' where id=1; -update noar tt set b2='H8BFU' where id=1; -update noar ti set b2='H8BFU' where id=1; -update noar tt set v0='LDMXM02I8VLSKY7PWB0EY5NMHP2' where id=2; -update noar ti set v0='LDMXM02I8VLSKY7PWB0EY5NMHP2' where id=2; -update noar tt set b0='51CFRVIT97EBJNIUGXFD9EE0N1ZA' where id=2; -update noar ti set b0='51CFRVIT97EBJNIUGXFD9EE0N1ZA' where id=2; -update noar tt set v0='F7SD3T00DU7' where id=2; -update noar ti set v0='F7SD3T00DU7' where id=2; -update noar tt set b1='H1BS9' where id=2; -update noar ti set b1='H1BS9' where id=2; -update noar tt set v0='PZRYO8EAAJ6YKD' where id=2; -update noar ti set v0='PZRYO8EAAJ6YKD' where id=2; -update noar tt set b2='KQDT9CN6YQF' where id=2; -update noar ti set b2='KQDT9CN6YQF' where id=2; -update noar tt set v0='WO5JXLL73UKVAJN44X0SDNG2S' where id=3; -update noar ti set v0='WO5JXLL73UKVAJN44X0SDNG2S' where id=3; -update noar tt set b0='3HZH745XMUVTNB4VG' where id=3; -update noar ti set b0='3HZH745XMUVTNB4VG' where id=3; -update noar tt set v0='OX2UGT3Y12J' where id=3; -update noar ti set v0='OX2UGT3Y12J' where id=3; -update noar tt set b1='MHSQ4K85IBC' where id=3; -update noar ti set b1='MHSQ4K85IBC' where id=3; -update noar tt set v0='LFQSS8FY9XHPD2VX1RAVWRUSNQ' where id=3; -update noar ti set v0='LFQSS8FY9XHPD2VX1RAVWRUSNQ' where id=3; -update noar tt set b2='OKTNN3YLFN6WE3NGKJKVAW' where id=3; -update noar ti set b2='OKTNN3YLFN6WE3NGKJKVAW' where id=3; -update noar tt set v0='1TW884EQ6JW' where id=4; -update noar ti set v0='1TW884EQ6JW' where id=4; -update noar tt set b0='O9N9S5EY3J8X5MHLY6K5K' where id=4; -update noar ti set b0='O9N9S5EY3J8X5MHLY6K5K' where id=4; -update noar tt set v0='VK6' where id=4; -update noar ti set v0='VK6' where id=4; -update noar tt set b1='B4E71A90GJCH43R84COC' where id=4; -update noar ti set b1='B4E71A90GJCH43R84COC' where id=4; -update noar tt set v0='ZOPPIAAGIOFJ96KPTWM3CW8R' where id=4; -update noar ti set v0='ZOPPIAAGIOFJ96KPTWM3CW8R' where id=4; -update noar tt set b2='9VZX251NDLJPALUTVJB8UU344O6R' where id=4; -update noar ti set b2='9VZX251NDLJPALUTVJB8UU344O6R' where id=4; -update noar tt set v0='FTJ94X' where id=5; -update noar ti set v0='FTJ94X' where id=5; -update noar tt set b0='VG' where id=5; -update noar ti set b0='VG' where id=5; -update noar tt set v0='8V0Z9I1MAVPY7RXM6QWZ' where id=5; -update noar ti set v0='8V0Z9I1MAVPY7RXM6QWZ' where id=5; -update noar tt set b1='MX1Y0FJCJH22AQV' where id=5; -update noar ti set b1='MX1Y0FJCJH22AQV' where id=5; -update noar tt set v0='67IQDE6' where id=5; -update noar ti set v0='67IQDE6' where id=5; -update noar tt set b2='AMEF2FCZ7Q4XUM8D14HCGFDJVWWB' where id=5; -update noar ti set b2='AMEF2FCZ7Q4XUM8D14HCGFDJVWWB' where id=5; -update noar tt set v0='FZ3RV3865BUCJS43DM2' where id=6; -update noar ti set v0='FZ3RV3865BUCJS43DM2' where id=6; -update noar tt set b0='IMBZQL7D01P2TBFN2DD' where id=6; -update noar ti set b0='IMBZQL7D01P2TBFN2DD' where id=6; -update noar tt set v0='QE' where id=6; -update noar ti set v0='QE' where id=6; -update noar tt set b1='J9GRXSSLTE2GU9U4UIZRW1TFKT826TK' where id=6; -update noar ti set b1='J9GRXSSLTE2GU9U4UIZRW1TFKT826TK' where id=6; -update noar tt set v0='3TKLQ3EZQQTLNHGTZJ' where id=6; -update noar ti set v0='3TKLQ3EZQQTLNHGTZJ' where id=6; -update noar tt set b2='TL3D6O75MDQSR59' where id=6; -update noar ti set b2='TL3D6O75MDQSR59' where id=6; -update noar tt set v0='PXCPFNLIFFDM4OVEJFC7B' where id=7; -update noar ti set v0='PXCPFNLIFFDM4OVEJFC7B' where id=7; -update noar tt set b0='3EOP59WHOD83HAFQDA5NALRI6' where id=7; -update noar ti set b0='3EOP59WHOD83HAFQDA5NALRI6' where id=7; -update noar tt set v0='Y75A549BRD4BTP39' where id=7; -update noar ti set v0='Y75A549BRD4BTP39' where id=7; -update noar tt set b1='TX0QXULZRQWO3BSHZMZHL1ZY35JSCO5' where id=7; -update noar ti set b1='TX0QXULZRQWO3BSHZMZHL1ZY35JSCO5' where id=7; -update noar tt set v0='FI995XA46' where id=7; -update noar ti set v0='FI995XA46' where id=7; -update noar tt set b2='86Y83L1OSHKBG91UTZUZNM3H' where id=7; -update noar ti set b2='86Y83L1OSHKBG91UTZUZNM3H' where id=7; -update noar tt set v0='RINVCVCE21B1EP4PLJFZ' where id=8; -update noar ti set v0='RINVCVCE21B1EP4PLJFZ' where id=8; -update noar tt set b0='V3X309FY2K71HXZU0JT' where id=8; -update noar ti set b0='V3X309FY2K71HXZU0JT' where id=8; -update noar tt set v0='EL6QU3YPDWWIOK4D5PLX6' where id=8; -update noar ti set v0='EL6QU3YPDWWIOK4D5PLX6' where id=8; -update noar tt set b1='B6FJ6RGM0H' where id=8; -update noar ti set b1='B6FJ6RGM0H' where id=8; -update noar tt set v0='2H' where id=8; -update noar ti set v0='2H' where id=8; -update noar tt set b2='ESM' where id=8; -update noar ti set b2='ESM' where id=8; -update noar tt set v0='U4RT6NWD0K9MI6YMRRMDV' where id=9; -update noar ti set v0='U4RT6NWD0K9MI6YMRRMDV' where id=9; -update noar tt set b0='IV2V8LCWM' where id=9; -update noar ti set b0='IV2V8LCWM' where id=9; -update noar tt set v0='6W1G7KT5ZHQ9A' where id=9; -update noar ti set v0='6W1G7KT5ZHQ9A' where id=9; -update noar tt set b1='XRBMM2NCWF5OA64APS4FEA5XF74ZF' where id=9; -update noar ti set b1='XRBMM2NCWF5OA64APS4FEA5XF74ZF' where id=9; -update noar tt set v0='IR' where id=9; -update noar ti set v0='IR' where id=9; -update noar tt set b2='FJRKDT7EKKEYUX2S066P53KLIZJH3TP0' where id=9; -update noar ti set b2='FJRKDT7EKKEYUX2S066P53KLIZJH3TP0' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -f0 int not null, -v0 varchar(256) not null, -b0 longblob not null, -b1 longblob not null, -b2 tinyblob not null -) engine=tokudb; -insert into tt values (1,0,'','','',''); -insert into tt values (2,0,'','','',''); -insert into tt values (3,0,'','','',''); -insert into tt values (4,0,'','','',''); -insert into tt values (5,0,'','','',''); -insert into tt values (6,0,'','','',''); -insert into tt values (7,0,'','','',''); -insert into tt values (8,0,'','','',''); -insert into tt values (9,0,'','','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='XGV6B2CN4FUGTLE28OTMFT9NENVBG' where id=1; -update noar ti set v0='XGV6B2CN4FUGTLE28OTMFT9NENVBG' where id=1; -update noar tt set b0='CUYLL78GT4EUHOK' where id=1; -update noar ti set b0='CUYLL78GT4EUHOK' where id=1; -update noar tt set v0='7WWDNDW00GVQW4YWVDT4PWY' where id=1; -update noar ti set v0='7WWDNDW00GVQW4YWVDT4PWY' where id=1; -update noar tt set b1='KWXY61AY1PB' where id=1; -update noar ti set b1='KWXY61AY1PB' where id=1; -update noar tt set v0='V2ZNN5TCST0858HJ68F1' where id=1; -update noar ti set v0='V2ZNN5TCST0858HJ68F1' where id=1; -update noar tt set b2='W45XMBPGLQKJABEP3VK' where id=1; -update noar ti set b2='W45XMBPGLQKJABEP3VK' where id=1; -update noar tt set v0='AF84VXYKP64W33NABCA9AGT4I' where id=2; -update noar ti set v0='AF84VXYKP64W33NABCA9AGT4I' where id=2; -update noar tt set b0='2ILGUHBGV6GQRUJYXXJB' where id=2; -update noar ti set b0='2ILGUHBGV6GQRUJYXXJB' where id=2; -update noar tt set v0='TQNDHYL8BZ3X0IVISYEAXSYL65SZUVX' where id=2; -update noar ti set v0='TQNDHYL8BZ3X0IVISYEAXSYL65SZUVX' where id=2; -update noar tt set b1='D4111SCDP1O5Y7KCNO37' where id=2; -update noar ti set b1='D4111SCDP1O5Y7KCNO37' where id=2; -update noar tt set v0='H8KIAM2KH' where id=2; -update noar ti set v0='H8KIAM2KH' where id=2; -update noar tt set b2='F366PA7' where id=2; -update noar ti set b2='F366PA7' where id=2; -update noar tt set v0='1826MAL2EM0UM0ZXQ3HV' where id=3; -update noar ti set v0='1826MAL2EM0UM0ZXQ3HV' where id=3; -update noar tt set b0='NV3UEGUPA2QD44FL7E5V0XS' where id=3; -update noar ti set b0='NV3UEGUPA2QD44FL7E5V0XS' where id=3; -update noar tt set v0='UPBJI5CH7E0SL50CDCVBLA7J4UPDE' where id=3; -update noar ti set v0='UPBJI5CH7E0SL50CDCVBLA7J4UPDE' where id=3; -update noar tt set b1='ECBYDUZS5I4Z2QNSMKQMR' where id=3; -update noar ti set b1='ECBYDUZS5I4Z2QNSMKQMR' where id=3; -update noar tt set v0='S2YY1MK9HWBUSRRFFN0PROPKO' where id=3; -update noar ti set v0='S2YY1MK9HWBUSRRFFN0PROPKO' where id=3; -update noar tt set b2='ARHSUP5AFRS7E06424N68LBUXYE3X' where id=3; -update noar ti set b2='ARHSUP5AFRS7E06424N68LBUXYE3X' where id=3; -update noar tt set v0='0U03E03PYC4Y2Q52SW6HYF6O6MK9Z8' where id=4; -update noar ti set v0='0U03E03PYC4Y2Q52SW6HYF6O6MK9Z8' where id=4; -update noar tt set b0='ZASFFIH2NEIG28MFXNPURC' where id=4; -update noar ti set b0='ZASFFIH2NEIG28MFXNPURC' where id=4; -update noar tt set v0='0LQNM46E5TWNAZ946SKE305L' where id=4; -update noar ti set v0='0LQNM46E5TWNAZ946SKE305L' where id=4; -update noar tt set b1='C4W0TA9MTPN22VARP53K8Q4WMN' where id=4; -update noar ti set b1='C4W0TA9MTPN22VARP53K8Q4WMN' where id=4; -update noar tt set v0='P1THW093M8SZ6Q6AH7W7PTFEM4JXG' where id=4; -update noar ti set v0='P1THW093M8SZ6Q6AH7W7PTFEM4JXG' where id=4; -update noar tt set b2='EDE445I' where id=4; -update noar ti set b2='EDE445I' where id=4; -update noar tt set v0='7X5LDS8INWJCMVD54AAQB5CS6OI6M' where id=5; -update noar ti set v0='7X5LDS8INWJCMVD54AAQB5CS6OI6M' where id=5; -update noar tt set b0='SMQOVG3YALP' where id=5; -update noar ti set b0='SMQOVG3YALP' where id=5; -update noar tt set v0='6C2EF7MBO6PGPOVZGA9X8LD' where id=5; -update noar ti set v0='6C2EF7MBO6PGPOVZGA9X8LD' where id=5; -update noar tt set b1='GCQ9GPTPK5KT3T8QKI9T6EVPXD9L' where id=5; -update noar ti set b1='GCQ9GPTPK5KT3T8QKI9T6EVPXD9L' where id=5; -update noar tt set v0='2WUSO4MKBBI9ZLQFYS69KC' where id=5; -update noar ti set v0='2WUSO4MKBBI9ZLQFYS69KC' where id=5; -update noar tt set b2='DAN8F10RV' where id=5; -update noar ti set b2='DAN8F10RV' where id=5; -update noar tt set v0='95PE3215C79KFRO5SF' where id=6; -update noar ti set v0='95PE3215C79KFRO5SF' where id=6; -update noar tt set b0='1HR72A5LM' where id=6; -update noar ti set b0='1HR72A5LM' where id=6; -update noar tt set v0='KC7OLKK9I0NIMRXU1B6B' where id=6; -update noar ti set v0='KC7OLKK9I0NIMRXU1B6B' where id=6; -update noar tt set b1='CPAGNKQURE83HTIO7VFFLJXAJQJCJ' where id=6; -update noar ti set b1='CPAGNKQURE83HTIO7VFFLJXAJQJCJ' where id=6; -update noar tt set v0='TN86' where id=6; -update noar ti set v0='TN86' where id=6; -update noar tt set b2='06KF2T8ZZJKFYCPOLYBQYCOY' where id=6; -update noar ti set b2='06KF2T8ZZJKFYCPOLYBQYCOY' where id=6; -update noar tt set v0='6T1G201LY3QO440HTS' where id=7; -update noar ti set v0='6T1G201LY3QO440HTS' where id=7; -update noar tt set b0='CJTEMQMAX58V4' where id=7; -update noar ti set b0='CJTEMQMAX58V4' where id=7; -update noar tt set v0='XIC0CCVY' where id=7; -update noar ti set v0='XIC0CCVY' where id=7; -update noar tt set b1='CVMDDB05QF' where id=7; -update noar ti set b1='CVMDDB05QF' where id=7; -update noar tt set v0='3F17S62' where id=7; -update noar ti set v0='3F17S62' where id=7; -update noar tt set b2='6WO0L' where id=7; -update noar ti set b2='6WO0L' where id=7; -update noar tt set v0='KASOE1EU6ERK2V222O8AT4ZA85W1L' where id=8; -update noar ti set v0='KASOE1EU6ERK2V222O8AT4ZA85W1L' where id=8; -update noar tt set b0='0VVOB2NQ9V' where id=8; -update noar ti set b0='0VVOB2NQ9V' where id=8; -update noar tt set v0='K0DE5AHZ9' where id=8; -update noar ti set v0='K0DE5AHZ9' where id=8; -update noar tt set b1='5TW3W4G5TR0JAG' where id=8; -update noar ti set b1='5TW3W4G5TR0JAG' where id=8; -update noar tt set v0='7YTXOBB424' where id=8; -update noar ti set v0='7YTXOBB424' where id=8; -update noar tt set b2='42DNEUB7I38KRFQZQV0LTRP7VHE5R6D' where id=8; -update noar ti set b2='42DNEUB7I38KRFQZQV0LTRP7VHE5R6D' where id=8; -update noar tt set v0='Z7NFVKW' where id=9; -update noar ti set v0='Z7NFVKW' where id=9; -update noar tt set b0='3YF76E6LFX' where id=9; -update noar ti set b0='3YF76E6LFX' where id=9; -update noar tt set v0='0FLT6Z1' where id=9; -update noar ti set v0='0FLT6Z1' where id=9; -update noar tt set b1='DDL' where id=9; -update noar ti set b1='DDL' where id=9; -update noar tt set v0='UNA71MW4A' where id=9; -update noar ti set v0='UNA71MW4A' where id=9; -update noar tt set b2='R67I38VQDJ0TWU3IYIQYS1Y2FALF' where id=9; -update noar ti set b2='R67I38VQDJ0TWU3IYIQYS1Y2FALF' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -f0 int null, -v0 varchar(32) null, -b0 longblob null, -b1 longblob null, -b2 blob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='RNS4I3W1J3GW' where id=1; -update noar ti set v0='RNS4I3W1J3GW' where id=1; -update noar tt set b0='K' where id=1; -update noar ti set b0='K' where id=1; -update noar tt set v0='PNZSM19UHHVRJDMTVEYAGOMRFG4K' where id=1; -update noar ti set v0='PNZSM19UHHVRJDMTVEYAGOMRFG4K' where id=1; -update noar tt set b1='H' where id=1; -update noar ti set b1='H' where id=1; -update noar tt set v0='XPRN99HQV25HEM' where id=1; -update noar ti set v0='XPRN99HQV25HEM' where id=1; -update noar tt set b2='PD2L19MOTZIRQTQUU86Q6L' where id=1; -update noar ti set b2='PD2L19MOTZIRQTQUU86Q6L' where id=1; -update noar tt set v0='MOFU0RL3M8LBA42WQ6D' where id=2; -update noar ti set v0='MOFU0RL3M8LBA42WQ6D' where id=2; -update noar tt set b0='2KRY3ZIIM5WE0K' where id=2; -update noar ti set b0='2KRY3ZIIM5WE0K' where id=2; -update noar tt set v0='D8FOJTEFDDZKK30CVF5QA' where id=2; -update noar ti set v0='D8FOJTEFDDZKK30CVF5QA' where id=2; -update noar tt set b1='ZK3A2VJ509K0O6RRZCPAXYCP' where id=2; -update noar ti set b1='ZK3A2VJ509K0O6RRZCPAXYCP' where id=2; -update noar tt set v0='P43W25Q' where id=2; -update noar ti set v0='P43W25Q' where id=2; -update noar tt set b2='I8ISXTLW742JLU5IBIHGJJPNDB47G822' where id=2; -update noar ti set b2='I8ISXTLW742JLU5IBIHGJJPNDB47G822' where id=2; -update noar tt set v0='8061F2SI' where id=3; -update noar ti set v0='8061F2SI' where id=3; -update noar tt set b0='8N82V' where id=3; -update noar ti set b0='8N82V' where id=3; -update noar tt set v0='R' where id=3; -update noar ti set v0='R' where id=3; -update noar tt set b1='I2GWXPVWH8G6FLMH63QFXV3FW' where id=3; -update noar ti set b1='I2GWXPVWH8G6FLMH63QFXV3FW' where id=3; -update noar tt set v0='DHP' where id=3; -update noar ti set v0='DHP' where id=3; -update noar tt set b2='RKBU38WQAKMVT7SF3' where id=3; -update noar ti set b2='RKBU38WQAKMVT7SF3' where id=3; -update noar tt set v0='Q6V003VR5OSTD01XG12SJ5B2GNDQ' where id=4; -update noar ti set v0='Q6V003VR5OSTD01XG12SJ5B2GNDQ' where id=4; -update noar tt set b0='82SPMMEBINXV0UH3X3S8G8HE5A1VU7' where id=4; -update noar ti set b0='82SPMMEBINXV0UH3X3S8G8HE5A1VU7' where id=4; -update noar tt set v0='7OU1ISCFBSV3UUKASEPAYUO7OZ' where id=4; -update noar ti set v0='7OU1ISCFBSV3UUKASEPAYUO7OZ' where id=4; -update noar tt set b1='BLHDXIKWF616UAW9QF' where id=4; -update noar ti set b1='BLHDXIKWF616UAW9QF' where id=4; -update noar tt set v0='KJZJ88PZFWNXS0YM7X' where id=4; -update noar ti set v0='KJZJ88PZFWNXS0YM7X' where id=4; -update noar tt set b2='QYPRUTZXNHSU35CZK8HNBG4T22WIFJ' where id=4; -update noar ti set b2='QYPRUTZXNHSU35CZK8HNBG4T22WIFJ' where id=4; -update noar tt set v0='KP' where id=5; -update noar ti set v0='KP' where id=5; -update noar tt set b0='308MJM3KH7BNC32TK61EU0JM7TCDV' where id=5; -update noar ti set b0='308MJM3KH7BNC32TK61EU0JM7TCDV' where id=5; -update noar tt set v0='TH8OHLHYRDTJ' where id=5; -update noar ti set v0='TH8OHLHYRDTJ' where id=5; -update noar tt set b1='M1CI6FPW9Q10N81' where id=5; -update noar ti set b1='M1CI6FPW9Q10N81' where id=5; -update noar tt set v0='JHN4LMRYY3HEJ9HHGSOWZCQKCUN0BJA' where id=5; -update noar ti set v0='JHN4LMRYY3HEJ9HHGSOWZCQKCUN0BJA' where id=5; -update noar tt set b2='UYPQ1W' where id=5; -update noar ti set b2='UYPQ1W' where id=5; -update noar tt set v0='U8SRIU0ZMD83JLGR3X4XD8J4M6JICJ' where id=6; -update noar ti set v0='U8SRIU0ZMD83JLGR3X4XD8J4M6JICJ' where id=6; -update noar tt set b0='2EWPEUWI3QE8R' where id=6; -update noar ti set b0='2EWPEUWI3QE8R' where id=6; -update noar tt set v0='3YECOUP56R171E' where id=6; -update noar ti set v0='3YECOUP56R171E' where id=6; -update noar tt set b1='CR0KSW58SREUV8JCN0RN2' where id=6; -update noar ti set b1='CR0KSW58SREUV8JCN0RN2' where id=6; -update noar tt set v0='BDNP7' where id=6; -update noar ti set v0='BDNP7' where id=6; -update noar tt set b2='IIOW82DK9XM' where id=6; -update noar ti set b2='IIOW82DK9XM' where id=6; -update noar tt set v0='N70R04QVDHH296HDZ06BX' where id=7; -update noar ti set v0='N70R04QVDHH296HDZ06BX' where id=7; -update noar tt set b0='LNTYHYFLWMBXN0G5TVJYQ' where id=7; -update noar ti set b0='LNTYHYFLWMBXN0G5TVJYQ' where id=7; -update noar tt set v0='0N3XXT9G' where id=7; -update noar ti set v0='0N3XXT9G' where id=7; -update noar tt set b1='MYQAF0ONB58LUOECPNR3XSCNJP' where id=7; -update noar ti set b1='MYQAF0ONB58LUOECPNR3XSCNJP' where id=7; -update noar tt set v0='P' where id=7; -update noar ti set v0='P' where id=7; -update noar tt set b2='7R' where id=7; -update noar ti set b2='7R' where id=7; -update noar tt set v0='B10NRY3BTS' where id=8; -update noar ti set v0='B10NRY3BTS' where id=8; -update noar tt set b0='0N5Q7WK9HC5JQNAHZZKT0P64TCQ20' where id=8; -update noar ti set b0='0N5Q7WK9HC5JQNAHZZKT0P64TCQ20' where id=8; -update noar tt set v0='EBAJ' where id=8; -update noar ti set v0='EBAJ' where id=8; -update noar tt set b1='NA4MH' where id=8; -update noar ti set b1='NA4MH' where id=8; -update noar tt set v0='LKV7LSLDUOLF' where id=8; -update noar ti set v0='LKV7LSLDUOLF' where id=8; -update noar tt set b2='KZKAETOA2IOQNHBF3YLO7MCB6MA7KCUN' where id=8; -update noar ti set b2='KZKAETOA2IOQNHBF3YLO7MCB6MA7KCUN' where id=8; -update noar tt set v0='PLO9ZRD' where id=9; -update noar ti set v0='PLO9ZRD' where id=9; -update noar tt set b0='FPYO1H2C' where id=9; -update noar ti set b0='FPYO1H2C' where id=9; -update noar tt set v0='14GSNG9Q' where id=9; -update noar ti set v0='14GSNG9Q' where id=9; -update noar tt set b1='4' where id=9; -update noar ti set b1='4' where id=9; -update noar tt set v0='E3SCJRMQ6G6F6TX6ICW5P' where id=9; -update noar ti set v0='E3SCJRMQ6G6F6TX6ICW5P' where id=9; -update noar tt set b2='68SUYGFTJ5KPL0I9TKYIH7621NDA8P3E' where id=9; -update noar ti set b2='68SUYGFTJ5KPL0I9TKYIH7621NDA8P3E' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -f0 int null, -v0 varchar(256) null, -b0 longblob null, -b1 longblob null, -b2 blob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='CS9Q254KLP' where id=1; -update noar ti set v0='CS9Q254KLP' where id=1; -update noar tt set b0='7WPRXV76R9V1B38LVOBV' where id=1; -update noar ti set b0='7WPRXV76R9V1B38LVOBV' where id=1; -update noar tt set v0='DAIF8SA8J' where id=1; -update noar ti set v0='DAIF8SA8J' where id=1; -update noar tt set b1='DGP5W5CGAM4T8Q7ZDHP9RFMLFM6OHV3' where id=1; -update noar ti set b1='DGP5W5CGAM4T8Q7ZDHP9RFMLFM6OHV3' where id=1; -update noar tt set v0='Y' where id=1; -update noar ti set v0='Y' where id=1; -update noar tt set b2='X1S9MDJXP4WU0CN1TZOM' where id=1; -update noar ti set b2='X1S9MDJXP4WU0CN1TZOM' where id=1; -update noar tt set v0='5HTBOH64WLYI8VTZ2KPY' where id=2; -update noar ti set v0='5HTBOH64WLYI8VTZ2KPY' where id=2; -update noar tt set b0='Q6QHONHJS5ZDDXNDRG2CSMV' where id=2; -update noar ti set b0='Q6QHONHJS5ZDDXNDRG2CSMV' where id=2; -update noar tt set v0='EACY23ORG92C9JSWFMW' where id=2; -update noar ti set v0='EACY23ORG92C9JSWFMW' where id=2; -update noar tt set b1='7' where id=2; -update noar ti set b1='7' where id=2; -update noar tt set v0='R' where id=2; -update noar ti set v0='R' where id=2; -update noar tt set b2='4O4DSK2AE1GPCXUCOUCHW31JI' where id=2; -update noar ti set b2='4O4DSK2AE1GPCXUCOUCHW31JI' where id=2; -update noar tt set v0='25YZM4NXC7CYXBGF07TN' where id=3; -update noar ti set v0='25YZM4NXC7CYXBGF07TN' where id=3; -update noar tt set b0='L6DF4QQ9475Q' where id=3; -update noar ti set b0='L6DF4QQ9475Q' where id=3; -update noar tt set v0='2WB66PK33NENKA1XTOHN2ZLXQKBZT2ZO' where id=3; -update noar ti set v0='2WB66PK33NENKA1XTOHN2ZLXQKBZT2ZO' where id=3; -update noar tt set b1='YRC4C8L4' where id=3; -update noar ti set b1='YRC4C8L4' where id=3; -update noar tt set v0='98KKGSKSIH6HJEK5DB2ZR8SU' where id=3; -update noar ti set v0='98KKGSKSIH6HJEK5DB2ZR8SU' where id=3; -update noar tt set b2='Q1P17AXJS9JAI7P42125FM37O9GU9PTI' where id=3; -update noar ti set b2='Q1P17AXJS9JAI7P42125FM37O9GU9PTI' where id=3; -update noar tt set v0='9EDQ4' where id=4; -update noar ti set v0='9EDQ4' where id=4; -update noar tt set b0='0IN6FZ50PF' where id=4; -update noar ti set b0='0IN6FZ50PF' where id=4; -update noar tt set v0='5UFO' where id=4; -update noar ti set v0='5UFO' where id=4; -update noar tt set b1='FO0JY9MS2US3J' where id=4; -update noar ti set b1='FO0JY9MS2US3J' where id=4; -update noar tt set v0='RC02ULX' where id=4; -update noar ti set v0='RC02ULX' where id=4; -update noar tt set b2='6E6BRKCK0WC81R' where id=4; -update noar ti set b2='6E6BRKCK0WC81R' where id=4; -update noar tt set v0='D6MOP6W9K3SDUI6' where id=5; -update noar ti set v0='D6MOP6W9K3SDUI6' where id=5; -update noar tt set b0='KZFAOQM' where id=5; -update noar ti set b0='KZFAOQM' where id=5; -update noar tt set v0='6SZRRG3IGEK7NUMS' where id=5; -update noar ti set v0='6SZRRG3IGEK7NUMS' where id=5; -update noar tt set b1='EICPN4INYQEZQWITTMGOMBA8R' where id=5; -update noar ti set b1='EICPN4INYQEZQWITTMGOMBA8R' where id=5; -update noar tt set v0='REG15BWE8ZELOHE5W3KBQY73AYPFJVQ' where id=5; -update noar ti set v0='REG15BWE8ZELOHE5W3KBQY73AYPFJVQ' where id=5; -update noar tt set b2='7PD67UF3V' where id=5; -update noar ti set b2='7PD67UF3V' where id=5; -update noar tt set v0='A' where id=6; -update noar ti set v0='A' where id=6; -update noar tt set b0='58UBNRGEJDS' where id=6; -update noar ti set b0='58UBNRGEJDS' where id=6; -update noar tt set v0='MFMGN6M1H' where id=6; -update noar ti set v0='MFMGN6M1H' where id=6; -update noar tt set b1='XLZ5IZECMEN' where id=6; -update noar ti set b1='XLZ5IZECMEN' where id=6; -update noar tt set v0='XS077DOGPLG9' where id=6; -update noar ti set v0='XS077DOGPLG9' where id=6; -update noar tt set b2='TM1IXJZICPYFEKI3ENPOX' where id=6; -update noar ti set b2='TM1IXJZICPYFEKI3ENPOX' where id=6; -update noar tt set v0='9MSMK' where id=7; -update noar ti set v0='9MSMK' where id=7; -update noar tt set b0='GPTNW5L08I6TLTZAY43DO9S40JDLNNP4' where id=7; -update noar ti set b0='GPTNW5L08I6TLTZAY43DO9S40JDLNNP4' where id=7; -update noar tt set v0='4N' where id=7; -update noar ti set v0='4N' where id=7; -update noar tt set b1='PEUHCVD' where id=7; -update noar ti set b1='PEUHCVD' where id=7; -update noar tt set v0='ZVXNPB2L' where id=7; -update noar ti set v0='ZVXNPB2L' where id=7; -update noar tt set b2='HQ5' where id=7; -update noar ti set b2='HQ5' where id=7; -update noar tt set v0='9JAXSTZW8WQL8QGDQJHN2I7' where id=8; -update noar ti set v0='9JAXSTZW8WQL8QGDQJHN2I7' where id=8; -update noar tt set b0='1TBGG6' where id=8; -update noar ti set b0='1TBGG6' where id=8; -update noar tt set v0='2X4PTHT17ACMOF1V9W1T3DR1N9C' where id=8; -update noar ti set v0='2X4PTHT17ACMOF1V9W1T3DR1N9C' where id=8; -update noar tt set b1='VJJSHVFA0HJW6' where id=8; -update noar ti set b1='VJJSHVFA0HJW6' where id=8; -update noar tt set v0='S43ZCA00D4TA' where id=8; -update noar ti set v0='S43ZCA00D4TA' where id=8; -update noar tt set b2='U87Y1ZI79LS81FDZO5M' where id=8; -update noar ti set b2='U87Y1ZI79LS81FDZO5M' where id=8; -update noar tt set v0='H0WWS2402O29YYP66' where id=9; -update noar ti set v0='H0WWS2402O29YYP66' where id=9; -update noar tt set b0='KC11SOA9J2GDP626DDVR8C52V9' where id=9; -update noar ti set b0='KC11SOA9J2GDP626DDVR8C52V9' where id=9; -update noar tt set v0='E6U3TQ958J5' where id=9; -update noar ti set v0='E6U3TQ958J5' where id=9; -update noar tt set b1='5K09D88' where id=9; -update noar ti set b1='5K09D88' where id=9; -update noar tt set v0='HU79FN8GSBNS' where id=9; -update noar ti set v0='HU79FN8GSBNS' where id=9; -update noar tt set b2='F6RY9' where id=9; -update noar ti set b2='F6RY9' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -f0 int not null, -v0 varchar(32) not null, -b0 longblob not null, -b1 longblob not null, -b2 blob not null -) engine=tokudb; -insert into tt values (1,0,'','','',''); -insert into tt values (2,0,'','','',''); -insert into tt values (3,0,'','','',''); -insert into tt values (4,0,'','','',''); -insert into tt values (5,0,'','','',''); -insert into tt values (6,0,'','','',''); -insert into tt values (7,0,'','','',''); -insert into tt values (8,0,'','','',''); -insert into tt values (9,0,'','','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='A6ANV7NSH933E5' where id=1; -update noar ti set v0='A6ANV7NSH933E5' where id=1; -update noar tt set b0='BPKSZP2HZQ6SZW8GMBX4L2B8I3HZ' where id=1; -update noar ti set b0='BPKSZP2HZQ6SZW8GMBX4L2B8I3HZ' where id=1; -update noar tt set v0='OQ7W198AGXBD3IO1DWG62NLYA76XCS4Y' where id=1; -update noar ti set v0='OQ7W198AGXBD3IO1DWG62NLYA76XCS4Y' where id=1; -update noar tt set b1='E7ELAFZXZBQV1XK' where id=1; -update noar ti set b1='E7ELAFZXZBQV1XK' where id=1; -update noar tt set v0='VCV6TJH506G5ZLQ0BW' where id=1; -update noar ti set v0='VCV6TJH506G5ZLQ0BW' where id=1; -update noar tt set b2='7YFAIVW57L7FYSN7GGP5WD74LKRK' where id=1; -update noar ti set b2='7YFAIVW57L7FYSN7GGP5WD74LKRK' where id=1; -update noar tt set v0='98D9SDV4O2SNNII4' where id=2; -update noar ti set v0='98D9SDV4O2SNNII4' where id=2; -update noar tt set b0='DH77Y0GI0JR95NQ' where id=2; -update noar ti set b0='DH77Y0GI0JR95NQ' where id=2; -update noar tt set v0='6FDAGC91F5TISAS7ZZH' where id=2; -update noar ti set v0='6FDAGC91F5TISAS7ZZH' where id=2; -update noar tt set b1='99BNM8V0AOIDQXD8I8OP3QWZTZ' where id=2; -update noar ti set b1='99BNM8V0AOIDQXD8I8OP3QWZTZ' where id=2; -update noar tt set v0='TG0FS6HZMLEBNT2' where id=2; -update noar ti set v0='TG0FS6HZMLEBNT2' where id=2; -update noar tt set b2='BDI4RIXP9GBD4ALELRFRFB3FZYO72AP9' where id=2; -update noar ti set b2='BDI4RIXP9GBD4ALELRFRFB3FZYO72AP9' where id=2; -update noar tt set v0='P392DGUO462HTZOALHL5IF' where id=3; -update noar ti set v0='P392DGUO462HTZOALHL5IF' where id=3; -update noar tt set b0='NKKNCTN5LB2EYS8A6XFBCKIL60TBX3D8' where id=3; -update noar ti set b0='NKKNCTN5LB2EYS8A6XFBCKIL60TBX3D8' where id=3; -update noar tt set v0='FE4S1G028HVD3XAKKH8737Z' where id=3; -update noar ti set v0='FE4S1G028HVD3XAKKH8737Z' where id=3; -update noar tt set b1='3F90' where id=3; -update noar ti set b1='3F90' where id=3; -update noar tt set v0='RNYG6I5DORKGNB9WCMJ' where id=3; -update noar ti set v0='RNYG6I5DORKGNB9WCMJ' where id=3; -update noar tt set b2='FMY7CL5EPQVXP6B9BG2XU618ANN3CAW' where id=3; -update noar ti set b2='FMY7CL5EPQVXP6B9BG2XU618ANN3CAW' where id=3; -update noar tt set v0='WVENPQGA8H9FMF36X0J' where id=4; -update noar ti set v0='WVENPQGA8H9FMF36X0J' where id=4; -update noar tt set b0='HQ0OP' where id=4; -update noar ti set b0='HQ0OP' where id=4; -update noar tt set v0='4LU3AEZE81FUX8Z6MY' where id=4; -update noar ti set v0='4LU3AEZE81FUX8Z6MY' where id=4; -update noar tt set b1='VJ05LIWF8OZQO9JGHW65GGQ8KE29' where id=4; -update noar ti set b1='VJ05LIWF8OZQO9JGHW65GGQ8KE29' where id=4; -update noar tt set v0='PP85AV3O2OEVS156RS93TW22AX' where id=4; -update noar ti set v0='PP85AV3O2OEVS156RS93TW22AX' where id=4; -update noar tt set b2='C1TH' where id=4; -update noar ti set b2='C1TH' where id=4; -update noar tt set v0='800VZ2QP4912P0R' where id=5; -update noar ti set v0='800VZ2QP4912P0R' where id=5; -update noar tt set b0='7NUMQPOL9' where id=5; -update noar ti set b0='7NUMQPOL9' where id=5; -update noar tt set v0='VHDCUTUOG3FMHGZQMG9' where id=5; -update noar ti set v0='VHDCUTUOG3FMHGZQMG9' where id=5; -update noar tt set b1='QWTG38457QTQQLIJ2' where id=5; -update noar ti set b1='QWTG38457QTQQLIJ2' where id=5; -update noar tt set v0='095SQL0' where id=5; -update noar ti set v0='095SQL0' where id=5; -update noar tt set b2='Y' where id=5; -update noar ti set b2='Y' where id=5; -update noar tt set v0='K178IINGDC68SDV7LHE8FVP2XN' where id=6; -update noar ti set v0='K178IINGDC68SDV7LHE8FVP2XN' where id=6; -update noar tt set b0='GZR2QLEZQYQZTY0ZU93EH8N' where id=6; -update noar ti set b0='GZR2QLEZQYQZTY0ZU93EH8N' where id=6; -update noar tt set v0='8DJW8E5PTKT0EGKIW5Q3' where id=6; -update noar ti set v0='8DJW8E5PTKT0EGKIW5Q3' where id=6; -update noar tt set b1='4O2VZFLEGDKNKOC7ETD' where id=6; -update noar ti set b1='4O2VZFLEGDKNKOC7ETD' where id=6; -update noar tt set v0='0K' where id=6; -update noar ti set v0='0K' where id=6; -update noar tt set b2='CJUHF' where id=6; -update noar ti set b2='CJUHF' where id=6; -update noar tt set v0='6K0IDWZF28JFV7NU8J56XU9' where id=7; -update noar ti set v0='6K0IDWZF28JFV7NU8J56XU9' where id=7; -update noar tt set b0='NEVP9MAVQYNGQKNTLEJZB' where id=7; -update noar ti set b0='NEVP9MAVQYNGQKNTLEJZB' where id=7; -update noar tt set v0='P193ISM679CWQAN3YZ1CX' where id=7; -update noar ti set v0='P193ISM679CWQAN3YZ1CX' where id=7; -update noar tt set b1='GR2DGQZ0KVH' where id=7; -update noar ti set b1='GR2DGQZ0KVH' where id=7; -update noar tt set v0='FL0X17THORT5D' where id=7; -update noar ti set v0='FL0X17THORT5D' where id=7; -update noar tt set b2='Q7GWF572WM6L9WVDSF' where id=7; -update noar ti set b2='Q7GWF572WM6L9WVDSF' where id=7; -update noar tt set v0='KPC6UMRJB56' where id=8; -update noar ti set v0='KPC6UMRJB56' where id=8; -update noar tt set b0='TVUWIP75WL4V' where id=8; -update noar ti set b0='TVUWIP75WL4V' where id=8; -update noar tt set v0='OP8I1WB' where id=8; -update noar ti set v0='OP8I1WB' where id=8; -update noar tt set b1='CWBA8RK1EQ99U1V9W5F' where id=8; -update noar ti set b1='CWBA8RK1EQ99U1V9W5F' where id=8; -update noar tt set v0='RFQYJVYOH' where id=8; -update noar ti set v0='RFQYJVYOH' where id=8; -update noar tt set b2='W' where id=8; -update noar ti set b2='W' where id=8; -update noar tt set v0='DW0WCVWTKE3XHPRQ4J3OEMCMS5' where id=9; -update noar ti set v0='DW0WCVWTKE3XHPRQ4J3OEMCMS5' where id=9; -update noar tt set b0='0KHBKIEK7W1JSUM' where id=9; -update noar ti set b0='0KHBKIEK7W1JSUM' where id=9; -update noar tt set v0='ITRMQ974LJ2NE28B02' where id=9; -update noar ti set v0='ITRMQ974LJ2NE28B02' where id=9; -update noar tt set b1='HWUWMDV0' where id=9; -update noar ti set b1='HWUWMDV0' where id=9; -update noar tt set v0='TDWHIGSGUGSYNVSZYX9NTII9FJ4WWDB' where id=9; -update noar ti set v0='TDWHIGSGUGSYNVSZYX9NTII9FJ4WWDB' where id=9; -update noar tt set b2='UTOHP5DRDYBN6Q6899ENS9GOJK0F2E' where id=9; -update noar ti set b2='UTOHP5DRDYBN6Q6899ENS9GOJK0F2E' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -f0 int not null, -v0 varchar(256) not null, -b0 longblob not null, -b1 longblob not null, -b2 blob not null -) engine=tokudb; -insert into tt values (1,0,'','','',''); -insert into tt values (2,0,'','','',''); -insert into tt values (3,0,'','','',''); -insert into tt values (4,0,'','','',''); -insert into tt values (5,0,'','','',''); -insert into tt values (6,0,'','','',''); -insert into tt values (7,0,'','','',''); -insert into tt values (8,0,'','','',''); -insert into tt values (9,0,'','','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='Q40VL7193ODVFE34T0' where id=1; -update noar ti set v0='Q40VL7193ODVFE34T0' where id=1; -update noar tt set b0='V5RV4TSPQX69PELX7KFQ' where id=1; -update noar ti set b0='V5RV4TSPQX69PELX7KFQ' where id=1; -update noar tt set v0='N27OG3J6PDRCD9XHEGOV' where id=1; -update noar ti set v0='N27OG3J6PDRCD9XHEGOV' where id=1; -update noar tt set b1='DPOAV8BV68G65GP17BLB' where id=1; -update noar ti set b1='DPOAV8BV68G65GP17BLB' where id=1; -update noar tt set v0='6VGDZEP5' where id=1; -update noar ti set v0='6VGDZEP5' where id=1; -update noar tt set b2='NOAV4L703NB5SX2PHZCYKHB6T7R' where id=1; -update noar ti set b2='NOAV4L703NB5SX2PHZCYKHB6T7R' where id=1; -update noar tt set v0='5' where id=2; -update noar ti set v0='5' where id=2; -update noar tt set b0='JA5M692FAUPH8YD' where id=2; -update noar ti set b0='JA5M692FAUPH8YD' where id=2; -update noar tt set v0='1ZKDTEB5AQIE1KH2U2XKGNY4X' where id=2; -update noar ti set v0='1ZKDTEB5AQIE1KH2U2XKGNY4X' where id=2; -update noar tt set b1='QBHKWUOHKNWAI7MLPGNE' where id=2; -update noar ti set b1='QBHKWUOHKNWAI7MLPGNE' where id=2; -update noar tt set v0='7TUMK6RPH3PUX00RGQCQMXDADENN9' where id=2; -update noar ti set v0='7TUMK6RPH3PUX00RGQCQMXDADENN9' where id=2; -update noar tt set b2='WA6KO98E3ZVIC7J3ITSDIFRMK' where id=2; -update noar ti set b2='WA6KO98E3ZVIC7J3ITSDIFRMK' where id=2; -update noar tt set v0='5OWI6XJWKNJON16O9ZGTQPC7RRPA' where id=3; -update noar ti set v0='5OWI6XJWKNJON16O9ZGTQPC7RRPA' where id=3; -update noar tt set b0='SR' where id=3; -update noar ti set b0='SR' where id=3; -update noar tt set v0='F1K' where id=3; -update noar ti set v0='F1K' where id=3; -update noar tt set b1='AQ2QJ7XCGIRWMVWXX4CDGLDN4EONK916' where id=3; -update noar ti set b1='AQ2QJ7XCGIRWMVWXX4CDGLDN4EONK916' where id=3; -update noar tt set v0='SOQ0K4503O03ESH' where id=3; -update noar ti set v0='SOQ0K4503O03ESH' where id=3; -update noar tt set b2='4BVCVILSWJYAL5930IHFA5' where id=3; -update noar ti set b2='4BVCVILSWJYAL5930IHFA5' where id=3; -update noar tt set v0='N4SDF' where id=4; -update noar ti set v0='N4SDF' where id=4; -update noar tt set b0='MTA9KCYYXOYLI2FTG4' where id=4; -update noar ti set b0='MTA9KCYYXOYLI2FTG4' where id=4; -update noar tt set v0='V' where id=4; -update noar ti set v0='V' where id=4; -update noar tt set b1='Q6VI4V0S3KDWU288TWPPNUE3TXSTP' where id=4; -update noar ti set b1='Q6VI4V0S3KDWU288TWPPNUE3TXSTP' where id=4; -update noar tt set v0='QZYJJSL6HI042NII36SYYJ7AMKT' where id=4; -update noar ti set v0='QZYJJSL6HI042NII36SYYJ7AMKT' where id=4; -update noar tt set b2='8AQEABPWUV78W5YT2V102MM4' where id=4; -update noar ti set b2='8AQEABPWUV78W5YT2V102MM4' where id=4; -update noar tt set v0='GRHFPPL3IQ4GVYLDNICBCN' where id=5; -update noar ti set v0='GRHFPPL3IQ4GVYLDNICBCN' where id=5; -update noar tt set b0='H5Z5OGF7XANTER6ZOEVXYIPUGFS2O8B' where id=5; -update noar ti set b0='H5Z5OGF7XANTER6ZOEVXYIPUGFS2O8B' where id=5; -update noar tt set v0='LYQ5HW5740I8N1VXQLZGK0A5QIT6M9KN' where id=5; -update noar ti set v0='LYQ5HW5740I8N1VXQLZGK0A5QIT6M9KN' where id=5; -update noar tt set b1='4D3XK3OKDDJ6TT708JSAYVKMIYVSQBB' where id=5; -update noar ti set b1='4D3XK3OKDDJ6TT708JSAYVKMIYVSQBB' where id=5; -update noar tt set v0='C423N11' where id=5; -update noar ti set v0='C423N11' where id=5; -update noar tt set b2='18SAG6I70M0VNUXILFU3DB' where id=5; -update noar ti set b2='18SAG6I70M0VNUXILFU3DB' where id=5; -update noar tt set v0='BY3UG98SS5RW9C26HFU' where id=6; -update noar ti set v0='BY3UG98SS5RW9C26HFU' where id=6; -update noar tt set b0='SE5' where id=6; -update noar ti set b0='SE5' where id=6; -update noar tt set v0='1ERKY7HPB6K0OTUC8HM' where id=6; -update noar ti set v0='1ERKY7HPB6K0OTUC8HM' where id=6; -update noar tt set b1='4E77VC4CBINAZUZNE5BM27222MO' where id=6; -update noar ti set b1='4E77VC4CBINAZUZNE5BM27222MO' where id=6; -update noar tt set v0='DFT0U5FT' where id=6; -update noar ti set v0='DFT0U5FT' where id=6; -update noar tt set b2='QC7JGSHVI7V0C5WSNGK53WHUMOVGKT3' where id=6; -update noar ti set b2='QC7JGSHVI7V0C5WSNGK53WHUMOVGKT3' where id=6; -update noar tt set v0='2Y' where id=7; -update noar ti set v0='2Y' where id=7; -update noar tt set b0='EM32N4XLC5D2MQ02' where id=7; -update noar ti set b0='EM32N4XLC5D2MQ02' where id=7; -update noar tt set v0='QKT599MG06SJB1B5PD' where id=7; -update noar ti set v0='QKT599MG06SJB1B5PD' where id=7; -update noar tt set b1='WQ37RIMMI2HUS3EJC7L5V6ZN' where id=7; -update noar ti set b1='WQ37RIMMI2HUS3EJC7L5V6ZN' where id=7; -update noar tt set v0='2CAMWPI8S0RBBE8ZJDGQT6VS0W8A1C' where id=7; -update noar ti set v0='2CAMWPI8S0RBBE8ZJDGQT6VS0W8A1C' where id=7; -update noar tt set b2='AWAH' where id=7; -update noar ti set b2='AWAH' where id=7; -update noar tt set v0='BV6XAGWTXN5ITRI40AZ371G4KE' where id=8; -update noar ti set v0='BV6XAGWTXN5ITRI40AZ371G4KE' where id=8; -update noar tt set b0='I5ZXYVERHZ' where id=8; -update noar ti set b0='I5ZXYVERHZ' where id=8; -update noar tt set v0='S2VEAZ855XWA' where id=8; -update noar ti set v0='S2VEAZ855XWA' where id=8; -update noar tt set b1='8X7EWHZ0' where id=8; -update noar ti set b1='8X7EWHZ0' where id=8; -update noar tt set v0='4JPJ2CSDDEKUUEB1USG7YFIW7' where id=8; -update noar ti set v0='4JPJ2CSDDEKUUEB1USG7YFIW7' where id=8; -update noar tt set b2='DII' where id=8; -update noar ti set b2='DII' where id=8; -update noar tt set v0='5A75G60KPYCWOOIPVYX53PYYBI' where id=9; -update noar ti set v0='5A75G60KPYCWOOIPVYX53PYYBI' where id=9; -update noar tt set b0='Z3U12JGTDJOGDUVR0T4WO7BL8K8TTOP' where id=9; -update noar ti set b0='Z3U12JGTDJOGDUVR0T4WO7BL8K8TTOP' where id=9; -update noar tt set v0='EBF0CHA3W1A8Z2QTSQZUPZM5WV' where id=9; -update noar ti set v0='EBF0CHA3W1A8Z2QTSQZUPZM5WV' where id=9; -update noar tt set b1='NPF3SKH' where id=9; -update noar ti set b1='NPF3SKH' where id=9; -update noar tt set v0='DJ51X5O799KN1EDNT4' where id=9; -update noar ti set v0='DJ51X5O799KN1EDNT4' where id=9; -update noar tt set b2='H83LWYFZOFYE93FTIE' where id=9; -update noar ti set b2='H83LWYFZOFYE93FTIE' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -f0 int null, -v0 varchar(32) null, -b0 longblob null, -b1 longblob null, -b2 mediumblob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='L216J66DXUFDB6' where id=1; -update noar ti set v0='L216J66DXUFDB6' where id=1; -update noar tt set b0='3JNUGSHGGWC31BA5K1EU9I77T4L' where id=1; -update noar ti set b0='3JNUGSHGGWC31BA5K1EU9I77T4L' where id=1; -update noar tt set v0='PPQ9FYR21W6FFX3KU1X4JPPU' where id=1; -update noar ti set v0='PPQ9FYR21W6FFX3KU1X4JPPU' where id=1; -update noar tt set b1='RE4L8HV2585YPI892R' where id=1; -update noar ti set b1='RE4L8HV2585YPI892R' where id=1; -update noar tt set v0='3Z2DRB5P6HHXLRVONQVQ31KU35UMP' where id=1; -update noar ti set v0='3Z2DRB5P6HHXLRVONQVQ31KU35UMP' where id=1; -update noar tt set b2='OXHDY9R2L7IQ5KR5RWF33CGAR29Y' where id=1; -update noar ti set b2='OXHDY9R2L7IQ5KR5RWF33CGAR29Y' where id=1; -update noar tt set v0='RM9ZO9IFY4E' where id=2; -update noar ti set v0='RM9ZO9IFY4E' where id=2; -update noar tt set b0='JTPNEJ' where id=2; -update noar ti set b0='JTPNEJ' where id=2; -update noar tt set v0='I2N3XAFX5W8CVQ' where id=2; -update noar ti set v0='I2N3XAFX5W8CVQ' where id=2; -update noar tt set b1='Z2EBTZN3I9VYPWJO03' where id=2; -update noar ti set b1='Z2EBTZN3I9VYPWJO03' where id=2; -update noar tt set v0='5T7RB44ZHU4I89UF' where id=2; -update noar ti set v0='5T7RB44ZHU4I89UF' where id=2; -update noar tt set b2='D82GI1XWTUV4VI' where id=2; -update noar ti set b2='D82GI1XWTUV4VI' where id=2; -update noar tt set v0='WV27QB711I60AJO' where id=3; -update noar ti set v0='WV27QB711I60AJO' where id=3; -update noar tt set b0='7CZY1W6K' where id=3; -update noar ti set b0='7CZY1W6K' where id=3; -update noar tt set v0='82AMGMC' where id=3; -update noar ti set v0='82AMGMC' where id=3; -update noar tt set b1='JUT92YANW4G4QUPJ6' where id=3; -update noar ti set b1='JUT92YANW4G4QUPJ6' where id=3; -update noar tt set v0='55UNJDOWWEIL7VV' where id=3; -update noar ti set v0='55UNJDOWWEIL7VV' where id=3; -update noar tt set b2='0UW9' where id=3; -update noar ti set b2='0UW9' where id=3; -update noar tt set v0='BB75FMHPUEPO' where id=4; -update noar ti set v0='BB75FMHPUEPO' where id=4; -update noar tt set b0='K3BQ360V2A526TWDYD' where id=4; -update noar ti set b0='K3BQ360V2A526TWDYD' where id=4; -update noar tt set v0='6J8N' where id=4; -update noar ti set v0='6J8N' where id=4; -update noar tt set b1='AMU5' where id=4; -update noar ti set b1='AMU5' where id=4; -update noar tt set v0='B27R' where id=4; -update noar ti set v0='B27R' where id=4; -update noar tt set b2='O' where id=4; -update noar ti set b2='O' where id=4; -update noar tt set v0='31' where id=5; -update noar ti set v0='31' where id=5; -update noar tt set b0='KDDL7JOZVMSPAUA7BOR' where id=5; -update noar ti set b0='KDDL7JOZVMSPAUA7BOR' where id=5; -update noar tt set v0='HV' where id=5; -update noar ti set v0='HV' where id=5; -update noar tt set b1='TSG40YRD03OJ63PPU4OF6ZGW87RB' where id=5; -update noar ti set b1='TSG40YRD03OJ63PPU4OF6ZGW87RB' where id=5; -update noar tt set v0='UV' where id=5; -update noar ti set v0='UV' where id=5; -update noar tt set b2='49O' where id=5; -update noar ti set b2='49O' where id=5; -update noar tt set v0='G0UGH40M3BR89' where id=6; -update noar ti set v0='G0UGH40M3BR89' where id=6; -update noar tt set b0='8XRKCLUP' where id=6; -update noar ti set b0='8XRKCLUP' where id=6; -update noar tt set v0='4G08NKNGG56U8C0SNGBK' where id=6; -update noar ti set v0='4G08NKNGG56U8C0SNGBK' where id=6; -update noar tt set b1='U5Q1FGOWIUFTTB1' where id=6; -update noar ti set b1='U5Q1FGOWIUFTTB1' where id=6; -update noar tt set v0='5DXSCQPO2C0DTMTC' where id=6; -update noar ti set v0='5DXSCQPO2C0DTMTC' where id=6; -update noar tt set b2='UW2I29J5X6Y9T2KGY' where id=6; -update noar ti set b2='UW2I29J5X6Y9T2KGY' where id=6; -update noar tt set v0='B5MQYIXBK' where id=7; -update noar ti set v0='B5MQYIXBK' where id=7; -update noar tt set b0='PDD50CBPYGLVREJYRQZKYBOLV2HLX5' where id=7; -update noar ti set b0='PDD50CBPYGLVREJYRQZKYBOLV2HLX5' where id=7; -update noar tt set v0='FZMC' where id=7; -update noar ti set v0='FZMC' where id=7; -update noar tt set b1='H' where id=7; -update noar ti set b1='H' where id=7; -update noar tt set v0='1105F5OL' where id=7; -update noar ti set v0='1105F5OL' where id=7; -update noar tt set b2='8WTAS92G8A1JIOBV8LC9HL' where id=7; -update noar ti set b2='8WTAS92G8A1JIOBV8LC9HL' where id=7; -update noar tt set v0='IKTS1RCAWVE6WAN6AG548' where id=8; -update noar ti set v0='IKTS1RCAWVE6WAN6AG548' where id=8; -update noar tt set b0='F7V79OAO' where id=8; -update noar ti set b0='F7V79OAO' where id=8; -update noar tt set v0='N' where id=8; -update noar ti set v0='N' where id=8; -update noar tt set b1='7AL' where id=8; -update noar ti set b1='7AL' where id=8; -update noar tt set v0='5N' where id=8; -update noar ti set v0='5N' where id=8; -update noar tt set b2='SYMCSRP0MIP' where id=8; -update noar ti set b2='SYMCSRP0MIP' where id=8; -update noar tt set v0='0HOU7X8TI958RM4PEDD9FULXK' where id=9; -update noar ti set v0='0HOU7X8TI958RM4PEDD9FULXK' where id=9; -update noar tt set b0='Q2R324PIM' where id=9; -update noar ti set b0='Q2R324PIM' where id=9; -update noar tt set v0='6VZASL7MA5ZCHVAWDV18' where id=9; -update noar ti set v0='6VZASL7MA5ZCHVAWDV18' where id=9; -update noar tt set b1='1FNS0848JEGELV3YS9IC8E3BR' where id=9; -update noar ti set b1='1FNS0848JEGELV3YS9IC8E3BR' where id=9; -update noar tt set v0='BMJWRDRBCBQF9KT6PCERSX' where id=9; -update noar ti set v0='BMJWRDRBCBQF9KT6PCERSX' where id=9; -update noar tt set b2='KFUEK5STYM94I' where id=9; -update noar ti set b2='KFUEK5STYM94I' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -f0 int null, -v0 varchar(256) null, -b0 longblob null, -b1 longblob null, -b2 mediumblob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='2ZJAGF2H06JVV4Y2ZJNQD0GF' where id=1; -update noar ti set v0='2ZJAGF2H06JVV4Y2ZJNQD0GF' where id=1; -update noar tt set b0='7' where id=1; -update noar ti set b0='7' where id=1; -update noar tt set v0='C1MVXJGRTB43I150HUW6D7UFXKB' where id=1; -update noar ti set v0='C1MVXJGRTB43I150HUW6D7UFXKB' where id=1; -update noar tt set b1='E6' where id=1; -update noar ti set b1='E6' where id=1; -update noar tt set v0='XT4IDAUGS53L338TX89' where id=1; -update noar ti set v0='XT4IDAUGS53L338TX89' where id=1; -update noar tt set b2='IUDCY3UHT7Y9W' where id=1; -update noar ti set b2='IUDCY3UHT7Y9W' where id=1; -update noar tt set v0='L88M2' where id=2; -update noar ti set v0='L88M2' where id=2; -update noar tt set b0='BCAWJ80C3Q9BLJUVZTMFD99OZW4C4' where id=2; -update noar ti set b0='BCAWJ80C3Q9BLJUVZTMFD99OZW4C4' where id=2; -update noar tt set v0='MPS' where id=2; -update noar ti set v0='MPS' where id=2; -update noar tt set b1='7N60NEE3MAHIMHIUMWN5WG' where id=2; -update noar ti set b1='7N60NEE3MAHIMHIUMWN5WG' where id=2; -update noar tt set v0='GIZ9GB' where id=2; -update noar ti set v0='GIZ9GB' where id=2; -update noar tt set b2='RVZ' where id=2; -update noar ti set b2='RVZ' where id=2; -update noar tt set v0='L60O11U' where id=3; -update noar ti set v0='L60O11U' where id=3; -update noar tt set b0='KZP4M65M628QHB0RYW' where id=3; -update noar ti set b0='KZP4M65M628QHB0RYW' where id=3; -update noar tt set v0='CUXBJ92HROQOV971UZWU5SVGCG' where id=3; -update noar ti set v0='CUXBJ92HROQOV971UZWU5SVGCG' where id=3; -update noar tt set b1='10VMTK4HEZJAFAEIDBP6U39ZC' where id=3; -update noar ti set b1='10VMTK4HEZJAFAEIDBP6U39ZC' where id=3; -update noar tt set v0='9CNV5JGB3AI85KXEFMFBNURYTS' where id=3; -update noar ti set v0='9CNV5JGB3AI85KXEFMFBNURYTS' where id=3; -update noar tt set b2='684VPUULD43UWPO' where id=3; -update noar ti set b2='684VPUULD43UWPO' where id=3; -update noar tt set v0='UDN8MYPX7XB5XPNDN2PSQV26OJEAEYM' where id=4; -update noar ti set v0='UDN8MYPX7XB5XPNDN2PSQV26OJEAEYM' where id=4; -update noar tt set b0='9WOPXKBQ' where id=4; -update noar ti set b0='9WOPXKBQ' where id=4; -update noar tt set v0='JEN39H2SEXEXNXUG42NMABL1A' where id=4; -update noar ti set v0='JEN39H2SEXEXNXUG42NMABL1A' where id=4; -update noar tt set b1='2UZ1W' where id=4; -update noar ti set b1='2UZ1W' where id=4; -update noar tt set v0='G9ZPRRG5E1TY7F' where id=4; -update noar ti set v0='G9ZPRRG5E1TY7F' where id=4; -update noar tt set b2='FDAH3UGHO' where id=4; -update noar ti set b2='FDAH3UGHO' where id=4; -update noar tt set v0='WOB4FBKF78WUVG9NTW8XFSDWH' where id=5; -update noar ti set v0='WOB4FBKF78WUVG9NTW8XFSDWH' where id=5; -update noar tt set b0='W' where id=5; -update noar ti set b0='W' where id=5; -update noar tt set v0='P6GWJUW3XAL7UZBXVOIS3993' where id=5; -update noar ti set v0='P6GWJUW3XAL7UZBXVOIS3993' where id=5; -update noar tt set b1='KR2NGIJF1MTZ8' where id=5; -update noar ti set b1='KR2NGIJF1MTZ8' where id=5; -update noar tt set v0='WIRUG' where id=5; -update noar ti set v0='WIRUG' where id=5; -update noar tt set b2='HS8W2DE589RPAE250WW' where id=5; -update noar ti set b2='HS8W2DE589RPAE250WW' where id=5; -update noar tt set v0='E39EDBEO9S' where id=6; -update noar ti set v0='E39EDBEO9S' where id=6; -update noar tt set b0='22Z5GXHKLC53NZND1NKM9H0L78K8' where id=6; -update noar ti set b0='22Z5GXHKLC53NZND1NKM9H0L78K8' where id=6; -update noar tt set v0='0IUUGFJO1OVUWJL990DW3HDBX09' where id=6; -update noar ti set v0='0IUUGFJO1OVUWJL990DW3HDBX09' where id=6; -update noar tt set b1='3B2087MV2AY99M7XB1C' where id=6; -update noar ti set b1='3B2087MV2AY99M7XB1C' where id=6; -update noar tt set v0='AB0UC53R' where id=6; -update noar ti set v0='AB0UC53R' where id=6; -update noar tt set b2='QRWUE5CM4F2U' where id=6; -update noar ti set b2='QRWUE5CM4F2U' where id=6; -update noar tt set v0='7YBB0BVQ24OZMZUO7QUD6Z8F3A0KG' where id=7; -update noar ti set v0='7YBB0BVQ24OZMZUO7QUD6Z8F3A0KG' where id=7; -update noar tt set b0='87Y2MYJSYXJ4IF8UGOFFZKMS' where id=7; -update noar ti set b0='87Y2MYJSYXJ4IF8UGOFFZKMS' where id=7; -update noar tt set v0='73LSTH0BXZW36OA6LVJMPKUIWE' where id=7; -update noar ti set v0='73LSTH0BXZW36OA6LVJMPKUIWE' where id=7; -update noar tt set b1='65TPUR989EH09W3O' where id=7; -update noar ti set b1='65TPUR989EH09W3O' where id=7; -update noar tt set v0='G7I6LERBGXSS6BJLP921Q' where id=7; -update noar ti set v0='G7I6LERBGXSS6BJLP921Q' where id=7; -update noar tt set b2='J18GXSZP2GVXBP4ZKLHCYETYWUKN8F6' where id=7; -update noar ti set b2='J18GXSZP2GVXBP4ZKLHCYETYWUKN8F6' where id=7; -update noar tt set v0='9X43MHCEDI8DRYO8H15EZ0GZ6QC2Z2' where id=8; -update noar ti set v0='9X43MHCEDI8DRYO8H15EZ0GZ6QC2Z2' where id=8; -update noar tt set b0='AO' where id=8; -update noar ti set b0='AO' where id=8; -update noar tt set v0='ZJQ5M56YT65VCYZ2JE9YQ4H' where id=8; -update noar ti set v0='ZJQ5M56YT65VCYZ2JE9YQ4H' where id=8; -update noar tt set b1='6RNRART7CFE50XV0RW93NXQ5VBN4V2VO' where id=8; -update noar ti set b1='6RNRART7CFE50XV0RW93NXQ5VBN4V2VO' where id=8; -update noar tt set v0='FTG4DVK1A54X3XZYPEAHV0' where id=8; -update noar ti set v0='FTG4DVK1A54X3XZYPEAHV0' where id=8; -update noar tt set b2='RAWRYFCQQ6HHOXHGP9GKMT2Q' where id=8; -update noar ti set b2='RAWRYFCQQ6HHOXHGP9GKMT2Q' where id=8; -update noar tt set v0='FP7' where id=9; -update noar ti set v0='FP7' where id=9; -update noar tt set b0='ZZB6DKBO' where id=9; -update noar ti set b0='ZZB6DKBO' where id=9; -update noar tt set v0='XWKRYVS' where id=9; -update noar ti set v0='XWKRYVS' where id=9; -update noar tt set b1='IG5805TARFTSG7RNXW0DT5' where id=9; -update noar ti set b1='IG5805TARFTSG7RNXW0DT5' where id=9; -update noar tt set v0='30I4C1L2MDYQOTKLJMG2T3JW' where id=9; -update noar ti set v0='30I4C1L2MDYQOTKLJMG2T3JW' where id=9; -update noar tt set b2='6ZZ3WQVOMUNKSW3QKQ6HV4ELR' where id=9; -update noar ti set b2='6ZZ3WQVOMUNKSW3QKQ6HV4ELR' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -f0 int not null, -v0 varchar(32) not null, -b0 longblob not null, -b1 longblob not null, -b2 mediumblob not null -) engine=tokudb; -insert into tt values (1,0,'','','',''); -insert into tt values (2,0,'','','',''); -insert into tt values (3,0,'','','',''); -insert into tt values (4,0,'','','',''); -insert into tt values (5,0,'','','',''); -insert into tt values (6,0,'','','',''); -insert into tt values (7,0,'','','',''); -insert into tt values (8,0,'','','',''); -insert into tt values (9,0,'','','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='NWHSJHAYMED9LHNQZM5P' where id=1; -update noar ti set v0='NWHSJHAYMED9LHNQZM5P' where id=1; -update noar tt set b0='KN2SZIYVYZYJBWGSMD' where id=1; -update noar ti set b0='KN2SZIYVYZYJBWGSMD' where id=1; -update noar tt set v0='X05D' where id=1; -update noar ti set v0='X05D' where id=1; -update noar tt set b1='T4H9PY559DJA88U2CYKJIJL0S4H27YTE' where id=1; -update noar ti set b1='T4H9PY559DJA88U2CYKJIJL0S4H27YTE' where id=1; -update noar tt set v0='KQK7ZE4SN5OH1A9K31YNBOM60EE3' where id=1; -update noar ti set v0='KQK7ZE4SN5OH1A9K31YNBOM60EE3' where id=1; -update noar tt set b2='C791GBP' where id=1; -update noar ti set b2='C791GBP' where id=1; -update noar tt set v0='3' where id=2; -update noar ti set v0='3' where id=2; -update noar tt set b0='09EU3XY68D172BL7MYJ0NO9' where id=2; -update noar ti set b0='09EU3XY68D172BL7MYJ0NO9' where id=2; -update noar tt set v0='N87PW08T2CZAMKKNKX0K5UKI4VQQ' where id=2; -update noar ti set v0='N87PW08T2CZAMKKNKX0K5UKI4VQQ' where id=2; -update noar tt set b1='LUDSRYIBTIKXVKNTP' where id=2; -update noar ti set b1='LUDSRYIBTIKXVKNTP' where id=2; -update noar tt set v0='A2CGYVFWZJKJP601A5G3S' where id=2; -update noar ti set v0='A2CGYVFWZJKJP601A5G3S' where id=2; -update noar tt set b2='3' where id=2; -update noar ti set b2='3' where id=2; -update noar tt set v0='SK7DCQTR6AOV' where id=3; -update noar ti set v0='SK7DCQTR6AOV' where id=3; -update noar tt set b0='TX044FKN6TVMY7Q8Q9C24' where id=3; -update noar ti set b0='TX044FKN6TVMY7Q8Q9C24' where id=3; -update noar tt set v0='3K7Q27B2CX8UC7SXW' where id=3; -update noar ti set v0='3K7Q27B2CX8UC7SXW' where id=3; -update noar tt set b1='LEXADGPDYKORJA' where id=3; -update noar ti set b1='LEXADGPDYKORJA' where id=3; -update noar tt set v0='L9SQ7WJW7MH4LS6CVM6LF8H7UVDQA4KN' where id=3; -update noar ti set v0='L9SQ7WJW7MH4LS6CVM6LF8H7UVDQA4KN' where id=3; -update noar tt set b2='F613SNE0I' where id=3; -update noar ti set b2='F613SNE0I' where id=3; -update noar tt set v0='4PYXQ382NKFQ0IK4P302NZ0' where id=4; -update noar ti set v0='4PYXQ382NKFQ0IK4P302NZ0' where id=4; -update noar tt set b0='B66OJJ44SST1SYVD38P' where id=4; -update noar ti set b0='B66OJJ44SST1SYVD38P' where id=4; -update noar tt set v0='6OXVVQAPA6' where id=4; -update noar ti set v0='6OXVVQAPA6' where id=4; -update noar tt set b1='L4T43M8L3' where id=4; -update noar ti set b1='L4T43M8L3' where id=4; -update noar tt set v0='UBZIT7HDIA783R8O2' where id=4; -update noar ti set v0='UBZIT7HDIA783R8O2' where id=4; -update noar tt set b2='NEQN3Z5MWI4ZPX8NL' where id=4; -update noar ti set b2='NEQN3Z5MWI4ZPX8NL' where id=4; -update noar tt set v0='HZ2SH0JQ11CMBGBGRPLJH01ZQNKGO2PT' where id=5; -update noar ti set v0='HZ2SH0JQ11CMBGBGRPLJH01ZQNKGO2PT' where id=5; -update noar tt set b0='548PXEBUH5Y25MHBGI' where id=5; -update noar ti set b0='548PXEBUH5Y25MHBGI' where id=5; -update noar tt set v0='RO' where id=5; -update noar ti set v0='RO' where id=5; -update noar tt set b1='2YNKHL05H' where id=5; -update noar ti set b1='2YNKHL05H' where id=5; -update noar tt set v0='BR' where id=5; -update noar ti set v0='BR' where id=5; -update noar tt set b2='VOX0H24KGGL9MZ' where id=5; -update noar ti set b2='VOX0H24KGGL9MZ' where id=5; -update noar tt set v0='F0NLNKPVIYFEZE5M0KALUA8TR8BIOR99' where id=6; -update noar ti set v0='F0NLNKPVIYFEZE5M0KALUA8TR8BIOR99' where id=6; -update noar tt set b0='W8I0B94RUSAH2' where id=6; -update noar ti set b0='W8I0B94RUSAH2' where id=6; -update noar tt set v0='6CFG33' where id=6; -update noar ti set v0='6CFG33' where id=6; -update noar tt set b1='2ZZY6U' where id=6; -update noar ti set b1='2ZZY6U' where id=6; -update noar tt set v0='HK08953CN6BQ4JXBK6661PCX' where id=6; -update noar ti set v0='HK08953CN6BQ4JXBK6661PCX' where id=6; -update noar tt set b2='6A3FMJIP78G6HIT7S' where id=6; -update noar ti set b2='6A3FMJIP78G6HIT7S' where id=6; -update noar tt set v0='9DU2GIVO84MYR7ZMZM9ZECGI0004C' where id=7; -update noar ti set v0='9DU2GIVO84MYR7ZMZM9ZECGI0004C' where id=7; -update noar tt set b0='HN3X0NCPFNCK' where id=7; -update noar ti set b0='HN3X0NCPFNCK' where id=7; -update noar tt set v0='P3HQFY31' where id=7; -update noar ti set v0='P3HQFY31' where id=7; -update noar tt set b1='YG4ZQAVR' where id=7; -update noar ti set b1='YG4ZQAVR' where id=7; -update noar tt set v0='C3QIWL4M8B' where id=7; -update noar ti set v0='C3QIWL4M8B' where id=7; -update noar tt set b2='AC11DOLF2RBNEH7B8' where id=7; -update noar ti set b2='AC11DOLF2RBNEH7B8' where id=7; -update noar tt set v0='9OTLAZ1E4' where id=8; -update noar ti set v0='9OTLAZ1E4' where id=8; -update noar tt set b0='SEEP3OE5L7H51BSWX1CAY6D86IMNZH6' where id=8; -update noar ti set b0='SEEP3OE5L7H51BSWX1CAY6D86IMNZH6' where id=8; -update noar tt set v0='FOWT349K24V8D2XVSBJK' where id=8; -update noar ti set v0='FOWT349K24V8D2XVSBJK' where id=8; -update noar tt set b1='KDCLCSSC3Q9OIY' where id=8; -update noar ti set b1='KDCLCSSC3Q9OIY' where id=8; -update noar tt set v0='RWIXT4BUO7XWPRNS7' where id=8; -update noar ti set v0='RWIXT4BUO7XWPRNS7' where id=8; -update noar tt set b2='CDTY7JAHNH16X39V7KKWSYHO3T3' where id=8; -update noar ti set b2='CDTY7JAHNH16X39V7KKWSYHO3T3' where id=8; -update noar tt set v0='J5PW316XFOGK89MAWP4EIN' where id=9; -update noar ti set v0='J5PW316XFOGK89MAWP4EIN' where id=9; -update noar tt set b0='6TEX1PX15LWBXX63' where id=9; -update noar ti set b0='6TEX1PX15LWBXX63' where id=9; -update noar tt set v0='GCD8ELC2BQ10MDG73RC0J' where id=9; -update noar ti set v0='GCD8ELC2BQ10MDG73RC0J' where id=9; -update noar tt set b1='Y4' where id=9; -update noar ti set b1='Y4' where id=9; -update noar tt set v0='ZQBUVKJ9M5Y4B57SO274HY6GTYTSD85' where id=9; -update noar ti set v0='ZQBUVKJ9M5Y4B57SO274HY6GTYTSD85' where id=9; -update noar tt set b2='G8XH9' where id=9; -update noar ti set b2='G8XH9' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -f0 int not null, -v0 varchar(256) not null, -b0 longblob not null, -b1 longblob not null, -b2 mediumblob not null -) engine=tokudb; -insert into tt values (1,0,'','','',''); -insert into tt values (2,0,'','','',''); -insert into tt values (3,0,'','','',''); -insert into tt values (4,0,'','','',''); -insert into tt values (5,0,'','','',''); -insert into tt values (6,0,'','','',''); -insert into tt values (7,0,'','','',''); -insert into tt values (8,0,'','','',''); -insert into tt values (9,0,'','','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='N5' where id=1; -update noar ti set v0='N5' where id=1; -update noar tt set b0='UACQC7JU4' where id=1; -update noar ti set b0='UACQC7JU4' where id=1; -update noar tt set v0='VTWW08W3FSXPGF67' where id=1; -update noar ti set v0='VTWW08W3FSXPGF67' where id=1; -update noar tt set b1='4Y5M334SHKRNP8UCFNXZA5WXV2BP0TXO' where id=1; -update noar ti set b1='4Y5M334SHKRNP8UCFNXZA5WXV2BP0TXO' where id=1; -update noar tt set v0='VAQI85KWNE' where id=1; -update noar ti set v0='VAQI85KWNE' where id=1; -update noar tt set b2='5W9KAEJF7HUDI' where id=1; -update noar ti set b2='5W9KAEJF7HUDI' where id=1; -update noar tt set v0='QMONG2VN16NTEGIK47THTB1UPB6O2DV' where id=2; -update noar ti set v0='QMONG2VN16NTEGIK47THTB1UPB6O2DV' where id=2; -update noar tt set b0='818O3SR' where id=2; -update noar ti set b0='818O3SR' where id=2; -update noar tt set v0='HSWIABRQ5ZANTAAMSF46K95' where id=2; -update noar ti set v0='HSWIABRQ5ZANTAAMSF46K95' where id=2; -update noar tt set b1='51ORZ5Q1N88HQG6QDUVEPQUHU6' where id=2; -update noar ti set b1='51ORZ5Q1N88HQG6QDUVEPQUHU6' where id=2; -update noar tt set v0='KSCB2C' where id=2; -update noar ti set v0='KSCB2C' where id=2; -update noar tt set b2='W6JXJ' where id=2; -update noar ti set b2='W6JXJ' where id=2; -update noar tt set v0='2A00RJM681W' where id=3; -update noar ti set v0='2A00RJM681W' where id=3; -update noar tt set b0='F1FTH2B' where id=3; -update noar ti set b0='F1FTH2B' where id=3; -update noar tt set v0='V92V83KO0EKHDIWMGBBT0GVHUHSUYIT' where id=3; -update noar ti set v0='V92V83KO0EKHDIWMGBBT0GVHUHSUYIT' where id=3; -update noar tt set b1='D07MLGVC9KFM0RDYHA47IOCVYT2HC' where id=3; -update noar ti set b1='D07MLGVC9KFM0RDYHA47IOCVYT2HC' where id=3; -update noar tt set v0='88MY32OLBEWMMJ' where id=3; -update noar ti set v0='88MY32OLBEWMMJ' where id=3; -update noar tt set b2='T6W69XOCEUGTT96R7E027DIG9F99ZEZO' where id=3; -update noar ti set b2='T6W69XOCEUGTT96R7E027DIG9F99ZEZO' where id=3; -update noar tt set v0='PP5K' where id=4; -update noar ti set v0='PP5K' where id=4; -update noar tt set b0='JSIPCVIE9QHW0GFAGKOU7P0EOTI4' where id=4; -update noar ti set b0='JSIPCVIE9QHW0GFAGKOU7P0EOTI4' where id=4; -update noar tt set v0='HEJOOGM7Q59' where id=4; -update noar ti set v0='HEJOOGM7Q59' where id=4; -update noar tt set b1='SZYPUTDYAG0' where id=4; -update noar ti set b1='SZYPUTDYAG0' where id=4; -update noar tt set v0='OMHECUO0EOE85KKCXMRM48OV7YNWIZRC' where id=4; -update noar ti set v0='OMHECUO0EOE85KKCXMRM48OV7YNWIZRC' where id=4; -update noar tt set b2='W' where id=4; -update noar ti set b2='W' where id=4; -update noar tt set v0='IN09HARX2UCX' where id=5; -update noar ti set v0='IN09HARX2UCX' where id=5; -update noar tt set b0='UK3NY' where id=5; -update noar ti set b0='UK3NY' where id=5; -update noar tt set v0='5L76ER4RDH4LMWHUX9UG7F9FQEIL8VH7' where id=5; -update noar ti set v0='5L76ER4RDH4LMWHUX9UG7F9FQEIL8VH7' where id=5; -update noar tt set b1='VSCKGHWELK9B' where id=5; -update noar ti set b1='VSCKGHWELK9B' where id=5; -update noar tt set v0='O7G6KMB0HTH3ZIRPJN174TOHFTBU7C' where id=5; -update noar ti set v0='O7G6KMB0HTH3ZIRPJN174TOHFTBU7C' where id=5; -update noar tt set b2='8WK9K7QHO0V27OVD0JXBF9U8QFTF' where id=5; -update noar ti set b2='8WK9K7QHO0V27OVD0JXBF9U8QFTF' where id=5; -update noar tt set v0='E3JXX1DOQDJPP' where id=6; -update noar ti set v0='E3JXX1DOQDJPP' where id=6; -update noar tt set b0='TWK' where id=6; -update noar ti set b0='TWK' where id=6; -update noar tt set v0='BQDVLKNRA561W3EIXM' where id=6; -update noar ti set v0='BQDVLKNRA561W3EIXM' where id=6; -update noar tt set b1='5SNUNB0O20LA4WF' where id=6; -update noar ti set b1='5SNUNB0O20LA4WF' where id=6; -update noar tt set v0='37M8XS1TDWOB' where id=6; -update noar ti set v0='37M8XS1TDWOB' where id=6; -update noar tt set b2='LOI6J8' where id=6; -update noar ti set b2='LOI6J8' where id=6; -update noar tt set v0='1J0Y7IJI65BN57OYBP7YBV2CRZN7P' where id=7; -update noar ti set v0='1J0Y7IJI65BN57OYBP7YBV2CRZN7P' where id=7; -update noar tt set b0='0J' where id=7; -update noar ti set b0='0J' where id=7; -update noar tt set v0='15CWG' where id=7; -update noar ti set v0='15CWG' where id=7; -update noar tt set b1='RZFMNIP5WFQ8YGGWFXEWERKDLJ378Q' where id=7; -update noar ti set b1='RZFMNIP5WFQ8YGGWFXEWERKDLJ378Q' where id=7; -update noar tt set v0='BXI2E2KVHU' where id=7; -update noar ti set v0='BXI2E2KVHU' where id=7; -update noar tt set b2='O4DUFHMCA01GEEXQME8ZCW16W421Z4' where id=7; -update noar ti set b2='O4DUFHMCA01GEEXQME8ZCW16W421Z4' where id=7; -update noar tt set v0='BWAI9MJSI7WAJ2YW5QO9397' where id=8; -update noar ti set v0='BWAI9MJSI7WAJ2YW5QO9397' where id=8; -update noar tt set b0='C46PVNIB879PVL5R5F' where id=8; -update noar ti set b0='C46PVNIB879PVL5R5F' where id=8; -update noar tt set v0='QAMIV53TCM3KAVSE' where id=8; -update noar ti set v0='QAMIV53TCM3KAVSE' where id=8; -update noar tt set b1='I1VDETXQGK2XHPG' where id=8; -update noar ti set b1='I1VDETXQGK2XHPG' where id=8; -update noar tt set v0='4CI8WKXD5BK5GI5IH5' where id=8; -update noar ti set v0='4CI8WKXD5BK5GI5IH5' where id=8; -update noar tt set b2='5' where id=8; -update noar ti set b2='5' where id=8; -update noar tt set v0='Z3IUV7VVDH' where id=9; -update noar ti set v0='Z3IUV7VVDH' where id=9; -update noar tt set b0='OI1HI6WQTHBRBA6927K4Y1NBLZ2VP' where id=9; -update noar ti set b0='OI1HI6WQTHBRBA6927K4Y1NBLZ2VP' where id=9; -update noar tt set v0='VXBAMU5ZW2O76ZC1UKPSG5VYEYV3P' where id=9; -update noar ti set v0='VXBAMU5ZW2O76ZC1UKPSG5VYEYV3P' where id=9; -update noar tt set b1='9JCMIUTJ3HAUNB71QJ4J0DY55CEU8H' where id=9; -update noar ti set b1='9JCMIUTJ3HAUNB71QJ4J0DY55CEU8H' where id=9; -update noar tt set v0='RGRU01F9JDGFSN8WKTC4' where id=9; -update noar ti set v0='RGRU01F9JDGFSN8WKTC4' where id=9; -update noar tt set b2='7HY0TERWCQR4QESCHT2Z' where id=9; -update noar ti set b2='7HY0TERWCQR4QESCHT2Z' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -f0 int null, -v0 varchar(32) null, -b0 longblob null, -b1 longblob null, -b2 longblob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='MX92BBA4SWVEMS06OJ' where id=1; -update noar ti set v0='MX92BBA4SWVEMS06OJ' where id=1; -update noar tt set b0='0RLF6RTR6WJESAEBLQPL8VEKKA7W6' where id=1; -update noar ti set b0='0RLF6RTR6WJESAEBLQPL8VEKKA7W6' where id=1; -update noar tt set v0='DVIQ' where id=1; -update noar ti set v0='DVIQ' where id=1; -update noar tt set b1='9EIU2WQMV9264VQH8Q8XIKZS5G' where id=1; -update noar ti set b1='9EIU2WQMV9264VQH8Q8XIKZS5G' where id=1; -update noar tt set v0='XF8VP0DLO1D01LQG' where id=1; -update noar ti set v0='XF8VP0DLO1D01LQG' where id=1; -update noar tt set b2='NKSHQML7FD9G6YGRZDC340AZE9X' where id=1; -update noar ti set b2='NKSHQML7FD9G6YGRZDC340AZE9X' where id=1; -update noar tt set v0='4AZHEXI9YIXWIRX1EDG8H' where id=2; -update noar ti set v0='4AZHEXI9YIXWIRX1EDG8H' where id=2; -update noar tt set b0='UB7CL95OH' where id=2; -update noar ti set b0='UB7CL95OH' where id=2; -update noar tt set v0='IUTX9H' where id=2; -update noar ti set v0='IUTX9H' where id=2; -update noar tt set b1='H70055R7WQ0UQT8MB9JHAPWLCRCV9' where id=2; -update noar ti set b1='H70055R7WQ0UQT8MB9JHAPWLCRCV9' where id=2; -update noar tt set v0='O49BHR7C5VVNIK4J38P7TF' where id=2; -update noar ti set v0='O49BHR7C5VVNIK4J38P7TF' where id=2; -update noar tt set b2='4IBXZJKZYO6G57A1H1H98' where id=2; -update noar ti set b2='4IBXZJKZYO6G57A1H1H98' where id=2; -update noar tt set v0='HXLLCRHBF6CE2' where id=3; -update noar ti set v0='HXLLCRHBF6CE2' where id=3; -update noar tt set b0='PHOBSYXSBO65X' where id=3; -update noar ti set b0='PHOBSYXSBO65X' where id=3; -update noar tt set v0='S29W7O' where id=3; -update noar ti set v0='S29W7O' where id=3; -update noar tt set b1='42RH1STPLQXLQ8W55IALDLWGI' where id=3; -update noar ti set b1='42RH1STPLQXLQ8W55IALDLWGI' where id=3; -update noar tt set v0='K72W05QTUOI87NJ4W07V2' where id=3; -update noar ti set v0='K72W05QTUOI87NJ4W07V2' where id=3; -update noar tt set b2='AYZ4Q58K4' where id=3; -update noar ti set b2='AYZ4Q58K4' where id=3; -update noar tt set v0='O5334BVU25QPGD3CNBGRB6' where id=4; -update noar ti set v0='O5334BVU25QPGD3CNBGRB6' where id=4; -update noar tt set b0='XNOCJZX9W9KD12398MH3JBBS2HEHT' where id=4; -update noar ti set b0='XNOCJZX9W9KD12398MH3JBBS2HEHT' where id=4; -update noar tt set v0='RAOGVEHESP' where id=4; -update noar ti set v0='RAOGVEHESP' where id=4; -update noar tt set b1='7BPBFE' where id=4; -update noar ti set b1='7BPBFE' where id=4; -update noar tt set v0='ST34364EB61ITQUIVWQ1' where id=4; -update noar ti set v0='ST34364EB61ITQUIVWQ1' where id=4; -update noar tt set b2='1WBII279D476PEH3QXBIK2AIT1YA8JEV' where id=4; -update noar ti set b2='1WBII279D476PEH3QXBIK2AIT1YA8JEV' where id=4; -update noar tt set v0='C6B' where id=5; -update noar ti set v0='C6B' where id=5; -update noar tt set b0='K3ZVOFIRDNLUH' where id=5; -update noar ti set b0='K3ZVOFIRDNLUH' where id=5; -update noar tt set v0='SVVWHXHDFQK' where id=5; -update noar ti set v0='SVVWHXHDFQK' where id=5; -update noar tt set b1='TZMAYB88690X' where id=5; -update noar ti set b1='TZMAYB88690X' where id=5; -update noar tt set v0='RKE34C0GINFZH0JELRN' where id=5; -update noar ti set v0='RKE34C0GINFZH0JELRN' where id=5; -update noar tt set b2='USWVYBNPQDUUINZRO2M0JR47O9FV0R' where id=5; -update noar ti set b2='USWVYBNPQDUUINZRO2M0JR47O9FV0R' where id=5; -update noar tt set v0='3ZDK3LB80V3' where id=6; -update noar ti set v0='3ZDK3LB80V3' where id=6; -update noar tt set b0='PBE5K96QI9R8S253AGP859LDPX' where id=6; -update noar ti set b0='PBE5K96QI9R8S253AGP859LDPX' where id=6; -update noar tt set v0='LVNY6LW8KJV6TI8K0' where id=6; -update noar ti set v0='LVNY6LW8KJV6TI8K0' where id=6; -update noar tt set b1='K2SUD0' where id=6; -update noar ti set b1='K2SUD0' where id=6; -update noar tt set v0='9PUG7' where id=6; -update noar ti set v0='9PUG7' where id=6; -update noar tt set b2='DNXGZ4L9VW0NZL8FNSLV7' where id=6; -update noar ti set b2='DNXGZ4L9VW0NZL8FNSLV7' where id=6; -update noar tt set v0='3AX58WOQR5O2EC' where id=7; -update noar ti set v0='3AX58WOQR5O2EC' where id=7; -update noar tt set b0='Q25H' where id=7; -update noar ti set b0='Q25H' where id=7; -update noar tt set v0='5SBTRDOJT3GEZO4VKSL92' where id=7; -update noar ti set v0='5SBTRDOJT3GEZO4VKSL92' where id=7; -update noar tt set b1='PAXCQIZNBUF30E1MN3D72IYAWZR' where id=7; -update noar ti set b1='PAXCQIZNBUF30E1MN3D72IYAWZR' where id=7; -update noar tt set v0='Z3G' where id=7; -update noar ti set v0='Z3G' where id=7; -update noar tt set b2='W9ZS14BS1JL90650K' where id=7; -update noar ti set b2='W9ZS14BS1JL90650K' where id=7; -update noar tt set v0='SMZMKDLPP' where id=8; -update noar ti set v0='SMZMKDLPP' where id=8; -update noar tt set b0='Y2UMT' where id=8; -update noar ti set b0='Y2UMT' where id=8; -update noar tt set v0='QKD49TOY9CPEE3BKTH3GO8HJP' where id=8; -update noar ti set v0='QKD49TOY9CPEE3BKTH3GO8HJP' where id=8; -update noar tt set b1='0Z02Y32' where id=8; -update noar ti set b1='0Z02Y32' where id=8; -update noar tt set v0='NXN6K' where id=8; -update noar ti set v0='NXN6K' where id=8; -update noar tt set b2='BS5LLYNWC' where id=8; -update noar ti set b2='BS5LLYNWC' where id=8; -update noar tt set v0='SGZZ6KFK3FTOXPEM0G15HTIE1QDI531' where id=9; -update noar ti set v0='SGZZ6KFK3FTOXPEM0G15HTIE1QDI531' where id=9; -update noar tt set b0='OB1FSM9CNOULC17SBF67QR98DY' where id=9; -update noar ti set b0='OB1FSM9CNOULC17SBF67QR98DY' where id=9; -update noar tt set v0='31F9WRL9RQ61DG3D7SYLL0P5M' where id=9; -update noar ti set v0='31F9WRL9RQ61DG3D7SYLL0P5M' where id=9; -update noar tt set b1='1Q' where id=9; -update noar ti set b1='1Q' where id=9; -update noar tt set v0='6I7381BY' where id=9; -update noar ti set v0='6I7381BY' where id=9; -update noar tt set b2='GEMR8SGTHQWEM94WAY' where id=9; -update noar ti set b2='GEMR8SGTHQWEM94WAY' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -f0 int null, -v0 varchar(256) null, -b0 longblob null, -b1 longblob null, -b2 longblob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='F' where id=1; -update noar ti set v0='F' where id=1; -update noar tt set b0='STPBM' where id=1; -update noar ti set b0='STPBM' where id=1; -update noar tt set v0='WKUAFH2VN70A19A6XCGJDGW6E0B' where id=1; -update noar ti set v0='WKUAFH2VN70A19A6XCGJDGW6E0B' where id=1; -update noar tt set b1='I6IZ6NYUUMSJGJHMASU8WTRS2' where id=1; -update noar ti set b1='I6IZ6NYUUMSJGJHMASU8WTRS2' where id=1; -update noar tt set v0='D4' where id=1; -update noar ti set v0='D4' where id=1; -update noar tt set b2='KKSMN4LJ5Y7' where id=1; -update noar ti set b2='KKSMN4LJ5Y7' where id=1; -update noar tt set v0='I' where id=2; -update noar ti set v0='I' where id=2; -update noar tt set b0='151OFEVGJYQSZV' where id=2; -update noar ti set b0='151OFEVGJYQSZV' where id=2; -update noar tt set v0='GZKNCEWMC65M2FASI1SBUUJ3U8RU' where id=2; -update noar ti set v0='GZKNCEWMC65M2FASI1SBUUJ3U8RU' where id=2; -update noar tt set b1='0UBKOW2N8OKFJ84RBZCXSJEP037JU2' where id=2; -update noar ti set b1='0UBKOW2N8OKFJ84RBZCXSJEP037JU2' where id=2; -update noar tt set v0='Y5JSPAOPBT69B3OQKQGYOW9FQ' where id=2; -update noar ti set v0='Y5JSPAOPBT69B3OQKQGYOW9FQ' where id=2; -update noar tt set b2='FIZ' where id=2; -update noar ti set b2='FIZ' where id=2; -update noar tt set v0='3QU8' where id=3; -update noar ti set v0='3QU8' where id=3; -update noar tt set b0='R0E4HHC7QRPPC8HRL72LB09' where id=3; -update noar ti set b0='R0E4HHC7QRPPC8HRL72LB09' where id=3; -update noar tt set v0='4H' where id=3; -update noar ti set v0='4H' where id=3; -update noar tt set b1='9WWK01AA3Z4ZJ6PIPCMF7VN2YVKX9A6' where id=3; -update noar ti set b1='9WWK01AA3Z4ZJ6PIPCMF7VN2YVKX9A6' where id=3; -update noar tt set v0='M974YVNIZ1NARF5' where id=3; -update noar ti set v0='M974YVNIZ1NARF5' where id=3; -update noar tt set b2='TSGNSFRDYWC3HNIC753D67' where id=3; -update noar ti set b2='TSGNSFRDYWC3HNIC753D67' where id=3; -update noar tt set v0='MWFJUCTEVMHN36' where id=4; -update noar ti set v0='MWFJUCTEVMHN36' where id=4; -update noar tt set b0='56W9O1S1VSC' where id=4; -update noar ti set b0='56W9O1S1VSC' where id=4; -update noar tt set v0='FJKHA776QLMIR0JO2NAH0HWY' where id=4; -update noar ti set v0='FJKHA776QLMIR0JO2NAH0HWY' where id=4; -update noar tt set b1='J14BK0A3SZSWB' where id=4; -update noar ti set b1='J14BK0A3SZSWB' where id=4; -update noar tt set v0='1LBPB50A0NB2XUR6KWICOIIR2AJJLEE' where id=4; -update noar ti set v0='1LBPB50A0NB2XUR6KWICOIIR2AJJLEE' where id=4; -update noar tt set b2='RH6IC3JVTAQ' where id=4; -update noar ti set b2='RH6IC3JVTAQ' where id=4; -update noar tt set v0='DE31UPJUERRX4LFNB' where id=5; -update noar ti set v0='DE31UPJUERRX4LFNB' where id=5; -update noar tt set b0='411XK6UK7VY0U52R' where id=5; -update noar ti set b0='411XK6UK7VY0U52R' where id=5; -update noar tt set v0='73JGLEH067EY4DO' where id=5; -update noar ti set v0='73JGLEH067EY4DO' where id=5; -update noar tt set b1='4F3RTNEUT8LCRBS87IGM1T4QKHZ0UTD' where id=5; -update noar ti set b1='4F3RTNEUT8LCRBS87IGM1T4QKHZ0UTD' where id=5; -update noar tt set v0='KZCD3' where id=5; -update noar ti set v0='KZCD3' where id=5; -update noar tt set b2='ZV980JBFL7EMUZAJ6PVWSWE' where id=5; -update noar ti set b2='ZV980JBFL7EMUZAJ6PVWSWE' where id=5; -update noar tt set v0='DRDS9ZRMLQ4CDNGA5D09VQ' where id=6; -update noar ti set v0='DRDS9ZRMLQ4CDNGA5D09VQ' where id=6; -update noar tt set b0='T1PW5KLZE5N139R32MYD1TUASSI5' where id=6; -update noar ti set b0='T1PW5KLZE5N139R32MYD1TUASSI5' where id=6; -update noar tt set v0='QRWJHN' where id=6; -update noar ti set v0='QRWJHN' where id=6; -update noar tt set b1='BW683SLS2S6Z' where id=6; -update noar ti set b1='BW683SLS2S6Z' where id=6; -update noar tt set v0='WCXLHZBF8MKMWGATZ21' where id=6; -update noar ti set v0='WCXLHZBF8MKMWGATZ21' where id=6; -update noar tt set b2='RN4EG9A5MYLVX9YN13974R6KZ4J' where id=6; -update noar ti set b2='RN4EG9A5MYLVX9YN13974R6KZ4J' where id=6; -update noar tt set v0='K59ND6QPLAKDI418271' where id=7; -update noar ti set v0='K59ND6QPLAKDI418271' where id=7; -update noar tt set b0='UZ51TYKC23KH5YXD80' where id=7; -update noar ti set b0='UZ51TYKC23KH5YXD80' where id=7; -update noar tt set v0='T0AU7VSJLNVDS3BWJGYQ5NEUCHILJI1P' where id=7; -update noar ti set v0='T0AU7VSJLNVDS3BWJGYQ5NEUCHILJI1P' where id=7; -update noar tt set b1='N9GT3P7L3TS0' where id=7; -update noar ti set b1='N9GT3P7L3TS0' where id=7; -update noar tt set v0='1VWA3ND4TOW14JSWMHGA224AC7E1' where id=7; -update noar ti set v0='1VWA3ND4TOW14JSWMHGA224AC7E1' where id=7; -update noar tt set b2='FWLJ' where id=7; -update noar ti set b2='FWLJ' where id=7; -update noar tt set v0='1ECCPUL88LHV' where id=8; -update noar ti set v0='1ECCPUL88LHV' where id=8; -update noar tt set b0='Z8P05XW7NC' where id=8; -update noar ti set b0='Z8P05XW7NC' where id=8; -update noar tt set v0='YIHBO4PX0052N3ZZEJS8S95R1' where id=8; -update noar ti set v0='YIHBO4PX0052N3ZZEJS8S95R1' where id=8; -update noar tt set b1='S22VABMYDBGJJARTGCWVZGE' where id=8; -update noar ti set b1='S22VABMYDBGJJARTGCWVZGE' where id=8; -update noar tt set v0='04629RAXTQHBBB1JKKJAJ6M52U' where id=8; -update noar ti set v0='04629RAXTQHBBB1JKKJAJ6M52U' where id=8; -update noar tt set b2='907GRRVU33HRB5NFM4UVWCT9CWR9B4' where id=8; -update noar ti set b2='907GRRVU33HRB5NFM4UVWCT9CWR9B4' where id=8; -update noar tt set v0='MHIPLD3' where id=9; -update noar ti set v0='MHIPLD3' where id=9; -update noar tt set b0='O50M3AOG3O' where id=9; -update noar ti set b0='O50M3AOG3O' where id=9; -update noar tt set v0='TLRY7B9YFU' where id=9; -update noar ti set v0='TLRY7B9YFU' where id=9; -update noar tt set b1='N03VLWD4UT' where id=9; -update noar ti set b1='N03VLWD4UT' where id=9; -update noar tt set v0='CDLZYEK3J76E69KKG6CX3W7PM6MY' where id=9; -update noar ti set v0='CDLZYEK3J76E69KKG6CX3W7PM6MY' where id=9; -update noar tt set b2='3DGWJD3MF' where id=9; -update noar ti set b2='3DGWJD3MF' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -f0 int not null, -v0 varchar(32) not null, -b0 longblob not null, -b1 longblob not null, -b2 longblob not null -) engine=tokudb; -insert into tt values (1,0,'','','',''); -insert into tt values (2,0,'','','',''); -insert into tt values (3,0,'','','',''); -insert into tt values (4,0,'','','',''); -insert into tt values (5,0,'','','',''); -insert into tt values (6,0,'','','',''); -insert into tt values (7,0,'','','',''); -insert into tt values (8,0,'','','',''); -insert into tt values (9,0,'','','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='QXCYXIY9HEXZU0X0QW3ZF9V' where id=1; -update noar ti set v0='QXCYXIY9HEXZU0X0QW3ZF9V' where id=1; -update noar tt set b0='GMGK1CXTZ3V4GYUC2M9B91SK91BXLAX' where id=1; -update noar ti set b0='GMGK1CXTZ3V4GYUC2M9B91SK91BXLAX' where id=1; -update noar tt set v0='WAL' where id=1; -update noar ti set v0='WAL' where id=1; -update noar tt set b1='WVRXP5ON76J0FA2ODUFBMOGT6TU2MVBA' where id=1; -update noar ti set b1='WVRXP5ON76J0FA2ODUFBMOGT6TU2MVBA' where id=1; -update noar tt set v0='OUC85N24CR51NG4FNI1VQIEO76QQ1' where id=1; -update noar ti set v0='OUC85N24CR51NG4FNI1VQIEO76QQ1' where id=1; -update noar tt set b2='71RBGJJWLWAMUCYAB7VLG9S' where id=1; -update noar ti set b2='71RBGJJWLWAMUCYAB7VLG9S' where id=1; -update noar tt set v0='4RYEJGWGQHTIYCFBOK' where id=2; -update noar ti set v0='4RYEJGWGQHTIYCFBOK' where id=2; -update noar tt set b0='1HQV9KK28B2T1N24DH' where id=2; -update noar ti set b0='1HQV9KK28B2T1N24DH' where id=2; -update noar tt set v0='NIC3YMFDOHN' where id=2; -update noar ti set v0='NIC3YMFDOHN' where id=2; -update noar tt set b1='NSNUD3W7SODCJ9CSNG9ETAVJLIGPATU' where id=2; -update noar ti set b1='NSNUD3W7SODCJ9CSNG9ETAVJLIGPATU' where id=2; -update noar tt set v0='NRJCC8YIH81MI0G0JC7JTP3EMI' where id=2; -update noar ti set v0='NRJCC8YIH81MI0G0JC7JTP3EMI' where id=2; -update noar tt set b2='FN9' where id=2; -update noar ti set b2='FN9' where id=2; -update noar tt set v0='7ASEMW7' where id=3; -update noar ti set v0='7ASEMW7' where id=3; -update noar tt set b0='DN9RET9G7U99TOZ2RK43DN1G2LAPF' where id=3; -update noar ti set b0='DN9RET9G7U99TOZ2RK43DN1G2LAPF' where id=3; -update noar tt set v0='TAKI6KBV7' where id=3; -update noar ti set v0='TAKI6KBV7' where id=3; -update noar tt set b1='LT4JUNN3QAAV0L' where id=3; -update noar ti set b1='LT4JUNN3QAAV0L' where id=3; -update noar tt set v0='MZ36VLY1FYJ' where id=3; -update noar ti set v0='MZ36VLY1FYJ' where id=3; -update noar tt set b2='IMTACLKITMDX7Z' where id=3; -update noar ti set b2='IMTACLKITMDX7Z' where id=3; -update noar tt set v0='CYU' where id=4; -update noar ti set v0='CYU' where id=4; -update noar tt set b0='MNJ1OH9WNFA' where id=4; -update noar ti set b0='MNJ1OH9WNFA' where id=4; -update noar tt set v0='YIANQRDGU' where id=4; -update noar ti set v0='YIANQRDGU' where id=4; -update noar tt set b1='GBKAC8X6' where id=4; -update noar ti set b1='GBKAC8X6' where id=4; -update noar tt set v0='1D8EQJ5O0HB2CTYKHIE8OVY9NUV' where id=4; -update noar ti set v0='1D8EQJ5O0HB2CTYKHIE8OVY9NUV' where id=4; -update noar tt set b2='P8795LZLOR2YQQ4A3R19A4UO' where id=4; -update noar ti set b2='P8795LZLOR2YQQ4A3R19A4UO' where id=4; -update noar tt set v0='S6AYAN3YW7ZVLRPKK2N' where id=5; -update noar ti set v0='S6AYAN3YW7ZVLRPKK2N' where id=5; -update noar tt set b0='V8NNC1J57FXEJ' where id=5; -update noar ti set b0='V8NNC1J57FXEJ' where id=5; -update noar tt set v0='5YMAYSLLDSJGAN' where id=5; -update noar ti set v0='5YMAYSLLDSJGAN' where id=5; -update noar tt set b1='YQQZRJANDXENUR8KDZ1PUGBRONI71WS' where id=5; -update noar ti set b1='YQQZRJANDXENUR8KDZ1PUGBRONI71WS' where id=5; -update noar tt set v0='9ZHPLXAG6YUMIZL78OQWLZ035' where id=5; -update noar ti set v0='9ZHPLXAG6YUMIZL78OQWLZ035' where id=5; -update noar tt set b2='3' where id=5; -update noar ti set b2='3' where id=5; -update noar tt set v0='9CRW0R8PX92Z8EAW' where id=6; -update noar ti set v0='9CRW0R8PX92Z8EAW' where id=6; -update noar tt set b0='TICEQQ2TGM7L30' where id=6; -update noar ti set b0='TICEQQ2TGM7L30' where id=6; -update noar tt set v0='NA5GS1VIGH3CS37GOKHAVDLF8L387Q' where id=6; -update noar ti set v0='NA5GS1VIGH3CS37GOKHAVDLF8L387Q' where id=6; -update noar tt set b1='BX9DBOL' where id=6; -update noar ti set b1='BX9DBOL' where id=6; -update noar tt set v0='GY0Z8U89TVQ6PUKWY' where id=6; -update noar ti set v0='GY0Z8U89TVQ6PUKWY' where id=6; -update noar tt set b2='GTTXDBDPDGTPIMMS74EFR9DC2' where id=6; -update noar ti set b2='GTTXDBDPDGTPIMMS74EFR9DC2' where id=6; -update noar tt set v0='OHVPKG299C5RH1NM5G8UE' where id=7; -update noar ti set v0='OHVPKG299C5RH1NM5G8UE' where id=7; -update noar tt set b0='FXQAZ8UXV4KGEAMIBRATIGEZ0VXVGEFA' where id=7; -update noar ti set b0='FXQAZ8UXV4KGEAMIBRATIGEZ0VXVGEFA' where id=7; -update noar tt set v0='2L2WBE3H1RBX5FI9IW1NRM3' where id=7; -update noar ti set v0='2L2WBE3H1RBX5FI9IW1NRM3' where id=7; -update noar tt set b1='JOX4OPR4C59SQLMDBS3I' where id=7; -update noar ti set b1='JOX4OPR4C59SQLMDBS3I' where id=7; -update noar tt set v0='8XWQ831085PJYNHZYOU3V' where id=7; -update noar ti set v0='8XWQ831085PJYNHZYOU3V' where id=7; -update noar tt set b2='XNNNALCPSYOESMQQ829NAVV0AN75Y6' where id=7; -update noar ti set b2='XNNNALCPSYOESMQQ829NAVV0AN75Y6' where id=7; -update noar tt set v0='E1BPSL2J9I6VE3XYLKSLLPUVQRPV7BX' where id=8; -update noar ti set v0='E1BPSL2J9I6VE3XYLKSLLPUVQRPV7BX' where id=8; -update noar tt set b0='ABRW3EZ4S1F3SH0OON4VKW529G' where id=8; -update noar ti set b0='ABRW3EZ4S1F3SH0OON4VKW529G' where id=8; -update noar tt set v0='ULQ8SZWPC5MTBV' where id=8; -update noar ti set v0='ULQ8SZWPC5MTBV' where id=8; -update noar tt set b1='SJ2WCOUMB5NQ8PM7X27F446VME4I' where id=8; -update noar ti set b1='SJ2WCOUMB5NQ8PM7X27F446VME4I' where id=8; -update noar tt set v0='2C39Q1T7CI59ZO33T' where id=8; -update noar ti set v0='2C39Q1T7CI59ZO33T' where id=8; -update noar tt set b2='0LODV5VP465' where id=8; -update noar ti set b2='0LODV5VP465' where id=8; -update noar tt set v0='G5COILN' where id=9; -update noar ti set v0='G5COILN' where id=9; -update noar tt set b0='5DGTGB8HEMBC' where id=9; -update noar ti set b0='5DGTGB8HEMBC' where id=9; -update noar tt set v0='1QDBMVO12D8PKNQ3CLAG12ULZ7S4KWJ' where id=9; -update noar ti set v0='1QDBMVO12D8PKNQ3CLAG12ULZ7S4KWJ' where id=9; -update noar tt set b1='PC2FFX8IQRBN' where id=9; -update noar ti set b1='PC2FFX8IQRBN' where id=9; -update noar tt set v0='RLUGBNPPVCIIXAP' where id=9; -update noar ti set v0='RLUGBNPPVCIIXAP' where id=9; -update noar tt set b2='1EF6LTSRFBK2ROBBL' where id=9; -update noar ti set b2='1EF6LTSRFBK2ROBBL' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -f0 int not null, -v0 varchar(256) not null, -b0 longblob not null, -b1 longblob not null, -b2 longblob not null -) engine=tokudb; -insert into tt values (1,0,'','','',''); -insert into tt values (2,0,'','','',''); -insert into tt values (3,0,'','','',''); -insert into tt values (4,0,'','','',''); -insert into tt values (5,0,'','','',''); -insert into tt values (6,0,'','','',''); -insert into tt values (7,0,'','','',''); -insert into tt values (8,0,'','','',''); -insert into tt values (9,0,'','','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='LEEYUTRS34P' where id=1; -update noar ti set v0='LEEYUTRS34P' where id=1; -update noar tt set b0='M99ECXEP4X9N2CIUQXK31QQB4YMJOY' where id=1; -update noar ti set b0='M99ECXEP4X9N2CIUQXK31QQB4YMJOY' where id=1; -update noar tt set v0='UWUDZUWPEQEPJ22XLK' where id=1; -update noar ti set v0='UWUDZUWPEQEPJ22XLK' where id=1; -update noar tt set b1='LASOLRZDKEI8' where id=1; -update noar ti set b1='LASOLRZDKEI8' where id=1; -update noar tt set v0='T' where id=1; -update noar ti set v0='T' where id=1; -update noar tt set b2='Z8KZLNDQ4JIF0L7P78WA' where id=1; -update noar ti set b2='Z8KZLNDQ4JIF0L7P78WA' where id=1; -update noar tt set v0='2GP6DEJ' where id=2; -update noar ti set v0='2GP6DEJ' where id=2; -update noar tt set b0='H0X864HBR3V1RIEJ9ZBXQAIXC' where id=2; -update noar ti set b0='H0X864HBR3V1RIEJ9ZBXQAIXC' where id=2; -update noar tt set v0='UXN0' where id=2; -update noar ti set v0='UXN0' where id=2; -update noar tt set b1='SRZZVJEVO72JAWSSKOK2K4N2BI5QNIUV' where id=2; -update noar ti set b1='SRZZVJEVO72JAWSSKOK2K4N2BI5QNIUV' where id=2; -update noar tt set v0='WMNT8KVHXSWOXRQP3ICE1BPV8AU8W' where id=2; -update noar ti set v0='WMNT8KVHXSWOXRQP3ICE1BPV8AU8W' where id=2; -update noar tt set b2='3IDATCFXH1N' where id=2; -update noar ti set b2='3IDATCFXH1N' where id=2; -update noar tt set v0='2BLL8H' where id=3; -update noar ti set v0='2BLL8H' where id=3; -update noar tt set b0='8I0MR9O73A3ZU' where id=3; -update noar ti set b0='8I0MR9O73A3ZU' where id=3; -update noar tt set v0='F15MBIWGGJTKWMCL' where id=3; -update noar ti set v0='F15MBIWGGJTKWMCL' where id=3; -update noar tt set b1='10UEU09O9PS' where id=3; -update noar ti set b1='10UEU09O9PS' where id=3; -update noar tt set v0='Y69SGR0281ITJKO1DL' where id=3; -update noar ti set v0='Y69SGR0281ITJKO1DL' where id=3; -update noar tt set b2='P8KRKC81XD0GLF0MB75M66PAUWG6M' where id=3; -update noar ti set b2='P8KRKC81XD0GLF0MB75M66PAUWG6M' where id=3; -update noar tt set v0='V05FVC27AK67P8UF' where id=4; -update noar ti set v0='V05FVC27AK67P8UF' where id=4; -update noar tt set b0='96GOVZJ57YF4P' where id=4; -update noar ti set b0='96GOVZJ57YF4P' where id=4; -update noar tt set v0='PCAOE2SHBW179MA06KJ0JMOAKZE37' where id=4; -update noar ti set v0='PCAOE2SHBW179MA06KJ0JMOAKZE37' where id=4; -update noar tt set b1='QZUMP45P813MCN8XJXJU0MH1QVSGKR' where id=4; -update noar ti set b1='QZUMP45P813MCN8XJXJU0MH1QVSGKR' where id=4; -update noar tt set v0='KSBAC3PHT79Y3S4ONZL' where id=4; -update noar ti set v0='KSBAC3PHT79Y3S4ONZL' where id=4; -update noar tt set b2='RQQ75RL8WSBT80S6LF3HI911P9LS' where id=4; -update noar ti set b2='RQQ75RL8WSBT80S6LF3HI911P9LS' where id=4; -update noar tt set v0='S2JS1Z1W6HHE1R6' where id=5; -update noar ti set v0='S2JS1Z1W6HHE1R6' where id=5; -update noar tt set b0='R63EDI' where id=5; -update noar ti set b0='R63EDI' where id=5; -update noar tt set v0='DRYQ9SZR34TREIFDK6HQ' where id=5; -update noar ti set v0='DRYQ9SZR34TREIFDK6HQ' where id=5; -update noar tt set b1='WITFE0XFLPD7DQ05FRQMTGZTWZ4NYV' where id=5; -update noar ti set b1='WITFE0XFLPD7DQ05FRQMTGZTWZ4NYV' where id=5; -update noar tt set v0='I' where id=5; -update noar ti set v0='I' where id=5; -update noar tt set b2='9918LQ72RYXMO' where id=5; -update noar ti set b2='9918LQ72RYXMO' where id=5; -update noar tt set v0='HJVH8W1MPJY255UPCLAQRNN0M' where id=6; -update noar ti set v0='HJVH8W1MPJY255UPCLAQRNN0M' where id=6; -update noar tt set b0='XBO' where id=6; -update noar ti set b0='XBO' where id=6; -update noar tt set v0='WBSGL7V81QVEIFA7ZEDY6PQBBOG0V' where id=6; -update noar ti set v0='WBSGL7V81QVEIFA7ZEDY6PQBBOG0V' where id=6; -update noar tt set b1='EJAZIX23T' where id=6; -update noar ti set b1='EJAZIX23T' where id=6; -update noar tt set v0='RKS6' where id=6; -update noar ti set v0='RKS6' where id=6; -update noar tt set b2='QJB84V43MSQEEQD2' where id=6; -update noar ti set b2='QJB84V43MSQEEQD2' where id=6; -update noar tt set v0='J5CIGFE6PG3HHF4IR99RP0BQWDRFVN' where id=7; -update noar ti set v0='J5CIGFE6PG3HHF4IR99RP0BQWDRFVN' where id=7; -update noar tt set b0='025DD53DH735IIL0KAUXUU' where id=7; -update noar ti set b0='025DD53DH735IIL0KAUXUU' where id=7; -update noar tt set v0='KT8MERXTHITVZTE5YBC4PODA' where id=7; -update noar ti set v0='KT8MERXTHITVZTE5YBC4PODA' where id=7; -update noar tt set b1='BB' where id=7; -update noar ti set b1='BB' where id=7; -update noar tt set v0='9UJQL' where id=7; -update noar ti set v0='9UJQL' where id=7; -update noar tt set b2='E' where id=7; -update noar ti set b2='E' where id=7; -update noar tt set v0='MA2Q7MR' where id=8; -update noar ti set v0='MA2Q7MR' where id=8; -update noar tt set b0='P3' where id=8; -update noar ti set b0='P3' where id=8; -update noar tt set v0='VR1D8WP5LP7P30IHZ' where id=8; -update noar ti set v0='VR1D8WP5LP7P30IHZ' where id=8; -update noar tt set b1='LTR0HBW1FZZCCXOMR6J' where id=8; -update noar ti set b1='LTR0HBW1FZZCCXOMR6J' where id=8; -update noar tt set v0='SKPAMR51C' where id=8; -update noar ti set v0='SKPAMR51C' where id=8; -update noar tt set b2='U7PX143M1' where id=8; -update noar ti set b2='U7PX143M1' where id=8; -update noar tt set v0='7ET84JN35G0Q9QKLQ5DQSCTPY' where id=9; -update noar ti set v0='7ET84JN35G0Q9QKLQ5DQSCTPY' where id=9; -update noar tt set b0='54NUGHTSUN6B48CWGO' where id=9; -update noar ti set b0='54NUGHTSUN6B48CWGO' where id=9; -update noar tt set v0='R1WINZC46' where id=9; -update noar ti set v0='R1WINZC46' where id=9; -update noar tt set b1='ODRI06CHM5QTDPFM900R6J7JWJ8W' where id=9; -update noar ti set b1='ODRI06CHM5QTDPFM900R6J7JWJ8W' where id=9; -update noar tt set v0='HWOZH897A0BVVRO1CH2OQFR' where id=9; -update noar ti set v0='HWOZH897A0BVVRO1CH2OQFR' where id=9; -update noar tt set b2='L' where id=9; -update noar ti set b2='L' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; diff --git a/storage/tokudb/mysql-test/tokudb/r/fast_update_blobs_with_varchar.result b/storage/tokudb/mysql-test/tokudb/r/fast_update_blobs_with_varchar.result index 83d5d450459..4a963777fc0 100644 --- a/storage/tokudb/mysql-test/tokudb/r/fast_update_blobs_with_varchar.result +++ b/storage/tokudb/mysql-test/tokudb/r/fast_update_blobs_with_varchar.result @@ -1,32770 +1 @@ -set default_storage_engine='tokudb'; -drop table if exists t; -create table tt (id bigint unsigned primary key, -v0 varchar(32) null, -b0 tinyblob null, -b1 tinyblob null, -b2 tinyblob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='OORH' where id=1; -update noar ti set v0='OORH' where id=1; -update noar tt set b0='2KX2' where id=1; -update noar ti set b0='2KX2' where id=1; -update noar tt set v0='QJ541BDOS' where id=1; -update noar ti set v0='QJ541BDOS' where id=1; -update noar tt set b1='BSTHXT0AXOL4NYJD04Q5' where id=1; -update noar ti set b1='BSTHXT0AXOL4NYJD04Q5' where id=1; -update noar tt set v0='F8QUEDSYQ8DZ' where id=1; -update noar ti set v0='F8QUEDSYQ8DZ' where id=1; -update noar tt set b2='3S9CVBPMFLX74Q16XHYC3ZWEV' where id=1; -update noar ti set b2='3S9CVBPMFLX74Q16XHYC3ZWEV' where id=1; -update noar tt set v0='03CCYAYAFDEDMH8K0' where id=2; -update noar ti set v0='03CCYAYAFDEDMH8K0' where id=2; -update noar tt set b0='6MA' where id=2; -update noar ti set b0='6MA' where id=2; -update noar tt set v0='5YXS8WIZG40O9ZKBR65OUT' where id=2; -update noar ti set v0='5YXS8WIZG40O9ZKBR65OUT' where id=2; -update noar tt set b1='KU' where id=2; -update noar ti set b1='KU' where id=2; -update noar tt set v0='WC173JZCT89RZX29' where id=2; -update noar ti set v0='WC173JZCT89RZX29' where id=2; -update noar tt set b2='EM5Y0U95XHX1PO6J5FJ' where id=2; -update noar ti set b2='EM5Y0U95XHX1PO6J5FJ' where id=2; -update noar tt set v0='AA' where id=3; -update noar ti set v0='AA' where id=3; -update noar tt set b0='5B8BYWIMT' where id=3; -update noar ti set b0='5B8BYWIMT' where id=3; -update noar tt set v0='2MS56CLNQ911' where id=3; -update noar ti set v0='2MS56CLNQ911' where id=3; -update noar tt set b1='5KJ1' where id=3; -update noar ti set b1='5KJ1' where id=3; -update noar tt set v0='LMHY0D23Y5BZJKJMO1FPJRFU8CF2' where id=3; -update noar ti set v0='LMHY0D23Y5BZJKJMO1FPJRFU8CF2' where id=3; -update noar tt set b2='204EX0GAWYOAWK7BWVQF' where id=3; -update noar ti set b2='204EX0GAWYOAWK7BWVQF' where id=3; -update noar tt set v0='WNELP' where id=4; -update noar ti set v0='WNELP' where id=4; -update noar tt set b0='LDZD' where id=4; -update noar ti set b0='LDZD' where id=4; -update noar tt set v0='COPYTGCQ3QJC2' where id=4; -update noar ti set v0='COPYTGCQ3QJC2' where id=4; -update noar tt set b1='6YCDENC77R12FSE80VRMQUX' where id=4; -update noar ti set b1='6YCDENC77R12FSE80VRMQUX' where id=4; -update noar tt set v0='DUD' where id=4; -update noar ti set v0='DUD' where id=4; -update noar tt set b2='56CV28UU6QQE1VAK5V' where id=4; -update noar ti set b2='56CV28UU6QQE1VAK5V' where id=4; -update noar tt set v0='5U0QNH8D7R8C' where id=5; -update noar ti set v0='5U0QNH8D7R8C' where id=5; -update noar tt set b0='NQSA' where id=5; -update noar ti set b0='NQSA' where id=5; -update noar tt set v0='XNOQCGHYMCG41MOY9TLSMY6WM100' where id=5; -update noar ti set v0='XNOQCGHYMCG41MOY9TLSMY6WM100' where id=5; -update noar tt set b1='K40KK' where id=5; -update noar ti set b1='K40KK' where id=5; -update noar tt set v0='I51G38X' where id=5; -update noar ti set v0='I51G38X' where id=5; -update noar tt set b2='NMMDK5HT4TQCZ223HJMH' where id=5; -update noar ti set b2='NMMDK5HT4TQCZ223HJMH' where id=5; -update noar tt set v0='YJCHF6KH4H3V0X1US786K5GAH1D1F52' where id=6; -update noar ti set v0='YJCHF6KH4H3V0X1US786K5GAH1D1F52' where id=6; -update noar tt set b0='5N2ULTBPEJO0VTVEDQ30WN68BRX' where id=6; -update noar ti set b0='5N2ULTBPEJO0VTVEDQ30WN68BRX' where id=6; -update noar tt set v0='28TK0FK' where id=6; -update noar ti set v0='28TK0FK' where id=6; -update noar tt set b1='10D4UXSXS0B887F' where id=6; -update noar ti set b1='10D4UXSXS0B887F' where id=6; -update noar tt set v0='56' where id=6; -update noar ti set v0='56' where id=6; -update noar tt set b2='26ZD5DIYVIXLRUH00C65PEC5CT0' where id=6; -update noar ti set b2='26ZD5DIYVIXLRUH00C65PEC5CT0' where id=6; -update noar tt set v0='Y' where id=7; -update noar ti set v0='Y' where id=7; -update noar tt set b0='5GXO' where id=7; -update noar ti set b0='5GXO' where id=7; -update noar tt set v0='VYXHF6O2M9DGW' where id=7; -update noar ti set v0='VYXHF6O2M9DGW' where id=7; -update noar tt set b1='FRZSVRQ7S6T7I5COC5AGJNTU' where id=7; -update noar ti set b1='FRZSVRQ7S6T7I5COC5AGJNTU' where id=7; -update noar tt set v0='UZGDBY7Z678RSL0' where id=7; -update noar ti set v0='UZGDBY7Z678RSL0' where id=7; -update noar tt set b2='1WXPQ46G8OI9JCDDHH' where id=7; -update noar ti set b2='1WXPQ46G8OI9JCDDHH' where id=7; -update noar tt set v0='5L8G' where id=8; -update noar ti set v0='5L8G' where id=8; -update noar tt set b0='BFNWF9KEC2H49UHCFMGV8N17F' where id=8; -update noar ti set b0='BFNWF9KEC2H49UHCFMGV8N17F' where id=8; -update noar tt set v0='1GWHOS2XH171' where id=8; -update noar ti set v0='1GWHOS2XH171' where id=8; -update noar tt set b1='02LXB8DY' where id=8; -update noar ti set b1='02LXB8DY' where id=8; -update noar tt set v0='UOYGGAFZ6R6' where id=8; -update noar ti set v0='UOYGGAFZ6R6' where id=8; -update noar tt set b2='8HE71MWTPS1G4JG9SMQPW5GO' where id=8; -update noar ti set b2='8HE71MWTPS1G4JG9SMQPW5GO' where id=8; -update noar tt set v0='7UCQFA39COG98QHE5H1IA52CM14OGGWO' where id=9; -update noar ti set v0='7UCQFA39COG98QHE5H1IA52CM14OGGWO' where id=9; -update noar tt set b0='TQ3QQBZB4ORD6X2LT9CHNHMLXZ74X8RF' where id=9; -update noar ti set b0='TQ3QQBZB4ORD6X2LT9CHNHMLXZ74X8RF' where id=9; -update noar tt set v0='9I12QSHR245FJ4VJEBXT0EXV58YK' where id=9; -update noar ti set v0='9I12QSHR245FJ4VJEBXT0EXV58YK' where id=9; -update noar tt set b1='6OWZ8BSATIWDL414' where id=9; -update noar ti set b1='6OWZ8BSATIWDL414' where id=9; -update noar tt set v0='NAXC' where id=9; -update noar ti set v0='NAXC' where id=9; -update noar tt set b2='GPS5U' where id=9; -update noar ti set b2='GPS5U' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -v0 varchar(256) null, -b0 tinyblob null, -b1 tinyblob null, -b2 tinyblob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='GUA99YRIEYZU77WX3' where id=1; -update noar ti set v0='GUA99YRIEYZU77WX3' where id=1; -update noar tt set b0='E5Z8VH6HTFIAY13A' where id=1; -update noar ti set b0='E5Z8VH6HTFIAY13A' where id=1; -update noar tt set v0='OQ9KH23SWRX0TJX9GLDWRSQ34SI' where id=1; -update noar ti set v0='OQ9KH23SWRX0TJX9GLDWRSQ34SI' where id=1; -update noar tt set b1='FI1AL700DW9QCM8N4SC1BAN3IV' where id=1; -update noar ti set b1='FI1AL700DW9QCM8N4SC1BAN3IV' where id=1; -update noar tt set v0='KHA1NS5XOLNS7U5IDIYN' where id=1; -update noar ti set v0='KHA1NS5XOLNS7U5IDIYN' where id=1; -update noar tt set b2='CQ9O8NN2I7QRR4P1' where id=1; -update noar ti set b2='CQ9O8NN2I7QRR4P1' where id=1; -update noar tt set v0='E0EQ22N3R4IO598UBGE6BPKC8P8RA' where id=2; -update noar ti set v0='E0EQ22N3R4IO598UBGE6BPKC8P8RA' where id=2; -update noar tt set b0='Z6XMK8B1U' where id=2; -update noar ti set b0='Z6XMK8B1U' where id=2; -update noar tt set v0='D3NQLTNMAVRSZMTZK43ASVXVP' where id=2; -update noar ti set v0='D3NQLTNMAVRSZMTZK43ASVXVP' where id=2; -update noar tt set b1='BM2KNC' where id=2; -update noar ti set b1='BM2KNC' where id=2; -update noar tt set v0='CM0UZPQBB3V268YAQU' where id=2; -update noar ti set v0='CM0UZPQBB3V268YAQU' where id=2; -update noar tt set b2='O4L0L27RH52X' where id=2; -update noar ti set b2='O4L0L27RH52X' where id=2; -update noar tt set v0='S5GDFSYE' where id=3; -update noar ti set v0='S5GDFSYE' where id=3; -update noar tt set b0='I3M3S6CAV84NAZ5' where id=3; -update noar ti set b0='I3M3S6CAV84NAZ5' where id=3; -update noar tt set v0='61240QJW72' where id=3; -update noar ti set v0='61240QJW72' where id=3; -update noar tt set b1='Z2BJ9' where id=3; -update noar ti set b1='Z2BJ9' where id=3; -update noar tt set v0='DH1QO' where id=3; -update noar ti set v0='DH1QO' where id=3; -update noar tt set b2='VCDOV18NW' where id=3; -update noar ti set b2='VCDOV18NW' where id=3; -update noar tt set v0='ICZ07JGBI54A21OWP' where id=4; -update noar ti set v0='ICZ07JGBI54A21OWP' where id=4; -update noar tt set b0='22C9JSV2LTPPHOL' where id=4; -update noar ti set b0='22C9JSV2LTPPHOL' where id=4; -update noar tt set v0='J0HN6ATJ' where id=4; -update noar ti set v0='J0HN6ATJ' where id=4; -update noar tt set b1='V4OV7F' where id=4; -update noar ti set b1='V4OV7F' where id=4; -update noar tt set v0='YEFQZKTI8UPIEEPHQKMJKH' where id=4; -update noar ti set v0='YEFQZKTI8UPIEEPHQKMJKH' where id=4; -update noar tt set b2='Z5N6PXGUU15LZ' where id=4; -update noar ti set b2='Z5N6PXGUU15LZ' where id=4; -update noar tt set v0='Y8SZCFNUK4W33LYH735Y8YOGYTQMU' where id=5; -update noar ti set v0='Y8SZCFNUK4W33LYH735Y8YOGYTQMU' where id=5; -update noar tt set b0='BUIVHMNWP73OS6' where id=5; -update noar ti set b0='BUIVHMNWP73OS6' where id=5; -update noar tt set v0='Q7ZZN2EG00YC' where id=5; -update noar ti set v0='Q7ZZN2EG00YC' where id=5; -update noar tt set b1='JE7X8PXFPKYCQ7JJ10K4EZO4SZ4D0J4Q' where id=5; -update noar ti set b1='JE7X8PXFPKYCQ7JJ10K4EZO4SZ4D0J4Q' where id=5; -update noar tt set v0='CP440F' where id=5; -update noar ti set v0='CP440F' where id=5; -update noar tt set b2='MN5GKAV2U8LQ92SNVNPML1B' where id=5; -update noar ti set b2='MN5GKAV2U8LQ92SNVNPML1B' where id=5; -update noar tt set v0='8P4D2473PB' where id=6; -update noar ti set v0='8P4D2473PB' where id=6; -update noar tt set b0='WS8Y' where id=6; -update noar ti set b0='WS8Y' where id=6; -update noar tt set v0='91KF3F45E1XKXDQS4OSMIWEA8IPAN20' where id=6; -update noar ti set v0='91KF3F45E1XKXDQS4OSMIWEA8IPAN20' where id=6; -update noar tt set b1='8' where id=6; -update noar ti set b1='8' where id=6; -update noar tt set v0='26F120T2108GADPHE' where id=6; -update noar ti set v0='26F120T2108GADPHE' where id=6; -update noar tt set b2='JJ' where id=6; -update noar ti set b2='JJ' where id=6; -update noar tt set v0='T' where id=7; -update noar ti set v0='T' where id=7; -update noar tt set b0='5ZTBEX6EBFB' where id=7; -update noar ti set b0='5ZTBEX6EBFB' where id=7; -update noar tt set v0='BUGCY48W5G0050' where id=7; -update noar ti set v0='BUGCY48W5G0050' where id=7; -update noar tt set b1='GGH1E198NDN9WO7TS8CHCGK2O2SJO9Q6' where id=7; -update noar ti set b1='GGH1E198NDN9WO7TS8CHCGK2O2SJO9Q6' where id=7; -update noar tt set v0='YSQAVTQ07AKVLVE' where id=7; -update noar ti set v0='YSQAVTQ07AKVLVE' where id=7; -update noar tt set b2='72Q2J0RGF2RW4YZYNG2RS22N5NSC62' where id=7; -update noar ti set b2='72Q2J0RGF2RW4YZYNG2RS22N5NSC62' where id=7; -update noar tt set v0='72T978DXAG0IB2OXWNMDMB' where id=8; -update noar ti set v0='72T978DXAG0IB2OXWNMDMB' where id=8; -update noar tt set b0='97RM4F4P02YBFNP7IHO2R4Q1Y14' where id=8; -update noar ti set b0='97RM4F4P02YBFNP7IHO2R4Q1Y14' where id=8; -update noar tt set v0='KH5K09RLK3ETRF9VQCG' where id=8; -update noar ti set v0='KH5K09RLK3ETRF9VQCG' where id=8; -update noar tt set b1='TALGG97WNSAMLLWEG8JAL066DJJB' where id=8; -update noar ti set b1='TALGG97WNSAMLLWEG8JAL066DJJB' where id=8; -update noar tt set v0='3FCLFHI2LVSPURWXIY50YEI9XJMYS' where id=8; -update noar ti set v0='3FCLFHI2LVSPURWXIY50YEI9XJMYS' where id=8; -update noar tt set b2='Y46UAO' where id=8; -update noar ti set b2='Y46UAO' where id=8; -update noar tt set v0='5R' where id=9; -update noar ti set v0='5R' where id=9; -update noar tt set b0='U58' where id=9; -update noar ti set b0='U58' where id=9; -update noar tt set v0='BZI' where id=9; -update noar ti set v0='BZI' where id=9; -update noar tt set b1='ICV44HCMSZBPH74Z0M5KJY0FM' where id=9; -update noar ti set b1='ICV44HCMSZBPH74Z0M5KJY0FM' where id=9; -update noar tt set v0='N17OPAA5V1RM5ZOY5774' where id=9; -update noar ti set v0='N17OPAA5V1RM5ZOY5774' where id=9; -update noar tt set b2='S153ADXJF9QJ918EK43VB15MJ' where id=9; -update noar ti set b2='S153ADXJF9QJ918EK43VB15MJ' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -v0 varchar(32) not null, -b0 tinyblob not null, -b1 tinyblob not null, -b2 tinyblob not null -) engine=tokudb; -insert into tt values (1,'','','',''); -insert into tt values (2,'','','',''); -insert into tt values (3,'','','',''); -insert into tt values (4,'','','',''); -insert into tt values (5,'','','',''); -insert into tt values (6,'','','',''); -insert into tt values (7,'','','',''); -insert into tt values (8,'','','',''); -insert into tt values (9,'','','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='O' where id=1; -update noar ti set v0='O' where id=1; -update noar tt set b0='7WFINTFU68KC2MI' where id=1; -update noar ti set b0='7WFINTFU68KC2MI' where id=1; -update noar tt set v0='8Y6G1RMEG6MAUAQNBJVL6B7E54ML472H' where id=1; -update noar ti set v0='8Y6G1RMEG6MAUAQNBJVL6B7E54ML472H' where id=1; -update noar tt set b1='XZ67YVD8I7XNHX' where id=1; -update noar ti set b1='XZ67YVD8I7XNHX' where id=1; -update noar tt set v0='PQHHP59FOSOOAOWZDMDR67XP9P' where id=1; -update noar ti set v0='PQHHP59FOSOOAOWZDMDR67XP9P' where id=1; -update noar tt set b2='4CU4BUBGWOLPI9ZN6SX310F8TFEHK2L' where id=1; -update noar ti set b2='4CU4BUBGWOLPI9ZN6SX310F8TFEHK2L' where id=1; -update noar tt set v0='7G6OGU8JP2H61YHFMEHOV' where id=2; -update noar ti set v0='7G6OGU8JP2H61YHFMEHOV' where id=2; -update noar tt set b0='CP3A1L3H045J21O81H93TG' where id=2; -update noar ti set b0='CP3A1L3H045J21O81H93TG' where id=2; -update noar tt set v0='M88M5W0U4NTYSOP7Y0H' where id=2; -update noar ti set v0='M88M5W0U4NTYSOP7Y0H' where id=2; -update noar tt set b1='F0ZMQ90OIT0EV06WNBGDMTJK44N61THT' where id=2; -update noar ti set b1='F0ZMQ90OIT0EV06WNBGDMTJK44N61THT' where id=2; -update noar tt set v0='X75D7JD7ORSLI3XDQG1O' where id=2; -update noar ti set v0='X75D7JD7ORSLI3XDQG1O' where id=2; -update noar tt set b2='BGH26K278X3TQ22RLGBO38' where id=2; -update noar ti set b2='BGH26K278X3TQ22RLGBO38' where id=2; -update noar tt set v0='5MUNWJ0ECS9ESFZ3MMNHV' where id=3; -update noar ti set v0='5MUNWJ0ECS9ESFZ3MMNHV' where id=3; -update noar tt set b0='TL5TPPAK2JH352HTP7DFXM8J' where id=3; -update noar ti set b0='TL5TPPAK2JH352HTP7DFXM8J' where id=3; -update noar tt set v0='6A3M46OO64CLJ' where id=3; -update noar ti set v0='6A3M46OO64CLJ' where id=3; -update noar tt set b1='OZKDC7IPLVS1ID5LRXU0QBF1F' where id=3; -update noar ti set b1='OZKDC7IPLVS1ID5LRXU0QBF1F' where id=3; -update noar tt set v0='P034MPJ1F0C32' where id=3; -update noar ti set v0='P034MPJ1F0C32' where id=3; -update noar tt set b2='THQJWHVYZIAZN3T2NLQMA4N4PBHP' where id=3; -update noar ti set b2='THQJWHVYZIAZN3T2NLQMA4N4PBHP' where id=3; -update noar tt set v0='OR5' where id=4; -update noar ti set v0='OR5' where id=4; -update noar tt set b0='6MAD20YSIPY4G6EUTYDJJM6' where id=4; -update noar ti set b0='6MAD20YSIPY4G6EUTYDJJM6' where id=4; -update noar tt set v0='CK6IN48FCJB3OLAK46' where id=4; -update noar ti set v0='CK6IN48FCJB3OLAK46' where id=4; -update noar tt set b1='P6OCTFHT00CGUVSJG' where id=4; -update noar ti set b1='P6OCTFHT00CGUVSJG' where id=4; -update noar tt set v0='319PSGWXCTIYMSW6J2VC5U4HHHBE' where id=4; -update noar ti set v0='319PSGWXCTIYMSW6J2VC5U4HHHBE' where id=4; -update noar tt set b2='20LIQVKLWHQ' where id=4; -update noar ti set b2='20LIQVKLWHQ' where id=4; -update noar tt set v0='T3M9334' where id=5; -update noar ti set v0='T3M9334' where id=5; -update noar tt set b0='RWL2Q8I21' where id=5; -update noar ti set b0='RWL2Q8I21' where id=5; -update noar tt set v0='ZOURSSIAMP9P2' where id=5; -update noar ti set v0='ZOURSSIAMP9P2' where id=5; -update noar tt set b1='1QKM7QT6GUJUJ7' where id=5; -update noar ti set b1='1QKM7QT6GUJUJ7' where id=5; -update noar tt set v0='3KC4WWAE' where id=5; -update noar ti set v0='3KC4WWAE' where id=5; -update noar tt set b2='V83H2F1I010Y9S8QJ5XQKAAHTT' where id=5; -update noar ti set b2='V83H2F1I010Y9S8QJ5XQKAAHTT' where id=5; -update noar tt set v0='2CAH2H' where id=6; -update noar ti set v0='2CAH2H' where id=6; -update noar tt set b0='5KN6P62F8T6KI2QZ0J2G' where id=6; -update noar ti set b0='5KN6P62F8T6KI2QZ0J2G' where id=6; -update noar tt set v0='ZN1' where id=6; -update noar ti set v0='ZN1' where id=6; -update noar tt set b1='TD56FIWOOV9T33QLWNH6CL' where id=6; -update noar ti set b1='TD56FIWOOV9T33QLWNH6CL' where id=6; -update noar tt set v0='NQCYZW0Y2IJMDJ' where id=6; -update noar ti set v0='NQCYZW0Y2IJMDJ' where id=6; -update noar tt set b2='8YZP0L26KWP2KWSVX0I52HOWI21L' where id=6; -update noar ti set b2='8YZP0L26KWP2KWSVX0I52HOWI21L' where id=6; -update noar tt set v0='E5XDB8QDVBSLV3U228M9UGR' where id=7; -update noar ti set v0='E5XDB8QDVBSLV3U228M9UGR' where id=7; -update noar tt set b0='XQIABVXMDJZXAPF0FL2' where id=7; -update noar ti set b0='XQIABVXMDJZXAPF0FL2' where id=7; -update noar tt set v0='J8C31VBSKBX0Z46ZS9' where id=7; -update noar ti set v0='J8C31VBSKBX0Z46ZS9' where id=7; -update noar tt set b1='74PSP6PWHHL2O5EKZ18BSLA2DT6NTJ' where id=7; -update noar ti set b1='74PSP6PWHHL2O5EKZ18BSLA2DT6NTJ' where id=7; -update noar tt set v0='XP9LGI4YYTSN16GCDU2I' where id=7; -update noar ti set v0='XP9LGI4YYTSN16GCDU2I' where id=7; -update noar tt set b2='Q0UFFR16PFW40G2XZER' where id=7; -update noar ti set b2='Q0UFFR16PFW40G2XZER' where id=7; -update noar tt set v0='HTGPFECKCM8ZX3W6AQ02E9W2MGJYT' where id=8; -update noar ti set v0='HTGPFECKCM8ZX3W6AQ02E9W2MGJYT' where id=8; -update noar tt set b0='NOGT7Q2A0E5B9NP3TO' where id=8; -update noar ti set b0='NOGT7Q2A0E5B9NP3TO' where id=8; -update noar tt set v0='4MEA5S' where id=8; -update noar ti set v0='4MEA5S' where id=8; -update noar tt set b1='I' where id=8; -update noar ti set b1='I' where id=8; -update noar tt set v0='HJ44ZUF9VIT0VBLUZM6YX' where id=8; -update noar ti set v0='HJ44ZUF9VIT0VBLUZM6YX' where id=8; -update noar tt set b2='NOWQ33NMX08A3BF39' where id=8; -update noar ti set b2='NOWQ33NMX08A3BF39' where id=8; -update noar tt set v0='SB4VBLPCFKNVIBACVHUNVNTJTWBCVGNG' where id=9; -update noar ti set v0='SB4VBLPCFKNVIBACVHUNVNTJTWBCVGNG' where id=9; -update noar tt set b0='BAVK0O8UVSP5LMZKGU3AROG8' where id=9; -update noar ti set b0='BAVK0O8UVSP5LMZKGU3AROG8' where id=9; -update noar tt set v0='WLH8N0Y2BL1BUBGRTZOACXI5F' where id=9; -update noar ti set v0='WLH8N0Y2BL1BUBGRTZOACXI5F' where id=9; -update noar tt set b1='MITR2S8Z9B99U3U6' where id=9; -update noar ti set b1='MITR2S8Z9B99U3U6' where id=9; -update noar tt set v0='J7OUHRAGA7Q64L9I21VX9U6IERGR' where id=9; -update noar ti set v0='J7OUHRAGA7Q64L9I21VX9U6IERGR' where id=9; -update noar tt set b2='H41K62MYEH7YAJ' where id=9; -update noar ti set b2='H41K62MYEH7YAJ' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -v0 varchar(256) not null, -b0 tinyblob not null, -b1 tinyblob not null, -b2 tinyblob not null -) engine=tokudb; -insert into tt values (1,'','','',''); -insert into tt values (2,'','','',''); -insert into tt values (3,'','','',''); -insert into tt values (4,'','','',''); -insert into tt values (5,'','','',''); -insert into tt values (6,'','','',''); -insert into tt values (7,'','','',''); -insert into tt values (8,'','','',''); -insert into tt values (9,'','','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='IZN4AE26FMKIAPVY1GBS' where id=1; -update noar ti set v0='IZN4AE26FMKIAPVY1GBS' where id=1; -update noar tt set b0='KQBOIDHT31' where id=1; -update noar ti set b0='KQBOIDHT31' where id=1; -update noar tt set v0='I' where id=1; -update noar ti set v0='I' where id=1; -update noar tt set b1='IJ2HJ4ZQO2OM4TNM3NGK3VCNCPIJ55Z' where id=1; -update noar ti set b1='IJ2HJ4ZQO2OM4TNM3NGK3VCNCPIJ55Z' where id=1; -update noar tt set v0='LUCH9O846MXFZP6P0S1BHGWP' where id=1; -update noar ti set v0='LUCH9O846MXFZP6P0S1BHGWP' where id=1; -update noar tt set b2='YQ9SWF40' where id=1; -update noar ti set b2='YQ9SWF40' where id=1; -update noar tt set v0='22Y' where id=2; -update noar ti set v0='22Y' where id=2; -update noar tt set b0='4PP3R' where id=2; -update noar ti set b0='4PP3R' where id=2; -update noar tt set v0='VKG379CB24BM3Q0HC97TTGL' where id=2; -update noar ti set v0='VKG379CB24BM3Q0HC97TTGL' where id=2; -update noar tt set b1='XWUXQYTY6L0X9FJAJT2MENFGEFK' where id=2; -update noar ti set b1='XWUXQYTY6L0X9FJAJT2MENFGEFK' where id=2; -update noar tt set v0='UA27HBFM2R8KIJ3G8YG' where id=2; -update noar ti set v0='UA27HBFM2R8KIJ3G8YG' where id=2; -update noar tt set b2='AMB061GZYIH1HODBN1AFSU80Q0UPOJV0' where id=2; -update noar ti set b2='AMB061GZYIH1HODBN1AFSU80Q0UPOJV0' where id=2; -update noar tt set v0='A1UCNEXNHL7GAZBWX9MLA' where id=3; -update noar ti set v0='A1UCNEXNHL7GAZBWX9MLA' where id=3; -update noar tt set b0='5IV1SQ2SHJ15TB6KT0' where id=3; -update noar ti set b0='5IV1SQ2SHJ15TB6KT0' where id=3; -update noar tt set v0='1M8FQQ360XV40' where id=3; -update noar ti set v0='1M8FQQ360XV40' where id=3; -update noar tt set b1='2' where id=3; -update noar ti set b1='2' where id=3; -update noar tt set v0='K7SID54GZ9LCSYD5WZHL0' where id=3; -update noar ti set v0='K7SID54GZ9LCSYD5WZHL0' where id=3; -update noar tt set b2='Z1PFTP91MKG7PFQVXGCCPMK8YZ2T' where id=3; -update noar ti set b2='Z1PFTP91MKG7PFQVXGCCPMK8YZ2T' where id=3; -update noar tt set v0='190QA423L6' where id=4; -update noar ti set v0='190QA423L6' where id=4; -update noar tt set b0='0N4L1A6DBECPSCGROA08ALPWW' where id=4; -update noar ti set b0='0N4L1A6DBECPSCGROA08ALPWW' where id=4; -update noar tt set v0='RV8YXGAFFEW' where id=4; -update noar ti set v0='RV8YXGAFFEW' where id=4; -update noar tt set b1='B' where id=4; -update noar ti set b1='B' where id=4; -update noar tt set v0='JWHU540G27P1NE5GK44' where id=4; -update noar ti set v0='JWHU540G27P1NE5GK44' where id=4; -update noar tt set b2='95LW7P' where id=4; -update noar ti set b2='95LW7P' where id=4; -update noar tt set v0='X6W3Y' where id=5; -update noar ti set v0='X6W3Y' where id=5; -update noar tt set b0='KA3PNL7ZZWYI0KST' where id=5; -update noar ti set b0='KA3PNL7ZZWYI0KST' where id=5; -update noar tt set v0='NW752UMNSAT85AG' where id=5; -update noar ti set v0='NW752UMNSAT85AG' where id=5; -update noar tt set b1='6Y6I3I20EWCRC659SW1D8BJHJ7I' where id=5; -update noar ti set b1='6Y6I3I20EWCRC659SW1D8BJHJ7I' where id=5; -update noar tt set v0='WK80P9WHFP8WCXEVJL4VXMMB' where id=5; -update noar ti set v0='WK80P9WHFP8WCXEVJL4VXMMB' where id=5; -update noar tt set b2='FD91QTIIO36J67JV0UUZZPO4V' where id=5; -update noar ti set b2='FD91QTIIO36J67JV0UUZZPO4V' where id=5; -update noar tt set v0='35B8ISOR6POBVG1YENORJ' where id=6; -update noar ti set v0='35B8ISOR6POBVG1YENORJ' where id=6; -update noar tt set b0='M3AV00MT33WE8CMKQU3CH58H02TAN' where id=6; -update noar ti set b0='M3AV00MT33WE8CMKQU3CH58H02TAN' where id=6; -update noar tt set v0='7590AYRMGET4QQ8ACT' where id=6; -update noar ti set v0='7590AYRMGET4QQ8ACT' where id=6; -update noar tt set b1='EEJT7SFNX7M58C3MJ0MT3UHPVHNHZ' where id=6; -update noar ti set b1='EEJT7SFNX7M58C3MJ0MT3UHPVHNHZ' where id=6; -update noar tt set v0='MUFTF428' where id=6; -update noar ti set v0='MUFTF428' where id=6; -update noar tt set b2='U4AQMT3YXHE9Y4AJ' where id=6; -update noar ti set b2='U4AQMT3YXHE9Y4AJ' where id=6; -update noar tt set v0='W' where id=7; -update noar ti set v0='W' where id=7; -update noar tt set b0='K1FE85KDJ5TCJEW2J39AIY' where id=7; -update noar ti set b0='K1FE85KDJ5TCJEW2J39AIY' where id=7; -update noar tt set v0='H0VFZCKKDVRD' where id=7; -update noar ti set v0='H0VFZCKKDVRD' where id=7; -update noar tt set b1='NR927SNJSVLUSEDEOXP6Y42SO6316' where id=7; -update noar ti set b1='NR927SNJSVLUSEDEOXP6Y42SO6316' where id=7; -update noar tt set v0='4HT5CYXGHTO8R682IB7BW8' where id=7; -update noar ti set v0='4HT5CYXGHTO8R682IB7BW8' where id=7; -update noar tt set b2='A4J1U09SB44' where id=7; -update noar ti set b2='A4J1U09SB44' where id=7; -update noar tt set v0='OVP4QJY83KNWG48C4GLQJ' where id=8; -update noar ti set v0='OVP4QJY83KNWG48C4GLQJ' where id=8; -update noar tt set b0='1TUBS' where id=8; -update noar ti set b0='1TUBS' where id=8; -update noar tt set v0='N6LNMNGSDD8G148JQAI2KVO' where id=8; -update noar ti set v0='N6LNMNGSDD8G148JQAI2KVO' where id=8; -update noar tt set b1='98AZS' where id=8; -update noar ti set b1='98AZS' where id=8; -update noar tt set v0='L' where id=8; -update noar ti set v0='L' where id=8; -update noar tt set b2='QZL5PAOLMIJPVLJ6WK75GG0RR2L7K7G' where id=8; -update noar ti set b2='QZL5PAOLMIJPVLJ6WK75GG0RR2L7K7G' where id=8; -update noar tt set v0='TAHWUXACQRHYJY24' where id=9; -update noar ti set v0='TAHWUXACQRHYJY24' where id=9; -update noar tt set b0='LWGVFJMN17C6' where id=9; -update noar ti set b0='LWGVFJMN17C6' where id=9; -update noar tt set v0='F' where id=9; -update noar ti set v0='F' where id=9; -update noar tt set b1='LP59ERAGE2PQNSVMW1QEZAOJ38ZPMDSA' where id=9; -update noar ti set b1='LP59ERAGE2PQNSVMW1QEZAOJ38ZPMDSA' where id=9; -update noar tt set v0='Q40BUM86DC118LJR' where id=9; -update noar ti set v0='Q40BUM86DC118LJR' where id=9; -update noar tt set b2='LUVZODTSZVB6E42SAOJ5ZV9NBSC00S33' where id=9; -update noar ti set b2='LUVZODTSZVB6E42SAOJ5ZV9NBSC00S33' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -v0 varchar(32) null, -b0 tinyblob null, -b1 tinyblob null, -b2 blob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='04ZQCUB6BKE12K' where id=1; -update noar ti set v0='04ZQCUB6BKE12K' where id=1; -update noar tt set b0='HKPCNPZ2S6Z4KYXKA98ZQHH' where id=1; -update noar ti set b0='HKPCNPZ2S6Z4KYXKA98ZQHH' where id=1; -update noar tt set v0='39NL47XA6NTRW' where id=1; -update noar ti set v0='39NL47XA6NTRW' where id=1; -update noar tt set b1='KDZVPTK934BSLJ6FIVNRCKCZ1QZKQI5B' where id=1; -update noar ti set b1='KDZVPTK934BSLJ6FIVNRCKCZ1QZKQI5B' where id=1; -update noar tt set v0='P' where id=1; -update noar ti set v0='P' where id=1; -update noar tt set b2='MH1IJI242DG8ML6GNTCMS1LDRE' where id=1; -update noar ti set b2='MH1IJI242DG8ML6GNTCMS1LDRE' where id=1; -update noar tt set v0='GUCUV3K' where id=2; -update noar ti set v0='GUCUV3K' where id=2; -update noar tt set b0='I0OB2NXIDVOMUFUEWG778RYAV' where id=2; -update noar ti set b0='I0OB2NXIDVOMUFUEWG778RYAV' where id=2; -update noar tt set v0='PE00LJ6ZMZOZGMK31X' where id=2; -update noar ti set v0='PE00LJ6ZMZOZGMK31X' where id=2; -update noar tt set b1='2H8XU7WKA' where id=2; -update noar ti set b1='2H8XU7WKA' where id=2; -update noar tt set v0='4GR2VSOJLWNJW4FL1NHACDKSSX21Z' where id=2; -update noar ti set v0='4GR2VSOJLWNJW4FL1NHACDKSSX21Z' where id=2; -update noar tt set b2='TOXIW3KYIG7DU72EVPQKDOE' where id=2; -update noar ti set b2='TOXIW3KYIG7DU72EVPQKDOE' where id=2; -update noar tt set v0='CP' where id=3; -update noar ti set v0='CP' where id=3; -update noar tt set b0='8YLC8Y7UUPT6U' where id=3; -update noar ti set b0='8YLC8Y7UUPT6U' where id=3; -update noar tt set v0='RUYO' where id=3; -update noar ti set v0='RUYO' where id=3; -update noar tt set b1='AD0MQ9CN5N9HSFIUE66ZBFZY' where id=3; -update noar ti set b1='AD0MQ9CN5N9HSFIUE66ZBFZY' where id=3; -update noar tt set v0='OQSNGFVVXD82ZGP7M8E30EX7JQ' where id=3; -update noar ti set v0='OQSNGFVVXD82ZGP7M8E30EX7JQ' where id=3; -update noar tt set b2='SJ2S157JO18KTYBITPUB' where id=3; -update noar ti set b2='SJ2S157JO18KTYBITPUB' where id=3; -update noar tt set v0='6BSLT8FMWFU55M9CDLE16' where id=4; -update noar ti set v0='6BSLT8FMWFU55M9CDLE16' where id=4; -update noar tt set b0='A6' where id=4; -update noar ti set b0='A6' where id=4; -update noar tt set v0='LX2T4D2HTX6XHUITHB7ZI9OZ' where id=4; -update noar ti set v0='LX2T4D2HTX6XHUITHB7ZI9OZ' where id=4; -update noar tt set b1='LET5Y65TUD3CZHRQ6WEHGRZWMJX9HS' where id=4; -update noar ti set b1='LET5Y65TUD3CZHRQ6WEHGRZWMJX9HS' where id=4; -update noar tt set v0='Z1MTYBNZLJOR50MH84FXT2IMW8S' where id=4; -update noar ti set v0='Z1MTYBNZLJOR50MH84FXT2IMW8S' where id=4; -update noar tt set b2='X1LF7KW4S1DUBYSHED21GWV2V' where id=4; -update noar ti set b2='X1LF7KW4S1DUBYSHED21GWV2V' where id=4; -update noar tt set v0='YYOW1K' where id=5; -update noar ti set v0='YYOW1K' where id=5; -update noar tt set b0='MUM1E0NFLAGCX1IGOGMZ0G2M9' where id=5; -update noar ti set b0='MUM1E0NFLAGCX1IGOGMZ0G2M9' where id=5; -update noar tt set v0='SLRQDJP6NV15BOC1R' where id=5; -update noar ti set v0='SLRQDJP6NV15BOC1R' where id=5; -update noar tt set b1='GG9523OCJK3W7GPTUVVYR71C' where id=5; -update noar ti set b1='GG9523OCJK3W7GPTUVVYR71C' where id=5; -update noar tt set v0='GMY3INN6W8UPADCLXFCSKQFLCHJ85' where id=5; -update noar ti set v0='GMY3INN6W8UPADCLXFCSKQFLCHJ85' where id=5; -update noar tt set b2='4' where id=5; -update noar ti set b2='4' where id=5; -update noar tt set v0='RHPYNI5C95YRMZKI3UGFZLOT6K5L' where id=6; -update noar ti set v0='RHPYNI5C95YRMZKI3UGFZLOT6K5L' where id=6; -update noar tt set b0='R3MU2F0PW007PN' where id=6; -update noar ti set b0='R3MU2F0PW007PN' where id=6; -update noar tt set v0='0B3O4POU0MFYT8' where id=6; -update noar ti set v0='0B3O4POU0MFYT8' where id=6; -update noar tt set b1='MYDNT1DWITK1I' where id=6; -update noar ti set b1='MYDNT1DWITK1I' where id=6; -update noar tt set v0='0IET0IV730CDS3YP' where id=6; -update noar ti set v0='0IET0IV730CDS3YP' where id=6; -update noar tt set b2='ZNMGR3WP78U43W' where id=6; -update noar ti set b2='ZNMGR3WP78U43W' where id=6; -update noar tt set v0='9K4M9YJ21B3H9L28I' where id=7; -update noar ti set v0='9K4M9YJ21B3H9L28I' where id=7; -update noar tt set b0='ZOCGMA' where id=7; -update noar ti set b0='ZOCGMA' where id=7; -update noar tt set v0='2O8NB6AY5BGN3UPOCFENP' where id=7; -update noar ti set v0='2O8NB6AY5BGN3UPOCFENP' where id=7; -update noar tt set b1='GEEL7K9S50M' where id=7; -update noar ti set b1='GEEL7K9S50M' where id=7; -update noar tt set v0='1NZU1V' where id=7; -update noar ti set v0='1NZU1V' where id=7; -update noar tt set b2='9TOWH0PNZT50G9VOWYEKT4FQOJ' where id=7; -update noar ti set b2='9TOWH0PNZT50G9VOWYEKT4FQOJ' where id=7; -update noar tt set v0='Y8YR18HBNGB626H14D07N81XP' where id=8; -update noar ti set v0='Y8YR18HBNGB626H14D07N81XP' where id=8; -update noar tt set b0='DKUSHBR0W69D1X5A7RZ2FTMQ2WTSXM1' where id=8; -update noar ti set b0='DKUSHBR0W69D1X5A7RZ2FTMQ2WTSXM1' where id=8; -update noar tt set v0='OE9Z8D277PAO' where id=8; -update noar ti set v0='OE9Z8D277PAO' where id=8; -update noar tt set b1='MVL6SN6NA12KDDBENEYF1CTGW3A7' where id=8; -update noar ti set b1='MVL6SN6NA12KDDBENEYF1CTGW3A7' where id=8; -update noar tt set v0='L6AP' where id=8; -update noar ti set v0='L6AP' where id=8; -update noar tt set b2='3HEXQO0MCRG95KHSNHL5' where id=8; -update noar ti set b2='3HEXQO0MCRG95KHSNHL5' where id=8; -update noar tt set v0='5O27VIEO3RFE86KYI9PE23A' where id=9; -update noar ti set v0='5O27VIEO3RFE86KYI9PE23A' where id=9; -update noar tt set b0='KEJN583WTJHZ2UFJNX83YE9E9BG9FA9' where id=9; -update noar ti set b0='KEJN583WTJHZ2UFJNX83YE9E9BG9FA9' where id=9; -update noar tt set v0='MSKU6Y4W5VRH2XYI7T2SY' where id=9; -update noar ti set v0='MSKU6Y4W5VRH2XYI7T2SY' where id=9; -update noar tt set b1='DHE1H05R' where id=9; -update noar ti set b1='DHE1H05R' where id=9; -update noar tt set v0='ZI4VG1QJ' where id=9; -update noar ti set v0='ZI4VG1QJ' where id=9; -update noar tt set b2='BDWVOKE8AQSN' where id=9; -update noar ti set b2='BDWVOKE8AQSN' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -v0 varchar(256) null, -b0 tinyblob null, -b1 tinyblob null, -b2 blob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='S38V6P1S0BNAN' where id=1; -update noar ti set v0='S38V6P1S0BNAN' where id=1; -update noar tt set b0='SNX1PRRGATZDTBZQROZG936XCO35' where id=1; -update noar ti set b0='SNX1PRRGATZDTBZQROZG936XCO35' where id=1; -update noar tt set v0='OE4TZHS4ZS83W4W0H' where id=1; -update noar ti set v0='OE4TZHS4ZS83W4W0H' where id=1; -update noar tt set b1='W0K32SKSG7B96L9H' where id=1; -update noar ti set b1='W0K32SKSG7B96L9H' where id=1; -update noar tt set v0='LBOXALUNT3OWTZLKU5R9' where id=1; -update noar ti set v0='LBOXALUNT3OWTZLKU5R9' where id=1; -update noar tt set b2='0PJW46H' where id=1; -update noar ti set b2='0PJW46H' where id=1; -update noar tt set v0='LX0LP5ZNAK38' where id=2; -update noar ti set v0='LX0LP5ZNAK38' where id=2; -update noar tt set b0='2NSV3B2M9UIH8AJTXXXRDQ' where id=2; -update noar ti set b0='2NSV3B2M9UIH8AJTXXXRDQ' where id=2; -update noar tt set v0='7BVYSTXQ9U7X9Q0ULO89BCZR2S' where id=2; -update noar ti set v0='7BVYSTXQ9U7X9Q0ULO89BCZR2S' where id=2; -update noar tt set b1='U9B4KUSO5HXKLYJKWEMWGGLDA4PV0B' where id=2; -update noar ti set b1='U9B4KUSO5HXKLYJKWEMWGGLDA4PV0B' where id=2; -update noar tt set v0='TH7PT4B3CQIKZX' where id=2; -update noar ti set v0='TH7PT4B3CQIKZX' where id=2; -update noar tt set b2='SXMI1EWOHWD3JVD' where id=2; -update noar ti set b2='SXMI1EWOHWD3JVD' where id=2; -update noar tt set v0='Y0Z' where id=3; -update noar ti set v0='Y0Z' where id=3; -update noar tt set b0='K6XFB5LF110BPTEW' where id=3; -update noar ti set b0='K6XFB5LF110BPTEW' where id=3; -update noar tt set v0='SCQQFA4SM76PN' where id=3; -update noar ti set v0='SCQQFA4SM76PN' where id=3; -update noar tt set b1='Q3ENOXHHLVWONA1W8GUE32E1BWIW613M' where id=3; -update noar ti set b1='Q3ENOXHHLVWONA1W8GUE32E1BWIW613M' where id=3; -update noar tt set v0='WD0JXHA7UTFKIHHBYR40O' where id=3; -update noar ti set v0='WD0JXHA7UTFKIHHBYR40O' where id=3; -update noar tt set b2='P8WQ0SVQ68JDMOUTVQT0V8RSPX' where id=3; -update noar ti set b2='P8WQ0SVQ68JDMOUTVQT0V8RSPX' where id=3; -update noar tt set v0='5P' where id=4; -update noar ti set v0='5P' where id=4; -update noar tt set b0='1SQE34Q' where id=4; -update noar ti set b0='1SQE34Q' where id=4; -update noar tt set v0='6Y402D' where id=4; -update noar ti set v0='6Y402D' where id=4; -update noar tt set b1='LLH' where id=4; -update noar ti set b1='LLH' where id=4; -update noar tt set v0='XRUZRILLPYHCO6WANEGVC7Q' where id=4; -update noar ti set v0='XRUZRILLPYHCO6WANEGVC7Q' where id=4; -update noar tt set b2='KHOJG3ZCT0RIKVCCP78R5OYVJ' where id=4; -update noar ti set b2='KHOJG3ZCT0RIKVCCP78R5OYVJ' where id=4; -update noar tt set v0='Y' where id=5; -update noar ti set v0='Y' where id=5; -update noar tt set b0='BJG6AHGRBQX' where id=5; -update noar ti set b0='BJG6AHGRBQX' where id=5; -update noar tt set v0='MPQZ0QZB62X7Y' where id=5; -update noar ti set v0='MPQZ0QZB62X7Y' where id=5; -update noar tt set b1='WA17DYB4XZ1G8SJ9VILXJ5WBNT3FA14O' where id=5; -update noar ti set b1='WA17DYB4XZ1G8SJ9VILXJ5WBNT3FA14O' where id=5; -update noar tt set v0='RWWTFR3ZK35PYOGCJR0H49I' where id=5; -update noar ti set v0='RWWTFR3ZK35PYOGCJR0H49I' where id=5; -update noar tt set b2='TP' where id=5; -update noar ti set b2='TP' where id=5; -update noar tt set v0='0I94Y0RXY' where id=6; -update noar ti set v0='0I94Y0RXY' where id=6; -update noar tt set b0='LTKIVTQGWUU6TJ50L3' where id=6; -update noar ti set b0='LTKIVTQGWUU6TJ50L3' where id=6; -update noar tt set v0='77' where id=6; -update noar ti set v0='77' where id=6; -update noar tt set b1='57B9' where id=6; -update noar ti set b1='57B9' where id=6; -update noar tt set v0='JPVK' where id=6; -update noar ti set v0='JPVK' where id=6; -update noar tt set b2='7S8UC521SKWPB1YN' where id=6; -update noar ti set b2='7S8UC521SKWPB1YN' where id=6; -update noar tt set v0='S7V1DK2PSEEWLVRJ' where id=7; -update noar ti set v0='S7V1DK2PSEEWLVRJ' where id=7; -update noar tt set b0='M' where id=7; -update noar ti set b0='M' where id=7; -update noar tt set v0='X5SYUQ7G6F33YZT64XINLP2R991U' where id=7; -update noar ti set v0='X5SYUQ7G6F33YZT64XINLP2R991U' where id=7; -update noar tt set b1='WC0JTDYM0WUVRAP6D19PNRKN' where id=7; -update noar ti set b1='WC0JTDYM0WUVRAP6D19PNRKN' where id=7; -update noar tt set v0='DQ5R' where id=7; -update noar ti set v0='DQ5R' where id=7; -update noar tt set b2='L5WL1UCS7D63PK' where id=7; -update noar ti set b2='L5WL1UCS7D63PK' where id=7; -update noar tt set v0='FIV2QZXCI6' where id=8; -update noar ti set v0='FIV2QZXCI6' where id=8; -update noar tt set b0='Z' where id=8; -update noar ti set b0='Z' where id=8; -update noar tt set v0='KYAT0VLE4QGAX' where id=8; -update noar ti set v0='KYAT0VLE4QGAX' where id=8; -update noar tt set b1='XWAQN2Q963SD5LF1MH4MIEBCC28I9' where id=8; -update noar ti set b1='XWAQN2Q963SD5LF1MH4MIEBCC28I9' where id=8; -update noar tt set v0='UP8M2' where id=8; -update noar ti set v0='UP8M2' where id=8; -update noar tt set b2='K' where id=8; -update noar ti set b2='K' where id=8; -update noar tt set v0='4AKDGFH0WMDHUTTSAZHHRXTKHT' where id=9; -update noar ti set v0='4AKDGFH0WMDHUTTSAZHHRXTKHT' where id=9; -update noar tt set b0='EMJO39' where id=9; -update noar ti set b0='EMJO39' where id=9; -update noar tt set v0='R6ZXAJ6IVD761GY15GI4I2SC0256Q' where id=9; -update noar ti set v0='R6ZXAJ6IVD761GY15GI4I2SC0256Q' where id=9; -update noar tt set b1='8V' where id=9; -update noar ti set b1='8V' where id=9; -update noar tt set v0='MRIN8ORER7BV8U' where id=9; -update noar ti set v0='MRIN8ORER7BV8U' where id=9; -update noar tt set b2='AC06BV0K9NCB' where id=9; -update noar ti set b2='AC06BV0K9NCB' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -v0 varchar(32) not null, -b0 tinyblob not null, -b1 tinyblob not null, -b2 blob not null -) engine=tokudb; -insert into tt values (1,'','','',''); -insert into tt values (2,'','','',''); -insert into tt values (3,'','','',''); -insert into tt values (4,'','','',''); -insert into tt values (5,'','','',''); -insert into tt values (6,'','','',''); -insert into tt values (7,'','','',''); -insert into tt values (8,'','','',''); -insert into tt values (9,'','','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='PQA0U8AOMTTN0SU9USUXC385PTAKN3PZ' where id=1; -update noar ti set v0='PQA0U8AOMTTN0SU9USUXC385PTAKN3PZ' where id=1; -update noar tt set b0='LCMBPP' where id=1; -update noar ti set b0='LCMBPP' where id=1; -update noar tt set v0='AH8ZSE' where id=1; -update noar ti set v0='AH8ZSE' where id=1; -update noar tt set b1='9XYULWMAH90JMDUG1VVG2ACJ35Q7A6O' where id=1; -update noar ti set b1='9XYULWMAH90JMDUG1VVG2ACJ35Q7A6O' where id=1; -update noar tt set v0='T6ZQZAIBIGQ' where id=1; -update noar ti set v0='T6ZQZAIBIGQ' where id=1; -update noar tt set b2='26G6B' where id=1; -update noar ti set b2='26G6B' where id=1; -update noar tt set v0='KWVG4RGVCVQUG447HI15B3' where id=2; -update noar ti set v0='KWVG4RGVCVQUG447HI15B3' where id=2; -update noar tt set b0='9S06MYQVTOO8KXX3IN2DRM0ZM0MTLX8C' where id=2; -update noar ti set b0='9S06MYQVTOO8KXX3IN2DRM0ZM0MTLX8C' where id=2; -update noar tt set v0='NYKQVR682WY73LJ46X534' where id=2; -update noar ti set v0='NYKQVR682WY73LJ46X534' where id=2; -update noar tt set b1='JNR7' where id=2; -update noar ti set b1='JNR7' where id=2; -update noar tt set v0='LZGHD' where id=2; -update noar ti set v0='LZGHD' where id=2; -update noar tt set b2='F8I901PSU4HD7CMU9IGK6SVZWB27D' where id=2; -update noar ti set b2='F8I901PSU4HD7CMU9IGK6SVZWB27D' where id=2; -update noar tt set v0='VA7SDXB4FKE9H69ICCNV51JCO9TQJ0VD' where id=3; -update noar ti set v0='VA7SDXB4FKE9H69ICCNV51JCO9TQJ0VD' where id=3; -update noar tt set b0='LBDU1PQOW1FJS1SMMJ34KM0TDXGIY' where id=3; -update noar ti set b0='LBDU1PQOW1FJS1SMMJ34KM0TDXGIY' where id=3; -update noar tt set v0='HGB6LP6SZ87D1CHB5CG2' where id=3; -update noar ti set v0='HGB6LP6SZ87D1CHB5CG2' where id=3; -update noar tt set b1='4OR' where id=3; -update noar ti set b1='4OR' where id=3; -update noar tt set v0='YHEPADHHPLEG7FAB6HLGCR45C7L' where id=3; -update noar ti set v0='YHEPADHHPLEG7FAB6HLGCR45C7L' where id=3; -update noar tt set b2='ZM4YUEG9LQXXFWB41' where id=3; -update noar ti set b2='ZM4YUEG9LQXXFWB41' where id=3; -update noar tt set v0='DI2G8CM3688G76J0CFBM6JA5O9LM6X' where id=4; -update noar ti set v0='DI2G8CM3688G76J0CFBM6JA5O9LM6X' where id=4; -update noar tt set b0='43ENW7LUTWV0R' where id=4; -update noar ti set b0='43ENW7LUTWV0R' where id=4; -update noar tt set v0='N' where id=4; -update noar ti set v0='N' where id=4; -update noar tt set b1='UMBBU6MVYCK42I7ACK' where id=4; -update noar ti set b1='UMBBU6MVYCK42I7ACK' where id=4; -update noar tt set v0='4DFQD' where id=4; -update noar ti set v0='4DFQD' where id=4; -update noar tt set b2='T8GL5FTXYIIR487B9A' where id=4; -update noar ti set b2='T8GL5FTXYIIR487B9A' where id=4; -update noar tt set v0='VC3A0WRGPZ' where id=5; -update noar ti set v0='VC3A0WRGPZ' where id=5; -update noar tt set b0='QG1WQTBLSQ5OX0117EPL' where id=5; -update noar ti set b0='QG1WQTBLSQ5OX0117EPL' where id=5; -update noar tt set v0='LMJ3B63T0RKW1PY6PKA3V3JBP' where id=5; -update noar ti set v0='LMJ3B63T0RKW1PY6PKA3V3JBP' where id=5; -update noar tt set b1='E5Y' where id=5; -update noar ti set b1='E5Y' where id=5; -update noar tt set v0='41I5732CA8FNMWFR9S9' where id=5; -update noar ti set v0='41I5732CA8FNMWFR9S9' where id=5; -update noar tt set b2='RYAIU39QF00IHDN38OGC' where id=5; -update noar ti set b2='RYAIU39QF00IHDN38OGC' where id=5; -update noar tt set v0='I8RJB9RDL8JPYMY8S81N1N' where id=6; -update noar ti set v0='I8RJB9RDL8JPYMY8S81N1N' where id=6; -update noar tt set b0='O80GCRGKEU' where id=6; -update noar ti set b0='O80GCRGKEU' where id=6; -update noar tt set v0='R6XD8JUP4B1H3PRP' where id=6; -update noar ti set v0='R6XD8JUP4B1H3PRP' where id=6; -update noar tt set b1='U2P30RM7JDIXGTG2IA8H33IGEQKA99' where id=6; -update noar ti set b1='U2P30RM7JDIXGTG2IA8H33IGEQKA99' where id=6; -update noar tt set v0='63DKVNZHNN0' where id=6; -update noar ti set v0='63DKVNZHNN0' where id=6; -update noar tt set b2='FSTAA6AUZLYLT3F9' where id=6; -update noar ti set b2='FSTAA6AUZLYLT3F9' where id=6; -update noar tt set v0='X7E9TW3BK' where id=7; -update noar ti set v0='X7E9TW3BK' where id=7; -update noar tt set b0='NQLIZ13XOI7NLODXN' where id=7; -update noar ti set b0='NQLIZ13XOI7NLODXN' where id=7; -update noar tt set v0='9VGQ3IK7222SRVTW7Q6C60O60BGTX' where id=7; -update noar ti set v0='9VGQ3IK7222SRVTW7Q6C60O60BGTX' where id=7; -update noar tt set b1='OV3TRV2LWC16R2Q' where id=7; -update noar ti set b1='OV3TRV2LWC16R2Q' where id=7; -update noar tt set v0='MWKKZJ3GL5KLCTZWV6GX' where id=7; -update noar ti set v0='MWKKZJ3GL5KLCTZWV6GX' where id=7; -update noar tt set b2='T46QEM927MDPU16R' where id=7; -update noar ti set b2='T46QEM927MDPU16R' where id=7; -update noar tt set v0='0RSGX' where id=8; -update noar ti set v0='0RSGX' where id=8; -update noar tt set b0='HT37NEDB1WXQ3855' where id=8; -update noar ti set b0='HT37NEDB1WXQ3855' where id=8; -update noar tt set v0='AHNZ1LK3OX7T7AJCJ4HNNI' where id=8; -update noar ti set v0='AHNZ1LK3OX7T7AJCJ4HNNI' where id=8; -update noar tt set b1='XBNBB2QG5' where id=8; -update noar ti set b1='XBNBB2QG5' where id=8; -update noar tt set v0='95C5HUKGZBLFI5ON4BS42GSH8' where id=8; -update noar ti set v0='95C5HUKGZBLFI5ON4BS42GSH8' where id=8; -update noar tt set b2='V6Q7T5NKSMM2TPD4LM9IJ22QFJRESPY0' where id=8; -update noar ti set b2='V6Q7T5NKSMM2TPD4LM9IJ22QFJRESPY0' where id=8; -update noar tt set v0='JFN0P8CFP8J4SVPUA7EUIC' where id=9; -update noar ti set v0='JFN0P8CFP8J4SVPUA7EUIC' where id=9; -update noar tt set b0='95HOEIDJUK0POO7C0CLNBW9FXXK' where id=9; -update noar ti set b0='95HOEIDJUK0POO7C0CLNBW9FXXK' where id=9; -update noar tt set v0='70IPM' where id=9; -update noar ti set v0='70IPM' where id=9; -update noar tt set b1='8Q' where id=9; -update noar ti set b1='8Q' where id=9; -update noar tt set v0='UYS1XSNQ' where id=9; -update noar ti set v0='UYS1XSNQ' where id=9; -update noar tt set b2='JWKAH0' where id=9; -update noar ti set b2='JWKAH0' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -v0 varchar(256) not null, -b0 tinyblob not null, -b1 tinyblob not null, -b2 blob not null -) engine=tokudb; -insert into tt values (1,'','','',''); -insert into tt values (2,'','','',''); -insert into tt values (3,'','','',''); -insert into tt values (4,'','','',''); -insert into tt values (5,'','','',''); -insert into tt values (6,'','','',''); -insert into tt values (7,'','','',''); -insert into tt values (8,'','','',''); -insert into tt values (9,'','','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='VY8' where id=1; -update noar ti set v0='VY8' where id=1; -update noar tt set b0='X2P0YGHY4R437' where id=1; -update noar ti set b0='X2P0YGHY4R437' where id=1; -update noar tt set v0='4DP0EL8WK0RDZYZ4ICS3V' where id=1; -update noar ti set v0='4DP0EL8WK0RDZYZ4ICS3V' where id=1; -update noar tt set b1='E' where id=1; -update noar ti set b1='E' where id=1; -update noar tt set v0='9NEV08TH95QF' where id=1; -update noar ti set v0='9NEV08TH95QF' where id=1; -update noar tt set b2='0P6FW9QRC66S3WI78VH4L' where id=1; -update noar ti set b2='0P6FW9QRC66S3WI78VH4L' where id=1; -update noar tt set v0='VKCLFL5J8QJ6L931Y4E8' where id=2; -update noar ti set v0='VKCLFL5J8QJ6L931Y4E8' where id=2; -update noar tt set b0='M4YM3DU5X363CCO' where id=2; -update noar ti set b0='M4YM3DU5X363CCO' where id=2; -update noar tt set v0='B208818XS6PVAN8D2DP0NHK73K829Z' where id=2; -update noar ti set v0='B208818XS6PVAN8D2DP0NHK73K829Z' where id=2; -update noar tt set b1='QEE9916C0K2P2LVNIFYW32MTDO5MCL' where id=2; -update noar ti set b1='QEE9916C0K2P2LVNIFYW32MTDO5MCL' where id=2; -update noar tt set v0='5T81QTWD0VP5HN2W7JX5GK' where id=2; -update noar ti set v0='5T81QTWD0VP5HN2W7JX5GK' where id=2; -update noar tt set b2='EMIQD8DJ3PZ67YSJ' where id=2; -update noar ti set b2='EMIQD8DJ3PZ67YSJ' where id=2; -update noar tt set v0='GM0J5TMT5B7OTMDL7UVD' where id=3; -update noar ti set v0='GM0J5TMT5B7OTMDL7UVD' where id=3; -update noar tt set b0='TRGLG5' where id=3; -update noar ti set b0='TRGLG5' where id=3; -update noar tt set v0='6P' where id=3; -update noar ti set v0='6P' where id=3; -update noar tt set b1='8JI5TNDWBE9' where id=3; -update noar ti set b1='8JI5TNDWBE9' where id=3; -update noar tt set v0='2PO3AP0TZKHUJ2' where id=3; -update noar ti set v0='2PO3AP0TZKHUJ2' where id=3; -update noar tt set b2='W5736CY1SH9QY2785CN7IGON1RB' where id=3; -update noar ti set b2='W5736CY1SH9QY2785CN7IGON1RB' where id=3; -update noar tt set v0='K2DHG0' where id=4; -update noar ti set v0='K2DHG0' where id=4; -update noar tt set b0='GSLZ8M9YMTHGXQGY59TCL7' where id=4; -update noar ti set b0='GSLZ8M9YMTHGXQGY59TCL7' where id=4; -update noar tt set v0='ZHAH3O9B1JN1D526JE6PC3XJ6W4HN8KL' where id=4; -update noar ti set v0='ZHAH3O9B1JN1D526JE6PC3XJ6W4HN8KL' where id=4; -update noar tt set b1='M2UMTZD4N68LKNZ' where id=4; -update noar ti set b1='M2UMTZD4N68LKNZ' where id=4; -update noar tt set v0='KQFOM64' where id=4; -update noar ti set v0='KQFOM64' where id=4; -update noar tt set b2='FC2SY3' where id=4; -update noar ti set b2='FC2SY3' where id=4; -update noar tt set v0='ABRFPIUA0PI5OMV8BQ' where id=5; -update noar ti set v0='ABRFPIUA0PI5OMV8BQ' where id=5; -update noar tt set b0='47ESUSFE93S92AEKPL3' where id=5; -update noar ti set b0='47ESUSFE93S92AEKPL3' where id=5; -update noar tt set v0='W6QW2KQVVWEPOHNZ77RMRB27LB9' where id=5; -update noar ti set v0='W6QW2KQVVWEPOHNZ77RMRB27LB9' where id=5; -update noar tt set b1='AUIZY8VJI24KCGKOSNFN3DQBYSQ' where id=5; -update noar ti set b1='AUIZY8VJI24KCGKOSNFN3DQBYSQ' where id=5; -update noar tt set v0='UKWWN8F72MVX2DWKDLBEY3HBSZI9MK' where id=5; -update noar ti set v0='UKWWN8F72MVX2DWKDLBEY3HBSZI9MK' where id=5; -update noar tt set b2='WN4KJXBY2UEV6V6R1LSG4HN' where id=5; -update noar ti set b2='WN4KJXBY2UEV6V6R1LSG4HN' where id=5; -update noar tt set v0='NK4319E7VFJX0PLDPEC7T0PDRX5ECR9R' where id=6; -update noar ti set v0='NK4319E7VFJX0PLDPEC7T0PDRX5ECR9R' where id=6; -update noar tt set b0='QKSISHTBPRBWV712T0UFVN3UOTUJ6L1' where id=6; -update noar ti set b0='QKSISHTBPRBWV712T0UFVN3UOTUJ6L1' where id=6; -update noar tt set v0='UF378DK06HJJP6B8D5LTR9Q68FV' where id=6; -update noar ti set v0='UF378DK06HJJP6B8D5LTR9Q68FV' where id=6; -update noar tt set b1='DRZFMIHB1DJ53BNAG98F' where id=6; -update noar ti set b1='DRZFMIHB1DJ53BNAG98F' where id=6; -update noar tt set v0='R1UZ4QO41WMYL37QSSG9JP0O8O01' where id=6; -update noar ti set v0='R1UZ4QO41WMYL37QSSG9JP0O8O01' where id=6; -update noar tt set b2='GBH55CHC9VJNM5EBW2H1DH9AP1V' where id=6; -update noar ti set b2='GBH55CHC9VJNM5EBW2H1DH9AP1V' where id=6; -update noar tt set v0='EW050M4VTKQDO1' where id=7; -update noar ti set v0='EW050M4VTKQDO1' where id=7; -update noar tt set b0='F8AWRYREIYO8W9OQU' where id=7; -update noar ti set b0='F8AWRYREIYO8W9OQU' where id=7; -update noar tt set v0='T6KSNPYHF9' where id=7; -update noar ti set v0='T6KSNPYHF9' where id=7; -update noar tt set b1='X5XT8NOQBFC7U28QCA' where id=7; -update noar ti set b1='X5XT8NOQBFC7U28QCA' where id=7; -update noar tt set v0='GIDSBSEGU' where id=7; -update noar ti set v0='GIDSBSEGU' where id=7; -update noar tt set b2='7U' where id=7; -update noar ti set b2='7U' where id=7; -update noar tt set v0='1EKP5Y1W5CIW1' where id=8; -update noar ti set v0='1EKP5Y1W5CIW1' where id=8; -update noar tt set b0='EXZ92X5VWX8P6WLLE64BMHM71YPI' where id=8; -update noar ti set b0='EXZ92X5VWX8P6WLLE64BMHM71YPI' where id=8; -update noar tt set v0='XWBX7HF9MSKR6GKWNZ' where id=8; -update noar ti set v0='XWBX7HF9MSKR6GKWNZ' where id=8; -update noar tt set b1='3CXWM0LG' where id=8; -update noar ti set b1='3CXWM0LG' where id=8; -update noar tt set v0='X4CBCX6B' where id=8; -update noar ti set v0='X4CBCX6B' where id=8; -update noar tt set b2='B80QYQFOODWF9MDYBZXP5H7P6OL0OIYL' where id=8; -update noar ti set b2='B80QYQFOODWF9MDYBZXP5H7P6OL0OIYL' where id=8; -update noar tt set v0='DU3XMYOBFH6URS0ZE7P2D2UQ9Q0' where id=9; -update noar ti set v0='DU3XMYOBFH6URS0ZE7P2D2UQ9Q0' where id=9; -update noar tt set b0='H9TWUAX675GZCY3RMK6M2L' where id=9; -update noar ti set b0='H9TWUAX675GZCY3RMK6M2L' where id=9; -update noar tt set v0='0AZ3' where id=9; -update noar ti set v0='0AZ3' where id=9; -update noar tt set b1='1FKK4UEX8LM046B' where id=9; -update noar ti set b1='1FKK4UEX8LM046B' where id=9; -update noar tt set v0='XUL0HW' where id=9; -update noar ti set v0='XUL0HW' where id=9; -update noar tt set b2='62ERQT2YSTVSYXGK5SCDCKKIJ' where id=9; -update noar ti set b2='62ERQT2YSTVSYXGK5SCDCKKIJ' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -v0 varchar(32) null, -b0 tinyblob null, -b1 tinyblob null, -b2 mediumblob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='QLNH00EHACD53HBGH48S1WXQT4I3' where id=1; -update noar ti set v0='QLNH00EHACD53HBGH48S1WXQT4I3' where id=1; -update noar tt set b0='K04JDSV1O1J1SBOYPJ43E7BNNLPGPG2P' where id=1; -update noar ti set b0='K04JDSV1O1J1SBOYPJ43E7BNNLPGPG2P' where id=1; -update noar tt set v0='Q44LT7ABYHY4LGRWUMRM' where id=1; -update noar ti set v0='Q44LT7ABYHY4LGRWUMRM' where id=1; -update noar tt set b1='20KLS720GMVW8L0' where id=1; -update noar ti set b1='20KLS720GMVW8L0' where id=1; -update noar tt set v0='8IGESBH9Z56YGGXON' where id=1; -update noar ti set v0='8IGESBH9Z56YGGXON' where id=1; -update noar tt set b2='OD68NJ4JBCC1I2JN57' where id=1; -update noar ti set b2='OD68NJ4JBCC1I2JN57' where id=1; -update noar tt set v0='UE2NFRIXZ5EJT' where id=2; -update noar ti set v0='UE2NFRIXZ5EJT' where id=2; -update noar tt set b0='4NPR1ZAD7UF' where id=2; -update noar ti set b0='4NPR1ZAD7UF' where id=2; -update noar tt set v0='QBQHJLECGHY2A2VXI' where id=2; -update noar ti set v0='QBQHJLECGHY2A2VXI' where id=2; -update noar tt set b1='UZOF7OUH6FW5LY4IPVI7ZJR9WYHAX8L' where id=2; -update noar ti set b1='UZOF7OUH6FW5LY4IPVI7ZJR9WYHAX8L' where id=2; -update noar tt set v0='9L141WWUD0C2ZV7JMSUGY7S' where id=2; -update noar ti set v0='9L141WWUD0C2ZV7JMSUGY7S' where id=2; -update noar tt set b2='FBQPDF940H02PEMIAI' where id=2; -update noar ti set b2='FBQPDF940H02PEMIAI' where id=2; -update noar tt set v0='1SEV89PAKLVPZLVJUHCJL4RE' where id=3; -update noar ti set v0='1SEV89PAKLVPZLVJUHCJL4RE' where id=3; -update noar tt set b0='H5VTPAY3NLIRQH3G4DK7UJL8IN' where id=3; -update noar ti set b0='H5VTPAY3NLIRQH3G4DK7UJL8IN' where id=3; -update noar tt set v0='4M67PM4KZ25XMZ' where id=3; -update noar ti set v0='4M67PM4KZ25XMZ' where id=3; -update noar tt set b1='7T5JPEM9IL28AIL' where id=3; -update noar ti set b1='7T5JPEM9IL28AIL' where id=3; -update noar tt set v0='G0RCT5YHZGGSQK2MIE3JNC' where id=3; -update noar ti set v0='G0RCT5YHZGGSQK2MIE3JNC' where id=3; -update noar tt set b2='C9JU' where id=3; -update noar ti set b2='C9JU' where id=3; -update noar tt set v0='ZRAG8IP8S3MEDVSMMSBQQCF6OQ8VJAH9' where id=4; -update noar ti set v0='ZRAG8IP8S3MEDVSMMSBQQCF6OQ8VJAH9' where id=4; -update noar tt set b0='PP2CVNVO7GNCKHHKYKUEPW' where id=4; -update noar ti set b0='PP2CVNVO7GNCKHHKYKUEPW' where id=4; -update noar tt set v0='PSFHC1AUFYBEZ7I64V3766RWJ' where id=4; -update noar ti set v0='PSFHC1AUFYBEZ7I64V3766RWJ' where id=4; -update noar tt set b1='AUVBG3YEULUUGVZLMS7JJZ' where id=4; -update noar ti set b1='AUVBG3YEULUUGVZLMS7JJZ' where id=4; -update noar tt set v0='0PAQSL4ST8SBIHYNY0YHCW6H' where id=4; -update noar ti set v0='0PAQSL4ST8SBIHYNY0YHCW6H' where id=4; -update noar tt set b2='AK8PSI77WH1' where id=4; -update noar ti set b2='AK8PSI77WH1' where id=4; -update noar tt set v0='IWEOB12HV1N9ZW6653YDJV' where id=5; -update noar ti set v0='IWEOB12HV1N9ZW6653YDJV' where id=5; -update noar tt set b0='CK0DBGO52T0L0WXZGTEX440VIFFK' where id=5; -update noar ti set b0='CK0DBGO52T0L0WXZGTEX440VIFFK' where id=5; -update noar tt set v0='7Y0SH837Y9LE4O3P41' where id=5; -update noar ti set v0='7Y0SH837Y9LE4O3P41' where id=5; -update noar tt set b1='JHVHRTV3' where id=5; -update noar ti set b1='JHVHRTV3' where id=5; -update noar tt set v0='N76JP' where id=5; -update noar ti set v0='N76JP' where id=5; -update noar tt set b2='NM' where id=5; -update noar ti set b2='NM' where id=5; -update noar tt set v0='RC0INFBHY8E' where id=6; -update noar ti set v0='RC0INFBHY8E' where id=6; -update noar tt set b0='YYIN55CU7F21J5IPDW9V3NU' where id=6; -update noar ti set b0='YYIN55CU7F21J5IPDW9V3NU' where id=6; -update noar tt set v0='SBFY48ZNF5H5DH' where id=6; -update noar ti set v0='SBFY48ZNF5H5DH' where id=6; -update noar tt set b1='L21LI3R625D2YJGAFP' where id=6; -update noar ti set b1='L21LI3R625D2YJGAFP' where id=6; -update noar tt set v0='LMUD0LNEI1MU3M1' where id=6; -update noar ti set v0='LMUD0LNEI1MU3M1' where id=6; -update noar tt set b2='SN23OYXBUAD3GV' where id=6; -update noar ti set b2='SN23OYXBUAD3GV' where id=6; -update noar tt set v0='3JOBCL2CC5NTUGQWZ45MXVD' where id=7; -update noar ti set v0='3JOBCL2CC5NTUGQWZ45MXVD' where id=7; -update noar tt set b0='K134GIICU4LB7XP4V94BCJCVLEF4ZQDY' where id=7; -update noar ti set b0='K134GIICU4LB7XP4V94BCJCVLEF4ZQDY' where id=7; -update noar tt set v0='7U5AE7T8BQ8JDZSGAYO5V' where id=7; -update noar ti set v0='7U5AE7T8BQ8JDZSGAYO5V' where id=7; -update noar tt set b1='DNH2DYGAHWXHDTEJ7D2' where id=7; -update noar ti set b1='DNH2DYGAHWXHDTEJ7D2' where id=7; -update noar tt set v0='S1ALXBHH6UCIBT6OUVUC9Z91AS' where id=7; -update noar ti set v0='S1ALXBHH6UCIBT6OUVUC9Z91AS' where id=7; -update noar tt set b2='Z9GUG6A8O' where id=7; -update noar ti set b2='Z9GUG6A8O' where id=7; -update noar tt set v0='3FA5MX4LGENPB3EWFVFG8G3UFY' where id=8; -update noar ti set v0='3FA5MX4LGENPB3EWFVFG8G3UFY' where id=8; -update noar tt set b0='AL92PTHOTGVKKMFF8QF' where id=8; -update noar ti set b0='AL92PTHOTGVKKMFF8QF' where id=8; -update noar tt set v0='E4IC' where id=8; -update noar ti set v0='E4IC' where id=8; -update noar tt set b1='I4MWW2IRV4OTC9YCS28NQWV07XGE2MY' where id=8; -update noar ti set b1='I4MWW2IRV4OTC9YCS28NQWV07XGE2MY' where id=8; -update noar tt set v0='0RWACQZLJPQLRI3G0K19VLZ' where id=8; -update noar ti set v0='0RWACQZLJPQLRI3G0K19VLZ' where id=8; -update noar tt set b2='W8OA' where id=8; -update noar ti set b2='W8OA' where id=8; -update noar tt set v0='ETZIGE' where id=9; -update noar ti set v0='ETZIGE' where id=9; -update noar tt set b0='4SH3UBYZ6NEYPVKJ0PKCM' where id=9; -update noar ti set b0='4SH3UBYZ6NEYPVKJ0PKCM' where id=9; -update noar tt set v0='AILZHIRDBKOV' where id=9; -update noar ti set v0='AILZHIRDBKOV' where id=9; -update noar tt set b1='D4KDH28I6P4EIVVBB0P15EE24DG6X' where id=9; -update noar ti set b1='D4KDH28I6P4EIVVBB0P15EE24DG6X' where id=9; -update noar tt set v0='S9AXZ6GKNJWCT6GU9T2YFJKAFTF1O3' where id=9; -update noar ti set v0='S9AXZ6GKNJWCT6GU9T2YFJKAFTF1O3' where id=9; -update noar tt set b2='QFJ1MXK4W39DVD77U53IPIFDT1P' where id=9; -update noar ti set b2='QFJ1MXK4W39DVD77U53IPIFDT1P' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -v0 varchar(256) null, -b0 tinyblob null, -b1 tinyblob null, -b2 mediumblob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='QU22E82U77' where id=1; -update noar ti set v0='QU22E82U77' where id=1; -update noar tt set b0='ST3F5ZE5C8KCF1EV' where id=1; -update noar ti set b0='ST3F5ZE5C8KCF1EV' where id=1; -update noar tt set v0='1884Z8G7M5WO78B3B2XHGNRB5VGDV' where id=1; -update noar ti set v0='1884Z8G7M5WO78B3B2XHGNRB5VGDV' where id=1; -update noar tt set b1='YZC' where id=1; -update noar ti set b1='YZC' where id=1; -update noar tt set v0='GX9S71R6LZUZ5UW1FK38BT1L' where id=1; -update noar ti set v0='GX9S71R6LZUZ5UW1FK38BT1L' where id=1; -update noar tt set b2='8IM6W09ATIJVY79O7LCEPV9FCQ67' where id=1; -update noar ti set b2='8IM6W09ATIJVY79O7LCEPV9FCQ67' where id=1; -update noar tt set v0='W3U5T4H3ORGRI6RS44XX2KIM' where id=2; -update noar ti set v0='W3U5T4H3ORGRI6RS44XX2KIM' where id=2; -update noar tt set b0='U8R3TPXZBWZNVOLBRO8TCWR5TE' where id=2; -update noar ti set b0='U8R3TPXZBWZNVOLBRO8TCWR5TE' where id=2; -update noar tt set v0='L9AO05MW638GWS7SX5ID221' where id=2; -update noar ti set v0='L9AO05MW638GWS7SX5ID221' where id=2; -update noar tt set b1='SD99B5' where id=2; -update noar ti set b1='SD99B5' where id=2; -update noar tt set v0='UPMFXV2NDXRPATQ7978Z8LPJOYE3' where id=2; -update noar ti set v0='UPMFXV2NDXRPATQ7978Z8LPJOYE3' where id=2; -update noar tt set b2='HU8TE' where id=2; -update noar ti set b2='HU8TE' where id=2; -update noar tt set v0='ULT0MMPPM7OK9O4624QTS' where id=3; -update noar ti set v0='ULT0MMPPM7OK9O4624QTS' where id=3; -update noar tt set b0='OZMILYDFOMCXPYB' where id=3; -update noar ti set b0='OZMILYDFOMCXPYB' where id=3; -update noar tt set v0='AIATAVCG6GZRMBUEG7GXT2BOFK4USQ1' where id=3; -update noar ti set v0='AIATAVCG6GZRMBUEG7GXT2BOFK4USQ1' where id=3; -update noar tt set b1='02I6F3BHNUC9' where id=3; -update noar ti set b1='02I6F3BHNUC9' where id=3; -update noar tt set v0='D25NC7B' where id=3; -update noar ti set v0='D25NC7B' where id=3; -update noar tt set b2='30LOQD1MD0TOX3D51L6ZBJ' where id=3; -update noar ti set b2='30LOQD1MD0TOX3D51L6ZBJ' where id=3; -update noar tt set v0='RNS0LJROE' where id=4; -update noar ti set v0='RNS0LJROE' where id=4; -update noar tt set b0='I8EZDWMSQZ4Z30ESTE1M' where id=4; -update noar ti set b0='I8EZDWMSQZ4Z30ESTE1M' where id=4; -update noar tt set v0='N8A10WJ1LO0EGJCTOIXAG0OF8QF' where id=4; -update noar ti set v0='N8A10WJ1LO0EGJCTOIXAG0OF8QF' where id=4; -update noar tt set b1='8K' where id=4; -update noar ti set b1='8K' where id=4; -update noar tt set v0='ZSZQ1MHUQNGOISN7T7' where id=4; -update noar ti set v0='ZSZQ1MHUQNGOISN7T7' where id=4; -update noar tt set b2='DN7UYJP8O5N8F8GW9MST7Z' where id=4; -update noar ti set b2='DN7UYJP8O5N8F8GW9MST7Z' where id=4; -update noar tt set v0='23R1AUUMHFSN2R8R44XOSMBLI' where id=5; -update noar ti set v0='23R1AUUMHFSN2R8R44XOSMBLI' where id=5; -update noar tt set b0='VD94PIRUU' where id=5; -update noar ti set b0='VD94PIRUU' where id=5; -update noar tt set v0='166ZU4F0WEXD3HJAJTE2RXXJSOAKI' where id=5; -update noar ti set v0='166ZU4F0WEXD3HJAJTE2RXXJSOAKI' where id=5; -update noar tt set b1='YCW3NVRO' where id=5; -update noar ti set b1='YCW3NVRO' where id=5; -update noar tt set v0='TO54LKA9R42ES8HY2ICDO07' where id=5; -update noar ti set v0='TO54LKA9R42ES8HY2ICDO07' where id=5; -update noar tt set b2='91OLCN23499UQB40L5' where id=5; -update noar ti set b2='91OLCN23499UQB40L5' where id=5; -update noar tt set v0='ZG6QNIWGCANQO630A6AXKLG' where id=6; -update noar ti set v0='ZG6QNIWGCANQO630A6AXKLG' where id=6; -update noar tt set b0='WL4FRF2VDXLC8GC4V6BZ8NC' where id=6; -update noar ti set b0='WL4FRF2VDXLC8GC4V6BZ8NC' where id=6; -update noar tt set v0='TX3MFADKV55E6YH7Z9' where id=6; -update noar ti set v0='TX3MFADKV55E6YH7Z9' where id=6; -update noar tt set b1='LZBR' where id=6; -update noar ti set b1='LZBR' where id=6; -update noar tt set v0='EJ0SJO87NA1' where id=6; -update noar ti set v0='EJ0SJO87NA1' where id=6; -update noar tt set b2='18C4CTA6DT1U2ZVTO' where id=6; -update noar ti set b2='18C4CTA6DT1U2ZVTO' where id=6; -update noar tt set v0='L2LVFZPT0E01F5Y9D' where id=7; -update noar ti set v0='L2LVFZPT0E01F5Y9D' where id=7; -update noar tt set b0='16ZYKJTF' where id=7; -update noar ti set b0='16ZYKJTF' where id=7; -update noar tt set v0='XOWMD8EC3WC' where id=7; -update noar ti set v0='XOWMD8EC3WC' where id=7; -update noar tt set b1='WZHECOX9J8VQ1GXH0S2EO518GR' where id=7; -update noar ti set b1='WZHECOX9J8VQ1GXH0S2EO518GR' where id=7; -update noar tt set v0='QTU2SSON9T8FC' where id=7; -update noar ti set v0='QTU2SSON9T8FC' where id=7; -update noar tt set b2='R0J247T7UOTUU8P' where id=7; -update noar ti set b2='R0J247T7UOTUU8P' where id=7; -update noar tt set v0='DM5R1K7PX7R270HOJR1L00SJHYPLAB3Y' where id=8; -update noar ti set v0='DM5R1K7PX7R270HOJR1L00SJHYPLAB3Y' where id=8; -update noar tt set b0='HTR7Y9MQSFPNXJF5ZQSJ0' where id=8; -update noar ti set b0='HTR7Y9MQSFPNXJF5ZQSJ0' where id=8; -update noar tt set v0='JQBMFJCE37N' where id=8; -update noar ti set v0='JQBMFJCE37N' where id=8; -update noar tt set b1='1U' where id=8; -update noar ti set b1='1U' where id=8; -update noar tt set v0='51SE5CIRX4NUPHLJI9' where id=8; -update noar ti set v0='51SE5CIRX4NUPHLJI9' where id=8; -update noar tt set b2='7Y2MPAN' where id=8; -update noar ti set b2='7Y2MPAN' where id=8; -update noar tt set v0='97DBNRTK0MMBMJM5QIBPG' where id=9; -update noar ti set v0='97DBNRTK0MMBMJM5QIBPG' where id=9; -update noar tt set b0='KEJ3KBMFC9Q387YIG40S' where id=9; -update noar ti set b0='KEJ3KBMFC9Q387YIG40S' where id=9; -update noar tt set v0='KHPAIQAEF4' where id=9; -update noar ti set v0='KHPAIQAEF4' where id=9; -update noar tt set b1='NPH61C' where id=9; -update noar ti set b1='NPH61C' where id=9; -update noar tt set v0='M3EK88D5Z70HXPC' where id=9; -update noar ti set v0='M3EK88D5Z70HXPC' where id=9; -update noar tt set b2='NUACWYEZB35HZBQ4' where id=9; -update noar ti set b2='NUACWYEZB35HZBQ4' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -v0 varchar(32) not null, -b0 tinyblob not null, -b1 tinyblob not null, -b2 mediumblob not null -) engine=tokudb; -insert into tt values (1,'','','',''); -insert into tt values (2,'','','',''); -insert into tt values (3,'','','',''); -insert into tt values (4,'','','',''); -insert into tt values (5,'','','',''); -insert into tt values (6,'','','',''); -insert into tt values (7,'','','',''); -insert into tt values (8,'','','',''); -insert into tt values (9,'','','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='518' where id=1; -update noar ti set v0='518' where id=1; -update noar tt set b0='RQQ9962CCUS46HP' where id=1; -update noar ti set b0='RQQ9962CCUS46HP' where id=1; -update noar tt set v0='X6Q9KPZMBIDCTRABAVMD63JSIJV74RV3' where id=1; -update noar ti set v0='X6Q9KPZMBIDCTRABAVMD63JSIJV74RV3' where id=1; -update noar tt set b1='M648B4FLGLXBFP46D72' where id=1; -update noar ti set b1='M648B4FLGLXBFP46D72' where id=1; -update noar tt set v0='I08J13M8D' where id=1; -update noar ti set v0='I08J13M8D' where id=1; -update noar tt set b2='LDB' where id=1; -update noar ti set b2='LDB' where id=1; -update noar tt set v0='BJHUP61957IHKUUWNF3QDN3EB8K9W' where id=2; -update noar ti set v0='BJHUP61957IHKUUWNF3QDN3EB8K9W' where id=2; -update noar tt set b0='56Y' where id=2; -update noar ti set b0='56Y' where id=2; -update noar tt set v0='581YJ6O5N9MF2APEVE8VL' where id=2; -update noar ti set v0='581YJ6O5N9MF2APEVE8VL' where id=2; -update noar tt set b1='7EY309BU9X4Y5UOU74NI8CN0VJ3GZOZY' where id=2; -update noar ti set b1='7EY309BU9X4Y5UOU74NI8CN0VJ3GZOZY' where id=2; -update noar tt set v0='80A07PE' where id=2; -update noar ti set v0='80A07PE' where id=2; -update noar tt set b2='TWFE29UXN00DE13JHSGB' where id=2; -update noar ti set b2='TWFE29UXN00DE13JHSGB' where id=2; -update noar tt set v0='4' where id=3; -update noar ti set v0='4' where id=3; -update noar tt set b0='NLGJPXPBIUPNYYCOXGZN7141XCBJBKQS' where id=3; -update noar ti set b0='NLGJPXPBIUPNYYCOXGZN7141XCBJBKQS' where id=3; -update noar tt set v0='SW281Y4MB4LLBO0BFJ7SYHC2HMT' where id=3; -update noar ti set v0='SW281Y4MB4LLBO0BFJ7SYHC2HMT' where id=3; -update noar tt set b1='BWH3VF268PP9' where id=3; -update noar ti set b1='BWH3VF268PP9' where id=3; -update noar tt set v0='WQTKM50JKV0AD4LJVALOI' where id=3; -update noar ti set v0='WQTKM50JKV0AD4LJVALOI' where id=3; -update noar tt set b2='VLZCD9DJIXQUQB8IHU' where id=3; -update noar ti set b2='VLZCD9DJIXQUQB8IHU' where id=3; -update noar tt set v0='ZRF2L32JJF2MVFF26GEZ5E6RMCH26KRY' where id=4; -update noar ti set v0='ZRF2L32JJF2MVFF26GEZ5E6RMCH26KRY' where id=4; -update noar tt set b0='T1V15H7QOGXNTN08G4QUYK' where id=4; -update noar ti set b0='T1V15H7QOGXNTN08G4QUYK' where id=4; -update noar tt set v0='3' where id=4; -update noar ti set v0='3' where id=4; -update noar tt set b1='OM' where id=4; -update noar ti set b1='OM' where id=4; -update noar tt set v0='G1GAOWQ5LFA7ECZU0M9JOFLB2CPD' where id=4; -update noar ti set v0='G1GAOWQ5LFA7ECZU0M9JOFLB2CPD' where id=4; -update noar tt set b2='1WA1R' where id=4; -update noar ti set b2='1WA1R' where id=4; -update noar tt set v0='XN8X2MWVMMN' where id=5; -update noar ti set v0='XN8X2MWVMMN' where id=5; -update noar tt set b0='S6' where id=5; -update noar ti set b0='S6' where id=5; -update noar tt set v0='N8BGHSTLQIERFZ3ZN6' where id=5; -update noar ti set v0='N8BGHSTLQIERFZ3ZN6' where id=5; -update noar tt set b1='QQZBHL2X' where id=5; -update noar ti set b1='QQZBHL2X' where id=5; -update noar tt set v0='E4PE1DWIG' where id=5; -update noar ti set v0='E4PE1DWIG' where id=5; -update noar tt set b2='D0TRPD5U6R8LGPI99HJLO' where id=5; -update noar ti set b2='D0TRPD5U6R8LGPI99HJLO' where id=5; -update noar tt set v0='PJO8GX48CGMWHDIYNCIVADLZ3' where id=6; -update noar ti set v0='PJO8GX48CGMWHDIYNCIVADLZ3' where id=6; -update noar tt set b0='DUORPEZ' where id=6; -update noar ti set b0='DUORPEZ' where id=6; -update noar tt set v0='1MF' where id=6; -update noar ti set v0='1MF' where id=6; -update noar tt set b1='PCMBLJ9IP3U' where id=6; -update noar ti set b1='PCMBLJ9IP3U' where id=6; -update noar tt set v0='UHS2GSZRDOD1' where id=6; -update noar ti set v0='UHS2GSZRDOD1' where id=6; -update noar tt set b2='KMT54' where id=6; -update noar ti set b2='KMT54' where id=6; -update noar tt set v0='KSP2MC0KU0E8XEWN8C3BKDTY' where id=7; -update noar ti set v0='KSP2MC0KU0E8XEWN8C3BKDTY' where id=7; -update noar tt set b0='0JODYLCAKROICLOGQU35QS2VLAZD' where id=7; -update noar ti set b0='0JODYLCAKROICLOGQU35QS2VLAZD' where id=7; -update noar tt set v0='AX6PQEXI' where id=7; -update noar ti set v0='AX6PQEXI' where id=7; -update noar tt set b1='ZACOTHOFOXWPNGEZH8GCLL99V4QWQQ' where id=7; -update noar ti set b1='ZACOTHOFOXWPNGEZH8GCLL99V4QWQQ' where id=7; -update noar tt set v0='MV6202' where id=7; -update noar ti set v0='MV6202' where id=7; -update noar tt set b2='6MX7QGQ9ZBR5FAAOIPW' where id=7; -update noar ti set b2='6MX7QGQ9ZBR5FAAOIPW' where id=7; -update noar tt set v0='MS5LUG5UJMW6645IVFRNO5D7' where id=8; -update noar ti set v0='MS5LUG5UJMW6645IVFRNO5D7' where id=8; -update noar tt set b0='DUE20VL4BKCM1DOA' where id=8; -update noar ti set b0='DUE20VL4BKCM1DOA' where id=8; -update noar tt set v0='CFC7LKM2ENK2O9PHEX68S1' where id=8; -update noar ti set v0='CFC7LKM2ENK2O9PHEX68S1' where id=8; -update noar tt set b1='76R8B' where id=8; -update noar ti set b1='76R8B' where id=8; -update noar tt set v0='9' where id=8; -update noar ti set v0='9' where id=8; -update noar tt set b2='ROLL4' where id=8; -update noar ti set b2='ROLL4' where id=8; -update noar tt set v0='PEHLZI62WAT69PSI5WXAC4HV6SL9' where id=9; -update noar ti set v0='PEHLZI62WAT69PSI5WXAC4HV6SL9' where id=9; -update noar tt set b0='LLI97IS2BN12SRQ4P39AMY8AP5HZZ' where id=9; -update noar ti set b0='LLI97IS2BN12SRQ4P39AMY8AP5HZZ' where id=9; -update noar tt set v0='KMNY4J2' where id=9; -update noar ti set v0='KMNY4J2' where id=9; -update noar tt set b1='U' where id=9; -update noar ti set b1='U' where id=9; -update noar tt set v0='XJJFD395S96WW' where id=9; -update noar ti set v0='XJJFD395S96WW' where id=9; -update noar tt set b2='3JB2PRX38M8' where id=9; -update noar ti set b2='3JB2PRX38M8' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -v0 varchar(256) not null, -b0 tinyblob not null, -b1 tinyblob not null, -b2 mediumblob not null -) engine=tokudb; -insert into tt values (1,'','','',''); -insert into tt values (2,'','','',''); -insert into tt values (3,'','','',''); -insert into tt values (4,'','','',''); -insert into tt values (5,'','','',''); -insert into tt values (6,'','','',''); -insert into tt values (7,'','','',''); -insert into tt values (8,'','','',''); -insert into tt values (9,'','','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='PTNQA1IMDZO703XIRJEWM32KI2' where id=1; -update noar ti set v0='PTNQA1IMDZO703XIRJEWM32KI2' where id=1; -update noar tt set b0='CO' where id=1; -update noar ti set b0='CO' where id=1; -update noar tt set v0='CK5OZJ4EG13COOH2VLOP93C' where id=1; -update noar ti set v0='CK5OZJ4EG13COOH2VLOP93C' where id=1; -update noar tt set b1='2D6YAWC2N680EZ2X1HSSI' where id=1; -update noar ti set b1='2D6YAWC2N680EZ2X1HSSI' where id=1; -update noar tt set v0='PGXGLDH6' where id=1; -update noar ti set v0='PGXGLDH6' where id=1; -update noar tt set b2='N7ENXC3CL405VH4ZJAX7GQQ2T' where id=1; -update noar ti set b2='N7ENXC3CL405VH4ZJAX7GQQ2T' where id=1; -update noar tt set v0='EN' where id=2; -update noar ti set v0='EN' where id=2; -update noar tt set b0='40C2D1BHDNZ7YSW9XHM0A' where id=2; -update noar ti set b0='40C2D1BHDNZ7YSW9XHM0A' where id=2; -update noar tt set v0='0C04FJ4QVJSYV7KAQ5BOT59' where id=2; -update noar ti set v0='0C04FJ4QVJSYV7KAQ5BOT59' where id=2; -update noar tt set b1='V8YBAHJVN5PR3899Y5A2Z' where id=2; -update noar ti set b1='V8YBAHJVN5PR3899Y5A2Z' where id=2; -update noar tt set v0='CSGD5O0U' where id=2; -update noar ti set v0='CSGD5O0U' where id=2; -update noar tt set b2='624HB4TEY84KA8FRPY9TK9F52UCUQTQ' where id=2; -update noar ti set b2='624HB4TEY84KA8FRPY9TK9F52UCUQTQ' where id=2; -update noar tt set v0='OJTS9GGB7QSVWY4O94Q4AS' where id=3; -update noar ti set v0='OJTS9GGB7QSVWY4O94Q4AS' where id=3; -update noar tt set b0='5W6AOCZGNT6OXLLL981MS14NOT0VBL' where id=3; -update noar ti set b0='5W6AOCZGNT6OXLLL981MS14NOT0VBL' where id=3; -update noar tt set v0='AEUEDXZZH7YSJ' where id=3; -update noar ti set v0='AEUEDXZZH7YSJ' where id=3; -update noar tt set b1='1MU324K3F8PBIT81N2LBHOA985G6' where id=3; -update noar ti set b1='1MU324K3F8PBIT81N2LBHOA985G6' where id=3; -update noar tt set v0='5AYUCHPGG7FM8H5R22F6YU2SD0AWPK17' where id=3; -update noar ti set v0='5AYUCHPGG7FM8H5R22F6YU2SD0AWPK17' where id=3; -update noar tt set b2='0XN2OWNY' where id=3; -update noar ti set b2='0XN2OWNY' where id=3; -update noar tt set v0='U9FVQ6AWH488LMGO76KJ0CXVGKI4' where id=4; -update noar ti set v0='U9FVQ6AWH488LMGO76KJ0CXVGKI4' where id=4; -update noar tt set b0='G6XIF7E0A1H994KFAN3W8XYE' where id=4; -update noar ti set b0='G6XIF7E0A1H994KFAN3W8XYE' where id=4; -update noar tt set v0='GAJGMKN1L0N3KLBRJJ97E2DHHSCH2' where id=4; -update noar ti set v0='GAJGMKN1L0N3KLBRJJ97E2DHHSCH2' where id=4; -update noar tt set b1='DMDB2AHS9QWRRR45PRKTP766WYMN3KCF' where id=4; -update noar ti set b1='DMDB2AHS9QWRRR45PRKTP766WYMN3KCF' where id=4; -update noar tt set v0='YPR' where id=4; -update noar ti set v0='YPR' where id=4; -update noar tt set b2='RGIGJ4QK2MQYOC' where id=4; -update noar ti set b2='RGIGJ4QK2MQYOC' where id=4; -update noar tt set v0='06ZTWJ731' where id=5; -update noar ti set v0='06ZTWJ731' where id=5; -update noar tt set b0='US8XNVFU31F3IYC41Q6TVWYFGQ' where id=5; -update noar ti set b0='US8XNVFU31F3IYC41Q6TVWYFGQ' where id=5; -update noar tt set v0='2XSXJIVI1HQ76G1M5INKUCSI2XC7JY1' where id=5; -update noar ti set v0='2XSXJIVI1HQ76G1M5INKUCSI2XC7JY1' where id=5; -update noar tt set b1='X3ZU1V4S' where id=5; -update noar ti set b1='X3ZU1V4S' where id=5; -update noar tt set v0='DO' where id=5; -update noar ti set v0='DO' where id=5; -update noar tt set b2='BIF337KCVTFZOUT0HUOBCC' where id=5; -update noar ti set b2='BIF337KCVTFZOUT0HUOBCC' where id=5; -update noar tt set v0='52UPGW2LTPNUDA1RO' where id=6; -update noar ti set v0='52UPGW2LTPNUDA1RO' where id=6; -update noar tt set b0='8YTXBN7' where id=6; -update noar ti set b0='8YTXBN7' where id=6; -update noar tt set v0='Q4BKXWB' where id=6; -update noar ti set v0='Q4BKXWB' where id=6; -update noar tt set b1='WHA0' where id=6; -update noar ti set b1='WHA0' where id=6; -update noar tt set v0='U' where id=6; -update noar ti set v0='U' where id=6; -update noar tt set b2='PJ' where id=6; -update noar ti set b2='PJ' where id=6; -update noar tt set v0='T3JI7SO0XUHSNUVE30ZDQ1SIQU62' where id=7; -update noar ti set v0='T3JI7SO0XUHSNUVE30ZDQ1SIQU62' where id=7; -update noar tt set b0='UJX21AMMV02QV3JN6J6V' where id=7; -update noar ti set b0='UJX21AMMV02QV3JN6J6V' where id=7; -update noar tt set v0='6DHG' where id=7; -update noar ti set v0='6DHG' where id=7; -update noar tt set b1='4K36Y6HSW93DCV2GUOC' where id=7; -update noar ti set b1='4K36Y6HSW93DCV2GUOC' where id=7; -update noar tt set v0='G' where id=7; -update noar ti set v0='G' where id=7; -update noar tt set b2='CQCO2J5IJCUYLALOVW4YT6IEHD' where id=7; -update noar ti set b2='CQCO2J5IJCUYLALOVW4YT6IEHD' where id=7; -update noar tt set v0='CCSGEXYJS9J6' where id=8; -update noar ti set v0='CCSGEXYJS9J6' where id=8; -update noar tt set b0='EU6TW4FZZ8418L2' where id=8; -update noar ti set b0='EU6TW4FZZ8418L2' where id=8; -update noar tt set v0='2H' where id=8; -update noar ti set v0='2H' where id=8; -update noar tt set b1='MJ2QK8HYA2K5J9JD1T601ALIONVE' where id=8; -update noar ti set b1='MJ2QK8HYA2K5J9JD1T601ALIONVE' where id=8; -update noar tt set v0='NLCMGE3927F0GKK5CVT' where id=8; -update noar ti set v0='NLCMGE3927F0GKK5CVT' where id=8; -update noar tt set b2='QDR6RWQ3A4CWFPF66VHOCT' where id=8; -update noar ti set b2='QDR6RWQ3A4CWFPF66VHOCT' where id=8; -update noar tt set v0='ZCP70WPC' where id=9; -update noar ti set v0='ZCP70WPC' where id=9; -update noar tt set b0='VVS47EPKEIC5I2E2X' where id=9; -update noar ti set b0='VVS47EPKEIC5I2E2X' where id=9; -update noar tt set v0='N6H0XFLLP2Y3TK4QP7KQ3FF8NH' where id=9; -update noar ti set v0='N6H0XFLLP2Y3TK4QP7KQ3FF8NH' where id=9; -update noar tt set b1='4' where id=9; -update noar ti set b1='4' where id=9; -update noar tt set v0='GBC7XMED380WX1FKUSXM0A5OC' where id=9; -update noar ti set v0='GBC7XMED380WX1FKUSXM0A5OC' where id=9; -update noar tt set b2='P22STMN6ZZIYW9YJYLLHK3QS' where id=9; -update noar ti set b2='P22STMN6ZZIYW9YJYLLHK3QS' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -v0 varchar(32) null, -b0 tinyblob null, -b1 tinyblob null, -b2 longblob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='PA5HDSL85G26HPH9Z4H7CD9H7IO47' where id=1; -update noar ti set v0='PA5HDSL85G26HPH9Z4H7CD9H7IO47' where id=1; -update noar tt set b0='4E' where id=1; -update noar ti set b0='4E' where id=1; -update noar tt set v0='0C7FT2WFCN6ZU5I6JJOUNC2KJS' where id=1; -update noar ti set v0='0C7FT2WFCN6ZU5I6JJOUNC2KJS' where id=1; -update noar tt set b1='3MKECHHBBV2XE4KC7' where id=1; -update noar ti set b1='3MKECHHBBV2XE4KC7' where id=1; -update noar tt set v0='JSWP5EI7HWUTVDSIOORYKUM1SKR3VE' where id=1; -update noar ti set v0='JSWP5EI7HWUTVDSIOORYKUM1SKR3VE' where id=1; -update noar tt set b2='ZXDH2SQC' where id=1; -update noar ti set b2='ZXDH2SQC' where id=1; -update noar tt set v0='LIR55AI811KBFOT' where id=2; -update noar ti set v0='LIR55AI811KBFOT' where id=2; -update noar tt set b0='V6N3ULOBKQ4OE7RTE9FV5QX2ME' where id=2; -update noar ti set b0='V6N3ULOBKQ4OE7RTE9FV5QX2ME' where id=2; -update noar tt set v0='VY9VF3MVWZHL' where id=2; -update noar ti set v0='VY9VF3MVWZHL' where id=2; -update noar tt set b1='URPT2INKAZC' where id=2; -update noar ti set b1='URPT2INKAZC' where id=2; -update noar tt set v0='4E5F0A7UOIAFQCP7QOXNISWT93P3' where id=2; -update noar ti set v0='4E5F0A7UOIAFQCP7QOXNISWT93P3' where id=2; -update noar tt set b2='KP3CWJRRKM' where id=2; -update noar ti set b2='KP3CWJRRKM' where id=2; -update noar tt set v0='OEEZNDJRSYVWUR044UXUW70JKP7O' where id=3; -update noar ti set v0='OEEZNDJRSYVWUR044UXUW70JKP7O' where id=3; -update noar tt set b0='YXOP3' where id=3; -update noar ti set b0='YXOP3' where id=3; -update noar tt set v0='VYUVROLL2N' where id=3; -update noar ti set v0='VYUVROLL2N' where id=3; -update noar tt set b1='SMCFO14L1JD' where id=3; -update noar ti set b1='SMCFO14L1JD' where id=3; -update noar tt set v0='8TTRLRR8I' where id=3; -update noar ti set v0='8TTRLRR8I' where id=3; -update noar tt set b2='D' where id=3; -update noar ti set b2='D' where id=3; -update noar tt set v0='JY94NO57XOO7NVQ6I0DL8RBXI6EL' where id=4; -update noar ti set v0='JY94NO57XOO7NVQ6I0DL8RBXI6EL' where id=4; -update noar tt set b0='0E7RYLJYFGTT' where id=4; -update noar ti set b0='0E7RYLJYFGTT' where id=4; -update noar tt set v0='83NPVOMAKLM6SQ8ZMFU084DTO8' where id=4; -update noar ti set v0='83NPVOMAKLM6SQ8ZMFU084DTO8' where id=4; -update noar tt set b1='SYXXHBSWKRC5LR7H5AOHFJR9C' where id=4; -update noar ti set b1='SYXXHBSWKRC5LR7H5AOHFJR9C' where id=4; -update noar tt set v0='U5A6416LF4RA1E25EOU17TJ' where id=4; -update noar ti set v0='U5A6416LF4RA1E25EOU17TJ' where id=4; -update noar tt set b2='OGIJS9R640ZGW28N9YBQVYRDUZDPU7F' where id=4; -update noar ti set b2='OGIJS9R640ZGW28N9YBQVYRDUZDPU7F' where id=4; -update noar tt set v0='VSD9834MIY7LV' where id=5; -update noar ti set v0='VSD9834MIY7LV' where id=5; -update noar tt set b0='NLDZJGLZUMIY3' where id=5; -update noar ti set b0='NLDZJGLZUMIY3' where id=5; -update noar tt set v0='DY' where id=5; -update noar ti set v0='DY' where id=5; -update noar tt set b1='2ZLUZ8ZBC9H7PZ8KFIZ' where id=5; -update noar ti set b1='2ZLUZ8ZBC9H7PZ8KFIZ' where id=5; -update noar tt set v0='X808' where id=5; -update noar ti set v0='X808' where id=5; -update noar tt set b2='VXBFZNP6JRVZJ4N0' where id=5; -update noar ti set b2='VXBFZNP6JRVZJ4N0' where id=5; -update noar tt set v0='JGTZ186QPSSOU1GMQNV5MZ8UTRA6RC' where id=6; -update noar ti set v0='JGTZ186QPSSOU1GMQNV5MZ8UTRA6RC' where id=6; -update noar tt set b0='DC' where id=6; -update noar ti set b0='DC' where id=6; -update noar tt set v0='8NWQW3MZGGD7TBDY0HF9PE70LW1TM8T9' where id=6; -update noar ti set v0='8NWQW3MZGGD7TBDY0HF9PE70LW1TM8T9' where id=6; -update noar tt set b1='M' where id=6; -update noar ti set b1='M' where id=6; -update noar tt set v0='H2Y69AOEK' where id=6; -update noar ti set v0='H2Y69AOEK' where id=6; -update noar tt set b2='D1E8BHRQU55S2Y70VM3YGGXXOGU5FJL' where id=6; -update noar ti set b2='D1E8BHRQU55S2Y70VM3YGGXXOGU5FJL' where id=6; -update noar tt set v0='EHLT2111EWVF29Y74N1C' where id=7; -update noar ti set v0='EHLT2111EWVF29Y74N1C' where id=7; -update noar tt set b0='JTDPW0UKFVJ2VWCKWRA9PXQ' where id=7; -update noar ti set b0='JTDPW0UKFVJ2VWCKWRA9PXQ' where id=7; -update noar tt set v0='ZMFMGOBEK8QCDH97LL0PLQ86BU3FG06S' where id=7; -update noar ti set v0='ZMFMGOBEK8QCDH97LL0PLQ86BU3FG06S' where id=7; -update noar tt set b1='6SW7' where id=7; -update noar ti set b1='6SW7' where id=7; -update noar tt set v0='6' where id=7; -update noar ti set v0='6' where id=7; -update noar tt set b2='K1DJQQML2WMCQLO8IGO0' where id=7; -update noar ti set b2='K1DJQQML2WMCQLO8IGO0' where id=7; -update noar tt set v0='CO0FTRTBQUSTKNUCI2284SZTMCNCIN0K' where id=8; -update noar ti set v0='CO0FTRTBQUSTKNUCI2284SZTMCNCIN0K' where id=8; -update noar tt set b0='Z5NJ081B4V8F7G8OL' where id=8; -update noar ti set b0='Z5NJ081B4V8F7G8OL' where id=8; -update noar tt set v0='LSFGEHGIP39Z' where id=8; -update noar ti set v0='LSFGEHGIP39Z' where id=8; -update noar tt set b1='1UYVW0IJBF9WWXKOO97HCTG5WFHBA' where id=8; -update noar ti set b1='1UYVW0IJBF9WWXKOO97HCTG5WFHBA' where id=8; -update noar tt set v0='PIOKCE6G' where id=8; -update noar ti set v0='PIOKCE6G' where id=8; -update noar tt set b2='E224G' where id=8; -update noar ti set b2='E224G' where id=8; -update noar tt set v0='KSG' where id=9; -update noar ti set v0='KSG' where id=9; -update noar tt set b0='5RZOA8UX408MUZIJ71XTY4H2H' where id=9; -update noar ti set b0='5RZOA8UX408MUZIJ71XTY4H2H' where id=9; -update noar tt set v0='623TF4UB5102W89M1LKD9IWAUV7' where id=9; -update noar ti set v0='623TF4UB5102W89M1LKD9IWAUV7' where id=9; -update noar tt set b1='287AV582B2LBT0ZK167WS38' where id=9; -update noar ti set b1='287AV582B2LBT0ZK167WS38' where id=9; -update noar tt set v0='N5VNTD1L2JPP1CNR5Z43WH2TRVB2' where id=9; -update noar ti set v0='N5VNTD1L2JPP1CNR5Z43WH2TRVB2' where id=9; -update noar tt set b2='37KMQ8A030C7U62D9JZA576990' where id=9; -update noar ti set b2='37KMQ8A030C7U62D9JZA576990' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -v0 varchar(256) null, -b0 tinyblob null, -b1 tinyblob null, -b2 longblob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='JQ5H9' where id=1; -update noar ti set v0='JQ5H9' where id=1; -update noar tt set b0='VJPD0YVFG' where id=1; -update noar ti set b0='VJPD0YVFG' where id=1; -update noar tt set v0='TG21O8USE' where id=1; -update noar ti set v0='TG21O8USE' where id=1; -update noar tt set b1='6G8NCFVDGKUKASL088V3' where id=1; -update noar ti set b1='6G8NCFVDGKUKASL088V3' where id=1; -update noar tt set v0='ECY522B2EVTEFA3YWTMQ7IJT1WAN0YZX' where id=1; -update noar ti set v0='ECY522B2EVTEFA3YWTMQ7IJT1WAN0YZX' where id=1; -update noar tt set b2='RGUOOSC9F0U5KG' where id=1; -update noar ti set b2='RGUOOSC9F0U5KG' where id=1; -update noar tt set v0='AGM80' where id=2; -update noar ti set v0='AGM80' where id=2; -update noar tt set b0='3Z2F4H7KGT8COPM' where id=2; -update noar ti set b0='3Z2F4H7KGT8COPM' where id=2; -update noar tt set v0='4SJZW' where id=2; -update noar ti set v0='4SJZW' where id=2; -update noar tt set b1='K18GZ3H8T185BSIJ6F8' where id=2; -update noar ti set b1='K18GZ3H8T185BSIJ6F8' where id=2; -update noar tt set v0='GSAV7U0MXXY3JK2UW6' where id=2; -update noar ti set v0='GSAV7U0MXXY3JK2UW6' where id=2; -update noar tt set b2='2FL4SWZ15Y4VZLD8J0M9X41FS87ZYO' where id=2; -update noar ti set b2='2FL4SWZ15Y4VZLD8J0M9X41FS87ZYO' where id=2; -update noar tt set v0='K1DGS28E' where id=3; -update noar ti set v0='K1DGS28E' where id=3; -update noar tt set b0='X01UMRXH0ZKUP1W11DW' where id=3; -update noar ti set b0='X01UMRXH0ZKUP1W11DW' where id=3; -update noar tt set v0='7R8MH6TTJA03' where id=3; -update noar ti set v0='7R8MH6TTJA03' where id=3; -update noar tt set b1='XOB7YLIV8WJWKX1W' where id=3; -update noar ti set b1='XOB7YLIV8WJWKX1W' where id=3; -update noar tt set v0='HHJY' where id=3; -update noar ti set v0='HHJY' where id=3; -update noar tt set b2='YQQ4S2ZPJAGT8SQT45Z6AHAKFBD' where id=3; -update noar ti set b2='YQQ4S2ZPJAGT8SQT45Z6AHAKFBD' where id=3; -update noar tt set v0='VR3ZLY04Q0Z' where id=4; -update noar ti set v0='VR3ZLY04Q0Z' where id=4; -update noar tt set b0='NFFIOVEB1M7ESNIMYUNYI0AY7R' where id=4; -update noar ti set b0='NFFIOVEB1M7ESNIMYUNYI0AY7R' where id=4; -update noar tt set v0='G73TFDLWFTTP4UU43KOTJT17L2ZHQBO1' where id=4; -update noar ti set v0='G73TFDLWFTTP4UU43KOTJT17L2ZHQBO1' where id=4; -update noar tt set b1='66N5GUY2DRKB7KQ8HKPU5T1JWW4VJMI' where id=4; -update noar ti set b1='66N5GUY2DRKB7KQ8HKPU5T1JWW4VJMI' where id=4; -update noar tt set v0='H1PPXV3OG64MVUT1Z' where id=4; -update noar ti set v0='H1PPXV3OG64MVUT1Z' where id=4; -update noar tt set b2='VVT5D8VX' where id=4; -update noar ti set b2='VVT5D8VX' where id=4; -update noar tt set v0='VLHKW4GFZ2921QC' where id=5; -update noar ti set v0='VLHKW4GFZ2921QC' where id=5; -update noar tt set b0='CA1EO25J5QPFLG6OV00W1UIMK9Y0K74T' where id=5; -update noar ti set b0='CA1EO25J5QPFLG6OV00W1UIMK9Y0K74T' where id=5; -update noar tt set v0='KE8N4FOZX1BEP4IZSLYM7QPHB' where id=5; -update noar ti set v0='KE8N4FOZX1BEP4IZSLYM7QPHB' where id=5; -update noar tt set b1='5KW8W8MRG21D9' where id=5; -update noar ti set b1='5KW8W8MRG21D9' where id=5; -update noar tt set v0='5L9IMI8P' where id=5; -update noar ti set v0='5L9IMI8P' where id=5; -update noar tt set b2='NTQP9YOD4ILXV4M0JX62ZRTTPEXSV' where id=5; -update noar ti set b2='NTQP9YOD4ILXV4M0JX62ZRTTPEXSV' where id=5; -update noar tt set v0='N3IHQ1LFI3IKAKJ5JONX' where id=6; -update noar ti set v0='N3IHQ1LFI3IKAKJ5JONX' where id=6; -update noar tt set b0='4QEAQ0YSIDXO0G0N9X' where id=6; -update noar ti set b0='4QEAQ0YSIDXO0G0N9X' where id=6; -update noar tt set v0='UNKSY9EZAVCY9P' where id=6; -update noar ti set v0='UNKSY9EZAVCY9P' where id=6; -update noar tt set b1='IRBV92X76W9HTGV708EN' where id=6; -update noar ti set b1='IRBV92X76W9HTGV708EN' where id=6; -update noar tt set v0='1C' where id=6; -update noar ti set v0='1C' where id=6; -update noar tt set b2='JMZC6IVL6' where id=6; -update noar ti set b2='JMZC6IVL6' where id=6; -update noar tt set v0='NS5YX6DAGKEA3NCKF5IY33WK' where id=7; -update noar ti set v0='NS5YX6DAGKEA3NCKF5IY33WK' where id=7; -update noar tt set b0='8IHLZWAIV39R0VH34F' where id=7; -update noar ti set b0='8IHLZWAIV39R0VH34F' where id=7; -update noar tt set v0='3SMM9GOIVSZIWHL' where id=7; -update noar ti set v0='3SMM9GOIVSZIWHL' where id=7; -update noar tt set b1='2R10ZK23VDA2' where id=7; -update noar ti set b1='2R10ZK23VDA2' where id=7; -update noar tt set v0='SEU60PG9PS6J75J' where id=7; -update noar ti set v0='SEU60PG9PS6J75J' where id=7; -update noar tt set b2='8Z0CPGVRZXVGNE55BM4RHV4' where id=7; -update noar ti set b2='8Z0CPGVRZXVGNE55BM4RHV4' where id=7; -update noar tt set v0='BZY8XN1ZSJ0RGBZMZAP6M2' where id=8; -update noar ti set v0='BZY8XN1ZSJ0RGBZMZAP6M2' where id=8; -update noar tt set b0='Q' where id=8; -update noar ti set b0='Q' where id=8; -update noar tt set v0='8SEL11YFSI6U' where id=8; -update noar ti set v0='8SEL11YFSI6U' where id=8; -update noar tt set b1='3ZI267XHVDWH0' where id=8; -update noar ti set b1='3ZI267XHVDWH0' where id=8; -update noar tt set v0='OVC6B8M7UVBAG0O6E' where id=8; -update noar ti set v0='OVC6B8M7UVBAG0O6E' where id=8; -update noar tt set b2='TPNBIOVDC' where id=8; -update noar ti set b2='TPNBIOVDC' where id=8; -update noar tt set v0='KDT6Z5NDC888GFUH42FMM56A' where id=9; -update noar ti set v0='KDT6Z5NDC888GFUH42FMM56A' where id=9; -update noar tt set b0='A' where id=9; -update noar ti set b0='A' where id=9; -update noar tt set v0='BT80PH367VLYE447H0SZXE' where id=9; -update noar ti set v0='BT80PH367VLYE447H0SZXE' where id=9; -update noar tt set b1='XIVOTV6QWRN16VZGN39PWXCOY19PYL2' where id=9; -update noar ti set b1='XIVOTV6QWRN16VZGN39PWXCOY19PYL2' where id=9; -update noar tt set v0='S07ZFDJ8M' where id=9; -update noar ti set v0='S07ZFDJ8M' where id=9; -update noar tt set b2='00K8RL' where id=9; -update noar ti set b2='00K8RL' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -v0 varchar(32) not null, -b0 tinyblob not null, -b1 tinyblob not null, -b2 longblob not null -) engine=tokudb; -insert into tt values (1,'','','',''); -insert into tt values (2,'','','',''); -insert into tt values (3,'','','',''); -insert into tt values (4,'','','',''); -insert into tt values (5,'','','',''); -insert into tt values (6,'','','',''); -insert into tt values (7,'','','',''); -insert into tt values (8,'','','',''); -insert into tt values (9,'','','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='MFE0U1AU34A7Q6LXIYXVZ9F' where id=1; -update noar ti set v0='MFE0U1AU34A7Q6LXIYXVZ9F' where id=1; -update noar tt set b0='I9B' where id=1; -update noar ti set b0='I9B' where id=1; -update noar tt set v0='XJ608V0L9RT41XBMPHMHQ2' where id=1; -update noar ti set v0='XJ608V0L9RT41XBMPHMHQ2' where id=1; -update noar tt set b1='4XFWY95F8' where id=1; -update noar ti set b1='4XFWY95F8' where id=1; -update noar tt set v0='QNXPNBW3KX88ML' where id=1; -update noar ti set v0='QNXPNBW3KX88ML' where id=1; -update noar tt set b2='BQJJX0V071AC8K' where id=1; -update noar ti set b2='BQJJX0V071AC8K' where id=1; -update noar tt set v0='LKRKMACP7HLZKBJIMXZD5' where id=2; -update noar ti set v0='LKRKMACP7HLZKBJIMXZD5' where id=2; -update noar tt set b0='U85GFW' where id=2; -update noar ti set b0='U85GFW' where id=2; -update noar tt set v0='E2OU1YDJ257IYFW41G' where id=2; -update noar ti set v0='E2OU1YDJ257IYFW41G' where id=2; -update noar tt set b1='IFUNURYM892' where id=2; -update noar ti set b1='IFUNURYM892' where id=2; -update noar tt set v0='H2SWLM2YA147BQO4F010Q9V' where id=2; -update noar ti set v0='H2SWLM2YA147BQO4F010Q9V' where id=2; -update noar tt set b2='WIQMLLAS3SAWN2TSE1YN' where id=2; -update noar ti set b2='WIQMLLAS3SAWN2TSE1YN' where id=2; -update noar tt set v0='1IJS0H7O4FXRK5OPS33DCHW' where id=3; -update noar ti set v0='1IJS0H7O4FXRK5OPS33DCHW' where id=3; -update noar tt set b0='MJLTP7CCK' where id=3; -update noar ti set b0='MJLTP7CCK' where id=3; -update noar tt set v0='HT0WZ8VBZCFO3JB7OF9XIDJOUFZHUA4' where id=3; -update noar ti set v0='HT0WZ8VBZCFO3JB7OF9XIDJOUFZHUA4' where id=3; -update noar tt set b1='L' where id=3; -update noar ti set b1='L' where id=3; -update noar tt set v0='RB9TQ5E4MOVUXXH3TS5R19MFGYCI7' where id=3; -update noar ti set v0='RB9TQ5E4MOVUXXH3TS5R19MFGYCI7' where id=3; -update noar tt set b2='H602GSGVE11Z3K2S9YJ' where id=3; -update noar ti set b2='H602GSGVE11Z3K2S9YJ' where id=3; -update noar tt set v0='4A2TBMV0DYNQF1SI1LED7Q5' where id=4; -update noar ti set v0='4A2TBMV0DYNQF1SI1LED7Q5' where id=4; -update noar tt set b0='BWOZFPIM7I2WLML23K0XEW85HX39JDW0' where id=4; -update noar ti set b0='BWOZFPIM7I2WLML23K0XEW85HX39JDW0' where id=4; -update noar tt set v0='THZB1B767B1WXPX2SMJGR' where id=4; -update noar ti set v0='THZB1B767B1WXPX2SMJGR' where id=4; -update noar tt set b1='6EFXT6GV9A4EN5RBPTW' where id=4; -update noar ti set b1='6EFXT6GV9A4EN5RBPTW' where id=4; -update noar tt set v0='OH4QKME4A3I1ZWVU' where id=4; -update noar ti set v0='OH4QKME4A3I1ZWVU' where id=4; -update noar tt set b2='6POBQ0XQ4V99HOGF3EX' where id=4; -update noar ti set b2='6POBQ0XQ4V99HOGF3EX' where id=4; -update noar tt set v0='TQLZX22AZ0N5QLI2L4DF70DY6' where id=5; -update noar ti set v0='TQLZX22AZ0N5QLI2L4DF70DY6' where id=5; -update noar tt set b0='H579V6W2NLZ0US' where id=5; -update noar ti set b0='H579V6W2NLZ0US' where id=5; -update noar tt set v0='9H8T6C41BPRR6CEZ' where id=5; -update noar ti set v0='9H8T6C41BPRR6CEZ' where id=5; -update noar tt set b1='XHDDL4RBY' where id=5; -update noar ti set b1='XHDDL4RBY' where id=5; -update noar tt set v0='A9FPDC' where id=5; -update noar ti set v0='A9FPDC' where id=5; -update noar tt set b2='8I6XV1E4I8VYCAVGY3MAEIHOCTZR2' where id=5; -update noar ti set b2='8I6XV1E4I8VYCAVGY3MAEIHOCTZR2' where id=5; -update noar tt set v0='GMP6R0GSZVRZ7XIUH9JW' where id=6; -update noar ti set v0='GMP6R0GSZVRZ7XIUH9JW' where id=6; -update noar tt set b0='DJ6VDI94SZYD1PTRV1Q' where id=6; -update noar ti set b0='DJ6VDI94SZYD1PTRV1Q' where id=6; -update noar tt set v0='6UVE7U7KB3N88QIVHGW5K' where id=6; -update noar ti set v0='6UVE7U7KB3N88QIVHGW5K' where id=6; -update noar tt set b1='DH09NPRRI80X0JET058' where id=6; -update noar ti set b1='DH09NPRRI80X0JET058' where id=6; -update noar tt set v0='J8YL9WHZ' where id=6; -update noar ti set v0='J8YL9WHZ' where id=6; -update noar tt set b2='H086K8' where id=6; -update noar ti set b2='H086K8' where id=6; -update noar tt set v0='W' where id=7; -update noar ti set v0='W' where id=7; -update noar tt set b0='7FEYN21U26Y3N15XPZ8K' where id=7; -update noar ti set b0='7FEYN21U26Y3N15XPZ8K' where id=7; -update noar tt set v0='QRBZ9R4Y4C5ZBF0ZTAPD5VM' where id=7; -update noar ti set v0='QRBZ9R4Y4C5ZBF0ZTAPD5VM' where id=7; -update noar tt set b1='FHV' where id=7; -update noar ti set b1='FHV' where id=7; -update noar tt set v0='8YAR9NYYSH' where id=7; -update noar ti set v0='8YAR9NYYSH' where id=7; -update noar tt set b2='THYEBHUCV' where id=7; -update noar ti set b2='THYEBHUCV' where id=7; -update noar tt set v0='HAWMV4IUFD7CB0IPOSNTU7GDEJWB' where id=8; -update noar ti set v0='HAWMV4IUFD7CB0IPOSNTU7GDEJWB' where id=8; -update noar tt set b0='LDUCB3CG' where id=8; -update noar ti set b0='LDUCB3CG' where id=8; -update noar tt set v0='WJ5' where id=8; -update noar ti set v0='WJ5' where id=8; -update noar tt set b1='0EXXW5UNP5R4KES' where id=8; -update noar ti set b1='0EXXW5UNP5R4KES' where id=8; -update noar tt set v0='IGRNA25M0LDRWF3NBI9EMCEGQY2XV3' where id=8; -update noar ti set v0='IGRNA25M0LDRWF3NBI9EMCEGQY2XV3' where id=8; -update noar tt set b2='UWRL32W' where id=8; -update noar ti set b2='UWRL32W' where id=8; -update noar tt set v0='N8KOKS149ELTEKUB5XD' where id=9; -update noar ti set v0='N8KOKS149ELTEKUB5XD' where id=9; -update noar tt set b0='VE8GYS3SDA9Q79XGUV3W4VD8L9D2TES' where id=9; -update noar ti set b0='VE8GYS3SDA9Q79XGUV3W4VD8L9D2TES' where id=9; -update noar tt set v0='AGU7V0' where id=9; -update noar ti set v0='AGU7V0' where id=9; -update noar tt set b1='2H' where id=9; -update noar ti set b1='2H' where id=9; -update noar tt set v0='LMPMXXNXV8BV0M8WNG7PGEYMB6' where id=9; -update noar ti set v0='LMPMXXNXV8BV0M8WNG7PGEYMB6' where id=9; -update noar tt set b2='0SJDSWLS6WQES66ZRB36N' where id=9; -update noar ti set b2='0SJDSWLS6WQES66ZRB36N' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -v0 varchar(256) not null, -b0 tinyblob not null, -b1 tinyblob not null, -b2 longblob not null -) engine=tokudb; -insert into tt values (1,'','','',''); -insert into tt values (2,'','','',''); -insert into tt values (3,'','','',''); -insert into tt values (4,'','','',''); -insert into tt values (5,'','','',''); -insert into tt values (6,'','','',''); -insert into tt values (7,'','','',''); -insert into tt values (8,'','','',''); -insert into tt values (9,'','','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='F692FKM6I697RNL5RTVXA9U5KKTZ' where id=1; -update noar ti set v0='F692FKM6I697RNL5RTVXA9U5KKTZ' where id=1; -update noar tt set b0='U2V366L' where id=1; -update noar ti set b0='U2V366L' where id=1; -update noar tt set v0='RO8IQ9G6RNZIXXJMNC3MU9TBQQ' where id=1; -update noar ti set v0='RO8IQ9G6RNZIXXJMNC3MU9TBQQ' where id=1; -update noar tt set b1='UVLBQAUHI5457J1XYBBOJ5O6A' where id=1; -update noar ti set b1='UVLBQAUHI5457J1XYBBOJ5O6A' where id=1; -update noar tt set v0='JYJZL0HQ' where id=1; -update noar ti set v0='JYJZL0HQ' where id=1; -update noar tt set b2='ZV5E2Q' where id=1; -update noar ti set b2='ZV5E2Q' where id=1; -update noar tt set v0='6XYY2F3F2H3696EHSKI6LYLKI0U8' where id=2; -update noar ti set v0='6XYY2F3F2H3696EHSKI6LYLKI0U8' where id=2; -update noar tt set b0='2I9MPRXJ0PVE' where id=2; -update noar ti set b0='2I9MPRXJ0PVE' where id=2; -update noar tt set v0='DG7Q8GBEZNAAPD6G2U9E' where id=2; -update noar ti set v0='DG7Q8GBEZNAAPD6G2U9E' where id=2; -update noar tt set b1='VHK5FCLNCPVZ50TSJCYQXMSR' where id=2; -update noar ti set b1='VHK5FCLNCPVZ50TSJCYQXMSR' where id=2; -update noar tt set v0='Q04FYRPM11B7OB' where id=2; -update noar ti set v0='Q04FYRPM11B7OB' where id=2; -update noar tt set b2='L8D2DFDO7RG0I5NYKUJ0' where id=2; -update noar ti set b2='L8D2DFDO7RG0I5NYKUJ0' where id=2; -update noar tt set v0='4OGN013L2P3QNNKF6D8WAADM' where id=3; -update noar ti set v0='4OGN013L2P3QNNKF6D8WAADM' where id=3; -update noar tt set b0='G8NWUK5VM77D' where id=3; -update noar ti set b0='G8NWUK5VM77D' where id=3; -update noar tt set v0='IUF4K1' where id=3; -update noar ti set v0='IUF4K1' where id=3; -update noar tt set b1='Y8NL0QKZKR20FZUMURW82' where id=3; -update noar ti set b1='Y8NL0QKZKR20FZUMURW82' where id=3; -update noar tt set v0='3SILD5JTGORBCZO' where id=3; -update noar ti set v0='3SILD5JTGORBCZO' where id=3; -update noar tt set b2='6QTZW6II8H' where id=3; -update noar ti set b2='6QTZW6II8H' where id=3; -update noar tt set v0='V0ZVQNK' where id=4; -update noar ti set v0='V0ZVQNK' where id=4; -update noar tt set b0='IE2MQ8BA' where id=4; -update noar ti set b0='IE2MQ8BA' where id=4; -update noar tt set v0='9NFVPUUU8Y0226V' where id=4; -update noar ti set v0='9NFVPUUU8Y0226V' where id=4; -update noar tt set b1='TK' where id=4; -update noar ti set b1='TK' where id=4; -update noar tt set v0='13TASNX' where id=4; -update noar ti set v0='13TASNX' where id=4; -update noar tt set b2='53MIYZKCI2DJ28IYJ1HMKS0HR' where id=4; -update noar ti set b2='53MIYZKCI2DJ28IYJ1HMKS0HR' where id=4; -update noar tt set v0='U2R9IHN2UZ' where id=5; -update noar ti set v0='U2R9IHN2UZ' where id=5; -update noar tt set b0='5OQJY293U7ZYJAA2GMC4O8' where id=5; -update noar ti set b0='5OQJY293U7ZYJAA2GMC4O8' where id=5; -update noar tt set v0='PHZ5IGF43L8GWNZB0KE3E5YWZH2W' where id=5; -update noar ti set v0='PHZ5IGF43L8GWNZB0KE3E5YWZH2W' where id=5; -update noar tt set b1='RW38937LA8NQUPWTJDOR2GDP' where id=5; -update noar ti set b1='RW38937LA8NQUPWTJDOR2GDP' where id=5; -update noar tt set v0='S6VVM3KTX6ZXHUHXCVZFZPP' where id=5; -update noar ti set v0='S6VVM3KTX6ZXHUHXCVZFZPP' where id=5; -update noar tt set b2='UHS87PO53UMIW7CNWDKQ' where id=5; -update noar ti set b2='UHS87PO53UMIW7CNWDKQ' where id=5; -update noar tt set v0='WOKE' where id=6; -update noar ti set v0='WOKE' where id=6; -update noar tt set b0='YT5M' where id=6; -update noar ti set b0='YT5M' where id=6; -update noar tt set v0='5SSWY' where id=6; -update noar ti set v0='5SSWY' where id=6; -update noar tt set b1='Y5ILXOA8VE1J1YRIM13PD44S3Z1' where id=6; -update noar ti set b1='Y5ILXOA8VE1J1YRIM13PD44S3Z1' where id=6; -update noar tt set v0='PSLYZIJQJSH70J' where id=6; -update noar ti set v0='PSLYZIJQJSH70J' where id=6; -update noar tt set b2='CA0W9TOM6F48FL' where id=6; -update noar ti set b2='CA0W9TOM6F48FL' where id=6; -update noar tt set v0='2PLYSS9D7S3O0' where id=7; -update noar ti set v0='2PLYSS9D7S3O0' where id=7; -update noar tt set b0='MXCJGQA1BX2XLUI3A29FAV3XPO6Q' where id=7; -update noar ti set b0='MXCJGQA1BX2XLUI3A29FAV3XPO6Q' where id=7; -update noar tt set v0='TFPY09838AXP63Y6KPF9C0XB' where id=7; -update noar ti set v0='TFPY09838AXP63Y6KPF9C0XB' where id=7; -update noar tt set b1='TEU83WTUK9F8Q8LR6GDY' where id=7; -update noar ti set b1='TEU83WTUK9F8Q8LR6GDY' where id=7; -update noar tt set v0='10U' where id=7; -update noar ti set v0='10U' where id=7; -update noar tt set b2='AGNPLF' where id=7; -update noar ti set b2='AGNPLF' where id=7; -update noar tt set v0='02CK2WZCWR7R1L8DS95SZXJ7UID' where id=8; -update noar ti set v0='02CK2WZCWR7R1L8DS95SZXJ7UID' where id=8; -update noar tt set b0='Z3IB04' where id=8; -update noar ti set b0='Z3IB04' where id=8; -update noar tt set v0='9DNP7OU59Q0MUCM0LBY0' where id=8; -update noar ti set v0='9DNP7OU59Q0MUCM0LBY0' where id=8; -update noar tt set b1='QCDCAPLGC2Q6ILNUV80DO4' where id=8; -update noar ti set b1='QCDCAPLGC2Q6ILNUV80DO4' where id=8; -update noar tt set v0='3W1HR34U3KCNCR62ZWDONW52E01W5' where id=8; -update noar ti set v0='3W1HR34U3KCNCR62ZWDONW52E01W5' where id=8; -update noar tt set b2='THLPEVK' where id=8; -update noar ti set b2='THLPEVK' where id=8; -update noar tt set v0='5EYGBI1G87PYKW6' where id=9; -update noar ti set v0='5EYGBI1G87PYKW6' where id=9; -update noar tt set b0='ZN5KD5WYAV' where id=9; -update noar ti set b0='ZN5KD5WYAV' where id=9; -update noar tt set v0='ZXXZ' where id=9; -update noar ti set v0='ZXXZ' where id=9; -update noar tt set b1='DMBUCSC' where id=9; -update noar ti set b1='DMBUCSC' where id=9; -update noar tt set v0='VNH55Q7758O81ROLL' where id=9; -update noar ti set v0='VNH55Q7758O81ROLL' where id=9; -update noar tt set b2='47V1E44NMHHR8NGW3U1U' where id=9; -update noar ti set b2='47V1E44NMHHR8NGW3U1U' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -v0 varchar(32) null, -b0 tinyblob null, -b1 blob null, -b2 tinyblob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='8Y8TFU62EGVSJXPX1889WWZZP1R24SR' where id=1; -update noar ti set v0='8Y8TFU62EGVSJXPX1889WWZZP1R24SR' where id=1; -update noar tt set b0='JLBNRI5' where id=1; -update noar ti set b0='JLBNRI5' where id=1; -update noar tt set v0='657Z9C2VSIS8S0BOUS4GN' where id=1; -update noar ti set v0='657Z9C2VSIS8S0BOUS4GN' where id=1; -update noar tt set b1='17G04YWZ5X83GR3D5ANNYDVXWFRM0J' where id=1; -update noar ti set b1='17G04YWZ5X83GR3D5ANNYDVXWFRM0J' where id=1; -update noar tt set v0='NEFEBI8YKDD2FSYEBTYPMKB5QZ4JT0OA' where id=1; -update noar ti set v0='NEFEBI8YKDD2FSYEBTYPMKB5QZ4JT0OA' where id=1; -update noar tt set b2='Y698MNX25' where id=1; -update noar ti set b2='Y698MNX25' where id=1; -update noar tt set v0='B919JNLCE3Y5TKJH24QC' where id=2; -update noar ti set v0='B919JNLCE3Y5TKJH24QC' where id=2; -update noar tt set b0='WJTMA4LU6R' where id=2; -update noar ti set b0='WJTMA4LU6R' where id=2; -update noar tt set v0='S5Q0H' where id=2; -update noar ti set v0='S5Q0H' where id=2; -update noar tt set b1='RMSMCBZ0HUGNQZQDKLUZ' where id=2; -update noar ti set b1='RMSMCBZ0HUGNQZQDKLUZ' where id=2; -update noar tt set v0='S18' where id=2; -update noar ti set v0='S18' where id=2; -update noar tt set b2='25EU28RZNCXWJ0GLZ27I' where id=2; -update noar ti set b2='25EU28RZNCXWJ0GLZ27I' where id=2; -update noar tt set v0='LRTIUXQWHTJAFIIX7VS' where id=3; -update noar ti set v0='LRTIUXQWHTJAFIIX7VS' where id=3; -update noar tt set b0='Z85WMPL67BVWPXIOQJ7LNJ' where id=3; -update noar ti set b0='Z85WMPL67BVWPXIOQJ7LNJ' where id=3; -update noar tt set v0='6GH65KMSXC9NBH30PCPCD6OFXMG' where id=3; -update noar ti set v0='6GH65KMSXC9NBH30PCPCD6OFXMG' where id=3; -update noar tt set b1='L8RL5IDLMIFY0Q3' where id=3; -update noar ti set b1='L8RL5IDLMIFY0Q3' where id=3; -update noar tt set v0='XY4DVW5XZJ8' where id=3; -update noar ti set v0='XY4DVW5XZJ8' where id=3; -update noar tt set b2='G4L' where id=3; -update noar ti set b2='G4L' where id=3; -update noar tt set v0='AGHDYX17QI3C4FQT8FD' where id=4; -update noar ti set v0='AGHDYX17QI3C4FQT8FD' where id=4; -update noar tt set b0='J305V' where id=4; -update noar ti set b0='J305V' where id=4; -update noar tt set v0='7EG02IGDF2F7PXAAMH5BZCZUR148' where id=4; -update noar ti set v0='7EG02IGDF2F7PXAAMH5BZCZUR148' where id=4; -update noar tt set b1='VAWGMUSVGOY7M549DA' where id=4; -update noar ti set b1='VAWGMUSVGOY7M549DA' where id=4; -update noar tt set v0='4N4L4XHWF3FQAWP0' where id=4; -update noar ti set v0='4N4L4XHWF3FQAWP0' where id=4; -update noar tt set b2='7XP26CHV9UQBDFS0ANMDOEE2VBU835' where id=4; -update noar ti set b2='7XP26CHV9UQBDFS0ANMDOEE2VBU835' where id=4; -update noar tt set v0='B9S8DVX3MZ60M6OS6PPELG8ALIZ' where id=5; -update noar ti set v0='B9S8DVX3MZ60M6OS6PPELG8ALIZ' where id=5; -update noar tt set b0='ZXZOHO389V70KSY' where id=5; -update noar ti set b0='ZXZOHO389V70KSY' where id=5; -update noar tt set v0='RKRL3YI88D' where id=5; -update noar ti set v0='RKRL3YI88D' where id=5; -update noar tt set b1='5KWEKK7XAXS4HCPTJS64FF' where id=5; -update noar ti set b1='5KWEKK7XAXS4HCPTJS64FF' where id=5; -update noar tt set v0='QCWXNGK1782X2RJ5O' where id=5; -update noar ti set v0='QCWXNGK1782X2RJ5O' where id=5; -update noar tt set b2='ONSN' where id=5; -update noar ti set b2='ONSN' where id=5; -update noar tt set v0='HGZ0OHSCTREB2RQE9XN8UR1748SS' where id=6; -update noar ti set v0='HGZ0OHSCTREB2RQE9XN8UR1748SS' where id=6; -update noar tt set b0='KN6' where id=6; -update noar ti set b0='KN6' where id=6; -update noar tt set v0='JJVI8J9IYCXEN4TT' where id=6; -update noar ti set v0='JJVI8J9IYCXEN4TT' where id=6; -update noar tt set b1='XXPHNOYQ5ZP1IQ73A9JKAQ' where id=6; -update noar ti set b1='XXPHNOYQ5ZP1IQ73A9JKAQ' where id=6; -update noar tt set v0='M5A5T5ALDQZ2S' where id=6; -update noar ti set v0='M5A5T5ALDQZ2S' where id=6; -update noar tt set b2='QN7EKYHJ62P66EOFYG1TGHDTKLO1KI5' where id=6; -update noar ti set b2='QN7EKYHJ62P66EOFYG1TGHDTKLO1KI5' where id=6; -update noar tt set v0='711A' where id=7; -update noar ti set v0='711A' where id=7; -update noar tt set b0='0BABH32UO' where id=7; -update noar ti set b0='0BABH32UO' where id=7; -update noar tt set v0='AFF8575R' where id=7; -update noar ti set v0='AFF8575R' where id=7; -update noar tt set b1='06N1VVVIPIZJX2ZXPDDMLVHMRJNB4DVI' where id=7; -update noar ti set b1='06N1VVVIPIZJX2ZXPDDMLVHMRJNB4DVI' where id=7; -update noar tt set v0='BB8' where id=7; -update noar ti set v0='BB8' where id=7; -update noar tt set b2='EN8' where id=7; -update noar ti set b2='EN8' where id=7; -update noar tt set v0='XFAJ3WG6A1RT02Y58S56' where id=8; -update noar ti set v0='XFAJ3WG6A1RT02Y58S56' where id=8; -update noar tt set b0='U2FAHR0OBYTH2TZUUUBR' where id=8; -update noar ti set b0='U2FAHR0OBYTH2TZUUUBR' where id=8; -update noar tt set v0='WP0ZIO09JI5S7KU' where id=8; -update noar ti set v0='WP0ZIO09JI5S7KU' where id=8; -update noar tt set b1='DGTOWH01GRNAQMQJ7E' where id=8; -update noar ti set b1='DGTOWH01GRNAQMQJ7E' where id=8; -update noar tt set v0='ULE1PTHWC4B48WISPLR5ZSFD35CDF2X3' where id=8; -update noar ti set v0='ULE1PTHWC4B48WISPLR5ZSFD35CDF2X3' where id=8; -update noar tt set b2='R2U0F5ADFZVHDIWKIYZE821KS' where id=8; -update noar ti set b2='R2U0F5ADFZVHDIWKIYZE821KS' where id=8; -update noar tt set v0='G5VHVX2PZIT2Z8GTPJIJ50B7T5W6LX' where id=9; -update noar ti set v0='G5VHVX2PZIT2Z8GTPJIJ50B7T5W6LX' where id=9; -update noar tt set b0='1WWYUFG' where id=9; -update noar ti set b0='1WWYUFG' where id=9; -update noar tt set v0='THW92PY4337G9B6J57Y07GPVJ0MMOJR5' where id=9; -update noar ti set v0='THW92PY4337G9B6J57Y07GPVJ0MMOJR5' where id=9; -update noar tt set b1='EEOP' where id=9; -update noar ti set b1='EEOP' where id=9; -update noar tt set v0='EXVRZNXS6308' where id=9; -update noar ti set v0='EXVRZNXS6308' where id=9; -update noar tt set b2='KVNVS6TASTDKU0' where id=9; -update noar ti set b2='KVNVS6TASTDKU0' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -v0 varchar(256) null, -b0 tinyblob null, -b1 blob null, -b2 tinyblob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='5BY2WL' where id=1; -update noar ti set v0='5BY2WL' where id=1; -update noar tt set b0='2LG9OQA' where id=1; -update noar ti set b0='2LG9OQA' where id=1; -update noar tt set v0='8A545MSMWTN02VPVU06CGR4AU9XPMS8G' where id=1; -update noar ti set v0='8A545MSMWTN02VPVU06CGR4AU9XPMS8G' where id=1; -update noar tt set b1='10IQ1YK40X5OYJLVLU10U8UBLAUGUC' where id=1; -update noar ti set b1='10IQ1YK40X5OYJLVLU10U8UBLAUGUC' where id=1; -update noar tt set v0='I9N4' where id=1; -update noar ti set v0='I9N4' where id=1; -update noar tt set b2='9S04H0WXMJGX' where id=1; -update noar ti set b2='9S04H0WXMJGX' where id=1; -update noar tt set v0='C17BARNR0UP55LYOC15Y0LXTWN10J1' where id=2; -update noar ti set v0='C17BARNR0UP55LYOC15Y0LXTWN10J1' where id=2; -update noar tt set b0='HKA2BQ' where id=2; -update noar ti set b0='HKA2BQ' where id=2; -update noar tt set v0='RC9C' where id=2; -update noar ti set v0='RC9C' where id=2; -update noar tt set b1='NNMCXD4IOIDTTA50OYXON' where id=2; -update noar ti set b1='NNMCXD4IOIDTTA50OYXON' where id=2; -update noar tt set v0='KNNYL' where id=2; -update noar ti set v0='KNNYL' where id=2; -update noar tt set b2='LO4QC69RGJP009Y1H9LFEP' where id=2; -update noar ti set b2='LO4QC69RGJP009Y1H9LFEP' where id=2; -update noar tt set v0='MPM75NHQ4IPXT3C8' where id=3; -update noar ti set v0='MPM75NHQ4IPXT3C8' where id=3; -update noar tt set b0='7V03CXP84YGBJ7' where id=3; -update noar ti set b0='7V03CXP84YGBJ7' where id=3; -update noar tt set v0='XDALAKE4F' where id=3; -update noar ti set v0='XDALAKE4F' where id=3; -update noar tt set b1='I93I7' where id=3; -update noar ti set b1='I93I7' where id=3; -update noar tt set v0='3B2TN6DMA4U83TXDFXLS3H1F1G0XUF2' where id=3; -update noar ti set v0='3B2TN6DMA4U83TXDFXLS3H1F1G0XUF2' where id=3; -update noar tt set b2='6QHW9NIPVXL388SD19DH1QT' where id=3; -update noar ti set b2='6QHW9NIPVXL388SD19DH1QT' where id=3; -update noar tt set v0='2UR6MB' where id=4; -update noar ti set v0='2UR6MB' where id=4; -update noar tt set b0='VKT2JWY64A1GH4BRG4VSQJ15J8TT7' where id=4; -update noar ti set b0='VKT2JWY64A1GH4BRG4VSQJ15J8TT7' where id=4; -update noar tt set v0='JHLJN7VR7FNS1JPBMKQO7L' where id=4; -update noar ti set v0='JHLJN7VR7FNS1JPBMKQO7L' where id=4; -update noar tt set b1='ME64QB92EH6DXLKKM7V3OT7ZE23' where id=4; -update noar ti set b1='ME64QB92EH6DXLKKM7V3OT7ZE23' where id=4; -update noar tt set v0='UYN69R6P1S6C6C1VJLEOA' where id=4; -update noar ti set v0='UYN69R6P1S6C6C1VJLEOA' where id=4; -update noar tt set b2='OQRMWCBP47J6FDIMS' where id=4; -update noar ti set b2='OQRMWCBP47J6FDIMS' where id=4; -update noar tt set v0='VHYHXA844B9QO9VWB5C4C64QOXJKPB' where id=5; -update noar ti set v0='VHYHXA844B9QO9VWB5C4C64QOXJKPB' where id=5; -update noar tt set b0='1LPCBNI4G1QCYQU50LHCVXT7TB38' where id=5; -update noar ti set b0='1LPCBNI4G1QCYQU50LHCVXT7TB38' where id=5; -update noar tt set v0='JUG' where id=5; -update noar ti set v0='JUG' where id=5; -update noar tt set b1='Q7V93AJC11' where id=5; -update noar ti set b1='Q7V93AJC11' where id=5; -update noar tt set v0='7D4AP' where id=5; -update noar ti set v0='7D4AP' where id=5; -update noar tt set b2='2SVBGC' where id=5; -update noar ti set b2='2SVBGC' where id=5; -update noar tt set v0='MLVZ' where id=6; -update noar ti set v0='MLVZ' where id=6; -update noar tt set b0='RGKY0TF70FT' where id=6; -update noar ti set b0='RGKY0TF70FT' where id=6; -update noar tt set v0='PL4M' where id=6; -update noar ti set v0='PL4M' where id=6; -update noar tt set b1='RO74V47G9JS2L5' where id=6; -update noar ti set b1='RO74V47G9JS2L5' where id=6; -update noar tt set v0='QYV0H0RJBU2IOOMFK6U8Y0CCFGC00M' where id=6; -update noar ti set v0='QYV0H0RJBU2IOOMFK6U8Y0CCFGC00M' where id=6; -update noar tt set b2='OY5AGV9P44VVI2ET6O8R' where id=6; -update noar ti set b2='OY5AGV9P44VVI2ET6O8R' where id=6; -update noar tt set v0='DQM3MJ1KI8XHMPSLFIOTBXNEY3' where id=7; -update noar ti set v0='DQM3MJ1KI8XHMPSLFIOTBXNEY3' where id=7; -update noar tt set b0='SFEVSIJPQR0ZQ5TDFHA13' where id=7; -update noar ti set b0='SFEVSIJPQR0ZQ5TDFHA13' where id=7; -update noar tt set v0='J' where id=7; -update noar ti set v0='J' where id=7; -update noar tt set b1='I2CUQVOAZV3' where id=7; -update noar ti set b1='I2CUQVOAZV3' where id=7; -update noar tt set v0='K8JQMG4K4I5WQ5TLTZUVKXS2EPMNP7F' where id=7; -update noar ti set v0='K8JQMG4K4I5WQ5TLTZUVKXS2EPMNP7F' where id=7; -update noar tt set b2='34VTBWMG2M' where id=7; -update noar ti set b2='34VTBWMG2M' where id=7; -update noar tt set v0='MS9RX3TVZRRI7SU1B463' where id=8; -update noar ti set v0='MS9RX3TVZRRI7SU1B463' where id=8; -update noar tt set b0='T2S1GA0O' where id=8; -update noar ti set b0='T2S1GA0O' where id=8; -update noar tt set v0='FMOT960EOBTB97J5XNKX5X5WFSF8Q3T' where id=8; -update noar ti set v0='FMOT960EOBTB97J5XNKX5X5WFSF8Q3T' where id=8; -update noar tt set b1='KN' where id=8; -update noar ti set b1='KN' where id=8; -update noar tt set v0='BHKL7AH4LB0GU5H' where id=8; -update noar ti set v0='BHKL7AH4LB0GU5H' where id=8; -update noar tt set b2='E1J9X4DJPFPM' where id=8; -update noar ti set b2='E1J9X4DJPFPM' where id=8; -update noar tt set v0='L' where id=9; -update noar ti set v0='L' where id=9; -update noar tt set b0='2MSHYUC013XQ0KRK' where id=9; -update noar ti set b0='2MSHYUC013XQ0KRK' where id=9; -update noar tt set v0='4PMIPCAB' where id=9; -update noar ti set v0='4PMIPCAB' where id=9; -update noar tt set b1='69Q8DYTVEK4DHLJWNIP3V1IDXBQO' where id=9; -update noar ti set b1='69Q8DYTVEK4DHLJWNIP3V1IDXBQO' where id=9; -update noar tt set v0='V8YM4VCQ5IZ0XN' where id=9; -update noar ti set v0='V8YM4VCQ5IZ0XN' where id=9; -update noar tt set b2='VMAPH031CNMBLCOEFQY8CO0J53' where id=9; -update noar ti set b2='VMAPH031CNMBLCOEFQY8CO0J53' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -v0 varchar(32) not null, -b0 tinyblob not null, -b1 blob not null, -b2 tinyblob not null -) engine=tokudb; -insert into tt values (1,'','','',''); -insert into tt values (2,'','','',''); -insert into tt values (3,'','','',''); -insert into tt values (4,'','','',''); -insert into tt values (5,'','','',''); -insert into tt values (6,'','','',''); -insert into tt values (7,'','','',''); -insert into tt values (8,'','','',''); -insert into tt values (9,'','','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='NUXTEA371UUI1Y' where id=1; -update noar ti set v0='NUXTEA371UUI1Y' where id=1; -update noar tt set b0='16Z77OSIX' where id=1; -update noar ti set b0='16Z77OSIX' where id=1; -update noar tt set v0='3G6JRE3MPHPSEAA3' where id=1; -update noar ti set v0='3G6JRE3MPHPSEAA3' where id=1; -update noar tt set b1='C' where id=1; -update noar ti set b1='C' where id=1; -update noar tt set v0='FSIY84G0PLSNGVE73' where id=1; -update noar ti set v0='FSIY84G0PLSNGVE73' where id=1; -update noar tt set b2='KXJNKTSQ5' where id=1; -update noar ti set b2='KXJNKTSQ5' where id=1; -update noar tt set v0='HZY4KKANDK01GX' where id=2; -update noar ti set v0='HZY4KKANDK01GX' where id=2; -update noar tt set b0='W5VET6VE4G63TLA77GGWD30L0F6' where id=2; -update noar ti set b0='W5VET6VE4G63TLA77GGWD30L0F6' where id=2; -update noar tt set v0='AHMGJFBUGZQP1UC88ZI2S16U7TN1' where id=2; -update noar ti set v0='AHMGJFBUGZQP1UC88ZI2S16U7TN1' where id=2; -update noar tt set b1='YGBBURCJNMLCSGJIC666' where id=2; -update noar ti set b1='YGBBURCJNMLCSGJIC666' where id=2; -update noar tt set v0='WJBID4' where id=2; -update noar ti set v0='WJBID4' where id=2; -update noar tt set b2='OW' where id=2; -update noar ti set b2='OW' where id=2; -update noar tt set v0='8RG8G14QR6PESEG6QRODF7FGU' where id=3; -update noar ti set v0='8RG8G14QR6PESEG6QRODF7FGU' where id=3; -update noar tt set b0='MMZAKYRWQ' where id=3; -update noar ti set b0='MMZAKYRWQ' where id=3; -update noar tt set v0='5KEN4' where id=3; -update noar ti set v0='5KEN4' where id=3; -update noar tt set b1='23VAQ9R7BYX3P107O86LG' where id=3; -update noar ti set b1='23VAQ9R7BYX3P107O86LG' where id=3; -update noar tt set v0='GJOZQ4ZKS1DP' where id=3; -update noar ti set v0='GJOZQ4ZKS1DP' where id=3; -update noar tt set b2='BE96528P2KJA4HMQELHRBT67B' where id=3; -update noar ti set b2='BE96528P2KJA4HMQELHRBT67B' where id=3; -update noar tt set v0='86X7J' where id=4; -update noar ti set v0='86X7J' where id=4; -update noar tt set b0='YLZ23YHWBIE9TRZVHX' where id=4; -update noar ti set b0='YLZ23YHWBIE9TRZVHX' where id=4; -update noar tt set v0='RWL2RXTXEP4G8UJZ26M96A0GQVSX' where id=4; -update noar ti set v0='RWL2RXTXEP4G8UJZ26M96A0GQVSX' where id=4; -update noar tt set b1='D7RT34SZP32Q9NDDWX1N28F6' where id=4; -update noar ti set b1='D7RT34SZP32Q9NDDWX1N28F6' where id=4; -update noar tt set v0='RBOOWYJV0UO6IEF66K2PHJMR8JU' where id=4; -update noar ti set v0='RBOOWYJV0UO6IEF66K2PHJMR8JU' where id=4; -update noar tt set b2='85FZDU3L632EIH9C' where id=4; -update noar ti set b2='85FZDU3L632EIH9C' where id=4; -update noar tt set v0='T9EOANQZ2W5T93NHYKQJFC73I' where id=5; -update noar ti set v0='T9EOANQZ2W5T93NHYKQJFC73I' where id=5; -update noar tt set b0='1FW1O8R5WEDYEBD5P' where id=5; -update noar ti set b0='1FW1O8R5WEDYEBD5P' where id=5; -update noar tt set v0='FSE0XKCJ5WL5T5V9Z' where id=5; -update noar ti set v0='FSE0XKCJ5WL5T5V9Z' where id=5; -update noar tt set b1='EJ43VYZK798F0OVC3AEKUR58' where id=5; -update noar ti set b1='EJ43VYZK798F0OVC3AEKUR58' where id=5; -update noar tt set v0='B7F2RBS4KDC14S3K4YDT9EOHFC5S2C7' where id=5; -update noar ti set v0='B7F2RBS4KDC14S3K4YDT9EOHFC5S2C7' where id=5; -update noar tt set b2='3A4CUB9C3K1BPYOQSC6BQYM' where id=5; -update noar ti set b2='3A4CUB9C3K1BPYOQSC6BQYM' where id=5; -update noar tt set v0='XEYSOH0L53E0ZII4IHCBD49V30LA' where id=6; -update noar ti set v0='XEYSOH0L53E0ZII4IHCBD49V30LA' where id=6; -update noar tt set b0='0LFIO0E64XWEM4MDNT' where id=6; -update noar ti set b0='0LFIO0E64XWEM4MDNT' where id=6; -update noar tt set v0='SISI8E30RFEIPYYB4GOWMNYJ8Y7R32TN' where id=6; -update noar ti set v0='SISI8E30RFEIPYYB4GOWMNYJ8Y7R32TN' where id=6; -update noar tt set b1='7V' where id=6; -update noar ti set b1='7V' where id=6; -update noar tt set v0='2H' where id=6; -update noar ti set v0='2H' where id=6; -update noar tt set b2='H7C4YNHPDQXFW70HLATM' where id=6; -update noar ti set b2='H7C4YNHPDQXFW70HLATM' where id=6; -update noar tt set v0='10Q5O525U9TTL' where id=7; -update noar ti set v0='10Q5O525U9TTL' where id=7; -update noar tt set b0='41VHZGG491TA0K79J7JTM6' where id=7; -update noar ti set b0='41VHZGG491TA0K79J7JTM6' where id=7; -update noar tt set v0='Z17IUD0INSHF47J40KB8J8T9GI' where id=7; -update noar ti set v0='Z17IUD0INSHF47J40KB8J8T9GI' where id=7; -update noar tt set b1='2' where id=7; -update noar ti set b1='2' where id=7; -update noar tt set v0='0BS325FYR2' where id=7; -update noar ti set v0='0BS325FYR2' where id=7; -update noar tt set b2='NUFVIE5W873HNMQJJM' where id=7; -update noar ti set b2='NUFVIE5W873HNMQJJM' where id=7; -update noar tt set v0='AHBC' where id=8; -update noar ti set v0='AHBC' where id=8; -update noar tt set b0='HE5M00J' where id=8; -update noar ti set b0='HE5M00J' where id=8; -update noar tt set v0='HGIR661F6T' where id=8; -update noar ti set v0='HGIR661F6T' where id=8; -update noar tt set b1='0EN1AWPW3F' where id=8; -update noar ti set b1='0EN1AWPW3F' where id=8; -update noar tt set v0='ETKRBQBSS8VLY' where id=8; -update noar ti set v0='ETKRBQBSS8VLY' where id=8; -update noar tt set b2='BCY2NTOER4' where id=8; -update noar ti set b2='BCY2NTOER4' where id=8; -update noar tt set v0='L' where id=9; -update noar ti set v0='L' where id=9; -update noar tt set b0='5QGFUOYRCMVRNJ4FZU0FS4WL' where id=9; -update noar ti set b0='5QGFUOYRCMVRNJ4FZU0FS4WL' where id=9; -update noar tt set v0='9BTNPDXOT02K9CIOEB0YP' where id=9; -update noar ti set v0='9BTNPDXOT02K9CIOEB0YP' where id=9; -update noar tt set b1='TDZXB7BL' where id=9; -update noar ti set b1='TDZXB7BL' where id=9; -update noar tt set v0='KM3IGNRGMYJQ4BXWSX' where id=9; -update noar ti set v0='KM3IGNRGMYJQ4BXWSX' where id=9; -update noar tt set b2='X5' where id=9; -update noar ti set b2='X5' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -v0 varchar(256) not null, -b0 tinyblob not null, -b1 blob not null, -b2 tinyblob not null -) engine=tokudb; -insert into tt values (1,'','','',''); -insert into tt values (2,'','','',''); -insert into tt values (3,'','','',''); -insert into tt values (4,'','','',''); -insert into tt values (5,'','','',''); -insert into tt values (6,'','','',''); -insert into tt values (7,'','','',''); -insert into tt values (8,'','','',''); -insert into tt values (9,'','','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='5TGH918FE' where id=1; -update noar ti set v0='5TGH918FE' where id=1; -update noar tt set b0='DYIIPEVFFMH8D' where id=1; -update noar ti set b0='DYIIPEVFFMH8D' where id=1; -update noar tt set v0='2KQEM9RUGP361U499NHZ97YAO82' where id=1; -update noar ti set v0='2KQEM9RUGP361U499NHZ97YAO82' where id=1; -update noar tt set b1='Y8FMSVM4G5F1' where id=1; -update noar ti set b1='Y8FMSVM4G5F1' where id=1; -update noar tt set v0='3UWXF3K5QB18G6S7Q' where id=1; -update noar ti set v0='3UWXF3K5QB18G6S7Q' where id=1; -update noar tt set b2='M6IOS8B0BAY68N378IJMKX97' where id=1; -update noar ti set b2='M6IOS8B0BAY68N378IJMKX97' where id=1; -update noar tt set v0='ZQ95I7HTDYANBB9CXHFF' where id=2; -update noar ti set v0='ZQ95I7HTDYANBB9CXHFF' where id=2; -update noar tt set b0='FVMGZSRKUOHV12ZVLJNGLNH9' where id=2; -update noar ti set b0='FVMGZSRKUOHV12ZVLJNGLNH9' where id=2; -update noar tt set v0='POVX7' where id=2; -update noar ti set v0='POVX7' where id=2; -update noar tt set b1='TKXC8GB3PE3R8ZA04FX02REK576T3' where id=2; -update noar ti set b1='TKXC8GB3PE3R8ZA04FX02REK576T3' where id=2; -update noar tt set v0='2HZYBF6ZXMQEJ3JE862ZF8N' where id=2; -update noar ti set v0='2HZYBF6ZXMQEJ3JE862ZF8N' where id=2; -update noar tt set b2='FNTMLAGSSJ5ZURXB7HC' where id=2; -update noar ti set b2='FNTMLAGSSJ5ZURXB7HC' where id=2; -update noar tt set v0='3A5TTVIP25IMXQ89TLDS5856E' where id=3; -update noar ti set v0='3A5TTVIP25IMXQ89TLDS5856E' where id=3; -update noar tt set b0='V7FDONMP2IK3JH7BUE2' where id=3; -update noar ti set b0='V7FDONMP2IK3JH7BUE2' where id=3; -update noar tt set v0='4OXKBWQV' where id=3; -update noar ti set v0='4OXKBWQV' where id=3; -update noar tt set b1='OIM47J4XC2' where id=3; -update noar ti set b1='OIM47J4XC2' where id=3; -update noar tt set v0='S83N9' where id=3; -update noar ti set v0='S83N9' where id=3; -update noar tt set b2='AD1GLPXFE' where id=3; -update noar ti set b2='AD1GLPXFE' where id=3; -update noar tt set v0='BYJC7F6ZO9K' where id=4; -update noar ti set v0='BYJC7F6ZO9K' where id=4; -update noar tt set b0='7FV8LMS' where id=4; -update noar ti set b0='7FV8LMS' where id=4; -update noar tt set v0='4ISJJJN30Z' where id=4; -update noar ti set v0='4ISJJJN30Z' where id=4; -update noar tt set b1='2M4XBSVF3GC9CE3' where id=4; -update noar ti set b1='2M4XBSVF3GC9CE3' where id=4; -update noar tt set v0='9VRXVQ' where id=4; -update noar ti set v0='9VRXVQ' where id=4; -update noar tt set b2='4ZM' where id=4; -update noar ti set b2='4ZM' where id=4; -update noar tt set v0='9KSNH' where id=5; -update noar ti set v0='9KSNH' where id=5; -update noar tt set b0='86CAAUHFFSWB' where id=5; -update noar ti set b0='86CAAUHFFSWB' where id=5; -update noar tt set v0='RQVYJ8' where id=5; -update noar ti set v0='RQVYJ8' where id=5; -update noar tt set b1='XZUVE1YYQD' where id=5; -update noar ti set b1='XZUVE1YYQD' where id=5; -update noar tt set v0='X8M1YTDQ' where id=5; -update noar ti set v0='X8M1YTDQ' where id=5; -update noar tt set b2='XYV8QJVY0XVP96OCSHVUY746BXAPN11X' where id=5; -update noar ti set b2='XYV8QJVY0XVP96OCSHVUY746BXAPN11X' where id=5; -update noar tt set v0='AZA822J5YQP0D2B1ICS0P0VD' where id=6; -update noar ti set v0='AZA822J5YQP0D2B1ICS0P0VD' where id=6; -update noar tt set b0='020FSPUSEDFFVZRCEKPMD9WIMXRB' where id=6; -update noar ti set b0='020FSPUSEDFFVZRCEKPMD9WIMXRB' where id=6; -update noar tt set v0='29OXZEY7OA67E16A75KQWDYOCQQ' where id=6; -update noar ti set v0='29OXZEY7OA67E16A75KQWDYOCQQ' where id=6; -update noar tt set b1='4TGU0HYQPEQ5CTJIEHK4RE47NW' where id=6; -update noar ti set b1='4TGU0HYQPEQ5CTJIEHK4RE47NW' where id=6; -update noar tt set v0='8DVXG7OBC9L47KV3B95WMDTL' where id=6; -update noar ti set v0='8DVXG7OBC9L47KV3B95WMDTL' where id=6; -update noar tt set b2='9LJNIZ3CP' where id=6; -update noar ti set b2='9LJNIZ3CP' where id=6; -update noar tt set v0='8N3WUNAJ75E7' where id=7; -update noar ti set v0='8N3WUNAJ75E7' where id=7; -update noar tt set b0='0AGM7NDNWHNB7I' where id=7; -update noar ti set b0='0AGM7NDNWHNB7I' where id=7; -update noar tt set v0='YW0J7WVF0Q3VS3NDB22EM7' where id=7; -update noar ti set v0='YW0J7WVF0Q3VS3NDB22EM7' where id=7; -update noar tt set b1='KMRHUSYPMJEQEMKODLQ8CX4JUTDOR' where id=7; -update noar ti set b1='KMRHUSYPMJEQEMKODLQ8CX4JUTDOR' where id=7; -update noar tt set v0='T1WB9G09BQ91LO2KU39249JHH8C8R2MA' where id=7; -update noar ti set v0='T1WB9G09BQ91LO2KU39249JHH8C8R2MA' where id=7; -update noar tt set b2='NBNHZHOTEX' where id=7; -update noar ti set b2='NBNHZHOTEX' where id=7; -update noar tt set v0='5HUMGT6' where id=8; -update noar ti set v0='5HUMGT6' where id=8; -update noar tt set b0='EY8B4R7UH3RQP2IW4BQE4K590DEGK' where id=8; -update noar ti set b0='EY8B4R7UH3RQP2IW4BQE4K590DEGK' where id=8; -update noar tt set v0='1PS25C28ZSSZTJPSEWX38' where id=8; -update noar ti set v0='1PS25C28ZSSZTJPSEWX38' where id=8; -update noar tt set b1='LWWE2QKT34' where id=8; -update noar ti set b1='LWWE2QKT34' where id=8; -update noar tt set v0='FGPM7' where id=8; -update noar ti set v0='FGPM7' where id=8; -update noar tt set b2='5C6SQ3EIW8XQ62A' where id=8; -update noar ti set b2='5C6SQ3EIW8XQ62A' where id=8; -update noar tt set v0='G9I651J3AVMD9PR' where id=9; -update noar ti set v0='G9I651J3AVMD9PR' where id=9; -update noar tt set b0='UGQ6X69UB03C' where id=9; -update noar ti set b0='UGQ6X69UB03C' where id=9; -update noar tt set v0='16VPMT57FBS8P0YY7CMJF' where id=9; -update noar ti set v0='16VPMT57FBS8P0YY7CMJF' where id=9; -update noar tt set b1='KE0DUX1VW' where id=9; -update noar ti set b1='KE0DUX1VW' where id=9; -update noar tt set v0='KG4SJ3YTPRPK6Z16KJL1HJ0VAS04' where id=9; -update noar ti set v0='KG4SJ3YTPRPK6Z16KJL1HJ0VAS04' where id=9; -update noar tt set b2='BMXO3' where id=9; -update noar ti set b2='BMXO3' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -v0 varchar(32) null, -b0 tinyblob null, -b1 blob null, -b2 blob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='R2XGIXPZIHONX15Q8PJKQ5AB' where id=1; -update noar ti set v0='R2XGIXPZIHONX15Q8PJKQ5AB' where id=1; -update noar tt set b0='F0TQXVIXKJSWTGBM5C' where id=1; -update noar ti set b0='F0TQXVIXKJSWTGBM5C' where id=1; -update noar tt set v0='1H9C8BNKSC' where id=1; -update noar ti set v0='1H9C8BNKSC' where id=1; -update noar tt set b1='TCOKC9Y9P3K2KH4N281PGZZTGV' where id=1; -update noar ti set b1='TCOKC9Y9P3K2KH4N281PGZZTGV' where id=1; -update noar tt set v0='1ZF10NQBEY0U65G4J5L' where id=1; -update noar ti set v0='1ZF10NQBEY0U65G4J5L' where id=1; -update noar tt set b2='7WNH2OS2XPM' where id=1; -update noar ti set b2='7WNH2OS2XPM' where id=1; -update noar tt set v0='D3XMXM7' where id=2; -update noar ti set v0='D3XMXM7' where id=2; -update noar tt set b0='WTNB7Q5' where id=2; -update noar ti set b0='WTNB7Q5' where id=2; -update noar tt set v0='ABO5' where id=2; -update noar ti set v0='ABO5' where id=2; -update noar tt set b1='ZL3968VKQ8JBVKH8QDL8V0FOKVSELOJ5' where id=2; -update noar ti set b1='ZL3968VKQ8JBVKH8QDL8V0FOKVSELOJ5' where id=2; -update noar tt set v0='Z23CM0EBPMLR63WIKUEPTWZ' where id=2; -update noar ti set v0='Z23CM0EBPMLR63WIKUEPTWZ' where id=2; -update noar tt set b2='9XXLMOEPD38WOB63EXANEPML' where id=2; -update noar ti set b2='9XXLMOEPD38WOB63EXANEPML' where id=2; -update noar tt set v0='STH5L7D545HIDZ1R6XZ3NZMBNTHVY' where id=3; -update noar ti set v0='STH5L7D545HIDZ1R6XZ3NZMBNTHVY' where id=3; -update noar tt set b0='TYPUVLV97A2N9' where id=3; -update noar ti set b0='TYPUVLV97A2N9' where id=3; -update noar tt set v0='MHNKFVL009I' where id=3; -update noar ti set v0='MHNKFVL009I' where id=3; -update noar tt set b1='BD7NHBPCBPSMC6BW13' where id=3; -update noar ti set b1='BD7NHBPCBPSMC6BW13' where id=3; -update noar tt set v0='6FR3LX46IVEAK9Q5WKPMHCP0P5S7DN0' where id=3; -update noar ti set v0='6FR3LX46IVEAK9Q5WKPMHCP0P5S7DN0' where id=3; -update noar tt set b2='L0EKEC1' where id=3; -update noar ti set b2='L0EKEC1' where id=3; -update noar tt set v0='483MNNYHGG2XP2DBUNHWOX' where id=4; -update noar ti set v0='483MNNYHGG2XP2DBUNHWOX' where id=4; -update noar tt set b0='XX3V9UE05MFXAGE2PGYJG5DFSLEN' where id=4; -update noar ti set b0='XX3V9UE05MFXAGE2PGYJG5DFSLEN' where id=4; -update noar tt set v0='2SCLTP8I9R7NWHU0YEMUMWIT82K' where id=4; -update noar ti set v0='2SCLTP8I9R7NWHU0YEMUMWIT82K' where id=4; -update noar tt set b1='CQEW7T5A0TG5' where id=4; -update noar ti set b1='CQEW7T5A0TG5' where id=4; -update noar tt set v0='IH2BVFNGS77B1WVZUMNTE3L' where id=4; -update noar ti set v0='IH2BVFNGS77B1WVZUMNTE3L' where id=4; -update noar tt set b2='IGS2E16017LGTLUWQIH' where id=4; -update noar ti set b2='IGS2E16017LGTLUWQIH' where id=4; -update noar tt set v0='F3L7NXAHX' where id=5; -update noar ti set v0='F3L7NXAHX' where id=5; -update noar tt set b0='FO7VS07OYO1P' where id=5; -update noar ti set b0='FO7VS07OYO1P' where id=5; -update noar tt set v0='8Y1KGDOHP3' where id=5; -update noar ti set v0='8Y1KGDOHP3' where id=5; -update noar tt set b1='CPILFN' where id=5; -update noar ti set b1='CPILFN' where id=5; -update noar tt set v0='OYL9TR5VMR8' where id=5; -update noar ti set v0='OYL9TR5VMR8' where id=5; -update noar tt set b2='RDQYG9FLZTPW1' where id=5; -update noar ti set b2='RDQYG9FLZTPW1' where id=5; -update noar tt set v0='UB8Y8YBTYBGYZR7Y' where id=6; -update noar ti set v0='UB8Y8YBTYBGYZR7Y' where id=6; -update noar tt set b0='WXUL1PZN98MLRU' where id=6; -update noar ti set b0='WXUL1PZN98MLRU' where id=6; -update noar tt set v0='NUNHMV' where id=6; -update noar ti set v0='NUNHMV' where id=6; -update noar tt set b1='3DWJ25W' where id=6; -update noar ti set b1='3DWJ25W' where id=6; -update noar tt set v0='OOUYX4G3TE3OZ3K0E5PV5URFLCQ' where id=6; -update noar ti set v0='OOUYX4G3TE3OZ3K0E5PV5URFLCQ' where id=6; -update noar tt set b2='IPEJFX6ZL6KRLXPO51K0KJIZ502' where id=6; -update noar ti set b2='IPEJFX6ZL6KRLXPO51K0KJIZ502' where id=6; -update noar tt set v0='CNV' where id=7; -update noar ti set v0='CNV' where id=7; -update noar tt set b0='M0VSGIL' where id=7; -update noar ti set b0='M0VSGIL' where id=7; -update noar tt set v0='R92B3TNW3' where id=7; -update noar ti set v0='R92B3TNW3' where id=7; -update noar tt set b1='0OT4REN' where id=7; -update noar ti set b1='0OT4REN' where id=7; -update noar tt set v0='CQBG4KTR9YISQLQ0ZNUNV0CFTRTFZXL' where id=7; -update noar ti set v0='CQBG4KTR9YISQLQ0ZNUNV0CFTRTFZXL' where id=7; -update noar tt set b2='ZL95VY321YGZA40T10I2N1TCDLCKL02' where id=7; -update noar ti set b2='ZL95VY321YGZA40T10I2N1TCDLCKL02' where id=7; -update noar tt set v0='WNAH6J4ZQBV' where id=8; -update noar ti set v0='WNAH6J4ZQBV' where id=8; -update noar tt set b0='CMKK254WZ1Y' where id=8; -update noar ti set b0='CMKK254WZ1Y' where id=8; -update noar tt set v0='7ZVR0GI4NXFM' where id=8; -update noar ti set v0='7ZVR0GI4NXFM' where id=8; -update noar tt set b1='TJ3BJ' where id=8; -update noar ti set b1='TJ3BJ' where id=8; -update noar tt set v0='S7YOGPZCMR' where id=8; -update noar ti set v0='S7YOGPZCMR' where id=8; -update noar tt set b2='YJYVTDC7L' where id=8; -update noar ti set b2='YJYVTDC7L' where id=8; -update noar tt set v0='L87Q3SGF3' where id=9; -update noar ti set v0='L87Q3SGF3' where id=9; -update noar tt set b0='7J2R72I7OJ9KFX6MMG43XP0PKLDU8' where id=9; -update noar ti set b0='7J2R72I7OJ9KFX6MMG43XP0PKLDU8' where id=9; -update noar tt set v0='7UZSISTY3N6SVXUW2YMACI1OBS17' where id=9; -update noar ti set v0='7UZSISTY3N6SVXUW2YMACI1OBS17' where id=9; -update noar tt set b1='QUQEFBU0MLAR8O4SVRK7BN40RUYBC' where id=9; -update noar ti set b1='QUQEFBU0MLAR8O4SVRK7BN40RUYBC' where id=9; -update noar tt set v0='MF4TJ3FZLA4LF7L8KT3BI0' where id=9; -update noar ti set v0='MF4TJ3FZLA4LF7L8KT3BI0' where id=9; -update noar tt set b2='2QY18PV' where id=9; -update noar ti set b2='2QY18PV' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -v0 varchar(256) null, -b0 tinyblob null, -b1 blob null, -b2 blob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='RDN1LDPADLY2W' where id=1; -update noar ti set v0='RDN1LDPADLY2W' where id=1; -update noar tt set b0='TN' where id=1; -update noar ti set b0='TN' where id=1; -update noar tt set v0='94JQFG63HHL79LOTLS5MSN' where id=1; -update noar ti set v0='94JQFG63HHL79LOTLS5MSN' where id=1; -update noar tt set b1='B' where id=1; -update noar ti set b1='B' where id=1; -update noar tt set v0='XFFOMZ0VK6' where id=1; -update noar ti set v0='XFFOMZ0VK6' where id=1; -update noar tt set b2='9H685MH3J3WCAMS1JDUWCT' where id=1; -update noar ti set b2='9H685MH3J3WCAMS1JDUWCT' where id=1; -update noar tt set v0='UBFNF46GSMK2' where id=2; -update noar ti set v0='UBFNF46GSMK2' where id=2; -update noar tt set b0='4A4HDRSW3YV9HHPSW2ROTRS52XT' where id=2; -update noar ti set b0='4A4HDRSW3YV9HHPSW2ROTRS52XT' where id=2; -update noar tt set v0='P486AR0LXI51NMOPWQX' where id=2; -update noar ti set v0='P486AR0LXI51NMOPWQX' where id=2; -update noar tt set b1='QZROKQ6WKTJUJOD51RDBIKT98AQ' where id=2; -update noar ti set b1='QZROKQ6WKTJUJOD51RDBIKT98AQ' where id=2; -update noar tt set v0='JCCD' where id=2; -update noar ti set v0='JCCD' where id=2; -update noar tt set b2='YYTM4Z' where id=2; -update noar ti set b2='YYTM4Z' where id=2; -update noar tt set v0='GRMFU6ZODW6D92DQ' where id=3; -update noar ti set v0='GRMFU6ZODW6D92DQ' where id=3; -update noar tt set b0='5EIR9U2MP6B5VYRET0ERFF1VTQC6G' where id=3; -update noar ti set b0='5EIR9U2MP6B5VYRET0ERFF1VTQC6G' where id=3; -update noar tt set v0='U323Y8P41QIJNEB' where id=3; -update noar ti set v0='U323Y8P41QIJNEB' where id=3; -update noar tt set b1='ZR3COMRCTO1AFD411EWU5050ZFFV0' where id=3; -update noar ti set b1='ZR3COMRCTO1AFD411EWU5050ZFFV0' where id=3; -update noar tt set v0='RCK65BO7UK2STYYTEM1DFG8PQ' where id=3; -update noar ti set v0='RCK65BO7UK2STYYTEM1DFG8PQ' where id=3; -update noar tt set b2='OE5Q3IJ5SHSI5LJY09KRRZX2ZM9975' where id=3; -update noar ti set b2='OE5Q3IJ5SHSI5LJY09KRRZX2ZM9975' where id=3; -update noar tt set v0='QXS7A7MDO2X' where id=4; -update noar ti set v0='QXS7A7MDO2X' where id=4; -update noar tt set b0='OSHMCG8IE47QMARYCUOVWGT8RBF' where id=4; -update noar ti set b0='OSHMCG8IE47QMARYCUOVWGT8RBF' where id=4; -update noar tt set v0='KYXCP05FECRY2UQW' where id=4; -update noar ti set v0='KYXCP05FECRY2UQW' where id=4; -update noar tt set b1='T3030EJLR0WJ77H0TXVDJVSWO91R0' where id=4; -update noar ti set b1='T3030EJLR0WJ77H0TXVDJVSWO91R0' where id=4; -update noar tt set v0='T2RJGS8GKFFES7KZNO' where id=4; -update noar ti set v0='T2RJGS8GKFFES7KZNO' where id=4; -update noar tt set b2='P1GZFDM' where id=4; -update noar ti set b2='P1GZFDM' where id=4; -update noar tt set v0='TA4K63DFCOWS45TQCS3WXQ0RHHC' where id=5; -update noar ti set v0='TA4K63DFCOWS45TQCS3WXQ0RHHC' where id=5; -update noar tt set b0='TTA2H9Y5045BF90D8M0NCNDB4S' where id=5; -update noar ti set b0='TTA2H9Y5045BF90D8M0NCNDB4S' where id=5; -update noar tt set v0='CVB1UI27YM0W2VO8BH6AOI' where id=5; -update noar ti set v0='CVB1UI27YM0W2VO8BH6AOI' where id=5; -update noar tt set b1='9ZSAE4E7RW955E62RJVD6E0HPZL3' where id=5; -update noar ti set b1='9ZSAE4E7RW955E62RJVD6E0HPZL3' where id=5; -update noar tt set v0='G3IXYHV3QJF2S5M3NAO2DFRAO0Y0IDWS' where id=5; -update noar ti set v0='G3IXYHV3QJF2S5M3NAO2DFRAO0Y0IDWS' where id=5; -update noar tt set b2='UUPKWLRM758VX55ECP' where id=5; -update noar ti set b2='UUPKWLRM758VX55ECP' where id=5; -update noar tt set v0='J52OAHYW3XA' where id=6; -update noar ti set v0='J52OAHYW3XA' where id=6; -update noar tt set b0='V5L4RCKT5L8UG8OMNNSL0XD55ZIHXLL' where id=6; -update noar ti set b0='V5L4RCKT5L8UG8OMNNSL0XD55ZIHXLL' where id=6; -update noar tt set v0='MGHXMAGPGHBJRMD62IFVL8SD' where id=6; -update noar ti set v0='MGHXMAGPGHBJRMD62IFVL8SD' where id=6; -update noar tt set b1='8NNHVX5A8' where id=6; -update noar ti set b1='8NNHVX5A8' where id=6; -update noar tt set v0='W4TO2I' where id=6; -update noar ti set v0='W4TO2I' where id=6; -update noar tt set b2='LG8XZRO0CCCYF7GVLBK81' where id=6; -update noar ti set b2='LG8XZRO0CCCYF7GVLBK81' where id=6; -update noar tt set v0='D2R5VD6P' where id=7; -update noar ti set v0='D2R5VD6P' where id=7; -update noar tt set b0='GXN1XNP38EWS1T0' where id=7; -update noar ti set b0='GXN1XNP38EWS1T0' where id=7; -update noar tt set v0='OW1YWOP7E2ATOU07TKJJ5BX2E9P55W' where id=7; -update noar ti set v0='OW1YWOP7E2ATOU07TKJJ5BX2E9P55W' where id=7; -update noar tt set b1='EZUTM6BMDS15LXBANEBEG' where id=7; -update noar ti set b1='EZUTM6BMDS15LXBANEBEG' where id=7; -update noar tt set v0='1OD0FGWZM0398YO7261QN8HYK4IVBFY' where id=7; -update noar ti set v0='1OD0FGWZM0398YO7261QN8HYK4IVBFY' where id=7; -update noar tt set b2='9LB1QPXSBRBJBJSIUC4H' where id=7; -update noar ti set b2='9LB1QPXSBRBJBJSIUC4H' where id=7; -update noar tt set v0='YUSN0UNMQ' where id=8; -update noar ti set v0='YUSN0UNMQ' where id=8; -update noar tt set b0='C636LCYT3C7EW9JY1FERJWAZEJXQR3' where id=8; -update noar ti set b0='C636LCYT3C7EW9JY1FERJWAZEJXQR3' where id=8; -update noar tt set v0='QK8FQP857BPQQAP' where id=8; -update noar ti set v0='QK8FQP857BPQQAP' where id=8; -update noar tt set b1='X2R3KPK3RTOT1MQ4G0' where id=8; -update noar ti set b1='X2R3KPK3RTOT1MQ4G0' where id=8; -update noar tt set v0='V' where id=8; -update noar ti set v0='V' where id=8; -update noar tt set b2='9M0WH6C' where id=8; -update noar ti set b2='9M0WH6C' where id=8; -update noar tt set v0='JHY53VRPGYJQRISY4JFSG6UMUUL' where id=9; -update noar ti set v0='JHY53VRPGYJQRISY4JFSG6UMUUL' where id=9; -update noar tt set b0='1R9G1GA2REZXA' where id=9; -update noar ti set b0='1R9G1GA2REZXA' where id=9; -update noar tt set v0='X4E8R20G5L5KV' where id=9; -update noar ti set v0='X4E8R20G5L5KV' where id=9; -update noar tt set b1='EZMHK5ZWEJQUBCD6TY0TUZKJJQKVHYH' where id=9; -update noar ti set b1='EZMHK5ZWEJQUBCD6TY0TUZKJJQKVHYH' where id=9; -update noar tt set v0='A' where id=9; -update noar ti set v0='A' where id=9; -update noar tt set b2='DLR4SONDNKNBV' where id=9; -update noar ti set b2='DLR4SONDNKNBV' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -v0 varchar(32) not null, -b0 tinyblob not null, -b1 blob not null, -b2 blob not null -) engine=tokudb; -insert into tt values (1,'','','',''); -insert into tt values (2,'','','',''); -insert into tt values (3,'','','',''); -insert into tt values (4,'','','',''); -insert into tt values (5,'','','',''); -insert into tt values (6,'','','',''); -insert into tt values (7,'','','',''); -insert into tt values (8,'','','',''); -insert into tt values (9,'','','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='ZZ8D76B8VLFFBMTF8W7RURN7J06NKQL' where id=1; -update noar ti set v0='ZZ8D76B8VLFFBMTF8W7RURN7J06NKQL' where id=1; -update noar tt set b0='6J0OJOB0K2RK9UCXTP' where id=1; -update noar ti set b0='6J0OJOB0K2RK9UCXTP' where id=1; -update noar tt set v0='Y198CUIDA92LXYR4' where id=1; -update noar ti set v0='Y198CUIDA92LXYR4' where id=1; -update noar tt set b1='RPI1K02DQA4QVWMWVTQMP3ZT3K6VW7O' where id=1; -update noar ti set b1='RPI1K02DQA4QVWMWVTQMP3ZT3K6VW7O' where id=1; -update noar tt set v0='4E' where id=1; -update noar ti set v0='4E' where id=1; -update noar tt set b2='BC5DQ2YNCXWTH9P70W2E4PA0WR2LR' where id=1; -update noar ti set b2='BC5DQ2YNCXWTH9P70W2E4PA0WR2LR' where id=1; -update noar tt set v0='H5AODKXM' where id=2; -update noar ti set v0='H5AODKXM' where id=2; -update noar tt set b0='9237HY6G145L' where id=2; -update noar ti set b0='9237HY6G145L' where id=2; -update noar tt set v0='BNIIJO5AR29BY9L3CPGLP2' where id=2; -update noar ti set v0='BNIIJO5AR29BY9L3CPGLP2' where id=2; -update noar tt set b1='Z7K0SRRD06BA' where id=2; -update noar ti set b1='Z7K0SRRD06BA' where id=2; -update noar tt set v0='47858' where id=2; -update noar ti set v0='47858' where id=2; -update noar tt set b2='CBGVTSW8EPR7JOEZF4GOGL' where id=2; -update noar ti set b2='CBGVTSW8EPR7JOEZF4GOGL' where id=2; -update noar tt set v0='FWYWUGEEMCDQT1FQAJF2I0CTJ' where id=3; -update noar ti set v0='FWYWUGEEMCDQT1FQAJF2I0CTJ' where id=3; -update noar tt set b0='RHKKFGGD4BL' where id=3; -update noar ti set b0='RHKKFGGD4BL' where id=3; -update noar tt set v0='JGP3B3NXXYEDURZQMXA4OOK' where id=3; -update noar ti set v0='JGP3B3NXXYEDURZQMXA4OOK' where id=3; -update noar tt set b1='ZQ9MCC2X6DUAT' where id=3; -update noar ti set b1='ZQ9MCC2X6DUAT' where id=3; -update noar tt set v0='AGKOH223XDS2WO' where id=3; -update noar ti set v0='AGKOH223XDS2WO' where id=3; -update noar tt set b2='PRHBD2TULPRGZ4VPEM941UDMQOQYOMY4' where id=3; -update noar ti set b2='PRHBD2TULPRGZ4VPEM941UDMQOQYOMY4' where id=3; -update noar tt set v0='HXGZ688SML7MB51N7PU1QS1CKIVGHU70' where id=4; -update noar ti set v0='HXGZ688SML7MB51N7PU1QS1CKIVGHU70' where id=4; -update noar tt set b0='XOI6VW96LHDK9YMY5UKLY4729' where id=4; -update noar ti set b0='XOI6VW96LHDK9YMY5UKLY4729' where id=4; -update noar tt set v0='XU78695F80KHTO7TEJ8B' where id=4; -update noar ti set v0='XU78695F80KHTO7TEJ8B' where id=4; -update noar tt set b1='VAXTK0LR69LIFBR1' where id=4; -update noar ti set b1='VAXTK0LR69LIFBR1' where id=4; -update noar tt set v0='Q' where id=4; -update noar ti set v0='Q' where id=4; -update noar tt set b2='E7YS30R0KZSWM37CQD0JLPASF6SUMO' where id=4; -update noar ti set b2='E7YS30R0KZSWM37CQD0JLPASF6SUMO' where id=4; -update noar tt set v0='NKTZ' where id=5; -update noar ti set v0='NKTZ' where id=5; -update noar tt set b0='GGUV67DID6TCD4EYR58KG4Q8I7J' where id=5; -update noar ti set b0='GGUV67DID6TCD4EYR58KG4Q8I7J' where id=5; -update noar tt set v0='P7W86CHFJ6HHM6WPB42J5C1E' where id=5; -update noar ti set v0='P7W86CHFJ6HHM6WPB42J5C1E' where id=5; -update noar tt set b1='J0P8DUG3Q06X5JXJ' where id=5; -update noar ti set b1='J0P8DUG3Q06X5JXJ' where id=5; -update noar tt set v0='5T0G486U3P2MGAGMR7WROWJSJ18T1OU4' where id=5; -update noar ti set v0='5T0G486U3P2MGAGMR7WROWJSJ18T1OU4' where id=5; -update noar tt set b2='KWCM' where id=5; -update noar ti set b2='KWCM' where id=5; -update noar tt set v0='S2L6RJGZG837U' where id=6; -update noar ti set v0='S2L6RJGZG837U' where id=6; -update noar tt set b0='9D9FMUS3UOVNAJUYEGKJBOVRLNRDC05D' where id=6; -update noar ti set b0='9D9FMUS3UOVNAJUYEGKJBOVRLNRDC05D' where id=6; -update noar tt set v0='6ZZHECEI52F313T2' where id=6; -update noar ti set v0='6ZZHECEI52F313T2' where id=6; -update noar tt set b1='5GMOCX7SUU' where id=6; -update noar ti set b1='5GMOCX7SUU' where id=6; -update noar tt set v0='FJ8DGZGCPBX4Q01RD2BDA' where id=6; -update noar ti set v0='FJ8DGZGCPBX4Q01RD2BDA' where id=6; -update noar tt set b2='LK96K0V9QNJS1JNSW' where id=6; -update noar ti set b2='LK96K0V9QNJS1JNSW' where id=6; -update noar tt set v0='CQ1WIPZISC188YMKA' where id=7; -update noar ti set v0='CQ1WIPZISC188YMKA' where id=7; -update noar tt set b0='AKBTBDCEVWW7' where id=7; -update noar ti set b0='AKBTBDCEVWW7' where id=7; -update noar tt set v0='511VERZBD22JZ6ETJJ0UXCZB2249TZ9' where id=7; -update noar ti set v0='511VERZBD22JZ6ETJJ0UXCZB2249TZ9' where id=7; -update noar tt set b1='DJJ2HODYS' where id=7; -update noar ti set b1='DJJ2HODYS' where id=7; -update noar tt set v0='JJUVP90KR9FD6' where id=7; -update noar ti set v0='JJUVP90KR9FD6' where id=7; -update noar tt set b2='LBMOOPR8332YZ8SGUQ884YS3P6MVD' where id=7; -update noar ti set b2='LBMOOPR8332YZ8SGUQ884YS3P6MVD' where id=7; -update noar tt set v0='ESN6E0' where id=8; -update noar ti set v0='ESN6E0' where id=8; -update noar tt set b0='BGG8Z' where id=8; -update noar ti set b0='BGG8Z' where id=8; -update noar tt set v0='R3XFXIO7J3VR' where id=8; -update noar ti set v0='R3XFXIO7J3VR' where id=8; -update noar tt set b1='P7IRB' where id=8; -update noar ti set b1='P7IRB' where id=8; -update noar tt set v0='F0R33BXEC87EVTYIZF' where id=8; -update noar ti set v0='F0R33BXEC87EVTYIZF' where id=8; -update noar tt set b2='OEXVB93OKIAX6HCC7K9XH3M9LJL' where id=8; -update noar ti set b2='OEXVB93OKIAX6HCC7K9XH3M9LJL' where id=8; -update noar tt set v0='INLH6' where id=9; -update noar ti set v0='INLH6' where id=9; -update noar tt set b0='TY' where id=9; -update noar ti set b0='TY' where id=9; -update noar tt set v0='G79ENEPDWJTIT57CKVLI' where id=9; -update noar ti set v0='G79ENEPDWJTIT57CKVLI' where id=9; -update noar tt set b1='1OAP4I2VXAVDD2J2SSXE1MKIRPD50AOO' where id=9; -update noar ti set b1='1OAP4I2VXAVDD2J2SSXE1MKIRPD50AOO' where id=9; -update noar tt set v0='TSEM89X' where id=9; -update noar ti set v0='TSEM89X' where id=9; -update noar tt set b2='NUAP4MRQOP0Z46Y0' where id=9; -update noar ti set b2='NUAP4MRQOP0Z46Y0' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -v0 varchar(256) not null, -b0 tinyblob not null, -b1 blob not null, -b2 blob not null -) engine=tokudb; -insert into tt values (1,'','','',''); -insert into tt values (2,'','','',''); -insert into tt values (3,'','','',''); -insert into tt values (4,'','','',''); -insert into tt values (5,'','','',''); -insert into tt values (6,'','','',''); -insert into tt values (7,'','','',''); -insert into tt values (8,'','','',''); -insert into tt values (9,'','','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='2CZ5RH5VV24WM3MWX9E68DSVG10W7Q0' where id=1; -update noar ti set v0='2CZ5RH5VV24WM3MWX9E68DSVG10W7Q0' where id=1; -update noar tt set b0='X1FV2B' where id=1; -update noar ti set b0='X1FV2B' where id=1; -update noar tt set v0='4OL6' where id=1; -update noar ti set v0='4OL6' where id=1; -update noar tt set b1='N9HG8GGYQ7GE0HT29YN0CGFNAXY9' where id=1; -update noar ti set b1='N9HG8GGYQ7GE0HT29YN0CGFNAXY9' where id=1; -update noar tt set v0='K2QX8ZDC5YWU' where id=1; -update noar ti set v0='K2QX8ZDC5YWU' where id=1; -update noar tt set b2='1Y6CGI5ZU6QNVWT' where id=1; -update noar ti set b2='1Y6CGI5ZU6QNVWT' where id=1; -update noar tt set v0='L8NG9D7IOKGBF8WVL0FNCAL9IJOZTNC' where id=2; -update noar ti set v0='L8NG9D7IOKGBF8WVL0FNCAL9IJOZTNC' where id=2; -update noar tt set b0='66Y' where id=2; -update noar ti set b0='66Y' where id=2; -update noar tt set v0='DS2VN4WL0M35A3UUZIBL0X3' where id=2; -update noar ti set v0='DS2VN4WL0M35A3UUZIBL0X3' where id=2; -update noar tt set b1='ZA6VGOH3ANO1849RVMT' where id=2; -update noar ti set b1='ZA6VGOH3ANO1849RVMT' where id=2; -update noar tt set v0='YOTY' where id=2; -update noar ti set v0='YOTY' where id=2; -update noar tt set b2='264E7IB' where id=2; -update noar ti set b2='264E7IB' where id=2; -update noar tt set v0='P' where id=3; -update noar ti set v0='P' where id=3; -update noar tt set b0='BZ' where id=3; -update noar ti set b0='BZ' where id=3; -update noar tt set v0='HEW' where id=3; -update noar ti set v0='HEW' where id=3; -update noar tt set b1='GFM4WVNW8IB68MLE' where id=3; -update noar ti set b1='GFM4WVNW8IB68MLE' where id=3; -update noar tt set v0='5IVJ52WKG7RZ1KTOQYVJTZFBJ3AQVO' where id=3; -update noar ti set v0='5IVJ52WKG7RZ1KTOQYVJTZFBJ3AQVO' where id=3; -update noar tt set b2='0H6QSY6AAC35E' where id=3; -update noar ti set b2='0H6QSY6AAC35E' where id=3; -update noar tt set v0='LRN90EE76VR6A8VUX5JHYRE0' where id=4; -update noar ti set v0='LRN90EE76VR6A8VUX5JHYRE0' where id=4; -update noar tt set b0='K85C7K2DYMTTU5K5JMA' where id=4; -update noar ti set b0='K85C7K2DYMTTU5K5JMA' where id=4; -update noar tt set v0='QP7TCXMYEGH7NIUKNYA8IDIS8ZV0' where id=4; -update noar ti set v0='QP7TCXMYEGH7NIUKNYA8IDIS8ZV0' where id=4; -update noar tt set b1='ECP5SYHQHFMO5' where id=4; -update noar ti set b1='ECP5SYHQHFMO5' where id=4; -update noar tt set v0='BGJCFHKAIY2OU7SWV' where id=4; -update noar ti set v0='BGJCFHKAIY2OU7SWV' where id=4; -update noar tt set b2='W40RECBSDLYEQ499' where id=4; -update noar ti set b2='W40RECBSDLYEQ499' where id=4; -update noar tt set v0='WYC3FTPGBASMDRJCSWQGSA4ETQ' where id=5; -update noar ti set v0='WYC3FTPGBASMDRJCSWQGSA4ETQ' where id=5; -update noar tt set b0='EKWRHT2' where id=5; -update noar ti set b0='EKWRHT2' where id=5; -update noar tt set v0='VH6JW0HNVEZJTLHPEISH6' where id=5; -update noar ti set v0='VH6JW0HNVEZJTLHPEISH6' where id=5; -update noar tt set b1='0C78Y1KXW2DQHUFGKI50CH5GFA2152U' where id=5; -update noar ti set b1='0C78Y1KXW2DQHUFGKI50CH5GFA2152U' where id=5; -update noar tt set v0='N88UGE0' where id=5; -update noar ti set v0='N88UGE0' where id=5; -update noar tt set b2='JAYD1RTVX6ENRE2HKEGEMK9MJ3LT' where id=5; -update noar ti set b2='JAYD1RTVX6ENRE2HKEGEMK9MJ3LT' where id=5; -update noar tt set v0='1DKTMGV8ZIJFY70' where id=6; -update noar ti set v0='1DKTMGV8ZIJFY70' where id=6; -update noar tt set b0='BC07R3' where id=6; -update noar ti set b0='BC07R3' where id=6; -update noar tt set v0='NS09OAMX96XDSJTCXJO29PN4JO0' where id=6; -update noar ti set v0='NS09OAMX96XDSJTCXJO29PN4JO0' where id=6; -update noar tt set b1='WCP5SITMIL29E69EWSAEI3B' where id=6; -update noar ti set b1='WCP5SITMIL29E69EWSAEI3B' where id=6; -update noar tt set v0='IHK7WN8KFMK756IKZLKEP0' where id=6; -update noar ti set v0='IHK7WN8KFMK756IKZLKEP0' where id=6; -update noar tt set b2='WQWBIX31' where id=6; -update noar ti set b2='WQWBIX31' where id=6; -update noar tt set v0='CEDR9V9LA531JSHH6XP0PVD' where id=7; -update noar ti set v0='CEDR9V9LA531JSHH6XP0PVD' where id=7; -update noar tt set b0='CRRISU2K9' where id=7; -update noar ti set b0='CRRISU2K9' where id=7; -update noar tt set v0='4' where id=7; -update noar ti set v0='4' where id=7; -update noar tt set b1='OX' where id=7; -update noar ti set b1='OX' where id=7; -update noar tt set v0='WOS8D9XMOAYXXQKLKZS8U35XUF7X' where id=7; -update noar ti set v0='WOS8D9XMOAYXXQKLKZS8U35XUF7X' where id=7; -update noar tt set b2='PMC2GMSSNRCAK8CS846DC2' where id=7; -update noar ti set b2='PMC2GMSSNRCAK8CS846DC2' where id=7; -update noar tt set v0='41GT' where id=8; -update noar ti set v0='41GT' where id=8; -update noar tt set b0='LA6EA7OJLYS2TEZGJLKVXM' where id=8; -update noar ti set b0='LA6EA7OJLYS2TEZGJLKVXM' where id=8; -update noar tt set v0='T11M0VBTGOTC7' where id=8; -update noar ti set v0='T11M0VBTGOTC7' where id=8; -update noar tt set b1='65YZD8QBVH8NYKLCJ0CSX452B1RANUY7' where id=8; -update noar ti set b1='65YZD8QBVH8NYKLCJ0CSX452B1RANUY7' where id=8; -update noar tt set v0='2FZDE35RKUV3R7BDMHAE' where id=8; -update noar ti set v0='2FZDE35RKUV3R7BDMHAE' where id=8; -update noar tt set b2='F1C9OR2HWIZ1LZVS57B' where id=8; -update noar ti set b2='F1C9OR2HWIZ1LZVS57B' where id=8; -update noar tt set v0='SDMYKH4BPLWPWMWLO8RKXRZYI' where id=9; -update noar ti set v0='SDMYKH4BPLWPWMWLO8RKXRZYI' where id=9; -update noar tt set b0='24PNSZGAS8SXGXTP' where id=9; -update noar ti set b0='24PNSZGAS8SXGXTP' where id=9; -update noar tt set v0='IJIYFZX0QA49' where id=9; -update noar ti set v0='IJIYFZX0QA49' where id=9; -update noar tt set b1='LE12M0LRSYF4I8NN4OZ0EPJBPXVJJF' where id=9; -update noar ti set b1='LE12M0LRSYF4I8NN4OZ0EPJBPXVJJF' where id=9; -update noar tt set v0='LMKGF2YF' where id=9; -update noar ti set v0='LMKGF2YF' where id=9; -update noar tt set b2='DB63DA0HYCQCEAQ7C2BQO29' where id=9; -update noar ti set b2='DB63DA0HYCQCEAQ7C2BQO29' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -v0 varchar(32) null, -b0 tinyblob null, -b1 blob null, -b2 mediumblob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='EVAQN12PBZJE1JVM04C05IIL6GFWS' where id=1; -update noar ti set v0='EVAQN12PBZJE1JVM04C05IIL6GFWS' where id=1; -update noar tt set b0='3IZ5JC5VC32MCUHKMFU6KF46IANYZ' where id=1; -update noar ti set b0='3IZ5JC5VC32MCUHKMFU6KF46IANYZ' where id=1; -update noar tt set v0='EA01' where id=1; -update noar ti set v0='EA01' where id=1; -update noar tt set b1='5LGXTRUYYSQGN8BI1EPQ' where id=1; -update noar ti set b1='5LGXTRUYYSQGN8BI1EPQ' where id=1; -update noar tt set v0='BMWJ2ICLHBUBXQMDFUJHTDZLMSRP' where id=1; -update noar ti set v0='BMWJ2ICLHBUBXQMDFUJHTDZLMSRP' where id=1; -update noar tt set b2='J2JQI8RJ8IOTAZHTND6Y29G2SGJJSXF9' where id=1; -update noar ti set b2='J2JQI8RJ8IOTAZHTND6Y29G2SGJJSXF9' where id=1; -update noar tt set v0='SRAYZ5RBY4SFKH4AMSXRS25J1VMG' where id=2; -update noar ti set v0='SRAYZ5RBY4SFKH4AMSXRS25J1VMG' where id=2; -update noar tt set b0='D94NCPFQQQCPIE1TE2G' where id=2; -update noar ti set b0='D94NCPFQQQCPIE1TE2G' where id=2; -update noar tt set v0='D' where id=2; -update noar ti set v0='D' where id=2; -update noar tt set b1='M6FOQ5IMOH' where id=2; -update noar ti set b1='M6FOQ5IMOH' where id=2; -update noar tt set v0='CV' where id=2; -update noar ti set v0='CV' where id=2; -update noar tt set b2='5GSOB0UCF4XG' where id=2; -update noar ti set b2='5GSOB0UCF4XG' where id=2; -update noar tt set v0='TNRA2XXPBI' where id=3; -update noar ti set v0='TNRA2XXPBI' where id=3; -update noar tt set b0='1LS63JCEJBTLL4KGCQ8N3ZYS2WLN' where id=3; -update noar ti set b0='1LS63JCEJBTLL4KGCQ8N3ZYS2WLN' where id=3; -update noar tt set v0='HVEI2' where id=3; -update noar ti set v0='HVEI2' where id=3; -update noar tt set b1='G20MDR85O0ACKEZT' where id=3; -update noar ti set b1='G20MDR85O0ACKEZT' where id=3; -update noar tt set v0='P7328SD5HM794AMY' where id=3; -update noar ti set v0='P7328SD5HM794AMY' where id=3; -update noar tt set b2='2ROQFG68JQYLCBVCTK9OFP8G' where id=3; -update noar ti set b2='2ROQFG68JQYLCBVCTK9OFP8G' where id=3; -update noar tt set v0='WN3AIRV5ITL' where id=4; -update noar ti set v0='WN3AIRV5ITL' where id=4; -update noar tt set b0='CSC7HBU' where id=4; -update noar ti set b0='CSC7HBU' where id=4; -update noar tt set v0='8L7F7BLUDIP0UXAE2FAMHCVG0BVTFAU8' where id=4; -update noar ti set v0='8L7F7BLUDIP0UXAE2FAMHCVG0BVTFAU8' where id=4; -update noar tt set b1='TS2K1JLQKU7RS7ULFV' where id=4; -update noar ti set b1='TS2K1JLQKU7RS7ULFV' where id=4; -update noar tt set v0='RYUB49CTP9' where id=4; -update noar ti set v0='RYUB49CTP9' where id=4; -update noar tt set b2='7RWPY9O20MYJJXKAYO4XYT0E' where id=4; -update noar ti set b2='7RWPY9O20MYJJXKAYO4XYT0E' where id=4; -update noar tt set v0='C2W4L6F7OLPHEOYBRX89TANBTQD' where id=5; -update noar ti set v0='C2W4L6F7OLPHEOYBRX89TANBTQD' where id=5; -update noar tt set b0='0G6I1NQIOBE' where id=5; -update noar ti set b0='0G6I1NQIOBE' where id=5; -update noar tt set v0='9BMGYUAOBGSSACLSXXXP' where id=5; -update noar ti set v0='9BMGYUAOBGSSACLSXXXP' where id=5; -update noar tt set b1='5AKX5' where id=5; -update noar ti set b1='5AKX5' where id=5; -update noar tt set v0='BMA7HYV' where id=5; -update noar ti set v0='BMA7HYV' where id=5; -update noar tt set b2='TUGY5II9QVVW77L6QZ799NP5TMH' where id=5; -update noar ti set b2='TUGY5II9QVVW77L6QZ799NP5TMH' where id=5; -update noar tt set v0='J2OSPZWSTVY' where id=6; -update noar ti set v0='J2OSPZWSTVY' where id=6; -update noar tt set b0='XW2XUK1JSAI' where id=6; -update noar ti set b0='XW2XUK1JSAI' where id=6; -update noar tt set v0='13B5S7628U3H660R' where id=6; -update noar ti set v0='13B5S7628U3H660R' where id=6; -update noar tt set b1='CL9YZ5499ZWEB6V95LEYCZ8XV' where id=6; -update noar ti set b1='CL9YZ5499ZWEB6V95LEYCZ8XV' where id=6; -update noar tt set v0='8HP01RHF77L7PCMFSS2QFZW3K' where id=6; -update noar ti set v0='8HP01RHF77L7PCMFSS2QFZW3K' where id=6; -update noar tt set b2='L55PAF7DAYW3L' where id=6; -update noar ti set b2='L55PAF7DAYW3L' where id=6; -update noar tt set v0='QRRBU' where id=7; -update noar ti set v0='QRRBU' where id=7; -update noar tt set b0='W71' where id=7; -update noar ti set b0='W71' where id=7; -update noar tt set v0='9V7UOY' where id=7; -update noar ti set v0='9V7UOY' where id=7; -update noar tt set b1='W3882CQ3X3UJN150MQD1M' where id=7; -update noar ti set b1='W3882CQ3X3UJN150MQD1M' where id=7; -update noar tt set v0='UYXHJY2TNCSWXPGGDF8RBGVQ4LM' where id=7; -update noar ti set v0='UYXHJY2TNCSWXPGGDF8RBGVQ4LM' where id=7; -update noar tt set b2='BE9TGMD1B6E9B' where id=7; -update noar ti set b2='BE9TGMD1B6E9B' where id=7; -update noar tt set v0='WONPYSTO5' where id=8; -update noar ti set v0='WONPYSTO5' where id=8; -update noar tt set b0='SD24QLJK4BR1SM3GT2JKLQGLQ65' where id=8; -update noar ti set b0='SD24QLJK4BR1SM3GT2JKLQGLQ65' where id=8; -update noar tt set v0='Z' where id=8; -update noar ti set v0='Z' where id=8; -update noar tt set b1='UW888Q6J' where id=8; -update noar ti set b1='UW888Q6J' where id=8; -update noar tt set v0='0VP7N7N' where id=8; -update noar ti set v0='0VP7N7N' where id=8; -update noar tt set b2='VQ' where id=8; -update noar ti set b2='VQ' where id=8; -update noar tt set v0='M9' where id=9; -update noar ti set v0='M9' where id=9; -update noar tt set b0='JTBH6ZYBQ0K14DUB8ATRH' where id=9; -update noar ti set b0='JTBH6ZYBQ0K14DUB8ATRH' where id=9; -update noar tt set v0='DKWX95RZVA7NMBCAM2SRLLWBA2V' where id=9; -update noar ti set v0='DKWX95RZVA7NMBCAM2SRLLWBA2V' where id=9; -update noar tt set b1='4VT00IPDUKI3' where id=9; -update noar ti set b1='4VT00IPDUKI3' where id=9; -update noar tt set v0='JUDG2P0Q8H15J4FGVYW1KFVEG' where id=9; -update noar ti set v0='JUDG2P0Q8H15J4FGVYW1KFVEG' where id=9; -update noar tt set b2='354467' where id=9; -update noar ti set b2='354467' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -v0 varchar(256) null, -b0 tinyblob null, -b1 blob null, -b2 mediumblob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='BYET' where id=1; -update noar ti set v0='BYET' where id=1; -update noar tt set b0='PXRAQCV856SNE' where id=1; -update noar ti set b0='PXRAQCV856SNE' where id=1; -update noar tt set v0='JWK5RCYMK800H40OUF6G92KG2OJ1LG' where id=1; -update noar ti set v0='JWK5RCYMK800H40OUF6G92KG2OJ1LG' where id=1; -update noar tt set b1='JX8LZI7E9KZN' where id=1; -update noar ti set b1='JX8LZI7E9KZN' where id=1; -update noar tt set v0='P9QJFO5' where id=1; -update noar ti set v0='P9QJFO5' where id=1; -update noar tt set b2='8SKV8S9Z8N0HDDNYQNB3GUF' where id=1; -update noar ti set b2='8SKV8S9Z8N0HDDNYQNB3GUF' where id=1; -update noar tt set v0='KYVSRLP6037JRMDAGQBJMI2' where id=2; -update noar ti set v0='KYVSRLP6037JRMDAGQBJMI2' where id=2; -update noar tt set b0='WATMSCTME30ZTLNGN42JJI2' where id=2; -update noar ti set b0='WATMSCTME30ZTLNGN42JJI2' where id=2; -update noar tt set v0='X18BL7PGFQ1TZHYETTDHB5UVWC8' where id=2; -update noar ti set v0='X18BL7PGFQ1TZHYETTDHB5UVWC8' where id=2; -update noar tt set b1='W2OALQJKHGAFCNW7GVE' where id=2; -update noar ti set b1='W2OALQJKHGAFCNW7GVE' where id=2; -update noar tt set v0='BP4AY2LL6X559KUL9T1OC2VA3XP' where id=2; -update noar ti set v0='BP4AY2LL6X559KUL9T1OC2VA3XP' where id=2; -update noar tt set b2='ZW8EMX88VZJD6EYPH8I92NKEHMNT5OR' where id=2; -update noar ti set b2='ZW8EMX88VZJD6EYPH8I92NKEHMNT5OR' where id=2; -update noar tt set v0='VD' where id=3; -update noar ti set v0='VD' where id=3; -update noar tt set b0='7E4YU3CTFDDGVPGPK68QFEKX2SQ' where id=3; -update noar ti set b0='7E4YU3CTFDDGVPGPK68QFEKX2SQ' where id=3; -update noar tt set v0='3BJ6ISBOADND' where id=3; -update noar ti set v0='3BJ6ISBOADND' where id=3; -update noar tt set b1='TCTWC8UNPER1D7XY5LE8' where id=3; -update noar ti set b1='TCTWC8UNPER1D7XY5LE8' where id=3; -update noar tt set v0='VOE8' where id=3; -update noar ti set v0='VOE8' where id=3; -update noar tt set b2='0ETQ7NULKA' where id=3; -update noar ti set b2='0ETQ7NULKA' where id=3; -update noar tt set v0='4DFNX3BM4QTWEQ8BBDQD495R' where id=4; -update noar ti set v0='4DFNX3BM4QTWEQ8BBDQD495R' where id=4; -update noar tt set b0='C06NB4XODKEO8FIO' where id=4; -update noar ti set b0='C06NB4XODKEO8FIO' where id=4; -update noar tt set v0='4G7OK0XBAPQ798YD1KUQBWSOH' where id=4; -update noar ti set v0='4G7OK0XBAPQ798YD1KUQBWSOH' where id=4; -update noar tt set b1='XI6Z6NM14' where id=4; -update noar ti set b1='XI6Z6NM14' where id=4; -update noar tt set v0='JRKS4P2F7SF47YBB8YC7UWW' where id=4; -update noar ti set v0='JRKS4P2F7SF47YBB8YC7UWW' where id=4; -update noar tt set b2='A1' where id=4; -update noar ti set b2='A1' where id=4; -update noar tt set v0='008MOSMOPNFFI2H3ALVNMGUZ19S8856' where id=5; -update noar ti set v0='008MOSMOPNFFI2H3ALVNMGUZ19S8856' where id=5; -update noar tt set b0='X3IL8YPVXGEGCG4' where id=5; -update noar ti set b0='X3IL8YPVXGEGCG4' where id=5; -update noar tt set v0='5787N40J27E18N7DG7XHVZS' where id=5; -update noar ti set v0='5787N40J27E18N7DG7XHVZS' where id=5; -update noar tt set b1='08ZI' where id=5; -update noar ti set b1='08ZI' where id=5; -update noar tt set v0='BH' where id=5; -update noar ti set v0='BH' where id=5; -update noar tt set b2='7JEQU8UJ40' where id=5; -update noar ti set b2='7JEQU8UJ40' where id=5; -update noar tt set v0='KU1PYWE' where id=6; -update noar ti set v0='KU1PYWE' where id=6; -update noar tt set b0='ZG5I9AM26O' where id=6; -update noar ti set b0='ZG5I9AM26O' where id=6; -update noar tt set v0='QEJ9B5N3YC9QOQ1QPP7ZN' where id=6; -update noar ti set v0='QEJ9B5N3YC9QOQ1QPP7ZN' where id=6; -update noar tt set b1='JZIFRF3Y68RVXOTM2D' where id=6; -update noar ti set b1='JZIFRF3Y68RVXOTM2D' where id=6; -update noar tt set v0='ZXYREEOS1XWLZYDNJLBV188XY' where id=6; -update noar ti set v0='ZXYREEOS1XWLZYDNJLBV188XY' where id=6; -update noar tt set b2='9KW9K0LT61WV3B' where id=6; -update noar ti set b2='9KW9K0LT61WV3B' where id=6; -update noar tt set v0='8YCO64' where id=7; -update noar ti set v0='8YCO64' where id=7; -update noar tt set b0='05OPWMBY7YRHSE974DLKOLIRUKBBOJD1' where id=7; -update noar ti set b0='05OPWMBY7YRHSE974DLKOLIRUKBBOJD1' where id=7; -update noar tt set v0='MB7EICCYEG8W4ZZS8FEHP1U648I7IFQ' where id=7; -update noar ti set v0='MB7EICCYEG8W4ZZS8FEHP1U648I7IFQ' where id=7; -update noar tt set b1='8J59C0' where id=7; -update noar ti set b1='8J59C0' where id=7; -update noar tt set v0='LOCIM2W8CZ377UFF96B9TGSE6F' where id=7; -update noar ti set v0='LOCIM2W8CZ377UFF96B9TGSE6F' where id=7; -update noar tt set b2='TWO4ZOC79BRSFV25Q6RDVT6AN' where id=7; -update noar ti set b2='TWO4ZOC79BRSFV25Q6RDVT6AN' where id=7; -update noar tt set v0='HWF9IDDAZZWOH8MPLP1GM2C8CFU8' where id=8; -update noar ti set v0='HWF9IDDAZZWOH8MPLP1GM2C8CFU8' where id=8; -update noar tt set b0='6GMPQM6ZD' where id=8; -update noar ti set b0='6GMPQM6ZD' where id=8; -update noar tt set v0='DQGA0GCK0U2UW8QYVLVUSH' where id=8; -update noar ti set v0='DQGA0GCK0U2UW8QYVLVUSH' where id=8; -update noar tt set b1='E5WX3ZW1QHVMYEQDR5W9QX4W' where id=8; -update noar ti set b1='E5WX3ZW1QHVMYEQDR5W9QX4W' where id=8; -update noar tt set v0='EB' where id=8; -update noar ti set v0='EB' where id=8; -update noar tt set b2='OROMIZLVZASGGAJ6GR82VAMX' where id=8; -update noar ti set b2='OROMIZLVZASGGAJ6GR82VAMX' where id=8; -update noar tt set v0='EXX2' where id=9; -update noar ti set v0='EXX2' where id=9; -update noar tt set b0='MXZ2HC1L70FFC' where id=9; -update noar ti set b0='MXZ2HC1L70FFC' where id=9; -update noar tt set v0='P8U87WH594NVIJ58KIWL1' where id=9; -update noar ti set v0='P8U87WH594NVIJ58KIWL1' where id=9; -update noar tt set b1='0' where id=9; -update noar ti set b1='0' where id=9; -update noar tt set v0='QGL' where id=9; -update noar ti set v0='QGL' where id=9; -update noar tt set b2='CZ3BR6MT1X' where id=9; -update noar ti set b2='CZ3BR6MT1X' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -v0 varchar(32) not null, -b0 tinyblob not null, -b1 blob not null, -b2 mediumblob not null -) engine=tokudb; -insert into tt values (1,'','','',''); -insert into tt values (2,'','','',''); -insert into tt values (3,'','','',''); -insert into tt values (4,'','','',''); -insert into tt values (5,'','','',''); -insert into tt values (6,'','','',''); -insert into tt values (7,'','','',''); -insert into tt values (8,'','','',''); -insert into tt values (9,'','','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='D0KN24MEJQZC2PR9A' where id=1; -update noar ti set v0='D0KN24MEJQZC2PR9A' where id=1; -update noar tt set b0='2N8Z' where id=1; -update noar ti set b0='2N8Z' where id=1; -update noar tt set v0='65N82EVEWW' where id=1; -update noar ti set v0='65N82EVEWW' where id=1; -update noar tt set b1='UL6KAL1GU8' where id=1; -update noar ti set b1='UL6KAL1GU8' where id=1; -update noar tt set v0='WUUIRYVFVWE6D' where id=1; -update noar ti set v0='WUUIRYVFVWE6D' where id=1; -update noar tt set b2='8WN7R34J9G1HLL2' where id=1; -update noar ti set b2='8WN7R34J9G1HLL2' where id=1; -update noar tt set v0='T1CYE2210XO7YWSIJ9JEP4' where id=2; -update noar ti set v0='T1CYE2210XO7YWSIJ9JEP4' where id=2; -update noar tt set b0='8' where id=2; -update noar ti set b0='8' where id=2; -update noar tt set v0='K9JUEPN8' where id=2; -update noar ti set v0='K9JUEPN8' where id=2; -update noar tt set b1='E4252OX77L0FF8N2E' where id=2; -update noar ti set b1='E4252OX77L0FF8N2E' where id=2; -update noar tt set v0='EH8FKIVDGQVREOYO04NKJDZ3PCFA5' where id=2; -update noar ti set v0='EH8FKIVDGQVREOYO04NKJDZ3PCFA5' where id=2; -update noar tt set b2='052LG5XWEY5B0Z06VP3PI195EO' where id=2; -update noar ti set b2='052LG5XWEY5B0Z06VP3PI195EO' where id=2; -update noar tt set v0='WE0IU25LJBCS7PZEZHUI65FRH6' where id=3; -update noar ti set v0='WE0IU25LJBCS7PZEZHUI65FRH6' where id=3; -update noar tt set b0='T9AU1XYOYU0D2163KYQ' where id=3; -update noar ti set b0='T9AU1XYOYU0D2163KYQ' where id=3; -update noar tt set v0='B5INDB' where id=3; -update noar ti set v0='B5INDB' where id=3; -update noar tt set b1='Z9EQ4WDLPY72R5Y4MGD1MW7K7KL' where id=3; -update noar ti set b1='Z9EQ4WDLPY72R5Y4MGD1MW7K7KL' where id=3; -update noar tt set v0='H7G9PRO1RBR7VMGFQRNH3LR2X9QXE' where id=3; -update noar ti set v0='H7G9PRO1RBR7VMGFQRNH3LR2X9QXE' where id=3; -update noar tt set b2='W3TULW7JR84ZDVLJQW2904TH7PPTIR' where id=3; -update noar ti set b2='W3TULW7JR84ZDVLJQW2904TH7PPTIR' where id=3; -update noar tt set v0='XGWEVHMQN8' where id=4; -update noar ti set v0='XGWEVHMQN8' where id=4; -update noar tt set b0='UOU' where id=4; -update noar ti set b0='UOU' where id=4; -update noar tt set v0='2VH3AL9XARP' where id=4; -update noar ti set v0='2VH3AL9XARP' where id=4; -update noar tt set b1='3I1BDJOX8X1QRM0NSIW' where id=4; -update noar ti set b1='3I1BDJOX8X1QRM0NSIW' where id=4; -update noar tt set v0='W' where id=4; -update noar ti set v0='W' where id=4; -update noar tt set b2='TN90VCQT9KJ0RMH8AF3RF' where id=4; -update noar ti set b2='TN90VCQT9KJ0RMH8AF3RF' where id=4; -update noar tt set v0='AJU3R6P6KUNMX2VB8WZKNYJVZ3IA' where id=5; -update noar ti set v0='AJU3R6P6KUNMX2VB8WZKNYJVZ3IA' where id=5; -update noar tt set b0='7Z' where id=5; -update noar ti set b0='7Z' where id=5; -update noar tt set v0='P8DP9RLR3ECYFA6AL86' where id=5; -update noar ti set v0='P8DP9RLR3ECYFA6AL86' where id=5; -update noar tt set b1='OKZ3' where id=5; -update noar ti set b1='OKZ3' where id=5; -update noar tt set v0='5EZ' where id=5; -update noar ti set v0='5EZ' where id=5; -update noar tt set b2='CTP5K69VS8HE' where id=5; -update noar ti set b2='CTP5K69VS8HE' where id=5; -update noar tt set v0='9QH969YHJYTT3FFDO5' where id=6; -update noar ti set v0='9QH969YHJYTT3FFDO5' where id=6; -update noar tt set b0='OEFSO5LYQVKT2WGKW70L8U' where id=6; -update noar ti set b0='OEFSO5LYQVKT2WGKW70L8U' where id=6; -update noar tt set v0='MO46M12Q27QNQZWA2EXKXPG4FJR' where id=6; -update noar ti set v0='MO46M12Q27QNQZWA2EXKXPG4FJR' where id=6; -update noar tt set b1='0' where id=6; -update noar ti set b1='0' where id=6; -update noar tt set v0='4GQ8Y6DFHJADTOBN9F2WJO0' where id=6; -update noar ti set v0='4GQ8Y6DFHJADTOBN9F2WJO0' where id=6; -update noar tt set b2='Z4EOV1MHPLU' where id=6; -update noar ti set b2='Z4EOV1MHPLU' where id=6; -update noar tt set v0='R5IT2AVSYH4M48MUFV' where id=7; -update noar ti set v0='R5IT2AVSYH4M48MUFV' where id=7; -update noar tt set b0='SB0FAOGB0ORU9' where id=7; -update noar ti set b0='SB0FAOGB0ORU9' where id=7; -update noar tt set v0='0QCC57BCZISAQ' where id=7; -update noar ti set v0='0QCC57BCZISAQ' where id=7; -update noar tt set b1='D92T0HMD4981FXDMOJUN50' where id=7; -update noar ti set b1='D92T0HMD4981FXDMOJUN50' where id=7; -update noar tt set v0='0CJUJ5CDQFOHSW094UU9CA09A' where id=7; -update noar ti set v0='0CJUJ5CDQFOHSW094UU9CA09A' where id=7; -update noar tt set b2='KK8OROB8YCC370CS' where id=7; -update noar ti set b2='KK8OROB8YCC370CS' where id=7; -update noar tt set v0='JEG' where id=8; -update noar ti set v0='JEG' where id=8; -update noar tt set b0='U7E9P6FHLM5EFQ5IUWLZX5M1E5N507B4' where id=8; -update noar ti set b0='U7E9P6FHLM5EFQ5IUWLZX5M1E5N507B4' where id=8; -update noar tt set v0='FO8C' where id=8; -update noar ti set v0='FO8C' where id=8; -update noar tt set b1='ZWQ4' where id=8; -update noar ti set b1='ZWQ4' where id=8; -update noar tt set v0='9XROV2SW3HUS6X6NEEVF4H9LHX0' where id=8; -update noar ti set v0='9XROV2SW3HUS6X6NEEVF4H9LHX0' where id=8; -update noar tt set b2='N5UGM6G7117XM88NGWTLDV18MWWB' where id=8; -update noar ti set b2='N5UGM6G7117XM88NGWTLDV18MWWB' where id=8; -update noar tt set v0='6XE2YRV3YO6E3RWOU83RRILL0AV8QSH' where id=9; -update noar ti set v0='6XE2YRV3YO6E3RWOU83RRILL0AV8QSH' where id=9; -update noar tt set b0='KPKNO6PQPI1ORO0Z856LG4L' where id=9; -update noar ti set b0='KPKNO6PQPI1ORO0Z856LG4L' where id=9; -update noar tt set v0='1CCIFCNOV5A2XZ' where id=9; -update noar ti set v0='1CCIFCNOV5A2XZ' where id=9; -update noar tt set b1='6L8ZD2IO8B3K83OY' where id=9; -update noar ti set b1='6L8ZD2IO8B3K83OY' where id=9; -update noar tt set v0='K4U' where id=9; -update noar ti set v0='K4U' where id=9; -update noar tt set b2='F7G3BZYU0Q97K' where id=9; -update noar ti set b2='F7G3BZYU0Q97K' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -v0 varchar(256) not null, -b0 tinyblob not null, -b1 blob not null, -b2 mediumblob not null -) engine=tokudb; -insert into tt values (1,'','','',''); -insert into tt values (2,'','','',''); -insert into tt values (3,'','','',''); -insert into tt values (4,'','','',''); -insert into tt values (5,'','','',''); -insert into tt values (6,'','','',''); -insert into tt values (7,'','','',''); -insert into tt values (8,'','','',''); -insert into tt values (9,'','','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='Q1' where id=1; -update noar ti set v0='Q1' where id=1; -update noar tt set b0='9VQUXZD4VZ523ZWP5' where id=1; -update noar ti set b0='9VQUXZD4VZ523ZWP5' where id=1; -update noar tt set v0='E48Q' where id=1; -update noar ti set v0='E48Q' where id=1; -update noar tt set b1='U597Z8G1L418ZLQ2P' where id=1; -update noar ti set b1='U597Z8G1L418ZLQ2P' where id=1; -update noar tt set v0='V13D5F06LANSMKAAT1D0CAOFIKH6HL' where id=1; -update noar ti set v0='V13D5F06LANSMKAAT1D0CAOFIKH6HL' where id=1; -update noar tt set b2='QHPACUBFHZZ' where id=1; -update noar ti set b2='QHPACUBFHZZ' where id=1; -update noar tt set v0='2N6O0O7SBSHSM03SD1U' where id=2; -update noar ti set v0='2N6O0O7SBSHSM03SD1U' where id=2; -update noar tt set b0='NBIQ1I6NGSSC4HIN2BDKYYNLUR' where id=2; -update noar ti set b0='NBIQ1I6NGSSC4HIN2BDKYYNLUR' where id=2; -update noar tt set v0='5' where id=2; -update noar ti set v0='5' where id=2; -update noar tt set b1='M1YN6ADRB5EQHW' where id=2; -update noar ti set b1='M1YN6ADRB5EQHW' where id=2; -update noar tt set v0='VYM4FOSZ7XIBMRLYOP' where id=2; -update noar ti set v0='VYM4FOSZ7XIBMRLYOP' where id=2; -update noar tt set b2='RP0BUGIV' where id=2; -update noar ti set b2='RP0BUGIV' where id=2; -update noar tt set v0='B9IQQIAFG087NQ7Y35LJOCY2BBI569L' where id=3; -update noar ti set v0='B9IQQIAFG087NQ7Y35LJOCY2BBI569L' where id=3; -update noar tt set b0='79TBCF95C07GPJ7WZC7RQAYJL' where id=3; -update noar ti set b0='79TBCF95C07GPJ7WZC7RQAYJL' where id=3; -update noar tt set v0='BYGREAH' where id=3; -update noar ti set v0='BYGREAH' where id=3; -update noar tt set b1='E' where id=3; -update noar ti set b1='E' where id=3; -update noar tt set v0='BYHW7P6' where id=3; -update noar ti set v0='BYHW7P6' where id=3; -update noar tt set b2='ZTET0I75AN' where id=3; -update noar ti set b2='ZTET0I75AN' where id=3; -update noar tt set v0='FGPAJFQIJCIYD4SP1' where id=4; -update noar ti set v0='FGPAJFQIJCIYD4SP1' where id=4; -update noar tt set b0='5KCMB' where id=4; -update noar ti set b0='5KCMB' where id=4; -update noar tt set v0='ETFUPDJZX0EFFJ6TAMNQ725' where id=4; -update noar ti set v0='ETFUPDJZX0EFFJ6TAMNQ725' where id=4; -update noar tt set b1='7' where id=4; -update noar ti set b1='7' where id=4; -update noar tt set v0='X0PSMOQLVB3V77D3N' where id=4; -update noar ti set v0='X0PSMOQLVB3V77D3N' where id=4; -update noar tt set b2='3A7GSBROGZTF0DERBRDUIKLEO0HGYA' where id=4; -update noar ti set b2='3A7GSBROGZTF0DERBRDUIKLEO0HGYA' where id=4; -update noar tt set v0='TX9KW6PNGJNVBN' where id=5; -update noar ti set v0='TX9KW6PNGJNVBN' where id=5; -update noar tt set b0='RN602RZG7ZO2JFLBXC8YDR55A' where id=5; -update noar ti set b0='RN602RZG7ZO2JFLBXC8YDR55A' where id=5; -update noar tt set v0='NDVJVJL' where id=5; -update noar ti set v0='NDVJVJL' where id=5; -update noar tt set b1='YBDZ0O3NVOJ1H4NCV072X9PH5N8' where id=5; -update noar ti set b1='YBDZ0O3NVOJ1H4NCV072X9PH5N8' where id=5; -update noar tt set v0='DWD4UR0ZH916C9E7L1BHSNI' where id=5; -update noar ti set v0='DWD4UR0ZH916C9E7L1BHSNI' where id=5; -update noar tt set b2='HZFJ51046UEJ6KDR2W2ZES5K54DNGEG' where id=5; -update noar ti set b2='HZFJ51046UEJ6KDR2W2ZES5K54DNGEG' where id=5; -update noar tt set v0='GXKK' where id=6; -update noar ti set v0='GXKK' where id=6; -update noar tt set b0='8HO' where id=6; -update noar ti set b0='8HO' where id=6; -update noar tt set v0='ZND9KNTDDSQPVE7083Z' where id=6; -update noar ti set v0='ZND9KNTDDSQPVE7083Z' where id=6; -update noar tt set b1='L9T93T8955I8W652DFDH3K' where id=6; -update noar ti set b1='L9T93T8955I8W652DFDH3K' where id=6; -update noar tt set v0='R890OUQEBACJMNLAZ' where id=6; -update noar ti set v0='R890OUQEBACJMNLAZ' where id=6; -update noar tt set b2='J18RS1FYPRWCLFBML8RLM20G' where id=6; -update noar ti set b2='J18RS1FYPRWCLFBML8RLM20G' where id=6; -update noar tt set v0='Q9C0NP8G' where id=7; -update noar ti set v0='Q9C0NP8G' where id=7; -update noar tt set b0='O1KDM982G' where id=7; -update noar ti set b0='O1KDM982G' where id=7; -update noar tt set v0='WMN569SYKVWDE30CA5A1BBS5FNYE' where id=7; -update noar ti set v0='WMN569SYKVWDE30CA5A1BBS5FNYE' where id=7; -update noar tt set b1='W6CZQFW3I9MLC' where id=7; -update noar ti set b1='W6CZQFW3I9MLC' where id=7; -update noar tt set v0='3ZI2NA5DHWS7XC8422ULEGEM6R718J' where id=7; -update noar ti set v0='3ZI2NA5DHWS7XC8422ULEGEM6R718J' where id=7; -update noar tt set b2='RXC7Y3WUE9S9VIUFW92IE' where id=7; -update noar ti set b2='RXC7Y3WUE9S9VIUFW92IE' where id=7; -update noar tt set v0='TRV6JBLN' where id=8; -update noar ti set v0='TRV6JBLN' where id=8; -update noar tt set b0='C18E0M961RH5KJT' where id=8; -update noar ti set b0='C18E0M961RH5KJT' where id=8; -update noar tt set v0='RUC64AA6BLU5DDZ3BASMKW4XCE0Q7' where id=8; -update noar ti set v0='RUC64AA6BLU5DDZ3BASMKW4XCE0Q7' where id=8; -update noar tt set b1='X5OTXW1ZU5UMSBLRFHSNEOM7XOSK' where id=8; -update noar ti set b1='X5OTXW1ZU5UMSBLRFHSNEOM7XOSK' where id=8; -update noar tt set v0='HSUPT30OB36TW3HZ2JOIEOD0YXNE2' where id=8; -update noar ti set v0='HSUPT30OB36TW3HZ2JOIEOD0YXNE2' where id=8; -update noar tt set b2='SDFVZVBSRZLQ4VXPKZZ3' where id=8; -update noar ti set b2='SDFVZVBSRZLQ4VXPKZZ3' where id=8; -update noar tt set v0='TU4VS9BNWJ22EWHQGD6SJ54CTUM7JG' where id=9; -update noar ti set v0='TU4VS9BNWJ22EWHQGD6SJ54CTUM7JG' where id=9; -update noar tt set b0='3R4' where id=9; -update noar ti set b0='3R4' where id=9; -update noar tt set v0='Z2W4IOS' where id=9; -update noar ti set v0='Z2W4IOS' where id=9; -update noar tt set b1='X5JTLZY' where id=9; -update noar ti set b1='X5JTLZY' where id=9; -update noar tt set v0='GJNLF89WINZPO' where id=9; -update noar ti set v0='GJNLF89WINZPO' where id=9; -update noar tt set b2='SSLPPOH4GQQ' where id=9; -update noar ti set b2='SSLPPOH4GQQ' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -v0 varchar(32) null, -b0 tinyblob null, -b1 blob null, -b2 longblob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='HUUBW07QPI19Z7GY' where id=1; -update noar ti set v0='HUUBW07QPI19Z7GY' where id=1; -update noar tt set b0='DWB0N0KRCDTIZ5BIYT' where id=1; -update noar ti set b0='DWB0N0KRCDTIZ5BIYT' where id=1; -update noar tt set v0='KNPWL2XSER0' where id=1; -update noar ti set v0='KNPWL2XSER0' where id=1; -update noar tt set b1='Q' where id=1; -update noar ti set b1='Q' where id=1; -update noar tt set v0='PEDK0PMW3VTPVFFD1JD5' where id=1; -update noar ti set v0='PEDK0PMW3VTPVFFD1JD5' where id=1; -update noar tt set b2='JERA7GGLASUJAMA5A8CV4XVZO04ACEL' where id=1; -update noar ti set b2='JERA7GGLASUJAMA5A8CV4XVZO04ACEL' where id=1; -update noar tt set v0='MY96RKIJT9JVXA3BV2IQXYOCAREB' where id=2; -update noar ti set v0='MY96RKIJT9JVXA3BV2IQXYOCAREB' where id=2; -update noar tt set b0='DVL5QAWLBJPJT4' where id=2; -update noar ti set b0='DVL5QAWLBJPJT4' where id=2; -update noar tt set v0='3' where id=2; -update noar ti set v0='3' where id=2; -update noar tt set b1='ZQAY3QAIXVVC' where id=2; -update noar ti set b1='ZQAY3QAIXVVC' where id=2; -update noar tt set v0='GKUYV9' where id=2; -update noar ti set v0='GKUYV9' where id=2; -update noar tt set b2='3X4QZGBUOGJMAU9KBSC9C' where id=2; -update noar ti set b2='3X4QZGBUOGJMAU9KBSC9C' where id=2; -update noar tt set v0='UUAAQ16QIMA0P8UFBCT' where id=3; -update noar ti set v0='UUAAQ16QIMA0P8UFBCT' where id=3; -update noar tt set b0='NE5F80ACBVSUS5XFXRQY0U' where id=3; -update noar ti set b0='NE5F80ACBVSUS5XFXRQY0U' where id=3; -update noar tt set v0='NLI8SQ3U5' where id=3; -update noar ti set v0='NLI8SQ3U5' where id=3; -update noar tt set b1='A' where id=3; -update noar ti set b1='A' where id=3; -update noar tt set v0='O4CSQ07GJP6SO5RCJ0MN94TUMV04QMY' where id=3; -update noar ti set v0='O4CSQ07GJP6SO5RCJ0MN94TUMV04QMY' where id=3; -update noar tt set b2='A5S51YNYAH2' where id=3; -update noar ti set b2='A5S51YNYAH2' where id=3; -update noar tt set v0='YHZWWBJTMI45NC493TMCY6OVXRE0F' where id=4; -update noar ti set v0='YHZWWBJTMI45NC493TMCY6OVXRE0F' where id=4; -update noar tt set b0='D5ZBMT53IPDHFPUH6V3OSAZSSKZ0O17' where id=4; -update noar ti set b0='D5ZBMT53IPDHFPUH6V3OSAZSSKZ0O17' where id=4; -update noar tt set v0='EYDTO0IAL8H0W' where id=4; -update noar ti set v0='EYDTO0IAL8H0W' where id=4; -update noar tt set b1='R2HM4JKFJJERCO' where id=4; -update noar ti set b1='R2HM4JKFJJERCO' where id=4; -update noar tt set v0='50TVQZ09536WYTEOWL0BTVS764' where id=4; -update noar ti set v0='50TVQZ09536WYTEOWL0BTVS764' where id=4; -update noar tt set b2='WOC222J9M' where id=4; -update noar ti set b2='WOC222J9M' where id=4; -update noar tt set v0='KH1KA' where id=5; -update noar ti set v0='KH1KA' where id=5; -update noar tt set b0='WIQFJYZFG67FENHZQ6S8FMLTU36' where id=5; -update noar ti set b0='WIQFJYZFG67FENHZQ6S8FMLTU36' where id=5; -update noar tt set v0='36MOL10Q7NQSNDLCFLWU' where id=5; -update noar ti set v0='36MOL10Q7NQSNDLCFLWU' where id=5; -update noar tt set b1='R2XT' where id=5; -update noar ti set b1='R2XT' where id=5; -update noar tt set v0='YY991MRRCKDH' where id=5; -update noar ti set v0='YY991MRRCKDH' where id=5; -update noar tt set b2='U9C5QAS6O881SVEVEJTIXVEJ' where id=5; -update noar ti set b2='U9C5QAS6O881SVEVEJTIXVEJ' where id=5; -update noar tt set v0='92BZBW68T' where id=6; -update noar ti set v0='92BZBW68T' where id=6; -update noar tt set b0='OVX8ZKV' where id=6; -update noar ti set b0='OVX8ZKV' where id=6; -update noar tt set v0='RIJIO3ONQFITCVVRESKM1ASBPJX' where id=6; -update noar ti set v0='RIJIO3ONQFITCVVRESKM1ASBPJX' where id=6; -update noar tt set b1='EW8DENP53OAZOXECCG28YJ08APPEG6N' where id=6; -update noar ti set b1='EW8DENP53OAZOXECCG28YJ08APPEG6N' where id=6; -update noar tt set v0='IO9AUF6W' where id=6; -update noar ti set v0='IO9AUF6W' where id=6; -update noar tt set b2='JNBQTLWHEZQ' where id=6; -update noar ti set b2='JNBQTLWHEZQ' where id=6; -update noar tt set v0='63QUY1OUU4S0QPFCJSILTQDR76KF2M6B' where id=7; -update noar ti set v0='63QUY1OUU4S0QPFCJSILTQDR76KF2M6B' where id=7; -update noar tt set b0='F3R7ZJHQFN6KL0LTE' where id=7; -update noar ti set b0='F3R7ZJHQFN6KL0LTE' where id=7; -update noar tt set v0='MEYPOP8052KKJFPTVBOIL75ZAXD' where id=7; -update noar ti set v0='MEYPOP8052KKJFPTVBOIL75ZAXD' where id=7; -update noar tt set b1='GPC9N0AI66TOW72GJO29G4YV' where id=7; -update noar ti set b1='GPC9N0AI66TOW72GJO29G4YV' where id=7; -update noar tt set v0='AKYN29I0441KRBSNWH919C' where id=7; -update noar ti set v0='AKYN29I0441KRBSNWH919C' where id=7; -update noar tt set b2='1L' where id=7; -update noar ti set b2='1L' where id=7; -update noar tt set v0='7EPXFBQK' where id=8; -update noar ti set v0='7EPXFBQK' where id=8; -update noar tt set b0='ZV0A3YMAMRLPZCM9BLG2D4Q' where id=8; -update noar ti set b0='ZV0A3YMAMRLPZCM9BLG2D4Q' where id=8; -update noar tt set v0='IAL666LNCG35LYQ0QQK6O5' where id=8; -update noar ti set v0='IAL666LNCG35LYQ0QQK6O5' where id=8; -update noar tt set b1='EW11N63S2OBD7SFD9VNJLL9' where id=8; -update noar ti set b1='EW11N63S2OBD7SFD9VNJLL9' where id=8; -update noar tt set v0='E6QTX01IY2M21N7H' where id=8; -update noar ti set v0='E6QTX01IY2M21N7H' where id=8; -update noar tt set b2='OH56KOFBNTLC26K' where id=8; -update noar ti set b2='OH56KOFBNTLC26K' where id=8; -update noar tt set v0='EGEGWWJJV21CK83K5NXBQGR0CG1' where id=9; -update noar ti set v0='EGEGWWJJV21CK83K5NXBQGR0CG1' where id=9; -update noar tt set b0='O7H1SNTNK0ESVK9APLB2Z9PM3NR9E09' where id=9; -update noar ti set b0='O7H1SNTNK0ESVK9APLB2Z9PM3NR9E09' where id=9; -update noar tt set v0='Q1DHSP4I2' where id=9; -update noar ti set v0='Q1DHSP4I2' where id=9; -update noar tt set b1='IF5DY803ZWPK28V55ZDX1X3' where id=9; -update noar ti set b1='IF5DY803ZWPK28V55ZDX1X3' where id=9; -update noar tt set v0='DQCA7C1SFL0BU23DPX1RCBFE7WAYF' where id=9; -update noar ti set v0='DQCA7C1SFL0BU23DPX1RCBFE7WAYF' where id=9; -update noar tt set b2='OKYK9I5SPMXPVYJIC3CS5' where id=9; -update noar ti set b2='OKYK9I5SPMXPVYJIC3CS5' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -v0 varchar(256) null, -b0 tinyblob null, -b1 blob null, -b2 longblob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='7X9ZCU5EB1K9UTS8WJ51QCSTPGZ2X' where id=1; -update noar ti set v0='7X9ZCU5EB1K9UTS8WJ51QCSTPGZ2X' where id=1; -update noar tt set b0='YB8NTN82M' where id=1; -update noar ti set b0='YB8NTN82M' where id=1; -update noar tt set v0='LRL32Z5N10JBOF6' where id=1; -update noar ti set v0='LRL32Z5N10JBOF6' where id=1; -update noar tt set b1='SVXTVA7OG59RTB' where id=1; -update noar ti set b1='SVXTVA7OG59RTB' where id=1; -update noar tt set v0='5RQF5QA6JGO' where id=1; -update noar ti set v0='5RQF5QA6JGO' where id=1; -update noar tt set b2='LEOR80S' where id=1; -update noar ti set b2='LEOR80S' where id=1; -update noar tt set v0='YSZTG' where id=2; -update noar ti set v0='YSZTG' where id=2; -update noar tt set b0='UW01H8XU8E41VQJNKIQPY43R37E' where id=2; -update noar ti set b0='UW01H8XU8E41VQJNKIQPY43R37E' where id=2; -update noar tt set v0='4U7JBMZB54FMAZV' where id=2; -update noar ti set v0='4U7JBMZB54FMAZV' where id=2; -update noar tt set b1='7UJ4PJDGKF6WFCXGAJZA81SWT' where id=2; -update noar ti set b1='7UJ4PJDGKF6WFCXGAJZA81SWT' where id=2; -update noar tt set v0='XMT1U' where id=2; -update noar ti set v0='XMT1U' where id=2; -update noar tt set b2='2' where id=2; -update noar ti set b2='2' where id=2; -update noar tt set v0='1GXOXA9B3NSGQHU7NBE' where id=3; -update noar ti set v0='1GXOXA9B3NSGQHU7NBE' where id=3; -update noar tt set b0='Q' where id=3; -update noar ti set b0='Q' where id=3; -update noar tt set v0='SY02UKUCTT5A' where id=3; -update noar ti set v0='SY02UKUCTT5A' where id=3; -update noar tt set b1='OQA4' where id=3; -update noar ti set b1='OQA4' where id=3; -update noar tt set v0='DTPZ3DT8PWK8GMWZV' where id=3; -update noar ti set v0='DTPZ3DT8PWK8GMWZV' where id=3; -update noar tt set b2='BYTZ' where id=3; -update noar ti set b2='BYTZ' where id=3; -update noar tt set v0='15603KRF033QUHOY' where id=4; -update noar ti set v0='15603KRF033QUHOY' where id=4; -update noar tt set b0='S7KDI30VIRK9UTK' where id=4; -update noar ti set b0='S7KDI30VIRK9UTK' where id=4; -update noar tt set v0='K0FER' where id=4; -update noar ti set v0='K0FER' where id=4; -update noar tt set b1='42Z7ZIUCK1QXN7' where id=4; -update noar ti set b1='42Z7ZIUCK1QXN7' where id=4; -update noar tt set v0='YKLGSFX7QZ49D9EMOV1EQ' where id=4; -update noar ti set v0='YKLGSFX7QZ49D9EMOV1EQ' where id=4; -update noar tt set b2='MJTDHCSXUDJGL6QJFH9HDED1D' where id=4; -update noar ti set b2='MJTDHCSXUDJGL6QJFH9HDED1D' where id=4; -update noar tt set v0='Q95TBK8Z5Q45ERZQBAE2SYUC3' where id=5; -update noar ti set v0='Q95TBK8Z5Q45ERZQBAE2SYUC3' where id=5; -update noar tt set b0='O8DH7N2SXU1W4CVIHVYRZGW0TN6V1SDQ' where id=5; -update noar ti set b0='O8DH7N2SXU1W4CVIHVYRZGW0TN6V1SDQ' where id=5; -update noar tt set v0='BGVZXQEI40OKTLREY2DA9M' where id=5; -update noar ti set v0='BGVZXQEI40OKTLREY2DA9M' where id=5; -update noar tt set b1='09H5O6IDB32T31OYK5W29M' where id=5; -update noar ti set b1='09H5O6IDB32T31OYK5W29M' where id=5; -update noar tt set v0='MD4BVS633PCUN2W4I8QII' where id=5; -update noar ti set v0='MD4BVS633PCUN2W4I8QII' where id=5; -update noar tt set b2='BFJKMP6SMV3E' where id=5; -update noar ti set b2='BFJKMP6SMV3E' where id=5; -update noar tt set v0='3C96007Y7766C0665X4E5TSC9I33WROS' where id=6; -update noar ti set v0='3C96007Y7766C0665X4E5TSC9I33WROS' where id=6; -update noar tt set b0='8GX6Q05B7HT' where id=6; -update noar ti set b0='8GX6Q05B7HT' where id=6; -update noar tt set v0='TF8YT7Z7TP7SWJ' where id=6; -update noar ti set v0='TF8YT7Z7TP7SWJ' where id=6; -update noar tt set b1='SD3NF1OXAW0B072C54G3LYED8L' where id=6; -update noar ti set b1='SD3NF1OXAW0B072C54G3LYED8L' where id=6; -update noar tt set v0='DXDZ439TUJKULG59CRB0Y9UZ0IH' where id=6; -update noar ti set v0='DXDZ439TUJKULG59CRB0Y9UZ0IH' where id=6; -update noar tt set b2='DJUY1FZ8T8OA5QFCYP81UKNZ98' where id=6; -update noar ti set b2='DJUY1FZ8T8OA5QFCYP81UKNZ98' where id=6; -update noar tt set v0='I6PH4WVRW9LMMJGJOX8G' where id=7; -update noar ti set v0='I6PH4WVRW9LMMJGJOX8G' where id=7; -update noar tt set b0='O3FXX' where id=7; -update noar ti set b0='O3FXX' where id=7; -update noar tt set v0='BL05AVSKRGE0WIOYD6PE8F24SW' where id=7; -update noar ti set v0='BL05AVSKRGE0WIOYD6PE8F24SW' where id=7; -update noar tt set b1='RVCM' where id=7; -update noar ti set b1='RVCM' where id=7; -update noar tt set v0='YPV9DMLVN60CYJKS4MBMQHW' where id=7; -update noar ti set v0='YPV9DMLVN60CYJKS4MBMQHW' where id=7; -update noar tt set b2='BIQ0IXWC485HTEQLR' where id=7; -update noar ti set b2='BIQ0IXWC485HTEQLR' where id=7; -update noar tt set v0='FCTFC0KKZJ3GEKKSY8F82TQ6' where id=8; -update noar ti set v0='FCTFC0KKZJ3GEKKSY8F82TQ6' where id=8; -update noar tt set b0='40LTMGJRJ' where id=8; -update noar ti set b0='40LTMGJRJ' where id=8; -update noar tt set v0='YAQH37GOJUP91JVO0YKMW0ET' where id=8; -update noar ti set v0='YAQH37GOJUP91JVO0YKMW0ET' where id=8; -update noar tt set b1='IHCRM52VXHCDPDFJ4NBICFAYOOX7' where id=8; -update noar ti set b1='IHCRM52VXHCDPDFJ4NBICFAYOOX7' where id=8; -update noar tt set v0='2J4V4ZSAQYNC70B' where id=8; -update noar ti set v0='2J4V4ZSAQYNC70B' where id=8; -update noar tt set b2='DZZ0' where id=8; -update noar ti set b2='DZZ0' where id=8; -update noar tt set v0='6Y3EE5LFZOJGN88SKQ7P08NRZQTZ1BM' where id=9; -update noar ti set v0='6Y3EE5LFZOJGN88SKQ7P08NRZQTZ1BM' where id=9; -update noar tt set b0='RSZVBVQCPOFXOP20BZDU7' where id=9; -update noar ti set b0='RSZVBVQCPOFXOP20BZDU7' where id=9; -update noar tt set v0='P6QM8EN0RKBV' where id=9; -update noar ti set v0='P6QM8EN0RKBV' where id=9; -update noar tt set b1='6GQNANW4XY' where id=9; -update noar ti set b1='6GQNANW4XY' where id=9; -update noar tt set v0='W6XP1RQSQQYFT0CTGP5K8636FW' where id=9; -update noar ti set v0='W6XP1RQSQQYFT0CTGP5K8636FW' where id=9; -update noar tt set b2='FHKJWR6H7L9T90F' where id=9; -update noar ti set b2='FHKJWR6H7L9T90F' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -v0 varchar(32) not null, -b0 tinyblob not null, -b1 blob not null, -b2 longblob not null -) engine=tokudb; -insert into tt values (1,'','','',''); -insert into tt values (2,'','','',''); -insert into tt values (3,'','','',''); -insert into tt values (4,'','','',''); -insert into tt values (5,'','','',''); -insert into tt values (6,'','','',''); -insert into tt values (7,'','','',''); -insert into tt values (8,'','','',''); -insert into tt values (9,'','','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='EXR4KANRV4NMMQQBLEJHZO2JY' where id=1; -update noar ti set v0='EXR4KANRV4NMMQQBLEJHZO2JY' where id=1; -update noar tt set b0='JENF6SB63H4AYG0' where id=1; -update noar ti set b0='JENF6SB63H4AYG0' where id=1; -update noar tt set v0='5GOEYG587Y6R29AOQ0FDIN1EB6GHI2' where id=1; -update noar ti set v0='5GOEYG587Y6R29AOQ0FDIN1EB6GHI2' where id=1; -update noar tt set b1='NHEDBLGN0PET6ZSL24QB1X8OVMBZFM' where id=1; -update noar ti set b1='NHEDBLGN0PET6ZSL24QB1X8OVMBZFM' where id=1; -update noar tt set v0='MPNAJSBUJKKF74VDUEEUW4YG' where id=1; -update noar ti set v0='MPNAJSBUJKKF74VDUEEUW4YG' where id=1; -update noar tt set b2='51DHPJHOSO37F9J87DRQBOT042ZN' where id=1; -update noar ti set b2='51DHPJHOSO37F9J87DRQBOT042ZN' where id=1; -update noar tt set v0='Y25R' where id=2; -update noar ti set v0='Y25R' where id=2; -update noar tt set b0='H4VK6D' where id=2; -update noar ti set b0='H4VK6D' where id=2; -update noar tt set v0='AWEAEXIEIBCI' where id=2; -update noar ti set v0='AWEAEXIEIBCI' where id=2; -update noar tt set b1='ZWPPE01VM' where id=2; -update noar ti set b1='ZWPPE01VM' where id=2; -update noar tt set v0='NB58' where id=2; -update noar ti set v0='NB58' where id=2; -update noar tt set b2='674AUDAVG38P0RDH22K9LU7DS' where id=2; -update noar ti set b2='674AUDAVG38P0RDH22K9LU7DS' where id=2; -update noar tt set v0='ZSR72DAZ' where id=3; -update noar ti set v0='ZSR72DAZ' where id=3; -update noar tt set b0='XB02MJ4ICXBRV3VV' where id=3; -update noar ti set b0='XB02MJ4ICXBRV3VV' where id=3; -update noar tt set v0='FUECLF2I8' where id=3; -update noar ti set v0='FUECLF2I8' where id=3; -update noar tt set b1='J' where id=3; -update noar ti set b1='J' where id=3; -update noar tt set v0='H6YTR6XT4KTYNJII' where id=3; -update noar ti set v0='H6YTR6XT4KTYNJII' where id=3; -update noar tt set b2='76GPQ2RSIC6QAS74K1Z491W6' where id=3; -update noar ti set b2='76GPQ2RSIC6QAS74K1Z491W6' where id=3; -update noar tt set v0='01JE4D8TM216PN4LKRC6OJ2R4RQ6PWC' where id=4; -update noar ti set v0='01JE4D8TM216PN4LKRC6OJ2R4RQ6PWC' where id=4; -update noar tt set b0='FZ6ROIOL' where id=4; -update noar ti set b0='FZ6ROIOL' where id=4; -update noar tt set v0='SDEGGDYRK7507WI2YMX0H' where id=4; -update noar ti set v0='SDEGGDYRK7507WI2YMX0H' where id=4; -update noar tt set b1='V712HMILEG2H' where id=4; -update noar ti set b1='V712HMILEG2H' where id=4; -update noar tt set v0='XAHGN' where id=4; -update noar ti set v0='XAHGN' where id=4; -update noar tt set b2='RD4MIT78' where id=4; -update noar ti set b2='RD4MIT78' where id=4; -update noar tt set v0='61D9790SJYM01MY' where id=5; -update noar ti set v0='61D9790SJYM01MY' where id=5; -update noar tt set b0='64WWSHKCKQZOF6BXS1Q' where id=5; -update noar ti set b0='64WWSHKCKQZOF6BXS1Q' where id=5; -update noar tt set v0='ZPKXSNHNL3G36FYF3LRLZ7' where id=5; -update noar ti set v0='ZPKXSNHNL3G36FYF3LRLZ7' where id=5; -update noar tt set b1='XODEY' where id=5; -update noar ti set b1='XODEY' where id=5; -update noar tt set v0='Z6Q5JV9RJ' where id=5; -update noar ti set v0='Z6Q5JV9RJ' where id=5; -update noar tt set b2='3F2Y' where id=5; -update noar ti set b2='3F2Y' where id=5; -update noar tt set v0='GKP57TE04U' where id=6; -update noar ti set v0='GKP57TE04U' where id=6; -update noar tt set b0='BN42QNST97TY1IEL67IBQSMR9K8J' where id=6; -update noar ti set b0='BN42QNST97TY1IEL67IBQSMR9K8J' where id=6; -update noar tt set v0='UYJ7H577BH85MWIKC' where id=6; -update noar ti set v0='UYJ7H577BH85MWIKC' where id=6; -update noar tt set b1='NG051CTO4TBVZKI4IMHVDX90DGWQ4NAM' where id=6; -update noar ti set b1='NG051CTO4TBVZKI4IMHVDX90DGWQ4NAM' where id=6; -update noar tt set v0='VTT4CEHEGQWXUJ' where id=6; -update noar ti set v0='VTT4CEHEGQWXUJ' where id=6; -update noar tt set b2='CKK2F' where id=6; -update noar ti set b2='CKK2F' where id=6; -update noar tt set v0='Q' where id=7; -update noar ti set v0='Q' where id=7; -update noar tt set b0='VBDD3FGRLSOJ4XGUZ088R3C' where id=7; -update noar ti set b0='VBDD3FGRLSOJ4XGUZ088R3C' where id=7; -update noar tt set v0='YNVNV1I56VEM2D31E6X2H2' where id=7; -update noar ti set v0='YNVNV1I56VEM2D31E6X2H2' where id=7; -update noar tt set b1='PD8IBJQVWZ098IJD' where id=7; -update noar ti set b1='PD8IBJQVWZ098IJD' where id=7; -update noar tt set v0='A2FYME7YXM5ZSZZANJ1TW3LI27RZ' where id=7; -update noar ti set v0='A2FYME7YXM5ZSZZANJ1TW3LI27RZ' where id=7; -update noar tt set b2='YAQUYE7NZJO0ISVQYZF4ST7LJVOAOD2' where id=7; -update noar ti set b2='YAQUYE7NZJO0ISVQYZF4ST7LJVOAOD2' where id=7; -update noar tt set v0='RHPNSAHA00OBP9O410X1J9MOCMEFEB' where id=8; -update noar ti set v0='RHPNSAHA00OBP9O410X1J9MOCMEFEB' where id=8; -update noar tt set b0='5GNSKEP4QOYWGWB1E9E0X4G6I8ATPQ' where id=8; -update noar ti set b0='5GNSKEP4QOYWGWB1E9E0X4G6I8ATPQ' where id=8; -update noar tt set v0='G12FLSA31' where id=8; -update noar ti set v0='G12FLSA31' where id=8; -update noar tt set b1='VL70WN5HM02I05MUX9BZ33I6AI5QIA' where id=8; -update noar ti set b1='VL70WN5HM02I05MUX9BZ33I6AI5QIA' where id=8; -update noar tt set v0='C8J5WQW' where id=8; -update noar ti set v0='C8J5WQW' where id=8; -update noar tt set b2='ZL58PNX8M4EYFH7MVZJL3GYS73W3' where id=8; -update noar ti set b2='ZL58PNX8M4EYFH7MVZJL3GYS73W3' where id=8; -update noar tt set v0='9BF8O69YBTF7LBL9A' where id=9; -update noar ti set v0='9BF8O69YBTF7LBL9A' where id=9; -update noar tt set b0='L381608G9R6IDQCKP' where id=9; -update noar ti set b0='L381608G9R6IDQCKP' where id=9; -update noar tt set v0='CHIRGZUA' where id=9; -update noar ti set v0='CHIRGZUA' where id=9; -update noar tt set b1='YK5IQS' where id=9; -update noar ti set b1='YK5IQS' where id=9; -update noar tt set v0='VAGEWP3DF1QNWH' where id=9; -update noar ti set v0='VAGEWP3DF1QNWH' where id=9; -update noar tt set b2='EEXAQOWD89IMT47' where id=9; -update noar ti set b2='EEXAQOWD89IMT47' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -v0 varchar(256) not null, -b0 tinyblob not null, -b1 blob not null, -b2 longblob not null -) engine=tokudb; -insert into tt values (1,'','','',''); -insert into tt values (2,'','','',''); -insert into tt values (3,'','','',''); -insert into tt values (4,'','','',''); -insert into tt values (5,'','','',''); -insert into tt values (6,'','','',''); -insert into tt values (7,'','','',''); -insert into tt values (8,'','','',''); -insert into tt values (9,'','','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='0BB' where id=1; -update noar ti set v0='0BB' where id=1; -update noar tt set b0='RAHWAQAPLY' where id=1; -update noar ti set b0='RAHWAQAPLY' where id=1; -update noar tt set v0='Y5Z11UQVE90O73DMDKMDQZ9932OF' where id=1; -update noar ti set v0='Y5Z11UQVE90O73DMDKMDQZ9932OF' where id=1; -update noar tt set b1='QUPOF3KAJQB18OAARBVLNV52VX0R' where id=1; -update noar ti set b1='QUPOF3KAJQB18OAARBVLNV52VX0R' where id=1; -update noar tt set v0='PLF4U2B0ISP' where id=1; -update noar ti set v0='PLF4U2B0ISP' where id=1; -update noar tt set b2='FAYV' where id=1; -update noar ti set b2='FAYV' where id=1; -update noar tt set v0='G8WT62HP' where id=2; -update noar ti set v0='G8WT62HP' where id=2; -update noar tt set b0='7PZG3BXRNKKAIITYMSEBE0' where id=2; -update noar ti set b0='7PZG3BXRNKKAIITYMSEBE0' where id=2; -update noar tt set v0='91QS87M6T0WNUR0E2K2PHM' where id=2; -update noar ti set v0='91QS87M6T0WNUR0E2K2PHM' where id=2; -update noar tt set b1='GP1FH3JDOTH6HREGRS20KXB0L8' where id=2; -update noar ti set b1='GP1FH3JDOTH6HREGRS20KXB0L8' where id=2; -update noar tt set v0='B28RHH69' where id=2; -update noar ti set v0='B28RHH69' where id=2; -update noar tt set b2='7CO8IXI' where id=2; -update noar ti set b2='7CO8IXI' where id=2; -update noar tt set v0='XWZY' where id=3; -update noar ti set v0='XWZY' where id=3; -update noar tt set b0='N1CPEDG83RGBU517ZLCZ2HKRR4SRPE7' where id=3; -update noar ti set b0='N1CPEDG83RGBU517ZLCZ2HKRR4SRPE7' where id=3; -update noar tt set v0='BU4K6E' where id=3; -update noar ti set v0='BU4K6E' where id=3; -update noar tt set b1='PE7DE5GB4SV60A2QN8JOWK9' where id=3; -update noar ti set b1='PE7DE5GB4SV60A2QN8JOWK9' where id=3; -update noar tt set v0='WOSLQIOTD9O5ZSAI174CLI0' where id=3; -update noar ti set v0='WOSLQIOTD9O5ZSAI174CLI0' where id=3; -update noar tt set b2='QUZM4G15GGJBRWV8R' where id=3; -update noar ti set b2='QUZM4G15GGJBRWV8R' where id=3; -update noar tt set v0='3UC521OAT0HPH4GN3ATKW' where id=4; -update noar ti set v0='3UC521OAT0HPH4GN3ATKW' where id=4; -update noar tt set b0='PT8GXTAETOFR7PLG1VGVGHHHEAST7TBL' where id=4; -update noar ti set b0='PT8GXTAETOFR7PLG1VGVGHHHEAST7TBL' where id=4; -update noar tt set v0='8ZWM2GJOHDWHCKBH3' where id=4; -update noar ti set v0='8ZWM2GJOHDWHCKBH3' where id=4; -update noar tt set b1='DC8J' where id=4; -update noar ti set b1='DC8J' where id=4; -update noar tt set v0='Y1H2ODQEN8FGI' where id=4; -update noar ti set v0='Y1H2ODQEN8FGI' where id=4; -update noar tt set b2='O7UF5AZB0N55YEL' where id=4; -update noar ti set b2='O7UF5AZB0N55YEL' where id=4; -update noar tt set v0='893J' where id=5; -update noar ti set v0='893J' where id=5; -update noar tt set b0='NWEB79GK3UI7V4EKQ7DOASKEPN8' where id=5; -update noar ti set b0='NWEB79GK3UI7V4EKQ7DOASKEPN8' where id=5; -update noar tt set v0='AICZWHML3DUWP2JSVJVIRSO2EIRYZ' where id=5; -update noar ti set v0='AICZWHML3DUWP2JSVJVIRSO2EIRYZ' where id=5; -update noar tt set b1='YYTOOYAM6R7GU4CK7OQ3' where id=5; -update noar ti set b1='YYTOOYAM6R7GU4CK7OQ3' where id=5; -update noar tt set v0='H2F3P3ZS0LRVBQJI23IMZQ87YIDJJM2U' where id=5; -update noar ti set v0='H2F3P3ZS0LRVBQJI23IMZQ87YIDJJM2U' where id=5; -update noar tt set b2='46UWSUOQSFJ64PCHG27' where id=5; -update noar ti set b2='46UWSUOQSFJ64PCHG27' where id=5; -update noar tt set v0='KBWZG5UTAYCOO6526' where id=6; -update noar ti set v0='KBWZG5UTAYCOO6526' where id=6; -update noar tt set b0='24JYI5EN047PAI822KWS6NMP2SVA98' where id=6; -update noar ti set b0='24JYI5EN047PAI822KWS6NMP2SVA98' where id=6; -update noar tt set v0='WRXYCV4QUP1SOI295' where id=6; -update noar ti set v0='WRXYCV4QUP1SOI295' where id=6; -update noar tt set b1='4E3U0TRQ1J4ZLOQDQAA0JVHUB' where id=6; -update noar ti set b1='4E3U0TRQ1J4ZLOQDQAA0JVHUB' where id=6; -update noar tt set v0='JWPPIHS35A0J5U2' where id=6; -update noar ti set v0='JWPPIHS35A0J5U2' where id=6; -update noar tt set b2='R' where id=6; -update noar ti set b2='R' where id=6; -update noar tt set v0='RO' where id=7; -update noar ti set v0='RO' where id=7; -update noar tt set b0='3LK3RIXCXOOZ' where id=7; -update noar ti set b0='3LK3RIXCXOOZ' where id=7; -update noar tt set v0='13RE7097I9ANKTNL7HL2GX7TPI' where id=7; -update noar ti set v0='13RE7097I9ANKTNL7HL2GX7TPI' where id=7; -update noar tt set b1='A14PM37J551W618' where id=7; -update noar ti set b1='A14PM37J551W618' where id=7; -update noar tt set v0='W7MC795WIUO7A5UF49QRTTZPOM3C' where id=7; -update noar ti set v0='W7MC795WIUO7A5UF49QRTTZPOM3C' where id=7; -update noar tt set b2='CPBOPLQK8XC' where id=7; -update noar ti set b2='CPBOPLQK8XC' where id=7; -update noar tt set v0='S051FCY2VSI1MHILLJNU5EJ38TR' where id=8; -update noar ti set v0='S051FCY2VSI1MHILLJNU5EJ38TR' where id=8; -update noar tt set b0='MSW' where id=8; -update noar ti set b0='MSW' where id=8; -update noar tt set v0='WDZ5D7EP4NLWKUOKY5SN1DZXXB8E4' where id=8; -update noar ti set v0='WDZ5D7EP4NLWKUOKY5SN1DZXXB8E4' where id=8; -update noar tt set b1='IA' where id=8; -update noar ti set b1='IA' where id=8; -update noar tt set v0='ACBYUD17E6Q5E' where id=8; -update noar ti set v0='ACBYUD17E6Q5E' where id=8; -update noar tt set b2='4M31GTY9G4OZR1YCATFNB' where id=8; -update noar ti set b2='4M31GTY9G4OZR1YCATFNB' where id=8; -update noar tt set v0='BMT3CR6T' where id=9; -update noar ti set v0='BMT3CR6T' where id=9; -update noar tt set b0='HKBPON1MWH' where id=9; -update noar ti set b0='HKBPON1MWH' where id=9; -update noar tt set v0='NWU3' where id=9; -update noar ti set v0='NWU3' where id=9; -update noar tt set b1='EX0LFK3' where id=9; -update noar ti set b1='EX0LFK3' where id=9; -update noar tt set v0='YTHC79D5I4WVO9FH' where id=9; -update noar ti set v0='YTHC79D5I4WVO9FH' where id=9; -update noar tt set b2='U00GJFWOZ2SAYZT4N2' where id=9; -update noar ti set b2='U00GJFWOZ2SAYZT4N2' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -v0 varchar(32) null, -b0 tinyblob null, -b1 mediumblob null, -b2 tinyblob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='HM' where id=1; -update noar ti set v0='HM' where id=1; -update noar tt set b0='8BTHL' where id=1; -update noar ti set b0='8BTHL' where id=1; -update noar tt set v0='8MKDG23NFZLJWTF' where id=1; -update noar ti set v0='8MKDG23NFZLJWTF' where id=1; -update noar tt set b1='KIMS0DA175NQ05ORSYNQ3QRW23G4' where id=1; -update noar ti set b1='KIMS0DA175NQ05ORSYNQ3QRW23G4' where id=1; -update noar tt set v0='ZBTEB4ULU8EOZZPPG9' where id=1; -update noar ti set v0='ZBTEB4ULU8EOZZPPG9' where id=1; -update noar tt set b2='V3RNJPQ' where id=1; -update noar ti set b2='V3RNJPQ' where id=1; -update noar tt set v0='2U3QNSF5ZW5VHE0EP08G8NR2IVS3' where id=2; -update noar ti set v0='2U3QNSF5ZW5VHE0EP08G8NR2IVS3' where id=2; -update noar tt set b0='5CF5WFDWFEFMIHX6KMR3PQR1LZQ' where id=2; -update noar ti set b0='5CF5WFDWFEFMIHX6KMR3PQR1LZQ' where id=2; -update noar tt set v0='NG19R' where id=2; -update noar ti set v0='NG19R' where id=2; -update noar tt set b1='QYE4IM2KIEKLG6KZAZKPF46' where id=2; -update noar ti set b1='QYE4IM2KIEKLG6KZAZKPF46' where id=2; -update noar tt set v0='55114R43T0ERGU93MFTRC9' where id=2; -update noar ti set v0='55114R43T0ERGU93MFTRC9' where id=2; -update noar tt set b2='1LGJ' where id=2; -update noar ti set b2='1LGJ' where id=2; -update noar tt set v0='1RZMQ8X' where id=3; -update noar ti set v0='1RZMQ8X' where id=3; -update noar tt set b0='LCM3QDM77M56YCHKH' where id=3; -update noar ti set b0='LCM3QDM77M56YCHKH' where id=3; -update noar tt set v0='DSYQ2ECLVV5P' where id=3; -update noar ti set v0='DSYQ2ECLVV5P' where id=3; -update noar tt set b1='DNZZAGL1HEUPOUGCDHZ0I7PJQUKX' where id=3; -update noar ti set b1='DNZZAGL1HEUPOUGCDHZ0I7PJQUKX' where id=3; -update noar tt set v0='NEUT73' where id=3; -update noar ti set v0='NEUT73' where id=3; -update noar tt set b2='45TSMC6UZN9FH2NLRES8QJM' where id=3; -update noar ti set b2='45TSMC6UZN9FH2NLRES8QJM' where id=3; -update noar tt set v0='6TTHF46W58QLZVVHODB' where id=4; -update noar ti set v0='6TTHF46W58QLZVVHODB' where id=4; -update noar tt set b0='KWH1KZX0XP5' where id=4; -update noar ti set b0='KWH1KZX0XP5' where id=4; -update noar tt set v0='0PC98G0EA3NA9P5WGPXP' where id=4; -update noar ti set v0='0PC98G0EA3NA9P5WGPXP' where id=4; -update noar tt set b1='BIJULJHMJNM74D0J6IZ0XD33' where id=4; -update noar ti set b1='BIJULJHMJNM74D0J6IZ0XD33' where id=4; -update noar tt set v0='UL9YLYH777C1IS23VK11D2UL7' where id=4; -update noar ti set v0='UL9YLYH777C1IS23VK11D2UL7' where id=4; -update noar tt set b2='6' where id=4; -update noar ti set b2='6' where id=4; -update noar tt set v0='Q26V9LP3493G' where id=5; -update noar ti set v0='Q26V9LP3493G' where id=5; -update noar tt set b0='GQ73ASURRUXH6KE3S3QDT' where id=5; -update noar ti set b0='GQ73ASURRUXH6KE3S3QDT' where id=5; -update noar tt set v0='GV7EOXB4YN6' where id=5; -update noar ti set v0='GV7EOXB4YN6' where id=5; -update noar tt set b1='FCAC31GCZROZ8P4YKU53KO02EGSOBS' where id=5; -update noar ti set b1='FCAC31GCZROZ8P4YKU53KO02EGSOBS' where id=5; -update noar tt set v0='93' where id=5; -update noar ti set v0='93' where id=5; -update noar tt set b2='D2IKRWKYI6UO0TTD0Q4I14KGMY' where id=5; -update noar ti set b2='D2IKRWKYI6UO0TTD0Q4I14KGMY' where id=5; -update noar tt set v0='TX7X08IQOJ3ZS3VZ' where id=6; -update noar ti set v0='TX7X08IQOJ3ZS3VZ' where id=6; -update noar tt set b0='MC9K' where id=6; -update noar ti set b0='MC9K' where id=6; -update noar tt set v0='ZG' where id=6; -update noar ti set v0='ZG' where id=6; -update noar tt set b1='2OFU' where id=6; -update noar ti set b1='2OFU' where id=6; -update noar tt set v0='07ZKU6QIAYFMUEWIR3' where id=6; -update noar ti set v0='07ZKU6QIAYFMUEWIR3' where id=6; -update noar tt set b2='RRPRZDG0LHEF5B5W7IPDCJB' where id=6; -update noar ti set b2='RRPRZDG0LHEF5B5W7IPDCJB' where id=6; -update noar tt set v0='6BN58TNZF9KZXT42QTNVKTJKLZF1J' where id=7; -update noar ti set v0='6BN58TNZF9KZXT42QTNVKTJKLZF1J' where id=7; -update noar tt set b0='5O2YQEK9AI2620ER86CY44CZNTNZM432' where id=7; -update noar ti set b0='5O2YQEK9AI2620ER86CY44CZNTNZM432' where id=7; -update noar tt set v0='ZZO2E' where id=7; -update noar ti set v0='ZZO2E' where id=7; -update noar tt set b1='JYOKZLILZV2CVJG5ETY0W8GQZM4A' where id=7; -update noar ti set b1='JYOKZLILZV2CVJG5ETY0W8GQZM4A' where id=7; -update noar tt set v0='1FE5KOFQH' where id=7; -update noar ti set v0='1FE5KOFQH' where id=7; -update noar tt set b2='KIAFNJQOWN4' where id=7; -update noar ti set b2='KIAFNJQOWN4' where id=7; -update noar tt set v0='KLEB57PH6' where id=8; -update noar ti set v0='KLEB57PH6' where id=8; -update noar tt set b0='UK1624XW6PA19BJRGEXG0EEYOKTBU' where id=8; -update noar ti set b0='UK1624XW6PA19BJRGEXG0EEYOKTBU' where id=8; -update noar tt set v0='OUBBH5KT8IUEACEI19XSKBRZYSCXTBB' where id=8; -update noar ti set v0='OUBBH5KT8IUEACEI19XSKBRZYSCXTBB' where id=8; -update noar tt set b1='Q0QSXIQRRJ9D' where id=8; -update noar ti set b1='Q0QSXIQRRJ9D' where id=8; -update noar tt set v0='HUY5N13QZKGIEXYIFPZQWB8D' where id=8; -update noar ti set v0='HUY5N13QZKGIEXYIFPZQWB8D' where id=8; -update noar tt set b2='Z862C6BE33SV6SK923PFT9EPE6V' where id=8; -update noar ti set b2='Z862C6BE33SV6SK923PFT9EPE6V' where id=8; -update noar tt set v0='SKPQKSXDULQHF6ZAKR6X99PF9FRWQ' where id=9; -update noar ti set v0='SKPQKSXDULQHF6ZAKR6X99PF9FRWQ' where id=9; -update noar tt set b0='9TUB5PX90' where id=9; -update noar ti set b0='9TUB5PX90' where id=9; -update noar tt set v0='XG2KJ2V9QU1Q1ET0T67H06' where id=9; -update noar ti set v0='XG2KJ2V9QU1Q1ET0T67H06' where id=9; -update noar tt set b1='Q865T' where id=9; -update noar ti set b1='Q865T' where id=9; -update noar tt set v0='XYWSGSEDR' where id=9; -update noar ti set v0='XYWSGSEDR' where id=9; -update noar tt set b2='08C5LC3LSYJ44LJRYVF95W' where id=9; -update noar ti set b2='08C5LC3LSYJ44LJRYVF95W' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -v0 varchar(256) null, -b0 tinyblob null, -b1 mediumblob null, -b2 tinyblob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='Z6MC9LT99X1' where id=1; -update noar ti set v0='Z6MC9LT99X1' where id=1; -update noar tt set b0='XH300J6J983' where id=1; -update noar ti set b0='XH300J6J983' where id=1; -update noar tt set v0='88SON644E4G96H7MEEI8NCP06GMD' where id=1; -update noar ti set v0='88SON644E4G96H7MEEI8NCP06GMD' where id=1; -update noar tt set b1='5G3XFS2ECEYA56A7I82L8E9WUQOOF' where id=1; -update noar ti set b1='5G3XFS2ECEYA56A7I82L8E9WUQOOF' where id=1; -update noar tt set v0='8' where id=1; -update noar ti set v0='8' where id=1; -update noar tt set b2='5Z7PQTNT269JKJFY' where id=1; -update noar ti set b2='5Z7PQTNT269JKJFY' where id=1; -update noar tt set v0='PX1BAY' where id=2; -update noar ti set v0='PX1BAY' where id=2; -update noar tt set b0='08KOGS1P' where id=2; -update noar ti set b0='08KOGS1P' where id=2; -update noar tt set v0='QB3R1ZXJNNW69U7TR90FSHR' where id=2; -update noar ti set v0='QB3R1ZXJNNW69U7TR90FSHR' where id=2; -update noar tt set b1='LCQ8H6PHSUHY1V0RD6Y81NP0' where id=2; -update noar ti set b1='LCQ8H6PHSUHY1V0RD6Y81NP0' where id=2; -update noar tt set v0='EBYVS' where id=2; -update noar ti set v0='EBYVS' where id=2; -update noar tt set b2='4' where id=2; -update noar ti set b2='4' where id=2; -update noar tt set v0='XN8LK4RS3KTBU3Y07PZFLAKY744TI' where id=3; -update noar ti set v0='XN8LK4RS3KTBU3Y07PZFLAKY744TI' where id=3; -update noar tt set b0='XRCE' where id=3; -update noar ti set b0='XRCE' where id=3; -update noar tt set v0='9WQ3B9IAH8AD86' where id=3; -update noar ti set v0='9WQ3B9IAH8AD86' where id=3; -update noar tt set b1='RRAQC9JPMHK49UWVUITTPQ1O342XBBT' where id=3; -update noar ti set b1='RRAQC9JPMHK49UWVUITTPQ1O342XBBT' where id=3; -update noar tt set v0='C85XJ0NOL3WR' where id=3; -update noar ti set v0='C85XJ0NOL3WR' where id=3; -update noar tt set b2='7QQL' where id=3; -update noar ti set b2='7QQL' where id=3; -update noar tt set v0='QTLY6SIZF' where id=4; -update noar ti set v0='QTLY6SIZF' where id=4; -update noar tt set b0='D0TOKZ1M16Z7' where id=4; -update noar ti set b0='D0TOKZ1M16Z7' where id=4; -update noar tt set v0='1L5XMGZZ47' where id=4; -update noar ti set v0='1L5XMGZZ47' where id=4; -update noar tt set b1='JDBMWJ0585Q77MK3YPK' where id=4; -update noar ti set b1='JDBMWJ0585Q77MK3YPK' where id=4; -update noar tt set v0='O6' where id=4; -update noar ti set v0='O6' where id=4; -update noar tt set b2='JKE56' where id=4; -update noar ti set b2='JKE56' where id=4; -update noar tt set v0='N9Y' where id=5; -update noar ti set v0='N9Y' where id=5; -update noar tt set b0='RDO23FKPMW15RZ81UYW58Z2EA08VMF1' where id=5; -update noar ti set b0='RDO23FKPMW15RZ81UYW58Z2EA08VMF1' where id=5; -update noar tt set v0='CZMC02JSH2BT' where id=5; -update noar ti set v0='CZMC02JSH2BT' where id=5; -update noar tt set b1='QRX8SF' where id=5; -update noar ti set b1='QRX8SF' where id=5; -update noar tt set v0='05' where id=5; -update noar ti set v0='05' where id=5; -update noar tt set b2='QQ13I1WU5NZUCD4ETTYRTBD02HBXJCL' where id=5; -update noar ti set b2='QQ13I1WU5NZUCD4ETTYRTBD02HBXJCL' where id=5; -update noar tt set v0='YZ17Q07M0GS2KFK0AW84OWMQ14QF70' where id=6; -update noar ti set v0='YZ17Q07M0GS2KFK0AW84OWMQ14QF70' where id=6; -update noar tt set b0='2MWU5XMKQL' where id=6; -update noar ti set b0='2MWU5XMKQL' where id=6; -update noar tt set v0='85JRDBCM0LJQL6JCWZ2' where id=6; -update noar ti set v0='85JRDBCM0LJQL6JCWZ2' where id=6; -update noar tt set b1='QQVP7' where id=6; -update noar ti set b1='QQVP7' where id=6; -update noar tt set v0='EDXRUA6IT09DJ39' where id=6; -update noar ti set v0='EDXRUA6IT09DJ39' where id=6; -update noar tt set b2='CGC1UB1ATAH4VPP4C8FZCGNL0I' where id=6; -update noar ti set b2='CGC1UB1ATAH4VPP4C8FZCGNL0I' where id=6; -update noar tt set v0='GRN82' where id=7; -update noar ti set v0='GRN82' where id=7; -update noar tt set b0='2JHJJXG7F1WY5JVNPD0UT' where id=7; -update noar ti set b0='2JHJJXG7F1WY5JVNPD0UT' where id=7; -update noar tt set v0='Q38P61LQISWWP8LV7' where id=7; -update noar ti set v0='Q38P61LQISWWP8LV7' where id=7; -update noar tt set b1='94INXVGRQH' where id=7; -update noar ti set b1='94INXVGRQH' where id=7; -update noar tt set v0='D8R2GJU0FJAJN4MK4V20RVWK4C9' where id=7; -update noar ti set v0='D8R2GJU0FJAJN4MK4V20RVWK4C9' where id=7; -update noar tt set b2='0VLKQ2' where id=7; -update noar ti set b2='0VLKQ2' where id=7; -update noar tt set v0='G7WKORB811774EKUZNLCC8' where id=8; -update noar ti set v0='G7WKORB811774EKUZNLCC8' where id=8; -update noar tt set b0='E37LJNWMFVSKSW5JOQK4PHY2P' where id=8; -update noar ti set b0='E37LJNWMFVSKSW5JOQK4PHY2P' where id=8; -update noar tt set v0='JHDQ3' where id=8; -update noar ti set v0='JHDQ3' where id=8; -update noar tt set b1='XEXH725N652DIPRV8S2E6' where id=8; -update noar ti set b1='XEXH725N652DIPRV8S2E6' where id=8; -update noar tt set v0='17SSPHKD6' where id=8; -update noar ti set v0='17SSPHKD6' where id=8; -update noar tt set b2='EJ4RS6PTXPELYS3PFPDLWGKC1KYKZ5PM' where id=8; -update noar ti set b2='EJ4RS6PTXPELYS3PFPDLWGKC1KYKZ5PM' where id=8; -update noar tt set v0='R' where id=9; -update noar ti set v0='R' where id=9; -update noar tt set b0='961GDPZS7WIZKYITDUK4HYE6D' where id=9; -update noar ti set b0='961GDPZS7WIZKYITDUK4HYE6D' where id=9; -update noar tt set v0='2R7QAR7R1FCONMD6YUMYIN2OUSQMIFR' where id=9; -update noar ti set v0='2R7QAR7R1FCONMD6YUMYIN2OUSQMIFR' where id=9; -update noar tt set b1='9' where id=9; -update noar ti set b1='9' where id=9; -update noar tt set v0='I' where id=9; -update noar ti set v0='I' where id=9; -update noar tt set b2='N' where id=9; -update noar ti set b2='N' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -v0 varchar(32) not null, -b0 tinyblob not null, -b1 mediumblob not null, -b2 tinyblob not null -) engine=tokudb; -insert into tt values (1,'','','',''); -insert into tt values (2,'','','',''); -insert into tt values (3,'','','',''); -insert into tt values (4,'','','',''); -insert into tt values (5,'','','',''); -insert into tt values (6,'','','',''); -insert into tt values (7,'','','',''); -insert into tt values (8,'','','',''); -insert into tt values (9,'','','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='KTZX79UNGPJHNIIQ9NBU285A3W4KQ7Y' where id=1; -update noar ti set v0='KTZX79UNGPJHNIIQ9NBU285A3W4KQ7Y' where id=1; -update noar tt set b0='L8OV1JXWHLBR7H9576' where id=1; -update noar ti set b0='L8OV1JXWHLBR7H9576' where id=1; -update noar tt set v0='BMTDO6CDG' where id=1; -update noar ti set v0='BMTDO6CDG' where id=1; -update noar tt set b1='G8G9M2ZM4C3WFQD9FHNK66' where id=1; -update noar ti set b1='G8G9M2ZM4C3WFQD9FHNK66' where id=1; -update noar tt set v0='6WJ02TMOVO32R95I' where id=1; -update noar ti set v0='6WJ02TMOVO32R95I' where id=1; -update noar tt set b2='CA4T8CJO3ZMM' where id=1; -update noar ti set b2='CA4T8CJO3ZMM' where id=1; -update noar tt set v0='5DT354L8FC3BFSXKG9169LHKG0YD1I' where id=2; -update noar ti set v0='5DT354L8FC3BFSXKG9169LHKG0YD1I' where id=2; -update noar tt set b0='ZECK6DC4' where id=2; -update noar ti set b0='ZECK6DC4' where id=2; -update noar tt set v0='7GFA42TD4OCU11UO9CGY' where id=2; -update noar ti set v0='7GFA42TD4OCU11UO9CGY' where id=2; -update noar tt set b1='ZM5ZPICCCSBMA3KWU13BI2W9' where id=2; -update noar ti set b1='ZM5ZPICCCSBMA3KWU13BI2W9' where id=2; -update noar tt set v0='UKTDWU3SXB93EO6V6' where id=2; -update noar ti set v0='UKTDWU3SXB93EO6V6' where id=2; -update noar tt set b2='4YHT022F' where id=2; -update noar ti set b2='4YHT022F' where id=2; -update noar tt set v0='F6O793' where id=3; -update noar ti set v0='F6O793' where id=3; -update noar tt set b0='VMG89W04EG' where id=3; -update noar ti set b0='VMG89W04EG' where id=3; -update noar tt set v0='QD3F837L3TVXN1O15DWFOZLGKG9G9SQ3' where id=3; -update noar ti set v0='QD3F837L3TVXN1O15DWFOZLGKG9G9SQ3' where id=3; -update noar tt set b1='QC5XH78HKAO9MPCI' where id=3; -update noar ti set b1='QC5XH78HKAO9MPCI' where id=3; -update noar tt set v0='14QP752GNIIWKY5HS7' where id=3; -update noar ti set v0='14QP752GNIIWKY5HS7' where id=3; -update noar tt set b2='6PK5D4D04TY496F31KB6ZM52BHLY' where id=3; -update noar ti set b2='6PK5D4D04TY496F31KB6ZM52BHLY' where id=3; -update noar tt set v0='E006OJFKG25VG0GJEUO8ZX0SNKFW2M7' where id=4; -update noar ti set v0='E006OJFKG25VG0GJEUO8ZX0SNKFW2M7' where id=4; -update noar tt set b0='A5SAGD2S' where id=4; -update noar ti set b0='A5SAGD2S' where id=4; -update noar tt set v0='ZBPEL52CCNM' where id=4; -update noar ti set v0='ZBPEL52CCNM' where id=4; -update noar tt set b1='4SS9JG9UR325X58OKOHECO8' where id=4; -update noar ti set b1='4SS9JG9UR325X58OKOHECO8' where id=4; -update noar tt set v0='Z5AK5' where id=4; -update noar ti set v0='Z5AK5' where id=4; -update noar tt set b2='CJIDWOHK0Y2GO6CECSZ' where id=4; -update noar ti set b2='CJIDWOHK0Y2GO6CECSZ' where id=4; -update noar tt set v0='1A1H5UE' where id=5; -update noar ti set v0='1A1H5UE' where id=5; -update noar tt set b0='O2UVU2GMCO21CYAM' where id=5; -update noar ti set b0='O2UVU2GMCO21CYAM' where id=5; -update noar tt set v0='666X7Y5VUHBD3AD5U3ZWPVX2H' where id=5; -update noar ti set v0='666X7Y5VUHBD3AD5U3ZWPVX2H' where id=5; -update noar tt set b1='IIM1NKDPK3GSEV7TBO7WTZYK4C9' where id=5; -update noar ti set b1='IIM1NKDPK3GSEV7TBO7WTZYK4C9' where id=5; -update noar tt set v0='NJF06983RRB2PY5GV6O7' where id=5; -update noar ti set v0='NJF06983RRB2PY5GV6O7' where id=5; -update noar tt set b2='6QJF6NRS2YOGCX7Y5IAK31SVKBDTDG' where id=5; -update noar ti set b2='6QJF6NRS2YOGCX7Y5IAK31SVKBDTDG' where id=5; -update noar tt set v0='374FT1FSJBDV' where id=6; -update noar ti set v0='374FT1FSJBDV' where id=6; -update noar tt set b0='AAAHG7SKBXTQQTY2A9DK0WZ4' where id=6; -update noar ti set b0='AAAHG7SKBXTQQTY2A9DK0WZ4' where id=6; -update noar tt set v0='GO5633ADRLSIS1AWT7MMGK' where id=6; -update noar ti set v0='GO5633ADRLSIS1AWT7MMGK' where id=6; -update noar tt set b1='K23CKVW0N0SRYF5ZW066VMXT' where id=6; -update noar ti set b1='K23CKVW0N0SRYF5ZW066VMXT' where id=6; -update noar tt set v0='V1VWDPMOZUILZE1' where id=6; -update noar ti set v0='V1VWDPMOZUILZE1' where id=6; -update noar tt set b2='8JVZFI0KTX' where id=6; -update noar ti set b2='8JVZFI0KTX' where id=6; -update noar tt set v0='IJPPPGATDQ6UKMSZ6Z0EEW7' where id=7; -update noar ti set v0='IJPPPGATDQ6UKMSZ6Z0EEW7' where id=7; -update noar tt set b0='7F5UAY90CRRV7' where id=7; -update noar ti set b0='7F5UAY90CRRV7' where id=7; -update noar tt set v0='LMYWP8RSKQMBR' where id=7; -update noar ti set v0='LMYWP8RSKQMBR' where id=7; -update noar tt set b1='81YYVJGEGLU26XBSSJ49F1G28L0HA' where id=7; -update noar ti set b1='81YYVJGEGLU26XBSSJ49F1G28L0HA' where id=7; -update noar tt set v0='C' where id=7; -update noar ti set v0='C' where id=7; -update noar tt set b2='01DEHIO31S5B9OW1H2T940Z6TWPC9GG' where id=7; -update noar ti set b2='01DEHIO31S5B9OW1H2T940Z6TWPC9GG' where id=7; -update noar tt set v0='UCLCK3VH2INBS75R1F1E8D6DRCT' where id=8; -update noar ti set v0='UCLCK3VH2INBS75R1F1E8D6DRCT' where id=8; -update noar tt set b0='C150BK9GYYUZO870ALT' where id=8; -update noar ti set b0='C150BK9GYYUZO870ALT' where id=8; -update noar tt set v0='JRAA20' where id=8; -update noar ti set v0='JRAA20' where id=8; -update noar tt set b1='FER8Z8XSFGMX' where id=8; -update noar ti set b1='FER8Z8XSFGMX' where id=8; -update noar tt set v0='S40MUZ2NBKUN97CE5B3UU0MCX4W9R22' where id=8; -update noar ti set v0='S40MUZ2NBKUN97CE5B3UU0MCX4W9R22' where id=8; -update noar tt set b2='8' where id=8; -update noar ti set b2='8' where id=8; -update noar tt set v0='24JFCJ1PFNS8QB5PMTH88ACJV0W' where id=9; -update noar ti set v0='24JFCJ1PFNS8QB5PMTH88ACJV0W' where id=9; -update noar tt set b0='8DKBV5L70PQMGFNPJ2RFDZT' where id=9; -update noar ti set b0='8DKBV5L70PQMGFNPJ2RFDZT' where id=9; -update noar tt set v0='AHTWSYB5QRTCR2RZSCF5M' where id=9; -update noar ti set v0='AHTWSYB5QRTCR2RZSCF5M' where id=9; -update noar tt set b1='KCKWGGMMQG578CJCZC3TFXGKM09246Y7' where id=9; -update noar ti set b1='KCKWGGMMQG578CJCZC3TFXGKM09246Y7' where id=9; -update noar tt set v0='UWBS48E3KSC22R' where id=9; -update noar ti set v0='UWBS48E3KSC22R' where id=9; -update noar tt set b2='2H5FQ97DBTT304Q6SS' where id=9; -update noar ti set b2='2H5FQ97DBTT304Q6SS' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -v0 varchar(256) not null, -b0 tinyblob not null, -b1 mediumblob not null, -b2 tinyblob not null -) engine=tokudb; -insert into tt values (1,'','','',''); -insert into tt values (2,'','','',''); -insert into tt values (3,'','','',''); -insert into tt values (4,'','','',''); -insert into tt values (5,'','','',''); -insert into tt values (6,'','','',''); -insert into tt values (7,'','','',''); -insert into tt values (8,'','','',''); -insert into tt values (9,'','','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='IK3O4OZPGR67G8R8' where id=1; -update noar ti set v0='IK3O4OZPGR67G8R8' where id=1; -update noar tt set b0='ZI7HHGFTCEPLVP' where id=1; -update noar ti set b0='ZI7HHGFTCEPLVP' where id=1; -update noar tt set v0='HLBEUE4BXWEHNF53' where id=1; -update noar ti set v0='HLBEUE4BXWEHNF53' where id=1; -update noar tt set b1='UKJ5BRPH03SU' where id=1; -update noar ti set b1='UKJ5BRPH03SU' where id=1; -update noar tt set v0='B2' where id=1; -update noar ti set v0='B2' where id=1; -update noar tt set b2='9BMFN46L962BOZ7RBPMJGJ7R1TEN1' where id=1; -update noar ti set b2='9BMFN46L962BOZ7RBPMJGJ7R1TEN1' where id=1; -update noar tt set v0='4RDXRJKV576C9LY' where id=2; -update noar ti set v0='4RDXRJKV576C9LY' where id=2; -update noar tt set b0='L8IIOXUHR8N3AVSF0ESD97W' where id=2; -update noar ti set b0='L8IIOXUHR8N3AVSF0ESD97W' where id=2; -update noar tt set v0='L45U12VZZ5L4HONYU' where id=2; -update noar ti set v0='L45U12VZZ5L4HONYU' where id=2; -update noar tt set b1='BXLHX1U5AYX2ZU6KHV' where id=2; -update noar ti set b1='BXLHX1U5AYX2ZU6KHV' where id=2; -update noar tt set v0='1U8ZW9O8Q' where id=2; -update noar ti set v0='1U8ZW9O8Q' where id=2; -update noar tt set b2='UR03VNA1FPJZ6' where id=2; -update noar ti set b2='UR03VNA1FPJZ6' where id=2; -update noar tt set v0='KMJDBR2X0S0U0CF3YKCBNN4BLZDI3' where id=3; -update noar ti set v0='KMJDBR2X0S0U0CF3YKCBNN4BLZDI3' where id=3; -update noar tt set b0='TMSD6CWNR1XIJAO4I82W' where id=3; -update noar ti set b0='TMSD6CWNR1XIJAO4I82W' where id=3; -update noar tt set v0='9YMNI9' where id=3; -update noar ti set v0='9YMNI9' where id=3; -update noar tt set b1='2YCWMLAREXU' where id=3; -update noar ti set b1='2YCWMLAREXU' where id=3; -update noar tt set v0='WCVBE3X4J90UW6RHYORRW6Z' where id=3; -update noar ti set v0='WCVBE3X4J90UW6RHYORRW6Z' where id=3; -update noar tt set b2='ZBM1R2V' where id=3; -update noar ti set b2='ZBM1R2V' where id=3; -update noar tt set v0='5J9AR8JULEFFSQS6KW4SL18X64VF900' where id=4; -update noar ti set v0='5J9AR8JULEFFSQS6KW4SL18X64VF900' where id=4; -update noar tt set b0='P26MAU7NKSX4YTH09U2HUHT20H' where id=4; -update noar ti set b0='P26MAU7NKSX4YTH09U2HUHT20H' where id=4; -update noar tt set v0='HN7S0NKLSVTM' where id=4; -update noar ti set v0='HN7S0NKLSVTM' where id=4; -update noar tt set b1='VPQFB' where id=4; -update noar ti set b1='VPQFB' where id=4; -update noar tt set v0='42' where id=4; -update noar ti set v0='42' where id=4; -update noar tt set b2='94PHMFAZ9SV9KFKNYLWSE3AV0D0NXYZ8' where id=4; -update noar ti set b2='94PHMFAZ9SV9KFKNYLWSE3AV0D0NXYZ8' where id=4; -update noar tt set v0='ST4ZELCMLUY' where id=5; -update noar ti set v0='ST4ZELCMLUY' where id=5; -update noar tt set b0='SHWROHBW2HXJU0NG' where id=5; -update noar ti set b0='SHWROHBW2HXJU0NG' where id=5; -update noar tt set v0='83MLF9TJCUD3XYGD90ICFM7' where id=5; -update noar ti set v0='83MLF9TJCUD3XYGD90ICFM7' where id=5; -update noar tt set b1='SUH7MUQAOWG' where id=5; -update noar ti set b1='SUH7MUQAOWG' where id=5; -update noar tt set v0='X40Y2D' where id=5; -update noar ti set v0='X40Y2D' where id=5; -update noar tt set b2='1TCIELI8ZDSFHHCUBDO' where id=5; -update noar ti set b2='1TCIELI8ZDSFHHCUBDO' where id=5; -update noar tt set v0='WFZV5VX92KQ' where id=6; -update noar ti set v0='WFZV5VX92KQ' where id=6; -update noar tt set b0='D5J0SIX2EPIXF' where id=6; -update noar ti set b0='D5J0SIX2EPIXF' where id=6; -update noar tt set v0='EL7T93UUF2DHFZPG503ES0' where id=6; -update noar ti set v0='EL7T93UUF2DHFZPG503ES0' where id=6; -update noar tt set b1='KNAYRD3KPHE1QM1Y713DNGWJP' where id=6; -update noar ti set b1='KNAYRD3KPHE1QM1Y713DNGWJP' where id=6; -update noar tt set v0='VF8GDPT' where id=6; -update noar ti set v0='VF8GDPT' where id=6; -update noar tt set b2='N1EZMSO84UL115J' where id=6; -update noar ti set b2='N1EZMSO84UL115J' where id=6; -update noar tt set v0='N3BTZSWNROL0B75LZDBIQKRKS' where id=7; -update noar ti set v0='N3BTZSWNROL0B75LZDBIQKRKS' where id=7; -update noar tt set b0='7LV5BR' where id=7; -update noar ti set b0='7LV5BR' where id=7; -update noar tt set v0='OM850' where id=7; -update noar ti set v0='OM850' where id=7; -update noar tt set b1='IAGDUCY7FD522GOADVUWB8XGERIII' where id=7; -update noar ti set b1='IAGDUCY7FD522GOADVUWB8XGERIII' where id=7; -update noar tt set v0='MT8U4FFH9DPNN2CH39SZCR9' where id=7; -update noar ti set v0='MT8U4FFH9DPNN2CH39SZCR9' where id=7; -update noar tt set b2='BJPQHQ9N3Y' where id=7; -update noar ti set b2='BJPQHQ9N3Y' where id=7; -update noar tt set v0='SWPISUK0VT11H6GWQM1' where id=8; -update noar ti set v0='SWPISUK0VT11H6GWQM1' where id=8; -update noar tt set b0='3JUL' where id=8; -update noar ti set b0='3JUL' where id=8; -update noar tt set v0='15HA6QF1V3YWR' where id=8; -update noar ti set v0='15HA6QF1V3YWR' where id=8; -update noar tt set b1='H9G80FRHBNBW13DTXR3FZDF5S' where id=8; -update noar ti set b1='H9G80FRHBNBW13DTXR3FZDF5S' where id=8; -update noar tt set v0='RVPMIYTXHJLK084' where id=8; -update noar ti set v0='RVPMIYTXHJLK084' where id=8; -update noar tt set b2='41DS9W79WWPE0D01RSROTEAUHTDU' where id=8; -update noar ti set b2='41DS9W79WWPE0D01RSROTEAUHTDU' where id=8; -update noar tt set v0='MM' where id=9; -update noar ti set v0='MM' where id=9; -update noar tt set b0='YDNFR6V30PZUFKH33EE62ZO72XHYN0NQ' where id=9; -update noar ti set b0='YDNFR6V30PZUFKH33EE62ZO72XHYN0NQ' where id=9; -update noar tt set v0='VN' where id=9; -update noar ti set v0='VN' where id=9; -update noar tt set b1='O483YC2BYFHGL8SH' where id=9; -update noar ti set b1='O483YC2BYFHGL8SH' where id=9; -update noar tt set v0='IB0ILQ9GKHTWYHV8' where id=9; -update noar ti set v0='IB0ILQ9GKHTWYHV8' where id=9; -update noar tt set b2='M9NK' where id=9; -update noar ti set b2='M9NK' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -v0 varchar(32) null, -b0 tinyblob null, -b1 mediumblob null, -b2 blob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='3RNNJJH0A4TYPJJEEJBTIPBOCYDL1' where id=1; -update noar ti set v0='3RNNJJH0A4TYPJJEEJBTIPBOCYDL1' where id=1; -update noar tt set b0='UTMUQYOTEIH8EYTQ1PXGD036KRH7EO' where id=1; -update noar ti set b0='UTMUQYOTEIH8EYTQ1PXGD036KRH7EO' where id=1; -update noar tt set v0='7JN10Z7WSF62' where id=1; -update noar ti set v0='7JN10Z7WSF62' where id=1; -update noar tt set b1='FRPG4OYYL86GK2EQUROVDI76MY' where id=1; -update noar ti set b1='FRPG4OYYL86GK2EQUROVDI76MY' where id=1; -update noar tt set v0='QPF50RIQ' where id=1; -update noar ti set v0='QPF50RIQ' where id=1; -update noar tt set b2='ZUKCLHP1F41NKI8LSDH' where id=1; -update noar ti set b2='ZUKCLHP1F41NKI8LSDH' where id=1; -update noar tt set v0='BRSRC3O907XK' where id=2; -update noar ti set v0='BRSRC3O907XK' where id=2; -update noar tt set b0='JVPKLNR3RVE' where id=2; -update noar ti set b0='JVPKLNR3RVE' where id=2; -update noar tt set v0='SQ3HH4PM' where id=2; -update noar ti set v0='SQ3HH4PM' where id=2; -update noar tt set b1='UUQ4Q' where id=2; -update noar ti set b1='UUQ4Q' where id=2; -update noar tt set v0='BTYXN9ED4AYK27XSTE0E98Y5' where id=2; -update noar ti set v0='BTYXN9ED4AYK27XSTE0E98Y5' where id=2; -update noar tt set b2='R74K11LKR6C' where id=2; -update noar ti set b2='R74K11LKR6C' where id=2; -update noar tt set v0='H53OPQ' where id=3; -update noar ti set v0='H53OPQ' where id=3; -update noar tt set b0='7' where id=3; -update noar ti set b0='7' where id=3; -update noar tt set v0='H77B3NILXJ7DM186' where id=3; -update noar ti set v0='H77B3NILXJ7DM186' where id=3; -update noar tt set b1='Z4PZ8Q72VSV16TJQIE09HW8' where id=3; -update noar ti set b1='Z4PZ8Q72VSV16TJQIE09HW8' where id=3; -update noar tt set v0='9E6V4FNCJ9KZJWBCBX1OJ1OZ' where id=3; -update noar ti set v0='9E6V4FNCJ9KZJWBCBX1OJ1OZ' where id=3; -update noar tt set b2='LUC3I230BND' where id=3; -update noar ti set b2='LUC3I230BND' where id=3; -update noar tt set v0='KT6BJHN0PMU3CV3PI64DAEX7M8PF' where id=4; -update noar ti set v0='KT6BJHN0PMU3CV3PI64DAEX7M8PF' where id=4; -update noar tt set b0='WSVOMU6D' where id=4; -update noar ti set b0='WSVOMU6D' where id=4; -update noar tt set v0='LPQKTTPJTVN990ZVERF6L1Z' where id=4; -update noar ti set v0='LPQKTTPJTVN990ZVERF6L1Z' where id=4; -update noar tt set b1='D8IH0SHPILGH1JSW' where id=4; -update noar ti set b1='D8IH0SHPILGH1JSW' where id=4; -update noar tt set v0='QFL1YESZ90QF6ORD4' where id=4; -update noar ti set v0='QFL1YESZ90QF6ORD4' where id=4; -update noar tt set b2='WEHJRGIFGBMZTX62D07MR5D' where id=4; -update noar ti set b2='WEHJRGIFGBMZTX62D07MR5D' where id=4; -update noar tt set v0='2KEGQWUIQT7CW804ZBORKQKP' where id=5; -update noar ti set v0='2KEGQWUIQT7CW804ZBORKQKP' where id=5; -update noar tt set b0='A5C8N7SNN8RR9M7JSGD' where id=5; -update noar ti set b0='A5C8N7SNN8RR9M7JSGD' where id=5; -update noar tt set v0='M8MUYPIY9' where id=5; -update noar ti set v0='M8MUYPIY9' where id=5; -update noar tt set b1='3BRY9ZOT3A' where id=5; -update noar ti set b1='3BRY9ZOT3A' where id=5; -update noar tt set v0='V827ION0JVZM' where id=5; -update noar ti set v0='V827ION0JVZM' where id=5; -update noar tt set b2='MUOVV2ZFNC4BW' where id=5; -update noar ti set b2='MUOVV2ZFNC4BW' where id=5; -update noar tt set v0='C' where id=6; -update noar ti set v0='C' where id=6; -update noar tt set b0='SOCRBYCOSLN1Q7G5OSCI83' where id=6; -update noar ti set b0='SOCRBYCOSLN1Q7G5OSCI83' where id=6; -update noar tt set v0='8' where id=6; -update noar ti set v0='8' where id=6; -update noar tt set b1='YZZOPHCQONPSMICM3' where id=6; -update noar ti set b1='YZZOPHCQONPSMICM3' where id=6; -update noar tt set v0='XSOZG2X0TEXV21FKWQVBH4B0CI2VVHP' where id=6; -update noar ti set v0='XSOZG2X0TEXV21FKWQVBH4B0CI2VVHP' where id=6; -update noar tt set b2='OY4UV4QDZXIT1TFMI' where id=6; -update noar ti set b2='OY4UV4QDZXIT1TFMI' where id=6; -update noar tt set v0='JSBHCBFRZXVS4E2' where id=7; -update noar ti set v0='JSBHCBFRZXVS4E2' where id=7; -update noar tt set b0='6QBJYEGIGB2RHENT3P' where id=7; -update noar ti set b0='6QBJYEGIGB2RHENT3P' where id=7; -update noar tt set v0='JU9ST' where id=7; -update noar ti set v0='JU9ST' where id=7; -update noar tt set b1='E288M5B8FMDVSGW2D0F4K3T8943PHX' where id=7; -update noar ti set b1='E288M5B8FMDVSGW2D0F4K3T8943PHX' where id=7; -update noar tt set v0='BY66U62V3YD0OV7TV6JGS1XOBWAG' where id=7; -update noar ti set v0='BY66U62V3YD0OV7TV6JGS1XOBWAG' where id=7; -update noar tt set b2='4A4GDK5WQA5IIAA2TJSU8WY1WKZ9W' where id=7; -update noar ti set b2='4A4GDK5WQA5IIAA2TJSU8WY1WKZ9W' where id=7; -update noar tt set v0='G4FLSSDT2OGHX753XWUHLF' where id=8; -update noar ti set v0='G4FLSSDT2OGHX753XWUHLF' where id=8; -update noar tt set b0='34RF' where id=8; -update noar ti set b0='34RF' where id=8; -update noar tt set v0='JJOVK4N4D7398C2' where id=8; -update noar ti set v0='JJOVK4N4D7398C2' where id=8; -update noar tt set b1='34QBK3BBNG9TK4ZD6R55HOKLQ' where id=8; -update noar ti set b1='34QBK3BBNG9TK4ZD6R55HOKLQ' where id=8; -update noar tt set v0='WQSAY37EF5JPGGWCQ' where id=8; -update noar ti set v0='WQSAY37EF5JPGGWCQ' where id=8; -update noar tt set b2='DUWHJEOKZ9ATZH' where id=8; -update noar ti set b2='DUWHJEOKZ9ATZH' where id=8; -update noar tt set v0='L1GL0ZLNZDQ21F8G7IEFLIZ' where id=9; -update noar ti set v0='L1GL0ZLNZDQ21F8G7IEFLIZ' where id=9; -update noar tt set b0='V' where id=9; -update noar ti set b0='V' where id=9; -update noar tt set v0='RND' where id=9; -update noar ti set v0='RND' where id=9; -update noar tt set b1='1VKTMVQGX75U6KH' where id=9; -update noar ti set b1='1VKTMVQGX75U6KH' where id=9; -update noar tt set v0='UFFBJNEZZ0VM5144NP8AJ4FGXZF5ML' where id=9; -update noar ti set v0='UFFBJNEZZ0VM5144NP8AJ4FGXZF5ML' where id=9; -update noar tt set b2='FY1Z6N8' where id=9; -update noar ti set b2='FY1Z6N8' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -v0 varchar(256) null, -b0 tinyblob null, -b1 mediumblob null, -b2 blob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='2R585KTYR61A' where id=1; -update noar ti set v0='2R585KTYR61A' where id=1; -update noar tt set b0='G3MLFCWOZ5ACJTX38EGWA' where id=1; -update noar ti set b0='G3MLFCWOZ5ACJTX38EGWA' where id=1; -update noar tt set v0='XLJ' where id=1; -update noar ti set v0='XLJ' where id=1; -update noar tt set b1='ZBIN95M5VQLQXR9H5J0AGGM2HG19Y87' where id=1; -update noar ti set b1='ZBIN95M5VQLQXR9H5J0AGGM2HG19Y87' where id=1; -update noar tt set v0='B3XNYDQ14OK51MSWC46JV7UWJ8U23' where id=1; -update noar ti set v0='B3XNYDQ14OK51MSWC46JV7UWJ8U23' where id=1; -update noar tt set b2='OF8KUUMTYQQZM10N605SMHQARIQ0GKD' where id=1; -update noar ti set b2='OF8KUUMTYQQZM10N605SMHQARIQ0GKD' where id=1; -update noar tt set v0='1TA8N0IZ' where id=2; -update noar ti set v0='1TA8N0IZ' where id=2; -update noar tt set b0='6A8IA0RDJ744236Z' where id=2; -update noar ti set b0='6A8IA0RDJ744236Z' where id=2; -update noar tt set v0='UZEEU0W6U77HLF' where id=2; -update noar ti set v0='UZEEU0W6U77HLF' where id=2; -update noar tt set b1='OHDCWMQ3' where id=2; -update noar ti set b1='OHDCWMQ3' where id=2; -update noar tt set v0='HUM5MR61PTDIWEZBZRJQ' where id=2; -update noar ti set v0='HUM5MR61PTDIWEZBZRJQ' where id=2; -update noar tt set b2='VCB' where id=2; -update noar ti set b2='VCB' where id=2; -update noar tt set v0='W' where id=3; -update noar ti set v0='W' where id=3; -update noar tt set b0='HFVVK3QLUXM3XVEJYA2JQPP4M' where id=3; -update noar ti set b0='HFVVK3QLUXM3XVEJYA2JQPP4M' where id=3; -update noar tt set v0='5JL7GT9GZHSTC66QUJOD9QDLGU' where id=3; -update noar ti set v0='5JL7GT9GZHSTC66QUJOD9QDLGU' where id=3; -update noar tt set b1='T0UR3OTVRB4V5QZK8UK' where id=3; -update noar ti set b1='T0UR3OTVRB4V5QZK8UK' where id=3; -update noar tt set v0='VGOSM5QHPAF' where id=3; -update noar ti set v0='VGOSM5QHPAF' where id=3; -update noar tt set b2='BW50ZHD20J98UTQAN0DGLZ5KLRW' where id=3; -update noar ti set b2='BW50ZHD20J98UTQAN0DGLZ5KLRW' where id=3; -update noar tt set v0='QMPYN2VOWMG3VJ7XB9SHRWKCMGLTJNMW' where id=4; -update noar ti set v0='QMPYN2VOWMG3VJ7XB9SHRWKCMGLTJNMW' where id=4; -update noar tt set b0='UOJ21YG46EVH5LQN' where id=4; -update noar ti set b0='UOJ21YG46EVH5LQN' where id=4; -update noar tt set v0='1SK3WZ' where id=4; -update noar ti set v0='1SK3WZ' where id=4; -update noar tt set b1='XVKV5V' where id=4; -update noar ti set b1='XVKV5V' where id=4; -update noar tt set v0='RHKR97DLPQJTNU6' where id=4; -update noar ti set v0='RHKR97DLPQJTNU6' where id=4; -update noar tt set b2='C92JZCTLTW1' where id=4; -update noar ti set b2='C92JZCTLTW1' where id=4; -update noar tt set v0='7A5A1GQ5RGCFPQIOID7JMLMZD4O7O' where id=5; -update noar ti set v0='7A5A1GQ5RGCFPQIOID7JMLMZD4O7O' where id=5; -update noar tt set b0='NULO36F6' where id=5; -update noar ti set b0='NULO36F6' where id=5; -update noar tt set v0='ZUPXVSXZWCDY294B0LX1SSCHHE' where id=5; -update noar ti set v0='ZUPXVSXZWCDY294B0LX1SSCHHE' where id=5; -update noar tt set b1='RE71VUMX1ZX1ACUYTM' where id=5; -update noar ti set b1='RE71VUMX1ZX1ACUYTM' where id=5; -update noar tt set v0='ZL6EUU4EXPKL' where id=5; -update noar ti set v0='ZL6EUU4EXPKL' where id=5; -update noar tt set b2='C8Y8W4V3BP4ZSH2' where id=5; -update noar ti set b2='C8Y8W4V3BP4ZSH2' where id=5; -update noar tt set v0='UH7U' where id=6; -update noar ti set v0='UH7U' where id=6; -update noar tt set b0='I92RZFVX1220IYMATRSOAGWH' where id=6; -update noar ti set b0='I92RZFVX1220IYMATRSOAGWH' where id=6; -update noar tt set v0='BNZSHCN3JNZQMB4NR' where id=6; -update noar ti set v0='BNZSHCN3JNZQMB4NR' where id=6; -update noar tt set b1='ERLZ1QHAHUYGHXEH55CNLP2ZNYIP' where id=6; -update noar ti set b1='ERLZ1QHAHUYGHXEH55CNLP2ZNYIP' where id=6; -update noar tt set v0='UD2UDBO3WMMHN195Y4WXMU1D6' where id=6; -update noar ti set v0='UD2UDBO3WMMHN195Y4WXMU1D6' where id=6; -update noar tt set b2='2Z3O3QSJREXG7GSAGAMBS07PWU' where id=6; -update noar ti set b2='2Z3O3QSJREXG7GSAGAMBS07PWU' where id=6; -update noar tt set v0='HIL0W541UEILJ7HZ3HRL5J9KF5W7N34R' where id=7; -update noar ti set v0='HIL0W541UEILJ7HZ3HRL5J9KF5W7N34R' where id=7; -update noar tt set b0='KYWFAN2BTIBFXSH7A6OJDO' where id=7; -update noar ti set b0='KYWFAN2BTIBFXSH7A6OJDO' where id=7; -update noar tt set v0='Z49I8QYOU0NRP3KON' where id=7; -update noar ti set v0='Z49I8QYOU0NRP3KON' where id=7; -update noar tt set b1='MT0USM' where id=7; -update noar ti set b1='MT0USM' where id=7; -update noar tt set v0='4UD83QCJMBMXSHIXG' where id=7; -update noar ti set v0='4UD83QCJMBMXSHIXG' where id=7; -update noar tt set b2='YMKNAWULH2NP29WYAC9WQW76R1' where id=7; -update noar ti set b2='YMKNAWULH2NP29WYAC9WQW76R1' where id=7; -update noar tt set v0='6LM8JVZRTIL0XRF6T3W31H' where id=8; -update noar ti set v0='6LM8JVZRTIL0XRF6T3W31H' where id=8; -update noar tt set b0='OGBCZDEGLCGHOOK27AM3' where id=8; -update noar ti set b0='OGBCZDEGLCGHOOK27AM3' where id=8; -update noar tt set v0='F7GXBSH3CXFESWID3IY2ZN9ZEM3' where id=8; -update noar ti set v0='F7GXBSH3CXFESWID3IY2ZN9ZEM3' where id=8; -update noar tt set b1='1P79ZHCITKST8VJ6R7LATB47ROMPA' where id=8; -update noar ti set b1='1P79ZHCITKST8VJ6R7LATB47ROMPA' where id=8; -update noar tt set v0='VWGDZ2R0MIR4D' where id=8; -update noar ti set v0='VWGDZ2R0MIR4D' where id=8; -update noar tt set b2='O5JR5GMFPN7W9AO' where id=8; -update noar ti set b2='O5JR5GMFPN7W9AO' where id=8; -update noar tt set v0='DAUFCU9NQJNM2MCJLM41FCLB83Y5MIAE' where id=9; -update noar ti set v0='DAUFCU9NQJNM2MCJLM41FCLB83Y5MIAE' where id=9; -update noar tt set b0='NSB8GDXEXD8M8U8UMBG2S0' where id=9; -update noar ti set b0='NSB8GDXEXD8M8U8UMBG2S0' where id=9; -update noar tt set v0='LT5IFUAQJF6C6RYLK6' where id=9; -update noar ti set v0='LT5IFUAQJF6C6RYLK6' where id=9; -update noar tt set b1='ICJM4B3V8' where id=9; -update noar ti set b1='ICJM4B3V8' where id=9; -update noar tt set v0='H7ERG6AT2UC1I' where id=9; -update noar ti set v0='H7ERG6AT2UC1I' where id=9; -update noar tt set b2='5FWALHL5TLWV4ON6BO75ARMR6QE93' where id=9; -update noar ti set b2='5FWALHL5TLWV4ON6BO75ARMR6QE93' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -v0 varchar(32) not null, -b0 tinyblob not null, -b1 mediumblob not null, -b2 blob not null -) engine=tokudb; -insert into tt values (1,'','','',''); -insert into tt values (2,'','','',''); -insert into tt values (3,'','','',''); -insert into tt values (4,'','','',''); -insert into tt values (5,'','','',''); -insert into tt values (6,'','','',''); -insert into tt values (7,'','','',''); -insert into tt values (8,'','','',''); -insert into tt values (9,'','','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='O1A1O2PXT' where id=1; -update noar ti set v0='O1A1O2PXT' where id=1; -update noar tt set b0='MF5AL' where id=1; -update noar ti set b0='MF5AL' where id=1; -update noar tt set v0='JRCIBZTS7F' where id=1; -update noar ti set v0='JRCIBZTS7F' where id=1; -update noar tt set b1='GPCY83CCQW8GC2HC' where id=1; -update noar ti set b1='GPCY83CCQW8GC2HC' where id=1; -update noar tt set v0='ZF0MJ7FVXBU9JSZ2TS4GZE6QMA2' where id=1; -update noar ti set v0='ZF0MJ7FVXBU9JSZ2TS4GZE6QMA2' where id=1; -update noar tt set b2='DBCFLRUYAVWK2FNUW95' where id=1; -update noar ti set b2='DBCFLRUYAVWK2FNUW95' where id=1; -update noar tt set v0='G1OHG' where id=2; -update noar ti set v0='G1OHG' where id=2; -update noar tt set b0='GS3KIAS90OZN82AC9RYD' where id=2; -update noar ti set b0='GS3KIAS90OZN82AC9RYD' where id=2; -update noar tt set v0='EN9' where id=2; -update noar ti set v0='EN9' where id=2; -update noar tt set b1='QP' where id=2; -update noar ti set b1='QP' where id=2; -update noar tt set v0='8NOBJ4I0QAAOGL97EPW' where id=2; -update noar ti set v0='8NOBJ4I0QAAOGL97EPW' where id=2; -update noar tt set b2='ABHCW6SDN6EV2SC7SEIY447G' where id=2; -update noar ti set b2='ABHCW6SDN6EV2SC7SEIY447G' where id=2; -update noar tt set v0='SVAEG7W0XR7TYLRCL' where id=3; -update noar ti set v0='SVAEG7W0XR7TYLRCL' where id=3; -update noar tt set b0='417GW9T6LGLY5KEJGR0QKV6C5NBID' where id=3; -update noar ti set b0='417GW9T6LGLY5KEJGR0QKV6C5NBID' where id=3; -update noar tt set v0='TN63GLN7CQK9K95RON57N83Y0NRIU' where id=3; -update noar ti set v0='TN63GLN7CQK9K95RON57N83Y0NRIU' where id=3; -update noar tt set b1='3B0UBCD2DHX4755L1SUG1TARG4CDNB' where id=3; -update noar ti set b1='3B0UBCD2DHX4755L1SUG1TARG4CDNB' where id=3; -update noar tt set v0='R9OAXCEKMALAKNDBL62LOXBVYMUE' where id=3; -update noar ti set v0='R9OAXCEKMALAKNDBL62LOXBVYMUE' where id=3; -update noar tt set b2='5JG092OA' where id=3; -update noar ti set b2='5JG092OA' where id=3; -update noar tt set v0='A' where id=4; -update noar ti set v0='A' where id=4; -update noar tt set b0='RQO9P512' where id=4; -update noar ti set b0='RQO9P512' where id=4; -update noar tt set v0='SVK15TYQ45PC' where id=4; -update noar ti set v0='SVK15TYQ45PC' where id=4; -update noar tt set b1='FMO8O4TSZ74N' where id=4; -update noar ti set b1='FMO8O4TSZ74N' where id=4; -update noar tt set v0='4YM4V' where id=4; -update noar ti set v0='4YM4V' where id=4; -update noar tt set b2='BC9FI2ZXQEFQZ5' where id=4; -update noar ti set b2='BC9FI2ZXQEFQZ5' where id=4; -update noar tt set v0='2BAH6JT1FW0TR2E7A' where id=5; -update noar ti set v0='2BAH6JT1FW0TR2E7A' where id=5; -update noar tt set b0='YRSTE5XBE' where id=5; -update noar ti set b0='YRSTE5XBE' where id=5; -update noar tt set v0='PM476HEE7SQ9R58EXAY7PI66EH0I' where id=5; -update noar ti set v0='PM476HEE7SQ9R58EXAY7PI66EH0I' where id=5; -update noar tt set b1='SX30XXLYHOST228UMDTEK1ZVK5U4J5DK' where id=5; -update noar ti set b1='SX30XXLYHOST228UMDTEK1ZVK5U4J5DK' where id=5; -update noar tt set v0='DQ0UUL' where id=5; -update noar ti set v0='DQ0UUL' where id=5; -update noar tt set b2='TCYGWW4OQMLVKWJBMCU85M7' where id=5; -update noar ti set b2='TCYGWW4OQMLVKWJBMCU85M7' where id=5; -update noar tt set v0='LHP0S8GD7CZS3MTSXPHDR86A' where id=6; -update noar ti set v0='LHP0S8GD7CZS3MTSXPHDR86A' where id=6; -update noar tt set b0='4AS65EE6OXZAXFQON6O580HBUYL' where id=6; -update noar ti set b0='4AS65EE6OXZAXFQON6O580HBUYL' where id=6; -update noar tt set v0='287LTAG2HN80ZLFR53CR5MCKW' where id=6; -update noar ti set v0='287LTAG2HN80ZLFR53CR5MCKW' where id=6; -update noar tt set b1='D1AJ6XYQ64947YV1548PIY2XVS87' where id=6; -update noar ti set b1='D1AJ6XYQ64947YV1548PIY2XVS87' where id=6; -update noar tt set v0='9WF8' where id=6; -update noar ti set v0='9WF8' where id=6; -update noar tt set b2='HE4CRUBPCCYKEPY2FI' where id=6; -update noar ti set b2='HE4CRUBPCCYKEPY2FI' where id=6; -update noar tt set v0='6DSRCP8J' where id=7; -update noar ti set v0='6DSRCP8J' where id=7; -update noar tt set b0='V8FVFQ' where id=7; -update noar ti set b0='V8FVFQ' where id=7; -update noar tt set v0='T64NCGR2ACG3UEM0M3RY9V4O1' where id=7; -update noar ti set v0='T64NCGR2ACG3UEM0M3RY9V4O1' where id=7; -update noar tt set b1='FCJAO17TBNJQI2' where id=7; -update noar ti set b1='FCJAO17TBNJQI2' where id=7; -update noar tt set v0='M2VRN127QI2KTAICIQ8PUVF' where id=7; -update noar ti set v0='M2VRN127QI2KTAICIQ8PUVF' where id=7; -update noar tt set b2='FUZCTE' where id=7; -update noar ti set b2='FUZCTE' where id=7; -update noar tt set v0='YJXZ2OO0DCXLND3VR971L' where id=8; -update noar ti set v0='YJXZ2OO0DCXLND3VR971L' where id=8; -update noar tt set b0='761VT8D8ZVOVVB' where id=8; -update noar ti set b0='761VT8D8ZVOVVB' where id=8; -update noar tt set v0='VQPHXF3IHY8XWCUEJSQA' where id=8; -update noar ti set v0='VQPHXF3IHY8XWCUEJSQA' where id=8; -update noar tt set b1='KWLB9XQC4G24' where id=8; -update noar ti set b1='KWLB9XQC4G24' where id=8; -update noar tt set v0='7UPTJXBAG3JQETIKMQJJH0XTGMDEF4' where id=8; -update noar ti set v0='7UPTJXBAG3JQETIKMQJJH0XTGMDEF4' where id=8; -update noar tt set b2='DTUN91TE' where id=8; -update noar ti set b2='DTUN91TE' where id=8; -update noar tt set v0='94O78OO94CRWGLM' where id=9; -update noar ti set v0='94O78OO94CRWGLM' where id=9; -update noar tt set b0='4IQ13N8SZ4QM8NADQJ5D6YKC9' where id=9; -update noar ti set b0='4IQ13N8SZ4QM8NADQJ5D6YKC9' where id=9; -update noar tt set v0='WIRTRYJ8B0NMPB8WTD55I4MV1R5' where id=9; -update noar ti set v0='WIRTRYJ8B0NMPB8WTD55I4MV1R5' where id=9; -update noar tt set b1='RGJ3HE9DOBT8Q5BWY' where id=9; -update noar ti set b1='RGJ3HE9DOBT8Q5BWY' where id=9; -update noar tt set v0='ZYZPCMMKJMB6E4OROUN4N2G5JXRR' where id=9; -update noar ti set v0='ZYZPCMMKJMB6E4OROUN4N2G5JXRR' where id=9; -update noar tt set b2='KNVYXA5JJWAPY6NWL' where id=9; -update noar ti set b2='KNVYXA5JJWAPY6NWL' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -v0 varchar(256) not null, -b0 tinyblob not null, -b1 mediumblob not null, -b2 blob not null -) engine=tokudb; -insert into tt values (1,'','','',''); -insert into tt values (2,'','','',''); -insert into tt values (3,'','','',''); -insert into tt values (4,'','','',''); -insert into tt values (5,'','','',''); -insert into tt values (6,'','','',''); -insert into tt values (7,'','','',''); -insert into tt values (8,'','','',''); -insert into tt values (9,'','','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='4A7PLTN2R61TP8V957L1LZIWS2MQT6DD' where id=1; -update noar ti set v0='4A7PLTN2R61TP8V957L1LZIWS2MQT6DD' where id=1; -update noar tt set b0='SZ4S290JRQ1EB405NVJVYA' where id=1; -update noar ti set b0='SZ4S290JRQ1EB405NVJVYA' where id=1; -update noar tt set v0='VF8B69OS' where id=1; -update noar ti set v0='VF8B69OS' where id=1; -update noar tt set b1='SF8VXDGM61U4' where id=1; -update noar ti set b1='SF8VXDGM61U4' where id=1; -update noar tt set v0='8EYMQGIWIBZTSJ3V3CPPR98PX2MBE' where id=1; -update noar ti set v0='8EYMQGIWIBZTSJ3V3CPPR98PX2MBE' where id=1; -update noar tt set b2='IG6Q9JLGGJNPQLNBOS8P6HSM1C' where id=1; -update noar ti set b2='IG6Q9JLGGJNPQLNBOS8P6HSM1C' where id=1; -update noar tt set v0='RE2D6YSYU4DMKVDISKZJXEBG5' where id=2; -update noar ti set v0='RE2D6YSYU4DMKVDISKZJXEBG5' where id=2; -update noar tt set b0='7CJDZ05XVE' where id=2; -update noar ti set b0='7CJDZ05XVE' where id=2; -update noar tt set v0='H4YF052OA84JF' where id=2; -update noar ti set v0='H4YF052OA84JF' where id=2; -update noar tt set b1='HUO20RGN9QCGE5T2DW' where id=2; -update noar ti set b1='HUO20RGN9QCGE5T2DW' where id=2; -update noar tt set v0='PHQIDGUSJXAHFFLEV94CQREXV8CO0' where id=2; -update noar ti set v0='PHQIDGUSJXAHFFLEV94CQREXV8CO0' where id=2; -update noar tt set b2='9G0B9' where id=2; -update noar ti set b2='9G0B9' where id=2; -update noar tt set v0='6Y9J5LS9CCZMBKC' where id=3; -update noar ti set v0='6Y9J5LS9CCZMBKC' where id=3; -update noar tt set b0='K7039U41DBKCV71YCQDMEG' where id=3; -update noar ti set b0='K7039U41DBKCV71YCQDMEG' where id=3; -update noar tt set v0='J84DQPHWNHZ6K6AJTIJ69GUGREDMGR2C' where id=3; -update noar ti set v0='J84DQPHWNHZ6K6AJTIJ69GUGREDMGR2C' where id=3; -update noar tt set b1='URZJPKG64L' where id=3; -update noar ti set b1='URZJPKG64L' where id=3; -update noar tt set v0='YC2IFXQWUOGL2AP' where id=3; -update noar ti set v0='YC2IFXQWUOGL2AP' where id=3; -update noar tt set b2='41USV259' where id=3; -update noar ti set b2='41USV259' where id=3; -update noar tt set v0='X67ZRN1O1K7IBLGC2CUGJOZKZMN6C4' where id=4; -update noar ti set v0='X67ZRN1O1K7IBLGC2CUGJOZKZMN6C4' where id=4; -update noar tt set b0='FFVFBEZV7EZ' where id=4; -update noar ti set b0='FFVFBEZV7EZ' where id=4; -update noar tt set v0='FH81L79' where id=4; -update noar ti set v0='FH81L79' where id=4; -update noar tt set b1='YPKOTFOYYVHVJFYQNP32M' where id=4; -update noar ti set b1='YPKOTFOYYVHVJFYQNP32M' where id=4; -update noar tt set v0='6DJQM7LBVKL68YCT5UH6' where id=4; -update noar ti set v0='6DJQM7LBVKL68YCT5UH6' where id=4; -update noar tt set b2='A37BVEJZZOI1XC02N' where id=4; -update noar ti set b2='A37BVEJZZOI1XC02N' where id=4; -update noar tt set v0='1UVVDYLLRM' where id=5; -update noar ti set v0='1UVVDYLLRM' where id=5; -update noar tt set b0='729ZG1WVN1BELZG53QC' where id=5; -update noar ti set b0='729ZG1WVN1BELZG53QC' where id=5; -update noar tt set v0='IUG6E7PMDZGR0IHE5F3MII0B98' where id=5; -update noar ti set v0='IUG6E7PMDZGR0IHE5F3MII0B98' where id=5; -update noar tt set b1='HDM3IT6V3GZCV83' where id=5; -update noar ti set b1='HDM3IT6V3GZCV83' where id=5; -update noar tt set v0='G8ST0' where id=5; -update noar ti set v0='G8ST0' where id=5; -update noar tt set b2='46P6N' where id=5; -update noar ti set b2='46P6N' where id=5; -update noar tt set v0='52WADJ56O3J' where id=6; -update noar ti set v0='52WADJ56O3J' where id=6; -update noar tt set b0='60OIJY9K5C93B1015CNNT8UP' where id=6; -update noar ti set b0='60OIJY9K5C93B1015CNNT8UP' where id=6; -update noar tt set v0='9XG59G3RK6FY7PZ9LKT212CA1B3JIS' where id=6; -update noar ti set v0='9XG59G3RK6FY7PZ9LKT212CA1B3JIS' where id=6; -update noar tt set b1='VKRFVE4G9MI6PTYS7UAN' where id=6; -update noar ti set b1='VKRFVE4G9MI6PTYS7UAN' where id=6; -update noar tt set v0='3KOQ9H3F149L53R5A4RC84QJ6IW' where id=6; -update noar ti set v0='3KOQ9H3F149L53R5A4RC84QJ6IW' where id=6; -update noar tt set b2='KXQPECWYUWQPI4Y7RJXE47' where id=6; -update noar ti set b2='KXQPECWYUWQPI4Y7RJXE47' where id=6; -update noar tt set v0='M9GNVQH4V4DO6O3A98X0ODPHZPU65GC1' where id=7; -update noar ti set v0='M9GNVQH4V4DO6O3A98X0ODPHZPU65GC1' where id=7; -update noar tt set b0='G45C2MLHMMJS7U9SJR90' where id=7; -update noar ti set b0='G45C2MLHMMJS7U9SJR90' where id=7; -update noar tt set v0='SKHVJID72ULRNWLU48ZQ5LPJBOLPH' where id=7; -update noar ti set v0='SKHVJID72ULRNWLU48ZQ5LPJBOLPH' where id=7; -update noar tt set b1='KYJWCFK6P35VWWKXOK75M3OO' where id=7; -update noar ti set b1='KYJWCFK6P35VWWKXOK75M3OO' where id=7; -update noar tt set v0='Y2RWXQXR5B8GECVM7AUAN7YJB0FS958' where id=7; -update noar ti set v0='Y2RWXQXR5B8GECVM7AUAN7YJB0FS958' where id=7; -update noar tt set b2='AXPFVRQWCM2BZH7BNNY9BDELBEDIRVI' where id=7; -update noar ti set b2='AXPFVRQWCM2BZH7BNNY9BDELBEDIRVI' where id=7; -update noar tt set v0='BXB3IZ7HCTC4339LV3QN' where id=8; -update noar ti set v0='BXB3IZ7HCTC4339LV3QN' where id=8; -update noar tt set b0='PCQI97EI7OB6HD74' where id=8; -update noar ti set b0='PCQI97EI7OB6HD74' where id=8; -update noar tt set v0='66M4K2NART1' where id=8; -update noar ti set v0='66M4K2NART1' where id=8; -update noar tt set b1='LYUPXV67WQYRAKZZYBLIVXGGQ5GAL' where id=8; -update noar ti set b1='LYUPXV67WQYRAKZZYBLIVXGGQ5GAL' where id=8; -update noar tt set v0='MPYKI51OS2LWRGTH' where id=8; -update noar ti set v0='MPYKI51OS2LWRGTH' where id=8; -update noar tt set b2='7UEMPQWI4F' where id=8; -update noar ti set b2='7UEMPQWI4F' where id=8; -update noar tt set v0='4B1RBT1L8O29ZTT' where id=9; -update noar ti set v0='4B1RBT1L8O29ZTT' where id=9; -update noar tt set b0='MDEVA2CEOULTM0AYCXO8MG' where id=9; -update noar ti set b0='MDEVA2CEOULTM0AYCXO8MG' where id=9; -update noar tt set v0='6V24D0' where id=9; -update noar ti set v0='6V24D0' where id=9; -update noar tt set b1='O9SXTJY4SPQI3MVWMAMKX8ISIU9X' where id=9; -update noar ti set b1='O9SXTJY4SPQI3MVWMAMKX8ISIU9X' where id=9; -update noar tt set v0='4EF318TZIG71AL5LWEQQGD' where id=9; -update noar ti set v0='4EF318TZIG71AL5LWEQQGD' where id=9; -update noar tt set b2='BKHJRR4OIKXX8EABIM' where id=9; -update noar ti set b2='BKHJRR4OIKXX8EABIM' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -v0 varchar(32) null, -b0 tinyblob null, -b1 mediumblob null, -b2 mediumblob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='HPZBU3P9GUSTWDKHX7F92M084' where id=1; -update noar ti set v0='HPZBU3P9GUSTWDKHX7F92M084' where id=1; -update noar tt set b0='MJUZ9K47OFMXW6N82QI2E0WJF' where id=1; -update noar ti set b0='MJUZ9K47OFMXW6N82QI2E0WJF' where id=1; -update noar tt set v0='9NBPN152DN55WS3FPQU' where id=1; -update noar ti set v0='9NBPN152DN55WS3FPQU' where id=1; -update noar tt set b1='8WFNIVJETT5K' where id=1; -update noar ti set b1='8WFNIVJETT5K' where id=1; -update noar tt set v0='WJBCQ0X7DQUA0F33617GD7' where id=1; -update noar ti set v0='WJBCQ0X7DQUA0F33617GD7' where id=1; -update noar tt set b2='KMY0AZASEM5I6RH06' where id=1; -update noar ti set b2='KMY0AZASEM5I6RH06' where id=1; -update noar tt set v0='29UXP1U' where id=2; -update noar ti set v0='29UXP1U' where id=2; -update noar tt set b0='AKLIRCX714DI9NCVD5H' where id=2; -update noar ti set b0='AKLIRCX714DI9NCVD5H' where id=2; -update noar tt set v0='9ZJUKEGQET7RVJYZRMC' where id=2; -update noar ti set v0='9ZJUKEGQET7RVJYZRMC' where id=2; -update noar tt set b1='EHGD7KMYJFO0' where id=2; -update noar ti set b1='EHGD7KMYJFO0' where id=2; -update noar tt set v0='SKLKYHD' where id=2; -update noar ti set v0='SKLKYHD' where id=2; -update noar tt set b2='3TQUZQ88PYOGUQ68' where id=2; -update noar ti set b2='3TQUZQ88PYOGUQ68' where id=2; -update noar tt set v0='P6O365U335KD0R5J9IHVS42T3BN' where id=3; -update noar ti set v0='P6O365U335KD0R5J9IHVS42T3BN' where id=3; -update noar tt set b0='PYLKH' where id=3; -update noar ti set b0='PYLKH' where id=3; -update noar tt set v0='FH5CISSDVBGEQ' where id=3; -update noar ti set v0='FH5CISSDVBGEQ' where id=3; -update noar tt set b1='CDOISD8PWDKVXJIGRIDGSKSU32' where id=3; -update noar ti set b1='CDOISD8PWDKVXJIGRIDGSKSU32' where id=3; -update noar tt set v0='9LLIKQQNZKQ5JEI' where id=3; -update noar ti set v0='9LLIKQQNZKQ5JEI' where id=3; -update noar tt set b2='D3ACYO' where id=3; -update noar ti set b2='D3ACYO' where id=3; -update noar tt set v0='3D877U3CPL4EVSPY4I4SKQCXSF' where id=4; -update noar ti set v0='3D877U3CPL4EVSPY4I4SKQCXSF' where id=4; -update noar tt set b0='DAKW5ZUFH45MI3' where id=4; -update noar ti set b0='DAKW5ZUFH45MI3' where id=4; -update noar tt set v0='0YWJPDCE1IDZ17E74K7' where id=4; -update noar ti set v0='0YWJPDCE1IDZ17E74K7' where id=4; -update noar tt set b1='SX7NDB5VYW1NYPYLFESSK' where id=4; -update noar ti set b1='SX7NDB5VYW1NYPYLFESSK' where id=4; -update noar tt set v0='XYO4YLZ3L7TILORLV1UT6EPP5' where id=4; -update noar ti set v0='XYO4YLZ3L7TILORLV1UT6EPP5' where id=4; -update noar tt set b2='7K8Q9M8ALB8LF8KCFIP' where id=4; -update noar ti set b2='7K8Q9M8ALB8LF8KCFIP' where id=4; -update noar tt set v0='VZLL' where id=5; -update noar ti set v0='VZLL' where id=5; -update noar tt set b0='N3Y24AO03' where id=5; -update noar ti set b0='N3Y24AO03' where id=5; -update noar tt set v0='IN2DO3R' where id=5; -update noar ti set v0='IN2DO3R' where id=5; -update noar tt set b1='1Y6ZISDA3DXUMFW9FCK94P5Q' where id=5; -update noar ti set b1='1Y6ZISDA3DXUMFW9FCK94P5Q' where id=5; -update noar tt set v0='9XTRGKBD9VH51CMUTLAWT' where id=5; -update noar ti set v0='9XTRGKBD9VH51CMUTLAWT' where id=5; -update noar tt set b2='CN8A4KH3X84XQ7N81N97FJ4TUD6T' where id=5; -update noar ti set b2='CN8A4KH3X84XQ7N81N97FJ4TUD6T' where id=5; -update noar tt set v0='CM' where id=6; -update noar ti set v0='CM' where id=6; -update noar tt set b0='927MMNI5HRT7YT6T54TRKH' where id=6; -update noar ti set b0='927MMNI5HRT7YT6T54TRKH' where id=6; -update noar tt set v0='11KA5OOYJ8OG' where id=6; -update noar ti set v0='11KA5OOYJ8OG' where id=6; -update noar tt set b1='KMNE7TYKTDT6TNPIENCN3Y5DEDSN' where id=6; -update noar ti set b1='KMNE7TYKTDT6TNPIENCN3Y5DEDSN' where id=6; -update noar tt set v0='3' where id=6; -update noar ti set v0='3' where id=6; -update noar tt set b2='IL648UAUQYO5I9UR4AICCC34X4K3XRSX' where id=6; -update noar ti set b2='IL648UAUQYO5I9UR4AICCC34X4K3XRSX' where id=6; -update noar tt set v0='TBHSQMWHN6VRYQG3YL3CIP69BVD' where id=7; -update noar ti set v0='TBHSQMWHN6VRYQG3YL3CIP69BVD' where id=7; -update noar tt set b0='9X1RIFI8J29VL2UY' where id=7; -update noar ti set b0='9X1RIFI8J29VL2UY' where id=7; -update noar tt set v0='WJOAC6LJKVNXJRWTJT' where id=7; -update noar ti set v0='WJOAC6LJKVNXJRWTJT' where id=7; -update noar tt set b1='KZHBWY6CLM8A8F1M' where id=7; -update noar ti set b1='KZHBWY6CLM8A8F1M' where id=7; -update noar tt set v0='R2UNRD' where id=7; -update noar ti set v0='R2UNRD' where id=7; -update noar tt set b2='1WVM0S09' where id=7; -update noar ti set b2='1WVM0S09' where id=7; -update noar tt set v0='O5U3WT' where id=8; -update noar ti set v0='O5U3WT' where id=8; -update noar tt set b0='Q7GG47GLX68L4A' where id=8; -update noar ti set b0='Q7GG47GLX68L4A' where id=8; -update noar tt set v0='94TVMCXQHIOCTZ8DSN2PP' where id=8; -update noar ti set v0='94TVMCXQHIOCTZ8DSN2PP' where id=8; -update noar tt set b1='JHASN1Z07C73KASSKYKY0' where id=8; -update noar ti set b1='JHASN1Z07C73KASSKYKY0' where id=8; -update noar tt set v0='8KY0FOOQ' where id=8; -update noar ti set v0='8KY0FOOQ' where id=8; -update noar tt set b2='ZW83NFKIL6' where id=8; -update noar ti set b2='ZW83NFKIL6' where id=8; -update noar tt set v0='DULXBV72WCSC9C4K9Q' where id=9; -update noar ti set v0='DULXBV72WCSC9C4K9Q' where id=9; -update noar tt set b0='TEL51M5L55URCC' where id=9; -update noar ti set b0='TEL51M5L55URCC' where id=9; -update noar tt set v0='DPKLQUD6DSSOBJU' where id=9; -update noar ti set v0='DPKLQUD6DSSOBJU' where id=9; -update noar tt set b1='AOD34HPC' where id=9; -update noar ti set b1='AOD34HPC' where id=9; -update noar tt set v0='69RPMNC' where id=9; -update noar ti set v0='69RPMNC' where id=9; -update noar tt set b2='0GTW45XGK0K4ST27YMUSCCH2YIO' where id=9; -update noar ti set b2='0GTW45XGK0K4ST27YMUSCCH2YIO' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -v0 varchar(256) null, -b0 tinyblob null, -b1 mediumblob null, -b2 mediumblob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='POFON5WKPSN7WGYUPYY2VKX' where id=1; -update noar ti set v0='POFON5WKPSN7WGYUPYY2VKX' where id=1; -update noar tt set b0='18ZQLFZWU9S7S39' where id=1; -update noar ti set b0='18ZQLFZWU9S7S39' where id=1; -update noar tt set v0='PGAJAEJGW2TMS5PBRQ9F78V9' where id=1; -update noar ti set v0='PGAJAEJGW2TMS5PBRQ9F78V9' where id=1; -update noar tt set b1='0EPQMQH1FSHT5U' where id=1; -update noar ti set b1='0EPQMQH1FSHT5U' where id=1; -update noar tt set v0='AKKCK1HRPC' where id=1; -update noar ti set v0='AKKCK1HRPC' where id=1; -update noar tt set b2='LB1R4UFSQ65GXPKK4AKE' where id=1; -update noar ti set b2='LB1R4UFSQ65GXPKK4AKE' where id=1; -update noar tt set v0='00UZP7BC' where id=2; -update noar ti set v0='00UZP7BC' where id=2; -update noar tt set b0='8U' where id=2; -update noar ti set b0='8U' where id=2; -update noar tt set v0='6EHFY3FFJOD9D0O9LTCL' where id=2; -update noar ti set v0='6EHFY3FFJOD9D0O9LTCL' where id=2; -update noar tt set b1='OIW8NBMJK8DF7X1FLX5' where id=2; -update noar ti set b1='OIW8NBMJK8DF7X1FLX5' where id=2; -update noar tt set v0='DVV' where id=2; -update noar ti set v0='DVV' where id=2; -update noar tt set b2='IFV' where id=2; -update noar ti set b2='IFV' where id=2; -update noar tt set v0='7WT0V6SW18TVOUT9' where id=3; -update noar ti set v0='7WT0V6SW18TVOUT9' where id=3; -update noar tt set b0='VNP7RKEXKU34' where id=3; -update noar ti set b0='VNP7RKEXKU34' where id=3; -update noar tt set v0='ESL34CBK8' where id=3; -update noar ti set v0='ESL34CBK8' where id=3; -update noar tt set b1='1GDEJIENQ' where id=3; -update noar ti set b1='1GDEJIENQ' where id=3; -update noar tt set v0='X3T8HW29JJSD1XS' where id=3; -update noar ti set v0='X3T8HW29JJSD1XS' where id=3; -update noar tt set b2='BNFVDTA0L43MR6RGDBB4O' where id=3; -update noar ti set b2='BNFVDTA0L43MR6RGDBB4O' where id=3; -update noar tt set v0='49PR' where id=4; -update noar ti set v0='49PR' where id=4; -update noar tt set b0='R' where id=4; -update noar ti set b0='R' where id=4; -update noar tt set v0='TET5OZETWQLGKG8CT562RNSHXM' where id=4; -update noar ti set v0='TET5OZETWQLGKG8CT562RNSHXM' where id=4; -update noar tt set b1='STLBPEQHR9X1D7EZ1FC' where id=4; -update noar ti set b1='STLBPEQHR9X1D7EZ1FC' where id=4; -update noar tt set v0='NIYP0MQB8ZP8IST06NC6YQOXI3DU' where id=4; -update noar ti set v0='NIYP0MQB8ZP8IST06NC6YQOXI3DU' where id=4; -update noar tt set b2='4G6BHU4PY7I2YPFXNWRRY0VH2' where id=4; -update noar ti set b2='4G6BHU4PY7I2YPFXNWRRY0VH2' where id=4; -update noar tt set v0='DH2UDAP542BQXWZU87' where id=5; -update noar ti set v0='DH2UDAP542BQXWZU87' where id=5; -update noar tt set b0='RUHEB80EMAQ3TZX602BEUK' where id=5; -update noar ti set b0='RUHEB80EMAQ3TZX602BEUK' where id=5; -update noar tt set v0='I7CEPMGBML' where id=5; -update noar ti set v0='I7CEPMGBML' where id=5; -update noar tt set b1='DHVLWEQA2NH3' where id=5; -update noar ti set b1='DHVLWEQA2NH3' where id=5; -update noar tt set v0='0KV355DFPAGHQRJ7OY71O5' where id=5; -update noar ti set v0='0KV355DFPAGHQRJ7OY71O5' where id=5; -update noar tt set b2='NJKQE9FDEMMTFH2VLVED6NIQHYR0IQ' where id=5; -update noar ti set b2='NJKQE9FDEMMTFH2VLVED6NIQHYR0IQ' where id=5; -update noar tt set v0='I99NF9NW46SH4C7VD8GYLB9XS1O70W4K' where id=6; -update noar ti set v0='I99NF9NW46SH4C7VD8GYLB9XS1O70W4K' where id=6; -update noar tt set b0='HE62JKORDAOG4B7G063HAF9SJ' where id=6; -update noar ti set b0='HE62JKORDAOG4B7G063HAF9SJ' where id=6; -update noar tt set v0='4079ILLBGYXAEJIZULS64L7H' where id=6; -update noar ti set v0='4079ILLBGYXAEJIZULS64L7H' where id=6; -update noar tt set b1='76AR' where id=6; -update noar ti set b1='76AR' where id=6; -update noar tt set v0='9VHOFPKYNQGR8NTGMFHA5TJ6' where id=6; -update noar ti set v0='9VHOFPKYNQGR8NTGMFHA5TJ6' where id=6; -update noar tt set b2='CS' where id=6; -update noar ti set b2='CS' where id=6; -update noar tt set v0='NJNJO0Y7U1XJ2' where id=7; -update noar ti set v0='NJNJO0Y7U1XJ2' where id=7; -update noar tt set b0='UJBXQTC7SHQC48993FJLIY7G' where id=7; -update noar ti set b0='UJBXQTC7SHQC48993FJLIY7G' where id=7; -update noar tt set v0='5G73BQC4D' where id=7; -update noar ti set v0='5G73BQC4D' where id=7; -update noar tt set b1='S5QEJ47SMMSUFH5X5AE9O' where id=7; -update noar ti set b1='S5QEJ47SMMSUFH5X5AE9O' where id=7; -update noar tt set v0='UVQ0SUXN8S1' where id=7; -update noar ti set v0='UVQ0SUXN8S1' where id=7; -update noar tt set b2='3UOIZ2UMMF7ZK4PQ' where id=7; -update noar ti set b2='3UOIZ2UMMF7ZK4PQ' where id=7; -update noar tt set v0='619E3D7LU' where id=8; -update noar ti set v0='619E3D7LU' where id=8; -update noar tt set b0='WLCZ816UX5BFH0B' where id=8; -update noar ti set b0='WLCZ816UX5BFH0B' where id=8; -update noar tt set v0='O4WA0N7GDOGGOWTR80CFGK6' where id=8; -update noar ti set v0='O4WA0N7GDOGGOWTR80CFGK6' where id=8; -update noar tt set b1='X32865E' where id=8; -update noar ti set b1='X32865E' where id=8; -update noar tt set v0='UNQJB3NFHIJJOL254EIUSP9WUSLTSQ' where id=8; -update noar ti set v0='UNQJB3NFHIJJOL254EIUSP9WUSLTSQ' where id=8; -update noar tt set b2='PQAR64CDPEP2IX7BG22Y0MHRROH' where id=8; -update noar ti set b2='PQAR64CDPEP2IX7BG22Y0MHRROH' where id=8; -update noar tt set v0='XSWJL' where id=9; -update noar ti set v0='XSWJL' where id=9; -update noar tt set b0='PD118O5H6684DAA7NWFDF' where id=9; -update noar ti set b0='PD118O5H6684DAA7NWFDF' where id=9; -update noar tt set v0='VO7K' where id=9; -update noar ti set v0='VO7K' where id=9; -update noar tt set b1='PT2JJDY24NIAV8TG' where id=9; -update noar ti set b1='PT2JJDY24NIAV8TG' where id=9; -update noar tt set v0='K169602Q28' where id=9; -update noar ti set v0='K169602Q28' where id=9; -update noar tt set b2='PHL5HBJ' where id=9; -update noar ti set b2='PHL5HBJ' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -v0 varchar(32) not null, -b0 tinyblob not null, -b1 mediumblob not null, -b2 mediumblob not null -) engine=tokudb; -insert into tt values (1,'','','',''); -insert into tt values (2,'','','',''); -insert into tt values (3,'','','',''); -insert into tt values (4,'','','',''); -insert into tt values (5,'','','',''); -insert into tt values (6,'','','',''); -insert into tt values (7,'','','',''); -insert into tt values (8,'','','',''); -insert into tt values (9,'','','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='N8DGZFT4CXJ35' where id=1; -update noar ti set v0='N8DGZFT4CXJ35' where id=1; -update noar tt set b0='AHVZJIAE' where id=1; -update noar ti set b0='AHVZJIAE' where id=1; -update noar tt set v0='U1YR5GK9' where id=1; -update noar ti set v0='U1YR5GK9' where id=1; -update noar tt set b1='F1SW7DRJZB6O9ZUYPMJH' where id=1; -update noar ti set b1='F1SW7DRJZB6O9ZUYPMJH' where id=1; -update noar tt set v0='CO0IFCFEPWBNITJGJUCQ74UI' where id=1; -update noar ti set v0='CO0IFCFEPWBNITJGJUCQ74UI' where id=1; -update noar tt set b2='VVXGZP' where id=1; -update noar ti set b2='VVXGZP' where id=1; -update noar tt set v0='83679JNR6FV341ET9ZNCAIQU02D6BMQ' where id=2; -update noar ti set v0='83679JNR6FV341ET9ZNCAIQU02D6BMQ' where id=2; -update noar tt set b0='8R' where id=2; -update noar ti set b0='8R' where id=2; -update noar tt set v0='V4CORXB2OYL0W7TZZPCTM4A9VSU' where id=2; -update noar ti set v0='V4CORXB2OYL0W7TZZPCTM4A9VSU' where id=2; -update noar tt set b1='7XXB0E0TO80JW' where id=2; -update noar ti set b1='7XXB0E0TO80JW' where id=2; -update noar tt set v0='3QF' where id=2; -update noar ti set v0='3QF' where id=2; -update noar tt set b2='UJJQ6U34UDEHHMT9ML' where id=2; -update noar ti set b2='UJJQ6U34UDEHHMT9ML' where id=2; -update noar tt set v0='O8E' where id=3; -update noar ti set v0='O8E' where id=3; -update noar tt set b0='0TIB5X2QT' where id=3; -update noar ti set b0='0TIB5X2QT' where id=3; -update noar tt set v0='MR5R0YBUPNMB9YU7YV18JLLYU6WOLO' where id=3; -update noar ti set v0='MR5R0YBUPNMB9YU7YV18JLLYU6WOLO' where id=3; -update noar tt set b1='KWAGR1' where id=3; -update noar ti set b1='KWAGR1' where id=3; -update noar tt set v0='ZYBUMPA6LAELS9RIAV' where id=3; -update noar ti set v0='ZYBUMPA6LAELS9RIAV' where id=3; -update noar tt set b2='A526JIW26' where id=3; -update noar ti set b2='A526JIW26' where id=3; -update noar tt set v0='L86BTKOVBT7P' where id=4; -update noar ti set v0='L86BTKOVBT7P' where id=4; -update noar tt set b0='FW' where id=4; -update noar ti set b0='FW' where id=4; -update noar tt set v0='QNREEE5VLGXUU' where id=4; -update noar ti set v0='QNREEE5VLGXUU' where id=4; -update noar tt set b1='02UDHFXAILMZL1MYJBKZVPXV' where id=4; -update noar ti set b1='02UDHFXAILMZL1MYJBKZVPXV' where id=4; -update noar tt set v0='4A0SIK7MG' where id=4; -update noar ti set v0='4A0SIK7MG' where id=4; -update noar tt set b2='MQQ210DVRYER2KZ0K7N' where id=4; -update noar ti set b2='MQQ210DVRYER2KZ0K7N' where id=4; -update noar tt set v0='FPDWGDBGUZDJ8G8VNVZQSW5CECI85V7' where id=5; -update noar ti set v0='FPDWGDBGUZDJ8G8VNVZQSW5CECI85V7' where id=5; -update noar tt set b0='JSUTYO8OLBVF2D396V4SDK3C7' where id=5; -update noar ti set b0='JSUTYO8OLBVF2D396V4SDK3C7' where id=5; -update noar tt set v0='A7GQ0CNZPOJFABQ2NVCVJB' where id=5; -update noar ti set v0='A7GQ0CNZPOJFABQ2NVCVJB' where id=5; -update noar tt set b1='IN' where id=5; -update noar ti set b1='IN' where id=5; -update noar tt set v0='MCYKQUT3Q5I8' where id=5; -update noar ti set v0='MCYKQUT3Q5I8' where id=5; -update noar tt set b2='B' where id=5; -update noar ti set b2='B' where id=5; -update noar tt set v0='NCLMBO5YMDBMF' where id=6; -update noar ti set v0='NCLMBO5YMDBMF' where id=6; -update noar tt set b0='JDVOKML69' where id=6; -update noar ti set b0='JDVOKML69' where id=6; -update noar tt set v0='CC6HSSMJ0VQQLSCLME5184MQ' where id=6; -update noar ti set v0='CC6HSSMJ0VQQLSCLME5184MQ' where id=6; -update noar tt set b1='07FAJQHY3HTR0CE8X1UJS0FM8W7B' where id=6; -update noar ti set b1='07FAJQHY3HTR0CE8X1UJS0FM8W7B' where id=6; -update noar tt set v0='G5WGBUMSBKJT5UTHCXO9FCS' where id=6; -update noar ti set v0='G5WGBUMSBKJT5UTHCXO9FCS' where id=6; -update noar tt set b2='2IX' where id=6; -update noar ti set b2='2IX' where id=6; -update noar tt set v0='5YVHB5EDS4JJ668M4BGMEX49TKC7' where id=7; -update noar ti set v0='5YVHB5EDS4JJ668M4BGMEX49TKC7' where id=7; -update noar tt set b0='9TE70UGGE8' where id=7; -update noar ti set b0='9TE70UGGE8' where id=7; -update noar tt set v0='G3UE4MPCXE44V' where id=7; -update noar ti set v0='G3UE4MPCXE44V' where id=7; -update noar tt set b1='R6YLVCBHC1G0S6GZWKK6FIG5' where id=7; -update noar ti set b1='R6YLVCBHC1G0S6GZWKK6FIG5' where id=7; -update noar tt set v0='CPZW3IU51718KPGW03' where id=7; -update noar ti set v0='CPZW3IU51718KPGW03' where id=7; -update noar tt set b2='ZTKU' where id=7; -update noar ti set b2='ZTKU' where id=7; -update noar tt set v0='41GIBG3SIVSP3AGBCQ4IAJX' where id=8; -update noar ti set v0='41GIBG3SIVSP3AGBCQ4IAJX' where id=8; -update noar tt set b0='IIT9XHT8XQ23ICG2VDE2UVQ' where id=8; -update noar ti set b0='IIT9XHT8XQ23ICG2VDE2UVQ' where id=8; -update noar tt set v0='6JFT16AA31JN' where id=8; -update noar ti set v0='6JFT16AA31JN' where id=8; -update noar tt set b1='G5AV1ZWE' where id=8; -update noar ti set b1='G5AV1ZWE' where id=8; -update noar tt set v0='V0' where id=8; -update noar ti set v0='V0' where id=8; -update noar tt set b2='7704D2HMQUJLU1EEIDVA1TNGCL0BK1' where id=8; -update noar ti set b2='7704D2HMQUJLU1EEIDVA1TNGCL0BK1' where id=8; -update noar tt set v0='UHZWXWJTXE7AS3053G' where id=9; -update noar ti set v0='UHZWXWJTXE7AS3053G' where id=9; -update noar tt set b0='S9M372YCI' where id=9; -update noar ti set b0='S9M372YCI' where id=9; -update noar tt set v0='VU5' where id=9; -update noar ti set v0='VU5' where id=9; -update noar tt set b1='8' where id=9; -update noar ti set b1='8' where id=9; -update noar tt set v0='8ZU4H3G' where id=9; -update noar ti set v0='8ZU4H3G' where id=9; -update noar tt set b2='VFSU3R4R60' where id=9; -update noar ti set b2='VFSU3R4R60' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -v0 varchar(256) not null, -b0 tinyblob not null, -b1 mediumblob not null, -b2 mediumblob not null -) engine=tokudb; -insert into tt values (1,'','','',''); -insert into tt values (2,'','','',''); -insert into tt values (3,'','','',''); -insert into tt values (4,'','','',''); -insert into tt values (5,'','','',''); -insert into tt values (6,'','','',''); -insert into tt values (7,'','','',''); -insert into tt values (8,'','','',''); -insert into tt values (9,'','','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='NI5E47EG49GOYPVVXO86S1RX65' where id=1; -update noar ti set v0='NI5E47EG49GOYPVVXO86S1RX65' where id=1; -update noar tt set b0='EE63OMQO7W' where id=1; -update noar ti set b0='EE63OMQO7W' where id=1; -update noar tt set v0='ROK' where id=1; -update noar ti set v0='ROK' where id=1; -update noar tt set b1='ITL4BBLNQLDPFN7JI8WQWLD6' where id=1; -update noar ti set b1='ITL4BBLNQLDPFN7JI8WQWLD6' where id=1; -update noar tt set v0='4' where id=1; -update noar ti set v0='4' where id=1; -update noar tt set b2='MI95VJ8R2OQ468Z' where id=1; -update noar ti set b2='MI95VJ8R2OQ468Z' where id=1; -update noar tt set v0='FDNEEYTF9G' where id=2; -update noar ti set v0='FDNEEYTF9G' where id=2; -update noar tt set b0='BRND3H6UWCSK0WO89T9YDD1LMRPDK6Z' where id=2; -update noar ti set b0='BRND3H6UWCSK0WO89T9YDD1LMRPDK6Z' where id=2; -update noar tt set v0='AQBMGF0DZ' where id=2; -update noar ti set v0='AQBMGF0DZ' where id=2; -update noar tt set b1='T2KSOD2FPL188JR5' where id=2; -update noar ti set b1='T2KSOD2FPL188JR5' where id=2; -update noar tt set v0='8KG5' where id=2; -update noar ti set v0='8KG5' where id=2; -update noar tt set b2='G277UED4A5CYR1DYU2WTKQUFV7' where id=2; -update noar ti set b2='G277UED4A5CYR1DYU2WTKQUFV7' where id=2; -update noar tt set v0='XI7EXI9RQCFES7C' where id=3; -update noar ti set v0='XI7EXI9RQCFES7C' where id=3; -update noar tt set b0='GKA9LYUBWWV' where id=3; -update noar ti set b0='GKA9LYUBWWV' where id=3; -update noar tt set v0='RVOB' where id=3; -update noar ti set v0='RVOB' where id=3; -update noar tt set b1='P3N757K' where id=3; -update noar ti set b1='P3N757K' where id=3; -update noar tt set v0='KVAO2DC14R58I' where id=3; -update noar ti set v0='KVAO2DC14R58I' where id=3; -update noar tt set b2='5EAF1YYTW8VV5HUH4E0Z' where id=3; -update noar ti set b2='5EAF1YYTW8VV5HUH4E0Z' where id=3; -update noar tt set v0='G16DMOAQ9VMGI' where id=4; -update noar ti set v0='G16DMOAQ9VMGI' where id=4; -update noar tt set b0='A0SM0CS4U6PON8BNYWZ2XDIQ82' where id=4; -update noar ti set b0='A0SM0CS4U6PON8BNYWZ2XDIQ82' where id=4; -update noar tt set v0='ELOPWADO6ZQY5OEE' where id=4; -update noar ti set v0='ELOPWADO6ZQY5OEE' where id=4; -update noar tt set b1='J' where id=4; -update noar ti set b1='J' where id=4; -update noar tt set v0='SO83QH20SLH0J3W8Q8WNQWEZCM9' where id=4; -update noar ti set v0='SO83QH20SLH0J3W8Q8WNQWEZCM9' where id=4; -update noar tt set b2='TZJXOO2UIZXSV7' where id=4; -update noar ti set b2='TZJXOO2UIZXSV7' where id=4; -update noar tt set v0='4ZE8' where id=5; -update noar ti set v0='4ZE8' where id=5; -update noar tt set b0='FC37ITXEWHTIMW6QC4P2VBDLOWFYQ' where id=5; -update noar ti set b0='FC37ITXEWHTIMW6QC4P2VBDLOWFYQ' where id=5; -update noar tt set v0='4H' where id=5; -update noar ti set v0='4H' where id=5; -update noar tt set b1='DM2B1O6F0DN6UZZ31XSU664' where id=5; -update noar ti set b1='DM2B1O6F0DN6UZZ31XSU664' where id=5; -update noar tt set v0='AQHKPABV7JEH04H5AI2' where id=5; -update noar ti set v0='AQHKPABV7JEH04H5AI2' where id=5; -update noar tt set b2='0BA' where id=5; -update noar ti set b2='0BA' where id=5; -update noar tt set v0='WOXNQ8MD1KV72VMEGYAM5RFW' where id=6; -update noar ti set v0='WOXNQ8MD1KV72VMEGYAM5RFW' where id=6; -update noar tt set b0='NARDX08UT6PANWB58AZFWI' where id=6; -update noar ti set b0='NARDX08UT6PANWB58AZFWI' where id=6; -update noar tt set v0='WPWVVGP4H' where id=6; -update noar ti set v0='WPWVVGP4H' where id=6; -update noar tt set b1='DFKF7G3XBUWFV39FPBAZ8ZTETLI9I3R' where id=6; -update noar ti set b1='DFKF7G3XBUWFV39FPBAZ8ZTETLI9I3R' where id=6; -update noar tt set v0='8F2AE8IWARWJZJDRWNDPSBUB1DF' where id=6; -update noar ti set v0='8F2AE8IWARWJZJDRWNDPSBUB1DF' where id=6; -update noar tt set b2='NY7963I6R7H47W' where id=6; -update noar ti set b2='NY7963I6R7H47W' where id=6; -update noar tt set v0='4JAG5XQWK79WRKN99GGI06NXK4' where id=7; -update noar ti set v0='4JAG5XQWK79WRKN99GGI06NXK4' where id=7; -update noar tt set b0='X56DEW3WPJNL2BT' where id=7; -update noar ti set b0='X56DEW3WPJNL2BT' where id=7; -update noar tt set v0='Z6CEO7C0A9ZTH02CL' where id=7; -update noar ti set v0='Z6CEO7C0A9ZTH02CL' where id=7; -update noar tt set b1='VX3KUWR198TQVELELT21I1O6RBVLUPCW' where id=7; -update noar ti set b1='VX3KUWR198TQVELELT21I1O6RBVLUPCW' where id=7; -update noar tt set v0='QX9821GPAWNPR5KNL02BWPMQFR7AAA9' where id=7; -update noar ti set v0='QX9821GPAWNPR5KNL02BWPMQFR7AAA9' where id=7; -update noar tt set b2='UIQ24R' where id=7; -update noar ti set b2='UIQ24R' where id=7; -update noar tt set v0='DMQ' where id=8; -update noar ti set v0='DMQ' where id=8; -update noar tt set b0='BGQYQJBJDSUHK6NWP8Z' where id=8; -update noar ti set b0='BGQYQJBJDSUHK6NWP8Z' where id=8; -update noar tt set v0='2FCSOLSR1M0XUB9P' where id=8; -update noar ti set v0='2FCSOLSR1M0XUB9P' where id=8; -update noar tt set b1='IORAIXCONSQ5OFW6V60CHCAHD6' where id=8; -update noar ti set b1='IORAIXCONSQ5OFW6V60CHCAHD6' where id=8; -update noar tt set v0='N2UUXZNLPPG10DETSJ987AWJXRITSAQM' where id=8; -update noar ti set v0='N2UUXZNLPPG10DETSJ987AWJXRITSAQM' where id=8; -update noar tt set b2='7' where id=8; -update noar ti set b2='7' where id=8; -update noar tt set v0='1S4W1' where id=9; -update noar ti set v0='1S4W1' where id=9; -update noar tt set b0='YR04WUTRCHXFEDB2UWL' where id=9; -update noar ti set b0='YR04WUTRCHXFEDB2UWL' where id=9; -update noar tt set v0='3TZWCD7RVD9087VUX' where id=9; -update noar ti set v0='3TZWCD7RVD9087VUX' where id=9; -update noar tt set b1='V28XHDSM61IQNR' where id=9; -update noar ti set b1='V28XHDSM61IQNR' where id=9; -update noar tt set v0='EAHDEZMDVHNAP' where id=9; -update noar ti set v0='EAHDEZMDVHNAP' where id=9; -update noar tt set b2='LLI8OEAZ0MAK49E9FV0N63R8QLMJ0S39' where id=9; -update noar ti set b2='LLI8OEAZ0MAK49E9FV0N63R8QLMJ0S39' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -v0 varchar(32) null, -b0 tinyblob null, -b1 mediumblob null, -b2 longblob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='8EBHMYEII' where id=1; -update noar ti set v0='8EBHMYEII' where id=1; -update noar tt set b0='O2YYU4XROKHE' where id=1; -update noar ti set b0='O2YYU4XROKHE' where id=1; -update noar tt set v0='2VKR79BD8S4O0H4M0D9XDOX1YFUNLQ' where id=1; -update noar ti set v0='2VKR79BD8S4O0H4M0D9XDOX1YFUNLQ' where id=1; -update noar tt set b1='1HWQET9' where id=1; -update noar ti set b1='1HWQET9' where id=1; -update noar tt set v0='EA9D9ELSVDCHPZ4ZMX' where id=1; -update noar ti set v0='EA9D9ELSVDCHPZ4ZMX' where id=1; -update noar tt set b2='D' where id=1; -update noar ti set b2='D' where id=1; -update noar tt set v0='HU49AN75KJY18FVVDHKTR19IGX3' where id=2; -update noar ti set v0='HU49AN75KJY18FVVDHKTR19IGX3' where id=2; -update noar tt set b0='HHZPD7TNBU09KHNB1KB7A' where id=2; -update noar ti set b0='HHZPD7TNBU09KHNB1KB7A' where id=2; -update noar tt set v0='UGOV' where id=2; -update noar ti set v0='UGOV' where id=2; -update noar tt set b1='MG7' where id=2; -update noar ti set b1='MG7' where id=2; -update noar tt set v0='0YK1DLBGJYA7F400R010FXER9A9RIT9J' where id=2; -update noar ti set v0='0YK1DLBGJYA7F400R010FXER9A9RIT9J' where id=2; -update noar tt set b2='HOYP1B22VNYU584' where id=2; -update noar ti set b2='HOYP1B22VNYU584' where id=2; -update noar tt set v0='OBRGJ8FG35RHM5DAFG8EA1UO88W' where id=3; -update noar ti set v0='OBRGJ8FG35RHM5DAFG8EA1UO88W' where id=3; -update noar tt set b0='DSK342P7JAG80NUGYEE5IVT' where id=3; -update noar ti set b0='DSK342P7JAG80NUGYEE5IVT' where id=3; -update noar tt set v0='N0M9L42C' where id=3; -update noar ti set v0='N0M9L42C' where id=3; -update noar tt set b1='T4OKXH4QO2Y9DHY7PCD96PE4LIEEXK' where id=3; -update noar ti set b1='T4OKXH4QO2Y9DHY7PCD96PE4LIEEXK' where id=3; -update noar tt set v0='FTWYRXN62DDL7JVXGKHOKHFCTR6I0D' where id=3; -update noar ti set v0='FTWYRXN62DDL7JVXGKHOKHFCTR6I0D' where id=3; -update noar tt set b2='UMY2WBLRW' where id=3; -update noar ti set b2='UMY2WBLRW' where id=3; -update noar tt set v0='K3AO2ALPR8C0V' where id=4; -update noar ti set v0='K3AO2ALPR8C0V' where id=4; -update noar tt set b0='G5F' where id=4; -update noar ti set b0='G5F' where id=4; -update noar tt set v0='C3RAGNUG8SQ5' where id=4; -update noar ti set v0='C3RAGNUG8SQ5' where id=4; -update noar tt set b1='T' where id=4; -update noar ti set b1='T' where id=4; -update noar tt set v0='W7T2EMHSIG5HXZVZ8F' where id=4; -update noar ti set v0='W7T2EMHSIG5HXZVZ8F' where id=4; -update noar tt set b2='68KCAUGGKG' where id=4; -update noar ti set b2='68KCAUGGKG' where id=4; -update noar tt set v0='ZXEDM' where id=5; -update noar ti set v0='ZXEDM' where id=5; -update noar tt set b0='6VPTKWVZA6Y6M3G' where id=5; -update noar ti set b0='6VPTKWVZA6Y6M3G' where id=5; -update noar tt set v0='Y4DF' where id=5; -update noar ti set v0='Y4DF' where id=5; -update noar tt set b1='RBI4VSSXAVKUX4' where id=5; -update noar ti set b1='RBI4VSSXAVKUX4' where id=5; -update noar tt set v0='MUU1LK18X3FSPZ5CGV6' where id=5; -update noar ti set v0='MUU1LK18X3FSPZ5CGV6' where id=5; -update noar tt set b2='J8NH4AP2EFGIYNOY4RH08UBUAPK2C5PK' where id=5; -update noar ti set b2='J8NH4AP2EFGIYNOY4RH08UBUAPK2C5PK' where id=5; -update noar tt set v0='BIOCA3CG1JJK' where id=6; -update noar ti set v0='BIOCA3CG1JJK' where id=6; -update noar tt set b0='W33BRU3D' where id=6; -update noar ti set b0='W33BRU3D' where id=6; -update noar tt set v0='WVC8HIFT3HQYOKNIUNFV' where id=6; -update noar ti set v0='WVC8HIFT3HQYOKNIUNFV' where id=6; -update noar tt set b1='RMGS6CBB11PG8LYAR7Z4OGYAUWMOQH8' where id=6; -update noar ti set b1='RMGS6CBB11PG8LYAR7Z4OGYAUWMOQH8' where id=6; -update noar tt set v0='WDIVE' where id=6; -update noar ti set v0='WDIVE' where id=6; -update noar tt set b2='XGIG9W31' where id=6; -update noar ti set b2='XGIG9W31' where id=6; -update noar tt set v0='M1H4OE2W4' where id=7; -update noar ti set v0='M1H4OE2W4' where id=7; -update noar tt set b0='1WWIMTB83TJJJOPXMYZHMPY9C' where id=7; -update noar ti set b0='1WWIMTB83TJJJOPXMYZHMPY9C' where id=7; -update noar tt set v0='W' where id=7; -update noar ti set v0='W' where id=7; -update noar tt set b1='W7U60EQR4YPVG3UDFBGSFHSG55' where id=7; -update noar ti set b1='W7U60EQR4YPVG3UDFBGSFHSG55' where id=7; -update noar tt set v0='VX6Q8WFWNFBEHV8PLXH3' where id=7; -update noar ti set v0='VX6Q8WFWNFBEHV8PLXH3' where id=7; -update noar tt set b2='M5012IJ' where id=7; -update noar ti set b2='M5012IJ' where id=7; -update noar tt set v0='R61ZUAT0' where id=8; -update noar ti set v0='R61ZUAT0' where id=8; -update noar tt set b0='HAY' where id=8; -update noar ti set b0='HAY' where id=8; -update noar tt set v0='IVN2GNPG0GKIDZEQP15A1ST' where id=8; -update noar ti set v0='IVN2GNPG0GKIDZEQP15A1ST' where id=8; -update noar tt set b1='Y1F2S1Z740K8PBFC3' where id=8; -update noar ti set b1='Y1F2S1Z740K8PBFC3' where id=8; -update noar tt set v0='CW6IHS2N86E70K2B7LZR8G' where id=8; -update noar ti set v0='CW6IHS2N86E70K2B7LZR8G' where id=8; -update noar tt set b2='E0IM0HQA1HMCZWME7PATRIXDZ' where id=8; -update noar ti set b2='E0IM0HQA1HMCZWME7PATRIXDZ' where id=8; -update noar tt set v0='P03QKBG69N0VT' where id=9; -update noar ti set v0='P03QKBG69N0VT' where id=9; -update noar tt set b0='KI' where id=9; -update noar ti set b0='KI' where id=9; -update noar tt set v0='QBZCZZAO8Q0RON29' where id=9; -update noar ti set v0='QBZCZZAO8Q0RON29' where id=9; -update noar tt set b1='MKBTB24VERC9D2HS2PBTEEY' where id=9; -update noar ti set b1='MKBTB24VERC9D2HS2PBTEEY' where id=9; -update noar tt set v0='Y' where id=9; -update noar ti set v0='Y' where id=9; -update noar tt set b2='C5RFEHWOQ69VFFJALJ5M' where id=9; -update noar ti set b2='C5RFEHWOQ69VFFJALJ5M' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -v0 varchar(256) null, -b0 tinyblob null, -b1 mediumblob null, -b2 longblob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='AY' where id=1; -update noar ti set v0='AY' where id=1; -update noar tt set b0='J30' where id=1; -update noar ti set b0='J30' where id=1; -update noar tt set v0='T6VBCSQCXR56O35N41EECZ0' where id=1; -update noar ti set v0='T6VBCSQCXR56O35N41EECZ0' where id=1; -update noar tt set b1='AV5T0YXYBHFUZG9E42Z' where id=1; -update noar ti set b1='AV5T0YXYBHFUZG9E42Z' where id=1; -update noar tt set v0='SIMF9NG9JZLHX3PFNTWQN' where id=1; -update noar ti set v0='SIMF9NG9JZLHX3PFNTWQN' where id=1; -update noar tt set b2='1JN5C55ACD60W4C0DDQF68SE4X8B7E' where id=1; -update noar ti set b2='1JN5C55ACD60W4C0DDQF68SE4X8B7E' where id=1; -update noar tt set v0='IQQ5POGSDAGB' where id=2; -update noar ti set v0='IQQ5POGSDAGB' where id=2; -update noar tt set b0='OZO87E9YAGG673FFZGUTZ5JOIFL' where id=2; -update noar ti set b0='OZO87E9YAGG673FFZGUTZ5JOIFL' where id=2; -update noar tt set v0='EY82XVC7T88H5F' where id=2; -update noar ti set v0='EY82XVC7T88H5F' where id=2; -update noar tt set b1='8BHLKWM09ZGF9GCHY5CJTPZN41D3YH' where id=2; -update noar ti set b1='8BHLKWM09ZGF9GCHY5CJTPZN41D3YH' where id=2; -update noar tt set v0='51R4J2ZRZ6K8VXSBBM8G5' where id=2; -update noar ti set v0='51R4J2ZRZ6K8VXSBBM8G5' where id=2; -update noar tt set b2='GH' where id=2; -update noar ti set b2='GH' where id=2; -update noar tt set v0='V5MVVIVA1Z8L1KFIVV2' where id=3; -update noar ti set v0='V5MVVIVA1Z8L1KFIVV2' where id=3; -update noar tt set b0='H1VOTZZGM6XTRQX' where id=3; -update noar ti set b0='H1VOTZZGM6XTRQX' where id=3; -update noar tt set v0='ZZ7JW' where id=3; -update noar ti set v0='ZZ7JW' where id=3; -update noar tt set b1='5D' where id=3; -update noar ti set b1='5D' where id=3; -update noar tt set v0='GA0K7ZHUYAEXLB4YEGC49264L70TU' where id=3; -update noar ti set v0='GA0K7ZHUYAEXLB4YEGC49264L70TU' where id=3; -update noar tt set b2='BVRV5LRCP6V5JDSN4KINW' where id=3; -update noar ti set b2='BVRV5LRCP6V5JDSN4KINW' where id=3; -update noar tt set v0='KAE544RS6OY8F6CDAP9FR2' where id=4; -update noar ti set v0='KAE544RS6OY8F6CDAP9FR2' where id=4; -update noar tt set b0='J' where id=4; -update noar ti set b0='J' where id=4; -update noar tt set v0='8' where id=4; -update noar ti set v0='8' where id=4; -update noar tt set b1='TWDH6I2KOINUTA93N9' where id=4; -update noar ti set b1='TWDH6I2KOINUTA93N9' where id=4; -update noar tt set v0='H2T2BX' where id=4; -update noar ti set v0='H2T2BX' where id=4; -update noar tt set b2='RBHKPWBOLIO5UCBPB88GHVAQZQQQQK' where id=4; -update noar ti set b2='RBHKPWBOLIO5UCBPB88GHVAQZQQQQK' where id=4; -update noar tt set v0='ZL8WFWM7UDG8OXO6C9' where id=5; -update noar ti set v0='ZL8WFWM7UDG8OXO6C9' where id=5; -update noar tt set b0='FELX8C49B6V5UEU4C1FCGO' where id=5; -update noar ti set b0='FELX8C49B6V5UEU4C1FCGO' where id=5; -update noar tt set v0='U9BZ0AO43JNC67EP5OD03' where id=5; -update noar ti set v0='U9BZ0AO43JNC67EP5OD03' where id=5; -update noar tt set b1='ROFYI4BXQD' where id=5; -update noar ti set b1='ROFYI4BXQD' where id=5; -update noar tt set v0='UMC7PYJ3T8YV' where id=5; -update noar ti set v0='UMC7PYJ3T8YV' where id=5; -update noar tt set b2='PKV63DY0ODA56ZDE8V48YODMJR2' where id=5; -update noar ti set b2='PKV63DY0ODA56ZDE8V48YODMJR2' where id=5; -update noar tt set v0='09YJ133FWZG' where id=6; -update noar ti set v0='09YJ133FWZG' where id=6; -update noar tt set b0='OTDLQ4KWM77S0QF78ZBTM2W2EC0N5M' where id=6; -update noar ti set b0='OTDLQ4KWM77S0QF78ZBTM2W2EC0N5M' where id=6; -update noar tt set v0='Z8T4JSWEDDL159' where id=6; -update noar ti set v0='Z8T4JSWEDDL159' where id=6; -update noar tt set b1='F32TMK228URWQ5LBEIY57T01R' where id=6; -update noar ti set b1='F32TMK228URWQ5LBEIY57T01R' where id=6; -update noar tt set v0='3I5VSG49SET7D5FFC8EPIQKU2JG0P' where id=6; -update noar ti set v0='3I5VSG49SET7D5FFC8EPIQKU2JG0P' where id=6; -update noar tt set b2='H4WI' where id=6; -update noar ti set b2='H4WI' where id=6; -update noar tt set v0='R89CK8XF2DB50O47R0X' where id=7; -update noar ti set v0='R89CK8XF2DB50O47R0X' where id=7; -update noar tt set b0='P2JV7J8PP60103ZM7J50' where id=7; -update noar ti set b0='P2JV7J8PP60103ZM7J50' where id=7; -update noar tt set v0='5WS4WMN' where id=7; -update noar ti set v0='5WS4WMN' where id=7; -update noar tt set b1='QILOIZN9T0FWSPEWKQV' where id=7; -update noar ti set b1='QILOIZN9T0FWSPEWKQV' where id=7; -update noar tt set v0='9ZSS3TVEQ5L46MFAW' where id=7; -update noar ti set v0='9ZSS3TVEQ5L46MFAW' where id=7; -update noar tt set b2='2MWW7NI' where id=7; -update noar ti set b2='2MWW7NI' where id=7; -update noar tt set v0='7M5UK5' where id=8; -update noar ti set v0='7M5UK5' where id=8; -update noar tt set b0='L' where id=8; -update noar ti set b0='L' where id=8; -update noar tt set v0='M7247XEJX74G88Y8H0Q5' where id=8; -update noar ti set v0='M7247XEJX74G88Y8H0Q5' where id=8; -update noar tt set b1='4DSZ' where id=8; -update noar ti set b1='4DSZ' where id=8; -update noar tt set v0='A20Y' where id=8; -update noar ti set v0='A20Y' where id=8; -update noar tt set b2='8SCPPHFIX4UK4GKU7' where id=8; -update noar ti set b2='8SCPPHFIX4UK4GKU7' where id=8; -update noar tt set v0='89SQIW99INS4U78U2AMXUEEFZ' where id=9; -update noar ti set v0='89SQIW99INS4U78U2AMXUEEFZ' where id=9; -update noar tt set b0='DGQNX04SE68OA8YVL13ROFGW' where id=9; -update noar ti set b0='DGQNX04SE68OA8YVL13ROFGW' where id=9; -update noar tt set v0='LCQB' where id=9; -update noar ti set v0='LCQB' where id=9; -update noar tt set b1='RA5J948V80RU1JLDVJXQKVGF1TN' where id=9; -update noar ti set b1='RA5J948V80RU1JLDVJXQKVGF1TN' where id=9; -update noar tt set v0='Q' where id=9; -update noar ti set v0='Q' where id=9; -update noar tt set b2='IEYCDLXA98RP0PQXPJBWVP' where id=9; -update noar ti set b2='IEYCDLXA98RP0PQXPJBWVP' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -v0 varchar(32) not null, -b0 tinyblob not null, -b1 mediumblob not null, -b2 longblob not null -) engine=tokudb; -insert into tt values (1,'','','',''); -insert into tt values (2,'','','',''); -insert into tt values (3,'','','',''); -insert into tt values (4,'','','',''); -insert into tt values (5,'','','',''); -insert into tt values (6,'','','',''); -insert into tt values (7,'','','',''); -insert into tt values (8,'','','',''); -insert into tt values (9,'','','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='0SJCA511KEYYM' where id=1; -update noar ti set v0='0SJCA511KEYYM' where id=1; -update noar tt set b0='W7' where id=1; -update noar ti set b0='W7' where id=1; -update noar tt set v0='VRVME2GSIPXPCYDX1NACGKZT' where id=1; -update noar ti set v0='VRVME2GSIPXPCYDX1NACGKZT' where id=1; -update noar tt set b1='H3E1EQUDJF7M413S2' where id=1; -update noar ti set b1='H3E1EQUDJF7M413S2' where id=1; -update noar tt set v0='JJZS6U91T5FY83UVPOKNWAH' where id=1; -update noar ti set v0='JJZS6U91T5FY83UVPOKNWAH' where id=1; -update noar tt set b2='2Y20R4SGWOS7CTGJ4BWA' where id=1; -update noar ti set b2='2Y20R4SGWOS7CTGJ4BWA' where id=1; -update noar tt set v0='V1HRZDQDJ7Y1P3YDLTE3QPEK92' where id=2; -update noar ti set v0='V1HRZDQDJ7Y1P3YDLTE3QPEK92' where id=2; -update noar tt set b0='BFX7BQW9Y' where id=2; -update noar ti set b0='BFX7BQW9Y' where id=2; -update noar tt set v0='4KX7K5PO' where id=2; -update noar ti set v0='4KX7K5PO' where id=2; -update noar tt set b1='KTWW8A9GFYKXJUP0X9NPDSP5SB7O' where id=2; -update noar ti set b1='KTWW8A9GFYKXJUP0X9NPDSP5SB7O' where id=2; -update noar tt set v0='QYHZD5X53RE0QP8GM' where id=2; -update noar ti set v0='QYHZD5X53RE0QP8GM' where id=2; -update noar tt set b2='IQE1UB2COCEJFFKDDGUZ7' where id=2; -update noar ti set b2='IQE1UB2COCEJFFKDDGUZ7' where id=2; -update noar tt set v0='9AJ3Q8EQFWFWBVOT' where id=3; -update noar ti set v0='9AJ3Q8EQFWFWBVOT' where id=3; -update noar tt set b0='QBDE8JTC2DDX' where id=3; -update noar ti set b0='QBDE8JTC2DDX' where id=3; -update noar tt set v0='96I9H1' where id=3; -update noar ti set v0='96I9H1' where id=3; -update noar tt set b1='HWD9ABGEEQ7UE' where id=3; -update noar ti set b1='HWD9ABGEEQ7UE' where id=3; -update noar tt set v0='JJ6K0MLWS00DDWVG2X' where id=3; -update noar ti set v0='JJ6K0MLWS00DDWVG2X' where id=3; -update noar tt set b2='I8GFU0VFFCMCD1DFJ084XBI8EKTYDJ' where id=3; -update noar ti set b2='I8GFU0VFFCMCD1DFJ084XBI8EKTYDJ' where id=3; -update noar tt set v0='K9QTGG2ISNB5I86D7F0UH' where id=4; -update noar ti set v0='K9QTGG2ISNB5I86D7F0UH' where id=4; -update noar tt set b0='BNSBHTMZRUL' where id=4; -update noar ti set b0='BNSBHTMZRUL' where id=4; -update noar tt set v0='S38FMX' where id=4; -update noar ti set v0='S38FMX' where id=4; -update noar tt set b1='XT8' where id=4; -update noar ti set b1='XT8' where id=4; -update noar tt set v0='F46238UGJVOIVC7CAJ1RAJ6' where id=4; -update noar ti set v0='F46238UGJVOIVC7CAJ1RAJ6' where id=4; -update noar tt set b2='TPIBIYLLZZG8BFI' where id=4; -update noar ti set b2='TPIBIYLLZZG8BFI' where id=4; -update noar tt set v0='FUFPMZL1LK' where id=5; -update noar ti set v0='FUFPMZL1LK' where id=5; -update noar tt set b0='QM8OA2DZ5C' where id=5; -update noar ti set b0='QM8OA2DZ5C' where id=5; -update noar tt set v0='PHS6SOBQTC13N' where id=5; -update noar ti set v0='PHS6SOBQTC13N' where id=5; -update noar tt set b1='C721' where id=5; -update noar ti set b1='C721' where id=5; -update noar tt set v0='IXEN3G' where id=5; -update noar ti set v0='IXEN3G' where id=5; -update noar tt set b2='BI' where id=5; -update noar ti set b2='BI' where id=5; -update noar tt set v0='7PC0' where id=6; -update noar ti set v0='7PC0' where id=6; -update noar tt set b0='W9Q4IW24Y' where id=6; -update noar ti set b0='W9Q4IW24Y' where id=6; -update noar tt set v0='FI1IX6IEMST95OA51GX2FHDOI' where id=6; -update noar ti set v0='FI1IX6IEMST95OA51GX2FHDOI' where id=6; -update noar tt set b1='SREC' where id=6; -update noar ti set b1='SREC' where id=6; -update noar tt set v0='RUT9A46P' where id=6; -update noar ti set v0='RUT9A46P' where id=6; -update noar tt set b2='CP460MW8K20MNDMJJV' where id=6; -update noar ti set b2='CP460MW8K20MNDMJJV' where id=6; -update noar tt set v0='0OIXNLJPF1XE3W' where id=7; -update noar ti set v0='0OIXNLJPF1XE3W' where id=7; -update noar tt set b0='5FXKKR6' where id=7; -update noar ti set b0='5FXKKR6' where id=7; -update noar tt set v0='5ZA8' where id=7; -update noar ti set v0='5ZA8' where id=7; -update noar tt set b1='MEMEMJHPB9VM7N8T16QXR55RLPP6I' where id=7; -update noar ti set b1='MEMEMJHPB9VM7N8T16QXR55RLPP6I' where id=7; -update noar tt set v0='VNKZV582' where id=7; -update noar ti set v0='VNKZV582' where id=7; -update noar tt set b2='D40FG' where id=7; -update noar ti set b2='D40FG' where id=7; -update noar tt set v0='N' where id=8; -update noar ti set v0='N' where id=8; -update noar tt set b0='CKITJ80' where id=8; -update noar ti set b0='CKITJ80' where id=8; -update noar tt set v0='TAG8KP1I70T' where id=8; -update noar ti set v0='TAG8KP1I70T' where id=8; -update noar tt set b1='MUFDAR3MKF7G2' where id=8; -update noar ti set b1='MUFDAR3MKF7G2' where id=8; -update noar tt set v0='DV6OYSYMTSL4J0MZA4BLMR4SS' where id=8; -update noar ti set v0='DV6OYSYMTSL4J0MZA4BLMR4SS' where id=8; -update noar tt set b2='JD9VBD90ISALS28FAZR' where id=8; -update noar ti set b2='JD9VBD90ISALS28FAZR' where id=8; -update noar tt set v0='N9FWVOTP' where id=9; -update noar ti set v0='N9FWVOTP' where id=9; -update noar tt set b0='4CT9STPMHN9SOLOJ8KP8X0EF' where id=9; -update noar ti set b0='4CT9STPMHN9SOLOJ8KP8X0EF' where id=9; -update noar tt set v0='K1KQ1NZL' where id=9; -update noar ti set v0='K1KQ1NZL' where id=9; -update noar tt set b1='JUJ08UIPL' where id=9; -update noar ti set b1='JUJ08UIPL' where id=9; -update noar tt set v0='KXNON0H8NK4ER1X' where id=9; -update noar ti set v0='KXNON0H8NK4ER1X' where id=9; -update noar tt set b2='7DY89UDOPJ9NGZIPHWLEPBR928K' where id=9; -update noar ti set b2='7DY89UDOPJ9NGZIPHWLEPBR928K' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -v0 varchar(256) not null, -b0 tinyblob not null, -b1 mediumblob not null, -b2 longblob not null -) engine=tokudb; -insert into tt values (1,'','','',''); -insert into tt values (2,'','','',''); -insert into tt values (3,'','','',''); -insert into tt values (4,'','','',''); -insert into tt values (5,'','','',''); -insert into tt values (6,'','','',''); -insert into tt values (7,'','','',''); -insert into tt values (8,'','','',''); -insert into tt values (9,'','','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='SVS1CJH9MHOF' where id=1; -update noar ti set v0='SVS1CJH9MHOF' where id=1; -update noar tt set b0='P6VY4DA' where id=1; -update noar ti set b0='P6VY4DA' where id=1; -update noar tt set v0='YXA4PZVFI2SAPLXO2QQK' where id=1; -update noar ti set v0='YXA4PZVFI2SAPLXO2QQK' where id=1; -update noar tt set b1='YSWGMJAJQYQYH52NEFPYL6IOLB47' where id=1; -update noar ti set b1='YSWGMJAJQYQYH52NEFPYL6IOLB47' where id=1; -update noar tt set v0='U34RKJQPULMTCLIQ9O0AHDDJCBU' where id=1; -update noar ti set v0='U34RKJQPULMTCLIQ9O0AHDDJCBU' where id=1; -update noar tt set b2='32GZ9KL715RAV5L156X07TKP27V51' where id=1; -update noar ti set b2='32GZ9KL715RAV5L156X07TKP27V51' where id=1; -update noar tt set v0='HFXPSFWSTAQBLGF' where id=2; -update noar ti set v0='HFXPSFWSTAQBLGF' where id=2; -update noar tt set b0='16799X2JGMRSJKV9JT0E56V4' where id=2; -update noar ti set b0='16799X2JGMRSJKV9JT0E56V4' where id=2; -update noar tt set v0='Q8Y38VBDRAH' where id=2; -update noar ti set v0='Q8Y38VBDRAH' where id=2; -update noar tt set b1='JADHN4OKI9LI' where id=2; -update noar ti set b1='JADHN4OKI9LI' where id=2; -update noar tt set v0='28TF2' where id=2; -update noar ti set v0='28TF2' where id=2; -update noar tt set b2='I7CRDB3S3V' where id=2; -update noar ti set b2='I7CRDB3S3V' where id=2; -update noar tt set v0='C7JR292X2L1WZV94QN' where id=3; -update noar ti set v0='C7JR292X2L1WZV94QN' where id=3; -update noar tt set b0='YF5YOYC5' where id=3; -update noar ti set b0='YF5YOYC5' where id=3; -update noar tt set v0='3' where id=3; -update noar ti set v0='3' where id=3; -update noar tt set b1='JEVTUJ40FDZ0SJ7EXAU8G' where id=3; -update noar ti set b1='JEVTUJ40FDZ0SJ7EXAU8G' where id=3; -update noar tt set v0='FLHB2KV6J4G121' where id=3; -update noar ti set v0='FLHB2KV6J4G121' where id=3; -update noar tt set b2='JT3EX2VT' where id=3; -update noar ti set b2='JT3EX2VT' where id=3; -update noar tt set v0='EE243AO5A96' where id=4; -update noar ti set v0='EE243AO5A96' where id=4; -update noar tt set b0='5HWHG' where id=4; -update noar ti set b0='5HWHG' where id=4; -update noar tt set v0='F4' where id=4; -update noar ti set v0='F4' where id=4; -update noar tt set b1='W55UA' where id=4; -update noar ti set b1='W55UA' where id=4; -update noar tt set v0='VT5GWXF3N3BWL6RJGTL1EM' where id=4; -update noar ti set v0='VT5GWXF3N3BWL6RJGTL1EM' where id=4; -update noar tt set b2='K1WURXKC32P6M942G' where id=4; -update noar ti set b2='K1WURXKC32P6M942G' where id=4; -update noar tt set v0='MVJDMZCEEXMN3NDMDI8PD' where id=5; -update noar ti set v0='MVJDMZCEEXMN3NDMDI8PD' where id=5; -update noar tt set b0='EZEFSR60' where id=5; -update noar ti set b0='EZEFSR60' where id=5; -update noar tt set v0='WUOHULEMUZ6VZEB7V13RTEEZ4O' where id=5; -update noar ti set v0='WUOHULEMUZ6VZEB7V13RTEEZ4O' where id=5; -update noar tt set b1='4MDKTF12OW' where id=5; -update noar ti set b1='4MDKTF12OW' where id=5; -update noar tt set v0='2QBROSWYOZN1UVBY83' where id=5; -update noar ti set v0='2QBROSWYOZN1UVBY83' where id=5; -update noar tt set b2='C5XEL5SD8UGGKK15V2LVL' where id=5; -update noar ti set b2='C5XEL5SD8UGGKK15V2LVL' where id=5; -update noar tt set v0='UMYDN4A9YJIWBTAACWYWPB98K7Y' where id=6; -update noar ti set v0='UMYDN4A9YJIWBTAACWYWPB98K7Y' where id=6; -update noar tt set b0='A7DYUHZ2M6FUEVZPGSORYFHLGWVE6R8' where id=6; -update noar ti set b0='A7DYUHZ2M6FUEVZPGSORYFHLGWVE6R8' where id=6; -update noar tt set v0='1WZB259RAVK7RB4OXP2FMLF8PFN' where id=6; -update noar ti set v0='1WZB259RAVK7RB4OXP2FMLF8PFN' where id=6; -update noar tt set b1='NQ' where id=6; -update noar ti set b1='NQ' where id=6; -update noar tt set v0='5M8SF1VA' where id=6; -update noar ti set v0='5M8SF1VA' where id=6; -update noar tt set b2='WHA1UQ691XYY03Z6BSSYM' where id=6; -update noar ti set b2='WHA1UQ691XYY03Z6BSSYM' where id=6; -update noar tt set v0='QW3RFE7OMBWT' where id=7; -update noar ti set v0='QW3RFE7OMBWT' where id=7; -update noar tt set b0='ZUXQIXF8ET16V9INAGS9RU7NT7VL0YB5' where id=7; -update noar ti set b0='ZUXQIXF8ET16V9INAGS9RU7NT7VL0YB5' where id=7; -update noar tt set v0='NC34Q6U1KKX666K8XF' where id=7; -update noar ti set v0='NC34Q6U1KKX666K8XF' where id=7; -update noar tt set b1='14J4V1B186PIFT7IOGS05OS' where id=7; -update noar ti set b1='14J4V1B186PIFT7IOGS05OS' where id=7; -update noar tt set v0='Q' where id=7; -update noar ti set v0='Q' where id=7; -update noar tt set b2='BMYOOMTZGF9W' where id=7; -update noar ti set b2='BMYOOMTZGF9W' where id=7; -update noar tt set v0='I26IL1UK' where id=8; -update noar ti set v0='I26IL1UK' where id=8; -update noar tt set b0='FJ6EHR' where id=8; -update noar ti set b0='FJ6EHR' where id=8; -update noar tt set v0='98S8AP88WJKA5BW7CA' where id=8; -update noar ti set v0='98S8AP88WJKA5BW7CA' where id=8; -update noar tt set b1='4ELCB1SGHORBKGVTPBV0' where id=8; -update noar ti set b1='4ELCB1SGHORBKGVTPBV0' where id=8; -update noar tt set v0='WCD3ZIUW' where id=8; -update noar ti set v0='WCD3ZIUW' where id=8; -update noar tt set b2='AHG5G' where id=8; -update noar ti set b2='AHG5G' where id=8; -update noar tt set v0='RQ955GUNMT' where id=9; -update noar ti set v0='RQ955GUNMT' where id=9; -update noar tt set b0='BWQGDY2J' where id=9; -update noar ti set b0='BWQGDY2J' where id=9; -update noar tt set v0='E2HHWLPCNR1I0PLZRMAT77' where id=9; -update noar ti set v0='E2HHWLPCNR1I0PLZRMAT77' where id=9; -update noar tt set b1='KPFBY4BJOM121XBCCCC' where id=9; -update noar ti set b1='KPFBY4BJOM121XBCCCC' where id=9; -update noar tt set v0='FEDMAGOB4PM' where id=9; -update noar ti set v0='FEDMAGOB4PM' where id=9; -update noar tt set b2='MBBATGZXRRU2P59YLV857SCUWXWWS8T4' where id=9; -update noar ti set b2='MBBATGZXRRU2P59YLV857SCUWXWWS8T4' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -v0 varchar(32) null, -b0 tinyblob null, -b1 longblob null, -b2 tinyblob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='7NSIRRE7PDO090UO532COPA' where id=1; -update noar ti set v0='7NSIRRE7PDO090UO532COPA' where id=1; -update noar tt set b0='SX1AT' where id=1; -update noar ti set b0='SX1AT' where id=1; -update noar tt set v0='N03ON7YRP8S' where id=1; -update noar ti set v0='N03ON7YRP8S' where id=1; -update noar tt set b1='89HJLL11ASIIQCQURM' where id=1; -update noar ti set b1='89HJLL11ASIIQCQURM' where id=1; -update noar tt set v0='A4AR7' where id=1; -update noar ti set v0='A4AR7' where id=1; -update noar tt set b2='4STMA40VXNVHX21JKMY0U7CRGFV' where id=1; -update noar ti set b2='4STMA40VXNVHX21JKMY0U7CRGFV' where id=1; -update noar tt set v0='CNJPQ8M5OOF43FVR565L9Q' where id=2; -update noar ti set v0='CNJPQ8M5OOF43FVR565L9Q' where id=2; -update noar tt set b0='P4N9VL314ZEE0KPBL6GMRVFOBWYS1Q4' where id=2; -update noar ti set b0='P4N9VL314ZEE0KPBL6GMRVFOBWYS1Q4' where id=2; -update noar tt set v0='FSFE' where id=2; -update noar ti set v0='FSFE' where id=2; -update noar tt set b1='B2TJ8GHM7NWEDNHL9KUUL3MX' where id=2; -update noar ti set b1='B2TJ8GHM7NWEDNHL9KUUL3MX' where id=2; -update noar tt set v0='UUQ5Z5E0CUX6IYJ8LK1NS' where id=2; -update noar ti set v0='UUQ5Z5E0CUX6IYJ8LK1NS' where id=2; -update noar tt set b2='QDH8NG2' where id=2; -update noar ti set b2='QDH8NG2' where id=2; -update noar tt set v0='DLVBH3MJV22GPNKA3K37GDENTRPIYXR4' where id=3; -update noar ti set v0='DLVBH3MJV22GPNKA3K37GDENTRPIYXR4' where id=3; -update noar tt set b0='3C2VSEMVT8XRBJ9XXS7FCDH' where id=3; -update noar ti set b0='3C2VSEMVT8XRBJ9XXS7FCDH' where id=3; -update noar tt set v0='N4LSDCST46CMPHS6QKMYNYUAB4P' where id=3; -update noar ti set v0='N4LSDCST46CMPHS6QKMYNYUAB4P' where id=3; -update noar tt set b1='ZINN5OCLXVKHNPTIQC32MEQRVF' where id=3; -update noar ti set b1='ZINN5OCLXVKHNPTIQC32MEQRVF' where id=3; -update noar tt set v0='5A' where id=3; -update noar ti set v0='5A' where id=3; -update noar tt set b2='MBQZQAJP7GE1BEINRJAX66P5RXLORBJ' where id=3; -update noar ti set b2='MBQZQAJP7GE1BEINRJAX66P5RXLORBJ' where id=3; -update noar tt set v0='5IP4Z' where id=4; -update noar ti set v0='5IP4Z' where id=4; -update noar tt set b0='F0PJ76HZYMDYELDP' where id=4; -update noar ti set b0='F0PJ76HZYMDYELDP' where id=4; -update noar tt set v0='ND3OBZ0QX22Q8T1C3JCUJ7Q970EZB' where id=4; -update noar ti set v0='ND3OBZ0QX22Q8T1C3JCUJ7Q970EZB' where id=4; -update noar tt set b1='K4AAQ02SKB1JEGCGIQHQQ59ONPLO' where id=4; -update noar ti set b1='K4AAQ02SKB1JEGCGIQHQQ59ONPLO' where id=4; -update noar tt set v0='OA4L81CUX' where id=4; -update noar ti set v0='OA4L81CUX' where id=4; -update noar tt set b2='9MH33JRVK3ZAJBAHV820B4EPI' where id=4; -update noar ti set b2='9MH33JRVK3ZAJBAHV820B4EPI' where id=4; -update noar tt set v0='NUCA6QW41U1' where id=5; -update noar ti set v0='NUCA6QW41U1' where id=5; -update noar tt set b0='W7' where id=5; -update noar ti set b0='W7' where id=5; -update noar tt set v0='7CPMRUITWASXS3PY1GRS2GJCL' where id=5; -update noar ti set v0='7CPMRUITWASXS3PY1GRS2GJCL' where id=5; -update noar tt set b1='EYP8B4K5TO5MRYM9W9PNOYSH9BVQC0K' where id=5; -update noar ti set b1='EYP8B4K5TO5MRYM9W9PNOYSH9BVQC0K' where id=5; -update noar tt set v0='9H' where id=5; -update noar ti set v0='9H' where id=5; -update noar tt set b2='VS0M366QSZP3OIJBV7VNVH04' where id=5; -update noar ti set b2='VS0M366QSZP3OIJBV7VNVH04' where id=5; -update noar tt set v0='MP' where id=6; -update noar ti set v0='MP' where id=6; -update noar tt set b0='FWNPZUJD8QQXS8LU7IVDY1SFESSS04C' where id=6; -update noar ti set b0='FWNPZUJD8QQXS8LU7IVDY1SFESSS04C' where id=6; -update noar tt set v0='NIN' where id=6; -update noar ti set v0='NIN' where id=6; -update noar tt set b1='G1VN' where id=6; -update noar ti set b1='G1VN' where id=6; -update noar tt set v0='5X4A8X9G' where id=6; -update noar ti set v0='5X4A8X9G' where id=6; -update noar tt set b2='L4TF1XNRU' where id=6; -update noar ti set b2='L4TF1XNRU' where id=6; -update noar tt set v0='CGW4S3OU4X2HWSIAI' where id=7; -update noar ti set v0='CGW4S3OU4X2HWSIAI' where id=7; -update noar tt set b0='O8DNPYHHPKAXU6UEHLVQ' where id=7; -update noar ti set b0='O8DNPYHHPKAXU6UEHLVQ' where id=7; -update noar tt set v0='RAE20RBAM4QA5NA0IR3G7EJR' where id=7; -update noar ti set v0='RAE20RBAM4QA5NA0IR3G7EJR' where id=7; -update noar tt set b1='7J25YMESJRBJIUEPPMIJFYY5EWH3QOZ' where id=7; -update noar ti set b1='7J25YMESJRBJIUEPPMIJFYY5EWH3QOZ' where id=7; -update noar tt set v0='VXXDJWEH6L0Q37VZH4' where id=7; -update noar ti set v0='VXXDJWEH6L0Q37VZH4' where id=7; -update noar tt set b2='IEAF28JH6ZODZE1RH1ADTRS6P84Q9' where id=7; -update noar ti set b2='IEAF28JH6ZODZE1RH1ADTRS6P84Q9' where id=7; -update noar tt set v0='9FM9F4HES3IDD1' where id=8; -update noar ti set v0='9FM9F4HES3IDD1' where id=8; -update noar tt set b0='1GSA50TRBY1A' where id=8; -update noar ti set b0='1GSA50TRBY1A' where id=8; -update noar tt set v0='GPKEQ6JDN3EJ' where id=8; -update noar ti set v0='GPKEQ6JDN3EJ' where id=8; -update noar tt set b1='HMCACD3NLDLBM' where id=8; -update noar ti set b1='HMCACD3NLDLBM' where id=8; -update noar tt set v0='Z603RQ186GKQSMCEEGWCS91F' where id=8; -update noar ti set v0='Z603RQ186GKQSMCEEGWCS91F' where id=8; -update noar tt set b2='N7LL9Q1GGC44BJ0U' where id=8; -update noar ti set b2='N7LL9Q1GGC44BJ0U' where id=8; -update noar tt set v0='KRQ2CIRE' where id=9; -update noar ti set v0='KRQ2CIRE' where id=9; -update noar tt set b0='0HT9ZF' where id=9; -update noar ti set b0='0HT9ZF' where id=9; -update noar tt set v0='IDM27YTA1K3D9HOGAZ' where id=9; -update noar ti set v0='IDM27YTA1K3D9HOGAZ' where id=9; -update noar tt set b1='NG5LFG7C0IR0J' where id=9; -update noar ti set b1='NG5LFG7C0IR0J' where id=9; -update noar tt set v0='83UF3JY7X03WD4KBHVN4JJA7HU4' where id=9; -update noar ti set v0='83UF3JY7X03WD4KBHVN4JJA7HU4' where id=9; -update noar tt set b2='A7VR9468YV1K7NQ83D4QW' where id=9; -update noar ti set b2='A7VR9468YV1K7NQ83D4QW' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -v0 varchar(256) null, -b0 tinyblob null, -b1 longblob null, -b2 tinyblob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='F2G0ANRRZDXN3D4FFNC' where id=1; -update noar ti set v0='F2G0ANRRZDXN3D4FFNC' where id=1; -update noar tt set b0='RUZV3AR7JIM1O52' where id=1; -update noar ti set b0='RUZV3AR7JIM1O52' where id=1; -update noar tt set v0='59UDFGL51M92PCG8O6804M7B0Z8QQ0' where id=1; -update noar ti set v0='59UDFGL51M92PCG8O6804M7B0Z8QQ0' where id=1; -update noar tt set b1='LUMO2HT0IAWOA59X6X6' where id=1; -update noar ti set b1='LUMO2HT0IAWOA59X6X6' where id=1; -update noar tt set v0='QXKFTUV6ZV4D6BQ' where id=1; -update noar ti set v0='QXKFTUV6ZV4D6BQ' where id=1; -update noar tt set b2='SE8WE0ZRY65IKZ895HX41WXKA' where id=1; -update noar ti set b2='SE8WE0ZRY65IKZ895HX41WXKA' where id=1; -update noar tt set v0='XQ7F80R840L815GP6MFV07OD0U9K1VY' where id=2; -update noar ti set v0='XQ7F80R840L815GP6MFV07OD0U9K1VY' where id=2; -update noar tt set b0='0EVJPQXQTW7Z' where id=2; -update noar ti set b0='0EVJPQXQTW7Z' where id=2; -update noar tt set v0='SH' where id=2; -update noar ti set v0='SH' where id=2; -update noar tt set b1='9E6QCLPTOE7BM' where id=2; -update noar ti set b1='9E6QCLPTOE7BM' where id=2; -update noar tt set v0='V7E1KX6HZKTERI90R9H' where id=2; -update noar ti set v0='V7E1KX6HZKTERI90R9H' where id=2; -update noar tt set b2='4343FP2BN3JCXP8BJOBSFM08RD7W6JH' where id=2; -update noar ti set b2='4343FP2BN3JCXP8BJOBSFM08RD7W6JH' where id=2; -update noar tt set v0='3YT' where id=3; -update noar ti set v0='3YT' where id=3; -update noar tt set b0='J0R9J071UFTZRFQBIV' where id=3; -update noar ti set b0='J0R9J071UFTZRFQBIV' where id=3; -update noar tt set v0='DY7R66U21GBF7H' where id=3; -update noar ti set v0='DY7R66U21GBF7H' where id=3; -update noar tt set b1='21ZAX0DMZ8EYSO8C372P80ULM' where id=3; -update noar ti set b1='21ZAX0DMZ8EYSO8C372P80ULM' where id=3; -update noar tt set v0='JLYNG0GO4GDX' where id=3; -update noar ti set v0='JLYNG0GO4GDX' where id=3; -update noar tt set b2='XSEEWBUBJIT889CWKKT3V' where id=3; -update noar ti set b2='XSEEWBUBJIT889CWKKT3V' where id=3; -update noar tt set v0='MIC2UB2IYTMJIIDM5YR' where id=4; -update noar ti set v0='MIC2UB2IYTMJIIDM5YR' where id=4; -update noar tt set b0='6MO92TRDPABU' where id=4; -update noar ti set b0='6MO92TRDPABU' where id=4; -update noar tt set v0='LUDE4FOMKEMAIAPU25V38WG' where id=4; -update noar ti set v0='LUDE4FOMKEMAIAPU25V38WG' where id=4; -update noar tt set b1='B539UQP1' where id=4; -update noar ti set b1='B539UQP1' where id=4; -update noar tt set v0='W80LXAGKMIIKDMLCA86V374D' where id=4; -update noar ti set v0='W80LXAGKMIIKDMLCA86V374D' where id=4; -update noar tt set b2='U1SC08Z' where id=4; -update noar ti set b2='U1SC08Z' where id=4; -update noar tt set v0='3GUHJWCANWBT7DRLUL0O' where id=5; -update noar ti set v0='3GUHJWCANWBT7DRLUL0O' where id=5; -update noar tt set b0='31FMH4K8' where id=5; -update noar ti set b0='31FMH4K8' where id=5; -update noar tt set v0='EEBKZDI4Z5ZD5EVY4WSG9' where id=5; -update noar ti set v0='EEBKZDI4Z5ZD5EVY4WSG9' where id=5; -update noar tt set b1='WLRJTIWA4U8IWTAIT5DBCAF' where id=5; -update noar ti set b1='WLRJTIWA4U8IWTAIT5DBCAF' where id=5; -update noar tt set v0='U2D1EB4WWYI6XBAFVLXTXF3VD8X0' where id=5; -update noar ti set v0='U2D1EB4WWYI6XBAFVLXTXF3VD8X0' where id=5; -update noar tt set b2='ETUW9U7OIZV04B9X5QR47' where id=5; -update noar ti set b2='ETUW9U7OIZV04B9X5QR47' where id=5; -update noar tt set v0='V9OVZF75BGPQF' where id=6; -update noar ti set v0='V9OVZF75BGPQF' where id=6; -update noar tt set b0='O4USARXBMSLAUMT3Z2' where id=6; -update noar ti set b0='O4USARXBMSLAUMT3Z2' where id=6; -update noar tt set v0='S' where id=6; -update noar ti set v0='S' where id=6; -update noar tt set b1='X1N47' where id=6; -update noar ti set b1='X1N47' where id=6; -update noar tt set v0='ZN3YFSON7Z3TY6SZXH09' where id=6; -update noar ti set v0='ZN3YFSON7Z3TY6SZXH09' where id=6; -update noar tt set b2='X0ILJWFPQ' where id=6; -update noar ti set b2='X0ILJWFPQ' where id=6; -update noar tt set v0='1QLFW9CL7BMT97T6LDW' where id=7; -update noar ti set v0='1QLFW9CL7BMT97T6LDW' where id=7; -update noar tt set b0='W5BW075XNE51' where id=7; -update noar ti set b0='W5BW075XNE51' where id=7; -update noar tt set v0='U79QMV33OU' where id=7; -update noar ti set v0='U79QMV33OU' where id=7; -update noar tt set b1='VQYEN3C9V4WKH158NI9B9XXO' where id=7; -update noar ti set b1='VQYEN3C9V4WKH158NI9B9XXO' where id=7; -update noar tt set v0='QOGJE1JD52Q' where id=7; -update noar ti set v0='QOGJE1JD52Q' where id=7; -update noar tt set b2='AOG6H' where id=7; -update noar ti set b2='AOG6H' where id=7; -update noar tt set v0='EXKDQW53D' where id=8; -update noar ti set v0='EXKDQW53D' where id=8; -update noar tt set b0='8DO6JVYMT6WHBPHEWU' where id=8; -update noar ti set b0='8DO6JVYMT6WHBPHEWU' where id=8; -update noar tt set v0='4MPSGJFPHGLMLJA4O' where id=8; -update noar ti set v0='4MPSGJFPHGLMLJA4O' where id=8; -update noar tt set b1='BF8S1V9QSSY' where id=8; -update noar ti set b1='BF8S1V9QSSY' where id=8; -update noar tt set v0='TK0RXP9B9UX6U2HH5Z' where id=8; -update noar ti set v0='TK0RXP9B9UX6U2HH5Z' where id=8; -update noar tt set b2='H7VMWTB517LSTLC81CQ' where id=8; -update noar ti set b2='H7VMWTB517LSTLC81CQ' where id=8; -update noar tt set v0='DMU3ZIU56SRXS6FPFPK' where id=9; -update noar ti set v0='DMU3ZIU56SRXS6FPFPK' where id=9; -update noar tt set b0='UX7KVYM0N0M95O9PEZEGVUBW' where id=9; -update noar ti set b0='UX7KVYM0N0M95O9PEZEGVUBW' where id=9; -update noar tt set v0='8MW67DCKDMWV7O9LWOZ9XT' where id=9; -update noar ti set v0='8MW67DCKDMWV7O9LWOZ9XT' where id=9; -update noar tt set b1='XPRPASTTAAY42U64R24J47B' where id=9; -update noar ti set b1='XPRPASTTAAY42U64R24J47B' where id=9; -update noar tt set v0='CP6YERJLIPJXMW55SGO31TTO' where id=9; -update noar ti set v0='CP6YERJLIPJXMW55SGO31TTO' where id=9; -update noar tt set b2='U' where id=9; -update noar ti set b2='U' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -v0 varchar(32) not null, -b0 tinyblob not null, -b1 longblob not null, -b2 tinyblob not null -) engine=tokudb; -insert into tt values (1,'','','',''); -insert into tt values (2,'','','',''); -insert into tt values (3,'','','',''); -insert into tt values (4,'','','',''); -insert into tt values (5,'','','',''); -insert into tt values (6,'','','',''); -insert into tt values (7,'','','',''); -insert into tt values (8,'','','',''); -insert into tt values (9,'','','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='GA4XSR9G0Z278E' where id=1; -update noar ti set v0='GA4XSR9G0Z278E' where id=1; -update noar tt set b0='TEMR3FDD' where id=1; -update noar ti set b0='TEMR3FDD' where id=1; -update noar tt set v0='SXZ7LDMEV1V2B3IZ0H37QK1XVKEKLG' where id=1; -update noar ti set v0='SXZ7LDMEV1V2B3IZ0H37QK1XVKEKLG' where id=1; -update noar tt set b1='D06Y0' where id=1; -update noar ti set b1='D06Y0' where id=1; -update noar tt set v0='S' where id=1; -update noar ti set v0='S' where id=1; -update noar tt set b2='20J9T1RKH7RJQVCM16OAVBF' where id=1; -update noar ti set b2='20J9T1RKH7RJQVCM16OAVBF' where id=1; -update noar tt set v0='LTC36CHJHB7KHR1ZDCW0SHY' where id=2; -update noar ti set v0='LTC36CHJHB7KHR1ZDCW0SHY' where id=2; -update noar tt set b0='A14Z7NYHDE14' where id=2; -update noar ti set b0='A14Z7NYHDE14' where id=2; -update noar tt set v0='JL2VIF22GD2CI7A8UN60AVDNE' where id=2; -update noar ti set v0='JL2VIF22GD2CI7A8UN60AVDNE' where id=2; -update noar tt set b1='HO9MK5ALLTQC' where id=2; -update noar ti set b1='HO9MK5ALLTQC' where id=2; -update noar tt set v0='UN68P4J1BF90QK1NUM20LWJFDN4SO' where id=2; -update noar ti set v0='UN68P4J1BF90QK1NUM20LWJFDN4SO' where id=2; -update noar tt set b2='ZGXMKN85YUB05XWMS76C5IY5X' where id=2; -update noar ti set b2='ZGXMKN85YUB05XWMS76C5IY5X' where id=2; -update noar tt set v0='VYX70NNZ' where id=3; -update noar ti set v0='VYX70NNZ' where id=3; -update noar tt set b0='8N4BD6CL49ZP1WM235HXJ49PFN1E' where id=3; -update noar ti set b0='8N4BD6CL49ZP1WM235HXJ49PFN1E' where id=3; -update noar tt set v0='SVHRUJ54CPM9V3VUZ5E2' where id=3; -update noar ti set v0='SVHRUJ54CPM9V3VUZ5E2' where id=3; -update noar tt set b1='E1FLSM' where id=3; -update noar ti set b1='E1FLSM' where id=3; -update noar tt set v0='VGQ1VZCNBLB2N88GZ0OYOO4I9I' where id=3; -update noar ti set v0='VGQ1VZCNBLB2N88GZ0OYOO4I9I' where id=3; -update noar tt set b2='33MZ9BRILUC46PAPTRAJY5UTC2D' where id=3; -update noar ti set b2='33MZ9BRILUC46PAPTRAJY5UTC2D' where id=3; -update noar tt set v0='D5M58L256U4RE2ZJAQUO3LXHY01PQH1G' where id=4; -update noar ti set v0='D5M58L256U4RE2ZJAQUO3LXHY01PQH1G' where id=4; -update noar tt set b0='OACS3LL439BRLI8QIBOC0RAKO' where id=4; -update noar ti set b0='OACS3LL439BRLI8QIBOC0RAKO' where id=4; -update noar tt set v0='XQ0UVE0YG4178G1CODVZFZG6Z' where id=4; -update noar ti set v0='XQ0UVE0YG4178G1CODVZFZG6Z' where id=4; -update noar tt set b1='XBH3M' where id=4; -update noar ti set b1='XBH3M' where id=4; -update noar tt set v0='F0LCQLBN08IM8PTNGP9HLWM28T' where id=4; -update noar ti set v0='F0LCQLBN08IM8PTNGP9HLWM28T' where id=4; -update noar tt set b2='9E0QDDOZ70BV7J4GPWUMTPCXWY' where id=4; -update noar ti set b2='9E0QDDOZ70BV7J4GPWUMTPCXWY' where id=4; -update noar tt set v0='19728D9MCS4' where id=5; -update noar ti set v0='19728D9MCS4' where id=5; -update noar tt set b0='5EHQWZ96F06AO9F2HO9Z6SYYCFC' where id=5; -update noar ti set b0='5EHQWZ96F06AO9F2HO9Z6SYYCFC' where id=5; -update noar tt set v0='RMWZ03T59S5ROOWWL4SO' where id=5; -update noar ti set v0='RMWZ03T59S5ROOWWL4SO' where id=5; -update noar tt set b1='3Z8GHUM0Y69R5UD5E4PWUH8HSD' where id=5; -update noar ti set b1='3Z8GHUM0Y69R5UD5E4PWUH8HSD' where id=5; -update noar tt set v0='E7UYXZ2B1SBHJ5YI5QT1KOK8DF' where id=5; -update noar ti set v0='E7UYXZ2B1SBHJ5YI5QT1KOK8DF' where id=5; -update noar tt set b2='0CDF8CJ76JCIX' where id=5; -update noar ti set b2='0CDF8CJ76JCIX' where id=5; -update noar tt set v0='S047S' where id=6; -update noar ti set v0='S047S' where id=6; -update noar tt set b0='2UAAT5D6ZDM46WZG78ULDC' where id=6; -update noar ti set b0='2UAAT5D6ZDM46WZG78ULDC' where id=6; -update noar tt set v0='DEB4J06NZKCOT8UV' where id=6; -update noar ti set v0='DEB4J06NZKCOT8UV' where id=6; -update noar tt set b1='SZEZR' where id=6; -update noar ti set b1='SZEZR' where id=6; -update noar tt set v0='A0CL8JG7AUL35' where id=6; -update noar ti set v0='A0CL8JG7AUL35' where id=6; -update noar tt set b2='J1' where id=6; -update noar ti set b2='J1' where id=6; -update noar tt set v0='9TA9ASJL9' where id=7; -update noar ti set v0='9TA9ASJL9' where id=7; -update noar tt set b0='03JPTBPKLNB1G54Y3UKFPKSX989Y' where id=7; -update noar ti set b0='03JPTBPKLNB1G54Y3UKFPKSX989Y' where id=7; -update noar tt set v0='MN9SKRX9DBQ2X8SY6B3HGMIFF' where id=7; -update noar ti set v0='MN9SKRX9DBQ2X8SY6B3HGMIFF' where id=7; -update noar tt set b1='9HB6957204TVPI1PJZIBAFHVMTXHG8' where id=7; -update noar ti set b1='9HB6957204TVPI1PJZIBAFHVMTXHG8' where id=7; -update noar tt set v0='TAD6DCQDGFSCOQMND7KFTHQEOO0T3' where id=7; -update noar ti set v0='TAD6DCQDGFSCOQMND7KFTHQEOO0T3' where id=7; -update noar tt set b2='VSD39SUUD' where id=7; -update noar ti set b2='VSD39SUUD' where id=7; -update noar tt set v0='N7DJLUZCRODL6MPDJF5N1U2MF3PPD5D' where id=8; -update noar ti set v0='N7DJLUZCRODL6MPDJF5N1U2MF3PPD5D' where id=8; -update noar tt set b0='GN3AEOJEFP12IT2Q5D786' where id=8; -update noar ti set b0='GN3AEOJEFP12IT2Q5D786' where id=8; -update noar tt set v0='BY0TR3KHUS' where id=8; -update noar ti set v0='BY0TR3KHUS' where id=8; -update noar tt set b1='PTP14D3R2FFALR7' where id=8; -update noar ti set b1='PTP14D3R2FFALR7' where id=8; -update noar tt set v0='L08T52YFXB3KCDBLNJ3PTQ99R1PI' where id=8; -update noar ti set v0='L08T52YFXB3KCDBLNJ3PTQ99R1PI' where id=8; -update noar tt set b2='5ADFE3ZKBHV7' where id=8; -update noar ti set b2='5ADFE3ZKBHV7' where id=8; -update noar tt set v0='DCEEB3ZJBY' where id=9; -update noar ti set v0='DCEEB3ZJBY' where id=9; -update noar tt set b0='N7IUX' where id=9; -update noar ti set b0='N7IUX' where id=9; -update noar tt set v0='VCHGPT' where id=9; -update noar ti set v0='VCHGPT' where id=9; -update noar tt set b1='I45GLXSBV3BX77OWMLZPM2K4GQIE' where id=9; -update noar ti set b1='I45GLXSBV3BX77OWMLZPM2K4GQIE' where id=9; -update noar tt set v0='UKEUMOA2CZBCJQQ1E3XV4R' where id=9; -update noar ti set v0='UKEUMOA2CZBCJQQ1E3XV4R' where id=9; -update noar tt set b2='A74Z0BJGH' where id=9; -update noar ti set b2='A74Z0BJGH' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -v0 varchar(256) not null, -b0 tinyblob not null, -b1 longblob not null, -b2 tinyblob not null -) engine=tokudb; -insert into tt values (1,'','','',''); -insert into tt values (2,'','','',''); -insert into tt values (3,'','','',''); -insert into tt values (4,'','','',''); -insert into tt values (5,'','','',''); -insert into tt values (6,'','','',''); -insert into tt values (7,'','','',''); -insert into tt values (8,'','','',''); -insert into tt values (9,'','','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='RHX6ZSEPWDD180CGDNX2ANY4L6MVRZ2' where id=1; -update noar ti set v0='RHX6ZSEPWDD180CGDNX2ANY4L6MVRZ2' where id=1; -update noar tt set b0='SI7' where id=1; -update noar ti set b0='SI7' where id=1; -update noar tt set v0='Z95A' where id=1; -update noar ti set v0='Z95A' where id=1; -update noar tt set b1='XMMOVC3LW7MB1GHC7FML31A640CG' where id=1; -update noar ti set b1='XMMOVC3LW7MB1GHC7FML31A640CG' where id=1; -update noar tt set v0='F02EU' where id=1; -update noar ti set v0='F02EU' where id=1; -update noar tt set b2='JKWK22SXMSVES6SL311FRL62PRSHWK' where id=1; -update noar ti set b2='JKWK22SXMSVES6SL311FRL62PRSHWK' where id=1; -update noar tt set v0='A0QIZ6RB9BER48PW9XFIN' where id=2; -update noar ti set v0='A0QIZ6RB9BER48PW9XFIN' where id=2; -update noar tt set b0='ZP5UWW' where id=2; -update noar ti set b0='ZP5UWW' where id=2; -update noar tt set v0='7AW12LPSV3PBNK1BWQ8EXJT86' where id=2; -update noar ti set v0='7AW12LPSV3PBNK1BWQ8EXJT86' where id=2; -update noar tt set b1='V2LS' where id=2; -update noar ti set b1='V2LS' where id=2; -update noar tt set v0='1HPC7O56RS' where id=2; -update noar ti set v0='1HPC7O56RS' where id=2; -update noar tt set b2='2PI' where id=2; -update noar ti set b2='2PI' where id=2; -update noar tt set v0='05OYNJDEW43LOKF35I8QQKT1' where id=3; -update noar ti set v0='05OYNJDEW43LOKF35I8QQKT1' where id=3; -update noar tt set b0='AD' where id=3; -update noar ti set b0='AD' where id=3; -update noar tt set v0='HAQ2W' where id=3; -update noar ti set v0='HAQ2W' where id=3; -update noar tt set b1='0L5BOQQDOPLA6RFIQCUF1R9G86BQVH64' where id=3; -update noar ti set b1='0L5BOQQDOPLA6RFIQCUF1R9G86BQVH64' where id=3; -update noar tt set v0='W7YAHULSVIZN' where id=3; -update noar ti set v0='W7YAHULSVIZN' where id=3; -update noar tt set b2='MELO6E1P5A0PRF9E8VIV7DQ9' where id=3; -update noar ti set b2='MELO6E1P5A0PRF9E8VIV7DQ9' where id=3; -update noar tt set v0='8' where id=4; -update noar ti set v0='8' where id=4; -update noar tt set b0='Z35O2JHUSNVD4M9OLS7IKLZ31XIKSZK8' where id=4; -update noar ti set b0='Z35O2JHUSNVD4M9OLS7IKLZ31XIKSZK8' where id=4; -update noar tt set v0='X6PSJ48A1HL' where id=4; -update noar ti set v0='X6PSJ48A1HL' where id=4; -update noar tt set b1='EZNSOAW8EVHWU1MIE' where id=4; -update noar ti set b1='EZNSOAW8EVHWU1MIE' where id=4; -update noar tt set v0='F7S5LV11CKC0U3IM' where id=4; -update noar ti set v0='F7S5LV11CKC0U3IM' where id=4; -update noar tt set b2='3Y8D922DCGB3PH37VOH030VJ56P5IT' where id=4; -update noar ti set b2='3Y8D922DCGB3PH37VOH030VJ56P5IT' where id=4; -update noar tt set v0='ZE1ZSJWS3GCH' where id=5; -update noar ti set v0='ZE1ZSJWS3GCH' where id=5; -update noar tt set b0='PCZDZTQDK430MZCCM3ED4' where id=5; -update noar ti set b0='PCZDZTQDK430MZCCM3ED4' where id=5; -update noar tt set v0='HN2Z9DSE02K9MU2HY42JS0DN' where id=5; -update noar ti set v0='HN2Z9DSE02K9MU2HY42JS0DN' where id=5; -update noar tt set b1='LN30P564TPXKP' where id=5; -update noar ti set b1='LN30P564TPXKP' where id=5; -update noar tt set v0='QS6PSAF6OG0L583UJ' where id=5; -update noar ti set v0='QS6PSAF6OG0L583UJ' where id=5; -update noar tt set b2='MX' where id=5; -update noar ti set b2='MX' where id=5; -update noar tt set v0='72J8TF5LRK6XC8AKD438HXCI4L' where id=6; -update noar ti set v0='72J8TF5LRK6XC8AKD438HXCI4L' where id=6; -update noar tt set b0='Z8TXQHOD' where id=6; -update noar ti set b0='Z8TXQHOD' where id=6; -update noar tt set v0='FAUAR4GWV1M1HHIXYVQ1' where id=6; -update noar ti set v0='FAUAR4GWV1M1HHIXYVQ1' where id=6; -update noar tt set b1='FUX4LNKYFX1' where id=6; -update noar ti set b1='FUX4LNKYFX1' where id=6; -update noar tt set v0='JSZMC2BR1W5EQ3P' where id=6; -update noar ti set v0='JSZMC2BR1W5EQ3P' where id=6; -update noar tt set b2='8LT9TI' where id=6; -update noar ti set b2='8LT9TI' where id=6; -update noar tt set v0='NUERFXT5L7YF9A' where id=7; -update noar ti set v0='NUERFXT5L7YF9A' where id=7; -update noar tt set b0='RHIM46ID550YIE940WF819NFVU6' where id=7; -update noar ti set b0='RHIM46ID550YIE940WF819NFVU6' where id=7; -update noar tt set v0='5QIFBBQ8NXLZPVQRJAIAN7TZ2' where id=7; -update noar ti set v0='5QIFBBQ8NXLZPVQRJAIAN7TZ2' where id=7; -update noar tt set b1='YO9LBZV13IGKDV' where id=7; -update noar ti set b1='YO9LBZV13IGKDV' where id=7; -update noar tt set v0='ZCKKDV' where id=7; -update noar ti set v0='ZCKKDV' where id=7; -update noar tt set b2='PWFQBE96O4SM24UFVMUL70WGQR' where id=7; -update noar ti set b2='PWFQBE96O4SM24UFVMUL70WGQR' where id=7; -update noar tt set v0='PPW0557YUDC1V3JEI' where id=8; -update noar ti set v0='PPW0557YUDC1V3JEI' where id=8; -update noar tt set b0='1GBHWSS8HEAMGQE' where id=8; -update noar ti set b0='1GBHWSS8HEAMGQE' where id=8; -update noar tt set v0='L' where id=8; -update noar ti set v0='L' where id=8; -update noar tt set b1='KNJ64RW2F3D3F5C2VR8453SYJ' where id=8; -update noar ti set b1='KNJ64RW2F3D3F5C2VR8453SYJ' where id=8; -update noar tt set v0='FMUI1JLJ2UOP5JTF7Z' where id=8; -update noar ti set v0='FMUI1JLJ2UOP5JTF7Z' where id=8; -update noar tt set b2='OJMB9J9ASHW408KK7X5KJ7NT5L9KKUW' where id=8; -update noar ti set b2='OJMB9J9ASHW408KK7X5KJ7NT5L9KKUW' where id=8; -update noar tt set v0='5ZAQVJGR0FF9L2KJK' where id=9; -update noar ti set v0='5ZAQVJGR0FF9L2KJK' where id=9; -update noar tt set b0='J1EZ6F00EDN8JHDQ' where id=9; -update noar ti set b0='J1EZ6F00EDN8JHDQ' where id=9; -update noar tt set v0='JHHUV1NTE0GRIULJ1OCTW3R7OWE' where id=9; -update noar ti set v0='JHHUV1NTE0GRIULJ1OCTW3R7OWE' where id=9; -update noar tt set b1='Z' where id=9; -update noar ti set b1='Z' where id=9; -update noar tt set v0='MH6LDXE5053QJY5CP3' where id=9; -update noar ti set v0='MH6LDXE5053QJY5CP3' where id=9; -update noar tt set b2='024K7PZ8XQBVSKCH' where id=9; -update noar ti set b2='024K7PZ8XQBVSKCH' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -v0 varchar(32) null, -b0 tinyblob null, -b1 longblob null, -b2 blob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='3TALMJEYUL3XVZWSI7H4LOG5B8NB9' where id=1; -update noar ti set v0='3TALMJEYUL3XVZWSI7H4LOG5B8NB9' where id=1; -update noar tt set b0='ZD5' where id=1; -update noar ti set b0='ZD5' where id=1; -update noar tt set v0='FC4DBP6K33E5XYCUY5B5IVTYVJ' where id=1; -update noar ti set v0='FC4DBP6K33E5XYCUY5B5IVTYVJ' where id=1; -update noar tt set b1='ZJ0Q56' where id=1; -update noar ti set b1='ZJ0Q56' where id=1; -update noar tt set v0='1PDOQ4MJJPZF2DA5LKYDX' where id=1; -update noar ti set v0='1PDOQ4MJJPZF2DA5LKYDX' where id=1; -update noar tt set b2='6M' where id=1; -update noar ti set b2='6M' where id=1; -update noar tt set v0='NJMF27L482YFB4' where id=2; -update noar ti set v0='NJMF27L482YFB4' where id=2; -update noar tt set b0='Q8X6R56GI5HTNHSOY22485RKT' where id=2; -update noar ti set b0='Q8X6R56GI5HTNHSOY22485RKT' where id=2; -update noar tt set v0='WX2UGT' where id=2; -update noar ti set v0='WX2UGT' where id=2; -update noar tt set b1='MBXN' where id=2; -update noar ti set b1='MBXN' where id=2; -update noar tt set v0='JER6ANLDH74K352P' where id=2; -update noar ti set v0='JER6ANLDH74K352P' where id=2; -update noar tt set b2='89SH17DPU15DWFA8A8M90SFDLS4WC' where id=2; -update noar ti set b2='89SH17DPU15DWFA8A8M90SFDLS4WC' where id=2; -update noar tt set v0='CJOK8J430TWBC' where id=3; -update noar ti set v0='CJOK8J430TWBC' where id=3; -update noar tt set b0='BGJZL25W5BPD3BXNEYKQ7ZJK8KE' where id=3; -update noar ti set b0='BGJZL25W5BPD3BXNEYKQ7ZJK8KE' where id=3; -update noar tt set v0='1LI25' where id=3; -update noar ti set v0='1LI25' where id=3; -update noar tt set b1='PK2SEUOKCJNTQJGL' where id=3; -update noar ti set b1='PK2SEUOKCJNTQJGL' where id=3; -update noar tt set v0='TTRMTRTC' where id=3; -update noar ti set v0='TTRMTRTC' where id=3; -update noar tt set b2='ON6G2O3V07RW777B8VBP' where id=3; -update noar ti set b2='ON6G2O3V07RW777B8VBP' where id=3; -update noar tt set v0='PVYFTZ7M3UZWX44QV8HSXO8AC5EHBK5' where id=4; -update noar ti set v0='PVYFTZ7M3UZWX44QV8HSXO8AC5EHBK5' where id=4; -update noar tt set b0='AICM6Q7EVUXJPPPQGZS' where id=4; -update noar ti set b0='AICM6Q7EVUXJPPPQGZS' where id=4; -update noar tt set v0='S59B8H97M9YHLF3BR0ATIM7RQJSJ2LL' where id=4; -update noar ti set v0='S59B8H97M9YHLF3BR0ATIM7RQJSJ2LL' where id=4; -update noar tt set b1='IJAYTD8WDYPV1B' where id=4; -update noar ti set b1='IJAYTD8WDYPV1B' where id=4; -update noar tt set v0='IX2IS2P9DA9WK872' where id=4; -update noar ti set v0='IX2IS2P9DA9WK872' where id=4; -update noar tt set b2='C' where id=4; -update noar ti set b2='C' where id=4; -update noar tt set v0='CJOCR90MH9JQ8D' where id=5; -update noar ti set v0='CJOCR90MH9JQ8D' where id=5; -update noar tt set b0='M0XN1R6D' where id=5; -update noar ti set b0='M0XN1R6D' where id=5; -update noar tt set v0='A7W3X0Y0QKHU' where id=5; -update noar ti set v0='A7W3X0Y0QKHU' where id=5; -update noar tt set b1='AWTGHB5SWCU4LD' where id=5; -update noar ti set b1='AWTGHB5SWCU4LD' where id=5; -update noar tt set v0='HF3JFPAZEGZ1D' where id=5; -update noar ti set v0='HF3JFPAZEGZ1D' where id=5; -update noar tt set b2='ESW87EBUDE' where id=5; -update noar ti set b2='ESW87EBUDE' where id=5; -update noar tt set v0='M9' where id=6; -update noar ti set v0='M9' where id=6; -update noar tt set b0='01BL1PGPWRO' where id=6; -update noar ti set b0='01BL1PGPWRO' where id=6; -update noar tt set v0='J96OL2QIUN2TW69N4VUOZR' where id=6; -update noar ti set v0='J96OL2QIUN2TW69N4VUOZR' where id=6; -update noar tt set b1='J6NBMDM4L3IR3W3TF1KSAW9WGRX4' where id=6; -update noar ti set b1='J6NBMDM4L3IR3W3TF1KSAW9WGRX4' where id=6; -update noar tt set v0='WEDXHHK9NGV6F2MK4N8O' where id=6; -update noar ti set v0='WEDXHHK9NGV6F2MK4N8O' where id=6; -update noar tt set b2='UI9VZ97888W9U9I1ATYP9ILSYQB' where id=6; -update noar ti set b2='UI9VZ97888W9U9I1ATYP9ILSYQB' where id=6; -update noar tt set v0='UVBH0R7QFXO8Q9DA7AVGW' where id=7; -update noar ti set v0='UVBH0R7QFXO8Q9DA7AVGW' where id=7; -update noar tt set b0='C7G734CC8APAQU19W' where id=7; -update noar ti set b0='C7G734CC8APAQU19W' where id=7; -update noar tt set v0='EG' where id=7; -update noar ti set v0='EG' where id=7; -update noar tt set b1='H344WC1PKOUFI' where id=7; -update noar ti set b1='H344WC1PKOUFI' where id=7; -update noar tt set v0='01Q0UMR8SZ65S3FZCZ6PQL' where id=7; -update noar ti set v0='01Q0UMR8SZ65S3FZCZ6PQL' where id=7; -update noar tt set b2='8A' where id=7; -update noar ti set b2='8A' where id=7; -update noar tt set v0='GSS1TMSTG2UK7D2SJ7MRTBX0VSJ1IT' where id=8; -update noar ti set v0='GSS1TMSTG2UK7D2SJ7MRTBX0VSJ1IT' where id=8; -update noar tt set b0='N0AWR0KUY6C6FZJN00J08YH9UELJBGPY' where id=8; -update noar ti set b0='N0AWR0KUY6C6FZJN00J08YH9UELJBGPY' where id=8; -update noar tt set v0='26A7IIPNZ6030EH336IOI09DIRV' where id=8; -update noar ti set v0='26A7IIPNZ6030EH336IOI09DIRV' where id=8; -update noar tt set b1='AU' where id=8; -update noar ti set b1='AU' where id=8; -update noar tt set v0='YBTE4ZO' where id=8; -update noar ti set v0='YBTE4ZO' where id=8; -update noar tt set b2='H' where id=8; -update noar ti set b2='H' where id=8; -update noar tt set v0='9C5BLT0VXJ79UL' where id=9; -update noar ti set v0='9C5BLT0VXJ79UL' where id=9; -update noar tt set b0='QDRBV6WR9LGS' where id=9; -update noar ti set b0='QDRBV6WR9LGS' where id=9; -update noar tt set v0='R47BDLVJW298YO98WWLFZE6R8P' where id=9; -update noar ti set v0='R47BDLVJW298YO98WWLFZE6R8P' where id=9; -update noar tt set b1='8OBMNVTOYCIVM' where id=9; -update noar ti set b1='8OBMNVTOYCIVM' where id=9; -update noar tt set v0='G8PRUEWJJQ4S4VMVL146KK21F' where id=9; -update noar ti set v0='G8PRUEWJJQ4S4VMVL146KK21F' where id=9; -update noar tt set b2='AP8A8R75IK6X5' where id=9; -update noar ti set b2='AP8A8R75IK6X5' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -v0 varchar(256) null, -b0 tinyblob null, -b1 longblob null, -b2 blob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='ZBR1RZH5RUAB9ZF0E65R' where id=1; -update noar ti set v0='ZBR1RZH5RUAB9ZF0E65R' where id=1; -update noar tt set b0='C2X2' where id=1; -update noar ti set b0='C2X2' where id=1; -update noar tt set v0='A9Y1CUFPYLMJN1K6TGVT3N0SFR3' where id=1; -update noar ti set v0='A9Y1CUFPYLMJN1K6TGVT3N0SFR3' where id=1; -update noar tt set b1='31CY2Y3K6S6CJK' where id=1; -update noar ti set b1='31CY2Y3K6S6CJK' where id=1; -update noar tt set v0='F96F4D0HIC7BE52' where id=1; -update noar ti set v0='F96F4D0HIC7BE52' where id=1; -update noar tt set b2='39OLOE6J36V8AK47L6M2' where id=1; -update noar ti set b2='39OLOE6J36V8AK47L6M2' where id=1; -update noar tt set v0='PBF2LOHM5GG1ZW3X6R8OVHTHDX' where id=2; -update noar ti set v0='PBF2LOHM5GG1ZW3X6R8OVHTHDX' where id=2; -update noar tt set b0='B56' where id=2; -update noar ti set b0='B56' where id=2; -update noar tt set v0='6BH0DT56RVDK0GI2ZJVQDE9T' where id=2; -update noar ti set v0='6BH0DT56RVDK0GI2ZJVQDE9T' where id=2; -update noar tt set b1='F' where id=2; -update noar ti set b1='F' where id=2; -update noar tt set v0='K2JYX5OEGDKV' where id=2; -update noar ti set v0='K2JYX5OEGDKV' where id=2; -update noar tt set b2='Q8JZYWVE' where id=2; -update noar ti set b2='Q8JZYWVE' where id=2; -update noar tt set v0='1C' where id=3; -update noar ti set v0='1C' where id=3; -update noar tt set b0='WPG4H5A79SU0D7DJPEGTU6F7I1FF' where id=3; -update noar ti set b0='WPG4H5A79SU0D7DJPEGTU6F7I1FF' where id=3; -update noar tt set v0='W3BX3H' where id=3; -update noar ti set v0='W3BX3H' where id=3; -update noar tt set b1='34AHS5BO06X7CALPGKG10GB' where id=3; -update noar ti set b1='34AHS5BO06X7CALPGKG10GB' where id=3; -update noar tt set v0='VDR59ZYYFIE3DI9X1U36U5I' where id=3; -update noar ti set v0='VDR59ZYYFIE3DI9X1U36U5I' where id=3; -update noar tt set b2='YCT5173NUTGAEU8WW' where id=3; -update noar ti set b2='YCT5173NUTGAEU8WW' where id=3; -update noar tt set v0='PCT' where id=4; -update noar ti set v0='PCT' where id=4; -update noar tt set b0='RLXM8NM70GJPV' where id=4; -update noar ti set b0='RLXM8NM70GJPV' where id=4; -update noar tt set v0='XC3MVDL' where id=4; -update noar ti set v0='XC3MVDL' where id=4; -update noar tt set b1='NR4' where id=4; -update noar ti set b1='NR4' where id=4; -update noar tt set v0='CF17CTN2KQAONCRP' where id=4; -update noar ti set v0='CF17CTN2KQAONCRP' where id=4; -update noar tt set b2='8BV78G085HMHP5MAEEPA209V1AKXMTI0' where id=4; -update noar ti set b2='8BV78G085HMHP5MAEEPA209V1AKXMTI0' where id=4; -update noar tt set v0='OCSB15Z04JBUEKYEEO7REHTKDOAGP8' where id=5; -update noar ti set v0='OCSB15Z04JBUEKYEEO7REHTKDOAGP8' where id=5; -update noar tt set b0='JPXH5JVYA8O' where id=5; -update noar ti set b0='JPXH5JVYA8O' where id=5; -update noar tt set v0='UBI71D4EER47V7VXJL666V3' where id=5; -update noar ti set v0='UBI71D4EER47V7VXJL666V3' where id=5; -update noar tt set b1='FL1EB8J3ZUZ2AXNYV4U4N' where id=5; -update noar ti set b1='FL1EB8J3ZUZ2AXNYV4U4N' where id=5; -update noar tt set v0='4IBMWD' where id=5; -update noar ti set v0='4IBMWD' where id=5; -update noar tt set b2='IVREG6VT55HW64B7ZJ54CW41I' where id=5; -update noar ti set b2='IVREG6VT55HW64B7ZJ54CW41I' where id=5; -update noar tt set v0='NGACLMQGQ' where id=6; -update noar ti set v0='NGACLMQGQ' where id=6; -update noar tt set b0='HSQ4' where id=6; -update noar ti set b0='HSQ4' where id=6; -update noar tt set v0='5TG8QKKFQZKDJ8' where id=6; -update noar ti set v0='5TG8QKKFQZKDJ8' where id=6; -update noar tt set b1='IYTGSKCO4LIASOV' where id=6; -update noar ti set b1='IYTGSKCO4LIASOV' where id=6; -update noar tt set v0='QB14ZKHM' where id=6; -update noar ti set v0='QB14ZKHM' where id=6; -update noar tt set b2='WJMZ492D75GTRN' where id=6; -update noar ti set b2='WJMZ492D75GTRN' where id=6; -update noar tt set v0='JHOXU6BXOTS' where id=7; -update noar ti set v0='JHOXU6BXOTS' where id=7; -update noar tt set b0='6Y6JSJ85LJ7' where id=7; -update noar ti set b0='6Y6JSJ85LJ7' where id=7; -update noar tt set v0='CI3JTO' where id=7; -update noar ti set v0='CI3JTO' where id=7; -update noar tt set b1='A00CSY95X2Y' where id=7; -update noar ti set b1='A00CSY95X2Y' where id=7; -update noar tt set v0='U6T4' where id=7; -update noar ti set v0='U6T4' where id=7; -update noar tt set b2='L06WPBJJK3L04PYKIVVJ71MZ1XHK4' where id=7; -update noar ti set b2='L06WPBJJK3L04PYKIVVJ71MZ1XHK4' where id=7; -update noar tt set v0='F' where id=8; -update noar ti set v0='F' where id=8; -update noar tt set b0='QNG8KVK97AHEQL3L3WCDKBUA57' where id=8; -update noar ti set b0='QNG8KVK97AHEQL3L3WCDKBUA57' where id=8; -update noar tt set v0='F5I7DC8T96JXREQAY7LD0YY8NI5' where id=8; -update noar ti set v0='F5I7DC8T96JXREQAY7LD0YY8NI5' where id=8; -update noar tt set b1='42' where id=8; -update noar ti set b1='42' where id=8; -update noar tt set v0='SIJKM2IZC24XCSK' where id=8; -update noar ti set v0='SIJKM2IZC24XCSK' where id=8; -update noar tt set b2='WGYIO39KYRMHZGMD3CJGLEO' where id=8; -update noar ti set b2='WGYIO39KYRMHZGMD3CJGLEO' where id=8; -update noar tt set v0='6M6DPA' where id=9; -update noar ti set v0='6M6DPA' where id=9; -update noar tt set b0='ANMLOMQZL47J897PJM0QLF' where id=9; -update noar ti set b0='ANMLOMQZL47J897PJM0QLF' where id=9; -update noar tt set v0='93' where id=9; -update noar ti set v0='93' where id=9; -update noar tt set b1='PF2FBQTEAK4D845ZL851RKUSOKK5044X' where id=9; -update noar ti set b1='PF2FBQTEAK4D845ZL851RKUSOKK5044X' where id=9; -update noar tt set v0='VWACSI' where id=9; -update noar ti set v0='VWACSI' where id=9; -update noar tt set b2='1T99QYQZE8JZWF3XYKYDDQF' where id=9; -update noar ti set b2='1T99QYQZE8JZWF3XYKYDDQF' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -v0 varchar(32) not null, -b0 tinyblob not null, -b1 longblob not null, -b2 blob not null -) engine=tokudb; -insert into tt values (1,'','','',''); -insert into tt values (2,'','','',''); -insert into tt values (3,'','','',''); -insert into tt values (4,'','','',''); -insert into tt values (5,'','','',''); -insert into tt values (6,'','','',''); -insert into tt values (7,'','','',''); -insert into tt values (8,'','','',''); -insert into tt values (9,'','','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='1LMZOTE3XY9U0S' where id=1; -update noar ti set v0='1LMZOTE3XY9U0S' where id=1; -update noar tt set b0='CUPMYGJ' where id=1; -update noar ti set b0='CUPMYGJ' where id=1; -update noar tt set v0='FN9FX81B3UFX2SXR' where id=1; -update noar ti set v0='FN9FX81B3UFX2SXR' where id=1; -update noar tt set b1='KRNP1GQ2JAESAYMXMM7BZ7TOO6A1S' where id=1; -update noar ti set b1='KRNP1GQ2JAESAYMXMM7BZ7TOO6A1S' where id=1; -update noar tt set v0='KGXCKH7NCX6JM8SY52' where id=1; -update noar ti set v0='KGXCKH7NCX6JM8SY52' where id=1; -update noar tt set b2='I' where id=1; -update noar ti set b2='I' where id=1; -update noar tt set v0='PCY9DN7O0DJY94Z3ZJBIBKKDMXA43R3W' where id=2; -update noar ti set v0='PCY9DN7O0DJY94Z3ZJBIBKKDMXA43R3W' where id=2; -update noar tt set b0='B8M46N' where id=2; -update noar ti set b0='B8M46N' where id=2; -update noar tt set v0='IEECMOP0VF8OJRMYRJE' where id=2; -update noar ti set v0='IEECMOP0VF8OJRMYRJE' where id=2; -update noar tt set b1='2IVOQS9' where id=2; -update noar ti set b1='2IVOQS9' where id=2; -update noar tt set v0='T6U6G727MWLCYX7' where id=2; -update noar ti set v0='T6U6G727MWLCYX7' where id=2; -update noar tt set b2='R8RTHQRQHLDEV0SCFCZKD2TV64PX' where id=2; -update noar ti set b2='R8RTHQRQHLDEV0SCFCZKD2TV64PX' where id=2; -update noar tt set v0='726HW8CG3BF39PJN98BEHYXF3' where id=3; -update noar ti set v0='726HW8CG3BF39PJN98BEHYXF3' where id=3; -update noar tt set b0='1LA6L30GVWN7T212HXZVMTGKSRY' where id=3; -update noar ti set b0='1LA6L30GVWN7T212HXZVMTGKSRY' where id=3; -update noar tt set v0='7V3J45UAWACHDD2' where id=3; -update noar ti set v0='7V3J45UAWACHDD2' where id=3; -update noar tt set b1='V5Q9T7XY5M1BKDK' where id=3; -update noar ti set b1='V5Q9T7XY5M1BKDK' where id=3; -update noar tt set v0='D' where id=3; -update noar ti set v0='D' where id=3; -update noar tt set b2='AXDZ1QSJVUI' where id=3; -update noar ti set b2='AXDZ1QSJVUI' where id=3; -update noar tt set v0='V' where id=4; -update noar ti set v0='V' where id=4; -update noar tt set b0='W2DNZAH0O' where id=4; -update noar ti set b0='W2DNZAH0O' where id=4; -update noar tt set v0='ANWLI9YP8Z9L' where id=4; -update noar ti set v0='ANWLI9YP8Z9L' where id=4; -update noar tt set b1='ACYL' where id=4; -update noar ti set b1='ACYL' where id=4; -update noar tt set v0='7W' where id=4; -update noar ti set v0='7W' where id=4; -update noar tt set b2='UK30' where id=4; -update noar ti set b2='UK30' where id=4; -update noar tt set v0='S4K3NEZLQY5IVB0M' where id=5; -update noar ti set v0='S4K3NEZLQY5IVB0M' where id=5; -update noar tt set b0='GOE3J8G2HLU7NO1NC7YTF0ZJB1TJ2V8Y' where id=5; -update noar ti set b0='GOE3J8G2HLU7NO1NC7YTF0ZJB1TJ2V8Y' where id=5; -update noar tt set v0='KUVK8YAEOAGXM20XI' where id=5; -update noar ti set v0='KUVK8YAEOAGXM20XI' where id=5; -update noar tt set b1='NHOU6FTFZJ' where id=5; -update noar ti set b1='NHOU6FTFZJ' where id=5; -update noar tt set v0='CC3TD' where id=5; -update noar ti set v0='CC3TD' where id=5; -update noar tt set b2='R' where id=5; -update noar ti set b2='R' where id=5; -update noar tt set v0='X2DG' where id=6; -update noar ti set v0='X2DG' where id=6; -update noar tt set b0='1XOJRLV68F9SRS5GK0LLAGQC6ZWMDJ2X' where id=6; -update noar ti set b0='1XOJRLV68F9SRS5GK0LLAGQC6ZWMDJ2X' where id=6; -update noar tt set v0='7Z4ZCTYWEK' where id=6; -update noar ti set v0='7Z4ZCTYWEK' where id=6; -update noar tt set b1='ZWG6AIH2SJGSBZELCWXKBXP1SVFKE5' where id=6; -update noar ti set b1='ZWG6AIH2SJGSBZELCWXKBXP1SVFKE5' where id=6; -update noar tt set v0='6AKN4445HHPP' where id=6; -update noar ti set v0='6AKN4445HHPP' where id=6; -update noar tt set b2='CLF95AWIND8GV2KD2FYQF' where id=6; -update noar ti set b2='CLF95AWIND8GV2KD2FYQF' where id=6; -update noar tt set v0='6QSH5C3E50YL0VWP2RXECRE5' where id=7; -update noar ti set v0='6QSH5C3E50YL0VWP2RXECRE5' where id=7; -update noar tt set b0='CWK3PH9G1MZX81VW464JNOU35XWN64MA' where id=7; -update noar ti set b0='CWK3PH9G1MZX81VW464JNOU35XWN64MA' where id=7; -update noar tt set v0='8LUAG8979YKCQ5IDM48NP6SRYYY' where id=7; -update noar ti set v0='8LUAG8979YKCQ5IDM48NP6SRYYY' where id=7; -update noar tt set b1='INB6O5' where id=7; -update noar ti set b1='INB6O5' where id=7; -update noar tt set v0='P7R0PJSA9SG9MHOBQ76J' where id=7; -update noar ti set v0='P7R0PJSA9SG9MHOBQ76J' where id=7; -update noar tt set b2='Z7LGX63MY' where id=7; -update noar ti set b2='Z7LGX63MY' where id=7; -update noar tt set v0='OMLHP4FWS24W0BWIIVI' where id=8; -update noar ti set v0='OMLHP4FWS24W0BWIIVI' where id=8; -update noar tt set b0='948CFC3U' where id=8; -update noar ti set b0='948CFC3U' where id=8; -update noar tt set v0='UEEIQREKSD0MN569VQLBPLGJ' where id=8; -update noar ti set v0='UEEIQREKSD0MN569VQLBPLGJ' where id=8; -update noar tt set b1='6G13H' where id=8; -update noar ti set b1='6G13H' where id=8; -update noar tt set v0='L4HS7I1UCM55GZ7UUP1V7Z98YFWOT8K' where id=8; -update noar ti set v0='L4HS7I1UCM55GZ7UUP1V7Z98YFWOT8K' where id=8; -update noar tt set b2='UNO4F99E' where id=8; -update noar ti set b2='UNO4F99E' where id=8; -update noar tt set v0='OF9XI5OG3QZST5PLJ1' where id=9; -update noar ti set v0='OF9XI5OG3QZST5PLJ1' where id=9; -update noar tt set b0='YVETNAS0YLVN4L' where id=9; -update noar ti set b0='YVETNAS0YLVN4L' where id=9; -update noar tt set v0='PQ51L48FARVZ60JZ8SCUJLTYSXD' where id=9; -update noar ti set v0='PQ51L48FARVZ60JZ8SCUJLTYSXD' where id=9; -update noar tt set b1='C2X17SJLT7HU' where id=9; -update noar ti set b1='C2X17SJLT7HU' where id=9; -update noar tt set v0='B84SU27LLRS29VMYCTDV24Z5ZHS' where id=9; -update noar ti set v0='B84SU27LLRS29VMYCTDV24Z5ZHS' where id=9; -update noar tt set b2='WQ82OA3HKPQ' where id=9; -update noar ti set b2='WQ82OA3HKPQ' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -v0 varchar(256) not null, -b0 tinyblob not null, -b1 longblob not null, -b2 blob not null -) engine=tokudb; -insert into tt values (1,'','','',''); -insert into tt values (2,'','','',''); -insert into tt values (3,'','','',''); -insert into tt values (4,'','','',''); -insert into tt values (5,'','','',''); -insert into tt values (6,'','','',''); -insert into tt values (7,'','','',''); -insert into tt values (8,'','','',''); -insert into tt values (9,'','','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='D' where id=1; -update noar ti set v0='D' where id=1; -update noar tt set b0='ZS8LHKTKFCCQM5XQO40MWK' where id=1; -update noar ti set b0='ZS8LHKTKFCCQM5XQO40MWK' where id=1; -update noar tt set v0='AW6Z46H0P198' where id=1; -update noar ti set v0='AW6Z46H0P198' where id=1; -update noar tt set b1='ETFCJ7AA5HOCYE52I' where id=1; -update noar ti set b1='ETFCJ7AA5HOCYE52I' where id=1; -update noar tt set v0='40HVG1VL1CFW7WUPBTHZMD' where id=1; -update noar ti set v0='40HVG1VL1CFW7WUPBTHZMD' where id=1; -update noar tt set b2='JBB9Z8GP3' where id=1; -update noar ti set b2='JBB9Z8GP3' where id=1; -update noar tt set v0='9TAE66146A35ROEPHKFBVR63HCUOJZ' where id=2; -update noar ti set v0='9TAE66146A35ROEPHKFBVR63HCUOJZ' where id=2; -update noar tt set b0='4AY3AHHIKACY7L8QDBMLSXMWZFAYOTQ' where id=2; -update noar ti set b0='4AY3AHHIKACY7L8QDBMLSXMWZFAYOTQ' where id=2; -update noar tt set v0='JVUG6509WQXQCRAT0FKBP9S' where id=2; -update noar ti set v0='JVUG6509WQXQCRAT0FKBP9S' where id=2; -update noar tt set b1='B6761NAON656YVHC6O' where id=2; -update noar ti set b1='B6761NAON656YVHC6O' where id=2; -update noar tt set v0='OAV7PK4WJHBZ6R26OI3' where id=2; -update noar ti set v0='OAV7PK4WJHBZ6R26OI3' where id=2; -update noar tt set b2='RPPNI307U6F1KJVB35WVKHZ6MTWS' where id=2; -update noar ti set b2='RPPNI307U6F1KJVB35WVKHZ6MTWS' where id=2; -update noar tt set v0='HCQ219NF' where id=3; -update noar ti set v0='HCQ219NF' where id=3; -update noar tt set b0='UBRUADST4RK2LJ13DOM' where id=3; -update noar ti set b0='UBRUADST4RK2LJ13DOM' where id=3; -update noar tt set v0='OXNAXWTO265GWA8BJUIJ' where id=3; -update noar ti set v0='OXNAXWTO265GWA8BJUIJ' where id=3; -update noar tt set b1='P4U' where id=3; -update noar ti set b1='P4U' where id=3; -update noar tt set v0='6QF79F5WZ8AHZ' where id=3; -update noar ti set v0='6QF79F5WZ8AHZ' where id=3; -update noar tt set b2='45OEDP7LV4L87YQ4GRYTU7KOLJ7' where id=3; -update noar ti set b2='45OEDP7LV4L87YQ4GRYTU7KOLJ7' where id=3; -update noar tt set v0='VYM' where id=4; -update noar ti set v0='VYM' where id=4; -update noar tt set b0='6O4NMK2XVH3DC4UC9RQ1W39JCBG' where id=4; -update noar ti set b0='6O4NMK2XVH3DC4UC9RQ1W39JCBG' where id=4; -update noar tt set v0='DCS57LEP3UIEMOVFC' where id=4; -update noar ti set v0='DCS57LEP3UIEMOVFC' where id=4; -update noar tt set b1='OGYTT997DPGUZQT1OY6XL' where id=4; -update noar ti set b1='OGYTT997DPGUZQT1OY6XL' where id=4; -update noar tt set v0='M' where id=4; -update noar ti set v0='M' where id=4; -update noar tt set b2='GF5RWQ0KSTH44RR' where id=4; -update noar ti set b2='GF5RWQ0KSTH44RR' where id=4; -update noar tt set v0='LE8URYJKP7NC56' where id=5; -update noar ti set v0='LE8URYJKP7NC56' where id=5; -update noar tt set b0='YI7NRJRK8V' where id=5; -update noar ti set b0='YI7NRJRK8V' where id=5; -update noar tt set v0='XW11Z6E77V1R7RIJWML' where id=5; -update noar ti set v0='XW11Z6E77V1R7RIJWML' where id=5; -update noar tt set b1='6ZTLENBCF' where id=5; -update noar ti set b1='6ZTLENBCF' where id=5; -update noar tt set v0='A3ZLJ4J' where id=5; -update noar ti set v0='A3ZLJ4J' where id=5; -update noar tt set b2='MHT1AVIJIWRG29PHYJWZDOCJJT9LSRTB' where id=5; -update noar ti set b2='MHT1AVIJIWRG29PHYJWZDOCJJT9LSRTB' where id=5; -update noar tt set v0='MZXPRNYAM' where id=6; -update noar ti set v0='MZXPRNYAM' where id=6; -update noar tt set b0='ZWCT7WGR7GH0N52XLPMIBK' where id=6; -update noar ti set b0='ZWCT7WGR7GH0N52XLPMIBK' where id=6; -update noar tt set v0='Z5RJCOBMLRPMZMWS9VWZNS4IOGQIBIOO' where id=6; -update noar ti set v0='Z5RJCOBMLRPMZMWS9VWZNS4IOGQIBIOO' where id=6; -update noar tt set b1='3WCKTPH0JO843P6D66HF53S4OQMR9DL' where id=6; -update noar ti set b1='3WCKTPH0JO843P6D66HF53S4OQMR9DL' where id=6; -update noar tt set v0='8K7A6Z' where id=6; -update noar ti set v0='8K7A6Z' where id=6; -update noar tt set b2='3VBWYMMEELJPLM48T6U6XIQSUDX6B89Y' where id=6; -update noar ti set b2='3VBWYMMEELJPLM48T6U6XIQSUDX6B89Y' where id=6; -update noar tt set v0='TR66X8K1JPP3' where id=7; -update noar ti set v0='TR66X8K1JPP3' where id=7; -update noar tt set b0='4YNY0MOMC1TLN0U739PAPHZHUDMUTUF' where id=7; -update noar ti set b0='4YNY0MOMC1TLN0U739PAPHZHUDMUTUF' where id=7; -update noar tt set v0='D2JKCJ9I81354O1KH68Y5F10H4QQ' where id=7; -update noar ti set v0='D2JKCJ9I81354O1KH68Y5F10H4QQ' where id=7; -update noar tt set b1='Y52QH6BQ1QQVUG5E9MXX56TW' where id=7; -update noar ti set b1='Y52QH6BQ1QQVUG5E9MXX56TW' where id=7; -update noar tt set v0='5HDGHD8MFR72KK6G028' where id=7; -update noar ti set v0='5HDGHD8MFR72KK6G028' where id=7; -update noar tt set b2='5ZM649Z9S8' where id=7; -update noar ti set b2='5ZM649Z9S8' where id=7; -update noar tt set v0='M4K0GMFGLBAZ5OOS6J' where id=8; -update noar ti set v0='M4K0GMFGLBAZ5OOS6J' where id=8; -update noar tt set b0='CCCVZ30NLQ4U73HGR5G4THRH9BYI11Q' where id=8; -update noar ti set b0='CCCVZ30NLQ4U73HGR5G4THRH9BYI11Q' where id=8; -update noar tt set v0='2M8I2AXOX2FQBBL2HF89198VOHH3' where id=8; -update noar ti set v0='2M8I2AXOX2FQBBL2HF89198VOHH3' where id=8; -update noar tt set b1='IQJX8QANJ1H9' where id=8; -update noar ti set b1='IQJX8QANJ1H9' where id=8; -update noar tt set v0='C9GJO4' where id=8; -update noar ti set v0='C9GJO4' where id=8; -update noar tt set b2='4AX5OPKC49' where id=8; -update noar ti set b2='4AX5OPKC49' where id=8; -update noar tt set v0='99BDP3OBII5T3OZVU' where id=9; -update noar ti set v0='99BDP3OBII5T3OZVU' where id=9; -update noar tt set b0='I343XTTU82SJ51SR7OH5V2B4F0L7K' where id=9; -update noar ti set b0='I343XTTU82SJ51SR7OH5V2B4F0L7K' where id=9; -update noar tt set v0='44' where id=9; -update noar ti set v0='44' where id=9; -update noar tt set b1='2Q28RRNEL4B3L59LTJ4RAPVZ96J9FKT' where id=9; -update noar ti set b1='2Q28RRNEL4B3L59LTJ4RAPVZ96J9FKT' where id=9; -update noar tt set v0='9CFD0COXGJ9EP0DSMK9O2K920ZD4MBI5' where id=9; -update noar ti set v0='9CFD0COXGJ9EP0DSMK9O2K920ZD4MBI5' where id=9; -update noar tt set b2='XNGO2U59AQ' where id=9; -update noar ti set b2='XNGO2U59AQ' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -v0 varchar(32) null, -b0 tinyblob null, -b1 longblob null, -b2 mediumblob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='KL3YO1N1ZIG' where id=1; -update noar ti set v0='KL3YO1N1ZIG' where id=1; -update noar tt set b0='2JLUN' where id=1; -update noar ti set b0='2JLUN' where id=1; -update noar tt set v0='HXBOFRAE439QONDSK40CALVQKMC4' where id=1; -update noar ti set v0='HXBOFRAE439QONDSK40CALVQKMC4' where id=1; -update noar tt set b1='5TZM1DT8O913N7SH9LPH4GJVIB34XGR' where id=1; -update noar ti set b1='5TZM1DT8O913N7SH9LPH4GJVIB34XGR' where id=1; -update noar tt set v0='6PV' where id=1; -update noar ti set v0='6PV' where id=1; -update noar tt set b2='SHIH' where id=1; -update noar ti set b2='SHIH' where id=1; -update noar tt set v0='UX0AKB9HO385YILPHB' where id=2; -update noar ti set v0='UX0AKB9HO385YILPHB' where id=2; -update noar tt set b0='L35E5O4P' where id=2; -update noar ti set b0='L35E5O4P' where id=2; -update noar tt set v0='O3SCDNVFMKI4NKU' where id=2; -update noar ti set v0='O3SCDNVFMKI4NKU' where id=2; -update noar tt set b1='N5LYHUSN47UZ47GNHA2DNCA2GA' where id=2; -update noar ti set b1='N5LYHUSN47UZ47GNHA2DNCA2GA' where id=2; -update noar tt set v0='8S87K1YL3EUVTLJU8A22W7KSO7H76630' where id=2; -update noar ti set v0='8S87K1YL3EUVTLJU8A22W7KSO7H76630' where id=2; -update noar tt set b2='DUNPH7ZD6880UZHNY0U' where id=2; -update noar ti set b2='DUNPH7ZD6880UZHNY0U' where id=2; -update noar tt set v0='OFM9R3WYFCHBFZT92BIQHGL' where id=3; -update noar ti set v0='OFM9R3WYFCHBFZT92BIQHGL' where id=3; -update noar tt set b0='F1QP3ZVLYAXJRW50ZEB6QOS67' where id=3; -update noar ti set b0='F1QP3ZVLYAXJRW50ZEB6QOS67' where id=3; -update noar tt set v0='M286S' where id=3; -update noar ti set v0='M286S' where id=3; -update noar tt set b1='BHT55J' where id=3; -update noar ti set b1='BHT55J' where id=3; -update noar tt set v0='Y2NAB5C' where id=3; -update noar ti set v0='Y2NAB5C' where id=3; -update noar tt set b2='ZJR5557' where id=3; -update noar ti set b2='ZJR5557' where id=3; -update noar tt set v0='E2OYNB' where id=4; -update noar ti set v0='E2OYNB' where id=4; -update noar tt set b0='G4220ULH36UNWDY1MDEMK8L' where id=4; -update noar ti set b0='G4220ULH36UNWDY1MDEMK8L' where id=4; -update noar tt set v0='AQQAR5ISYQXBQOKJU8IHQW5S9T12EN6' where id=4; -update noar ti set v0='AQQAR5ISYQXBQOKJU8IHQW5S9T12EN6' where id=4; -update noar tt set b1='Y25FSLX3314E6SY3R' where id=4; -update noar ti set b1='Y25FSLX3314E6SY3R' where id=4; -update noar tt set v0='RCZBK40UR4UR71FOUKA8VJB1V9ALG5T' where id=4; -update noar ti set v0='RCZBK40UR4UR71FOUKA8VJB1V9ALG5T' where id=4; -update noar tt set b2='76R1V995O8G5CCH44WTAJPP1PMB7WB9N' where id=4; -update noar ti set b2='76R1V995O8G5CCH44WTAJPP1PMB7WB9N' where id=4; -update noar tt set v0='FYWB2K5XJV2BMES7F6PIBK4XFCSYYK' where id=5; -update noar ti set v0='FYWB2K5XJV2BMES7F6PIBK4XFCSYYK' where id=5; -update noar tt set b0='S7' where id=5; -update noar ti set b0='S7' where id=5; -update noar tt set v0='1SPC2LGO3IEPTN4X1YI' where id=5; -update noar ti set v0='1SPC2LGO3IEPTN4X1YI' where id=5; -update noar tt set b1='TV6NUIUR5' where id=5; -update noar ti set b1='TV6NUIUR5' where id=5; -update noar tt set v0='RR' where id=5; -update noar ti set v0='RR' where id=5; -update noar tt set b2='URW76TQ5NRCFOTVFE37ZUMAJ' where id=5; -update noar ti set b2='URW76TQ5NRCFOTVFE37ZUMAJ' where id=5; -update noar tt set v0='ULKBH' where id=6; -update noar ti set v0='ULKBH' where id=6; -update noar tt set b0='QYPSDLGTDN1792AW4KI' where id=6; -update noar ti set b0='QYPSDLGTDN1792AW4KI' where id=6; -update noar tt set v0='EPUTN0MBMOSE5L0W7' where id=6; -update noar ti set v0='EPUTN0MBMOSE5L0W7' where id=6; -update noar tt set b1='IRRATW6X3FRSKQ3AP4DAA' where id=6; -update noar ti set b1='IRRATW6X3FRSKQ3AP4DAA' where id=6; -update noar tt set v0='G' where id=6; -update noar ti set v0='G' where id=6; -update noar tt set b2='4V3FFDJV' where id=6; -update noar ti set b2='4V3FFDJV' where id=6; -update noar tt set v0='7ADENU14Q0BUHENTS5SY3ES5' where id=7; -update noar ti set v0='7ADENU14Q0BUHENTS5SY3ES5' where id=7; -update noar tt set b0='T64ZDLSWWVG0N7R8E26VGMQDU6KJWR' where id=7; -update noar ti set b0='T64ZDLSWWVG0N7R8E26VGMQDU6KJWR' where id=7; -update noar tt set v0='2W8B7GMPA5WCO30C3RGNRAWKVK1WMXM' where id=7; -update noar ti set v0='2W8B7GMPA5WCO30C3RGNRAWKVK1WMXM' where id=7; -update noar tt set b1='T80Y46G3VSTA7GPPYR8G3' where id=7; -update noar ti set b1='T80Y46G3VSTA7GPPYR8G3' where id=7; -update noar tt set v0='KJR2Q7EM0DDBOWHXGOEE' where id=7; -update noar ti set v0='KJR2Q7EM0DDBOWHXGOEE' where id=7; -update noar tt set b2='7VZ6S0RTW8HUUEZ7ZPHC6XKS' where id=7; -update noar ti set b2='7VZ6S0RTW8HUUEZ7ZPHC6XKS' where id=7; -update noar tt set v0='EQWPI8XDYUX79AD' where id=8; -update noar ti set v0='EQWPI8XDYUX79AD' where id=8; -update noar tt set b0='I06RMXEW9' where id=8; -update noar ti set b0='I06RMXEW9' where id=8; -update noar tt set v0='4RESBJ43DAG' where id=8; -update noar ti set v0='4RESBJ43DAG' where id=8; -update noar tt set b1='BYR3RVM' where id=8; -update noar ti set b1='BYR3RVM' where id=8; -update noar tt set v0='4TESOB32JUGEY4PDABC4B5KX9G1Z6LXL' where id=8; -update noar ti set v0='4TESOB32JUGEY4PDABC4B5KX9G1Z6LXL' where id=8; -update noar tt set b2='8RENY9HT9K3C9BIL2WKZGQUL7AS0GMXD' where id=8; -update noar ti set b2='8RENY9HT9K3C9BIL2WKZGQUL7AS0GMXD' where id=8; -update noar tt set v0='HS4UMZG' where id=9; -update noar ti set v0='HS4UMZG' where id=9; -update noar tt set b0='B8PXXD3NGA6AHJR9UY8187D8DAZL' where id=9; -update noar ti set b0='B8PXXD3NGA6AHJR9UY8187D8DAZL' where id=9; -update noar tt set v0='S3QWNGYYJWS8PBM5P7' where id=9; -update noar ti set v0='S3QWNGYYJWS8PBM5P7' where id=9; -update noar tt set b1='4CPY' where id=9; -update noar ti set b1='4CPY' where id=9; -update noar tt set v0='ES0I93G8AJOV' where id=9; -update noar ti set v0='ES0I93G8AJOV' where id=9; -update noar tt set b2='I9BSPXBO7WRR25B' where id=9; -update noar ti set b2='I9BSPXBO7WRR25B' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -v0 varchar(256) null, -b0 tinyblob null, -b1 longblob null, -b2 mediumblob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='WT' where id=1; -update noar ti set v0='WT' where id=1; -update noar tt set b0='JP' where id=1; -update noar ti set b0='JP' where id=1; -update noar tt set v0='TZ8073I46IRKQX847' where id=1; -update noar ti set v0='TZ8073I46IRKQX847' where id=1; -update noar tt set b1='IX7KGDN' where id=1; -update noar ti set b1='IX7KGDN' where id=1; -update noar tt set v0='6JNY3U67EGMV6J6QKCZOQMG0C4G7E80J' where id=1; -update noar ti set v0='6JNY3U67EGMV6J6QKCZOQMG0C4G7E80J' where id=1; -update noar tt set b2='I7U94RRN' where id=1; -update noar ti set b2='I7U94RRN' where id=1; -update noar tt set v0='TJI4XHZ79NZBDBKBFYCL1QRJ01' where id=2; -update noar ti set v0='TJI4XHZ79NZBDBKBFYCL1QRJ01' where id=2; -update noar tt set b0='LV' where id=2; -update noar ti set b0='LV' where id=2; -update noar tt set v0='9F57SC1ULXMC' where id=2; -update noar ti set v0='9F57SC1ULXMC' where id=2; -update noar tt set b1='WQZKJSAY9C70OG3NPFRD6W19K6Q4N3F' where id=2; -update noar ti set b1='WQZKJSAY9C70OG3NPFRD6W19K6Q4N3F' where id=2; -update noar tt set v0='3BL8YCDUYP0K7ZSHKRH5ME5BY9H3LLX' where id=2; -update noar ti set v0='3BL8YCDUYP0K7ZSHKRH5ME5BY9H3LLX' where id=2; -update noar tt set b2='ED3H7PCGJJKBZ2ASYA1HDWRZ' where id=2; -update noar ti set b2='ED3H7PCGJJKBZ2ASYA1HDWRZ' where id=2; -update noar tt set v0='N6SR8G0VJW2RVR7Y2JVN' where id=3; -update noar ti set v0='N6SR8G0VJW2RVR7Y2JVN' where id=3; -update noar tt set b0='B' where id=3; -update noar ti set b0='B' where id=3; -update noar tt set v0='JJE2S04VWOVOE' where id=3; -update noar ti set v0='JJE2S04VWOVOE' where id=3; -update noar tt set b1='5SY9B2P0T' where id=3; -update noar ti set b1='5SY9B2P0T' where id=3; -update noar tt set v0='O2JS9DT385D04WC' where id=3; -update noar ti set v0='O2JS9DT385D04WC' where id=3; -update noar tt set b2='7S390ARWXAAFCGZK' where id=3; -update noar ti set b2='7S390ARWXAAFCGZK' where id=3; -update noar tt set v0='KC6CHYMIDLNRMTH4RPPMVJI4PMRSBAX' where id=4; -update noar ti set v0='KC6CHYMIDLNRMTH4RPPMVJI4PMRSBAX' where id=4; -update noar tt set b0='OXSXD9AWR9FDB2UBAIZ' where id=4; -update noar ti set b0='OXSXD9AWR9FDB2UBAIZ' where id=4; -update noar tt set v0='6VYZ6' where id=4; -update noar ti set v0='6VYZ6' where id=4; -update noar tt set b1='IYECCXG7TC' where id=4; -update noar ti set b1='IYECCXG7TC' where id=4; -update noar tt set v0='AN6' where id=4; -update noar ti set v0='AN6' where id=4; -update noar tt set b2='4JQN5DRS' where id=4; -update noar ti set b2='4JQN5DRS' where id=4; -update noar tt set v0='UWSA' where id=5; -update noar ti set v0='UWSA' where id=5; -update noar tt set b0='9KILI0UVNRRPAREKHDYVD6' where id=5; -update noar ti set b0='9KILI0UVNRRPAREKHDYVD6' where id=5; -update noar tt set v0='PYNXUMVK3A5Z' where id=5; -update noar ti set v0='PYNXUMVK3A5Z' where id=5; -update noar tt set b1='YMEUG8UAUIIPTI0JI16JVTL2V' where id=5; -update noar ti set b1='YMEUG8UAUIIPTI0JI16JVTL2V' where id=5; -update noar tt set v0='5Y' where id=5; -update noar ti set v0='5Y' where id=5; -update noar tt set b2='F4JD5RT9NNO7OBKS0M' where id=5; -update noar ti set b2='F4JD5RT9NNO7OBKS0M' where id=5; -update noar tt set v0='GC5ZK3DMH8E' where id=6; -update noar ti set v0='GC5ZK3DMH8E' where id=6; -update noar tt set b0='AKY' where id=6; -update noar ti set b0='AKY' where id=6; -update noar tt set v0='0MNL29FU9DZ1' where id=6; -update noar ti set v0='0MNL29FU9DZ1' where id=6; -update noar tt set b1='VK961N' where id=6; -update noar ti set b1='VK961N' where id=6; -update noar tt set v0='TYOH7NUCM6' where id=6; -update noar ti set v0='TYOH7NUCM6' where id=6; -update noar tt set b2='6ZNCDT3NT22B' where id=6; -update noar ti set b2='6ZNCDT3NT22B' where id=6; -update noar tt set v0='C0K73UQ9UCL231S' where id=7; -update noar ti set v0='C0K73UQ9UCL231S' where id=7; -update noar tt set b0='F2JA58CXW0K5B4QLRYUGLHM4' where id=7; -update noar ti set b0='F2JA58CXW0K5B4QLRYUGLHM4' where id=7; -update noar tt set v0='DP8R6E3C0G8DFZKJNO93YNOWT5JA' where id=7; -update noar ti set v0='DP8R6E3C0G8DFZKJNO93YNOWT5JA' where id=7; -update noar tt set b1='D1BVSN2Q' where id=7; -update noar ti set b1='D1BVSN2Q' where id=7; -update noar tt set v0='LP8AZNV5Y891ZPA3Y33N4J9' where id=7; -update noar ti set v0='LP8AZNV5Y891ZPA3Y33N4J9' where id=7; -update noar tt set b2='HT6SD531B3R9KPMEL1UJ0O5IMQU6W2VJ' where id=7; -update noar ti set b2='HT6SD531B3R9KPMEL1UJ0O5IMQU6W2VJ' where id=7; -update noar tt set v0='FGLNOA2PJGKVKU' where id=8; -update noar ti set v0='FGLNOA2PJGKVKU' where id=8; -update noar tt set b0='MCP48L29E4S768QWKGQ0FN' where id=8; -update noar ti set b0='MCP48L29E4S768QWKGQ0FN' where id=8; -update noar tt set v0='HVS' where id=8; -update noar ti set v0='HVS' where id=8; -update noar tt set b1='Z' where id=8; -update noar ti set b1='Z' where id=8; -update noar tt set v0='P4QO024KWVI2' where id=8; -update noar ti set v0='P4QO024KWVI2' where id=8; -update noar tt set b2='3O06FEX8W0' where id=8; -update noar ti set b2='3O06FEX8W0' where id=8; -update noar tt set v0='94TS3PDXY4EZUIHSPDXEO' where id=9; -update noar ti set v0='94TS3PDXY4EZUIHSPDXEO' where id=9; -update noar tt set b0='XATF81ZQENQME7YGJ39HOEKP' where id=9; -update noar ti set b0='XATF81ZQENQME7YGJ39HOEKP' where id=9; -update noar tt set v0='DZYNBUMYRDB92' where id=9; -update noar ti set v0='DZYNBUMYRDB92' where id=9; -update noar tt set b1='56F3NYVB1KO3S1S8J' where id=9; -update noar ti set b1='56F3NYVB1KO3S1S8J' where id=9; -update noar tt set v0='N' where id=9; -update noar ti set v0='N' where id=9; -update noar tt set b2='NH0EC2J043WJ' where id=9; -update noar ti set b2='NH0EC2J043WJ' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -v0 varchar(32) not null, -b0 tinyblob not null, -b1 longblob not null, -b2 mediumblob not null -) engine=tokudb; -insert into tt values (1,'','','',''); -insert into tt values (2,'','','',''); -insert into tt values (3,'','','',''); -insert into tt values (4,'','','',''); -insert into tt values (5,'','','',''); -insert into tt values (6,'','','',''); -insert into tt values (7,'','','',''); -insert into tt values (8,'','','',''); -insert into tt values (9,'','','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='OB959OG3ZZWNGLIDZMIDT8LSPS' where id=1; -update noar ti set v0='OB959OG3ZZWNGLIDZMIDT8LSPS' where id=1; -update noar tt set b0='SCMPC3RFIN' where id=1; -update noar ti set b0='SCMPC3RFIN' where id=1; -update noar tt set v0='BUZHWG' where id=1; -update noar ti set v0='BUZHWG' where id=1; -update noar tt set b1='NUHFXWKN6BVDA' where id=1; -update noar ti set b1='NUHFXWKN6BVDA' where id=1; -update noar tt set v0='RFFKPUHD' where id=1; -update noar ti set v0='RFFKPUHD' where id=1; -update noar tt set b2='49CHTO1' where id=1; -update noar ti set b2='49CHTO1' where id=1; -update noar tt set v0='8BYDZ74NH73ZQNBMF69JISAM2O' where id=2; -update noar ti set v0='8BYDZ74NH73ZQNBMF69JISAM2O' where id=2; -update noar tt set b0='AC9MZ8CSKAMGL2J99PWL' where id=2; -update noar ti set b0='AC9MZ8CSKAMGL2J99PWL' where id=2; -update noar tt set v0='ML0Q3UG029LU9L40ZTL' where id=2; -update noar ti set v0='ML0Q3UG029LU9L40ZTL' where id=2; -update noar tt set b1='HH7XWU2Q0HXGQIJ81DAKTMWGFRFOW' where id=2; -update noar ti set b1='HH7XWU2Q0HXGQIJ81DAKTMWGFRFOW' where id=2; -update noar tt set v0='4D907D8BIDRQMQX16M7Q02R5HCIBJQ' where id=2; -update noar ti set v0='4D907D8BIDRQMQX16M7Q02R5HCIBJQ' where id=2; -update noar tt set b2='UJH' where id=2; -update noar ti set b2='UJH' where id=2; -update noar tt set v0='SD4WXO0I1' where id=3; -update noar ti set v0='SD4WXO0I1' where id=3; -update noar tt set b0='MS9UM3ZEU70P' where id=3; -update noar ti set b0='MS9UM3ZEU70P' where id=3; -update noar tt set v0='NE8X6T1MN7AZH8A' where id=3; -update noar ti set v0='NE8X6T1MN7AZH8A' where id=3; -update noar tt set b1='3SFX6FHCI27NR0NNA3B35BNWVBJ' where id=3; -update noar ti set b1='3SFX6FHCI27NR0NNA3B35BNWVBJ' where id=3; -update noar tt set v0='MB9KVPLXIVAYLZGJU' where id=3; -update noar ti set v0='MB9KVPLXIVAYLZGJU' where id=3; -update noar tt set b2='KT3TZCUA1TNYAGMP7ZPH4' where id=3; -update noar ti set b2='KT3TZCUA1TNYAGMP7ZPH4' where id=3; -update noar tt set v0='1JIFOZT5DY6FJ81JH5F3EAYE5O38VF' where id=4; -update noar ti set v0='1JIFOZT5DY6FJ81JH5F3EAYE5O38VF' where id=4; -update noar tt set b0='SIV3XFSJUI' where id=4; -update noar ti set b0='SIV3XFSJUI' where id=4; -update noar tt set v0='F8R8M33TQG' where id=4; -update noar ti set v0='F8R8M33TQG' where id=4; -update noar tt set b1='332DBT81K6ZS3EZL7NNXNNAM0BE2QQEB' where id=4; -update noar ti set b1='332DBT81K6ZS3EZL7NNXNNAM0BE2QQEB' where id=4; -update noar tt set v0='8JLY' where id=4; -update noar ti set v0='8JLY' where id=4; -update noar tt set b2='H6B38DN6HR2RT' where id=4; -update noar ti set b2='H6B38DN6HR2RT' where id=4; -update noar tt set v0='GCDUN8D' where id=5; -update noar ti set v0='GCDUN8D' where id=5; -update noar tt set b0='6G051URWJ2AC24CAYAT4DHB3IKCCWVBI' where id=5; -update noar ti set b0='6G051URWJ2AC24CAYAT4DHB3IKCCWVBI' where id=5; -update noar tt set v0='A2SFKWK2WN716JNNK7787RAM736I' where id=5; -update noar ti set v0='A2SFKWK2WN716JNNK7787RAM736I' where id=5; -update noar tt set b1='CHR4L2NE7MFWP6CVELB1K7J' where id=5; -update noar ti set b1='CHR4L2NE7MFWP6CVELB1K7J' where id=5; -update noar tt set v0='LHUD7F27RPNVCE2F' where id=5; -update noar ti set v0='LHUD7F27RPNVCE2F' where id=5; -update noar tt set b2='G6RFP' where id=5; -update noar ti set b2='G6RFP' where id=5; -update noar tt set v0='BVHKJDC8K7LPWKMA1L6' where id=6; -update noar ti set v0='BVHKJDC8K7LPWKMA1L6' where id=6; -update noar tt set b0='05WD2S517QH3DXN3RXM72GXQ' where id=6; -update noar ti set b0='05WD2S517QH3DXN3RXM72GXQ' where id=6; -update noar tt set v0='Q9TG4R' where id=6; -update noar ti set v0='Q9TG4R' where id=6; -update noar tt set b1='YNFW56I7A6FFPU6V3UV60' where id=6; -update noar ti set b1='YNFW56I7A6FFPU6V3UV60' where id=6; -update noar tt set v0='N6RSC7VBP8UW3KKKZPWQZBMMMDFWC' where id=6; -update noar ti set v0='N6RSC7VBP8UW3KKKZPWQZBMMMDFWC' where id=6; -update noar tt set b2='VSBKTIKOQW6ED6L74TQ' where id=6; -update noar ti set b2='VSBKTIKOQW6ED6L74TQ' where id=6; -update noar tt set v0='GX836WVXXX' where id=7; -update noar ti set v0='GX836WVXXX' where id=7; -update noar tt set b0='XSCO2IYDICMK8' where id=7; -update noar ti set b0='XSCO2IYDICMK8' where id=7; -update noar tt set v0='IRMXCRSWE7NOBF71YUNYCUPP1BDCP' where id=7; -update noar ti set v0='IRMXCRSWE7NOBF71YUNYCUPP1BDCP' where id=7; -update noar tt set b1='6RRAGG1D5R2' where id=7; -update noar ti set b1='6RRAGG1D5R2' where id=7; -update noar tt set v0='5QE0RH2PSYKK9UNS4F6AG6R6U' where id=7; -update noar ti set v0='5QE0RH2PSYKK9UNS4F6AG6R6U' where id=7; -update noar tt set b2='A5M' where id=7; -update noar ti set b2='A5M' where id=7; -update noar tt set v0='N9HQLQHG7G' where id=8; -update noar ti set v0='N9HQLQHG7G' where id=8; -update noar tt set b0='SMVX6JV' where id=8; -update noar ti set b0='SMVX6JV' where id=8; -update noar tt set v0='BNIS5YY8C19UUXVZV2ZIEJH32' where id=8; -update noar ti set v0='BNIS5YY8C19UUXVZV2ZIEJH32' where id=8; -update noar tt set b1='7EBFDZPQRX7MIM1DG6NLAYSXFO36' where id=8; -update noar ti set b1='7EBFDZPQRX7MIM1DG6NLAYSXFO36' where id=8; -update noar tt set v0='E0LP4PINUA' where id=8; -update noar ti set v0='E0LP4PINUA' where id=8; -update noar tt set b2='5D3DQB' where id=8; -update noar ti set b2='5D3DQB' where id=8; -update noar tt set v0='DD093HFS0RKJ9WGXXT2N5DAO6VI0' where id=9; -update noar ti set v0='DD093HFS0RKJ9WGXXT2N5DAO6VI0' where id=9; -update noar tt set b0='C4JKAQ952V' where id=9; -update noar ti set b0='C4JKAQ952V' where id=9; -update noar tt set v0='FLNGUF6XVIA3RVUEAW' where id=9; -update noar ti set v0='FLNGUF6XVIA3RVUEAW' where id=9; -update noar tt set b1='CTUF690DI0L4G0MJSNC2K2FZ' where id=9; -update noar ti set b1='CTUF690DI0L4G0MJSNC2K2FZ' where id=9; -update noar tt set v0='ZE99QS32375OIGH7IJ1Y5G80ICKNM9' where id=9; -update noar ti set v0='ZE99QS32375OIGH7IJ1Y5G80ICKNM9' where id=9; -update noar tt set b2='HH9JTXQJ1KT' where id=9; -update noar ti set b2='HH9JTXQJ1KT' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -v0 varchar(256) not null, -b0 tinyblob not null, -b1 longblob not null, -b2 mediumblob not null -) engine=tokudb; -insert into tt values (1,'','','',''); -insert into tt values (2,'','','',''); -insert into tt values (3,'','','',''); -insert into tt values (4,'','','',''); -insert into tt values (5,'','','',''); -insert into tt values (6,'','','',''); -insert into tt values (7,'','','',''); -insert into tt values (8,'','','',''); -insert into tt values (9,'','','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='0SHED8Q2' where id=1; -update noar ti set v0='0SHED8Q2' where id=1; -update noar tt set b0='ME5JRX3ZQ4B8E0DNCU2P6ZQ8ZKJSQ' where id=1; -update noar ti set b0='ME5JRX3ZQ4B8E0DNCU2P6ZQ8ZKJSQ' where id=1; -update noar tt set v0='2S08FHJADCFP4FC2DXFX' where id=1; -update noar ti set v0='2S08FHJADCFP4FC2DXFX' where id=1; -update noar tt set b1='OWKAKK8HV' where id=1; -update noar ti set b1='OWKAKK8HV' where id=1; -update noar tt set v0='NOESX35JAXWXJXOVIK7UTRES5VB1E' where id=1; -update noar ti set v0='NOESX35JAXWXJXOVIK7UTRES5VB1E' where id=1; -update noar tt set b2='S9HU1MV362YOIP1WSL8' where id=1; -update noar ti set b2='S9HU1MV362YOIP1WSL8' where id=1; -update noar tt set v0='4MRXHJRT5PWPG31K4RWODWVC0A' where id=2; -update noar ti set v0='4MRXHJRT5PWPG31K4RWODWVC0A' where id=2; -update noar tt set b0='PISI5H545T6R1BLBLR0GZ07TWX44G3' where id=2; -update noar ti set b0='PISI5H545T6R1BLBLR0GZ07TWX44G3' where id=2; -update noar tt set v0='A9LN2KOQ04B8PJW7Z4DZY0RGT95339R' where id=2; -update noar ti set v0='A9LN2KOQ04B8PJW7Z4DZY0RGT95339R' where id=2; -update noar tt set b1='QQG2X9BS5U7B2UHP' where id=2; -update noar ti set b1='QQG2X9BS5U7B2UHP' where id=2; -update noar tt set v0='JTK8Y8HRE2VKL5XJT' where id=2; -update noar ti set v0='JTK8Y8HRE2VKL5XJT' where id=2; -update noar tt set b2='FTXOS5MA4N950PQCE3WDXS' where id=2; -update noar ti set b2='FTXOS5MA4N950PQCE3WDXS' where id=2; -update noar tt set v0='9' where id=3; -update noar ti set v0='9' where id=3; -update noar tt set b0='WORUCOXK1JPOGO8H4HTGSJT' where id=3; -update noar ti set b0='WORUCOXK1JPOGO8H4HTGSJT' where id=3; -update noar tt set v0='HCT' where id=3; -update noar ti set v0='HCT' where id=3; -update noar tt set b1='8KT6054LUM4UQKUW6Z5J11H' where id=3; -update noar ti set b1='8KT6054LUM4UQKUW6Z5J11H' where id=3; -update noar tt set v0='H68Y58P7TMC4KG13YQZQ4YEU9Z90MQ5' where id=3; -update noar ti set v0='H68Y58P7TMC4KG13YQZQ4YEU9Z90MQ5' where id=3; -update noar tt set b2='WYP9INETKE4U66UNNWZIDWVZD731LWYB' where id=3; -update noar ti set b2='WYP9INETKE4U66UNNWZIDWVZD731LWYB' where id=3; -update noar tt set v0='T8OITEFYNXB918W3Y9LMNPOHYJSSE' where id=4; -update noar ti set v0='T8OITEFYNXB918W3Y9LMNPOHYJSSE' where id=4; -update noar tt set b0='MPVQLAC' where id=4; -update noar ti set b0='MPVQLAC' where id=4; -update noar tt set v0='KF7Q0TOHR6G' where id=4; -update noar ti set v0='KF7Q0TOHR6G' where id=4; -update noar tt set b1='KAU1TDA1' where id=4; -update noar ti set b1='KAU1TDA1' where id=4; -update noar tt set v0='EUA3' where id=4; -update noar ti set v0='EUA3' where id=4; -update noar tt set b2='XO8J8Q8EWE' where id=4; -update noar ti set b2='XO8J8Q8EWE' where id=4; -update noar tt set v0='T13RKCI3E5HSSQXTFKSSV4S' where id=5; -update noar ti set v0='T13RKCI3E5HSSQXTFKSSV4S' where id=5; -update noar tt set b0='L5TOIR4' where id=5; -update noar ti set b0='L5TOIR4' where id=5; -update noar tt set v0='0V58BZCZ15P40UM4DW' where id=5; -update noar ti set v0='0V58BZCZ15P40UM4DW' where id=5; -update noar tt set b1='OFEVXHM' where id=5; -update noar ti set b1='OFEVXHM' where id=5; -update noar tt set v0='8PFDBMH1R7WD' where id=5; -update noar ti set v0='8PFDBMH1R7WD' where id=5; -update noar tt set b2='3MAE1ESH817' where id=5; -update noar ti set b2='3MAE1ESH817' where id=5; -update noar tt set v0='TEIIUST2W8TZ' where id=6; -update noar ti set v0='TEIIUST2W8TZ' where id=6; -update noar tt set b0='Z5H6JJWHMKOCCH13DIW1MZJLZY4R' where id=6; -update noar ti set b0='Z5H6JJWHMKOCCH13DIW1MZJLZY4R' where id=6; -update noar tt set v0='5W8WR1S3CS4DQ4C7VC' where id=6; -update noar ti set v0='5W8WR1S3CS4DQ4C7VC' where id=6; -update noar tt set b1='VM0B7L738YSHJ4FT489IP1CTBC3C' where id=6; -update noar ti set b1='VM0B7L738YSHJ4FT489IP1CTBC3C' where id=6; -update noar tt set v0='RNLIR1PGJ' where id=6; -update noar ti set v0='RNLIR1PGJ' where id=6; -update noar tt set b2='988MEBR8CITAAJW' where id=6; -update noar ti set b2='988MEBR8CITAAJW' where id=6; -update noar tt set v0='U9' where id=7; -update noar ti set v0='U9' where id=7; -update noar tt set b0='5V4HQ4YJDL8XJWDRND6Y9' where id=7; -update noar ti set b0='5V4HQ4YJDL8XJWDRND6Y9' where id=7; -update noar tt set v0='8RV3QRZQHMFRXBKKXRK' where id=7; -update noar ti set v0='8RV3QRZQHMFRXBKKXRK' where id=7; -update noar tt set b1='BFQ0AAX' where id=7; -update noar ti set b1='BFQ0AAX' where id=7; -update noar tt set v0='S' where id=7; -update noar ti set v0='S' where id=7; -update noar tt set b2='0DIX9RF0PW0BQKNFD' where id=7; -update noar ti set b2='0DIX9RF0PW0BQKNFD' where id=7; -update noar tt set v0='QYET2CDYAB4Y0O29CQJ1CNHJ178' where id=8; -update noar ti set v0='QYET2CDYAB4Y0O29CQJ1CNHJ178' where id=8; -update noar tt set b0='0JQHEA56NXMG' where id=8; -update noar ti set b0='0JQHEA56NXMG' where id=8; -update noar tt set v0='L7PGKHNKASTLAH' where id=8; -update noar ti set v0='L7PGKHNKASTLAH' where id=8; -update noar tt set b1='WNTERESXJVBXEUCABOKKJ6EW787776X' where id=8; -update noar ti set b1='WNTERESXJVBXEUCABOKKJ6EW787776X' where id=8; -update noar tt set v0='Y99P6DD2L1ODN297V8TT52KN7' where id=8; -update noar ti set v0='Y99P6DD2L1ODN297V8TT52KN7' where id=8; -update noar tt set b2='R9X1' where id=8; -update noar ti set b2='R9X1' where id=8; -update noar tt set v0='KL3' where id=9; -update noar ti set v0='KL3' where id=9; -update noar tt set b0='U1RXJHOUIYOUCMHRXTMLANFK' where id=9; -update noar ti set b0='U1RXJHOUIYOUCMHRXTMLANFK' where id=9; -update noar tt set v0='F1B' where id=9; -update noar ti set v0='F1B' where id=9; -update noar tt set b1='Q8' where id=9; -update noar ti set b1='Q8' where id=9; -update noar tt set v0='W4W957ZQFQGC78TTFITFXKGMOINDQOW' where id=9; -update noar ti set v0='W4W957ZQFQGC78TTFITFXKGMOINDQOW' where id=9; -update noar tt set b2='83XQR3O437RY5' where id=9; -update noar ti set b2='83XQR3O437RY5' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -v0 varchar(32) null, -b0 tinyblob null, -b1 longblob null, -b2 longblob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='DJ1MXSKXM' where id=1; -update noar ti set v0='DJ1MXSKXM' where id=1; -update noar tt set b0='MWMI6H2BHD7AMELVJVLWFFEP' where id=1; -update noar ti set b0='MWMI6H2BHD7AMELVJVLWFFEP' where id=1; -update noar tt set v0='6DXB5JOQMHPPDLKCWDWLS5PUHOX8' where id=1; -update noar ti set v0='6DXB5JOQMHPPDLKCWDWLS5PUHOX8' where id=1; -update noar tt set b1='RQU8MD2WPZWZ0UC' where id=1; -update noar ti set b1='RQU8MD2WPZWZ0UC' where id=1; -update noar tt set v0='1EXESFMDG5BT' where id=1; -update noar ti set v0='1EXESFMDG5BT' where id=1; -update noar tt set b2='FJT8LDHBPMOR1KNSBW4UZCTJQX' where id=1; -update noar ti set b2='FJT8LDHBPMOR1KNSBW4UZCTJQX' where id=1; -update noar tt set v0='5Q0N3JQVUVOADI' where id=2; -update noar ti set v0='5Q0N3JQVUVOADI' where id=2; -update noar tt set b0='HU0VDM61BFSEGCMJEMPZHNEJV' where id=2; -update noar ti set b0='HU0VDM61BFSEGCMJEMPZHNEJV' where id=2; -update noar tt set v0='HZZB2G5XVBXDL65O' where id=2; -update noar ti set v0='HZZB2G5XVBXDL65O' where id=2; -update noar tt set b1='L9T7HXAT3EHODS8' where id=2; -update noar ti set b1='L9T7HXAT3EHODS8' where id=2; -update noar tt set v0='DU9DXS' where id=2; -update noar ti set v0='DU9DXS' where id=2; -update noar tt set b2='2CXIEKMTJ0XSC' where id=2; -update noar ti set b2='2CXIEKMTJ0XSC' where id=2; -update noar tt set v0='QNFLUSZYW3WUC52BRJK2BGTF49AH2D' where id=3; -update noar ti set v0='QNFLUSZYW3WUC52BRJK2BGTF49AH2D' where id=3; -update noar tt set b0='IWEJS2CBWDD1P6HC1P3' where id=3; -update noar ti set b0='IWEJS2CBWDD1P6HC1P3' where id=3; -update noar tt set v0='NJNDZYGN94MOM31' where id=3; -update noar ti set v0='NJNDZYGN94MOM31' where id=3; -update noar tt set b1='FOS' where id=3; -update noar ti set b1='FOS' where id=3; -update noar tt set v0='S81S' where id=3; -update noar ti set v0='S81S' where id=3; -update noar tt set b2='WHMALLI5LS002FRGO1A0V8V1VDFIHMVN' where id=3; -update noar ti set b2='WHMALLI5LS002FRGO1A0V8V1VDFIHMVN' where id=3; -update noar tt set v0='V29R3ADUYKU50DY9K1BLBMMP6I6KX3KH' where id=4; -update noar ti set v0='V29R3ADUYKU50DY9K1BLBMMP6I6KX3KH' where id=4; -update noar tt set b0='2SFJ7' where id=4; -update noar ti set b0='2SFJ7' where id=4; -update noar tt set v0='RBMCGI9VC1' where id=4; -update noar ti set v0='RBMCGI9VC1' where id=4; -update noar tt set b1='FRKDUYOP2Y0IS0AFDRMDS' where id=4; -update noar ti set b1='FRKDUYOP2Y0IS0AFDRMDS' where id=4; -update noar tt set v0='9L41QS' where id=4; -update noar ti set v0='9L41QS' where id=4; -update noar tt set b2='G7YT1FLLJHZ2GQ3HWMSG3QRE51DU' where id=4; -update noar ti set b2='G7YT1FLLJHZ2GQ3HWMSG3QRE51DU' where id=4; -update noar tt set v0='S2EKIR5I4MQV682' where id=5; -update noar ti set v0='S2EKIR5I4MQV682' where id=5; -update noar tt set b0='H2ZX7RT' where id=5; -update noar ti set b0='H2ZX7RT' where id=5; -update noar tt set v0='EZT' where id=5; -update noar ti set v0='EZT' where id=5; -update noar tt set b1='B17GX0FPOPJY3W5HFROX' where id=5; -update noar ti set b1='B17GX0FPOPJY3W5HFROX' where id=5; -update noar tt set v0='7P961' where id=5; -update noar ti set v0='7P961' where id=5; -update noar tt set b2='CTE' where id=5; -update noar ti set b2='CTE' where id=5; -update noar tt set v0='B1G2BA3VU8DDM7ONVMW4UIO92' where id=6; -update noar ti set v0='B1G2BA3VU8DDM7ONVMW4UIO92' where id=6; -update noar tt set b0='E5C73PV2A52YTKNOA3PUIG0A2WYG' where id=6; -update noar ti set b0='E5C73PV2A52YTKNOA3PUIG0A2WYG' where id=6; -update noar tt set v0='HTXJBLWNZP0DQMJEU7VTGAYUSL0V6O' where id=6; -update noar ti set v0='HTXJBLWNZP0DQMJEU7VTGAYUSL0V6O' where id=6; -update noar tt set b1='T7K7L6FSMJ4NFIR2VRJIE47KLC6JQ' where id=6; -update noar ti set b1='T7K7L6FSMJ4NFIR2VRJIE47KLC6JQ' where id=6; -update noar tt set v0='X' where id=6; -update noar ti set v0='X' where id=6; -update noar tt set b2='ENHUSCOXDL4T4GBD37' where id=6; -update noar ti set b2='ENHUSCOXDL4T4GBD37' where id=6; -update noar tt set v0='PBXRJ8C76OJ' where id=7; -update noar ti set v0='PBXRJ8C76OJ' where id=7; -update noar tt set b0='JBY8M983' where id=7; -update noar ti set b0='JBY8M983' where id=7; -update noar tt set v0='3H3LZPGFW3QALWN' where id=7; -update noar ti set v0='3H3LZPGFW3QALWN' where id=7; -update noar tt set b1='RLNZR7MXBHOH3QRIBT' where id=7; -update noar ti set b1='RLNZR7MXBHOH3QRIBT' where id=7; -update noar tt set v0='9Z9FVN7RDZORONKPN2Z6CT' where id=7; -update noar ti set v0='9Z9FVN7RDZORONKPN2Z6CT' where id=7; -update noar tt set b2='MDSUXECM9IPO7PI60L4WVZ81FF7FY' where id=7; -update noar ti set b2='MDSUXECM9IPO7PI60L4WVZ81FF7FY' where id=7; -update noar tt set v0='573' where id=8; -update noar ti set v0='573' where id=8; -update noar tt set b0='H2GPG4MINPW5OX6J619E' where id=8; -update noar ti set b0='H2GPG4MINPW5OX6J619E' where id=8; -update noar tt set v0='T77M' where id=8; -update noar ti set v0='T77M' where id=8; -update noar tt set b1='NXO53P69GD29GH8JGCQKECXE5HI' where id=8; -update noar ti set b1='NXO53P69GD29GH8JGCQKECXE5HI' where id=8; -update noar tt set v0='E6QN6A2QCK' where id=8; -update noar ti set v0='E6QN6A2QCK' where id=8; -update noar tt set b2='GSW0VPZZ3SDLLIY7YD' where id=8; -update noar ti set b2='GSW0VPZZ3SDLLIY7YD' where id=8; -update noar tt set v0='LC78UX24JTGK9OSYD6V1US7FXT' where id=9; -update noar ti set v0='LC78UX24JTGK9OSYD6V1US7FXT' where id=9; -update noar tt set b0='H7NVRK1V43J5SU449H61VCHD3CTABV0' where id=9; -update noar ti set b0='H7NVRK1V43J5SU449H61VCHD3CTABV0' where id=9; -update noar tt set v0='NDV' where id=9; -update noar ti set v0='NDV' where id=9; -update noar tt set b1='FSGZSRKKNTUOXX5GK3L768L5WQOV3Z' where id=9; -update noar ti set b1='FSGZSRKKNTUOXX5GK3L768L5WQOV3Z' where id=9; -update noar tt set v0='ES5ZL7LJH9' where id=9; -update noar ti set v0='ES5ZL7LJH9' where id=9; -update noar tt set b2='6B5ZRB0LTQB9IXYHQ3P' where id=9; -update noar ti set b2='6B5ZRB0LTQB9IXYHQ3P' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -v0 varchar(256) null, -b0 tinyblob null, -b1 longblob null, -b2 longblob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='R9XJ' where id=1; -update noar ti set v0='R9XJ' where id=1; -update noar tt set b0='KMRXCZOCM9CCTFQPOYN4NZ5YMZMWM' where id=1; -update noar ti set b0='KMRXCZOCM9CCTFQPOYN4NZ5YMZMWM' where id=1; -update noar tt set v0='KTH6250' where id=1; -update noar ti set v0='KTH6250' where id=1; -update noar tt set b1='H4X6OT3NHPBEMN61N93' where id=1; -update noar ti set b1='H4X6OT3NHPBEMN61N93' where id=1; -update noar tt set v0='7RJAX' where id=1; -update noar ti set v0='7RJAX' where id=1; -update noar tt set b2='T5F3WWAUQ5EENRJLTK0RBPJPC' where id=1; -update noar ti set b2='T5F3WWAUQ5EENRJLTK0RBPJPC' where id=1; -update noar tt set v0='582VBSGHKIYLXAWCGQ' where id=2; -update noar ti set v0='582VBSGHKIYLXAWCGQ' where id=2; -update noar tt set b0='DCOUYG' where id=2; -update noar ti set b0='DCOUYG' where id=2; -update noar tt set v0='KZLPM7N3EQ6IGCOBXRHVYNG2R3F' where id=2; -update noar ti set v0='KZLPM7N3EQ6IGCOBXRHVYNG2R3F' where id=2; -update noar tt set b1='CO4DJ0GL' where id=2; -update noar ti set b1='CO4DJ0GL' where id=2; -update noar tt set v0='WQMQHIB' where id=2; -update noar ti set v0='WQMQHIB' where id=2; -update noar tt set b2='JP4LB602M3VFDAES2SXWQFB1AWP94' where id=2; -update noar ti set b2='JP4LB602M3VFDAES2SXWQFB1AWP94' where id=2; -update noar tt set v0='NTIWNJ2BESJMS0EWO52Z' where id=3; -update noar ti set v0='NTIWNJ2BESJMS0EWO52Z' where id=3; -update noar tt set b0='WTVHFKBQ55OQKT' where id=3; -update noar ti set b0='WTVHFKBQ55OQKT' where id=3; -update noar tt set v0='YOODDDKQMKYSB6O0H6FUE9' where id=3; -update noar ti set v0='YOODDDKQMKYSB6O0H6FUE9' where id=3; -update noar tt set b1='DQM7LK92XMAPWEITZ7P' where id=3; -update noar ti set b1='DQM7LK92XMAPWEITZ7P' where id=3; -update noar tt set v0='DUHUEZNQ8KPKEU2S6X8AA5XL' where id=3; -update noar ti set v0='DUHUEZNQ8KPKEU2S6X8AA5XL' where id=3; -update noar tt set b2='O0A093X6CD3B' where id=3; -update noar ti set b2='O0A093X6CD3B' where id=3; -update noar tt set v0='6Y412YH5' where id=4; -update noar ti set v0='6Y412YH5' where id=4; -update noar tt set b0='OI5R' where id=4; -update noar ti set b0='OI5R' where id=4; -update noar tt set v0='D4KOUWKIFRN5G1UYF4DJ6EQ' where id=4; -update noar ti set v0='D4KOUWKIFRN5G1UYF4DJ6EQ' where id=4; -update noar tt set b1='KV3M8Z' where id=4; -update noar ti set b1='KV3M8Z' where id=4; -update noar tt set v0='MLMDVQTO8' where id=4; -update noar ti set v0='MLMDVQTO8' where id=4; -update noar tt set b2='JOUR2WZYYEYLPZZP9N29SUXSSOL' where id=4; -update noar ti set b2='JOUR2WZYYEYLPZZP9N29SUXSSOL' where id=4; -update noar tt set v0='LQH97ZQD7R27MMN00GC61U3MJF8' where id=5; -update noar ti set v0='LQH97ZQD7R27MMN00GC61U3MJF8' where id=5; -update noar tt set b0='NA' where id=5; -update noar ti set b0='NA' where id=5; -update noar tt set v0='9ONAZCZEA059HWXA1AOEPGBMGV5LWJV' where id=5; -update noar ti set v0='9ONAZCZEA059HWXA1AOEPGBMGV5LWJV' where id=5; -update noar tt set b1='H90T2S7XJ582TWIVRT' where id=5; -update noar ti set b1='H90T2S7XJ582TWIVRT' where id=5; -update noar tt set v0='VJOCXH0DLSJQFZ40LXG72MYOLH2DJ' where id=5; -update noar ti set v0='VJOCXH0DLSJQFZ40LXG72MYOLH2DJ' where id=5; -update noar tt set b2='M376NNX37GMSEK37ZFTZFSA4OOD0IXM7' where id=5; -update noar ti set b2='M376NNX37GMSEK37ZFTZFSA4OOD0IXM7' where id=5; -update noar tt set v0='GE9KK0DHSLDSWJ7HE5AXLE' where id=6; -update noar ti set v0='GE9KK0DHSLDSWJ7HE5AXLE' where id=6; -update noar tt set b0='NIA8K4T3D3SE4VI' where id=6; -update noar ti set b0='NIA8K4T3D3SE4VI' where id=6; -update noar tt set v0='3QND0CO15NPYM99' where id=6; -update noar ti set v0='3QND0CO15NPYM99' where id=6; -update noar tt set b1='IP' where id=6; -update noar ti set b1='IP' where id=6; -update noar tt set v0='QML67BO3LURAFJYLVFU2W4LHSUOU' where id=6; -update noar ti set v0='QML67BO3LURAFJYLVFU2W4LHSUOU' where id=6; -update noar tt set b2='55MAN5UDFZS80WQ0KS6WEJVVPT' where id=6; -update noar ti set b2='55MAN5UDFZS80WQ0KS6WEJVVPT' where id=6; -update noar tt set v0='0Y' where id=7; -update noar ti set v0='0Y' where id=7; -update noar tt set b0='EOQP5FNQO42LR1OXT2TF7OIT33X' where id=7; -update noar ti set b0='EOQP5FNQO42LR1OXT2TF7OIT33X' where id=7; -update noar tt set v0='FGKLRHEABY' where id=7; -update noar ti set v0='FGKLRHEABY' where id=7; -update noar tt set b1='ZP2IHOJ1' where id=7; -update noar ti set b1='ZP2IHOJ1' where id=7; -update noar tt set v0='NHW' where id=7; -update noar ti set v0='NHW' where id=7; -update noar tt set b2='PV13G6' where id=7; -update noar ti set b2='PV13G6' where id=7; -update noar tt set v0='34I0M2RDRP9DPKIJBZQQ8W1SYKEKEYW' where id=8; -update noar ti set v0='34I0M2RDRP9DPKIJBZQQ8W1SYKEKEYW' where id=8; -update noar tt set b0='2S2YNRSHG' where id=8; -update noar ti set b0='2S2YNRSHG' where id=8; -update noar tt set v0='TDED4Y6FQ3G' where id=8; -update noar ti set v0='TDED4Y6FQ3G' where id=8; -update noar tt set b1='CVU3BI1R1EJMDHQHGHHDDRUXM6IBN52V' where id=8; -update noar ti set b1='CVU3BI1R1EJMDHQHGHHDDRUXM6IBN52V' where id=8; -update noar tt set v0='M2I11JZJVBYA1A' where id=8; -update noar ti set v0='M2I11JZJVBYA1A' where id=8; -update noar tt set b2='BVX' where id=8; -update noar ti set b2='BVX' where id=8; -update noar tt set v0='29E75JA4DD4OIWDLM89WY5G3A89MU' where id=9; -update noar ti set v0='29E75JA4DD4OIWDLM89WY5G3A89MU' where id=9; -update noar tt set b0='CJTBX718EQ3KF0HBR349BME5FNVH3W' where id=9; -update noar ti set b0='CJTBX718EQ3KF0HBR349BME5FNVH3W' where id=9; -update noar tt set v0='J3FRX8ALOI3NXDJBQFZQOIBND0O' where id=9; -update noar ti set v0='J3FRX8ALOI3NXDJBQFZQOIBND0O' where id=9; -update noar tt set b1='5UR' where id=9; -update noar ti set b1='5UR' where id=9; -update noar tt set v0='JG' where id=9; -update noar ti set v0='JG' where id=9; -update noar tt set b2='W0HBGNHRNQ2Y1KGZ9' where id=9; -update noar ti set b2='W0HBGNHRNQ2Y1KGZ9' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -v0 varchar(32) not null, -b0 tinyblob not null, -b1 longblob not null, -b2 longblob not null -) engine=tokudb; -insert into tt values (1,'','','',''); -insert into tt values (2,'','','',''); -insert into tt values (3,'','','',''); -insert into tt values (4,'','','',''); -insert into tt values (5,'','','',''); -insert into tt values (6,'','','',''); -insert into tt values (7,'','','',''); -insert into tt values (8,'','','',''); -insert into tt values (9,'','','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='AIF91B8I' where id=1; -update noar ti set v0='AIF91B8I' where id=1; -update noar tt set b0='P2UWJAJ0UED' where id=1; -update noar ti set b0='P2UWJAJ0UED' where id=1; -update noar tt set v0='J6QQ9R' where id=1; -update noar ti set v0='J6QQ9R' where id=1; -update noar tt set b1='YBED' where id=1; -update noar ti set b1='YBED' where id=1; -update noar tt set v0='UEWRT5VCKRF1HM0EBG0JMSQTBG8A0ZI' where id=1; -update noar ti set v0='UEWRT5VCKRF1HM0EBG0JMSQTBG8A0ZI' where id=1; -update noar tt set b2='O5OV2' where id=1; -update noar ti set b2='O5OV2' where id=1; -update noar tt set v0='O1' where id=2; -update noar ti set v0='O1' where id=2; -update noar tt set b0='9U2S7WHR' where id=2; -update noar ti set b0='9U2S7WHR' where id=2; -update noar tt set v0='1FTCQ8GJA4RPYMS4OD4' where id=2; -update noar ti set v0='1FTCQ8GJA4RPYMS4OD4' where id=2; -update noar tt set b1='KJPEE7FZFBOP' where id=2; -update noar ti set b1='KJPEE7FZFBOP' where id=2; -update noar tt set v0='LDG5XLKUOWKVFPJNVMD4LTH' where id=2; -update noar ti set v0='LDG5XLKUOWKVFPJNVMD4LTH' where id=2; -update noar tt set b2='HGVBH7BM7JLHA26OPT1T' where id=2; -update noar ti set b2='HGVBH7BM7JLHA26OPT1T' where id=2; -update noar tt set v0='C22A6R7' where id=3; -update noar ti set v0='C22A6R7' where id=3; -update noar tt set b0='NUR511QMVKB5S06P94O' where id=3; -update noar ti set b0='NUR511QMVKB5S06P94O' where id=3; -update noar tt set v0='JHF01LEAU68T5E8ROL' where id=3; -update noar ti set v0='JHF01LEAU68T5E8ROL' where id=3; -update noar tt set b1='885KWQCUQAVBTJU' where id=3; -update noar ti set b1='885KWQCUQAVBTJU' where id=3; -update noar tt set v0='25YFTYUNIX16VC16' where id=3; -update noar ti set v0='25YFTYUNIX16VC16' where id=3; -update noar tt set b2='FKP' where id=3; -update noar ti set b2='FKP' where id=3; -update noar tt set v0='W5WF3UWG0QH8XE' where id=4; -update noar ti set v0='W5WF3UWG0QH8XE' where id=4; -update noar tt set b0='9ZXNEUHITKC5GV' where id=4; -update noar ti set b0='9ZXNEUHITKC5GV' where id=4; -update noar tt set v0='4U3STH13QWX4KJBH2H4ESLWD16R' where id=4; -update noar ti set v0='4U3STH13QWX4KJBH2H4ESLWD16R' where id=4; -update noar tt set b1='FL3X8OR7FL72ETW68X1WYBXP' where id=4; -update noar ti set b1='FL3X8OR7FL72ETW68X1WYBXP' where id=4; -update noar tt set v0='7YFAM8NB9W2AU7N2ZPKJML860W6' where id=4; -update noar ti set v0='7YFAM8NB9W2AU7N2ZPKJML860W6' where id=4; -update noar tt set b2='WYA3P4NWIZ3OCBD' where id=4; -update noar ti set b2='WYA3P4NWIZ3OCBD' where id=4; -update noar tt set v0='4K76' where id=5; -update noar ti set v0='4K76' where id=5; -update noar tt set b0='SPTB4PQKL4725I' where id=5; -update noar ti set b0='SPTB4PQKL4725I' where id=5; -update noar tt set v0='0D7BH1R5PTEVZEJFKKHG8NQ5WEIG0' where id=5; -update noar ti set v0='0D7BH1R5PTEVZEJFKKHG8NQ5WEIG0' where id=5; -update noar tt set b1='BYL' where id=5; -update noar ti set b1='BYL' where id=5; -update noar tt set v0='1FH05SBTE4GCF8' where id=5; -update noar ti set v0='1FH05SBTE4GCF8' where id=5; -update noar tt set b2='17TQK2XOQJ' where id=5; -update noar ti set b2='17TQK2XOQJ' where id=5; -update noar tt set v0='B0SU9OUYUBL74M2KW3' where id=6; -update noar ti set v0='B0SU9OUYUBL74M2KW3' where id=6; -update noar tt set b0='E90XVMXNKUMC6A7RZ0USPOUQC3KQ8G9K' where id=6; -update noar ti set b0='E90XVMXNKUMC6A7RZ0USPOUQC3KQ8G9K' where id=6; -update noar tt set v0='IJKJCI' where id=6; -update noar ti set v0='IJKJCI' where id=6; -update noar tt set b1='C' where id=6; -update noar ti set b1='C' where id=6; -update noar tt set v0='0E9OBY3RZ3LOZ30S8WSK2HGT' where id=6; -update noar ti set v0='0E9OBY3RZ3LOZ30S8WSK2HGT' where id=6; -update noar tt set b2='5H78U5R' where id=6; -update noar ti set b2='5H78U5R' where id=6; -update noar tt set v0='3YHAD0184TOSB' where id=7; -update noar ti set v0='3YHAD0184TOSB' where id=7; -update noar tt set b0='2T9QEPPNKQYGRML8VG0E6RB82FVX4XTR' where id=7; -update noar ti set b0='2T9QEPPNKQYGRML8VG0E6RB82FVX4XTR' where id=7; -update noar tt set v0='HXV8' where id=7; -update noar ti set v0='HXV8' where id=7; -update noar tt set b1='35TE6T343DPM3QKONCDW' where id=7; -update noar ti set b1='35TE6T343DPM3QKONCDW' where id=7; -update noar tt set v0='AX9QMIZZXIK3TC5E208I' where id=7; -update noar ti set v0='AX9QMIZZXIK3TC5E208I' where id=7; -update noar tt set b2='9TBNOLSB59ACW48L8S' where id=7; -update noar ti set b2='9TBNOLSB59ACW48L8S' where id=7; -update noar tt set v0='CTMXL39WHZ' where id=8; -update noar ti set v0='CTMXL39WHZ' where id=8; -update noar tt set b0='IW9AR7R473ZH6QTD2' where id=8; -update noar ti set b0='IW9AR7R473ZH6QTD2' where id=8; -update noar tt set v0='KY3JNL3GNN0G3T0' where id=8; -update noar ti set v0='KY3JNL3GNN0G3T0' where id=8; -update noar tt set b1='NE0N0NHLYX8ZLZ6YOF6U4' where id=8; -update noar ti set b1='NE0N0NHLYX8ZLZ6YOF6U4' where id=8; -update noar tt set v0='JPBW87M0Q0OVH8C51' where id=8; -update noar ti set v0='JPBW87M0Q0OVH8C51' where id=8; -update noar tt set b2='N857' where id=8; -update noar ti set b2='N857' where id=8; -update noar tt set v0='MGIK8JFIS' where id=9; -update noar ti set v0='MGIK8JFIS' where id=9; -update noar tt set b0='P4CEW8QJQCIHO45L7RXZDXRM' where id=9; -update noar ti set b0='P4CEW8QJQCIHO45L7RXZDXRM' where id=9; -update noar tt set v0='AHBTVPEJ' where id=9; -update noar ti set v0='AHBTVPEJ' where id=9; -update noar tt set b1='DI9SMHZZ02SZ' where id=9; -update noar ti set b1='DI9SMHZZ02SZ' where id=9; -update noar tt set v0='JB67SJHVA6LH' where id=9; -update noar ti set v0='JB67SJHVA6LH' where id=9; -update noar tt set b2='V47N8B3LMR25SSQCVTG3Y9RIH9J' where id=9; -update noar ti set b2='V47N8B3LMR25SSQCVTG3Y9RIH9J' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -v0 varchar(256) not null, -b0 tinyblob not null, -b1 longblob not null, -b2 longblob not null -) engine=tokudb; -insert into tt values (1,'','','',''); -insert into tt values (2,'','','',''); -insert into tt values (3,'','','',''); -insert into tt values (4,'','','',''); -insert into tt values (5,'','','',''); -insert into tt values (6,'','','',''); -insert into tt values (7,'','','',''); -insert into tt values (8,'','','',''); -insert into tt values (9,'','','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='8MO6YNMF4G45RQTC3I' where id=1; -update noar ti set v0='8MO6YNMF4G45RQTC3I' where id=1; -update noar tt set b0='FI' where id=1; -update noar ti set b0='FI' where id=1; -update noar tt set v0='T81M35RVQ1S6AMW1IW' where id=1; -update noar ti set v0='T81M35RVQ1S6AMW1IW' where id=1; -update noar tt set b1='Z2H2H' where id=1; -update noar ti set b1='Z2H2H' where id=1; -update noar tt set v0='JK7Y5OACOH4P88F3' where id=1; -update noar ti set v0='JK7Y5OACOH4P88F3' where id=1; -update noar tt set b2='QVNMR' where id=1; -update noar ti set b2='QVNMR' where id=1; -update noar tt set v0='MAG6J0MKJG' where id=2; -update noar ti set v0='MAG6J0MKJG' where id=2; -update noar tt set b0='QSMS5EFAQD2BBM' where id=2; -update noar ti set b0='QSMS5EFAQD2BBM' where id=2; -update noar tt set v0='Q6Y3B7CDEBESRJRWOKAQX' where id=2; -update noar ti set v0='Q6Y3B7CDEBESRJRWOKAQX' where id=2; -update noar tt set b1='ABMFG5858RP' where id=2; -update noar ti set b1='ABMFG5858RP' where id=2; -update noar tt set v0='JHISSD4RO3YUJS9SZS8ZQZFNO' where id=2; -update noar ti set v0='JHISSD4RO3YUJS9SZS8ZQZFNO' where id=2; -update noar tt set b2='OTH01L' where id=2; -update noar ti set b2='OTH01L' where id=2; -update noar tt set v0='RIQFIC6CJ7OIAU56' where id=3; -update noar ti set v0='RIQFIC6CJ7OIAU56' where id=3; -update noar tt set b0='IRFILLHGK0UQUTHH1BQBNQH9WDFM0' where id=3; -update noar ti set b0='IRFILLHGK0UQUTHH1BQBNQH9WDFM0' where id=3; -update noar tt set v0='37PTZ47CJHT' where id=3; -update noar ti set v0='37PTZ47CJHT' where id=3; -update noar tt set b1='YTS4WCLS68SW3IVZRD588CEIUD' where id=3; -update noar ti set b1='YTS4WCLS68SW3IVZRD588CEIUD' where id=3; -update noar tt set v0='0CAQ3PDNPQI7S3U6ZYVJ76PK23B1UERZ' where id=3; -update noar ti set v0='0CAQ3PDNPQI7S3U6ZYVJ76PK23B1UERZ' where id=3; -update noar tt set b2='64B6J0D112DX0RC7M7' where id=3; -update noar ti set b2='64B6J0D112DX0RC7M7' where id=3; -update noar tt set v0='EOJHMGQD' where id=4; -update noar ti set v0='EOJHMGQD' where id=4; -update noar tt set b0='HP4OXIIEYBHMQW6C3JP' where id=4; -update noar ti set b0='HP4OXIIEYBHMQW6C3JP' where id=4; -update noar tt set v0='G513IT5' where id=4; -update noar ti set v0='G513IT5' where id=4; -update noar tt set b1='GNYDJF5RHXED4A9' where id=4; -update noar ti set b1='GNYDJF5RHXED4A9' where id=4; -update noar tt set v0='M8TQCFMZO' where id=4; -update noar ti set v0='M8TQCFMZO' where id=4; -update noar tt set b2='41A8EPTG' where id=4; -update noar ti set b2='41A8EPTG' where id=4; -update noar tt set v0='J6YEZ2JWQRKARZ' where id=5; -update noar ti set v0='J6YEZ2JWQRKARZ' where id=5; -update noar tt set b0='C25XBXISTIKLN42MIJ21IKZB' where id=5; -update noar ti set b0='C25XBXISTIKLN42MIJ21IKZB' where id=5; -update noar tt set v0='HETVUGVXQVI6L7LCDUR8PPW' where id=5; -update noar ti set v0='HETVUGVXQVI6L7LCDUR8PPW' where id=5; -update noar tt set b1='7X312CKU58' where id=5; -update noar ti set b1='7X312CKU58' where id=5; -update noar tt set v0='ZCMAZBL3BWYQDHS407' where id=5; -update noar ti set v0='ZCMAZBL3BWYQDHS407' where id=5; -update noar tt set b2='F3U' where id=5; -update noar ti set b2='F3U' where id=5; -update noar tt set v0='3JKGKCE9LSRR07VBM3AVB6MVH' where id=6; -update noar ti set v0='3JKGKCE9LSRR07VBM3AVB6MVH' where id=6; -update noar tt set b0='DIIM6B7E3WM97D4Z6GUKTEIB5DPQP' where id=6; -update noar ti set b0='DIIM6B7E3WM97D4Z6GUKTEIB5DPQP' where id=6; -update noar tt set v0='8XZPOHU1NNSKLY8VWSZ6STZQWH82S1' where id=6; -update noar ti set v0='8XZPOHU1NNSKLY8VWSZ6STZQWH82S1' where id=6; -update noar tt set b1='8HNU2OK9ZK7N0' where id=6; -update noar ti set b1='8HNU2OK9ZK7N0' where id=6; -update noar tt set v0='L' where id=6; -update noar ti set v0='L' where id=6; -update noar tt set b2='2JYO0DACMLSG65Q4LX4K88XZ' where id=6; -update noar ti set b2='2JYO0DACMLSG65Q4LX4K88XZ' where id=6; -update noar tt set v0='T0LUWPAJ397GQS6UH2DP' where id=7; -update noar ti set v0='T0LUWPAJ397GQS6UH2DP' where id=7; -update noar tt set b0='TRBO6IQ696KOUWNT7DEEZQV9MU6' where id=7; -update noar ti set b0='TRBO6IQ696KOUWNT7DEEZQV9MU6' where id=7; -update noar tt set v0='VYO6FN9XA' where id=7; -update noar ti set v0='VYO6FN9XA' where id=7; -update noar tt set b1='8AGPAKACVH6XY39IFEE13M8CCLVJEG67' where id=7; -update noar ti set b1='8AGPAKACVH6XY39IFEE13M8CCLVJEG67' where id=7; -update noar tt set v0='2BT' where id=7; -update noar ti set v0='2BT' where id=7; -update noar tt set b2='P78ZDR3UWGSLUMC' where id=7; -update noar ti set b2='P78ZDR3UWGSLUMC' where id=7; -update noar tt set v0='0HBKGK0MYI5YS7TZJP5HN5M8J' where id=8; -update noar ti set v0='0HBKGK0MYI5YS7TZJP5HN5M8J' where id=8; -update noar tt set b0='UQE' where id=8; -update noar ti set b0='UQE' where id=8; -update noar tt set v0='0V16JMLMZKIVGTECUB9AKXRFI45CHG' where id=8; -update noar ti set v0='0V16JMLMZKIVGTECUB9AKXRFI45CHG' where id=8; -update noar tt set b1='MZ1WGZWEE7D1OMVCG5QXY7' where id=8; -update noar ti set b1='MZ1WGZWEE7D1OMVCG5QXY7' where id=8; -update noar tt set v0='HL631EGBYYUZTIOFY1IYMHLXI0M7J5E' where id=8; -update noar ti set v0='HL631EGBYYUZTIOFY1IYMHLXI0M7J5E' where id=8; -update noar tt set b2='34' where id=8; -update noar ti set b2='34' where id=8; -update noar tt set v0='99KKEAX5DK52J6KT85OAN43N5D3E' where id=9; -update noar ti set v0='99KKEAX5DK52J6KT85OAN43N5D3E' where id=9; -update noar tt set b0='Y7FW3MVANGFM741' where id=9; -update noar ti set b0='Y7FW3MVANGFM741' where id=9; -update noar tt set v0='SJ6AE8DTMNQH7PJ97UZ0CEMATX' where id=9; -update noar ti set v0='SJ6AE8DTMNQH7PJ97UZ0CEMATX' where id=9; -update noar tt set b1='OJSZ27FL3SUM4WF2CBS4ZG377INPVFF' where id=9; -update noar ti set b1='OJSZ27FL3SUM4WF2CBS4ZG377INPVFF' where id=9; -update noar tt set v0='2YN5' where id=9; -update noar ti set v0='2YN5' where id=9; -update noar tt set b2='LZBLWUS4PUX20NG26XLUEUJ32BK4W' where id=9; -update noar ti set b2='LZBLWUS4PUX20NG26XLUEUJ32BK4W' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -v0 varchar(32) null, -b0 blob null, -b1 tinyblob null, -b2 tinyblob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='VB9VCSDEOZGB' where id=1; -update noar ti set v0='VB9VCSDEOZGB' where id=1; -update noar tt set b0='HL4UG894D7NH55JN' where id=1; -update noar ti set b0='HL4UG894D7NH55JN' where id=1; -update noar tt set v0='F9FX43JX3U8XOZ5THGMX0J' where id=1; -update noar ti set v0='F9FX43JX3U8XOZ5THGMX0J' where id=1; -update noar tt set b1='4LVOBI4A4' where id=1; -update noar ti set b1='4LVOBI4A4' where id=1; -update noar tt set v0='XI2P3B7014HJASP6Z49VSNQSHDTZ4' where id=1; -update noar ti set v0='XI2P3B7014HJASP6Z49VSNQSHDTZ4' where id=1; -update noar tt set b2='G38ET' where id=1; -update noar ti set b2='G38ET' where id=1; -update noar tt set v0='5G42ONQ4T3GPAP0ZNFK24X76E0BV6VK' where id=2; -update noar ti set v0='5G42ONQ4T3GPAP0ZNFK24X76E0BV6VK' where id=2; -update noar tt set b0='3THMOQ8R6GIAKDJV' where id=2; -update noar ti set b0='3THMOQ8R6GIAKDJV' where id=2; -update noar tt set v0='XQIN0TIQTETOM3UNN6DJ9O4MBP' where id=2; -update noar ti set v0='XQIN0TIQTETOM3UNN6DJ9O4MBP' where id=2; -update noar tt set b1='WYSVDM7DD225L2MU3HSOHR94V6CXYJM' where id=2; -update noar ti set b1='WYSVDM7DD225L2MU3HSOHR94V6CXYJM' where id=2; -update noar tt set v0='LYE1U2C8I4C0O8MPP5038CG3' where id=2; -update noar ti set v0='LYE1U2C8I4C0O8MPP5038CG3' where id=2; -update noar tt set b2='E06O5FLZYKJ' where id=2; -update noar ti set b2='E06O5FLZYKJ' where id=2; -update noar tt set v0='M3YZZ7OFQ0D8V20KSGH' where id=3; -update noar ti set v0='M3YZZ7OFQ0D8V20KSGH' where id=3; -update noar tt set b0='MF48EAYMLRJZN' where id=3; -update noar ti set b0='MF48EAYMLRJZN' where id=3; -update noar tt set v0='H9ZMA950T1G3VET3F' where id=3; -update noar ti set v0='H9ZMA950T1G3VET3F' where id=3; -update noar tt set b1='3E7290K9K' where id=3; -update noar ti set b1='3E7290K9K' where id=3; -update noar tt set v0='YYQIRJUKY1SOVFBY20LNM6542Q' where id=3; -update noar ti set v0='YYQIRJUKY1SOVFBY20LNM6542Q' where id=3; -update noar tt set b2='MXDII1D1GBA' where id=3; -update noar ti set b2='MXDII1D1GBA' where id=3; -update noar tt set v0='8CJ576M0H8QMH' where id=4; -update noar ti set v0='8CJ576M0H8QMH' where id=4; -update noar tt set b0='5IVE3LO3JK0VQ0G89XOIULKC' where id=4; -update noar ti set b0='5IVE3LO3JK0VQ0G89XOIULKC' where id=4; -update noar tt set v0='X1OIUBPNS953C032RGF3SLC0QU0' where id=4; -update noar ti set v0='X1OIUBPNS953C032RGF3SLC0QU0' where id=4; -update noar tt set b1='MP5UM38MPXK2STK' where id=4; -update noar ti set b1='MP5UM38MPXK2STK' where id=4; -update noar tt set v0='MLKHT3MJ2S6BAYDW7MWIL0N' where id=4; -update noar ti set v0='MLKHT3MJ2S6BAYDW7MWIL0N' where id=4; -update noar tt set b2='7IALJFG3XHVNL425L9' where id=4; -update noar ti set b2='7IALJFG3XHVNL425L9' where id=4; -update noar tt set v0='OSB0DLZCQT40J73MKK2UMHERMVZLBY' where id=5; -update noar ti set v0='OSB0DLZCQT40J73MKK2UMHERMVZLBY' where id=5; -update noar tt set b0='NUZ4W' where id=5; -update noar ti set b0='NUZ4W' where id=5; -update noar tt set v0='OZL5HGH' where id=5; -update noar ti set v0='OZL5HGH' where id=5; -update noar tt set b1='921PJH0CYQK2SZVC2GOKX3E2VFSCI' where id=5; -update noar ti set b1='921PJH0CYQK2SZVC2GOKX3E2VFSCI' where id=5; -update noar tt set v0='9E8VH1BSSJFRPCX' where id=5; -update noar ti set v0='9E8VH1BSSJFRPCX' where id=5; -update noar tt set b2='RHXFGC8CU3Q74AGSZV6D6M81TQOE' where id=5; -update noar ti set b2='RHXFGC8CU3Q74AGSZV6D6M81TQOE' where id=5; -update noar tt set v0='CFCTGV0XCINNS3' where id=6; -update noar ti set v0='CFCTGV0XCINNS3' where id=6; -update noar tt set b0='UYWAFGW51ZT6DOV4DGPZY7YEXL3' where id=6; -update noar ti set b0='UYWAFGW51ZT6DOV4DGPZY7YEXL3' where id=6; -update noar tt set v0='31RUMYEKQP8DP6' where id=6; -update noar ti set v0='31RUMYEKQP8DP6' where id=6; -update noar tt set b1='6LQ6ADET6QOFM77P5VY4G7RG5AOTM' where id=6; -update noar ti set b1='6LQ6ADET6QOFM77P5VY4G7RG5AOTM' where id=6; -update noar tt set v0='L' where id=6; -update noar ti set v0='L' where id=6; -update noar tt set b2='MLNOHEW46RD992HUWPJ4M05DTVGPBCF' where id=6; -update noar ti set b2='MLNOHEW46RD992HUWPJ4M05DTVGPBCF' where id=6; -update noar tt set v0='89' where id=7; -update noar ti set v0='89' where id=7; -update noar tt set b0='6PNIO8U5Z5D8HX8MRPY' where id=7; -update noar ti set b0='6PNIO8U5Z5D8HX8MRPY' where id=7; -update noar tt set v0='BEEKBP75ZV' where id=7; -update noar ti set v0='BEEKBP75ZV' where id=7; -update noar tt set b1='KX4KW7ITSMEUI' where id=7; -update noar ti set b1='KX4KW7ITSMEUI' where id=7; -update noar tt set v0='WPKG8AH0E1BC3' where id=7; -update noar ti set v0='WPKG8AH0E1BC3' where id=7; -update noar tt set b2='0ASK8I' where id=7; -update noar ti set b2='0ASK8I' where id=7; -update noar tt set v0='KP5WBAZDYXPWK0ZYIQ8NGW' where id=8; -update noar ti set v0='KP5WBAZDYXPWK0ZYIQ8NGW' where id=8; -update noar tt set b0='JK4YSH' where id=8; -update noar ti set b0='JK4YSH' where id=8; -update noar tt set v0='EP6TMUOZF2G3VHEN1AK73WGCC0O' where id=8; -update noar ti set v0='EP6TMUOZF2G3VHEN1AK73WGCC0O' where id=8; -update noar tt set b1='0CNHFOIMCSAH6N5WC76O' where id=8; -update noar ti set b1='0CNHFOIMCSAH6N5WC76O' where id=8; -update noar tt set v0='COGP2V' where id=8; -update noar ti set v0='COGP2V' where id=8; -update noar tt set b2='1LHL8D0R2' where id=8; -update noar ti set b2='1LHL8D0R2' where id=8; -update noar tt set v0='MG0QN6O9GXKC9U4' where id=9; -update noar ti set v0='MG0QN6O9GXKC9U4' where id=9; -update noar tt set b0='5HMOVA4IOM8KYC93FVVAK' where id=9; -update noar ti set b0='5HMOVA4IOM8KYC93FVVAK' where id=9; -update noar tt set v0='IGIDY4S17H2E713NX8BLYJIKU' where id=9; -update noar ti set v0='IGIDY4S17H2E713NX8BLYJIKU' where id=9; -update noar tt set b1='WGQGMS74E5LTWFH0UK9IQB' where id=9; -update noar ti set b1='WGQGMS74E5LTWFH0UK9IQB' where id=9; -update noar tt set v0='9NPY0F2CE90FDCXQ2' where id=9; -update noar ti set v0='9NPY0F2CE90FDCXQ2' where id=9; -update noar tt set b2='WQ6HZE55JF1U94SLTM1WFG977C9U5' where id=9; -update noar ti set b2='WQ6HZE55JF1U94SLTM1WFG977C9U5' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -v0 varchar(256) null, -b0 blob null, -b1 tinyblob null, -b2 tinyblob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='N7E6COS3EUNQLBY81ZAELA2EPHU' where id=1; -update noar ti set v0='N7E6COS3EUNQLBY81ZAELA2EPHU' where id=1; -update noar tt set b0='76IFCKLZMRFZPE1D18STTXU4PSXZ' where id=1; -update noar ti set b0='76IFCKLZMRFZPE1D18STTXU4PSXZ' where id=1; -update noar tt set v0='RJ79HCDNZ33RI542OQLT' where id=1; -update noar ti set v0='RJ79HCDNZ33RI542OQLT' where id=1; -update noar tt set b1='F7CB6G8WD' where id=1; -update noar ti set b1='F7CB6G8WD' where id=1; -update noar tt set v0='X' where id=1; -update noar ti set v0='X' where id=1; -update noar tt set b2='QI54OISB1OFCREUZJD' where id=1; -update noar ti set b2='QI54OISB1OFCREUZJD' where id=1; -update noar tt set v0='K0FGJY8S074MY' where id=2; -update noar ti set v0='K0FGJY8S074MY' where id=2; -update noar tt set b0='OVFHK' where id=2; -update noar ti set b0='OVFHK' where id=2; -update noar tt set v0='71UW3HFXHM3TYKT767GY7I2EMYSZTBLM' where id=2; -update noar ti set v0='71UW3HFXHM3TYKT767GY7I2EMYSZTBLM' where id=2; -update noar tt set b1='BHTNWKY' where id=2; -update noar ti set b1='BHTNWKY' where id=2; -update noar tt set v0='P6WCXP836TZUHPHWV' where id=2; -update noar ti set v0='P6WCXP836TZUHPHWV' where id=2; -update noar tt set b2='T7GX7I5H67A4GSNWA9R1FQEQWWYC9E' where id=2; -update noar ti set b2='T7GX7I5H67A4GSNWA9R1FQEQWWYC9E' where id=2; -update noar tt set v0='NSTMC02Y5ZV49FTOYM95VEZLAN' where id=3; -update noar ti set v0='NSTMC02Y5ZV49FTOYM95VEZLAN' where id=3; -update noar tt set b0='YMXTW' where id=3; -update noar ti set b0='YMXTW' where id=3; -update noar tt set v0='PYKA2J2T2ZSH7R18TG41P20489P' where id=3; -update noar ti set v0='PYKA2J2T2ZSH7R18TG41P20489P' where id=3; -update noar tt set b1='OP33O737EABX5EL2RWC81EHUDKKSCH08' where id=3; -update noar ti set b1='OP33O737EABX5EL2RWC81EHUDKKSCH08' where id=3; -update noar tt set v0='FEM' where id=3; -update noar ti set v0='FEM' where id=3; -update noar tt set b2='GUJLWW6Y1K2M9U8KD1' where id=3; -update noar ti set b2='GUJLWW6Y1K2M9U8KD1' where id=3; -update noar tt set v0='DQVDBYSPFPPFGSA2V9IZ45KT8P4646N' where id=4; -update noar ti set v0='DQVDBYSPFPPFGSA2V9IZ45KT8P4646N' where id=4; -update noar tt set b0='G1KGJBSO45DSLLRCW10MWPFL3LU' where id=4; -update noar ti set b0='G1KGJBSO45DSLLRCW10MWPFL3LU' where id=4; -update noar tt set v0='2HQFO2AMOW90SBSA75T2H4' where id=4; -update noar ti set v0='2HQFO2AMOW90SBSA75T2H4' where id=4; -update noar tt set b1='HOPQ5J' where id=4; -update noar ti set b1='HOPQ5J' where id=4; -update noar tt set v0='AUQML2Y' where id=4; -update noar ti set v0='AUQML2Y' where id=4; -update noar tt set b2='I' where id=4; -update noar ti set b2='I' where id=4; -update noar tt set v0='MXNQX2W' where id=5; -update noar ti set v0='MXNQX2W' where id=5; -update noar tt set b0='7BFBOVSRJC2H2IESLQUQF' where id=5; -update noar ti set b0='7BFBOVSRJC2H2IESLQUQF' where id=5; -update noar tt set v0='ZG72C7J3LDFLVBDL7AT79EIKRO9RLAN' where id=5; -update noar ti set v0='ZG72C7J3LDFLVBDL7AT79EIKRO9RLAN' where id=5; -update noar tt set b1='NHJ1G4V12GX044STM3NR' where id=5; -update noar ti set b1='NHJ1G4V12GX044STM3NR' where id=5; -update noar tt set v0='QJ' where id=5; -update noar ti set v0='QJ' where id=5; -update noar tt set b2='524GMGU8O84A9C0DVHV4KR2HW' where id=5; -update noar ti set b2='524GMGU8O84A9C0DVHV4KR2HW' where id=5; -update noar tt set v0='LP5D1W' where id=6; -update noar ti set v0='LP5D1W' where id=6; -update noar tt set b0='F9A3UQNPJOPUB4X2SF03' where id=6; -update noar ti set b0='F9A3UQNPJOPUB4X2SF03' where id=6; -update noar tt set v0='1QF66XQX5451SQN8DTSIEIHL8YRY' where id=6; -update noar ti set v0='1QF66XQX5451SQN8DTSIEIHL8YRY' where id=6; -update noar tt set b1='MO' where id=6; -update noar ti set b1='MO' where id=6; -update noar tt set v0='LVOCQCCATPTB' where id=6; -update noar ti set v0='LVOCQCCATPTB' where id=6; -update noar tt set b2='FN284L6E4YQ' where id=6; -update noar ti set b2='FN284L6E4YQ' where id=6; -update noar tt set v0='LKXQ264A3WXZT4TT81NXG5LYJ8VJVX' where id=7; -update noar ti set v0='LKXQ264A3WXZT4TT81NXG5LYJ8VJVX' where id=7; -update noar tt set b0='8GZX15BGW' where id=7; -update noar ti set b0='8GZX15BGW' where id=7; -update noar tt set v0='WX8J2M4HLDWIKZGB9GL1VFWPAGVBE1X' where id=7; -update noar ti set v0='WX8J2M4HLDWIKZGB9GL1VFWPAGVBE1X' where id=7; -update noar tt set b1='M9QQHIDLMPET89CXFMUZ9IO00A' where id=7; -update noar ti set b1='M9QQHIDLMPET89CXFMUZ9IO00A' where id=7; -update noar tt set v0='JZB9KBPXHQOXRB2PS6' where id=7; -update noar ti set v0='JZB9KBPXHQOXRB2PS6' where id=7; -update noar tt set b2='DCTT48' where id=7; -update noar ti set b2='DCTT48' where id=7; -update noar tt set v0='RN8BID43CASG' where id=8; -update noar ti set v0='RN8BID43CASG' where id=8; -update noar tt set b0='J4SK8LAYHUNZS8W703G7LEQEZ518HE' where id=8; -update noar ti set b0='J4SK8LAYHUNZS8W703G7LEQEZ518HE' where id=8; -update noar tt set v0='GAAJ2AG05OH2I3VY2O' where id=8; -update noar ti set v0='GAAJ2AG05OH2I3VY2O' where id=8; -update noar tt set b1='N3G39MG5QWRI5YDZE8AOPDZV' where id=8; -update noar ti set b1='N3G39MG5QWRI5YDZE8AOPDZV' where id=8; -update noar tt set v0='F8' where id=8; -update noar ti set v0='F8' where id=8; -update noar tt set b2='GT8TR3N' where id=8; -update noar ti set b2='GT8TR3N' where id=8; -update noar tt set v0='7KOLAMB5JIR8MZ08QKG1BOMKLJ' where id=9; -update noar ti set v0='7KOLAMB5JIR8MZ08QKG1BOMKLJ' where id=9; -update noar tt set b0='D0L0PLE7' where id=9; -update noar ti set b0='D0L0PLE7' where id=9; -update noar tt set v0='0WNJ6NRCX6JRJ1K0A8G' where id=9; -update noar ti set v0='0WNJ6NRCX6JRJ1K0A8G' where id=9; -update noar tt set b1='AY6JFAPQHA' where id=9; -update noar ti set b1='AY6JFAPQHA' where id=9; -update noar tt set v0='C9JJ1DHB8L7RGOGRVPI' where id=9; -update noar ti set v0='C9JJ1DHB8L7RGOGRVPI' where id=9; -update noar tt set b2='TZ55BT0S1DEX' where id=9; -update noar ti set b2='TZ55BT0S1DEX' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -v0 varchar(32) not null, -b0 blob not null, -b1 tinyblob not null, -b2 tinyblob not null -) engine=tokudb; -insert into tt values (1,'','','',''); -insert into tt values (2,'','','',''); -insert into tt values (3,'','','',''); -insert into tt values (4,'','','',''); -insert into tt values (5,'','','',''); -insert into tt values (6,'','','',''); -insert into tt values (7,'','','',''); -insert into tt values (8,'','','',''); -insert into tt values (9,'','','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='SL185N' where id=1; -update noar ti set v0='SL185N' where id=1; -update noar tt set b0='JZAXQB45ZMBLD6ET8DBRS' where id=1; -update noar ti set b0='JZAXQB45ZMBLD6ET8DBRS' where id=1; -update noar tt set v0='Q2VXXWV6SZPZ90WRD4GI4PKE8EXXTB' where id=1; -update noar ti set v0='Q2VXXWV6SZPZ90WRD4GI4PKE8EXXTB' where id=1; -update noar tt set b1='7GG0CPT' where id=1; -update noar ti set b1='7GG0CPT' where id=1; -update noar tt set v0='5IQFVMNTQAVJTBSRNBV' where id=1; -update noar ti set v0='5IQFVMNTQAVJTBSRNBV' where id=1; -update noar tt set b2='SAY0VWC3AL' where id=1; -update noar ti set b2='SAY0VWC3AL' where id=1; -update noar tt set v0='7WVDLQT8EQPXGAQ0I1HNLT2P' where id=2; -update noar ti set v0='7WVDLQT8EQPXGAQ0I1HNLT2P' where id=2; -update noar tt set b0='00XKM63N1RRRMC' where id=2; -update noar ti set b0='00XKM63N1RRRMC' where id=2; -update noar tt set v0='MPYS06VCS5' where id=2; -update noar ti set v0='MPYS06VCS5' where id=2; -update noar tt set b1='PE1F6H1N694FZH8AZQWGRXG28HLF7R' where id=2; -update noar ti set b1='PE1F6H1N694FZH8AZQWGRXG28HLF7R' where id=2; -update noar tt set v0='Y1XOVQ' where id=2; -update noar ti set v0='Y1XOVQ' where id=2; -update noar tt set b2='ZPJ0GEHUKVSK5FFPUJK03' where id=2; -update noar ti set b2='ZPJ0GEHUKVSK5FFPUJK03' where id=2; -update noar tt set v0='0US' where id=3; -update noar ti set v0='0US' where id=3; -update noar tt set b0='ZRTQMXSF' where id=3; -update noar ti set b0='ZRTQMXSF' where id=3; -update noar tt set v0='J5H51AX' where id=3; -update noar ti set v0='J5H51AX' where id=3; -update noar tt set b1='0N8K2W2IP97NQHIQF' where id=3; -update noar ti set b1='0N8K2W2IP97NQHIQF' where id=3; -update noar tt set v0='8IZID2V8VF26J' where id=3; -update noar ti set v0='8IZID2V8VF26J' where id=3; -update noar tt set b2='PUTT4OYA6CCVHCTME77GYMAFQOY' where id=3; -update noar ti set b2='PUTT4OYA6CCVHCTME77GYMAFQOY' where id=3; -update noar tt set v0='HSLBG' where id=4; -update noar ti set v0='HSLBG' where id=4; -update noar tt set b0='TSTQ6AUVZD6FW03SUO29I3RM61ZJR' where id=4; -update noar ti set b0='TSTQ6AUVZD6FW03SUO29I3RM61ZJR' where id=4; -update noar tt set v0='JXHR8XFSSPNQPD' where id=4; -update noar ti set v0='JXHR8XFSSPNQPD' where id=4; -update noar tt set b1='DBG7QPTMRNNA4' where id=4; -update noar ti set b1='DBG7QPTMRNNA4' where id=4; -update noar tt set v0='E5' where id=4; -update noar ti set v0='E5' where id=4; -update noar tt set b2='ES6L9UP9K9LYVBANIIMCMP3GVWTHU9' where id=4; -update noar ti set b2='ES6L9UP9K9LYVBANIIMCMP3GVWTHU9' where id=4; -update noar tt set v0='ML4Z1G1JWP0DHEMPEPT' where id=5; -update noar ti set v0='ML4Z1G1JWP0DHEMPEPT' where id=5; -update noar tt set b0='23KLGFMPONT3Y7MT2KL9IA' where id=5; -update noar ti set b0='23KLGFMPONT3Y7MT2KL9IA' where id=5; -update noar tt set v0='R6B0QGILF1MS' where id=5; -update noar ti set v0='R6B0QGILF1MS' where id=5; -update noar tt set b1='AP2N5J' where id=5; -update noar ti set b1='AP2N5J' where id=5; -update noar tt set v0='7PXK20QHITD' where id=5; -update noar ti set v0='7PXK20QHITD' where id=5; -update noar tt set b2='HW4GX0YF5J676RDMLVORGVF5U8MWY3C' where id=5; -update noar ti set b2='HW4GX0YF5J676RDMLVORGVF5U8MWY3C' where id=5; -update noar tt set v0='VFAZLK2ER2PCRAV7' where id=6; -update noar ti set v0='VFAZLK2ER2PCRAV7' where id=6; -update noar tt set b0='2KNPWAHB57NU43EKPPGS6GINQ9TN0W' where id=6; -update noar ti set b0='2KNPWAHB57NU43EKPPGS6GINQ9TN0W' where id=6; -update noar tt set v0='11M7JAMV' where id=6; -update noar ti set v0='11M7JAMV' where id=6; -update noar tt set b1='K7GSY8VJTD78QUSC7S1KF2' where id=6; -update noar ti set b1='K7GSY8VJTD78QUSC7S1KF2' where id=6; -update noar tt set v0='MJKJO5HBC15' where id=6; -update noar ti set v0='MJKJO5HBC15' where id=6; -update noar tt set b2='OA' where id=6; -update noar ti set b2='OA' where id=6; -update noar tt set v0='O' where id=7; -update noar ti set v0='O' where id=7; -update noar tt set b0='CIDTBH61S3EDO6IVTWK3' where id=7; -update noar ti set b0='CIDTBH61S3EDO6IVTWK3' where id=7; -update noar tt set v0='MM15F2JGPB2' where id=7; -update noar ti set v0='MM15F2JGPB2' where id=7; -update noar tt set b1='6BFA1U6HFOJ2Q9GTG' where id=7; -update noar ti set b1='6BFA1U6HFOJ2Q9GTG' where id=7; -update noar tt set v0='H6Q5P1980JKG' where id=7; -update noar ti set v0='H6Q5P1980JKG' where id=7; -update noar tt set b2='GXOA1SV9UHWIL' where id=7; -update noar ti set b2='GXOA1SV9UHWIL' where id=7; -update noar tt set v0='ACLU5D8JDSHMFW' where id=8; -update noar ti set v0='ACLU5D8JDSHMFW' where id=8; -update noar tt set b0='ET58YPLALZQSTI8Y0AM' where id=8; -update noar ti set b0='ET58YPLALZQSTI8Y0AM' where id=8; -update noar tt set v0='8XTZ0PHE4' where id=8; -update noar ti set v0='8XTZ0PHE4' where id=8; -update noar tt set b1='AL8NG0FEDRYEXIH' where id=8; -update noar ti set b1='AL8NG0FEDRYEXIH' where id=8; -update noar tt set v0='TBB1X5L' where id=8; -update noar ti set v0='TBB1X5L' where id=8; -update noar tt set b2='CFIPBV36L9FJS4F59SDLKJDQH' where id=8; -update noar ti set b2='CFIPBV36L9FJS4F59SDLKJDQH' where id=8; -update noar tt set v0='0HJROZ9MYJ6IEHNTYG4DMNP6' where id=9; -update noar ti set v0='0HJROZ9MYJ6IEHNTYG4DMNP6' where id=9; -update noar tt set b0='7YG7P1D79F0KPA3AL2VAXS1LX4ZYYEB' where id=9; -update noar ti set b0='7YG7P1D79F0KPA3AL2VAXS1LX4ZYYEB' where id=9; -update noar tt set v0='28M5EF' where id=9; -update noar ti set v0='28M5EF' where id=9; -update noar tt set b1='TO1' where id=9; -update noar ti set b1='TO1' where id=9; -update noar tt set v0='DF' where id=9; -update noar ti set v0='DF' where id=9; -update noar tt set b2='D9OL' where id=9; -update noar ti set b2='D9OL' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -v0 varchar(256) not null, -b0 blob not null, -b1 tinyblob not null, -b2 tinyblob not null -) engine=tokudb; -insert into tt values (1,'','','',''); -insert into tt values (2,'','','',''); -insert into tt values (3,'','','',''); -insert into tt values (4,'','','',''); -insert into tt values (5,'','','',''); -insert into tt values (6,'','','',''); -insert into tt values (7,'','','',''); -insert into tt values (8,'','','',''); -insert into tt values (9,'','','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='5DOA15OSOD9DQZTW4PDGEC1I1HR7W5VU' where id=1; -update noar ti set v0='5DOA15OSOD9DQZTW4PDGEC1I1HR7W5VU' where id=1; -update noar tt set b0='NKY8V0K0W0' where id=1; -update noar ti set b0='NKY8V0K0W0' where id=1; -update noar tt set v0='R4S' where id=1; -update noar ti set v0='R4S' where id=1; -update noar tt set b1='LUFY4NXZ42V1Y2I52' where id=1; -update noar ti set b1='LUFY4NXZ42V1Y2I52' where id=1; -update noar tt set v0='Z809N9FCJRKJQBD' where id=1; -update noar ti set v0='Z809N9FCJRKJQBD' where id=1; -update noar tt set b2='SP2' where id=1; -update noar ti set b2='SP2' where id=1; -update noar tt set v0='DP0BPODNZKVITQ1KGN3M1GVLNEC' where id=2; -update noar ti set v0='DP0BPODNZKVITQ1KGN3M1GVLNEC' where id=2; -update noar tt set b0='E6M3UQV5MK1' where id=2; -update noar ti set b0='E6M3UQV5MK1' where id=2; -update noar tt set v0='0C858G02VNW22CR' where id=2; -update noar ti set v0='0C858G02VNW22CR' where id=2; -update noar tt set b1='RDO86' where id=2; -update noar ti set b1='RDO86' where id=2; -update noar tt set v0='NSIKLEHC' where id=2; -update noar ti set v0='NSIKLEHC' where id=2; -update noar tt set b2='MDK' where id=2; -update noar ti set b2='MDK' where id=2; -update noar tt set v0='CWZEJQ1Q' where id=3; -update noar ti set v0='CWZEJQ1Q' where id=3; -update noar tt set b0='198SH3U1JPRQCA70VEXDTXT' where id=3; -update noar ti set b0='198SH3U1JPRQCA70VEXDTXT' where id=3; -update noar tt set v0='M2A6LO06CE' where id=3; -update noar ti set v0='M2A6LO06CE' where id=3; -update noar tt set b1='ZSDAPLY4XF2JU93' where id=3; -update noar ti set b1='ZSDAPLY4XF2JU93' where id=3; -update noar tt set v0='71GGR7TRM286D7SBGEQ2MW7R4JIW7H' where id=3; -update noar ti set v0='71GGR7TRM286D7SBGEQ2MW7R4JIW7H' where id=3; -update noar tt set b2='LE' where id=3; -update noar ti set b2='LE' where id=3; -update noar tt set v0='1EA72GMDB3RQCLEUAH7XPSDFX' where id=4; -update noar ti set v0='1EA72GMDB3RQCLEUAH7XPSDFX' where id=4; -update noar tt set b0='A' where id=4; -update noar ti set b0='A' where id=4; -update noar tt set v0='SQAASN3ND4PW0VLYY55UWM' where id=4; -update noar ti set v0='SQAASN3ND4PW0VLYY55UWM' where id=4; -update noar tt set b1='2M3YLV873KLL8FGFZLPWU' where id=4; -update noar ti set b1='2M3YLV873KLL8FGFZLPWU' where id=4; -update noar tt set v0='VV9MGGFJEJBIRAHWMX' where id=4; -update noar ti set v0='VV9MGGFJEJBIRAHWMX' where id=4; -update noar tt set b2='UXEXO3WN7L7KQZH6HSDF' where id=4; -update noar ti set b2='UXEXO3WN7L7KQZH6HSDF' where id=4; -update noar tt set v0='O1YWKH3QTI1AXWBQYOBCUMZYYBVCUU' where id=5; -update noar ti set v0='O1YWKH3QTI1AXWBQYOBCUMZYYBVCUU' where id=5; -update noar tt set b0='H942QEAPA' where id=5; -update noar ti set b0='H942QEAPA' where id=5; -update noar tt set v0='4K9GQYZLEP5' where id=5; -update noar ti set v0='4K9GQYZLEP5' where id=5; -update noar tt set b1='AL01TKC1WDZVNG4M' where id=5; -update noar ti set b1='AL01TKC1WDZVNG4M' where id=5; -update noar tt set v0='J5JN8VGJT' where id=5; -update noar ti set v0='J5JN8VGJT' where id=5; -update noar tt set b2='MUI7C7B7E' where id=5; -update noar ti set b2='MUI7C7B7E' where id=5; -update noar tt set v0='MAG36AROYV7O0ECOLLSZVX8A' where id=6; -update noar ti set v0='MAG36AROYV7O0ECOLLSZVX8A' where id=6; -update noar tt set b0='LV6C3T1R8BRI6RQ53OQA53KL' where id=6; -update noar ti set b0='LV6C3T1R8BRI6RQ53OQA53KL' where id=6; -update noar tt set v0='3ZVVPY03L' where id=6; -update noar ti set v0='3ZVVPY03L' where id=6; -update noar tt set b1='3U21I9JX1' where id=6; -update noar ti set b1='3U21I9JX1' where id=6; -update noar tt set v0='EBGQ1TQH0IKSQ' where id=6; -update noar ti set v0='EBGQ1TQH0IKSQ' where id=6; -update noar tt set b2='H9VFRPMY6SVK1' where id=6; -update noar ti set b2='H9VFRPMY6SVK1' where id=6; -update noar tt set v0='VCILMOZWJFTK2HR0COSI22D' where id=7; -update noar ti set v0='VCILMOZWJFTK2HR0COSI22D' where id=7; -update noar tt set b0='9NICEITIMXDWW' where id=7; -update noar ti set b0='9NICEITIMXDWW' where id=7; -update noar tt set v0='SKSPWIW0YURQ' where id=7; -update noar ti set v0='SKSPWIW0YURQ' where id=7; -update noar tt set b1='KSFAQ02GBN0PVQMTG0ZKQ' where id=7; -update noar ti set b1='KSFAQ02GBN0PVQMTG0ZKQ' where id=7; -update noar tt set v0='0D94643Z' where id=7; -update noar ti set v0='0D94643Z' where id=7; -update noar tt set b2='W5DBZ39VVXMELAN4E6QCXQO692X4AK' where id=7; -update noar ti set b2='W5DBZ39VVXMELAN4E6QCXQO692X4AK' where id=7; -update noar tt set v0='K0FDLAHL7OL2IVVNOF1' where id=8; -update noar ti set v0='K0FDLAHL7OL2IVVNOF1' where id=8; -update noar tt set b0='YCHZSCV1VX' where id=8; -update noar ti set b0='YCHZSCV1VX' where id=8; -update noar tt set v0='0YSZ8KT43EGNNGWDAA27U7Y1WSLSB0N' where id=8; -update noar ti set v0='0YSZ8KT43EGNNGWDAA27U7Y1WSLSB0N' where id=8; -update noar tt set b1='F2QE54GTWGXO1Z' where id=8; -update noar ti set b1='F2QE54GTWGXO1Z' where id=8; -update noar tt set v0='GXIHVOAQV' where id=8; -update noar ti set v0='GXIHVOAQV' where id=8; -update noar tt set b2='KEVRRCVM3QV7OBYF8B9WM8' where id=8; -update noar ti set b2='KEVRRCVM3QV7OBYF8B9WM8' where id=8; -update noar tt set v0='ENBWI3GPZBADJK63SI78GPDP' where id=9; -update noar ti set v0='ENBWI3GPZBADJK63SI78GPDP' where id=9; -update noar tt set b0='0NUCN6IX2ZOZRN9O' where id=9; -update noar ti set b0='0NUCN6IX2ZOZRN9O' where id=9; -update noar tt set v0='WPXVA' where id=9; -update noar ti set v0='WPXVA' where id=9; -update noar tt set b1='KQ7HULNUSLXKL01YIQ73OGDH68A' where id=9; -update noar ti set b1='KQ7HULNUSLXKL01YIQ73OGDH68A' where id=9; -update noar tt set v0='TYRBMZ474ICZJX8' where id=9; -update noar ti set v0='TYRBMZ474ICZJX8' where id=9; -update noar tt set b2='7AS7GK6MJG9VYHMP3KIHINVY' where id=9; -update noar ti set b2='7AS7GK6MJG9VYHMP3KIHINVY' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -v0 varchar(32) null, -b0 blob null, -b1 tinyblob null, -b2 blob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='8OFXQ6L5NC67OWGC6Z8FFOVRPQCT245' where id=1; -update noar ti set v0='8OFXQ6L5NC67OWGC6Z8FFOVRPQCT245' where id=1; -update noar tt set b0='S328ECLT3RRUYQCA0V2C' where id=1; -update noar ti set b0='S328ECLT3RRUYQCA0V2C' where id=1; -update noar tt set v0='WVYCVSCUMN1Z2953YMDTVSC2DBOBECT' where id=1; -update noar ti set v0='WVYCVSCUMN1Z2953YMDTVSC2DBOBECT' where id=1; -update noar tt set b1='TLCRQO8XHS1NAP9FDWPUIM' where id=1; -update noar ti set b1='TLCRQO8XHS1NAP9FDWPUIM' where id=1; -update noar tt set v0='T1' where id=1; -update noar ti set v0='T1' where id=1; -update noar tt set b2='GR7B7K3SORSI4VB6D2IWR8ZFVH7' where id=1; -update noar ti set b2='GR7B7K3SORSI4VB6D2IWR8ZFVH7' where id=1; -update noar tt set v0='4HFC330OC1IAP94BY8N44FZZSH' where id=2; -update noar ti set v0='4HFC330OC1IAP94BY8N44FZZSH' where id=2; -update noar tt set b0='Y09D0PZPSFOCS6CFMZLQ6N' where id=2; -update noar ti set b0='Y09D0PZPSFOCS6CFMZLQ6N' where id=2; -update noar tt set v0='80B8949XG' where id=2; -update noar ti set v0='80B8949XG' where id=2; -update noar tt set b1='XWE' where id=2; -update noar ti set b1='XWE' where id=2; -update noar tt set v0='NGXWD1TIDXE1CSRN00RUDMTBE6G5' where id=2; -update noar ti set v0='NGXWD1TIDXE1CSRN00RUDMTBE6G5' where id=2; -update noar tt set b2='QI1QDB1I' where id=2; -update noar ti set b2='QI1QDB1I' where id=2; -update noar tt set v0='QSK' where id=3; -update noar ti set v0='QSK' where id=3; -update noar tt set b0='H2HZJX2OQRP7L10IUB3L3UBTV8T5AQ' where id=3; -update noar ti set b0='H2HZJX2OQRP7L10IUB3L3UBTV8T5AQ' where id=3; -update noar tt set v0='KAR9FGEBD' where id=3; -update noar ti set v0='KAR9FGEBD' where id=3; -update noar tt set b1='HWU9BZEZTNDPH4QJDQKW7QXDQ3PQ' where id=3; -update noar ti set b1='HWU9BZEZTNDPH4QJDQKW7QXDQ3PQ' where id=3; -update noar tt set v0='H4EYLTNXDQ4ZSWH5ZG31KVH4Z18V' where id=3; -update noar ti set v0='H4EYLTNXDQ4ZSWH5ZG31KVH4Z18V' where id=3; -update noar tt set b2='0CYU2G1JL' where id=3; -update noar ti set b2='0CYU2G1JL' where id=3; -update noar tt set v0='HUZYVET6ZO9KNU' where id=4; -update noar ti set v0='HUZYVET6ZO9KNU' where id=4; -update noar tt set b0='J9ZDF8HZZU9KSH78VQDSMEFRPZ6OCT' where id=4; -update noar ti set b0='J9ZDF8HZZU9KSH78VQDSMEFRPZ6OCT' where id=4; -update noar tt set v0='5KC' where id=4; -update noar ti set v0='5KC' where id=4; -update noar tt set b1='4V190RO84MCKMR3ZZVTOV59VGSFLL7' where id=4; -update noar ti set b1='4V190RO84MCKMR3ZZVTOV59VGSFLL7' where id=4; -update noar tt set v0='1FRGAH492177BPCIXWVKR99' where id=4; -update noar ti set v0='1FRGAH492177BPCIXWVKR99' where id=4; -update noar tt set b2='BL2JW3GI0AD7JNBTCLBBA02APEZY' where id=4; -update noar ti set b2='BL2JW3GI0AD7JNBTCLBBA02APEZY' where id=4; -update noar tt set v0='WQU38IVP1984WA557O3LR' where id=5; -update noar ti set v0='WQU38IVP1984WA557O3LR' where id=5; -update noar tt set b0='1G6KPWXWQZYTD4W21HHQOV8389EGJJKS' where id=5; -update noar ti set b0='1G6KPWXWQZYTD4W21HHQOV8389EGJJKS' where id=5; -update noar tt set v0='FXK8' where id=5; -update noar ti set v0='FXK8' where id=5; -update noar tt set b1='OAO8GUS48RX8HO5Q98RRK12PO25' where id=5; -update noar ti set b1='OAO8GUS48RX8HO5Q98RRK12PO25' where id=5; -update noar tt set v0='FMBTPP' where id=5; -update noar ti set v0='FMBTPP' where id=5; -update noar tt set b2='HQU56AWCMMQ3L' where id=5; -update noar ti set b2='HQU56AWCMMQ3L' where id=5; -update noar tt set v0='50VD4T562NTPR1G' where id=6; -update noar ti set v0='50VD4T562NTPR1G' where id=6; -update noar tt set b0='FX4VA' where id=6; -update noar ti set b0='FX4VA' where id=6; -update noar tt set v0='4UPOCOH7B0MV9H3JH5' where id=6; -update noar ti set v0='4UPOCOH7B0MV9H3JH5' where id=6; -update noar tt set b1='4MO3VI5LCR0JQT' where id=6; -update noar ti set b1='4MO3VI5LCR0JQT' where id=6; -update noar tt set v0='FN5' where id=6; -update noar ti set v0='FN5' where id=6; -update noar tt set b2='E6754' where id=6; -update noar ti set b2='E6754' where id=6; -update noar tt set v0='W5DS44UQUW4BK2TMUVHRMY2OS03PN8' where id=7; -update noar ti set v0='W5DS44UQUW4BK2TMUVHRMY2OS03PN8' where id=7; -update noar tt set b0='CK6TVL' where id=7; -update noar ti set b0='CK6TVL' where id=7; -update noar tt set v0='2NSX4SFM7XTP2Z3X4XIG20VI4HJZX' where id=7; -update noar ti set v0='2NSX4SFM7XTP2Z3X4XIG20VI4HJZX' where id=7; -update noar tt set b1='D6VNG23LZPDFNMN5PSFPJ' where id=7; -update noar ti set b1='D6VNG23LZPDFNMN5PSFPJ' where id=7; -update noar tt set v0='SK08F4' where id=7; -update noar ti set v0='SK08F4' where id=7; -update noar tt set b2='YUMII2Y603QNJZEHZ2' where id=7; -update noar ti set b2='YUMII2Y603QNJZEHZ2' where id=7; -update noar tt set v0='GQS1' where id=8; -update noar ti set v0='GQS1' where id=8; -update noar tt set b0='HX' where id=8; -update noar ti set b0='HX' where id=8; -update noar tt set v0='7L3M4D8I4RI' where id=8; -update noar ti set v0='7L3M4D8I4RI' where id=8; -update noar tt set b1='YRSA' where id=8; -update noar ti set b1='YRSA' where id=8; -update noar tt set v0='EPT2GJ9HLW3FK43GPVQLV1KA9SY29' where id=8; -update noar ti set v0='EPT2GJ9HLW3FK43GPVQLV1KA9SY29' where id=8; -update noar tt set b2='U1E5' where id=8; -update noar ti set b2='U1E5' where id=8; -update noar tt set v0='3JT6YE' where id=9; -update noar ti set v0='3JT6YE' where id=9; -update noar tt set b0='48CS9AA1LPXG' where id=9; -update noar ti set b0='48CS9AA1LPXG' where id=9; -update noar tt set v0='M5' where id=9; -update noar ti set v0='M5' where id=9; -update noar tt set b1='XRI2HS37K3TXCIX9G3QXU5BIQ2' where id=9; -update noar ti set b1='XRI2HS37K3TXCIX9G3QXU5BIQ2' where id=9; -update noar tt set v0='4LC07BPK' where id=9; -update noar ti set v0='4LC07BPK' where id=9; -update noar tt set b2='8CR0' where id=9; -update noar ti set b2='8CR0' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -v0 varchar(256) null, -b0 blob null, -b1 tinyblob null, -b2 blob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='VUQPQDYXZXNTCA3JV0UB3QV69' where id=1; -update noar ti set v0='VUQPQDYXZXNTCA3JV0UB3QV69' where id=1; -update noar tt set b0='APBXLU54RTNOKCA759E8UPZ6VOV1ZL' where id=1; -update noar ti set b0='APBXLU54RTNOKCA759E8UPZ6VOV1ZL' where id=1; -update noar tt set v0='DEQ7ZBUHHIC6T4LY8QPNXAS' where id=1; -update noar ti set v0='DEQ7ZBUHHIC6T4LY8QPNXAS' where id=1; -update noar tt set b1='KL88WWG2MIY515LJFDI8TW2EE0' where id=1; -update noar ti set b1='KL88WWG2MIY515LJFDI8TW2EE0' where id=1; -update noar tt set v0='DPBJF4F987I' where id=1; -update noar ti set v0='DPBJF4F987I' where id=1; -update noar tt set b2='D5ISQ06XRY186VUNHAI0RQ' where id=1; -update noar ti set b2='D5ISQ06XRY186VUNHAI0RQ' where id=1; -update noar tt set v0='75850D7P52SMA799HZ' where id=2; -update noar ti set v0='75850D7P52SMA799HZ' where id=2; -update noar tt set b0='Q992DR0ONYEANG0H1W7T' where id=2; -update noar ti set b0='Q992DR0ONYEANG0H1W7T' where id=2; -update noar tt set v0='0NHDR5HW1KL9AT4' where id=2; -update noar ti set v0='0NHDR5HW1KL9AT4' where id=2; -update noar tt set b1='JN05H798V6OG8I3HHZ18JPCAKDDGBE' where id=2; -update noar ti set b1='JN05H798V6OG8I3HHZ18JPCAKDDGBE' where id=2; -update noar tt set v0='F9Y0' where id=2; -update noar ti set v0='F9Y0' where id=2; -update noar tt set b2='O7JEBE777C03YUGF34KAQ4DRPYZPOLI4' where id=2; -update noar ti set b2='O7JEBE777C03YUGF34KAQ4DRPYZPOLI4' where id=2; -update noar tt set v0='RKGS2C08E6KXF' where id=3; -update noar ti set v0='RKGS2C08E6KXF' where id=3; -update noar tt set b0='G6JJ6B0SI8HKRF' where id=3; -update noar ti set b0='G6JJ6B0SI8HKRF' where id=3; -update noar tt set v0='AHGMKZ1LLNN4PPT74G24' where id=3; -update noar ti set v0='AHGMKZ1LLNN4PPT74G24' where id=3; -update noar tt set b1='ATT9ZP2LZO9KGWPP60LDYBDKZ3A' where id=3; -update noar ti set b1='ATT9ZP2LZO9KGWPP60LDYBDKZ3A' where id=3; -update noar tt set v0='7KYOE' where id=3; -update noar ti set v0='7KYOE' where id=3; -update noar tt set b2='WGRVJ3BA3YITX2R4' where id=3; -update noar ti set b2='WGRVJ3BA3YITX2R4' where id=3; -update noar tt set v0='64T1F5D' where id=4; -update noar ti set v0='64T1F5D' where id=4; -update noar tt set b0='XQGN4LO22R0ESCR0Q20GV6JRRAQG' where id=4; -update noar ti set b0='XQGN4LO22R0ESCR0Q20GV6JRRAQG' where id=4; -update noar tt set v0='351ETRMEMKM' where id=4; -update noar ti set v0='351ETRMEMKM' where id=4; -update noar tt set b1='NOHATEZUVX2' where id=4; -update noar ti set b1='NOHATEZUVX2' where id=4; -update noar tt set v0='YUTNSR98UNZGOAS6LYQBP6VTYA' where id=4; -update noar ti set v0='YUTNSR98UNZGOAS6LYQBP6VTYA' where id=4; -update noar tt set b2='PB7A0O461PKE09FBUX7VLKV5S' where id=4; -update noar ti set b2='PB7A0O461PKE09FBUX7VLKV5S' where id=4; -update noar tt set v0='DQ8JHMJA1Q92UP2RGKK' where id=5; -update noar ti set v0='DQ8JHMJA1Q92UP2RGKK' where id=5; -update noar tt set b0='4M' where id=5; -update noar ti set b0='4M' where id=5; -update noar tt set v0='8Z8Z3DHLV12ZSX3NZ53V4QR1' where id=5; -update noar ti set v0='8Z8Z3DHLV12ZSX3NZ53V4QR1' where id=5; -update noar tt set b1='LH1T9F0TYH1981IBHULVYGV6R' where id=5; -update noar ti set b1='LH1T9F0TYH1981IBHULVYGV6R' where id=5; -update noar tt set v0='0ZMXLNHTH6O5IFQQ2IT2TI6D68JE98N' where id=5; -update noar ti set v0='0ZMXLNHTH6O5IFQQ2IT2TI6D68JE98N' where id=5; -update noar tt set b2='6N9E9VM' where id=5; -update noar ti set b2='6N9E9VM' where id=5; -update noar tt set v0='RGQDJQDQQNSPD54T' where id=6; -update noar ti set v0='RGQDJQDQQNSPD54T' where id=6; -update noar tt set b0='B7H8NSGKTRQFO8TTARPWBZBSZO8FX' where id=6; -update noar ti set b0='B7H8NSGKTRQFO8TTARPWBZBSZO8FX' where id=6; -update noar tt set v0='CVQCEWUR8Q' where id=6; -update noar ti set v0='CVQCEWUR8Q' where id=6; -update noar tt set b1='FBGCMN10QO8UTQ57B' where id=6; -update noar ti set b1='FBGCMN10QO8UTQ57B' where id=6; -update noar tt set v0='0NHRRNP8871XWIUFN6O8' where id=6; -update noar ti set v0='0NHRRNP8871XWIUFN6O8' where id=6; -update noar tt set b2='873A1S6GZTF7DM1AMWL4IO1' where id=6; -update noar ti set b2='873A1S6GZTF7DM1AMWL4IO1' where id=6; -update noar tt set v0='G' where id=7; -update noar ti set v0='G' where id=7; -update noar tt set b0='N1O1VD7TSEO7FBFU0A8BMR' where id=7; -update noar ti set b0='N1O1VD7TSEO7FBFU0A8BMR' where id=7; -update noar tt set v0='K26RTCEEW232CNC1LCF' where id=7; -update noar ti set v0='K26RTCEEW232CNC1LCF' where id=7; -update noar tt set b1='OJ958LZXQBJE' where id=7; -update noar ti set b1='OJ958LZXQBJE' where id=7; -update noar tt set v0='VQENBRAW14TRVTWDRKTCJPDFHF9WR' where id=7; -update noar ti set v0='VQENBRAW14TRVTWDRKTCJPDFHF9WR' where id=7; -update noar tt set b2='XDXFWAMMW1N0EDXUE0BRSZ4A9H' where id=7; -update noar ti set b2='XDXFWAMMW1N0EDXUE0BRSZ4A9H' where id=7; -update noar tt set v0='OHDXG9X1939XN8N58FTY' where id=8; -update noar ti set v0='OHDXG9X1939XN8N58FTY' where id=8; -update noar tt set b0='HERZ4IDVYX1AUISAYM1RY9H' where id=8; -update noar ti set b0='HERZ4IDVYX1AUISAYM1RY9H' where id=8; -update noar tt set v0='GPTY' where id=8; -update noar ti set v0='GPTY' where id=8; -update noar tt set b1='UWKAEB9VVHHPZL19IEJLH8NLB2N' where id=8; -update noar ti set b1='UWKAEB9VVHHPZL19IEJLH8NLB2N' where id=8; -update noar tt set v0='MN43PPLPU4L1DW0XDD57PCZGCD5' where id=8; -update noar ti set v0='MN43PPLPU4L1DW0XDD57PCZGCD5' where id=8; -update noar tt set b2='71CF20NDNO6' where id=8; -update noar ti set b2='71CF20NDNO6' where id=8; -update noar tt set v0='AAREJYJ9MHK2SZHPOJVU441RTJSVS' where id=9; -update noar ti set v0='AAREJYJ9MHK2SZHPOJVU441RTJSVS' where id=9; -update noar tt set b0='7F02' where id=9; -update noar ti set b0='7F02' where id=9; -update noar tt set v0='R793TUXUT3LYE6K4IT2' where id=9; -update noar ti set v0='R793TUXUT3LYE6K4IT2' where id=9; -update noar tt set b1='Q6SHP1' where id=9; -update noar ti set b1='Q6SHP1' where id=9; -update noar tt set v0='83GNXN' where id=9; -update noar ti set v0='83GNXN' where id=9; -update noar tt set b2='PTP1DRZJNC8WDHHV' where id=9; -update noar ti set b2='PTP1DRZJNC8WDHHV' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -v0 varchar(32) not null, -b0 blob not null, -b1 tinyblob not null, -b2 blob not null -) engine=tokudb; -insert into tt values (1,'','','',''); -insert into tt values (2,'','','',''); -insert into tt values (3,'','','',''); -insert into tt values (4,'','','',''); -insert into tt values (5,'','','',''); -insert into tt values (6,'','','',''); -insert into tt values (7,'','','',''); -insert into tt values (8,'','','',''); -insert into tt values (9,'','','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='XU3QDNUUUED' where id=1; -update noar ti set v0='XU3QDNUUUED' where id=1; -update noar tt set b0='R73YA41CB6Q3NWOD8VO6S41J0HOADE' where id=1; -update noar ti set b0='R73YA41CB6Q3NWOD8VO6S41J0HOADE' where id=1; -update noar tt set v0='6EGUYIRRDCY' where id=1; -update noar ti set v0='6EGUYIRRDCY' where id=1; -update noar tt set b1='W4KU6SKBEYCGS9B79QJA0NCMFC3J0R' where id=1; -update noar ti set b1='W4KU6SKBEYCGS9B79QJA0NCMFC3J0R' where id=1; -update noar tt set v0='5350D8R3HRWZVKXMPJASPZ0K2EMD' where id=1; -update noar ti set v0='5350D8R3HRWZVKXMPJASPZ0K2EMD' where id=1; -update noar tt set b2='QUJCA01C2SQPDX' where id=1; -update noar ti set b2='QUJCA01C2SQPDX' where id=1; -update noar tt set v0='A82OPJ5V' where id=2; -update noar ti set v0='A82OPJ5V' where id=2; -update noar tt set b0='XIC2HT6THN' where id=2; -update noar ti set b0='XIC2HT6THN' where id=2; -update noar tt set v0='7O4EN4FU5RZ8YWT1ME7S5945RVIRN6' where id=2; -update noar ti set v0='7O4EN4FU5RZ8YWT1ME7S5945RVIRN6' where id=2; -update noar tt set b1='EVFJ1I80W2JDCBJBSBU90AUDNYOMO8' where id=2; -update noar ti set b1='EVFJ1I80W2JDCBJBSBU90AUDNYOMO8' where id=2; -update noar tt set v0='YST3X32WY2' where id=2; -update noar ti set v0='YST3X32WY2' where id=2; -update noar tt set b2='21ZSBY2DSKWOBE769' where id=2; -update noar ti set b2='21ZSBY2DSKWOBE769' where id=2; -update noar tt set v0='Z01M18FDI9H7PSPC4J02SEU2' where id=3; -update noar ti set v0='Z01M18FDI9H7PSPC4J02SEU2' where id=3; -update noar tt set b0='AJ' where id=3; -update noar ti set b0='AJ' where id=3; -update noar tt set v0='P1BTN3GPCLHVJQTGF01FBMA7' where id=3; -update noar ti set v0='P1BTN3GPCLHVJQTGF01FBMA7' where id=3; -update noar tt set b1='WC' where id=3; -update noar ti set b1='WC' where id=3; -update noar tt set v0='KZSJK1SP32NJS92AQ6XDYUI98X' where id=3; -update noar ti set v0='KZSJK1SP32NJS92AQ6XDYUI98X' where id=3; -update noar tt set b2='MSCU2' where id=3; -update noar ti set b2='MSCU2' where id=3; -update noar tt set v0='53W36QISMKU30PH47X0WOS91ZQ4' where id=4; -update noar ti set v0='53W36QISMKU30PH47X0WOS91ZQ4' where id=4; -update noar tt set b0='ICK01X4ZUCAWWND0Q9' where id=4; -update noar ti set b0='ICK01X4ZUCAWWND0Q9' where id=4; -update noar tt set v0='BBB7CY7USQ2LPT' where id=4; -update noar ti set v0='BBB7CY7USQ2LPT' where id=4; -update noar tt set b1='ZF08YH17VUV2' where id=4; -update noar ti set b1='ZF08YH17VUV2' where id=4; -update noar tt set v0='XKR42V' where id=4; -update noar ti set v0='XKR42V' where id=4; -update noar tt set b2='L9IH6' where id=4; -update noar ti set b2='L9IH6' where id=4; -update noar tt set v0='JW2YNWMTYIZATD4NT3SNWA' where id=5; -update noar ti set v0='JW2YNWMTYIZATD4NT3SNWA' where id=5; -update noar tt set b0='7LSOLBM4WI0430159H9JNNUY6UEK835' where id=5; -update noar ti set b0='7LSOLBM4WI0430159H9JNNUY6UEK835' where id=5; -update noar tt set v0='EEAQ9T7XGQGVOY5BJA51' where id=5; -update noar ti set v0='EEAQ9T7XGQGVOY5BJA51' where id=5; -update noar tt set b1='NFIU62OLJ8' where id=5; -update noar ti set b1='NFIU62OLJ8' where id=5; -update noar tt set v0='PW7ICJ9WMEFTB' where id=5; -update noar ti set v0='PW7ICJ9WMEFTB' where id=5; -update noar tt set b2='SG' where id=5; -update noar ti set b2='SG' where id=5; -update noar tt set v0='0PIHZIB3NA2' where id=6; -update noar ti set v0='0PIHZIB3NA2' where id=6; -update noar tt set b0='K2UAETCYF1ZRIUPZWVQ32PNJI' where id=6; -update noar ti set b0='K2UAETCYF1ZRIUPZWVQ32PNJI' where id=6; -update noar tt set v0='BZN443Y8DYHEXBAF2CSRMQWA7NKSXP5I' where id=6; -update noar ti set v0='BZN443Y8DYHEXBAF2CSRMQWA7NKSXP5I' where id=6; -update noar tt set b1='P29U6MKFISL0V85A' where id=6; -update noar ti set b1='P29U6MKFISL0V85A' where id=6; -update noar tt set v0='SSN71F3DAI43QO9K0KWI7ATM4J6' where id=6; -update noar ti set v0='SSN71F3DAI43QO9K0KWI7ATM4J6' where id=6; -update noar tt set b2='ZPTXO' where id=6; -update noar ti set b2='ZPTXO' where id=6; -update noar tt set v0='O6EU2NH9XCIQ20QL3Q0Y202MGFT4YP' where id=7; -update noar ti set v0='O6EU2NH9XCIQ20QL3Q0Y202MGFT4YP' where id=7; -update noar tt set b0='QA366PO6IU82995G00G8D2FX2' where id=7; -update noar ti set b0='QA366PO6IU82995G00G8D2FX2' where id=7; -update noar tt set v0='JMWC9IKLD2AXMNG46HWMJRRK8Y65' where id=7; -update noar ti set v0='JMWC9IKLD2AXMNG46HWMJRRK8Y65' where id=7; -update noar tt set b1='T587BFDUBC6733FBGOG14V' where id=7; -update noar ti set b1='T587BFDUBC6733FBGOG14V' where id=7; -update noar tt set v0='QYK' where id=7; -update noar ti set v0='QYK' where id=7; -update noar tt set b2='U2XOEI4UXQWVPBKMUP82QNZWJLWTN' where id=7; -update noar ti set b2='U2XOEI4UXQWVPBKMUP82QNZWJLWTN' where id=7; -update noar tt set v0='OAUT3IRL' where id=8; -update noar ti set v0='OAUT3IRL' where id=8; -update noar tt set b0='IGDJMCOAV6P1D6JPRLGIHZQ5HIN' where id=8; -update noar ti set b0='IGDJMCOAV6P1D6JPRLGIHZQ5HIN' where id=8; -update noar tt set v0='GERZLX365' where id=8; -update noar ti set v0='GERZLX365' where id=8; -update noar tt set b1='91J5U2MFCRY5A20RSK9' where id=8; -update noar ti set b1='91J5U2MFCRY5A20RSK9' where id=8; -update noar tt set v0='FD6O2TEKP3FB' where id=8; -update noar ti set v0='FD6O2TEKP3FB' where id=8; -update noar tt set b2='UHQK78WYR0FNFGN16IG05DGHMIJ7IQ' where id=8; -update noar ti set b2='UHQK78WYR0FNFGN16IG05DGHMIJ7IQ' where id=8; -update noar tt set v0='U5EXFWMFLW6YQU8SJZ' where id=9; -update noar ti set v0='U5EXFWMFLW6YQU8SJZ' where id=9; -update noar tt set b0='7X8L3B58A7DFNOLF2BTTCCMGHYLFXA' where id=9; -update noar ti set b0='7X8L3B58A7DFNOLF2BTTCCMGHYLFXA' where id=9; -update noar tt set v0='OIH4JC' where id=9; -update noar ti set v0='OIH4JC' where id=9; -update noar tt set b1='X5TK2Z5Q3WPV7B' where id=9; -update noar ti set b1='X5TK2Z5Q3WPV7B' where id=9; -update noar tt set v0='O32I0SKW7G8HJ89FSM9W' where id=9; -update noar ti set v0='O32I0SKW7G8HJ89FSM9W' where id=9; -update noar tt set b2='Q' where id=9; -update noar ti set b2='Q' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -v0 varchar(256) not null, -b0 blob not null, -b1 tinyblob not null, -b2 blob not null -) engine=tokudb; -insert into tt values (1,'','','',''); -insert into tt values (2,'','','',''); -insert into tt values (3,'','','',''); -insert into tt values (4,'','','',''); -insert into tt values (5,'','','',''); -insert into tt values (6,'','','',''); -insert into tt values (7,'','','',''); -insert into tt values (8,'','','',''); -insert into tt values (9,'','','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='A' where id=1; -update noar ti set v0='A' where id=1; -update noar tt set b0='V' where id=1; -update noar ti set b0='V' where id=1; -update noar tt set v0='NDHFNZVNZER0' where id=1; -update noar ti set v0='NDHFNZVNZER0' where id=1; -update noar tt set b1='XOF1T71SN19LPLUUMR8T0V' where id=1; -update noar ti set b1='XOF1T71SN19LPLUUMR8T0V' where id=1; -update noar tt set v0='XGDTM4ULG' where id=1; -update noar ti set v0='XGDTM4ULG' where id=1; -update noar tt set b2='BVPJMZ79OE0VLR0POPJF2COL' where id=1; -update noar ti set b2='BVPJMZ79OE0VLR0POPJF2COL' where id=1; -update noar tt set v0='TDQCD51C6LS50PCSS19' where id=2; -update noar ti set v0='TDQCD51C6LS50PCSS19' where id=2; -update noar tt set b0='2JLOMEVP50CSX5P' where id=2; -update noar ti set b0='2JLOMEVP50CSX5P' where id=2; -update noar tt set v0='W92IZ6W4ZX03GU7HB' where id=2; -update noar ti set v0='W92IZ6W4ZX03GU7HB' where id=2; -update noar tt set b1='NZOFN0P3ANMC9CCNGXYDAMGZIRQ6E' where id=2; -update noar ti set b1='NZOFN0P3ANMC9CCNGXYDAMGZIRQ6E' where id=2; -update noar tt set v0='QK71N118' where id=2; -update noar ti set v0='QK71N118' where id=2; -update noar tt set b2='9218G' where id=2; -update noar ti set b2='9218G' where id=2; -update noar tt set v0='2X' where id=3; -update noar ti set v0='2X' where id=3; -update noar tt set b0='EFN3UHPG090PAMQD5' where id=3; -update noar ti set b0='EFN3UHPG090PAMQD5' where id=3; -update noar tt set v0='U8G0BWY9N83YVKBSHPFRETDNZH9W' where id=3; -update noar ti set v0='U8G0BWY9N83YVKBSHPFRETDNZH9W' where id=3; -update noar tt set b1='U2XEAPDE54CJZCLJL' where id=3; -update noar ti set b1='U2XEAPDE54CJZCLJL' where id=3; -update noar tt set v0='NC4SXFI7MI83I2LTAZ5XZ32VG545V' where id=3; -update noar ti set v0='NC4SXFI7MI83I2LTAZ5XZ32VG545V' where id=3; -update noar tt set b2='JK' where id=3; -update noar ti set b2='JK' where id=3; -update noar tt set v0='RSWUAHUL6' where id=4; -update noar ti set v0='RSWUAHUL6' where id=4; -update noar tt set b0='GRQKU46EDTIGMF' where id=4; -update noar ti set b0='GRQKU46EDTIGMF' where id=4; -update noar tt set v0='BT' where id=4; -update noar ti set v0='BT' where id=4; -update noar tt set b1='X71JQGKDDFX3489U9T7B' where id=4; -update noar ti set b1='X71JQGKDDFX3489U9T7B' where id=4; -update noar tt set v0='57E93K20CL0OC9F1LQI986I' where id=4; -update noar ti set v0='57E93K20CL0OC9F1LQI986I' where id=4; -update noar tt set b2='QF2YZSKIT5YQYRPZ7AAEQGT5T5K2' where id=4; -update noar ti set b2='QF2YZSKIT5YQYRPZ7AAEQGT5T5K2' where id=4; -update noar tt set v0='932WM7HPL6Y2W0DEFD1B' where id=5; -update noar ti set v0='932WM7HPL6Y2W0DEFD1B' where id=5; -update noar tt set b0='3OO66UPVGB3GCD0' where id=5; -update noar ti set b0='3OO66UPVGB3GCD0' where id=5; -update noar tt set v0='82GEP0KY' where id=5; -update noar ti set v0='82GEP0KY' where id=5; -update noar tt set b1='XCZ91DUJ1SATYGR' where id=5; -update noar ti set b1='XCZ91DUJ1SATYGR' where id=5; -update noar tt set v0='J2CZMCT9SRK00YTGWB5P80X' where id=5; -update noar ti set v0='J2CZMCT9SRK00YTGWB5P80X' where id=5; -update noar tt set b2='F8' where id=5; -update noar ti set b2='F8' where id=5; -update noar tt set v0='79TZSK6QXT5QR9F9HN5FRJF1KK8FZY' where id=6; -update noar ti set v0='79TZSK6QXT5QR9F9HN5FRJF1KK8FZY' where id=6; -update noar tt set b0='HMLMF01XNW' where id=6; -update noar ti set b0='HMLMF01XNW' where id=6; -update noar tt set v0='1MKBV34P1BZHNYC20IAISEAZISU' where id=6; -update noar ti set v0='1MKBV34P1BZHNYC20IAISEAZISU' where id=6; -update noar tt set b1='V6Y1597M85UVADSRV' where id=6; -update noar ti set b1='V6Y1597M85UVADSRV' where id=6; -update noar tt set v0='01VB5IWSED' where id=6; -update noar ti set v0='01VB5IWSED' where id=6; -update noar tt set b2='N2WIMKTUKTN96Y' where id=6; -update noar ti set b2='N2WIMKTUKTN96Y' where id=6; -update noar tt set v0='XSFVFOXMR0VTGRXDFSB86CA9HXJTIY7G' where id=7; -update noar ti set v0='XSFVFOXMR0VTGRXDFSB86CA9HXJTIY7G' where id=7; -update noar tt set b0='TLT3' where id=7; -update noar ti set b0='TLT3' where id=7; -update noar tt set v0='96XRMMICUZOBMTW' where id=7; -update noar ti set v0='96XRMMICUZOBMTW' where id=7; -update noar tt set b1='LATU82IPCM65NU120CYY4EJTE2NEGF7L' where id=7; -update noar ti set b1='LATU82IPCM65NU120CYY4EJTE2NEGF7L' where id=7; -update noar tt set v0='HK' where id=7; -update noar ti set v0='HK' where id=7; -update noar tt set b2='F3VYTPKOVD' where id=7; -update noar ti set b2='F3VYTPKOVD' where id=7; -update noar tt set v0='KJBME3Y' where id=8; -update noar ti set v0='KJBME3Y' where id=8; -update noar tt set b0='9X3KW0PCRE545LOCATN70FKIZF' where id=8; -update noar ti set b0='9X3KW0PCRE545LOCATN70FKIZF' where id=8; -update noar tt set v0='2JS7M6NW4A' where id=8; -update noar ti set v0='2JS7M6NW4A' where id=8; -update noar tt set b1='ZEO1PV008CN91AIDPTYJHIY18X961L0' where id=8; -update noar ti set b1='ZEO1PV008CN91AIDPTYJHIY18X961L0' where id=8; -update noar tt set v0='B' where id=8; -update noar ti set v0='B' where id=8; -update noar tt set b2='8HQEAXOZ1A80P0G7A9SP5MQAUZT2KXI' where id=8; -update noar ti set b2='8HQEAXOZ1A80P0G7A9SP5MQAUZT2KXI' where id=8; -update noar tt set v0='TB71OWDBCDPM8021R' where id=9; -update noar ti set v0='TB71OWDBCDPM8021R' where id=9; -update noar tt set b0='9W71QX99B' where id=9; -update noar ti set b0='9W71QX99B' where id=9; -update noar tt set v0='NORAZPZ6K8L5RBX4L0ZELX8' where id=9; -update noar ti set v0='NORAZPZ6K8L5RBX4L0ZELX8' where id=9; -update noar tt set b1='V8ULB' where id=9; -update noar ti set b1='V8ULB' where id=9; -update noar tt set v0='YH' where id=9; -update noar ti set v0='YH' where id=9; -update noar tt set b2='33XO87DZ48YNP1FGU0B9N06' where id=9; -update noar ti set b2='33XO87DZ48YNP1FGU0B9N06' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -v0 varchar(32) null, -b0 blob null, -b1 tinyblob null, -b2 mediumblob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='LIO' where id=1; -update noar ti set v0='LIO' where id=1; -update noar tt set b0='Y3G6XG4' where id=1; -update noar ti set b0='Y3G6XG4' where id=1; -update noar tt set v0='F1TTLJHRNTKD11T0X' where id=1; -update noar ti set v0='F1TTLJHRNTKD11T0X' where id=1; -update noar tt set b1='BQUA0FE5BZH9ID18986P' where id=1; -update noar ti set b1='BQUA0FE5BZH9ID18986P' where id=1; -update noar tt set v0='UNNX6JFFSSHUMN' where id=1; -update noar ti set v0='UNNX6JFFSSHUMN' where id=1; -update noar tt set b2='P' where id=1; -update noar ti set b2='P' where id=1; -update noar tt set v0='DDU4IIUFEABM7KXK2O7THELM' where id=2; -update noar ti set v0='DDU4IIUFEABM7KXK2O7THELM' where id=2; -update noar tt set b0='RTSYOKZYRMV' where id=2; -update noar ti set b0='RTSYOKZYRMV' where id=2; -update noar tt set v0='05I0' where id=2; -update noar ti set v0='05I0' where id=2; -update noar tt set b1='N9J0WU24H943KVVVX' where id=2; -update noar ti set b1='N9J0WU24H943KVVVX' where id=2; -update noar tt set v0='DJU70IQUL6D3K' where id=2; -update noar ti set v0='DJU70IQUL6D3K' where id=2; -update noar tt set b2='BHRWFKXZXV6I7F2BIVQ2M0JW1NX' where id=2; -update noar ti set b2='BHRWFKXZXV6I7F2BIVQ2M0JW1NX' where id=2; -update noar tt set v0='7FUQOVDRP8Q2N5RWI3J9M' where id=3; -update noar ti set v0='7FUQOVDRP8Q2N5RWI3J9M' where id=3; -update noar tt set b0='J8E157H7I00UPVKWCDDXC9O6F96P8D' where id=3; -update noar ti set b0='J8E157H7I00UPVKWCDDXC9O6F96P8D' where id=3; -update noar tt set v0='OMFW2X6OPA63M2MDH0' where id=3; -update noar ti set v0='OMFW2X6OPA63M2MDH0' where id=3; -update noar tt set b1='DYCORSVKDBSIODO' where id=3; -update noar ti set b1='DYCORSVKDBSIODO' where id=3; -update noar tt set v0='00I4XWBVVX3XQ93UAIZ9DXR6YB' where id=3; -update noar ti set v0='00I4XWBVVX3XQ93UAIZ9DXR6YB' where id=3; -update noar tt set b2='YLKWWFI0LSXIRPY' where id=3; -update noar ti set b2='YLKWWFI0LSXIRPY' where id=3; -update noar tt set v0='S4AD6GZOPINU' where id=4; -update noar ti set v0='S4AD6GZOPINU' where id=4; -update noar tt set b0='HKWF6Q5' where id=4; -update noar ti set b0='HKWF6Q5' where id=4; -update noar tt set v0='MN4MZABRRR' where id=4; -update noar ti set v0='MN4MZABRRR' where id=4; -update noar tt set b1='JBG3CX7QIJPG8E4WKOP' where id=4; -update noar ti set b1='JBG3CX7QIJPG8E4WKOP' where id=4; -update noar tt set v0='XV0D7BVKE5PN60PI' where id=4; -update noar ti set v0='XV0D7BVKE5PN60PI' where id=4; -update noar tt set b2='LU' where id=4; -update noar ti set b2='LU' where id=4; -update noar tt set v0='QTRCD6W428RS51AGQDDGK' where id=5; -update noar ti set v0='QTRCD6W428RS51AGQDDGK' where id=5; -update noar tt set b0='9RGU7ICDRQ2BPIGU8' where id=5; -update noar ti set b0='9RGU7ICDRQ2BPIGU8' where id=5; -update noar tt set v0='5CDTGIYK' where id=5; -update noar ti set v0='5CDTGIYK' where id=5; -update noar tt set b1='5DVYO1HEEX3B54I295752L7SG1QO' where id=5; -update noar ti set b1='5DVYO1HEEX3B54I295752L7SG1QO' where id=5; -update noar tt set v0='D4' where id=5; -update noar ti set v0='D4' where id=5; -update noar tt set b2='15D3YAD6XZ' where id=5; -update noar ti set b2='15D3YAD6XZ' where id=5; -update noar tt set v0='1AM2CE6P2QXNZH4KYJM' where id=6; -update noar ti set v0='1AM2CE6P2QXNZH4KYJM' where id=6; -update noar tt set b0='ECB6UMTQGFI97J2OXIE1TVLVYH' where id=6; -update noar ti set b0='ECB6UMTQGFI97J2OXIE1TVLVYH' where id=6; -update noar tt set v0='N7LF7GMG3VBGB0ECODQZGHQU3J3MF9G' where id=6; -update noar ti set v0='N7LF7GMG3VBGB0ECODQZGHQU3J3MF9G' where id=6; -update noar tt set b1='MR74EBF' where id=6; -update noar ti set b1='MR74EBF' where id=6; -update noar tt set v0='IFAJQOVRP3UB0MN65BFZTKI00I1CQ' where id=6; -update noar ti set v0='IFAJQOVRP3UB0MN65BFZTKI00I1CQ' where id=6; -update noar tt set b2='4I5O1UF4P' where id=6; -update noar ti set b2='4I5O1UF4P' where id=6; -update noar tt set v0='JH2BE3I4EJ8038XQKYYUHXKRRZ6' where id=7; -update noar ti set v0='JH2BE3I4EJ8038XQKYYUHXKRRZ6' where id=7; -update noar tt set b0='WVRKN6KQI81P' where id=7; -update noar ti set b0='WVRKN6KQI81P' where id=7; -update noar tt set v0='9YCQ5SM8UGLDKJT109L' where id=7; -update noar ti set v0='9YCQ5SM8UGLDKJT109L' where id=7; -update noar tt set b1='6JU7I4A0CL' where id=7; -update noar ti set b1='6JU7I4A0CL' where id=7; -update noar tt set v0='JKGCOF73Z91ZW7TKRAE' where id=7; -update noar ti set v0='JKGCOF73Z91ZW7TKRAE' where id=7; -update noar tt set b2='U38TDJVLX2VBFCDH80DW' where id=7; -update noar ti set b2='U38TDJVLX2VBFCDH80DW' where id=7; -update noar tt set v0='65KD4FMW1IZUAPJ5O4Y1HUZRQC' where id=8; -update noar ti set v0='65KD4FMW1IZUAPJ5O4Y1HUZRQC' where id=8; -update noar tt set b0='C8V604PVVWW98W50X7R' where id=8; -update noar ti set b0='C8V604PVVWW98W50X7R' where id=8; -update noar tt set v0='Q8A1HTG' where id=8; -update noar ti set v0='Q8A1HTG' where id=8; -update noar tt set b1='8J0PJKK2' where id=8; -update noar ti set b1='8J0PJKK2' where id=8; -update noar tt set v0='83TXLAE0BLSTDEMYA7NI' where id=8; -update noar ti set v0='83TXLAE0BLSTDEMYA7NI' where id=8; -update noar tt set b2='3YOQ' where id=8; -update noar ti set b2='3YOQ' where id=8; -update noar tt set v0='3UBHD4NN1UOAXGBLEID' where id=9; -update noar ti set v0='3UBHD4NN1UOAXGBLEID' where id=9; -update noar tt set b0='34E5ENE2UY9TG0L4BL18O5' where id=9; -update noar ti set b0='34E5ENE2UY9TG0L4BL18O5' where id=9; -update noar tt set v0='PY80H4WWA' where id=9; -update noar ti set v0='PY80H4WWA' where id=9; -update noar tt set b1='WNEKC3QIXU2AR8HAD4KDQYSTU' where id=9; -update noar ti set b1='WNEKC3QIXU2AR8HAD4KDQYSTU' where id=9; -update noar tt set v0='7YBMM6TTD0PU087URN' where id=9; -update noar ti set v0='7YBMM6TTD0PU087URN' where id=9; -update noar tt set b2='W932B20IVW48' where id=9; -update noar ti set b2='W932B20IVW48' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -v0 varchar(256) null, -b0 blob null, -b1 tinyblob null, -b2 mediumblob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='66P36' where id=1; -update noar ti set v0='66P36' where id=1; -update noar tt set b0='MCD37D1R1KER146C' where id=1; -update noar ti set b0='MCD37D1R1KER146C' where id=1; -update noar tt set v0='I1ISD5FF2SRZD6DU8TE72' where id=1; -update noar ti set v0='I1ISD5FF2SRZD6DU8TE72' where id=1; -update noar tt set b1='FOKH5RXCGIDV5' where id=1; -update noar ti set b1='FOKH5RXCGIDV5' where id=1; -update noar tt set v0='JR2Z4Z1YY5NK7G83OCS2BAL37LAJ5TY' where id=1; -update noar ti set v0='JR2Z4Z1YY5NK7G83OCS2BAL37LAJ5TY' where id=1; -update noar tt set b2='8L971501K5EMR3N9N2' where id=1; -update noar ti set b2='8L971501K5EMR3N9N2' where id=1; -update noar tt set v0='DISLIWXU9O2NU5UKD8NF0OIKTNOCN3YF' where id=2; -update noar ti set v0='DISLIWXU9O2NU5UKD8NF0OIKTNOCN3YF' where id=2; -update noar tt set b0='GH' where id=2; -update noar ti set b0='GH' where id=2; -update noar tt set v0='I573FM2MUXCQDSQ6QVCRO1OW2B6BKOT' where id=2; -update noar ti set v0='I573FM2MUXCQDSQ6QVCRO1OW2B6BKOT' where id=2; -update noar tt set b1='883WS4IM7LG1ORUSVV4ATO4CQY71AS' where id=2; -update noar ti set b1='883WS4IM7LG1ORUSVV4ATO4CQY71AS' where id=2; -update noar tt set v0='9BLVXWR70TQ77GBR3357PPS' where id=2; -update noar ti set v0='9BLVXWR70TQ77GBR3357PPS' where id=2; -update noar tt set b2='KAK2QFV8AC9JMZ' where id=2; -update noar ti set b2='KAK2QFV8AC9JMZ' where id=2; -update noar tt set v0='0JAJ10RDO3E' where id=3; -update noar ti set v0='0JAJ10RDO3E' where id=3; -update noar tt set b0='9E6SCXIE51YLGRTB6885W' where id=3; -update noar ti set b0='9E6SCXIE51YLGRTB6885W' where id=3; -update noar tt set v0='XD7' where id=3; -update noar ti set v0='XD7' where id=3; -update noar tt set b1='S1Y2CUR7KXKEC60B' where id=3; -update noar ti set b1='S1Y2CUR7KXKEC60B' where id=3; -update noar tt set v0='KVH56ZNR' where id=3; -update noar ti set v0='KVH56ZNR' where id=3; -update noar tt set b2='L71GF9OKU' where id=3; -update noar ti set b2='L71GF9OKU' where id=3; -update noar tt set v0='8CHNTTOU24ZSWWVCY1A4ADB6ST4QBRX' where id=4; -update noar ti set v0='8CHNTTOU24ZSWWVCY1A4ADB6ST4QBRX' where id=4; -update noar tt set b0='HXAM9OKSZ690M7NTC162' where id=4; -update noar ti set b0='HXAM9OKSZ690M7NTC162' where id=4; -update noar tt set v0='NEJHHDD' where id=4; -update noar ti set v0='NEJHHDD' where id=4; -update noar tt set b1='A568QPAT4XAYNCHP5W7' where id=4; -update noar ti set b1='A568QPAT4XAYNCHP5W7' where id=4; -update noar tt set v0='1FV1' where id=4; -update noar ti set v0='1FV1' where id=4; -update noar tt set b2='L8B6XD4ZBI8YW47WN' where id=4; -update noar ti set b2='L8B6XD4ZBI8YW47WN' where id=4; -update noar tt set v0='KNWS76FFVLNES5QW0FXGCRGZ7G4' where id=5; -update noar ti set v0='KNWS76FFVLNES5QW0FXGCRGZ7G4' where id=5; -update noar tt set b0='YODXM2TJPBSKRA42DJ0N03' where id=5; -update noar ti set b0='YODXM2TJPBSKRA42DJ0N03' where id=5; -update noar tt set v0='SMNSDK41XML66DA4ZVP2R' where id=5; -update noar ti set v0='SMNSDK41XML66DA4ZVP2R' where id=5; -update noar tt set b1='3O8MPVDHCE9RQ7LND2BLJQ2' where id=5; -update noar ti set b1='3O8MPVDHCE9RQ7LND2BLJQ2' where id=5; -update noar tt set v0='JPNFEYTXVCK8SEKUNOBDRQLYZNOZW5PJ' where id=5; -update noar ti set v0='JPNFEYTXVCK8SEKUNOBDRQLYZNOZW5PJ' where id=5; -update noar tt set b2='7TPAJV1I56NEUEEMUCY' where id=5; -update noar ti set b2='7TPAJV1I56NEUEEMUCY' where id=5; -update noar tt set v0='XIM' where id=6; -update noar ti set v0='XIM' where id=6; -update noar tt set b0='6PQ3OFLL3NQE3F1Y' where id=6; -update noar ti set b0='6PQ3OFLL3NQE3F1Y' where id=6; -update noar tt set v0='10ZGXC9H13O30CX' where id=6; -update noar ti set v0='10ZGXC9H13O30CX' where id=6; -update noar tt set b1='76GNA8DZML' where id=6; -update noar ti set b1='76GNA8DZML' where id=6; -update noar tt set v0='O8THJC8LA2ZLU3FSFXU0T8FRBMQ75C1' where id=6; -update noar ti set v0='O8THJC8LA2ZLU3FSFXU0T8FRBMQ75C1' where id=6; -update noar tt set b2='MNWHHPLF0V3W4' where id=6; -update noar ti set b2='MNWHHPLF0V3W4' where id=6; -update noar tt set v0='2NHJWSU' where id=7; -update noar ti set v0='2NHJWSU' where id=7; -update noar tt set b0='CMLY7L9B01Y1PLEA07BBCFVQ0' where id=7; -update noar ti set b0='CMLY7L9B01Y1PLEA07BBCFVQ0' where id=7; -update noar tt set v0='0MWVFT8GACPKZ2ULEACPM' where id=7; -update noar ti set v0='0MWVFT8GACPKZ2ULEACPM' where id=7; -update noar tt set b1='X72JXX5TYVRB4VQUO28S7Z3RUK3T' where id=7; -update noar ti set b1='X72JXX5TYVRB4VQUO28S7Z3RUK3T' where id=7; -update noar tt set v0='MMB7WITNIC' where id=7; -update noar ti set v0='MMB7WITNIC' where id=7; -update noar tt set b2='ELP5PQ38R336W' where id=7; -update noar ti set b2='ELP5PQ38R336W' where id=7; -update noar tt set v0='4IJA' where id=8; -update noar ti set v0='4IJA' where id=8; -update noar tt set b0='A34SH83OUHG3PTEZPCLIHGV0I4F9MXU' where id=8; -update noar ti set b0='A34SH83OUHG3PTEZPCLIHGV0I4F9MXU' where id=8; -update noar tt set v0='9Q2IWCJFJ5PGMQ5DOA9NEJWZBX4' where id=8; -update noar ti set v0='9Q2IWCJFJ5PGMQ5DOA9NEJWZBX4' where id=8; -update noar tt set b1='GLZFTYYCMUI' where id=8; -update noar ti set b1='GLZFTYYCMUI' where id=8; -update noar tt set v0='VHW' where id=8; -update noar ti set v0='VHW' where id=8; -update noar tt set b2='205J91153H2NOGTNW' where id=8; -update noar ti set b2='205J91153H2NOGTNW' where id=8; -update noar tt set v0='XCN' where id=9; -update noar ti set v0='XCN' where id=9; -update noar tt set b0='N36OMXEDRSW' where id=9; -update noar ti set b0='N36OMXEDRSW' where id=9; -update noar tt set v0='P8MQYP05GOWEDGV8AP09ROAHWX' where id=9; -update noar ti set v0='P8MQYP05GOWEDGV8AP09ROAHWX' where id=9; -update noar tt set b1='ODBZE0PZXQF' where id=9; -update noar ti set b1='ODBZE0PZXQF' where id=9; -update noar tt set v0='ZB2EHYQ7ISRFNGJZUUYBNRN1SS7CT0L' where id=9; -update noar ti set v0='ZB2EHYQ7ISRFNGJZUUYBNRN1SS7CT0L' where id=9; -update noar tt set b2='H559PD' where id=9; -update noar ti set b2='H559PD' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -v0 varchar(32) not null, -b0 blob not null, -b1 tinyblob not null, -b2 mediumblob not null -) engine=tokudb; -insert into tt values (1,'','','',''); -insert into tt values (2,'','','',''); -insert into tt values (3,'','','',''); -insert into tt values (4,'','','',''); -insert into tt values (5,'','','',''); -insert into tt values (6,'','','',''); -insert into tt values (7,'','','',''); -insert into tt values (8,'','','',''); -insert into tt values (9,'','','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='WR7DJFSN5UGF203' where id=1; -update noar ti set v0='WR7DJFSN5UGF203' where id=1; -update noar tt set b0='EV' where id=1; -update noar ti set b0='EV' where id=1; -update noar tt set v0='1VUUO1B6L357Z' where id=1; -update noar ti set v0='1VUUO1B6L357Z' where id=1; -update noar tt set b1='22G3VQTOGKVMEE753PIYJ7DY' where id=1; -update noar ti set b1='22G3VQTOGKVMEE753PIYJ7DY' where id=1; -update noar tt set v0='QCDDPRM3' where id=1; -update noar ti set v0='QCDDPRM3' where id=1; -update noar tt set b2='RK57SA2IS9ROA7EYOO4' where id=1; -update noar ti set b2='RK57SA2IS9ROA7EYOO4' where id=1; -update noar tt set v0='H3AEEE8CSC' where id=2; -update noar ti set v0='H3AEEE8CSC' where id=2; -update noar tt set b0='XLVMMDCHOJLG0QSONPSNJ' where id=2; -update noar ti set b0='XLVMMDCHOJLG0QSONPSNJ' where id=2; -update noar tt set v0='34MKP6XSBWURK3NRNFDW' where id=2; -update noar ti set v0='34MKP6XSBWURK3NRNFDW' where id=2; -update noar tt set b1='S0UFBA' where id=2; -update noar ti set b1='S0UFBA' where id=2; -update noar tt set v0='0PAUX919QJILAZ43L92TTE8CP436J3' where id=2; -update noar ti set v0='0PAUX919QJILAZ43L92TTE8CP436J3' where id=2; -update noar tt set b2='T7UBGMD4ITIEQKH8GL0' where id=2; -update noar ti set b2='T7UBGMD4ITIEQKH8GL0' where id=2; -update noar tt set v0='ONRJ4D5ZGSD' where id=3; -update noar ti set v0='ONRJ4D5ZGSD' where id=3; -update noar tt set b0='0ZIOOUCWDYWM' where id=3; -update noar ti set b0='0ZIOOUCWDYWM' where id=3; -update noar tt set v0='EHHKBBXXA4' where id=3; -update noar ti set v0='EHHKBBXXA4' where id=3; -update noar tt set b1='8' where id=3; -update noar ti set b1='8' where id=3; -update noar tt set v0='CO0509YW75U84YV4RIBP4L' where id=3; -update noar ti set v0='CO0509YW75U84YV4RIBP4L' where id=3; -update noar tt set b2='97' where id=3; -update noar ti set b2='97' where id=3; -update noar tt set v0='WYYMGD0YQH21QCRBWBI' where id=4; -update noar ti set v0='WYYMGD0YQH21QCRBWBI' where id=4; -update noar tt set b0='PQ3EH514' where id=4; -update noar ti set b0='PQ3EH514' where id=4; -update noar tt set v0='W' where id=4; -update noar ti set v0='W' where id=4; -update noar tt set b1='BJMRH8FHAL7B88BY' where id=4; -update noar ti set b1='BJMRH8FHAL7B88BY' where id=4; -update noar tt set v0='A3CGOLVBT0H0272NOKV7HW10N4HM' where id=4; -update noar ti set v0='A3CGOLVBT0H0272NOKV7HW10N4HM' where id=4; -update noar tt set b2='30R4CZ07A' where id=4; -update noar ti set b2='30R4CZ07A' where id=4; -update noar tt set v0='VCD3LXJNFBQICHQ651MMFRCJDMLSRYWP' where id=5; -update noar ti set v0='VCD3LXJNFBQICHQ651MMFRCJDMLSRYWP' where id=5; -update noar tt set b0='WUBK8N7CE9Y84LJU84GMYAA8YLRGQR' where id=5; -update noar ti set b0='WUBK8N7CE9Y84LJU84GMYAA8YLRGQR' where id=5; -update noar tt set v0='GAICEJEF1R5LATFGRMI1XWRJECCX8VT' where id=5; -update noar ti set v0='GAICEJEF1R5LATFGRMI1XWRJECCX8VT' where id=5; -update noar tt set b1='L2FAACS2R' where id=5; -update noar ti set b1='L2FAACS2R' where id=5; -update noar tt set v0='5S81UC' where id=5; -update noar ti set v0='5S81UC' where id=5; -update noar tt set b2='6ORJKA8QGG628JLM6WZ81FAD18RSD' where id=5; -update noar ti set b2='6ORJKA8QGG628JLM6WZ81FAD18RSD' where id=5; -update noar tt set v0='9UR7X6DBXII6M' where id=6; -update noar ti set v0='9UR7X6DBXII6M' where id=6; -update noar tt set b0='T47UURFHFDDERX9' where id=6; -update noar ti set b0='T47UURFHFDDERX9' where id=6; -update noar tt set v0='XRMBRITRHUPS1YCICHRE3BC' where id=6; -update noar ti set v0='XRMBRITRHUPS1YCICHRE3BC' where id=6; -update noar tt set b1='DXU1KCSMQH9MZ4X0GIH450NC25FYQ0A' where id=6; -update noar ti set b1='DXU1KCSMQH9MZ4X0GIH450NC25FYQ0A' where id=6; -update noar tt set v0='20B0YH1KL3' where id=6; -update noar ti set v0='20B0YH1KL3' where id=6; -update noar tt set b2='96Z4CVKLB839H7JG6OB29DMD04' where id=6; -update noar ti set b2='96Z4CVKLB839H7JG6OB29DMD04' where id=6; -update noar tt set v0='T' where id=7; -update noar ti set v0='T' where id=7; -update noar tt set b0='6T8DDEHYU' where id=7; -update noar ti set b0='6T8DDEHYU' where id=7; -update noar tt set v0='WZRBYQB' where id=7; -update noar ti set v0='WZRBYQB' where id=7; -update noar tt set b1='C121LRUJAW7' where id=7; -update noar ti set b1='C121LRUJAW7' where id=7; -update noar tt set v0='QSNGTU6KKSJOMJOLSLX5KN' where id=7; -update noar ti set v0='QSNGTU6KKSJOMJOLSLX5KN' where id=7; -update noar tt set b2='RNCBIAQCUBBVYHO1QZL' where id=7; -update noar ti set b2='RNCBIAQCUBBVYHO1QZL' where id=7; -update noar tt set v0='48DFTNYZ51EC5A0R8' where id=8; -update noar ti set v0='48DFTNYZ51EC5A0R8' where id=8; -update noar tt set b0='LTZXKAJS9UTIEX9BYWTLRX' where id=8; -update noar ti set b0='LTZXKAJS9UTIEX9BYWTLRX' where id=8; -update noar tt set v0='C3H6FBJTXH4NLPZXUC7G5QY' where id=8; -update noar ti set v0='C3H6FBJTXH4NLPZXUC7G5QY' where id=8; -update noar tt set b1='MB8O4XMG2XTZ0DP95NWOYE830J3D' where id=8; -update noar ti set b1='MB8O4XMG2XTZ0DP95NWOYE830J3D' where id=8; -update noar tt set v0='BBT67HO8JSHCQ45172V03ZDF876M840I' where id=8; -update noar ti set v0='BBT67HO8JSHCQ45172V03ZDF876M840I' where id=8; -update noar tt set b2='5JW4J6E89GQMJG1PVC714' where id=8; -update noar ti set b2='5JW4J6E89GQMJG1PVC714' where id=8; -update noar tt set v0='XA98R9ABPQEII01YDER24X230ZFOJ' where id=9; -update noar ti set v0='XA98R9ABPQEII01YDER24X230ZFOJ' where id=9; -update noar tt set b0='YW34M3XCXH1' where id=9; -update noar ti set b0='YW34M3XCXH1' where id=9; -update noar tt set v0='97K' where id=9; -update noar ti set v0='97K' where id=9; -update noar tt set b1='7TQBWK7AGI9GW19YJA8' where id=9; -update noar ti set b1='7TQBWK7AGI9GW19YJA8' where id=9; -update noar tt set v0='QVGTS6U49IC' where id=9; -update noar ti set v0='QVGTS6U49IC' where id=9; -update noar tt set b2='I2YICWKYUF6F4OYSC' where id=9; -update noar ti set b2='I2YICWKYUF6F4OYSC' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -v0 varchar(256) not null, -b0 blob not null, -b1 tinyblob not null, -b2 mediumblob not null -) engine=tokudb; -insert into tt values (1,'','','',''); -insert into tt values (2,'','','',''); -insert into tt values (3,'','','',''); -insert into tt values (4,'','','',''); -insert into tt values (5,'','','',''); -insert into tt values (6,'','','',''); -insert into tt values (7,'','','',''); -insert into tt values (8,'','','',''); -insert into tt values (9,'','','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='4BMPA0839HMTXAG9ME9' where id=1; -update noar ti set v0='4BMPA0839HMTXAG9ME9' where id=1; -update noar tt set b0='75NQQ2PEXW9GKWIFYX0RYSHU' where id=1; -update noar ti set b0='75NQQ2PEXW9GKWIFYX0RYSHU' where id=1; -update noar tt set v0='OAQU' where id=1; -update noar ti set v0='OAQU' where id=1; -update noar tt set b1='LL3RXSPP' where id=1; -update noar ti set b1='LL3RXSPP' where id=1; -update noar tt set v0='RY88YGHYMHYF09VQ5UL' where id=1; -update noar ti set v0='RY88YGHYMHYF09VQ5UL' where id=1; -update noar tt set b2='VK6LJ2Q4TJEDO5MYVQPS7OHPE4O9B' where id=1; -update noar ti set b2='VK6LJ2Q4TJEDO5MYVQPS7OHPE4O9B' where id=1; -update noar tt set v0='E8NIALN0VFSJ2BWQQOM' where id=2; -update noar ti set v0='E8NIALN0VFSJ2BWQQOM' where id=2; -update noar tt set b0='SXBENCGGQDZ7UOD' where id=2; -update noar ti set b0='SXBENCGGQDZ7UOD' where id=2; -update noar tt set v0='FJ4SZOOQR3ITVRGE389GON66U2P2' where id=2; -update noar ti set v0='FJ4SZOOQR3ITVRGE389GON66U2P2' where id=2; -update noar tt set b1='6W7JQI' where id=2; -update noar ti set b1='6W7JQI' where id=2; -update noar tt set v0='SBMKBU62US8JD' where id=2; -update noar ti set v0='SBMKBU62US8JD' where id=2; -update noar tt set b2='M1CJRQAM5A57BLVOQBAJLASOU8WN9QC2' where id=2; -update noar ti set b2='M1CJRQAM5A57BLVOQBAJLASOU8WN9QC2' where id=2; -update noar tt set v0='S8OIEBK88Z4KXZPXG091' where id=3; -update noar ti set v0='S8OIEBK88Z4KXZPXG091' where id=3; -update noar tt set b0='P3WVCX809TM860ITFOO' where id=3; -update noar ti set b0='P3WVCX809TM860ITFOO' where id=3; -update noar tt set v0='R4FT1HKOKH4AOL' where id=3; -update noar ti set v0='R4FT1HKOKH4AOL' where id=3; -update noar tt set b1='2QQAMDVB5ZPJNM5W4LPA6C2H77' where id=3; -update noar ti set b1='2QQAMDVB5ZPJNM5W4LPA6C2H77' where id=3; -update noar tt set v0='P25ZB0' where id=3; -update noar ti set v0='P25ZB0' where id=3; -update noar tt set b2='VJJ9W' where id=3; -update noar ti set b2='VJJ9W' where id=3; -update noar tt set v0='G8IW52HR13JY24B1G9DAWXZ1B' where id=4; -update noar ti set v0='G8IW52HR13JY24B1G9DAWXZ1B' where id=4; -update noar tt set b0='530BIS28' where id=4; -update noar ti set b0='530BIS28' where id=4; -update noar tt set v0='D829NKDKO4YSXT3A3XKPGIVBGQLJL' where id=4; -update noar ti set v0='D829NKDKO4YSXT3A3XKPGIVBGQLJL' where id=4; -update noar tt set b1='E8QMTNPL6OHOS2MXOCTBBYJ9N5L' where id=4; -update noar ti set b1='E8QMTNPL6OHOS2MXOCTBBYJ9N5L' where id=4; -update noar tt set v0='XDXQ50' where id=4; -update noar ti set v0='XDXQ50' where id=4; -update noar tt set b2='Y2LYY15VF1NS42J' where id=4; -update noar ti set b2='Y2LYY15VF1NS42J' where id=4; -update noar tt set v0='WFZ28TP9VSEIZ1UFG3QY7UL' where id=5; -update noar ti set v0='WFZ28TP9VSEIZ1UFG3QY7UL' where id=5; -update noar tt set b0='M8OBJKCFYUOP5BVJFH39OW96Z' where id=5; -update noar ti set b0='M8OBJKCFYUOP5BVJFH39OW96Z' where id=5; -update noar tt set v0='GGDKHWXD8W3Z5C5VW' where id=5; -update noar ti set v0='GGDKHWXD8W3Z5C5VW' where id=5; -update noar tt set b1='2H13PFK' where id=5; -update noar ti set b1='2H13PFK' where id=5; -update noar tt set v0='YMPW39D' where id=5; -update noar ti set v0='YMPW39D' where id=5; -update noar tt set b2='UUDE38BOTQN' where id=5; -update noar ti set b2='UUDE38BOTQN' where id=5; -update noar tt set v0='W30U893BRMN52AZWGJPH1LW' where id=6; -update noar ti set v0='W30U893BRMN52AZWGJPH1LW' where id=6; -update noar tt set b0='LF7EIP5KUI93SHMNLBAKR52XAFFJ7XO' where id=6; -update noar ti set b0='LF7EIP5KUI93SHMNLBAKR52XAFFJ7XO' where id=6; -update noar tt set v0='VH1A6JAWGD' where id=6; -update noar ti set v0='VH1A6JAWGD' where id=6; -update noar tt set b1='WN8CNRAP6' where id=6; -update noar ti set b1='WN8CNRAP6' where id=6; -update noar tt set v0='JRTNA7C5ZLQ' where id=6; -update noar ti set v0='JRTNA7C5ZLQ' where id=6; -update noar tt set b2='VL' where id=6; -update noar ti set b2='VL' where id=6; -update noar tt set v0='9BL8' where id=7; -update noar ti set v0='9BL8' where id=7; -update noar tt set b0='5NRVOC45C5GO4F0' where id=7; -update noar ti set b0='5NRVOC45C5GO4F0' where id=7; -update noar tt set v0='XO5VLH981YJ55EK' where id=7; -update noar ti set v0='XO5VLH981YJ55EK' where id=7; -update noar tt set b1='YABWQ96' where id=7; -update noar ti set b1='YABWQ96' where id=7; -update noar tt set v0='NYYG9WXZ6UWXY6P4' where id=7; -update noar ti set v0='NYYG9WXZ6UWXY6P4' where id=7; -update noar tt set b2='7ETM320DY3GHU4YZD5676HLAPF0MBL5' where id=7; -update noar ti set b2='7ETM320DY3GHU4YZD5676HLAPF0MBL5' where id=7; -update noar tt set v0='8MONZCNZQ3RPNYU7' where id=8; -update noar ti set v0='8MONZCNZQ3RPNYU7' where id=8; -update noar tt set b0='D6ZXJEV1IM5PS3O' where id=8; -update noar ti set b0='D6ZXJEV1IM5PS3O' where id=8; -update noar tt set v0='D9TUDNF91JCUTIFJHNLB54R0YDT3J6B' where id=8; -update noar ti set v0='D9TUDNF91JCUTIFJHNLB54R0YDT3J6B' where id=8; -update noar tt set b1='EWIKJU8LTL7KVESF49REB' where id=8; -update noar ti set b1='EWIKJU8LTL7KVESF49REB' where id=8; -update noar tt set v0='MZWB8EYN8Q01HCRQ7ALO3NO' where id=8; -update noar ti set v0='MZWB8EYN8Q01HCRQ7ALO3NO' where id=8; -update noar tt set b2='GUC58YXKP9QJVXHB' where id=8; -update noar ti set b2='GUC58YXKP9QJVXHB' where id=8; -update noar tt set v0='UX' where id=9; -update noar ti set v0='UX' where id=9; -update noar tt set b0='4PG35UP1L7DJDH' where id=9; -update noar ti set b0='4PG35UP1L7DJDH' where id=9; -update noar tt set v0='L43E8G38E4ZHEIV2ZM3998WKZ8RNQW3W' where id=9; -update noar ti set v0='L43E8G38E4ZHEIV2ZM3998WKZ8RNQW3W' where id=9; -update noar tt set b1='XMA24D23EOYOKDELMKFULZ8JOC9' where id=9; -update noar ti set b1='XMA24D23EOYOKDELMKFULZ8JOC9' where id=9; -update noar tt set v0='Z75XPJ8B1CD7J' where id=9; -update noar ti set v0='Z75XPJ8B1CD7J' where id=9; -update noar tt set b2='0GI5E7EMXH5Y08N69H' where id=9; -update noar ti set b2='0GI5E7EMXH5Y08N69H' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -v0 varchar(32) null, -b0 blob null, -b1 tinyblob null, -b2 longblob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='1' where id=1; -update noar ti set v0='1' where id=1; -update noar tt set b0='PE9UBWBA1U146G1B95ZZ' where id=1; -update noar ti set b0='PE9UBWBA1U146G1B95ZZ' where id=1; -update noar tt set v0='FCAMWNQXB0KCFIU9NAA56O37MIFKGI' where id=1; -update noar ti set v0='FCAMWNQXB0KCFIU9NAA56O37MIFKGI' where id=1; -update noar tt set b1='BQI2G6ND4YKE8FNDXB8B' where id=1; -update noar ti set b1='BQI2G6ND4YKE8FNDXB8B' where id=1; -update noar tt set v0='9MT' where id=1; -update noar ti set v0='9MT' where id=1; -update noar tt set b2='P1I13X3PQXQINJR3EBGP0AY7M8U92SU' where id=1; -update noar ti set b2='P1I13X3PQXQINJR3EBGP0AY7M8U92SU' where id=1; -update noar tt set v0='YMGK9UVXIC615FT' where id=2; -update noar ti set v0='YMGK9UVXIC615FT' where id=2; -update noar tt set b0='6V0SZA3II' where id=2; -update noar ti set b0='6V0SZA3II' where id=2; -update noar tt set v0='ZTNIWLDRSH783L8USGALRSM1Z94' where id=2; -update noar ti set v0='ZTNIWLDRSH783L8USGALRSM1Z94' where id=2; -update noar tt set b1='KUHYYS0YN7XEERBVY81J9G4TAYL4' where id=2; -update noar ti set b1='KUHYYS0YN7XEERBVY81J9G4TAYL4' where id=2; -update noar tt set v0='12E53SYUAA85K71QWJP09I3T6X' where id=2; -update noar ti set v0='12E53SYUAA85K71QWJP09I3T6X' where id=2; -update noar tt set b2='B5TXCIUP7IZVUVYCQOL3RQ' where id=2; -update noar ti set b2='B5TXCIUP7IZVUVYCQOL3RQ' where id=2; -update noar tt set v0='U3D7L5IBMVFP48JJXCBSGX4RIYYF' where id=3; -update noar ti set v0='U3D7L5IBMVFP48JJXCBSGX4RIYYF' where id=3; -update noar tt set b0='LLELKM' where id=3; -update noar ti set b0='LLELKM' where id=3; -update noar tt set v0='HL2EY0ZSRE3BPROSWFJ1B' where id=3; -update noar ti set v0='HL2EY0ZSRE3BPROSWFJ1B' where id=3; -update noar tt set b1='3A03S' where id=3; -update noar ti set b1='3A03S' where id=3; -update noar tt set v0='F12YJ2T224ZMWQC3541' where id=3; -update noar ti set v0='F12YJ2T224ZMWQC3541' where id=3; -update noar tt set b2='8QZPHW6MP6PLTRGUR2DOQK0Z3MU6W' where id=3; -update noar ti set b2='8QZPHW6MP6PLTRGUR2DOQK0Z3MU6W' where id=3; -update noar tt set v0='1VJASU73FJ5U6G58MHZHZNKR51YUQ3U9' where id=4; -update noar ti set v0='1VJASU73FJ5U6G58MHZHZNKR51YUQ3U9' where id=4; -update noar tt set b0='7NDVRZV085MIGN7' where id=4; -update noar ti set b0='7NDVRZV085MIGN7' where id=4; -update noar tt set v0='KUQQBIE2Z' where id=4; -update noar ti set v0='KUQQBIE2Z' where id=4; -update noar tt set b1='UEUNG9HB8UHH32I7A2JYN8N62860KGD' where id=4; -update noar ti set b1='UEUNG9HB8UHH32I7A2JYN8N62860KGD' where id=4; -update noar tt set v0='KA6L8DY' where id=4; -update noar ti set v0='KA6L8DY' where id=4; -update noar tt set b2='NCRSQMVR7238GV2IA7' where id=4; -update noar ti set b2='NCRSQMVR7238GV2IA7' where id=4; -update noar tt set v0='F89GGUNPJNWNFNQVFAM67CR' where id=5; -update noar ti set v0='F89GGUNPJNWNFNQVFAM67CR' where id=5; -update noar tt set b0='QGA8973KAGGH4O3' where id=5; -update noar ti set b0='QGA8973KAGGH4O3' where id=5; -update noar tt set v0='4JEOPUBM9QWN6DQWC4Q9X' where id=5; -update noar ti set v0='4JEOPUBM9QWN6DQWC4Q9X' where id=5; -update noar tt set b1='JHIREB0JMNZLW2D57TMVUAU' where id=5; -update noar ti set b1='JHIREB0JMNZLW2D57TMVUAU' where id=5; -update noar tt set v0='10BA4XW8SO73FYT632Q4M0G9KBE' where id=5; -update noar ti set v0='10BA4XW8SO73FYT632Q4M0G9KBE' where id=5; -update noar tt set b2='O1IG3FJV3JJ8AYUGH' where id=5; -update noar ti set b2='O1IG3FJV3JJ8AYUGH' where id=5; -update noar tt set v0='GH7GG9FD9CM2CJJRQZ10' where id=6; -update noar ti set v0='GH7GG9FD9CM2CJJRQZ10' where id=6; -update noar tt set b0='PYWN3UT9DUJ6QBWURSYU0' where id=6; -update noar ti set b0='PYWN3UT9DUJ6QBWURSYU0' where id=6; -update noar tt set v0='O9FPLB8KZEC2WGHB6K' where id=6; -update noar ti set v0='O9FPLB8KZEC2WGHB6K' where id=6; -update noar tt set b1='JCFFI0XLF8Y3XA34KDND8BDJ' where id=6; -update noar ti set b1='JCFFI0XLF8Y3XA34KDND8BDJ' where id=6; -update noar tt set v0='IH2HTYW' where id=6; -update noar ti set v0='IH2HTYW' where id=6; -update noar tt set b2='V4B0A6A' where id=6; -update noar ti set b2='V4B0A6A' where id=6; -update noar tt set v0='ZSCPEU9KWM8CTU3CLYA1W1T56NA' where id=7; -update noar ti set v0='ZSCPEU9KWM8CTU3CLYA1W1T56NA' where id=7; -update noar tt set b0='IGAIC8A6' where id=7; -update noar ti set b0='IGAIC8A6' where id=7; -update noar tt set v0='6D' where id=7; -update noar ti set v0='6D' where id=7; -update noar tt set b1='3RZI9KS0YHPA2YYVLF8B9G' where id=7; -update noar ti set b1='3RZI9KS0YHPA2YYVLF8B9G' where id=7; -update noar tt set v0='A' where id=7; -update noar ti set v0='A' where id=7; -update noar tt set b2='L4QM3R0UKZ6D1OB89UN3O9CQGGR03' where id=7; -update noar ti set b2='L4QM3R0UKZ6D1OB89UN3O9CQGGR03' where id=7; -update noar tt set v0='PDXF7M463KC4GVHSUI4XVSQXM' where id=8; -update noar ti set v0='PDXF7M463KC4GVHSUI4XVSQXM' where id=8; -update noar tt set b0='QF253N6' where id=8; -update noar ti set b0='QF253N6' where id=8; -update noar tt set v0='70WOQL1718CK4O4740WCUQIMHR9' where id=8; -update noar ti set v0='70WOQL1718CK4O4740WCUQIMHR9' where id=8; -update noar tt set b1='11UDK4CPW55UVKC' where id=8; -update noar ti set b1='11UDK4CPW55UVKC' where id=8; -update noar tt set v0='72L5UIOSTSJ94LUK' where id=8; -update noar ti set v0='72L5UIOSTSJ94LUK' where id=8; -update noar tt set b2='Z8UFY0GARQL' where id=8; -update noar ti set b2='Z8UFY0GARQL' where id=8; -update noar tt set v0='82WHSVEFLMMSWCG6OVKUJY21H' where id=9; -update noar ti set v0='82WHSVEFLMMSWCG6OVKUJY21H' where id=9; -update noar tt set b0='F0L7KJGF' where id=9; -update noar ti set b0='F0L7KJGF' where id=9; -update noar tt set v0='ZL0BDNUWONKQ9XMF3' where id=9; -update noar ti set v0='ZL0BDNUWONKQ9XMF3' where id=9; -update noar tt set b1='50ETN5YT368Q1' where id=9; -update noar ti set b1='50ETN5YT368Q1' where id=9; -update noar tt set v0='I76OZ4YXU95NWVJCQ3QUVNL' where id=9; -update noar ti set v0='I76OZ4YXU95NWVJCQ3QUVNL' where id=9; -update noar tt set b2='TDP7B5V6PE8F7OGZQB5WEAK7YWJZEIFD' where id=9; -update noar ti set b2='TDP7B5V6PE8F7OGZQB5WEAK7YWJZEIFD' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -v0 varchar(256) null, -b0 blob null, -b1 tinyblob null, -b2 longblob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='RMF01TT' where id=1; -update noar ti set v0='RMF01TT' where id=1; -update noar tt set b0='Z8OQ6FGL7ZGJQBDO' where id=1; -update noar ti set b0='Z8OQ6FGL7ZGJQBDO' where id=1; -update noar tt set v0='JFDXUR06PRFAS' where id=1; -update noar ti set v0='JFDXUR06PRFAS' where id=1; -update noar tt set b1='L7R41L9TKY2XHHMS4Q85XZUAYAQ2' where id=1; -update noar ti set b1='L7R41L9TKY2XHHMS4Q85XZUAYAQ2' where id=1; -update noar tt set v0='40PL9VPTN' where id=1; -update noar ti set v0='40PL9VPTN' where id=1; -update noar tt set b2='C4ASYIWSIUY856' where id=1; -update noar ti set b2='C4ASYIWSIUY856' where id=1; -update noar tt set v0='2L85OXI7695JJZB2K0RSP5CS894T' where id=2; -update noar ti set v0='2L85OXI7695JJZB2K0RSP5CS894T' where id=2; -update noar tt set b0='W' where id=2; -update noar ti set b0='W' where id=2; -update noar tt set v0='P2XCINSP' where id=2; -update noar ti set v0='P2XCINSP' where id=2; -update noar tt set b1='ACBKGTGY809111HHC' where id=2; -update noar ti set b1='ACBKGTGY809111HHC' where id=2; -update noar tt set v0='ZA500HGL15KG9CQLXV6' where id=2; -update noar ti set v0='ZA500HGL15KG9CQLXV6' where id=2; -update noar tt set b2='1LV2CXKF5ZU4SBJM5FU9B6LHRKT' where id=2; -update noar ti set b2='1LV2CXKF5ZU4SBJM5FU9B6LHRKT' where id=2; -update noar tt set v0='RL' where id=3; -update noar ti set v0='RL' where id=3; -update noar tt set b0='Q3NI0GQN82' where id=3; -update noar ti set b0='Q3NI0GQN82' where id=3; -update noar tt set v0='BEB' where id=3; -update noar ti set v0='BEB' where id=3; -update noar tt set b1='PYIABPV26HWQDLERYO1X1AVWIBTLNJO' where id=3; -update noar ti set b1='PYIABPV26HWQDLERYO1X1AVWIBTLNJO' where id=3; -update noar tt set v0='D9HM6WXLPOZJCEPC5DT1' where id=3; -update noar ti set v0='D9HM6WXLPOZJCEPC5DT1' where id=3; -update noar tt set b2='WKGITDSV2X9WMZY' where id=3; -update noar ti set b2='WKGITDSV2X9WMZY' where id=3; -update noar tt set v0='ABTN091KBQHGB9DYXXAFVVO8XN0VM3H' where id=4; -update noar ti set v0='ABTN091KBQHGB9DYXXAFVVO8XN0VM3H' where id=4; -update noar tt set b0='8' where id=4; -update noar ti set b0='8' where id=4; -update noar tt set v0='KPOF8KL2BJOQVXFMLWCZ0JTCYGWM1' where id=4; -update noar ti set v0='KPOF8KL2BJOQVXFMLWCZ0JTCYGWM1' where id=4; -update noar tt set b1='UIZNBX49OEJH6OXJTDBY2WKGLI' where id=4; -update noar ti set b1='UIZNBX49OEJH6OXJTDBY2WKGLI' where id=4; -update noar tt set v0='VMMXZ256M0KKDW5FS9A71TNO' where id=4; -update noar ti set v0='VMMXZ256M0KKDW5FS9A71TNO' where id=4; -update noar tt set b2='GBL63964UDOJJDMVFUD' where id=4; -update noar ti set b2='GBL63964UDOJJDMVFUD' where id=4; -update noar tt set v0='TZXPACWC4PJ9VPYME6XXFWG8YV0CJCQE' where id=5; -update noar ti set v0='TZXPACWC4PJ9VPYME6XXFWG8YV0CJCQE' where id=5; -update noar tt set b0='QDUYVZK' where id=5; -update noar ti set b0='QDUYVZK' where id=5; -update noar tt set v0='TD7CE0H7H2' where id=5; -update noar ti set v0='TD7CE0H7H2' where id=5; -update noar tt set b1='C3797NMIJRC25FBJTLV8VJZ' where id=5; -update noar ti set b1='C3797NMIJRC25FBJTLV8VJZ' where id=5; -update noar tt set v0='886UI54V' where id=5; -update noar ti set v0='886UI54V' where id=5; -update noar tt set b2='S14OOJECI0MXNAQL0PYFE' where id=5; -update noar ti set b2='S14OOJECI0MXNAQL0PYFE' where id=5; -update noar tt set v0='P4UHO7PLH6OM5' where id=6; -update noar ti set v0='P4UHO7PLH6OM5' where id=6; -update noar tt set b0='YXDKTHI21I0A56IRZOWS6NR5FCR1ZGX' where id=6; -update noar ti set b0='YXDKTHI21I0A56IRZOWS6NR5FCR1ZGX' where id=6; -update noar tt set v0='SWUF5XPW9H3UVK' where id=6; -update noar ti set v0='SWUF5XPW9H3UVK' where id=6; -update noar tt set b1='5WGW3WQPV' where id=6; -update noar ti set b1='5WGW3WQPV' where id=6; -update noar tt set v0='4KPY0RUXA8XPWXWL' where id=6; -update noar ti set v0='4KPY0RUXA8XPWXWL' where id=6; -update noar tt set b2='HZBA7KYQZIJ1OXCXSDPD9Y21KY1ZX' where id=6; -update noar ti set b2='HZBA7KYQZIJ1OXCXSDPD9Y21KY1ZX' where id=6; -update noar tt set v0='1LSGWIUM6ABPQRKLCW5ABG3VRCH' where id=7; -update noar ti set v0='1LSGWIUM6ABPQRKLCW5ABG3VRCH' where id=7; -update noar tt set b0='5NZ0' where id=7; -update noar ti set b0='5NZ0' where id=7; -update noar tt set v0='C5KRRT3T5ST1ZLAQQ' where id=7; -update noar ti set v0='C5KRRT3T5ST1ZLAQQ' where id=7; -update noar tt set b1='I4LHHQIRS2I5ABEVTSS317PNGX' where id=7; -update noar ti set b1='I4LHHQIRS2I5ABEVTSS317PNGX' where id=7; -update noar tt set v0='391NN8Z2KJ2VQB92LMCQ' where id=7; -update noar ti set v0='391NN8Z2KJ2VQB92LMCQ' where id=7; -update noar tt set b2='ONSMZSMKJBTAKQCRV' where id=7; -update noar ti set b2='ONSMZSMKJBTAKQCRV' where id=7; -update noar tt set v0='S0YZ99B' where id=8; -update noar ti set v0='S0YZ99B' where id=8; -update noar tt set b0='ES5BN1BBO4RPW9T' where id=8; -update noar ti set b0='ES5BN1BBO4RPW9T' where id=8; -update noar tt set v0='NYVZV5F' where id=8; -update noar ti set v0='NYVZV5F' where id=8; -update noar tt set b1='XCOC4UC33F6U9ARCQJXZZNMVAD2Z' where id=8; -update noar ti set b1='XCOC4UC33F6U9ARCQJXZZNMVAD2Z' where id=8; -update noar tt set v0='DMHLY4HFO6HHWOW9CQQ' where id=8; -update noar ti set v0='DMHLY4HFO6HHWOW9CQQ' where id=8; -update noar tt set b2='2D' where id=8; -update noar ti set b2='2D' where id=8; -update noar tt set v0='P' where id=9; -update noar ti set v0='P' where id=9; -update noar tt set b0='7IVQ3RPGQWMU7K3GIC2WYSRCC' where id=9; -update noar ti set b0='7IVQ3RPGQWMU7K3GIC2WYSRCC' where id=9; -update noar tt set v0='0L587SDBCAUXX' where id=9; -update noar ti set v0='0L587SDBCAUXX' where id=9; -update noar tt set b1='1E' where id=9; -update noar ti set b1='1E' where id=9; -update noar tt set v0='8TZDYF7Z67ADKV390CF444VOWX' where id=9; -update noar ti set v0='8TZDYF7Z67ADKV390CF444VOWX' where id=9; -update noar tt set b2='JJYXPEYNNWD9WV5I5I8' where id=9; -update noar ti set b2='JJYXPEYNNWD9WV5I5I8' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -v0 varchar(32) not null, -b0 blob not null, -b1 tinyblob not null, -b2 longblob not null -) engine=tokudb; -insert into tt values (1,'','','',''); -insert into tt values (2,'','','',''); -insert into tt values (3,'','','',''); -insert into tt values (4,'','','',''); -insert into tt values (5,'','','',''); -insert into tt values (6,'','','',''); -insert into tt values (7,'','','',''); -insert into tt values (8,'','','',''); -insert into tt values (9,'','','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='U3QXFT7' where id=1; -update noar ti set v0='U3QXFT7' where id=1; -update noar tt set b0='RT1M41Q144JC9YH65' where id=1; -update noar ti set b0='RT1M41Q144JC9YH65' where id=1; -update noar tt set v0='D9H' where id=1; -update noar ti set v0='D9H' where id=1; -update noar tt set b1='98XU74MA2TRJBKOTQO28' where id=1; -update noar ti set b1='98XU74MA2TRJBKOTQO28' where id=1; -update noar tt set v0='DC' where id=1; -update noar ti set v0='DC' where id=1; -update noar tt set b2='FCXDOFTJFUX0DDKX0HC6XF8IFQEBE' where id=1; -update noar ti set b2='FCXDOFTJFUX0DDKX0HC6XF8IFQEBE' where id=1; -update noar tt set v0='OW9JQ5UW6WLFFH8SJC' where id=2; -update noar ti set v0='OW9JQ5UW6WLFFH8SJC' where id=2; -update noar tt set b0='XGL56XP7Q8RV1HYC0Q' where id=2; -update noar ti set b0='XGL56XP7Q8RV1HYC0Q' where id=2; -update noar tt set v0='5R09PJ2A385FM4XL5HT6' where id=2; -update noar ti set v0='5R09PJ2A385FM4XL5HT6' where id=2; -update noar tt set b1='MOC0IW9COPITPFEJXUP5RDOAPM1YIF24' where id=2; -update noar ti set b1='MOC0IW9COPITPFEJXUP5RDOAPM1YIF24' where id=2; -update noar tt set v0='FKGELF025CP41NXGCT7F7RB7AIMPL' where id=2; -update noar ti set v0='FKGELF025CP41NXGCT7F7RB7AIMPL' where id=2; -update noar tt set b2='LBN1S3LDCJ8LZI7ZZN1S8ZQBZYI8' where id=2; -update noar ti set b2='LBN1S3LDCJ8LZI7ZZN1S8ZQBZYI8' where id=2; -update noar tt set v0='H5381XQR4GPX5S864HK0UM6' where id=3; -update noar ti set v0='H5381XQR4GPX5S864HK0UM6' where id=3; -update noar tt set b0='6YPZ' where id=3; -update noar ti set b0='6YPZ' where id=3; -update noar tt set v0='X2KQ7PLIX4JOUX0V875NSK' where id=3; -update noar ti set v0='X2KQ7PLIX4JOUX0V875NSK' where id=3; -update noar tt set b1='MV4G9KSH5' where id=3; -update noar ti set b1='MV4G9KSH5' where id=3; -update noar tt set v0='LN767BM1F73HVV8O68IC9OLJT7QMZ2O' where id=3; -update noar ti set v0='LN767BM1F73HVV8O68IC9OLJT7QMZ2O' where id=3; -update noar tt set b2='N1WW103NIE8MPPKVR' where id=3; -update noar ti set b2='N1WW103NIE8MPPKVR' where id=3; -update noar tt set v0='2NW4OBUV4TBU1TOJDF1PW12AOG3' where id=4; -update noar ti set v0='2NW4OBUV4TBU1TOJDF1PW12AOG3' where id=4; -update noar tt set b0='GA4LV' where id=4; -update noar ti set b0='GA4LV' where id=4; -update noar tt set v0='YAEM48ZNAT4N02NH0Y8TCVLL2BEM' where id=4; -update noar ti set v0='YAEM48ZNAT4N02NH0Y8TCVLL2BEM' where id=4; -update noar tt set b1='ZNJA2BSW8FAG22' where id=4; -update noar ti set b1='ZNJA2BSW8FAG22' where id=4; -update noar tt set v0='E9BX06TVP5X5Q13AIA0DH' where id=4; -update noar ti set v0='E9BX06TVP5X5Q13AIA0DH' where id=4; -update noar tt set b2='WT1TLCXBYIHWI1GD' where id=4; -update noar ti set b2='WT1TLCXBYIHWI1GD' where id=4; -update noar tt set v0='FR4N3PFY2YUL' where id=5; -update noar ti set v0='FR4N3PFY2YUL' where id=5; -update noar tt set b0='OQIYKLJS9WHKAJERG7LS9BKF1YFX0Y5B' where id=5; -update noar ti set b0='OQIYKLJS9WHKAJERG7LS9BKF1YFX0Y5B' where id=5; -update noar tt set v0='GTY5O6RDFYODPLFWKTCOOJ6' where id=5; -update noar ti set v0='GTY5O6RDFYODPLFWKTCOOJ6' where id=5; -update noar tt set b1='3LORD46P63UKU9I' where id=5; -update noar ti set b1='3LORD46P63UKU9I' where id=5; -update noar tt set v0='HYSX4' where id=5; -update noar ti set v0='HYSX4' where id=5; -update noar tt set b2='S0DNS3JOSD3SAP2J' where id=5; -update noar ti set b2='S0DNS3JOSD3SAP2J' where id=5; -update noar tt set v0='9TWBD5YT3307AU4GEHSK3AYBLF' where id=6; -update noar ti set v0='9TWBD5YT3307AU4GEHSK3AYBLF' where id=6; -update noar tt set b0='RU1NL87CQUUJ' where id=6; -update noar ti set b0='RU1NL87CQUUJ' where id=6; -update noar tt set v0='N2W' where id=6; -update noar ti set v0='N2W' where id=6; -update noar tt set b1='ENZYX098BBUN6' where id=6; -update noar ti set b1='ENZYX098BBUN6' where id=6; -update noar tt set v0='G3PACXKI6RSJ4CEZZJ7GHZ73' where id=6; -update noar ti set v0='G3PACXKI6RSJ4CEZZJ7GHZ73' where id=6; -update noar tt set b2='16MIXU5ERSCJI6L4J' where id=6; -update noar ti set b2='16MIXU5ERSCJI6L4J' where id=6; -update noar tt set v0='0VROV7N303VI' where id=7; -update noar ti set v0='0VROV7N303VI' where id=7; -update noar tt set b0='9EAXF7IU64QQZMHZN8KT' where id=7; -update noar ti set b0='9EAXF7IU64QQZMHZN8KT' where id=7; -update noar tt set v0='O7HPFIXEQE3G5MWNQ20VQH16DDSXY2D' where id=7; -update noar ti set v0='O7HPFIXEQE3G5MWNQ20VQH16DDSXY2D' where id=7; -update noar tt set b1='QZ9OGK5QMZN' where id=7; -update noar ti set b1='QZ9OGK5QMZN' where id=7; -update noar tt set v0='FD4ZE6A2QRGZVX0VAVG47ERIS' where id=7; -update noar ti set v0='FD4ZE6A2QRGZVX0VAVG47ERIS' where id=7; -update noar tt set b2='146S6HUJH2JY82DOIV9ZUYQ08YQF' where id=7; -update noar ti set b2='146S6HUJH2JY82DOIV9ZUYQ08YQF' where id=7; -update noar tt set v0='JWBL3AA88DUH9O4MWKKXIVX1Y' where id=8; -update noar ti set v0='JWBL3AA88DUH9O4MWKKXIVX1Y' where id=8; -update noar tt set b0='QMEYKB2ZFJ7CR9C' where id=8; -update noar ti set b0='QMEYKB2ZFJ7CR9C' where id=8; -update noar tt set v0='3YZE6RKQYCLILJTSUNLRWJ' where id=8; -update noar ti set v0='3YZE6RKQYCLILJTSUNLRWJ' where id=8; -update noar tt set b1='MZ88MTYLM91POPWKBL4YR42' where id=8; -update noar ti set b1='MZ88MTYLM91POPWKBL4YR42' where id=8; -update noar tt set v0='E9Z5IV3Q5QGXGSCDHHPPT29PXEVWS10N' where id=8; -update noar ti set v0='E9Z5IV3Q5QGXGSCDHHPPT29PXEVWS10N' where id=8; -update noar tt set b2='8RXXW09' where id=8; -update noar ti set b2='8RXXW09' where id=8; -update noar tt set v0='8G4JFPTVC2' where id=9; -update noar ti set v0='8G4JFPTVC2' where id=9; -update noar tt set b0='V2X8IYO53' where id=9; -update noar ti set b0='V2X8IYO53' where id=9; -update noar tt set v0='C5OOAMFMWAAGIDXN7LCJRMGJGI6LJMK' where id=9; -update noar ti set v0='C5OOAMFMWAAGIDXN7LCJRMGJGI6LJMK' where id=9; -update noar tt set b1='JLY137NGHJ0NWZ4BW2QHIEACBQ57RYGP' where id=9; -update noar ti set b1='JLY137NGHJ0NWZ4BW2QHIEACBQ57RYGP' where id=9; -update noar tt set v0='73DPP8QP733RQD8Q315V8Q3KB1J7CZZ' where id=9; -update noar ti set v0='73DPP8QP733RQD8Q315V8Q3KB1J7CZZ' where id=9; -update noar tt set b2='8962W028V' where id=9; -update noar ti set b2='8962W028V' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -v0 varchar(256) not null, -b0 blob not null, -b1 tinyblob not null, -b2 longblob not null -) engine=tokudb; -insert into tt values (1,'','','',''); -insert into tt values (2,'','','',''); -insert into tt values (3,'','','',''); -insert into tt values (4,'','','',''); -insert into tt values (5,'','','',''); -insert into tt values (6,'','','',''); -insert into tt values (7,'','','',''); -insert into tt values (8,'','','',''); -insert into tt values (9,'','','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='TH15PY73DK' where id=1; -update noar ti set v0='TH15PY73DK' where id=1; -update noar tt set b0='MJ01G5634CJ80KDCFCZ189OEMI4T' where id=1; -update noar ti set b0='MJ01G5634CJ80KDCFCZ189OEMI4T' where id=1; -update noar tt set v0='41Q4BTSQXMESELQOKQGC' where id=1; -update noar ti set v0='41Q4BTSQXMESELQOKQGC' where id=1; -update noar tt set b1='Q76MJEQVKBLOMVCX' where id=1; -update noar ti set b1='Q76MJEQVKBLOMVCX' where id=1; -update noar tt set v0='8CKCF5M5DFJGLN3L9M7SQTS8JZDETEN' where id=1; -update noar ti set v0='8CKCF5M5DFJGLN3L9M7SQTS8JZDETEN' where id=1; -update noar tt set b2='88KK5C7LAZVQL9PBHNOYUF' where id=1; -update noar ti set b2='88KK5C7LAZVQL9PBHNOYUF' where id=1; -update noar tt set v0='RNBMZ9HUPE5K0J0' where id=2; -update noar ti set v0='RNBMZ9HUPE5K0J0' where id=2; -update noar tt set b0='2TIDWLLT1523PJ2D9' where id=2; -update noar ti set b0='2TIDWLLT1523PJ2D9' where id=2; -update noar tt set v0='5QCWUK' where id=2; -update noar ti set v0='5QCWUK' where id=2; -update noar tt set b1='RNN4JR6F47WMUZF5U0' where id=2; -update noar ti set b1='RNN4JR6F47WMUZF5U0' where id=2; -update noar tt set v0='5CIA5BBKHVSZ109' where id=2; -update noar ti set v0='5CIA5BBKHVSZ109' where id=2; -update noar tt set b2='N8LGZV9J6XWEVRWWI455' where id=2; -update noar ti set b2='N8LGZV9J6XWEVRWWI455' where id=2; -update noar tt set v0='CDP21XWGVXVGP3NZ' where id=3; -update noar ti set v0='CDP21XWGVXVGP3NZ' where id=3; -update noar tt set b0='V1STZ854CZA3JHMWS9TC69QBP81BBKL' where id=3; -update noar ti set b0='V1STZ854CZA3JHMWS9TC69QBP81BBKL' where id=3; -update noar tt set v0='BKQZF7ACENRTRCP8Q2H746KRMNL62N' where id=3; -update noar ti set v0='BKQZF7ACENRTRCP8Q2H746KRMNL62N' where id=3; -update noar tt set b1='56P7UPE82CRZB0LY1D' where id=3; -update noar ti set b1='56P7UPE82CRZB0LY1D' where id=3; -update noar tt set v0='SL1WSUNCM3VGQBG928TB59WD9JTQ' where id=3; -update noar ti set v0='SL1WSUNCM3VGQBG928TB59WD9JTQ' where id=3; -update noar tt set b2='WW90XSJYM9IGG9XRTVYQPC' where id=3; -update noar ti set b2='WW90XSJYM9IGG9XRTVYQPC' where id=3; -update noar tt set v0='TM2TL6XYRJBR20LLTMHOSWWC' where id=4; -update noar ti set v0='TM2TL6XYRJBR20LLTMHOSWWC' where id=4; -update noar tt set b0='ES8IFTH0Z0M5EVHZYSWBAVM2IX0CC11' where id=4; -update noar ti set b0='ES8IFTH0Z0M5EVHZYSWBAVM2IX0CC11' where id=4; -update noar tt set v0='EDY85L1BTLM4JHIXXW5' where id=4; -update noar ti set v0='EDY85L1BTLM4JHIXXW5' where id=4; -update noar tt set b1='P06TGX6TCI5VOFUI08VMOREE8WAW3O' where id=4; -update noar ti set b1='P06TGX6TCI5VOFUI08VMOREE8WAW3O' where id=4; -update noar tt set v0='LHI0FOX1JKDHHQVO154HUN8IZHYY1B98' where id=4; -update noar ti set v0='LHI0FOX1JKDHHQVO154HUN8IZHYY1B98' where id=4; -update noar tt set b2='WZJ768O72CD5BDJPW' where id=4; -update noar ti set b2='WZJ768O72CD5BDJPW' where id=4; -update noar tt set v0='UV3MTZUBJ' where id=5; -update noar ti set v0='UV3MTZUBJ' where id=5; -update noar tt set b0='NVZGPUM7K' where id=5; -update noar ti set b0='NVZGPUM7K' where id=5; -update noar tt set v0='EBGKJO901EQM4QDXKZV8' where id=5; -update noar ti set v0='EBGKJO901EQM4QDXKZV8' where id=5; -update noar tt set b1='DZSSW4YCTUE1QJ4US78GSS6X16' where id=5; -update noar ti set b1='DZSSW4YCTUE1QJ4US78GSS6X16' where id=5; -update noar tt set v0='DIK2ICHW' where id=5; -update noar ti set v0='DIK2ICHW' where id=5; -update noar tt set b2='0GN7ZIMMG2' where id=5; -update noar ti set b2='0GN7ZIMMG2' where id=5; -update noar tt set v0='NE0UBZOOVWP7' where id=6; -update noar ti set v0='NE0UBZOOVWP7' where id=6; -update noar tt set b0='SOBQZS6XZ' where id=6; -update noar ti set b0='SOBQZS6XZ' where id=6; -update noar tt set v0='X8' where id=6; -update noar ti set v0='X8' where id=6; -update noar tt set b1='7LJ6OFVK0TQ' where id=6; -update noar ti set b1='7LJ6OFVK0TQ' where id=6; -update noar tt set v0='4IYGUK5' where id=6; -update noar ti set v0='4IYGUK5' where id=6; -update noar tt set b2='VYU8PWLYX98DR4AV4ELCFVRGM7S2' where id=6; -update noar ti set b2='VYU8PWLYX98DR4AV4ELCFVRGM7S2' where id=6; -update noar tt set v0='NF4' where id=7; -update noar ti set v0='NF4' where id=7; -update noar tt set b0='A34NGBXM72SU3TY8SVW1NEVR' where id=7; -update noar ti set b0='A34NGBXM72SU3TY8SVW1NEVR' where id=7; -update noar tt set v0='DJ3ZNIR1Z1WKB0FVQ9RSX3FCQMDHJA' where id=7; -update noar ti set v0='DJ3ZNIR1Z1WKB0FVQ9RSX3FCQMDHJA' where id=7; -update noar tt set b1='0T97W2RMOYJ0F6VW5PRPA1' where id=7; -update noar ti set b1='0T97W2RMOYJ0F6VW5PRPA1' where id=7; -update noar tt set v0='4' where id=7; -update noar ti set v0='4' where id=7; -update noar tt set b2='87L795D2' where id=7; -update noar ti set b2='87L795D2' where id=7; -update noar tt set v0='KVR2H3NSQWJ935897LRBKTYI990' where id=8; -update noar ti set v0='KVR2H3NSQWJ935897LRBKTYI990' where id=8; -update noar tt set b0='L1DCVB' where id=8; -update noar ti set b0='L1DCVB' where id=8; -update noar tt set v0='P1MXBSQD8GC4J7NH5D55OC5' where id=8; -update noar ti set v0='P1MXBSQD8GC4J7NH5D55OC5' where id=8; -update noar tt set b1='MAIHZLIDKDXSTDFP325UXLG' where id=8; -update noar ti set b1='MAIHZLIDKDXSTDFP325UXLG' where id=8; -update noar tt set v0='LK3MG079VW3U2' where id=8; -update noar ti set v0='LK3MG079VW3U2' where id=8; -update noar tt set b2='LNWBMBLQ' where id=8; -update noar ti set b2='LNWBMBLQ' where id=8; -update noar tt set v0='CAPH35G2ZBLK' where id=9; -update noar ti set v0='CAPH35G2ZBLK' where id=9; -update noar tt set b0='49DERRZ6GBRBXN' where id=9; -update noar ti set b0='49DERRZ6GBRBXN' where id=9; -update noar tt set v0='MDGQV7TRBNX3LRECJ34TY' where id=9; -update noar ti set v0='MDGQV7TRBNX3LRECJ34TY' where id=9; -update noar tt set b1='7GZF8WCEAK69HZ3SJWNZD074K' where id=9; -update noar ti set b1='7GZF8WCEAK69HZ3SJWNZD074K' where id=9; -update noar tt set v0='GQTOL8I' where id=9; -update noar ti set v0='GQTOL8I' where id=9; -update noar tt set b2='DNYTUCY49TPRZRYOCRWRW69UH80JGP' where id=9; -update noar ti set b2='DNYTUCY49TPRZRYOCRWRW69UH80JGP' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -v0 varchar(32) null, -b0 blob null, -b1 blob null, -b2 tinyblob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='SA80PG' where id=1; -update noar ti set v0='SA80PG' where id=1; -update noar tt set b0='USS5FE6P4XGPLTBN0EOEOFQB' where id=1; -update noar ti set b0='USS5FE6P4XGPLTBN0EOEOFQB' where id=1; -update noar tt set v0='M7JUWNJODTE4D22I1ZYP64WV' where id=1; -update noar ti set v0='M7JUWNJODTE4D22I1ZYP64WV' where id=1; -update noar tt set b1='9ND3E0DUHRJAOAVOVTFLMMBXHT1A0UQH' where id=1; -update noar ti set b1='9ND3E0DUHRJAOAVOVTFLMMBXHT1A0UQH' where id=1; -update noar tt set v0='T9ZXXD6XZE' where id=1; -update noar ti set v0='T9ZXXD6XZE' where id=1; -update noar tt set b2='DGMPOJ' where id=1; -update noar ti set b2='DGMPOJ' where id=1; -update noar tt set v0='FDM7H7G' where id=2; -update noar ti set v0='FDM7H7G' where id=2; -update noar tt set b0='YUMMS05KO9BRE1CZ4R' where id=2; -update noar ti set b0='YUMMS05KO9BRE1CZ4R' where id=2; -update noar tt set v0='63KFBR6' where id=2; -update noar ti set v0='63KFBR6' where id=2; -update noar tt set b1='N4VW4O8U3D' where id=2; -update noar ti set b1='N4VW4O8U3D' where id=2; -update noar tt set v0='UYB56R8SRKCA8O5O' where id=2; -update noar ti set v0='UYB56R8SRKCA8O5O' where id=2; -update noar tt set b2='3HCEENYOE9HZ0SEP1' where id=2; -update noar ti set b2='3HCEENYOE9HZ0SEP1' where id=2; -update noar tt set v0='GK7YW07HGHV' where id=3; -update noar ti set v0='GK7YW07HGHV' where id=3; -update noar tt set b0='4HHV537SNEGOS3' where id=3; -update noar ti set b0='4HHV537SNEGOS3' where id=3; -update noar tt set v0='UR4U43GFPKQF28AV' where id=3; -update noar ti set v0='UR4U43GFPKQF28AV' where id=3; -update noar tt set b1='BV2WBK2M5EQJ89VGDNC9C' where id=3; -update noar ti set b1='BV2WBK2M5EQJ89VGDNC9C' where id=3; -update noar tt set v0='ZKZ8RO' where id=3; -update noar ti set v0='ZKZ8RO' where id=3; -update noar tt set b2='4SVQWVJ9' where id=3; -update noar ti set b2='4SVQWVJ9' where id=3; -update noar tt set v0='2QKXMN4IFF8Z1GXHNACI81KE1663FQ' where id=4; -update noar ti set v0='2QKXMN4IFF8Z1GXHNACI81KE1663FQ' where id=4; -update noar tt set b0='R3IFSPI0M' where id=4; -update noar ti set b0='R3IFSPI0M' where id=4; -update noar tt set v0='OJMAJMR2A0NHTYEI5W5C8D49' where id=4; -update noar ti set v0='OJMAJMR2A0NHTYEI5W5C8D49' where id=4; -update noar tt set b1='K4W0WDR1JRNRFVWCAQ6XT4WJ4C6XF' where id=4; -update noar ti set b1='K4W0WDR1JRNRFVWCAQ6XT4WJ4C6XF' where id=4; -update noar tt set v0='8768' where id=4; -update noar ti set v0='8768' where id=4; -update noar tt set b2='DVSHBK' where id=4; -update noar ti set b2='DVSHBK' where id=4; -update noar tt set v0='FPT1OM5PPLPB6MWCHQQH3R5Q4Q7VA' where id=5; -update noar ti set v0='FPT1OM5PPLPB6MWCHQQH3R5Q4Q7VA' where id=5; -update noar tt set b0='0NTBNZO0E5DZXHPL4UGL80VL525S2ZFV' where id=5; -update noar ti set b0='0NTBNZO0E5DZXHPL4UGL80VL525S2ZFV' where id=5; -update noar tt set v0='J8XLH1TN4GKWHPLD' where id=5; -update noar ti set v0='J8XLH1TN4GKWHPLD' where id=5; -update noar tt set b1='BIGO8S80J8R4QEQ5C1LZ' where id=5; -update noar ti set b1='BIGO8S80J8R4QEQ5C1LZ' where id=5; -update noar tt set v0='ST' where id=5; -update noar ti set v0='ST' where id=5; -update noar tt set b2='H8F10L06U' where id=5; -update noar ti set b2='H8F10L06U' where id=5; -update noar tt set v0='3VQ1LSWAMUVP' where id=6; -update noar ti set v0='3VQ1LSWAMUVP' where id=6; -update noar tt set b0='0N5RBUGCUXQHGV6DT2HY4P' where id=6; -update noar ti set b0='0N5RBUGCUXQHGV6DT2HY4P' where id=6; -update noar tt set v0='LW' where id=6; -update noar ti set v0='LW' where id=6; -update noar tt set b1='XC7T528FA5G' where id=6; -update noar ti set b1='XC7T528FA5G' where id=6; -update noar tt set v0='HDAVQ5PBEOK6CD108VYAP6SINEVV' where id=6; -update noar ti set v0='HDAVQ5PBEOK6CD108VYAP6SINEVV' where id=6; -update noar tt set b2='M3YKWCQQQWZ4CURX0ONL4TE7' where id=6; -update noar ti set b2='M3YKWCQQQWZ4CURX0ONL4TE7' where id=6; -update noar tt set v0='0IGCIK17N0F9FNQ76IO1H87VN5WKNKKB' where id=7; -update noar ti set v0='0IGCIK17N0F9FNQ76IO1H87VN5WKNKKB' where id=7; -update noar tt set b0='16F1BCE' where id=7; -update noar ti set b0='16F1BCE' where id=7; -update noar tt set v0='F7HYCT5X3V155PQ6KFEAG' where id=7; -update noar ti set v0='F7HYCT5X3V155PQ6KFEAG' where id=7; -update noar tt set b1='BCDI10FVTNMK' where id=7; -update noar ti set b1='BCDI10FVTNMK' where id=7; -update noar tt set v0='MD206ZJRKOC57CS7ISK7' where id=7; -update noar ti set v0='MD206ZJRKOC57CS7ISK7' where id=7; -update noar tt set b2='PNN11WCL2N8NQ36' where id=7; -update noar ti set b2='PNN11WCL2N8NQ36' where id=7; -update noar tt set v0='S' where id=8; -update noar ti set v0='S' where id=8; -update noar tt set b0='AT5I7DO9R1' where id=8; -update noar ti set b0='AT5I7DO9R1' where id=8; -update noar tt set v0='UBTG0KLEG678OMWELQX64M' where id=8; -update noar ti set v0='UBTG0KLEG678OMWELQX64M' where id=8; -update noar tt set b1='YCVZMH' where id=8; -update noar ti set b1='YCVZMH' where id=8; -update noar tt set v0='DIPPRLUPQRAI68V' where id=8; -update noar ti set v0='DIPPRLUPQRAI68V' where id=8; -update noar tt set b2='4TIPR78COMZCS5DOE7HJ5' where id=8; -update noar ti set b2='4TIPR78COMZCS5DOE7HJ5' where id=8; -update noar tt set v0='PN6LWWGIHYE893KE3DTN5AAVKCB81' where id=9; -update noar ti set v0='PN6LWWGIHYE893KE3DTN5AAVKCB81' where id=9; -update noar tt set b0='LUUIEVD0ZWLE8' where id=9; -update noar ti set b0='LUUIEVD0ZWLE8' where id=9; -update noar tt set v0='62Z' where id=9; -update noar ti set v0='62Z' where id=9; -update noar tt set b1='JEEBWUBR1248QKC12IE2' where id=9; -update noar ti set b1='JEEBWUBR1248QKC12IE2' where id=9; -update noar tt set v0='2SWZ' where id=9; -update noar ti set v0='2SWZ' where id=9; -update noar tt set b2='1MPY7LPQWAD6VC0' where id=9; -update noar ti set b2='1MPY7LPQWAD6VC0' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -v0 varchar(256) null, -b0 blob null, -b1 blob null, -b2 tinyblob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='6GJQVFSDL0KDOQ2C8BQ1PMK' where id=1; -update noar ti set v0='6GJQVFSDL0KDOQ2C8BQ1PMK' where id=1; -update noar tt set b0='ESST' where id=1; -update noar ti set b0='ESST' where id=1; -update noar tt set v0='49RXKRGWR' where id=1; -update noar ti set v0='49RXKRGWR' where id=1; -update noar tt set b1='UZNQ' where id=1; -update noar ti set b1='UZNQ' where id=1; -update noar tt set v0='0CX9WFJS90B0LXCNJ0YNU9STLFMZ6JD' where id=1; -update noar ti set v0='0CX9WFJS90B0LXCNJ0YNU9STLFMZ6JD' where id=1; -update noar tt set b2='DJ04THBCA5H6S65QTXIBUH' where id=1; -update noar ti set b2='DJ04THBCA5H6S65QTXIBUH' where id=1; -update noar tt set v0='HIXMG172FLNTZNLXY86XDTPPX33V479J' where id=2; -update noar ti set v0='HIXMG172FLNTZNLXY86XDTPPX33V479J' where id=2; -update noar tt set b0='WPUEM8U2WS99V394FEXX8IM9Q' where id=2; -update noar ti set b0='WPUEM8U2WS99V394FEXX8IM9Q' where id=2; -update noar tt set v0='H2C7KQ6PVFUFM1' where id=2; -update noar ti set v0='H2C7KQ6PVFUFM1' where id=2; -update noar tt set b1='G1JQPO8HAT0DN5UZNY4552LRIC47' where id=2; -update noar ti set b1='G1JQPO8HAT0DN5UZNY4552LRIC47' where id=2; -update noar tt set v0='TR5RC5W2EHZQ8K' where id=2; -update noar ti set v0='TR5RC5W2EHZQ8K' where id=2; -update noar tt set b2='UF1DM123QFUKM0OJ3S1MI0QV41RG' where id=2; -update noar ti set b2='UF1DM123QFUKM0OJ3S1MI0QV41RG' where id=2; -update noar tt set v0='OGCTEWDFCQD0NIAOL6U8' where id=3; -update noar ti set v0='OGCTEWDFCQD0NIAOL6U8' where id=3; -update noar tt set b0='D2EMA' where id=3; -update noar ti set b0='D2EMA' where id=3; -update noar tt set v0='IK2XQAHHCEVO20F5MP' where id=3; -update noar ti set v0='IK2XQAHHCEVO20F5MP' where id=3; -update noar tt set b1='X04490O' where id=3; -update noar ti set b1='X04490O' where id=3; -update noar tt set v0='OGQD9D' where id=3; -update noar ti set v0='OGQD9D' where id=3; -update noar tt set b2='N40NZHVEN8GYN21X2SSMVNC' where id=3; -update noar ti set b2='N40NZHVEN8GYN21X2SSMVNC' where id=3; -update noar tt set v0='5H1X21G16' where id=4; -update noar ti set v0='5H1X21G16' where id=4; -update noar tt set b0='JLS7' where id=4; -update noar ti set b0='JLS7' where id=4; -update noar tt set v0='J' where id=4; -update noar ti set v0='J' where id=4; -update noar tt set b1='6OI4ZIC42RAVBM8M71547ANB' where id=4; -update noar ti set b1='6OI4ZIC42RAVBM8M71547ANB' where id=4; -update noar tt set v0='EM1X6O0EFXVQX' where id=4; -update noar ti set v0='EM1X6O0EFXVQX' where id=4; -update noar tt set b2='09T6GKDW8K37ASUX2MSYTL0I4RN' where id=4; -update noar ti set b2='09T6GKDW8K37ASUX2MSYTL0I4RN' where id=4; -update noar tt set v0='KT1VDKRKID2GIYFPZIBNIR' where id=5; -update noar ti set v0='KT1VDKRKID2GIYFPZIBNIR' where id=5; -update noar tt set b0='SRO76FHS821' where id=5; -update noar ti set b0='SRO76FHS821' where id=5; -update noar tt set v0='LZBN4' where id=5; -update noar ti set v0='LZBN4' where id=5; -update noar tt set b1='CH4V1NSX5MFNL5EKE3' where id=5; -update noar ti set b1='CH4V1NSX5MFNL5EKE3' where id=5; -update noar tt set v0='AHRNJU17953C9QOMAT8M4G' where id=5; -update noar ti set v0='AHRNJU17953C9QOMAT8M4G' where id=5; -update noar tt set b2='1VEF06B8MB0ZPUHL3ZTVO' where id=5; -update noar ti set b2='1VEF06B8MB0ZPUHL3ZTVO' where id=5; -update noar tt set v0='X1CN2P4TZRFU3S59CPVB37O0VSFU2' where id=6; -update noar ti set v0='X1CN2P4TZRFU3S59CPVB37O0VSFU2' where id=6; -update noar tt set b0='MR' where id=6; -update noar ti set b0='MR' where id=6; -update noar tt set v0='JYWJ9E6W7X0LW79HZEN5QBBUSXC' where id=6; -update noar ti set v0='JYWJ9E6W7X0LW79HZEN5QBBUSXC' where id=6; -update noar tt set b1='XQ61ZO1AA1' where id=6; -update noar ti set b1='XQ61ZO1AA1' where id=6; -update noar tt set v0='CY1EDINWIJM6' where id=6; -update noar ti set v0='CY1EDINWIJM6' where id=6; -update noar tt set b2='3HO4T8ZLAXRSS16JF0M5VVK' where id=6; -update noar ti set b2='3HO4T8ZLAXRSS16JF0M5VVK' where id=6; -update noar tt set v0='HFI7E' where id=7; -update noar ti set v0='HFI7E' where id=7; -update noar tt set b0='E03D44VII94OE' where id=7; -update noar ti set b0='E03D44VII94OE' where id=7; -update noar tt set v0='NYTIDO7WO28479GZSMDW57NK4KE' where id=7; -update noar ti set v0='NYTIDO7WO28479GZSMDW57NK4KE' where id=7; -update noar tt set b1='IOD9URKZHINI8ZSSJEOX40GJ' where id=7; -update noar ti set b1='IOD9URKZHINI8ZSSJEOX40GJ' where id=7; -update noar tt set v0='S3Q0QEVQTNMZ' where id=7; -update noar ti set v0='S3Q0QEVQTNMZ' where id=7; -update noar tt set b2='ZK0LEYQPAXVRWGKUAI6SBBALX' where id=7; -update noar ti set b2='ZK0LEYQPAXVRWGKUAI6SBBALX' where id=7; -update noar tt set v0='QL1QUU44' where id=8; -update noar ti set v0='QL1QUU44' where id=8; -update noar tt set b0='NCGAILC2C6ABFG7Q5QATOO5KC16UMQ17' where id=8; -update noar ti set b0='NCGAILC2C6ABFG7Q5QATOO5KC16UMQ17' where id=8; -update noar tt set v0='5LFBKA' where id=8; -update noar ti set v0='5LFBKA' where id=8; -update noar tt set b1='O365AOJKCSIP1IEZB' where id=8; -update noar ti set b1='O365AOJKCSIP1IEZB' where id=8; -update noar tt set v0='VMTEZC0UMZTVVPJ31MQ6R' where id=8; -update noar ti set v0='VMTEZC0UMZTVVPJ31MQ6R' where id=8; -update noar tt set b2='2' where id=8; -update noar ti set b2='2' where id=8; -update noar tt set v0='CHC3WS3NQ8E3' where id=9; -update noar ti set v0='CHC3WS3NQ8E3' where id=9; -update noar tt set b0='7AJCETSRWGD6INIGZ0ETKQ' where id=9; -update noar ti set b0='7AJCETSRWGD6INIGZ0ETKQ' where id=9; -update noar tt set v0='QW1L77S5' where id=9; -update noar ti set v0='QW1L77S5' where id=9; -update noar tt set b1='2ACU3T' where id=9; -update noar ti set b1='2ACU3T' where id=9; -update noar tt set v0='RGT9TSQ50O5MA7FZ9HBPFE0GT6N' where id=9; -update noar ti set v0='RGT9TSQ50O5MA7FZ9HBPFE0GT6N' where id=9; -update noar tt set b2='DXD97YPLYBJ' where id=9; -update noar ti set b2='DXD97YPLYBJ' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -v0 varchar(32) not null, -b0 blob not null, -b1 blob not null, -b2 tinyblob not null -) engine=tokudb; -insert into tt values (1,'','','',''); -insert into tt values (2,'','','',''); -insert into tt values (3,'','','',''); -insert into tt values (4,'','','',''); -insert into tt values (5,'','','',''); -insert into tt values (6,'','','',''); -insert into tt values (7,'','','',''); -insert into tt values (8,'','','',''); -insert into tt values (9,'','','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='YGQ0JB2U5WQP3AOI78TAV1L54F' where id=1; -update noar ti set v0='YGQ0JB2U5WQP3AOI78TAV1L54F' where id=1; -update noar tt set b0='K9Z646ATX1QJR6WKRVREPNSX' where id=1; -update noar ti set b0='K9Z646ATX1QJR6WKRVREPNSX' where id=1; -update noar tt set v0='F15NQZ' where id=1; -update noar ti set v0='F15NQZ' where id=1; -update noar tt set b1='ZH7957RP7K43J' where id=1; -update noar ti set b1='ZH7957RP7K43J' where id=1; -update noar tt set v0='3LR25MEL4' where id=1; -update noar ti set v0='3LR25MEL4' where id=1; -update noar tt set b2='9XN23HFBHAIVKQXQYV7ASFV' where id=1; -update noar ti set b2='9XN23HFBHAIVKQXQYV7ASFV' where id=1; -update noar tt set v0='YIEZTCQT09MP7597Q5JILSFYDDQ8KX' where id=2; -update noar ti set v0='YIEZTCQT09MP7597Q5JILSFYDDQ8KX' where id=2; -update noar tt set b0='RWP06VGLOSO961230YW3XTMTO6AO' where id=2; -update noar ti set b0='RWP06VGLOSO961230YW3XTMTO6AO' where id=2; -update noar tt set v0='FLHB82P5OG6T6LQ' where id=2; -update noar ti set v0='FLHB82P5OG6T6LQ' where id=2; -update noar tt set b1='0H5LMX5FF8VNCM6ACJPIKB' where id=2; -update noar ti set b1='0H5LMX5FF8VNCM6ACJPIKB' where id=2; -update noar tt set v0='CXQA3H1Z3G' where id=2; -update noar ti set v0='CXQA3H1Z3G' where id=2; -update noar tt set b2='A1KB1JFTR6O12F' where id=2; -update noar ti set b2='A1KB1JFTR6O12F' where id=2; -update noar tt set v0='E' where id=3; -update noar ti set v0='E' where id=3; -update noar tt set b0='CF' where id=3; -update noar ti set b0='CF' where id=3; -update noar tt set v0='KWS7WHHSQO584TOY2P7B9WRK9585ALZW' where id=3; -update noar ti set v0='KWS7WHHSQO584TOY2P7B9WRK9585ALZW' where id=3; -update noar tt set b1='ZLVRSZ9XGTP6ZNE3UF22VWW2' where id=3; -update noar ti set b1='ZLVRSZ9XGTP6ZNE3UF22VWW2' where id=3; -update noar tt set v0='5GL5' where id=3; -update noar ti set v0='5GL5' where id=3; -update noar tt set b2='E1JGP9CR98X4G' where id=3; -update noar ti set b2='E1JGP9CR98X4G' where id=3; -update noar tt set v0='LMEU0' where id=4; -update noar ti set v0='LMEU0' where id=4; -update noar tt set b0='QTYV3THLM0ERNESBDQC' where id=4; -update noar ti set b0='QTYV3THLM0ERNESBDQC' where id=4; -update noar tt set v0='4LDB03DGA090H40EF889SPK4EA' where id=4; -update noar ti set v0='4LDB03DGA090H40EF889SPK4EA' where id=4; -update noar tt set b1='9T7KL3YP2I6H0ITFE0QBPX' where id=4; -update noar ti set b1='9T7KL3YP2I6H0ITFE0QBPX' where id=4; -update noar tt set v0='XQAMQP15NHRP' where id=4; -update noar ti set v0='XQAMQP15NHRP' where id=4; -update noar tt set b2='IJZKGPFH1AA8SX2W4S1LLRRU6N' where id=4; -update noar ti set b2='IJZKGPFH1AA8SX2W4S1LLRRU6N' where id=4; -update noar tt set v0='VHLJMC20' where id=5; -update noar ti set v0='VHLJMC20' where id=5; -update noar tt set b0='VRLKYSSI' where id=5; -update noar ti set b0='VRLKYSSI' where id=5; -update noar tt set v0='3ZAF4NUA9ACL1T524EJDKZXUJJE7SE' where id=5; -update noar ti set v0='3ZAF4NUA9ACL1T524EJDKZXUJJE7SE' where id=5; -update noar tt set b1='7GXQ6SS0TSCSTY4E7IYFPX1' where id=5; -update noar ti set b1='7GXQ6SS0TSCSTY4E7IYFPX1' where id=5; -update noar tt set v0='KKOXIJXRR' where id=5; -update noar ti set v0='KKOXIJXRR' where id=5; -update noar tt set b2='T1EAV5PTEGWFZ' where id=5; -update noar ti set b2='T1EAV5PTEGWFZ' where id=5; -update noar tt set v0='F93EJF' where id=6; -update noar ti set v0='F93EJF' where id=6; -update noar tt set b0='7BENK' where id=6; -update noar ti set b0='7BENK' where id=6; -update noar tt set v0='NB6O0J' where id=6; -update noar ti set v0='NB6O0J' where id=6; -update noar tt set b1='S12' where id=6; -update noar ti set b1='S12' where id=6; -update noar tt set v0='LIGUYF8WNQGO7AQ3OCTWZ16CVNDJACCJ' where id=6; -update noar ti set v0='LIGUYF8WNQGO7AQ3OCTWZ16CVNDJACCJ' where id=6; -update noar tt set b2='4MUPNZTJRJNR' where id=6; -update noar ti set b2='4MUPNZTJRJNR' where id=6; -update noar tt set v0='T' where id=7; -update noar ti set v0='T' where id=7; -update noar tt set b0='L5PB8ON8PV3HW6WU967LO' where id=7; -update noar ti set b0='L5PB8ON8PV3HW6WU967LO' where id=7; -update noar tt set v0='R8AABML7ODOJOYVNI' where id=7; -update noar ti set v0='R8AABML7ODOJOYVNI' where id=7; -update noar tt set b1='IQR4KF3CQK' where id=7; -update noar ti set b1='IQR4KF3CQK' where id=7; -update noar tt set v0='8JTV0AA7PEXBY48CG' where id=7; -update noar ti set v0='8JTV0AA7PEXBY48CG' where id=7; -update noar tt set b2='HB49T79' where id=7; -update noar ti set b2='HB49T79' where id=7; -update noar tt set v0='LY5P5T7YJU0SJL13D390H8CHZ601' where id=8; -update noar ti set v0='LY5P5T7YJU0SJL13D390H8CHZ601' where id=8; -update noar tt set b0='AIS2KY6M' where id=8; -update noar ti set b0='AIS2KY6M' where id=8; -update noar tt set v0='WX8PPQ2EH5WMJY3KG08Z5F6X' where id=8; -update noar ti set v0='WX8PPQ2EH5WMJY3KG08Z5F6X' where id=8; -update noar tt set b1='TGAX97F6VW9' where id=8; -update noar ti set b1='TGAX97F6VW9' where id=8; -update noar tt set v0='WT3FTBFX3S7R833T7LZDMOA' where id=8; -update noar ti set v0='WT3FTBFX3S7R833T7LZDMOA' where id=8; -update noar tt set b2='P6MR6U788NSSRLOGQNT8UA3' where id=8; -update noar ti set b2='P6MR6U788NSSRLOGQNT8UA3' where id=8; -update noar tt set v0='P7JBAQDXAS66S7GB1UE9LUJR' where id=9; -update noar ti set v0='P7JBAQDXAS66S7GB1UE9LUJR' where id=9; -update noar tt set b0='DNVC44B0NZSYIU8XFCLF3X8ZYRI' where id=9; -update noar ti set b0='DNVC44B0NZSYIU8XFCLF3X8ZYRI' where id=9; -update noar tt set v0='E03P' where id=9; -update noar ti set v0='E03P' where id=9; -update noar tt set b1='R7SUMSY3KCAMODTJT54' where id=9; -update noar ti set b1='R7SUMSY3KCAMODTJT54' where id=9; -update noar tt set v0='LITW0FBL69AGSICB' where id=9; -update noar ti set v0='LITW0FBL69AGSICB' where id=9; -update noar tt set b2='QZF1CCV15' where id=9; -update noar ti set b2='QZF1CCV15' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -v0 varchar(256) not null, -b0 blob not null, -b1 blob not null, -b2 tinyblob not null -) engine=tokudb; -insert into tt values (1,'','','',''); -insert into tt values (2,'','','',''); -insert into tt values (3,'','','',''); -insert into tt values (4,'','','',''); -insert into tt values (5,'','','',''); -insert into tt values (6,'','','',''); -insert into tt values (7,'','','',''); -insert into tt values (8,'','','',''); -insert into tt values (9,'','','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='WEICMI03B3L98HEG2L' where id=1; -update noar ti set v0='WEICMI03B3L98HEG2L' where id=1; -update noar tt set b0='6DUO87IOTWL987PVGN' where id=1; -update noar ti set b0='6DUO87IOTWL987PVGN' where id=1; -update noar tt set v0='O' where id=1; -update noar ti set v0='O' where id=1; -update noar tt set b1='AFFTHSXH4G44A10XW3ORQC9GSZW2U' where id=1; -update noar ti set b1='AFFTHSXH4G44A10XW3ORQC9GSZW2U' where id=1; -update noar tt set v0='LJBP5E' where id=1; -update noar ti set v0='LJBP5E' where id=1; -update noar tt set b2='LFQPB3FG75R0A89U79BQVZ31L6' where id=1; -update noar ti set b2='LFQPB3FG75R0A89U79BQVZ31L6' where id=1; -update noar tt set v0='H262AYQFXYGGPYW9BNA3TQG' where id=2; -update noar ti set v0='H262AYQFXYGGPYW9BNA3TQG' where id=2; -update noar tt set b0='AKU2N7SPSW5NEIGX2NDQIU8VGHEKMQ' where id=2; -update noar ti set b0='AKU2N7SPSW5NEIGX2NDQIU8VGHEKMQ' where id=2; -update noar tt set v0='N2BU8AR00M9E9N20W4G' where id=2; -update noar ti set v0='N2BU8AR00M9E9N20W4G' where id=2; -update noar tt set b1='B2GZW25XHG4Q32CCDLXF1' where id=2; -update noar ti set b1='B2GZW25XHG4Q32CCDLXF1' where id=2; -update noar tt set v0='2MM6KGL6EPGPXAL1M6' where id=2; -update noar ti set v0='2MM6KGL6EPGPXAL1M6' where id=2; -update noar tt set b2='AIGM3DHPG' where id=2; -update noar ti set b2='AIGM3DHPG' where id=2; -update noar tt set v0='J5AYDH8CYWIZK4' where id=3; -update noar ti set v0='J5AYDH8CYWIZK4' where id=3; -update noar tt set b0='PESZFGHN2OD2243NJ' where id=3; -update noar ti set b0='PESZFGHN2OD2243NJ' where id=3; -update noar tt set v0='DWTK5RGZB5P01THT' where id=3; -update noar ti set v0='DWTK5RGZB5P01THT' where id=3; -update noar tt set b1='UYW2775ZWE' where id=3; -update noar ti set b1='UYW2775ZWE' where id=3; -update noar tt set v0='3LAORLB9SSFKE2M7SQT99P' where id=3; -update noar ti set v0='3LAORLB9SSFKE2M7SQT99P' where id=3; -update noar tt set b2='AK3POI66ZGAX5R0ZFIOZF3B4NKW' where id=3; -update noar ti set b2='AK3POI66ZGAX5R0ZFIOZF3B4NKW' where id=3; -update noar tt set v0='CGQLK3UOOB30HNV3DRWI' where id=4; -update noar ti set v0='CGQLK3UOOB30HNV3DRWI' where id=4; -update noar tt set b0='K1' where id=4; -update noar ti set b0='K1' where id=4; -update noar tt set v0='PJX9HD71S6JTT8F8B77' where id=4; -update noar ti set v0='PJX9HD71S6JTT8F8B77' where id=4; -update noar tt set b1='A3HEWLX' where id=4; -update noar ti set b1='A3HEWLX' where id=4; -update noar tt set v0='YV1KF967659I5VVU8J1SU5MI5' where id=4; -update noar ti set v0='YV1KF967659I5VVU8J1SU5MI5' where id=4; -update noar tt set b2='WXW0B8ABCTL2SOFHOKQ' where id=4; -update noar ti set b2='WXW0B8ABCTL2SOFHOKQ' where id=4; -update noar tt set v0='L2WWV5SC' where id=5; -update noar ti set v0='L2WWV5SC' where id=5; -update noar tt set b0='M4FV' where id=5; -update noar ti set b0='M4FV' where id=5; -update noar tt set v0='9XH7VB9' where id=5; -update noar ti set v0='9XH7VB9' where id=5; -update noar tt set b1='VEVE' where id=5; -update noar ti set b1='VEVE' where id=5; -update noar tt set v0='REIA2RJDX3XP6BTQNG3P6XX5' where id=5; -update noar ti set v0='REIA2RJDX3XP6BTQNG3P6XX5' where id=5; -update noar tt set b2='RK22WIFGCQG9FYJ' where id=5; -update noar ti set b2='RK22WIFGCQG9FYJ' where id=5; -update noar tt set v0='6K' where id=6; -update noar ti set v0='6K' where id=6; -update noar tt set b0='KB6CI88G3IV8B4EP' where id=6; -update noar ti set b0='KB6CI88G3IV8B4EP' where id=6; -update noar tt set v0='0RDYG9FPW05KCZPT7JU' where id=6; -update noar ti set v0='0RDYG9FPW05KCZPT7JU' where id=6; -update noar tt set b1='ZSPAC2N1H3QOIEOVG' where id=6; -update noar ti set b1='ZSPAC2N1H3QOIEOVG' where id=6; -update noar tt set v0='D4BENW98MZEFV' where id=6; -update noar ti set v0='D4BENW98MZEFV' where id=6; -update noar tt set b2='ABKJ21KKF1WK191I' where id=6; -update noar ti set b2='ABKJ21KKF1WK191I' where id=6; -update noar tt set v0='EN3' where id=7; -update noar ti set v0='EN3' where id=7; -update noar tt set b0='FXVSZJXYKB' where id=7; -update noar ti set b0='FXVSZJXYKB' where id=7; -update noar tt set v0='CF918YZ2W0' where id=7; -update noar ti set v0='CF918YZ2W0' where id=7; -update noar tt set b1='94ZRG18SR29B44V69LZU2X77PE8T' where id=7; -update noar ti set b1='94ZRG18SR29B44V69LZU2X77PE8T' where id=7; -update noar tt set v0='7LA68AXM8QMVTMHNKN9G' where id=7; -update noar ti set v0='7LA68AXM8QMVTMHNKN9G' where id=7; -update noar tt set b2='2GHN46O2G0' where id=7; -update noar ti set b2='2GHN46O2G0' where id=7; -update noar tt set v0='KPHU03G4BDOUEWSSZJ7N08K' where id=8; -update noar ti set v0='KPHU03G4BDOUEWSSZJ7N08K' where id=8; -update noar tt set b0='VPDN7E4SXBP5' where id=8; -update noar ti set b0='VPDN7E4SXBP5' where id=8; -update noar tt set v0='6JWITICLBUK1PU0SEU2XOD8538' where id=8; -update noar ti set v0='6JWITICLBUK1PU0SEU2XOD8538' where id=8; -update noar tt set b1='RMMAL69OVAZJUC1QDZ0V82VWC6WNFNE' where id=8; -update noar ti set b1='RMMAL69OVAZJUC1QDZ0V82VWC6WNFNE' where id=8; -update noar tt set v0='Q197C245' where id=8; -update noar ti set v0='Q197C245' where id=8; -update noar tt set b2='K1C2F06PJKN687FQ0LO9W38GQQ' where id=8; -update noar ti set b2='K1C2F06PJKN687FQ0LO9W38GQQ' where id=8; -update noar tt set v0='MW3M6R6SB4U0ZADS02L7E0PNLW5N' where id=9; -update noar ti set v0='MW3M6R6SB4U0ZADS02L7E0PNLW5N' where id=9; -update noar tt set b0='G2V3QF13J88JYTL76MZOC' where id=9; -update noar ti set b0='G2V3QF13J88JYTL76MZOC' where id=9; -update noar tt set v0='FFK755MQG83UXHPPQLZU3F' where id=9; -update noar ti set v0='FFK755MQG83UXHPPQLZU3F' where id=9; -update noar tt set b1='SEPB2RFI9XZZN' where id=9; -update noar ti set b1='SEPB2RFI9XZZN' where id=9; -update noar tt set v0='ISRWP16H8N7O6T9T' where id=9; -update noar ti set v0='ISRWP16H8N7O6T9T' where id=9; -update noar tt set b2='YB4K6JSOUDVCTKXTA9Y23R9GDGHH' where id=9; -update noar ti set b2='YB4K6JSOUDVCTKXTA9Y23R9GDGHH' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -v0 varchar(32) null, -b0 blob null, -b1 blob null, -b2 blob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='20WYF4OVZC3W7ICNW7CMKR571' where id=1; -update noar ti set v0='20WYF4OVZC3W7ICNW7CMKR571' where id=1; -update noar tt set b0='9H2D4OJIYMHTFJAOCI4PS75IZDE0B' where id=1; -update noar ti set b0='9H2D4OJIYMHTFJAOCI4PS75IZDE0B' where id=1; -update noar tt set v0='OH9U48T51CRSUE4ROORVXK5VPTD4' where id=1; -update noar ti set v0='OH9U48T51CRSUE4ROORVXK5VPTD4' where id=1; -update noar tt set b1='QOC3OBIOE3C2RB4LDOSO93RA267UNADV' where id=1; -update noar ti set b1='QOC3OBIOE3C2RB4LDOSO93RA267UNADV' where id=1; -update noar tt set v0='SNOK4' where id=1; -update noar ti set v0='SNOK4' where id=1; -update noar tt set b2='9HQLKNJA8J2D4R61ZQLFBEPDMZUC2H' where id=1; -update noar ti set b2='9HQLKNJA8J2D4R61ZQLFBEPDMZUC2H' where id=1; -update noar tt set v0='4797V' where id=2; -update noar ti set v0='4797V' where id=2; -update noar tt set b0='FRZ1PL9ZEAPB6H7OCGTG657MYW' where id=2; -update noar ti set b0='FRZ1PL9ZEAPB6H7OCGTG657MYW' where id=2; -update noar tt set v0='K052U605V76IRE9YFNKUUQ2HA7P' where id=2; -update noar ti set v0='K052U605V76IRE9YFNKUUQ2HA7P' where id=2; -update noar tt set b1='RZ8WM6EC0ESPB6EL' where id=2; -update noar ti set b1='RZ8WM6EC0ESPB6EL' where id=2; -update noar tt set v0='WUD2BQVLW8TJB6RNRTM59S6QM' where id=2; -update noar ti set v0='WUD2BQVLW8TJB6RNRTM59S6QM' where id=2; -update noar tt set b2='NBXF9I' where id=2; -update noar ti set b2='NBXF9I' where id=2; -update noar tt set v0='M' where id=3; -update noar ti set v0='M' where id=3; -update noar tt set b0='4FC3TGX' where id=3; -update noar ti set b0='4FC3TGX' where id=3; -update noar tt set v0='RNDPDUJ9KY97L2K5QFSI' where id=3; -update noar ti set v0='RNDPDUJ9KY97L2K5QFSI' where id=3; -update noar tt set b1='LQPQIAKV4HSUE4KDZEF8WPAWBYIRAW4B' where id=3; -update noar ti set b1='LQPQIAKV4HSUE4KDZEF8WPAWBYIRAW4B' where id=3; -update noar tt set v0='DRF5NSSJKMHQX8N935J35IF6' where id=3; -update noar ti set v0='DRF5NSSJKMHQX8N935J35IF6' where id=3; -update noar tt set b2='08S89K' where id=3; -update noar ti set b2='08S89K' where id=3; -update noar tt set v0='N2QWTZQIEQ85T0GXCI89G5A530SQ4' where id=4; -update noar ti set v0='N2QWTZQIEQ85T0GXCI89G5A530SQ4' where id=4; -update noar tt set b0='8H1P97YTNKX2BE3V51MN' where id=4; -update noar ti set b0='8H1P97YTNKX2BE3V51MN' where id=4; -update noar tt set v0='Y5Z8A8B3KV1HL8SFA0GLESUM3AI' where id=4; -update noar ti set v0='Y5Z8A8B3KV1HL8SFA0GLESUM3AI' where id=4; -update noar tt set b1='RJ6P24YM8W9G149KTLIT6G9' where id=4; -update noar ti set b1='RJ6P24YM8W9G149KTLIT6G9' where id=4; -update noar tt set v0='Z7MV61DL' where id=4; -update noar ti set v0='Z7MV61DL' where id=4; -update noar tt set b2='MPOP' where id=4; -update noar ti set b2='MPOP' where id=4; -update noar tt set v0='UX4' where id=5; -update noar ti set v0='UX4' where id=5; -update noar tt set b0='HFS772M4M0W4BQL09N115' where id=5; -update noar ti set b0='HFS772M4M0W4BQL09N115' where id=5; -update noar tt set v0='83A2RFH69OWK4YP0T5OA' where id=5; -update noar ti set v0='83A2RFH69OWK4YP0T5OA' where id=5; -update noar tt set b1='P80W' where id=5; -update noar ti set b1='P80W' where id=5; -update noar tt set v0='5H8DBQ8EOU2U' where id=5; -update noar ti set v0='5H8DBQ8EOU2U' where id=5; -update noar tt set b2='YGCZF3VH1WG8' where id=5; -update noar ti set b2='YGCZF3VH1WG8' where id=5; -update noar tt set v0='LC4BVHX8Q25KZ5NUS39E' where id=6; -update noar ti set v0='LC4BVHX8Q25KZ5NUS39E' where id=6; -update noar tt set b0='HMVYQ6VCP95S5G90P01OLIJV' where id=6; -update noar ti set b0='HMVYQ6VCP95S5G90P01OLIJV' where id=6; -update noar tt set v0='R08VF3HA6705NIVD0PHW4S9P' where id=6; -update noar ti set v0='R08VF3HA6705NIVD0PHW4S9P' where id=6; -update noar tt set b1='42PJF0EFA' where id=6; -update noar ti set b1='42PJF0EFA' where id=6; -update noar tt set v0='NY4TGA' where id=6; -update noar ti set v0='NY4TGA' where id=6; -update noar tt set b2='9XNJ5DTCYUHV' where id=6; -update noar ti set b2='9XNJ5DTCYUHV' where id=6; -update noar tt set v0='W2DP003ZW806N3FHLR2K3PQGMM' where id=7; -update noar ti set v0='W2DP003ZW806N3FHLR2K3PQGMM' where id=7; -update noar tt set b0='WUQIBA2I1HGQZEP8AH6H8730Q7UOVW' where id=7; -update noar ti set b0='WUQIBA2I1HGQZEP8AH6H8730Q7UOVW' where id=7; -update noar tt set v0='QU231SYC3FQ' where id=7; -update noar ti set v0='QU231SYC3FQ' where id=7; -update noar tt set b1='5H3FK65AFOKCBL6ZBRTD' where id=7; -update noar ti set b1='5H3FK65AFOKCBL6ZBRTD' where id=7; -update noar tt set v0='U6EO4BTB1CR7IVE71GHAMG' where id=7; -update noar ti set v0='U6EO4BTB1CR7IVE71GHAMG' where id=7; -update noar tt set b2='WI8IT5RG1SHICDNTMZBMTQ29TC9' where id=7; -update noar ti set b2='WI8IT5RG1SHICDNTMZBMTQ29TC9' where id=7; -update noar tt set v0='589UC2IMSBCK' where id=8; -update noar ti set v0='589UC2IMSBCK' where id=8; -update noar tt set b0='O' where id=8; -update noar ti set b0='O' where id=8; -update noar tt set v0='0JNRUU4EVDK7ITO7IJ40UIIJ3JL69KXE' where id=8; -update noar ti set v0='0JNRUU4EVDK7ITO7IJ40UIIJ3JL69KXE' where id=8; -update noar tt set b1='M1HKEE4SEI7N58YR' where id=8; -update noar ti set b1='M1HKEE4SEI7N58YR' where id=8; -update noar tt set v0='FMVRV63WRLKYAQS1C8' where id=8; -update noar ti set v0='FMVRV63WRLKYAQS1C8' where id=8; -update noar tt set b2='8EMABSBI51DRJPM3FIVPG8' where id=8; -update noar ti set b2='8EMABSBI51DRJPM3FIVPG8' where id=8; -update noar tt set v0='XJQ5WO' where id=9; -update noar ti set v0='XJQ5WO' where id=9; -update noar tt set b0='L38YOPYFS1VGX42I3O7X6E1LY05DSZHM' where id=9; -update noar ti set b0='L38YOPYFS1VGX42I3O7X6E1LY05DSZHM' where id=9; -update noar tt set v0='OHSO' where id=9; -update noar ti set v0='OHSO' where id=9; -update noar tt set b1='G2DXHGYBKQDITAYZLLL8YTBC58' where id=9; -update noar ti set b1='G2DXHGYBKQDITAYZLLL8YTBC58' where id=9; -update noar tt set v0='ENWO39QDNPX1HYVK6MQ1ZWJB9OLOO6B' where id=9; -update noar ti set v0='ENWO39QDNPX1HYVK6MQ1ZWJB9OLOO6B' where id=9; -update noar tt set b2='XE0LZXXQQ6VUTA4CSISAOU' where id=9; -update noar ti set b2='XE0LZXXQQ6VUTA4CSISAOU' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -v0 varchar(256) null, -b0 blob null, -b1 blob null, -b2 blob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='ND2PP77ECRKP' where id=1; -update noar ti set v0='ND2PP77ECRKP' where id=1; -update noar tt set b0='AWJGUS5J0RGJ3ABSQ2Q6' where id=1; -update noar ti set b0='AWJGUS5J0RGJ3ABSQ2Q6' where id=1; -update noar tt set v0='M04KC3DFO1PS5N2HFLHHE2DMVPQG' where id=1; -update noar ti set v0='M04KC3DFO1PS5N2HFLHHE2DMVPQG' where id=1; -update noar tt set b1='AITE7EW5422TEV' where id=1; -update noar ti set b1='AITE7EW5422TEV' where id=1; -update noar tt set v0='7KEOTRPA1IEU4FQ9ZTWX6L' where id=1; -update noar ti set v0='7KEOTRPA1IEU4FQ9ZTWX6L' where id=1; -update noar tt set b2='6ORWC6J418DSO6LRBSETEQTF8IPP' where id=1; -update noar ti set b2='6ORWC6J418DSO6LRBSETEQTF8IPP' where id=1; -update noar tt set v0='LDWX6DP5K6YU1TIJYJCGO2EW8K68' where id=2; -update noar ti set v0='LDWX6DP5K6YU1TIJYJCGO2EW8K68' where id=2; -update noar tt set b0='LXFP662OXMYLWX0C2WU9MEG9JXZW4Y' where id=2; -update noar ti set b0='LXFP662OXMYLWX0C2WU9MEG9JXZW4Y' where id=2; -update noar tt set v0='INXDX91X0OTNC7RNG' where id=2; -update noar ti set v0='INXDX91X0OTNC7RNG' where id=2; -update noar tt set b1='5NSNHDB4WERK81J4H' where id=2; -update noar ti set b1='5NSNHDB4WERK81J4H' where id=2; -update noar tt set v0='5R' where id=2; -update noar ti set v0='5R' where id=2; -update noar tt set b2='HW357HOGSMGCFD' where id=2; -update noar ti set b2='HW357HOGSMGCFD' where id=2; -update noar tt set v0='7HZTV' where id=3; -update noar ti set v0='7HZTV' where id=3; -update noar tt set b0='0D8Y5A10XZS5' where id=3; -update noar ti set b0='0D8Y5A10XZS5' where id=3; -update noar tt set v0='7FGKHAYR3VD' where id=3; -update noar ti set v0='7FGKHAYR3VD' where id=3; -update noar tt set b1='SP4P636SC5C5LUB88SEJBL6CGXL2SP' where id=3; -update noar ti set b1='SP4P636SC5C5LUB88SEJBL6CGXL2SP' where id=3; -update noar tt set v0='DDMN6XJ9SU1UWC2G7' where id=3; -update noar ti set v0='DDMN6XJ9SU1UWC2G7' where id=3; -update noar tt set b2='SRUU86A5' where id=3; -update noar ti set b2='SRUU86A5' where id=3; -update noar tt set v0='DF8ALNS0QGSWXU41MSQU5WVL5T0ID3' where id=4; -update noar ti set v0='DF8ALNS0QGSWXU41MSQU5WVL5T0ID3' where id=4; -update noar tt set b0='G' where id=4; -update noar ti set b0='G' where id=4; -update noar tt set v0='PPZD45M9LEUMTA165V5HTQVMBAR8PG16' where id=4; -update noar ti set v0='PPZD45M9LEUMTA165V5HTQVMBAR8PG16' where id=4; -update noar tt set b1='WR80AKGVKC7J925U1N0KTKHTFU' where id=4; -update noar ti set b1='WR80AKGVKC7J925U1N0KTKHTFU' where id=4; -update noar tt set v0='7MR0OY5K7' where id=4; -update noar ti set v0='7MR0OY5K7' where id=4; -update noar tt set b2='PJWOOMHF6BP0' where id=4; -update noar ti set b2='PJWOOMHF6BP0' where id=4; -update noar tt set v0='8ROI54VXJ' where id=5; -update noar ti set v0='8ROI54VXJ' where id=5; -update noar tt set b0='0C8UDPQA5VL6LSZGZNLFL8N6YEMCC' where id=5; -update noar ti set b0='0C8UDPQA5VL6LSZGZNLFL8N6YEMCC' where id=5; -update noar tt set v0='Y725NS0VBPBY' where id=5; -update noar ti set v0='Y725NS0VBPBY' where id=5; -update noar tt set b1='LD5IUFX5L737GGJAZ' where id=5; -update noar ti set b1='LD5IUFX5L737GGJAZ' where id=5; -update noar tt set v0='EQ6QX4ZH4T24HB4SFTG22FS' where id=5; -update noar ti set v0='EQ6QX4ZH4T24HB4SFTG22FS' where id=5; -update noar tt set b2='AJZA7' where id=5; -update noar ti set b2='AJZA7' where id=5; -update noar tt set v0='EFBN461325WFCE2PN6PNRRZPW1VCP' where id=6; -update noar ti set v0='EFBN461325WFCE2PN6PNRRZPW1VCP' where id=6; -update noar tt set b0='S5RI29RT8DN3QSP7WNNIIKBN2YMBQ4K' where id=6; -update noar ti set b0='S5RI29RT8DN3QSP7WNNIIKBN2YMBQ4K' where id=6; -update noar tt set v0='R1673BU9DVZLTM7SQR8W4OP39CD' where id=6; -update noar ti set v0='R1673BU9DVZLTM7SQR8W4OP39CD' where id=6; -update noar tt set b1='P5IPF01TNVJDQQB4ML7W' where id=6; -update noar ti set b1='P5IPF01TNVJDQQB4ML7W' where id=6; -update noar tt set v0='R19TN5' where id=6; -update noar ti set v0='R19TN5' where id=6; -update noar tt set b2='SD' where id=6; -update noar ti set b2='SD' where id=6; -update noar tt set v0='9YGI8PSBUCN0S05Y' where id=7; -update noar ti set v0='9YGI8PSBUCN0S05Y' where id=7; -update noar tt set b0='7' where id=7; -update noar ti set b0='7' where id=7; -update noar tt set v0='AUD2YEM25JORQFIZ98TSWJI' where id=7; -update noar ti set v0='AUD2YEM25JORQFIZ98TSWJI' where id=7; -update noar tt set b1='6FQ' where id=7; -update noar ti set b1='6FQ' where id=7; -update noar tt set v0='4YZ3R6D9P26L199FHJ' where id=7; -update noar ti set v0='4YZ3R6D9P26L199FHJ' where id=7; -update noar tt set b2='SKEEMR1W5HXDVT' where id=7; -update noar ti set b2='SKEEMR1W5HXDVT' where id=7; -update noar tt set v0='UFGAKOCKO1YUMQISY3IM9CZ2FS5UMF' where id=8; -update noar ti set v0='UFGAKOCKO1YUMQISY3IM9CZ2FS5UMF' where id=8; -update noar tt set b0='SF2EAXMCDJLGK27R' where id=8; -update noar ti set b0='SF2EAXMCDJLGK27R' where id=8; -update noar tt set v0='G48Y' where id=8; -update noar ti set v0='G48Y' where id=8; -update noar tt set b1='79615FMJ4CX2LUC6CLKO8I' where id=8; -update noar ti set b1='79615FMJ4CX2LUC6CLKO8I' where id=8; -update noar tt set v0='7WEESB35FNXUWSQPZ366AC03KB9SU' where id=8; -update noar ti set v0='7WEESB35FNXUWSQPZ366AC03KB9SU' where id=8; -update noar tt set b2='QN9Y9BW58HI5FMNQQZ7N9QPLTSS' where id=8; -update noar ti set b2='QN9Y9BW58HI5FMNQQZ7N9QPLTSS' where id=8; -update noar tt set v0='CHYCYP1BCMAM4E6PBCB2R9KQ' where id=9; -update noar ti set v0='CHYCYP1BCMAM4E6PBCB2R9KQ' where id=9; -update noar tt set b0='FEPD1UGN0Y' where id=9; -update noar ti set b0='FEPD1UGN0Y' where id=9; -update noar tt set v0='0BAHVCLWR3NR' where id=9; -update noar ti set v0='0BAHVCLWR3NR' where id=9; -update noar tt set b1='8EZNK8WJMAW' where id=9; -update noar ti set b1='8EZNK8WJMAW' where id=9; -update noar tt set v0='FUB3OLP3CV68U6FA4NX' where id=9; -update noar ti set v0='FUB3OLP3CV68U6FA4NX' where id=9; -update noar tt set b2='0AEBIN4G49NDO' where id=9; -update noar ti set b2='0AEBIN4G49NDO' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -v0 varchar(32) not null, -b0 blob not null, -b1 blob not null, -b2 blob not null -) engine=tokudb; -insert into tt values (1,'','','',''); -insert into tt values (2,'','','',''); -insert into tt values (3,'','','',''); -insert into tt values (4,'','','',''); -insert into tt values (5,'','','',''); -insert into tt values (6,'','','',''); -insert into tt values (7,'','','',''); -insert into tt values (8,'','','',''); -insert into tt values (9,'','','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='Y602IAFU4ZDN78RFKC910' where id=1; -update noar ti set v0='Y602IAFU4ZDN78RFKC910' where id=1; -update noar tt set b0='1WEZPKHBDRDBPGSPUPR' where id=1; -update noar ti set b0='1WEZPKHBDRDBPGSPUPR' where id=1; -update noar tt set v0='26VMS6SDST8YQZTVKXMMHQ7Z6HV' where id=1; -update noar ti set v0='26VMS6SDST8YQZTVKXMMHQ7Z6HV' where id=1; -update noar tt set b1='AGF46JL01951ANG' where id=1; -update noar ti set b1='AGF46JL01951ANG' where id=1; -update noar tt set v0='VV9ITRDQ43CPY81D47P' where id=1; -update noar ti set v0='VV9ITRDQ43CPY81D47P' where id=1; -update noar tt set b2='XXH54NGZK49' where id=1; -update noar ti set b2='XXH54NGZK49' where id=1; -update noar tt set v0='ZMD7XTC' where id=2; -update noar ti set v0='ZMD7XTC' where id=2; -update noar tt set b0='0F61L1IXU' where id=2; -update noar ti set b0='0F61L1IXU' where id=2; -update noar tt set v0='FUACLUGQSAQ0461TRQ9' where id=2; -update noar ti set v0='FUACLUGQSAQ0461TRQ9' where id=2; -update noar tt set b1='PQV2O' where id=2; -update noar ti set b1='PQV2O' where id=2; -update noar tt set v0='H9PBXDDZG' where id=2; -update noar ti set v0='H9PBXDDZG' where id=2; -update noar tt set b2='DGJQSVSGACPE1JEH5SS8GBS6ZO0O7' where id=2; -update noar ti set b2='DGJQSVSGACPE1JEH5SS8GBS6ZO0O7' where id=2; -update noar tt set v0='OM' where id=3; -update noar ti set v0='OM' where id=3; -update noar tt set b0='0' where id=3; -update noar ti set b0='0' where id=3; -update noar tt set v0='VTKANW1WR4P9' where id=3; -update noar ti set v0='VTKANW1WR4P9' where id=3; -update noar tt set b1='KW2J2MJWNBSBLNQ' where id=3; -update noar ti set b1='KW2J2MJWNBSBLNQ' where id=3; -update noar tt set v0='W8CJCJDJNBAUWHFS' where id=3; -update noar ti set v0='W8CJCJDJNBAUWHFS' where id=3; -update noar tt set b2='HWDEO4NV0OQ46E0LT2LJULKBM' where id=3; -update noar ti set b2='HWDEO4NV0OQ46E0LT2LJULKBM' where id=3; -update noar tt set v0='B7OCMXRZTOV2QOBTLDSEULY23' where id=4; -update noar ti set v0='B7OCMXRZTOV2QOBTLDSEULY23' where id=4; -update noar tt set b0='ZC5LORFU6EZZH' where id=4; -update noar ti set b0='ZC5LORFU6EZZH' where id=4; -update noar tt set v0='Q5RGPI7S6OBRR3TLPYF' where id=4; -update noar ti set v0='Q5RGPI7S6OBRR3TLPYF' where id=4; -update noar tt set b1='DR1CIWPF' where id=4; -update noar ti set b1='DR1CIWPF' where id=4; -update noar tt set v0='2SK1C87QMNM5' where id=4; -update noar ti set v0='2SK1C87QMNM5' where id=4; -update noar tt set b2='4UX85IYKL4B5V9ASAY8KJ2WRS5' where id=4; -update noar ti set b2='4UX85IYKL4B5V9ASAY8KJ2WRS5' where id=4; -update noar tt set v0='OBE2ER96KB6GW1YBRKW33PWH894JU' where id=5; -update noar ti set v0='OBE2ER96KB6GW1YBRKW33PWH894JU' where id=5; -update noar tt set b0='QMMXYETWO70KSQ88ZYIQT6IKTMNG3MW' where id=5; -update noar ti set b0='QMMXYETWO70KSQ88ZYIQT6IKTMNG3MW' where id=5; -update noar tt set v0='MSNMKQHF3TED9HLBN42YW628JNBCI4' where id=5; -update noar ti set v0='MSNMKQHF3TED9HLBN42YW628JNBCI4' where id=5; -update noar tt set b1='U3C3ZOM8OOM3VE0G855G' where id=5; -update noar ti set b1='U3C3ZOM8OOM3VE0G855G' where id=5; -update noar tt set v0='EZWMH1SXQU2M0K15HD0VQQMA' where id=5; -update noar ti set v0='EZWMH1SXQU2M0K15HD0VQQMA' where id=5; -update noar tt set b2='HNLDRQ6XQANK' where id=5; -update noar ti set b2='HNLDRQ6XQANK' where id=5; -update noar tt set v0='YERRW4C40' where id=6; -update noar ti set v0='YERRW4C40' where id=6; -update noar tt set b0='JD' where id=6; -update noar ti set b0='JD' where id=6; -update noar tt set v0='2MKYHYMVEGZSEWCMGRX6SQ332' where id=6; -update noar ti set v0='2MKYHYMVEGZSEWCMGRX6SQ332' where id=6; -update noar tt set b1='4DMB6ETH6JRGK' where id=6; -update noar ti set b1='4DMB6ETH6JRGK' where id=6; -update noar tt set v0='U19I' where id=6; -update noar ti set v0='U19I' where id=6; -update noar tt set b2='DMK2D8UL0E8HG166743YVX65' where id=6; -update noar ti set b2='DMK2D8UL0E8HG166743YVX65' where id=6; -update noar tt set v0='EPZXTZLOFL7MJYZHASYJ50D7FQY0D8' where id=7; -update noar ti set v0='EPZXTZLOFL7MJYZHASYJ50D7FQY0D8' where id=7; -update noar tt set b0='1CVRAPLY6DEO1CGHDLI47TL27' where id=7; -update noar ti set b0='1CVRAPLY6DEO1CGHDLI47TL27' where id=7; -update noar tt set v0='LONEE2W' where id=7; -update noar ti set v0='LONEE2W' where id=7; -update noar tt set b1='BDB8IMMBELQQQ3U53CQJ0PQZ1' where id=7; -update noar ti set b1='BDB8IMMBELQQQ3U53CQJ0PQZ1' where id=7; -update noar tt set v0='4Y3VQ9IUUJTLB8K8IXY2W' where id=7; -update noar ti set v0='4Y3VQ9IUUJTLB8K8IXY2W' where id=7; -update noar tt set b2='MO02Y7TMQZTN0E5HJQYMQ77IKM9TRYJA' where id=7; -update noar ti set b2='MO02Y7TMQZTN0E5HJQYMQ77IKM9TRYJA' where id=7; -update noar tt set v0='HLFPC18TE' where id=8; -update noar ti set v0='HLFPC18TE' where id=8; -update noar tt set b0='7B4MBS' where id=8; -update noar ti set b0='7B4MBS' where id=8; -update noar tt set v0='6GEOBRTASR9T3XNICD3E4M3XMFK' where id=8; -update noar ti set v0='6GEOBRTASR9T3XNICD3E4M3XMFK' where id=8; -update noar tt set b1='MM55K8J' where id=8; -update noar ti set b1='MM55K8J' where id=8; -update noar tt set v0='2CJ2VPETM3A64GUYYHGY9Z' where id=8; -update noar ti set v0='2CJ2VPETM3A64GUYYHGY9Z' where id=8; -update noar tt set b2='5YCQKAAXI8RLSAZSFDK612VDCVYXLB' where id=8; -update noar ti set b2='5YCQKAAXI8RLSAZSFDK612VDCVYXLB' where id=8; -update noar tt set v0='LOPMIAGSDUKTNSUJRPFFE3ZKTD2WUA' where id=9; -update noar ti set v0='LOPMIAGSDUKTNSUJRPFFE3ZKTD2WUA' where id=9; -update noar tt set b0='ZU6G05GKVVNCIW9BM87K6B6CVJ6' where id=9; -update noar ti set b0='ZU6G05GKVVNCIW9BM87K6B6CVJ6' where id=9; -update noar tt set v0='K' where id=9; -update noar ti set v0='K' where id=9; -update noar tt set b1='NUZV4K9AOKB' where id=9; -update noar ti set b1='NUZV4K9AOKB' where id=9; -update noar tt set v0='47TOGYQK' where id=9; -update noar ti set v0='47TOGYQK' where id=9; -update noar tt set b2='LMYQM002USXZKSLI466Y68XBFOR' where id=9; -update noar ti set b2='LMYQM002USXZKSLI466Y68XBFOR' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -v0 varchar(256) not null, -b0 blob not null, -b1 blob not null, -b2 blob not null -) engine=tokudb; -insert into tt values (1,'','','',''); -insert into tt values (2,'','','',''); -insert into tt values (3,'','','',''); -insert into tt values (4,'','','',''); -insert into tt values (5,'','','',''); -insert into tt values (6,'','','',''); -insert into tt values (7,'','','',''); -insert into tt values (8,'','','',''); -insert into tt values (9,'','','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='Q2A0INT9CK6QMP6LL3PHNN' where id=1; -update noar ti set v0='Q2A0INT9CK6QMP6LL3PHNN' where id=1; -update noar tt set b0='1NI8FRDSA4V32GG2V0C7877BXOVTPM' where id=1; -update noar ti set b0='1NI8FRDSA4V32GG2V0C7877BXOVTPM' where id=1; -update noar tt set v0='EJ43F8SBKH2OTTPFA' where id=1; -update noar ti set v0='EJ43F8SBKH2OTTPFA' where id=1; -update noar tt set b1='2U3EPQ0WU4PE' where id=1; -update noar ti set b1='2U3EPQ0WU4PE' where id=1; -update noar tt set v0='W1QJBHTGNZLMEAMT2ERYME7XHK1WGG' where id=1; -update noar ti set v0='W1QJBHTGNZLMEAMT2ERYME7XHK1WGG' where id=1; -update noar tt set b2='4GSFWL0H53KY7UMW3EEW66DU1NUS1IKN' where id=1; -update noar ti set b2='4GSFWL0H53KY7UMW3EEW66DU1NUS1IKN' where id=1; -update noar tt set v0='I61GXFOICHK' where id=2; -update noar ti set v0='I61GXFOICHK' where id=2; -update noar tt set b0='6EVWABNCX9XUBJM' where id=2; -update noar ti set b0='6EVWABNCX9XUBJM' where id=2; -update noar tt set v0='2' where id=2; -update noar ti set v0='2' where id=2; -update noar tt set b1='CYJLCXJKKG5JVVTSZC4QJSDON84C' where id=2; -update noar ti set b1='CYJLCXJKKG5JVVTSZC4QJSDON84C' where id=2; -update noar tt set v0='F22' where id=2; -update noar ti set v0='F22' where id=2; -update noar tt set b2='EY4HQ7U1BAY9WQY20' where id=2; -update noar ti set b2='EY4HQ7U1BAY9WQY20' where id=2; -update noar tt set v0='I16BD' where id=3; -update noar ti set v0='I16BD' where id=3; -update noar tt set b0='0UQQKQZ' where id=3; -update noar ti set b0='0UQQKQZ' where id=3; -update noar tt set v0='S0H6I5RQL5AJ6T2E4NT91FPI9' where id=3; -update noar ti set v0='S0H6I5RQL5AJ6T2E4NT91FPI9' where id=3; -update noar tt set b1='X6B51Q130TNRC4LY01HE2VWDMENDNI' where id=3; -update noar ti set b1='X6B51Q130TNRC4LY01HE2VWDMENDNI' where id=3; -update noar tt set v0='JBV' where id=3; -update noar ti set v0='JBV' where id=3; -update noar tt set b2='RIWJ584MDZIL1' where id=3; -update noar ti set b2='RIWJ584MDZIL1' where id=3; -update noar tt set v0='OQTNO5HNDNCQNP39CT' where id=4; -update noar ti set v0='OQTNO5HNDNCQNP39CT' where id=4; -update noar tt set b0='KGMVIO4P9GJ82BRK4QUQXOIVOY' where id=4; -update noar ti set b0='KGMVIO4P9GJ82BRK4QUQXOIVOY' where id=4; -update noar tt set v0='7UWRKN5K' where id=4; -update noar ti set v0='7UWRKN5K' where id=4; -update noar tt set b1='JM1YB057FASEW0YR4UHZSM7264Z' where id=4; -update noar ti set b1='JM1YB057FASEW0YR4UHZSM7264Z' where id=4; -update noar tt set v0='8PTEJZB0IE3DT22O1K9028KBK5Q' where id=4; -update noar ti set v0='8PTEJZB0IE3DT22O1K9028KBK5Q' where id=4; -update noar tt set b2='2WZWSX' where id=4; -update noar ti set b2='2WZWSX' where id=4; -update noar tt set v0='IZDSDTXZCM8V' where id=5; -update noar ti set v0='IZDSDTXZCM8V' where id=5; -update noar tt set b0='1AKEL9386KAYTTNSYU' where id=5; -update noar ti set b0='1AKEL9386KAYTTNSYU' where id=5; -update noar tt set v0='IJWB20DJ039' where id=5; -update noar ti set v0='IJWB20DJ039' where id=5; -update noar tt set b1='Z' where id=5; -update noar ti set b1='Z' where id=5; -update noar tt set v0='4Y8FW1K4GVEO1' where id=5; -update noar ti set v0='4Y8FW1K4GVEO1' where id=5; -update noar tt set b2='93B0P70Q' where id=5; -update noar ti set b2='93B0P70Q' where id=5; -update noar tt set v0='E3V84H3201OJNO0JQCM5' where id=6; -update noar ti set v0='E3V84H3201OJNO0JQCM5' where id=6; -update noar tt set b0='E2XVNNCF7IA' where id=6; -update noar ti set b0='E2XVNNCF7IA' where id=6; -update noar tt set v0='59FGXR' where id=6; -update noar ti set v0='59FGXR' where id=6; -update noar tt set b1='ETE0DQJ' where id=6; -update noar ti set b1='ETE0DQJ' where id=6; -update noar tt set v0='L3JWB' where id=6; -update noar ti set v0='L3JWB' where id=6; -update noar tt set b2='EVMIFKHC1H' where id=6; -update noar ti set b2='EVMIFKHC1H' where id=6; -update noar tt set v0='X7' where id=7; -update noar ti set v0='X7' where id=7; -update noar tt set b0='9HFBPJ90UBLTSABZITKY8BGRMCBL' where id=7; -update noar ti set b0='9HFBPJ90UBLTSABZITKY8BGRMCBL' where id=7; -update noar tt set v0='J9WBVXIMREWNCPYJMSNDYL63OMCQW0' where id=7; -update noar ti set v0='J9WBVXIMREWNCPYJMSNDYL63OMCQW0' where id=7; -update noar tt set b1='5' where id=7; -update noar ti set b1='5' where id=7; -update noar tt set v0='KU6WSI30JE' where id=7; -update noar ti set v0='KU6WSI30JE' where id=7; -update noar tt set b2='ILHPQMHOYDKDZRGYK4IDV' where id=7; -update noar ti set b2='ILHPQMHOYDKDZRGYK4IDV' where id=7; -update noar tt set v0='Q08C6463' where id=8; -update noar ti set v0='Q08C6463' where id=8; -update noar tt set b0='NOF4OK9Q8HX2IH3WBLVLGB6A' where id=8; -update noar ti set b0='NOF4OK9Q8HX2IH3WBLVLGB6A' where id=8; -update noar tt set v0='SJHQUR7O8G72O8V6T91NXH4MJLXA' where id=8; -update noar ti set v0='SJHQUR7O8G72O8V6T91NXH4MJLXA' where id=8; -update noar tt set b1='81JPFC7X9DFK8D7FEXGVFW' where id=8; -update noar ti set b1='81JPFC7X9DFK8D7FEXGVFW' where id=8; -update noar tt set v0='0JGGF2SVE5RL6FPIH7DJ1' where id=8; -update noar ti set v0='0JGGF2SVE5RL6FPIH7DJ1' where id=8; -update noar tt set b2='W' where id=8; -update noar ti set b2='W' where id=8; -update noar tt set v0='RQ081M3YBM9IDU9H' where id=9; -update noar ti set v0='RQ081M3YBM9IDU9H' where id=9; -update noar tt set b0='JAMCD09Q' where id=9; -update noar ti set b0='JAMCD09Q' where id=9; -update noar tt set v0='4NS' where id=9; -update noar ti set v0='4NS' where id=9; -update noar tt set b1='11GEJG373BICU3RXQPUDUG' where id=9; -update noar ti set b1='11GEJG373BICU3RXQPUDUG' where id=9; -update noar tt set v0='VYBXTUFEGH7Y' where id=9; -update noar ti set v0='VYBXTUFEGH7Y' where id=9; -update noar tt set b2='V67B861W3N3BHOJYW' where id=9; -update noar ti set b2='V67B861W3N3BHOJYW' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -v0 varchar(32) null, -b0 blob null, -b1 blob null, -b2 mediumblob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='WX6SD8UP23MQR660NG1PL3S00NAR' where id=1; -update noar ti set v0='WX6SD8UP23MQR660NG1PL3S00NAR' where id=1; -update noar tt set b0='F01HTDCB24YBYSPZIL3LGZ7SHF5' where id=1; -update noar ti set b0='F01HTDCB24YBYSPZIL3LGZ7SHF5' where id=1; -update noar tt set v0='X9Q8DLCWAEFJRQ' where id=1; -update noar ti set v0='X9Q8DLCWAEFJRQ' where id=1; -update noar tt set b1='PZUEYU5H13PF6J' where id=1; -update noar ti set b1='PZUEYU5H13PF6J' where id=1; -update noar tt set v0='4VV8662GPWW08UDR7U41S1ABQMUT1R' where id=1; -update noar ti set v0='4VV8662GPWW08UDR7U41S1ABQMUT1R' where id=1; -update noar tt set b2='WVDLY6NZMVB3AE0ZXH6W62KNOV4P4VB' where id=1; -update noar ti set b2='WVDLY6NZMVB3AE0ZXH6W62KNOV4P4VB' where id=1; -update noar tt set v0='0T' where id=2; -update noar ti set v0='0T' where id=2; -update noar tt set b0='4TNF54Y22LS8R75Y96YHA7MJ' where id=2; -update noar ti set b0='4TNF54Y22LS8R75Y96YHA7MJ' where id=2; -update noar tt set v0='Z6E17BS9FTBZCH9MP3723' where id=2; -update noar ti set v0='Z6E17BS9FTBZCH9MP3723' where id=2; -update noar tt set b1='11B' where id=2; -update noar ti set b1='11B' where id=2; -update noar tt set v0='8P9YDXMORM56L61687XFUPYKUWEI' where id=2; -update noar ti set v0='8P9YDXMORM56L61687XFUPYKUWEI' where id=2; -update noar tt set b2='1X840FPNMWGA93P60D7XTK1A71Q' where id=2; -update noar ti set b2='1X840FPNMWGA93P60D7XTK1A71Q' where id=2; -update noar tt set v0='OK2YHX4KLVQKCLAKBRA5COYPLOT3HOLY' where id=3; -update noar ti set v0='OK2YHX4KLVQKCLAKBRA5COYPLOT3HOLY' where id=3; -update noar tt set b0='GQO48VO6F73M6FPM1EI3CSSK25O7O9YT' where id=3; -update noar ti set b0='GQO48VO6F73M6FPM1EI3CSSK25O7O9YT' where id=3; -update noar tt set v0='8JKDSJFR1G9ZTTAA0710XE36' where id=3; -update noar ti set v0='8JKDSJFR1G9ZTTAA0710XE36' where id=3; -update noar tt set b1='NI2XQQ35PKVZ3C' where id=3; -update noar ti set b1='NI2XQQ35PKVZ3C' where id=3; -update noar tt set v0='LZAEV3A481CXHC7U6CFR' where id=3; -update noar ti set v0='LZAEV3A481CXHC7U6CFR' where id=3; -update noar tt set b2='5IXOBZB0XAS4F' where id=3; -update noar ti set b2='5IXOBZB0XAS4F' where id=3; -update noar tt set v0='HV3HE5SYGJO22CP3RH3R' where id=4; -update noar ti set v0='HV3HE5SYGJO22CP3RH3R' where id=4; -update noar tt set b0='YLN474FQ3HI' where id=4; -update noar ti set b0='YLN474FQ3HI' where id=4; -update noar tt set v0='SLU' where id=4; -update noar ti set v0='SLU' where id=4; -update noar tt set b1='PZJCTIF' where id=4; -update noar ti set b1='PZJCTIF' where id=4; -update noar tt set v0='WECNUP' where id=4; -update noar ti set v0='WECNUP' where id=4; -update noar tt set b2='YCBVO41ZQ' where id=4; -update noar ti set b2='YCBVO41ZQ' where id=4; -update noar tt set v0='UA6WJOM8NFAVLHRONT8OL' where id=5; -update noar ti set v0='UA6WJOM8NFAVLHRONT8OL' where id=5; -update noar tt set b0='BPN2I' where id=5; -update noar ti set b0='BPN2I' where id=5; -update noar tt set v0='8BL3HSDLV7TQ5O7B' where id=5; -update noar ti set v0='8BL3HSDLV7TQ5O7B' where id=5; -update noar tt set b1='PSIVO3K4HOX2S3Z62GZ' where id=5; -update noar ti set b1='PSIVO3K4HOX2S3Z62GZ' where id=5; -update noar tt set v0='FOF1VZYMXR' where id=5; -update noar ti set v0='FOF1VZYMXR' where id=5; -update noar tt set b2='LH2U2G71QM1UNODRNAA8D7' where id=5; -update noar ti set b2='LH2U2G71QM1UNODRNAA8D7' where id=5; -update noar tt set v0='G7KAMMOX8P8RJB3E0MBW' where id=6; -update noar ti set v0='G7KAMMOX8P8RJB3E0MBW' where id=6; -update noar tt set b0='DN4DIJG31DJ82AVBVWAWSO8H3TZ' where id=6; -update noar ti set b0='DN4DIJG31DJ82AVBVWAWSO8H3TZ' where id=6; -update noar tt set v0='AJQW5QNPOMBRE2XKAB35J' where id=6; -update noar ti set v0='AJQW5QNPOMBRE2XKAB35J' where id=6; -update noar tt set b1='RXYLS6W045BIX6CQ7YSDL' where id=6; -update noar ti set b1='RXYLS6W045BIX6CQ7YSDL' where id=6; -update noar tt set v0='UH72ZR9L6G5MEYVZB17C' where id=6; -update noar ti set v0='UH72ZR9L6G5MEYVZB17C' where id=6; -update noar tt set b2='V24H3PGTOHGW3QIP3DAD2R' where id=6; -update noar ti set b2='V24H3PGTOHGW3QIP3DAD2R' where id=6; -update noar tt set v0='95XHVZLKIRUJVALD' where id=7; -update noar ti set v0='95XHVZLKIRUJVALD' where id=7; -update noar tt set b0='SAHGTTP39SJHWTKRY66NVPGVIVL' where id=7; -update noar ti set b0='SAHGTTP39SJHWTKRY66NVPGVIVL' where id=7; -update noar tt set v0='JDVWC5O9' where id=7; -update noar ti set v0='JDVWC5O9' where id=7; -update noar tt set b1='R6D0T3R95H' where id=7; -update noar ti set b1='R6D0T3R95H' where id=7; -update noar tt set v0='7FNX5PNCWP11IR34A4FIZN4' where id=7; -update noar ti set v0='7FNX5PNCWP11IR34A4FIZN4' where id=7; -update noar tt set b2='0H4SDD9GVDM1A8KINANNDJFXTWZVP2S' where id=7; -update noar ti set b2='0H4SDD9GVDM1A8KINANNDJFXTWZVP2S' where id=7; -update noar tt set v0='JZSDW6' where id=8; -update noar ti set v0='JZSDW6' where id=8; -update noar tt set b0='69P4HQ10A1L7KZ6' where id=8; -update noar ti set b0='69P4HQ10A1L7KZ6' where id=8; -update noar tt set v0='6PTPU63BIQDRQYFOG9NZ81KRA' where id=8; -update noar ti set v0='6PTPU63BIQDRQYFOG9NZ81KRA' where id=8; -update noar tt set b1='QGEPCHS4Q2C380X938MROX1' where id=8; -update noar ti set b1='QGEPCHS4Q2C380X938MROX1' where id=8; -update noar tt set v0='VPXFS846SYABYWSNUTAIU7872EKLRWG' where id=8; -update noar ti set v0='VPXFS846SYABYWSNUTAIU7872EKLRWG' where id=8; -update noar tt set b2='FE5HZWN77G1RNGOLS9KACZULD8V' where id=8; -update noar ti set b2='FE5HZWN77G1RNGOLS9KACZULD8V' where id=8; -update noar tt set v0='3JSEO668C9R4NL0YUYS' where id=9; -update noar ti set v0='3JSEO668C9R4NL0YUYS' where id=9; -update noar tt set b0='5T' where id=9; -update noar ti set b0='5T' where id=9; -update noar tt set v0='W7FF5G8XQ' where id=9; -update noar ti set v0='W7FF5G8XQ' where id=9; -update noar tt set b1='JAFFL0YDCFXKZQY7O5OGN5' where id=9; -update noar ti set b1='JAFFL0YDCFXKZQY7O5OGN5' where id=9; -update noar tt set v0='09J9S' where id=9; -update noar ti set v0='09J9S' where id=9; -update noar tt set b2='28OGOEV8PZIK' where id=9; -update noar ti set b2='28OGOEV8PZIK' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -v0 varchar(256) null, -b0 blob null, -b1 blob null, -b2 mediumblob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='LHX2ZB6NK' where id=1; -update noar ti set v0='LHX2ZB6NK' where id=1; -update noar tt set b0='YK0EGYAGVT3QJ78PBDQ1' where id=1; -update noar ti set b0='YK0EGYAGVT3QJ78PBDQ1' where id=1; -update noar tt set v0='9U07HY9' where id=1; -update noar ti set v0='9U07HY9' where id=1; -update noar tt set b1='0J1NSUW24TO1DYZ' where id=1; -update noar ti set b1='0J1NSUW24TO1DYZ' where id=1; -update noar tt set v0='J2BWY2IE1PNESGCKSY1KZ116MI' where id=1; -update noar ti set v0='J2BWY2IE1PNESGCKSY1KZ116MI' where id=1; -update noar tt set b2='UQGZZISD' where id=1; -update noar ti set b2='UQGZZISD' where id=1; -update noar tt set v0='5PL9KC02RJMF7CB7X5Z2WS70' where id=2; -update noar ti set v0='5PL9KC02RJMF7CB7X5Z2WS70' where id=2; -update noar tt set b0='R7SV17FN6HV625O04H46HSV86M320NJY' where id=2; -update noar ti set b0='R7SV17FN6HV625O04H46HSV86M320NJY' where id=2; -update noar tt set v0='50YN' where id=2; -update noar ti set v0='50YN' where id=2; -update noar tt set b1='G70FI' where id=2; -update noar ti set b1='G70FI' where id=2; -update noar tt set v0='0H8WK7R4F1XK79A' where id=2; -update noar ti set v0='0H8WK7R4F1XK79A' where id=2; -update noar tt set b2='D5UYUPE6MM0VFMDX6K16MRS5OS1K' where id=2; -update noar ti set b2='D5UYUPE6MM0VFMDX6K16MRS5OS1K' where id=2; -update noar tt set v0='T20CD2LIB344I2JLLXCSKFZXGB6V' where id=3; -update noar ti set v0='T20CD2LIB344I2JLLXCSKFZXGB6V' where id=3; -update noar tt set b0='3UA' where id=3; -update noar ti set b0='3UA' where id=3; -update noar tt set v0='FKTSPE0A26VMUS' where id=3; -update noar ti set v0='FKTSPE0A26VMUS' where id=3; -update noar tt set b1='RBSLGY4YKY7B7RPWT8BFYYG4' where id=3; -update noar ti set b1='RBSLGY4YKY7B7RPWT8BFYYG4' where id=3; -update noar tt set v0='7BCMMQHK9QSDRO46EOSJFFCQBR' where id=3; -update noar ti set v0='7BCMMQHK9QSDRO46EOSJFFCQBR' where id=3; -update noar tt set b2='QG9YJE1HE9M7OJT0U8C70' where id=3; -update noar ti set b2='QG9YJE1HE9M7OJT0U8C70' where id=3; -update noar tt set v0='TFPDYPL' where id=4; -update noar ti set v0='TFPDYPL' where id=4; -update noar tt set b0='KPEC50J3BINWVJW8F3EN56' where id=4; -update noar ti set b0='KPEC50J3BINWVJW8F3EN56' where id=4; -update noar tt set v0='DJEH5WA29E' where id=4; -update noar ti set v0='DJEH5WA29E' where id=4; -update noar tt set b1='ZQ4CCT3HY' where id=4; -update noar ti set b1='ZQ4CCT3HY' where id=4; -update noar tt set v0='O8UK846M5' where id=4; -update noar ti set v0='O8UK846M5' where id=4; -update noar tt set b2='GRN8WHPRX3ZLTY8UAOB9LYX' where id=4; -update noar ti set b2='GRN8WHPRX3ZLTY8UAOB9LYX' where id=4; -update noar tt set v0='K6GYIE0KQKDKZ7UQX44XFYSJ1DHKBK' where id=5; -update noar ti set v0='K6GYIE0KQKDKZ7UQX44XFYSJ1DHKBK' where id=5; -update noar tt set b0='3ME77J7V' where id=5; -update noar ti set b0='3ME77J7V' where id=5; -update noar tt set v0='F' where id=5; -update noar ti set v0='F' where id=5; -update noar tt set b1='7F3V0Q5HMKDRXIDBJY9Z10SISRBCF' where id=5; -update noar ti set b1='7F3V0Q5HMKDRXIDBJY9Z10SISRBCF' where id=5; -update noar tt set v0='8VE641QJOZ937XFBAJ0KQ8GCII' where id=5; -update noar ti set v0='8VE641QJOZ937XFBAJ0KQ8GCII' where id=5; -update noar tt set b2='WB5TNZ8890' where id=5; -update noar ti set b2='WB5TNZ8890' where id=5; -update noar tt set v0='9JFGGOD9DSQ4RHPIKN12YJG31RX0DZWU' where id=6; -update noar ti set v0='9JFGGOD9DSQ4RHPIKN12YJG31RX0DZWU' where id=6; -update noar tt set b0='I9I' where id=6; -update noar ti set b0='I9I' where id=6; -update noar tt set v0='4' where id=6; -update noar ti set v0='4' where id=6; -update noar tt set b1='8OXP694JRS911ISOM' where id=6; -update noar ti set b1='8OXP694JRS911ISOM' where id=6; -update noar tt set v0='HBZS6K32FVMLQ4LQV1S' where id=6; -update noar ti set v0='HBZS6K32FVMLQ4LQV1S' where id=6; -update noar tt set b2='U9IGC00YG2O3PMB60UTTBF42QRYN' where id=6; -update noar ti set b2='U9IGC00YG2O3PMB60UTTBF42QRYN' where id=6; -update noar tt set v0='V27J877IR1KGSOKR95Z7CSFUW' where id=7; -update noar ti set v0='V27J877IR1KGSOKR95Z7CSFUW' where id=7; -update noar tt set b0='S4M02VYK43ISK1' where id=7; -update noar ti set b0='S4M02VYK43ISK1' where id=7; -update noar tt set v0='G111D74G7WDBKWWIQJPLIEM8TM' where id=7; -update noar ti set v0='G111D74G7WDBKWWIQJPLIEM8TM' where id=7; -update noar tt set b1='7R0BSXH3OU4XYMSFN' where id=7; -update noar ti set b1='7R0BSXH3OU4XYMSFN' where id=7; -update noar tt set v0='X9DNBQQ8M83FXBR5V1KZZJ0DVUIRYS' where id=7; -update noar ti set v0='X9DNBQQ8M83FXBR5V1KZZJ0DVUIRYS' where id=7; -update noar tt set b2='LMPUFNIID83ZHSTGX5ZICA4QQDTFUC' where id=7; -update noar ti set b2='LMPUFNIID83ZHSTGX5ZICA4QQDTFUC' where id=7; -update noar tt set v0='66PSAB4Z9UUPE' where id=8; -update noar ti set v0='66PSAB4Z9UUPE' where id=8; -update noar tt set b0='CGW23CYKLIVHEA2PT11R2AXWROO02YJ' where id=8; -update noar ti set b0='CGW23CYKLIVHEA2PT11R2AXWROO02YJ' where id=8; -update noar tt set v0='2EZ6YXXILZNU78H20DYQWQ7CGY' where id=8; -update noar ti set v0='2EZ6YXXILZNU78H20DYQWQ7CGY' where id=8; -update noar tt set b1='B6IJGX8ZVEQZP0RZLBPHP9QWQL0PKG' where id=8; -update noar ti set b1='B6IJGX8ZVEQZP0RZLBPHP9QWQL0PKG' where id=8; -update noar tt set v0='YRAM0HHAK2' where id=8; -update noar ti set v0='YRAM0HHAK2' where id=8; -update noar tt set b2='812X' where id=8; -update noar ti set b2='812X' where id=8; -update noar tt set v0='X2Y3XMHSABEMBGY6HIHXQNG8BEO6B' where id=9; -update noar ti set v0='X2Y3XMHSABEMBGY6HIHXQNG8BEO6B' where id=9; -update noar tt set b0='WJZKMM6WGBN6C18LN3' where id=9; -update noar ti set b0='WJZKMM6WGBN6C18LN3' where id=9; -update noar tt set v0='5VAWD2CL8ICMYZ042' where id=9; -update noar ti set v0='5VAWD2CL8ICMYZ042' where id=9; -update noar tt set b1='3O1N8KH99ZPUCOUYU' where id=9; -update noar ti set b1='3O1N8KH99ZPUCOUYU' where id=9; -update noar tt set v0='KY10SAI31P70Z3N1MAJMANV4N2' where id=9; -update noar ti set v0='KY10SAI31P70Z3N1MAJMANV4N2' where id=9; -update noar tt set b2='MWZXZTH2FSW1M2V0HQCBA9' where id=9; -update noar ti set b2='MWZXZTH2FSW1M2V0HQCBA9' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -v0 varchar(32) not null, -b0 blob not null, -b1 blob not null, -b2 mediumblob not null -) engine=tokudb; -insert into tt values (1,'','','',''); -insert into tt values (2,'','','',''); -insert into tt values (3,'','','',''); -insert into tt values (4,'','','',''); -insert into tt values (5,'','','',''); -insert into tt values (6,'','','',''); -insert into tt values (7,'','','',''); -insert into tt values (8,'','','',''); -insert into tt values (9,'','','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='AZ3P63WPTNLL7X1NNJ6DV22I3VO944T1' where id=1; -update noar ti set v0='AZ3P63WPTNLL7X1NNJ6DV22I3VO944T1' where id=1; -update noar tt set b0='PO1XLCTDRY7Y9TLBHPA' where id=1; -update noar ti set b0='PO1XLCTDRY7Y9TLBHPA' where id=1; -update noar tt set v0='9EX878EK42G0S2' where id=1; -update noar ti set v0='9EX878EK42G0S2' where id=1; -update noar tt set b1='7U8XXAH8N8UT1UN7APLC703I8TFR2PCI' where id=1; -update noar ti set b1='7U8XXAH8N8UT1UN7APLC703I8TFR2PCI' where id=1; -update noar tt set v0='2A1P42HOH' where id=1; -update noar ti set v0='2A1P42HOH' where id=1; -update noar tt set b2='1ICRJXNNIIF8WO' where id=1; -update noar ti set b2='1ICRJXNNIIF8WO' where id=1; -update noar tt set v0='DERUJ7LLL5N9Q' where id=2; -update noar ti set v0='DERUJ7LLL5N9Q' where id=2; -update noar tt set b0='DQBPTL85J9MVFCV1YOH0U50' where id=2; -update noar ti set b0='DQBPTL85J9MVFCV1YOH0U50' where id=2; -update noar tt set v0='5HHCOO' where id=2; -update noar ti set v0='5HHCOO' where id=2; -update noar tt set b1='YKSRP8W60O9SINZ5B' where id=2; -update noar ti set b1='YKSRP8W60O9SINZ5B' where id=2; -update noar tt set v0='7' where id=2; -update noar ti set v0='7' where id=2; -update noar tt set b2='BVD7PQO8LSLXG' where id=2; -update noar ti set b2='BVD7PQO8LSLXG' where id=2; -update noar tt set v0='9WTOV65' where id=3; -update noar ti set v0='9WTOV65' where id=3; -update noar tt set b0='C1JI' where id=3; -update noar ti set b0='C1JI' where id=3; -update noar tt set v0='7X2P' where id=3; -update noar ti set v0='7X2P' where id=3; -update noar tt set b1='O5ISJ0UOTRD0V' where id=3; -update noar ti set b1='O5ISJ0UOTRD0V' where id=3; -update noar tt set v0='531HV67H0YIMIRZYN5' where id=3; -update noar ti set v0='531HV67H0YIMIRZYN5' where id=3; -update noar tt set b2='H8PWRDEIHS8MYWZKBUD3NH' where id=3; -update noar ti set b2='H8PWRDEIHS8MYWZKBUD3NH' where id=3; -update noar tt set v0='51FF6T23TR1NZVA7' where id=4; -update noar ti set v0='51FF6T23TR1NZVA7' where id=4; -update noar tt set b0='Y05VAK1CNJXHTL8EUZVVAVAZ' where id=4; -update noar ti set b0='Y05VAK1CNJXHTL8EUZVVAVAZ' where id=4; -update noar tt set v0='5V' where id=4; -update noar ti set v0='5V' where id=4; -update noar tt set b1='RDVU68Z6WB1YQWO59X4MVAMP4XPVHQ' where id=4; -update noar ti set b1='RDVU68Z6WB1YQWO59X4MVAMP4XPVHQ' where id=4; -update noar tt set v0='WFUL9R1UJ23M' where id=4; -update noar ti set v0='WFUL9R1UJ23M' where id=4; -update noar tt set b2='UM8J7FI35Z8Z8ZEP6MMEBTX1P4' where id=4; -update noar ti set b2='UM8J7FI35Z8Z8ZEP6MMEBTX1P4' where id=4; -update noar tt set v0='CK0TST4Z36BWT8' where id=5; -update noar ti set v0='CK0TST4Z36BWT8' where id=5; -update noar tt set b0='PF6D6FE9L1PVHL8X0KW17NJ' where id=5; -update noar ti set b0='PF6D6FE9L1PVHL8X0KW17NJ' where id=5; -update noar tt set v0='1DLCHRZ51YNTV74JQ1ZGHW6N' where id=5; -update noar ti set v0='1DLCHRZ51YNTV74JQ1ZGHW6N' where id=5; -update noar tt set b1='OR36QQU00VH1Y0ZOOWAQJ7S0IT8A2VH' where id=5; -update noar ti set b1='OR36QQU00VH1Y0ZOOWAQJ7S0IT8A2VH' where id=5; -update noar tt set v0='69RVKDO' where id=5; -update noar ti set v0='69RVKDO' where id=5; -update noar tt set b2='8XYM39IIRZAKHUG' where id=5; -update noar ti set b2='8XYM39IIRZAKHUG' where id=5; -update noar tt set v0='BVRXK5QXQ0EU9TR' where id=6; -update noar ti set v0='BVRXK5QXQ0EU9TR' where id=6; -update noar tt set b0='J5' where id=6; -update noar ti set b0='J5' where id=6; -update noar tt set v0='YLPJQQ8FZRKHQYQPWT3EU' where id=6; -update noar ti set v0='YLPJQQ8FZRKHQYQPWT3EU' where id=6; -update noar tt set b1='BPJWEXDNXEKUBDY7UFXF' where id=6; -update noar ti set b1='BPJWEXDNXEKUBDY7UFXF' where id=6; -update noar tt set v0='8BP9DNXDF37LP0BL3M8WJV5' where id=6; -update noar ti set v0='8BP9DNXDF37LP0BL3M8WJV5' where id=6; -update noar tt set b2='3CWOZ9C82GDMMIPW' where id=6; -update noar ti set b2='3CWOZ9C82GDMMIPW' where id=6; -update noar tt set v0='I9CV4IWYN9DIG23LIE' where id=7; -update noar ti set v0='I9CV4IWYN9DIG23LIE' where id=7; -update noar tt set b0='O' where id=7; -update noar ti set b0='O' where id=7; -update noar tt set v0='RO' where id=7; -update noar ti set v0='RO' where id=7; -update noar tt set b1='79W8Q835QV0LH6JTCLZ35PC3' where id=7; -update noar ti set b1='79W8Q835QV0LH6JTCLZ35PC3' where id=7; -update noar tt set v0='R33ZHBXIFOURPCGC' where id=7; -update noar ti set v0='R33ZHBXIFOURPCGC' where id=7; -update noar tt set b2='NDN1' where id=7; -update noar ti set b2='NDN1' where id=7; -update noar tt set v0='VC' where id=8; -update noar ti set v0='VC' where id=8; -update noar tt set b0='PMV3OUNE2KK9AK8' where id=8; -update noar ti set b0='PMV3OUNE2KK9AK8' where id=8; -update noar tt set v0='LXP9TPQ3TA0' where id=8; -update noar ti set v0='LXP9TPQ3TA0' where id=8; -update noar tt set b1='4VWDY9X6TTK6VBFP7YO71ZH' where id=8; -update noar ti set b1='4VWDY9X6TTK6VBFP7YO71ZH' where id=8; -update noar tt set v0='6FAHEBFDSBO4GOO0GNJ2P1GDBV1XA' where id=8; -update noar ti set v0='6FAHEBFDSBO4GOO0GNJ2P1GDBV1XA' where id=8; -update noar tt set b2='710X5MULFOIEIJ4QC6KLSRMVBSIPWN' where id=8; -update noar ti set b2='710X5MULFOIEIJ4QC6KLSRMVBSIPWN' where id=8; -update noar tt set v0='6TQJUYVPYI' where id=9; -update noar ti set v0='6TQJUYVPYI' where id=9; -update noar tt set b0='25TEDPJVYDZOHRBFN9LSMW4MV6EJ' where id=9; -update noar ti set b0='25TEDPJVYDZOHRBFN9LSMW4MV6EJ' where id=9; -update noar tt set v0='Y' where id=9; -update noar ti set v0='Y' where id=9; -update noar tt set b1='WO840FIQW0Z8NXIOGV3JCN2' where id=9; -update noar ti set b1='WO840FIQW0Z8NXIOGV3JCN2' where id=9; -update noar tt set v0='5376WRVQ3HNS2B9HAH' where id=9; -update noar ti set v0='5376WRVQ3HNS2B9HAH' where id=9; -update noar tt set b2='XUAYWQ6R525' where id=9; -update noar ti set b2='XUAYWQ6R525' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -v0 varchar(256) not null, -b0 blob not null, -b1 blob not null, -b2 mediumblob not null -) engine=tokudb; -insert into tt values (1,'','','',''); -insert into tt values (2,'','','',''); -insert into tt values (3,'','','',''); -insert into tt values (4,'','','',''); -insert into tt values (5,'','','',''); -insert into tt values (6,'','','',''); -insert into tt values (7,'','','',''); -insert into tt values (8,'','','',''); -insert into tt values (9,'','','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='0YVLXIS380VWLYZ3T' where id=1; -update noar ti set v0='0YVLXIS380VWLYZ3T' where id=1; -update noar tt set b0='Z' where id=1; -update noar ti set b0='Z' where id=1; -update noar tt set v0='5GX044EA36AP1EZU' where id=1; -update noar ti set v0='5GX044EA36AP1EZU' where id=1; -update noar tt set b1='L391466IPPDH72DYJAFPPF49T3YZ3' where id=1; -update noar ti set b1='L391466IPPDH72DYJAFPPF49T3YZ3' where id=1; -update noar tt set v0='YKWPHWKG5' where id=1; -update noar ti set v0='YKWPHWKG5' where id=1; -update noar tt set b2='5KT9JT4VB1DXU27BBVN9EGNPDJ3UL4' where id=1; -update noar ti set b2='5KT9JT4VB1DXU27BBVN9EGNPDJ3UL4' where id=1; -update noar tt set v0='R88NYQ5M63YZ0DK35M' where id=2; -update noar ti set v0='R88NYQ5M63YZ0DK35M' where id=2; -update noar tt set b0='KV0XPQS8E9LGFF1T5Q0U' where id=2; -update noar ti set b0='KV0XPQS8E9LGFF1T5Q0U' where id=2; -update noar tt set v0='PXXRJOQA1OISFZA7W254BVD16' where id=2; -update noar ti set v0='PXXRJOQA1OISFZA7W254BVD16' where id=2; -update noar tt set b1='72USMKIQIQEYL2X50OJZBLQL' where id=2; -update noar ti set b1='72USMKIQIQEYL2X50OJZBLQL' where id=2; -update noar tt set v0='AJR5DLB8AWOO209T' where id=2; -update noar ti set v0='AJR5DLB8AWOO209T' where id=2; -update noar tt set b2='A6HHP' where id=2; -update noar ti set b2='A6HHP' where id=2; -update noar tt set v0='K9DCFOA90R90K59' where id=3; -update noar ti set v0='K9DCFOA90R90K59' where id=3; -update noar tt set b0='8EK66P8JVUD90XPX88EC4NJPSM93H' where id=3; -update noar ti set b0='8EK66P8JVUD90XPX88EC4NJPSM93H' where id=3; -update noar tt set v0='P3IRFC0Z' where id=3; -update noar ti set v0='P3IRFC0Z' where id=3; -update noar tt set b1='Z9YAVRQIW9KT' where id=3; -update noar ti set b1='Z9YAVRQIW9KT' where id=3; -update noar tt set v0='P7MVISGR64LL' where id=3; -update noar ti set v0='P7MVISGR64LL' where id=3; -update noar tt set b2='DVJYV4C' where id=3; -update noar ti set b2='DVJYV4C' where id=3; -update noar tt set v0='VG0AOVVTC56CIU659DDG01DU8' where id=4; -update noar ti set v0='VG0AOVVTC56CIU659DDG01DU8' where id=4; -update noar tt set b0='DCDOLP1884XG7JUVAI1OIMU97KYPGKTU' where id=4; -update noar ti set b0='DCDOLP1884XG7JUVAI1OIMU97KYPGKTU' where id=4; -update noar tt set v0='LKAO30TFXYD2AU' where id=4; -update noar ti set v0='LKAO30TFXYD2AU' where id=4; -update noar tt set b1='PJ7YED5XOR31UBSUOFQ7X0VN977DP' where id=4; -update noar ti set b1='PJ7YED5XOR31UBSUOFQ7X0VN977DP' where id=4; -update noar tt set v0='HG0BVR' where id=4; -update noar ti set v0='HG0BVR' where id=4; -update noar tt set b2='1VR7KMWPMCBBJQMQZS' where id=4; -update noar ti set b2='1VR7KMWPMCBBJQMQZS' where id=4; -update noar tt set v0='8AFIOP9ZMAF94QE5' where id=5; -update noar ti set v0='8AFIOP9ZMAF94QE5' where id=5; -update noar tt set b0='FKHBY19LJYSH9ZQIZT01AK916AO426QE' where id=5; -update noar ti set b0='FKHBY19LJYSH9ZQIZT01AK916AO426QE' where id=5; -update noar tt set v0='MXOCJC8NUWEY' where id=5; -update noar ti set v0='MXOCJC8NUWEY' where id=5; -update noar tt set b1='EJGJ5BND76L8JU37' where id=5; -update noar ti set b1='EJGJ5BND76L8JU37' where id=5; -update noar tt set v0='AY3MJG4KFTII3KXHY68XKG43NB5YF' where id=5; -update noar ti set v0='AY3MJG4KFTII3KXHY68XKG43NB5YF' where id=5; -update noar tt set b2='52KCUMMX2YVZ2NE' where id=5; -update noar ti set b2='52KCUMMX2YVZ2NE' where id=5; -update noar tt set v0='5X0' where id=6; -update noar ti set v0='5X0' where id=6; -update noar tt set b0='K' where id=6; -update noar ti set b0='K' where id=6; -update noar tt set v0='2Q86CNGW1DKTBP3T6GQULKUPAF' where id=6; -update noar ti set v0='2Q86CNGW1DKTBP3T6GQULKUPAF' where id=6; -update noar tt set b1='HAY' where id=6; -update noar ti set b1='HAY' where id=6; -update noar tt set v0='CQKFFKVR31TMN7WMVZL' where id=6; -update noar ti set v0='CQKFFKVR31TMN7WMVZL' where id=6; -update noar tt set b2='JZTQMS2' where id=6; -update noar ti set b2='JZTQMS2' where id=6; -update noar tt set v0='P9AM8MJIHX2DC6PXDQ' where id=7; -update noar ti set v0='P9AM8MJIHX2DC6PXDQ' where id=7; -update noar tt set b0='VDZK2CT6F08RCBW8G' where id=7; -update noar ti set b0='VDZK2CT6F08RCBW8G' where id=7; -update noar tt set v0='P6V0CVPR' where id=7; -update noar ti set v0='P6V0CVPR' where id=7; -update noar tt set b1='YQD762IVWTTZMJYIIQ19963' where id=7; -update noar ti set b1='YQD762IVWTTZMJYIIQ19963' where id=7; -update noar tt set v0='AP' where id=7; -update noar ti set v0='AP' where id=7; -update noar tt set b2='OV91JL626479BQB40GYOOYX' where id=7; -update noar ti set b2='OV91JL626479BQB40GYOOYX' where id=7; -update noar tt set v0='3L1Z3P76WZ3JSTTRFGK6Z' where id=8; -update noar ti set v0='3L1Z3P76WZ3JSTTRFGK6Z' where id=8; -update noar tt set b0='X3BTIIWS1MRWA1NZHS' where id=8; -update noar ti set b0='X3BTIIWS1MRWA1NZHS' where id=8; -update noar tt set v0='9NBFK5DWNB2V0W37L5LCRQH' where id=8; -update noar ti set v0='9NBFK5DWNB2V0W37L5LCRQH' where id=8; -update noar tt set b1='89T8PW6QPWU8M' where id=8; -update noar ti set b1='89T8PW6QPWU8M' where id=8; -update noar tt set v0='0ZZ7ZDDX5JEEADT0HZPZ270NPD1' where id=8; -update noar ti set v0='0ZZ7ZDDX5JEEADT0HZPZ270NPD1' where id=8; -update noar tt set b2='D3LGKX9V70TD509EBF5DM1P13FEJ' where id=8; -update noar ti set b2='D3LGKX9V70TD509EBF5DM1P13FEJ' where id=8; -update noar tt set v0='5O2EIBBM' where id=9; -update noar ti set v0='5O2EIBBM' where id=9; -update noar tt set b0='B994FK071KTRW' where id=9; -update noar ti set b0='B994FK071KTRW' where id=9; -update noar tt set v0='YIWC9RVL6KEBIBL' where id=9; -update noar ti set v0='YIWC9RVL6KEBIBL' where id=9; -update noar tt set b1='W' where id=9; -update noar ti set b1='W' where id=9; -update noar tt set v0='R5PT' where id=9; -update noar ti set v0='R5PT' where id=9; -update noar tt set b2='R52' where id=9; -update noar ti set b2='R52' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -v0 varchar(32) null, -b0 blob null, -b1 blob null, -b2 longblob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='DHSEFFDVR85WJBP7DSRB8Q2KX9K' where id=1; -update noar ti set v0='DHSEFFDVR85WJBP7DSRB8Q2KX9K' where id=1; -update noar tt set b0='Y8KALR7YQ7IS' where id=1; -update noar ti set b0='Y8KALR7YQ7IS' where id=1; -update noar tt set v0='PSH1ZD9A2K4O3ZQKNX7ZBNZC0' where id=1; -update noar ti set v0='PSH1ZD9A2K4O3ZQKNX7ZBNZC0' where id=1; -update noar tt set b1='VKXS5S' where id=1; -update noar ti set b1='VKXS5S' where id=1; -update noar tt set v0='SQ' where id=1; -update noar ti set v0='SQ' where id=1; -update noar tt set b2='SB3Y' where id=1; -update noar ti set b2='SB3Y' where id=1; -update noar tt set v0='2EAJ9B8RMZG9BBG850OQDGLP3E' where id=2; -update noar ti set v0='2EAJ9B8RMZG9BBG850OQDGLP3E' where id=2; -update noar tt set b0='3ZOTR78N9AB97ZZ3B6N9EIOX25DSHJD' where id=2; -update noar ti set b0='3ZOTR78N9AB97ZZ3B6N9EIOX25DSHJD' where id=2; -update noar tt set v0='N55EX6288ADTC' where id=2; -update noar ti set v0='N55EX6288ADTC' where id=2; -update noar tt set b1='XEH6BK5O9C00BWUQF4' where id=2; -update noar ti set b1='XEH6BK5O9C00BWUQF4' where id=2; -update noar tt set v0='QIZEKG5ML1EMXUDTGCBQ8L' where id=2; -update noar ti set v0='QIZEKG5ML1EMXUDTGCBQ8L' where id=2; -update noar tt set b2='47K9ZIQEYU5ZKIR' where id=2; -update noar ti set b2='47K9ZIQEYU5ZKIR' where id=2; -update noar tt set v0='OPZ2QZK5AGAZ7SO9QLTGX0YWYD7' where id=3; -update noar ti set v0='OPZ2QZK5AGAZ7SO9QLTGX0YWYD7' where id=3; -update noar tt set b0='X8SODI4' where id=3; -update noar ti set b0='X8SODI4' where id=3; -update noar tt set v0='IH' where id=3; -update noar ti set v0='IH' where id=3; -update noar tt set b1='A84SWZ' where id=3; -update noar ti set b1='A84SWZ' where id=3; -update noar tt set v0='5MSYZ4U9ROC7Q38R5NBSSASCOUAWGZ' where id=3; -update noar ti set v0='5MSYZ4U9ROC7Q38R5NBSSASCOUAWGZ' where id=3; -update noar tt set b2='W67X0PC' where id=3; -update noar ti set b2='W67X0PC' where id=3; -update noar tt set v0='7AKVP' where id=4; -update noar ti set v0='7AKVP' where id=4; -update noar tt set b0='HZ2QD1I0W2O' where id=4; -update noar ti set b0='HZ2QD1I0W2O' where id=4; -update noar tt set v0='Q3EHWNVO8J3PDZP8QM3DAWOPU' where id=4; -update noar ti set v0='Q3EHWNVO8J3PDZP8QM3DAWOPU' where id=4; -update noar tt set b1='6WL6EM8UOKTYCKXRO9R4B0CG4W65A8I' where id=4; -update noar ti set b1='6WL6EM8UOKTYCKXRO9R4B0CG4W65A8I' where id=4; -update noar tt set v0='NA5ZC4H2JNDSXOM1AO2V9UPC' where id=4; -update noar ti set v0='NA5ZC4H2JNDSXOM1AO2V9UPC' where id=4; -update noar tt set b2='X0DDD' where id=4; -update noar ti set b2='X0DDD' where id=4; -update noar tt set v0='EVZ4AC' where id=5; -update noar ti set v0='EVZ4AC' where id=5; -update noar tt set b0='QN36IYT17QH5XMO3VXWNWK18' where id=5; -update noar ti set b0='QN36IYT17QH5XMO3VXWNWK18' where id=5; -update noar tt set v0='N39R3U6I7QAHR0QEJO697P' where id=5; -update noar ti set v0='N39R3U6I7QAHR0QEJO697P' where id=5; -update noar tt set b1='JYCB30FB3MLTSX3GTVJN6GINTD3M4S' where id=5; -update noar ti set b1='JYCB30FB3MLTSX3GTVJN6GINTD3M4S' where id=5; -update noar tt set v0='S579UFD1V2APOYNMKWRIW42OWYVDZSIT' where id=5; -update noar ti set v0='S579UFD1V2APOYNMKWRIW42OWYVDZSIT' where id=5; -update noar tt set b2='C1BNPBM' where id=5; -update noar ti set b2='C1BNPBM' where id=5; -update noar tt set v0='GPA' where id=6; -update noar ti set v0='GPA' where id=6; -update noar tt set b0='MZKBTND6UZN7ITHCZFVB4JLR2JP' where id=6; -update noar ti set b0='MZKBTND6UZN7ITHCZFVB4JLR2JP' where id=6; -update noar tt set v0='2751UQC7IYJSACH6GYZ33BOOJOYJG46A' where id=6; -update noar ti set v0='2751UQC7IYJSACH6GYZ33BOOJOYJG46A' where id=6; -update noar tt set b1='HSW6NPWYVGKNLURML860Z' where id=6; -update noar ti set b1='HSW6NPWYVGKNLURML860Z' where id=6; -update noar tt set v0='91OW6FNV' where id=6; -update noar ti set v0='91OW6FNV' where id=6; -update noar tt set b2='1JJO06ZD8D36AL6E13DUFCSPAH2A4V' where id=6; -update noar ti set b2='1JJO06ZD8D36AL6E13DUFCSPAH2A4V' where id=6; -update noar tt set v0='LHSPLQILJ7RFZ' where id=7; -update noar ti set v0='LHSPLQILJ7RFZ' where id=7; -update noar tt set b0='9BY5J41KU37CB09' where id=7; -update noar ti set b0='9BY5J41KU37CB09' where id=7; -update noar tt set v0='VGW5TLVO9AZL1LKCIWS6JNT5IY0JHI' where id=7; -update noar ti set v0='VGW5TLVO9AZL1LKCIWS6JNT5IY0JHI' where id=7; -update noar tt set b1='L8VST77SA70YPOPOGHQF2F0QC' where id=7; -update noar ti set b1='L8VST77SA70YPOPOGHQF2F0QC' where id=7; -update noar tt set v0='A4PDPB2AQEPS8NF6VBZZMH6O' where id=7; -update noar ti set v0='A4PDPB2AQEPS8NF6VBZZMH6O' where id=7; -update noar tt set b2='4N38USQQVQWW6FJB038GPE9R' where id=7; -update noar ti set b2='4N38USQQVQWW6FJB038GPE9R' where id=7; -update noar tt set v0='NCZBTSFGIA4CILGO' where id=8; -update noar ti set v0='NCZBTSFGIA4CILGO' where id=8; -update noar tt set b0='6ECHZ9JQLMBP0Q07Z6TGTP1G9Q79' where id=8; -update noar ti set b0='6ECHZ9JQLMBP0Q07Z6TGTP1G9Q79' where id=8; -update noar tt set v0='XKPRZVNHAPCE73J2GLXQZ7WH219H' where id=8; -update noar ti set v0='XKPRZVNHAPCE73J2GLXQZ7WH219H' where id=8; -update noar tt set b1='2QPRM9AZ5ZEPQ7QQA' where id=8; -update noar ti set b1='2QPRM9AZ5ZEPQ7QQA' where id=8; -update noar tt set v0='SGEO0WZIE53I2KAW68OHDYL' where id=8; -update noar ti set v0='SGEO0WZIE53I2KAW68OHDYL' where id=8; -update noar tt set b2='Y' where id=8; -update noar ti set b2='Y' where id=8; -update noar tt set v0='IFCABDOXG8NQMJQ0A503K' where id=9; -update noar ti set v0='IFCABDOXG8NQMJQ0A503K' where id=9; -update noar tt set b0='ASOD2014280C95II5KHU8PHJYUU77J3' where id=9; -update noar ti set b0='ASOD2014280C95II5KHU8PHJYUU77J3' where id=9; -update noar tt set v0='NV0' where id=9; -update noar ti set v0='NV0' where id=9; -update noar tt set b1='EVQQG' where id=9; -update noar ti set b1='EVQQG' where id=9; -update noar tt set v0='NGWDUBAYT8BR98GYWTRS0AT5Y004ZNA' where id=9; -update noar ti set v0='NGWDUBAYT8BR98GYWTRS0AT5Y004ZNA' where id=9; -update noar tt set b2='TVER2ZAQRH45' where id=9; -update noar ti set b2='TVER2ZAQRH45' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -v0 varchar(256) null, -b0 blob null, -b1 blob null, -b2 longblob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='L2ZPKEQKNXWN2YYU49MGO35CPABMDJK' where id=1; -update noar ti set v0='L2ZPKEQKNXWN2YYU49MGO35CPABMDJK' where id=1; -update noar tt set b0='9SJ6M' where id=1; -update noar ti set b0='9SJ6M' where id=1; -update noar tt set v0='GC' where id=1; -update noar ti set v0='GC' where id=1; -update noar tt set b1='090AVDSF1YXO' where id=1; -update noar ti set b1='090AVDSF1YXO' where id=1; -update noar tt set v0='ZY9HND214J94ADANQ7WPVCTLELPU9N' where id=1; -update noar ti set v0='ZY9HND214J94ADANQ7WPVCTLELPU9N' where id=1; -update noar tt set b2='KARZJ0N57U1K4YWBSERGXFUFU9OO' where id=1; -update noar ti set b2='KARZJ0N57U1K4YWBSERGXFUFU9OO' where id=1; -update noar tt set v0='8Q0D6Q866FAOY1LEJMCFEH584PY7L' where id=2; -update noar ti set v0='8Q0D6Q866FAOY1LEJMCFEH584PY7L' where id=2; -update noar tt set b0='OF4350YI5CP49D40Q7APJTVO4QJT' where id=2; -update noar ti set b0='OF4350YI5CP49D40Q7APJTVO4QJT' where id=2; -update noar tt set v0='CUGBMN4XM43L' where id=2; -update noar ti set v0='CUGBMN4XM43L' where id=2; -update noar tt set b1='RLLJXFN1XAYJ69VX8ATRWOUQ5SMC' where id=2; -update noar ti set b1='RLLJXFN1XAYJ69VX8ATRWOUQ5SMC' where id=2; -update noar tt set v0='PGPROYIZFLKE9811J0J1J0BVLGVTTI2' where id=2; -update noar ti set v0='PGPROYIZFLKE9811J0J1J0BVLGVTTI2' where id=2; -update noar tt set b2='RLDWAFS8BDVYBC8MH3G3JBXBB6A' where id=2; -update noar ti set b2='RLDWAFS8BDVYBC8MH3G3JBXBB6A' where id=2; -update noar tt set v0='DIX3L3TSFV925' where id=3; -update noar ti set v0='DIX3L3TSFV925' where id=3; -update noar tt set b0='0ZF6GGVPU' where id=3; -update noar ti set b0='0ZF6GGVPU' where id=3; -update noar tt set v0='3ZNO90IM46DTX' where id=3; -update noar ti set v0='3ZNO90IM46DTX' where id=3; -update noar tt set b1='QA' where id=3; -update noar ti set b1='QA' where id=3; -update noar tt set v0='FMWICQ3XX70DQ6P7BMX4292' where id=3; -update noar ti set v0='FMWICQ3XX70DQ6P7BMX4292' where id=3; -update noar tt set b2='KDHPE430N34S' where id=3; -update noar ti set b2='KDHPE430N34S' where id=3; -update noar tt set v0='R' where id=4; -update noar ti set v0='R' where id=4; -update noar tt set b0='3E6BB41RH22' where id=4; -update noar ti set b0='3E6BB41RH22' where id=4; -update noar tt set v0='6HSMF2ZYUYT7' where id=4; -update noar ti set v0='6HSMF2ZYUYT7' where id=4; -update noar tt set b1='VNUXLSWLMXFSOO9NUWR8PYZQD8I31ID' where id=4; -update noar ti set b1='VNUXLSWLMXFSOO9NUWR8PYZQD8I31ID' where id=4; -update noar tt set v0='AGEEPPRHFMIWN4B5ZZL2' where id=4; -update noar ti set v0='AGEEPPRHFMIWN4B5ZZL2' where id=4; -update noar tt set b2='9E31S6R' where id=4; -update noar ti set b2='9E31S6R' where id=4; -update noar tt set v0='K9NSDLS2COGGZ' where id=5; -update noar ti set v0='K9NSDLS2COGGZ' where id=5; -update noar tt set b0='RM3E04A92DBAO' where id=5; -update noar ti set b0='RM3E04A92DBAO' where id=5; -update noar tt set v0='6176Y9C71JPWN0KX9DE312XVB9' where id=5; -update noar ti set v0='6176Y9C71JPWN0KX9DE312XVB9' where id=5; -update noar tt set b1='LI2CEA50ALSLIPEPR64KST5C' where id=5; -update noar ti set b1='LI2CEA50ALSLIPEPR64KST5C' where id=5; -update noar tt set v0='C1S' where id=5; -update noar ti set v0='C1S' where id=5; -update noar tt set b2='CXY5V1CAD' where id=5; -update noar ti set b2='CXY5V1CAD' where id=5; -update noar tt set v0='ULF80LFO1YGYY0MTG3X5GCRF6MFT' where id=6; -update noar ti set v0='ULF80LFO1YGYY0MTG3X5GCRF6MFT' where id=6; -update noar tt set b0='X2V' where id=6; -update noar ti set b0='X2V' where id=6; -update noar tt set v0='02L92JX' where id=6; -update noar ti set v0='02L92JX' where id=6; -update noar tt set b1='6P028OR1C6VDFI8IHI1FTJXUADSH' where id=6; -update noar ti set b1='6P028OR1C6VDFI8IHI1FTJXUADSH' where id=6; -update noar tt set v0='2AKADNLLS3RV2' where id=6; -update noar ti set v0='2AKADNLLS3RV2' where id=6; -update noar tt set b2='WEL7Y1OFVVIVCTBYUU9ZK4WM' where id=6; -update noar ti set b2='WEL7Y1OFVVIVCTBYUU9ZK4WM' where id=6; -update noar tt set v0='W7BJFKDA63SGDAYH4X3U8L8CZ' where id=7; -update noar ti set v0='W7BJFKDA63SGDAYH4X3U8L8CZ' where id=7; -update noar tt set b0='FKIEVDENRSI9Q' where id=7; -update noar ti set b0='FKIEVDENRSI9Q' where id=7; -update noar tt set v0='2ZQ' where id=7; -update noar ti set v0='2ZQ' where id=7; -update noar tt set b1='2J078YEGG264HAC258XGVW5Q' where id=7; -update noar ti set b1='2J078YEGG264HAC258XGVW5Q' where id=7; -update noar tt set v0='MJ0HJWGLWIQX3T8VJ5UQWXFDB' where id=7; -update noar ti set v0='MJ0HJWGLWIQX3T8VJ5UQWXFDB' where id=7; -update noar tt set b2='MREZSUJ9TLYQMOV9CAVB1PMXPL' where id=7; -update noar ti set b2='MREZSUJ9TLYQMOV9CAVB1PMXPL' where id=7; -update noar tt set v0='BVZU7L' where id=8; -update noar ti set v0='BVZU7L' where id=8; -update noar tt set b0='MAADW2QEH0947XESB66WA86S' where id=8; -update noar ti set b0='MAADW2QEH0947XESB66WA86S' where id=8; -update noar tt set v0='4201B0DPODXITSFMM7JM' where id=8; -update noar ti set v0='4201B0DPODXITSFMM7JM' where id=8; -update noar tt set b1='2EGMSB4FFMCP4SEG3Q52OAJ' where id=8; -update noar ti set b1='2EGMSB4FFMCP4SEG3Q52OAJ' where id=8; -update noar tt set v0='ZP0FLZ0BOKO2UJYM10KZ2UAGEAA' where id=8; -update noar ti set v0='ZP0FLZ0BOKO2UJYM10KZ2UAGEAA' where id=8; -update noar tt set b2='C' where id=8; -update noar ti set b2='C' where id=8; -update noar tt set v0='XE97FCQRRW' where id=9; -update noar ti set v0='XE97FCQRRW' where id=9; -update noar tt set b0='5CFPJ50NIUK1FTW' where id=9; -update noar ti set b0='5CFPJ50NIUK1FTW' where id=9; -update noar tt set v0='P2S6GQLZWYPGZZPXHOKO4SW1DQJ5MQ' where id=9; -update noar ti set v0='P2S6GQLZWYPGZZPXHOKO4SW1DQJ5MQ' where id=9; -update noar tt set b1='P27ISRBKTI4IEYPR3ECA2CXGCT' where id=9; -update noar ti set b1='P27ISRBKTI4IEYPR3ECA2CXGCT' where id=9; -update noar tt set v0='946' where id=9; -update noar ti set v0='946' where id=9; -update noar tt set b2='R6D7AV01Z2X26Y5IH0IR1I4M40' where id=9; -update noar ti set b2='R6D7AV01Z2X26Y5IH0IR1I4M40' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -v0 varchar(32) not null, -b0 blob not null, -b1 blob not null, -b2 longblob not null -) engine=tokudb; -insert into tt values (1,'','','',''); -insert into tt values (2,'','','',''); -insert into tt values (3,'','','',''); -insert into tt values (4,'','','',''); -insert into tt values (5,'','','',''); -insert into tt values (6,'','','',''); -insert into tt values (7,'','','',''); -insert into tt values (8,'','','',''); -insert into tt values (9,'','','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='F90EPQQQZ69622JU5K' where id=1; -update noar ti set v0='F90EPQQQZ69622JU5K' where id=1; -update noar tt set b0='ALYESR1' where id=1; -update noar ti set b0='ALYESR1' where id=1; -update noar tt set v0='4OOS0Q' where id=1; -update noar ti set v0='4OOS0Q' where id=1; -update noar tt set b1='188K91WKCXVDXIXZH' where id=1; -update noar ti set b1='188K91WKCXVDXIXZH' where id=1; -update noar tt set v0='R3V' where id=1; -update noar ti set v0='R3V' where id=1; -update noar tt set b2='7IU' where id=1; -update noar ti set b2='7IU' where id=1; -update noar tt set v0='10Z1B8CEAM6A69CXYT5BL2PW990ZC4G' where id=2; -update noar ti set v0='10Z1B8CEAM6A69CXYT5BL2PW990ZC4G' where id=2; -update noar tt set b0='1V5TVQGPZASY657S6' where id=2; -update noar ti set b0='1V5TVQGPZASY657S6' where id=2; -update noar tt set v0='ZSHAT9M' where id=2; -update noar ti set v0='ZSHAT9M' where id=2; -update noar tt set b1='EAE6SVCWIOJT8C8U43X2DT6V' where id=2; -update noar ti set b1='EAE6SVCWIOJT8C8U43X2DT6V' where id=2; -update noar tt set v0='YPR6RR0CA' where id=2; -update noar ti set v0='YPR6RR0CA' where id=2; -update noar tt set b2='WWKE17RDEHPNUDPGV8R6J' where id=2; -update noar ti set b2='WWKE17RDEHPNUDPGV8R6J' where id=2; -update noar tt set v0='VQ8672N6Q2E6K5P0Z38KDPO3K' where id=3; -update noar ti set v0='VQ8672N6Q2E6K5P0Z38KDPO3K' where id=3; -update noar tt set b0='UZN8NJ' where id=3; -update noar ti set b0='UZN8NJ' where id=3; -update noar tt set v0='AD7GISADA0HDWNMY09CC517YT0KYV' where id=3; -update noar ti set v0='AD7GISADA0HDWNMY09CC517YT0KYV' where id=3; -update noar tt set b1='I6MVIOGHRIJGK' where id=3; -update noar ti set b1='I6MVIOGHRIJGK' where id=3; -update noar tt set v0='T4QZHBCWUMLGGJ42VK3' where id=3; -update noar ti set v0='T4QZHBCWUMLGGJ42VK3' where id=3; -update noar tt set b2='RYCVEA2MWSD3V' where id=3; -update noar ti set b2='RYCVEA2MWSD3V' where id=3; -update noar tt set v0='CGV7BB3KDF9XN3AEHCHF18UEDZAP' where id=4; -update noar ti set v0='CGV7BB3KDF9XN3AEHCHF18UEDZAP' where id=4; -update noar tt set b0='ZP69NTPUU6XO' where id=4; -update noar ti set b0='ZP69NTPUU6XO' where id=4; -update noar tt set v0='R36VIVOPJI9DJVL15SN' where id=4; -update noar ti set v0='R36VIVOPJI9DJVL15SN' where id=4; -update noar tt set b1='W28XU1ETMUIZ0A8292PN6OIZKKC5EZL6' where id=4; -update noar ti set b1='W28XU1ETMUIZ0A8292PN6OIZKKC5EZL6' where id=4; -update noar tt set v0='J8' where id=4; -update noar ti set v0='J8' where id=4; -update noar tt set b2='PLZZWYV8525FIVKX0KZ9048DP' where id=4; -update noar ti set b2='PLZZWYV8525FIVKX0KZ9048DP' where id=4; -update noar tt set v0='VBBWU4PL9BRV5A8PA990K6V3HGITB5' where id=5; -update noar ti set v0='VBBWU4PL9BRV5A8PA990K6V3HGITB5' where id=5; -update noar tt set b0='2MQSNZSILV4NPB1Z' where id=5; -update noar ti set b0='2MQSNZSILV4NPB1Z' where id=5; -update noar tt set v0='S89RMBJJYKDLEO8OWA' where id=5; -update noar ti set v0='S89RMBJJYKDLEO8OWA' where id=5; -update noar tt set b1='C5031XJOHTYMFAJXITS3VHNXLA' where id=5; -update noar ti set b1='C5031XJOHTYMFAJXITS3VHNXLA' where id=5; -update noar tt set v0='6VVIYV8FE27V96TRLKMNQHXIPRNWF7' where id=5; -update noar ti set v0='6VVIYV8FE27V96TRLKMNQHXIPRNWF7' where id=5; -update noar tt set b2='VSCDKI4MSMCUMZSCL6WBRPWCTMK337' where id=5; -update noar ti set b2='VSCDKI4MSMCUMZSCL6WBRPWCTMK337' where id=5; -update noar tt set v0='54V' where id=6; -update noar ti set v0='54V' where id=6; -update noar tt set b0='82QBXJKUKKR' where id=6; -update noar ti set b0='82QBXJKUKKR' where id=6; -update noar tt set v0='T84S8S2REYUQK' where id=6; -update noar ti set v0='T84S8S2REYUQK' where id=6; -update noar tt set b1='YCJAMV8M8' where id=6; -update noar ti set b1='YCJAMV8M8' where id=6; -update noar tt set v0='AQM9L3GW44L16QUMUZ8DF0HB' where id=6; -update noar ti set v0='AQM9L3GW44L16QUMUZ8DF0HB' where id=6; -update noar tt set b2='B96PEPUPI3MR1M7SMC1VPHSSTF4' where id=6; -update noar ti set b2='B96PEPUPI3MR1M7SMC1VPHSSTF4' where id=6; -update noar tt set v0='3TUO8C' where id=7; -update noar ti set v0='3TUO8C' where id=7; -update noar tt set b0='NZSR' where id=7; -update noar ti set b0='NZSR' where id=7; -update noar tt set v0='P7RJLZFVFDSJ7TJ01HN6WDI' where id=7; -update noar ti set v0='P7RJLZFVFDSJ7TJ01HN6WDI' where id=7; -update noar tt set b1='KYQGSX5XXV2IAOXMNM5CA4S' where id=7; -update noar ti set b1='KYQGSX5XXV2IAOXMNM5CA4S' where id=7; -update noar tt set v0='TS7E29UW' where id=7; -update noar ti set v0='TS7E29UW' where id=7; -update noar tt set b2='ZJVN43FK4GY9BMH' where id=7; -update noar ti set b2='ZJVN43FK4GY9BMH' where id=7; -update noar tt set v0='QDNOCG9I9MQFJ3AUKL5E7QV6Z' where id=8; -update noar ti set v0='QDNOCG9I9MQFJ3AUKL5E7QV6Z' where id=8; -update noar tt set b0='QQD38ZSIIKI54E5D6FYQ1M2MK' where id=8; -update noar ti set b0='QQD38ZSIIKI54E5D6FYQ1M2MK' where id=8; -update noar tt set v0='ERXI0FS4DT' where id=8; -update noar ti set v0='ERXI0FS4DT' where id=8; -update noar tt set b1='YIZZMA7A1GMT78S3DTOAFW' where id=8; -update noar ti set b1='YIZZMA7A1GMT78S3DTOAFW' where id=8; -update noar tt set v0='TU8BX9WGFPGD8DLSU1ZPUP2C9' where id=8; -update noar ti set v0='TU8BX9WGFPGD8DLSU1ZPUP2C9' where id=8; -update noar tt set b2='76ZM51PQ0WQQO0' where id=8; -update noar ti set b2='76ZM51PQ0WQQO0' where id=8; -update noar tt set v0='UHVZNM72K1PYH3KPOOU4BDQOG68F' where id=9; -update noar ti set v0='UHVZNM72K1PYH3KPOOU4BDQOG68F' where id=9; -update noar tt set b0='Q6HVTBCDE4OW3JUIXFZ4LHGR' where id=9; -update noar ti set b0='Q6HVTBCDE4OW3JUIXFZ4LHGR' where id=9; -update noar tt set v0='N344L1Z2ZLE60WG4KEINUYV' where id=9; -update noar ti set v0='N344L1Z2ZLE60WG4KEINUYV' where id=9; -update noar tt set b1='0' where id=9; -update noar ti set b1='0' where id=9; -update noar tt set v0='PKNF5CZGEO3GB6UW0MTH2ATDJF1J' where id=9; -update noar ti set v0='PKNF5CZGEO3GB6UW0MTH2ATDJF1J' where id=9; -update noar tt set b2='US98NPJZDKNEH2BS95J9T4ZNOH2O5O3' where id=9; -update noar ti set b2='US98NPJZDKNEH2BS95J9T4ZNOH2O5O3' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -v0 varchar(256) not null, -b0 blob not null, -b1 blob not null, -b2 longblob not null -) engine=tokudb; -insert into tt values (1,'','','',''); -insert into tt values (2,'','','',''); -insert into tt values (3,'','','',''); -insert into tt values (4,'','','',''); -insert into tt values (5,'','','',''); -insert into tt values (6,'','','',''); -insert into tt values (7,'','','',''); -insert into tt values (8,'','','',''); -insert into tt values (9,'','','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='PIK848930V5K7JTC0GJVJ3O4AMC' where id=1; -update noar ti set v0='PIK848930V5K7JTC0GJVJ3O4AMC' where id=1; -update noar tt set b0='DKZ6ZNLD4' where id=1; -update noar ti set b0='DKZ6ZNLD4' where id=1; -update noar tt set v0='NXSQT' where id=1; -update noar ti set v0='NXSQT' where id=1; -update noar tt set b1='2ORHQ83GDJNQ' where id=1; -update noar ti set b1='2ORHQ83GDJNQ' where id=1; -update noar tt set v0='CGLKOQ7GRQQLVI102R' where id=1; -update noar ti set v0='CGLKOQ7GRQQLVI102R' where id=1; -update noar tt set b2='L7VA' where id=1; -update noar ti set b2='L7VA' where id=1; -update noar tt set v0='L664J9DEOPHH93N8GMPXCKZH6H' where id=2; -update noar ti set v0='L664J9DEOPHH93N8GMPXCKZH6H' where id=2; -update noar tt set b0='V3X8JKCJ3UPIFJC3UOZUO443PADM0' where id=2; -update noar ti set b0='V3X8JKCJ3UPIFJC3UOZUO443PADM0' where id=2; -update noar tt set v0='SWGC0IKH8RUCLA5R32JTT5' where id=2; -update noar ti set v0='SWGC0IKH8RUCLA5R32JTT5' where id=2; -update noar tt set b1='5I175TSKW' where id=2; -update noar ti set b1='5I175TSKW' where id=2; -update noar tt set v0='65E2SPUIMZES192Z2YC' where id=2; -update noar ti set v0='65E2SPUIMZES192Z2YC' where id=2; -update noar tt set b2='TMQU7' where id=2; -update noar ti set b2='TMQU7' where id=2; -update noar tt set v0='K' where id=3; -update noar ti set v0='K' where id=3; -update noar tt set b0='IJOXWKF' where id=3; -update noar ti set b0='IJOXWKF' where id=3; -update noar tt set v0='1A9DQ' where id=3; -update noar ti set v0='1A9DQ' where id=3; -update noar tt set b1='8KNR1HXJUQQOAEU156TY' where id=3; -update noar ti set b1='8KNR1HXJUQQOAEU156TY' where id=3; -update noar tt set v0='P7WF4I04306KUMO2N' where id=3; -update noar ti set v0='P7WF4I04306KUMO2N' where id=3; -update noar tt set b2='PFMWGFO' where id=3; -update noar ti set b2='PFMWGFO' where id=3; -update noar tt set v0='IGS4JU' where id=4; -update noar ti set v0='IGS4JU' where id=4; -update noar tt set b0='8FY6ADN8TQNM' where id=4; -update noar ti set b0='8FY6ADN8TQNM' where id=4; -update noar tt set v0='1PICAVU8PDEL2MNY50N' where id=4; -update noar ti set v0='1PICAVU8PDEL2MNY50N' where id=4; -update noar tt set b1='WYV844CXF477KNUZ9REITKH1IJE' where id=4; -update noar ti set b1='WYV844CXF477KNUZ9REITKH1IJE' where id=4; -update noar tt set v0='VBLEEPOO2W56K94S4C600' where id=4; -update noar ti set v0='VBLEEPOO2W56K94S4C600' where id=4; -update noar tt set b2='F5NX90U' where id=4; -update noar ti set b2='F5NX90U' where id=4; -update noar tt set v0='XDP5IN8CETC6RW2' where id=5; -update noar ti set v0='XDP5IN8CETC6RW2' where id=5; -update noar tt set b0='NNB9K32YJ478Q2KOW7UOI2EQY3' where id=5; -update noar ti set b0='NNB9K32YJ478Q2KOW7UOI2EQY3' where id=5; -update noar tt set v0='W952HWFPD6KLAUSU1BL0X7M75' where id=5; -update noar ti set v0='W952HWFPD6KLAUSU1BL0X7M75' where id=5; -update noar tt set b1='8CVGF8YQ4PYIS8ZLM8DAXZPP4' where id=5; -update noar ti set b1='8CVGF8YQ4PYIS8ZLM8DAXZPP4' where id=5; -update noar tt set v0='5ICJ' where id=5; -update noar ti set v0='5ICJ' where id=5; -update noar tt set b2='MNUT8R1DVJ1KDL9K1' where id=5; -update noar ti set b2='MNUT8R1DVJ1KDL9K1' where id=5; -update noar tt set v0='9CO0E7RU1U0KVQ8S92FWCFY4JDQ55' where id=6; -update noar ti set v0='9CO0E7RU1U0KVQ8S92FWCFY4JDQ55' where id=6; -update noar tt set b0='KVPBH' where id=6; -update noar ti set b0='KVPBH' where id=6; -update noar tt set v0='TX' where id=6; -update noar ti set v0='TX' where id=6; -update noar tt set b1='NALHFFULK' where id=6; -update noar ti set b1='NALHFFULK' where id=6; -update noar tt set v0='RXWND4E243CHD2584ZCQ7' where id=6; -update noar ti set v0='RXWND4E243CHD2584ZCQ7' where id=6; -update noar tt set b2='F4TO6METCLEVAL2VBPZJ8TOAWD' where id=6; -update noar ti set b2='F4TO6METCLEVAL2VBPZJ8TOAWD' where id=6; -update noar tt set v0='AN7CQKR80HTNYYHRN5E9MV' where id=7; -update noar ti set v0='AN7CQKR80HTNYYHRN5E9MV' where id=7; -update noar tt set b0='JZTOSN4131P5ABLZ' where id=7; -update noar ti set b0='JZTOSN4131P5ABLZ' where id=7; -update noar tt set v0='GPOOAJKUI64C' where id=7; -update noar ti set v0='GPOOAJKUI64C' where id=7; -update noar tt set b1='42MFK7ZM7' where id=7; -update noar ti set b1='42MFK7ZM7' where id=7; -update noar tt set v0='RUOHSPKTCP1ZWPC72JEUC7AEGS' where id=7; -update noar ti set v0='RUOHSPKTCP1ZWPC72JEUC7AEGS' where id=7; -update noar tt set b2='BUU2CLFLHMTQL' where id=7; -update noar ti set b2='BUU2CLFLHMTQL' where id=7; -update noar tt set v0='2X6EJP92K892R8XTYJP67TOB8' where id=8; -update noar ti set v0='2X6EJP92K892R8XTYJP67TOB8' where id=8; -update noar tt set b0='TBSM2JLP3T7ULLWS75BUPK' where id=8; -update noar ti set b0='TBSM2JLP3T7ULLWS75BUPK' where id=8; -update noar tt set v0='HKJO6VSPOX3' where id=8; -update noar ti set v0='HKJO6VSPOX3' where id=8; -update noar tt set b1='VEYEYI6Z24671KDA0KV4KWDC4C52N' where id=8; -update noar ti set b1='VEYEYI6Z24671KDA0KV4KWDC4C52N' where id=8; -update noar tt set v0='UW9VSXQY5BYSYMOMWXJJKVCW' where id=8; -update noar ti set v0='UW9VSXQY5BYSYMOMWXJJKVCW' where id=8; -update noar tt set b2='5VKVCN1NU12T' where id=8; -update noar ti set b2='5VKVCN1NU12T' where id=8; -update noar tt set v0='IR4THFPYL8NL4WY8' where id=9; -update noar ti set v0='IR4THFPYL8NL4WY8' where id=9; -update noar tt set b0='JIPCBM9NYFTJ4NJ6HIWZR' where id=9; -update noar ti set b0='JIPCBM9NYFTJ4NJ6HIWZR' where id=9; -update noar tt set v0='1JVC7DEKL9EEY56RPOL23PH' where id=9; -update noar ti set v0='1JVC7DEKL9EEY56RPOL23PH' where id=9; -update noar tt set b1='KCWZ3OA6YZZ' where id=9; -update noar ti set b1='KCWZ3OA6YZZ' where id=9; -update noar tt set v0='JYITTD5TBMUEWTG6BJR2UA6PL6FR1' where id=9; -update noar ti set v0='JYITTD5TBMUEWTG6BJR2UA6PL6FR1' where id=9; -update noar tt set b2='8DNARRGW8XT9YTSJUQBJDOAJ9X5G5N5' where id=9; -update noar ti set b2='8DNARRGW8XT9YTSJUQBJDOAJ9X5G5N5' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -v0 varchar(32) null, -b0 blob null, -b1 mediumblob null, -b2 tinyblob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='VASH4CFHPXPECA2G20IB66E' where id=1; -update noar ti set v0='VASH4CFHPXPECA2G20IB66E' where id=1; -update noar tt set b0='8220R2SWHAQBF' where id=1; -update noar ti set b0='8220R2SWHAQBF' where id=1; -update noar tt set v0='JFMOWJ8NJAGXB5VPFQ4QEJA6KHUH' where id=1; -update noar ti set v0='JFMOWJ8NJAGXB5VPFQ4QEJA6KHUH' where id=1; -update noar tt set b1='8LWY6AR8G7SM23OW7G4AQO' where id=1; -update noar ti set b1='8LWY6AR8G7SM23OW7G4AQO' where id=1; -update noar tt set v0='VJQZKV5O63RQ2E5KGPVC' where id=1; -update noar ti set v0='VJQZKV5O63RQ2E5KGPVC' where id=1; -update noar tt set b2='LC6' where id=1; -update noar ti set b2='LC6' where id=1; -update noar tt set v0='3O0SALEHAY7D32IPGAPP2CKJCD' where id=2; -update noar ti set v0='3O0SALEHAY7D32IPGAPP2CKJCD' where id=2; -update noar tt set b0='CVBL40Z2IAQHZ9' where id=2; -update noar ti set b0='CVBL40Z2IAQHZ9' where id=2; -update noar tt set v0='ZQJ4T0J3EQ6EH01S059HQ3QPWRSKFTKM' where id=2; -update noar ti set v0='ZQJ4T0J3EQ6EH01S059HQ3QPWRSKFTKM' where id=2; -update noar tt set b1='36U2OH3X2ZCLSAEQJEM3UO' where id=2; -update noar ti set b1='36U2OH3X2ZCLSAEQJEM3UO' where id=2; -update noar tt set v0='QELXOIF044KO6DB' where id=2; -update noar ti set v0='QELXOIF044KO6DB' where id=2; -update noar tt set b2='LR' where id=2; -update noar ti set b2='LR' where id=2; -update noar tt set v0='DFLUV' where id=3; -update noar ti set v0='DFLUV' where id=3; -update noar tt set b0='11R' where id=3; -update noar ti set b0='11R' where id=3; -update noar tt set v0='ZEKBCRHFB59701D04P8RF5A9G0U' where id=3; -update noar ti set v0='ZEKBCRHFB59701D04P8RF5A9G0U' where id=3; -update noar tt set b1='9XG1RX32GSAFXIOBNPWRYRCVRME' where id=3; -update noar ti set b1='9XG1RX32GSAFXIOBNPWRYRCVRME' where id=3; -update noar tt set v0='N9AEUSNSNQB25QGPQC49SRV' where id=3; -update noar ti set v0='N9AEUSNSNQB25QGPQC49SRV' where id=3; -update noar tt set b2='XI6M' where id=3; -update noar ti set b2='XI6M' where id=3; -update noar tt set v0='XB82QW78JJJG' where id=4; -update noar ti set v0='XB82QW78JJJG' where id=4; -update noar tt set b0='QH8AJ9R8E7LXD2E6Y9MHFTJSB9DJD8Y' where id=4; -update noar ti set b0='QH8AJ9R8E7LXD2E6Y9MHFTJSB9DJD8Y' where id=4; -update noar tt set v0='9CQN0CQG26DK' where id=4; -update noar ti set v0='9CQN0CQG26DK' where id=4; -update noar tt set b1='FGRJ9V3WT0VG9A' where id=4; -update noar ti set b1='FGRJ9V3WT0VG9A' where id=4; -update noar tt set v0='OH2TDKG6' where id=4; -update noar ti set v0='OH2TDKG6' where id=4; -update noar tt set b2='70OHIX9R16' where id=4; -update noar ti set b2='70OHIX9R16' where id=4; -update noar tt set v0='G7JPAZY3B23KMDEY7U8R' where id=5; -update noar ti set v0='G7JPAZY3B23KMDEY7U8R' where id=5; -update noar tt set b0='K2FKHCLSGYEPKU1LG4G5JRTA9MCGC5HR' where id=5; -update noar ti set b0='K2FKHCLSGYEPKU1LG4G5JRTA9MCGC5HR' where id=5; -update noar tt set v0='57YIL2J9W510T7FHY70AB0F2WTD3' where id=5; -update noar ti set v0='57YIL2J9W510T7FHY70AB0F2WTD3' where id=5; -update noar tt set b1='O' where id=5; -update noar ti set b1='O' where id=5; -update noar tt set v0='BE' where id=5; -update noar ti set v0='BE' where id=5; -update noar tt set b2='P9IGX0UVUJMF42389S8' where id=5; -update noar ti set b2='P9IGX0UVUJMF42389S8' where id=5; -update noar tt set v0='4AGJH9HHNAFT8F6YC4PSQHASE7' where id=6; -update noar ti set v0='4AGJH9HHNAFT8F6YC4PSQHASE7' where id=6; -update noar tt set b0='Y0DZX2E3LV4U0QW6V' where id=6; -update noar ti set b0='Y0DZX2E3LV4U0QW6V' where id=6; -update noar tt set v0='H6PV3VFUD0514PY' where id=6; -update noar ti set v0='H6PV3VFUD0514PY' where id=6; -update noar tt set b1='NAHBN4CN58CM4NS9W9TX' where id=6; -update noar ti set b1='NAHBN4CN58CM4NS9W9TX' where id=6; -update noar tt set v0='S6066LV8EMUGGOE5SL2XQ' where id=6; -update noar ti set v0='S6066LV8EMUGGOE5SL2XQ' where id=6; -update noar tt set b2='PZ2W' where id=6; -update noar ti set b2='PZ2W' where id=6; -update noar tt set v0='2RFIXZT6B1S0DO4U' where id=7; -update noar ti set v0='2RFIXZT6B1S0DO4U' where id=7; -update noar tt set b0='32ET70UQ85YX5EA2' where id=7; -update noar ti set b0='32ET70UQ85YX5EA2' where id=7; -update noar tt set v0='K0JQU6VFAYE2ZHT2WFCLLO53F6K' where id=7; -update noar ti set v0='K0JQU6VFAYE2ZHT2WFCLLO53F6K' where id=7; -update noar tt set b1='I5' where id=7; -update noar ti set b1='I5' where id=7; -update noar tt set v0='YK00JL1KCSZ0BOS1XU' where id=7; -update noar ti set v0='YK00JL1KCSZ0BOS1XU' where id=7; -update noar tt set b2='N4JJS1II' where id=7; -update noar ti set b2='N4JJS1II' where id=7; -update noar tt set v0='LSH2ZQ6AZPOIKWPSFAQM63A0' where id=8; -update noar ti set v0='LSH2ZQ6AZPOIKWPSFAQM63A0' where id=8; -update noar tt set b0='PCE19F85UZRBDSZQ77XPOWIY5N87OJ4J' where id=8; -update noar ti set b0='PCE19F85UZRBDSZQ77XPOWIY5N87OJ4J' where id=8; -update noar tt set v0='IS' where id=8; -update noar ti set v0='IS' where id=8; -update noar tt set b1='BG32D18NHVGVLWA9' where id=8; -update noar ti set b1='BG32D18NHVGVLWA9' where id=8; -update noar tt set v0='UOZ' where id=8; -update noar ti set v0='UOZ' where id=8; -update noar tt set b2='KJ29EHTRB9DPTHNAKGKE8CMT4XKEXSO' where id=8; -update noar ti set b2='KJ29EHTRB9DPTHNAKGKE8CMT4XKEXSO' where id=8; -update noar tt set v0='N0GP3' where id=9; -update noar ti set v0='N0GP3' where id=9; -update noar tt set b0='14W38Z82UWJLU' where id=9; -update noar ti set b0='14W38Z82UWJLU' where id=9; -update noar tt set v0='QW1GS4PGNPZ063LF0' where id=9; -update noar ti set v0='QW1GS4PGNPZ063LF0' where id=9; -update noar tt set b1='A' where id=9; -update noar ti set b1='A' where id=9; -update noar tt set v0='4IZHBRVS36RJ8EZ4N5M4ME1EB9A' where id=9; -update noar ti set v0='4IZHBRVS36RJ8EZ4N5M4ME1EB9A' where id=9; -update noar tt set b2='03JTWKN4QIFBCZDY9D' where id=9; -update noar ti set b2='03JTWKN4QIFBCZDY9D' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -v0 varchar(256) null, -b0 blob null, -b1 mediumblob null, -b2 tinyblob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='S5XYTFIBIRL682CLNPN4VV' where id=1; -update noar ti set v0='S5XYTFIBIRL682CLNPN4VV' where id=1; -update noar tt set b0='GHLR29Z9D' where id=1; -update noar ti set b0='GHLR29Z9D' where id=1; -update noar tt set v0='B6TSLV2HDAT228QL8' where id=1; -update noar ti set v0='B6TSLV2HDAT228QL8' where id=1; -update noar tt set b1='HSL' where id=1; -update noar ti set b1='HSL' where id=1; -update noar tt set v0='OR57BP5ICHGJU8FK' where id=1; -update noar ti set v0='OR57BP5ICHGJU8FK' where id=1; -update noar tt set b2='UMI1FKXU6GVPQ1W5Q4CIP0DOV22' where id=1; -update noar ti set b2='UMI1FKXU6GVPQ1W5Q4CIP0DOV22' where id=1; -update noar tt set v0='ZPX3GM3827' where id=2; -update noar ti set v0='ZPX3GM3827' where id=2; -update noar tt set b0='1' where id=2; -update noar ti set b0='1' where id=2; -update noar tt set v0='5RU36NXKUX4' where id=2; -update noar ti set v0='5RU36NXKUX4' where id=2; -update noar tt set b1='K6UQUM4ERPKMXQ7HFXIFDDL5O99JO' where id=2; -update noar ti set b1='K6UQUM4ERPKMXQ7HFXIFDDL5O99JO' where id=2; -update noar tt set v0='TMJ7Y9S94HEKO5LL7HLG53JZWP' where id=2; -update noar ti set v0='TMJ7Y9S94HEKO5LL7HLG53JZWP' where id=2; -update noar tt set b2='1JCI1R8VZ2785HGWAP2FIHLQM73UOOQJ' where id=2; -update noar ti set b2='1JCI1R8VZ2785HGWAP2FIHLQM73UOOQJ' where id=2; -update noar tt set v0='YUT' where id=3; -update noar ti set v0='YUT' where id=3; -update noar tt set b0='CMSUE' where id=3; -update noar ti set b0='CMSUE' where id=3; -update noar tt set v0='RTM' where id=3; -update noar ti set v0='RTM' where id=3; -update noar tt set b1='MP' where id=3; -update noar ti set b1='MP' where id=3; -update noar tt set v0='2GM2B0AIJ0Q5FERKDI6GEP1YTR4K5R' where id=3; -update noar ti set v0='2GM2B0AIJ0Q5FERKDI6GEP1YTR4K5R' where id=3; -update noar tt set b2='HAVEEIAYLPKWAZLCR264QZO79' where id=3; -update noar ti set b2='HAVEEIAYLPKWAZLCR264QZO79' where id=3; -update noar tt set v0='0J7U341QLIDZ30GKVO47V8PI49E7B8I' where id=4; -update noar ti set v0='0J7U341QLIDZ30GKVO47V8PI49E7B8I' where id=4; -update noar tt set b0='TRXI4SQ4HO29AM' where id=4; -update noar ti set b0='TRXI4SQ4HO29AM' where id=4; -update noar tt set v0='93140JN' where id=4; -update noar ti set v0='93140JN' where id=4; -update noar tt set b1='V25RFLTKPDUD' where id=4; -update noar ti set b1='V25RFLTKPDUD' where id=4; -update noar tt set v0='DH5B3IYTYZQLNW3PXBQA0FE' where id=4; -update noar ti set v0='DH5B3IYTYZQLNW3PXBQA0FE' where id=4; -update noar tt set b2='J7FV' where id=4; -update noar ti set b2='J7FV' where id=4; -update noar tt set v0='8XYTUZWE6HIF74QE7AYOHWCAGF' where id=5; -update noar ti set v0='8XYTUZWE6HIF74QE7AYOHWCAGF' where id=5; -update noar tt set b0='591ERV2E03QA5TPS7L7R60TJH' where id=5; -update noar ti set b0='591ERV2E03QA5TPS7L7R60TJH' where id=5; -update noar tt set v0='O2I8I690I2JENJIANLA1H90DMK' where id=5; -update noar ti set v0='O2I8I690I2JENJIANLA1H90DMK' where id=5; -update noar tt set b1='3HLWRN7J84QJU6' where id=5; -update noar ti set b1='3HLWRN7J84QJU6' where id=5; -update noar tt set v0='X3Q9DOEP6T5UECW' where id=5; -update noar ti set v0='X3Q9DOEP6T5UECW' where id=5; -update noar tt set b2='AUXBGX63JR8J9' where id=5; -update noar ti set b2='AUXBGX63JR8J9' where id=5; -update noar tt set v0='HBB00KXSZ7XYOHQJFDY7VN5S3' where id=6; -update noar ti set v0='HBB00KXSZ7XYOHQJFDY7VN5S3' where id=6; -update noar tt set b0='UZGCCJZT' where id=6; -update noar ti set b0='UZGCCJZT' where id=6; -update noar tt set v0='3G2LOTNOZCGERF0UVZL1CP7' where id=6; -update noar ti set v0='3G2LOTNOZCGERF0UVZL1CP7' where id=6; -update noar tt set b1='XZFNXV8JI7' where id=6; -update noar ti set b1='XZFNXV8JI7' where id=6; -update noar tt set v0='J0' where id=6; -update noar ti set v0='J0' where id=6; -update noar tt set b2='TYJ' where id=6; -update noar ti set b2='TYJ' where id=6; -update noar tt set v0='PTS3' where id=7; -update noar ti set v0='PTS3' where id=7; -update noar tt set b0='4UYA7948LW684ND' where id=7; -update noar ti set b0='4UYA7948LW684ND' where id=7; -update noar tt set v0='C406K1WBS4CE2' where id=7; -update noar ti set v0='C406K1WBS4CE2' where id=7; -update noar tt set b1='SIY5JAEYXQ8SCBNFQBX0EBN7ZTK07' where id=7; -update noar ti set b1='SIY5JAEYXQ8SCBNFQBX0EBN7ZTK07' where id=7; -update noar tt set v0='AVT7' where id=7; -update noar ti set v0='AVT7' where id=7; -update noar tt set b2='E4GS6LCPPX29SW22UZZNSMT' where id=7; -update noar ti set b2='E4GS6LCPPX29SW22UZZNSMT' where id=7; -update noar tt set v0='WQCTS2K' where id=8; -update noar ti set v0='WQCTS2K' where id=8; -update noar tt set b0='Y82WBEIYBD' where id=8; -update noar ti set b0='Y82WBEIYBD' where id=8; -update noar tt set v0='JQM' where id=8; -update noar ti set v0='JQM' where id=8; -update noar tt set b1='BCHUH4PK4C7U4X9JBWTMKT6TX' where id=8; -update noar ti set b1='BCHUH4PK4C7U4X9JBWTMKT6TX' where id=8; -update noar tt set v0='SKMQI2JEG3A2UIOSQCW259BWAYV' where id=8; -update noar ti set v0='SKMQI2JEG3A2UIOSQCW259BWAYV' where id=8; -update noar tt set b2='Q1X4WY148VU2NMEHKEQBK6ZPY6' where id=8; -update noar ti set b2='Q1X4WY148VU2NMEHKEQBK6ZPY6' where id=8; -update noar tt set v0='RYE' where id=9; -update noar ti set v0='RYE' where id=9; -update noar tt set b0='M656YPEDHKI1FEZYM5PD22481YQSPDNM' where id=9; -update noar ti set b0='M656YPEDHKI1FEZYM5PD22481YQSPDNM' where id=9; -update noar tt set v0='TKNLFV9Z6QRXCY0IV5NNPSHXLAWBCTVQ' where id=9; -update noar ti set v0='TKNLFV9Z6QRXCY0IV5NNPSHXLAWBCTVQ' where id=9; -update noar tt set b1='XNNLVS4BBBUXYGLN53M0' where id=9; -update noar ti set b1='XNNLVS4BBBUXYGLN53M0' where id=9; -update noar tt set v0='DDV4QXQ8Y661YU6YUIZYTZKAKCVWMP0' where id=9; -update noar ti set v0='DDV4QXQ8Y661YU6YUIZYTZKAKCVWMP0' where id=9; -update noar tt set b2='QPWJ3HPR03BDMIV9B4' where id=9; -update noar ti set b2='QPWJ3HPR03BDMIV9B4' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -v0 varchar(32) not null, -b0 blob not null, -b1 mediumblob not null, -b2 tinyblob not null -) engine=tokudb; -insert into tt values (1,'','','',''); -insert into tt values (2,'','','',''); -insert into tt values (3,'','','',''); -insert into tt values (4,'','','',''); -insert into tt values (5,'','','',''); -insert into tt values (6,'','','',''); -insert into tt values (7,'','','',''); -insert into tt values (8,'','','',''); -insert into tt values (9,'','','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='V5J9BZKDV73VULOTIMBCRY7WESI5' where id=1; -update noar ti set v0='V5J9BZKDV73VULOTIMBCRY7WESI5' where id=1; -update noar tt set b0='97' where id=1; -update noar ti set b0='97' where id=1; -update noar tt set v0='TBB25V4H1NHYYMH83WT7K8GFMN' where id=1; -update noar ti set v0='TBB25V4H1NHYYMH83WT7K8GFMN' where id=1; -update noar tt set b1='MNSEU4QMVLPW' where id=1; -update noar ti set b1='MNSEU4QMVLPW' where id=1; -update noar tt set v0='GF6L9YYC93K4WIB' where id=1; -update noar ti set v0='GF6L9YYC93K4WIB' where id=1; -update noar tt set b2='P487KQKNU8295BQZG7P10DKMT' where id=1; -update noar ti set b2='P487KQKNU8295BQZG7P10DKMT' where id=1; -update noar tt set v0='57ZX2UFGXOH3E76WRA4SXVQ7XJFPZV1' where id=2; -update noar ti set v0='57ZX2UFGXOH3E76WRA4SXVQ7XJFPZV1' where id=2; -update noar tt set b0='KVORMV0MAQLB56QLTUPPN0U1IC' where id=2; -update noar ti set b0='KVORMV0MAQLB56QLTUPPN0U1IC' where id=2; -update noar tt set v0='GTTYH7R6EXRK' where id=2; -update noar ti set v0='GTTYH7R6EXRK' where id=2; -update noar tt set b1='DADK3BK8C423W' where id=2; -update noar ti set b1='DADK3BK8C423W' where id=2; -update noar tt set v0='ECA' where id=2; -update noar ti set v0='ECA' where id=2; -update noar tt set b2='W0A36DNEBJ7JZIENX47' where id=2; -update noar ti set b2='W0A36DNEBJ7JZIENX47' where id=2; -update noar tt set v0='97N990O6FS7GMC2' where id=3; -update noar ti set v0='97N990O6FS7GMC2' where id=3; -update noar tt set b0='XYE3Q' where id=3; -update noar ti set b0='XYE3Q' where id=3; -update noar tt set v0='6692' where id=3; -update noar ti set v0='6692' where id=3; -update noar tt set b1='XZFR9W3NH' where id=3; -update noar ti set b1='XZFR9W3NH' where id=3; -update noar tt set v0='2A0E' where id=3; -update noar ti set v0='2A0E' where id=3; -update noar tt set b2='KH6CNOT0D561XJ5Z913PKHOEBEKBO' where id=3; -update noar ti set b2='KH6CNOT0D561XJ5Z913PKHOEBEKBO' where id=3; -update noar tt set v0='W7ETQO' where id=4; -update noar ti set v0='W7ETQO' where id=4; -update noar tt set b0='2U2NYCND795FXC1' where id=4; -update noar ti set b0='2U2NYCND795FXC1' where id=4; -update noar tt set v0='56QE0Z9A08H7TH3F0MA9XV' where id=4; -update noar ti set v0='56QE0Z9A08H7TH3F0MA9XV' where id=4; -update noar tt set b1='DZNXE5A9NFTJRAY1XWHC' where id=4; -update noar ti set b1='DZNXE5A9NFTJRAY1XWHC' where id=4; -update noar tt set v0='TN5CE56JT28BDBN0BH65UP9S2E132IDC' where id=4; -update noar ti set v0='TN5CE56JT28BDBN0BH65UP9S2E132IDC' where id=4; -update noar tt set b2='CF2ZQFNS' where id=4; -update noar ti set b2='CF2ZQFNS' where id=4; -update noar tt set v0='BSEYQPDI6K' where id=5; -update noar ti set v0='BSEYQPDI6K' where id=5; -update noar tt set b0='O42XW16A2OOR49I1' where id=5; -update noar ti set b0='O42XW16A2OOR49I1' where id=5; -update noar tt set v0='FCMVWLR89X4XRYN55P2P' where id=5; -update noar ti set v0='FCMVWLR89X4XRYN55P2P' where id=5; -update noar tt set b1='CYJWKRAR10WKKNH1' where id=5; -update noar ti set b1='CYJWKRAR10WKKNH1' where id=5; -update noar tt set v0='96848K86' where id=5; -update noar ti set v0='96848K86' where id=5; -update noar tt set b2='18XFMNE92YQTVVY62K' where id=5; -update noar ti set b2='18XFMNE92YQTVVY62K' where id=5; -update noar tt set v0='6X28FJ0AR91T6GI4' where id=6; -update noar ti set v0='6X28FJ0AR91T6GI4' where id=6; -update noar tt set b0='ZA55JV' where id=6; -update noar ti set b0='ZA55JV' where id=6; -update noar tt set v0='WR12Q8PX9O' where id=6; -update noar ti set v0='WR12Q8PX9O' where id=6; -update noar tt set b1='KH444CFXOK2' where id=6; -update noar ti set b1='KH444CFXOK2' where id=6; -update noar tt set v0='XA807K3DY7E2KPMTIIC6SEQQQ737' where id=6; -update noar ti set v0='XA807K3DY7E2KPMTIIC6SEQQQ737' where id=6; -update noar tt set b2='TE2' where id=6; -update noar ti set b2='TE2' where id=6; -update noar tt set v0='58' where id=7; -update noar ti set v0='58' where id=7; -update noar tt set b0='7Y0LL1VS4LRW1671QGU' where id=7; -update noar ti set b0='7Y0LL1VS4LRW1671QGU' where id=7; -update noar tt set v0='CN0DUMB4ZH0FYRCBCUFAU288QMF' where id=7; -update noar ti set v0='CN0DUMB4ZH0FYRCBCUFAU288QMF' where id=7; -update noar tt set b1='TZCM2KR104Z3L4NYOI' where id=7; -update noar ti set b1='TZCM2KR104Z3L4NYOI' where id=7; -update noar tt set v0='5BK2KBK4' where id=7; -update noar ti set v0='5BK2KBK4' where id=7; -update noar tt set b2='R6BO38TUGY1XJPXZ' where id=7; -update noar ti set b2='R6BO38TUGY1XJPXZ' where id=7; -update noar tt set v0='GKFHJCP9WJ4TM7RD7OGK60ZH' where id=8; -update noar ti set v0='GKFHJCP9WJ4TM7RD7OGK60ZH' where id=8; -update noar tt set b0='R4' where id=8; -update noar ti set b0='R4' where id=8; -update noar tt set v0='UD6TH59NTL66XNAKL' where id=8; -update noar ti set v0='UD6TH59NTL66XNAKL' where id=8; -update noar tt set b1='6HF247PXA2880ODXVCPP' where id=8; -update noar ti set b1='6HF247PXA2880ODXVCPP' where id=8; -update noar tt set v0='K0POXNHX' where id=8; -update noar ti set v0='K0POXNHX' where id=8; -update noar tt set b2='QI4N0HYUIFXHMWWRZEBJU' where id=8; -update noar ti set b2='QI4N0HYUIFXHMWWRZEBJU' where id=8; -update noar tt set v0='EE1FYWU' where id=9; -update noar ti set v0='EE1FYWU' where id=9; -update noar tt set b0='LU9' where id=9; -update noar ti set b0='LU9' where id=9; -update noar tt set v0='61SDLBOH2Z0URC5DUDGD' where id=9; -update noar ti set v0='61SDLBOH2Z0URC5DUDGD' where id=9; -update noar tt set b1='CHK319K0' where id=9; -update noar ti set b1='CHK319K0' where id=9; -update noar tt set v0='LL4Z1GL2PVH1RQKEJWFPRZ072EZFP2Q' where id=9; -update noar ti set v0='LL4Z1GL2PVH1RQKEJWFPRZ072EZFP2Q' where id=9; -update noar tt set b2='I2OEFB8LPV8' where id=9; -update noar ti set b2='I2OEFB8LPV8' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -v0 varchar(256) not null, -b0 blob not null, -b1 mediumblob not null, -b2 tinyblob not null -) engine=tokudb; -insert into tt values (1,'','','',''); -insert into tt values (2,'','','',''); -insert into tt values (3,'','','',''); -insert into tt values (4,'','','',''); -insert into tt values (5,'','','',''); -insert into tt values (6,'','','',''); -insert into tt values (7,'','','',''); -insert into tt values (8,'','','',''); -insert into tt values (9,'','','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='UH1QOV' where id=1; -update noar ti set v0='UH1QOV' where id=1; -update noar tt set b0='OCO0' where id=1; -update noar ti set b0='OCO0' where id=1; -update noar tt set v0='CUA8VV6DON' where id=1; -update noar ti set v0='CUA8VV6DON' where id=1; -update noar tt set b1='GYG3GND4JATRQGYIO6GY1' where id=1; -update noar ti set b1='GYG3GND4JATRQGYIO6GY1' where id=1; -update noar tt set v0='5DFKBSOVPS3JS5LTTDT3' where id=1; -update noar ti set v0='5DFKBSOVPS3JS5LTTDT3' where id=1; -update noar tt set b2='8ULDHFEMAZ3HL1R4RZTZX5Q0YS' where id=1; -update noar ti set b2='8ULDHFEMAZ3HL1R4RZTZX5Q0YS' where id=1; -update noar tt set v0='V7ZKV9X' where id=2; -update noar ti set v0='V7ZKV9X' where id=2; -update noar tt set b0='CI6VWYQDBYZ4PWEMGBQXU' where id=2; -update noar ti set b0='CI6VWYQDBYZ4PWEMGBQXU' where id=2; -update noar tt set v0='PC' where id=2; -update noar ti set v0='PC' where id=2; -update noar tt set b1='DQRBT5OFC' where id=2; -update noar ti set b1='DQRBT5OFC' where id=2; -update noar tt set v0='N9TL8BEYKCGYZZMP1QZFW' where id=2; -update noar ti set v0='N9TL8BEYKCGYZZMP1QZFW' where id=2; -update noar tt set b2='EQHBBW2C7SEP8VAT' where id=2; -update noar ti set b2='EQHBBW2C7SEP8VAT' where id=2; -update noar tt set v0='V7BRD9R3Z' where id=3; -update noar ti set v0='V7BRD9R3Z' where id=3; -update noar tt set b0='1W0' where id=3; -update noar ti set b0='1W0' where id=3; -update noar tt set v0='N1G10DIA1BL' where id=3; -update noar ti set v0='N1G10DIA1BL' where id=3; -update noar tt set b1='C7J3M31O4I3JIR5AMEXGUX0BVPIB76OQ' where id=3; -update noar ti set b1='C7J3M31O4I3JIR5AMEXGUX0BVPIB76OQ' where id=3; -update noar tt set v0='GA5E4KI4TAN5LLSYC5XRJZNMBM' where id=3; -update noar ti set v0='GA5E4KI4TAN5LLSYC5XRJZNMBM' where id=3; -update noar tt set b2='8WZ1U2EXOWRP3ARVSQGDKINE' where id=3; -update noar ti set b2='8WZ1U2EXOWRP3ARVSQGDKINE' where id=3; -update noar tt set v0='S5LZC' where id=4; -update noar ti set v0='S5LZC' where id=4; -update noar tt set b0='KVKT64MZ1VHP2QK4EXTH80' where id=4; -update noar ti set b0='KVKT64MZ1VHP2QK4EXTH80' where id=4; -update noar tt set v0='F46PG' where id=4; -update noar ti set v0='F46PG' where id=4; -update noar tt set b1='XNZJBLT95NPJCSM' where id=4; -update noar ti set b1='XNZJBLT95NPJCSM' where id=4; -update noar tt set v0='6309VV9O0QGWUH45L8JNSD0AXN0' where id=4; -update noar ti set v0='6309VV9O0QGWUH45L8JNSD0AXN0' where id=4; -update noar tt set b2='G3V0SZ0ZM3TKEJNQKV0NL' where id=4; -update noar ti set b2='G3V0SZ0ZM3TKEJNQKV0NL' where id=4; -update noar tt set v0='G3C8P8X' where id=5; -update noar ti set v0='G3C8P8X' where id=5; -update noar tt set b0='PERKCFJB83EQVS4MA58V3LUDW80ZJP' where id=5; -update noar ti set b0='PERKCFJB83EQVS4MA58V3LUDW80ZJP' where id=5; -update noar tt set v0='X5FS9R8D' where id=5; -update noar ti set v0='X5FS9R8D' where id=5; -update noar tt set b1='Q4B71CBDI9ULSZW' where id=5; -update noar ti set b1='Q4B71CBDI9ULSZW' where id=5; -update noar tt set v0='AI83WYK748CLVQJQK58ISPGE39ESRAQW' where id=5; -update noar ti set v0='AI83WYK748CLVQJQK58ISPGE39ESRAQW' where id=5; -update noar tt set b2='OZL17X4V0Z' where id=5; -update noar ti set b2='OZL17X4V0Z' where id=5; -update noar tt set v0='B5OIZN7DY8827F5JW53E94QV' where id=6; -update noar ti set v0='B5OIZN7DY8827F5JW53E94QV' where id=6; -update noar tt set b0='M1' where id=6; -update noar ti set b0='M1' where id=6; -update noar tt set v0='AAOXJC979PR4MGNF' where id=6; -update noar ti set v0='AAOXJC979PR4MGNF' where id=6; -update noar tt set b1='4L8G220187' where id=6; -update noar ti set b1='4L8G220187' where id=6; -update noar tt set v0='WXPFLYC9Z7GEBFJLHDIY9YU' where id=6; -update noar ti set v0='WXPFLYC9Z7GEBFJLHDIY9YU' where id=6; -update noar tt set b2='7C1DVTR0DVQ1M6SSQA8XMCQVZXSVB3' where id=6; -update noar ti set b2='7C1DVTR0DVQ1M6SSQA8XMCQVZXSVB3' where id=6; -update noar tt set v0='7WTIOJ80Q6S0E24GUPGJFQ5FMMT7TUQ4' where id=7; -update noar ti set v0='7WTIOJ80Q6S0E24GUPGJFQ5FMMT7TUQ4' where id=7; -update noar tt set b0='92Z5WVFEQUFP604FKQLLPPXTNH' where id=7; -update noar ti set b0='92Z5WVFEQUFP604FKQLLPPXTNH' where id=7; -update noar tt set v0='QC6EOS4G68ZAKJ0H' where id=7; -update noar ti set v0='QC6EOS4G68ZAKJ0H' where id=7; -update noar tt set b1='VR42Q3HFR3IWNIQUCT9ZC1T' where id=7; -update noar ti set b1='VR42Q3HFR3IWNIQUCT9ZC1T' where id=7; -update noar tt set v0='E0QKA7HKS2SS9IVQUH5FJGS8XZIIN3' where id=7; -update noar ti set v0='E0QKA7HKS2SS9IVQUH5FJGS8XZIIN3' where id=7; -update noar tt set b2='X8SUBOUD0KFSRS69JP6REWXGMQ' where id=7; -update noar ti set b2='X8SUBOUD0KFSRS69JP6REWXGMQ' where id=7; -update noar tt set v0='PLWDFTFCFN31K' where id=8; -update noar ti set v0='PLWDFTFCFN31K' where id=8; -update noar tt set b0='MS9T7T77CUC1LAFV7ELP5C7221K7NAK' where id=8; -update noar ti set b0='MS9T7T77CUC1LAFV7ELP5C7221K7NAK' where id=8; -update noar tt set v0='VLG4IFJ9UW1JOB2' where id=8; -update noar ti set v0='VLG4IFJ9UW1JOB2' where id=8; -update noar tt set b1='U0E9XMHIK02A7XYRH7R4O2N' where id=8; -update noar ti set b1='U0E9XMHIK02A7XYRH7R4O2N' where id=8; -update noar tt set v0='5KV0' where id=8; -update noar ti set v0='5KV0' where id=8; -update noar tt set b2='7BJLOT' where id=8; -update noar ti set b2='7BJLOT' where id=8; -update noar tt set v0='8G2NAHJ3QZZSKBRA' where id=9; -update noar ti set v0='8G2NAHJ3QZZSKBRA' where id=9; -update noar tt set b0='EF35Y' where id=9; -update noar ti set b0='EF35Y' where id=9; -update noar tt set v0='ACLX6WJEGEVCB9ZZ2YQJPVGDEZ' where id=9; -update noar ti set v0='ACLX6WJEGEVCB9ZZ2YQJPVGDEZ' where id=9; -update noar tt set b1='A2F6MX9TMWCHJB219C4KIGM6PQ' where id=9; -update noar ti set b1='A2F6MX9TMWCHJB219C4KIGM6PQ' where id=9; -update noar tt set v0='8SL62CO2IBOLYQYVL1LM8AEMFUN9' where id=9; -update noar ti set v0='8SL62CO2IBOLYQYVL1LM8AEMFUN9' where id=9; -update noar tt set b2='N1W3ZHRP478ERLRI3HXUD5TTX7' where id=9; -update noar ti set b2='N1W3ZHRP478ERLRI3HXUD5TTX7' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -v0 varchar(32) null, -b0 blob null, -b1 mediumblob null, -b2 blob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='888MNXBYIY385I8I3H1WRY9L7UMP' where id=1; -update noar ti set v0='888MNXBYIY385I8I3H1WRY9L7UMP' where id=1; -update noar tt set b0='29' where id=1; -update noar ti set b0='29' where id=1; -update noar tt set v0='QGXK1EM2MW' where id=1; -update noar ti set v0='QGXK1EM2MW' where id=1; -update noar tt set b1='5I1LIG' where id=1; -update noar ti set b1='5I1LIG' where id=1; -update noar tt set v0='2NJEG6KHZ30BTFUFCHDD7EYMLTO3YT' where id=1; -update noar ti set v0='2NJEG6KHZ30BTFUFCHDD7EYMLTO3YT' where id=1; -update noar tt set b2='X1' where id=1; -update noar ti set b2='X1' where id=1; -update noar tt set v0='ZOAFGR5' where id=2; -update noar ti set v0='ZOAFGR5' where id=2; -update noar tt set b0='KX1DDSM7P' where id=2; -update noar ti set b0='KX1DDSM7P' where id=2; -update noar tt set v0='N78MXSRPMGK8O7RS' where id=2; -update noar ti set v0='N78MXSRPMGK8O7RS' where id=2; -update noar tt set b1='DUQ5MHFTN82' where id=2; -update noar ti set b1='DUQ5MHFTN82' where id=2; -update noar tt set v0='MWIN5A4DB9JVNPS92QMRXWP0GCU49M' where id=2; -update noar ti set v0='MWIN5A4DB9JVNPS92QMRXWP0GCU49M' where id=2; -update noar tt set b2='HT4NHOFZN1C1EJ' where id=2; -update noar ti set b2='HT4NHOFZN1C1EJ' where id=2; -update noar tt set v0='RBLT0OH868AMI82AE6Q19Y' where id=3; -update noar ti set v0='RBLT0OH868AMI82AE6Q19Y' where id=3; -update noar tt set b0='IC' where id=3; -update noar ti set b0='IC' where id=3; -update noar tt set v0='ZI41G' where id=3; -update noar ti set v0='ZI41G' where id=3; -update noar tt set b1='AIA4SRGCGMH3PNZA' where id=3; -update noar ti set b1='AIA4SRGCGMH3PNZA' where id=3; -update noar tt set v0='ET8DSTKS7SHX22QSFLBOH6NA' where id=3; -update noar ti set v0='ET8DSTKS7SHX22QSFLBOH6NA' where id=3; -update noar tt set b2='B1FM8QT6U2E2QH6VG' where id=3; -update noar ti set b2='B1FM8QT6U2E2QH6VG' where id=3; -update noar tt set v0='ZKFFH' where id=4; -update noar ti set v0='ZKFFH' where id=4; -update noar tt set b0='JMYXBD' where id=4; -update noar ti set b0='JMYXBD' where id=4; -update noar tt set v0='3E06094U1' where id=4; -update noar ti set v0='3E06094U1' where id=4; -update noar tt set b1='CU9FVZ36JY1UPOV' where id=4; -update noar ti set b1='CU9FVZ36JY1UPOV' where id=4; -update noar tt set v0='1YHNG52GDYCJGL9' where id=4; -update noar ti set v0='1YHNG52GDYCJGL9' where id=4; -update noar tt set b2='GN0CFKGX0PBGP4' where id=4; -update noar ti set b2='GN0CFKGX0PBGP4' where id=4; -update noar tt set v0='6T0NHGG8O7NT3BHWB' where id=5; -update noar ti set v0='6T0NHGG8O7NT3BHWB' where id=5; -update noar tt set b0='CGV8C4OFPMBOIDIBYBBG2NJW68WTTP1' where id=5; -update noar ti set b0='CGV8C4OFPMBOIDIBYBBG2NJW68WTTP1' where id=5; -update noar tt set v0='UHRVOWIA0RH2GXOGVHZIX' where id=5; -update noar ti set v0='UHRVOWIA0RH2GXOGVHZIX' where id=5; -update noar tt set b1='4O' where id=5; -update noar ti set b1='4O' where id=5; -update noar tt set v0='F8AST' where id=5; -update noar ti set v0='F8AST' where id=5; -update noar tt set b2='JO3SRJAJ94P95BESG' where id=5; -update noar ti set b2='JO3SRJAJ94P95BESG' where id=5; -update noar tt set v0='BA1PB5JL8U3S8' where id=6; -update noar ti set v0='BA1PB5JL8U3S8' where id=6; -update noar tt set b0='ROAP3E6ULD' where id=6; -update noar ti set b0='ROAP3E6ULD' where id=6; -update noar tt set v0='HZU' where id=6; -update noar ti set v0='HZU' where id=6; -update noar tt set b1='QW3REK12XXS8ZGSJKT4OYXNGR8LQG' where id=6; -update noar ti set b1='QW3REK12XXS8ZGSJKT4OYXNGR8LQG' where id=6; -update noar tt set v0='BJ2R8' where id=6; -update noar ti set v0='BJ2R8' where id=6; -update noar tt set b2='LHNI69FR' where id=6; -update noar ti set b2='LHNI69FR' where id=6; -update noar tt set v0='H' where id=7; -update noar ti set v0='H' where id=7; -update noar tt set b0='EW5WT5AO7L5U3' where id=7; -update noar ti set b0='EW5WT5AO7L5U3' where id=7; -update noar tt set v0='JHBYWFDND0VVNVINS15I' where id=7; -update noar ti set v0='JHBYWFDND0VVNVINS15I' where id=7; -update noar tt set b1='0MNTNBIRLJGK0IV4Q47GU' where id=7; -update noar ti set b1='0MNTNBIRLJGK0IV4Q47GU' where id=7; -update noar tt set v0='4J55NBIK65URUHVPZ0J3BKAK3R6TF52' where id=7; -update noar ti set v0='4J55NBIK65URUHVPZ0J3BKAK3R6TF52' where id=7; -update noar tt set b2='Z' where id=7; -update noar ti set b2='Z' where id=7; -update noar tt set v0='WD2WPT109JTIRDSZSVPNOEO7S' where id=8; -update noar ti set v0='WD2WPT109JTIRDSZSVPNOEO7S' where id=8; -update noar tt set b0='HMSG6R5C6VUJXWI8JYZAIM4CM0' where id=8; -update noar ti set b0='HMSG6R5C6VUJXWI8JYZAIM4CM0' where id=8; -update noar tt set v0='B41ED0UJ2HKS5EX07IMF' where id=8; -update noar ti set v0='B41ED0UJ2HKS5EX07IMF' where id=8; -update noar tt set b1='GJEA2TGEZDIRI3D' where id=8; -update noar ti set b1='GJEA2TGEZDIRI3D' where id=8; -update noar tt set v0='1E17XO1ZM2825X5A' where id=8; -update noar ti set v0='1E17XO1ZM2825X5A' where id=8; -update noar tt set b2='CTK2VQRLGYP6C3RXSPZWUI1FPIE30R2A' where id=8; -update noar ti set b2='CTK2VQRLGYP6C3RXSPZWUI1FPIE30R2A' where id=8; -update noar tt set v0='V1CXC8BHU8TMDVG63DXTSXCEQ' where id=9; -update noar ti set v0='V1CXC8BHU8TMDVG63DXTSXCEQ' where id=9; -update noar tt set b0='VQ8NJMERAUN507Q7KZ8G3OVU8F5' where id=9; -update noar ti set b0='VQ8NJMERAUN507Q7KZ8G3OVU8F5' where id=9; -update noar tt set v0='NF3Q5OYSSNIW9GVVMR0VI' where id=9; -update noar ti set v0='NF3Q5OYSSNIW9GVVMR0VI' where id=9; -update noar tt set b1='JRAJ' where id=9; -update noar ti set b1='JRAJ' where id=9; -update noar tt set v0='FAWJ7W7QOAG95EMF' where id=9; -update noar ti set v0='FAWJ7W7QOAG95EMF' where id=9; -update noar tt set b2='OG6MYKZ9ITKZL4PFMN9' where id=9; -update noar ti set b2='OG6MYKZ9ITKZL4PFMN9' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -v0 varchar(256) null, -b0 blob null, -b1 mediumblob null, -b2 blob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='0GSWUJSJV9R4QUUANH1ENF0QWEVQD' where id=1; -update noar ti set v0='0GSWUJSJV9R4QUUANH1ENF0QWEVQD' where id=1; -update noar tt set b0='1PK59L2YBM1' where id=1; -update noar ti set b0='1PK59L2YBM1' where id=1; -update noar tt set v0='UVT81TMYQ7' where id=1; -update noar ti set v0='UVT81TMYQ7' where id=1; -update noar tt set b1='A5K75JUUIUPR58' where id=1; -update noar ti set b1='A5K75JUUIUPR58' where id=1; -update noar tt set v0='XB32XI7GSQR' where id=1; -update noar ti set v0='XB32XI7GSQR' where id=1; -update noar tt set b2='13ZT7AW0IZSQNSL' where id=1; -update noar ti set b2='13ZT7AW0IZSQNSL' where id=1; -update noar tt set v0='25YG' where id=2; -update noar ti set v0='25YG' where id=2; -update noar tt set b0='C2GSBBLKK' where id=2; -update noar ti set b0='C2GSBBLKK' where id=2; -update noar tt set v0='BI4RNAOHYLN66FX6N' where id=2; -update noar ti set v0='BI4RNAOHYLN66FX6N' where id=2; -update noar tt set b1='1J3B' where id=2; -update noar ti set b1='1J3B' where id=2; -update noar tt set v0='KJ1ED6C27BI68' where id=2; -update noar ti set v0='KJ1ED6C27BI68' where id=2; -update noar tt set b2='PEKOMQXZ190MRABZJ2Z3LDEHLRIZ8W' where id=2; -update noar ti set b2='PEKOMQXZ190MRABZJ2Z3LDEHLRIZ8W' where id=2; -update noar tt set v0='K' where id=3; -update noar ti set v0='K' where id=3; -update noar tt set b0='FLGV5IFDBSOMAF3G' where id=3; -update noar ti set b0='FLGV5IFDBSOMAF3G' where id=3; -update noar tt set v0='RG18L68M2CLLBZ' where id=3; -update noar ti set v0='RG18L68M2CLLBZ' where id=3; -update noar tt set b1='EGUO8WV7J2JZLINWG53WXIHSQ' where id=3; -update noar ti set b1='EGUO8WV7J2JZLINWG53WXIHSQ' where id=3; -update noar tt set v0='BY90ICPPG8IX' where id=3; -update noar ti set v0='BY90ICPPG8IX' where id=3; -update noar tt set b2='2ZLXDOF' where id=3; -update noar ti set b2='2ZLXDOF' where id=3; -update noar tt set v0='NMQTFR2' where id=4; -update noar ti set v0='NMQTFR2' where id=4; -update noar tt set b0='5M1KUJILOHQVSQTXN' where id=4; -update noar ti set b0='5M1KUJILOHQVSQTXN' where id=4; -update noar tt set v0='ENHI3BUPFC1I241GOWHDI' where id=4; -update noar ti set v0='ENHI3BUPFC1I241GOWHDI' where id=4; -update noar tt set b1='3QNXCDLT' where id=4; -update noar ti set b1='3QNXCDLT' where id=4; -update noar tt set v0='DH5HTJH9ECJYMI' where id=4; -update noar ti set v0='DH5HTJH9ECJYMI' where id=4; -update noar tt set b2='77R64E3OSALE5T8XHL' where id=4; -update noar ti set b2='77R64E3OSALE5T8XHL' where id=4; -update noar tt set v0='YGDRNKO0KA184BEFM1SF277Z7ZAFWJ2' where id=5; -update noar ti set v0='YGDRNKO0KA184BEFM1SF277Z7ZAFWJ2' where id=5; -update noar tt set b0='427HGY' where id=5; -update noar ti set b0='427HGY' where id=5; -update noar tt set v0='IUX0P' where id=5; -update noar ti set v0='IUX0P' where id=5; -update noar tt set b1='ACM4SDATWHSPZM' where id=5; -update noar ti set b1='ACM4SDATWHSPZM' where id=5; -update noar tt set v0='LJ9G6UNAO9LHBAZCKAHZP1Z2E2' where id=5; -update noar ti set v0='LJ9G6UNAO9LHBAZCKAHZP1Z2E2' where id=5; -update noar tt set b2='P3NJ61QZ4FM431ZTMQ7Q0' where id=5; -update noar ti set b2='P3NJ61QZ4FM431ZTMQ7Q0' where id=5; -update noar tt set v0='LR' where id=6; -update noar ti set v0='LR' where id=6; -update noar tt set b0='CLD33KYSDI1IPRINB9XD5YC' where id=6; -update noar ti set b0='CLD33KYSDI1IPRINB9XD5YC' where id=6; -update noar tt set v0='OYD90VT6' where id=6; -update noar ti set v0='OYD90VT6' where id=6; -update noar tt set b1='V9893TNTKBPRFYMP5X' where id=6; -update noar ti set b1='V9893TNTKBPRFYMP5X' where id=6; -update noar tt set v0='949ZXB8LED0ZMCG9292M7HYHQ' where id=6; -update noar ti set v0='949ZXB8LED0ZMCG9292M7HYHQ' where id=6; -update noar tt set b2='4F8BPJZ34TMW4V19GE' where id=6; -update noar ti set b2='4F8BPJZ34TMW4V19GE' where id=6; -update noar tt set v0='VGFV3JF8JWTLH52QU6' where id=7; -update noar ti set v0='VGFV3JF8JWTLH52QU6' where id=7; -update noar tt set b0='ZV' where id=7; -update noar ti set b0='ZV' where id=7; -update noar tt set v0='7AP06IB7AZSN86RQX4K70EU1FV' where id=7; -update noar ti set v0='7AP06IB7AZSN86RQX4K70EU1FV' where id=7; -update noar tt set b1='3LYEEEBBNBTE754AYGWR' where id=7; -update noar ti set b1='3LYEEEBBNBTE754AYGWR' where id=7; -update noar tt set v0='6PQ4V7GQZPMEXJ9DG4LXPZHETQ2B' where id=7; -update noar ti set v0='6PQ4V7GQZPMEXJ9DG4LXPZHETQ2B' where id=7; -update noar tt set b2='9LSGRUNDDD1' where id=7; -update noar ti set b2='9LSGRUNDDD1' where id=7; -update noar tt set v0='73HOIR3XX6QUQZ6Y8C8LZ232B5MZ0OP' where id=8; -update noar ti set v0='73HOIR3XX6QUQZ6Y8C8LZ232B5MZ0OP' where id=8; -update noar tt set b0='40ZK7OLV972SCCJAUXY' where id=8; -update noar ti set b0='40ZK7OLV972SCCJAUXY' where id=8; -update noar tt set v0='2JOEMDBX0VZFFWZMQVC7' where id=8; -update noar ti set v0='2JOEMDBX0VZFFWZMQVC7' where id=8; -update noar tt set b1='KM5ORFB55VH0TYAVHYMDF80UXSS2242' where id=8; -update noar ti set b1='KM5ORFB55VH0TYAVHYMDF80UXSS2242' where id=8; -update noar tt set v0='VYQJCGG55U0E' where id=8; -update noar ti set v0='VYQJCGG55U0E' where id=8; -update noar tt set b2='MYC' where id=8; -update noar ti set b2='MYC' where id=8; -update noar tt set v0='SLTN2YHMYHPHR0U0Z8KXEC7LJWZIS' where id=9; -update noar ti set v0='SLTN2YHMYHPHR0U0Z8KXEC7LJWZIS' where id=9; -update noar tt set b0='Z7OFRREHFROZ9H3HS' where id=9; -update noar ti set b0='Z7OFRREHFROZ9H3HS' where id=9; -update noar tt set v0='TF3KO' where id=9; -update noar ti set v0='TF3KO' where id=9; -update noar tt set b1='YJ2SR8DHMYQ6AHW' where id=9; -update noar ti set b1='YJ2SR8DHMYQ6AHW' where id=9; -update noar tt set v0='P68PQ3MXMQ3QE3GE02OXE8CJ9' where id=9; -update noar ti set v0='P68PQ3MXMQ3QE3GE02OXE8CJ9' where id=9; -update noar tt set b2='3U' where id=9; -update noar ti set b2='3U' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -v0 varchar(32) not null, -b0 blob not null, -b1 mediumblob not null, -b2 blob not null -) engine=tokudb; -insert into tt values (1,'','','',''); -insert into tt values (2,'','','',''); -insert into tt values (3,'','','',''); -insert into tt values (4,'','','',''); -insert into tt values (5,'','','',''); -insert into tt values (6,'','','',''); -insert into tt values (7,'','','',''); -insert into tt values (8,'','','',''); -insert into tt values (9,'','','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='ATQH74JNA3KVF5PR6E' where id=1; -update noar ti set v0='ATQH74JNA3KVF5PR6E' where id=1; -update noar tt set b0='LVB9CT4TVSC9R1ITCB31H2U3O1U1' where id=1; -update noar ti set b0='LVB9CT4TVSC9R1ITCB31H2U3O1U1' where id=1; -update noar tt set v0='UCG371VBODM48GIFB6ZF1MGBZQ' where id=1; -update noar ti set v0='UCG371VBODM48GIFB6ZF1MGBZQ' where id=1; -update noar tt set b1='5HJ5DXTC529' where id=1; -update noar ti set b1='5HJ5DXTC529' where id=1; -update noar tt set v0='PYU3DS7H4' where id=1; -update noar ti set v0='PYU3DS7H4' where id=1; -update noar tt set b2='3H1L7YUI8AP1' where id=1; -update noar ti set b2='3H1L7YUI8AP1' where id=1; -update noar tt set v0='XBG57EQXIPFY3QOJKPRU' where id=2; -update noar ti set v0='XBG57EQXIPFY3QOJKPRU' where id=2; -update noar tt set b0='345UV875NMBVV7QS30C7VWP1' where id=2; -update noar ti set b0='345UV875NMBVV7QS30C7VWP1' where id=2; -update noar tt set v0='C3Q2V4NAWY65CKSU55GOUZSJSWISZ3D' where id=2; -update noar ti set v0='C3Q2V4NAWY65CKSU55GOUZSJSWISZ3D' where id=2; -update noar tt set b1='7Y5KY18WQQ45HXCTV8' where id=2; -update noar ti set b1='7Y5KY18WQQ45HXCTV8' where id=2; -update noar tt set v0='ZEQKLT2OJG14E1U4F9OI' where id=2; -update noar ti set v0='ZEQKLT2OJG14E1U4F9OI' where id=2; -update noar tt set b2='F56H6FMCHIQV5K65BIJZZG8JOKWH' where id=2; -update noar ti set b2='F56H6FMCHIQV5K65BIJZZG8JOKWH' where id=2; -update noar tt set v0='VVUJ' where id=3; -update noar ti set v0='VVUJ' where id=3; -update noar tt set b0='ONRM1' where id=3; -update noar ti set b0='ONRM1' where id=3; -update noar tt set v0='YYJD889CP6PEN' where id=3; -update noar ti set v0='YYJD889CP6PEN' where id=3; -update noar tt set b1='UB6DFKMWWPN4PV36BVLEV34NPU' where id=3; -update noar ti set b1='UB6DFKMWWPN4PV36BVLEV34NPU' where id=3; -update noar tt set v0='XXQENMA8N2QQPT' where id=3; -update noar ti set v0='XXQENMA8N2QQPT' where id=3; -update noar tt set b2='P9WDCHELW0W4U79LJ67' where id=3; -update noar ti set b2='P9WDCHELW0W4U79LJ67' where id=3; -update noar tt set v0='4VV38ASWIT8NR6NFDEG8BIEL' where id=4; -update noar ti set v0='4VV38ASWIT8NR6NFDEG8BIEL' where id=4; -update noar tt set b0='ITNNYGWA3PCF7QN4N2UOFAIFZ0J' where id=4; -update noar ti set b0='ITNNYGWA3PCF7QN4N2UOFAIFZ0J' where id=4; -update noar tt set v0='T9C2TBZG9JWWSE5NCX38PB7Z05N' where id=4; -update noar ti set v0='T9C2TBZG9JWWSE5NCX38PB7Z05N' where id=4; -update noar tt set b1='V2VJY0R' where id=4; -update noar ti set b1='V2VJY0R' where id=4; -update noar tt set v0='KONK06MZFLSFQSYRHE3PQMT7ZK0' where id=4; -update noar ti set v0='KONK06MZFLSFQSYRHE3PQMT7ZK0' where id=4; -update noar tt set b2='S0' where id=4; -update noar ti set b2='S0' where id=4; -update noar tt set v0='YQ1V51GCNVN1ENKZFR5BZJTJ' where id=5; -update noar ti set v0='YQ1V51GCNVN1ENKZFR5BZJTJ' where id=5; -update noar tt set b0='8YJF1VW6CMG9X5II5ZXE' where id=5; -update noar ti set b0='8YJF1VW6CMG9X5II5ZXE' where id=5; -update noar tt set v0='DU44GXFC4ISNQ8ZD1VLBL' where id=5; -update noar ti set v0='DU44GXFC4ISNQ8ZD1VLBL' where id=5; -update noar tt set b1='HYULM9NK6ENB0F9F0YU0WBK' where id=5; -update noar ti set b1='HYULM9NK6ENB0F9F0YU0WBK' where id=5; -update noar tt set v0='AE71G810G3MJX129B0OFPW' where id=5; -update noar ti set v0='AE71G810G3MJX129B0OFPW' where id=5; -update noar tt set b2='ROSD4H4JYC44W9HNQ48KH5Z' where id=5; -update noar ti set b2='ROSD4H4JYC44W9HNQ48KH5Z' where id=5; -update noar tt set v0='TE3R94O' where id=6; -update noar ti set v0='TE3R94O' where id=6; -update noar tt set b0='898JBDNKZVMZK44BG71NT3NW81T51J0' where id=6; -update noar ti set b0='898JBDNKZVMZK44BG71NT3NW81T51J0' where id=6; -update noar tt set v0='3T6NEFSM0WBNBRFT0UQQM1' where id=6; -update noar ti set v0='3T6NEFSM0WBNBRFT0UQQM1' where id=6; -update noar tt set b1='NTJUIIUWVJ79XYOKMAGL8YJS' where id=6; -update noar ti set b1='NTJUIIUWVJ79XYOKMAGL8YJS' where id=6; -update noar tt set v0='1K' where id=6; -update noar ti set v0='1K' where id=6; -update noar tt set b2='1MT83JS2QCJBVQOROMRKHXJR' where id=6; -update noar ti set b2='1MT83JS2QCJBVQOROMRKHXJR' where id=6; -update noar tt set v0='0NI0MU70SMQ' where id=7; -update noar ti set v0='0NI0MU70SMQ' where id=7; -update noar tt set b0='WP8XV7B6XWDRCZ7O1B5I' where id=7; -update noar ti set b0='WP8XV7B6XWDRCZ7O1B5I' where id=7; -update noar tt set v0='XX62GT0ENXKVM2P93PCZEN42GJC7HYW' where id=7; -update noar ti set v0='XX62GT0ENXKVM2P93PCZEN42GJC7HYW' where id=7; -update noar tt set b1='IIE4JLEFCBN2HPX0' where id=7; -update noar ti set b1='IIE4JLEFCBN2HPX0' where id=7; -update noar tt set v0='0OWWRVVQAXFOXOV1J' where id=7; -update noar ti set v0='0OWWRVVQAXFOXOV1J' where id=7; -update noar tt set b2='52LRBFM3O7M' where id=7; -update noar ti set b2='52LRBFM3O7M' where id=7; -update noar tt set v0='SI5K90GJOAR8T4Q8IG12GQ96' where id=8; -update noar ti set v0='SI5K90GJOAR8T4Q8IG12GQ96' where id=8; -update noar tt set b0='HKASYPBP7R6TPO31C7JUT6QD9ZQWIQE' where id=8; -update noar ti set b0='HKASYPBP7R6TPO31C7JUT6QD9ZQWIQE' where id=8; -update noar tt set v0='IS56SUHZ7GACCZBN8IKD1JUEFT32I6C' where id=8; -update noar ti set v0='IS56SUHZ7GACCZBN8IKD1JUEFT32I6C' where id=8; -update noar tt set b1='1SZITB53OOW17NYVOR2Z130Q8QF' where id=8; -update noar ti set b1='1SZITB53OOW17NYVOR2Z130Q8QF' where id=8; -update noar tt set v0='9T6UD3SS4V4RHJK24USUBFBQD' where id=8; -update noar ti set v0='9T6UD3SS4V4RHJK24USUBFBQD' where id=8; -update noar tt set b2='E9X' where id=8; -update noar ti set b2='E9X' where id=8; -update noar tt set v0='TH' where id=9; -update noar ti set v0='TH' where id=9; -update noar tt set b0='BXLIPQ0IZL44F9' where id=9; -update noar ti set b0='BXLIPQ0IZL44F9' where id=9; -update noar tt set v0='WNTE0CAO4MZM5MIBUPFAHG873SO' where id=9; -update noar ti set v0='WNTE0CAO4MZM5MIBUPFAHG873SO' where id=9; -update noar tt set b1='EKDQMBFWHCORYY1SVP3ZLUOPXCFB' where id=9; -update noar ti set b1='EKDQMBFWHCORYY1SVP3ZLUOPXCFB' where id=9; -update noar tt set v0='2Y5YTEZWJ9CZEV1SWGBAL4UYS6JNMCNG' where id=9; -update noar ti set v0='2Y5YTEZWJ9CZEV1SWGBAL4UYS6JNMCNG' where id=9; -update noar tt set b2='G0IGPL' where id=9; -update noar ti set b2='G0IGPL' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -v0 varchar(256) not null, -b0 blob not null, -b1 mediumblob not null, -b2 blob not null -) engine=tokudb; -insert into tt values (1,'','','',''); -insert into tt values (2,'','','',''); -insert into tt values (3,'','','',''); -insert into tt values (4,'','','',''); -insert into tt values (5,'','','',''); -insert into tt values (6,'','','',''); -insert into tt values (7,'','','',''); -insert into tt values (8,'','','',''); -insert into tt values (9,'','','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='K4K0VB2PMY483' where id=1; -update noar ti set v0='K4K0VB2PMY483' where id=1; -update noar tt set b0='8EN61LAMNYMYVAAY8GNRETLSZU4BAX' where id=1; -update noar ti set b0='8EN61LAMNYMYVAAY8GNRETLSZU4BAX' where id=1; -update noar tt set v0='ZGZ5MYOFOLX52S4E5' where id=1; -update noar ti set v0='ZGZ5MYOFOLX52S4E5' where id=1; -update noar tt set b1='YPDWYN05B0XOOIP5OVR4V1Z' where id=1; -update noar ti set b1='YPDWYN05B0XOOIP5OVR4V1Z' where id=1; -update noar tt set v0='0AC42CBEPTI5QMFQZ2G8255FB1A' where id=1; -update noar ti set v0='0AC42CBEPTI5QMFQZ2G8255FB1A' where id=1; -update noar tt set b2='C688ZHZSFN904Z0DHING4U3' where id=1; -update noar ti set b2='C688ZHZSFN904Z0DHING4U3' where id=1; -update noar tt set v0='YWY' where id=2; -update noar ti set v0='YWY' where id=2; -update noar tt set b0='C0NGA8SUSURIBGN80CKAU4' where id=2; -update noar ti set b0='C0NGA8SUSURIBGN80CKAU4' where id=2; -update noar tt set v0='ZGZ0HDOW5E2IIEB1HO38MX8KQM8C' where id=2; -update noar ti set v0='ZGZ0HDOW5E2IIEB1HO38MX8KQM8C' where id=2; -update noar tt set b1='FTOA6RY4GURZBRC0KLG411E8QH2' where id=2; -update noar ti set b1='FTOA6RY4GURZBRC0KLG411E8QH2' where id=2; -update noar tt set v0='GASWIJCZ2A2B8Y8I1A' where id=2; -update noar ti set v0='GASWIJCZ2A2B8Y8I1A' where id=2; -update noar tt set b2='D' where id=2; -update noar ti set b2='D' where id=2; -update noar tt set v0='OP6RSKX795B3O368UOZ0EUL' where id=3; -update noar ti set v0='OP6RSKX795B3O368UOZ0EUL' where id=3; -update noar tt set b0='ORE5EFAVV2Q5V3' where id=3; -update noar ti set b0='ORE5EFAVV2Q5V3' where id=3; -update noar tt set v0='8VXVFTCA8P' where id=3; -update noar ti set v0='8VXVFTCA8P' where id=3; -update noar tt set b1='6FKJ' where id=3; -update noar ti set b1='6FKJ' where id=3; -update noar tt set v0='T1AP91UZZWN' where id=3; -update noar ti set v0='T1AP91UZZWN' where id=3; -update noar tt set b2='ASF71I3R9VGYIKLODO' where id=3; -update noar ti set b2='ASF71I3R9VGYIKLODO' where id=3; -update noar tt set v0='Q' where id=4; -update noar ti set v0='Q' where id=4; -update noar tt set b0='HQ1' where id=4; -update noar ti set b0='HQ1' where id=4; -update noar tt set v0='KO4TCQDILA3UUMT3NV6R77' where id=4; -update noar ti set v0='KO4TCQDILA3UUMT3NV6R77' where id=4; -update noar tt set b1='02HHJIA4HZLQEG7APPUXOX245CPS' where id=4; -update noar ti set b1='02HHJIA4HZLQEG7APPUXOX245CPS' where id=4; -update noar tt set v0='LI0934Y17KESMS71K4PSQBGQNQ8RH40S' where id=4; -update noar ti set v0='LI0934Y17KESMS71K4PSQBGQNQ8RH40S' where id=4; -update noar tt set b2='74' where id=4; -update noar ti set b2='74' where id=4; -update noar tt set v0='81FVNDAQHCUUNQ2HG15S17KJBI' where id=5; -update noar ti set v0='81FVNDAQHCUUNQ2HG15S17KJBI' where id=5; -update noar tt set b0='O1BTP' where id=5; -update noar ti set b0='O1BTP' where id=5; -update noar tt set v0='WBMC34EENE9TP83' where id=5; -update noar ti set v0='WBMC34EENE9TP83' where id=5; -update noar tt set b1='EFYMTD' where id=5; -update noar ti set b1='EFYMTD' where id=5; -update noar tt set v0='0NZ9B' where id=5; -update noar ti set v0='0NZ9B' where id=5; -update noar tt set b2='XJL5GIVALX6KDRW' where id=5; -update noar ti set b2='XJL5GIVALX6KDRW' where id=5; -update noar tt set v0='4GX5VQ9' where id=6; -update noar ti set v0='4GX5VQ9' where id=6; -update noar tt set b0='ECY71J1J3HVMYG8WLAE070YBXKUM6FIS' where id=6; -update noar ti set b0='ECY71J1J3HVMYG8WLAE070YBXKUM6FIS' where id=6; -update noar tt set v0='L9TGTGV8J20K5EPRU6KVV0R' where id=6; -update noar ti set v0='L9TGTGV8J20K5EPRU6KVV0R' where id=6; -update noar tt set b1='5QUD9BM0XMM7DAPOOZAPU1JF' where id=6; -update noar ti set b1='5QUD9BM0XMM7DAPOOZAPU1JF' where id=6; -update noar tt set v0='8KZZEVEWBSDTDA56C15CWNVOTMKQDV2' where id=6; -update noar ti set v0='8KZZEVEWBSDTDA56C15CWNVOTMKQDV2' where id=6; -update noar tt set b2='4CC5S9IYCXFF3ASFEQWF89O4' where id=6; -update noar ti set b2='4CC5S9IYCXFF3ASFEQWF89O4' where id=6; -update noar tt set v0='31FF7MR0PLYB6PYY67PMYPYQM2' where id=7; -update noar ti set v0='31FF7MR0PLYB6PYY67PMYPYQM2' where id=7; -update noar tt set b0='94WMM1DO6N3CX6GIPN' where id=7; -update noar ti set b0='94WMM1DO6N3CX6GIPN' where id=7; -update noar tt set v0='005XU1TZDLCDQ5829A8Z0' where id=7; -update noar ti set v0='005XU1TZDLCDQ5829A8Z0' where id=7; -update noar tt set b1='NKLQQJAJ8XZTBK7RLCROM4U' where id=7; -update noar ti set b1='NKLQQJAJ8XZTBK7RLCROM4U' where id=7; -update noar tt set v0='X2CPFMGQUCXVLU' where id=7; -update noar ti set v0='X2CPFMGQUCXVLU' where id=7; -update noar tt set b2='DZCI0U39V6ULZIIAL3BXYWEU4' where id=7; -update noar ti set b2='DZCI0U39V6ULZIIAL3BXYWEU4' where id=7; -update noar tt set v0='5C0G66M6AA66A55Y5ONHKCPF' where id=8; -update noar ti set v0='5C0G66M6AA66A55Y5ONHKCPF' where id=8; -update noar tt set b0='AF3I7FBLFV4K48AAOW45CY89SLO16JB' where id=8; -update noar ti set b0='AF3I7FBLFV4K48AAOW45CY89SLO16JB' where id=8; -update noar tt set v0='VLQR' where id=8; -update noar ti set v0='VLQR' where id=8; -update noar tt set b1='DWCJBMJMV' where id=8; -update noar ti set b1='DWCJBMJMV' where id=8; -update noar tt set v0='3XCAM3ZY55OU0' where id=8; -update noar ti set v0='3XCAM3ZY55OU0' where id=8; -update noar tt set b2='39J9JMRB6XVDQRUVM7HBOMZ1K0W' where id=8; -update noar ti set b2='39J9JMRB6XVDQRUVM7HBOMZ1K0W' where id=8; -update noar tt set v0='8' where id=9; -update noar ti set v0='8' where id=9; -update noar tt set b0='YT0SSUTLYOX4OIYY49EWYSR60G' where id=9; -update noar ti set b0='YT0SSUTLYOX4OIYY49EWYSR60G' where id=9; -update noar tt set v0='2ANB7SH1PNC' where id=9; -update noar ti set v0='2ANB7SH1PNC' where id=9; -update noar tt set b1='G4T' where id=9; -update noar ti set b1='G4T' where id=9; -update noar tt set v0='XJAPFXTIVLPL5A39EBR9F' where id=9; -update noar ti set v0='XJAPFXTIVLPL5A39EBR9F' where id=9; -update noar tt set b2='4D' where id=9; -update noar ti set b2='4D' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -v0 varchar(32) null, -b0 blob null, -b1 mediumblob null, -b2 mediumblob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='V4U42S' where id=1; -update noar ti set v0='V4U42S' where id=1; -update noar tt set b0='H4J' where id=1; -update noar ti set b0='H4J' where id=1; -update noar tt set v0='0Q6RJI9JQJ1AB1' where id=1; -update noar ti set v0='0Q6RJI9JQJ1AB1' where id=1; -update noar tt set b1='E4GT3366FYYATPPM3KT0YS14R' where id=1; -update noar ti set b1='E4GT3366FYYATPPM3KT0YS14R' where id=1; -update noar tt set v0='6XCTAXZZZB6MI330BJOJTSKIW8LTLNNN' where id=1; -update noar ti set v0='6XCTAXZZZB6MI330BJOJTSKIW8LTLNNN' where id=1; -update noar tt set b2='5HJN6MZFI3N5UEIE8AHOUG54C80D' where id=1; -update noar ti set b2='5HJN6MZFI3N5UEIE8AHOUG54C80D' where id=1; -update noar tt set v0='0H7MTVT7T7UO5AU64KIXF' where id=2; -update noar ti set v0='0H7MTVT7T7UO5AU64KIXF' where id=2; -update noar tt set b0='KCS6JOGT8PDKOJ16O5UFYXFBHU1D' where id=2; -update noar ti set b0='KCS6JOGT8PDKOJ16O5UFYXFBHU1D' where id=2; -update noar tt set v0='F1YXJBHYUUEZSPKXEFZ8L1' where id=2; -update noar ti set v0='F1YXJBHYUUEZSPKXEFZ8L1' where id=2; -update noar tt set b1='072E3QCHF2HBR2N2D29RKT' where id=2; -update noar ti set b1='072E3QCHF2HBR2N2D29RKT' where id=2; -update noar tt set v0='3MPNJ552DSHLPO296DLS0GI' where id=2; -update noar ti set v0='3MPNJ552DSHLPO296DLS0GI' where id=2; -update noar tt set b2='KMFTY3B0RVL06C9VBXO' where id=2; -update noar ti set b2='KMFTY3B0RVL06C9VBXO' where id=2; -update noar tt set v0='I60E4' where id=3; -update noar ti set v0='I60E4' where id=3; -update noar tt set b0='Q4U8B8Y5QMOIR61C7Q2CRS8DGCIBO0A2' where id=3; -update noar ti set b0='Q4U8B8Y5QMOIR61C7Q2CRS8DGCIBO0A2' where id=3; -update noar tt set v0='GS93J6YLBRSR9MCPN33BC' where id=3; -update noar ti set v0='GS93J6YLBRSR9MCPN33BC' where id=3; -update noar tt set b1='EQ2YDY4XWPBA6JUXY04C4N8GCB' where id=3; -update noar ti set b1='EQ2YDY4XWPBA6JUXY04C4N8GCB' where id=3; -update noar tt set v0='5K8XG' where id=3; -update noar ti set v0='5K8XG' where id=3; -update noar tt set b2='5N24QX5QD3' where id=3; -update noar ti set b2='5N24QX5QD3' where id=3; -update noar tt set v0='7YEVQH5M79Q06P' where id=4; -update noar ti set v0='7YEVQH5M79Q06P' where id=4; -update noar tt set b0='OKR252ZEIIK4W031X' where id=4; -update noar ti set b0='OKR252ZEIIK4W031X' where id=4; -update noar tt set v0='RCTUNEGEM9HHSW' where id=4; -update noar ti set v0='RCTUNEGEM9HHSW' where id=4; -update noar tt set b1='32PCUK2826GG' where id=4; -update noar ti set b1='32PCUK2826GG' where id=4; -update noar tt set v0='9ME65ODSRFPDE73Z3' where id=4; -update noar ti set v0='9ME65ODSRFPDE73Z3' where id=4; -update noar tt set b2='VW63MKBAY4I3K9X' where id=4; -update noar ti set b2='VW63MKBAY4I3K9X' where id=4; -update noar tt set v0='UDA' where id=5; -update noar ti set v0='UDA' where id=5; -update noar tt set b0='EJ6D5VW3ZO20F6HUWK4DD84NC6Y' where id=5; -update noar ti set b0='EJ6D5VW3ZO20F6HUWK4DD84NC6Y' where id=5; -update noar tt set v0='F8D1OBTM65ZTRSN1QWEMGHH' where id=5; -update noar ti set v0='F8D1OBTM65ZTRSN1QWEMGHH' where id=5; -update noar tt set b1='YJSXEU25P95G' where id=5; -update noar ti set b1='YJSXEU25P95G' where id=5; -update noar tt set v0='YZ9SJI5FFLW1' where id=5; -update noar ti set v0='YZ9SJI5FFLW1' where id=5; -update noar tt set b2='6VCXQT97L0AYRIYLSUDEEPB' where id=5; -update noar ti set b2='6VCXQT97L0AYRIYLSUDEEPB' where id=5; -update noar tt set v0='B3KZ0EZTUGFZUD9TZ8NDCTCXJOUQA7VW' where id=6; -update noar ti set v0='B3KZ0EZTUGFZUD9TZ8NDCTCXJOUQA7VW' where id=6; -update noar tt set b0='YZH1V4U6SK52EBIGL6' where id=6; -update noar ti set b0='YZH1V4U6SK52EBIGL6' where id=6; -update noar tt set v0='YULBVM1' where id=6; -update noar ti set v0='YULBVM1' where id=6; -update noar tt set b1='GIQX8GUBCMBX7DE6PL0' where id=6; -update noar ti set b1='GIQX8GUBCMBX7DE6PL0' where id=6; -update noar tt set v0='VBQZ07ZY4YFT7' where id=6; -update noar ti set v0='VBQZ07ZY4YFT7' where id=6; -update noar tt set b2='AYS0I804EKVOUCAJET01GEYFBN3YH1HJ' where id=6; -update noar ti set b2='AYS0I804EKVOUCAJET01GEYFBN3YH1HJ' where id=6; -update noar tt set v0='YP91PTVZ8IQ5YWS7CNFKNO' where id=7; -update noar ti set v0='YP91PTVZ8IQ5YWS7CNFKNO' where id=7; -update noar tt set b0='GLOILK015BVL72VZUGFOOA' where id=7; -update noar ti set b0='GLOILK015BVL72VZUGFOOA' where id=7; -update noar tt set v0='RASARM4A9BKFQFGBGCMPJTG' where id=7; -update noar ti set v0='RASARM4A9BKFQFGBGCMPJTG' where id=7; -update noar tt set b1='K' where id=7; -update noar ti set b1='K' where id=7; -update noar tt set v0='H9RPID4JZBX655PFIFJMNJNJI' where id=7; -update noar ti set v0='H9RPID4JZBX655PFIFJMNJNJI' where id=7; -update noar tt set b2='9P5LV7PQ22C' where id=7; -update noar ti set b2='9P5LV7PQ22C' where id=7; -update noar tt set v0='0XTU6QYKXN9JI4RADPS' where id=8; -update noar ti set v0='0XTU6QYKXN9JI4RADPS' where id=8; -update noar tt set b0='HR1N216X32E8DZU4T8BD' where id=8; -update noar ti set b0='HR1N216X32E8DZU4T8BD' where id=8; -update noar tt set v0='3U6L6KDBFI6EZL' where id=8; -update noar ti set v0='3U6L6KDBFI6EZL' where id=8; -update noar tt set b1='9AB3UOB3QPAG' where id=8; -update noar ti set b1='9AB3UOB3QPAG' where id=8; -update noar tt set v0='5BEPSZDGWEY2UUS3GPSXUCZUJJ1EDY' where id=8; -update noar ti set v0='5BEPSZDGWEY2UUS3GPSXUCZUJJ1EDY' where id=8; -update noar tt set b2='O4J4PTYRGZUSNG9QW5SA6KHDTXUQ' where id=8; -update noar ti set b2='O4J4PTYRGZUSNG9QW5SA6KHDTXUQ' where id=8; -update noar tt set v0='69T242S86LZCDCJG4P' where id=9; -update noar ti set v0='69T242S86LZCDCJG4P' where id=9; -update noar tt set b0='CZB568J5' where id=9; -update noar ti set b0='CZB568J5' where id=9; -update noar tt set v0='WTQKSNNL7SFBK9UK' where id=9; -update noar ti set v0='WTQKSNNL7SFBK9UK' where id=9; -update noar tt set b1='6IR75N' where id=9; -update noar ti set b1='6IR75N' where id=9; -update noar tt set v0='15LQ68J3MS1LUWU6WYGS68TFZAVXZ9' where id=9; -update noar ti set v0='15LQ68J3MS1LUWU6WYGS68TFZAVXZ9' where id=9; -update noar tt set b2='SUK1SPW7SXO198S0GM3XMF' where id=9; -update noar ti set b2='SUK1SPW7SXO198S0GM3XMF' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -v0 varchar(256) null, -b0 blob null, -b1 mediumblob null, -b2 mediumblob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='L23JVO0UHDHBSR5JYDB7W' where id=1; -update noar ti set v0='L23JVO0UHDHBSR5JYDB7W' where id=1; -update noar tt set b0='MKPTI3J043PRY2BP' where id=1; -update noar ti set b0='MKPTI3J043PRY2BP' where id=1; -update noar tt set v0='DZUSDSK1063WV' where id=1; -update noar ti set v0='DZUSDSK1063WV' where id=1; -update noar tt set b1='8F5YPE1J71PB3F6WOI3QP8X4U2Z' where id=1; -update noar ti set b1='8F5YPE1J71PB3F6WOI3QP8X4U2Z' where id=1; -update noar tt set v0='G6W739LBYFWYVQ' where id=1; -update noar ti set v0='G6W739LBYFWYVQ' where id=1; -update noar tt set b2='CEB2AIP' where id=1; -update noar ti set b2='CEB2AIP' where id=1; -update noar tt set v0='UXQMN46WT92ISPAEMOW' where id=2; -update noar ti set v0='UXQMN46WT92ISPAEMOW' where id=2; -update noar tt set b0='NKB9PC3HGIBZHSEA53RECEZOO2ZTC' where id=2; -update noar ti set b0='NKB9PC3HGIBZHSEA53RECEZOO2ZTC' where id=2; -update noar tt set v0='X22' where id=2; -update noar ti set v0='X22' where id=2; -update noar tt set b1='R259RG2V8G968RMOGYN2' where id=2; -update noar ti set b1='R259RG2V8G968RMOGYN2' where id=2; -update noar tt set v0='G1QMTV' where id=2; -update noar ti set v0='G1QMTV' where id=2; -update noar tt set b2='RWJKOG6ZR3TI2T0WLAQACCNZFHD6A8' where id=2; -update noar ti set b2='RWJKOG6ZR3TI2T0WLAQACCNZFHD6A8' where id=2; -update noar tt set v0='76HXO72TSYEEI9' where id=3; -update noar ti set v0='76HXO72TSYEEI9' where id=3; -update noar tt set b0='TXABT5AVF1MBWA7U' where id=3; -update noar ti set b0='TXABT5AVF1MBWA7U' where id=3; -update noar tt set v0='9KC9D0592I0SQRK49P5JJ23J0Z' where id=3; -update noar ti set v0='9KC9D0592I0SQRK49P5JJ23J0Z' where id=3; -update noar tt set b1='RR7XHD7MMJN3ZSEDS2R9PSSK' where id=3; -update noar ti set b1='RR7XHD7MMJN3ZSEDS2R9PSSK' where id=3; -update noar tt set v0='CDXOBTBHJ' where id=3; -update noar ti set v0='CDXOBTBHJ' where id=3; -update noar tt set b2='3QFH6LK51HFAQCK0DR4I22NM26C' where id=3; -update noar ti set b2='3QFH6LK51HFAQCK0DR4I22NM26C' where id=3; -update noar tt set v0='NXFEIUECQT13JE78SSQN2HWZHGGE' where id=4; -update noar ti set v0='NXFEIUECQT13JE78SSQN2HWZHGGE' where id=4; -update noar tt set b0='KY9B62SBKFMZ9HF5AH' where id=4; -update noar ti set b0='KY9B62SBKFMZ9HF5AH' where id=4; -update noar tt set v0='6Z73Z89' where id=4; -update noar ti set v0='6Z73Z89' where id=4; -update noar tt set b1='U1TRVLQCBI1X7' where id=4; -update noar ti set b1='U1TRVLQCBI1X7' where id=4; -update noar tt set v0='P7F86F1TIWW' where id=4; -update noar ti set v0='P7F86F1TIWW' where id=4; -update noar tt set b2='00FLJI' where id=4; -update noar ti set b2='00FLJI' where id=4; -update noar tt set v0='MWRTHB3RLJ' where id=5; -update noar ti set v0='MWRTHB3RLJ' where id=5; -update noar tt set b0='2O7GJDXGRVQE90H1AK4OJ4KA9' where id=5; -update noar ti set b0='2O7GJDXGRVQE90H1AK4OJ4KA9' where id=5; -update noar tt set v0='NMUWM2FKI0RSXCOZS' where id=5; -update noar ti set v0='NMUWM2FKI0RSXCOZS' where id=5; -update noar tt set b1='2X89' where id=5; -update noar ti set b1='2X89' where id=5; -update noar tt set v0='XAWYR86T0G9DOMSF3VVXL' where id=5; -update noar ti set v0='XAWYR86T0G9DOMSF3VVXL' where id=5; -update noar tt set b2='H6ZY6HCSQ7NESTD247C' where id=5; -update noar ti set b2='H6ZY6HCSQ7NESTD247C' where id=5; -update noar tt set v0='EFHKQRVHCB6LXJ1ZBOS' where id=6; -update noar ti set v0='EFHKQRVHCB6LXJ1ZBOS' where id=6; -update noar tt set b0='XF' where id=6; -update noar ti set b0='XF' where id=6; -update noar tt set v0='88' where id=6; -update noar ti set v0='88' where id=6; -update noar tt set b1='BZER014Y791XS3OX3Y8GYNBTI3WC' where id=6; -update noar ti set b1='BZER014Y791XS3OX3Y8GYNBTI3WC' where id=6; -update noar tt set v0='WIHDAVU' where id=6; -update noar ti set v0='WIHDAVU' where id=6; -update noar tt set b2='NYJG0QPZCCIRBIDDL' where id=6; -update noar ti set b2='NYJG0QPZCCIRBIDDL' where id=6; -update noar tt set v0='KASW3I0EVTBEV8BR9GX4VD724ODZY' where id=7; -update noar ti set v0='KASW3I0EVTBEV8BR9GX4VD724ODZY' where id=7; -update noar tt set b0='GCXH6X5JE6U0TDEX5PX18D' where id=7; -update noar ti set b0='GCXH6X5JE6U0TDEX5PX18D' where id=7; -update noar tt set v0='R0IF0T0XHQHE7' where id=7; -update noar ti set v0='R0IF0T0XHQHE7' where id=7; -update noar tt set b1='64H32X' where id=7; -update noar ti set b1='64H32X' where id=7; -update noar tt set v0='Q72AO9876' where id=7; -update noar ti set v0='Q72AO9876' where id=7; -update noar tt set b2='2' where id=7; -update noar ti set b2='2' where id=7; -update noar tt set v0='06K8SZ46D' where id=8; -update noar ti set v0='06K8SZ46D' where id=8; -update noar tt set b0='EM1WWEREDTE4AJARNKC' where id=8; -update noar ti set b0='EM1WWEREDTE4AJARNKC' where id=8; -update noar tt set v0='DCUP2AWKDWUP630HCQHA' where id=8; -update noar ti set v0='DCUP2AWKDWUP630HCQHA' where id=8; -update noar tt set b1='W8OJTVT9Q09QMB6M70EY9MZ25H' where id=8; -update noar ti set b1='W8OJTVT9Q09QMB6M70EY9MZ25H' where id=8; -update noar tt set v0='HZN48T' where id=8; -update noar ti set v0='HZN48T' where id=8; -update noar tt set b2='KB19D9UTK' where id=8; -update noar ti set b2='KB19D9UTK' where id=8; -update noar tt set v0='W' where id=9; -update noar ti set v0='W' where id=9; -update noar tt set b0='2TSQQQHHLS6GKQ0KZMV1HA77RJJKXY' where id=9; -update noar ti set b0='2TSQQQHHLS6GKQ0KZMV1HA77RJJKXY' where id=9; -update noar tt set v0='8IS5ZCQOXGYLHI9C81KGTI55UZ3ISEWT' where id=9; -update noar ti set v0='8IS5ZCQOXGYLHI9C81KGTI55UZ3ISEWT' where id=9; -update noar tt set b1='N' where id=9; -update noar ti set b1='N' where id=9; -update noar tt set v0='RNDUXEOH16N7SK2R6P0SXK814GJCM' where id=9; -update noar ti set v0='RNDUXEOH16N7SK2R6P0SXK814GJCM' where id=9; -update noar tt set b2='YXWJ30BF6XUE84P3U' where id=9; -update noar ti set b2='YXWJ30BF6XUE84P3U' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -v0 varchar(32) not null, -b0 blob not null, -b1 mediumblob not null, -b2 mediumblob not null -) engine=tokudb; -insert into tt values (1,'','','',''); -insert into tt values (2,'','','',''); -insert into tt values (3,'','','',''); -insert into tt values (4,'','','',''); -insert into tt values (5,'','','',''); -insert into tt values (6,'','','',''); -insert into tt values (7,'','','',''); -insert into tt values (8,'','','',''); -insert into tt values (9,'','','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='ZER3B2TB' where id=1; -update noar ti set v0='ZER3B2TB' where id=1; -update noar tt set b0='OM3NIZCJASAZIK0T7VQV53D9WZM9TU' where id=1; -update noar ti set b0='OM3NIZCJASAZIK0T7VQV53D9WZM9TU' where id=1; -update noar tt set v0='BJJT72' where id=1; -update noar ti set v0='BJJT72' where id=1; -update noar tt set b1='2YQ41M89C0PMEL241QNVZCIPP6S7SWR' where id=1; -update noar ti set b1='2YQ41M89C0PMEL241QNVZCIPP6S7SWR' where id=1; -update noar tt set v0='GZHONEIXEE' where id=1; -update noar ti set v0='GZHONEIXEE' where id=1; -update noar tt set b2='B' where id=1; -update noar ti set b2='B' where id=1; -update noar tt set v0='Y1F1JSFXMMBYY8KUPEZHMXMP866' where id=2; -update noar ti set v0='Y1F1JSFXMMBYY8KUPEZHMXMP866' where id=2; -update noar tt set b0='6CAMSKV' where id=2; -update noar ti set b0='6CAMSKV' where id=2; -update noar tt set v0='9G9TWJ3T8UYGQ4CZNXJC3NG11' where id=2; -update noar ti set v0='9G9TWJ3T8UYGQ4CZNXJC3NG11' where id=2; -update noar tt set b1='RM7KCXC8FKHU7YY6HUP1DELLR74' where id=2; -update noar ti set b1='RM7KCXC8FKHU7YY6HUP1DELLR74' where id=2; -update noar tt set v0='YFTQOOJUC7LJ5H' where id=2; -update noar ti set v0='YFTQOOJUC7LJ5H' where id=2; -update noar tt set b2='5L0BWCR4PL25' where id=2; -update noar ti set b2='5L0BWCR4PL25' where id=2; -update noar tt set v0='12ZH4BYR7IA51KI0H3QPZ61J' where id=3; -update noar ti set v0='12ZH4BYR7IA51KI0H3QPZ61J' where id=3; -update noar tt set b0='NF0N3M91UHYHVTCJ4X58RDAPD0QT13' where id=3; -update noar ti set b0='NF0N3M91UHYHVTCJ4X58RDAPD0QT13' where id=3; -update noar tt set v0='3PX5CPKSDHLKDX5DB' where id=3; -update noar ti set v0='3PX5CPKSDHLKDX5DB' where id=3; -update noar tt set b1='V2IVULHBCZEISR9ASTF81AIV' where id=3; -update noar ti set b1='V2IVULHBCZEISR9ASTF81AIV' where id=3; -update noar tt set v0='J1D98GFRQ' where id=3; -update noar ti set v0='J1D98GFRQ' where id=3; -update noar tt set b2='O79MR8LFTGWRHYCI7FP3' where id=3; -update noar ti set b2='O79MR8LFTGWRHYCI7FP3' where id=3; -update noar tt set v0='AOJLLR4RIKNLY166PIN1XBMFR' where id=4; -update noar ti set v0='AOJLLR4RIKNLY166PIN1XBMFR' where id=4; -update noar tt set b0='0QLH' where id=4; -update noar ti set b0='0QLH' where id=4; -update noar tt set v0='ZEMNBKSMEL825FSHG9U' where id=4; -update noar ti set v0='ZEMNBKSMEL825FSHG9U' where id=4; -update noar tt set b1='30R7LQ861ZU535IKTNQ' where id=4; -update noar ti set b1='30R7LQ861ZU535IKTNQ' where id=4; -update noar tt set v0='VSS177UTQCQ3EXFFIV35KWPP' where id=4; -update noar ti set v0='VSS177UTQCQ3EXFFIV35KWPP' where id=4; -update noar tt set b2='RJ3B1O2B9JLKLIX3VEO' where id=4; -update noar ti set b2='RJ3B1O2B9JLKLIX3VEO' where id=4; -update noar tt set v0='VJ2GJ9UHEOKUCHCQO2ZR' where id=5; -update noar ti set v0='VJ2GJ9UHEOKUCHCQO2ZR' where id=5; -update noar tt set b0='Z8J38QRMD6U4Q8R4WRUWNZAA78DP8' where id=5; -update noar ti set b0='Z8J38QRMD6U4Q8R4WRUWNZAA78DP8' where id=5; -update noar tt set v0='H86ESHCEPJ' where id=5; -update noar ti set v0='H86ESHCEPJ' where id=5; -update noar tt set b1='7PBBSVC0KSXACSEKKWAABY28O3' where id=5; -update noar ti set b1='7PBBSVC0KSXACSEKKWAABY28O3' where id=5; -update noar tt set v0='8IR3IHD5LAR36X7UE0R' where id=5; -update noar ti set v0='8IR3IHD5LAR36X7UE0R' where id=5; -update noar tt set b2='I2V7XPDJVWEA' where id=5; -update noar ti set b2='I2V7XPDJVWEA' where id=5; -update noar tt set v0='D' where id=6; -update noar ti set v0='D' where id=6; -update noar tt set b0='NIQ2XFMXO22' where id=6; -update noar ti set b0='NIQ2XFMXO22' where id=6; -update noar tt set v0='LA1VGDAVEDESQ7B5' where id=6; -update noar ti set v0='LA1VGDAVEDESQ7B5' where id=6; -update noar tt set b1='0ESWKMPYO2S8NAA' where id=6; -update noar ti set b1='0ESWKMPYO2S8NAA' where id=6; -update noar tt set v0='UJFWZCBDXW4G99' where id=6; -update noar ti set v0='UJFWZCBDXW4G99' where id=6; -update noar tt set b2='6O5X47SSSH3ZEZ6RLLT70Y86ARHF998' where id=6; -update noar ti set b2='6O5X47SSSH3ZEZ6RLLT70Y86ARHF998' where id=6; -update noar tt set v0='R' where id=7; -update noar ti set v0='R' where id=7; -update noar tt set b0='8IBIP4YPWZJO90JULIBMFX8SW' where id=7; -update noar ti set b0='8IBIP4YPWZJO90JULIBMFX8SW' where id=7; -update noar tt set v0='9US3WWSD54WU5BPYBXT8I8N5F8' where id=7; -update noar ti set v0='9US3WWSD54WU5BPYBXT8I8N5F8' where id=7; -update noar tt set b1='E2DJZ7YNJJMLE96' where id=7; -update noar ti set b1='E2DJZ7YNJJMLE96' where id=7; -update noar tt set v0='9UFXX5IWV68YADBT99YR8X2JES78' where id=7; -update noar ti set v0='9UFXX5IWV68YADBT99YR8X2JES78' where id=7; -update noar tt set b2='38E6IQJ6' where id=7; -update noar ti set b2='38E6IQJ6' where id=7; -update noar tt set v0='4P8Q713F5' where id=8; -update noar ti set v0='4P8Q713F5' where id=8; -update noar tt set b0='L3G5OSJ07WU8TXJYSV939G8' where id=8; -update noar ti set b0='L3G5OSJ07WU8TXJYSV939G8' where id=8; -update noar tt set v0='4Z28GWV0WI9DK' where id=8; -update noar ti set v0='4Z28GWV0WI9DK' where id=8; -update noar tt set b1='YNGBR14' where id=8; -update noar ti set b1='YNGBR14' where id=8; -update noar tt set v0='KNJ1OR1I06RCB5EU5HW3NRNFXE5BBMQ' where id=8; -update noar ti set v0='KNJ1OR1I06RCB5EU5HW3NRNFXE5BBMQ' where id=8; -update noar tt set b2='0U4B4NEA8KZTNWC8MI' where id=8; -update noar ti set b2='0U4B4NEA8KZTNWC8MI' where id=8; -update noar tt set v0='CSGHKZSBAHBDO3I4D653ST18QX' where id=9; -update noar ti set v0='CSGHKZSBAHBDO3I4D653ST18QX' where id=9; -update noar tt set b0='UZ' where id=9; -update noar ti set b0='UZ' where id=9; -update noar tt set v0='21T1PSG8YVT3RR383YNM0' where id=9; -update noar ti set v0='21T1PSG8YVT3RR383YNM0' where id=9; -update noar tt set b1='QYV96LKUZ' where id=9; -update noar ti set b1='QYV96LKUZ' where id=9; -update noar tt set v0='BWURG0KM06RKWPZ53H2EXC9PYA8ND4U5' where id=9; -update noar ti set v0='BWURG0KM06RKWPZ53H2EXC9PYA8ND4U5' where id=9; -update noar tt set b2='WGDVLBDEZ56O45GNFND' where id=9; -update noar ti set b2='WGDVLBDEZ56O45GNFND' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -v0 varchar(256) not null, -b0 blob not null, -b1 mediumblob not null, -b2 mediumblob not null -) engine=tokudb; -insert into tt values (1,'','','',''); -insert into tt values (2,'','','',''); -insert into tt values (3,'','','',''); -insert into tt values (4,'','','',''); -insert into tt values (5,'','','',''); -insert into tt values (6,'','','',''); -insert into tt values (7,'','','',''); -insert into tt values (8,'','','',''); -insert into tt values (9,'','','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='CCK0JJHK7TK0BSFL2S1HM2' where id=1; -update noar ti set v0='CCK0JJHK7TK0BSFL2S1HM2' where id=1; -update noar tt set b0='VL18TR2DNYDC25ZG' where id=1; -update noar ti set b0='VL18TR2DNYDC25ZG' where id=1; -update noar tt set v0='B8AKFZDJ4HKCMSFNEC8WUHI8S0ZH3L6T' where id=1; -update noar ti set v0='B8AKFZDJ4HKCMSFNEC8WUHI8S0ZH3L6T' where id=1; -update noar tt set b1='4FYM92FEMWKSBPP1LW' where id=1; -update noar ti set b1='4FYM92FEMWKSBPP1LW' where id=1; -update noar tt set v0='JC' where id=1; -update noar ti set v0='JC' where id=1; -update noar tt set b2='2H' where id=1; -update noar ti set b2='2H' where id=1; -update noar tt set v0='UU1BRNR99FG59BXQQLUJ8KYFIOLJ38G' where id=2; -update noar ti set v0='UU1BRNR99FG59BXQQLUJ8KYFIOLJ38G' where id=2; -update noar tt set b0='KGSP7ES2YO3UH2LQR' where id=2; -update noar ti set b0='KGSP7ES2YO3UH2LQR' where id=2; -update noar tt set v0='USG' where id=2; -update noar ti set v0='USG' where id=2; -update noar tt set b1='2964GQ' where id=2; -update noar ti set b1='2964GQ' where id=2; -update noar tt set v0='37B' where id=2; -update noar ti set v0='37B' where id=2; -update noar tt set b2='DE4Y61ZGKWVQCN1DJXY2UGGW4BC1' where id=2; -update noar ti set b2='DE4Y61ZGKWVQCN1DJXY2UGGW4BC1' where id=2; -update noar tt set v0='YQM7CNRCYIS82JLNP9ABP9MMW6QSB' where id=3; -update noar ti set v0='YQM7CNRCYIS82JLNP9ABP9MMW6QSB' where id=3; -update noar tt set b0='KMIXKI5GZAB8V5TCFRE5' where id=3; -update noar ti set b0='KMIXKI5GZAB8V5TCFRE5' where id=3; -update noar tt set v0='PO9RSR13T' where id=3; -update noar ti set v0='PO9RSR13T' where id=3; -update noar tt set b1='GUGA8H5PAXBQQ7MYER0D' where id=3; -update noar ti set b1='GUGA8H5PAXBQQ7MYER0D' where id=3; -update noar tt set v0='VF3QKSSOV78CX7MA0A2N' where id=3; -update noar ti set v0='VF3QKSSOV78CX7MA0A2N' where id=3; -update noar tt set b2='IK6Y' where id=3; -update noar ti set b2='IK6Y' where id=3; -update noar tt set v0='QPY891R3QSBMEG3A01AMUMG' where id=4; -update noar ti set v0='QPY891R3QSBMEG3A01AMUMG' where id=4; -update noar tt set b0='MGGM9' where id=4; -update noar ti set b0='MGGM9' where id=4; -update noar tt set v0='IERH' where id=4; -update noar ti set v0='IERH' where id=4; -update noar tt set b1='3OBWCFUP7GIRV9' where id=4; -update noar ti set b1='3OBWCFUP7GIRV9' where id=4; -update noar tt set v0='IXV' where id=4; -update noar ti set v0='IXV' where id=4; -update noar tt set b2='APXIHLJ580D7J5B71' where id=4; -update noar ti set b2='APXIHLJ580D7J5B71' where id=4; -update noar tt set v0='U2IL4JG33NT24NE8LY' where id=5; -update noar ti set v0='U2IL4JG33NT24NE8LY' where id=5; -update noar tt set b0='DLI4DXN' where id=5; -update noar ti set b0='DLI4DXN' where id=5; -update noar tt set v0='8ORFOQ73YOIH3' where id=5; -update noar ti set v0='8ORFOQ73YOIH3' where id=5; -update noar tt set b1='KL6EE66XTKR59ZSPS6W714IK' where id=5; -update noar ti set b1='KL6EE66XTKR59ZSPS6W714IK' where id=5; -update noar tt set v0='JQZ5X92O2MSUW7ZGFF2JJIOHMYZRMN1' where id=5; -update noar ti set v0='JQZ5X92O2MSUW7ZGFF2JJIOHMYZRMN1' where id=5; -update noar tt set b2='VCMIP73NF3HJM5QQDAECK' where id=5; -update noar ti set b2='VCMIP73NF3HJM5QQDAECK' where id=5; -update noar tt set v0='XF2B' where id=6; -update noar ti set v0='XF2B' where id=6; -update noar tt set b0='1RJZTW7LCZA0KRG0FE4VLKX2' where id=6; -update noar ti set b0='1RJZTW7LCZA0KRG0FE4VLKX2' where id=6; -update noar tt set v0='GSK501DWXYLPS13LU' where id=6; -update noar ti set v0='GSK501DWXYLPS13LU' where id=6; -update noar tt set b1='GNCK3I7MPEGODCWB62SSIFATXI' where id=6; -update noar ti set b1='GNCK3I7MPEGODCWB62SSIFATXI' where id=6; -update noar tt set v0='K60R5UCOK2E' where id=6; -update noar ti set v0='K60R5UCOK2E' where id=6; -update noar tt set b2='XU5GVMZCYA5GS18' where id=6; -update noar ti set b2='XU5GVMZCYA5GS18' where id=6; -update noar tt set v0='FJXCHJU2XCJF0XLM8N1G8VA44EW421QO' where id=7; -update noar ti set v0='FJXCHJU2XCJF0XLM8N1G8VA44EW421QO' where id=7; -update noar tt set b0='CN73PX7SFGUVX' where id=7; -update noar ti set b0='CN73PX7SFGUVX' where id=7; -update noar tt set v0='UK9QL' where id=7; -update noar ti set v0='UK9QL' where id=7; -update noar tt set b1='Y3H98RLLVX5FTUXP2HY252J92B2WDL' where id=7; -update noar ti set b1='Y3H98RLLVX5FTUXP2HY252J92B2WDL' where id=7; -update noar tt set v0='34HPE' where id=7; -update noar ti set v0='34HPE' where id=7; -update noar tt set b2='JUPPB4RDTY2OZ2XMXOR' where id=7; -update noar ti set b2='JUPPB4RDTY2OZ2XMXOR' where id=7; -update noar tt set v0='TMJV7PIHDU4O09GLRR5DZ2J' where id=8; -update noar ti set v0='TMJV7PIHDU4O09GLRR5DZ2J' where id=8; -update noar tt set b0='TNZK2E0KUKJBZ' where id=8; -update noar ti set b0='TNZK2E0KUKJBZ' where id=8; -update noar tt set v0='C' where id=8; -update noar ti set v0='C' where id=8; -update noar tt set b1='74O2NJ39WIUJ9BHT08GJNE' where id=8; -update noar ti set b1='74O2NJ39WIUJ9BHT08GJNE' where id=8; -update noar tt set v0='KB7QSJSUPRGALK' where id=8; -update noar ti set v0='KB7QSJSUPRGALK' where id=8; -update noar tt set b2='UP4DW' where id=8; -update noar ti set b2='UP4DW' where id=8; -update noar tt set v0='D2XC722DSEZHLEAG5V' where id=9; -update noar ti set v0='D2XC722DSEZHLEAG5V' where id=9; -update noar tt set b0='C8FCTDCLFUJOVIL' where id=9; -update noar ti set b0='C8FCTDCLFUJOVIL' where id=9; -update noar tt set v0='ASX1JM3TRVHLI5' where id=9; -update noar ti set v0='ASX1JM3TRVHLI5' where id=9; -update noar tt set b1='LJCX8EEK2RZALC3PTVJFM' where id=9; -update noar ti set b1='LJCX8EEK2RZALC3PTVJFM' where id=9; -update noar tt set v0='Y7BB0428G8RCGVT6QSYDAIYGM' where id=9; -update noar ti set v0='Y7BB0428G8RCGVT6QSYDAIYGM' where id=9; -update noar tt set b2='FC0OHEY' where id=9; -update noar ti set b2='FC0OHEY' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -v0 varchar(32) null, -b0 blob null, -b1 mediumblob null, -b2 longblob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='68WFG9DJ0F5SPGNLS9Y3VBGQW' where id=1; -update noar ti set v0='68WFG9DJ0F5SPGNLS9Y3VBGQW' where id=1; -update noar tt set b0='GJJQDWXFVVW9W1C1V3IGUY0H73C0Z' where id=1; -update noar ti set b0='GJJQDWXFVVW9W1C1V3IGUY0H73C0Z' where id=1; -update noar tt set v0='HZLH' where id=1; -update noar ti set v0='HZLH' where id=1; -update noar tt set b1='TAMNEBRZIYWZMMAXXC' where id=1; -update noar ti set b1='TAMNEBRZIYWZMMAXXC' where id=1; -update noar tt set v0='1GN9L6YQDOW5B2D7QNP2KWHJZAN7UM5X' where id=1; -update noar ti set v0='1GN9L6YQDOW5B2D7QNP2KWHJZAN7UM5X' where id=1; -update noar tt set b2='MCBWMPAKB0LF58N70EG2X7C8JE76W4DY' where id=1; -update noar ti set b2='MCBWMPAKB0LF58N70EG2X7C8JE76W4DY' where id=1; -update noar tt set v0='HSFTWCOI3WKZPYIW1ZAEZT2EXG6KQ6UM' where id=2; -update noar ti set v0='HSFTWCOI3WKZPYIW1ZAEZT2EXG6KQ6UM' where id=2; -update noar tt set b0='36PUJW3R3SRCZANOLG42OKQG0WW' where id=2; -update noar ti set b0='36PUJW3R3SRCZANOLG42OKQG0WW' where id=2; -update noar tt set v0='EHT6WQDXJ0KCVWENEJD4I9EEKREG' where id=2; -update noar ti set v0='EHT6WQDXJ0KCVWENEJD4I9EEKREG' where id=2; -update noar tt set b1='FI0P8USQIS1HAR' where id=2; -update noar ti set b1='FI0P8USQIS1HAR' where id=2; -update noar tt set v0='NABZ2R0EE4KRD4HB0KNQW' where id=2; -update noar ti set v0='NABZ2R0EE4KRD4HB0KNQW' where id=2; -update noar tt set b2='MHJO9XHLPB9P441LYDSSBXBS26O0' where id=2; -update noar ti set b2='MHJO9XHLPB9P441LYDSSBXBS26O0' where id=2; -update noar tt set v0='EYM93FJNGMY4GH71C6X4D7LG7O' where id=3; -update noar ti set v0='EYM93FJNGMY4GH71C6X4D7LG7O' where id=3; -update noar tt set b0='4WE5X4268' where id=3; -update noar ti set b0='4WE5X4268' where id=3; -update noar tt set v0='RZ8AQRCT57EFYIVQK3' where id=3; -update noar ti set v0='RZ8AQRCT57EFYIVQK3' where id=3; -update noar tt set b1='6Z3G17UE1T6DWAKCPOT' where id=3; -update noar ti set b1='6Z3G17UE1T6DWAKCPOT' where id=3; -update noar tt set v0='TNW6Z5BJMUULNM3E5HDZW98DYXXLAHE' where id=3; -update noar ti set v0='TNW6Z5BJMUULNM3E5HDZW98DYXXLAHE' where id=3; -update noar tt set b2='V736194IVASEFXV9QE71NTETX8HMPK' where id=3; -update noar ti set b2='V736194IVASEFXV9QE71NTETX8HMPK' where id=3; -update noar tt set v0='Q' where id=4; -update noar ti set v0='Q' where id=4; -update noar tt set b0='790AQ3FR1XAKQ7J96O' where id=4; -update noar ti set b0='790AQ3FR1XAKQ7J96O' where id=4; -update noar tt set v0='RNC0NJXG' where id=4; -update noar ti set v0='RNC0NJXG' where id=4; -update noar tt set b1='BS8MUZSWDI02YLPNBXKZ' where id=4; -update noar ti set b1='BS8MUZSWDI02YLPNBXKZ' where id=4; -update noar tt set v0='HLIM16A3WWMFST257RS7E1R8ZOAL' where id=4; -update noar ti set v0='HLIM16A3WWMFST257RS7E1R8ZOAL' where id=4; -update noar tt set b2='716E9B94DMOQRWBDXLLTE81' where id=4; -update noar ti set b2='716E9B94DMOQRWBDXLLTE81' where id=4; -update noar tt set v0='LTPTMWH7' where id=5; -update noar ti set v0='LTPTMWH7' where id=5; -update noar tt set b0='6DLTZPWJXHA57OL7O' where id=5; -update noar ti set b0='6DLTZPWJXHA57OL7O' where id=5; -update noar tt set v0='JC4HUNG4OL5XTXRKBKL59PBO' where id=5; -update noar ti set v0='JC4HUNG4OL5XTXRKBKL59PBO' where id=5; -update noar tt set b1='OWET5SAJY93XXWY6Q' where id=5; -update noar ti set b1='OWET5SAJY93XXWY6Q' where id=5; -update noar tt set v0='LUCQN1UX8AODTLE7X8HGPITBI12NQ' where id=5; -update noar ti set v0='LUCQN1UX8AODTLE7X8HGPITBI12NQ' where id=5; -update noar tt set b2='LIC9K2G7' where id=5; -update noar ti set b2='LIC9K2G7' where id=5; -update noar tt set v0='9X4I118ATM6XW2CP3' where id=6; -update noar ti set v0='9X4I118ATM6XW2CP3' where id=6; -update noar tt set b0='UWE8MRPUXVGIOLBYZPP2N9' where id=6; -update noar ti set b0='UWE8MRPUXVGIOLBYZPP2N9' where id=6; -update noar tt set v0='V' where id=6; -update noar ti set v0='V' where id=6; -update noar tt set b1='JKQE0YCBT0139G' where id=6; -update noar ti set b1='JKQE0YCBT0139G' where id=6; -update noar tt set v0='YK81UBKGIJ6LSIB7J4' where id=6; -update noar ti set v0='YK81UBKGIJ6LSIB7J4' where id=6; -update noar tt set b2='DRJONJWOM2EVZ90YO3C3CWPPK8ZZ' where id=6; -update noar ti set b2='DRJONJWOM2EVZ90YO3C3CWPPK8ZZ' where id=6; -update noar tt set v0='KGVBOBAQ74UFG26PG4F7CMYGIFQX6Z' where id=7; -update noar ti set v0='KGVBOBAQ74UFG26PG4F7CMYGIFQX6Z' where id=7; -update noar tt set b0='ROZ88VBKH1PQTULLA4TTH1FEXW' where id=7; -update noar ti set b0='ROZ88VBKH1PQTULLA4TTH1FEXW' where id=7; -update noar tt set v0='TMIBLKFKNNQ5ID7HYNK0KNZKQ8' where id=7; -update noar ti set v0='TMIBLKFKNNQ5ID7HYNK0KNZKQ8' where id=7; -update noar tt set b1='LU9GMFQ5XC026GHOMM40A4VS31N' where id=7; -update noar ti set b1='LU9GMFQ5XC026GHOMM40A4VS31N' where id=7; -update noar tt set v0='MJNSE4RU0' where id=7; -update noar ti set v0='MJNSE4RU0' where id=7; -update noar tt set b2='L7YVQU7FC099COPF2HVRH9' where id=7; -update noar ti set b2='L7YVQU7FC099COPF2HVRH9' where id=7; -update noar tt set v0='JNR0EEWR3VQ9LN7GJX9TJTQVN' where id=8; -update noar ti set v0='JNR0EEWR3VQ9LN7GJX9TJTQVN' where id=8; -update noar tt set b0='QK2HW51U16IAQXEMQDLEM' where id=8; -update noar ti set b0='QK2HW51U16IAQXEMQDLEM' where id=8; -update noar tt set v0='6YHWAIS3P7' where id=8; -update noar ti set v0='6YHWAIS3P7' where id=8; -update noar tt set b1='DVTRZJ41A6SL4CYI43J' where id=8; -update noar ti set b1='DVTRZJ41A6SL4CYI43J' where id=8; -update noar tt set v0='PYGO8HY' where id=8; -update noar ti set v0='PYGO8HY' where id=8; -update noar tt set b2='6' where id=8; -update noar ti set b2='6' where id=8; -update noar tt set v0='YVF7G0RPZK8GH0W4L5U' where id=9; -update noar ti set v0='YVF7G0RPZK8GH0W4L5U' where id=9; -update noar tt set b0='ZVW0D' where id=9; -update noar ti set b0='ZVW0D' where id=9; -update noar tt set v0='WRBRJR0PUWNQXLWK' where id=9; -update noar ti set v0='WRBRJR0PUWNQXLWK' where id=9; -update noar tt set b1='MF36U4O' where id=9; -update noar ti set b1='MF36U4O' where id=9; -update noar tt set v0='76LSI1ZY1YW3DGEU87GNOUZL' where id=9; -update noar ti set v0='76LSI1ZY1YW3DGEU87GNOUZL' where id=9; -update noar tt set b2='BKIWO5A0M1X96BQLKZS' where id=9; -update noar ti set b2='BKIWO5A0M1X96BQLKZS' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -v0 varchar(256) null, -b0 blob null, -b1 mediumblob null, -b2 longblob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='MO3D30LM8B0Q8OBR' where id=1; -update noar ti set v0='MO3D30LM8B0Q8OBR' where id=1; -update noar tt set b0='37UJPMVM20AZA1MCKSN9A8N5OY' where id=1; -update noar ti set b0='37UJPMVM20AZA1MCKSN9A8N5OY' where id=1; -update noar tt set v0='DA85PD9SU6HV2R' where id=1; -update noar ti set v0='DA85PD9SU6HV2R' where id=1; -update noar tt set b1='4' where id=1; -update noar ti set b1='4' where id=1; -update noar tt set v0='U0XSXPLOVC0MIUTXDNR8B' where id=1; -update noar ti set v0='U0XSXPLOVC0MIUTXDNR8B' where id=1; -update noar tt set b2='9N5BJO7SU3JBSEHNM9DKWI8796Z' where id=1; -update noar ti set b2='9N5BJO7SU3JBSEHNM9DKWI8796Z' where id=1; -update noar tt set v0='2RVYVSG054HQH7DCBCGAV' where id=2; -update noar ti set v0='2RVYVSG054HQH7DCBCGAV' where id=2; -update noar tt set b0='Z' where id=2; -update noar ti set b0='Z' where id=2; -update noar tt set v0='0IV3OCI9CC059E68MGHJ' where id=2; -update noar ti set v0='0IV3OCI9CC059E68MGHJ' where id=2; -update noar tt set b1='BCNDHCCPJDXD27KA8L' where id=2; -update noar ti set b1='BCNDHCCPJDXD27KA8L' where id=2; -update noar tt set v0='XO' where id=2; -update noar ti set v0='XO' where id=2; -update noar tt set b2='MHQ43XP8IY2Q0TFZVUS' where id=2; -update noar ti set b2='MHQ43XP8IY2Q0TFZVUS' where id=2; -update noar tt set v0='O1RIQFCMTEDOERWIS8L5BV52RN7OF75' where id=3; -update noar ti set v0='O1RIQFCMTEDOERWIS8L5BV52RN7OF75' where id=3; -update noar tt set b0='6CXKYU6MGWCYNT' where id=3; -update noar ti set b0='6CXKYU6MGWCYNT' where id=3; -update noar tt set v0='OPRAL68V3W3F' where id=3; -update noar ti set v0='OPRAL68V3W3F' where id=3; -update noar tt set b1='6CR23K' where id=3; -update noar ti set b1='6CR23K' where id=3; -update noar tt set v0='PEU' where id=3; -update noar ti set v0='PEU' where id=3; -update noar tt set b2='O6Y0GD' where id=3; -update noar ti set b2='O6Y0GD' where id=3; -update noar tt set v0='NBCJ4ENSSJVK7284DDBH' where id=4; -update noar ti set v0='NBCJ4ENSSJVK7284DDBH' where id=4; -update noar tt set b0='MNXVJ8G8A040JG4' where id=4; -update noar ti set b0='MNXVJ8G8A040JG4' where id=4; -update noar tt set v0='HWUP083X6QYO78Z85BEU0AJI3I2SS5QG' where id=4; -update noar ti set v0='HWUP083X6QYO78Z85BEU0AJI3I2SS5QG' where id=4; -update noar tt set b1='F18NE22E2NWXRCSC' where id=4; -update noar ti set b1='F18NE22E2NWXRCSC' where id=4; -update noar tt set v0='XMMFLCB38E' where id=4; -update noar ti set v0='XMMFLCB38E' where id=4; -update noar tt set b2='4S6L18AMFFHZVQXN' where id=4; -update noar ti set b2='4S6L18AMFFHZVQXN' where id=4; -update noar tt set v0='1HT699BJXLWF7PHV81P' where id=5; -update noar ti set v0='1HT699BJXLWF7PHV81P' where id=5; -update noar tt set b0='C7' where id=5; -update noar ti set b0='C7' where id=5; -update noar tt set v0='LKT0J02L5' where id=5; -update noar ti set v0='LKT0J02L5' where id=5; -update noar tt set b1='SSXRD4QSOL1MBF7RMZB6POOCJHR1B' where id=5; -update noar ti set b1='SSXRD4QSOL1MBF7RMZB6POOCJHR1B' where id=5; -update noar tt set v0='P0YFEV2JSP94FQULY2NNVGR7E1AT8PM' where id=5; -update noar ti set v0='P0YFEV2JSP94FQULY2NNVGR7E1AT8PM' where id=5; -update noar tt set b2='3S4GS23F93JGACHMR8QZKC1P5' where id=5; -update noar ti set b2='3S4GS23F93JGACHMR8QZKC1P5' where id=5; -update noar tt set v0='G3B9IOQ7I6HI3K' where id=6; -update noar ti set v0='G3B9IOQ7I6HI3K' where id=6; -update noar tt set b0='F734M595W6TN6VZ559JMJF7T' where id=6; -update noar ti set b0='F734M595W6TN6VZ559JMJF7T' where id=6; -update noar tt set v0='T2GNQ' where id=6; -update noar ti set v0='T2GNQ' where id=6; -update noar tt set b1='2PY84OQAHQ0BUQYELHO66XS8IZ4' where id=6; -update noar ti set b1='2PY84OQAHQ0BUQYELHO66XS8IZ4' where id=6; -update noar tt set v0='BQB7OXKA1INZPV323KLTVGZKU5D' where id=6; -update noar ti set v0='BQB7OXKA1INZPV323KLTVGZKU5D' where id=6; -update noar tt set b2='CZ' where id=6; -update noar ti set b2='CZ' where id=6; -update noar tt set v0='5BR2' where id=7; -update noar ti set v0='5BR2' where id=7; -update noar tt set b0='MRDP8' where id=7; -update noar ti set b0='MRDP8' where id=7; -update noar tt set v0='E2CMAUAAJKWJ87MFQYJRG' where id=7; -update noar ti set v0='E2CMAUAAJKWJ87MFQYJRG' where id=7; -update noar tt set b1='K93B0836WE1ONXPH1XJH3ZB9BN0VC' where id=7; -update noar ti set b1='K93B0836WE1ONXPH1XJH3ZB9BN0VC' where id=7; -update noar tt set v0='0KDY' where id=7; -update noar ti set v0='0KDY' where id=7; -update noar tt set b2='40UTQWSB9S3Y93Q' where id=7; -update noar ti set b2='40UTQWSB9S3Y93Q' where id=7; -update noar tt set v0='YJMBZ4WFEX' where id=8; -update noar ti set v0='YJMBZ4WFEX' where id=8; -update noar tt set b0='JAVOYR63YPS9Z765PEAW54TIKXOD8WGU' where id=8; -update noar ti set b0='JAVOYR63YPS9Z765PEAW54TIKXOD8WGU' where id=8; -update noar tt set v0='D78D' where id=8; -update noar ti set v0='D78D' where id=8; -update noar tt set b1='KG5' where id=8; -update noar ti set b1='KG5' where id=8; -update noar tt set v0='N7SSPSGX3UMDUC5IASOARJTJV0GUGQ' where id=8; -update noar ti set v0='N7SSPSGX3UMDUC5IASOARJTJV0GUGQ' where id=8; -update noar tt set b2='94W3RGPR9J7UC4' where id=8; -update noar ti set b2='94W3RGPR9J7UC4' where id=8; -update noar tt set v0='ZSAQ9T6KNRSVK9V2I3M9PWH9Z' where id=9; -update noar ti set v0='ZSAQ9T6KNRSVK9V2I3M9PWH9Z' where id=9; -update noar tt set b0='93M7' where id=9; -update noar ti set b0='93M7' where id=9; -update noar tt set v0='M5JERVPVEPT6PBJ86YW5NZTP' where id=9; -update noar ti set v0='M5JERVPVEPT6PBJ86YW5NZTP' where id=9; -update noar tt set b1='BTH8H9PTV2REDR2H' where id=9; -update noar ti set b1='BTH8H9PTV2REDR2H' where id=9; -update noar tt set v0='0C2Q7HB4C5E5' where id=9; -update noar ti set v0='0C2Q7HB4C5E5' where id=9; -update noar tt set b2='ZGFQQZ98M623FHPTBEYPTJZHW' where id=9; -update noar ti set b2='ZGFQQZ98M623FHPTBEYPTJZHW' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -v0 varchar(32) not null, -b0 blob not null, -b1 mediumblob not null, -b2 longblob not null -) engine=tokudb; -insert into tt values (1,'','','',''); -insert into tt values (2,'','','',''); -insert into tt values (3,'','','',''); -insert into tt values (4,'','','',''); -insert into tt values (5,'','','',''); -insert into tt values (6,'','','',''); -insert into tt values (7,'','','',''); -insert into tt values (8,'','','',''); -insert into tt values (9,'','','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='ITD57JUS8PZW804021UG414R' where id=1; -update noar ti set v0='ITD57JUS8PZW804021UG414R' where id=1; -update noar tt set b0='WUY2LGBUTQP7251GT' where id=1; -update noar ti set b0='WUY2LGBUTQP7251GT' where id=1; -update noar tt set v0='QMPF8MITENB3ZDK' where id=1; -update noar ti set v0='QMPF8MITENB3ZDK' where id=1; -update noar tt set b1='CZ2V4' where id=1; -update noar ti set b1='CZ2V4' where id=1; -update noar tt set v0='PJVFPR6P2' where id=1; -update noar ti set v0='PJVFPR6P2' where id=1; -update noar tt set b2='CKV1XVN7LQQM5' where id=1; -update noar ti set b2='CKV1XVN7LQQM5' where id=1; -update noar tt set v0='2' where id=2; -update noar ti set v0='2' where id=2; -update noar tt set b0='U4X6YP4MVATBDL5VUNYH4PR8Q8OZNM' where id=2; -update noar ti set b0='U4X6YP4MVATBDL5VUNYH4PR8Q8OZNM' where id=2; -update noar tt set v0='YY7B4R8P9PH5ZE0OK6BUN3ZHZQ2XL' where id=2; -update noar ti set v0='YY7B4R8P9PH5ZE0OK6BUN3ZHZQ2XL' where id=2; -update noar tt set b1='4QXSFZ15ED1G2J63UAGHD29X61R' where id=2; -update noar ti set b1='4QXSFZ15ED1G2J63UAGHD29X61R' where id=2; -update noar tt set v0='5ZYFDLUVUV13' where id=2; -update noar ti set v0='5ZYFDLUVUV13' where id=2; -update noar tt set b2='WAJ30H8WVKORHVFK3' where id=2; -update noar ti set b2='WAJ30H8WVKORHVFK3' where id=2; -update noar tt set v0='O' where id=3; -update noar ti set v0='O' where id=3; -update noar tt set b0='Q2SI' where id=3; -update noar ti set b0='Q2SI' where id=3; -update noar tt set v0='V5GVSEJACVA0YDUL3UH4YU5IER1AUH' where id=3; -update noar ti set v0='V5GVSEJACVA0YDUL3UH4YU5IER1AUH' where id=3; -update noar tt set b1='HLKB8RCE5X9QT7E57I5' where id=3; -update noar ti set b1='HLKB8RCE5X9QT7E57I5' where id=3; -update noar tt set v0='4T89MBSQX4Y1XAXIR5K' where id=3; -update noar ti set v0='4T89MBSQX4Y1XAXIR5K' where id=3; -update noar tt set b2='G0UODU6X2' where id=3; -update noar ti set b2='G0UODU6X2' where id=3; -update noar tt set v0='V1E892GQM7C' where id=4; -update noar ti set v0='V1E892GQM7C' where id=4; -update noar tt set b0='9JXWQ23T12LV19QR4FSR05NJUG7Z1' where id=4; -update noar ti set b0='9JXWQ23T12LV19QR4FSR05NJUG7Z1' where id=4; -update noar tt set v0='ON20R8CQRHNQZ77FB8EFU7' where id=4; -update noar ti set v0='ON20R8CQRHNQZ77FB8EFU7' where id=4; -update noar tt set b1='WKCILNMWE' where id=4; -update noar ti set b1='WKCILNMWE' where id=4; -update noar tt set v0='CAG79E0VZSTYT8FV4L57QBZW254VQC' where id=4; -update noar ti set v0='CAG79E0VZSTYT8FV4L57QBZW254VQC' where id=4; -update noar tt set b2='ZZES' where id=4; -update noar ti set b2='ZZES' where id=4; -update noar tt set v0='5177KRLJE8A88Y' where id=5; -update noar ti set v0='5177KRLJE8A88Y' where id=5; -update noar tt set b0='IBQOC6IEUZOG9XSE0O' where id=5; -update noar ti set b0='IBQOC6IEUZOG9XSE0O' where id=5; -update noar tt set v0='HSQFU67S8' where id=5; -update noar ti set v0='HSQFU67S8' where id=5; -update noar tt set b1='I2A1Q407V035WOO5QMROCG4WX36' where id=5; -update noar ti set b1='I2A1Q407V035WOO5QMROCG4WX36' where id=5; -update noar tt set v0='Z6NG1V' where id=5; -update noar ti set v0='Z6NG1V' where id=5; -update noar tt set b2='IY' where id=5; -update noar ti set b2='IY' where id=5; -update noar tt set v0='PLBB4761ZE7LKWWB9OJB0PE8LL2' where id=6; -update noar ti set v0='PLBB4761ZE7LKWWB9OJB0PE8LL2' where id=6; -update noar tt set b0='U5SF53IXVDSGP8DHZEQJS3TXDK6P6WT' where id=6; -update noar ti set b0='U5SF53IXVDSGP8DHZEQJS3TXDK6P6WT' where id=6; -update noar tt set v0='NW0S3C80CMUUZM' where id=6; -update noar ti set v0='NW0S3C80CMUUZM' where id=6; -update noar tt set b1='DLUV6C4WIM975V0MLRPO48AS823' where id=6; -update noar ti set b1='DLUV6C4WIM975V0MLRPO48AS823' where id=6; -update noar tt set v0='1QBC8O' where id=6; -update noar ti set v0='1QBC8O' where id=6; -update noar tt set b2='0FZ' where id=6; -update noar ti set b2='0FZ' where id=6; -update noar tt set v0='9LE15NXZI10678H8L6THV7KNR7D8' where id=7; -update noar ti set v0='9LE15NXZI10678H8L6THV7KNR7D8' where id=7; -update noar tt set b0='O85BM8AS9SCT30PN692IKLM5TXWC5' where id=7; -update noar ti set b0='O85BM8AS9SCT30PN692IKLM5TXWC5' where id=7; -update noar tt set v0='PJCU1IE1TVVOUUT6EGK915ESWBZ8T72C' where id=7; -update noar ti set v0='PJCU1IE1TVVOUUT6EGK915ESWBZ8T72C' where id=7; -update noar tt set b1='WDYAF2QLMI8N4PRE2Y9Z5ID' where id=7; -update noar ti set b1='WDYAF2QLMI8N4PRE2Y9Z5ID' where id=7; -update noar tt set v0='EQOHMW92S' where id=7; -update noar ti set v0='EQOHMW92S' where id=7; -update noar tt set b2='9' where id=7; -update noar ti set b2='9' where id=7; -update noar tt set v0='62OH6UO4VUEW' where id=8; -update noar ti set v0='62OH6UO4VUEW' where id=8; -update noar tt set b0='L35XMXLPG7ZHIJYHT' where id=8; -update noar ti set b0='L35XMXLPG7ZHIJYHT' where id=8; -update noar tt set v0='TYIUK6QWJDUGL2Z8SPV9' where id=8; -update noar ti set v0='TYIUK6QWJDUGL2Z8SPV9' where id=8; -update noar tt set b1='LTA3GALWTJY' where id=8; -update noar ti set b1='LTA3GALWTJY' where id=8; -update noar tt set v0='9X1U8QM2IBGPXWDZT8' where id=8; -update noar ti set v0='9X1U8QM2IBGPXWDZT8' where id=8; -update noar tt set b2='93JXB6XEK28V84C6AYG' where id=8; -update noar ti set b2='93JXB6XEK28V84C6AYG' where id=8; -update noar tt set v0='PL4OJKK0LRZB6T' where id=9; -update noar ti set v0='PL4OJKK0LRZB6T' where id=9; -update noar tt set b0='T3' where id=9; -update noar ti set b0='T3' where id=9; -update noar tt set v0='SLAD3CQNTN' where id=9; -update noar ti set v0='SLAD3CQNTN' where id=9; -update noar tt set b1='U1A6UKP2DBFBEJ' where id=9; -update noar ti set b1='U1A6UKP2DBFBEJ' where id=9; -update noar tt set v0='M' where id=9; -update noar ti set v0='M' where id=9; -update noar tt set b2='VMPGNADCAKOAFDZV0JG3' where id=9; -update noar ti set b2='VMPGNADCAKOAFDZV0JG3' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -v0 varchar(256) not null, -b0 blob not null, -b1 mediumblob not null, -b2 longblob not null -) engine=tokudb; -insert into tt values (1,'','','',''); -insert into tt values (2,'','','',''); -insert into tt values (3,'','','',''); -insert into tt values (4,'','','',''); -insert into tt values (5,'','','',''); -insert into tt values (6,'','','',''); -insert into tt values (7,'','','',''); -insert into tt values (8,'','','',''); -insert into tt values (9,'','','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='D4STS4Y22S6OSYQC41785C2QVEKPYZ1' where id=1; -update noar ti set v0='D4STS4Y22S6OSYQC41785C2QVEKPYZ1' where id=1; -update noar tt set b0='4SY57CZZ919S8' where id=1; -update noar ti set b0='4SY57CZZ919S8' where id=1; -update noar tt set v0='FYGV7TTNG89MA3' where id=1; -update noar ti set v0='FYGV7TTNG89MA3' where id=1; -update noar tt set b1='99Q6LWKXGAUEIVKIQD' where id=1; -update noar ti set b1='99Q6LWKXGAUEIVKIQD' where id=1; -update noar tt set v0='GFQBZVQAA8' where id=1; -update noar ti set v0='GFQBZVQAA8' where id=1; -update noar tt set b2='71MKMYGPUXXVRQ5EBSZAK9UW74N11S' where id=1; -update noar ti set b2='71MKMYGPUXXVRQ5EBSZAK9UW74N11S' where id=1; -update noar tt set v0='EN3M9MLFKSB4GBD73CFODHSWTF0389V' where id=2; -update noar ti set v0='EN3M9MLFKSB4GBD73CFODHSWTF0389V' where id=2; -update noar tt set b0='L8BLUP7QNSHKQI1453VA7LFC' where id=2; -update noar ti set b0='L8BLUP7QNSHKQI1453VA7LFC' where id=2; -update noar tt set v0='1R588Z32TGHHVCAP5FS7' where id=2; -update noar ti set v0='1R588Z32TGHHVCAP5FS7' where id=2; -update noar tt set b1='SYOP93XOTWW78135' where id=2; -update noar ti set b1='SYOP93XOTWW78135' where id=2; -update noar tt set v0='O3UVEPGTAD904ZO9B1ZWMSU7TMS' where id=2; -update noar ti set v0='O3UVEPGTAD904ZO9B1ZWMSU7TMS' where id=2; -update noar tt set b2='R8ER' where id=2; -update noar ti set b2='R8ER' where id=2; -update noar tt set v0='N7SWDTOCBSEE37ZMC4AZJUXIY46J' where id=3; -update noar ti set v0='N7SWDTOCBSEE37ZMC4AZJUXIY46J' where id=3; -update noar tt set b0='XAPAUQN26W4FPKARN4GGI8' where id=3; -update noar ti set b0='XAPAUQN26W4FPKARN4GGI8' where id=3; -update noar tt set v0='1DHU0TR' where id=3; -update noar ti set v0='1DHU0TR' where id=3; -update noar tt set b1='Y4K' where id=3; -update noar ti set b1='Y4K' where id=3; -update noar tt set v0='5GU5RMJ96AL9CE8C4P4RQGFJ6SW5D' where id=3; -update noar ti set v0='5GU5RMJ96AL9CE8C4P4RQGFJ6SW5D' where id=3; -update noar tt set b2='QMLMDLLRLH03PLA2OS5ESUJ' where id=3; -update noar ti set b2='QMLMDLLRLH03PLA2OS5ESUJ' where id=3; -update noar tt set v0='W590ZYAPRPVYBMM2LW' where id=4; -update noar ti set v0='W590ZYAPRPVYBMM2LW' where id=4; -update noar tt set b0='R54VXUSTNPYPE2HZRR3HDMF' where id=4; -update noar ti set b0='R54VXUSTNPYPE2HZRR3HDMF' where id=4; -update noar tt set v0='0W4D' where id=4; -update noar ti set v0='0W4D' where id=4; -update noar tt set b1='DAAVXWG4NNKB7NTJCQUR79U8' where id=4; -update noar ti set b1='DAAVXWG4NNKB7NTJCQUR79U8' where id=4; -update noar tt set v0='4RG1K3RZ8RFEXD4DLVPH5T' where id=4; -update noar ti set v0='4RG1K3RZ8RFEXD4DLVPH5T' where id=4; -update noar tt set b2='6' where id=4; -update noar ti set b2='6' where id=4; -update noar tt set v0='40X12J923KO56NXU0T0' where id=5; -update noar ti set v0='40X12J923KO56NXU0T0' where id=5; -update noar tt set b0='DCODQP23MTI8YXLHBAI2T9RHM0Q' where id=5; -update noar ti set b0='DCODQP23MTI8YXLHBAI2T9RHM0Q' where id=5; -update noar tt set v0='FPE7A' where id=5; -update noar ti set v0='FPE7A' where id=5; -update noar tt set b1='XBE4X' where id=5; -update noar ti set b1='XBE4X' where id=5; -update noar tt set v0='KY65MW6D5XG53FSSUP' where id=5; -update noar ti set v0='KY65MW6D5XG53FSSUP' where id=5; -update noar tt set b2='MXESE8WMUTTJFL' where id=5; -update noar ti set b2='MXESE8WMUTTJFL' where id=5; -update noar tt set v0='S0VDZKMDF8N9FY5W978PB1UE170KQ7' where id=6; -update noar ti set v0='S0VDZKMDF8N9FY5W978PB1UE170KQ7' where id=6; -update noar tt set b0='7ORGOKVV2NT04TEZOGK0' where id=6; -update noar ti set b0='7ORGOKVV2NT04TEZOGK0' where id=6; -update noar tt set v0='5AKK7SVKK3L0KEX2DIUB86DRVZZ' where id=6; -update noar ti set v0='5AKK7SVKK3L0KEX2DIUB86DRVZZ' where id=6; -update noar tt set b1='5HC5QBGE904QY3BBAQ7VPSJ6IJ02' where id=6; -update noar ti set b1='5HC5QBGE904QY3BBAQ7VPSJ6IJ02' where id=6; -update noar tt set v0='R' where id=6; -update noar ti set v0='R' where id=6; -update noar tt set b2='YS6VKGTB7' where id=6; -update noar ti set b2='YS6VKGTB7' where id=6; -update noar tt set v0='T70NA4UCDVU4DDSRO4HQHYHF25D7V7T' where id=7; -update noar ti set v0='T70NA4UCDVU4DDSRO4HQHYHF25D7V7T' where id=7; -update noar tt set b0='1UDPXO93HC9' where id=7; -update noar ti set b0='1UDPXO93HC9' where id=7; -update noar tt set v0='JYTX1E7V7LYKT19FGSAM9GJ002D0U6R' where id=7; -update noar ti set v0='JYTX1E7V7LYKT19FGSAM9GJ002D0U6R' where id=7; -update noar tt set b1='G1RM1UN07Z0N1PQHSZAJX' where id=7; -update noar ti set b1='G1RM1UN07Z0N1PQHSZAJX' where id=7; -update noar tt set v0='7QWYFDXB021BDE8BSLNE' where id=7; -update noar ti set v0='7QWYFDXB021BDE8BSLNE' where id=7; -update noar tt set b2='KU3T9K2I2YZ58' where id=7; -update noar ti set b2='KU3T9K2I2YZ58' where id=7; -update noar tt set v0='VG62AB9BGU50JRB6A5R3C464' where id=8; -update noar ti set v0='VG62AB9BGU50JRB6A5R3C464' where id=8; -update noar tt set b0='RCO0EA59FPU30VC2' where id=8; -update noar ti set b0='RCO0EA59FPU30VC2' where id=8; -update noar tt set v0='X8SUP8E2WZJO3' where id=8; -update noar ti set v0='X8SUP8E2WZJO3' where id=8; -update noar tt set b1='P1W2OJAT662F5255HI7UAZVMWUNQ' where id=8; -update noar ti set b1='P1W2OJAT662F5255HI7UAZVMWUNQ' where id=8; -update noar tt set v0='KCSS48BU9' where id=8; -update noar ti set v0='KCSS48BU9' where id=8; -update noar tt set b2='ZT' where id=8; -update noar ti set b2='ZT' where id=8; -update noar tt set v0='TCPKI958Q6QI6U6' where id=9; -update noar ti set v0='TCPKI958Q6QI6U6' where id=9; -update noar tt set b0='IZZQZTSHCYDH9Y5ESAG' where id=9; -update noar ti set b0='IZZQZTSHCYDH9Y5ESAG' where id=9; -update noar tt set v0='OF51YVXAL11ZZ9SEZKQ' where id=9; -update noar ti set v0='OF51YVXAL11ZZ9SEZKQ' where id=9; -update noar tt set b1='O0YBO6NQA6VJTYK3X0BJY' where id=9; -update noar ti set b1='O0YBO6NQA6VJTYK3X0BJY' where id=9; -update noar tt set v0='G9M5NYCUZVL7S1KPGTO9J' where id=9; -update noar ti set v0='G9M5NYCUZVL7S1KPGTO9J' where id=9; -update noar tt set b2='YOI0MS8I0XG8XXPSL' where id=9; -update noar ti set b2='YOI0MS8I0XG8XXPSL' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -v0 varchar(32) null, -b0 blob null, -b1 longblob null, -b2 tinyblob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='W3D1' where id=1; -update noar ti set v0='W3D1' where id=1; -update noar tt set b0='NW4UR2' where id=1; -update noar ti set b0='NW4UR2' where id=1; -update noar tt set v0='7BDA9R8SXP9EVSY3I3HUQUCSYH0W9J2' where id=1; -update noar ti set v0='7BDA9R8SXP9EVSY3I3HUQUCSYH0W9J2' where id=1; -update noar tt set b1='P80BRBLSVBXL8ZS1O' where id=1; -update noar ti set b1='P80BRBLSVBXL8ZS1O' where id=1; -update noar tt set v0='WB6GQSIN0E6IBPKM9JXO38' where id=1; -update noar ti set v0='WB6GQSIN0E6IBPKM9JXO38' where id=1; -update noar tt set b2='N18KZ895FSVRKJGVRNGOL5' where id=1; -update noar ti set b2='N18KZ895FSVRKJGVRNGOL5' where id=1; -update noar tt set v0='Y1APWUU4HMWTRJYZ5HE2Q6' where id=2; -update noar ti set v0='Y1APWUU4HMWTRJYZ5HE2Q6' where id=2; -update noar tt set b0='V' where id=2; -update noar ti set b0='V' where id=2; -update noar tt set v0='5UJRNA7DFS' where id=2; -update noar ti set v0='5UJRNA7DFS' where id=2; -update noar tt set b1='EM27SOMM28VMLWYU' where id=2; -update noar ti set b1='EM27SOMM28VMLWYU' where id=2; -update noar tt set v0='7KSN1PHCSD' where id=2; -update noar ti set v0='7KSN1PHCSD' where id=2; -update noar tt set b2='4TN6UMXDT1QX2' where id=2; -update noar ti set b2='4TN6UMXDT1QX2' where id=2; -update noar tt set v0='097X4G7M6RVHVMYW4K45YTYIVY' where id=3; -update noar ti set v0='097X4G7M6RVHVMYW4K45YTYIVY' where id=3; -update noar tt set b0='0KUFS61FOX3XMDQX649S2' where id=3; -update noar ti set b0='0KUFS61FOX3XMDQX649S2' where id=3; -update noar tt set v0='JMKIKZCCVS5' where id=3; -update noar ti set v0='JMKIKZCCVS5' where id=3; -update noar tt set b1='6EZS0XBVBQN16C6C0PVUC6D' where id=3; -update noar ti set b1='6EZS0XBVBQN16C6C0PVUC6D' where id=3; -update noar tt set v0='1VYA7XMQDAUEUBD5D1ECNWD' where id=3; -update noar ti set v0='1VYA7XMQDAUEUBD5D1ECNWD' where id=3; -update noar tt set b2='LI0AA6RKLGC8OBBPDLI8QQ99Q0M' where id=3; -update noar ti set b2='LI0AA6RKLGC8OBBPDLI8QQ99Q0M' where id=3; -update noar tt set v0='IA6Q3N9CINOCAVEF2YFH33EFQGN' where id=4; -update noar ti set v0='IA6Q3N9CINOCAVEF2YFH33EFQGN' where id=4; -update noar tt set b0='SJ503SX5X1JQ0L' where id=4; -update noar ti set b0='SJ503SX5X1JQ0L' where id=4; -update noar tt set v0='1JOWFC8D0JO534XYOW1I1UL' where id=4; -update noar ti set v0='1JOWFC8D0JO534XYOW1I1UL' where id=4; -update noar tt set b1='5L40LVPW1KB313G8PJLR' where id=4; -update noar ti set b1='5L40LVPW1KB313G8PJLR' where id=4; -update noar tt set v0='GEJ1' where id=4; -update noar ti set v0='GEJ1' where id=4; -update noar tt set b2='IBNNZ62T3RF' where id=4; -update noar ti set b2='IBNNZ62T3RF' where id=4; -update noar tt set v0='SSRSP14L4MNKCGNIKKPCVH' where id=5; -update noar ti set v0='SSRSP14L4MNKCGNIKKPCVH' where id=5; -update noar tt set b0='0W699XI0368CDW5NCRIR' where id=5; -update noar ti set b0='0W699XI0368CDW5NCRIR' where id=5; -update noar tt set v0='DX9QNU3B5CLFX' where id=5; -update noar ti set v0='DX9QNU3B5CLFX' where id=5; -update noar tt set b1='CLS6I' where id=5; -update noar ti set b1='CLS6I' where id=5; -update noar tt set v0='Z6YAS7L0RCB2' where id=5; -update noar ti set v0='Z6YAS7L0RCB2' where id=5; -update noar tt set b2='9IL' where id=5; -update noar ti set b2='9IL' where id=5; -update noar tt set v0='LLOY0XHJFYB35' where id=6; -update noar ti set v0='LLOY0XHJFYB35' where id=6; -update noar tt set b0='6FUHFYTH8ZG8UIBP5L' where id=6; -update noar ti set b0='6FUHFYTH8ZG8UIBP5L' where id=6; -update noar tt set v0='EY9VVC7KVAW' where id=6; -update noar ti set v0='EY9VVC7KVAW' where id=6; -update noar tt set b1='7YWRQ0CFYB' where id=6; -update noar ti set b1='7YWRQ0CFYB' where id=6; -update noar tt set v0='XG4FGAX6HCLSS87YSKIW' where id=6; -update noar ti set v0='XG4FGAX6HCLSS87YSKIW' where id=6; -update noar tt set b2='N5VRJHXH37Q6E941O8CNTA' where id=6; -update noar ti set b2='N5VRJHXH37Q6E941O8CNTA' where id=6; -update noar tt set v0='M0RXIQ4FRB' where id=7; -update noar ti set v0='M0RXIQ4FRB' where id=7; -update noar tt set b0='MOYBU9678MWW8MXKIAVSM27' where id=7; -update noar ti set b0='MOYBU9678MWW8MXKIAVSM27' where id=7; -update noar tt set v0='R1MCR' where id=7; -update noar ti set v0='R1MCR' where id=7; -update noar tt set b1='JERUHLL069YF1RDPYZ91K0' where id=7; -update noar ti set b1='JERUHLL069YF1RDPYZ91K0' where id=7; -update noar tt set v0='6MAG1KCJ9B2UCBDJWHDGSVQK9X' where id=7; -update noar ti set v0='6MAG1KCJ9B2UCBDJWHDGSVQK9X' where id=7; -update noar tt set b2='B1QH7OVT76QXWLYKP34LHA2TZ84Q5' where id=7; -update noar ti set b2='B1QH7OVT76QXWLYKP34LHA2TZ84Q5' where id=7; -update noar tt set v0='SMELCFPT2798867DMXG' where id=8; -update noar ti set v0='SMELCFPT2798867DMXG' where id=8; -update noar tt set b0='E43X8I2HALLCB7BYPZXE08K1XJA' where id=8; -update noar ti set b0='E43X8I2HALLCB7BYPZXE08K1XJA' where id=8; -update noar tt set v0='3AN4R4IV3NQ8NWD7RS3KD5GDLRZQ72V' where id=8; -update noar ti set v0='3AN4R4IV3NQ8NWD7RS3KD5GDLRZQ72V' where id=8; -update noar tt set b1='ROWAUYQHDW8T6XJQ3' where id=8; -update noar ti set b1='ROWAUYQHDW8T6XJQ3' where id=8; -update noar tt set v0='WIRKB86IJC8' where id=8; -update noar ti set v0='WIRKB86IJC8' where id=8; -update noar tt set b2='Z35FP' where id=8; -update noar ti set b2='Z35FP' where id=8; -update noar tt set v0='D15WVM2' where id=9; -update noar ti set v0='D15WVM2' where id=9; -update noar tt set b0='ECZ3DIL1J8T65A3JW78T5TTC9VQY2R' where id=9; -update noar ti set b0='ECZ3DIL1J8T65A3JW78T5TTC9VQY2R' where id=9; -update noar tt set v0='189ZNQIKHXX6BALO6' where id=9; -update noar ti set v0='189ZNQIKHXX6BALO6' where id=9; -update noar tt set b1='WCHR8091EGNW8BTBD3NK0V' where id=9; -update noar ti set b1='WCHR8091EGNW8BTBD3NK0V' where id=9; -update noar tt set v0='W' where id=9; -update noar ti set v0='W' where id=9; -update noar tt set b2='VAZ5YWRGXYHEFPUU0' where id=9; -update noar ti set b2='VAZ5YWRGXYHEFPUU0' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -v0 varchar(256) null, -b0 blob null, -b1 longblob null, -b2 tinyblob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='YH64NY9U' where id=1; -update noar ti set v0='YH64NY9U' where id=1; -update noar tt set b0='RR38BT' where id=1; -update noar ti set b0='RR38BT' where id=1; -update noar tt set v0='NKX6CPE163GGGVJRJSEDHS4YM0258' where id=1; -update noar ti set v0='NKX6CPE163GGGVJRJSEDHS4YM0258' where id=1; -update noar tt set b1='EU' where id=1; -update noar ti set b1='EU' where id=1; -update noar tt set v0='HLC3HNO2IKJ1UV8W' where id=1; -update noar ti set v0='HLC3HNO2IKJ1UV8W' where id=1; -update noar tt set b2='0HM1VTUJ12P4J4CTNKA6SY2' where id=1; -update noar ti set b2='0HM1VTUJ12P4J4CTNKA6SY2' where id=1; -update noar tt set v0='18ETIZ3E6F93FU84W51VHGYM6NS' where id=2; -update noar ti set v0='18ETIZ3E6F93FU84W51VHGYM6NS' where id=2; -update noar tt set b0='BILQMTVKEQ9CRPKHWMGMUEWVGLQ' where id=2; -update noar ti set b0='BILQMTVKEQ9CRPKHWMGMUEWVGLQ' where id=2; -update noar tt set v0='88A4ODH' where id=2; -update noar ti set v0='88A4ODH' where id=2; -update noar tt set b1='94MTRTJJVTC' where id=2; -update noar ti set b1='94MTRTJJVTC' where id=2; -update noar tt set v0='JFDTQMBHNLEJ42ZOGGPZ5R3HRGK3Y' where id=2; -update noar ti set v0='JFDTQMBHNLEJ42ZOGGPZ5R3HRGK3Y' where id=2; -update noar tt set b2='DURD5KT0W8H5M49VWDF2UCHZVX33LOQD' where id=2; -update noar ti set b2='DURD5KT0W8H5M49VWDF2UCHZVX33LOQD' where id=2; -update noar tt set v0='9' where id=3; -update noar ti set v0='9' where id=3; -update noar tt set b0='KBLNGYHVHAU2YLFQAN980Y' where id=3; -update noar ti set b0='KBLNGYHVHAU2YLFQAN980Y' where id=3; -update noar tt set v0='W7W6LJPCCB' where id=3; -update noar ti set v0='W7W6LJPCCB' where id=3; -update noar tt set b1='K45M1DUF0JY5R6OD' where id=3; -update noar ti set b1='K45M1DUF0JY5R6OD' where id=3; -update noar tt set v0='R5O9TPZFVTSE0YCRLG3ZND' where id=3; -update noar ti set v0='R5O9TPZFVTSE0YCRLG3ZND' where id=3; -update noar tt set b2='C' where id=3; -update noar ti set b2='C' where id=3; -update noar tt set v0='SNON9BJKO0FVNWZPL48T' where id=4; -update noar ti set v0='SNON9BJKO0FVNWZPL48T' where id=4; -update noar tt set b0='XCVG7WYCBJONSOWW4XUNFTYUW50VFBZ' where id=4; -update noar ti set b0='XCVG7WYCBJONSOWW4XUNFTYUW50VFBZ' where id=4; -update noar tt set v0='HBBQW53XQ1RR' where id=4; -update noar ti set v0='HBBQW53XQ1RR' where id=4; -update noar tt set b1='DQB8E49P1W6H9QIK' where id=4; -update noar ti set b1='DQB8E49P1W6H9QIK' where id=4; -update noar tt set v0='9Y6H2HO7YYT5QF2X8F5WR04BBSD01E' where id=4; -update noar ti set v0='9Y6H2HO7YYT5QF2X8F5WR04BBSD01E' where id=4; -update noar tt set b2='7KY5FMYCP15NQUQBP0XIOCU6SV7HK7' where id=4; -update noar ti set b2='7KY5FMYCP15NQUQBP0XIOCU6SV7HK7' where id=4; -update noar tt set v0='BBTODGJ' where id=5; -update noar ti set v0='BBTODGJ' where id=5; -update noar tt set b0='VMDK086MGTLYAOMCE' where id=5; -update noar ti set b0='VMDK086MGTLYAOMCE' where id=5; -update noar tt set v0='L7GYHHMF4R9FZ9KFIRIDZM' where id=5; -update noar ti set v0='L7GYHHMF4R9FZ9KFIRIDZM' where id=5; -update noar tt set b1='2P88KOIGR7MY' where id=5; -update noar ti set b1='2P88KOIGR7MY' where id=5; -update noar tt set v0='5O20RQK1PINZB6J' where id=5; -update noar ti set v0='5O20RQK1PINZB6J' where id=5; -update noar tt set b2='U2R9M0LSUE7DNB5MC75CS1JUJLLHAW' where id=5; -update noar ti set b2='U2R9M0LSUE7DNB5MC75CS1JUJLLHAW' where id=5; -update noar tt set v0='L58AJTUVD60C96X' where id=6; -update noar ti set v0='L58AJTUVD60C96X' where id=6; -update noar tt set b0='H10Q841WMLAFAKZ4SGETZWS131PNR' where id=6; -update noar ti set b0='H10Q841WMLAFAKZ4SGETZWS131PNR' where id=6; -update noar tt set v0='AZ5M' where id=6; -update noar ti set v0='AZ5M' where id=6; -update noar tt set b1='ENY89A15IMOFBYYSJ' where id=6; -update noar ti set b1='ENY89A15IMOFBYYSJ' where id=6; -update noar tt set v0='Z06N0WPDNNVOPI4UFOAD5D46C1TZFEJ0' where id=6; -update noar ti set v0='Z06N0WPDNNVOPI4UFOAD5D46C1TZFEJ0' where id=6; -update noar tt set b2='GT1JSITR' where id=6; -update noar ti set b2='GT1JSITR' where id=6; -update noar tt set v0='U2YUCZLNDR2YAMZSNNMUINV6S' where id=7; -update noar ti set v0='U2YUCZLNDR2YAMZSNNMUINV6S' where id=7; -update noar tt set b0='U06GT692Z346ACL' where id=7; -update noar ti set b0='U06GT692Z346ACL' where id=7; -update noar tt set v0='P42SNGTI79NF2XS2VJ196RW' where id=7; -update noar ti set v0='P42SNGTI79NF2XS2VJ196RW' where id=7; -update noar tt set b1='2K80FM' where id=7; -update noar ti set b1='2K80FM' where id=7; -update noar tt set v0='QH2JLVUJMZ6J4CTRE3SLZ2FFXZS9' where id=7; -update noar ti set v0='QH2JLVUJMZ6J4CTRE3SLZ2FFXZS9' where id=7; -update noar tt set b2='C1NSCK7HGCFX24JEXYY415ALP2IY614' where id=7; -update noar ti set b2='C1NSCK7HGCFX24JEXYY415ALP2IY614' where id=7; -update noar tt set v0='ZPV5U0HHTWT7CZJ2I92MJW6WMW35NOD' where id=8; -update noar ti set v0='ZPV5U0HHTWT7CZJ2I92MJW6WMW35NOD' where id=8; -update noar tt set b0='QWCJ' where id=8; -update noar ti set b0='QWCJ' where id=8; -update noar tt set v0='LNP5V07PTG7VIB2HOW' where id=8; -update noar ti set v0='LNP5V07PTG7VIB2HOW' where id=8; -update noar tt set b1='ZRBVWSI60R' where id=8; -update noar ti set b1='ZRBVWSI60R' where id=8; -update noar tt set v0='QMX2A4KSPQI7' where id=8; -update noar ti set v0='QMX2A4KSPQI7' where id=8; -update noar tt set b2='TQU36XQQUZHUG4JCIN9URC5KHMTQFBU' where id=8; -update noar ti set b2='TQU36XQQUZHUG4JCIN9URC5KHMTQFBU' where id=8; -update noar tt set v0='F6UHBY' where id=9; -update noar ti set v0='F6UHBY' where id=9; -update noar tt set b0='SB7' where id=9; -update noar ti set b0='SB7' where id=9; -update noar tt set v0='9' where id=9; -update noar ti set v0='9' where id=9; -update noar tt set b1='UD6QKFLGWZNM' where id=9; -update noar ti set b1='UD6QKFLGWZNM' where id=9; -update noar tt set v0='8FUULV1WBLAHJLMEXQXX3EO1L' where id=9; -update noar ti set v0='8FUULV1WBLAHJLMEXQXX3EO1L' where id=9; -update noar tt set b2='1THJ07X0RGYY6AUA2OG' where id=9; -update noar ti set b2='1THJ07X0RGYY6AUA2OG' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -v0 varchar(32) not null, -b0 blob not null, -b1 longblob not null, -b2 tinyblob not null -) engine=tokudb; -insert into tt values (1,'','','',''); -insert into tt values (2,'','','',''); -insert into tt values (3,'','','',''); -insert into tt values (4,'','','',''); -insert into tt values (5,'','','',''); -insert into tt values (6,'','','',''); -insert into tt values (7,'','','',''); -insert into tt values (8,'','','',''); -insert into tt values (9,'','','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='986XRLWGCM1D1BL5ARMAH610IJYX' where id=1; -update noar ti set v0='986XRLWGCM1D1BL5ARMAH610IJYX' where id=1; -update noar tt set b0='94YFTUE5N2' where id=1; -update noar ti set b0='94YFTUE5N2' where id=1; -update noar tt set v0='EY0W1H85X8ATC5GCXT' where id=1; -update noar ti set v0='EY0W1H85X8ATC5GCXT' where id=1; -update noar tt set b1='581CZZJVJ8FWX0K9KP4UHRUU' where id=1; -update noar ti set b1='581CZZJVJ8FWX0K9KP4UHRUU' where id=1; -update noar tt set v0='V69X0H76WYYW7J66AZSRJ5H4AJSDP' where id=1; -update noar ti set v0='V69X0H76WYYW7J66AZSRJ5H4AJSDP' where id=1; -update noar tt set b2='Z2F0L81QOCQWX3VXQEYQ7P97OBXCKUYN' where id=1; -update noar ti set b2='Z2F0L81QOCQWX3VXQEYQ7P97OBXCKUYN' where id=1; -update noar tt set v0='7FKHVA' where id=2; -update noar ti set v0='7FKHVA' where id=2; -update noar tt set b0='5GLF78' where id=2; -update noar ti set b0='5GLF78' where id=2; -update noar tt set v0='9TC676IJKGLAT' where id=2; -update noar ti set v0='9TC676IJKGLAT' where id=2; -update noar tt set b1='R1RZVZ8TFI0I83ELZ' where id=2; -update noar ti set b1='R1RZVZ8TFI0I83ELZ' where id=2; -update noar tt set v0='F88OJO4O4ZBWB4KD0L58ERS' where id=2; -update noar ti set v0='F88OJO4O4ZBWB4KD0L58ERS' where id=2; -update noar tt set b2='E41IAT6E6LF4' where id=2; -update noar ti set b2='E41IAT6E6LF4' where id=2; -update noar tt set v0='OPNXA' where id=3; -update noar ti set v0='OPNXA' where id=3; -update noar tt set b0='Z3SY941D3RL50F4U1S0PF8A6O7DZM' where id=3; -update noar ti set b0='Z3SY941D3RL50F4U1S0PF8A6O7DZM' where id=3; -update noar tt set v0='CJB9UP7T5GGN8' where id=3; -update noar ti set v0='CJB9UP7T5GGN8' where id=3; -update noar tt set b1='NM65Q5B' where id=3; -update noar ti set b1='NM65Q5B' where id=3; -update noar tt set v0='KCZJIBBRCB4PH67N6YOEBHQCK6Z045' where id=3; -update noar ti set v0='KCZJIBBRCB4PH67N6YOEBHQCK6Z045' where id=3; -update noar tt set b2='5KN7AH7L5V8UXMXNWPI5ML842E23E6N' where id=3; -update noar ti set b2='5KN7AH7L5V8UXMXNWPI5ML842E23E6N' where id=3; -update noar tt set v0='N7IO' where id=4; -update noar ti set v0='N7IO' where id=4; -update noar tt set b0='48VSL095DE50O9D17C9SZ' where id=4; -update noar ti set b0='48VSL095DE50O9D17C9SZ' where id=4; -update noar tt set v0='5IQZ11C15I5CNSU3R4TJ4V0N' where id=4; -update noar ti set v0='5IQZ11C15I5CNSU3R4TJ4V0N' where id=4; -update noar tt set b1='18V7R4BW21EQYS32A' where id=4; -update noar ti set b1='18V7R4BW21EQYS32A' where id=4; -update noar tt set v0='UZAT3GVSL39' where id=4; -update noar ti set v0='UZAT3GVSL39' where id=4; -update noar tt set b2='6L' where id=4; -update noar ti set b2='6L' where id=4; -update noar tt set v0='LLNGSB0QYM93HY4AT8UVLM1MWRNQGQZI' where id=5; -update noar ti set v0='LLNGSB0QYM93HY4AT8UVLM1MWRNQGQZI' where id=5; -update noar tt set b0='GLSNRVFRSRQXYVLKE1T8' where id=5; -update noar ti set b0='GLSNRVFRSRQXYVLKE1T8' where id=5; -update noar tt set v0='GRJNION06' where id=5; -update noar ti set v0='GRJNION06' where id=5; -update noar tt set b1='KE5ALKTNQ9A0CXGSLEYU81FHZ3JOPW' where id=5; -update noar ti set b1='KE5ALKTNQ9A0CXGSLEYU81FHZ3JOPW' where id=5; -update noar tt set v0='Q01OTS0PVFH9HIHQSJZQZ8' where id=5; -update noar ti set v0='Q01OTS0PVFH9HIHQSJZQZ8' where id=5; -update noar tt set b2='F26QVU1341F48MK9LYKLBFG8PSJLI' where id=5; -update noar ti set b2='F26QVU1341F48MK9LYKLBFG8PSJLI' where id=5; -update noar tt set v0='Y06YWYB3CXL' where id=6; -update noar ti set v0='Y06YWYB3CXL' where id=6; -update noar tt set b0='FSECC0IH4D29CR2TOOTPAA0AZ' where id=6; -update noar ti set b0='FSECC0IH4D29CR2TOOTPAA0AZ' where id=6; -update noar tt set v0='HTFHH265A1Q8T2XNQIVOCG9EWR' where id=6; -update noar ti set v0='HTFHH265A1Q8T2XNQIVOCG9EWR' where id=6; -update noar tt set b1='KPBI0Z' where id=6; -update noar ti set b1='KPBI0Z' where id=6; -update noar tt set v0='ST3' where id=6; -update noar ti set v0='ST3' where id=6; -update noar tt set b2='A43CB6HD82ECZFGW2BTY' where id=6; -update noar ti set b2='A43CB6HD82ECZFGW2BTY' where id=6; -update noar tt set v0='U747P33BX7' where id=7; -update noar ti set v0='U747P33BX7' where id=7; -update noar tt set b0='0DCO0MD03LPHGEZC' where id=7; -update noar ti set b0='0DCO0MD03LPHGEZC' where id=7; -update noar tt set v0='80IP1S6N5Q' where id=7; -update noar ti set v0='80IP1S6N5Q' where id=7; -update noar tt set b1='AASZOHBMBV3AV7QDC91CNR6JA6MAM' where id=7; -update noar ti set b1='AASZOHBMBV3AV7QDC91CNR6JA6MAM' where id=7; -update noar tt set v0='A2Q9E84ZH8TJPI9Y8RXD' where id=7; -update noar ti set v0='A2Q9E84ZH8TJPI9Y8RXD' where id=7; -update noar tt set b2='7W' where id=7; -update noar ti set b2='7W' where id=7; -update noar tt set v0='JW70XNS3WACV1DEN1YV' where id=8; -update noar ti set v0='JW70XNS3WACV1DEN1YV' where id=8; -update noar tt set b0='HRQU5OFHAR3DBTUF8P7X93QIPXCJ' where id=8; -update noar ti set b0='HRQU5OFHAR3DBTUF8P7X93QIPXCJ' where id=8; -update noar tt set v0='GOYJO1A2NUHTNS4MBK5FYNR' where id=8; -update noar ti set v0='GOYJO1A2NUHTNS4MBK5FYNR' where id=8; -update noar tt set b1='SJPT61WVH' where id=8; -update noar ti set b1='SJPT61WVH' where id=8; -update noar tt set v0='A6V8' where id=8; -update noar ti set v0='A6V8' where id=8; -update noar tt set b2='DM' where id=8; -update noar ti set b2='DM' where id=8; -update noar tt set v0='LLWPL' where id=9; -update noar ti set v0='LLWPL' where id=9; -update noar tt set b0='V' where id=9; -update noar ti set b0='V' where id=9; -update noar tt set v0='BRBICN7ST9C9UW3' where id=9; -update noar ti set v0='BRBICN7ST9C9UW3' where id=9; -update noar tt set b1='8XB198WG6THPO9' where id=9; -update noar ti set b1='8XB198WG6THPO9' where id=9; -update noar tt set v0='TV5FLWI261SAN9D4TBMFPQX' where id=9; -update noar ti set v0='TV5FLWI261SAN9D4TBMFPQX' where id=9; -update noar tt set b2='CIXKO76YX68RI2SZ73RF33' where id=9; -update noar ti set b2='CIXKO76YX68RI2SZ73RF33' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -v0 varchar(256) not null, -b0 blob not null, -b1 longblob not null, -b2 tinyblob not null -) engine=tokudb; -insert into tt values (1,'','','',''); -insert into tt values (2,'','','',''); -insert into tt values (3,'','','',''); -insert into tt values (4,'','','',''); -insert into tt values (5,'','','',''); -insert into tt values (6,'','','',''); -insert into tt values (7,'','','',''); -insert into tt values (8,'','','',''); -insert into tt values (9,'','','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='NF14KYZASFOQDEPBI3GP' where id=1; -update noar ti set v0='NF14KYZASFOQDEPBI3GP' where id=1; -update noar tt set b0='PMRRK6N3SOOJ9CJ9HDXJ5H1LDTLKJ0' where id=1; -update noar ti set b0='PMRRK6N3SOOJ9CJ9HDXJ5H1LDTLKJ0' where id=1; -update noar tt set v0='MPZIB5XF7RSN' where id=1; -update noar ti set v0='MPZIB5XF7RSN' where id=1; -update noar tt set b1='ORX2M3L1' where id=1; -update noar ti set b1='ORX2M3L1' where id=1; -update noar tt set v0='MLYP43DDF2SFHAWUC7XF73ZNVHWFDV' where id=1; -update noar ti set v0='MLYP43DDF2SFHAWUC7XF73ZNVHWFDV' where id=1; -update noar tt set b2='1SQOK28T7K4ALP440E8' where id=1; -update noar ti set b2='1SQOK28T7K4ALP440E8' where id=1; -update noar tt set v0='5E6WJRQT070BJ' where id=2; -update noar ti set v0='5E6WJRQT070BJ' where id=2; -update noar tt set b0='UMT6119EMTCMJ543017BNUC' where id=2; -update noar ti set b0='UMT6119EMTCMJ543017BNUC' where id=2; -update noar tt set v0='VSR1' where id=2; -update noar ti set v0='VSR1' where id=2; -update noar tt set b1='EWCBRHITKUFVAFYY1XQBF7PL50' where id=2; -update noar ti set b1='EWCBRHITKUFVAFYY1XQBF7PL50' where id=2; -update noar tt set v0='KWZC7B0V54ZG8LMZ7CG3WRMKKI6HLIY' where id=2; -update noar ti set v0='KWZC7B0V54ZG8LMZ7CG3WRMKKI6HLIY' where id=2; -update noar tt set b2='H6TM4KZ7KC2JF7ZRII66' where id=2; -update noar ti set b2='H6TM4KZ7KC2JF7ZRII66' where id=2; -update noar tt set v0='RGFKPI867BCFYV7GBXMULV60' where id=3; -update noar ti set v0='RGFKPI867BCFYV7GBXMULV60' where id=3; -update noar tt set b0='OZLV4KMXVIAVIRFK1AEM6' where id=3; -update noar ti set b0='OZLV4KMXVIAVIRFK1AEM6' where id=3; -update noar tt set v0='Q5' where id=3; -update noar ti set v0='Q5' where id=3; -update noar tt set b1='2KQR' where id=3; -update noar ti set b1='2KQR' where id=3; -update noar tt set v0='FB' where id=3; -update noar ti set v0='FB' where id=3; -update noar tt set b2='LEJ1Q9D8GBNJQCP3KZJMEELON9' where id=3; -update noar ti set b2='LEJ1Q9D8GBNJQCP3KZJMEELON9' where id=3; -update noar tt set v0='40' where id=4; -update noar ti set v0='40' where id=4; -update noar tt set b0='OTE' where id=4; -update noar ti set b0='OTE' where id=4; -update noar tt set v0='W6168IS' where id=4; -update noar ti set v0='W6168IS' where id=4; -update noar tt set b1='SRNZQ6' where id=4; -update noar ti set b1='SRNZQ6' where id=4; -update noar tt set v0='U29DYKN3G3ORH117R' where id=4; -update noar ti set v0='U29DYKN3G3ORH117R' where id=4; -update noar tt set b2='68AO3EQUGKQNI5NZF' where id=4; -update noar ti set b2='68AO3EQUGKQNI5NZF' where id=4; -update noar tt set v0='PAY2M9QY779U8PJ77VUBR6L4ZDX' where id=5; -update noar ti set v0='PAY2M9QY779U8PJ77VUBR6L4ZDX' where id=5; -update noar tt set b0='4MXBY5PMSU27EVP3AYAU5C' where id=5; -update noar ti set b0='4MXBY5PMSU27EVP3AYAU5C' where id=5; -update noar tt set v0='2B3F569G60IPIGZZ' where id=5; -update noar ti set v0='2B3F569G60IPIGZZ' where id=5; -update noar tt set b1='R808AHMGY278OQT87DTV97U3PNR' where id=5; -update noar ti set b1='R808AHMGY278OQT87DTV97U3PNR' where id=5; -update noar tt set v0='NXX19CEDDR5NWD6P2YN1H6G' where id=5; -update noar ti set v0='NXX19CEDDR5NWD6P2YN1H6G' where id=5; -update noar tt set b2='FISCIQ4V1TTHQ9V' where id=5; -update noar ti set b2='FISCIQ4V1TTHQ9V' where id=5; -update noar tt set v0='77U0QMWNPVQRNMKO954D' where id=6; -update noar ti set v0='77U0QMWNPVQRNMKO954D' where id=6; -update noar tt set b0='QVGAE64L' where id=6; -update noar ti set b0='QVGAE64L' where id=6; -update noar tt set v0='RORCU7BQMYBXPKFRFAF4SD0AIYQ2A9' where id=6; -update noar ti set v0='RORCU7BQMYBXPKFRFAF4SD0AIYQ2A9' where id=6; -update noar tt set b1='5DUZ2KLQ4G0D9AXJ226' where id=6; -update noar ti set b1='5DUZ2KLQ4G0D9AXJ226' where id=6; -update noar tt set v0='N5A' where id=6; -update noar ti set v0='N5A' where id=6; -update noar tt set b2='1CQ' where id=6; -update noar ti set b2='1CQ' where id=6; -update noar tt set v0='TG0YYIIUKEE1JF' where id=7; -update noar ti set v0='TG0YYIIUKEE1JF' where id=7; -update noar tt set b0='I7HZ3ITRFK6QBREAJQEAE4URCUH6' where id=7; -update noar ti set b0='I7HZ3ITRFK6QBREAJQEAE4URCUH6' where id=7; -update noar tt set v0='OS8' where id=7; -update noar ti set v0='OS8' where id=7; -update noar tt set b1='BQHYVB9PMVKKTQK0EHPVZ8A9B6P1' where id=7; -update noar ti set b1='BQHYVB9PMVKKTQK0EHPVZ8A9B6P1' where id=7; -update noar tt set v0='2QG46UC03CEZM26ONK' where id=7; -update noar ti set v0='2QG46UC03CEZM26ONK' where id=7; -update noar tt set b2='VH2NE0IC' where id=7; -update noar ti set b2='VH2NE0IC' where id=7; -update noar tt set v0='MRK95MXZRLGE9' where id=8; -update noar ti set v0='MRK95MXZRLGE9' where id=8; -update noar tt set b0='DDAP8765B9K' where id=8; -update noar ti set b0='DDAP8765B9K' where id=8; -update noar tt set v0='UORH' where id=8; -update noar ti set v0='UORH' where id=8; -update noar tt set b1='TZJZE' where id=8; -update noar ti set b1='TZJZE' where id=8; -update noar tt set v0='TM9BOE12FKT1HUVW1WCANYC6R' where id=8; -update noar ti set v0='TM9BOE12FKT1HUVW1WCANYC6R' where id=8; -update noar tt set b2='LOCVON4BRFRYHBZSGRQMVYK' where id=8; -update noar ti set b2='LOCVON4BRFRYHBZSGRQMVYK' where id=8; -update noar tt set v0='IS52FC2R8A5SRF9P3MCAP9ZZ4R15KZ6' where id=9; -update noar ti set v0='IS52FC2R8A5SRF9P3MCAP9ZZ4R15KZ6' where id=9; -update noar tt set b0='C49RXQZNGV41K1P8' where id=9; -update noar ti set b0='C49RXQZNGV41K1P8' where id=9; -update noar tt set v0='H9M83V1' where id=9; -update noar ti set v0='H9M83V1' where id=9; -update noar tt set b1='F8VYBZBZOYVRJDOV6' where id=9; -update noar ti set b1='F8VYBZBZOYVRJDOV6' where id=9; -update noar tt set v0='MNHP' where id=9; -update noar ti set v0='MNHP' where id=9; -update noar tt set b2='FZ950SFLY7LPVIF' where id=9; -update noar ti set b2='FZ950SFLY7LPVIF' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -v0 varchar(32) null, -b0 blob null, -b1 longblob null, -b2 blob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='UZ1CVBHQCR0DQ2CBR3Y3CL2RK95' where id=1; -update noar ti set v0='UZ1CVBHQCR0DQ2CBR3Y3CL2RK95' where id=1; -update noar tt set b0='UDWGQTED08Y9A7KDY3HIC' where id=1; -update noar ti set b0='UDWGQTED08Y9A7KDY3HIC' where id=1; -update noar tt set v0='DZR' where id=1; -update noar ti set v0='DZR' where id=1; -update noar tt set b1='80V3D' where id=1; -update noar ti set b1='80V3D' where id=1; -update noar tt set v0='YHZMGFJDP5Y2HJFKEMF3UARQVO2U' where id=1; -update noar ti set v0='YHZMGFJDP5Y2HJFKEMF3UARQVO2U' where id=1; -update noar tt set b2='4MXTW6U' where id=1; -update noar ti set b2='4MXTW6U' where id=1; -update noar tt set v0='C87DYG6XW3VF2GJJPEII8K1GH9IDMWW' where id=2; -update noar ti set v0='C87DYG6XW3VF2GJJPEII8K1GH9IDMWW' where id=2; -update noar tt set b0='HUIX9W8X75FOFTZ8W' where id=2; -update noar ti set b0='HUIX9W8X75FOFTZ8W' where id=2; -update noar tt set v0='VPRKVU4ME26BLRNHDYAVFKBUGXRTEH' where id=2; -update noar ti set v0='VPRKVU4ME26BLRNHDYAVFKBUGXRTEH' where id=2; -update noar tt set b1='OP0GPDHVEM3PIKBLG' where id=2; -update noar ti set b1='OP0GPDHVEM3PIKBLG' where id=2; -update noar tt set v0='ON' where id=2; -update noar ti set v0='ON' where id=2; -update noar tt set b2='FO4YRBQ4F9ZLT' where id=2; -update noar ti set b2='FO4YRBQ4F9ZLT' where id=2; -update noar tt set v0='88PC1PAAN40Z3500OEKYV' where id=3; -update noar ti set v0='88PC1PAAN40Z3500OEKYV' where id=3; -update noar tt set b0='RA50' where id=3; -update noar ti set b0='RA50' where id=3; -update noar tt set v0='FJ' where id=3; -update noar ti set v0='FJ' where id=3; -update noar tt set b1='XV2FU8MVWX1V427CB2C1PIA5NXJKLU5' where id=3; -update noar ti set b1='XV2FU8MVWX1V427CB2C1PIA5NXJKLU5' where id=3; -update noar tt set v0='TG' where id=3; -update noar ti set v0='TG' where id=3; -update noar tt set b2='3ID2846HXPE2PFYCGOY' where id=3; -update noar ti set b2='3ID2846HXPE2PFYCGOY' where id=3; -update noar tt set v0='QDJ2BB8PB4SAGJW4ZIXSIN1XNI3F6H' where id=4; -update noar ti set v0='QDJ2BB8PB4SAGJW4ZIXSIN1XNI3F6H' where id=4; -update noar tt set b0='H3JD5OH2NLRIJR' where id=4; -update noar ti set b0='H3JD5OH2NLRIJR' where id=4; -update noar tt set v0='CMO93ZLCMJOGMJWSHWO4E6IBXRQYHS' where id=4; -update noar ti set v0='CMO93ZLCMJOGMJWSHWO4E6IBXRQYHS' where id=4; -update noar tt set b1='FXSU3K6UJDGS' where id=4; -update noar ti set b1='FXSU3K6UJDGS' where id=4; -update noar tt set v0='P20IVA4UJIVUO3A2VEV963L1O' where id=4; -update noar ti set v0='P20IVA4UJIVUO3A2VEV963L1O' where id=4; -update noar tt set b2='1AEP2D7TTQ8IM0HNEI7CJ5X' where id=4; -update noar ti set b2='1AEP2D7TTQ8IM0HNEI7CJ5X' where id=4; -update noar tt set v0='OODOYH1J6JJJ' where id=5; -update noar ti set v0='OODOYH1J6JJJ' where id=5; -update noar tt set b0='34ECPVJHSZ1' where id=5; -update noar ti set b0='34ECPVJHSZ1' where id=5; -update noar tt set v0='PFPETC7II' where id=5; -update noar ti set v0='PFPETC7II' where id=5; -update noar tt set b1='A' where id=5; -update noar ti set b1='A' where id=5; -update noar tt set v0='IF9' where id=5; -update noar ti set v0='IF9' where id=5; -update noar tt set b2='W17NGDA8U54OW67WMQ7' where id=5; -update noar ti set b2='W17NGDA8U54OW67WMQ7' where id=5; -update noar tt set v0='VXMMNZ18K8AVPZUJJS2R9' where id=6; -update noar ti set v0='VXMMNZ18K8AVPZUJJS2R9' where id=6; -update noar tt set b0='3VRLHATW4C7YKWX' where id=6; -update noar ti set b0='3VRLHATW4C7YKWX' where id=6; -update noar tt set v0='00ZED43JYABT7TQ9KHJ2OQ9H46' where id=6; -update noar ti set v0='00ZED43JYABT7TQ9KHJ2OQ9H46' where id=6; -update noar tt set b1='PWZK77CBRLQ' where id=6; -update noar ti set b1='PWZK77CBRLQ' where id=6; -update noar tt set v0='NI2BLSHKSL88CMHTVZ7Y0V7QU0FCLO' where id=6; -update noar ti set v0='NI2BLSHKSL88CMHTVZ7Y0V7QU0FCLO' where id=6; -update noar tt set b2='7TKILZ03PXUFGBL22V7XV4UVSECK' where id=6; -update noar ti set b2='7TKILZ03PXUFGBL22V7XV4UVSECK' where id=6; -update noar tt set v0='EC8BXXSPAE4FVMFP6FMZL5EQ693' where id=7; -update noar ti set v0='EC8BXXSPAE4FVMFP6FMZL5EQ693' where id=7; -update noar tt set b0='NUD22EOW7' where id=7; -update noar ti set b0='NUD22EOW7' where id=7; -update noar tt set v0='NR8V4ZWO8UGWM9BP2C6NP4BW85HT06' where id=7; -update noar ti set v0='NR8V4ZWO8UGWM9BP2C6NP4BW85HT06' where id=7; -update noar tt set b1='YJW7Z28E1UM56D1E4J16GOI89' where id=7; -update noar ti set b1='YJW7Z28E1UM56D1E4J16GOI89' where id=7; -update noar tt set v0='4IYVS2QFA63ORI7EOJRA8JKZ' where id=7; -update noar ti set v0='4IYVS2QFA63ORI7EOJRA8JKZ' where id=7; -update noar tt set b2='4VJO' where id=7; -update noar ti set b2='4VJO' where id=7; -update noar tt set v0='B9ISV' where id=8; -update noar ti set v0='B9ISV' where id=8; -update noar tt set b0='WUP152F0E8SVXPNZVXALJ1GG6L' where id=8; -update noar ti set b0='WUP152F0E8SVXPNZVXALJ1GG6L' where id=8; -update noar tt set v0='4YO2AP' where id=8; -update noar ti set v0='4YO2AP' where id=8; -update noar tt set b1='9CHK2M1KX7ZITS' where id=8; -update noar ti set b1='9CHK2M1KX7ZITS' where id=8; -update noar tt set v0='QXTPBHB5VRO7IPNSI3R6QZZPV' where id=8; -update noar ti set v0='QXTPBHB5VRO7IPNSI3R6QZZPV' where id=8; -update noar tt set b2='PR0B7VTPNTFD' where id=8; -update noar ti set b2='PR0B7VTPNTFD' where id=8; -update noar tt set v0='16QSW0UOQX5FOOEW93ACEK' where id=9; -update noar ti set v0='16QSW0UOQX5FOOEW93ACEK' where id=9; -update noar tt set b0='Q26VLWZF5I8GFKK1X7Q7JOF0CX' where id=9; -update noar ti set b0='Q26VLWZF5I8GFKK1X7Q7JOF0CX' where id=9; -update noar tt set v0='QV15ZUHFXN' where id=9; -update noar ti set v0='QV15ZUHFXN' where id=9; -update noar tt set b1='9F0RKNDWAWM2USCYDBSX6R7S0E2GYE' where id=9; -update noar ti set b1='9F0RKNDWAWM2USCYDBSX6R7S0E2GYE' where id=9; -update noar tt set v0='T7IDSPSL4V6B3GP95KTV' where id=9; -update noar ti set v0='T7IDSPSL4V6B3GP95KTV' where id=9; -update noar tt set b2='73XOD2SOBDKRO' where id=9; -update noar ti set b2='73XOD2SOBDKRO' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -v0 varchar(256) null, -b0 blob null, -b1 longblob null, -b2 blob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='7B5M' where id=1; -update noar ti set v0='7B5M' where id=1; -update noar tt set b0='O3VMLM1IOLKRXHB6YR' where id=1; -update noar ti set b0='O3VMLM1IOLKRXHB6YR' where id=1; -update noar tt set v0='7' where id=1; -update noar ti set v0='7' where id=1; -update noar tt set b1='H5YOI42039L' where id=1; -update noar ti set b1='H5YOI42039L' where id=1; -update noar tt set v0='Q0KCY3V5PZKXLE3ABP2XYGBMB3G2' where id=1; -update noar ti set v0='Q0KCY3V5PZKXLE3ABP2XYGBMB3G2' where id=1; -update noar tt set b2='LII19QR4QVIXCRM6Y68QNW' where id=1; -update noar ti set b2='LII19QR4QVIXCRM6Y68QNW' where id=1; -update noar tt set v0='IB4VQQ5IHZ1PZG0TF5' where id=2; -update noar ti set v0='IB4VQQ5IHZ1PZG0TF5' where id=2; -update noar tt set b0='T48X5PGD66V9FFYFND40' where id=2; -update noar ti set b0='T48X5PGD66V9FFYFND40' where id=2; -update noar tt set v0='LY5JEFNJ' where id=2; -update noar ti set v0='LY5JEFNJ' where id=2; -update noar tt set b1='WRH7HD4W' where id=2; -update noar ti set b1='WRH7HD4W' where id=2; -update noar tt set v0='9E5DFALSVPOLCX0TFP0NNP4H1D' where id=2; -update noar ti set v0='9E5DFALSVPOLCX0TFP0NNP4H1D' where id=2; -update noar tt set b2='EPC1R3NW84GHX' where id=2; -update noar ti set b2='EPC1R3NW84GHX' where id=2; -update noar tt set v0='K6F' where id=3; -update noar ti set v0='K6F' where id=3; -update noar tt set b0='2RF1AIYPTHYOF' where id=3; -update noar ti set b0='2RF1AIYPTHYOF' where id=3; -update noar tt set v0='Q9XBSFD4V6UUB0SXYOT6UD92BV55SAT' where id=3; -update noar ti set v0='Q9XBSFD4V6UUB0SXYOT6UD92BV55SAT' where id=3; -update noar tt set b1='SLQGDAOHNBAU1ZBBO1V6B3OS5' where id=3; -update noar ti set b1='SLQGDAOHNBAU1ZBBO1V6B3OS5' where id=3; -update noar tt set v0='8UKOKCAOY14S3G' where id=3; -update noar ti set v0='8UKOKCAOY14S3G' where id=3; -update noar tt set b2='1T' where id=3; -update noar ti set b2='1T' where id=3; -update noar tt set v0='M4HZBQBYVJO4C50LOL589FQHDQC8' where id=4; -update noar ti set v0='M4HZBQBYVJO4C50LOL589FQHDQC8' where id=4; -update noar tt set b0='VRVK48N0ANA7UFKT3HCII' where id=4; -update noar ti set b0='VRVK48N0ANA7UFKT3HCII' where id=4; -update noar tt set v0='95M1KDITRLP7A' where id=4; -update noar ti set v0='95M1KDITRLP7A' where id=4; -update noar tt set b1='G48AFM62I1' where id=4; -update noar ti set b1='G48AFM62I1' where id=4; -update noar tt set v0='U6HX9XAIMD' where id=4; -update noar ti set v0='U6HX9XAIMD' where id=4; -update noar tt set b2='O7PIPJG8XDTO3YVE4EPCAX6W' where id=4; -update noar ti set b2='O7PIPJG8XDTO3YVE4EPCAX6W' where id=4; -update noar tt set v0='48ID6' where id=5; -update noar ti set v0='48ID6' where id=5; -update noar tt set b0='COR' where id=5; -update noar ti set b0='COR' where id=5; -update noar tt set v0='8HU6F72OMO05' where id=5; -update noar ti set v0='8HU6F72OMO05' where id=5; -update noar tt set b1='FLGUJQK9ASFC' where id=5; -update noar ti set b1='FLGUJQK9ASFC' where id=5; -update noar tt set v0='40P86CUT189CP7TE' where id=5; -update noar ti set v0='40P86CUT189CP7TE' where id=5; -update noar tt set b2='LGFNZAIR8LJIS7LC37DMIHKZ80' where id=5; -update noar ti set b2='LGFNZAIR8LJIS7LC37DMIHKZ80' where id=5; -update noar tt set v0='V7C7NTC4W0BC' where id=6; -update noar ti set v0='V7C7NTC4W0BC' where id=6; -update noar tt set b0='OYKSVO9NEWFJ26W8U8QLFX5C46372' where id=6; -update noar ti set b0='OYKSVO9NEWFJ26W8U8QLFX5C46372' where id=6; -update noar tt set v0='COPWZREUYZQ' where id=6; -update noar ti set v0='COPWZREUYZQ' where id=6; -update noar tt set b1='1HW44' where id=6; -update noar ti set b1='1HW44' where id=6; -update noar tt set v0='ZFC' where id=6; -update noar ti set v0='ZFC' where id=6; -update noar tt set b2='W4FM32AKO5TCZNCZF9AUIEK0K2GR93Z6' where id=6; -update noar ti set b2='W4FM32AKO5TCZNCZF9AUIEK0K2GR93Z6' where id=6; -update noar tt set v0='O6P' where id=7; -update noar ti set v0='O6P' where id=7; -update noar tt set b0='2P87YJFWGBFNO' where id=7; -update noar ti set b0='2P87YJFWGBFNO' where id=7; -update noar tt set v0='5TCOQ6' where id=7; -update noar ti set v0='5TCOQ6' where id=7; -update noar tt set b1='EQGN6KQ7LB32244S9IRH2B' where id=7; -update noar ti set b1='EQGN6KQ7LB32244S9IRH2B' where id=7; -update noar tt set v0='8F9D3HNKKNTF1A01KLF' where id=7; -update noar ti set v0='8F9D3HNKKNTF1A01KLF' where id=7; -update noar tt set b2='H2UVXZG2BIDUCO0SPR2GC3X02F' where id=7; -update noar ti set b2='H2UVXZG2BIDUCO0SPR2GC3X02F' where id=7; -update noar tt set v0='B9MGWQ07VMW' where id=8; -update noar ti set v0='B9MGWQ07VMW' where id=8; -update noar tt set b0='GTAW7WT4MUB3X2GM88P1ONXK' where id=8; -update noar ti set b0='GTAW7WT4MUB3X2GM88P1ONXK' where id=8; -update noar tt set v0='GSZM' where id=8; -update noar ti set v0='GSZM' where id=8; -update noar tt set b1='5AMUAGW913HUXKV' where id=8; -update noar ti set b1='5AMUAGW913HUXKV' where id=8; -update noar tt set v0='GDNWZHPWE1QAK' where id=8; -update noar ti set v0='GDNWZHPWE1QAK' where id=8; -update noar tt set b2='R494CL4' where id=8; -update noar ti set b2='R494CL4' where id=8; -update noar tt set v0='A6CELHPA' where id=9; -update noar ti set v0='A6CELHPA' where id=9; -update noar tt set b0='55Y2X' where id=9; -update noar ti set b0='55Y2X' where id=9; -update noar tt set v0='NMJCIE8BLY0FPQPZ' where id=9; -update noar ti set v0='NMJCIE8BLY0FPQPZ' where id=9; -update noar tt set b1='9SVDGNAE' where id=9; -update noar ti set b1='9SVDGNAE' where id=9; -update noar tt set v0='K0F7PCPNNEP1J52TM7Z9DG55VIWU' where id=9; -update noar ti set v0='K0F7PCPNNEP1J52TM7Z9DG55VIWU' where id=9; -update noar tt set b2='85Y' where id=9; -update noar ti set b2='85Y' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -v0 varchar(32) not null, -b0 blob not null, -b1 longblob not null, -b2 blob not null -) engine=tokudb; -insert into tt values (1,'','','',''); -insert into tt values (2,'','','',''); -insert into tt values (3,'','','',''); -insert into tt values (4,'','','',''); -insert into tt values (5,'','','',''); -insert into tt values (6,'','','',''); -insert into tt values (7,'','','',''); -insert into tt values (8,'','','',''); -insert into tt values (9,'','','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='86YH72RKNJYSA6ML9YGT5Q0U06O' where id=1; -update noar ti set v0='86YH72RKNJYSA6ML9YGT5Q0U06O' where id=1; -update noar tt set b0='AH91L768A5KKMNMJ4CK67DWN' where id=1; -update noar ti set b0='AH91L768A5KKMNMJ4CK67DWN' where id=1; -update noar tt set v0='D66UE788RIII2W0542AI1UY48IR94P' where id=1; -update noar ti set v0='D66UE788RIII2W0542AI1UY48IR94P' where id=1; -update noar tt set b1='XQGICMLKNHPQ' where id=1; -update noar ti set b1='XQGICMLKNHPQ' where id=1; -update noar tt set v0='LXUWX3KBD5CDR64WJ6TDYUVFZ4CY7D15' where id=1; -update noar ti set v0='LXUWX3KBD5CDR64WJ6TDYUVFZ4CY7D15' where id=1; -update noar tt set b2='WCYRC0XPTXEM3FEASSD7BHM7L' where id=1; -update noar ti set b2='WCYRC0XPTXEM3FEASSD7BHM7L' where id=1; -update noar tt set v0='270E7AP7YX9W1SH6C8V60WS2Q1' where id=2; -update noar ti set v0='270E7AP7YX9W1SH6C8V60WS2Q1' where id=2; -update noar tt set b0='WM11FNV6OTLZVGCHO5R0D9L' where id=2; -update noar ti set b0='WM11FNV6OTLZVGCHO5R0D9L' where id=2; -update noar tt set v0='C21MCP7ARXRTLA8S' where id=2; -update noar ti set v0='C21MCP7ARXRTLA8S' where id=2; -update noar tt set b1='E3O0' where id=2; -update noar ti set b1='E3O0' where id=2; -update noar tt set v0='76XWRWI04VKDH2TOGZ9' where id=2; -update noar ti set v0='76XWRWI04VKDH2TOGZ9' where id=2; -update noar tt set b2='DFZ3GCUWRSHNLQD3' where id=2; -update noar ti set b2='DFZ3GCUWRSHNLQD3' where id=2; -update noar tt set v0='M9XZL1XRHKE1AZ913A' where id=3; -update noar ti set v0='M9XZL1XRHKE1AZ913A' where id=3; -update noar tt set b0='19GJPEUNNO' where id=3; -update noar ti set b0='19GJPEUNNO' where id=3; -update noar tt set v0='RIVRRSEKSTRQZU7VGK3265KBNETD' where id=3; -update noar ti set v0='RIVRRSEKSTRQZU7VGK3265KBNETD' where id=3; -update noar tt set b1='11F6FOODKFNNMMBE8BOZFUM6F' where id=3; -update noar ti set b1='11F6FOODKFNNMMBE8BOZFUM6F' where id=3; -update noar tt set v0='VRBMZ6APJJ4U2HY' where id=3; -update noar ti set v0='VRBMZ6APJJ4U2HY' where id=3; -update noar tt set b2='7' where id=3; -update noar ti set b2='7' where id=3; -update noar tt set v0='N2PAFJ2MZ7RHO81YW9804SPAB3XX' where id=4; -update noar ti set v0='N2PAFJ2MZ7RHO81YW9804SPAB3XX' where id=4; -update noar tt set b0='PDY8SKSEN1XEC2K96' where id=4; -update noar ti set b0='PDY8SKSEN1XEC2K96' where id=4; -update noar tt set v0='P3TKDD4HRXQ4VC0EWJC5' where id=4; -update noar ti set v0='P3TKDD4HRXQ4VC0EWJC5' where id=4; -update noar tt set b1='QGO9O' where id=4; -update noar ti set b1='QGO9O' where id=4; -update noar tt set v0='ETX98A2ZCD' where id=4; -update noar ti set v0='ETX98A2ZCD' where id=4; -update noar tt set b2='JE3VVV20VHTQ' where id=4; -update noar ti set b2='JE3VVV20VHTQ' where id=4; -update noar tt set v0='6L9' where id=5; -update noar ti set v0='6L9' where id=5; -update noar tt set b0='1B9HKLBZ7AW4' where id=5; -update noar ti set b0='1B9HKLBZ7AW4' where id=5; -update noar tt set v0='XVGYLFLR22NQ98LRALD5PXPZ8' where id=5; -update noar ti set v0='XVGYLFLR22NQ98LRALD5PXPZ8' where id=5; -update noar tt set b1='4L47QY' where id=5; -update noar ti set b1='4L47QY' where id=5; -update noar tt set v0='BOMR8S' where id=5; -update noar ti set v0='BOMR8S' where id=5; -update noar tt set b2='F0IZUPH5JMTB7M4H44WT' where id=5; -update noar ti set b2='F0IZUPH5JMTB7M4H44WT' where id=5; -update noar tt set v0='3XV4BLXT1ASGXFS0IR14' where id=6; -update noar ti set v0='3XV4BLXT1ASGXFS0IR14' where id=6; -update noar tt set b0='NQKNL94JUMLJ' where id=6; -update noar ti set b0='NQKNL94JUMLJ' where id=6; -update noar tt set v0='BRQ4F0HF5E83DX9Y80PO0V2CY' where id=6; -update noar ti set v0='BRQ4F0HF5E83DX9Y80PO0V2CY' where id=6; -update noar tt set b1='GMFXSRRA1TKLLP' where id=6; -update noar ti set b1='GMFXSRRA1TKLLP' where id=6; -update noar tt set v0='CP2BGCGWZKMYY88RIOOY' where id=6; -update noar ti set v0='CP2BGCGWZKMYY88RIOOY' where id=6; -update noar tt set b2='X31H0BB0' where id=6; -update noar ti set b2='X31H0BB0' where id=6; -update noar tt set v0='YXZB6G9AFBQNAOSSFYQIZRYTK' where id=7; -update noar ti set v0='YXZB6G9AFBQNAOSSFYQIZRYTK' where id=7; -update noar tt set b0='3PL2CPH0T27UNUC986KT0F5B' where id=7; -update noar ti set b0='3PL2CPH0T27UNUC986KT0F5B' where id=7; -update noar tt set v0='EJ550841' where id=7; -update noar ti set v0='EJ550841' where id=7; -update noar tt set b1='AV4TF5M3NQYKV0I31L7V0' where id=7; -update noar ti set b1='AV4TF5M3NQYKV0I31L7V0' where id=7; -update noar tt set v0='W2APVHF6CJZEVW0N7ZW9ARZTDO1ES' where id=7; -update noar ti set v0='W2APVHF6CJZEVW0N7ZW9ARZTDO1ES' where id=7; -update noar tt set b2='PMGD7UWY' where id=7; -update noar ti set b2='PMGD7UWY' where id=7; -update noar tt set v0='FV4EGB1BQQHU8X5SIOPEMKURI' where id=8; -update noar ti set v0='FV4EGB1BQQHU8X5SIOPEMKURI' where id=8; -update noar tt set b0='LZ1QP2OQJ3U4BLDI09' where id=8; -update noar ti set b0='LZ1QP2OQJ3U4BLDI09' where id=8; -update noar tt set v0='73HMUGCDZHYS4OBY3ZC7DEK2R7ZM' where id=8; -update noar ti set v0='73HMUGCDZHYS4OBY3ZC7DEK2R7ZM' where id=8; -update noar tt set b1='8NVXJ1TORGCO' where id=8; -update noar ti set b1='8NVXJ1TORGCO' where id=8; -update noar tt set v0='WXKFM7H' where id=8; -update noar ti set v0='WXKFM7H' where id=8; -update noar tt set b2='2GBZE5Q7V5O4LP66M5AN' where id=8; -update noar ti set b2='2GBZE5Q7V5O4LP66M5AN' where id=8; -update noar tt set v0='Y2242KN9THL2KV0ALATKBAWBKKB' where id=9; -update noar ti set v0='Y2242KN9THL2KV0ALATKBAWBKKB' where id=9; -update noar tt set b0='G8QEN2EJ5LWKHXF36JQ9PC9G' where id=9; -update noar ti set b0='G8QEN2EJ5LWKHXF36JQ9PC9G' where id=9; -update noar tt set v0='5UFCMRM0IJ2OTDXFVEDJ5HNH6NTU' where id=9; -update noar ti set v0='5UFCMRM0IJ2OTDXFVEDJ5HNH6NTU' where id=9; -update noar tt set b1='LFN9H1HDL4JA9OI2PHBSM2M0DRX' where id=9; -update noar ti set b1='LFN9H1HDL4JA9OI2PHBSM2M0DRX' where id=9; -update noar tt set v0='T7FKCFNSJ3GLTXM5' where id=9; -update noar ti set v0='T7FKCFNSJ3GLTXM5' where id=9; -update noar tt set b2='6IE9YDK6IH15L1' where id=9; -update noar ti set b2='6IE9YDK6IH15L1' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -v0 varchar(256) not null, -b0 blob not null, -b1 longblob not null, -b2 blob not null -) engine=tokudb; -insert into tt values (1,'','','',''); -insert into tt values (2,'','','',''); -insert into tt values (3,'','','',''); -insert into tt values (4,'','','',''); -insert into tt values (5,'','','',''); -insert into tt values (6,'','','',''); -insert into tt values (7,'','','',''); -insert into tt values (8,'','','',''); -insert into tt values (9,'','','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='KZSXHZ71NWO' where id=1; -update noar ti set v0='KZSXHZ71NWO' where id=1; -update noar tt set b0='O4Q3CNNWCHYKFK7' where id=1; -update noar ti set b0='O4Q3CNNWCHYKFK7' where id=1; -update noar tt set v0='XFJ14XGHYGXTDELKGS' where id=1; -update noar ti set v0='XFJ14XGHYGXTDELKGS' where id=1; -update noar tt set b1='1WID9SLJIPBX8JWY7QNC2D5' where id=1; -update noar ti set b1='1WID9SLJIPBX8JWY7QNC2D5' where id=1; -update noar tt set v0='G7IANSTI86HBBDTK29C' where id=1; -update noar ti set v0='G7IANSTI86HBBDTK29C' where id=1; -update noar tt set b2='5EU63CHMBDC2OGA9GLJNA78UKJB9U6VS' where id=1; -update noar ti set b2='5EU63CHMBDC2OGA9GLJNA78UKJB9U6VS' where id=1; -update noar tt set v0='WP4VXHSTQCVO6D2KQ' where id=2; -update noar ti set v0='WP4VXHSTQCVO6D2KQ' where id=2; -update noar tt set b0='KOK4P4NXT78PDP' where id=2; -update noar ti set b0='KOK4P4NXT78PDP' where id=2; -update noar tt set v0='9H77ENRPFIWWM' where id=2; -update noar ti set v0='9H77ENRPFIWWM' where id=2; -update noar tt set b1='I1109OT3OUN' where id=2; -update noar ti set b1='I1109OT3OUN' where id=2; -update noar tt set v0='HBE3X7PJCDMV' where id=2; -update noar ti set v0='HBE3X7PJCDMV' where id=2; -update noar tt set b2='WO4UMOUUBZAKMLE3EC' where id=2; -update noar ti set b2='WO4UMOUUBZAKMLE3EC' where id=2; -update noar tt set v0='60L6XL1VCJ7GG84FJDU3K0X86F' where id=3; -update noar ti set v0='60L6XL1VCJ7GG84FJDU3K0X86F' where id=3; -update noar tt set b0='5OBVORTZSQOS3D' where id=3; -update noar ti set b0='5OBVORTZSQOS3D' where id=3; -update noar tt set v0='2W' where id=3; -update noar ti set v0='2W' where id=3; -update noar tt set b1='NHWIZ8JH00NNJSLE74BYN34GAOU2VY' where id=3; -update noar ti set b1='NHWIZ8JH00NNJSLE74BYN34GAOU2VY' where id=3; -update noar tt set v0='737M61PEL6RD9ZWPQNI8V563T59OL1' where id=3; -update noar ti set v0='737M61PEL6RD9ZWPQNI8V563T59OL1' where id=3; -update noar tt set b2='SSB5DKUXWFXYP28ENXEY9Y1XCB' where id=3; -update noar ti set b2='SSB5DKUXWFXYP28ENXEY9Y1XCB' where id=3; -update noar tt set v0='U' where id=4; -update noar ti set v0='U' where id=4; -update noar tt set b0='2P46UM' where id=4; -update noar ti set b0='2P46UM' where id=4; -update noar tt set v0='ISAD2KT39J84IBV40KIUFXG7SIXWDDSO' where id=4; -update noar ti set v0='ISAD2KT39J84IBV40KIUFXG7SIXWDDSO' where id=4; -update noar tt set b1='4EQ3ZK9QO5T7Z4GD9I7' where id=4; -update noar ti set b1='4EQ3ZK9QO5T7Z4GD9I7' where id=4; -update noar tt set v0='9EKLBE01TYW9D7O36TYA' where id=4; -update noar ti set v0='9EKLBE01TYW9D7O36TYA' where id=4; -update noar tt set b2='M3B38YGM4IZ4VOLNG8UTPJ6PEGZ' where id=4; -update noar ti set b2='M3B38YGM4IZ4VOLNG8UTPJ6PEGZ' where id=4; -update noar tt set v0='9SAO240F7KVUS' where id=5; -update noar ti set v0='9SAO240F7KVUS' where id=5; -update noar tt set b0='GQS81M5Y37V8RHN92U39EFAWECOZ' where id=5; -update noar ti set b0='GQS81M5Y37V8RHN92U39EFAWECOZ' where id=5; -update noar tt set v0='K5OQ2UTDPAYCU9O11OEPOP0D96K0DPC' where id=5; -update noar ti set v0='K5OQ2UTDPAYCU9O11OEPOP0D96K0DPC' where id=5; -update noar tt set b1='YQ' where id=5; -update noar ti set b1='YQ' where id=5; -update noar tt set v0='H21IGF1VYH42GSB2Y' where id=5; -update noar ti set v0='H21IGF1VYH42GSB2Y' where id=5; -update noar tt set b2='FR0D2X8463N' where id=5; -update noar ti set b2='FR0D2X8463N' where id=5; -update noar tt set v0='0VD69QUB1FCA1E8MVIY9G4QMIP7' where id=6; -update noar ti set v0='0VD69QUB1FCA1E8MVIY9G4QMIP7' where id=6; -update noar tt set b0='FZT5HEJPJ3RUXVCUA5QE' where id=6; -update noar ti set b0='FZT5HEJPJ3RUXVCUA5QE' where id=6; -update noar tt set v0='KOZ4A0K5LHD5TSRE' where id=6; -update noar ti set v0='KOZ4A0K5LHD5TSRE' where id=6; -update noar tt set b1='6QRH1ULSTN3M3SI99' where id=6; -update noar ti set b1='6QRH1ULSTN3M3SI99' where id=6; -update noar tt set v0='UBQQDQV1YII74F3CYCGOH913SE' where id=6; -update noar ti set v0='UBQQDQV1YII74F3CYCGOH913SE' where id=6; -update noar tt set b2='XX5NITXUHRLQNF' where id=6; -update noar ti set b2='XX5NITXUHRLQNF' where id=6; -update noar tt set v0='V6MG34TI9SZ6526OZGGM7SFKLKH' where id=7; -update noar ti set v0='V6MG34TI9SZ6526OZGGM7SFKLKH' where id=7; -update noar tt set b0='7VNIN2F26FCS67L85DCBRY1QK89K' where id=7; -update noar ti set b0='7VNIN2F26FCS67L85DCBRY1QK89K' where id=7; -update noar tt set v0='JICMLWLDU44NLYHS82S8WE47TI' where id=7; -update noar ti set v0='JICMLWLDU44NLYHS82S8WE47TI' where id=7; -update noar tt set b1='30ZFKKDIAGF' where id=7; -update noar ti set b1='30ZFKKDIAGF' where id=7; -update noar tt set v0='C95F7H251FS' where id=7; -update noar ti set v0='C95F7H251FS' where id=7; -update noar tt set b2='ARSJRXM0WJBE4U9E7YJTGD' where id=7; -update noar ti set b2='ARSJRXM0WJBE4U9E7YJTGD' where id=7; -update noar tt set v0='0GCMNRT9' where id=8; -update noar ti set v0='0GCMNRT9' where id=8; -update noar tt set b0='UR9HJ72DEAZ' where id=8; -update noar ti set b0='UR9HJ72DEAZ' where id=8; -update noar tt set v0='9F81SUFATO80' where id=8; -update noar ti set v0='9F81SUFATO80' where id=8; -update noar tt set b1='0HY01VHG' where id=8; -update noar ti set b1='0HY01VHG' where id=8; -update noar tt set v0='EKM' where id=8; -update noar ti set v0='EKM' where id=8; -update noar tt set b2='ZY' where id=8; -update noar ti set b2='ZY' where id=8; -update noar tt set v0='E5V8XS74LUB3VU' where id=9; -update noar ti set v0='E5V8XS74LUB3VU' where id=9; -update noar tt set b0='HQVPDBMP62J7B1Y4SFUGSS' where id=9; -update noar ti set b0='HQVPDBMP62J7B1Y4SFUGSS' where id=9; -update noar tt set v0='W8F7S4275SEI843RSSGINC5C2XTU5AP4' where id=9; -update noar ti set v0='W8F7S4275SEI843RSSGINC5C2XTU5AP4' where id=9; -update noar tt set b1='7JQOUNL3TRVQS1' where id=9; -update noar ti set b1='7JQOUNL3TRVQS1' where id=9; -update noar tt set v0='QFSFALZLQO83RKM' where id=9; -update noar ti set v0='QFSFALZLQO83RKM' where id=9; -update noar tt set b2='TU1365Z1PBHUI4K70DH0Y0' where id=9; -update noar ti set b2='TU1365Z1PBHUI4K70DH0Y0' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -v0 varchar(32) null, -b0 blob null, -b1 longblob null, -b2 mediumblob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='KJ6MKP049PDG' where id=1; -update noar ti set v0='KJ6MKP049PDG' where id=1; -update noar tt set b0='69E1' where id=1; -update noar ti set b0='69E1' where id=1; -update noar tt set v0='DV6D9' where id=1; -update noar ti set v0='DV6D9' where id=1; -update noar tt set b1='A7R18OFT4719POYYKW' where id=1; -update noar ti set b1='A7R18OFT4719POYYKW' where id=1; -update noar tt set v0='YMEJKYXVKIRY1A' where id=1; -update noar ti set v0='YMEJKYXVKIRY1A' where id=1; -update noar tt set b2='K7FMF' where id=1; -update noar ti set b2='K7FMF' where id=1; -update noar tt set v0='JPXGG54S' where id=2; -update noar ti set v0='JPXGG54S' where id=2; -update noar tt set b0='WCAKXTLZ7624V' where id=2; -update noar ti set b0='WCAKXTLZ7624V' where id=2; -update noar tt set v0='SXQMLSI2N05N460U8NU84U80VVBK' where id=2; -update noar ti set v0='SXQMLSI2N05N460U8NU84U80VVBK' where id=2; -update noar tt set b1='MI7CCMVG2V4IBQZEPEAAKY' where id=2; -update noar ti set b1='MI7CCMVG2V4IBQZEPEAAKY' where id=2; -update noar tt set v0='S7YRJFHRZ63FTZ0UZ783NGWJ0Q0Q0' where id=2; -update noar ti set v0='S7YRJFHRZ63FTZ0UZ783NGWJ0Q0Q0' where id=2; -update noar tt set b2='UZRX94PCNHOR' where id=2; -update noar ti set b2='UZRX94PCNHOR' where id=2; -update noar tt set v0='O3K8E2KKBO22MJRM4' where id=3; -update noar ti set v0='O3K8E2KKBO22MJRM4' where id=3; -update noar tt set b0='TD3' where id=3; -update noar ti set b0='TD3' where id=3; -update noar tt set v0='N5GZATTF8VZBWVJ' where id=3; -update noar ti set v0='N5GZATTF8VZBWVJ' where id=3; -update noar tt set b1='LN2GBCLZEUN' where id=3; -update noar ti set b1='LN2GBCLZEUN' where id=3; -update noar tt set v0='3ZGAWSEZANCV4ZJ8ZAOU4428KAC2P' where id=3; -update noar ti set v0='3ZGAWSEZANCV4ZJ8ZAOU4428KAC2P' where id=3; -update noar tt set b2='LUR7M75DNR5ER4DNVBTAO8TDCAMHHT' where id=3; -update noar ti set b2='LUR7M75DNR5ER4DNVBTAO8TDCAMHHT' where id=3; -update noar tt set v0='V3WN4JUFIS4YMZT' where id=4; -update noar ti set v0='V3WN4JUFIS4YMZT' where id=4; -update noar tt set b0='Y37CSDSCBCMPM0RU5Y0MZUFRIQAN5V7P' where id=4; -update noar ti set b0='Y37CSDSCBCMPM0RU5Y0MZUFRIQAN5V7P' where id=4; -update noar tt set v0='JBIX2PLJAED9KBHWUUV9P3XP' where id=4; -update noar ti set v0='JBIX2PLJAED9KBHWUUV9P3XP' where id=4; -update noar tt set b1='P5GI' where id=4; -update noar ti set b1='P5GI' where id=4; -update noar tt set v0='WTKW7E45N2I0IMRBRNYQ9CK' where id=4; -update noar ti set v0='WTKW7E45N2I0IMRBRNYQ9CK' where id=4; -update noar tt set b2='CFBBHF' where id=4; -update noar ti set b2='CFBBHF' where id=4; -update noar tt set v0='GBN9OHZHHTLSAD4LMVVX5Y' where id=5; -update noar ti set v0='GBN9OHZHHTLSAD4LMVVX5Y' where id=5; -update noar tt set b0='K' where id=5; -update noar ti set b0='K' where id=5; -update noar tt set v0='47MBG75Q6GPW' where id=5; -update noar ti set v0='47MBG75Q6GPW' where id=5; -update noar tt set b1='PLNZFEXBT1' where id=5; -update noar ti set b1='PLNZFEXBT1' where id=5; -update noar tt set v0='6VW2EPWR8I' where id=5; -update noar ti set v0='6VW2EPWR8I' where id=5; -update noar tt set b2='9AGKTT6LR5QZ5X904PBGC85JMPU' where id=5; -update noar ti set b2='9AGKTT6LR5QZ5X904PBGC85JMPU' where id=5; -update noar tt set v0='YOJH0FLKQD9R' where id=6; -update noar ti set v0='YOJH0FLKQD9R' where id=6; -update noar tt set b0='O194CF9VIOHO3Q0I77ZE3J7FP' where id=6; -update noar ti set b0='O194CF9VIOHO3Q0I77ZE3J7FP' where id=6; -update noar tt set v0='4IFEK' where id=6; -update noar ti set v0='4IFEK' where id=6; -update noar tt set b1='OS2PDRO36I4ILQ' where id=6; -update noar ti set b1='OS2PDRO36I4ILQ' where id=6; -update noar tt set v0='HPB0H' where id=6; -update noar ti set v0='HPB0H' where id=6; -update noar tt set b2='PNITSXSGGIN' where id=6; -update noar ti set b2='PNITSXSGGIN' where id=6; -update noar tt set v0='J6WDDAP8UQBMPRPPB6AZRYJFM2' where id=7; -update noar ti set v0='J6WDDAP8UQBMPRPPB6AZRYJFM2' where id=7; -update noar tt set b0='2O25QBVE05XVIWGLE2QTR2536RWDA7OZ' where id=7; -update noar ti set b0='2O25QBVE05XVIWGLE2QTR2536RWDA7OZ' where id=7; -update noar tt set v0='0PZ0UK' where id=7; -update noar ti set v0='0PZ0UK' where id=7; -update noar tt set b1='6FK9XGEIP42YHUT2UF5QAE1F387U' where id=7; -update noar ti set b1='6FK9XGEIP42YHUT2UF5QAE1F387U' where id=7; -update noar tt set v0='EJCASXYO2JUCUAKROAG068LW04910HSQ' where id=7; -update noar ti set v0='EJCASXYO2JUCUAKROAG068LW04910HSQ' where id=7; -update noar tt set b2='NH096JE59N1PA1K8INC8D0370B6I' where id=7; -update noar ti set b2='NH096JE59N1PA1K8INC8D0370B6I' where id=7; -update noar tt set v0='K3EKNTGDBRA2OQ4OQRRVMHLW3UC7V2C' where id=8; -update noar ti set v0='K3EKNTGDBRA2OQ4OQRRVMHLW3UC7V2C' where id=8; -update noar tt set b0='ESL93' where id=8; -update noar ti set b0='ESL93' where id=8; -update noar tt set v0='ZKNB1221LBQ7X05NJPMY44VCHASW' where id=8; -update noar ti set v0='ZKNB1221LBQ7X05NJPMY44VCHASW' where id=8; -update noar tt set b1='G' where id=8; -update noar ti set b1='G' where id=8; -update noar tt set v0='H0D1UL1806J9QRNDVNB84XXP2600IQ' where id=8; -update noar ti set v0='H0D1UL1806J9QRNDVNB84XXP2600IQ' where id=8; -update noar tt set b2='8MUF' where id=8; -update noar ti set b2='8MUF' where id=8; -update noar tt set v0='W19KL15S2QHVW280KXP0' where id=9; -update noar ti set v0='W19KL15S2QHVW280KXP0' where id=9; -update noar tt set b0='0ET2YLFPVAMTVLAQ4EWT8QLQWT7DHEF' where id=9; -update noar ti set b0='0ET2YLFPVAMTVLAQ4EWT8QLQWT7DHEF' where id=9; -update noar tt set v0='KFLNKTMFCJAUPEHWDRZT' where id=9; -update noar ti set v0='KFLNKTMFCJAUPEHWDRZT' where id=9; -update noar tt set b1='8A9K' where id=9; -update noar ti set b1='8A9K' where id=9; -update noar tt set v0='89YIIRVZ241T2KIMYFV422AS5JW3' where id=9; -update noar ti set v0='89YIIRVZ241T2KIMYFV422AS5JW3' where id=9; -update noar tt set b2='I2W9N7WP7FEH' where id=9; -update noar ti set b2='I2W9N7WP7FEH' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -v0 varchar(256) null, -b0 blob null, -b1 longblob null, -b2 mediumblob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='ITO' where id=1; -update noar ti set v0='ITO' where id=1; -update noar tt set b0='9BP' where id=1; -update noar ti set b0='9BP' where id=1; -update noar tt set v0='MB4R269GI0573NGI4QADOC6F9TDN3' where id=1; -update noar ti set v0='MB4R269GI0573NGI4QADOC6F9TDN3' where id=1; -update noar tt set b1='8BI9TK0' where id=1; -update noar ti set b1='8BI9TK0' where id=1; -update noar tt set v0='SW1R1ZJ23K6RP3OUV4CTHT' where id=1; -update noar ti set v0='SW1R1ZJ23K6RP3OUV4CTHT' where id=1; -update noar tt set b2='TTKLVH6ABGT8' where id=1; -update noar ti set b2='TTKLVH6ABGT8' where id=1; -update noar tt set v0='RUW83BI5QOF9EQ2H7F0G' where id=2; -update noar ti set v0='RUW83BI5QOF9EQ2H7F0G' where id=2; -update noar tt set b0='LG5EBGS6DPOXBWH7MK0Z2ZN4' where id=2; -update noar ti set b0='LG5EBGS6DPOXBWH7MK0Z2ZN4' where id=2; -update noar tt set v0='EN9ZXMYC' where id=2; -update noar ti set v0='EN9ZXMYC' where id=2; -update noar tt set b1='8488T5G82EB59QH6' where id=2; -update noar ti set b1='8488T5G82EB59QH6' where id=2; -update noar tt set v0='BSZ0895XG' where id=2; -update noar ti set v0='BSZ0895XG' where id=2; -update noar tt set b2='HAEQ7TZ2GL0C' where id=2; -update noar ti set b2='HAEQ7TZ2GL0C' where id=2; -update noar tt set v0='VD20G96JY68XKVM3KX49ET3NK6' where id=3; -update noar ti set v0='VD20G96JY68XKVM3KX49ET3NK6' where id=3; -update noar tt set b0='SWF4F624MVDSM8H0OA' where id=3; -update noar ti set b0='SWF4F624MVDSM8H0OA' where id=3; -update noar tt set v0='YROHDKQYDFGP0JH5FWPGKE02W' where id=3; -update noar ti set v0='YROHDKQYDFGP0JH5FWPGKE02W' where id=3; -update noar tt set b1='8ZXJ34RTK995TK' where id=3; -update noar ti set b1='8ZXJ34RTK995TK' where id=3; -update noar tt set v0='ZS4EH099NBP53P3SNZYZZG8V1IOIH' where id=3; -update noar ti set v0='ZS4EH099NBP53P3SNZYZZG8V1IOIH' where id=3; -update noar tt set b2='R7CYSNEVJ3D' where id=3; -update noar ti set b2='R7CYSNEVJ3D' where id=3; -update noar tt set v0='JK7IGN97' where id=4; -update noar ti set v0='JK7IGN97' where id=4; -update noar tt set b0='YZFDMVIBS7FU3MQ11MJ7S' where id=4; -update noar ti set b0='YZFDMVIBS7FU3MQ11MJ7S' where id=4; -update noar tt set v0='F063BPTT4UF2JO' where id=4; -update noar ti set v0='F063BPTT4UF2JO' where id=4; -update noar tt set b1='U9A35HW6MO5VIG79M01LELB' where id=4; -update noar ti set b1='U9A35HW6MO5VIG79M01LELB' where id=4; -update noar tt set v0='D28GTGR7HCKIBJW1ILZM' where id=4; -update noar ti set v0='D28GTGR7HCKIBJW1ILZM' where id=4; -update noar tt set b2='CQWH0W' where id=4; -update noar ti set b2='CQWH0W' where id=4; -update noar tt set v0='8KNCJML44FP6K13VYHKFPXLOQWCNYAY' where id=5; -update noar ti set v0='8KNCJML44FP6K13VYHKFPXLOQWCNYAY' where id=5; -update noar tt set b0='8VN1QDSICJTI8ZV82Z' where id=5; -update noar ti set b0='8VN1QDSICJTI8ZV82Z' where id=5; -update noar tt set v0='6F4NC9M7OA0KH41KFTZ' where id=5; -update noar ti set v0='6F4NC9M7OA0KH41KFTZ' where id=5; -update noar tt set b1='B931DFW' where id=5; -update noar ti set b1='B931DFW' where id=5; -update noar tt set v0='U' where id=5; -update noar ti set v0='U' where id=5; -update noar tt set b2='U34BAYBBB7RQ135QT9BXOWI' where id=5; -update noar ti set b2='U34BAYBBB7RQ135QT9BXOWI' where id=5; -update noar tt set v0='FJ0VFJ041Y6FZ3F6EKCG4497' where id=6; -update noar ti set v0='FJ0VFJ041Y6FZ3F6EKCG4497' where id=6; -update noar tt set b0='2YRAK04HQ4BXW84R1ZXEII5SD05BS0' where id=6; -update noar ti set b0='2YRAK04HQ4BXW84R1ZXEII5SD05BS0' where id=6; -update noar tt set v0='D1VWA61L2NCMUSQ9595LYU20M4H7' where id=6; -update noar ti set v0='D1VWA61L2NCMUSQ9595LYU20M4H7' where id=6; -update noar tt set b1='5LRBSCLHRSIEZZ12ZDG09ZTK6S3V9F' where id=6; -update noar ti set b1='5LRBSCLHRSIEZZ12ZDG09ZTK6S3V9F' where id=6; -update noar tt set v0='845QXJ0IC6COX' where id=6; -update noar ti set v0='845QXJ0IC6COX' where id=6; -update noar tt set b2='4JWH5WI4J73LH3IAIBND1S' where id=6; -update noar ti set b2='4JWH5WI4J73LH3IAIBND1S' where id=6; -update noar tt set v0='YWC3JJ3SDLISFJBR9U2IRC32FI2D' where id=7; -update noar ti set v0='YWC3JJ3SDLISFJBR9U2IRC32FI2D' where id=7; -update noar tt set b0='7DEVU7RA4P5CHEMGP5JX1B7UHP89P39' where id=7; -update noar ti set b0='7DEVU7RA4P5CHEMGP5JX1B7UHP89P39' where id=7; -update noar tt set v0='V4SRVJAOCJ69' where id=7; -update noar ti set v0='V4SRVJAOCJ69' where id=7; -update noar tt set b1='I77SO2B8M7I51' where id=7; -update noar ti set b1='I77SO2B8M7I51' where id=7; -update noar tt set v0='WKQ4F33J16DZSV3HQFTS' where id=7; -update noar ti set v0='WKQ4F33J16DZSV3HQFTS' where id=7; -update noar tt set b2='HP22Y62C9LZSQDBWP8SJRZ6LY' where id=7; -update noar ti set b2='HP22Y62C9LZSQDBWP8SJRZ6LY' where id=7; -update noar tt set v0='MUZGIV8K81FZFE3YPLL155HW3M' where id=8; -update noar ti set v0='MUZGIV8K81FZFE3YPLL155HW3M' where id=8; -update noar tt set b0='VVQA' where id=8; -update noar ti set b0='VVQA' where id=8; -update noar tt set v0='W0QBLTI0H1MR' where id=8; -update noar ti set v0='W0QBLTI0H1MR' where id=8; -update noar tt set b1='4DY3M9KOQO60C2AEIMWP4RCBPVIIX14B' where id=8; -update noar ti set b1='4DY3M9KOQO60C2AEIMWP4RCBPVIIX14B' where id=8; -update noar tt set v0='F7DPBVSLGTU1YL009S' where id=8; -update noar ti set v0='F7DPBVSLGTU1YL009S' where id=8; -update noar tt set b2='9JVFALJV78AGGJNW07UMS' where id=8; -update noar ti set b2='9JVFALJV78AGGJNW07UMS' where id=8; -update noar tt set v0='FUS026C7I5S3UKFK1CATTD2R7P' where id=9; -update noar ti set v0='FUS026C7I5S3UKFK1CATTD2R7P' where id=9; -update noar tt set b0='NPZS3' where id=9; -update noar ti set b0='NPZS3' where id=9; -update noar tt set v0='R9FCY75S47KUMB8M1GW3RUMJ' where id=9; -update noar ti set v0='R9FCY75S47KUMB8M1GW3RUMJ' where id=9; -update noar tt set b1='NW96JBMM62X5LAB25EG17MRUXTULC' where id=9; -update noar ti set b1='NW96JBMM62X5LAB25EG17MRUXTULC' where id=9; -update noar tt set v0='LKSTEKPKMYGATFBJT2IK7CCQW' where id=9; -update noar ti set v0='LKSTEKPKMYGATFBJT2IK7CCQW' where id=9; -update noar tt set b2='QTB' where id=9; -update noar ti set b2='QTB' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -v0 varchar(32) not null, -b0 blob not null, -b1 longblob not null, -b2 mediumblob not null -) engine=tokudb; -insert into tt values (1,'','','',''); -insert into tt values (2,'','','',''); -insert into tt values (3,'','','',''); -insert into tt values (4,'','','',''); -insert into tt values (5,'','','',''); -insert into tt values (6,'','','',''); -insert into tt values (7,'','','',''); -insert into tt values (8,'','','',''); -insert into tt values (9,'','','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='U' where id=1; -update noar ti set v0='U' where id=1; -update noar tt set b0='MF3BLQ' where id=1; -update noar ti set b0='MF3BLQ' where id=1; -update noar tt set v0='JWT2OX' where id=1; -update noar ti set v0='JWT2OX' where id=1; -update noar tt set b1='P5K5QTRYV1237KMOAL7E1W1' where id=1; -update noar ti set b1='P5K5QTRYV1237KMOAL7E1W1' where id=1; -update noar tt set v0='2' where id=1; -update noar ti set v0='2' where id=1; -update noar tt set b2='X7P5EQWGF2QRWJ' where id=1; -update noar ti set b2='X7P5EQWGF2QRWJ' where id=1; -update noar tt set v0='3J3R13MW2L8KRX93UYO3' where id=2; -update noar ti set v0='3J3R13MW2L8KRX93UYO3' where id=2; -update noar tt set b0='EVVVE6QL6F6PYN0NR5U1KF' where id=2; -update noar ti set b0='EVVVE6QL6F6PYN0NR5U1KF' where id=2; -update noar tt set v0='BIR8QY7YS9RG38846YKR7' where id=2; -update noar ti set v0='BIR8QY7YS9RG38846YKR7' where id=2; -update noar tt set b1='G6PV5ZVNKLPJ2T7IN5XCM' where id=2; -update noar ti set b1='G6PV5ZVNKLPJ2T7IN5XCM' where id=2; -update noar tt set v0='G3N7JHA25VY4DQEIY4G' where id=2; -update noar ti set v0='G3N7JHA25VY4DQEIY4G' where id=2; -update noar tt set b2='3ODMSDN0EFH5T080' where id=2; -update noar ti set b2='3ODMSDN0EFH5T080' where id=2; -update noar tt set v0='8ADM6SBIDBQD5LY2YFI8PU43GG2B' where id=3; -update noar ti set v0='8ADM6SBIDBQD5LY2YFI8PU43GG2B' where id=3; -update noar tt set b0='W' where id=3; -update noar ti set b0='W' where id=3; -update noar tt set v0='S5G90H3E1V2AT24XL2IMCK08AQC48W' where id=3; -update noar ti set v0='S5G90H3E1V2AT24XL2IMCK08AQC48W' where id=3; -update noar tt set b1='JLED5SW6YJZL97' where id=3; -update noar ti set b1='JLED5SW6YJZL97' where id=3; -update noar tt set v0='WL7E77ZWPWMKKM9L4G' where id=3; -update noar ti set v0='WL7E77ZWPWMKKM9L4G' where id=3; -update noar tt set b2='RIL3LWRO7U851QCHZHFUMASGOUOGQ' where id=3; -update noar ti set b2='RIL3LWRO7U851QCHZHFUMASGOUOGQ' where id=3; -update noar tt set v0='9EQY3QU1' where id=4; -update noar ti set v0='9EQY3QU1' where id=4; -update noar tt set b0='H9OSPWTQKIA1PDC96' where id=4; -update noar ti set b0='H9OSPWTQKIA1PDC96' where id=4; -update noar tt set v0='U8KU66FHTYBNFOF3' where id=4; -update noar ti set v0='U8KU66FHTYBNFOF3' where id=4; -update noar tt set b1='Y52LWJP' where id=4; -update noar ti set b1='Y52LWJP' where id=4; -update noar tt set v0='CN' where id=4; -update noar ti set v0='CN' where id=4; -update noar tt set b2='JFYBRI1UTWBEM344C6TY4172' where id=4; -update noar ti set b2='JFYBRI1UTWBEM344C6TY4172' where id=4; -update noar tt set v0='GPNOZCYQ5Q0' where id=5; -update noar ti set v0='GPNOZCYQ5Q0' where id=5; -update noar tt set b0='P2EKX' where id=5; -update noar ti set b0='P2EKX' where id=5; -update noar tt set v0='4L90NIQ7D364VV21JXSEPHOE' where id=5; -update noar ti set v0='4L90NIQ7D364VV21JXSEPHOE' where id=5; -update noar tt set b1='XZDFIGCCN0CO6ABW6BY8J5DUS7F4B' where id=5; -update noar ti set b1='XZDFIGCCN0CO6ABW6BY8J5DUS7F4B' where id=5; -update noar tt set v0='K62ZQCPLYBRSQ7QOG71H' where id=5; -update noar ti set v0='K62ZQCPLYBRSQ7QOG71H' where id=5; -update noar tt set b2='AWI' where id=5; -update noar ti set b2='AWI' where id=5; -update noar tt set v0='8457IMW1E4BP0H4WC52SECB1BATN61' where id=6; -update noar ti set v0='8457IMW1E4BP0H4WC52SECB1BATN61' where id=6; -update noar tt set b0='PI5YYKCQE3HBP70BJIXNE8ZZDTP6F' where id=6; -update noar ti set b0='PI5YYKCQE3HBP70BJIXNE8ZZDTP6F' where id=6; -update noar tt set v0='BXMLD0HEBZC3T' where id=6; -update noar ti set v0='BXMLD0HEBZC3T' where id=6; -update noar tt set b1='PSL98PMQ2W1RW2KCHW43GDFG7ST' where id=6; -update noar ti set b1='PSL98PMQ2W1RW2KCHW43GDFG7ST' where id=6; -update noar tt set v0='LC83UXCADG6MLMLXM9SKH5P' where id=6; -update noar ti set v0='LC83UXCADG6MLMLXM9SKH5P' where id=6; -update noar tt set b2='BHXS0HL90GQG22Y9HND16MAN9PO7ZZE2' where id=6; -update noar ti set b2='BHXS0HL90GQG22Y9HND16MAN9PO7ZZE2' where id=6; -update noar tt set v0='P3OKH912FY11UDU12' where id=7; -update noar ti set v0='P3OKH912FY11UDU12' where id=7; -update noar tt set b0='OCETZULD1T6U158J2W8JFN' where id=7; -update noar ti set b0='OCETZULD1T6U158J2W8JFN' where id=7; -update noar tt set v0='E5NI0FUGU' where id=7; -update noar ti set v0='E5NI0FUGU' where id=7; -update noar tt set b1='LVE8KFLUX3PZZ7PD6LOQFFACP61X1QL1' where id=7; -update noar ti set b1='LVE8KFLUX3PZZ7PD6LOQFFACP61X1QL1' where id=7; -update noar tt set v0='I0D5Z7I0F7206QTT7AEGMODTJQ' where id=7; -update noar ti set v0='I0D5Z7I0F7206QTT7AEGMODTJQ' where id=7; -update noar tt set b2='0MD' where id=7; -update noar ti set b2='0MD' where id=7; -update noar tt set v0='ZN' where id=8; -update noar ti set v0='ZN' where id=8; -update noar tt set b0='RD0D9ITUK1' where id=8; -update noar ti set b0='RD0D9ITUK1' where id=8; -update noar tt set v0='EX5C2HATSE86' where id=8; -update noar ti set v0='EX5C2HATSE86' where id=8; -update noar tt set b1='C80UATLXF' where id=8; -update noar ti set b1='C80UATLXF' where id=8; -update noar tt set v0='5' where id=8; -update noar ti set v0='5' where id=8; -update noar tt set b2='A0SRJ89IN43O6OGGL0BDJWY7TM4' where id=8; -update noar ti set b2='A0SRJ89IN43O6OGGL0BDJWY7TM4' where id=8; -update noar tt set v0='KZ8H5583AL' where id=9; -update noar ti set v0='KZ8H5583AL' where id=9; -update noar tt set b0='FU7WY7JUN' where id=9; -update noar ti set b0='FU7WY7JUN' where id=9; -update noar tt set v0='IZXZOPQK9MWBTF5' where id=9; -update noar ti set v0='IZXZOPQK9MWBTF5' where id=9; -update noar tt set b1='DR7HY0KTDLO' where id=9; -update noar ti set b1='DR7HY0KTDLO' where id=9; -update noar tt set v0='0I9VUGMMTV' where id=9; -update noar ti set v0='0I9VUGMMTV' where id=9; -update noar tt set b2='MIEU' where id=9; -update noar ti set b2='MIEU' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -v0 varchar(256) not null, -b0 blob not null, -b1 longblob not null, -b2 mediumblob not null -) engine=tokudb; -insert into tt values (1,'','','',''); -insert into tt values (2,'','','',''); -insert into tt values (3,'','','',''); -insert into tt values (4,'','','',''); -insert into tt values (5,'','','',''); -insert into tt values (6,'','','',''); -insert into tt values (7,'','','',''); -insert into tt values (8,'','','',''); -insert into tt values (9,'','','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='OGF8S4CV8UIBRJK' where id=1; -update noar ti set v0='OGF8S4CV8UIBRJK' where id=1; -update noar tt set b0='T75D7OOZ' where id=1; -update noar ti set b0='T75D7OOZ' where id=1; -update noar tt set v0='0' where id=1; -update noar ti set v0='0' where id=1; -update noar tt set b1='54MVG5ZSZ47TNF1VKZP6PFJY' where id=1; -update noar ti set b1='54MVG5ZSZ47TNF1VKZP6PFJY' where id=1; -update noar tt set v0='LKGMQHR701SPB' where id=1; -update noar ti set v0='LKGMQHR701SPB' where id=1; -update noar tt set b2='UOMNKV4466VEG' where id=1; -update noar ti set b2='UOMNKV4466VEG' where id=1; -update noar tt set v0='4D7XOLA' where id=2; -update noar ti set v0='4D7XOLA' where id=2; -update noar tt set b0='4H3JTB8R7ZXTI9XRH9KIC77I' where id=2; -update noar ti set b0='4H3JTB8R7ZXTI9XRH9KIC77I' where id=2; -update noar tt set v0='QQP9ELND7B1R7FH64GBV6K34' where id=2; -update noar ti set v0='QQP9ELND7B1R7FH64GBV6K34' where id=2; -update noar tt set b1='SU6YJ9QL1R' where id=2; -update noar ti set b1='SU6YJ9QL1R' where id=2; -update noar tt set v0='20LT58RSVJPTNZ9L2QNLT38057' where id=2; -update noar ti set v0='20LT58RSVJPTNZ9L2QNLT38057' where id=2; -update noar tt set b2='KCDW11AHUJU99' where id=2; -update noar ti set b2='KCDW11AHUJU99' where id=2; -update noar tt set v0='B76FR2JXLI90MXGMA6UE0VL4U1Y621MA' where id=3; -update noar ti set v0='B76FR2JXLI90MXGMA6UE0VL4U1Y621MA' where id=3; -update noar tt set b0='7YV1RQ849H' where id=3; -update noar ti set b0='7YV1RQ849H' where id=3; -update noar tt set v0='UI49S' where id=3; -update noar ti set v0='UI49S' where id=3; -update noar tt set b1='YC5QVA2F6T5' where id=3; -update noar ti set b1='YC5QVA2F6T5' where id=3; -update noar tt set v0='NC8C7AX2H4ZAYGBX3JUWUSV3L' where id=3; -update noar ti set v0='NC8C7AX2H4ZAYGBX3JUWUSV3L' where id=3; -update noar tt set b2='J5YO511MXMXB4SRVPW' where id=3; -update noar ti set b2='J5YO511MXMXB4SRVPW' where id=3; -update noar tt set v0='4ZCHSIJ2' where id=4; -update noar ti set v0='4ZCHSIJ2' where id=4; -update noar tt set b0='MD8OP1AW8ZZ3HO1UHB' where id=4; -update noar ti set b0='MD8OP1AW8ZZ3HO1UHB' where id=4; -update noar tt set v0='BKY9CV22I4UCFXJRITOV' where id=4; -update noar ti set v0='BKY9CV22I4UCFXJRITOV' where id=4; -update noar tt set b1='L' where id=4; -update noar ti set b1='L' where id=4; -update noar tt set v0='HBSTXGNYOQY3EVXM63' where id=4; -update noar ti set v0='HBSTXGNYOQY3EVXM63' where id=4; -update noar tt set b2='YUBMWEXZAPSUGY6X12' where id=4; -update noar ti set b2='YUBMWEXZAPSUGY6X12' where id=4; -update noar tt set v0='ZB0D47VRUH5VCAD76HD48TB2AMHI76' where id=5; -update noar ti set v0='ZB0D47VRUH5VCAD76HD48TB2AMHI76' where id=5; -update noar tt set b0='HAPDHQP179B1G5D4H1CYQ' where id=5; -update noar ti set b0='HAPDHQP179B1G5D4H1CYQ' where id=5; -update noar tt set v0='JB8D1I22C178MZ0G0UIM958N3K0G1P1O' where id=5; -update noar ti set v0='JB8D1I22C178MZ0G0UIM958N3K0G1P1O' where id=5; -update noar tt set b1='T' where id=5; -update noar ti set b1='T' where id=5; -update noar tt set v0='6EKFPRM8M9BFVRAW2UG850' where id=5; -update noar ti set v0='6EKFPRM8M9BFVRAW2UG850' where id=5; -update noar tt set b2='XO0RKEEC2194N48B88UV0SHF' where id=5; -update noar ti set b2='XO0RKEEC2194N48B88UV0SHF' where id=5; -update noar tt set v0='TZADOULMPNJ3JHANPBZFH140SXPGE' where id=6; -update noar ti set v0='TZADOULMPNJ3JHANPBZFH140SXPGE' where id=6; -update noar tt set b0='GWA04JMONGKEFW6VAQPXM8CR2XAJ5' where id=6; -update noar ti set b0='GWA04JMONGKEFW6VAQPXM8CR2XAJ5' where id=6; -update noar tt set v0='V777PS2EAODUP2EF7DCUJTS1HJ0IE' where id=6; -update noar ti set v0='V777PS2EAODUP2EF7DCUJTS1HJ0IE' where id=6; -update noar tt set b1='ZD5OA2VP' where id=6; -update noar ti set b1='ZD5OA2VP' where id=6; -update noar tt set v0='7J3IUXJUV9MFO62ZB6B3SNEPJ' where id=6; -update noar ti set v0='7J3IUXJUV9MFO62ZB6B3SNEPJ' where id=6; -update noar tt set b2='1LOSMXMR6BA9LQOJ1CM92DQO' where id=6; -update noar ti set b2='1LOSMXMR6BA9LQOJ1CM92DQO' where id=6; -update noar tt set v0='BUFAD8RDVAR0FO59LTE9DCUSP0WX5' where id=7; -update noar ti set v0='BUFAD8RDVAR0FO59LTE9DCUSP0WX5' where id=7; -update noar tt set b0='ISJCA21RVKMIK7' where id=7; -update noar ti set b0='ISJCA21RVKMIK7' where id=7; -update noar tt set v0='LKX7T6EOL47TSXMLU' where id=7; -update noar ti set v0='LKX7T6EOL47TSXMLU' where id=7; -update noar tt set b1='CNWSS0YLD72AHOXZT3O5LQNU' where id=7; -update noar ti set b1='CNWSS0YLD72AHOXZT3O5LQNU' where id=7; -update noar tt set v0='O5AP3YS' where id=7; -update noar ti set v0='O5AP3YS' where id=7; -update noar tt set b2='6RIZ71MVLAMRKLIF2RB6H' where id=7; -update noar ti set b2='6RIZ71MVLAMRKLIF2RB6H' where id=7; -update noar tt set v0='CFUNXTGHZDYB0G7PCFLEFTXS5N4R8O8V' where id=8; -update noar ti set v0='CFUNXTGHZDYB0G7PCFLEFTXS5N4R8O8V' where id=8; -update noar tt set b0='6HCL' where id=8; -update noar ti set b0='6HCL' where id=8; -update noar tt set v0='NUMG46G4WTUBB3P9HCUHP8GNL8XXG' where id=8; -update noar ti set v0='NUMG46G4WTUBB3P9HCUHP8GNL8XXG' where id=8; -update noar tt set b1='ZPM9N1IV4WTNOS282QCRSF' where id=8; -update noar ti set b1='ZPM9N1IV4WTNOS282QCRSF' where id=8; -update noar tt set v0='5BLXWZSJOT2AKBETM8EW1FS' where id=8; -update noar ti set v0='5BLXWZSJOT2AKBETM8EW1FS' where id=8; -update noar tt set b2='RMHV8S61' where id=8; -update noar ti set b2='RMHV8S61' where id=8; -update noar tt set v0='JH8XGGF60CPEFHLXSCN1MTWK2TMONWN6' where id=9; -update noar ti set v0='JH8XGGF60CPEFHLXSCN1MTWK2TMONWN6' where id=9; -update noar tt set b0='5BXCHY1RZN2NB5ITHP63ZCKRWUZ77K' where id=9; -update noar ti set b0='5BXCHY1RZN2NB5ITHP63ZCKRWUZ77K' where id=9; -update noar tt set v0='0YY1UJT64QAY6CCR1XP5L' where id=9; -update noar ti set v0='0YY1UJT64QAY6CCR1XP5L' where id=9; -update noar tt set b1='K60G2FL9BID4XERZD9' where id=9; -update noar ti set b1='K60G2FL9BID4XERZD9' where id=9; -update noar tt set v0='P2YZQZ5PK4' where id=9; -update noar ti set v0='P2YZQZ5PK4' where id=9; -update noar tt set b2='2R5M9BAC' where id=9; -update noar ti set b2='2R5M9BAC' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -v0 varchar(32) null, -b0 blob null, -b1 longblob null, -b2 longblob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='E9X1ZQFL2' where id=1; -update noar ti set v0='E9X1ZQFL2' where id=1; -update noar tt set b0='K13V8XFTH67JPBHZHA1JZ4S70' where id=1; -update noar ti set b0='K13V8XFTH67JPBHZHA1JZ4S70' where id=1; -update noar tt set v0='BC2TSN3ZLQGRNQ89' where id=1; -update noar ti set v0='BC2TSN3ZLQGRNQ89' where id=1; -update noar tt set b1='MV1WVXUZ4' where id=1; -update noar ti set b1='MV1WVXUZ4' where id=1; -update noar tt set v0='8S7SPB0UZ6E7O8J97P1' where id=1; -update noar ti set v0='8S7SPB0UZ6E7O8J97P1' where id=1; -update noar tt set b2='U2B4FY7YHF9B8Z9LETFI3VWPNKI' where id=1; -update noar ti set b2='U2B4FY7YHF9B8Z9LETFI3VWPNKI' where id=1; -update noar tt set v0='8RFOEHPEAE3HKABL49Z' where id=2; -update noar ti set v0='8RFOEHPEAE3HKABL49Z' where id=2; -update noar tt set b0='OZC6BF4U6' where id=2; -update noar ti set b0='OZC6BF4U6' where id=2; -update noar tt set v0='X3' where id=2; -update noar ti set v0='X3' where id=2; -update noar tt set b1='RQ3' where id=2; -update noar ti set b1='RQ3' where id=2; -update noar tt set v0='KAEM91UTZXD' where id=2; -update noar ti set v0='KAEM91UTZXD' where id=2; -update noar tt set b2='I3KX1PRUPRHPC0K8L4YMS4P' where id=2; -update noar ti set b2='I3KX1PRUPRHPC0K8L4YMS4P' where id=2; -update noar tt set v0='XEB7BGPTDDG1QSXC' where id=3; -update noar ti set v0='XEB7BGPTDDG1QSXC' where id=3; -update noar tt set b0='M1D' where id=3; -update noar ti set b0='M1D' where id=3; -update noar tt set v0='SRY2GIS7X8Y' where id=3; -update noar ti set v0='SRY2GIS7X8Y' where id=3; -update noar tt set b1='FLVIO6Q9WGWIV3RSZEXIXMZM8JB3IX' where id=3; -update noar ti set b1='FLVIO6Q9WGWIV3RSZEXIXMZM8JB3IX' where id=3; -update noar tt set v0='7C2PA3SU6W' where id=3; -update noar ti set v0='7C2PA3SU6W' where id=3; -update noar tt set b2='49A3HWOHHXIR2ZWGNAR8B' where id=3; -update noar ti set b2='49A3HWOHHXIR2ZWGNAR8B' where id=3; -update noar tt set v0='8Y0E7HVQD9Y5GBAZ9MC96EQMEUD3EI0P' where id=4; -update noar ti set v0='8Y0E7HVQD9Y5GBAZ9MC96EQMEUD3EI0P' where id=4; -update noar tt set b0='JUDRBMNXN' where id=4; -update noar ti set b0='JUDRBMNXN' where id=4; -update noar tt set v0='91JERZ0R3D6XTIZ7ALYF225X4' where id=4; -update noar ti set v0='91JERZ0R3D6XTIZ7ALYF225X4' where id=4; -update noar tt set b1='T1FOP' where id=4; -update noar ti set b1='T1FOP' where id=4; -update noar tt set v0='ZAU14NLPWR6NZ3JB58UO61Y' where id=4; -update noar ti set v0='ZAU14NLPWR6NZ3JB58UO61Y' where id=4; -update noar tt set b2='YRMD384H78IH85G7ARJOYGB69F5I4' where id=4; -update noar ti set b2='YRMD384H78IH85G7ARJOYGB69F5I4' where id=4; -update noar tt set v0='LAKZ9TGOI88Q81AYJMN3LBJMX0EBG' where id=5; -update noar ti set v0='LAKZ9TGOI88Q81AYJMN3LBJMX0EBG' where id=5; -update noar tt set b0='2WLZ0RW1JUJ' where id=5; -update noar ti set b0='2WLZ0RW1JUJ' where id=5; -update noar tt set v0='AT4FECL92TKPAG6V' where id=5; -update noar ti set v0='AT4FECL92TKPAG6V' where id=5; -update noar tt set b1='Z' where id=5; -update noar ti set b1='Z' where id=5; -update noar tt set v0='T7W76QACTXQ' where id=5; -update noar ti set v0='T7W76QACTXQ' where id=5; -update noar tt set b2='RY46816SDX7FWQO5L4VG' where id=5; -update noar ti set b2='RY46816SDX7FWQO5L4VG' where id=5; -update noar tt set v0='9XSQZ1SDT8EU1G91' where id=6; -update noar ti set v0='9XSQZ1SDT8EU1G91' where id=6; -update noar tt set b0='0QY' where id=6; -update noar ti set b0='0QY' where id=6; -update noar tt set v0='J17FR0PTJ3GKCHFGGSGDJ' where id=6; -update noar ti set v0='J17FR0PTJ3GKCHFGGSGDJ' where id=6; -update noar tt set b1='J4XJJAV6I0ARM4A7FTWKD6LM1RVZRU' where id=6; -update noar ti set b1='J4XJJAV6I0ARM4A7FTWKD6LM1RVZRU' where id=6; -update noar tt set v0='FDWQ8MAM2V3RSHVBK2S7' where id=6; -update noar ti set v0='FDWQ8MAM2V3RSHVBK2S7' where id=6; -update noar tt set b2='VEYC7DH9CERWMKEE6PQLUC8SH6GZE' where id=6; -update noar ti set b2='VEYC7DH9CERWMKEE6PQLUC8SH6GZE' where id=6; -update noar tt set v0='CB431YJL5LGPYE1MWMLKCE3PR27QF8CI' where id=7; -update noar ti set v0='CB431YJL5LGPYE1MWMLKCE3PR27QF8CI' where id=7; -update noar tt set b0='OKDSCH277STM4' where id=7; -update noar ti set b0='OKDSCH277STM4' where id=7; -update noar tt set v0='ZE6AEHLU9EFAZSD' where id=7; -update noar ti set v0='ZE6AEHLU9EFAZSD' where id=7; -update noar tt set b1='D8AOOGBV' where id=7; -update noar ti set b1='D8AOOGBV' where id=7; -update noar tt set v0='ZMJP' where id=7; -update noar ti set v0='ZMJP' where id=7; -update noar tt set b2='C8QY8GALNS8Q7ZL1' where id=7; -update noar ti set b2='C8QY8GALNS8Q7ZL1' where id=7; -update noar tt set v0='ZXEQE9' where id=8; -update noar ti set v0='ZXEQE9' where id=8; -update noar tt set b0='T5OEYUDWJ6D5RVWEIOPY' where id=8; -update noar ti set b0='T5OEYUDWJ6D5RVWEIOPY' where id=8; -update noar tt set v0='BKOYQQBWMXEUV' where id=8; -update noar ti set v0='BKOYQQBWMXEUV' where id=8; -update noar tt set b1='H2' where id=8; -update noar ti set b1='H2' where id=8; -update noar tt set v0='AXHD6459QSE6GS25N' where id=8; -update noar ti set v0='AXHD6459QSE6GS25N' where id=8; -update noar tt set b2='IF21AE5KO8UK' where id=8; -update noar ti set b2='IF21AE5KO8UK' where id=8; -update noar tt set v0='DLF9A7AEMET1SDX9RSCF0ZTDYMU1' where id=9; -update noar ti set v0='DLF9A7AEMET1SDX9RSCF0ZTDYMU1' where id=9; -update noar tt set b0='W' where id=9; -update noar ti set b0='W' where id=9; -update noar tt set v0='JL' where id=9; -update noar ti set v0='JL' where id=9; -update noar tt set b1='1XEQ1KLE6O3QPFV' where id=9; -update noar ti set b1='1XEQ1KLE6O3QPFV' where id=9; -update noar tt set v0='ETWY5VUTTJKFXVVO4' where id=9; -update noar ti set v0='ETWY5VUTTJKFXVVO4' where id=9; -update noar tt set b2='KSSX637' where id=9; -update noar ti set b2='KSSX637' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -v0 varchar(256) null, -b0 blob null, -b1 longblob null, -b2 longblob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='EGDA2KDOIQ' where id=1; -update noar ti set v0='EGDA2KDOIQ' where id=1; -update noar tt set b0='V2KCA84AYWGABRL9JGASZ3SW3VIF1' where id=1; -update noar ti set b0='V2KCA84AYWGABRL9JGASZ3SW3VIF1' where id=1; -update noar tt set v0='KX9PPE8F377DTF7O1MT40SVSP7' where id=1; -update noar ti set v0='KX9PPE8F377DTF7O1MT40SVSP7' where id=1; -update noar tt set b1='DCHU2GD0WY7W6427J02Z8B130' where id=1; -update noar ti set b1='DCHU2GD0WY7W6427J02Z8B130' where id=1; -update noar tt set v0='0NRM5JSTS5' where id=1; -update noar ti set v0='0NRM5JSTS5' where id=1; -update noar tt set b2='VA66JSY9BYP43' where id=1; -update noar ti set b2='VA66JSY9BYP43' where id=1; -update noar tt set v0='8NMJ2YMT5QCJX19W6KUSRC1JN1GB6Y1' where id=2; -update noar ti set v0='8NMJ2YMT5QCJX19W6KUSRC1JN1GB6Y1' where id=2; -update noar tt set b0='YMF8DP1G8LVCSWO9JCPV1HOL2YT2M' where id=2; -update noar ti set b0='YMF8DP1G8LVCSWO9JCPV1HOL2YT2M' where id=2; -update noar tt set v0='KOPR6' where id=2; -update noar ti set v0='KOPR6' where id=2; -update noar tt set b1='L0TQQV0JLYK3TLBQF' where id=2; -update noar ti set b1='L0TQQV0JLYK3TLBQF' where id=2; -update noar tt set v0='SBP4498QNZMVROFWL5' where id=2; -update noar ti set v0='SBP4498QNZMVROFWL5' where id=2; -update noar tt set b2='BFVLJGODNP68PZMKX4CLLV4RFI7' where id=2; -update noar ti set b2='BFVLJGODNP68PZMKX4CLLV4RFI7' where id=2; -update noar tt set v0='DOEWDWUR4I0NXLPX04FXL4R0O' where id=3; -update noar ti set v0='DOEWDWUR4I0NXLPX04FXL4R0O' where id=3; -update noar tt set b0='V8ZPN052WMFAKKLRULY3HQOFSIGI' where id=3; -update noar ti set b0='V8ZPN052WMFAKKLRULY3HQOFSIGI' where id=3; -update noar tt set v0='YHTOOUL' where id=3; -update noar ti set v0='YHTOOUL' where id=3; -update noar tt set b1='YLPT9R5H1R5696LA8SQRFM03BY6U6IM' where id=3; -update noar ti set b1='YLPT9R5H1R5696LA8SQRFM03BY6U6IM' where id=3; -update noar tt set v0='4VNUT3D4XRA96' where id=3; -update noar ti set v0='4VNUT3D4XRA96' where id=3; -update noar tt set b2='QEA40Z7SHSHEIYRV' where id=3; -update noar ti set b2='QEA40Z7SHSHEIYRV' where id=3; -update noar tt set v0='CL2ZHJ818MBN' where id=4; -update noar ti set v0='CL2ZHJ818MBN' where id=4; -update noar tt set b0='O' where id=4; -update noar ti set b0='O' where id=4; -update noar tt set v0='3RMZTE70ZWHU' where id=4; -update noar ti set v0='3RMZTE70ZWHU' where id=4; -update noar tt set b1='03FEYLTVYQ4KDX1E5MYUMTOJD0OVO02I' where id=4; -update noar ti set b1='03FEYLTVYQ4KDX1E5MYUMTOJD0OVO02I' where id=4; -update noar tt set v0='EOJFSQ6LW1VK1BEDMLVN3YX8GF6G21GE' where id=4; -update noar ti set v0='EOJFSQ6LW1VK1BEDMLVN3YX8GF6G21GE' where id=4; -update noar tt set b2='KQ9S30UUFLUFQP4R' where id=4; -update noar ti set b2='KQ9S30UUFLUFQP4R' where id=4; -update noar tt set v0='8TI0D' where id=5; -update noar ti set v0='8TI0D' where id=5; -update noar tt set b0='IFK' where id=5; -update noar ti set b0='IFK' where id=5; -update noar tt set v0='E4IPU5EXR1JRYHPUDIMA76UX9GZOV' where id=5; -update noar ti set v0='E4IPU5EXR1JRYHPUDIMA76UX9GZOV' where id=5; -update noar tt set b1='DQVRYY4VYEKRVHNLIWV9MNFJI2L7' where id=5; -update noar ti set b1='DQVRYY4VYEKRVHNLIWV9MNFJI2L7' where id=5; -update noar tt set v0='R3BI37AB7RI52V' where id=5; -update noar ti set v0='R3BI37AB7RI52V' where id=5; -update noar tt set b2='MRGO5UKDJZ2OPSY7YU7KO' where id=5; -update noar ti set b2='MRGO5UKDJZ2OPSY7YU7KO' where id=5; -update noar tt set v0='0J' where id=6; -update noar ti set v0='0J' where id=6; -update noar tt set b0='YINVG' where id=6; -update noar ti set b0='YINVG' where id=6; -update noar tt set v0='QCBSRBO4X9' where id=6; -update noar ti set v0='QCBSRBO4X9' where id=6; -update noar tt set b1='PZSYLPCIHUGURUBCAC4OTS' where id=6; -update noar ti set b1='PZSYLPCIHUGURUBCAC4OTS' where id=6; -update noar tt set v0='OTLMLV51TIZJLTICSAGXIY2' where id=6; -update noar ti set v0='OTLMLV51TIZJLTICSAGXIY2' where id=6; -update noar tt set b2='TZWI30K3CXK5HLYBG' where id=6; -update noar ti set b2='TZWI30K3CXK5HLYBG' where id=6; -update noar tt set v0='CQVGQ4F6DFZ5FQS4BVPUPOO9Q' where id=7; -update noar ti set v0='CQVGQ4F6DFZ5FQS4BVPUPOO9Q' where id=7; -update noar tt set b0='5' where id=7; -update noar ti set b0='5' where id=7; -update noar tt set v0='YFSH71DW4Q5MEWNQVFE2S7P4MU' where id=7; -update noar ti set v0='YFSH71DW4Q5MEWNQVFE2S7P4MU' where id=7; -update noar tt set b1='RID5EBZCYZH7AJVF' where id=7; -update noar ti set b1='RID5EBZCYZH7AJVF' where id=7; -update noar tt set v0='F43' where id=7; -update noar ti set v0='F43' where id=7; -update noar tt set b2='F1TM0VMO' where id=7; -update noar ti set b2='F1TM0VMO' where id=7; -update noar tt set v0='T69KIQ5X9KKJBGDN6NZU4G' where id=8; -update noar ti set v0='T69KIQ5X9KKJBGDN6NZU4G' where id=8; -update noar tt set b0='K86QIKP4SQXL3AK5YTZB74NSD2BKOM9L' where id=8; -update noar ti set b0='K86QIKP4SQXL3AK5YTZB74NSD2BKOM9L' where id=8; -update noar tt set v0='OWLEKG41A2B' where id=8; -update noar ti set v0='OWLEKG41A2B' where id=8; -update noar tt set b1='SHRNZMSUOBIGNVQE2KHB0LUZPS8MGG3' where id=8; -update noar ti set b1='SHRNZMSUOBIGNVQE2KHB0LUZPS8MGG3' where id=8; -update noar tt set v0='5CFHV3OCRL3WAMBPY6JQY6YZKGJ7SR' where id=8; -update noar ti set v0='5CFHV3OCRL3WAMBPY6JQY6YZKGJ7SR' where id=8; -update noar tt set b2='8UB40GWKDGG9GA0SJ08M91' where id=8; -update noar ti set b2='8UB40GWKDGG9GA0SJ08M91' where id=8; -update noar tt set v0='MWPJ2Y1X5JEKXWDQBD3S2O2CERX' where id=9; -update noar ti set v0='MWPJ2Y1X5JEKXWDQBD3S2O2CERX' where id=9; -update noar tt set b0='DPMSNBAWMODY8N0GNGMKMKJ' where id=9; -update noar ti set b0='DPMSNBAWMODY8N0GNGMKMKJ' where id=9; -update noar tt set v0='PTT5DA2T0AQX61FUOTUZRC' where id=9; -update noar ti set v0='PTT5DA2T0AQX61FUOTUZRC' where id=9; -update noar tt set b1='PYT1EZGI5' where id=9; -update noar ti set b1='PYT1EZGI5' where id=9; -update noar tt set v0='QF6NCX49Z3TCAFARJG6HTR25VEOAWB' where id=9; -update noar ti set v0='QF6NCX49Z3TCAFARJG6HTR25VEOAWB' where id=9; -update noar tt set b2='XE5L6NUD9ILXL' where id=9; -update noar ti set b2='XE5L6NUD9ILXL' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -v0 varchar(32) not null, -b0 blob not null, -b1 longblob not null, -b2 longblob not null -) engine=tokudb; -insert into tt values (1,'','','',''); -insert into tt values (2,'','','',''); -insert into tt values (3,'','','',''); -insert into tt values (4,'','','',''); -insert into tt values (5,'','','',''); -insert into tt values (6,'','','',''); -insert into tt values (7,'','','',''); -insert into tt values (8,'','','',''); -insert into tt values (9,'','','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='VWO3A712ZVZBUDH08CF' where id=1; -update noar ti set v0='VWO3A712ZVZBUDH08CF' where id=1; -update noar tt set b0='ZIATHD6HSU3TKLIUK75K8VD6ZO2QWIO' where id=1; -update noar ti set b0='ZIATHD6HSU3TKLIUK75K8VD6ZO2QWIO' where id=1; -update noar tt set v0='KP5UUHUKL69QWLSXBXQ' where id=1; -update noar ti set v0='KP5UUHUKL69QWLSXBXQ' where id=1; -update noar tt set b1='CZL44K6Y8F78X9' where id=1; -update noar ti set b1='CZL44K6Y8F78X9' where id=1; -update noar tt set v0='HDZUXV3R8UYONE4RFJRUMFTZ' where id=1; -update noar ti set v0='HDZUXV3R8UYONE4RFJRUMFTZ' where id=1; -update noar tt set b2='CLC7U' where id=1; -update noar ti set b2='CLC7U' where id=1; -update noar tt set v0='FC' where id=2; -update noar ti set v0='FC' where id=2; -update noar tt set b0='5DHVWRZY4VL12E92V132RO2PE' where id=2; -update noar ti set b0='5DHVWRZY4VL12E92V132RO2PE' where id=2; -update noar tt set v0='14' where id=2; -update noar ti set v0='14' where id=2; -update noar tt set b1='LILAHSEV' where id=2; -update noar ti set b1='LILAHSEV' where id=2; -update noar tt set v0='5H0D' where id=2; -update noar ti set v0='5H0D' where id=2; -update noar tt set b2='T4G4R6YC2037R' where id=2; -update noar ti set b2='T4G4R6YC2037R' where id=2; -update noar tt set v0='Z71HR4ETZM8FKKH7KTKD0V3NRI' where id=3; -update noar ti set v0='Z71HR4ETZM8FKKH7KTKD0V3NRI' where id=3; -update noar tt set b0='G25ZNGIDWQBZR4AY2DVDG3I' where id=3; -update noar ti set b0='G25ZNGIDWQBZR4AY2DVDG3I' where id=3; -update noar tt set v0='YPKR2MTJJJ18G56' where id=3; -update noar ti set v0='YPKR2MTJJJ18G56' where id=3; -update noar tt set b1='0CPGGZA57RCQESQKN0A5WF' where id=3; -update noar ti set b1='0CPGGZA57RCQESQKN0A5WF' where id=3; -update noar tt set v0='UFX3UDFBDDB8Q2TMTX6TIUGJ4KOSIJMS' where id=3; -update noar ti set v0='UFX3UDFBDDB8Q2TMTX6TIUGJ4KOSIJMS' where id=3; -update noar tt set b2='GCQ922U90MSND5JYGRYXB9LO' where id=3; -update noar ti set b2='GCQ922U90MSND5JYGRYXB9LO' where id=3; -update noar tt set v0='ZJ' where id=4; -update noar ti set v0='ZJ' where id=4; -update noar tt set b0='M941P3L1H' where id=4; -update noar ti set b0='M941P3L1H' where id=4; -update noar tt set v0='3XIQSMAP12VZEHK04TN2MGRGOX0L12' where id=4; -update noar ti set v0='3XIQSMAP12VZEHK04TN2MGRGOX0L12' where id=4; -update noar tt set b1='7EKKE2MKYBMGYZB' where id=4; -update noar ti set b1='7EKKE2MKYBMGYZB' where id=4; -update noar tt set v0='VCUMP6EC29MLWWAY7C5IC' where id=4; -update noar ti set v0='VCUMP6EC29MLWWAY7C5IC' where id=4; -update noar tt set b2='UNY49XCPVB7MHEUEP9N' where id=4; -update noar ti set b2='UNY49XCPVB7MHEUEP9N' where id=4; -update noar tt set v0='CP0T9CXVZ8YBSKC70JDWUOX7I8BZV' where id=5; -update noar ti set v0='CP0T9CXVZ8YBSKC70JDWUOX7I8BZV' where id=5; -update noar tt set b0='F6MQI' where id=5; -update noar ti set b0='F6MQI' where id=5; -update noar tt set v0='LS3TOVNHO7YJCQ8UCKKXH2DO60G6KHY' where id=5; -update noar ti set v0='LS3TOVNHO7YJCQ8UCKKXH2DO60G6KHY' where id=5; -update noar tt set b1='F8QFN99W5AUGQKF4NOPQLQHH0' where id=5; -update noar ti set b1='F8QFN99W5AUGQKF4NOPQLQHH0' where id=5; -update noar tt set v0='9' where id=5; -update noar ti set v0='9' where id=5; -update noar tt set b2='JOS43IZ' where id=5; -update noar ti set b2='JOS43IZ' where id=5; -update noar tt set v0='ZYK7HW' where id=6; -update noar ti set v0='ZYK7HW' where id=6; -update noar tt set b0='7TO4Q7UYVT9JCJQM98OXVUCUJ3DRGJS' where id=6; -update noar ti set b0='7TO4Q7UYVT9JCJQM98OXVUCUJ3DRGJS' where id=6; -update noar tt set v0='DJFP76V21' where id=6; -update noar ti set v0='DJFP76V21' where id=6; -update noar tt set b1='0D65C9XPN1UEYLT5P1VAYDYA50Z4DM' where id=6; -update noar ti set b1='0D65C9XPN1UEYLT5P1VAYDYA50Z4DM' where id=6; -update noar tt set v0='JXBTOQCXPF2FSKMVQAGW' where id=6; -update noar ti set v0='JXBTOQCXPF2FSKMVQAGW' where id=6; -update noar tt set b2='MJVY8F7Z9K' where id=6; -update noar ti set b2='MJVY8F7Z9K' where id=6; -update noar tt set v0='V1DYXM4A0R1RWV7KI4ZWHTLQ' where id=7; -update noar ti set v0='V1DYXM4A0R1RWV7KI4ZWHTLQ' where id=7; -update noar tt set b0='RKD' where id=7; -update noar ti set b0='RKD' where id=7; -update noar tt set v0='HFVCMUV8WK69OB' where id=7; -update noar ti set v0='HFVCMUV8WK69OB' where id=7; -update noar tt set b1='2Z7MMK4W42T6SF8KYMJHZAAM52DVPA' where id=7; -update noar ti set b1='2Z7MMK4W42T6SF8KYMJHZAAM52DVPA' where id=7; -update noar tt set v0='5ZT71ABYR2S2B8MFZMLSY7ECS83Q3SSI' where id=7; -update noar ti set v0='5ZT71ABYR2S2B8MFZMLSY7ECS83Q3SSI' where id=7; -update noar tt set b2='PB9ZWRPZQFJJ' where id=7; -update noar ti set b2='PB9ZWRPZQFJJ' where id=7; -update noar tt set v0='WJY1Q4AX5JOI4KZZFC92WFJ' where id=8; -update noar ti set v0='WJY1Q4AX5JOI4KZZFC92WFJ' where id=8; -update noar tt set b0='QP6FVY1W2B6OMK0CMB9RC76M66BKO7' where id=8; -update noar ti set b0='QP6FVY1W2B6OMK0CMB9RC76M66BKO7' where id=8; -update noar tt set v0='TAZQ958I1WQTXYVW' where id=8; -update noar ti set v0='TAZQ958I1WQTXYVW' where id=8; -update noar tt set b1='8TXO2S49383RAXPFC0MYG' where id=8; -update noar ti set b1='8TXO2S49383RAXPFC0MYG' where id=8; -update noar tt set v0='A9FC5GF4N9KYENFXNPNJBO7SGAP1RUE' where id=8; -update noar ti set v0='A9FC5GF4N9KYENFXNPNJBO7SGAP1RUE' where id=8; -update noar tt set b2='O42' where id=8; -update noar ti set b2='O42' where id=8; -update noar tt set v0='YP9SI2' where id=9; -update noar ti set v0='YP9SI2' where id=9; -update noar tt set b0='DJXRKXCTUW83AHPOBVUEF' where id=9; -update noar ti set b0='DJXRKXCTUW83AHPOBVUEF' where id=9; -update noar tt set v0='0HVNY2PVXWUENCOLF5RE0SVO2XZ7RSVU' where id=9; -update noar ti set v0='0HVNY2PVXWUENCOLF5RE0SVO2XZ7RSVU' where id=9; -update noar tt set b1='XW264A8VRDLQH52TY0I3YA96KHDUIKR' where id=9; -update noar ti set b1='XW264A8VRDLQH52TY0I3YA96KHDUIKR' where id=9; -update noar tt set v0='QS7E25L9FVQJCKN17M3QX' where id=9; -update noar ti set v0='QS7E25L9FVQJCKN17M3QX' where id=9; -update noar tt set b2='1RGRLE46EK2E1I95QL3T9GY02JWQDK' where id=9; -update noar ti set b2='1RGRLE46EK2E1I95QL3T9GY02JWQDK' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -v0 varchar(256) not null, -b0 blob not null, -b1 longblob not null, -b2 longblob not null -) engine=tokudb; -insert into tt values (1,'','','',''); -insert into tt values (2,'','','',''); -insert into tt values (3,'','','',''); -insert into tt values (4,'','','',''); -insert into tt values (5,'','','',''); -insert into tt values (6,'','','',''); -insert into tt values (7,'','','',''); -insert into tt values (8,'','','',''); -insert into tt values (9,'','','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='3E5YX5Z5773UPSE2' where id=1; -update noar ti set v0='3E5YX5Z5773UPSE2' where id=1; -update noar tt set b0='KDCK' where id=1; -update noar ti set b0='KDCK' where id=1; -update noar tt set v0='SD6FJW' where id=1; -update noar ti set v0='SD6FJW' where id=1; -update noar tt set b1='F1ATBZF2P7E' where id=1; -update noar ti set b1='F1ATBZF2P7E' where id=1; -update noar tt set v0='Q5NLU1KY0MQBT78MGBLDX0FZZMTST' where id=1; -update noar ti set v0='Q5NLU1KY0MQBT78MGBLDX0FZZMTST' where id=1; -update noar tt set b2='19KGDFSPVFF7DZRDMDIWE035GQNDYQ' where id=1; -update noar ti set b2='19KGDFSPVFF7DZRDMDIWE035GQNDYQ' where id=1; -update noar tt set v0='VDQX8XDJEH' where id=2; -update noar ti set v0='VDQX8XDJEH' where id=2; -update noar tt set b0='T1WQXDT80RCFVTA3TKOB3' where id=2; -update noar ti set b0='T1WQXDT80RCFVTA3TKOB3' where id=2; -update noar tt set v0='JUO2' where id=2; -update noar ti set v0='JUO2' where id=2; -update noar tt set b1='KEAA53ZM' where id=2; -update noar ti set b1='KEAA53ZM' where id=2; -update noar tt set v0='HT132K73J99A7Q8V1M8C' where id=2; -update noar ti set v0='HT132K73J99A7Q8V1M8C' where id=2; -update noar tt set b2='Z1U9DF3RUL' where id=2; -update noar ti set b2='Z1U9DF3RUL' where id=2; -update noar tt set v0='AZD58D4PA4OR4' where id=3; -update noar ti set v0='AZD58D4PA4OR4' where id=3; -update noar tt set b0='V0MOA67KZF5' where id=3; -update noar ti set b0='V0MOA67KZF5' where id=3; -update noar tt set v0='VKL2WW1TGML6U3N' where id=3; -update noar ti set v0='VKL2WW1TGML6U3N' where id=3; -update noar tt set b1='ZTEFUWY8F4HUKG6FRBAX8' where id=3; -update noar ti set b1='ZTEFUWY8F4HUKG6FRBAX8' where id=3; -update noar tt set v0='PYDIIRM2YJ0H36GH7J8RGOOKCSXGK' where id=3; -update noar ti set v0='PYDIIRM2YJ0H36GH7J8RGOOKCSXGK' where id=3; -update noar tt set b2='5Z3RKX9OFQFDSHSRO8' where id=3; -update noar ti set b2='5Z3RKX9OFQFDSHSRO8' where id=3; -update noar tt set v0='PCMJD' where id=4; -update noar ti set v0='PCMJD' where id=4; -update noar tt set b0='NYBZ' where id=4; -update noar ti set b0='NYBZ' where id=4; -update noar tt set v0='HEMA2IXZH7U' where id=4; -update noar ti set v0='HEMA2IXZH7U' where id=4; -update noar tt set b1='ZWNGNO65U70CLAIMSQZTH' where id=4; -update noar ti set b1='ZWNGNO65U70CLAIMSQZTH' where id=4; -update noar tt set v0='LTBTK34ZMP8EC8NGJN2U8S7MOF' where id=4; -update noar ti set v0='LTBTK34ZMP8EC8NGJN2U8S7MOF' where id=4; -update noar tt set b2='Z60LZ30G2RAQ35QC4XSUFH8A' where id=4; -update noar ti set b2='Z60LZ30G2RAQ35QC4XSUFH8A' where id=4; -update noar tt set v0='6NNN2UR5TOY2Y13X9LPR' where id=5; -update noar ti set v0='6NNN2UR5TOY2Y13X9LPR' where id=5; -update noar tt set b0='34UZRLX' where id=5; -update noar ti set b0='34UZRLX' where id=5; -update noar tt set v0='Y81CMO1FJ8YHP' where id=5; -update noar ti set v0='Y81CMO1FJ8YHP' where id=5; -update noar tt set b1='DG95LTJ2R5OLRMKW51V1OAY4QF2EDKE' where id=5; -update noar ti set b1='DG95LTJ2R5OLRMKW51V1OAY4QF2EDKE' where id=5; -update noar tt set v0='WE' where id=5; -update noar ti set v0='WE' where id=5; -update noar tt set b2='IKY1LND0' where id=5; -update noar ti set b2='IKY1LND0' where id=5; -update noar tt set v0='BTBM37AYQ5HJZ0P1' where id=6; -update noar ti set v0='BTBM37AYQ5HJZ0P1' where id=6; -update noar tt set b0='RZ7IXYJ8LQ5PJ5FPZK3DKA2' where id=6; -update noar ti set b0='RZ7IXYJ8LQ5PJ5FPZK3DKA2' where id=6; -update noar tt set v0='2DE80SDS4TST8' where id=6; -update noar ti set v0='2DE80SDS4TST8' where id=6; -update noar tt set b1='GF' where id=6; -update noar ti set b1='GF' where id=6; -update noar tt set v0='2M69PA5W7V' where id=6; -update noar ti set v0='2M69PA5W7V' where id=6; -update noar tt set b2='SWJOGR2AKBSA' where id=6; -update noar ti set b2='SWJOGR2AKBSA' where id=6; -update noar tt set v0='5ASHPRGS1G88TB2LTMYR' where id=7; -update noar ti set v0='5ASHPRGS1G88TB2LTMYR' where id=7; -update noar tt set b0='O' where id=7; -update noar ti set b0='O' where id=7; -update noar tt set v0='93WKA537DAWGUP4I3A1C9IVMLJJOXT' where id=7; -update noar ti set v0='93WKA537DAWGUP4I3A1C9IVMLJJOXT' where id=7; -update noar tt set b1='HR4H1KFC6R59JS8R0905EH' where id=7; -update noar ti set b1='HR4H1KFC6R59JS8R0905EH' where id=7; -update noar tt set v0='IPPWN2G38QGFWYD9U1O2ZQDS0DG8E' where id=7; -update noar ti set v0='IPPWN2G38QGFWYD9U1O2ZQDS0DG8E' where id=7; -update noar tt set b2='WG2A3' where id=7; -update noar ti set b2='WG2A3' where id=7; -update noar tt set v0='MC2Z6ZTPMYQNX5HV' where id=8; -update noar ti set v0='MC2Z6ZTPMYQNX5HV' where id=8; -update noar tt set b0='ZAXGR' where id=8; -update noar ti set b0='ZAXGR' where id=8; -update noar tt set v0='X4KXXXSDZZWD' where id=8; -update noar ti set v0='X4KXXXSDZZWD' where id=8; -update noar tt set b1='NLH77745U3KLMUG6FN7KNDAUKSN3Y' where id=8; -update noar ti set b1='NLH77745U3KLMUG6FN7KNDAUKSN3Y' where id=8; -update noar tt set v0='87G679F9P' where id=8; -update noar ti set v0='87G679F9P' where id=8; -update noar tt set b2='P2A' where id=8; -update noar ti set b2='P2A' where id=8; -update noar tt set v0='GTQI549SI' where id=9; -update noar ti set v0='GTQI549SI' where id=9; -update noar tt set b0='SMYM4HK1WUSCFXXUW0YKKYD8SBDDIT6P' where id=9; -update noar ti set b0='SMYM4HK1WUSCFXXUW0YKKYD8SBDDIT6P' where id=9; -update noar tt set v0='V2E1VUGQ7OQ1RWCNKE8A' where id=9; -update noar ti set v0='V2E1VUGQ7OQ1RWCNKE8A' where id=9; -update noar tt set b1='F83DXDEXBSQXI272ZT2J6D1GWJW' where id=9; -update noar ti set b1='F83DXDEXBSQXI272ZT2J6D1GWJW' where id=9; -update noar tt set v0='KMGBS8LL' where id=9; -update noar ti set v0='KMGBS8LL' where id=9; -update noar tt set b2='3XOBIJIR8Q4JUCCC4WKKS' where id=9; -update noar ti set b2='3XOBIJIR8Q4JUCCC4WKKS' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -v0 varchar(32) null, -b0 mediumblob null, -b1 tinyblob null, -b2 tinyblob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='M3HMHEMY1I' where id=1; -update noar ti set v0='M3HMHEMY1I' where id=1; -update noar tt set b0='4OKEO80D4JQV18' where id=1; -update noar ti set b0='4OKEO80D4JQV18' where id=1; -update noar tt set v0='UY' where id=1; -update noar ti set v0='UY' where id=1; -update noar tt set b1='V1GEEKHM' where id=1; -update noar ti set b1='V1GEEKHM' where id=1; -update noar tt set v0='WYNIBVMHCZZ' where id=1; -update noar ti set v0='WYNIBVMHCZZ' where id=1; -update noar tt set b2='8FI09VBHFPZAIFSZO4A' where id=1; -update noar ti set b2='8FI09VBHFPZAIFSZO4A' where id=1; -update noar tt set v0='2UP2XT816OGCKGBLFTZJ5A93TQ3VVWE' where id=2; -update noar ti set v0='2UP2XT816OGCKGBLFTZJ5A93TQ3VVWE' where id=2; -update noar tt set b0='SRPWQ7PGD6ZJ757GQEM5' where id=2; -update noar ti set b0='SRPWQ7PGD6ZJ757GQEM5' where id=2; -update noar tt set v0='WNIT7ZDSPO4M48T43LX' where id=2; -update noar ti set v0='WNIT7ZDSPO4M48T43LX' where id=2; -update noar tt set b1='LQCXLQDY7SUDG0MLB8DVDSL14YY3DBWB' where id=2; -update noar ti set b1='LQCXLQDY7SUDG0MLB8DVDSL14YY3DBWB' where id=2; -update noar tt set v0='L2BDMY0P0FFPBQYPS8' where id=2; -update noar ti set v0='L2BDMY0P0FFPBQYPS8' where id=2; -update noar tt set b2='BDZ7S1DVCHEDVN8TNPU5A' where id=2; -update noar ti set b2='BDZ7S1DVCHEDVN8TNPU5A' where id=2; -update noar tt set v0='32Q2U77VPEPJXRKK9TUFV66SCLBIRSO' where id=3; -update noar ti set v0='32Q2U77VPEPJXRKK9TUFV66SCLBIRSO' where id=3; -update noar tt set b0='0C4OJ3SR37Z6JW23QVGECT9AMZGODF3K' where id=3; -update noar ti set b0='0C4OJ3SR37Z6JW23QVGECT9AMZGODF3K' where id=3; -update noar tt set v0='F354VCIO6IFKAZ' where id=3; -update noar ti set v0='F354VCIO6IFKAZ' where id=3; -update noar tt set b1='8ENNVRR' where id=3; -update noar ti set b1='8ENNVRR' where id=3; -update noar tt set v0='1NU7MK0OXPIXA44DFYZPS6MF' where id=3; -update noar ti set v0='1NU7MK0OXPIXA44DFYZPS6MF' where id=3; -update noar tt set b2='0V81MMPL92410' where id=3; -update noar ti set b2='0V81MMPL92410' where id=3; -update noar tt set v0='R0J' where id=4; -update noar ti set v0='R0J' where id=4; -update noar tt set b0='Z8Z41S9P4502PX7E' where id=4; -update noar ti set b0='Z8Z41S9P4502PX7E' where id=4; -update noar tt set v0='C9C9I4SMMHNL50QTB0M73QRZ' where id=4; -update noar ti set v0='C9C9I4SMMHNL50QTB0M73QRZ' where id=4; -update noar tt set b1='0FP2V71YFMH0' where id=4; -update noar ti set b1='0FP2V71YFMH0' where id=4; -update noar tt set v0='CYB6CIV' where id=4; -update noar ti set v0='CYB6CIV' where id=4; -update noar tt set b2='T2JSX33MB' where id=4; -update noar ti set b2='T2JSX33MB' where id=4; -update noar tt set v0='I' where id=5; -update noar ti set v0='I' where id=5; -update noar tt set b0='PDMQ2RC55R182H7UO6PQ8TS03948O5J0' where id=5; -update noar ti set b0='PDMQ2RC55R182H7UO6PQ8TS03948O5J0' where id=5; -update noar tt set v0='970RHROEK5KJF' where id=5; -update noar ti set v0='970RHROEK5KJF' where id=5; -update noar tt set b1='9BMJ57Y47X2586P89C4AJZ8BADB7X9' where id=5; -update noar ti set b1='9BMJ57Y47X2586P89C4AJZ8BADB7X9' where id=5; -update noar tt set v0='0N5' where id=5; -update noar ti set v0='0N5' where id=5; -update noar tt set b2='U1SQIBM1HDNO5OP3HV7EZ1X' where id=5; -update noar ti set b2='U1SQIBM1HDNO5OP3HV7EZ1X' where id=5; -update noar tt set v0='5EGLM1FM0P8AJOZBK64E64GM67VLAA3P' where id=6; -update noar ti set v0='5EGLM1FM0P8AJOZBK64E64GM67VLAA3P' where id=6; -update noar tt set b0='MQ9GSG9WZL72DGFQL8NHNQZY60GQRJ4H' where id=6; -update noar ti set b0='MQ9GSG9WZL72DGFQL8NHNQZY60GQRJ4H' where id=6; -update noar tt set v0='TM2WS0TBFNTU' where id=6; -update noar ti set v0='TM2WS0TBFNTU' where id=6; -update noar tt set b1='WI0EX1IVIFFMWI' where id=6; -update noar ti set b1='WI0EX1IVIFFMWI' where id=6; -update noar tt set v0='ER4ZL2PXZH8WUUQI' where id=6; -update noar ti set v0='ER4ZL2PXZH8WUUQI' where id=6; -update noar tt set b2='CVA6QJ4YPL198U83P2J1MB7CVG' where id=6; -update noar ti set b2='CVA6QJ4YPL198U83P2J1MB7CVG' where id=6; -update noar tt set v0='6V8O2WN16AQUU' where id=7; -update noar ti set v0='6V8O2WN16AQUU' where id=7; -update noar tt set b0='MACEL4FL9JT7O84X' where id=7; -update noar ti set b0='MACEL4FL9JT7O84X' where id=7; -update noar tt set v0='5TJFLBBGYAPSDOCL92QDXZAGZ9' where id=7; -update noar ti set v0='5TJFLBBGYAPSDOCL92QDXZAGZ9' where id=7; -update noar tt set b1='XTZHPZC2O88U' where id=7; -update noar ti set b1='XTZHPZC2O88U' where id=7; -update noar tt set v0='3PIPL8GQSZR2391A0049JF' where id=7; -update noar ti set v0='3PIPL8GQSZR2391A0049JF' where id=7; -update noar tt set b2='BMBYZL7TZAND2T' where id=7; -update noar ti set b2='BMBYZL7TZAND2T' where id=7; -update noar tt set v0='KXXDMTFMHZIOXKEJNX8YAB8CBJQNSQ3F' where id=8; -update noar ti set v0='KXXDMTFMHZIOXKEJNX8YAB8CBJQNSQ3F' where id=8; -update noar tt set b0='4OEF2LTQFCFCC0G4V8BEI9R78XUZ41' where id=8; -update noar ti set b0='4OEF2LTQFCFCC0G4V8BEI9R78XUZ41' where id=8; -update noar tt set v0='VEVDIQ4HZACMU4HAE9' where id=8; -update noar ti set v0='VEVDIQ4HZACMU4HAE9' where id=8; -update noar tt set b1='PW38656' where id=8; -update noar ti set b1='PW38656' where id=8; -update noar tt set v0='KYI9F' where id=8; -update noar ti set v0='KYI9F' where id=8; -update noar tt set b2='008UXBXNF' where id=8; -update noar ti set b2='008UXBXNF' where id=8; -update noar tt set v0='NL7K2R' where id=9; -update noar ti set v0='NL7K2R' where id=9; -update noar tt set b0='KJK8UOJM60NE9VG7AZR9N3YHUGUJNPE' where id=9; -update noar ti set b0='KJK8UOJM60NE9VG7AZR9N3YHUGUJNPE' where id=9; -update noar tt set v0='49AGM3MFSWZ' where id=9; -update noar ti set v0='49AGM3MFSWZ' where id=9; -update noar tt set b1='WXU6YVQ986L' where id=9; -update noar ti set b1='WXU6YVQ986L' where id=9; -update noar tt set v0='0OP0GYN85D2GFW705BEM1LY5F8Y3616M' where id=9; -update noar ti set v0='0OP0GYN85D2GFW705BEM1LY5F8Y3616M' where id=9; -update noar tt set b2='LV8NJ1DJPOT3BWZ9II2VWVT57ZZH' where id=9; -update noar ti set b2='LV8NJ1DJPOT3BWZ9II2VWVT57ZZH' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -v0 varchar(256) null, -b0 mediumblob null, -b1 tinyblob null, -b2 tinyblob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='NBLHVNIGW6N4UTIJQ' where id=1; -update noar ti set v0='NBLHVNIGW6N4UTIJQ' where id=1; -update noar tt set b0='450UIBJ6WIFU2QEZ6MC4B12DZE2FG4DA' where id=1; -update noar ti set b0='450UIBJ6WIFU2QEZ6MC4B12DZE2FG4DA' where id=1; -update noar tt set v0='QCABKO1JS4TCO6X1ZK3M23' where id=1; -update noar ti set v0='QCABKO1JS4TCO6X1ZK3M23' where id=1; -update noar tt set b1='INE8V66HLQ5U8QOYHGSY90KFV' where id=1; -update noar ti set b1='INE8V66HLQ5U8QOYHGSY90KFV' where id=1; -update noar tt set v0='N7' where id=1; -update noar ti set v0='N7' where id=1; -update noar tt set b2='5LTMITIDLTLTI8P83K' where id=1; -update noar ti set b2='5LTMITIDLTLTI8P83K' where id=1; -update noar tt set v0='8XXQ50ATQPK985Y3XISXQ' where id=2; -update noar ti set v0='8XXQ50ATQPK985Y3XISXQ' where id=2; -update noar tt set b0='W0BZFZQNJFD0CGGY4HPRG5XQMWW' where id=2; -update noar ti set b0='W0BZFZQNJFD0CGGY4HPRG5XQMWW' where id=2; -update noar tt set v0='8TOPBS934O4UOVHCXK1NZDELDC' where id=2; -update noar ti set v0='8TOPBS934O4UOVHCXK1NZDELDC' where id=2; -update noar tt set b1='C6GKG8LYBVEXU4' where id=2; -update noar ti set b1='C6GKG8LYBVEXU4' where id=2; -update noar tt set v0='AQDNY' where id=2; -update noar ti set v0='AQDNY' where id=2; -update noar tt set b2='Q4QS1EQ9UFZNGCGBP5K277Q' where id=2; -update noar ti set b2='Q4QS1EQ9UFZNGCGBP5K277Q' where id=2; -update noar tt set v0='6942JGLD92507Z97DZWARCRI61IFQZ2' where id=3; -update noar ti set v0='6942JGLD92507Z97DZWARCRI61IFQZ2' where id=3; -update noar tt set b0='2T6IT7V4DV5T7Z3R5BUQ90VL' where id=3; -update noar ti set b0='2T6IT7V4DV5T7Z3R5BUQ90VL' where id=3; -update noar tt set v0='7NO' where id=3; -update noar ti set v0='7NO' where id=3; -update noar tt set b1='VNVNQQ7TEA8LLG28WYF7J' where id=3; -update noar ti set b1='VNVNQQ7TEA8LLG28WYF7J' where id=3; -update noar tt set v0='H7JWZSL3HZL6TX826Y' where id=3; -update noar ti set v0='H7JWZSL3HZL6TX826Y' where id=3; -update noar tt set b2='TD7G6S1GTVE9TNAH1JY90ZPZE1' where id=3; -update noar ti set b2='TD7G6S1GTVE9TNAH1JY90ZPZE1' where id=3; -update noar tt set v0='7LWAIUZVMFP8RWUJFMKNIKE' where id=4; -update noar ti set v0='7LWAIUZVMFP8RWUJFMKNIKE' where id=4; -update noar tt set b0='73' where id=4; -update noar ti set b0='73' where id=4; -update noar tt set v0='9X0H' where id=4; -update noar ti set v0='9X0H' where id=4; -update noar tt set b1='F7JVZK' where id=4; -update noar ti set b1='F7JVZK' where id=4; -update noar tt set v0='HKG' where id=4; -update noar ti set v0='HKG' where id=4; -update noar tt set b2='1M6JGTNMZIHJAXAB1PQY1WRCDJ9B' where id=4; -update noar ti set b2='1M6JGTNMZIHJAXAB1PQY1WRCDJ9B' where id=4; -update noar tt set v0='W951DR4G' where id=5; -update noar ti set v0='W951DR4G' where id=5; -update noar tt set b0='I44TCJ' where id=5; -update noar ti set b0='I44TCJ' where id=5; -update noar tt set v0='EOVZZLQD' where id=5; -update noar ti set v0='EOVZZLQD' where id=5; -update noar tt set b1='3DI4TFPU6V4G1DXVFWTWLZ6' where id=5; -update noar ti set b1='3DI4TFPU6V4G1DXVFWTWLZ6' where id=5; -update noar tt set v0='GDRI2HPD6W9WRVVMZSB2R09NPYY26EPA' where id=5; -update noar ti set v0='GDRI2HPD6W9WRVVMZSB2R09NPYY26EPA' where id=5; -update noar tt set b2='9DIA049U95XTK3R45PC1OY8Q3PA' where id=5; -update noar ti set b2='9DIA049U95XTK3R45PC1OY8Q3PA' where id=5; -update noar tt set v0='AOB1' where id=6; -update noar ti set v0='AOB1' where id=6; -update noar tt set b0='JDQIHQU5GUB9E1R24DX' where id=6; -update noar ti set b0='JDQIHQU5GUB9E1R24DX' where id=6; -update noar tt set v0='HZZLE76Q4ZI143K' where id=6; -update noar ti set v0='HZZLE76Q4ZI143K' where id=6; -update noar tt set b1='3PSUWS0M4CK8T' where id=6; -update noar ti set b1='3PSUWS0M4CK8T' where id=6; -update noar tt set v0='DN87K9PUPZVQPZH9TBE591' where id=6; -update noar ti set v0='DN87K9PUPZVQPZH9TBE591' where id=6; -update noar tt set b2='G' where id=6; -update noar ti set b2='G' where id=6; -update noar tt set v0='U4977UVH0OHU1GUZ62BOEW2JCCY2' where id=7; -update noar ti set v0='U4977UVH0OHU1GUZ62BOEW2JCCY2' where id=7; -update noar tt set b0='KLWEG7W2MYVWILUSWL8MS98' where id=7; -update noar ti set b0='KLWEG7W2MYVWILUSWL8MS98' where id=7; -update noar tt set v0='WX00E8V4M3O' where id=7; -update noar ti set v0='WX00E8V4M3O' where id=7; -update noar tt set b1='U2R4F' where id=7; -update noar ti set b1='U2R4F' where id=7; -update noar tt set v0='YRU4' where id=7; -update noar ti set v0='YRU4' where id=7; -update noar tt set b2='JRRJE957BKKJ7Y3PKVSR7UJ3CH3' where id=7; -update noar ti set b2='JRRJE957BKKJ7Y3PKVSR7UJ3CH3' where id=7; -update noar tt set v0='SGVES5PU2B03T0ZX9NA44Z4' where id=8; -update noar ti set v0='SGVES5PU2B03T0ZX9NA44Z4' where id=8; -update noar tt set b0='MY46YEN04YHA1RU3LLDCUKC6Y80NIJ71' where id=8; -update noar ti set b0='MY46YEN04YHA1RU3LLDCUKC6Y80NIJ71' where id=8; -update noar tt set v0='77GGW17L' where id=8; -update noar ti set v0='77GGW17L' where id=8; -update noar tt set b1='UA' where id=8; -update noar ti set b1='UA' where id=8; -update noar tt set v0='DHVARYXL18D2Q3CATMLCAJDQVTNMW6Z' where id=8; -update noar ti set v0='DHVARYXL18D2Q3CATMLCAJDQVTNMW6Z' where id=8; -update noar tt set b2='YUP21X5NKNA9SFQF29NTX9' where id=8; -update noar ti set b2='YUP21X5NKNA9SFQF29NTX9' where id=8; -update noar tt set v0='TAXEB23WQFJC1TQDU06AHA9J' where id=9; -update noar ti set v0='TAXEB23WQFJC1TQDU06AHA9J' where id=9; -update noar tt set b0='YL' where id=9; -update noar ti set b0='YL' where id=9; -update noar tt set v0='6S' where id=9; -update noar ti set v0='6S' where id=9; -update noar tt set b1='32Q1BUX5NBCSW7XS30V' where id=9; -update noar ti set b1='32Q1BUX5NBCSW7XS30V' where id=9; -update noar tt set v0='JYGGHPVLI9682HQQ0VVA831H03F8O' where id=9; -update noar ti set v0='JYGGHPVLI9682HQQ0VVA831H03F8O' where id=9; -update noar tt set b2='RARWFDHMRV947XD' where id=9; -update noar ti set b2='RARWFDHMRV947XD' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -v0 varchar(32) not null, -b0 mediumblob not null, -b1 tinyblob not null, -b2 tinyblob not null -) engine=tokudb; -insert into tt values (1,'','','',''); -insert into tt values (2,'','','',''); -insert into tt values (3,'','','',''); -insert into tt values (4,'','','',''); -insert into tt values (5,'','','',''); -insert into tt values (6,'','','',''); -insert into tt values (7,'','','',''); -insert into tt values (8,'','','',''); -insert into tt values (9,'','','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='ZK9XLA2IEZ1WJIHM57VUXR' where id=1; -update noar ti set v0='ZK9XLA2IEZ1WJIHM57VUXR' where id=1; -update noar tt set b0='W3SSTL2559S0Y7UIK' where id=1; -update noar ti set b0='W3SSTL2559S0Y7UIK' where id=1; -update noar tt set v0='6YZ' where id=1; -update noar ti set v0='6YZ' where id=1; -update noar tt set b1='GTB9CE4QM' where id=1; -update noar ti set b1='GTB9CE4QM' where id=1; -update noar tt set v0='PW59UHVDG69ZERC1' where id=1; -update noar ti set v0='PW59UHVDG69ZERC1' where id=1; -update noar tt set b2='QNA3FIZJ3BLHIVZPVLBCFREGD' where id=1; -update noar ti set b2='QNA3FIZJ3BLHIVZPVLBCFREGD' where id=1; -update noar tt set v0='DACACE21ZZQM0BNA00F2M8ALM8L1' where id=2; -update noar ti set v0='DACACE21ZZQM0BNA00F2M8ALM8L1' where id=2; -update noar tt set b0='BQYSACORFXSLTON' where id=2; -update noar ti set b0='BQYSACORFXSLTON' where id=2; -update noar tt set v0='8UDD148VIGOM98I9X61LNS1TS3UCXEZ' where id=2; -update noar ti set v0='8UDD148VIGOM98I9X61LNS1TS3UCXEZ' where id=2; -update noar tt set b1='4UPQB8Y862NLMM2299O' where id=2; -update noar ti set b1='4UPQB8Y862NLMM2299O' where id=2; -update noar tt set v0='WR' where id=2; -update noar ti set v0='WR' where id=2; -update noar tt set b2='AKWMDQO0A9QQ5H4' where id=2; -update noar ti set b2='AKWMDQO0A9QQ5H4' where id=2; -update noar tt set v0='GZS4PDI' where id=3; -update noar ti set v0='GZS4PDI' where id=3; -update noar tt set b0='DHCH6W9284Z3RNLP4' where id=3; -update noar ti set b0='DHCH6W9284Z3RNLP4' where id=3; -update noar tt set v0='F4APV0Y2PX7XO6JJS2HK' where id=3; -update noar ti set v0='F4APV0Y2PX7XO6JJS2HK' where id=3; -update noar tt set b1='EL3UA5IDIWH' where id=3; -update noar ti set b1='EL3UA5IDIWH' where id=3; -update noar tt set v0='MWSLQBF8FXB60B3CO' where id=3; -update noar ti set v0='MWSLQBF8FXB60B3CO' where id=3; -update noar tt set b2='LJJ8GPQ8TCG4DAAI538IBJRVPUMDUNB' where id=3; -update noar ti set b2='LJJ8GPQ8TCG4DAAI538IBJRVPUMDUNB' where id=3; -update noar tt set v0='CHT0GEUF5DO7' where id=4; -update noar ti set v0='CHT0GEUF5DO7' where id=4; -update noar tt set b0='RYVM6' where id=4; -update noar ti set b0='RYVM6' where id=4; -update noar tt set v0='P9PBLR5X77X9U0ILLH0EWNDQE1K' where id=4; -update noar ti set v0='P9PBLR5X77X9U0ILLH0EWNDQE1K' where id=4; -update noar tt set b1='Y37S5R5IKY3J2B998AAHWVAWAHFOY2G' where id=4; -update noar ti set b1='Y37S5R5IKY3J2B998AAHWVAWAHFOY2G' where id=4; -update noar tt set v0='QV6Q41CLJJ8TC555HTCSEDAZ5IAO' where id=4; -update noar ti set v0='QV6Q41CLJJ8TC555HTCSEDAZ5IAO' where id=4; -update noar tt set b2='2QJG1J06JJ6QZCHZDRE8' where id=4; -update noar ti set b2='2QJG1J06JJ6QZCHZDRE8' where id=4; -update noar tt set v0='8X2P713' where id=5; -update noar ti set v0='8X2P713' where id=5; -update noar tt set b0='DG3SFS3XY' where id=5; -update noar ti set b0='DG3SFS3XY' where id=5; -update noar tt set v0='UZPIC8NP6AXXGFYB50YN03FMXTU1W14' where id=5; -update noar ti set v0='UZPIC8NP6AXXGFYB50YN03FMXTU1W14' where id=5; -update noar tt set b1='G75FPLWTELLXK1N0JT7GW' where id=5; -update noar ti set b1='G75FPLWTELLXK1N0JT7GW' where id=5; -update noar tt set v0='XSTDMCNA8UL8EUAA54N3Y' where id=5; -update noar ti set v0='XSTDMCNA8UL8EUAA54N3Y' where id=5; -update noar tt set b2='LSRZCLJBFY05RHE2I3' where id=5; -update noar ti set b2='LSRZCLJBFY05RHE2I3' where id=5; -update noar tt set v0='PCNTTLPH3CWYK8IIDUI293' where id=6; -update noar ti set v0='PCNTTLPH3CWYK8IIDUI293' where id=6; -update noar tt set b0='7TMR80EL4TM8ULVN4DYECOR68ENW2D9X' where id=6; -update noar ti set b0='7TMR80EL4TM8ULVN4DYECOR68ENW2D9X' where id=6; -update noar tt set v0='S5T6I4YG' where id=6; -update noar ti set v0='S5T6I4YG' where id=6; -update noar tt set b1='V2OQ6O8SDMIRG9J8U43PSCAP8PEULU' where id=6; -update noar ti set b1='V2OQ6O8SDMIRG9J8U43PSCAP8PEULU' where id=6; -update noar tt set v0='FND2O' where id=6; -update noar ti set v0='FND2O' where id=6; -update noar tt set b2='92PWAT76' where id=6; -update noar ti set b2='92PWAT76' where id=6; -update noar tt set v0='46WSX4BLGMALAL91WTHPI' where id=7; -update noar ti set v0='46WSX4BLGMALAL91WTHPI' where id=7; -update noar tt set b0='KZA6NQCL5WFXUQYEJ5GZ7OXKXN3JECNN' where id=7; -update noar ti set b0='KZA6NQCL5WFXUQYEJ5GZ7OXKXN3JECNN' where id=7; -update noar tt set v0='LAN4K46VCXTOVSF4' where id=7; -update noar ti set v0='LAN4K46VCXTOVSF4' where id=7; -update noar tt set b1='1B19DLSYQTTS52KG1AWVLYO8HKQO' where id=7; -update noar ti set b1='1B19DLSYQTTS52KG1AWVLYO8HKQO' where id=7; -update noar tt set v0='PG8MLBWDMBIUOY2C2YZVT0' where id=7; -update noar ti set v0='PG8MLBWDMBIUOY2C2YZVT0' where id=7; -update noar tt set b2='NADC8KKBGPVCF4LL1CE7GA3EK57E9YXW' where id=7; -update noar ti set b2='NADC8KKBGPVCF4LL1CE7GA3EK57E9YXW' where id=7; -update noar tt set v0='FUW6WIX' where id=8; -update noar ti set v0='FUW6WIX' where id=8; -update noar tt set b0='H8VRSCX1WVZYF' where id=8; -update noar ti set b0='H8VRSCX1WVZYF' where id=8; -update noar tt set v0='UNAL2NHBXNCR35S1YFB20I4' where id=8; -update noar ti set v0='UNAL2NHBXNCR35S1YFB20I4' where id=8; -update noar tt set b1='I6HP7WPT4MA79TY4GB9OSPGI5BRT' where id=8; -update noar ti set b1='I6HP7WPT4MA79TY4GB9OSPGI5BRT' where id=8; -update noar tt set v0='A7PAMWP9XUOM0YKNQYQJHPIG1' where id=8; -update noar ti set v0='A7PAMWP9XUOM0YKNQYQJHPIG1' where id=8; -update noar tt set b2='Q39' where id=8; -update noar ti set b2='Q39' where id=8; -update noar tt set v0='46MAB4BS5LJX' where id=9; -update noar ti set v0='46MAB4BS5LJX' where id=9; -update noar tt set b0='1MA85EZZ6BKKLVA1E' where id=9; -update noar ti set b0='1MA85EZZ6BKKLVA1E' where id=9; -update noar tt set v0='R7L37HWO3RQSSLIE75B' where id=9; -update noar ti set v0='R7L37HWO3RQSSLIE75B' where id=9; -update noar tt set b1='E6EKMS4MBVHBHS' where id=9; -update noar ti set b1='E6EKMS4MBVHBHS' where id=9; -update noar tt set v0='ALX9L42TRUA' where id=9; -update noar ti set v0='ALX9L42TRUA' where id=9; -update noar tt set b2='MNW5PAT1A64ODMAPE6WIAYHZUYS5Y5Y5' where id=9; -update noar ti set b2='MNW5PAT1A64ODMAPE6WIAYHZUYS5Y5Y5' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -v0 varchar(256) not null, -b0 mediumblob not null, -b1 tinyblob not null, -b2 tinyblob not null -) engine=tokudb; -insert into tt values (1,'','','',''); -insert into tt values (2,'','','',''); -insert into tt values (3,'','','',''); -insert into tt values (4,'','','',''); -insert into tt values (5,'','','',''); -insert into tt values (6,'','','',''); -insert into tt values (7,'','','',''); -insert into tt values (8,'','','',''); -insert into tt values (9,'','','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='KLGE0BG7GWKR4P' where id=1; -update noar ti set v0='KLGE0BG7GWKR4P' where id=1; -update noar tt set b0='BLJ1O9EZEZ2GZADV0Z72OHNG0' where id=1; -update noar ti set b0='BLJ1O9EZEZ2GZADV0Z72OHNG0' where id=1; -update noar tt set v0='Q1SJNXU7G153XSRY8' where id=1; -update noar ti set v0='Q1SJNXU7G153XSRY8' where id=1; -update noar tt set b1='8' where id=1; -update noar ti set b1='8' where id=1; -update noar tt set v0='FR' where id=1; -update noar ti set v0='FR' where id=1; -update noar tt set b2='RIYPQ5VFY' where id=1; -update noar ti set b2='RIYPQ5VFY' where id=1; -update noar tt set v0='237G' where id=2; -update noar ti set v0='237G' where id=2; -update noar tt set b0='XMDY7LW' where id=2; -update noar ti set b0='XMDY7LW' where id=2; -update noar tt set v0='KNPAXKN9XG5MVX8' where id=2; -update noar ti set v0='KNPAXKN9XG5MVX8' where id=2; -update noar tt set b1='Y7JNKK97HQVNVVUURW' where id=2; -update noar ti set b1='Y7JNKK97HQVNVVUURW' where id=2; -update noar tt set v0='M0SCYZSSUKLQTPN' where id=2; -update noar ti set v0='M0SCYZSSUKLQTPN' where id=2; -update noar tt set b2='5VGR7' where id=2; -update noar ti set b2='5VGR7' where id=2; -update noar tt set v0='EESXJO4F6CQS5W0WUY8GO6UVVNCPO' where id=3; -update noar ti set v0='EESXJO4F6CQS5W0WUY8GO6UVVNCPO' where id=3; -update noar tt set b0='BQQW7Y' where id=3; -update noar ti set b0='BQQW7Y' where id=3; -update noar tt set v0='332B5E41D0TL27WPC32YKOUIK9VXXBK' where id=3; -update noar ti set v0='332B5E41D0TL27WPC32YKOUIK9VXXBK' where id=3; -update noar tt set b1='YEPVCUALXL2' where id=3; -update noar ti set b1='YEPVCUALXL2' where id=3; -update noar tt set v0='IKCWWIE0QO' where id=3; -update noar ti set v0='IKCWWIE0QO' where id=3; -update noar tt set b2='F31IGIYI' where id=3; -update noar ti set b2='F31IGIYI' where id=3; -update noar tt set v0='JIZ5FPVLA3X36TNV4MXWDEWFDW6I7S' where id=4; -update noar ti set v0='JIZ5FPVLA3X36TNV4MXWDEWFDW6I7S' where id=4; -update noar tt set b0='EWOCGB26DM8YF7MXCT3' where id=4; -update noar ti set b0='EWOCGB26DM8YF7MXCT3' where id=4; -update noar tt set v0='Y24O6Z57HEYAMRUR6WAZY2P' where id=4; -update noar ti set v0='Y24O6Z57HEYAMRUR6WAZY2P' where id=4; -update noar tt set b1='Y0THT5KAZ8UHEOOV1E8' where id=4; -update noar ti set b1='Y0THT5KAZ8UHEOOV1E8' where id=4; -update noar tt set v0='1HBUNVLNAQIGYMDYGG9T41K867R5653' where id=4; -update noar ti set v0='1HBUNVLNAQIGYMDYGG9T41K867R5653' where id=4; -update noar tt set b2='KIQHHS0KOJQ3SQKALUG' where id=4; -update noar ti set b2='KIQHHS0KOJQ3SQKALUG' where id=4; -update noar tt set v0='HXHNY8C9BOTK0H6FWNUQIQCSHXX70WI' where id=5; -update noar ti set v0='HXHNY8C9BOTK0H6FWNUQIQCSHXX70WI' where id=5; -update noar tt set b0='5Q' where id=5; -update noar ti set b0='5Q' where id=5; -update noar tt set v0='K1CJT8GQD1UHA63F0N' where id=5; -update noar ti set v0='K1CJT8GQD1UHA63F0N' where id=5; -update noar tt set b1='WR95HCF6HLDZHG9UURXOL2VBPOJ4K5WL' where id=5; -update noar ti set b1='WR95HCF6HLDZHG9UURXOL2VBPOJ4K5WL' where id=5; -update noar tt set v0='W52UW6TBQAWHAPBSWZNRN' where id=5; -update noar ti set v0='W52UW6TBQAWHAPBSWZNRN' where id=5; -update noar tt set b2='LZT4AZN8PS63EIIOSLES0I5' where id=5; -update noar ti set b2='LZT4AZN8PS63EIIOSLES0I5' where id=5; -update noar tt set v0='HEQVS' where id=6; -update noar ti set v0='HEQVS' where id=6; -update noar tt set b0='H3ZETYUG5Y0N' where id=6; -update noar ti set b0='H3ZETYUG5Y0N' where id=6; -update noar tt set v0='3ZT5A07KT7NERJGHY' where id=6; -update noar ti set v0='3ZT5A07KT7NERJGHY' where id=6; -update noar tt set b1='F3OZQNNAH69UF8Q5AK4C3YSKBU' where id=6; -update noar ti set b1='F3OZQNNAH69UF8Q5AK4C3YSKBU' where id=6; -update noar tt set v0='SWOWN1JZHL38W1P7P5S07CMB4SHI2' where id=6; -update noar ti set v0='SWOWN1JZHL38W1P7P5S07CMB4SHI2' where id=6; -update noar tt set b2='JAVGZR72FC' where id=6; -update noar ti set b2='JAVGZR72FC' where id=6; -update noar tt set v0='SER7TJTYZRIATEQTSIHF9H9806' where id=7; -update noar ti set v0='SER7TJTYZRIATEQTSIHF9H9806' where id=7; -update noar tt set b0='PQXT8I1N64G' where id=7; -update noar ti set b0='PQXT8I1N64G' where id=7; -update noar tt set v0='S6T2RI2L4XNLKENHPZFHBMPIN' where id=7; -update noar ti set v0='S6T2RI2L4XNLKENHPZFHBMPIN' where id=7; -update noar tt set b1='EFS' where id=7; -update noar ti set b1='EFS' where id=7; -update noar tt set v0='0RZ666C7PDJXUYO6CTD3J0R' where id=7; -update noar ti set v0='0RZ666C7PDJXUYO6CTD3J0R' where id=7; -update noar tt set b2='L9SBW' where id=7; -update noar ti set b2='L9SBW' where id=7; -update noar tt set v0='7VNXQADY57ECUG2ED2C3U' where id=8; -update noar ti set v0='7VNXQADY57ECUG2ED2C3U' where id=8; -update noar tt set b0='DW7WRRQI' where id=8; -update noar ti set b0='DW7WRRQI' where id=8; -update noar tt set v0='0A9ELQNQS2R0GTV9V2HB' where id=8; -update noar ti set v0='0A9ELQNQS2R0GTV9V2HB' where id=8; -update noar tt set b1='MMJF62JE8PAN4Q2UZ' where id=8; -update noar ti set b1='MMJF62JE8PAN4Q2UZ' where id=8; -update noar tt set v0='JIY7E' where id=8; -update noar ti set v0='JIY7E' where id=8; -update noar tt set b2='YQJ7WDQU' where id=8; -update noar ti set b2='YQJ7WDQU' where id=8; -update noar tt set v0='VWC4731W82R4OZKKI8JQPZP03W' where id=9; -update noar ti set v0='VWC4731W82R4OZKKI8JQPZP03W' where id=9; -update noar tt set b0='KW08QEZJ4ZGHDA486J' where id=9; -update noar ti set b0='KW08QEZJ4ZGHDA486J' where id=9; -update noar tt set v0='ST0TH03' where id=9; -update noar ti set v0='ST0TH03' where id=9; -update noar tt set b1='K5EF' where id=9; -update noar ti set b1='K5EF' where id=9; -update noar tt set v0='4TPV0RNCWLXV75U5FK7MJ3X86C74' where id=9; -update noar ti set v0='4TPV0RNCWLXV75U5FK7MJ3X86C74' where id=9; -update noar tt set b2='H4G7' where id=9; -update noar ti set b2='H4G7' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -v0 varchar(32) null, -b0 mediumblob null, -b1 tinyblob null, -b2 blob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='J9REEBMPRETAQ5CONMO4J8N' where id=1; -update noar ti set v0='J9REEBMPRETAQ5CONMO4J8N' where id=1; -update noar tt set b0='93UVSGIVGT42ADLDT3NK' where id=1; -update noar ti set b0='93UVSGIVGT42ADLDT3NK' where id=1; -update noar tt set v0='WL4TDVC84YCAY7QYOBPV9V0Z25PB1U05' where id=1; -update noar ti set v0='WL4TDVC84YCAY7QYOBPV9V0Z25PB1U05' where id=1; -update noar tt set b1='YEM4' where id=1; -update noar ti set b1='YEM4' where id=1; -update noar tt set v0='ATIKHSJSXX3720ISOVEMIW4M' where id=1; -update noar ti set v0='ATIKHSJSXX3720ISOVEMIW4M' where id=1; -update noar tt set b2='0TPJWGS1ZPIYLTKK5RSPJABLTAS5W' where id=1; -update noar ti set b2='0TPJWGS1ZPIYLTKK5RSPJABLTAS5W' where id=1; -update noar tt set v0='KCFH382CADV7BCUP5' where id=2; -update noar ti set v0='KCFH382CADV7BCUP5' where id=2; -update noar tt set b0='4V1K' where id=2; -update noar ti set b0='4V1K' where id=2; -update noar tt set v0='XYQY38CB73U23WNHBOQWVDXWKBLU' where id=2; -update noar ti set v0='XYQY38CB73U23WNHBOQWVDXWKBLU' where id=2; -update noar tt set b1='S6SCH0N9QR165WKECE86TY318R' where id=2; -update noar ti set b1='S6SCH0N9QR165WKECE86TY318R' where id=2; -update noar tt set v0='F6' where id=2; -update noar ti set v0='F6' where id=2; -update noar tt set b2='Q72KHSLF2AZ32KUQCL6VETN5QWQ4OPHX' where id=2; -update noar ti set b2='Q72KHSLF2AZ32KUQCL6VETN5QWQ4OPHX' where id=2; -update noar tt set v0='U05SSGF3Q' where id=3; -update noar ti set v0='U05SSGF3Q' where id=3; -update noar tt set b0='2YLSV16THLRB8RRM0XTEW5GN' where id=3; -update noar ti set b0='2YLSV16THLRB8RRM0XTEW5GN' where id=3; -update noar tt set v0='0I53F7N2KQ6RK5EWE0G' where id=3; -update noar ti set v0='0I53F7N2KQ6RK5EWE0G' where id=3; -update noar tt set b1='LG8M' where id=3; -update noar ti set b1='LG8M' where id=3; -update noar tt set v0='6Y' where id=3; -update noar ti set v0='6Y' where id=3; -update noar tt set b2='OB1ZN9DZ2' where id=3; -update noar ti set b2='OB1ZN9DZ2' where id=3; -update noar tt set v0='8YXZ9NUR8YO53CTBN4LPAB56D3E5KU1' where id=4; -update noar ti set v0='8YXZ9NUR8YO53CTBN4LPAB56D3E5KU1' where id=4; -update noar tt set b0='F653BK' where id=4; -update noar ti set b0='F653BK' where id=4; -update noar tt set v0='I7S2U0PKETL2X0H3LP9AY9CESZRD9T' where id=4; -update noar ti set v0='I7S2U0PKETL2X0H3LP9AY9CESZRD9T' where id=4; -update noar tt set b1='CJDV9DO5FNDLRZBYXEYGT7FDFW2622KP' where id=4; -update noar ti set b1='CJDV9DO5FNDLRZBYXEYGT7FDFW2622KP' where id=4; -update noar tt set v0='HWFV21CM0EKOEI6MGHBZBAMV' where id=4; -update noar ti set v0='HWFV21CM0EKOEI6MGHBZBAMV' where id=4; -update noar tt set b2='VO35OQ2UKT8YZ5NDZQ5A' where id=4; -update noar ti set b2='VO35OQ2UKT8YZ5NDZQ5A' where id=4; -update noar tt set v0='6RG8BSDUBAAXTUT' where id=5; -update noar ti set v0='6RG8BSDUBAAXTUT' where id=5; -update noar tt set b0='JFZ86SIA1BRLAB2KE7G827WHS' where id=5; -update noar ti set b0='JFZ86SIA1BRLAB2KE7G827WHS' where id=5; -update noar tt set v0='6RYV2XZ6HV' where id=5; -update noar ti set v0='6RYV2XZ6HV' where id=5; -update noar tt set b1='C3LE5CEWZBLW443BA5Q' where id=5; -update noar ti set b1='C3LE5CEWZBLW443BA5Q' where id=5; -update noar tt set v0='QAL99WWP5Z2XCPIJR5S48H' where id=5; -update noar ti set v0='QAL99WWP5Z2XCPIJR5S48H' where id=5; -update noar tt set b2='X5ZZVU1FRZ4PWLA5VW5BZC' where id=5; -update noar ti set b2='X5ZZVU1FRZ4PWLA5VW5BZC' where id=5; -update noar tt set v0='DR0O8WZW6AFNK' where id=6; -update noar ti set v0='DR0O8WZW6AFNK' where id=6; -update noar tt set b0='4XR4VNNFZU' where id=6; -update noar ti set b0='4XR4VNNFZU' where id=6; -update noar tt set v0='0GPD46WHNONL02OXLIW1GYBMW5DEI' where id=6; -update noar ti set v0='0GPD46WHNONL02OXLIW1GYBMW5DEI' where id=6; -update noar tt set b1='ARVDJUKONFYSWXXJLG25VZZAKGR7TR' where id=6; -update noar ti set b1='ARVDJUKONFYSWXXJLG25VZZAKGR7TR' where id=6; -update noar tt set v0='D' where id=6; -update noar ti set v0='D' where id=6; -update noar tt set b2='OOY63370OI4J' where id=6; -update noar ti set b2='OOY63370OI4J' where id=6; -update noar tt set v0='MJQLUEB9L315BHQLAKXUQDEDHSLU7' where id=7; -update noar ti set v0='MJQLUEB9L315BHQLAKXUQDEDHSLU7' where id=7; -update noar tt set b0='C9FUDV7C6CCJ13CI' where id=7; -update noar ti set b0='C9FUDV7C6CCJ13CI' where id=7; -update noar tt set v0='3U1JDTD3HA' where id=7; -update noar ti set v0='3U1JDTD3HA' where id=7; -update noar tt set b1='K9BY0GLPVJ6WEZ1OY84UEB4ET' where id=7; -update noar ti set b1='K9BY0GLPVJ6WEZ1OY84UEB4ET' where id=7; -update noar tt set v0='1ZGE4IRWW1MAN' where id=7; -update noar ti set v0='1ZGE4IRWW1MAN' where id=7; -update noar tt set b2='KDWZHUVAAVUKVY14URSBPNWZQXC' where id=7; -update noar ti set b2='KDWZHUVAAVUKVY14URSBPNWZQXC' where id=7; -update noar tt set v0='CYE53QBP5MEWX0UYB8D2M' where id=8; -update noar ti set v0='CYE53QBP5MEWX0UYB8D2M' where id=8; -update noar tt set b0='MO0GUW56J4MNKJ4R611M0RU' where id=8; -update noar ti set b0='MO0GUW56J4MNKJ4R611M0RU' where id=8; -update noar tt set v0='PH1PZGX8UYUX5614F2HYBRNXROMV' where id=8; -update noar ti set v0='PH1PZGX8UYUX5614F2HYBRNXROMV' where id=8; -update noar tt set b1='C57TXEZCYA6V' where id=8; -update noar ti set b1='C57TXEZCYA6V' where id=8; -update noar tt set v0='ZE' where id=8; -update noar ti set v0='ZE' where id=8; -update noar tt set b2='G2B67SGW4' where id=8; -update noar ti set b2='G2B67SGW4' where id=8; -update noar tt set v0='JYY09FG2DJWI0FXS5V' where id=9; -update noar ti set v0='JYY09FG2DJWI0FXS5V' where id=9; -update noar tt set b0='BW71ETJ0WTIEEW0' where id=9; -update noar ti set b0='BW71ETJ0WTIEEW0' where id=9; -update noar tt set v0='MDS1PX2A' where id=9; -update noar ti set v0='MDS1PX2A' where id=9; -update noar tt set b1='R96ODXV' where id=9; -update noar ti set b1='R96ODXV' where id=9; -update noar tt set v0='FIX2TS4ME60JF863SQBM' where id=9; -update noar ti set v0='FIX2TS4ME60JF863SQBM' where id=9; -update noar tt set b2='05N115LPDHX2MX7FM9K9CNG' where id=9; -update noar ti set b2='05N115LPDHX2MX7FM9K9CNG' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -v0 varchar(256) null, -b0 mediumblob null, -b1 tinyblob null, -b2 blob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='C8AVVU3YZ3QQZEQG7Q5BLY2IPKPG' where id=1; -update noar ti set v0='C8AVVU3YZ3QQZEQG7Q5BLY2IPKPG' where id=1; -update noar tt set b0='2LRGW9RUEYNKU2OQOZYZOHLSL7YNCQXA' where id=1; -update noar ti set b0='2LRGW9RUEYNKU2OQOZYZOHLSL7YNCQXA' where id=1; -update noar tt set v0='M' where id=1; -update noar ti set v0='M' where id=1; -update noar tt set b1='LD407W9AAO2CCSV' where id=1; -update noar ti set b1='LD407W9AAO2CCSV' where id=1; -update noar tt set v0='P' where id=1; -update noar ti set v0='P' where id=1; -update noar tt set b2='336YN54X0HJMTEG' where id=1; -update noar ti set b2='336YN54X0HJMTEG' where id=1; -update noar tt set v0='A34N0MTKXF6HO6DCO7DZXG' where id=2; -update noar ti set v0='A34N0MTKXF6HO6DCO7DZXG' where id=2; -update noar tt set b0='I14HKE9VOC9SYS7K6PS8GONN46B' where id=2; -update noar ti set b0='I14HKE9VOC9SYS7K6PS8GONN46B' where id=2; -update noar tt set v0='SD5XJNJGOEOUOB0U2UQ0' where id=2; -update noar ti set v0='SD5XJNJGOEOUOB0U2UQ0' where id=2; -update noar tt set b1='L1WQBU4' where id=2; -update noar ti set b1='L1WQBU4' where id=2; -update noar tt set v0='JHZMA' where id=2; -update noar ti set v0='JHZMA' where id=2; -update noar tt set b2='IPZ1PVKZM2B8A66Q21XUY8HFQL8NEARS' where id=2; -update noar ti set b2='IPZ1PVKZM2B8A66Q21XUY8HFQL8NEARS' where id=2; -update noar tt set v0='8VMXFJ614TAO2KR1' where id=3; -update noar ti set v0='8VMXFJ614TAO2KR1' where id=3; -update noar tt set b0='3G2E6W7D0DY4GEE' where id=3; -update noar ti set b0='3G2E6W7D0DY4GEE' where id=3; -update noar tt set v0='QO42CBU3WA098CACF' where id=3; -update noar ti set v0='QO42CBU3WA098CACF' where id=3; -update noar tt set b1='J462SNFA2OQC96VK830NDN7IPREC0GY' where id=3; -update noar ti set b1='J462SNFA2OQC96VK830NDN7IPREC0GY' where id=3; -update noar tt set v0='IXR3ORU5ZE' where id=3; -update noar ti set v0='IXR3ORU5ZE' where id=3; -update noar tt set b2='HE' where id=3; -update noar ti set b2='HE' where id=3; -update noar tt set v0='A1GCOSBOTOAK87J8C6E5L44' where id=4; -update noar ti set v0='A1GCOSBOTOAK87J8C6E5L44' where id=4; -update noar tt set b0='C9GJYOYXBJM8K3O446MXGHLC' where id=4; -update noar ti set b0='C9GJYOYXBJM8K3O446MXGHLC' where id=4; -update noar tt set v0='NKTFZ5CIDGOAQG' where id=4; -update noar ti set v0='NKTFZ5CIDGOAQG' where id=4; -update noar tt set b1='4I7QEP' where id=4; -update noar ti set b1='4I7QEP' where id=4; -update noar tt set v0='JXW0ZGKPU2880XKI' where id=4; -update noar ti set v0='JXW0ZGKPU2880XKI' where id=4; -update noar tt set b2='4JIYJI' where id=4; -update noar ti set b2='4JIYJI' where id=4; -update noar tt set v0='2827S8JC1AQQD0K4D9RGTR914' where id=5; -update noar ti set v0='2827S8JC1AQQD0K4D9RGTR914' where id=5; -update noar tt set b0='7MZBUNA' where id=5; -update noar ti set b0='7MZBUNA' where id=5; -update noar tt set v0='KWZFDFH4WMCAWJPD7' where id=5; -update noar ti set v0='KWZFDFH4WMCAWJPD7' where id=5; -update noar tt set b1='MTWJCGQM4P2BU' where id=5; -update noar ti set b1='MTWJCGQM4P2BU' where id=5; -update noar tt set v0='MV98QWGBLXPYUQ' where id=5; -update noar ti set v0='MV98QWGBLXPYUQ' where id=5; -update noar tt set b2='UDMCF0CC0OGWHNRT95QYTAQKBGB' where id=5; -update noar ti set b2='UDMCF0CC0OGWHNRT95QYTAQKBGB' where id=5; -update noar tt set v0='LBHBCQC07BFAMTYSEEXU5J' where id=6; -update noar ti set v0='LBHBCQC07BFAMTYSEEXU5J' where id=6; -update noar tt set b0='2XKH9L' where id=6; -update noar ti set b0='2XKH9L' where id=6; -update noar tt set v0='TF' where id=6; -update noar ti set v0='TF' where id=6; -update noar tt set b1='O9YD3BF' where id=6; -update noar ti set b1='O9YD3BF' where id=6; -update noar tt set v0='HKIZIRFOQC' where id=6; -update noar ti set v0='HKIZIRFOQC' where id=6; -update noar tt set b2='0I0BRNHZ02J6JPJCIZQ2RQ9' where id=6; -update noar ti set b2='0I0BRNHZ02J6JPJCIZQ2RQ9' where id=6; -update noar tt set v0='9AL1RRIHNI8Z4OZP85ZAJWLN4F46FKA' where id=7; -update noar ti set v0='9AL1RRIHNI8Z4OZP85ZAJWLN4F46FKA' where id=7; -update noar tt set b0='6IO5DIEN55YFFLHMMJB64O4G' where id=7; -update noar ti set b0='6IO5DIEN55YFFLHMMJB64O4G' where id=7; -update noar tt set v0='U68VEVJS35X4HPUIQ1XN' where id=7; -update noar ti set v0='U68VEVJS35X4HPUIQ1XN' where id=7; -update noar tt set b1='QB70Q4KTKST9IE2' where id=7; -update noar ti set b1='QB70Q4KTKST9IE2' where id=7; -update noar tt set v0='EZH541YPJZRRZ6DUDVUU5L' where id=7; -update noar ti set v0='EZH541YPJZRRZ6DUDVUU5L' where id=7; -update noar tt set b2='1BFYY05IWUR0FY4YWRH5G' where id=7; -update noar ti set b2='1BFYY05IWUR0FY4YWRH5G' where id=7; -update noar tt set v0='HE2RTXDKYLB' where id=8; -update noar ti set v0='HE2RTXDKYLB' where id=8; -update noar tt set b0='H8QTFZBS6ETYUODHQPSHKH8NX' where id=8; -update noar ti set b0='H8QTFZBS6ETYUODHQPSHKH8NX' where id=8; -update noar tt set v0='KC8QDE5N8DLDMPOQHO2' where id=8; -update noar ti set v0='KC8QDE5N8DLDMPOQHO2' where id=8; -update noar tt set b1='CU0Y2UUFC3DHBWJAV8S1AB0' where id=8; -update noar ti set b1='CU0Y2UUFC3DHBWJAV8S1AB0' where id=8; -update noar tt set v0='2LXG6CREDZKIQD' where id=8; -update noar ti set v0='2LXG6CREDZKIQD' where id=8; -update noar tt set b2='X' where id=8; -update noar ti set b2='X' where id=8; -update noar tt set v0='6' where id=9; -update noar ti set v0='6' where id=9; -update noar tt set b0='1M4EB0VTBQ1FYQQR8J5' where id=9; -update noar ti set b0='1M4EB0VTBQ1FYQQR8J5' where id=9; -update noar tt set v0='60PTRWJG5X7XCUOX' where id=9; -update noar ti set v0='60PTRWJG5X7XCUOX' where id=9; -update noar tt set b1='JQ9KAN418N7N7LXN88N84EVH' where id=9; -update noar ti set b1='JQ9KAN418N7N7LXN88N84EVH' where id=9; -update noar tt set v0='X77FOJINSWXEPW' where id=9; -update noar ti set v0='X77FOJINSWXEPW' where id=9; -update noar tt set b2='I4Z0LC' where id=9; -update noar ti set b2='I4Z0LC' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -v0 varchar(32) not null, -b0 mediumblob not null, -b1 tinyblob not null, -b2 blob not null -) engine=tokudb; -insert into tt values (1,'','','',''); -insert into tt values (2,'','','',''); -insert into tt values (3,'','','',''); -insert into tt values (4,'','','',''); -insert into tt values (5,'','','',''); -insert into tt values (6,'','','',''); -insert into tt values (7,'','','',''); -insert into tt values (8,'','','',''); -insert into tt values (9,'','','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='17XW' where id=1; -update noar ti set v0='17XW' where id=1; -update noar tt set b0='OGZ' where id=1; -update noar ti set b0='OGZ' where id=1; -update noar tt set v0='XSVDXTHMV4KKHHCUKUE' where id=1; -update noar ti set v0='XSVDXTHMV4KKHHCUKUE' where id=1; -update noar tt set b1='9ZYEQP6UZWWO8MAEJ3TRO0AWPBC5MN' where id=1; -update noar ti set b1='9ZYEQP6UZWWO8MAEJ3TRO0AWPBC5MN' where id=1; -update noar tt set v0='K09COWECDCM6G1KK5L' where id=1; -update noar ti set v0='K09COWECDCM6G1KK5L' where id=1; -update noar tt set b2='22U50ZPB' where id=1; -update noar ti set b2='22U50ZPB' where id=1; -update noar tt set v0='BF6VSD4W6R258AGZS6HTH' where id=2; -update noar ti set v0='BF6VSD4W6R258AGZS6HTH' where id=2; -update noar tt set b0='IDE5YAXZOU40I' where id=2; -update noar ti set b0='IDE5YAXZOU40I' where id=2; -update noar tt set v0='TT0G1WAW0323S6LR6P9U8E2OSXD37Q' where id=2; -update noar ti set v0='TT0G1WAW0323S6LR6P9U8E2OSXD37Q' where id=2; -update noar tt set b1='C43MAKTB0IHL36UVF8X3IJ8X3D' where id=2; -update noar ti set b1='C43MAKTB0IHL36UVF8X3IJ8X3D' where id=2; -update noar tt set v0='EYTUME7QTT7Q10WYISERBBDR' where id=2; -update noar ti set v0='EYTUME7QTT7Q10WYISERBBDR' where id=2; -update noar tt set b2='SOBU4VG6R791UNM' where id=2; -update noar ti set b2='SOBU4VG6R791UNM' where id=2; -update noar tt set v0='P2VL4MEOOQQKHSFQJ8' where id=3; -update noar ti set v0='P2VL4MEOOQQKHSFQJ8' where id=3; -update noar tt set b0='S' where id=3; -update noar ti set b0='S' where id=3; -update noar tt set v0='PXSW5H35H0M6JUHLQ8EYMSZ6' where id=3; -update noar ti set v0='PXSW5H35H0M6JUHLQ8EYMSZ6' where id=3; -update noar tt set b1='Y1X' where id=3; -update noar ti set b1='Y1X' where id=3; -update noar tt set v0='E5IORNATZ9A9ZZW' where id=3; -update noar ti set v0='E5IORNATZ9A9ZZW' where id=3; -update noar tt set b2='8G9TV6GNBG2MT' where id=3; -update noar ti set b2='8G9TV6GNBG2MT' where id=3; -update noar tt set v0='IX0TTYZ42IN4UXLFV4DAEIOPMUFD' where id=4; -update noar ti set v0='IX0TTYZ42IN4UXLFV4DAEIOPMUFD' where id=4; -update noar tt set b0='P5572WN57VHX0CGN73PKIHSOWZGFJ7' where id=4; -update noar ti set b0='P5572WN57VHX0CGN73PKIHSOWZGFJ7' where id=4; -update noar tt set v0='4WU63F4PTPFJPZ4S7W7FRPVK7VK' where id=4; -update noar ti set v0='4WU63F4PTPFJPZ4S7W7FRPVK7VK' where id=4; -update noar tt set b1='GCFDECVIP0FZX8QTKD5H71' where id=4; -update noar ti set b1='GCFDECVIP0FZX8QTKD5H71' where id=4; -update noar tt set v0='AT126111KT' where id=4; -update noar ti set v0='AT126111KT' where id=4; -update noar tt set b2='C2ZSEGBWSYDE' where id=4; -update noar ti set b2='C2ZSEGBWSYDE' where id=4; -update noar tt set v0='0EA7QDPMS9EZP5EBV' where id=5; -update noar ti set v0='0EA7QDPMS9EZP5EBV' where id=5; -update noar tt set b0='O1U9K7MJPG5IKCGG6EJBQ0YCPM' where id=5; -update noar ti set b0='O1U9K7MJPG5IKCGG6EJBQ0YCPM' where id=5; -update noar tt set v0='71SGU26Z78S4A4X' where id=5; -update noar ti set v0='71SGU26Z78S4A4X' where id=5; -update noar tt set b1='1O3M9RQES' where id=5; -update noar ti set b1='1O3M9RQES' where id=5; -update noar tt set v0='4S26QD4BGJXH' where id=5; -update noar ti set v0='4S26QD4BGJXH' where id=5; -update noar tt set b2='CZQ9DJLU85E' where id=5; -update noar ti set b2='CZQ9DJLU85E' where id=5; -update noar tt set v0='TTME' where id=6; -update noar ti set v0='TTME' where id=6; -update noar tt set b0='S1PH4AODP9W' where id=6; -update noar ti set b0='S1PH4AODP9W' where id=6; -update noar tt set v0='UQ88N1SYLB5FLESZQY84' where id=6; -update noar ti set v0='UQ88N1SYLB5FLESZQY84' where id=6; -update noar tt set b1='6G34Z94VFXGBTSP' where id=6; -update noar ti set b1='6G34Z94VFXGBTSP' where id=6; -update noar tt set v0='PIA2TD38I4IFQ640DC54G8S5BJSZKL' where id=6; -update noar ti set v0='PIA2TD38I4IFQ640DC54G8S5BJSZKL' where id=6; -update noar tt set b2='907SEJ91BSE6J98LHCK8X' where id=6; -update noar ti set b2='907SEJ91BSE6J98LHCK8X' where id=6; -update noar tt set v0='6EBNR3DIYZA4Q9IBYCSOYTGBR' where id=7; -update noar ti set v0='6EBNR3DIYZA4Q9IBYCSOYTGBR' where id=7; -update noar tt set b0='LU0ULWC9BC9DLGWYZLY4LQFVUN4OOB' where id=7; -update noar ti set b0='LU0ULWC9BC9DLGWYZLY4LQFVUN4OOB' where id=7; -update noar tt set v0='7CUOXQOYDQSP' where id=7; -update noar ti set v0='7CUOXQOYDQSP' where id=7; -update noar tt set b1='L7WX5QTBE2EX2ULGOQ3WWWZDCQVD' where id=7; -update noar ti set b1='L7WX5QTBE2EX2ULGOQ3WWWZDCQVD' where id=7; -update noar tt set v0='YJ9DUUN' where id=7; -update noar ti set v0='YJ9DUUN' where id=7; -update noar tt set b2='VC3RBPJJST7SO14P61OL7U' where id=7; -update noar ti set b2='VC3RBPJJST7SO14P61OL7U' where id=7; -update noar tt set v0='LDNU1ZFW68FOSN64D32XLPRQ2OVUNPT3' where id=8; -update noar ti set v0='LDNU1ZFW68FOSN64D32XLPRQ2OVUNPT3' where id=8; -update noar tt set b0='469' where id=8; -update noar ti set b0='469' where id=8; -update noar tt set v0='C6B7RDY7ARAVYU6G1QBKYROF65YWEX' where id=8; -update noar ti set v0='C6B7RDY7ARAVYU6G1QBKYROF65YWEX' where id=8; -update noar tt set b1='H3TM3RBV8R7XEQYUH6A0OKKGX' where id=8; -update noar ti set b1='H3TM3RBV8R7XEQYUH6A0OKKGX' where id=8; -update noar tt set v0='QT2TOT5BWUK3O' where id=8; -update noar ti set v0='QT2TOT5BWUK3O' where id=8; -update noar tt set b2='442' where id=8; -update noar ti set b2='442' where id=8; -update noar tt set v0='BY8YQHNJ' where id=9; -update noar ti set v0='BY8YQHNJ' where id=9; -update noar tt set b0='ULAYW3ZNW3RSK7L8VI4JA0L0Y4Y2R3U' where id=9; -update noar ti set b0='ULAYW3ZNW3RSK7L8VI4JA0L0Y4Y2R3U' where id=9; -update noar tt set v0='WT7V3VQKGD1LDL83QH0' where id=9; -update noar ti set v0='WT7V3VQKGD1LDL83QH0' where id=9; -update noar tt set b1='IVNA2V4GI6YE2X6DG150YH25FP' where id=9; -update noar ti set b1='IVNA2V4GI6YE2X6DG150YH25FP' where id=9; -update noar tt set v0='PCBB88Q5' where id=9; -update noar ti set v0='PCBB88Q5' where id=9; -update noar tt set b2='0LTSCEZUVG03T2TKLJ7' where id=9; -update noar ti set b2='0LTSCEZUVG03T2TKLJ7' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -v0 varchar(256) not null, -b0 mediumblob not null, -b1 tinyblob not null, -b2 blob not null -) engine=tokudb; -insert into tt values (1,'','','',''); -insert into tt values (2,'','','',''); -insert into tt values (3,'','','',''); -insert into tt values (4,'','','',''); -insert into tt values (5,'','','',''); -insert into tt values (6,'','','',''); -insert into tt values (7,'','','',''); -insert into tt values (8,'','','',''); -insert into tt values (9,'','','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='9F2UUEOR5EC0YD' where id=1; -update noar ti set v0='9F2UUEOR5EC0YD' where id=1; -update noar tt set b0='MH1FXFZZCZ4HDGMIAHPKJU9019TBWIY' where id=1; -update noar ti set b0='MH1FXFZZCZ4HDGMIAHPKJU9019TBWIY' where id=1; -update noar tt set v0='ZQT0V2616NTEI3HJZ9E9I6PBSWYUY' where id=1; -update noar ti set v0='ZQT0V2616NTEI3HJZ9E9I6PBSWYUY' where id=1; -update noar tt set b1='JXZ6GE0E8UNUATT2XKSJIYWODDT' where id=1; -update noar ti set b1='JXZ6GE0E8UNUATT2XKSJIYWODDT' where id=1; -update noar tt set v0='O1H6LD4EOEJ22SRRG6J2Z7N4GVW5F' where id=1; -update noar ti set v0='O1H6LD4EOEJ22SRRG6J2Z7N4GVW5F' where id=1; -update noar tt set b2='ZEDD87VDST9JWQ' where id=1; -update noar ti set b2='ZEDD87VDST9JWQ' where id=1; -update noar tt set v0='5CHAU3S25AQY8SN6EY' where id=2; -update noar ti set v0='5CHAU3S25AQY8SN6EY' where id=2; -update noar tt set b0='4GD' where id=2; -update noar ti set b0='4GD' where id=2; -update noar tt set v0='ID' where id=2; -update noar ti set v0='ID' where id=2; -update noar tt set b1='ABX51353GW74' where id=2; -update noar ti set b1='ABX51353GW74' where id=2; -update noar tt set v0='4OL46YHHX53CLRX6CRHOO1KP' where id=2; -update noar ti set v0='4OL46YHHX53CLRX6CRHOO1KP' where id=2; -update noar tt set b2='K6TE7H' where id=2; -update noar ti set b2='K6TE7H' where id=2; -update noar tt set v0='6P81VTSAAOD8CQHNGKZOE9T4LLFBM' where id=3; -update noar ti set v0='6P81VTSAAOD8CQHNGKZOE9T4LLFBM' where id=3; -update noar tt set b0='AKY82LUNMQLV8EZA7HQ0JQL5ZE0' where id=3; -update noar ti set b0='AKY82LUNMQLV8EZA7HQ0JQL5ZE0' where id=3; -update noar tt set v0='C52MMWSJJVDF5LFFTX4X' where id=3; -update noar ti set v0='C52MMWSJJVDF5LFFTX4X' where id=3; -update noar tt set b1='6NLAW6DZBAH1EZKX4KGIZBB8EJQHSGI' where id=3; -update noar ti set b1='6NLAW6DZBAH1EZKX4KGIZBB8EJQHSGI' where id=3; -update noar tt set v0='MDPRSO17N2M6F73' where id=3; -update noar ti set v0='MDPRSO17N2M6F73' where id=3; -update noar tt set b2='JGTCWBMCTTJZKFUUB9BSFY56' where id=3; -update noar ti set b2='JGTCWBMCTTJZKFUUB9BSFY56' where id=3; -update noar tt set v0='AC1F2LW6NACBU7J5PGQAJS9M' where id=4; -update noar ti set v0='AC1F2LW6NACBU7J5PGQAJS9M' where id=4; -update noar tt set b0='REEOS' where id=4; -update noar ti set b0='REEOS' where id=4; -update noar tt set v0='LL3H6A9N7CO1O1WJMR8SLFKGP1' where id=4; -update noar ti set v0='LL3H6A9N7CO1O1WJMR8SLFKGP1' where id=4; -update noar tt set b1='7' where id=4; -update noar ti set b1='7' where id=4; -update noar tt set v0='ASL84DR76KZU7M' where id=4; -update noar ti set v0='ASL84DR76KZU7M' where id=4; -update noar tt set b2='LEIX3YR91SYHP51DWFJGC9EZA0BA0PNA' where id=4; -update noar ti set b2='LEIX3YR91SYHP51DWFJGC9EZA0BA0PNA' where id=4; -update noar tt set v0='02HZ1E10ZE1' where id=5; -update noar ti set v0='02HZ1E10ZE1' where id=5; -update noar tt set b0='YJZE7ADA5BL2PCI4YO4OIH4Y0NRC1' where id=5; -update noar ti set b0='YJZE7ADA5BL2PCI4YO4OIH4Y0NRC1' where id=5; -update noar tt set v0='S8TYW9Q0J0FGJ' where id=5; -update noar ti set v0='S8TYW9Q0J0FGJ' where id=5; -update noar tt set b1='5IGK07FMJ8DWVMS6LEGT6Z0JUF588FQ' where id=5; -update noar ti set b1='5IGK07FMJ8DWVMS6LEGT6Z0JUF588FQ' where id=5; -update noar tt set v0='KR12ZOKEQJG65EBE9PV5PF' where id=5; -update noar ti set v0='KR12ZOKEQJG65EBE9PV5PF' where id=5; -update noar tt set b2='95O3DT' where id=5; -update noar ti set b2='95O3DT' where id=5; -update noar tt set v0='5BDWTVAASDLHR3LGSXS' where id=6; -update noar ti set v0='5BDWTVAASDLHR3LGSXS' where id=6; -update noar tt set b0='OUUPVAO5RXQMVR8E4US50P' where id=6; -update noar ti set b0='OUUPVAO5RXQMVR8E4US50P' where id=6; -update noar tt set v0='Y7BZZU4SK' where id=6; -update noar ti set v0='Y7BZZU4SK' where id=6; -update noar tt set b1='KBHOK4HSQA3PZTZK5VVXJOJ87X9YUVX' where id=6; -update noar ti set b1='KBHOK4HSQA3PZTZK5VVXJOJ87X9YUVX' where id=6; -update noar tt set v0='5KXY9TM50HIYD' where id=6; -update noar ti set v0='5KXY9TM50HIYD' where id=6; -update noar tt set b2='FFIYZA0A1FDQ9YJR471JUDWDEJGL9R' where id=6; -update noar ti set b2='FFIYZA0A1FDQ9YJR471JUDWDEJGL9R' where id=6; -update noar tt set v0='G09YGJ2MHVSNH9S44B5GAN' where id=7; -update noar ti set v0='G09YGJ2MHVSNH9S44B5GAN' where id=7; -update noar tt set b0='C' where id=7; -update noar ti set b0='C' where id=7; -update noar tt set v0='NO9M9ITFS42A' where id=7; -update noar ti set v0='NO9M9ITFS42A' where id=7; -update noar tt set b1='SUM8A946P6RJCE7DYQ' where id=7; -update noar ti set b1='SUM8A946P6RJCE7DYQ' where id=7; -update noar tt set v0='YC1ZA79C2IJKL' where id=7; -update noar ti set v0='YC1ZA79C2IJKL' where id=7; -update noar tt set b2='3BLZFQ6A' where id=7; -update noar ti set b2='3BLZFQ6A' where id=7; -update noar tt set v0='3IIXY1GTYISDJ276Y3' where id=8; -update noar ti set v0='3IIXY1GTYISDJ276Y3' where id=8; -update noar tt set b0='DUY5P4LN7DFX7M7U9HO' where id=8; -update noar ti set b0='DUY5P4LN7DFX7M7U9HO' where id=8; -update noar tt set v0='U36ECOKVIBROSDID9' where id=8; -update noar ti set v0='U36ECOKVIBROSDID9' where id=8; -update noar tt set b1='S2HT6JC8QN1PZFV9QKSXCUDA6O0XNK36' where id=8; -update noar ti set b1='S2HT6JC8QN1PZFV9QKSXCUDA6O0XNK36' where id=8; -update noar tt set v0='GV6CE' where id=8; -update noar ti set v0='GV6CE' where id=8; -update noar tt set b2='J7VFYOPJEE3SK' where id=8; -update noar ti set b2='J7VFYOPJEE3SK' where id=8; -update noar tt set v0='Q5UO' where id=9; -update noar ti set v0='Q5UO' where id=9; -update noar tt set b0='PFHFVJ0TM' where id=9; -update noar ti set b0='PFHFVJ0TM' where id=9; -update noar tt set v0='WVIDAGJ9IP' where id=9; -update noar ti set v0='WVIDAGJ9IP' where id=9; -update noar tt set b1='XS25A2C42I5NNMENIKUM0XX7IY' where id=9; -update noar ti set b1='XS25A2C42I5NNMENIKUM0XX7IY' where id=9; -update noar tt set v0='STL20D7YMU' where id=9; -update noar ti set v0='STL20D7YMU' where id=9; -update noar tt set b2='WIOXFUQVC85X30M' where id=9; -update noar ti set b2='WIOXFUQVC85X30M' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -v0 varchar(32) null, -b0 mediumblob null, -b1 tinyblob null, -b2 mediumblob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='W157IUEO7WCM7LQVFUSHUQDU467' where id=1; -update noar ti set v0='W157IUEO7WCM7LQVFUSHUQDU467' where id=1; -update noar tt set b0='TSZWEEQWZ0B5GPUPS07RWEK5RG4UABD' where id=1; -update noar ti set b0='TSZWEEQWZ0B5GPUPS07RWEK5RG4UABD' where id=1; -update noar tt set v0='EGS51EG5SJIBCWN' where id=1; -update noar ti set v0='EGS51EG5SJIBCWN' where id=1; -update noar tt set b1='RT6CKA' where id=1; -update noar ti set b1='RT6CKA' where id=1; -update noar tt set v0='MKDBQ' where id=1; -update noar ti set v0='MKDBQ' where id=1; -update noar tt set b2='5J9BAFUHHFKACUMVWRV65NFOR74X' where id=1; -update noar ti set b2='5J9BAFUHHFKACUMVWRV65NFOR74X' where id=1; -update noar tt set v0='56XURDVW9' where id=2; -update noar ti set v0='56XURDVW9' where id=2; -update noar tt set b0='Z488EKIIKBV6QTW7KD' where id=2; -update noar ti set b0='Z488EKIIKBV6QTW7KD' where id=2; -update noar tt set v0='1098026SFEESCBGSLKJJKB093P' where id=2; -update noar ti set v0='1098026SFEESCBGSLKJJKB093P' where id=2; -update noar tt set b1='IDAHK2DRDGAJJKYO48' where id=2; -update noar ti set b1='IDAHK2DRDGAJJKYO48' where id=2; -update noar tt set v0='YABVGL24Z' where id=2; -update noar ti set v0='YABVGL24Z' where id=2; -update noar tt set b2='58PTBM67QPHIADXCP0O8TFRXSE' where id=2; -update noar ti set b2='58PTBM67QPHIADXCP0O8TFRXSE' where id=2; -update noar tt set v0='C4WK617Q6G3J6FLDRFNJ7OX2HMTGBYHU' where id=3; -update noar ti set v0='C4WK617Q6G3J6FLDRFNJ7OX2HMTGBYHU' where id=3; -update noar tt set b0='MBX1RN' where id=3; -update noar ti set b0='MBX1RN' where id=3; -update noar tt set v0='X2RPORBB1282PAKY4356TAC7' where id=3; -update noar ti set v0='X2RPORBB1282PAKY4356TAC7' where id=3; -update noar tt set b1='7XDBAAEIIW' where id=3; -update noar ti set b1='7XDBAAEIIW' where id=3; -update noar tt set v0='HVU0X2SDFW' where id=3; -update noar ti set v0='HVU0X2SDFW' where id=3; -update noar tt set b2='FU7IV5QTRRGDJIL21DINITLLP' where id=3; -update noar ti set b2='FU7IV5QTRRGDJIL21DINITLLP' where id=3; -update noar tt set v0='HRDG8HBV1ED3EO3VHTEVZ' where id=4; -update noar ti set v0='HRDG8HBV1ED3EO3VHTEVZ' where id=4; -update noar tt set b0='B' where id=4; -update noar ti set b0='B' where id=4; -update noar tt set v0='MP' where id=4; -update noar ti set v0='MP' where id=4; -update noar tt set b1='E7GEVUBQ1M' where id=4; -update noar ti set b1='E7GEVUBQ1M' where id=4; -update noar tt set v0='A1EGBNZ49BU9G3K2' where id=4; -update noar ti set v0='A1EGBNZ49BU9G3K2' where id=4; -update noar tt set b2='VNCTYBJV0G' where id=4; -update noar ti set b2='VNCTYBJV0G' where id=4; -update noar tt set v0='AH1WZFGX768YE8' where id=5; -update noar ti set v0='AH1WZFGX768YE8' where id=5; -update noar tt set b0='PI16IMFKEH2RJ9RXF8GUFH6SCU' where id=5; -update noar ti set b0='PI16IMFKEH2RJ9RXF8GUFH6SCU' where id=5; -update noar tt set v0='SLO7VCDGYETCWA20' where id=5; -update noar ti set v0='SLO7VCDGYETCWA20' where id=5; -update noar tt set b1='HIZJYKU9ZDET40EJB7H1G91H' where id=5; -update noar ti set b1='HIZJYKU9ZDET40EJB7H1G91H' where id=5; -update noar tt set v0='ZQYY51Y3OXUWI0752B9' where id=5; -update noar ti set v0='ZQYY51Y3OXUWI0752B9' where id=5; -update noar tt set b2='C' where id=5; -update noar ti set b2='C' where id=5; -update noar tt set v0='0NQW2B' where id=6; -update noar ti set v0='0NQW2B' where id=6; -update noar tt set b0='33MD91RAEZ' where id=6; -update noar ti set b0='33MD91RAEZ' where id=6; -update noar tt set v0='NP1OA916LHWGLLWSREF' where id=6; -update noar ti set v0='NP1OA916LHWGLLWSREF' where id=6; -update noar tt set b1='2LI6GZ14IMUJ7JFUN' where id=6; -update noar ti set b1='2LI6GZ14IMUJ7JFUN' where id=6; -update noar tt set v0='42896820IB7RI' where id=6; -update noar ti set v0='42896820IB7RI' where id=6; -update noar tt set b2='6E7CRPO8TGJERL57Y9AL4' where id=6; -update noar ti set b2='6E7CRPO8TGJERL57Y9AL4' where id=6; -update noar tt set v0='Y2DN9ITV' where id=7; -update noar ti set v0='Y2DN9ITV' where id=7; -update noar tt set b0='ZLGPSJGGRW77QKI9Z22VLYIIK8HMB' where id=7; -update noar ti set b0='ZLGPSJGGRW77QKI9Z22VLYIIK8HMB' where id=7; -update noar tt set v0='VTQISZV0EVNJTPQBLKE66OSDGGOTJA' where id=7; -update noar ti set v0='VTQISZV0EVNJTPQBLKE66OSDGGOTJA' where id=7; -update noar tt set b1='6L5XIGHXWANSEF2OWLL' where id=7; -update noar ti set b1='6L5XIGHXWANSEF2OWLL' where id=7; -update noar tt set v0='J5MI' where id=7; -update noar ti set v0='J5MI' where id=7; -update noar tt set b2='EG4PZZH25K' where id=7; -update noar ti set b2='EG4PZZH25K' where id=7; -update noar tt set v0='CX' where id=8; -update noar ti set v0='CX' where id=8; -update noar tt set b0='XMTQ0GG76YQMRNJJZFFI5D22V0HQG' where id=8; -update noar ti set b0='XMTQ0GG76YQMRNJJZFFI5D22V0HQG' where id=8; -update noar tt set v0='CEPOU4IEL6KZE2ZYHY7WR' where id=8; -update noar ti set v0='CEPOU4IEL6KZE2ZYHY7WR' where id=8; -update noar tt set b1='WH9E' where id=8; -update noar ti set b1='WH9E' where id=8; -update noar tt set v0='UBA36IC1BJZ360DDYVMAUS' where id=8; -update noar ti set v0='UBA36IC1BJZ360DDYVMAUS' where id=8; -update noar tt set b2='6UY7UBFUUSG75B76Z2BBUL51H1IL2UE' where id=8; -update noar ti set b2='6UY7UBFUUSG75B76Z2BBUL51H1IL2UE' where id=8; -update noar tt set v0='NHRP7TL8OSUL' where id=9; -update noar ti set v0='NHRP7TL8OSUL' where id=9; -update noar tt set b0='237OM' where id=9; -update noar ti set b0='237OM' where id=9; -update noar tt set v0='9FR1HH' where id=9; -update noar ti set v0='9FR1HH' where id=9; -update noar tt set b1='HKMHMNX5QDL0MJP333VXOAG9VP' where id=9; -update noar ti set b1='HKMHMNX5QDL0MJP333VXOAG9VP' where id=9; -update noar tt set v0='5U5' where id=9; -update noar ti set v0='5U5' where id=9; -update noar tt set b2='NI95R4YHI0FCK76B9QCQB7HXX9HJHV' where id=9; -update noar ti set b2='NI95R4YHI0FCK76B9QCQB7HXX9HJHV' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -v0 varchar(256) null, -b0 mediumblob null, -b1 tinyblob null, -b2 mediumblob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='1BO1DNNP1E' where id=1; -update noar ti set v0='1BO1DNNP1E' where id=1; -update noar tt set b0='JKQ9TB1420A2A2XD6MOYTYQHDL' where id=1; -update noar ti set b0='JKQ9TB1420A2A2XD6MOYTYQHDL' where id=1; -update noar tt set v0='ZJ0PNKBMJBVIQD' where id=1; -update noar ti set v0='ZJ0PNKBMJBVIQD' where id=1; -update noar tt set b1='T' where id=1; -update noar ti set b1='T' where id=1; -update noar tt set v0='7L6Q6YLVIL6M0WUJAYOP' where id=1; -update noar ti set v0='7L6Q6YLVIL6M0WUJAYOP' where id=1; -update noar tt set b2='E613RECVZ471P4M3D0BU52' where id=1; -update noar ti set b2='E613RECVZ471P4M3D0BU52' where id=1; -update noar tt set v0='TCJZTUVLMGBAUK2EYQ8GQSH5MVJ' where id=2; -update noar ti set v0='TCJZTUVLMGBAUK2EYQ8GQSH5MVJ' where id=2; -update noar tt set b0='VWA9CZ2U07R9U' where id=2; -update noar ti set b0='VWA9CZ2U07R9U' where id=2; -update noar tt set v0='IZ485Z5O4W87TXUDKIQDM' where id=2; -update noar ti set v0='IZ485Z5O4W87TXUDKIQDM' where id=2; -update noar tt set b1='97H9MR' where id=2; -update noar ti set b1='97H9MR' where id=2; -update noar tt set v0='ZTQ4WAZA796DE7FW2RE8' where id=2; -update noar ti set v0='ZTQ4WAZA796DE7FW2RE8' where id=2; -update noar tt set b2='L7NA3RQ0NYUM887B3P3F0ERUIMQN' where id=2; -update noar ti set b2='L7NA3RQ0NYUM887B3P3F0ERUIMQN' where id=2; -update noar tt set v0='YLY4LQWGZ9R2U' where id=3; -update noar ti set v0='YLY4LQWGZ9R2U' where id=3; -update noar tt set b0='5A3F511Q' where id=3; -update noar ti set b0='5A3F511Q' where id=3; -update noar tt set v0='XNZWD29955QU5Z5VRXN6UN83' where id=3; -update noar ti set v0='XNZWD29955QU5Z5VRXN6UN83' where id=3; -update noar tt set b1='P6IORZWT6WY5J724D2O4G43PFMP10' where id=3; -update noar ti set b1='P6IORZWT6WY5J724D2O4G43PFMP10' where id=3; -update noar tt set v0='5RQXK' where id=3; -update noar ti set v0='5RQXK' where id=3; -update noar tt set b2='PMJ0Y2DUHE4' where id=3; -update noar ti set b2='PMJ0Y2DUHE4' where id=3; -update noar tt set v0='QHV78B9I8D3WOE' where id=4; -update noar ti set v0='QHV78B9I8D3WOE' where id=4; -update noar tt set b0='W4T3L8UKPE' where id=4; -update noar ti set b0='W4T3L8UKPE' where id=4; -update noar tt set v0='JYILDD' where id=4; -update noar ti set v0='JYILDD' where id=4; -update noar tt set b1='PM69E66IDALFHEGIXDINKD4SYR6M' where id=4; -update noar ti set b1='PM69E66IDALFHEGIXDINKD4SYR6M' where id=4; -update noar tt set v0='AY9V72MI82953VDAX1QZ8' where id=4; -update noar ti set v0='AY9V72MI82953VDAX1QZ8' where id=4; -update noar tt set b2='CSMCP8PJP556FRVFN6F3R3' where id=4; -update noar ti set b2='CSMCP8PJP556FRVFN6F3R3' where id=4; -update noar tt set v0='8ZCCTAUZI' where id=5; -update noar ti set v0='8ZCCTAUZI' where id=5; -update noar tt set b0='2O74R7TCE6HF5' where id=5; -update noar ti set b0='2O74R7TCE6HF5' where id=5; -update noar tt set v0='S' where id=5; -update noar ti set v0='S' where id=5; -update noar tt set b1='5WGXUS' where id=5; -update noar ti set b1='5WGXUS' where id=5; -update noar tt set v0='648JW68HGYL151YWKVQ7HR0BBCU' where id=5; -update noar ti set v0='648JW68HGYL151YWKVQ7HR0BBCU' where id=5; -update noar tt set b2='OGBX' where id=5; -update noar ti set b2='OGBX' where id=5; -update noar tt set v0='LNIACFCW0RJBBG01U' where id=6; -update noar ti set v0='LNIACFCW0RJBBG01U' where id=6; -update noar tt set b0='NYTCEPMJWJ' where id=6; -update noar ti set b0='NYTCEPMJWJ' where id=6; -update noar tt set v0='PA' where id=6; -update noar ti set v0='PA' where id=6; -update noar tt set b1='FZU9' where id=6; -update noar ti set b1='FZU9' where id=6; -update noar tt set v0='US7B749ROL8' where id=6; -update noar ti set v0='US7B749ROL8' where id=6; -update noar tt set b2='QFQ6PQO539RXNZ81H68LI2NU6RQ' where id=6; -update noar ti set b2='QFQ6PQO539RXNZ81H68LI2NU6RQ' where id=6; -update noar tt set v0='94ZUPABBW5C6TQH6VCQHZ031' where id=7; -update noar ti set v0='94ZUPABBW5C6TQH6VCQHZ031' where id=7; -update noar tt set b0='WCLYSOL83NAQ8FQ5' where id=7; -update noar ti set b0='WCLYSOL83NAQ8FQ5' where id=7; -update noar tt set v0='JGGHO' where id=7; -update noar ti set v0='JGGHO' where id=7; -update noar tt set b1='0QRRTAG1I2WK4HP4RKHS36BF8NCB' where id=7; -update noar ti set b1='0QRRTAG1I2WK4HP4RKHS36BF8NCB' where id=7; -update noar tt set v0='XR5S0ZUO2C1XI8QFHEKDQRAMJZ1' where id=7; -update noar ti set v0='XR5S0ZUO2C1XI8QFHEKDQRAMJZ1' where id=7; -update noar tt set b2='1E3BX30VGMBIAPF0LRJQ4NS5B58N8' where id=7; -update noar ti set b2='1E3BX30VGMBIAPF0LRJQ4NS5B58N8' where id=7; -update noar tt set v0='5WSYKYP9ERPVJ6FA3MIPLV' where id=8; -update noar ti set v0='5WSYKYP9ERPVJ6FA3MIPLV' where id=8; -update noar tt set b0='LCWFYGE0STUI' where id=8; -update noar ti set b0='LCWFYGE0STUI' where id=8; -update noar tt set v0='GO226N1Q295DKRVD' where id=8; -update noar ti set v0='GO226N1Q295DKRVD' where id=8; -update noar tt set b1='ETLTFA1FN2RMPE8N4ZWJ2751WU4NGP0V' where id=8; -update noar ti set b1='ETLTFA1FN2RMPE8N4ZWJ2751WU4NGP0V' where id=8; -update noar tt set v0='FOJ78559PBBV7VDDII0Q4UZQGL9TS' where id=8; -update noar ti set v0='FOJ78559PBBV7VDDII0Q4UZQGL9TS' where id=8; -update noar tt set b2='7BIQ7R2R0WNHRMTE9UO' where id=8; -update noar ti set b2='7BIQ7R2R0WNHRMTE9UO' where id=8; -update noar tt set v0='78UA7UZ8UTXCZARVYT4' where id=9; -update noar ti set v0='78UA7UZ8UTXCZARVYT4' where id=9; -update noar tt set b0='NNGL7UG0G8UJOMI8QTJP82PP' where id=9; -update noar ti set b0='NNGL7UG0G8UJOMI8QTJP82PP' where id=9; -update noar tt set v0='1SMS8S8GF0FO6ZJIQJSODBI80XJ' where id=9; -update noar ti set v0='1SMS8S8GF0FO6ZJIQJSODBI80XJ' where id=9; -update noar tt set b1='UW9FXM0' where id=9; -update noar ti set b1='UW9FXM0' where id=9; -update noar tt set v0='MJ5Z108TVNJR5X9S' where id=9; -update noar ti set v0='MJ5Z108TVNJR5X9S' where id=9; -update noar tt set b2='XVCIOCNQN5XFH818OM0TL3NL8' where id=9; -update noar ti set b2='XVCIOCNQN5XFH818OM0TL3NL8' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -v0 varchar(32) not null, -b0 mediumblob not null, -b1 tinyblob not null, -b2 mediumblob not null -) engine=tokudb; -insert into tt values (1,'','','',''); -insert into tt values (2,'','','',''); -insert into tt values (3,'','','',''); -insert into tt values (4,'','','',''); -insert into tt values (5,'','','',''); -insert into tt values (6,'','','',''); -insert into tt values (7,'','','',''); -insert into tt values (8,'','','',''); -insert into tt values (9,'','','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='PTGKA67MQ' where id=1; -update noar ti set v0='PTGKA67MQ' where id=1; -update noar tt set b0='0D0RNA0ETEE696AOKL0UFT4S' where id=1; -update noar ti set b0='0D0RNA0ETEE696AOKL0UFT4S' where id=1; -update noar tt set v0='4T3QICKQ' where id=1; -update noar ti set v0='4T3QICKQ' where id=1; -update noar tt set b1='Q8F82F5SJZXFSUTD9L094YYHHCB' where id=1; -update noar ti set b1='Q8F82F5SJZXFSUTD9L094YYHHCB' where id=1; -update noar tt set v0='1HI00E6U2ORLOY7BARCPIIU' where id=1; -update noar ti set v0='1HI00E6U2ORLOY7BARCPIIU' where id=1; -update noar tt set b2='98BQCNT0GBA3OJXVF' where id=1; -update noar ti set b2='98BQCNT0GBA3OJXVF' where id=1; -update noar tt set v0='TUIEG35EHKJ3AXBE0RUT76WZHZRGXRJ' where id=2; -update noar ti set v0='TUIEG35EHKJ3AXBE0RUT76WZHZRGXRJ' where id=2; -update noar tt set b0='WQMJB' where id=2; -update noar ti set b0='WQMJB' where id=2; -update noar tt set v0='N1JU16FYP58ZBN7QXWVP' where id=2; -update noar ti set v0='N1JU16FYP58ZBN7QXWVP' where id=2; -update noar tt set b1='X9YXP9DSUPMN17D' where id=2; -update noar ti set b1='X9YXP9DSUPMN17D' where id=2; -update noar tt set v0='YJ0W1MRM3WC1FB8B4OSUNFD3HKRQ3D' where id=2; -update noar ti set v0='YJ0W1MRM3WC1FB8B4OSUNFD3HKRQ3D' where id=2; -update noar tt set b2='B6AO2L2W116OWBX9BEC9WLXUAX2' where id=2; -update noar ti set b2='B6AO2L2W116OWBX9BEC9WLXUAX2' where id=2; -update noar tt set v0='1R9SFJW8Z9NU83' where id=3; -update noar ti set v0='1R9SFJW8Z9NU83' where id=3; -update noar tt set b0='P28' where id=3; -update noar ti set b0='P28' where id=3; -update noar tt set v0='KQYOF1CEVWXBS2IENU85THA' where id=3; -update noar ti set v0='KQYOF1CEVWXBS2IENU85THA' where id=3; -update noar tt set b1='FVDTPJXJGZZQRQM0RV3W12G9M' where id=3; -update noar ti set b1='FVDTPJXJGZZQRQM0RV3W12G9M' where id=3; -update noar tt set v0='IOQ53JN52I5S3SCKAHCFMEL0F' where id=3; -update noar ti set v0='IOQ53JN52I5S3SCKAHCFMEL0F' where id=3; -update noar tt set b2='D' where id=3; -update noar ti set b2='D' where id=3; -update noar tt set v0='CHN3KRD3WP1YTW4PR3ZZQKFTM' where id=4; -update noar ti set v0='CHN3KRD3WP1YTW4PR3ZZQKFTM' where id=4; -update noar tt set b0='4T65Z9' where id=4; -update noar ti set b0='4T65Z9' where id=4; -update noar tt set v0='KRP0O32NIN2NVLFRJ3ZI' where id=4; -update noar ti set v0='KRP0O32NIN2NVLFRJ3ZI' where id=4; -update noar tt set b1='T5FRQXT0IT61OIPJRXTOC6S49' where id=4; -update noar ti set b1='T5FRQXT0IT61OIPJRXTOC6S49' where id=4; -update noar tt set v0='OCZSSF95DXRVTP783BPH6AQL' where id=4; -update noar ti set v0='OCZSSF95DXRVTP783BPH6AQL' where id=4; -update noar tt set b2='95RSMZ53729RYJ4AB1E8KPUBK' where id=4; -update noar ti set b2='95RSMZ53729RYJ4AB1E8KPUBK' where id=4; -update noar tt set v0='IAYFC7Q5RQ9L6G24FD4UCNYP' where id=5; -update noar ti set v0='IAYFC7Q5RQ9L6G24FD4UCNYP' where id=5; -update noar tt set b0='OA3FYFCJLC0D6T' where id=5; -update noar ti set b0='OA3FYFCJLC0D6T' where id=5; -update noar tt set v0='71247J8C' where id=5; -update noar ti set v0='71247J8C' where id=5; -update noar tt set b1='3TU6XTNG1' where id=5; -update noar ti set b1='3TU6XTNG1' where id=5; -update noar tt set v0='FG' where id=5; -update noar ti set v0='FG' where id=5; -update noar tt set b2='E84' where id=5; -update noar ti set b2='E84' where id=5; -update noar tt set v0='6WHJ8LB6CKJRXP2Y8RFE5XGV' where id=6; -update noar ti set v0='6WHJ8LB6CKJRXP2Y8RFE5XGV' where id=6; -update noar tt set b0='XXNGTMANVO' where id=6; -update noar ti set b0='XXNGTMANVO' where id=6; -update noar tt set v0='Y7DLDIS7VZR' where id=6; -update noar ti set v0='Y7DLDIS7VZR' where id=6; -update noar tt set b1='X4M7ZAXEF65KO5ZKX' where id=6; -update noar ti set b1='X4M7ZAXEF65KO5ZKX' where id=6; -update noar tt set v0='45JOTHEYLO0CAR60JVZYQ8PBJ' where id=6; -update noar ti set v0='45JOTHEYLO0CAR60JVZYQ8PBJ' where id=6; -update noar tt set b2='G043OIEM83ID' where id=6; -update noar ti set b2='G043OIEM83ID' where id=6; -update noar tt set v0='IHVB7ER2' where id=7; -update noar ti set v0='IHVB7ER2' where id=7; -update noar tt set b0='LOIUO4E01ZRXK1O' where id=7; -update noar ti set b0='LOIUO4E01ZRXK1O' where id=7; -update noar tt set v0='37M4S6GN98OG' where id=7; -update noar ti set v0='37M4S6GN98OG' where id=7; -update noar tt set b1='R3E6XJ2TC8DOYXE' where id=7; -update noar ti set b1='R3E6XJ2TC8DOYXE' where id=7; -update noar tt set v0='JLVUT524TZUE' where id=7; -update noar ti set v0='JLVUT524TZUE' where id=7; -update noar tt set b2='NK95KSOVU4Z' where id=7; -update noar ti set b2='NK95KSOVU4Z' where id=7; -update noar tt set v0='UOW1PHY00J7KXBHJF68' where id=8; -update noar ti set v0='UOW1PHY00J7KXBHJF68' where id=8; -update noar tt set b0='Q90RSEZBOJWO4098IALDLFQJ' where id=8; -update noar ti set b0='Q90RSEZBOJWO4098IALDLFQJ' where id=8; -update noar tt set v0='2XW1YFPN' where id=8; -update noar ti set v0='2XW1YFPN' where id=8; -update noar tt set b1='QZA' where id=8; -update noar ti set b1='QZA' where id=8; -update noar tt set v0='JCHE7A2F2NI8XXF9APFWPGSNQ2' where id=8; -update noar ti set v0='JCHE7A2F2NI8XXF9APFWPGSNQ2' where id=8; -update noar tt set b2='P2YSYWS9H8F5UA3GGPDN' where id=8; -update noar ti set b2='P2YSYWS9H8F5UA3GGPDN' where id=8; -update noar tt set v0='PI0IKNTCB5DJ48D2S4BN6ON2' where id=9; -update noar ti set v0='PI0IKNTCB5DJ48D2S4BN6ON2' where id=9; -update noar tt set b0='4Y23GZ7RMUQM7J362X' where id=9; -update noar ti set b0='4Y23GZ7RMUQM7J362X' where id=9; -update noar tt set v0='SSKFB1YB40PKXXYF3JCD4XDT0Z' where id=9; -update noar ti set v0='SSKFB1YB40PKXXYF3JCD4XDT0Z' where id=9; -update noar tt set b1='R7PATZX8GY2PRJSB45S5A' where id=9; -update noar ti set b1='R7PATZX8GY2PRJSB45S5A' where id=9; -update noar tt set v0='V3IURG' where id=9; -update noar ti set v0='V3IURG' where id=9; -update noar tt set b2='CUEZ63J1YT7MUNZF9T22YOKE' where id=9; -update noar ti set b2='CUEZ63J1YT7MUNZF9T22YOKE' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -v0 varchar(256) not null, -b0 mediumblob not null, -b1 tinyblob not null, -b2 mediumblob not null -) engine=tokudb; -insert into tt values (1,'','','',''); -insert into tt values (2,'','','',''); -insert into tt values (3,'','','',''); -insert into tt values (4,'','','',''); -insert into tt values (5,'','','',''); -insert into tt values (6,'','','',''); -insert into tt values (7,'','','',''); -insert into tt values (8,'','','',''); -insert into tt values (9,'','','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='CVQT6QBFJPXKKS3C2' where id=1; -update noar ti set v0='CVQT6QBFJPXKKS3C2' where id=1; -update noar tt set b0='KD9WJVZJFWVUCIEKKGG23JZD80K1S2' where id=1; -update noar ti set b0='KD9WJVZJFWVUCIEKKGG23JZD80K1S2' where id=1; -update noar tt set v0='KRSRZ5GS4BHVQZ' where id=1; -update noar ti set v0='KRSRZ5GS4BHVQZ' where id=1; -update noar tt set b1='JXTCPQ3R' where id=1; -update noar ti set b1='JXTCPQ3R' where id=1; -update noar tt set v0='22LCQF7ELOJZJGU' where id=1; -update noar ti set v0='22LCQF7ELOJZJGU' where id=1; -update noar tt set b2='ECPSQY4G9NBC5DWVQV495S' where id=1; -update noar ti set b2='ECPSQY4G9NBC5DWVQV495S' where id=1; -update noar tt set v0='JSIBYTVS01I6BKDRSX0NL8' where id=2; -update noar ti set v0='JSIBYTVS01I6BKDRSX0NL8' where id=2; -update noar tt set b0='2NUYN7O7YA47YNL' where id=2; -update noar ti set b0='2NUYN7O7YA47YNL' where id=2; -update noar tt set v0='FK6Q0YPV9K3FUJSP23H6GGPDRFVB5RG1' where id=2; -update noar ti set v0='FK6Q0YPV9K3FUJSP23H6GGPDRFVB5RG1' where id=2; -update noar tt set b1='890G17EVQQVQSEWC9IU3RWVLA2R3PC89' where id=2; -update noar ti set b1='890G17EVQQVQSEWC9IU3RWVLA2R3PC89' where id=2; -update noar tt set v0='KZQ74QHN9AW96FR2H4OXX01UHL7' where id=2; -update noar ti set v0='KZQ74QHN9AW96FR2H4OXX01UHL7' where id=2; -update noar tt set b2='ZJMC88A5VZLE7' where id=2; -update noar ti set b2='ZJMC88A5VZLE7' where id=2; -update noar tt set v0='B88FQW7KGY9NVZ1' where id=3; -update noar ti set v0='B88FQW7KGY9NVZ1' where id=3; -update noar tt set b0='MT9QU7VDPWY9T1668OF1V5KGH9UTE2G0' where id=3; -update noar ti set b0='MT9QU7VDPWY9T1668OF1V5KGH9UTE2G0' where id=3; -update noar tt set v0='K1KK0IO5CNAFAIY7K2JBTDDFAPC' where id=3; -update noar ti set v0='K1KK0IO5CNAFAIY7K2JBTDDFAPC' where id=3; -update noar tt set b1='H6IYS6UVG' where id=3; -update noar ti set b1='H6IYS6UVG' where id=3; -update noar tt set v0='GAK7BP56UOLPNY28GX9IAY9I' where id=3; -update noar ti set v0='GAK7BP56UOLPNY28GX9IAY9I' where id=3; -update noar tt set b2='UWN' where id=3; -update noar ti set b2='UWN' where id=3; -update noar tt set v0='HANVSS2K3CZY0CENQ' where id=4; -update noar ti set v0='HANVSS2K3CZY0CENQ' where id=4; -update noar tt set b0='DWOJ4708T351YK7Y5X4134ETRXO' where id=4; -update noar ti set b0='DWOJ4708T351YK7Y5X4134ETRXO' where id=4; -update noar tt set v0='OZYDIQO055EY' where id=4; -update noar ti set v0='OZYDIQO055EY' where id=4; -update noar tt set b1='Z4Q9Z' where id=4; -update noar ti set b1='Z4Q9Z' where id=4; -update noar tt set v0='J9D19VZIBLMUV1V79V' where id=4; -update noar ti set v0='J9D19VZIBLMUV1V79V' where id=4; -update noar tt set b2='NXD2YRXQIYIE9TM6K' where id=4; -update noar ti set b2='NXD2YRXQIYIE9TM6K' where id=4; -update noar tt set v0='OKCBOO51D4JM3TX9I1X' where id=5; -update noar ti set v0='OKCBOO51D4JM3TX9I1X' where id=5; -update noar tt set b0='V' where id=5; -update noar ti set b0='V' where id=5; -update noar tt set v0='FAKX0KXCLTS5LNVCX8I' where id=5; -update noar ti set v0='FAKX0KXCLTS5LNVCX8I' where id=5; -update noar tt set b1='GHNS1P5T84UN6R' where id=5; -update noar ti set b1='GHNS1P5T84UN6R' where id=5; -update noar tt set v0='SN1TIQLLGHO6SIELT3F6CR8EOZRBDF' where id=5; -update noar ti set v0='SN1TIQLLGHO6SIELT3F6CR8EOZRBDF' where id=5; -update noar tt set b2='GLW177V2OMO2OUHHIWBKQW53' where id=5; -update noar ti set b2='GLW177V2OMO2OUHHIWBKQW53' where id=5; -update noar tt set v0='Q6HHGU' where id=6; -update noar ti set v0='Q6HHGU' where id=6; -update noar tt set b0='9H1O0DW8GMGW8U617SFX' where id=6; -update noar ti set b0='9H1O0DW8GMGW8U617SFX' where id=6; -update noar tt set v0='BE6SKIRYEZLEPIK54G94R3S438QM' where id=6; -update noar ti set v0='BE6SKIRYEZLEPIK54G94R3S438QM' where id=6; -update noar tt set b1='OWPKMLGFUY9SYHPE8HE' where id=6; -update noar ti set b1='OWPKMLGFUY9SYHPE8HE' where id=6; -update noar tt set v0='ZCE35A1JS9MNT' where id=6; -update noar ti set v0='ZCE35A1JS9MNT' where id=6; -update noar tt set b2='NCG2PXQBB6OM7MSREXWZOG80EELLU' where id=6; -update noar ti set b2='NCG2PXQBB6OM7MSREXWZOG80EELLU' where id=6; -update noar tt set v0='M5EJ32ASHRY66CH4CST' where id=7; -update noar ti set v0='M5EJ32ASHRY66CH4CST' where id=7; -update noar tt set b0='D56MR' where id=7; -update noar ti set b0='D56MR' where id=7; -update noar tt set v0='LOR4V8EUFIQLQ41KKOTGV8X6' where id=7; -update noar ti set v0='LOR4V8EUFIQLQ41KKOTGV8X6' where id=7; -update noar tt set b1='86JX62U76TZ1' where id=7; -update noar ti set b1='86JX62U76TZ1' where id=7; -update noar tt set v0='7787RQK215BYT3BPJ44V' where id=7; -update noar ti set v0='7787RQK215BYT3BPJ44V' where id=7; -update noar tt set b2='HW2XDS4G129N7OL40VIAY4Q' where id=7; -update noar ti set b2='HW2XDS4G129N7OL40VIAY4Q' where id=7; -update noar tt set v0='8A5D8G51UFF61AZ1P6ZAG52' where id=8; -update noar ti set v0='8A5D8G51UFF61AZ1P6ZAG52' where id=8; -update noar tt set b0='DNUQ4B11G4UHWIIRF' where id=8; -update noar ti set b0='DNUQ4B11G4UHWIIRF' where id=8; -update noar tt set v0='T7S0T7EJKZKM3QXXKEJ2A2B8J6C7IP' where id=8; -update noar ti set v0='T7S0T7EJKZKM3QXXKEJ2A2B8J6C7IP' where id=8; -update noar tt set b1='I0WCTO2SO5INLDQWBZCUFO9NZ9BN1' where id=8; -update noar ti set b1='I0WCTO2SO5INLDQWBZCUFO9NZ9BN1' where id=8; -update noar tt set v0='FTJL6767C8R4ZZ7YB8B10QUUK' where id=8; -update noar ti set v0='FTJL6767C8R4ZZ7YB8B10QUUK' where id=8; -update noar tt set b2='VL36TG8RJOGEUH67R' where id=8; -update noar ti set b2='VL36TG8RJOGEUH67R' where id=8; -update noar tt set v0='4IXKPPYG9BVTEZRFVOGLCBZ' where id=9; -update noar ti set v0='4IXKPPYG9BVTEZRFVOGLCBZ' where id=9; -update noar tt set b0='AGJY7T1U5KT0FXTBL4FEQK75P3S6' where id=9; -update noar ti set b0='AGJY7T1U5KT0FXTBL4FEQK75P3S6' where id=9; -update noar tt set v0='2LWI00ARFL' where id=9; -update noar ti set v0='2LWI00ARFL' where id=9; -update noar tt set b1='QOPM5O11WXRTTF6WVZPTV8O851RHO4Q' where id=9; -update noar ti set b1='QOPM5O11WXRTTF6WVZPTV8O851RHO4Q' where id=9; -update noar tt set v0='RL0P' where id=9; -update noar ti set v0='RL0P' where id=9; -update noar tt set b2='CPP63Q2IOXWDD4' where id=9; -update noar ti set b2='CPP63Q2IOXWDD4' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -v0 varchar(32) null, -b0 mediumblob null, -b1 tinyblob null, -b2 longblob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='21OJJYNQB6DXC3DU9' where id=1; -update noar ti set v0='21OJJYNQB6DXC3DU9' where id=1; -update noar tt set b0='61GHSABART' where id=1; -update noar ti set b0='61GHSABART' where id=1; -update noar tt set v0='964OS' where id=1; -update noar ti set v0='964OS' where id=1; -update noar tt set b1='ZRQ1104R0LCUXR1N' where id=1; -update noar ti set b1='ZRQ1104R0LCUXR1N' where id=1; -update noar tt set v0='GD0I3Z3EL' where id=1; -update noar ti set v0='GD0I3Z3EL' where id=1; -update noar tt set b2='NEX4Y4S' where id=1; -update noar ti set b2='NEX4Y4S' where id=1; -update noar tt set v0='J7G5COJ9O4MZL03C8F3LTNQ9J4M0BG' where id=2; -update noar ti set v0='J7G5COJ9O4MZL03C8F3LTNQ9J4M0BG' where id=2; -update noar tt set b0='KCT7H4I42XOUNF0' where id=2; -update noar ti set b0='KCT7H4I42XOUNF0' where id=2; -update noar tt set v0='VE26XO4P6GIXQGD8X6KOW3Q8WSV1CR' where id=2; -update noar ti set v0='VE26XO4P6GIXQGD8X6KOW3Q8WSV1CR' where id=2; -update noar tt set b1='QQL6EUAYQ9G3ROZPOBT7HOW9FZXUTRI0' where id=2; -update noar ti set b1='QQL6EUAYQ9G3ROZPOBT7HOW9FZXUTRI0' where id=2; -update noar tt set v0='N0GAUEJ60X' where id=2; -update noar ti set v0='N0GAUEJ60X' where id=2; -update noar tt set b2='Q3QP1HZ27QKYGBH6QTE8US9Z' where id=2; -update noar ti set b2='Q3QP1HZ27QKYGBH6QTE8US9Z' where id=2; -update noar tt set v0='TSMVX05CRK8793J' where id=3; -update noar ti set v0='TSMVX05CRK8793J' where id=3; -update noar tt set b0='5517O941L6K11RFH' where id=3; -update noar ti set b0='5517O941L6K11RFH' where id=3; -update noar tt set v0='7UGN' where id=3; -update noar ti set v0='7UGN' where id=3; -update noar tt set b1='H8EY1Y0LTUD88KL710KDZOTR6Z9BW' where id=3; -update noar ti set b1='H8EY1Y0LTUD88KL710KDZOTR6Z9BW' where id=3; -update noar tt set v0='FZ7WPJZ1' where id=3; -update noar ti set v0='FZ7WPJZ1' where id=3; -update noar tt set b2='S3265J2X2V' where id=3; -update noar ti set b2='S3265J2X2V' where id=3; -update noar tt set v0='OH96WT3IS1JHNLYASXCVKSS0UP35' where id=4; -update noar ti set v0='OH96WT3IS1JHNLYASXCVKSS0UP35' where id=4; -update noar tt set b0='29JN14HZZRKFYZK6O4DC8DWPBVZ86D' where id=4; -update noar ti set b0='29JN14HZZRKFYZK6O4DC8DWPBVZ86D' where id=4; -update noar tt set v0='RF2' where id=4; -update noar ti set v0='RF2' where id=4; -update noar tt set b1='YWSDXLGHWDBR5WS8V' where id=4; -update noar ti set b1='YWSDXLGHWDBR5WS8V' where id=4; -update noar tt set v0='6' where id=4; -update noar ti set v0='6' where id=4; -update noar tt set b2='ZKW39A368' where id=4; -update noar ti set b2='ZKW39A368' where id=4; -update noar tt set v0='5VIC7O1ULHW8CM' where id=5; -update noar ti set v0='5VIC7O1ULHW8CM' where id=5; -update noar tt set b0='3LVZF5EBOCDFTW8' where id=5; -update noar ti set b0='3LVZF5EBOCDFTW8' where id=5; -update noar tt set v0='E2DXLBA17' where id=5; -update noar ti set v0='E2DXLBA17' where id=5; -update noar tt set b1='ZH' where id=5; -update noar ti set b1='ZH' where id=5; -update noar tt set v0='NLXA3S' where id=5; -update noar ti set v0='NLXA3S' where id=5; -update noar tt set b2='4LGHNT4Q85I4O7ULVFQQLRUNGZ5' where id=5; -update noar ti set b2='4LGHNT4Q85I4O7ULVFQQLRUNGZ5' where id=5; -update noar tt set v0='U43I4FYRABBHNY9U' where id=6; -update noar ti set v0='U43I4FYRABBHNY9U' where id=6; -update noar tt set b0='FZ' where id=6; -update noar ti set b0='FZ' where id=6; -update noar tt set v0='2TUNSXX5YJHX8F6SABLT' where id=6; -update noar ti set v0='2TUNSXX5YJHX8F6SABLT' where id=6; -update noar tt set b1='48ZP479' where id=6; -update noar ti set b1='48ZP479' where id=6; -update noar tt set v0='EEL7VO4WJHNI' where id=6; -update noar ti set v0='EEL7VO4WJHNI' where id=6; -update noar tt set b2='AM7K5GT1L0NTY1ZNQ0' where id=6; -update noar ti set b2='AM7K5GT1L0NTY1ZNQ0' where id=6; -update noar tt set v0='FVW85RANM6T35BDIO' where id=7; -update noar ti set v0='FVW85RANM6T35BDIO' where id=7; -update noar tt set b0='RJBNVO6QKVKU7P' where id=7; -update noar ti set b0='RJBNVO6QKVKU7P' where id=7; -update noar tt set v0='2UP94M17BJ485Y' where id=7; -update noar ti set v0='2UP94M17BJ485Y' where id=7; -update noar tt set b1='QMUSTOPA2' where id=7; -update noar ti set b1='QMUSTOPA2' where id=7; -update noar tt set v0='V' where id=7; -update noar ti set v0='V' where id=7; -update noar tt set b2='ZNKIGBSS' where id=7; -update noar ti set b2='ZNKIGBSS' where id=7; -update noar tt set v0='HGS9I3I62ELHRQXIW' where id=8; -update noar ti set v0='HGS9I3I62ELHRQXIW' where id=8; -update noar tt set b0='8E6GOZWVA50USLU' where id=8; -update noar ti set b0='8E6GOZWVA50USLU' where id=8; -update noar tt set v0='TQLEVN4' where id=8; -update noar ti set v0='TQLEVN4' where id=8; -update noar tt set b1='EBF9KXB0P4WW6O5JN9MKA' where id=8; -update noar ti set b1='EBF9KXB0P4WW6O5JN9MKA' where id=8; -update noar tt set v0='FXBLG2MD' where id=8; -update noar ti set v0='FXBLG2MD' where id=8; -update noar tt set b2='3S' where id=8; -update noar ti set b2='3S' where id=8; -update noar tt set v0='IJ8PGQ90RT0G64Q7' where id=9; -update noar ti set v0='IJ8PGQ90RT0G64Q7' where id=9; -update noar tt set b0='GLZ5FTW8V2DGJDNZ91IAUT' where id=9; -update noar ti set b0='GLZ5FTW8V2DGJDNZ91IAUT' where id=9; -update noar tt set v0='KBIC3ZWUKB6024XJ2Q9JJ7QX953L' where id=9; -update noar ti set v0='KBIC3ZWUKB6024XJ2Q9JJ7QX953L' where id=9; -update noar tt set b1='A' where id=9; -update noar ti set b1='A' where id=9; -update noar tt set v0='P0R1L09S6AH5I52OHLPO9KCQ' where id=9; -update noar ti set v0='P0R1L09S6AH5I52OHLPO9KCQ' where id=9; -update noar tt set b2='R0F' where id=9; -update noar ti set b2='R0F' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -v0 varchar(256) null, -b0 mediumblob null, -b1 tinyblob null, -b2 longblob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='HL1RD2FWCWOD4TPKVWY3' where id=1; -update noar ti set v0='HL1RD2FWCWOD4TPKVWY3' where id=1; -update noar tt set b0='GUKWFY7CPO67USXO7PL' where id=1; -update noar ti set b0='GUKWFY7CPO67USXO7PL' where id=1; -update noar tt set v0='VB8LBUVC' where id=1; -update noar ti set v0='VB8LBUVC' where id=1; -update noar tt set b1='4DX4NT96ZZD' where id=1; -update noar ti set b1='4DX4NT96ZZD' where id=1; -update noar tt set v0='X2724PXIMMDDIFPRNG2' where id=1; -update noar ti set v0='X2724PXIMMDDIFPRNG2' where id=1; -update noar tt set b2='V8A2PMQ4YJKNDI' where id=1; -update noar ti set b2='V8A2PMQ4YJKNDI' where id=1; -update noar tt set v0='7HFLNHBQ' where id=2; -update noar ti set v0='7HFLNHBQ' where id=2; -update noar tt set b0='C1OH562IFS14PO9VJ' where id=2; -update noar ti set b0='C1OH562IFS14PO9VJ' where id=2; -update noar tt set v0='1K' where id=2; -update noar ti set v0='1K' where id=2; -update noar tt set b1='Q4HPM4N2IUAZTT' where id=2; -update noar ti set b1='Q4HPM4N2IUAZTT' where id=2; -update noar tt set v0='QBVCL' where id=2; -update noar ti set v0='QBVCL' where id=2; -update noar tt set b2='AFJ7YI0D3RZEF1NH5USXXE2Z' where id=2; -update noar ti set b2='AFJ7YI0D3RZEF1NH5USXXE2Z' where id=2; -update noar tt set v0='6TJQDY0VOX9ZFTNNBV58P35VN' where id=3; -update noar ti set v0='6TJQDY0VOX9ZFTNNBV58P35VN' where id=3; -update noar tt set b0='JP5W9QVIITSZGKMHP' where id=3; -update noar ti set b0='JP5W9QVIITSZGKMHP' where id=3; -update noar tt set v0='BB7D18JDANP' where id=3; -update noar ti set v0='BB7D18JDANP' where id=3; -update noar tt set b1='VOYP4GZ250RG6Y' where id=3; -update noar ti set b1='VOYP4GZ250RG6Y' where id=3; -update noar tt set v0='D' where id=3; -update noar ti set v0='D' where id=3; -update noar tt set b2='XZKWF6T3L34' where id=3; -update noar ti set b2='XZKWF6T3L34' where id=3; -update noar tt set v0='FL9YY5Y' where id=4; -update noar ti set v0='FL9YY5Y' where id=4; -update noar tt set b0='2ZAYPJ7S8ETB1WMZFCDBPMT' where id=4; -update noar ti set b0='2ZAYPJ7S8ETB1WMZFCDBPMT' where id=4; -update noar tt set v0='2XYMN595X4221C60V2JUREDT' where id=4; -update noar ti set v0='2XYMN595X4221C60V2JUREDT' where id=4; -update noar tt set b1='FWWUMNSB5Y6I61ETVSE' where id=4; -update noar ti set b1='FWWUMNSB5Y6I61ETVSE' where id=4; -update noar tt set v0='CTXJTU7HOW2LCF45410QDFTR2' where id=4; -update noar ti set v0='CTXJTU7HOW2LCF45410QDFTR2' where id=4; -update noar tt set b2='6BCKTKY34QPMOZ' where id=4; -update noar ti set b2='6BCKTKY34QPMOZ' where id=4; -update noar tt set v0='3SZ3Y9HOS6PV5KXCOUPFKB' where id=5; -update noar ti set v0='3SZ3Y9HOS6PV5KXCOUPFKB' where id=5; -update noar tt set b0='1LL' where id=5; -update noar ti set b0='1LL' where id=5; -update noar tt set v0='06T19ZH7UK1590GPD4Q' where id=5; -update noar ti set v0='06T19ZH7UK1590GPD4Q' where id=5; -update noar tt set b1='BI8' where id=5; -update noar ti set b1='BI8' where id=5; -update noar tt set v0='QVGXLF' where id=5; -update noar ti set v0='QVGXLF' where id=5; -update noar tt set b2='E1TEACSKGPHJX3MEXRAOOC8LRN' where id=5; -update noar ti set b2='E1TEACSKGPHJX3MEXRAOOC8LRN' where id=5; -update noar tt set v0='VQWUVKPU1NFIHRJV5JE7HLLUI6YW3TC2' where id=6; -update noar ti set v0='VQWUVKPU1NFIHRJV5JE7HLLUI6YW3TC2' where id=6; -update noar tt set b0='UTJO18N5VD7RSM2DV6BU66MZ' where id=6; -update noar ti set b0='UTJO18N5VD7RSM2DV6BU66MZ' where id=6; -update noar tt set v0='JNU' where id=6; -update noar ti set v0='JNU' where id=6; -update noar tt set b1='7TMRYOTWM5' where id=6; -update noar ti set b1='7TMRYOTWM5' where id=6; -update noar tt set v0='V5B3UO1DNOGJF0IJWLYJ0' where id=6; -update noar ti set v0='V5B3UO1DNOGJF0IJWLYJ0' where id=6; -update noar tt set b2='BV' where id=6; -update noar ti set b2='BV' where id=6; -update noar tt set v0='RD19WOMFOHP1NS6B4RDRAJ' where id=7; -update noar ti set v0='RD19WOMFOHP1NS6B4RDRAJ' where id=7; -update noar tt set b0='G0UK0XTO9V4QJWM25FM2' where id=7; -update noar ti set b0='G0UK0XTO9V4QJWM25FM2' where id=7; -update noar tt set v0='NNRAG27BONARLR9B' where id=7; -update noar ti set v0='NNRAG27BONARLR9B' where id=7; -update noar tt set b1='42NGZEDM' where id=7; -update noar ti set b1='42NGZEDM' where id=7; -update noar tt set v0='Y29RHMH22A7Q8CNEDR5WA1Z32DTQ' where id=7; -update noar ti set v0='Y29RHMH22A7Q8CNEDR5WA1Z32DTQ' where id=7; -update noar tt set b2='94RUT3UYSN8UZV390BR6ZJ0QDLVPORGL' where id=7; -update noar ti set b2='94RUT3UYSN8UZV390BR6ZJ0QDLVPORGL' where id=7; -update noar tt set v0='5U1JR31LDT5E418MHIE0RO81EK93T' where id=8; -update noar ti set v0='5U1JR31LDT5E418MHIE0RO81EK93T' where id=8; -update noar tt set b0='069PFK2GC' where id=8; -update noar ti set b0='069PFK2GC' where id=8; -update noar tt set v0='ZXI19RYQ2ERCRAEM02' where id=8; -update noar ti set v0='ZXI19RYQ2ERCRAEM02' where id=8; -update noar tt set b1='JJQHY2KHYJU5XRJ95NTX4SYFFGAP' where id=8; -update noar ti set b1='JJQHY2KHYJU5XRJ95NTX4SYFFGAP' where id=8; -update noar tt set v0='XBQS2DWSR0036PSS7CDBMOMU859' where id=8; -update noar ti set v0='XBQS2DWSR0036PSS7CDBMOMU859' where id=8; -update noar tt set b2='V4T4GEVUZ4Q21Q0S5CZSLDO' where id=8; -update noar ti set b2='V4T4GEVUZ4Q21Q0S5CZSLDO' where id=8; -update noar tt set v0='4DCD6O32EFXIHM548S' where id=9; -update noar ti set v0='4DCD6O32EFXIHM548S' where id=9; -update noar tt set b0='1XPL50ZSNGCBIIMOE' where id=9; -update noar ti set b0='1XPL50ZSNGCBIIMOE' where id=9; -update noar tt set v0='JTHEBALS7W51UD' where id=9; -update noar ti set v0='JTHEBALS7W51UD' where id=9; -update noar tt set b1='7Z75FTH7MPSEEBU8BGCGVAC' where id=9; -update noar ti set b1='7Z75FTH7MPSEEBU8BGCGVAC' where id=9; -update noar tt set v0='506P0VY7JEZTBFFJ7ZQ7OC1ZKY3AIG' where id=9; -update noar ti set v0='506P0VY7JEZTBFFJ7ZQ7OC1ZKY3AIG' where id=9; -update noar tt set b2='4O' where id=9; -update noar ti set b2='4O' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -v0 varchar(32) not null, -b0 mediumblob not null, -b1 tinyblob not null, -b2 longblob not null -) engine=tokudb; -insert into tt values (1,'','','',''); -insert into tt values (2,'','','',''); -insert into tt values (3,'','','',''); -insert into tt values (4,'','','',''); -insert into tt values (5,'','','',''); -insert into tt values (6,'','','',''); -insert into tt values (7,'','','',''); -insert into tt values (8,'','','',''); -insert into tt values (9,'','','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='CSWHY390L8CWLFRKRMSRIE1G' where id=1; -update noar ti set v0='CSWHY390L8CWLFRKRMSRIE1G' where id=1; -update noar tt set b0='XS4YW8N0' where id=1; -update noar ti set b0='XS4YW8N0' where id=1; -update noar tt set v0='OOZLH556CM1CMKL8VRGH89Q' where id=1; -update noar ti set v0='OOZLH556CM1CMKL8VRGH89Q' where id=1; -update noar tt set b1='UOY7XP9Q3I' where id=1; -update noar ti set b1='UOY7XP9Q3I' where id=1; -update noar tt set v0='BB1OQYVROCIIZ6020URF0AV6CYT' where id=1; -update noar ti set v0='BB1OQYVROCIIZ6020URF0AV6CYT' where id=1; -update noar tt set b2='1NJT7HN7O6WKFSVEYEAJYYJEV1S6D0X' where id=1; -update noar ti set b2='1NJT7HN7O6WKFSVEYEAJYYJEV1S6D0X' where id=1; -update noar tt set v0='WJ8MP1V761L92RBLWX5QJSS' where id=2; -update noar ti set v0='WJ8MP1V761L92RBLWX5QJSS' where id=2; -update noar tt set b0='YS' where id=2; -update noar ti set b0='YS' where id=2; -update noar tt set v0='2MQ' where id=2; -update noar ti set v0='2MQ' where id=2; -update noar tt set b1='6H' where id=2; -update noar ti set b1='6H' where id=2; -update noar tt set v0='8TXQAJG1TJOD8OWU84QQXMB' where id=2; -update noar ti set v0='8TXQAJG1TJOD8OWU84QQXMB' where id=2; -update noar tt set b2='SU4Q525Q8SF1LULLX1FJ8D0J4UOZJ' where id=2; -update noar ti set b2='SU4Q525Q8SF1LULLX1FJ8D0J4UOZJ' where id=2; -update noar tt set v0='ZSZJCRHSDTASOKP' where id=3; -update noar ti set v0='ZSZJCRHSDTASOKP' where id=3; -update noar tt set b0='PFEGVSPDPNL0RB64PWHLBP5W3' where id=3; -update noar ti set b0='PFEGVSPDPNL0RB64PWHLBP5W3' where id=3; -update noar tt set v0='DJAYWIET5A2' where id=3; -update noar ti set v0='DJAYWIET5A2' where id=3; -update noar tt set b1='XWSG1JZ82J4JVD0' where id=3; -update noar ti set b1='XWSG1JZ82J4JVD0' where id=3; -update noar tt set v0='W9GL4WA4I12BVYFHNV19CA0CZA' where id=3; -update noar ti set v0='W9GL4WA4I12BVYFHNV19CA0CZA' where id=3; -update noar tt set b2='E9O5CCAAZJXOVN4XJAVV' where id=3; -update noar ti set b2='E9O5CCAAZJXOVN4XJAVV' where id=3; -update noar tt set v0='T0FCMLHKT' where id=4; -update noar ti set v0='T0FCMLHKT' where id=4; -update noar tt set b0='5A' where id=4; -update noar ti set b0='5A' where id=4; -update noar tt set v0='G05M' where id=4; -update noar ti set v0='G05M' where id=4; -update noar tt set b1='BH4TOSLM0LA8B2WVF1C0WJGGUJ8DN' where id=4; -update noar ti set b1='BH4TOSLM0LA8B2WVF1C0WJGGUJ8DN' where id=4; -update noar tt set v0='1878E2FQ' where id=4; -update noar ti set v0='1878E2FQ' where id=4; -update noar tt set b2='KI' where id=4; -update noar ti set b2='KI' where id=4; -update noar tt set v0='H39LGTIKPR93ZSUR50YC0RTZE' where id=5; -update noar ti set v0='H39LGTIKPR93ZSUR50YC0RTZE' where id=5; -update noar tt set b0='IL0XN03E38173DN20XVVJFNYST' where id=5; -update noar ti set b0='IL0XN03E38173DN20XVVJFNYST' where id=5; -update noar tt set v0='WCOQXVSP6' where id=5; -update noar ti set v0='WCOQXVSP6' where id=5; -update noar tt set b1='FWTQY8I13RAC88OE' where id=5; -update noar ti set b1='FWTQY8I13RAC88OE' where id=5; -update noar tt set v0='DT5JQ7JD7DR309L7MAF4U7KQ4R1G' where id=5; -update noar ti set v0='DT5JQ7JD7DR309L7MAF4U7KQ4R1G' where id=5; -update noar tt set b2='38QYWYEEHY9J8TD8OJNYPIXMP8K2' where id=5; -update noar ti set b2='38QYWYEEHY9J8TD8OJNYPIXMP8K2' where id=5; -update noar tt set v0='V5SZ071DCH2SBX0JWCAAU0G' where id=6; -update noar ti set v0='V5SZ071DCH2SBX0JWCAAU0G' where id=6; -update noar tt set b0='3RP2KUVAJU' where id=6; -update noar ti set b0='3RP2KUVAJU' where id=6; -update noar tt set v0='TF5ULM69909MG1F4XWE' where id=6; -update noar ti set v0='TF5ULM69909MG1F4XWE' where id=6; -update noar tt set b1='TOC1UUVPJ5ZMQMN7XZQG0POSHXIAW90T' where id=6; -update noar ti set b1='TOC1UUVPJ5ZMQMN7XZQG0POSHXIAW90T' where id=6; -update noar tt set v0='P' where id=6; -update noar ti set v0='P' where id=6; -update noar tt set b2='Z9C25Z' where id=6; -update noar ti set b2='Z9C25Z' where id=6; -update noar tt set v0='CD275S' where id=7; -update noar ti set v0='CD275S' where id=7; -update noar tt set b0='QY1BSI0UIHP9XNDBM7RKR1PM' where id=7; -update noar ti set b0='QY1BSI0UIHP9XNDBM7RKR1PM' where id=7; -update noar tt set v0='J2S9I1CSEFIVF8K' where id=7; -update noar ti set v0='J2S9I1CSEFIVF8K' where id=7; -update noar tt set b1='6OGLSTEL3E7IQ10QIW' where id=7; -update noar ti set b1='6OGLSTEL3E7IQ10QIW' where id=7; -update noar tt set v0='HWMBEYSC91FWM14NAXYRSDQB' where id=7; -update noar ti set v0='HWMBEYSC91FWM14NAXYRSDQB' where id=7; -update noar tt set b2='12A8WOF6J8RSY7H111BFD229TE7SGYC' where id=7; -update noar ti set b2='12A8WOF6J8RSY7H111BFD229TE7SGYC' where id=7; -update noar tt set v0='9Z4IZW04452H1' where id=8; -update noar ti set v0='9Z4IZW04452H1' where id=8; -update noar tt set b0='RTXOE8C6PJ4IV5NIF2NMF5B2Y' where id=8; -update noar ti set b0='RTXOE8C6PJ4IV5NIF2NMF5B2Y' where id=8; -update noar tt set v0='T86CCN' where id=8; -update noar ti set v0='T86CCN' where id=8; -update noar tt set b1='7OJFX9JQ8ZG1B6VW3G8LFBOEGKNLB' where id=8; -update noar ti set b1='7OJFX9JQ8ZG1B6VW3G8LFBOEGKNLB' where id=8; -update noar tt set v0='5' where id=8; -update noar ti set v0='5' where id=8; -update noar tt set b2='7O5RD2JDBFS8BDKN8TJ14' where id=8; -update noar ti set b2='7O5RD2JDBFS8BDKN8TJ14' where id=8; -update noar tt set v0='B52CAJI96TQK5B975' where id=9; -update noar ti set v0='B52CAJI96TQK5B975' where id=9; -update noar tt set b0='KMPC5DOVZIS0Y' where id=9; -update noar ti set b0='KMPC5DOVZIS0Y' where id=9; -update noar tt set v0='4W4GKTWP3E' where id=9; -update noar ti set v0='4W4GKTWP3E' where id=9; -update noar tt set b1='UBVHJA' where id=9; -update noar ti set b1='UBVHJA' where id=9; -update noar tt set v0='5HCU1KJB2F9A147GBIZSUML45MKS3LVV' where id=9; -update noar ti set v0='5HCU1KJB2F9A147GBIZSUML45MKS3LVV' where id=9; -update noar tt set b2='YD47DNMEJREBVGOXPIYG' where id=9; -update noar ti set b2='YD47DNMEJREBVGOXPIYG' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -v0 varchar(256) not null, -b0 mediumblob not null, -b1 tinyblob not null, -b2 longblob not null -) engine=tokudb; -insert into tt values (1,'','','',''); -insert into tt values (2,'','','',''); -insert into tt values (3,'','','',''); -insert into tt values (4,'','','',''); -insert into tt values (5,'','','',''); -insert into tt values (6,'','','',''); -insert into tt values (7,'','','',''); -insert into tt values (8,'','','',''); -insert into tt values (9,'','','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='3YGSCOZWC4194UN5VLNJNO0PTZ' where id=1; -update noar ti set v0='3YGSCOZWC4194UN5VLNJNO0PTZ' where id=1; -update noar tt set b0='RLLVE0MLL4' where id=1; -update noar ti set b0='RLLVE0MLL4' where id=1; -update noar tt set v0='WM6WT7538RRAD9JENUCZS69V6B' where id=1; -update noar ti set v0='WM6WT7538RRAD9JENUCZS69V6B' where id=1; -update noar tt set b1='QLSPSUAHG0ITB1M0JF00FKF' where id=1; -update noar ti set b1='QLSPSUAHG0ITB1M0JF00FKF' where id=1; -update noar tt set v0='4J8RD4ZUXU28PBIFTYTJ876013' where id=1; -update noar ti set v0='4J8RD4ZUXU28PBIFTYTJ876013' where id=1; -update noar tt set b2='Y7DMSACCPS' where id=1; -update noar ti set b2='Y7DMSACCPS' where id=1; -update noar tt set v0='EMTHMD92N6FXIDBT82Q78Y' where id=2; -update noar ti set v0='EMTHMD92N6FXIDBT82Q78Y' where id=2; -update noar tt set b0='4BF' where id=2; -update noar ti set b0='4BF' where id=2; -update noar tt set v0='IETIONXKU877UO4YJX64ORT9SMM6B01' where id=2; -update noar ti set v0='IETIONXKU877UO4YJX64ORT9SMM6B01' where id=2; -update noar tt set b1='Q9RCTU5OS00KYALGTX1MGY3JK' where id=2; -update noar ti set b1='Q9RCTU5OS00KYALGTX1MGY3JK' where id=2; -update noar tt set v0='46X' where id=2; -update noar ti set v0='46X' where id=2; -update noar tt set b2='6P76O29FUK' where id=2; -update noar ti set b2='6P76O29FUK' where id=2; -update noar tt set v0='KNK5LP785Z9EJFL2PYE9PGXWN' where id=3; -update noar ti set v0='KNK5LP785Z9EJFL2PYE9PGXWN' where id=3; -update noar tt set b0='CX9DX2G5ZW1AF83XWU3POKQXJLC7' where id=3; -update noar ti set b0='CX9DX2G5ZW1AF83XWU3POKQXJLC7' where id=3; -update noar tt set v0='PKO68AA992J9LZW' where id=3; -update noar ti set v0='PKO68AA992J9LZW' where id=3; -update noar tt set b1='R1OXBZRHZHUUJ8HBVSPJ' where id=3; -update noar ti set b1='R1OXBZRHZHUUJ8HBVSPJ' where id=3; -update noar tt set v0='ZFLCFTSQ2KMFXBYDRXAVBFM' where id=3; -update noar ti set v0='ZFLCFTSQ2KMFXBYDRXAVBFM' where id=3; -update noar tt set b2='B4' where id=3; -update noar ti set b2='B4' where id=3; -update noar tt set v0='C5DL21QOX' where id=4; -update noar ti set v0='C5DL21QOX' where id=4; -update noar tt set b0='L7V2LYRMO54PWBYRUMEYLW66K09PEQ' where id=4; -update noar ti set b0='L7V2LYRMO54PWBYRUMEYLW66K09PEQ' where id=4; -update noar tt set v0='AHNHK5E' where id=4; -update noar ti set v0='AHNHK5E' where id=4; -update noar tt set b1='QLL2GEQ98LHF11FMET6Q4R4YCGA' where id=4; -update noar ti set b1='QLL2GEQ98LHF11FMET6Q4R4YCGA' where id=4; -update noar tt set v0='F45F9' where id=4; -update noar ti set v0='F45F9' where id=4; -update noar tt set b2='KY2K70FKYGBEQP1H7K7LHKNV42DU74N' where id=4; -update noar ti set b2='KY2K70FKYGBEQP1H7K7LHKNV42DU74N' where id=4; -update noar tt set v0='K1MGDJ09245C3' where id=5; -update noar ti set v0='K1MGDJ09245C3' where id=5; -update noar tt set b0='RT27SVYKHM7K8QIL8EWMDHSZV' where id=5; -update noar ti set b0='RT27SVYKHM7K8QIL8EWMDHSZV' where id=5; -update noar tt set v0='A0FTUZG2RS8V66' where id=5; -update noar ti set v0='A0FTUZG2RS8V66' where id=5; -update noar tt set b1='AOUKDUT2L87LJNC40XY' where id=5; -update noar ti set b1='AOUKDUT2L87LJNC40XY' where id=5; -update noar tt set v0='4LLGLE23FSVI6PM0YW9CL7AIO2' where id=5; -update noar ti set v0='4LLGLE23FSVI6PM0YW9CL7AIO2' where id=5; -update noar tt set b2='2ID80FL1J' where id=5; -update noar ti set b2='2ID80FL1J' where id=5; -update noar tt set v0='5XCXWCPUJ5RFQ5CQ36BQGIPWLWS' where id=6; -update noar ti set v0='5XCXWCPUJ5RFQ5CQ36BQGIPWLWS' where id=6; -update noar tt set b0='IKVATZQ3DT6DGO7P3Y' where id=6; -update noar ti set b0='IKVATZQ3DT6DGO7P3Y' where id=6; -update noar tt set v0='CKAU5ELPA7E0' where id=6; -update noar ti set v0='CKAU5ELPA7E0' where id=6; -update noar tt set b1='MYJJ6SDQ0ARW03RK3J8ZXGVGF3TEKV' where id=6; -update noar ti set b1='MYJJ6SDQ0ARW03RK3J8ZXGVGF3TEKV' where id=6; -update noar tt set v0='UW2GAW98TW4PVN09SKS7I0LYX6Z' where id=6; -update noar ti set v0='UW2GAW98TW4PVN09SKS7I0LYX6Z' where id=6; -update noar tt set b2='4Z0LFG5M12C74TFQODACECPSXTA' where id=6; -update noar ti set b2='4Z0LFG5M12C74TFQODACECPSXTA' where id=6; -update noar tt set v0='A54L0IZUO00M3S6IKOVR' where id=7; -update noar ti set v0='A54L0IZUO00M3S6IKOVR' where id=7; -update noar tt set b0='77LE8LAX8E80VBZ' where id=7; -update noar ti set b0='77LE8LAX8E80VBZ' where id=7; -update noar tt set v0='ESD10HZONAA' where id=7; -update noar ti set v0='ESD10HZONAA' where id=7; -update noar tt set b1='457RXVL6' where id=7; -update noar ti set b1='457RXVL6' where id=7; -update noar tt set v0='K3GB1CMRX' where id=7; -update noar ti set v0='K3GB1CMRX' where id=7; -update noar tt set b2='G0PO81R' where id=7; -update noar ti set b2='G0PO81R' where id=7; -update noar tt set v0='K21V4YJBT3ZFXEZJ0SXS' where id=8; -update noar ti set v0='K21V4YJBT3ZFXEZJ0SXS' where id=8; -update noar tt set b0='G8GR4K' where id=8; -update noar ti set b0='G8GR4K' where id=8; -update noar tt set v0='EBCN' where id=8; -update noar ti set v0='EBCN' where id=8; -update noar tt set b1='XDDJST0I9CWK904C3IWIMMJ5FPVLK' where id=8; -update noar ti set b1='XDDJST0I9CWK904C3IWIMMJ5FPVLK' where id=8; -update noar tt set v0='1FT' where id=8; -update noar ti set v0='1FT' where id=8; -update noar tt set b2='MR' where id=8; -update noar ti set b2='MR' where id=8; -update noar tt set v0='P' where id=9; -update noar ti set v0='P' where id=9; -update noar tt set b0='XAQHI1JW82OAH6PDMD749H8' where id=9; -update noar ti set b0='XAQHI1JW82OAH6PDMD749H8' where id=9; -update noar tt set v0='UBJBHR0XXVYZ1JIP8SL96255U7' where id=9; -update noar ti set v0='UBJBHR0XXVYZ1JIP8SL96255U7' where id=9; -update noar tt set b1='6VVB2HJPGGPQDLXUF0GGZS8P' where id=9; -update noar ti set b1='6VVB2HJPGGPQDLXUF0GGZS8P' where id=9; -update noar tt set v0='OTB90UD93G6MFYD4J17ZPHXGVG1' where id=9; -update noar ti set v0='OTB90UD93G6MFYD4J17ZPHXGVG1' where id=9; -update noar tt set b2='ABLHPE8D6321TJA2K7X78G3YV' where id=9; -update noar ti set b2='ABLHPE8D6321TJA2K7X78G3YV' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -v0 varchar(32) null, -b0 mediumblob null, -b1 blob null, -b2 tinyblob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='Q' where id=1; -update noar ti set v0='Q' where id=1; -update noar tt set b0='QF6QYXNCNRA' where id=1; -update noar ti set b0='QF6QYXNCNRA' where id=1; -update noar tt set v0='GPHGIOU' where id=1; -update noar ti set v0='GPHGIOU' where id=1; -update noar tt set b1='EWT1PVYCPN0O73MOXJFW3NTD' where id=1; -update noar ti set b1='EWT1PVYCPN0O73MOXJFW3NTD' where id=1; -update noar tt set v0='BYFU44IZ7Y' where id=1; -update noar ti set v0='BYFU44IZ7Y' where id=1; -update noar tt set b2='AVTD6LLI' where id=1; -update noar ti set b2='AVTD6LLI' where id=1; -update noar tt set v0='ECUPN3WQRSN1MRRYIESR51VVKUMT' where id=2; -update noar ti set v0='ECUPN3WQRSN1MRRYIESR51VVKUMT' where id=2; -update noar tt set b0='8NRUDSOK3N' where id=2; -update noar ti set b0='8NRUDSOK3N' where id=2; -update noar tt set v0='7N5ROF' where id=2; -update noar ti set v0='7N5ROF' where id=2; -update noar tt set b1='IJSJZBU6SBCI' where id=2; -update noar ti set b1='IJSJZBU6SBCI' where id=2; -update noar tt set v0='XGSRV' where id=2; -update noar ti set v0='XGSRV' where id=2; -update noar tt set b2='TX7WNEUYS0PP8U6HZKWQZR400YUHRJYK' where id=2; -update noar ti set b2='TX7WNEUYS0PP8U6HZKWQZR400YUHRJYK' where id=2; -update noar tt set v0='SW' where id=3; -update noar ti set v0='SW' where id=3; -update noar tt set b0='D0ERQQE7UWE3EQ' where id=3; -update noar ti set b0='D0ERQQE7UWE3EQ' where id=3; -update noar tt set v0='BTK1SCTP609T0N6LZX7PMB6CZ6XACJL' where id=3; -update noar ti set v0='BTK1SCTP609T0N6LZX7PMB6CZ6XACJL' where id=3; -update noar tt set b1='U55Z4C2V' where id=3; -update noar ti set b1='U55Z4C2V' where id=3; -update noar tt set v0='7OLHVM8M8LQGCX34X287S' where id=3; -update noar ti set v0='7OLHVM8M8LQGCX34X287S' where id=3; -update noar tt set b2='2KHEWFRZR343CN54GO89OV8VIDHDPW' where id=3; -update noar ti set b2='2KHEWFRZR343CN54GO89OV8VIDHDPW' where id=3; -update noar tt set v0='MCTD80HA6YBEZBP5KW0FU4' where id=4; -update noar ti set v0='MCTD80HA6YBEZBP5KW0FU4' where id=4; -update noar tt set b0='8PXX4HM' where id=4; -update noar ti set b0='8PXX4HM' where id=4; -update noar tt set v0='7EDT6RR3J8' where id=4; -update noar ti set v0='7EDT6RR3J8' where id=4; -update noar tt set b1='ABYHAUSDNK' where id=4; -update noar ti set b1='ABYHAUSDNK' where id=4; -update noar tt set v0='YFV8I8' where id=4; -update noar ti set v0='YFV8I8' where id=4; -update noar tt set b2='N6NDGXA3URTL355' where id=4; -update noar ti set b2='N6NDGXA3URTL355' where id=4; -update noar tt set v0='ZF' where id=5; -update noar ti set v0='ZF' where id=5; -update noar tt set b0='3WS6WJCL24' where id=5; -update noar ti set b0='3WS6WJCL24' where id=5; -update noar tt set v0='92T7NPCBODHJT750R9C7KBZZQY79' where id=5; -update noar ti set v0='92T7NPCBODHJT750R9C7KBZZQY79' where id=5; -update noar tt set b1='VW2ALM9G6N1M9SHJV6AYJ1SEFVHL3' where id=5; -update noar ti set b1='VW2ALM9G6N1M9SHJV6AYJ1SEFVHL3' where id=5; -update noar tt set v0='V97FM86HPSNVTC6U7FFA3LWPHTC61LS4' where id=5; -update noar ti set v0='V97FM86HPSNVTC6U7FFA3LWPHTC61LS4' where id=5; -update noar tt set b2='JDDZMKV89XRKFJID0L4F41' where id=5; -update noar ti set b2='JDDZMKV89XRKFJID0L4F41' where id=5; -update noar tt set v0='OEE8T' where id=6; -update noar ti set v0='OEE8T' where id=6; -update noar tt set b0='EX7' where id=6; -update noar ti set b0='EX7' where id=6; -update noar tt set v0='7GMGBMBI' where id=6; -update noar ti set v0='7GMGBMBI' where id=6; -update noar tt set b1='8UAD34JETQCE' where id=6; -update noar ti set b1='8UAD34JETQCE' where id=6; -update noar tt set v0='CGZ7AQYM5GACY5O9OM6H5JS' where id=6; -update noar ti set v0='CGZ7AQYM5GACY5O9OM6H5JS' where id=6; -update noar tt set b2='HCJU096DGIYZYB3Z9KEJ0O64YC' where id=6; -update noar ti set b2='HCJU096DGIYZYB3Z9KEJ0O64YC' where id=6; -update noar tt set v0='RP' where id=7; -update noar ti set v0='RP' where id=7; -update noar tt set b0='GKGHPBWZE' where id=7; -update noar ti set b0='GKGHPBWZE' where id=7; -update noar tt set v0='9FMWXHDJ00YF5923W' where id=7; -update noar ti set v0='9FMWXHDJ00YF5923W' where id=7; -update noar tt set b1='QD4' where id=7; -update noar ti set b1='QD4' where id=7; -update noar tt set v0='DIPTXOWFRRNBELFY' where id=7; -update noar ti set v0='DIPTXOWFRRNBELFY' where id=7; -update noar tt set b2='BPRWG3CLLIU' where id=7; -update noar ti set b2='BPRWG3CLLIU' where id=7; -update noar tt set v0='UYQ' where id=8; -update noar ti set v0='UYQ' where id=8; -update noar tt set b0='M4GQ5CDULHQFMAQ0' where id=8; -update noar ti set b0='M4GQ5CDULHQFMAQ0' where id=8; -update noar tt set v0='NMOZTXTI4TKY' where id=8; -update noar ti set v0='NMOZTXTI4TKY' where id=8; -update noar tt set b1='7' where id=8; -update noar ti set b1='7' where id=8; -update noar tt set v0='MBB' where id=8; -update noar ti set v0='MBB' where id=8; -update noar tt set b2='ZNZP4Y23FNFN5V8M704IYBA9Q0DHTMZK' where id=8; -update noar ti set b2='ZNZP4Y23FNFN5V8M704IYBA9Q0DHTMZK' where id=8; -update noar tt set v0='0DFXPNYAHJ0M5G2GRZVEMBEQ3' where id=9; -update noar ti set v0='0DFXPNYAHJ0M5G2GRZVEMBEQ3' where id=9; -update noar tt set b0='T1E9V1D4HTYFOSWCTDYSEA541EU4D' where id=9; -update noar ti set b0='T1E9V1D4HTYFOSWCTDYSEA541EU4D' where id=9; -update noar tt set v0='EMUT16' where id=9; -update noar ti set v0='EMUT16' where id=9; -update noar tt set b1='GQNKZ8M' where id=9; -update noar ti set b1='GQNKZ8M' where id=9; -update noar tt set v0='O40BP' where id=9; -update noar ti set v0='O40BP' where id=9; -update noar tt set b2='SINGGHTR9MS5J' where id=9; -update noar ti set b2='SINGGHTR9MS5J' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -v0 varchar(256) null, -b0 mediumblob null, -b1 blob null, -b2 tinyblob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='C6I524804P4S2BCUPBGK24QJZJVEID' where id=1; -update noar ti set v0='C6I524804P4S2BCUPBGK24QJZJVEID' where id=1; -update noar tt set b0='GODPXG0KVZUBUML74GOAQQJAT' where id=1; -update noar ti set b0='GODPXG0KVZUBUML74GOAQQJAT' where id=1; -update noar tt set v0='IL36WANFZC' where id=1; -update noar ti set v0='IL36WANFZC' where id=1; -update noar tt set b1='718SKGB08T8F2JNH' where id=1; -update noar ti set b1='718SKGB08T8F2JNH' where id=1; -update noar tt set v0='6QQS20G7XG' where id=1; -update noar ti set v0='6QQS20G7XG' where id=1; -update noar tt set b2='936DSFV' where id=1; -update noar ti set b2='936DSFV' where id=1; -update noar tt set v0='HCP6V4IGG1S9N1153' where id=2; -update noar ti set v0='HCP6V4IGG1S9N1153' where id=2; -update noar tt set b0='76XSNU7QUCWWXH5YJY5ID328' where id=2; -update noar ti set b0='76XSNU7QUCWWXH5YJY5ID328' where id=2; -update noar tt set v0='3BZZT5KBVVD0T6GFT5ZDXP1MB' where id=2; -update noar ti set v0='3BZZT5KBVVD0T6GFT5ZDXP1MB' where id=2; -update noar tt set b1='GO6S03BI7B' where id=2; -update noar ti set b1='GO6S03BI7B' where id=2; -update noar tt set v0='3Y1L5KZFWL8' where id=2; -update noar ti set v0='3Y1L5KZFWL8' where id=2; -update noar tt set b2='0SAVNFXS' where id=2; -update noar ti set b2='0SAVNFXS' where id=2; -update noar tt set v0='ORJ7IA0SITJDG' where id=3; -update noar ti set v0='ORJ7IA0SITJDG' where id=3; -update noar tt set b0='I8VTVVG0SJ9NJ' where id=3; -update noar ti set b0='I8VTVVG0SJ9NJ' where id=3; -update noar tt set v0='W1DXHCGPUQ4WAP15WE2NTT' where id=3; -update noar ti set v0='W1DXHCGPUQ4WAP15WE2NTT' where id=3; -update noar tt set b1='KIQ25ORK9XF1HXLR8NYL38V0PXM1' where id=3; -update noar ti set b1='KIQ25ORK9XF1HXLR8NYL38V0PXM1' where id=3; -update noar tt set v0='8V2692RPN' where id=3; -update noar ti set v0='8V2692RPN' where id=3; -update noar tt set b2='MRUK27B216ND2VY7LU' where id=3; -update noar ti set b2='MRUK27B216ND2VY7LU' where id=3; -update noar tt set v0='9JDGBG1FQM2ZC' where id=4; -update noar ti set v0='9JDGBG1FQM2ZC' where id=4; -update noar tt set b0='JF91RAHW8EYTVMFFVVOZN5C8OXY' where id=4; -update noar ti set b0='JF91RAHW8EYTVMFFVVOZN5C8OXY' where id=4; -update noar tt set v0='7VT1Q0S7K9IXB67DI4V38G' where id=4; -update noar ti set v0='7VT1Q0S7K9IXB67DI4V38G' where id=4; -update noar tt set b1='VULZMFMGV790' where id=4; -update noar ti set b1='VULZMFMGV790' where id=4; -update noar tt set v0='B0JJ6UUV8FZZO9' where id=4; -update noar ti set v0='B0JJ6UUV8FZZO9' where id=4; -update noar tt set b2='ZSRXYK66R0TPVJV9A' where id=4; -update noar ti set b2='ZSRXYK66R0TPVJV9A' where id=4; -update noar tt set v0='0MD30BSTL64ZZ3IZ7WPRUUU8H8LKLVS' where id=5; -update noar ti set v0='0MD30BSTL64ZZ3IZ7WPRUUU8H8LKLVS' where id=5; -update noar tt set b0='C32JNFWQZ' where id=5; -update noar ti set b0='C32JNFWQZ' where id=5; -update noar tt set v0='5W8S' where id=5; -update noar ti set v0='5W8S' where id=5; -update noar tt set b1='ZJTKDSFHNYGPRQNO2LJ3' where id=5; -update noar ti set b1='ZJTKDSFHNYGPRQNO2LJ3' where id=5; -update noar tt set v0='5D8LBSCUJB9PL9VC9X95WWONY12' where id=5; -update noar ti set v0='5D8LBSCUJB9PL9VC9X95WWONY12' where id=5; -update noar tt set b2='7P2G' where id=5; -update noar ti set b2='7P2G' where id=5; -update noar tt set v0='0CBM31M1W' where id=6; -update noar ti set v0='0CBM31M1W' where id=6; -update noar tt set b0='RT629VIM3YR5H0FPCGLYBO' where id=6; -update noar ti set b0='RT629VIM3YR5H0FPCGLYBO' where id=6; -update noar tt set v0='1VFUOEF2GR4D9H1UYT82M1' where id=6; -update noar ti set v0='1VFUOEF2GR4D9H1UYT82M1' where id=6; -update noar tt set b1='9J73GRC1' where id=6; -update noar ti set b1='9J73GRC1' where id=6; -update noar tt set v0='HQ0M0PFDVJYZC' where id=6; -update noar ti set v0='HQ0M0PFDVJYZC' where id=6; -update noar tt set b2='QPOOQJII' where id=6; -update noar ti set b2='QPOOQJII' where id=6; -update noar tt set v0='K' where id=7; -update noar ti set v0='K' where id=7; -update noar tt set b0='OP' where id=7; -update noar ti set b0='OP' where id=7; -update noar tt set v0='AVZ8V38TC3XNIMJ4P5DXYT5T' where id=7; -update noar ti set v0='AVZ8V38TC3XNIMJ4P5DXYT5T' where id=7; -update noar tt set b1='DSIY7JZH8Y7EA2QDDDKJP6N' where id=7; -update noar ti set b1='DSIY7JZH8Y7EA2QDDDKJP6N' where id=7; -update noar tt set v0='9' where id=7; -update noar ti set v0='9' where id=7; -update noar tt set b2='ND7XNU83TBT57CG1B5WPRY2WR' where id=7; -update noar ti set b2='ND7XNU83TBT57CG1B5WPRY2WR' where id=7; -update noar tt set v0='A0XEKZJWIEXVFJB' where id=8; -update noar ti set v0='A0XEKZJWIEXVFJB' where id=8; -update noar tt set b0='N6F8ZMJYQV528UXBA2AI7N' where id=8; -update noar ti set b0='N6F8ZMJYQV528UXBA2AI7N' where id=8; -update noar tt set v0='OTT' where id=8; -update noar ti set v0='OTT' where id=8; -update noar tt set b1='6T1193XK5VDPV1JGCJHPRLV' where id=8; -update noar ti set b1='6T1193XK5VDPV1JGCJHPRLV' where id=8; -update noar tt set v0='MFT7XV8NHPFDU2KPXTH6JO0791WC' where id=8; -update noar ti set v0='MFT7XV8NHPFDU2KPXTH6JO0791WC' where id=8; -update noar tt set b2='XU8A8IT1PW458V3FTWJV' where id=8; -update noar ti set b2='XU8A8IT1PW458V3FTWJV' where id=8; -update noar tt set v0='VMZ7RG692N4' where id=9; -update noar ti set v0='VMZ7RG692N4' where id=9; -update noar tt set b0='Z2HZYGM4J2BBTP0G' where id=9; -update noar ti set b0='Z2HZYGM4J2BBTP0G' where id=9; -update noar tt set v0='09TJH6J7MWI4GTYBLL629K1M' where id=9; -update noar ti set v0='09TJH6J7MWI4GTYBLL629K1M' where id=9; -update noar tt set b1='2QZ6VCT01CICI4' where id=9; -update noar ti set b1='2QZ6VCT01CICI4' where id=9; -update noar tt set v0='CTRZIFP' where id=9; -update noar ti set v0='CTRZIFP' where id=9; -update noar tt set b2='6S4N60D4I92PEIVXTGZ2QB' where id=9; -update noar ti set b2='6S4N60D4I92PEIVXTGZ2QB' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -v0 varchar(32) not null, -b0 mediumblob not null, -b1 blob not null, -b2 tinyblob not null -) engine=tokudb; -insert into tt values (1,'','','',''); -insert into tt values (2,'','','',''); -insert into tt values (3,'','','',''); -insert into tt values (4,'','','',''); -insert into tt values (5,'','','',''); -insert into tt values (6,'','','',''); -insert into tt values (7,'','','',''); -insert into tt values (8,'','','',''); -insert into tt values (9,'','','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='NE5EMU54MBBMGRYZ7STDLKSTWC' where id=1; -update noar ti set v0='NE5EMU54MBBMGRYZ7STDLKSTWC' where id=1; -update noar tt set b0='P8FC1ARO2HP6Q26Y' where id=1; -update noar ti set b0='P8FC1ARO2HP6Q26Y' where id=1; -update noar tt set v0='FU9SWKGIK8ZCY7NY9SAPH' where id=1; -update noar ti set v0='FU9SWKGIK8ZCY7NY9SAPH' where id=1; -update noar tt set b1='LOU4OKP1BL' where id=1; -update noar ti set b1='LOU4OKP1BL' where id=1; -update noar tt set v0='8VFW77O' where id=1; -update noar ti set v0='8VFW77O' where id=1; -update noar tt set b2='SWHTVHNT0YWRXH8EW' where id=1; -update noar ti set b2='SWHTVHNT0YWRXH8EW' where id=1; -update noar tt set v0='IX4UMYR2' where id=2; -update noar ti set v0='IX4UMYR2' where id=2; -update noar tt set b0='TV' where id=2; -update noar ti set b0='TV' where id=2; -update noar tt set v0='SHP1MZLNLQ9Z6ET01Z4VXPHB7' where id=2; -update noar ti set v0='SHP1MZLNLQ9Z6ET01Z4VXPHB7' where id=2; -update noar tt set b1='MC' where id=2; -update noar ti set b1='MC' where id=2; -update noar tt set v0='AUO97HV5ZV3SNY9WX13RWY' where id=2; -update noar ti set v0='AUO97HV5ZV3SNY9WX13RWY' where id=2; -update noar tt set b2='D0VNKR9TZ39UZF8252QOH' where id=2; -update noar ti set b2='D0VNKR9TZ39UZF8252QOH' where id=2; -update noar tt set v0='QSECL3T36HGUFOCC4ZYOW' where id=3; -update noar ti set v0='QSECL3T36HGUFOCC4ZYOW' where id=3; -update noar tt set b0='H' where id=3; -update noar ti set b0='H' where id=3; -update noar tt set v0='PB403RABLD37I0W2QP' where id=3; -update noar ti set v0='PB403RABLD37I0W2QP' where id=3; -update noar tt set b1='UX' where id=3; -update noar ti set b1='UX' where id=3; -update noar tt set v0='A5' where id=3; -update noar ti set v0='A5' where id=3; -update noar tt set b2='HRM9QXKVPCGYVT303FK66' where id=3; -update noar ti set b2='HRM9QXKVPCGYVT303FK66' where id=3; -update noar tt set v0='W' where id=4; -update noar ti set v0='W' where id=4; -update noar tt set b0='BSKVQXP54HLRTCR9' where id=4; -update noar ti set b0='BSKVQXP54HLRTCR9' where id=4; -update noar tt set v0='DX7JYDJCWG5SZ931U9RCM' where id=4; -update noar ti set v0='DX7JYDJCWG5SZ931U9RCM' where id=4; -update noar tt set b1='HI4A9255HXASTZSC2YGAZ5JY4' where id=4; -update noar ti set b1='HI4A9255HXASTZSC2YGAZ5JY4' where id=4; -update noar tt set v0='9DTSKYN1AMJZOQKVHUWFAR0JT' where id=4; -update noar ti set v0='9DTSKYN1AMJZOQKVHUWFAR0JT' where id=4; -update noar tt set b2='R7BNJ3EMZY9ZGMVH' where id=4; -update noar ti set b2='R7BNJ3EMZY9ZGMVH' where id=4; -update noar tt set v0='SFIHR' where id=5; -update noar ti set v0='SFIHR' where id=5; -update noar tt set b0='14ED1DCK4CRD4SV5NJBZQXM70MR5H' where id=5; -update noar ti set b0='14ED1DCK4CRD4SV5NJBZQXM70MR5H' where id=5; -update noar tt set v0='SSRIA' where id=5; -update noar ti set v0='SSRIA' where id=5; -update noar tt set b1='BSUB1WOW' where id=5; -update noar ti set b1='BSUB1WOW' where id=5; -update noar tt set v0='QLUNYKC' where id=5; -update noar ti set v0='QLUNYKC' where id=5; -update noar tt set b2='PDSOWNO6P4CDGKB3TGK1RHW' where id=5; -update noar ti set b2='PDSOWNO6P4CDGKB3TGK1RHW' where id=5; -update noar tt set v0='ZWA0TM82UMEPDINGVBBQ6HPP' where id=6; -update noar ti set v0='ZWA0TM82UMEPDINGVBBQ6HPP' where id=6; -update noar tt set b0='CEN56OIJO40HJBAJPD2DAK67MOGAUN' where id=6; -update noar ti set b0='CEN56OIJO40HJBAJPD2DAK67MOGAUN' where id=6; -update noar tt set v0='1' where id=6; -update noar ti set v0='1' where id=6; -update noar tt set b1='QLFY2XHV9HGHPJ' where id=6; -update noar ti set b1='QLFY2XHV9HGHPJ' where id=6; -update noar tt set v0='KX5NV' where id=6; -update noar ti set v0='KX5NV' where id=6; -update noar tt set b2='U1IAW9W' where id=6; -update noar ti set b2='U1IAW9W' where id=6; -update noar tt set v0='10JDK' where id=7; -update noar ti set v0='10JDK' where id=7; -update noar tt set b0='C10W76E7R' where id=7; -update noar ti set b0='C10W76E7R' where id=7; -update noar tt set v0='E' where id=7; -update noar ti set v0='E' where id=7; -update noar tt set b1='PYW304GJF0KFL4J8WS' where id=7; -update noar ti set b1='PYW304GJF0KFL4J8WS' where id=7; -update noar tt set v0='E29EOK6RLDPGNIWTUWC8P' where id=7; -update noar ti set v0='E29EOK6RLDPGNIWTUWC8P' where id=7; -update noar tt set b2='ZJ28NDE9YO8T5MZNUE43AY5CBQIYW' where id=7; -update noar ti set b2='ZJ28NDE9YO8T5MZNUE43AY5CBQIYW' where id=7; -update noar tt set v0='KI2D7K0W6C3NW6NI6RACYL84Q' where id=8; -update noar ti set v0='KI2D7K0W6C3NW6NI6RACYL84Q' where id=8; -update noar tt set b0='2FI' where id=8; -update noar ti set b0='2FI' where id=8; -update noar tt set v0='VG64DCDIN21X77EH4N7ELVD' where id=8; -update noar ti set v0='VG64DCDIN21X77EH4N7ELVD' where id=8; -update noar tt set b1='71HR9E8HHQUA0O1VVLR1' where id=8; -update noar ti set b1='71HR9E8HHQUA0O1VVLR1' where id=8; -update noar tt set v0='F2YS0AMVIO0P54' where id=8; -update noar ti set v0='F2YS0AMVIO0P54' where id=8; -update noar tt set b2='XTJK17K9DS7O2WI66AT1SEK' where id=8; -update noar ti set b2='XTJK17K9DS7O2WI66AT1SEK' where id=8; -update noar tt set v0='L0QON805KNY573W0LKDXH1DPUM86G4E' where id=9; -update noar ti set v0='L0QON805KNY573W0LKDXH1DPUM86G4E' where id=9; -update noar tt set b0='3S1WCM' where id=9; -update noar ti set b0='3S1WCM' where id=9; -update noar tt set v0='2MR5M8CVXKXG97TD2FRWCCMM19KL' where id=9; -update noar ti set v0='2MR5M8CVXKXG97TD2FRWCCMM19KL' where id=9; -update noar tt set b1='L' where id=9; -update noar ti set b1='L' where id=9; -update noar tt set v0='950Z8NSDX3ETQVF23G' where id=9; -update noar ti set v0='950Z8NSDX3ETQVF23G' where id=9; -update noar tt set b2='2FLI4IJKLQ86T43F8VWYA9CMB0TX' where id=9; -update noar ti set b2='2FLI4IJKLQ86T43F8VWYA9CMB0TX' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -v0 varchar(256) not null, -b0 mediumblob not null, -b1 blob not null, -b2 tinyblob not null -) engine=tokudb; -insert into tt values (1,'','','',''); -insert into tt values (2,'','','',''); -insert into tt values (3,'','','',''); -insert into tt values (4,'','','',''); -insert into tt values (5,'','','',''); -insert into tt values (6,'','','',''); -insert into tt values (7,'','','',''); -insert into tt values (8,'','','',''); -insert into tt values (9,'','','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='V4THDEBWR4QM3J' where id=1; -update noar ti set v0='V4THDEBWR4QM3J' where id=1; -update noar tt set b0='EKCTXW5S4ZCLAWTEF' where id=1; -update noar ti set b0='EKCTXW5S4ZCLAWTEF' where id=1; -update noar tt set v0='CZIH6J' where id=1; -update noar ti set v0='CZIH6J' where id=1; -update noar tt set b1='Y8EIS3O7H' where id=1; -update noar ti set b1='Y8EIS3O7H' where id=1; -update noar tt set v0='Q4NV0F7WIXLZXTIW0R6ZV223U7' where id=1; -update noar ti set v0='Q4NV0F7WIXLZXTIW0R6ZV223U7' where id=1; -update noar tt set b2='HUPX6W6WP1R2BWTYA0RPO1HCQ52FG' where id=1; -update noar ti set b2='HUPX6W6WP1R2BWTYA0RPO1HCQ52FG' where id=1; -update noar tt set v0='DWP2W7KAIJJ79XC2IQ1QX1B' where id=2; -update noar ti set v0='DWP2W7KAIJJ79XC2IQ1QX1B' where id=2; -update noar tt set b0='76SM4BQURN4SH' where id=2; -update noar ti set b0='76SM4BQURN4SH' where id=2; -update noar tt set v0='ND2NWNT' where id=2; -update noar ti set v0='ND2NWNT' where id=2; -update noar tt set b1='O7XW033WZ2TF0M' where id=2; -update noar ti set b1='O7XW033WZ2TF0M' where id=2; -update noar tt set v0='01KXQRFL75M24G4G' where id=2; -update noar ti set v0='01KXQRFL75M24G4G' where id=2; -update noar tt set b2='KK' where id=2; -update noar ti set b2='KK' where id=2; -update noar tt set v0='L4PWHJNVAMOPEN' where id=3; -update noar ti set v0='L4PWHJNVAMOPEN' where id=3; -update noar tt set b0='BVSLVLV0ZYWBB7WZNCD6H' where id=3; -update noar ti set b0='BVSLVLV0ZYWBB7WZNCD6H' where id=3; -update noar tt set v0='DFK0AJYRV6U29FOVPE034PO' where id=3; -update noar ti set v0='DFK0AJYRV6U29FOVPE034PO' where id=3; -update noar tt set b1='MYX' where id=3; -update noar ti set b1='MYX' where id=3; -update noar tt set v0='17M' where id=3; -update noar ti set v0='17M' where id=3; -update noar tt set b2='VBPTK1MKYPKEZTECP3PVMC87QYZKG1G' where id=3; -update noar ti set b2='VBPTK1MKYPKEZTECP3PVMC87QYZKG1G' where id=3; -update noar tt set v0='QTUAPDYYBDK7GAD6XT6OOHQ4BAUF5TV' where id=4; -update noar ti set v0='QTUAPDYYBDK7GAD6XT6OOHQ4BAUF5TV' where id=4; -update noar tt set b0='BWOWBBQWFP3W3HWBSTMSK1ZJ0W' where id=4; -update noar ti set b0='BWOWBBQWFP3W3HWBSTMSK1ZJ0W' where id=4; -update noar tt set v0='4JGD5VISZ3CEM36' where id=4; -update noar ti set v0='4JGD5VISZ3CEM36' where id=4; -update noar tt set b1='FYQ4XFFR761' where id=4; -update noar ti set b1='FYQ4XFFR761' where id=4; -update noar tt set v0='BRFJ1Z2OKJUIDBMHVA6M5' where id=4; -update noar ti set v0='BRFJ1Z2OKJUIDBMHVA6M5' where id=4; -update noar tt set b2='HY0D7' where id=4; -update noar ti set b2='HY0D7' where id=4; -update noar tt set v0='PRCOAKN5NJRJWKNE8QUZ1VCG' where id=5; -update noar ti set v0='PRCOAKN5NJRJWKNE8QUZ1VCG' where id=5; -update noar tt set b0='EMH1N90RK40R3982HVEFWI9GT7MCHUW' where id=5; -update noar ti set b0='EMH1N90RK40R3982HVEFWI9GT7MCHUW' where id=5; -update noar tt set v0='K5DA1UZM4VQ5' where id=5; -update noar ti set v0='K5DA1UZM4VQ5' where id=5; -update noar tt set b1='G43TF4GQYISB66734WDE' where id=5; -update noar ti set b1='G43TF4GQYISB66734WDE' where id=5; -update noar tt set v0='KRZ3LXH4' where id=5; -update noar ti set v0='KRZ3LXH4' where id=5; -update noar tt set b2='RW1P0U660I7YW5C38DP0T' where id=5; -update noar ti set b2='RW1P0U660I7YW5C38DP0T' where id=5; -update noar tt set v0='FB1S' where id=6; -update noar ti set v0='FB1S' where id=6; -update noar tt set b0='QM07H2G4Y4Y35' where id=6; -update noar ti set b0='QM07H2G4Y4Y35' where id=6; -update noar tt set v0='EK0IKX5GQWLWSM95QK5AAYADG36FGHLV' where id=6; -update noar ti set v0='EK0IKX5GQWLWSM95QK5AAYADG36FGHLV' where id=6; -update noar tt set b1='A' where id=6; -update noar ti set b1='A' where id=6; -update noar tt set v0='RG50T3F6GBMAX1X' where id=6; -update noar ti set v0='RG50T3F6GBMAX1X' where id=6; -update noar tt set b2='AQPUTMVZ96IA' where id=6; -update noar ti set b2='AQPUTMVZ96IA' where id=6; -update noar tt set v0='8HEMBQXQVV2KN6P7S' where id=7; -update noar ti set v0='8HEMBQXQVV2KN6P7S' where id=7; -update noar tt set b0='AFQ6' where id=7; -update noar ti set b0='AFQ6' where id=7; -update noar tt set v0='BUF3AVQU1DYUW0QN34GH0' where id=7; -update noar ti set v0='BUF3AVQU1DYUW0QN34GH0' where id=7; -update noar tt set b1='JCM9MT1NQRFLLKO343Y' where id=7; -update noar ti set b1='JCM9MT1NQRFLLKO343Y' where id=7; -update noar tt set v0='RERYI' where id=7; -update noar ti set v0='RERYI' where id=7; -update noar tt set b2='DMGEQL89MFJJBVJ4L8EDSTUC16JERVRU' where id=7; -update noar ti set b2='DMGEQL89MFJJBVJ4L8EDSTUC16JERVRU' where id=7; -update noar tt set v0='575YE4HY7U3I' where id=8; -update noar ti set v0='575YE4HY7U3I' where id=8; -update noar tt set b0='PVGQ6S' where id=8; -update noar ti set b0='PVGQ6S' where id=8; -update noar tt set v0='DZPL4JIAVKYUADTP5CWKG0MEZT0P427' where id=8; -update noar ti set v0='DZPL4JIAVKYUADTP5CWKG0MEZT0P427' where id=8; -update noar tt set b1='NDCC5H97399M' where id=8; -update noar ti set b1='NDCC5H97399M' where id=8; -update noar tt set v0='FSSGHDCVOU2HHDB3QYX88' where id=8; -update noar ti set v0='FSSGHDCVOU2HHDB3QYX88' where id=8; -update noar tt set b2='P206ON3SV2SC30KTVFO4EKKOIH5WJGDS' where id=8; -update noar ti set b2='P206ON3SV2SC30KTVFO4EKKOIH5WJGDS' where id=8; -update noar tt set v0='AMLAJN' where id=9; -update noar ti set v0='AMLAJN' where id=9; -update noar tt set b0='RWB' where id=9; -update noar ti set b0='RWB' where id=9; -update noar tt set v0='LJ0NOMFSQCSCS' where id=9; -update noar ti set v0='LJ0NOMFSQCSCS' where id=9; -update noar tt set b1='L1D' where id=9; -update noar ti set b1='L1D' where id=9; -update noar tt set v0='HMBDH40LHFIZJNOQCWR310O5' where id=9; -update noar ti set v0='HMBDH40LHFIZJNOQCWR310O5' where id=9; -update noar tt set b2='904U6CHXLE3GJD5WXSHBIAZNV' where id=9; -update noar ti set b2='904U6CHXLE3GJD5WXSHBIAZNV' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -v0 varchar(32) null, -b0 mediumblob null, -b1 blob null, -b2 blob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='84KMRKXTIC1YC2' where id=1; -update noar ti set v0='84KMRKXTIC1YC2' where id=1; -update noar tt set b0='MVBCD4VR7ENQ0M1OAEVYBVQEA' where id=1; -update noar ti set b0='MVBCD4VR7ENQ0M1OAEVYBVQEA' where id=1; -update noar tt set v0='L5C7Z4OWN4P395FUQ3HI' where id=1; -update noar ti set v0='L5C7Z4OWN4P395FUQ3HI' where id=1; -update noar tt set b1='WM1VXZ87JBB1' where id=1; -update noar ti set b1='WM1VXZ87JBB1' where id=1; -update noar tt set v0='JGUZ13EBM1DXYCHS' where id=1; -update noar ti set v0='JGUZ13EBM1DXYCHS' where id=1; -update noar tt set b2='3E2IHJIWQUKGNGKAZZW0MNI' where id=1; -update noar ti set b2='3E2IHJIWQUKGNGKAZZW0MNI' where id=1; -update noar tt set v0='JDOW' where id=2; -update noar ti set v0='JDOW' where id=2; -update noar tt set b0='1U192K4DAUI' where id=2; -update noar ti set b0='1U192K4DAUI' where id=2; -update noar tt set v0='4OERL68FY12XRI6WE' where id=2; -update noar ti set v0='4OERL68FY12XRI6WE' where id=2; -update noar tt set b1='Q580ZY9PQQW599DT26N4W' where id=2; -update noar ti set b1='Q580ZY9PQQW599DT26N4W' where id=2; -update noar tt set v0='1EFOXRD49Y45LLTGE8LA7W9YHFKCIQA' where id=2; -update noar ti set v0='1EFOXRD49Y45LLTGE8LA7W9YHFKCIQA' where id=2; -update noar tt set b2='WYQLFEBWR7' where id=2; -update noar ti set b2='WYQLFEBWR7' where id=2; -update noar tt set v0='850HEBXJGVF4A9LB0G6' where id=3; -update noar ti set v0='850HEBXJGVF4A9LB0G6' where id=3; -update noar tt set b0='WMZWXQZ0UM8FUQ3SMKB7F' where id=3; -update noar ti set b0='WMZWXQZ0UM8FUQ3SMKB7F' where id=3; -update noar tt set v0='WIJE7CVXLA2B8HLISM8J26B0I9PW' where id=3; -update noar ti set v0='WIJE7CVXLA2B8HLISM8J26B0I9PW' where id=3; -update noar tt set b1='3PWXBYQP57B533B6WSPWR70DMW' where id=3; -update noar ti set b1='3PWXBYQP57B533B6WSPWR70DMW' where id=3; -update noar tt set v0='BUH0PSQPL' where id=3; -update noar ti set v0='BUH0PSQPL' where id=3; -update noar tt set b2='WETZ7Q181K3ENUORLJOVC' where id=3; -update noar ti set b2='WETZ7Q181K3ENUORLJOVC' where id=3; -update noar tt set v0='O4PKRC37CF431E514TPL4NPCMQZOMKCP' where id=4; -update noar ti set v0='O4PKRC37CF431E514TPL4NPCMQZOMKCP' where id=4; -update noar tt set b0='5VYIHZ43X6HNR' where id=4; -update noar ti set b0='5VYIHZ43X6HNR' where id=4; -update noar tt set v0='B2DO6072DREXUAD6AVEMFUUL' where id=4; -update noar ti set v0='B2DO6072DREXUAD6AVEMFUUL' where id=4; -update noar tt set b1='2L4DZOX6FQPV' where id=4; -update noar ti set b1='2L4DZOX6FQPV' where id=4; -update noar tt set v0='CP6JBLEG2X9U6D' where id=4; -update noar ti set v0='CP6JBLEG2X9U6D' where id=4; -update noar tt set b2='MPPAQF17XWJELS28DWW' where id=4; -update noar ti set b2='MPPAQF17XWJELS28DWW' where id=4; -update noar tt set v0='EEM1UR9ZSKXDG62IGZKW9' where id=5; -update noar ti set v0='EEM1UR9ZSKXDG62IGZKW9' where id=5; -update noar tt set b0='NW4UJJ1WLQA6K26H' where id=5; -update noar ti set b0='NW4UJJ1WLQA6K26H' where id=5; -update noar tt set v0='MB' where id=5; -update noar ti set v0='MB' where id=5; -update noar tt set b1='IY1FXA53BAQUCDFGIP9JT8FW2OWUH' where id=5; -update noar ti set b1='IY1FXA53BAQUCDFGIP9JT8FW2OWUH' where id=5; -update noar tt set v0='Z64' where id=5; -update noar ti set v0='Z64' where id=5; -update noar tt set b2='SBSTUFUWC5EMBCJPJSKAK54MM6O2QX' where id=5; -update noar ti set b2='SBSTUFUWC5EMBCJPJSKAK54MM6O2QX' where id=5; -update noar tt set v0='AVRRXO5CQYXHPDCW0' where id=6; -update noar ti set v0='AVRRXO5CQYXHPDCW0' where id=6; -update noar tt set b0='O' where id=6; -update noar ti set b0='O' where id=6; -update noar tt set v0='N8S1XG4BS504J68ZQKFO' where id=6; -update noar ti set v0='N8S1XG4BS504J68ZQKFO' where id=6; -update noar tt set b1='F2R4518ZYEQI3G26M743SB9H89AYA2IA' where id=6; -update noar ti set b1='F2R4518ZYEQI3G26M743SB9H89AYA2IA' where id=6; -update noar tt set v0='9SA' where id=6; -update noar ti set v0='9SA' where id=6; -update noar tt set b2='CLB5J' where id=6; -update noar ti set b2='CLB5J' where id=6; -update noar tt set v0='P0SQ1OJPERM40RMCEQ9QPIBSVU5ZU' where id=7; -update noar ti set v0='P0SQ1OJPERM40RMCEQ9QPIBSVU5ZU' where id=7; -update noar tt set b0='TY223YMGNY' where id=7; -update noar ti set b0='TY223YMGNY' where id=7; -update noar tt set v0='G0FE40C5F3QEA7K441RQAX7RT' where id=7; -update noar ti set v0='G0FE40C5F3QEA7K441RQAX7RT' where id=7; -update noar tt set b1='CWZ' where id=7; -update noar ti set b1='CWZ' where id=7; -update noar tt set v0='7V44477KO' where id=7; -update noar ti set v0='7V44477KO' where id=7; -update noar tt set b2='7DRUW7HAKJILRTAOJGS7QS2W1IH2JX' where id=7; -update noar ti set b2='7DRUW7HAKJILRTAOJGS7QS2W1IH2JX' where id=7; -update noar tt set v0='K3NXH4' where id=8; -update noar ti set v0='K3NXH4' where id=8; -update noar tt set b0='CT5UF3ZFBG1K' where id=8; -update noar ti set b0='CT5UF3ZFBG1K' where id=8; -update noar tt set v0='IUGLVO7UHOZKVDH6A' where id=8; -update noar ti set v0='IUGLVO7UHOZKVDH6A' where id=8; -update noar tt set b1='V8YEO7AG8UHO' where id=8; -update noar ti set b1='V8YEO7AG8UHO' where id=8; -update noar tt set v0='AI756EXP89J9WFCW57' where id=8; -update noar ti set v0='AI756EXP89J9WFCW57' where id=8; -update noar tt set b2='2M7S680ETYZKU5CX' where id=8; -update noar ti set b2='2M7S680ETYZKU5CX' where id=8; -update noar tt set v0='KPTGNP2655HOUDCV' where id=9; -update noar ti set v0='KPTGNP2655HOUDCV' where id=9; -update noar tt set b0='4T9VTU0F82G671S7' where id=9; -update noar ti set b0='4T9VTU0F82G671S7' where id=9; -update noar tt set v0='XJNFVR6VMAL7O58RQ3BEU2V3W' where id=9; -update noar ti set v0='XJNFVR6VMAL7O58RQ3BEU2V3W' where id=9; -update noar tt set b1='ZJ812PLQ7HY6GRLBNC8RPWJUV' where id=9; -update noar ti set b1='ZJ812PLQ7HY6GRLBNC8RPWJUV' where id=9; -update noar tt set v0='7YN4ONAP7' where id=9; -update noar ti set v0='7YN4ONAP7' where id=9; -update noar tt set b2='4R0E4GIQT9O' where id=9; -update noar ti set b2='4R0E4GIQT9O' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -v0 varchar(256) null, -b0 mediumblob null, -b1 blob null, -b2 blob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='PGPR9X9YJUTCFF' where id=1; -update noar ti set v0='PGPR9X9YJUTCFF' where id=1; -update noar tt set b0='GJ72EVTAPCAUDR8907G9LLJH' where id=1; -update noar ti set b0='GJ72EVTAPCAUDR8907G9LLJH' where id=1; -update noar tt set v0='BKCH' where id=1; -update noar ti set v0='BKCH' where id=1; -update noar tt set b1='EYNSYJQ3P985PSD' where id=1; -update noar ti set b1='EYNSYJQ3P985PSD' where id=1; -update noar tt set v0='NIWYIVKATSKTW99I2JEX0IKG' where id=1; -update noar ti set v0='NIWYIVKATSKTW99I2JEX0IKG' where id=1; -update noar tt set b2='9M761U25' where id=1; -update noar ti set b2='9M761U25' where id=1; -update noar tt set v0='F7PMRFSYNJL2P84C4EJ' where id=2; -update noar ti set v0='F7PMRFSYNJL2P84C4EJ' where id=2; -update noar tt set b0='SZQ6A06PT131BWJ8JV8L5BDLG8' where id=2; -update noar ti set b0='SZQ6A06PT131BWJ8JV8L5BDLG8' where id=2; -update noar tt set v0='3CX9TFLV9BZ2RXL8N' where id=2; -update noar ti set v0='3CX9TFLV9BZ2RXL8N' where id=2; -update noar tt set b1='KEUMZBWUBN65AJ' where id=2; -update noar ti set b1='KEUMZBWUBN65AJ' where id=2; -update noar tt set v0='M7L4' where id=2; -update noar ti set v0='M7L4' where id=2; -update noar tt set b2='5QDJ0L13ZGNHUR2YID9131BG' where id=2; -update noar ti set b2='5QDJ0L13ZGNHUR2YID9131BG' where id=2; -update noar tt set v0='5' where id=3; -update noar ti set v0='5' where id=3; -update noar tt set b0='5PO5HAL5' where id=3; -update noar ti set b0='5PO5HAL5' where id=3; -update noar tt set v0='0' where id=3; -update noar ti set v0='0' where id=3; -update noar tt set b1='YX4NQFQD3V423DD1HE8X62' where id=3; -update noar ti set b1='YX4NQFQD3V423DD1HE8X62' where id=3; -update noar tt set v0='2YRGKJNVNI' where id=3; -update noar ti set v0='2YRGKJNVNI' where id=3; -update noar tt set b2='SB8I77XDMKLUE52PMR5X' where id=3; -update noar ti set b2='SB8I77XDMKLUE52PMR5X' where id=3; -update noar tt set v0='HQDIN9CRJZ' where id=4; -update noar ti set v0='HQDIN9CRJZ' where id=4; -update noar tt set b0='5TT0NEGCLMIW' where id=4; -update noar ti set b0='5TT0NEGCLMIW' where id=4; -update noar tt set v0='MRQS93GDRK' where id=4; -update noar ti set v0='MRQS93GDRK' where id=4; -update noar tt set b1='IB0SPJJN' where id=4; -update noar ti set b1='IB0SPJJN' where id=4; -update noar tt set v0='BTG' where id=4; -update noar ti set v0='BTG' where id=4; -update noar tt set b2='5UXQITX5DMCJMN9SV0LJY' where id=4; -update noar ti set b2='5UXQITX5DMCJMN9SV0LJY' where id=4; -update noar tt set v0='4' where id=5; -update noar ti set v0='4' where id=5; -update noar tt set b0='THXVJ63P' where id=5; -update noar ti set b0='THXVJ63P' where id=5; -update noar tt set v0='TVX59QX25AU1J355FN' where id=5; -update noar ti set v0='TVX59QX25AU1J355FN' where id=5; -update noar tt set b1='S43RXDC7QDLMIMR2J87YNYEFXB4D' where id=5; -update noar ti set b1='S43RXDC7QDLMIMR2J87YNYEFXB4D' where id=5; -update noar tt set v0='HL1MDNVIYQ45B8KN' where id=5; -update noar ti set v0='HL1MDNVIYQ45B8KN' where id=5; -update noar tt set b2='G9QZTTOOI2US6' where id=5; -update noar ti set b2='G9QZTTOOI2US6' where id=5; -update noar tt set v0='8BN191' where id=6; -update noar ti set v0='8BN191' where id=6; -update noar tt set b0='79E6XKBZH' where id=6; -update noar ti set b0='79E6XKBZH' where id=6; -update noar tt set v0='VC4JKA3SAOU0N7OFNEO5HI2LRP' where id=6; -update noar ti set v0='VC4JKA3SAOU0N7OFNEO5HI2LRP' where id=6; -update noar tt set b1='85G2WABE44HMT06QFBHFZSRNKZUT' where id=6; -update noar ti set b1='85G2WABE44HMT06QFBHFZSRNKZUT' where id=6; -update noar tt set v0='HRTKC' where id=6; -update noar ti set v0='HRTKC' where id=6; -update noar tt set b2='YP02J3' where id=6; -update noar ti set b2='YP02J3' where id=6; -update noar tt set v0='32QY8MJF9DEW9N6GTJIZTK' where id=7; -update noar ti set v0='32QY8MJF9DEW9N6GTJIZTK' where id=7; -update noar tt set b0='RF8O62' where id=7; -update noar ti set b0='RF8O62' where id=7; -update noar tt set v0='WZUPL6918F4' where id=7; -update noar ti set v0='WZUPL6918F4' where id=7; -update noar tt set b1='C2AELA42F' where id=7; -update noar ti set b1='C2AELA42F' where id=7; -update noar tt set v0='DAA47S2LTGV3G0HFBHGDR0PIL' where id=7; -update noar ti set v0='DAA47S2LTGV3G0HFBHGDR0PIL' where id=7; -update noar tt set b2='BT14UFVXFOKIATLCYDWMENP2' where id=7; -update noar ti set b2='BT14UFVXFOKIATLCYDWMENP2' where id=7; -update noar tt set v0='NV5ERN2H9JOQZ43G9AMAL4W' where id=8; -update noar ti set v0='NV5ERN2H9JOQZ43G9AMAL4W' where id=8; -update noar tt set b0='87Z0NO' where id=8; -update noar ti set b0='87Z0NO' where id=8; -update noar tt set v0='48UKQ18CU89HY1PJB' where id=8; -update noar ti set v0='48UKQ18CU89HY1PJB' where id=8; -update noar tt set b1='LCR9OTZHBTCTI5HGJPP0' where id=8; -update noar ti set b1='LCR9OTZHBTCTI5HGJPP0' where id=8; -update noar tt set v0='1Z3L0TMEF5Y1NIX52NIK5V7ZQ7R' where id=8; -update noar ti set v0='1Z3L0TMEF5Y1NIX52NIK5V7ZQ7R' where id=8; -update noar tt set b2='ODXXXF5YUTF2SA3JPXLY' where id=8; -update noar ti set b2='ODXXXF5YUTF2SA3JPXLY' where id=8; -update noar tt set v0='TE' where id=9; -update noar ti set v0='TE' where id=9; -update noar tt set b0='CS0RDZQD' where id=9; -update noar ti set b0='CS0RDZQD' where id=9; -update noar tt set v0='QBCSZ4GUHP5B6BMW9LOP2VAH7M' where id=9; -update noar ti set v0='QBCSZ4GUHP5B6BMW9LOP2VAH7M' where id=9; -update noar tt set b1='5HH2LTH3L2VYH8Q' where id=9; -update noar ti set b1='5HH2LTH3L2VYH8Q' where id=9; -update noar tt set v0='2LGZ6YXANFZMLO' where id=9; -update noar ti set v0='2LGZ6YXANFZMLO' where id=9; -update noar tt set b2='SPH3IZWCYQX2NEKRCQ76EP5JH' where id=9; -update noar ti set b2='SPH3IZWCYQX2NEKRCQ76EP5JH' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -v0 varchar(32) not null, -b0 mediumblob not null, -b1 blob not null, -b2 blob not null -) engine=tokudb; -insert into tt values (1,'','','',''); -insert into tt values (2,'','','',''); -insert into tt values (3,'','','',''); -insert into tt values (4,'','','',''); -insert into tt values (5,'','','',''); -insert into tt values (6,'','','',''); -insert into tt values (7,'','','',''); -insert into tt values (8,'','','',''); -insert into tt values (9,'','','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='K9DCBE7U6CHU1L4LXB8NUTATAZ' where id=1; -update noar ti set v0='K9DCBE7U6CHU1L4LXB8NUTATAZ' where id=1; -update noar tt set b0='QP9TCZ5AYIW' where id=1; -update noar ti set b0='QP9TCZ5AYIW' where id=1; -update noar tt set v0='FODV' where id=1; -update noar ti set v0='FODV' where id=1; -update noar tt set b1='ZNU2SC8U8HYHGYUT' where id=1; -update noar ti set b1='ZNU2SC8U8HYHGYUT' where id=1; -update noar tt set v0='FJJDGHK35OJQQWM7PG' where id=1; -update noar ti set v0='FJJDGHK35OJQQWM7PG' where id=1; -update noar tt set b2='GAMAODV6ZL4' where id=1; -update noar ti set b2='GAMAODV6ZL4' where id=1; -update noar tt set v0='QY72N53U4MPHGHQZGJJFZ9NKMJIF' where id=2; -update noar ti set v0='QY72N53U4MPHGHQZGJJFZ9NKMJIF' where id=2; -update noar tt set b0='FW987LIWOQV3BW' where id=2; -update noar ti set b0='FW987LIWOQV3BW' where id=2; -update noar tt set v0='IPWIKJ9F6E9YPQ25EJQDW4K6JF' where id=2; -update noar ti set v0='IPWIKJ9F6E9YPQ25EJQDW4K6JF' where id=2; -update noar tt set b1='PKP' where id=2; -update noar ti set b1='PKP' where id=2; -update noar tt set v0='XY7DREX55RRR8FW5PMFEPXJC' where id=2; -update noar ti set v0='XY7DREX55RRR8FW5PMFEPXJC' where id=2; -update noar tt set b2='CJZ280B9QO83W9ZRIT0KK9REB2' where id=2; -update noar ti set b2='CJZ280B9QO83W9ZRIT0KK9REB2' where id=2; -update noar tt set v0='U6MBM' where id=3; -update noar ti set v0='U6MBM' where id=3; -update noar tt set b0='Z620N2WNPPZGYCTGV5K' where id=3; -update noar ti set b0='Z620N2WNPPZGYCTGV5K' where id=3; -update noar tt set v0='2JLTFVM1' where id=3; -update noar ti set v0='2JLTFVM1' where id=3; -update noar tt set b1='3JVU' where id=3; -update noar ti set b1='3JVU' where id=3; -update noar tt set v0='QN2J5YEZW2X5SXJQT4RIHF2WMBKWM' where id=3; -update noar ti set v0='QN2J5YEZW2X5SXJQT4RIHF2WMBKWM' where id=3; -update noar tt set b2='3FL0NJY6L6UHVZ0VJI59GP6VVB7JREP' where id=3; -update noar ti set b2='3FL0NJY6L6UHVZ0VJI59GP6VVB7JREP' where id=3; -update noar tt set v0='I6JYY' where id=4; -update noar ti set v0='I6JYY' where id=4; -update noar tt set b0='FTHB4MFRE0QKE' where id=4; -update noar ti set b0='FTHB4MFRE0QKE' where id=4; -update noar tt set v0='KM7C34NN23' where id=4; -update noar ti set v0='KM7C34NN23' where id=4; -update noar tt set b1='HC5ALQ183SOX' where id=4; -update noar ti set b1='HC5ALQ183SOX' where id=4; -update noar tt set v0='T' where id=4; -update noar ti set v0='T' where id=4; -update noar tt set b2='8LJV9IBHD6H7RR' where id=4; -update noar ti set b2='8LJV9IBHD6H7RR' where id=4; -update noar tt set v0='D76DZE05MOEXJI3QVJSLSH79AT5H' where id=5; -update noar ti set v0='D76DZE05MOEXJI3QVJSLSH79AT5H' where id=5; -update noar tt set b0='AV3YVQMM3MI2J' where id=5; -update noar ti set b0='AV3YVQMM3MI2J' where id=5; -update noar tt set v0='YS2EYARD1VPNYVMQJ3O2HJFXKF9X7G' where id=5; -update noar ti set v0='YS2EYARD1VPNYVMQJ3O2HJFXKF9X7G' where id=5; -update noar tt set b1='RRYPE7V3P' where id=5; -update noar ti set b1='RRYPE7V3P' where id=5; -update noar tt set v0='WU13VPVSMKE0J2O8X' where id=5; -update noar ti set v0='WU13VPVSMKE0J2O8X' where id=5; -update noar tt set b2='K' where id=5; -update noar ti set b2='K' where id=5; -update noar tt set v0='859YF' where id=6; -update noar ti set v0='859YF' where id=6; -update noar tt set b0='7A9FOFGVVMS1JWO4KE3' where id=6; -update noar ti set b0='7A9FOFGVVMS1JWO4KE3' where id=6; -update noar tt set v0='HU770U0MW46XKK1' where id=6; -update noar ti set v0='HU770U0MW46XKK1' where id=6; -update noar tt set b1='H7Z6YSIVS945I0' where id=6; -update noar ti set b1='H7Z6YSIVS945I0' where id=6; -update noar tt set v0='FTTHL0XVXENZB40ISH0' where id=6; -update noar ti set v0='FTTHL0XVXENZB40ISH0' where id=6; -update noar tt set b2='V7ZTXUAXQLJP8XRNOUB8ZLVGY' where id=6; -update noar ti set b2='V7ZTXUAXQLJP8XRNOUB8ZLVGY' where id=6; -update noar tt set v0='GK7J8K6SA122DV8V04GKXDYHXU5DWQB' where id=7; -update noar ti set v0='GK7J8K6SA122DV8V04GKXDYHXU5DWQB' where id=7; -update noar tt set b0='AWOYNE4HYW9B4ULK3ILS' where id=7; -update noar ti set b0='AWOYNE4HYW9B4ULK3ILS' where id=7; -update noar tt set v0='MMUI' where id=7; -update noar ti set v0='MMUI' where id=7; -update noar tt set b1='HS2XHNESK' where id=7; -update noar ti set b1='HS2XHNESK' where id=7; -update noar tt set v0='J66G1P8LK1' where id=7; -update noar ti set v0='J66G1P8LK1' where id=7; -update noar tt set b2='1PWQ6QD5RUKRE966I60AUN3YYZUPDVY9' where id=7; -update noar ti set b2='1PWQ6QD5RUKRE966I60AUN3YYZUPDVY9' where id=7; -update noar tt set v0='AYT8728RQM2EU91LHLMHCVT0PZ3QNBJW' where id=8; -update noar ti set v0='AYT8728RQM2EU91LHLMHCVT0PZ3QNBJW' where id=8; -update noar tt set b0='JNXK473GZQHOFVN5DB9OKP' where id=8; -update noar ti set b0='JNXK473GZQHOFVN5DB9OKP' where id=8; -update noar tt set v0='MK9FHGRO0JJC51GTDJIJKDQ1WT8I' where id=8; -update noar ti set v0='MK9FHGRO0JJC51GTDJIJKDQ1WT8I' where id=8; -update noar tt set b1='TY6UHCGWXAV' where id=8; -update noar ti set b1='TY6UHCGWXAV' where id=8; -update noar tt set v0='FUNJO59UL05U' where id=8; -update noar ti set v0='FUNJO59UL05U' where id=8; -update noar tt set b2='W9ZB1XT3LL84M7ER39TZIDC8RZM' where id=8; -update noar ti set b2='W9ZB1XT3LL84M7ER39TZIDC8RZM' where id=8; -update noar tt set v0='HUJS0R4' where id=9; -update noar ti set v0='HUJS0R4' where id=9; -update noar tt set b0='GZIX7EHKMVR4EKKT9YP6X9RSRNG8NNS' where id=9; -update noar ti set b0='GZIX7EHKMVR4EKKT9YP6X9RSRNG8NNS' where id=9; -update noar tt set v0='SI2R8ML45IR' where id=9; -update noar ti set v0='SI2R8ML45IR' where id=9; -update noar tt set b1='CXPTEU9S6C6700B' where id=9; -update noar ti set b1='CXPTEU9S6C6700B' where id=9; -update noar tt set v0='T4T' where id=9; -update noar ti set v0='T4T' where id=9; -update noar tt set b2='PA4HCMSD3IOIGYM9E74EGE015WZBY' where id=9; -update noar ti set b2='PA4HCMSD3IOIGYM9E74EGE015WZBY' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -v0 varchar(256) not null, -b0 mediumblob not null, -b1 blob not null, -b2 blob not null -) engine=tokudb; -insert into tt values (1,'','','',''); -insert into tt values (2,'','','',''); -insert into tt values (3,'','','',''); -insert into tt values (4,'','','',''); -insert into tt values (5,'','','',''); -insert into tt values (6,'','','',''); -insert into tt values (7,'','','',''); -insert into tt values (8,'','','',''); -insert into tt values (9,'','','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='9PQEZ4VJSOX0' where id=1; -update noar ti set v0='9PQEZ4VJSOX0' where id=1; -update noar tt set b0='O8E' where id=1; -update noar ti set b0='O8E' where id=1; -update noar tt set v0='86KVIYA03KMOQ2EHC33P1140F' where id=1; -update noar ti set v0='86KVIYA03KMOQ2EHC33P1140F' where id=1; -update noar tt set b1='98FVN3OO1E1S' where id=1; -update noar ti set b1='98FVN3OO1E1S' where id=1; -update noar tt set v0='YZWIW6OM9QVWB42L76' where id=1; -update noar ti set v0='YZWIW6OM9QVWB42L76' where id=1; -update noar tt set b2='MGGJM5U4SUJAOTJ5P34HOMA9Z2' where id=1; -update noar ti set b2='MGGJM5U4SUJAOTJ5P34HOMA9Z2' where id=1; -update noar tt set v0='BSN60NF' where id=2; -update noar ti set v0='BSN60NF' where id=2; -update noar tt set b0='FMYGOJLUS3Q0NELVY' where id=2; -update noar ti set b0='FMYGOJLUS3Q0NELVY' where id=2; -update noar tt set v0='457X7ZN2NU63AHHQHFE73TCGBESE' where id=2; -update noar ti set v0='457X7ZN2NU63AHHQHFE73TCGBESE' where id=2; -update noar tt set b1='3Z0' where id=2; -update noar ti set b1='3Z0' where id=2; -update noar tt set v0='23TB3E5CZYI3WAJ3XHO' where id=2; -update noar ti set v0='23TB3E5CZYI3WAJ3XHO' where id=2; -update noar tt set b2='RYU1ST9P5ODKY5321V0KVLN6XO2NNU' where id=2; -update noar ti set b2='RYU1ST9P5ODKY5321V0KVLN6XO2NNU' where id=2; -update noar tt set v0='388MBT4SFV4O49' where id=3; -update noar ti set v0='388MBT4SFV4O49' where id=3; -update noar tt set b0='WUWOBKZ78C6GAHYPUTEXT437WU6L' where id=3; -update noar ti set b0='WUWOBKZ78C6GAHYPUTEXT437WU6L' where id=3; -update noar tt set v0='MKMCCGY4V8BC1F0UBHWMG' where id=3; -update noar ti set v0='MKMCCGY4V8BC1F0UBHWMG' where id=3; -update noar tt set b1='XFDL6DDDCKXECE9JZJKER8OZSH' where id=3; -update noar ti set b1='XFDL6DDDCKXECE9JZJKER8OZSH' where id=3; -update noar tt set v0='FECMTITEA9S82Z3' where id=3; -update noar ti set v0='FECMTITEA9S82Z3' where id=3; -update noar tt set b2='E5149OSO3AUSQE3C71E2' where id=3; -update noar ti set b2='E5149OSO3AUSQE3C71E2' where id=3; -update noar tt set v0='DVFAFK062JB3P' where id=4; -update noar ti set v0='DVFAFK062JB3P' where id=4; -update noar tt set b0='LFQM77I' where id=4; -update noar ti set b0='LFQM77I' where id=4; -update noar tt set v0='CNZR2ALYZ7LF3PBSULJO' where id=4; -update noar ti set v0='CNZR2ALYZ7LF3PBSULJO' where id=4; -update noar tt set b1='F65923044KY943EQBXO0WC5SNHS4FA' where id=4; -update noar ti set b1='F65923044KY943EQBXO0WC5SNHS4FA' where id=4; -update noar tt set v0='0W' where id=4; -update noar ti set v0='0W' where id=4; -update noar tt set b2='ZYB32YAV13' where id=4; -update noar ti set b2='ZYB32YAV13' where id=4; -update noar tt set v0='MO37JFHJAWAPURNOU' where id=5; -update noar ti set v0='MO37JFHJAWAPURNOU' where id=5; -update noar tt set b0='HGGQNFVI50K4388U7Q8PWKEGII2GL1F' where id=5; -update noar ti set b0='HGGQNFVI50K4388U7Q8PWKEGII2GL1F' where id=5; -update noar tt set v0='5V7VC96F0' where id=5; -update noar ti set v0='5V7VC96F0' where id=5; -update noar tt set b1='8C82TJZJNWBXCRLFEUL2FP0Z7GGYPP' where id=5; -update noar ti set b1='8C82TJZJNWBXCRLFEUL2FP0Z7GGYPP' where id=5; -update noar tt set v0='5XYYC50ADP7GJVVS' where id=5; -update noar ti set v0='5XYYC50ADP7GJVVS' where id=5; -update noar tt set b2='81W3O7' where id=5; -update noar ti set b2='81W3O7' where id=5; -update noar tt set v0='7OPKD47JGBWDL0KRFQJOD0XERPCFB' where id=6; -update noar ti set v0='7OPKD47JGBWDL0KRFQJOD0XERPCFB' where id=6; -update noar tt set b0='JULOTLY6RVNPM' where id=6; -update noar ti set b0='JULOTLY6RVNPM' where id=6; -update noar tt set v0='OOZI87MGYZ1DHU3601' where id=6; -update noar ti set v0='OOZI87MGYZ1DHU3601' where id=6; -update noar tt set b1='42' where id=6; -update noar ti set b1='42' where id=6; -update noar tt set v0='86O6' where id=6; -update noar ti set v0='86O6' where id=6; -update noar tt set b2='BF5' where id=6; -update noar ti set b2='BF5' where id=6; -update noar tt set v0='AC4BZELC6FQ' where id=7; -update noar ti set v0='AC4BZELC6FQ' where id=7; -update noar tt set b0='KAW6SDQ' where id=7; -update noar ti set b0='KAW6SDQ' where id=7; -update noar tt set v0='M4OZFK5XCUGJDZHSQLO' where id=7; -update noar ti set v0='M4OZFK5XCUGJDZHSQLO' where id=7; -update noar tt set b1='PTICZPMKF2UPMVY' where id=7; -update noar ti set b1='PTICZPMKF2UPMVY' where id=7; -update noar tt set v0='HFYW51AA412EYYM7OJ3YUEBYT' where id=7; -update noar ti set v0='HFYW51AA412EYYM7OJ3YUEBYT' where id=7; -update noar tt set b2='WU3LBW7' where id=7; -update noar ti set b2='WU3LBW7' where id=7; -update noar tt set v0='PV889WHHUOQXREI' where id=8; -update noar ti set v0='PV889WHHUOQXREI' where id=8; -update noar tt set b0='AVQRSQU41GS50J2UTBPK3UUK3E' where id=8; -update noar ti set b0='AVQRSQU41GS50J2UTBPK3UUK3E' where id=8; -update noar tt set v0='BQIINCEDNA460022I2X8NP' where id=8; -update noar ti set v0='BQIINCEDNA460022I2X8NP' where id=8; -update noar tt set b1='9365Y28JR6E7DFCZW9' where id=8; -update noar ti set b1='9365Y28JR6E7DFCZW9' where id=8; -update noar tt set v0='0YG8YZ1HM9BC2CNQ5YUZNIHVMD1QT6N' where id=8; -update noar ti set v0='0YG8YZ1HM9BC2CNQ5YUZNIHVMD1QT6N' where id=8; -update noar tt set b2='GCS0O23L54X72R4R2M3ZRX4I' where id=8; -update noar ti set b2='GCS0O23L54X72R4R2M3ZRX4I' where id=8; -update noar tt set v0='Y' where id=9; -update noar ti set v0='Y' where id=9; -update noar tt set b0='4NWWMJGC891H4DSOQAC49Z8VY4' where id=9; -update noar ti set b0='4NWWMJGC891H4DSOQAC49Z8VY4' where id=9; -update noar tt set v0='LVGX0UGSSRJX' where id=9; -update noar ti set v0='LVGX0UGSSRJX' where id=9; -update noar tt set b1='2TRFSXFHWZSPEIBYW8U3PITEL' where id=9; -update noar ti set b1='2TRFSXFHWZSPEIBYW8U3PITEL' where id=9; -update noar tt set v0='G38E6TUQX9VPN0GRDUZ2F6RUQ1N4PK' where id=9; -update noar ti set v0='G38E6TUQX9VPN0GRDUZ2F6RUQ1N4PK' where id=9; -update noar tt set b2='NSX4ZQQEJTGYPEP' where id=9; -update noar ti set b2='NSX4ZQQEJTGYPEP' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -v0 varchar(32) null, -b0 mediumblob null, -b1 blob null, -b2 mediumblob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='NG8MXG' where id=1; -update noar ti set v0='NG8MXG' where id=1; -update noar tt set b0='C8TRHI1CEUJMCLWJ5' where id=1; -update noar ti set b0='C8TRHI1CEUJMCLWJ5' where id=1; -update noar tt set v0='HZ82XNE8XORPS0S5CNEM6HH86M9' where id=1; -update noar ti set v0='HZ82XNE8XORPS0S5CNEM6HH86M9' where id=1; -update noar tt set b1='X8KKMGTEKSK42EN970W2GL' where id=1; -update noar ti set b1='X8KKMGTEKSK42EN970W2GL' where id=1; -update noar tt set v0='BP1D1MRV0UJGB523DH5' where id=1; -update noar ti set v0='BP1D1MRV0UJGB523DH5' where id=1; -update noar tt set b2='OERA4H0VQGFOAA4TX9FI' where id=1; -update noar ti set b2='OERA4H0VQGFOAA4TX9FI' where id=1; -update noar tt set v0='Z9GVZANQ0LAXZYQTX' where id=2; -update noar ti set v0='Z9GVZANQ0LAXZYQTX' where id=2; -update noar tt set b0='BC7DNEVBXCOALJKSDH' where id=2; -update noar ti set b0='BC7DNEVBXCOALJKSDH' where id=2; -update noar tt set v0='ENY4IW1J0S8SQ3X2VP469IYL' where id=2; -update noar ti set v0='ENY4IW1J0S8SQ3X2VP469IYL' where id=2; -update noar tt set b1='XK3SDYK3PIJKJG' where id=2; -update noar ti set b1='XK3SDYK3PIJKJG' where id=2; -update noar tt set v0='V3NUO1MOV21MVTJ4VVDR' where id=2; -update noar ti set v0='V3NUO1MOV21MVTJ4VVDR' where id=2; -update noar tt set b2='ENHFTC78Q2ATFJSM8RJKGWMD8ATDZ' where id=2; -update noar ti set b2='ENHFTC78Q2ATFJSM8RJKGWMD8ATDZ' where id=2; -update noar tt set v0='QL2XJNG3MZMUEXZP7H' where id=3; -update noar ti set v0='QL2XJNG3MZMUEXZP7H' where id=3; -update noar tt set b0='IH52NP349L0OXB4ITZP4Q0NB83M' where id=3; -update noar ti set b0='IH52NP349L0OXB4ITZP4Q0NB83M' where id=3; -update noar tt set v0='93Z1PRL4K2DSX8G6C10M2UCV6L' where id=3; -update noar ti set v0='93Z1PRL4K2DSX8G6C10M2UCV6L' where id=3; -update noar tt set b1='TPLLSXAV87BAZFOO' where id=3; -update noar ti set b1='TPLLSXAV87BAZFOO' where id=3; -update noar tt set v0='60F9D49S7MPPSYKDWWQBL3' where id=3; -update noar ti set v0='60F9D49S7MPPSYKDWWQBL3' where id=3; -update noar tt set b2='TTCF3N1MBFGER6I2' where id=3; -update noar ti set b2='TTCF3N1MBFGER6I2' where id=3; -update noar tt set v0='H9O' where id=4; -update noar ti set v0='H9O' where id=4; -update noar tt set b0='SSJ0VOAU' where id=4; -update noar ti set b0='SSJ0VOAU' where id=4; -update noar tt set v0='1AKZTYIW7O3866AGV6HQ5WI5RRCV' where id=4; -update noar ti set v0='1AKZTYIW7O3866AGV6HQ5WI5RRCV' where id=4; -update noar tt set b1='QO5WX6NX9FYTZ' where id=4; -update noar ti set b1='QO5WX6NX9FYTZ' where id=4; -update noar tt set v0='FBUZ7KKB51LL6QL2E9ENFZ23O8BS' where id=4; -update noar ti set v0='FBUZ7KKB51LL6QL2E9ENFZ23O8BS' where id=4; -update noar tt set b2='EEJEILTHUOL2WI' where id=4; -update noar ti set b2='EEJEILTHUOL2WI' where id=4; -update noar tt set v0='VNPFB' where id=5; -update noar ti set v0='VNPFB' where id=5; -update noar tt set b0='URNVXJRKA8KAEPP2X0K9R' where id=5; -update noar ti set b0='URNVXJRKA8KAEPP2X0K9R' where id=5; -update noar tt set v0='OF' where id=5; -update noar ti set v0='OF' where id=5; -update noar tt set b1='P34MVO' where id=5; -update noar ti set b1='P34MVO' where id=5; -update noar tt set v0='IHR14N5QIU5UNXE2YNS' where id=5; -update noar ti set v0='IHR14N5QIU5UNXE2YNS' where id=5; -update noar tt set b2='1I8QG7N2O1YAV0L0NOUYCO2' where id=5; -update noar ti set b2='1I8QG7N2O1YAV0L0NOUYCO2' where id=5; -update noar tt set v0='V88HEHV8UP3LL31VTL0M' where id=6; -update noar ti set v0='V88HEHV8UP3LL31VTL0M' where id=6; -update noar tt set b0='D4ZVY0Y6K9G3QF6PMEQC639NBV7XRFY' where id=6; -update noar ti set b0='D4ZVY0Y6K9G3QF6PMEQC639NBV7XRFY' where id=6; -update noar tt set v0='4HSE7EFM8DINVD93YATM' where id=6; -update noar ti set v0='4HSE7EFM8DINVD93YATM' where id=6; -update noar tt set b1='NL3W8' where id=6; -update noar ti set b1='NL3W8' where id=6; -update noar tt set v0='4HZGP' where id=6; -update noar ti set v0='4HZGP' where id=6; -update noar tt set b2='JGY2EM0SMCMG59TNFXR' where id=6; -update noar ti set b2='JGY2EM0SMCMG59TNFXR' where id=6; -update noar tt set v0='9JX73DBU0ER2GCEI4CXYPH' where id=7; -update noar ti set v0='9JX73DBU0ER2GCEI4CXYPH' where id=7; -update noar tt set b0='UCSAA9BH1FF2ICDLUZKL6VLNHNV' where id=7; -update noar ti set b0='UCSAA9BH1FF2ICDLUZKL6VLNHNV' where id=7; -update noar tt set v0='6N7KLLM8SLHFA16K7PO' where id=7; -update noar ti set v0='6N7KLLM8SLHFA16K7PO' where id=7; -update noar tt set b1='D7IQYIS90JED52PBBCRFKA9OLU' where id=7; -update noar ti set b1='D7IQYIS90JED52PBBCRFKA9OLU' where id=7; -update noar tt set v0='B' where id=7; -update noar ti set v0='B' where id=7; -update noar tt set b2='ORKN7JGQCPJVOEZKF2K7G9OYOTXGKZ45' where id=7; -update noar ti set b2='ORKN7JGQCPJVOEZKF2K7G9OYOTXGKZ45' where id=7; -update noar tt set v0='0W0G8LAB0HP4TMK0FDX6' where id=8; -update noar ti set v0='0W0G8LAB0HP4TMK0FDX6' where id=8; -update noar tt set b0='6IECLLZNFQYUWZWFL8' where id=8; -update noar ti set b0='6IECLLZNFQYUWZWFL8' where id=8; -update noar tt set v0='Q3A69N4' where id=8; -update noar ti set v0='Q3A69N4' where id=8; -update noar tt set b1='P9X2F68TYAHJT56514AH1QEO7L' where id=8; -update noar ti set b1='P9X2F68TYAHJT56514AH1QEO7L' where id=8; -update noar tt set v0='VY4H38W9' where id=8; -update noar ti set v0='VY4H38W9' where id=8; -update noar tt set b2='CKM' where id=8; -update noar ti set b2='CKM' where id=8; -update noar tt set v0='34Z' where id=9; -update noar ti set v0='34Z' where id=9; -update noar tt set b0='6ECOUUG3IBP3HSFGAV2YZQ1Q' where id=9; -update noar ti set b0='6ECOUUG3IBP3HSFGAV2YZQ1Q' where id=9; -update noar tt set v0='L' where id=9; -update noar ti set v0='L' where id=9; -update noar tt set b1='WYZ' where id=9; -update noar ti set b1='WYZ' where id=9; -update noar tt set v0='ZMG22NTVH' where id=9; -update noar ti set v0='ZMG22NTVH' where id=9; -update noar tt set b2='7TP0HP1' where id=9; -update noar ti set b2='7TP0HP1' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -v0 varchar(256) null, -b0 mediumblob null, -b1 blob null, -b2 mediumblob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='F1PBQUEBCE2SOIF8MTAL3OA' where id=1; -update noar ti set v0='F1PBQUEBCE2SOIF8MTAL3OA' where id=1; -update noar tt set b0='Q2A8RUAZW' where id=1; -update noar ti set b0='Q2A8RUAZW' where id=1; -update noar tt set v0='Y2EYT6F95DDTLSXC4VUGKDA' where id=1; -update noar ti set v0='Y2EYT6F95DDTLSXC4VUGKDA' where id=1; -update noar tt set b1='Z149291IXGO' where id=1; -update noar ti set b1='Z149291IXGO' where id=1; -update noar tt set v0='5U46MWCXK045R3WATPSI' where id=1; -update noar ti set v0='5U46MWCXK045R3WATPSI' where id=1; -update noar tt set b2='HZHJCZ1W0ENNTK8T3THTFH8GLX' where id=1; -update noar ti set b2='HZHJCZ1W0ENNTK8T3THTFH8GLX' where id=1; -update noar tt set v0='1TE3Z3Y2ES' where id=2; -update noar ti set v0='1TE3Z3Y2ES' where id=2; -update noar tt set b0='GYVBCAERQLNK56GAJXGIQT' where id=2; -update noar ti set b0='GYVBCAERQLNK56GAJXGIQT' where id=2; -update noar tt set v0='O9TEV0FLVUJGE' where id=2; -update noar ti set v0='O9TEV0FLVUJGE' where id=2; -update noar tt set b1='5R' where id=2; -update noar ti set b1='5R' where id=2; -update noar tt set v0='JD4Z6104U6OCND5EZ1ZR3BKKV3M' where id=2; -update noar ti set v0='JD4Z6104U6OCND5EZ1ZR3BKKV3M' where id=2; -update noar tt set b2='M5SB21MY4A06HO4PJK' where id=2; -update noar ti set b2='M5SB21MY4A06HO4PJK' where id=2; -update noar tt set v0='KQP6XOKXV2G05HCJ9V3ZXJD464G04OI' where id=3; -update noar ti set v0='KQP6XOKXV2G05HCJ9V3ZXJD464G04OI' where id=3; -update noar tt set b0='S35MPSS5YHRSPS842U69HTVLUY6IN0' where id=3; -update noar ti set b0='S35MPSS5YHRSPS842U69HTVLUY6IN0' where id=3; -update noar tt set v0='9A' where id=3; -update noar ti set v0='9A' where id=3; -update noar tt set b1='F5BS' where id=3; -update noar ti set b1='F5BS' where id=3; -update noar tt set v0='W15UAASOM2143M77EIN51P0EOBABFQW1' where id=3; -update noar ti set v0='W15UAASOM2143M77EIN51P0EOBABFQW1' where id=3; -update noar tt set b2='5DW7' where id=3; -update noar ti set b2='5DW7' where id=3; -update noar tt set v0='18X1DYBNW1OKN796VN7290Z4SKWE' where id=4; -update noar ti set v0='18X1DYBNW1OKN796VN7290Z4SKWE' where id=4; -update noar tt set b0='ILM6P1V' where id=4; -update noar ti set b0='ILM6P1V' where id=4; -update noar tt set v0='R755QIYZLK1CN09G572' where id=4; -update noar ti set v0='R755QIYZLK1CN09G572' where id=4; -update noar tt set b1='6F' where id=4; -update noar ti set b1='6F' where id=4; -update noar tt set v0='E' where id=4; -update noar ti set v0='E' where id=4; -update noar tt set b2='DCVUWKGBDQJFSSGBP' where id=4; -update noar ti set b2='DCVUWKGBDQJFSSGBP' where id=4; -update noar tt set v0='PC5H51' where id=5; -update noar ti set v0='PC5H51' where id=5; -update noar tt set b0='Q' where id=5; -update noar ti set b0='Q' where id=5; -update noar tt set v0='ETN' where id=5; -update noar ti set v0='ETN' where id=5; -update noar tt set b1='5MD4SQIPDPV4QOTPWTAHNN62EE5JEJAO' where id=5; -update noar ti set b1='5MD4SQIPDPV4QOTPWTAHNN62EE5JEJAO' where id=5; -update noar tt set v0='AH4L4' where id=5; -update noar ti set v0='AH4L4' where id=5; -update noar tt set b2='X1PTYLFKYL0' where id=5; -update noar ti set b2='X1PTYLFKYL0' where id=5; -update noar tt set v0='URRG7BE0USKJS0KS80V35TJM' where id=6; -update noar ti set v0='URRG7BE0USKJS0KS80V35TJM' where id=6; -update noar tt set b0='59QP2LEWOK4UJLU7879KDVWZYB' where id=6; -update noar ti set b0='59QP2LEWOK4UJLU7879KDVWZYB' where id=6; -update noar tt set v0='W3VN' where id=6; -update noar ti set v0='W3VN' where id=6; -update noar tt set b1='AI8A09Y' where id=6; -update noar ti set b1='AI8A09Y' where id=6; -update noar tt set v0='7FK2BF' where id=6; -update noar ti set v0='7FK2BF' where id=6; -update noar tt set b2='XBMXD8W8KVFR5EYOQFWXE' where id=6; -update noar ti set b2='XBMXD8W8KVFR5EYOQFWXE' where id=6; -update noar tt set v0='16H861Z8OYSQ4HAKPHPC5RPPCHAU' where id=7; -update noar ti set v0='16H861Z8OYSQ4HAKPHPC5RPPCHAU' where id=7; -update noar tt set b0='7CSMB993KJB8' where id=7; -update noar ti set b0='7CSMB993KJB8' where id=7; -update noar tt set v0='86W2ROZ7MOWO6YUWS82E' where id=7; -update noar ti set v0='86W2ROZ7MOWO6YUWS82E' where id=7; -update noar tt set b1='H5LZP06DZGB9J7O' where id=7; -update noar ti set b1='H5LZP06DZGB9J7O' where id=7; -update noar tt set v0='EFV72O9IN7X8A79B95UD2C77LIFCH' where id=7; -update noar ti set v0='EFV72O9IN7X8A79B95UD2C77LIFCH' where id=7; -update noar tt set b2='N21TAZPP1G' where id=7; -update noar ti set b2='N21TAZPP1G' where id=7; -update noar tt set v0='OC1Q2H7T0TRB97OVM6' where id=8; -update noar ti set v0='OC1Q2H7T0TRB97OVM6' where id=8; -update noar tt set b0='W8DOSD6X5CR' where id=8; -update noar ti set b0='W8DOSD6X5CR' where id=8; -update noar tt set v0='XXEW1VDAXP0A6WELG5RZO5ITIJD6' where id=8; -update noar ti set v0='XXEW1VDAXP0A6WELG5RZO5ITIJD6' where id=8; -update noar tt set b1='WG3PC00JI6AO69I3ABWOW4C80JHIPL6X' where id=8; -update noar ti set b1='WG3PC00JI6AO69I3ABWOW4C80JHIPL6X' where id=8; -update noar tt set v0='WIEJE8ULP7KB8JVIYQ6BBWDJ5LNJHW' where id=8; -update noar ti set v0='WIEJE8ULP7KB8JVIYQ6BBWDJ5LNJHW' where id=8; -update noar tt set b2='RPFVCK3MGEQ' where id=8; -update noar ti set b2='RPFVCK3MGEQ' where id=8; -update noar tt set v0='T05KTFLZIK8Q2RX67XFB3' where id=9; -update noar ti set v0='T05KTFLZIK8Q2RX67XFB3' where id=9; -update noar tt set b0='VDKLOT3SFEJKU9LJ3BKPIC6U1JK8YUIB' where id=9; -update noar ti set b0='VDKLOT3SFEJKU9LJ3BKPIC6U1JK8YUIB' where id=9; -update noar tt set v0='V9BV08UTPQ2BF4BB49AMAP23B' where id=9; -update noar ti set v0='V9BV08UTPQ2BF4BB49AMAP23B' where id=9; -update noar tt set b1='PA24CEW9VI5V60A6JS9EP' where id=9; -update noar ti set b1='PA24CEW9VI5V60A6JS9EP' where id=9; -update noar tt set v0='U9A4Q8K84X2S2TIRGBPHM0AQXQOK2EK3' where id=9; -update noar ti set v0='U9A4Q8K84X2S2TIRGBPHM0AQXQOK2EK3' where id=9; -update noar tt set b2='O7Q7KOEW26B918A34F' where id=9; -update noar ti set b2='O7Q7KOEW26B918A34F' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -v0 varchar(32) not null, -b0 mediumblob not null, -b1 blob not null, -b2 mediumblob not null -) engine=tokudb; -insert into tt values (1,'','','',''); -insert into tt values (2,'','','',''); -insert into tt values (3,'','','',''); -insert into tt values (4,'','','',''); -insert into tt values (5,'','','',''); -insert into tt values (6,'','','',''); -insert into tt values (7,'','','',''); -insert into tt values (8,'','','',''); -insert into tt values (9,'','','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='2ZP4G' where id=1; -update noar ti set v0='2ZP4G' where id=1; -update noar tt set b0='01LEI6LGA79NN3J' where id=1; -update noar ti set b0='01LEI6LGA79NN3J' where id=1; -update noar tt set v0='N4V' where id=1; -update noar ti set v0='N4V' where id=1; -update noar tt set b1='4X2I4E' where id=1; -update noar ti set b1='4X2I4E' where id=1; -update noar tt set v0='QDIXK' where id=1; -update noar ti set v0='QDIXK' where id=1; -update noar tt set b2='HDJUDDIWR' where id=1; -update noar ti set b2='HDJUDDIWR' where id=1; -update noar tt set v0='OEF' where id=2; -update noar ti set v0='OEF' where id=2; -update noar tt set b0='JQI5PPZEQY4PIUOLJZS3M' where id=2; -update noar ti set b0='JQI5PPZEQY4PIUOLJZS3M' where id=2; -update noar tt set v0='PCN' where id=2; -update noar ti set v0='PCN' where id=2; -update noar tt set b1='450700GHCWQ' where id=2; -update noar ti set b1='450700GHCWQ' where id=2; -update noar tt set v0='44TJVJLBEWOXUED1CQGDGFNHZ' where id=2; -update noar ti set v0='44TJVJLBEWOXUED1CQGDGFNHZ' where id=2; -update noar tt set b2='2HOR702CXVMDI0' where id=2; -update noar ti set b2='2HOR702CXVMDI0' where id=2; -update noar tt set v0='XT9JKQUF1JK36H8LEOL31648J2L0CK' where id=3; -update noar ti set v0='XT9JKQUF1JK36H8LEOL31648J2L0CK' where id=3; -update noar tt set b0='C08AJVG8ZC' where id=3; -update noar ti set b0='C08AJVG8ZC' where id=3; -update noar tt set v0='C28U2XGQAAYG44' where id=3; -update noar ti set v0='C28U2XGQAAYG44' where id=3; -update noar tt set b1='K4YPM7C' where id=3; -update noar ti set b1='K4YPM7C' where id=3; -update noar tt set v0='RWZTH8H1D8CRIPQOVSTJ9X3K' where id=3; -update noar ti set v0='RWZTH8H1D8CRIPQOVSTJ9X3K' where id=3; -update noar tt set b2='9B8FBRLA7A28R2' where id=3; -update noar ti set b2='9B8FBRLA7A28R2' where id=3; -update noar tt set v0='OAL' where id=4; -update noar ti set v0='OAL' where id=4; -update noar tt set b0='QELOWD2WX22J1SKCMECI78QUDH' where id=4; -update noar ti set b0='QELOWD2WX22J1SKCMECI78QUDH' where id=4; -update noar tt set v0='SZT0J' where id=4; -update noar ti set v0='SZT0J' where id=4; -update noar tt set b1='J' where id=4; -update noar ti set b1='J' where id=4; -update noar tt set v0='4D' where id=4; -update noar ti set v0='4D' where id=4; -update noar tt set b2='T2BBZBIFJAKOSUV8U' where id=4; -update noar ti set b2='T2BBZBIFJAKOSUV8U' where id=4; -update noar tt set v0='NF0ROOLY' where id=5; -update noar ti set v0='NF0ROOLY' where id=5; -update noar tt set b0='6K3O61HYF498PKS9F60PWM7' where id=5; -update noar ti set b0='6K3O61HYF498PKS9F60PWM7' where id=5; -update noar tt set v0='2BGVY1DTPU4GV6A41Y2DME372DWE' where id=5; -update noar ti set v0='2BGVY1DTPU4GV6A41Y2DME372DWE' where id=5; -update noar tt set b1='ERNZAAZU2AV4DV4DYBZOZOL5H' where id=5; -update noar ti set b1='ERNZAAZU2AV4DV4DYBZOZOL5H' where id=5; -update noar tt set v0='VWT3TWDOW0F7MINAF5QR80DBK' where id=5; -update noar ti set v0='VWT3TWDOW0F7MINAF5QR80DBK' where id=5; -update noar tt set b2='G13E5OPP2V4' where id=5; -update noar ti set b2='G13E5OPP2V4' where id=5; -update noar tt set v0='GWBNI7E8QVL' where id=6; -update noar ti set v0='GWBNI7E8QVL' where id=6; -update noar tt set b0='GCAE' where id=6; -update noar ti set b0='GCAE' where id=6; -update noar tt set v0='42Z5B17W' where id=6; -update noar ti set v0='42Z5B17W' where id=6; -update noar tt set b1='D0DN9' where id=6; -update noar ti set b1='D0DN9' where id=6; -update noar tt set v0='97IAVIVA01ZVGU' where id=6; -update noar ti set v0='97IAVIVA01ZVGU' where id=6; -update noar tt set b2='GRJO5HU7HSA9PB' where id=6; -update noar ti set b2='GRJO5HU7HSA9PB' where id=6; -update noar tt set v0='OH' where id=7; -update noar ti set v0='OH' where id=7; -update noar tt set b0='6BY82J9L2HZCWY0FY0W' where id=7; -update noar ti set b0='6BY82J9L2HZCWY0FY0W' where id=7; -update noar tt set v0='5JH5BYC4MMM3RHC8R9X0A' where id=7; -update noar ti set v0='5JH5BYC4MMM3RHC8R9X0A' where id=7; -update noar tt set b1='UQ7KK3FAJ7LSSPWA75SWCAZJCTRX' where id=7; -update noar ti set b1='UQ7KK3FAJ7LSSPWA75SWCAZJCTRX' where id=7; -update noar tt set v0='64LV25LIJWBDCT3Y0JLQG04MV' where id=7; -update noar ti set v0='64LV25LIJWBDCT3Y0JLQG04MV' where id=7; -update noar tt set b2='EQ960JVNXC2K' where id=7; -update noar ti set b2='EQ960JVNXC2K' where id=7; -update noar tt set v0='QP' where id=8; -update noar ti set v0='QP' where id=8; -update noar tt set b0='50H5F34V0JX2AHRNCX0O5K79' where id=8; -update noar ti set b0='50H5F34V0JX2AHRNCX0O5K79' where id=8; -update noar tt set v0='G8YSYAKL6JV' where id=8; -update noar ti set v0='G8YSYAKL6JV' where id=8; -update noar tt set b1='2M3EV01GIG2BDBBZNWD3E1RYS6T' where id=8; -update noar ti set b1='2M3EV01GIG2BDBBZNWD3E1RYS6T' where id=8; -update noar tt set v0='5DHUHZE3' where id=8; -update noar ti set v0='5DHUHZE3' where id=8; -update noar tt set b2='CXK5HHVF2LVUIFVHA5' where id=8; -update noar ti set b2='CXK5HHVF2LVUIFVHA5' where id=8; -update noar tt set v0='E3BMKSHIKWSGNHCWP' where id=9; -update noar ti set v0='E3BMKSHIKWSGNHCWP' where id=9; -update noar tt set b0='0UQFIJSPHTHVMT3AMCTJ4XWE56' where id=9; -update noar ti set b0='0UQFIJSPHTHVMT3AMCTJ4XWE56' where id=9; -update noar tt set v0='C60S' where id=9; -update noar ti set v0='C60S' where id=9; -update noar tt set b1='C' where id=9; -update noar ti set b1='C' where id=9; -update noar tt set v0='7PNMBG6D39OPYB00OJPOBI1' where id=9; -update noar ti set v0='7PNMBG6D39OPYB00OJPOBI1' where id=9; -update noar tt set b2='3ONR5C7MAO1X5X9N6RKEIEB87RWPPQBT' where id=9; -update noar ti set b2='3ONR5C7MAO1X5X9N6RKEIEB87RWPPQBT' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -v0 varchar(256) not null, -b0 mediumblob not null, -b1 blob not null, -b2 mediumblob not null -) engine=tokudb; -insert into tt values (1,'','','',''); -insert into tt values (2,'','','',''); -insert into tt values (3,'','','',''); -insert into tt values (4,'','','',''); -insert into tt values (5,'','','',''); -insert into tt values (6,'','','',''); -insert into tt values (7,'','','',''); -insert into tt values (8,'','','',''); -insert into tt values (9,'','','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='A4AA3FXYV4DTPJKHYAKUOJW3ZK' where id=1; -update noar ti set v0='A4AA3FXYV4DTPJKHYAKUOJW3ZK' where id=1; -update noar tt set b0='R8IEW' where id=1; -update noar ti set b0='R8IEW' where id=1; -update noar tt set v0='OR0M4TX' where id=1; -update noar ti set v0='OR0M4TX' where id=1; -update noar tt set b1='QJTLO20R' where id=1; -update noar ti set b1='QJTLO20R' where id=1; -update noar tt set v0='NGDQHAI7148MQ22026DJ41EK9FN2Y' where id=1; -update noar ti set v0='NGDQHAI7148MQ22026DJ41EK9FN2Y' where id=1; -update noar tt set b2='S65QS2IL3MMOY08HRFHON2DPBPZDL' where id=1; -update noar ti set b2='S65QS2IL3MMOY08HRFHON2DPBPZDL' where id=1; -update noar tt set v0='FF3XO7' where id=2; -update noar ti set v0='FF3XO7' where id=2; -update noar tt set b0='CGTC' where id=2; -update noar ti set b0='CGTC' where id=2; -update noar tt set v0='DT6WS7GJTLADMRGUQ7V8EZDRWB' where id=2; -update noar ti set v0='DT6WS7GJTLADMRGUQ7V8EZDRWB' where id=2; -update noar tt set b1='UQ55G3FP095A77' where id=2; -update noar ti set b1='UQ55G3FP095A77' where id=2; -update noar tt set v0='QR3HB1SPVQWL80876SMPMESCKY0YI5' where id=2; -update noar ti set v0='QR3HB1SPVQWL80876SMPMESCKY0YI5' where id=2; -update noar tt set b2='WIYEY4CVM4ND' where id=2; -update noar ti set b2='WIYEY4CVM4ND' where id=2; -update noar tt set v0='87F' where id=3; -update noar ti set v0='87F' where id=3; -update noar tt set b0='V73VPVY' where id=3; -update noar ti set b0='V73VPVY' where id=3; -update noar tt set v0='21XNY8' where id=3; -update noar ti set v0='21XNY8' where id=3; -update noar tt set b1='REH5S' where id=3; -update noar ti set b1='REH5S' where id=3; -update noar tt set v0='GOOB18DFUSH8U17V6G0' where id=3; -update noar ti set v0='GOOB18DFUSH8U17V6G0' where id=3; -update noar tt set b2='GA4NUOMAEMEARS3BJ923K' where id=3; -update noar ti set b2='GA4NUOMAEMEARS3BJ923K' where id=3; -update noar tt set v0='6S137V9YMPXJ3Q0I6WC5K' where id=4; -update noar ti set v0='6S137V9YMPXJ3Q0I6WC5K' where id=4; -update noar tt set b0='8IQA1OY3AV9RLCJHKW' where id=4; -update noar ti set b0='8IQA1OY3AV9RLCJHKW' where id=4; -update noar tt set v0='M2ND1' where id=4; -update noar ti set v0='M2ND1' where id=4; -update noar tt set b1='UXZV2GF5FYPEOPKOBPNN4F75HOFL' where id=4; -update noar ti set b1='UXZV2GF5FYPEOPKOBPNN4F75HOFL' where id=4; -update noar tt set v0='HCBTC1UI7VEE6OO' where id=4; -update noar ti set v0='HCBTC1UI7VEE6OO' where id=4; -update noar tt set b2='EUVNBYY9' where id=4; -update noar ti set b2='EUVNBYY9' where id=4; -update noar tt set v0='O78QJ7K7HAR0FZR6K' where id=5; -update noar ti set v0='O78QJ7K7HAR0FZR6K' where id=5; -update noar tt set b0='10OKAVKT2JDOUVUCTRERCY2VR' where id=5; -update noar ti set b0='10OKAVKT2JDOUVUCTRERCY2VR' where id=5; -update noar tt set v0='FAWT4QEK7II0Z6JF' where id=5; -update noar ti set v0='FAWT4QEK7II0Z6JF' where id=5; -update noar tt set b1='3Z3U30DUZ7KZTAZWAHGY' where id=5; -update noar ti set b1='3Z3U30DUZ7KZTAZWAHGY' where id=5; -update noar tt set v0='S4MQ8C3EW9A5R' where id=5; -update noar ti set v0='S4MQ8C3EW9A5R' where id=5; -update noar tt set b2='26Z' where id=5; -update noar ti set b2='26Z' where id=5; -update noar tt set v0='8GB2DBT8V' where id=6; -update noar ti set v0='8GB2DBT8V' where id=6; -update noar tt set b0='OFAUM4J3OQS1NYTNFEZJE2LTRP5BRS' where id=6; -update noar ti set b0='OFAUM4J3OQS1NYTNFEZJE2LTRP5BRS' where id=6; -update noar tt set v0='5YXZVC5A9EWVZ9HGGNP9DX0NJD' where id=6; -update noar ti set v0='5YXZVC5A9EWVZ9HGGNP9DX0NJD' where id=6; -update noar tt set b1='R99BWONGOT0' where id=6; -update noar ti set b1='R99BWONGOT0' where id=6; -update noar tt set v0='LL0VX2VA74DZIE' where id=6; -update noar ti set v0='LL0VX2VA74DZIE' where id=6; -update noar tt set b2='ULDWVM1N7QQZ2B6UM5OUN8NVJDAS003' where id=6; -update noar ti set b2='ULDWVM1N7QQZ2B6UM5OUN8NVJDAS003' where id=6; -update noar tt set v0='WWF9QN8Z6S05PUAE972300L26' where id=7; -update noar ti set v0='WWF9QN8Z6S05PUAE972300L26' where id=7; -update noar tt set b0='BMS3TM3HIKLE0JPJYCPDXZQ9U4O1GPYE' where id=7; -update noar ti set b0='BMS3TM3HIKLE0JPJYCPDXZQ9U4O1GPYE' where id=7; -update noar tt set v0='CWEGE0JEGGJKE5EDY2GGTM' where id=7; -update noar ti set v0='CWEGE0JEGGJKE5EDY2GGTM' where id=7; -update noar tt set b1='QR4GBJ5GQYR88N7E4L9K1ZP' where id=7; -update noar ti set b1='QR4GBJ5GQYR88N7E4L9K1ZP' where id=7; -update noar tt set v0='H3PMCSEU9MPSH' where id=7; -update noar ti set v0='H3PMCSEU9MPSH' where id=7; -update noar tt set b2='RRFISX4EEFU3JBUDRB1KRIVR04FW34' where id=7; -update noar ti set b2='RRFISX4EEFU3JBUDRB1KRIVR04FW34' where id=7; -update noar tt set v0='GPY' where id=8; -update noar ti set v0='GPY' where id=8; -update noar tt set b0='28ISLOSD81EN6YD3ACSXDF' where id=8; -update noar ti set b0='28ISLOSD81EN6YD3ACSXDF' where id=8; -update noar tt set v0='QQT6CN6OD1UWQ' where id=8; -update noar ti set v0='QQT6CN6OD1UWQ' where id=8; -update noar tt set b1='2HVGRSDZDGITT05MQ4IPIOER' where id=8; -update noar ti set b1='2HVGRSDZDGITT05MQ4IPIOER' where id=8; -update noar tt set v0='1SIVJG4CFLL1407AAALM0PZEXB7A65E' where id=8; -update noar ti set v0='1SIVJG4CFLL1407AAALM0PZEXB7A65E' where id=8; -update noar tt set b2='2MTZ4PJR' where id=8; -update noar ti set b2='2MTZ4PJR' where id=8; -update noar tt set v0='667GOGOD0WCETW1TWMT' where id=9; -update noar ti set v0='667GOGOD0WCETW1TWMT' where id=9; -update noar tt set b0='O8J29YPW92CJF2' where id=9; -update noar ti set b0='O8J29YPW92CJF2' where id=9; -update noar tt set v0='PCAMFQ6JRUKDMQ68ICC4KLF' where id=9; -update noar ti set v0='PCAMFQ6JRUKDMQ68ICC4KLF' where id=9; -update noar tt set b1='UGVTRDPGYBFIJTNF2S2INWO0' where id=9; -update noar ti set b1='UGVTRDPGYBFIJTNF2S2INWO0' where id=9; -update noar tt set v0='V4X1JPMZHKF2EMF' where id=9; -update noar ti set v0='V4X1JPMZHKF2EMF' where id=9; -update noar tt set b2='KDZWNS' where id=9; -update noar ti set b2='KDZWNS' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -v0 varchar(32) null, -b0 mediumblob null, -b1 blob null, -b2 longblob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='8MQ2YCFR' where id=1; -update noar ti set v0='8MQ2YCFR' where id=1; -update noar tt set b0='PFA1F6QG4LY21FC8K2' where id=1; -update noar ti set b0='PFA1F6QG4LY21FC8K2' where id=1; -update noar tt set v0='F3SLC6TRE8IUOR2FCVKE4FAX' where id=1; -update noar ti set v0='F3SLC6TRE8IUOR2FCVKE4FAX' where id=1; -update noar tt set b1='BHASSA7NM0XCN21MIEQL5SLCONQS' where id=1; -update noar ti set b1='BHASSA7NM0XCN21MIEQL5SLCONQS' where id=1; -update noar tt set v0='2GRSWH' where id=1; -update noar ti set v0='2GRSWH' where id=1; -update noar tt set b2='4CZ4F15ZHEYG821PQ' where id=1; -update noar ti set b2='4CZ4F15ZHEYG821PQ' where id=1; -update noar tt set v0='9Y4LOWTMNOUCV3IX' where id=2; -update noar ti set v0='9Y4LOWTMNOUCV3IX' where id=2; -update noar tt set b0='8HIDXNK9S4P0EI70I7XGFBA2VWCF' where id=2; -update noar ti set b0='8HIDXNK9S4P0EI70I7XGFBA2VWCF' where id=2; -update noar tt set v0='P0KQ2W3EJZEGAC3' where id=2; -update noar ti set v0='P0KQ2W3EJZEGAC3' where id=2; -update noar tt set b1='21MKQLUHZUGUM2G1VL6JTJGS6X' where id=2; -update noar ti set b1='21MKQLUHZUGUM2G1VL6JTJGS6X' where id=2; -update noar tt set v0='R751A3HRK' where id=2; -update noar ti set v0='R751A3HRK' where id=2; -update noar tt set b2='F33JMZA4E2CSSLW' where id=2; -update noar ti set b2='F33JMZA4E2CSSLW' where id=2; -update noar tt set v0='YVD3GCINTKF070B6FRL6179O4TP' where id=3; -update noar ti set v0='YVD3GCINTKF070B6FRL6179O4TP' where id=3; -update noar tt set b0='TPIKHORNGPZDZY21WP8MVWRPTJTL1H5P' where id=3; -update noar ti set b0='TPIKHORNGPZDZY21WP8MVWRPTJTL1H5P' where id=3; -update noar tt set v0='F6I3WEVWK8AXJW9Q6UC8' where id=3; -update noar ti set v0='F6I3WEVWK8AXJW9Q6UC8' where id=3; -update noar tt set b1='PQOD' where id=3; -update noar ti set b1='PQOD' where id=3; -update noar tt set v0='EA7VW5SB3CNWQ' where id=3; -update noar ti set v0='EA7VW5SB3CNWQ' where id=3; -update noar tt set b2='VVY56UFFFIL' where id=3; -update noar ti set b2='VVY56UFFFIL' where id=3; -update noar tt set v0='ZPGZBU401P2AD' where id=4; -update noar ti set v0='ZPGZBU401P2AD' where id=4; -update noar tt set b0='39HK9KC76BC82HS89Y4CY1H00' where id=4; -update noar ti set b0='39HK9KC76BC82HS89Y4CY1H00' where id=4; -update noar tt set v0='0PMR3ZHSP14HU2VKT9CK676ZP' where id=4; -update noar ti set v0='0PMR3ZHSP14HU2VKT9CK676ZP' where id=4; -update noar tt set b1='4WEWY619KNDBWI16V59YJLU' where id=4; -update noar ti set b1='4WEWY619KNDBWI16V59YJLU' where id=4; -update noar tt set v0='RRYCBO' where id=4; -update noar ti set v0='RRYCBO' where id=4; -update noar tt set b2='VZQS1YIGKJWVWGOKKPXI' where id=4; -update noar ti set b2='VZQS1YIGKJWVWGOKKPXI' where id=4; -update noar tt set v0='UUEADOXZ5QVMST' where id=5; -update noar ti set v0='UUEADOXZ5QVMST' where id=5; -update noar tt set b0='CYTF' where id=5; -update noar ti set b0='CYTF' where id=5; -update noar tt set v0='7GR08064UUKL5P6' where id=5; -update noar ti set v0='7GR08064UUKL5P6' where id=5; -update noar tt set b1='AOCAZYOH4MDQGT4SQA' where id=5; -update noar ti set b1='AOCAZYOH4MDQGT4SQA' where id=5; -update noar tt set v0='HXH6KF7XL9Y5FR1KMU3DAGXSX8PY' where id=5; -update noar ti set v0='HXH6KF7XL9Y5FR1KMU3DAGXSX8PY' where id=5; -update noar tt set b2='DNTOSGXA' where id=5; -update noar ti set b2='DNTOSGXA' where id=5; -update noar tt set v0='D3WALG84SDKPU3WMS5V27' where id=6; -update noar ti set v0='D3WALG84SDKPU3WMS5V27' where id=6; -update noar tt set b0='GZMNXGYTBMLQUQZKM4SEDI6R' where id=6; -update noar ti set b0='GZMNXGYTBMLQUQZKM4SEDI6R' where id=6; -update noar tt set v0='8R7AZY6DYH7MT0E' where id=6; -update noar ti set v0='8R7AZY6DYH7MT0E' where id=6; -update noar tt set b1='0YXI' where id=6; -update noar ti set b1='0YXI' where id=6; -update noar tt set v0='A1BSGA' where id=6; -update noar ti set v0='A1BSGA' where id=6; -update noar tt set b2='V0WEKR22REQAN3UKDGZ4RY2QY' where id=6; -update noar ti set b2='V0WEKR22REQAN3UKDGZ4RY2QY' where id=6; -update noar tt set v0='768FII33UN54Q68P100PT4LBPUYTLBS3' where id=7; -update noar ti set v0='768FII33UN54Q68P100PT4LBPUYTLBS3' where id=7; -update noar tt set b0='0VKHPU2A4C1MH6WIWR4O5FNDRPC2N' where id=7; -update noar ti set b0='0VKHPU2A4C1MH6WIWR4O5FNDRPC2N' where id=7; -update noar tt set v0='ZOMFQ7WUNK124IFFFCAJ1JY3Y07' where id=7; -update noar ti set v0='ZOMFQ7WUNK124IFFFCAJ1JY3Y07' where id=7; -update noar tt set b1='JUQPOXD6' where id=7; -update noar ti set b1='JUQPOXD6' where id=7; -update noar tt set v0='QM4I0FKR76JR8N14PKECY' where id=7; -update noar ti set v0='QM4I0FKR76JR8N14PKECY' where id=7; -update noar tt set b2='HBNIMG00FV3J0SKV1HTOP' where id=7; -update noar ti set b2='HBNIMG00FV3J0SKV1HTOP' where id=7; -update noar tt set v0='K8Z8FUVYPBFT2' where id=8; -update noar ti set v0='K8Z8FUVYPBFT2' where id=8; -update noar tt set b0='T40VI2Z32AHGT' where id=8; -update noar ti set b0='T40VI2Z32AHGT' where id=8; -update noar tt set v0='1BA2D926WT1ZVF164HK7L5UNDJQ7W2XM' where id=8; -update noar ti set v0='1BA2D926WT1ZVF164HK7L5UNDJQ7W2XM' where id=8; -update noar tt set b1='E2MT8HYQJZEXEFH' where id=8; -update noar ti set b1='E2MT8HYQJZEXEFH' where id=8; -update noar tt set v0='EPCDJD9J9VD7UOJ1YIFE5JKR7' where id=8; -update noar ti set v0='EPCDJD9J9VD7UOJ1YIFE5JKR7' where id=8; -update noar tt set b2='FQWKFD83775Q9O3TYP42QA' where id=8; -update noar ti set b2='FQWKFD83775Q9O3TYP42QA' where id=8; -update noar tt set v0='3K207KSNHM4' where id=9; -update noar ti set v0='3K207KSNHM4' where id=9; -update noar tt set b0='LE6GI1B' where id=9; -update noar ti set b0='LE6GI1B' where id=9; -update noar tt set v0='2WCQTY2N7YJM4C7GPGP2NTQN' where id=9; -update noar ti set v0='2WCQTY2N7YJM4C7GPGP2NTQN' where id=9; -update noar tt set b1='6XIVK5RVY1IY66GQEJZXISGVNOM381' where id=9; -update noar ti set b1='6XIVK5RVY1IY66GQEJZXISGVNOM381' where id=9; -update noar tt set v0='Z0SVHJCDXRU71XM7R' where id=9; -update noar ti set v0='Z0SVHJCDXRU71XM7R' where id=9; -update noar tt set b2='F2XXINS0OIMAVLT9W' where id=9; -update noar ti set b2='F2XXINS0OIMAVLT9W' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -v0 varchar(256) null, -b0 mediumblob null, -b1 blob null, -b2 longblob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='ZXAHA9KCIDO7MYN6JF0' where id=1; -update noar ti set v0='ZXAHA9KCIDO7MYN6JF0' where id=1; -update noar tt set b0='HZXGWHMW4T7PBHPS' where id=1; -update noar ti set b0='HZXGWHMW4T7PBHPS' where id=1; -update noar tt set v0='GI' where id=1; -update noar ti set v0='GI' where id=1; -update noar tt set b1='DSVNHETNPM9LOBBO07' where id=1; -update noar ti set b1='DSVNHETNPM9LOBBO07' where id=1; -update noar tt set v0='469GMG3PALC2TXC2RVVICWOYF' where id=1; -update noar ti set v0='469GMG3PALC2TXC2RVVICWOYF' where id=1; -update noar tt set b2='638HJQ2K13SM5TFTS3' where id=1; -update noar ti set b2='638HJQ2K13SM5TFTS3' where id=1; -update noar tt set v0='31LMF83CF9KRQC0LP2VHITBSU9U' where id=2; -update noar ti set v0='31LMF83CF9KRQC0LP2VHITBSU9U' where id=2; -update noar tt set b0='G87LXRXL' where id=2; -update noar ti set b0='G87LXRXL' where id=2; -update noar tt set v0='ZIUGLK2VB390NZ' where id=2; -update noar ti set v0='ZIUGLK2VB390NZ' where id=2; -update noar tt set b1='2Z8YQM' where id=2; -update noar ti set b1='2Z8YQM' where id=2; -update noar tt set v0='WD418INXDHJA' where id=2; -update noar ti set v0='WD418INXDHJA' where id=2; -update noar tt set b2='6OXKD5KV38KEBF0NZ1K' where id=2; -update noar ti set b2='6OXKD5KV38KEBF0NZ1K' where id=2; -update noar tt set v0='CYMIUCERBXVP4CJ' where id=3; -update noar ti set v0='CYMIUCERBXVP4CJ' where id=3; -update noar tt set b0='6147G0H77U' where id=3; -update noar ti set b0='6147G0H77U' where id=3; -update noar tt set v0='F06IDV8O2LBYHT5IR6HDMHIQZ6V7' where id=3; -update noar ti set v0='F06IDV8O2LBYHT5IR6HDMHIQZ6V7' where id=3; -update noar tt set b1='DUGSUM4M8U' where id=3; -update noar ti set b1='DUGSUM4M8U' where id=3; -update noar tt set v0='ROVO1UK' where id=3; -update noar ti set v0='ROVO1UK' where id=3; -update noar tt set b2='24CYUW51G0' where id=3; -update noar ti set b2='24CYUW51G0' where id=3; -update noar tt set v0='HCJU' where id=4; -update noar ti set v0='HCJU' where id=4; -update noar tt set b0='PQJBTRWYFKQPXIW0B8YFS1' where id=4; -update noar ti set b0='PQJBTRWYFKQPXIW0B8YFS1' where id=4; -update noar tt set v0='ZMAYPO6ER' where id=4; -update noar ti set v0='ZMAYPO6ER' where id=4; -update noar tt set b1='GXAWFK7GQNYAMDTGH97391ZUC6' where id=4; -update noar ti set b1='GXAWFK7GQNYAMDTGH97391ZUC6' where id=4; -update noar tt set v0='4GYMUYNFHJLUCIPYK5' where id=4; -update noar ti set v0='4GYMUYNFHJLUCIPYK5' where id=4; -update noar tt set b2='W6A1XHZA9DEQZIP442' where id=4; -update noar ti set b2='W6A1XHZA9DEQZIP442' where id=4; -update noar tt set v0='JL5DIB1ZG68IL' where id=5; -update noar ti set v0='JL5DIB1ZG68IL' where id=5; -update noar tt set b0='VURREKC3D03KRDADXTC715RXPNVM3' where id=5; -update noar ti set b0='VURREKC3D03KRDADXTC715RXPNVM3' where id=5; -update noar tt set v0='XP07RSPJ299IIU1Y6E8' where id=5; -update noar ti set v0='XP07RSPJ299IIU1Y6E8' where id=5; -update noar tt set b1='L9O3F8JS15FX6XG2WNKTX1SY1H6U' where id=5; -update noar ti set b1='L9O3F8JS15FX6XG2WNKTX1SY1H6U' where id=5; -update noar tt set v0='MM6B' where id=5; -update noar ti set v0='MM6B' where id=5; -update noar tt set b2='HVM6HVBVI0HX' where id=5; -update noar ti set b2='HVM6HVBVI0HX' where id=5; -update noar tt set v0='OS2PNDORQ8I86YN1KM4OC' where id=6; -update noar ti set v0='OS2PNDORQ8I86YN1KM4OC' where id=6; -update noar tt set b0='AV8VY2WLQU10M6NDTM59GRU8EHCLQR' where id=6; -update noar ti set b0='AV8VY2WLQU10M6NDTM59GRU8EHCLQR' where id=6; -update noar tt set v0='4JJNP148OUHMJ3EGIOHOA' where id=6; -update noar ti set v0='4JJNP148OUHMJ3EGIOHOA' where id=6; -update noar tt set b1='C' where id=6; -update noar ti set b1='C' where id=6; -update noar tt set v0='JSJTKGT3U9ZLMTH5AKR4U5SHMQ' where id=6; -update noar ti set v0='JSJTKGT3U9ZLMTH5AKR4U5SHMQ' where id=6; -update noar tt set b2='15A4BMDBV1X64' where id=6; -update noar ti set b2='15A4BMDBV1X64' where id=6; -update noar tt set v0='OVT5FZH3YI1FBYQVCXK1OR' where id=7; -update noar ti set v0='OVT5FZH3YI1FBYQVCXK1OR' where id=7; -update noar tt set b0='YRY5WJD9HEAC2Q0XL' where id=7; -update noar ti set b0='YRY5WJD9HEAC2Q0XL' where id=7; -update noar tt set v0='P5V009NA8OG6MYEZP8VKM2R8K15' where id=7; -update noar ti set v0='P5V009NA8OG6MYEZP8VKM2R8K15' where id=7; -update noar tt set b1='Z7PR7B2AE6' where id=7; -update noar ti set b1='Z7PR7B2AE6' where id=7; -update noar tt set v0='28SMM2OFCE83W9PZN' where id=7; -update noar ti set v0='28SMM2OFCE83W9PZN' where id=7; -update noar tt set b2='RMVZ2FZ5JB' where id=7; -update noar ti set b2='RMVZ2FZ5JB' where id=7; -update noar tt set v0='FP' where id=8; -update noar ti set v0='FP' where id=8; -update noar tt set b0='Q4NWQ' where id=8; -update noar ti set b0='Q4NWQ' where id=8; -update noar tt set v0='PC59FLLRHOH1XY9GL3F' where id=8; -update noar ti set v0='PC59FLLRHOH1XY9GL3F' where id=8; -update noar tt set b1='CB3E25TWUFO5LQBGR350ZK50VLCV' where id=8; -update noar ti set b1='CB3E25TWUFO5LQBGR350ZK50VLCV' where id=8; -update noar tt set v0='87W71S3TD2IB9NL0LIXJ5D2LWOA' where id=8; -update noar ti set v0='87W71S3TD2IB9NL0LIXJ5D2LWOA' where id=8; -update noar tt set b2='XW7M' where id=8; -update noar ti set b2='XW7M' where id=8; -update noar tt set v0='5RG9BBYLBV' where id=9; -update noar ti set v0='5RG9BBYLBV' where id=9; -update noar tt set b0='YH0MD718RL' where id=9; -update noar ti set b0='YH0MD718RL' where id=9; -update noar tt set v0='355O3IB' where id=9; -update noar ti set v0='355O3IB' where id=9; -update noar tt set b1='DMKSG9UV9E0BVPC74Y3W6' where id=9; -update noar ti set b1='DMKSG9UV9E0BVPC74Y3W6' where id=9; -update noar tt set v0='8IYOIY86E' where id=9; -update noar ti set v0='8IYOIY86E' where id=9; -update noar tt set b2='JWBWUD2UOVL665XG9O2' where id=9; -update noar ti set b2='JWBWUD2UOVL665XG9O2' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -v0 varchar(32) not null, -b0 mediumblob not null, -b1 blob not null, -b2 longblob not null -) engine=tokudb; -insert into tt values (1,'','','',''); -insert into tt values (2,'','','',''); -insert into tt values (3,'','','',''); -insert into tt values (4,'','','',''); -insert into tt values (5,'','','',''); -insert into tt values (6,'','','',''); -insert into tt values (7,'','','',''); -insert into tt values (8,'','','',''); -insert into tt values (9,'','','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='53NJXRWODZ00H0P' where id=1; -update noar ti set v0='53NJXRWODZ00H0P' where id=1; -update noar tt set b0='Q' where id=1; -update noar ti set b0='Q' where id=1; -update noar tt set v0='LFXBBYJM' where id=1; -update noar ti set v0='LFXBBYJM' where id=1; -update noar tt set b1='FQDNKXWV87BCK792UTT2GVTMOOAX7' where id=1; -update noar ti set b1='FQDNKXWV87BCK792UTT2GVTMOOAX7' where id=1; -update noar tt set v0='SYL32JY5KP3J6G2Y' where id=1; -update noar ti set v0='SYL32JY5KP3J6G2Y' where id=1; -update noar tt set b2='U4YF' where id=1; -update noar ti set b2='U4YF' where id=1; -update noar tt set v0='VI0D2S5341KY2Q36JHTR' where id=2; -update noar ti set v0='VI0D2S5341KY2Q36JHTR' where id=2; -update noar tt set b0='4IOP2NA7T03LPQXEPCMIKZB1IRED0' where id=2; -update noar ti set b0='4IOP2NA7T03LPQXEPCMIKZB1IRED0' where id=2; -update noar tt set v0='NZWKB2VXFNU3AVA5QZSZQ3N' where id=2; -update noar ti set v0='NZWKB2VXFNU3AVA5QZSZQ3N' where id=2; -update noar tt set b1='A2L' where id=2; -update noar ti set b1='A2L' where id=2; -update noar tt set v0='SKYND9HJ6NK9YZ0T1' where id=2; -update noar ti set v0='SKYND9HJ6NK9YZ0T1' where id=2; -update noar tt set b2='WU1AXK74NQZLIU20RCTM3P8BKV' where id=2; -update noar ti set b2='WU1AXK74NQZLIU20RCTM3P8BKV' where id=2; -update noar tt set v0='DKN88' where id=3; -update noar ti set v0='DKN88' where id=3; -update noar tt set b0='ZC525KRA6SE7G3US5MUQLGE86G87D' where id=3; -update noar ti set b0='ZC525KRA6SE7G3US5MUQLGE86G87D' where id=3; -update noar tt set v0='CZWWUFQGS93NNS4' where id=3; -update noar ti set v0='CZWWUFQGS93NNS4' where id=3; -update noar tt set b1='35K55I1M7DTG4VEOR2B9PNS24OILM' where id=3; -update noar ti set b1='35K55I1M7DTG4VEOR2B9PNS24OILM' where id=3; -update noar tt set v0='EDDIP9IYAFXMUXWNY' where id=3; -update noar ti set v0='EDDIP9IYAFXMUXWNY' where id=3; -update noar tt set b2='513UJZQEGYUJN' where id=3; -update noar ti set b2='513UJZQEGYUJN' where id=3; -update noar tt set v0='2EM25ILRC41Q' where id=4; -update noar ti set v0='2EM25ILRC41Q' where id=4; -update noar tt set b0='YB8862QIDIQLX' where id=4; -update noar ti set b0='YB8862QIDIQLX' where id=4; -update noar tt set v0='A64ZQAV6H1XFFHI7WKN5PDR71X79' where id=4; -update noar ti set v0='A64ZQAV6H1XFFHI7WKN5PDR71X79' where id=4; -update noar tt set b1='E602RTBF4YLY' where id=4; -update noar ti set b1='E602RTBF4YLY' where id=4; -update noar tt set v0='GK55ETJQT954' where id=4; -update noar ti set v0='GK55ETJQT954' where id=4; -update noar tt set b2='K' where id=4; -update noar ti set b2='K' where id=4; -update noar tt set v0='IFR65JDTP9AUL7XP57X01' where id=5; -update noar ti set v0='IFR65JDTP9AUL7XP57X01' where id=5; -update noar tt set b0='XRPGQ5IPQIPJDR3FF5' where id=5; -update noar ti set b0='XRPGQ5IPQIPJDR3FF5' where id=5; -update noar tt set v0='90ABFY4EH0BMNQX079B' where id=5; -update noar ti set v0='90ABFY4EH0BMNQX079B' where id=5; -update noar tt set b1='IPBPSCH359J72HHM8R' where id=5; -update noar ti set b1='IPBPSCH359J72HHM8R' where id=5; -update noar tt set v0='WDOIIDSM8UDFSTXQMO' where id=5; -update noar ti set v0='WDOIIDSM8UDFSTXQMO' where id=5; -update noar tt set b2='C1SYUE0DSMSS72MPJMRE' where id=5; -update noar ti set b2='C1SYUE0DSMSS72MPJMRE' where id=5; -update noar tt set v0='D71MRM1Q7WS4DAW6EBI1KK8JT7AYMW' where id=6; -update noar ti set v0='D71MRM1Q7WS4DAW6EBI1KK8JT7AYMW' where id=6; -update noar tt set b0='QGDBNCWW054I5X0A' where id=6; -update noar ti set b0='QGDBNCWW054I5X0A' where id=6; -update noar tt set v0='2KNG' where id=6; -update noar ti set v0='2KNG' where id=6; -update noar tt set b1='M6PWKQAOIK4GQVFM' where id=6; -update noar ti set b1='M6PWKQAOIK4GQVFM' where id=6; -update noar tt set v0='V0FEYSZTJ3QSGST7M9WX57ERK' where id=6; -update noar ti set v0='V0FEYSZTJ3QSGST7M9WX57ERK' where id=6; -update noar tt set b2='QVQLMJ7T0RW2O1D7UCO6C6CO9' where id=6; -update noar ti set b2='QVQLMJ7T0RW2O1D7UCO6C6CO9' where id=6; -update noar tt set v0='S9UBSPA2LOX' where id=7; -update noar ti set v0='S9UBSPA2LOX' where id=7; -update noar tt set b0='SED4OQN4PKDSPWBIU1QY53K7P' where id=7; -update noar ti set b0='SED4OQN4PKDSPWBIU1QY53K7P' where id=7; -update noar tt set v0='F' where id=7; -update noar ti set v0='F' where id=7; -update noar tt set b1='JJ1EYCB81DGM1DTFE' where id=7; -update noar ti set b1='JJ1EYCB81DGM1DTFE' where id=7; -update noar tt set v0='SEKYO08VM4KQEZINA8QMQGFY6EE3M' where id=7; -update noar ti set v0='SEKYO08VM4KQEZINA8QMQGFY6EE3M' where id=7; -update noar tt set b2='OYHQPDC7UL5DZSWK3C6228TPQIFB4' where id=7; -update noar ti set b2='OYHQPDC7UL5DZSWK3C6228TPQIFB4' where id=7; -update noar tt set v0='QKQW9I6L7C' where id=8; -update noar ti set v0='QKQW9I6L7C' where id=8; -update noar tt set b0='EPFNTG7M3AR29CT' where id=8; -update noar ti set b0='EPFNTG7M3AR29CT' where id=8; -update noar tt set v0='AXUCJGLQI20UKEWGS98Y7SJWX' where id=8; -update noar ti set v0='AXUCJGLQI20UKEWGS98Y7SJWX' where id=8; -update noar tt set b1='IN12HEJL5VRZV8HMS2E3JR475Y2' where id=8; -update noar ti set b1='IN12HEJL5VRZV8HMS2E3JR475Y2' where id=8; -update noar tt set v0='XFJMZSZMQJF' where id=8; -update noar ti set v0='XFJMZSZMQJF' where id=8; -update noar tt set b2='TN439ONA2C577G9RLWS5FKWII1JA5' where id=8; -update noar ti set b2='TN439ONA2C577G9RLWS5FKWII1JA5' where id=8; -update noar tt set v0='W5UYO' where id=9; -update noar ti set v0='W5UYO' where id=9; -update noar tt set b0='1VXO4SO1VJBFUYPQJ0Z' where id=9; -update noar ti set b0='1VXO4SO1VJBFUYPQJ0Z' where id=9; -update noar tt set v0='F8EYU5O7VUBNPA3ZSE40LMPUG5M46' where id=9; -update noar ti set v0='F8EYU5O7VUBNPA3ZSE40LMPUG5M46' where id=9; -update noar tt set b1='VSCC1APBTFJHNXAD96UVQOQM8G58YUW' where id=9; -update noar ti set b1='VSCC1APBTFJHNXAD96UVQOQM8G58YUW' where id=9; -update noar tt set v0='OLPM6C' where id=9; -update noar ti set v0='OLPM6C' where id=9; -update noar tt set b2='61ERRVAM' where id=9; -update noar ti set b2='61ERRVAM' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -v0 varchar(256) not null, -b0 mediumblob not null, -b1 blob not null, -b2 longblob not null -) engine=tokudb; -insert into tt values (1,'','','',''); -insert into tt values (2,'','','',''); -insert into tt values (3,'','','',''); -insert into tt values (4,'','','',''); -insert into tt values (5,'','','',''); -insert into tt values (6,'','','',''); -insert into tt values (7,'','','',''); -insert into tt values (8,'','','',''); -insert into tt values (9,'','','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='NSHLIY1U423Y2HQSJDRE6PZI7B1' where id=1; -update noar ti set v0='NSHLIY1U423Y2HQSJDRE6PZI7B1' where id=1; -update noar tt set b0='VABL6HL9UUB5' where id=1; -update noar ti set b0='VABL6HL9UUB5' where id=1; -update noar tt set v0='0QSQTRBA6WIK5RX8TTESB1' where id=1; -update noar ti set v0='0QSQTRBA6WIK5RX8TTESB1' where id=1; -update noar tt set b1='LALW8OY22L' where id=1; -update noar ti set b1='LALW8OY22L' where id=1; -update noar tt set v0='ZI0BXLLJL3' where id=1; -update noar ti set v0='ZI0BXLLJL3' where id=1; -update noar tt set b2='S9HHJYL3OPWFBC0HRPEL0G7RFB8' where id=1; -update noar ti set b2='S9HHJYL3OPWFBC0HRPEL0G7RFB8' where id=1; -update noar tt set v0='YOJJRWZHJYRMZ' where id=2; -update noar ti set v0='YOJJRWZHJYRMZ' where id=2; -update noar tt set b0='GX8QW9X' where id=2; -update noar ti set b0='GX8QW9X' where id=2; -update noar tt set v0='ZTZ9YYL061BQFTMS0ZAJJT' where id=2; -update noar ti set v0='ZTZ9YYL061BQFTMS0ZAJJT' where id=2; -update noar tt set b1='MLJNCCSF7V9XDYDT69X7SIYSO' where id=2; -update noar ti set b1='MLJNCCSF7V9XDYDT69X7SIYSO' where id=2; -update noar tt set v0='7BDEXA74YEBZVAQP70' where id=2; -update noar ti set v0='7BDEXA74YEBZVAQP70' where id=2; -update noar tt set b2='YOZ1ZFC7O' where id=2; -update noar ti set b2='YOZ1ZFC7O' where id=2; -update noar tt set v0='LK4B9LW' where id=3; -update noar ti set v0='LK4B9LW' where id=3; -update noar tt set b0='GJNADVGYW17TZ8PRKPGC2Y2VXTYU5SFO' where id=3; -update noar ti set b0='GJNADVGYW17TZ8PRKPGC2Y2VXTYU5SFO' where id=3; -update noar tt set v0='C09MSQYBKFTTT14' where id=3; -update noar ti set v0='C09MSQYBKFTTT14' where id=3; -update noar tt set b1='C5P6PHI3DS1RN9Z6GKBVFIVRRLXAPN10' where id=3; -update noar ti set b1='C5P6PHI3DS1RN9Z6GKBVFIVRRLXAPN10' where id=3; -update noar tt set v0='NQFX9CKKWL2BLIN7' where id=3; -update noar ti set v0='NQFX9CKKWL2BLIN7' where id=3; -update noar tt set b2='ZITORHH66JSN1HLMKZFSRIZZ' where id=3; -update noar ti set b2='ZITORHH66JSN1HLMKZFSRIZZ' where id=3; -update noar tt set v0='DOUN60SVXDJ9ALD6B95NOTKUSE7VJTAO' where id=4; -update noar ti set v0='DOUN60SVXDJ9ALD6B95NOTKUSE7VJTAO' where id=4; -update noar tt set b0='B1Y2JFRQ38GDAFOTT592KQKC3MVT' where id=4; -update noar ti set b0='B1Y2JFRQ38GDAFOTT592KQKC3MVT' where id=4; -update noar tt set v0='DIBG0XDOUXE9KA2OLXVWWYZNCTRX1' where id=4; -update noar ti set v0='DIBG0XDOUXE9KA2OLXVWWYZNCTRX1' where id=4; -update noar tt set b1='RAKX3HNE42MT0LEU5VN84KK7' where id=4; -update noar ti set b1='RAKX3HNE42MT0LEU5VN84KK7' where id=4; -update noar tt set v0='J8F1SQAE8YIKZ8GAKMKYMRQWFLE' where id=4; -update noar ti set v0='J8F1SQAE8YIKZ8GAKMKYMRQWFLE' where id=4; -update noar tt set b2='3FSV8Z4ZEAG8FWWSD' where id=4; -update noar ti set b2='3FSV8Z4ZEAG8FWWSD' where id=4; -update noar tt set v0='PS5G9KCN9Z7D6MZGY' where id=5; -update noar ti set v0='PS5G9KCN9Z7D6MZGY' where id=5; -update noar tt set b0='25VFXPCQKWZE6I1JK' where id=5; -update noar ti set b0='25VFXPCQKWZE6I1JK' where id=5; -update noar tt set v0='WWTKFAP11TY47JAD' where id=5; -update noar ti set v0='WWTKFAP11TY47JAD' where id=5; -update noar tt set b1='NSC9NG5E4U87' where id=5; -update noar ti set b1='NSC9NG5E4U87' where id=5; -update noar tt set v0='Q6EA8DQR04ZHO6JUMK9R5CSO' where id=5; -update noar ti set v0='Q6EA8DQR04ZHO6JUMK9R5CSO' where id=5; -update noar tt set b2='OBRWATVWS4X7EEZLW0ZUS5YMF' where id=5; -update noar ti set b2='OBRWATVWS4X7EEZLW0ZUS5YMF' where id=5; -update noar tt set v0='Y' where id=6; -update noar ti set v0='Y' where id=6; -update noar tt set b0='GTM9MDR94T39' where id=6; -update noar ti set b0='GTM9MDR94T39' where id=6; -update noar tt set v0='MSFRV01L9P' where id=6; -update noar ti set v0='MSFRV01L9P' where id=6; -update noar tt set b1='ED2IAIAQ3M8QNB7E3CP' where id=6; -update noar ti set b1='ED2IAIAQ3M8QNB7E3CP' where id=6; -update noar tt set v0='X9TU3OOOGO7GSXKPMJ5O' where id=6; -update noar ti set v0='X9TU3OOOGO7GSXKPMJ5O' where id=6; -update noar tt set b2='M4LLW5HUSMA60L1O218Z7KWXT3F8L' where id=6; -update noar ti set b2='M4LLW5HUSMA60L1O218Z7KWXT3F8L' where id=6; -update noar tt set v0='RJB' where id=7; -update noar ti set v0='RJB' where id=7; -update noar tt set b0='153SQWKJCOZKQANGE' where id=7; -update noar ti set b0='153SQWKJCOZKQANGE' where id=7; -update noar tt set v0='2FQFTXN9CR82P1' where id=7; -update noar ti set v0='2FQFTXN9CR82P1' where id=7; -update noar tt set b1='MFY' where id=7; -update noar ti set b1='MFY' where id=7; -update noar tt set v0='SKWK78N0JRVQFQSNK1MOWAEBR' where id=7; -update noar ti set v0='SKWK78N0JRVQFQSNK1MOWAEBR' where id=7; -update noar tt set b2='2P1IBF7T27LVEVMZHRFSYUM11' where id=7; -update noar ti set b2='2P1IBF7T27LVEVMZHRFSYUM11' where id=7; -update noar tt set v0='4QX' where id=8; -update noar ti set v0='4QX' where id=8; -update noar tt set b0='NGHBI3GWHK86Z2U4GAMDI3YHE' where id=8; -update noar ti set b0='NGHBI3GWHK86Z2U4GAMDI3YHE' where id=8; -update noar tt set v0='4441XKWYCAOD4YOEOR831WIYMH9MTT' where id=8; -update noar ti set v0='4441XKWYCAOD4YOEOR831WIYMH9MTT' where id=8; -update noar tt set b1='A2ORVUD' where id=8; -update noar ti set b1='A2ORVUD' where id=8; -update noar tt set v0='E092CX2NKC256BPH1RNHJAGOW391BMY1' where id=8; -update noar ti set v0='E092CX2NKC256BPH1RNHJAGOW391BMY1' where id=8; -update noar tt set b2='K3BJR3PDKTNH52PPJJIUD9JLRXNMY2K9' where id=8; -update noar ti set b2='K3BJR3PDKTNH52PPJJIUD9JLRXNMY2K9' where id=8; -update noar tt set v0='VW7MM6XU4ZF0LSL6531WTJ5A' where id=9; -update noar ti set v0='VW7MM6XU4ZF0LSL6531WTJ5A' where id=9; -update noar tt set b0='Q30O1UHU' where id=9; -update noar ti set b0='Q30O1UHU' where id=9; -update noar tt set v0='DD9MBAFXKXMORAPO03FEEBFIS0OLPSJ' where id=9; -update noar ti set v0='DD9MBAFXKXMORAPO03FEEBFIS0OLPSJ' where id=9; -update noar tt set b1='UDNI50X1714QESXPJAEG6KFWN3T' where id=9; -update noar ti set b1='UDNI50X1714QESXPJAEG6KFWN3T' where id=9; -update noar tt set v0='0' where id=9; -update noar ti set v0='0' where id=9; -update noar tt set b2='O6H29BGGYZ1M5KLR2DR35' where id=9; -update noar ti set b2='O6H29BGGYZ1M5KLR2DR35' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -v0 varchar(32) null, -b0 mediumblob null, -b1 mediumblob null, -b2 tinyblob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='02WIPE8AS' where id=1; -update noar ti set v0='02WIPE8AS' where id=1; -update noar tt set b0='Q' where id=1; -update noar ti set b0='Q' where id=1; -update noar tt set v0='U6A4NPVVNTG81KRLEV0BBFNNVTFUBO' where id=1; -update noar ti set v0='U6A4NPVVNTG81KRLEV0BBFNNVTFUBO' where id=1; -update noar tt set b1='WDB8' where id=1; -update noar ti set b1='WDB8' where id=1; -update noar tt set v0='5LBGKCZX9UJRDB' where id=1; -update noar ti set v0='5LBGKCZX9UJRDB' where id=1; -update noar tt set b2='NN6A1IZSA6MNPR35CFL8UPQ' where id=1; -update noar ti set b2='NN6A1IZSA6MNPR35CFL8UPQ' where id=1; -update noar tt set v0='K8G55IME4GZ4' where id=2; -update noar ti set v0='K8G55IME4GZ4' where id=2; -update noar tt set b0='GAIYM36GR0TWRALL61E' where id=2; -update noar ti set b0='GAIYM36GR0TWRALL61E' where id=2; -update noar tt set v0='NCY1UXKF2ZWP9PGFS3PBMPOP90' where id=2; -update noar ti set v0='NCY1UXKF2ZWP9PGFS3PBMPOP90' where id=2; -update noar tt set b1='2TG' where id=2; -update noar ti set b1='2TG' where id=2; -update noar tt set v0='2AFJFY8285A' where id=2; -update noar ti set v0='2AFJFY8285A' where id=2; -update noar tt set b2='W49R8E96BAX' where id=2; -update noar ti set b2='W49R8E96BAX' where id=2; -update noar tt set v0='VQU48DKJGWZSG27HH51' where id=3; -update noar ti set v0='VQU48DKJGWZSG27HH51' where id=3; -update noar tt set b0='WVJIRIOSB1MC1' where id=3; -update noar ti set b0='WVJIRIOSB1MC1' where id=3; -update noar tt set v0='46YG' where id=3; -update noar ti set v0='46YG' where id=3; -update noar tt set b1='W80I94C6C1570ALIW2R0AXSRMCGEAOC' where id=3; -update noar ti set b1='W80I94C6C1570ALIW2R0AXSRMCGEAOC' where id=3; -update noar tt set v0='58TSIDW74PPMGI5K9FTV8' where id=3; -update noar ti set v0='58TSIDW74PPMGI5K9FTV8' where id=3; -update noar tt set b2='8T45DBQ3HF4OLW6ULR9GXTB' where id=3; -update noar ti set b2='8T45DBQ3HF4OLW6ULR9GXTB' where id=3; -update noar tt set v0='XXCQ9' where id=4; -update noar ti set v0='XXCQ9' where id=4; -update noar tt set b0='FJG3W74BGRD962QMEY' where id=4; -update noar ti set b0='FJG3W74BGRD962QMEY' where id=4; -update noar tt set v0='6SO83PIRN05YQ9GP6Z7I' where id=4; -update noar ti set v0='6SO83PIRN05YQ9GP6Z7I' where id=4; -update noar tt set b1='UCXDQ4CURUTIA3I11' where id=4; -update noar ti set b1='UCXDQ4CURUTIA3I11' where id=4; -update noar tt set v0='08NZ521CJI7AOU1129JIE8T2A' where id=4; -update noar ti set v0='08NZ521CJI7AOU1129JIE8T2A' where id=4; -update noar tt set b2='GVVOERSLMYRKZXAULJPY' where id=4; -update noar ti set b2='GVVOERSLMYRKZXAULJPY' where id=4; -update noar tt set v0='LU40357O1R7K9R47J12MLTGW' where id=5; -update noar ti set v0='LU40357O1R7K9R47J12MLTGW' where id=5; -update noar tt set b0='3YNMDV' where id=5; -update noar ti set b0='3YNMDV' where id=5; -update noar tt set v0='WOJ9HOG8M6K0' where id=5; -update noar ti set v0='WOJ9HOG8M6K0' where id=5; -update noar tt set b1='79VJWEYV0FIIQ3DC13ACNRX' where id=5; -update noar ti set b1='79VJWEYV0FIIQ3DC13ACNRX' where id=5; -update noar tt set v0='XONPQPN7JE0CHPE9J' where id=5; -update noar ti set v0='XONPQPN7JE0CHPE9J' where id=5; -update noar tt set b2='CSDKN30HKF0C3QL6LBOR' where id=5; -update noar ti set b2='CSDKN30HKF0C3QL6LBOR' where id=5; -update noar tt set v0='69OA8LI92713GE4KP0E0' where id=6; -update noar ti set v0='69OA8LI92713GE4KP0E0' where id=6; -update noar tt set b0='7QEMQ4CH3IITCJWB7QX0IYRK1AY' where id=6; -update noar ti set b0='7QEMQ4CH3IITCJWB7QX0IYRK1AY' where id=6; -update noar tt set v0='GV1Z7LE3F8OUAOZA1H0UN' where id=6; -update noar ti set v0='GV1Z7LE3F8OUAOZA1H0UN' where id=6; -update noar tt set b1='J7PY49GXXTCRO17GJ7N9X5M91' where id=6; -update noar ti set b1='J7PY49GXXTCRO17GJ7N9X5M91' where id=6; -update noar tt set v0='VUVDAUEP6EO8251NTG' where id=6; -update noar ti set v0='VUVDAUEP6EO8251NTG' where id=6; -update noar tt set b2='NBQ2PI7R2AWFHGSZ' where id=6; -update noar ti set b2='NBQ2PI7R2AWFHGSZ' where id=6; -update noar tt set v0='WFYEB3Y8' where id=7; -update noar ti set v0='WFYEB3Y8' where id=7; -update noar tt set b0='VCB' where id=7; -update noar ti set b0='VCB' where id=7; -update noar tt set v0='UPNTU26I12D9R66ZIIXJOHQKB9SL4JH' where id=7; -update noar ti set v0='UPNTU26I12D9R66ZIIXJOHQKB9SL4JH' where id=7; -update noar tt set b1='878YJCZ3ULDFFMEZ2KGUL' where id=7; -update noar ti set b1='878YJCZ3ULDFFMEZ2KGUL' where id=7; -update noar tt set v0='09VUJW2G' where id=7; -update noar ti set v0='09VUJW2G' where id=7; -update noar tt set b2='MR9N8Z830NEMC6UPYLHQFJV' where id=7; -update noar ti set b2='MR9N8Z830NEMC6UPYLHQFJV' where id=7; -update noar tt set v0='YODS7Z6BS' where id=8; -update noar ti set v0='YODS7Z6BS' where id=8; -update noar tt set b0='L1PW5ZU' where id=8; -update noar ti set b0='L1PW5ZU' where id=8; -update noar tt set v0='MRWX4U' where id=8; -update noar ti set v0='MRWX4U' where id=8; -update noar tt set b1='PDDX89RIJL8LOLW7C3KXZ19' where id=8; -update noar ti set b1='PDDX89RIJL8LOLW7C3KXZ19' where id=8; -update noar tt set v0='LEUL3VHWJNBW5L5PG' where id=8; -update noar ti set v0='LEUL3VHWJNBW5L5PG' where id=8; -update noar tt set b2='GPOZMI0B3MB8KNGW293GG59ZO0' where id=8; -update noar ti set b2='GPOZMI0B3MB8KNGW293GG59ZO0' where id=8; -update noar tt set v0='6F6FAICK47' where id=9; -update noar ti set v0='6F6FAICK47' where id=9; -update noar tt set b0='BER1' where id=9; -update noar ti set b0='BER1' where id=9; -update noar tt set v0='GFJTRNY0ZP9XJ' where id=9; -update noar ti set v0='GFJTRNY0ZP9XJ' where id=9; -update noar tt set b1='68H6GUGSBV824J6IHHEV' where id=9; -update noar ti set b1='68H6GUGSBV824J6IHHEV' where id=9; -update noar tt set v0='8HWA5FP01CKG725UD6ZQ' where id=9; -update noar ti set v0='8HWA5FP01CKG725UD6ZQ' where id=9; -update noar tt set b2='71RT' where id=9; -update noar ti set b2='71RT' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -v0 varchar(256) null, -b0 mediumblob null, -b1 mediumblob null, -b2 tinyblob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='YUDNVRAONWSHFR' where id=1; -update noar ti set v0='YUDNVRAONWSHFR' where id=1; -update noar tt set b0='O' where id=1; -update noar ti set b0='O' where id=1; -update noar tt set v0='9CXVFBIAO3YSGYSO3W1LQV0PTM49IX6P' where id=1; -update noar ti set v0='9CXVFBIAO3YSGYSO3W1LQV0PTM49IX6P' where id=1; -update noar tt set b1='JHZX300HA1OBOUM72HG8ASQP8BEW9W' where id=1; -update noar ti set b1='JHZX300HA1OBOUM72HG8ASQP8BEW9W' where id=1; -update noar tt set v0='2A3GY' where id=1; -update noar ti set v0='2A3GY' where id=1; -update noar tt set b2='ZJPEUDXJC351YY6' where id=1; -update noar ti set b2='ZJPEUDXJC351YY6' where id=1; -update noar tt set v0='OBBRACP4Z7VDWO3TS' where id=2; -update noar ti set v0='OBBRACP4Z7VDWO3TS' where id=2; -update noar tt set b0='VC0M3PQLFYC3' where id=2; -update noar ti set b0='VC0M3PQLFYC3' where id=2; -update noar tt set v0='MB639G5' where id=2; -update noar ti set v0='MB639G5' where id=2; -update noar tt set b1='MS1OFAOGAUET3' where id=2; -update noar ti set b1='MS1OFAOGAUET3' where id=2; -update noar tt set v0='23END4W0YLIHP8H36ZUDB9UB7GCHPEOO' where id=2; -update noar ti set v0='23END4W0YLIHP8H36ZUDB9UB7GCHPEOO' where id=2; -update noar tt set b2='ZOUDZQTLVMOAECTAA79Z2L9WH02C' where id=2; -update noar ti set b2='ZOUDZQTLVMOAECTAA79Z2L9WH02C' where id=2; -update noar tt set v0='FCGQBJ4KXVSMWD' where id=3; -update noar ti set v0='FCGQBJ4KXVSMWD' where id=3; -update noar tt set b0='J1LP3V6AXUMKDKS8AMAW20SQ' where id=3; -update noar ti set b0='J1LP3V6AXUMKDKS8AMAW20SQ' where id=3; -update noar tt set v0='L7ODF5P2' where id=3; -update noar ti set v0='L7ODF5P2' where id=3; -update noar tt set b1='SOEJ9FO5M4NI9' where id=3; -update noar ti set b1='SOEJ9FO5M4NI9' where id=3; -update noar tt set v0='1601THUIO' where id=3; -update noar ti set v0='1601THUIO' where id=3; -update noar tt set b2='KHDX60P5' where id=3; -update noar ti set b2='KHDX60P5' where id=3; -update noar tt set v0='MJOKUBL1EJX3SO7' where id=4; -update noar ti set v0='MJOKUBL1EJX3SO7' where id=4; -update noar tt set b0='6KW7BFMJC9BNU1BP2FE0MKM64CK5' where id=4; -update noar ti set b0='6KW7BFMJC9BNU1BP2FE0MKM64CK5' where id=4; -update noar tt set v0='3JDS23' where id=4; -update noar ti set v0='3JDS23' where id=4; -update noar tt set b1='8ZNI6NJ0' where id=4; -update noar ti set b1='8ZNI6NJ0' where id=4; -update noar tt set v0='0KF2SRKTMT1DO4G17' where id=4; -update noar ti set v0='0KF2SRKTMT1DO4G17' where id=4; -update noar tt set b2='PYN1C1T2CXZ759' where id=4; -update noar ti set b2='PYN1C1T2CXZ759' where id=4; -update noar tt set v0='RNW17GMR08EN4X1REN7YBPOPW3' where id=5; -update noar ti set v0='RNW17GMR08EN4X1REN7YBPOPW3' where id=5; -update noar tt set b0='NRHC1QLAMZV3UGNUIUPR7PIG837QLP' where id=5; -update noar ti set b0='NRHC1QLAMZV3UGNUIUPR7PIG837QLP' where id=5; -update noar tt set v0='G6LBL6UFZE' where id=5; -update noar ti set v0='G6LBL6UFZE' where id=5; -update noar tt set b1='813B0G' where id=5; -update noar ti set b1='813B0G' where id=5; -update noar tt set v0='3K8F7DW5AOXT0O4MKAUKKVKZ9T' where id=5; -update noar ti set v0='3K8F7DW5AOXT0O4MKAUKKVKZ9T' where id=5; -update noar tt set b2='81' where id=5; -update noar ti set b2='81' where id=5; -update noar tt set v0='USVOJFIS3ABD' where id=6; -update noar ti set v0='USVOJFIS3ABD' where id=6; -update noar tt set b0='22DK7EG96R2EQF01ZM6IB98' where id=6; -update noar ti set b0='22DK7EG96R2EQF01ZM6IB98' where id=6; -update noar tt set v0='UROH5QS678HX3BRTEYWSE6' where id=6; -update noar ti set v0='UROH5QS678HX3BRTEYWSE6' where id=6; -update noar tt set b1='IIP3COV6HMZZ9GF26JU4UDMOI' where id=6; -update noar ti set b1='IIP3COV6HMZZ9GF26JU4UDMOI' where id=6; -update noar tt set v0='J66LWVNTEIC750RO8AZAXP89Q3JWVIE' where id=6; -update noar ti set v0='J66LWVNTEIC750RO8AZAXP89Q3JWVIE' where id=6; -update noar tt set b2='GGRBQRQUFV07G' where id=6; -update noar ti set b2='GGRBQRQUFV07G' where id=6; -update noar tt set v0='ZXGEJ2OE4ROBE' where id=7; -update noar ti set v0='ZXGEJ2OE4ROBE' where id=7; -update noar tt set b0='ZNWD2HTGCLW393WWSN' where id=7; -update noar ti set b0='ZNWD2HTGCLW393WWSN' where id=7; -update noar tt set v0='ADX3OW' where id=7; -update noar ti set v0='ADX3OW' where id=7; -update noar tt set b1='9UZ0OWKZY1HRZ9DUU0V30MY5R7YFP' where id=7; -update noar ti set b1='9UZ0OWKZY1HRZ9DUU0V30MY5R7YFP' where id=7; -update noar tt set v0='SD8' where id=7; -update noar ti set v0='SD8' where id=7; -update noar tt set b2='WPXYYL947OYQ9ECXEU76UVV' where id=7; -update noar ti set b2='WPXYYL947OYQ9ECXEU76UVV' where id=7; -update noar tt set v0='41AA1926WNX7PS9T668BYXB4RTWAOY' where id=8; -update noar ti set v0='41AA1926WNX7PS9T668BYXB4RTWAOY' where id=8; -update noar tt set b0='QYTHGM9XT7VN2XJFLTR' where id=8; -update noar ti set b0='QYTHGM9XT7VN2XJFLTR' where id=8; -update noar tt set v0='3TVE9EQSR3L1FD0N46I' where id=8; -update noar ti set v0='3TVE9EQSR3L1FD0N46I' where id=8; -update noar tt set b1='FZJFUQJP0RSRBLAA1WQ55CTL2A6A' where id=8; -update noar ti set b1='FZJFUQJP0RSRBLAA1WQ55CTL2A6A' where id=8; -update noar tt set v0='H9A1N6ONMP' where id=8; -update noar ti set v0='H9A1N6ONMP' where id=8; -update noar tt set b2='IQORF2ZI4KVSYKU8GS4BZ5J3JNWMIJHD' where id=8; -update noar ti set b2='IQORF2ZI4KVSYKU8GS4BZ5J3JNWMIJHD' where id=8; -update noar tt set v0='NC47DFISGAGN3F09' where id=9; -update noar ti set v0='NC47DFISGAGN3F09' where id=9; -update noar tt set b0='Y0TKV' where id=9; -update noar ti set b0='Y0TKV' where id=9; -update noar tt set v0='NUK4BLOS' where id=9; -update noar ti set v0='NUK4BLOS' where id=9; -update noar tt set b1='3O44Q' where id=9; -update noar ti set b1='3O44Q' where id=9; -update noar tt set v0='RB99V3VE9AE5VDA84JYCVHTJCT' where id=9; -update noar ti set v0='RB99V3VE9AE5VDA84JYCVHTJCT' where id=9; -update noar tt set b2='4Q8EYB5L3OY3D8KE14MN' where id=9; -update noar ti set b2='4Q8EYB5L3OY3D8KE14MN' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -v0 varchar(32) not null, -b0 mediumblob not null, -b1 mediumblob not null, -b2 tinyblob not null -) engine=tokudb; -insert into tt values (1,'','','',''); -insert into tt values (2,'','','',''); -insert into tt values (3,'','','',''); -insert into tt values (4,'','','',''); -insert into tt values (5,'','','',''); -insert into tt values (6,'','','',''); -insert into tt values (7,'','','',''); -insert into tt values (8,'','','',''); -insert into tt values (9,'','','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='N' where id=1; -update noar ti set v0='N' where id=1; -update noar tt set b0='YDMB752UI8RHOEANYSMUB0F1AFMCI' where id=1; -update noar ti set b0='YDMB752UI8RHOEANYSMUB0F1AFMCI' where id=1; -update noar tt set v0='JKU8VXN7D' where id=1; -update noar ti set v0='JKU8VXN7D' where id=1; -update noar tt set b1='YDFNDR9TG6GC0HA' where id=1; -update noar ti set b1='YDFNDR9TG6GC0HA' where id=1; -update noar tt set v0='5DSPGEIHHVKWT9Z' where id=1; -update noar ti set v0='5DSPGEIHHVKWT9Z' where id=1; -update noar tt set b2='NCT5R56' where id=1; -update noar ti set b2='NCT5R56' where id=1; -update noar tt set v0='DP4SOY7HBT88OHAZU6SGHJ1D0' where id=2; -update noar ti set v0='DP4SOY7HBT88OHAZU6SGHJ1D0' where id=2; -update noar tt set b0='H0VSX1ZTU16D2D81CNNVVKJ' where id=2; -update noar ti set b0='H0VSX1ZTU16D2D81CNNVVKJ' where id=2; -update noar tt set v0='P' where id=2; -update noar ti set v0='P' where id=2; -update noar tt set b1='5URUZW0' where id=2; -update noar ti set b1='5URUZW0' where id=2; -update noar tt set v0='6OYJPP6HKE4O2U6LO62KHS6HO' where id=2; -update noar ti set v0='6OYJPP6HKE4O2U6LO62KHS6HO' where id=2; -update noar tt set b2='5WHQAX33V0XJU' where id=2; -update noar ti set b2='5WHQAX33V0XJU' where id=2; -update noar tt set v0='78FSJUXZLFOOZH3U7UXO' where id=3; -update noar ti set v0='78FSJUXZLFOOZH3U7UXO' where id=3; -update noar tt set b0='3YSXHIU' where id=3; -update noar ti set b0='3YSXHIU' where id=3; -update noar tt set v0='9SK22IKZDCRXO5SHXL3A5SYP' where id=3; -update noar ti set v0='9SK22IKZDCRXO5SHXL3A5SYP' where id=3; -update noar tt set b1='3WZFQUYWW' where id=3; -update noar ti set b1='3WZFQUYWW' where id=3; -update noar tt set v0='UPMUMHMUXJAVWFM5M72HM' where id=3; -update noar ti set v0='UPMUMHMUXJAVWFM5M72HM' where id=3; -update noar tt set b2='7QS6KNMN0DZUM39Q8FLBZ2K9POZBPU3X' where id=3; -update noar ti set b2='7QS6KNMN0DZUM39Q8FLBZ2K9POZBPU3X' where id=3; -update noar tt set v0='3GYYCXAFWDCZ6ISS5BMA25MJFAQTZ1GZ' where id=4; -update noar ti set v0='3GYYCXAFWDCZ6ISS5BMA25MJFAQTZ1GZ' where id=4; -update noar tt set b0='V3UX3HL8Y' where id=4; -update noar ti set b0='V3UX3HL8Y' where id=4; -update noar tt set v0='F9XY00HELK7I5ZM44BG6B850BF2' where id=4; -update noar ti set v0='F9XY00HELK7I5ZM44BG6B850BF2' where id=4; -update noar tt set b1='MKZ533PZXGNTTJVHDNAISKQOMMV' where id=4; -update noar ti set b1='MKZ533PZXGNTTJVHDNAISKQOMMV' where id=4; -update noar tt set v0='4PC5M167NADGXQZDDV' where id=4; -update noar ti set v0='4PC5M167NADGXQZDDV' where id=4; -update noar tt set b2='9SD5GKYRBW1' where id=4; -update noar ti set b2='9SD5GKYRBW1' where id=4; -update noar tt set v0='TN47W0I8Y54JRLHJAOZH2FUCRH39R2H3' where id=5; -update noar ti set v0='TN47W0I8Y54JRLHJAOZH2FUCRH39R2H3' where id=5; -update noar tt set b0='3W5' where id=5; -update noar ti set b0='3W5' where id=5; -update noar tt set v0='WSJ0X77XS63H4M7259ZD1T' where id=5; -update noar ti set v0='WSJ0X77XS63H4M7259ZD1T' where id=5; -update noar tt set b1='G8VAWEV0B' where id=5; -update noar ti set b1='G8VAWEV0B' where id=5; -update noar tt set v0='CGCOB332F6F3PS9QNTKR5213J4DOCM' where id=5; -update noar ti set v0='CGCOB332F6F3PS9QNTKR5213J4DOCM' where id=5; -update noar tt set b2='LEB90RZ' where id=5; -update noar ti set b2='LEB90RZ' where id=5; -update noar tt set v0='NHSVG' where id=6; -update noar ti set v0='NHSVG' where id=6; -update noar tt set b0='FG' where id=6; -update noar ti set b0='FG' where id=6; -update noar tt set v0='P8O67MEN8U' where id=6; -update noar ti set v0='P8O67MEN8U' where id=6; -update noar tt set b1='2OB6DSDRD8YQ6P7WXWZPEW3IHUXZE' where id=6; -update noar ti set b1='2OB6DSDRD8YQ6P7WXWZPEW3IHUXZE' where id=6; -update noar tt set v0='HQFW09RXAHQ5WBYZIX88C1IAJ' where id=6; -update noar ti set v0='HQFW09RXAHQ5WBYZIX88C1IAJ' where id=6; -update noar tt set b2='0KM1E06RPBBYZ6WEKE' where id=6; -update noar ti set b2='0KM1E06RPBBYZ6WEKE' where id=6; -update noar tt set v0='DK4R00FQKZVH' where id=7; -update noar ti set v0='DK4R00FQKZVH' where id=7; -update noar tt set b0='NCRHUVJIKGDSABVR6PZH1XKXAR7DF' where id=7; -update noar ti set b0='NCRHUVJIKGDSABVR6PZH1XKXAR7DF' where id=7; -update noar tt set v0='JXVE9GUJ6GK6IZ7KC3N2C0K' where id=7; -update noar ti set v0='JXVE9GUJ6GK6IZ7KC3N2C0K' where id=7; -update noar tt set b1='XEXVMKWGSTYDSQOVULK1X7Y' where id=7; -update noar ti set b1='XEXVMKWGSTYDSQOVULK1X7Y' where id=7; -update noar tt set v0='T6T5WBRY6' where id=7; -update noar ti set v0='T6T5WBRY6' where id=7; -update noar tt set b2='QDODTULSK1RN0WDX1EL9NHKCA' where id=7; -update noar ti set b2='QDODTULSK1RN0WDX1EL9NHKCA' where id=7; -update noar tt set v0='2NZJNPN5Q81DZIQXNKUYGBIVL2O0M8JZ' where id=8; -update noar ti set v0='2NZJNPN5Q81DZIQXNKUYGBIVL2O0M8JZ' where id=8; -update noar tt set b0='DSIMV4K676JCPA4YQE' where id=8; -update noar ti set b0='DSIMV4K676JCPA4YQE' where id=8; -update noar tt set v0='UM9H01M831' where id=8; -update noar ti set v0='UM9H01M831' where id=8; -update noar tt set b1='AYPNH6KXSU68LKWCSE79EXFI' where id=8; -update noar ti set b1='AYPNH6KXSU68LKWCSE79EXFI' where id=8; -update noar tt set v0='KAWEV173PLQ3CUYRAR3YFVV' where id=8; -update noar ti set v0='KAWEV173PLQ3CUYRAR3YFVV' where id=8; -update noar tt set b2='NBAT91HZYRDZRSXBDP' where id=8; -update noar ti set b2='NBAT91HZYRDZRSXBDP' where id=8; -update noar tt set v0='GK4OP0FSQJKJ0DT' where id=9; -update noar ti set v0='GK4OP0FSQJKJ0DT' where id=9; -update noar tt set b0='AZTOVLOW2YFNUYF2R9LO80KKUL0B7I8' where id=9; -update noar ti set b0='AZTOVLOW2YFNUYF2R9LO80KKUL0B7I8' where id=9; -update noar tt set v0='CY3728MNXNSG351HF2JPH23KP7' where id=9; -update noar ti set v0='CY3728MNXNSG351HF2JPH23KP7' where id=9; -update noar tt set b1='CO7TSC1080CUM6IUVY0QRE76GLGSP7' where id=9; -update noar ti set b1='CO7TSC1080CUM6IUVY0QRE76GLGSP7' where id=9; -update noar tt set v0='CWGLRYMYXSU' where id=9; -update noar ti set v0='CWGLRYMYXSU' where id=9; -update noar tt set b2='FP3VFIDZY' where id=9; -update noar ti set b2='FP3VFIDZY' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -v0 varchar(256) not null, -b0 mediumblob not null, -b1 mediumblob not null, -b2 tinyblob not null -) engine=tokudb; -insert into tt values (1,'','','',''); -insert into tt values (2,'','','',''); -insert into tt values (3,'','','',''); -insert into tt values (4,'','','',''); -insert into tt values (5,'','','',''); -insert into tt values (6,'','','',''); -insert into tt values (7,'','','',''); -insert into tt values (8,'','','',''); -insert into tt values (9,'','','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='LLFBG8VBB2I' where id=1; -update noar ti set v0='LLFBG8VBB2I' where id=1; -update noar tt set b0='E64YVGC5NQJ8TTIRU9VMC56I7U1CJUS' where id=1; -update noar ti set b0='E64YVGC5NQJ8TTIRU9VMC56I7U1CJUS' where id=1; -update noar tt set v0='439NQPBBYPJ38' where id=1; -update noar ti set v0='439NQPBBYPJ38' where id=1; -update noar tt set b1='T9NQK7250QMBJ6G3TZED5C' where id=1; -update noar ti set b1='T9NQK7250QMBJ6G3TZED5C' where id=1; -update noar tt set v0='S' where id=1; -update noar ti set v0='S' where id=1; -update noar tt set b2='7STB' where id=1; -update noar ti set b2='7STB' where id=1; -update noar tt set v0='COH8TVC777MHK1' where id=2; -update noar ti set v0='COH8TVC777MHK1' where id=2; -update noar tt set b0='B6JDVH3' where id=2; -update noar ti set b0='B6JDVH3' where id=2; -update noar tt set v0='OY8AUBIZHYUY3YBS7GRLB9' where id=2; -update noar ti set v0='OY8AUBIZHYUY3YBS7GRLB9' where id=2; -update noar tt set b1='Y0TO' where id=2; -update noar ti set b1='Y0TO' where id=2; -update noar tt set v0='OU9OWWS416ZIXI1660R' where id=2; -update noar ti set v0='OU9OWWS416ZIXI1660R' where id=2; -update noar tt set b2='AFUDORACFV46H3V4DBRJ' where id=2; -update noar ti set b2='AFUDORACFV46H3V4DBRJ' where id=2; -update noar tt set v0='CS58ZYR5OSJ04TD3WWHM7R55I3' where id=3; -update noar ti set v0='CS58ZYR5OSJ04TD3WWHM7R55I3' where id=3; -update noar tt set b0='PTNN5ABS4OQPRWR4NWKAIXRDIO5FK1' where id=3; -update noar ti set b0='PTNN5ABS4OQPRWR4NWKAIXRDIO5FK1' where id=3; -update noar tt set v0='REKHPM6IRDE2V2PWE8Z4XF8' where id=3; -update noar ti set v0='REKHPM6IRDE2V2PWE8Z4XF8' where id=3; -update noar tt set b1='YY4UFQGSWKKM8TVYJB9' where id=3; -update noar ti set b1='YY4UFQGSWKKM8TVYJB9' where id=3; -update noar tt set v0='3RHB1MQW2793637Z' where id=3; -update noar ti set v0='3RHB1MQW2793637Z' where id=3; -update noar tt set b2='1IXZVWXRJ2LL8NYBJMXAWIAH6EE' where id=3; -update noar ti set b2='1IXZVWXRJ2LL8NYBJMXAWIAH6EE' where id=3; -update noar tt set v0='VACJ89JOLRN3HI0P8ERA' where id=4; -update noar ti set v0='VACJ89JOLRN3HI0P8ERA' where id=4; -update noar tt set b0='2JKZJFW1EB6G2AR8QK' where id=4; -update noar ti set b0='2JKZJFW1EB6G2AR8QK' where id=4; -update noar tt set v0='QDIAQ6T52RMFGX71YZ37S9C08ELYF' where id=4; -update noar ti set v0='QDIAQ6T52RMFGX71YZ37S9C08ELYF' where id=4; -update noar tt set b1='02GKU71LWW7Q4908ONBA1' where id=4; -update noar ti set b1='02GKU71LWW7Q4908ONBA1' where id=4; -update noar tt set v0='YH10LSS0G4H8X9QZVG7T66O48TJMTUM' where id=4; -update noar ti set v0='YH10LSS0G4H8X9QZVG7T66O48TJMTUM' where id=4; -update noar tt set b2='D7YLH4JPV6OQD9O3NNLK' where id=4; -update noar ti set b2='D7YLH4JPV6OQD9O3NNLK' where id=4; -update noar tt set v0='JYSN770Q8IPMRBSBSR46WG53UJPI5S0' where id=5; -update noar ti set v0='JYSN770Q8IPMRBSBSR46WG53UJPI5S0' where id=5; -update noar tt set b0='KSW1NAQR2DBNK5WWGI8M36QAU8' where id=5; -update noar ti set b0='KSW1NAQR2DBNK5WWGI8M36QAU8' where id=5; -update noar tt set v0='6BXHZ4V' where id=5; -update noar ti set v0='6BXHZ4V' where id=5; -update noar tt set b1='D' where id=5; -update noar ti set b1='D' where id=5; -update noar tt set v0='SK9SG' where id=5; -update noar ti set v0='SK9SG' where id=5; -update noar tt set b2='5RF6IY0R' where id=5; -update noar ti set b2='5RF6IY0R' where id=5; -update noar tt set v0='DX' where id=6; -update noar ti set v0='DX' where id=6; -update noar tt set b0='YW5AHY98EZSKKLXWUDW4EF34KMBV' where id=6; -update noar ti set b0='YW5AHY98EZSKKLXWUDW4EF34KMBV' where id=6; -update noar tt set v0='WYD9EK' where id=6; -update noar ti set v0='WYD9EK' where id=6; -update noar tt set b1='USL82FEUNMEEE4TTCIZVW' where id=6; -update noar ti set b1='USL82FEUNMEEE4TTCIZVW' where id=6; -update noar tt set v0='ZY635G47X855R7OB4DSPUOFMW3Z44O' where id=6; -update noar ti set v0='ZY635G47X855R7OB4DSPUOFMW3Z44O' where id=6; -update noar tt set b2='3TK8' where id=6; -update noar ti set b2='3TK8' where id=6; -update noar tt set v0='DXYPX1TQVAAQYY26SDIFBXP1788ME17A' where id=7; -update noar ti set v0='DXYPX1TQVAAQYY26SDIFBXP1788ME17A' where id=7; -update noar tt set b0='71FKVG7HE8M8DU80GARHZWNIU' where id=7; -update noar ti set b0='71FKVG7HE8M8DU80GARHZWNIU' where id=7; -update noar tt set v0='DUO' where id=7; -update noar ti set v0='DUO' where id=7; -update noar tt set b1='AQVMGL2C7Z42DZMCZ3LLNX3B' where id=7; -update noar ti set b1='AQVMGL2C7Z42DZMCZ3LLNX3B' where id=7; -update noar tt set v0='SP61Y' where id=7; -update noar ti set v0='SP61Y' where id=7; -update noar tt set b2='GNB1WPKT5XJVR' where id=7; -update noar ti set b2='GNB1WPKT5XJVR' where id=7; -update noar tt set v0='BSCD' where id=8; -update noar ti set v0='BSCD' where id=8; -update noar tt set b0='9RWIRQOSZH8BZJQX3SGXZ' where id=8; -update noar ti set b0='9RWIRQOSZH8BZJQX3SGXZ' where id=8; -update noar tt set v0='GNSYJ62FETS' where id=8; -update noar ti set v0='GNSYJ62FETS' where id=8; -update noar tt set b1='R5UHHK50CBGFJ8R49HOD2NBERWKEG05' where id=8; -update noar ti set b1='R5UHHK50CBGFJ8R49HOD2NBERWKEG05' where id=8; -update noar tt set v0='NFR5JIP7ISSN2PICY476KQ' where id=8; -update noar ti set v0='NFR5JIP7ISSN2PICY476KQ' where id=8; -update noar tt set b2='F96I73FDASH9K9O9QVJ7' where id=8; -update noar ti set b2='F96I73FDASH9K9O9QVJ7' where id=8; -update noar tt set v0='KH6IM5DP4CRU' where id=9; -update noar ti set v0='KH6IM5DP4CRU' where id=9; -update noar tt set b0='MG' where id=9; -update noar ti set b0='MG' where id=9; -update noar tt set v0='HQVOE57D9QLW' where id=9; -update noar ti set v0='HQVOE57D9QLW' where id=9; -update noar tt set b1='UWZEKF5SRFWTKV' where id=9; -update noar ti set b1='UWZEKF5SRFWTKV' where id=9; -update noar tt set v0='NCTTH4LR' where id=9; -update noar ti set v0='NCTTH4LR' where id=9; -update noar tt set b2='YE8TWCW29FVX87LG' where id=9; -update noar ti set b2='YE8TWCW29FVX87LG' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -v0 varchar(32) null, -b0 mediumblob null, -b1 mediumblob null, -b2 blob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='04PIU0CKKINXJLH41' where id=1; -update noar ti set v0='04PIU0CKKINXJLH41' where id=1; -update noar tt set b0='M6QWWV' where id=1; -update noar ti set b0='M6QWWV' where id=1; -update noar tt set v0='2Y0O8PQ91CAI7PH6D6' where id=1; -update noar ti set v0='2Y0O8PQ91CAI7PH6D6' where id=1; -update noar tt set b1='W0XHJDPTUFG287T1VZZJXVJZX' where id=1; -update noar ti set b1='W0XHJDPTUFG287T1VZZJXVJZX' where id=1; -update noar tt set v0='NTJAOCZNVTFDBKA4IA96ZW9G' where id=1; -update noar ti set v0='NTJAOCZNVTFDBKA4IA96ZW9G' where id=1; -update noar tt set b2='BED5PXB80GBH1B8G2JQBBT' where id=1; -update noar ti set b2='BED5PXB80GBH1B8G2JQBBT' where id=1; -update noar tt set v0='HVYJ1ZX' where id=2; -update noar ti set v0='HVYJ1ZX' where id=2; -update noar tt set b0='ARUE' where id=2; -update noar ti set b0='ARUE' where id=2; -update noar tt set v0='NSQXA7PCT2SG56UN' where id=2; -update noar ti set v0='NSQXA7PCT2SG56UN' where id=2; -update noar tt set b1='53' where id=2; -update noar ti set b1='53' where id=2; -update noar tt set v0='L8I3O6B8HJH4OUIWBIH11GCI4CFQI059' where id=2; -update noar ti set v0='L8I3O6B8HJH4OUIWBIH11GCI4CFQI059' where id=2; -update noar tt set b2='ICGL7UW03KN5PT7NK23ODH6D5ZI03' where id=2; -update noar ti set b2='ICGL7UW03KN5PT7NK23ODH6D5ZI03' where id=2; -update noar tt set v0='YVCLXLU032ERAZUWXHQ' where id=3; -update noar ti set v0='YVCLXLU032ERAZUWXHQ' where id=3; -update noar tt set b0='9GHVX4JS9C67JU' where id=3; -update noar ti set b0='9GHVX4JS9C67JU' where id=3; -update noar tt set v0='CNE' where id=3; -update noar ti set v0='CNE' where id=3; -update noar tt set b1='QEVA42Z6LOTKJ172UWPDXV89QZYMM' where id=3; -update noar ti set b1='QEVA42Z6LOTKJ172UWPDXV89QZYMM' where id=3; -update noar tt set v0='1PHPPWFUDLE' where id=3; -update noar ti set v0='1PHPPWFUDLE' where id=3; -update noar tt set b2='RQ0A3' where id=3; -update noar ti set b2='RQ0A3' where id=3; -update noar tt set v0='MT89D74JVGWCNRGISW4TPQ8' where id=4; -update noar ti set v0='MT89D74JVGWCNRGISW4TPQ8' where id=4; -update noar tt set b0='TBDA8MZ912QDM0GLPQRPXMJCB32HC' where id=4; -update noar ti set b0='TBDA8MZ912QDM0GLPQRPXMJCB32HC' where id=4; -update noar tt set v0='8PIKO4UFEV9W3' where id=4; -update noar ti set v0='8PIKO4UFEV9W3' where id=4; -update noar tt set b1='G884SW0' where id=4; -update noar ti set b1='G884SW0' where id=4; -update noar tt set v0='PD7UEA1E9DN5FI4WSR' where id=4; -update noar ti set v0='PD7UEA1E9DN5FI4WSR' where id=4; -update noar tt set b2='A' where id=4; -update noar ti set b2='A' where id=4; -update noar tt set v0='3SUCBJK5PMUUI' where id=5; -update noar ti set v0='3SUCBJK5PMUUI' where id=5; -update noar tt set b0='IHKV7D4VTTBTLHEUI78I' where id=5; -update noar ti set b0='IHKV7D4VTTBTLHEUI78I' where id=5; -update noar tt set v0='C4BEACU9PGM3AR3KJFSS5' where id=5; -update noar ti set v0='C4BEACU9PGM3AR3KJFSS5' where id=5; -update noar tt set b1='042HA' where id=5; -update noar ti set b1='042HA' where id=5; -update noar tt set v0='HXOT' where id=5; -update noar ti set v0='HXOT' where id=5; -update noar tt set b2='IHJ3T95D7RQLRICLO6OHFYP' where id=5; -update noar ti set b2='IHJ3T95D7RQLRICLO6OHFYP' where id=5; -update noar tt set v0='UFLT8KV6A' where id=6; -update noar ti set v0='UFLT8KV6A' where id=6; -update noar tt set b0='9ISM9KQYQTLN16FWGLN1TAMZJE' where id=6; -update noar ti set b0='9ISM9KQYQTLN16FWGLN1TAMZJE' where id=6; -update noar tt set v0='QURU19YE9WJMXHCWYZFSGITY8X7VGUA' where id=6; -update noar ti set v0='QURU19YE9WJMXHCWYZFSGITY8X7VGUA' where id=6; -update noar tt set b1='5J0WVQBB12CADUEKJW28PPCEI6VZ' where id=6; -update noar ti set b1='5J0WVQBB12CADUEKJW28PPCEI6VZ' where id=6; -update noar tt set v0='GB1YCN3ZN8CEA7159O790F8QSA1DCYT' where id=6; -update noar ti set v0='GB1YCN3ZN8CEA7159O790F8QSA1DCYT' where id=6; -update noar tt set b2='RGMU7R6242MBNK4H7TI44A5LG4' where id=6; -update noar ti set b2='RGMU7R6242MBNK4H7TI44A5LG4' where id=6; -update noar tt set v0='33X4U91FHQL6I6TY0GKWVK3WFK' where id=7; -update noar ti set v0='33X4U91FHQL6I6TY0GKWVK3WFK' where id=7; -update noar tt set b0='NUBOG6EO0FQ2RSVH79V' where id=7; -update noar ti set b0='NUBOG6EO0FQ2RSVH79V' where id=7; -update noar tt set v0='E8KKF2DEKO11' where id=7; -update noar ti set v0='E8KKF2DEKO11' where id=7; -update noar tt set b1='1BCMTILG12L7DR9RY3Y6' where id=7; -update noar ti set b1='1BCMTILG12L7DR9RY3Y6' where id=7; -update noar tt set v0='FAZS7OZEDWLVACH2MN67XONMI' where id=7; -update noar ti set v0='FAZS7OZEDWLVACH2MN67XONMI' where id=7; -update noar tt set b2='XW7TWY9JDOAN' where id=7; -update noar ti set b2='XW7TWY9JDOAN' where id=7; -update noar tt set v0='1CAR5BV5' where id=8; -update noar ti set v0='1CAR5BV5' where id=8; -update noar tt set b0='4HQC2SZIU4E5YHTR15EHGH8W' where id=8; -update noar ti set b0='4HQC2SZIU4E5YHTR15EHGH8W' where id=8; -update noar tt set v0='MAKQ12A0KHZWUWM' where id=8; -update noar ti set v0='MAKQ12A0KHZWUWM' where id=8; -update noar tt set b1='AWEEFJGHNS0' where id=8; -update noar ti set b1='AWEEFJGHNS0' where id=8; -update noar tt set v0='RC4SCVOU908CI9O' where id=8; -update noar ti set v0='RC4SCVOU908CI9O' where id=8; -update noar tt set b2='DTJAHRJIY860W' where id=8; -update noar ti set b2='DTJAHRJIY860W' where id=8; -update noar tt set v0='GDVAL' where id=9; -update noar ti set v0='GDVAL' where id=9; -update noar tt set b0='63MDZN0E1QGLFPQY3WA21ZJXBD4O' where id=9; -update noar ti set b0='63MDZN0E1QGLFPQY3WA21ZJXBD4O' where id=9; -update noar tt set v0='BRB2T2EU23UAIOH2EST6POR8OTNNN' where id=9; -update noar ti set v0='BRB2T2EU23UAIOH2EST6POR8OTNNN' where id=9; -update noar tt set b1='Z9ZZDLYENX6S3GD006R1XF267GY' where id=9; -update noar ti set b1='Z9ZZDLYENX6S3GD006R1XF267GY' where id=9; -update noar tt set v0='YUKYQZ1QHNLGX3FEN7MMXH3W1BWQB6KC' where id=9; -update noar ti set v0='YUKYQZ1QHNLGX3FEN7MMXH3W1BWQB6KC' where id=9; -update noar tt set b2='OAGL44IW81102HG0GB8HY3737AK51BZ' where id=9; -update noar ti set b2='OAGL44IW81102HG0GB8HY3737AK51BZ' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -v0 varchar(256) null, -b0 mediumblob null, -b1 mediumblob null, -b2 blob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='17A5T7Z0WFVX58XEVKHLN2CKLDNJ991' where id=1; -update noar ti set v0='17A5T7Z0WFVX58XEVKHLN2CKLDNJ991' where id=1; -update noar tt set b0='RW8F3WW26' where id=1; -update noar ti set b0='RW8F3WW26' where id=1; -update noar tt set v0='OD37H8N0U92V7S0S8CTDXL0MC' where id=1; -update noar ti set v0='OD37H8N0U92V7S0S8CTDXL0MC' where id=1; -update noar tt set b1='2WJ4IJ0B7A33INI0B5N0JUE8' where id=1; -update noar ti set b1='2WJ4IJ0B7A33INI0B5N0JUE8' where id=1; -update noar tt set v0='AGUVP0RIS' where id=1; -update noar ti set v0='AGUVP0RIS' where id=1; -update noar tt set b2='K63DRD1AZ2VUCFGEC' where id=1; -update noar ti set b2='K63DRD1AZ2VUCFGEC' where id=1; -update noar tt set v0='QDOH273EW2DPFL' where id=2; -update noar ti set v0='QDOH273EW2DPFL' where id=2; -update noar tt set b0='7GEG9LNWUOAVUA0X530S4AIVY' where id=2; -update noar ti set b0='7GEG9LNWUOAVUA0X530S4AIVY' where id=2; -update noar tt set v0='QVEMZ4ETY8E2LTTRA7V4PS4LLPBW' where id=2; -update noar ti set v0='QVEMZ4ETY8E2LTTRA7V4PS4LLPBW' where id=2; -update noar tt set b1='DEIAYQWFCE3VYT0JGC' where id=2; -update noar ti set b1='DEIAYQWFCE3VYT0JGC' where id=2; -update noar tt set v0='5PLIAAL9GV' where id=2; -update noar ti set v0='5PLIAAL9GV' where id=2; -update noar tt set b2='IC6KEXV0HZ9POF0A2Z69SLVWMKUKT4' where id=2; -update noar ti set b2='IC6KEXV0HZ9POF0A2Z69SLVWMKUKT4' where id=2; -update noar tt set v0='C2' where id=3; -update noar ti set v0='C2' where id=3; -update noar tt set b0='OFL2RLO5X6XJTUZ9C' where id=3; -update noar ti set b0='OFL2RLO5X6XJTUZ9C' where id=3; -update noar tt set v0='7TQCJY6CLMRJLW4Q6XYGDK9X0Q' where id=3; -update noar ti set v0='7TQCJY6CLMRJLW4Q6XYGDK9X0Q' where id=3; -update noar tt set b1='C0P5UA2NZF' where id=3; -update noar ti set b1='C0P5UA2NZF' where id=3; -update noar tt set v0='O7' where id=3; -update noar ti set v0='O7' where id=3; -update noar tt set b2='ZDA80T5NXP5DL' where id=3; -update noar ti set b2='ZDA80T5NXP5DL' where id=3; -update noar tt set v0='ISOJ0ZDAD0N' where id=4; -update noar ti set v0='ISOJ0ZDAD0N' where id=4; -update noar tt set b0='TEBY' where id=4; -update noar ti set b0='TEBY' where id=4; -update noar tt set v0='YFD4Q6MMORW8OIO' where id=4; -update noar ti set v0='YFD4Q6MMORW8OIO' where id=4; -update noar tt set b1='6J4X1L16Z9URL8Q' where id=4; -update noar ti set b1='6J4X1L16Z9URL8Q' where id=4; -update noar tt set v0='M0QLMM2KZ0E3GFYIIUBGLT08ULH5ST' where id=4; -update noar ti set v0='M0QLMM2KZ0E3GFYIIUBGLT08ULH5ST' where id=4; -update noar tt set b2='F9O1Y' where id=4; -update noar ti set b2='F9O1Y' where id=4; -update noar tt set v0='V2SKH99JJIOMS2AA8HGL363S3TUFPAZV' where id=5; -update noar ti set v0='V2SKH99JJIOMS2AA8HGL363S3TUFPAZV' where id=5; -update noar tt set b0='7LH3XHI6ZY8VIP2MCH82NLAM' where id=5; -update noar ti set b0='7LH3XHI6ZY8VIP2MCH82NLAM' where id=5; -update noar tt set v0='FLCM73' where id=5; -update noar ti set v0='FLCM73' where id=5; -update noar tt set b1='NWP0ZJUR' where id=5; -update noar ti set b1='NWP0ZJUR' where id=5; -update noar tt set v0='SRZQ' where id=5; -update noar ti set v0='SRZQ' where id=5; -update noar tt set b2='5SNWARRJQIVRO94W5XD0UJLXIKNSI' where id=5; -update noar ti set b2='5SNWARRJQIVRO94W5XD0UJLXIKNSI' where id=5; -update noar tt set v0='4' where id=6; -update noar ti set v0='4' where id=6; -update noar tt set b0='X1ZU9ICQTLCYV7M6A44HGWT7QDF' where id=6; -update noar ti set b0='X1ZU9ICQTLCYV7M6A44HGWT7QDF' where id=6; -update noar tt set v0='YPG9SAAVQCZC1H9' where id=6; -update noar ti set v0='YPG9SAAVQCZC1H9' where id=6; -update noar tt set b1='P74J5MEVF823AHSIU26VZ4PM0MNLF' where id=6; -update noar ti set b1='P74J5MEVF823AHSIU26VZ4PM0MNLF' where id=6; -update noar tt set v0='VIHBZCIBK' where id=6; -update noar ti set v0='VIHBZCIBK' where id=6; -update noar tt set b2='4V52L0RO3CP1FWN4GQTCBTM39' where id=6; -update noar ti set b2='4V52L0RO3CP1FWN4GQTCBTM39' where id=6; -update noar tt set v0='NKVU0JBVPG970BQF4T2' where id=7; -update noar ti set v0='NKVU0JBVPG970BQF4T2' where id=7; -update noar tt set b0='9E6RXCGCTIEB17TPA0K8T' where id=7; -update noar ti set b0='9E6RXCGCTIEB17TPA0K8T' where id=7; -update noar tt set v0='RPF8' where id=7; -update noar ti set v0='RPF8' where id=7; -update noar tt set b1='W8' where id=7; -update noar ti set b1='W8' where id=7; -update noar tt set v0='9GKGU' where id=7; -update noar ti set v0='9GKGU' where id=7; -update noar tt set b2='0RH8DCPBKR' where id=7; -update noar ti set b2='0RH8DCPBKR' where id=7; -update noar tt set v0='G5ES2EE' where id=8; -update noar ti set v0='G5ES2EE' where id=8; -update noar tt set b0='38K' where id=8; -update noar ti set b0='38K' where id=8; -update noar tt set v0='X8CI62NX4LXCC' where id=8; -update noar ti set v0='X8CI62NX4LXCC' where id=8; -update noar tt set b1='YD7E005F8L1967YIAKDZQT3M' where id=8; -update noar ti set b1='YD7E005F8L1967YIAKDZQT3M' where id=8; -update noar tt set v0='WWP52' where id=8; -update noar ti set v0='WWP52' where id=8; -update noar tt set b2='PN' where id=8; -update noar ti set b2='PN' where id=8; -update noar tt set v0='X1ER8HIJ7N9JQJ4RFHUWK6HFSVE6L' where id=9; -update noar ti set v0='X1ER8HIJ7N9JQJ4RFHUWK6HFSVE6L' where id=9; -update noar tt set b0='U15GP5VF4Q6MMNWW2V6OOTDNF3VD8' where id=9; -update noar ti set b0='U15GP5VF4Q6MMNWW2V6OOTDNF3VD8' where id=9; -update noar tt set v0='50OK' where id=9; -update noar ti set v0='50OK' where id=9; -update noar tt set b1='HT521Q6PPTD1VLA0BD8UXSK' where id=9; -update noar ti set b1='HT521Q6PPTD1VLA0BD8UXSK' where id=9; -update noar tt set v0='1EL3E4VT71JIARQ5IUZ5N' where id=9; -update noar ti set v0='1EL3E4VT71JIARQ5IUZ5N' where id=9; -update noar tt set b2='7QEBODAYSILCF9Z7UY2W9597' where id=9; -update noar ti set b2='7QEBODAYSILCF9Z7UY2W9597' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -v0 varchar(32) not null, -b0 mediumblob not null, -b1 mediumblob not null, -b2 blob not null -) engine=tokudb; -insert into tt values (1,'','','',''); -insert into tt values (2,'','','',''); -insert into tt values (3,'','','',''); -insert into tt values (4,'','','',''); -insert into tt values (5,'','','',''); -insert into tt values (6,'','','',''); -insert into tt values (7,'','','',''); -insert into tt values (8,'','','',''); -insert into tt values (9,'','','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='I8C5Q9X07R' where id=1; -update noar ti set v0='I8C5Q9X07R' where id=1; -update noar tt set b0='3WLOOV9QMRVO1' where id=1; -update noar ti set b0='3WLOOV9QMRVO1' where id=1; -update noar tt set v0='PS7TBY1KIQLYL5D0MGQG' where id=1; -update noar ti set v0='PS7TBY1KIQLYL5D0MGQG' where id=1; -update noar tt set b1='UO61B6VPRK7LRSOZBUJV4B6G0ZES1RO' where id=1; -update noar ti set b1='UO61B6VPRK7LRSOZBUJV4B6G0ZES1RO' where id=1; -update noar tt set v0='ALOMZYO1J' where id=1; -update noar ti set v0='ALOMZYO1J' where id=1; -update noar tt set b2='3LYGVNI53FYT6FI93TOW0' where id=1; -update noar ti set b2='3LYGVNI53FYT6FI93TOW0' where id=1; -update noar tt set v0='RPT90BSEX2S' where id=2; -update noar ti set v0='RPT90BSEX2S' where id=2; -update noar tt set b0='W5JWH4MCP4TQL5HPUJEKQIYG4599C' where id=2; -update noar ti set b0='W5JWH4MCP4TQL5HPUJEKQIYG4599C' where id=2; -update noar tt set v0='4QHZG' where id=2; -update noar ti set v0='4QHZG' where id=2; -update noar tt set b1='3J28T2UY0CHWJUWD15R6Q4TWMNG2TS' where id=2; -update noar ti set b1='3J28T2UY0CHWJUWD15R6Q4TWMNG2TS' where id=2; -update noar tt set v0='MM9PAK2RV6JMH3FKUEH2RHGM' where id=2; -update noar ti set v0='MM9PAK2RV6JMH3FKUEH2RHGM' where id=2; -update noar tt set b2='QCP697HDPJF732' where id=2; -update noar ti set b2='QCP697HDPJF732' where id=2; -update noar tt set v0='XRIM2465' where id=3; -update noar ti set v0='XRIM2465' where id=3; -update noar tt set b0='CVCCQDG4QMF0MFXBO854C4LTJLM1L3OM' where id=3; -update noar ti set b0='CVCCQDG4QMF0MFXBO854C4LTJLM1L3OM' where id=3; -update noar tt set v0='GS40Z5Z0IDJRJEK90' where id=3; -update noar ti set v0='GS40Z5Z0IDJRJEK90' where id=3; -update noar tt set b1='PYAPTT7' where id=3; -update noar ti set b1='PYAPTT7' where id=3; -update noar tt set v0='8RCU1PJR8Q8CX2K5TN36FWLW' where id=3; -update noar ti set v0='8RCU1PJR8Q8CX2K5TN36FWLW' where id=3; -update noar tt set b2='2H8E9NLEL' where id=3; -update noar ti set b2='2H8E9NLEL' where id=3; -update noar tt set v0='QENNTFGI1WOVMXF' where id=4; -update noar ti set v0='QENNTFGI1WOVMXF' where id=4; -update noar tt set b0='1O81ZC97BBH52ICI5HUKSS2V2ELD40MR' where id=4; -update noar ti set b0='1O81ZC97BBH52ICI5HUKSS2V2ELD40MR' where id=4; -update noar tt set v0='JD1L53AOTZ30FISIYPSLE0' where id=4; -update noar ti set v0='JD1L53AOTZ30FISIYPSLE0' where id=4; -update noar tt set b1='1L' where id=4; -update noar ti set b1='1L' where id=4; -update noar tt set v0='B8FS583VHNZ5' where id=4; -update noar ti set v0='B8FS583VHNZ5' where id=4; -update noar tt set b2='RZMBJX3' where id=4; -update noar ti set b2='RZMBJX3' where id=4; -update noar tt set v0='Y7VCTRKWIJT3315LN3F' where id=5; -update noar ti set v0='Y7VCTRKWIJT3315LN3F' where id=5; -update noar tt set b0='H5QOHKC' where id=5; -update noar ti set b0='H5QOHKC' where id=5; -update noar tt set v0='73KA5B3O' where id=5; -update noar ti set v0='73KA5B3O' where id=5; -update noar tt set b1='W9WD8452BZXR9NIQ1EJQQW14OK50AUS' where id=5; -update noar ti set b1='W9WD8452BZXR9NIQ1EJQQW14OK50AUS' where id=5; -update noar tt set v0='SHAQWOLRFH4RM7' where id=5; -update noar ti set v0='SHAQWOLRFH4RM7' where id=5; -update noar tt set b2='XH5Y4N0OR3C4QI51PS1R7H6QC4N' where id=5; -update noar ti set b2='XH5Y4N0OR3C4QI51PS1R7H6QC4N' where id=5; -update noar tt set v0='ZOO4BDTW3AH9I' where id=6; -update noar ti set v0='ZOO4BDTW3AH9I' where id=6; -update noar tt set b0='AAMHEGJQ0ZYVUVAOZ9TNACDRE8WVW' where id=6; -update noar ti set b0='AAMHEGJQ0ZYVUVAOZ9TNACDRE8WVW' where id=6; -update noar tt set v0='R52T84V24YCJJW2WLRV2O5MOJI' where id=6; -update noar ti set v0='R52T84V24YCJJW2WLRV2O5MOJI' where id=6; -update noar tt set b1='LH935YUZ8PII2H7H2LH90FSI4BB' where id=6; -update noar ti set b1='LH935YUZ8PII2H7H2LH90FSI4BB' where id=6; -update noar tt set v0='C4AT' where id=6; -update noar ti set v0='C4AT' where id=6; -update noar tt set b2='P406SCU8XOATXCN8O' where id=6; -update noar ti set b2='P406SCU8XOATXCN8O' where id=6; -update noar tt set v0='5F5B1S0CP5GE' where id=7; -update noar ti set v0='5F5B1S0CP5GE' where id=7; -update noar tt set b0='9QIWS5JX4WFZVJNVH93NTZZ5' where id=7; -update noar ti set b0='9QIWS5JX4WFZVJNVH93NTZZ5' where id=7; -update noar tt set v0='NV' where id=7; -update noar ti set v0='NV' where id=7; -update noar tt set b1='U9M0YTYLZ9NEUWZ47YQ6I' where id=7; -update noar ti set b1='U9M0YTYLZ9NEUWZ47YQ6I' where id=7; -update noar tt set v0='8CC54CZQQRGPJFTYJ21QC' where id=7; -update noar ti set v0='8CC54CZQQRGPJFTYJ21QC' where id=7; -update noar tt set b2='BYQ2CWL86510' where id=7; -update noar ti set b2='BYQ2CWL86510' where id=7; -update noar tt set v0='OTL25OSNLWOZ26V2N' where id=8; -update noar ti set v0='OTL25OSNLWOZ26V2N' where id=8; -update noar tt set b0='P6' where id=8; -update noar ti set b0='P6' where id=8; -update noar tt set v0='JLQYI8EMZVNTRTRKW54' where id=8; -update noar ti set v0='JLQYI8EMZVNTRTRKW54' where id=8; -update noar tt set b1='C9X00BVX7MS6O3WAJS92' where id=8; -update noar ti set b1='C9X00BVX7MS6O3WAJS92' where id=8; -update noar tt set v0='BSPJHY26S' where id=8; -update noar ti set v0='BSPJHY26S' where id=8; -update noar tt set b2='PN5BZJYC' where id=8; -update noar ti set b2='PN5BZJYC' where id=8; -update noar tt set v0='4NOHVZ7UAZ4N' where id=9; -update noar ti set v0='4NOHVZ7UAZ4N' where id=9; -update noar tt set b0='IYDJFZXSF39' where id=9; -update noar ti set b0='IYDJFZXSF39' where id=9; -update noar tt set v0='U3' where id=9; -update noar ti set v0='U3' where id=9; -update noar tt set b1='BG' where id=9; -update noar ti set b1='BG' where id=9; -update noar tt set v0='3D16YEHZOQB7GJ8' where id=9; -update noar ti set v0='3D16YEHZOQB7GJ8' where id=9; -update noar tt set b2='ZH' where id=9; -update noar ti set b2='ZH' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -v0 varchar(256) not null, -b0 mediumblob not null, -b1 mediumblob not null, -b2 blob not null -) engine=tokudb; -insert into tt values (1,'','','',''); -insert into tt values (2,'','','',''); -insert into tt values (3,'','','',''); -insert into tt values (4,'','','',''); -insert into tt values (5,'','','',''); -insert into tt values (6,'','','',''); -insert into tt values (7,'','','',''); -insert into tt values (8,'','','',''); -insert into tt values (9,'','','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='4RPAVR0FMHYMREJVAON4L' where id=1; -update noar ti set v0='4RPAVR0FMHYMREJVAON4L' where id=1; -update noar tt set b0='CA6BMZ8E840WMSGYYFE1DL' where id=1; -update noar ti set b0='CA6BMZ8E840WMSGYYFE1DL' where id=1; -update noar tt set v0='ZCJL1A' where id=1; -update noar ti set v0='ZCJL1A' where id=1; -update noar tt set b1='2DTOYOWARVXXYA3F32AHZWIFY69HM0K7' where id=1; -update noar ti set b1='2DTOYOWARVXXYA3F32AHZWIFY69HM0K7' where id=1; -update noar tt set v0='X0EYAAO99OEPK86VOQLQ' where id=1; -update noar ti set v0='X0EYAAO99OEPK86VOQLQ' where id=1; -update noar tt set b2='VTUFUV2H9GZZX8K2QC' where id=1; -update noar ti set b2='VTUFUV2H9GZZX8K2QC' where id=1; -update noar tt set v0='HLUVOQHA1U6T5U' where id=2; -update noar ti set v0='HLUVOQHA1U6T5U' where id=2; -update noar tt set b0='H16I610GH8PCWFR2SS' where id=2; -update noar ti set b0='H16I610GH8PCWFR2SS' where id=2; -update noar tt set v0='WIW02T3K3IQ6LUBFE19SYZ' where id=2; -update noar ti set v0='WIW02T3K3IQ6LUBFE19SYZ' where id=2; -update noar tt set b1='JZFZ8EHE2IB' where id=2; -update noar ti set b1='JZFZ8EHE2IB' where id=2; -update noar tt set v0='P45GOG51AQYX1NQ00L6Z' where id=2; -update noar ti set v0='P45GOG51AQYX1NQ00L6Z' where id=2; -update noar tt set b2='K15TS36JEE4U' where id=2; -update noar ti set b2='K15TS36JEE4U' where id=2; -update noar tt set v0='AGLV63JNR3L' where id=3; -update noar ti set v0='AGLV63JNR3L' where id=3; -update noar tt set b0='LIRFP5M34XV5TRKO8' where id=3; -update noar ti set b0='LIRFP5M34XV5TRKO8' where id=3; -update noar tt set v0='TKEZAKO805' where id=3; -update noar ti set v0='TKEZAKO805' where id=3; -update noar tt set b1='ZWZ3IOGQR8WKWU4N8CB8' where id=3; -update noar ti set b1='ZWZ3IOGQR8WKWU4N8CB8' where id=3; -update noar tt set v0='I' where id=3; -update noar ti set v0='I' where id=3; -update noar tt set b2='332F9WR7P12O8IFZGFCCSIG' where id=3; -update noar ti set b2='332F9WR7P12O8IFZGFCCSIG' where id=3; -update noar tt set v0='Z' where id=4; -update noar ti set v0='Z' where id=4; -update noar tt set b0='98T3KPG0G7J104QYZMOKZ32SG' where id=4; -update noar ti set b0='98T3KPG0G7J104QYZMOKZ32SG' where id=4; -update noar tt set v0='GM0UHIBYN6K01' where id=4; -update noar ti set v0='GM0UHIBYN6K01' where id=4; -update noar tt set b1='RIS' where id=4; -update noar ti set b1='RIS' where id=4; -update noar tt set v0='S1J3WN9KCZMSMPW5ZXJYU0' where id=4; -update noar ti set v0='S1J3WN9KCZMSMPW5ZXJYU0' where id=4; -update noar tt set b2='Z5TGVAJKCZ9YVI4MJMWHJJC6OSSCEYD' where id=4; -update noar ti set b2='Z5TGVAJKCZ9YVI4MJMWHJJC6OSSCEYD' where id=4; -update noar tt set v0='G' where id=5; -update noar ti set v0='G' where id=5; -update noar tt set b0='676HVKVA' where id=5; -update noar ti set b0='676HVKVA' where id=5; -update noar tt set v0='7U5VAOLKMZZ1746FHYTW3HMN49VH' where id=5; -update noar ti set v0='7U5VAOLKMZZ1746FHYTW3HMN49VH' where id=5; -update noar tt set b1='VSB4WD7QNZUYJAS' where id=5; -update noar ti set b1='VSB4WD7QNZUYJAS' where id=5; -update noar tt set v0='LZ8MOUWL' where id=5; -update noar ti set v0='LZ8MOUWL' where id=5; -update noar tt set b2='HLDOW0QZXNEDUNVK7FFO8W86' where id=5; -update noar ti set b2='HLDOW0QZXNEDUNVK7FFO8W86' where id=5; -update noar tt set v0='7IB26U9JDY' where id=6; -update noar ti set v0='7IB26U9JDY' where id=6; -update noar tt set b0='WCQV6FR88X29W37VO8GV56INCQM1' where id=6; -update noar ti set b0='WCQV6FR88X29W37VO8GV56INCQM1' where id=6; -update noar tt set v0='4AGNHTU' where id=6; -update noar ti set v0='4AGNHTU' where id=6; -update noar tt set b1='ZUH25CF0F2QHV3AX90QUMY3GMWRE1Y' where id=6; -update noar ti set b1='ZUH25CF0F2QHV3AX90QUMY3GMWRE1Y' where id=6; -update noar tt set v0='0QQGT2JM' where id=6; -update noar ti set v0='0QQGT2JM' where id=6; -update noar tt set b2='A5F3GWAS7K' where id=6; -update noar ti set b2='A5F3GWAS7K' where id=6; -update noar tt set v0='AAZZMTPO3Z2C987DD4XU5APZO6' where id=7; -update noar ti set v0='AAZZMTPO3Z2C987DD4XU5APZO6' where id=7; -update noar tt set b0='67W2Y3J2QBLZN7M0SGCQAUKTB9K5ERV' where id=7; -update noar ti set b0='67W2Y3J2QBLZN7M0SGCQAUKTB9K5ERV' where id=7; -update noar tt set v0='6BCMV8IBJSDV26562XEKW' where id=7; -update noar ti set v0='6BCMV8IBJSDV26562XEKW' where id=7; -update noar tt set b1='CQL6S08YU02R2V1I0K8WHR07' where id=7; -update noar ti set b1='CQL6S08YU02R2V1I0K8WHR07' where id=7; -update noar tt set v0='O9XY485TJ12VW5RZ54P0LA' where id=7; -update noar ti set v0='O9XY485TJ12VW5RZ54P0LA' where id=7; -update noar tt set b2='7PVMHNZZ0YFGIXGERGLNTGYGSZC1CAXM' where id=7; -update noar ti set b2='7PVMHNZZ0YFGIXGERGLNTGYGSZC1CAXM' where id=7; -update noar tt set v0='GLMK6ZVA9FX4J0D15OEAIFUJJUTG5V' where id=8; -update noar ti set v0='GLMK6ZVA9FX4J0D15OEAIFUJJUTG5V' where id=8; -update noar tt set b0='BEUI81HXKS' where id=8; -update noar ti set b0='BEUI81HXKS' where id=8; -update noar tt set v0='J6HMUJM0VIS1RZ4S096QUP85J' where id=8; -update noar ti set v0='J6HMUJM0VIS1RZ4S096QUP85J' where id=8; -update noar tt set b1='P' where id=8; -update noar ti set b1='P' where id=8; -update noar tt set v0='DPNH' where id=8; -update noar ti set v0='DPNH' where id=8; -update noar tt set b2='SI7TE1Z9RT2UHYFHGL05Q' where id=8; -update noar ti set b2='SI7TE1Z9RT2UHYFHGL05Q' where id=8; -update noar tt set v0='G3H9' where id=9; -update noar ti set v0='G3H9' where id=9; -update noar tt set b0='NDY1UHTP' where id=9; -update noar ti set b0='NDY1UHTP' where id=9; -update noar tt set v0='O50DUVWCA07' where id=9; -update noar ti set v0='O50DUVWCA07' where id=9; -update noar tt set b1='26A7JP4BNC0FNFPTUGTP0QQP9J904Q6I' where id=9; -update noar ti set b1='26A7JP4BNC0FNFPTUGTP0QQP9J904Q6I' where id=9; -update noar tt set v0='5QIF9DZU8HUQLX5P2MZM0' where id=9; -update noar ti set v0='5QIF9DZU8HUQLX5P2MZM0' where id=9; -update noar tt set b2='F1M0W35E5QTBQW' where id=9; -update noar ti set b2='F1M0W35E5QTBQW' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -v0 varchar(32) null, -b0 mediumblob null, -b1 mediumblob null, -b2 mediumblob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='90UKDML184EOEE49SHC9EW748F873NOV' where id=1; -update noar ti set v0='90UKDML184EOEE49SHC9EW748F873NOV' where id=1; -update noar tt set b0='4JB1XZR6GGHO53ZR281F' where id=1; -update noar ti set b0='4JB1XZR6GGHO53ZR281F' where id=1; -update noar tt set v0='JWRNW' where id=1; -update noar ti set v0='JWRNW' where id=1; -update noar tt set b1='HWRYPANQ52XSUH7BE5MHU33VFAIANPR' where id=1; -update noar ti set b1='HWRYPANQ52XSUH7BE5MHU33VFAIANPR' where id=1; -update noar tt set v0='N29EM7SG' where id=1; -update noar ti set v0='N29EM7SG' where id=1; -update noar tt set b2='R4GPI9Q4SJYE3SAVZPQHM4CH8KP' where id=1; -update noar ti set b2='R4GPI9Q4SJYE3SAVZPQHM4CH8KP' where id=1; -update noar tt set v0='SWK1Z76KDXSPH85NFFKYZG3JF7W' where id=2; -update noar ti set v0='SWK1Z76KDXSPH85NFFKYZG3JF7W' where id=2; -update noar tt set b0='0XDBSJQ37C1B1' where id=2; -update noar ti set b0='0XDBSJQ37C1B1' where id=2; -update noar tt set v0='VB3JYG02RJ8E6IDSKDQ3RMGSJ' where id=2; -update noar ti set v0='VB3JYG02RJ8E6IDSKDQ3RMGSJ' where id=2; -update noar tt set b1='D2AJJ28OJAYTNHO6TV4Q9J1VC96EJVM3' where id=2; -update noar ti set b1='D2AJJ28OJAYTNHO6TV4Q9J1VC96EJVM3' where id=2; -update noar tt set v0='MX1S97WB11QS6GCW0KY353CSO84LMI' where id=2; -update noar ti set v0='MX1S97WB11QS6GCW0KY353CSO84LMI' where id=2; -update noar tt set b2='8Q53SEJ02L' where id=2; -update noar ti set b2='8Q53SEJ02L' where id=2; -update noar tt set v0='8ET40P6O8VS62ZDKGGB0BCF42A5M1' where id=3; -update noar ti set v0='8ET40P6O8VS62ZDKGGB0BCF42A5M1' where id=3; -update noar tt set b0='GSIU' where id=3; -update noar ti set b0='GSIU' where id=3; -update noar tt set v0='Y1' where id=3; -update noar ti set v0='Y1' where id=3; -update noar tt set b1='T68PIO' where id=3; -update noar ti set b1='T68PIO' where id=3; -update noar tt set v0='K6NEEP5R4ATOBJJ9IH990' where id=3; -update noar ti set v0='K6NEEP5R4ATOBJJ9IH990' where id=3; -update noar tt set b2='K5W7IM6LWGZZ3M0' where id=3; -update noar ti set b2='K5W7IM6LWGZZ3M0' where id=3; -update noar tt set v0='P49ZS' where id=4; -update noar ti set v0='P49ZS' where id=4; -update noar tt set b0='KDP' where id=4; -update noar ti set b0='KDP' where id=4; -update noar tt set v0='I6JSNI6VKA106P2DLH3U06FLTIC' where id=4; -update noar ti set v0='I6JSNI6VKA106P2DLH3U06FLTIC' where id=4; -update noar tt set b1='5E8QJL8K5P7UT4' where id=4; -update noar ti set b1='5E8QJL8K5P7UT4' where id=4; -update noar tt set v0='FNH8200Q2VSF4SLJXHACPRYCE59D' where id=4; -update noar ti set v0='FNH8200Q2VSF4SLJXHACPRYCE59D' where id=4; -update noar tt set b2='1' where id=4; -update noar ti set b2='1' where id=4; -update noar tt set v0='L9IM6QM82EJY0QM8DF1HN9L' where id=5; -update noar ti set v0='L9IM6QM82EJY0QM8DF1HN9L' where id=5; -update noar tt set b0='YSOKXCCVIFPNE503BJ' where id=5; -update noar ti set b0='YSOKXCCVIFPNE503BJ' where id=5; -update noar tt set v0='77RQMOAWWQ0WCCKOCIDF3RWR1UB' where id=5; -update noar ti set v0='77RQMOAWWQ0WCCKOCIDF3RWR1UB' where id=5; -update noar tt set b1='OYEDEKH3FKZFIRXGPD9C3M1AIOJS' where id=5; -update noar ti set b1='OYEDEKH3FKZFIRXGPD9C3M1AIOJS' where id=5; -update noar tt set v0='XHAE0O9UVJ6RGJ84XB6GP7SU4F6' where id=5; -update noar ti set v0='XHAE0O9UVJ6RGJ84XB6GP7SU4F6' where id=5; -update noar tt set b2='0A78JP672GGOL1EPEZ2FL3' where id=5; -update noar ti set b2='0A78JP672GGOL1EPEZ2FL3' where id=5; -update noar tt set v0='KD' where id=6; -update noar ti set v0='KD' where id=6; -update noar tt set b0='1QQWGJWNDGDP56Y8KP1Q16BVF7OMYE7J' where id=6; -update noar ti set b0='1QQWGJWNDGDP56Y8KP1Q16BVF7OMYE7J' where id=6; -update noar tt set v0='IWRP' where id=6; -update noar ti set v0='IWRP' where id=6; -update noar tt set b1='OFF94CSWJROSA21895' where id=6; -update noar ti set b1='OFF94CSWJROSA21895' where id=6; -update noar tt set v0='VSS3UFBK9WK1FJHECF7BY' where id=6; -update noar ti set v0='VSS3UFBK9WK1FJHECF7BY' where id=6; -update noar tt set b2='K09ZEN03ZESE0SNQUDT8M78N5HPI2D' where id=6; -update noar ti set b2='K09ZEN03ZESE0SNQUDT8M78N5HPI2D' where id=6; -update noar tt set v0='383CEKGJLRUZ5LNDRPXFI0OHDFUIC' where id=7; -update noar ti set v0='383CEKGJLRUZ5LNDRPXFI0OHDFUIC' where id=7; -update noar tt set b0='2WBF9WB999SJ6QLA9YLC90BNWY2J' where id=7; -update noar ti set b0='2WBF9WB999SJ6QLA9YLC90BNWY2J' where id=7; -update noar tt set v0='MNE5FOBSGFRYEDHVDH' where id=7; -update noar ti set v0='MNE5FOBSGFRYEDHVDH' where id=7; -update noar tt set b1='NWRSX' where id=7; -update noar ti set b1='NWRSX' where id=7; -update noar tt set v0='PEEX1XTC97SKEC5TPVEF8NDD8XYHOQK' where id=7; -update noar ti set v0='PEEX1XTC97SKEC5TPVEF8NDD8XYHOQK' where id=7; -update noar tt set b2='QQPRH7ZR32V' where id=7; -update noar ti set b2='QQPRH7ZR32V' where id=7; -update noar tt set v0='4I9UBAA9QYT' where id=8; -update noar ti set v0='4I9UBAA9QYT' where id=8; -update noar tt set b0='5W7' where id=8; -update noar ti set b0='5W7' where id=8; -update noar tt set v0='B9OY5AQA4Q' where id=8; -update noar ti set v0='B9OY5AQA4Q' where id=8; -update noar tt set b1='LJAAXNXP115K7KM1VP' where id=8; -update noar ti set b1='LJAAXNXP115K7KM1VP' where id=8; -update noar tt set v0='DV4RPJBFVTIDKBC7OBF' where id=8; -update noar ti set v0='DV4RPJBFVTIDKBC7OBF' where id=8; -update noar tt set b2='31VBHA0WYNFMM0ND1U3HA' where id=8; -update noar ti set b2='31VBHA0WYNFMM0ND1U3HA' where id=8; -update noar tt set v0='Q4WQ7401MZ24PGXAC3OHA5M95U24K5' where id=9; -update noar ti set v0='Q4WQ7401MZ24PGXAC3OHA5M95U24K5' where id=9; -update noar tt set b0='CCYD2J6VRZ8IJZ8LVQMUF0740B6' where id=9; -update noar ti set b0='CCYD2J6VRZ8IJZ8LVQMUF0740B6' where id=9; -update noar tt set v0='UC9C4E0GIFIGUYP' where id=9; -update noar ti set v0='UC9C4E0GIFIGUYP' where id=9; -update noar tt set b1='A3' where id=9; -update noar ti set b1='A3' where id=9; -update noar tt set v0='10P3FW1DBL1FZNSA8YDZ2AP6D3O' where id=9; -update noar ti set v0='10P3FW1DBL1FZNSA8YDZ2AP6D3O' where id=9; -update noar tt set b2='D1W4JN1FXC42K1VHTKH0E9189' where id=9; -update noar ti set b2='D1W4JN1FXC42K1VHTKH0E9189' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -v0 varchar(256) null, -b0 mediumblob null, -b1 mediumblob null, -b2 mediumblob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='924DMLHUZX5E1Y19A7U7N00' where id=1; -update noar ti set v0='924DMLHUZX5E1Y19A7U7N00' where id=1; -update noar tt set b0='JP8DZFA' where id=1; -update noar ti set b0='JP8DZFA' where id=1; -update noar tt set v0='3FP51JAYA91UO2ZDE5O10FDOHYV34OL6' where id=1; -update noar ti set v0='3FP51JAYA91UO2ZDE5O10FDOHYV34OL6' where id=1; -update noar tt set b1='9VLRHCPDWO0C4K' where id=1; -update noar ti set b1='9VLRHCPDWO0C4K' where id=1; -update noar tt set v0='3MSN1U5RD7EP1DUM8C5SN1' where id=1; -update noar ti set v0='3MSN1U5RD7EP1DUM8C5SN1' where id=1; -update noar tt set b2='E9ZJ11IDFLF58P0EXXN1HLOL' where id=1; -update noar ti set b2='E9ZJ11IDFLF58P0EXXN1HLOL' where id=1; -update noar tt set v0='GBN11VA7O1ALPWFGF52YW' where id=2; -update noar ti set v0='GBN11VA7O1ALPWFGF52YW' where id=2; -update noar tt set b0='F1WQIPUA04D3SKKS21AG1X7Y' where id=2; -update noar ti set b0='F1WQIPUA04D3SKKS21AG1X7Y' where id=2; -update noar tt set v0='JLAQ0KAECQ44HIXDL' where id=2; -update noar ti set v0='JLAQ0KAECQ44HIXDL' where id=2; -update noar tt set b1='MOCI6K7R99AWNUUY41PR' where id=2; -update noar ti set b1='MOCI6K7R99AWNUUY41PR' where id=2; -update noar tt set v0='VAAT8W7W' where id=2; -update noar ti set v0='VAAT8W7W' where id=2; -update noar tt set b2='4JSEXQ6S' where id=2; -update noar ti set b2='4JSEXQ6S' where id=2; -update noar tt set v0='ZHBHDC' where id=3; -update noar ti set v0='ZHBHDC' where id=3; -update noar tt set b0='5TGZ8GVN8CL16U3X8' where id=3; -update noar ti set b0='5TGZ8GVN8CL16U3X8' where id=3; -update noar tt set v0='TU23OZIPA8UGBI' where id=3; -update noar ti set v0='TU23OZIPA8UGBI' where id=3; -update noar tt set b1='346JR8GAKLXM33M2K2JTXV8G4ATS' where id=3; -update noar ti set b1='346JR8GAKLXM33M2K2JTXV8G4ATS' where id=3; -update noar tt set v0='4C73OMK8H1DCENPECENX9A' where id=3; -update noar ti set v0='4C73OMK8H1DCENPECENX9A' where id=3; -update noar tt set b2='INLDUPR0LZDEP0RZTGQGN' where id=3; -update noar ti set b2='INLDUPR0LZDEP0RZTGQGN' where id=3; -update noar tt set v0='YT7A' where id=4; -update noar ti set v0='YT7A' where id=4; -update noar tt set b0='0FDN1G9PMPQZ3AR' where id=4; -update noar ti set b0='0FDN1G9PMPQZ3AR' where id=4; -update noar tt set v0='Y4NSKJ0ECCB1811XFX6V395Z6JOU7E' where id=4; -update noar ti set v0='Y4NSKJ0ECCB1811XFX6V395Z6JOU7E' where id=4; -update noar tt set b1='TS1KIWDC11NU' where id=4; -update noar ti set b1='TS1KIWDC11NU' where id=4; -update noar tt set v0='MSOK978ZD6RHCAA54PZK' where id=4; -update noar ti set v0='MSOK978ZD6RHCAA54PZK' where id=4; -update noar tt set b2='6ODSCOI97HKWV6XBS' where id=4; -update noar ti set b2='6ODSCOI97HKWV6XBS' where id=4; -update noar tt set v0='WOHVUAJC0J' where id=5; -update noar ti set v0='WOHVUAJC0J' where id=5; -update noar tt set b0='M8FU0I4A' where id=5; -update noar ti set b0='M8FU0I4A' where id=5; -update noar tt set v0='WTRCHAKQH0Q7' where id=5; -update noar ti set v0='WTRCHAKQH0Q7' where id=5; -update noar tt set b1='AJ2AOKL3WOO0O2MFUBQAKRRPFK0ZC' where id=5; -update noar ti set b1='AJ2AOKL3WOO0O2MFUBQAKRRPFK0ZC' where id=5; -update noar tt set v0='4B2HHDWGINKTA1DZ7SV' where id=5; -update noar ti set v0='4B2HHDWGINKTA1DZ7SV' where id=5; -update noar tt set b2='B6U2C5HAUQRG86JD' where id=5; -update noar ti set b2='B6U2C5HAUQRG86JD' where id=5; -update noar tt set v0='TSO5YX' where id=6; -update noar ti set v0='TSO5YX' where id=6; -update noar tt set b0='6Z' where id=6; -update noar ti set b0='6Z' where id=6; -update noar tt set v0='LJTSFVDF32CM9OQTRASPTZJ' where id=6; -update noar ti set v0='LJTSFVDF32CM9OQTRASPTZJ' where id=6; -update noar tt set b1='WOMS5DM' where id=6; -update noar ti set b1='WOMS5DM' where id=6; -update noar tt set v0='WC6TYFYM4' where id=6; -update noar ti set v0='WC6TYFYM4' where id=6; -update noar tt set b2='TVVGTIBZR' where id=6; -update noar ti set b2='TVVGTIBZR' where id=6; -update noar tt set v0='WGCS9V7O6OFGL2SAUTY7I' where id=7; -update noar ti set v0='WGCS9V7O6OFGL2SAUTY7I' where id=7; -update noar tt set b0='2' where id=7; -update noar ti set b0='2' where id=7; -update noar tt set v0='SA0N50XSZOX' where id=7; -update noar ti set v0='SA0N50XSZOX' where id=7; -update noar tt set b1='1361TR9CM8MLP9KE2UTD7EMT' where id=7; -update noar ti set b1='1361TR9CM8MLP9KE2UTD7EMT' where id=7; -update noar tt set v0='IN5N' where id=7; -update noar ti set v0='IN5N' where id=7; -update noar tt set b2='C65GYPRJZ7S4V8D53UF5ZJ' where id=7; -update noar ti set b2='C65GYPRJZ7S4V8D53UF5ZJ' where id=7; -update noar tt set v0='HBMGILPW70USWKO' where id=8; -update noar ti set v0='HBMGILPW70USWKO' where id=8; -update noar tt set b0='208RB6CBMXVB53KPANMN4EE' where id=8; -update noar ti set b0='208RB6CBMXVB53KPANMN4EE' where id=8; -update noar tt set v0='PM591F8MB5DCB9IBGFF0ONPZ7XEY0QW9' where id=8; -update noar ti set v0='PM591F8MB5DCB9IBGFF0ONPZ7XEY0QW9' where id=8; -update noar tt set b1='VOL66R8SNXATYYT6UZKS3RS' where id=8; -update noar ti set b1='VOL66R8SNXATYYT6UZKS3RS' where id=8; -update noar tt set v0='N6ZN051UYD077Y387' where id=8; -update noar ti set v0='N6ZN051UYD077Y387' where id=8; -update noar tt set b2='JPR6S6LDP719XB' where id=8; -update noar ti set b2='JPR6S6LDP719XB' where id=8; -update noar tt set v0='BWTN29E6C5CQGXS5LH7HFGRPXHLCRU' where id=9; -update noar ti set v0='BWTN29E6C5CQGXS5LH7HFGRPXHLCRU' where id=9; -update noar tt set b0='7G7ZVU4S9B3KWOZAONRU' where id=9; -update noar ti set b0='7G7ZVU4S9B3KWOZAONRU' where id=9; -update noar tt set v0='VO' where id=9; -update noar ti set v0='VO' where id=9; -update noar tt set b1='WIL0ZP5I27' where id=9; -update noar ti set b1='WIL0ZP5I27' where id=9; -update noar tt set v0='EZ4LVF8VSTKFNYNN8' where id=9; -update noar ti set v0='EZ4LVF8VSTKFNYNN8' where id=9; -update noar tt set b2='RKVSQY' where id=9; -update noar ti set b2='RKVSQY' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -v0 varchar(32) not null, -b0 mediumblob not null, -b1 mediumblob not null, -b2 mediumblob not null -) engine=tokudb; -insert into tt values (1,'','','',''); -insert into tt values (2,'','','',''); -insert into tt values (3,'','','',''); -insert into tt values (4,'','','',''); -insert into tt values (5,'','','',''); -insert into tt values (6,'','','',''); -insert into tt values (7,'','','',''); -insert into tt values (8,'','','',''); -insert into tt values (9,'','','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='RX' where id=1; -update noar ti set v0='RX' where id=1; -update noar tt set b0='2WCIMKBCKFK7PGH' where id=1; -update noar ti set b0='2WCIMKBCKFK7PGH' where id=1; -update noar tt set v0='706PK' where id=1; -update noar ti set v0='706PK' where id=1; -update noar tt set b1='6E' where id=1; -update noar ti set b1='6E' where id=1; -update noar tt set v0='1ORZ2X5I49' where id=1; -update noar ti set v0='1ORZ2X5I49' where id=1; -update noar tt set b2='T6VKX' where id=1; -update noar ti set b2='T6VKX' where id=1; -update noar tt set v0='03' where id=2; -update noar ti set v0='03' where id=2; -update noar tt set b0='I8E6KN6YTPV9XDN7VML4EXHTS4FROVW' where id=2; -update noar ti set b0='I8E6KN6YTPV9XDN7VML4EXHTS4FROVW' where id=2; -update noar tt set v0='UQ3SS' where id=2; -update noar ti set v0='UQ3SS' where id=2; -update noar tt set b1='5HNIC6VAZ3UUF4LUSHJ6GN1ERO9CBW2W' where id=2; -update noar ti set b1='5HNIC6VAZ3UUF4LUSHJ6GN1ERO9CBW2W' where id=2; -update noar tt set v0='78M7YTPAQAYTB64XCV00ZF' where id=2; -update noar ti set v0='78M7YTPAQAYTB64XCV00ZF' where id=2; -update noar tt set b2='16G' where id=2; -update noar ti set b2='16G' where id=2; -update noar tt set v0='0JIQT30HOJRN0TR8D7YWPA5WOR' where id=3; -update noar ti set v0='0JIQT30HOJRN0TR8D7YWPA5WOR' where id=3; -update noar tt set b0='WEL6DTZCHTYUL7KZHABDO' where id=3; -update noar ti set b0='WEL6DTZCHTYUL7KZHABDO' where id=3; -update noar tt set v0='MIKXSUXLEMVJ43RVGFB' where id=3; -update noar ti set v0='MIKXSUXLEMVJ43RVGFB' where id=3; -update noar tt set b1='0IHM2JLXMH2ZB' where id=3; -update noar ti set b1='0IHM2JLXMH2ZB' where id=3; -update noar tt set v0='UVOG2TS516' where id=3; -update noar ti set v0='UVOG2TS516' where id=3; -update noar tt set b2='IQSM8OM' where id=3; -update noar ti set b2='IQSM8OM' where id=3; -update noar tt set v0='YUSNVJJMY5BWXLZE86' where id=4; -update noar ti set v0='YUSNVJJMY5BWXLZE86' where id=4; -update noar tt set b0='X2' where id=4; -update noar ti set b0='X2' where id=4; -update noar tt set v0='7HB0QKR67NM' where id=4; -update noar ti set v0='7HB0QKR67NM' where id=4; -update noar tt set b1='XG' where id=4; -update noar ti set b1='XG' where id=4; -update noar tt set v0='Y0JQPUGEOPQI0EK7XNT1G3' where id=4; -update noar ti set v0='Y0JQPUGEOPQI0EK7XNT1G3' where id=4; -update noar tt set b2='HO749TUPMSMB7VLMDFER4' where id=4; -update noar ti set b2='HO749TUPMSMB7VLMDFER4' where id=4; -update noar tt set v0='7UUD0C' where id=5; -update noar ti set v0='7UUD0C' where id=5; -update noar tt set b0='JVY3ARWMV' where id=5; -update noar ti set b0='JVY3ARWMV' where id=5; -update noar tt set v0='7L' where id=5; -update noar ti set v0='7L' where id=5; -update noar tt set b1='QA29N6YZ8FH17Z2PNCBK6HR6' where id=5; -update noar ti set b1='QA29N6YZ8FH17Z2PNCBK6HR6' where id=5; -update noar tt set v0='DB46BRMV41GEHUHHBWF2DE0' where id=5; -update noar ti set v0='DB46BRMV41GEHUHHBWF2DE0' where id=5; -update noar tt set b2='JEUV1' where id=5; -update noar ti set b2='JEUV1' where id=5; -update noar tt set v0='R65BOTHCZ' where id=6; -update noar ti set v0='R65BOTHCZ' where id=6; -update noar tt set b0='CBJ' where id=6; -update noar ti set b0='CBJ' where id=6; -update noar tt set v0='77DZEK4T' where id=6; -update noar ti set v0='77DZEK4T' where id=6; -update noar tt set b1='LSRJKJGL36P9S57649G320Z' where id=6; -update noar ti set b1='LSRJKJGL36P9S57649G320Z' where id=6; -update noar tt set v0='9BMF4BKIOD7XVDUNI35PG2' where id=6; -update noar ti set v0='9BMF4BKIOD7XVDUNI35PG2' where id=6; -update noar tt set b2='JZBV6WWM2FVYN4E19J' where id=6; -update noar ti set b2='JZBV6WWM2FVYN4E19J' where id=6; -update noar tt set v0='F43ZUIDPHZ4AVK3' where id=7; -update noar ti set v0='F43ZUIDPHZ4AVK3' where id=7; -update noar tt set b0='N4FA8K89K3KJ4XISQ8V' where id=7; -update noar ti set b0='N4FA8K89K3KJ4XISQ8V' where id=7; -update noar tt set v0='Q1343X9C6MLSTV' where id=7; -update noar ti set v0='Q1343X9C6MLSTV' where id=7; -update noar tt set b1='UYRSGXXC' where id=7; -update noar ti set b1='UYRSGXXC' where id=7; -update noar tt set v0='5EI5LREEYV0QINGGU' where id=7; -update noar ti set v0='5EI5LREEYV0QINGGU' where id=7; -update noar tt set b2='2XHXN8BJ6LRT9IACSXQXGV70WLQXYQ' where id=7; -update noar ti set b2='2XHXN8BJ6LRT9IACSXQXGV70WLQXYQ' where id=7; -update noar tt set v0='FH1YCOSPJZF6R3RHK6Z5AI3' where id=8; -update noar ti set v0='FH1YCOSPJZF6R3RHK6Z5AI3' where id=8; -update noar tt set b0='2MCJUZ5V291MY' where id=8; -update noar ti set b0='2MCJUZ5V291MY' where id=8; -update noar tt set v0='9M3GJC0B' where id=8; -update noar ti set v0='9M3GJC0B' where id=8; -update noar tt set b1='BYHHYHHUNAEQUJM6W' where id=8; -update noar ti set b1='BYHHYHHUNAEQUJM6W' where id=8; -update noar tt set v0='B5N' where id=8; -update noar ti set v0='B5N' where id=8; -update noar tt set b2='RKU2PO8ZTD3O0ZO3LRDZ5TVZ26QA7G' where id=8; -update noar ti set b2='RKU2PO8ZTD3O0ZO3LRDZ5TVZ26QA7G' where id=8; -update noar tt set v0='OGBGY3ZREMY193Q9F' where id=9; -update noar ti set v0='OGBGY3ZREMY193Q9F' where id=9; -update noar tt set b0='CH0XSWBC2P' where id=9; -update noar ti set b0='CH0XSWBC2P' where id=9; -update noar tt set v0='KK3FY02GXPPSJE15SFKWL4UR' where id=9; -update noar ti set v0='KK3FY02GXPPSJE15SFKWL4UR' where id=9; -update noar tt set b1='AXCLAER11W651LFG' where id=9; -update noar ti set b1='AXCLAER11W651LFG' where id=9; -update noar tt set v0='JE3BLVVQNPLHWMM' where id=9; -update noar ti set v0='JE3BLVVQNPLHWMM' where id=9; -update noar tt set b2='ITIF' where id=9; -update noar ti set b2='ITIF' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -v0 varchar(256) not null, -b0 mediumblob not null, -b1 mediumblob not null, -b2 mediumblob not null -) engine=tokudb; -insert into tt values (1,'','','',''); -insert into tt values (2,'','','',''); -insert into tt values (3,'','','',''); -insert into tt values (4,'','','',''); -insert into tt values (5,'','','',''); -insert into tt values (6,'','','',''); -insert into tt values (7,'','','',''); -insert into tt values (8,'','','',''); -insert into tt values (9,'','','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='7' where id=1; -update noar ti set v0='7' where id=1; -update noar tt set b0='XB69E018X678RTWFNPBOH8W6Z' where id=1; -update noar ti set b0='XB69E018X678RTWFNPBOH8W6Z' where id=1; -update noar tt set v0='KKEDB67B7JJ1NIJCXCYV5EVQEVE' where id=1; -update noar ti set v0='KKEDB67B7JJ1NIJCXCYV5EVQEVE' where id=1; -update noar tt set b1='VLDXMXBKYLHWY' where id=1; -update noar ti set b1='VLDXMXBKYLHWY' where id=1; -update noar tt set v0='H7H7P0LLQ6BK5SXAS2FRSEIR77T1RLZ' where id=1; -update noar ti set v0='H7H7P0LLQ6BK5SXAS2FRSEIR77T1RLZ' where id=1; -update noar tt set b2='RXYF95Q' where id=1; -update noar ti set b2='RXYF95Q' where id=1; -update noar tt set v0='05' where id=2; -update noar ti set v0='05' where id=2; -update noar tt set b0='ZB1DFZM' where id=2; -update noar ti set b0='ZB1DFZM' where id=2; -update noar tt set v0='HKG3PDFVE5' where id=2; -update noar ti set v0='HKG3PDFVE5' where id=2; -update noar tt set b1='A7SMDWGJM7BXX99' where id=2; -update noar ti set b1='A7SMDWGJM7BXX99' where id=2; -update noar tt set v0='09KYTXMNP3B9JT' where id=2; -update noar ti set v0='09KYTXMNP3B9JT' where id=2; -update noar tt set b2='6I36X22EZW0A9B' where id=2; -update noar ti set b2='6I36X22EZW0A9B' where id=2; -update noar tt set v0='LS6AL05UQLTVSIHGW9U69GCB3A' where id=3; -update noar ti set v0='LS6AL05UQLTVSIHGW9U69GCB3A' where id=3; -update noar tt set b0='SUPSJAV22BA9ZSBDS8Q5KTZ0QR' where id=3; -update noar ti set b0='SUPSJAV22BA9ZSBDS8Q5KTZ0QR' where id=3; -update noar tt set v0='PSDFUNRWD3DE7T973DE' where id=3; -update noar ti set v0='PSDFUNRWD3DE7T973DE' where id=3; -update noar tt set b1='W7FL5IIMK1Z' where id=3; -update noar ti set b1='W7FL5IIMK1Z' where id=3; -update noar tt set v0='7HVRYZKHWX9S0L54UGF5AMS8DTMB' where id=3; -update noar ti set v0='7HVRYZKHWX9S0L54UGF5AMS8DTMB' where id=3; -update noar tt set b2='76WUV4E03OP8IC7XANZDRT1' where id=3; -update noar ti set b2='76WUV4E03OP8IC7XANZDRT1' where id=3; -update noar tt set v0='SSNGY' where id=4; -update noar ti set v0='SSNGY' where id=4; -update noar tt set b0='8O8GHEQCYIFTG02G17DPCNHYJ5ZYTWL' where id=4; -update noar ti set b0='8O8GHEQCYIFTG02G17DPCNHYJ5ZYTWL' where id=4; -update noar tt set v0='IVRBC79VODTM5ESR5' where id=4; -update noar ti set v0='IVRBC79VODTM5ESR5' where id=4; -update noar tt set b1='A5' where id=4; -update noar ti set b1='A5' where id=4; -update noar tt set v0='NZLWCKXZPYQBLG2315A9TCWPEK17' where id=4; -update noar ti set v0='NZLWCKXZPYQBLG2315A9TCWPEK17' where id=4; -update noar tt set b2='HGWVIJPSN0GFXZ' where id=4; -update noar ti set b2='HGWVIJPSN0GFXZ' where id=4; -update noar tt set v0='N27FQ1OHGWUYQSO2P36VHTG1N' where id=5; -update noar ti set v0='N27FQ1OHGWUYQSO2P36VHTG1N' where id=5; -update noar tt set b0='6EX94' where id=5; -update noar ti set b0='6EX94' where id=5; -update noar tt set v0='5QA780MPCBH12AG76Q6DCL' where id=5; -update noar ti set v0='5QA780MPCBH12AG76Q6DCL' where id=5; -update noar tt set b1='2XRCU69NFWZF7XDFNR' where id=5; -update noar ti set b1='2XRCU69NFWZF7XDFNR' where id=5; -update noar tt set v0='LRVEXWM4468MWAS8' where id=5; -update noar ti set v0='LRVEXWM4468MWAS8' where id=5; -update noar tt set b2='55M1LI6OOO0ZSD6OG0AYH4' where id=5; -update noar ti set b2='55M1LI6OOO0ZSD6OG0AYH4' where id=5; -update noar tt set v0='K9' where id=6; -update noar ti set v0='K9' where id=6; -update noar tt set b0='TS1VF5B9QKAP31QTG' where id=6; -update noar ti set b0='TS1VF5B9QKAP31QTG' where id=6; -update noar tt set v0='6FP81YSFF0BBMZGX8J0TDBJNIHS60XG' where id=6; -update noar ti set v0='6FP81YSFF0BBMZGX8J0TDBJNIHS60XG' where id=6; -update noar tt set b1='CMQ5JZKPNE8G1UZU30JQZWEW' where id=6; -update noar ti set b1='CMQ5JZKPNE8G1UZU30JQZWEW' where id=6; -update noar tt set v0='CYCBT' where id=6; -update noar ti set v0='CYCBT' where id=6; -update noar tt set b2='7NSLPYVX1TQNRH0WX4ACGSXATH7GKFAS' where id=6; -update noar ti set b2='7NSLPYVX1TQNRH0WX4ACGSXATH7GKFAS' where id=6; -update noar tt set v0='CBZF6X7INO4ZHUM2G1' where id=7; -update noar ti set v0='CBZF6X7INO4ZHUM2G1' where id=7; -update noar tt set b0='ZUE226DQC65JWJD9FIHRW40DAP2R' where id=7; -update noar ti set b0='ZUE226DQC65JWJD9FIHRW40DAP2R' where id=7; -update noar tt set v0='W18N5FE2S4OHWQ7X' where id=7; -update noar ti set v0='W18N5FE2S4OHWQ7X' where id=7; -update noar tt set b1='J45XTK0VD03QD23KTB9CFUX8QTOH' where id=7; -update noar ti set b1='J45XTK0VD03QD23KTB9CFUX8QTOH' where id=7; -update noar tt set v0='0CU' where id=7; -update noar ti set v0='0CU' where id=7; -update noar tt set b2='57OPJB9725UTU7H' where id=7; -update noar ti set b2='57OPJB9725UTU7H' where id=7; -update noar tt set v0='I9H685OG5WIGKTI3733' where id=8; -update noar ti set v0='I9H685OG5WIGKTI3733' where id=8; -update noar tt set b0='N0QLZ27FYU' where id=8; -update noar ti set b0='N0QLZ27FYU' where id=8; -update noar tt set v0='WIJRXFY' where id=8; -update noar ti set v0='WIJRXFY' where id=8; -update noar tt set b1='HLX2BV5FZ5IM047NC' where id=8; -update noar ti set b1='HLX2BV5FZ5IM047NC' where id=8; -update noar tt set v0='5' where id=8; -update noar ti set v0='5' where id=8; -update noar tt set b2='7RTVAR3LTZ2JOHFFQVK1Z' where id=8; -update noar ti set b2='7RTVAR3LTZ2JOHFFQVK1Z' where id=8; -update noar tt set v0='4XZ3ISOBVA9IEZI9ND' where id=9; -update noar ti set v0='4XZ3ISOBVA9IEZI9ND' where id=9; -update noar tt set b0='RZHK868VDX9XSQUN0X5IYKCHJR208PH' where id=9; -update noar ti set b0='RZHK868VDX9XSQUN0X5IYKCHJR208PH' where id=9; -update noar tt set v0='OF' where id=9; -update noar ti set v0='OF' where id=9; -update noar tt set b1='ZQEIMTX7MNTG' where id=9; -update noar ti set b1='ZQEIMTX7MNTG' where id=9; -update noar tt set v0='OL1ST5QPQ743W2EJMI4YR' where id=9; -update noar ti set v0='OL1ST5QPQ743W2EJMI4YR' where id=9; -update noar tt set b2='86J6JEVBKRD2VOC2REPQ4DAJ5' where id=9; -update noar ti set b2='86J6JEVBKRD2VOC2REPQ4DAJ5' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -v0 varchar(32) null, -b0 mediumblob null, -b1 mediumblob null, -b2 longblob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='VG' where id=1; -update noar ti set v0='VG' where id=1; -update noar tt set b0='FJN3XA968HN9GHXM2APSKL' where id=1; -update noar ti set b0='FJN3XA968HN9GHXM2APSKL' where id=1; -update noar tt set v0='YDIZSA59WFXQC1OOSIWBSOEK3F1H1W' where id=1; -update noar ti set v0='YDIZSA59WFXQC1OOSIWBSOEK3F1H1W' where id=1; -update noar tt set b1='H1G3' where id=1; -update noar ti set b1='H1G3' where id=1; -update noar tt set v0='NBD14WRQR0XZP2SG7WNG5Q0Q209YTAHY' where id=1; -update noar ti set v0='NBD14WRQR0XZP2SG7WNG5Q0Q209YTAHY' where id=1; -update noar tt set b2='QJOFOW1SGBID86VK7296EWSZGG9J7X' where id=1; -update noar ti set b2='QJOFOW1SGBID86VK7296EWSZGG9J7X' where id=1; -update noar tt set v0='YCV4YB8X8MIYIYDSAPD' where id=2; -update noar ti set v0='YCV4YB8X8MIYIYDSAPD' where id=2; -update noar tt set b0='YE8DN4ZG5OO01GEMYI5CLXSTV' where id=2; -update noar ti set b0='YE8DN4ZG5OO01GEMYI5CLXSTV' where id=2; -update noar tt set v0='F5WDA5H09RI' where id=2; -update noar ti set v0='F5WDA5H09RI' where id=2; -update noar tt set b1='DVLYDGB9UAVRDQ160SF6' where id=2; -update noar ti set b1='DVLYDGB9UAVRDQ160SF6' where id=2; -update noar tt set v0='PZ1LPO8WDF04JS2' where id=2; -update noar ti set v0='PZ1LPO8WDF04JS2' where id=2; -update noar tt set b2='L9HGD8ZI4WKVC7T2' where id=2; -update noar ti set b2='L9HGD8ZI4WKVC7T2' where id=2; -update noar tt set v0='Y6E0C0SOYHI' where id=3; -update noar ti set v0='Y6E0C0SOYHI' where id=3; -update noar tt set b0='PNCSIUC' where id=3; -update noar ti set b0='PNCSIUC' where id=3; -update noar tt set v0='5QKUG4AENZJWRD' where id=3; -update noar ti set v0='5QKUG4AENZJWRD' where id=3; -update noar tt set b1='OSHU5P5' where id=3; -update noar ti set b1='OSHU5P5' where id=3; -update noar tt set v0='962Q7' where id=3; -update noar ti set v0='962Q7' where id=3; -update noar tt set b2='L1IT8QRRQT0BWQSQIHUH9Z8KM4U' where id=3; -update noar ti set b2='L1IT8QRRQT0BWQSQIHUH9Z8KM4U' where id=3; -update noar tt set v0='XK5GGNXZPPZ6KKPPRRM2YDNICKWZ3ZJ' where id=4; -update noar ti set v0='XK5GGNXZPPZ6KKPPRRM2YDNICKWZ3ZJ' where id=4; -update noar tt set b0='GURSCLP' where id=4; -update noar ti set b0='GURSCLP' where id=4; -update noar tt set v0='V2FN6E1TUKV9341PNOEEI' where id=4; -update noar ti set v0='V2FN6E1TUKV9341PNOEEI' where id=4; -update noar tt set b1='H5KLD5TAR3248MKYBEQ8OXNSBOPE' where id=4; -update noar ti set b1='H5KLD5TAR3248MKYBEQ8OXNSBOPE' where id=4; -update noar tt set v0='GL5QUK8KUS427DRNM0UIMSCF63M' where id=4; -update noar ti set v0='GL5QUK8KUS427DRNM0UIMSCF63M' where id=4; -update noar tt set b2='WVV2D762GU1TKFJD' where id=4; -update noar ti set b2='WVV2D762GU1TKFJD' where id=4; -update noar tt set v0='KN45QZJC4V72WP0XIC5PO8XFH6F' where id=5; -update noar ti set v0='KN45QZJC4V72WP0XIC5PO8XFH6F' where id=5; -update noar tt set b0='B327PUI3MYCEI8XP96' where id=5; -update noar ti set b0='B327PUI3MYCEI8XP96' where id=5; -update noar tt set v0='DA7DXNGKX7' where id=5; -update noar ti set v0='DA7DXNGKX7' where id=5; -update noar tt set b1='KB1G9K7XE09SF6LGY5I47' where id=5; -update noar ti set b1='KB1G9K7XE09SF6LGY5I47' where id=5; -update noar tt set v0='E570M6JXEA4JBZJFPHFT' where id=5; -update noar ti set v0='E570M6JXEA4JBZJFPHFT' where id=5; -update noar tt set b2='W3L' where id=5; -update noar ti set b2='W3L' where id=5; -update noar tt set v0='DSR1XNMKT0AZ' where id=6; -update noar ti set v0='DSR1XNMKT0AZ' where id=6; -update noar tt set b0='18X' where id=6; -update noar ti set b0='18X' where id=6; -update noar tt set v0='6RGPJ2DOCSP5AJWZR2FLHIZVGNW7' where id=6; -update noar ti set v0='6RGPJ2DOCSP5AJWZR2FLHIZVGNW7' where id=6; -update noar tt set b1='M6YYVTWBYDTQBG7CI0B5L9V7025WVLC' where id=6; -update noar ti set b1='M6YYVTWBYDTQBG7CI0B5L9V7025WVLC' where id=6; -update noar tt set v0='6W0Y' where id=6; -update noar ti set v0='6W0Y' where id=6; -update noar tt set b2='KIMUPFZ' where id=6; -update noar ti set b2='KIMUPFZ' where id=6; -update noar tt set v0='AH' where id=7; -update noar ti set v0='AH' where id=7; -update noar tt set b0='LC1C52G7BB7MO7PT44KJGZIKTU5K4LC' where id=7; -update noar ti set b0='LC1C52G7BB7MO7PT44KJGZIKTU5K4LC' where id=7; -update noar tt set v0='48NXU97IQYAGCJYQ3B' where id=7; -update noar ti set v0='48NXU97IQYAGCJYQ3B' where id=7; -update noar tt set b1='6U9M2184W42V515NLBDAOSKTWKK6XM' where id=7; -update noar ti set b1='6U9M2184W42V515NLBDAOSKTWKK6XM' where id=7; -update noar tt set v0='5ZR6VB9CEAWA4ZSD4J' where id=7; -update noar ti set v0='5ZR6VB9CEAWA4ZSD4J' where id=7; -update noar tt set b2='90MNRLNR4UU1F5RXKP6VWLIKB' where id=7; -update noar ti set b2='90MNRLNR4UU1F5RXKP6VWLIKB' where id=7; -update noar tt set v0='ARRFXWW4LY05R2U5P5' where id=8; -update noar ti set v0='ARRFXWW4LY05R2U5P5' where id=8; -update noar tt set b0='OEVDKE117AD88ZTXFAZ' where id=8; -update noar ti set b0='OEVDKE117AD88ZTXFAZ' where id=8; -update noar tt set v0='S0NR1IPLMU5Z07H0R21BRAU4I982IQB8' where id=8; -update noar ti set v0='S0NR1IPLMU5Z07H0R21BRAU4I982IQB8' where id=8; -update noar tt set b1='NOI76XV' where id=8; -update noar ti set b1='NOI76XV' where id=8; -update noar tt set v0='WXUDSLXIHL42WFJXTBZ0DD1Y' where id=8; -update noar ti set v0='WXUDSLXIHL42WFJXTBZ0DD1Y' where id=8; -update noar tt set b2='7PYL9NZFGE9OYKORR' where id=8; -update noar ti set b2='7PYL9NZFGE9OYKORR' where id=8; -update noar tt set v0='I7' where id=9; -update noar ti set v0='I7' where id=9; -update noar tt set b0='PF' where id=9; -update noar ti set b0='PF' where id=9; -update noar tt set v0='HYMII189T4C575LFE1M7BF8YNDI8' where id=9; -update noar ti set v0='HYMII189T4C575LFE1M7BF8YNDI8' where id=9; -update noar tt set b1='XUXJH2NAYAUW4N57Q60Y8ZNSUXFHLM6' where id=9; -update noar ti set b1='XUXJH2NAYAUW4N57Q60Y8ZNSUXFHLM6' where id=9; -update noar tt set v0='2T2RWCL0Y4' where id=9; -update noar ti set v0='2T2RWCL0Y4' where id=9; -update noar tt set b2='1OGXMOK8SAJ87DUVY2AUHSQ' where id=9; -update noar ti set b2='1OGXMOK8SAJ87DUVY2AUHSQ' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -v0 varchar(256) null, -b0 mediumblob null, -b1 mediumblob null, -b2 longblob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='IW6Y0QH0HNFJKJM3' where id=1; -update noar ti set v0='IW6Y0QH0HNFJKJM3' where id=1; -update noar tt set b0='73OJM' where id=1; -update noar ti set b0='73OJM' where id=1; -update noar tt set v0='SJI5ZFVKS' where id=1; -update noar ti set v0='SJI5ZFVKS' where id=1; -update noar tt set b1='P6OAIR0BIQZB0JWRFE1DYZVX6S' where id=1; -update noar ti set b1='P6OAIR0BIQZB0JWRFE1DYZVX6S' where id=1; -update noar tt set v0='B9GXKK4BPJYDYWV2XWYU8XAKA25L' where id=1; -update noar ti set v0='B9GXKK4BPJYDYWV2XWYU8XAKA25L' where id=1; -update noar tt set b2='V7UN' where id=1; -update noar ti set b2='V7UN' where id=1; -update noar tt set v0='D6CQ2AYNS0P3E9335X1KCIQT5W' where id=2; -update noar ti set v0='D6CQ2AYNS0P3E9335X1KCIQT5W' where id=2; -update noar tt set b0='FUHPUJ8IP10UF1MZPDY9ELRZ3' where id=2; -update noar ti set b0='FUHPUJ8IP10UF1MZPDY9ELRZ3' where id=2; -update noar tt set v0='8WM21ZZLR1Y7Q' where id=2; -update noar ti set v0='8WM21ZZLR1Y7Q' where id=2; -update noar tt set b1='K5TAXYWANDG4M68P87O2RJMV04XH70' where id=2; -update noar ti set b1='K5TAXYWANDG4M68P87O2RJMV04XH70' where id=2; -update noar tt set v0='7OA0XU52P9HRE8PYRFKC6YW3CJDRP' where id=2; -update noar ti set v0='7OA0XU52P9HRE8PYRFKC6YW3CJDRP' where id=2; -update noar tt set b2='QI01UKL4J6EU0W7TL3B5Z6NFGQJT6V0' where id=2; -update noar ti set b2='QI01UKL4J6EU0W7TL3B5Z6NFGQJT6V0' where id=2; -update noar tt set v0='LK1XQODE31ALGYF3WBABAW6' where id=3; -update noar ti set v0='LK1XQODE31ALGYF3WBABAW6' where id=3; -update noar tt set b0='312HEGO0J4GC00YOCF' where id=3; -update noar ti set b0='312HEGO0J4GC00YOCF' where id=3; -update noar tt set v0='7PC' where id=3; -update noar ti set v0='7PC' where id=3; -update noar tt set b1='KF57DS0HMKIFTONTVMP0LUYVNOLF' where id=3; -update noar ti set b1='KF57DS0HMKIFTONTVMP0LUYVNOLF' where id=3; -update noar tt set v0='AKV6P2UY' where id=3; -update noar ti set v0='AKV6P2UY' where id=3; -update noar tt set b2='A9UFBJRKOH479FPRKTS3U4JNX' where id=3; -update noar ti set b2='A9UFBJRKOH479FPRKTS3U4JNX' where id=3; -update noar tt set v0='1OHUNAICUT8XP4O66UC' where id=4; -update noar ti set v0='1OHUNAICUT8XP4O66UC' where id=4; -update noar tt set b0='TZ9NLOPICFE' where id=4; -update noar ti set b0='TZ9NLOPICFE' where id=4; -update noar tt set v0='3VCJE3Q2BSI8ZUAVVL27APDAXBJ' where id=4; -update noar ti set v0='3VCJE3Q2BSI8ZUAVVL27APDAXBJ' where id=4; -update noar tt set b1='O9HU0YGH' where id=4; -update noar ti set b1='O9HU0YGH' where id=4; -update noar tt set v0='8J' where id=4; -update noar ti set v0='8J' where id=4; -update noar tt set b2='3OEEX9SCL3XSV2IMCV8WA804DTWNZXH' where id=4; -update noar ti set b2='3OEEX9SCL3XSV2IMCV8WA804DTWNZXH' where id=4; -update noar tt set v0='QYA938NA' where id=5; -update noar ti set v0='QYA938NA' where id=5; -update noar tt set b0='30XT95LYU4V06OTXDP4VNM' where id=5; -update noar ti set b0='30XT95LYU4V06OTXDP4VNM' where id=5; -update noar tt set v0='8S9K5D2LHGAVDR9LYVH' where id=5; -update noar ti set v0='8S9K5D2LHGAVDR9LYVH' where id=5; -update noar tt set b1='4QKM31OZ2K00XUAHX4G3VOW' where id=5; -update noar ti set b1='4QKM31OZ2K00XUAHX4G3VOW' where id=5; -update noar tt set v0='5C' where id=5; -update noar ti set v0='5C' where id=5; -update noar tt set b2='E5DNMQW0DNEV3XZG881N6' where id=5; -update noar ti set b2='E5DNMQW0DNEV3XZG881N6' where id=5; -update noar tt set v0='JKTGTP' where id=6; -update noar ti set v0='JKTGTP' where id=6; -update noar tt set b0='8YWA1' where id=6; -update noar ti set b0='8YWA1' where id=6; -update noar tt set v0='KE1WTCQWP1SRBSARCBP5HCBL6M' where id=6; -update noar ti set v0='KE1WTCQWP1SRBSARCBP5HCBL6M' where id=6; -update noar tt set b1='ZK5C01FTEOGRYX33PG5IQ9UF0F7PN2' where id=6; -update noar ti set b1='ZK5C01FTEOGRYX33PG5IQ9UF0F7PN2' where id=6; -update noar tt set v0='E5ZPX8R24XY78TPHAU3YQT26' where id=6; -update noar ti set v0='E5ZPX8R24XY78TPHAU3YQT26' where id=6; -update noar tt set b2='GE' where id=6; -update noar ti set b2='GE' where id=6; -update noar tt set v0='0XOJYDX8PEHRJYS57XM6B34T3IJPN' where id=7; -update noar ti set v0='0XOJYDX8PEHRJYS57XM6B34T3IJPN' where id=7; -update noar tt set b0='PJ6CMI7C' where id=7; -update noar ti set b0='PJ6CMI7C' where id=7; -update noar tt set v0='BW1FVWMHL4G5' where id=7; -update noar ti set v0='BW1FVWMHL4G5' where id=7; -update noar tt set b1='AM9PTG21' where id=7; -update noar ti set b1='AM9PTG21' where id=7; -update noar tt set v0='OJXW7YO' where id=7; -update noar ti set v0='OJXW7YO' where id=7; -update noar tt set b2='IYBAI4Z2A' where id=7; -update noar ti set b2='IYBAI4Z2A' where id=7; -update noar tt set v0='ADSI8OELHE0ZZEA3Z' where id=8; -update noar ti set v0='ADSI8OELHE0ZZEA3Z' where id=8; -update noar tt set b0='F9DRCG5NCCTY1NAYHKV6W' where id=8; -update noar ti set b0='F9DRCG5NCCTY1NAYHKV6W' where id=8; -update noar tt set v0='90DG6AA' where id=8; -update noar ti set v0='90DG6AA' where id=8; -update noar tt set b1='S4' where id=8; -update noar ti set b1='S4' where id=8; -update noar tt set v0='KRKT17T019AUOG6API6OI0G8' where id=8; -update noar ti set v0='KRKT17T019AUOG6API6OI0G8' where id=8; -update noar tt set b2='SKLLY80VXK' where id=8; -update noar ti set b2='SKLLY80VXK' where id=8; -update noar tt set v0='P9QLBX' where id=9; -update noar ti set v0='P9QLBX' where id=9; -update noar tt set b0='1R3CPMX0OWEWT' where id=9; -update noar ti set b0='1R3CPMX0OWEWT' where id=9; -update noar tt set v0='IF0RM8UN9F6W09SC6B' where id=9; -update noar ti set v0='IF0RM8UN9F6W09SC6B' where id=9; -update noar tt set b1='ZKF5F092H183FKWWS9TP' where id=9; -update noar ti set b1='ZKF5F092H183FKWWS9TP' where id=9; -update noar tt set v0='MZR4BSRH7WV8DQ0' where id=9; -update noar ti set v0='MZR4BSRH7WV8DQ0' where id=9; -update noar tt set b2='FEDLU4D2MJ' where id=9; -update noar ti set b2='FEDLU4D2MJ' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -v0 varchar(32) not null, -b0 mediumblob not null, -b1 mediumblob not null, -b2 longblob not null -) engine=tokudb; -insert into tt values (1,'','','',''); -insert into tt values (2,'','','',''); -insert into tt values (3,'','','',''); -insert into tt values (4,'','','',''); -insert into tt values (5,'','','',''); -insert into tt values (6,'','','',''); -insert into tt values (7,'','','',''); -insert into tt values (8,'','','',''); -insert into tt values (9,'','','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='L3786MH907' where id=1; -update noar ti set v0='L3786MH907' where id=1; -update noar tt set b0='ELM3TRETS5A3WB51' where id=1; -update noar ti set b0='ELM3TRETS5A3WB51' where id=1; -update noar tt set v0='FLL1KAJZCYTD8OXO4V36H' where id=1; -update noar ti set v0='FLL1KAJZCYTD8OXO4V36H' where id=1; -update noar tt set b1='ITRUL57EP0F1YKXG2' where id=1; -update noar ti set b1='ITRUL57EP0F1YKXG2' where id=1; -update noar tt set v0='JTKPMPBR892ATZPJDO4OMWFT5W73' where id=1; -update noar ti set v0='JTKPMPBR892ATZPJDO4OMWFT5W73' where id=1; -update noar tt set b2='ZMJB82G8NDDHADDKU0LXQ2G8LJ5FDLYD' where id=1; -update noar ti set b2='ZMJB82G8NDDHADDKU0LXQ2G8LJ5FDLYD' where id=1; -update noar tt set v0='O' where id=2; -update noar ti set v0='O' where id=2; -update noar tt set b0='HCC6S' where id=2; -update noar ti set b0='HCC6S' where id=2; -update noar tt set v0='68GFRE9UBAUQRD916IKNDTZJMSSWO' where id=2; -update noar ti set v0='68GFRE9UBAUQRD916IKNDTZJMSSWO' where id=2; -update noar tt set b1='JHOL81FW3UIBEP97I78BZJ8WCAPI2P' where id=2; -update noar ti set b1='JHOL81FW3UIBEP97I78BZJ8WCAPI2P' where id=2; -update noar tt set v0='1JOA0R7LQJWD16TA' where id=2; -update noar ti set v0='1JOA0R7LQJWD16TA' where id=2; -update noar tt set b2='L' where id=2; -update noar ti set b2='L' where id=2; -update noar tt set v0='CEO0C0ONVN7Y4R2H07C4WKOZ' where id=3; -update noar ti set v0='CEO0C0ONVN7Y4R2H07C4WKOZ' where id=3; -update noar tt set b0='L6ZFC55BTWBSSDI2ZJ7LPJ1NO' where id=3; -update noar ti set b0='L6ZFC55BTWBSSDI2ZJ7LPJ1NO' where id=3; -update noar tt set v0='384WA1Z' where id=3; -update noar ti set v0='384WA1Z' where id=3; -update noar tt set b1='D9DOWXS4GXUX' where id=3; -update noar ti set b1='D9DOWXS4GXUX' where id=3; -update noar tt set v0='FGDTBLBH01EFII9OHGY' where id=3; -update noar ti set v0='FGDTBLBH01EFII9OHGY' where id=3; -update noar tt set b2='YZKYP33HYHXCOD' where id=3; -update noar ti set b2='YZKYP33HYHXCOD' where id=3; -update noar tt set v0='CU25C0' where id=4; -update noar ti set v0='CU25C0' where id=4; -update noar tt set b0='S7W3' where id=4; -update noar ti set b0='S7W3' where id=4; -update noar tt set v0='D' where id=4; -update noar ti set v0='D' where id=4; -update noar tt set b1='TYXENYDW6AVV7D7J' where id=4; -update noar ti set b1='TYXENYDW6AVV7D7J' where id=4; -update noar tt set v0='1HXHMOE25536SM7ML5H90795M3R' where id=4; -update noar ti set v0='1HXHMOE25536SM7ML5H90795M3R' where id=4; -update noar tt set b2='CLC0UPD' where id=4; -update noar ti set b2='CLC0UPD' where id=4; -update noar tt set v0='3X3I49A' where id=5; -update noar ti set v0='3X3I49A' where id=5; -update noar tt set b0='182KDM1W7YFBMFX9OMQW5PVS44IJP' where id=5; -update noar ti set b0='182KDM1W7YFBMFX9OMQW5PVS44IJP' where id=5; -update noar tt set v0='ZRIFAY71HPNDJGEFCQ2R4B9K' where id=5; -update noar ti set v0='ZRIFAY71HPNDJGEFCQ2R4B9K' where id=5; -update noar tt set b1='CJ' where id=5; -update noar ti set b1='CJ' where id=5; -update noar tt set v0='6GXY89738LQVIPB' where id=5; -update noar ti set v0='6GXY89738LQVIPB' where id=5; -update noar tt set b2='YT8TARP0SO3I9PRJS5OM4T7' where id=5; -update noar ti set b2='YT8TARP0SO3I9PRJS5OM4T7' where id=5; -update noar tt set v0='GEVUT9EVTCUHZI5BFJGWA' where id=6; -update noar ti set v0='GEVUT9EVTCUHZI5BFJGWA' where id=6; -update noar tt set b0='ZQ8S0KDGFKNT0ZNOJF' where id=6; -update noar ti set b0='ZQ8S0KDGFKNT0ZNOJF' where id=6; -update noar tt set v0='4P2ZDD9HXE1AECQB58G9HCW1KPKDMR' where id=6; -update noar ti set v0='4P2ZDD9HXE1AECQB58G9HCW1KPKDMR' where id=6; -update noar tt set b1='WBCZFSOJRG' where id=6; -update noar ti set b1='WBCZFSOJRG' where id=6; -update noar tt set v0='2ZZ' where id=6; -update noar ti set v0='2ZZ' where id=6; -update noar tt set b2='XSWQTGNK0SWMOOIBYQA1BJ' where id=6; -update noar ti set b2='XSWQTGNK0SWMOOIBYQA1BJ' where id=6; -update noar tt set v0='LRBQWRQHDY' where id=7; -update noar ti set v0='LRBQWRQHDY' where id=7; -update noar tt set b0='EBK6PH6RTVLGLTXFEMI' where id=7; -update noar ti set b0='EBK6PH6RTVLGLTXFEMI' where id=7; -update noar tt set v0='XPP5MOW6BHOK6' where id=7; -update noar ti set v0='XPP5MOW6BHOK6' where id=7; -update noar tt set b1='ZERGFQPI8QLUZ4QT3OI' where id=7; -update noar ti set b1='ZERGFQPI8QLUZ4QT3OI' where id=7; -update noar tt set v0='HHTTJCFXF9LRKK427LR15CHNFIGG4ST9' where id=7; -update noar ti set v0='HHTTJCFXF9LRKK427LR15CHNFIGG4ST9' where id=7; -update noar tt set b2='BX7I' where id=7; -update noar ti set b2='BX7I' where id=7; -update noar tt set v0='3KD' where id=8; -update noar ti set v0='3KD' where id=8; -update noar tt set b0='NE' where id=8; -update noar ti set b0='NE' where id=8; -update noar tt set v0='V2XUXEHY0RDT' where id=8; -update noar ti set v0='V2XUXEHY0RDT' where id=8; -update noar tt set b1='45AU94G24WIBAOZ094' where id=8; -update noar ti set b1='45AU94G24WIBAOZ094' where id=8; -update noar tt set v0='7S2NUS' where id=8; -update noar ti set v0='7S2NUS' where id=8; -update noar tt set b2='L0PUWZ6D7MQYI8C' where id=8; -update noar ti set b2='L0PUWZ6D7MQYI8C' where id=8; -update noar tt set v0='JKBZIFRJVD' where id=9; -update noar ti set v0='JKBZIFRJVD' where id=9; -update noar tt set b0='XCO3MNFHZV9FY1B88T2TG9M24' where id=9; -update noar ti set b0='XCO3MNFHZV9FY1B88T2TG9M24' where id=9; -update noar tt set v0='CPP0L5Z4DUABBHQ3BLH062D8U09VL7VY' where id=9; -update noar ti set v0='CPP0L5Z4DUABBHQ3BLH062D8U09VL7VY' where id=9; -update noar tt set b1='ZFQOVAF0JCJCX258O3T9OJM5KLOG4' where id=9; -update noar ti set b1='ZFQOVAF0JCJCX258O3T9OJM5KLOG4' where id=9; -update noar tt set v0='A7YP9BPP8G4B7CSSBWLB5CSS3JW' where id=9; -update noar ti set v0='A7YP9BPP8G4B7CSSBWLB5CSS3JW' where id=9; -update noar tt set b2='2UI7LHK6M7DMW' where id=9; -update noar ti set b2='2UI7LHK6M7DMW' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -v0 varchar(256) not null, -b0 mediumblob not null, -b1 mediumblob not null, -b2 longblob not null -) engine=tokudb; -insert into tt values (1,'','','',''); -insert into tt values (2,'','','',''); -insert into tt values (3,'','','',''); -insert into tt values (4,'','','',''); -insert into tt values (5,'','','',''); -insert into tt values (6,'','','',''); -insert into tt values (7,'','','',''); -insert into tt values (8,'','','',''); -insert into tt values (9,'','','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='7UI8H45MAL' where id=1; -update noar ti set v0='7UI8H45MAL' where id=1; -update noar tt set b0='G4PAQOVFVMEL4ML0YPJACR' where id=1; -update noar ti set b0='G4PAQOVFVMEL4ML0YPJACR' where id=1; -update noar tt set v0='QZMRKBIXXHBUSTIMAB4R' where id=1; -update noar ti set v0='QZMRKBIXXHBUSTIMAB4R' where id=1; -update noar tt set b1='2Q3YFFK9IO9PUM3OZW7UPQFTFAO' where id=1; -update noar ti set b1='2Q3YFFK9IO9PUM3OZW7UPQFTFAO' where id=1; -update noar tt set v0='O3WKCFM97Q2KUR3KW' where id=1; -update noar ti set v0='O3WKCFM97Q2KUR3KW' where id=1; -update noar tt set b2='NJEQ588SH2' where id=1; -update noar ti set b2='NJEQ588SH2' where id=1; -update noar tt set v0='U8' where id=2; -update noar ti set v0='U8' where id=2; -update noar tt set b0='P' where id=2; -update noar ti set b0='P' where id=2; -update noar tt set v0='0FV4X6UJUEC8M2O7K97MO5IWZAEHJ5RP' where id=2; -update noar ti set v0='0FV4X6UJUEC8M2O7K97MO5IWZAEHJ5RP' where id=2; -update noar tt set b1='EE3JI8AB0XMPRHL2C379KINBNKK42' where id=2; -update noar ti set b1='EE3JI8AB0XMPRHL2C379KINBNKK42' where id=2; -update noar tt set v0='PE1I1GLH' where id=2; -update noar ti set v0='PE1I1GLH' where id=2; -update noar tt set b2='C7FLW6QEWSG3OZLR4AQCFH5' where id=2; -update noar ti set b2='C7FLW6QEWSG3OZLR4AQCFH5' where id=2; -update noar tt set v0='5JLCCYX5A8A9VMV5UOJSYC1CHZY91JJ' where id=3; -update noar ti set v0='5JLCCYX5A8A9VMV5UOJSYC1CHZY91JJ' where id=3; -update noar tt set b0='XA90N1LVOBLSB4QK8V8B3B0KYC' where id=3; -update noar ti set b0='XA90N1LVOBLSB4QK8V8B3B0KYC' where id=3; -update noar tt set v0='YN90JBF8ILLG0B9ZN8OUM9YK9C' where id=3; -update noar ti set v0='YN90JBF8ILLG0B9ZN8OUM9YK9C' where id=3; -update noar tt set b1='4CESH6YP0Q1XYPIRDIF5CT' where id=3; -update noar ti set b1='4CESH6YP0Q1XYPIRDIF5CT' where id=3; -update noar tt set v0='JU' where id=3; -update noar ti set v0='JU' where id=3; -update noar tt set b2='KD2Q2RA8P61VD0' where id=3; -update noar ti set b2='KD2Q2RA8P61VD0' where id=3; -update noar tt set v0='5I6TPP3QDZ073' where id=4; -update noar ti set v0='5I6TPP3QDZ073' where id=4; -update noar tt set b0='YHQV33RT' where id=4; -update noar ti set b0='YHQV33RT' where id=4; -update noar tt set v0='SBHQEHGXWKEP27SJ9YHEABY2Z7B4LD' where id=4; -update noar ti set v0='SBHQEHGXWKEP27SJ9YHEABY2Z7B4LD' where id=4; -update noar tt set b1='GXNDFSV704RLWWNMX' where id=4; -update noar ti set b1='GXNDFSV704RLWWNMX' where id=4; -update noar tt set v0='QRD3A8RF2WMVE6OGFSPVV3' where id=4; -update noar ti set v0='QRD3A8RF2WMVE6OGFSPVV3' where id=4; -update noar tt set b2='OU4BEL6503YEHP9ZXHGSFFM2R' where id=4; -update noar ti set b2='OU4BEL6503YEHP9ZXHGSFFM2R' where id=4; -update noar tt set v0='DGR4JEFCGTYBINPY6YER1FU4CNXH4R28' where id=5; -update noar ti set v0='DGR4JEFCGTYBINPY6YER1FU4CNXH4R28' where id=5; -update noar tt set b0='65STS' where id=5; -update noar ti set b0='65STS' where id=5; -update noar tt set v0='OI12XC' where id=5; -update noar ti set v0='OI12XC' where id=5; -update noar tt set b1='BJ0GGPQ1YR4RLM2WYH3MM' where id=5; -update noar ti set b1='BJ0GGPQ1YR4RLM2WYH3MM' where id=5; -update noar tt set v0='J15HK0J' where id=5; -update noar ti set v0='J15HK0J' where id=5; -update noar tt set b2='X444IUUYL20KVSFNF59KSJ7' where id=5; -update noar ti set b2='X444IUUYL20KVSFNF59KSJ7' where id=5; -update noar tt set v0='0FU57N2HAZ9PBBH95Y' where id=6; -update noar ti set v0='0FU57N2HAZ9PBBH95Y' where id=6; -update noar tt set b0='BSURJ' where id=6; -update noar ti set b0='BSURJ' where id=6; -update noar tt set v0='UXCOXLDA228F57LOXRJROIMPD0T' where id=6; -update noar ti set v0='UXCOXLDA228F57LOXRJROIMPD0T' where id=6; -update noar tt set b1='YAO7U2CE509TYQ6' where id=6; -update noar ti set b1='YAO7U2CE509TYQ6' where id=6; -update noar tt set v0='E20M43XH587DZP50RJ3RW9X8ZR' where id=6; -update noar ti set v0='E20M43XH587DZP50RJ3RW9X8ZR' where id=6; -update noar tt set b2='FVTWUXIDKTR' where id=6; -update noar ti set b2='FVTWUXIDKTR' where id=6; -update noar tt set v0='E8IGQ5MJNTOAL3K9W' where id=7; -update noar ti set v0='E8IGQ5MJNTOAL3K9W' where id=7; -update noar tt set b0='79OY0PO2IDUFV1A1ONIYZ' where id=7; -update noar ti set b0='79OY0PO2IDUFV1A1ONIYZ' where id=7; -update noar tt set v0='L56LU4N9HT6Y8ZSADTELH' where id=7; -update noar ti set v0='L56LU4N9HT6Y8ZSADTELH' where id=7; -update noar tt set b1='5GR3SWUP7FAGZ19' where id=7; -update noar ti set b1='5GR3SWUP7FAGZ19' where id=7; -update noar tt set v0='ZD6O7257J4YV9I2WXZJBI9UN5RR4MLDA' where id=7; -update noar ti set v0='ZD6O7257J4YV9I2WXZJBI9UN5RR4MLDA' where id=7; -update noar tt set b2='TL4D0' where id=7; -update noar ti set b2='TL4D0' where id=7; -update noar tt set v0='LM1XXEO9G4K3X' where id=8; -update noar ti set v0='LM1XXEO9G4K3X' where id=8; -update noar tt set b0='SOQCLCWYKOR816LKAXUF' where id=8; -update noar ti set b0='SOQCLCWYKOR816LKAXUF' where id=8; -update noar tt set v0='UQF34P681HP8U' where id=8; -update noar ti set v0='UQF34P681HP8U' where id=8; -update noar tt set b1='R85VS7GPW43Q5UA' where id=8; -update noar ti set b1='R85VS7GPW43Q5UA' where id=8; -update noar tt set v0='Y3KUWQSIKOB03N2ZP' where id=8; -update noar ti set v0='Y3KUWQSIKOB03N2ZP' where id=8; -update noar tt set b2='5EUYI' where id=8; -update noar ti set b2='5EUYI' where id=8; -update noar tt set v0='JSMVXK14H76UFBI6EYB' where id=9; -update noar ti set v0='JSMVXK14H76UFBI6EYB' where id=9; -update noar tt set b0='K4WMX2VEUG6ABQRHYPOB8JAB14CVTGTI' where id=9; -update noar ti set b0='K4WMX2VEUG6ABQRHYPOB8JAB14CVTGTI' where id=9; -update noar tt set v0='M12IP' where id=9; -update noar ti set v0='M12IP' where id=9; -update noar tt set b1='69KI7EBRU07OBB4' where id=9; -update noar ti set b1='69KI7EBRU07OBB4' where id=9; -update noar tt set v0='MSLVNY1P' where id=9; -update noar ti set v0='MSLVNY1P' where id=9; -update noar tt set b2='DF0G6147Q' where id=9; -update noar ti set b2='DF0G6147Q' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -v0 varchar(32) null, -b0 mediumblob null, -b1 longblob null, -b2 tinyblob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='JP5IX5RT' where id=1; -update noar ti set v0='JP5IX5RT' where id=1; -update noar tt set b0='GL2KM353S3JM' where id=1; -update noar ti set b0='GL2KM353S3JM' where id=1; -update noar tt set v0='LP6V6829A7DQBCN54FVDOTUU4FOT' where id=1; -update noar ti set v0='LP6V6829A7DQBCN54FVDOTUU4FOT' where id=1; -update noar tt set b1='2C9CTSB848Y28Q' where id=1; -update noar ti set b1='2C9CTSB848Y28Q' where id=1; -update noar tt set v0='MBWR' where id=1; -update noar ti set v0='MBWR' where id=1; -update noar tt set b2='2H55I6A96NKWRLOEWPJDD3D1DWQZ245A' where id=1; -update noar ti set b2='2H55I6A96NKWRLOEWPJDD3D1DWQZ245A' where id=1; -update noar tt set v0='LDLHJHS5CHSHJRK1RX6X6FO18RNH9' where id=2; -update noar ti set v0='LDLHJHS5CHSHJRK1RX6X6FO18RNH9' where id=2; -update noar tt set b0='FHQJ9GG3XU3' where id=2; -update noar ti set b0='FHQJ9GG3XU3' where id=2; -update noar tt set v0='VJH8RULNDDF8410M63CM' where id=2; -update noar ti set v0='VJH8RULNDDF8410M63CM' where id=2; -update noar tt set b1='J000R67' where id=2; -update noar ti set b1='J000R67' where id=2; -update noar tt set v0='1LDUF7QE0G3NWKPXEE7M1VETTFD2HQG3' where id=2; -update noar ti set v0='1LDUF7QE0G3NWKPXEE7M1VETTFD2HQG3' where id=2; -update noar tt set b2='QCQBC5V2' where id=2; -update noar ti set b2='QCQBC5V2' where id=2; -update noar tt set v0='Z4NKOQ93XNOO' where id=3; -update noar ti set v0='Z4NKOQ93XNOO' where id=3; -update noar tt set b0='XRO0KWQG4MKMIH7K18RJSPO5' where id=3; -update noar ti set b0='XRO0KWQG4MKMIH7K18RJSPO5' where id=3; -update noar tt set v0='88ASAHP5T69QZDZ7NUMI2S1BAC5' where id=3; -update noar ti set v0='88ASAHP5T69QZDZ7NUMI2S1BAC5' where id=3; -update noar tt set b1='EG0ANJ' where id=3; -update noar ti set b1='EG0ANJ' where id=3; -update noar tt set v0='1Q3DW' where id=3; -update noar ti set v0='1Q3DW' where id=3; -update noar tt set b2='BOEAQ55' where id=3; -update noar ti set b2='BOEAQ55' where id=3; -update noar tt set v0='6Z9D80JJP6PQ3YID3SMT6FN' where id=4; -update noar ti set v0='6Z9D80JJP6PQ3YID3SMT6FN' where id=4; -update noar tt set b0='T4KF02MKP9B9HG78WWSY' where id=4; -update noar ti set b0='T4KF02MKP9B9HG78WWSY' where id=4; -update noar tt set v0='QLETB3KLFX3YXUQ435YZEV08P' where id=4; -update noar ti set v0='QLETB3KLFX3YXUQ435YZEV08P' where id=4; -update noar tt set b1='FQVJ' where id=4; -update noar ti set b1='FQVJ' where id=4; -update noar tt set v0='V50EOPCIDXB173KR1Y4B04' where id=4; -update noar ti set v0='V50EOPCIDXB173KR1Y4B04' where id=4; -update noar tt set b2='UWK6GIHO' where id=4; -update noar ti set b2='UWK6GIHO' where id=4; -update noar tt set v0='8F2YGNC2VT09C205IQHZ' where id=5; -update noar ti set v0='8F2YGNC2VT09C205IQHZ' where id=5; -update noar tt set b0='14UU385CBB5J5WNHCKFW9T57' where id=5; -update noar ti set b0='14UU385CBB5J5WNHCKFW9T57' where id=5; -update noar tt set v0='5G2G4JFJ5' where id=5; -update noar ti set v0='5G2G4JFJ5' where id=5; -update noar tt set b1='WKKGXC1BSCKEFLFM798' where id=5; -update noar ti set b1='WKKGXC1BSCKEFLFM798' where id=5; -update noar tt set v0='A6U4YOJGG502FDQWKDW79UR6ACUO9' where id=5; -update noar ti set v0='A6U4YOJGG502FDQWKDW79UR6ACUO9' where id=5; -update noar tt set b2='0ME' where id=5; -update noar ti set b2='0ME' where id=5; -update noar tt set v0='G8VSPSLFMMP' where id=6; -update noar ti set v0='G8VSPSLFMMP' where id=6; -update noar tt set b0='K4VSH7AYZW2LZD5IOUWLA' where id=6; -update noar ti set b0='K4VSH7AYZW2LZD5IOUWLA' where id=6; -update noar tt set v0='I' where id=6; -update noar ti set v0='I' where id=6; -update noar tt set b1='4ET' where id=6; -update noar ti set b1='4ET' where id=6; -update noar tt set v0='D9X3P0F' where id=6; -update noar ti set v0='D9X3P0F' where id=6; -update noar tt set b2='2DONXTISK6Q9JMZQJEK' where id=6; -update noar ti set b2='2DONXTISK6Q9JMZQJEK' where id=6; -update noar tt set v0='WMOOA1T17C' where id=7; -update noar ti set v0='WMOOA1T17C' where id=7; -update noar tt set b0='RJ7VQM2XHRH5GGSZ14X' where id=7; -update noar ti set b0='RJ7VQM2XHRH5GGSZ14X' where id=7; -update noar tt set v0='LUP2EGMAQN7N6L10DWPW9U1F1C30LHTX' where id=7; -update noar ti set v0='LUP2EGMAQN7N6L10DWPW9U1F1C30LHTX' where id=7; -update noar tt set b1='BQ761IADLQ' where id=7; -update noar ti set b1='BQ761IADLQ' where id=7; -update noar tt set v0='77V5O02406SVD6WZNVD3BAU7Q5TKJWI' where id=7; -update noar ti set v0='77V5O02406SVD6WZNVD3BAU7Q5TKJWI' where id=7; -update noar tt set b2='FOZ98Q8MV24SMIBFJXKHPT6OBDG6M' where id=7; -update noar ti set b2='FOZ98Q8MV24SMIBFJXKHPT6OBDG6M' where id=7; -update noar tt set v0='51BD5QBO1UMR66KETIJUNZJ18B6' where id=8; -update noar ti set v0='51BD5QBO1UMR66KETIJUNZJ18B6' where id=8; -update noar tt set b0='98Q7U1ONG45AX64TDW' where id=8; -update noar ti set b0='98Q7U1ONG45AX64TDW' where id=8; -update noar tt set v0='S6MZ2BEI1DJ07KX0I99OXSVKP' where id=8; -update noar ti set v0='S6MZ2BEI1DJ07KX0I99OXSVKP' where id=8; -update noar tt set b1='VD7Q66H5J' where id=8; -update noar ti set b1='VD7Q66H5J' where id=8; -update noar tt set v0='IHA0PY656CXUZIKY89P2L' where id=8; -update noar ti set v0='IHA0PY656CXUZIKY89P2L' where id=8; -update noar tt set b2='J28Q2XKHVH8FV' where id=8; -update noar ti set b2='J28Q2XKHVH8FV' where id=8; -update noar tt set v0='LEYNEDV76' where id=9; -update noar ti set v0='LEYNEDV76' where id=9; -update noar tt set b0='XU7Z69QFAVTNWZZLFGZMQSANXL8YCO4K' where id=9; -update noar ti set b0='XU7Z69QFAVTNWZZLFGZMQSANXL8YCO4K' where id=9; -update noar tt set v0='A5B2X92O7HZZJDF6R1CM' where id=9; -update noar ti set v0='A5B2X92O7HZZJDF6R1CM' where id=9; -update noar tt set b1='0PLM3L77B0U' where id=9; -update noar ti set b1='0PLM3L77B0U' where id=9; -update noar tt set v0='0GH8Q1OWIAEXFMB' where id=9; -update noar ti set v0='0GH8Q1OWIAEXFMB' where id=9; -update noar tt set b2='HWGRL1' where id=9; -update noar ti set b2='HWGRL1' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -v0 varchar(256) null, -b0 mediumblob null, -b1 longblob null, -b2 tinyblob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='0TURS17FE5HOHL0910GJNK0BXRF43' where id=1; -update noar ti set v0='0TURS17FE5HOHL0910GJNK0BXRF43' where id=1; -update noar tt set b0='KQ3FO2WGG' where id=1; -update noar ti set b0='KQ3FO2WGG' where id=1; -update noar tt set v0='XAD0' where id=1; -update noar ti set v0='XAD0' where id=1; -update noar tt set b1='RKMCRDYXH4I' where id=1; -update noar ti set b1='RKMCRDYXH4I' where id=1; -update noar tt set v0='6FVVD15FDZOGYR' where id=1; -update noar ti set v0='6FVVD15FDZOGYR' where id=1; -update noar tt set b2='D6O5GODMWS2YH5' where id=1; -update noar ti set b2='D6O5GODMWS2YH5' where id=1; -update noar tt set v0='WEAI5QA340HL4ACQS9NU2OS4KZH3B' where id=2; -update noar ti set v0='WEAI5QA340HL4ACQS9NU2OS4KZH3B' where id=2; -update noar tt set b0='HNKI' where id=2; -update noar ti set b0='HNKI' where id=2; -update noar tt set v0='JYFVMPCCHQ2VQ4US25KHCFE67RVS' where id=2; -update noar ti set v0='JYFVMPCCHQ2VQ4US25KHCFE67RVS' where id=2; -update noar tt set b1='G3DH0L8WM5N7O6JS8DK6WD2' where id=2; -update noar ti set b1='G3DH0L8WM5N7O6JS8DK6WD2' where id=2; -update noar tt set v0='0PZ2OD2TL' where id=2; -update noar ti set v0='0PZ2OD2TL' where id=2; -update noar tt set b2='ZID7IEW694L2MLNJW7FIK' where id=2; -update noar ti set b2='ZID7IEW694L2MLNJW7FIK' where id=2; -update noar tt set v0='HEKPIJAUY05TLI8' where id=3; -update noar ti set v0='HEKPIJAUY05TLI8' where id=3; -update noar tt set b0='U2O8HDHI6XX2X' where id=3; -update noar ti set b0='U2O8HDHI6XX2X' where id=3; -update noar tt set v0='3S81VCBDLYO2LRBIQIV' where id=3; -update noar ti set v0='3S81VCBDLYO2LRBIQIV' where id=3; -update noar tt set b1='QF8PB' where id=3; -update noar ti set b1='QF8PB' where id=3; -update noar tt set v0='QYOPPHVBO2N4YMLI7GL3Y0S' where id=3; -update noar ti set v0='QYOPPHVBO2N4YMLI7GL3Y0S' where id=3; -update noar tt set b2='0WMAJ2ND2V6EPRUPHUMLYE9V84A1' where id=3; -update noar ti set b2='0WMAJ2ND2V6EPRUPHUMLYE9V84A1' where id=3; -update noar tt set v0='8FB98OQOE03L79WMB8NTOOFYXVVKXM' where id=4; -update noar ti set v0='8FB98OQOE03L79WMB8NTOOFYXVVKXM' where id=4; -update noar tt set b0='71BIBM6' where id=4; -update noar ti set b0='71BIBM6' where id=4; -update noar tt set v0='7VUXS6DXVCQZVN' where id=4; -update noar ti set v0='7VUXS6DXVCQZVN' where id=4; -update noar tt set b1='3S' where id=4; -update noar ti set b1='3S' where id=4; -update noar tt set v0='LEX9UT9ADQ30' where id=4; -update noar ti set v0='LEX9UT9ADQ30' where id=4; -update noar tt set b2='GPTAG3WZKCN2TE68G4CGRQK1' where id=4; -update noar ti set b2='GPTAG3WZKCN2TE68G4CGRQK1' where id=4; -update noar tt set v0='7AO2KDM9JGJXNN6QKXG6M0927CKZ' where id=5; -update noar ti set v0='7AO2KDM9JGJXNN6QKXG6M0927CKZ' where id=5; -update noar tt set b0='NKCL6M1M1JA1MSU9W' where id=5; -update noar ti set b0='NKCL6M1M1JA1MSU9W' where id=5; -update noar tt set v0='2MZ4Q2D2F62T8963DY' where id=5; -update noar ti set v0='2MZ4Q2D2F62T8963DY' where id=5; -update noar tt set b1='ERPYPX8Q1I0ZEPUV6BPOPRD' where id=5; -update noar ti set b1='ERPYPX8Q1I0ZEPUV6BPOPRD' where id=5; -update noar tt set v0='CL' where id=5; -update noar ti set v0='CL' where id=5; -update noar tt set b2='B3XQZTMGA4OFNQKQDX' where id=5; -update noar ti set b2='B3XQZTMGA4OFNQKQDX' where id=5; -update noar tt set v0='K6A' where id=6; -update noar ti set v0='K6A' where id=6; -update noar tt set b0='F8UYPZBG6SQNU7H' where id=6; -update noar ti set b0='F8UYPZBG6SQNU7H' where id=6; -update noar tt set v0='OFE5UOY7FNGWCFU' where id=6; -update noar ti set v0='OFE5UOY7FNGWCFU' where id=6; -update noar tt set b1='EEXRH7UA6HHUGL362M18955SAQG' where id=6; -update noar ti set b1='EEXRH7UA6HHUGL362M18955SAQG' where id=6; -update noar tt set v0='20KKMOSA95B0PWJ2LZJ3M1' where id=6; -update noar ti set v0='20KKMOSA95B0PWJ2LZJ3M1' where id=6; -update noar tt set b2='2' where id=6; -update noar ti set b2='2' where id=6; -update noar tt set v0='4HCH4C' where id=7; -update noar ti set v0='4HCH4C' where id=7; -update noar tt set b0='E9O2UHBK9T26' where id=7; -update noar ti set b0='E9O2UHBK9T26' where id=7; -update noar tt set v0='84UEIK0BXP88TXOWK7A6PXR06KK045' where id=7; -update noar ti set v0='84UEIK0BXP88TXOWK7A6PXR06KK045' where id=7; -update noar tt set b1='TS9XWJ' where id=7; -update noar ti set b1='TS9XWJ' where id=7; -update noar tt set v0='BQAO' where id=7; -update noar ti set v0='BQAO' where id=7; -update noar tt set b2='905814Z5HRXZTMH7' where id=7; -update noar ti set b2='905814Z5HRXZTMH7' where id=7; -update noar tt set v0='AIU5F' where id=8; -update noar ti set v0='AIU5F' where id=8; -update noar tt set b0='VDIV03TLS6XT4YHCNH' where id=8; -update noar ti set b0='VDIV03TLS6XT4YHCNH' where id=8; -update noar tt set v0='M7NBRZDJOYC6' where id=8; -update noar ti set v0='M7NBRZDJOYC6' where id=8; -update noar tt set b1='05WN5YTXG0MZCT1F0H1S' where id=8; -update noar ti set b1='05WN5YTXG0MZCT1F0H1S' where id=8; -update noar tt set v0='0W5R' where id=8; -update noar ti set v0='0W5R' where id=8; -update noar tt set b2='ZBQOHJDSBPMU8C' where id=8; -update noar ti set b2='ZBQOHJDSBPMU8C' where id=8; -update noar tt set v0='Q5XTRDH1VY8NWWWQQ0EN' where id=9; -update noar ti set v0='Q5XTRDH1VY8NWWWQQ0EN' where id=9; -update noar tt set b0='JTLU5TWH6EZSMDCAGT714S2VEYOG' where id=9; -update noar ti set b0='JTLU5TWH6EZSMDCAGT714S2VEYOG' where id=9; -update noar tt set v0='4DPR38ZC3RZL0PVYS8VI0' where id=9; -update noar ti set v0='4DPR38ZC3RZL0PVYS8VI0' where id=9; -update noar tt set b1='215W02YRZ2ROUSYHJIJA8L7P69X3QT' where id=9; -update noar ti set b1='215W02YRZ2ROUSYHJIJA8L7P69X3QT' where id=9; -update noar tt set v0='BRPX6FDQOG2ZOP' where id=9; -update noar ti set v0='BRPX6FDQOG2ZOP' where id=9; -update noar tt set b2='22QVEES0BNXQM2OSMR5W' where id=9; -update noar ti set b2='22QVEES0BNXQM2OSMR5W' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -v0 varchar(32) not null, -b0 mediumblob not null, -b1 longblob not null, -b2 tinyblob not null -) engine=tokudb; -insert into tt values (1,'','','',''); -insert into tt values (2,'','','',''); -insert into tt values (3,'','','',''); -insert into tt values (4,'','','',''); -insert into tt values (5,'','','',''); -insert into tt values (6,'','','',''); -insert into tt values (7,'','','',''); -insert into tt values (8,'','','',''); -insert into tt values (9,'','','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='ZYERXU6INJW20WFA62VN' where id=1; -update noar ti set v0='ZYERXU6INJW20WFA62VN' where id=1; -update noar tt set b0='RV7KGDD9S2M2IGK8F' where id=1; -update noar ti set b0='RV7KGDD9S2M2IGK8F' where id=1; -update noar tt set v0='CO4G2H8LMZQR7OKTU' where id=1; -update noar ti set v0='CO4G2H8LMZQR7OKTU' where id=1; -update noar tt set b1='MA5V8S' where id=1; -update noar ti set b1='MA5V8S' where id=1; -update noar tt set v0='BPSN98AFN8KNO102Q0JHZVKVY' where id=1; -update noar ti set v0='BPSN98AFN8KNO102Q0JHZVKVY' where id=1; -update noar tt set b2='V1IR2WXBATIESLZ4YXEB4' where id=1; -update noar ti set b2='V1IR2WXBATIESLZ4YXEB4' where id=1; -update noar tt set v0='67NYKR0HOJWDVK36XJZYYFWKLD' where id=2; -update noar ti set v0='67NYKR0HOJWDVK36XJZYYFWKLD' where id=2; -update noar tt set b0='8D3E10QXTG7ZOVEWKOUQ' where id=2; -update noar ti set b0='8D3E10QXTG7ZOVEWKOUQ' where id=2; -update noar tt set v0='GHRB86F0LVXW36P5K0UYKUW6WCC3EZ' where id=2; -update noar ti set v0='GHRB86F0LVXW36P5K0UYKUW6WCC3EZ' where id=2; -update noar tt set b1='BZ7EDAML309TQHYKJ9UN9RCB3KW' where id=2; -update noar ti set b1='BZ7EDAML309TQHYKJ9UN9RCB3KW' where id=2; -update noar tt set v0='SUV258PB59VYM1TI0X7LTLT' where id=2; -update noar ti set v0='SUV258PB59VYM1TI0X7LTLT' where id=2; -update noar tt set b2='FPIWS8J27ZALNI2WWTMJCZKG0ADYVHN' where id=2; -update noar ti set b2='FPIWS8J27ZALNI2WWTMJCZKG0ADYVHN' where id=2; -update noar tt set v0='RJJFJD' where id=3; -update noar ti set v0='RJJFJD' where id=3; -update noar tt set b0='9ZL18ZR9' where id=3; -update noar ti set b0='9ZL18ZR9' where id=3; -update noar tt set v0='A0NZTU7R9UBQ92YFVC6IT2WN' where id=3; -update noar ti set v0='A0NZTU7R9UBQ92YFVC6IT2WN' where id=3; -update noar tt set b1='G9T3T0LX8GF94O2BY944BL' where id=3; -update noar ti set b1='G9T3T0LX8GF94O2BY944BL' where id=3; -update noar tt set v0='HC5CUZ1GUF87O7QW79H' where id=3; -update noar ti set v0='HC5CUZ1GUF87O7QW79H' where id=3; -update noar tt set b2='SQT0PNNG8CMB4CAE' where id=3; -update noar ti set b2='SQT0PNNG8CMB4CAE' where id=3; -update noar tt set v0='KVZ799K6XJWUE3PJA9PNIBBY3DCPIJ' where id=4; -update noar ti set v0='KVZ799K6XJWUE3PJA9PNIBBY3DCPIJ' where id=4; -update noar tt set b0='5ML8O07L6A07MVAJJX7' where id=4; -update noar ti set b0='5ML8O07L6A07MVAJJX7' where id=4; -update noar tt set v0='8J5RI9X' where id=4; -update noar ti set v0='8J5RI9X' where id=4; -update noar tt set b1='X7P0JXIJUO2L5N' where id=4; -update noar ti set b1='X7P0JXIJUO2L5N' where id=4; -update noar tt set v0='TFMGYUI212MOEKKNY2S' where id=4; -update noar ti set v0='TFMGYUI212MOEKKNY2S' where id=4; -update noar tt set b2='BB5QN' where id=4; -update noar ti set b2='BB5QN' where id=4; -update noar tt set v0='JZ4COG8NAV1NGC4IY7BH7P92I3VOV75' where id=5; -update noar ti set v0='JZ4COG8NAV1NGC4IY7BH7P92I3VOV75' where id=5; -update noar tt set b0='34O3E87MHHEOOSTUOY1U49' where id=5; -update noar ti set b0='34O3E87MHHEOOSTUOY1U49' where id=5; -update noar tt set v0='9TVSNPTQ3ZA' where id=5; -update noar ti set v0='9TVSNPTQ3ZA' where id=5; -update noar tt set b1='502C8M555G9OSA5WEF3SG1YX' where id=5; -update noar ti set b1='502C8M555G9OSA5WEF3SG1YX' where id=5; -update noar tt set v0='V' where id=5; -update noar ti set v0='V' where id=5; -update noar tt set b2='G9IYEZ2SHXZ3' where id=5; -update noar ti set b2='G9IYEZ2SHXZ3' where id=5; -update noar tt set v0='S4YT2BOP' where id=6; -update noar ti set v0='S4YT2BOP' where id=6; -update noar tt set b0='MJHBD8OR3J' where id=6; -update noar ti set b0='MJHBD8OR3J' where id=6; -update noar tt set v0='TI79XH' where id=6; -update noar ti set v0='TI79XH' where id=6; -update noar tt set b1='72YWT90FD73TYJJ' where id=6; -update noar ti set b1='72YWT90FD73TYJJ' where id=6; -update noar tt set v0='EZ6FELBMYKF9UMI' where id=6; -update noar ti set v0='EZ6FELBMYKF9UMI' where id=6; -update noar tt set b2='7BB1KDGZF4U2NH9FKQI' where id=6; -update noar ti set b2='7BB1KDGZF4U2NH9FKQI' where id=6; -update noar tt set v0='1D0CKBOHZXTWL1L42R43BWOKFD6' where id=7; -update noar ti set v0='1D0CKBOHZXTWL1L42R43BWOKFD6' where id=7; -update noar tt set b0='NDLQ0AORDTB4COKB66QM5F' where id=7; -update noar ti set b0='NDLQ0AORDTB4COKB66QM5F' where id=7; -update noar tt set v0='DJT' where id=7; -update noar ti set v0='DJT' where id=7; -update noar tt set b1='469UGLLMYEXMF9RJBE43N1KVQL1' where id=7; -update noar ti set b1='469UGLLMYEXMF9RJBE43N1KVQL1' where id=7; -update noar tt set v0='MM5KATCWGLHUGOFTSFGB3R5DM087NXL' where id=7; -update noar ti set v0='MM5KATCWGLHUGOFTSFGB3R5DM087NXL' where id=7; -update noar tt set b2='C1AYYX4Y5O7VI' where id=7; -update noar ti set b2='C1AYYX4Y5O7VI' where id=7; -update noar tt set v0='PDB4OMSUJZ6HCUEYY89' where id=8; -update noar ti set v0='PDB4OMSUJZ6HCUEYY89' where id=8; -update noar tt set b0='RYL8V67U7YXTX41' where id=8; -update noar ti set b0='RYL8V67U7YXTX41' where id=8; -update noar tt set v0='RB13F' where id=8; -update noar ti set v0='RB13F' where id=8; -update noar tt set b1='P' where id=8; -update noar ti set b1='P' where id=8; -update noar tt set v0='TD3KOODUFA' where id=8; -update noar ti set v0='TD3KOODUFA' where id=8; -update noar tt set b2='95KAYL21DU1PPLHKA5GNAS' where id=8; -update noar ti set b2='95KAYL21DU1PPLHKA5GNAS' where id=8; -update noar tt set v0='BXQIYUMD2VI0IAPCFK7M' where id=9; -update noar ti set v0='BXQIYUMD2VI0IAPCFK7M' where id=9; -update noar tt set b0='U9LDRGGW50J2RJ' where id=9; -update noar ti set b0='U9LDRGGW50J2RJ' where id=9; -update noar tt set v0='DP8Q0' where id=9; -update noar ti set v0='DP8Q0' where id=9; -update noar tt set b1='WZYTKVY6HGEG' where id=9; -update noar ti set b1='WZYTKVY6HGEG' where id=9; -update noar tt set v0='YBOA86D' where id=9; -update noar ti set v0='YBOA86D' where id=9; -update noar tt set b2='8YJZ88W1KCCWZ' where id=9; -update noar ti set b2='8YJZ88W1KCCWZ' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -v0 varchar(256) not null, -b0 mediumblob not null, -b1 longblob not null, -b2 tinyblob not null -) engine=tokudb; -insert into tt values (1,'','','',''); -insert into tt values (2,'','','',''); -insert into tt values (3,'','','',''); -insert into tt values (4,'','','',''); -insert into tt values (5,'','','',''); -insert into tt values (6,'','','',''); -insert into tt values (7,'','','',''); -insert into tt values (8,'','','',''); -insert into tt values (9,'','','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='XPBFVE2J5K5VIWRK8Y4' where id=1; -update noar ti set v0='XPBFVE2J5K5VIWRK8Y4' where id=1; -update noar tt set b0='N884NQ45BFOGGPU76014' where id=1; -update noar ti set b0='N884NQ45BFOGGPU76014' where id=1; -update noar tt set v0='YFX62UX6WJJK3XS83C' where id=1; -update noar ti set v0='YFX62UX6WJJK3XS83C' where id=1; -update noar tt set b1='RLF1X650Q' where id=1; -update noar ti set b1='RLF1X650Q' where id=1; -update noar tt set v0='7G1JNG2H1400MS0KVFB1OPBE2WTT7P3H' where id=1; -update noar ti set v0='7G1JNG2H1400MS0KVFB1OPBE2WTT7P3H' where id=1; -update noar tt set b2='BKGVAG2CCQTF4TN0S1E94UTHTWV' where id=1; -update noar ti set b2='BKGVAG2CCQTF4TN0S1E94UTHTWV' where id=1; -update noar tt set v0='IP5KO3PJDNIZ4MGK' where id=2; -update noar ti set v0='IP5KO3PJDNIZ4MGK' where id=2; -update noar tt set b0='N' where id=2; -update noar ti set b0='N' where id=2; -update noar tt set v0='SB19QLB0CERD' where id=2; -update noar ti set v0='SB19QLB0CERD' where id=2; -update noar tt set b1='PTEY2LECD33SMPZYE' where id=2; -update noar ti set b1='PTEY2LECD33SMPZYE' where id=2; -update noar tt set v0='KMBNXEETQDH3EYN73OYNCVQWEQRU' where id=2; -update noar ti set v0='KMBNXEETQDH3EYN73OYNCVQWEQRU' where id=2; -update noar tt set b2='ECSVUJ0RNYFGX5FIYC844K62E96B' where id=2; -update noar ti set b2='ECSVUJ0RNYFGX5FIYC844K62E96B' where id=2; -update noar tt set v0='TXARXVDIOH3' where id=3; -update noar ti set v0='TXARXVDIOH3' where id=3; -update noar tt set b0='ZYH4XMDFTB8W3XW45' where id=3; -update noar ti set b0='ZYH4XMDFTB8W3XW45' where id=3; -update noar tt set v0='ZRJV5P42YJMS4UNYVXGTQAO194' where id=3; -update noar ti set v0='ZRJV5P42YJMS4UNYVXGTQAO194' where id=3; -update noar tt set b1='UBWNX4AQT8SMTCKR89LNYIL3NSLPUMS' where id=3; -update noar ti set b1='UBWNX4AQT8SMTCKR89LNYIL3NSLPUMS' where id=3; -update noar tt set v0='QELDRSGUXXDM0VDM77J0' where id=3; -update noar ti set v0='QELDRSGUXXDM0VDM77J0' where id=3; -update noar tt set b2='NZ7OB0C7A7A4F1327U407OGI4L' where id=3; -update noar ti set b2='NZ7OB0C7A7A4F1327U407OGI4L' where id=3; -update noar tt set v0='RU10G' where id=4; -update noar ti set v0='RU10G' where id=4; -update noar tt set b0='CYB5OC8O389' where id=4; -update noar ti set b0='CYB5OC8O389' where id=4; -update noar tt set v0='8AUT' where id=4; -update noar ti set v0='8AUT' where id=4; -update noar tt set b1='7F4' where id=4; -update noar ti set b1='7F4' where id=4; -update noar tt set v0='BK4GAEHWCSBHE0HNZVVUD6B1TPAW' where id=4; -update noar ti set v0='BK4GAEHWCSBHE0HNZVVUD6B1TPAW' where id=4; -update noar tt set b2='4EP9FBNG460A59WCZ2TN76U9JLHGMP' where id=4; -update noar ti set b2='4EP9FBNG460A59WCZ2TN76U9JLHGMP' where id=4; -update noar tt set v0='MRNGXR8U7553' where id=5; -update noar ti set v0='MRNGXR8U7553' where id=5; -update noar tt set b0='S3GVN2QW7DOFFODAL' where id=5; -update noar ti set b0='S3GVN2QW7DOFFODAL' where id=5; -update noar tt set v0='H4CIYCSQ4BE4H93' where id=5; -update noar ti set v0='H4CIYCSQ4BE4H93' where id=5; -update noar tt set b1='92H15VK63D54DSQYWT7GFHXD71' where id=5; -update noar ti set b1='92H15VK63D54DSQYWT7GFHXD71' where id=5; -update noar tt set v0='C8Z9S1P7VDFDXJYGHO5HP6P0Z8MNSDY' where id=5; -update noar ti set v0='C8Z9S1P7VDFDXJYGHO5HP6P0Z8MNSDY' where id=5; -update noar tt set b2='SBCXRAK3HR' where id=5; -update noar ti set b2='SBCXRAK3HR' where id=5; -update noar tt set v0='7D4PPC4DBY3PWHOCH' where id=6; -update noar ti set v0='7D4PPC4DBY3PWHOCH' where id=6; -update noar tt set b0='J4EWJZ9UC8' where id=6; -update noar ti set b0='J4EWJZ9UC8' where id=6; -update noar tt set v0='5YSDW8WQLLNMOR59D1A8UE8VMUX' where id=6; -update noar ti set v0='5YSDW8WQLLNMOR59D1A8UE8VMUX' where id=6; -update noar tt set b1='Q3XK2VMOJFTM69FQT9' where id=6; -update noar ti set b1='Q3XK2VMOJFTM69FQT9' where id=6; -update noar tt set v0='5HIR90R2QZZL' where id=6; -update noar ti set v0='5HIR90R2QZZL' where id=6; -update noar tt set b2='2B2QP7KBDQ' where id=6; -update noar ti set b2='2B2QP7KBDQ' where id=6; -update noar tt set v0='LPEHSCY1KU1GZB' where id=7; -update noar ti set v0='LPEHSCY1KU1GZB' where id=7; -update noar tt set b0='WQYIH3OL20FINXC3A3XHME0DSP8H' where id=7; -update noar ti set b0='WQYIH3OL20FINXC3A3XHME0DSP8H' where id=7; -update noar tt set v0='2HDVCF4TMZZYJ93C4TICVWC6' where id=7; -update noar ti set v0='2HDVCF4TMZZYJ93C4TICVWC6' where id=7; -update noar tt set b1='ZEMHJD3Z' where id=7; -update noar ti set b1='ZEMHJD3Z' where id=7; -update noar tt set v0='XOQ82O827EYAS2ZUS4VXHRA17KU' where id=7; -update noar ti set v0='XOQ82O827EYAS2ZUS4VXHRA17KU' where id=7; -update noar tt set b2='JA7X11TDRZFYYENVP9GFY' where id=7; -update noar ti set b2='JA7X11TDRZFYYENVP9GFY' where id=7; -update noar tt set v0='FTE09F6BDURE' where id=8; -update noar ti set v0='FTE09F6BDURE' where id=8; -update noar tt set b0='W0T696OU' where id=8; -update noar ti set b0='W0T696OU' where id=8; -update noar tt set v0='XPZ5S1N2TPL5HR1MJE3031UQXA6' where id=8; -update noar ti set v0='XPZ5S1N2TPL5HR1MJE3031UQXA6' where id=8; -update noar tt set b1='8N1IXUL8XLJ6NY9UNLELM2G4XEF9ID' where id=8; -update noar ti set b1='8N1IXUL8XLJ6NY9UNLELM2G4XEF9ID' where id=8; -update noar tt set v0='LW041SWAM03NW8FWT7RV5GIBO' where id=8; -update noar ti set v0='LW041SWAM03NW8FWT7RV5GIBO' where id=8; -update noar tt set b2='YCVB7SRDQLYNXN002N' where id=8; -update noar ti set b2='YCVB7SRDQLYNXN002N' where id=8; -update noar tt set v0='KQN82IILP3JK' where id=9; -update noar ti set v0='KQN82IILP3JK' where id=9; -update noar tt set b0='F9YM8EY9U8W0XT92U6YJTHJLGYF4NK9F' where id=9; -update noar ti set b0='F9YM8EY9U8W0XT92U6YJTHJLGYF4NK9F' where id=9; -update noar tt set v0='MDD1EV6JTLX43QINPK428Z62PE4N34S' where id=9; -update noar ti set v0='MDD1EV6JTLX43QINPK428Z62PE4N34S' where id=9; -update noar tt set b1='0PUCMC' where id=9; -update noar ti set b1='0PUCMC' where id=9; -update noar tt set v0='QL7Q63SYC5JS2SB0QW' where id=9; -update noar ti set v0='QL7Q63SYC5JS2SB0QW' where id=9; -update noar tt set b2='BWPBJYJ67E0SIG3CKSZKXBL0MOKT' where id=9; -update noar ti set b2='BWPBJYJ67E0SIG3CKSZKXBL0MOKT' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -v0 varchar(32) null, -b0 mediumblob null, -b1 longblob null, -b2 blob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='Z104694OJFA' where id=1; -update noar ti set v0='Z104694OJFA' where id=1; -update noar tt set b0='RPG0I43KU4AVCULXN3MD2XXXWC4GUTU' where id=1; -update noar ti set b0='RPG0I43KU4AVCULXN3MD2XXXWC4GUTU' where id=1; -update noar tt set v0='GCG9RIPJUOG5YY' where id=1; -update noar ti set v0='GCG9RIPJUOG5YY' where id=1; -update noar tt set b1='JDPM61NY3TKJ' where id=1; -update noar ti set b1='JDPM61NY3TKJ' where id=1; -update noar tt set v0='D8JESE7' where id=1; -update noar ti set v0='D8JESE7' where id=1; -update noar tt set b2='HEEE1Q3OLR22EWKDDMTE9SZ9NS' where id=1; -update noar ti set b2='HEEE1Q3OLR22EWKDDMTE9SZ9NS' where id=1; -update noar tt set v0='N9OJY26GINEFLG4S' where id=2; -update noar ti set v0='N9OJY26GINEFLG4S' where id=2; -update noar tt set b0='K0UQMIL7EV1RXYF' where id=2; -update noar ti set b0='K0UQMIL7EV1RXYF' where id=2; -update noar tt set v0='UJLKP3A04AAIKNYI66J60W' where id=2; -update noar ti set v0='UJLKP3A04AAIKNYI66J60W' where id=2; -update noar tt set b1='MHT1XDZ5S8O4DMFURETLGK4HQ' where id=2; -update noar ti set b1='MHT1XDZ5S8O4DMFURETLGK4HQ' where id=2; -update noar tt set v0='6UZRF4L79IEA' where id=2; -update noar ti set v0='6UZRF4L79IEA' where id=2; -update noar tt set b2='A988H0T01T28V1VQA' where id=2; -update noar ti set b2='A988H0T01T28V1VQA' where id=2; -update noar tt set v0='9JV' where id=3; -update noar ti set v0='9JV' where id=3; -update noar tt set b0='YG8DC08IY536' where id=3; -update noar ti set b0='YG8DC08IY536' where id=3; -update noar tt set v0='3FUEF' where id=3; -update noar ti set v0='3FUEF' where id=3; -update noar tt set b1='HRSAQND8C85PX' where id=3; -update noar ti set b1='HRSAQND8C85PX' where id=3; -update noar tt set v0='P3LH16WDFVHFBPBCQXCU5B0OCSY07' where id=3; -update noar ti set v0='P3LH16WDFVHFBPBCQXCU5B0OCSY07' where id=3; -update noar tt set b2='LH5F0' where id=3; -update noar ti set b2='LH5F0' where id=3; -update noar tt set v0='KN7GC8T9J2RZQ3CH6M1ZZGER83FAY1X' where id=4; -update noar ti set v0='KN7GC8T9J2RZQ3CH6M1ZZGER83FAY1X' where id=4; -update noar tt set b0='H' where id=4; -update noar ti set b0='H' where id=4; -update noar tt set v0='BT79' where id=4; -update noar ti set v0='BT79' where id=4; -update noar tt set b1='EF24AI' where id=4; -update noar ti set b1='EF24AI' where id=4; -update noar tt set v0='MY' where id=4; -update noar ti set v0='MY' where id=4; -update noar tt set b2='ZGLZB5P' where id=4; -update noar ti set b2='ZGLZB5P' where id=4; -update noar tt set v0='8' where id=5; -update noar ti set v0='8' where id=5; -update noar tt set b0='HZTBR6' where id=5; -update noar ti set b0='HZTBR6' where id=5; -update noar tt set v0='0JG3CURUM2I2M3Y9ZJ' where id=5; -update noar ti set v0='0JG3CURUM2I2M3Y9ZJ' where id=5; -update noar tt set b1='A98P8HM8F4P7PSGHE7' where id=5; -update noar ti set b1='A98P8HM8F4P7PSGHE7' where id=5; -update noar tt set v0='65ZRDAZRIWO9PAR0T6MA0EA8' where id=5; -update noar ti set v0='65ZRDAZRIWO9PAR0T6MA0EA8' where id=5; -update noar tt set b2='D2K9423' where id=5; -update noar ti set b2='D2K9423' where id=5; -update noar tt set v0='W8T9QUSNMD5A7X34PJOC3NYA0' where id=6; -update noar ti set v0='W8T9QUSNMD5A7X34PJOC3NYA0' where id=6; -update noar tt set b0='4Z1ES5VG' where id=6; -update noar ti set b0='4Z1ES5VG' where id=6; -update noar tt set v0='88' where id=6; -update noar ti set v0='88' where id=6; -update noar tt set b1='ADJ92F3K8MI401JOYTMGD' where id=6; -update noar ti set b1='ADJ92F3K8MI401JOYTMGD' where id=6; -update noar tt set v0='QBLQLB8K85HTLE6RJ4BNRBF2X' where id=6; -update noar ti set v0='QBLQLB8K85HTLE6RJ4BNRBF2X' where id=6; -update noar tt set b2='0EENMWAJK698IWTLAJV82C6CZR4RW' where id=6; -update noar ti set b2='0EENMWAJK698IWTLAJV82C6CZR4RW' where id=6; -update noar tt set v0='N6QCJL4T16NK1DRIJ7Q3710MXNWJFA6Y' where id=7; -update noar ti set v0='N6QCJL4T16NK1DRIJ7Q3710MXNWJFA6Y' where id=7; -update noar tt set b0='NLRJ8VMTXKLGKGBD' where id=7; -update noar ti set b0='NLRJ8VMTXKLGKGBD' where id=7; -update noar tt set v0='1BT1CUJ49G9SHZUSNDOML732TPZB' where id=7; -update noar ti set v0='1BT1CUJ49G9SHZUSNDOML732TPZB' where id=7; -update noar tt set b1='315ZRCT3X3ZG69N9GTS9X152H113C4VY' where id=7; -update noar ti set b1='315ZRCT3X3ZG69N9GTS9X152H113C4VY' where id=7; -update noar tt set v0='EVTLPJHBKIJUD7HO00TU' where id=7; -update noar ti set v0='EVTLPJHBKIJUD7HO00TU' where id=7; -update noar tt set b2='OR472GINOYWB' where id=7; -update noar ti set b2='OR472GINOYWB' where id=7; -update noar tt set v0='VW7Q2Q' where id=8; -update noar ti set v0='VW7Q2Q' where id=8; -update noar tt set b0='0HPMBR62' where id=8; -update noar ti set b0='0HPMBR62' where id=8; -update noar tt set v0='GIL8' where id=8; -update noar ti set v0='GIL8' where id=8; -update noar tt set b1='TMJXG7HP' where id=8; -update noar ti set b1='TMJXG7HP' where id=8; -update noar tt set v0='N30LDJ2G9ESFQPTCKOIMBEQC' where id=8; -update noar ti set v0='N30LDJ2G9ESFQPTCKOIMBEQC' where id=8; -update noar tt set b2='6HM02YPNV9' where id=8; -update noar ti set b2='6HM02YPNV9' where id=8; -update noar tt set v0='TBHHU5WCVZ17ABTHU0TZ' where id=9; -update noar ti set v0='TBHHU5WCVZ17ABTHU0TZ' where id=9; -update noar tt set b0='OI5E3M8J0LFZB0NJFC9W' where id=9; -update noar ti set b0='OI5E3M8J0LFZB0NJFC9W' where id=9; -update noar tt set v0='C7Q9' where id=9; -update noar ti set v0='C7Q9' where id=9; -update noar tt set b1='PA4S7GR0YLZGFKDA4I8WV4449JH4I' where id=9; -update noar ti set b1='PA4S7GR0YLZGFKDA4I8WV4449JH4I' where id=9; -update noar tt set v0='OKTAUX5EWPAEAWP809JN2P0B' where id=9; -update noar ti set v0='OKTAUX5EWPAEAWP809JN2P0B' where id=9; -update noar tt set b2='K' where id=9; -update noar ti set b2='K' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -v0 varchar(256) null, -b0 mediumblob null, -b1 longblob null, -b2 blob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='42XRBOMG3KC19ICCQZG20F785P' where id=1; -update noar ti set v0='42XRBOMG3KC19ICCQZG20F785P' where id=1; -update noar tt set b0='VT6C40X6R3KXKATEA' where id=1; -update noar ti set b0='VT6C40X6R3KXKATEA' where id=1; -update noar tt set v0='3ZHP3U319UVUQ34' where id=1; -update noar ti set v0='3ZHP3U319UVUQ34' where id=1; -update noar tt set b1='IFFK5DIDR36DQ1HG7U9IWV48WQZ8' where id=1; -update noar ti set b1='IFFK5DIDR36DQ1HG7U9IWV48WQZ8' where id=1; -update noar tt set v0='200Q' where id=1; -update noar ti set v0='200Q' where id=1; -update noar tt set b2='XE8Y528DXOEFK2YCIAPYH' where id=1; -update noar ti set b2='XE8Y528DXOEFK2YCIAPYH' where id=1; -update noar tt set v0='1DNYC' where id=2; -update noar ti set v0='1DNYC' where id=2; -update noar tt set b0='CS38OK2MOMA' where id=2; -update noar ti set b0='CS38OK2MOMA' where id=2; -update noar tt set v0='KBECZLRCWB4KY2PV04JHCETWNLS1Z3' where id=2; -update noar ti set v0='KBECZLRCWB4KY2PV04JHCETWNLS1Z3' where id=2; -update noar tt set b1='O6NU' where id=2; -update noar ti set b1='O6NU' where id=2; -update noar tt set v0='4CWDGN1S9O692FN5G6R92XN8GH2OU' where id=2; -update noar ti set v0='4CWDGN1S9O692FN5G6R92XN8GH2OU' where id=2; -update noar tt set b2='2NYZDCWZWLVFXUI6ZIOG8JI7027' where id=2; -update noar ti set b2='2NYZDCWZWLVFXUI6ZIOG8JI7027' where id=2; -update noar tt set v0='W5XKM60U80BEMX7OTU0RD8ID65FNNYF' where id=3; -update noar ti set v0='W5XKM60U80BEMX7OTU0RD8ID65FNNYF' where id=3; -update noar tt set b0='YLRJPC0Q' where id=3; -update noar ti set b0='YLRJPC0Q' where id=3; -update noar tt set v0='HV3' where id=3; -update noar ti set v0='HV3' where id=3; -update noar tt set b1='TY' where id=3; -update noar ti set b1='TY' where id=3; -update noar tt set v0='3BZ4R' where id=3; -update noar ti set v0='3BZ4R' where id=3; -update noar tt set b2='SWX42SMYGD3XT' where id=3; -update noar ti set b2='SWX42SMYGD3XT' where id=3; -update noar tt set v0='8' where id=4; -update noar ti set v0='8' where id=4; -update noar tt set b0='5OPOJFZ4DR7NU' where id=4; -update noar ti set b0='5OPOJFZ4DR7NU' where id=4; -update noar tt set v0='Q487J5R36GI' where id=4; -update noar ti set v0='Q487J5R36GI' where id=4; -update noar tt set b1='IY9DNBQ77DMW48OMD' where id=4; -update noar ti set b1='IY9DNBQ77DMW48OMD' where id=4; -update noar tt set v0='I2KQF9H6YYNIITVNTX' where id=4; -update noar ti set v0='I2KQF9H6YYNIITVNTX' where id=4; -update noar tt set b2='ZK' where id=4; -update noar ti set b2='ZK' where id=4; -update noar tt set v0='60TPJ6CJSTVX7X0FHEJ864LBGTJKBB25' where id=5; -update noar ti set v0='60TPJ6CJSTVX7X0FHEJ864LBGTJKBB25' where id=5; -update noar tt set b0='WQUI7A9IZZ' where id=5; -update noar ti set b0='WQUI7A9IZZ' where id=5; -update noar tt set v0='W7DSP2MFS1LN2OAKN36B0Q3T407A' where id=5; -update noar ti set v0='W7DSP2MFS1LN2OAKN36B0Q3T407A' where id=5; -update noar tt set b1='Q5' where id=5; -update noar ti set b1='Q5' where id=5; -update noar tt set v0='61DS1' where id=5; -update noar ti set v0='61DS1' where id=5; -update noar tt set b2='GTWQB44XRH7USTUE2Q3EYI8AZXF' where id=5; -update noar ti set b2='GTWQB44XRH7USTUE2Q3EYI8AZXF' where id=5; -update noar tt set v0='7XKGH17THVCPSI' where id=6; -update noar ti set v0='7XKGH17THVCPSI' where id=6; -update noar tt set b0='4B0GHZJOA7ZYRF66ISMBLCPZNA2' where id=6; -update noar ti set b0='4B0GHZJOA7ZYRF66ISMBLCPZNA2' where id=6; -update noar tt set v0='UPPMBQZJ' where id=6; -update noar ti set v0='UPPMBQZJ' where id=6; -update noar tt set b1='1RZNIXTHU2N58' where id=6; -update noar ti set b1='1RZNIXTHU2N58' where id=6; -update noar tt set v0='F6R0TIGX4XNTPME14HRTED1CT' where id=6; -update noar ti set v0='F6R0TIGX4XNTPME14HRTED1CT' where id=6; -update noar tt set b2='2LPYO6TO8QIVHJP1KAP9PWOW1' where id=6; -update noar ti set b2='2LPYO6TO8QIVHJP1KAP9PWOW1' where id=6; -update noar tt set v0='0RE' where id=7; -update noar ti set v0='0RE' where id=7; -update noar tt set b0='Z2WBNJYHIP4YY1HQTCK' where id=7; -update noar ti set b0='Z2WBNJYHIP4YY1HQTCK' where id=7; -update noar tt set v0='0GCZCELXI' where id=7; -update noar ti set v0='0GCZCELXI' where id=7; -update noar tt set b1='6' where id=7; -update noar ti set b1='6' where id=7; -update noar tt set v0='5Z1Q2D1P1CWBOJ66I0FI8MO3463FB' where id=7; -update noar ti set v0='5Z1Q2D1P1CWBOJ66I0FI8MO3463FB' where id=7; -update noar tt set b2='RGQVQ7S594' where id=7; -update noar ti set b2='RGQVQ7S594' where id=7; -update noar tt set v0='H30R' where id=8; -update noar ti set v0='H30R' where id=8; -update noar tt set b0='B9NU' where id=8; -update noar ti set b0='B9NU' where id=8; -update noar tt set v0='R' where id=8; -update noar ti set v0='R' where id=8; -update noar tt set b1='AIWTE5L7VXU9S0AY4GYVXWD7' where id=8; -update noar ti set b1='AIWTE5L7VXU9S0AY4GYVXWD7' where id=8; -update noar tt set v0='LFQMIGNS7ZUPS8E5JXWOLZU314' where id=8; -update noar ti set v0='LFQMIGNS7ZUPS8E5JXWOLZU314' where id=8; -update noar tt set b2='TOHPIW6Y3QSFRQVJQ4M6FPELPJ0U7SD' where id=8; -update noar ti set b2='TOHPIW6Y3QSFRQVJQ4M6FPELPJ0U7SD' where id=8; -update noar tt set v0='2GP4PLTH3UKK9H3AX31OGFD9' where id=9; -update noar ti set v0='2GP4PLTH3UKK9H3AX31OGFD9' where id=9; -update noar tt set b0='ACQSK9NVBGKGCXBLL4UOMROFAA5Y9CZS' where id=9; -update noar ti set b0='ACQSK9NVBGKGCXBLL4UOMROFAA5Y9CZS' where id=9; -update noar tt set v0='YNOEV0RPCOVSIWI08A' where id=9; -update noar ti set v0='YNOEV0RPCOVSIWI08A' where id=9; -update noar tt set b1='7' where id=9; -update noar ti set b1='7' where id=9; -update noar tt set v0='52896H3LM2BORSSL6' where id=9; -update noar ti set v0='52896H3LM2BORSSL6' where id=9; -update noar tt set b2='DXMZGE' where id=9; -update noar ti set b2='DXMZGE' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -v0 varchar(32) not null, -b0 mediumblob not null, -b1 longblob not null, -b2 blob not null -) engine=tokudb; -insert into tt values (1,'','','',''); -insert into tt values (2,'','','',''); -insert into tt values (3,'','','',''); -insert into tt values (4,'','','',''); -insert into tt values (5,'','','',''); -insert into tt values (6,'','','',''); -insert into tt values (7,'','','',''); -insert into tt values (8,'','','',''); -insert into tt values (9,'','','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='80K1T1DG' where id=1; -update noar ti set v0='80K1T1DG' where id=1; -update noar tt set b0='HBX9PLDXOB6KNKZHJX6C' where id=1; -update noar ti set b0='HBX9PLDXOB6KNKZHJX6C' where id=1; -update noar tt set v0='ZR024SSYS9O05Q4' where id=1; -update noar ti set v0='ZR024SSYS9O05Q4' where id=1; -update noar tt set b1='87199C69QG' where id=1; -update noar ti set b1='87199C69QG' where id=1; -update noar tt set v0='8PXK7KI7RJPJK1LQWOAAGD9GBE' where id=1; -update noar ti set v0='8PXK7KI7RJPJK1LQWOAAGD9GBE' where id=1; -update noar tt set b2='QPA5AB5LJJ' where id=1; -update noar ti set b2='QPA5AB5LJJ' where id=1; -update noar tt set v0='7NHOH2ON5WKWUH24NPQ5UFQ' where id=2; -update noar ti set v0='7NHOH2ON5WKWUH24NPQ5UFQ' where id=2; -update noar tt set b0='4M5OS7SHQSAEGN0UK589K' where id=2; -update noar ti set b0='4M5OS7SHQSAEGN0UK589K' where id=2; -update noar tt set v0='02R26YGLZQIJO8EA9ZFW6K9DW5N3CY' where id=2; -update noar ti set v0='02R26YGLZQIJO8EA9ZFW6K9DW5N3CY' where id=2; -update noar tt set b1='T8' where id=2; -update noar ti set b1='T8' where id=2; -update noar tt set v0='XOID16HS0QS90TVDG9NIYLJJ' where id=2; -update noar ti set v0='XOID16HS0QS90TVDG9NIYLJJ' where id=2; -update noar tt set b2='Y382S3VVV2HR3' where id=2; -update noar ti set b2='Y382S3VVV2HR3' where id=2; -update noar tt set v0='93QMMILBC7BP01GPU4' where id=3; -update noar ti set v0='93QMMILBC7BP01GPU4' where id=3; -update noar tt set b0='DORFHEW7V430A05KCH6OH2M09VM4Z2U' where id=3; -update noar ti set b0='DORFHEW7V430A05KCH6OH2M09VM4Z2U' where id=3; -update noar tt set v0='JEG71' where id=3; -update noar ti set v0='JEG71' where id=3; -update noar tt set b1='9ULCEX2XZ5KP73SPQTR32FSZCL4' where id=3; -update noar ti set b1='9ULCEX2XZ5KP73SPQTR32FSZCL4' where id=3; -update noar tt set v0='KC36VT2CIDR8FXV' where id=3; -update noar ti set v0='KC36VT2CIDR8FXV' where id=3; -update noar tt set b2='I9YA0SCIJ34HEOPS5111L0D' where id=3; -update noar ti set b2='I9YA0SCIJ34HEOPS5111L0D' where id=3; -update noar tt set v0='O67YLVNUWAH5NEKTB30D2TPN8X4FOP4D' where id=4; -update noar ti set v0='O67YLVNUWAH5NEKTB30D2TPN8X4FOP4D' where id=4; -update noar tt set b0='NK' where id=4; -update noar ti set b0='NK' where id=4; -update noar tt set v0='VLKYVN' where id=4; -update noar ti set v0='VLKYVN' where id=4; -update noar tt set b1='IJ' where id=4; -update noar ti set b1='IJ' where id=4; -update noar tt set v0='CT99GM7ILWOTCW97Z' where id=4; -update noar ti set v0='CT99GM7ILWOTCW97Z' where id=4; -update noar tt set b2='PUD7Z8YBGTG4WK1U84XYOH1I5' where id=4; -update noar ti set b2='PUD7Z8YBGTG4WK1U84XYOH1I5' where id=4; -update noar tt set v0='Q4FTV7U0QP00679ON8352BU0X0YS' where id=5; -update noar ti set v0='Q4FTV7U0QP00679ON8352BU0X0YS' where id=5; -update noar tt set b0='FW4I2' where id=5; -update noar ti set b0='FW4I2' where id=5; -update noar tt set v0='SR7YWKOJF45I1' where id=5; -update noar ti set v0='SR7YWKOJF45I1' where id=5; -update noar tt set b1='Y8I3I200H034LJTBAAK' where id=5; -update noar ti set b1='Y8I3I200H034LJTBAAK' where id=5; -update noar tt set v0='384TWQL739P440MA4' where id=5; -update noar ti set v0='384TWQL739P440MA4' where id=5; -update noar tt set b2='PGI85TB1DA8FO8' where id=5; -update noar ti set b2='PGI85TB1DA8FO8' where id=5; -update noar tt set v0='IRI7NYFWLCQNBGM4PNW9EDRLU07' where id=6; -update noar ti set v0='IRI7NYFWLCQNBGM4PNW9EDRLU07' where id=6; -update noar tt set b0='1IRJ' where id=6; -update noar ti set b0='1IRJ' where id=6; -update noar tt set v0='QR08NEK1SWDK43GKDEDDAIMV' where id=6; -update noar ti set v0='QR08NEK1SWDK43GKDEDDAIMV' where id=6; -update noar tt set b1='FLUAGBM' where id=6; -update noar ti set b1='FLUAGBM' where id=6; -update noar tt set v0='PSWBQSK86IE4Q7TSCG9DZBED3BP' where id=6; -update noar ti set v0='PSWBQSK86IE4Q7TSCG9DZBED3BP' where id=6; -update noar tt set b2='0REGOXSGZ8UYFXFTBC2ZFMORZ2' where id=6; -update noar ti set b2='0REGOXSGZ8UYFXFTBC2ZFMORZ2' where id=6; -update noar tt set v0='C' where id=7; -update noar ti set v0='C' where id=7; -update noar tt set b0='R' where id=7; -update noar ti set b0='R' where id=7; -update noar tt set v0='7C0Q313266KJISX6ER60HQYUEY' where id=7; -update noar ti set v0='7C0Q313266KJISX6ER60HQYUEY' where id=7; -update noar tt set b1='M4C7EV' where id=7; -update noar ti set b1='M4C7EV' where id=7; -update noar tt set v0='NNJK' where id=7; -update noar ti set v0='NNJK' where id=7; -update noar tt set b2='GHN5HV2ZV61GBO1MPA0RA9SAW61F' where id=7; -update noar ti set b2='GHN5HV2ZV61GBO1MPA0RA9SAW61F' where id=7; -update noar tt set v0='5' where id=8; -update noar ti set v0='5' where id=8; -update noar tt set b0='7C81N' where id=8; -update noar ti set b0='7C81N' where id=8; -update noar tt set v0='COR37X28U51YQHLOG' where id=8; -update noar ti set v0='COR37X28U51YQHLOG' where id=8; -update noar tt set b1='CB0J5X9E7758A' where id=8; -update noar ti set b1='CB0J5X9E7758A' where id=8; -update noar tt set v0='95NKZ' where id=8; -update noar ti set v0='95NKZ' where id=8; -update noar tt set b2='QCF7RYDWXVUOWLJQ22WUGIGVJ8HXPRR' where id=8; -update noar ti set b2='QCF7RYDWXVUOWLJQ22WUGIGVJ8HXPRR' where id=8; -update noar tt set v0='95FUZXMX68GFPRB844WUBJ0UKQNX' where id=9; -update noar ti set v0='95FUZXMX68GFPRB844WUBJ0UKQNX' where id=9; -update noar tt set b0='5NF8BYY5NO03' where id=9; -update noar ti set b0='5NF8BYY5NO03' where id=9; -update noar tt set v0='8AI' where id=9; -update noar ti set v0='8AI' where id=9; -update noar tt set b1='T5CPVMUV1OZMTDPM' where id=9; -update noar ti set b1='T5CPVMUV1OZMTDPM' where id=9; -update noar tt set v0='88DP' where id=9; -update noar ti set v0='88DP' where id=9; -update noar tt set b2='ZCZIN0VVO68R0QJODEVP4WZ381' where id=9; -update noar ti set b2='ZCZIN0VVO68R0QJODEVP4WZ381' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -v0 varchar(256) not null, -b0 mediumblob not null, -b1 longblob not null, -b2 blob not null -) engine=tokudb; -insert into tt values (1,'','','',''); -insert into tt values (2,'','','',''); -insert into tt values (3,'','','',''); -insert into tt values (4,'','','',''); -insert into tt values (5,'','','',''); -insert into tt values (6,'','','',''); -insert into tt values (7,'','','',''); -insert into tt values (8,'','','',''); -insert into tt values (9,'','','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='V7ZWG4AZN' where id=1; -update noar ti set v0='V7ZWG4AZN' where id=1; -update noar tt set b0='TATBDD2ZM99M313' where id=1; -update noar ti set b0='TATBDD2ZM99M313' where id=1; -update noar tt set v0='03LC2CBJJ0BL74IK4ISJY' where id=1; -update noar ti set v0='03LC2CBJJ0BL74IK4ISJY' where id=1; -update noar tt set b1='AJAKRSLCG2GB53F5HN96' where id=1; -update noar ti set b1='AJAKRSLCG2GB53F5HN96' where id=1; -update noar tt set v0='5PM2W' where id=1; -update noar ti set v0='5PM2W' where id=1; -update noar tt set b2='UU5KAQ0CLOX84U016VEDS' where id=1; -update noar ti set b2='UU5KAQ0CLOX84U016VEDS' where id=1; -update noar tt set v0='210ZEO5YTH9U4' where id=2; -update noar ti set v0='210ZEO5YTH9U4' where id=2; -update noar tt set b0='RPS5LC05P2636TZP11ZHC4TKA9EGDD' where id=2; -update noar ti set b0='RPS5LC05P2636TZP11ZHC4TKA9EGDD' where id=2; -update noar tt set v0='CIUKVTTPFWQ4GJX1JICRFDHE' where id=2; -update noar ti set v0='CIUKVTTPFWQ4GJX1JICRFDHE' where id=2; -update noar tt set b1='5LUQKEQ0JI9SSXBQGD9P43232W' where id=2; -update noar ti set b1='5LUQKEQ0JI9SSXBQGD9P43232W' where id=2; -update noar tt set v0='9I0CLSUIA47H9ME' where id=2; -update noar ti set v0='9I0CLSUIA47H9ME' where id=2; -update noar tt set b2='DRK53ATV11Y3DDQLR7Q7R' where id=2; -update noar ti set b2='DRK53ATV11Y3DDQLR7Q7R' where id=2; -update noar tt set v0='PB0XVODYOWXTF84Q8OX6SD21' where id=3; -update noar ti set v0='PB0XVODYOWXTF84Q8OX6SD21' where id=3; -update noar tt set b0='HJZ9E7Q044US50K9VTSXDM' where id=3; -update noar ti set b0='HJZ9E7Q044US50K9VTSXDM' where id=3; -update noar tt set v0='5TMMHP3DQTDU7IFW8KCIK96YPDCU' where id=3; -update noar ti set v0='5TMMHP3DQTDU7IFW8KCIK96YPDCU' where id=3; -update noar tt set b1='OPYEFP5EXI0N' where id=3; -update noar ti set b1='OPYEFP5EXI0N' where id=3; -update noar tt set v0='HMSL2S' where id=3; -update noar ti set v0='HMSL2S' where id=3; -update noar tt set b2='JJFG1F0RC' where id=3; -update noar ti set b2='JJFG1F0RC' where id=3; -update noar tt set v0='5RE63AKKYUL16QBPQ929IW5NB9' where id=4; -update noar ti set v0='5RE63AKKYUL16QBPQ929IW5NB9' where id=4; -update noar tt set b0='4F91R01XDIYTY7PUS8DX' where id=4; -update noar ti set b0='4F91R01XDIYTY7PUS8DX' where id=4; -update noar tt set v0='XM2LWTBVF6WNNR1Y' where id=4; -update noar ti set v0='XM2LWTBVF6WNNR1Y' where id=4; -update noar tt set b1='FKZ7RP1ZW8YO49BZOUNJGZWL9XA47HZZ' where id=4; -update noar ti set b1='FKZ7RP1ZW8YO49BZOUNJGZWL9XA47HZZ' where id=4; -update noar tt set v0='Y1EDT095QEUGSC80O9QXH2YPA' where id=4; -update noar ti set v0='Y1EDT095QEUGSC80O9QXH2YPA' where id=4; -update noar tt set b2='7U0W7OCG8' where id=4; -update noar ti set b2='7U0W7OCG8' where id=4; -update noar tt set v0='3XVPGMXMQLK70U3' where id=5; -update noar ti set v0='3XVPGMXMQLK70U3' where id=5; -update noar tt set b0='Y4QWDP12JWF36SF1' where id=5; -update noar ti set b0='Y4QWDP12JWF36SF1' where id=5; -update noar tt set v0='D2H16PRZVJV320S5IJ' where id=5; -update noar ti set v0='D2H16PRZVJV320S5IJ' where id=5; -update noar tt set b1='H0HEHKKSFQZGIS' where id=5; -update noar ti set b1='H0HEHKKSFQZGIS' where id=5; -update noar tt set v0='1LK5USMV06RCN7UW6QNAUKN6' where id=5; -update noar ti set v0='1LK5USMV06RCN7UW6QNAUKN6' where id=5; -update noar tt set b2='S8UCVUCJUTL7SX2UW0O5H3PJ' where id=5; -update noar ti set b2='S8UCVUCJUTL7SX2UW0O5H3PJ' where id=5; -update noar tt set v0='2WFOQNFRK7RG1LHKM69YAX3DU' where id=6; -update noar ti set v0='2WFOQNFRK7RG1LHKM69YAX3DU' where id=6; -update noar tt set b0='MOXEFXE7O86GBF149569NE83BRULB' where id=6; -update noar ti set b0='MOXEFXE7O86GBF149569NE83BRULB' where id=6; -update noar tt set v0='W381UCX' where id=6; -update noar ti set v0='W381UCX' where id=6; -update noar tt set b1='J75YLBPR6MQ' where id=6; -update noar ti set b1='J75YLBPR6MQ' where id=6; -update noar tt set v0='W7AOOR8I9455' where id=6; -update noar ti set v0='W7AOOR8I9455' where id=6; -update noar tt set b2='P26M' where id=6; -update noar ti set b2='P26M' where id=6; -update noar tt set v0='CL3WQ1K115R' where id=7; -update noar ti set v0='CL3WQ1K115R' where id=7; -update noar tt set b0='HNAN9AVT0AOT2OFX6QK1279S' where id=7; -update noar ti set b0='HNAN9AVT0AOT2OFX6QK1279S' where id=7; -update noar tt set v0='BNU3MYAPQ86OOQI8K2XJ0X' where id=7; -update noar ti set v0='BNU3MYAPQ86OOQI8K2XJ0X' where id=7; -update noar tt set b1='3SB8DB8XRHCJQ2M9YE0H9BS1T51' where id=7; -update noar ti set b1='3SB8DB8XRHCJQ2M9YE0H9BS1T51' where id=7; -update noar tt set v0='IH390HHQZUMM67V2U8ETY' where id=7; -update noar ti set v0='IH390HHQZUMM67V2U8ETY' where id=7; -update noar tt set b2='HWMGCETHG' where id=7; -update noar ti set b2='HWMGCETHG' where id=7; -update noar tt set v0='ZPD0QKTZY8GGA' where id=8; -update noar ti set v0='ZPD0QKTZY8GGA' where id=8; -update noar tt set b0='SPPEFGAI' where id=8; -update noar ti set b0='SPPEFGAI' where id=8; -update noar tt set v0='RTFOKFTU2KIMD' where id=8; -update noar ti set v0='RTFOKFTU2KIMD' where id=8; -update noar tt set b1='58' where id=8; -update noar ti set b1='58' where id=8; -update noar tt set v0='DUIYVWOW' where id=8; -update noar ti set v0='DUIYVWOW' where id=8; -update noar tt set b2='ZL0M4SSJ488QF1RRW9' where id=8; -update noar ti set b2='ZL0M4SSJ488QF1RRW9' where id=8; -update noar tt set v0='IMBQX11WXDZD23' where id=9; -update noar ti set v0='IMBQX11WXDZD23' where id=9; -update noar tt set b0='LR95KY4LF9LBODKVVYP6VNQB5A97V' where id=9; -update noar ti set b0='LR95KY4LF9LBODKVVYP6VNQB5A97V' where id=9; -update noar tt set v0='9G2XMTYWQ9DZHC6R2SZFMHM7FIN2FXNE' where id=9; -update noar ti set v0='9G2XMTYWQ9DZHC6R2SZFMHM7FIN2FXNE' where id=9; -update noar tt set b1='YJBADF389CUS9CZBY9K3T07ICL4' where id=9; -update noar ti set b1='YJBADF389CUS9CZBY9K3T07ICL4' where id=9; -update noar tt set v0='GLDLMJP3SGKJ1IIAJPJ' where id=9; -update noar ti set v0='GLDLMJP3SGKJ1IIAJPJ' where id=9; -update noar tt set b2='Y5SXJBOJP7OU8I251M29ZNEAWF98Z' where id=9; -update noar ti set b2='Y5SXJBOJP7OU8I251M29ZNEAWF98Z' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -v0 varchar(32) null, -b0 mediumblob null, -b1 longblob null, -b2 mediumblob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='HEMYCHEGMT4Y1B9' where id=1; -update noar ti set v0='HEMYCHEGMT4Y1B9' where id=1; -update noar tt set b0='FFNXWDY2QWMMI8GC' where id=1; -update noar ti set b0='FFNXWDY2QWMMI8GC' where id=1; -update noar tt set v0='RE6A13N6VX4X7WRFBDODLPKG38MTP' where id=1; -update noar ti set v0='RE6A13N6VX4X7WRFBDODLPKG38MTP' where id=1; -update noar tt set b1='N' where id=1; -update noar ti set b1='N' where id=1; -update noar tt set v0='ZUEDPH7OKOEK2A' where id=1; -update noar ti set v0='ZUEDPH7OKOEK2A' where id=1; -update noar tt set b2='PZKKNBCMF7HFB2Z622Y' where id=1; -update noar ti set b2='PZKKNBCMF7HFB2Z622Y' where id=1; -update noar tt set v0='O326QBS9C' where id=2; -update noar ti set v0='O326QBS9C' where id=2; -update noar tt set b0='83XA2ZJWA6FIV8IE2L6PMYV460RF7J' where id=2; -update noar ti set b0='83XA2ZJWA6FIV8IE2L6PMYV460RF7J' where id=2; -update noar tt set v0='IVBTK11YVL' where id=2; -update noar ti set v0='IVBTK11YVL' where id=2; -update noar tt set b1='62LZS7HF1Y151FFD09AZC70WUBBRE5FC' where id=2; -update noar ti set b1='62LZS7HF1Y151FFD09AZC70WUBBRE5FC' where id=2; -update noar tt set v0='UKT9TGCHU2IQOT2BM3TEPMIOKTJJ3LWE' where id=2; -update noar ti set v0='UKT9TGCHU2IQOT2BM3TEPMIOKTJJ3LWE' where id=2; -update noar tt set b2='OFCOACO' where id=2; -update noar ti set b2='OFCOACO' where id=2; -update noar tt set v0='3UD24CUV4J837VZZMOOZ14DMGR7CL' where id=3; -update noar ti set v0='3UD24CUV4J837VZZMOOZ14DMGR7CL' where id=3; -update noar tt set b0='H118W0CPF67WCLB0H' where id=3; -update noar ti set b0='H118W0CPF67WCLB0H' where id=3; -update noar tt set v0='YEEL8JQUQA081O7FHKEKG0UFHWCF' where id=3; -update noar ti set v0='YEEL8JQUQA081O7FHKEKG0UFHWCF' where id=3; -update noar tt set b1='AR2AHT9YYH5BGWNEFV2HJ5F8ZPN2X1' where id=3; -update noar ti set b1='AR2AHT9YYH5BGWNEFV2HJ5F8ZPN2X1' where id=3; -update noar tt set v0='VR6HMN8I7XJ7B' where id=3; -update noar ti set v0='VR6HMN8I7XJ7B' where id=3; -update noar tt set b2='TZSEX34FFOQXBTS36BP2DIW8SDTS' where id=3; -update noar ti set b2='TZSEX34FFOQXBTS36BP2DIW8SDTS' where id=3; -update noar tt set v0='GJ5O8KZWHXT9NRAET8U2OH9NA7GNXEYO' where id=4; -update noar ti set v0='GJ5O8KZWHXT9NRAET8U2OH9NA7GNXEYO' where id=4; -update noar tt set b0='WKERUZFBWX2TK2RU4NYGFT' where id=4; -update noar ti set b0='WKERUZFBWX2TK2RU4NYGFT' where id=4; -update noar tt set v0='IKLNC2XN0LRFTWDOLYA4P' where id=4; -update noar ti set v0='IKLNC2XN0LRFTWDOLYA4P' where id=4; -update noar tt set b1='5C6' where id=4; -update noar ti set b1='5C6' where id=4; -update noar tt set v0='0HP0DQ87N0UUZXUVBSD' where id=4; -update noar ti set v0='0HP0DQ87N0UUZXUVBSD' where id=4; -update noar tt set b2='PCB45590USUWTZTZJZAB4YG1E8' where id=4; -update noar ti set b2='PCB45590USUWTZTZJZAB4YG1E8' where id=4; -update noar tt set v0='WI' where id=5; -update noar ti set v0='WI' where id=5; -update noar tt set b0='B6G' where id=5; -update noar ti set b0='B6G' where id=5; -update noar tt set v0='0NEJKWGH3E6RQM2EO2G4M31B' where id=5; -update noar ti set v0='0NEJKWGH3E6RQM2EO2G4M31B' where id=5; -update noar tt set b1='VTA' where id=5; -update noar ti set b1='VTA' where id=5; -update noar tt set v0='FHN7PZUPR0K5MZBZC7UQKY57I' where id=5; -update noar ti set v0='FHN7PZUPR0K5MZBZC7UQKY57I' where id=5; -update noar tt set b2='JWC437U603LHDVC6' where id=5; -update noar ti set b2='JWC437U603LHDVC6' where id=5; -update noar tt set v0='W95HR' where id=6; -update noar ti set v0='W95HR' where id=6; -update noar tt set b0='KW1L' where id=6; -update noar ti set b0='KW1L' where id=6; -update noar tt set v0='W3PKX3RMYXH0VO4S0X03ZCOG4EP' where id=6; -update noar ti set v0='W3PKX3RMYXH0VO4S0X03ZCOG4EP' where id=6; -update noar tt set b1='3M' where id=6; -update noar ti set b1='3M' where id=6; -update noar tt set v0='58SYRP3KAZWEZCW0KCKL0P6C1OP3' where id=6; -update noar ti set v0='58SYRP3KAZWEZCW0KCKL0P6C1OP3' where id=6; -update noar tt set b2='G' where id=6; -update noar ti set b2='G' where id=6; -update noar tt set v0='1V69FB47T49HMDZJ6WXV7HYNXY4S' where id=7; -update noar ti set v0='1V69FB47T49HMDZJ6WXV7HYNXY4S' where id=7; -update noar tt set b0='S4WKPRVBAQWOJHPQ84PBX8PC2BZR' where id=7; -update noar ti set b0='S4WKPRVBAQWOJHPQ84PBX8PC2BZR' where id=7; -update noar tt set v0='U9ZG9I7RFDV1J4H9MCP1IBXCIW' where id=7; -update noar ti set v0='U9ZG9I7RFDV1J4H9MCP1IBXCIW' where id=7; -update noar tt set b1='Z6VEJCBCNSM7BM2G' where id=7; -update noar ti set b1='Z6VEJCBCNSM7BM2G' where id=7; -update noar tt set v0='CHW4AYEMTEZ0Y84HJBTPD40TR03XZ' where id=7; -update noar ti set v0='CHW4AYEMTEZ0Y84HJBTPD40TR03XZ' where id=7; -update noar tt set b2='WICZLVZ1DA6PMSMQ1JPA2' where id=7; -update noar ti set b2='WICZLVZ1DA6PMSMQ1JPA2' where id=7; -update noar tt set v0='JBCKL91QVNSC' where id=8; -update noar ti set v0='JBCKL91QVNSC' where id=8; -update noar tt set b0='VU' where id=8; -update noar ti set b0='VU' where id=8; -update noar tt set v0='TKRV0AGLFXH9' where id=8; -update noar ti set v0='TKRV0AGLFXH9' where id=8; -update noar tt set b1='FYZTUUXIDOM2JC7D5UDTFNVEXNKC67V' where id=8; -update noar ti set b1='FYZTUUXIDOM2JC7D5UDTFNVEXNKC67V' where id=8; -update noar tt set v0='ZASLCM7TE29EMVXOLZ4' where id=8; -update noar ti set v0='ZASLCM7TE29EMVXOLZ4' where id=8; -update noar tt set b2='385MA3E0O1D2K0ANMSJX6I32B' where id=8; -update noar ti set b2='385MA3E0O1D2K0ANMSJX6I32B' where id=8; -update noar tt set v0='R9QS4' where id=9; -update noar ti set v0='R9QS4' where id=9; -update noar tt set b0='01XPT9N4' where id=9; -update noar ti set b0='01XPT9N4' where id=9; -update noar tt set v0='O4Z' where id=9; -update noar ti set v0='O4Z' where id=9; -update noar tt set b1='NF5VSD2PZT5W57FER4VY8Z2DQ8I1LNJ' where id=9; -update noar ti set b1='NF5VSD2PZT5W57FER4VY8Z2DQ8I1LNJ' where id=9; -update noar tt set v0='5SVC884CFGCG77UER3NUZ95KY5M4Q' where id=9; -update noar ti set v0='5SVC884CFGCG77UER3NUZ95KY5M4Q' where id=9; -update noar tt set b2='8B' where id=9; -update noar ti set b2='8B' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -v0 varchar(256) null, -b0 mediumblob null, -b1 longblob null, -b2 mediumblob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='VBNLXDWCY8P0D827ZS' where id=1; -update noar ti set v0='VBNLXDWCY8P0D827ZS' where id=1; -update noar tt set b0='HGOQ86QPAJELJY' where id=1; -update noar ti set b0='HGOQ86QPAJELJY' where id=1; -update noar tt set v0='D11ZZAFZDELOMBJ9F4' where id=1; -update noar ti set v0='D11ZZAFZDELOMBJ9F4' where id=1; -update noar tt set b1='W1HW4' where id=1; -update noar ti set b1='W1HW4' where id=1; -update noar tt set v0='JG8L8NA067' where id=1; -update noar ti set v0='JG8L8NA067' where id=1; -update noar tt set b2='I' where id=1; -update noar ti set b2='I' where id=1; -update noar tt set v0='WU6IU' where id=2; -update noar ti set v0='WU6IU' where id=2; -update noar tt set b0='2DL5F2ZV0' where id=2; -update noar ti set b0='2DL5F2ZV0' where id=2; -update noar tt set v0='GOUMQ5RXP5IF0S64UXY5UX' where id=2; -update noar ti set v0='GOUMQ5RXP5IF0S64UXY5UX' where id=2; -update noar tt set b1='9Q4XP7Z3O2DC5010C4L2JA' where id=2; -update noar ti set b1='9Q4XP7Z3O2DC5010C4L2JA' where id=2; -update noar tt set v0='6I2SHG3IOPRDKOI9UYJN6' where id=2; -update noar ti set v0='6I2SHG3IOPRDKOI9UYJN6' where id=2; -update noar tt set b2='6WSWK5E9EBJVXBKVD7IJWFP57VNY' where id=2; -update noar ti set b2='6WSWK5E9EBJVXBKVD7IJWFP57VNY' where id=2; -update noar tt set v0='3K43ZFVV8Y8' where id=3; -update noar ti set v0='3K43ZFVV8Y8' where id=3; -update noar tt set b0='X18B2' where id=3; -update noar ti set b0='X18B2' where id=3; -update noar tt set v0='1AS08QZHPYLM99KTAS58' where id=3; -update noar ti set v0='1AS08QZHPYLM99KTAS58' where id=3; -update noar tt set b1='Q9ANGZ' where id=3; -update noar ti set b1='Q9ANGZ' where id=3; -update noar tt set v0='70QIT25GLE' where id=3; -update noar ti set v0='70QIT25GLE' where id=3; -update noar tt set b2='PPJLC0N1IFY4K6KJ' where id=3; -update noar ti set b2='PPJLC0N1IFY4K6KJ' where id=3; -update noar tt set v0='TN4GIH4YSG411YD3' where id=4; -update noar ti set v0='TN4GIH4YSG411YD3' where id=4; -update noar tt set b0='YQZYG98APFB9HZ360L7WN9GCXDSHC6' where id=4; -update noar ti set b0='YQZYG98APFB9HZ360L7WN9GCXDSHC6' where id=4; -update noar tt set v0='BW00HBMU4U' where id=4; -update noar ti set v0='BW00HBMU4U' where id=4; -update noar tt set b1='7144MN0RURPUP4UZGQEVGRGG8A4CY4W' where id=4; -update noar ti set b1='7144MN0RURPUP4UZGQEVGRGG8A4CY4W' where id=4; -update noar tt set v0='ZMWJ2SULYN8RGNJZ863LNJB0AFCGWU' where id=4; -update noar ti set v0='ZMWJ2SULYN8RGNJZ863LNJB0AFCGWU' where id=4; -update noar tt set b2='1SC2' where id=4; -update noar ti set b2='1SC2' where id=4; -update noar tt set v0='O7' where id=5; -update noar ti set v0='O7' where id=5; -update noar tt set b0='2X54APC5PR3DS4KH04VGE' where id=5; -update noar ti set b0='2X54APC5PR3DS4KH04VGE' where id=5; -update noar tt set v0='HVY5EKT1ZXCRJ' where id=5; -update noar ti set v0='HVY5EKT1ZXCRJ' where id=5; -update noar tt set b1='WTPTUF' where id=5; -update noar ti set b1='WTPTUF' where id=5; -update noar tt set v0='KHD78EKF9P5HSYN0KDYAUGC9' where id=5; -update noar ti set v0='KHD78EKF9P5HSYN0KDYAUGC9' where id=5; -update noar tt set b2='J477EQG00AHOH3WA9' where id=5; -update noar ti set b2='J477EQG00AHOH3WA9' where id=5; -update noar tt set v0='LCFGNS92EOU6YKAF' where id=6; -update noar ti set v0='LCFGNS92EOU6YKAF' where id=6; -update noar tt set b0='O3U1RW1BOJYOP3J' where id=6; -update noar ti set b0='O3U1RW1BOJYOP3J' where id=6; -update noar tt set v0='LA17XKMM6XURUMQXMSW38' where id=6; -update noar ti set v0='LA17XKMM6XURUMQXMSW38' where id=6; -update noar tt set b1='N' where id=6; -update noar ti set b1='N' where id=6; -update noar tt set v0='MTFL4RSOQ98VKT1' where id=6; -update noar ti set v0='MTFL4RSOQ98VKT1' where id=6; -update noar tt set b2='CTSJ5TE2Z85Y4SHXSG' where id=6; -update noar ti set b2='CTSJ5TE2Z85Y4SHXSG' where id=6; -update noar tt set v0='LEM2DK4XYJGAMQL' where id=7; -update noar ti set v0='LEM2DK4XYJGAMQL' where id=7; -update noar tt set b0='CNHPI6OQPRBMR' where id=7; -update noar ti set b0='CNHPI6OQPRBMR' where id=7; -update noar tt set v0='0T31' where id=7; -update noar ti set v0='0T31' where id=7; -update noar tt set b1='KWTYAN3JHT7RVQGOMMC8Z' where id=7; -update noar ti set b1='KWTYAN3JHT7RVQGOMMC8Z' where id=7; -update noar tt set v0='DT2AYTM1RYB5ELQKU3B2' where id=7; -update noar ti set v0='DT2AYTM1RYB5ELQKU3B2' where id=7; -update noar tt set b2='2H5XXD4MLKVUKKLHM6' where id=7; -update noar ti set b2='2H5XXD4MLKVUKKLHM6' where id=7; -update noar tt set v0='XII6KEUC23X' where id=8; -update noar ti set v0='XII6KEUC23X' where id=8; -update noar tt set b0='KM9J386EX9MJLD79POMU4' where id=8; -update noar ti set b0='KM9J386EX9MJLD79POMU4' where id=8; -update noar tt set v0='0JLFR7G9QWSUO' where id=8; -update noar ti set v0='0JLFR7G9QWSUO' where id=8; -update noar tt set b1='DLAAOUBXYGC87UIV88LM9' where id=8; -update noar ti set b1='DLAAOUBXYGC87UIV88LM9' where id=8; -update noar tt set v0='JKVYZY6K0RCCLRMEX0E' where id=8; -update noar ti set v0='JKVYZY6K0RCCLRMEX0E' where id=8; -update noar tt set b2='EW5AG' where id=8; -update noar ti set b2='EW5AG' where id=8; -update noar tt set v0='BJ3I5IB' where id=9; -update noar ti set v0='BJ3I5IB' where id=9; -update noar tt set b0='5QNVTA0D23UQ' where id=9; -update noar ti set b0='5QNVTA0D23UQ' where id=9; -update noar tt set v0='LLROIM1QK2YUBGD2SCAAGEE90Y' where id=9; -update noar ti set v0='LLROIM1QK2YUBGD2SCAAGEE90Y' where id=9; -update noar tt set b1='BLBPU6CTR3FZH71YP8WEYRGS1LE33EP' where id=9; -update noar ti set b1='BLBPU6CTR3FZH71YP8WEYRGS1LE33EP' where id=9; -update noar tt set v0='W6YY3MSY6OGNZL5YDGJ95' where id=9; -update noar ti set v0='W6YY3MSY6OGNZL5YDGJ95' where id=9; -update noar tt set b2='1ES1IN7ZEVXSNP9G2T' where id=9; -update noar ti set b2='1ES1IN7ZEVXSNP9G2T' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -v0 varchar(32) not null, -b0 mediumblob not null, -b1 longblob not null, -b2 mediumblob not null -) engine=tokudb; -insert into tt values (1,'','','',''); -insert into tt values (2,'','','',''); -insert into tt values (3,'','','',''); -insert into tt values (4,'','','',''); -insert into tt values (5,'','','',''); -insert into tt values (6,'','','',''); -insert into tt values (7,'','','',''); -insert into tt values (8,'','','',''); -insert into tt values (9,'','','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='NNCHWZG' where id=1; -update noar ti set v0='NNCHWZG' where id=1; -update noar tt set b0='V62LJQQ1N8Z' where id=1; -update noar ti set b0='V62LJQQ1N8Z' where id=1; -update noar tt set v0='UP6JH766TL8DIPJW26GG' where id=1; -update noar ti set v0='UP6JH766TL8DIPJW26GG' where id=1; -update noar tt set b1='972' where id=1; -update noar ti set b1='972' where id=1; -update noar tt set v0='V76YTXYWIB5CQE3JP7WH31' where id=1; -update noar ti set v0='V76YTXYWIB5CQE3JP7WH31' where id=1; -update noar tt set b2='UOQ975H6L3E2L761L978SIFX' where id=1; -update noar ti set b2='UOQ975H6L3E2L761L978SIFX' where id=1; -update noar tt set v0='6V8F8IBA24O20SELD' where id=2; -update noar ti set v0='6V8F8IBA24O20SELD' where id=2; -update noar tt set b0='C7UHQE5LRMP6GCS9LJHP3PJ3' where id=2; -update noar ti set b0='C7UHQE5LRMP6GCS9LJHP3PJ3' where id=2; -update noar tt set v0='I8KDINPV3HQDCOFVSTOI' where id=2; -update noar ti set v0='I8KDINPV3HQDCOFVSTOI' where id=2; -update noar tt set b1='GNHXYR7U8X' where id=2; -update noar ti set b1='GNHXYR7U8X' where id=2; -update noar tt set v0='IL8' where id=2; -update noar ti set v0='IL8' where id=2; -update noar tt set b2='V9NL7V5CEW4EOUIML3PGE0YA2' where id=2; -update noar ti set b2='V9NL7V5CEW4EOUIML3PGE0YA2' where id=2; -update noar tt set v0='S63FMJ' where id=3; -update noar ti set v0='S63FMJ' where id=3; -update noar tt set b0='VRLARBNL5LFZZXO' where id=3; -update noar ti set b0='VRLARBNL5LFZZXO' where id=3; -update noar tt set v0='9HBT0A45DHHLBMNK6DOEZYI' where id=3; -update noar ti set v0='9HBT0A45DHHLBMNK6DOEZYI' where id=3; -update noar tt set b1='QLXOSRJSFXFOMJUXSBYHU' where id=3; -update noar ti set b1='QLXOSRJSFXFOMJUXSBYHU' where id=3; -update noar tt set v0='8KDWYIM24DDZD8GBGZ' where id=3; -update noar ti set v0='8KDWYIM24DDZD8GBGZ' where id=3; -update noar tt set b2='W0M52DI0AXF3ITN9FA68MFZDHL1AO7A' where id=3; -update noar ti set b2='W0M52DI0AXF3ITN9FA68MFZDHL1AO7A' where id=3; -update noar tt set v0='816JGL6G79SMB' where id=4; -update noar ti set v0='816JGL6G79SMB' where id=4; -update noar tt set b0='172JZ8EV6BG5E4BS' where id=4; -update noar ti set b0='172JZ8EV6BG5E4BS' where id=4; -update noar tt set v0='6CA538UKIEPYDC7MA2BLT0' where id=4; -update noar ti set v0='6CA538UKIEPYDC7MA2BLT0' where id=4; -update noar tt set b1='2S25DBO8AGY7QYZ9RX9' where id=4; -update noar ti set b1='2S25DBO8AGY7QYZ9RX9' where id=4; -update noar tt set v0='VBHPTZFVTJUHGGE71L2O' where id=4; -update noar ti set v0='VBHPTZFVTJUHGGE71L2O' where id=4; -update noar tt set b2='1ZBLWOA2SI93MVUVNBE82WXY71SQHQ' where id=4; -update noar ti set b2='1ZBLWOA2SI93MVUVNBE82WXY71SQHQ' where id=4; -update noar tt set v0='FW7643Z' where id=5; -update noar ti set v0='FW7643Z' where id=5; -update noar tt set b0='ZN813I0S8998E31Q1QFMHHBU' where id=5; -update noar ti set b0='ZN813I0S8998E31Q1QFMHHBU' where id=5; -update noar tt set v0='KS9LRDYKYKJEUA8VT887' where id=5; -update noar ti set v0='KS9LRDYKYKJEUA8VT887' where id=5; -update noar tt set b1='CXN90DC77STQC8FZBC31' where id=5; -update noar ti set b1='CXN90DC77STQC8FZBC31' where id=5; -update noar tt set v0='HZSW3GC2GD5F1U8SYG16TNIN' where id=5; -update noar ti set v0='HZSW3GC2GD5F1U8SYG16TNIN' where id=5; -update noar tt set b2='PAHYVJY6K5EAMHW2R674' where id=5; -update noar ti set b2='PAHYVJY6K5EAMHW2R674' where id=5; -update noar tt set v0='KYQ2YM4SP8T52EDP7' where id=6; -update noar ti set v0='KYQ2YM4SP8T52EDP7' where id=6; -update noar tt set b0='QGAJ4I' where id=6; -update noar ti set b0='QGAJ4I' where id=6; -update noar tt set v0='HVBHKHZQ1JK4H1QHHQ3TT' where id=6; -update noar ti set v0='HVBHKHZQ1JK4H1QHHQ3TT' where id=6; -update noar tt set b1='6W9U8TSLOW1BGPJRO3LLA7KMACW9' where id=6; -update noar ti set b1='6W9U8TSLOW1BGPJRO3LLA7KMACW9' where id=6; -update noar tt set v0='W14WY3M9SSHZ39C7P54RN1WPJ9YZAB0' where id=6; -update noar ti set v0='W14WY3M9SSHZ39C7P54RN1WPJ9YZAB0' where id=6; -update noar tt set b2='10LWIW6DZJAC' where id=6; -update noar ti set b2='10LWIW6DZJAC' where id=6; -update noar tt set v0='AZJVV74K5E60TAP0R7BXR8N0BL' where id=7; -update noar ti set v0='AZJVV74K5E60TAP0R7BXR8N0BL' where id=7; -update noar tt set b0='HTRBI14ZEVI' where id=7; -update noar ti set b0='HTRBI14ZEVI' where id=7; -update noar tt set v0='YPZDK29RF' where id=7; -update noar ti set v0='YPZDK29RF' where id=7; -update noar tt set b1='IF42WK3QIJDZ2U8Z5PVS53' where id=7; -update noar ti set b1='IF42WK3QIJDZ2U8Z5PVS53' where id=7; -update noar tt set v0='EQ6Q8EY87BHUD9BH762SKD1EYY8' where id=7; -update noar ti set v0='EQ6Q8EY87BHUD9BH762SKD1EYY8' where id=7; -update noar tt set b2='BKC0IGEBLGMXCBK873X0UG4TCO9' where id=7; -update noar ti set b2='BKC0IGEBLGMXCBK873X0UG4TCO9' where id=7; -update noar tt set v0='GVOYN7JMCCC' where id=8; -update noar ti set v0='GVOYN7JMCCC' where id=8; -update noar tt set b0='R22TS1O1GEY34' where id=8; -update noar ti set b0='R22TS1O1GEY34' where id=8; -update noar tt set v0='4RN0AJO7WY30RWALO30QQ2401' where id=8; -update noar ti set v0='4RN0AJO7WY30RWALO30QQ2401' where id=8; -update noar tt set b1='35EU66WGWFFKL64MH2NVQJ9ZCDK' where id=8; -update noar ti set b1='35EU66WGWFFKL64MH2NVQJ9ZCDK' where id=8; -update noar tt set v0='Y8' where id=8; -update noar ti set v0='Y8' where id=8; -update noar tt set b2='QLTZBSKPUFAMX1ZAC' where id=8; -update noar ti set b2='QLTZBSKPUFAMX1ZAC' where id=8; -update noar tt set v0='CECRHPZC3MFG155D' where id=9; -update noar ti set v0='CECRHPZC3MFG155D' where id=9; -update noar tt set b0='8GR46T3GF5TN' where id=9; -update noar ti set b0='8GR46T3GF5TN' where id=9; -update noar tt set v0='W2TCPWFKBPA' where id=9; -update noar ti set v0='W2TCPWFKBPA' where id=9; -update noar tt set b1='ZS20088B3OEEY8X1YRHC8BORTB0TSMEW' where id=9; -update noar ti set b1='ZS20088B3OEEY8X1YRHC8BORTB0TSMEW' where id=9; -update noar tt set v0='FWBPYW42JN3FSCW00' where id=9; -update noar ti set v0='FWBPYW42JN3FSCW00' where id=9; -update noar tt set b2='AM9E34IYOFC' where id=9; -update noar ti set b2='AM9E34IYOFC' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -v0 varchar(256) not null, -b0 mediumblob not null, -b1 longblob not null, -b2 mediumblob not null -) engine=tokudb; -insert into tt values (1,'','','',''); -insert into tt values (2,'','','',''); -insert into tt values (3,'','','',''); -insert into tt values (4,'','','',''); -insert into tt values (5,'','','',''); -insert into tt values (6,'','','',''); -insert into tt values (7,'','','',''); -insert into tt values (8,'','','',''); -insert into tt values (9,'','','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='PS8276JENLW25W7AWMZB3LN5KF' where id=1; -update noar ti set v0='PS8276JENLW25W7AWMZB3LN5KF' where id=1; -update noar tt set b0='FQ62XXOGQPK14KWKHKDT' where id=1; -update noar ti set b0='FQ62XXOGQPK14KWKHKDT' where id=1; -update noar tt set v0='593GWDBUDFVYIHVW2QYM0KUFWL694M' where id=1; -update noar ti set v0='593GWDBUDFVYIHVW2QYM0KUFWL694M' where id=1; -update noar tt set b1='RW0' where id=1; -update noar ti set b1='RW0' where id=1; -update noar tt set v0='ZW71DEKRQHWI2HX7K2' where id=1; -update noar ti set v0='ZW71DEKRQHWI2HX7K2' where id=1; -update noar tt set b2='TIRRRSO01XQ24MGKG' where id=1; -update noar ti set b2='TIRRRSO01XQ24MGKG' where id=1; -update noar tt set v0='AW6GICB7IOEUDJXTPPZQX' where id=2; -update noar ti set v0='AW6GICB7IOEUDJXTPPZQX' where id=2; -update noar tt set b0='EP5HNJD059W00PXYSDH' where id=2; -update noar ti set b0='EP5HNJD059W00PXYSDH' where id=2; -update noar tt set v0='Z4C4ULL7Q20C5S3IILVZCZRPY3E' where id=2; -update noar ti set v0='Z4C4ULL7Q20C5S3IILVZCZRPY3E' where id=2; -update noar tt set b1='7VBK' where id=2; -update noar ti set b1='7VBK' where id=2; -update noar tt set v0='38L418T35CUX91R4Y8HR9DW' where id=2; -update noar ti set v0='38L418T35CUX91R4Y8HR9DW' where id=2; -update noar tt set b2='7AKF9CTL528AXDYY2G9B31JO6O' where id=2; -update noar ti set b2='7AKF9CTL528AXDYY2G9B31JO6O' where id=2; -update noar tt set v0='JRI0NYXJET2O52DNLHA2' where id=3; -update noar ti set v0='JRI0NYXJET2O52DNLHA2' where id=3; -update noar tt set b0='ERIVS2PFP' where id=3; -update noar ti set b0='ERIVS2PFP' where id=3; -update noar tt set v0='E1VHJS7OPQK5PI' where id=3; -update noar ti set v0='E1VHJS7OPQK5PI' where id=3; -update noar tt set b1='ZJPITF0GVESBKINVI5P1QNPKJVVE' where id=3; -update noar ti set b1='ZJPITF0GVESBKINVI5P1QNPKJVVE' where id=3; -update noar tt set v0='R08MVVJ8NONN9S2KCU063XAUTGLBAZ' where id=3; -update noar ti set v0='R08MVVJ8NONN9S2KCU063XAUTGLBAZ' where id=3; -update noar tt set b2='I52ES10M7L4TXORS' where id=3; -update noar ti set b2='I52ES10M7L4TXORS' where id=3; -update noar tt set v0='223U0E7F2EXKOMFI2E' where id=4; -update noar ti set v0='223U0E7F2EXKOMFI2E' where id=4; -update noar tt set b0='ZF641A' where id=4; -update noar ti set b0='ZF641A' where id=4; -update noar tt set v0='P8DQ1M0W5ONK2' where id=4; -update noar ti set v0='P8DQ1M0W5ONK2' where id=4; -update noar tt set b1='RDMQ3Q7YJW13CD' where id=4; -update noar ti set b1='RDMQ3Q7YJW13CD' where id=4; -update noar tt set v0='XW9LZLLRA8XVUN' where id=4; -update noar ti set v0='XW9LZLLRA8XVUN' where id=4; -update noar tt set b2='OJFYL' where id=4; -update noar ti set b2='OJFYL' where id=4; -update noar tt set v0='MZGAQ08ADA8898CLLQKRKRH8KT9O6' where id=5; -update noar ti set v0='MZGAQ08ADA8898CLLQKRKRH8KT9O6' where id=5; -update noar tt set b0='V5L442FIMKA7U8' where id=5; -update noar ti set b0='V5L442FIMKA7U8' where id=5; -update noar tt set v0='2J4CSIV3GI415AHC' where id=5; -update noar ti set v0='2J4CSIV3GI415AHC' where id=5; -update noar tt set b1='ID0BB5P5XM5GWRKR' where id=5; -update noar ti set b1='ID0BB5P5XM5GWRKR' where id=5; -update noar tt set v0='PP18FE7JX3OITBTC7X7' where id=5; -update noar ti set v0='PP18FE7JX3OITBTC7X7' where id=5; -update noar tt set b2='0W6QFAA9MPB4M2A90O2H58A' where id=5; -update noar ti set b2='0W6QFAA9MPB4M2A90O2H58A' where id=5; -update noar tt set v0='LWRKR8J' where id=6; -update noar ti set v0='LWRKR8J' where id=6; -update noar tt set b0='AHZTRCOTKJO0E' where id=6; -update noar ti set b0='AHZTRCOTKJO0E' where id=6; -update noar tt set v0='H5WHHBYH350Q3' where id=6; -update noar ti set v0='H5WHHBYH350Q3' where id=6; -update noar tt set b1='1EEIEPCDY5OCB7CO622UN' where id=6; -update noar ti set b1='1EEIEPCDY5OCB7CO622UN' where id=6; -update noar tt set v0='A98DPKO' where id=6; -update noar ti set v0='A98DPKO' where id=6; -update noar tt set b2='BJAFLN7RY7E3QB2Q' where id=6; -update noar ti set b2='BJAFLN7RY7E3QB2Q' where id=6; -update noar tt set v0='3QBNUE4ONWQHXJ8NTHER' where id=7; -update noar ti set v0='3QBNUE4ONWQHXJ8NTHER' where id=7; -update noar tt set b0='HFW09CGB1L4EZA2E76KDE9G0SCF' where id=7; -update noar ti set b0='HFW09CGB1L4EZA2E76KDE9G0SCF' where id=7; -update noar tt set v0='HLEK8UNBAD3D4W6VT7QZXQFZ1JI' where id=7; -update noar ti set v0='HLEK8UNBAD3D4W6VT7QZXQFZ1JI' where id=7; -update noar tt set b1='UVN3' where id=7; -update noar ti set b1='UVN3' where id=7; -update noar tt set v0='MU' where id=7; -update noar ti set v0='MU' where id=7; -update noar tt set b2='SPHNA52UAJEGA6AY22VHH0EUS0O' where id=7; -update noar ti set b2='SPHNA52UAJEGA6AY22VHH0EUS0O' where id=7; -update noar tt set v0='ZXUMZ2T3Y' where id=8; -update noar ti set v0='ZXUMZ2T3Y' where id=8; -update noar tt set b0='JYHP9LSMJO0U7KX' where id=8; -update noar ti set b0='JYHP9LSMJO0U7KX' where id=8; -update noar tt set v0='SFQS3F7E873MQ' where id=8; -update noar ti set v0='SFQS3F7E873MQ' where id=8; -update noar tt set b1='E9A5231B2K1EIWDRBLJ3Y7ZZEP2' where id=8; -update noar ti set b1='E9A5231B2K1EIWDRBLJ3Y7ZZEP2' where id=8; -update noar tt set v0='EI95FML8RIXJ43CNELEI1S4X39' where id=8; -update noar ti set v0='EI95FML8RIXJ43CNELEI1S4X39' where id=8; -update noar tt set b2='HD1VYYTYGQHE1ZRRW5CN' where id=8; -update noar ti set b2='HD1VYYTYGQHE1ZRRW5CN' where id=8; -update noar tt set v0='AUA57HQBP5GGDQ' where id=9; -update noar ti set v0='AUA57HQBP5GGDQ' where id=9; -update noar tt set b0='HWZFNCTUMFQGO816CM95ZUOFQ' where id=9; -update noar ti set b0='HWZFNCTUMFQGO816CM95ZUOFQ' where id=9; -update noar tt set v0='GXRANG' where id=9; -update noar ti set v0='GXRANG' where id=9; -update noar tt set b1='6F66DRUTYRLQWS7F9N' where id=9; -update noar ti set b1='6F66DRUTYRLQWS7F9N' where id=9; -update noar tt set v0='65JAXOFRP8VJGA078GKVCB2MMJQXB699' where id=9; -update noar ti set v0='65JAXOFRP8VJGA078GKVCB2MMJQXB699' where id=9; -update noar tt set b2='T5R0EJCJ8159HT9JATA1SU' where id=9; -update noar ti set b2='T5R0EJCJ8159HT9JATA1SU' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -v0 varchar(32) null, -b0 mediumblob null, -b1 longblob null, -b2 longblob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='XRYHJO6E2DFBIYWBFQUA9' where id=1; -update noar ti set v0='XRYHJO6E2DFBIYWBFQUA9' where id=1; -update noar tt set b0='R3XBQA7TPBCBUJ9OV4NUBQGXE8JS0MX' where id=1; -update noar ti set b0='R3XBQA7TPBCBUJ9OV4NUBQGXE8JS0MX' where id=1; -update noar tt set v0='0JH205WDY4' where id=1; -update noar ti set v0='0JH205WDY4' where id=1; -update noar tt set b1='XPJLGAM5G5MBMOYL8' where id=1; -update noar ti set b1='XPJLGAM5G5MBMOYL8' where id=1; -update noar tt set v0='5Z4ZTNXUH2OFO8AYIEU' where id=1; -update noar ti set v0='5Z4ZTNXUH2OFO8AYIEU' where id=1; -update noar tt set b2='T6L1A41RFVS5XPOZUW0ZF' where id=1; -update noar ti set b2='T6L1A41RFVS5XPOZUW0ZF' where id=1; -update noar tt set v0='H4ZV7BVH18JJJCL' where id=2; -update noar ti set v0='H4ZV7BVH18JJJCL' where id=2; -update noar tt set b0='UUJ896ZTCDUXHP' where id=2; -update noar ti set b0='UUJ896ZTCDUXHP' where id=2; -update noar tt set v0='QSXKD8WSFV94FN9NXC7FLXOW' where id=2; -update noar ti set v0='QSXKD8WSFV94FN9NXC7FLXOW' where id=2; -update noar tt set b1='I8N6W3K21XI2IQ9BYX2LVPO' where id=2; -update noar ti set b1='I8N6W3K21XI2IQ9BYX2LVPO' where id=2; -update noar tt set v0='Q7TPGAEMO4PGSWXUT4O06PHQ2QH9' where id=2; -update noar ti set v0='Q7TPGAEMO4PGSWXUT4O06PHQ2QH9' where id=2; -update noar tt set b2='APWOW9YW6HUWF9M3RMQUD4I' where id=2; -update noar ti set b2='APWOW9YW6HUWF9M3RMQUD4I' where id=2; -update noar tt set v0='FC0Q71ZFT3KL0LGJRXQUORTYCM917Z' where id=3; -update noar ti set v0='FC0Q71ZFT3KL0LGJRXQUORTYCM917Z' where id=3; -update noar tt set b0='1' where id=3; -update noar ti set b0='1' where id=3; -update noar tt set v0='I7E' where id=3; -update noar ti set v0='I7E' where id=3; -update noar tt set b1='3FDG83' where id=3; -update noar ti set b1='3FDG83' where id=3; -update noar tt set v0='4ORPNPK' where id=3; -update noar ti set v0='4ORPNPK' where id=3; -update noar tt set b2='2ULS9K' where id=3; -update noar ti set b2='2ULS9K' where id=3; -update noar tt set v0='O1PMBHY075U16X935JJMK08S' where id=4; -update noar ti set v0='O1PMBHY075U16X935JJMK08S' where id=4; -update noar tt set b0='K' where id=4; -update noar ti set b0='K' where id=4; -update noar tt set v0='7R9KQ82H4G50ZJ3LMWBAXQNY46NM3X' where id=4; -update noar ti set v0='7R9KQ82H4G50ZJ3LMWBAXQNY46NM3X' where id=4; -update noar tt set b1='EEPNPN8V7SKDXQ7RS2JUIU2D3UZ9DE' where id=4; -update noar ti set b1='EEPNPN8V7SKDXQ7RS2JUIU2D3UZ9DE' where id=4; -update noar tt set v0='0YAIGU3LQJN5DGBEYTYN7NGPMUD' where id=4; -update noar ti set v0='0YAIGU3LQJN5DGBEYTYN7NGPMUD' where id=4; -update noar tt set b2='OR3MRXDHIE4CF8NTR10N' where id=4; -update noar ti set b2='OR3MRXDHIE4CF8NTR10N' where id=4; -update noar tt set v0='4EZSHZKP6BQIPO8US8H1VKVMU1ZT4E' where id=5; -update noar ti set v0='4EZSHZKP6BQIPO8US8H1VKVMU1ZT4E' where id=5; -update noar tt set b0='3H' where id=5; -update noar ti set b0='3H' where id=5; -update noar tt set v0='QMWPWW1CXB' where id=5; -update noar ti set v0='QMWPWW1CXB' where id=5; -update noar tt set b1='AX5RLDPA' where id=5; -update noar ti set b1='AX5RLDPA' where id=5; -update noar tt set v0='4ROM60I2Z33' where id=5; -update noar ti set v0='4ROM60I2Z33' where id=5; -update noar tt set b2='90ZSZJFO0' where id=5; -update noar ti set b2='90ZSZJFO0' where id=5; -update noar tt set v0='DQEVQS4J' where id=6; -update noar ti set v0='DQEVQS4J' where id=6; -update noar tt set b0='YM5MYGDHFWM9GNSG' where id=6; -update noar ti set b0='YM5MYGDHFWM9GNSG' where id=6; -update noar tt set v0='KUT48NZFM7IY' where id=6; -update noar ti set v0='KUT48NZFM7IY' where id=6; -update noar tt set b1='Y2A0EHDBB5UZ4GYFP9WO' where id=6; -update noar ti set b1='Y2A0EHDBB5UZ4GYFP9WO' where id=6; -update noar tt set v0='MJ92HTW2XUQ02JPJ421LUIYLDQ1' where id=6; -update noar ti set v0='MJ92HTW2XUQ02JPJ421LUIYLDQ1' where id=6; -update noar tt set b2='7AMJCK45ASCK4OUB' where id=6; -update noar ti set b2='7AMJCK45ASCK4OUB' where id=6; -update noar tt set v0='Z6UJT8M6Z4KC5E0THQ' where id=7; -update noar ti set v0='Z6UJT8M6Z4KC5E0THQ' where id=7; -update noar tt set b0='W334K2AZZA' where id=7; -update noar ti set b0='W334K2AZZA' where id=7; -update noar tt set v0='5WKZ8O2O89GXP9MC6A6HOQ4OG' where id=7; -update noar ti set v0='5WKZ8O2O89GXP9MC6A6HOQ4OG' where id=7; -update noar tt set b1='OK0W67ORO' where id=7; -update noar ti set b1='OK0W67ORO' where id=7; -update noar tt set v0='AD8234RVE9D88NZQ' where id=7; -update noar ti set v0='AD8234RVE9D88NZQ' where id=7; -update noar tt set b2='NCI9L5L' where id=7; -update noar ti set b2='NCI9L5L' where id=7; -update noar tt set v0='7OH8BLDL' where id=8; -update noar ti set v0='7OH8BLDL' where id=8; -update noar tt set b0='C4RH' where id=8; -update noar ti set b0='C4RH' where id=8; -update noar tt set v0='KHLQ5K9K28ULKKHU6KEV' where id=8; -update noar ti set v0='KHLQ5K9K28ULKKHU6KEV' where id=8; -update noar tt set b1='XJWIA4AF20PZDVQ6H' where id=8; -update noar ti set b1='XJWIA4AF20PZDVQ6H' where id=8; -update noar tt set v0='VAN6D2ZK7ZBR4JRHQUU5' where id=8; -update noar ti set v0='VAN6D2ZK7ZBR4JRHQUU5' where id=8; -update noar tt set b2='84XOQYON69B29PJF1K410X5VGNI5X' where id=8; -update noar ti set b2='84XOQYON69B29PJF1K410X5VGNI5X' where id=8; -update noar tt set v0='X6M2XK1HFG2' where id=9; -update noar ti set v0='X6M2XK1HFG2' where id=9; -update noar tt set b0='K63E' where id=9; -update noar ti set b0='K63E' where id=9; -update noar tt set v0='J82ASN9450NFQBR30S2' where id=9; -update noar ti set v0='J82ASN9450NFQBR30S2' where id=9; -update noar tt set b1='SN2T8P1CCWIBYCRFGXDFJO8B' where id=9; -update noar ti set b1='SN2T8P1CCWIBYCRFGXDFJO8B' where id=9; -update noar tt set v0='5625AQU4J5MNRI65A' where id=9; -update noar ti set v0='5625AQU4J5MNRI65A' where id=9; -update noar tt set b2='I4D5VW0LEQ3PABO' where id=9; -update noar ti set b2='I4D5VW0LEQ3PABO' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -v0 varchar(256) null, -b0 mediumblob null, -b1 longblob null, -b2 longblob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='0BPTF92ADUFGK8NPZGP' where id=1; -update noar ti set v0='0BPTF92ADUFGK8NPZGP' where id=1; -update noar tt set b0='A4TC8QLOP7ZMTHRQ88DC7E04AQK5YT' where id=1; -update noar ti set b0='A4TC8QLOP7ZMTHRQ88DC7E04AQK5YT' where id=1; -update noar tt set v0='AVEXP37LCH6NUYO' where id=1; -update noar ti set v0='AVEXP37LCH6NUYO' where id=1; -update noar tt set b1='LZIIS4V6XZV1UO3K99' where id=1; -update noar ti set b1='LZIIS4V6XZV1UO3K99' where id=1; -update noar tt set v0='WI21TIKKAAFGPNFWWMY7NE7U1QM' where id=1; -update noar ti set v0='WI21TIKKAAFGPNFWWMY7NE7U1QM' where id=1; -update noar tt set b2='CRLUDYC9IY8RAZN92VNV' where id=1; -update noar ti set b2='CRLUDYC9IY8RAZN92VNV' where id=1; -update noar tt set v0='AZPAWHEZIVRCI' where id=2; -update noar ti set v0='AZPAWHEZIVRCI' where id=2; -update noar tt set b0='GPHBYSOBEO8338JF8JRMSFRH3' where id=2; -update noar ti set b0='GPHBYSOBEO8338JF8JRMSFRH3' where id=2; -update noar tt set v0='PRX4G3CGU33QXL4D8GMZK4QRTL6' where id=2; -update noar ti set v0='PRX4G3CGU33QXL4D8GMZK4QRTL6' where id=2; -update noar tt set b1='771QV07PW9H6DHVT8NTGJ' where id=2; -update noar ti set b1='771QV07PW9H6DHVT8NTGJ' where id=2; -update noar tt set v0='HMN' where id=2; -update noar ti set v0='HMN' where id=2; -update noar tt set b2='H' where id=2; -update noar ti set b2='H' where id=2; -update noar tt set v0='QT8AHVEEUY4YE3QP' where id=3; -update noar ti set v0='QT8AHVEEUY4YE3QP' where id=3; -update noar tt set b0='G2K48C04S83TCEKYVOV33JVRBGP9AH' where id=3; -update noar ti set b0='G2K48C04S83TCEKYVOV33JVRBGP9AH' where id=3; -update noar tt set v0='K28L41LNI3UNDERFG6F' where id=3; -update noar ti set v0='K28L41LNI3UNDERFG6F' where id=3; -update noar tt set b1='OMTGMTL6BAPFNJM7165SRWZ4A5QIWZM' where id=3; -update noar ti set b1='OMTGMTL6BAPFNJM7165SRWZ4A5QIWZM' where id=3; -update noar tt set v0='ZW9Y8TJU554E32P' where id=3; -update noar ti set v0='ZW9Y8TJU554E32P' where id=3; -update noar tt set b2='V1GVNA2OS8Q2OVJ8CCA6VS5ROQIQ' where id=3; -update noar ti set b2='V1GVNA2OS8Q2OVJ8CCA6VS5ROQIQ' where id=3; -update noar tt set v0='ECN55GSELF1JY' where id=4; -update noar ti set v0='ECN55GSELF1JY' where id=4; -update noar tt set b0='S1' where id=4; -update noar ti set b0='S1' where id=4; -update noar tt set v0='SDK17N5IEDSK8ZNJ5W6D' where id=4; -update noar ti set v0='SDK17N5IEDSK8ZNJ5W6D' where id=4; -update noar tt set b1='WZPKFLC302AROII0' where id=4; -update noar ti set b1='WZPKFLC302AROII0' where id=4; -update noar tt set v0='UOET36' where id=4; -update noar ti set v0='UOET36' where id=4; -update noar tt set b2='TZGTB267C9XCOUM32REXAZE' where id=4; -update noar ti set b2='TZGTB267C9XCOUM32REXAZE' where id=4; -update noar tt set v0='6F9RNV2E6OZ2RJZOX4GRM0JM21HSBGZR' where id=5; -update noar ti set v0='6F9RNV2E6OZ2RJZOX4GRM0JM21HSBGZR' where id=5; -update noar tt set b0='BYMXMSQO5T71VS317HR3T' where id=5; -update noar ti set b0='BYMXMSQO5T71VS317HR3T' where id=5; -update noar tt set v0='9YTTI1EMLUHC0VFC01' where id=5; -update noar ti set v0='9YTTI1EMLUHC0VFC01' where id=5; -update noar tt set b1='B767P9QSSTG3XZPYHM77DB6BXECBRHLK' where id=5; -update noar ti set b1='B767P9QSSTG3XZPYHM77DB6BXECBRHLK' where id=5; -update noar tt set v0='O7KGCHNOX9N' where id=5; -update noar ti set v0='O7KGCHNOX9N' where id=5; -update noar tt set b2='PU8' where id=5; -update noar ti set b2='PU8' where id=5; -update noar tt set v0='HYSOHU' where id=6; -update noar ti set v0='HYSOHU' where id=6; -update noar tt set b0='4OIVYTCHV' where id=6; -update noar ti set b0='4OIVYTCHV' where id=6; -update noar tt set v0='VC8RXP3MN15O10QZ4VZOHUN3PNO' where id=6; -update noar ti set v0='VC8RXP3MN15O10QZ4VZOHUN3PNO' where id=6; -update noar tt set b1='HS9TLI0SS4GLH9HJE3MBBWRCFO1' where id=6; -update noar ti set b1='HS9TLI0SS4GLH9HJE3MBBWRCFO1' where id=6; -update noar tt set v0='T6570PPLMITPCPD' where id=6; -update noar ti set v0='T6570PPLMITPCPD' where id=6; -update noar tt set b2='D76S0N5AI7XIID6T1ASG8NTWP92S' where id=6; -update noar ti set b2='D76S0N5AI7XIID6T1ASG8NTWP92S' where id=6; -update noar tt set v0='IANCRZHUB31M4R4VGA' where id=7; -update noar ti set v0='IANCRZHUB31M4R4VGA' where id=7; -update noar tt set b0='961A1S' where id=7; -update noar ti set b0='961A1S' where id=7; -update noar tt set v0='MU21O5VHGYC4RL3MJ8EZ' where id=7; -update noar ti set v0='MU21O5VHGYC4RL3MJ8EZ' where id=7; -update noar tt set b1='OS7M7QJLG5TUQ4MOMBJ' where id=7; -update noar ti set b1='OS7M7QJLG5TUQ4MOMBJ' where id=7; -update noar tt set v0='UY' where id=7; -update noar ti set v0='UY' where id=7; -update noar tt set b2='JRK9MJ752JTPUKMZZQPF6' where id=7; -update noar ti set b2='JRK9MJ752JTPUKMZZQPF6' where id=7; -update noar tt set v0='D0KT' where id=8; -update noar ti set v0='D0KT' where id=8; -update noar tt set b0='A7LAQ6U07Q92OP0UTB2HSZ84F50R' where id=8; -update noar ti set b0='A7LAQ6U07Q92OP0UTB2HSZ84F50R' where id=8; -update noar tt set v0='CV5OY830BXQQXL95JDX3' where id=8; -update noar ti set v0='CV5OY830BXQQXL95JDX3' where id=8; -update noar tt set b1='1ZNFCTS3C2M' where id=8; -update noar ti set b1='1ZNFCTS3C2M' where id=8; -update noar tt set v0='2M5XH8SUK' where id=8; -update noar ti set v0='2M5XH8SUK' where id=8; -update noar tt set b2='5B335GUE2CA65AO8' where id=8; -update noar ti set b2='5B335GUE2CA65AO8' where id=8; -update noar tt set v0='UKR7HGQ' where id=9; -update noar ti set v0='UKR7HGQ' where id=9; -update noar tt set b0='VQH8ONUT7REUY2UF4RZT2HE3IZ5OXS94' where id=9; -update noar ti set b0='VQH8ONUT7REUY2UF4RZT2HE3IZ5OXS94' where id=9; -update noar tt set v0='1ZGID7OWPXRUNPMTLAVB' where id=9; -update noar ti set v0='1ZGID7OWPXRUNPMTLAVB' where id=9; -update noar tt set b1='3736ZBEFFYM1VB4ONERO' where id=9; -update noar ti set b1='3736ZBEFFYM1VB4ONERO' where id=9; -update noar tt set v0='DM41BH75U' where id=9; -update noar ti set v0='DM41BH75U' where id=9; -update noar tt set b2='Y4KONN4LCCDPL6TO8D20ZIPQ8OXBNFZ' where id=9; -update noar ti set b2='Y4KONN4LCCDPL6TO8D20ZIPQ8OXBNFZ' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -v0 varchar(32) not null, -b0 mediumblob not null, -b1 longblob not null, -b2 longblob not null -) engine=tokudb; -insert into tt values (1,'','','',''); -insert into tt values (2,'','','',''); -insert into tt values (3,'','','',''); -insert into tt values (4,'','','',''); -insert into tt values (5,'','','',''); -insert into tt values (6,'','','',''); -insert into tt values (7,'','','',''); -insert into tt values (8,'','','',''); -insert into tt values (9,'','','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='P9754ISX9ROQI08URN1' where id=1; -update noar ti set v0='P9754ISX9ROQI08URN1' where id=1; -update noar tt set b0='4BBTZ86HNXI6XSDIN2L' where id=1; -update noar ti set b0='4BBTZ86HNXI6XSDIN2L' where id=1; -update noar tt set v0='0RAT02RZ4IKOB3' where id=1; -update noar ti set v0='0RAT02RZ4IKOB3' where id=1; -update noar tt set b1='16XK' where id=1; -update noar ti set b1='16XK' where id=1; -update noar tt set v0='N3FG8WXXK6N17UHB8ZM285U' where id=1; -update noar ti set v0='N3FG8WXXK6N17UHB8ZM285U' where id=1; -update noar tt set b2='RMYJW6GIOKWPWN4UAEIDC' where id=1; -update noar ti set b2='RMYJW6GIOKWPWN4UAEIDC' where id=1; -update noar tt set v0='PX91W0OI4F' where id=2; -update noar ti set v0='PX91W0OI4F' where id=2; -update noar tt set b0='A78080RH6BZE5X1J8QU9H49YHAZV' where id=2; -update noar ti set b0='A78080RH6BZE5X1J8QU9H49YHAZV' where id=2; -update noar tt set v0='JOPIZFWL0ZLP7FC2RL1013B0' where id=2; -update noar ti set v0='JOPIZFWL0ZLP7FC2RL1013B0' where id=2; -update noar tt set b1='VAGWTRWGIL2' where id=2; -update noar ti set b1='VAGWTRWGIL2' where id=2; -update noar tt set v0='M2XRI5T8YS4Q0TX0YG' where id=2; -update noar ti set v0='M2XRI5T8YS4Q0TX0YG' where id=2; -update noar tt set b2='YSPL89LJE0PAFXNTZZJ5W6T7O' where id=2; -update noar ti set b2='YSPL89LJE0PAFXNTZZJ5W6T7O' where id=2; -update noar tt set v0='12MMIH2CKX1UBVRQ6DEQBIB7FYTSV' where id=3; -update noar ti set v0='12MMIH2CKX1UBVRQ6DEQBIB7FYTSV' where id=3; -update noar tt set b0='CZG1U8EELR1Y6' where id=3; -update noar ti set b0='CZG1U8EELR1Y6' where id=3; -update noar tt set v0='MU0D0R9BZPUNTILNCLIN2M700H0XM' where id=3; -update noar ti set v0='MU0D0R9BZPUNTILNCLIN2M700H0XM' where id=3; -update noar tt set b1='F3QL0ELJ7MER7TT8O4YZ8H' where id=3; -update noar ti set b1='F3QL0ELJ7MER7TT8O4YZ8H' where id=3; -update noar tt set v0='QXPFZV' where id=3; -update noar ti set v0='QXPFZV' where id=3; -update noar tt set b2='AC59PD1PD15SH' where id=3; -update noar ti set b2='AC59PD1PD15SH' where id=3; -update noar tt set v0='YGOAL6EI4F92QMOXSEF4FANMVAKW' where id=4; -update noar ti set v0='YGOAL6EI4F92QMOXSEF4FANMVAKW' where id=4; -update noar tt set b0='3XQDDPCX2WB0MI5KSMK1N7CR3ZA2' where id=4; -update noar ti set b0='3XQDDPCX2WB0MI5KSMK1N7CR3ZA2' where id=4; -update noar tt set v0='GRSIW0UA9UNZ6XW28VYOIVWLS' where id=4; -update noar ti set v0='GRSIW0UA9UNZ6XW28VYOIVWLS' where id=4; -update noar tt set b1='4CWUPLJD9JIO8HN' where id=4; -update noar ti set b1='4CWUPLJD9JIO8HN' where id=4; -update noar tt set v0='H4OD1RGACNC5LBU6ULY0PGPGBCZ' where id=4; -update noar ti set v0='H4OD1RGACNC5LBU6ULY0PGPGBCZ' where id=4; -update noar tt set b2='HRE87PTZXG' where id=4; -update noar ti set b2='HRE87PTZXG' where id=4; -update noar tt set v0='0258P3I2M5' where id=5; -update noar ti set v0='0258P3I2M5' where id=5; -update noar tt set b0='1DKFW0MKOBZY30ACA6192' where id=5; -update noar ti set b0='1DKFW0MKOBZY30ACA6192' where id=5; -update noar tt set v0='VM6BPD8GNB18FUCM1C0F6KORQSA5' where id=5; -update noar ti set v0='VM6BPD8GNB18FUCM1C0F6KORQSA5' where id=5; -update noar tt set b1='QS2ZSLW5NJJ799HX8' where id=5; -update noar ti set b1='QS2ZSLW5NJJ799HX8' where id=5; -update noar tt set v0='PV52H6MO' where id=5; -update noar ti set v0='PV52H6MO' where id=5; -update noar tt set b2='SR7G9PX66DF3LIZBY69CWT9B0MXAE' where id=5; -update noar ti set b2='SR7G9PX66DF3LIZBY69CWT9B0MXAE' where id=5; -update noar tt set v0='M3BJN377JMRFQS5AY' where id=6; -update noar ti set v0='M3BJN377JMRFQS5AY' where id=6; -update noar tt set b0='GSZB' where id=6; -update noar ti set b0='GSZB' where id=6; -update noar tt set v0='IRUI2NWN1RDT171EA4' where id=6; -update noar ti set v0='IRUI2NWN1RDT171EA4' where id=6; -update noar tt set b1='OFVG79YD4PYDE3T' where id=6; -update noar ti set b1='OFVG79YD4PYDE3T' where id=6; -update noar tt set v0='EDZCEV5MSY1J' where id=6; -update noar ti set v0='EDZCEV5MSY1J' where id=6; -update noar tt set b2='2J6DCPASNBWD3TC7A12ZK022CIZ8A' where id=6; -update noar ti set b2='2J6DCPASNBWD3TC7A12ZK022CIZ8A' where id=6; -update noar tt set v0='79XDYIF9M49T4S25PQ6RBDSQ8' where id=7; -update noar ti set v0='79XDYIF9M49T4S25PQ6RBDSQ8' where id=7; -update noar tt set b0='Y7D49VAUV8' where id=7; -update noar ti set b0='Y7D49VAUV8' where id=7; -update noar tt set v0='CNQBLJAIRXCF37D4ZJ2VYRK1L' where id=7; -update noar ti set v0='CNQBLJAIRXCF37D4ZJ2VYRK1L' where id=7; -update noar tt set b1='8LQ2' where id=7; -update noar ti set b1='8LQ2' where id=7; -update noar tt set v0='CSHU3BW8EAH3B' where id=7; -update noar ti set v0='CSHU3BW8EAH3B' where id=7; -update noar tt set b2='XSLTUBDNBOPI5TLHVC8N1R9ALD22' where id=7; -update noar ti set b2='XSLTUBDNBOPI5TLHVC8N1R9ALD22' where id=7; -update noar tt set v0='7GX' where id=8; -update noar ti set v0='7GX' where id=8; -update noar tt set b0='GX20R0WSGFZLWVHJNTZK61QF8CUH4XXL' where id=8; -update noar ti set b0='GX20R0WSGFZLWVHJNTZK61QF8CUH4XXL' where id=8; -update noar tt set v0='6RFA36W' where id=8; -update noar ti set v0='6RFA36W' where id=8; -update noar tt set b1='DWEGGV3R14Q9NB3ZFJO9CQS2OKWI' where id=8; -update noar ti set b1='DWEGGV3R14Q9NB3ZFJO9CQS2OKWI' where id=8; -update noar tt set v0='BFPY09E4SPIBG09GDUPR7EI1FMM' where id=8; -update noar ti set v0='BFPY09E4SPIBG09GDUPR7EI1FMM' where id=8; -update noar tt set b2='YA8ODNAS2PQ6KE6TTBW65B' where id=8; -update noar ti set b2='YA8ODNAS2PQ6KE6TTBW65B' where id=8; -update noar tt set v0='YX77DNRPZ6ZSIZVFKM' where id=9; -update noar ti set v0='YX77DNRPZ6ZSIZVFKM' where id=9; -update noar tt set b0='IAOV80TPE' where id=9; -update noar ti set b0='IAOV80TPE' where id=9; -update noar tt set v0='VVI4660KTG2O8LX7IVON3SABIW4NMS' where id=9; -update noar ti set v0='VVI4660KTG2O8LX7IVON3SABIW4NMS' where id=9; -update noar tt set b1='SEDK8F56J9UAP3X0LTSCIVUK' where id=9; -update noar ti set b1='SEDK8F56J9UAP3X0LTSCIVUK' where id=9; -update noar tt set v0='P04MRK1G7' where id=9; -update noar ti set v0='P04MRK1G7' where id=9; -update noar tt set b2='TKGH91K6OT2AE9M9TLL3GLR7BF' where id=9; -update noar ti set b2='TKGH91K6OT2AE9M9TLL3GLR7BF' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -v0 varchar(256) not null, -b0 mediumblob not null, -b1 longblob not null, -b2 longblob not null -) engine=tokudb; -insert into tt values (1,'','','',''); -insert into tt values (2,'','','',''); -insert into tt values (3,'','','',''); -insert into tt values (4,'','','',''); -insert into tt values (5,'','','',''); -insert into tt values (6,'','','',''); -insert into tt values (7,'','','',''); -insert into tt values (8,'','','',''); -insert into tt values (9,'','','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='T1274APIHBBP4B2U2L21ZU2XXZA' where id=1; -update noar ti set v0='T1274APIHBBP4B2U2L21ZU2XXZA' where id=1; -update noar tt set b0='R6BNDO36V0ZVP1I831RG24MHUVWMC' where id=1; -update noar ti set b0='R6BNDO36V0ZVP1I831RG24MHUVWMC' where id=1; -update noar tt set v0='WNYH9PHZ02C9D9UM' where id=1; -update noar ti set v0='WNYH9PHZ02C9D9UM' where id=1; -update noar tt set b1='YFF' where id=1; -update noar ti set b1='YFF' where id=1; -update noar tt set v0='Y4XZ5P3G0PLCD3LEA87A28LTLN1E' where id=1; -update noar ti set v0='Y4XZ5P3G0PLCD3LEA87A28LTLN1E' where id=1; -update noar tt set b2='5JTLME485' where id=1; -update noar ti set b2='5JTLME485' where id=1; -update noar tt set v0='F4RJXJX7WIE5Y3' where id=2; -update noar ti set v0='F4RJXJX7WIE5Y3' where id=2; -update noar tt set b0='7NFHZU1NN' where id=2; -update noar ti set b0='7NFHZU1NN' where id=2; -update noar tt set v0='NTIE5DW1F28WSMZ7D30W' where id=2; -update noar ti set v0='NTIE5DW1F28WSMZ7D30W' where id=2; -update noar tt set b1='QMPFBZASME' where id=2; -update noar ti set b1='QMPFBZASME' where id=2; -update noar tt set v0='NG' where id=2; -update noar ti set v0='NG' where id=2; -update noar tt set b2='AGVRQ4GV38JE1' where id=2; -update noar ti set b2='AGVRQ4GV38JE1' where id=2; -update noar tt set v0='39UE1TEX2BA442N' where id=3; -update noar ti set v0='39UE1TEX2BA442N' where id=3; -update noar tt set b0='BE5GLXPCCAY81DFMFC06J4CFYC6VZK8W' where id=3; -update noar ti set b0='BE5GLXPCCAY81DFMFC06J4CFYC6VZK8W' where id=3; -update noar tt set v0='IKC944DZARP9DH' where id=3; -update noar ti set v0='IKC944DZARP9DH' where id=3; -update noar tt set b1='SQ5USLL10UIV14OZUJ3A8VBZN12Q3DS' where id=3; -update noar ti set b1='SQ5USLL10UIV14OZUJ3A8VBZN12Q3DS' where id=3; -update noar tt set v0='I0T6NPLXDMGWZJVS' where id=3; -update noar ti set v0='I0T6NPLXDMGWZJVS' where id=3; -update noar tt set b2='EE7O0QXJ' where id=3; -update noar ti set b2='EE7O0QXJ' where id=3; -update noar tt set v0='LDBP8T5IE3XVV8QV402F9TK0O' where id=4; -update noar ti set v0='LDBP8T5IE3XVV8QV402F9TK0O' where id=4; -update noar tt set b0='HCJXTNPL0UTX' where id=4; -update noar ti set b0='HCJXTNPL0UTX' where id=4; -update noar tt set v0='LX4O8' where id=4; -update noar ti set v0='LX4O8' where id=4; -update noar tt set b1='55Z2H7JJ' where id=4; -update noar ti set b1='55Z2H7JJ' where id=4; -update noar tt set v0='KABNXA8VZTK1OF4R8TWOM6IWX7A26CU' where id=4; -update noar ti set v0='KABNXA8VZTK1OF4R8TWOM6IWX7A26CU' where id=4; -update noar tt set b2='7QF43' where id=4; -update noar ti set b2='7QF43' where id=4; -update noar tt set v0='1M0EUUZ8S3ET2' where id=5; -update noar ti set v0='1M0EUUZ8S3ET2' where id=5; -update noar tt set b0='SQWBIH0E90M43R' where id=5; -update noar ti set b0='SQWBIH0E90M43R' where id=5; -update noar tt set v0='J1597GUSZZWOPU6D3RCIO' where id=5; -update noar ti set v0='J1597GUSZZWOPU6D3RCIO' where id=5; -update noar tt set b1='C' where id=5; -update noar ti set b1='C' where id=5; -update noar tt set v0='8UPD193X9P12KGKN179' where id=5; -update noar ti set v0='8UPD193X9P12KGKN179' where id=5; -update noar tt set b2='BQLC431LDK4GTLN93' where id=5; -update noar ti set b2='BQLC431LDK4GTLN93' where id=5; -update noar tt set v0='FKIRPWPEAGN0XNHINS9' where id=6; -update noar ti set v0='FKIRPWPEAGN0XNHINS9' where id=6; -update noar tt set b0='W' where id=6; -update noar ti set b0='W' where id=6; -update noar tt set v0='C26NC9B0X68XYH' where id=6; -update noar ti set v0='C26NC9B0X68XYH' where id=6; -update noar tt set b1='PBV8MRYF3DX5P' where id=6; -update noar ti set b1='PBV8MRYF3DX5P' where id=6; -update noar tt set v0='IZ9RL24Z9631QT7KJJHYMM1S6LB8' where id=6; -update noar ti set v0='IZ9RL24Z9631QT7KJJHYMM1S6LB8' where id=6; -update noar tt set b2='95UQDOGLDG2O6I8SF2' where id=6; -update noar ti set b2='95UQDOGLDG2O6I8SF2' where id=6; -update noar tt set v0='MAOMFDRT' where id=7; -update noar ti set v0='MAOMFDRT' where id=7; -update noar tt set b0='1LPNHX3MNGOWKAML0OKK63IBV6M0' where id=7; -update noar ti set b0='1LPNHX3MNGOWKAML0OKK63IBV6M0' where id=7; -update noar tt set v0='HEAT2I13KB6PGO4090CRT0MA0DOIXZ' where id=7; -update noar ti set v0='HEAT2I13KB6PGO4090CRT0MA0DOIXZ' where id=7; -update noar tt set b1='9H9VRMA0NPBOZ' where id=7; -update noar ti set b1='9H9VRMA0NPBOZ' where id=7; -update noar tt set v0='T' where id=7; -update noar ti set v0='T' where id=7; -update noar tt set b2='SD6EPVYZIXSBI5EMCTZQK060ZMF' where id=7; -update noar ti set b2='SD6EPVYZIXSBI5EMCTZQK060ZMF' where id=7; -update noar tt set v0='3FS8KW7FSUW' where id=8; -update noar ti set v0='3FS8KW7FSUW' where id=8; -update noar tt set b0='CHDAHU0DRI6' where id=8; -update noar ti set b0='CHDAHU0DRI6' where id=8; -update noar tt set v0='12R217A2EXCSOD9UA' where id=8; -update noar ti set v0='12R217A2EXCSOD9UA' where id=8; -update noar tt set b1='57U9SRYFJ3J0258A1Q4BEELYQX9' where id=8; -update noar ti set b1='57U9SRYFJ3J0258A1Q4BEELYQX9' where id=8; -update noar tt set v0='7' where id=8; -update noar ti set v0='7' where id=8; -update noar tt set b2='0T055ZOMZ5QJ5' where id=8; -update noar ti set b2='0T055ZOMZ5QJ5' where id=8; -update noar tt set v0='UAH0JHN6PG0RJ3' where id=9; -update noar ti set v0='UAH0JHN6PG0RJ3' where id=9; -update noar tt set b0='S3' where id=9; -update noar ti set b0='S3' where id=9; -update noar tt set v0='2C0F5F1ZHPV1' where id=9; -update noar ti set v0='2C0F5F1ZHPV1' where id=9; -update noar tt set b1='A1GVONA281EGWFOJP2UB' where id=9; -update noar ti set b1='A1GVONA281EGWFOJP2UB' where id=9; -update noar tt set v0='0VQOMMO9' where id=9; -update noar ti set v0='0VQOMMO9' where id=9; -update noar tt set b2='IXITT8D1SLMKFJYPGD3ZXTD4B5G' where id=9; -update noar ti set b2='IXITT8D1SLMKFJYPGD3ZXTD4B5G' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -v0 varchar(32) null, -b0 longblob null, -b1 tinyblob null, -b2 tinyblob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='CR1XGA' where id=1; -update noar ti set v0='CR1XGA' where id=1; -update noar tt set b0='E8' where id=1; -update noar ti set b0='E8' where id=1; -update noar tt set v0='L1NASIKWECW0CCXXCW5HTIE5FL' where id=1; -update noar ti set v0='L1NASIKWECW0CCXXCW5HTIE5FL' where id=1; -update noar tt set b1='WP66DCCBAFZGOXMV8JMSUUVC3TK' where id=1; -update noar ti set b1='WP66DCCBAFZGOXMV8JMSUUVC3TK' where id=1; -update noar tt set v0='EIDQ6N74ADVELZPASLV0I07LN' where id=1; -update noar ti set v0='EIDQ6N74ADVELZPASLV0I07LN' where id=1; -update noar tt set b2='5IK7YPSDFZWNU' where id=1; -update noar ti set b2='5IK7YPSDFZWNU' where id=1; -update noar tt set v0='HJUNFY' where id=2; -update noar ti set v0='HJUNFY' where id=2; -update noar tt set b0='2III2HXL24GFAOFU8BU' where id=2; -update noar ti set b0='2III2HXL24GFAOFU8BU' where id=2; -update noar tt set v0='5X7O6USCXDLGP889HBX5ZR6' where id=2; -update noar ti set v0='5X7O6USCXDLGP889HBX5ZR6' where id=2; -update noar tt set b1='9YN' where id=2; -update noar ti set b1='9YN' where id=2; -update noar tt set v0='ZAQ3FXYRY2REPXK9UL90F' where id=2; -update noar ti set v0='ZAQ3FXYRY2REPXK9UL90F' where id=2; -update noar tt set b2='JB088Y0DUU' where id=2; -update noar ti set b2='JB088Y0DUU' where id=2; -update noar tt set v0='O2BFIR1CB5K2OPX7NYFBYS14' where id=3; -update noar ti set v0='O2BFIR1CB5K2OPX7NYFBYS14' where id=3; -update noar tt set b0='TAX0AS3BOFYRPZXQR7M7C0C3' where id=3; -update noar ti set b0='TAX0AS3BOFYRPZXQR7M7C0C3' where id=3; -update noar tt set v0='JTBORLWDTO36AQL' where id=3; -update noar ti set v0='JTBORLWDTO36AQL' where id=3; -update noar tt set b1='R72OPFWSIBYXJYBKTVKVSG1UVVV0' where id=3; -update noar ti set b1='R72OPFWSIBYXJYBKTVKVSG1UVVV0' where id=3; -update noar tt set v0='QB9VYA8BV6NOMEJAYN36B' where id=3; -update noar ti set v0='QB9VYA8BV6NOMEJAYN36B' where id=3; -update noar tt set b2='KTL0HUCN0M' where id=3; -update noar ti set b2='KTL0HUCN0M' where id=3; -update noar tt set v0='AH1Q0TTRBLLKSHIIGHM2UC' where id=4; -update noar ti set v0='AH1Q0TTRBLLKSHIIGHM2UC' where id=4; -update noar tt set b0='Z259P259Z9UV' where id=4; -update noar ti set b0='Z259P259Z9UV' where id=4; -update noar tt set v0='CSN6QCX27GZHGJ111TR6G0FU4EM' where id=4; -update noar ti set v0='CSN6QCX27GZHGJ111TR6G0FU4EM' where id=4; -update noar tt set b1='7' where id=4; -update noar ti set b1='7' where id=4; -update noar tt set v0='4H3J8TO' where id=4; -update noar ti set v0='4H3J8TO' where id=4; -update noar tt set b2='XY8BF07UKW773O' where id=4; -update noar ti set b2='XY8BF07UKW773O' where id=4; -update noar tt set v0='MYD7B92M4U5PJ5F2XR8LEASE062MSB91' where id=5; -update noar ti set v0='MYD7B92M4U5PJ5F2XR8LEASE062MSB91' where id=5; -update noar tt set b0='R' where id=5; -update noar ti set b0='R' where id=5; -update noar tt set v0='GY1MJUTPI8B71YQK45QXA1' where id=5; -update noar ti set v0='GY1MJUTPI8B71YQK45QXA1' where id=5; -update noar tt set b1='7WP725AY1O147HHK372S61B' where id=5; -update noar ti set b1='7WP725AY1O147HHK372S61B' where id=5; -update noar tt set v0='RIHTML9TVADI6KCUL4U7DRW' where id=5; -update noar ti set v0='RIHTML9TVADI6KCUL4U7DRW' where id=5; -update noar tt set b2='O2HSARPHHL4' where id=5; -update noar ti set b2='O2HSARPHHL4' where id=5; -update noar tt set v0='RGU6JH5' where id=6; -update noar ti set v0='RGU6JH5' where id=6; -update noar tt set b0='ESRK7RRGVRJTXMJE78AHPTLE4WP62DM' where id=6; -update noar ti set b0='ESRK7RRGVRJTXMJE78AHPTLE4WP62DM' where id=6; -update noar tt set v0='O7GOV5G5SHGFWMNNHDC0JVQ2IT1L7' where id=6; -update noar ti set v0='O7GOV5G5SHGFWMNNHDC0JVQ2IT1L7' where id=6; -update noar tt set b1='SMKZZS0I504FDLODZTHTZMCJDR9XP1' where id=6; -update noar ti set b1='SMKZZS0I504FDLODZTHTZMCJDR9XP1' where id=6; -update noar tt set v0='G7ZSSFMBDVU8EOYSEHKBY' where id=6; -update noar ti set v0='G7ZSSFMBDVU8EOYSEHKBY' where id=6; -update noar tt set b2='LNJJO33NMF9I9Z65NPKZC1NCHIEI38' where id=6; -update noar ti set b2='LNJJO33NMF9I9Z65NPKZC1NCHIEI38' where id=6; -update noar tt set v0='CA3L4IG8' where id=7; -update noar ti set v0='CA3L4IG8' where id=7; -update noar tt set b0='7AZ' where id=7; -update noar ti set b0='7AZ' where id=7; -update noar tt set v0='C49AL32LNCVW' where id=7; -update noar ti set v0='C49AL32LNCVW' where id=7; -update noar tt set b1='XAC495IV7WSC2CBIYYYOG0' where id=7; -update noar ti set b1='XAC495IV7WSC2CBIYYYOG0' where id=7; -update noar tt set v0='UC6RTUBJMLOF2IZ' where id=7; -update noar ti set v0='UC6RTUBJMLOF2IZ' where id=7; -update noar tt set b2='MJJUH66554ZN6N3B18PU4XOZX9ETF2M' where id=7; -update noar ti set b2='MJJUH66554ZN6N3B18PU4XOZX9ETF2M' where id=7; -update noar tt set v0='92W81S36LCQ' where id=8; -update noar ti set v0='92W81S36LCQ' where id=8; -update noar tt set b0='QUHA43D9RK73B0N7JSYZ6WDWGZLK' where id=8; -update noar ti set b0='QUHA43D9RK73B0N7JSYZ6WDWGZLK' where id=8; -update noar tt set v0='CDCMSQ' where id=8; -update noar ti set v0='CDCMSQ' where id=8; -update noar tt set b1='FW1S1MMI' where id=8; -update noar ti set b1='FW1S1MMI' where id=8; -update noar tt set v0='9IY1JC' where id=8; -update noar ti set v0='9IY1JC' where id=8; -update noar tt set b2='D3YYVPJW7ATCDEVU2NAXWLRFOY7N' where id=8; -update noar ti set b2='D3YYVPJW7ATCDEVU2NAXWLRFOY7N' where id=8; -update noar tt set v0='7XDSX8FVQHCYZ7LF4DNFKRXJK3CY71US' where id=9; -update noar ti set v0='7XDSX8FVQHCYZ7LF4DNFKRXJK3CY71US' where id=9; -update noar tt set b0='GN9OJF' where id=9; -update noar ti set b0='GN9OJF' where id=9; -update noar tt set v0='I5UAABASIYUD53OHBD2CMT' where id=9; -update noar ti set v0='I5UAABASIYUD53OHBD2CMT' where id=9; -update noar tt set b1='3XE6IIEHMCI89BXWUPWZTF' where id=9; -update noar ti set b1='3XE6IIEHMCI89BXWUPWZTF' where id=9; -update noar tt set v0='PU37BK87C2F433FH697TA' where id=9; -update noar ti set v0='PU37BK87C2F433FH697TA' where id=9; -update noar tt set b2='3NAXFO3RIYZO77AJP1BM3W5FFAJM3C' where id=9; -update noar ti set b2='3NAXFO3RIYZO77AJP1BM3W5FFAJM3C' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -v0 varchar(256) null, -b0 longblob null, -b1 tinyblob null, -b2 tinyblob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='RTMTUTG8' where id=1; -update noar ti set v0='RTMTUTG8' where id=1; -update noar tt set b0='X7VE' where id=1; -update noar ti set b0='X7VE' where id=1; -update noar tt set v0='5SX0TV5E725' where id=1; -update noar ti set v0='5SX0TV5E725' where id=1; -update noar tt set b1='SBDCGTM5JXWJNPDVOGD9YRS' where id=1; -update noar ti set b1='SBDCGTM5JXWJNPDVOGD9YRS' where id=1; -update noar tt set v0='26KIJZIGNWIX7N26VYQNPX4KY1BJT' where id=1; -update noar ti set v0='26KIJZIGNWIX7N26VYQNPX4KY1BJT' where id=1; -update noar tt set b2='BU3QL18B5PTSX3G7ZY7K4QM' where id=1; -update noar ti set b2='BU3QL18B5PTSX3G7ZY7K4QM' where id=1; -update noar tt set v0='Z6M4I1H0MJJOPKP6SVHR1R93PTZQJW9' where id=2; -update noar ti set v0='Z6M4I1H0MJJOPKP6SVHR1R93PTZQJW9' where id=2; -update noar tt set b0='SXAD1J5K2MAVN9TERSE' where id=2; -update noar ti set b0='SXAD1J5K2MAVN9TERSE' where id=2; -update noar tt set v0='WZ7Q48Y4P' where id=2; -update noar ti set v0='WZ7Q48Y4P' where id=2; -update noar tt set b1='LPV8WVT6F63F6X1XQ13YA' where id=2; -update noar ti set b1='LPV8WVT6F63F6X1XQ13YA' where id=2; -update noar tt set v0='TA2X5W60R03HU2SCR1RPAJ41249C14E5' where id=2; -update noar ti set v0='TA2X5W60R03HU2SCR1RPAJ41249C14E5' where id=2; -update noar tt set b2='3Q6KCQO4QYANCNQG8SACQ7DR2' where id=2; -update noar ti set b2='3Q6KCQO4QYANCNQG8SACQ7DR2' where id=2; -update noar tt set v0='8' where id=3; -update noar ti set v0='8' where id=3; -update noar tt set b0='5Z1SST1CFQHJC76KNF9U1YIL9' where id=3; -update noar ti set b0='5Z1SST1CFQHJC76KNF9U1YIL9' where id=3; -update noar tt set v0='BXF8' where id=3; -update noar ti set v0='BXF8' where id=3; -update noar tt set b1='DT8CMO7WWANCVCLW0WSX7TDCHN99GP84' where id=3; -update noar ti set b1='DT8CMO7WWANCVCLW0WSX7TDCHN99GP84' where id=3; -update noar tt set v0='WDPU' where id=3; -update noar ti set v0='WDPU' where id=3; -update noar tt set b2='FB2LQXNAPVP6U8LHJDER' where id=3; -update noar ti set b2='FB2LQXNAPVP6U8LHJDER' where id=3; -update noar tt set v0='SK3PO1RAD' where id=4; -update noar ti set v0='SK3PO1RAD' where id=4; -update noar tt set b0='WGBK47FR56TAE758UOC8' where id=4; -update noar ti set b0='WGBK47FR56TAE758UOC8' where id=4; -update noar tt set v0='NV' where id=4; -update noar ti set v0='NV' where id=4; -update noar tt set b1='TY589HFE91KG' where id=4; -update noar ti set b1='TY589HFE91KG' where id=4; -update noar tt set v0='HYDK69ZP8TIW31LPWE7WL1N7SCPN' where id=4; -update noar ti set v0='HYDK69ZP8TIW31LPWE7WL1N7SCPN' where id=4; -update noar tt set b2='W' where id=4; -update noar ti set b2='W' where id=4; -update noar tt set v0='2O42O63C4TVZGN1VGYZQDA' where id=5; -update noar ti set v0='2O42O63C4TVZGN1VGYZQDA' where id=5; -update noar tt set b0='WTL4DSC6HHHAQJ504VFWXD9B' where id=5; -update noar ti set b0='WTL4DSC6HHHAQJ504VFWXD9B' where id=5; -update noar tt set v0='3TCWGRJR7RA4M951K93XK80E' where id=5; -update noar ti set v0='3TCWGRJR7RA4M951K93XK80E' where id=5; -update noar tt set b1='DHBXPUGDSVD4' where id=5; -update noar ti set b1='DHBXPUGDSVD4' where id=5; -update noar tt set v0='9W1F67VS4U3EMA7LP2IXUNYMW53WG' where id=5; -update noar ti set v0='9W1F67VS4U3EMA7LP2IXUNYMW53WG' where id=5; -update noar tt set b2='3VPY3IZ68J' where id=5; -update noar ti set b2='3VPY3IZ68J' where id=5; -update noar tt set v0='MF8SUTEEUHCF3MOH79PFV' where id=6; -update noar ti set v0='MF8SUTEEUHCF3MOH79PFV' where id=6; -update noar tt set b0='M9G887ULQV0XU' where id=6; -update noar ti set b0='M9G887ULQV0XU' where id=6; -update noar tt set v0='E5YXO1FFW5LTWWMHC3L' where id=6; -update noar ti set v0='E5YXO1FFW5LTWWMHC3L' where id=6; -update noar tt set b1='3MEXXTITVPX5R7IPZDDI' where id=6; -update noar ti set b1='3MEXXTITVPX5R7IPZDDI' where id=6; -update noar tt set v0='K5N' where id=6; -update noar ti set v0='K5N' where id=6; -update noar tt set b2='SCJBLZC3YGBKPK2GIYNQ4' where id=6; -update noar ti set b2='SCJBLZC3YGBKPK2GIYNQ4' where id=6; -update noar tt set v0='RQ0XBRUZTGWG5SPCXKJ2T7XR92' where id=7; -update noar ti set v0='RQ0XBRUZTGWG5SPCXKJ2T7XR92' where id=7; -update noar tt set b0='H2H2K5YIQZX9KP24EE8ENNPKU17WY' where id=7; -update noar ti set b0='H2H2K5YIQZX9KP24EE8ENNPKU17WY' where id=7; -update noar tt set v0='I3XNMPSMIM2LCMC' where id=7; -update noar ti set v0='I3XNMPSMIM2LCMC' where id=7; -update noar tt set b1='SBL2' where id=7; -update noar ti set b1='SBL2' where id=7; -update noar tt set v0='WDE6C9UGCJD' where id=7; -update noar ti set v0='WDE6C9UGCJD' where id=7; -update noar tt set b2='J8Q1C5BWYB7XAMVPX497Z5HCN91Y' where id=7; -update noar ti set b2='J8Q1C5BWYB7XAMVPX497Z5HCN91Y' where id=7; -update noar tt set v0='LTLKN6CVZEK1IKHAHYDMYNE6620ZPW5' where id=8; -update noar ti set v0='LTLKN6CVZEK1IKHAHYDMYNE6620ZPW5' where id=8; -update noar tt set b0='GI6KMXXT1JY54PN7M58AW2PN5JK6G' where id=8; -update noar ti set b0='GI6KMXXT1JY54PN7M58AW2PN5JK6G' where id=8; -update noar tt set v0='5X2N' where id=8; -update noar ti set v0='5X2N' where id=8; -update noar tt set b1='NHFYK9V8TZNPSTOPLHU98' where id=8; -update noar ti set b1='NHFYK9V8TZNPSTOPLHU98' where id=8; -update noar tt set v0='BQWXTLN620N7BY4VCM' where id=8; -update noar ti set v0='BQWXTLN620N7BY4VCM' where id=8; -update noar tt set b2='VYGGUA0EOP' where id=8; -update noar ti set b2='VYGGUA0EOP' where id=8; -update noar tt set v0='CDYYKNWYLSY1F9N0EDDJ6RS63ETV' where id=9; -update noar ti set v0='CDYYKNWYLSY1F9N0EDDJ6RS63ETV' where id=9; -update noar tt set b0='ZGPLEIP8X8YT4HQJCV4Y6JWLWYHD0S2S' where id=9; -update noar ti set b0='ZGPLEIP8X8YT4HQJCV4Y6JWLWYHD0S2S' where id=9; -update noar tt set v0='CT608GR265F4R91LJOQUXJY2A1OB2' where id=9; -update noar ti set v0='CT608GR265F4R91LJOQUXJY2A1OB2' where id=9; -update noar tt set b1='9AIYYZQ2W5VP2HB8FTAOIPGECU4CCS' where id=9; -update noar ti set b1='9AIYYZQ2W5VP2HB8FTAOIPGECU4CCS' where id=9; -update noar tt set v0='ET' where id=9; -update noar ti set v0='ET' where id=9; -update noar tt set b2='T8HOBUPHXNDI6T6QR2WKSE0DMUOE' where id=9; -update noar ti set b2='T8HOBUPHXNDI6T6QR2WKSE0DMUOE' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -v0 varchar(32) not null, -b0 longblob not null, -b1 tinyblob not null, -b2 tinyblob not null -) engine=tokudb; -insert into tt values (1,'','','',''); -insert into tt values (2,'','','',''); -insert into tt values (3,'','','',''); -insert into tt values (4,'','','',''); -insert into tt values (5,'','','',''); -insert into tt values (6,'','','',''); -insert into tt values (7,'','','',''); -insert into tt values (8,'','','',''); -insert into tt values (9,'','','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='JDZTWT75GK' where id=1; -update noar ti set v0='JDZTWT75GK' where id=1; -update noar tt set b0='JAN6LMJO9FYXI5WAGRN8KKXT' where id=1; -update noar ti set b0='JAN6LMJO9FYXI5WAGRN8KKXT' where id=1; -update noar tt set v0='EMG430PG6EH9PNRLV0RXW' where id=1; -update noar ti set v0='EMG430PG6EH9PNRLV0RXW' where id=1; -update noar tt set b1='DKZ9TYWDVXCT4J97T7L' where id=1; -update noar ti set b1='DKZ9TYWDVXCT4J97T7L' where id=1; -update noar tt set v0='8N94K60XISURNM49HE6' where id=1; -update noar ti set v0='8N94K60XISURNM49HE6' where id=1; -update noar tt set b2='8IGRG23FVMSLBMVDQKZ2LQCE' where id=1; -update noar ti set b2='8IGRG23FVMSLBMVDQKZ2LQCE' where id=1; -update noar tt set v0='ZSPMQAAPH89NCZU9BFW118MO0M' where id=2; -update noar ti set v0='ZSPMQAAPH89NCZU9BFW118MO0M' where id=2; -update noar tt set b0='UT' where id=2; -update noar ti set b0='UT' where id=2; -update noar tt set v0='BUX76QV0U6S0TKN0X75DJ' where id=2; -update noar ti set v0='BUX76QV0U6S0TKN0X75DJ' where id=2; -update noar tt set b1='SPC' where id=2; -update noar ti set b1='SPC' where id=2; -update noar tt set v0='VLK0JQYJ1WSZW3' where id=2; -update noar ti set v0='VLK0JQYJ1WSZW3' where id=2; -update noar tt set b2='JINEEUSGSR61P08RVB2ILZ0' where id=2; -update noar ti set b2='JINEEUSGSR61P08RVB2ILZ0' where id=2; -update noar tt set v0='1CXDB3DF4KXPDYSUGGOJXMNK7TNKHIE' where id=3; -update noar ti set v0='1CXDB3DF4KXPDYSUGGOJXMNK7TNKHIE' where id=3; -update noar tt set b0='WXJ5LSF4PQXP17K6XRGJ' where id=3; -update noar ti set b0='WXJ5LSF4PQXP17K6XRGJ' where id=3; -update noar tt set v0='NL55D8511QCFO0HSMAUKCHZ0CVG' where id=3; -update noar ti set v0='NL55D8511QCFO0HSMAUKCHZ0CVG' where id=3; -update noar tt set b1='M07QGB3AYF' where id=3; -update noar ti set b1='M07QGB3AYF' where id=3; -update noar tt set v0='I9Q5EZDTI3H2L8FLWTLUJ7SVXBS59N9' where id=3; -update noar ti set v0='I9Q5EZDTI3H2L8FLWTLUJ7SVXBS59N9' where id=3; -update noar tt set b2='2VQGZMRVFARPEJFKHI' where id=3; -update noar ti set b2='2VQGZMRVFARPEJFKHI' where id=3; -update noar tt set v0='ZLREW5MJM64' where id=4; -update noar ti set v0='ZLREW5MJM64' where id=4; -update noar tt set b0='XWAGF' where id=4; -update noar ti set b0='XWAGF' where id=4; -update noar tt set v0='8QSQO9369AC4' where id=4; -update noar ti set v0='8QSQO9369AC4' where id=4; -update noar tt set b1='LJGH2B5XK316GS5LO8UCXZSN07V9LW9X' where id=4; -update noar ti set b1='LJGH2B5XK316GS5LO8UCXZSN07V9LW9X' where id=4; -update noar tt set v0='WNS04K7Y4A93Y39J' where id=4; -update noar ti set v0='WNS04K7Y4A93Y39J' where id=4; -update noar tt set b2='3MB2F7LE4IVIAPWHQT0BVIR468J7T1NY' where id=4; -update noar ti set b2='3MB2F7LE4IVIAPWHQT0BVIR468J7T1NY' where id=4; -update noar tt set v0='JH8FPOKV5X8JMCAY' where id=5; -update noar ti set v0='JH8FPOKV5X8JMCAY' where id=5; -update noar tt set b0='SO4B3TBLXFPWM5RSTF9LOAO8U7DGIGDW' where id=5; -update noar ti set b0='SO4B3TBLXFPWM5RSTF9LOAO8U7DGIGDW' where id=5; -update noar tt set v0='L2GLQ9LDDFTQLXARKISRE3' where id=5; -update noar ti set v0='L2GLQ9LDDFTQLXARKISRE3' where id=5; -update noar tt set b1='EPPR17' where id=5; -update noar ti set b1='EPPR17' where id=5; -update noar tt set v0='BDZFW5LMD1FI4KVOS3' where id=5; -update noar ti set v0='BDZFW5LMD1FI4KVOS3' where id=5; -update noar tt set b2='WJD0PUENGA9H0' where id=5; -update noar ti set b2='WJD0PUENGA9H0' where id=5; -update noar tt set v0='TIJM7AJP' where id=6; -update noar ti set v0='TIJM7AJP' where id=6; -update noar tt set b0='JIBSVOPPL7XTFZBHNA' where id=6; -update noar ti set b0='JIBSVOPPL7XTFZBHNA' where id=6; -update noar tt set v0='53KEIE9064KHPLBFX939' where id=6; -update noar ti set v0='53KEIE9064KHPLBFX939' where id=6; -update noar tt set b1='G9JJ4JGJJLCY48NMAMWQRJ372V0N0' where id=6; -update noar ti set b1='G9JJ4JGJJLCY48NMAMWQRJ372V0N0' where id=6; -update noar tt set v0='XT6BU32Z' where id=6; -update noar ti set v0='XT6BU32Z' where id=6; -update noar tt set b2='08VCFYRT6VWA6LT' where id=6; -update noar ti set b2='08VCFYRT6VWA6LT' where id=6; -update noar tt set v0='E6W8FCMHOTFVA' where id=7; -update noar ti set v0='E6W8FCMHOTFVA' where id=7; -update noar tt set b0='NAX' where id=7; -update noar ti set b0='NAX' where id=7; -update noar tt set v0='V5RSUKWZZVGYU77QK7M4O2M' where id=7; -update noar ti set v0='V5RSUKWZZVGYU77QK7M4O2M' where id=7; -update noar tt set b1='1E' where id=7; -update noar ti set b1='1E' where id=7; -update noar tt set v0='WU5US9BV2161QYVAVIR8SOX4' where id=7; -update noar ti set v0='WU5US9BV2161QYVAVIR8SOX4' where id=7; -update noar tt set b2='547' where id=7; -update noar ti set b2='547' where id=7; -update noar tt set v0='DBPYKFTAI7ZOZFX24GGGULHKIHXCCEHZ' where id=8; -update noar ti set v0='DBPYKFTAI7ZOZFX24GGGULHKIHXCCEHZ' where id=8; -update noar tt set b0='9P22MJWBRALIQM34A5NPVG' where id=8; -update noar ti set b0='9P22MJWBRALIQM34A5NPVG' where id=8; -update noar tt set v0='IXNPII71VQ' where id=8; -update noar ti set v0='IXNPII71VQ' where id=8; -update noar tt set b1='10M7W6HBY0WOWSP6TZUROEDG0P5P' where id=8; -update noar ti set b1='10M7W6HBY0WOWSP6TZUROEDG0P5P' where id=8; -update noar tt set v0='R9H5XNWJMBZ' where id=8; -update noar ti set v0='R9H5XNWJMBZ' where id=8; -update noar tt set b2='D5BJV2Q9U1XNREU3Z8ENZW6G3Y4' where id=8; -update noar ti set b2='D5BJV2Q9U1XNREU3Z8ENZW6G3Y4' where id=8; -update noar tt set v0='F6QDB9GGTX5F11VGHUKZI' where id=9; -update noar ti set v0='F6QDB9GGTX5F11VGHUKZI' where id=9; -update noar tt set b0='C9JG9WQ9A15S4' where id=9; -update noar ti set b0='C9JG9WQ9A15S4' where id=9; -update noar tt set v0='JJ2JN7S5' where id=9; -update noar ti set v0='JJ2JN7S5' where id=9; -update noar tt set b1='UTBD5J5TZ0' where id=9; -update noar ti set b1='UTBD5J5TZ0' where id=9; -update noar tt set v0='Z696FKBSCT4N' where id=9; -update noar ti set v0='Z696FKBSCT4N' where id=9; -update noar tt set b2='X02OHHSTWDB' where id=9; -update noar ti set b2='X02OHHSTWDB' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -v0 varchar(256) not null, -b0 longblob not null, -b1 tinyblob not null, -b2 tinyblob not null -) engine=tokudb; -insert into tt values (1,'','','',''); -insert into tt values (2,'','','',''); -insert into tt values (3,'','','',''); -insert into tt values (4,'','','',''); -insert into tt values (5,'','','',''); -insert into tt values (6,'','','',''); -insert into tt values (7,'','','',''); -insert into tt values (8,'','','',''); -insert into tt values (9,'','','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='V8ET1B6MD0V383' where id=1; -update noar ti set v0='V8ET1B6MD0V383' where id=1; -update noar tt set b0='C63Q2NL3TX' where id=1; -update noar ti set b0='C63Q2NL3TX' where id=1; -update noar tt set v0='HBM69BKQFXB7WI4VDLV6K8MBND8RU' where id=1; -update noar ti set v0='HBM69BKQFXB7WI4VDLV6K8MBND8RU' where id=1; -update noar tt set b1='3N' where id=1; -update noar ti set b1='3N' where id=1; -update noar tt set v0='GRMMJT3PN2JWE9QZOA8D8' where id=1; -update noar ti set v0='GRMMJT3PN2JWE9QZOA8D8' where id=1; -update noar tt set b2='R9I9GZIZQ3YH0O8X' where id=1; -update noar ti set b2='R9I9GZIZQ3YH0O8X' where id=1; -update noar tt set v0='ZHP22TVL4HZWLMLDDLR7KAK3W0NF45W' where id=2; -update noar ti set v0='ZHP22TVL4HZWLMLDDLR7KAK3W0NF45W' where id=2; -update noar tt set b0='XGB0O43GM55EO9IW4' where id=2; -update noar ti set b0='XGB0O43GM55EO9IW4' where id=2; -update noar tt set v0='XHA1PKD29B1I90O6EWS9C' where id=2; -update noar ti set v0='XHA1PKD29B1I90O6EWS9C' where id=2; -update noar tt set b1='6UZM7NZCRON0J1PIVBUVSLNQQJ' where id=2; -update noar ti set b1='6UZM7NZCRON0J1PIVBUVSLNQQJ' where id=2; -update noar tt set v0='YPGMIW1IUBERGCXJP58EPIIF' where id=2; -update noar ti set v0='YPGMIW1IUBERGCXJP58EPIIF' where id=2; -update noar tt set b2='FHR3BL30LGDQEXN' where id=2; -update noar ti set b2='FHR3BL30LGDQEXN' where id=2; -update noar tt set v0='XCX2XPKN6TRU0WNLISGIER39PB' where id=3; -update noar ti set v0='XCX2XPKN6TRU0WNLISGIER39PB' where id=3; -update noar tt set b0='3COZNPSBT9SWK3' where id=3; -update noar ti set b0='3COZNPSBT9SWK3' where id=3; -update noar tt set v0='8GA22CP2UJGR22RYO8' where id=3; -update noar ti set v0='8GA22CP2UJGR22RYO8' where id=3; -update noar tt set b1='Q3U2XVKP' where id=3; -update noar ti set b1='Q3U2XVKP' where id=3; -update noar tt set v0='2KQJWE5XR4JJFQDM58Q5Z9QGFV96YHX' where id=3; -update noar ti set v0='2KQJWE5XR4JJFQDM58Q5Z9QGFV96YHX' where id=3; -update noar tt set b2='702' where id=3; -update noar ti set b2='702' where id=3; -update noar tt set v0='ZC0GRJUJBIOSANCAPDED2FEH8OQS' where id=4; -update noar ti set v0='ZC0GRJUJBIOSANCAPDED2FEH8OQS' where id=4; -update noar tt set b0='9LBI9' where id=4; -update noar ti set b0='9LBI9' where id=4; -update noar tt set v0='YZEISY903PWBWS200L' where id=4; -update noar ti set v0='YZEISY903PWBWS200L' where id=4; -update noar tt set b1='D' where id=4; -update noar ti set b1='D' where id=4; -update noar tt set v0='A00YQ0JYM2HVARHX1I2I1K06' where id=4; -update noar ti set v0='A00YQ0JYM2HVARHX1I2I1K06' where id=4; -update noar tt set b2='9T1XICJFE5E1ACKB17VSDNKJHOK1' where id=4; -update noar ti set b2='9T1XICJFE5E1ACKB17VSDNKJHOK1' where id=4; -update noar tt set v0='U75DI3FMZIHS' where id=5; -update noar ti set v0='U75DI3FMZIHS' where id=5; -update noar tt set b0='X2OFOMJ8X5DSD75C0UOYS2HH' where id=5; -update noar ti set b0='X2OFOMJ8X5DSD75C0UOYS2HH' where id=5; -update noar tt set v0='NU77J5H6Y1' where id=5; -update noar ti set v0='NU77J5H6Y1' where id=5; -update noar tt set b1='WBW' where id=5; -update noar ti set b1='WBW' where id=5; -update noar tt set v0='3C6EWF8' where id=5; -update noar ti set v0='3C6EWF8' where id=5; -update noar tt set b2='GK3SWJG4KAIF4' where id=5; -update noar ti set b2='GK3SWJG4KAIF4' where id=5; -update noar tt set v0='C3X68CP7DV7A1WWCUD4F' where id=6; -update noar ti set v0='C3X68CP7DV7A1WWCUD4F' where id=6; -update noar tt set b0='HVF0WS' where id=6; -update noar ti set b0='HVF0WS' where id=6; -update noar tt set v0='T63GM2' where id=6; -update noar ti set v0='T63GM2' where id=6; -update noar tt set b1='XN23KY' where id=6; -update noar ti set b1='XN23KY' where id=6; -update noar tt set v0='ZB0G' where id=6; -update noar ti set v0='ZB0G' where id=6; -update noar tt set b2='KA74QT1I2N4FBHT95A' where id=6; -update noar ti set b2='KA74QT1I2N4FBHT95A' where id=6; -update noar tt set v0='WMZQZFE5QQBKHSZAUR9H5TMW15HS' where id=7; -update noar ti set v0='WMZQZFE5QQBKHSZAUR9H5TMW15HS' where id=7; -update noar tt set b0='XF7OOBW7A9W84' where id=7; -update noar ti set b0='XF7OOBW7A9W84' where id=7; -update noar tt set v0='C5QNBG40LB' where id=7; -update noar ti set v0='C5QNBG40LB' where id=7; -update noar tt set b1='B5ABZ78' where id=7; -update noar ti set b1='B5ABZ78' where id=7; -update noar tt set v0='UJP' where id=7; -update noar ti set v0='UJP' where id=7; -update noar tt set b2='SM5VVQLM4GNXDDWZWO5NFZ5TUOUECB2U' where id=7; -update noar ti set b2='SM5VVQLM4GNXDDWZWO5NFZ5TUOUECB2U' where id=7; -update noar tt set v0='GG9I8JP4499CHGYEESY0' where id=8; -update noar ti set v0='GG9I8JP4499CHGYEESY0' where id=8; -update noar tt set b0='SJSEH6KYWRWEFEH89BB652A5BK911N4E' where id=8; -update noar ti set b0='SJSEH6KYWRWEFEH89BB652A5BK911N4E' where id=8; -update noar tt set v0='EVRT6T82RJSF5LY96E0QEPT1XH5H' where id=8; -update noar ti set v0='EVRT6T82RJSF5LY96E0QEPT1XH5H' where id=8; -update noar tt set b1='N' where id=8; -update noar ti set b1='N' where id=8; -update noar tt set v0='RZQOGVX4Q' where id=8; -update noar ti set v0='RZQOGVX4Q' where id=8; -update noar tt set b2='V91DL9J' where id=8; -update noar ti set b2='V91DL9J' where id=8; -update noar tt set v0='W0F' where id=9; -update noar ti set v0='W0F' where id=9; -update noar tt set b0='3' where id=9; -update noar ti set b0='3' where id=9; -update noar tt set v0='7W3UCZM696JOB4D2' where id=9; -update noar ti set v0='7W3UCZM696JOB4D2' where id=9; -update noar tt set b1='FLAX9FH851YA1B0Q8S6PUCU8U9R2FH' where id=9; -update noar ti set b1='FLAX9FH851YA1B0Q8S6PUCU8U9R2FH' where id=9; -update noar tt set v0='F' where id=9; -update noar ti set v0='F' where id=9; -update noar tt set b2='S9MC06HV7MP64K4WFYPFEJ6WW7F42L' where id=9; -update noar ti set b2='S9MC06HV7MP64K4WFYPFEJ6WW7F42L' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -v0 varchar(32) null, -b0 longblob null, -b1 tinyblob null, -b2 blob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='Y0TZFAFPO' where id=1; -update noar ti set v0='Y0TZFAFPO' where id=1; -update noar tt set b0='2AJED9GAEV3L134X2X1FQSTDGH' where id=1; -update noar ti set b0='2AJED9GAEV3L134X2X1FQSTDGH' where id=1; -update noar tt set v0='GUBD7S0WD86QA8HGF' where id=1; -update noar ti set v0='GUBD7S0WD86QA8HGF' where id=1; -update noar tt set b1='2V7D7S6PR4X1AKWC' where id=1; -update noar ti set b1='2V7D7S6PR4X1AKWC' where id=1; -update noar tt set v0='BAE7FM27LJ3KI9TS68KL0Y25K3' where id=1; -update noar ti set v0='BAE7FM27LJ3KI9TS68KL0Y25K3' where id=1; -update noar tt set b2='W6A3JEVTJX24R' where id=1; -update noar ti set b2='W6A3JEVTJX24R' where id=1; -update noar tt set v0='UBWEBIPMQ2NXM43X6EURRZHG79Q3TJI' where id=2; -update noar ti set v0='UBWEBIPMQ2NXM43X6EURRZHG79Q3TJI' where id=2; -update noar tt set b0='8YXEKMBBYQLMC64A6TRYAA' where id=2; -update noar ti set b0='8YXEKMBBYQLMC64A6TRYAA' where id=2; -update noar tt set v0='HU44Z6YHY5R311J' where id=2; -update noar ti set v0='HU44Z6YHY5R311J' where id=2; -update noar tt set b1='AXX672PN0EKWJYWN1F99IB90P' where id=2; -update noar ti set b1='AXX672PN0EKWJYWN1F99IB90P' where id=2; -update noar tt set v0='RUSPN4JRC74C3LSGS' where id=2; -update noar ti set v0='RUSPN4JRC74C3LSGS' where id=2; -update noar tt set b2='SQQBG7T6I7ZULI1FZK0KTGCAF' where id=2; -update noar ti set b2='SQQBG7T6I7ZULI1FZK0KTGCAF' where id=2; -update noar tt set v0='X2N1NAH504TXGFKYENFL3ES0OTF' where id=3; -update noar ti set v0='X2N1NAH504TXGFKYENFL3ES0OTF' where id=3; -update noar tt set b0='N6CQXE66GXE4TQV0O97PO1UFK3MGI6D' where id=3; -update noar ti set b0='N6CQXE66GXE4TQV0O97PO1UFK3MGI6D' where id=3; -update noar tt set v0='GIR0FXNUJOIGGSQ4XV8FCMJLPZ4FD36' where id=3; -update noar ti set v0='GIR0FXNUJOIGGSQ4XV8FCMJLPZ4FD36' where id=3; -update noar tt set b1='UDPP' where id=3; -update noar ti set b1='UDPP' where id=3; -update noar tt set v0='HEVV0XFYYOI4HN677NT775ODYYJZM' where id=3; -update noar ti set v0='HEVV0XFYYOI4HN677NT775ODYYJZM' where id=3; -update noar tt set b2='5471SQJNYHOKVC2HVO8OQ5FJA6T7P' where id=3; -update noar ti set b2='5471SQJNYHOKVC2HVO8OQ5FJA6T7P' where id=3; -update noar tt set v0='I4' where id=4; -update noar ti set v0='I4' where id=4; -update noar tt set b0='4SZQEWI7WP' where id=4; -update noar ti set b0='4SZQEWI7WP' where id=4; -update noar tt set v0='GRF1XVBVD' where id=4; -update noar ti set v0='GRF1XVBVD' where id=4; -update noar tt set b1='NQY3WWU' where id=4; -update noar ti set b1='NQY3WWU' where id=4; -update noar tt set v0='0UI5SRLRGOMI' where id=4; -update noar ti set v0='0UI5SRLRGOMI' where id=4; -update noar tt set b2='I1IO3HUIDWU9CK2GPG6OH' where id=4; -update noar ti set b2='I1IO3HUIDWU9CK2GPG6OH' where id=4; -update noar tt set v0='ZYIOVR4I9VHKUBA3JV0A5' where id=5; -update noar ti set v0='ZYIOVR4I9VHKUBA3JV0A5' where id=5; -update noar tt set b0='GN061QFF0DTCSSIHFNC3I' where id=5; -update noar ti set b0='GN061QFF0DTCSSIHFNC3I' where id=5; -update noar tt set v0='LFB91L6WVCNIV1XUQ88B9KBJGIRH1KTA' where id=5; -update noar ti set v0='LFB91L6WVCNIV1XUQ88B9KBJGIRH1KTA' where id=5; -update noar tt set b1='SF6LHC5Y8VIJVI6HYU8' where id=5; -update noar ti set b1='SF6LHC5Y8VIJVI6HYU8' where id=5; -update noar tt set v0='H61ML8BKE22A1U' where id=5; -update noar ti set v0='H61ML8BKE22A1U' where id=5; -update noar tt set b2='2ZSJ89CRFJ4CSR7H9D9ABDCJS9' where id=5; -update noar ti set b2='2ZSJ89CRFJ4CSR7H9D9ABDCJS9' where id=5; -update noar tt set v0='6ZRR5WMP6LK41K8PWY5SBJ' where id=6; -update noar ti set v0='6ZRR5WMP6LK41K8PWY5SBJ' where id=6; -update noar tt set b0='UIM4YDBTUKZ4KA9E1OJJDH0IPPDWJ6YR' where id=6; -update noar ti set b0='UIM4YDBTUKZ4KA9E1OJJDH0IPPDWJ6YR' where id=6; -update noar tt set v0='UL774WMW2' where id=6; -update noar ti set v0='UL774WMW2' where id=6; -update noar tt set b1='LDYP0LXVSR7V6CFST0' where id=6; -update noar ti set b1='LDYP0LXVSR7V6CFST0' where id=6; -update noar tt set v0='CY5O25XWQHOHVMJ02' where id=6; -update noar ti set v0='CY5O25XWQHOHVMJ02' where id=6; -update noar tt set b2='BIMCIIDQT1JD1' where id=6; -update noar ti set b2='BIMCIIDQT1JD1' where id=6; -update noar tt set v0='K6' where id=7; -update noar ti set v0='K6' where id=7; -update noar tt set b0='A7CSST68SL' where id=7; -update noar ti set b0='A7CSST68SL' where id=7; -update noar tt set v0='99RUPK8PHGC' where id=7; -update noar ti set v0='99RUPK8PHGC' where id=7; -update noar tt set b1='F27B43FXYVNCBEBKH7X2F3MNDGBC0GG' where id=7; -update noar ti set b1='F27B43FXYVNCBEBKH7X2F3MNDGBC0GG' where id=7; -update noar tt set v0='V153NO' where id=7; -update noar ti set v0='V153NO' where id=7; -update noar tt set b2='9D0JW6FJV0J91PN4M1RRUR2M' where id=7; -update noar ti set b2='9D0JW6FJV0J91PN4M1RRUR2M' where id=7; -update noar tt set v0='4FAWYLHXETBPGUI0M0963BL' where id=8; -update noar ti set v0='4FAWYLHXETBPGUI0M0963BL' where id=8; -update noar tt set b0='0NR021OY5XIQX' where id=8; -update noar ti set b0='0NR021OY5XIQX' where id=8; -update noar tt set v0='EUEIQDO4MCV59K2DSAQHZ' where id=8; -update noar ti set v0='EUEIQDO4MCV59K2DSAQHZ' where id=8; -update noar tt set b1='24GNKUXK' where id=8; -update noar ti set b1='24GNKUXK' where id=8; -update noar tt set v0='JIQNYN5SW974MY9GI1YCN5K3X' where id=8; -update noar ti set v0='JIQNYN5SW974MY9GI1YCN5K3X' where id=8; -update noar tt set b2='9OGVXHP498Q882IHV' where id=8; -update noar ti set b2='9OGVXHP498Q882IHV' where id=8; -update noar tt set v0='YIRUN7D9HELPIFI04P1P9NHD' where id=9; -update noar ti set v0='YIRUN7D9HELPIFI04P1P9NHD' where id=9; -update noar tt set b0='KE048PRIXCQETE' where id=9; -update noar ti set b0='KE048PRIXCQETE' where id=9; -update noar tt set v0='UKWHY5NIA' where id=9; -update noar ti set v0='UKWHY5NIA' where id=9; -update noar tt set b1='1IMO1WU3MONAXGZE' where id=9; -update noar ti set b1='1IMO1WU3MONAXGZE' where id=9; -update noar tt set v0='W23HUU7DNUB7M4VGQ38C668' where id=9; -update noar ti set v0='W23HUU7DNUB7M4VGQ38C668' where id=9; -update noar tt set b2='PECRR4P2K93AARS3D' where id=9; -update noar ti set b2='PECRR4P2K93AARS3D' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -v0 varchar(256) null, -b0 longblob null, -b1 tinyblob null, -b2 blob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='B1IGO7DV20L56324S8' where id=1; -update noar ti set v0='B1IGO7DV20L56324S8' where id=1; -update noar tt set b0='MJ8CQD0' where id=1; -update noar ti set b0='MJ8CQD0' where id=1; -update noar tt set v0='S1LA5VV5G9QGH8' where id=1; -update noar ti set v0='S1LA5VV5G9QGH8' where id=1; -update noar tt set b1='J9OY0V' where id=1; -update noar ti set b1='J9OY0V' where id=1; -update noar tt set v0='5EFRNODWQ792HNH3ZJTP7DK3KWU4' where id=1; -update noar ti set v0='5EFRNODWQ792HNH3ZJTP7DK3KWU4' where id=1; -update noar tt set b2='4RG9SMNZC0J' where id=1; -update noar ti set b2='4RG9SMNZC0J' where id=1; -update noar tt set v0='YXA6MMZP' where id=2; -update noar ti set v0='YXA6MMZP' where id=2; -update noar tt set b0='FH3XKR97ETX8BDCLAJBBWL33CADU' where id=2; -update noar ti set b0='FH3XKR97ETX8BDCLAJBBWL33CADU' where id=2; -update noar tt set v0='GGOUD' where id=2; -update noar ti set v0='GGOUD' where id=2; -update noar tt set b1='5B4Y734Q6BSBR5BN35GBGOZ' where id=2; -update noar ti set b1='5B4Y734Q6BSBR5BN35GBGOZ' where id=2; -update noar tt set v0='L7E6RO53E' where id=2; -update noar ti set v0='L7E6RO53E' where id=2; -update noar tt set b2='SE678Z1A7OIGGALRFUCXV2TD9' where id=2; -update noar ti set b2='SE678Z1A7OIGGALRFUCXV2TD9' where id=2; -update noar tt set v0='H0D91Q3RT7H5OJZR' where id=3; -update noar ti set v0='H0D91Q3RT7H5OJZR' where id=3; -update noar tt set b0='XZM16WP9FF4JDBB8AG2M' where id=3; -update noar ti set b0='XZM16WP9FF4JDBB8AG2M' where id=3; -update noar tt set v0='7FFUQ2VU9ZPM0XJVA1OSB' where id=3; -update noar ti set v0='7FFUQ2VU9ZPM0XJVA1OSB' where id=3; -update noar tt set b1='IR7QINVXUYRH7' where id=3; -update noar ti set b1='IR7QINVXUYRH7' where id=3; -update noar tt set v0='9Q4CFI4YXX7VSXV' where id=3; -update noar ti set v0='9Q4CFI4YXX7VSXV' where id=3; -update noar tt set b2='AR02Q3OY9K37ZFUPZG' where id=3; -update noar ti set b2='AR02Q3OY9K37ZFUPZG' where id=3; -update noar tt set v0='2YHV63R51IIK0B2' where id=4; -update noar ti set v0='2YHV63R51IIK0B2' where id=4; -update noar tt set b0='5VXJZZSJLFCEYVBKJ9410Z9FY1KWR4' where id=4; -update noar ti set b0='5VXJZZSJLFCEYVBKJ9410Z9FY1KWR4' where id=4; -update noar tt set v0='M8KJFKIU9' where id=4; -update noar ti set v0='M8KJFKIU9' where id=4; -update noar tt set b1='3GKFA1VK0G7FWFNFCMH6FWDR22S' where id=4; -update noar ti set b1='3GKFA1VK0G7FWFNFCMH6FWDR22S' where id=4; -update noar tt set v0='M5K2XHQ9S5I5701R2IP3V94HOFYDK' where id=4; -update noar ti set v0='M5K2XHQ9S5I5701R2IP3V94HOFYDK' where id=4; -update noar tt set b2='MITK5L82OVS1ZKKSKHFXPQ0IGSYYRT' where id=4; -update noar ti set b2='MITK5L82OVS1ZKKSKHFXPQ0IGSYYRT' where id=4; -update noar tt set v0='146B6' where id=5; -update noar ti set v0='146B6' where id=5; -update noar tt set b0='NIV9UQ0YMCPFQYEX8EH7AO264M33Q4S9' where id=5; -update noar ti set b0='NIV9UQ0YMCPFQYEX8EH7AO264M33Q4S9' where id=5; -update noar tt set v0='53K6LDH3A47JZDCYYF0NA4XY49' where id=5; -update noar ti set v0='53K6LDH3A47JZDCYYF0NA4XY49' where id=5; -update noar tt set b1='KOXNN77WBW40GPFOBMAYP38LQJ' where id=5; -update noar ti set b1='KOXNN77WBW40GPFOBMAYP38LQJ' where id=5; -update noar tt set v0='6CD20XU7YBKQBX7XWBW4GZ2APQZ848' where id=5; -update noar ti set v0='6CD20XU7YBKQBX7XWBW4GZ2APQZ848' where id=5; -update noar tt set b2='FY3M1K67FYR2BZHKH9ZHX0AH6UYA' where id=5; -update noar ti set b2='FY3M1K67FYR2BZHKH9ZHX0AH6UYA' where id=5; -update noar tt set v0='5M1D0YRXIUVAOBIOM1NN' where id=6; -update noar ti set v0='5M1D0YRXIUVAOBIOM1NN' where id=6; -update noar tt set b0='81OULN2Z5U3ZR2F' where id=6; -update noar ti set b0='81OULN2Z5U3ZR2F' where id=6; -update noar tt set v0='NDDE8SHV1T1F10M90N' where id=6; -update noar ti set v0='NDDE8SHV1T1F10M90N' where id=6; -update noar tt set b1='8LCC5RHZ9ID5T366BFOT57HGJSI8J' where id=6; -update noar ti set b1='8LCC5RHZ9ID5T366BFOT57HGJSI8J' where id=6; -update noar tt set v0='78I0ODYN5' where id=6; -update noar ti set v0='78I0ODYN5' where id=6; -update noar tt set b2='6KZVJUE97U4T' where id=6; -update noar ti set b2='6KZVJUE97U4T' where id=6; -update noar tt set v0='65TLN8GCF022' where id=7; -update noar ti set v0='65TLN8GCF022' where id=7; -update noar tt set b0='I' where id=7; -update noar ti set b0='I' where id=7; -update noar tt set v0='NKPCBWKX983O0G65RZTDSPF5113AT' where id=7; -update noar ti set v0='NKPCBWKX983O0G65RZTDSPF5113AT' where id=7; -update noar tt set b1='J1VGQHTJX1TVILO2I1XKH8KV70OCFA9' where id=7; -update noar ti set b1='J1VGQHTJX1TVILO2I1XKH8KV70OCFA9' where id=7; -update noar tt set v0='CR9ZJPVFPBXF994JKXTASXYCEF' where id=7; -update noar ti set v0='CR9ZJPVFPBXF994JKXTASXYCEF' where id=7; -update noar tt set b2='1CDYV630DYAJNVY' where id=7; -update noar ti set b2='1CDYV630DYAJNVY' where id=7; -update noar tt set v0='N9OOB6PD2AORDA' where id=8; -update noar ti set v0='N9OOB6PD2AORDA' where id=8; -update noar tt set b0='47U7FAS5G0796N5YQM' where id=8; -update noar ti set b0='47U7FAS5G0796N5YQM' where id=8; -update noar tt set v0='4' where id=8; -update noar ti set v0='4' where id=8; -update noar tt set b1='Z030' where id=8; -update noar ti set b1='Z030' where id=8; -update noar tt set v0='3ZESS79005ZT9' where id=8; -update noar ti set v0='3ZESS79005ZT9' where id=8; -update noar tt set b2='R6MX2YE81IMI4VP2DYN1S2' where id=8; -update noar ti set b2='R6MX2YE81IMI4VP2DYN1S2' where id=8; -update noar tt set v0='XW1OL1IHPMVWF1GXNGT0CDXQHKE' where id=9; -update noar ti set v0='XW1OL1IHPMVWF1GXNGT0CDXQHKE' where id=9; -update noar tt set b0='KZXRYUP19AX0KFTQ5M' where id=9; -update noar ti set b0='KZXRYUP19AX0KFTQ5M' where id=9; -update noar tt set v0='9ICCVNAFM0JY5OQ8UUWW3' where id=9; -update noar ti set v0='9ICCVNAFM0JY5OQ8UUWW3' where id=9; -update noar tt set b1='0KPET4QKC' where id=9; -update noar ti set b1='0KPET4QKC' where id=9; -update noar tt set v0='C4LZ68' where id=9; -update noar ti set v0='C4LZ68' where id=9; -update noar tt set b2='AAV9VEMA009IHYOJ6SGM7E' where id=9; -update noar ti set b2='AAV9VEMA009IHYOJ6SGM7E' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -v0 varchar(32) not null, -b0 longblob not null, -b1 tinyblob not null, -b2 blob not null -) engine=tokudb; -insert into tt values (1,'','','',''); -insert into tt values (2,'','','',''); -insert into tt values (3,'','','',''); -insert into tt values (4,'','','',''); -insert into tt values (5,'','','',''); -insert into tt values (6,'','','',''); -insert into tt values (7,'','','',''); -insert into tt values (8,'','','',''); -insert into tt values (9,'','','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='L' where id=1; -update noar ti set v0='L' where id=1; -update noar tt set b0='IF69NY3BXJ' where id=1; -update noar ti set b0='IF69NY3BXJ' where id=1; -update noar tt set v0='1ZL' where id=1; -update noar ti set v0='1ZL' where id=1; -update noar tt set b1='XNALR03RRD0ZJKE3R478YN' where id=1; -update noar ti set b1='XNALR03RRD0ZJKE3R478YN' where id=1; -update noar tt set v0='126V8KE3LTM8SJ9VWVT2GKE9NM73V4OI' where id=1; -update noar ti set v0='126V8KE3LTM8SJ9VWVT2GKE9NM73V4OI' where id=1; -update noar tt set b2='6R1CV9QU6BBS0F2TYNBJCJ4DJS' where id=1; -update noar ti set b2='6R1CV9QU6BBS0F2TYNBJCJ4DJS' where id=1; -update noar tt set v0='FKNVSHDGTBANHPFQHF3BRG8ZOS' where id=2; -update noar ti set v0='FKNVSHDGTBANHPFQHF3BRG8ZOS' where id=2; -update noar tt set b0='GNMO31UCLY0MQS8J2FOFNDKVUX' where id=2; -update noar ti set b0='GNMO31UCLY0MQS8J2FOFNDKVUX' where id=2; -update noar tt set v0='H07SAQWVECS74XHRYQ' where id=2; -update noar ti set v0='H07SAQWVECS74XHRYQ' where id=2; -update noar tt set b1='EQLHGZCJVAQXH' where id=2; -update noar ti set b1='EQLHGZCJVAQXH' where id=2; -update noar tt set v0='1H45UEOJWEIU' where id=2; -update noar ti set v0='1H45UEOJWEIU' where id=2; -update noar tt set b2='1UTY5NL' where id=2; -update noar ti set b2='1UTY5NL' where id=2; -update noar tt set v0='BWL3TTLP9JRLJ' where id=3; -update noar ti set v0='BWL3TTLP9JRLJ' where id=3; -update noar tt set b0='HL9JXI94MQB1PO9CVDHQYKKT5D' where id=3; -update noar ti set b0='HL9JXI94MQB1PO9CVDHQYKKT5D' where id=3; -update noar tt set v0='O32AJI62PH1QOV' where id=3; -update noar ti set v0='O32AJI62PH1QOV' where id=3; -update noar tt set b1='A1DCBV2E54EH001Q56HUS' where id=3; -update noar ti set b1='A1DCBV2E54EH001Q56HUS' where id=3; -update noar tt set v0='H6I6Q5EPZLY1QFYT048XMW79GAJX4UFM' where id=3; -update noar ti set v0='H6I6Q5EPZLY1QFYT048XMW79GAJX4UFM' where id=3; -update noar tt set b2='6' where id=3; -update noar ti set b2='6' where id=3; -update noar tt set v0='DCB88P1BS5L4WWTRJJD' where id=4; -update noar ti set v0='DCB88P1BS5L4WWTRJJD' where id=4; -update noar tt set b0='NZ6LCR5WOA2XRU5TD8' where id=4; -update noar ti set b0='NZ6LCR5WOA2XRU5TD8' where id=4; -update noar tt set v0='GP2WH0P74UL3W' where id=4; -update noar ti set v0='GP2WH0P74UL3W' where id=4; -update noar tt set b1='Z8FFCOGQE9D3IDX0' where id=4; -update noar ti set b1='Z8FFCOGQE9D3IDX0' where id=4; -update noar tt set v0='1WPRL8' where id=4; -update noar ti set v0='1WPRL8' where id=4; -update noar tt set b2='1AYFH7ATPPCD7TQEHROSSYXZQ' where id=4; -update noar ti set b2='1AYFH7ATPPCD7TQEHROSSYXZQ' where id=4; -update noar tt set v0='A224B86H08EE0QXF' where id=5; -update noar ti set v0='A224B86H08EE0QXF' where id=5; -update noar tt set b0='ZPS8HCUDPA5HYJJC6KJ51EQ0XP' where id=5; -update noar ti set b0='ZPS8HCUDPA5HYJJC6KJ51EQ0XP' where id=5; -update noar tt set v0='UYDH5NXIL71TQ241LLUN2PPPOY4FX' where id=5; -update noar ti set v0='UYDH5NXIL71TQ241LLUN2PPPOY4FX' where id=5; -update noar tt set b1='NR29' where id=5; -update noar ti set b1='NR29' where id=5; -update noar tt set v0='DLE2' where id=5; -update noar ti set v0='DLE2' where id=5; -update noar tt set b2='75GYXANI2URDQNHH2A0G' where id=5; -update noar ti set b2='75GYXANI2URDQNHH2A0G' where id=5; -update noar tt set v0='UNBC' where id=6; -update noar ti set v0='UNBC' where id=6; -update noar tt set b0='AU5RH' where id=6; -update noar ti set b0='AU5RH' where id=6; -update noar tt set v0='IWW2358XZECDI3JX3' where id=6; -update noar ti set v0='IWW2358XZECDI3JX3' where id=6; -update noar tt set b1='4WC' where id=6; -update noar ti set b1='4WC' where id=6; -update noar tt set v0='AX41AV2FD791OIQ8' where id=6; -update noar ti set v0='AX41AV2FD791OIQ8' where id=6; -update noar tt set b2='N1MVMBKI94HV7KWT5GXPZKC69' where id=6; -update noar ti set b2='N1MVMBKI94HV7KWT5GXPZKC69' where id=6; -update noar tt set v0='JCE827LMW' where id=7; -update noar ti set v0='JCE827LMW' where id=7; -update noar tt set b0='C0CRF0GRC4' where id=7; -update noar ti set b0='C0CRF0GRC4' where id=7; -update noar tt set v0='WM2' where id=7; -update noar ti set v0='WM2' where id=7; -update noar tt set b1='NPLL8QOKHBGII' where id=7; -update noar ti set b1='NPLL8QOKHBGII' where id=7; -update noar tt set v0='E' where id=7; -update noar ti set v0='E' where id=7; -update noar tt set b2='GVI3F9WU1CK2QCL2HNWP64CZQ84OBWTP' where id=7; -update noar ti set b2='GVI3F9WU1CK2QCL2HNWP64CZQ84OBWTP' where id=7; -update noar tt set v0='ICA' where id=8; -update noar ti set v0='ICA' where id=8; -update noar tt set b0='V9CXIG1Y' where id=8; -update noar ti set b0='V9CXIG1Y' where id=8; -update noar tt set v0='GGOEI1JJ37H9UR7SNGA2L6PTZOT' where id=8; -update noar ti set v0='GGOEI1JJ37H9UR7SNGA2L6PTZOT' where id=8; -update noar tt set b1='WXAZQ9B4UXHPS8CLTIY8O' where id=8; -update noar ti set b1='WXAZQ9B4UXHPS8CLTIY8O' where id=8; -update noar tt set v0='GYU0O' where id=8; -update noar ti set v0='GYU0O' where id=8; -update noar tt set b2='0LNX7N8HJKRR613LJOL' where id=8; -update noar ti set b2='0LNX7N8HJKRR613LJOL' where id=8; -update noar tt set v0='60TZIU6G6Q5DE60BF0DVQVL9G' where id=9; -update noar ti set v0='60TZIU6G6Q5DE60BF0DVQVL9G' where id=9; -update noar tt set b0='VJL5PQEICASWGELCQ4CABIL4PN3ME' where id=9; -update noar ti set b0='VJL5PQEICASWGELCQ4CABIL4PN3ME' where id=9; -update noar tt set v0='P1TIS1TKAT' where id=9; -update noar ti set v0='P1TIS1TKAT' where id=9; -update noar tt set b1='6AO7DZDS68' where id=9; -update noar ti set b1='6AO7DZDS68' where id=9; -update noar tt set v0='BFJGZH00LXF9FQ39MK' where id=9; -update noar ti set v0='BFJGZH00LXF9FQ39MK' where id=9; -update noar tt set b2='97F59UKP' where id=9; -update noar ti set b2='97F59UKP' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -v0 varchar(256) not null, -b0 longblob not null, -b1 tinyblob not null, -b2 blob not null -) engine=tokudb; -insert into tt values (1,'','','',''); -insert into tt values (2,'','','',''); -insert into tt values (3,'','','',''); -insert into tt values (4,'','','',''); -insert into tt values (5,'','','',''); -insert into tt values (6,'','','',''); -insert into tt values (7,'','','',''); -insert into tt values (8,'','','',''); -insert into tt values (9,'','','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='ZOCDEKMHB2QN11NE51' where id=1; -update noar ti set v0='ZOCDEKMHB2QN11NE51' where id=1; -update noar tt set b0='CAR6T8HPC5PCL' where id=1; -update noar ti set b0='CAR6T8HPC5PCL' where id=1; -update noar tt set v0='M7W67XGCP293DKXJTQ3XE' where id=1; -update noar ti set v0='M7W67XGCP293DKXJTQ3XE' where id=1; -update noar tt set b1='A8ZNUZK4WN' where id=1; -update noar ti set b1='A8ZNUZK4WN' where id=1; -update noar tt set v0='0T7R81XZSE4D4L9' where id=1; -update noar ti set v0='0T7R81XZSE4D4L9' where id=1; -update noar tt set b2='EPSTA' where id=1; -update noar ti set b2='EPSTA' where id=1; -update noar tt set v0='QVNL9ORWZ4GHG' where id=2; -update noar ti set v0='QVNL9ORWZ4GHG' where id=2; -update noar tt set b0='V9DVQLQ5FTXF' where id=2; -update noar ti set b0='V9DVQLQ5FTXF' where id=2; -update noar tt set v0='TD' where id=2; -update noar ti set v0='TD' where id=2; -update noar tt set b1='UBT1RRT5DYN' where id=2; -update noar ti set b1='UBT1RRT5DYN' where id=2; -update noar tt set v0='7NGC4AD0YOE38CEXI0J5' where id=2; -update noar ti set v0='7NGC4AD0YOE38CEXI0J5' where id=2; -update noar tt set b2='S6H0OB82UFW0V3' where id=2; -update noar ti set b2='S6H0OB82UFW0V3' where id=2; -update noar tt set v0='28EGQHQAHLNM7J61U9EWJ1L' where id=3; -update noar ti set v0='28EGQHQAHLNM7J61U9EWJ1L' where id=3; -update noar tt set b0='2L' where id=3; -update noar ti set b0='2L' where id=3; -update noar tt set v0='HL36AT3QC41UURQ18O7SG32GVLO' where id=3; -update noar ti set v0='HL36AT3QC41UURQ18O7SG32GVLO' where id=3; -update noar tt set b1='DC' where id=3; -update noar ti set b1='DC' where id=3; -update noar tt set v0='VNU4E5UU4ECBEW5OUJ9R3W5ALDN' where id=3; -update noar ti set v0='VNU4E5UU4ECBEW5OUJ9R3W5ALDN' where id=3; -update noar tt set b2='4792LM8T8CIYKBVICLQKQZHJJ207C' where id=3; -update noar ti set b2='4792LM8T8CIYKBVICLQKQZHJJ207C' where id=3; -update noar tt set v0='4' where id=4; -update noar ti set v0='4' where id=4; -update noar tt set b0='OHOPZLCK9' where id=4; -update noar ti set b0='OHOPZLCK9' where id=4; -update noar tt set v0='T7HZEBG5INMYYMBEYYWQLU1' where id=4; -update noar ti set v0='T7HZEBG5INMYYMBEYYWQLU1' where id=4; -update noar tt set b1='BV1JHRA9V' where id=4; -update noar ti set b1='BV1JHRA9V' where id=4; -update noar tt set v0='K1RH2UNXR75EDOJDF4GNH' where id=4; -update noar ti set v0='K1RH2UNXR75EDOJDF4GNH' where id=4; -update noar tt set b2='R1QXWG18EM58E86GOO2GXXP' where id=4; -update noar ti set b2='R1QXWG18EM58E86GOO2GXXP' where id=4; -update noar tt set v0='J9GEQ25I0947YIK70H8Z' where id=5; -update noar ti set v0='J9GEQ25I0947YIK70H8Z' where id=5; -update noar tt set b0='W7VGX4GBRWP7B91HCZ4RJY8J' where id=5; -update noar ti set b0='W7VGX4GBRWP7B91HCZ4RJY8J' where id=5; -update noar tt set v0='INBTWALEA02PU6TTOI0HDQFJ' where id=5; -update noar ti set v0='INBTWALEA02PU6TTOI0HDQFJ' where id=5; -update noar tt set b1='43T04NNJQ2Q7YQGPLE5UVNYE' where id=5; -update noar ti set b1='43T04NNJQ2Q7YQGPLE5UVNYE' where id=5; -update noar tt set v0='ML7' where id=5; -update noar ti set v0='ML7' where id=5; -update noar tt set b2='4MZ99F' where id=5; -update noar ti set b2='4MZ99F' where id=5; -update noar tt set v0='JSYE9U6YDF9Y83DBT6JCT06Q' where id=6; -update noar ti set v0='JSYE9U6YDF9Y83DBT6JCT06Q' where id=6; -update noar tt set b0='9PUCB9SDDFZI1F39' where id=6; -update noar ti set b0='9PUCB9SDDFZI1F39' where id=6; -update noar tt set v0='ZXF8VNJQ5CKM4N0LHVCJX9ELZKOAW6' where id=6; -update noar ti set v0='ZXF8VNJQ5CKM4N0LHVCJX9ELZKOAW6' where id=6; -update noar tt set b1='EOPRC5ZCA02SQOSLDVTKW' where id=6; -update noar ti set b1='EOPRC5ZCA02SQOSLDVTKW' where id=6; -update noar tt set v0='3ZA7LXSSFQ9ETSN7AT8R8AE' where id=6; -update noar ti set v0='3ZA7LXSSFQ9ETSN7AT8R8AE' where id=6; -update noar tt set b2='414BF7SBPRW3DCT5A5ME7IWK' where id=6; -update noar ti set b2='414BF7SBPRW3DCT5A5ME7IWK' where id=6; -update noar tt set v0='V7GKO7XGBPF986HVCIYCW7WS9HYC2' where id=7; -update noar ti set v0='V7GKO7XGBPF986HVCIYCW7WS9HYC2' where id=7; -update noar tt set b0='SPUUTRMS' where id=7; -update noar ti set b0='SPUUTRMS' where id=7; -update noar tt set v0='DGNM362PAALAC' where id=7; -update noar ti set v0='DGNM362PAALAC' where id=7; -update noar tt set b1='MN7RXYQ1ID5R1K4C' where id=7; -update noar ti set b1='MN7RXYQ1ID5R1K4C' where id=7; -update noar tt set v0='TMO9NDT1UJRC3HSRQ9K7UXVAE3P1O' where id=7; -update noar ti set v0='TMO9NDT1UJRC3HSRQ9K7UXVAE3P1O' where id=7; -update noar tt set b2='7JRP2HY' where id=7; -update noar ti set b2='7JRP2HY' where id=7; -update noar tt set v0='JAE9LUZV6T7ZJYD0D42B' where id=8; -update noar ti set v0='JAE9LUZV6T7ZJYD0D42B' where id=8; -update noar tt set b0='B' where id=8; -update noar ti set b0='B' where id=8; -update noar tt set v0='OW1AECDWD820HL0WQRVZ94' where id=8; -update noar ti set v0='OW1AECDWD820HL0WQRVZ94' where id=8; -update noar tt set b1='LHIISZ7Y6CG70ZFD6' where id=8; -update noar ti set b1='LHIISZ7Y6CG70ZFD6' where id=8; -update noar tt set v0='PAMD08IADUBO' where id=8; -update noar ti set v0='PAMD08IADUBO' where id=8; -update noar tt set b2='ZMJSZBQIPHR9H74P75DYIWDN8' where id=8; -update noar ti set b2='ZMJSZBQIPHR9H74P75DYIWDN8' where id=8; -update noar tt set v0='6B5DOVQDSMP7T2HK1G' where id=9; -update noar ti set v0='6B5DOVQDSMP7T2HK1G' where id=9; -update noar tt set b0='CNFE1MUZFMNH8HNUCHLKF3A4QUL' where id=9; -update noar ti set b0='CNFE1MUZFMNH8HNUCHLKF3A4QUL' where id=9; -update noar tt set v0='CZBB1JOJ5HZJZJB9QLXV86Q5TL1' where id=9; -update noar ti set v0='CZBB1JOJ5HZJZJB9QLXV86Q5TL1' where id=9; -update noar tt set b1='S0RYYTTDT1SKPYWPRUBJ' where id=9; -update noar ti set b1='S0RYYTTDT1SKPYWPRUBJ' where id=9; -update noar tt set v0='BPPVJ1QZK42' where id=9; -update noar ti set v0='BPPVJ1QZK42' where id=9; -update noar tt set b2='01F0KRLBVONW' where id=9; -update noar ti set b2='01F0KRLBVONW' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -v0 varchar(32) null, -b0 longblob null, -b1 tinyblob null, -b2 mediumblob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='ULS8LOZYQY7ZN73UMV8ZBPJA' where id=1; -update noar ti set v0='ULS8LOZYQY7ZN73UMV8ZBPJA' where id=1; -update noar tt set b0='TICZNHX6SMBRVN' where id=1; -update noar ti set b0='TICZNHX6SMBRVN' where id=1; -update noar tt set v0='3' where id=1; -update noar ti set v0='3' where id=1; -update noar tt set b1='E' where id=1; -update noar ti set b1='E' where id=1; -update noar tt set v0='HAHL7PP' where id=1; -update noar ti set v0='HAHL7PP' where id=1; -update noar tt set b2='DE1DCSY2SS9PA3' where id=1; -update noar ti set b2='DE1DCSY2SS9PA3' where id=1; -update noar tt set v0='SA2EBYISV883BAF' where id=2; -update noar ti set v0='SA2EBYISV883BAF' where id=2; -update noar tt set b0='P0' where id=2; -update noar ti set b0='P0' where id=2; -update noar tt set v0='BRLQDV0VX6WY5V42TIQ3CEAS' where id=2; -update noar ti set v0='BRLQDV0VX6WY5V42TIQ3CEAS' where id=2; -update noar tt set b1='G' where id=2; -update noar ti set b1='G' where id=2; -update noar tt set v0='YW87EGUCTJB9XUY9Z5' where id=2; -update noar ti set v0='YW87EGUCTJB9XUY9Z5' where id=2; -update noar tt set b2='OLF6D7Y0DJ5QKXYYXQ6I34HNUO0GM4YJ' where id=2; -update noar ti set b2='OLF6D7Y0DJ5QKXYYXQ6I34HNUO0GM4YJ' where id=2; -update noar tt set v0='M3ZJUW12WKFM0KXPNVGE' where id=3; -update noar ti set v0='M3ZJUW12WKFM0KXPNVGE' where id=3; -update noar tt set b0='ECSUVUKU2YJ4WOM' where id=3; -update noar ti set b0='ECSUVUKU2YJ4WOM' where id=3; -update noar tt set v0='67SBC0QSVQXW8W77JFPTFQ36Q6SBR3V5' where id=3; -update noar ti set v0='67SBC0QSVQXW8W77JFPTFQ36Q6SBR3V5' where id=3; -update noar tt set b1='2M74HBMZOZCAD8P2' where id=3; -update noar ti set b1='2M74HBMZOZCAD8P2' where id=3; -update noar tt set v0='168' where id=3; -update noar ti set v0='168' where id=3; -update noar tt set b2='T3PIJT7PZ4S' where id=3; -update noar ti set b2='T3PIJT7PZ4S' where id=3; -update noar tt set v0='I1QPO05HPCKYFJLVRQ4' where id=4; -update noar ti set v0='I1QPO05HPCKYFJLVRQ4' where id=4; -update noar tt set b0='NQKU2GUCKPHJ8BP15M1B2O6VBF29' where id=4; -update noar ti set b0='NQKU2GUCKPHJ8BP15M1B2O6VBF29' where id=4; -update noar tt set v0='VEPYIS3XNWF' where id=4; -update noar ti set v0='VEPYIS3XNWF' where id=4; -update noar tt set b1='A6MSVJZF9BPUS2MRZVYR61LG3' where id=4; -update noar ti set b1='A6MSVJZF9BPUS2MRZVYR61LG3' where id=4; -update noar tt set v0='DAESI1GVZV5I8E7Y7A4LW8E0OV' where id=4; -update noar ti set v0='DAESI1GVZV5I8E7Y7A4LW8E0OV' where id=4; -update noar tt set b2='6ORP9' where id=4; -update noar ti set b2='6ORP9' where id=4; -update noar tt set v0='KQK00LMBM42A' where id=5; -update noar ti set v0='KQK00LMBM42A' where id=5; -update noar tt set b0='XEVYZCWFKT4TSOTXVE3O3VL7B' where id=5; -update noar ti set b0='XEVYZCWFKT4TSOTXVE3O3VL7B' where id=5; -update noar tt set v0='VSG14N0REDW' where id=5; -update noar ti set v0='VSG14N0REDW' where id=5; -update noar tt set b1='I29HIB0L8TMPU8YKQ146' where id=5; -update noar ti set b1='I29HIB0L8TMPU8YKQ146' where id=5; -update noar tt set v0='0CUA7XOPXVJ66ZHFL43SQ8BITRBG8' where id=5; -update noar ti set v0='0CUA7XOPXVJ66ZHFL43SQ8BITRBG8' where id=5; -update noar tt set b2='QDQBGT' where id=5; -update noar ti set b2='QDQBGT' where id=5; -update noar tt set v0='AXUJ' where id=6; -update noar ti set v0='AXUJ' where id=6; -update noar tt set b0='6KVRFRJ9ZD1647' where id=6; -update noar ti set b0='6KVRFRJ9ZD1647' where id=6; -update noar tt set v0='VYVOYKY' where id=6; -update noar ti set v0='VYVOYKY' where id=6; -update noar tt set b1='K0SK' where id=6; -update noar ti set b1='K0SK' where id=6; -update noar tt set v0='70040D81WJSOUYQAJDZ5Q1VPXCGG' where id=6; -update noar ti set v0='70040D81WJSOUYQAJDZ5Q1VPXCGG' where id=6; -update noar tt set b2='HZ' where id=6; -update noar ti set b2='HZ' where id=6; -update noar tt set v0='NTYB9VB9QWY0QPW0HLWA38' where id=7; -update noar ti set v0='NTYB9VB9QWY0QPW0HLWA38' where id=7; -update noar tt set b0='SE8G7OYYORSJXZ' where id=7; -update noar ti set b0='SE8G7OYYORSJXZ' where id=7; -update noar tt set v0='QMLE6CXXCLSVB' where id=7; -update noar ti set v0='QMLE6CXXCLSVB' where id=7; -update noar tt set b1='CHP77LJWJQB1I076U4DWXX4M' where id=7; -update noar ti set b1='CHP77LJWJQB1I076U4DWXX4M' where id=7; -update noar tt set v0='OU1OE5' where id=7; -update noar ti set v0='OU1OE5' where id=7; -update noar tt set b2='6ICDHU6MBIBOVRIPH9EHZRXERBNS' where id=7; -update noar ti set b2='6ICDHU6MBIBOVRIPH9EHZRXERBNS' where id=7; -update noar tt set v0='QB' where id=8; -update noar ti set v0='QB' where id=8; -update noar tt set b0='40PP83' where id=8; -update noar ti set b0='40PP83' where id=8; -update noar tt set v0='0DJVHDFWUDQUH6G' where id=8; -update noar ti set v0='0DJVHDFWUDQUH6G' where id=8; -update noar tt set b1='N02XUW50C9UZG3Y24ZECG0T67NMG0C' where id=8; -update noar ti set b1='N02XUW50C9UZG3Y24ZECG0T67NMG0C' where id=8; -update noar tt set v0='I4W1' where id=8; -update noar ti set v0='I4W1' where id=8; -update noar tt set b2='CP2R41KJPHKBACPNZ' where id=8; -update noar ti set b2='CP2R41KJPHKBACPNZ' where id=8; -update noar tt set v0='DFH1J14EYHYHMNPL8UX1Q4SRYNVXBRY' where id=9; -update noar ti set v0='DFH1J14EYHYHMNPL8UX1Q4SRYNVXBRY' where id=9; -update noar tt set b0='33J76D63WVJ' where id=9; -update noar ti set b0='33J76D63WVJ' where id=9; -update noar tt set v0='3N41WDAVWDN24SJD94X' where id=9; -update noar ti set v0='3N41WDAVWDN24SJD94X' where id=9; -update noar tt set b1='X5LXGCJ5FMN4GC26E737SWDDSWDU4H87' where id=9; -update noar ti set b1='X5LXGCJ5FMN4GC26E737SWDDSWDU4H87' where id=9; -update noar tt set v0='RCDMKUG' where id=9; -update noar ti set v0='RCDMKUG' where id=9; -update noar tt set b2='ZUQE6NCO53NUAMCI79J2V' where id=9; -update noar ti set b2='ZUQE6NCO53NUAMCI79J2V' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -v0 varchar(256) null, -b0 longblob null, -b1 tinyblob null, -b2 mediumblob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='IGMFUYDB0UD218GSMIUTY1H' where id=1; -update noar ti set v0='IGMFUYDB0UD218GSMIUTY1H' where id=1; -update noar tt set b0='NAKSD4AHH17MNU4C0R1G5LWHDHP' where id=1; -update noar ti set b0='NAKSD4AHH17MNU4C0R1G5LWHDHP' where id=1; -update noar tt set v0='LODP6R' where id=1; -update noar ti set v0='LODP6R' where id=1; -update noar tt set b1='S97PHH46QPU9SSAENQLUSCJHAX6ME' where id=1; -update noar ti set b1='S97PHH46QPU9SSAENQLUSCJHAX6ME' where id=1; -update noar tt set v0='KGLZL2SDLF' where id=1; -update noar ti set v0='KGLZL2SDLF' where id=1; -update noar tt set b2='LQOR5V8WNGV907Q7CUW51' where id=1; -update noar ti set b2='LQOR5V8WNGV907Q7CUW51' where id=1; -update noar tt set v0='YSRDR' where id=2; -update noar ti set v0='YSRDR' where id=2; -update noar tt set b0='EC1IY3VJPV5BT6S9RHLPR3RIK0P9T' where id=2; -update noar ti set b0='EC1IY3VJPV5BT6S9RHLPR3RIK0P9T' where id=2; -update noar tt set v0='5TQIAH62TOYG98O9AAXS73B10YGQMMG' where id=2; -update noar ti set v0='5TQIAH62TOYG98O9AAXS73B10YGQMMG' where id=2; -update noar tt set b1='CVGSJMQQ10A9XTYZOLTF75' where id=2; -update noar ti set b1='CVGSJMQQ10A9XTYZOLTF75' where id=2; -update noar tt set v0='UG61G1IU02DC' where id=2; -update noar ti set v0='UG61G1IU02DC' where id=2; -update noar tt set b2='IRJ627EIQNXIE2OO152N41H' where id=2; -update noar ti set b2='IRJ627EIQNXIE2OO152N41H' where id=2; -update noar tt set v0='RUAXU0MH' where id=3; -update noar ti set v0='RUAXU0MH' where id=3; -update noar tt set b0='DYQAB9S08O' where id=3; -update noar ti set b0='DYQAB9S08O' where id=3; -update noar tt set v0='79T1MC1AM8LWSS4JPLTM' where id=3; -update noar ti set v0='79T1MC1AM8LWSS4JPLTM' where id=3; -update noar tt set b1='0K838MO2IQ89' where id=3; -update noar ti set b1='0K838MO2IQ89' where id=3; -update noar tt set v0='U2RHCV8SD4VYMN8JXYXV9' where id=3; -update noar ti set v0='U2RHCV8SD4VYMN8JXYXV9' where id=3; -update noar tt set b2='BDVP168J' where id=3; -update noar ti set b2='BDVP168J' where id=3; -update noar tt set v0='NO8T26I920P6WHW2' where id=4; -update noar ti set v0='NO8T26I920P6WHW2' where id=4; -update noar tt set b0='ZB81ZCBMCEQW0QWL0UDSXQ' where id=4; -update noar ti set b0='ZB81ZCBMCEQW0QWL0UDSXQ' where id=4; -update noar tt set v0='923X' where id=4; -update noar ti set v0='923X' where id=4; -update noar tt set b1='EVV' where id=4; -update noar ti set b1='EVV' where id=4; -update noar tt set v0='J26PMGW0GE9O5' where id=4; -update noar ti set v0='J26PMGW0GE9O5' where id=4; -update noar tt set b2='EM' where id=4; -update noar ti set b2='EM' where id=4; -update noar tt set v0='2VVNYN6UAR7XGIVAYN3TXDRCXI' where id=5; -update noar ti set v0='2VVNYN6UAR7XGIVAYN3TXDRCXI' where id=5; -update noar tt set b0='28FI0Y8MXCU2CC6' where id=5; -update noar ti set b0='28FI0Y8MXCU2CC6' where id=5; -update noar tt set v0='BZJ42JC' where id=5; -update noar ti set v0='BZJ42JC' where id=5; -update noar tt set b1='Q' where id=5; -update noar ti set b1='Q' where id=5; -update noar tt set v0='UGY2B9' where id=5; -update noar ti set v0='UGY2B9' where id=5; -update noar tt set b2='ZZBK9NNA630N9FWDNV8VCC' where id=5; -update noar ti set b2='ZZBK9NNA630N9FWDNV8VCC' where id=5; -update noar tt set v0='60PYFUZ2KZ0U9EL2' where id=6; -update noar ti set v0='60PYFUZ2KZ0U9EL2' where id=6; -update noar tt set b0='E0GPNXK7PRX9XHBXCJDAD' where id=6; -update noar ti set b0='E0GPNXK7PRX9XHBXCJDAD' where id=6; -update noar tt set v0='M1X5T' where id=6; -update noar ti set v0='M1X5T' where id=6; -update noar tt set b1='JJV5SDS' where id=6; -update noar ti set b1='JJV5SDS' where id=6; -update noar tt set v0='29' where id=6; -update noar ti set v0='29' where id=6; -update noar tt set b2='9HHBDWFG1IU' where id=6; -update noar ti set b2='9HHBDWFG1IU' where id=6; -update noar tt set v0='UEY1BXVS41D2T3QM' where id=7; -update noar ti set v0='UEY1BXVS41D2T3QM' where id=7; -update noar tt set b0='Y54UF5X58AAPJJX0P6KIQFVNKNVK' where id=7; -update noar ti set b0='Y54UF5X58AAPJJX0P6KIQFVNKNVK' where id=7; -update noar tt set v0='IFNRKG8PG6HAX42HM7' where id=7; -update noar ti set v0='IFNRKG8PG6HAX42HM7' where id=7; -update noar tt set b1='6L22HQB9YGS3YQVZO' where id=7; -update noar ti set b1='6L22HQB9YGS3YQVZO' where id=7; -update noar tt set v0='TN5DVBFBXYSPTBS4D4RDDVMB67BIG' where id=7; -update noar ti set v0='TN5DVBFBXYSPTBS4D4RDDVMB67BIG' where id=7; -update noar tt set b2='85SHVJ96H5FWDMXWP' where id=7; -update noar ti set b2='85SHVJ96H5FWDMXWP' where id=7; -update noar tt set v0='Z5B' where id=8; -update noar ti set v0='Z5B' where id=8; -update noar tt set b0='XGWL9B7KW9631CD6WFTJZND7UQXAV' where id=8; -update noar ti set b0='XGWL9B7KW9631CD6WFTJZND7UQXAV' where id=8; -update noar tt set v0='CWLWGPLK8CXPFGPI7EB' where id=8; -update noar ti set v0='CWLWGPLK8CXPFGPI7EB' where id=8; -update noar tt set b1='H' where id=8; -update noar ti set b1='H' where id=8; -update noar tt set v0='F0DV13Q4LBKEUAKPC3NGO3ZT' where id=8; -update noar ti set v0='F0DV13Q4LBKEUAKPC3NGO3ZT' where id=8; -update noar tt set b2='47DOY1MIKDJTA' where id=8; -update noar ti set b2='47DOY1MIKDJTA' where id=8; -update noar tt set v0='IPIDSS1GA0TSF6OST3IEWEH205TS1' where id=9; -update noar ti set v0='IPIDSS1GA0TSF6OST3IEWEH205TS1' where id=9; -update noar tt set b0='8' where id=9; -update noar ti set b0='8' where id=9; -update noar tt set v0='L1YFD04D2YP9OKQ00K' where id=9; -update noar ti set v0='L1YFD04D2YP9OKQ00K' where id=9; -update noar tt set b1='JA58' where id=9; -update noar ti set b1='JA58' where id=9; -update noar tt set v0='H40W5JV3HKCXQGMF' where id=9; -update noar ti set v0='H40W5JV3HKCXQGMF' where id=9; -update noar tt set b2='OICEWOXTGPQLL5SBZI3COVK0' where id=9; -update noar ti set b2='OICEWOXTGPQLL5SBZI3COVK0' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -v0 varchar(32) not null, -b0 longblob not null, -b1 tinyblob not null, -b2 mediumblob not null -) engine=tokudb; -insert into tt values (1,'','','',''); -insert into tt values (2,'','','',''); -insert into tt values (3,'','','',''); -insert into tt values (4,'','','',''); -insert into tt values (5,'','','',''); -insert into tt values (6,'','','',''); -insert into tt values (7,'','','',''); -insert into tt values (8,'','','',''); -insert into tt values (9,'','','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='PU3EM78KC13EOL243T9K4019IPRWIPT9' where id=1; -update noar ti set v0='PU3EM78KC13EOL243T9K4019IPRWIPT9' where id=1; -update noar tt set b0='O1EL4FXXE6HL6UB4JLDZ9GDCE0M' where id=1; -update noar ti set b0='O1EL4FXXE6HL6UB4JLDZ9GDCE0M' where id=1; -update noar tt set v0='ZS' where id=1; -update noar ti set v0='ZS' where id=1; -update noar tt set b1='5DOON491BMLHG2ESO' where id=1; -update noar ti set b1='5DOON491BMLHG2ESO' where id=1; -update noar tt set v0='W9MI90OM' where id=1; -update noar ti set v0='W9MI90OM' where id=1; -update noar tt set b2='JA9KNJ1N12K57LK54N37FPI' where id=1; -update noar ti set b2='JA9KNJ1N12K57LK54N37FPI' where id=1; -update noar tt set v0='K5WL57F6S2QB6UH6RDIP2VTQD1' where id=2; -update noar ti set v0='K5WL57F6S2QB6UH6RDIP2VTQD1' where id=2; -update noar tt set b0='YOMA9VC5QZHSWW' where id=2; -update noar ti set b0='YOMA9VC5QZHSWW' where id=2; -update noar tt set v0='BNBIY5QEV9ZVAQXI' where id=2; -update noar ti set v0='BNBIY5QEV9ZVAQXI' where id=2; -update noar tt set b1='TO9B82GFVV1SB40A88C0VL' where id=2; -update noar ti set b1='TO9B82GFVV1SB40A88C0VL' where id=2; -update noar tt set v0='6H3893SDBQ41MW' where id=2; -update noar ti set v0='6H3893SDBQ41MW' where id=2; -update noar tt set b2='3WF2LSAZ29BLJP4P5IE' where id=2; -update noar ti set b2='3WF2LSAZ29BLJP4P5IE' where id=2; -update noar tt set v0='FGC5A0Q9XQTOQEXFD2J' where id=3; -update noar ti set v0='FGC5A0Q9XQTOQEXFD2J' where id=3; -update noar tt set b0='MR4ETFEZ9MKTEM9443UDZ9MGOLL1' where id=3; -update noar ti set b0='MR4ETFEZ9MKTEM9443UDZ9MGOLL1' where id=3; -update noar tt set v0='EHJ3SIELU89Q' where id=3; -update noar ti set v0='EHJ3SIELU89Q' where id=3; -update noar tt set b1='CWHXGMDBX3' where id=3; -update noar ti set b1='CWHXGMDBX3' where id=3; -update noar tt set v0='3TF3QDOHS' where id=3; -update noar ti set v0='3TF3QDOHS' where id=3; -update noar tt set b2='M3YKPTO5H4C6PP6X0TXF5Q' where id=3; -update noar ti set b2='M3YKPTO5H4C6PP6X0TXF5Q' where id=3; -update noar tt set v0='CWHXBTFQJHNCPCM8DXIPFP' where id=4; -update noar ti set v0='CWHXBTFQJHNCPCM8DXIPFP' where id=4; -update noar tt set b0='NQ4G3ZC6HGAETFG7KKI0SLWXA642' where id=4; -update noar ti set b0='NQ4G3ZC6HGAETFG7KKI0SLWXA642' where id=4; -update noar tt set v0='NZS92FP4JBZF' where id=4; -update noar ti set v0='NZS92FP4JBZF' where id=4; -update noar tt set b1='P88E' where id=4; -update noar ti set b1='P88E' where id=4; -update noar tt set v0='TKSX7PY30C4U0XMU3L6W5YE4UVL' where id=4; -update noar ti set v0='TKSX7PY30C4U0XMU3L6W5YE4UVL' where id=4; -update noar tt set b2='MFEKKPG' where id=4; -update noar ti set b2='MFEKKPG' where id=4; -update noar tt set v0='C6URJHA60YKGW1I7KURHMPN9004LCL' where id=5; -update noar ti set v0='C6URJHA60YKGW1I7KURHMPN9004LCL' where id=5; -update noar tt set b0='Q8R3IJUM02Y2WEDL6UY61N5K02EZJRTA' where id=5; -update noar ti set b0='Q8R3IJUM02Y2WEDL6UY61N5K02EZJRTA' where id=5; -update noar tt set v0='94T3FOLJCXXWGM' where id=5; -update noar ti set v0='94T3FOLJCXXWGM' where id=5; -update noar tt set b1='LKO3' where id=5; -update noar ti set b1='LKO3' where id=5; -update noar tt set v0='IML7U3CCMJWATB' where id=5; -update noar ti set v0='IML7U3CCMJWATB' where id=5; -update noar tt set b2='IRZGRE' where id=5; -update noar ti set b2='IRZGRE' where id=5; -update noar tt set v0='SCAS7O8V7XQER' where id=6; -update noar ti set v0='SCAS7O8V7XQER' where id=6; -update noar tt set b0='GYWPLARQZ19TWMKKPV9RXXRRIX' where id=6; -update noar ti set b0='GYWPLARQZ19TWMKKPV9RXXRRIX' where id=6; -update noar tt set v0='M744VJHSRQVPSB6Z8M46TGMDOMH2LMT8' where id=6; -update noar ti set v0='M744VJHSRQVPSB6Z8M46TGMDOMH2LMT8' where id=6; -update noar tt set b1='M7HADTIAYFFZ2CZA3JRW48GI6' where id=6; -update noar ti set b1='M7HADTIAYFFZ2CZA3JRW48GI6' where id=6; -update noar tt set v0='L2NBU13U2JUQNSFTR2L' where id=6; -update noar ti set v0='L2NBU13U2JUQNSFTR2L' where id=6; -update noar tt set b2='DE1246A53PW4EF0K3VMIL5G' where id=6; -update noar ti set b2='DE1246A53PW4EF0K3VMIL5G' where id=6; -update noar tt set v0='9J79ZA0WS33TSPQ7BUJCABZ' where id=7; -update noar ti set v0='9J79ZA0WS33TSPQ7BUJCABZ' where id=7; -update noar tt set b0='P3' where id=7; -update noar ti set b0='P3' where id=7; -update noar tt set v0='BPBPYRZ5557DD3SUD' where id=7; -update noar ti set v0='BPBPYRZ5557DD3SUD' where id=7; -update noar tt set b1='P60SQ1UJO40J00TP' where id=7; -update noar ti set b1='P60SQ1UJO40J00TP' where id=7; -update noar tt set v0='LC1RB9ENHEKJ4' where id=7; -update noar ti set v0='LC1RB9ENHEKJ4' where id=7; -update noar tt set b2='K287TBFS03Q6SSEEC42LTZNHR' where id=7; -update noar ti set b2='K287TBFS03Q6SSEEC42LTZNHR' where id=7; -update noar tt set v0='ZTL4RJDSV5UU8D4YTLF38825PVFH42' where id=8; -update noar ti set v0='ZTL4RJDSV5UU8D4YTLF38825PVFH42' where id=8; -update noar tt set b0='BAMXRTMNSY3F4SWXQYZVZQO83DVZVXD0' where id=8; -update noar ti set b0='BAMXRTMNSY3F4SWXQYZVZQO83DVZVXD0' where id=8; -update noar tt set v0='U5JFGIIHE8T7OYRYECDB6SOZRDZ1R' where id=8; -update noar ti set v0='U5JFGIIHE8T7OYRYECDB6SOZRDZ1R' where id=8; -update noar tt set b1='ZCCJCA6ADQJTB09W0I8W3HNME' where id=8; -update noar ti set b1='ZCCJCA6ADQJTB09W0I8W3HNME' where id=8; -update noar tt set v0='7QAXCDCJSRBWTS7LHFC2ZH' where id=8; -update noar ti set v0='7QAXCDCJSRBWTS7LHFC2ZH' where id=8; -update noar tt set b2='99N2UPRFUGZ0DH' where id=8; -update noar ti set b2='99N2UPRFUGZ0DH' where id=8; -update noar tt set v0='IYK6UQA' where id=9; -update noar ti set v0='IYK6UQA' where id=9; -update noar tt set b0='EPQ51VE7P4H9T721Q89XFI8NRHL7S3M' where id=9; -update noar ti set b0='EPQ51VE7P4H9T721Q89XFI8NRHL7S3M' where id=9; -update noar tt set v0='OXWX5PWC7R0ZWJKZKTDROF' where id=9; -update noar ti set v0='OXWX5PWC7R0ZWJKZKTDROF' where id=9; -update noar tt set b1='SAAXXBPEISOGETTZWTCL' where id=9; -update noar ti set b1='SAAXXBPEISOGETTZWTCL' where id=9; -update noar tt set v0='A0FTT95ECJ9A7M9CBVXDURG' where id=9; -update noar ti set v0='A0FTT95ECJ9A7M9CBVXDURG' where id=9; -update noar tt set b2='TJ42' where id=9; -update noar ti set b2='TJ42' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -v0 varchar(256) not null, -b0 longblob not null, -b1 tinyblob not null, -b2 mediumblob not null -) engine=tokudb; -insert into tt values (1,'','','',''); -insert into tt values (2,'','','',''); -insert into tt values (3,'','','',''); -insert into tt values (4,'','','',''); -insert into tt values (5,'','','',''); -insert into tt values (6,'','','',''); -insert into tt values (7,'','','',''); -insert into tt values (8,'','','',''); -insert into tt values (9,'','','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='EDGZ' where id=1; -update noar ti set v0='EDGZ' where id=1; -update noar tt set b0='LY1ZQXGR5VZCG' where id=1; -update noar ti set b0='LY1ZQXGR5VZCG' where id=1; -update noar tt set v0='1WCOIK6IX1' where id=1; -update noar ti set v0='1WCOIK6IX1' where id=1; -update noar tt set b1='UXML1V' where id=1; -update noar ti set b1='UXML1V' where id=1; -update noar tt set v0='Q58HLME7JQQR7Q09S' where id=1; -update noar ti set v0='Q58HLME7JQQR7Q09S' where id=1; -update noar tt set b2='J19SCMYZXROWONP5' where id=1; -update noar ti set b2='J19SCMYZXROWONP5' where id=1; -update noar tt set v0='Q3WCQBSGBGPO7' where id=2; -update noar ti set v0='Q3WCQBSGBGPO7' where id=2; -update noar tt set b0='EXOLCMZSGKVB1MH8VFZ08528CQXUWFN' where id=2; -update noar ti set b0='EXOLCMZSGKVB1MH8VFZ08528CQXUWFN' where id=2; -update noar tt set v0='4PT' where id=2; -update noar ti set v0='4PT' where id=2; -update noar tt set b1='TI4ND0PN5C' where id=2; -update noar ti set b1='TI4ND0PN5C' where id=2; -update noar tt set v0='DZXS' where id=2; -update noar ti set v0='DZXS' where id=2; -update noar tt set b2='G7OUN4L43' where id=2; -update noar ti set b2='G7OUN4L43' where id=2; -update noar tt set v0='URLY1C4ACI5GCXO4CXX' where id=3; -update noar ti set v0='URLY1C4ACI5GCXO4CXX' where id=3; -update noar tt set b0='8VEB2' where id=3; -update noar ti set b0='8VEB2' where id=3; -update noar tt set v0='77IY79DQ78MPKS2XZ5ZHI2D32O6GC' where id=3; -update noar ti set v0='77IY79DQ78MPKS2XZ5ZHI2D32O6GC' where id=3; -update noar tt set b1='PMWL2CZXV17YH1OOFVOGZ5OUH331' where id=3; -update noar ti set b1='PMWL2CZXV17YH1OOFVOGZ5OUH331' where id=3; -update noar tt set v0='3LXWSFYZLAH3MR8PDIBX3MX' where id=3; -update noar ti set v0='3LXWSFYZLAH3MR8PDIBX3MX' where id=3; -update noar tt set b2='X3S7GUZJ1' where id=3; -update noar ti set b2='X3S7GUZJ1' where id=3; -update noar tt set v0='1W9S8' where id=4; -update noar ti set v0='1W9S8' where id=4; -update noar tt set b0='USZE17MLNOXAJE0FFZ8EVTUCTTZYJ9XH' where id=4; -update noar ti set b0='USZE17MLNOXAJE0FFZ8EVTUCTTZYJ9XH' where id=4; -update noar tt set v0='N0U8QCM0EN8HRO34HEYNHW4Z' where id=4; -update noar ti set v0='N0U8QCM0EN8HRO34HEYNHW4Z' where id=4; -update noar tt set b1='7RXWG4BW36Y54041ZZXA7IIP4GMCDJFA' where id=4; -update noar ti set b1='7RXWG4BW36Y54041ZZXA7IIP4GMCDJFA' where id=4; -update noar tt set v0='EKPT46X2S7VOX1ONCVEGFEL5BWUL' where id=4; -update noar ti set v0='EKPT46X2S7VOX1ONCVEGFEL5BWUL' where id=4; -update noar tt set b2='GZ04H5FE0HRQT38XBQVVR4RD2L7A' where id=4; -update noar ti set b2='GZ04H5FE0HRQT38XBQVVR4RD2L7A' where id=4; -update noar tt set v0='9EWYHRP0D8' where id=5; -update noar ti set v0='9EWYHRP0D8' where id=5; -update noar tt set b0='LPGD' where id=5; -update noar ti set b0='LPGD' where id=5; -update noar tt set v0='XG7BF8KE' where id=5; -update noar ti set v0='XG7BF8KE' where id=5; -update noar tt set b1='U5GPP2BCJO9N1WYP30' where id=5; -update noar ti set b1='U5GPP2BCJO9N1WYP30' where id=5; -update noar tt set v0='UV5XL42YUWWXG' where id=5; -update noar ti set v0='UV5XL42YUWWXG' where id=5; -update noar tt set b2='7MN5NZD36Q96W9E' where id=5; -update noar ti set b2='7MN5NZD36Q96W9E' where id=5; -update noar tt set v0='AGCT3IRDSD3PWB5AL3WJMPW6K2W0' where id=6; -update noar ti set v0='AGCT3IRDSD3PWB5AL3WJMPW6K2W0' where id=6; -update noar tt set b0='VO' where id=6; -update noar ti set b0='VO' where id=6; -update noar tt set v0='Y6' where id=6; -update noar ti set v0='Y6' where id=6; -update noar tt set b1='9CFEKCL301KCECC0BIN6JZ5ODKKXVT9R' where id=6; -update noar ti set b1='9CFEKCL301KCECC0BIN6JZ5ODKKXVT9R' where id=6; -update noar tt set v0='S5FKO2KP' where id=6; -update noar ti set v0='S5FKO2KP' where id=6; -update noar tt set b2='R' where id=6; -update noar ti set b2='R' where id=6; -update noar tt set v0='87TAH6H3QYRC99KJV2KRK469F' where id=7; -update noar ti set v0='87TAH6H3QYRC99KJV2KRK469F' where id=7; -update noar tt set b0='FSPDL686DJ' where id=7; -update noar ti set b0='FSPDL686DJ' where id=7; -update noar tt set v0='C3FP17RHYLQJ04BMRK8' where id=7; -update noar ti set v0='C3FP17RHYLQJ04BMRK8' where id=7; -update noar tt set b1='J4RDQJY7MXR8Q9D' where id=7; -update noar ti set b1='J4RDQJY7MXR8Q9D' where id=7; -update noar tt set v0='DEV' where id=7; -update noar ti set v0='DEV' where id=7; -update noar tt set b2='5TTD5X7LUE9F1GAO32P1CSUCJ' where id=7; -update noar ti set b2='5TTD5X7LUE9F1GAO32P1CSUCJ' where id=7; -update noar tt set v0='A4PHIJ1GOWESVUQURKMR' where id=8; -update noar ti set v0='A4PHIJ1GOWESVUQURKMR' where id=8; -update noar tt set b0='5VU3ZUUBTIF8TLU3SNZ35FWATBR96' where id=8; -update noar ti set b0='5VU3ZUUBTIF8TLU3SNZ35FWATBR96' where id=8; -update noar tt set v0='12VJKL4HGDCWWNHD' where id=8; -update noar ti set v0='12VJKL4HGDCWWNHD' where id=8; -update noar tt set b1='7YI' where id=8; -update noar ti set b1='7YI' where id=8; -update noar tt set v0='KIJG51BVAVB' where id=8; -update noar ti set v0='KIJG51BVAVB' where id=8; -update noar tt set b2='I0ED9S52N7BGL' where id=8; -update noar ti set b2='I0ED9S52N7BGL' where id=8; -update noar tt set v0='XXARA4LJ' where id=9; -update noar ti set v0='XXARA4LJ' where id=9; -update noar tt set b0='PAOK10M2KCW47HL5LP41TYEH3KSEGBQ' where id=9; -update noar ti set b0='PAOK10M2KCW47HL5LP41TYEH3KSEGBQ' where id=9; -update noar tt set v0='7' where id=9; -update noar ti set v0='7' where id=9; -update noar tt set b1='2OPAV4T6YIFJ0A5IURKFCLSH6' where id=9; -update noar ti set b1='2OPAV4T6YIFJ0A5IURKFCLSH6' where id=9; -update noar tt set v0='SM3KD9E1499042WLSJL' where id=9; -update noar ti set v0='SM3KD9E1499042WLSJL' where id=9; -update noar tt set b2='ZYZRERVCZYTT07BHP9YAIDG' where id=9; -update noar ti set b2='ZYZRERVCZYTT07BHP9YAIDG' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -v0 varchar(32) null, -b0 longblob null, -b1 tinyblob null, -b2 longblob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='RPULX62LW9PWNL1BBV' where id=1; -update noar ti set v0='RPULX62LW9PWNL1BBV' where id=1; -update noar tt set b0='EBN6H433WR' where id=1; -update noar ti set b0='EBN6H433WR' where id=1; -update noar tt set v0='60NROLQQ' where id=1; -update noar ti set v0='60NROLQQ' where id=1; -update noar tt set b1='GWKLRG9MUHC75DF0XL1JPC1N' where id=1; -update noar ti set b1='GWKLRG9MUHC75DF0XL1JPC1N' where id=1; -update noar tt set v0='LCT' where id=1; -update noar ti set v0='LCT' where id=1; -update noar tt set b2='GI5KZZ99EBI40COB8MF' where id=1; -update noar ti set b2='GI5KZZ99EBI40COB8MF' where id=1; -update noar tt set v0='5KIKJIPI2O' where id=2; -update noar ti set v0='5KIKJIPI2O' where id=2; -update noar tt set b0='6FPOWKKA7T453RNKFDZEA' where id=2; -update noar ti set b0='6FPOWKKA7T453RNKFDZEA' where id=2; -update noar tt set v0='9P8EWPCORITZOW120GXQKB120UO2Y5C' where id=2; -update noar ti set v0='9P8EWPCORITZOW120GXQKB120UO2Y5C' where id=2; -update noar tt set b1='U1EG0N56F8B9LPK6NY' where id=2; -update noar ti set b1='U1EG0N56F8B9LPK6NY' where id=2; -update noar tt set v0='VAI' where id=2; -update noar ti set v0='VAI' where id=2; -update noar tt set b2='JERVQIXJAIW0MO7112GW' where id=2; -update noar ti set b2='JERVQIXJAIW0MO7112GW' where id=2; -update noar tt set v0='U6Z' where id=3; -update noar ti set v0='U6Z' where id=3; -update noar tt set b0='DKV6A4' where id=3; -update noar ti set b0='DKV6A4' where id=3; -update noar tt set v0='G1PU5MW3D1VNOIW4' where id=3; -update noar ti set v0='G1PU5MW3D1VNOIW4' where id=3; -update noar tt set b1='KMEQVKZN8PS9J1HIG8WTJGV' where id=3; -update noar ti set b1='KMEQVKZN8PS9J1HIG8WTJGV' where id=3; -update noar tt set v0='G19NBCB' where id=3; -update noar ti set v0='G19NBCB' where id=3; -update noar tt set b2='X4O' where id=3; -update noar ti set b2='X4O' where id=3; -update noar tt set v0='HYZ66QZUP4616J63S3HI7PADW1XF' where id=4; -update noar ti set v0='HYZ66QZUP4616J63S3HI7PADW1XF' where id=4; -update noar tt set b0='A69A2R5RHBQW4G8DOYPD325N9E2O' where id=4; -update noar ti set b0='A69A2R5RHBQW4G8DOYPD325N9E2O' where id=4; -update noar tt set v0='3W6WSQHAV3UQ3KNIKGVCJKSU6859ECV' where id=4; -update noar ti set v0='3W6WSQHAV3UQ3KNIKGVCJKSU6859ECV' where id=4; -update noar tt set b1='ARGOPXPZ9ZZRNMKVJ4E1J5Y49' where id=4; -update noar ti set b1='ARGOPXPZ9ZZRNMKVJ4E1J5Y49' where id=4; -update noar tt set v0='SWL9BUMAZOWZQPOTVJWH' where id=4; -update noar ti set v0='SWL9BUMAZOWZQPOTVJWH' where id=4; -update noar tt set b2='JC0JMDLMA' where id=4; -update noar ti set b2='JC0JMDLMA' where id=4; -update noar tt set v0='OWM2KBXJKS033BE4MS17IX' where id=5; -update noar ti set v0='OWM2KBXJKS033BE4MS17IX' where id=5; -update noar tt set b0='XSWV23J92G16F' where id=5; -update noar ti set b0='XSWV23J92G16F' where id=5; -update noar tt set v0='BE5ZN0HOB5XRA8N8780V1JXI0' where id=5; -update noar ti set v0='BE5ZN0HOB5XRA8N8780V1JXI0' where id=5; -update noar tt set b1='OYL1R79EVXBUNHOF3DMA0UIQV94' where id=5; -update noar ti set b1='OYL1R79EVXBUNHOF3DMA0UIQV94' where id=5; -update noar tt set v0='CWB06LM81LYJO9P1MJMLY743OVA0D8P' where id=5; -update noar ti set v0='CWB06LM81LYJO9P1MJMLY743OVA0D8P' where id=5; -update noar tt set b2='T8VO7Z72AVLOIHFH' where id=5; -update noar ti set b2='T8VO7Z72AVLOIHFH' where id=5; -update noar tt set v0='JIJ' where id=6; -update noar ti set v0='JIJ' where id=6; -update noar tt set b0='V382QTI0XDOHNMBHASS' where id=6; -update noar ti set b0='V382QTI0XDOHNMBHASS' where id=6; -update noar tt set v0='PHDU8W5R9WSBVV' where id=6; -update noar ti set v0='PHDU8W5R9WSBVV' where id=6; -update noar tt set b1='C0' where id=6; -update noar ti set b1='C0' where id=6; -update noar tt set v0='HMZSR5CLHHRPXC67' where id=6; -update noar ti set v0='HMZSR5CLHHRPXC67' where id=6; -update noar tt set b2='2LEXRJ' where id=6; -update noar ti set b2='2LEXRJ' where id=6; -update noar tt set v0='C5UEJCZ44ZSKWASGCHOCZS5XPI' where id=7; -update noar ti set v0='C5UEJCZ44ZSKWASGCHOCZS5XPI' where id=7; -update noar tt set b0='NSJ32ESFTEURC8Q1QUISI3Q' where id=7; -update noar ti set b0='NSJ32ESFTEURC8Q1QUISI3Q' where id=7; -update noar tt set v0='U9A6JGW3F1QERDQKC' where id=7; -update noar ti set v0='U9A6JGW3F1QERDQKC' where id=7; -update noar tt set b1='A4QS9VL' where id=7; -update noar ti set b1='A4QS9VL' where id=7; -update noar tt set v0='T90E75CMRO2MLLSQ0A736U2RQYZH' where id=7; -update noar ti set v0='T90E75CMRO2MLLSQ0A736U2RQYZH' where id=7; -update noar tt set b2='JEY07ZTACQSBJ5EMAP8N' where id=7; -update noar ti set b2='JEY07ZTACQSBJ5EMAP8N' where id=7; -update noar tt set v0='107OUA94OD61MYZKSWWED5HZ13H9U5' where id=8; -update noar ti set v0='107OUA94OD61MYZKSWWED5HZ13H9U5' where id=8; -update noar tt set b0='2TTWCMPE38E' where id=8; -update noar ti set b0='2TTWCMPE38E' where id=8; -update noar tt set v0='YTY0086ZWN3MLYD9' where id=8; -update noar ti set v0='YTY0086ZWN3MLYD9' where id=8; -update noar tt set b1='SVV9MHT0T11KZHMW1MD2LSY37JI' where id=8; -update noar ti set b1='SVV9MHT0T11KZHMW1MD2LSY37JI' where id=8; -update noar tt set v0='4K6QCBNS3MBNPHI1XD1ZCIC8J47B18UD' where id=8; -update noar ti set v0='4K6QCBNS3MBNPHI1XD1ZCIC8J47B18UD' where id=8; -update noar tt set b2='8J9DMSY8YQUT28SJUIVLD' where id=8; -update noar ti set b2='8J9DMSY8YQUT28SJUIVLD' where id=8; -update noar tt set v0='9AG61GUQBY8XNS' where id=9; -update noar ti set v0='9AG61GUQBY8XNS' where id=9; -update noar tt set b0='2FOE7XGXRRXZ0CP2CB1XF7Y' where id=9; -update noar ti set b0='2FOE7XGXRRXZ0CP2CB1XF7Y' where id=9; -update noar tt set v0='ATK4K28K' where id=9; -update noar ti set v0='ATK4K28K' where id=9; -update noar tt set b1='KENHIFIEMDMC' where id=9; -update noar ti set b1='KENHIFIEMDMC' where id=9; -update noar tt set v0='QETX6P2KHF77839KVZEUZFX6MRV' where id=9; -update noar ti set v0='QETX6P2KHF77839KVZEUZFX6MRV' where id=9; -update noar tt set b2='GWPCEJ7Z3477H9QRG' where id=9; -update noar ti set b2='GWPCEJ7Z3477H9QRG' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -v0 varchar(256) null, -b0 longblob null, -b1 tinyblob null, -b2 longblob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='58BLDTUHYA3L9SSP455H1' where id=1; -update noar ti set v0='58BLDTUHYA3L9SSP455H1' where id=1; -update noar tt set b0='5AAQ6W7ZXBB25WA2HH4' where id=1; -update noar ti set b0='5AAQ6W7ZXBB25WA2HH4' where id=1; -update noar tt set v0='Y4IMF' where id=1; -update noar ti set v0='Y4IMF' where id=1; -update noar tt set b1='NM72EQ9ONP' where id=1; -update noar ti set b1='NM72EQ9ONP' where id=1; -update noar tt set v0='M6' where id=1; -update noar ti set v0='M6' where id=1; -update noar tt set b2='Z48P1N9PHFQX3' where id=1; -update noar ti set b2='Z48P1N9PHFQX3' where id=1; -update noar tt set v0='4EUQXPC3FPCGGT3' where id=2; -update noar ti set v0='4EUQXPC3FPCGGT3' where id=2; -update noar tt set b0='91SLTZYN3' where id=2; -update noar ti set b0='91SLTZYN3' where id=2; -update noar tt set v0='WAEH1BDR9' where id=2; -update noar ti set v0='WAEH1BDR9' where id=2; -update noar tt set b1='G5LYTOO3BUPN2YMPCOOG224VHFDV5B' where id=2; -update noar ti set b1='G5LYTOO3BUPN2YMPCOOG224VHFDV5B' where id=2; -update noar tt set v0='3Q9OTAOFAEUKMTNXGAAR' where id=2; -update noar ti set v0='3Q9OTAOFAEUKMTNXGAAR' where id=2; -update noar tt set b2='SOZXB0T23OOJ' where id=2; -update noar ti set b2='SOZXB0T23OOJ' where id=2; -update noar tt set v0='VBTA34YD' where id=3; -update noar ti set v0='VBTA34YD' where id=3; -update noar tt set b0='MWN05PD8' where id=3; -update noar ti set b0='MWN05PD8' where id=3; -update noar tt set v0='L62NDWVIUX5ZX1ACNC3SIAT1' where id=3; -update noar ti set v0='L62NDWVIUX5ZX1ACNC3SIAT1' where id=3; -update noar tt set b1='ECEI' where id=3; -update noar ti set b1='ECEI' where id=3; -update noar tt set v0='C6' where id=3; -update noar ti set v0='C6' where id=3; -update noar tt set b2='8P5H68F' where id=3; -update noar ti set b2='8P5H68F' where id=3; -update noar tt set v0='3FICLOL8BJTD7SXE' where id=4; -update noar ti set v0='3FICLOL8BJTD7SXE' where id=4; -update noar tt set b0='Y7KL5NS9LEXDQ2KKTT2DHL4816' where id=4; -update noar ti set b0='Y7KL5NS9LEXDQ2KKTT2DHL4816' where id=4; -update noar tt set v0='U26ZCEPQJ5OFB' where id=4; -update noar ti set v0='U26ZCEPQJ5OFB' where id=4; -update noar tt set b1='YFM8S' where id=4; -update noar ti set b1='YFM8S' where id=4; -update noar tt set v0='W7Y1Q9F0J0T6SS9IGL012WT' where id=4; -update noar ti set v0='W7Y1Q9F0J0T6SS9IGL012WT' where id=4; -update noar tt set b2='PPK' where id=4; -update noar ti set b2='PPK' where id=4; -update noar tt set v0='Z5RSICBC2X5B2ACKDR193O56' where id=5; -update noar ti set v0='Z5RSICBC2X5B2ACKDR193O56' where id=5; -update noar tt set b0='RE213' where id=5; -update noar ti set b0='RE213' where id=5; -update noar tt set v0='TZ' where id=5; -update noar ti set v0='TZ' where id=5; -update noar tt set b1='J6' where id=5; -update noar ti set b1='J6' where id=5; -update noar tt set v0='OL1VSJ51WE9V1P7' where id=5; -update noar ti set v0='OL1VSJ51WE9V1P7' where id=5; -update noar tt set b2='S' where id=5; -update noar ti set b2='S' where id=5; -update noar tt set v0='4X7OIPGWT9966Y7UMWEFGPEU3JS' where id=6; -update noar ti set v0='4X7OIPGWT9966Y7UMWEFGPEU3JS' where id=6; -update noar tt set b0='BB7SVEU7Z5LDJ9DLM5' where id=6; -update noar ti set b0='BB7SVEU7Z5LDJ9DLM5' where id=6; -update noar tt set v0='CMPL5ODE8KGFYMX4X' where id=6; -update noar ti set v0='CMPL5ODE8KGFYMX4X' where id=6; -update noar tt set b1='A8LT6A2389RXW8TWZV711R2LFBHPYZ' where id=6; -update noar ti set b1='A8LT6A2389RXW8TWZV711R2LFBHPYZ' where id=6; -update noar tt set v0='W0E6GTBF' where id=6; -update noar ti set v0='W0E6GTBF' where id=6; -update noar tt set b2='R8MP28VSR5A8F2FBQ4OT5RJZ2F27OLK' where id=6; -update noar ti set b2='R8MP28VSR5A8F2FBQ4OT5RJZ2F27OLK' where id=6; -update noar tt set v0='6D3U9MM3K6QXQM3QFT7YBNSMY145TS' where id=7; -update noar ti set v0='6D3U9MM3K6QXQM3QFT7YBNSMY145TS' where id=7; -update noar tt set b0='O1A00MQB10MI8' where id=7; -update noar ti set b0='O1A00MQB10MI8' where id=7; -update noar tt set v0='DQMRXZY1QLUXO0SAJLE8B' where id=7; -update noar ti set v0='DQMRXZY1QLUXO0SAJLE8B' where id=7; -update noar tt set b1='QL59' where id=7; -update noar ti set b1='QL59' where id=7; -update noar tt set v0='FR1IISP7H0EZE1BKUM8OC' where id=7; -update noar ti set v0='FR1IISP7H0EZE1BKUM8OC' where id=7; -update noar tt set b2='5DLR63GH6D1HNTR1GH' where id=7; -update noar ti set b2='5DLR63GH6D1HNTR1GH' where id=7; -update noar tt set v0='B6HLS9E2I63HRS62BQ5' where id=8; -update noar ti set v0='B6HLS9E2I63HRS62BQ5' where id=8; -update noar tt set b0='M9B7QL297VR9RG9SZGT0MNEO' where id=8; -update noar ti set b0='M9B7QL297VR9RG9SZGT0MNEO' where id=8; -update noar tt set v0='0PFH3UIO4S4MF1VPG4ODF51Y5HVZ0WS' where id=8; -update noar ti set v0='0PFH3UIO4S4MF1VPG4ODF51Y5HVZ0WS' where id=8; -update noar tt set b1='3G9R3JMB194T3UBMOS0GI5KY' where id=8; -update noar ti set b1='3G9R3JMB194T3UBMOS0GI5KY' where id=8; -update noar tt set v0='TGBG4QLZO18CL9XF6LCD2' where id=8; -update noar ti set v0='TGBG4QLZO18CL9XF6LCD2' where id=8; -update noar tt set b2='7M3XU0L4PD1Y8ABNLZLR3OS' where id=8; -update noar ti set b2='7M3XU0L4PD1Y8ABNLZLR3OS' where id=8; -update noar tt set v0='31OMU1T13401V5NUK' where id=9; -update noar ti set v0='31OMU1T13401V5NUK' where id=9; -update noar tt set b0='PQ3HSSEWF4O164ZAT' where id=9; -update noar ti set b0='PQ3HSSEWF4O164ZAT' where id=9; -update noar tt set v0='AFAUHUC' where id=9; -update noar ti set v0='AFAUHUC' where id=9; -update noar tt set b1='5VDUXHIGXINJAX2BPJLQH4U5SV5' where id=9; -update noar ti set b1='5VDUXHIGXINJAX2BPJLQH4U5SV5' where id=9; -update noar tt set v0='YP' where id=9; -update noar ti set v0='YP' where id=9; -update noar tt set b2='4U5F6DOHHLIXCSJCWIK5ZILOY63Y5' where id=9; -update noar ti set b2='4U5F6DOHHLIXCSJCWIK5ZILOY63Y5' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -v0 varchar(32) not null, -b0 longblob not null, -b1 tinyblob not null, -b2 longblob not null -) engine=tokudb; -insert into tt values (1,'','','',''); -insert into tt values (2,'','','',''); -insert into tt values (3,'','','',''); -insert into tt values (4,'','','',''); -insert into tt values (5,'','','',''); -insert into tt values (6,'','','',''); -insert into tt values (7,'','','',''); -insert into tt values (8,'','','',''); -insert into tt values (9,'','','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='PFZI1ZDQWRW79BR' where id=1; -update noar ti set v0='PFZI1ZDQWRW79BR' where id=1; -update noar tt set b0='ZY4' where id=1; -update noar ti set b0='ZY4' where id=1; -update noar tt set v0='NCWVA3LUVESHQ046HQI1VLHRAU38YA0' where id=1; -update noar ti set v0='NCWVA3LUVESHQ046HQI1VLHRAU38YA0' where id=1; -update noar tt set b1='DBW5MIYOW66JF' where id=1; -update noar ti set b1='DBW5MIYOW66JF' where id=1; -update noar tt set v0='BTJ8P0F7Z9A55BG17QMGH0URYIN' where id=1; -update noar ti set v0='BTJ8P0F7Z9A55BG17QMGH0URYIN' where id=1; -update noar tt set b2='LCUB' where id=1; -update noar ti set b2='LCUB' where id=1; -update noar tt set v0='1Q3G' where id=2; -update noar ti set v0='1Q3G' where id=2; -update noar tt set b0='6V7DPI' where id=2; -update noar ti set b0='6V7DPI' where id=2; -update noar tt set v0='Q2EEOCM7TZKRM9DM' where id=2; -update noar ti set v0='Q2EEOCM7TZKRM9DM' where id=2; -update noar tt set b1='19RO1G' where id=2; -update noar ti set b1='19RO1G' where id=2; -update noar tt set v0='GK4ERLUA2VYO' where id=2; -update noar ti set v0='GK4ERLUA2VYO' where id=2; -update noar tt set b2='LR8F35OLYZZZ5CULEQTJ' where id=2; -update noar ti set b2='LR8F35OLYZZZ5CULEQTJ' where id=2; -update noar tt set v0='FJTVQ' where id=3; -update noar ti set v0='FJTVQ' where id=3; -update noar tt set b0='L6MH3B8YISILMLWQMEZYQ5B1UVLWOE' where id=3; -update noar ti set b0='L6MH3B8YISILMLWQMEZYQ5B1UVLWOE' where id=3; -update noar tt set v0='YSUUP05OQI53S1AVZSSY048WOYID04' where id=3; -update noar ti set v0='YSUUP05OQI53S1AVZSSY048WOYID04' where id=3; -update noar tt set b1='KFA75OEBW4MJW9N2GW' where id=3; -update noar ti set b1='KFA75OEBW4MJW9N2GW' where id=3; -update noar tt set v0='F68IZ0374' where id=3; -update noar ti set v0='F68IZ0374' where id=3; -update noar tt set b2='ZXS8XWVM35DBD' where id=3; -update noar ti set b2='ZXS8XWVM35DBD' where id=3; -update noar tt set v0='O57L' where id=4; -update noar ti set v0='O57L' where id=4; -update noar tt set b0='7X4BT8LV' where id=4; -update noar ti set b0='7X4BT8LV' where id=4; -update noar tt set v0='CN9YUBSTBQGUIDFM05UKAF' where id=4; -update noar ti set v0='CN9YUBSTBQGUIDFM05UKAF' where id=4; -update noar tt set b1='IT742DH35MG0ZZL59FD3' where id=4; -update noar ti set b1='IT742DH35MG0ZZL59FD3' where id=4; -update noar tt set v0='TCNJYKTBL33MLG10' where id=4; -update noar ti set v0='TCNJYKTBL33MLG10' where id=4; -update noar tt set b2='HZ5CHOJ7K6CB7LD15N62TO4YEM7BG3' where id=4; -update noar ti set b2='HZ5CHOJ7K6CB7LD15N62TO4YEM7BG3' where id=4; -update noar tt set v0='AGW0EZFKVV' where id=5; -update noar ti set v0='AGW0EZFKVV' where id=5; -update noar tt set b0='3I5X9D' where id=5; -update noar ti set b0='3I5X9D' where id=5; -update noar tt set v0='SYTLOCLUI3PQIY2WEAO442O3' where id=5; -update noar ti set v0='SYTLOCLUI3PQIY2WEAO442O3' where id=5; -update noar tt set b1='HY5VK58ER70PZASX4' where id=5; -update noar ti set b1='HY5VK58ER70PZASX4' where id=5; -update noar tt set v0='EVCKXHJJNSCKB48XT' where id=5; -update noar ti set v0='EVCKXHJJNSCKB48XT' where id=5; -update noar tt set b2='5T26V6C47MOUDCXLHB9Z8N' where id=5; -update noar ti set b2='5T26V6C47MOUDCXLHB9Z8N' where id=5; -update noar tt set v0='A065D7RN1JT56EJQV' where id=6; -update noar ti set v0='A065D7RN1JT56EJQV' where id=6; -update noar tt set b0='R9KWS0UEOUZ394' where id=6; -update noar ti set b0='R9KWS0UEOUZ394' where id=6; -update noar tt set v0='S55FYWZQVX' where id=6; -update noar ti set v0='S55FYWZQVX' where id=6; -update noar tt set b1='OTMPKHQNZFJNI' where id=6; -update noar ti set b1='OTMPKHQNZFJNI' where id=6; -update noar tt set v0='E4P3B' where id=6; -update noar ti set v0='E4P3B' where id=6; -update noar tt set b2='OKQWF8P0C4S6TR05BTF1' where id=6; -update noar ti set b2='OKQWF8P0C4S6TR05BTF1' where id=6; -update noar tt set v0='VB6L3HT40EEOEUZ8ADDHD9YDW7LMRIH0' where id=7; -update noar ti set v0='VB6L3HT40EEOEUZ8ADDHD9YDW7LMRIH0' where id=7; -update noar tt set b0='GRVCDP53ZVKTH05V' where id=7; -update noar ti set b0='GRVCDP53ZVKTH05V' where id=7; -update noar tt set v0='BDLOGIPIRIS' where id=7; -update noar ti set v0='BDLOGIPIRIS' where id=7; -update noar tt set b1='7HSQVQC01PPQ' where id=7; -update noar ti set b1='7HSQVQC01PPQ' where id=7; -update noar tt set v0='84AX4UFWW' where id=7; -update noar ti set v0='84AX4UFWW' where id=7; -update noar tt set b2='IAIU' where id=7; -update noar ti set b2='IAIU' where id=7; -update noar tt set v0='FW3H1K4TJ9TINYXVPYZ9' where id=8; -update noar ti set v0='FW3H1K4TJ9TINYXVPYZ9' where id=8; -update noar tt set b0='7ZI1B' where id=8; -update noar ti set b0='7ZI1B' where id=8; -update noar tt set v0='CFGJD7O' where id=8; -update noar ti set v0='CFGJD7O' where id=8; -update noar tt set b1='XNEOK0CD5UAZO3PE631R825L7IXE' where id=8; -update noar ti set b1='XNEOK0CD5UAZO3PE631R825L7IXE' where id=8; -update noar tt set v0='N8498UCGW8O8ZDHXI11' where id=8; -update noar ti set v0='N8498UCGW8O8ZDHXI11' where id=8; -update noar tt set b2='CMOL' where id=8; -update noar ti set b2='CMOL' where id=8; -update noar tt set v0='003' where id=9; -update noar ti set v0='003' where id=9; -update noar tt set b0='8RS' where id=9; -update noar ti set b0='8RS' where id=9; -update noar tt set v0='OH85JETPP' where id=9; -update noar ti set v0='OH85JETPP' where id=9; -update noar tt set b1='GYUQAX51UEX2V' where id=9; -update noar ti set b1='GYUQAX51UEX2V' where id=9; -update noar tt set v0='UM2XY' where id=9; -update noar ti set v0='UM2XY' where id=9; -update noar tt set b2='SFGJ8CMU5B4XL35M9EVPO85LQ9RFN33' where id=9; -update noar ti set b2='SFGJ8CMU5B4XL35M9EVPO85LQ9RFN33' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -v0 varchar(256) not null, -b0 longblob not null, -b1 tinyblob not null, -b2 longblob not null -) engine=tokudb; -insert into tt values (1,'','','',''); -insert into tt values (2,'','','',''); -insert into tt values (3,'','','',''); -insert into tt values (4,'','','',''); -insert into tt values (5,'','','',''); -insert into tt values (6,'','','',''); -insert into tt values (7,'','','',''); -insert into tt values (8,'','','',''); -insert into tt values (9,'','','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='K7XOCEWHIK6N4' where id=1; -update noar ti set v0='K7XOCEWHIK6N4' where id=1; -update noar tt set b0='VK8NMQYX7UQE6XYPALQOXQWK5I2S61' where id=1; -update noar ti set b0='VK8NMQYX7UQE6XYPALQOXQWK5I2S61' where id=1; -update noar tt set v0='VNU2BOQLXYGFWKTIMJ2OVJNYPTZHEX' where id=1; -update noar ti set v0='VNU2BOQLXYGFWKTIMJ2OVJNYPTZHEX' where id=1; -update noar tt set b1='KU2DL1ZB414TU0XZ5I' where id=1; -update noar ti set b1='KU2DL1ZB414TU0XZ5I' where id=1; -update noar tt set v0='ZQXND1RKI36X' where id=1; -update noar ti set v0='ZQXND1RKI36X' where id=1; -update noar tt set b2='U' where id=1; -update noar ti set b2='U' where id=1; -update noar tt set v0='GLVWB4O63MR' where id=2; -update noar ti set v0='GLVWB4O63MR' where id=2; -update noar tt set b0='905J2XXRBGMF08JF5AF7KA2CS46' where id=2; -update noar ti set b0='905J2XXRBGMF08JF5AF7KA2CS46' where id=2; -update noar tt set v0='ASSXRUYQBX7GB' where id=2; -update noar ti set v0='ASSXRUYQBX7GB' where id=2; -update noar tt set b1='Z98E' where id=2; -update noar ti set b1='Z98E' where id=2; -update noar tt set v0='FVGE24ML' where id=2; -update noar ti set v0='FVGE24ML' where id=2; -update noar tt set b2='G37NBLBNJU' where id=2; -update noar ti set b2='G37NBLBNJU' where id=2; -update noar tt set v0='2QNCL' where id=3; -update noar ti set v0='2QNCL' where id=3; -update noar tt set b0='JMQ27CLX4L9NGIK1IRLKT8J3KFNHA' where id=3; -update noar ti set b0='JMQ27CLX4L9NGIK1IRLKT8J3KFNHA' where id=3; -update noar tt set v0='UFH7J' where id=3; -update noar ti set v0='UFH7J' where id=3; -update noar tt set b1='WRAD9B1D1YG2GEPA8N05B' where id=3; -update noar ti set b1='WRAD9B1D1YG2GEPA8N05B' where id=3; -update noar tt set v0='QE2KNNEA2N9H8M0YJT5BJ19UOOWKZH' where id=3; -update noar ti set v0='QE2KNNEA2N9H8M0YJT5BJ19UOOWKZH' where id=3; -update noar tt set b2='TYKL2R4LAYRU0K4' where id=3; -update noar ti set b2='TYKL2R4LAYRU0K4' where id=3; -update noar tt set v0='OT8V2O5A2NKCQ71' where id=4; -update noar ti set v0='OT8V2O5A2NKCQ71' where id=4; -update noar tt set b0='5PDA9I' where id=4; -update noar ti set b0='5PDA9I' where id=4; -update noar tt set v0='QXBTYZ1Q0UB0JMO64SK0B' where id=4; -update noar ti set v0='QXBTYZ1Q0UB0JMO64SK0B' where id=4; -update noar tt set b1='STTW7WR7GHIUCYF08DXXC' where id=4; -update noar ti set b1='STTW7WR7GHIUCYF08DXXC' where id=4; -update noar tt set v0='R70CZSXFAA0LF02QGSNAWKQL' where id=4; -update noar ti set v0='R70CZSXFAA0LF02QGSNAWKQL' where id=4; -update noar tt set b2='SKFJD2IXD4LY' where id=4; -update noar ti set b2='SKFJD2IXD4LY' where id=4; -update noar tt set v0='VSA4F624UJE' where id=5; -update noar ti set v0='VSA4F624UJE' where id=5; -update noar tt set b0='W' where id=5; -update noar ti set b0='W' where id=5; -update noar tt set v0='6Y6EVQTPWNI6G0V8R5UARD' where id=5; -update noar ti set v0='6Y6EVQTPWNI6G0V8R5UARD' where id=5; -update noar tt set b1='1NBU' where id=5; -update noar ti set b1='1NBU' where id=5; -update noar tt set v0='KFPXT4QUGB28OOEAHU06B' where id=5; -update noar ti set v0='KFPXT4QUGB28OOEAHU06B' where id=5; -update noar tt set b2='YOOKE6BR' where id=5; -update noar ti set b2='YOOKE6BR' where id=5; -update noar tt set v0='ILUOUWS5LJ' where id=6; -update noar ti set v0='ILUOUWS5LJ' where id=6; -update noar tt set b0='RKXV8F56U7JZLE' where id=6; -update noar ti set b0='RKXV8F56U7JZLE' where id=6; -update noar tt set v0='2XN21YLQS5' where id=6; -update noar ti set v0='2XN21YLQS5' where id=6; -update noar tt set b1='QL' where id=6; -update noar ti set b1='QL' where id=6; -update noar tt set v0='9HTHQEQ9UFG7GBLIB' where id=6; -update noar ti set v0='9HTHQEQ9UFG7GBLIB' where id=6; -update noar tt set b2='U6RH' where id=6; -update noar ti set b2='U6RH' where id=6; -update noar tt set v0='7VWXERGUPBLLXGLTEX6' where id=7; -update noar ti set v0='7VWXERGUPBLLXGLTEX6' where id=7; -update noar tt set b0='MZPX0PUJAR3C1L9AAQV18O' where id=7; -update noar ti set b0='MZPX0PUJAR3C1L9AAQV18O' where id=7; -update noar tt set v0='6IZGPGBAQ3RXM' where id=7; -update noar ti set v0='6IZGPGBAQ3RXM' where id=7; -update noar tt set b1='ZTQUOXDQCR' where id=7; -update noar ti set b1='ZTQUOXDQCR' where id=7; -update noar tt set v0='WMT5NH' where id=7; -update noar ti set v0='WMT5NH' where id=7; -update noar tt set b2='9LG5DRG8QBT2' where id=7; -update noar ti set b2='9LG5DRG8QBT2' where id=7; -update noar tt set v0='0FSV9LF7HN' where id=8; -update noar ti set v0='0FSV9LF7HN' where id=8; -update noar tt set b0='2LTUA' where id=8; -update noar ti set b0='2LTUA' where id=8; -update noar tt set v0='OA7R2IYQ4A3NYE0WR7N7PCJ' where id=8; -update noar ti set v0='OA7R2IYQ4A3NYE0WR7N7PCJ' where id=8; -update noar tt set b1='QDQ8J6CVSR0DAZ11B' where id=8; -update noar ti set b1='QDQ8J6CVSR0DAZ11B' where id=8; -update noar tt set v0='QQIEK3SWCIF1A9372A3' where id=8; -update noar ti set v0='QQIEK3SWCIF1A9372A3' where id=8; -update noar tt set b2='JP2RIQR162VE5W8TX' where id=8; -update noar ti set b2='JP2RIQR162VE5W8TX' where id=8; -update noar tt set v0='MCCED6Z4M' where id=9; -update noar ti set v0='MCCED6Z4M' where id=9; -update noar tt set b0='NQ8UOIM0P7H' where id=9; -update noar ti set b0='NQ8UOIM0P7H' where id=9; -update noar tt set v0='YC34H379KF' where id=9; -update noar ti set v0='YC34H379KF' where id=9; -update noar tt set b1='KI' where id=9; -update noar ti set b1='KI' where id=9; -update noar tt set v0='2XOR8' where id=9; -update noar ti set v0='2XOR8' where id=9; -update noar tt set b2='J5K5YTVFQ9HVZTDJKY' where id=9; -update noar ti set b2='J5K5YTVFQ9HVZTDJKY' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -v0 varchar(32) null, -b0 longblob null, -b1 blob null, -b2 tinyblob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='XXZRVK2LX' where id=1; -update noar ti set v0='XXZRVK2LX' where id=1; -update noar tt set b0='OCH53MO2OKGD2' where id=1; -update noar ti set b0='OCH53MO2OKGD2' where id=1; -update noar tt set v0='H2Z' where id=1; -update noar ti set v0='H2Z' where id=1; -update noar tt set b1='FZSRXCRM8F' where id=1; -update noar ti set b1='FZSRXCRM8F' where id=1; -update noar tt set v0='QHJI4' where id=1; -update noar ti set v0='QHJI4' where id=1; -update noar tt set b2='7JSKNMZEP06X2FNVTRCXOL' where id=1; -update noar ti set b2='7JSKNMZEP06X2FNVTRCXOL' where id=1; -update noar tt set v0='BWVRJJKHOWFZ960CX' where id=2; -update noar ti set v0='BWVRJJKHOWFZ960CX' where id=2; -update noar tt set b0='NT1438HIJ257H5WYXZ9LB6' where id=2; -update noar ti set b0='NT1438HIJ257H5WYXZ9LB6' where id=2; -update noar tt set v0='NEWE' where id=2; -update noar ti set v0='NEWE' where id=2; -update noar tt set b1='2RJGJ2A7GQB1HPH4558D2NJ109WEL' where id=2; -update noar ti set b1='2RJGJ2A7GQB1HPH4558D2NJ109WEL' where id=2; -update noar tt set v0='K9Y8IS72OW0UW0HRNSEJB' where id=2; -update noar ti set v0='K9Y8IS72OW0UW0HRNSEJB' where id=2; -update noar tt set b2='34NG7W6B86XFMFOR6' where id=2; -update noar ti set b2='34NG7W6B86XFMFOR6' where id=2; -update noar tt set v0='TX3LAJWBE4' where id=3; -update noar ti set v0='TX3LAJWBE4' where id=3; -update noar tt set b0='SA' where id=3; -update noar ti set b0='SA' where id=3; -update noar tt set v0='U0GP9ZVUEGWERA18A6' where id=3; -update noar ti set v0='U0GP9ZVUEGWERA18A6' where id=3; -update noar tt set b1='WWL99RHWMO005TRG9EI1XZPFYIW6' where id=3; -update noar ti set b1='WWL99RHWMO005TRG9EI1XZPFYIW6' where id=3; -update noar tt set v0='JUE9OH' where id=3; -update noar ti set v0='JUE9OH' where id=3; -update noar tt set b2='BPOLUVX9TPIM08BM3' where id=3; -update noar ti set b2='BPOLUVX9TPIM08BM3' where id=3; -update noar tt set v0='NNNFCYWJK3M21LLFZJRV' where id=4; -update noar ti set v0='NNNFCYWJK3M21LLFZJRV' where id=4; -update noar tt set b0='VF75HXBL43KB0YOGJXQF2Y9W13' where id=4; -update noar ti set b0='VF75HXBL43KB0YOGJXQF2Y9W13' where id=4; -update noar tt set v0='0WQVBGWN39HUQ3V' where id=4; -update noar ti set v0='0WQVBGWN39HUQ3V' where id=4; -update noar tt set b1='P8P8SCTSQ3KKPCW0B7CJZGHLLJ' where id=4; -update noar ti set b1='P8P8SCTSQ3KKPCW0B7CJZGHLLJ' where id=4; -update noar tt set v0='2VBNB6HU98S6A9Y3CJI5CPOU9' where id=4; -update noar ti set v0='2VBNB6HU98S6A9Y3CJI5CPOU9' where id=4; -update noar tt set b2='6HCOT9U6BABUW2D' where id=4; -update noar ti set b2='6HCOT9U6BABUW2D' where id=4; -update noar tt set v0='Q' where id=5; -update noar ti set v0='Q' where id=5; -update noar tt set b0='IXNX70ALXFO365UWMZVZF7I0L' where id=5; -update noar ti set b0='IXNX70ALXFO365UWMZVZF7I0L' where id=5; -update noar tt set v0='NP36V0U2ZLP0NL' where id=5; -update noar ti set v0='NP36V0U2ZLP0NL' where id=5; -update noar tt set b1='NSG4' where id=5; -update noar ti set b1='NSG4' where id=5; -update noar tt set v0='L3BWRRDPGF9BVFB7PMB05J1K' where id=5; -update noar ti set v0='L3BWRRDPGF9BVFB7PMB05J1K' where id=5; -update noar tt set b2='MK1Y8IU7BC2IUY' where id=5; -update noar ti set b2='MK1Y8IU7BC2IUY' where id=5; -update noar tt set v0='PG' where id=6; -update noar ti set v0='PG' where id=6; -update noar tt set b0='9G3IIZKS55DO3VJCRGOSLCEESS5CA' where id=6; -update noar ti set b0='9G3IIZKS55DO3VJCRGOSLCEESS5CA' where id=6; -update noar tt set v0='QS5WG' where id=6; -update noar ti set v0='QS5WG' where id=6; -update noar tt set b1='QR2OAV95RJBTHCM2SD' where id=6; -update noar ti set b1='QR2OAV95RJBTHCM2SD' where id=6; -update noar tt set v0='2AWVDGBP2YIK4FUFRVO70W' where id=6; -update noar ti set v0='2AWVDGBP2YIK4FUFRVO70W' where id=6; -update noar tt set b2='V83ZMLV' where id=6; -update noar ti set b2='V83ZMLV' where id=6; -update noar tt set v0='0JMYXS19X7195QA2H96F2C22RBLM' where id=7; -update noar ti set v0='0JMYXS19X7195QA2H96F2C22RBLM' where id=7; -update noar tt set b0='ZKO6X' where id=7; -update noar ti set b0='ZKO6X' where id=7; -update noar tt set v0='I0IZ08A8JOPO3LRCUTR47HFU' where id=7; -update noar ti set v0='I0IZ08A8JOPO3LRCUTR47HFU' where id=7; -update noar tt set b1='AU1YSN3RW5NDMSSQ8H' where id=7; -update noar ti set b1='AU1YSN3RW5NDMSSQ8H' where id=7; -update noar tt set v0='ZP8YB' where id=7; -update noar ti set v0='ZP8YB' where id=7; -update noar tt set b2='7JHX61OHCWL3JADI62XL6AVMXXBRL' where id=7; -update noar ti set b2='7JHX61OHCWL3JADI62XL6AVMXXBRL' where id=7; -update noar tt set v0='1VOD4' where id=8; -update noar ti set v0='1VOD4' where id=8; -update noar tt set b0='QKTK6B6M4HH64H8YAL2DY91226O4B' where id=8; -update noar ti set b0='QKTK6B6M4HH64H8YAL2DY91226O4B' where id=8; -update noar tt set v0='TRYAUJ4NYSY0' where id=8; -update noar ti set v0='TRYAUJ4NYSY0' where id=8; -update noar tt set b1='PO5DLN' where id=8; -update noar ti set b1='PO5DLN' where id=8; -update noar tt set v0='TGU0GG4VVWAPOSPQT' where id=8; -update noar ti set v0='TGU0GG4VVWAPOSPQT' where id=8; -update noar tt set b2='60' where id=8; -update noar ti set b2='60' where id=8; -update noar tt set v0='CD9KLYG2YR0RI8F' where id=9; -update noar ti set v0='CD9KLYG2YR0RI8F' where id=9; -update noar tt set b0='6RUQIWVBR99VWPL4' where id=9; -update noar ti set b0='6RUQIWVBR99VWPL4' where id=9; -update noar tt set v0='WY5S8XA5LDQXNNFNPOHGH' where id=9; -update noar ti set v0='WY5S8XA5LDQXNNFNPOHGH' where id=9; -update noar tt set b1='Z2X2' where id=9; -update noar ti set b1='Z2X2' where id=9; -update noar tt set v0='DPITK' where id=9; -update noar ti set v0='DPITK' where id=9; -update noar tt set b2='37M' where id=9; -update noar ti set b2='37M' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -v0 varchar(256) null, -b0 longblob null, -b1 blob null, -b2 tinyblob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='XB7HWL6Z612TDX16ZOMFVIJDQ' where id=1; -update noar ti set v0='XB7HWL6Z612TDX16ZOMFVIJDQ' where id=1; -update noar tt set b0='G4GS2A7T015PH' where id=1; -update noar ti set b0='G4GS2A7T015PH' where id=1; -update noar tt set v0='8DSJ1KX1LUIW' where id=1; -update noar ti set v0='8DSJ1KX1LUIW' where id=1; -update noar tt set b1='XNEUE1B9RFCVFIHN419KF1RYR4' where id=1; -update noar ti set b1='XNEUE1B9RFCVFIHN419KF1RYR4' where id=1; -update noar tt set v0='6RK84CG8ED1LC9RFF0968NPMTJQJ8AU' where id=1; -update noar ti set v0='6RK84CG8ED1LC9RFF0968NPMTJQJ8AU' where id=1; -update noar tt set b2='BPOY7999PI769JY9SQ69XYA2' where id=1; -update noar ti set b2='BPOY7999PI769JY9SQ69XYA2' where id=1; -update noar tt set v0='A8EQ7ZSAGDLA85JUHGRXI79KJJ8Z' where id=2; -update noar ti set v0='A8EQ7ZSAGDLA85JUHGRXI79KJJ8Z' where id=2; -update noar tt set b0='8AVX3WZQC111M940V' where id=2; -update noar ti set b0='8AVX3WZQC111M940V' where id=2; -update noar tt set v0='LXD8' where id=2; -update noar ti set v0='LXD8' where id=2; -update noar tt set b1='HU0CIH4' where id=2; -update noar ti set b1='HU0CIH4' where id=2; -update noar tt set v0='R' where id=2; -update noar ti set v0='R' where id=2; -update noar tt set b2='AHYYQU' where id=2; -update noar ti set b2='AHYYQU' where id=2; -update noar tt set v0='YI0YBXN676MSZG6GQHM84C' where id=3; -update noar ti set v0='YI0YBXN676MSZG6GQHM84C' where id=3; -update noar tt set b0='GJ6CG8OORJ0S761ZOFTEW86P6AYXTNO' where id=3; -update noar ti set b0='GJ6CG8OORJ0S761ZOFTEW86P6AYXTNO' where id=3; -update noar tt set v0='GSS2GNYNI0EX97BIGT5ZW0QU8GK3A' where id=3; -update noar ti set v0='GSS2GNYNI0EX97BIGT5ZW0QU8GK3A' where id=3; -update noar tt set b1='II1KSE5UD' where id=3; -update noar ti set b1='II1KSE5UD' where id=3; -update noar tt set v0='W5Z3' where id=3; -update noar ti set v0='W5Z3' where id=3; -update noar tt set b2='AQTAT8Y089147A12' where id=3; -update noar ti set b2='AQTAT8Y089147A12' where id=3; -update noar tt set v0='G6757GORF9OMXPT8DPJRW5TO' where id=4; -update noar ti set v0='G6757GORF9OMXPT8DPJRW5TO' where id=4; -update noar tt set b0='WQS9H9DP1DH7JNYRIP' where id=4; -update noar ti set b0='WQS9H9DP1DH7JNYRIP' where id=4; -update noar tt set v0='J4X3CVQSWNXTBPKLRSJOSJR' where id=4; -update noar ti set v0='J4X3CVQSWNXTBPKLRSJOSJR' where id=4; -update noar tt set b1='BYMUD0DD1QU6BZ1' where id=4; -update noar ti set b1='BYMUD0DD1QU6BZ1' where id=4; -update noar tt set v0='EQLIIP1LW5QQE7D5BUS98RDU' where id=4; -update noar ti set v0='EQLIIP1LW5QQE7D5BUS98RDU' where id=4; -update noar tt set b2='Y5BHOQTL0VXLLP55HH5ON3POJC' where id=4; -update noar ti set b2='Y5BHOQTL0VXLLP55HH5ON3POJC' where id=4; -update noar tt set v0='MVQBXP4O6KOI2' where id=5; -update noar ti set v0='MVQBXP4O6KOI2' where id=5; -update noar tt set b0='BLNJDAUNF' where id=5; -update noar ti set b0='BLNJDAUNF' where id=5; -update noar tt set v0='SLRBQAH2G2STSCPAAOBNQCXUVJ' where id=5; -update noar ti set v0='SLRBQAH2G2STSCPAAOBNQCXUVJ' where id=5; -update noar tt set b1='57WQ6XZIZ9TXZCS65F696HOR' where id=5; -update noar ti set b1='57WQ6XZIZ9TXZCS65F696HOR' where id=5; -update noar tt set v0='H5B1W8GVTZQZKW9M4KPTWIMIS9' where id=5; -update noar ti set v0='H5B1W8GVTZQZKW9M4KPTWIMIS9' where id=5; -update noar tt set b2='MDV64GUBR4F9TV' where id=5; -update noar ti set b2='MDV64GUBR4F9TV' where id=5; -update noar tt set v0='A3S3UVKSPLT0RZT089PUZ6ID3' where id=6; -update noar ti set v0='A3S3UVKSPLT0RZT089PUZ6ID3' where id=6; -update noar tt set b0='QHKCUHAMQVU5HXJRO5RN6HEH8TNDOIVX' where id=6; -update noar ti set b0='QHKCUHAMQVU5HXJRO5RN6HEH8TNDOIVX' where id=6; -update noar tt set v0='7KG0U9Y6TFWI2CXEZFGWDJLGXNBY' where id=6; -update noar ti set v0='7KG0U9Y6TFWI2CXEZFGWDJLGXNBY' where id=6; -update noar tt set b1='N502CN01R0E5E3ZN0I0VNLH2S' where id=6; -update noar ti set b1='N502CN01R0E5E3ZN0I0VNLH2S' where id=6; -update noar tt set v0='QN3RW00QL1I9D8T82KAVOR5A2MS' where id=6; -update noar ti set v0='QN3RW00QL1I9D8T82KAVOR5A2MS' where id=6; -update noar tt set b2='1BFE4ZCHCA8A28F71R4XLPWQM' where id=6; -update noar ti set b2='1BFE4ZCHCA8A28F71R4XLPWQM' where id=6; -update noar tt set v0='MCVVCZC6S436F207CLDLBSMRNI' where id=7; -update noar ti set v0='MCVVCZC6S436F207CLDLBSMRNI' where id=7; -update noar tt set b0='6AGUIR3MRAK7VFT9I3' where id=7; -update noar ti set b0='6AGUIR3MRAK7VFT9I3' where id=7; -update noar tt set v0='WU55SUYRYR6GPL8A4KFCW2XGWQY' where id=7; -update noar ti set v0='WU55SUYRYR6GPL8A4KFCW2XGWQY' where id=7; -update noar tt set b1='F16EIO0YQB2PJ4S3URMWRLV5NFX55M8N' where id=7; -update noar ti set b1='F16EIO0YQB2PJ4S3URMWRLV5NFX55M8N' where id=7; -update noar tt set v0='9HIC5MAC71UMW6UZ2DX' where id=7; -update noar ti set v0='9HIC5MAC71UMW6UZ2DX' where id=7; -update noar tt set b2='4CQ8' where id=7; -update noar ti set b2='4CQ8' where id=7; -update noar tt set v0='T5T4NFXJ2F8NMZ5VTS3DARVOFYY' where id=8; -update noar ti set v0='T5T4NFXJ2F8NMZ5VTS3DARVOFYY' where id=8; -update noar tt set b0='TZ' where id=8; -update noar ti set b0='TZ' where id=8; -update noar tt set v0='QMTHHSZBFB06M6E7JZTOCO1' where id=8; -update noar ti set v0='QMTHHSZBFB06M6E7JZTOCO1' where id=8; -update noar tt set b1='7HHOZ3YF5T5CFPH' where id=8; -update noar ti set b1='7HHOZ3YF5T5CFPH' where id=8; -update noar tt set v0='3' where id=8; -update noar ti set v0='3' where id=8; -update noar tt set b2='34Q5EMYYUZY8' where id=8; -update noar ti set b2='34Q5EMYYUZY8' where id=8; -update noar tt set v0='X6ZA' where id=9; -update noar ti set v0='X6ZA' where id=9; -update noar tt set b0='8' where id=9; -update noar ti set b0='8' where id=9; -update noar tt set v0='FMX05GOH826ACCM' where id=9; -update noar ti set v0='FMX05GOH826ACCM' where id=9; -update noar tt set b1='NVCOX3' where id=9; -update noar ti set b1='NVCOX3' where id=9; -update noar tt set v0='SPNUJBWY3V' where id=9; -update noar ti set v0='SPNUJBWY3V' where id=9; -update noar tt set b2='IMMRRH2FFBQ8OKIS' where id=9; -update noar ti set b2='IMMRRH2FFBQ8OKIS' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -v0 varchar(32) not null, -b0 longblob not null, -b1 blob not null, -b2 tinyblob not null -) engine=tokudb; -insert into tt values (1,'','','',''); -insert into tt values (2,'','','',''); -insert into tt values (3,'','','',''); -insert into tt values (4,'','','',''); -insert into tt values (5,'','','',''); -insert into tt values (6,'','','',''); -insert into tt values (7,'','','',''); -insert into tt values (8,'','','',''); -insert into tt values (9,'','','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='RWWEOX7M4YUGNG7QYUL1BOT' where id=1; -update noar ti set v0='RWWEOX7M4YUGNG7QYUL1BOT' where id=1; -update noar tt set b0='1U8B33OAI3R7FIT6OVFBZT0HXAXSM' where id=1; -update noar ti set b0='1U8B33OAI3R7FIT6OVFBZT0HXAXSM' where id=1; -update noar tt set v0='TQXSXWKG4HE61EQ4QWNMNO6SS' where id=1; -update noar ti set v0='TQXSXWKG4HE61EQ4QWNMNO6SS' where id=1; -update noar tt set b1='G490QRKXEQW4' where id=1; -update noar ti set b1='G490QRKXEQW4' where id=1; -update noar tt set v0='UB5NL0POVFPUTBS8AAKLNQQHEM4ZNJ' where id=1; -update noar ti set v0='UB5NL0POVFPUTBS8AAKLNQQHEM4ZNJ' where id=1; -update noar tt set b2='CE12HXKWT6IIFPGI2' where id=1; -update noar ti set b2='CE12HXKWT6IIFPGI2' where id=1; -update noar tt set v0='WC5BV5SZYAOS3FK' where id=2; -update noar ti set v0='WC5BV5SZYAOS3FK' where id=2; -update noar tt set b0='V6HPB1JTAXGBXHT' where id=2; -update noar ti set b0='V6HPB1JTAXGBXHT' where id=2; -update noar tt set v0='MJX2WP' where id=2; -update noar ti set v0='MJX2WP' where id=2; -update noar tt set b1='CZGE90Z4HFE5F' where id=2; -update noar ti set b1='CZGE90Z4HFE5F' where id=2; -update noar tt set v0='XKB47MXHIJKO2Y' where id=2; -update noar ti set v0='XKB47MXHIJKO2Y' where id=2; -update noar tt set b2='B1N1HM25MMRSEB' where id=2; -update noar ti set b2='B1N1HM25MMRSEB' where id=2; -update noar tt set v0='YZD4DP2SVZFJ4QLUDEFD31NE' where id=3; -update noar ti set v0='YZD4DP2SVZFJ4QLUDEFD31NE' where id=3; -update noar tt set b0='7C2NFFZ21CHNR' where id=3; -update noar ti set b0='7C2NFFZ21CHNR' where id=3; -update noar tt set v0='TKI79L3SJZNMUEE87WC7D5CWSJ4ISIEI' where id=3; -update noar ti set v0='TKI79L3SJZNMUEE87WC7D5CWSJ4ISIEI' where id=3; -update noar tt set b1='6R2QTRAIN' where id=3; -update noar ti set b1='6R2QTRAIN' where id=3; -update noar tt set v0='IIENO12LVHWKGV0Z2D20VZ' where id=3; -update noar ti set v0='IIENO12LVHWKGV0Z2D20VZ' where id=3; -update noar tt set b2='MFY' where id=3; -update noar ti set b2='MFY' where id=3; -update noar tt set v0='KPF5V32AK8IFN5H8A43A7H' where id=4; -update noar ti set v0='KPF5V32AK8IFN5H8A43A7H' where id=4; -update noar tt set b0='5GIW9LP90EV2HA3T2V3H84HUJ' where id=4; -update noar ti set b0='5GIW9LP90EV2HA3T2V3H84HUJ' where id=4; -update noar tt set v0='GV4IVQBPIB20M2IXNYNU' where id=4; -update noar ti set v0='GV4IVQBPIB20M2IXNYNU' where id=4; -update noar tt set b1='5OCFIE' where id=4; -update noar ti set b1='5OCFIE' where id=4; -update noar tt set v0='573GA9L3' where id=4; -update noar ti set v0='573GA9L3' where id=4; -update noar tt set b2='D2H3AGMYRCXMFIZ9LKX' where id=4; -update noar ti set b2='D2H3AGMYRCXMFIZ9LKX' where id=4; -update noar tt set v0='G3CQI6NNS' where id=5; -update noar ti set v0='G3CQI6NNS' where id=5; -update noar tt set b0='ICJ629Z6Z1G' where id=5; -update noar ti set b0='ICJ629Z6Z1G' where id=5; -update noar tt set v0='MEPUUC13THR15U7UAJR' where id=5; -update noar ti set v0='MEPUUC13THR15U7UAJR' where id=5; -update noar tt set b1='UFNZRE63HCEYVQF278ZB' where id=5; -update noar ti set b1='UFNZRE63HCEYVQF278ZB' where id=5; -update noar tt set v0='UJRZZ5YROICF9MMG3' where id=5; -update noar ti set v0='UJRZZ5YROICF9MMG3' where id=5; -update noar tt set b2='2ZOYW3DDS40JAMSFHDUTIAQVAF10DX' where id=5; -update noar ti set b2='2ZOYW3DDS40JAMSFHDUTIAQVAF10DX' where id=5; -update noar tt set v0='CWOJVA01' where id=6; -update noar ti set v0='CWOJVA01' where id=6; -update noar tt set b0='VIU28ZUWB513YLV1Z0RPZ' where id=6; -update noar ti set b0='VIU28ZUWB513YLV1Z0RPZ' where id=6; -update noar tt set v0='UYGHA4V0' where id=6; -update noar ti set v0='UYGHA4V0' where id=6; -update noar tt set b1='2VZZZZ2GJX5PBFNKFK' where id=6; -update noar ti set b1='2VZZZZ2GJX5PBFNKFK' where id=6; -update noar tt set v0='COWFEC3H498X' where id=6; -update noar ti set v0='COWFEC3H498X' where id=6; -update noar tt set b2='V81V0ZAGMO' where id=6; -update noar ti set b2='V81V0ZAGMO' where id=6; -update noar tt set v0='46' where id=7; -update noar ti set v0='46' where id=7; -update noar tt set b0='HPDP180T0' where id=7; -update noar ti set b0='HPDP180T0' where id=7; -update noar tt set v0='KOHD9G6AW579YUFJB' where id=7; -update noar ti set v0='KOHD9G6AW579YUFJB' where id=7; -update noar tt set b1='KFYQREWEKWTJUC8KJ452OSVNTDVIF' where id=7; -update noar ti set b1='KFYQREWEKWTJUC8KJ452OSVNTDVIF' where id=7; -update noar tt set v0='9TS4YJQM16XK44QGK' where id=7; -update noar ti set v0='9TS4YJQM16XK44QGK' where id=7; -update noar tt set b2='N2XOQWYW7JWKV8DBZC1Q6' where id=7; -update noar ti set b2='N2XOQWYW7JWKV8DBZC1Q6' where id=7; -update noar tt set v0='AZJ9YU8' where id=8; -update noar ti set v0='AZJ9YU8' where id=8; -update noar tt set b0='87H2I43CB' where id=8; -update noar ti set b0='87H2I43CB' where id=8; -update noar tt set v0='J4X' where id=8; -update noar ti set v0='J4X' where id=8; -update noar tt set b1='QQZKJWZLI19XC8FWTA57V2UUK9N1IMLD' where id=8; -update noar ti set b1='QQZKJWZLI19XC8FWTA57V2UUK9N1IMLD' where id=8; -update noar tt set v0='VYIR1JCLJT5BMJJ0S8NQVKBXHB' where id=8; -update noar ti set v0='VYIR1JCLJT5BMJJ0S8NQVKBXHB' where id=8; -update noar tt set b2='VC0BUEPZQCBJGH' where id=8; -update noar ti set b2='VC0BUEPZQCBJGH' where id=8; -update noar tt set v0='DGVXNJWAPWQS3733QOSG470L9D8' where id=9; -update noar ti set v0='DGVXNJWAPWQS3733QOSG470L9D8' where id=9; -update noar tt set b0='UX3LPFAMCMSNTQLT1WA6D5QDER2RFTSQ' where id=9; -update noar ti set b0='UX3LPFAMCMSNTQLT1WA6D5QDER2RFTSQ' where id=9; -update noar tt set v0='TR5BUF2E98TDRUK2P540HBO5O' where id=9; -update noar ti set v0='TR5BUF2E98TDRUK2P540HBO5O' where id=9; -update noar tt set b1='WT2WQGBZA5NDTIMHA' where id=9; -update noar ti set b1='WT2WQGBZA5NDTIMHA' where id=9; -update noar tt set v0='S43OB3JP' where id=9; -update noar ti set v0='S43OB3JP' where id=9; -update noar tt set b2='167K9PC4OQ' where id=9; -update noar ti set b2='167K9PC4OQ' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -v0 varchar(256) not null, -b0 longblob not null, -b1 blob not null, -b2 tinyblob not null -) engine=tokudb; -insert into tt values (1,'','','',''); -insert into tt values (2,'','','',''); -insert into tt values (3,'','','',''); -insert into tt values (4,'','','',''); -insert into tt values (5,'','','',''); -insert into tt values (6,'','','',''); -insert into tt values (7,'','','',''); -insert into tt values (8,'','','',''); -insert into tt values (9,'','','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='50RCO9JLZ2PCP5' where id=1; -update noar ti set v0='50RCO9JLZ2PCP5' where id=1; -update noar tt set b0='KS8KMZ5U4QUF6ZGQFZUKLI89MEWC' where id=1; -update noar ti set b0='KS8KMZ5U4QUF6ZGQFZUKLI89MEWC' where id=1; -update noar tt set v0='O8Y7J4HPNZQU8AIJ2' where id=1; -update noar ti set v0='O8Y7J4HPNZQU8AIJ2' where id=1; -update noar tt set b1='IUDWG6LGU5Q3Y6LG2D0RWL' where id=1; -update noar ti set b1='IUDWG6LGU5Q3Y6LG2D0RWL' where id=1; -update noar tt set v0='J5EI5W' where id=1; -update noar ti set v0='J5EI5W' where id=1; -update noar tt set b2='KL25N5PYDHHULJZ' where id=1; -update noar ti set b2='KL25N5PYDHHULJZ' where id=1; -update noar tt set v0='B4HSII' where id=2; -update noar ti set v0='B4HSII' where id=2; -update noar tt set b0='OYP' where id=2; -update noar ti set b0='OYP' where id=2; -update noar tt set v0='NEMJH6BW1ZMXJ3ZD75UV' where id=2; -update noar ti set v0='NEMJH6BW1ZMXJ3ZD75UV' where id=2; -update noar tt set b1='W3FP8UD8RGDJGLGE6LVOQQIVZAVO' where id=2; -update noar ti set b1='W3FP8UD8RGDJGLGE6LVOQQIVZAVO' where id=2; -update noar tt set v0='HQLO0LUVQMOJBJA' where id=2; -update noar ti set v0='HQLO0LUVQMOJBJA' where id=2; -update noar tt set b2='ITTO1E1O0TJ7ZZ75WC' where id=2; -update noar ti set b2='ITTO1E1O0TJ7ZZ75WC' where id=2; -update noar tt set v0='CX5SD1MCI5KR49MYHGR5CBE2C5JDAJ' where id=3; -update noar ti set v0='CX5SD1MCI5KR49MYHGR5CBE2C5JDAJ' where id=3; -update noar tt set b0='FFOVOYO3RLVVYLKXWPUG2Q' where id=3; -update noar ti set b0='FFOVOYO3RLVVYLKXWPUG2Q' where id=3; -update noar tt set v0='BINCGEUSIDFRKX0AD5YRDWL8MEYZE' where id=3; -update noar ti set v0='BINCGEUSIDFRKX0AD5YRDWL8MEYZE' where id=3; -update noar tt set b1='TAT2G0EROEFBIDTOR8S71HZ4' where id=3; -update noar ti set b1='TAT2G0EROEFBIDTOR8S71HZ4' where id=3; -update noar tt set v0='FP73YLU30Q3JEFL7SZ98JVT6' where id=3; -update noar ti set v0='FP73YLU30Q3JEFL7SZ98JVT6' where id=3; -update noar tt set b2='MK44' where id=3; -update noar ti set b2='MK44' where id=3; -update noar tt set v0='48Z45CTL4TGL9SSG38UZB4' where id=4; -update noar ti set v0='48Z45CTL4TGL9SSG38UZB4' where id=4; -update noar tt set b0='U6ASIAI04VUA4CJG75O3' where id=4; -update noar ti set b0='U6ASIAI04VUA4CJG75O3' where id=4; -update noar tt set v0='R0U253LVWU9R8AHVZY05Q32SM7K' where id=4; -update noar ti set v0='R0U253LVWU9R8AHVZY05Q32SM7K' where id=4; -update noar tt set b1='I5EV4MO2AS9UF9015YRM6W0' where id=4; -update noar ti set b1='I5EV4MO2AS9UF9015YRM6W0' where id=4; -update noar tt set v0='HVEH529JYF5D8QHPGPDUIJO4U9DHAI' where id=4; -update noar ti set v0='HVEH529JYF5D8QHPGPDUIJO4U9DHAI' where id=4; -update noar tt set b2='SOIAP3WDE74SBBDP0M7YJYKMIJO' where id=4; -update noar ti set b2='SOIAP3WDE74SBBDP0M7YJYKMIJO' where id=4; -update noar tt set v0='JXYOGUA3RSQOY0PTRZ2RWT' where id=5; -update noar ti set v0='JXYOGUA3RSQOY0PTRZ2RWT' where id=5; -update noar tt set b0='603N9FOX3CWPSWOCOR0UEI3XE' where id=5; -update noar ti set b0='603N9FOX3CWPSWOCOR0UEI3XE' where id=5; -update noar tt set v0='IO0SBG7G5TFJM4' where id=5; -update noar ti set v0='IO0SBG7G5TFJM4' where id=5; -update noar tt set b1='6YUNRCIFC5JKT' where id=5; -update noar ti set b1='6YUNRCIFC5JKT' where id=5; -update noar tt set v0='Y92DCBMQ' where id=5; -update noar ti set v0='Y92DCBMQ' where id=5; -update noar tt set b2='V4U1BLCKMFATATOEWBSF' where id=5; -update noar ti set b2='V4U1BLCKMFATATOEWBSF' where id=5; -update noar tt set v0='D1EI1' where id=6; -update noar ti set v0='D1EI1' where id=6; -update noar tt set b0='YF18KWDFWBTBFWXOOY4CRKMV' where id=6; -update noar ti set b0='YF18KWDFWBTBFWXOOY4CRKMV' where id=6; -update noar tt set v0='892KGP26627GMGXOV1S4Z0' where id=6; -update noar ti set v0='892KGP26627GMGXOV1S4Z0' where id=6; -update noar tt set b1='YEI0SQB4HM0EDMETPCYHDIZYO32' where id=6; -update noar ti set b1='YEI0SQB4HM0EDMETPCYHDIZYO32' where id=6; -update noar tt set v0='9ZYRWKX3' where id=6; -update noar ti set v0='9ZYRWKX3' where id=6; -update noar tt set b2='OD8D63R9QGAX32OYNI' where id=6; -update noar ti set b2='OD8D63R9QGAX32OYNI' where id=6; -update noar tt set v0='R8UXPSCDZ508S8U8' where id=7; -update noar ti set v0='R8UXPSCDZ508S8U8' where id=7; -update noar tt set b0='VMNXZE2F7TJQMMTUR6IF' where id=7; -update noar ti set b0='VMNXZE2F7TJQMMTUR6IF' where id=7; -update noar tt set v0='5H3HUTEX45H13U99AKZ2WC8FFFTZKN1' where id=7; -update noar ti set v0='5H3HUTEX45H13U99AKZ2WC8FFFTZKN1' where id=7; -update noar tt set b1='HIFJ27HSYHCYZQJSWDVALX4' where id=7; -update noar ti set b1='HIFJ27HSYHCYZQJSWDVALX4' where id=7; -update noar tt set v0='87E8HH7L' where id=7; -update noar ti set v0='87E8HH7L' where id=7; -update noar tt set b2='Z6' where id=7; -update noar ti set b2='Z6' where id=7; -update noar tt set v0='DSSQ' where id=8; -update noar ti set v0='DSSQ' where id=8; -update noar tt set b0='3JN1YB3VL7CD4ZVYKBZWXKYJS3UE' where id=8; -update noar ti set b0='3JN1YB3VL7CD4ZVYKBZWXKYJS3UE' where id=8; -update noar tt set v0='SHX6JGANSBC4TQEVNSY0' where id=8; -update noar ti set v0='SHX6JGANSBC4TQEVNSY0' where id=8; -update noar tt set b1='V5D5SAJZTB7R70ZDGOZK5S' where id=8; -update noar ti set b1='V5D5SAJZTB7R70ZDGOZK5S' where id=8; -update noar tt set v0='96JKDFJOO' where id=8; -update noar ti set v0='96JKDFJOO' where id=8; -update noar tt set b2='3Z0OG8LM8I0UYFII4ACKK2T' where id=8; -update noar ti set b2='3Z0OG8LM8I0UYFII4ACKK2T' where id=8; -update noar tt set v0='O3SEA36FRTCM8P63ER5JNO0957IZ7E' where id=9; -update noar ti set v0='O3SEA36FRTCM8P63ER5JNO0957IZ7E' where id=9; -update noar tt set b0='CQAHXE6SG772H3U2ALA' where id=9; -update noar ti set b0='CQAHXE6SG772H3U2ALA' where id=9; -update noar tt set v0='7WM3HWM38OFTG7XVCRZTE9M1AM' where id=9; -update noar ti set v0='7WM3HWM38OFTG7XVCRZTE9M1AM' where id=9; -update noar tt set b1='JUEO7UGL' where id=9; -update noar ti set b1='JUEO7UGL' where id=9; -update noar tt set v0='K2M2NQYB374ADJDQDA0H9IMPVNDJKTT' where id=9; -update noar ti set v0='K2M2NQYB374ADJDQDA0H9IMPVNDJKTT' where id=9; -update noar tt set b2='5QIIZ789T4' where id=9; -update noar ti set b2='5QIIZ789T4' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -v0 varchar(32) null, -b0 longblob null, -b1 blob null, -b2 blob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='WD0W8C2F8QAZBDWHEZOYQWJH7AGV1IB' where id=1; -update noar ti set v0='WD0W8C2F8QAZBDWHEZOYQWJH7AGV1IB' where id=1; -update noar tt set b0='57DCEZQ' where id=1; -update noar ti set b0='57DCEZQ' where id=1; -update noar tt set v0='X7T6E0FAE64U9NHSRUSUCLXVYM' where id=1; -update noar ti set v0='X7T6E0FAE64U9NHSRUSUCLXVYM' where id=1; -update noar tt set b1='96Z868HIDSN7U0AIM9BGQ5' where id=1; -update noar ti set b1='96Z868HIDSN7U0AIM9BGQ5' where id=1; -update noar tt set v0='NW01RNLPB1XGYJVAD3' where id=1; -update noar ti set v0='NW01RNLPB1XGYJVAD3' where id=1; -update noar tt set b2='IMW74MIZ9136TCZTAWEPSB30SPC8' where id=1; -update noar ti set b2='IMW74MIZ9136TCZTAWEPSB30SPC8' where id=1; -update noar tt set v0='B3RM59WT0BGDEK74K903CO92LIF2YR' where id=2; -update noar ti set v0='B3RM59WT0BGDEK74K903CO92LIF2YR' where id=2; -update noar tt set b0='Q7PXFZN82E2KN1JDQI9A2' where id=2; -update noar ti set b0='Q7PXFZN82E2KN1JDQI9A2' where id=2; -update noar tt set v0='OCP66CMFR0Z8S69W34O' where id=2; -update noar ti set v0='OCP66CMFR0Z8S69W34O' where id=2; -update noar tt set b1='OTFJF' where id=2; -update noar ti set b1='OTFJF' where id=2; -update noar tt set v0='C95HU32AO9Z' where id=2; -update noar ti set v0='C95HU32AO9Z' where id=2; -update noar tt set b2='JE0S6U7KR3H940OMEB8BA69LCLG' where id=2; -update noar ti set b2='JE0S6U7KR3H940OMEB8BA69LCLG' where id=2; -update noar tt set v0='8QFBMSNLI7JR74DCWYH5' where id=3; -update noar ti set v0='8QFBMSNLI7JR74DCWYH5' where id=3; -update noar tt set b0='FS9L70DUN2L199XHFMGMZRO2ITOE0SLV' where id=3; -update noar ti set b0='FS9L70DUN2L199XHFMGMZRO2ITOE0SLV' where id=3; -update noar tt set v0='WLIW1HSSYOIVQAIR1J74G4T' where id=3; -update noar ti set v0='WLIW1HSSYOIVQAIR1J74G4T' where id=3; -update noar tt set b1='270XASA7JJZROBB7O6M' where id=3; -update noar ti set b1='270XASA7JJZROBB7O6M' where id=3; -update noar tt set v0='N1H1AMZOH7OXFRB4J9Q4G' where id=3; -update noar ti set v0='N1H1AMZOH7OXFRB4J9Q4G' where id=3; -update noar tt set b2='KMZEXA3A9FGOM63RL1DU' where id=3; -update noar ti set b2='KMZEXA3A9FGOM63RL1DU' where id=3; -update noar tt set v0='O4MJW6JRWNPRQ2Z5K6IMNF9' where id=4; -update noar ti set v0='O4MJW6JRWNPRQ2Z5K6IMNF9' where id=4; -update noar tt set b0='FRLZIIP0F48GW8VU4VXZI' where id=4; -update noar ti set b0='FRLZIIP0F48GW8VU4VXZI' where id=4; -update noar tt set v0='XOCRJJPVLVR9BCTYOF3A2' where id=4; -update noar ti set v0='XOCRJJPVLVR9BCTYOF3A2' where id=4; -update noar tt set b1='WEB9UPJRX3PZK1ANRER0OR57SFC6DTU' where id=4; -update noar ti set b1='WEB9UPJRX3PZK1ANRER0OR57SFC6DTU' where id=4; -update noar tt set v0='QE4IHUVFGZRGNF' where id=4; -update noar ti set v0='QE4IHUVFGZRGNF' where id=4; -update noar tt set b2='P' where id=4; -update noar ti set b2='P' where id=4; -update noar tt set v0='DJNCX5SQTK' where id=5; -update noar ti set v0='DJNCX5SQTK' where id=5; -update noar tt set b0='ANFUSL236IWH3RE71T71ZPYPHU87' where id=5; -update noar ti set b0='ANFUSL236IWH3RE71T71ZPYPHU87' where id=5; -update noar tt set v0='8GVL4NPZ' where id=5; -update noar ti set v0='8GVL4NPZ' where id=5; -update noar tt set b1='LW0F7ZPM2' where id=5; -update noar ti set b1='LW0F7ZPM2' where id=5; -update noar tt set v0='BPLK0LD' where id=5; -update noar ti set v0='BPLK0LD' where id=5; -update noar tt set b2='D4S' where id=5; -update noar ti set b2='D4S' where id=5; -update noar tt set v0='JKYGMPPXAW6' where id=6; -update noar ti set v0='JKYGMPPXAW6' where id=6; -update noar tt set b0='NL7ABMQ' where id=6; -update noar ti set b0='NL7ABMQ' where id=6; -update noar tt set v0='WDG7L1QJZESZ9V7OEBH4CNE77JW' where id=6; -update noar ti set v0='WDG7L1QJZESZ9V7OEBH4CNE77JW' where id=6; -update noar tt set b1='BM2CHLWIC6DZNS' where id=6; -update noar ti set b1='BM2CHLWIC6DZNS' where id=6; -update noar tt set v0='J88PI3GFJNCCCEER4350' where id=6; -update noar ti set v0='J88PI3GFJNCCCEER4350' where id=6; -update noar tt set b2='PV3EH83BPH7K9KBH' where id=6; -update noar ti set b2='PV3EH83BPH7K9KBH' where id=6; -update noar tt set v0='EW' where id=7; -update noar ti set v0='EW' where id=7; -update noar tt set b0='RSKH1TA2C2S8KG9E8' where id=7; -update noar ti set b0='RSKH1TA2C2S8KG9E8' where id=7; -update noar tt set v0='4CN5OXWS' where id=7; -update noar ti set v0='4CN5OXWS' where id=7; -update noar tt set b1='UI1J1X' where id=7; -update noar ti set b1='UI1J1X' where id=7; -update noar tt set v0='TUV' where id=7; -update noar ti set v0='TUV' where id=7; -update noar tt set b2='EKKFDTL' where id=7; -update noar ti set b2='EKKFDTL' where id=7; -update noar tt set v0='ZU9' where id=8; -update noar ti set v0='ZU9' where id=8; -update noar tt set b0='IE' where id=8; -update noar ti set b0='IE' where id=8; -update noar tt set v0='HV' where id=8; -update noar ti set v0='HV' where id=8; -update noar tt set b1='F5AVF' where id=8; -update noar ti set b1='F5AVF' where id=8; -update noar tt set v0='00BZDX4JTRHD0YYL5DT7HQX2LOW' where id=8; -update noar ti set v0='00BZDX4JTRHD0YYL5DT7HQX2LOW' where id=8; -update noar tt set b2='9DQH' where id=8; -update noar ti set b2='9DQH' where id=8; -update noar tt set v0='U1IAVIXIZ4G0TLMDQ131SV02AJG' where id=9; -update noar ti set v0='U1IAVIXIZ4G0TLMDQ131SV02AJG' where id=9; -update noar tt set b0='CUNUCWH' where id=9; -update noar ti set b0='CUNUCWH' where id=9; -update noar tt set v0='9K85Z30MX05KX0' where id=9; -update noar ti set v0='9K85Z30MX05KX0' where id=9; -update noar tt set b1='ET3WJTI' where id=9; -update noar ti set b1='ET3WJTI' where id=9; -update noar tt set v0='K5DRRM1MGPHQLYZMJUG6JTC7H7WRFQ' where id=9; -update noar ti set v0='K5DRRM1MGPHQLYZMJUG6JTC7H7WRFQ' where id=9; -update noar tt set b2='CNF2VVL0GK' where id=9; -update noar ti set b2='CNF2VVL0GK' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -v0 varchar(256) null, -b0 longblob null, -b1 blob null, -b2 blob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='RE0A5K9RVR0E98NPYY1G6ZHF9' where id=1; -update noar ti set v0='RE0A5K9RVR0E98NPYY1G6ZHF9' where id=1; -update noar tt set b0='SD0DCNISM6T' where id=1; -update noar ti set b0='SD0DCNISM6T' where id=1; -update noar tt set v0='EX' where id=1; -update noar ti set v0='EX' where id=1; -update noar tt set b1='JAYYOBCVDKILTQ4ZFB5M9R8T88YFQXW' where id=1; -update noar ti set b1='JAYYOBCVDKILTQ4ZFB5M9R8T88YFQXW' where id=1; -update noar tt set v0='LZF12I3940AUCYJL3' where id=1; -update noar ti set v0='LZF12I3940AUCYJL3' where id=1; -update noar tt set b2='9' where id=1; -update noar ti set b2='9' where id=1; -update noar tt set v0='F9U2J5FA03K1Z5KX20OF1908A' where id=2; -update noar ti set v0='F9U2J5FA03K1Z5KX20OF1908A' where id=2; -update noar tt set b0='OB7TXGILE0XJKRXN9CY83VBKB' where id=2; -update noar ti set b0='OB7TXGILE0XJKRXN9CY83VBKB' where id=2; -update noar tt set v0='RYL5YFPD24DMF8PTZ9ONCY0Z1CNKU5UR' where id=2; -update noar ti set v0='RYL5YFPD24DMF8PTZ9ONCY0Z1CNKU5UR' where id=2; -update noar tt set b1='W7KIGZHH29POEJF' where id=2; -update noar ti set b1='W7KIGZHH29POEJF' where id=2; -update noar tt set v0='4OVO3AYB0VQ2EEBND7R' where id=2; -update noar ti set v0='4OVO3AYB0VQ2EEBND7R' where id=2; -update noar tt set b2='UI9WQUJPYA' where id=2; -update noar ti set b2='UI9WQUJPYA' where id=2; -update noar tt set v0='6FZBGYYJRL5QL8OHGIPT6NC' where id=3; -update noar ti set v0='6FZBGYYJRL5QL8OHGIPT6NC' where id=3; -update noar tt set b0='M' where id=3; -update noar ti set b0='M' where id=3; -update noar tt set v0='E9RBS24LQE9LMLDTD8B52X8XG9AR' where id=3; -update noar ti set v0='E9RBS24LQE9LMLDTD8B52X8XG9AR' where id=3; -update noar tt set b1='3M9ZAY6KCMCEVT55PB' where id=3; -update noar ti set b1='3M9ZAY6KCMCEVT55PB' where id=3; -update noar tt set v0='XKQ4OSRTOQ92XYDXXZD4J' where id=3; -update noar ti set v0='XKQ4OSRTOQ92XYDXXZD4J' where id=3; -update noar tt set b2='0CBCS87WTG3CRG0Z46UCXLU78N00CT' where id=3; -update noar ti set b2='0CBCS87WTG3CRG0Z46UCXLU78N00CT' where id=3; -update noar tt set v0='7YZ1GVXYQAZ7M' where id=4; -update noar ti set v0='7YZ1GVXYQAZ7M' where id=4; -update noar tt set b0='I3RFY9' where id=4; -update noar ti set b0='I3RFY9' where id=4; -update noar tt set v0='2M4SR0PYAEH' where id=4; -update noar ti set v0='2M4SR0PYAEH' where id=4; -update noar tt set b1='2SEC6MBYRK7BDG2H3TQ' where id=4; -update noar ti set b1='2SEC6MBYRK7BDG2H3TQ' where id=4; -update noar tt set v0='SA90Q3W0UMKM6C5VWGL4KIYMHI' where id=4; -update noar ti set v0='SA90Q3W0UMKM6C5VWGL4KIYMHI' where id=4; -update noar tt set b2='D7WDO8F' where id=4; -update noar ti set b2='D7WDO8F' where id=4; -update noar tt set v0='2WVL5LP5DGWAMYGGKZLQFI27' where id=5; -update noar ti set v0='2WVL5LP5DGWAMYGGKZLQFI27' where id=5; -update noar tt set b0='JFXH0MHEEXI3ZILHK2EZ27Y2HKD' where id=5; -update noar ti set b0='JFXH0MHEEXI3ZILHK2EZ27Y2HKD' where id=5; -update noar tt set v0='SFH8LF1M1UR' where id=5; -update noar ti set v0='SFH8LF1M1UR' where id=5; -update noar tt set b1='2Z0Q4XTYCDAWJUR' where id=5; -update noar ti set b1='2Z0Q4XTYCDAWJUR' where id=5; -update noar tt set v0='ZO0GTH70INU3WGVX3H8I12KZ4W1' where id=5; -update noar ti set v0='ZO0GTH70INU3WGVX3H8I12KZ4W1' where id=5; -update noar tt set b2='2GVG5TDZ0W1U8PNWZ2Z5VQ' where id=5; -update noar ti set b2='2GVG5TDZ0W1U8PNWZ2Z5VQ' where id=5; -update noar tt set v0='TU79F08N50UI4L1O' where id=6; -update noar ti set v0='TU79F08N50UI4L1O' where id=6; -update noar tt set b0='XOBI8I4' where id=6; -update noar ti set b0='XOBI8I4' where id=6; -update noar tt set v0='7B63CCS09SZHOQ' where id=6; -update noar ti set v0='7B63CCS09SZHOQ' where id=6; -update noar tt set b1='AWP2FPSJQ0EB6A25M6' where id=6; -update noar ti set b1='AWP2FPSJQ0EB6A25M6' where id=6; -update noar tt set v0='2Z2M6YTE4N0NGB6J60HAD1CB0DA' where id=6; -update noar ti set v0='2Z2M6YTE4N0NGB6J60HAD1CB0DA' where id=6; -update noar tt set b2='CHWA5PFG0JK6X42OT3TBQKRWA7IY2O8' where id=6; -update noar ti set b2='CHWA5PFG0JK6X42OT3TBQKRWA7IY2O8' where id=6; -update noar tt set v0='7C9YTG3PXX' where id=7; -update noar ti set v0='7C9YTG3PXX' where id=7; -update noar tt set b0='EI93' where id=7; -update noar ti set b0='EI93' where id=7; -update noar tt set v0='2X1GI8U3CD4P2IJ9ZCVEB0YQH3MINYX' where id=7; -update noar ti set v0='2X1GI8U3CD4P2IJ9ZCVEB0YQH3MINYX' where id=7; -update noar tt set b1='C0EMNJO' where id=7; -update noar ti set b1='C0EMNJO' where id=7; -update noar tt set v0='MLQNW1XP19FF3BPQ5' where id=7; -update noar ti set v0='MLQNW1XP19FF3BPQ5' where id=7; -update noar tt set b2='BYJ6W' where id=7; -update noar ti set b2='BYJ6W' where id=7; -update noar tt set v0='T61PTORAJRPLCOXPUDHJ6Z' where id=8; -update noar ti set v0='T61PTORAJRPLCOXPUDHJ6Z' where id=8; -update noar tt set b0='P8OEM' where id=8; -update noar ti set b0='P8OEM' where id=8; -update noar tt set v0='3D5GYH1QPWP7BPB6LPWX5' where id=8; -update noar ti set v0='3D5GYH1QPWP7BPB6LPWX5' where id=8; -update noar tt set b1='C4ZYBOR31BS9' where id=8; -update noar ti set b1='C4ZYBOR31BS9' where id=8; -update noar tt set v0='I332AIMZO2VL485' where id=8; -update noar ti set v0='I332AIMZO2VL485' where id=8; -update noar tt set b2='7IAW6ZPPAQ2E735RD8A3B0CVH21' where id=8; -update noar ti set b2='7IAW6ZPPAQ2E735RD8A3B0CVH21' where id=8; -update noar tt set v0='CZHHJ' where id=9; -update noar ti set v0='CZHHJ' where id=9; -update noar tt set b0='5' where id=9; -update noar ti set b0='5' where id=9; -update noar tt set v0='X99Z9UB6DI86UD5P' where id=9; -update noar ti set v0='X99Z9UB6DI86UD5P' where id=9; -update noar tt set b1='82EW183M55IPL9QVGAJ77CN4U5E74M' where id=9; -update noar ti set b1='82EW183M55IPL9QVGAJ77CN4U5E74M' where id=9; -update noar tt set v0='Y06SNYH3' where id=9; -update noar ti set v0='Y06SNYH3' where id=9; -update noar tt set b2='MWNSAEZ2P' where id=9; -update noar ti set b2='MWNSAEZ2P' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -v0 varchar(32) not null, -b0 longblob not null, -b1 blob not null, -b2 blob not null -) engine=tokudb; -insert into tt values (1,'','','',''); -insert into tt values (2,'','','',''); -insert into tt values (3,'','','',''); -insert into tt values (4,'','','',''); -insert into tt values (5,'','','',''); -insert into tt values (6,'','','',''); -insert into tt values (7,'','','',''); -insert into tt values (8,'','','',''); -insert into tt values (9,'','','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='T' where id=1; -update noar ti set v0='T' where id=1; -update noar tt set b0='SIU9ULYKC' where id=1; -update noar ti set b0='SIU9ULYKC' where id=1; -update noar tt set v0='ZFZH3PB7ED' where id=1; -update noar ti set v0='ZFZH3PB7ED' where id=1; -update noar tt set b1='ZU' where id=1; -update noar ti set b1='ZU' where id=1; -update noar tt set v0='EOTFHZ5EWJ1AYOFD' where id=1; -update noar ti set v0='EOTFHZ5EWJ1AYOFD' where id=1; -update noar tt set b2='WAQGZA2CHZI5OCRFAP7OFANP6' where id=1; -update noar ti set b2='WAQGZA2CHZI5OCRFAP7OFANP6' where id=1; -update noar tt set v0='H5DW9A' where id=2; -update noar ti set v0='H5DW9A' where id=2; -update noar tt set b0='639001SULAZG18U7AU4YRVA' where id=2; -update noar ti set b0='639001SULAZG18U7AU4YRVA' where id=2; -update noar tt set v0='S4WNQI8IPNVQOPGOJ9MHBMZIRXOBFMD' where id=2; -update noar ti set v0='S4WNQI8IPNVQOPGOJ9MHBMZIRXOBFMD' where id=2; -update noar tt set b1='MS6STQRV4GAXOC9C' where id=2; -update noar ti set b1='MS6STQRV4GAXOC9C' where id=2; -update noar tt set v0='F01CPGHT4JLKXH3I6W7' where id=2; -update noar ti set v0='F01CPGHT4JLKXH3I6W7' where id=2; -update noar tt set b2='IO06VG' where id=2; -update noar ti set b2='IO06VG' where id=2; -update noar tt set v0='AGJ' where id=3; -update noar ti set v0='AGJ' where id=3; -update noar tt set b0='RB' where id=3; -update noar ti set b0='RB' where id=3; -update noar tt set v0='2UWLYEU2BGADY' where id=3; -update noar ti set v0='2UWLYEU2BGADY' where id=3; -update noar tt set b1='9752DUQ93LK42Z115J60XPNV' where id=3; -update noar ti set b1='9752DUQ93LK42Z115J60XPNV' where id=3; -update noar tt set v0='MPMSFRQI' where id=3; -update noar ti set v0='MPMSFRQI' where id=3; -update noar tt set b2='B' where id=3; -update noar ti set b2='B' where id=3; -update noar tt set v0='SXZUTXNDNMXVO5JMBVVU18I7' where id=4; -update noar ti set v0='SXZUTXNDNMXVO5JMBVVU18I7' where id=4; -update noar tt set b0='IO3TUEWZ43P6R1Y60MXD5' where id=4; -update noar ti set b0='IO3TUEWZ43P6R1Y60MXD5' where id=4; -update noar tt set v0='UA0MARBHHZSIP3FZZ9C7XJ9' where id=4; -update noar ti set v0='UA0MARBHHZSIP3FZZ9C7XJ9' where id=4; -update noar tt set b1='F2LU0ODAH3DU5TLRSWYLDS9' where id=4; -update noar ti set b1='F2LU0ODAH3DU5TLRSWYLDS9' where id=4; -update noar tt set v0='JZ2O19P3' where id=4; -update noar ti set v0='JZ2O19P3' where id=4; -update noar tt set b2='E8CRIRAT7S' where id=4; -update noar ti set b2='E8CRIRAT7S' where id=4; -update noar tt set v0='DLMRMIERFYJED8GMDEJ4G7G' where id=5; -update noar ti set v0='DLMRMIERFYJED8GMDEJ4G7G' where id=5; -update noar tt set b0='CAA2O' where id=5; -update noar ti set b0='CAA2O' where id=5; -update noar tt set v0='7A8JKQYS2AQCAC1S7JFOEIEFT' where id=5; -update noar ti set v0='7A8JKQYS2AQCAC1S7JFOEIEFT' where id=5; -update noar tt set b1='QVPYAC9LFB7G' where id=5; -update noar ti set b1='QVPYAC9LFB7G' where id=5; -update noar tt set v0='TYBZYCODHQ8QRU' where id=5; -update noar ti set v0='TYBZYCODHQ8QRU' where id=5; -update noar tt set b2='GW0BWV8FJ077RHJR' where id=5; -update noar ti set b2='GW0BWV8FJ077RHJR' where id=5; -update noar tt set v0='N94BACIP6HE6XA4NW0Y' where id=6; -update noar ti set v0='N94BACIP6HE6XA4NW0Y' where id=6; -update noar tt set b0='BS3D4UOMP1JWL3AOEJK3PH5N8CNI' where id=6; -update noar ti set b0='BS3D4UOMP1JWL3AOEJK3PH5N8CNI' where id=6; -update noar tt set v0='BIZ8JOG0AHVBCFG5SQ75N' where id=6; -update noar ti set v0='BIZ8JOG0AHVBCFG5SQ75N' where id=6; -update noar tt set b1='F58CMPMY' where id=6; -update noar ti set b1='F58CMPMY' where id=6; -update noar tt set v0='S66TOKO2LGXOXN5OM8' where id=6; -update noar ti set v0='S66TOKO2LGXOXN5OM8' where id=6; -update noar tt set b2='8B6OD13T38XMR' where id=6; -update noar ti set b2='8B6OD13T38XMR' where id=6; -update noar tt set v0='1' where id=7; -update noar ti set v0='1' where id=7; -update noar tt set b0='RK6044JV54ACAVDVSIJN23XTIVWE' where id=7; -update noar ti set b0='RK6044JV54ACAVDVSIJN23XTIVWE' where id=7; -update noar tt set v0='H5IW6MO7E3GNAL9YSA6EA6' where id=7; -update noar ti set v0='H5IW6MO7E3GNAL9YSA6EA6' where id=7; -update noar tt set b1='BU148FKQ100F7D' where id=7; -update noar ti set b1='BU148FKQ100F7D' where id=7; -update noar tt set v0='QU2TL69T0ML49545YVQL98' where id=7; -update noar ti set v0='QU2TL69T0ML49545YVQL98' where id=7; -update noar tt set b2='ZF0NSBRPM7GAO9AYUCVEECZ1ENYF' where id=7; -update noar ti set b2='ZF0NSBRPM7GAO9AYUCVEECZ1ENYF' where id=7; -update noar tt set v0='7IY55JZBJ1OYXEC41P33W2XWZYI2N6CY' where id=8; -update noar ti set v0='7IY55JZBJ1OYXEC41P33W2XWZYI2N6CY' where id=8; -update noar tt set b0='FJK1' where id=8; -update noar ti set b0='FJK1' where id=8; -update noar tt set v0='TE5GSCMLV5PKNJ3B13WGF8RK05W7W8' where id=8; -update noar ti set v0='TE5GSCMLV5PKNJ3B13WGF8RK05W7W8' where id=8; -update noar tt set b1='2B73K2TKEKVKMHWY792Y9CMA1BBD2' where id=8; -update noar ti set b1='2B73K2TKEKVKMHWY792Y9CMA1BBD2' where id=8; -update noar tt set v0='39PVX0HHATHKDLJ7BV3D75' where id=8; -update noar ti set v0='39PVX0HHATHKDLJ7BV3D75' where id=8; -update noar tt set b2='YENGFU8QCGABF37P6YQ' where id=8; -update noar ti set b2='YENGFU8QCGABF37P6YQ' where id=8; -update noar tt set v0='4J49JA6L5KPL9R' where id=9; -update noar ti set v0='4J49JA6L5KPL9R' where id=9; -update noar tt set b0='DGRUSPJ6A4KYKJG06U6PRTCGUXFCPB' where id=9; -update noar ti set b0='DGRUSPJ6A4KYKJG06U6PRTCGUXFCPB' where id=9; -update noar tt set v0='4LQNA9H5Q3L9' where id=9; -update noar ti set v0='4LQNA9H5Q3L9' where id=9; -update noar tt set b1='66Q' where id=9; -update noar ti set b1='66Q' where id=9; -update noar tt set v0='XUOSFGAY3OVRM9OTN23RMN8Y414JD4O' where id=9; -update noar ti set v0='XUOSFGAY3OVRM9OTN23RMN8Y414JD4O' where id=9; -update noar tt set b2='OJWREDX80X5SJIF6V5YMH1NS8JYE' where id=9; -update noar ti set b2='OJWREDX80X5SJIF6V5YMH1NS8JYE' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -v0 varchar(256) not null, -b0 longblob not null, -b1 blob not null, -b2 blob not null -) engine=tokudb; -insert into tt values (1,'','','',''); -insert into tt values (2,'','','',''); -insert into tt values (3,'','','',''); -insert into tt values (4,'','','',''); -insert into tt values (5,'','','',''); -insert into tt values (6,'','','',''); -insert into tt values (7,'','','',''); -insert into tt values (8,'','','',''); -insert into tt values (9,'','','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='U8SIJCI4YPN' where id=1; -update noar ti set v0='U8SIJCI4YPN' where id=1; -update noar tt set b0='LUUD2PD3YOV3R94BS5W1DO9K12W5RDKV' where id=1; -update noar ti set b0='LUUD2PD3YOV3R94BS5W1DO9K12W5RDKV' where id=1; -update noar tt set v0='0OO' where id=1; -update noar ti set v0='0OO' where id=1; -update noar tt set b1='8S7HWXRE3UJ' where id=1; -update noar ti set b1='8S7HWXRE3UJ' where id=1; -update noar tt set v0='F69OSZO1FRATRYPHY' where id=1; -update noar ti set v0='F69OSZO1FRATRYPHY' where id=1; -update noar tt set b2='3OJKVJMBXNAP5REGHZ0DLQWD' where id=1; -update noar ti set b2='3OJKVJMBXNAP5REGHZ0DLQWD' where id=1; -update noar tt set v0='LNT4C43E05EMHJF5SQL' where id=2; -update noar ti set v0='LNT4C43E05EMHJF5SQL' where id=2; -update noar tt set b0='8D8TJ5S6GOSVBJGVTQ2A63W8IPM' where id=2; -update noar ti set b0='8D8TJ5S6GOSVBJGVTQ2A63W8IPM' where id=2; -update noar tt set v0='G3H3MNG8J323QA2YHF' where id=2; -update noar ti set v0='G3H3MNG8J323QA2YHF' where id=2; -update noar tt set b1='54GZX2XF609LF0SABF8Q' where id=2; -update noar ti set b1='54GZX2XF609LF0SABF8Q' where id=2; -update noar tt set v0='ZUIWP20Y7GQ5T2SM4' where id=2; -update noar ti set v0='ZUIWP20Y7GQ5T2SM4' where id=2; -update noar tt set b2='7V3L5A6' where id=2; -update noar ti set b2='7V3L5A6' where id=2; -update noar tt set v0='XMA0JT04TAN3QHZT' where id=3; -update noar ti set v0='XMA0JT04TAN3QHZT' where id=3; -update noar tt set b0='44V9O8FYYD3SVVLT0IM2K7TQ1DNI1QU' where id=3; -update noar ti set b0='44V9O8FYYD3SVVLT0IM2K7TQ1DNI1QU' where id=3; -update noar tt set v0='1XUTKRMRDOZLIQC3A' where id=3; -update noar ti set v0='1XUTKRMRDOZLIQC3A' where id=3; -update noar tt set b1='F9FQ6VL0QL3KVD3AO1IF' where id=3; -update noar ti set b1='F9FQ6VL0QL3KVD3AO1IF' where id=3; -update noar tt set v0='FSHR80K' where id=3; -update noar ti set v0='FSHR80K' where id=3; -update noar tt set b2='7TO2YG04OPGWF62IOJ81VUM' where id=3; -update noar ti set b2='7TO2YG04OPGWF62IOJ81VUM' where id=3; -update noar tt set v0='9QY2JTEJBS5M0TSC3O' where id=4; -update noar ti set v0='9QY2JTEJBS5M0TSC3O' where id=4; -update noar tt set b0='6N4D0L4CY' where id=4; -update noar ti set b0='6N4D0L4CY' where id=4; -update noar tt set v0='WF8HQI7QUD44JRD3LQ3B2IL' where id=4; -update noar ti set v0='WF8HQI7QUD44JRD3LQ3B2IL' where id=4; -update noar tt set b1='ZO8RGJ0YX2JJLWUMCGEXXKLA98' where id=4; -update noar ti set b1='ZO8RGJ0YX2JJLWUMCGEXXKLA98' where id=4; -update noar tt set v0='5ISQS21S9' where id=4; -update noar ti set v0='5ISQS21S9' where id=4; -update noar tt set b2='NCHX55606AEWAK0P1TUUG34VKJ' where id=4; -update noar ti set b2='NCHX55606AEWAK0P1TUUG34VKJ' where id=4; -update noar tt set v0='JX4C84CT' where id=5; -update noar ti set v0='JX4C84CT' where id=5; -update noar tt set b0='OPCLKHTRB35DAZIV4RC7Q' where id=5; -update noar ti set b0='OPCLKHTRB35DAZIV4RC7Q' where id=5; -update noar tt set v0='ZAO9' where id=5; -update noar ti set v0='ZAO9' where id=5; -update noar tt set b1='6CK27' where id=5; -update noar ti set b1='6CK27' where id=5; -update noar tt set v0='HZTQ1M' where id=5; -update noar ti set v0='HZTQ1M' where id=5; -update noar tt set b2='LQOPPSUAE0MEZMCR4J1X9ADRQJQZ4UA3' where id=5; -update noar ti set b2='LQOPPSUAE0MEZMCR4J1X9ADRQJQZ4UA3' where id=5; -update noar tt set v0='4VA3JP' where id=6; -update noar ti set v0='4VA3JP' where id=6; -update noar tt set b0='HEW7B3VU83PUET' where id=6; -update noar ti set b0='HEW7B3VU83PUET' where id=6; -update noar tt set v0='1CMVTZVX3A51D95P4HGURCLTKIAZQ2' where id=6; -update noar ti set v0='1CMVTZVX3A51D95P4HGURCLTKIAZQ2' where id=6; -update noar tt set b1='GCGDIH86ZJK351PYI' where id=6; -update noar ti set b1='GCGDIH86ZJK351PYI' where id=6; -update noar tt set v0='JCLYLMSAE' where id=6; -update noar ti set v0='JCLYLMSAE' where id=6; -update noar tt set b2='ESGORQWV' where id=6; -update noar ti set b2='ESGORQWV' where id=6; -update noar tt set v0='LTDNZ4ZY1NR4' where id=7; -update noar ti set v0='LTDNZ4ZY1NR4' where id=7; -update noar tt set b0='9UVL785DID8OZY589FLBIEZYVQANK' where id=7; -update noar ti set b0='9UVL785DID8OZY589FLBIEZYVQANK' where id=7; -update noar tt set v0='YT3SR0TMOP' where id=7; -update noar ti set v0='YT3SR0TMOP' where id=7; -update noar tt set b1='7' where id=7; -update noar ti set b1='7' where id=7; -update noar tt set v0='57HM20P752U1U9CMZ' where id=7; -update noar ti set v0='57HM20P752U1U9CMZ' where id=7; -update noar tt set b2='Z89K24K9MVO9I3G6YG1OYPS' where id=7; -update noar ti set b2='Z89K24K9MVO9I3G6YG1OYPS' where id=7; -update noar tt set v0='ZJVSLN2SL6XTEN6' where id=8; -update noar ti set v0='ZJVSLN2SL6XTEN6' where id=8; -update noar tt set b0='QLX75HLH3SIM1TXF4F2OF' where id=8; -update noar ti set b0='QLX75HLH3SIM1TXF4F2OF' where id=8; -update noar tt set v0='Z' where id=8; -update noar ti set v0='Z' where id=8; -update noar tt set b1='Y9IPFE3BXTAC0UT9HC21ESA1FEX' where id=8; -update noar ti set b1='Y9IPFE3BXTAC0UT9HC21ESA1FEX' where id=8; -update noar tt set v0='F' where id=8; -update noar ti set v0='F' where id=8; -update noar tt set b2='DIYHEXW9PDMCSTXDNR0J95EYOO' where id=8; -update noar ti set b2='DIYHEXW9PDMCSTXDNR0J95EYOO' where id=8; -update noar tt set v0='41PZHYVX' where id=9; -update noar ti set v0='41PZHYVX' where id=9; -update noar tt set b0='K3TX52Z' where id=9; -update noar ti set b0='K3TX52Z' where id=9; -update noar tt set v0='C6' where id=9; -update noar ti set v0='C6' where id=9; -update noar tt set b1='4SM7Y7EPR76ALSJ0MY5RUZIF' where id=9; -update noar ti set b1='4SM7Y7EPR76ALSJ0MY5RUZIF' where id=9; -update noar tt set v0='TXJ5L77OC94B5N6DB7TWE7EV8VSK7' where id=9; -update noar ti set v0='TXJ5L77OC94B5N6DB7TWE7EV8VSK7' where id=9; -update noar tt set b2='MZ4F8BQ8A392YM8ARUV96Q6FKGAAJQH' where id=9; -update noar ti set b2='MZ4F8BQ8A392YM8ARUV96Q6FKGAAJQH' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -v0 varchar(32) null, -b0 longblob null, -b1 blob null, -b2 mediumblob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='TBBF7PNIEY0' where id=1; -update noar ti set v0='TBBF7PNIEY0' where id=1; -update noar tt set b0='LIZNCB0CTAXNQSD93GJ7' where id=1; -update noar ti set b0='LIZNCB0CTAXNQSD93GJ7' where id=1; -update noar tt set v0='K4I1C1C' where id=1; -update noar ti set v0='K4I1C1C' where id=1; -update noar tt set b1='VKP9NE2M88912BMV83E85RKX0' where id=1; -update noar ti set b1='VKP9NE2M88912BMV83E85RKX0' where id=1; -update noar tt set v0='XYPIXPOQCVNTJ' where id=1; -update noar ti set v0='XYPIXPOQCVNTJ' where id=1; -update noar tt set b2='T8ZJH' where id=1; -update noar ti set b2='T8ZJH' where id=1; -update noar tt set v0='YE8WYESMIBLBHOPKDIUIGAPROYKH' where id=2; -update noar ti set v0='YE8WYESMIBLBHOPKDIUIGAPROYKH' where id=2; -update noar tt set b0='2KFS6VVW6KVUQYOZ' where id=2; -update noar ti set b0='2KFS6VVW6KVUQYOZ' where id=2; -update noar tt set v0='6GC1XAWF6HIR2XJ1A4XU70TWWRBVXP' where id=2; -update noar ti set v0='6GC1XAWF6HIR2XJ1A4XU70TWWRBVXP' where id=2; -update noar tt set b1='QC' where id=2; -update noar ti set b1='QC' where id=2; -update noar tt set v0='IP05NF9I79DN9H43C2Y2J9X2' where id=2; -update noar ti set v0='IP05NF9I79DN9H43C2Y2J9X2' where id=2; -update noar tt set b2='AK55K44396UYZA58SF6' where id=2; -update noar ti set b2='AK55K44396UYZA58SF6' where id=2; -update noar tt set v0='BVXN6HK9' where id=3; -update noar ti set v0='BVXN6HK9' where id=3; -update noar tt set b0='JA7WALKHAQOBQFLYSMUZVEZLDVQ' where id=3; -update noar ti set b0='JA7WALKHAQOBQFLYSMUZVEZLDVQ' where id=3; -update noar tt set v0='S2NHOKLWQYMGGKDOZU1BJL' where id=3; -update noar ti set v0='S2NHOKLWQYMGGKDOZU1BJL' where id=3; -update noar tt set b1='E' where id=3; -update noar ti set b1='E' where id=3; -update noar tt set v0='7Z7OVC5XYY9HIRENZ9TR' where id=3; -update noar ti set v0='7Z7OVC5XYY9HIRENZ9TR' where id=3; -update noar tt set b2='M12B16' where id=3; -update noar ti set b2='M12B16' where id=3; -update noar tt set v0='JJ7NM' where id=4; -update noar ti set v0='JJ7NM' where id=4; -update noar tt set b0='5Z1QWAHPXTIZH' where id=4; -update noar ti set b0='5Z1QWAHPXTIZH' where id=4; -update noar tt set v0='5ASWU915ZHUJ6ZAX3' where id=4; -update noar ti set v0='5ASWU915ZHUJ6ZAX3' where id=4; -update noar tt set b1='M' where id=4; -update noar ti set b1='M' where id=4; -update noar tt set v0='35WL482ODFSP' where id=4; -update noar ti set v0='35WL482ODFSP' where id=4; -update noar tt set b2='YKWKLIHSBIDNV1W2W2454M0V4U4' where id=4; -update noar ti set b2='YKWKLIHSBIDNV1W2W2454M0V4U4' where id=4; -update noar tt set v0='49QN' where id=5; -update noar ti set v0='49QN' where id=5; -update noar tt set b0='FSBF' where id=5; -update noar ti set b0='FSBF' where id=5; -update noar tt set v0='M5SHHM4BVPJGHBP2V3WLBH24' where id=5; -update noar ti set v0='M5SHHM4BVPJGHBP2V3WLBH24' where id=5; -update noar tt set b1='XREMAVV3V' where id=5; -update noar ti set b1='XREMAVV3V' where id=5; -update noar tt set v0='Q3JQA1OGH6Z2FT8JMTXLD14HWTHP5Y1K' where id=5; -update noar ti set v0='Q3JQA1OGH6Z2FT8JMTXLD14HWTHP5Y1K' where id=5; -update noar tt set b2='ZLH0PSC738953AXM3' where id=5; -update noar ti set b2='ZLH0PSC738953AXM3' where id=5; -update noar tt set v0='6JEIEWSW5I4U3RBNRPZZIZ' where id=6; -update noar ti set v0='6JEIEWSW5I4U3RBNRPZZIZ' where id=6; -update noar tt set b0='TV6AFZN19FM' where id=6; -update noar ti set b0='TV6AFZN19FM' where id=6; -update noar tt set v0='3WYRVJB726G0' where id=6; -update noar ti set v0='3WYRVJB726G0' where id=6; -update noar tt set b1='BV4LMOJ8J3BMTNX01EYBCKWVXFT' where id=6; -update noar ti set b1='BV4LMOJ8J3BMTNX01EYBCKWVXFT' where id=6; -update noar tt set v0='E104FGTKY7H8SZDGHTNPNF092D1U' where id=6; -update noar ti set v0='E104FGTKY7H8SZDGHTNPNF092D1U' where id=6; -update noar tt set b2='1SCYP805068' where id=6; -update noar ti set b2='1SCYP805068' where id=6; -update noar tt set v0='DJUBO3DUJVAN' where id=7; -update noar ti set v0='DJUBO3DUJVAN' where id=7; -update noar tt set b0='Y8KMOF2FA55NBO0FYWT5O6' where id=7; -update noar ti set b0='Y8KMOF2FA55NBO0FYWT5O6' where id=7; -update noar tt set v0='CTRS5FX94HLNNDS2ICS' where id=7; -update noar ti set v0='CTRS5FX94HLNNDS2ICS' where id=7; -update noar tt set b1='FVHURWB1WUVU0Z9AD' where id=7; -update noar ti set b1='FVHURWB1WUVU0Z9AD' where id=7; -update noar tt set v0='AY' where id=7; -update noar ti set v0='AY' where id=7; -update noar tt set b2='3YMPHT51' where id=7; -update noar ti set b2='3YMPHT51' where id=7; -update noar tt set v0='Y2N8IHBQANWG9IL091D5Q7V2' where id=8; -update noar ti set v0='Y2N8IHBQANWG9IL091D5Q7V2' where id=8; -update noar tt set b0='561GQ1WTR5JUT4' where id=8; -update noar ti set b0='561GQ1WTR5JUT4' where id=8; -update noar tt set v0='CRDDPT6' where id=8; -update noar ti set v0='CRDDPT6' where id=8; -update noar tt set b1='CVI35ZHTANAXT9H0PX75BSACUJXW2Y' where id=8; -update noar ti set b1='CVI35ZHTANAXT9H0PX75BSACUJXW2Y' where id=8; -update noar tt set v0='E83T4C3AGAUEE8CA' where id=8; -update noar ti set v0='E83T4C3AGAUEE8CA' where id=8; -update noar tt set b2='PQEKJUKB6BG46N' where id=8; -update noar ti set b2='PQEKJUKB6BG46N' where id=8; -update noar tt set v0='QQLMPUZ48F2MKG57Y' where id=9; -update noar ti set v0='QQLMPUZ48F2MKG57Y' where id=9; -update noar tt set b0='57KJMENX6Q' where id=9; -update noar ti set b0='57KJMENX6Q' where id=9; -update noar tt set v0='DAVGGNCD6JCDDOGEERRU4540YEOABUQ' where id=9; -update noar ti set v0='DAVGGNCD6JCDDOGEERRU4540YEOABUQ' where id=9; -update noar tt set b1='7' where id=9; -update noar ti set b1='7' where id=9; -update noar tt set v0='E4' where id=9; -update noar ti set v0='E4' where id=9; -update noar tt set b2='VKGRLTTFLDRFU9YEF6HCINXBIKZY75O' where id=9; -update noar ti set b2='VKGRLTTFLDRFU9YEF6HCINXBIKZY75O' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -v0 varchar(256) null, -b0 longblob null, -b1 blob null, -b2 mediumblob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='2E' where id=1; -update noar ti set v0='2E' where id=1; -update noar tt set b0='53TK1A4LL' where id=1; -update noar ti set b0='53TK1A4LL' where id=1; -update noar tt set v0='9M5M4WWJUM' where id=1; -update noar ti set v0='9M5M4WWJUM' where id=1; -update noar tt set b1='SI6NYL' where id=1; -update noar ti set b1='SI6NYL' where id=1; -update noar tt set v0='73CKDYI3UC8I0GCN48UT9DEH3GOY6C37' where id=1; -update noar ti set v0='73CKDYI3UC8I0GCN48UT9DEH3GOY6C37' where id=1; -update noar tt set b2='87CERJODG11T5I7XLZ67' where id=1; -update noar ti set b2='87CERJODG11T5I7XLZ67' where id=1; -update noar tt set v0='325DYXA87X2WCVXI8RQBA8' where id=2; -update noar ti set v0='325DYXA87X2WCVXI8RQBA8' where id=2; -update noar tt set b0='9DB4O5F174YRU70V3' where id=2; -update noar ti set b0='9DB4O5F174YRU70V3' where id=2; -update noar tt set v0='Y7UVP66MTMRMDDQTOFOQG7BG7HV' where id=2; -update noar ti set v0='Y7UVP66MTMRMDDQTOFOQG7BG7HV' where id=2; -update noar tt set b1='D8D6D8ZJANJ3DOUMUXC6SKX1EF' where id=2; -update noar ti set b1='D8D6D8ZJANJ3DOUMUXC6SKX1EF' where id=2; -update noar tt set v0='W5I' where id=2; -update noar ti set v0='W5I' where id=2; -update noar tt set b2='C' where id=2; -update noar ti set b2='C' where id=2; -update noar tt set v0='0CRRFIUSG5FX' where id=3; -update noar ti set v0='0CRRFIUSG5FX' where id=3; -update noar tt set b0='IHB' where id=3; -update noar ti set b0='IHB' where id=3; -update noar tt set v0='CSBDFFO4K26WX6A1O497YZCG1IFYM0H' where id=3; -update noar ti set v0='CSBDFFO4K26WX6A1O497YZCG1IFYM0H' where id=3; -update noar tt set b1='0WDTQ8990ONKBIZX90XL7Z85BFUHGO' where id=3; -update noar ti set b1='0WDTQ8990ONKBIZX90XL7Z85BFUHGO' where id=3; -update noar tt set v0='18AJ7I5ERYTH' where id=3; -update noar ti set v0='18AJ7I5ERYTH' where id=3; -update noar tt set b2='8DQ9V' where id=3; -update noar ti set b2='8DQ9V' where id=3; -update noar tt set v0='7EMJX7JTXN3NKZG6Q1LV9VM6Q87' where id=4; -update noar ti set v0='7EMJX7JTXN3NKZG6Q1LV9VM6Q87' where id=4; -update noar tt set b0='BFBZOC5JPDFE' where id=4; -update noar ti set b0='BFBZOC5JPDFE' where id=4; -update noar tt set v0='LKCVPSETW2YZ8GG6BTZC' where id=4; -update noar ti set v0='LKCVPSETW2YZ8GG6BTZC' where id=4; -update noar tt set b1='M' where id=4; -update noar ti set b1='M' where id=4; -update noar tt set v0='PHQTBXBOD0M14DII' where id=4; -update noar ti set v0='PHQTBXBOD0M14DII' where id=4; -update noar tt set b2='OHQHP6YE' where id=4; -update noar ti set b2='OHQHP6YE' where id=4; -update noar tt set v0='J6S2OAVLBQXOF2' where id=5; -update noar ti set v0='J6S2OAVLBQXOF2' where id=5; -update noar tt set b0='LF8KZHUOLIMPORVU' where id=5; -update noar ti set b0='LF8KZHUOLIMPORVU' where id=5; -update noar tt set v0='FAP2FZOKQPPUB2J' where id=5; -update noar ti set v0='FAP2FZOKQPPUB2J' where id=5; -update noar tt set b1='R3GYXMU' where id=5; -update noar ti set b1='R3GYXMU' where id=5; -update noar tt set v0='1DMYKJB5SUQHGBKI5QCMM' where id=5; -update noar ti set v0='1DMYKJB5SUQHGBKI5QCMM' where id=5; -update noar tt set b2='1C7TCKJTE73L' where id=5; -update noar ti set b2='1C7TCKJTE73L' where id=5; -update noar tt set v0='QXY' where id=6; -update noar ti set v0='QXY' where id=6; -update noar tt set b0='N3P9Y60LA' where id=6; -update noar ti set b0='N3P9Y60LA' where id=6; -update noar tt set v0='KQ9AMGGCUE5PHY75I2' where id=6; -update noar ti set v0='KQ9AMGGCUE5PHY75I2' where id=6; -update noar tt set b1='KQUWJOYEDPXBQ8GR2LMP0LYTHGCB888' where id=6; -update noar ti set b1='KQUWJOYEDPXBQ8GR2LMP0LYTHGCB888' where id=6; -update noar tt set v0='HJX8KQMJKE47VFJ8Q6' where id=6; -update noar ti set v0='HJX8KQMJKE47VFJ8Q6' where id=6; -update noar tt set b2='ITLB5314ATXDPQL4LXS1C' where id=6; -update noar ti set b2='ITLB5314ATXDPQL4LXS1C' where id=6; -update noar tt set v0='IZKXBGF0M6MVF8WZE3HN0GZSOFW' where id=7; -update noar ti set v0='IZKXBGF0M6MVF8WZE3HN0GZSOFW' where id=7; -update noar tt set b0='M1S8GMO1YFTVKBHV3CH0Q6D5J84' where id=7; -update noar ti set b0='M1S8GMO1YFTVKBHV3CH0Q6D5J84' where id=7; -update noar tt set v0='HYBDR079M0RJPBL9V0TNXSJ3MW8' where id=7; -update noar ti set v0='HYBDR079M0RJPBL9V0TNXSJ3MW8' where id=7; -update noar tt set b1='7GOV921001P3QIW4GKG1QDMS2U40XSU0' where id=7; -update noar ti set b1='7GOV921001P3QIW4GKG1QDMS2U40XSU0' where id=7; -update noar tt set v0='I71R32RCD40GV' where id=7; -update noar ti set v0='I71R32RCD40GV' where id=7; -update noar tt set b2='TQ0K1D5CJ4LU5Z3SN1U47MBUTEDVO' where id=7; -update noar ti set b2='TQ0K1D5CJ4LU5Z3SN1U47MBUTEDVO' where id=7; -update noar tt set v0='W3JKQCMP1OGINQY2VO00MXBS0GHKNUX' where id=8; -update noar ti set v0='W3JKQCMP1OGINQY2VO00MXBS0GHKNUX' where id=8; -update noar tt set b0='ZBNA0TCRCEB' where id=8; -update noar ti set b0='ZBNA0TCRCEB' where id=8; -update noar tt set v0='JDJZEAESVWDVDTYRH2XB0' where id=8; -update noar ti set v0='JDJZEAESVWDVDTYRH2XB0' where id=8; -update noar tt set b1='LVF' where id=8; -update noar ti set b1='LVF' where id=8; -update noar tt set v0='1EKMZOSGE12VJB2ZR3SUJ649X6' where id=8; -update noar ti set v0='1EKMZOSGE12VJB2ZR3SUJ649X6' where id=8; -update noar tt set b2='5LJSMNV0P571P2N' where id=8; -update noar ti set b2='5LJSMNV0P571P2N' where id=8; -update noar tt set v0='3IC11MXCFUN4O5OVS51KUMWF' where id=9; -update noar ti set v0='3IC11MXCFUN4O5OVS51KUMWF' where id=9; -update noar tt set b0='A5O3IP3Y' where id=9; -update noar ti set b0='A5O3IP3Y' where id=9; -update noar tt set v0='BDS' where id=9; -update noar ti set v0='BDS' where id=9; -update noar tt set b1='YVK2RYAMSYJICH85Q0L5KLT' where id=9; -update noar ti set b1='YVK2RYAMSYJICH85Q0L5KLT' where id=9; -update noar tt set v0='GZ31I1069A' where id=9; -update noar ti set v0='GZ31I1069A' where id=9; -update noar tt set b2='1JP3' where id=9; -update noar ti set b2='1JP3' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -v0 varchar(32) not null, -b0 longblob not null, -b1 blob not null, -b2 mediumblob not null -) engine=tokudb; -insert into tt values (1,'','','',''); -insert into tt values (2,'','','',''); -insert into tt values (3,'','','',''); -insert into tt values (4,'','','',''); -insert into tt values (5,'','','',''); -insert into tt values (6,'','','',''); -insert into tt values (7,'','','',''); -insert into tt values (8,'','','',''); -insert into tt values (9,'','','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='UKIJ7HPB54D2N1KW50' where id=1; -update noar ti set v0='UKIJ7HPB54D2N1KW50' where id=1; -update noar tt set b0='KW' where id=1; -update noar ti set b0='KW' where id=1; -update noar tt set v0='NJ5WRQXR2LNP5ZGBPUKODQ4L4RE' where id=1; -update noar ti set v0='NJ5WRQXR2LNP5ZGBPUKODQ4L4RE' where id=1; -update noar tt set b1='KRZT54RUHIIOGBRAZ7Q0' where id=1; -update noar ti set b1='KRZT54RUHIIOGBRAZ7Q0' where id=1; -update noar tt set v0='G9UB9LVW5C' where id=1; -update noar ti set v0='G9UB9LVW5C' where id=1; -update noar tt set b2='594RGPUQ6738NEZAGTG5ZEMBKY9' where id=1; -update noar ti set b2='594RGPUQ6738NEZAGTG5ZEMBKY9' where id=1; -update noar tt set v0='V2C' where id=2; -update noar ti set v0='V2C' where id=2; -update noar tt set b0='DZC6NFZW023RZPJEF8K9VBHN98FAV5O' where id=2; -update noar ti set b0='DZC6NFZW023RZPJEF8K9VBHN98FAV5O' where id=2; -update noar tt set v0='UOOBPBV53' where id=2; -update noar ti set v0='UOOBPBV53' where id=2; -update noar tt set b1='BW41MYTU2E4BGDJN6Z' where id=2; -update noar ti set b1='BW41MYTU2E4BGDJN6Z' where id=2; -update noar tt set v0='WN43Z4AAZ80W' where id=2; -update noar ti set v0='WN43Z4AAZ80W' where id=2; -update noar tt set b2='JTTYK3QVHHBGWYAIGC504FOZS1XJ5' where id=2; -update noar ti set b2='JTTYK3QVHHBGWYAIGC504FOZS1XJ5' where id=2; -update noar tt set v0='MI1KT' where id=3; -update noar ti set v0='MI1KT' where id=3; -update noar tt set b0='T1TJOALQQWM' where id=3; -update noar ti set b0='T1TJOALQQWM' where id=3; -update noar tt set v0='AIH6PR41ICGZ0BAE0SA77EL7NBC' where id=3; -update noar ti set v0='AIH6PR41ICGZ0BAE0SA77EL7NBC' where id=3; -update noar tt set b1='NVK6IIORGFBKG0WXRBCYR6H7R' where id=3; -update noar ti set b1='NVK6IIORGFBKG0WXRBCYR6H7R' where id=3; -update noar tt set v0='RMYFIPHXLDMHHILLDGR0PXLZVR' where id=3; -update noar ti set v0='RMYFIPHXLDMHHILLDGR0PXLZVR' where id=3; -update noar tt set b2='C5F6RJ4WPUT6FQOSS2GNJNSR78G9PAL' where id=3; -update noar ti set b2='C5F6RJ4WPUT6FQOSS2GNJNSR78G9PAL' where id=3; -update noar tt set v0='U8WK8TM6IN9TVFWFZG' where id=4; -update noar ti set v0='U8WK8TM6IN9TVFWFZG' where id=4; -update noar tt set b0='9MRBJDYNZVMB4J11DAKEPPNP' where id=4; -update noar ti set b0='9MRBJDYNZVMB4J11DAKEPPNP' where id=4; -update noar tt set v0='IV64YL7ONEJKS10H58UTIOJL' where id=4; -update noar ti set v0='IV64YL7ONEJKS10H58UTIOJL' where id=4; -update noar tt set b1='DMCKOREFOHPURS2JQ9AV4OL81QU8' where id=4; -update noar ti set b1='DMCKOREFOHPURS2JQ9AV4OL81QU8' where id=4; -update noar tt set v0='NDQVS4VMYAKX4NIX6AXBUQ0' where id=4; -update noar ti set v0='NDQVS4VMYAKX4NIX6AXBUQ0' where id=4; -update noar tt set b2='ZFL89395OILU1ENGJAAM' where id=4; -update noar ti set b2='ZFL89395OILU1ENGJAAM' where id=4; -update noar tt set v0='9KP9F90F8VOV' where id=5; -update noar ti set v0='9KP9F90F8VOV' where id=5; -update noar tt set b0='QAD1TZ3G4VR7E' where id=5; -update noar ti set b0='QAD1TZ3G4VR7E' where id=5; -update noar tt set v0='8EI150DNY1QNF7SX1384HTPF3IAHG' where id=5; -update noar ti set v0='8EI150DNY1QNF7SX1384HTPF3IAHG' where id=5; -update noar tt set b1='7AG7O3IW9SNK3CDRARU' where id=5; -update noar ti set b1='7AG7O3IW9SNK3CDRARU' where id=5; -update noar tt set v0='93DY8PIEHIYBNW5N78HC' where id=5; -update noar ti set v0='93DY8PIEHIYBNW5N78HC' where id=5; -update noar tt set b2='VTTT398NHC5TFATK5SUJ63EJYTJU2' where id=5; -update noar ti set b2='VTTT398NHC5TFATK5SUJ63EJYTJU2' where id=5; -update noar tt set v0='9V6CUWYXLJZJF44AEC0XCRWD512TWK0I' where id=6; -update noar ti set v0='9V6CUWYXLJZJF44AEC0XCRWD512TWK0I' where id=6; -update noar tt set b0='FB37HKBDAKD23ZZZP4Z3' where id=6; -update noar ti set b0='FB37HKBDAKD23ZZZP4Z3' where id=6; -update noar tt set v0='TP2MLYK14IH5S1D' where id=6; -update noar ti set v0='TP2MLYK14IH5S1D' where id=6; -update noar tt set b1='ZVINAO1EA36KB46D5YXHJ0' where id=6; -update noar ti set b1='ZVINAO1EA36KB46D5YXHJ0' where id=6; -update noar tt set v0='MZVUTNW246M40QX3XD5FSJPUO8N9WKAV' where id=6; -update noar ti set v0='MZVUTNW246M40QX3XD5FSJPUO8N9WKAV' where id=6; -update noar tt set b2='SMKR3N' where id=6; -update noar ti set b2='SMKR3N' where id=6; -update noar tt set v0='X8W4YF0191NKRO2AFAU' where id=7; -update noar ti set v0='X8W4YF0191NKRO2AFAU' where id=7; -update noar tt set b0='INQYC21Z2TF58QRQ3A89GSB5' where id=7; -update noar ti set b0='INQYC21Z2TF58QRQ3A89GSB5' where id=7; -update noar tt set v0='KXUIANCEXBWSL3FP4SGU' where id=7; -update noar ti set v0='KXUIANCEXBWSL3FP4SGU' where id=7; -update noar tt set b1='8RQKOE8FYOHIWA8WB' where id=7; -update noar ti set b1='8RQKOE8FYOHIWA8WB' where id=7; -update noar tt set v0='7QMZAYZ36FVC5F87' where id=7; -update noar ti set v0='7QMZAYZ36FVC5F87' where id=7; -update noar tt set b2='OIIPOOKV7ZZKR7HURPAL1MUL9PCZW40' where id=7; -update noar ti set b2='OIIPOOKV7ZZKR7HURPAL1MUL9PCZW40' where id=7; -update noar tt set v0='RZQQHZW1DQMN0JWXX8U4CFXZR9B89Q' where id=8; -update noar ti set v0='RZQQHZW1DQMN0JWXX8U4CFXZR9B89Q' where id=8; -update noar tt set b0='UC4N0WU3TCLB74I30FOWNMJQPPMUF50C' where id=8; -update noar ti set b0='UC4N0WU3TCLB74I30FOWNMJQPPMUF50C' where id=8; -update noar tt set v0='K1ZTD89TLKK103E09C8Q7' where id=8; -update noar ti set v0='K1ZTD89TLKK103E09C8Q7' where id=8; -update noar tt set b1='12NDKZ9HL' where id=8; -update noar ti set b1='12NDKZ9HL' where id=8; -update noar tt set v0='A442U8OULC7M2T5UB7416KL' where id=8; -update noar ti set v0='A442U8OULC7M2T5UB7416KL' where id=8; -update noar tt set b2='7ZJE82EX9XK7DL6L' where id=8; -update noar ti set b2='7ZJE82EX9XK7DL6L' where id=8; -update noar tt set v0='VOSU04MMOBI3009UXCM5' where id=9; -update noar ti set v0='VOSU04MMOBI3009UXCM5' where id=9; -update noar tt set b0='PRKEEUBGOTXA3' where id=9; -update noar ti set b0='PRKEEUBGOTXA3' where id=9; -update noar tt set v0='E32NQOLSN3KUSOTNNQ' where id=9; -update noar ti set v0='E32NQOLSN3KUSOTNNQ' where id=9; -update noar tt set b1='345AT8LGSTZVN4HTUJ2LM' where id=9; -update noar ti set b1='345AT8LGSTZVN4HTUJ2LM' where id=9; -update noar tt set v0='3IORRAI29CW97PMBOGPPDM29WOOD7' where id=9; -update noar ti set v0='3IORRAI29CW97PMBOGPPDM29WOOD7' where id=9; -update noar tt set b2='161CVACR' where id=9; -update noar ti set b2='161CVACR' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -v0 varchar(256) not null, -b0 longblob not null, -b1 blob not null, -b2 mediumblob not null -) engine=tokudb; -insert into tt values (1,'','','',''); -insert into tt values (2,'','','',''); -insert into tt values (3,'','','',''); -insert into tt values (4,'','','',''); -insert into tt values (5,'','','',''); -insert into tt values (6,'','','',''); -insert into tt values (7,'','','',''); -insert into tt values (8,'','','',''); -insert into tt values (9,'','','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='S3WGRYWS1JL87K' where id=1; -update noar ti set v0='S3WGRYWS1JL87K' where id=1; -update noar tt set b0='ANUIZ2NNTQBUDA0T88L2RYZ44Q' where id=1; -update noar ti set b0='ANUIZ2NNTQBUDA0T88L2RYZ44Q' where id=1; -update noar tt set v0='E7KQ4DM76T29VJKJM' where id=1; -update noar ti set v0='E7KQ4DM76T29VJKJM' where id=1; -update noar tt set b1='RWPL' where id=1; -update noar ti set b1='RWPL' where id=1; -update noar tt set v0='L2ZEPTEO5LZID0SQTCPXODL6CB1RU' where id=1; -update noar ti set v0='L2ZEPTEO5LZID0SQTCPXODL6CB1RU' where id=1; -update noar tt set b2='M' where id=1; -update noar ti set b2='M' where id=1; -update noar tt set v0='605452XQRHQ' where id=2; -update noar ti set v0='605452XQRHQ' where id=2; -update noar tt set b0='S2Y1GNILERW5BX' where id=2; -update noar ti set b0='S2Y1GNILERW5BX' where id=2; -update noar tt set v0='322C' where id=2; -update noar ti set v0='322C' where id=2; -update noar tt set b1='F2TJ6BN8LP9D2KM8' where id=2; -update noar ti set b1='F2TJ6BN8LP9D2KM8' where id=2; -update noar tt set v0='JWR0IFLLBS' where id=2; -update noar ti set v0='JWR0IFLLBS' where id=2; -update noar tt set b2='6SLGPDR64QH1ZXQZQCX0EK564TH8SA' where id=2; -update noar ti set b2='6SLGPDR64QH1ZXQZQCX0EK564TH8SA' where id=2; -update noar tt set v0='6W' where id=3; -update noar ti set v0='6W' where id=3; -update noar tt set b0='Q3RL2U' where id=3; -update noar ti set b0='Q3RL2U' where id=3; -update noar tt set v0='LPGJ8XWM69B14YMLR' where id=3; -update noar ti set v0='LPGJ8XWM69B14YMLR' where id=3; -update noar tt set b1='GHQS7QEWEO9XE91UI4CB' where id=3; -update noar ti set b1='GHQS7QEWEO9XE91UI4CB' where id=3; -update noar tt set v0='H98TAFAKTIEGX' where id=3; -update noar ti set v0='H98TAFAKTIEGX' where id=3; -update noar tt set b2='1ET6ADIAABFH4L6B2AMYKYXWDQJROJ' where id=3; -update noar ti set b2='1ET6ADIAABFH4L6B2AMYKYXWDQJROJ' where id=3; -update noar tt set v0='U59L' where id=4; -update noar ti set v0='U59L' where id=4; -update noar tt set b0='0Y4JKSE8450D8SFL0' where id=4; -update noar ti set b0='0Y4JKSE8450D8SFL0' where id=4; -update noar tt set v0='29JZ7IN87653YDI9N0EVHEM' where id=4; -update noar ti set v0='29JZ7IN87653YDI9N0EVHEM' where id=4; -update noar tt set b1='QEBZE2HC3NP9U' where id=4; -update noar ti set b1='QEBZE2HC3NP9U' where id=4; -update noar tt set v0='4ED1URIBWQ9W1QQNGCDI' where id=4; -update noar ti set v0='4ED1URIBWQ9W1QQNGCDI' where id=4; -update noar tt set b2='X64F2F9E3JJ73VG68PAF5610O9VG' where id=4; -update noar ti set b2='X64F2F9E3JJ73VG68PAF5610O9VG' where id=4; -update noar tt set v0='TEHPUQ8383CZ6OJFP5CWAMJOFUD2Y47' where id=5; -update noar ti set v0='TEHPUQ8383CZ6OJFP5CWAMJOFUD2Y47' where id=5; -update noar tt set b0='3N1CRKKJVI5298D9PJEVLM8KGBY4N0' where id=5; -update noar ti set b0='3N1CRKKJVI5298D9PJEVLM8KGBY4N0' where id=5; -update noar tt set v0='54CE1XHYTI2ESZW398QWQAMFWDPCVR8' where id=5; -update noar ti set v0='54CE1XHYTI2ESZW398QWQAMFWDPCVR8' where id=5; -update noar tt set b1='2TCB3SDEGTPC4PLVO7J' where id=5; -update noar ti set b1='2TCB3SDEGTPC4PLVO7J' where id=5; -update noar tt set v0='XDVTJAWMK0YE3XZ6XT' where id=5; -update noar ti set v0='XDVTJAWMK0YE3XZ6XT' where id=5; -update noar tt set b2='5UB' where id=5; -update noar ti set b2='5UB' where id=5; -update noar tt set v0='P6WMWYCTZP8YC4S8FQ507W8R0GB' where id=6; -update noar ti set v0='P6WMWYCTZP8YC4S8FQ507W8R0GB' where id=6; -update noar tt set b0='XZU1SQ8YNN5JQBUK8PBDBRD9JDECQ' where id=6; -update noar ti set b0='XZU1SQ8YNN5JQBUK8PBDBRD9JDECQ' where id=6; -update noar tt set v0='JPQKP7HBTIRYC' where id=6; -update noar ti set v0='JPQKP7HBTIRYC' where id=6; -update noar tt set b1='HFTW8L0K' where id=6; -update noar ti set b1='HFTW8L0K' where id=6; -update noar tt set v0='9P79B8HRRW3IUKCP5G99YSUQ4BP2' where id=6; -update noar ti set v0='9P79B8HRRW3IUKCP5G99YSUQ4BP2' where id=6; -update noar tt set b2='Z8EI0HHMDU6M3176YYAWE89GFZ67ILN' where id=6; -update noar ti set b2='Z8EI0HHMDU6M3176YYAWE89GFZ67ILN' where id=6; -update noar tt set v0='R598N0WNNKZZ81MBQRR24WNEA83O' where id=7; -update noar ti set v0='R598N0WNNKZZ81MBQRR24WNEA83O' where id=7; -update noar tt set b0='2AFH2XG7BBE7Y6IMX' where id=7; -update noar ti set b0='2AFH2XG7BBE7Y6IMX' where id=7; -update noar tt set v0='GVL4L966AQCP39HH' where id=7; -update noar ti set v0='GVL4L966AQCP39HH' where id=7; -update noar tt set b1='3J2E90GHY1I' where id=7; -update noar ti set b1='3J2E90GHY1I' where id=7; -update noar tt set v0='3X4DERQ' where id=7; -update noar ti set v0='3X4DERQ' where id=7; -update noar tt set b2='MM7GCW7Z' where id=7; -update noar ti set b2='MM7GCW7Z' where id=7; -update noar tt set v0='2PRWPXXB29I5SFMRK6TZGMFUO6A' where id=8; -update noar ti set v0='2PRWPXXB29I5SFMRK6TZGMFUO6A' where id=8; -update noar tt set b0='RBRB9N9AK3LIWEJ9GVC7J1YIM' where id=8; -update noar ti set b0='RBRB9N9AK3LIWEJ9GVC7J1YIM' where id=8; -update noar tt set v0='W7THSP2D4K54RG8HJQNT12C' where id=8; -update noar ti set v0='W7THSP2D4K54RG8HJQNT12C' where id=8; -update noar tt set b1='GCH5CYW' where id=8; -update noar ti set b1='GCH5CYW' where id=8; -update noar tt set v0='F167WCWWYOFOPQH' where id=8; -update noar ti set v0='F167WCWWYOFOPQH' where id=8; -update noar tt set b2='29TW1DGZW3FNCA93VWNZBHOO5JP2Y' where id=8; -update noar ti set b2='29TW1DGZW3FNCA93VWNZBHOO5JP2Y' where id=8; -update noar tt set v0='O' where id=9; -update noar ti set v0='O' where id=9; -update noar tt set b0='OG8ZGD0CPFLSP' where id=9; -update noar ti set b0='OG8ZGD0CPFLSP' where id=9; -update noar tt set v0='FDP6R52NMT' where id=9; -update noar ti set v0='FDP6R52NMT' where id=9; -update noar tt set b1='2JRMGMPX3AYRI' where id=9; -update noar ti set b1='2JRMGMPX3AYRI' where id=9; -update noar tt set v0='DRFZVY2L5Y203E1S7S0VJSMVTXQUZGD' where id=9; -update noar ti set v0='DRFZVY2L5Y203E1S7S0VJSMVTXQUZGD' where id=9; -update noar tt set b2='KDVOG4LMBEQ3032BXUC7AYZD7GUHVGD' where id=9; -update noar ti set b2='KDVOG4LMBEQ3032BXUC7AYZD7GUHVGD' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -v0 varchar(32) null, -b0 longblob null, -b1 blob null, -b2 longblob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='FSW75BDDV1PMV3X986QWXKR7AAV5' where id=1; -update noar ti set v0='FSW75BDDV1PMV3X986QWXKR7AAV5' where id=1; -update noar tt set b0='JC' where id=1; -update noar ti set b0='JC' where id=1; -update noar tt set v0='ZM8X0DQAI5MOT7AYWG' where id=1; -update noar ti set v0='ZM8X0DQAI5MOT7AYWG' where id=1; -update noar tt set b1='BIAGAZJAG9T3IZME688IXY' where id=1; -update noar ti set b1='BIAGAZJAG9T3IZME688IXY' where id=1; -update noar tt set v0='RBWDFY62NS8ESMSRWIHEKNU32W10W5A0' where id=1; -update noar ti set v0='RBWDFY62NS8ESMSRWIHEKNU32W10W5A0' where id=1; -update noar tt set b2='YU4VQ3N1069EAP3IV' where id=1; -update noar ti set b2='YU4VQ3N1069EAP3IV' where id=1; -update noar tt set v0='JLGE7GCYFIRI3S2UWXFQ9VGKX9QUXIKM' where id=2; -update noar ti set v0='JLGE7GCYFIRI3S2UWXFQ9VGKX9QUXIKM' where id=2; -update noar tt set b0='YWG77Z4Y8HG7NBJ7WMR9O419X' where id=2; -update noar ti set b0='YWG77Z4Y8HG7NBJ7WMR9O419X' where id=2; -update noar tt set v0='T6DOCH0A0TRCYV' where id=2; -update noar ti set v0='T6DOCH0A0TRCYV' where id=2; -update noar tt set b1='ZHNETGL9ZN' where id=2; -update noar ti set b1='ZHNETGL9ZN' where id=2; -update noar tt set v0='L' where id=2; -update noar ti set v0='L' where id=2; -update noar tt set b2='GAPSO5HXJGKYSKKIEUMWV7ZZ9219' where id=2; -update noar ti set b2='GAPSO5HXJGKYSKKIEUMWV7ZZ9219' where id=2; -update noar tt set v0='ZZYZSKSWF50Z9WZS2IAOGBI5EN3' where id=3; -update noar ti set v0='ZZYZSKSWF50Z9WZS2IAOGBI5EN3' where id=3; -update noar tt set b0='CEVM974G1P0718EJ' where id=3; -update noar ti set b0='CEVM974G1P0718EJ' where id=3; -update noar tt set v0='H5S2ATW7C98DF9RPMMWL' where id=3; -update noar ti set v0='H5S2ATW7C98DF9RPMMWL' where id=3; -update noar tt set b1='X3JXFAX2M7COBCK9U4CCKD99ECDP' where id=3; -update noar ti set b1='X3JXFAX2M7COBCK9U4CCKD99ECDP' where id=3; -update noar tt set v0='MQYJ1XKFJ3PFPX9PGOL0E36W2L' where id=3; -update noar ti set v0='MQYJ1XKFJ3PFPX9PGOL0E36W2L' where id=3; -update noar tt set b2='R11FH6OGNN1AHWZQPMTIK' where id=3; -update noar ti set b2='R11FH6OGNN1AHWZQPMTIK' where id=3; -update noar tt set v0='GSQYPZWE4L5TG49FU0DM' where id=4; -update noar ti set v0='GSQYPZWE4L5TG49FU0DM' where id=4; -update noar tt set b0='Q9DU6YVORIO1Y7CLLZ4GSWQNYK' where id=4; -update noar ti set b0='Q9DU6YVORIO1Y7CLLZ4GSWQNYK' where id=4; -update noar tt set v0='A9GWMMIWZTFMXTENV05FGQ8SPVHOKL' where id=4; -update noar ti set v0='A9GWMMIWZTFMXTENV05FGQ8SPVHOKL' where id=4; -update noar tt set b1='SLG1MM87DROCQHN6PNHLLJIURHVQ0' where id=4; -update noar ti set b1='SLG1MM87DROCQHN6PNHLLJIURHVQ0' where id=4; -update noar tt set v0='N3Z42UT2SOFRQDGMC' where id=4; -update noar ti set v0='N3Z42UT2SOFRQDGMC' where id=4; -update noar tt set b2='FLMV1FQD64ILB3I0YELHQSPDAI9P4D5L' where id=4; -update noar ti set b2='FLMV1FQD64ILB3I0YELHQSPDAI9P4D5L' where id=4; -update noar tt set v0='ICLDS9J7TVOZ1' where id=5; -update noar ti set v0='ICLDS9J7TVOZ1' where id=5; -update noar tt set b0='2YGR189L95XJ6TVVLK6MSNI2YYGRL' where id=5; -update noar ti set b0='2YGR189L95XJ6TVVLK6MSNI2YYGRL' where id=5; -update noar tt set v0='YNA9KWNBVFV9I82Q' where id=5; -update noar ti set v0='YNA9KWNBVFV9I82Q' where id=5; -update noar tt set b1='GNOO' where id=5; -update noar ti set b1='GNOO' where id=5; -update noar tt set v0='3PTH' where id=5; -update noar ti set v0='3PTH' where id=5; -update noar tt set b2='NKLRJ6VASBQ' where id=5; -update noar ti set b2='NKLRJ6VASBQ' where id=5; -update noar tt set v0='SX5SX5NVWBO3J380IGRLVCOROGBI4WW' where id=6; -update noar ti set v0='SX5SX5NVWBO3J380IGRLVCOROGBI4WW' where id=6; -update noar tt set b0='B3R0UO2Q2E01PMDF7HZWAU6DKA4' where id=6; -update noar ti set b0='B3R0UO2Q2E01PMDF7HZWAU6DKA4' where id=6; -update noar tt set v0='CR04P4R36D5BQM' where id=6; -update noar ti set v0='CR04P4R36D5BQM' where id=6; -update noar tt set b1='GGIP0U' where id=6; -update noar ti set b1='GGIP0U' where id=6; -update noar tt set v0='CH4HDIAT4GTDC64MQ' where id=6; -update noar ti set v0='CH4HDIAT4GTDC64MQ' where id=6; -update noar tt set b2='FNIBYL9I1S9OXKBFVDO5CXNFEHMC' where id=6; -update noar ti set b2='FNIBYL9I1S9OXKBFVDO5CXNFEHMC' where id=6; -update noar tt set v0='02H' where id=7; -update noar ti set v0='02H' where id=7; -update noar tt set b0='C9E7H5C2EQOT1M' where id=7; -update noar ti set b0='C9E7H5C2EQOT1M' where id=7; -update noar tt set v0='DGFGS07K6DNCPC3MS3R' where id=7; -update noar ti set v0='DGFGS07K6DNCPC3MS3R' where id=7; -update noar tt set b1='Q0XONI3W9' where id=7; -update noar ti set b1='Q0XONI3W9' where id=7; -update noar tt set v0='JLA' where id=7; -update noar ti set v0='JLA' where id=7; -update noar tt set b2='QUTND2Z40XVU6I1374Y7DY4' where id=7; -update noar ti set b2='QUTND2Z40XVU6I1374Y7DY4' where id=7; -update noar tt set v0='8HF' where id=8; -update noar ti set v0='8HF' where id=8; -update noar tt set b0='WORURWAPBVPPGN0NLSM3EL' where id=8; -update noar ti set b0='WORURWAPBVPPGN0NLSM3EL' where id=8; -update noar tt set v0='R39N7LGH4WS7RS9ZUU41JG3' where id=8; -update noar ti set v0='R39N7LGH4WS7RS9ZUU41JG3' where id=8; -update noar tt set b1='WSLC6MIHAXWDH6XOOX1' where id=8; -update noar ti set b1='WSLC6MIHAXWDH6XOOX1' where id=8; -update noar tt set v0='UIVXW' where id=8; -update noar ti set v0='UIVXW' where id=8; -update noar tt set b2='0AS2JR3U946QVNOF9CHDSH1FE7VH' where id=8; -update noar ti set b2='0AS2JR3U946QVNOF9CHDSH1FE7VH' where id=8; -update noar tt set v0='MB75XVQOMALVJ' where id=9; -update noar ti set v0='MB75XVQOMALVJ' where id=9; -update noar tt set b0='2ABLE4QR49JE5JGSOYKXLLH45W' where id=9; -update noar ti set b0='2ABLE4QR49JE5JGSOYKXLLH45W' where id=9; -update noar tt set v0='ICGZHLQCZME9WGX2IEG1J' where id=9; -update noar ti set v0='ICGZHLQCZME9WGX2IEG1J' where id=9; -update noar tt set b1='NHKE4FV419DKF0LRP' where id=9; -update noar ti set b1='NHKE4FV419DKF0LRP' where id=9; -update noar tt set v0='Y276HO0ONEXAVTY' where id=9; -update noar ti set v0='Y276HO0ONEXAVTY' where id=9; -update noar tt set b2='8P6JLX4FO9THEXEKUFG6UUMFWDJZ7DZ8' where id=9; -update noar ti set b2='8P6JLX4FO9THEXEKUFG6UUMFWDJZ7DZ8' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -v0 varchar(256) null, -b0 longblob null, -b1 blob null, -b2 longblob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='L' where id=1; -update noar ti set v0='L' where id=1; -update noar tt set b0='IZDGVD23VNETNGY5XTLCHSPOCD' where id=1; -update noar ti set b0='IZDGVD23VNETNGY5XTLCHSPOCD' where id=1; -update noar tt set v0='UAX9SHXL53IFTHBOF11NIU7VFTQGFLFG' where id=1; -update noar ti set v0='UAX9SHXL53IFTHBOF11NIU7VFTQGFLFG' where id=1; -update noar tt set b1='B8J18ASUR15OQ4T' where id=1; -update noar ti set b1='B8J18ASUR15OQ4T' where id=1; -update noar tt set v0='5RUR2QM26SI' where id=1; -update noar ti set v0='5RUR2QM26SI' where id=1; -update noar tt set b2='8E0EP9Q61EHI5MYY3TJKDG' where id=1; -update noar ti set b2='8E0EP9Q61EHI5MYY3TJKDG' where id=1; -update noar tt set v0='QZYWCD' where id=2; -update noar ti set v0='QZYWCD' where id=2; -update noar tt set b0='BINEM1YJTSUNDCC876' where id=2; -update noar ti set b0='BINEM1YJTSUNDCC876' where id=2; -update noar tt set v0='P' where id=2; -update noar ti set v0='P' where id=2; -update noar tt set b1='7YUUSBRW7A6AT4PW1LX7B03FQ' where id=2; -update noar ti set b1='7YUUSBRW7A6AT4PW1LX7B03FQ' where id=2; -update noar tt set v0='A298' where id=2; -update noar ti set v0='A298' where id=2; -update noar tt set b2='GZYHSDQJQHYALX71VU93L' where id=2; -update noar ti set b2='GZYHSDQJQHYALX71VU93L' where id=2; -update noar tt set v0='D85O7I' where id=3; -update noar ti set v0='D85O7I' where id=3; -update noar tt set b0='CPA8QF9H9UX12KA81' where id=3; -update noar ti set b0='CPA8QF9H9UX12KA81' where id=3; -update noar tt set v0='FICQ84LZJFIP7PYL' where id=3; -update noar ti set v0='FICQ84LZJFIP7PYL' where id=3; -update noar tt set b1='IX3GC' where id=3; -update noar ti set b1='IX3GC' where id=3; -update noar tt set v0='F8BYMYYZK' where id=3; -update noar ti set v0='F8BYMYYZK' where id=3; -update noar tt set b2='DTY2J15TDF6QJ4ASDFHV' where id=3; -update noar ti set b2='DTY2J15TDF6QJ4ASDFHV' where id=3; -update noar tt set v0='JSFK' where id=4; -update noar ti set v0='JSFK' where id=4; -update noar tt set b0='PSGKQCI247AWJF4TYZOCYP2' where id=4; -update noar ti set b0='PSGKQCI247AWJF4TYZOCYP2' where id=4; -update noar tt set v0='CINJSK' where id=4; -update noar ti set v0='CINJSK' where id=4; -update noar tt set b1='71YNP5SHY3ACZ' where id=4; -update noar ti set b1='71YNP5SHY3ACZ' where id=4; -update noar tt set v0='WJ6FJ8ZS0731AKJR6X12SDJY' where id=4; -update noar ti set v0='WJ6FJ8ZS0731AKJR6X12SDJY' where id=4; -update noar tt set b2='RBNY60W2NIO401AZF0JABJS' where id=4; -update noar ti set b2='RBNY60W2NIO401AZF0JABJS' where id=4; -update noar tt set v0='41RSKPVDMZ9TJ2X0Y' where id=5; -update noar ti set v0='41RSKPVDMZ9TJ2X0Y' where id=5; -update noar tt set b0='RST9GQUA12JLRJWYT8SG03' where id=5; -update noar ti set b0='RST9GQUA12JLRJWYT8SG03' where id=5; -update noar tt set v0='SM9M2WFG2UFUPGKQ0BHK28PAVOPMMEDK' where id=5; -update noar ti set v0='SM9M2WFG2UFUPGKQ0BHK28PAVOPMMEDK' where id=5; -update noar tt set b1='JL7D3A5W6DTOSOJT387' where id=5; -update noar ti set b1='JL7D3A5W6DTOSOJT387' where id=5; -update noar tt set v0='G3GRW4A7T7NXYECN9S8' where id=5; -update noar ti set v0='G3GRW4A7T7NXYECN9S8' where id=5; -update noar tt set b2='JP3AP2RV3CHL6NLKH44W' where id=5; -update noar ti set b2='JP3AP2RV3CHL6NLKH44W' where id=5; -update noar tt set v0='HNEGO' where id=6; -update noar ti set v0='HNEGO' where id=6; -update noar tt set b0='U12549GNVN' where id=6; -update noar ti set b0='U12549GNVN' where id=6; -update noar tt set v0='DDL4V8N5D10UKHGOUAU' where id=6; -update noar ti set v0='DDL4V8N5D10UKHGOUAU' where id=6; -update noar tt set b1='B' where id=6; -update noar ti set b1='B' where id=6; -update noar tt set v0='B16NOL74LUGBL13JE9TXN79P64G' where id=6; -update noar ti set v0='B16NOL74LUGBL13JE9TXN79P64G' where id=6; -update noar tt set b2='BBSMZ5LNW9Y01F45U4Y3B3Z1SET8W' where id=6; -update noar ti set b2='BBSMZ5LNW9Y01F45U4Y3B3Z1SET8W' where id=6; -update noar tt set v0='P' where id=7; -update noar ti set v0='P' where id=7; -update noar tt set b0='KB5F87UYEMELU1TV8M6URR' where id=7; -update noar ti set b0='KB5F87UYEMELU1TV8M6URR' where id=7; -update noar tt set v0='VHY5G' where id=7; -update noar ti set v0='VHY5G' where id=7; -update noar tt set b1='XLIK3Q9BEC5CVUVKQEF0' where id=7; -update noar ti set b1='XLIK3Q9BEC5CVUVKQEF0' where id=7; -update noar tt set v0='PGFJOT537HSAX83GK63EIQWD7AFB' where id=7; -update noar ti set v0='PGFJOT537HSAX83GK63EIQWD7AFB' where id=7; -update noar tt set b2='ZGA' where id=7; -update noar ti set b2='ZGA' where id=7; -update noar tt set v0='6FY31V0YF8S9XUBBHQY' where id=8; -update noar ti set v0='6FY31V0YF8S9XUBBHQY' where id=8; -update noar tt set b0='2H6ICYISC3QGBMRQQIDU2Z' where id=8; -update noar ti set b0='2H6ICYISC3QGBMRQQIDU2Z' where id=8; -update noar tt set v0='UMI4K' where id=8; -update noar ti set v0='UMI4K' where id=8; -update noar tt set b1='CF9FSN7IOJ87XMIBTL3E1FQ38Q' where id=8; -update noar ti set b1='CF9FSN7IOJ87XMIBTL3E1FQ38Q' where id=8; -update noar tt set v0='T0IC0011NB' where id=8; -update noar ti set v0='T0IC0011NB' where id=8; -update noar tt set b2='2CLAVM6ICGB6C5GTRN9AHO' where id=8; -update noar ti set b2='2CLAVM6ICGB6C5GTRN9AHO' where id=8; -update noar tt set v0='44YSU3K9RQFOCJO9HDEWVVNA5Z' where id=9; -update noar ti set v0='44YSU3K9RQFOCJO9HDEWVVNA5Z' where id=9; -update noar tt set b0='7Q6D64RGUK3PUY' where id=9; -update noar ti set b0='7Q6D64RGUK3PUY' where id=9; -update noar tt set v0='NZ9IZYIWTQT8XX7EQTGTLO5Z' where id=9; -update noar ti set v0='NZ9IZYIWTQT8XX7EQTGTLO5Z' where id=9; -update noar tt set b1='4' where id=9; -update noar ti set b1='4' where id=9; -update noar tt set v0='QEH2B8FJFGMO4MKY6NL' where id=9; -update noar ti set v0='QEH2B8FJFGMO4MKY6NL' where id=9; -update noar tt set b2='ZU58H9' where id=9; -update noar ti set b2='ZU58H9' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -v0 varchar(32) not null, -b0 longblob not null, -b1 blob not null, -b2 longblob not null -) engine=tokudb; -insert into tt values (1,'','','',''); -insert into tt values (2,'','','',''); -insert into tt values (3,'','','',''); -insert into tt values (4,'','','',''); -insert into tt values (5,'','','',''); -insert into tt values (6,'','','',''); -insert into tt values (7,'','','',''); -insert into tt values (8,'','','',''); -insert into tt values (9,'','','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='DTMX31LT49' where id=1; -update noar ti set v0='DTMX31LT49' where id=1; -update noar tt set b0='PAIW5VX' where id=1; -update noar ti set b0='PAIW5VX' where id=1; -update noar tt set v0='PQ1P3WOVPOAQ09BNOV6' where id=1; -update noar ti set v0='PQ1P3WOVPOAQ09BNOV6' where id=1; -update noar tt set b1='ZNMM2QH8D3' where id=1; -update noar ti set b1='ZNMM2QH8D3' where id=1; -update noar tt set v0='9' where id=1; -update noar ti set v0='9' where id=1; -update noar tt set b2='21EP4CDRGDO3P4GBDYWQEL' where id=1; -update noar ti set b2='21EP4CDRGDO3P4GBDYWQEL' where id=1; -update noar tt set v0='242U6W' where id=2; -update noar ti set v0='242U6W' where id=2; -update noar tt set b0='QY1GS8DC6G4W4TT4EMY3RP8' where id=2; -update noar ti set b0='QY1GS8DC6G4W4TT4EMY3RP8' where id=2; -update noar tt set v0='UHJMZKTNQYM07TR' where id=2; -update noar ti set v0='UHJMZKTNQYM07TR' where id=2; -update noar tt set b1='M' where id=2; -update noar ti set b1='M' where id=2; -update noar tt set v0='XX7JU2EWQCU' where id=2; -update noar ti set v0='XX7JU2EWQCU' where id=2; -update noar tt set b2='W' where id=2; -update noar ti set b2='W' where id=2; -update noar tt set v0='KK2GTOD6G' where id=3; -update noar ti set v0='KK2GTOD6G' where id=3; -update noar tt set b0='JUDSP5NKRSK57OQBR' where id=3; -update noar ti set b0='JUDSP5NKRSK57OQBR' where id=3; -update noar tt set v0='W66TIBKUX60QL3HOBI0AIFL17NW' where id=3; -update noar ti set v0='W66TIBKUX60QL3HOBI0AIFL17NW' where id=3; -update noar tt set b1='LC6D3Z' where id=3; -update noar ti set b1='LC6D3Z' where id=3; -update noar tt set v0='S708Z4E' where id=3; -update noar ti set v0='S708Z4E' where id=3; -update noar tt set b2='2FFK5' where id=3; -update noar ti set b2='2FFK5' where id=3; -update noar tt set v0='PT22MSDN13S6GE' where id=4; -update noar ti set v0='PT22MSDN13S6GE' where id=4; -update noar tt set b0='4H9DYO3EVGG0ERP5CJZDE91F8UU' where id=4; -update noar ti set b0='4H9DYO3EVGG0ERP5CJZDE91F8UU' where id=4; -update noar tt set v0='26AXFZS49ZF004BMLOGMB4PYNEWHA' where id=4; -update noar ti set v0='26AXFZS49ZF004BMLOGMB4PYNEWHA' where id=4; -update noar tt set b1='OBYGYWZJONTEX8GTDKC' where id=4; -update noar ti set b1='OBYGYWZJONTEX8GTDKC' where id=4; -update noar tt set v0='G9ZLLSPV3YKDQZ1X' where id=4; -update noar ti set v0='G9ZLLSPV3YKDQZ1X' where id=4; -update noar tt set b2='F5P74FRS78K4T1L' where id=4; -update noar ti set b2='F5P74FRS78K4T1L' where id=4; -update noar tt set v0='4T5R' where id=5; -update noar ti set v0='4T5R' where id=5; -update noar tt set b0='E9VY137EVTW8VSAKEENN0K1IPR6N' where id=5; -update noar ti set b0='E9VY137EVTW8VSAKEENN0K1IPR6N' where id=5; -update noar tt set v0='IR24U' where id=5; -update noar ti set v0='IR24U' where id=5; -update noar tt set b1='IFQNUF4Q' where id=5; -update noar ti set b1='IFQNUF4Q' where id=5; -update noar tt set v0='QUJBTXTAUP0YHF5C052RYEY4IN9' where id=5; -update noar ti set v0='QUJBTXTAUP0YHF5C052RYEY4IN9' where id=5; -update noar tt set b2='HHL2R52IHN3JS6FU7LKHB7QOB' where id=5; -update noar ti set b2='HHL2R52IHN3JS6FU7LKHB7QOB' where id=5; -update noar tt set v0='VGR1KV1OMROQ65YSRQYHT6ZVW' where id=6; -update noar ti set v0='VGR1KV1OMROQ65YSRQYHT6ZVW' where id=6; -update noar tt set b0='01O9NBGUVH9WNB4S025B1TZ9I' where id=6; -update noar ti set b0='01O9NBGUVH9WNB4S025B1TZ9I' where id=6; -update noar tt set v0='NU1VRWH1BY3XHQ' where id=6; -update noar ti set v0='NU1VRWH1BY3XHQ' where id=6; -update noar tt set b1='P1PBGYABXMC' where id=6; -update noar ti set b1='P1PBGYABXMC' where id=6; -update noar tt set v0='CDENN3JWMIVNF' where id=6; -update noar ti set v0='CDENN3JWMIVNF' where id=6; -update noar tt set b2='K5CPN6ZZMCF52D13G90' where id=6; -update noar ti set b2='K5CPN6ZZMCF52D13G90' where id=6; -update noar tt set v0='J0U5KLDWT20DX9BW3C1OJ0' where id=7; -update noar ti set v0='J0U5KLDWT20DX9BW3C1OJ0' where id=7; -update noar tt set b0='YVLF' where id=7; -update noar ti set b0='YVLF' where id=7; -update noar tt set v0='OBP0EPIUE8WZLG328CTIL' where id=7; -update noar ti set v0='OBP0EPIUE8WZLG328CTIL' where id=7; -update noar tt set b1='DZZ9MJ2CFU8YOH6FMX1' where id=7; -update noar ti set b1='DZZ9MJ2CFU8YOH6FMX1' where id=7; -update noar tt set v0='B1UU9' where id=7; -update noar ti set v0='B1UU9' where id=7; -update noar tt set b2='JGOJ1O5ESXBEN7QQNWK3K1N0JH' where id=7; -update noar ti set b2='JGOJ1O5ESXBEN7QQNWK3K1N0JH' where id=7; -update noar tt set v0='OOBQJZFN72H9C564B3MH' where id=8; -update noar ti set v0='OOBQJZFN72H9C564B3MH' where id=8; -update noar tt set b0='NZ0GGLHXVCZSCKY660KWQ5' where id=8; -update noar ti set b0='NZ0GGLHXVCZSCKY660KWQ5' where id=8; -update noar tt set v0='PW5E5EGXSO7QD30APF69HG' where id=8; -update noar ti set v0='PW5E5EGXSO7QD30APF69HG' where id=8; -update noar tt set b1='9UEC06C49JBF2399K7WE96UAKHKA' where id=8; -update noar ti set b1='9UEC06C49JBF2399K7WE96UAKHKA' where id=8; -update noar tt set v0='NJ' where id=8; -update noar ti set v0='NJ' where id=8; -update noar tt set b2='N0D1X57S5D38EKVICEQ' where id=8; -update noar ti set b2='N0D1X57S5D38EKVICEQ' where id=8; -update noar tt set v0='QYGRDIB1OK5KQYQL3NMZICWT54MVE645' where id=9; -update noar ti set v0='QYGRDIB1OK5KQYQL3NMZICWT54MVE645' where id=9; -update noar tt set b0='66P8RS0J2' where id=9; -update noar ti set b0='66P8RS0J2' where id=9; -update noar tt set v0='96UZN0ODBV1YIR2YFQUL9EL' where id=9; -update noar ti set v0='96UZN0ODBV1YIR2YFQUL9EL' where id=9; -update noar tt set b1='APCV460NQRTF' where id=9; -update noar ti set b1='APCV460NQRTF' where id=9; -update noar tt set v0='VOA55UOV17DCYAT' where id=9; -update noar ti set v0='VOA55UOV17DCYAT' where id=9; -update noar tt set b2='JCT7W515BQHB7SX9Q2DLDH7310HU' where id=9; -update noar ti set b2='JCT7W515BQHB7SX9Q2DLDH7310HU' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -v0 varchar(256) not null, -b0 longblob not null, -b1 blob not null, -b2 longblob not null -) engine=tokudb; -insert into tt values (1,'','','',''); -insert into tt values (2,'','','',''); -insert into tt values (3,'','','',''); -insert into tt values (4,'','','',''); -insert into tt values (5,'','','',''); -insert into tt values (6,'','','',''); -insert into tt values (7,'','','',''); -insert into tt values (8,'','','',''); -insert into tt values (9,'','','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='IFHBN69C2W9IH8Q1I5' where id=1; -update noar ti set v0='IFHBN69C2W9IH8Q1I5' where id=1; -update noar tt set b0='K2EZPJMULWBD1Q9HMP' where id=1; -update noar ti set b0='K2EZPJMULWBD1Q9HMP' where id=1; -update noar tt set v0='V0Y' where id=1; -update noar ti set v0='V0Y' where id=1; -update noar tt set b1='FW' where id=1; -update noar ti set b1='FW' where id=1; -update noar tt set v0='1EQFFX4S7WO89IFGGFGTLGL' where id=1; -update noar ti set v0='1EQFFX4S7WO89IFGGFGTLGL' where id=1; -update noar tt set b2='H4P4VTTZZST92I7MAIUOLEFN' where id=1; -update noar ti set b2='H4P4VTTZZST92I7MAIUOLEFN' where id=1; -update noar tt set v0='7J0R6O6D4COSHLQOXTOL' where id=2; -update noar ti set v0='7J0R6O6D4COSHLQOXTOL' where id=2; -update noar tt set b0='756Y' where id=2; -update noar ti set b0='756Y' where id=2; -update noar tt set v0='MWJE44Z' where id=2; -update noar ti set v0='MWJE44Z' where id=2; -update noar tt set b1='RYSNYV4FA96AU' where id=2; -update noar ti set b1='RYSNYV4FA96AU' where id=2; -update noar tt set v0='3HVY' where id=2; -update noar ti set v0='3HVY' where id=2; -update noar tt set b2='54LHL' where id=2; -update noar ti set b2='54LHL' where id=2; -update noar tt set v0='6SUIYDNFL1WLYMEIDOBDXJHX8' where id=3; -update noar ti set v0='6SUIYDNFL1WLYMEIDOBDXJHX8' where id=3; -update noar tt set b0='TQQZ1NG4TZUYPQ4O99TGZGZUV' where id=3; -update noar ti set b0='TQQZ1NG4TZUYPQ4O99TGZGZUV' where id=3; -update noar tt set v0='T2K5EBKLKUMLNNGS' where id=3; -update noar ti set v0='T2K5EBKLKUMLNNGS' where id=3; -update noar tt set b1='6LFQMYZ3I2X' where id=3; -update noar ti set b1='6LFQMYZ3I2X' where id=3; -update noar tt set v0='V7RIZMDYL8UT6731QDD' where id=3; -update noar ti set v0='V7RIZMDYL8UT6731QDD' where id=3; -update noar tt set b2='I' where id=3; -update noar ti set b2='I' where id=3; -update noar tt set v0='7UYA84RHSB7XYZG' where id=4; -update noar ti set v0='7UYA84RHSB7XYZG' where id=4; -update noar tt set b0='IY' where id=4; -update noar ti set b0='IY' where id=4; -update noar tt set v0='FDFY6B' where id=4; -update noar ti set v0='FDFY6B' where id=4; -update noar tt set b1='K4A1DR46UCEKTQD83OILDY' where id=4; -update noar ti set b1='K4A1DR46UCEKTQD83OILDY' where id=4; -update noar tt set v0='0LYV0Y65VWVGJ9EW' where id=4; -update noar ti set v0='0LYV0Y65VWVGJ9EW' where id=4; -update noar tt set b2='BHC6AABZIM' where id=4; -update noar ti set b2='BHC6AABZIM' where id=4; -update noar tt set v0='YUZOM62M3ZD1DKS7YS' where id=5; -update noar ti set v0='YUZOM62M3ZD1DKS7YS' where id=5; -update noar tt set b0='MWKGIRKGIGJHJ6ZEQ0E1Z1GM0' where id=5; -update noar ti set b0='MWKGIRKGIGJHJ6ZEQ0E1Z1GM0' where id=5; -update noar tt set v0='AMG85TBX5SNXT' where id=5; -update noar ti set v0='AMG85TBX5SNXT' where id=5; -update noar tt set b1='LXTBW' where id=5; -update noar ti set b1='LXTBW' where id=5; -update noar tt set v0='PNNQ48WUL9D921YV51XLKDCWN42UYXUD' where id=5; -update noar ti set v0='PNNQ48WUL9D921YV51XLKDCWN42UYXUD' where id=5; -update noar tt set b2='WNXM0XP8NCVBV' where id=5; -update noar ti set b2='WNXM0XP8NCVBV' where id=5; -update noar tt set v0='7P3SMXKNRDE6B43PAZ2QYDY' where id=6; -update noar ti set v0='7P3SMXKNRDE6B43PAZ2QYDY' where id=6; -update noar tt set b0='S3S0BKWUVSVAY55AYVWF9T3D8Y8BGG' where id=6; -update noar ti set b0='S3S0BKWUVSVAY55AYVWF9T3D8Y8BGG' where id=6; -update noar tt set v0='U6L4233IRRA3J2W9GM8NH75KCZ' where id=6; -update noar ti set v0='U6L4233IRRA3J2W9GM8NH75KCZ' where id=6; -update noar tt set b1='6KZ5V5CV3PK3QH6JZO8QVGV59BP' where id=6; -update noar ti set b1='6KZ5V5CV3PK3QH6JZO8QVGV59BP' where id=6; -update noar tt set v0='JSOG8BT7Z7A' where id=6; -update noar ti set v0='JSOG8BT7Z7A' where id=6; -update noar tt set b2='7AXL8J9L411W4W' where id=6; -update noar ti set b2='7AXL8J9L411W4W' where id=6; -update noar tt set v0='VXRGTZGXFOQSGM6WCDUMR3' where id=7; -update noar ti set v0='VXRGTZGXFOQSGM6WCDUMR3' where id=7; -update noar tt set b0='E6N1DZ0HCJN7TWR57ZKUZ29341IEQ' where id=7; -update noar ti set b0='E6N1DZ0HCJN7TWR57ZKUZ29341IEQ' where id=7; -update noar tt set v0='EMNHTOWOPS4RM8KIKV5TQ4LA7U9RDOP9' where id=7; -update noar ti set v0='EMNHTOWOPS4RM8KIKV5TQ4LA7U9RDOP9' where id=7; -update noar tt set b1='Q2CKSPZGM02UOITDSHLFNGZN' where id=7; -update noar ti set b1='Q2CKSPZGM02UOITDSHLFNGZN' where id=7; -update noar tt set v0='5IYW' where id=7; -update noar ti set v0='5IYW' where id=7; -update noar tt set b2='I8OXFV24GB6G' where id=7; -update noar ti set b2='I8OXFV24GB6G' where id=7; -update noar tt set v0='3S60974J' where id=8; -update noar ti set v0='3S60974J' where id=8; -update noar tt set b0='0PII0CSKGOUX9SZ1N319' where id=8; -update noar ti set b0='0PII0CSKGOUX9SZ1N319' where id=8; -update noar tt set v0='Z7TYZQUWV9' where id=8; -update noar ti set v0='Z7TYZQUWV9' where id=8; -update noar tt set b1='P40KW6Y4EGGC0V' where id=8; -update noar ti set b1='P40KW6Y4EGGC0V' where id=8; -update noar tt set v0='2S' where id=8; -update noar ti set v0='2S' where id=8; -update noar tt set b2='HZ8R527GG7982M63' where id=8; -update noar ti set b2='HZ8R527GG7982M63' where id=8; -update noar tt set v0='B16XUAD5I' where id=9; -update noar ti set v0='B16XUAD5I' where id=9; -update noar tt set b0='R' where id=9; -update noar ti set b0='R' where id=9; -update noar tt set v0='CPWNEW3ST3D2' where id=9; -update noar ti set v0='CPWNEW3ST3D2' where id=9; -update noar tt set b1='U0YF3J7V4EM6DL85C3' where id=9; -update noar ti set b1='U0YF3J7V4EM6DL85C3' where id=9; -update noar tt set v0='HX01FHNZ1901HRG49X' where id=9; -update noar ti set v0='HX01FHNZ1901HRG49X' where id=9; -update noar tt set b2='7F9GOYGBGTP031UO19RHET1UFUC1L' where id=9; -update noar ti set b2='7F9GOYGBGTP031UO19RHET1UFUC1L' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -v0 varchar(32) null, -b0 longblob null, -b1 mediumblob null, -b2 tinyblob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='KKG71HYAK6VH4' where id=1; -update noar ti set v0='KKG71HYAK6VH4' where id=1; -update noar tt set b0='7NL8U' where id=1; -update noar ti set b0='7NL8U' where id=1; -update noar tt set v0='K6NK3340PXQHMIGCI66' where id=1; -update noar ti set v0='K6NK3340PXQHMIGCI66' where id=1; -update noar tt set b1='X0E2E7DJ9DU4D084BRA00F9PO3Z9TS' where id=1; -update noar ti set b1='X0E2E7DJ9DU4D084BRA00F9PO3Z9TS' where id=1; -update noar tt set v0='EPNZ8F5KYZQXVTMA' where id=1; -update noar ti set v0='EPNZ8F5KYZQXVTMA' where id=1; -update noar tt set b2='JU91' where id=1; -update noar ti set b2='JU91' where id=1; -update noar tt set v0='1CZK' where id=2; -update noar ti set v0='1CZK' where id=2; -update noar tt set b0='1U4HOMCUNG7FECITNRBWEV049JHEE' where id=2; -update noar ti set b0='1U4HOMCUNG7FECITNRBWEV049JHEE' where id=2; -update noar tt set v0='LONF7ZLFZ11I9I42WBLVEFI09R2I' where id=2; -update noar ti set v0='LONF7ZLFZ11I9I42WBLVEFI09R2I' where id=2; -update noar tt set b1='CT9UF0XFJXDU5HYFG5JK9M' where id=2; -update noar ti set b1='CT9UF0XFJXDU5HYFG5JK9M' where id=2; -update noar tt set v0='04SEPXRP2KX0OJBX5R08W789FH75R' where id=2; -update noar ti set v0='04SEPXRP2KX0OJBX5R08W789FH75R' where id=2; -update noar tt set b2='QRYYAZO4ODLRHL0YKJ' where id=2; -update noar ti set b2='QRYYAZO4ODLRHL0YKJ' where id=2; -update noar tt set v0='C15Q13TVWFIMUCJ3QP122G241OT' where id=3; -update noar ti set v0='C15Q13TVWFIMUCJ3QP122G241OT' where id=3; -update noar tt set b0='BE5YU6UTBNMU' where id=3; -update noar ti set b0='BE5YU6UTBNMU' where id=3; -update noar tt set v0='ZVJEMU6EZN9S0VQINI02J1M1BRE2EPDK' where id=3; -update noar ti set v0='ZVJEMU6EZN9S0VQINI02J1M1BRE2EPDK' where id=3; -update noar tt set b1='TB1RUWW1YNZ6CEMMKM04254EMF14B' where id=3; -update noar ti set b1='TB1RUWW1YNZ6CEMMKM04254EMF14B' where id=3; -update noar tt set v0='LCO31M3M3N588RBRR7BKP0ADLX2U' where id=3; -update noar ti set v0='LCO31M3M3N588RBRR7BKP0ADLX2U' where id=3; -update noar tt set b2='OEZQAOA9VQZ384NH2PM9KH9XHNF' where id=3; -update noar ti set b2='OEZQAOA9VQZ384NH2PM9KH9XHNF' where id=3; -update noar tt set v0='IXAGO2SGMFQBKGK6UMCTRNTFKCCJ8' where id=4; -update noar ti set v0='IXAGO2SGMFQBKGK6UMCTRNTFKCCJ8' where id=4; -update noar tt set b0='GYHL1BJU34B4WE6JR8M7M' where id=4; -update noar ti set b0='GYHL1BJU34B4WE6JR8M7M' where id=4; -update noar tt set v0='AKXGGKICASNTJEZ' where id=4; -update noar ti set v0='AKXGGKICASNTJEZ' where id=4; -update noar tt set b1='8B5JNCBCM2O59V69OV18DNGMP9' where id=4; -update noar ti set b1='8B5JNCBCM2O59V69OV18DNGMP9' where id=4; -update noar tt set v0='J8Q6TD1C7RP2U107XA5' where id=4; -update noar ti set v0='J8Q6TD1C7RP2U107XA5' where id=4; -update noar tt set b2='4H7RUEITVZJHVBLGVXCSOMO53F7LLG' where id=4; -update noar ti set b2='4H7RUEITVZJHVBLGVXCSOMO53F7LLG' where id=4; -update noar tt set v0='8TRLGUPWI3' where id=5; -update noar ti set v0='8TRLGUPWI3' where id=5; -update noar tt set b0='MWS8G1Y2' where id=5; -update noar ti set b0='MWS8G1Y2' where id=5; -update noar tt set v0='W4FFGSYVW45WYPSWEZIUE4PZ7IFGN' where id=5; -update noar ti set v0='W4FFGSYVW45WYPSWEZIUE4PZ7IFGN' where id=5; -update noar tt set b1='W217SSVSLM2R1MRU50MJOPTI6OQ' where id=5; -update noar ti set b1='W217SSVSLM2R1MRU50MJOPTI6OQ' where id=5; -update noar tt set v0='YC00FBB0JF66CCCXX5V8L7OR1' where id=5; -update noar ti set v0='YC00FBB0JF66CCCXX5V8L7OR1' where id=5; -update noar tt set b2='557MUWJP0O83PMQU' where id=5; -update noar ti set b2='557MUWJP0O83PMQU' where id=5; -update noar tt set v0='6AZBII' where id=6; -update noar ti set v0='6AZBII' where id=6; -update noar tt set b0='CH' where id=6; -update noar ti set b0='CH' where id=6; -update noar tt set v0='TDNXQ3XSJRNZMHAIEC6UPMWBRLE05U' where id=6; -update noar ti set v0='TDNXQ3XSJRNZMHAIEC6UPMWBRLE05U' where id=6; -update noar tt set b1='O38TW8PN97HD' where id=6; -update noar ti set b1='O38TW8PN97HD' where id=6; -update noar tt set v0='1M0XYF8A912WNXOKUTMK2G1GM1J' where id=6; -update noar ti set v0='1M0XYF8A912WNXOKUTMK2G1GM1J' where id=6; -update noar tt set b2='VSYZYABAT89SLCDSELCYN8' where id=6; -update noar ti set b2='VSYZYABAT89SLCDSELCYN8' where id=6; -update noar tt set v0='8' where id=7; -update noar ti set v0='8' where id=7; -update noar tt set b0='WF35' where id=7; -update noar ti set b0='WF35' where id=7; -update noar tt set v0='3RN2C3KSOA4EPYYIFIX' where id=7; -update noar ti set v0='3RN2C3KSOA4EPYYIFIX' where id=7; -update noar tt set b1='ZTP75F0LLL3DS57Q8RC9EON' where id=7; -update noar ti set b1='ZTP75F0LLL3DS57Q8RC9EON' where id=7; -update noar tt set v0='HVPK4RS5JD3T49' where id=7; -update noar ti set v0='HVPK4RS5JD3T49' where id=7; -update noar tt set b2='S51AMSCGIVVAYITZUHFPAKT10FA' where id=7; -update noar ti set b2='S51AMSCGIVVAYITZUHFPAKT10FA' where id=7; -update noar tt set v0='E1RNRITTQ5YSTRBG7V78L' where id=8; -update noar ti set v0='E1RNRITTQ5YSTRBG7V78L' where id=8; -update noar tt set b0='LA7' where id=8; -update noar ti set b0='LA7' where id=8; -update noar tt set v0='1BEH' where id=8; -update noar ti set v0='1BEH' where id=8; -update noar tt set b1='UCK8ZHJDJL74ZUKTYLS5' where id=8; -update noar ti set b1='UCK8ZHJDJL74ZUKTYLS5' where id=8; -update noar tt set v0='QQPM3U' where id=8; -update noar ti set v0='QQPM3U' where id=8; -update noar tt set b2='4TCJ' where id=8; -update noar ti set b2='4TCJ' where id=8; -update noar tt set v0='PMGHI89V66IJ' where id=9; -update noar ti set v0='PMGHI89V66IJ' where id=9; -update noar tt set b0='PO35OJSKFGBZMOZH' where id=9; -update noar ti set b0='PO35OJSKFGBZMOZH' where id=9; -update noar tt set v0='2HBC0KY622IQYGZP8ALS3PRRX' where id=9; -update noar ti set v0='2HBC0KY622IQYGZP8ALS3PRRX' where id=9; -update noar tt set b1='ZWYQG68SMETHER41VGT41H9E468YIVN' where id=9; -update noar ti set b1='ZWYQG68SMETHER41VGT41H9E468YIVN' where id=9; -update noar tt set v0='M' where id=9; -update noar ti set v0='M' where id=9; -update noar tt set b2='NP5FWUCRIMC4DNH7RPB4GTCL03PLU5UW' where id=9; -update noar ti set b2='NP5FWUCRIMC4DNH7RPB4GTCL03PLU5UW' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -v0 varchar(256) null, -b0 longblob null, -b1 mediumblob null, -b2 tinyblob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='5HJABLX3Y7MQMAPU2OWCGN8GFTEEYM' where id=1; -update noar ti set v0='5HJABLX3Y7MQMAPU2OWCGN8GFTEEYM' where id=1; -update noar tt set b0='15LBEF35' where id=1; -update noar ti set b0='15LBEF35' where id=1; -update noar tt set v0='ULVX' where id=1; -update noar ti set v0='ULVX' where id=1; -update noar tt set b1='C0PO' where id=1; -update noar ti set b1='C0PO' where id=1; -update noar tt set v0='3' where id=1; -update noar ti set v0='3' where id=1; -update noar tt set b2='681J7U6IQSZ2UPRY' where id=1; -update noar ti set b2='681J7U6IQSZ2UPRY' where id=1; -update noar tt set v0='AISOC' where id=2; -update noar ti set v0='AISOC' where id=2; -update noar tt set b0='GWUH8008KDKY668UAL7XADPA' where id=2; -update noar ti set b0='GWUH8008KDKY668UAL7XADPA' where id=2; -update noar tt set v0='1RN0I8A1XXRDZTPAQD5PK5G76U7J3TZV' where id=2; -update noar ti set v0='1RN0I8A1XXRDZTPAQD5PK5G76U7J3TZV' where id=2; -update noar tt set b1='QFFST3U6W4M7W8CHWE' where id=2; -update noar ti set b1='QFFST3U6W4M7W8CHWE' where id=2; -update noar tt set v0='O9HDG3BFOH' where id=2; -update noar ti set v0='O9HDG3BFOH' where id=2; -update noar tt set b2='B1COOU87L5M55BFKMPE4PDZNEFW5P' where id=2; -update noar ti set b2='B1COOU87L5M55BFKMPE4PDZNEFW5P' where id=2; -update noar tt set v0='M4YWI9TLG2HVBUYJBBGYO' where id=3; -update noar ti set v0='M4YWI9TLG2HVBUYJBBGYO' where id=3; -update noar tt set b0='62BZ4UKSX9' where id=3; -update noar ti set b0='62BZ4UKSX9' where id=3; -update noar tt set v0='1ZNSRP6FMQNYHFV8P' where id=3; -update noar ti set v0='1ZNSRP6FMQNYHFV8P' where id=3; -update noar tt set b1='VK424ARYYBMHWJK0EV8JKRMQ6T2YU8' where id=3; -update noar ti set b1='VK424ARYYBMHWJK0EV8JKRMQ6T2YU8' where id=3; -update noar tt set v0='6ZT2WWXD8MGDTHEE' where id=3; -update noar ti set v0='6ZT2WWXD8MGDTHEE' where id=3; -update noar tt set b2='HWHVNHMQAL54B4FLGZAXWN5THG' where id=3; -update noar ti set b2='HWHVNHMQAL54B4FLGZAXWN5THG' where id=3; -update noar tt set v0='9NQBVBGBHAN090' where id=4; -update noar ti set v0='9NQBVBGBHAN090' where id=4; -update noar tt set b0='PN27FCP2YN7BD5ZIRBZ45SS' where id=4; -update noar ti set b0='PN27FCP2YN7BD5ZIRBZ45SS' where id=4; -update noar tt set v0='OTA' where id=4; -update noar ti set v0='OTA' where id=4; -update noar tt set b1='TU70S6R3M6IDHRHCORFTS6' where id=4; -update noar ti set b1='TU70S6R3M6IDHRHCORFTS6' where id=4; -update noar tt set v0='TQMVKV9OP3AFS5NO8709KUZ1EJ' where id=4; -update noar ti set v0='TQMVKV9OP3AFS5NO8709KUZ1EJ' where id=4; -update noar tt set b2='4HV' where id=4; -update noar ti set b2='4HV' where id=4; -update noar tt set v0='HV33UANAE3KR8EZI460WD2' where id=5; -update noar ti set v0='HV33UANAE3KR8EZI460WD2' where id=5; -update noar tt set b0='GQVKLO6VQG42CD47LL68SLQSXOX60UR' where id=5; -update noar ti set b0='GQVKLO6VQG42CD47LL68SLQSXOX60UR' where id=5; -update noar tt set v0='40K5QSJ' where id=5; -update noar ti set v0='40K5QSJ' where id=5; -update noar tt set b1='JL3WX8LEGQ1ONZT69QIHDLQ5LL' where id=5; -update noar ti set b1='JL3WX8LEGQ1ONZT69QIHDLQ5LL' where id=5; -update noar tt set v0='0LSTCMFPGM51' where id=5; -update noar ti set v0='0LSTCMFPGM51' where id=5; -update noar tt set b2='MX0BFS7BA' where id=5; -update noar ti set b2='MX0BFS7BA' where id=5; -update noar tt set v0='YCG5Z904G9PEEEE' where id=6; -update noar ti set v0='YCG5Z904G9PEEEE' where id=6; -update noar tt set b0='FK8' where id=6; -update noar ti set b0='FK8' where id=6; -update noar tt set v0='1W2IAM53X' where id=6; -update noar ti set v0='1W2IAM53X' where id=6; -update noar tt set b1='5PUKX7ELP2ZA0T11N1AZ6QD7' where id=6; -update noar ti set b1='5PUKX7ELP2ZA0T11N1AZ6QD7' where id=6; -update noar tt set v0='449S1CG59A89YMYXFSHXF6KUGFMV8' where id=6; -update noar ti set v0='449S1CG59A89YMYXFSHXF6KUGFMV8' where id=6; -update noar tt set b2='FVAUG17IK4F5DV0HYLSRD2' where id=6; -update noar ti set b2='FVAUG17IK4F5DV0HYLSRD2' where id=6; -update noar tt set v0='GR7DFFQUPUQGKQ6EXQ8P5VVOFR49NK9O' where id=7; -update noar ti set v0='GR7DFFQUPUQGKQ6EXQ8P5VVOFR49NK9O' where id=7; -update noar tt set b0='PAUXCKPS9BP8SLG39UI8C5' where id=7; -update noar ti set b0='PAUXCKPS9BP8SLG39UI8C5' where id=7; -update noar tt set v0='KV1ADBOZJ13DJQKUMAO3' where id=7; -update noar ti set v0='KV1ADBOZJ13DJQKUMAO3' where id=7; -update noar tt set b1='6X2WO0' where id=7; -update noar ti set b1='6X2WO0' where id=7; -update noar tt set v0='6WNKIIPT89M29CG' where id=7; -update noar ti set v0='6WNKIIPT89M29CG' where id=7; -update noar tt set b2='VHU4MTJIUERQ9Y' where id=7; -update noar ti set b2='VHU4MTJIUERQ9Y' where id=7; -update noar tt set v0='WJIJRUOO5C9616IXN90Y6K0FHKH57H' where id=8; -update noar ti set v0='WJIJRUOO5C9616IXN90Y6K0FHKH57H' where id=8; -update noar tt set b0='2OEFAFFMRP1TWXZWU6L2X7ZHJDIIGFQ' where id=8; -update noar ti set b0='2OEFAFFMRP1TWXZWU6L2X7ZHJDIIGFQ' where id=8; -update noar tt set v0='DNDBTWE9DYO3ZIBH9YIN' where id=8; -update noar ti set v0='DNDBTWE9DYO3ZIBH9YIN' where id=8; -update noar tt set b1='V2B1WA' where id=8; -update noar ti set b1='V2B1WA' where id=8; -update noar tt set v0='8Y7AHSDA2F' where id=8; -update noar ti set v0='8Y7AHSDA2F' where id=8; -update noar tt set b2='BTIIE2VHX43Q7TK5YWER247XXNQ' where id=8; -update noar ti set b2='BTIIE2VHX43Q7TK5YWER247XXNQ' where id=8; -update noar tt set v0='PLDT1PNNR8RJH1HXQVQSJ' where id=9; -update noar ti set v0='PLDT1PNNR8RJH1HXQVQSJ' where id=9; -update noar tt set b0='8FJOI6XSW121Q56SV02HE8L2XEX' where id=9; -update noar ti set b0='8FJOI6XSW121Q56SV02HE8L2XEX' where id=9; -update noar tt set v0='R4MDOOMPUVWFSM2PDSB4AOJVZR7Y' where id=9; -update noar ti set v0='R4MDOOMPUVWFSM2PDSB4AOJVZR7Y' where id=9; -update noar tt set b1='PBTAUBEYQ4J4PCXZQTVA9LAZV19DP3T' where id=9; -update noar ti set b1='PBTAUBEYQ4J4PCXZQTVA9LAZV19DP3T' where id=9; -update noar tt set v0='A3F5ZW201WYLZ1UFFF6KSBJ1C' where id=9; -update noar ti set v0='A3F5ZW201WYLZ1UFFF6KSBJ1C' where id=9; -update noar tt set b2='NMNOLAVSYOIFTUSEIQBWSAOKKAI2R7' where id=9; -update noar ti set b2='NMNOLAVSYOIFTUSEIQBWSAOKKAI2R7' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -v0 varchar(32) not null, -b0 longblob not null, -b1 mediumblob not null, -b2 tinyblob not null -) engine=tokudb; -insert into tt values (1,'','','',''); -insert into tt values (2,'','','',''); -insert into tt values (3,'','','',''); -insert into tt values (4,'','','',''); -insert into tt values (5,'','','',''); -insert into tt values (6,'','','',''); -insert into tt values (7,'','','',''); -insert into tt values (8,'','','',''); -insert into tt values (9,'','','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='8K7' where id=1; -update noar ti set v0='8K7' where id=1; -update noar tt set b0='YHTFQ5CNLDJ' where id=1; -update noar ti set b0='YHTFQ5CNLDJ' where id=1; -update noar tt set v0='4TQD' where id=1; -update noar ti set v0='4TQD' where id=1; -update noar tt set b1='LPVX1U2IX8JZYAZ6J0DR52BSN6D0' where id=1; -update noar ti set b1='LPVX1U2IX8JZYAZ6J0DR52BSN6D0' where id=1; -update noar tt set v0='PZEDC2A7OCSHSSVWWMJ68X' where id=1; -update noar ti set v0='PZEDC2A7OCSHSSVWWMJ68X' where id=1; -update noar tt set b2='6JXGU' where id=1; -update noar ti set b2='6JXGU' where id=1; -update noar tt set v0='FMY45C6R' where id=2; -update noar ti set v0='FMY45C6R' where id=2; -update noar tt set b0='DZPNU7UOJMRZ32' where id=2; -update noar ti set b0='DZPNU7UOJMRZ32' where id=2; -update noar tt set v0='6O8RKDQ037LS21J2RI0251W3POML' where id=2; -update noar ti set v0='6O8RKDQ037LS21J2RI0251W3POML' where id=2; -update noar tt set b1='2EE7HQ7M0HNS5544HRA' where id=2; -update noar ti set b1='2EE7HQ7M0HNS5544HRA' where id=2; -update noar tt set v0='REX08ZX' where id=2; -update noar ti set v0='REX08ZX' where id=2; -update noar tt set b2='30Y9U53YHCQ3AT2W9RCFZHDZ19W9LL9' where id=2; -update noar ti set b2='30Y9U53YHCQ3AT2W9RCFZHDZ19W9LL9' where id=2; -update noar tt set v0='8N5B0SJ' where id=3; -update noar ti set v0='8N5B0SJ' where id=3; -update noar tt set b0='VFA0U16AIWNPR5QV95CU9UTZ0R4IO7' where id=3; -update noar ti set b0='VFA0U16AIWNPR5QV95CU9UTZ0R4IO7' where id=3; -update noar tt set v0='9J77DG0' where id=3; -update noar ti set v0='9J77DG0' where id=3; -update noar tt set b1='TF2NVS7GN18EZ5OWAIM3APUK7MB' where id=3; -update noar ti set b1='TF2NVS7GN18EZ5OWAIM3APUK7MB' where id=3; -update noar tt set v0='E6EL9QY' where id=3; -update noar ti set v0='E6EL9QY' where id=3; -update noar tt set b2='5L6M2D' where id=3; -update noar ti set b2='5L6M2D' where id=3; -update noar tt set v0='ENJTUAV1MMFBL' where id=4; -update noar ti set v0='ENJTUAV1MMFBL' where id=4; -update noar tt set b0='C8AWSZ7ZXP8KLT9LW' where id=4; -update noar ti set b0='C8AWSZ7ZXP8KLT9LW' where id=4; -update noar tt set v0='2QIPFZ5R8PTEIWJKQZTVLANR6617F' where id=4; -update noar ti set v0='2QIPFZ5R8PTEIWJKQZTVLANR6617F' where id=4; -update noar tt set b1='UKCCS6TX8LHKVKOP' where id=4; -update noar ti set b1='UKCCS6TX8LHKVKOP' where id=4; -update noar tt set v0='4HP1TA9VI4EFFI6YIO' where id=4; -update noar ti set v0='4HP1TA9VI4EFFI6YIO' where id=4; -update noar tt set b2='7PLPI2NWS94829G1RRFCY1BZJ' where id=4; -update noar ti set b2='7PLPI2NWS94829G1RRFCY1BZJ' where id=4; -update noar tt set v0='H2H5FRLZGF70985BKZUWGZ1O' where id=5; -update noar ti set v0='H2H5FRLZGF70985BKZUWGZ1O' where id=5; -update noar tt set b0='LCSXXVOYGW8C6LJDCFV9USHTYAK3' where id=5; -update noar ti set b0='LCSXXVOYGW8C6LJDCFV9USHTYAK3' where id=5; -update noar tt set v0='VSFP3X7QQHR' where id=5; -update noar ti set v0='VSFP3X7QQHR' where id=5; -update noar tt set b1='4YHFHDXFIC6WTY922XM4RJ30Q5' where id=5; -update noar ti set b1='4YHFHDXFIC6WTY922XM4RJ30Q5' where id=5; -update noar tt set v0='SBW8YSE7ZRDVK9RB82' where id=5; -update noar ti set v0='SBW8YSE7ZRDVK9RB82' where id=5; -update noar tt set b2='7D22' where id=5; -update noar ti set b2='7D22' where id=5; -update noar tt set v0='WQ81QM' where id=6; -update noar ti set v0='WQ81QM' where id=6; -update noar tt set b0='K9UK6KJFZFH3PCB' where id=6; -update noar ti set b0='K9UK6KJFZFH3PCB' where id=6; -update noar tt set v0='NVDT6Q9OZ3RK4GNUKO9BPH29ECI' where id=6; -update noar ti set v0='NVDT6Q9OZ3RK4GNUKO9BPH29ECI' where id=6; -update noar tt set b1='9VCDUX8AWVC7H68KNTSB' where id=6; -update noar ti set b1='9VCDUX8AWVC7H68KNTSB' where id=6; -update noar tt set v0='X4JFJIBQL3ADRRF1XT8YATEG9G3A' where id=6; -update noar ti set v0='X4JFJIBQL3ADRRF1XT8YATEG9G3A' where id=6; -update noar tt set b2='LV0A37F8E7UL8F5W' where id=6; -update noar ti set b2='LV0A37F8E7UL8F5W' where id=6; -update noar tt set v0='MBO7HCNVNZ0VE90UOKRRH5Y99DZNAH' where id=7; -update noar ti set v0='MBO7HCNVNZ0VE90UOKRRH5Y99DZNAH' where id=7; -update noar tt set b0='HPTTSUCMR4Z6PIJXFGR4BORBEA' where id=7; -update noar ti set b0='HPTTSUCMR4Z6PIJXFGR4BORBEA' where id=7; -update noar tt set v0='IN8OAYIF999IR9D7GB0B7PFWKE2K' where id=7; -update noar ti set v0='IN8OAYIF999IR9D7GB0B7PFWKE2K' where id=7; -update noar tt set b1='A321KGGFXWBBMBPSU66Y4ZJR5' where id=7; -update noar ti set b1='A321KGGFXWBBMBPSU66Y4ZJR5' where id=7; -update noar tt set v0='RD5RXL7ODA562LG85' where id=7; -update noar ti set v0='RD5RXL7ODA562LG85' where id=7; -update noar tt set b2='TZPS2M4MCY4RB093QLR' where id=7; -update noar ti set b2='TZPS2M4MCY4RB093QLR' where id=7; -update noar tt set v0='AXASNN0FLXEJ5MLG5YNR' where id=8; -update noar ti set v0='AXASNN0FLXEJ5MLG5YNR' where id=8; -update noar tt set b0='59WF0PW7Z5DUB0YTTE' where id=8; -update noar ti set b0='59WF0PW7Z5DUB0YTTE' where id=8; -update noar tt set v0='SYSOURNST5XPY3DSUYCI13Z8UL' where id=8; -update noar ti set v0='SYSOURNST5XPY3DSUYCI13Z8UL' where id=8; -update noar tt set b1='RHRPX9AKWNPYWDV000GCXT3FH' where id=8; -update noar ti set b1='RHRPX9AKWNPYWDV000GCXT3FH' where id=8; -update noar tt set v0='WX1WM9LKY5EETUZQ346W4FLEQK' where id=8; -update noar ti set v0='WX1WM9LKY5EETUZQ346W4FLEQK' where id=8; -update noar tt set b2='4T6PACN' where id=8; -update noar ti set b2='4T6PACN' where id=8; -update noar tt set v0='RDLQO3OBKRW51MPFILQ025QMCL2' where id=9; -update noar ti set v0='RDLQO3OBKRW51MPFILQ025QMCL2' where id=9; -update noar tt set b0='2FZAIMNXGUETJEJNF2VACRW47MDYFCDI' where id=9; -update noar ti set b0='2FZAIMNXGUETJEJNF2VACRW47MDYFCDI' where id=9; -update noar tt set v0='XKTYZ3' where id=9; -update noar ti set v0='XKTYZ3' where id=9; -update noar tt set b1='UQWQQYQ8CIORII8BFNXC' where id=9; -update noar ti set b1='UQWQQYQ8CIORII8BFNXC' where id=9; -update noar tt set v0='H351JDZO1E64OJ1BHJ5268' where id=9; -update noar ti set v0='H351JDZO1E64OJ1BHJ5268' where id=9; -update noar tt set b2='832RSIP315L3HA8' where id=9; -update noar ti set b2='832RSIP315L3HA8' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -v0 varchar(256) not null, -b0 longblob not null, -b1 mediumblob not null, -b2 tinyblob not null -) engine=tokudb; -insert into tt values (1,'','','',''); -insert into tt values (2,'','','',''); -insert into tt values (3,'','','',''); -insert into tt values (4,'','','',''); -insert into tt values (5,'','','',''); -insert into tt values (6,'','','',''); -insert into tt values (7,'','','',''); -insert into tt values (8,'','','',''); -insert into tt values (9,'','','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='QKEGN3A' where id=1; -update noar ti set v0='QKEGN3A' where id=1; -update noar tt set b0='P8S2QR330UZ1NLL' where id=1; -update noar ti set b0='P8S2QR330UZ1NLL' where id=1; -update noar tt set v0='GQZ55V84' where id=1; -update noar ti set v0='GQZ55V84' where id=1; -update noar tt set b1='WBXM6MDUSOXZDS' where id=1; -update noar ti set b1='WBXM6MDUSOXZDS' where id=1; -update noar tt set v0='1VM3B9ZB1D7GXHP9T8' where id=1; -update noar ti set v0='1VM3B9ZB1D7GXHP9T8' where id=1; -update noar tt set b2='FQYKK87HX' where id=1; -update noar ti set b2='FQYKK87HX' where id=1; -update noar tt set v0='RNUGJXGNGEQ47OPEWZ5JTHAFR8NB9' where id=2; -update noar ti set v0='RNUGJXGNGEQ47OPEWZ5JTHAFR8NB9' where id=2; -update noar tt set b0='YJ2VXB5QI4CI5B9VFZZBTNECJ9HR' where id=2; -update noar ti set b0='YJ2VXB5QI4CI5B9VFZZBTNECJ9HR' where id=2; -update noar tt set v0='971VENWHO77XZ1SXJU8FJI90JB6EN8' where id=2; -update noar ti set v0='971VENWHO77XZ1SXJU8FJI90JB6EN8' where id=2; -update noar tt set b1='OP2A50UYKG0DC3DWVAGPGABL3HF' where id=2; -update noar ti set b1='OP2A50UYKG0DC3DWVAGPGABL3HF' where id=2; -update noar tt set v0='6L83JY7CL1' where id=2; -update noar ti set v0='6L83JY7CL1' where id=2; -update noar tt set b2='CAPR5LBGQ6GR3Q4PMPFU2M' where id=2; -update noar ti set b2='CAPR5LBGQ6GR3Q4PMPFU2M' where id=2; -update noar tt set v0='ZN3XTBLOKGQH6ZSOYMWKIO5HK6ZFHTL' where id=3; -update noar ti set v0='ZN3XTBLOKGQH6ZSOYMWKIO5HK6ZFHTL' where id=3; -update noar tt set b0='E1DRBM7' where id=3; -update noar ti set b0='E1DRBM7' where id=3; -update noar tt set v0='G0WB61PS5Q9ABRG73Y1Q5K01QYMQR3L' where id=3; -update noar ti set v0='G0WB61PS5Q9ABRG73Y1Q5K01QYMQR3L' where id=3; -update noar tt set b1='NVCPKUJEN6EWLNFH56DYG8K477B1LVR5' where id=3; -update noar ti set b1='NVCPKUJEN6EWLNFH56DYG8K477B1LVR5' where id=3; -update noar tt set v0='8NAGYOQ0XMG1YCDUK5T6' where id=3; -update noar ti set v0='8NAGYOQ0XMG1YCDUK5T6' where id=3; -update noar tt set b2='JWTW5FO04EGC2SPB34JP937' where id=3; -update noar ti set b2='JWTW5FO04EGC2SPB34JP937' where id=3; -update noar tt set v0='R4QP0055' where id=4; -update noar ti set v0='R4QP0055' where id=4; -update noar tt set b0='CN5HDFZVI5GYSJPG' where id=4; -update noar ti set b0='CN5HDFZVI5GYSJPG' where id=4; -update noar tt set v0='1UKDNSUCV8Y6RP1BHDYLD' where id=4; -update noar ti set v0='1UKDNSUCV8Y6RP1BHDYLD' where id=4; -update noar tt set b1='PJE2D5WM4' where id=4; -update noar ti set b1='PJE2D5WM4' where id=4; -update noar tt set v0='YHUMXRU0E8MKF28CQLQTQ7JT0552' where id=4; -update noar ti set v0='YHUMXRU0E8MKF28CQLQTQ7JT0552' where id=4; -update noar tt set b2='GQNKU8Z7FYEA9G4N8GOQC8' where id=4; -update noar ti set b2='GQNKU8Z7FYEA9G4N8GOQC8' where id=4; -update noar tt set v0='EXV5K5055PGDE' where id=5; -update noar ti set v0='EXV5K5055PGDE' where id=5; -update noar tt set b0='5X92ZD445CCBCTDZ0WJOGYB8Q6P9KLKX' where id=5; -update noar ti set b0='5X92ZD445CCBCTDZ0WJOGYB8Q6P9KLKX' where id=5; -update noar tt set v0='5IXO279N52YXDZPLJQI4VXFJQKV' where id=5; -update noar ti set v0='5IXO279N52YXDZPLJQI4VXFJQKV' where id=5; -update noar tt set b1='FDIQKTX2G4ZY' where id=5; -update noar ti set b1='FDIQKTX2G4ZY' where id=5; -update noar tt set v0='VUYONOVGKHKRAPSYRLHH' where id=5; -update noar ti set v0='VUYONOVGKHKRAPSYRLHH' where id=5; -update noar tt set b2='RSIFG7AFR' where id=5; -update noar ti set b2='RSIFG7AFR' where id=5; -update noar tt set v0='61S8SGOJLUCS0EOMAWW' where id=6; -update noar ti set v0='61S8SGOJLUCS0EOMAWW' where id=6; -update noar tt set b0='ESG9BM1JTCGRT7091S8OH5' where id=6; -update noar ti set b0='ESG9BM1JTCGRT7091S8OH5' where id=6; -update noar tt set v0='VWJUD7426TAVMH' where id=6; -update noar ti set v0='VWJUD7426TAVMH' where id=6; -update noar tt set b1='HW6JLYDHRCPG2BDVU4Y' where id=6; -update noar ti set b1='HW6JLYDHRCPG2BDVU4Y' where id=6; -update noar tt set v0='264LW3NFCBJ8HCG' where id=6; -update noar ti set v0='264LW3NFCBJ8HCG' where id=6; -update noar tt set b2='57AV' where id=6; -update noar ti set b2='57AV' where id=6; -update noar tt set v0='KLLIBS' where id=7; -update noar ti set v0='KLLIBS' where id=7; -update noar tt set b0='LL7J2W' where id=7; -update noar ti set b0='LL7J2W' where id=7; -update noar tt set v0='B' where id=7; -update noar ti set v0='B' where id=7; -update noar tt set b1='SG0TI8SN9JYJZSSPO' where id=7; -update noar ti set b1='SG0TI8SN9JYJZSSPO' where id=7; -update noar tt set v0='ADFHGID2EXVAJE28ISTDWYEMTK' where id=7; -update noar ti set v0='ADFHGID2EXVAJE28ISTDWYEMTK' where id=7; -update noar tt set b2='1Z5Y' where id=7; -update noar ti set b2='1Z5Y' where id=7; -update noar tt set v0='W' where id=8; -update noar ti set v0='W' where id=8; -update noar tt set b0='T' where id=8; -update noar ti set b0='T' where id=8; -update noar tt set v0='W8BHHA88M80T9' where id=8; -update noar ti set v0='W8BHHA88M80T9' where id=8; -update noar tt set b1='T4XUC7Q9Z7PWBFD61DWMK' where id=8; -update noar ti set b1='T4XUC7Q9Z7PWBFD61DWMK' where id=8; -update noar tt set v0='P5R6S15AJJZ4G' where id=8; -update noar ti set v0='P5R6S15AJJZ4G' where id=8; -update noar tt set b2='4B47OTCK5BX0FQ' where id=8; -update noar ti set b2='4B47OTCK5BX0FQ' where id=8; -update noar tt set v0='R1JA4IW8770G3XN' where id=9; -update noar ti set v0='R1JA4IW8770G3XN' where id=9; -update noar tt set b0='U0E198M5MQYGBDRQFCDJW5KTI0' where id=9; -update noar ti set b0='U0E198M5MQYGBDRQFCDJW5KTI0' where id=9; -update noar tt set v0='KX59YQO5130RP' where id=9; -update noar ti set v0='KX59YQO5130RP' where id=9; -update noar tt set b1='CSBG6JYS' where id=9; -update noar ti set b1='CSBG6JYS' where id=9; -update noar tt set v0='3B7RTVA2VXRR' where id=9; -update noar ti set v0='3B7RTVA2VXRR' where id=9; -update noar tt set b2='6T' where id=9; -update noar ti set b2='6T' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -v0 varchar(32) null, -b0 longblob null, -b1 mediumblob null, -b2 blob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='FT8' where id=1; -update noar ti set v0='FT8' where id=1; -update noar tt set b0='VAENZXPK6O' where id=1; -update noar ti set b0='VAENZXPK6O' where id=1; -update noar tt set v0='POZ88ANNZ2D' where id=1; -update noar ti set v0='POZ88ANNZ2D' where id=1; -update noar tt set b1='NVAZQZOL3FCLFTH7P' where id=1; -update noar ti set b1='NVAZQZOL3FCLFTH7P' where id=1; -update noar tt set v0='Q0PDJQ55ORMBZSGXYHJRGDXL' where id=1; -update noar ti set v0='Q0PDJQ55ORMBZSGXYHJRGDXL' where id=1; -update noar tt set b2='I6W45LDM0593NT' where id=1; -update noar ti set b2='I6W45LDM0593NT' where id=1; -update noar tt set v0='WULPLIRCJQQJYMT' where id=2; -update noar ti set v0='WULPLIRCJQQJYMT' where id=2; -update noar tt set b0='DG' where id=2; -update noar ti set b0='DG' where id=2; -update noar tt set v0='39LEIGUBHIFF2B8IEVDVL5CBVQHWA' where id=2; -update noar ti set v0='39LEIGUBHIFF2B8IEVDVL5CBVQHWA' where id=2; -update noar tt set b1='NWSA44U51BEFY0OAUOFNQH' where id=2; -update noar ti set b1='NWSA44U51BEFY0OAUOFNQH' where id=2; -update noar tt set v0='3OQ02' where id=2; -update noar ti set v0='3OQ02' where id=2; -update noar tt set b2='BKSPK46ZD80J6PJABFHGUY3SSJQ' where id=2; -update noar ti set b2='BKSPK46ZD80J6PJABFHGUY3SSJQ' where id=2; -update noar tt set v0='HVAPLR7RCME647MBTX09MRFI' where id=3; -update noar ti set v0='HVAPLR7RCME647MBTX09MRFI' where id=3; -update noar tt set b0='82F' where id=3; -update noar ti set b0='82F' where id=3; -update noar tt set v0='0FSAXVVNPC95SQPC5V9VBCKLVLLOCX' where id=3; -update noar ti set v0='0FSAXVVNPC95SQPC5V9VBCKLVLLOCX' where id=3; -update noar tt set b1='I0F2EVAPI8LHOL' where id=3; -update noar ti set b1='I0F2EVAPI8LHOL' where id=3; -update noar tt set v0='UDK' where id=3; -update noar ti set v0='UDK' where id=3; -update noar tt set b2='RE4YV8L5Q6QKF0S' where id=3; -update noar ti set b2='RE4YV8L5Q6QKF0S' where id=3; -update noar tt set v0='J' where id=4; -update noar ti set v0='J' where id=4; -update noar tt set b0='U9GTNHFP8D9HPJHVVJCJ57PBA' where id=4; -update noar ti set b0='U9GTNHFP8D9HPJHVVJCJ57PBA' where id=4; -update noar tt set v0='5F7K1UKGLI' where id=4; -update noar ti set v0='5F7K1UKGLI' where id=4; -update noar tt set b1='WQG6RZ946ZB0' where id=4; -update noar ti set b1='WQG6RZ946ZB0' where id=4; -update noar tt set v0='QMSUCJ7LZOTRCW75AYV2' where id=4; -update noar ti set v0='QMSUCJ7LZOTRCW75AYV2' where id=4; -update noar tt set b2='Q0DJAQ608RYJF05Q2TLV0Q6YW7BFU' where id=4; -update noar ti set b2='Q0DJAQ608RYJF05Q2TLV0Q6YW7BFU' where id=4; -update noar tt set v0='G' where id=5; -update noar ti set v0='G' where id=5; -update noar tt set b0='5KU994BHZ5H0G1BS42HR' where id=5; -update noar ti set b0='5KU994BHZ5H0G1BS42HR' where id=5; -update noar tt set v0='4T920MU0HN4O5O8NFQAZOMN2Y' where id=5; -update noar ti set v0='4T920MU0HN4O5O8NFQAZOMN2Y' where id=5; -update noar tt set b1='Z2OURVX9' where id=5; -update noar ti set b1='Z2OURVX9' where id=5; -update noar tt set v0='2V6J2G0N1N6ZQV45TT04PYJDRTV7UEC' where id=5; -update noar ti set v0='2V6J2G0N1N6ZQV45TT04PYJDRTV7UEC' where id=5; -update noar tt set b2='CKO74TCU' where id=5; -update noar ti set b2='CKO74TCU' where id=5; -update noar tt set v0='6IZ0L3J14L866E7GFUSJWFLSJQTROI' where id=6; -update noar ti set v0='6IZ0L3J14L866E7GFUSJWFLSJQTROI' where id=6; -update noar tt set b0='S7CCMHX5X' where id=6; -update noar ti set b0='S7CCMHX5X' where id=6; -update noar tt set v0='T8X0JS3W9OILAZ4G7V8WJEF1QXNZJX' where id=6; -update noar ti set v0='T8X0JS3W9OILAZ4G7V8WJEF1QXNZJX' where id=6; -update noar tt set b1='NBKKR6' where id=6; -update noar ti set b1='NBKKR6' where id=6; -update noar tt set v0='GJ0R78ES7G0ZEZ44D4' where id=6; -update noar ti set v0='GJ0R78ES7G0ZEZ44D4' where id=6; -update noar tt set b2='FVUK89WOO7T3N3C5GK7AK4V133' where id=6; -update noar ti set b2='FVUK89WOO7T3N3C5GK7AK4V133' where id=6; -update noar tt set v0='1RSH3XPQP0TYTVJ2N92YUOTEIK2QOB' where id=7; -update noar ti set v0='1RSH3XPQP0TYTVJ2N92YUOTEIK2QOB' where id=7; -update noar tt set b0='R11ZT3B2' where id=7; -update noar ti set b0='R11ZT3B2' where id=7; -update noar tt set v0='VCOBT9ECGMQNNUWS6S' where id=7; -update noar ti set v0='VCOBT9ECGMQNNUWS6S' where id=7; -update noar tt set b1='9NXOAVIAI0U7OT' where id=7; -update noar ti set b1='9NXOAVIAI0U7OT' where id=7; -update noar tt set v0='DTGTWZTK1GMNYH4EB6X8SMSWP28EFUKG' where id=7; -update noar ti set v0='DTGTWZTK1GMNYH4EB6X8SMSWP28EFUKG' where id=7; -update noar tt set b2='U' where id=7; -update noar ti set b2='U' where id=7; -update noar tt set v0='5XZ6FWRJ5P43EMLMD6' where id=8; -update noar ti set v0='5XZ6FWRJ5P43EMLMD6' where id=8; -update noar tt set b0='X' where id=8; -update noar ti set b0='X' where id=8; -update noar tt set v0='DMHVL7SHYJADINV' where id=8; -update noar ti set v0='DMHVL7SHYJADINV' where id=8; -update noar tt set b1='LGBH1UZBRYWYZWV5U8YGO' where id=8; -update noar ti set b1='LGBH1UZBRYWYZWV5U8YGO' where id=8; -update noar tt set v0='6XPNWI4MTS31HCW1FQWHI1S05YSD' where id=8; -update noar ti set v0='6XPNWI4MTS31HCW1FQWHI1S05YSD' where id=8; -update noar tt set b2='4O6W1246AHR3ZJSYSTE25YML3CS7W635' where id=8; -update noar ti set b2='4O6W1246AHR3ZJSYSTE25YML3CS7W635' where id=8; -update noar tt set v0='JCL6BMQ96LMYV5' where id=9; -update noar ti set v0='JCL6BMQ96LMYV5' where id=9; -update noar tt set b0='H0G31IKJRM7ZAWQEIXD' where id=9; -update noar ti set b0='H0G31IKJRM7ZAWQEIXD' where id=9; -update noar tt set v0='EF89U9AM4NSCDYN' where id=9; -update noar ti set v0='EF89U9AM4NSCDYN' where id=9; -update noar tt set b1='97K4W4SVM86MJ60X' where id=9; -update noar ti set b1='97K4W4SVM86MJ60X' where id=9; -update noar tt set v0='XVKM0Q9' where id=9; -update noar ti set v0='XVKM0Q9' where id=9; -update noar tt set b2='FLYYHT23YJ4S236I5V5RNQXR' where id=9; -update noar ti set b2='FLYYHT23YJ4S236I5V5RNQXR' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -v0 varchar(256) null, -b0 longblob null, -b1 mediumblob null, -b2 blob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='DPBVHLPKWMWULUJG' where id=1; -update noar ti set v0='DPBVHLPKWMWULUJG' where id=1; -update noar tt set b0='JLRR6KMZKYE14QLM3C' where id=1; -update noar ti set b0='JLRR6KMZKYE14QLM3C' where id=1; -update noar tt set v0='J9ZHH2M3RDH7RPATB0BQQSS1D10L' where id=1; -update noar ti set v0='J9ZHH2M3RDH7RPATB0BQQSS1D10L' where id=1; -update noar tt set b1='BE643WDQVTNJ05CZTK4' where id=1; -update noar ti set b1='BE643WDQVTNJ05CZTK4' where id=1; -update noar tt set v0='OGR24I' where id=1; -update noar ti set v0='OGR24I' where id=1; -update noar tt set b2='ASHKPG' where id=1; -update noar ti set b2='ASHKPG' where id=1; -update noar tt set v0='PY' where id=2; -update noar ti set v0='PY' where id=2; -update noar tt set b0='VZO6ZU3COBPXOLQG2VJIEG' where id=2; -update noar ti set b0='VZO6ZU3COBPXOLQG2VJIEG' where id=2; -update noar tt set v0='AF' where id=2; -update noar ti set v0='AF' where id=2; -update noar tt set b1='YP' where id=2; -update noar ti set b1='YP' where id=2; -update noar tt set v0='S1' where id=2; -update noar ti set v0='S1' where id=2; -update noar tt set b2='KRNT33UF877E8D66TU02NNRXY' where id=2; -update noar ti set b2='KRNT33UF877E8D66TU02NNRXY' where id=2; -update noar tt set v0='VSJGHLTY8' where id=3; -update noar ti set v0='VSJGHLTY8' where id=3; -update noar tt set b0='T07R29PLQL5MMX' where id=3; -update noar ti set b0='T07R29PLQL5MMX' where id=3; -update noar tt set v0='MEMFPA6F3U56FIAO' where id=3; -update noar ti set v0='MEMFPA6F3U56FIAO' where id=3; -update noar tt set b1='PER5TPZHMPF2UYTHFQ5AR0JX7HNBXKW4' where id=3; -update noar ti set b1='PER5TPZHMPF2UYTHFQ5AR0JX7HNBXKW4' where id=3; -update noar tt set v0='5R' where id=3; -update noar ti set v0='5R' where id=3; -update noar tt set b2='ZZ05G9JJ5M3HOGOEVJZOYW2' where id=3; -update noar ti set b2='ZZ05G9JJ5M3HOGOEVJZOYW2' where id=3; -update noar tt set v0='NH0XB' where id=4; -update noar ti set v0='NH0XB' where id=4; -update noar tt set b0='YZX9AKNHMTFL0JVYL3V4R' where id=4; -update noar ti set b0='YZX9AKNHMTFL0JVYL3V4R' where id=4; -update noar tt set v0='9P9RKH2Y85FEVODV10D727F' where id=4; -update noar ti set v0='9P9RKH2Y85FEVODV10D727F' where id=4; -update noar tt set b1='ZJTGIRV9OTBWW8A430TNJM9XOUF' where id=4; -update noar ti set b1='ZJTGIRV9OTBWW8A430TNJM9XOUF' where id=4; -update noar tt set v0='70U3RQ49YBC1Z' where id=4; -update noar ti set v0='70U3RQ49YBC1Z' where id=4; -update noar tt set b2='CQ9FB0VF6K1AIAUIX6YKFR9' where id=4; -update noar ti set b2='CQ9FB0VF6K1AIAUIX6YKFR9' where id=4; -update noar tt set v0='VJIZQR' where id=5; -update noar ti set v0='VJIZQR' where id=5; -update noar tt set b0='29TMBR5JL0OY77U6NY2K1IJ6SGU' where id=5; -update noar ti set b0='29TMBR5JL0OY77U6NY2K1IJ6SGU' where id=5; -update noar tt set v0='47F8XGW8YJD0EQC1KFG4NFZ9IECNWJ' where id=5; -update noar ti set v0='47F8XGW8YJD0EQC1KFG4NFZ9IECNWJ' where id=5; -update noar tt set b1='8WW3AAJD04B3BXCG' where id=5; -update noar ti set b1='8WW3AAJD04B3BXCG' where id=5; -update noar tt set v0='DZO5UHVKBCY2YX' where id=5; -update noar ti set v0='DZO5UHVKBCY2YX' where id=5; -update noar tt set b2='JPVKJM4JQ36621PSV2PLSYTL9' where id=5; -update noar ti set b2='JPVKJM4JQ36621PSV2PLSYTL9' where id=5; -update noar tt set v0='IWU4TOJT3HJYXSX5TE3DPOM401E' where id=6; -update noar ti set v0='IWU4TOJT3HJYXSX5TE3DPOM401E' where id=6; -update noar tt set b0='V8AYYCP2B8D658V5BQY2XIDI6' where id=6; -update noar ti set b0='V8AYYCP2B8D658V5BQY2XIDI6' where id=6; -update noar tt set v0='KZ2' where id=6; -update noar ti set v0='KZ2' where id=6; -update noar tt set b1='Q38Q533JRLU12BMG73V6NP' where id=6; -update noar ti set b1='Q38Q533JRLU12BMG73V6NP' where id=6; -update noar tt set v0='MIP3EAAH4' where id=6; -update noar ti set v0='MIP3EAAH4' where id=6; -update noar tt set b2='3RO9JWRVN140L' where id=6; -update noar ti set b2='3RO9JWRVN140L' where id=6; -update noar tt set v0='M06FWZ7NCZSFI' where id=7; -update noar ti set v0='M06FWZ7NCZSFI' where id=7; -update noar tt set b0='I1' where id=7; -update noar ti set b0='I1' where id=7; -update noar tt set v0='KKD8J8QG' where id=7; -update noar ti set v0='KKD8J8QG' where id=7; -update noar tt set b1='BRI0QXX5BJYO6LT9D0TFX2VZDPZ4QD' where id=7; -update noar ti set b1='BRI0QXX5BJYO6LT9D0TFX2VZDPZ4QD' where id=7; -update noar tt set v0='GI4ULG5OX0UMGQ89W7ZTFPRLWGVT3' where id=7; -update noar ti set v0='GI4ULG5OX0UMGQ89W7ZTFPRLWGVT3' where id=7; -update noar tt set b2='6MSCEY7O2KVI8RAU09QQVG7HWFT' where id=7; -update noar ti set b2='6MSCEY7O2KVI8RAU09QQVG7HWFT' where id=7; -update noar tt set v0='UFN199EXA4BGPML' where id=8; -update noar ti set v0='UFN199EXA4BGPML' where id=8; -update noar tt set b0='DGI7MQXFOAZJARDUC2EFT' where id=8; -update noar ti set b0='DGI7MQXFOAZJARDUC2EFT' where id=8; -update noar tt set v0='BGU' where id=8; -update noar ti set v0='BGU' where id=8; -update noar tt set b1='KKW8BEMYDAQBP1JCN' where id=8; -update noar ti set b1='KKW8BEMYDAQBP1JCN' where id=8; -update noar tt set v0='YNG3VJZUJCA' where id=8; -update noar ti set v0='YNG3VJZUJCA' where id=8; -update noar tt set b2='L' where id=8; -update noar ti set b2='L' where id=8; -update noar tt set v0='MINRP' where id=9; -update noar ti set v0='MINRP' where id=9; -update noar tt set b0='506LVCZ' where id=9; -update noar ti set b0='506LVCZ' where id=9; -update noar tt set v0='MMXHLKXDM' where id=9; -update noar ti set v0='MMXHLKXDM' where id=9; -update noar tt set b1='QDHBE755V3W9A73TVKE' where id=9; -update noar ti set b1='QDHBE755V3W9A73TVKE' where id=9; -update noar tt set v0='VWVR8L3ZF1JMADSDUF2' where id=9; -update noar ti set v0='VWVR8L3ZF1JMADSDUF2' where id=9; -update noar tt set b2='6AICB3TQLAHVJ' where id=9; -update noar ti set b2='6AICB3TQLAHVJ' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -v0 varchar(32) not null, -b0 longblob not null, -b1 mediumblob not null, -b2 blob not null -) engine=tokudb; -insert into tt values (1,'','','',''); -insert into tt values (2,'','','',''); -insert into tt values (3,'','','',''); -insert into tt values (4,'','','',''); -insert into tt values (5,'','','',''); -insert into tt values (6,'','','',''); -insert into tt values (7,'','','',''); -insert into tt values (8,'','','',''); -insert into tt values (9,'','','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='0AL83Q2S5J81R' where id=1; -update noar ti set v0='0AL83Q2S5J81R' where id=1; -update noar tt set b0='TIFCWHGSX' where id=1; -update noar ti set b0='TIFCWHGSX' where id=1; -update noar tt set v0='X3' where id=1; -update noar ti set v0='X3' where id=1; -update noar tt set b1='LMWQ5YYOXY1JG6D4JUPHKI9JAEXPFGK' where id=1; -update noar ti set b1='LMWQ5YYOXY1JG6D4JUPHKI9JAEXPFGK' where id=1; -update noar tt set v0='UWR' where id=1; -update noar ti set v0='UWR' where id=1; -update noar tt set b2='S2F78TIABEB8F4F92' where id=1; -update noar ti set b2='S2F78TIABEB8F4F92' where id=1; -update noar tt set v0='2KDUHNXJRUY2' where id=2; -update noar ti set v0='2KDUHNXJRUY2' where id=2; -update noar tt set b0='GI00LGX32WB' where id=2; -update noar ti set b0='GI00LGX32WB' where id=2; -update noar tt set v0='8IJPQB5QY62V30QNP' where id=2; -update noar ti set v0='8IJPQB5QY62V30QNP' where id=2; -update noar tt set b1='YBPBGZQRFF1R0VLQTN6FO0' where id=2; -update noar ti set b1='YBPBGZQRFF1R0VLQTN6FO0' where id=2; -update noar tt set v0='GT2NMHWCMJA1SPK1R2OBX9' where id=2; -update noar ti set v0='GT2NMHWCMJA1SPK1R2OBX9' where id=2; -update noar tt set b2='CBUJW6RBNX8BWYCCE75ZSDP7TC8NFKB' where id=2; -update noar ti set b2='CBUJW6RBNX8BWYCCE75ZSDP7TC8NFKB' where id=2; -update noar tt set v0='6VQ3MVYTKB1POM8ELRA983LI' where id=3; -update noar ti set v0='6VQ3MVYTKB1POM8ELRA983LI' where id=3; -update noar tt set b0='ERI1I5Z8ZEF2BPD8VDETD9NN28BX' where id=3; -update noar ti set b0='ERI1I5Z8ZEF2BPD8VDETD9NN28BX' where id=3; -update noar tt set v0='D2CTCQV' where id=3; -update noar ti set v0='D2CTCQV' where id=3; -update noar tt set b1='0YVH37BRDL74OFXJL4CGQYYJI6I2' where id=3; -update noar ti set b1='0YVH37BRDL74OFXJL4CGQYYJI6I2' where id=3; -update noar tt set v0='UFPM3BZ1L39KCUV4EMEU' where id=3; -update noar ti set v0='UFPM3BZ1L39KCUV4EMEU' where id=3; -update noar tt set b2='WRCP9DBQKMGQZSE2PV5A5UN19UHXL' where id=3; -update noar ti set b2='WRCP9DBQKMGQZSE2PV5A5UN19UHXL' where id=3; -update noar tt set v0='YW9Y2' where id=4; -update noar ti set v0='YW9Y2' where id=4; -update noar tt set b0='S66AEROOH4IV9' where id=4; -update noar ti set b0='S66AEROOH4IV9' where id=4; -update noar tt set v0='DXEXU3A3GBUBLBKLQKUPFLSOY8AKBKVV' where id=4; -update noar ti set v0='DXEXU3A3GBUBLBKLQKUPFLSOY8AKBKVV' where id=4; -update noar tt set b1='366U66S2T9JNP' where id=4; -update noar ti set b1='366U66S2T9JNP' where id=4; -update noar tt set v0='HCR64N1CT12T8XUPGETMYTPOPLB' where id=4; -update noar ti set v0='HCR64N1CT12T8XUPGETMYTPOPLB' where id=4; -update noar tt set b2='O5BJD1RXAE7YC03T5' where id=4; -update noar ti set b2='O5BJD1RXAE7YC03T5' where id=4; -update noar tt set v0='Q4XSM6EDTJC' where id=5; -update noar ti set v0='Q4XSM6EDTJC' where id=5; -update noar tt set b0='IT72' where id=5; -update noar ti set b0='IT72' where id=5; -update noar tt set v0='N7AS66FIASORGQW3DSYZF4M9ZZVO4' where id=5; -update noar ti set v0='N7AS66FIASORGQW3DSYZF4M9ZZVO4' where id=5; -update noar tt set b1='SR0RDFEJYDVJ36X047H5ML' where id=5; -update noar ti set b1='SR0RDFEJYDVJ36X047H5ML' where id=5; -update noar tt set v0='38G7' where id=5; -update noar ti set v0='38G7' where id=5; -update noar tt set b2='F8IC8EKXZVVGG3WBDXP' where id=5; -update noar ti set b2='F8IC8EKXZVVGG3WBDXP' where id=5; -update noar tt set v0='CTK5UK51O' where id=6; -update noar ti set v0='CTK5UK51O' where id=6; -update noar tt set b0='L1P6AYNNZ8FJ' where id=6; -update noar ti set b0='L1P6AYNNZ8FJ' where id=6; -update noar tt set v0='8P1C8AYNRHQRYCGV06CA9GH64X53F' where id=6; -update noar ti set v0='8P1C8AYNRHQRYCGV06CA9GH64X53F' where id=6; -update noar tt set b1='FPHV49XBPAUG' where id=6; -update noar ti set b1='FPHV49XBPAUG' where id=6; -update noar tt set v0='EV6MQJQCP' where id=6; -update noar ti set v0='EV6MQJQCP' where id=6; -update noar tt set b2='TCD7BHFAEX3V8ULH0I' where id=6; -update noar ti set b2='TCD7BHFAEX3V8ULH0I' where id=6; -update noar tt set v0='8SBDXZHEIZXXZWRODV' where id=7; -update noar ti set v0='8SBDXZHEIZXXZWRODV' where id=7; -update noar tt set b0='DNEDD7U3J8E2' where id=7; -update noar ti set b0='DNEDD7U3J8E2' where id=7; -update noar tt set v0='QLM0PKRSHEWD97V4W0980N0' where id=7; -update noar ti set v0='QLM0PKRSHEWD97V4W0980N0' where id=7; -update noar tt set b1='M12ABZP9XTESDPLMP4C3EJH6' where id=7; -update noar ti set b1='M12ABZP9XTESDPLMP4C3EJH6' where id=7; -update noar tt set v0='TJG7FYG2' where id=7; -update noar ti set v0='TJG7FYG2' where id=7; -update noar tt set b2='XJ77US2RX27X13UP2XNVQ9' where id=7; -update noar ti set b2='XJ77US2RX27X13UP2XNVQ9' where id=7; -update noar tt set v0='09WEKFIFA4A89NT5G6CS5BMNXYDP61B' where id=8; -update noar ti set v0='09WEKFIFA4A89NT5G6CS5BMNXYDP61B' where id=8; -update noar tt set b0='SFSJ7OK0IDVR929EN6ARE1OZ66GZRR8M' where id=8; -update noar ti set b0='SFSJ7OK0IDVR929EN6ARE1OZ66GZRR8M' where id=8; -update noar tt set v0='TP3VBDMNWLHIB4L9JRGDZ4DIDF9S' where id=8; -update noar ti set v0='TP3VBDMNWLHIB4L9JRGDZ4DIDF9S' where id=8; -update noar tt set b1='B584ISQ609ZZT0XOESRNZY985J' where id=8; -update noar ti set b1='B584ISQ609ZZT0XOESRNZY985J' where id=8; -update noar tt set v0='2A7JLBC66U7M2XKQH' where id=8; -update noar ti set v0='2A7JLBC66U7M2XKQH' where id=8; -update noar tt set b2='68ZZQ' where id=8; -update noar ti set b2='68ZZQ' where id=8; -update noar tt set v0='ZG2AUMEYP84C10E84JLRHMI7YCOZO7FK' where id=9; -update noar ti set v0='ZG2AUMEYP84C10E84JLRHMI7YCOZO7FK' where id=9; -update noar tt set b0='PUJFIX793HCU' where id=9; -update noar ti set b0='PUJFIX793HCU' where id=9; -update noar tt set v0='F621WRGT4TP49E9YKVFCRG85UMJ0F' where id=9; -update noar ti set v0='F621WRGT4TP49E9YKVFCRG85UMJ0F' where id=9; -update noar tt set b1='V516HJNAMD0I42VD0AUN0H7VSDPLWZU6' where id=9; -update noar ti set b1='V516HJNAMD0I42VD0AUN0H7VSDPLWZU6' where id=9; -update noar tt set v0='IQD' where id=9; -update noar ti set v0='IQD' where id=9; -update noar tt set b2='8NUK3TXA846PXVBDF8Q9I5NWEEJ' where id=9; -update noar ti set b2='8NUK3TXA846PXVBDF8Q9I5NWEEJ' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -v0 varchar(256) not null, -b0 longblob not null, -b1 mediumblob not null, -b2 blob not null -) engine=tokudb; -insert into tt values (1,'','','',''); -insert into tt values (2,'','','',''); -insert into tt values (3,'','','',''); -insert into tt values (4,'','','',''); -insert into tt values (5,'','','',''); -insert into tt values (6,'','','',''); -insert into tt values (7,'','','',''); -insert into tt values (8,'','','',''); -insert into tt values (9,'','','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='FME77XFX8HT' where id=1; -update noar ti set v0='FME77XFX8HT' where id=1; -update noar tt set b0='7YDHKFEIYB5CB24KV9PXDIRU9WCDZ9CQ' where id=1; -update noar ti set b0='7YDHKFEIYB5CB24KV9PXDIRU9WCDZ9CQ' where id=1; -update noar tt set v0='M3LZN8GQH98FM' where id=1; -update noar ti set v0='M3LZN8GQH98FM' where id=1; -update noar tt set b1='4P9VBC31GLFT' where id=1; -update noar ti set b1='4P9VBC31GLFT' where id=1; -update noar tt set v0='DEUK' where id=1; -update noar ti set v0='DEUK' where id=1; -update noar tt set b2='FNLX15HDQK' where id=1; -update noar ti set b2='FNLX15HDQK' where id=1; -update noar tt set v0='30A8KSEINAA9K' where id=2; -update noar ti set v0='30A8KSEINAA9K' where id=2; -update noar tt set b0='19Y4BUYPQORPRY36' where id=2; -update noar ti set b0='19Y4BUYPQORPRY36' where id=2; -update noar tt set v0='ANLTWPN5J4YHSA26MRYUCCTZ90DV' where id=2; -update noar ti set v0='ANLTWPN5J4YHSA26MRYUCCTZ90DV' where id=2; -update noar tt set b1='N87HND4V6Q4' where id=2; -update noar ti set b1='N87HND4V6Q4' where id=2; -update noar tt set v0='R7PYFPMJJ5G66E4Z2' where id=2; -update noar ti set v0='R7PYFPMJJ5G66E4Z2' where id=2; -update noar tt set b2='EGNRYF5AEZ0YDD' where id=2; -update noar ti set b2='EGNRYF5AEZ0YDD' where id=2; -update noar tt set v0='TVTV64N350LF5MPMIXNVEJ75' where id=3; -update noar ti set v0='TVTV64N350LF5MPMIXNVEJ75' where id=3; -update noar tt set b0='H4CBMCNTU' where id=3; -update noar ti set b0='H4CBMCNTU' where id=3; -update noar tt set v0='NN' where id=3; -update noar ti set v0='NN' where id=3; -update noar tt set b1='0GX2XQL4SHH' where id=3; -update noar ti set b1='0GX2XQL4SHH' where id=3; -update noar tt set v0='WSZR2498E3MCXLGVLAHME5QC0T1' where id=3; -update noar ti set v0='WSZR2498E3MCXLGVLAHME5QC0T1' where id=3; -update noar tt set b2='0GSN12RLPSONISN1U' where id=3; -update noar ti set b2='0GSN12RLPSONISN1U' where id=3; -update noar tt set v0='SNNDVAJT2CMC009OSE' where id=4; -update noar ti set v0='SNNDVAJT2CMC009OSE' where id=4; -update noar tt set b0='QZIQNF6XMO9B7GBHDC39Y77' where id=4; -update noar ti set b0='QZIQNF6XMO9B7GBHDC39Y77' where id=4; -update noar tt set v0='7VFGU17XSOYWXOKODDD8C3KXAF1' where id=4; -update noar ti set v0='7VFGU17XSOYWXOKODDD8C3KXAF1' where id=4; -update noar tt set b1='GTK3HFPND' where id=4; -update noar ti set b1='GTK3HFPND' where id=4; -update noar tt set v0='C8L65XAHG' where id=4; -update noar ti set v0='C8L65XAHG' where id=4; -update noar tt set b2='LJS387EZC1YMQV1FYMYA4XUK0HWGAAKR' where id=4; -update noar ti set b2='LJS387EZC1YMQV1FYMYA4XUK0HWGAAKR' where id=4; -update noar tt set v0='J' where id=5; -update noar ti set v0='J' where id=5; -update noar tt set b0='PEEAU5N47WR' where id=5; -update noar ti set b0='PEEAU5N47WR' where id=5; -update noar tt set v0='1Z738TO6E7' where id=5; -update noar ti set v0='1Z738TO6E7' where id=5; -update noar tt set b1='S74DYHAUSA97NWRXM5T2JLANLJT7GMS' where id=5; -update noar ti set b1='S74DYHAUSA97NWRXM5T2JLANLJT7GMS' where id=5; -update noar tt set v0='SEBBBYRQKOJ49O5WH' where id=5; -update noar ti set v0='SEBBBYRQKOJ49O5WH' where id=5; -update noar tt set b2='2OTVKSVF322JN' where id=5; -update noar ti set b2='2OTVKSVF322JN' where id=5; -update noar tt set v0='91K2WCPVHJEBNOOTMII85P149J5RU' where id=6; -update noar ti set v0='91K2WCPVHJEBNOOTMII85P149J5RU' where id=6; -update noar tt set b0='K58DLLPGH2X9I7USC15VVC' where id=6; -update noar ti set b0='K58DLLPGH2X9I7USC15VVC' where id=6; -update noar tt set v0='HU6ZB1HYH73YHL' where id=6; -update noar ti set v0='HU6ZB1HYH73YHL' where id=6; -update noar tt set b1='S5K5X0G3DA99IPS5HDWUHO5CUBFDZV' where id=6; -update noar ti set b1='S5K5X0G3DA99IPS5HDWUHO5CUBFDZV' where id=6; -update noar tt set v0='MV3OLMODIPFIVUSJVBQG' where id=6; -update noar ti set v0='MV3OLMODIPFIVUSJVBQG' where id=6; -update noar tt set b2='EZQ9GRFZUJP67GJ1SS8VXQGQO64' where id=6; -update noar ti set b2='EZQ9GRFZUJP67GJ1SS8VXQGQO64' where id=6; -update noar tt set v0='K3KMHHZEQS9HN1' where id=7; -update noar ti set v0='K3KMHHZEQS9HN1' where id=7; -update noar tt set b0='K251SWEDZDSL79' where id=7; -update noar ti set b0='K251SWEDZDSL79' where id=7; -update noar tt set v0='XO7M' where id=7; -update noar ti set v0='XO7M' where id=7; -update noar tt set b1='UMBDSPYMBHVHB3EI3' where id=7; -update noar ti set b1='UMBDSPYMBHVHB3EI3' where id=7; -update noar tt set v0='ZPWUCVI7VIT' where id=7; -update noar ti set v0='ZPWUCVI7VIT' where id=7; -update noar tt set b2='RKEU' where id=7; -update noar ti set b2='RKEU' where id=7; -update noar tt set v0='GJ1GV1DF' where id=8; -update noar ti set v0='GJ1GV1DF' where id=8; -update noar tt set b0='G8TT460BFZ6C3OZ0QAZH7PIS5J4V' where id=8; -update noar ti set b0='G8TT460BFZ6C3OZ0QAZH7PIS5J4V' where id=8; -update noar tt set v0='41MJM605CH4EWX373399TOA272CP' where id=8; -update noar ti set v0='41MJM605CH4EWX373399TOA272CP' where id=8; -update noar tt set b1='1RHPS5FOUBYVPAEC79D' where id=8; -update noar ti set b1='1RHPS5FOUBYVPAEC79D' where id=8; -update noar tt set v0='TGJZQ8CTPAER55BHD2S' where id=8; -update noar ti set v0='TGJZQ8CTPAER55BHD2S' where id=8; -update noar tt set b2='MFZA7IQPA4KGWU972E' where id=8; -update noar ti set b2='MFZA7IQPA4KGWU972E' where id=8; -update noar tt set v0='JTO1Y630JQHY2J9ATLR8LR8FOOC4LN9' where id=9; -update noar ti set v0='JTO1Y630JQHY2J9ATLR8LR8FOOC4LN9' where id=9; -update noar tt set b0='UCBC95REM4' where id=9; -update noar ti set b0='UCBC95REM4' where id=9; -update noar tt set v0='H8VW26' where id=9; -update noar ti set v0='H8VW26' where id=9; -update noar tt set b1='IW5X02RZ9NWCL3KLIQ0T9H' where id=9; -update noar ti set b1='IW5X02RZ9NWCL3KLIQ0T9H' where id=9; -update noar tt set v0='9V1MX0SZ00QXS' where id=9; -update noar ti set v0='9V1MX0SZ00QXS' where id=9; -update noar tt set b2='D9E15RPWMKOPTMQC' where id=9; -update noar ti set b2='D9E15RPWMKOPTMQC' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -v0 varchar(32) null, -b0 longblob null, -b1 mediumblob null, -b2 mediumblob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='SJBTJFBY' where id=1; -update noar ti set v0='SJBTJFBY' where id=1; -update noar tt set b0='2P0BD7V89' where id=1; -update noar ti set b0='2P0BD7V89' where id=1; -update noar tt set v0='6DK7PVS' where id=1; -update noar ti set v0='6DK7PVS' where id=1; -update noar tt set b1='3EDI' where id=1; -update noar ti set b1='3EDI' where id=1; -update noar tt set v0='8RF' where id=1; -update noar ti set v0='8RF' where id=1; -update noar tt set b2='WPD24ZNHA55SRT93AD066DBNW' where id=1; -update noar ti set b2='WPD24ZNHA55SRT93AD066DBNW' where id=1; -update noar tt set v0='HJ798U3XK' where id=2; -update noar ti set v0='HJ798U3XK' where id=2; -update noar tt set b0='YHHQZ' where id=2; -update noar ti set b0='YHHQZ' where id=2; -update noar tt set v0='PCKJJU7F7Z9C5AI7P9EG6I8' where id=2; -update noar ti set v0='PCKJJU7F7Z9C5AI7P9EG6I8' where id=2; -update noar tt set b1='RF0M9S27M2UCOM3NXZ907QMU' where id=2; -update noar ti set b1='RF0M9S27M2UCOM3NXZ907QMU' where id=2; -update noar tt set v0='AW4SWOMZ1FTBFKI4HB1MWQ' where id=2; -update noar ti set v0='AW4SWOMZ1FTBFKI4HB1MWQ' where id=2; -update noar tt set b2='2H2S7N43OGN2FB1S7RMNQQDE4Q0JU' where id=2; -update noar ti set b2='2H2S7N43OGN2FB1S7RMNQQDE4Q0JU' where id=2; -update noar tt set v0='X3JSOWS7KOB9NV3V' where id=3; -update noar ti set v0='X3JSOWS7KOB9NV3V' where id=3; -update noar tt set b0='NO' where id=3; -update noar ti set b0='NO' where id=3; -update noar tt set v0='KXJZU0Z0K2RMGU9' where id=3; -update noar ti set v0='KXJZU0Z0K2RMGU9' where id=3; -update noar tt set b1='XS8ORTD7FLQG1E0' where id=3; -update noar ti set b1='XS8ORTD7FLQG1E0' where id=3; -update noar tt set v0='MUELL5VZ941O5BCGP2BO92JJFO4C3XG' where id=3; -update noar ti set v0='MUELL5VZ941O5BCGP2BO92JJFO4C3XG' where id=3; -update noar tt set b2='LPUO39GEGZ' where id=3; -update noar ti set b2='LPUO39GEGZ' where id=3; -update noar tt set v0='GEXJ5RTDCE' where id=4; -update noar ti set v0='GEXJ5RTDCE' where id=4; -update noar tt set b0='JNL8JLYKPKX31CPHHHCPN9P556XTDX3' where id=4; -update noar ti set b0='JNL8JLYKPKX31CPHHHCPN9P556XTDX3' where id=4; -update noar tt set v0='LP' where id=4; -update noar ti set v0='LP' where id=4; -update noar tt set b1='UZWKA6A2AE5D8FMP0BKKT7AL4VO36GM' where id=4; -update noar ti set b1='UZWKA6A2AE5D8FMP0BKKT7AL4VO36GM' where id=4; -update noar tt set v0='SF574' where id=4; -update noar ti set v0='SF574' where id=4; -update noar tt set b2='8PWGL3C' where id=4; -update noar ti set b2='8PWGL3C' where id=4; -update noar tt set v0='FW0TYH58E8UC1JD26J5LI' where id=5; -update noar ti set v0='FW0TYH58E8UC1JD26J5LI' where id=5; -update noar tt set b0='056' where id=5; -update noar ti set b0='056' where id=5; -update noar tt set v0='038PYFJHGH6MID0S77HP8RJQAH' where id=5; -update noar ti set v0='038PYFJHGH6MID0S77HP8RJQAH' where id=5; -update noar tt set b1='TRJ' where id=5; -update noar ti set b1='TRJ' where id=5; -update noar tt set v0='E77DGQIBFSDCLX0CFMR3CXTIM' where id=5; -update noar ti set v0='E77DGQIBFSDCLX0CFMR3CXTIM' where id=5; -update noar tt set b2='ADG2SMIWRR' where id=5; -update noar ti set b2='ADG2SMIWRR' where id=5; -update noar tt set v0='3WD8W4VMJ0235ND4M1843RZY492S' where id=6; -update noar ti set v0='3WD8W4VMJ0235ND4M1843RZY492S' where id=6; -update noar tt set b0='8ETYMSQO' where id=6; -update noar ti set b0='8ETYMSQO' where id=6; -update noar tt set v0='XDX17PMRJT4GT' where id=6; -update noar ti set v0='XDX17PMRJT4GT' where id=6; -update noar tt set b1='O3K9ZTZ9PO867' where id=6; -update noar ti set b1='O3K9ZTZ9PO867' where id=6; -update noar tt set v0='0' where id=6; -update noar ti set v0='0' where id=6; -update noar tt set b2='OAQJQ0' where id=6; -update noar ti set b2='OAQJQ0' where id=6; -update noar tt set v0='D1RD' where id=7; -update noar ti set v0='D1RD' where id=7; -update noar tt set b0='7JRBYJQ2ILXUQDEGSS2YH' where id=7; -update noar ti set b0='7JRBYJQ2ILXUQDEGSS2YH' where id=7; -update noar tt set v0='Y6PJ' where id=7; -update noar ti set v0='Y6PJ' where id=7; -update noar tt set b1='99SOGZBAHF' where id=7; -update noar ti set b1='99SOGZBAHF' where id=7; -update noar tt set v0='OG38T' where id=7; -update noar ti set v0='OG38T' where id=7; -update noar tt set b2='BR5SXFGS7SY7AODMDVGBBF02GM8LS4' where id=7; -update noar ti set b2='BR5SXFGS7SY7AODMDVGBBF02GM8LS4' where id=7; -update noar tt set v0='MQXX0R6UY1O' where id=8; -update noar ti set v0='MQXX0R6UY1O' where id=8; -update noar tt set b0='SCXVZJB2GXCGMMATGT0J6DG' where id=8; -update noar ti set b0='SCXVZJB2GXCGMMATGT0J6DG' where id=8; -update noar tt set v0='F96K5MZ6OYLK' where id=8; -update noar ti set v0='F96K5MZ6OYLK' where id=8; -update noar tt set b1='XXP79A9TH5E1NL1X3WZ' where id=8; -update noar ti set b1='XXP79A9TH5E1NL1X3WZ' where id=8; -update noar tt set v0='A' where id=8; -update noar ti set v0='A' where id=8; -update noar tt set b2='OCT0W2941UU0XWFMG29' where id=8; -update noar ti set b2='OCT0W2941UU0XWFMG29' where id=8; -update noar tt set v0='EQHZFJ2WQ92YCH8P01UEOTBF' where id=9; -update noar ti set v0='EQHZFJ2WQ92YCH8P01UEOTBF' where id=9; -update noar tt set b0='6' where id=9; -update noar ti set b0='6' where id=9; -update noar tt set v0='OF3UCX5SKADQ4KIF' where id=9; -update noar ti set v0='OF3UCX5SKADQ4KIF' where id=9; -update noar tt set b1='BYTQG9EQJVQTJIIC8' where id=9; -update noar ti set b1='BYTQG9EQJVQTJIIC8' where id=9; -update noar tt set v0='JSN3NW5EJJU4C540BZJZHK' where id=9; -update noar ti set v0='JSN3NW5EJJU4C540BZJZHK' where id=9; -update noar tt set b2='GMLCNHJVOODY62BVXNS544F91MO' where id=9; -update noar ti set b2='GMLCNHJVOODY62BVXNS544F91MO' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -v0 varchar(256) null, -b0 longblob null, -b1 mediumblob null, -b2 mediumblob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='AEGMDK8EYV80LO5N0F714KACBJ5XMV' where id=1; -update noar ti set v0='AEGMDK8EYV80LO5N0F714KACBJ5XMV' where id=1; -update noar tt set b0='5ZUR86QBTVDP93LIQ' where id=1; -update noar ti set b0='5ZUR86QBTVDP93LIQ' where id=1; -update noar tt set v0='5GNLQ' where id=1; -update noar ti set v0='5GNLQ' where id=1; -update noar tt set b1='IE0XF8HDL3PTSEFLVWM33T1U' where id=1; -update noar ti set b1='IE0XF8HDL3PTSEFLVWM33T1U' where id=1; -update noar tt set v0='XLA22WGK9SMP06N7RD0RDCVRXG' where id=1; -update noar ti set v0='XLA22WGK9SMP06N7RD0RDCVRXG' where id=1; -update noar tt set b2='QOA2PY6H1OP16DVOD1PC4' where id=1; -update noar ti set b2='QOA2PY6H1OP16DVOD1PC4' where id=1; -update noar tt set v0='4MDHHB7JKV8ZMLJT5W1BPZY' where id=2; -update noar ti set v0='4MDHHB7JKV8ZMLJT5W1BPZY' where id=2; -update noar tt set b0='FOPAO85BB78ZCT5U18M9JD' where id=2; -update noar ti set b0='FOPAO85BB78ZCT5U18M9JD' where id=2; -update noar tt set v0='TAFV3R39DWJTL5EHAAALI1CJY' where id=2; -update noar ti set v0='TAFV3R39DWJTL5EHAAALI1CJY' where id=2; -update noar tt set b1='TEY962JR9OE' where id=2; -update noar ti set b1='TEY962JR9OE' where id=2; -update noar tt set v0='CPFZ4IO' where id=2; -update noar ti set v0='CPFZ4IO' where id=2; -update noar tt set b2='HKSDHDHLX9P' where id=2; -update noar ti set b2='HKSDHDHLX9P' where id=2; -update noar tt set v0='QHXL2WU17IT' where id=3; -update noar ti set v0='QHXL2WU17IT' where id=3; -update noar tt set b0='I06H1EKO1NIMYJXF2O5C' where id=3; -update noar ti set b0='I06H1EKO1NIMYJXF2O5C' where id=3; -update noar tt set v0='UPT67K6K7FC8Z2' where id=3; -update noar ti set v0='UPT67K6K7FC8Z2' where id=3; -update noar tt set b1='X1M1EG132P4BL17XWE7XBN1B2GKUI' where id=3; -update noar ti set b1='X1M1EG132P4BL17XWE7XBN1B2GKUI' where id=3; -update noar tt set v0='A2SJT6C0IWQKM9I3' where id=3; -update noar ti set v0='A2SJT6C0IWQKM9I3' where id=3; -update noar tt set b2='I5YEITB973H84PFGQZ3XG3J' where id=3; -update noar ti set b2='I5YEITB973H84PFGQZ3XG3J' where id=3; -update noar tt set v0='RW7' where id=4; -update noar ti set v0='RW7' where id=4; -update noar tt set b0='UJQ3Z4N5C3NS3832A' where id=4; -update noar ti set b0='UJQ3Z4N5C3NS3832A' where id=4; -update noar tt set v0='N00IXPQCHO3TB0P671' where id=4; -update noar ti set v0='N00IXPQCHO3TB0P671' where id=4; -update noar tt set b1='P7TP9H4FA' where id=4; -update noar ti set b1='P7TP9H4FA' where id=4; -update noar tt set v0='VG24O291JX0EYG5UY' where id=4; -update noar ti set v0='VG24O291JX0EYG5UY' where id=4; -update noar tt set b2='CIZ3EYAITJANDCXSMKWID' where id=4; -update noar ti set b2='CIZ3EYAITJANDCXSMKWID' where id=4; -update noar tt set v0='PSN1WAALUNSAT' where id=5; -update noar ti set v0='PSN1WAALUNSAT' where id=5; -update noar tt set b0='WE2T801L006YN9J' where id=5; -update noar ti set b0='WE2T801L006YN9J' where id=5; -update noar tt set v0='724HJ9HCTL6I2G6A1TIOH2HDOKN' where id=5; -update noar ti set v0='724HJ9HCTL6I2G6A1TIOH2HDOKN' where id=5; -update noar tt set b1='DJA7' where id=5; -update noar ti set b1='DJA7' where id=5; -update noar tt set v0='04OUGOZ0MK1' where id=5; -update noar ti set v0='04OUGOZ0MK1' where id=5; -update noar tt set b2='UFS' where id=5; -update noar ti set b2='UFS' where id=5; -update noar tt set v0='B57M3DC4Y5FBHAFQUN8BZKWMJZ63CZ4' where id=6; -update noar ti set v0='B57M3DC4Y5FBHAFQUN8BZKWMJZ63CZ4' where id=6; -update noar tt set b0='6J6NPSZ67C2QRTFWV2PZN2W3QIMUG' where id=6; -update noar ti set b0='6J6NPSZ67C2QRTFWV2PZN2W3QIMUG' where id=6; -update noar tt set v0='6CSD7SPG4L936VTONHLQYNP196K063X' where id=6; -update noar ti set v0='6CSD7SPG4L936VTONHLQYNP196K063X' where id=6; -update noar tt set b1='US3CK8X8J8WQWHX5AFJ45AP6FIPKAM' where id=6; -update noar ti set b1='US3CK8X8J8WQWHX5AFJ45AP6FIPKAM' where id=6; -update noar tt set v0='MJUI09VTZ6QAAHLKXRNCV23B3Z7O' where id=6; -update noar ti set v0='MJUI09VTZ6QAAHLKXRNCV23B3Z7O' where id=6; -update noar tt set b2='MPTIN3UP2VYEFDUURAVLXWP24GH6U56' where id=6; -update noar ti set b2='MPTIN3UP2VYEFDUURAVLXWP24GH6U56' where id=6; -update noar tt set v0='OTVKMTCQ1QUQ3SKH5967SE' where id=7; -update noar ti set v0='OTVKMTCQ1QUQ3SKH5967SE' where id=7; -update noar tt set b0='96LBU3UD38V1517X4X0' where id=7; -update noar ti set b0='96LBU3UD38V1517X4X0' where id=7; -update noar tt set v0='2IT7WZJWAIT0I' where id=7; -update noar ti set v0='2IT7WZJWAIT0I' where id=7; -update noar tt set b1='V3C4JW70IOP97RJWDMCSSX' where id=7; -update noar ti set b1='V3C4JW70IOP97RJWDMCSSX' where id=7; -update noar tt set v0='L9G3' where id=7; -update noar ti set v0='L9G3' where id=7; -update noar tt set b2='LRLO45QI6A6SCLFV7NOI13QLW' where id=7; -update noar ti set b2='LRLO45QI6A6SCLFV7NOI13QLW' where id=7; -update noar tt set v0='42NLOT4UQFS' where id=8; -update noar ti set v0='42NLOT4UQFS' where id=8; -update noar tt set b0='S62B8XDFSSQ0' where id=8; -update noar ti set b0='S62B8XDFSSQ0' where id=8; -update noar tt set v0='X76ZFPSI6' where id=8; -update noar ti set v0='X76ZFPSI6' where id=8; -update noar tt set b1='FXK' where id=8; -update noar ti set b1='FXK' where id=8; -update noar tt set v0='MSNUUCHC4D' where id=8; -update noar ti set v0='MSNUUCHC4D' where id=8; -update noar tt set b2='T0XXZ3DB' where id=8; -update noar ti set b2='T0XXZ3DB' where id=8; -update noar tt set v0='I8IWTMSE' where id=9; -update noar ti set v0='I8IWTMSE' where id=9; -update noar tt set b0='1UO' where id=9; -update noar ti set b0='1UO' where id=9; -update noar tt set v0='JT' where id=9; -update noar ti set v0='JT' where id=9; -update noar tt set b1='XF7YZLXM8TS7V44I1OBBLAYCLMTDMJE' where id=9; -update noar ti set b1='XF7YZLXM8TS7V44I1OBBLAYCLMTDMJE' where id=9; -update noar tt set v0='TH5E9Z' where id=9; -update noar ti set v0='TH5E9Z' where id=9; -update noar tt set b2='222NO4NTFXSOM57' where id=9; -update noar ti set b2='222NO4NTFXSOM57' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -v0 varchar(32) not null, -b0 longblob not null, -b1 mediumblob not null, -b2 mediumblob not null -) engine=tokudb; -insert into tt values (1,'','','',''); -insert into tt values (2,'','','',''); -insert into tt values (3,'','','',''); -insert into tt values (4,'','','',''); -insert into tt values (5,'','','',''); -insert into tt values (6,'','','',''); -insert into tt values (7,'','','',''); -insert into tt values (8,'','','',''); -insert into tt values (9,'','','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='5YIBB5UNICW9845FJBUCTO' where id=1; -update noar ti set v0='5YIBB5UNICW9845FJBUCTO' where id=1; -update noar tt set b0='MXN7' where id=1; -update noar ti set b0='MXN7' where id=1; -update noar tt set v0='KUJVXXVC7JOR5DQP' where id=1; -update noar ti set v0='KUJVXXVC7JOR5DQP' where id=1; -update noar tt set b1='6D15RMD9AP1PJLXG2X0PETP24JC' where id=1; -update noar ti set b1='6D15RMD9AP1PJLXG2X0PETP24JC' where id=1; -update noar tt set v0='Y5EQSR52HVK98VLCMCUBPMW4HZH4D' where id=1; -update noar ti set v0='Y5EQSR52HVK98VLCMCUBPMW4HZH4D' where id=1; -update noar tt set b2='NPZQWM6' where id=1; -update noar ti set b2='NPZQWM6' where id=1; -update noar tt set v0='7IIYB8' where id=2; -update noar ti set v0='7IIYB8' where id=2; -update noar tt set b0='3XA8WDH4ILAZXZ3MYN' where id=2; -update noar ti set b0='3XA8WDH4ILAZXZ3MYN' where id=2; -update noar tt set v0='T3QGJ9J7NRHJI6K1D' where id=2; -update noar ti set v0='T3QGJ9J7NRHJI6K1D' where id=2; -update noar tt set b1='HY' where id=2; -update noar ti set b1='HY' where id=2; -update noar tt set v0='YDV2S0YCTQ8RASJJ2HS' where id=2; -update noar ti set v0='YDV2S0YCTQ8RASJJ2HS' where id=2; -update noar tt set b2='0JNS9N9BRIUGHIGJUTVZLYVE887' where id=2; -update noar ti set b2='0JNS9N9BRIUGHIGJUTVZLYVE887' where id=2; -update noar tt set v0='1UDERKW4U60UYANPN7XZ9S8N' where id=3; -update noar ti set v0='1UDERKW4U60UYANPN7XZ9S8N' where id=3; -update noar tt set b0='E8DE7XU' where id=3; -update noar ti set b0='E8DE7XU' where id=3; -update noar tt set v0='GRAD2LTLER' where id=3; -update noar ti set v0='GRAD2LTLER' where id=3; -update noar tt set b1='CPKQOCLGYDOP18' where id=3; -update noar ti set b1='CPKQOCLGYDOP18' where id=3; -update noar tt set v0='9I7HF5S6JFDGQRJAYK5QT5VV4' where id=3; -update noar ti set v0='9I7HF5S6JFDGQRJAYK5QT5VV4' where id=3; -update noar tt set b2='YI' where id=3; -update noar ti set b2='YI' where id=3; -update noar tt set v0='H' where id=4; -update noar ti set v0='H' where id=4; -update noar tt set b0='VNFPJJKXK91C' where id=4; -update noar ti set b0='VNFPJJKXK91C' where id=4; -update noar tt set v0='BXK6KLIBNT8OPMDP1DKBONRP6BBB5ZVD' where id=4; -update noar ti set v0='BXK6KLIBNT8OPMDP1DKBONRP6BBB5ZVD' where id=4; -update noar tt set b1='LVRAWWTLD79J77P705WWWSZ1W34DZRB' where id=4; -update noar ti set b1='LVRAWWTLD79J77P705WWWSZ1W34DZRB' where id=4; -update noar tt set v0='V' where id=4; -update noar ti set v0='V' where id=4; -update noar tt set b2='00Z6QQ' where id=4; -update noar ti set b2='00Z6QQ' where id=4; -update noar tt set v0='53C8BD8' where id=5; -update noar ti set v0='53C8BD8' where id=5; -update noar tt set b0='6LM17NK1' where id=5; -update noar ti set b0='6LM17NK1' where id=5; -update noar tt set v0='Y0TUAR0QU0QO8U' where id=5; -update noar ti set v0='Y0TUAR0QU0QO8U' where id=5; -update noar tt set b1='0CPIUW' where id=5; -update noar ti set b1='0CPIUW' where id=5; -update noar tt set v0='TXX80PRDST6ZKF' where id=5; -update noar ti set v0='TXX80PRDST6ZKF' where id=5; -update noar tt set b2='ANHBGV8GFJM' where id=5; -update noar ti set b2='ANHBGV8GFJM' where id=5; -update noar tt set v0='7AMA7A2G7I4YRGQK2JZ2YPLRRRSYI' where id=6; -update noar ti set v0='7AMA7A2G7I4YRGQK2JZ2YPLRRRSYI' where id=6; -update noar tt set b0='K0OHWH6TGS3XN' where id=6; -update noar ti set b0='K0OHWH6TGS3XN' where id=6; -update noar tt set v0='S8MK5XH9C7ERQKQCT0239TY8XJ7' where id=6; -update noar ti set v0='S8MK5XH9C7ERQKQCT0239TY8XJ7' where id=6; -update noar tt set b1='5' where id=6; -update noar ti set b1='5' where id=6; -update noar tt set v0='5KA8V1OMWDB2Z9UDYQK' where id=6; -update noar ti set v0='5KA8V1OMWDB2Z9UDYQK' where id=6; -update noar tt set b2='817L591' where id=6; -update noar ti set b2='817L591' where id=6; -update noar tt set v0='I58CWEWAOBC0HHXHDJSA0NAKAUIXF' where id=7; -update noar ti set v0='I58CWEWAOBC0HHXHDJSA0NAKAUIXF' where id=7; -update noar tt set b0='QFRXQ3NOOX1RKXLQBO9G5K' where id=7; -update noar ti set b0='QFRXQ3NOOX1RKXLQBO9G5K' where id=7; -update noar tt set v0='H54KHZJB5' where id=7; -update noar ti set v0='H54KHZJB5' where id=7; -update noar tt set b1='PLBFN5IDR9S0DV4IIUYV63H0GISSHN' where id=7; -update noar ti set b1='PLBFN5IDR9S0DV4IIUYV63H0GISSHN' where id=7; -update noar tt set v0='4UF9' where id=7; -update noar ti set v0='4UF9' where id=7; -update noar tt set b2='CBD6U6MUZHWS4RY1W5' where id=7; -update noar ti set b2='CBD6U6MUZHWS4RY1W5' where id=7; -update noar tt set v0='V4VEFIGTJ5S67Z6MVQZ' where id=8; -update noar ti set v0='V4VEFIGTJ5S67Z6MVQZ' where id=8; -update noar tt set b0='CFIF77FGMJ4BUJG5V3ZB5XW3D' where id=8; -update noar ti set b0='CFIF77FGMJ4BUJG5V3ZB5XW3D' where id=8; -update noar tt set v0='4' where id=8; -update noar ti set v0='4' where id=8; -update noar tt set b1='SSR74TAPELE03RMYQAFT' where id=8; -update noar ti set b1='SSR74TAPELE03RMYQAFT' where id=8; -update noar tt set v0='07GYC0C26KXP37NWZE1MO' where id=8; -update noar ti set v0='07GYC0C26KXP37NWZE1MO' where id=8; -update noar tt set b2='KUTT43527FXLKUMRRZ2JVMYUQUI' where id=8; -update noar ti set b2='KUTT43527FXLKUMRRZ2JVMYUQUI' where id=8; -update noar tt set v0='PVQ50MWWW' where id=9; -update noar ti set v0='PVQ50MWWW' where id=9; -update noar tt set b0='L0O9FP02FNGD6BY00WCSUSASAQZ' where id=9; -update noar ti set b0='L0O9FP02FNGD6BY00WCSUSASAQZ' where id=9; -update noar tt set v0='08943H3VSMOBTTP7L9CPKFEAG3' where id=9; -update noar ti set v0='08943H3VSMOBTTP7L9CPKFEAG3' where id=9; -update noar tt set b1='7RUY5OQDD8' where id=9; -update noar ti set b1='7RUY5OQDD8' where id=9; -update noar tt set v0='MY8OYZTR0UNYNZO59ZW23KZTJLNUUV2' where id=9; -update noar ti set v0='MY8OYZTR0UNYNZO59ZW23KZTJLNUUV2' where id=9; -update noar tt set b2='FVEE4VTIENXXZUK8PV4W5NJ' where id=9; -update noar ti set b2='FVEE4VTIENXXZUK8PV4W5NJ' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -v0 varchar(256) not null, -b0 longblob not null, -b1 mediumblob not null, -b2 mediumblob not null -) engine=tokudb; -insert into tt values (1,'','','',''); -insert into tt values (2,'','','',''); -insert into tt values (3,'','','',''); -insert into tt values (4,'','','',''); -insert into tt values (5,'','','',''); -insert into tt values (6,'','','',''); -insert into tt values (7,'','','',''); -insert into tt values (8,'','','',''); -insert into tt values (9,'','','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='S3WOBYMKV629I7E1XUJCG163' where id=1; -update noar ti set v0='S3WOBYMKV629I7E1XUJCG163' where id=1; -update noar tt set b0='7GSYV' where id=1; -update noar ti set b0='7GSYV' where id=1; -update noar tt set v0='JMP59E0SBEI5UKS2CF1' where id=1; -update noar ti set v0='JMP59E0SBEI5UKS2CF1' where id=1; -update noar tt set b1='BR44HNYO9JJV9NNPMVST' where id=1; -update noar ti set b1='BR44HNYO9JJV9NNPMVST' where id=1; -update noar tt set v0='R4NKM8LXH2' where id=1; -update noar ti set v0='R4NKM8LXH2' where id=1; -update noar tt set b2='VE2LB0DFDES1CB97V' where id=1; -update noar ti set b2='VE2LB0DFDES1CB97V' where id=1; -update noar tt set v0='NWWCS9HVGWBNEBIMCZA23' where id=2; -update noar ti set v0='NWWCS9HVGWBNEBIMCZA23' where id=2; -update noar tt set b0='QOGKOYP2RWVRJJXHJ9M91R5LN3U' where id=2; -update noar ti set b0='QOGKOYP2RWVRJJXHJ9M91R5LN3U' where id=2; -update noar tt set v0='YUAQ3E' where id=2; -update noar ti set v0='YUAQ3E' where id=2; -update noar tt set b1='1DCYTJTC2KJT9JZEQPDNI9N0JODU' where id=2; -update noar ti set b1='1DCYTJTC2KJT9JZEQPDNI9N0JODU' where id=2; -update noar tt set v0='MJMLFBB' where id=2; -update noar ti set v0='MJMLFBB' where id=2; -update noar tt set b2='UT0ZYO6DKRZIG54C772MDG' where id=2; -update noar ti set b2='UT0ZYO6DKRZIG54C772MDG' where id=2; -update noar tt set v0='BWTS5XCE563B61T3CP4DMO' where id=3; -update noar ti set v0='BWTS5XCE563B61T3CP4DMO' where id=3; -update noar tt set b0='EIW7WSKT0MEGBJJMEO' where id=3; -update noar ti set b0='EIW7WSKT0MEGBJJMEO' where id=3; -update noar tt set v0='EPICL7Z14LG9' where id=3; -update noar ti set v0='EPICL7Z14LG9' where id=3; -update noar tt set b1='8B0DOJL2JE7K10LACH2ERDOBUQDB0F' where id=3; -update noar ti set b1='8B0DOJL2JE7K10LACH2ERDOBUQDB0F' where id=3; -update noar tt set v0='JKW946I5U2676TEFELJC0I3DSOMKCKRB' where id=3; -update noar ti set v0='JKW946I5U2676TEFELJC0I3DSOMKCKRB' where id=3; -update noar tt set b2='IALFJJ7K40IXNQU8' where id=3; -update noar ti set b2='IALFJJ7K40IXNQU8' where id=3; -update noar tt set v0='ORHEIO52QFHWJ4A3' where id=4; -update noar ti set v0='ORHEIO52QFHWJ4A3' where id=4; -update noar tt set b0='GRYJN4R2AHE' where id=4; -update noar ti set b0='GRYJN4R2AHE' where id=4; -update noar tt set v0='V37WORKOR9O' where id=4; -update noar ti set v0='V37WORKOR9O' where id=4; -update noar tt set b1='FDBVAG' where id=4; -update noar ti set b1='FDBVAG' where id=4; -update noar tt set v0='UZBFL9UHEPE7OTV04GETP' where id=4; -update noar ti set v0='UZBFL9UHEPE7OTV04GETP' where id=4; -update noar tt set b2='CM8EMC1YNNS7UEF4GP4M18KMBXJRGN' where id=4; -update noar ti set b2='CM8EMC1YNNS7UEF4GP4M18KMBXJRGN' where id=4; -update noar tt set v0='KADFFXAAU5QLA9T5BLPL583' where id=5; -update noar ti set v0='KADFFXAAU5QLA9T5BLPL583' where id=5; -update noar tt set b0='36S59X86VT' where id=5; -update noar ti set b0='36S59X86VT' where id=5; -update noar tt set v0='FX5EHG28EHYWCRLL6' where id=5; -update noar ti set v0='FX5EHG28EHYWCRLL6' where id=5; -update noar tt set b1='RVWERPBBNP58QPJHQEFL6KGXB08PY' where id=5; -update noar ti set b1='RVWERPBBNP58QPJHQEFL6KGXB08PY' where id=5; -update noar tt set v0='QTYVPED8KKZ5S5QU601VDVXBLM8' where id=5; -update noar ti set v0='QTYVPED8KKZ5S5QU601VDVXBLM8' where id=5; -update noar tt set b2='GNPJ8Q48R10OUHK347Q2D240ZRPSV' where id=5; -update noar ti set b2='GNPJ8Q48R10OUHK347Q2D240ZRPSV' where id=5; -update noar tt set v0='FK0DK4SCUA4G3REDN5HOTM4IKDVAI2BB' where id=6; -update noar ti set v0='FK0DK4SCUA4G3REDN5HOTM4IKDVAI2BB' where id=6; -update noar tt set b0='QD97N3TTIL3' where id=6; -update noar ti set b0='QD97N3TTIL3' where id=6; -update noar tt set v0='4NF378ECWJ' where id=6; -update noar ti set v0='4NF378ECWJ' where id=6; -update noar tt set b1='LAAW46MQHWT6A' where id=6; -update noar ti set b1='LAAW46MQHWT6A' where id=6; -update noar tt set v0='2FTO3NIS' where id=6; -update noar ti set v0='2FTO3NIS' where id=6; -update noar tt set b2='WEB38FB8YMHHLCPV' where id=6; -update noar ti set b2='WEB38FB8YMHHLCPV' where id=6; -update noar tt set v0='ZNXXVVB' where id=7; -update noar ti set v0='ZNXXVVB' where id=7; -update noar tt set b0='UF5P19DYI3' where id=7; -update noar ti set b0='UF5P19DYI3' where id=7; -update noar tt set v0='1UBGXLDMB' where id=7; -update noar ti set v0='1UBGXLDMB' where id=7; -update noar tt set b1='PVL9NH95K4NEQXDQLNWQ4B' where id=7; -update noar ti set b1='PVL9NH95K4NEQXDQLNWQ4B' where id=7; -update noar tt set v0='EUB8FA6TBQT1HNWQGIC75SIZ889' where id=7; -update noar ti set v0='EUB8FA6TBQT1HNWQGIC75SIZ889' where id=7; -update noar tt set b2='8YQR2W5UP50MTPW690WQUC0RZNL8' where id=7; -update noar ti set b2='8YQR2W5UP50MTPW690WQUC0RZNL8' where id=7; -update noar tt set v0='LUWLJORIA7POZCB' where id=8; -update noar ti set v0='LUWLJORIA7POZCB' where id=8; -update noar tt set b0='2TVGNOR' where id=8; -update noar ti set b0='2TVGNOR' where id=8; -update noar tt set v0='BPM4GRLCJGT7QCAR6V5R3Z64W' where id=8; -update noar ti set v0='BPM4GRLCJGT7QCAR6V5R3Z64W' where id=8; -update noar tt set b1='O170TG' where id=8; -update noar ti set b1='O170TG' where id=8; -update noar tt set v0='GIYB3SKHI1YHZFV' where id=8; -update noar ti set v0='GIYB3SKHI1YHZFV' where id=8; -update noar tt set b2='XBJEJ7IZNL22RHKA' where id=8; -update noar ti set b2='XBJEJ7IZNL22RHKA' where id=8; -update noar tt set v0='3KFAL' where id=9; -update noar ti set v0='3KFAL' where id=9; -update noar tt set b0='LPHWJCBIQ4JNNBDZKENL5RT3AWVUDHVE' where id=9; -update noar ti set b0='LPHWJCBIQ4JNNBDZKENL5RT3AWVUDHVE' where id=9; -update noar tt set v0='J4WP' where id=9; -update noar ti set v0='J4WP' where id=9; -update noar tt set b1='E9C4DU0LWIR0052208LIZDWUX3' where id=9; -update noar ti set b1='E9C4DU0LWIR0052208LIZDWUX3' where id=9; -update noar tt set v0='KU' where id=9; -update noar ti set v0='KU' where id=9; -update noar tt set b2='E8T' where id=9; -update noar ti set b2='E8T' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -v0 varchar(32) null, -b0 longblob null, -b1 mediumblob null, -b2 longblob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='R3K75JPZ7DBNDLWGKZWUN7JFQ0LVVNKD' where id=1; -update noar ti set v0='R3K75JPZ7DBNDLWGKZWUN7JFQ0LVVNKD' where id=1; -update noar tt set b0='CEXAX0IX02SS6E7AKO1H8US' where id=1; -update noar ti set b0='CEXAX0IX02SS6E7AKO1H8US' where id=1; -update noar tt set v0='0FPUB1ABYX7L7DQW5EWTFCYN0' where id=1; -update noar ti set v0='0FPUB1ABYX7L7DQW5EWTFCYN0' where id=1; -update noar tt set b1='MUYE4FEQZ5' where id=1; -update noar ti set b1='MUYE4FEQZ5' where id=1; -update noar tt set v0='CJVU7TTVU9Z708FZH059JLWRSP' where id=1; -update noar ti set v0='CJVU7TTVU9Z708FZH059JLWRSP' where id=1; -update noar tt set b2='TWCPR' where id=1; -update noar ti set b2='TWCPR' where id=1; -update noar tt set v0='MTEZE8LTCJPIDKSJWXE' where id=2; -update noar ti set v0='MTEZE8LTCJPIDKSJWXE' where id=2; -update noar tt set b0='QIAIZUVDN8YM' where id=2; -update noar ti set b0='QIAIZUVDN8YM' where id=2; -update noar tt set v0='TFGRNU2QU' where id=2; -update noar ti set v0='TFGRNU2QU' where id=2; -update noar tt set b1='7BCLZC2NE52505OKEYE6HCM5I' where id=2; -update noar ti set b1='7BCLZC2NE52505OKEYE6HCM5I' where id=2; -update noar tt set v0='JE' where id=2; -update noar ti set v0='JE' where id=2; -update noar tt set b2='3QYP8R05V8ST' where id=2; -update noar ti set b2='3QYP8R05V8ST' where id=2; -update noar tt set v0='312J4UC0M6MSUYYKHTN4SL5JYG' where id=3; -update noar ti set v0='312J4UC0M6MSUYYKHTN4SL5JYG' where id=3; -update noar tt set b0='PA7IDPT95SW2OW5' where id=3; -update noar ti set b0='PA7IDPT95SW2OW5' where id=3; -update noar tt set v0='2X6H0H' where id=3; -update noar ti set v0='2X6H0H' where id=3; -update noar tt set b1='8BQHCICPE' where id=3; -update noar ti set b1='8BQHCICPE' where id=3; -update noar tt set v0='WFVTH1Q9O4BP5A14957VS' where id=3; -update noar ti set v0='WFVTH1Q9O4BP5A14957VS' where id=3; -update noar tt set b2='DRZ3JOLF9BE' where id=3; -update noar ti set b2='DRZ3JOLF9BE' where id=3; -update noar tt set v0='39W8FXHK14GYLKHCUS' where id=4; -update noar ti set v0='39W8FXHK14GYLKHCUS' where id=4; -update noar tt set b0='PY20H353UIANN3I8G8O9AKY' where id=4; -update noar ti set b0='PY20H353UIANN3I8G8O9AKY' where id=4; -update noar tt set v0='KGJB3HFFKRE72JXWMET2DPIW90P' where id=4; -update noar ti set v0='KGJB3HFFKRE72JXWMET2DPIW90P' where id=4; -update noar tt set b1='J1GRMTVT746A63V3BKHD3U' where id=4; -update noar ti set b1='J1GRMTVT746A63V3BKHD3U' where id=4; -update noar tt set v0='IXUJPWUTCL4MXPMUBITCC14NOIQP4Y' where id=4; -update noar ti set v0='IXUJPWUTCL4MXPMUBITCC14NOIQP4Y' where id=4; -update noar tt set b2='X6VKEIHA' where id=4; -update noar ti set b2='X6VKEIHA' where id=4; -update noar tt set v0='2HM74' where id=5; -update noar ti set v0='2HM74' where id=5; -update noar tt set b0='Q1MZZHM7C7AQELLNCBV2YV' where id=5; -update noar ti set b0='Q1MZZHM7C7AQELLNCBV2YV' where id=5; -update noar tt set v0='YNDEJGCQ29SOCEILQ2CEZU' where id=5; -update noar ti set v0='YNDEJGCQ29SOCEILQ2CEZU' where id=5; -update noar tt set b1='VLRF4G3T7NTTMBQX6CY4Y7HJG5N' where id=5; -update noar ti set b1='VLRF4G3T7NTTMBQX6CY4Y7HJG5N' where id=5; -update noar tt set v0='6PT4RS2L' where id=5; -update noar ti set v0='6PT4RS2L' where id=5; -update noar tt set b2='NRH' where id=5; -update noar ti set b2='NRH' where id=5; -update noar tt set v0='AO9REU3AKJ2HN' where id=6; -update noar ti set v0='AO9REU3AKJ2HN' where id=6; -update noar tt set b0='344IMAFNYWN1VPNIO8G3QP' where id=6; -update noar ti set b0='344IMAFNYWN1VPNIO8G3QP' where id=6; -update noar tt set v0='ROFZG3WP4CCJQV4FXX3YXG4MFWV17ZGA' where id=6; -update noar ti set v0='ROFZG3WP4CCJQV4FXX3YXG4MFWV17ZGA' where id=6; -update noar tt set b1='3OR3MJA0AAXGXJEHZUSROQ249J' where id=6; -update noar ti set b1='3OR3MJA0AAXGXJEHZUSROQ249J' where id=6; -update noar tt set v0='ZAWIH0Z032M68' where id=6; -update noar ti set v0='ZAWIH0Z032M68' where id=6; -update noar tt set b2='DQ41UB' where id=6; -update noar ti set b2='DQ41UB' where id=6; -update noar tt set v0='YMFQS5' where id=7; -update noar ti set v0='YMFQS5' where id=7; -update noar tt set b0='5EWX' where id=7; -update noar ti set b0='5EWX' where id=7; -update noar tt set v0='24CYCJWWTW5Y3S9CITJPZJKY' where id=7; -update noar ti set v0='24CYCJWWTW5Y3S9CITJPZJKY' where id=7; -update noar tt set b1='0PGUONFQBMKD' where id=7; -update noar ti set b1='0PGUONFQBMKD' where id=7; -update noar tt set v0='UNOLJ35TQJVFXZCV' where id=7; -update noar ti set v0='UNOLJ35TQJVFXZCV' where id=7; -update noar tt set b2='1J3L' where id=7; -update noar ti set b2='1J3L' where id=7; -update noar tt set v0='R0492MGGPP1EQKYVMM18VEVC' where id=8; -update noar ti set v0='R0492MGGPP1EQKYVMM18VEVC' where id=8; -update noar tt set b0='0IY0' where id=8; -update noar ti set b0='0IY0' where id=8; -update noar tt set v0='6L1B8FLDQE7M1HCLY0GG' where id=8; -update noar ti set v0='6L1B8FLDQE7M1HCLY0GG' where id=8; -update noar tt set b1='IX5LTS7AV3G7JJX5GMHXR3DFRNXK3' where id=8; -update noar ti set b1='IX5LTS7AV3G7JJX5GMHXR3DFRNXK3' where id=8; -update noar tt set v0='IP' where id=8; -update noar ti set v0='IP' where id=8; -update noar tt set b2='7' where id=8; -update noar ti set b2='7' where id=8; -update noar tt set v0='SX9KI0TPRDN3FC2VB1YLCRO01VX2AS' where id=9; -update noar ti set v0='SX9KI0TPRDN3FC2VB1YLCRO01VX2AS' where id=9; -update noar tt set b0='YPPN52C7IPNUK' where id=9; -update noar ti set b0='YPPN52C7IPNUK' where id=9; -update noar tt set v0='XEDMBXRTD253UJ' where id=9; -update noar ti set v0='XEDMBXRTD253UJ' where id=9; -update noar tt set b1='RBTR77M2XYIQJXW73NLQQQG8A4' where id=9; -update noar ti set b1='RBTR77M2XYIQJXW73NLQQQG8A4' where id=9; -update noar tt set v0='J' where id=9; -update noar ti set v0='J' where id=9; -update noar tt set b2='DP7RSS29NH6W' where id=9; -update noar ti set b2='DP7RSS29NH6W' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -v0 varchar(256) null, -b0 longblob null, -b1 mediumblob null, -b2 longblob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='D9' where id=1; -update noar ti set v0='D9' where id=1; -update noar tt set b0='4KY26BDHRD3J5IC4TCAQW1RJATC' where id=1; -update noar ti set b0='4KY26BDHRD3J5IC4TCAQW1RJATC' where id=1; -update noar tt set v0='QR0EKGQ5YUDOT57D3T5' where id=1; -update noar ti set v0='QR0EKGQ5YUDOT57D3T5' where id=1; -update noar tt set b1='EE2R5' where id=1; -update noar ti set b1='EE2R5' where id=1; -update noar tt set v0='HL2F1D8CBB' where id=1; -update noar ti set v0='HL2F1D8CBB' where id=1; -update noar tt set b2='UGDNBKQ2YT5WAMJX9RRGVC' where id=1; -update noar ti set b2='UGDNBKQ2YT5WAMJX9RRGVC' where id=1; -update noar tt set v0='IFOG7SJDQLWHQ7S9H5S47M6N20U84L' where id=2; -update noar ti set v0='IFOG7SJDQLWHQ7S9H5S47M6N20U84L' where id=2; -update noar tt set b0='JFHS' where id=2; -update noar ti set b0='JFHS' where id=2; -update noar tt set v0='1JRI1UYSQRCCMIINOA4XTRZXGVR2' where id=2; -update noar ti set v0='1JRI1UYSQRCCMIINOA4XTRZXGVR2' where id=2; -update noar tt set b1='PM4IS8CHAS4' where id=2; -update noar ti set b1='PM4IS8CHAS4' where id=2; -update noar tt set v0='92BQAV8NM5BZQY94Q' where id=2; -update noar ti set v0='92BQAV8NM5BZQY94Q' where id=2; -update noar tt set b2='HOPYGDCR8Q' where id=2; -update noar ti set b2='HOPYGDCR8Q' where id=2; -update noar tt set v0='9K1UIZBEAJKXRM0C15XVRV1N4OF' where id=3; -update noar ti set v0='9K1UIZBEAJKXRM0C15XVRV1N4OF' where id=3; -update noar tt set b0='MXNUGECQVV10FM' where id=3; -update noar ti set b0='MXNUGECQVV10FM' where id=3; -update noar tt set v0='DJKJCMDTS5XITVSQJCRA60YVOGPVI' where id=3; -update noar ti set v0='DJKJCMDTS5XITVSQJCRA60YVOGPVI' where id=3; -update noar tt set b1='6IF' where id=3; -update noar ti set b1='6IF' where id=3; -update noar tt set v0='JCIKPZFLSWSR' where id=3; -update noar ti set v0='JCIKPZFLSWSR' where id=3; -update noar tt set b2='WK2U8Z3LHRIOT50AB295CWWU6XH29E' where id=3; -update noar ti set b2='WK2U8Z3LHRIOT50AB295CWWU6XH29E' where id=3; -update noar tt set v0='11WIUBVQ0GNTY8WXXYH6GE1HXE' where id=4; -update noar ti set v0='11WIUBVQ0GNTY8WXXYH6GE1HXE' where id=4; -update noar tt set b0='3027K0E8VM7ZFUGKSFKH6' where id=4; -update noar ti set b0='3027K0E8VM7ZFUGKSFKH6' where id=4; -update noar tt set v0='UBQBM1AVW1Z48KF3' where id=4; -update noar ti set v0='UBQBM1AVW1Z48KF3' where id=4; -update noar tt set b1='EZPPFKYZP7BF9YSVNK972CU8VOLNZ75' where id=4; -update noar ti set b1='EZPPFKYZP7BF9YSVNK972CU8VOLNZ75' where id=4; -update noar tt set v0='SCLTUZ76N03DLZYQ' where id=4; -update noar ti set v0='SCLTUZ76N03DLZYQ' where id=4; -update noar tt set b2='LDC21J8P32AT8SUF14LT4IZ9WVFT0' where id=4; -update noar ti set b2='LDC21J8P32AT8SUF14LT4IZ9WVFT0' where id=4; -update noar tt set v0='MEQX9LYC85VJPI00FJB35C9TNW4QH' where id=5; -update noar ti set v0='MEQX9LYC85VJPI00FJB35C9TNW4QH' where id=5; -update noar tt set b0='I7X0FRJA666B65WR' where id=5; -update noar ti set b0='I7X0FRJA666B65WR' where id=5; -update noar tt set v0='RM36BXLHOBCP59BAXLPCXSZ' where id=5; -update noar ti set v0='RM36BXLHOBCP59BAXLPCXSZ' where id=5; -update noar tt set b1='OUG3JM1LGMK7ZSQY78WE3HZ5CKEL5P' where id=5; -update noar ti set b1='OUG3JM1LGMK7ZSQY78WE3HZ5CKEL5P' where id=5; -update noar tt set v0='BNHP3ORJD224TI9' where id=5; -update noar ti set v0='BNHP3ORJD224TI9' where id=5; -update noar tt set b2='DA2' where id=5; -update noar ti set b2='DA2' where id=5; -update noar tt set v0='2IRR7ENDLBQV9D839S7Y9134GZ2G0SZO' where id=6; -update noar ti set v0='2IRR7ENDLBQV9D839S7Y9134GZ2G0SZO' where id=6; -update noar tt set b0='ICTA580809' where id=6; -update noar ti set b0='ICTA580809' where id=6; -update noar tt set v0='6FPBLTQZME' where id=6; -update noar ti set v0='6FPBLTQZME' where id=6; -update noar tt set b1='KVS0SR22V84J' where id=6; -update noar ti set b1='KVS0SR22V84J' where id=6; -update noar tt set v0='NZUHCUHEVFY015AWH0II' where id=6; -update noar ti set v0='NZUHCUHEVFY015AWH0II' where id=6; -update noar tt set b2='5LKMNFT7BYX13RNN3D2' where id=6; -update noar ti set b2='5LKMNFT7BYX13RNN3D2' where id=6; -update noar tt set v0='8OJF7ATX' where id=7; -update noar ti set v0='8OJF7ATX' where id=7; -update noar tt set b0='HY' where id=7; -update noar ti set b0='HY' where id=7; -update noar tt set v0='BAZYWPNOLLEYZ1SHHM19JLCO' where id=7; -update noar ti set v0='BAZYWPNOLLEYZ1SHHM19JLCO' where id=7; -update noar tt set b1='S390CJJD' where id=7; -update noar ti set b1='S390CJJD' where id=7; -update noar tt set v0='Q4B9OTOG95V5511GTKUFZAOOG1SR' where id=7; -update noar ti set v0='Q4B9OTOG95V5511GTKUFZAOOG1SR' where id=7; -update noar tt set b2='N953HL01BEHB6W2UO0KHIU1RBBUR7' where id=7; -update noar ti set b2='N953HL01BEHB6W2UO0KHIU1RBBUR7' where id=7; -update noar tt set v0='QQMPZ0OHR28D79' where id=8; -update noar ti set v0='QQMPZ0OHR28D79' where id=8; -update noar tt set b0='ZKA08H4VSV78' where id=8; -update noar ti set b0='ZKA08H4VSV78' where id=8; -update noar tt set v0='JX3TMT' where id=8; -update noar ti set v0='JX3TMT' where id=8; -update noar tt set b1='PKBFYE7GHSXVXQ0YF3UO1UFGT1R75' where id=8; -update noar ti set b1='PKBFYE7GHSXVXQ0YF3UO1UFGT1R75' where id=8; -update noar tt set v0='0JIHXPB96SZQ44SQSWTA4L260' where id=8; -update noar ti set v0='0JIHXPB96SZQ44SQSWTA4L260' where id=8; -update noar tt set b2='5F4HV' where id=8; -update noar ti set b2='5F4HV' where id=8; -update noar tt set v0='PIXO' where id=9; -update noar ti set v0='PIXO' where id=9; -update noar tt set b0='YYRAVC33GKFL8FWX3L7W356' where id=9; -update noar ti set b0='YYRAVC33GKFL8FWX3L7W356' where id=9; -update noar tt set v0='4V0B0LXK7UXJ52R2N8ZE5Y3MG1R' where id=9; -update noar ti set v0='4V0B0LXK7UXJ52R2N8ZE5Y3MG1R' where id=9; -update noar tt set b1='991XDMGDFUY' where id=9; -update noar ti set b1='991XDMGDFUY' where id=9; -update noar tt set v0='EVB07' where id=9; -update noar ti set v0='EVB07' where id=9; -update noar tt set b2='2TEUEW2UPEGM8TTC' where id=9; -update noar ti set b2='2TEUEW2UPEGM8TTC' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -v0 varchar(32) not null, -b0 longblob not null, -b1 mediumblob not null, -b2 longblob not null -) engine=tokudb; -insert into tt values (1,'','','',''); -insert into tt values (2,'','','',''); -insert into tt values (3,'','','',''); -insert into tt values (4,'','','',''); -insert into tt values (5,'','','',''); -insert into tt values (6,'','','',''); -insert into tt values (7,'','','',''); -insert into tt values (8,'','','',''); -insert into tt values (9,'','','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='CNE69R3TSTJTJ9A3GJ6U9V658E' where id=1; -update noar ti set v0='CNE69R3TSTJTJ9A3GJ6U9V658E' where id=1; -update noar tt set b0='65AYFMENZSIIE1AU9GQH0' where id=1; -update noar ti set b0='65AYFMENZSIIE1AU9GQH0' where id=1; -update noar tt set v0='EMZ0FRE4' where id=1; -update noar ti set v0='EMZ0FRE4' where id=1; -update noar tt set b1='MDA1YSS46DFWOH2OLRAOQT2' where id=1; -update noar ti set b1='MDA1YSS46DFWOH2OLRAOQT2' where id=1; -update noar tt set v0='J8CZQVDQVHIL0JK' where id=1; -update noar ti set v0='J8CZQVDQVHIL0JK' where id=1; -update noar tt set b2='D' where id=1; -update noar ti set b2='D' where id=1; -update noar tt set v0='P21FAHOJO0CP1Q82C9999SYL' where id=2; -update noar ti set v0='P21FAHOJO0CP1Q82C9999SYL' where id=2; -update noar tt set b0='KLOIV3M1S7Y6ZA4JU7649FF8EXL4N' where id=2; -update noar ti set b0='KLOIV3M1S7Y6ZA4JU7649FF8EXL4N' where id=2; -update noar tt set v0='ZE9N2MAVGKMTFGSV26LMLEXZFQ8T' where id=2; -update noar ti set v0='ZE9N2MAVGKMTFGSV26LMLEXZFQ8T' where id=2; -update noar tt set b1='XNUO087QXE2DW2S2RN' where id=2; -update noar ti set b1='XNUO087QXE2DW2S2RN' where id=2; -update noar tt set v0='WXBLHR5O9S26KJ' where id=2; -update noar ti set v0='WXBLHR5O9S26KJ' where id=2; -update noar tt set b2='FBZ2G4EC1TL0Z' where id=2; -update noar ti set b2='FBZ2G4EC1TL0Z' where id=2; -update noar tt set v0='G5MTX6MM' where id=3; -update noar ti set v0='G5MTX6MM' where id=3; -update noar tt set b0='MJ90DEZCR89NDZEM1YFVF5O3X' where id=3; -update noar ti set b0='MJ90DEZCR89NDZEM1YFVF5O3X' where id=3; -update noar tt set v0='EPVJTJWUX2J5WJ8POC0' where id=3; -update noar ti set v0='EPVJTJWUX2J5WJ8POC0' where id=3; -update noar tt set b1='XZK8ONZZB38V6XFB4RQY' where id=3; -update noar ti set b1='XZK8ONZZB38V6XFB4RQY' where id=3; -update noar tt set v0='1JVN3HYNHN8VSWLKIDB6JJVH7R4D' where id=3; -update noar ti set v0='1JVN3HYNHN8VSWLKIDB6JJVH7R4D' where id=3; -update noar tt set b2='6BCT9YG7Q' where id=3; -update noar ti set b2='6BCT9YG7Q' where id=3; -update noar tt set v0='KZCKIHDO68' where id=4; -update noar ti set v0='KZCKIHDO68' where id=4; -update noar tt set b0='3ZBSXY8HC6V0V' where id=4; -update noar ti set b0='3ZBSXY8HC6V0V' where id=4; -update noar tt set v0='MDQ0NC6DUQ8RHHMLCTWRNEYJDA61R' where id=4; -update noar ti set v0='MDQ0NC6DUQ8RHHMLCTWRNEYJDA61R' where id=4; -update noar tt set b1='IUR6XIDPH3S53428KL62E' where id=4; -update noar ti set b1='IUR6XIDPH3S53428KL62E' where id=4; -update noar tt set v0='UGG5Q22T71' where id=4; -update noar ti set v0='UGG5Q22T71' where id=4; -update noar tt set b2='I84P493V' where id=4; -update noar ti set b2='I84P493V' where id=4; -update noar tt set v0='3SKVU9U' where id=5; -update noar ti set v0='3SKVU9U' where id=5; -update noar tt set b0='Z8UN8Y6ONX3OVNF9HJ' where id=5; -update noar ti set b0='Z8UN8Y6ONX3OVNF9HJ' where id=5; -update noar tt set v0='ZKN87Y91E92' where id=5; -update noar ti set v0='ZKN87Y91E92' where id=5; -update noar tt set b1='ORNCL32BWWCE0Y7K8H' where id=5; -update noar ti set b1='ORNCL32BWWCE0Y7K8H' where id=5; -update noar tt set v0='1' where id=5; -update noar ti set v0='1' where id=5; -update noar tt set b2='LUZMB9L7EOBP9ECU2JQIL7' where id=5; -update noar ti set b2='LUZMB9L7EOBP9ECU2JQIL7' where id=5; -update noar tt set v0='E6RZC5A1VJ7UNHDZSS806C8Z' where id=6; -update noar ti set v0='E6RZC5A1VJ7UNHDZSS806C8Z' where id=6; -update noar tt set b0='P3IST8MDNY' where id=6; -update noar ti set b0='P3IST8MDNY' where id=6; -update noar tt set v0='XQ5' where id=6; -update noar ti set v0='XQ5' where id=6; -update noar tt set b1='YEYC0C43E6CRC19QASY4VISNRHQZ2C' where id=6; -update noar ti set b1='YEYC0C43E6CRC19QASY4VISNRHQZ2C' where id=6; -update noar tt set v0='OBY0G0PUUJRBQBINB04KOFAI261FIX0' where id=6; -update noar ti set v0='OBY0G0PUUJRBQBINB04KOFAI261FIX0' where id=6; -update noar tt set b2='IHQ7RRK2HRFMT3Y3F22UD' where id=6; -update noar ti set b2='IHQ7RRK2HRFMT3Y3F22UD' where id=6; -update noar tt set v0='MBNPX9BQGA7HQCG6TFJW0CB' where id=7; -update noar ti set v0='MBNPX9BQGA7HQCG6TFJW0CB' where id=7; -update noar tt set b0='LOP4D' where id=7; -update noar ti set b0='LOP4D' where id=7; -update noar tt set v0='YQ6J3XV79NKRAPOWVK4CP7R8Q1ZNIHJ' where id=7; -update noar ti set v0='YQ6J3XV79NKRAPOWVK4CP7R8Q1ZNIHJ' where id=7; -update noar tt set b1='SYPK32' where id=7; -update noar ti set b1='SYPK32' where id=7; -update noar tt set v0='LD' where id=7; -update noar ti set v0='LD' where id=7; -update noar tt set b2='C6AH3YQ7FY5O1SV300TCOA2HRBCRJ8' where id=7; -update noar ti set b2='C6AH3YQ7FY5O1SV300TCOA2HRBCRJ8' where id=7; -update noar tt set v0='SQ0IIA75ERHFB1' where id=8; -update noar ti set v0='SQ0IIA75ERHFB1' where id=8; -update noar tt set b0='M10NQVJL21TE1VR6DV' where id=8; -update noar ti set b0='M10NQVJL21TE1VR6DV' where id=8; -update noar tt set v0='GZKT2DLPN6WW9T499E' where id=8; -update noar ti set v0='GZKT2DLPN6WW9T499E' where id=8; -update noar tt set b1='VE599MSD5X' where id=8; -update noar ti set b1='VE599MSD5X' where id=8; -update noar tt set v0='OVGL29VY68UL038ZGMX0OACD19' where id=8; -update noar ti set v0='OVGL29VY68UL038ZGMX0OACD19' where id=8; -update noar tt set b2='O8GBPNTCFFBS26BMTRPZ729P0PD' where id=8; -update noar ti set b2='O8GBPNTCFFBS26BMTRPZ729P0PD' where id=8; -update noar tt set v0='AJBQCQ0FKGVM3H5ZMW9HFORKK7' where id=9; -update noar ti set v0='AJBQCQ0FKGVM3H5ZMW9HFORKK7' where id=9; -update noar tt set b0='KXTSIXGF' where id=9; -update noar ti set b0='KXTSIXGF' where id=9; -update noar tt set v0='9IVFLPZ2' where id=9; -update noar ti set v0='9IVFLPZ2' where id=9; -update noar tt set b1='AW8YKSIQOKO2DW68K8KAODZB1OVAER6' where id=9; -update noar ti set b1='AW8YKSIQOKO2DW68K8KAODZB1OVAER6' where id=9; -update noar tt set v0='WK8VFMLB16ME5MHHUFY3ZISFDE' where id=9; -update noar ti set v0='WK8VFMLB16ME5MHHUFY3ZISFDE' where id=9; -update noar tt set b2='CRIKIZKM3J025XCCCX1MXO' where id=9; -update noar ti set b2='CRIKIZKM3J025XCCCX1MXO' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -v0 varchar(256) not null, -b0 longblob not null, -b1 mediumblob not null, -b2 longblob not null -) engine=tokudb; -insert into tt values (1,'','','',''); -insert into tt values (2,'','','',''); -insert into tt values (3,'','','',''); -insert into tt values (4,'','','',''); -insert into tt values (5,'','','',''); -insert into tt values (6,'','','',''); -insert into tt values (7,'','','',''); -insert into tt values (8,'','','',''); -insert into tt values (9,'','','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='ZH1TFZ81TLN11R595U8V7X407JGQ68' where id=1; -update noar ti set v0='ZH1TFZ81TLN11R595U8V7X407JGQ68' where id=1; -update noar tt set b0='72LS2M4YJDXD' where id=1; -update noar ti set b0='72LS2M4YJDXD' where id=1; -update noar tt set v0='UWVM8Q6345VJAMSF6T06SYTXZX' where id=1; -update noar ti set v0='UWVM8Q6345VJAMSF6T06SYTXZX' where id=1; -update noar tt set b1='LCYPKWBO8YE6H7GDVQZVCYPDY0A6Y14' where id=1; -update noar ti set b1='LCYPKWBO8YE6H7GDVQZVCYPDY0A6Y14' where id=1; -update noar tt set v0='ZHG308' where id=1; -update noar ti set v0='ZHG308' where id=1; -update noar tt set b2='M0CEW9C' where id=1; -update noar ti set b2='M0CEW9C' where id=1; -update noar tt set v0='VKTY2ZMT4AYDUNHMYK' where id=2; -update noar ti set v0='VKTY2ZMT4AYDUNHMYK' where id=2; -update noar tt set b0='U4R7GFY0VPJSTBLC8W1T1RI7ZI8' where id=2; -update noar ti set b0='U4R7GFY0VPJSTBLC8W1T1RI7ZI8' where id=2; -update noar tt set v0='6XP0J5V' where id=2; -update noar ti set v0='6XP0J5V' where id=2; -update noar tt set b1='2UO54AUG1RFKZ' where id=2; -update noar ti set b1='2UO54AUG1RFKZ' where id=2; -update noar tt set v0='FLMK2O3O7XW1LZVYXSDUVRXACQZRIR' where id=2; -update noar ti set v0='FLMK2O3O7XW1LZVYXSDUVRXACQZRIR' where id=2; -update noar tt set b2='R1XTLNTXROFKYPF40A0Y5K1' where id=2; -update noar ti set b2='R1XTLNTXROFKYPF40A0Y5K1' where id=2; -update noar tt set v0='MHNPHHW7' where id=3; -update noar ti set v0='MHNPHHW7' where id=3; -update noar tt set b0='FS9LSQRKPF77QRDMO4' where id=3; -update noar ti set b0='FS9LSQRKPF77QRDMO4' where id=3; -update noar tt set v0='O9BI0WGMD6YT7R6MPWXX32IH' where id=3; -update noar ti set v0='O9BI0WGMD6YT7R6MPWXX32IH' where id=3; -update noar tt set b1='BGE6F42ZE922TU4SD36VPLJ' where id=3; -update noar ti set b1='BGE6F42ZE922TU4SD36VPLJ' where id=3; -update noar tt set v0='NIEMYE13POB2VIK86Z2EBN5' where id=3; -update noar ti set v0='NIEMYE13POB2VIK86Z2EBN5' where id=3; -update noar tt set b2='3' where id=3; -update noar ti set b2='3' where id=3; -update noar tt set v0='V17V33W179' where id=4; -update noar ti set v0='V17V33W179' where id=4; -update noar tt set b0='KOCJSJYVH0MZ5M19Y8VW' where id=4; -update noar ti set b0='KOCJSJYVH0MZ5M19Y8VW' where id=4; -update noar tt set v0='QZ7X' where id=4; -update noar ti set v0='QZ7X' where id=4; -update noar tt set b1='7IG' where id=4; -update noar ti set b1='7IG' where id=4; -update noar tt set v0='8XRY8VV4' where id=4; -update noar ti set v0='8XRY8VV4' where id=4; -update noar tt set b2='F9KCRAMOX' where id=4; -update noar ti set b2='F9KCRAMOX' where id=4; -update noar tt set v0='BTA69' where id=5; -update noar ti set v0='BTA69' where id=5; -update noar tt set b0='AUSE5LIB1D8J1RUI7CMKD9' where id=5; -update noar ti set b0='AUSE5LIB1D8J1RUI7CMKD9' where id=5; -update noar tt set v0='5RH2LJHDGKEE6OREV4UILWQA' where id=5; -update noar ti set v0='5RH2LJHDGKEE6OREV4UILWQA' where id=5; -update noar tt set b1='3AN82BKB715CQXR6EDY5I5KQ1SR6RQ8J' where id=5; -update noar ti set b1='3AN82BKB715CQXR6EDY5I5KQ1SR6RQ8J' where id=5; -update noar tt set v0='W28OJ9X3C1RLQ3L7KOOP2F7YM' where id=5; -update noar ti set v0='W28OJ9X3C1RLQ3L7KOOP2F7YM' where id=5; -update noar tt set b2='H1PFDRF7WP29AFRHMJZOG5IX0LSVVZ' where id=5; -update noar ti set b2='H1PFDRF7WP29AFRHMJZOG5IX0LSVVZ' where id=5; -update noar tt set v0='RPW5T8FYOPM2TN1JNVZEMA3QXVR5' where id=6; -update noar ti set v0='RPW5T8FYOPM2TN1JNVZEMA3QXVR5' where id=6; -update noar tt set b0='D2EL72ESP446YH' where id=6; -update noar ti set b0='D2EL72ESP446YH' where id=6; -update noar tt set v0='DDOB0SN5HM0FQG4MM70L4BATFQ65TEP' where id=6; -update noar ti set v0='DDOB0SN5HM0FQG4MM70L4BATFQ65TEP' where id=6; -update noar tt set b1='8099L' where id=6; -update noar ti set b1='8099L' where id=6; -update noar tt set v0='20SHNTYE2VMGG9GIXK' where id=6; -update noar ti set v0='20SHNTYE2VMGG9GIXK' where id=6; -update noar tt set b2='KGLOVNR3R5OC6KYSYQZT9Q' where id=6; -update noar ti set b2='KGLOVNR3R5OC6KYSYQZT9Q' where id=6; -update noar tt set v0='HK82FN' where id=7; -update noar ti set v0='HK82FN' where id=7; -update noar tt set b0='I10FAXAQK1EBKFHRZUBZ' where id=7; -update noar ti set b0='I10FAXAQK1EBKFHRZUBZ' where id=7; -update noar tt set v0='BU03' where id=7; -update noar ti set v0='BU03' where id=7; -update noar tt set b1='ZR7XX7HQ0HUCMU851983W275VKM5LQCR' where id=7; -update noar ti set b1='ZR7XX7HQ0HUCMU851983W275VKM5LQCR' where id=7; -update noar tt set v0='PBQVNAGNWP678UAQWV2ONXSBU' where id=7; -update noar ti set v0='PBQVNAGNWP678UAQWV2ONXSBU' where id=7; -update noar tt set b2='TODWD481ZJC2JZ' where id=7; -update noar ti set b2='TODWD481ZJC2JZ' where id=7; -update noar tt set v0='5' where id=8; -update noar ti set v0='5' where id=8; -update noar tt set b0='HQ6J28DAFS64264HEOJUJN0VY' where id=8; -update noar ti set b0='HQ6J28DAFS64264HEOJUJN0VY' where id=8; -update noar tt set v0='MEOTLCQHRL60BPTXT' where id=8; -update noar ti set v0='MEOTLCQHRL60BPTXT' where id=8; -update noar tt set b1='HAXDD6AKW0D1IPY' where id=8; -update noar ti set b1='HAXDD6AKW0D1IPY' where id=8; -update noar tt set v0='NG0MA83UE' where id=8; -update noar ti set v0='NG0MA83UE' where id=8; -update noar tt set b2='WOLTOVV62CCIYYMW1N1D' where id=8; -update noar ti set b2='WOLTOVV62CCIYYMW1N1D' where id=8; -update noar tt set v0='NHL8D5' where id=9; -update noar ti set v0='NHL8D5' where id=9; -update noar tt set b0='T3SPV0RLXMZ5MCYNYW9V' where id=9; -update noar ti set b0='T3SPV0RLXMZ5MCYNYW9V' where id=9; -update noar tt set v0='GVZULKGGT' where id=9; -update noar ti set v0='GVZULKGGT' where id=9; -update noar tt set b1='ZVKGLZN' where id=9; -update noar ti set b1='ZVKGLZN' where id=9; -update noar tt set v0='7838230IEEWPJYQ19Q2XG' where id=9; -update noar ti set v0='7838230IEEWPJYQ19Q2XG' where id=9; -update noar tt set b2='PMVF1TZRSE1JZVSPT7Q41XCT' where id=9; -update noar ti set b2='PMVF1TZRSE1JZVSPT7Q41XCT' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -v0 varchar(32) null, -b0 longblob null, -b1 longblob null, -b2 tinyblob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='LE77E' where id=1; -update noar ti set v0='LE77E' where id=1; -update noar tt set b0='DBLRKONL' where id=1; -update noar ti set b0='DBLRKONL' where id=1; -update noar tt set v0='QWI9VG1K2W5' where id=1; -update noar ti set v0='QWI9VG1K2W5' where id=1; -update noar tt set b1='JIXJDHN6H6SYB0S07QWA58M14WP6' where id=1; -update noar ti set b1='JIXJDHN6H6SYB0S07QWA58M14WP6' where id=1; -update noar tt set v0='TA5IGNDGFGD39RNKCQZQ1S' where id=1; -update noar ti set v0='TA5IGNDGFGD39RNKCQZQ1S' where id=1; -update noar tt set b2='JFRXOZ3TJO4UXEF0T09VSV3' where id=1; -update noar ti set b2='JFRXOZ3TJO4UXEF0T09VSV3' where id=1; -update noar tt set v0='ZYEZJ8K' where id=2; -update noar ti set v0='ZYEZJ8K' where id=2; -update noar tt set b0='WBVUH62MOPZECYHI5559' where id=2; -update noar ti set b0='WBVUH62MOPZECYHI5559' where id=2; -update noar tt set v0='RW56J' where id=2; -update noar ti set v0='RW56J' where id=2; -update noar tt set b1='PRWW5QOHUI20X07RINST1UNJ8V5CJ' where id=2; -update noar ti set b1='PRWW5QOHUI20X07RINST1UNJ8V5CJ' where id=2; -update noar tt set v0='VHGN3IGBLZN' where id=2; -update noar ti set v0='VHGN3IGBLZN' where id=2; -update noar tt set b2='B1RFAYWRDZ3COH8BIBRNZJ1RTMJF8U' where id=2; -update noar ti set b2='B1RFAYWRDZ3COH8BIBRNZJ1RTMJF8U' where id=2; -update noar tt set v0='GJJ3' where id=3; -update noar ti set v0='GJJ3' where id=3; -update noar tt set b0='VNX4VJOINCEV3AALGU90LYDV6B99REE' where id=3; -update noar ti set b0='VNX4VJOINCEV3AALGU90LYDV6B99REE' where id=3; -update noar tt set v0='FRRHASR4A7GADCJWGXMTPBEXS' where id=3; -update noar ti set v0='FRRHASR4A7GADCJWGXMTPBEXS' where id=3; -update noar tt set b1='ZPA8PX60WDY2XKGC2VC9Q6XHJEH' where id=3; -update noar ti set b1='ZPA8PX60WDY2XKGC2VC9Q6XHJEH' where id=3; -update noar tt set v0='WW7W' where id=3; -update noar ti set v0='WW7W' where id=3; -update noar tt set b2='W3MP' where id=3; -update noar ti set b2='W3MP' where id=3; -update noar tt set v0='8NIB1GCG86BDGZZS1FQ3MKNI77RP' where id=4; -update noar ti set v0='8NIB1GCG86BDGZZS1FQ3MKNI77RP' where id=4; -update noar tt set b0='3425PRNQ8SXL1F7YO' where id=4; -update noar ti set b0='3425PRNQ8SXL1F7YO' where id=4; -update noar tt set v0='WTRXLPM7XWJI2OR' where id=4; -update noar ti set v0='WTRXLPM7XWJI2OR' where id=4; -update noar tt set b1='RNP8GVFPPPWG609847B' where id=4; -update noar ti set b1='RNP8GVFPPPWG609847B' where id=4; -update noar tt set v0='8G' where id=4; -update noar ti set v0='8G' where id=4; -update noar tt set b2='X' where id=4; -update noar ti set b2='X' where id=4; -update noar tt set v0='5DK7EGZI9Y' where id=5; -update noar ti set v0='5DK7EGZI9Y' where id=5; -update noar tt set b0='GRGKXIMMHJO94CYJ9MAKE0FK4' where id=5; -update noar ti set b0='GRGKXIMMHJO94CYJ9MAKE0FK4' where id=5; -update noar tt set v0='OR4PX1WF2G' where id=5; -update noar ti set v0='OR4PX1WF2G' where id=5; -update noar tt set b1='POO8IY' where id=5; -update noar ti set b1='POO8IY' where id=5; -update noar tt set v0='89C2MZWNO4926BA7ENZI2ORAQ1IOOI' where id=5; -update noar ti set v0='89C2MZWNO4926BA7ENZI2ORAQ1IOOI' where id=5; -update noar tt set b2='FOKG' where id=5; -update noar ti set b2='FOKG' where id=5; -update noar tt set v0='NY0W0L4K2HJGD81C2X8OCF' where id=6; -update noar ti set v0='NY0W0L4K2HJGD81C2X8OCF' where id=6; -update noar tt set b0='4DUST3OJQ8J3UXKXWPZNYUSDME51PSQ' where id=6; -update noar ti set b0='4DUST3OJQ8J3UXKXWPZNYUSDME51PSQ' where id=6; -update noar tt set v0='1JYIPB1FF5VSXFSGKWB5HP' where id=6; -update noar ti set v0='1JYIPB1FF5VSXFSGKWB5HP' where id=6; -update noar tt set b1='19KHDEA1J25JSYNKJ8DB3MICQ' where id=6; -update noar ti set b1='19KHDEA1J25JSYNKJ8DB3MICQ' where id=6; -update noar tt set v0='ILCEOH1F85WFFQPN' where id=6; -update noar ti set v0='ILCEOH1F85WFFQPN' where id=6; -update noar tt set b2='BDH5PGE1K6R' where id=6; -update noar ti set b2='BDH5PGE1K6R' where id=6; -update noar tt set v0='T5' where id=7; -update noar ti set v0='T5' where id=7; -update noar tt set b0='JRPH' where id=7; -update noar ti set b0='JRPH' where id=7; -update noar tt set v0='X83G5NATI1WK2ACTAVJWJDEVVR5F1' where id=7; -update noar ti set v0='X83G5NATI1WK2ACTAVJWJDEVVR5F1' where id=7; -update noar tt set b1='TOU8LL26' where id=7; -update noar ti set b1='TOU8LL26' where id=7; -update noar tt set v0='O' where id=7; -update noar ti set v0='O' where id=7; -update noar tt set b2='0' where id=7; -update noar ti set b2='0' where id=7; -update noar tt set v0='1S6QQV39EM80' where id=8; -update noar ti set v0='1S6QQV39EM80' where id=8; -update noar tt set b0='0F12G0Z9M7J1RA9UTE2A' where id=8; -update noar ti set b0='0F12G0Z9M7J1RA9UTE2A' where id=8; -update noar tt set v0='STFID1XJJTZUT6RC8X6OMF' where id=8; -update noar ti set v0='STFID1XJJTZUT6RC8X6OMF' where id=8; -update noar tt set b1='51F' where id=8; -update noar ti set b1='51F' where id=8; -update noar tt set v0='O4Z421BB16A6ROXPQKYYWYDY7BHHNUO' where id=8; -update noar ti set v0='O4Z421BB16A6ROXPQKYYWYDY7BHHNUO' where id=8; -update noar tt set b2='7Z6' where id=8; -update noar ti set b2='7Z6' where id=8; -update noar tt set v0='ZYSI' where id=9; -update noar ti set v0='ZYSI' where id=9; -update noar tt set b0='3YEINTO537GEUG03K000RZAYH5Z' where id=9; -update noar ti set b0='3YEINTO537GEUG03K000RZAYH5Z' where id=9; -update noar tt set v0='LSUOEYIHZP2PTA' where id=9; -update noar ti set v0='LSUOEYIHZP2PTA' where id=9; -update noar tt set b1='QDV3MRPS' where id=9; -update noar ti set b1='QDV3MRPS' where id=9; -update noar tt set v0='H50G3PABPMQ6I94LAQAB3N8Y9MA6BVO' where id=9; -update noar ti set v0='H50G3PABPMQ6I94LAQAB3N8Y9MA6BVO' where id=9; -update noar tt set b2='JPGM3T05Z6VFU29585DR' where id=9; -update noar ti set b2='JPGM3T05Z6VFU29585DR' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -v0 varchar(256) null, -b0 longblob null, -b1 longblob null, -b2 tinyblob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='6' where id=1; -update noar ti set v0='6' where id=1; -update noar tt set b0='US4ATMUKEBZM' where id=1; -update noar ti set b0='US4ATMUKEBZM' where id=1; -update noar tt set v0='PO671AYD4PNRQM' where id=1; -update noar ti set v0='PO671AYD4PNRQM' where id=1; -update noar tt set b1='6' where id=1; -update noar ti set b1='6' where id=1; -update noar tt set v0='Y0YKCBOJQ0SPEX0IV6' where id=1; -update noar ti set v0='Y0YKCBOJQ0SPEX0IV6' where id=1; -update noar tt set b2='90E9F' where id=1; -update noar ti set b2='90E9F' where id=1; -update noar tt set v0='WGN4E92CYV4LE3P59S' where id=2; -update noar ti set v0='WGN4E92CYV4LE3P59S' where id=2; -update noar tt set b0='3XJPS7CAN4WRL6527MULO9H8MJ' where id=2; -update noar ti set b0='3XJPS7CAN4WRL6527MULO9H8MJ' where id=2; -update noar tt set v0='KC067CC836LE9C40X7IY6HXPPT' where id=2; -update noar ti set v0='KC067CC836LE9C40X7IY6HXPPT' where id=2; -update noar tt set b1='9238' where id=2; -update noar ti set b1='9238' where id=2; -update noar tt set v0='4KHWURCRKU0ULXCBPIFQEC' where id=2; -update noar ti set v0='4KHWURCRKU0ULXCBPIFQEC' where id=2; -update noar tt set b2='G' where id=2; -update noar ti set b2='G' where id=2; -update noar tt set v0='1NJ7LM61CXS9NQFE7' where id=3; -update noar ti set v0='1NJ7LM61CXS9NQFE7' where id=3; -update noar tt set b0='IX8U1Q3NTKH79B4GSIFT63RK' where id=3; -update noar ti set b0='IX8U1Q3NTKH79B4GSIFT63RK' where id=3; -update noar tt set v0='ZQ685LDAPNZ0MEXGNE9JZ' where id=3; -update noar ti set v0='ZQ685LDAPNZ0MEXGNE9JZ' where id=3; -update noar tt set b1='ZISHL16ER9XK84O4NCKGSC97D4' where id=3; -update noar ti set b1='ZISHL16ER9XK84O4NCKGSC97D4' where id=3; -update noar tt set v0='8' where id=3; -update noar ti set v0='8' where id=3; -update noar tt set b2='RL6JWGO77OXZKLZTHJCE1' where id=3; -update noar ti set b2='RL6JWGO77OXZKLZTHJCE1' where id=3; -update noar tt set v0='KFCF4Y6KMBUIF' where id=4; -update noar ti set v0='KFCF4Y6KMBUIF' where id=4; -update noar tt set b0='4ZT4VCBLOKZH2ETNQQNTP5KV0Y' where id=4; -update noar ti set b0='4ZT4VCBLOKZH2ETNQQNTP5KV0Y' where id=4; -update noar tt set v0='DDOG' where id=4; -update noar ti set v0='DDOG' where id=4; -update noar tt set b1='2UVOD1LZXJGNYDMB' where id=4; -update noar ti set b1='2UVOD1LZXJGNYDMB' where id=4; -update noar tt set v0='SI4REPI8A3JVD21S8JX4HV3YZG1PY3VP' where id=4; -update noar ti set v0='SI4REPI8A3JVD21S8JX4HV3YZG1PY3VP' where id=4; -update noar tt set b2='ZEJ2TRU6LNKLCAHHMAA' where id=4; -update noar ti set b2='ZEJ2TRU6LNKLCAHHMAA' where id=4; -update noar tt set v0='RD42DBX0M0HN5KTZ4BUR6' where id=5; -update noar ti set v0='RD42DBX0M0HN5KTZ4BUR6' where id=5; -update noar tt set b0='Z9E520' where id=5; -update noar ti set b0='Z9E520' where id=5; -update noar tt set v0='0OYSU4Q' where id=5; -update noar ti set v0='0OYSU4Q' where id=5; -update noar tt set b1='7MKYBQJHOO8WC' where id=5; -update noar ti set b1='7MKYBQJHOO8WC' where id=5; -update noar tt set v0='8T6JWTZ6B' where id=5; -update noar ti set v0='8T6JWTZ6B' where id=5; -update noar tt set b2='83H80G45GR3' where id=5; -update noar ti set b2='83H80G45GR3' where id=5; -update noar tt set v0='5DJEHJ4JTX58WUTE' where id=6; -update noar ti set v0='5DJEHJ4JTX58WUTE' where id=6; -update noar tt set b0='JGZT2QS37N9ZEE2SCHI66NGBGNQG87' where id=6; -update noar ti set b0='JGZT2QS37N9ZEE2SCHI66NGBGNQG87' where id=6; -update noar tt set v0='S2UH3F6TXP' where id=6; -update noar ti set v0='S2UH3F6TXP' where id=6; -update noar tt set b1='WQUCJVWWZ14KF' where id=6; -update noar ti set b1='WQUCJVWWZ14KF' where id=6; -update noar tt set v0='UMQ2PJ' where id=6; -update noar ti set v0='UMQ2PJ' where id=6; -update noar tt set b2='CS9M' where id=6; -update noar ti set b2='CS9M' where id=6; -update noar tt set v0='M0Y6KKWGSPE' where id=7; -update noar ti set v0='M0Y6KKWGSPE' where id=7; -update noar tt set b0='4DA5MTAB4N' where id=7; -update noar ti set b0='4DA5MTAB4N' where id=7; -update noar tt set v0='2ARPR017U' where id=7; -update noar ti set v0='2ARPR017U' where id=7; -update noar tt set b1='WB' where id=7; -update noar ti set b1='WB' where id=7; -update noar tt set v0='P0NJ8KPKEFXRR3GCWWY' where id=7; -update noar ti set v0='P0NJ8KPKEFXRR3GCWWY' where id=7; -update noar tt set b2='7GA3' where id=7; -update noar ti set b2='7GA3' where id=7; -update noar tt set v0='18XC4VQW6' where id=8; -update noar ti set v0='18XC4VQW6' where id=8; -update noar tt set b0='V7A4EM87' where id=8; -update noar ti set b0='V7A4EM87' where id=8; -update noar tt set v0='GSDWAGS2XMRFUVKS8Y5NQWLWM5IM4S1B' where id=8; -update noar ti set v0='GSDWAGS2XMRFUVKS8Y5NQWLWM5IM4S1B' where id=8; -update noar tt set b1='CFFZDJSJJQ3C32XVOE9HQ4T' where id=8; -update noar ti set b1='CFFZDJSJJQ3C32XVOE9HQ4T' where id=8; -update noar tt set v0='DZK8O9BTTIWEU7XN84YDESY61' where id=8; -update noar ti set v0='DZK8O9BTTIWEU7XN84YDESY61' where id=8; -update noar tt set b2='3XR7V98QU8SKOPGKXY' where id=8; -update noar ti set b2='3XR7V98QU8SKOPGKXY' where id=8; -update noar tt set v0='FYMG57DSX4PKN60AF7KFIEFZK5XBUG2' where id=9; -update noar ti set v0='FYMG57DSX4PKN60AF7KFIEFZK5XBUG2' where id=9; -update noar tt set b0='3KF' where id=9; -update noar ti set b0='3KF' where id=9; -update noar tt set v0='QJ4' where id=9; -update noar ti set v0='QJ4' where id=9; -update noar tt set b1='7H752FL6HSZ6QCYPPKB8X9Q3MSD' where id=9; -update noar ti set b1='7H752FL6HSZ6QCYPPKB8X9Q3MSD' where id=9; -update noar tt set v0='01H2432K4ELT78BCC5T43VN' where id=9; -update noar ti set v0='01H2432K4ELT78BCC5T43VN' where id=9; -update noar tt set b2='CSN100AKXU2UTC0SKPUHT6D7Q5DOX' where id=9; -update noar ti set b2='CSN100AKXU2UTC0SKPUHT6D7Q5DOX' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -v0 varchar(32) not null, -b0 longblob not null, -b1 longblob not null, -b2 tinyblob not null -) engine=tokudb; -insert into tt values (1,'','','',''); -insert into tt values (2,'','','',''); -insert into tt values (3,'','','',''); -insert into tt values (4,'','','',''); -insert into tt values (5,'','','',''); -insert into tt values (6,'','','',''); -insert into tt values (7,'','','',''); -insert into tt values (8,'','','',''); -insert into tt values (9,'','','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='F3R16IWBI1' where id=1; -update noar ti set v0='F3R16IWBI1' where id=1; -update noar tt set b0='0BNGO0FHP' where id=1; -update noar ti set b0='0BNGO0FHP' where id=1; -update noar tt set v0='GRTFJROM63ED8P8C8QXV98' where id=1; -update noar ti set v0='GRTFJROM63ED8P8C8QXV98' where id=1; -update noar tt set b1='NE7EGR10V3AEJPHMOKOPJAU17N5K' where id=1; -update noar ti set b1='NE7EGR10V3AEJPHMOKOPJAU17N5K' where id=1; -update noar tt set v0='BD4AHS' where id=1; -update noar ti set v0='BD4AHS' where id=1; -update noar tt set b2='R23B3AF19AC9YE' where id=1; -update noar ti set b2='R23B3AF19AC9YE' where id=1; -update noar tt set v0='3XLCF7QRZCAW1K8F90' where id=2; -update noar ti set v0='3XLCF7QRZCAW1K8F90' where id=2; -update noar tt set b0='IBA8CC5BQCVCSGVZG' where id=2; -update noar ti set b0='IBA8CC5BQCVCSGVZG' where id=2; -update noar tt set v0='UR1UEW9X58ZK3LB4KE2AQ' where id=2; -update noar ti set v0='UR1UEW9X58ZK3LB4KE2AQ' where id=2; -update noar tt set b1='U41DLMCW8' where id=2; -update noar ti set b1='U41DLMCW8' where id=2; -update noar tt set v0='0E703N2IH3ZBEKNR7R3J' where id=2; -update noar ti set v0='0E703N2IH3ZBEKNR7R3J' where id=2; -update noar tt set b2='OZ5PX8VJGD1L3094FKJDOZOW1D2' where id=2; -update noar ti set b2='OZ5PX8VJGD1L3094FKJDOZOW1D2' where id=2; -update noar tt set v0='7ZG2WNP5K5Z3HH7T6U8LJT91' where id=3; -update noar ti set v0='7ZG2WNP5K5Z3HH7T6U8LJT91' where id=3; -update noar tt set b0='HG4DF0D4BP15FNBIVIQ2KCWLMFQI' where id=3; -update noar ti set b0='HG4DF0D4BP15FNBIVIQ2KCWLMFQI' where id=3; -update noar tt set v0='TV3E8S9' where id=3; -update noar ti set v0='TV3E8S9' where id=3; -update noar tt set b1='XO037GKYSAGDK26NTX2JIYVR6' where id=3; -update noar ti set b1='XO037GKYSAGDK26NTX2JIYVR6' where id=3; -update noar tt set v0='UGFO65AWN0EJZUT3COQPLSEHN6' where id=3; -update noar ti set v0='UGFO65AWN0EJZUT3COQPLSEHN6' where id=3; -update noar tt set b2='PD46IS543T' where id=3; -update noar ti set b2='PD46IS543T' where id=3; -update noar tt set v0='S6JUY3V9' where id=4; -update noar ti set v0='S6JUY3V9' where id=4; -update noar tt set b0='FBRYCZ06YHTNN1YDLYACW7SSR5EHEQS' where id=4; -update noar ti set b0='FBRYCZ06YHTNN1YDLYACW7SSR5EHEQS' where id=4; -update noar tt set v0='EE7X2LFKGKW' where id=4; -update noar ti set v0='EE7X2LFKGKW' where id=4; -update noar tt set b1='7' where id=4; -update noar ti set b1='7' where id=4; -update noar tt set v0='5A9' where id=4; -update noar ti set v0='5A9' where id=4; -update noar tt set b2='IYZ2Q6VZREMCZRO4SAS4DOUJ7QGTNVP' where id=4; -update noar ti set b2='IYZ2Q6VZREMCZRO4SAS4DOUJ7QGTNVP' where id=4; -update noar tt set v0='B0CHY56DVWKWY8F8IC7TTTZMSOP1' where id=5; -update noar ti set v0='B0CHY56DVWKWY8F8IC7TTTZMSOP1' where id=5; -update noar tt set b0='2SASR7' where id=5; -update noar ti set b0='2SASR7' where id=5; -update noar tt set v0='XKISCEET6LG' where id=5; -update noar ti set v0='XKISCEET6LG' where id=5; -update noar tt set b1='DR9GPRNQH9KEV0LYG3F3' where id=5; -update noar ti set b1='DR9GPRNQH9KEV0LYG3F3' where id=5; -update noar tt set v0='II7LOD36CAR2HNTGBENX' where id=5; -update noar ti set v0='II7LOD36CAR2HNTGBENX' where id=5; -update noar tt set b2='MBY5RCYSH' where id=5; -update noar ti set b2='MBY5RCYSH' where id=5; -update noar tt set v0='GVJWR7KC9TCY2KIR4I5YW' where id=6; -update noar ti set v0='GVJWR7KC9TCY2KIR4I5YW' where id=6; -update noar tt set b0='L0570NIN17TQ0VKC' where id=6; -update noar ti set b0='L0570NIN17TQ0VKC' where id=6; -update noar tt set v0='7O7JSUFYHN0S4WRCDIRD' where id=6; -update noar ti set v0='7O7JSUFYHN0S4WRCDIRD' where id=6; -update noar tt set b1='NFSIFRK126XXUNAG38MMX6Q5QOEZ0W' where id=6; -update noar ti set b1='NFSIFRK126XXUNAG38MMX6Q5QOEZ0W' where id=6; -update noar tt set v0='NSP' where id=6; -update noar ti set v0='NSP' where id=6; -update noar tt set b2='IYI1B13P3D0B7JJCN' where id=6; -update noar ti set b2='IYI1B13P3D0B7JJCN' where id=6; -update noar tt set v0='JXC4' where id=7; -update noar ti set v0='JXC4' where id=7; -update noar tt set b0='XPQTVJGJ8TNR3YT0D' where id=7; -update noar ti set b0='XPQTVJGJ8TNR3YT0D' where id=7; -update noar tt set v0='CUN4NTDZKRXWS5Q9M7CER' where id=7; -update noar ti set v0='CUN4NTDZKRXWS5Q9M7CER' where id=7; -update noar tt set b1='G8DHXTSGNXUW' where id=7; -update noar ti set b1='G8DHXTSGNXUW' where id=7; -update noar tt set v0='SUPO4N75K8' where id=7; -update noar ti set v0='SUPO4N75K8' where id=7; -update noar tt set b2='MRHFYKI' where id=7; -update noar ti set b2='MRHFYKI' where id=7; -update noar tt set v0='MTC5F1VCOEHNDPRY' where id=8; -update noar ti set v0='MTC5F1VCOEHNDPRY' where id=8; -update noar tt set b0='Z2551V8D2' where id=8; -update noar ti set b0='Z2551V8D2' where id=8; -update noar tt set v0='C034Y5CZBZ28RLGCK3XUO' where id=8; -update noar ti set v0='C034Y5CZBZ28RLGCK3XUO' where id=8; -update noar tt set b1='FXDRZE82LX' where id=8; -update noar ti set b1='FXDRZE82LX' where id=8; -update noar tt set v0='MHSJFLU' where id=8; -update noar ti set v0='MHSJFLU' where id=8; -update noar tt set b2='G6YUGUA83DX3X7F2YMO5P4L5' where id=8; -update noar ti set b2='G6YUGUA83DX3X7F2YMO5P4L5' where id=8; -update noar tt set v0='4RSFIHB7O0' where id=9; -update noar ti set v0='4RSFIHB7O0' where id=9; -update noar tt set b0='9TA' where id=9; -update noar ti set b0='9TA' where id=9; -update noar tt set v0='4XPAK' where id=9; -update noar ti set v0='4XPAK' where id=9; -update noar tt set b1='VFP2O' where id=9; -update noar ti set b1='VFP2O' where id=9; -update noar tt set v0='YSZFP4XUUNYF7HLHH9RR' where id=9; -update noar ti set v0='YSZFP4XUUNYF7HLHH9RR' where id=9; -update noar tt set b2='OZ92E63NCPEC9J2' where id=9; -update noar ti set b2='OZ92E63NCPEC9J2' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -v0 varchar(256) not null, -b0 longblob not null, -b1 longblob not null, -b2 tinyblob not null -) engine=tokudb; -insert into tt values (1,'','','',''); -insert into tt values (2,'','','',''); -insert into tt values (3,'','','',''); -insert into tt values (4,'','','',''); -insert into tt values (5,'','','',''); -insert into tt values (6,'','','',''); -insert into tt values (7,'','','',''); -insert into tt values (8,'','','',''); -insert into tt values (9,'','','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='NP4IKXAT99YOZVHRFT' where id=1; -update noar ti set v0='NP4IKXAT99YOZVHRFT' where id=1; -update noar tt set b0='Y7SYCX8W3' where id=1; -update noar ti set b0='Y7SYCX8W3' where id=1; -update noar tt set v0='C3H85HL2VOQ7KOPFHVW' where id=1; -update noar ti set v0='C3H85HL2VOQ7KOPFHVW' where id=1; -update noar tt set b1='ZBRD2' where id=1; -update noar ti set b1='ZBRD2' where id=1; -update noar tt set v0='D94' where id=1; -update noar ti set v0='D94' where id=1; -update noar tt set b2='Q45AV1HPLZZXZCIJQNC75IW9AVQ500JP' where id=1; -update noar ti set b2='Q45AV1HPLZZXZCIJQNC75IW9AVQ500JP' where id=1; -update noar tt set v0='0TQX0E5QUPPJEWPA075R3XZW2XNA' where id=2; -update noar ti set v0='0TQX0E5QUPPJEWPA075R3XZW2XNA' where id=2; -update noar tt set b0='4IRR5MMCRE9EHZV9TC7Z6CAPQNC1DD5H' where id=2; -update noar ti set b0='4IRR5MMCRE9EHZV9TC7Z6CAPQNC1DD5H' where id=2; -update noar tt set v0='BMYDWE8N65CZUXJMUJLQSRZO8YBF' where id=2; -update noar ti set v0='BMYDWE8N65CZUXJMUJLQSRZO8YBF' where id=2; -update noar tt set b1='QJZ' where id=2; -update noar ti set b1='QJZ' where id=2; -update noar tt set v0='I0KEDT2TTTC9WC4E0X2V3ZQOMMK' where id=2; -update noar ti set v0='I0KEDT2TTTC9WC4E0X2V3ZQOMMK' where id=2; -update noar tt set b2='B96X7N' where id=2; -update noar ti set b2='B96X7N' where id=2; -update noar tt set v0='9OA0JWUY9NYTZRO37SSYS49GJI7E14JU' where id=3; -update noar ti set v0='9OA0JWUY9NYTZRO37SSYS49GJI7E14JU' where id=3; -update noar tt set b0='T' where id=3; -update noar ti set b0='T' where id=3; -update noar tt set v0='Q6PD5P39JFEDMLL8TQTYAH1Y' where id=3; -update noar ti set v0='Q6PD5P39JFEDMLL8TQTYAH1Y' where id=3; -update noar tt set b1='SEQL908JJ3' where id=3; -update noar ti set b1='SEQL908JJ3' where id=3; -update noar tt set v0='94DWF5EFS2GAA6XADVR2Y' where id=3; -update noar ti set v0='94DWF5EFS2GAA6XADVR2Y' where id=3; -update noar tt set b2='6KW' where id=3; -update noar ti set b2='6KW' where id=3; -update noar tt set v0='DYAW77E3ZXD6N6PDS0HLFPUKQH4' where id=4; -update noar ti set v0='DYAW77E3ZXD6N6PDS0HLFPUKQH4' where id=4; -update noar tt set b0='97CC0OR4GU5YW34O9G3WE' where id=4; -update noar ti set b0='97CC0OR4GU5YW34O9G3WE' where id=4; -update noar tt set v0='G4C05B3MZO2QV00LI54DTFWFTJ77N652' where id=4; -update noar ti set v0='G4C05B3MZO2QV00LI54DTFWFTJ77N652' where id=4; -update noar tt set b1='2I04' where id=4; -update noar ti set b1='2I04' where id=4; -update noar tt set v0='XB7YSPC1' where id=4; -update noar ti set v0='XB7YSPC1' where id=4; -update noar tt set b2='ZI' where id=4; -update noar ti set b2='ZI' where id=4; -update noar tt set v0='4ORML134L4E7OV1' where id=5; -update noar ti set v0='4ORML134L4E7OV1' where id=5; -update noar tt set b0='0JQN0BUBFCF3LVNHIULT80SJMA1OB9A8' where id=5; -update noar ti set b0='0JQN0BUBFCF3LVNHIULT80SJMA1OB9A8' where id=5; -update noar tt set v0='6WNA1' where id=5; -update noar ti set v0='6WNA1' where id=5; -update noar tt set b1='KH2N21FZBVVNXT' where id=5; -update noar ti set b1='KH2N21FZBVVNXT' where id=5; -update noar tt set v0='71NU42PJCX40QBX' where id=5; -update noar ti set v0='71NU42PJCX40QBX' where id=5; -update noar tt set b2='OKT389OSLS8FGB4QWOHEJMKZQI751P' where id=5; -update noar ti set b2='OKT389OSLS8FGB4QWOHEJMKZQI751P' where id=5; -update noar tt set v0='DAFL6DFK' where id=6; -update noar ti set v0='DAFL6DFK' where id=6; -update noar tt set b0='TC0Y' where id=6; -update noar ti set b0='TC0Y' where id=6; -update noar tt set v0='PAP5Q5FU41ZKMAYUOU0Q50NOXKTQI' where id=6; -update noar ti set v0='PAP5Q5FU41ZKMAYUOU0Q50NOXKTQI' where id=6; -update noar tt set b1='5LPAKVBZ6H9QA24' where id=6; -update noar ti set b1='5LPAKVBZ6H9QA24' where id=6; -update noar tt set v0='ZITMKAM5BP9YCF0K' where id=6; -update noar ti set v0='ZITMKAM5BP9YCF0K' where id=6; -update noar tt set b2='KV6I8KFCOK' where id=6; -update noar ti set b2='KV6I8KFCOK' where id=6; -update noar tt set v0='3E559JVFAS' where id=7; -update noar ti set v0='3E559JVFAS' where id=7; -update noar tt set b0='3KSY9DVQRV95BIS5C7QNRXPB6' where id=7; -update noar ti set b0='3KSY9DVQRV95BIS5C7QNRXPB6' where id=7; -update noar tt set v0='WWJL5UQ' where id=7; -update noar ti set v0='WWJL5UQ' where id=7; -update noar tt set b1='KWL1BKB1L07N797' where id=7; -update noar ti set b1='KWL1BKB1L07N797' where id=7; -update noar tt set v0='4HFM5SHP3WNPI9J51JNBQPYBVR' where id=7; -update noar ti set v0='4HFM5SHP3WNPI9J51JNBQPYBVR' where id=7; -update noar tt set b2='GUI7C' where id=7; -update noar ti set b2='GUI7C' where id=7; -update noar tt set v0='249V3Y78FFR2WB6UYWTY' where id=8; -update noar ti set v0='249V3Y78FFR2WB6UYWTY' where id=8; -update noar tt set b0='HY5ECNKUT2FI' where id=8; -update noar ti set b0='HY5ECNKUT2FI' where id=8; -update noar tt set v0='4HU4W7R10OMZSZO21X2' where id=8; -update noar ti set v0='4HU4W7R10OMZSZO21X2' where id=8; -update noar tt set b1='D67TG1' where id=8; -update noar ti set b1='D67TG1' where id=8; -update noar tt set v0='4ZN6MOOH3K4UAA55MK7PLQ1MPE' where id=8; -update noar ti set v0='4ZN6MOOH3K4UAA55MK7PLQ1MPE' where id=8; -update noar tt set b2='3151T5O' where id=8; -update noar ti set b2='3151T5O' where id=8; -update noar tt set v0='6HFX' where id=9; -update noar ti set v0='6HFX' where id=9; -update noar tt set b0='FUNLX89' where id=9; -update noar ti set b0='FUNLX89' where id=9; -update noar tt set v0='0JQV4OSSB6VPP9TJDUO1IUHAO8FEXU' where id=9; -update noar ti set v0='0JQV4OSSB6VPP9TJDUO1IUHAO8FEXU' where id=9; -update noar tt set b1='O87L8MBFS6SRJ2J4U9K' where id=9; -update noar ti set b1='O87L8MBFS6SRJ2J4U9K' where id=9; -update noar tt set v0='NLKEWRS0SKVW2KJF7M1EJTF0Y' where id=9; -update noar ti set v0='NLKEWRS0SKVW2KJF7M1EJTF0Y' where id=9; -update noar tt set b2='R7PGHEL' where id=9; -update noar ti set b2='R7PGHEL' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -v0 varchar(32) null, -b0 longblob null, -b1 longblob null, -b2 blob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='F72NWFY051JONVM1E4N4' where id=1; -update noar ti set v0='F72NWFY051JONVM1E4N4' where id=1; -update noar tt set b0='YKE1' where id=1; -update noar ti set b0='YKE1' where id=1; -update noar tt set v0='CXGL1OZJ5' where id=1; -update noar ti set v0='CXGL1OZJ5' where id=1; -update noar tt set b1='SOERUCNZTM1NTX1OASE7EI2L' where id=1; -update noar ti set b1='SOERUCNZTM1NTX1OASE7EI2L' where id=1; -update noar tt set v0='62DTN052LY5T7DKUG22YHGM' where id=1; -update noar ti set v0='62DTN052LY5T7DKUG22YHGM' where id=1; -update noar tt set b2='YFDP5VKSGP3QA3B' where id=1; -update noar ti set b2='YFDP5VKSGP3QA3B' where id=1; -update noar tt set v0='YH06LB1JEHMHO3U4EULLC69LK' where id=2; -update noar ti set v0='YH06LB1JEHMHO3U4EULLC69LK' where id=2; -update noar tt set b0='MQZBZP' where id=2; -update noar ti set b0='MQZBZP' where id=2; -update noar tt set v0='JFYGTWN40CT45B7GGYUTR' where id=2; -update noar ti set v0='JFYGTWN40CT45B7GGYUTR' where id=2; -update noar tt set b1='A8IAETVWRULGUMQX2E' where id=2; -update noar ti set b1='A8IAETVWRULGUMQX2E' where id=2; -update noar tt set v0='LJM4LCIEQ4WA61CL' where id=2; -update noar ti set v0='LJM4LCIEQ4WA61CL' where id=2; -update noar tt set b2='AJNR9KA606I0WEINCS1RLZ0M8208K' where id=2; -update noar ti set b2='AJNR9KA606I0WEINCS1RLZ0M8208K' where id=2; -update noar tt set v0='GUFJ' where id=3; -update noar ti set v0='GUFJ' where id=3; -update noar tt set b0='FMZ7LUVCL' where id=3; -update noar ti set b0='FMZ7LUVCL' where id=3; -update noar tt set v0='IGZA3P9YU6BLG44' where id=3; -update noar ti set v0='IGZA3P9YU6BLG44' where id=3; -update noar tt set b1='0AHRCNFSY928W' where id=3; -update noar ti set b1='0AHRCNFSY928W' where id=3; -update noar tt set v0='1LBZ3F4M' where id=3; -update noar ti set v0='1LBZ3F4M' where id=3; -update noar tt set b2='NM6YBTZN8WTGGAL4ZE' where id=3; -update noar ti set b2='NM6YBTZN8WTGGAL4ZE' where id=3; -update noar tt set v0='WSK' where id=4; -update noar ti set v0='WSK' where id=4; -update noar tt set b0='4IMKPEC354BD' where id=4; -update noar ti set b0='4IMKPEC354BD' where id=4; -update noar tt set v0='9KEY9LRGNX45UJ4MVAB5Y629B5VCJCH' where id=4; -update noar ti set v0='9KEY9LRGNX45UJ4MVAB5Y629B5VCJCH' where id=4; -update noar tt set b1='O8QEPCSCVG4TN8RE0P00M' where id=4; -update noar ti set b1='O8QEPCSCVG4TN8RE0P00M' where id=4; -update noar tt set v0='CDHA8OVJSBNV2' where id=4; -update noar ti set v0='CDHA8OVJSBNV2' where id=4; -update noar tt set b2='83TIOFSKYE89SBDFE7PPIC3IN1KQULT' where id=4; -update noar ti set b2='83TIOFSKYE89SBDFE7PPIC3IN1KQULT' where id=4; -update noar tt set v0='PDNQREAX4YAFDZST4' where id=5; -update noar ti set v0='PDNQREAX4YAFDZST4' where id=5; -update noar tt set b0='D3' where id=5; -update noar ti set b0='D3' where id=5; -update noar tt set v0='2WQ3NXOXYKC63AGL9JPA6H9FJP0P' where id=5; -update noar ti set v0='2WQ3NXOXYKC63AGL9JPA6H9FJP0P' where id=5; -update noar tt set b1='ONWN6' where id=5; -update noar ti set b1='ONWN6' where id=5; -update noar tt set v0='Z63OYWP1' where id=5; -update noar ti set v0='Z63OYWP1' where id=5; -update noar tt set b2='08GFNMGE2CN569GFG0ZO4IOCIEJRQ6E' where id=5; -update noar ti set b2='08GFNMGE2CN569GFG0ZO4IOCIEJRQ6E' where id=5; -update noar tt set v0='F11EJ73DUP397PSBXDZEJ7Z' where id=6; -update noar ti set v0='F11EJ73DUP397PSBXDZEJ7Z' where id=6; -update noar tt set b0='68ITH8MZV5VM3FGPKJ5EK1PGCO3MA' where id=6; -update noar ti set b0='68ITH8MZV5VM3FGPKJ5EK1PGCO3MA' where id=6; -update noar tt set v0='KNEK' where id=6; -update noar ti set v0='KNEK' where id=6; -update noar tt set b1='EBLGZXZL362MTG38JZGQU8JQ' where id=6; -update noar ti set b1='EBLGZXZL362MTG38JZGQU8JQ' where id=6; -update noar tt set v0='21DPG0O26YEMF722QXIOHI' where id=6; -update noar ti set v0='21DPG0O26YEMF722QXIOHI' where id=6; -update noar tt set b2='U9LV8NADTRY35NL17HWW137' where id=6; -update noar ti set b2='U9LV8NADTRY35NL17HWW137' where id=6; -update noar tt set v0='UAC629SBMJLSN1QR1M' where id=7; -update noar ti set v0='UAC629SBMJLSN1QR1M' where id=7; -update noar tt set b0='LWIQ3DHPERZ8GW9YCL644FS7L53T' where id=7; -update noar ti set b0='LWIQ3DHPERZ8GW9YCL644FS7L53T' where id=7; -update noar tt set v0='KHDNXO0YUBC' where id=7; -update noar ti set v0='KHDNXO0YUBC' where id=7; -update noar tt set b1='1DYRKIZMDUTKHR009JNJ0TSKYUSVQCT' where id=7; -update noar ti set b1='1DYRKIZMDUTKHR009JNJ0TSKYUSVQCT' where id=7; -update noar tt set v0='1TP2B6JG4GHVDR05QNTVFFIBV2YT' where id=7; -update noar ti set v0='1TP2B6JG4GHVDR05QNTVFFIBV2YT' where id=7; -update noar tt set b2='1N' where id=7; -update noar ti set b2='1N' where id=7; -update noar tt set v0='EPHKTPAMZSO9VD' where id=8; -update noar ti set v0='EPHKTPAMZSO9VD' where id=8; -update noar tt set b0='UCTP1PB4S37LMC11O4SG' where id=8; -update noar ti set b0='UCTP1PB4S37LMC11O4SG' where id=8; -update noar tt set v0='Z72ZKRJ80GXAKD9XC' where id=8; -update noar ti set v0='Z72ZKRJ80GXAKD9XC' where id=8; -update noar tt set b1='424GFORQPN7IFY9WXF75' where id=8; -update noar ti set b1='424GFORQPN7IFY9WXF75' where id=8; -update noar tt set v0='DXL2TJAZ76S' where id=8; -update noar ti set v0='DXL2TJAZ76S' where id=8; -update noar tt set b2='7VMAGJF9654ODDIF6Y' where id=8; -update noar ti set b2='7VMAGJF9654ODDIF6Y' where id=8; -update noar tt set v0='PE2LA6KP2AQ3XYZ16XVL4GFE' where id=9; -update noar ti set v0='PE2LA6KP2AQ3XYZ16XVL4GFE' where id=9; -update noar tt set b0='Q620B3726' where id=9; -update noar ti set b0='Q620B3726' where id=9; -update noar tt set v0='LSZK5M0CR46TQM7J7202' where id=9; -update noar ti set v0='LSZK5M0CR46TQM7J7202' where id=9; -update noar tt set b1='PN1AEX4113G2MWG6T2TE749' where id=9; -update noar ti set b1='PN1AEX4113G2MWG6T2TE749' where id=9; -update noar tt set v0='05CRYOREIPFEI2TTFVQ4SD4GLU7EL9' where id=9; -update noar ti set v0='05CRYOREIPFEI2TTFVQ4SD4GLU7EL9' where id=9; -update noar tt set b2='9AMN88PAHTXOJT780AOVYR4' where id=9; -update noar ti set b2='9AMN88PAHTXOJT780AOVYR4' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -v0 varchar(256) null, -b0 longblob null, -b1 longblob null, -b2 blob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='APLZI' where id=1; -update noar ti set v0='APLZI' where id=1; -update noar tt set b0='S9MZ4WBPJ1ELTXHYXU6751NX165H9K' where id=1; -update noar ti set b0='S9MZ4WBPJ1ELTXHYXU6751NX165H9K' where id=1; -update noar tt set v0='I4V63LCSQ' where id=1; -update noar ti set v0='I4V63LCSQ' where id=1; -update noar tt set b1='MHQJC9NV7C8Y0XM' where id=1; -update noar ti set b1='MHQJC9NV7C8Y0XM' where id=1; -update noar tt set v0='R0Q5TLCM4E' where id=1; -update noar ti set v0='R0Q5TLCM4E' where id=1; -update noar tt set b2='01W3U47FLDXU' where id=1; -update noar ti set b2='01W3U47FLDXU' where id=1; -update noar tt set v0='A4U7B4LAI3FDVAT7UG25TZATDXYT' where id=2; -update noar ti set v0='A4U7B4LAI3FDVAT7UG25TZATDXYT' where id=2; -update noar tt set b0='H19OVWEIZV0L4ZPU' where id=2; -update noar ti set b0='H19OVWEIZV0L4ZPU' where id=2; -update noar tt set v0='8QXDGL1YI17WMRX2X8' where id=2; -update noar ti set v0='8QXDGL1YI17WMRX2X8' where id=2; -update noar tt set b1='SNSJ1OA' where id=2; -update noar ti set b1='SNSJ1OA' where id=2; -update noar tt set v0='ACAKCLR0Z' where id=2; -update noar ti set v0='ACAKCLR0Z' where id=2; -update noar tt set b2='GKW8' where id=2; -update noar ti set b2='GKW8' where id=2; -update noar tt set v0='GORMU1E6O4SZF5N' where id=3; -update noar ti set v0='GORMU1E6O4SZF5N' where id=3; -update noar tt set b0='0B1QFQWK4QIYQUD9YLN6' where id=3; -update noar ti set b0='0B1QFQWK4QIYQUD9YLN6' where id=3; -update noar tt set v0='M4F2ZS8S5ED6' where id=3; -update noar ti set v0='M4F2ZS8S5ED6' where id=3; -update noar tt set b1='19PJZNZ7XSTA4F218O204ZI1R4' where id=3; -update noar ti set b1='19PJZNZ7XSTA4F218O204ZI1R4' where id=3; -update noar tt set v0='AR8GF7OXRV3VYBOG8ECQLP64S7' where id=3; -update noar ti set v0='AR8GF7OXRV3VYBOG8ECQLP64S7' where id=3; -update noar tt set b2='JXRWRAFA0XCIEC6HIW9HG27C' where id=3; -update noar ti set b2='JXRWRAFA0XCIEC6HIW9HG27C' where id=3; -update noar tt set v0='Z3XLULRTTIJYE86ZZ1LFLU3Z' where id=4; -update noar ti set v0='Z3XLULRTTIJYE86ZZ1LFLU3Z' where id=4; -update noar tt set b0='1' where id=4; -update noar ti set b0='1' where id=4; -update noar tt set v0='225NUVBNSANXY8FXQ' where id=4; -update noar ti set v0='225NUVBNSANXY8FXQ' where id=4; -update noar tt set b1='40CCS0V14AQYGU3HUV0' where id=4; -update noar ti set b1='40CCS0V14AQYGU3HUV0' where id=4; -update noar tt set v0='XE9IQE9RG5F0F' where id=4; -update noar ti set v0='XE9IQE9RG5F0F' where id=4; -update noar tt set b2='YU5YRK0M3JA5U4FHN1XJUMVFGW' where id=4; -update noar ti set b2='YU5YRK0M3JA5U4FHN1XJUMVFGW' where id=4; -update noar tt set v0='THQDSFZFBIRX1QA0I2QLMDO5ZCCGPLRI' where id=5; -update noar ti set v0='THQDSFZFBIRX1QA0I2QLMDO5ZCCGPLRI' where id=5; -update noar tt set b0='157GH41KBMXQ1NB86SI8' where id=5; -update noar ti set b0='157GH41KBMXQ1NB86SI8' where id=5; -update noar tt set v0='E69RBLXP6GE3SZ7NA1Y8' where id=5; -update noar ti set v0='E69RBLXP6GE3SZ7NA1Y8' where id=5; -update noar tt set b1='CJI5CKES00ZEUFRDICA67' where id=5; -update noar ti set b1='CJI5CKES00ZEUFRDICA67' where id=5; -update noar tt set v0='I0P6UW01XIQ3WUNIR' where id=5; -update noar ti set v0='I0P6UW01XIQ3WUNIR' where id=5; -update noar tt set b2='E7' where id=5; -update noar ti set b2='E7' where id=5; -update noar tt set v0='5CWTITYB30POBA565D17PZGT1TFT311' where id=6; -update noar ti set v0='5CWTITYB30POBA565D17PZGT1TFT311' where id=6; -update noar tt set b0='O1HKAN2KDVFHRWKVV' where id=6; -update noar ti set b0='O1HKAN2KDVFHRWKVV' where id=6; -update noar tt set v0='P1U732XALDLCKC4VGJCBWSL2TEJ4ISD1' where id=6; -update noar ti set v0='P1U732XALDLCKC4VGJCBWSL2TEJ4ISD1' where id=6; -update noar tt set b1='45XI' where id=6; -update noar ti set b1='45XI' where id=6; -update noar tt set v0='ZE08WAVCCXIMXEKIYVJQ3Q0' where id=6; -update noar ti set v0='ZE08WAVCCXIMXEKIYVJQ3Q0' where id=6; -update noar tt set b2='TFH0198RJO7L' where id=6; -update noar ti set b2='TFH0198RJO7L' where id=6; -update noar tt set v0='3Z' where id=7; -update noar ti set v0='3Z' where id=7; -update noar tt set b0='XJA96B06L9AP97TX' where id=7; -update noar ti set b0='XJA96B06L9AP97TX' where id=7; -update noar tt set v0='64TJ2GMIHOYE' where id=7; -update noar ti set v0='64TJ2GMIHOYE' where id=7; -update noar tt set b1='5CDAHJ' where id=7; -update noar ti set b1='5CDAHJ' where id=7; -update noar tt set v0='5EPYCKMEP5OQYXZ67' where id=7; -update noar ti set v0='5EPYCKMEP5OQYXZ67' where id=7; -update noar tt set b2='1KW5SQH3O1C9MVVNGLA92EOQ15HAB8IY' where id=7; -update noar ti set b2='1KW5SQH3O1C9MVVNGLA92EOQ15HAB8IY' where id=7; -update noar tt set v0='1YDMMK99RLONRIEHZC8JUS' where id=8; -update noar ti set v0='1YDMMK99RLONRIEHZC8JUS' where id=8; -update noar tt set b0='0HE327ETWP8ZYGQ8DXS' where id=8; -update noar ti set b0='0HE327ETWP8ZYGQ8DXS' where id=8; -update noar tt set v0='AQ852028Z1Y9FYITIHTM' where id=8; -update noar ti set v0='AQ852028Z1Y9FYITIHTM' where id=8; -update noar tt set b1='3DXVPJW8Y8' where id=8; -update noar ti set b1='3DXVPJW8Y8' where id=8; -update noar tt set v0='IN' where id=8; -update noar ti set v0='IN' where id=8; -update noar tt set b2='SOI73ZNUPWHTSW' where id=8; -update noar ti set b2='SOI73ZNUPWHTSW' where id=8; -update noar tt set v0='83868FRCEWWI' where id=9; -update noar ti set v0='83868FRCEWWI' where id=9; -update noar tt set b0='8N76N1ZG6KIHHUVUB73GDVZGN738A' where id=9; -update noar ti set b0='8N76N1ZG6KIHHUVUB73GDVZGN738A' where id=9; -update noar tt set v0='E8YAGGTRWYS' where id=9; -update noar ti set v0='E8YAGGTRWYS' where id=9; -update noar tt set b1='SGEATI51WWWYV6BDT' where id=9; -update noar ti set b1='SGEATI51WWWYV6BDT' where id=9; -update noar tt set v0='2' where id=9; -update noar ti set v0='2' where id=9; -update noar tt set b2='6' where id=9; -update noar ti set b2='6' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -v0 varchar(32) not null, -b0 longblob not null, -b1 longblob not null, -b2 blob not null -) engine=tokudb; -insert into tt values (1,'','','',''); -insert into tt values (2,'','','',''); -insert into tt values (3,'','','',''); -insert into tt values (4,'','','',''); -insert into tt values (5,'','','',''); -insert into tt values (6,'','','',''); -insert into tt values (7,'','','',''); -insert into tt values (8,'','','',''); -insert into tt values (9,'','','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='6ZBNVKOG3W6NX4RB' where id=1; -update noar ti set v0='6ZBNVKOG3W6NX4RB' where id=1; -update noar tt set b0='QX8O7MA5URA98KP94' where id=1; -update noar ti set b0='QX8O7MA5URA98KP94' where id=1; -update noar tt set v0='G1RI' where id=1; -update noar ti set v0='G1RI' where id=1; -update noar tt set b1='AMIUUG4FC5JLMTQTFNQOM' where id=1; -update noar ti set b1='AMIUUG4FC5JLMTQTFNQOM' where id=1; -update noar tt set v0='5SOZSZ9ORSJFQ3DB661DEI5R' where id=1; -update noar ti set v0='5SOZSZ9ORSJFQ3DB661DEI5R' where id=1; -update noar tt set b2='1GT4K11JD1UC8HFVDD5Q3TYPGC' where id=1; -update noar ti set b2='1GT4K11JD1UC8HFVDD5Q3TYPGC' where id=1; -update noar tt set v0='1270IA7FZOOF3' where id=2; -update noar ti set v0='1270IA7FZOOF3' where id=2; -update noar tt set b0='94VPNXSEYWLZU8GRM08XFAIFQ' where id=2; -update noar ti set b0='94VPNXSEYWLZU8GRM08XFAIFQ' where id=2; -update noar tt set v0='3N309BC1X29YOJLKIH0T610VNQ' where id=2; -update noar ti set v0='3N309BC1X29YOJLKIH0T610VNQ' where id=2; -update noar tt set b1='TI1UBV' where id=2; -update noar ti set b1='TI1UBV' where id=2; -update noar tt set v0='7Y7Y6KQGY654GH99E8ULTEYST9P' where id=2; -update noar ti set v0='7Y7Y6KQGY654GH99E8ULTEYST9P' where id=2; -update noar tt set b2='4J1' where id=2; -update noar ti set b2='4J1' where id=2; -update noar tt set v0='YINZ3QJL3BD3Q6YPY67Y07VBHR' where id=3; -update noar ti set v0='YINZ3QJL3BD3Q6YPY67Y07VBHR' where id=3; -update noar tt set b0='BDIGSLA111X85PNCA748Q9VFW95D9' where id=3; -update noar ti set b0='BDIGSLA111X85PNCA748Q9VFW95D9' where id=3; -update noar tt set v0='K2A2LFVTVSKSGXHNO80BFCV0VD' where id=3; -update noar ti set v0='K2A2LFVTVSKSGXHNO80BFCV0VD' where id=3; -update noar tt set b1='FS8IKIEFRHJCOG0WU0OZ5W6UMW8QHYN' where id=3; -update noar ti set b1='FS8IKIEFRHJCOG0WU0OZ5W6UMW8QHYN' where id=3; -update noar tt set v0='0N' where id=3; -update noar ti set v0='0N' where id=3; -update noar tt set b2='Y8CMUCOD' where id=3; -update noar ti set b2='Y8CMUCOD' where id=3; -update noar tt set v0='X' where id=4; -update noar ti set v0='X' where id=4; -update noar tt set b0='X' where id=4; -update noar ti set b0='X' where id=4; -update noar tt set v0='7R2JXVMPCVQGIMVHH6S3A' where id=4; -update noar ti set v0='7R2JXVMPCVQGIMVHH6S3A' where id=4; -update noar tt set b1='YK40PK165PPS' where id=4; -update noar ti set b1='YK40PK165PPS' where id=4; -update noar tt set v0='0F79BGF63EHJKH6OHB49LLGJ' where id=4; -update noar ti set v0='0F79BGF63EHJKH6OHB49LLGJ' where id=4; -update noar tt set b2='DA3NEDNCW9NUF87' where id=4; -update noar ti set b2='DA3NEDNCW9NUF87' where id=4; -update noar tt set v0='UN6NUVXDYV68AZT8T65XJW2VMJF' where id=5; -update noar ti set v0='UN6NUVXDYV68AZT8T65XJW2VMJF' where id=5; -update noar tt set b0='Y3CP1FCN93' where id=5; -update noar ti set b0='Y3CP1FCN93' where id=5; -update noar tt set v0='AR9JVNGCRIJ' where id=5; -update noar ti set v0='AR9JVNGCRIJ' where id=5; -update noar tt set b1='5MU6N' where id=5; -update noar ti set b1='5MU6N' where id=5; -update noar tt set v0='SW9A7073QK8IFU5P' where id=5; -update noar ti set v0='SW9A7073QK8IFU5P' where id=5; -update noar tt set b2='NY3EY' where id=5; -update noar ti set b2='NY3EY' where id=5; -update noar tt set v0='GKUH3JWD1Q7MV' where id=6; -update noar ti set v0='GKUH3JWD1Q7MV' where id=6; -update noar tt set b0='SAW4QX2J9UUA4QICOWMVO3Y' where id=6; -update noar ti set b0='SAW4QX2J9UUA4QICOWMVO3Y' where id=6; -update noar tt set v0='O9JR149YTD5AC74D' where id=6; -update noar ti set v0='O9JR149YTD5AC74D' where id=6; -update noar tt set b1='HP2' where id=6; -update noar ti set b1='HP2' where id=6; -update noar tt set v0='G8C00B9YWE8RM9I3JASP7C58CAF4S' where id=6; -update noar ti set v0='G8C00B9YWE8RM9I3JASP7C58CAF4S' where id=6; -update noar tt set b2='JGGTNH1Q4D11DL5QSBXZQD5RR4M530' where id=6; -update noar ti set b2='JGGTNH1Q4D11DL5QSBXZQD5RR4M530' where id=6; -update noar tt set v0='S75Z2E0HLQLOPKOL672WJQ' where id=7; -update noar ti set v0='S75Z2E0HLQLOPKOL672WJQ' where id=7; -update noar tt set b0='638SVMZ1HDZ' where id=7; -update noar ti set b0='638SVMZ1HDZ' where id=7; -update noar tt set v0='5K' where id=7; -update noar ti set v0='5K' where id=7; -update noar tt set b1='3XC' where id=7; -update noar ti set b1='3XC' where id=7; -update noar tt set v0='V5NIFIE57BNHT9GC8' where id=7; -update noar ti set v0='V5NIFIE57BNHT9GC8' where id=7; -update noar tt set b2='K5YFJQLVCESN9A' where id=7; -update noar ti set b2='K5YFJQLVCESN9A' where id=7; -update noar tt set v0='ZHZWH4OFS91HN22GJWK3G' where id=8; -update noar ti set v0='ZHZWH4OFS91HN22GJWK3G' where id=8; -update noar tt set b0='22ZU078V' where id=8; -update noar ti set b0='22ZU078V' where id=8; -update noar tt set v0='PGNQOOW733ZWZ2AIG9WMBX6X71QCDC2' where id=8; -update noar ti set v0='PGNQOOW733ZWZ2AIG9WMBX6X71QCDC2' where id=8; -update noar tt set b1='CHQWB5G7TB7R6F' where id=8; -update noar ti set b1='CHQWB5G7TB7R6F' where id=8; -update noar tt set v0='MCNXLAYKR1MER4R1U0UUQ5YCZ27Q16G' where id=8; -update noar ti set v0='MCNXLAYKR1MER4R1U0UUQ5YCZ27Q16G' where id=8; -update noar tt set b2='N3Y0' where id=8; -update noar ti set b2='N3Y0' where id=8; -update noar tt set v0='GY7Y73QRKBYO9H0856DT34' where id=9; -update noar ti set v0='GY7Y73QRKBYO9H0856DT34' where id=9; -update noar tt set b0='D5OGS' where id=9; -update noar ti set b0='D5OGS' where id=9; -update noar tt set v0='VLI69Y0IGG9X2G9ZJV0XU671TQXDQ4L' where id=9; -update noar ti set v0='VLI69Y0IGG9X2G9ZJV0XU671TQXDQ4L' where id=9; -update noar tt set b1='ESTISXLS27HP2TSFS8IQ' where id=9; -update noar ti set b1='ESTISXLS27HP2TSFS8IQ' where id=9; -update noar tt set v0='OWHJZDT3YWSAG2U' where id=9; -update noar ti set v0='OWHJZDT3YWSAG2U' where id=9; -update noar tt set b2='B0Z' where id=9; -update noar ti set b2='B0Z' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -v0 varchar(256) not null, -b0 longblob not null, -b1 longblob not null, -b2 blob not null -) engine=tokudb; -insert into tt values (1,'','','',''); -insert into tt values (2,'','','',''); -insert into tt values (3,'','','',''); -insert into tt values (4,'','','',''); -insert into tt values (5,'','','',''); -insert into tt values (6,'','','',''); -insert into tt values (7,'','','',''); -insert into tt values (8,'','','',''); -insert into tt values (9,'','','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='ONFF44G2302R' where id=1; -update noar ti set v0='ONFF44G2302R' where id=1; -update noar tt set b0='UC5R9GZTZ3GL4WG' where id=1; -update noar ti set b0='UC5R9GZTZ3GL4WG' where id=1; -update noar tt set v0='V' where id=1; -update noar ti set v0='V' where id=1; -update noar tt set b1='9PF80X3LPB9ZYO6VF19IA8' where id=1; -update noar ti set b1='9PF80X3LPB9ZYO6VF19IA8' where id=1; -update noar tt set v0='XSCJ6ER4CAI' where id=1; -update noar ti set v0='XSCJ6ER4CAI' where id=1; -update noar tt set b2='EP15TLUDWYZGFC' where id=1; -update noar ti set b2='EP15TLUDWYZGFC' where id=1; -update noar tt set v0='ZOBJM6BIB58SYN' where id=2; -update noar ti set v0='ZOBJM6BIB58SYN' where id=2; -update noar tt set b0='JEV0KHG' where id=2; -update noar ti set b0='JEV0KHG' where id=2; -update noar tt set v0='QQVJ0' where id=2; -update noar ti set v0='QQVJ0' where id=2; -update noar tt set b1='VVBKWCNX0S43N3A0NBT8KPQOT78P4NGD' where id=2; -update noar ti set b1='VVBKWCNX0S43N3A0NBT8KPQOT78P4NGD' where id=2; -update noar tt set v0='2NTRQQYTSWC1R5KQ44D283Z9U412W2A' where id=2; -update noar ti set v0='2NTRQQYTSWC1R5KQ44D283Z9U412W2A' where id=2; -update noar tt set b2='RPSC5L8' where id=2; -update noar ti set b2='RPSC5L8' where id=2; -update noar tt set v0='TQZHRXXTV3TF964F2JM1LUNOEL35RU' where id=3; -update noar ti set v0='TQZHRXXTV3TF964F2JM1LUNOEL35RU' where id=3; -update noar tt set b0='JLBNDOU9UND27' where id=3; -update noar ti set b0='JLBNDOU9UND27' where id=3; -update noar tt set v0='BGI68Q06' where id=3; -update noar ti set v0='BGI68Q06' where id=3; -update noar tt set b1='NZZC3V2E5O3SSH8T5' where id=3; -update noar ti set b1='NZZC3V2E5O3SSH8T5' where id=3; -update noar tt set v0='JGKQUMGQ7G07XZ8GI' where id=3; -update noar ti set v0='JGKQUMGQ7G07XZ8GI' where id=3; -update noar tt set b2='1QXL' where id=3; -update noar ti set b2='1QXL' where id=3; -update noar tt set v0='3OT0Z8' where id=4; -update noar ti set v0='3OT0Z8' where id=4; -update noar tt set b0='5R0ZEF' where id=4; -update noar ti set b0='5R0ZEF' where id=4; -update noar tt set v0='9PZFZJ6ENDTNTOSRL' where id=4; -update noar ti set v0='9PZFZJ6ENDTNTOSRL' where id=4; -update noar tt set b1='CKPULBG8ZMEOGBH713IHHKTKLF' where id=4; -update noar ti set b1='CKPULBG8ZMEOGBH713IHHKTKLF' where id=4; -update noar tt set v0='P0XEWHUE19J0ICFPLHSEGW' where id=4; -update noar ti set v0='P0XEWHUE19J0ICFPLHSEGW' where id=4; -update noar tt set b2='9YF1NI30R1ZP8FESQCR' where id=4; -update noar ti set b2='9YF1NI30R1ZP8FESQCR' where id=4; -update noar tt set v0='WT6E0O93I89T8UB59LM78WRNNKA2N1FF' where id=5; -update noar ti set v0='WT6E0O93I89T8UB59LM78WRNNKA2N1FF' where id=5; -update noar tt set b0='4BWWN467RNC1M5CRZQ' where id=5; -update noar ti set b0='4BWWN467RNC1M5CRZQ' where id=5; -update noar tt set v0='V5I916LT9G4YWHRFUZVS92' where id=5; -update noar ti set v0='V5I916LT9G4YWHRFUZVS92' where id=5; -update noar tt set b1='YKTLN36YOE2C87PMY2O2Q4MYRQR0' where id=5; -update noar ti set b1='YKTLN36YOE2C87PMY2O2Q4MYRQR0' where id=5; -update noar tt set v0='RDQ1PCR' where id=5; -update noar ti set v0='RDQ1PCR' where id=5; -update noar tt set b2='P9ZZEQ79YMBLG3Q80JC1PF' where id=5; -update noar ti set b2='P9ZZEQ79YMBLG3Q80JC1PF' where id=5; -update noar tt set v0='TSQ7SMNE2UK57' where id=6; -update noar ti set v0='TSQ7SMNE2UK57' where id=6; -update noar tt set b0='96G9QADI0NURQB8SR8AW3Z' where id=6; -update noar ti set b0='96G9QADI0NURQB8SR8AW3Z' where id=6; -update noar tt set v0='LSGP724UKNHA86OZO' where id=6; -update noar ti set v0='LSGP724UKNHA86OZO' where id=6; -update noar tt set b1='W5PPE5Q6' where id=6; -update noar ti set b1='W5PPE5Q6' where id=6; -update noar tt set v0='KJ5R' where id=6; -update noar ti set v0='KJ5R' where id=6; -update noar tt set b2='44V3F' where id=6; -update noar ti set b2='44V3F' where id=6; -update noar tt set v0='8F41FKG835LCEE9HBQ' where id=7; -update noar ti set v0='8F41FKG835LCEE9HBQ' where id=7; -update noar tt set b0='KA72MDBST2VEN2RUXSZS1KEEEI3J271' where id=7; -update noar ti set b0='KA72MDBST2VEN2RUXSZS1KEEEI3J271' where id=7; -update noar tt set v0='3I4KFFXPOMX' where id=7; -update noar ti set v0='3I4KFFXPOMX' where id=7; -update noar tt set b1='BGDG' where id=7; -update noar ti set b1='BGDG' where id=7; -update noar tt set v0='INYS5F0A7YMJZHPAMY0YJLP0P99160' where id=7; -update noar ti set v0='INYS5F0A7YMJZHPAMY0YJLP0P99160' where id=7; -update noar tt set b2='75AGVP4YUIJQ3USI9LTK8M' where id=7; -update noar ti set b2='75AGVP4YUIJQ3USI9LTK8M' where id=7; -update noar tt set v0='QPFVBY5OMJN' where id=8; -update noar ti set v0='QPFVBY5OMJN' where id=8; -update noar tt set b0='FHOWUG2M30B0SCM4FBIA' where id=8; -update noar ti set b0='FHOWUG2M30B0SCM4FBIA' where id=8; -update noar tt set v0='LTNSHQ3' where id=8; -update noar ti set v0='LTNSHQ3' where id=8; -update noar tt set b1='D2TI8X28OV4FT0P6867HZA2TVJAX0L' where id=8; -update noar ti set b1='D2TI8X28OV4FT0P6867HZA2TVJAX0L' where id=8; -update noar tt set v0='4' where id=8; -update noar ti set v0='4' where id=8; -update noar tt set b2='B50OD0' where id=8; -update noar ti set b2='B50OD0' where id=8; -update noar tt set v0='G' where id=9; -update noar ti set v0='G' where id=9; -update noar tt set b0='9ZKNYBO5C' where id=9; -update noar ti set b0='9ZKNYBO5C' where id=9; -update noar tt set v0='3V1ZXCECFE458612Z20AL' where id=9; -update noar ti set v0='3V1ZXCECFE458612Z20AL' where id=9; -update noar tt set b1='S8L' where id=9; -update noar ti set b1='S8L' where id=9; -update noar tt set v0='4NFAK0P40' where id=9; -update noar ti set v0='4NFAK0P40' where id=9; -update noar tt set b2='TVC5WGNVIKZQAZOU2Q' where id=9; -update noar ti set b2='TVC5WGNVIKZQAZOU2Q' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -v0 varchar(32) null, -b0 longblob null, -b1 longblob null, -b2 mediumblob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='GBAK2BFJAOAQZSAE1' where id=1; -update noar ti set v0='GBAK2BFJAOAQZSAE1' where id=1; -update noar tt set b0='68SKPCL6Q1T11H43QMNDZARIW7C' where id=1; -update noar ti set b0='68SKPCL6Q1T11H43QMNDZARIW7C' where id=1; -update noar tt set v0='PYUIY91OPGDQTNJ9ICXJRVWGACSVI4' where id=1; -update noar ti set v0='PYUIY91OPGDQTNJ9ICXJRVWGACSVI4' where id=1; -update noar tt set b1='75' where id=1; -update noar ti set b1='75' where id=1; -update noar tt set v0='6L3C5H' where id=1; -update noar ti set v0='6L3C5H' where id=1; -update noar tt set b2='R4HZOO7UMCKCLR7NEV5C' where id=1; -update noar ti set b2='R4HZOO7UMCKCLR7NEV5C' where id=1; -update noar tt set v0='MF9CRTJ0SO5JUEZSP04L471MT27V9W' where id=2; -update noar ti set v0='MF9CRTJ0SO5JUEZSP04L471MT27V9W' where id=2; -update noar tt set b0='WQ5SMJW4YB32YW5R8KTMEMLSSKH49AU' where id=2; -update noar ti set b0='WQ5SMJW4YB32YW5R8KTMEMLSSKH49AU' where id=2; -update noar tt set v0='CEBLSXHJFZM8PZH' where id=2; -update noar ti set v0='CEBLSXHJFZM8PZH' where id=2; -update noar tt set b1='LZMVYM8' where id=2; -update noar ti set b1='LZMVYM8' where id=2; -update noar tt set v0='9K91PKWQCGXUVBFM9ZYIJLZOIYPP' where id=2; -update noar ti set v0='9K91PKWQCGXUVBFM9ZYIJLZOIYPP' where id=2; -update noar tt set b2='3G7C5EFVZNVHH' where id=2; -update noar ti set b2='3G7C5EFVZNVHH' where id=2; -update noar tt set v0='RG3HEJVRQ1NZ' where id=3; -update noar ti set v0='RG3HEJVRQ1NZ' where id=3; -update noar tt set b0='80ZRCXXZB6JMYCPUC5IOE3E9L' where id=3; -update noar ti set b0='80ZRCXXZB6JMYCPUC5IOE3E9L' where id=3; -update noar tt set v0='Z09I' where id=3; -update noar ti set v0='Z09I' where id=3; -update noar tt set b1='ZGI0798ASCB9LBTUP1NIA5ANZ' where id=3; -update noar ti set b1='ZGI0798ASCB9LBTUP1NIA5ANZ' where id=3; -update noar tt set v0='I' where id=3; -update noar ti set v0='I' where id=3; -update noar tt set b2='CA4I0PRT3GTU7TB07MRR1EAG1GFVD' where id=3; -update noar ti set b2='CA4I0PRT3GTU7TB07MRR1EAG1GFVD' where id=3; -update noar tt set v0='P17KDT11RZTM7NJFHAY7S' where id=4; -update noar ti set v0='P17KDT11RZTM7NJFHAY7S' where id=4; -update noar tt set b0='3' where id=4; -update noar ti set b0='3' where id=4; -update noar tt set v0='RM' where id=4; -update noar ti set v0='RM' where id=4; -update noar tt set b1='G0LSI2ZRCTHNTWKMR4BAKTDKT7AC9Y' where id=4; -update noar ti set b1='G0LSI2ZRCTHNTWKMR4BAKTDKT7AC9Y' where id=4; -update noar tt set v0='U76' where id=4; -update noar ti set v0='U76' where id=4; -update noar tt set b2='ZYKG98BP' where id=4; -update noar ti set b2='ZYKG98BP' where id=4; -update noar tt set v0='OJTAQG1TZMB7IIGAIQCEFYWL' where id=5; -update noar ti set v0='OJTAQG1TZMB7IIGAIQCEFYWL' where id=5; -update noar tt set b0='WZ6UW2AXNVHZZR3S213H' where id=5; -update noar ti set b0='WZ6UW2AXNVHZZR3S213H' where id=5; -update noar tt set v0='2QDB4AXJCRQ8CQRPHMXO298' where id=5; -update noar ti set v0='2QDB4AXJCRQ8CQRPHMXO298' where id=5; -update noar tt set b1='V3HOG6WVDD81L0IRYXX' where id=5; -update noar ti set b1='V3HOG6WVDD81L0IRYXX' where id=5; -update noar tt set v0='WCES569KHVDNK8AL2WEWXWLJO963OP3' where id=5; -update noar ti set v0='WCES569KHVDNK8AL2WEWXWLJO963OP3' where id=5; -update noar tt set b2='3TEB7F6M8GDF' where id=5; -update noar ti set b2='3TEB7F6M8GDF' where id=5; -update noar tt set v0='J5A74PPDI7DOHN7ONV3WNO8' where id=6; -update noar ti set v0='J5A74PPDI7DOHN7ONV3WNO8' where id=6; -update noar tt set b0='V07KWAZ0CZ4NGOL' where id=6; -update noar ti set b0='V07KWAZ0CZ4NGOL' where id=6; -update noar tt set v0='Z2M0IN0E2CJUW56N1XC' where id=6; -update noar ti set v0='Z2M0IN0E2CJUW56N1XC' where id=6; -update noar tt set b1='N5A' where id=6; -update noar ti set b1='N5A' where id=6; -update noar tt set v0='WFAGYXW8RY' where id=6; -update noar ti set v0='WFAGYXW8RY' where id=6; -update noar tt set b2='DQVMF' where id=6; -update noar ti set b2='DQVMF' where id=6; -update noar tt set v0='ODYUYEZLTQWHFXP7HO' where id=7; -update noar ti set v0='ODYUYEZLTQWHFXP7HO' where id=7; -update noar tt set b0='42' where id=7; -update noar ti set b0='42' where id=7; -update noar tt set v0='JW06A2SCBZJ0UBF' where id=7; -update noar ti set v0='JW06A2SCBZJ0UBF' where id=7; -update noar tt set b1='T' where id=7; -update noar ti set b1='T' where id=7; -update noar tt set v0='Q1' where id=7; -update noar ti set v0='Q1' where id=7; -update noar tt set b2='LU5V96HNDFV3II9DG' where id=7; -update noar ti set b2='LU5V96HNDFV3II9DG' where id=7; -update noar tt set v0='9CDZSGIQYZ1' where id=8; -update noar ti set v0='9CDZSGIQYZ1' where id=8; -update noar tt set b0='QZAF36' where id=8; -update noar ti set b0='QZAF36' where id=8; -update noar tt set v0='O1E0E4EGX80N7FREU2GCX7NFRP' where id=8; -update noar ti set v0='O1E0E4EGX80N7FREU2GCX7NFRP' where id=8; -update noar tt set b1='5' where id=8; -update noar ti set b1='5' where id=8; -update noar tt set v0='8N528105NZKSFCEME9Y05AW92YD7XW' where id=8; -update noar ti set v0='8N528105NZKSFCEME9Y05AW92YD7XW' where id=8; -update noar tt set b2='0F2LTWHBA7CMPDMT' where id=8; -update noar ti set b2='0F2LTWHBA7CMPDMT' where id=8; -update noar tt set v0='BVFQFLWV37YE9' where id=9; -update noar ti set v0='BVFQFLWV37YE9' where id=9; -update noar tt set b0='FO7AVDCBHBQD85C2XIB' where id=9; -update noar ti set b0='FO7AVDCBHBQD85C2XIB' where id=9; -update noar tt set v0='5MI' where id=9; -update noar ti set v0='5MI' where id=9; -update noar tt set b1='MBFUVC7' where id=9; -update noar ti set b1='MBFUVC7' where id=9; -update noar tt set v0='7HGQN' where id=9; -update noar ti set v0='7HGQN' where id=9; -update noar tt set b2='6UN2QPBM7F' where id=9; -update noar ti set b2='6UN2QPBM7F' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -v0 varchar(256) null, -b0 longblob null, -b1 longblob null, -b2 mediumblob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='KPZVYO9AB4TBWV79HS42AEPOZ52AP' where id=1; -update noar ti set v0='KPZVYO9AB4TBWV79HS42AEPOZ52AP' where id=1; -update noar tt set b0='UUKC7TM3' where id=1; -update noar ti set b0='UUKC7TM3' where id=1; -update noar tt set v0='GPY8QITUR6O6W97FY' where id=1; -update noar ti set v0='GPY8QITUR6O6W97FY' where id=1; -update noar tt set b1='874KU4JDVZ3Z59' where id=1; -update noar ti set b1='874KU4JDVZ3Z59' where id=1; -update noar tt set v0='T1031PZ5PLO' where id=1; -update noar ti set v0='T1031PZ5PLO' where id=1; -update noar tt set b2='O6FUIATIUWU236FX2NAZEJWEHW' where id=1; -update noar ti set b2='O6FUIATIUWU236FX2NAZEJWEHW' where id=1; -update noar tt set v0='FMR2LZWWMDV59E631JR5H4PXWTMD6C' where id=2; -update noar ti set v0='FMR2LZWWMDV59E631JR5H4PXWTMD6C' where id=2; -update noar tt set b0='20V7TMPFEZA' where id=2; -update noar ti set b0='20V7TMPFEZA' where id=2; -update noar tt set v0='4THRSY' where id=2; -update noar ti set v0='4THRSY' where id=2; -update noar tt set b1='G0KBHF9' where id=2; -update noar ti set b1='G0KBHF9' where id=2; -update noar tt set v0='VLDX3O6195RL635BPB3Z0M6O1YCDZK9' where id=2; -update noar ti set v0='VLDX3O6195RL635BPB3Z0M6O1YCDZK9' where id=2; -update noar tt set b2='ND61J5O61IBF4' where id=2; -update noar ti set b2='ND61J5O61IBF4' where id=2; -update noar tt set v0='QPGFY0NDS' where id=3; -update noar ti set v0='QPGFY0NDS' where id=3; -update noar tt set b0='GH4DBL7P38V' where id=3; -update noar ti set b0='GH4DBL7P38V' where id=3; -update noar tt set v0='OJH31QNF7DZPDJ52A77E37V9JZCI' where id=3; -update noar ti set v0='OJH31QNF7DZPDJ52A77E37V9JZCI' where id=3; -update noar tt set b1='6XJ5O' where id=3; -update noar ti set b1='6XJ5O' where id=3; -update noar tt set v0='FM4KL1VOV' where id=3; -update noar ti set v0='FM4KL1VOV' where id=3; -update noar tt set b2='RTBMSJHJFGTJZTNI297ZV7PV1' where id=3; -update noar ti set b2='RTBMSJHJFGTJZTNI297ZV7PV1' where id=3; -update noar tt set v0='33FHSUNH06SQJFKHLMR8H' where id=4; -update noar ti set v0='33FHSUNH06SQJFKHLMR8H' where id=4; -update noar tt set b0='RLS5N6WH9UMCD1BYWIASVVNFYFB' where id=4; -update noar ti set b0='RLS5N6WH9UMCD1BYWIASVVNFYFB' where id=4; -update noar tt set v0='PNLN4U5M99YQ07' where id=4; -update noar ti set v0='PNLN4U5M99YQ07' where id=4; -update noar tt set b1='E89Z86PGWXWWGBC5187IDODXUZALMO' where id=4; -update noar ti set b1='E89Z86PGWXWWGBC5187IDODXUZALMO' where id=4; -update noar tt set v0='OSYAFEMYQA25U5WQ12LWAJN' where id=4; -update noar ti set v0='OSYAFEMYQA25U5WQ12LWAJN' where id=4; -update noar tt set b2='WNRJLQ692KBXTNZPQCZ5VF5M' where id=4; -update noar ti set b2='WNRJLQ692KBXTNZPQCZ5VF5M' where id=4; -update noar tt set v0='9NBE2Z216D9HRQ92NRHXXNH8H' where id=5; -update noar ti set v0='9NBE2Z216D9HRQ92NRHXXNH8H' where id=5; -update noar tt set b0='3NJADGOFN2SNGSJJJH7YDLLEOEM2TVHA' where id=5; -update noar ti set b0='3NJADGOFN2SNGSJJJH7YDLLEOEM2TVHA' where id=5; -update noar tt set v0='8M2ME99C9QF73PJ9E6' where id=5; -update noar ti set v0='8M2ME99C9QF73PJ9E6' where id=5; -update noar tt set b1='T9XFS1B7PH97XJN1KNLYI976ZKY' where id=5; -update noar ti set b1='T9XFS1B7PH97XJN1KNLYI976ZKY' where id=5; -update noar tt set v0='YC2U7QDBRWM4MGQGAC9IBC450KPJU6IX' where id=5; -update noar ti set v0='YC2U7QDBRWM4MGQGAC9IBC450KPJU6IX' where id=5; -update noar tt set b2='GTNYW0OMB' where id=5; -update noar ti set b2='GTNYW0OMB' where id=5; -update noar tt set v0='Z3NOBOH76EHC8PK2YX7' where id=6; -update noar ti set v0='Z3NOBOH76EHC8PK2YX7' where id=6; -update noar tt set b0='YQTQG1M' where id=6; -update noar ti set b0='YQTQG1M' where id=6; -update noar tt set v0='M9R4' where id=6; -update noar ti set v0='M9R4' where id=6; -update noar tt set b1='NGDCUMKSZYXFDSQIUBIUD2EOW2T' where id=6; -update noar ti set b1='NGDCUMKSZYXFDSQIUBIUD2EOW2T' where id=6; -update noar tt set v0='JOIL8GVR04LJ5LAY8UBUF87' where id=6; -update noar ti set v0='JOIL8GVR04LJ5LAY8UBUF87' where id=6; -update noar tt set b2='68TK0AQPJYGVF0X8K5CP' where id=6; -update noar ti set b2='68TK0AQPJYGVF0X8K5CP' where id=6; -update noar tt set v0='057MIGJB7DW83GD3TD5LY' where id=7; -update noar ti set v0='057MIGJB7DW83GD3TD5LY' where id=7; -update noar tt set b0='3I9DUBDTHRK1AWPP' where id=7; -update noar ti set b0='3I9DUBDTHRK1AWPP' where id=7; -update noar tt set v0='H5UTRAI3DT13VIW' where id=7; -update noar ti set v0='H5UTRAI3DT13VIW' where id=7; -update noar tt set b1='23WQ0U' where id=7; -update noar ti set b1='23WQ0U' where id=7; -update noar tt set v0='B2' where id=7; -update noar ti set v0='B2' where id=7; -update noar tt set b2='5O2JVOBF' where id=7; -update noar ti set b2='5O2JVOBF' where id=7; -update noar tt set v0='KV6QLNCBC72PUY9' where id=8; -update noar ti set v0='KV6QLNCBC72PUY9' where id=8; -update noar tt set b0='6JLF2XNR7OYVM8EHZ20XSZ2G' where id=8; -update noar ti set b0='6JLF2XNR7OYVM8EHZ20XSZ2G' where id=8; -update noar tt set v0='I8DXY2G2FA1D' where id=8; -update noar ti set v0='I8DXY2G2FA1D' where id=8; -update noar tt set b1='IS2N19XIFUVAQV' where id=8; -update noar ti set b1='IS2N19XIFUVAQV' where id=8; -update noar tt set v0='7B8UE7EMWCRMXULNJ6' where id=8; -update noar ti set v0='7B8UE7EMWCRMXULNJ6' where id=8; -update noar tt set b2='D717SK65NCUTOG2SWS1N8YF4ZHSUOSV' where id=8; -update noar ti set b2='D717SK65NCUTOG2SWS1N8YF4ZHSUOSV' where id=8; -update noar tt set v0='TYHWK6S2LJR22IIKQBLOYXYY07Q4FQH' where id=9; -update noar ti set v0='TYHWK6S2LJR22IIKQBLOYXYY07Q4FQH' where id=9; -update noar tt set b0='F6QH9E7C5Z8CCFN44RQ50FJC8R6B6A95' where id=9; -update noar ti set b0='F6QH9E7C5Z8CCFN44RQ50FJC8R6B6A95' where id=9; -update noar tt set v0='HW7FT' where id=9; -update noar ti set v0='HW7FT' where id=9; -update noar tt set b1='B4JZCYMR5SINH9' where id=9; -update noar ti set b1='B4JZCYMR5SINH9' where id=9; -update noar tt set v0='72P5QAGDQS6YI3UKHCQ' where id=9; -update noar ti set v0='72P5QAGDQS6YI3UKHCQ' where id=9; -update noar tt set b2='T7' where id=9; -update noar ti set b2='T7' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -v0 varchar(32) not null, -b0 longblob not null, -b1 longblob not null, -b2 mediumblob not null -) engine=tokudb; -insert into tt values (1,'','','',''); -insert into tt values (2,'','','',''); -insert into tt values (3,'','','',''); -insert into tt values (4,'','','',''); -insert into tt values (5,'','','',''); -insert into tt values (6,'','','',''); -insert into tt values (7,'','','',''); -insert into tt values (8,'','','',''); -insert into tt values (9,'','','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='JJVGPI9KJV8LR0BTDX0ZV7SNCIY' where id=1; -update noar ti set v0='JJVGPI9KJV8LR0BTDX0ZV7SNCIY' where id=1; -update noar tt set b0='JDRTTEDJEKYZ' where id=1; -update noar ti set b0='JDRTTEDJEKYZ' where id=1; -update noar tt set v0='5WURRXDOPD6N6T2ZQIXH4HOROS6E01BL' where id=1; -update noar ti set v0='5WURRXDOPD6N6T2ZQIXH4HOROS6E01BL' where id=1; -update noar tt set b1='KI7TCZ' where id=1; -update noar ti set b1='KI7TCZ' where id=1; -update noar tt set v0='RN6WUSGIWZ' where id=1; -update noar ti set v0='RN6WUSGIWZ' where id=1; -update noar tt set b2='5GCA9ZHZA' where id=1; -update noar ti set b2='5GCA9ZHZA' where id=1; -update noar tt set v0='58CVOYOJY2EBO381YTJ9KV2A3Q' where id=2; -update noar ti set v0='58CVOYOJY2EBO381YTJ9KV2A3Q' where id=2; -update noar tt set b0='LMXM7LYS2CYSDPJB36FY8HBW218T4' where id=2; -update noar ti set b0='LMXM7LYS2CYSDPJB36FY8HBW218T4' where id=2; -update noar tt set v0='3ZM3FY' where id=2; -update noar ti set v0='3ZM3FY' where id=2; -update noar tt set b1='NE8YKPIMT8X' where id=2; -update noar ti set b1='NE8YKPIMT8X' where id=2; -update noar tt set v0='5PGF96I4NUD' where id=2; -update noar ti set v0='5PGF96I4NUD' where id=2; -update noar tt set b2='7ZZFPAXGSE6HUJ6LIPPIOCMWWC' where id=2; -update noar ti set b2='7ZZFPAXGSE6HUJ6LIPPIOCMWWC' where id=2; -update noar tt set v0='G0YYPCREI3VN1Y90O' where id=3; -update noar ti set v0='G0YYPCREI3VN1Y90O' where id=3; -update noar tt set b0='61GSYL8K72E5M0VUASOW3XE5VA' where id=3; -update noar ti set b0='61GSYL8K72E5M0VUASOW3XE5VA' where id=3; -update noar tt set v0='B' where id=3; -update noar ti set v0='B' where id=3; -update noar tt set b1='37' where id=3; -update noar ti set b1='37' where id=3; -update noar tt set v0='HIY4NHE4J4P' where id=3; -update noar ti set v0='HIY4NHE4J4P' where id=3; -update noar tt set b2='36O2V3O9LPUE3G0OUPW59QBJGTPHF' where id=3; -update noar ti set b2='36O2V3O9LPUE3G0OUPW59QBJGTPHF' where id=3; -update noar tt set v0='ZIW2NTL' where id=4; -update noar ti set v0='ZIW2NTL' where id=4; -update noar tt set b0='63SIVCFFPDHY' where id=4; -update noar ti set b0='63SIVCFFPDHY' where id=4; -update noar tt set v0='JSF9OSHJTCEXRNUBOXR2Q3XNLU' where id=4; -update noar ti set v0='JSF9OSHJTCEXRNUBOXR2Q3XNLU' where id=4; -update noar tt set b1='1LPCZ7O' where id=4; -update noar ti set b1='1LPCZ7O' where id=4; -update noar tt set v0='38FQ3EM429F1JYNUBFIK753B2' where id=4; -update noar ti set v0='38FQ3EM429F1JYNUBFIK753B2' where id=4; -update noar tt set b2='LJXF860PG2VTG9AN5LQEZYPGFN' where id=4; -update noar ti set b2='LJXF860PG2VTG9AN5LQEZYPGFN' where id=4; -update noar tt set v0='RODZ3450' where id=5; -update noar ti set v0='RODZ3450' where id=5; -update noar tt set b0='DZ87GBUNF00SF813AFMXUF40' where id=5; -update noar ti set b0='DZ87GBUNF00SF813AFMXUF40' where id=5; -update noar tt set v0='XY' where id=5; -update noar ti set v0='XY' where id=5; -update noar tt set b1='4A8D98LCKOIQZXHMP20LFU4RDAW5' where id=5; -update noar ti set b1='4A8D98LCKOIQZXHMP20LFU4RDAW5' where id=5; -update noar tt set v0='8E5USDZ4TM0T2YG6KCUV' where id=5; -update noar ti set v0='8E5USDZ4TM0T2YG6KCUV' where id=5; -update noar tt set b2='DES9M7F2DHTK55TUWQNT' where id=5; -update noar ti set b2='DES9M7F2DHTK55TUWQNT' where id=5; -update noar tt set v0='FGV' where id=6; -update noar ti set v0='FGV' where id=6; -update noar tt set b0='OW4PGJ11' where id=6; -update noar ti set b0='OW4PGJ11' where id=6; -update noar tt set v0='CMDTIGRQ1' where id=6; -update noar ti set v0='CMDTIGRQ1' where id=6; -update noar tt set b1='JN0WE9' where id=6; -update noar ti set b1='JN0WE9' where id=6; -update noar tt set v0='EN' where id=6; -update noar ti set v0='EN' where id=6; -update noar tt set b2='1X4BGE' where id=6; -update noar ti set b2='1X4BGE' where id=6; -update noar tt set v0='C7RWJQS' where id=7; -update noar ti set v0='C7RWJQS' where id=7; -update noar tt set b0='2IUMU5TN7SI7JA9' where id=7; -update noar ti set b0='2IUMU5TN7SI7JA9' where id=7; -update noar tt set v0='UDDH2N38ZAWJ' where id=7; -update noar ti set v0='UDDH2N38ZAWJ' where id=7; -update noar tt set b1='ESPYVR27U' where id=7; -update noar ti set b1='ESPYVR27U' where id=7; -update noar tt set v0='V8TN202EO8DNY4' where id=7; -update noar ti set v0='V8TN202EO8DNY4' where id=7; -update noar tt set b2='BJ' where id=7; -update noar ti set b2='BJ' where id=7; -update noar tt set v0='AEO4L7' where id=8; -update noar ti set v0='AEO4L7' where id=8; -update noar tt set b0='E32MVCZSP4Z9ECXICSC8U' where id=8; -update noar ti set b0='E32MVCZSP4Z9ECXICSC8U' where id=8; -update noar tt set v0='K13K7VHGK4' where id=8; -update noar ti set v0='K13K7VHGK4' where id=8; -update noar tt set b1='3KYHZ47ZL744FUUD9K6O105' where id=8; -update noar ti set b1='3KYHZ47ZL744FUUD9K6O105' where id=8; -update noar tt set v0='A06' where id=8; -update noar ti set v0='A06' where id=8; -update noar tt set b2='4095SLA5PF' where id=8; -update noar ti set b2='4095SLA5PF' where id=8; -update noar tt set v0='EV5V9U' where id=9; -update noar ti set v0='EV5V9U' where id=9; -update noar tt set b0='9N5MAD6AB0VF' where id=9; -update noar ti set b0='9N5MAD6AB0VF' where id=9; -update noar tt set v0='Q790BQ5UMM0CJ3O9KT' where id=9; -update noar ti set v0='Q790BQ5UMM0CJ3O9KT' where id=9; -update noar tt set b1='H23FNIKQK3OLRK0A2GWPLRY1QG5' where id=9; -update noar ti set b1='H23FNIKQK3OLRK0A2GWPLRY1QG5' where id=9; -update noar tt set v0='XXS2RE7B7E1QAO' where id=9; -update noar ti set v0='XXS2RE7B7E1QAO' where id=9; -update noar tt set b2='OMF9SH' where id=9; -update noar ti set b2='OMF9SH' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -v0 varchar(256) not null, -b0 longblob not null, -b1 longblob not null, -b2 mediumblob not null -) engine=tokudb; -insert into tt values (1,'','','',''); -insert into tt values (2,'','','',''); -insert into tt values (3,'','','',''); -insert into tt values (4,'','','',''); -insert into tt values (5,'','','',''); -insert into tt values (6,'','','',''); -insert into tt values (7,'','','',''); -insert into tt values (8,'','','',''); -insert into tt values (9,'','','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='EASP4KR9E69XOA3' where id=1; -update noar ti set v0='EASP4KR9E69XOA3' where id=1; -update noar tt set b0='HQ0WT' where id=1; -update noar ti set b0='HQ0WT' where id=1; -update noar tt set v0='X76F6NXHRJL60R8Q' where id=1; -update noar ti set v0='X76F6NXHRJL60R8Q' where id=1; -update noar tt set b1='OFRR37QE397AG2SCCB' where id=1; -update noar ti set b1='OFRR37QE397AG2SCCB' where id=1; -update noar tt set v0='3SHED8VNMD7N5S5VKG7H6249Q6MU' where id=1; -update noar ti set v0='3SHED8VNMD7N5S5VKG7H6249Q6MU' where id=1; -update noar tt set b2='A2N3V7JC' where id=1; -update noar ti set b2='A2N3V7JC' where id=1; -update noar tt set v0='53' where id=2; -update noar ti set v0='53' where id=2; -update noar tt set b0='RFJV9ZOBHM0K1ST9RHD' where id=2; -update noar ti set b0='RFJV9ZOBHM0K1ST9RHD' where id=2; -update noar tt set v0='ITFVEBR3' where id=2; -update noar ti set v0='ITFVEBR3' where id=2; -update noar tt set b1='EYUFH5QVJDKQ1RGVWZ' where id=2; -update noar ti set b1='EYUFH5QVJDKQ1RGVWZ' where id=2; -update noar tt set v0='C2DO1VFDH0KIQARYW7OB' where id=2; -update noar ti set v0='C2DO1VFDH0KIQARYW7OB' where id=2; -update noar tt set b2='33ZCZUJ1KR1OR56J4STBVVS341' where id=2; -update noar ti set b2='33ZCZUJ1KR1OR56J4STBVVS341' where id=2; -update noar tt set v0='V3YGITPMKWIJTRGSDHM8' where id=3; -update noar ti set v0='V3YGITPMKWIJTRGSDHM8' where id=3; -update noar tt set b0='XZAGC' where id=3; -update noar ti set b0='XZAGC' where id=3; -update noar tt set v0='KJBBA' where id=3; -update noar ti set v0='KJBBA' where id=3; -update noar tt set b1='U8PGDXINHRV2BQYHSY0' where id=3; -update noar ti set b1='U8PGDXINHRV2BQYHSY0' where id=3; -update noar tt set v0='RWBEEYXP7YE6DGBIOUP9' where id=3; -update noar ti set v0='RWBEEYXP7YE6DGBIOUP9' where id=3; -update noar tt set b2='LRU5AOSMZH1VS3ZVASGFBNAB56272Y' where id=3; -update noar ti set b2='LRU5AOSMZH1VS3ZVASGFBNAB56272Y' where id=3; -update noar tt set v0='L7YDOAC8UA9XH9F4INR' where id=4; -update noar ti set v0='L7YDOAC8UA9XH9F4INR' where id=4; -update noar tt set b0='UN6OCULNFQU6ZW1JOH9J79' where id=4; -update noar ti set b0='UN6OCULNFQU6ZW1JOH9J79' where id=4; -update noar tt set v0='D2CST1UNS4SEPXW' where id=4; -update noar ti set v0='D2CST1UNS4SEPXW' where id=4; -update noar tt set b1='6R9PGBHQUQTL2F4J' where id=4; -update noar ti set b1='6R9PGBHQUQTL2F4J' where id=4; -update noar tt set v0='DC6BL2WA' where id=4; -update noar ti set v0='DC6BL2WA' where id=4; -update noar tt set b2='JXXP0D85VFPN433W4U80YRXT7DJ' where id=4; -update noar ti set b2='JXXP0D85VFPN433W4U80YRXT7DJ' where id=4; -update noar tt set v0='1' where id=5; -update noar ti set v0='1' where id=5; -update noar tt set b0='CG26XP421DTNU' where id=5; -update noar ti set b0='CG26XP421DTNU' where id=5; -update noar tt set v0='CSWICUXWZWB7HWJHH08L4GR71I4' where id=5; -update noar ti set v0='CSWICUXWZWB7HWJHH08L4GR71I4' where id=5; -update noar tt set b1='R4IS8O3JIEI3FRQUVH90L4U7OMT1A' where id=5; -update noar ti set b1='R4IS8O3JIEI3FRQUVH90L4U7OMT1A' where id=5; -update noar tt set v0='783USG44U1VU324J05' where id=5; -update noar ti set v0='783USG44U1VU324J05' where id=5; -update noar tt set b2='U' where id=5; -update noar ti set b2='U' where id=5; -update noar tt set v0='TATCLUSFNJ0WJ6FJLD8W0DXBMXRSY' where id=6; -update noar ti set v0='TATCLUSFNJ0WJ6FJLD8W0DXBMXRSY' where id=6; -update noar tt set b0='059YG6LM' where id=6; -update noar ti set b0='059YG6LM' where id=6; -update noar tt set v0='0FXRR0AD6YL7CL2' where id=6; -update noar ti set v0='0FXRR0AD6YL7CL2' where id=6; -update noar tt set b1='1N3SK0AXTS8M' where id=6; -update noar ti set b1='1N3SK0AXTS8M' where id=6; -update noar tt set v0='Q6IMW9S5GE3H7XHM8G0O' where id=6; -update noar ti set v0='Q6IMW9S5GE3H7XHM8G0O' where id=6; -update noar tt set b2='LFEKMN8SMAXS2H1D1WXUUTFT6MVZQLVX' where id=6; -update noar ti set b2='LFEKMN8SMAXS2H1D1WXUUTFT6MVZQLVX' where id=6; -update noar tt set v0='Y6VD622ZXQROOBF2' where id=7; -update noar ti set v0='Y6VD622ZXQROOBF2' where id=7; -update noar tt set b0='Y7SZVU36I0JD7R1' where id=7; -update noar ti set b0='Y7SZVU36I0JD7R1' where id=7; -update noar tt set v0='OQ3QMBPNLG8UWAE2M4' where id=7; -update noar ti set v0='OQ3QMBPNLG8UWAE2M4' where id=7; -update noar tt set b1='RHFNUN7M5B0J7X3XN6DFXO' where id=7; -update noar ti set b1='RHFNUN7M5B0J7X3XN6DFXO' where id=7; -update noar tt set v0='XP9NI93XL1QD' where id=7; -update noar ti set v0='XP9NI93XL1QD' where id=7; -update noar tt set b2='SCXPXKOT5' where id=7; -update noar ti set b2='SCXPXKOT5' where id=7; -update noar tt set v0='S8GSRA9U1ASKUZSHWYZZAQNTI' where id=8; -update noar ti set v0='S8GSRA9U1ASKUZSHWYZZAQNTI' where id=8; -update noar tt set b0='FONEUY5F6BUDUDJUM1905JRCTFYD8TVX' where id=8; -update noar ti set b0='FONEUY5F6BUDUDJUM1905JRCTFYD8TVX' where id=8; -update noar tt set v0='M6ILSDL7MOGD' where id=8; -update noar ti set v0='M6ILSDL7MOGD' where id=8; -update noar tt set b1='OGFM45Q87JO6I10SLIN3CQT8OWR' where id=8; -update noar ti set b1='OGFM45Q87JO6I10SLIN3CQT8OWR' where id=8; -update noar tt set v0='EKKNG44WKU9XM6KJ6C0J' where id=8; -update noar ti set v0='EKKNG44WKU9XM6KJ6C0J' where id=8; -update noar tt set b2='VLUJA3LMPY90WE8ISR1QH3IZG' where id=8; -update noar ti set b2='VLUJA3LMPY90WE8ISR1QH3IZG' where id=8; -update noar tt set v0='M8MC2B062QJE2YMBK1UQ1GD' where id=9; -update noar ti set v0='M8MC2B062QJE2YMBK1UQ1GD' where id=9; -update noar tt set b0='1VEA173H2SQPTMWD' where id=9; -update noar ti set b0='1VEA173H2SQPTMWD' where id=9; -update noar tt set v0='0CRKH4OOE774HGW' where id=9; -update noar ti set v0='0CRKH4OOE774HGW' where id=9; -update noar tt set b1='AZP9R0MEPRIG' where id=9; -update noar ti set b1='AZP9R0MEPRIG' where id=9; -update noar tt set v0='1E' where id=9; -update noar ti set v0='1E' where id=9; -update noar tt set b2='PZFZR3DXM7LKPINHAZ' where id=9; -update noar ti set b2='PZFZR3DXM7LKPINHAZ' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -v0 varchar(32) null, -b0 longblob null, -b1 longblob null, -b2 longblob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='C' where id=1; -update noar ti set v0='C' where id=1; -update noar tt set b0='WABX9VUZ4C1R2JTHGL4OQ8R7IBC' where id=1; -update noar ti set b0='WABX9VUZ4C1R2JTHGL4OQ8R7IBC' where id=1; -update noar tt set v0='YZO' where id=1; -update noar ti set v0='YZO' where id=1; -update noar tt set b1='Y22P5303H4U' where id=1; -update noar ti set b1='Y22P5303H4U' where id=1; -update noar tt set v0='E5RIB4Q5412VGPE3K' where id=1; -update noar ti set v0='E5RIB4Q5412VGPE3K' where id=1; -update noar tt set b2='J5N5RPMG' where id=1; -update noar ti set b2='J5N5RPMG' where id=1; -update noar tt set v0='YBTFTC5VKD8OIN4BKUFFA1' where id=2; -update noar ti set v0='YBTFTC5VKD8OIN4BKUFFA1' where id=2; -update noar tt set b0='11SUB6PE2AIXKX9268WKKU76' where id=2; -update noar ti set b0='11SUB6PE2AIXKX9268WKKU76' where id=2; -update noar tt set v0='BBEYMDR3UME59L9N1Q3UBITJY8RBEE4G' where id=2; -update noar ti set v0='BBEYMDR3UME59L9N1Q3UBITJY8RBEE4G' where id=2; -update noar tt set b1='AE46G94ISVEWG00K6SSE' where id=2; -update noar ti set b1='AE46G94ISVEWG00K6SSE' where id=2; -update noar tt set v0='8HW8DRBTUNP36Y3923632JCZL' where id=2; -update noar ti set v0='8HW8DRBTUNP36Y3923632JCZL' where id=2; -update noar tt set b2='GWBOWNVV3LTAKY' where id=2; -update noar ti set b2='GWBOWNVV3LTAKY' where id=2; -update noar tt set v0='PONCREBTLQ3M8DBT4WVYD4KDTRJ5P5T' where id=3; -update noar ti set v0='PONCREBTLQ3M8DBT4WVYD4KDTRJ5P5T' where id=3; -update noar tt set b0='FC2MME72H3HTL48ZI52CBP' where id=3; -update noar ti set b0='FC2MME72H3HTL48ZI52CBP' where id=3; -update noar tt set v0='5IBK' where id=3; -update noar ti set v0='5IBK' where id=3; -update noar tt set b1='OKITB1P28Y79AWZF1UPD' where id=3; -update noar ti set b1='OKITB1P28Y79AWZF1UPD' where id=3; -update noar tt set v0='XA6HK6VWV1PKVCS5J2EKIWF9E6' where id=3; -update noar ti set v0='XA6HK6VWV1PKVCS5J2EKIWF9E6' where id=3; -update noar tt set b2='NGY5BH11JZWDGRQXZADQ20QPF0425GKX' where id=3; -update noar ti set b2='NGY5BH11JZWDGRQXZADQ20QPF0425GKX' where id=3; -update noar tt set v0='QJVE9D9H0HH04FQW8ZNMY1KK' where id=4; -update noar ti set v0='QJVE9D9H0HH04FQW8ZNMY1KK' where id=4; -update noar tt set b0='QGUW' where id=4; -update noar ti set b0='QGUW' where id=4; -update noar tt set v0='QA6OJ33FCLZK94B' where id=4; -update noar ti set v0='QA6OJ33FCLZK94B' where id=4; -update noar tt set b1='RLEX268D1Q1VYP6EN4JRMVSEDLAML' where id=4; -update noar ti set b1='RLEX268D1Q1VYP6EN4JRMVSEDLAML' where id=4; -update noar tt set v0='AJS7WSEE1YICVR0KYP0Q0450V35X' where id=4; -update noar ti set v0='AJS7WSEE1YICVR0KYP0Q0450V35X' where id=4; -update noar tt set b2='BQ5SYMGB5' where id=4; -update noar ti set b2='BQ5SYMGB5' where id=4; -update noar tt set v0='RIWJNW8ZZRG5ARGX9RYG9LF' where id=5; -update noar ti set v0='RIWJNW8ZZRG5ARGX9RYG9LF' where id=5; -update noar tt set b0='3BD2XJAPE6173BIR' where id=5; -update noar ti set b0='3BD2XJAPE6173BIR' where id=5; -update noar tt set v0='HPGT362VXNS635U6OD0FN6G1YP0' where id=5; -update noar ti set v0='HPGT362VXNS635U6OD0FN6G1YP0' where id=5; -update noar tt set b1='2QYBF1BGC4534BDJNOEJ17J' where id=5; -update noar ti set b1='2QYBF1BGC4534BDJNOEJ17J' where id=5; -update noar tt set v0='2YD9V0HDQW9OHHOBXPT6OYYHZ' where id=5; -update noar ti set v0='2YD9V0HDQW9OHHOBXPT6OYYHZ' where id=5; -update noar tt set b2='QX9RKTHZ65PYI6NL4YODE8' where id=5; -update noar ti set b2='QX9RKTHZ65PYI6NL4YODE8' where id=5; -update noar tt set v0='5' where id=6; -update noar ti set v0='5' where id=6; -update noar tt set b0='6HU9TVMCAKVUDV8Q' where id=6; -update noar ti set b0='6HU9TVMCAKVUDV8Q' where id=6; -update noar tt set v0='A0UUG8V1W4814K08MGN' where id=6; -update noar ti set v0='A0UUG8V1W4814K08MGN' where id=6; -update noar tt set b1='I2' where id=6; -update noar ti set b1='I2' where id=6; -update noar tt set v0='2BZDAWFGFKEFQLFT9LWLQK7' where id=6; -update noar ti set v0='2BZDAWFGFKEFQLFT9LWLQK7' where id=6; -update noar tt set b2='G7LEFLNKHX4EAIEM' where id=6; -update noar ti set b2='G7LEFLNKHX4EAIEM' where id=6; -update noar tt set v0='9N4CTBFJKN7I9Z6S03JU5' where id=7; -update noar ti set v0='9N4CTBFJKN7I9Z6S03JU5' where id=7; -update noar tt set b0='GBGKAWP992' where id=7; -update noar ti set b0='GBGKAWP992' where id=7; -update noar tt set v0='SWLDBUJTUFJQLU1OVYG32I6K' where id=7; -update noar ti set v0='SWLDBUJTUFJQLU1OVYG32I6K' where id=7; -update noar tt set b1='AUTYZAFELJX' where id=7; -update noar ti set b1='AUTYZAFELJX' where id=7; -update noar tt set v0='NQM9SIC6CIYFQUIE' where id=7; -update noar ti set v0='NQM9SIC6CIYFQUIE' where id=7; -update noar tt set b2='CFJUZFR5WNR0VTVXVHXSK8VD4L' where id=7; -update noar ti set b2='CFJUZFR5WNR0VTVXVHXSK8VD4L' where id=7; -update noar tt set v0='UWQ454ISEYGIEB2K3GHS' where id=8; -update noar ti set v0='UWQ454ISEYGIEB2K3GHS' where id=8; -update noar tt set b0='8L12CJHUYCBASKOQ' where id=8; -update noar ti set b0='8L12CJHUYCBASKOQ' where id=8; -update noar tt set v0='XDIZWDQ4J6M0L5E8V86TZ27X4XQZ' where id=8; -update noar ti set v0='XDIZWDQ4J6M0L5E8V86TZ27X4XQZ' where id=8; -update noar tt set b1='29Q4PXC1K' where id=8; -update noar ti set b1='29Q4PXC1K' where id=8; -update noar tt set v0='R7B5B3S32W' where id=8; -update noar ti set v0='R7B5B3S32W' where id=8; -update noar tt set b2='0RXY3JWX7S7XXQNM' where id=8; -update noar ti set b2='0RXY3JWX7S7XXQNM' where id=8; -update noar tt set v0='MOI5XW3B0QYEEJYLQQIWU34GTL54KZ' where id=9; -update noar ti set v0='MOI5XW3B0QYEEJYLQQIWU34GTL54KZ' where id=9; -update noar tt set b0='M9N7P7N3IBCJUPDGGH56D3VGZ' where id=9; -update noar ti set b0='M9N7P7N3IBCJUPDGGH56D3VGZ' where id=9; -update noar tt set v0='WIYPO515Z78RTW7B8H21M0IGCD' where id=9; -update noar ti set v0='WIYPO515Z78RTW7B8H21M0IGCD' where id=9; -update noar tt set b1='V3AL' where id=9; -update noar ti set b1='V3AL' where id=9; -update noar tt set v0='30' where id=9; -update noar ti set v0='30' where id=9; -update noar tt set b2='BWSTM87GEI8A07V88ZEY4' where id=9; -update noar ti set b2='BWSTM87GEI8A07V88ZEY4' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -v0 varchar(256) null, -b0 longblob null, -b1 longblob null, -b2 longblob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='59VIS6' where id=1; -update noar ti set v0='59VIS6' where id=1; -update noar tt set b0='Y16FUVRDYANKU0F4DQ' where id=1; -update noar ti set b0='Y16FUVRDYANKU0F4DQ' where id=1; -update noar tt set v0='MN3NQ9WZC6LT6LJ74' where id=1; -update noar ti set v0='MN3NQ9WZC6LT6LJ74' where id=1; -update noar tt set b1='Z2QGMCQQT7LT15FBR1FAF' where id=1; -update noar ti set b1='Z2QGMCQQT7LT15FBR1FAF' where id=1; -update noar tt set v0='640H' where id=1; -update noar ti set v0='640H' where id=1; -update noar tt set b2='ENTGKH3UUCY6GRYQYI48HJVG9DUPWEA' where id=1; -update noar ti set b2='ENTGKH3UUCY6GRYQYI48HJVG9DUPWEA' where id=1; -update noar tt set v0='MRG388CO9ZJX' where id=2; -update noar ti set v0='MRG388CO9ZJX' where id=2; -update noar tt set b0='08O1C17PJSO0NSVYY583ABSPWFHGX' where id=2; -update noar ti set b0='08O1C17PJSO0NSVYY583ABSPWFHGX' where id=2; -update noar tt set v0='1M8HIXRKVT0DGA05TRVW20YA' where id=2; -update noar ti set v0='1M8HIXRKVT0DGA05TRVW20YA' where id=2; -update noar tt set b1='NZL5GJRNCNTCF2EB' where id=2; -update noar ti set b1='NZL5GJRNCNTCF2EB' where id=2; -update noar tt set v0='MHQLGNY' where id=2; -update noar ti set v0='MHQLGNY' where id=2; -update noar tt set b2='SSGH3O8YFLQU' where id=2; -update noar ti set b2='SSGH3O8YFLQU' where id=2; -update noar tt set v0='TIEKUG3' where id=3; -update noar ti set v0='TIEKUG3' where id=3; -update noar tt set b0='8' where id=3; -update noar ti set b0='8' where id=3; -update noar tt set v0='PMSXC24' where id=3; -update noar ti set v0='PMSXC24' where id=3; -update noar tt set b1='ES8UVFPUJEY71VIYU42IRT1A' where id=3; -update noar ti set b1='ES8UVFPUJEY71VIYU42IRT1A' where id=3; -update noar tt set v0='9' where id=3; -update noar ti set v0='9' where id=3; -update noar tt set b2='B5WIE4JC79KEI5DBYPCJVGKZQIUORI4Q' where id=3; -update noar ti set b2='B5WIE4JC79KEI5DBYPCJVGKZQIUORI4Q' where id=3; -update noar tt set v0='GJ0QKFH8G2FJJKVPEQK' where id=4; -update noar ti set v0='GJ0QKFH8G2FJJKVPEQK' where id=4; -update noar tt set b0='5D5OKOZ37565D7N2UC09M0V3HN' where id=4; -update noar ti set b0='5D5OKOZ37565D7N2UC09M0V3HN' where id=4; -update noar tt set v0='4OO3' where id=4; -update noar ti set v0='4OO3' where id=4; -update noar tt set b1='EKV7VUEF8Q7YRQGA560' where id=4; -update noar ti set b1='EKV7VUEF8Q7YRQGA560' where id=4; -update noar tt set v0='I1J7T9AAHPRK1K27M' where id=4; -update noar ti set v0='I1J7T9AAHPRK1K27M' where id=4; -update noar tt set b2='ZSYEHYPIC9G17U1JWYV27M2JCZ1R3' where id=4; -update noar ti set b2='ZSYEHYPIC9G17U1JWYV27M2JCZ1R3' where id=4; -update noar tt set v0='ZO1ZAMQKC2CHHCPGHUDR3' where id=5; -update noar ti set v0='ZO1ZAMQKC2CHHCPGHUDR3' where id=5; -update noar tt set b0='99MYQIQFLPOO2' where id=5; -update noar ti set b0='99MYQIQFLPOO2' where id=5; -update noar tt set v0='L3H89KWKVRAXFB7N723RYGFSFMXIP869' where id=5; -update noar ti set v0='L3H89KWKVRAXFB7N723RYGFSFMXIP869' where id=5; -update noar tt set b1='BYJRZ3K4RMWSWKDNUKUU' where id=5; -update noar ti set b1='BYJRZ3K4RMWSWKDNUKUU' where id=5; -update noar tt set v0='117MQSB1W' where id=5; -update noar ti set v0='117MQSB1W' where id=5; -update noar tt set b2='7' where id=5; -update noar ti set b2='7' where id=5; -update noar tt set v0='2B8K4H11FKPU54U6ZU4TH2QE' where id=6; -update noar ti set v0='2B8K4H11FKPU54U6ZU4TH2QE' where id=6; -update noar tt set b0='KDAXYY2ZKGQ' where id=6; -update noar ti set b0='KDAXYY2ZKGQ' where id=6; -update noar tt set v0='4IRV4' where id=6; -update noar ti set v0='4IRV4' where id=6; -update noar tt set b1='YIW8GEGX7W6XF2HCB2RXEF5PSVSVE' where id=6; -update noar ti set b1='YIW8GEGX7W6XF2HCB2RXEF5PSVSVE' where id=6; -update noar tt set v0='IL1B4LWKHPG9' where id=6; -update noar ti set v0='IL1B4LWKHPG9' where id=6; -update noar tt set b2='RZKG3Z0MGB20YRIK' where id=6; -update noar ti set b2='RZKG3Z0MGB20YRIK' where id=6; -update noar tt set v0='1QXMQT9' where id=7; -update noar ti set v0='1QXMQT9' where id=7; -update noar tt set b0='OHQMEALR2KYKLK5H1SE2WIQY7P' where id=7; -update noar ti set b0='OHQMEALR2KYKLK5H1SE2WIQY7P' where id=7; -update noar tt set v0='21YP6W' where id=7; -update noar ti set v0='21YP6W' where id=7; -update noar tt set b1='UFKGNPGCDLP8SUMG22FQD1RY6KJZ' where id=7; -update noar ti set b1='UFKGNPGCDLP8SUMG22FQD1RY6KJZ' where id=7; -update noar tt set v0='VY8ODP1Y4EWU28O42318FU98I1X3MAQ' where id=7; -update noar ti set v0='VY8ODP1Y4EWU28O42318FU98I1X3MAQ' where id=7; -update noar tt set b2='XC' where id=7; -update noar ti set b2='XC' where id=7; -update noar tt set v0='ZEJDHDB4545FX32R27E1RDTBF5' where id=8; -update noar ti set v0='ZEJDHDB4545FX32R27E1RDTBF5' where id=8; -update noar tt set b0='YKL29KZ2AWI9' where id=8; -update noar ti set b0='YKL29KZ2AWI9' where id=8; -update noar tt set v0='OR' where id=8; -update noar ti set v0='OR' where id=8; -update noar tt set b1='KBPNRBL0B1WNRVBEXVP16EU3U2NN3' where id=8; -update noar ti set b1='KBPNRBL0B1WNRVBEXVP16EU3U2NN3' where id=8; -update noar tt set v0='UEI6QQPEKLOVS4Q7' where id=8; -update noar ti set v0='UEI6QQPEKLOVS4Q7' where id=8; -update noar tt set b2='TFWGLAOD' where id=8; -update noar ti set b2='TFWGLAOD' where id=8; -update noar tt set v0='61E4GG41WNY575' where id=9; -update noar ti set v0='61E4GG41WNY575' where id=9; -update noar tt set b0='SCQEWNAKJR51B285WBC' where id=9; -update noar ti set b0='SCQEWNAKJR51B285WBC' where id=9; -update noar tt set v0='PB6QMSD3U9I2M' where id=9; -update noar ti set v0='PB6QMSD3U9I2M' where id=9; -update noar tt set b1='IYBZ' where id=9; -update noar ti set b1='IYBZ' where id=9; -update noar tt set v0='91XMZFO9C' where id=9; -update noar ti set v0='91XMZFO9C' where id=9; -update noar tt set b2='CJKUY1JFUFG5MDZ16KLOD' where id=9; -update noar ti set b2='CJKUY1JFUFG5MDZ16KLOD' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -v0 varchar(32) not null, -b0 longblob not null, -b1 longblob not null, -b2 longblob not null -) engine=tokudb; -insert into tt values (1,'','','',''); -insert into tt values (2,'','','',''); -insert into tt values (3,'','','',''); -insert into tt values (4,'','','',''); -insert into tt values (5,'','','',''); -insert into tt values (6,'','','',''); -insert into tt values (7,'','','',''); -insert into tt values (8,'','','',''); -insert into tt values (9,'','','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='C8MZ88QX53XHDM0IAF6H8OBA6YBY' where id=1; -update noar ti set v0='C8MZ88QX53XHDM0IAF6H8OBA6YBY' where id=1; -update noar tt set b0='N0O88B2D6' where id=1; -update noar ti set b0='N0O88B2D6' where id=1; -update noar tt set v0='N1AOZKRMOSYXN9L79IZCC1SV' where id=1; -update noar ti set v0='N1AOZKRMOSYXN9L79IZCC1SV' where id=1; -update noar tt set b1='37XGQ95OSFFT5X42Q9W' where id=1; -update noar ti set b1='37XGQ95OSFFT5X42Q9W' where id=1; -update noar tt set v0='PR3N6SAZ' where id=1; -update noar ti set v0='PR3N6SAZ' where id=1; -update noar tt set b2='8I4A' where id=1; -update noar ti set b2='8I4A' where id=1; -update noar tt set v0='UBOZN' where id=2; -update noar ti set v0='UBOZN' where id=2; -update noar tt set b0='R1MVCFGWM1O9A0' where id=2; -update noar ti set b0='R1MVCFGWM1O9A0' where id=2; -update noar tt set v0='9ZTLN8UL83IFEII4N8TYNL9UO8E' where id=2; -update noar ti set v0='9ZTLN8UL83IFEII4N8TYNL9UO8E' where id=2; -update noar tt set b1='VHZMMIG5TB8S5YP5LBHR2MQ2WVFG' where id=2; -update noar ti set b1='VHZMMIG5TB8S5YP5LBHR2MQ2WVFG' where id=2; -update noar tt set v0='K9IOAEJHNQA9' where id=2; -update noar ti set v0='K9IOAEJHNQA9' where id=2; -update noar tt set b2='FVIM7GEJ27X' where id=2; -update noar ti set b2='FVIM7GEJ27X' where id=2; -update noar tt set v0='OU0QW7UVXY6XK06CE7Y91DBEH' where id=3; -update noar ti set v0='OU0QW7UVXY6XK06CE7Y91DBEH' where id=3; -update noar tt set b0='1OP916G1RF7QHC497' where id=3; -update noar ti set b0='1OP916G1RF7QHC497' where id=3; -update noar tt set v0='RDEPUJNC4J4141I5E8ZDC8JOCOI' where id=3; -update noar ti set v0='RDEPUJNC4J4141I5E8ZDC8JOCOI' where id=3; -update noar tt set b1='VHJ0H59W77U0PCZG88OGSPQ4QCPP1' where id=3; -update noar ti set b1='VHJ0H59W77U0PCZG88OGSPQ4QCPP1' where id=3; -update noar tt set v0='P4NY' where id=3; -update noar ti set v0='P4NY' where id=3; -update noar tt set b2='PEQ2A' where id=3; -update noar ti set b2='PEQ2A' where id=3; -update noar tt set v0='GP9PDZX09EFJ12NSPR70ISR98' where id=4; -update noar ti set v0='GP9PDZX09EFJ12NSPR70ISR98' where id=4; -update noar tt set b0='TFG25A1' where id=4; -update noar ti set b0='TFG25A1' where id=4; -update noar tt set v0='8H' where id=4; -update noar ti set v0='8H' where id=4; -update noar tt set b1='73U769BQS6Q0RHR9L1EN6G8O7BGHPJ2' where id=4; -update noar ti set b1='73U769BQS6Q0RHR9L1EN6G8O7BGHPJ2' where id=4; -update noar tt set v0='4DEAOUPR5RSLHBRF6MI3CU' where id=4; -update noar ti set v0='4DEAOUPR5RSLHBRF6MI3CU' where id=4; -update noar tt set b2='B22KOZSJD1DP0UI78HW9Y0GD0VMQH4' where id=4; -update noar ti set b2='B22KOZSJD1DP0UI78HW9Y0GD0VMQH4' where id=4; -update noar tt set v0='SRNVJNY0Z' where id=5; -update noar ti set v0='SRNVJNY0Z' where id=5; -update noar tt set b0='P' where id=5; -update noar ti set b0='P' where id=5; -update noar tt set v0='UBQZIO6U0' where id=5; -update noar ti set v0='UBQZIO6U0' where id=5; -update noar tt set b1='U54L8PRPOMM7VC31E' where id=5; -update noar ti set b1='U54L8PRPOMM7VC31E' where id=5; -update noar tt set v0='5WRETF45UVC1709ED0GV2DXHW' where id=5; -update noar ti set v0='5WRETF45UVC1709ED0GV2DXHW' where id=5; -update noar tt set b2='2UWBK5EU73X7IJRR57T2WZMCF59BB' where id=5; -update noar ti set b2='2UWBK5EU73X7IJRR57T2WZMCF59BB' where id=5; -update noar tt set v0='55AKSTWK3CKK7BV' where id=6; -update noar ti set v0='55AKSTWK3CKK7BV' where id=6; -update noar tt set b0='KY7Z' where id=6; -update noar ti set b0='KY7Z' where id=6; -update noar tt set v0='EBRTUD5C6Z5YPH8HUXJ' where id=6; -update noar ti set v0='EBRTUD5C6Z5YPH8HUXJ' where id=6; -update noar tt set b1='X3' where id=6; -update noar ti set b1='X3' where id=6; -update noar tt set v0='F57Y0R1Y8ORVP9C88YJR3ABTLWDVK6' where id=6; -update noar ti set v0='F57Y0R1Y8ORVP9C88YJR3ABTLWDVK6' where id=6; -update noar tt set b2='0OXI2SG154UCHMGQM' where id=6; -update noar ti set b2='0OXI2SG154UCHMGQM' where id=6; -update noar tt set v0='LM12BDBTUXZ' where id=7; -update noar ti set v0='LM12BDBTUXZ' where id=7; -update noar tt set b0='32AYRCYIRJRLE697I' where id=7; -update noar ti set b0='32AYRCYIRJRLE697I' where id=7; -update noar tt set v0='0' where id=7; -update noar ti set v0='0' where id=7; -update noar tt set b1='O8NY1N1JI6NE53ULNV6OXU3' where id=7; -update noar ti set b1='O8NY1N1JI6NE53ULNV6OXU3' where id=7; -update noar tt set v0='6RTRMOE31H17VNZG5DSNY0' where id=7; -update noar ti set v0='6RTRMOE31H17VNZG5DSNY0' where id=7; -update noar tt set b2='PQ2W0Q38ENFQ8QRRV' where id=7; -update noar ti set b2='PQ2W0Q38ENFQ8QRRV' where id=7; -update noar tt set v0='IT5MMMPRSDYRS276VR4V4QE' where id=8; -update noar ti set v0='IT5MMMPRSDYRS276VR4V4QE' where id=8; -update noar tt set b0='NS9PULEDOQZVAPOW6U' where id=8; -update noar ti set b0='NS9PULEDOQZVAPOW6U' where id=8; -update noar tt set v0='9FIW5ZD3RJR530ARUHJF' where id=8; -update noar ti set v0='9FIW5ZD3RJR530ARUHJF' where id=8; -update noar tt set b1='PKNK5' where id=8; -update noar ti set b1='PKNK5' where id=8; -update noar tt set v0='739F8P4' where id=8; -update noar ti set v0='739F8P4' where id=8; -update noar tt set b2='GOYURBF7P45JLITZ27VK1ZTIARKX94' where id=8; -update noar ti set b2='GOYURBF7P45JLITZ27VK1ZTIARKX94' where id=8; -update noar tt set v0='RN6PH' where id=9; -update noar ti set v0='RN6PH' where id=9; -update noar tt set b0='GP1S6HTYE0GX083U' where id=9; -update noar ti set b0='GP1S6HTYE0GX083U' where id=9; -update noar tt set v0='JEZPISDJ1KY5GJ' where id=9; -update noar ti set v0='JEZPISDJ1KY5GJ' where id=9; -update noar tt set b1='5IPR43G9OCJH9' where id=9; -update noar ti set b1='5IPR43G9OCJH9' where id=9; -update noar tt set v0='O47MVT09F9' where id=9; -update noar ti set v0='O47MVT09F9' where id=9; -update noar tt set b2='B4KOCBIM8RNDS6G23XDLIMSANJKGM' where id=9; -update noar ti set b2='B4KOCBIM8RNDS6G23XDLIMSANJKGM' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -v0 varchar(256) not null, -b0 longblob not null, -b1 longblob not null, -b2 longblob not null -) engine=tokudb; -insert into tt values (1,'','','',''); -insert into tt values (2,'','','',''); -insert into tt values (3,'','','',''); -insert into tt values (4,'','','',''); -insert into tt values (5,'','','',''); -insert into tt values (6,'','','',''); -insert into tt values (7,'','','',''); -insert into tt values (8,'','','',''); -insert into tt values (9,'','','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='I6JZOVD0Q3VKPQV0F16FUI' where id=1; -update noar ti set v0='I6JZOVD0Q3VKPQV0F16FUI' where id=1; -update noar tt set b0='LMA' where id=1; -update noar ti set b0='LMA' where id=1; -update noar tt set v0='QES8729V3ZKS4FZRL' where id=1; -update noar ti set v0='QES8729V3ZKS4FZRL' where id=1; -update noar tt set b1='NDM04IPLD6KNEE1DUYZ739ST3VD0VX' where id=1; -update noar ti set b1='NDM04IPLD6KNEE1DUYZ739ST3VD0VX' where id=1; -update noar tt set v0='9DT3BFV1OKC3FP8ANCB6MOO8UI2Q' where id=1; -update noar ti set v0='9DT3BFV1OKC3FP8ANCB6MOO8UI2Q' where id=1; -update noar tt set b2='3HSO5XNEJ59' where id=1; -update noar ti set b2='3HSO5XNEJ59' where id=1; -update noar tt set v0='785EI1QQNEG1ZW7L' where id=2; -update noar ti set v0='785EI1QQNEG1ZW7L' where id=2; -update noar tt set b0='8X133OT' where id=2; -update noar ti set b0='8X133OT' where id=2; -update noar tt set v0='ZE' where id=2; -update noar ti set v0='ZE' where id=2; -update noar tt set b1='5MWOR8' where id=2; -update noar ti set b1='5MWOR8' where id=2; -update noar tt set v0='JZLR2M' where id=2; -update noar ti set v0='JZLR2M' where id=2; -update noar tt set b2='WGUMKCTYWSMWK6LT2XV7ZX5K7NQ' where id=2; -update noar ti set b2='WGUMKCTYWSMWK6LT2XV7ZX5K7NQ' where id=2; -update noar tt set v0='5JRK06C9QZL0X' where id=3; -update noar ti set v0='5JRK06C9QZL0X' where id=3; -update noar tt set b0='2XK5UFJAC2C86O0BL75PTA1DKRS3' where id=3; -update noar ti set b0='2XK5UFJAC2C86O0BL75PTA1DKRS3' where id=3; -update noar tt set v0='R88GRBCKRR4GOJCJCV0V' where id=3; -update noar ti set v0='R88GRBCKRR4GOJCJCV0V' where id=3; -update noar tt set b1='3ZMX9HD0A37PB8JP8FBF6WIX1IF1D7OD' where id=3; -update noar ti set b1='3ZMX9HD0A37PB8JP8FBF6WIX1IF1D7OD' where id=3; -update noar tt set v0='J2W9YJ1F37BQ0RVU0TE1PD1WK1Q0MOY' where id=3; -update noar ti set v0='J2W9YJ1F37BQ0RVU0TE1PD1WK1Q0MOY' where id=3; -update noar tt set b2='W1VTVX64P881E1C0LEF9' where id=3; -update noar ti set b2='W1VTVX64P881E1C0LEF9' where id=3; -update noar tt set v0='JUQC4PQSW1FH0JBJPF' where id=4; -update noar ti set v0='JUQC4PQSW1FH0JBJPF' where id=4; -update noar tt set b0='MC6Q3JQR88' where id=4; -update noar ti set b0='MC6Q3JQR88' where id=4; -update noar tt set v0='0T5OSG00PW6YWPXEDT1WC0A0ZBVEPM' where id=4; -update noar ti set v0='0T5OSG00PW6YWPXEDT1WC0A0ZBVEPM' where id=4; -update noar tt set b1='7BF7EI1' where id=4; -update noar ti set b1='7BF7EI1' where id=4; -update noar tt set v0='DPV7D8B2VZU9V4JJSZ2N7U1UBQ' where id=4; -update noar ti set v0='DPV7D8B2VZU9V4JJSZ2N7U1UBQ' where id=4; -update noar tt set b2='2FCJ8TFM3N0ICBDMMUM0' where id=4; -update noar ti set b2='2FCJ8TFM3N0ICBDMMUM0' where id=4; -update noar tt set v0='HJQC0OCESWPGF14VOVKT' where id=5; -update noar ti set v0='HJQC0OCESWPGF14VOVKT' where id=5; -update noar tt set b0='8O9UCSXDF7GU' where id=5; -update noar ti set b0='8O9UCSXDF7GU' where id=5; -update noar tt set v0='OYVZDAC0QB1OBB' where id=5; -update noar ti set v0='OYVZDAC0QB1OBB' where id=5; -update noar tt set b1='HHH50' where id=5; -update noar ti set b1='HHH50' where id=5; -update noar tt set v0='Z8MVSR60GOHWRX72QM0UQEN985' where id=5; -update noar ti set v0='Z8MVSR60GOHWRX72QM0UQEN985' where id=5; -update noar tt set b2='K779NJDMFEOA' where id=5; -update noar ti set b2='K779NJDMFEOA' where id=5; -update noar tt set v0='OVXT1X' where id=6; -update noar ti set v0='OVXT1X' where id=6; -update noar tt set b0='63V2OXBQNKL2LD710' where id=6; -update noar ti set b0='63V2OXBQNKL2LD710' where id=6; -update noar tt set v0='IWWAXFNG84G6MTUOB35EB9GKDKYM' where id=6; -update noar ti set v0='IWWAXFNG84G6MTUOB35EB9GKDKYM' where id=6; -update noar tt set b1='7HW3YATS3WGVZWQ8B24C74' where id=6; -update noar ti set b1='7HW3YATS3WGVZWQ8B24C74' where id=6; -update noar tt set v0='GBERGIH8' where id=6; -update noar ti set v0='GBERGIH8' where id=6; -update noar tt set b2='YR3LN' where id=6; -update noar ti set b2='YR3LN' where id=6; -update noar tt set v0='ZXVUWNSHXVNHGDEOWWBF6YBND1C0R3A7' where id=7; -update noar ti set v0='ZXVUWNSHXVNHGDEOWWBF6YBND1C0R3A7' where id=7; -update noar tt set b0='63U2P4E7NJPGC8J0K6Q6KIBTD39OLJ' where id=7; -update noar ti set b0='63U2P4E7NJPGC8J0K6Q6KIBTD39OLJ' where id=7; -update noar tt set v0='Y5MCY5697GHDWMX2LJGZMIN' where id=7; -update noar ti set v0='Y5MCY5697GHDWMX2LJGZMIN' where id=7; -update noar tt set b1='1U09FXSSIYL16M6JEA8H606P' where id=7; -update noar ti set b1='1U09FXSSIYL16M6JEA8H606P' where id=7; -update noar tt set v0='1W0B1V5X9BARERXRDTPS424M0FTS87' where id=7; -update noar ti set v0='1W0B1V5X9BARERXRDTPS424M0FTS87' where id=7; -update noar tt set b2='32BGBT50IT015AQWF11CYXO0RV348V' where id=7; -update noar ti set b2='32BGBT50IT015AQWF11CYXO0RV348V' where id=7; -update noar tt set v0='PQ8FXWADPE5OGKA9W' where id=8; -update noar ti set v0='PQ8FXWADPE5OGKA9W' where id=8; -update noar tt set b0='21YP85HIA8WEFUC8TNX3M50' where id=8; -update noar ti set b0='21YP85HIA8WEFUC8TNX3M50' where id=8; -update noar tt set v0='4VZFL6K01OGTFH2IID1E1' where id=8; -update noar ti set v0='4VZFL6K01OGTFH2IID1E1' where id=8; -update noar tt set b1='JUJISIJ60YBM2GHE9W6M' where id=8; -update noar ti set b1='JUJISIJ60YBM2GHE9W6M' where id=8; -update noar tt set v0='JYQ9EFJDF94MD' where id=8; -update noar ti set v0='JYQ9EFJDF94MD' where id=8; -update noar tt set b2='PHIC3GT1SEJL04' where id=8; -update noar ti set b2='PHIC3GT1SEJL04' where id=8; -update noar tt set v0='9UOB0KDAE96FO' where id=9; -update noar ti set v0='9UOB0KDAE96FO' where id=9; -update noar tt set b0='JX' where id=9; -update noar ti set b0='JX' where id=9; -update noar tt set v0='0Y08GKSNFS62O' where id=9; -update noar ti set v0='0Y08GKSNFS62O' where id=9; -update noar tt set b1='7Q0D2MQDBWV0BOILC56E3E5' where id=9; -update noar ti set b1='7Q0D2MQDBWV0BOILC56E3E5' where id=9; -update noar tt set v0='3ZVTPSW891ZZ9ZW1Q3IIO53SWTAWC22H' where id=9; -update noar ti set v0='3ZVTPSW891ZZ9ZW1Q3IIO53SWTAWC22H' where id=9; -update noar tt set b2='SFUW878IH9VJ0K59RAPU4R9T2' where id=9; -update noar ti set b2='SFUW878IH9VJ0K59RAPU4R9T2' where id=9; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; +This test does not produce any output on success diff --git a/storage/tokudb/mysql-test/tokudb/r/fast_update_char.result b/storage/tokudb/mysql-test/tokudb/r/fast_update_char.result index 4121d5d72eb..598458262d9 100644 --- a/storage/tokudb/mysql-test/tokudb/r/fast_update_char.result +++ b/storage/tokudb/mysql-test/tokudb/r/fast_update_char.result @@ -1,54 +1,64 @@ -set default_storage_engine='tokudb'; -drop table if exists tt, ti; -set tokudb_disable_slow_update=1; -create table tt (id int primary key, c char(32), b binary(32)); +set tokudb_enable_fast_update=1; +set session sql_mode=(select replace(@@sql_mode,'STRICT_TRANS_TABLES','')); +set session sql_mode=(select replace(@@sql_mode,'STRICT_ALL_TABLES','')); +create table tt (id int primary key, c char(32), b binary(32)) engine = tokudb; create table ti like tt; alter table ti engine=innodb; insert into tt values (1,null,null); insert into ti values (1,null,null); -update noar tt set c='hi' where id=1; -update noar ti set c='hi' where id=1; +update tt set c='hi' where id=1; +update ti set c='hi' where id=1; include/diff_tables.inc [test.tt, test.ti] -update noar tt set c='there' where id=1; -update noar ti set c='there' where id=1; +update tt set c='there' where id=1; +update ti set c='there' where id=1; include/diff_tables.inc [test.tt, test.ti] drop table tt, ti; -create table tt (id char(8) primary key, c char(32), b binary(32)); +create table tt (id char(8) primary key, +c char(32), +b binary(32)) engine = tokudb; create table ti like tt; alter table ti engine=innodb; insert into tt values ('1',null,null); insert into ti values ('1',null,null); -update noar tt set c='hi' where id='1'; -update noar ti set c='hi' where id='1'; +update tt set c='hi' where id='1'; +update ti set c='hi' where id='1'; include/diff_tables.inc [test.tt, test.ti] -update noar tt set c='there' where id='1'; -update noar ti set c='there' where id='1'; +update tt set c='there' where id='1'; +update ti set c='there' where id='1'; include/diff_tables.inc [test.tt, test.ti] drop table tt, ti; -create table tt (id varchar(8) primary key, a int, b char(32), c char(32), d binary(32)); +create table tt (id varchar(8) primary key, +a int, +b char(32), +c char(32), +d binary(32)) engine = tokudb; create table ti like tt; alter table ti engine=innodb; insert into tt values ('1',null,null,null,null); insert into ti values ('1',null,null,null,null); -update noar tt set b='hi' where id='1'; -update noar ti set b='hi' where id='1'; +update tt set b='hi' where id='1'; +update ti set b='hi' where id='1'; include/diff_tables.inc [test.tt, test.ti] -update noar tt set c='there' where id='1'; -update noar ti set c='there' where id='1'; +update tt set c='there' where id='1'; +update ti set c='there' where id='1'; include/diff_tables.inc [test.tt, test.ti] drop table tt, ti; -create table tt (id varchar(8) primary key, a int, b char(32), c char(32), d binary(32)); +create table tt (id varchar(8) primary key, +a int, +b char(32), +c char(32), +d binary(32)) engine = tokudb; create table ti like tt; alter table ti engine=innodb; insert into tt values ('1',null,null,null,null); insert into ti values ('1',null,null,null,null); -update noar tt set b='123' where id='1'; -update noar ti set b='123' where id='1'; +update tt set b='123' where id='1'; +update ti set b='123' where id='1'; include/diff_tables.inc [test.tt, test.ti] -update noar tt set c=456 where id='1'; -update noar ti set c=456 where id='1'; +update tt set c=456 where id='1'; +update ti set c=456 where id='1'; include/diff_tables.inc [test.tt, test.ti] -update noar tt set c=789 where id=1; -update noar ti set c=789 where id=1; +update tt set c=789 where id=1; +update ti set c=789 where id=1; include/diff_tables.inc [test.tt, test.ti] drop table tt, ti; diff --git a/storage/tokudb/mysql-test/tokudb/r/fast_update_deadlock.result b/storage/tokudb/mysql-test/tokudb/r/fast_update_deadlock.result index 7a34d9122ea..ac1e99c932a 100644 --- a/storage/tokudb/mysql-test/tokudb/r/fast_update_deadlock.result +++ b/storage/tokudb/mysql-test/tokudb/r/fast_update_deadlock.result @@ -1,13 +1,18 @@ -drop table if exists t; -set default_storage_engine='tokudb'; -create table t (id bigint primary key, b bigint not null default 0); +set tokudb_enable_fast_update=1; +set session sql_mode=(select replace(@@sql_mode,'STRICT_TRANS_TABLES','')); +set session sql_mode=(select replace(@@sql_mode,'STRICT_ALL_TABLES','')); +create table t (id bigint primary key, +b bigint not null default 0) engine = tokudb; insert into t (id) values (1),(2); +set tokudb_enable_fast_update=1; +set session sql_mode=(select replace(@@sql_mode,'STRICT_TRANS_TABLES','')); +set session sql_mode=(select replace(@@sql_mode,'STRICT_ALL_TABLES','')); begin; -update noar t set b=b+1 where id=1; +update t set b=b+1 where id=1; begin; -update noar t set b=b-1 where id=2; -update noar t set b=b+1 where id=2; -update noar t set b=b-1 where id=1; +update t set b=b-1 where id=2; +update t set b=b+1 where id=2; +update t set b=b-1 where id=1; Got one of the listed errors rollback; commit; diff --git a/storage/tokudb/mysql-test/tokudb/r/fast_update_decr_floor.result b/storage/tokudb/mysql-test/tokudb/r/fast_update_decr_floor.result index c93f02a8583..4a963777fc0 100644 --- a/storage/tokudb/mysql-test/tokudb/r/fast_update_decr_floor.result +++ b/storage/tokudb/mysql-test/tokudb/r/fast_update_decr_floor.result @@ -1,313 +1 @@ -set default_storage_engine='tokudb'; -drop table if exists t; -set tokudb_disable_slow_update=1; -create table tt ( -id tinyint null primary key, -x tinyint null -); -insert into tt values (1,4); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set x=if(x=0,0,x-1) where id=1; -ERROR 42000: Table 'tt' uses an extension that doesn't exist in this XYZ version -drop table tt, ti; -create table tt ( -id tinyint not null primary key, -x tinyint not null -); -insert into tt values (1,4); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set x=if(x=0,0,x-1) where id=1; -ERROR 42000: Table 'tt' uses an extension that doesn't exist in this XYZ version -drop table tt, ti; -create table tt ( -id tinyint unsigned null primary key, -x tinyint unsigned null -); -insert into tt values (1,4); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set x=if(x=0,0,x-1) where id=1; -update noar ti set x=if(x=0,0,x-1) where id=1; -update noar tt set x=if(x=0,0,x-1) where id=1; -update noar ti set x=if(x=0,0,x-1) where id=1; -update noar tt set x=if(x=0,0,x-1) where id=1; -update noar ti set x=if(x=0,0,x-1) where id=1; -update noar tt set x=if(x=0,0,x-1) where id=1; -update noar ti set x=if(x=0,0,x-1) where id=1; -update noar tt set x=if(x=0,0,x-1) where id=1; -update noar ti set x=if(x=0,0,x-1) where id=1; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt ( -id tinyint unsigned not null primary key, -x tinyint unsigned not null -); -insert into tt values (1,4); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set x=if(x=0,0,x-1) where id=1; -update noar ti set x=if(x=0,0,x-1) where id=1; -update noar tt set x=if(x=0,0,x-1) where id=1; -update noar ti set x=if(x=0,0,x-1) where id=1; -update noar tt set x=if(x=0,0,x-1) where id=1; -update noar ti set x=if(x=0,0,x-1) where id=1; -update noar tt set x=if(x=0,0,x-1) where id=1; -update noar ti set x=if(x=0,0,x-1) where id=1; -update noar tt set x=if(x=0,0,x-1) where id=1; -update noar ti set x=if(x=0,0,x-1) where id=1; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt ( -id smallint null primary key, -x smallint null -); -insert into tt values (1,4); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set x=if(x=0,0,x-1) where id=1; -ERROR 42000: Table 'tt' uses an extension that doesn't exist in this XYZ version -drop table tt, ti; -create table tt ( -id smallint not null primary key, -x smallint not null -); -insert into tt values (1,4); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set x=if(x=0,0,x-1) where id=1; -ERROR 42000: Table 'tt' uses an extension that doesn't exist in this XYZ version -drop table tt, ti; -create table tt ( -id smallint unsigned null primary key, -x smallint unsigned null -); -insert into tt values (1,4); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set x=if(x=0,0,x-1) where id=1; -update noar ti set x=if(x=0,0,x-1) where id=1; -update noar tt set x=if(x=0,0,x-1) where id=1; -update noar ti set x=if(x=0,0,x-1) where id=1; -update noar tt set x=if(x=0,0,x-1) where id=1; -update noar ti set x=if(x=0,0,x-1) where id=1; -update noar tt set x=if(x=0,0,x-1) where id=1; -update noar ti set x=if(x=0,0,x-1) where id=1; -update noar tt set x=if(x=0,0,x-1) where id=1; -update noar ti set x=if(x=0,0,x-1) where id=1; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt ( -id smallint unsigned not null primary key, -x smallint unsigned not null -); -insert into tt values (1,4); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set x=if(x=0,0,x-1) where id=1; -update noar ti set x=if(x=0,0,x-1) where id=1; -update noar tt set x=if(x=0,0,x-1) where id=1; -update noar ti set x=if(x=0,0,x-1) where id=1; -update noar tt set x=if(x=0,0,x-1) where id=1; -update noar ti set x=if(x=0,0,x-1) where id=1; -update noar tt set x=if(x=0,0,x-1) where id=1; -update noar ti set x=if(x=0,0,x-1) where id=1; -update noar tt set x=if(x=0,0,x-1) where id=1; -update noar ti set x=if(x=0,0,x-1) where id=1; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt ( -id mediumint null primary key, -x mediumint null -); -insert into tt values (1,4); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set x=if(x=0,0,x-1) where id=1; -ERROR 42000: Table 'tt' uses an extension that doesn't exist in this XYZ version -drop table tt, ti; -create table tt ( -id mediumint not null primary key, -x mediumint not null -); -insert into tt values (1,4); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set x=if(x=0,0,x-1) where id=1; -ERROR 42000: Table 'tt' uses an extension that doesn't exist in this XYZ version -drop table tt, ti; -create table tt ( -id mediumint unsigned null primary key, -x mediumint unsigned null -); -insert into tt values (1,4); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set x=if(x=0,0,x-1) where id=1; -update noar ti set x=if(x=0,0,x-1) where id=1; -update noar tt set x=if(x=0,0,x-1) where id=1; -update noar ti set x=if(x=0,0,x-1) where id=1; -update noar tt set x=if(x=0,0,x-1) where id=1; -update noar ti set x=if(x=0,0,x-1) where id=1; -update noar tt set x=if(x=0,0,x-1) where id=1; -update noar ti set x=if(x=0,0,x-1) where id=1; -update noar tt set x=if(x=0,0,x-1) where id=1; -update noar ti set x=if(x=0,0,x-1) where id=1; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt ( -id mediumint unsigned not null primary key, -x mediumint unsigned not null -); -insert into tt values (1,4); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set x=if(x=0,0,x-1) where id=1; -update noar ti set x=if(x=0,0,x-1) where id=1; -update noar tt set x=if(x=0,0,x-1) where id=1; -update noar ti set x=if(x=0,0,x-1) where id=1; -update noar tt set x=if(x=0,0,x-1) where id=1; -update noar ti set x=if(x=0,0,x-1) where id=1; -update noar tt set x=if(x=0,0,x-1) where id=1; -update noar ti set x=if(x=0,0,x-1) where id=1; -update noar tt set x=if(x=0,0,x-1) where id=1; -update noar ti set x=if(x=0,0,x-1) where id=1; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt ( -id int null primary key, -x int null -); -insert into tt values (1,4); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set x=if(x=0,0,x-1) where id=1; -ERROR 42000: Table 'tt' uses an extension that doesn't exist in this XYZ version -drop table tt, ti; -create table tt ( -id int not null primary key, -x int not null -); -insert into tt values (1,4); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set x=if(x=0,0,x-1) where id=1; -ERROR 42000: Table 'tt' uses an extension that doesn't exist in this XYZ version -drop table tt, ti; -create table tt ( -id int unsigned null primary key, -x int unsigned null -); -insert into tt values (1,4); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set x=if(x=0,0,x-1) where id=1; -update noar ti set x=if(x=0,0,x-1) where id=1; -update noar tt set x=if(x=0,0,x-1) where id=1; -update noar ti set x=if(x=0,0,x-1) where id=1; -update noar tt set x=if(x=0,0,x-1) where id=1; -update noar ti set x=if(x=0,0,x-1) where id=1; -update noar tt set x=if(x=0,0,x-1) where id=1; -update noar ti set x=if(x=0,0,x-1) where id=1; -update noar tt set x=if(x=0,0,x-1) where id=1; -update noar ti set x=if(x=0,0,x-1) where id=1; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt ( -id int unsigned not null primary key, -x int unsigned not null -); -insert into tt values (1,4); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set x=if(x=0,0,x-1) where id=1; -update noar ti set x=if(x=0,0,x-1) where id=1; -update noar tt set x=if(x=0,0,x-1) where id=1; -update noar ti set x=if(x=0,0,x-1) where id=1; -update noar tt set x=if(x=0,0,x-1) where id=1; -update noar ti set x=if(x=0,0,x-1) where id=1; -update noar tt set x=if(x=0,0,x-1) where id=1; -update noar ti set x=if(x=0,0,x-1) where id=1; -update noar tt set x=if(x=0,0,x-1) where id=1; -update noar ti set x=if(x=0,0,x-1) where id=1; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt ( -id bigint null primary key, -x bigint null -); -insert into tt values (1,4); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set x=if(x=0,0,x-1) where id=1; -ERROR 42000: Table 'tt' uses an extension that doesn't exist in this XYZ version -drop table tt, ti; -create table tt ( -id bigint not null primary key, -x bigint not null -); -insert into tt values (1,4); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set x=if(x=0,0,x-1) where id=1; -ERROR 42000: Table 'tt' uses an extension that doesn't exist in this XYZ version -drop table tt, ti; -create table tt ( -id bigint unsigned null primary key, -x bigint unsigned null -); -insert into tt values (1,4); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set x=if(x=0,0,x-1) where id=1; -update noar ti set x=if(x=0,0,x-1) where id=1; -update noar tt set x=if(x=0,0,x-1) where id=1; -update noar ti set x=if(x=0,0,x-1) where id=1; -update noar tt set x=if(x=0,0,x-1) where id=1; -update noar ti set x=if(x=0,0,x-1) where id=1; -update noar tt set x=if(x=0,0,x-1) where id=1; -update noar ti set x=if(x=0,0,x-1) where id=1; -update noar tt set x=if(x=0,0,x-1) where id=1; -update noar ti set x=if(x=0,0,x-1) where id=1; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt ( -id bigint unsigned not null primary key, -x bigint unsigned not null -); -insert into tt values (1,4); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set x=if(x=0,0,x-1) where id=1; -update noar ti set x=if(x=0,0,x-1) where id=1; -update noar tt set x=if(x=0,0,x-1) where id=1; -update noar ti set x=if(x=0,0,x-1) where id=1; -update noar tt set x=if(x=0,0,x-1) where id=1; -update noar ti set x=if(x=0,0,x-1) where id=1; -update noar tt set x=if(x=0,0,x-1) where id=1; -update noar ti set x=if(x=0,0,x-1) where id=1; -update noar tt set x=if(x=0,0,x-1) where id=1; -update noar ti set x=if(x=0,0,x-1) where id=1; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; +This test does not produce any output on success diff --git a/storage/tokudb/mysql-test/tokudb/r/fast_update_disable_slow_update.result b/storage/tokudb/mysql-test/tokudb/r/fast_update_disable_slow_update.result deleted file mode 100644 index 13bbb837528..00000000000 --- a/storage/tokudb/mysql-test/tokudb/r/fast_update_disable_slow_update.result +++ /dev/null @@ -1,7 +0,0 @@ -set default_storage_engine='tokudb'; -drop table if exists t; -create table t (id int primary key, b int, key(b)); -set tokudb_disable_slow_update=1; -update noar t set b=b+1 where id=42; -ERROR 42000: Table 't' uses an extension that doesn't exist in this XYZ version -drop table t; diff --git a/storage/tokudb/mysql-test/tokudb/r/fast_update_error.result b/storage/tokudb/mysql-test/tokudb/r/fast_update_error.result index 7a4795615a9..69b16e4ac04 100644 --- a/storage/tokudb/mysql-test/tokudb/r/fast_update_error.result +++ b/storage/tokudb/mysql-test/tokudb/r/fast_update_error.result @@ -1,9 +1,9 @@ -set default_storage_engine='tokudb'; -drop table if exists tt; -set tokudb_disable_slow_update=1; -create table tt (id int primary key, x int); -update noar tt set x=1 where id='abc'; +set tokudb_enable_fast_update=1; +set session sql_mode=(select replace(@@sql_mode,'STRICT_TRANS_TABLES','')); +set session sql_mode=(select replace(@@sql_mode,'STRICT_ALL_TABLES','')); +create table tt (id int primary key, x int) engine = tokudb; +update tt set x=1 where id='abc'; ERROR 42000: Table 'tt' uses an extension that doesn't exist in this XYZ version -update noar tt set x='abc' where id=1; +update tt set x='abc' where id=1; ERROR 42000: Table 'tt' uses an extension that doesn't exist in this XYZ version drop table tt; diff --git a/storage/tokudb/mysql-test/tokudb/r/fast_update_int.result b/storage/tokudb/mysql-test/tokudb/r/fast_update_int.result index 3e37ceb035a..0189c350fb1 100644 --- a/storage/tokudb/mysql-test/tokudb/r/fast_update_int.result +++ b/storage/tokudb/mysql-test/tokudb/r/fast_update_int.result @@ -1,1122 +1,1120 @@ -set default_storage_engine='tokudb'; -drop table if exists t; +### Test int for: tinyint, , null create table t ( -id tinyint null primary key, +id tinyint primary key, x tinyint null -); -insert into t values (1,0),(2,0),(3,0); +) engine = tokudb; +insert into t values (1,0), (2,0), (3,0); select * from t; id x 1 0 2 0 3 0 -set tokudb_disable_slow_update=1; -update noar t set x=100 where id=2; +update t set x = 100 where id = 2; select * from t; id x 1 0 2 100 3 0 -update noar t set x=x+1 where id=3; +update t set x = x + 1 where id = 3; select * from t; id x 1 0 2 100 3 1 -update noar t set x=x-1 where id=3; +update t set x = x - 1 where id = 3; select * from t; id x 1 0 2 100 3 0 -update noar t set x=x+100 where id=3; +update t set x = x + 100 where id = 3; select * from t; id x 1 0 2 100 3 100 -update noar t set x=x-100 where id=3; +update t set x = x - 100 where id = 3; select * from t; id x 1 0 2 100 3 0 -update noar t set x=1+x where id=1; +update t set x = 1 + x where id = 1; ERROR 42000: Table 't' uses an extension that doesn't exist in this XYZ version -update noar t set x=-x where id=1; +update t set x = -x where id = 1; ERROR 42000: Table 't' uses an extension that doesn't exist in this XYZ version -update noar t set x=x+1 where id=100; +update t set x = x + 1 where id = 100; select * from t; id x 1 0 2 100 3 0 -update noar t set x=x+1 where 1 <= id and id < 100; +update t set x = x + 1 where 1 <= id and id < 100; ERROR 42000: Table 't' uses an extension that doesn't exist in this XYZ version -update noar t set x=x+1; +update t set x = x + 1; ERROR 42000: Table 't' uses an extension that doesn't exist in this XYZ version drop table t; +### Test int for: tinyint, , not null create table t ( -id tinyint not null primary key, +id tinyint primary key, x tinyint not null -); -insert into t values (1,0),(2,0),(3,0); +) engine = tokudb; +insert into t values (1,0), (2,0), (3,0); select * from t; id x 1 0 2 0 3 0 -set tokudb_disable_slow_update=1; -update noar t set x=100 where id=2; +update t set x = 100 where id = 2; select * from t; id x 1 0 2 100 3 0 -update noar t set x=x+1 where id=3; +update t set x = x + 1 where id = 3; select * from t; id x 1 0 2 100 3 1 -update noar t set x=x-1 where id=3; +update t set x = x - 1 where id = 3; select * from t; id x 1 0 2 100 3 0 -update noar t set x=x+100 where id=3; +update t set x = x + 100 where id = 3; select * from t; id x 1 0 2 100 3 100 -update noar t set x=x-100 where id=3; +update t set x = x - 100 where id = 3; select * from t; id x 1 0 2 100 3 0 -update noar t set x=1+x where id=1; +update t set x = 1 + x where id = 1; ERROR 42000: Table 't' uses an extension that doesn't exist in this XYZ version -update noar t set x=-x where id=1; +update t set x = -x where id = 1; ERROR 42000: Table 't' uses an extension that doesn't exist in this XYZ version -update noar t set x=x+1 where id=100; +update t set x = x + 1 where id = 100; select * from t; id x 1 0 2 100 3 0 -update noar t set x=x+1 where 1 <= id and id < 100; +update t set x = x + 1 where 1 <= id and id < 100; ERROR 42000: Table 't' uses an extension that doesn't exist in this XYZ version -update noar t set x=x+1; +update t set x = x + 1; ERROR 42000: Table 't' uses an extension that doesn't exist in this XYZ version drop table t; +### Test int for: tinyint, unsigned, null create table t ( -id tinyint unsigned null primary key, +id tinyint unsigned primary key, x tinyint unsigned null -); -insert into t values (1,0),(2,0),(3,0); +) engine = tokudb; +insert into t values (1,0), (2,0), (3,0); select * from t; id x 1 0 2 0 3 0 -set tokudb_disable_slow_update=1; -update noar t set x=100 where id=2; +update t set x = 100 where id = 2; select * from t; id x 1 0 2 100 3 0 -update noar t set x=x+1 where id=3; +update t set x = x + 1 where id = 3; select * from t; id x 1 0 2 100 3 1 -update noar t set x=x-1 where id=3; +update t set x = x - 1 where id = 3; select * from t; id x 1 0 2 100 3 0 -update noar t set x=x+100 where id=3; +update t set x = x + 100 where id = 3; select * from t; id x 1 0 2 100 3 100 -update noar t set x=x-100 where id=3; +update t set x = x - 100 where id = 3; select * from t; id x 1 0 2 100 3 0 -update noar t set x=1+x where id=1; +update t set x = 1 + x where id = 1; ERROR 42000: Table 't' uses an extension that doesn't exist in this XYZ version -update noar t set x=-x where id=1; +update t set x = -x where id = 1; ERROR 42000: Table 't' uses an extension that doesn't exist in this XYZ version -update noar t set x=x+1 where id=100; +update t set x = x + 1 where id = 100; select * from t; id x 1 0 2 100 3 0 -update noar t set x=x+1 where 1 <= id and id < 100; +update t set x = x + 1 where 1 <= id and id < 100; ERROR 42000: Table 't' uses an extension that doesn't exist in this XYZ version -update noar t set x=x+1; +update t set x = x + 1; ERROR 42000: Table 't' uses an extension that doesn't exist in this XYZ version drop table t; +### Test int for: tinyint, unsigned, not null create table t ( -id tinyint unsigned not null primary key, +id tinyint unsigned primary key, x tinyint unsigned not null -); -insert into t values (1,0),(2,0),(3,0); +) engine = tokudb; +insert into t values (1,0), (2,0), (3,0); select * from t; id x 1 0 2 0 3 0 -set tokudb_disable_slow_update=1; -update noar t set x=100 where id=2; +update t set x = 100 where id = 2; select * from t; id x 1 0 2 100 3 0 -update noar t set x=x+1 where id=3; +update t set x = x + 1 where id = 3; select * from t; id x 1 0 2 100 3 1 -update noar t set x=x-1 where id=3; +update t set x = x - 1 where id = 3; select * from t; id x 1 0 2 100 3 0 -update noar t set x=x+100 where id=3; +update t set x = x + 100 where id = 3; select * from t; id x 1 0 2 100 3 100 -update noar t set x=x-100 where id=3; +update t set x = x - 100 where id = 3; select * from t; id x 1 0 2 100 3 0 -update noar t set x=1+x where id=1; +update t set x = 1 + x where id = 1; ERROR 42000: Table 't' uses an extension that doesn't exist in this XYZ version -update noar t set x=-x where id=1; +update t set x = -x where id = 1; ERROR 42000: Table 't' uses an extension that doesn't exist in this XYZ version -update noar t set x=x+1 where id=100; +update t set x = x + 1 where id = 100; select * from t; id x 1 0 2 100 3 0 -update noar t set x=x+1 where 1 <= id and id < 100; +update t set x = x + 1 where 1 <= id and id < 100; ERROR 42000: Table 't' uses an extension that doesn't exist in this XYZ version -update noar t set x=x+1; +update t set x = x + 1; ERROR 42000: Table 't' uses an extension that doesn't exist in this XYZ version drop table t; +### Test int for: smallint, , null create table t ( -id smallint null primary key, +id smallint primary key, x smallint null -); -insert into t values (1,0),(2,0),(3,0); +) engine = tokudb; +insert into t values (1,0), (2,0), (3,0); select * from t; id x 1 0 2 0 3 0 -set tokudb_disable_slow_update=1; -update noar t set x=100 where id=2; +update t set x = 100 where id = 2; select * from t; id x 1 0 2 100 3 0 -update noar t set x=x+1 where id=3; +update t set x = x + 1 where id = 3; select * from t; id x 1 0 2 100 3 1 -update noar t set x=x-1 where id=3; +update t set x = x - 1 where id = 3; select * from t; id x 1 0 2 100 3 0 -update noar t set x=x+100 where id=3; +update t set x = x + 100 where id = 3; select * from t; id x 1 0 2 100 3 100 -update noar t set x=x-100 where id=3; +update t set x = x - 100 where id = 3; select * from t; id x 1 0 2 100 3 0 -update noar t set x=1+x where id=1; +update t set x = 1 + x where id = 1; ERROR 42000: Table 't' uses an extension that doesn't exist in this XYZ version -update noar t set x=-x where id=1; +update t set x = -x where id = 1; ERROR 42000: Table 't' uses an extension that doesn't exist in this XYZ version -update noar t set x=x+1 where id=100; +update t set x = x + 1 where id = 100; select * from t; id x 1 0 2 100 3 0 -update noar t set x=x+1 where 1 <= id and id < 100; +update t set x = x + 1 where 1 <= id and id < 100; ERROR 42000: Table 't' uses an extension that doesn't exist in this XYZ version -update noar t set x=x+1; +update t set x = x + 1; ERROR 42000: Table 't' uses an extension that doesn't exist in this XYZ version drop table t; +### Test int for: smallint, , not null create table t ( -id smallint not null primary key, +id smallint primary key, x smallint not null -); -insert into t values (1,0),(2,0),(3,0); +) engine = tokudb; +insert into t values (1,0), (2,0), (3,0); select * from t; id x 1 0 2 0 3 0 -set tokudb_disable_slow_update=1; -update noar t set x=100 where id=2; +update t set x = 100 where id = 2; select * from t; id x 1 0 2 100 3 0 -update noar t set x=x+1 where id=3; +update t set x = x + 1 where id = 3; select * from t; id x 1 0 2 100 3 1 -update noar t set x=x-1 where id=3; +update t set x = x - 1 where id = 3; select * from t; id x 1 0 2 100 3 0 -update noar t set x=x+100 where id=3; +update t set x = x + 100 where id = 3; select * from t; id x 1 0 2 100 3 100 -update noar t set x=x-100 where id=3; +update t set x = x - 100 where id = 3; select * from t; id x 1 0 2 100 3 0 -update noar t set x=1+x where id=1; +update t set x = 1 + x where id = 1; ERROR 42000: Table 't' uses an extension that doesn't exist in this XYZ version -update noar t set x=-x where id=1; +update t set x = -x where id = 1; ERROR 42000: Table 't' uses an extension that doesn't exist in this XYZ version -update noar t set x=x+1 where id=100; +update t set x = x + 1 where id = 100; select * from t; id x 1 0 2 100 3 0 -update noar t set x=x+1 where 1 <= id and id < 100; +update t set x = x + 1 where 1 <= id and id < 100; ERROR 42000: Table 't' uses an extension that doesn't exist in this XYZ version -update noar t set x=x+1; +update t set x = x + 1; ERROR 42000: Table 't' uses an extension that doesn't exist in this XYZ version drop table t; +### Test int for: smallint, unsigned, null create table t ( -id smallint unsigned null primary key, +id smallint unsigned primary key, x smallint unsigned null -); -insert into t values (1,0),(2,0),(3,0); +) engine = tokudb; +insert into t values (1,0), (2,0), (3,0); select * from t; id x 1 0 2 0 3 0 -set tokudb_disable_slow_update=1; -update noar t set x=100 where id=2; +update t set x = 100 where id = 2; select * from t; id x 1 0 2 100 3 0 -update noar t set x=x+1 where id=3; +update t set x = x + 1 where id = 3; select * from t; id x 1 0 2 100 3 1 -update noar t set x=x-1 where id=3; +update t set x = x - 1 where id = 3; select * from t; id x 1 0 2 100 3 0 -update noar t set x=x+100 where id=3; +update t set x = x + 100 where id = 3; select * from t; id x 1 0 2 100 3 100 -update noar t set x=x-100 where id=3; +update t set x = x - 100 where id = 3; select * from t; id x 1 0 2 100 3 0 -update noar t set x=1+x where id=1; +update t set x = 1 + x where id = 1; ERROR 42000: Table 't' uses an extension that doesn't exist in this XYZ version -update noar t set x=-x where id=1; +update t set x = -x where id = 1; ERROR 42000: Table 't' uses an extension that doesn't exist in this XYZ version -update noar t set x=x+1 where id=100; +update t set x = x + 1 where id = 100; select * from t; id x 1 0 2 100 3 0 -update noar t set x=x+1 where 1 <= id and id < 100; +update t set x = x + 1 where 1 <= id and id < 100; ERROR 42000: Table 't' uses an extension that doesn't exist in this XYZ version -update noar t set x=x+1; +update t set x = x + 1; ERROR 42000: Table 't' uses an extension that doesn't exist in this XYZ version drop table t; +### Test int for: smallint, unsigned, not null create table t ( -id smallint unsigned not null primary key, +id smallint unsigned primary key, x smallint unsigned not null -); -insert into t values (1,0),(2,0),(3,0); +) engine = tokudb; +insert into t values (1,0), (2,0), (3,0); select * from t; id x 1 0 2 0 3 0 -set tokudb_disable_slow_update=1; -update noar t set x=100 where id=2; +update t set x = 100 where id = 2; select * from t; id x 1 0 2 100 3 0 -update noar t set x=x+1 where id=3; +update t set x = x + 1 where id = 3; select * from t; id x 1 0 2 100 3 1 -update noar t set x=x-1 where id=3; +update t set x = x - 1 where id = 3; select * from t; id x 1 0 2 100 3 0 -update noar t set x=x+100 where id=3; +update t set x = x + 100 where id = 3; select * from t; id x 1 0 2 100 3 100 -update noar t set x=x-100 where id=3; +update t set x = x - 100 where id = 3; select * from t; id x 1 0 2 100 3 0 -update noar t set x=1+x where id=1; +update t set x = 1 + x where id = 1; ERROR 42000: Table 't' uses an extension that doesn't exist in this XYZ version -update noar t set x=-x where id=1; +update t set x = -x where id = 1; ERROR 42000: Table 't' uses an extension that doesn't exist in this XYZ version -update noar t set x=x+1 where id=100; +update t set x = x + 1 where id = 100; select * from t; id x 1 0 2 100 3 0 -update noar t set x=x+1 where 1 <= id and id < 100; +update t set x = x + 1 where 1 <= id and id < 100; ERROR 42000: Table 't' uses an extension that doesn't exist in this XYZ version -update noar t set x=x+1; +update t set x = x + 1; ERROR 42000: Table 't' uses an extension that doesn't exist in this XYZ version drop table t; +### Test int for: mediumint, , null create table t ( -id mediumint null primary key, +id mediumint primary key, x mediumint null -); -insert into t values (1,0),(2,0),(3,0); +) engine = tokudb; +insert into t values (1,0), (2,0), (3,0); select * from t; id x 1 0 2 0 3 0 -set tokudb_disable_slow_update=1; -update noar t set x=100 where id=2; +update t set x = 100 where id = 2; select * from t; id x 1 0 2 100 3 0 -update noar t set x=x+1 where id=3; +update t set x = x + 1 where id = 3; select * from t; id x 1 0 2 100 3 1 -update noar t set x=x-1 where id=3; +update t set x = x - 1 where id = 3; select * from t; id x 1 0 2 100 3 0 -update noar t set x=x+100 where id=3; +update t set x = x + 100 where id = 3; select * from t; id x 1 0 2 100 3 100 -update noar t set x=x-100 where id=3; +update t set x = x - 100 where id = 3; select * from t; id x 1 0 2 100 3 0 -update noar t set x=1+x where id=1; +update t set x = 1 + x where id = 1; ERROR 42000: Table 't' uses an extension that doesn't exist in this XYZ version -update noar t set x=-x where id=1; +update t set x = -x where id = 1; ERROR 42000: Table 't' uses an extension that doesn't exist in this XYZ version -update noar t set x=x+1 where id=100; +update t set x = x + 1 where id = 100; select * from t; id x 1 0 2 100 3 0 -update noar t set x=x+1 where 1 <= id and id < 100; +update t set x = x + 1 where 1 <= id and id < 100; ERROR 42000: Table 't' uses an extension that doesn't exist in this XYZ version -update noar t set x=x+1; +update t set x = x + 1; ERROR 42000: Table 't' uses an extension that doesn't exist in this XYZ version drop table t; +### Test int for: mediumint, , not null create table t ( -id mediumint not null primary key, +id mediumint primary key, x mediumint not null -); -insert into t values (1,0),(2,0),(3,0); +) engine = tokudb; +insert into t values (1,0), (2,0), (3,0); select * from t; id x 1 0 2 0 3 0 -set tokudb_disable_slow_update=1; -update noar t set x=100 where id=2; +update t set x = 100 where id = 2; select * from t; id x 1 0 2 100 3 0 -update noar t set x=x+1 where id=3; +update t set x = x + 1 where id = 3; select * from t; id x 1 0 2 100 3 1 -update noar t set x=x-1 where id=3; +update t set x = x - 1 where id = 3; select * from t; id x 1 0 2 100 3 0 -update noar t set x=x+100 where id=3; +update t set x = x + 100 where id = 3; select * from t; id x 1 0 2 100 3 100 -update noar t set x=x-100 where id=3; +update t set x = x - 100 where id = 3; select * from t; id x 1 0 2 100 3 0 -update noar t set x=1+x where id=1; +update t set x = 1 + x where id = 1; ERROR 42000: Table 't' uses an extension that doesn't exist in this XYZ version -update noar t set x=-x where id=1; +update t set x = -x where id = 1; ERROR 42000: Table 't' uses an extension that doesn't exist in this XYZ version -update noar t set x=x+1 where id=100; +update t set x = x + 1 where id = 100; select * from t; id x 1 0 2 100 3 0 -update noar t set x=x+1 where 1 <= id and id < 100; +update t set x = x + 1 where 1 <= id and id < 100; ERROR 42000: Table 't' uses an extension that doesn't exist in this XYZ version -update noar t set x=x+1; +update t set x = x + 1; ERROR 42000: Table 't' uses an extension that doesn't exist in this XYZ version drop table t; +### Test int for: mediumint, unsigned, null create table t ( -id mediumint unsigned null primary key, +id mediumint unsigned primary key, x mediumint unsigned null -); -insert into t values (1,0),(2,0),(3,0); +) engine = tokudb; +insert into t values (1,0), (2,0), (3,0); select * from t; id x 1 0 2 0 3 0 -set tokudb_disable_slow_update=1; -update noar t set x=100 where id=2; +update t set x = 100 where id = 2; select * from t; id x 1 0 2 100 3 0 -update noar t set x=x+1 where id=3; +update t set x = x + 1 where id = 3; select * from t; id x 1 0 2 100 3 1 -update noar t set x=x-1 where id=3; +update t set x = x - 1 where id = 3; select * from t; id x 1 0 2 100 3 0 -update noar t set x=x+100 where id=3; +update t set x = x + 100 where id = 3; select * from t; id x 1 0 2 100 3 100 -update noar t set x=x-100 where id=3; +update t set x = x - 100 where id = 3; select * from t; id x 1 0 2 100 3 0 -update noar t set x=1+x where id=1; +update t set x = 1 + x where id = 1; ERROR 42000: Table 't' uses an extension that doesn't exist in this XYZ version -update noar t set x=-x where id=1; +update t set x = -x where id = 1; ERROR 42000: Table 't' uses an extension that doesn't exist in this XYZ version -update noar t set x=x+1 where id=100; +update t set x = x + 1 where id = 100; select * from t; id x 1 0 2 100 3 0 -update noar t set x=x+1 where 1 <= id and id < 100; +update t set x = x + 1 where 1 <= id and id < 100; ERROR 42000: Table 't' uses an extension that doesn't exist in this XYZ version -update noar t set x=x+1; +update t set x = x + 1; ERROR 42000: Table 't' uses an extension that doesn't exist in this XYZ version drop table t; +### Test int for: mediumint, unsigned, not null create table t ( -id mediumint unsigned not null primary key, +id mediumint unsigned primary key, x mediumint unsigned not null -); -insert into t values (1,0),(2,0),(3,0); +) engine = tokudb; +insert into t values (1,0), (2,0), (3,0); select * from t; id x 1 0 2 0 3 0 -set tokudb_disable_slow_update=1; -update noar t set x=100 where id=2; +update t set x = 100 where id = 2; select * from t; id x 1 0 2 100 3 0 -update noar t set x=x+1 where id=3; +update t set x = x + 1 where id = 3; select * from t; id x 1 0 2 100 3 1 -update noar t set x=x-1 where id=3; +update t set x = x - 1 where id = 3; select * from t; id x 1 0 2 100 3 0 -update noar t set x=x+100 where id=3; +update t set x = x + 100 where id = 3; select * from t; id x 1 0 2 100 3 100 -update noar t set x=x-100 where id=3; +update t set x = x - 100 where id = 3; select * from t; id x 1 0 2 100 3 0 -update noar t set x=1+x where id=1; +update t set x = 1 + x where id = 1; ERROR 42000: Table 't' uses an extension that doesn't exist in this XYZ version -update noar t set x=-x where id=1; +update t set x = -x where id = 1; ERROR 42000: Table 't' uses an extension that doesn't exist in this XYZ version -update noar t set x=x+1 where id=100; +update t set x = x + 1 where id = 100; select * from t; id x 1 0 2 100 3 0 -update noar t set x=x+1 where 1 <= id and id < 100; +update t set x = x + 1 where 1 <= id and id < 100; ERROR 42000: Table 't' uses an extension that doesn't exist in this XYZ version -update noar t set x=x+1; +update t set x = x + 1; ERROR 42000: Table 't' uses an extension that doesn't exist in this XYZ version drop table t; +### Test int for: int, , null create table t ( -id int null primary key, +id int primary key, x int null -); -insert into t values (1,0),(2,0),(3,0); +) engine = tokudb; +insert into t values (1,0), (2,0), (3,0); select * from t; id x 1 0 2 0 3 0 -set tokudb_disable_slow_update=1; -update noar t set x=100 where id=2; +update t set x = 100 where id = 2; select * from t; id x 1 0 2 100 3 0 -update noar t set x=x+1 where id=3; +update t set x = x + 1 where id = 3; select * from t; id x 1 0 2 100 3 1 -update noar t set x=x-1 where id=3; +update t set x = x - 1 where id = 3; select * from t; id x 1 0 2 100 3 0 -update noar t set x=x+100 where id=3; +update t set x = x + 100 where id = 3; select * from t; id x 1 0 2 100 3 100 -update noar t set x=x-100 where id=3; +update t set x = x - 100 where id = 3; select * from t; id x 1 0 2 100 3 0 -update noar t set x=1+x where id=1; +update t set x = 1 + x where id = 1; ERROR 42000: Table 't' uses an extension that doesn't exist in this XYZ version -update noar t set x=-x where id=1; +update t set x = -x where id = 1; ERROR 42000: Table 't' uses an extension that doesn't exist in this XYZ version -update noar t set x=x+1 where id=100; +update t set x = x + 1 where id = 100; select * from t; id x 1 0 2 100 3 0 -update noar t set x=x+1 where 1 <= id and id < 100; +update t set x = x + 1 where 1 <= id and id < 100; ERROR 42000: Table 't' uses an extension that doesn't exist in this XYZ version -update noar t set x=x+1; +update t set x = x + 1; ERROR 42000: Table 't' uses an extension that doesn't exist in this XYZ version drop table t; +### Test int for: int, , not null create table t ( -id int not null primary key, +id int primary key, x int not null -); -insert into t values (1,0),(2,0),(3,0); +) engine = tokudb; +insert into t values (1,0), (2,0), (3,0); select * from t; id x 1 0 2 0 3 0 -set tokudb_disable_slow_update=1; -update noar t set x=100 where id=2; +update t set x = 100 where id = 2; select * from t; id x 1 0 2 100 3 0 -update noar t set x=x+1 where id=3; +update t set x = x + 1 where id = 3; select * from t; id x 1 0 2 100 3 1 -update noar t set x=x-1 where id=3; +update t set x = x - 1 where id = 3; select * from t; id x 1 0 2 100 3 0 -update noar t set x=x+100 where id=3; +update t set x = x + 100 where id = 3; select * from t; id x 1 0 2 100 3 100 -update noar t set x=x-100 where id=3; +update t set x = x - 100 where id = 3; select * from t; id x 1 0 2 100 3 0 -update noar t set x=1+x where id=1; +update t set x = 1 + x where id = 1; ERROR 42000: Table 't' uses an extension that doesn't exist in this XYZ version -update noar t set x=-x where id=1; +update t set x = -x where id = 1; ERROR 42000: Table 't' uses an extension that doesn't exist in this XYZ version -update noar t set x=x+1 where id=100; +update t set x = x + 1 where id = 100; select * from t; id x 1 0 2 100 3 0 -update noar t set x=x+1 where 1 <= id and id < 100; +update t set x = x + 1 where 1 <= id and id < 100; ERROR 42000: Table 't' uses an extension that doesn't exist in this XYZ version -update noar t set x=x+1; +update t set x = x + 1; ERROR 42000: Table 't' uses an extension that doesn't exist in this XYZ version drop table t; +### Test int for: int, unsigned, null create table t ( -id int unsigned null primary key, +id int unsigned primary key, x int unsigned null -); -insert into t values (1,0),(2,0),(3,0); +) engine = tokudb; +insert into t values (1,0), (2,0), (3,0); select * from t; id x 1 0 2 0 3 0 -set tokudb_disable_slow_update=1; -update noar t set x=100 where id=2; +update t set x = 100 where id = 2; select * from t; id x 1 0 2 100 3 0 -update noar t set x=x+1 where id=3; +update t set x = x + 1 where id = 3; select * from t; id x 1 0 2 100 3 1 -update noar t set x=x-1 where id=3; +update t set x = x - 1 where id = 3; select * from t; id x 1 0 2 100 3 0 -update noar t set x=x+100 where id=3; +update t set x = x + 100 where id = 3; select * from t; id x 1 0 2 100 3 100 -update noar t set x=x-100 where id=3; +update t set x = x - 100 where id = 3; select * from t; id x 1 0 2 100 3 0 -update noar t set x=1+x where id=1; +update t set x = 1 + x where id = 1; ERROR 42000: Table 't' uses an extension that doesn't exist in this XYZ version -update noar t set x=-x where id=1; +update t set x = -x where id = 1; ERROR 42000: Table 't' uses an extension that doesn't exist in this XYZ version -update noar t set x=x+1 where id=100; +update t set x = x + 1 where id = 100; select * from t; id x 1 0 2 100 3 0 -update noar t set x=x+1 where 1 <= id and id < 100; +update t set x = x + 1 where 1 <= id and id < 100; ERROR 42000: Table 't' uses an extension that doesn't exist in this XYZ version -update noar t set x=x+1; +update t set x = x + 1; ERROR 42000: Table 't' uses an extension that doesn't exist in this XYZ version drop table t; +### Test int for: int, unsigned, not null create table t ( -id int unsigned not null primary key, +id int unsigned primary key, x int unsigned not null -); -insert into t values (1,0),(2,0),(3,0); +) engine = tokudb; +insert into t values (1,0), (2,0), (3,0); select * from t; id x 1 0 2 0 3 0 -set tokudb_disable_slow_update=1; -update noar t set x=100 where id=2; +update t set x = 100 where id = 2; select * from t; id x 1 0 2 100 3 0 -update noar t set x=x+1 where id=3; +update t set x = x + 1 where id = 3; select * from t; id x 1 0 2 100 3 1 -update noar t set x=x-1 where id=3; +update t set x = x - 1 where id = 3; select * from t; id x 1 0 2 100 3 0 -update noar t set x=x+100 where id=3; +update t set x = x + 100 where id = 3; select * from t; id x 1 0 2 100 3 100 -update noar t set x=x-100 where id=3; +update t set x = x - 100 where id = 3; select * from t; id x 1 0 2 100 3 0 -update noar t set x=1+x where id=1; +update t set x = 1 + x where id = 1; ERROR 42000: Table 't' uses an extension that doesn't exist in this XYZ version -update noar t set x=-x where id=1; +update t set x = -x where id = 1; ERROR 42000: Table 't' uses an extension that doesn't exist in this XYZ version -update noar t set x=x+1 where id=100; +update t set x = x + 1 where id = 100; select * from t; id x 1 0 2 100 3 0 -update noar t set x=x+1 where 1 <= id and id < 100; +update t set x = x + 1 where 1 <= id and id < 100; ERROR 42000: Table 't' uses an extension that doesn't exist in this XYZ version -update noar t set x=x+1; +update t set x = x + 1; ERROR 42000: Table 't' uses an extension that doesn't exist in this XYZ version drop table t; +### Test int for: bigint, , null create table t ( -id bigint null primary key, +id bigint primary key, x bigint null -); -insert into t values (1,0),(2,0),(3,0); +) engine = tokudb; +insert into t values (1,0), (2,0), (3,0); select * from t; id x 1 0 2 0 3 0 -set tokudb_disable_slow_update=1; -update noar t set x=100 where id=2; +update t set x = 100 where id = 2; select * from t; id x 1 0 2 100 3 0 -update noar t set x=x+1 where id=3; +update t set x = x + 1 where id = 3; select * from t; id x 1 0 2 100 3 1 -update noar t set x=x-1 where id=3; +update t set x = x - 1 where id = 3; select * from t; id x 1 0 2 100 3 0 -update noar t set x=x+100 where id=3; +update t set x = x + 100 where id = 3; select * from t; id x 1 0 2 100 3 100 -update noar t set x=x-100 where id=3; +update t set x = x - 100 where id = 3; select * from t; id x 1 0 2 100 3 0 -update noar t set x=1+x where id=1; +update t set x = 1 + x where id = 1; ERROR 42000: Table 't' uses an extension that doesn't exist in this XYZ version -update noar t set x=-x where id=1; +update t set x = -x where id = 1; ERROR 42000: Table 't' uses an extension that doesn't exist in this XYZ version -update noar t set x=x+1 where id=100; +update t set x = x + 1 where id = 100; select * from t; id x 1 0 2 100 3 0 -update noar t set x=x+1 where 1 <= id and id < 100; +update t set x = x + 1 where 1 <= id and id < 100; ERROR 42000: Table 't' uses an extension that doesn't exist in this XYZ version -update noar t set x=x+1; +update t set x = x + 1; ERROR 42000: Table 't' uses an extension that doesn't exist in this XYZ version drop table t; +### Test int for: bigint, , not null create table t ( -id bigint not null primary key, +id bigint primary key, x bigint not null -); -insert into t values (1,0),(2,0),(3,0); +) engine = tokudb; +insert into t values (1,0), (2,0), (3,0); select * from t; id x 1 0 2 0 3 0 -set tokudb_disable_slow_update=1; -update noar t set x=100 where id=2; +update t set x = 100 where id = 2; select * from t; id x 1 0 2 100 3 0 -update noar t set x=x+1 where id=3; +update t set x = x + 1 where id = 3; select * from t; id x 1 0 2 100 3 1 -update noar t set x=x-1 where id=3; +update t set x = x - 1 where id = 3; select * from t; id x 1 0 2 100 3 0 -update noar t set x=x+100 where id=3; +update t set x = x + 100 where id = 3; select * from t; id x 1 0 2 100 3 100 -update noar t set x=x-100 where id=3; +update t set x = x - 100 where id = 3; select * from t; id x 1 0 2 100 3 0 -update noar t set x=1+x where id=1; +update t set x = 1 + x where id = 1; ERROR 42000: Table 't' uses an extension that doesn't exist in this XYZ version -update noar t set x=-x where id=1; +update t set x = -x where id = 1; ERROR 42000: Table 't' uses an extension that doesn't exist in this XYZ version -update noar t set x=x+1 where id=100; +update t set x = x + 1 where id = 100; select * from t; id x 1 0 2 100 3 0 -update noar t set x=x+1 where 1 <= id and id < 100; +update t set x = x + 1 where 1 <= id and id < 100; ERROR 42000: Table 't' uses an extension that doesn't exist in this XYZ version -update noar t set x=x+1; +update t set x = x + 1; ERROR 42000: Table 't' uses an extension that doesn't exist in this XYZ version drop table t; +### Test int for: bigint, unsigned, null create table t ( -id bigint unsigned null primary key, +id bigint unsigned primary key, x bigint unsigned null -); -insert into t values (1,0),(2,0),(3,0); +) engine = tokudb; +insert into t values (1,0), (2,0), (3,0); select * from t; id x 1 0 2 0 3 0 -set tokudb_disable_slow_update=1; -update noar t set x=100 where id=2; +update t set x = 100 where id = 2; select * from t; id x 1 0 2 100 3 0 -update noar t set x=x+1 where id=3; +update t set x = x + 1 where id = 3; select * from t; id x 1 0 2 100 3 1 -update noar t set x=x-1 where id=3; +update t set x = x - 1 where id = 3; select * from t; id x 1 0 2 100 3 0 -update noar t set x=x+100 where id=3; +update t set x = x + 100 where id = 3; select * from t; id x 1 0 2 100 3 100 -update noar t set x=x-100 where id=3; +update t set x = x - 100 where id = 3; select * from t; id x 1 0 2 100 3 0 -update noar t set x=1+x where id=1; +update t set x = 1 + x where id = 1; ERROR 42000: Table 't' uses an extension that doesn't exist in this XYZ version -update noar t set x=-x where id=1; +update t set x = -x where id = 1; ERROR 42000: Table 't' uses an extension that doesn't exist in this XYZ version -update noar t set x=x+1 where id=100; +update t set x = x + 1 where id = 100; select * from t; id x 1 0 2 100 3 0 -update noar t set x=x+1 where 1 <= id and id < 100; +update t set x = x + 1 where 1 <= id and id < 100; ERROR 42000: Table 't' uses an extension that doesn't exist in this XYZ version -update noar t set x=x+1; +update t set x = x + 1; ERROR 42000: Table 't' uses an extension that doesn't exist in this XYZ version drop table t; +### Test int for: bigint, unsigned, not null create table t ( -id bigint unsigned not null primary key, +id bigint unsigned primary key, x bigint unsigned not null -); -insert into t values (1,0),(2,0),(3,0); +) engine = tokudb; +insert into t values (1,0), (2,0), (3,0); select * from t; id x 1 0 2 0 3 0 -set tokudb_disable_slow_update=1; -update noar t set x=100 where id=2; +update t set x = 100 where id = 2; select * from t; id x 1 0 2 100 3 0 -update noar t set x=x+1 where id=3; +update t set x = x + 1 where id = 3; select * from t; id x 1 0 2 100 3 1 -update noar t set x=x-1 where id=3; +update t set x = x - 1 where id = 3; select * from t; id x 1 0 2 100 3 0 -update noar t set x=x+100 where id=3; +update t set x = x + 100 where id = 3; select * from t; id x 1 0 2 100 3 100 -update noar t set x=x-100 where id=3; +update t set x = x - 100 where id = 3; select * from t; id x 1 0 2 100 3 0 -update noar t set x=1+x where id=1; +update t set x = 1 + x where id = 1; ERROR 42000: Table 't' uses an extension that doesn't exist in this XYZ version -update noar t set x=-x where id=1; +update t set x = -x where id = 1; ERROR 42000: Table 't' uses an extension that doesn't exist in this XYZ version -update noar t set x=x+1 where id=100; +update t set x = x + 1 where id = 100; select * from t; id x 1 0 2 100 3 0 -update noar t set x=x+1 where 1 <= id and id < 100; +update t set x = x + 1 where 1 <= id and id < 100; ERROR 42000: Table 't' uses an extension that doesn't exist in this XYZ version -update noar t set x=x+1; +update t set x = x + 1; ERROR 42000: Table 't' uses an extension that doesn't exist in this XYZ version drop table t; diff --git a/storage/tokudb/mysql-test/tokudb/r/fast_update_int_bounds.result b/storage/tokudb/mysql-test/tokudb/r/fast_update_int_bounds.result index 042cbcf0f70..12263b436f9 100644 --- a/storage/tokudb/mysql-test/tokudb/r/fast_update_int_bounds.result +++ b/storage/tokudb/mysql-test/tokudb/r/fast_update_int_bounds.result @@ -1,61 +1,61 @@ -set default_storage_engine='tokudb'; -drop table if exists t; -create table tt (id int primary key, x int); +create table tt (id int primary key, x int) engine = tokudb; insert into tt values (1,0),(2,-pow(2,31)),(3,pow(2,31)-1); create table ti like tt; alter table ti engine=innodb; insert into ti select * from tt; -set tokudb_disable_slow_update=1; -update noar tt set x=x+1 where id=1; -update noar ti set x=x+1 where id=1; +set tokudb_enable_fast_update=1; +set session sql_mode=(select replace(@@sql_mode,'STRICT_TRANS_TABLES','')); +set session sql_mode=(select replace(@@sql_mode,'STRICT_ALL_TABLES','')); +update tt set x=x+1 where id=1; +update ti set x=x+1 where id=1; include/diff_tables.inc [test.tt, test.ti] -update noar tt set x=x-2 where id=1; -update noar ti set x=x-2 where id=1; +update tt set x=x-2 where id=1; +update ti set x=x-2 where id=1; include/diff_tables.inc [test.tt, test.ti] -update noar tt set x=x+1 where id=1; -update noar ti set x=x+1 where id=1; +update tt set x=x+1 where id=1; +update ti set x=x+1 where id=1; include/diff_tables.inc [test.tt, test.ti] -update noar tt set x=x-1 where id=2; -update noar ti set x=x-1 where id=2; +update tt set x=x-1 where id=2; +update ti set x=x-1 where id=2; Warnings: Warning 1264 Out of range value for column 'x' at row 1 include/diff_tables.inc [test.tt, test.ti] -update noar tt set x=x+1 where id=2; -update noar ti set x=x+1 where id=2; +update tt set x=x+1 where id=2; +update ti set x=x+1 where id=2; include/diff_tables.inc [test.tt, test.ti] -update noar tt set x=x+1 where id=3; -update noar ti set x=x+1 where id=3; +update tt set x=x+1 where id=3; +update ti set x=x+1 where id=3; Warnings: Warning 1264 Out of range value for column 'x' at row 1 include/diff_tables.inc [test.tt, test.ti] -update noar tt set x=x-1 where id=3; -update noar ti set x=x-1 where id=3; +update tt set x=x-1 where id=3; +update ti set x=x-1 where id=3; include/diff_tables.inc [test.tt, test.ti] insert into tt values (4,pow(2,31)-10); insert into ti values (4,pow(2,31)-10); -update noar tt set x=x+20 where id=4; -update noar ti set x=x+20 where id=4; +update tt set x=x+20 where id=4; +update ti set x=x+20 where id=4; Warnings: Warning 1264 Out of range value for column 'x' at row 1 include/diff_tables.inc [test.tt, test.ti] insert into tt values (5,pow(2,31)-10); insert into ti values (5,pow(2,31)-10); -update noar tt set x=x - -20 where id=5; -update noar ti set x=x - -20 where id=5; +update tt set x=x - -20 where id=5; +update ti set x=x - -20 where id=5; Warnings: Warning 1264 Out of range value for column 'x' at row 1 include/diff_tables.inc [test.tt, test.ti] insert into tt values (6,-pow(2,31)+10); insert into ti values (6,-pow(2,31)+10); -update noar tt set x=x-20 where id=6; -update noar ti set x=x-20 where id=6; +update tt set x=x-20 where id=6; +update ti set x=x-20 where id=6; Warnings: Warning 1264 Out of range value for column 'x' at row 1 include/diff_tables.inc [test.tt, test.ti] insert into tt values (7,-pow(2,31)+10); insert into ti values (7,-pow(2,31)+10); -update noar tt set x=x + -20 where id=7; -update noar ti set x=x + -20 where id=7; +update tt set x=x + -20 where id=7; +update ti set x=x + -20 where id=7; Warnings: Warning 1264 Out of range value for column 'x' at row 1 include/diff_tables.inc [test.tt, test.ti] diff --git a/storage/tokudb/mysql-test/tokudb/r/fast_update_key.result b/storage/tokudb/mysql-test/tokudb/r/fast_update_key.result index fd819add354..c6f14e18ee4 100644 --- a/storage/tokudb/mysql-test/tokudb/r/fast_update_key.result +++ b/storage/tokudb/mysql-test/tokudb/r/fast_update_key.result @@ -1,39 +1,55 @@ -set default_storage_engine='tokudb'; -drop table if exists t; -set tokudb_disable_slow_update=1; -create table t (ida int not null, idb bigint not null, idc tinyint unsigned not null, x bigint); -update noar t set x=x+1 where ida=1; +set tokudb_enable_fast_update=1; +set session sql_mode=(select replace(@@sql_mode,'STRICT_TRANS_TABLES','')); +set session sql_mode=(select replace(@@sql_mode,'STRICT_ALL_TABLES','')); +create table t (ida int not null, +idb bigint not null, +idc tinyint unsigned not null, +x bigint) engine = tokudb; +update t set x=x+1 where ida=1; ERROR 42000: Table 't' uses an extension that doesn't exist in this XYZ version drop table t; -create table t (ida int not null, idb bigint not null, idc tinyint unsigned not null, x bigint, clustering key(ida,idb,idc)); -update noar t set x=x+1 where ida=1; +create table t (ida int not null, +idb bigint not null, +idc tinyint unsigned not null, +x bigint, +clustering key(ida,idb,idc)) engine = tokudb; +update t set x=x+1 where ida=1; ERROR 42000: Table 't' uses an extension that doesn't exist in this XYZ version drop table t; -create table t (ida int not null, idb bigint not null, idc tinyint unsigned not null, x bigint, primary key(ida,idb,idc), key(x)); -update noar t set x=x+1 where ida=1; +create table t (ida int not null, +idb bigint not null, +idc tinyint unsigned not null, +x bigint, +primary key(ida,idb,idc), +key(x)) engine = tokudb; +update t set x=x+1 where ida=1; ERROR 42000: Table 't' uses an extension that doesn't exist in this XYZ version drop table t; -create table t (id char(32), x bigint, primary key(id(1))); -update noar t set x=x+1 where id='hi'; +create table t (id char(32), x bigint, primary key(id(1))) engine = tokudb; +update t set x=x+1 where id='hi'; ERROR 42000: Table 't' uses an extension that doesn't exist in this XYZ version drop table t; -create table t (id varchar(32), x bigint, primary key(id(1))); -update noar t set x=x+1 where id='hi'; +create table t (id varchar(32), x bigint, primary key(id(1))) engine = tokudb; +update t set x=x+1 where id='hi'; ERROR 42000: Table 't' uses an extension that doesn't exist in this XYZ version drop table t; -create table t (ida int not null, idb bigint not null, idc tinyint unsigned not null, x bigint, primary key(ida,idb,idc)); +create table t (ida int not null, +idb bigint not null, +idc tinyint unsigned not null, +x bigint, +primary key(ida,idb,idc)) engine = tokudb; insert into t values (1,2,3,0); -update noar t set x=x+1 where ida=1; +update t set x=x+1 where ida=1; ERROR 42000: Table 't' uses an extension that doesn't exist in this XYZ version -update noar t set x=x+1 where ida=1 and idb=2; +update t set x=x+1 where ida=1 and idb=2; ERROR 42000: Table 't' uses an extension that doesn't exist in this XYZ version -update noar t set x=x+1 where ida=1 and idb=2 or idc=3; +update t set x=x+1 where ida=1 and idb=2 or idc=3; ERROR 42000: Table 't' uses an extension that doesn't exist in this XYZ version -update noar t set x=x+1 where ida=1 and idb=2 and idc=3; +update t set x=x+1 where ida=1 and idb=2 and idc=3; select * from t; ida idb idc x 1 2 3 1 -update noar t set x=x+1 where idc=3 and ida=1 and idb=2; +update t set x=x+1 where idc=3 and ida=1 and idb=2; select * from t; ida idb idc x 1 2 3 2 diff --git a/storage/tokudb/mysql-test/tokudb/r/fast_update_sqlmode.result b/storage/tokudb/mysql-test/tokudb/r/fast_update_sqlmode.result index 262b242fbec..b92b3396928 100644 --- a/storage/tokudb/mysql-test/tokudb/r/fast_update_sqlmode.result +++ b/storage/tokudb/mysql-test/tokudb/r/fast_update_sqlmode.result @@ -1,17 +1,16 @@ -set default_storage_engine='tokudb'; -drop table if exists t; -set tokudb_disable_slow_update=1; -create table t (id int primary key, x int not null); +set tokudb_enable_fast_update=1; +set session sql_mode=(select replace(@@sql_mode,'STRICT_TRANS_TABLES','')); +set session sql_mode=(select replace(@@sql_mode,'STRICT_ALL_TABLES','')); +create table t (id int primary key, x int not null) engine = tokudb; insert into t values (1,0); -update noar t set x=42 where id=1; -update noar t set x=x+1 where id=1; -update noar t set x=x-1 where id=1; +update t set x=42 where id=1; +update t set x=x+1 where id=1; +update t set x=x-1 where id=1; set session sql_mode="NO_ENGINE_SUBSTITUTION,traditional"; -update noar t set x=42 where id=1; +update t set x=42 where id=1; ERROR 42000: Table 't' uses an extension that doesn't exist in this XYZ version -update noar t set x=x+1 where id=1; +update t set x=x+1 where id=1; ERROR 42000: Table 't' uses an extension that doesn't exist in this XYZ version -update noar t set x=x-1 where id=1; +update t set x=x-1 where id=1; ERROR 42000: Table 't' uses an extension that doesn't exist in this XYZ version -set session sql_mode="NO_ENGINE_SUBSTITUTION"; drop table t; diff --git a/storage/tokudb/mysql-test/tokudb/r/fast_update_uint_bounds.result b/storage/tokudb/mysql-test/tokudb/r/fast_update_uint_bounds.result index 0cf9089df5e..aa9ff2cbe33 100644 --- a/storage/tokudb/mysql-test/tokudb/r/fast_update_uint_bounds.result +++ b/storage/tokudb/mysql-test/tokudb/r/fast_update_uint_bounds.result @@ -1,36 +1,36 @@ -set default_storage_engine='tokudb'; -drop table if exists t; -create table tt (id int primary key, x int unsigned); +create table tt (id int primary key, x int unsigned) engine = tokudb; insert into tt values (1,0),(2,pow(2,32)-1); create table ti like tt; alter table ti engine=innodb; insert into ti select * from tt; -set tokudb_disable_slow_update=1; -update noar tt set x=x+1 where id=1; -update noar ti set x=x+1 where id=1; +set tokudb_enable_fast_update=1; +set session sql_mode=(select replace(@@sql_mode,'STRICT_TRANS_TABLES','')); +set session sql_mode=(select replace(@@sql_mode,'STRICT_ALL_TABLES','')); +update tt set x=x+1 where id=1; +update ti set x=x+1 where id=1; include/diff_tables.inc [test.tt, test.ti] -update noar tt set x=x-2 where id=1; -update noar ti set x=if(x<2,0,x-2) where id=1; +update tt set x=x-2 where id=1; +update ti set x=if(x<2,0,x-2) where id=1; include/diff_tables.inc [test.tt, test.ti] -update noar tt set x=x+1 where id=1; -update noar ti set x=x+1 where id=1; +update tt set x=x+1 where id=1; +update ti set x=x+1 where id=1; include/diff_tables.inc [test.tt, test.ti] -update noar tt set x=x-1 where id=2; -update noar ti set x=x-1 where id=2; +update tt set x=x-1 where id=2; +update ti set x=x-1 where id=2; include/diff_tables.inc [test.tt, test.ti] -update noar tt set x=x+1 where id=2; -update noar ti set x=x+1 where id=2; +update tt set x=x+1 where id=2; +update ti set x=x+1 where id=2; include/diff_tables.inc [test.tt, test.ti] insert into tt values (4,pow(2,32)-10); insert into ti values (4,pow(2,32)-10); -update noar tt set x=x+20 where id=4; -update noar ti set x=x+20 where id=4; +update tt set x=x+20 where id=4; +update ti set x=x+20 where id=4; Warnings: Warning 1264 Out of range value for column 'x' at row 1 include/diff_tables.inc [test.tt, test.ti] insert into tt values (5,10); insert into ti values (5,10); -update noar tt set x=x-20 where id=5; -update noar ti set x=if(x<20,0,x-20) where id=5; +update tt set x=x-20 where id=5; +update ti set x=if(x<20,0,x-20) where id=5; include/diff_tables.inc [test.tt, test.ti] drop table tt, ti; diff --git a/storage/tokudb/mysql-test/tokudb/r/fast_update_varchar.result b/storage/tokudb/mysql-test/tokudb/r/fast_update_varchar.result index f12e4121264..4a963777fc0 100644 --- a/storage/tokudb/mysql-test/tokudb/r/fast_update_varchar.result +++ b/storage/tokudb/mysql-test/tokudb/r/fast_update_varchar.result @@ -1,13574 +1 @@ -set default_storage_engine='tokudb'; -drop table if exists t; -create table tt (id bigint unsigned primary key, -f0 int null, -v0 varchar(32) null, -v1 varchar(32) null, -v2 varchar(32) null, -v3 varchar(32) null, -b0 text null -) engine=tokudb; -insert into tt (id) values (0); -insert into tt values (1,2,'a','b','c','d','e'); -insert into tt values (2,3,'','','','',''); -insert into tt values (3,4,'','','','',''); -insert into tt values (4,5,'','','','',''); -insert into tt values (5,6,'','','','',''); -insert into tt values (6,7,'','','','',''); -insert into tt values (7,8,'','','','',''); -insert into tt values (8,9,'','','','',''); -insert into tt values (9,10,'','','','',''); -insert into tt values (10,11,'','','','',''); -insert into tt values (11,12,'','','','',''); -insert into tt values (12,13,'','','','',''); -insert into tt values (13,14,'','','','',''); -insert into tt values (14,15,'','','','',''); -insert into tt values (15,16,'','','','',''); -insert into tt values (16,17,'','','','',''); -insert into tt values (17,18,'','','','',''); -insert into tt values (18,19,'','','','',''); -insert into tt values (19,20,'','','','',''); -insert into tt values (20,21,'','','','',''); -insert into tt values (21,22,'','','','',''); -insert into tt values (22,23,'','','','',''); -insert into tt values (23,24,'','','','',''); -insert into tt values (24,25,'','','','',''); -insert into tt values (25,26,'','','','',''); -insert into tt values (26,27,'','','','',''); -insert into tt values (27,28,'','','','',''); -insert into tt values (28,29,'','','','',''); -insert into tt values (29,30,'','','','',''); -insert into tt values (30,31,'','','','',''); -insert into tt values (31,32,'','','','',''); -insert into tt values (32,33,'','','','',''); -insert into tt values (33,34,'','','','',''); -insert into tt values (34,35,'','','','',''); -insert into tt values (35,36,'','','','',''); -insert into tt values (36,37,'','','','',''); -insert into tt values (37,38,'','','','',''); -insert into tt values (38,39,'','','','',''); -insert into tt values (39,40,'','','','',''); -insert into tt values (40,41,'','','','',''); -insert into tt values (41,42,'','','','',''); -insert into tt values (42,43,'','','','',''); -insert into tt values (43,44,'','','','',''); -insert into tt values (44,45,'','','','',''); -insert into tt values (45,46,'','','','',''); -insert into tt values (46,47,'','','','',''); -insert into tt values (47,48,'','','','',''); -insert into tt values (48,49,'','','','',''); -insert into tt values (49,50,'','','','',''); -insert into tt values (50,51,'','','','',''); -insert into tt values (51,52,'','','','',''); -insert into tt values (52,53,'','','','',''); -insert into tt values (53,54,'','','','',''); -insert into tt values (54,55,'','','','',''); -insert into tt values (55,56,'','','','',''); -insert into tt values (56,57,'','','','',''); -insert into tt values (57,58,'','','','',''); -insert into tt values (58,59,'','','','',''); -insert into tt values (59,60,'','','','',''); -insert into tt values (60,61,'','','','',''); -insert into tt values (61,62,'','','','',''); -insert into tt values (62,63,'','','','',''); -insert into tt values (63,64,'','','','',''); -insert into tt values (64,65,'','','','',''); -insert into tt values (65,66,'','','','',''); -insert into tt values (66,67,'','','','',''); -insert into tt values (67,68,'','','','',''); -insert into tt values (68,69,'','','','',''); -insert into tt values (69,70,'','','','',''); -insert into tt values (70,71,'','','','',''); -insert into tt values (71,72,'','','','',''); -insert into tt values (72,73,'','','','',''); -insert into tt values (73,74,'','','','',''); -insert into tt values (74,75,'','','','',''); -insert into tt values (75,76,'','','','',''); -insert into tt values (76,77,'','','','',''); -insert into tt values (77,78,'','','','',''); -insert into tt values (78,79,'','','','',''); -insert into tt values (79,80,'','','','',''); -insert into tt values (80,81,'','','','',''); -insert into tt values (81,82,'','','','',''); -insert into tt values (82,83,'','','','',''); -insert into tt values (83,84,'','','','',''); -insert into tt values (84,85,'','','','',''); -insert into tt values (85,86,'','','','',''); -insert into tt values (86,87,'','','','',''); -insert into tt values (87,88,'','','','',''); -insert into tt values (88,89,'','','','',''); -insert into tt values (89,90,'','','','',''); -insert into tt values (90,91,'','','','',''); -insert into tt values (91,92,'','','','',''); -insert into tt values (92,93,'','','','',''); -insert into tt values (93,94,'','','','',''); -insert into tt values (94,95,'','','','',''); -insert into tt values (95,96,'','','','',''); -insert into tt values (96,97,'','','','',''); -insert into tt values (97,98,'','','','',''); -insert into tt values (98,99,'','','','',''); -insert into tt values (99,100,'','','','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='null this 0' where id=0; -update noar ti set v0='null this 0' where id=0; -update noar tt set v1='null is 1' where id=0; -update noar ti set v1='null is 1' where id=0; -update noar tt set v2='null a 2' where id=0; -update noar ti set v2='null a 2' where id=0; -update noar tt set v3='null test 3' where id=0; -update noar ti set v3='null test 3' where id=0; -update noar tt set v0='this 0' where id=1; -update noar ti set v0='this 0' where id=1; -update noar tt set v1='is 1' where id=1; -update noar ti set v1='is 1' where id=1; -update noar tt set v2='another 2' where id=1; -update noar ti set v2='another 2' where id=1; -update noar tt set v3='test 3' where id=1; -update noar ti set v3='test 3' where id=1; -update noar tt set v0='C6P5MJKRJ430AM9T012TSRGW76CFGSHQL' where id=2; -update noar ti set v0='C6P5MJKRJ430AM9T012TSRGW76CFGSHQL' where id=2; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='FQ3TW0TRJWER0OSIO33UTIFSBT7PTGO9A' where id=2; -update noar ti set v1='FQ3TW0TRJWER0OSIO33UTIFSBT7PTGO9A' where id=2; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='XAXU3S3K4PYXB4IB4HH5ANUUOGC1KD3JX' where id=2; -update noar ti set v2='XAXU3S3K4PYXB4IB4HH5ANUUOGC1KD3JX' where id=2; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='879I2MV65FUY0WFCFS09C74IN1VAISIEG' where id=2; -update noar ti set v3='879I2MV65FUY0WFCFS09C74IN1VAISIEG' where id=2; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='QAPUD5QIQINRVEPEYVDYJ6N9UI0GFZHRV' where id=3; -update noar ti set v0='QAPUD5QIQINRVEPEYVDYJ6N9UI0GFZHRV' where id=3; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='M6ME86RQIYBCUDNTD125MIV92IT6CKU15' where id=3; -update noar ti set v1='M6ME86RQIYBCUDNTD125MIV92IT6CKU15' where id=3; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='KSZGNMKS7PTH611GW21K59DD2R7KY4JAO' where id=3; -update noar ti set v2='KSZGNMKS7PTH611GW21K59DD2R7KY4JAO' where id=3; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='OSZTEY9AS1ZSXGBMVQ13ST2RB5UX4G7O2' where id=3; -update noar ti set v3='OSZTEY9AS1ZSXGBMVQ13ST2RB5UX4G7O2' where id=3; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='C67XB2ZDJCMF7MATMIZ7UKCOCXM6LX4IB' where id=4; -update noar ti set v0='C67XB2ZDJCMF7MATMIZ7UKCOCXM6LX4IB' where id=4; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='S0LRECBVNG2PF4USXXGK5HQBXNMGR0PV6' where id=4; -update noar ti set v1='S0LRECBVNG2PF4USXXGK5HQBXNMGR0PV6' where id=4; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='MYYF7M19VXCDAZYIZ0WLCDHPAA5D33BS1' where id=4; -update noar ti set v2='MYYF7M19VXCDAZYIZ0WLCDHPAA5D33BS1' where id=4; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='4KJDY3HCYE207SAY3ULNRAWO9E0ST1DBJ' where id=4; -update noar ti set v3='4KJDY3HCYE207SAY3ULNRAWO9E0ST1DBJ' where id=4; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='ZEHYFMX8YWZ0OQRFIWDF06KZSZRTWITWJ' where id=5; -update noar ti set v0='ZEHYFMX8YWZ0OQRFIWDF06KZSZRTWITWJ' where id=5; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='VB77NEBRKD15EYCTJMD5VFKUV82J77U0V' where id=5; -update noar ti set v1='VB77NEBRKD15EYCTJMD5VFKUV82J77U0V' where id=5; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='SPES6400D3NGGXUOR58GB4L6HVDUSXC8P' where id=5; -update noar ti set v2='SPES6400D3NGGXUOR58GB4L6HVDUSXC8P' where id=5; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='O8DK85ADX9I2AXO33NRKUXM4H70IQDVKR' where id=5; -update noar ti set v3='O8DK85ADX9I2AXO33NRKUXM4H70IQDVKR' where id=5; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='XG699LK06ZH0GP0MY8P2XM1W8IC31RY6M' where id=6; -update noar ti set v0='XG699LK06ZH0GP0MY8P2XM1W8IC31RY6M' where id=6; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='RR0ZPFCBNNDDO66XALOIV0M2WC2RFPWBS' where id=6; -update noar ti set v1='RR0ZPFCBNNDDO66XALOIV0M2WC2RFPWBS' where id=6; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='Z2MCQCRYBBGIAS7KKIR27SL3UBTF3KQ03' where id=6; -update noar ti set v2='Z2MCQCRYBBGIAS7KKIR27SL3UBTF3KQ03' where id=6; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='WYLCHBCNJA7T0IWFKTBZ5UBBOEUE3U9SU' where id=6; -update noar ti set v3='WYLCHBCNJA7T0IWFKTBZ5UBBOEUE3U9SU' where id=6; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='FNTPDPCBPGIND8BEXG3IFATRTOR880BQP' where id=7; -update noar ti set v0='FNTPDPCBPGIND8BEXG3IFATRTOR880BQP' where id=7; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='Y3FUDUS2RG0YODAEUX24KMI7STMMTVZWI' where id=7; -update noar ti set v1='Y3FUDUS2RG0YODAEUX24KMI7STMMTVZWI' where id=7; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='EUFYQFY3UIUWXAI2MZUSAYWINYCMPTRGZ' where id=7; -update noar ti set v2='EUFYQFY3UIUWXAI2MZUSAYWINYCMPTRGZ' where id=7; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='0VKBUX3MRYOE43HZ8G5U0MDOLG7SSXNNN' where id=7; -update noar ti set v3='0VKBUX3MRYOE43HZ8G5U0MDOLG7SSXNNN' where id=7; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='IE1Z9DPV3DFMCSETQ264T61V783D676YN' where id=8; -update noar ti set v0='IE1Z9DPV3DFMCSETQ264T61V783D676YN' where id=8; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='4ZEW2NAEC433N7TBWAI4GQWJ7LK5Q4RZ4' where id=8; -update noar ti set v1='4ZEW2NAEC433N7TBWAI4GQWJ7LK5Q4RZ4' where id=8; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='1AKQ41LJFMF1OOQMZO7QPL2ZVZYPU21DO' where id=8; -update noar ti set v2='1AKQ41LJFMF1OOQMZO7QPL2ZVZYPU21DO' where id=8; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='H8IXFC4QIDAWFHF8WUFUBPAMPKP59A4GE' where id=8; -update noar ti set v3='H8IXFC4QIDAWFHF8WUFUBPAMPKP59A4GE' where id=8; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='X52UNAQHTIRRLCHDP5UXFU6T1W92U00QM' where id=9; -update noar ti set v0='X52UNAQHTIRRLCHDP5UXFU6T1W92U00QM' where id=9; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='BMMKIH7Q87O155JXO8U6DNZX14JK7PV4Q' where id=9; -update noar ti set v1='BMMKIH7Q87O155JXO8U6DNZX14JK7PV4Q' where id=9; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='KU8TVA6SW62YC74DGYSYSDUKWQDF0AS93' where id=9; -update noar ti set v2='KU8TVA6SW62YC74DGYSYSDUKWQDF0AS93' where id=9; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='X2SX9JJP3STQ275JROOJ7PH47L1QCANI1' where id=9; -update noar ti set v3='X2SX9JJP3STQ275JROOJ7PH47L1QCANI1' where id=9; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='ETF1T11GAD3PQ1P6MNIYKOCOASRR935DN' where id=10; -update noar ti set v0='ETF1T11GAD3PQ1P6MNIYKOCOASRR935DN' where id=10; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='JAY008V1UNCFN77B872P7VBW06IM8ZULL' where id=10; -update noar ti set v1='JAY008V1UNCFN77B872P7VBW06IM8ZULL' where id=10; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='QK8M39DNPHE6PMIAUW8XP45NXJQICY8FX' where id=10; -update noar ti set v2='QK8M39DNPHE6PMIAUW8XP45NXJQICY8FX' where id=10; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='NJH9VF4CGS75EELNRM6DM8BOASPQOJ1YF' where id=10; -update noar ti set v3='NJH9VF4CGS75EELNRM6DM8BOASPQOJ1YF' where id=10; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='YPHFJEX1D9EP9OJKD711P1HDWC218HYDQ' where id=11; -update noar ti set v0='YPHFJEX1D9EP9OJKD711P1HDWC218HYDQ' where id=11; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='1C59XHWYXDJ0CH93KBID1H0FLLZW6OV4Q' where id=11; -update noar ti set v1='1C59XHWYXDJ0CH93KBID1H0FLLZW6OV4Q' where id=11; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='KCC2KKBFWCZ0TEQYF37CHNIU28PDH4G4B' where id=11; -update noar ti set v2='KCC2KKBFWCZ0TEQYF37CHNIU28PDH4G4B' where id=11; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='E9DRCXC8PRS1577KJJ0MUKCSCIQ5ULM8L' where id=11; -update noar ti set v3='E9DRCXC8PRS1577KJJ0MUKCSCIQ5ULM8L' where id=11; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='CAY0BJBX055RDS035VBFOAJYR1HV48F6L' where id=12; -update noar ti set v0='CAY0BJBX055RDS035VBFOAJYR1HV48F6L' where id=12; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='2E8R0YCLEB4KSSXAZ52SJT5Z7RHZPFUZ2' where id=12; -update noar ti set v1='2E8R0YCLEB4KSSXAZ52SJT5Z7RHZPFUZ2' where id=12; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='J7M9UEU8HY09D3P14DAZRYK48QDEEF2XU' where id=12; -update noar ti set v2='J7M9UEU8HY09D3P14DAZRYK48QDEEF2XU' where id=12; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='1FLHE73K0AJSAXRHNV18N1PIV8SSXZ4LT' where id=12; -update noar ti set v3='1FLHE73K0AJSAXRHNV18N1PIV8SSXZ4LT' where id=12; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='Z5S4BCN44TJCY6TXJN1I9NF8P2SUCD43A' where id=13; -update noar ti set v0='Z5S4BCN44TJCY6TXJN1I9NF8P2SUCD43A' where id=13; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='PGIKAGQ4A8JJDWW5W5NGXKEHG85ZXFQIZ' where id=13; -update noar ti set v1='PGIKAGQ4A8JJDWW5W5NGXKEHG85ZXFQIZ' where id=13; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='5GYNMV2KG45CU5PZ5DR7IAGOU2FXGGYRY' where id=13; -update noar ti set v2='5GYNMV2KG45CU5PZ5DR7IAGOU2FXGGYRY' where id=13; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='8YWN60PRVBV5P3XT39UK4WCZXIKNV3OMU' where id=13; -update noar ti set v3='8YWN60PRVBV5P3XT39UK4WCZXIKNV3OMU' where id=13; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='5PN29VPJJZC4X1RSDFY8CBF2LDDDU2CK3' where id=14; -update noar ti set v0='5PN29VPJJZC4X1RSDFY8CBF2LDDDU2CK3' where id=14; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='5SXHKMF44USM4OM0KUQSOAUDH74460FAO' where id=14; -update noar ti set v1='5SXHKMF44USM4OM0KUQSOAUDH74460FAO' where id=14; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='T37K7U6RHE7I8E16NBU06WAXWPQIIKRIT' where id=14; -update noar ti set v2='T37K7U6RHE7I8E16NBU06WAXWPQIIKRIT' where id=14; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='284CTENU9U8YL9B1OTG0Q8SXZZZ7M5I6U' where id=14; -update noar ti set v3='284CTENU9U8YL9B1OTG0Q8SXZZZ7M5I6U' where id=14; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='ETZNDEYEUZXLKM8HTLEBSEYP692A2WVEC' where id=15; -update noar ti set v0='ETZNDEYEUZXLKM8HTLEBSEYP692A2WVEC' where id=15; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='TOP0E92F9FWDEWEC4YPE80MH7DRSBUKIB' where id=15; -update noar ti set v1='TOP0E92F9FWDEWEC4YPE80MH7DRSBUKIB' where id=15; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='OYEI596E9HVPLAGZGBQYSFAWKZG41BCVM' where id=15; -update noar ti set v2='OYEI596E9HVPLAGZGBQYSFAWKZG41BCVM' where id=15; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='51HLJN8D2X7DIFFNY4IQBP48WODL1YG3E' where id=15; -update noar ti set v3='51HLJN8D2X7DIFFNY4IQBP48WODL1YG3E' where id=15; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='XONA19S58DXOWIKZUOIJNT8CWF3N4RVVM' where id=16; -update noar ti set v0='XONA19S58DXOWIKZUOIJNT8CWF3N4RVVM' where id=16; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='943ENEWA3RYCJRDUVOM2F8UKTR391IDL3' where id=16; -update noar ti set v1='943ENEWA3RYCJRDUVOM2F8UKTR391IDL3' where id=16; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='CB4MQIO2UXYFSCOSQACFE96L9W4LTH9UC' where id=16; -update noar ti set v2='CB4MQIO2UXYFSCOSQACFE96L9W4LTH9UC' where id=16; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='C3M7ZLL5KVPPD8YKEP7UTFN5O9BJAWRQY' where id=16; -update noar ti set v3='C3M7ZLL5KVPPD8YKEP7UTFN5O9BJAWRQY' where id=16; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='Q5SH1O4QPLTMXTL5Z6JHLNT0SVFBYOOXU' where id=17; -update noar ti set v0='Q5SH1O4QPLTMXTL5Z6JHLNT0SVFBYOOXU' where id=17; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='52FCXSRGM2N12OI10IYNRUGLVV1AUMTE7' where id=17; -update noar ti set v1='52FCXSRGM2N12OI10IYNRUGLVV1AUMTE7' where id=17; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='GYHFZZROG27CYF5ERW711U8EQ9FDS6H2T' where id=17; -update noar ti set v2='GYHFZZROG27CYF5ERW711U8EQ9FDS6H2T' where id=17; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='B2M72KUXJLTTCJ1RC47E2QNOAMH5BMX7K' where id=17; -update noar ti set v3='B2M72KUXJLTTCJ1RC47E2QNOAMH5BMX7K' where id=17; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='NAJYNURN3M8WTQI61PDF4JWAPVT6PLRGH' where id=18; -update noar ti set v0='NAJYNURN3M8WTQI61PDF4JWAPVT6PLRGH' where id=18; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='4IJQ7MVQPR795Z9IQXVHR0HMTTRN7KTES' where id=18; -update noar ti set v1='4IJQ7MVQPR795Z9IQXVHR0HMTTRN7KTES' where id=18; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='E2ZS9OQGKIRZ4V4TH1Y89HTIN4OMC2XRW' where id=18; -update noar ti set v2='E2ZS9OQGKIRZ4V4TH1Y89HTIN4OMC2XRW' where id=18; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='FL672KMTP7X2LQ2Z3X0V3JQY61XZT1LV4' where id=18; -update noar ti set v3='FL672KMTP7X2LQ2Z3X0V3JQY61XZT1LV4' where id=18; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='91MVJ862UD5B8CALA6XIPUERX6M0EZI9U' where id=19; -update noar ti set v0='91MVJ862UD5B8CALA6XIPUERX6M0EZI9U' where id=19; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='3PMLFZZSY1ILDOPUEA9V9JL6CREQXZFLI' where id=19; -update noar ti set v1='3PMLFZZSY1ILDOPUEA9V9JL6CREQXZFLI' where id=19; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='GQ9TSV4W2FAPQVICDG8H5L1LWBKX7H2G8' where id=19; -update noar ti set v2='GQ9TSV4W2FAPQVICDG8H5L1LWBKX7H2G8' where id=19; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='KQQVF17YK17KYX2N6HHWBJ5CYX0BLC3TP' where id=19; -update noar ti set v3='KQQVF17YK17KYX2N6HHWBJ5CYX0BLC3TP' where id=19; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='BQ2C26F41R16F9IT6CHBS5SPWHX44U665' where id=20; -update noar ti set v0='BQ2C26F41R16F9IT6CHBS5SPWHX44U665' where id=20; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='BQLHGIX1QDX1FTDBELFBLKHMG4EGK3JUX' where id=20; -update noar ti set v1='BQLHGIX1QDX1FTDBELFBLKHMG4EGK3JUX' where id=20; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='8D8MWG0B0O5P3L4QHU7MAZ2FG7P1WXTDH' where id=20; -update noar ti set v2='8D8MWG0B0O5P3L4QHU7MAZ2FG7P1WXTDH' where id=20; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='A8BGZNDJPECVJXRC33OIZOMDMPPUXFMUR' where id=20; -update noar ti set v3='A8BGZNDJPECVJXRC33OIZOMDMPPUXFMUR' where id=20; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='P2ZCHS22PAQE5HP6TJ6GA9G6CYJDS8Y62' where id=21; -update noar ti set v0='P2ZCHS22PAQE5HP6TJ6GA9G6CYJDS8Y62' where id=21; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='HJ76W65BKZASJ0D5MVZOTT65E9JWCSQCG' where id=21; -update noar ti set v1='HJ76W65BKZASJ0D5MVZOTT65E9JWCSQCG' where id=21; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='HXN3H4N2716EPCF7SK5TJTCBMFHC1APFB' where id=21; -update noar ti set v2='HXN3H4N2716EPCF7SK5TJTCBMFHC1APFB' where id=21; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='MH0EOVWCAIQBG9Q6ASDCR5ADU3VVACATF' where id=21; -update noar ti set v3='MH0EOVWCAIQBG9Q6ASDCR5ADU3VVACATF' where id=21; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='107DEIHQ3GDC2NDS2Q07EDVFGWSO0J7SH' where id=22; -update noar ti set v0='107DEIHQ3GDC2NDS2Q07EDVFGWSO0J7SH' where id=22; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='FP7GFDM5MIX0U2QPXRRLNS5LF4I47TCNI' where id=22; -update noar ti set v1='FP7GFDM5MIX0U2QPXRRLNS5LF4I47TCNI' where id=22; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='IW8AA65FH5KWY484BCUEC2ZG2HWCLJ524' where id=22; -update noar ti set v2='IW8AA65FH5KWY484BCUEC2ZG2HWCLJ524' where id=22; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='J753JLU9JBWL0PTD9UM79MTK8MN7O57P5' where id=22; -update noar ti set v3='J753JLU9JBWL0PTD9UM79MTK8MN7O57P5' where id=22; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='9QF74QJJ49U6GQUVDCUFZ9C37H29KK1UY' where id=23; -update noar ti set v0='9QF74QJJ49U6GQUVDCUFZ9C37H29KK1UY' where id=23; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='IHA7PGIUNHGGWSXMW36C5WKYBF4K751AL' where id=23; -update noar ti set v1='IHA7PGIUNHGGWSXMW36C5WKYBF4K751AL' where id=23; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='YH1VL0ACEOES4HMPVH0WG2S9M0HX3FTWV' where id=23; -update noar ti set v2='YH1VL0ACEOES4HMPVH0WG2S9M0HX3FTWV' where id=23; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='XUCZC7D538MJST1GT6PVVHGZFYO64SW9O' where id=23; -update noar ti set v3='XUCZC7D538MJST1GT6PVVHGZFYO64SW9O' where id=23; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='8PH7LGKOHB54MDLK7RAPQTA9WFJ16TSJO' where id=24; -update noar ti set v0='8PH7LGKOHB54MDLK7RAPQTA9WFJ16TSJO' where id=24; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='BI1N1R8MP2R1Q9J8DICC5MXUCJREWV4SN' where id=24; -update noar ti set v1='BI1N1R8MP2R1Q9J8DICC5MXUCJREWV4SN' where id=24; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='JNDECEQE4UUXAOHS5QFG0922VTF09F674' where id=24; -update noar ti set v2='JNDECEQE4UUXAOHS5QFG0922VTF09F674' where id=24; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='N8H46WLI7LDXI6RKCXN559WMGERULO3KE' where id=24; -update noar ti set v3='N8H46WLI7LDXI6RKCXN559WMGERULO3KE' where id=24; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='0WI2SGQAPLGKEMTT89MJK3NQ1TRF57OR4' where id=25; -update noar ti set v0='0WI2SGQAPLGKEMTT89MJK3NQ1TRF57OR4' where id=25; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='VDNWTAZJI1RFJT3124UQYF8DYW5OGG0K3' where id=25; -update noar ti set v1='VDNWTAZJI1RFJT3124UQYF8DYW5OGG0K3' where id=25; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='VVWCC2BHB28RTN4QFLMPKGB6VIPQS9W3E' where id=25; -update noar ti set v2='VVWCC2BHB28RTN4QFLMPKGB6VIPQS9W3E' where id=25; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='6VN2LQ5BU505V7XXF1MSOJUDMPL8JOKYS' where id=25; -update noar ti set v3='6VN2LQ5BU505V7XXF1MSOJUDMPL8JOKYS' where id=25; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='WJQFASTDWGPKZU42IU4V5YFWY1VSDE3WJ' where id=26; -update noar ti set v0='WJQFASTDWGPKZU42IU4V5YFWY1VSDE3WJ' where id=26; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='OSDG1E7D6JY0THUCU9KCZQOCV0CWUDW68' where id=26; -update noar ti set v1='OSDG1E7D6JY0THUCU9KCZQOCV0CWUDW68' where id=26; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='10MB7PZUJQ05HXB7JM5PIH17N3UR9VGKQ' where id=26; -update noar ti set v2='10MB7PZUJQ05HXB7JM5PIH17N3UR9VGKQ' where id=26; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='FFZ23U1FOVCKI2WU8MCYHK5I6YDPRGQ7M' where id=26; -update noar ti set v3='FFZ23U1FOVCKI2WU8MCYHK5I6YDPRGQ7M' where id=26; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='XZF7INM5CEMFE64IPWUMNF4CF616KP96Y' where id=27; -update noar ti set v0='XZF7INM5CEMFE64IPWUMNF4CF616KP96Y' where id=27; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='5K5SQQUIXQ0J6G4NG2H073TLMUR4JBRHR' where id=27; -update noar ti set v1='5K5SQQUIXQ0J6G4NG2H073TLMUR4JBRHR' where id=27; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='4XIOGA6AU0ZE4RNRLGXMM174169A7FJ8O' where id=27; -update noar ti set v2='4XIOGA6AU0ZE4RNRLGXMM174169A7FJ8O' where id=27; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='OQJ9J76C3G1V8YC3I3LVRP15MCY8CFNC2' where id=27; -update noar ti set v3='OQJ9J76C3G1V8YC3I3LVRP15MCY8CFNC2' where id=27; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='GEJ9PDRMCVLOG03AR7GE2KUU06MDZTYER' where id=28; -update noar ti set v0='GEJ9PDRMCVLOG03AR7GE2KUU06MDZTYER' where id=28; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='1M7LYV783XMZEH73YCQ0GDPAZR3H33QNM' where id=28; -update noar ti set v1='1M7LYV783XMZEH73YCQ0GDPAZR3H33QNM' where id=28; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='5YTZ0UGTGHUR2E4L8NSR9YVY11S370HBA' where id=28; -update noar ti set v2='5YTZ0UGTGHUR2E4L8NSR9YVY11S370HBA' where id=28; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='0EB9NBJKQNDEJ2TSBPDBF6XE0WAETK7Y6' where id=28; -update noar ti set v3='0EB9NBJKQNDEJ2TSBPDBF6XE0WAETK7Y6' where id=28; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='SPRV1BGKMGD2G168A6NTPXRVUZAEB9TNL' where id=29; -update noar ti set v0='SPRV1BGKMGD2G168A6NTPXRVUZAEB9TNL' where id=29; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='07PHHJMEP9LIY6G7ISABOP3Y9DC2CEAGR' where id=29; -update noar ti set v1='07PHHJMEP9LIY6G7ISABOP3Y9DC2CEAGR' where id=29; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='GHSF6KNPA6KU20RRTU1KX5VF2V7ES6LBF' where id=29; -update noar ti set v2='GHSF6KNPA6KU20RRTU1KX5VF2V7ES6LBF' where id=29; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='DRMTKXYG6OHUUP0HMQ63YIQ1QVM0RHEU8' where id=29; -update noar ti set v3='DRMTKXYG6OHUUP0HMQ63YIQ1QVM0RHEU8' where id=29; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='8B98SDALI4I18REJFK4IWTM2PXCCUC55Z' where id=30; -update noar ti set v0='8B98SDALI4I18REJFK4IWTM2PXCCUC55Z' where id=30; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='82ZUIOLY0RXD9YOSCJ6TM50OBAXDIDR0B' where id=30; -update noar ti set v1='82ZUIOLY0RXD9YOSCJ6TM50OBAXDIDR0B' where id=30; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='EUS9RJRQ3H4F0C2G53U83SFS7I8UGMDFZ' where id=30; -update noar ti set v2='EUS9RJRQ3H4F0C2G53U83SFS7I8UGMDFZ' where id=30; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='A3G2TYACCQ7FLM83FHBQOWCVGOQIBEA34' where id=30; -update noar ti set v3='A3G2TYACCQ7FLM83FHBQOWCVGOQIBEA34' where id=30; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='URCNNZR6413MRLALGAAVA8TBYBSIJ8DFE' where id=31; -update noar ti set v0='URCNNZR6413MRLALGAAVA8TBYBSIJ8DFE' where id=31; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='QW6IRTPK76HZFID8EB4CFZSVW04E4MNJD' where id=31; -update noar ti set v1='QW6IRTPK76HZFID8EB4CFZSVW04E4MNJD' where id=31; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='Q09KRN14VAE8LU961P5DUEXFFF0UN5H0B' where id=31; -update noar ti set v2='Q09KRN14VAE8LU961P5DUEXFFF0UN5H0B' where id=31; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='Z3WJ30H2J28NATJVWOVJZSZQ15CRMR8IQ' where id=31; -update noar ti set v3='Z3WJ30H2J28NATJVWOVJZSZQ15CRMR8IQ' where id=31; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='18CAZA6MKOP3NY31ZJGX7JY1RD9H7MSB6' where id=32; -update noar ti set v0='18CAZA6MKOP3NY31ZJGX7JY1RD9H7MSB6' where id=32; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='FLY9WZ1FJ2074AA92R56673E5VNVKBZ0U' where id=32; -update noar ti set v1='FLY9WZ1FJ2074AA92R56673E5VNVKBZ0U' where id=32; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='YKJS5WNZ21VBZMTC1IK75DKJDH88NOIJC' where id=32; -update noar ti set v2='YKJS5WNZ21VBZMTC1IK75DKJDH88NOIJC' where id=32; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='Z0TBKW3I880W08Z5R82GGQV7LFF3N31G7' where id=32; -update noar ti set v3='Z0TBKW3I880W08Z5R82GGQV7LFF3N31G7' where id=32; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='K7B49HGXRR2UYZ7U1AHA7Q6RV76VE5EI5' where id=33; -update noar ti set v0='K7B49HGXRR2UYZ7U1AHA7Q6RV76VE5EI5' where id=33; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='G0COXPS7X6FJLIJQERQ3DFD13YWEBQWDG' where id=33; -update noar ti set v1='G0COXPS7X6FJLIJQERQ3DFD13YWEBQWDG' where id=33; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='5MD1ZS25BSXQQTILR08ZAM2AX47SJ67LJ' where id=33; -update noar ti set v2='5MD1ZS25BSXQQTILR08ZAM2AX47SJ67LJ' where id=33; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='P236IWTBHCTU9Z1SVB4SPZ7EU1Q6PQ7UG' where id=33; -update noar ti set v3='P236IWTBHCTU9Z1SVB4SPZ7EU1Q6PQ7UG' where id=33; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='KRVYBE4GVL382458JLRALHF1Z5LOXSG36' where id=34; -update noar ti set v0='KRVYBE4GVL382458JLRALHF1Z5LOXSG36' where id=34; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='5GKY08ZLHY2CK1TW4W9MH8JO5X3MMZ6UA' where id=34; -update noar ti set v1='5GKY08ZLHY2CK1TW4W9MH8JO5X3MMZ6UA' where id=34; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='ZFTESHXZWSGUE1PO05DJJ4NTHC4BXNTJM' where id=34; -update noar ti set v2='ZFTESHXZWSGUE1PO05DJJ4NTHC4BXNTJM' where id=34; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='5139ZWEPLT9R59F4Q9OWO9N2N7BOUNISC' where id=34; -update noar ti set v3='5139ZWEPLT9R59F4Q9OWO9N2N7BOUNISC' where id=34; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='2Y03O5MO2DWECZAH5ZPSU6JV7ZN5CFT8G' where id=35; -update noar ti set v0='2Y03O5MO2DWECZAH5ZPSU6JV7ZN5CFT8G' where id=35; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='FWUZZYUM3HPEIAMSOYPR9LVPTHPI9UAKB' where id=35; -update noar ti set v1='FWUZZYUM3HPEIAMSOYPR9LVPTHPI9UAKB' where id=35; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='8XKKEWLGB9YBVZS6MMFXOC0R0HYT72IRI' where id=35; -update noar ti set v2='8XKKEWLGB9YBVZS6MMFXOC0R0HYT72IRI' where id=35; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='Z53R1BXHRG9O8JY4CTYVX7V04G2YL12QR' where id=35; -update noar ti set v3='Z53R1BXHRG9O8JY4CTYVX7V04G2YL12QR' where id=35; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='OUV8RMH3A8GSSV58YWWQRK0Z9PRY83AAB' where id=36; -update noar ti set v0='OUV8RMH3A8GSSV58YWWQRK0Z9PRY83AAB' where id=36; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='NZUL5BS463AGH7WMFVTGD93X5QSXLDZUR' where id=36; -update noar ti set v1='NZUL5BS463AGH7WMFVTGD93X5QSXLDZUR' where id=36; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='RLMYSEWOA5T24CERMFHDPDQHB5BVG5X1O' where id=36; -update noar ti set v2='RLMYSEWOA5T24CERMFHDPDQHB5BVG5X1O' where id=36; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='1D5MBR0R2QSYZBXOVBK0V6CJ9WMWL32TT' where id=36; -update noar ti set v3='1D5MBR0R2QSYZBXOVBK0V6CJ9WMWL32TT' where id=36; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='KOSY5HJLZEZ0N03M22KDQAFAODJ09JWUG' where id=37; -update noar ti set v0='KOSY5HJLZEZ0N03M22KDQAFAODJ09JWUG' where id=37; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='7UIFAU5VQEKE49JYQ063Y77UGCVI77O8R' where id=37; -update noar ti set v1='7UIFAU5VQEKE49JYQ063Y77UGCVI77O8R' where id=37; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='GJDCD5PGW82BYOOETKYMBWGH9208OCWYY' where id=37; -update noar ti set v2='GJDCD5PGW82BYOOETKYMBWGH9208OCWYY' where id=37; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='MU0GRMGW78R93POY2YCXXRUN5BT15VSVC' where id=37; -update noar ti set v3='MU0GRMGW78R93POY2YCXXRUN5BT15VSVC' where id=37; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='SWVVSTD1XV3KFGV6EOJLF6GVGV19R6JVG' where id=38; -update noar ti set v0='SWVVSTD1XV3KFGV6EOJLF6GVGV19R6JVG' where id=38; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='Z5377X1FRJG6ZSHVFPJFABBY2NEKAA7LZ' where id=38; -update noar ti set v1='Z5377X1FRJG6ZSHVFPJFABBY2NEKAA7LZ' where id=38; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='QTG2C52LEYE4U9BUK52MMMMRJTWT3LWSM' where id=38; -update noar ti set v2='QTG2C52LEYE4U9BUK52MMMMRJTWT3LWSM' where id=38; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='9Q8C3QT414MF8ELA72ECGELEXLB17265A' where id=38; -update noar ti set v3='9Q8C3QT414MF8ELA72ECGELEXLB17265A' where id=38; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='229ERUNFC7UUA02YUVCXYFXN2BNFMVPXB' where id=39; -update noar ti set v0='229ERUNFC7UUA02YUVCXYFXN2BNFMVPXB' where id=39; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='Q4EPIZ79FXI1BWVRW29OITU2EB2UM6NH1' where id=39; -update noar ti set v1='Q4EPIZ79FXI1BWVRW29OITU2EB2UM6NH1' where id=39; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='N5E531AI6LAYDX9OYUHXVFIKQBUYCG3BN' where id=39; -update noar ti set v2='N5E531AI6LAYDX9OYUHXVFIKQBUYCG3BN' where id=39; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='V7LEWEU5DH4NHBJ9F2KS7OATJOM48A1QV' where id=39; -update noar ti set v3='V7LEWEU5DH4NHBJ9F2KS7OATJOM48A1QV' where id=39; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='2BO42FSK5BN8K0C84LYRJSOCSOQYGUKE6' where id=40; -update noar ti set v0='2BO42FSK5BN8K0C84LYRJSOCSOQYGUKE6' where id=40; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='DBQ3SK9METFRULPA9JR3J2HENT7VBLCV8' where id=40; -update noar ti set v1='DBQ3SK9METFRULPA9JR3J2HENT7VBLCV8' where id=40; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='OHKT0HS2AJKRETD80BJBF891IKNHGTULE' where id=40; -update noar ti set v2='OHKT0HS2AJKRETD80BJBF891IKNHGTULE' where id=40; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='2CO8NXQIFWKAL4Y1G2F4H0SBG43H5D987' where id=40; -update noar ti set v3='2CO8NXQIFWKAL4Y1G2F4H0SBG43H5D987' where id=40; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='T06FV780MYOO8M5MBIN0AQ4E04LTVEE34' where id=41; -update noar ti set v0='T06FV780MYOO8M5MBIN0AQ4E04LTVEE34' where id=41; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='ST4VM9I20H6M5G8MN1VBM3SD3GE8LTL5Q' where id=41; -update noar ti set v1='ST4VM9I20H6M5G8MN1VBM3SD3GE8LTL5Q' where id=41; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='Y1QH92Q281DGR9OCMQEE0TG8IQMR7E55Q' where id=41; -update noar ti set v2='Y1QH92Q281DGR9OCMQEE0TG8IQMR7E55Q' where id=41; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='7MLHS7VHC7XZ2UE5C5J1ITNQ3HTKMT0M4' where id=41; -update noar ti set v3='7MLHS7VHC7XZ2UE5C5J1ITNQ3HTKMT0M4' where id=41; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='EUES4TNVQUHST6XYUKUNZRYDE00H9E3ET' where id=42; -update noar ti set v0='EUES4TNVQUHST6XYUKUNZRYDE00H9E3ET' where id=42; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='YRHWRPMBBHD144YCNXFT1PQIV5IJGCC86' where id=42; -update noar ti set v1='YRHWRPMBBHD144YCNXFT1PQIV5IJGCC86' where id=42; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='9M765V1YX537R8I03AO706NCMA99KCLE7' where id=42; -update noar ti set v2='9M765V1YX537R8I03AO706NCMA99KCLE7' where id=42; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='6W0ESIUQKA1KJWXE1SAEUSOO1UDPA32IP' where id=42; -update noar ti set v3='6W0ESIUQKA1KJWXE1SAEUSOO1UDPA32IP' where id=42; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='GHO01XGSMT12P8K8YUWW4822F2TB2A1WY' where id=43; -update noar ti set v0='GHO01XGSMT12P8K8YUWW4822F2TB2A1WY' where id=43; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='DMGU1UMBGB9NN4EOIC0J55TW9X5MXD54M' where id=43; -update noar ti set v1='DMGU1UMBGB9NN4EOIC0J55TW9X5MXD54M' where id=43; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='PPUGMRL5JQPIZ4OU5T3BNWO2UU01M5ZTD' where id=43; -update noar ti set v2='PPUGMRL5JQPIZ4OU5T3BNWO2UU01M5ZTD' where id=43; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='DR3UTBMFJKPHCGUDHRQAAWVC1YL24BMMN' where id=43; -update noar ti set v3='DR3UTBMFJKPHCGUDHRQAAWVC1YL24BMMN' where id=43; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='MQBQQJTIUOMW2EF464QUDTPPNX533YJZR' where id=44; -update noar ti set v0='MQBQQJTIUOMW2EF464QUDTPPNX533YJZR' where id=44; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='J53YVRKD7KWR60599IXY4M9K67GV9NLPH' where id=44; -update noar ti set v1='J53YVRKD7KWR60599IXY4M9K67GV9NLPH' where id=44; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='30SOHZPPZIKPY52Y3IK0AGZWLWWPGA7DR' where id=44; -update noar ti set v2='30SOHZPPZIKPY52Y3IK0AGZWLWWPGA7DR' where id=44; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='WJUQXAOQQ87OKE6KQ5P33Z33K00POIMV1' where id=44; -update noar ti set v3='WJUQXAOQQ87OKE6KQ5P33Z33K00POIMV1' where id=44; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='H9L307FD360CBDLITL0176G6ETWRG9RN3' where id=45; -update noar ti set v0='H9L307FD360CBDLITL0176G6ETWRG9RN3' where id=45; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='PAH82M79MPSSQCUUNOXFRXATRZ7SC0BAB' where id=45; -update noar ti set v1='PAH82M79MPSSQCUUNOXFRXATRZ7SC0BAB' where id=45; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='97I78JVD1MVPLZPZALUZNPANWFMWBHTF1' where id=45; -update noar ti set v2='97I78JVD1MVPLZPZALUZNPANWFMWBHTF1' where id=45; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='TXUJEWCI2MD8JMXWXRA7YFYVOXP2QTKOA' where id=45; -update noar ti set v3='TXUJEWCI2MD8JMXWXRA7YFYVOXP2QTKOA' where id=45; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='BG1RKJ1VBUB22VGT7L45ZYJDQ6TGZ7500' where id=46; -update noar ti set v0='BG1RKJ1VBUB22VGT7L45ZYJDQ6TGZ7500' where id=46; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='TVR985R8I8H14C1XKJL3DFJ7WFCKJG7IY' where id=46; -update noar ti set v1='TVR985R8I8H14C1XKJL3DFJ7WFCKJG7IY' where id=46; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='PQFIXIEDB7XVWRDYHCQCYEALXAGTMJT8C' where id=46; -update noar ti set v2='PQFIXIEDB7XVWRDYHCQCYEALXAGTMJT8C' where id=46; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='KWLNFQECG32YF9JLQ5WCVXRPNMH7QT5CP' where id=46; -update noar ti set v3='KWLNFQECG32YF9JLQ5WCVXRPNMH7QT5CP' where id=46; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='P05HAGUVHF2BY8A117PQB4LXKP2WWMY42' where id=47; -update noar ti set v0='P05HAGUVHF2BY8A117PQB4LXKP2WWMY42' where id=47; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='VS6KV97CEAXBBQOGETK6X0YJG6OT77V31' where id=47; -update noar ti set v1='VS6KV97CEAXBBQOGETK6X0YJG6OT77V31' where id=47; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='7Q7W0GV5G356XPDMHBH2RJZ4G9U43AUEX' where id=47; -update noar ti set v2='7Q7W0GV5G356XPDMHBH2RJZ4G9U43AUEX' where id=47; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='641AVJHYGZBGY3SS4V7CZX1D9D1PL82AA' where id=47; -update noar ti set v3='641AVJHYGZBGY3SS4V7CZX1D9D1PL82AA' where id=47; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='H76MQY3XZEMY41JDREB1U3PQGROCZJ32O' where id=48; -update noar ti set v0='H76MQY3XZEMY41JDREB1U3PQGROCZJ32O' where id=48; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='UDELV3TMJKN971SC67V04IJV0ZZ9NT957' where id=48; -update noar ti set v1='UDELV3TMJKN971SC67V04IJV0ZZ9NT957' where id=48; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='5DEU5BI2HWI7BD1E28KGU5FRFLRXTJ393' where id=48; -update noar ti set v2='5DEU5BI2HWI7BD1E28KGU5FRFLRXTJ393' where id=48; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='651U16ZE6EX7BNYFOCQQU26Y0X5S76OZI' where id=48; -update noar ti set v3='651U16ZE6EX7BNYFOCQQU26Y0X5S76OZI' where id=48; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='S3KKMZJ9TAHIG1SJMU2Q1PONODEDSM7T0' where id=49; -update noar ti set v0='S3KKMZJ9TAHIG1SJMU2Q1PONODEDSM7T0' where id=49; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='0G192ZBDTGJUMGQ0CMME00F8X1F7UKK3Q' where id=49; -update noar ti set v1='0G192ZBDTGJUMGQ0CMME00F8X1F7UKK3Q' where id=49; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='24RTDTONPHWS1H3FCA2LO8I2YP588RGJB' where id=49; -update noar ti set v2='24RTDTONPHWS1H3FCA2LO8I2YP588RGJB' where id=49; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='M8QZ39EZNBNMHS4NXEN9QOMMMAOUHW002' where id=49; -update noar ti set v3='M8QZ39EZNBNMHS4NXEN9QOMMMAOUHW002' where id=49; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='A6IZG7ZEZQTCZICP7OB1K17VF7ZGPF0RP' where id=50; -update noar ti set v0='A6IZG7ZEZQTCZICP7OB1K17VF7ZGPF0RP' where id=50; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='NEMY8UFM78ML661P6147SXCDP6J02RQEA' where id=50; -update noar ti set v1='NEMY8UFM78ML661P6147SXCDP6J02RQEA' where id=50; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='RGW6669TULDTCI6AEGFLI30M0BNJU4X91' where id=50; -update noar ti set v2='RGW6669TULDTCI6AEGFLI30M0BNJU4X91' where id=50; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='T5BB49AUMIPRA78A5NN71VHQHWCA12T4W' where id=50; -update noar ti set v3='T5BB49AUMIPRA78A5NN71VHQHWCA12T4W' where id=50; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='LXSNRNC3J6O8KPFCMD8SYV621VISQPEWE' where id=51; -update noar ti set v0='LXSNRNC3J6O8KPFCMD8SYV621VISQPEWE' where id=51; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='UWDWY1GR92F74CT5TSD6T6XGBPZ5H8SF7' where id=51; -update noar ti set v1='UWDWY1GR92F74CT5TSD6T6XGBPZ5H8SF7' where id=51; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='QJ9IP4S6WWGF0KX80D8XTAOF5HL4UQVPT' where id=51; -update noar ti set v2='QJ9IP4S6WWGF0KX80D8XTAOF5HL4UQVPT' where id=51; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='ZM7P24RT3BCVDM2ICWF07OC5OSJSFIDVL' where id=51; -update noar ti set v3='ZM7P24RT3BCVDM2ICWF07OC5OSJSFIDVL' where id=51; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='BJK46ALUVTQE8RUU97LP5E043KVMJD70D' where id=52; -update noar ti set v0='BJK46ALUVTQE8RUU97LP5E043KVMJD70D' where id=52; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='BFDIN2FDON0CU2CLKEB4MC9Z5X3JN0SK4' where id=52; -update noar ti set v1='BFDIN2FDON0CU2CLKEB4MC9Z5X3JN0SK4' where id=52; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='VNAUIIRJCOVS0KJU253HJ368GVKR11KDI' where id=52; -update noar ti set v2='VNAUIIRJCOVS0KJU253HJ368GVKR11KDI' where id=52; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='VC2YTAA7CH1X8C69MG1PC7V9ZEOTNQ4UF' where id=52; -update noar ti set v3='VC2YTAA7CH1X8C69MG1PC7V9ZEOTNQ4UF' where id=52; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='TQ8Y5T19I5IBFL0XG66X20Y7W7OQTQX5O' where id=53; -update noar ti set v0='TQ8Y5T19I5IBFL0XG66X20Y7W7OQTQX5O' where id=53; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='4SOFHDU9AZBUCTWWKUJJG30IDACHX458Y' where id=53; -update noar ti set v1='4SOFHDU9AZBUCTWWKUJJG30IDACHX458Y' where id=53; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='LC298ZARGDWN2SQC8KQ99TC0XDK0J3HNY' where id=53; -update noar ti set v2='LC298ZARGDWN2SQC8KQ99TC0XDK0J3HNY' where id=53; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='JKTZGV4VOVAOCI3M1E4PX7FZP3YYAIV9X' where id=53; -update noar ti set v3='JKTZGV4VOVAOCI3M1E4PX7FZP3YYAIV9X' where id=53; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='BU4HHSK0CDGWDZKOYOIXQHTF74DP95NFK' where id=54; -update noar ti set v0='BU4HHSK0CDGWDZKOYOIXQHTF74DP95NFK' where id=54; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='6JZYFTSSCTGO9WF9BFNLUA0NBMMF2N8XE' where id=54; -update noar ti set v1='6JZYFTSSCTGO9WF9BFNLUA0NBMMF2N8XE' where id=54; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='OU0NT3U4AIEQ0WXBG8WH5NCK96W8ZEPPE' where id=54; -update noar ti set v2='OU0NT3U4AIEQ0WXBG8WH5NCK96W8ZEPPE' where id=54; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='N7PV3KCTRBT0I1Z7R44WEBSB6OLCYFO8J' where id=54; -update noar ti set v3='N7PV3KCTRBT0I1Z7R44WEBSB6OLCYFO8J' where id=54; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='6MWP2FE7BPLOBTS1DMQ71HD2UNOMR0CKX' where id=55; -update noar ti set v0='6MWP2FE7BPLOBTS1DMQ71HD2UNOMR0CKX' where id=55; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='3IBBZHYPZUG5N4C0MZQ858DGRB3QVU8UL' where id=55; -update noar ti set v1='3IBBZHYPZUG5N4C0MZQ858DGRB3QVU8UL' where id=55; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='050LJRF8Z661PFZFFJI4PUY5HC6FZ4XAZ' where id=55; -update noar ti set v2='050LJRF8Z661PFZFFJI4PUY5HC6FZ4XAZ' where id=55; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='3N4YM08A7GF6NY4WKIZJYB812CB69M1TM' where id=55; -update noar ti set v3='3N4YM08A7GF6NY4WKIZJYB812CB69M1TM' where id=55; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='11366LNF4LLZJS8Y0PTI84JBHS00YSTU8' where id=56; -update noar ti set v0='11366LNF4LLZJS8Y0PTI84JBHS00YSTU8' where id=56; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='OR5YXKS53YP6XHGIPZ296G6AQIOET6R03' where id=56; -update noar ti set v1='OR5YXKS53YP6XHGIPZ296G6AQIOET6R03' where id=56; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='YWJ31G85YR5HHNVEODM3JKOH15OP90Q2F' where id=56; -update noar ti set v2='YWJ31G85YR5HHNVEODM3JKOH15OP90Q2F' where id=56; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='ZX8KYZ3EQSDX25XGXMZBANP2AT8UEUGQD' where id=56; -update noar ti set v3='ZX8KYZ3EQSDX25XGXMZBANP2AT8UEUGQD' where id=56; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='WIL66TSKLO1QDQ9SHC8TPYTENWK094IQL' where id=57; -update noar ti set v0='WIL66TSKLO1QDQ9SHC8TPYTENWK094IQL' where id=57; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='IZST9BLY30O1OI6GOLNSHYKW2PJ4L7PQ5' where id=57; -update noar ti set v1='IZST9BLY30O1OI6GOLNSHYKW2PJ4L7PQ5' where id=57; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='LR1LDYMEN07AFFSLXMSLMI2CRQHWW0NLJ' where id=57; -update noar ti set v2='LR1LDYMEN07AFFSLXMSLMI2CRQHWW0NLJ' where id=57; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='49FQ5TLVYGKN8ERX3UV4KBK9RDDS2FJ94' where id=57; -update noar ti set v3='49FQ5TLVYGKN8ERX3UV4KBK9RDDS2FJ94' where id=57; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='TCRDTTNMB5C482EBDU1DLJ03Q3SUJS1DN' where id=58; -update noar ti set v0='TCRDTTNMB5C482EBDU1DLJ03Q3SUJS1DN' where id=58; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='YIKSGR2NEZ614TL0PTJ51X8B1L64ZBDI7' where id=58; -update noar ti set v1='YIKSGR2NEZ614TL0PTJ51X8B1L64ZBDI7' where id=58; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='SB70C6U9232ELJNALDDGK2FMGH3TNG7DG' where id=58; -update noar ti set v2='SB70C6U9232ELJNALDDGK2FMGH3TNG7DG' where id=58; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='RTYBZM0KZMBKBQA3NP5DG61BHPHILZCPD' where id=58; -update noar ti set v3='RTYBZM0KZMBKBQA3NP5DG61BHPHILZCPD' where id=58; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='NMF2XQ4OS8UHPBS2L41G3Y3NMSQIK9L9T' where id=59; -update noar ti set v0='NMF2XQ4OS8UHPBS2L41G3Y3NMSQIK9L9T' where id=59; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='WCVNB26Z87VXGXFMQ0CDWAU3F1KRRZWFY' where id=59; -update noar ti set v1='WCVNB26Z87VXGXFMQ0CDWAU3F1KRRZWFY' where id=59; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='XU6QL3KQ6HDG5FPE1COTEVANDNK0N79AT' where id=59; -update noar ti set v2='XU6QL3KQ6HDG5FPE1COTEVANDNK0N79AT' where id=59; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='1ZUQRU4LD7QCGT0WJYWNJKJW1XFL9OQ4C' where id=59; -update noar ti set v3='1ZUQRU4LD7QCGT0WJYWNJKJW1XFL9OQ4C' where id=59; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='VM06I5MPUPJN55OXYHJ14T9OURYRW001B' where id=60; -update noar ti set v0='VM06I5MPUPJN55OXYHJ14T9OURYRW001B' where id=60; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='76ATR77K16EY7AD3L8ZGQN3UXO8C8LHJW' where id=60; -update noar ti set v1='76ATR77K16EY7AD3L8ZGQN3UXO8C8LHJW' where id=60; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='SYFSBI4ABGH7CKOIMJWL7RV551NBNB4WM' where id=60; -update noar ti set v2='SYFSBI4ABGH7CKOIMJWL7RV551NBNB4WM' where id=60; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='1VGRTZQKX8T4Q58WYGP6GQGQ3PLNBBV89' where id=60; -update noar ti set v3='1VGRTZQKX8T4Q58WYGP6GQGQ3PLNBBV89' where id=60; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='VLJU7DG5MGME7XQMV9UC6OCCABFEP2DML' where id=61; -update noar ti set v0='VLJU7DG5MGME7XQMV9UC6OCCABFEP2DML' where id=61; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='U66MIZ9X814XSSWFALZAYCTIA87M243J5' where id=61; -update noar ti set v1='U66MIZ9X814XSSWFALZAYCTIA87M243J5' where id=61; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='PZ2JMGVY0UA0NMJI5TXPN9DTUEPXD64ZJ' where id=61; -update noar ti set v2='PZ2JMGVY0UA0NMJI5TXPN9DTUEPXD64ZJ' where id=61; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='CD0C0X8WS18IBF8BOJ2B4NQX8ZE0WC6E9' where id=61; -update noar ti set v3='CD0C0X8WS18IBF8BOJ2B4NQX8ZE0WC6E9' where id=61; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='A5S44N1TMX88VG6SDHDVYQTTD70GUXWEK' where id=62; -update noar ti set v0='A5S44N1TMX88VG6SDHDVYQTTD70GUXWEK' where id=62; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='SHQW6Y2ZGOCTNYRLE1MVL53I8UV4P2HP7' where id=62; -update noar ti set v1='SHQW6Y2ZGOCTNYRLE1MVL53I8UV4P2HP7' where id=62; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='TZJYK2PK5C8DZ6POOETAXPV2H0RQ6X8QH' where id=62; -update noar ti set v2='TZJYK2PK5C8DZ6POOETAXPV2H0RQ6X8QH' where id=62; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='P5YTFZJWGPMZWGJZPO6BULJLOCF07Z9LF' where id=62; -update noar ti set v3='P5YTFZJWGPMZWGJZPO6BULJLOCF07Z9LF' where id=62; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='DXIUJPJIGCKXE8KYU4X15XQOFQ4KXU6LL' where id=63; -update noar ti set v0='DXIUJPJIGCKXE8KYU4X15XQOFQ4KXU6LL' where id=63; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='W6Q9E97RFAFETEM2IORNUUNC5GZG6TZUO' where id=63; -update noar ti set v1='W6Q9E97RFAFETEM2IORNUUNC5GZG6TZUO' where id=63; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='OQRGLG7YZZNRD1YQALS0JO6O6ZLEK1QVP' where id=63; -update noar ti set v2='OQRGLG7YZZNRD1YQALS0JO6O6ZLEK1QVP' where id=63; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='OVI0WCUGVDSVH7ZOO4TD9XV0IYQQ12VNY' where id=63; -update noar ti set v3='OVI0WCUGVDSVH7ZOO4TD9XV0IYQQ12VNY' where id=63; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='J5Q3VFO0ZA4DF8QHCTXZ4YUN7SDW3CBY2' where id=64; -update noar ti set v0='J5Q3VFO0ZA4DF8QHCTXZ4YUN7SDW3CBY2' where id=64; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='3WQ6YQKV13E7UMVSZR92EYP91I1WIBA55' where id=64; -update noar ti set v1='3WQ6YQKV13E7UMVSZR92EYP91I1WIBA55' where id=64; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='TG3O9OM8TTPPB60233M822MVF6DTMJ1GY' where id=64; -update noar ti set v2='TG3O9OM8TTPPB60233M822MVF6DTMJ1GY' where id=64; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='PECH6S66TNU0T7E2AV4G7I0ICY9J5HYMT' where id=64; -update noar ti set v3='PECH6S66TNU0T7E2AV4G7I0ICY9J5HYMT' where id=64; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='P9V026YRE4E6N27H8W0FE9RD9ID4H0KHP' where id=65; -update noar ti set v0='P9V026YRE4E6N27H8W0FE9RD9ID4H0KHP' where id=65; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='GR5V92X8VME7QHTLZRDYDNYU4XDY27WK8' where id=65; -update noar ti set v1='GR5V92X8VME7QHTLZRDYDNYU4XDY27WK8' where id=65; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='ZHTIM8XBIIKT1ZUANZI28GNAJ6WIA6VSA' where id=65; -update noar ti set v2='ZHTIM8XBIIKT1ZUANZI28GNAJ6WIA6VSA' where id=65; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='52Y1LAL6S07WFRHRMYGM703S4BNXQXFWI' where id=65; -update noar ti set v3='52Y1LAL6S07WFRHRMYGM703S4BNXQXFWI' where id=65; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='HQBYRGQY7H3EZN9NTQKO0ZV64VF211XBQ' where id=66; -update noar ti set v0='HQBYRGQY7H3EZN9NTQKO0ZV64VF211XBQ' where id=66; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='V6YGXLISICT0K8K792R7Z9FKORGIYYM3W' where id=66; -update noar ti set v1='V6YGXLISICT0K8K792R7Z9FKORGIYYM3W' where id=66; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='A9SF2TOIUJ06VKQZGFIGG4AFAMYA03I8L' where id=66; -update noar ti set v2='A9SF2TOIUJ06VKQZGFIGG4AFAMYA03I8L' where id=66; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='8DRMIRHJKHA0JUCRYG6GYK3ACZI889F5G' where id=66; -update noar ti set v3='8DRMIRHJKHA0JUCRYG6GYK3ACZI889F5G' where id=66; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='U7IRM1W59O9W71HVONRKHK63WA7APZR80' where id=67; -update noar ti set v0='U7IRM1W59O9W71HVONRKHK63WA7APZR80' where id=67; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='EW9RSVANN4GXFDHNJEUYVKTTQ1M1H6EC4' where id=67; -update noar ti set v1='EW9RSVANN4GXFDHNJEUYVKTTQ1M1H6EC4' where id=67; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='RBZLXMMNGSIH2Z0ZKTMODQR9AHUOBZGG6' where id=67; -update noar ti set v2='RBZLXMMNGSIH2Z0ZKTMODQR9AHUOBZGG6' where id=67; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='91KMBJ1JJ3EO9MFXTM2GWL9KBG2B0VUQ3' where id=67; -update noar ti set v3='91KMBJ1JJ3EO9MFXTM2GWL9KBG2B0VUQ3' where id=67; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='4VDHEZIWXIWFA9UN3UY9C0P5R5Z8J5WXJ' where id=68; -update noar ti set v0='4VDHEZIWXIWFA9UN3UY9C0P5R5Z8J5WXJ' where id=68; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='SPYS7HLQ9OAX7KOGWVTWXHD0MAP474K59' where id=68; -update noar ti set v1='SPYS7HLQ9OAX7KOGWVTWXHD0MAP474K59' where id=68; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='TN58DN9GB8OE3TKX3QXJP1D56Q0WT1WMK' where id=68; -update noar ti set v2='TN58DN9GB8OE3TKX3QXJP1D56Q0WT1WMK' where id=68; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='T7P8DXVVUCAJPU7SZIF1UH5THFSRAJBOA' where id=68; -update noar ti set v3='T7P8DXVVUCAJPU7SZIF1UH5THFSRAJBOA' where id=68; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='RBAFLFIAP39ZJPEB45CMYIJNL4O69NHJA' where id=69; -update noar ti set v0='RBAFLFIAP39ZJPEB45CMYIJNL4O69NHJA' where id=69; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='A8UO00Q0QGUITMRJYGIEJ6J3VOORX3V2X' where id=69; -update noar ti set v1='A8UO00Q0QGUITMRJYGIEJ6J3VOORX3V2X' where id=69; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='4C8OI3LBJ9BEU1UL6PSL4EUX3VI5AXZVC' where id=69; -update noar ti set v2='4C8OI3LBJ9BEU1UL6PSL4EUX3VI5AXZVC' where id=69; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='YBI1CCKRD7HH53NL2Z38J58BJUPSWD3B8' where id=69; -update noar ti set v3='YBI1CCKRD7HH53NL2Z38J58BJUPSWD3B8' where id=69; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='0R6EPZDWXP8REHTE4QAHQRR1TCR2PES1M' where id=70; -update noar ti set v0='0R6EPZDWXP8REHTE4QAHQRR1TCR2PES1M' where id=70; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='AUUJPYXXC4KFMJK48FJ8722FR9BAKX0KY' where id=70; -update noar ti set v1='AUUJPYXXC4KFMJK48FJ8722FR9BAKX0KY' where id=70; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='0Z9S1U27VH738JD5Z175A1J3YPB2N025M' where id=70; -update noar ti set v2='0Z9S1U27VH738JD5Z175A1J3YPB2N025M' where id=70; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='N1CKHUX8C5MMJLBYGQEBL6BPNBV9J11IW' where id=70; -update noar ti set v3='N1CKHUX8C5MMJLBYGQEBL6BPNBV9J11IW' where id=70; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='E53K6FCNE8296B77TTNO8FTKYDV15DHFE' where id=71; -update noar ti set v0='E53K6FCNE8296B77TTNO8FTKYDV15DHFE' where id=71; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='J70EEQVMHMLKOFVPPKGPP33WCDRD4LHHN' where id=71; -update noar ti set v1='J70EEQVMHMLKOFVPPKGPP33WCDRD4LHHN' where id=71; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='UG7ILDDTK2AFZU9YU6DQ0DYLZN430MUM9' where id=71; -update noar ti set v2='UG7ILDDTK2AFZU9YU6DQ0DYLZN430MUM9' where id=71; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='GHCMT694ZNB7UW5VTMDGLTD68F3AR46GW' where id=71; -update noar ti set v3='GHCMT694ZNB7UW5VTMDGLTD68F3AR46GW' where id=71; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='CLJZXA12D8IYJEZDB1R4E7GRMV8N72RT9' where id=72; -update noar ti set v0='CLJZXA12D8IYJEZDB1R4E7GRMV8N72RT9' where id=72; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='OSHBB5ZRF7RLE6CHZMKR56QZH0ISXB4CK' where id=72; -update noar ti set v1='OSHBB5ZRF7RLE6CHZMKR56QZH0ISXB4CK' where id=72; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='1VFD6E9NXSITTRRMLYXW93N450TU3RJ4T' where id=72; -update noar ti set v2='1VFD6E9NXSITTRRMLYXW93N450TU3RJ4T' where id=72; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='0V0KHIZHYM3FRMXLFODZSA97R7H7RDGEH' where id=72; -update noar ti set v3='0V0KHIZHYM3FRMXLFODZSA97R7H7RDGEH' where id=72; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='OZVGOUL95XCUZW1FCTFPDMXGU29RCGAFW' where id=73; -update noar ti set v0='OZVGOUL95XCUZW1FCTFPDMXGU29RCGAFW' where id=73; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='96OUR5V5JBHNI7ZFSSYCJ0H7WE4YT283N' where id=73; -update noar ti set v1='96OUR5V5JBHNI7ZFSSYCJ0H7WE4YT283N' where id=73; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='IYCI1S7HOLM7P4IC0OIEOCL953EI8G19T' where id=73; -update noar ti set v2='IYCI1S7HOLM7P4IC0OIEOCL953EI8G19T' where id=73; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='GWJW0RFJJB80X5T880J9CYGPXX0J6ZDWE' where id=73; -update noar ti set v3='GWJW0RFJJB80X5T880J9CYGPXX0J6ZDWE' where id=73; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='DZKR232DCPAICDL3DH921CM82LM0J2KCP' where id=74; -update noar ti set v0='DZKR232DCPAICDL3DH921CM82LM0J2KCP' where id=74; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='R2ZZFSGBVIX329YJGWA2NA1KNYXFICHML' where id=74; -update noar ti set v1='R2ZZFSGBVIX329YJGWA2NA1KNYXFICHML' where id=74; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='H3O2GLFUQXEAV6MONOE4NYCUUHH89IWSP' where id=74; -update noar ti set v2='H3O2GLFUQXEAV6MONOE4NYCUUHH89IWSP' where id=74; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='DN2WPI8C0V14DOIDC8HOCXL1MH36X8P1Q' where id=74; -update noar ti set v3='DN2WPI8C0V14DOIDC8HOCXL1MH36X8P1Q' where id=74; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='KKAU7NVQJIDYC5J4PSKO2B9NFQZCNZNAM' where id=75; -update noar ti set v0='KKAU7NVQJIDYC5J4PSKO2B9NFQZCNZNAM' where id=75; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='5KTQ2LYODHTNDBTPWP7O39G18YKS1F3JF' where id=75; -update noar ti set v1='5KTQ2LYODHTNDBTPWP7O39G18YKS1F3JF' where id=75; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='LSR05H81093YIS2VI9K42MF90NKAV6YBB' where id=75; -update noar ti set v2='LSR05H81093YIS2VI9K42MF90NKAV6YBB' where id=75; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='8Q6YN8ACEGSRW6J792TQRJZXL2CRM6F8R' where id=75; -update noar ti set v3='8Q6YN8ACEGSRW6J792TQRJZXL2CRM6F8R' where id=75; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='MELD8O9P7RWKK94A3N9XQEG11OX85JEBG' where id=76; -update noar ti set v0='MELD8O9P7RWKK94A3N9XQEG11OX85JEBG' where id=76; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='7MJK9CPHQ90RZKKWHG3R4NZ5BDTXP5AGV' where id=76; -update noar ti set v1='7MJK9CPHQ90RZKKWHG3R4NZ5BDTXP5AGV' where id=76; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='BVFAEOYPQQWIVH9QVEMD1B6J3U9UKB6I9' where id=76; -update noar ti set v2='BVFAEOYPQQWIVH9QVEMD1B6J3U9UKB6I9' where id=76; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='65WMWMYPC9566T2IG53KGTVILG4FAWFFR' where id=76; -update noar ti set v3='65WMWMYPC9566T2IG53KGTVILG4FAWFFR' where id=76; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='I2P6PFQJXFXRX21THQ8W3X0N90J9Z54RK' where id=77; -update noar ti set v0='I2P6PFQJXFXRX21THQ8W3X0N90J9Z54RK' where id=77; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='46L8DSTTPJTKB3PMHWKGBG5U632P4S9VH' where id=77; -update noar ti set v1='46L8DSTTPJTKB3PMHWKGBG5U632P4S9VH' where id=77; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='QHCHD1TSI870RBHOPS3X1A2TXDR3TYIOR' where id=77; -update noar ti set v2='QHCHD1TSI870RBHOPS3X1A2TXDR3TYIOR' where id=77; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='QCOE17ASDZR7CP4NF06B3RD41F09TTFBP' where id=77; -update noar ti set v3='QCOE17ASDZR7CP4NF06B3RD41F09TTFBP' where id=77; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='ZDMHLYKTPA6UJ2HOUPF2NZ29YCBS0LPB1' where id=78; -update noar ti set v0='ZDMHLYKTPA6UJ2HOUPF2NZ29YCBS0LPB1' where id=78; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='6K9DP0RUZUCQSJVYDVO3IGAP6SBDV9WK2' where id=78; -update noar ti set v1='6K9DP0RUZUCQSJVYDVO3IGAP6SBDV9WK2' where id=78; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='W968MKNIHCPENL5EU0OQYHEE736JRBDO5' where id=78; -update noar ti set v2='W968MKNIHCPENL5EU0OQYHEE736JRBDO5' where id=78; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='C1P5NN3CLAOACWO6GC8CHW2XBXTOTBQ9R' where id=78; -update noar ti set v3='C1P5NN3CLAOACWO6GC8CHW2XBXTOTBQ9R' where id=78; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='VVKCPGTI9ZP4RGQ2RE426UCHSVG5WERM2' where id=79; -update noar ti set v0='VVKCPGTI9ZP4RGQ2RE426UCHSVG5WERM2' where id=79; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='9ALQ6SFBH1BH1BSWX9ZW2QUHFIOHJNN2P' where id=79; -update noar ti set v1='9ALQ6SFBH1BH1BSWX9ZW2QUHFIOHJNN2P' where id=79; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='F1OMWTAX0TKMXLGDNRPXK2H1XMTV4U35U' where id=79; -update noar ti set v2='F1OMWTAX0TKMXLGDNRPXK2H1XMTV4U35U' where id=79; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='BBHGSD8QTJYUMMKBNO9ZXFEFN1DC4H96O' where id=79; -update noar ti set v3='BBHGSD8QTJYUMMKBNO9ZXFEFN1DC4H96O' where id=79; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='M2QRLC1L0PT4QMP0SQZOMSJ3NPO51GVVP' where id=80; -update noar ti set v0='M2QRLC1L0PT4QMP0SQZOMSJ3NPO51GVVP' where id=80; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='8CUN3B6L2QK65VPPX6KEUGK0GCCRKDWXY' where id=80; -update noar ti set v1='8CUN3B6L2QK65VPPX6KEUGK0GCCRKDWXY' where id=80; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='FPBXGU1CSXX8MJ9QI07LL3OQJNFZ26BJ6' where id=80; -update noar ti set v2='FPBXGU1CSXX8MJ9QI07LL3OQJNFZ26BJ6' where id=80; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='46F7JMV2CUHK73NN43IDQDJ3IGD3HONK1' where id=80; -update noar ti set v3='46F7JMV2CUHK73NN43IDQDJ3IGD3HONK1' where id=80; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='A0ZN1UOWXZNNHMPZQYJ7DBBTNNFNXZEMZ' where id=81; -update noar ti set v0='A0ZN1UOWXZNNHMPZQYJ7DBBTNNFNXZEMZ' where id=81; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='ORHZ2BWY8BTXPZI1L8UGPNPQDWZ82MI9F' where id=81; -update noar ti set v1='ORHZ2BWY8BTXPZI1L8UGPNPQDWZ82MI9F' where id=81; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='4SCC68CXZKXW1MSH38YPWFHHNCR1LLLPX' where id=81; -update noar ti set v2='4SCC68CXZKXW1MSH38YPWFHHNCR1LLLPX' where id=81; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='Q3UV3XI9P0K1Z0500D09ELUNF9T6HUG74' where id=81; -update noar ti set v3='Q3UV3XI9P0K1Z0500D09ELUNF9T6HUG74' where id=81; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='HMKFAE5NRNU6RH1YPE05J01N99MA2VE49' where id=82; -update noar ti set v0='HMKFAE5NRNU6RH1YPE05J01N99MA2VE49' where id=82; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='3IRSQZM5VULR93W6646I8GA84KST7OS5N' where id=82; -update noar ti set v1='3IRSQZM5VULR93W6646I8GA84KST7OS5N' where id=82; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='Y9JNPJ2LBEX0RPZJ9YVM9228DAGXNH4JW' where id=82; -update noar ti set v2='Y9JNPJ2LBEX0RPZJ9YVM9228DAGXNH4JW' where id=82; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='RS6C2HAFDTOO9543IDMN6UXTDFW1QETP1' where id=82; -update noar ti set v3='RS6C2HAFDTOO9543IDMN6UXTDFW1QETP1' where id=82; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='N4KAN5KDW8AJA5W15B4LGKU0O3I01WNRJ' where id=83; -update noar ti set v0='N4KAN5KDW8AJA5W15B4LGKU0O3I01WNRJ' where id=83; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='LVRX9LKT4XG5JRRXIQB7NBKEIWE5G1Z0F' where id=83; -update noar ti set v1='LVRX9LKT4XG5JRRXIQB7NBKEIWE5G1Z0F' where id=83; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='7V5MZJ3S5CLDNEGNN742S3AB4EF2U24AW' where id=83; -update noar ti set v2='7V5MZJ3S5CLDNEGNN742S3AB4EF2U24AW' where id=83; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='8I2GEFBSHQW0QLRJULT7HRHVK0Y2R6ES2' where id=83; -update noar ti set v3='8I2GEFBSHQW0QLRJULT7HRHVK0Y2R6ES2' where id=83; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='G562B5W18EY13A325QPBQ8NCB86402DU3' where id=84; -update noar ti set v0='G562B5W18EY13A325QPBQ8NCB86402DU3' where id=84; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='GF9MO8PYMC5QQ4L43YSECUUUT86PT5YXG' where id=84; -update noar ti set v1='GF9MO8PYMC5QQ4L43YSECUUUT86PT5YXG' where id=84; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='3YBHFTJZX6XA4VDHC3ZSAUIUJY8XZCOCG' where id=84; -update noar ti set v2='3YBHFTJZX6XA4VDHC3ZSAUIUJY8XZCOCG' where id=84; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='DQPOWJCK6AXIIMMTOL3IKCWFLNLI1NCUY' where id=84; -update noar ti set v3='DQPOWJCK6AXIIMMTOL3IKCWFLNLI1NCUY' where id=84; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='0CCAKASQ5XAATMWANI4X4ZA0O2ANTH8GW' where id=85; -update noar ti set v0='0CCAKASQ5XAATMWANI4X4ZA0O2ANTH8GW' where id=85; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='03VKPN0A8P1FCWYRG60XGG4FCOFV7RV0K' where id=85; -update noar ti set v1='03VKPN0A8P1FCWYRG60XGG4FCOFV7RV0K' where id=85; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='VZNWPKE0C0NU97GVW871PDTKLEI0JK2C5' where id=85; -update noar ti set v2='VZNWPKE0C0NU97GVW871PDTKLEI0JK2C5' where id=85; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='3ROAED83IVX2TI5V9XQ8JJTC6PM2C0BKO' where id=85; -update noar ti set v3='3ROAED83IVX2TI5V9XQ8JJTC6PM2C0BKO' where id=85; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='HFP49S7VKG4MZOW206CCV65GYXA8RTBEU' where id=86; -update noar ti set v0='HFP49S7VKG4MZOW206CCV65GYXA8RTBEU' where id=86; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='ZGO9G3JQ62QX259SX49B4KCE5J0Z13KTQ' where id=86; -update noar ti set v1='ZGO9G3JQ62QX259SX49B4KCE5J0Z13KTQ' where id=86; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='MF6BS4LYEE77RVU0XZCXG8DLPP2SI2JN7' where id=86; -update noar ti set v2='MF6BS4LYEE77RVU0XZCXG8DLPP2SI2JN7' where id=86; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='DSMSM4C5TJ1SLWSUORHARNIPFJ1BTLSRB' where id=86; -update noar ti set v3='DSMSM4C5TJ1SLWSUORHARNIPFJ1BTLSRB' where id=86; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='12J0WFG2QMZI5B9AE73EFPST3YNHKJXXI' where id=87; -update noar ti set v0='12J0WFG2QMZI5B9AE73EFPST3YNHKJXXI' where id=87; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='SE17BN62U6TY2WZUL3GE5RMT3WDX077UT' where id=87; -update noar ti set v1='SE17BN62U6TY2WZUL3GE5RMT3WDX077UT' where id=87; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='TQ2BF114DVI2JRRQUX66BSNDHQ1KF6HVH' where id=87; -update noar ti set v2='TQ2BF114DVI2JRRQUX66BSNDHQ1KF6HVH' where id=87; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='FWOVRM7J7I4NIHXNM8MGO40TY0IYA35GJ' where id=87; -update noar ti set v3='FWOVRM7J7I4NIHXNM8MGO40TY0IYA35GJ' where id=87; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='OWCTJVROTLMNGUAEBNQWVJR5MJUNIX1H4' where id=88; -update noar ti set v0='OWCTJVROTLMNGUAEBNQWVJR5MJUNIX1H4' where id=88; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='CBE9DQ9177C8HEEMKX4UP1ADNNBCGJNWQ' where id=88; -update noar ti set v1='CBE9DQ9177C8HEEMKX4UP1ADNNBCGJNWQ' where id=88; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='Y0TFC8VCPYK33W7WMQ4MYYFTAEN4I3L2W' where id=88; -update noar ti set v2='Y0TFC8VCPYK33W7WMQ4MYYFTAEN4I3L2W' where id=88; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='471X5RZT3OQ7RI5DFWIW3CKAEMSZ8SZAC' where id=88; -update noar ti set v3='471X5RZT3OQ7RI5DFWIW3CKAEMSZ8SZAC' where id=88; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='YBVOTSDFGJEIW5HKIU3TC6QNDT6DVIXY9' where id=89; -update noar ti set v0='YBVOTSDFGJEIW5HKIU3TC6QNDT6DVIXY9' where id=89; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='M93848BGHLYG3MKIMBZOPCMXS0BVM54U4' where id=89; -update noar ti set v1='M93848BGHLYG3MKIMBZOPCMXS0BVM54U4' where id=89; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='SG5JALK95ZK2BM6BFAKXWK4ZTPN2TF13G' where id=89; -update noar ti set v2='SG5JALK95ZK2BM6BFAKXWK4ZTPN2TF13G' where id=89; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='WGFAAAPCAQUODIKZR4EYP37GH23UYZRM5' where id=89; -update noar ti set v3='WGFAAAPCAQUODIKZR4EYP37GH23UYZRM5' where id=89; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='4OQ0UW7A1DMJ6TF0PN5DCRYOQPZNEC6HW' where id=90; -update noar ti set v0='4OQ0UW7A1DMJ6TF0PN5DCRYOQPZNEC6HW' where id=90; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='KDWRZM4Q2XB467W1NE7MKTCYLDDSR7FPJ' where id=90; -update noar ti set v1='KDWRZM4Q2XB467W1NE7MKTCYLDDSR7FPJ' where id=90; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='90KUWNZ9LZ8IF2U5N75FS8F5CTHR88MOX' where id=90; -update noar ti set v2='90KUWNZ9LZ8IF2U5N75FS8F5CTHR88MOX' where id=90; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='A5VA60QNXIX9VTJAPI7F7KTMCIUWXNPM2' where id=90; -update noar ti set v3='A5VA60QNXIX9VTJAPI7F7KTMCIUWXNPM2' where id=90; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='4IUUBR2FWGA4M737O3ZHRVATI1L2JJIZ3' where id=91; -update noar ti set v0='4IUUBR2FWGA4M737O3ZHRVATI1L2JJIZ3' where id=91; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='3959L09WO5RWOG8U384R6I52P4RL7UXZ7' where id=91; -update noar ti set v1='3959L09WO5RWOG8U384R6I52P4RL7UXZ7' where id=91; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='SS541JIFI2E1SVQNZXDOC4EM1S5QWWH20' where id=91; -update noar ti set v2='SS541JIFI2E1SVQNZXDOC4EM1S5QWWH20' where id=91; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='M5UVDOOASTWWNVU3TZ6O2PZ43KBU02B90' where id=91; -update noar ti set v3='M5UVDOOASTWWNVU3TZ6O2PZ43KBU02B90' where id=91; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='VKATQCCEAT6BQWHEBG25UFI7KSMCZI6H2' where id=92; -update noar ti set v0='VKATQCCEAT6BQWHEBG25UFI7KSMCZI6H2' where id=92; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='7E6MDARNTLKDCM8RU5QQADD9TDIMKMEJ6' where id=92; -update noar ti set v1='7E6MDARNTLKDCM8RU5QQADD9TDIMKMEJ6' where id=92; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='53D30F1FZN1IZD1GU6KK62FLT99XASARB' where id=92; -update noar ti set v2='53D30F1FZN1IZD1GU6KK62FLT99XASARB' where id=92; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='OXT8TH15Y1DYBRZSRJNUC3I475NNEY18R' where id=92; -update noar ti set v3='OXT8TH15Y1DYBRZSRJNUC3I475NNEY18R' where id=92; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='60OLGDJNS27L2MT3E2095PN8I2211H2MH' where id=93; -update noar ti set v0='60OLGDJNS27L2MT3E2095PN8I2211H2MH' where id=93; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='5UR3YYZWWR3ND41MCLZ6F0DBBHEOOMTLF' where id=93; -update noar ti set v1='5UR3YYZWWR3ND41MCLZ6F0DBBHEOOMTLF' where id=93; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='3SQYLKIZQYJ0IY5M8ETNA2B7XOMDNCKKX' where id=93; -update noar ti set v2='3SQYLKIZQYJ0IY5M8ETNA2B7XOMDNCKKX' where id=93; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='6OTAKG45GOXEZ3MPS13A6SZX55YVATFTM' where id=93; -update noar ti set v3='6OTAKG45GOXEZ3MPS13A6SZX55YVATFTM' where id=93; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='5FVK04MKT5OB6H8TXDUANZEP2L7F4DNXZ' where id=94; -update noar ti set v0='5FVK04MKT5OB6H8TXDUANZEP2L7F4DNXZ' where id=94; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='05SWHSWJ2OBNGU0WEDA8H0K44GUR5M11Q' where id=94; -update noar ti set v1='05SWHSWJ2OBNGU0WEDA8H0K44GUR5M11Q' where id=94; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='SXGX92BX5DS2X2NRVYK35UUJMR87LUCGU' where id=94; -update noar ti set v2='SXGX92BX5DS2X2NRVYK35UUJMR87LUCGU' where id=94; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='HNAHFBZ9NRJSYM04MGJZK81BPZ5VU50SV' where id=94; -update noar ti set v3='HNAHFBZ9NRJSYM04MGJZK81BPZ5VU50SV' where id=94; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='TDSORSBT9LYYA30HGJKNBKBDBXMZGVFDJ' where id=95; -update noar ti set v0='TDSORSBT9LYYA30HGJKNBKBDBXMZGVFDJ' where id=95; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='RVWREG0I181IDF6K3BTFY09Y2J8XSSHX9' where id=95; -update noar ti set v1='RVWREG0I181IDF6K3BTFY09Y2J8XSSHX9' where id=95; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='LBF10KKVT07EB492RYU4ULNY50G4TGDX9' where id=95; -update noar ti set v2='LBF10KKVT07EB492RYU4ULNY50G4TGDX9' where id=95; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='WQAD9AFW7LH5MV11HRKO792E2MU6PJ8V5' where id=95; -update noar ti set v3='WQAD9AFW7LH5MV11HRKO792E2MU6PJ8V5' where id=95; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='3PYBHQSOSTJZGH9DTHZLK1I7VUS96C0BR' where id=96; -update noar ti set v0='3PYBHQSOSTJZGH9DTHZLK1I7VUS96C0BR' where id=96; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='3EARLA2YM5BKMVRH2VPMNHIBPIOEQY9DM' where id=96; -update noar ti set v1='3EARLA2YM5BKMVRH2VPMNHIBPIOEQY9DM' where id=96; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='L3R0TD206KTHNIM90Q7ASMEWZFGXG0GVN' where id=96; -update noar ti set v2='L3R0TD206KTHNIM90Q7ASMEWZFGXG0GVN' where id=96; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='7RE2E3LGRTOP4MTOUEMNXEWKZJIQQ1VL4' where id=96; -update noar ti set v3='7RE2E3LGRTOP4MTOUEMNXEWKZJIQQ1VL4' where id=96; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='K568I90I55F9K8BCA069APVII0RTL908C' where id=97; -update noar ti set v0='K568I90I55F9K8BCA069APVII0RTL908C' where id=97; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='RDTRDI2GG3FMAQGXLH3FTXQEP59TC0TT3' where id=97; -update noar ti set v1='RDTRDI2GG3FMAQGXLH3FTXQEP59TC0TT3' where id=97; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='BY7R7WR4LMU70ASFV6BXPY4M3ABDIRZ26' where id=97; -update noar ti set v2='BY7R7WR4LMU70ASFV6BXPY4M3ABDIRZ26' where id=97; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='ZCBP8EQUE8UCM9BW9RMJ4GJVRZFUFG47S' where id=97; -update noar ti set v3='ZCBP8EQUE8UCM9BW9RMJ4GJVRZFUFG47S' where id=97; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='SED9J1MSSDCVAXD59O79U5RWLUL97SNH5' where id=98; -update noar ti set v0='SED9J1MSSDCVAXD59O79U5RWLUL97SNH5' where id=98; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='J3IKNGK7VOKMBEJZVWG6U3VDH895L97MN' where id=98; -update noar ti set v1='J3IKNGK7VOKMBEJZVWG6U3VDH895L97MN' where id=98; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='J3YC5CQSSIQ39DJSPA8NWV7K26X3NAJFS' where id=98; -update noar ti set v2='J3YC5CQSSIQ39DJSPA8NWV7K26X3NAJFS' where id=98; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='78AU510THUYPI35U4R32XLPJRTTN27O0Z' where id=98; -update noar ti set v3='78AU510THUYPI35U4R32XLPJRTTN27O0Z' where id=98; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='6XHBZNO1XU18061ZF5U6UQ4MC0FS0I90U' where id=99; -update noar ti set v0='6XHBZNO1XU18061ZF5U6UQ4MC0FS0I90U' where id=99; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='MSZI7IF6MAJE3QS5NMZ41OXBJ07D9UJRN' where id=99; -update noar ti set v1='MSZI7IF6MAJE3QS5NMZ41OXBJ07D9UJRN' where id=99; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='ACZUSBYPBA6NM2PPVAF1ZWAH0897G5F6G' where id=99; -update noar ti set v2='ACZUSBYPBA6NM2PPVAF1ZWAH0897G5F6G' where id=99; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='RFWF0WUA0CBD62C3IVV9SI3SW5PU8NWC3' where id=99; -update noar ti set v3='RFWF0WUA0CBD62C3IVV9SI3SW5PU8NWC3' where id=99; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -f0 int not null, -v0 varchar(32) not null, -v1 varchar(32) not null, -v2 varchar(32) not null, -v3 varchar(32) not null, -b0 text not null -) engine=tokudb; -insert into tt values (1,2,'a','b','c','d','e'); -insert into tt values (2,3,'','','','',''); -insert into tt values (3,4,'','','','',''); -insert into tt values (4,5,'','','','',''); -insert into tt values (5,6,'','','','',''); -insert into tt values (6,7,'','','','',''); -insert into tt values (7,8,'','','','',''); -insert into tt values (8,9,'','','','',''); -insert into tt values (9,10,'','','','',''); -insert into tt values (10,11,'','','','',''); -insert into tt values (11,12,'','','','',''); -insert into tt values (12,13,'','','','',''); -insert into tt values (13,14,'','','','',''); -insert into tt values (14,15,'','','','',''); -insert into tt values (15,16,'','','','',''); -insert into tt values (16,17,'','','','',''); -insert into tt values (17,18,'','','','',''); -insert into tt values (18,19,'','','','',''); -insert into tt values (19,20,'','','','',''); -insert into tt values (20,21,'','','','',''); -insert into tt values (21,22,'','','','',''); -insert into tt values (22,23,'','','','',''); -insert into tt values (23,24,'','','','',''); -insert into tt values (24,25,'','','','',''); -insert into tt values (25,26,'','','','',''); -insert into tt values (26,27,'','','','',''); -insert into tt values (27,28,'','','','',''); -insert into tt values (28,29,'','','','',''); -insert into tt values (29,30,'','','','',''); -insert into tt values (30,31,'','','','',''); -insert into tt values (31,32,'','','','',''); -insert into tt values (32,33,'','','','',''); -insert into tt values (33,34,'','','','',''); -insert into tt values (34,35,'','','','',''); -insert into tt values (35,36,'','','','',''); -insert into tt values (36,37,'','','','',''); -insert into tt values (37,38,'','','','',''); -insert into tt values (38,39,'','','','',''); -insert into tt values (39,40,'','','','',''); -insert into tt values (40,41,'','','','',''); -insert into tt values (41,42,'','','','',''); -insert into tt values (42,43,'','','','',''); -insert into tt values (43,44,'','','','',''); -insert into tt values (44,45,'','','','',''); -insert into tt values (45,46,'','','','',''); -insert into tt values (46,47,'','','','',''); -insert into tt values (47,48,'','','','',''); -insert into tt values (48,49,'','','','',''); -insert into tt values (49,50,'','','','',''); -insert into tt values (50,51,'','','','',''); -insert into tt values (51,52,'','','','',''); -insert into tt values (52,53,'','','','',''); -insert into tt values (53,54,'','','','',''); -insert into tt values (54,55,'','','','',''); -insert into tt values (55,56,'','','','',''); -insert into tt values (56,57,'','','','',''); -insert into tt values (57,58,'','','','',''); -insert into tt values (58,59,'','','','',''); -insert into tt values (59,60,'','','','',''); -insert into tt values (60,61,'','','','',''); -insert into tt values (61,62,'','','','',''); -insert into tt values (62,63,'','','','',''); -insert into tt values (63,64,'','','','',''); -insert into tt values (64,65,'','','','',''); -insert into tt values (65,66,'','','','',''); -insert into tt values (66,67,'','','','',''); -insert into tt values (67,68,'','','','',''); -insert into tt values (68,69,'','','','',''); -insert into tt values (69,70,'','','','',''); -insert into tt values (70,71,'','','','',''); -insert into tt values (71,72,'','','','',''); -insert into tt values (72,73,'','','','',''); -insert into tt values (73,74,'','','','',''); -insert into tt values (74,75,'','','','',''); -insert into tt values (75,76,'','','','',''); -insert into tt values (76,77,'','','','',''); -insert into tt values (77,78,'','','','',''); -insert into tt values (78,79,'','','','',''); -insert into tt values (79,80,'','','','',''); -insert into tt values (80,81,'','','','',''); -insert into tt values (81,82,'','','','',''); -insert into tt values (82,83,'','','','',''); -insert into tt values (83,84,'','','','',''); -insert into tt values (84,85,'','','','',''); -insert into tt values (85,86,'','','','',''); -insert into tt values (86,87,'','','','',''); -insert into tt values (87,88,'','','','',''); -insert into tt values (88,89,'','','','',''); -insert into tt values (89,90,'','','','',''); -insert into tt values (90,91,'','','','',''); -insert into tt values (91,92,'','','','',''); -insert into tt values (92,93,'','','','',''); -insert into tt values (93,94,'','','','',''); -insert into tt values (94,95,'','','','',''); -insert into tt values (95,96,'','','','',''); -insert into tt values (96,97,'','','','',''); -insert into tt values (97,98,'','','','',''); -insert into tt values (98,99,'','','','',''); -insert into tt values (99,100,'','','','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='null this 0' where id=0; -update noar ti set v0='null this 0' where id=0; -update noar tt set v1='null is 1' where id=0; -update noar ti set v1='null is 1' where id=0; -update noar tt set v2='null a 2' where id=0; -update noar ti set v2='null a 2' where id=0; -update noar tt set v3='null test 3' where id=0; -update noar ti set v3='null test 3' where id=0; -update noar tt set v0='this 0' where id=1; -update noar ti set v0='this 0' where id=1; -update noar tt set v1='is 1' where id=1; -update noar ti set v1='is 1' where id=1; -update noar tt set v2='another 2' where id=1; -update noar ti set v2='another 2' where id=1; -update noar tt set v3='test 3' where id=1; -update noar ti set v3='test 3' where id=1; -update noar tt set v0='IC5XO2HY0SNAHR1O9UT9DAISFBFW9GTL9' where id=2; -update noar ti set v0='IC5XO2HY0SNAHR1O9UT9DAISFBFW9GTL9' where id=2; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='Q0PDDCYZMRX73GMZNM7JWE1A0UGF7B31B' where id=2; -update noar ti set v1='Q0PDDCYZMRX73GMZNM7JWE1A0UGF7B31B' where id=2; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='ZOTP4VITR9E1QSA3OXLGF83HPLVW5KJM0' where id=2; -update noar ti set v2='ZOTP4VITR9E1QSA3OXLGF83HPLVW5KJM0' where id=2; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='AWXKUXS098Z5LMTQXXIN55OMZZ63CYGMP' where id=2; -update noar ti set v3='AWXKUXS098Z5LMTQXXIN55OMZZ63CYGMP' where id=2; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='4FSEIEP6GOUA7GQ8FGJ4FBRGH4BT4BTJC' where id=3; -update noar ti set v0='4FSEIEP6GOUA7GQ8FGJ4FBRGH4BT4BTJC' where id=3; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='2RSDZ9QLEIWX7P7QA25ZNSINU5V1EK85T' where id=3; -update noar ti set v1='2RSDZ9QLEIWX7P7QA25ZNSINU5V1EK85T' where id=3; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='8V8QR8UT1C81UA151W3Q92C0XKHX402RF' where id=3; -update noar ti set v2='8V8QR8UT1C81UA151W3Q92C0XKHX402RF' where id=3; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='A4Q3XWFULLJ1AVQJUCSXWO66SYH9G5DU0' where id=3; -update noar ti set v3='A4Q3XWFULLJ1AVQJUCSXWO66SYH9G5DU0' where id=3; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='NHCZBZQKG5I0X2WJVRJ4SSYQN2RYCYMCH' where id=4; -update noar ti set v0='NHCZBZQKG5I0X2WJVRJ4SSYQN2RYCYMCH' where id=4; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='N6DQGNNR1IJM8T9E3OXR8J981D02Z7NBA' where id=4; -update noar ti set v1='N6DQGNNR1IJM8T9E3OXR8J981D02Z7NBA' where id=4; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='DMAB0DQA1KA5PMA4EGOX8TEFKHV3D9IZK' where id=4; -update noar ti set v2='DMAB0DQA1KA5PMA4EGOX8TEFKHV3D9IZK' where id=4; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='DWEEZJCE69GD1YUVLMWFFB459SEGR5XPG' where id=4; -update noar ti set v3='DWEEZJCE69GD1YUVLMWFFB459SEGR5XPG' where id=4; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='POLT15DV510BZFUP1NR6RFWEPD0PXET9J' where id=5; -update noar ti set v0='POLT15DV510BZFUP1NR6RFWEPD0PXET9J' where id=5; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='5TALX42LEWH68AKJV33EJCEZF4W3LBFG5' where id=5; -update noar ti set v1='5TALX42LEWH68AKJV33EJCEZF4W3LBFG5' where id=5; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='ZZM5S7W6OHF5SZ5WFU9RKWUM9YBYZFIB8' where id=5; -update noar ti set v2='ZZM5S7W6OHF5SZ5WFU9RKWUM9YBYZFIB8' where id=5; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='4JZFKJR24A5SGQDMAXH3RSXOJ3SVWLZ0M' where id=5; -update noar ti set v3='4JZFKJR24A5SGQDMAXH3RSXOJ3SVWLZ0M' where id=5; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='USNXDKICO9BMNWKR24S48RVS8K7S8SKK9' where id=6; -update noar ti set v0='USNXDKICO9BMNWKR24S48RVS8K7S8SKK9' where id=6; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='67EEX1BOWG7H82527UDYZ0VJDQHOW029V' where id=6; -update noar ti set v1='67EEX1BOWG7H82527UDYZ0VJDQHOW029V' where id=6; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='UWFTI4U2BQ4OIWGZDMCVW7XE1XN20EO8P' where id=6; -update noar ti set v2='UWFTI4U2BQ4OIWGZDMCVW7XE1XN20EO8P' where id=6; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='9UXD7FNN7U6N0BM4QAUQCMW1CHTNEBYB0' where id=6; -update noar ti set v3='9UXD7FNN7U6N0BM4QAUQCMW1CHTNEBYB0' where id=6; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='0OBEZ3NAQYDQS7QD1KTR9VZSHP6M8CXI7' where id=7; -update noar ti set v0='0OBEZ3NAQYDQS7QD1KTR9VZSHP6M8CXI7' where id=7; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='0MRH2NPTSNSRAU8VKXW39HF2HS6T4RC0I' where id=7; -update noar ti set v1='0MRH2NPTSNSRAU8VKXW39HF2HS6T4RC0I' where id=7; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='NK9M6P6IOVZGA5HI4MHWY4AYK5I2RUASJ' where id=7; -update noar ti set v2='NK9M6P6IOVZGA5HI4MHWY4AYK5I2RUASJ' where id=7; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='ON8SN347RNPG97ODV5EI0J603UFI76718' where id=7; -update noar ti set v3='ON8SN347RNPG97ODV5EI0J603UFI76718' where id=7; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='N46Q5EM8SE02AHFIX0Z3VYT50MDUJVF26' where id=8; -update noar ti set v0='N46Q5EM8SE02AHFIX0Z3VYT50MDUJVF26' where id=8; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='OVYOQYYDBL5VW9P1O178P84WV6BT61ZFB' where id=8; -update noar ti set v1='OVYOQYYDBL5VW9P1O178P84WV6BT61ZFB' where id=8; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='WO40KLPQ3NUW7W41UO8AU649BLKPRRO8N' where id=8; -update noar ti set v2='WO40KLPQ3NUW7W41UO8AU649BLKPRRO8N' where id=8; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='E484JGWQJ29GHH2JVWXTQWGMA4CN2EV24' where id=8; -update noar ti set v3='E484JGWQJ29GHH2JVWXTQWGMA4CN2EV24' where id=8; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='MXXSJ5F5LL5N69CMDGWZRD5AK7IL9KCB1' where id=9; -update noar ti set v0='MXXSJ5F5LL5N69CMDGWZRD5AK7IL9KCB1' where id=9; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='73R73QXHPLHVQPCOU45H5BQRDQ0Z1NMOM' where id=9; -update noar ti set v1='73R73QXHPLHVQPCOU45H5BQRDQ0Z1NMOM' where id=9; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='97YU1WRG43ZR6ZIZ96WB4PLAMLPGKKAJX' where id=9; -update noar ti set v2='97YU1WRG43ZR6ZIZ96WB4PLAMLPGKKAJX' where id=9; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='PEE7XA7EHIDF51GC1ZYFNZBHKJ89ZKMLH' where id=9; -update noar ti set v3='PEE7XA7EHIDF51GC1ZYFNZBHKJ89ZKMLH' where id=9; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='S2B68U5VZ8OVWV8Q3J37HV58OE6GOXW0A' where id=10; -update noar ti set v0='S2B68U5VZ8OVWV8Q3J37HV58OE6GOXW0A' where id=10; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='GP3Y0W0P4BS0EZ7H6FE16FOKX3DJWRMLY' where id=10; -update noar ti set v1='GP3Y0W0P4BS0EZ7H6FE16FOKX3DJWRMLY' where id=10; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='3JV9560T6SJ4LJ0SFJKLLGGRFID1MNTKK' where id=10; -update noar ti set v2='3JV9560T6SJ4LJ0SFJKLLGGRFID1MNTKK' where id=10; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='9EV800RY0AITX5QFRU6ZNY17UUK73N2SC' where id=10; -update noar ti set v3='9EV800RY0AITX5QFRU6ZNY17UUK73N2SC' where id=10; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='EYBDRKCTPFMGCDZVO2YS3IY5EIY9BG42B' where id=11; -update noar ti set v0='EYBDRKCTPFMGCDZVO2YS3IY5EIY9BG42B' where id=11; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='DV27FZMQFUD649W2J8E1DW4NFEK6SROD6' where id=11; -update noar ti set v1='DV27FZMQFUD649W2J8E1DW4NFEK6SROD6' where id=11; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='PPZP92XQXICUBXKELDGCQ876W2RFSQVT5' where id=11; -update noar ti set v2='PPZP92XQXICUBXKELDGCQ876W2RFSQVT5' where id=11; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='UWCL4J2FBX582CUS2I55SVQJ58IBCJ86R' where id=11; -update noar ti set v3='UWCL4J2FBX582CUS2I55SVQJ58IBCJ86R' where id=11; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='1WXM0LVSZME86D22IW98WJUUECSDROVOM' where id=12; -update noar ti set v0='1WXM0LVSZME86D22IW98WJUUECSDROVOM' where id=12; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='VLI1TPGF2NESX1HQMOADI8VGRZ48J4K4C' where id=12; -update noar ti set v1='VLI1TPGF2NESX1HQMOADI8VGRZ48J4K4C' where id=12; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='6Q7LNCN40HHPCVVHZGSD5NXJBMW02M24A' where id=12; -update noar ti set v2='6Q7LNCN40HHPCVVHZGSD5NXJBMW02M24A' where id=12; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='PFE8GLBMI79N2W13J05171NKI7Q00Y9LT' where id=12; -update noar ti set v3='PFE8GLBMI79N2W13J05171NKI7Q00Y9LT' where id=12; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='N2XJE761M372KF2RR9Z2P1UTC366LCJ3J' where id=13; -update noar ti set v0='N2XJE761M372KF2RR9Z2P1UTC366LCJ3J' where id=13; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='GN6E0I6YTSI26BO48J0CK23DTD2B17SUQ' where id=13; -update noar ti set v1='GN6E0I6YTSI26BO48J0CK23DTD2B17SUQ' where id=13; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='ARPFNK3XAK3RVXRYX89G9Y4HJ2RXRB5H4' where id=13; -update noar ti set v2='ARPFNK3XAK3RVXRYX89G9Y4HJ2RXRB5H4' where id=13; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='NBBHLV3YQB5D5ZJYOGOC0H8K5XESK5XF2' where id=13; -update noar ti set v3='NBBHLV3YQB5D5ZJYOGOC0H8K5XESK5XF2' where id=13; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='RH3FVYGUKGXSSCHZPZRBR71SF4MQSPBLP' where id=14; -update noar ti set v0='RH3FVYGUKGXSSCHZPZRBR71SF4MQSPBLP' where id=14; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='8BZQD8O0S0X3CTIXK4B1R3QAWNUJZWL8E' where id=14; -update noar ti set v1='8BZQD8O0S0X3CTIXK4B1R3QAWNUJZWL8E' where id=14; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='TO8OJNYUK4UDMBJ217893S818K3VXRP76' where id=14; -update noar ti set v2='TO8OJNYUK4UDMBJ217893S818K3VXRP76' where id=14; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='AIP2RSZ7BM6J8W6HOBTWGKN4UXAUFVHDO' where id=14; -update noar ti set v3='AIP2RSZ7BM6J8W6HOBTWGKN4UXAUFVHDO' where id=14; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='DDR470GJVTIJXBMKR1UYTPWE98RA8X99X' where id=15; -update noar ti set v0='DDR470GJVTIJXBMKR1UYTPWE98RA8X99X' where id=15; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='GPSAJ70ZQDYTMUBZ85HHREVYSYFUYBUBB' where id=15; -update noar ti set v1='GPSAJ70ZQDYTMUBZ85HHREVYSYFUYBUBB' where id=15; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='V617AYHE1PSVO3SB6SINQJ8JWEZV14MBE' where id=15; -update noar ti set v2='V617AYHE1PSVO3SB6SINQJ8JWEZV14MBE' where id=15; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='I1WMQKDSS40M8Y59YDCYF80FZ3AUUZIXP' where id=15; -update noar ti set v3='I1WMQKDSS40M8Y59YDCYF80FZ3AUUZIXP' where id=15; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='MG4LKIVDTV26501IOAWX2LPOWWYXUM3BA' where id=16; -update noar ti set v0='MG4LKIVDTV26501IOAWX2LPOWWYXUM3BA' where id=16; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='GC4XSGQ7R9YRGWW05LDJZDFJ00D2Z5ANZ' where id=16; -update noar ti set v1='GC4XSGQ7R9YRGWW05LDJZDFJ00D2Z5ANZ' where id=16; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='OPFIIFO3L4492C6BPB8BKGQXZBILAO3ER' where id=16; -update noar ti set v2='OPFIIFO3L4492C6BPB8BKGQXZBILAO3ER' where id=16; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='97AOS93FGU3NRP8GQDBDX8TGK4F8YB6NG' where id=16; -update noar ti set v3='97AOS93FGU3NRP8GQDBDX8TGK4F8YB6NG' where id=16; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='WXNFNF2VBEFQMR1UZG9QPI06BJVIPLOZN' where id=17; -update noar ti set v0='WXNFNF2VBEFQMR1UZG9QPI06BJVIPLOZN' where id=17; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='2L1O8ETO2PJB0YZMIQUGA1PFXFRKS95O7' where id=17; -update noar ti set v1='2L1O8ETO2PJB0YZMIQUGA1PFXFRKS95O7' where id=17; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='S9ECH1HUYNSFSL30V8W5D4OE26HLNUFAQ' where id=17; -update noar ti set v2='S9ECH1HUYNSFSL30V8W5D4OE26HLNUFAQ' where id=17; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='DZANTZKACCGAASTTXK0FJIVHXOWH4AGNB' where id=17; -update noar ti set v3='DZANTZKACCGAASTTXK0FJIVHXOWH4AGNB' where id=17; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='IEG3RW11RLW5TGA4YFW9ZK8T4RTA9CVME' where id=18; -update noar ti set v0='IEG3RW11RLW5TGA4YFW9ZK8T4RTA9CVME' where id=18; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='R9EU9GRHHQG3P47YCRXN55RMM5V90T2ZY' where id=18; -update noar ti set v1='R9EU9GRHHQG3P47YCRXN55RMM5V90T2ZY' where id=18; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='EKILZ01W3LBC1NUWRRMSBKP1BD17IVDC9' where id=18; -update noar ti set v2='EKILZ01W3LBC1NUWRRMSBKP1BD17IVDC9' where id=18; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='GFDKSWC5YC4SOGIS640IPXBP9MYDIMWHE' where id=18; -update noar ti set v3='GFDKSWC5YC4SOGIS640IPXBP9MYDIMWHE' where id=18; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='W77FM5AWKG4DF3T8FPTP38NLUZWREVXYE' where id=19; -update noar ti set v0='W77FM5AWKG4DF3T8FPTP38NLUZWREVXYE' where id=19; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='I9JYBB78EUW30IUQXIXKNPV9PPNO57ZXD' where id=19; -update noar ti set v1='I9JYBB78EUW30IUQXIXKNPV9PPNO57ZXD' where id=19; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='7VL9TOKT6HAR9687A61PGBLIMWTA6DFIW' where id=19; -update noar ti set v2='7VL9TOKT6HAR9687A61PGBLIMWTA6DFIW' where id=19; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='0JF5PXKJLKAMGA7E9X8EWSXNWK2MUPVUT' where id=19; -update noar ti set v3='0JF5PXKJLKAMGA7E9X8EWSXNWK2MUPVUT' where id=19; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='HEFACTG7YYF1Z1JGMXV669FGJF0I2P0BF' where id=20; -update noar ti set v0='HEFACTG7YYF1Z1JGMXV669FGJF0I2P0BF' where id=20; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='OO7UJU0KTNQNNUQM4BPHXJUJNAKKSBS2T' where id=20; -update noar ti set v1='OO7UJU0KTNQNNUQM4BPHXJUJNAKKSBS2T' where id=20; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='4NQF6FLJH4YMYLRA1HY3HMC52USSIVTY7' where id=20; -update noar ti set v2='4NQF6FLJH4YMYLRA1HY3HMC52USSIVTY7' where id=20; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='DWQVRTFYPOB8ZTPBEKQ8J3YR130VZ2ZLW' where id=20; -update noar ti set v3='DWQVRTFYPOB8ZTPBEKQ8J3YR130VZ2ZLW' where id=20; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='5W456K1N1MDUTNUXVYGTMOSM7F4OM4OMS' where id=21; -update noar ti set v0='5W456K1N1MDUTNUXVYGTMOSM7F4OM4OMS' where id=21; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='47T3ULSER9YHQR18PVVBGQ9UEJV5CK47V' where id=21; -update noar ti set v1='47T3ULSER9YHQR18PVVBGQ9UEJV5CK47V' where id=21; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='MHF1OT9LL8DYO4MIH4TET9JZVUSSYOV34' where id=21; -update noar ti set v2='MHF1OT9LL8DYO4MIH4TET9JZVUSSYOV34' where id=21; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='MI47BUFMW8RE0UUK84CNU0ST2NBSMYNU8' where id=21; -update noar ti set v3='MI47BUFMW8RE0UUK84CNU0ST2NBSMYNU8' where id=21; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='CK794DCXV3DJ807LN5MRA69RDSEGISSWH' where id=22; -update noar ti set v0='CK794DCXV3DJ807LN5MRA69RDSEGISSWH' where id=22; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='S14ZD8B01EAB5PHS6LV3DIPXD6RFLPAHO' where id=22; -update noar ti set v1='S14ZD8B01EAB5PHS6LV3DIPXD6RFLPAHO' where id=22; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='LHDMH1H8G4S1WW2HSOD1JFGDV8KFBPYE0' where id=22; -update noar ti set v2='LHDMH1H8G4S1WW2HSOD1JFGDV8KFBPYE0' where id=22; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='PGXO0ZDSYAIJMKHNX7O1O30HID1JSTIZ7' where id=22; -update noar ti set v3='PGXO0ZDSYAIJMKHNX7O1O30HID1JSTIZ7' where id=22; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='WVLICYCYR4S9ZULQ83EENNL4YGWC73HYF' where id=23; -update noar ti set v0='WVLICYCYR4S9ZULQ83EENNL4YGWC73HYF' where id=23; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='CB70NXN6B2QHKYOWDXJ2U5LL0UD1WWVNZ' where id=23; -update noar ti set v1='CB70NXN6B2QHKYOWDXJ2U5LL0UD1WWVNZ' where id=23; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='HPKTN3F4P62UENMPQDUMS9C2TMW2Y0AV2' where id=23; -update noar ti set v2='HPKTN3F4P62UENMPQDUMS9C2TMW2Y0AV2' where id=23; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='036NGPDY8WTTM5M35C2PSWAK1XL2J4O7V' where id=23; -update noar ti set v3='036NGPDY8WTTM5M35C2PSWAK1XL2J4O7V' where id=23; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='CFSKBV9QMMYMH5D1MI3BKXUYVDDGLG98E' where id=24; -update noar ti set v0='CFSKBV9QMMYMH5D1MI3BKXUYVDDGLG98E' where id=24; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='4CCX1OCX0CE3T8XZ96HA6VX6FGKPGPY96' where id=24; -update noar ti set v1='4CCX1OCX0CE3T8XZ96HA6VX6FGKPGPY96' where id=24; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='SIYRIZQX5AXVNRMVX5F0W3L6832E0K6H4' where id=24; -update noar ti set v2='SIYRIZQX5AXVNRMVX5F0W3L6832E0K6H4' where id=24; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='FX62E6T8XI4GDS00N6L79TXAY0F2BCF4S' where id=24; -update noar ti set v3='FX62E6T8XI4GDS00N6L79TXAY0F2BCF4S' where id=24; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='ST5L6MEOLSDA060YFHTP47S0I87QQB6L3' where id=25; -update noar ti set v0='ST5L6MEOLSDA060YFHTP47S0I87QQB6L3' where id=25; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='A091Z1Q9QJL4E5D2FLS27MYW8UUABCLF9' where id=25; -update noar ti set v1='A091Z1Q9QJL4E5D2FLS27MYW8UUABCLF9' where id=25; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='HYBQ7XV6HV0HYI3QCZYT4CUX38ZCN8S70' where id=25; -update noar ti set v2='HYBQ7XV6HV0HYI3QCZYT4CUX38ZCN8S70' where id=25; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='JNOLKOLVV4R72PCMLORCWWU7M1BG7BIZR' where id=25; -update noar ti set v3='JNOLKOLVV4R72PCMLORCWWU7M1BG7BIZR' where id=25; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='MD4DSLDI07LPA90H1XQNSV3TGM9LBXPWJ' where id=26; -update noar ti set v0='MD4DSLDI07LPA90H1XQNSV3TGM9LBXPWJ' where id=26; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='J3LCONXH4O9HQLI7DWYAAZ9GOGMZIO3P5' where id=26; -update noar ti set v1='J3LCONXH4O9HQLI7DWYAAZ9GOGMZIO3P5' where id=26; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='155FN4UEQD5QXM0ZWDHCVYWO1L4T7LYBE' where id=26; -update noar ti set v2='155FN4UEQD5QXM0ZWDHCVYWO1L4T7LYBE' where id=26; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='DJJ2DRL31ZAEFNQ1Q4MYUORS9X3OVLO2X' where id=26; -update noar ti set v3='DJJ2DRL31ZAEFNQ1Q4MYUORS9X3OVLO2X' where id=26; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='ESDC76FIG5DPRG0IJ97PGKB6K87U9WIWK' where id=27; -update noar ti set v0='ESDC76FIG5DPRG0IJ97PGKB6K87U9WIWK' where id=27; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='ELWR3BV7Y78Y61B2HVHPFO1K56H0RW866' where id=27; -update noar ti set v1='ELWR3BV7Y78Y61B2HVHPFO1K56H0RW866' where id=27; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='2ZJQRVPGMU71SAKDCOCU405S8QHI21O8T' where id=27; -update noar ti set v2='2ZJQRVPGMU71SAKDCOCU405S8QHI21O8T' where id=27; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='GKX9LBORKVFG9BL7IIKGPH4GOWZFXXCLE' where id=27; -update noar ti set v3='GKX9LBORKVFG9BL7IIKGPH4GOWZFXXCLE' where id=27; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='NX882U918NUAYDJRLLQF4WDCWPSEI23XK' where id=28; -update noar ti set v0='NX882U918NUAYDJRLLQF4WDCWPSEI23XK' where id=28; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='55IH4Q3ZA6SGR0UMVZITJHXN4N3BW92W0' where id=28; -update noar ti set v1='55IH4Q3ZA6SGR0UMVZITJHXN4N3BW92W0' where id=28; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='PBKRHDGVRKON2Z8JO7DD4C81BNG569KQ4' where id=28; -update noar ti set v2='PBKRHDGVRKON2Z8JO7DD4C81BNG569KQ4' where id=28; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='A1Y2OLPE36VRI9U678V7OCCSV75IEPQFL' where id=28; -update noar ti set v3='A1Y2OLPE36VRI9U678V7OCCSV75IEPQFL' where id=28; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='RGU4YM87704N645N1I0ME54LNJ9XOVS3X' where id=29; -update noar ti set v0='RGU4YM87704N645N1I0ME54LNJ9XOVS3X' where id=29; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='HNA2T6A8VWXR6WRJ9MY6YLSCVAQQXY3M7' where id=29; -update noar ti set v1='HNA2T6A8VWXR6WRJ9MY6YLSCVAQQXY3M7' where id=29; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='9ZES4AMD4RX4ZR6QR7OFG0BSGHMBH8883' where id=29; -update noar ti set v2='9ZES4AMD4RX4ZR6QR7OFG0BSGHMBH8883' where id=29; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='AEG2C7QKLAN9V1FGFXBDK3VHHQG20NOWJ' where id=29; -update noar ti set v3='AEG2C7QKLAN9V1FGFXBDK3VHHQG20NOWJ' where id=29; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='N1WGIZC6RP2DPM8HU5VCZD56JVGSCT4X1' where id=30; -update noar ti set v0='N1WGIZC6RP2DPM8HU5VCZD56JVGSCT4X1' where id=30; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='9RHMWTVFDF6NN44UTAQETOOOUAQ7LN65Q' where id=30; -update noar ti set v1='9RHMWTVFDF6NN44UTAQETOOOUAQ7LN65Q' where id=30; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='1C5XLYIPYJVT2K0GJH8I3GHWAKHURD193' where id=30; -update noar ti set v2='1C5XLYIPYJVT2K0GJH8I3GHWAKHURD193' where id=30; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='73YSFPFLAMB492LE0G12WGKWYILPZA9BS' where id=30; -update noar ti set v3='73YSFPFLAMB492LE0G12WGKWYILPZA9BS' where id=30; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='SXB26E99E82FGNP6Y7EIDN3PIDXEMQSLO' where id=31; -update noar ti set v0='SXB26E99E82FGNP6Y7EIDN3PIDXEMQSLO' where id=31; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='UR9A8MO1JR4HRQC3ILU47FI2RBGHSHJSA' where id=31; -update noar ti set v1='UR9A8MO1JR4HRQC3ILU47FI2RBGHSHJSA' where id=31; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='H6QL8DDX982E9ITL50L00XYTBGM0A77JC' where id=31; -update noar ti set v2='H6QL8DDX982E9ITL50L00XYTBGM0A77JC' where id=31; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='4GNP22WVLSQ4XWGZ5C9WEJ6XQ17O7FVFB' where id=31; -update noar ti set v3='4GNP22WVLSQ4XWGZ5C9WEJ6XQ17O7FVFB' where id=31; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='DRK4DE6NEW3L64L9IPJFWPMYS1UK4OTZW' where id=32; -update noar ti set v0='DRK4DE6NEW3L64L9IPJFWPMYS1UK4OTZW' where id=32; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='4390UJUYHQ3L8ZF61IQCJQCMD9749L5JI' where id=32; -update noar ti set v1='4390UJUYHQ3L8ZF61IQCJQCMD9749L5JI' where id=32; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='KZHVCPKBY0VKE4VL64LHEDUU6HZ7ZMQVT' where id=32; -update noar ti set v2='KZHVCPKBY0VKE4VL64LHEDUU6HZ7ZMQVT' where id=32; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='2RBUEST1JBBCSGRRA747QGH0SEWEYMT0U' where id=32; -update noar ti set v3='2RBUEST1JBBCSGRRA747QGH0SEWEYMT0U' where id=32; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='7RCZP79131SPLJCZWTELLCSM2D06HH4HS' where id=33; -update noar ti set v0='7RCZP79131SPLJCZWTELLCSM2D06HH4HS' where id=33; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='B6CK2P0D4Q356BAC43DWHSK5OJ8Y3HQZN' where id=33; -update noar ti set v1='B6CK2P0D4Q356BAC43DWHSK5OJ8Y3HQZN' where id=33; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='2F6RG5KMIUP336XER6IDE2AWEZ1FNH1T6' where id=33; -update noar ti set v2='2F6RG5KMIUP336XER6IDE2AWEZ1FNH1T6' where id=33; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='KRPW7E7Z1C7SZP1UN9IFVXFBKHF85YK53' where id=33; -update noar ti set v3='KRPW7E7Z1C7SZP1UN9IFVXFBKHF85YK53' where id=33; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='QNUNJBUZ1FK4MCZ23HHGAXOSEAXT0KR9W' where id=34; -update noar ti set v0='QNUNJBUZ1FK4MCZ23HHGAXOSEAXT0KR9W' where id=34; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='UY513WZ30POA6498F5LN1SF72OP5QFUUL' where id=34; -update noar ti set v1='UY513WZ30POA6498F5LN1SF72OP5QFUUL' where id=34; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='DKEFMEFDK98VY4S4RO0N5LNFWRN9FSZUV' where id=34; -update noar ti set v2='DKEFMEFDK98VY4S4RO0N5LNFWRN9FSZUV' where id=34; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='1JIMNYCI3DIYDUNAE3PGYRYDUNCKVPTBT' where id=34; -update noar ti set v3='1JIMNYCI3DIYDUNAE3PGYRYDUNCKVPTBT' where id=34; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='9ZR89KBUA2FOKG6TS070CCPVFTZIJN1I0' where id=35; -update noar ti set v0='9ZR89KBUA2FOKG6TS070CCPVFTZIJN1I0' where id=35; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='7D59AS2WW3XDXFGT47GIP697J8TVA743S' where id=35; -update noar ti set v1='7D59AS2WW3XDXFGT47GIP697J8TVA743S' where id=35; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='OQXN5LBC4DV58KNIVU921B8WSAOW451GI' where id=35; -update noar ti set v2='OQXN5LBC4DV58KNIVU921B8WSAOW451GI' where id=35; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='WGNH9I1TF7KKJ9O82PVHVAC5M98BQI8OG' where id=35; -update noar ti set v3='WGNH9I1TF7KKJ9O82PVHVAC5M98BQI8OG' where id=35; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='V2K6M004XBVTSTHX9C0GXFNY90FP3AF4W' where id=36; -update noar ti set v0='V2K6M004XBVTSTHX9C0GXFNY90FP3AF4W' where id=36; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='AHS1XOZXG81WIDW5D6ZZRML5Y1DLMYH2A' where id=36; -update noar ti set v1='AHS1XOZXG81WIDW5D6ZZRML5Y1DLMYH2A' where id=36; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='RYNTCSYP7WAYT02H9OMJ5JBOBETQEKVOK' where id=36; -update noar ti set v2='RYNTCSYP7WAYT02H9OMJ5JBOBETQEKVOK' where id=36; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='ZPZCJZQN6PMG5ZS5QN69OBVMTLFXRR8ZL' where id=36; -update noar ti set v3='ZPZCJZQN6PMG5ZS5QN69OBVMTLFXRR8ZL' where id=36; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='8IVANXGSTLQ3YTV1GIRDUR5HOVS1SEX9O' where id=37; -update noar ti set v0='8IVANXGSTLQ3YTV1GIRDUR5HOVS1SEX9O' where id=37; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='ONT0M1R9TLBHE6PAZ6FQQG5C32PS3T51G' where id=37; -update noar ti set v1='ONT0M1R9TLBHE6PAZ6FQQG5C32PS3T51G' where id=37; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='HT3WH7N2MAX6Q7TE3FGB42LFRYFQBGSAC' where id=37; -update noar ti set v2='HT3WH7N2MAX6Q7TE3FGB42LFRYFQBGSAC' where id=37; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='C8UIWZCW2LUS4S2TXLLDAE1N46OQZLETC' where id=37; -update noar ti set v3='C8UIWZCW2LUS4S2TXLLDAE1N46OQZLETC' where id=37; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='HSJ4DRGWMSRJ9ELKF8MTEO0JUOCTJFXJY' where id=38; -update noar ti set v0='HSJ4DRGWMSRJ9ELKF8MTEO0JUOCTJFXJY' where id=38; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='2T5AKG48718GP6082Y6DJLOPJ50QES0PN' where id=38; -update noar ti set v1='2T5AKG48718GP6082Y6DJLOPJ50QES0PN' where id=38; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='VAVBE7XGCPILUWCU6S5B2K0MEUHJTKEWO' where id=38; -update noar ti set v2='VAVBE7XGCPILUWCU6S5B2K0MEUHJTKEWO' where id=38; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='ZTJ0R4TK4L95TVAQXAPMR78PXDFMEB07E' where id=38; -update noar ti set v3='ZTJ0R4TK4L95TVAQXAPMR78PXDFMEB07E' where id=38; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='WGTN6HRVCAFU7WME0EQJE4RDX9TG8MI2N' where id=39; -update noar ti set v0='WGTN6HRVCAFU7WME0EQJE4RDX9TG8MI2N' where id=39; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='4GMDL9HSBRIJC9N73NSN4NHKMIKOPGFI1' where id=39; -update noar ti set v1='4GMDL9HSBRIJC9N73NSN4NHKMIKOPGFI1' where id=39; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='NAY0H6O3OZWM38GYA56N55SCWFC4VW4HG' where id=39; -update noar ti set v2='NAY0H6O3OZWM38GYA56N55SCWFC4VW4HG' where id=39; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='EAS4VE6TVICZN935H74PV87TSH89BZXCE' where id=39; -update noar ti set v3='EAS4VE6TVICZN935H74PV87TSH89BZXCE' where id=39; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='QX726B4678INQ678FWVTGX9WQUIC48QKK' where id=40; -update noar ti set v0='QX726B4678INQ678FWVTGX9WQUIC48QKK' where id=40; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='9459TT7K7N1MPKDFBYSIN0PAT1S9VWTFQ' where id=40; -update noar ti set v1='9459TT7K7N1MPKDFBYSIN0PAT1S9VWTFQ' where id=40; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='Q7W3AYPPLMMAX0DWWD8PR9DCM624DJSRV' where id=40; -update noar ti set v2='Q7W3AYPPLMMAX0DWWD8PR9DCM624DJSRV' where id=40; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='YQ5RFJ2ROQYRY7ARLGZ1RN5WHMBJOIG7S' where id=40; -update noar ti set v3='YQ5RFJ2ROQYRY7ARLGZ1RN5WHMBJOIG7S' where id=40; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='4LWS3REU2R5V12F63N5WE4MCP5SB0NPQA' where id=41; -update noar ti set v0='4LWS3REU2R5V12F63N5WE4MCP5SB0NPQA' where id=41; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='37DM7X8YVGETVCCLFVS6TL6SL33ZUYK6N' where id=41; -update noar ti set v1='37DM7X8YVGETVCCLFVS6TL6SL33ZUYK6N' where id=41; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='DFF00QDEEF22SQK0XA5A9G21F6GE0DKAT' where id=41; -update noar ti set v2='DFF00QDEEF22SQK0XA5A9G21F6GE0DKAT' where id=41; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='TI1H7LFTTWUBBTF9L62SS5SDTNHKRIMGV' where id=41; -update noar ti set v3='TI1H7LFTTWUBBTF9L62SS5SDTNHKRIMGV' where id=41; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='KPG0UO65554LAFUSSIFQ30ICFOQ06PXPA' where id=42; -update noar ti set v0='KPG0UO65554LAFUSSIFQ30ICFOQ06PXPA' where id=42; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='TEZFDX8D6EVATEZXY5RUP8TKZRADQK0GW' where id=42; -update noar ti set v1='TEZFDX8D6EVATEZXY5RUP8TKZRADQK0GW' where id=42; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='GQFCTJS98GHV3F26G7GK2PT5NSMMAA6CH' where id=42; -update noar ti set v2='GQFCTJS98GHV3F26G7GK2PT5NSMMAA6CH' where id=42; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='OC2W4Q38SZ65NJ6STUODVNZ2C02B3CSLD' where id=42; -update noar ti set v3='OC2W4Q38SZ65NJ6STUODVNZ2C02B3CSLD' where id=42; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='T27I57X77K6YCLUDI73JW7USXKFBJKA0F' where id=43; -update noar ti set v0='T27I57X77K6YCLUDI73JW7USXKFBJKA0F' where id=43; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='VA9YRPYO4GF4RXLWSLZ5JOXDJ5HGHMBKK' where id=43; -update noar ti set v1='VA9YRPYO4GF4RXLWSLZ5JOXDJ5HGHMBKK' where id=43; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='5LHZ7A46PJ8IABOPK3UVKTOHVMZA7J2EY' where id=43; -update noar ti set v2='5LHZ7A46PJ8IABOPK3UVKTOHVMZA7J2EY' where id=43; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='COLCOM6R1SETG64BKZ3B95SHB32DU8TRN' where id=43; -update noar ti set v3='COLCOM6R1SETG64BKZ3B95SHB32DU8TRN' where id=43; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='NSKD5FY2WQZG8YD8ZT5LKVRLCXYMFDBT8' where id=44; -update noar ti set v0='NSKD5FY2WQZG8YD8ZT5LKVRLCXYMFDBT8' where id=44; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='E8RN2RYRTDGG5FOWPR5CBJHXLQUUR157Y' where id=44; -update noar ti set v1='E8RN2RYRTDGG5FOWPR5CBJHXLQUUR157Y' where id=44; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='EPRU7R48RJWR6Y7DVA9WZMCTI0HVT9ORH' where id=44; -update noar ti set v2='EPRU7R48RJWR6Y7DVA9WZMCTI0HVT9ORH' where id=44; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='1812OQ1ATY0MJLNQQU3QMPKI7G4MJNSUS' where id=44; -update noar ti set v3='1812OQ1ATY0MJLNQQU3QMPKI7G4MJNSUS' where id=44; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='ZTDTZADNHTWY7BH2AGHAILRVYYE1R3H39' where id=45; -update noar ti set v0='ZTDTZADNHTWY7BH2AGHAILRVYYE1R3H39' where id=45; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='X1BCYWXUWODHYBPOAERYOQT1ARJ6RSD02' where id=45; -update noar ti set v1='X1BCYWXUWODHYBPOAERYOQT1ARJ6RSD02' where id=45; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='Y7UV22XZ7ZP5961REQUIT3JTOVHVLI0OD' where id=45; -update noar ti set v2='Y7UV22XZ7ZP5961REQUIT3JTOVHVLI0OD' where id=45; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='G7DY4RERWJDSAYOL521JZOCXSQDLEEOI0' where id=45; -update noar ti set v3='G7DY4RERWJDSAYOL521JZOCXSQDLEEOI0' where id=45; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='NA21FUNZ92D94NXIB5Z5Q3BK55YH59R04' where id=46; -update noar ti set v0='NA21FUNZ92D94NXIB5Z5Q3BK55YH59R04' where id=46; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='9TO9ABF3KTVGDLB1I0H7OPNY8JQDX5T7F' where id=46; -update noar ti set v1='9TO9ABF3KTVGDLB1I0H7OPNY8JQDX5T7F' where id=46; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='6V811OH844BBI7VG00FRSRNZNRBMGYWC7' where id=46; -update noar ti set v2='6V811OH844BBI7VG00FRSRNZNRBMGYWC7' where id=46; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='225PMJV2D2MIYEPR26A46N5NCN8RFBN5L' where id=46; -update noar ti set v3='225PMJV2D2MIYEPR26A46N5NCN8RFBN5L' where id=46; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='1SO0B8ZRX54P19QDN20SGPVNMACDFYV3K' where id=47; -update noar ti set v0='1SO0B8ZRX54P19QDN20SGPVNMACDFYV3K' where id=47; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='741RH13OZT17CH11BD2QLD8RCQDOCOCK6' where id=47; -update noar ti set v1='741RH13OZT17CH11BD2QLD8RCQDOCOCK6' where id=47; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='I2V0N77TSE742033A7AQK5Y8PYL82W6YE' where id=47; -update noar ti set v2='I2V0N77TSE742033A7AQK5Y8PYL82W6YE' where id=47; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='8YFXJH16U493FMJCSEPGNWN0FKQD0T7PQ' where id=47; -update noar ti set v3='8YFXJH16U493FMJCSEPGNWN0FKQD0T7PQ' where id=47; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='YBKAK07ZWAXOK8I8ZXORSASJH2V3HNIVY' where id=48; -update noar ti set v0='YBKAK07ZWAXOK8I8ZXORSASJH2V3HNIVY' where id=48; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='RBMVMXEXCT1P67PMTTH5VF1JT4W7DALMS' where id=48; -update noar ti set v1='RBMVMXEXCT1P67PMTTH5VF1JT4W7DALMS' where id=48; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='PWU2S2SW67CKD97SD5OQ3FFW4RBO9RSLN' where id=48; -update noar ti set v2='PWU2S2SW67CKD97SD5OQ3FFW4RBO9RSLN' where id=48; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='A0O0ZK57IQ6RKFGR2DB38QONLZ9H97FCH' where id=48; -update noar ti set v3='A0O0ZK57IQ6RKFGR2DB38QONLZ9H97FCH' where id=48; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='UD5E38ESCEKY62OO2S0T9BBYNYKSP6S1T' where id=49; -update noar ti set v0='UD5E38ESCEKY62OO2S0T9BBYNYKSP6S1T' where id=49; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='U6N91XTYZRKYEDEGCKRT2N54JNGTBWO3M' where id=49; -update noar ti set v1='U6N91XTYZRKYEDEGCKRT2N54JNGTBWO3M' where id=49; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='VKJMTDP90CZSYSRKX4P76Q5PZV4H9UMNV' where id=49; -update noar ti set v2='VKJMTDP90CZSYSRKX4P76Q5PZV4H9UMNV' where id=49; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='CNOFFG1MH0OU8AVJM10SIT87NXKW5H59N' where id=49; -update noar ti set v3='CNOFFG1MH0OU8AVJM10SIT87NXKW5H59N' where id=49; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='P812RC62SIBWQXGBCS605N9S6E18NRGV4' where id=50; -update noar ti set v0='P812RC62SIBWQXGBCS605N9S6E18NRGV4' where id=50; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='QHC8S5VT9AVA5YGTUAW3VLRKUGZVXGNVA' where id=50; -update noar ti set v1='QHC8S5VT9AVA5YGTUAW3VLRKUGZVXGNVA' where id=50; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='CJGT889VWMRR3VWAHHX3I9BQ883302YUV' where id=50; -update noar ti set v2='CJGT889VWMRR3VWAHHX3I9BQ883302YUV' where id=50; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='00O79WCJKM9P95GRHM83WO18PKZZ7ZL5D' where id=50; -update noar ti set v3='00O79WCJKM9P95GRHM83WO18PKZZ7ZL5D' where id=50; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='28OB8OSV18E0UPVBFBZKI42E2LY7EAVLF' where id=51; -update noar ti set v0='28OB8OSV18E0UPVBFBZKI42E2LY7EAVLF' where id=51; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='S8FSD4Y7IPA7IBII7DM6TYWY23HX03XGH' where id=51; -update noar ti set v1='S8FSD4Y7IPA7IBII7DM6TYWY23HX03XGH' where id=51; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='79H4LSLH9C31HPCSNMKZGMF0L9ZPTKUXS' where id=51; -update noar ti set v2='79H4LSLH9C31HPCSNMKZGMF0L9ZPTKUXS' where id=51; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='NYF45SOB5E9NUXCN1UHR2JFSX4FH5SBX8' where id=51; -update noar ti set v3='NYF45SOB5E9NUXCN1UHR2JFSX4FH5SBX8' where id=51; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='L5AGQXZZQSVF6V997ZY71MDEKXBHV6M20' where id=52; -update noar ti set v0='L5AGQXZZQSVF6V997ZY71MDEKXBHV6M20' where id=52; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='ZX0IME7TZE8YTKDMTTW25YOH8XJ5B33RM' where id=52; -update noar ti set v1='ZX0IME7TZE8YTKDMTTW25YOH8XJ5B33RM' where id=52; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='S2U46H5RPOPPSHGFRYSLANRA32XWEX1LN' where id=52; -update noar ti set v2='S2U46H5RPOPPSHGFRYSLANRA32XWEX1LN' where id=52; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='B4R4JBRO0KJ402ALGLT7AAO35QDDVI1JI' where id=52; -update noar ti set v3='B4R4JBRO0KJ402ALGLT7AAO35QDDVI1JI' where id=52; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='FX574IZ99KXXQG64AR38DMMIC7USB05SD' where id=53; -update noar ti set v0='FX574IZ99KXXQG64AR38DMMIC7USB05SD' where id=53; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='S4JNMCD91RH8WD5XIK8QGRZELGTF08M1B' where id=53; -update noar ti set v1='S4JNMCD91RH8WD5XIK8QGRZELGTF08M1B' where id=53; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='E3ZNO9XQ2NK7C4KO8NL9LGAJJDD7X8RE5' where id=53; -update noar ti set v2='E3ZNO9XQ2NK7C4KO8NL9LGAJJDD7X8RE5' where id=53; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='RBA9KV3R1UIG6V83R6LZ00OZ16BB0LZ7O' where id=53; -update noar ti set v3='RBA9KV3R1UIG6V83R6LZ00OZ16BB0LZ7O' where id=53; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='QPO42ZYUTZMH8M9C6G7MONKLA92Q95SBF' where id=54; -update noar ti set v0='QPO42ZYUTZMH8M9C6G7MONKLA92Q95SBF' where id=54; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='2MACK1ERN0WK90FFUNTT6006ICJ7D881N' where id=54; -update noar ti set v1='2MACK1ERN0WK90FFUNTT6006ICJ7D881N' where id=54; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='LND86O8W9AP505H336MHTBONZQB1OHZZQ' where id=54; -update noar ti set v2='LND86O8W9AP505H336MHTBONZQB1OHZZQ' where id=54; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='UXBQT496TN75ZEYTB8FVRQCI6AYQLQMSN' where id=54; -update noar ti set v3='UXBQT496TN75ZEYTB8FVRQCI6AYQLQMSN' where id=54; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='PLTWOC7H04M5FOTV6UFI1SIRJ6PC4NUYR' where id=55; -update noar ti set v0='PLTWOC7H04M5FOTV6UFI1SIRJ6PC4NUYR' where id=55; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='RGL8W2DNKNHWGPW4N2M1NDBOARH91T9AR' where id=55; -update noar ti set v1='RGL8W2DNKNHWGPW4N2M1NDBOARH91T9AR' where id=55; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='HCEZBXWCLOR3QP22Y30THHNPPB58AAL7G' where id=55; -update noar ti set v2='HCEZBXWCLOR3QP22Y30THHNPPB58AAL7G' where id=55; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='JD6LJXFQ1C0BEH34RBRQ6CMO83M5PFY9C' where id=55; -update noar ti set v3='JD6LJXFQ1C0BEH34RBRQ6CMO83M5PFY9C' where id=55; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='6F0PQ6PJ956Z52O0UCAZIVQHKYMKNWP7C' where id=56; -update noar ti set v0='6F0PQ6PJ956Z52O0UCAZIVQHKYMKNWP7C' where id=56; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='0TIMH0J9RYFPH70LLB9CEFAX7RP44Y97B' where id=56; -update noar ti set v1='0TIMH0J9RYFPH70LLB9CEFAX7RP44Y97B' where id=56; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='60ZNZMTADX9WTK0AMKCKVWGUBX66FGC30' where id=56; -update noar ti set v2='60ZNZMTADX9WTK0AMKCKVWGUBX66FGC30' where id=56; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='R5DNMFQ3ZZ4CCUENGPVB3KC3UK4TKI3OH' where id=56; -update noar ti set v3='R5DNMFQ3ZZ4CCUENGPVB3KC3UK4TKI3OH' where id=56; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='39V33N09U4CF4UHTPXH6YMJ3HZJXC2HMH' where id=57; -update noar ti set v0='39V33N09U4CF4UHTPXH6YMJ3HZJXC2HMH' where id=57; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='873FWSLK5N7NLC4EZ3RFI9VL6QKLVKEMK' where id=57; -update noar ti set v1='873FWSLK5N7NLC4EZ3RFI9VL6QKLVKEMK' where id=57; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='UXW5GE2L9YHO6BRWP30BK09Q0IM590DDR' where id=57; -update noar ti set v2='UXW5GE2L9YHO6BRWP30BK09Q0IM590DDR' where id=57; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='BYDXX4IV634E48M2XP2XT5S4X5Q6I6U9Y' where id=57; -update noar ti set v3='BYDXX4IV634E48M2XP2XT5S4X5Q6I6U9Y' where id=57; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='PNBTJLSJRIOR6C3S77NLL4DU12WQ9N93L' where id=58; -update noar ti set v0='PNBTJLSJRIOR6C3S77NLL4DU12WQ9N93L' where id=58; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='XZSLGUO1A5405C6U0NG2RB08ALAWV6X5R' where id=58; -update noar ti set v1='XZSLGUO1A5405C6U0NG2RB08ALAWV6X5R' where id=58; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='SMX3RD2OPJ00HSV3LOB7SXVB4S5ZSUZ5R' where id=58; -update noar ti set v2='SMX3RD2OPJ00HSV3LOB7SXVB4S5ZSUZ5R' where id=58; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='MVTRS71Q1QOZEXR7RMZ719XGS4PF0OIYD' where id=58; -update noar ti set v3='MVTRS71Q1QOZEXR7RMZ719XGS4PF0OIYD' where id=58; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='1IQXUCLU60IVP95D8CTTJ84LJBKUP5281' where id=59; -update noar ti set v0='1IQXUCLU60IVP95D8CTTJ84LJBKUP5281' where id=59; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='EVU1YYQ5I93N40T3GSHEMAXINU1OLI6DF' where id=59; -update noar ti set v1='EVU1YYQ5I93N40T3GSHEMAXINU1OLI6DF' where id=59; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='6FXAWIA7W9YOAUFL8PQ7ACUGK2UEVY5YD' where id=59; -update noar ti set v2='6FXAWIA7W9YOAUFL8PQ7ACUGK2UEVY5YD' where id=59; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='DJI5LP9SH2QOIZXQX82OZO0VPE5B8MM63' where id=59; -update noar ti set v3='DJI5LP9SH2QOIZXQX82OZO0VPE5B8MM63' where id=59; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='ZQBAJG3TNI7PHWE3APHMSVCWYIQKIB7D5' where id=60; -update noar ti set v0='ZQBAJG3TNI7PHWE3APHMSVCWYIQKIB7D5' where id=60; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='LENGXXXH8LB0V1C11YLSNJV4P4GDRX886' where id=60; -update noar ti set v1='LENGXXXH8LB0V1C11YLSNJV4P4GDRX886' where id=60; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='AI5HP3552ZV9WOAUCYQFSCRHO2MONZDJ0' where id=60; -update noar ti set v2='AI5HP3552ZV9WOAUCYQFSCRHO2MONZDJ0' where id=60; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='XH4Y1FGRQVYJ4KUL68JXK4AQPPO8WQOVF' where id=60; -update noar ti set v3='XH4Y1FGRQVYJ4KUL68JXK4AQPPO8WQOVF' where id=60; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='6P0EDLNPK2ZUHIP4X6DOQ9ZI23RD88K7O' where id=61; -update noar ti set v0='6P0EDLNPK2ZUHIP4X6DOQ9ZI23RD88K7O' where id=61; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='4HQ62BOQT579T1CVOYP0SKA2UPLLU2QTD' where id=61; -update noar ti set v1='4HQ62BOQT579T1CVOYP0SKA2UPLLU2QTD' where id=61; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='J1U9LJA18760AZQ5SHUUJE1QNBUCM0XWL' where id=61; -update noar ti set v2='J1U9LJA18760AZQ5SHUUJE1QNBUCM0XWL' where id=61; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='IK9RSG1SF9VQTHVAGQPHJK5NHSNDEI004' where id=61; -update noar ti set v3='IK9RSG1SF9VQTHVAGQPHJK5NHSNDEI004' where id=61; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='EULSTNX20UWMKI41Y50A3IJS342IIN7AS' where id=62; -update noar ti set v0='EULSTNX20UWMKI41Y50A3IJS342IIN7AS' where id=62; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='MF5I064OXYNUBH4P6W5BQ1UJYMVGTP1GI' where id=62; -update noar ti set v1='MF5I064OXYNUBH4P6W5BQ1UJYMVGTP1GI' where id=62; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='IB28RE569YI4KX6Q2P19IY8KXTG5RLAZ3' where id=62; -update noar ti set v2='IB28RE569YI4KX6Q2P19IY8KXTG5RLAZ3' where id=62; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='31WVQ919FJA3HTPLNENVLZNDK18QFE6P6' where id=62; -update noar ti set v3='31WVQ919FJA3HTPLNENVLZNDK18QFE6P6' where id=62; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='VSAD6EYW20EBWUFG0MG5D9VFHPYU1KTBQ' where id=63; -update noar ti set v0='VSAD6EYW20EBWUFG0MG5D9VFHPYU1KTBQ' where id=63; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='KPTMK64O8P5BOGYKV703F5606HD7I4GU5' where id=63; -update noar ti set v1='KPTMK64O8P5BOGYKV703F5606HD7I4GU5' where id=63; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='ONYEURNEZT7FZ5A4NT4TLI6MC3VRXFROH' where id=63; -update noar ti set v2='ONYEURNEZT7FZ5A4NT4TLI6MC3VRXFROH' where id=63; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='U2F2GD4J0QGRMGMHNFVY7XAK3TOPY02X9' where id=63; -update noar ti set v3='U2F2GD4J0QGRMGMHNFVY7XAK3TOPY02X9' where id=63; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='0BQBY1BZ9K9L9STEGRS3S2NVCMCDFGV4K' where id=64; -update noar ti set v0='0BQBY1BZ9K9L9STEGRS3S2NVCMCDFGV4K' where id=64; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='2EO5P7GTH7YPASLBO25RG82G89XRPVJIK' where id=64; -update noar ti set v1='2EO5P7GTH7YPASLBO25RG82G89XRPVJIK' where id=64; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='94BNSO0BB09REGYUUOHIAD0FFXJY61TX4' where id=64; -update noar ti set v2='94BNSO0BB09REGYUUOHIAD0FFXJY61TX4' where id=64; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='HAHN3E7E855AYLHEVJFCSEWFW9L7KTKCH' where id=64; -update noar ti set v3='HAHN3E7E855AYLHEVJFCSEWFW9L7KTKCH' where id=64; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='EJRWHRZX9FR187T5M16SKH78LP7AAC7PD' where id=65; -update noar ti set v0='EJRWHRZX9FR187T5M16SKH78LP7AAC7PD' where id=65; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='6TT6QVN9FF5HJ1DXUXXLZ711QYC7SZCOZ' where id=65; -update noar ti set v1='6TT6QVN9FF5HJ1DXUXXLZ711QYC7SZCOZ' where id=65; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='7ZLQM70K04JXDLG7QR7H0KM47V3UN3MUX' where id=65; -update noar ti set v2='7ZLQM70K04JXDLG7QR7H0KM47V3UN3MUX' where id=65; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='2B2AM2WJ34QZJP7HWYDQO2LYPYNQVLOU9' where id=65; -update noar ti set v3='2B2AM2WJ34QZJP7HWYDQO2LYPYNQVLOU9' where id=65; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='Q154SZTETB5MW5GB6FRVBHVJ5N5V0S3AH' where id=66; -update noar ti set v0='Q154SZTETB5MW5GB6FRVBHVJ5N5V0S3AH' where id=66; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='GE2RXV6R22V95VXPJCQFSG82AYQDVZ1MF' where id=66; -update noar ti set v1='GE2RXV6R22V95VXPJCQFSG82AYQDVZ1MF' where id=66; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='PRUZSRQ16GCVEFGFQIYL6JFZ2Z2Y7CM80' where id=66; -update noar ti set v2='PRUZSRQ16GCVEFGFQIYL6JFZ2Z2Y7CM80' where id=66; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='0VXA0ZYG1MJ5PBP9ERCCRC6CFAO6RDY4T' where id=66; -update noar ti set v3='0VXA0ZYG1MJ5PBP9ERCCRC6CFAO6RDY4T' where id=66; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='YHYL5F5BYVLI3DNWAOJCPJ0P18QHIXRHA' where id=67; -update noar ti set v0='YHYL5F5BYVLI3DNWAOJCPJ0P18QHIXRHA' where id=67; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='JP7DDGYM7BK24EDL8AMRTXOQ3NKFGMY2V' where id=67; -update noar ti set v1='JP7DDGYM7BK24EDL8AMRTXOQ3NKFGMY2V' where id=67; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='37IJ7WD0KGCRYHS2KWCYRVKOYHJ9UQV6I' where id=67; -update noar ti set v2='37IJ7WD0KGCRYHS2KWCYRVKOYHJ9UQV6I' where id=67; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='3X8VDRPC97AAXOH7Q4T6KNG4NJRZ57W10' where id=67; -update noar ti set v3='3X8VDRPC97AAXOH7Q4T6KNG4NJRZ57W10' where id=67; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='509QVRTDDCUAPI4OQPPUXDSDQWLG558N2' where id=68; -update noar ti set v0='509QVRTDDCUAPI4OQPPUXDSDQWLG558N2' where id=68; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='7FZE6K86C7VC1VB31RZ31GS3XIALY4MUU' where id=68; -update noar ti set v1='7FZE6K86C7VC1VB31RZ31GS3XIALY4MUU' where id=68; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='M7WKQ44BRJTNJE1P3QG17FWVB7QY67NR0' where id=68; -update noar ti set v2='M7WKQ44BRJTNJE1P3QG17FWVB7QY67NR0' where id=68; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='UHBMO711Z9NXMP0PQT03IRGRE4H6F4Y0K' where id=68; -update noar ti set v3='UHBMO711Z9NXMP0PQT03IRGRE4H6F4Y0K' where id=68; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='YB2JABZV2A4UH2IRH4K5RAIKM669F6O4F' where id=69; -update noar ti set v0='YB2JABZV2A4UH2IRH4K5RAIKM669F6O4F' where id=69; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='ELON3CUX7WSO9AOLU0AE1LSDDQQDW5QNI' where id=69; -update noar ti set v1='ELON3CUX7WSO9AOLU0AE1LSDDQQDW5QNI' where id=69; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='GUA3PW824YE0STAYONF6YCZG7NZ6Y35RF' where id=69; -update noar ti set v2='GUA3PW824YE0STAYONF6YCZG7NZ6Y35RF' where id=69; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='R06CG6JLVBCVPTMGSCE6X3NHQEMME5RDA' where id=69; -update noar ti set v3='R06CG6JLVBCVPTMGSCE6X3NHQEMME5RDA' where id=69; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='8QFVPBOJZ82ADRDFS2QQS469ESDK74DEC' where id=70; -update noar ti set v0='8QFVPBOJZ82ADRDFS2QQS469ESDK74DEC' where id=70; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='C0FIKKI4OOACGSTF39JIVGNTD1YBXTPYB' where id=70; -update noar ti set v1='C0FIKKI4OOACGSTF39JIVGNTD1YBXTPYB' where id=70; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='MB1QU94AKC723WWK4WM1QGA8M1W2XYJF1' where id=70; -update noar ti set v2='MB1QU94AKC723WWK4WM1QGA8M1W2XYJF1' where id=70; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='DV1O1M3HI97UNCKF3C57VPMMJTUW9UTAV' where id=70; -update noar ti set v3='DV1O1M3HI97UNCKF3C57VPMMJTUW9UTAV' where id=70; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='4UO38QRD4VS15AATHXRZE89LE7KAA4K4A' where id=71; -update noar ti set v0='4UO38QRD4VS15AATHXRZE89LE7KAA4K4A' where id=71; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='H9EVDRRI7VUK6R61RWFNZKTQW485PTL3G' where id=71; -update noar ti set v1='H9EVDRRI7VUK6R61RWFNZKTQW485PTL3G' where id=71; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='A01XKRUP4G4HCIM0HMKC8YRFE0OJ2ML32' where id=71; -update noar ti set v2='A01XKRUP4G4HCIM0HMKC8YRFE0OJ2ML32' where id=71; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='4E3VF6JL4U6I2PY8A8PN0Z6LIJYFVT08P' where id=71; -update noar ti set v3='4E3VF6JL4U6I2PY8A8PN0Z6LIJYFVT08P' where id=71; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='WFIKIYMFOEQL0OSKVVMSJ5J6MVD3UT5O0' where id=72; -update noar ti set v0='WFIKIYMFOEQL0OSKVVMSJ5J6MVD3UT5O0' where id=72; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='UUYHQAOMT8LCLHU8BHXA29FJJJ0MZT8B9' where id=72; -update noar ti set v1='UUYHQAOMT8LCLHU8BHXA29FJJJ0MZT8B9' where id=72; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='E4QPJW1146OKN135FBM5XRIIKX6OW433W' where id=72; -update noar ti set v2='E4QPJW1146OKN135FBM5XRIIKX6OW433W' where id=72; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='BLDOKLY31IDY69EV5TC2JJ7GQYU5FZ26L' where id=72; -update noar ti set v3='BLDOKLY31IDY69EV5TC2JJ7GQYU5FZ26L' where id=72; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='Z5ZWQ7I5E4U4EQ21FO1C7TOGL6YXMAEZP' where id=73; -update noar ti set v0='Z5ZWQ7I5E4U4EQ21FO1C7TOGL6YXMAEZP' where id=73; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='U8RDOIQ951TXCLVWX1ERKXE5C5SJS44QI' where id=73; -update noar ti set v1='U8RDOIQ951TXCLVWX1ERKXE5C5SJS44QI' where id=73; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='325BHUSVCW6G9CDVKGIYJ6CP347LT7C2S' where id=73; -update noar ti set v2='325BHUSVCW6G9CDVKGIYJ6CP347LT7C2S' where id=73; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='3K59CJGTA9DM38KZL12IIRL645WDCUOF6' where id=73; -update noar ti set v3='3K59CJGTA9DM38KZL12IIRL645WDCUOF6' where id=73; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='U1EG1W31O5VM6XSK544KKZJRV5OZUSL1A' where id=74; -update noar ti set v0='U1EG1W31O5VM6XSK544KKZJRV5OZUSL1A' where id=74; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='NKN3WOH2HDBRKO2TDXJP5VE6MFTE6NQIK' where id=74; -update noar ti set v1='NKN3WOH2HDBRKO2TDXJP5VE6MFTE6NQIK' where id=74; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='MXC1QZSIHR6TD5YKCBTC6GCOQ2WDV4TA6' where id=74; -update noar ti set v2='MXC1QZSIHR6TD5YKCBTC6GCOQ2WDV4TA6' where id=74; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='LLGYBP5VLQSDZMXBB61RR0JQ1IANZUY9E' where id=74; -update noar ti set v3='LLGYBP5VLQSDZMXBB61RR0JQ1IANZUY9E' where id=74; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='6Z77X7P2SJNJ8A2Z4UQVDTGH2TXU2ESOD' where id=75; -update noar ti set v0='6Z77X7P2SJNJ8A2Z4UQVDTGH2TXU2ESOD' where id=75; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='0NGGSYR67BU1EHKG53KR7610C4YNA22SJ' where id=75; -update noar ti set v1='0NGGSYR67BU1EHKG53KR7610C4YNA22SJ' where id=75; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='JO40KAT463ZSC8MUTKREQORNAHIIK1HW8' where id=75; -update noar ti set v2='JO40KAT463ZSC8MUTKREQORNAHIIK1HW8' where id=75; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='LFI92CC2PSZPKMTKY3D10LTZWHJSHD4HM' where id=75; -update noar ti set v3='LFI92CC2PSZPKMTKY3D10LTZWHJSHD4HM' where id=75; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='H52H2Q8NQJO6UKXPX9TXM9EAJ12AVNEJ0' where id=76; -update noar ti set v0='H52H2Q8NQJO6UKXPX9TXM9EAJ12AVNEJ0' where id=76; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='Y1CZZVYK7MMZDDFNSDUP3OU01ZREMBD04' where id=76; -update noar ti set v1='Y1CZZVYK7MMZDDFNSDUP3OU01ZREMBD04' where id=76; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='J2LUUHTJQVC8EDGS7I3U159ZYL6LQ7SQ5' where id=76; -update noar ti set v2='J2LUUHTJQVC8EDGS7I3U159ZYL6LQ7SQ5' where id=76; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='E153B33MMB10WI8191FIYYWR1MD132US4' where id=76; -update noar ti set v3='E153B33MMB10WI8191FIYYWR1MD132US4' where id=76; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='DT2FB9CHFYUKX1WZEGJSTOA8DSRGLINXS' where id=77; -update noar ti set v0='DT2FB9CHFYUKX1WZEGJSTOA8DSRGLINXS' where id=77; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='K47ZCMG32O8TDMXIT4ZZVU3WUR5CK6281' where id=77; -update noar ti set v1='K47ZCMG32O8TDMXIT4ZZVU3WUR5CK6281' where id=77; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='E3MY4ZJDE9FRI845QX7L1JKE16RAOPB99' where id=77; -update noar ti set v2='E3MY4ZJDE9FRI845QX7L1JKE16RAOPB99' where id=77; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='8KIQVK1LIWNCEJOJFUJNRL3XAQCF6KQ5K' where id=77; -update noar ti set v3='8KIQVK1LIWNCEJOJFUJNRL3XAQCF6KQ5K' where id=77; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='GAUR2AKOVDS68JCYAUA27J3MEOLTT4NXD' where id=78; -update noar ti set v0='GAUR2AKOVDS68JCYAUA27J3MEOLTT4NXD' where id=78; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='WCU7F9Q0RH1IMVRYF9U1LCEQ0L50FE1CH' where id=78; -update noar ti set v1='WCU7F9Q0RH1IMVRYF9U1LCEQ0L50FE1CH' where id=78; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='L22IR67BLXQABI6DMMS5L1QMQDLFM05NH' where id=78; -update noar ti set v2='L22IR67BLXQABI6DMMS5L1QMQDLFM05NH' where id=78; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='OF514U1W2T1PULX5F19TST16ISLX261VM' where id=78; -update noar ti set v3='OF514U1W2T1PULX5F19TST16ISLX261VM' where id=78; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='FZU198AH61GTW7180NA2LFNSQW2SCVEA6' where id=79; -update noar ti set v0='FZU198AH61GTW7180NA2LFNSQW2SCVEA6' where id=79; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='7TUL6I09XZU7RP79CZDO2VLW5A8ETL695' where id=79; -update noar ti set v1='7TUL6I09XZU7RP79CZDO2VLW5A8ETL695' where id=79; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='L9D174CXNLVJW1FLYZER42YFERA5G33WO' where id=79; -update noar ti set v2='L9D174CXNLVJW1FLYZER42YFERA5G33WO' where id=79; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='V9D1TIRFVT56BXONELNKX0DZ476TY0BG9' where id=79; -update noar ti set v3='V9D1TIRFVT56BXONELNKX0DZ476TY0BG9' where id=79; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='76MITPR19HDDFNXEVC3R1QA6FCN50STKQ' where id=80; -update noar ti set v0='76MITPR19HDDFNXEVC3R1QA6FCN50STKQ' where id=80; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='5I24FSLVFP2WQDG3AQG1QHFWW08YPLD2U' where id=80; -update noar ti set v1='5I24FSLVFP2WQDG3AQG1QHFWW08YPLD2U' where id=80; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='0J0SKPWU530OVKZGJEZ8SCQ2I472EZ188' where id=80; -update noar ti set v2='0J0SKPWU530OVKZGJEZ8SCQ2I472EZ188' where id=80; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='0CV0ZOCN649DHA2VUVYJNBVQ43H62A1Z1' where id=80; -update noar ti set v3='0CV0ZOCN649DHA2VUVYJNBVQ43H62A1Z1' where id=80; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='8W9QWDO0V4HISTFSJ1Z3O0BEKHN5G6R1Z' where id=81; -update noar ti set v0='8W9QWDO0V4HISTFSJ1Z3O0BEKHN5G6R1Z' where id=81; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='93T7Z53MIR1EP02R7SOMTSEB12LS666NZ' where id=81; -update noar ti set v1='93T7Z53MIR1EP02R7SOMTSEB12LS666NZ' where id=81; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='E4YHBTUJAU83094D1Z0BCP2M4154EEPBF' where id=81; -update noar ti set v2='E4YHBTUJAU83094D1Z0BCP2M4154EEPBF' where id=81; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='2BGYRT4HGEADERD3AL8B4OBXKJUT31N88' where id=81; -update noar ti set v3='2BGYRT4HGEADERD3AL8B4OBXKJUT31N88' where id=81; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='VAMNISNLQ3PG37VIRL7AGZ45ADSWG20RP' where id=82; -update noar ti set v0='VAMNISNLQ3PG37VIRL7AGZ45ADSWG20RP' where id=82; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='R9KZX21ALTSPL2CQVQO1LJB9CRO88GOC1' where id=82; -update noar ti set v1='R9KZX21ALTSPL2CQVQO1LJB9CRO88GOC1' where id=82; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='GS8XUCBZ64ECI341QXC7638DQNYS9G977' where id=82; -update noar ti set v2='GS8XUCBZ64ECI341QXC7638DQNYS9G977' where id=82; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='ZDAT2P3X8IF5R1L52CEENJKWDLQA0G0AV' where id=82; -update noar ti set v3='ZDAT2P3X8IF5R1L52CEENJKWDLQA0G0AV' where id=82; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='71AX43MZ4ZAGC2HX30BITFS7SXOU7IXNT' where id=83; -update noar ti set v0='71AX43MZ4ZAGC2HX30BITFS7SXOU7IXNT' where id=83; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='0ELCJ3MSUGGZFQA4IIGWRQ3W7LTAML82G' where id=83; -update noar ti set v1='0ELCJ3MSUGGZFQA4IIGWRQ3W7LTAML82G' where id=83; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='VPMVK8QYNB300TILT3KX3UA034TDBR5S7' where id=83; -update noar ti set v2='VPMVK8QYNB300TILT3KX3UA034TDBR5S7' where id=83; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='8AG9QUIWP3348C4AX4FTSAOH2AOZ8N5GK' where id=83; -update noar ti set v3='8AG9QUIWP3348C4AX4FTSAOH2AOZ8N5GK' where id=83; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='2523J3T4J6YVYNGV9AYJ0Z9K9II0LJA8O' where id=84; -update noar ti set v0='2523J3T4J6YVYNGV9AYJ0Z9K9II0LJA8O' where id=84; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='DN3ZS6W6EDU1N8P19WCNU3SCYYOVWA7FG' where id=84; -update noar ti set v1='DN3ZS6W6EDU1N8P19WCNU3SCYYOVWA7FG' where id=84; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='2WI19INSY619HGY5A6P7NYDJ35OJKDR2D' where id=84; -update noar ti set v2='2WI19INSY619HGY5A6P7NYDJ35OJKDR2D' where id=84; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='DFBH97AVHBXZR6G7YYCE7NOJEOHY03OOR' where id=84; -update noar ti set v3='DFBH97AVHBXZR6G7YYCE7NOJEOHY03OOR' where id=84; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='HRJTQI6QM6W93IWKFXVEMHZILM7C51BVI' where id=85; -update noar ti set v0='HRJTQI6QM6W93IWKFXVEMHZILM7C51BVI' where id=85; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='9ETTI4T735T047AQLFXZ9V0QEBUM4Q3O8' where id=85; -update noar ti set v1='9ETTI4T735T047AQLFXZ9V0QEBUM4Q3O8' where id=85; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='MRN1XW2RQRDV56TB83GR6YY1G0OKPDH51' where id=85; -update noar ti set v2='MRN1XW2RQRDV56TB83GR6YY1G0OKPDH51' where id=85; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='7X1360SOJ83FW8CQJ0PX3REUANSSHEK6C' where id=85; -update noar ti set v3='7X1360SOJ83FW8CQJ0PX3REUANSSHEK6C' where id=85; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='JKCII8RC5G6ZFO5QBTZNQVYJQL9VDLWUM' where id=86; -update noar ti set v0='JKCII8RC5G6ZFO5QBTZNQVYJQL9VDLWUM' where id=86; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='LAB459CIQW4TF2NF2GROH28MIA1BSPODT' where id=86; -update noar ti set v1='LAB459CIQW4TF2NF2GROH28MIA1BSPODT' where id=86; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='L550EWTDOV3BJ0ZQGB8Z8L3WLCKGRQVZQ' where id=86; -update noar ti set v2='L550EWTDOV3BJ0ZQGB8Z8L3WLCKGRQVZQ' where id=86; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='030Y45DZ5LEQ03R1GXH6MJ4HBMTI1Q2SP' where id=86; -update noar ti set v3='030Y45DZ5LEQ03R1GXH6MJ4HBMTI1Q2SP' where id=86; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='Q8NF6I7AUI9Q686O4G15FBOOSEO8S9GKA' where id=87; -update noar ti set v0='Q8NF6I7AUI9Q686O4G15FBOOSEO8S9GKA' where id=87; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='1YGD1P5UV16JPPX3EQPEBMYCF5O2TMCKE' where id=87; -update noar ti set v1='1YGD1P5UV16JPPX3EQPEBMYCF5O2TMCKE' where id=87; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='F8OPSNADZEV43HMHGGPTP52QCS23096XX' where id=87; -update noar ti set v2='F8OPSNADZEV43HMHGGPTP52QCS23096XX' where id=87; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='CFJ4E3ILWHLEPZ26HHPKK4KY6RMMSDYUL' where id=87; -update noar ti set v3='CFJ4E3ILWHLEPZ26HHPKK4KY6RMMSDYUL' where id=87; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='4D52XWH2ZEB6Y2Z241UKZTR3YNI66PJLN' where id=88; -update noar ti set v0='4D52XWH2ZEB6Y2Z241UKZTR3YNI66PJLN' where id=88; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='THIISDQDZM5BOTL8RLTP4ZK9IYS3QS5TI' where id=88; -update noar ti set v1='THIISDQDZM5BOTL8RLTP4ZK9IYS3QS5TI' where id=88; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='820G35HO8VW0PKOGKWYKKO83HV29XIGNH' where id=88; -update noar ti set v2='820G35HO8VW0PKOGKWYKKO83HV29XIGNH' where id=88; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='L29KEVNWE4JHO8EZJXTZ79PTYE4TIZMIS' where id=88; -update noar ti set v3='L29KEVNWE4JHO8EZJXTZ79PTYE4TIZMIS' where id=88; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='1J5JXKMCH0FNWSRJ5JK575CZ0FR5HSV6M' where id=89; -update noar ti set v0='1J5JXKMCH0FNWSRJ5JK575CZ0FR5HSV6M' where id=89; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='38GYOGLUYPSTV8N4JO4D3MWJZ87BX4NDT' where id=89; -update noar ti set v1='38GYOGLUYPSTV8N4JO4D3MWJZ87BX4NDT' where id=89; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='6LYHDG61J75S96LURZ1QFPQPCG06Z2EOA' where id=89; -update noar ti set v2='6LYHDG61J75S96LURZ1QFPQPCG06Z2EOA' where id=89; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='LPW74VWXSOJH8YTSIPUMYGJA049P8P5UC' where id=89; -update noar ti set v3='LPW74VWXSOJH8YTSIPUMYGJA049P8P5UC' where id=89; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='COTJVYSUNNOU5XPFVBNHH0DMFNND8KQEY' where id=90; -update noar ti set v0='COTJVYSUNNOU5XPFVBNHH0DMFNND8KQEY' where id=90; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='RILPDL5BCFP1BH6G5O16VSO99N5ROH823' where id=90; -update noar ti set v1='RILPDL5BCFP1BH6G5O16VSO99N5ROH823' where id=90; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='FOYA2IWCZSND8J8LQKVXTJGZBKWRSNMRM' where id=90; -update noar ti set v2='FOYA2IWCZSND8J8LQKVXTJGZBKWRSNMRM' where id=90; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='9NX048130G536AR4Z5TGXLF048RL2B0BQ' where id=90; -update noar ti set v3='9NX048130G536AR4Z5TGXLF048RL2B0BQ' where id=90; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='5A0OKTUYFYY0REBNPA1DFQPD3WE066NH8' where id=91; -update noar ti set v0='5A0OKTUYFYY0REBNPA1DFQPD3WE066NH8' where id=91; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='M7YKAFBYA12WJ00L0T1KC060B263IRLU9' where id=91; -update noar ti set v1='M7YKAFBYA12WJ00L0T1KC060B263IRLU9' where id=91; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='RVNGMEKJ0GZJYR03MBOABN1KVCFHITH2S' where id=91; -update noar ti set v2='RVNGMEKJ0GZJYR03MBOABN1KVCFHITH2S' where id=91; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='7HU7DGM71M83XMAGJZD5BKOFUXW1ZLDX5' where id=91; -update noar ti set v3='7HU7DGM71M83XMAGJZD5BKOFUXW1ZLDX5' where id=91; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='62RVRTD2TILSQ1FIAK5445N095UB9R6L2' where id=92; -update noar ti set v0='62RVRTD2TILSQ1FIAK5445N095UB9R6L2' where id=92; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='3Z7YXT9ICT3PG2LVDTN5QSFYABGEETX0I' where id=92; -update noar ti set v1='3Z7YXT9ICT3PG2LVDTN5QSFYABGEETX0I' where id=92; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='967X07WO4V9J8G7YKA3KIIPNFBF784Y12' where id=92; -update noar ti set v2='967X07WO4V9J8G7YKA3KIIPNFBF784Y12' where id=92; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='0IGLNWBAVAHS4RAVIE6LJ6D2CVKY48DCZ' where id=92; -update noar ti set v3='0IGLNWBAVAHS4RAVIE6LJ6D2CVKY48DCZ' where id=92; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='C0U0C8KU3U6HCWSL8DFU4IBYQAK2QUP0J' where id=93; -update noar ti set v0='C0U0C8KU3U6HCWSL8DFU4IBYQAK2QUP0J' where id=93; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='QJ1PETVEJGCXZJ06ZGVI4TCVI64DMJXZE' where id=93; -update noar ti set v1='QJ1PETVEJGCXZJ06ZGVI4TCVI64DMJXZE' where id=93; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='7XA1KVO1SENCAM9C8H2PVFSKSLEFK3MDX' where id=93; -update noar ti set v2='7XA1KVO1SENCAM9C8H2PVFSKSLEFK3MDX' where id=93; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='LX94SJ3GZ2ROSOG87CHXE8Y4HMMJQFO5R' where id=93; -update noar ti set v3='LX94SJ3GZ2ROSOG87CHXE8Y4HMMJQFO5R' where id=93; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='CR5FS516EEC4FJW0TT2QF58HN21FZ0ASB' where id=94; -update noar ti set v0='CR5FS516EEC4FJW0TT2QF58HN21FZ0ASB' where id=94; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='NL6SYNS3B1MQI3UI81Y2V5RJOELZVXB0L' where id=94; -update noar ti set v1='NL6SYNS3B1MQI3UI81Y2V5RJOELZVXB0L' where id=94; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='ES2BMV466W9IR49HHWSD84QD9C5K1CZFA' where id=94; -update noar ti set v2='ES2BMV466W9IR49HHWSD84QD9C5K1CZFA' where id=94; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='MZAZ1049ZCXKM251UD33KATM0K24X45HV' where id=94; -update noar ti set v3='MZAZ1049ZCXKM251UD33KATM0K24X45HV' where id=94; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='FFTEM9NP7KAGILDCFDXNNJ3GNGL332G9G' where id=95; -update noar ti set v0='FFTEM9NP7KAGILDCFDXNNJ3GNGL332G9G' where id=95; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='RWWMHJ4SGI66H1TR7M2X3T2FP3X592S1B' where id=95; -update noar ti set v1='RWWMHJ4SGI66H1TR7M2X3T2FP3X592S1B' where id=95; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='N58JJI6J9OA5SGQWI7ZBWMZ83IPJH2UVT' where id=95; -update noar ti set v2='N58JJI6J9OA5SGQWI7ZBWMZ83IPJH2UVT' where id=95; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='T9PD6HENPF61KZ6DD0WJWQ2B3SHHHRFND' where id=95; -update noar ti set v3='T9PD6HENPF61KZ6DD0WJWQ2B3SHHHRFND' where id=95; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='UMCI75NEY2L860S6VKTKV0OH3TAE8PYRS' where id=96; -update noar ti set v0='UMCI75NEY2L860S6VKTKV0OH3TAE8PYRS' where id=96; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='9SUKTBTF1K8G2ATHFTRJV73RFU7POTY8D' where id=96; -update noar ti set v1='9SUKTBTF1K8G2ATHFTRJV73RFU7POTY8D' where id=96; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='WSU1EF52PZHNTILLBN5K2URGBVWYQ1C2L' where id=96; -update noar ti set v2='WSU1EF52PZHNTILLBN5K2URGBVWYQ1C2L' where id=96; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='7P8L8D7A48BHQFB2UTPK1OCHMHI052LCD' where id=96; -update noar ti set v3='7P8L8D7A48BHQFB2UTPK1OCHMHI052LCD' where id=96; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='UWKMNL0870KPSF7GCMSRY77I5QUIQQQ1P' where id=97; -update noar ti set v0='UWKMNL0870KPSF7GCMSRY77I5QUIQQQ1P' where id=97; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='E7FL9RTMIT5DYC9LNVCRYH414DRIE1D0D' where id=97; -update noar ti set v1='E7FL9RTMIT5DYC9LNVCRYH414DRIE1D0D' where id=97; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='1BAKJEWCJRKVY7PTO9DXC980MSDE2TE6H' where id=97; -update noar ti set v2='1BAKJEWCJRKVY7PTO9DXC980MSDE2TE6H' where id=97; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='TYXARM2HKG0P62LASWVW4N0EAXGAQW7GO' where id=97; -update noar ti set v3='TYXARM2HKG0P62LASWVW4N0EAXGAQW7GO' where id=97; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='4VE776DG508IW3LZUE6AUTAW2JDPCAZWL' where id=98; -update noar ti set v0='4VE776DG508IW3LZUE6AUTAW2JDPCAZWL' where id=98; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='NSJ0K2LFG0TGTLS16P6MWA0CQVA9WLQKO' where id=98; -update noar ti set v1='NSJ0K2LFG0TGTLS16P6MWA0CQVA9WLQKO' where id=98; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='E3I7L3WBNQ3BYO4JKT32M2NIR8P9B7J3A' where id=98; -update noar ti set v2='E3I7L3WBNQ3BYO4JKT32M2NIR8P9B7J3A' where id=98; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='Z4I17U2NUSBCDD8PCJBIPT4PYQWLVSABE' where id=98; -update noar ti set v3='Z4I17U2NUSBCDD8PCJBIPT4PYQWLVSABE' where id=98; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='0O0D2HFHYY99YW2J7W2XQHXKLXRGJ359S' where id=99; -update noar ti set v0='0O0D2HFHYY99YW2J7W2XQHXKLXRGJ359S' where id=99; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='DFF5OUK3F76SRB6QD81YPY6ORPRO1CNUC' where id=99; -update noar ti set v1='DFF5OUK3F76SRB6QD81YPY6ORPRO1CNUC' where id=99; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='NDUJ9GJXVB05Q13HOEV9OHP1RH9MJR99U' where id=99; -update noar ti set v2='NDUJ9GJXVB05Q13HOEV9OHP1RH9MJR99U' where id=99; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='M4U6GZOI06LY5NIHERUPWJA31CK4W066E' where id=99; -update noar ti set v3='M4U6GZOI06LY5NIHERUPWJA31CK4W066E' where id=99; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -f0 int null, -v0 varchar(256) null, -v1 varchar(256) null, -v2 varchar(256) null, -v3 varchar(256) null, -b0 text null -) engine=tokudb; -insert into tt (id) values (0); -insert into tt values (1,2,'a','b','c','d','e'); -insert into tt values (2,3,'','','','',''); -insert into tt values (3,4,'','','','',''); -insert into tt values (4,5,'','','','',''); -insert into tt values (5,6,'','','','',''); -insert into tt values (6,7,'','','','',''); -insert into tt values (7,8,'','','','',''); -insert into tt values (8,9,'','','','',''); -insert into tt values (9,10,'','','','',''); -insert into tt values (10,11,'','','','',''); -insert into tt values (11,12,'','','','',''); -insert into tt values (12,13,'','','','',''); -insert into tt values (13,14,'','','','',''); -insert into tt values (14,15,'','','','',''); -insert into tt values (15,16,'','','','',''); -insert into tt values (16,17,'','','','',''); -insert into tt values (17,18,'','','','',''); -insert into tt values (18,19,'','','','',''); -insert into tt values (19,20,'','','','',''); -insert into tt values (20,21,'','','','',''); -insert into tt values (21,22,'','','','',''); -insert into tt values (22,23,'','','','',''); -insert into tt values (23,24,'','','','',''); -insert into tt values (24,25,'','','','',''); -insert into tt values (25,26,'','','','',''); -insert into tt values (26,27,'','','','',''); -insert into tt values (27,28,'','','','',''); -insert into tt values (28,29,'','','','',''); -insert into tt values (29,30,'','','','',''); -insert into tt values (30,31,'','','','',''); -insert into tt values (31,32,'','','','',''); -insert into tt values (32,33,'','','','',''); -insert into tt values (33,34,'','','','',''); -insert into tt values (34,35,'','','','',''); -insert into tt values (35,36,'','','','',''); -insert into tt values (36,37,'','','','',''); -insert into tt values (37,38,'','','','',''); -insert into tt values (38,39,'','','','',''); -insert into tt values (39,40,'','','','',''); -insert into tt values (40,41,'','','','',''); -insert into tt values (41,42,'','','','',''); -insert into tt values (42,43,'','','','',''); -insert into tt values (43,44,'','','','',''); -insert into tt values (44,45,'','','','',''); -insert into tt values (45,46,'','','','',''); -insert into tt values (46,47,'','','','',''); -insert into tt values (47,48,'','','','',''); -insert into tt values (48,49,'','','','',''); -insert into tt values (49,50,'','','','',''); -insert into tt values (50,51,'','','','',''); -insert into tt values (51,52,'','','','',''); -insert into tt values (52,53,'','','','',''); -insert into tt values (53,54,'','','','',''); -insert into tt values (54,55,'','','','',''); -insert into tt values (55,56,'','','','',''); -insert into tt values (56,57,'','','','',''); -insert into tt values (57,58,'','','','',''); -insert into tt values (58,59,'','','','',''); -insert into tt values (59,60,'','','','',''); -insert into tt values (60,61,'','','','',''); -insert into tt values (61,62,'','','','',''); -insert into tt values (62,63,'','','','',''); -insert into tt values (63,64,'','','','',''); -insert into tt values (64,65,'','','','',''); -insert into tt values (65,66,'','','','',''); -insert into tt values (66,67,'','','','',''); -insert into tt values (67,68,'','','','',''); -insert into tt values (68,69,'','','','',''); -insert into tt values (69,70,'','','','',''); -insert into tt values (70,71,'','','','',''); -insert into tt values (71,72,'','','','',''); -insert into tt values (72,73,'','','','',''); -insert into tt values (73,74,'','','','',''); -insert into tt values (74,75,'','','','',''); -insert into tt values (75,76,'','','','',''); -insert into tt values (76,77,'','','','',''); -insert into tt values (77,78,'','','','',''); -insert into tt values (78,79,'','','','',''); -insert into tt values (79,80,'','','','',''); -insert into tt values (80,81,'','','','',''); -insert into tt values (81,82,'','','','',''); -insert into tt values (82,83,'','','','',''); -insert into tt values (83,84,'','','','',''); -insert into tt values (84,85,'','','','',''); -insert into tt values (85,86,'','','','',''); -insert into tt values (86,87,'','','','',''); -insert into tt values (87,88,'','','','',''); -insert into tt values (88,89,'','','','',''); -insert into tt values (89,90,'','','','',''); -insert into tt values (90,91,'','','','',''); -insert into tt values (91,92,'','','','',''); -insert into tt values (92,93,'','','','',''); -insert into tt values (93,94,'','','','',''); -insert into tt values (94,95,'','','','',''); -insert into tt values (95,96,'','','','',''); -insert into tt values (96,97,'','','','',''); -insert into tt values (97,98,'','','','',''); -insert into tt values (98,99,'','','','',''); -insert into tt values (99,100,'','','','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='null this 0' where id=0; -update noar ti set v0='null this 0' where id=0; -update noar tt set v1='null is 1' where id=0; -update noar ti set v1='null is 1' where id=0; -update noar tt set v2='null a 2' where id=0; -update noar ti set v2='null a 2' where id=0; -update noar tt set v3='null test 3' where id=0; -update noar ti set v3='null test 3' where id=0; -update noar tt set v0='this 0' where id=1; -update noar ti set v0='this 0' where id=1; -update noar tt set v1='is 1' where id=1; -update noar ti set v1='is 1' where id=1; -update noar tt set v2='another 2' where id=1; -update noar ti set v2='another 2' where id=1; -update noar tt set v3='test 3' where id=1; -update noar ti set v3='test 3' where id=1; -update noar tt set v0='K0W6GSMZDOZSZR4MMED85PF5WJ9IWV8785BFW1FNVMT5X8E2TOYD6ARV8FHJIBJFOJG78VMWR5OQNT8MRSJY8U1YRU759VGVPCDN1M1YF5BNR1R9P60U0VIW3UQJLWBUBEM7HC4XZ1YC4KQI3WTSCCQJ86I2AYN84ZD620ZOESK6J3L5BG7SWPBZZ1X69CVEOQW6B2IY19K39RMI96NAET67E4GCU6NDPH94HO5RX776UAINOL2SCPDTN8EPNF2DC' where id=2; -update noar ti set v0='K0W6GSMZDOZSZR4MMED85PF5WJ9IWV8785BFW1FNVMT5X8E2TOYD6ARV8FHJIBJFOJG78VMWR5OQNT8MRSJY8U1YRU759VGVPCDN1M1YF5BNR1R9P60U0VIW3UQJLWBUBEM7HC4XZ1YC4KQI3WTSCCQJ86I2AYN84ZD620ZOESK6J3L5BG7SWPBZZ1X69CVEOQW6B2IY19K39RMI96NAET67E4GCU6NDPH94HO5RX776UAINOL2SCPDTN8EPNF2DC' where id=2; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='Y1AQIBH8DKUGNVBYW8RJBE9NCSLAUNAUBC4VSEBE5M8R3Z2CQRKA7B51WO0U4BH2P7DDWL5UEZBA1Z2F32STCUOEBB5LD157F64EHDJ9E5UDTTXU7O8YRJC6E44R0R0TNFQ3XJ5AAP4TM46XQDJE9Y9PWQEXT9XOGSINUP5WYKTPRO436B5OYOKHDPELSLR2ABH9896GJ9PPZ7PIR9JB64UWPOW9KMVOJG1RWQHU2G4Q3FJLYJV2AONY6FBXJ25W0' where id=2; -update noar ti set v1='Y1AQIBH8DKUGNVBYW8RJBE9NCSLAUNAUBC4VSEBE5M8R3Z2CQRKA7B51WO0U4BH2P7DDWL5UEZBA1Z2F32STCUOEBB5LD157F64EHDJ9E5UDTTXU7O8YRJC6E44R0R0TNFQ3XJ5AAP4TM46XQDJE9Y9PWQEXT9XOGSINUP5WYKTPRO436B5OYOKHDPELSLR2ABH9896GJ9PPZ7PIR9JB64UWPOW9KMVOJG1RWQHU2G4Q3FJLYJV2AONY6FBXJ25W0' where id=2; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='09PCLQORLSJ5YF7N8MCH3BBWTHOGUI04V0AT7BUT09E35UG3RVA6EV96SK3VVS73TAG6K1ZL3MNVYU2Y7WSBR4HS7DX7RV046KUBG6GGORQ3OJIT9XMOA7GFAX0GPSV2KBVIVMU34DYNL96SBBOTL6ULYKA7HYEI10H0Q61Z338YPWTAITE8SP4V0NIT3Q01VOFNSDVWZCW4D4MJB8WWW1G6JNKFCNSAA13WZ9HEPQU1BAVKQGGYTR4OOWJZTZMQ9' where id=2; -update noar ti set v2='09PCLQORLSJ5YF7N8MCH3BBWTHOGUI04V0AT7BUT09E35UG3RVA6EV96SK3VVS73TAG6K1ZL3MNVYU2Y7WSBR4HS7DX7RV046KUBG6GGORQ3OJIT9XMOA7GFAX0GPSV2KBVIVMU34DYNL96SBBOTL6ULYKA7HYEI10H0Q61Z338YPWTAITE8SP4V0NIT3Q01VOFNSDVWZCW4D4MJB8WWW1G6JNKFCNSAA13WZ9HEPQU1BAVKQGGYTR4OOWJZTZMQ9' where id=2; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='PE352OYVX26PJUMOM1A7BHE9ZUHYT0LCL0XNICJPNIT527WN93EK1N50XY7NMHGEIKNCV5PN06LFZG5IOJLHYEHD9LAJFY5U4ZFMFPWDCNS4U3ORYAQSTU1VOW5YKYAX6TRNDC1JJCMYDMHGZ3XNYXY2LCIGDIC3FBLOONH2QDW6DM9C4Q2WYSOTI88H3E0DXEOI29WV5P63DFK20CI1I6VIVT2E29FO72U7W7BS1FD36W4XYQQ6WANI63G1TZ9Y9' where id=2; -update noar ti set v3='PE352OYVX26PJUMOM1A7BHE9ZUHYT0LCL0XNICJPNIT527WN93EK1N50XY7NMHGEIKNCV5PN06LFZG5IOJLHYEHD9LAJFY5U4ZFMFPWDCNS4U3ORYAQSTU1VOW5YKYAX6TRNDC1JJCMYDMHGZ3XNYXY2LCIGDIC3FBLOONH2QDW6DM9C4Q2WYSOTI88H3E0DXEOI29WV5P63DFK20CI1I6VIVT2E29FO72U7W7BS1FD36W4XYQQ6WANI63G1TZ9Y9' where id=2; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='75RKPVVH4RWVRNCN2V6UOWSVEBPEROBIOL9IYCMUVFYKCEC39SJHZPMNRXKZUWDHAOFAI8NGMURUPJ0RUBC6JQW2HAKWQLQB1UXAP0CPCGL4XTWU1TSDM9ES7IOIK5S6Z133NCYW0LLGNWCE5O6ZK5AWAJVIG5J2WVTRN4M5D649CYOH5E0WEF31BO5FZ5ZH3EWJ7V3SL3AF4VOYHGYWPOMQ8PS1RT4MARY3O9ZVN1SMG2878CFWU7LXWP3Q47Q82' where id=3; -update noar ti set v0='75RKPVVH4RWVRNCN2V6UOWSVEBPEROBIOL9IYCMUVFYKCEC39SJHZPMNRXKZUWDHAOFAI8NGMURUPJ0RUBC6JQW2HAKWQLQB1UXAP0CPCGL4XTWU1TSDM9ES7IOIK5S6Z133NCYW0LLGNWCE5O6ZK5AWAJVIG5J2WVTRN4M5D649CYOH5E0WEF31BO5FZ5ZH3EWJ7V3SL3AF4VOYHGYWPOMQ8PS1RT4MARY3O9ZVN1SMG2878CFWU7LXWP3Q47Q82' where id=3; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='PIGNY61M1LRE6P523M94TKDPSQUR48UYG570WYL123AC6M7TCTZVWRFNYMAQIYJ0GI8CT3FV3ATVR8UT2I10G8XKGXOKNTMJ7B6PLNNVQWRW18CP528DSQKNWB5KQKMW753VETUL55FEPJ516XF5AUCTPBDHUT1SVFG8HUFP7U54JC656F2CFLY7AL0MAX0J35E0VYLPK3378NW2G99E8MJJULBFAAZP4WZ9ALXW45R4X75ZETM1FQR7AYW1H3LSM' where id=3; -update noar ti set v1='PIGNY61M1LRE6P523M94TKDPSQUR48UYG570WYL123AC6M7TCTZVWRFNYMAQIYJ0GI8CT3FV3ATVR8UT2I10G8XKGXOKNTMJ7B6PLNNVQWRW18CP528DSQKNWB5KQKMW753VETUL55FEPJ516XF5AUCTPBDHUT1SVFG8HUFP7U54JC656F2CFLY7AL0MAX0J35E0VYLPK3378NW2G99E8MJJULBFAAZP4WZ9ALXW45R4X75ZETM1FQR7AYW1H3LSM' where id=3; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='4SW5NYQDT95S713YORAUW5AZUJACT2EAKMD4SRT8SKCHLOAMD4L1XHCGVZOFGCROW1QT0SEKR25RP1MVWPWMGUFRVBT3ZV0E2B2QMTRH8MZIOGLR25NGNSHI9CKGJA4LT1K6SJ5O6JYSRTH3BGZHP3LNLV37HVA9NZBBA72LVG0MDIRAPDZKEGZBSQLWJDA0Z9S4WEW5IM32UDVVXC1W3FKL95N5Q76A3DS4EFQ28Y1SL8BKF67VMJMPKMT95WXES' where id=3; -update noar ti set v2='4SW5NYQDT95S713YORAUW5AZUJACT2EAKMD4SRT8SKCHLOAMD4L1XHCGVZOFGCROW1QT0SEKR25RP1MVWPWMGUFRVBT3ZV0E2B2QMTRH8MZIOGLR25NGNSHI9CKGJA4LT1K6SJ5O6JYSRTH3BGZHP3LNLV37HVA9NZBBA72LVG0MDIRAPDZKEGZBSQLWJDA0Z9S4WEW5IM32UDVVXC1W3FKL95N5Q76A3DS4EFQ28Y1SL8BKF67VMJMPKMT95WXES' where id=3; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='JL9GZP7FPVMRNII2C3GB09OESYN1QNU5GFL5O57MJU9NJJWONWO4NDDL2KD4B5OJ5SEBY3KCL7629WX37UTW0B9H38QOHGE5VMJKSTDS3VSPRM3SRF4CUD780X8NBEWJAS81FF3UT01JVSLTC8SOIHA7C4J5W68Z3KC2T8DZXS9JI3BF9EYU9HY372EUOENHRBYJWTDF9ODVOXN40AT1WE4HBR6A7CXDY2U0W0BW0OAZ9QDX9EYHZZFDK4LHZ2ZYE' where id=3; -update noar ti set v3='JL9GZP7FPVMRNII2C3GB09OESYN1QNU5GFL5O57MJU9NJJWONWO4NDDL2KD4B5OJ5SEBY3KCL7629WX37UTW0B9H38QOHGE5VMJKSTDS3VSPRM3SRF4CUD780X8NBEWJAS81FF3UT01JVSLTC8SOIHA7C4J5W68Z3KC2T8DZXS9JI3BF9EYU9HY372EUOENHRBYJWTDF9ODVOXN40AT1WE4HBR6A7CXDY2U0W0BW0OAZ9QDX9EYHZZFDK4LHZ2ZYE' where id=3; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='O732IS5IKPAMYRXPBQ22C8BTJ3F6F1INXZNSF327JE6CRBUEZNTZRB7S4S6MYUGTJMMKL8QHDROGVO9UEKDF2OOCSZQVKFLT9GE55DFYRTSROPLKV7R60DZZ3OQ03XFOANYU62JDWMBPEL9KN2SK5O55A865ZLKU5GEVZ88OLAVM4JBUDPQW7U1N9AQFRKLG8Z8XJDR7LV7R9GKUVR5FM1DC2BDNNXCAI9R8UQ9C5D7CCSO9DZBGBO84812S7BDTT' where id=4; -update noar ti set v0='O732IS5IKPAMYRXPBQ22C8BTJ3F6F1INXZNSF327JE6CRBUEZNTZRB7S4S6MYUGTJMMKL8QHDROGVO9UEKDF2OOCSZQVKFLT9GE55DFYRTSROPLKV7R60DZZ3OQ03XFOANYU62JDWMBPEL9KN2SK5O55A865ZLKU5GEVZ88OLAVM4JBUDPQW7U1N9AQFRKLG8Z8XJDR7LV7R9GKUVR5FM1DC2BDNNXCAI9R8UQ9C5D7CCSO9DZBGBO84812S7BDTT' where id=4; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='R92NFJNZ1ZBJJ44PGPPJHP3QL89MA6GL8J4PVUIZ0QD59JSQMKF2T36UK1CKVMC41D92UJHZO9X8VDVJSV9IV790JVZRDOSDTRVN18VA2GHMMBRIJHVHH2TCQ2XX43YPY00RBNEF9XQFPFH0WPOKL01RRIIMTAN9CCOWFLHADU54HCKLIK3A8FB0M76NQFY85GOXWLENR7E4LEDI60II5ZUYYTND83IG4XCTJSRLJU6FGHB5EX10K67U6SB4LO5V5' where id=4; -update noar ti set v1='R92NFJNZ1ZBJJ44PGPPJHP3QL89MA6GL8J4PVUIZ0QD59JSQMKF2T36UK1CKVMC41D92UJHZO9X8VDVJSV9IV790JVZRDOSDTRVN18VA2GHMMBRIJHVHH2TCQ2XX43YPY00RBNEF9XQFPFH0WPOKL01RRIIMTAN9CCOWFLHADU54HCKLIK3A8FB0M76NQFY85GOXWLENR7E4LEDI60II5ZUYYTND83IG4XCTJSRLJU6FGHB5EX10K67U6SB4LO5V5' where id=4; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='W69H8Z6VZ8LA67X1IGDGBKWET2AUH4ZO7TG0T56TA2KX0MGY7QUJCW7VO26KYI2UPHITIR62NVN68V4W3X1CQTQB9X5EVY5B8YZWZ3GGEA0EDZ8LLIFH30GA4LQRW1AVZG17M2MP49KF7CYRSZ38K97NTJWEBMQQ3H044BPR2408RASQRDKISLCLP9HI9HF3XZV8DWWUUXYKK5UVFOBPI5Q9EXOG3PG83J8T68VSEO26VMLREELCQDKUKSAQNJ76R' where id=4; -update noar ti set v2='W69H8Z6VZ8LA67X1IGDGBKWET2AUH4ZO7TG0T56TA2KX0MGY7QUJCW7VO26KYI2UPHITIR62NVN68V4W3X1CQTQB9X5EVY5B8YZWZ3GGEA0EDZ8LLIFH30GA4LQRW1AVZG17M2MP49KF7CYRSZ38K97NTJWEBMQQ3H044BPR2408RASQRDKISLCLP9HI9HF3XZV8DWWUUXYKK5UVFOBPI5Q9EXOG3PG83J8T68VSEO26VMLREELCQDKUKSAQNJ76R' where id=4; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='Y7OHOAFHJXBXCX6E68T44HCLCR708OZTWB0KVUNVHOAJBO639Q5Z9V96RCOA170Z7HYCI1HJ8A53SPTOTPZGSGS9U4HIY9R6K5Z45UGZ4RXQ61818OUPLO6BSRA0H3JW41I95GFAH1WRGT9DS96J5X9C66V4KHNO6ZRK4HLBIYCEILURCLYNRGRBJBK7CL1YYIHN2TQ9J61XEN2MMP6HCSU8VGWFYGIV5VNSCQPDRGLAD97NI08W5C3KTEZ2R1W3A' where id=4; -update noar ti set v3='Y7OHOAFHJXBXCX6E68T44HCLCR708OZTWB0KVUNVHOAJBO639Q5Z9V96RCOA170Z7HYCI1HJ8A53SPTOTPZGSGS9U4HIY9R6K5Z45UGZ4RXQ61818OUPLO6BSRA0H3JW41I95GFAH1WRGT9DS96J5X9C66V4KHNO6ZRK4HLBIYCEILURCLYNRGRBJBK7CL1YYIHN2TQ9J61XEN2MMP6HCSU8VGWFYGIV5VNSCQPDRGLAD97NI08W5C3KTEZ2R1W3A' where id=4; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='QDFMNFO3RAM2I6KVQWF13POURUFMES6N4ES0BE84AZA52D0FL2I9QFKVSESY52EB6X5MJET7IFRCVGQ1SMZROWUJL37VM8JP384MQ18BXFTN57LGARZMLIHULU3TNYCJNJDNEEQW4EYHAXR6WO3FD3I0L7O941H54P18517FB67EB21NXPTIVLZDZPM97Q6PHJ01AWUYMY6D342YLPN73LY3Y6VW6EUZKFBULZ83VFQWTDQLKFP5HNPVBHE0ZAL65' where id=5; -update noar ti set v0='QDFMNFO3RAM2I6KVQWF13POURUFMES6N4ES0BE84AZA52D0FL2I9QFKVSESY52EB6X5MJET7IFRCVGQ1SMZROWUJL37VM8JP384MQ18BXFTN57LGARZMLIHULU3TNYCJNJDNEEQW4EYHAXR6WO3FD3I0L7O941H54P18517FB67EB21NXPTIVLZDZPM97Q6PHJ01AWUYMY6D342YLPN73LY3Y6VW6EUZKFBULZ83VFQWTDQLKFP5HNPVBHE0ZAL65' where id=5; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='LS0BRZHH02R0T1AR4Z5NDJS1B8UX1ZITUJDSJBWMD0LO8SB9VG3UDIMBVEXQNIQ6OF7RWDH52SITB3RX7JPVTH00AXP9ORGVAJQKO9XVSN6NQ5AWTE0QDSU8WZHO723LF1SZEZBKO3RO2XFWPPLWO0P6JH6NMD0EGM4YJ4AVMP9L0P48OZW90QCQHM8J4V10SAXAWSVNVBBLVKO5K3BFE49MCJOZ2QJIFN7DJRXFZ7PYV1O0X0FK46216OQVPW0B6' where id=5; -update noar ti set v1='LS0BRZHH02R0T1AR4Z5NDJS1B8UX1ZITUJDSJBWMD0LO8SB9VG3UDIMBVEXQNIQ6OF7RWDH52SITB3RX7JPVTH00AXP9ORGVAJQKO9XVSN6NQ5AWTE0QDSU8WZHO723LF1SZEZBKO3RO2XFWPPLWO0P6JH6NMD0EGM4YJ4AVMP9L0P48OZW90QCQHM8J4V10SAXAWSVNVBBLVKO5K3BFE49MCJOZ2QJIFN7DJRXFZ7PYV1O0X0FK46216OQVPW0B6' where id=5; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='A4C7QHK8HMB9NSK75LAALP92FWEIU68ZB8FBWCPUXMIJQQN52MW3BQP55B878AC95ZZYJBPKKPWP1DJMTCTAD5TU4S6U1YI46VUKHZ8FNRIHJ05U3A4B4P1Z9XV6QV1KH66ITXIDK3P9DKDQEI2MB50G580JYVQL46K467K3KLIFVE4OFM2BX8JJLPPKD66J7DBUZOCWSIP5N9CV3059KG6X4L3IV3GIDDGFFRTQDDX92IS5ZTJM0HUSI3EO3XPDS' where id=5; -update noar ti set v2='A4C7QHK8HMB9NSK75LAALP92FWEIU68ZB8FBWCPUXMIJQQN52MW3BQP55B878AC95ZZYJBPKKPWP1DJMTCTAD5TU4S6U1YI46VUKHZ8FNRIHJ05U3A4B4P1Z9XV6QV1KH66ITXIDK3P9DKDQEI2MB50G580JYVQL46K467K3KLIFVE4OFM2BX8JJLPPKD66J7DBUZOCWSIP5N9CV3059KG6X4L3IV3GIDDGFFRTQDDX92IS5ZTJM0HUSI3EO3XPDS' where id=5; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='D000YBD5B7GH5C90XTPYZSPH5GTQYSXOE96NSGCARPR0TYQIVAOA84QNZF2XKNVDC8BC2EMHH8SHH0377XVAESNBDH2B2H741Y0ZWP6VVGR91F5CWTYVD1EAK6QXEHUNUKWLRVMNCMIC8E2WAVOY59ERMKZPYUN3IEFIIPTOMT1SFYM27EZLZFESH4RXDV1W3CZTP79VQVKVSZTQRSJTE03N9WV3K8X6NF409ON9IEDNHABZDJZILRC1XKLL3CRUI' where id=5; -update noar ti set v3='D000YBD5B7GH5C90XTPYZSPH5GTQYSXOE96NSGCARPR0TYQIVAOA84QNZF2XKNVDC8BC2EMHH8SHH0377XVAESNBDH2B2H741Y0ZWP6VVGR91F5CWTYVD1EAK6QXEHUNUKWLRVMNCMIC8E2WAVOY59ERMKZPYUN3IEFIIPTOMT1SFYM27EZLZFESH4RXDV1W3CZTP79VQVKVSZTQRSJTE03N9WV3K8X6NF409ON9IEDNHABZDJZILRC1XKLL3CRUI' where id=5; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='XK4GTRA9D3OXXOTDRAOW18R4H6KFN8YQ6XI8K8B14UR3H5XOQTB3KP88NTVR33BE3EQFO4G9YXDD1BGV038EISPM8QZUU523UK2JFBU368LL68YZIAONYPTV0X6FF634FOOY9OJY5HR5PVUXUMFRGBGAJE162SF4M5275AF7AZUL57LMS3KPNBU78J13M071SQ3LJGYQ40SK8PD7WEVPCB6B07TZG1D9J7HS1VNVRZYZN2JQVLLVUV5IISHOFRI94' where id=6; -update noar ti set v0='XK4GTRA9D3OXXOTDRAOW18R4H6KFN8YQ6XI8K8B14UR3H5XOQTB3KP88NTVR33BE3EQFO4G9YXDD1BGV038EISPM8QZUU523UK2JFBU368LL68YZIAONYPTV0X6FF634FOOY9OJY5HR5PVUXUMFRGBGAJE162SF4M5275AF7AZUL57LMS3KPNBU78J13M071SQ3LJGYQ40SK8PD7WEVPCB6B07TZG1D9J7HS1VNVRZYZN2JQVLLVUV5IISHOFRI94' where id=6; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='YAY4QHWIZ1RZFFYDNRYNUGXUAT9JT3COKZLWY9PR0G6WY8RS7G1BVX9F7FRNTYQKSOZDJ7J2N58WQEOVVH9T2P4ILBSJRZ9S02DV15C1F6TLWGT9VP8CIB8S1C6GNMR2GT7WNFICIPELB53NZVU7DXDTMDFAXTQL0JC7TG9GTUW5LE49MFZA2XEVSVLPEU6WYNGQCJ6U2MG3PRYYF3MZO59P1D6GSSWAGI2IYBMU9RXPT976F7KVW7FTQ9OHWKEKU' where id=6; -update noar ti set v1='YAY4QHWIZ1RZFFYDNRYNUGXUAT9JT3COKZLWY9PR0G6WY8RS7G1BVX9F7FRNTYQKSOZDJ7J2N58WQEOVVH9T2P4ILBSJRZ9S02DV15C1F6TLWGT9VP8CIB8S1C6GNMR2GT7WNFICIPELB53NZVU7DXDTMDFAXTQL0JC7TG9GTUW5LE49MFZA2XEVSVLPEU6WYNGQCJ6U2MG3PRYYF3MZO59P1D6GSSWAGI2IYBMU9RXPT976F7KVW7FTQ9OHWKEKU' where id=6; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='47G26074KUHEAMXLO8QFGN2ZW43TX04A7DRFPG07QO76XMS10OX8WGN7V6PVYHCGZ4CKU2LTUU3HD1KG4V8GAKV3FHV086X5IUPJNODC6SA34XZJ379Z7V89WNRJ4G3IR67DFD2237S6D3DDM6RINUBRXSXAFBYMD26K3VY2C0AGEGJWUM81D5RBFFKGX32YFK3945PDSH6NQH4K7JA213HMEXLE2N696WX92L2BB4REVUW1PDI7IYJ35BQ75VX2Z' where id=6; -update noar ti set v2='47G26074KUHEAMXLO8QFGN2ZW43TX04A7DRFPG07QO76XMS10OX8WGN7V6PVYHCGZ4CKU2LTUU3HD1KG4V8GAKV3FHV086X5IUPJNODC6SA34XZJ379Z7V89WNRJ4G3IR67DFD2237S6D3DDM6RINUBRXSXAFBYMD26K3VY2C0AGEGJWUM81D5RBFFKGX32YFK3945PDSH6NQH4K7JA213HMEXLE2N696WX92L2BB4REVUW1PDI7IYJ35BQ75VX2Z' where id=6; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='2LTHQTEYOWTTQFD3WBBCKUI6BPT889OLB28X79EMH2T44T0RK6KN9MAO5THOQ5J77GB1NFTILR1PFBRXG9LQYJ79CNTOFCNQF8CR0OA9C8QGAVY318BIWXEKFWOBCZMFNBDJQX1D4LBQUIBWYWLKK3XIZR6AAS413W2WVXVEL7B1MVWOC3JJPF1PL9TLLZCPNWZQU75FB45P1G8LJB4B32DUA6R45T6TXYQS4LDC189VXEPNW836QNHFGMY3S5XVE' where id=6; -update noar ti set v3='2LTHQTEYOWTTQFD3WBBCKUI6BPT889OLB28X79EMH2T44T0RK6KN9MAO5THOQ5J77GB1NFTILR1PFBRXG9LQYJ79CNTOFCNQF8CR0OA9C8QGAVY318BIWXEKFWOBCZMFNBDJQX1D4LBQUIBWYWLKK3XIZR6AAS413W2WVXVEL7B1MVWOC3JJPF1PL9TLLZCPNWZQU75FB45P1G8LJB4B32DUA6R45T6TXYQS4LDC189VXEPNW836QNHFGMY3S5XVE' where id=6; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='TE4IFEDR8PCBJIQ4XEDO9WTM46X3HNHZ8HYTB8M8QXO4XARRPPA8HT6OZENYXX59PT0L9KFSYZ2VYWH8BA3WWTBGERGEHTHVSBKD0A9LCV6JLYKFWUIACXFV43R4NKQCJ8GIFXM1LMIKMDRV7JI7HZLBMGIEZE3JUDUF2E4HO5GHDQ8FQ9LTBL3IP34CYZNPD67LEOMSIO5277H8O5HWOZ2KKBS8FJY54XXTF7L4TM810QIV35F71UJC465PAVJOW' where id=7; -update noar ti set v0='TE4IFEDR8PCBJIQ4XEDO9WTM46X3HNHZ8HYTB8M8QXO4XARRPPA8HT6OZENYXX59PT0L9KFSYZ2VYWH8BA3WWTBGERGEHTHVSBKD0A9LCV6JLYKFWUIACXFV43R4NKQCJ8GIFXM1LMIKMDRV7JI7HZLBMGIEZE3JUDUF2E4HO5GHDQ8FQ9LTBL3IP34CYZNPD67LEOMSIO5277H8O5HWOZ2KKBS8FJY54XXTF7L4TM810QIV35F71UJC465PAVJOW' where id=7; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='9GD7WFEYYHFJ1QFQ2P0ZDBFBNJDNESVVSPBXD4825WP82FQOC7TU1296G278O80IHTPGDLVAGQ1A2SP3ES25QMXE7TH73A8645QFCNBY8UQY20UJEQVM8BOSNDFB79039YQUUCLL0HMLON0GEDS5JW3FUM7FURHXLU5SCZMRLZFAGEUVLBHKJTH2UXXZ8M9YKS5LNOW93ZO2B4NSUG8U9311G2WEZUISAFITADFZP2Z85OU1XLN96DT1JFHHZ3QBK' where id=7; -update noar ti set v1='9GD7WFEYYHFJ1QFQ2P0ZDBFBNJDNESVVSPBXD4825WP82FQOC7TU1296G278O80IHTPGDLVAGQ1A2SP3ES25QMXE7TH73A8645QFCNBY8UQY20UJEQVM8BOSNDFB79039YQUUCLL0HMLON0GEDS5JW3FUM7FURHXLU5SCZMRLZFAGEUVLBHKJTH2UXXZ8M9YKS5LNOW93ZO2B4NSUG8U9311G2WEZUISAFITADFZP2Z85OU1XLN96DT1JFHHZ3QBK' where id=7; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='FCTKB4A7L70RS7CWYUONWWH1A4HCZM2QAG5E933Z4B7NTN5PAROOMZWNONTDRHK8KGIAWLY3F75IOOW1BG0BZN0E16GBO4LBRP70V8IE3TDMXS2Q7E04DSY22CKQ68WAO2YASXJPJBT09GU9KNAGUZIDHC7O2BRE7R0R9H4DLRDMCUA40FKWFFAD1DLOJ2FVSV40FB8T589C10JDG0Y5KQYPQ0QVGXS1ND7UV1GQM215LT2EWG0IWWWZZWFKXRS9T' where id=7; -update noar ti set v2='FCTKB4A7L70RS7CWYUONWWH1A4HCZM2QAG5E933Z4B7NTN5PAROOMZWNONTDRHK8KGIAWLY3F75IOOW1BG0BZN0E16GBO4LBRP70V8IE3TDMXS2Q7E04DSY22CKQ68WAO2YASXJPJBT09GU9KNAGUZIDHC7O2BRE7R0R9H4DLRDMCUA40FKWFFAD1DLOJ2FVSV40FB8T589C10JDG0Y5KQYPQ0QVGXS1ND7UV1GQM215LT2EWG0IWWWZZWFKXRS9T' where id=7; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='6UZHIQ33GCT9GQBHN7CUP24EUR3DARFIFBTVVNYQBNSBWG7Q9EKJJIEZURTAWMNUCNFACD4GUK8XXSYGQY89BYYKW0YU2W5ITCS7Y0U5F8R5D9HIAOCO07XUNERE8QHU51H313JW16N5P2ZBN2V4HUZU3TMWN8B1GATROR80BPVDBUO7NYTUO6RROEZLANH2KOBSJ6YFXYUY9N2OJY7XV97IKWSE30R4JP1DB64N8IFBTLPMVRKL8SSP2BR76P7YI' where id=7; -update noar ti set v3='6UZHIQ33GCT9GQBHN7CUP24EUR3DARFIFBTVVNYQBNSBWG7Q9EKJJIEZURTAWMNUCNFACD4GUK8XXSYGQY89BYYKW0YU2W5ITCS7Y0U5F8R5D9HIAOCO07XUNERE8QHU51H313JW16N5P2ZBN2V4HUZU3TMWN8B1GATROR80BPVDBUO7NYTUO6RROEZLANH2KOBSJ6YFXYUY9N2OJY7XV97IKWSE30R4JP1DB64N8IFBTLPMVRKL8SSP2BR76P7YI' where id=7; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='K6LV9H9QJ71XWIHWV7RBHS9QPU8GWHE64VPDXZVDJKRM13A9J1RGVHOYQU7N5T11LLSSRLZH42I0MX5R82X84N03YZ954G5T52ALJC4DOBK6TPMCJTVGWN4AFVNUO0SJ0AIROS7AWRW8JUQZNAHXVOT11RU4KHOUI43QOUOKUD5TGMH8G0I0WG778DD4CR6P4AF334TZA2C34YFD3RUC547WIWZG97TYYKYZ8R3GTG64W09VMSUT3IPKL8E0G6H2O' where id=8; -update noar ti set v0='K6LV9H9QJ71XWIHWV7RBHS9QPU8GWHE64VPDXZVDJKRM13A9J1RGVHOYQU7N5T11LLSSRLZH42I0MX5R82X84N03YZ954G5T52ALJC4DOBK6TPMCJTVGWN4AFVNUO0SJ0AIROS7AWRW8JUQZNAHXVOT11RU4KHOUI43QOUOKUD5TGMH8G0I0WG778DD4CR6P4AF334TZA2C34YFD3RUC547WIWZG97TYYKYZ8R3GTG64W09VMSUT3IPKL8E0G6H2O' where id=8; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='64ZO05KGENRZWHG1OQO4R5MHCZNZXFW89PFLX5NK19I36I2NITA2AVQN7U9YALKZRWTHCOBMHVXX8PDRXOTNXGPY0P3OYBTJEOZ48V31R22S9J9I6TE8NBHGC24GYYEWWZZMZ6RWULP1CDVPVPECAB167CYMUEH6YJ0RMLVMZXN7ZANCMIQGVC7PWZHC6VMT4GHKGSHHMBG8EMCD35UWBV7S4KT77O6DGFOAPYPZ9YNEWZQ12C63ZK1ZTWL9ATE8U' where id=8; -update noar ti set v1='64ZO05KGENRZWHG1OQO4R5MHCZNZXFW89PFLX5NK19I36I2NITA2AVQN7U9YALKZRWTHCOBMHVXX8PDRXOTNXGPY0P3OYBTJEOZ48V31R22S9J9I6TE8NBHGC24GYYEWWZZMZ6RWULP1CDVPVPECAB167CYMUEH6YJ0RMLVMZXN7ZANCMIQGVC7PWZHC6VMT4GHKGSHHMBG8EMCD35UWBV7S4KT77O6DGFOAPYPZ9YNEWZQ12C63ZK1ZTWL9ATE8U' where id=8; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='55IVFEBV3CMCPLRBP7DGB8NT5J3CF27DHP0BCDEQHLSTGL46KM4ZP5DYIIHRFL4X70Q149GU1G4VOZWCCTC3VKP0C01QQ6VOQXT4X1LDNW2CSQRBG6PT3W9P5543AXO2LKSD1S53EEK7VI6THX8T9IGHB78ORLXHTWFOF1DTQ9D5IRIE9WSZHGQ5L8Z0BF7LT9FH4963IR3MES0GSYKUO8587G1LZEFCEAM720F1JJYGQJ5EAAMRNFAZ02MBBBRSM' where id=8; -update noar ti set v2='55IVFEBV3CMCPLRBP7DGB8NT5J3CF27DHP0BCDEQHLSTGL46KM4ZP5DYIIHRFL4X70Q149GU1G4VOZWCCTC3VKP0C01QQ6VOQXT4X1LDNW2CSQRBG6PT3W9P5543AXO2LKSD1S53EEK7VI6THX8T9IGHB78ORLXHTWFOF1DTQ9D5IRIE9WSZHGQ5L8Z0BF7LT9FH4963IR3MES0GSYKUO8587G1LZEFCEAM720F1JJYGQJ5EAAMRNFAZ02MBBBRSM' where id=8; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='5F05P8URBS9NAYRP75YYAEB2DF6O90RYGWS7XA0ZEHWIL4GD682WOVVWELDX90JSJ2YV3RK27QBGS6LJ1V1YOBROG4K8VRCMH80C54FZR9Z78KACY5W8B8Q6M3RWKWCBIVFI19SMDQM6YEYJZM1FT6VIRET5G4V9ZD0APKCWSI3JVKP3JIRKGUZXMG60TSNSZ7N4ZXIIXKBYB4AVL1QMWRTCIIMZKFJG8VOK8ITKOGP5H7IM2A31OHR60KMI26DA5' where id=8; -update noar ti set v3='5F05P8URBS9NAYRP75YYAEB2DF6O90RYGWS7XA0ZEHWIL4GD682WOVVWELDX90JSJ2YV3RK27QBGS6LJ1V1YOBROG4K8VRCMH80C54FZR9Z78KACY5W8B8Q6M3RWKWCBIVFI19SMDQM6YEYJZM1FT6VIRET5G4V9ZD0APKCWSI3JVKP3JIRKGUZXMG60TSNSZ7N4ZXIIXKBYB4AVL1QMWRTCIIMZKFJG8VOK8ITKOGP5H7IM2A31OHR60KMI26DA5' where id=8; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='8V6OS9RK6FCACS7MT1RL28SHETV1SDW2DC3SSHDZEU38FQTM0LOUX2EU1JPKIC6S7KZ3WQHR9G8REUSHRI2KY09J3JKC2SHMCZMR7FRSWDP7KZ7PNQ93VQUUX75VYFQ8NZYJOOEQ6PFCU0J7IW0BFPG777U0S0DJPD1V4X7C0M9EOLP9CCP5K4N9QNXLGVELV9LV2TGMI37JJCQC44G2CV64H7WSH6PAEQ4LIYJKL8UYLN9I3HU85JPMQH8KXDGJG' where id=9; -update noar ti set v0='8V6OS9RK6FCACS7MT1RL28SHETV1SDW2DC3SSHDZEU38FQTM0LOUX2EU1JPKIC6S7KZ3WQHR9G8REUSHRI2KY09J3JKC2SHMCZMR7FRSWDP7KZ7PNQ93VQUUX75VYFQ8NZYJOOEQ6PFCU0J7IW0BFPG777U0S0DJPD1V4X7C0M9EOLP9CCP5K4N9QNXLGVELV9LV2TGMI37JJCQC44G2CV64H7WSH6PAEQ4LIYJKL8UYLN9I3HU85JPMQH8KXDGJG' where id=9; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='KWRON81VJ4JE8B1OQZL08PJU844NBG4WJ2O1YIOOL7HTKFIG82U5GIY18HOIQXXNL6NAEUCME29M0KUT9RLXMHJDQ7J8FRPNV862J56815VRJLLP4ZG9AV3WNRDSMNVNQ4YK0VIXP76KSY43OI08U5K1T0RV2HPFGE2NXC2O3YPRBBQJR55LHU9TD34UWBMYKKYVV81ROHMHKYCZLZLMFK54B6XGZ5AYD0SC185QCCSGN9IDMJYL6KQELJBF1EY5H' where id=9; -update noar ti set v1='KWRON81VJ4JE8B1OQZL08PJU844NBG4WJ2O1YIOOL7HTKFIG82U5GIY18HOIQXXNL6NAEUCME29M0KUT9RLXMHJDQ7J8FRPNV862J56815VRJLLP4ZG9AV3WNRDSMNVNQ4YK0VIXP76KSY43OI08U5K1T0RV2HPFGE2NXC2O3YPRBBQJR55LHU9TD34UWBMYKKYVV81ROHMHKYCZLZLMFK54B6XGZ5AYD0SC185QCCSGN9IDMJYL6KQELJBF1EY5H' where id=9; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='8RUNX4TUNHBV7J7WBPXMC1CFQHZXJ9XSIG6DVRX6V2VO5UN7IGPIGTIJ8U879ZRX4ES3QT0F4272DUY8AK7HNDMJC8630X00T5JX4NJYTPVJTI43N8GJWAZSSMYZZY5DSPQX0RPA2RBA453WZ234T4RDLJRCEE0S4A2PWAW5468P56G0GQKVD7SSLAIAG8AFIO44V2IN1EADKA2Q5NX5JDTKNVUFWSZBNPM3NZKC6IMJJYJU4MFBPGFGIK58AVUPK' where id=9; -update noar ti set v2='8RUNX4TUNHBV7J7WBPXMC1CFQHZXJ9XSIG6DVRX6V2VO5UN7IGPIGTIJ8U879ZRX4ES3QT0F4272DUY8AK7HNDMJC8630X00T5JX4NJYTPVJTI43N8GJWAZSSMYZZY5DSPQX0RPA2RBA453WZ234T4RDLJRCEE0S4A2PWAW5468P56G0GQKVD7SSLAIAG8AFIO44V2IN1EADKA2Q5NX5JDTKNVUFWSZBNPM3NZKC6IMJJYJU4MFBPGFGIK58AVUPK' where id=9; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='PZC7VKRIK8R2RQD4WGYC0ZBI53AOWTM1KG0QQ1KQWH3MM046P38W2F7YKZCDJCC3JZE7LUCFMJ1ZXSYLI0KUN7V4OTHB2PWHB6S2RJHY3S7LEZ1TA4O3R93HF351OPLNKCDNX3XL7JJI341TUNOVH0YTZ7WN9Z7HUTQ9N030AMLSL081NMYD8HRMJCAQJB6XXYR7R9XBN6SJ8VC9NRRWQQ49H62E1X71QSDRO47JUT9FS7CCWB1RMUPFMW52VPAQ1' where id=9; -update noar ti set v3='PZC7VKRIK8R2RQD4WGYC0ZBI53AOWTM1KG0QQ1KQWH3MM046P38W2F7YKZCDJCC3JZE7LUCFMJ1ZXSYLI0KUN7V4OTHB2PWHB6S2RJHY3S7LEZ1TA4O3R93HF351OPLNKCDNX3XL7JJI341TUNOVH0YTZ7WN9Z7HUTQ9N030AMLSL081NMYD8HRMJCAQJB6XXYR7R9XBN6SJ8VC9NRRWQQ49H62E1X71QSDRO47JUT9FS7CCWB1RMUPFMW52VPAQ1' where id=9; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='TILB2FVJ9E89CM9EMNGMKAG05LA9B6JBOWM4CT7UAE5DY53HXMVGJFC75Z2NZFW1YZZZIB8YTTBUBY0O5JKL5XH3WN8KAB6844VRMKYA5OC1X9YD4X3UTYZ01YPK3YF5LK977KZ6X5TBF5X2QVVZPY3KDQ44DFM5POB3EJHM5B5CV42LML5S04XB6YIB3H9NQDJIXAXS58SK5NHQUZR4S8EFHOEV96D5UKII9P8PQL1JGP15KTT70XSQEDJJ4JNH6' where id=10; -update noar ti set v0='TILB2FVJ9E89CM9EMNGMKAG05LA9B6JBOWM4CT7UAE5DY53HXMVGJFC75Z2NZFW1YZZZIB8YTTBUBY0O5JKL5XH3WN8KAB6844VRMKYA5OC1X9YD4X3UTYZ01YPK3YF5LK977KZ6X5TBF5X2QVVZPY3KDQ44DFM5POB3EJHM5B5CV42LML5S04XB6YIB3H9NQDJIXAXS58SK5NHQUZR4S8EFHOEV96D5UKII9P8PQL1JGP15KTT70XSQEDJJ4JNH6' where id=10; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='H7RDRMIRV69WXYS228RT55O7FHO1JN5VRR8S58RO6IBJE7HG7JQ7I7CBLWWZD08J6BK5EEKGNZVTXIZ3U326GBL3TWGWL6PMEQLM38KDMG702CV3CBH130GH11RG7WJE7PDD0RUICAQS801CLCJWAJFFDTMFTQCP4WN56Z5ZTXBIDDGT8YW09CHMTYPR1NOXWG9BW3052F1EM3QKBZ9A92ZUB991L1LOH7FM7QSFPMW7UO6DRYJG5K5V1XTPC9T88' where id=10; -update noar ti set v1='H7RDRMIRV69WXYS228RT55O7FHO1JN5VRR8S58RO6IBJE7HG7JQ7I7CBLWWZD08J6BK5EEKGNZVTXIZ3U326GBL3TWGWL6PMEQLM38KDMG702CV3CBH130GH11RG7WJE7PDD0RUICAQS801CLCJWAJFFDTMFTQCP4WN56Z5ZTXBIDDGT8YW09CHMTYPR1NOXWG9BW3052F1EM3QKBZ9A92ZUB991L1LOH7FM7QSFPMW7UO6DRYJG5K5V1XTPC9T88' where id=10; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='VPURGZP03AYF64VCYB79C2MJGMOW3LOF4D9U645M5CFFOPF2T5BZIXNLCAHLVOAC27N60G672FR4GPH8I3GRSDXYEIYJIKA2FDVGLZ434NT7F7C91PM9RV0X8PETPF0JTWYOJHD3VO1FJFCBT8AE60CS2GNUKZ04EAH524TMI3L6IGUYKJUTFBVI8F4KDEVKJPOFP175VF1MCQRBHYK9WP17LDWO1D3GDYIOIIJZFTISH65020Q1LMHXUT6K53C9P' where id=10; -update noar ti set v2='VPURGZP03AYF64VCYB79C2MJGMOW3LOF4D9U645M5CFFOPF2T5BZIXNLCAHLVOAC27N60G672FR4GPH8I3GRSDXYEIYJIKA2FDVGLZ434NT7F7C91PM9RV0X8PETPF0JTWYOJHD3VO1FJFCBT8AE60CS2GNUKZ04EAH524TMI3L6IGUYKJUTFBVI8F4KDEVKJPOFP175VF1MCQRBHYK9WP17LDWO1D3GDYIOIIJZFTISH65020Q1LMHXUT6K53C9P' where id=10; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='ERAEHB3K6FHNAM4V65KY2TOFFLTG8T6R7A9C3QEFSO63HU8RZ14GG2VPDA37HXNNKM6SUK7A3E6N5ZV58PJCSJO5XLRXDEUSMGFAU9ZWYZHQO74M9EX7GDBVUAI455ATIVE1C2OVDOXQBUFBMAOCFZOMIF4HLJI06FADRN9ESXB8HIAL285Y3W1SLSEH9I0J53MNRHM46O2S4HV9YI0UN9T8KI2CYQLKBMFIZWDF0AQLWDCZ6BWKVN0F9N5X2T07I' where id=10; -update noar ti set v3='ERAEHB3K6FHNAM4V65KY2TOFFLTG8T6R7A9C3QEFSO63HU8RZ14GG2VPDA37HXNNKM6SUK7A3E6N5ZV58PJCSJO5XLRXDEUSMGFAU9ZWYZHQO74M9EX7GDBVUAI455ATIVE1C2OVDOXQBUFBMAOCFZOMIF4HLJI06FADRN9ESXB8HIAL285Y3W1SLSEH9I0J53MNRHM46O2S4HV9YI0UN9T8KI2CYQLKBMFIZWDF0AQLWDCZ6BWKVN0F9N5X2T07I' where id=10; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='STFEB339U1N7HFMLLPQN3OP5Z3MJE4ACO02GT0YVVIPN2GH1TZHBUPJBQHHWXZ4WCXDVGUEH8MJWTS2FKBKYHN10K2ZHBYX1MFEOXGNHNCW951QCV7RSLN2CSHQU8PVNI4R68LMRY8RS0FIAHTTGU3EDM034IM7DIS310E6C0CB64RT3E1EQRPFJBI1M5W4D3WE39RLPLESPDA4XNCRIHAYPNH9SM2PB08L1VF4QVJFFR4J1JB91KR7P4Q8RGF5JP' where id=11; -update noar ti set v0='STFEB339U1N7HFMLLPQN3OP5Z3MJE4ACO02GT0YVVIPN2GH1TZHBUPJBQHHWXZ4WCXDVGUEH8MJWTS2FKBKYHN10K2ZHBYX1MFEOXGNHNCW951QCV7RSLN2CSHQU8PVNI4R68LMRY8RS0FIAHTTGU3EDM034IM7DIS310E6C0CB64RT3E1EQRPFJBI1M5W4D3WE39RLPLESPDA4XNCRIHAYPNH9SM2PB08L1VF4QVJFFR4J1JB91KR7P4Q8RGF5JP' where id=11; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='JZU6AZDFHLO4IVEZU2VKR8SQGEKTOVBWAVCFIC6O14RAB74WD4SY503KM4GH9R035XFUHB8T6I0SS2YNPG8ZZ1H5QFWOIREHA9NCLOJCESBNIWOJ3NFVF4OGL2Y02ELEA4WNH6G01GATZLEKCJH00RJKZRAGXEIW70CC2I80L3D0RSB5EB5FJEDZD6W71P7ALCWM8S32SGAMH2UQTUJBHWS0CQXEXKW4CWJ9A1XNMN6MNUINBW5OABATA016JTWWI' where id=11; -update noar ti set v1='JZU6AZDFHLO4IVEZU2VKR8SQGEKTOVBWAVCFIC6O14RAB74WD4SY503KM4GH9R035XFUHB8T6I0SS2YNPG8ZZ1H5QFWOIREHA9NCLOJCESBNIWOJ3NFVF4OGL2Y02ELEA4WNH6G01GATZLEKCJH00RJKZRAGXEIW70CC2I80L3D0RSB5EB5FJEDZD6W71P7ALCWM8S32SGAMH2UQTUJBHWS0CQXEXKW4CWJ9A1XNMN6MNUINBW5OABATA016JTWWI' where id=11; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='UM3E5UG6NTBWZI5111D0TVLF4RPDLJQQPQFX2KOCNYIH7KDSH2ZRU3KZOWLMX8GT7795548PFBPXAL4T072X7667ZVMKRQVIXN8IPBNM749OKXL3PPTWQIN9EZ2O1NOZOPG1GC7NI57X8RP0A6RU0ZJ5PCI99E0SYA5HH3RGFRJBCVU875WQQOKLGXJ3A63QX9GVC3BOLXQFNZSRNXYNZO3W0P991R0XPUHO6FV22935OM1N1F6PBHYSDN522COV6' where id=11; -update noar ti set v2='UM3E5UG6NTBWZI5111D0TVLF4RPDLJQQPQFX2KOCNYIH7KDSH2ZRU3KZOWLMX8GT7795548PFBPXAL4T072X7667ZVMKRQVIXN8IPBNM749OKXL3PPTWQIN9EZ2O1NOZOPG1GC7NI57X8RP0A6RU0ZJ5PCI99E0SYA5HH3RGFRJBCVU875WQQOKLGXJ3A63QX9GVC3BOLXQFNZSRNXYNZO3W0P991R0XPUHO6FV22935OM1N1F6PBHYSDN522COV6' where id=11; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='RNO6912YC082O2MX8E0F1B3S6A4ZSOWV44SUWB9KR6SO5WVUK42OAAS7CFYWAJ8E5CTHXFGS8XGDBFRRQ21B8IZHJ1RQNDO7537BWAL1ZZ9J4A90UNYGZYCX8RQLHQ6OERYZ2P2AMQME2ICDZWP7OZ0SU49A0DJ39T7FS16B7H60VX5S7G54BUZY52FZM107NPTT87F4D6NRNPZHZAH14AK3EZVTKVHGBCMFZKOKB66BGMZFAQEWM433QYHRUMFSG' where id=11; -update noar ti set v3='RNO6912YC082O2MX8E0F1B3S6A4ZSOWV44SUWB9KR6SO5WVUK42OAAS7CFYWAJ8E5CTHXFGS8XGDBFRRQ21B8IZHJ1RQNDO7537BWAL1ZZ9J4A90UNYGZYCX8RQLHQ6OERYZ2P2AMQME2ICDZWP7OZ0SU49A0DJ39T7FS16B7H60VX5S7G54BUZY52FZM107NPTT87F4D6NRNPZHZAH14AK3EZVTKVHGBCMFZKOKB66BGMZFAQEWM433QYHRUMFSG' where id=11; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='ZBTYZZQ6N1D6SYSGMVI9OXXHTGB47K1AE70DXFCZ08NSOR5SQXS31Y16Q1BCHBMPUMOOCUXBPUDXRWVLLHB6X4ATXWP7HCUFF6I68KC34ZI7RIR0QRT5RJ79709QX4GGY5D8QCDJ5MSS6JDP1WO0VFP14P9WDS59ONVEBPJ58VD6A168LZCV9FES66NQ9YUDTGP9L88VHP807A15JOXY1XAG2FBEJX6QVHKCFNOK5FCV24ZWRN8TJIPU6SS5OAAHP' where id=12; -update noar ti set v0='ZBTYZZQ6N1D6SYSGMVI9OXXHTGB47K1AE70DXFCZ08NSOR5SQXS31Y16Q1BCHBMPUMOOCUXBPUDXRWVLLHB6X4ATXWP7HCUFF6I68KC34ZI7RIR0QRT5RJ79709QX4GGY5D8QCDJ5MSS6JDP1WO0VFP14P9WDS59ONVEBPJ58VD6A168LZCV9FES66NQ9YUDTGP9L88VHP807A15JOXY1XAG2FBEJX6QVHKCFNOK5FCV24ZWRN8TJIPU6SS5OAAHP' where id=12; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='P2QESD5NKTQKDUSGDDL2G74XRQW8UB1VUWTFKF3W3Z5W5U5FEZ51IHO1D39YBZK479DDSYE1E6PV9A70WDI9HHWWZ4E41Z7CY896TOSCFCW3LW3BHLY4OSBEYDCIV9XHLNQMUWKNJZHAXM3K72LPLGBTOC4IKGZSMRC8S53DH1ZHVR45QOP8OPMM3T8KXDQEPWX6VJXRMSXE81J00AQ8P31Q7BHE60MX2GRFL7F137D22IEHH5W0559W0FYKL9HHQ' where id=12; -update noar ti set v1='P2QESD5NKTQKDUSGDDL2G74XRQW8UB1VUWTFKF3W3Z5W5U5FEZ51IHO1D39YBZK479DDSYE1E6PV9A70WDI9HHWWZ4E41Z7CY896TOSCFCW3LW3BHLY4OSBEYDCIV9XHLNQMUWKNJZHAXM3K72LPLGBTOC4IKGZSMRC8S53DH1ZHVR45QOP8OPMM3T8KXDQEPWX6VJXRMSXE81J00AQ8P31Q7BHE60MX2GRFL7F137D22IEHH5W0559W0FYKL9HHQ' where id=12; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='D8ISEBZFRCZHU6FRW6QUKHYPOHL5RNMIXP4CGNSIF1LKQP03YC7EY9Y75K5OLVRTJPZXOF6WWG8A66E6JR6PSTW5K9SDA5TQH7I5A9B8EQNVWD77C1L5Y4ZL26QY6W7G31T7FKMEJCPN6ZFM2D336D6NGL7SK7ODP891GYPZGKGITMGTPT1HZN9DDX7OJEOONH6SB2R1SW01MATJ80QDHO9X7MMWI2YA3LHA29DZTOS5BZU20CHSEKRFSWBXI78OL' where id=12; -update noar ti set v2='D8ISEBZFRCZHU6FRW6QUKHYPOHL5RNMIXP4CGNSIF1LKQP03YC7EY9Y75K5OLVRTJPZXOF6WWG8A66E6JR6PSTW5K9SDA5TQH7I5A9B8EQNVWD77C1L5Y4ZL26QY6W7G31T7FKMEJCPN6ZFM2D336D6NGL7SK7ODP891GYPZGKGITMGTPT1HZN9DDX7OJEOONH6SB2R1SW01MATJ80QDHO9X7MMWI2YA3LHA29DZTOS5BZU20CHSEKRFSWBXI78OL' where id=12; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='QZZGM5VHOHC036K76P4O6CVQBE680S04LQ5M4QA1G6941S2B5IP3SQFCUJ43ZHEF6W34P0TFB9X4BMI2I5FENA6B7VZ0MKPDT62E4L35WWG0F4VO5TFGYSXBP2Y0ZCWUYR914RUAN1882LR6D2U1N2LQDPOM0UBTVV1RGBSS9AH4Z79IBYZUBTGVSUU84CISE06ANE0WP9HAAJN62GLP61H7FW17EYQP41E52PU0MTET8EPKFP6NGW26LKICF0YT3' where id=12; -update noar ti set v3='QZZGM5VHOHC036K76P4O6CVQBE680S04LQ5M4QA1G6941S2B5IP3SQFCUJ43ZHEF6W34P0TFB9X4BMI2I5FENA6B7VZ0MKPDT62E4L35WWG0F4VO5TFGYSXBP2Y0ZCWUYR914RUAN1882LR6D2U1N2LQDPOM0UBTVV1RGBSS9AH4Z79IBYZUBTGVSUU84CISE06ANE0WP9HAAJN62GLP61H7FW17EYQP41E52PU0MTET8EPKFP6NGW26LKICF0YT3' where id=12; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='CBZ1HGVRQXVSPJXLTAEIOTXNVAR709NC14JTZADASW9BUUEA3U79Z39IM2OP487JCUO5IM332BWRREU5HLK5ZSWA87GOTJUYWX6ATF50J2NKC5C16XRT4TYDHWJZPPGK9BW6EQ9OY2S7TC7UF5R1SJ56AWA60MTDY5X5L4JSC5NV5X9ZV4UJID4MNABB7UNCSRGVNUO0UACKSV4MQ4NWRZ6XB0OKM9FWFA247E1PYPDVI77OUDQVZIKOIH45IHJWQ' where id=13; -update noar ti set v0='CBZ1HGVRQXVSPJXLTAEIOTXNVAR709NC14JTZADASW9BUUEA3U79Z39IM2OP487JCUO5IM332BWRREU5HLK5ZSWA87GOTJUYWX6ATF50J2NKC5C16XRT4TYDHWJZPPGK9BW6EQ9OY2S7TC7UF5R1SJ56AWA60MTDY5X5L4JSC5NV5X9ZV4UJID4MNABB7UNCSRGVNUO0UACKSV4MQ4NWRZ6XB0OKM9FWFA247E1PYPDVI77OUDQVZIKOIH45IHJWQ' where id=13; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='610HGZ8VZ9FP7L3LMRIJOO1RZHRF0HTLRPYXWIU1C3TBCA8EWD0O80JTGXSUDLD2FNXI38W7D7VJ4NOFYJEJYLH1SZJ0NR4TXJ7RJFHKB9G9HLKN5C0GEDMYGYKLHNXI78ORWX5NI3QHCL5TIV3YRSJZVG06FQGF51VT8CENST8X4K4H2Q41I3LQ7JYKT0MKP3DY8U1289AQF6PY4XD6PJHDQEWV1DEUL0PA5BU0MKXVQVQQG8PC1MW19Z7L5388E' where id=13; -update noar ti set v1='610HGZ8VZ9FP7L3LMRIJOO1RZHRF0HTLRPYXWIU1C3TBCA8EWD0O80JTGXSUDLD2FNXI38W7D7VJ4NOFYJEJYLH1SZJ0NR4TXJ7RJFHKB9G9HLKN5C0GEDMYGYKLHNXI78ORWX5NI3QHCL5TIV3YRSJZVG06FQGF51VT8CENST8X4K4H2Q41I3LQ7JYKT0MKP3DY8U1289AQF6PY4XD6PJHDQEWV1DEUL0PA5BU0MKXVQVQQG8PC1MW19Z7L5388E' where id=13; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='BKMBYMGDF76K3BIJM0OD0QUGMIVKGDUPHXQ9YJ29Z924MAI7QFI534ZLNOFJ2RFUXM5S6YZ4FEDRH48NHSH3DTHWHX31TFDAI6UT4VT569AGI3VNXQE2J0XKZ6T2QR42TQVQ963PYD9J12D0PQ5WDODAIGDKSC1UKMHUBUA7BFK11U0MV65DQYBLPBP32VZN47WRWKZ3JKWDLB0QAZP8RNOMUP8FXS90DDCF49S154G7HMR312I2HWMY3KQDO7MZE' where id=13; -update noar ti set v2='BKMBYMGDF76K3BIJM0OD0QUGMIVKGDUPHXQ9YJ29Z924MAI7QFI534ZLNOFJ2RFUXM5S6YZ4FEDRH48NHSH3DTHWHX31TFDAI6UT4VT569AGI3VNXQE2J0XKZ6T2QR42TQVQ963PYD9J12D0PQ5WDODAIGDKSC1UKMHUBUA7BFK11U0MV65DQYBLPBP32VZN47WRWKZ3JKWDLB0QAZP8RNOMUP8FXS90DDCF49S154G7HMR312I2HWMY3KQDO7MZE' where id=13; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='EMN0BPRMR96LBBCRB2HEVSN9Q9856EJD6J6633XDMUX754HXGX4X818JUJS1MLN7XPERDZG7L7G5MG6H7VPVOY34C7JSELCYLDSWUC69LX56JADK6TPXGGVHY7RSBV7E1BFGNC4WMS0FX5PXRI8O4FSEVTONLIPL6A2ZWY3SA96PPCPP09QN8SJF42DJZQ3TRLGEI1VXCJ8GYIP8WFQRQ7KJUEOMVDKJQTM6S1LB6UC07X3K1Q46BL5FZ6ZQC8ULB' where id=13; -update noar ti set v3='EMN0BPRMR96LBBCRB2HEVSN9Q9856EJD6J6633XDMUX754HXGX4X818JUJS1MLN7XPERDZG7L7G5MG6H7VPVOY34C7JSELCYLDSWUC69LX56JADK6TPXGGVHY7RSBV7E1BFGNC4WMS0FX5PXRI8O4FSEVTONLIPL6A2ZWY3SA96PPCPP09QN8SJF42DJZQ3TRLGEI1VXCJ8GYIP8WFQRQ7KJUEOMVDKJQTM6S1LB6UC07X3K1Q46BL5FZ6ZQC8ULB' where id=13; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='2PNWKYJ0IL35C8Y0M5151XVQ63SJVXGWI2D7M2ZIICHF5P40JP9OHT4IZJSLTIFPKD8UJJEZNHATHFYOG171NHM8DEDFHPUA0XXHQM2JG1RCGWYL7IXRFNLKTGGKJDBCAJMIP6A04GU0MVOSZ9D0T34K4P11ATH0J2CHKNYFQ5ZXN4C839MYDMY98GTNI52DWA1FU4MSHKC0EL5EJBK7MEKH1FNGKRWTLDVY82BINBGNO65FH7J6Q3TJ4X5CHTW0F' where id=14; -update noar ti set v0='2PNWKYJ0IL35C8Y0M5151XVQ63SJVXGWI2D7M2ZIICHF5P40JP9OHT4IZJSLTIFPKD8UJJEZNHATHFYOG171NHM8DEDFHPUA0XXHQM2JG1RCGWYL7IXRFNLKTGGKJDBCAJMIP6A04GU0MVOSZ9D0T34K4P11ATH0J2CHKNYFQ5ZXN4C839MYDMY98GTNI52DWA1FU4MSHKC0EL5EJBK7MEKH1FNGKRWTLDVY82BINBGNO65FH7J6Q3TJ4X5CHTW0F' where id=14; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='ETS35EEO8ERWB9ATR3OL6LZ7LZKSEM4SGCFC6IQ5DRYZXLRZNHI8HYUUTC3EIO239AOS9RTBXGUJK54E6UDON5WFCYOHYX5S4263ZOAGBBGDKNAAJWWH1QWNODYBBRW232HJU5UX6442E0K9X027FUFD23U9I3GXTPBWPDF60CA23ZTQ9A1WIK5W47DHESV73DHJTUOBWPVN3JTZ5VA1X4KOET333Q5XOSPE9NZTIVXUL7HR0HBR7P6BG20G4K7NL' where id=14; -update noar ti set v1='ETS35EEO8ERWB9ATR3OL6LZ7LZKSEM4SGCFC6IQ5DRYZXLRZNHI8HYUUTC3EIO239AOS9RTBXGUJK54E6UDON5WFCYOHYX5S4263ZOAGBBGDKNAAJWWH1QWNODYBBRW232HJU5UX6442E0K9X027FUFD23U9I3GXTPBWPDF60CA23ZTQ9A1WIK5W47DHESV73DHJTUOBWPVN3JTZ5VA1X4KOET333Q5XOSPE9NZTIVXUL7HR0HBR7P6BG20G4K7NL' where id=14; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='13QZSK0KQFU1YD4VIJQJNQYS29TI6FPIP6VWPND2YN4NJ6VDTUJWAQXAI7GYM8ZWZ81976RRWXBZJH5KGA0AGGI8DRAGC7HB7Q2FVUE4TK9OWRZ2M5IWH3ZIQBVXU17PTVHWB4ORY424H104NAKYJ4XAAI93VHHF07F4SBBRIRQTYOAL0YKVOX9JUKMNG61A6CO3C66G8HJG2A83VCQ36GYUAMKFOCSGCF6PF5DCJR08PC4AFC781E0MYBKZT3PD3' where id=14; -update noar ti set v2='13QZSK0KQFU1YD4VIJQJNQYS29TI6FPIP6VWPND2YN4NJ6VDTUJWAQXAI7GYM8ZWZ81976RRWXBZJH5KGA0AGGI8DRAGC7HB7Q2FVUE4TK9OWRZ2M5IWH3ZIQBVXU17PTVHWB4ORY424H104NAKYJ4XAAI93VHHF07F4SBBRIRQTYOAL0YKVOX9JUKMNG61A6CO3C66G8HJG2A83VCQ36GYUAMKFOCSGCF6PF5DCJR08PC4AFC781E0MYBKZT3PD3' where id=14; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='INTZ7B0FKLX6FP8USN5MSOQ3DRQQGPBAYY3C3VVSW67D9X5WZPQ2H4KTQQSPWH9DJYJ1AACYL53112HJPK9KFWEVAZBCZPZU24G018YCILZOAZSBN7X9VYOXP572924AB2FGITSWCGRN5LWRZ173HVE1GSY2TKK8CANS1752PGHZLA0XQXJ4N3NE0W5W8XYARFSPI6LAPLNF143N8ZOFOLRBVKA0BQMFKEBF4AHT7AGNB1O556D5Y906Y8WA50NA3' where id=14; -update noar ti set v3='INTZ7B0FKLX6FP8USN5MSOQ3DRQQGPBAYY3C3VVSW67D9X5WZPQ2H4KTQQSPWH9DJYJ1AACYL53112HJPK9KFWEVAZBCZPZU24G018YCILZOAZSBN7X9VYOXP572924AB2FGITSWCGRN5LWRZ173HVE1GSY2TKK8CANS1752PGHZLA0XQXJ4N3NE0W5W8XYARFSPI6LAPLNF143N8ZOFOLRBVKA0BQMFKEBF4AHT7AGNB1O556D5Y906Y8WA50NA3' where id=14; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='OMUCFK4FET86VL9K4Z3D7P92NDDEMMTWUY80OHR2DU2S77LUDZ15Y0J4AUDLT0XYSJBSG4LHOSBHXCQPQLRZ0XLOUC7C3KTOC6PPDFO5RHH41TZ2BV6ZPS1FXJAEGNSDQ9E08SCM0A09QJC445OVSQDR7AM5GV7RYRWH37HL3W8V3WDJ62N4IQHKH08TXE5LQWR5Y2GFQTT5320KSEER3IBVFS4FUCD6WX3GG40T4JCCDZ659FGJA0LM7PCMP3KJV' where id=15; -update noar ti set v0='OMUCFK4FET86VL9K4Z3D7P92NDDEMMTWUY80OHR2DU2S77LUDZ15Y0J4AUDLT0XYSJBSG4LHOSBHXCQPQLRZ0XLOUC7C3KTOC6PPDFO5RHH41TZ2BV6ZPS1FXJAEGNSDQ9E08SCM0A09QJC445OVSQDR7AM5GV7RYRWH37HL3W8V3WDJ62N4IQHKH08TXE5LQWR5Y2GFQTT5320KSEER3IBVFS4FUCD6WX3GG40T4JCCDZ659FGJA0LM7PCMP3KJV' where id=15; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='YLNX5N8CQ4AY5YU90RUT1UELWH2NVKI955NUJ4PD1ZPB25NY4VB5B1BV7KE490YA5CITNJR6RIW58EEF59HVJRN2H8UEHELYTID6QUA7YYQZS0S3L5RSRDV0WIYQCKVNFMBQXXFVJB109GRIPYHRWDDJ9FJ1X8EEH7JXZXLPT0JE4PMFA5RGF9PKYR6XAP5UZ75ZKHRZZW6X1T1PLHNOSH4XISR2F2WSCJ1B1H1O373OMNNK2V8P3APCT9Q6A15LC' where id=15; -update noar ti set v1='YLNX5N8CQ4AY5YU90RUT1UELWH2NVKI955NUJ4PD1ZPB25NY4VB5B1BV7KE490YA5CITNJR6RIW58EEF59HVJRN2H8UEHELYTID6QUA7YYQZS0S3L5RSRDV0WIYQCKVNFMBQXXFVJB109GRIPYHRWDDJ9FJ1X8EEH7JXZXLPT0JE4PMFA5RGF9PKYR6XAP5UZ75ZKHRZZW6X1T1PLHNOSH4XISR2F2WSCJ1B1H1O373OMNNK2V8P3APCT9Q6A15LC' where id=15; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='UUN41LU3WL80F1PGPS1SIQ6PHIXBUCZCHAFOQVWVCOXWJVYEO1JU9LU80HQWAN8V358AJN9JL2LR0NSKKD741ANQKUYG3S82SM7POWXHHPU7BA60CK6PCPQ4C6HF44I9UTAVLWU56XZPJK05ENY9K6ICTF3YXPV1984WTPRP3AD436MPE1KXIXT9U92FVMJ6U3QMSKGNSZVXELP849ZF5SA5EVS0729282903L0APHAOSORFTR6TUW0L7DI63TTC5' where id=15; -update noar ti set v2='UUN41LU3WL80F1PGPS1SIQ6PHIXBUCZCHAFOQVWVCOXWJVYEO1JU9LU80HQWAN8V358AJN9JL2LR0NSKKD741ANQKUYG3S82SM7POWXHHPU7BA60CK6PCPQ4C6HF44I9UTAVLWU56XZPJK05ENY9K6ICTF3YXPV1984WTPRP3AD436MPE1KXIXT9U92FVMJ6U3QMSKGNSZVXELP849ZF5SA5EVS0729282903L0APHAOSORFTR6TUW0L7DI63TTC5' where id=15; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='CRJ95A8151BNBTWQPQEQ0UX3WMYZHTS5I1PMZ0RD5YQDYVXF8K0NN9YF2CEK20EE2N9DG1MZSQDVHLN9R51SHCI7DQCBXRQJ61CNXD3KYDDKOE0RSGWUHCOB4DAC0VF8OBOZXTYDCQNAWBIY4ZQXEWBJPYEUH8ZMS2J4BAES75UPGWD576U0BJZWIS6MQOFNFQATV61O9FKTJ2CRDASMPFLTJSV3YCN6KWTBW8VMRENA3CEZIQGEWQ95R2XS8BYJL' where id=15; -update noar ti set v3='CRJ95A8151BNBTWQPQEQ0UX3WMYZHTS5I1PMZ0RD5YQDYVXF8K0NN9YF2CEK20EE2N9DG1MZSQDVHLN9R51SHCI7DQCBXRQJ61CNXD3KYDDKOE0RSGWUHCOB4DAC0VF8OBOZXTYDCQNAWBIY4ZQXEWBJPYEUH8ZMS2J4BAES75UPGWD576U0BJZWIS6MQOFNFQATV61O9FKTJ2CRDASMPFLTJSV3YCN6KWTBW8VMRENA3CEZIQGEWQ95R2XS8BYJL' where id=15; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='DY5HNMY99RL9AFP3JM9WWU1VLM3K8G9L6HNAA1F61Q6ON1XEKTCS6JVLEL5LOA0C0AZFLPP1B00JHM2HVKOFF2C8KZ63CJIP8INIXF9MYNCAKHZJ4QW46MC9HCKEEP4AKX0KF98T64A4Z5H448V5RF0QHOLA85XVC2VLTEUL4W1UJGNGQ8M9KL9HJZE3C4MW9N6IOEYBQTTKUVRLWJUFSEBKYJIUHSWTUDLOG93QEHAYOJL33LTMZ6CB56BAA4KOE' where id=16; -update noar ti set v0='DY5HNMY99RL9AFP3JM9WWU1VLM3K8G9L6HNAA1F61Q6ON1XEKTCS6JVLEL5LOA0C0AZFLPP1B00JHM2HVKOFF2C8KZ63CJIP8INIXF9MYNCAKHZJ4QW46MC9HCKEEP4AKX0KF98T64A4Z5H448V5RF0QHOLA85XVC2VLTEUL4W1UJGNGQ8M9KL9HJZE3C4MW9N6IOEYBQTTKUVRLWJUFSEBKYJIUHSWTUDLOG93QEHAYOJL33LTMZ6CB56BAA4KOE' where id=16; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='YVIMS6MH43DTBXUPI2AM8DEDCP8OIPTWUU4EFKHW65ALSKSO4O7KOLLE6VIXG5CF17B7C7G2MF4ZMOFFEXTKKBEOHXJBIHZGTVBLCCL9NLDJB8R6KAVYUZ9LDV3XXBB8TTCXW0KSPYMT9JNFC9FS7RULWM03UQK55ABSOCA0D9ZOW967M3KFWNFOQUB8X8UTS0F6DFNJ2PWOX6S80JIG9RO8XFPRB20J07O6EW8UXX7L276SL5P1EB20BGTI44WHL' where id=16; -update noar ti set v1='YVIMS6MH43DTBXUPI2AM8DEDCP8OIPTWUU4EFKHW65ALSKSO4O7KOLLE6VIXG5CF17B7C7G2MF4ZMOFFEXTKKBEOHXJBIHZGTVBLCCL9NLDJB8R6KAVYUZ9LDV3XXBB8TTCXW0KSPYMT9JNFC9FS7RULWM03UQK55ABSOCA0D9ZOW967M3KFWNFOQUB8X8UTS0F6DFNJ2PWOX6S80JIG9RO8XFPRB20J07O6EW8UXX7L276SL5P1EB20BGTI44WHL' where id=16; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='4Z6W9NYSLKE1W93KP5IW301MDBX6XD5CJT8CZ9CEFKHH8A7KPWRME3KP58GGDHGJTI12FSVBS0YNQNU1PSDXWW8CVUJQIBTI8UQVDQF7BKAIU9QAD5PXY7IFUXRFVM4DFAIW6C83QFEEJRBTEZDZTHCJZ49AVPXS8UJ5S62AXAOOPW9FHYK2UNDNY06M0VUTFPIT8IG41B819E8TM9X8Z2UMRW2667OOXKEBGN9JVGL0MGENM4JTWLFG2OH1VUEBZ' where id=16; -update noar ti set v2='4Z6W9NYSLKE1W93KP5IW301MDBX6XD5CJT8CZ9CEFKHH8A7KPWRME3KP58GGDHGJTI12FSVBS0YNQNU1PSDXWW8CVUJQIBTI8UQVDQF7BKAIU9QAD5PXY7IFUXRFVM4DFAIW6C83QFEEJRBTEZDZTHCJZ49AVPXS8UJ5S62AXAOOPW9FHYK2UNDNY06M0VUTFPIT8IG41B819E8TM9X8Z2UMRW2667OOXKEBGN9JVGL0MGENM4JTWLFG2OH1VUEBZ' where id=16; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='6DCS6589XD15G2KDZKYUOECGWA9V71948FBVBSSH7CAY0VK5YW06NKXVCVET0ME4Z1MFSOD03N390VRBQK56EQ3JC7R5KHK1I69KNXLOVHEWFFQ98UK9AYCITUIU4SUHC9M4UN33JUSRL4GWHSIPP2U2A8GVBXBGPXARL9N8VE959SWWUOJKSESON2FHI0PXL0T1AZOW9GC60XS65KBRWDPHSJE13ZAQ71YWYUIDIT5AIGEYZD7EPA8MU0XCRE6VF' where id=16; -update noar ti set v3='6DCS6589XD15G2KDZKYUOECGWA9V71948FBVBSSH7CAY0VK5YW06NKXVCVET0ME4Z1MFSOD03N390VRBQK56EQ3JC7R5KHK1I69KNXLOVHEWFFQ98UK9AYCITUIU4SUHC9M4UN33JUSRL4GWHSIPP2U2A8GVBXBGPXARL9N8VE959SWWUOJKSESON2FHI0PXL0T1AZOW9GC60XS65KBRWDPHSJE13ZAQ71YWYUIDIT5AIGEYZD7EPA8MU0XCRE6VF' where id=16; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='1EX7JUJR8MQ6QW6ITYIBK4RS2BQI4I9FS6ZVBEACZQ853WXRDWWSG6GE3DWWU10YF7710U40XUVNW897MZV8G1EMQYX6XU7P0EPKF7ZTLO31A6XTQBVVPWCX8CZHWQCN0WOW3R5VIRM27D1GQGPSAKJYJ3YF6OQUIH3VFWUOBJHSAN019AL4RZWVIXIZUPFERNH9FUDJR42PLF2UE2FX4OFRF81YF3TJYM9I84J881KHMI3JBDPJDQ8TNBXHULHVF' where id=17; -update noar ti set v0='1EX7JUJR8MQ6QW6ITYIBK4RS2BQI4I9FS6ZVBEACZQ853WXRDWWSG6GE3DWWU10YF7710U40XUVNW897MZV8G1EMQYX6XU7P0EPKF7ZTLO31A6XTQBVVPWCX8CZHWQCN0WOW3R5VIRM27D1GQGPSAKJYJ3YF6OQUIH3VFWUOBJHSAN019AL4RZWVIXIZUPFERNH9FUDJR42PLF2UE2FX4OFRF81YF3TJYM9I84J881KHMI3JBDPJDQ8TNBXHULHVF' where id=17; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='M9XA630UPYUNXTSPY40QES8JDG4274PGCE7B1JN4YLL88GL6UCECK0V84OI8IU63Y2I4EZ16P44HHC0FJLNIOXVIOF1BEMH4DH81QS1966WQR8QESPC3FG0JYJBWLATLK5U20456YTI5N21TC27YBGBVH3LU8DADLPGLM07KLJ1DKSGUXOJXPZBNNG9LIS8AKK7D0JR3MOOWOKRN90EO7PTW8827W52T14RGMQ72XXJNFXPVIYHBQYOYDZUUC8WUM' where id=17; -update noar ti set v1='M9XA630UPYUNXTSPY40QES8JDG4274PGCE7B1JN4YLL88GL6UCECK0V84OI8IU63Y2I4EZ16P44HHC0FJLNIOXVIOF1BEMH4DH81QS1966WQR8QESPC3FG0JYJBWLATLK5U20456YTI5N21TC27YBGBVH3LU8DADLPGLM07KLJ1DKSGUXOJXPZBNNG9LIS8AKK7D0JR3MOOWOKRN90EO7PTW8827W52T14RGMQ72XXJNFXPVIYHBQYOYDZUUC8WUM' where id=17; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='IZULBI6J1M7JAAK559NKOU6YC45H51C6EOOWY0AQXGXZTX0007WVQL8LLY87PWSYVCUQXV0VCHHLCC82IATF9R9B9NKNDL633AQPSW075J2BXG65Q1JV7Q7P5YPQ6LCFWFEBFEZUC2OTARO4JBUUS1KKP6HWM89YIMU8AL236GU45P1JGQQCA6M7RXETNW5DHV4L82E4GZ4VCVY82E31BPPNZJAD1KJ1SOEQ8G1DJ45D04QKBQIJ80VPU82TS93BX' where id=17; -update noar ti set v2='IZULBI6J1M7JAAK559NKOU6YC45H51C6EOOWY0AQXGXZTX0007WVQL8LLY87PWSYVCUQXV0VCHHLCC82IATF9R9B9NKNDL633AQPSW075J2BXG65Q1JV7Q7P5YPQ6LCFWFEBFEZUC2OTARO4JBUUS1KKP6HWM89YIMU8AL236GU45P1JGQQCA6M7RXETNW5DHV4L82E4GZ4VCVY82E31BPPNZJAD1KJ1SOEQ8G1DJ45D04QKBQIJ80VPU82TS93BX' where id=17; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='QG5GTFR49E4F0LKAJ8WKFQUT7R8I2DIY7YCON9SPKW19YNPIHGYFGEYLQTVA8PIIRY3ZEQ80YY44ZZ1GD1CYQLJBV6SVFQBHANBPKX2RQZ8JLTK3UT6O3K527SVI036ENJ1UWFMNZW9DM6QC3MB4ZWMS8PA1K5B2Y55T30VPTWNWZAJICX9Z1TAG5400YH2TGW2Q9P1T8XON02UES0E7FEBWZ5XF5A6ME7B2SMLQWY4KO55LGEW4D25QF0RUYFUMB' where id=17; -update noar ti set v3='QG5GTFR49E4F0LKAJ8WKFQUT7R8I2DIY7YCON9SPKW19YNPIHGYFGEYLQTVA8PIIRY3ZEQ80YY44ZZ1GD1CYQLJBV6SVFQBHANBPKX2RQZ8JLTK3UT6O3K527SVI036ENJ1UWFMNZW9DM6QC3MB4ZWMS8PA1K5B2Y55T30VPTWNWZAJICX9Z1TAG5400YH2TGW2Q9P1T8XON02UES0E7FEBWZ5XF5A6ME7B2SMLQWY4KO55LGEW4D25QF0RUYFUMB' where id=17; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='8K2JZ9ZN54VC5W5YTMU4R2OL2UDKXGYAAK1X2N25MLU1G66DP4SHQQ6H6F0PBW5JTVQNQXVYTQ2OD2T6DP7MFJSJT95NC5EHRC3SVYBVTFLG3ZKAMPC3271AD3LBCUYPXGM4YPDT03QOEZ051EDD1L054XM9SOPWBZ71LFXQN7MZNU0C4Z94ZTZQ661XLDQCGJG16U8XWWXZXLS61EUOOMT2O9OZIHY5SF3GA4L8EBVVCTXCVECHANQVIYJF9TYJA' where id=18; -update noar ti set v0='8K2JZ9ZN54VC5W5YTMU4R2OL2UDKXGYAAK1X2N25MLU1G66DP4SHQQ6H6F0PBW5JTVQNQXVYTQ2OD2T6DP7MFJSJT95NC5EHRC3SVYBVTFLG3ZKAMPC3271AD3LBCUYPXGM4YPDT03QOEZ051EDD1L054XM9SOPWBZ71LFXQN7MZNU0C4Z94ZTZQ661XLDQCGJG16U8XWWXZXLS61EUOOMT2O9OZIHY5SF3GA4L8EBVVCTXCVECHANQVIYJF9TYJA' where id=18; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='P1TI3VGHO4U7XLPQU4J4BOB9061IRDSR2P8F6K7CVSK9OL3JW76HO7HA3YYS89MNTBU6YV0NTMM39Y2XQPEZX04NYJRJ3H7GAJ3VIJP28I8ZPXQ73PPQXB5T3RLBEFEJ80H89V3HS78NJ3JVNMQTQRDKVAWY32LSC7QY88EA436MWEVPJYHKSDSDAVOU9V5TH9LB0P9MDY45B8OQXHCT48GKPHKF9Y3WGRLZ3GCTL8NGANXTS2HU0466DO2E2AXNL' where id=18; -update noar ti set v1='P1TI3VGHO4U7XLPQU4J4BOB9061IRDSR2P8F6K7CVSK9OL3JW76HO7HA3YYS89MNTBU6YV0NTMM39Y2XQPEZX04NYJRJ3H7GAJ3VIJP28I8ZPXQ73PPQXB5T3RLBEFEJ80H89V3HS78NJ3JVNMQTQRDKVAWY32LSC7QY88EA436MWEVPJYHKSDSDAVOU9V5TH9LB0P9MDY45B8OQXHCT48GKPHKF9Y3WGRLZ3GCTL8NGANXTS2HU0466DO2E2AXNL' where id=18; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='0GF9EHOS7Y0HYH0RJK4TZLC4OSF5FPYO5ZGMTUGTP1J0247XMQXDCK3IIGCNJV1DLGZ9LSM3CC6H1WYWB6PET2WUZI5YWL9WTP7E2EWDXZF9IGUJTVV49736J22063ARMMO7VF0DA4HY85G2Z5CM5L536CYO9QGIF8Z2PZCAXYM6VCI7TOHLU257GLQVI04J29D6UYZ1V2TBXI4BNJZGFNW6E1258SLLOAAYMSCUKF6HC0P6B49ZBKBM8GPFEXJAN' where id=18; -update noar ti set v2='0GF9EHOS7Y0HYH0RJK4TZLC4OSF5FPYO5ZGMTUGTP1J0247XMQXDCK3IIGCNJV1DLGZ9LSM3CC6H1WYWB6PET2WUZI5YWL9WTP7E2EWDXZF9IGUJTVV49736J22063ARMMO7VF0DA4HY85G2Z5CM5L536CYO9QGIF8Z2PZCAXYM6VCI7TOHLU257GLQVI04J29D6UYZ1V2TBXI4BNJZGFNW6E1258SLLOAAYMSCUKF6HC0P6B49ZBKBM8GPFEXJAN' where id=18; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='VSJJPAWBOTXJE0RUC1FBYQZSFWY1KQ9O15HB8TABPYVIVEC591859EEHGPUMTLUBQ342QTP33RQQ793NIKBRT10LLOG0GGY4QILVRD48F1RXC10O46NYU0BDY4R7D6CVJLENGPVNUDRR6VCVJ4RGKRK5GS1Y1Q7NWCZ002AWD2A6V610FH2W2FX1X28RMH649YW6LVW1HRZ5VAYGDLYF5QM593F3891FRVN007L2TFPZCWW1WSUAOAK6U1Q69BXUS' where id=18; -update noar ti set v3='VSJJPAWBOTXJE0RUC1FBYQZSFWY1KQ9O15HB8TABPYVIVEC591859EEHGPUMTLUBQ342QTP33RQQ793NIKBRT10LLOG0GGY4QILVRD48F1RXC10O46NYU0BDY4R7D6CVJLENGPVNUDRR6VCVJ4RGKRK5GS1Y1Q7NWCZ002AWD2A6V610FH2W2FX1X28RMH649YW6LVW1HRZ5VAYGDLYF5QM593F3891FRVN007L2TFPZCWW1WSUAOAK6U1Q69BXUS' where id=18; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='J61BZEOQFZ08XSSBJ2LYGFGU741OSER0XJGABRRBAQOOC6X7VNLNANY0AEEXDSVIFZQ9N3V7KYDB1KO3S2JKKLY2PLA6C51NQ82LLG6BBTLID6EWSQP0C1U6X7L5GQ9O9CTDO0IGH66E2XMPYLL3TUZFW507CA9UYILSWZX4SLCHREKOU0JJPT0LDFG89A0TKRK9QMVG1JS1JD2BVXTNPOUHYZB3LO4MQCK3XD7S6V62QV8VLIPOTT2I5ZBUY5FIQ' where id=19; -update noar ti set v0='J61BZEOQFZ08XSSBJ2LYGFGU741OSER0XJGABRRBAQOOC6X7VNLNANY0AEEXDSVIFZQ9N3V7KYDB1KO3S2JKKLY2PLA6C51NQ82LLG6BBTLID6EWSQP0C1U6X7L5GQ9O9CTDO0IGH66E2XMPYLL3TUZFW507CA9UYILSWZX4SLCHREKOU0JJPT0LDFG89A0TKRK9QMVG1JS1JD2BVXTNPOUHYZB3LO4MQCK3XD7S6V62QV8VLIPOTT2I5ZBUY5FIQ' where id=19; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='X9SHZS550ADRHP2NFR6Z5LPL8Q3SIA03ST8FSMZ549EOVY8Q80ZVYG3BPLX4ESMJUFLGC5ILWHVFW5OM2VI8TT1GUPS3HXFDPQ7RNLNKZVJCDL96HQAG4VO26JYHV5CS836W6MUTFDH81Q6S68QLORT48SXYIKN3JJ2NK87MOJKEI9KNL5FBJEC2FTQQSYF8EWP9VTSKU3O41WN55L07H2FYVG986ERQWEUW93PTGHEL6G1PZFAOLNMDFGC37WSQN' where id=19; -update noar ti set v1='X9SHZS550ADRHP2NFR6Z5LPL8Q3SIA03ST8FSMZ549EOVY8Q80ZVYG3BPLX4ESMJUFLGC5ILWHVFW5OM2VI8TT1GUPS3HXFDPQ7RNLNKZVJCDL96HQAG4VO26JYHV5CS836W6MUTFDH81Q6S68QLORT48SXYIKN3JJ2NK87MOJKEI9KNL5FBJEC2FTQQSYF8EWP9VTSKU3O41WN55L07H2FYVG986ERQWEUW93PTGHEL6G1PZFAOLNMDFGC37WSQN' where id=19; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='MCK1ROFUKOOYQKHCHOD2VMXQZ8YHOSX2Q6XD8DPI8XV35BG1Z85DO89GVN6F7OKCTZXD87375GWB8H5QHP8TWUBKO0NVSFVBV5QWP3UB0M9O7PUTHNFRI2VL8EIWFNALBH7G8O2OSNP3X85N672891GCZD3QHU1LX740ST25UM4YJ7GTNCCM7QVLB85AKCU8QGXAQQGUJDFTPY7G6NM4ILR6NSY7E6CKU3QMZ5W3ZJ9O5Z412A464PK6LHA8DKPS4' where id=19; -update noar ti set v2='MCK1ROFUKOOYQKHCHOD2VMXQZ8YHOSX2Q6XD8DPI8XV35BG1Z85DO89GVN6F7OKCTZXD87375GWB8H5QHP8TWUBKO0NVSFVBV5QWP3UB0M9O7PUTHNFRI2VL8EIWFNALBH7G8O2OSNP3X85N672891GCZD3QHU1LX740ST25UM4YJ7GTNCCM7QVLB85AKCU8QGXAQQGUJDFTPY7G6NM4ILR6NSY7E6CKU3QMZ5W3ZJ9O5Z412A464PK6LHA8DKPS4' where id=19; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='YXT6TYZFVOPURSW0RQ3F4YJ9SFHH4E7NJOJPLDC9R48ZPUN8CDSISFKETUPGZLBB18JJ849UPAZEHMDFZ4CANRQAX2WKI740GSXOKVUOWT9KKIBP230B9ZGGSXDEW205SKNCCPCXI3181HKQCYB0TUL1JVSIH8A3A209M9VEEDGDE6B1FYFQCQO1QRJV9S57U6XBQMZ0K8BGJJQE4T7U43M058VAPXGAPKANFGQCB8P8SQ7K4DJFNUXPFKBXJTOV0' where id=19; -update noar ti set v3='YXT6TYZFVOPURSW0RQ3F4YJ9SFHH4E7NJOJPLDC9R48ZPUN8CDSISFKETUPGZLBB18JJ849UPAZEHMDFZ4CANRQAX2WKI740GSXOKVUOWT9KKIBP230B9ZGGSXDEW205SKNCCPCXI3181HKQCYB0TUL1JVSIH8A3A209M9VEEDGDE6B1FYFQCQO1QRJV9S57U6XBQMZ0K8BGJJQE4T7U43M058VAPXGAPKANFGQCB8P8SQ7K4DJFNUXPFKBXJTOV0' where id=19; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='LV01CP920RSCAZHN5VF1W9JEVFDYH596R8J8LC0MF86T3Z1UAYM45873ERUF3EEDP1GOTNSF2IGBLYIXTOI3TVFK1WI9JE0DX1R5WXCKJ9EBH115MTQM4T52S31O05GKVUZ62P9TXQ1J9QV4ZCT4VEOQN4BJKBKH4B7579YR7XP4AW9AVUVAS1P8S6K649WLYMPVMKHZOKRADCRWUARYLFIGW0IS030GMTLGQN9CKN9QR73MR15N5JTOMV9HORU1M' where id=20; -update noar ti set v0='LV01CP920RSCAZHN5VF1W9JEVFDYH596R8J8LC0MF86T3Z1UAYM45873ERUF3EEDP1GOTNSF2IGBLYIXTOI3TVFK1WI9JE0DX1R5WXCKJ9EBH115MTQM4T52S31O05GKVUZ62P9TXQ1J9QV4ZCT4VEOQN4BJKBKH4B7579YR7XP4AW9AVUVAS1P8S6K649WLYMPVMKHZOKRADCRWUARYLFIGW0IS030GMTLGQN9CKN9QR73MR15N5JTOMV9HORU1M' where id=20; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='1UFRXZG0XHBSFLK2C2P2ZO6R90R625ABCFS2N1EHDWLQC9CZ1K5CH797VU1GYB0WR220IXN50J8TOU7NFZIIA6P5BMHXBMTOJ7EHOHAU8MN09C9TV8315GV3HDKSWOLADRYLJMGVQ6EDK4G1C8UW2I59YEMMNIUW0GMIZRMX48FWGBGHZRFUK0LTQ0U12JJXNHIFNTMQ0J83A2MOJMXZMJ3VT89NPGDHZP742QU5MB8QZRJW5MNR7U5BW2FN68UHI' where id=20; -update noar ti set v1='1UFRXZG0XHBSFLK2C2P2ZO6R90R625ABCFS2N1EHDWLQC9CZ1K5CH797VU1GYB0WR220IXN50J8TOU7NFZIIA6P5BMHXBMTOJ7EHOHAU8MN09C9TV8315GV3HDKSWOLADRYLJMGVQ6EDK4G1C8UW2I59YEMMNIUW0GMIZRMX48FWGBGHZRFUK0LTQ0U12JJXNHIFNTMQ0J83A2MOJMXZMJ3VT89NPGDHZP742QU5MB8QZRJW5MNR7U5BW2FN68UHI' where id=20; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='8SK5PQ12JIT36Z8U8U2KML2USL1BVSRB3Y4OV7THU88WF1HQYP6VR9GXEU6JXXGYOPOXKGIB1UQL477WFK0Z4ROJD4X86PZC4RD5PHDRQ1LWL2TVML4KGS59CUU9Z123SWRE902TMW1988N5CI2OPZ5ENMF9SOW3T0346DL6TE0VKTFRERW0JYFGJ99OQAEUI9B5E1C1K9OFR6JRFZMFPJLSEKBUPRB1370URWGMEWD757G72OFBZR6KAUJL9CLWR' where id=20; -update noar ti set v2='8SK5PQ12JIT36Z8U8U2KML2USL1BVSRB3Y4OV7THU88WF1HQYP6VR9GXEU6JXXGYOPOXKGIB1UQL477WFK0Z4ROJD4X86PZC4RD5PHDRQ1LWL2TVML4KGS59CUU9Z123SWRE902TMW1988N5CI2OPZ5ENMF9SOW3T0346DL6TE0VKTFRERW0JYFGJ99OQAEUI9B5E1C1K9OFR6JRFZMFPJLSEKBUPRB1370URWGMEWD757G72OFBZR6KAUJL9CLWR' where id=20; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='T7ZKLIFD9NTGMHUL3XHEHR5WVSYDTDZPD43CNEAWTRAMRI63VD7X5RYPQ9PEXBG249AW68DNN7FME87SWD6IGBUQOAX54KXEOW2EGYIKRQONVFSZFJN0OO2JP9OBQ1NJ6CK8RDD4AC4QKARWMY2H0HFX156B5J43B3OTDSKUS1FIAD1H7ON77RMD5WD6IEUV37UVDTRXED5EFZV7HP9R7ZQ29D4C3V5KZADLRP1RPULWD25RSMQVXGMDG3AFT4FLB' where id=20; -update noar ti set v3='T7ZKLIFD9NTGMHUL3XHEHR5WVSYDTDZPD43CNEAWTRAMRI63VD7X5RYPQ9PEXBG249AW68DNN7FME87SWD6IGBUQOAX54KXEOW2EGYIKRQONVFSZFJN0OO2JP9OBQ1NJ6CK8RDD4AC4QKARWMY2H0HFX156B5J43B3OTDSKUS1FIAD1H7ON77RMD5WD6IEUV37UVDTRXED5EFZV7HP9R7ZQ29D4C3V5KZADLRP1RPULWD25RSMQVXGMDG3AFT4FLB' where id=20; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='W1VTJ1H2REY8435MAB757VIZ0X0Q36L8IHQB818ROI46K7QDUYYXC4YE7DIL247O2X6V0590O71IUDN3JVJP47Z24DJW0SQ0IYYWP6IOLRHF4XHEU7WK8AJ87ZPJV9E6VNY861F2PWANFB6XRXYP0CT0H3ZLDDH663Y8PWYF13MIL5QDVQF2Y2UKVMHI86SFED8HAA2XU035PSBQDSO136J2MLI8Y84GM0T08P5OGJRHJE1LVJ8HZ2UIHYFNO8OU6' where id=21; -update noar ti set v0='W1VTJ1H2REY8435MAB757VIZ0X0Q36L8IHQB818ROI46K7QDUYYXC4YE7DIL247O2X6V0590O71IUDN3JVJP47Z24DJW0SQ0IYYWP6IOLRHF4XHEU7WK8AJ87ZPJV9E6VNY861F2PWANFB6XRXYP0CT0H3ZLDDH663Y8PWYF13MIL5QDVQF2Y2UKVMHI86SFED8HAA2XU035PSBQDSO136J2MLI8Y84GM0T08P5OGJRHJE1LVJ8HZ2UIHYFNO8OU6' where id=21; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='4NS89B2R8N583FYQLH4K8JF4PA22Z2HHWCRKARP1SIKKVH4YW3QKA89V9A5KKI4GFMXREH351Z6Z8F36XV8D8YQBC76EGIV0V17Z4BZZBVVH6WJWQTM33UWSPI0VX5HLCN3YEYNUH6SZO5N7OY0CW00G3ZM3U4QXUFZEEDXI3Y1TMGKFLR1HVH17J14RYDBZ5JG78SPDTAU5GS9RI8THFAWFBJ4ON4IV3MN3G5PQPKXHFLSFWJAHK9OQLDHJL9HMZ' where id=21; -update noar ti set v1='4NS89B2R8N583FYQLH4K8JF4PA22Z2HHWCRKARP1SIKKVH4YW3QKA89V9A5KKI4GFMXREH351Z6Z8F36XV8D8YQBC76EGIV0V17Z4BZZBVVH6WJWQTM33UWSPI0VX5HLCN3YEYNUH6SZO5N7OY0CW00G3ZM3U4QXUFZEEDXI3Y1TMGKFLR1HVH17J14RYDBZ5JG78SPDTAU5GS9RI8THFAWFBJ4ON4IV3MN3G5PQPKXHFLSFWJAHK9OQLDHJL9HMZ' where id=21; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='A0LMSBWZ9N9HNOEL7F8JYWRD40FBX2BQJ5PZMJCDQFPWP9B3YFYNHXDLYLXIIRR00I163U773YB1J3HKXRT77S0FW734KHZ6M14PU8BZJGWV9U22H3O6EC1SZRNTXQXGQ584YBDN3CKTGSFH6RFO8N3M30HQN7O06M5HG62DMVF3UIHE56FM1NS2CVGVCQ86TFBI8N1K4NSIG0GG4SOHAQ3JN69EN84RKP5O7MV2LZQVORM2GQZ3U612OTF40N7EM' where id=21; -update noar ti set v2='A0LMSBWZ9N9HNOEL7F8JYWRD40FBX2BQJ5PZMJCDQFPWP9B3YFYNHXDLYLXIIRR00I163U773YB1J3HKXRT77S0FW734KHZ6M14PU8BZJGWV9U22H3O6EC1SZRNTXQXGQ584YBDN3CKTGSFH6RFO8N3M30HQN7O06M5HG62DMVF3UIHE56FM1NS2CVGVCQ86TFBI8N1K4NSIG0GG4SOHAQ3JN69EN84RKP5O7MV2LZQVORM2GQZ3U612OTF40N7EM' where id=21; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='NZS96BSKLCQF9IT0W1P1C3HB61PCORQDT0MBFBYMPHPOC07VHTEVXUIA8KDFR5TNSIJ4JTECMAZC1730AWPHMTN9RTVKKANK4Z4H4DHO3M2ZWICK84NJ4CS2QK6G8URGBVWGJ4N7HRN2UW82JF99Y9KRXM45O0W7CIPOMQ4U4VL7OAWMATGRWCHLEF5OOME1UFYHRNKMJEAABEP472J7MNTL20L94OS835OQR5F43RMT2I1CIZM4GERKNVQM90QIZ' where id=21; -update noar ti set v3='NZS96BSKLCQF9IT0W1P1C3HB61PCORQDT0MBFBYMPHPOC07VHTEVXUIA8KDFR5TNSIJ4JTECMAZC1730AWPHMTN9RTVKKANK4Z4H4DHO3M2ZWICK84NJ4CS2QK6G8URGBVWGJ4N7HRN2UW82JF99Y9KRXM45O0W7CIPOMQ4U4VL7OAWMATGRWCHLEF5OOME1UFYHRNKMJEAABEP472J7MNTL20L94OS835OQR5F43RMT2I1CIZM4GERKNVQM90QIZ' where id=21; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='UGBZLIBD8CC75F2WQUKFPQJIO0XXHNYJW03ZKO4N0PLCDYNGJNJC7EC5VZLLGBL9SXACXN0VD5RJWG2ERIYRSY0J3P5TULBECQM03BXM0RB5JCBZL6GPPQQXUQGXDDHJ9MKO14OF3DEIW308QTWQ00E0M96QB4CAQGFE79Q28F649ERLALRVGG9BJM2W2NJAW5QHOC71I709WYWQZKLYJ87MTC9IB8CJI8X50D64AEZQPY3BDY00XY61AW0IFDBIL' where id=22; -update noar ti set v0='UGBZLIBD8CC75F2WQUKFPQJIO0XXHNYJW03ZKO4N0PLCDYNGJNJC7EC5VZLLGBL9SXACXN0VD5RJWG2ERIYRSY0J3P5TULBECQM03BXM0RB5JCBZL6GPPQQXUQGXDDHJ9MKO14OF3DEIW308QTWQ00E0M96QB4CAQGFE79Q28F649ERLALRVGG9BJM2W2NJAW5QHOC71I709WYWQZKLYJ87MTC9IB8CJI8X50D64AEZQPY3BDY00XY61AW0IFDBIL' where id=22; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='U2D0N9XSKPXZXC19LLNV01AFVZWMK1T46MEWT7CN1HU839QKJQH1KV4QIQRU8KJ2BEVAV4T6AG0MQ6QKDQBUU35EKLH8EIXLMVMEPI8IEZCAS9256XIIP0B7YZT9FAB7DMXD7MUBNKFP5XQW70EQE4WS5MOKSWYQRJ4DWE0NMPU9NE8DRK9NNEDTMVP2PDW2PJXX5MIVSH9T8TD2OF9WBTK9RP357D9DGUSRXR4AT7F9AGP7ALLRP5JUHJ02F2Y7B' where id=22; -update noar ti set v1='U2D0N9XSKPXZXC19LLNV01AFVZWMK1T46MEWT7CN1HU839QKJQH1KV4QIQRU8KJ2BEVAV4T6AG0MQ6QKDQBUU35EKLH8EIXLMVMEPI8IEZCAS9256XIIP0B7YZT9FAB7DMXD7MUBNKFP5XQW70EQE4WS5MOKSWYQRJ4DWE0NMPU9NE8DRK9NNEDTMVP2PDW2PJXX5MIVSH9T8TD2OF9WBTK9RP357D9DGUSRXR4AT7F9AGP7ALLRP5JUHJ02F2Y7B' where id=22; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='WGPUFZ2V2NUJ8AKGWBFY35R817A5NUEK3RPA0K3441W4NMED0MP0777CCBCNM32CNNAQFCZ61L8HRBTQZ8P5J5RQ69E47PFBVJPKM3E9G88SD8BWSW133QGSLWQUNT7O5VDDUST1ZEEYO93JAN9F0SSJIQKTVUAR5EO0EW4NSURB021ITS4WM9AORN85A6JK29M7LTY28PT150WMHUXO28H7QH1O4EL90EF7NNLL8Z17HPLURNT3L88EDG4IAQ3GG' where id=22; -update noar ti set v2='WGPUFZ2V2NUJ8AKGWBFY35R817A5NUEK3RPA0K3441W4NMED0MP0777CCBCNM32CNNAQFCZ61L8HRBTQZ8P5J5RQ69E47PFBVJPKM3E9G88SD8BWSW133QGSLWQUNT7O5VDDUST1ZEEYO93JAN9F0SSJIQKTVUAR5EO0EW4NSURB021ITS4WM9AORN85A6JK29M7LTY28PT150WMHUXO28H7QH1O4EL90EF7NNLL8Z17HPLURNT3L88EDG4IAQ3GG' where id=22; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='PKP6NQBE0B5BDU8R7HYUAZKYU1C9AFI2OUWA3DTN0U3I6HZBF4NDE2AHLZFN355GDYTVB0ACHAUQRJ0DK3ZRJHUQU1WHQDZDV8AXUP77364HFEUT10KZ96C43IHITGB0HXMUT5G76269RH1VEQ9J29JW3GZZNOQ85TAZUKZXTPE2R4GY9RXIATB1S50EA8F4Q272CVZAQ3FP886ZHJRPZ3YSD3O9S7IRHWFUMRVGMEFB4702JZUJD874Z5EQGOJ4X' where id=22; -update noar ti set v3='PKP6NQBE0B5BDU8R7HYUAZKYU1C9AFI2OUWA3DTN0U3I6HZBF4NDE2AHLZFN355GDYTVB0ACHAUQRJ0DK3ZRJHUQU1WHQDZDV8AXUP77364HFEUT10KZ96C43IHITGB0HXMUT5G76269RH1VEQ9J29JW3GZZNOQ85TAZUKZXTPE2R4GY9RXIATB1S50EA8F4Q272CVZAQ3FP886ZHJRPZ3YSD3O9S7IRHWFUMRVGMEFB4702JZUJD874Z5EQGOJ4X' where id=22; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='8XUE96NUSYCBKQM1BRH2WAN8Z9E46UJOTOPZ9EZF1STTM8RB0T0ODHXS78LP7JL8XJTQ2KMEQ5TSQ3FJ88TA675FNPON62G07XCO9O9ODTCVN298RPMT22V96VDKGDR0FN74MVEBC9AHJ3MKS1U2Q8WO3EMCFZ10VKRGWGTH3C2FSLQPSJOOMR02OICALM8IUIY1DGPUY2SRWW3SP6W1NDRALQTEIBW3DDDTMOR2ZPHE2CKU9H6XGX0D070GNE94L' where id=23; -update noar ti set v0='8XUE96NUSYCBKQM1BRH2WAN8Z9E46UJOTOPZ9EZF1STTM8RB0T0ODHXS78LP7JL8XJTQ2KMEQ5TSQ3FJ88TA675FNPON62G07XCO9O9ODTCVN298RPMT22V96VDKGDR0FN74MVEBC9AHJ3MKS1U2Q8WO3EMCFZ10VKRGWGTH3C2FSLQPSJOOMR02OICALM8IUIY1DGPUY2SRWW3SP6W1NDRALQTEIBW3DDDTMOR2ZPHE2CKU9H6XGX0D070GNE94L' where id=23; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='HFRFDS0MIO9IXBXBAYGZ5UNFH9WDBR0IL9OXTNII28OXZN6BA8XNLTXGKNQIL7220BTDHN6UFD60MI7FYOH691T0ECE7GBJ26G03R9OFX35IVATM9HVKV5BXDO7JVOY9LDNMCUXZ9Z3F37RM0FON3PNSO98LUOZZSTUFIUK90S2ANW5EHD5THE14OPTPX9OKY233Y5NKQUKNE5PMH25E8BS9EJIZJZ9D9S4C9GNW37MUPFJORRRCFG2QMDZY2SP7G' where id=23; -update noar ti set v1='HFRFDS0MIO9IXBXBAYGZ5UNFH9WDBR0IL9OXTNII28OXZN6BA8XNLTXGKNQIL7220BTDHN6UFD60MI7FYOH691T0ECE7GBJ26G03R9OFX35IVATM9HVKV5BXDO7JVOY9LDNMCUXZ9Z3F37RM0FON3PNSO98LUOZZSTUFIUK90S2ANW5EHD5THE14OPTPX9OKY233Y5NKQUKNE5PMH25E8BS9EJIZJZ9D9S4C9GNW37MUPFJORRRCFG2QMDZY2SP7G' where id=23; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='G3PLP00WZ7GHLSPSB5JGEFIBVKUDM35OMABXTO7UJXZHWEB35N7H4E0M1TYPFNLIMXCT4REBMNCRWUN3XDVJEWLUUU0A3KA1ASNTJK0RKSW8B7LJYJOAQIT1HP1ZJ4PVDHA9FLVQAWTKZTZU66V6VW7O0F9TK9KKDC7QRADR6DA70YQM7MCQRRENIYHFSJRPJTM54JV8K9FOLZ8G4ZSQUZ9794EAEIQ3NOCC2IQ6NPX7NDYACVKZ3UYL9O4WE88Q8' where id=23; -update noar ti set v2='G3PLP00WZ7GHLSPSB5JGEFIBVKUDM35OMABXTO7UJXZHWEB35N7H4E0M1TYPFNLIMXCT4REBMNCRWUN3XDVJEWLUUU0A3KA1ASNTJK0RKSW8B7LJYJOAQIT1HP1ZJ4PVDHA9FLVQAWTKZTZU66V6VW7O0F9TK9KKDC7QRADR6DA70YQM7MCQRRENIYHFSJRPJTM54JV8K9FOLZ8G4ZSQUZ9794EAEIQ3NOCC2IQ6NPX7NDYACVKZ3UYL9O4WE88Q8' where id=23; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='42ZSXXWCVHS66K7MKGFW3YM204GW4RVV8TQBPMFFD5GIHDZ24YPLHGHXNHUJRRRMMCQCJN2C9DQACGUJIL582T0LCFU74B3312AFDAR1O2XWT3QTGHWEZD3EK3C8E7FP38ZP82UH7S1OC8LW18AZZRIR5I9UKAKWYYWAYK1JV2UE6EDZA66IJZEGOFQD5G51QVIT9A35ZKWTHE587Q894KJCKL0J07G5XVJEL71Z40MY1MBUQI0N3XL50YRNZFISZ' where id=23; -update noar ti set v3='42ZSXXWCVHS66K7MKGFW3YM204GW4RVV8TQBPMFFD5GIHDZ24YPLHGHXNHUJRRRMMCQCJN2C9DQACGUJIL582T0LCFU74B3312AFDAR1O2XWT3QTGHWEZD3EK3C8E7FP38ZP82UH7S1OC8LW18AZZRIR5I9UKAKWYYWAYK1JV2UE6EDZA66IJZEGOFQD5G51QVIT9A35ZKWTHE587Q894KJCKL0J07G5XVJEL71Z40MY1MBUQI0N3XL50YRNZFISZ' where id=23; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='7J8CHYLGKRVOP13WX9VZ5U4NTMQ0AGPA7RPFQG28LGZD6RYMNIIB99BP1A7I5M0Z3THBS99G3ITMSFAISAR9QFMDHECURHU2MMEGM0BL97UXT9F4622I7VISAYE8ERTOU5HVC1CYX7IOBQDTS9T9ADDLNOOC9NEJPBKL09TMX61SOI83M3BLMLS2SFJ9GRSLUYNCEHHK0MUU6C0XSSB8JJTHDEDQVEY54XG6VFFOZ5IT2C38KNZPOFK2UP0XEPECQ' where id=24; -update noar ti set v0='7J8CHYLGKRVOP13WX9VZ5U4NTMQ0AGPA7RPFQG28LGZD6RYMNIIB99BP1A7I5M0Z3THBS99G3ITMSFAISAR9QFMDHECURHU2MMEGM0BL97UXT9F4622I7VISAYE8ERTOU5HVC1CYX7IOBQDTS9T9ADDLNOOC9NEJPBKL09TMX61SOI83M3BLMLS2SFJ9GRSLUYNCEHHK0MUU6C0XSSB8JJTHDEDQVEY54XG6VFFOZ5IT2C38KNZPOFK2UP0XEPECQ' where id=24; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='D8PJ4MPF1UB0G1QBAKWA2XZ5DPHM7CCT4WAN0DJ0T4VGLW9S33PQA2FG59VSPUXMK0KDHK7WH42A82I6LBYPZDULQUZ1H9GCPH1I7SWMZHYPHX94FKY051OXN83ITWUID6AY3RJ0SR5I15IQR1MH2SWIADQKPYQ9IZZYI40XRLAEX31VKAZVYZJ0I2NQ2P9AL3J0E5YE4WT9FZBQ139GL3TXP476LQ60EOD75F8WVQ38N1G7H8YO5592L5QYT8I0E' where id=24; -update noar ti set v1='D8PJ4MPF1UB0G1QBAKWA2XZ5DPHM7CCT4WAN0DJ0T4VGLW9S33PQA2FG59VSPUXMK0KDHK7WH42A82I6LBYPZDULQUZ1H9GCPH1I7SWMZHYPHX94FKY051OXN83ITWUID6AY3RJ0SR5I15IQR1MH2SWIADQKPYQ9IZZYI40XRLAEX31VKAZVYZJ0I2NQ2P9AL3J0E5YE4WT9FZBQ139GL3TXP476LQ60EOD75F8WVQ38N1G7H8YO5592L5QYT8I0E' where id=24; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='4ZJVIU9H0VJZDIJB32Z1HHDB0WQVP1PIKF07DJRYW5P6GNID1DKJWNNCO32S164MREKD2DWC2KZKNDGD5SZ1G0NZTEMI87CA9MHVJJ9FVB5I9AS8A5WH8R377XHKORXNCU2NH2I3S85IOGFNHJS6SF2MXQ8IDV8X3A0RQ6V9M0T4Q44KZKB9508INMR7DMTKDC3Y0WBQUZUFYDQPB53X1X2CNIAQL5Q8MEHNIH3V0SQBDJR5B934RP236UVTJUXOM' where id=24; -update noar ti set v2='4ZJVIU9H0VJZDIJB32Z1HHDB0WQVP1PIKF07DJRYW5P6GNID1DKJWNNCO32S164MREKD2DWC2KZKNDGD5SZ1G0NZTEMI87CA9MHVJJ9FVB5I9AS8A5WH8R377XHKORXNCU2NH2I3S85IOGFNHJS6SF2MXQ8IDV8X3A0RQ6V9M0T4Q44KZKB9508INMR7DMTKDC3Y0WBQUZUFYDQPB53X1X2CNIAQL5Q8MEHNIH3V0SQBDJR5B934RP236UVTJUXOM' where id=24; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='53ESDP7LESASZGW8TQ767HZP425HAAKXUYFQILKVAALNWOXZM6HK0N4MEF4PAHZ7EYAI1S17P6MC0IRBXOBULT45WVJECYT27YLYDU53YUHR462N0DSGTK6P47S9VJD6RMWIQKKQ4UGN7NJRTWB8CXPU727HVTP0IMR69FB50Y6O6S74UO4OCOM3TOD8P6XSL1BQXH2NH4DQPFOIWWN9SXU1227LJ6UN6K7R9476MZYZTFKK4XFS1WSXHG3P14OKP' where id=24; -update noar ti set v3='53ESDP7LESASZGW8TQ767HZP425HAAKXUYFQILKVAALNWOXZM6HK0N4MEF4PAHZ7EYAI1S17P6MC0IRBXOBULT45WVJECYT27YLYDU53YUHR462N0DSGTK6P47S9VJD6RMWIQKKQ4UGN7NJRTWB8CXPU727HVTP0IMR69FB50Y6O6S74UO4OCOM3TOD8P6XSL1BQXH2NH4DQPFOIWWN9SXU1227LJ6UN6K7R9476MZYZTFKK4XFS1WSXHG3P14OKP' where id=24; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='MD7VLTYM9E79UYYML4O0W1XSTYJ7BHYDCAINIRSFNRI7WTPWGYNXGE7LIZVYO0VIAB4U408XG192QMCKZ6JV7NXPPRATQ86JZQIN2XAZSG6UB41SUTGDX7S5HRTJMEXJFTBR0A32ICY6P6PBYZAL5ZBSD0F13VG5AHWGPRKQIK5AVDFSFVZQHJXOXFV28GIMCU9W94EP6TTILLSN0TLT7QNZ2PD8TCXDFF7FVRJUXY22S9ZP93VQQHQBCLY80Y8WQ' where id=25; -update noar ti set v0='MD7VLTYM9E79UYYML4O0W1XSTYJ7BHYDCAINIRSFNRI7WTPWGYNXGE7LIZVYO0VIAB4U408XG192QMCKZ6JV7NXPPRATQ86JZQIN2XAZSG6UB41SUTGDX7S5HRTJMEXJFTBR0A32ICY6P6PBYZAL5ZBSD0F13VG5AHWGPRKQIK5AVDFSFVZQHJXOXFV28GIMCU9W94EP6TTILLSN0TLT7QNZ2PD8TCXDFF7FVRJUXY22S9ZP93VQQHQBCLY80Y8WQ' where id=25; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='527RZK4NO6ZJMXS85715TCM5ZRSCEJQKJCFICVAOL3ODY6EH1R4U2VD26V1T1KUHU01LX9X28O03I0DKYWLEPC8NLUR1Z74YY7N9XLY1R171QJPKGIPHU5QQIP8LU9M2WMVWVTNSOMHA5KS28R8HFZLDYSDYDA0DG2Y9W3AZ54IZ33CZNJ3N4FO9MA47WHF42PGTIO7NWDUK7KYGWTMM08AWP53Q6MMVDIY31P1NDAKFAW8R7QVC4A78C7ARRWLOP' where id=25; -update noar ti set v1='527RZK4NO6ZJMXS85715TCM5ZRSCEJQKJCFICVAOL3ODY6EH1R4U2VD26V1T1KUHU01LX9X28O03I0DKYWLEPC8NLUR1Z74YY7N9XLY1R171QJPKGIPHU5QQIP8LU9M2WMVWVTNSOMHA5KS28R8HFZLDYSDYDA0DG2Y9W3AZ54IZ33CZNJ3N4FO9MA47WHF42PGTIO7NWDUK7KYGWTMM08AWP53Q6MMVDIY31P1NDAKFAW8R7QVC4A78C7ARRWLOP' where id=25; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='JFG1272IZ1DYJNXK3YRXFOS9N0PUTD2Q5PU5R0XQQ34YCU1JJG9UFKUCMEL0RH59GYETR29E12ZAPJ7XO82BSXA2OLZ33Y5HP1ZSJ1D4EDFWZC9JQE3GFZ9Q3YHPY9GWRCLXTARG7EVOSPFR11M5WQPEWK7QFOSR1GRY1AQPSV3XT9JD35KIMRS72KWRMFZBGHIMD9FC4G6TI01C1IJBS1JOL2Y0RPE2Q0IPEJINOTI5KV4MB3ZUCRWO0COXOPDYP' where id=25; -update noar ti set v2='JFG1272IZ1DYJNXK3YRXFOS9N0PUTD2Q5PU5R0XQQ34YCU1JJG9UFKUCMEL0RH59GYETR29E12ZAPJ7XO82BSXA2OLZ33Y5HP1ZSJ1D4EDFWZC9JQE3GFZ9Q3YHPY9GWRCLXTARG7EVOSPFR11M5WQPEWK7QFOSR1GRY1AQPSV3XT9JD35KIMRS72KWRMFZBGHIMD9FC4G6TI01C1IJBS1JOL2Y0RPE2Q0IPEJINOTI5KV4MB3ZUCRWO0COXOPDYP' where id=25; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='AZ2G226Q2R8HNJTTSVAN59A0KJ7ZK6LE58GEJV3IANTVLBM6F8XW27URGZLC0R4SVGJC78U0UXWJANUYHC0UC6XRQA78F9F8WB0OS6U7XO33S2NGZDBW34KPAQLEDQDZP9GC0U5SJCUTT6EC2VU7F2ZRGL3SWUHCY33B34RC6MIB2K76R3S2NTUFSWF0SPU8TI244CMJM330JBZKAXALUTRAQJEIRN6WID56PX8CWXYXF6UOI9N79TDG9SR982YB0' where id=25; -update noar ti set v3='AZ2G226Q2R8HNJTTSVAN59A0KJ7ZK6LE58GEJV3IANTVLBM6F8XW27URGZLC0R4SVGJC78U0UXWJANUYHC0UC6XRQA78F9F8WB0OS6U7XO33S2NGZDBW34KPAQLEDQDZP9GC0U5SJCUTT6EC2VU7F2ZRGL3SWUHCY33B34RC6MIB2K76R3S2NTUFSWF0SPU8TI244CMJM330JBZKAXALUTRAQJEIRN6WID56PX8CWXYXF6UOI9N79TDG9SR982YB0' where id=25; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='XGWW4COVKK098H85IWP096PUZ8KR80M4WL0ZLE5PRQ7D7M8A1BWNRPVWWXFFNFQS1KL6WE0GEN29QATEKY7350QA2KOSPDV3CDGA5K2CLNQ9QK3UH6ZC31Q5KDQG06EF945V68EM6KCN7B7HQ77IW8P5F7T4XEH1IEVD212F10G8YM61YWAZBGPPQV4H98ZTLZZSQMQXEH5JGFM9ZZ19YY3MHGK8W07JW27F9NYA2J1RF9F00ZSWZWMRZZBXDXQPI' where id=26; -update noar ti set v0='XGWW4COVKK098H85IWP096PUZ8KR80M4WL0ZLE5PRQ7D7M8A1BWNRPVWWXFFNFQS1KL6WE0GEN29QATEKY7350QA2KOSPDV3CDGA5K2CLNQ9QK3UH6ZC31Q5KDQG06EF945V68EM6KCN7B7HQ77IW8P5F7T4XEH1IEVD212F10G8YM61YWAZBGPPQV4H98ZTLZZSQMQXEH5JGFM9ZZ19YY3MHGK8W07JW27F9NYA2J1RF9F00ZSWZWMRZZBXDXQPI' where id=26; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='LSNNWGAB5OQACFE1YHR2JEF13EHQYA6CMOKARHRQF6F1BGXXHPHED9L2VYYS5SOBNBC78HGVA95C7JQTL7DBARI7JJW6KN7ZY0C8S7RYVKTBHG93WPXM8SE2WG930Y3S0PS2PQR049107ZYWLGCROSZABXOQO7PDJE7JACBFQLILIVCFYIOEW9BGX5DPNIHEAC22CQWVMAQZCF3AIQYV4MIM7672BJIYN2QTQFVKA9H1QEWCSQV2HPFS6YFMSKWHF' where id=26; -update noar ti set v1='LSNNWGAB5OQACFE1YHR2JEF13EHQYA6CMOKARHRQF6F1BGXXHPHED9L2VYYS5SOBNBC78HGVA95C7JQTL7DBARI7JJW6KN7ZY0C8S7RYVKTBHG93WPXM8SE2WG930Y3S0PS2PQR049107ZYWLGCROSZABXOQO7PDJE7JACBFQLILIVCFYIOEW9BGX5DPNIHEAC22CQWVMAQZCF3AIQYV4MIM7672BJIYN2QTQFVKA9H1QEWCSQV2HPFS6YFMSKWHF' where id=26; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='GP24FL97JZGRHJZE652AXEA2HGD6G9ZTFTD3A6XCR9DB3FSTFX5TZ1J2RD8OIVLJ06UTKP5FWN1LF0N9W04N0HTYK2YFKLVHXYDVDJ82MKPIDXTDSFQVKL0UJ6FL3VAEV4IZYKTWW9Z8UKVANXSGWKDBJ2VKWUNR8EG3Z3Y3SOR2JPOD78GXBAWO6CNSU4KG038RVWA50IT8V0QRQXBQZLBCL7NSBIKX9V6O9CB0B8RV8WF1J65CT4HZPB7A37444' where id=26; -update noar ti set v2='GP24FL97JZGRHJZE652AXEA2HGD6G9ZTFTD3A6XCR9DB3FSTFX5TZ1J2RD8OIVLJ06UTKP5FWN1LF0N9W04N0HTYK2YFKLVHXYDVDJ82MKPIDXTDSFQVKL0UJ6FL3VAEV4IZYKTWW9Z8UKVANXSGWKDBJ2VKWUNR8EG3Z3Y3SOR2JPOD78GXBAWO6CNSU4KG038RVWA50IT8V0QRQXBQZLBCL7NSBIKX9V6O9CB0B8RV8WF1J65CT4HZPB7A37444' where id=26; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='IWJJ8IXOFW2KT60CO6UMA15QEWE0RJ5YKJFZ7MJ4UF62Y2LXEU3SIKUBL4GBBCSDQ88ILE7LSEEDX3JQ3IK5GC6XO07KFFHA8OM4BZ983ZVCJA9V7VFZ62Q38Z06K8CXFGPS4KMG5L6TUG6SOWBE3A4UZ6TJU9NU6XPEDFAKSR9K2KDO64K9NUCITIXK2PAHU12C62S9N6FNOG27DO5A44W89FD4RS709L1KW89ZWCC7Z2K8ZY8QI6IUZAPDVRKOD' where id=26; -update noar ti set v3='IWJJ8IXOFW2KT60CO6UMA15QEWE0RJ5YKJFZ7MJ4UF62Y2LXEU3SIKUBL4GBBCSDQ88ILE7LSEEDX3JQ3IK5GC6XO07KFFHA8OM4BZ983ZVCJA9V7VFZ62Q38Z06K8CXFGPS4KMG5L6TUG6SOWBE3A4UZ6TJU9NU6XPEDFAKSR9K2KDO64K9NUCITIXK2PAHU12C62S9N6FNOG27DO5A44W89FD4RS709L1KW89ZWCC7Z2K8ZY8QI6IUZAPDVRKOD' where id=26; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='40ET51DFIRBAZZ7PD57GHKU1UL5TXXPR6VGLXZ13VUOARD8V9TWWYOFF891WI0Z004ZSSJ6PKZ808YO4D2YF0QGIAXHDXI2WJXHCKST2V8SVTHHU1TVJ9IB8AVA6MHXWWM0418B64H7DEAMUFY7JPIBIDWVYXTHP42JHL7GIRP4HGVR4MRGQUBXUSJJGKYF5FWT2PIQA102TBFA9Y17HPGRVGZ7LMHKC9FE7DWV2C1NNTJCZLS1B9VU38QFX0WR1L' where id=27; -update noar ti set v0='40ET51DFIRBAZZ7PD57GHKU1UL5TXXPR6VGLXZ13VUOARD8V9TWWYOFF891WI0Z004ZSSJ6PKZ808YO4D2YF0QGIAXHDXI2WJXHCKST2V8SVTHHU1TVJ9IB8AVA6MHXWWM0418B64H7DEAMUFY7JPIBIDWVYXTHP42JHL7GIRP4HGVR4MRGQUBXUSJJGKYF5FWT2PIQA102TBFA9Y17HPGRVGZ7LMHKC9FE7DWV2C1NNTJCZLS1B9VU38QFX0WR1L' where id=27; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='EXXL17US3FVZAEYCR2UOO90O3YAOXXXTL2HL6981VLH19HUACVG6VH24JXJAG0V323Q05ZPM15KNNLLT0JV9B4VSFDKZYBF7D92SNGK3YS31FLWPPAWVPPDPTDK22BZKRAENP6JIPDOYF0EI4TTF9T6F5DBYVRJ2DYROT592TNMS4A9H4XHLJSKXF3IJKSFJ2UDRHBVRBF4IX2HX2ZAM8VJ00HV3JR8AYEA0ZI8QQI57CC66JUOHTRZ051HCE7CUC' where id=27; -update noar ti set v1='EXXL17US3FVZAEYCR2UOO90O3YAOXXXTL2HL6981VLH19HUACVG6VH24JXJAG0V323Q05ZPM15KNNLLT0JV9B4VSFDKZYBF7D92SNGK3YS31FLWPPAWVPPDPTDK22BZKRAENP6JIPDOYF0EI4TTF9T6F5DBYVRJ2DYROT592TNMS4A9H4XHLJSKXF3IJKSFJ2UDRHBVRBF4IX2HX2ZAM8VJ00HV3JR8AYEA0ZI8QQI57CC66JUOHTRZ051HCE7CUC' where id=27; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='I2TVEX131HUB85YRMIOQ0EZ877JJV9NN3829JZII2UUL8W6JDZ2YTTPUJEOOSZO70DEWQ219HQB4AUZQ1PK5AR7LSXZBRMJ79LT7HDO3F628313340XLC8XW9MYKLNCKHXIDLWN3719OQ6DKVD9M2ICE7H2EXGOM2QPFMXQXOP94IOJ3E7HB2CBFP5MOKNOO5VQHE6X08F59UZ987V7CIJDVS8L5FY4710XRA3ATR0R13ZS4U06TZJGFHY7A85G98' where id=27; -update noar ti set v2='I2TVEX131HUB85YRMIOQ0EZ877JJV9NN3829JZII2UUL8W6JDZ2YTTPUJEOOSZO70DEWQ219HQB4AUZQ1PK5AR7LSXZBRMJ79LT7HDO3F628313340XLC8XW9MYKLNCKHXIDLWN3719OQ6DKVD9M2ICE7H2EXGOM2QPFMXQXOP94IOJ3E7HB2CBFP5MOKNOO5VQHE6X08F59UZ987V7CIJDVS8L5FY4710XRA3ATR0R13ZS4U06TZJGFHY7A85G98' where id=27; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='BEO2IUTH4NNLYU7P4J3X59GRPRPYXRKTTY1QRD5JA7EQJC7YMOH47YSBPV0NIQVDV9PG32ZGPYYDOUX3IO7WLKL9AWBQJ40ZYIRW03G050XR8AL9UHWLCJY0R8SICLOEDOLD3T3CID0BMCGPD2NCF6FUO4LFGX3264J0VG37H86LHHAVCDYMNS1F4SA60XD15ZV72U64I8N2A6Z7V2FSZHXRTEHDDA85Q9W7PVRSZ7B3QFTP09MLZBBIN9CD6U0I8' where id=27; -update noar ti set v3='BEO2IUTH4NNLYU7P4J3X59GRPRPYXRKTTY1QRD5JA7EQJC7YMOH47YSBPV0NIQVDV9PG32ZGPYYDOUX3IO7WLKL9AWBQJ40ZYIRW03G050XR8AL9UHWLCJY0R8SICLOEDOLD3T3CID0BMCGPD2NCF6FUO4LFGX3264J0VG37H86LHHAVCDYMNS1F4SA60XD15ZV72U64I8N2A6Z7V2FSZHXRTEHDDA85Q9W7PVRSZ7B3QFTP09MLZBBIN9CD6U0I8' where id=27; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='1PDPPXTL3Q3N3ODSP63B7TX83IM7SOEG4NFY6OI1RGLVT7SISVSKZQYGJ3C6B5KCOYMQ38TO12I068XH31DJY8K6CZ361KKZSUEC548O569N46BRI2GP43LUD817L8KLLFVWMVDLBPRQN294SBPR7M2VETHS72W1IFG4BY29GZ9S5E3IB8TH63Z4O07GYHNC38YXPFUZKPPJV6CP608VJI4RPANS302SB83S5MAOJU5IW991CCWC5RPROEQ7GK1PI' where id=28; -update noar ti set v0='1PDPPXTL3Q3N3ODSP63B7TX83IM7SOEG4NFY6OI1RGLVT7SISVSKZQYGJ3C6B5KCOYMQ38TO12I068XH31DJY8K6CZ361KKZSUEC548O569N46BRI2GP43LUD817L8KLLFVWMVDLBPRQN294SBPR7M2VETHS72W1IFG4BY29GZ9S5E3IB8TH63Z4O07GYHNC38YXPFUZKPPJV6CP608VJI4RPANS302SB83S5MAOJU5IW991CCWC5RPROEQ7GK1PI' where id=28; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='1BVEFAHYLBA8SLVSSB5HIZ7BC5VCKN27FILHHNR25V9MO7XOTY1I8GEOZ8B9CB23L88542JN484MKMMZE94M9U3N8AP8HC30EYADQYQZSOH2TEAZ2DVHLEZ4V2FSYMQBTQMQ6EX1TNX638AM61D5KCC0EPJNPR7FS9VRD9O0TCR79D71YR1SDQ3BTAI1SQS62F7YABR7CEWKEAASQLYIF7F7MOBH933QPNTYDUOB9ONLF3LDLECDJGF4E1BSEWN3N' where id=28; -update noar ti set v1='1BVEFAHYLBA8SLVSSB5HIZ7BC5VCKN27FILHHNR25V9MO7XOTY1I8GEOZ8B9CB23L88542JN484MKMMZE94M9U3N8AP8HC30EYADQYQZSOH2TEAZ2DVHLEZ4V2FSYMQBTQMQ6EX1TNX638AM61D5KCC0EPJNPR7FS9VRD9O0TCR79D71YR1SDQ3BTAI1SQS62F7YABR7CEWKEAASQLYIF7F7MOBH933QPNTYDUOB9ONLF3LDLECDJGF4E1BSEWN3N' where id=28; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='L1AF2NRL0R3YVG5S7MF9YC4EYTZJ1KXX3D06XHKJSD3LF1UQ1D1B0DM1CANTSIF963KGJRXMHCCMU4G3LBQ6QOCDPRGBYM924YOGACFRXX846AW96A8W3U51XYYJM7DSW1BQO22D5S5E2SE2DPO0KLB6N7FK46WM14HUG644GEX8S9AWL50G3PRUB2S2FSQ3HMCR0ZSEPVXT90LPKZYIKJ1S8L2XBU6B4GLQ0PPI0VH49LVZR5ZKEKHYMGWHDDUZW' where id=28; -update noar ti set v2='L1AF2NRL0R3YVG5S7MF9YC4EYTZJ1KXX3D06XHKJSD3LF1UQ1D1B0DM1CANTSIF963KGJRXMHCCMU4G3LBQ6QOCDPRGBYM924YOGACFRXX846AW96A8W3U51XYYJM7DSW1BQO22D5S5E2SE2DPO0KLB6N7FK46WM14HUG644GEX8S9AWL50G3PRUB2S2FSQ3HMCR0ZSEPVXT90LPKZYIKJ1S8L2XBU6B4GLQ0PPI0VH49LVZR5ZKEKHYMGWHDDUZW' where id=28; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='CV3OK1PIW1WGJM1KQJTNXNRG9T9PYHH6DH9HPTYMTYPMLY98K8ZAM349JK4SR6B9L4U2TN0Y45H7OWHRZDQVICEZHRQ68XUKDBA1OYLL8L92XT6RFPLMYQPT3GHUIPA60B9IBXZFN80OT289ZDGXL2BHBI5JWB0KKN2BCWBTN2RTVBLMLH2LAF4NDBUJD7WGPUOX4RZG89RY18S03NZC5TR2OJJ5932O69ZG7VOK5Z11MR82PQKCGL2FFI9HWNXP1' where id=28; -update noar ti set v3='CV3OK1PIW1WGJM1KQJTNXNRG9T9PYHH6DH9HPTYMTYPMLY98K8ZAM349JK4SR6B9L4U2TN0Y45H7OWHRZDQVICEZHRQ68XUKDBA1OYLL8L92XT6RFPLMYQPT3GHUIPA60B9IBXZFN80OT289ZDGXL2BHBI5JWB0KKN2BCWBTN2RTVBLMLH2LAF4NDBUJD7WGPUOX4RZG89RY18S03NZC5TR2OJJ5932O69ZG7VOK5Z11MR82PQKCGL2FFI9HWNXP1' where id=28; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='HKVY2KBUSEEXYG7JWLSVT5HEG1NRG26L37LH2TZ8BV3CXVD17S8DXK9VVC6GOLYCBJUBU354FBTH2PPAKCK7EB2WB5Q8XEHF0YIV1CDMOWJV9ZMCNTP4CJFC9NG5Q2IOX0B9UEX9QJACR5QP9B2PBX3BA45TDKU0L9GRJV87S3LN7QRAAJM11JQJJ0VBN87YNV3UYMQ6V1846TX50EE4LVT7NFOELCWFHPX2FRUHEEWZ8URSBYOJVFI0WZJJ76Y0T' where id=29; -update noar ti set v0='HKVY2KBUSEEXYG7JWLSVT5HEG1NRG26L37LH2TZ8BV3CXVD17S8DXK9VVC6GOLYCBJUBU354FBTH2PPAKCK7EB2WB5Q8XEHF0YIV1CDMOWJV9ZMCNTP4CJFC9NG5Q2IOX0B9UEX9QJACR5QP9B2PBX3BA45TDKU0L9GRJV87S3LN7QRAAJM11JQJJ0VBN87YNV3UYMQ6V1846TX50EE4LVT7NFOELCWFHPX2FRUHEEWZ8URSBYOJVFI0WZJJ76Y0T' where id=29; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='GQXAY9FAJVF1NTFM7UT72OPOAUXIERUMW76E02IKK5MKROUTMTS9D9EQSAGGJSUJYJ037PSCV0P99CK4IERYQPR1Y6XS2DWVP9APLSG99K0SFB9CCNVO8SQ5CHV8C5WW6XB77RLITPR4RCNHFGP64CKRVAA513T2UOP3IN8UJ0C60PW42LB9NLG45CQPAZ2N20E71EN8H8ZJNWB6B7AVV2ZMZ4J3TMS655HDS7M9P5MA6F3G61I3ANWU5EB03QCR8' where id=29; -update noar ti set v1='GQXAY9FAJVF1NTFM7UT72OPOAUXIERUMW76E02IKK5MKROUTMTS9D9EQSAGGJSUJYJ037PSCV0P99CK4IERYQPR1Y6XS2DWVP9APLSG99K0SFB9CCNVO8SQ5CHV8C5WW6XB77RLITPR4RCNHFGP64CKRVAA513T2UOP3IN8UJ0C60PW42LB9NLG45CQPAZ2N20E71EN8H8ZJNWB6B7AVV2ZMZ4J3TMS655HDS7M9P5MA6F3G61I3ANWU5EB03QCR8' where id=29; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='KSTHQ3ASWTOIE2I31S7EK2GOVJ9CQAQDEENGHG8Q895WSZ6BV75VB325G98HIBCRVX0TA2H02A0DIJQH632SYSRGIR970TJHD6D3XZ6JTXIY761IWPHQXAZ2AHUCNC0O10Q9M09EYD5LMLY1EDJHZMOPQHXYORC7SC8WIYGF257AQ4KGGC1WX2FDYWP169C3VA0XBLOAW6NU0QP5NJT064P2KAQXKX5D9O1IUH6UEKIKQ2FJ538YPYMHCLT71KI1M' where id=29; -update noar ti set v2='KSTHQ3ASWTOIE2I31S7EK2GOVJ9CQAQDEENGHG8Q895WSZ6BV75VB325G98HIBCRVX0TA2H02A0DIJQH632SYSRGIR970TJHD6D3XZ6JTXIY761IWPHQXAZ2AHUCNC0O10Q9M09EYD5LMLY1EDJHZMOPQHXYORC7SC8WIYGF257AQ4KGGC1WX2FDYWP169C3VA0XBLOAW6NU0QP5NJT064P2KAQXKX5D9O1IUH6UEKIKQ2FJ538YPYMHCLT71KI1M' where id=29; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='HPKC8C0ZYFBF4AED2VI4EWCXWB98LDYW1ZUFTI8J1Z2ANUOEM79M8R9SHRX5JWK4TWEZUWWM1SECSKPIXYN0KFKXI1D9414L11TE2X5COSQAXOQK3LE7ZTVE16VYVPECLBKKZZRL593X936PHEY4O292BDY7EPMD4DITXQR8XCWIKYDZQEX06LHN3TOVQ8D8E72RL7I3GOQOV4MU143S3NSAOIGH9XU9CFPU9BOAVTO7O6MXWAEC04ULG68WD2REC' where id=29; -update noar ti set v3='HPKC8C0ZYFBF4AED2VI4EWCXWB98LDYW1ZUFTI8J1Z2ANUOEM79M8R9SHRX5JWK4TWEZUWWM1SECSKPIXYN0KFKXI1D9414L11TE2X5COSQAXOQK3LE7ZTVE16VYVPECLBKKZZRL593X936PHEY4O292BDY7EPMD4DITXQR8XCWIKYDZQEX06LHN3TOVQ8D8E72RL7I3GOQOV4MU143S3NSAOIGH9XU9CFPU9BOAVTO7O6MXWAEC04ULG68WD2REC' where id=29; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='SEB5VYG0UCCXMJBFOG9R0AYJZSYPBXHT7T3ESNEV1PK3Z9K6KW04UOOHGGFNJLK0EZYMGBNY3C5REE90DUDGQS8T26XPKH5OCJDHXTMTGHZAK8Y23TOI8TF01PMF1JZHHT1KNP4MVBNKA1MVLRINTFDNI2WIPYWXEHT2MTIX7M2H5JJ6JLBMWHTFGIPG08TUO67DI5FC50XOR7HYXH6KIAOYA9MTF37LPFRCG03QUSUVR9HEPZM7BF7W8VCUJH8BC' where id=30; -update noar ti set v0='SEB5VYG0UCCXMJBFOG9R0AYJZSYPBXHT7T3ESNEV1PK3Z9K6KW04UOOHGGFNJLK0EZYMGBNY3C5REE90DUDGQS8T26XPKH5OCJDHXTMTGHZAK8Y23TOI8TF01PMF1JZHHT1KNP4MVBNKA1MVLRINTFDNI2WIPYWXEHT2MTIX7M2H5JJ6JLBMWHTFGIPG08TUO67DI5FC50XOR7HYXH6KIAOYA9MTF37LPFRCG03QUSUVR9HEPZM7BF7W8VCUJH8BC' where id=30; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='BMPWURUEY3IZXOYMTMD7OQAHPFUE47A8T9Q8SXE95VEVVLBV6QRZEGEP9LBUFHUC17PAAS65D3Y1D9C4H3C3QTDOUAM5TW9XRYNSBQI0L67XBY1OREZ00QXQUV45FFST7JMFGWUY85649TNMF82ZOM3Y7NK68E0H08PMMTB3GGJTMUOH0TFO92HNVXA7HUENJERPX76LLIE6JHNT8HQW0T3BIMCEAX6I5B0ZBWJYRJC51O15TF1YGSH4ADZGR86M9' where id=30; -update noar ti set v1='BMPWURUEY3IZXOYMTMD7OQAHPFUE47A8T9Q8SXE95VEVVLBV6QRZEGEP9LBUFHUC17PAAS65D3Y1D9C4H3C3QTDOUAM5TW9XRYNSBQI0L67XBY1OREZ00QXQUV45FFST7JMFGWUY85649TNMF82ZOM3Y7NK68E0H08PMMTB3GGJTMUOH0TFO92HNVXA7HUENJERPX76LLIE6JHNT8HQW0T3BIMCEAX6I5B0ZBWJYRJC51O15TF1YGSH4ADZGR86M9' where id=30; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='EEM8ECWGIR59COM0OIM0NN9D6R8ZXT28QCAWLBI3WRB6W9IKHARIYLIQX645KTHOXLV8UFI65HD68U533H3XU3RVCWQPWONC377RQPEHEKJ09ME8N0A95K1BYKI9SS20AZ17ZDNFXUK93MX4SO8E2YOYSP1RVI98I0IMFWTQIICLN089NSSSDBL0W3P0KRI1AA98SDW1YJV5AE16175Z8YCR7DEKCVWRWYHQZ1HFLZJ0RZ5RB0HJLCCU89GT268UI' where id=30; -update noar ti set v2='EEM8ECWGIR59COM0OIM0NN9D6R8ZXT28QCAWLBI3WRB6W9IKHARIYLIQX645KTHOXLV8UFI65HD68U533H3XU3RVCWQPWONC377RQPEHEKJ09ME8N0A95K1BYKI9SS20AZ17ZDNFXUK93MX4SO8E2YOYSP1RVI98I0IMFWTQIICLN089NSSSDBL0W3P0KRI1AA98SDW1YJV5AE16175Z8YCR7DEKCVWRWYHQZ1HFLZJ0RZ5RB0HJLCCU89GT268UI' where id=30; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='XV4WH7M3MDSXGXB5AZY22QY4YFRU8CJ6603AF6D8ED5STNRWBG91O02FQ6ZE7URZZ2KH0XQNQLUP9ZB2S0YT8Y0SXL8342BN317FFP375MMQT9TM7LIN9I0B9IVV8QK5LFE7TS7CX2XGKD79M3AK9TZQIDK1GN8IM8HSAVY4L59VVA3X0FJTSQZ115E3Z26SQZL1QDK8YQSGEIXZO1KB8IZGP3UV3Z3XO5J4HXYEBZEONCVOPR6HCA9E7DCZ1EXT0' where id=30; -update noar ti set v3='XV4WH7M3MDSXGXB5AZY22QY4YFRU8CJ6603AF6D8ED5STNRWBG91O02FQ6ZE7URZZ2KH0XQNQLUP9ZB2S0YT8Y0SXL8342BN317FFP375MMQT9TM7LIN9I0B9IVV8QK5LFE7TS7CX2XGKD79M3AK9TZQIDK1GN8IM8HSAVY4L59VVA3X0FJTSQZ115E3Z26SQZL1QDK8YQSGEIXZO1KB8IZGP3UV3Z3XO5J4HXYEBZEONCVOPR6HCA9E7DCZ1EXT0' where id=30; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='USGQUUVN3R8AY8OU7J5CPG3D32QQ6KCVBBDJE5GKTDFUIS9ED1SWNSVIU08U6DNAKYJ1ADMODB8AYI5PFBZFI2FDQGT48134F87ET26CMB0IGTJTVYI7F7W8E18PUSM9VAHZN746YJ49ELHXHAIT30RP29VH2FD3122381W277SVWAOTQFBPJOL4ZR8164F18C522U1R3QSTDX0B5OL3RIPSIHT5HERUW4VLBE1X35KX9VOH7OFJ9WXR8YCAZNUE3' where id=31; -update noar ti set v0='USGQUUVN3R8AY8OU7J5CPG3D32QQ6KCVBBDJE5GKTDFUIS9ED1SWNSVIU08U6DNAKYJ1ADMODB8AYI5PFBZFI2FDQGT48134F87ET26CMB0IGTJTVYI7F7W8E18PUSM9VAHZN746YJ49ELHXHAIT30RP29VH2FD3122381W277SVWAOTQFBPJOL4ZR8164F18C522U1R3QSTDX0B5OL3RIPSIHT5HERUW4VLBE1X35KX9VOH7OFJ9WXR8YCAZNUE3' where id=31; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='6HG9A9NA3CXI9ZTB7UGBKZ26FFVJDDPKVAUB3RBVK5BDJ2WCCLZJ945CRC36FX0MWMEKFPPXZE0QLP37DPR3QBHHN05Q5GZPO0ULDC9PN96AGWNYJCNUKSUT1ODSPAGTTHYFOQGYHGX6GP35YU420OZV2TYOW1T58WF2CPDAXUGLV3URYGR7BM4OA6ISP2UKUAGYS43OX4S0EXH0E8DLHJ6L8H595DQHVK8KTRKMENLYKKCBWWZ30WX8HZ52W386V' where id=31; -update noar ti set v1='6HG9A9NA3CXI9ZTB7UGBKZ26FFVJDDPKVAUB3RBVK5BDJ2WCCLZJ945CRC36FX0MWMEKFPPXZE0QLP37DPR3QBHHN05Q5GZPO0ULDC9PN96AGWNYJCNUKSUT1ODSPAGTTHYFOQGYHGX6GP35YU420OZV2TYOW1T58WF2CPDAXUGLV3URYGR7BM4OA6ISP2UKUAGYS43OX4S0EXH0E8DLHJ6L8H595DQHVK8KTRKMENLYKKCBWWZ30WX8HZ52W386V' where id=31; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='506VCFQW8979C0B58OKSU2SQ3MFVVBJ4YMRG37AOSJOEP1CTE5ITTCH8ZHYW7WZK9B415H8ZYYOXEEN48JB28C5HCCJXVGM0UYCQT30CIB91J2J4HFYCG56715FSO2AWXWU0YV9P06WPA9LX6LSWWC7X08FS9Y6WJSA2PJZD2MO4PNDTL2841Z7AMU2X86C45BQ0LJM371XM91TEIVIY9H66021012660B01EXHUR72HXPHASQL536IZ9T8V82EM8' where id=31; -update noar ti set v2='506VCFQW8979C0B58OKSU2SQ3MFVVBJ4YMRG37AOSJOEP1CTE5ITTCH8ZHYW7WZK9B415H8ZYYOXEEN48JB28C5HCCJXVGM0UYCQT30CIB91J2J4HFYCG56715FSO2AWXWU0YV9P06WPA9LX6LSWWC7X08FS9Y6WJSA2PJZD2MO4PNDTL2841Z7AMU2X86C45BQ0LJM371XM91TEIVIY9H66021012660B01EXHUR72HXPHASQL536IZ9T8V82EM8' where id=31; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='HFPTZVT8CHM2WHXYE56GP3G0G2MG1C6BY6819KBWCF6IQ9ADZ8D8TNR363VG2VO23O4UO0SBD6N7DA91E5J690ITBTV6DLZ83D4EWTOHEFOLAUBX8WV2O35GP583NKRHIHN4PPOTAY07UU5QERNDJU5EH3GC7J5KF5TKDZV3IMXDNHM73IAQ0S1MEDNGLNF5VA1IO80YCFP51E9O4MUDL3D604H12DU69LHDU6BEZ72KC9TFZ1466NGIAYBS4QDF0' where id=31; -update noar ti set v3='HFPTZVT8CHM2WHXYE56GP3G0G2MG1C6BY6819KBWCF6IQ9ADZ8D8TNR363VG2VO23O4UO0SBD6N7DA91E5J690ITBTV6DLZ83D4EWTOHEFOLAUBX8WV2O35GP583NKRHIHN4PPOTAY07UU5QERNDJU5EH3GC7J5KF5TKDZV3IMXDNHM73IAQ0S1MEDNGLNF5VA1IO80YCFP51E9O4MUDL3D604H12DU69LHDU6BEZ72KC9TFZ1466NGIAYBS4QDF0' where id=31; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='7W6GSG53LDKXZSQ3MJD9MSCTTHGS75JLPS2HM3BRXDGDWGQBEAHDFNE4MZRRDT6OYZS9FLX8YTZF4YCAZAZL658BMFZ6NX58UJS0UYUUWASQDC3V4FTVG2X821RB3HB0PWJIONYGU0OZEH5OT7WPKMJMMZ05IF7CCE71ZFO18UOD16Q9B9RFW2BGO1G5TYM8X02KDBC08A4FJGU93HLTFZNPXDRZ53FTXBES98ODKJ1TWGGMYKPL1KBB4HBOAKJ9M' where id=32; -update noar ti set v0='7W6GSG53LDKXZSQ3MJD9MSCTTHGS75JLPS2HM3BRXDGDWGQBEAHDFNE4MZRRDT6OYZS9FLX8YTZF4YCAZAZL658BMFZ6NX58UJS0UYUUWASQDC3V4FTVG2X821RB3HB0PWJIONYGU0OZEH5OT7WPKMJMMZ05IF7CCE71ZFO18UOD16Q9B9RFW2BGO1G5TYM8X02KDBC08A4FJGU93HLTFZNPXDRZ53FTXBES98ODKJ1TWGGMYKPL1KBB4HBOAKJ9M' where id=32; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='GQLCDHO5FAU8T1I11V0LQ4ARS5AINR4XN75MMHND73CJ7GJ1O2GAF4DHT1IVDQVNGTPHTK67ZEBXCPQ5O6ZMURJDKGYEFV3ZIWTDITYY6R3DTJOV5BMCTW1MLQ2CB9ISMF68O2RP8YEOOHS3NHV3W7IXVOCNMCM91DZNT2HFS58JFBPB5KNW0M0EHJC9QOAY13IXH14V89MO1UQXV0TA0DKTG2JUH8ANGTBMYGKXVSXDAHQCOEUZP2LGXK2D1YRMD' where id=32; -update noar ti set v1='GQLCDHO5FAU8T1I11V0LQ4ARS5AINR4XN75MMHND73CJ7GJ1O2GAF4DHT1IVDQVNGTPHTK67ZEBXCPQ5O6ZMURJDKGYEFV3ZIWTDITYY6R3DTJOV5BMCTW1MLQ2CB9ISMF68O2RP8YEOOHS3NHV3W7IXVOCNMCM91DZNT2HFS58JFBPB5KNW0M0EHJC9QOAY13IXH14V89MO1UQXV0TA0DKTG2JUH8ANGTBMYGKXVSXDAHQCOEUZP2LGXK2D1YRMD' where id=32; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='OEK4R7RVKPVE3BM7AK1PU2QO4PF39QTXBT7G11U9GFFNSNEUE3Y01NWTJETKGAZ6O5UWAA0OD35F0YIFQ7ADCEDWCGU00RWYNW83GFF75XOMQOB8JA560HQLT2HIZSAOYD8QJRRKWJ2QHCPNKGTJGB7EIUMNRIT7Q2HPQGORLN41ADVYA6ARQ9EF2AI4FLAAO3ISEJNF2GYEYAY0NVX3JUCHRS82II58UEJGMKZS1W72WRXJ5X0EK6KIPW1JR3KFT' where id=32; -update noar ti set v2='OEK4R7RVKPVE3BM7AK1PU2QO4PF39QTXBT7G11U9GFFNSNEUE3Y01NWTJETKGAZ6O5UWAA0OD35F0YIFQ7ADCEDWCGU00RWYNW83GFF75XOMQOB8JA560HQLT2HIZSAOYD8QJRRKWJ2QHCPNKGTJGB7EIUMNRIT7Q2HPQGORLN41ADVYA6ARQ9EF2AI4FLAAO3ISEJNF2GYEYAY0NVX3JUCHRS82II58UEJGMKZS1W72WRXJ5X0EK6KIPW1JR3KFT' where id=32; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='JP3JGE7PM28QA2IX19WADVBAZYB1TL4V19TBYA79KFN8602XS04M0263X2TNW6BQGBV9J6HZ4Z1CH5TKNCH06ZS5NRIHWSZKS670BYM22RXF3UMZ6NXQO2L7HWNFMLUGQ7RDLYY7M4WFSKKBLG388WS8T5H5A7NJN7WIMJJWR8HC4QVO1T9S43286BIHLX1CFALNJ0J8NUM3QDZT2YO4R81A9H7M9WEIC0QK0VON062IG3MED6MB7F6NRMMQ7G0LW' where id=32; -update noar ti set v3='JP3JGE7PM28QA2IX19WADVBAZYB1TL4V19TBYA79KFN8602XS04M0263X2TNW6BQGBV9J6HZ4Z1CH5TKNCH06ZS5NRIHWSZKS670BYM22RXF3UMZ6NXQO2L7HWNFMLUGQ7RDLYY7M4WFSKKBLG388WS8T5H5A7NJN7WIMJJWR8HC4QVO1T9S43286BIHLX1CFALNJ0J8NUM3QDZT2YO4R81A9H7M9WEIC0QK0VON062IG3MED6MB7F6NRMMQ7G0LW' where id=32; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='XJUNKKGNZYOPYWI0YNXXTUYO0VD841OAH95L5489WKH42SBTEUYXJG4CAR6EH6R1PX4P61LYPWZJR5SSWBL4UGTDKWYSRURLEVI0O8Q8H8P1OOUFJ5OE67B7UGEH9S5VQR8WPIHT3ZVHX3I4NZA9BXF6S00FP4CNZRUB9VMZKXUGW9YDZLH6Q7B7W274I4TAXJTL65IP5GI7EPQLUYKO4C62OII3EGLV1IDI7MF4KX9Y77KOIE7ZPX0IQ8AWF0PF4' where id=33; -update noar ti set v0='XJUNKKGNZYOPYWI0YNXXTUYO0VD841OAH95L5489WKH42SBTEUYXJG4CAR6EH6R1PX4P61LYPWZJR5SSWBL4UGTDKWYSRURLEVI0O8Q8H8P1OOUFJ5OE67B7UGEH9S5VQR8WPIHT3ZVHX3I4NZA9BXF6S00FP4CNZRUB9VMZKXUGW9YDZLH6Q7B7W274I4TAXJTL65IP5GI7EPQLUYKO4C62OII3EGLV1IDI7MF4KX9Y77KOIE7ZPX0IQ8AWF0PF4' where id=33; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='2GQWU5SSRWW772TCQKN4Z75CTVI4FBNPOZ4GLCBJ53D266L1P00K4NU3QNVQOTD5S153G0JQQFB1UJUIK2GAXGBM5UONRK85R2MUU91IQL6G887Z7QXZ0B777NS6JO8CIEY5GKIUUXBP0Q0KC6QGVK9VT5RCLJ0LPJHGN02VPRE48EHNCELO5YVYQOJVXY1CZ085JG6U987ZBMSJAEA6YB5SU4KO3MH4WZ8BEGGOI7JE8C8R35T2SOAJQ0TNATC87' where id=33; -update noar ti set v1='2GQWU5SSRWW772TCQKN4Z75CTVI4FBNPOZ4GLCBJ53D266L1P00K4NU3QNVQOTD5S153G0JQQFB1UJUIK2GAXGBM5UONRK85R2MUU91IQL6G887Z7QXZ0B777NS6JO8CIEY5GKIUUXBP0Q0KC6QGVK9VT5RCLJ0LPJHGN02VPRE48EHNCELO5YVYQOJVXY1CZ085JG6U987ZBMSJAEA6YB5SU4KO3MH4WZ8BEGGOI7JE8C8R35T2SOAJQ0TNATC87' where id=33; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='8L6DFI5EFNTY2L9SFPMJFQGA2Y2BAHIZ8PXP7Q6K9WFCKGIOP3S61V74A5B3GJ8VF4FJYZEE5FEL6GWSQ6D5C1GA8P095H0ST5YD573I4INKDMON9GMN2LGW0E7ORZE72G37540A1H5K83QBUTLK24Y2NMK2R1QHW19XAXWC32RH0P0UAGRY6YS2PLBT7E2KP9A19KH5C7NZXEGP0GQPWHBP1AIQFGLMAOQZH2XFQOQ7CX6CAF6WNCC7WGXFGY2UJ' where id=33; -update noar ti set v2='8L6DFI5EFNTY2L9SFPMJFQGA2Y2BAHIZ8PXP7Q6K9WFCKGIOP3S61V74A5B3GJ8VF4FJYZEE5FEL6GWSQ6D5C1GA8P095H0ST5YD573I4INKDMON9GMN2LGW0E7ORZE72G37540A1H5K83QBUTLK24Y2NMK2R1QHW19XAXWC32RH0P0UAGRY6YS2PLBT7E2KP9A19KH5C7NZXEGP0GQPWHBP1AIQFGLMAOQZH2XFQOQ7CX6CAF6WNCC7WGXFGY2UJ' where id=33; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='9K0I0PMN2FVXAJ7ITQQK9AC1IP346NAT7RBGXBK5KQ42JA73HZIC05K9BW1L9KU2VR0RB9H50DPYN0VOQ58RC4WRSW49L0T4TOV4S96BZWWJBZUIX5Z76QFA8EQQ5PUE6RYTIEGVYSVIMQ14JY75BV44ZXVCTFI71JS4S2J6FXKRICRY3XM1PREQ4ZV6O8BHZTL5NRTLSI4INTSRBYV1QBDJ0RCU6RIQNBYLYN93BMV9KBEDVQSQXJESY52EMZ1EI' where id=33; -update noar ti set v3='9K0I0PMN2FVXAJ7ITQQK9AC1IP346NAT7RBGXBK5KQ42JA73HZIC05K9BW1L9KU2VR0RB9H50DPYN0VOQ58RC4WRSW49L0T4TOV4S96BZWWJBZUIX5Z76QFA8EQQ5PUE6RYTIEGVYSVIMQ14JY75BV44ZXVCTFI71JS4S2J6FXKRICRY3XM1PREQ4ZV6O8BHZTL5NRTLSI4INTSRBYV1QBDJ0RCU6RIQNBYLYN93BMV9KBEDVQSQXJESY52EMZ1EI' where id=33; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='SI26W3G68GS54M7AMEB9AG2I5OEK9BA89KR7TG7KLBFOUGXH1MYIFCYYYX32I96QTKRCRP5QJJDQDR5OJLGC2F4QO90F93LJZZAE6BTN98DFS92IA1XQNN3XKSHW2I9Y02FHVFQ84YOZIM7XLA10KPJ1ZEWNZ7EA99JXHIF4EX3PQRO99LEQ0YXTEWZJQ47OEJZB3DAQDQAKLX7KKZZ2PIGN5EOWANGLUXCKFDX1OOVXB4E1XHUF6O0S32A72YKPG' where id=34; -update noar ti set v0='SI26W3G68GS54M7AMEB9AG2I5OEK9BA89KR7TG7KLBFOUGXH1MYIFCYYYX32I96QTKRCRP5QJJDQDR5OJLGC2F4QO90F93LJZZAE6BTN98DFS92IA1XQNN3XKSHW2I9Y02FHVFQ84YOZIM7XLA10KPJ1ZEWNZ7EA99JXHIF4EX3PQRO99LEQ0YXTEWZJQ47OEJZB3DAQDQAKLX7KKZZ2PIGN5EOWANGLUXCKFDX1OOVXB4E1XHUF6O0S32A72YKPG' where id=34; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='PO8QZ3A2OC1BP6M07DVLPL1GP8ODXZIVUPRPZ6ZCKOIQDU3GFR8D10N2TVB9J7COE8IAEJ1RVSDW84K9T2AGCJQ3DCQKIYESQK0VZSUB5GNLOQYZ9MZ17VYU7CFTZGGHCF8R82HJB7NVCLMVQ1AJZK9P8F89W5IOQ7J59OX0QKV0L712WJX2ARNW75SQPS7FK67QSHKNRDUIEXJVR3F54FY3Z4BL0O9CCN1U2UIUHTGC1ZUZS0TFPN9AZDGHLF9H2' where id=34; -update noar ti set v1='PO8QZ3A2OC1BP6M07DVLPL1GP8ODXZIVUPRPZ6ZCKOIQDU3GFR8D10N2TVB9J7COE8IAEJ1RVSDW84K9T2AGCJQ3DCQKIYESQK0VZSUB5GNLOQYZ9MZ17VYU7CFTZGGHCF8R82HJB7NVCLMVQ1AJZK9P8F89W5IOQ7J59OX0QKV0L712WJX2ARNW75SQPS7FK67QSHKNRDUIEXJVR3F54FY3Z4BL0O9CCN1U2UIUHTGC1ZUZS0TFPN9AZDGHLF9H2' where id=34; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='5N6HRFQ4949NXIMOPNIA6IKQHEXN2B0R7G3T2WS2RCWO7LVJSURZRCQ52O45R598M3BDHGO1ZW22C0WAOOWJ3CDP3SAXKTRHC2W5N9R8MMR50977PSLKYLOTXZ6SKNER8BT4LC7SCPHIRDAFFPP9398I678Q3EV3WIOZDJGE84L3KV0FLNJU0M0OACPH7HD6ENJX4MYB2L29SR28SVCEQUIR644Y0ODRMU8JYK18VZW80UUUR6KPU1LK2JMPU0WPR' where id=34; -update noar ti set v2='5N6HRFQ4949NXIMOPNIA6IKQHEXN2B0R7G3T2WS2RCWO7LVJSURZRCQ52O45R598M3BDHGO1ZW22C0WAOOWJ3CDP3SAXKTRHC2W5N9R8MMR50977PSLKYLOTXZ6SKNER8BT4LC7SCPHIRDAFFPP9398I678Q3EV3WIOZDJGE84L3KV0FLNJU0M0OACPH7HD6ENJX4MYB2L29SR28SVCEQUIR644Y0ODRMU8JYK18VZW80UUUR6KPU1LK2JMPU0WPR' where id=34; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='II772IKVGX1MX8RKL36PYI9JO2BZXQKCQARD630DZQFWCMPYLDRL0XU563SUV37FNISKK1C06JGTMUHKPODBSQ7R8TH9FPXSJVQUBDU6V23GBDOGBQIFAZAH0TWAE6WKG3P2S4AD5EY7K6IM5MM3NJJQRCJM6REH78QG081T5NMLCNGLZCBXI71MTSZ2AMBHU159LJR9XQ59A6SJT7C3UZRRGT0FFVWKKZXDBZV1FXQJ6KM5WXQPCVNO5C22Q5UPY' where id=34; -update noar ti set v3='II772IKVGX1MX8RKL36PYI9JO2BZXQKCQARD630DZQFWCMPYLDRL0XU563SUV37FNISKK1C06JGTMUHKPODBSQ7R8TH9FPXSJVQUBDU6V23GBDOGBQIFAZAH0TWAE6WKG3P2S4AD5EY7K6IM5MM3NJJQRCJM6REH78QG081T5NMLCNGLZCBXI71MTSZ2AMBHU159LJR9XQ59A6SJT7C3UZRRGT0FFVWKKZXDBZV1FXQJ6KM5WXQPCVNO5C22Q5UPY' where id=34; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='6RRGZWPIE81BJ57BSNVWQGQXCK05KYLUFA471G7L3UUN7EX9J1C534B3X41QN8YY6WEO5RMWFSEE30MY01LQN1VEDZA0F7M0K32LZC6ED4VTDPD6IZ2K2443N9R2LO8VOCLZLRJZDBPWIUBNVNDENVFK31M7OVZV0J2JGI4Y2JJQMKJG7SAN3F21OTGURRJ67ARF3NJ80SA2956N74NMUESIWR5C8NUHBGMAP8NJBTS5EZC902Y70TRSQCJP7321P' where id=35; -update noar ti set v0='6RRGZWPIE81BJ57BSNVWQGQXCK05KYLUFA471G7L3UUN7EX9J1C534B3X41QN8YY6WEO5RMWFSEE30MY01LQN1VEDZA0F7M0K32LZC6ED4VTDPD6IZ2K2443N9R2LO8VOCLZLRJZDBPWIUBNVNDENVFK31M7OVZV0J2JGI4Y2JJQMKJG7SAN3F21OTGURRJ67ARF3NJ80SA2956N74NMUESIWR5C8NUHBGMAP8NJBTS5EZC902Y70TRSQCJP7321P' where id=35; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='V8VTPC7BEKW93PHXRRAE123CQ9JIN0L0PQJA9PCBR06O3FF1HD8CHI8OKAABN2J42PXJ2C8JDLCCMGE0MS0D1GF3POQQ5856K3KN49HYD074NAG1ACYL7VOPOVCZMEZMI2Y7KINSBM7JMJNICJ0YTIW1D97QGC9NO1HFME9Q1M9SU98JPU44IGUPFNFP26JNQ6GH9A880NB3BER6SNDPA17S8OV1WM5Z28RYDP057BYFHB041DPAEVYW5KK50YXF8' where id=35; -update noar ti set v1='V8VTPC7BEKW93PHXRRAE123CQ9JIN0L0PQJA9PCBR06O3FF1HD8CHI8OKAABN2J42PXJ2C8JDLCCMGE0MS0D1GF3POQQ5856K3KN49HYD074NAG1ACYL7VOPOVCZMEZMI2Y7KINSBM7JMJNICJ0YTIW1D97QGC9NO1HFME9Q1M9SU98JPU44IGUPFNFP26JNQ6GH9A880NB3BER6SNDPA17S8OV1WM5Z28RYDP057BYFHB041DPAEVYW5KK50YXF8' where id=35; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='M40EG1BA6XTQLKBSJN8A9739NS4QI29XDURDLEMMNIW1CXAOZVGX5J1VG9JPWJKKLNYWKTXEYSEIEUR50OIU84YUDKOBNCA4P4IVD86PMBWPJ6Q0WJU3P7KF3DLQ9H8EP2JJMSSHSR5BCEIS4TSLDTF2H47IH637X80DJNMCTJN2ENEK51ST3UCQQ78AEQ5QHM1XBNW9BR1PPFUMU63NOK8BSM4Y24RCJ9QZWLBAPI6Q13CIB3V4MYZGPFPAYM5E9' where id=35; -update noar ti set v2='M40EG1BA6XTQLKBSJN8A9739NS4QI29XDURDLEMMNIW1CXAOZVGX5J1VG9JPWJKKLNYWKTXEYSEIEUR50OIU84YUDKOBNCA4P4IVD86PMBWPJ6Q0WJU3P7KF3DLQ9H8EP2JJMSSHSR5BCEIS4TSLDTF2H47IH637X80DJNMCTJN2ENEK51ST3UCQQ78AEQ5QHM1XBNW9BR1PPFUMU63NOK8BSM4Y24RCJ9QZWLBAPI6Q13CIB3V4MYZGPFPAYM5E9' where id=35; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='ELPMQLP458OO7NAL97BIEJ1J7ZM4U1BGMDBUTPH1A4WKHDMB5QVX3TJUIELK1MQXH81F008HC2QV2ZM707GB67WFIG2YR7KH3L1HR5JH1527P6BOJG35ORSSIHD1SOFIN39STN53GG74MIARZBYGJHNG1TQGI0A6SW3VV9OVM2MDSJN6IE3E9Z45WAJ2J03HZQ4HEJF96PEGNOPP3RC47419S9HKF1HSU22T6ZT8QBIY1X0U1VTXE73UWUYCSQ4XZ' where id=35; -update noar ti set v3='ELPMQLP458OO7NAL97BIEJ1J7ZM4U1BGMDBUTPH1A4WKHDMB5QVX3TJUIELK1MQXH81F008HC2QV2ZM707GB67WFIG2YR7KH3L1HR5JH1527P6BOJG35ORSSIHD1SOFIN39STN53GG74MIARZBYGJHNG1TQGI0A6SW3VV9OVM2MDSJN6IE3E9Z45WAJ2J03HZQ4HEJF96PEGNOPP3RC47419S9HKF1HSU22T6ZT8QBIY1X0U1VTXE73UWUYCSQ4XZ' where id=35; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='P7JUPRGYYN2914ZB40YYAE78T3CZYKZ3LWMT9X3X94Q4XYS7G4LT1VF4SPHLS0LZQHLAQP1ES8BPI0XNEYGXQC662H4EILD1Z2P4E4CBRYDIJU9OG7SXUSZ6RPHCGYBVQNOFDQIIBC66FGK9V1S0C8RXMQ6R6GL77ZR35HI7HVHSQ0USEBG0J7TQC67CY8V6BD8TRQO0O8SX0HRAVULJMTJR60HAEYYNT4DE25IDPIGX7T88NQUS8ZYOQD9U5LS49' where id=36; -update noar ti set v0='P7JUPRGYYN2914ZB40YYAE78T3CZYKZ3LWMT9X3X94Q4XYS7G4LT1VF4SPHLS0LZQHLAQP1ES8BPI0XNEYGXQC662H4EILD1Z2P4E4CBRYDIJU9OG7SXUSZ6RPHCGYBVQNOFDQIIBC66FGK9V1S0C8RXMQ6R6GL77ZR35HI7HVHSQ0USEBG0J7TQC67CY8V6BD8TRQO0O8SX0HRAVULJMTJR60HAEYYNT4DE25IDPIGX7T88NQUS8ZYOQD9U5LS49' where id=36; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='2V2NF6ULETBD58Z0LEMRB25477HWMDYOYYNLWI3KR86K3CMV5ZF6QGOGFI8FEAYJZVDP9EMU3C291ZXCWL8GDSPIOHPCHL7BU4T9VIS3Y5ZRDRZY9LFR2TOG25ZDI5I8K6EL17ZNRAZ5CANMEGLAY2VHWV8CLBSY3TDEIX9WS25VRYZM76R3A1GSGCIE0JDGFOA1MUJSP14SQD757ME54GACJHG4I0WNR1QKKF7MW3ISJULIWP1MGS8NOG0KZ4YHF' where id=36; -update noar ti set v1='2V2NF6ULETBD58Z0LEMRB25477HWMDYOYYNLWI3KR86K3CMV5ZF6QGOGFI8FEAYJZVDP9EMU3C291ZXCWL8GDSPIOHPCHL7BU4T9VIS3Y5ZRDRZY9LFR2TOG25ZDI5I8K6EL17ZNRAZ5CANMEGLAY2VHWV8CLBSY3TDEIX9WS25VRYZM76R3A1GSGCIE0JDGFOA1MUJSP14SQD757ME54GACJHG4I0WNR1QKKF7MW3ISJULIWP1MGS8NOG0KZ4YHF' where id=36; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='UUVWDIMYHHRSSM4UKUZGDR4TUGPPQKT9ZKTUEY5D88C3WV8O7RWIWFCLYN76BH9PZDPDPEIQLONIWVGIJY60BRQEN6D2CNQFDJHXP6QZLSXTNPG27YJVHZMOVE3D216A4DKHJLSJGXW3VRKH0SLT5PBEHAZDFIYW93HO22I5JM60N6Q6PZXFABE07WBIILAY8LOQRD7B7F4CTETS4XVO5DDJCQGNOTDLF1WUNL2DDXSCNUONOA12G6E8O8ZC3RDPI' where id=36; -update noar ti set v2='UUVWDIMYHHRSSM4UKUZGDR4TUGPPQKT9ZKTUEY5D88C3WV8O7RWIWFCLYN76BH9PZDPDPEIQLONIWVGIJY60BRQEN6D2CNQFDJHXP6QZLSXTNPG27YJVHZMOVE3D216A4DKHJLSJGXW3VRKH0SLT5PBEHAZDFIYW93HO22I5JM60N6Q6PZXFABE07WBIILAY8LOQRD7B7F4CTETS4XVO5DDJCQGNOTDLF1WUNL2DDXSCNUONOA12G6E8O8ZC3RDPI' where id=36; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='PCJJE28CZRNLBBLYX00AVE0PSWUQVEY5AWYSAX3JI85D78HGQ9M7XW7TQT17IDY331HMCWFO4NB4BXXCQD36G5ZJAZ67E6WIOFWW1BKYMIOJYQLEQYP8LCWWSA618L4IRIL6LHJIZ4Q2IYK3QISO5XS91YR7SPPFJNMZ2QIT8FXXWH26HBIZYVXEAUSW6W6K6FMPUJ9NKSHMPG24TNU1UKVV6TEUTSO0T1RXVXWKO89LZDXS21LWUHB2X8TE1RKBS' where id=36; -update noar ti set v3='PCJJE28CZRNLBBLYX00AVE0PSWUQVEY5AWYSAX3JI85D78HGQ9M7XW7TQT17IDY331HMCWFO4NB4BXXCQD36G5ZJAZ67E6WIOFWW1BKYMIOJYQLEQYP8LCWWSA618L4IRIL6LHJIZ4Q2IYK3QISO5XS91YR7SPPFJNMZ2QIT8FXXWH26HBIZYVXEAUSW6W6K6FMPUJ9NKSHMPG24TNU1UKVV6TEUTSO0T1RXVXWKO89LZDXS21LWUHB2X8TE1RKBS' where id=36; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='VZYC2EVSQNE7K10HWF8BZ6FKZX45ANCG9V41LPF4QK5NS5OLC1XMBWMRWXP3X7APPGKBVOX8YAEORQWLKDALS2TJ5EELTSGC2IESQSU49YNB0T98ITOV2D9NPZPB7P340GD5ZGGGMCW6BJ5WUJQRTX397TIX0146ZD8BQMDH42EJ7ZAZGJ9SWGHIDIGPEE2TBR0QHGPVPH184AN5N0628DLV5PVIBPEUDFMJJMKRHU6YMZAG8BFPESJYSP10IJE9A' where id=37; -update noar ti set v0='VZYC2EVSQNE7K10HWF8BZ6FKZX45ANCG9V41LPF4QK5NS5OLC1XMBWMRWXP3X7APPGKBVOX8YAEORQWLKDALS2TJ5EELTSGC2IESQSU49YNB0T98ITOV2D9NPZPB7P340GD5ZGGGMCW6BJ5WUJQRTX397TIX0146ZD8BQMDH42EJ7ZAZGJ9SWGHIDIGPEE2TBR0QHGPVPH184AN5N0628DLV5PVIBPEUDFMJJMKRHU6YMZAG8BFPESJYSP10IJE9A' where id=37; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='QLGG0UEIAR6V8B7G6BVB9NTUOARB4FRCADPLCGJQY8DO5JA4B76917TI57RDEY6Z1IE1PLMDY7OXZOHABENG6EBQGTKEP2WEYWLA8VX4JUR7BFW189IUSX41ZCEANXXBI0B7W8GYHRFRPLRM43U4U10HZI8ZD6DQLKJY2V5G36PUBQMCYVKGTHBQ30MJFAMLWPB76ECVDG5YN8GVTXE229B8S3P1CJ7DSN0UWRN7JBZF03S9LRZXFI4Z04CY81TRT' where id=37; -update noar ti set v1='QLGG0UEIAR6V8B7G6BVB9NTUOARB4FRCADPLCGJQY8DO5JA4B76917TI57RDEY6Z1IE1PLMDY7OXZOHABENG6EBQGTKEP2WEYWLA8VX4JUR7BFW189IUSX41ZCEANXXBI0B7W8GYHRFRPLRM43U4U10HZI8ZD6DQLKJY2V5G36PUBQMCYVKGTHBQ30MJFAMLWPB76ECVDG5YN8GVTXE229B8S3P1CJ7DSN0UWRN7JBZF03S9LRZXFI4Z04CY81TRT' where id=37; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='WCFWJ2VCYRPGWTYQ5PZUJTMM9VA53T1RBSBUPLD36IXOEY13EV5TT38RARM7V82X2I7ZJ1ZLRXAF99PTYD8K1G8JIGH7N25T43E9NIRPMGR7RV2OL9WLBEJ0OT0CQNBKJIO7F2OMVUA20GKMES8BOU74NBJPNCVODQAJFRLK4SP2WDM6KUYXLOY7C2BYJASID5SQNS7ZFZKWHN5M40BGP9LZKDNK05J4N5HA4MHVJLIFHDEUGJ7XPYNGA79SZBBLT' where id=37; -update noar ti set v2='WCFWJ2VCYRPGWTYQ5PZUJTMM9VA53T1RBSBUPLD36IXOEY13EV5TT38RARM7V82X2I7ZJ1ZLRXAF99PTYD8K1G8JIGH7N25T43E9NIRPMGR7RV2OL9WLBEJ0OT0CQNBKJIO7F2OMVUA20GKMES8BOU74NBJPNCVODQAJFRLK4SP2WDM6KUYXLOY7C2BYJASID5SQNS7ZFZKWHN5M40BGP9LZKDNK05J4N5HA4MHVJLIFHDEUGJ7XPYNGA79SZBBLT' where id=37; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='MO2GY6Y24Z3PV67LWO081TA9FMHWX10JVJ8OUIWPACPFZ9PBHPDLHC0B23IQ2YP49BC6WOBVP1L25GG9T0SMQHEAVVN9T2SK6EBOHYCPMB9BIZYSWBES9E3I8AQS4F2ILSAHEKM8UD9TK8QC6CCAN25ZAWR8J0KYTCO63FYA3BJLP0UIL2RJIAST9GDWNQPL463P3B1WWOTGGPE31C9DHKDI20SHQS4Q872VL6HX3MRYM1JB45SOR8SCGWAXVXWQU' where id=37; -update noar ti set v3='MO2GY6Y24Z3PV67LWO081TA9FMHWX10JVJ8OUIWPACPFZ9PBHPDLHC0B23IQ2YP49BC6WOBVP1L25GG9T0SMQHEAVVN9T2SK6EBOHYCPMB9BIZYSWBES9E3I8AQS4F2ILSAHEKM8UD9TK8QC6CCAN25ZAWR8J0KYTCO63FYA3BJLP0UIL2RJIAST9GDWNQPL463P3B1WWOTGGPE31C9DHKDI20SHQS4Q872VL6HX3MRYM1JB45SOR8SCGWAXVXWQU' where id=37; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='BLEMK4WHMRMRC2168NSCHC0J1XDRQJAJWN898EK8XDNFPUQ8WK9G70B1E4C2J6J97KA2BH97WSPQKL7I7TWP26FVJQH15MQ7AHG0Q0B3W2ZTTBALUYM4S171OJV1YC0D1IVK6VSQMLL27OQR9Q8DPF6NAZJVU7BWCEBW79SVGCWFIBE997DUYGV24MP955I2QWGA0D8TSJLJPU2C6P8ZAX1ZZHBZ7PWBKNLFQ0UWZF3FWFY8E1O6K17P3Z6CY5CD7' where id=38; -update noar ti set v0='BLEMK4WHMRMRC2168NSCHC0J1XDRQJAJWN898EK8XDNFPUQ8WK9G70B1E4C2J6J97KA2BH97WSPQKL7I7TWP26FVJQH15MQ7AHG0Q0B3W2ZTTBALUYM4S171OJV1YC0D1IVK6VSQMLL27OQR9Q8DPF6NAZJVU7BWCEBW79SVGCWFIBE997DUYGV24MP955I2QWGA0D8TSJLJPU2C6P8ZAX1ZZHBZ7PWBKNLFQ0UWZF3FWFY8E1O6K17P3Z6CY5CD7' where id=38; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='3U1EKVNAUPBJSZOF7VTPEYGHFUIJ11JETHL8HU65OWMD8TELHE2THLI58JEBCKXCII7QQQAWUGZKA1FWS0EHZUXQFK8DQJ4OB0PWFLKSHCHZDF2HBCY6WRSI7J447TTFNSDGPH07S9J17RGIXI8ROWSPNRXWLOFLHKZBXPMWDL01JWNWFAZ8SFVMBO2V02E2IZ3AO7KUB0LGJTZBG1FAWT0C6PCP54YI5KRYB7ZJSTPUYZXNB3U5P1YFUZHCJ2U8M' where id=38; -update noar ti set v1='3U1EKVNAUPBJSZOF7VTPEYGHFUIJ11JETHL8HU65OWMD8TELHE2THLI58JEBCKXCII7QQQAWUGZKA1FWS0EHZUXQFK8DQJ4OB0PWFLKSHCHZDF2HBCY6WRSI7J447TTFNSDGPH07S9J17RGIXI8ROWSPNRXWLOFLHKZBXPMWDL01JWNWFAZ8SFVMBO2V02E2IZ3AO7KUB0LGJTZBG1FAWT0C6PCP54YI5KRYB7ZJSTPUYZXNB3U5P1YFUZHCJ2U8M' where id=38; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='XYXXOVJA3MVYICGJI92SLTQ8MA44NNQ456OMEAT8TZDDBCNWJH5ZEUVBGGWR9AXMHXKCAMZT6RQZVR6N1R5XOV257EFKV4JKIBOHRSOU0H057G5OZGGECT6YVFC04GVS3BFHXQYIB0AXOWPDAEM9B82ISPB1WWG9I1QEMGHUXRYFNWK7DWORZMFYP25BTUYYFJB7BYPZ37SCAEWMWNNRXLL8PWQYIW12K68AJ1VGLNAE7X2OY41F0FM9JPDSBUPUQ' where id=38; -update noar ti set v2='XYXXOVJA3MVYICGJI92SLTQ8MA44NNQ456OMEAT8TZDDBCNWJH5ZEUVBGGWR9AXMHXKCAMZT6RQZVR6N1R5XOV257EFKV4JKIBOHRSOU0H057G5OZGGECT6YVFC04GVS3BFHXQYIB0AXOWPDAEM9B82ISPB1WWG9I1QEMGHUXRYFNWK7DWORZMFYP25BTUYYFJB7BYPZ37SCAEWMWNNRXLL8PWQYIW12K68AJ1VGLNAE7X2OY41F0FM9JPDSBUPUQ' where id=38; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='5L73SKY8XCDCE44Z5XSXL2IK878E2ZQV6PCRB3Q1CWQ7QU6OBEAXJO7RN2HPX7IXDR17QR54S3C2YCE8FV9X4ILFP7ZZ69FWM2W50ALPA72SUMDBYWVGC9B8ICDOP9PHYZ89ESF0SD9X71M2JGGNAQYAEL6TK15KCSG7EAIUWSW6M3SOZLD4GSUWJZ971TG9UP1AWK6T00KFZJVOAD76ZV10XZ8PZER0DIKK7FBZ18TQDQ4Z0KX8WQM6LX0APV7H4' where id=38; -update noar ti set v3='5L73SKY8XCDCE44Z5XSXL2IK878E2ZQV6PCRB3Q1CWQ7QU6OBEAXJO7RN2HPX7IXDR17QR54S3C2YCE8FV9X4ILFP7ZZ69FWM2W50ALPA72SUMDBYWVGC9B8ICDOP9PHYZ89ESF0SD9X71M2JGGNAQYAEL6TK15KCSG7EAIUWSW6M3SOZLD4GSUWJZ971TG9UP1AWK6T00KFZJVOAD76ZV10XZ8PZER0DIKK7FBZ18TQDQ4Z0KX8WQM6LX0APV7H4' where id=38; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='B4IMNLSGG9KWHN21N6KI1DE8AM0SFA8P6YV5WF3PWKLW9LLO20AW2BL8MH60HAQEP15LE59KU0U9KFE1ZXW154CJXMWNXNWTV1GNR24T6ES5EAXT0Q9P5SN2FAP4BQI8PTPPE0S7FZ5W5NUAB0YG1UXR4KGWNFFZELBBJDBGR4TWIR6SZ0UWLKL398XP8B7712OUSLUBYJZD03GPBBQMWBVSPZWU1O2B4ALC0MFXF7XEINIDHMUWI64EVIB3YTFWW' where id=39; -update noar ti set v0='B4IMNLSGG9KWHN21N6KI1DE8AM0SFA8P6YV5WF3PWKLW9LLO20AW2BL8MH60HAQEP15LE59KU0U9KFE1ZXW154CJXMWNXNWTV1GNR24T6ES5EAXT0Q9P5SN2FAP4BQI8PTPPE0S7FZ5W5NUAB0YG1UXR4KGWNFFZELBBJDBGR4TWIR6SZ0UWLKL398XP8B7712OUSLUBYJZD03GPBBQMWBVSPZWU1O2B4ALC0MFXF7XEINIDHMUWI64EVIB3YTFWW' where id=39; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='WWW6M0YXSMIZJAFX1NPFPL7B9S75TM45GCU759PAHIDWACM5LB5IOY7GZSYK0QOZC9DQ2NNAI4ZW0RAXSZFV6YZ85RTW5JMJTVPYTCJAHSL2QPOZWURJTUI7U3ASW5P99X5QNXPXOCIWVWWFG86L7YLHCE83HPA1V1P3VFPZB6ASQEZIKM5ZKIMFND91UQMCNNYQKSKEMFDAJ7CE9Y134AV2HI4V2O5XA8EL0CDP3UIOBQ4K0WMIPE3I8HHDB18P3' where id=39; -update noar ti set v1='WWW6M0YXSMIZJAFX1NPFPL7B9S75TM45GCU759PAHIDWACM5LB5IOY7GZSYK0QOZC9DQ2NNAI4ZW0RAXSZFV6YZ85RTW5JMJTVPYTCJAHSL2QPOZWURJTUI7U3ASW5P99X5QNXPXOCIWVWWFG86L7YLHCE83HPA1V1P3VFPZB6ASQEZIKM5ZKIMFND91UQMCNNYQKSKEMFDAJ7CE9Y134AV2HI4V2O5XA8EL0CDP3UIOBQ4K0WMIPE3I8HHDB18P3' where id=39; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='R72ZGMWBTTUYGM2EJ0DQFE7LY1B8C6F83VRQQ1EI1TM4GYOMQORPCNZ2FKS1802XU7UGHGMJ5GLB7TVDT54HNVXK9Q6V7H8M7TOUP9L0FC06Y0X3HASMUJPBEB3VTO47OGQ345QKRUGGMMBFK16LTNBNK1QFH5NF3Y2LVD2UV2NALPUPERN0YB06DZ736UPOJS78W22XAHKQ97LU19AP5JXBSLSMKTU96IP087DB89XNP8463RHND2D81SZXX0HQ9' where id=39; -update noar ti set v2='R72ZGMWBTTUYGM2EJ0DQFE7LY1B8C6F83VRQQ1EI1TM4GYOMQORPCNZ2FKS1802XU7UGHGMJ5GLB7TVDT54HNVXK9Q6V7H8M7TOUP9L0FC06Y0X3HASMUJPBEB3VTO47OGQ345QKRUGGMMBFK16LTNBNK1QFH5NF3Y2LVD2UV2NALPUPERN0YB06DZ736UPOJS78W22XAHKQ97LU19AP5JXBSLSMKTU96IP087DB89XNP8463RHND2D81SZXX0HQ9' where id=39; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='I6RAY59JTJM0VVCWEA3KVOGUZ8LUVEWO9TC7IVR40TRTRX0EOMNNV46AHEFHCFA5MJYFLKPDGJXP97WZKG2K3HGUKG6JX81M3SOEX2WNDOFU3J0WD253TGUBE18343XG2HZLI1N0M7GLQ5K179NZ5J7C4QJKV031V3L1PMULL8EAWT1XL05SHW9ZF8TIQ3RRWIZK8T4QDDV6MHZP9B6WXWS6UPGJ448BSK59XLXHNA2ZKADCUV3DOIGZM1TDD2WVN' where id=39; -update noar ti set v3='I6RAY59JTJM0VVCWEA3KVOGUZ8LUVEWO9TC7IVR40TRTRX0EOMNNV46AHEFHCFA5MJYFLKPDGJXP97WZKG2K3HGUKG6JX81M3SOEX2WNDOFU3J0WD253TGUBE18343XG2HZLI1N0M7GLQ5K179NZ5J7C4QJKV031V3L1PMULL8EAWT1XL05SHW9ZF8TIQ3RRWIZK8T4QDDV6MHZP9B6WXWS6UPGJ448BSK59XLXHNA2ZKADCUV3DOIGZM1TDD2WVN' where id=39; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='993LPX5KQ7LIL089G7YFC4ZLW6MBK1SMIMSHVEVLVLG46WJP2H6K9KC3V7MK4UB0I0LHSQW9I1Y3S4HGC781WR9F5QIDL6TL5P3Q9MAL1IFJW5G9MAII7CI0UOJQYLAJDW837MVT7NVVBG0KN58WBZGWP4TEHE5SKSD6B63MLSWUW3HTENUPHWL81A4SV3JL4GR6FJWQOU3RCBLM3H3ZKKIHLS6UB49N3URGCBVPW8KYNSETT57EODXUSB4FFEB96' where id=40; -update noar ti set v0='993LPX5KQ7LIL089G7YFC4ZLW6MBK1SMIMSHVEVLVLG46WJP2H6K9KC3V7MK4UB0I0LHSQW9I1Y3S4HGC781WR9F5QIDL6TL5P3Q9MAL1IFJW5G9MAII7CI0UOJQYLAJDW837MVT7NVVBG0KN58WBZGWP4TEHE5SKSD6B63MLSWUW3HTENUPHWL81A4SV3JL4GR6FJWQOU3RCBLM3H3ZKKIHLS6UB49N3URGCBVPW8KYNSETT57EODXUSB4FFEB96' where id=40; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='G20KIJ273MJUZIS1CETODHSCF2R7IDEC9B911INZS4J5SIAX7O50LPT593YQS8PZFUFYLVIRHDILBW5J5YPRDG2GKX64NEWVEOPBNBNQIGJXLCXDVH9ETJXR936IM6ZX24OPOQPZ6F39GFLEV27809QH9HZQJDBTWNG62TV1686957XBNX0NLHKY2YB19RVM3D43OELFAQ8DAJR7SJ41Z1ZCJCCBGTH2RIL5L7WR8LB141MHU736KZ0B965T6HATI' where id=40; -update noar ti set v1='G20KIJ273MJUZIS1CETODHSCF2R7IDEC9B911INZS4J5SIAX7O50LPT593YQS8PZFUFYLVIRHDILBW5J5YPRDG2GKX64NEWVEOPBNBNQIGJXLCXDVH9ETJXR936IM6ZX24OPOQPZ6F39GFLEV27809QH9HZQJDBTWNG62TV1686957XBNX0NLHKY2YB19RVM3D43OELFAQ8DAJR7SJ41Z1ZCJCCBGTH2RIL5L7WR8LB141MHU736KZ0B965T6HATI' where id=40; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='KQQWXZC7RRYMYUHA95EXL4KSC2YXUNPVOTXTQGVSRTSAFC4DXMQ7C1DEIJDQ682UIUCHJ0985NI7T6OLLCJ4ZKJH1PM93QT2OJFQP576FSLCVB57GEHSFZEXMVJO0KA0FSND0P4QCIFCSETC6TS5HLOGD6CBGW3QIW241P855G4KMGJPSBDXZ4LGC87GZT6Z8101K4MB4WI680G9ZPDR5IOXM6ZO0L7VBTKY4CRQBL990JLBGAXXEWZPM92BZ7SH4' where id=40; -update noar ti set v2='KQQWXZC7RRYMYUHA95EXL4KSC2YXUNPVOTXTQGVSRTSAFC4DXMQ7C1DEIJDQ682UIUCHJ0985NI7T6OLLCJ4ZKJH1PM93QT2OJFQP576FSLCVB57GEHSFZEXMVJO0KA0FSND0P4QCIFCSETC6TS5HLOGD6CBGW3QIW241P855G4KMGJPSBDXZ4LGC87GZT6Z8101K4MB4WI680G9ZPDR5IOXM6ZO0L7VBTKY4CRQBL990JLBGAXXEWZPM92BZ7SH4' where id=40; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='R7732WUFVPUQ2FSPG2M64R2NWRSJXF65DEXK4ZLARSVJBFNRJYTW0OO5FJHWHLZDDURYFCSCF35WDLHR092CRIFC1DWSDC69XZ13ZDL30Y33IQW9ZS682HUG7JTXMKML50J9YJQQ7757LM5PVXS6YMNECT3N9D1H0MKSZCNV4R3SLEGHRCQXI1335UXBZSPP3GD9ZJ64A0KUB2QQZ4O6CDS9P5LSYWKHW8FZSS8I8HHKTFB1MIBMZZI5M7G70DMIM' where id=40; -update noar ti set v3='R7732WUFVPUQ2FSPG2M64R2NWRSJXF65DEXK4ZLARSVJBFNRJYTW0OO5FJHWHLZDDURYFCSCF35WDLHR092CRIFC1DWSDC69XZ13ZDL30Y33IQW9ZS682HUG7JTXMKML50J9YJQQ7757LM5PVXS6YMNECT3N9D1H0MKSZCNV4R3SLEGHRCQXI1335UXBZSPP3GD9ZJ64A0KUB2QQZ4O6CDS9P5LSYWKHW8FZSS8I8HHKTFB1MIBMZZI5M7G70DMIM' where id=40; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='Z3MCG8M3D3Y1FY3T9LXZGFNSPSABYWJPN1LRNSWZZDWLVUMUROCS747SFXQ16L0EFLZ8ZUTXFR0664NYK2MNRBO1CZ0VDHZN9WNIJZSTXD1101APO8RBR4P6NM4CS3KP7B3EBPEJI9VVVO8VSVLZ79B3YX559EC0TF4ANCB9V5DGR0SEX7UX78D9BUIFAZKFWP0UCBOMROPT9AEBMPC0NTM9O6ZGC540D5RF5DR3XVXDC063N6I3EV5MT2O6KYPHO' where id=41; -update noar ti set v0='Z3MCG8M3D3Y1FY3T9LXZGFNSPSABYWJPN1LRNSWZZDWLVUMUROCS747SFXQ16L0EFLZ8ZUTXFR0664NYK2MNRBO1CZ0VDHZN9WNIJZSTXD1101APO8RBR4P6NM4CS3KP7B3EBPEJI9VVVO8VSVLZ79B3YX559EC0TF4ANCB9V5DGR0SEX7UX78D9BUIFAZKFWP0UCBOMROPT9AEBMPC0NTM9O6ZGC540D5RF5DR3XVXDC063N6I3EV5MT2O6KYPHO' where id=41; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='46MKAPEF3NX2QVY44GJC9D7V2Z24DL6B32XK5XG6WI46CB59G13U8CVKBLGF2Z3JI3DTIL4ZCV1QUM8KZJ7HFINJAR69U9XAZLBQK3T0N3D07F0VUBHGXTDSLEM531CDBACDYN51GQ0C0NNALOLSUY5TVEC9YUFB7N17GIHLL1OQIT69VY2BPTP4ZL4RLGJFM6BCNIDZGM2AQ47OKRAA3HUH1H57QBQYDLX3DXXUI4GXIE05822GCIKGGLVH0I5CD' where id=41; -update noar ti set v1='46MKAPEF3NX2QVY44GJC9D7V2Z24DL6B32XK5XG6WI46CB59G13U8CVKBLGF2Z3JI3DTIL4ZCV1QUM8KZJ7HFINJAR69U9XAZLBQK3T0N3D07F0VUBHGXTDSLEM531CDBACDYN51GQ0C0NNALOLSUY5TVEC9YUFB7N17GIHLL1OQIT69VY2BPTP4ZL4RLGJFM6BCNIDZGM2AQ47OKRAA3HUH1H57QBQYDLX3DXXUI4GXIE05822GCIKGGLVH0I5CD' where id=41; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='KJQPN7FELWSAGIMTUZSS5G1Y4S6RZRDM117CQMC2VTXX7WP1WNPHRFTJORJ0ZAV0VKVKRMKXSPL60LTU9BMKXF50XELPVUYYGWHPH5KXIKTJBT1ZUQ5MK4QMKR1I22S8FJHYK29E2UQXK8J50D3JSIWFHGMBENW4KWWZH0RT8F3CGKGNL6F7NHJUV2JX2FXG8AFKRXAO0B5OK9ZEW95LGDJK52OQLW1DZIIIFXXO54JAGOFO350CLZWR9HDEIFKIH' where id=41; -update noar ti set v2='KJQPN7FELWSAGIMTUZSS5G1Y4S6RZRDM117CQMC2VTXX7WP1WNPHRFTJORJ0ZAV0VKVKRMKXSPL60LTU9BMKXF50XELPVUYYGWHPH5KXIKTJBT1ZUQ5MK4QMKR1I22S8FJHYK29E2UQXK8J50D3JSIWFHGMBENW4KWWZH0RT8F3CGKGNL6F7NHJUV2JX2FXG8AFKRXAO0B5OK9ZEW95LGDJK52OQLW1DZIIIFXXO54JAGOFO350CLZWR9HDEIFKIH' where id=41; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='YY06IPGGO2185RI97507ZEU5GJDLL1B1RRXQBPR84A9FZJAS0HIXW5UV3WSD5H274H16JYTIKDKHZ972RWEW1EL0CISWMTJBJ5O4DM649JN3GX1TJGHFOUTBKDGBR2J2RIUG2O8YEVT0Z82QSY0CPC4FRA1S4SVZKXOBS45MUV90MTHVOSU0DSW2EAI4NNFOC2CDKDBNIQGUK887SF6H19XXRV6CQCBGZ4YUWJ49W4HD4IXAHD8Q6PNU0CKO168NV' where id=41; -update noar ti set v3='YY06IPGGO2185RI97507ZEU5GJDLL1B1RRXQBPR84A9FZJAS0HIXW5UV3WSD5H274H16JYTIKDKHZ972RWEW1EL0CISWMTJBJ5O4DM649JN3GX1TJGHFOUTBKDGBR2J2RIUG2O8YEVT0Z82QSY0CPC4FRA1S4SVZKXOBS45MUV90MTHVOSU0DSW2EAI4NNFOC2CDKDBNIQGUK887SF6H19XXRV6CQCBGZ4YUWJ49W4HD4IXAHD8Q6PNU0CKO168NV' where id=41; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='OE23U00BRJNAN1Q6CLG6UX86B4B7F04DNNZ7488OALTICLR3RQL5EKLTQKRH1648N96KZ4JA5GDA19ZL7W0RHH2VN6ND6ZG9Y7OW2JFN3G03JSYEPX9F8ACQ8OPSW64X2GMXA45MXK5L5C84LJH5NGCDD0Z60GN0J48KE72U2QZ78NERFSU6E1KDRNKOFFU6ZXEO5D3708Z28A3A4S7Y6Z6OIQTQ947OZ5E9CDK7ZG73FME1IDK56HWWHE57UMH48' where id=42; -update noar ti set v0='OE23U00BRJNAN1Q6CLG6UX86B4B7F04DNNZ7488OALTICLR3RQL5EKLTQKRH1648N96KZ4JA5GDA19ZL7W0RHH2VN6ND6ZG9Y7OW2JFN3G03JSYEPX9F8ACQ8OPSW64X2GMXA45MXK5L5C84LJH5NGCDD0Z60GN0J48KE72U2QZ78NERFSU6E1KDRNKOFFU6ZXEO5D3708Z28A3A4S7Y6Z6OIQTQ947OZ5E9CDK7ZG73FME1IDK56HWWHE57UMH48' where id=42; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='3F403KPRKN4YWEWE7WSN3MMD5TIRZXP9H7T1P9ZGIYSR8O8QAS65NJKB07TMD875F3NN7RJNDX7FCWNFFEYZ1IIL7B1IAKC21SF1K4K89YMQB0OD0FWQRSPMLGZ8PNXZ0TV2FUKOWHZ48CLP17MCPLLQU1BBOWL43DOHDGXEV7PRA3MA7N80C2MRH9SXXD5YL4WW1C0VPJ6G2UI8K6U82WV1WCZFC50JENMFSXADNVENE71JFDPDIS6VPIQ361NWQ' where id=42; -update noar ti set v1='3F403KPRKN4YWEWE7WSN3MMD5TIRZXP9H7T1P9ZGIYSR8O8QAS65NJKB07TMD875F3NN7RJNDX7FCWNFFEYZ1IIL7B1IAKC21SF1K4K89YMQB0OD0FWQRSPMLGZ8PNXZ0TV2FUKOWHZ48CLP17MCPLLQU1BBOWL43DOHDGXEV7PRA3MA7N80C2MRH9SXXD5YL4WW1C0VPJ6G2UI8K6U82WV1WCZFC50JENMFSXADNVENE71JFDPDIS6VPIQ361NWQ' where id=42; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='A689HC5A2R0QKAS16GKGAHET6NM05JUJ6AXYM71HNYC3IXDW9E476XWMCHBQCQPOM4S44JQTWSZ23D65RIMQ4CZA6TJS5AUSVB3MXQNKVML5J5P4UG2TTPPS128LJACSHZX75SG3ZT8WWJ0RSCKOAL5IOB2B5EFDBAL67PM7YGCGXDHNSMS2WQDDWZTVXENSM6EFOZ0O8756JFBW03XHK5BJ721K4YIXI780QI6C9UHPQL9WKPDM0G6CCYVZE89MK' where id=42; -update noar ti set v2='A689HC5A2R0QKAS16GKGAHET6NM05JUJ6AXYM71HNYC3IXDW9E476XWMCHBQCQPOM4S44JQTWSZ23D65RIMQ4CZA6TJS5AUSVB3MXQNKVML5J5P4UG2TTPPS128LJACSHZX75SG3ZT8WWJ0RSCKOAL5IOB2B5EFDBAL67PM7YGCGXDHNSMS2WQDDWZTVXENSM6EFOZ0O8756JFBW03XHK5BJ721K4YIXI780QI6C9UHPQL9WKPDM0G6CCYVZE89MK' where id=42; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='05RIS5NFQ3ZVDKNECQPV7E7XQ13JPG3WGB40B4WOJ9QERREJ6O8KBBO9BLGZ2GLJJIJCCZOC3QSLH8S6UCU63KZGRTAVV9163IM8XJIB3W5ZNYG299G4OT3OBZOCB7IESUT9HMMLNJYKTIYKZAC106YRV8NSJKIGZ43CEA1YCGJKJ08UHL1JY0XE4CKWQ0BCBXAL2YI8D8WFFYU1IDN2KS9TTGX6CNIBXO653PPC6PXEOF7D5SHS8HTQKLZ1R1K62' where id=42; -update noar ti set v3='05RIS5NFQ3ZVDKNECQPV7E7XQ13JPG3WGB40B4WOJ9QERREJ6O8KBBO9BLGZ2GLJJIJCCZOC3QSLH8S6UCU63KZGRTAVV9163IM8XJIB3W5ZNYG299G4OT3OBZOCB7IESUT9HMMLNJYKTIYKZAC106YRV8NSJKIGZ43CEA1YCGJKJ08UHL1JY0XE4CKWQ0BCBXAL2YI8D8WFFYU1IDN2KS9TTGX6CNIBXO653PPC6PXEOF7D5SHS8HTQKLZ1R1K62' where id=42; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='D1G815F5O4FQG47FUSLT4QB2AFWFCAOF011LO7O0AQ0OF18N8Q8RK5IPTDDNJR3ALHVG1W40ZUA84QTHV71720GRBT6SZG6UAL5A80NIS3IM168Y5GEWDJZ2JZ7CZQHNRUUULBTYKZLKE5ZZRQ6GZYJX0VTM47MKHRPJXM4WZRZXMO4CRURT8BL0J7XYFO3CYN0LE61FVKPAAB8D8I9WLNFT5R0J9R3KKH8LKYWLREW59TY9GE3HPKYBOCGLQI6Q6' where id=43; -update noar ti set v0='D1G815F5O4FQG47FUSLT4QB2AFWFCAOF011LO7O0AQ0OF18N8Q8RK5IPTDDNJR3ALHVG1W40ZUA84QTHV71720GRBT6SZG6UAL5A80NIS3IM168Y5GEWDJZ2JZ7CZQHNRUUULBTYKZLKE5ZZRQ6GZYJX0VTM47MKHRPJXM4WZRZXMO4CRURT8BL0J7XYFO3CYN0LE61FVKPAAB8D8I9WLNFT5R0J9R3KKH8LKYWLREW59TY9GE3HPKYBOCGLQI6Q6' where id=43; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='45JZXZBA53MFMOXQG7UQH6X71TNWY03M2X742VSXT7TFM40B7KYBSNZMWDU6QFHJ5LUEQTOLK3M8KJYSWMIJ8CSYY2R9V1MMJK8L6C997D9PYNWIAUQ7C33BLNKY36BFZ66LC0DJLZXCLQ44N8ANZ2XPPJQUD8N782IIW94Q5U5TIA38T31Q1HUBS6D8QNT2XWQPFD1KQZH8EDSAGECSRJI9ZSCSU4M9X62OT1ECPJGXU5V03SWXH98SF8MGTPWKM' where id=43; -update noar ti set v1='45JZXZBA53MFMOXQG7UQH6X71TNWY03M2X742VSXT7TFM40B7KYBSNZMWDU6QFHJ5LUEQTOLK3M8KJYSWMIJ8CSYY2R9V1MMJK8L6C997D9PYNWIAUQ7C33BLNKY36BFZ66LC0DJLZXCLQ44N8ANZ2XPPJQUD8N782IIW94Q5U5TIA38T31Q1HUBS6D8QNT2XWQPFD1KQZH8EDSAGECSRJI9ZSCSU4M9X62OT1ECPJGXU5V03SWXH98SF8MGTPWKM' where id=43; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='3F00ROGF7G6ZJR61D63E6SSO7DK9NR44CFLCC4CAZVX13XAEUAMMSDK8L5MBJPRG2JR7HCUWT4JATW4MWVRSH0XLDQVRCWVRBDOWVT8VSVDA3BEQU1SZEZXGZW6T5J7TLCUIQ4S4J92PJRG6HV2UULVIU40XV29L1CB9TPW7G1Y8EZEFVOAWQ13TGCVWIXL8N2WBPE32KIOUV5MX7SAFBC1Q0K43US8WK1NAUABBCT41JD525UWGC6M4QQ7JHM9SB' where id=43; -update noar ti set v2='3F00ROGF7G6ZJR61D63E6SSO7DK9NR44CFLCC4CAZVX13XAEUAMMSDK8L5MBJPRG2JR7HCUWT4JATW4MWVRSH0XLDQVRCWVRBDOWVT8VSVDA3BEQU1SZEZXGZW6T5J7TLCUIQ4S4J92PJRG6HV2UULVIU40XV29L1CB9TPW7G1Y8EZEFVOAWQ13TGCVWIXL8N2WBPE32KIOUV5MX7SAFBC1Q0K43US8WK1NAUABBCT41JD525UWGC6M4QQ7JHM9SB' where id=43; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='NBXHDWG2L8H1845MJSD52ZPK7W89T2GPYHWIT2PR9X3BC69632RG0KHE3W6FHD51KNG58Q944SI99SGSZXKM3SBHPAWRI57NTWM0V5F5RMM97B6WJ07MK0D1J67O2HY1ZBWBSQ4YEUFIEPFE0YNYKHH8GRJELYW9G1WJFEX4TAIEK7NXMHJSAP2I48ND2XXZI2EO88623WFBPV87GVNCH9CFUIWCGJ1242PPSOZXGTMNOMPQVXULNKVBFPWDUC4U6' where id=43; -update noar ti set v3='NBXHDWG2L8H1845MJSD52ZPK7W89T2GPYHWIT2PR9X3BC69632RG0KHE3W6FHD51KNG58Q944SI99SGSZXKM3SBHPAWRI57NTWM0V5F5RMM97B6WJ07MK0D1J67O2HY1ZBWBSQ4YEUFIEPFE0YNYKHH8GRJELYW9G1WJFEX4TAIEK7NXMHJSAP2I48ND2XXZI2EO88623WFBPV87GVNCH9CFUIWCGJ1242PPSOZXGTMNOMPQVXULNKVBFPWDUC4U6' where id=43; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='ZASF426FE5FMJKZ7MC4WJJL0BQU9OYY1TRLJK39WCVAVY9B0Q5N4XUVO9XSEQDN9L9HIWSZU51R1WBMHPXRJXNS98660R84NC4J6PRWFBPTQSA28A35SY4A4G8S0JGSOOTBR1781MNE0VMLI1FDGY5MRTW1MFB7ECPQJ4GU36W2WCTE9EXCQDR5WUKSPZYVGCB425GK8Y66UPNNCG32F2FTNZ57OQDIUOXOR9PS8SK5AXU83SCELLRDDRHRCMHLQS' where id=44; -update noar ti set v0='ZASF426FE5FMJKZ7MC4WJJL0BQU9OYY1TRLJK39WCVAVY9B0Q5N4XUVO9XSEQDN9L9HIWSZU51R1WBMHPXRJXNS98660R84NC4J6PRWFBPTQSA28A35SY4A4G8S0JGSOOTBR1781MNE0VMLI1FDGY5MRTW1MFB7ECPQJ4GU36W2WCTE9EXCQDR5WUKSPZYVGCB425GK8Y66UPNNCG32F2FTNZ57OQDIUOXOR9PS8SK5AXU83SCELLRDDRHRCMHLQS' where id=44; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='6FQVOHCK6SESFKS10D3XLCGCMU73G2P4LALWX9FVXORPD43B67ST9AK1KD3PSHF3D9UQCROLCCDHGT0VX2T1CK3MUNI7DI0Y9K42UBKWI8OHQERT0JHFZ3BHGHL7D7OTOQDWD3WMKR26WNG4O5R7GP38LH7GDBMETCZQ9L5Q2O00UHCBL3Y9PIKXL32Y268F8K28NHCPWS189UDLZ1S58A1GNUOM5IWZTHXEQ3HK5W6S2YYUXRC9KEVQESVK4ASDL' where id=44; -update noar ti set v1='6FQVOHCK6SESFKS10D3XLCGCMU73G2P4LALWX9FVXORPD43B67ST9AK1KD3PSHF3D9UQCROLCCDHGT0VX2T1CK3MUNI7DI0Y9K42UBKWI8OHQERT0JHFZ3BHGHL7D7OTOQDWD3WMKR26WNG4O5R7GP38LH7GDBMETCZQ9L5Q2O00UHCBL3Y9PIKXL32Y268F8K28NHCPWS189UDLZ1S58A1GNUOM5IWZTHXEQ3HK5W6S2YYUXRC9KEVQESVK4ASDL' where id=44; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='7UG64XDR4FS4DZG9QTWHWURK1GD2LPCHG8E0VBWE1SWTHVRVD934Y5IKDF5USIMNYG822IT0KMAZ223823C7JURMEZPY5JJY0P5LY7QM7I3MCPWF1OLGPW2PJT1PZYXG71EEWMTM1U8G4FFQZUH8KXHHAMVGSPXR55QLFJ94WUNDGBI0IVBXZX7VODOLERLF0L9KW4RTTQGQF2MSIVUM0JT8LF57NFELCYA1PFNR3QSP471X3OKBGNZ5YH94ZGHWC' where id=44; -update noar ti set v2='7UG64XDR4FS4DZG9QTWHWURK1GD2LPCHG8E0VBWE1SWTHVRVD934Y5IKDF5USIMNYG822IT0KMAZ223823C7JURMEZPY5JJY0P5LY7QM7I3MCPWF1OLGPW2PJT1PZYXG71EEWMTM1U8G4FFQZUH8KXHHAMVGSPXR55QLFJ94WUNDGBI0IVBXZX7VODOLERLF0L9KW4RTTQGQF2MSIVUM0JT8LF57NFELCYA1PFNR3QSP471X3OKBGNZ5YH94ZGHWC' where id=44; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='AWIJB0TG8E28Q6Z994V6W4JL467CY5IMIT0RPUU2WO84S0FL7PM1BCFLAWBXGYQOS28Y6QF2Z0AX6HY4LDZG2GCRD3EBO9SZJ701UR65EBMPGOKSAU0VLRQX6FC248O7F4WVEYQBEL1V1U689SFLNA6JTV5H0KIHT65I2U1LDMPRQEL7HLED0HV68QIXFPJ1VVDOTZGG7PHGA269MMB4MEWQPQH5ERFYZQXS4RNE8PB5LJI950ODXK8S96VS3T8YS' where id=44; -update noar ti set v3='AWIJB0TG8E28Q6Z994V6W4JL467CY5IMIT0RPUU2WO84S0FL7PM1BCFLAWBXGYQOS28Y6QF2Z0AX6HY4LDZG2GCRD3EBO9SZJ701UR65EBMPGOKSAU0VLRQX6FC248O7F4WVEYQBEL1V1U689SFLNA6JTV5H0KIHT65I2U1LDMPRQEL7HLED0HV68QIXFPJ1VVDOTZGG7PHGA269MMB4MEWQPQH5ERFYZQXS4RNE8PB5LJI950ODXK8S96VS3T8YS' where id=44; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='JG9YIO87UTZM2RAH3O5SUU7VDOYWYC2O4WTN9WIEGY9OZ16ZIK3X0QKRBS0M7AFOHZUA7F3JHFKWMUDI9UM6LB8TXCROHPUYJ7Z9GC9Y27X5XA85SJOJK1MRWM15PE6WAU68XYHPRO3VD3F6LDNN20BIFC4D2XNDKA4CMS1VOZG4GQVLWG61K3E5RXPYHL2TWQ9UKX3H5DHEESURLUHOCJLC2PWVGI1UE7LVP6U2BTS0PCCPQBPV214ILUA7MLWFD' where id=45; -update noar ti set v0='JG9YIO87UTZM2RAH3O5SUU7VDOYWYC2O4WTN9WIEGY9OZ16ZIK3X0QKRBS0M7AFOHZUA7F3JHFKWMUDI9UM6LB8TXCROHPUYJ7Z9GC9Y27X5XA85SJOJK1MRWM15PE6WAU68XYHPRO3VD3F6LDNN20BIFC4D2XNDKA4CMS1VOZG4GQVLWG61K3E5RXPYHL2TWQ9UKX3H5DHEESURLUHOCJLC2PWVGI1UE7LVP6U2BTS0PCCPQBPV214ILUA7MLWFD' where id=45; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='HERPPL6A3AUITLQHMY061HWO2IK8GF3L5NORWYH2CC8PQA4C2IPLKSDGSIKY22P3FVV27VA3O2BYZYCIRX4EOM3CVV2BKZDWWOPKREEBBI12K9IC5DR7ZJADKCRG5CC7KQZPWSBZYTW9MJNLOEQ3EFX5YDRXBV5U2WQCKH2KM580HD5LX3G61DRXHTELYTD1J412BZSZZRTL8L63E0Y2AO4P9D0H7Q2X08LQFYIJ9MO5X1SKINILUD7N2TAS3Q14C' where id=45; -update noar ti set v1='HERPPL6A3AUITLQHMY061HWO2IK8GF3L5NORWYH2CC8PQA4C2IPLKSDGSIKY22P3FVV27VA3O2BYZYCIRX4EOM3CVV2BKZDWWOPKREEBBI12K9IC5DR7ZJADKCRG5CC7KQZPWSBZYTW9MJNLOEQ3EFX5YDRXBV5U2WQCKH2KM580HD5LX3G61DRXHTELYTD1J412BZSZZRTL8L63E0Y2AO4P9D0H7Q2X08LQFYIJ9MO5X1SKINILUD7N2TAS3Q14C' where id=45; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='YR5ZMT5CCHI8OIPLX8T01WGBIXXYBVJ8M92NYYQ2NNLM9GW27Z22FRN8Y3DDHE53QSSUGIH6NPSZXCAXVSLHA99VIA61Z15AEXE5CD0RJBJZ64WQE9BTZW8XIG89WYT5U7MONIE46KFH1WV8KZP4HQXYRTSOM39ZI25FMIC409J698GSHVYA22U663VZC77V4KJFB95K7GITFKF82RL5QHZNC2OO5ELLF6OUO3EZNHECA8IV3X71IZBRMUICPQWI9' where id=45; -update noar ti set v2='YR5ZMT5CCHI8OIPLX8T01WGBIXXYBVJ8M92NYYQ2NNLM9GW27Z22FRN8Y3DDHE53QSSUGIH6NPSZXCAXVSLHA99VIA61Z15AEXE5CD0RJBJZ64WQE9BTZW8XIG89WYT5U7MONIE46KFH1WV8KZP4HQXYRTSOM39ZI25FMIC409J698GSHVYA22U663VZC77V4KJFB95K7GITFKF82RL5QHZNC2OO5ELLF6OUO3EZNHECA8IV3X71IZBRMUICPQWI9' where id=45; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='3LXRDHCHL5PEQYT7TDNK1HX2OBGN4N23MQI20QQ4RDDGS4Z6QZVGKJYU7YOD1Z5A0WOMHFMTO1WI6XETQCC4BMSGAJEYNC257PWL7285KOSTX4FQWDTGP9OUI7EEFSTTC9SJAC46FUNOCG3T7QVVDXLEZYGVYPUBSVQSB26DR5TC19TM36XBZ74GVUDX65HWDKMHO1JP7EIGE1FE3TU941FKRACIG66D4BH77A4DPJN5VBEW80K5623WNVZVJD5KJ' where id=45; -update noar ti set v3='3LXRDHCHL5PEQYT7TDNK1HX2OBGN4N23MQI20QQ4RDDGS4Z6QZVGKJYU7YOD1Z5A0WOMHFMTO1WI6XETQCC4BMSGAJEYNC257PWL7285KOSTX4FQWDTGP9OUI7EEFSTTC9SJAC46FUNOCG3T7QVVDXLEZYGVYPUBSVQSB26DR5TC19TM36XBZ74GVUDX65HWDKMHO1JP7EIGE1FE3TU941FKRACIG66D4BH77A4DPJN5VBEW80K5623WNVZVJD5KJ' where id=45; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='9ENTSCYFZO62M5ULORB17RJQLU5V81JGLS82QTRPSZ7H0K1MV0LYI1W96DQ8P3CA2PAIXOVZLZWBH6GDNBOTT82UC4W5SQR0V76LN0H0H84TIRSPN49V1JESHVFCAQPVIAWN1UQ70JZJ8W645XXHF6QQA57VKOIJSVWSKJHRASHE3CIOXD8FW15SKMQ5JU925WT1ID84BTJGU0FIK46G0XFJD6YQIQFYMT5P1EWMUNY6ABY3EHLQEMUW23VB5BUHV' where id=46; -update noar ti set v0='9ENTSCYFZO62M5ULORB17RJQLU5V81JGLS82QTRPSZ7H0K1MV0LYI1W96DQ8P3CA2PAIXOVZLZWBH6GDNBOTT82UC4W5SQR0V76LN0H0H84TIRSPN49V1JESHVFCAQPVIAWN1UQ70JZJ8W645XXHF6QQA57VKOIJSVWSKJHRASHE3CIOXD8FW15SKMQ5JU925WT1ID84BTJGU0FIK46G0XFJD6YQIQFYMT5P1EWMUNY6ABY3EHLQEMUW23VB5BUHV' where id=46; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='DPPW2OFFL7947HVD0B21ZDIFTK7OMK5TJRZWAOXYLNFLT7E99Z5AEYH66MMJEEPVN71EOW7QFPRR0U8L6GQVELC80LY78EJRIL2LCHSX6JDKN3IWJXNPSV88JWBZNNAHHSK75KFL1BZ0DTO26C0IB2ME3K656QJYIBXNEUDPLFEM1N36K310CIQXEJJS15ACJCQJ7S9FR1A8U5VH5IPMUTJENU2CGXEQ7HTY1AD6VPTY4DH4UA1OM93TLZS2R5Y9R' where id=46; -update noar ti set v1='DPPW2OFFL7947HVD0B21ZDIFTK7OMK5TJRZWAOXYLNFLT7E99Z5AEYH66MMJEEPVN71EOW7QFPRR0U8L6GQVELC80LY78EJRIL2LCHSX6JDKN3IWJXNPSV88JWBZNNAHHSK75KFL1BZ0DTO26C0IB2ME3K656QJYIBXNEUDPLFEM1N36K310CIQXEJJS15ACJCQJ7S9FR1A8U5VH5IPMUTJENU2CGXEQ7HTY1AD6VPTY4DH4UA1OM93TLZS2R5Y9R' where id=46; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='UJZNBG6GAPE11AUNX0HMYZC5XYDQ2F8QIPNYUSK1K0BPMT9PT3KXJN71M588CZD6N9829W5OY6ZUBO2NNHN548NE9A99M6TUUO0B157DYAP67XK600355KKALHMKBQLZ3XI39T7YC8JW2OMMBMC3SLH49VLJGDAOOVDCBTY3KKV0OW8EUF1JK27Z19EA8P97P15TEV4KRP1J974FJD4M2QWGUTKL52UT6XX7WRAG1NNSSAFUQNP7JPVUWENDHTN57' where id=46; -update noar ti set v2='UJZNBG6GAPE11AUNX0HMYZC5XYDQ2F8QIPNYUSK1K0BPMT9PT3KXJN71M588CZD6N9829W5OY6ZUBO2NNHN548NE9A99M6TUUO0B157DYAP67XK600355KKALHMKBQLZ3XI39T7YC8JW2OMMBMC3SLH49VLJGDAOOVDCBTY3KKV0OW8EUF1JK27Z19EA8P97P15TEV4KRP1J974FJD4M2QWGUTKL52UT6XX7WRAG1NNSSAFUQNP7JPVUWENDHTN57' where id=46; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='UZQLK670RHRNSORMDVM9Y3CBR0YHPEVIZY84XL9OWXBWL2XSPWR163ICFEU0T9F56O873P2ZS8NACN28CU00T93I3F9SIAYZ66IPWIAUB0R8DG1L0PTQCMW3CZP7P7LE3VKQPWWTWETSMM3HCG21466YF76TKL8DZS5HKRXLWSNU7M8QGX2PHLXDSFY938WK8LSE141P2RAVNWIYY75VVBMIVSELXZMVO8JSVKOKO5O8TEMMS6OY4ZQ7742RXU9MG' where id=46; -update noar ti set v3='UZQLK670RHRNSORMDVM9Y3CBR0YHPEVIZY84XL9OWXBWL2XSPWR163ICFEU0T9F56O873P2ZS8NACN28CU00T93I3F9SIAYZ66IPWIAUB0R8DG1L0PTQCMW3CZP7P7LE3VKQPWWTWETSMM3HCG21466YF76TKL8DZS5HKRXLWSNU7M8QGX2PHLXDSFY938WK8LSE141P2RAVNWIYY75VVBMIVSELXZMVO8JSVKOKO5O8TEMMS6OY4ZQ7742RXU9MG' where id=46; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='QYCOIHOOB8T4ZSR7SSU8GV1M4WJPO16XHINOJ31CQJTOJFTHO3QWZZK1UXZJMECUPOJOM151CQB9EZSA054E7WT5M48EJH9LQ7CV5G6VU9ZOUHQ9Q97HOIR0WMG8CHMMQYHZY3Z3ENKB3VJPB6O54A8RYY8UHLD439HK2FFUJ11QIXXATAKLQ3VZ692PVK5BM39VTBYQ9T6WLG8VNC4WPUBCMZZ2HUWLMEABGDRO74MWM7B1IZQZUTKI2H2R3SG2V' where id=47; -update noar ti set v0='QYCOIHOOB8T4ZSR7SSU8GV1M4WJPO16XHINOJ31CQJTOJFTHO3QWZZK1UXZJMECUPOJOM151CQB9EZSA054E7WT5M48EJH9LQ7CV5G6VU9ZOUHQ9Q97HOIR0WMG8CHMMQYHZY3Z3ENKB3VJPB6O54A8RYY8UHLD439HK2FFUJ11QIXXATAKLQ3VZ692PVK5BM39VTBYQ9T6WLG8VNC4WPUBCMZZ2HUWLMEABGDRO74MWM7B1IZQZUTKI2H2R3SG2V' where id=47; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='M9Z0XNVK6R9G0N4AS7IDBVII5JFYPM48ZGBQCMB7V4T2JVZBVE67HJNI04GK9L426B0VO8DKI33DH2DV80HY7BW5RZS06JI3CNA5RRCVKFVKO85JOMQ43L3F2T3ZPC81HXWZBYNNJAZXTBKDI7U3LIKPVMR8F0DJN5XLGW0B37AU79KROR1THW1MRFIMX1Q51N6N05WJMHRYO2P5UW48511HOIKBNO1W25OT02CWYTR32T82ETHEZL2BNE8L3JISO' where id=47; -update noar ti set v1='M9Z0XNVK6R9G0N4AS7IDBVII5JFYPM48ZGBQCMB7V4T2JVZBVE67HJNI04GK9L426B0VO8DKI33DH2DV80HY7BW5RZS06JI3CNA5RRCVKFVKO85JOMQ43L3F2T3ZPC81HXWZBYNNJAZXTBKDI7U3LIKPVMR8F0DJN5XLGW0B37AU79KROR1THW1MRFIMX1Q51N6N05WJMHRYO2P5UW48511HOIKBNO1W25OT02CWYTR32T82ETHEZL2BNE8L3JISO' where id=47; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='G9EILFGX9P8FSREERZ6D61KGH4GWIZL8LNN9PTXITNY9R800SYWBJ01KZMUXRSZVJ71XNLLTP8FSK78X4VE9S7L5OM1YAQVMBNYHRLZVLF9R8OK1PV946K7E1SG6G47IZL9A3Q59DHEQFFNJ5LKLXE0Y0L4FO4CH5Y2MWPJGVMS51X6AL21S3SBMDPI9PTE4QCNY7NSKT3RJE91NULTRAED38I9J372RQ0WBN2UPCC7P0ILLBX5A33VJUS21YW8DS' where id=47; -update noar ti set v2='G9EILFGX9P8FSREERZ6D61KGH4GWIZL8LNN9PTXITNY9R800SYWBJ01KZMUXRSZVJ71XNLLTP8FSK78X4VE9S7L5OM1YAQVMBNYHRLZVLF9R8OK1PV946K7E1SG6G47IZL9A3Q59DHEQFFNJ5LKLXE0Y0L4FO4CH5Y2MWPJGVMS51X6AL21S3SBMDPI9PTE4QCNY7NSKT3RJE91NULTRAED38I9J372RQ0WBN2UPCC7P0ILLBX5A33VJUS21YW8DS' where id=47; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='9QLF7LOZG6PXILNQ8MNQJBLX1Z6KC0M7OO8QFLSWW4J7TPNKS5QPHU2S54ASGC1XOQGA8L1V9043ASI75YY4N92QG4OTG29OVOQ17T0GGT7ZE2ELR913TSC0P9B9AUE200UY979ZURXF5908BCYB9TSTEKCVNZEOHA590K6ZPRQZS7XHC2ANGHDA65NWVZ4A6EU6B2CD71EKNPLC9OL6CC4XNWUPXNNNAFRN9LDFBGK7R7Q7RQCH9RYKJPF424RDQ' where id=47; -update noar ti set v3='9QLF7LOZG6PXILNQ8MNQJBLX1Z6KC0M7OO8QFLSWW4J7TPNKS5QPHU2S54ASGC1XOQGA8L1V9043ASI75YY4N92QG4OTG29OVOQ17T0GGT7ZE2ELR913TSC0P9B9AUE200UY979ZURXF5908BCYB9TSTEKCVNZEOHA590K6ZPRQZS7XHC2ANGHDA65NWVZ4A6EU6B2CD71EKNPLC9OL6CC4XNWUPXNNNAFRN9LDFBGK7R7Q7RQCH9RYKJPF424RDQ' where id=47; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='84RTZR1O70NRAEV1G7078FW2C01W0N7M7DLJVQS2AN3IN45CBOQHXTE15LVS1O23R2HUBXAF73KW2FCQWAOJ18D33097V2VUI45FE3UM5DNKUPSGAB8X45DXZNKTL00TXM7R9IWEE5ID3DTVYTD6PX3IO7YEMUF5CKXUJS3KZ9FAH9ZPYTZV816ZTQHZKITOKK6SCWP62YOE10ZAAY78KVBE8Y9MVW0I3HU94KII7FPCBDM8K6Y1S4SASYW9SK9N0' where id=48; -update noar ti set v0='84RTZR1O70NRAEV1G7078FW2C01W0N7M7DLJVQS2AN3IN45CBOQHXTE15LVS1O23R2HUBXAF73KW2FCQWAOJ18D33097V2VUI45FE3UM5DNKUPSGAB8X45DXZNKTL00TXM7R9IWEE5ID3DTVYTD6PX3IO7YEMUF5CKXUJS3KZ9FAH9ZPYTZV816ZTQHZKITOKK6SCWP62YOE10ZAAY78KVBE8Y9MVW0I3HU94KII7FPCBDM8K6Y1S4SASYW9SK9N0' where id=48; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='93PI3V8FY5GI1RUR6FVC8LPAR3QVI2GG3QVZECL2ES7TXUVFBMV4PGJC4CX6JTZ8L4TBAW7DCNKE6UZR2JFD4KKNMIOEARK33YQ4FEFN3A21I38VEUUBLN3921NA1K0SFR9MZ7EUPFJNL3AGW4YS8LOCVNQ6ZTK2JZF2EZJLH5F2IP3HUBUT1KSI92E4AXG264F2B92HWNTXZRXOXKIFNMP8W4OL1UM90RE2NZJIHBV5FFKNPW2XTBAPLQN0WWWER' where id=48; -update noar ti set v1='93PI3V8FY5GI1RUR6FVC8LPAR3QVI2GG3QVZECL2ES7TXUVFBMV4PGJC4CX6JTZ8L4TBAW7DCNKE6UZR2JFD4KKNMIOEARK33YQ4FEFN3A21I38VEUUBLN3921NA1K0SFR9MZ7EUPFJNL3AGW4YS8LOCVNQ6ZTK2JZF2EZJLH5F2IP3HUBUT1KSI92E4AXG264F2B92HWNTXZRXOXKIFNMP8W4OL1UM90RE2NZJIHBV5FFKNPW2XTBAPLQN0WWWER' where id=48; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='5E48DYWE6BYJ26ZL0Z8MK84LKOGEY4PEM09FE5PCZ42969EO8D0HR2QP09OM23K4L1VGM8HIISRTDMALQNJDOMHYT9XN8KVVS327TSRTVS1AR708UJ7ICBWNCJURVP37SGZ0HX3WB1MDHL4EYQC8VWL53DF41LZ8XWJ0WIY8GCH12IEFAT4ZCQZPC8SSVLZXXCXDCPQAGRRSJ63PIPY6304W0EL00TXK2YQL8RE4CSP311D9D49H4HLTUUHZ1QK6J' where id=48; -update noar ti set v2='5E48DYWE6BYJ26ZL0Z8MK84LKOGEY4PEM09FE5PCZ42969EO8D0HR2QP09OM23K4L1VGM8HIISRTDMALQNJDOMHYT9XN8KVVS327TSRTVS1AR708UJ7ICBWNCJURVP37SGZ0HX3WB1MDHL4EYQC8VWL53DF41LZ8XWJ0WIY8GCH12IEFAT4ZCQZPC8SSVLZXXCXDCPQAGRRSJ63PIPY6304W0EL00TXK2YQL8RE4CSP311D9D49H4HLTUUHZ1QK6J' where id=48; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='6NVOZATTNOLBLORLPL1YGYFZLS8JGKT8A1WWGBH1GQR75ZNC3W4NPWI6QUIKAZMZCTNITRYH6WTUWCUWBENLUZSH0VXKBXTWALS2Q3YHBTZ1S339UH1C037O88RTY8KQ2F9WZG81EYVPFVWNUQO9W94N1RQ6XUATU21WDW7KGYOVRG8AFGXBPOO08VEUX0AM6SCMRJR6VQRXYV45X9WID0DH2ML48YGUQL948ZLJHTK03CKDDD6NR8UCQTTL04BYD' where id=48; -update noar ti set v3='6NVOZATTNOLBLORLPL1YGYFZLS8JGKT8A1WWGBH1GQR75ZNC3W4NPWI6QUIKAZMZCTNITRYH6WTUWCUWBENLUZSH0VXKBXTWALS2Q3YHBTZ1S339UH1C037O88RTY8KQ2F9WZG81EYVPFVWNUQO9W94N1RQ6XUATU21WDW7KGYOVRG8AFGXBPOO08VEUX0AM6SCMRJR6VQRXYV45X9WID0DH2ML48YGUQL948ZLJHTK03CKDDD6NR8UCQTTL04BYD' where id=48; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='JB20IGZK9ISIU6AY2JYJSMICCOW1IUA0AMW01YJWOV0RXURO5FUKF3C9O9TFYGBQAFUG15LS9ZZ9S505XFFJ2QTA015YJGLVSC4Q1266TD5TZGX3LE1TED8PNMT95HJ4A6R2AFBHH0Y9TG9W7H94YY10JWR2EF2H32BLQC5KO0K97HW3GUTYCK25U8G1KHYNJ74Q27GYA8YX3FCUVHYTZOPG4A2GVS9FFKPSSN59LXLV5ATS3MDORDUY8WMH9RTRX' where id=49; -update noar ti set v0='JB20IGZK9ISIU6AY2JYJSMICCOW1IUA0AMW01YJWOV0RXURO5FUKF3C9O9TFYGBQAFUG15LS9ZZ9S505XFFJ2QTA015YJGLVSC4Q1266TD5TZGX3LE1TED8PNMT95HJ4A6R2AFBHH0Y9TG9W7H94YY10JWR2EF2H32BLQC5KO0K97HW3GUTYCK25U8G1KHYNJ74Q27GYA8YX3FCUVHYTZOPG4A2GVS9FFKPSSN59LXLV5ATS3MDORDUY8WMH9RTRX' where id=49; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='0KC5CQPTHMTR70TV3473ZRLRJ7ND7LZV8CCGXTFVXLTELX6EESZ2042R8PHA3X5W38SYVU5AMCXSTKU51JO5IXHIGPBJURYM7H7VCMH6IR0HKTSR8QGHSRT3FMDEGYXJY6GEM4O8CFFA8G9879O14FJMAOKKIMUYDZQBFEVGHY42YZ06NN77QU5UVMQY3DZJ75NIFKNE7Y26KCCR3RG78DL55YE1Y25UZT7YMO167E4K163OJE8TW3APHI5USXRAO' where id=49; -update noar ti set v1='0KC5CQPTHMTR70TV3473ZRLRJ7ND7LZV8CCGXTFVXLTELX6EESZ2042R8PHA3X5W38SYVU5AMCXSTKU51JO5IXHIGPBJURYM7H7VCMH6IR0HKTSR8QGHSRT3FMDEGYXJY6GEM4O8CFFA8G9879O14FJMAOKKIMUYDZQBFEVGHY42YZ06NN77QU5UVMQY3DZJ75NIFKNE7Y26KCCR3RG78DL55YE1Y25UZT7YMO167E4K163OJE8TW3APHI5USXRAO' where id=49; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='VCXDXU3HTBDOM7OW62IXT71OP82FS4V9P51VB2OJMWBDXSWNEU1PPSJREM2L1YB8Y61E7N2QNOHZP6N5D09RC1XCFX3OBM76J9263TTF2664EYC5BXO5UTXRG4VUTE5NJOLBYSOYC0R244SOJFI6NW6ZO1VU063QZGHMGS5ZUYL83UXUSO6MVL9P5ZI9PSTIBUACWJPYI2I813A1I3XSXCN7RFN3EMM19R6JN024DTZBOQ9AHEDF1BVAR5FVF7815' where id=49; -update noar ti set v2='VCXDXU3HTBDOM7OW62IXT71OP82FS4V9P51VB2OJMWBDXSWNEU1PPSJREM2L1YB8Y61E7N2QNOHZP6N5D09RC1XCFX3OBM76J9263TTF2664EYC5BXO5UTXRG4VUTE5NJOLBYSOYC0R244SOJFI6NW6ZO1VU063QZGHMGS5ZUYL83UXUSO6MVL9P5ZI9PSTIBUACWJPYI2I813A1I3XSXCN7RFN3EMM19R6JN024DTZBOQ9AHEDF1BVAR5FVF7815' where id=49; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='QGK2AXBO1Y27KQ7QXXEHM4O15OKAD3SM6MSSSNYK6ALEBGL9ZGHNCIQIH27A9MN4ENKLUSX7B7WF1WPNB2B3XG0C79UQC6KVKX6Y3GR676NWC86RCFNKZJ3JXO8353DWEN10AGBEVPKZWHGZSL6CITM6C9QMW5J97MLM3DVCVO9YJL6Q1D4XKK5UE0TDX6AQP4MRDH1SB6A9NQH7K1TC8N2X6J8YYDS09W1HJDSAO88QF96YRXKCNVLLCIRYYDSZI' where id=49; -update noar ti set v3='QGK2AXBO1Y27KQ7QXXEHM4O15OKAD3SM6MSSSNYK6ALEBGL9ZGHNCIQIH27A9MN4ENKLUSX7B7WF1WPNB2B3XG0C79UQC6KVKX6Y3GR676NWC86RCFNKZJ3JXO8353DWEN10AGBEVPKZWHGZSL6CITM6C9QMW5J97MLM3DVCVO9YJL6Q1D4XKK5UE0TDX6AQP4MRDH1SB6A9NQH7K1TC8N2X6J8YYDS09W1HJDSAO88QF96YRXKCNVLLCIRYYDSZI' where id=49; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='JMPHE29OP53BE06JT195SZIHHQXQADDF3W06AJ9IFXLLBKPO3T61KL97WC1QOKAZE4QED165Z8BNZNBJBQ4SOEBLDKKCLTH95822CCNTZTKPRAKK980GQ1YFDQKTULQENRPCBYQXI2XODOQ355RWIISOHPQNE10R2SR48E76PWXK3MNVOMIP8H939CI2A0X5KK702YVAPU4793DN9WNQCHKY4RD0Q3P8IO6NIKNE09R3WRUU6HG6PW6YGPHGEM9UP' where id=50; -update noar ti set v0='JMPHE29OP53BE06JT195SZIHHQXQADDF3W06AJ9IFXLLBKPO3T61KL97WC1QOKAZE4QED165Z8BNZNBJBQ4SOEBLDKKCLTH95822CCNTZTKPRAKK980GQ1YFDQKTULQENRPCBYQXI2XODOQ355RWIISOHPQNE10R2SR48E76PWXK3MNVOMIP8H939CI2A0X5KK702YVAPU4793DN9WNQCHKY4RD0Q3P8IO6NIKNE09R3WRUU6HG6PW6YGPHGEM9UP' where id=50; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='HBF5RQQ74SCEF9U9LEYK1T601NEBP4BP82UJGBPU38658Z1LRC14NXQFHH6AQPMMEZFTLXFUVTXT1F661JT0PWDRFQI4NFEAV3ADYTI63HPJT0BWEAZHYF3NG82XWTC6L5YRC513BSDMQ1BFOIA098HW4S0FV19YSADBIEF6Y0U8IW9SYSRMIBVLWWH229RH58MC0SBQRNWVHC66I12O1F9Q9EX8F54AJGA6CI33WEIGHCRDTYYNQ0P3POWQG718S' where id=50; -update noar ti set v1='HBF5RQQ74SCEF9U9LEYK1T601NEBP4BP82UJGBPU38658Z1LRC14NXQFHH6AQPMMEZFTLXFUVTXT1F661JT0PWDRFQI4NFEAV3ADYTI63HPJT0BWEAZHYF3NG82XWTC6L5YRC513BSDMQ1BFOIA098HW4S0FV19YSADBIEF6Y0U8IW9SYSRMIBVLWWH229RH58MC0SBQRNWVHC66I12O1F9Q9EX8F54AJGA6CI33WEIGHCRDTYYNQ0P3POWQG718S' where id=50; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='C3XRV3VY0FFM9V8VAD0MCB68L7TBMYWLJAFNFOQLVWM6AG9FQ3551MWWARWYXTURKXDRX04YO1XO4345ZP0KMX300K4BYMO8WF4HS734SRG8P5A436C09CO4TWVE6414L9JSC463XXO2X0OY9UA2QT8P4SG1024PZAK8B2V6F23EXRVFRG4KGV091KC5P7SXRWR7BV35BXJ86KAS0JIH8GJQXDLPKEMGBJTMV6N4YOHH5X1RM36IZ1NDC2EEDEKR4' where id=50; -update noar ti set v2='C3XRV3VY0FFM9V8VAD0MCB68L7TBMYWLJAFNFOQLVWM6AG9FQ3551MWWARWYXTURKXDRX04YO1XO4345ZP0KMX300K4BYMO8WF4HS734SRG8P5A436C09CO4TWVE6414L9JSC463XXO2X0OY9UA2QT8P4SG1024PZAK8B2V6F23EXRVFRG4KGV091KC5P7SXRWR7BV35BXJ86KAS0JIH8GJQXDLPKEMGBJTMV6N4YOHH5X1RM36IZ1NDC2EEDEKR4' where id=50; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='IURGHSM1X5GYTBU0BZ3QCRC2ZADQB19O4AIR1S9RHP8QEIJQHDQ62D2SSPFOPNKAEIA8E3A35F5AFY1LODRK1XGLIHHS4SV1RZKAKIBQ7G2WWR1N7WKF8H3PMZFW20OCAE4K7UXUSAKN8W2UF3WI5PYG5X3OUH1BUB1KGLP23NMKSAVZPDH7FLW9CCLT14QMY7Y57V1NZFMUHJ60K8IVIFKXWG3HG1T54BDZ9JTX5DCULPIWCARNXPZEKD856NHQH' where id=50; -update noar ti set v3='IURGHSM1X5GYTBU0BZ3QCRC2ZADQB19O4AIR1S9RHP8QEIJQHDQ62D2SSPFOPNKAEIA8E3A35F5AFY1LODRK1XGLIHHS4SV1RZKAKIBQ7G2WWR1N7WKF8H3PMZFW20OCAE4K7UXUSAKN8W2UF3WI5PYG5X3OUH1BUB1KGLP23NMKSAVZPDH7FLW9CCLT14QMY7Y57V1NZFMUHJ60K8IVIFKXWG3HG1T54BDZ9JTX5DCULPIWCARNXPZEKD856NHQH' where id=50; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='W3ZUVR38BY1IPTB60N0OHV4ECOAK6EH4IINTE7OO93ELLLIKP4RPMFHNPPYQYQ0DEAEXV5XUCBDXER6JT6OM0CM29PYQ1X4VKRPDD7JCFEAS9YCB32FX61XRNVYX5RNRS5M0IF2U1KI7OOFU2J9IMM14X1I7N8WDXL7O9PDJTY67OKUON78GLL6K0YB1MCZ6ES73XPCNS0NV2RM9VT1KT8R9KVI0LPNM231NCFNMBV3Y8DL2Q7HNO3JTLS4HZMI2S' where id=51; -update noar ti set v0='W3ZUVR38BY1IPTB60N0OHV4ECOAK6EH4IINTE7OO93ELLLIKP4RPMFHNPPYQYQ0DEAEXV5XUCBDXER6JT6OM0CM29PYQ1X4VKRPDD7JCFEAS9YCB32FX61XRNVYX5RNRS5M0IF2U1KI7OOFU2J9IMM14X1I7N8WDXL7O9PDJTY67OKUON78GLL6K0YB1MCZ6ES73XPCNS0NV2RM9VT1KT8R9KVI0LPNM231NCFNMBV3Y8DL2Q7HNO3JTLS4HZMI2S' where id=51; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='7Y6ERWR5ADIBXXICMYSPIIKYIE8F6Z7JJX2PN3XWBIE2A8HCCOMTAD154YO9H6GITWA316OVQFJAI7G5TDY45DORVGTOBXU781HL9U0SYJRUX2CXI64P57Q3783KJLQIGXZ0I0QJ11PYNMDBBYAPDT0LJO3FL63883S5OAB2022UDQKTFCHIPRH3T6FKNUCRTU7YUZZ47CO21GIH4RV2ADW303ZN65BZQXW4KBMRAX70OZWDVP6QIFKLKGNZ4U1DV' where id=51; -update noar ti set v1='7Y6ERWR5ADIBXXICMYSPIIKYIE8F6Z7JJX2PN3XWBIE2A8HCCOMTAD154YO9H6GITWA316OVQFJAI7G5TDY45DORVGTOBXU781HL9U0SYJRUX2CXI64P57Q3783KJLQIGXZ0I0QJ11PYNMDBBYAPDT0LJO3FL63883S5OAB2022UDQKTFCHIPRH3T6FKNUCRTU7YUZZ47CO21GIH4RV2ADW303ZN65BZQXW4KBMRAX70OZWDVP6QIFKLKGNZ4U1DV' where id=51; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='GM8A7CBKD49TBH5B4YE5BLDZPGRS1XYCKHKQ6P4MGQTQBA8TI3P1O9O42C7VKFWR5LXLPRW76AYKI1JOW3T7MJKN0D8KY3MUF1F77MTALR8JO28FBXNB83LILDIBGRJ2H4BCIT1KL25SSI52YPFA89VBO3R4QX6GQVHJIHB9VO9VK213FH9WU1KI2N99E17PTHWOHZCUXJUP6B7JG1ZK2EOHN0IORWCKB0GTVQF216U7U9QOG7P3RQX31QMUT0N9A' where id=51; -update noar ti set v2='GM8A7CBKD49TBH5B4YE5BLDZPGRS1XYCKHKQ6P4MGQTQBA8TI3P1O9O42C7VKFWR5LXLPRW76AYKI1JOW3T7MJKN0D8KY3MUF1F77MTALR8JO28FBXNB83LILDIBGRJ2H4BCIT1KL25SSI52YPFA89VBO3R4QX6GQVHJIHB9VO9VK213FH9WU1KI2N99E17PTHWOHZCUXJUP6B7JG1ZK2EOHN0IORWCKB0GTVQF216U7U9QOG7P3RQX31QMUT0N9A' where id=51; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='KW6J55I7VBK4F7W9ZKGIU0N8LRC3WIKDA5IN67DV6HK1GTP015C9L1Q07IPJURB68D9WZ81O2VPXYRQPZUMI61LIQYHMHEL9XXDJ0D1K5QQTMDRUXY29AAX7W3NOR3K8J7YPXC9B25EXDAD7O0VCJOIIAIU3KL05NLJPAULZGY31LZ2DRGEC9IPRNUOE7WCNSZO3C5Z97CXLI48ZO2XZGF49TNPK9UQTRDREZVNGKS4UDWQT4FDEI9YP1Y8JRKLQS' where id=51; -update noar ti set v3='KW6J55I7VBK4F7W9ZKGIU0N8LRC3WIKDA5IN67DV6HK1GTP015C9L1Q07IPJURB68D9WZ81O2VPXYRQPZUMI61LIQYHMHEL9XXDJ0D1K5QQTMDRUXY29AAX7W3NOR3K8J7YPXC9B25EXDAD7O0VCJOIIAIU3KL05NLJPAULZGY31LZ2DRGEC9IPRNUOE7WCNSZO3C5Z97CXLI48ZO2XZGF49TNPK9UQTRDREZVNGKS4UDWQT4FDEI9YP1Y8JRKLQS' where id=51; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='23UQE0FZ6UB8TNMLSX1P0BW4SENCQSYZT2J5GDFE2W8A2U3V8WDTO9ANN2UE9TVPY2A3YGSUT7X8VQNXL1LQ22DOYVAQHVKB9PBY2HM1SDEDTBEW9DKF14J1N7XXNU5MD665S55B7CJ1YGF7IUWSZV1G35U1GHJP13PMI1LELWQAJZ2DFTWAE2AOGZVBXW9M3STNRNNA9Y8THMRZGTKMVIVNWYOCHXQG8FDKX3O09ZNBMKL298TEFJ1EFUSOTV6S3' where id=52; -update noar ti set v0='23UQE0FZ6UB8TNMLSX1P0BW4SENCQSYZT2J5GDFE2W8A2U3V8WDTO9ANN2UE9TVPY2A3YGSUT7X8VQNXL1LQ22DOYVAQHVKB9PBY2HM1SDEDTBEW9DKF14J1N7XXNU5MD665S55B7CJ1YGF7IUWSZV1G35U1GHJP13PMI1LELWQAJZ2DFTWAE2AOGZVBXW9M3STNRNNA9Y8THMRZGTKMVIVNWYOCHXQG8FDKX3O09ZNBMKL298TEFJ1EFUSOTV6S3' where id=52; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='PCVR85NU5EPCBR51AD4BE8DW007VMOXH0OISYAODXTY5IO4HD9MY3MOOYCT1F4QF4D22OJDE5V69C40Q6ZRJ029DWRXR1YCQMWG1W43S3IMO0A7L4CAJJ1QSXLRXLVGYW4OE5SDYAVJNA2MWDRQWT6JWTX9C5ELX2L6ZSZOAPZKWW8V9XM0OCZ1PAIVVGRMUR7ZM3BII98U1M426495A6TOOOHVF6VXEYCS3TLDLQVJ7MIXLEBINUFY9IJRHBTW1F' where id=52; -update noar ti set v1='PCVR85NU5EPCBR51AD4BE8DW007VMOXH0OISYAODXTY5IO4HD9MY3MOOYCT1F4QF4D22OJDE5V69C40Q6ZRJ029DWRXR1YCQMWG1W43S3IMO0A7L4CAJJ1QSXLRXLVGYW4OE5SDYAVJNA2MWDRQWT6JWTX9C5ELX2L6ZSZOAPZKWW8V9XM0OCZ1PAIVVGRMUR7ZM3BII98U1M426495A6TOOOHVF6VXEYCS3TLDLQVJ7MIXLEBINUFY9IJRHBTW1F' where id=52; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='1FNSSB0HKGY5CMGPP07EOI2D4DW6499BVKO643QW9G0UVF9QNIAFBS1PT5TI6OQO28QU58XAH8G25UH73NASVJY3ZMFT8RE0VFA3BZ8TLWG9ALCEI53UBDN5W06RZU83K2NZNFR48YMZODGQX81M2A712GP8HV4ICO2JCYF1JX231685YC1J6492KTHXGQPX3W3FEGZUQN3V4FTMZAQDT8YV0O42N82OO866PGPE0ZM7YD4BXU32XINLCMG1RO222' where id=52; -update noar ti set v2='1FNSSB0HKGY5CMGPP07EOI2D4DW6499BVKO643QW9G0UVF9QNIAFBS1PT5TI6OQO28QU58XAH8G25UH73NASVJY3ZMFT8RE0VFA3BZ8TLWG9ALCEI53UBDN5W06RZU83K2NZNFR48YMZODGQX81M2A712GP8HV4ICO2JCYF1JX231685YC1J6492KTHXGQPX3W3FEGZUQN3V4FTMZAQDT8YV0O42N82OO866PGPE0ZM7YD4BXU32XINLCMG1RO222' where id=52; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='AD7R73CGA41XVO20T5YR1FPZ26E4I6WM8Y213HVRIZDQGHUVOI71IPICR9KFLR2FNH7YDFDNRDJOKOD81P6DV6SUXQM8TVNM7HG9ZXIHXQ1Z0F5AVFF5X81AXMKKAI5MN1SCWCXI0D54SCYUKYZI27SHW17OBPAXTUUG1LF520RJKE2GZGH2172Y0B198NI5466UV7IT1EEU5RIG5EFD3DNHBIAMRHP6KZZCJU31ZRNPS1JZKPBYF1U7OOK9UFETO' where id=52; -update noar ti set v3='AD7R73CGA41XVO20T5YR1FPZ26E4I6WM8Y213HVRIZDQGHUVOI71IPICR9KFLR2FNH7YDFDNRDJOKOD81P6DV6SUXQM8TVNM7HG9ZXIHXQ1Z0F5AVFF5X81AXMKKAI5MN1SCWCXI0D54SCYUKYZI27SHW17OBPAXTUUG1LF520RJKE2GZGH2172Y0B198NI5466UV7IT1EEU5RIG5EFD3DNHBIAMRHP6KZZCJU31ZRNPS1JZKPBYF1U7OOK9UFETO' where id=52; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='ZL9FYITBAMBCN7ADBVNOU3A1VS8EUMQL6D0UGH532ALAVH5VL0NS4AG42HXGH5354VRG24TUZBYIVRYRVXNSGFFJHVCEJYJWGPETWFAKP3A8NSDHYHUP7QXPLHY09UFC4IIBU7N4I2X23LS0XEUG2YHVTG15GMIBUC4UWHZDL629FOB4FD7C7OMZIXVK7M7A3FD2ZRKL9RN8XX3F0099ERM0WYV6J306YBZTBGS2U6VRD9AY23Q30IBYJ5JFK0QOP' where id=53; -update noar ti set v0='ZL9FYITBAMBCN7ADBVNOU3A1VS8EUMQL6D0UGH532ALAVH5VL0NS4AG42HXGH5354VRG24TUZBYIVRYRVXNSGFFJHVCEJYJWGPETWFAKP3A8NSDHYHUP7QXPLHY09UFC4IIBU7N4I2X23LS0XEUG2YHVTG15GMIBUC4UWHZDL629FOB4FD7C7OMZIXVK7M7A3FD2ZRKL9RN8XX3F0099ERM0WYV6J306YBZTBGS2U6VRD9AY23Q30IBYJ5JFK0QOP' where id=53; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='PBBKGZEODIR5Q55FA40R3RMUXHYNVDFRF47L4PLQDY0X47X66YJX67RRZB99N8TCRCU6MTL4VRR102MTDXOW18XQE0J39G8QBF1TQ9IOMIIU8M7RSX2BHXMOTPX5ZO741UEXDPGTG6F821AB8ASN9QUE8VLXWT7GEYX6PBE15MP0GYD4UDA1CHAAT53DO86S3MMAUXNCO5SAQPGS33GMXULUTLQGQ1JPP7BKUXI2W0A2YGTLZUAJB86DEZX94BF1G' where id=53; -update noar ti set v1='PBBKGZEODIR5Q55FA40R3RMUXHYNVDFRF47L4PLQDY0X47X66YJX67RRZB99N8TCRCU6MTL4VRR102MTDXOW18XQE0J39G8QBF1TQ9IOMIIU8M7RSX2BHXMOTPX5ZO741UEXDPGTG6F821AB8ASN9QUE8VLXWT7GEYX6PBE15MP0GYD4UDA1CHAAT53DO86S3MMAUXNCO5SAQPGS33GMXULUTLQGQ1JPP7BKUXI2W0A2YGTLZUAJB86DEZX94BF1G' where id=53; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='KDL7HSEBTTF64BH0BKSZP4SOQW3LX1Z7RCJGBJJAP8ZN54E24REUIAIM5Q6YHLOOWFU0PLA6013JT7MG4R6IABW6MG1226AX4XBB71DVOPM3Z2WGGNHD7MAS93F724BMWK06BXGO147P1YCXZ3LZ938WOLBL6NDXM1279N9G0A4KNEGRSRZT1TXSN3UU4UD1XZMQCD3ATEFXM177A5F890IGWPWCBHJ4M9N1L77ZROCO1VSJIMO36YOMQ1F8FDZQX' where id=53; -update noar ti set v2='KDL7HSEBTTF64BH0BKSZP4SOQW3LX1Z7RCJGBJJAP8ZN54E24REUIAIM5Q6YHLOOWFU0PLA6013JT7MG4R6IABW6MG1226AX4XBB71DVOPM3Z2WGGNHD7MAS93F724BMWK06BXGO147P1YCXZ3LZ938WOLBL6NDXM1279N9G0A4KNEGRSRZT1TXSN3UU4UD1XZMQCD3ATEFXM177A5F890IGWPWCBHJ4M9N1L77ZROCO1VSJIMO36YOMQ1F8FDZQX' where id=53; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='A0FQBNDLIDKZ5HDXWBJAZEEEFL5LUZEB90BSCAE8AGYHK76ZCQ3JVA9HP2P7L2Z1GUDSEOY4GGZFAHGN7D0JW3IBRTOBDNK92OK084ANG0K1FYBXCT5HFMBYBORIX3B7FJN15W32KKGXJPWMD0IQITPY6FI3533TTWFLZCA0203QONACATIUXREJX64DU04RYCEGPUVHVXN2C0UO5XJ2F6YFUKUT1CCNPL4X2JHPCUXJBB85FGYH1BD4BJHK8GX3H' where id=53; -update noar ti set v3='A0FQBNDLIDKZ5HDXWBJAZEEEFL5LUZEB90BSCAE8AGYHK76ZCQ3JVA9HP2P7L2Z1GUDSEOY4GGZFAHGN7D0JW3IBRTOBDNK92OK084ANG0K1FYBXCT5HFMBYBORIX3B7FJN15W32KKGXJPWMD0IQITPY6FI3533TTWFLZCA0203QONACATIUXREJX64DU04RYCEGPUVHVXN2C0UO5XJ2F6YFUKUT1CCNPL4X2JHPCUXJBB85FGYH1BD4BJHK8GX3H' where id=53; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='BAPOIHD64B450YH4R56M3XJB67LQPZTN25RWC28ZKGMGA6SMUIWWLIS3Z4KW0OHM24MKQCSNYJ17RX45K0CMQLQPG62NWTJ4QQFOUJE8CDXPC0IVIHCFQMADXNSCT1JPYF6CCMYMG3PY6JYYX7WD5L5PRUADHM5UQDWW4OMSH9G904FV9TMQLBISGJZX6XD1E63FWNHGC5EVBTVRDX49OL35FBY0XFLHHYJN6RNS622UHAQ4LJCF88TZYQDG1QC7V' where id=54; -update noar ti set v0='BAPOIHD64B450YH4R56M3XJB67LQPZTN25RWC28ZKGMGA6SMUIWWLIS3Z4KW0OHM24MKQCSNYJ17RX45K0CMQLQPG62NWTJ4QQFOUJE8CDXPC0IVIHCFQMADXNSCT1JPYF6CCMYMG3PY6JYYX7WD5L5PRUADHM5UQDWW4OMSH9G904FV9TMQLBISGJZX6XD1E63FWNHGC5EVBTVRDX49OL35FBY0XFLHHYJN6RNS622UHAQ4LJCF88TZYQDG1QC7V' where id=54; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='EFY3XLE5OXTUSARCO934E13M3KLI2M1SMZCYZRFCU8LVREMDRCZNI2W619ENYOMDHXMMB3YC7VXYT4I6NGZBQBQXKZAFGRZMX3WI9VKZOWT1ROSYEI2UYJZ9IZXSPKAB90YLVLLCOL7V3DPBF4RJJWP4HR7OR9B7VSHR1OUD0RXXNEWYNIIGHKST58NMEKJP6DGJ312LQU1TLG31SEO4YXWIY2WDBP6PJZCJBKD8LAM7LBO26HFASVT1HPFHZL2BH' where id=54; -update noar ti set v1='EFY3XLE5OXTUSARCO934E13M3KLI2M1SMZCYZRFCU8LVREMDRCZNI2W619ENYOMDHXMMB3YC7VXYT4I6NGZBQBQXKZAFGRZMX3WI9VKZOWT1ROSYEI2UYJZ9IZXSPKAB90YLVLLCOL7V3DPBF4RJJWP4HR7OR9B7VSHR1OUD0RXXNEWYNIIGHKST58NMEKJP6DGJ312LQU1TLG31SEO4YXWIY2WDBP6PJZCJBKD8LAM7LBO26HFASVT1HPFHZL2BH' where id=54; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='N8U6ZPBXUVGIFQKJ5RQL3OATNJ0FTB44I3X93QT9ZDL2L1Q8OXNN2IHICRI8M3NKKGVOIJ4JKHM6YWVU4KKWAZZ55S6CKQ4CIZP5O06HRXT4Q4221BOPIRYEJURNCZF6EUHQ38469X9X46LTNI8MSI8507BXZQBGPCNG1YHBDQ38E63114I7F1VEH8L7SYVX3CA9921OUS4NPUV39VPTELCVVP15ZG2TPWWT8MXD147B0H3N80OBONH727VBFGO0S' where id=54; -update noar ti set v2='N8U6ZPBXUVGIFQKJ5RQL3OATNJ0FTB44I3X93QT9ZDL2L1Q8OXNN2IHICRI8M3NKKGVOIJ4JKHM6YWVU4KKWAZZ55S6CKQ4CIZP5O06HRXT4Q4221BOPIRYEJURNCZF6EUHQ38469X9X46LTNI8MSI8507BXZQBGPCNG1YHBDQ38E63114I7F1VEH8L7SYVX3CA9921OUS4NPUV39VPTELCVVP15ZG2TPWWT8MXD147B0H3N80OBONH727VBFGO0S' where id=54; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='D5WU8HHE9314PJKNKJY44TPZB4RKMQA50XOC3WRFN3HSE4JOL92VUCZQRW1DF6OCVY2AGZNO83O480JJIF3QGMM2LF0XDFXCOKK21EG7TLMW487YPQBA1DAJZANJPGD6JLCQPL939238LBP8GT93I7NSFZ8F3EX3DJ633SSX8MR0WQ010YWIEVHHTDKOH7F7RDGG2HPCQXKADD0NXTVG7XS1H44LRYSNA4GG0WK43LQLDQ1TETU6NCDGJVEO3T0WI' where id=54; -update noar ti set v3='D5WU8HHE9314PJKNKJY44TPZB4RKMQA50XOC3WRFN3HSE4JOL92VUCZQRW1DF6OCVY2AGZNO83O480JJIF3QGMM2LF0XDFXCOKK21EG7TLMW487YPQBA1DAJZANJPGD6JLCQPL939238LBP8GT93I7NSFZ8F3EX3DJ633SSX8MR0WQ010YWIEVHHTDKOH7F7RDGG2HPCQXKADD0NXTVG7XS1H44LRYSNA4GG0WK43LQLDQ1TETU6NCDGJVEO3T0WI' where id=54; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='5KEBZ7PEV4XE1WV6QIO28EEIDZTUSQHU3XXOOM7ADH9W09UQSN2G28IJOY0T1RI70TIER87ZJXWNZWKMONKET7BHBKMKDF9RF5LE5C4LRZBC7EXOEYPCH7W9SDKYJ1LHBEQVCIMEB0VZ50LPHTK8DUIB138KO4A8NW1J3U8AIVHIR8GQBSYZ2W0LH675HZUVT1FLBBV8ZEU2DC9K8HCJGB514HHS0S7DTFWUUQOS342X8LSPHCTHNRL2TRZEOPBIZ' where id=55; -update noar ti set v0='5KEBZ7PEV4XE1WV6QIO28EEIDZTUSQHU3XXOOM7ADH9W09UQSN2G28IJOY0T1RI70TIER87ZJXWNZWKMONKET7BHBKMKDF9RF5LE5C4LRZBC7EXOEYPCH7W9SDKYJ1LHBEQVCIMEB0VZ50LPHTK8DUIB138KO4A8NW1J3U8AIVHIR8GQBSYZ2W0LH675HZUVT1FLBBV8ZEU2DC9K8HCJGB514HHS0S7DTFWUUQOS342X8LSPHCTHNRL2TRZEOPBIZ' where id=55; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='SP782CC3A5B2UIW6REYP3SS0BIX7BER4VPD7483TAUYOMMSSVD69RW8DT18E8LANUGWZ2QFR3CT5VFH6F83H94RA5ED0L572ZDZRYUMO8MJSDXNK9OHJALDMO1UAH0N03ZY969KSOVNZOCO8YNJN37B0QVTI62DON7FGRCRM3B0QDXPOMSAFDGP5LMIEOFP1YUFFXHULAB8THDIMS9DYT0P7RLYXUFUY0785CBG9DZWDWTLOXC9SJLV0CITFX9D7N' where id=55; -update noar ti set v1='SP782CC3A5B2UIW6REYP3SS0BIX7BER4VPD7483TAUYOMMSSVD69RW8DT18E8LANUGWZ2QFR3CT5VFH6F83H94RA5ED0L572ZDZRYUMO8MJSDXNK9OHJALDMO1UAH0N03ZY969KSOVNZOCO8YNJN37B0QVTI62DON7FGRCRM3B0QDXPOMSAFDGP5LMIEOFP1YUFFXHULAB8THDIMS9DYT0P7RLYXUFUY0785CBG9DZWDWTLOXC9SJLV0CITFX9D7N' where id=55; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='UGTQD0STZNDIRFSK9L97HGSOORV00LVXD5U76QDQTZOBI2DFMJWVOF334RQD596ER9Y19LIANSR0K8YNB58V17Z2TM1FXYBP36QQKZ0TSTVRU3PNFUITJYM7BJQTESLEZIR49YX812XTC1CQCZZES1IGQV6I1ITFGJ3J3BDQB74OM6D4XTN2DEFVZZVIWDJBYTXNRUXFRHT47Z3JSHGKX8EP6031YAKQLS4ME5UVDD079BTWQCTRJMWLJ11KSN30R' where id=55; -update noar ti set v2='UGTQD0STZNDIRFSK9L97HGSOORV00LVXD5U76QDQTZOBI2DFMJWVOF334RQD596ER9Y19LIANSR0K8YNB58V17Z2TM1FXYBP36QQKZ0TSTVRU3PNFUITJYM7BJQTESLEZIR49YX812XTC1CQCZZES1IGQV6I1ITFGJ3J3BDQB74OM6D4XTN2DEFVZZVIWDJBYTXNRUXFRHT47Z3JSHGKX8EP6031YAKQLS4ME5UVDD079BTWQCTRJMWLJ11KSN30R' where id=55; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='IR0AVQZZUS3XEJ6O8RR6I238SPQAXJLXZHRZBK98CN4Z59TCVAUQS1ZVD7SB1B5SF2U3XVNUL3D0NQ7XTSEOJ3T6HOY405F2HB8T7TO91R90XJR6IL9SNC2O9T5LRSN3E1GAQT0ASDDRZ1KE7962FX774SECR81O4Z6WKQME9KMVHIN5C9N5145B49T6U71GBID5G1L2A47KPT4HPFH9ETHFY4HW1GX6TFRMF2N8KK0GH6K1ZVU9PMWAUXEZ7KNUH' where id=55; -update noar ti set v3='IR0AVQZZUS3XEJ6O8RR6I238SPQAXJLXZHRZBK98CN4Z59TCVAUQS1ZVD7SB1B5SF2U3XVNUL3D0NQ7XTSEOJ3T6HOY405F2HB8T7TO91R90XJR6IL9SNC2O9T5LRSN3E1GAQT0ASDDRZ1KE7962FX774SECR81O4Z6WKQME9KMVHIN5C9N5145B49T6U71GBID5G1L2A47KPT4HPFH9ETHFY4HW1GX6TFRMF2N8KK0GH6K1ZVU9PMWAUXEZ7KNUH' where id=55; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='2XVRXAUXBGGSHA02PHRF5WM23SVCINVTS31613SIKPF42FW01653P6QQ7AZDGLWWPP3E1V25LPLJ950BP6RH4OUZUP6U5JZ3ESP3CKX7W1CM10ZRKAUL0IHUCP1XJUC3NV33PT3BZQJJ4EWNW2YAAZ9SEFON7DS297QOJJA4WUUWSV43QOO5AJDOSX694MUC2M229TL19XZ80PS1R7BQ1G0RNH2HNK3EN4ENWOHMX8MAVX5JDPGP9IC6RU2DG1RDN' where id=56; -update noar ti set v0='2XVRXAUXBGGSHA02PHRF5WM23SVCINVTS31613SIKPF42FW01653P6QQ7AZDGLWWPP3E1V25LPLJ950BP6RH4OUZUP6U5JZ3ESP3CKX7W1CM10ZRKAUL0IHUCP1XJUC3NV33PT3BZQJJ4EWNW2YAAZ9SEFON7DS297QOJJA4WUUWSV43QOO5AJDOSX694MUC2M229TL19XZ80PS1R7BQ1G0RNH2HNK3EN4ENWOHMX8MAVX5JDPGP9IC6RU2DG1RDN' where id=56; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='WKTYSGIL5KW3XX3ODB3ZXQEIDPYVDFETW2PFC7JQMIEZCIIEKS6V1PR1LI4PLJQXCQALPGJJ7C7MFDNY9ZM3T9W2WGDC82PSSW8ITUD53UTVY426MRX5VJVP9N99HFE3YFSWJOZKRE2NJ6G5IBVG5Y0IDD6AX2Q6HQFD18CVA7S2Z8OXPDDADLFHM0C3BO0CCWHCG67C8G1UJ4UDYWGD7ESPLH3PIGJHT81N3PNI9EBRBV9WC6D7YIU4AY0VXQ8I2' where id=56; -update noar ti set v1='WKTYSGIL5KW3XX3ODB3ZXQEIDPYVDFETW2PFC7JQMIEZCIIEKS6V1PR1LI4PLJQXCQALPGJJ7C7MFDNY9ZM3T9W2WGDC82PSSW8ITUD53UTVY426MRX5VJVP9N99HFE3YFSWJOZKRE2NJ6G5IBVG5Y0IDD6AX2Q6HQFD18CVA7S2Z8OXPDDADLFHM0C3BO0CCWHCG67C8G1UJ4UDYWGD7ESPLH3PIGJHT81N3PNI9EBRBV9WC6D7YIU4AY0VXQ8I2' where id=56; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='VS47NFSA08ZZ47ZVU1HLA7Q29YEZIZ9PTL3SNLGSCLIOR8IKEURY24XRPBZ4AB8YA5S13MBDMJFA4W090FJHJ2GX8GWX0RT0CEHVP129KOL1X2048Z4U605ZIV2ZX9R6UU39GDX60TFRTDMV86USA03IJ9BPC6HPBTXG38MV3DWHWJ9AK272BUM8J7M09EALJSDI76TXU7NVFBGCXJVGGR1U0N1RHP2H2UTUJ7Y2I2INIYIZUGRKTP7Z45OM8S37U' where id=56; -update noar ti set v2='VS47NFSA08ZZ47ZVU1HLA7Q29YEZIZ9PTL3SNLGSCLIOR8IKEURY24XRPBZ4AB8YA5S13MBDMJFA4W090FJHJ2GX8GWX0RT0CEHVP129KOL1X2048Z4U605ZIV2ZX9R6UU39GDX60TFRTDMV86USA03IJ9BPC6HPBTXG38MV3DWHWJ9AK272BUM8J7M09EALJSDI76TXU7NVFBGCXJVGGR1U0N1RHP2H2UTUJ7Y2I2INIYIZUGRKTP7Z45OM8S37U' where id=56; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='TKHXH2TUVZ35KW8ECSY84F6B9G0RN8JZU8LZSGSTUOIAQY5P4KFM8XMI2T4FG2UVDGWNFJAZ9H5BB5MFW90XVGNGS528IEKC1G52UAHPGXF5VH10VO3OC4KO7BO4UKLR380OFXN5KDIUSS86R1TQD6YDDBNXKPDV3ZB059XOSGE0ISD9J0NEG5HDEOGY7MRTYV08937GY5N1THJJIK8FSJDGF0W8OFPWT3OHYM8L1GDLTJVYJ6VOJG1Y96JTTLSAV' where id=56; -update noar ti set v3='TKHXH2TUVZ35KW8ECSY84F6B9G0RN8JZU8LZSGSTUOIAQY5P4KFM8XMI2T4FG2UVDGWNFJAZ9H5BB5MFW90XVGNGS528IEKC1G52UAHPGXF5VH10VO3OC4KO7BO4UKLR380OFXN5KDIUSS86R1TQD6YDDBNXKPDV3ZB059XOSGE0ISD9J0NEG5HDEOGY7MRTYV08937GY5N1THJJIK8FSJDGF0W8OFPWT3OHYM8L1GDLTJVYJ6VOJG1Y96JTTLSAV' where id=56; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='OQRVV7TKUBTCNWOMOHXDKY34RBM65J78BH049YBAMGPN3LEI9X1H7OTDIFN706ISCIAT2B02IRTTSSXF7KVOC8VGVZPWTCVM0FO6ZVP92SXC75DP04MW6YXIJ90P32IZPF1F1SK2SDIQW2QJVZAYFW4ARYY9SU959VSF3L8ZW6Q6E70GRGK71ICY8FZ8SRLH7V1NS96V4JV3TRPBHMBM3HFKBGMY7HA9E0YWZYJ1MRVPATQ5LVOX8B6IUOHJ11LO0' where id=57; -update noar ti set v0='OQRVV7TKUBTCNWOMOHXDKY34RBM65J78BH049YBAMGPN3LEI9X1H7OTDIFN706ISCIAT2B02IRTTSSXF7KVOC8VGVZPWTCVM0FO6ZVP92SXC75DP04MW6YXIJ90P32IZPF1F1SK2SDIQW2QJVZAYFW4ARYY9SU959VSF3L8ZW6Q6E70GRGK71ICY8FZ8SRLH7V1NS96V4JV3TRPBHMBM3HFKBGMY7HA9E0YWZYJ1MRVPATQ5LVOX8B6IUOHJ11LO0' where id=57; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='4TN0SP1FBHJJXDMU0BUGSH16R3HZLP6PBP3898F2VNZXZ0B6267WIFAO0DXSNM4PKAAQQGDB0K4CXR19RPDGNJVC2JBDJJV50LIJH54V6XMHW1ILDV4OOIZ1028L3JP6IZV53F1TA01T640TBXEL2JX5PW85AB753K3NZWO4NHALZ2FWRJS71N130HDL14244HH4LNZOSS6ZUWKU85Q9VE0INU68JGDGIFOTHZJMXFSOR6NYUQD1ELA132DM53Z19' where id=57; -update noar ti set v1='4TN0SP1FBHJJXDMU0BUGSH16R3HZLP6PBP3898F2VNZXZ0B6267WIFAO0DXSNM4PKAAQQGDB0K4CXR19RPDGNJVC2JBDJJV50LIJH54V6XMHW1ILDV4OOIZ1028L3JP6IZV53F1TA01T640TBXEL2JX5PW85AB753K3NZWO4NHALZ2FWRJS71N130HDL14244HH4LNZOSS6ZUWKU85Q9VE0INU68JGDGIFOTHZJMXFSOR6NYUQD1ELA132DM53Z19' where id=57; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='ZT4VWDLJU9A6RX17I03RU04VKQ2IELHQ45XLD70YKQFMMKIOTCB9KINY3BHGVU5QYD2DTE2FIRRXWAERKR8H3VAW1TWMS5PSJHH38SK203CK5QF58CPHZP4YP57U13EVRCV0FANAAKNBU2MNF685D9QY43GOX1LAZWFKIZ961ZZ5HBWN9Q3R9W5OB5G1QTOVUYI9Y0CPMLANDW0BQ21TK3SUPPVNWX05E2XKI4SZ7FJKV4A5GNKW58CSDIBKJ7BKV' where id=57; -update noar ti set v2='ZT4VWDLJU9A6RX17I03RU04VKQ2IELHQ45XLD70YKQFMMKIOTCB9KINY3BHGVU5QYD2DTE2FIRRXWAERKR8H3VAW1TWMS5PSJHH38SK203CK5QF58CPHZP4YP57U13EVRCV0FANAAKNBU2MNF685D9QY43GOX1LAZWFKIZ961ZZ5HBWN9Q3R9W5OB5G1QTOVUYI9Y0CPMLANDW0BQ21TK3SUPPVNWX05E2XKI4SZ7FJKV4A5GNKW58CSDIBKJ7BKV' where id=57; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='1PDH4D1PM0XNQZT5SPS63J000RNAOUBW88BLZ8D1LZR4L1DKN6CMFU2UEKSFKXGA195XKAQUQW6OCXV1HCMAT9W18W6HE46HI6XRHLQH9UPI5DFC0RU5KQNVJ56YU4YPOFO0NZN21IPTQPAF6WHAWEJD6E8N67ZUJMIAET33V0ZR7YUKTDK52SOLJJ1XZ9JZHBRV8S3IEBSR6J90SIO2SCOZO5X98VPR7ZYJ5K4LC446M1BXDX312KAVN6KRPD2IS' where id=57; -update noar ti set v3='1PDH4D1PM0XNQZT5SPS63J000RNAOUBW88BLZ8D1LZR4L1DKN6CMFU2UEKSFKXGA195XKAQUQW6OCXV1HCMAT9W18W6HE46HI6XRHLQH9UPI5DFC0RU5KQNVJ56YU4YPOFO0NZN21IPTQPAF6WHAWEJD6E8N67ZUJMIAET33V0ZR7YUKTDK52SOLJJ1XZ9JZHBRV8S3IEBSR6J90SIO2SCOZO5X98VPR7ZYJ5K4LC446M1BXDX312KAVN6KRPD2IS' where id=57; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='T4IYVQX8QWH7DCJ98VJY092YGKJHA7UB8SNGPBPAHTM1E10925N9RUPCT6MJ1QRBUKRBFJVQGX4XQOJAO29F2SG0RBVOR595QULYSMW5BM5D9F08H9C0P62SCXRKDO87CP14BW15ODYHW3UW6L29P5ORG7U16NVODTM9ZZU8SCTFPWL2AUC6FHTQ8YP2NXMVOHGXJSUWD4VB1XR4IWHAN03GLA62YB66EXIHYYFP0NGYMU5JG8P2245FNTFH2ALSY' where id=58; -update noar ti set v0='T4IYVQX8QWH7DCJ98VJY092YGKJHA7UB8SNGPBPAHTM1E10925N9RUPCT6MJ1QRBUKRBFJVQGX4XQOJAO29F2SG0RBVOR595QULYSMW5BM5D9F08H9C0P62SCXRKDO87CP14BW15ODYHW3UW6L29P5ORG7U16NVODTM9ZZU8SCTFPWL2AUC6FHTQ8YP2NXMVOHGXJSUWD4VB1XR4IWHAN03GLA62YB66EXIHYYFP0NGYMU5JG8P2245FNTFH2ALSY' where id=58; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='H7WEYMXXQ08LK3FKZMLSW30KI0UANO3S634GJ1VSNC8XYR161D3XNQ7ZDAOR19MRUYA33R9NGGHXGOPE88QBB5JKRC9TX6MVSH3JIT0SXZI1OYBD58IG45A4WK9Y3VZSPIF96GDZ8G19Z5IATL4YNUES8AAQKPN0XWDMNCOFRD0JX5VUKORKEDJ8BBWKHCT0HT235HOFB60S35VOWNK0URG8OAOYJ0V5P1NOJ0AWGBX9GMPZVJCOAKXXU2WYOX5GV' where id=58; -update noar ti set v1='H7WEYMXXQ08LK3FKZMLSW30KI0UANO3S634GJ1VSNC8XYR161D3XNQ7ZDAOR19MRUYA33R9NGGHXGOPE88QBB5JKRC9TX6MVSH3JIT0SXZI1OYBD58IG45A4WK9Y3VZSPIF96GDZ8G19Z5IATL4YNUES8AAQKPN0XWDMNCOFRD0JX5VUKORKEDJ8BBWKHCT0HT235HOFB60S35VOWNK0URG8OAOYJ0V5P1NOJ0AWGBX9GMPZVJCOAKXXU2WYOX5GV' where id=58; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='1CKWL0AI2QJC9TJ7FXE8OHM5F3HOGMQBAME9JH19VKQ8OXX3Q4QGJOZ4MDLEJLMWT80RIMO8332NH74LP2FSRGBK541MEJ1IO190U7TVPLB7WQ7AEBIVTYVHQNZ5W5Z8XBMLHYW1T2PASDT8VJKYUYCJESPMGIIEDCOPW4PV3MUZW35GPLMMYPGUYBB75NOO7RERYD4ATM3XF10Y2N9V1QA0NYP6KXH4KS46VLUPV8DB19MA55BHESKJEW9O62777' where id=58; -update noar ti set v2='1CKWL0AI2QJC9TJ7FXE8OHM5F3HOGMQBAME9JH19VKQ8OXX3Q4QGJOZ4MDLEJLMWT80RIMO8332NH74LP2FSRGBK541MEJ1IO190U7TVPLB7WQ7AEBIVTYVHQNZ5W5Z8XBMLHYW1T2PASDT8VJKYUYCJESPMGIIEDCOPW4PV3MUZW35GPLMMYPGUYBB75NOO7RERYD4ATM3XF10Y2N9V1QA0NYP6KXH4KS46VLUPV8DB19MA55BHESKJEW9O62777' where id=58; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='GT2XAWQ1WX4S935LJDP4LU49YKV1PBSTOF0N0ZE8Z9A356SPP9TC92GE9UE5ZX4R14EXLTO4KNZE2MVIDUN3TBFIMXDU8IDGUMHLW79BJSFLB04I8K7RVETY8QIV24MJQHENQUTSXTTENVU6Z56N6SWZNTA0PN5C9XOUM3KRNFTWUU5BIV4JCKD73XVC166VGPV40PHZTJXSF1SXUSLDPIHZ3AQ8O7AHYHKZSGS1SD6TDY6K9AIWFPUTIUCEP4M3K' where id=58; -update noar ti set v3='GT2XAWQ1WX4S935LJDP4LU49YKV1PBSTOF0N0ZE8Z9A356SPP9TC92GE9UE5ZX4R14EXLTO4KNZE2MVIDUN3TBFIMXDU8IDGUMHLW79BJSFLB04I8K7RVETY8QIV24MJQHENQUTSXTTENVU6Z56N6SWZNTA0PN5C9XOUM3KRNFTWUU5BIV4JCKD73XVC166VGPV40PHZTJXSF1SXUSLDPIHZ3AQ8O7AHYHKZSGS1SD6TDY6K9AIWFPUTIUCEP4M3K' where id=58; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='OCJKLR5DWR3C8QSGNPUDDVM8FA7T7UWVKEF80AXPSP50JUKOZKXW9MLTRCSSGQ1WJ3UIM7CED973ORIG8G2X30YR6IABYP5FYXS3BUB8YASSJZ15VDR21UR4D1MKIKOOTBISIG9IUWHC607NUVBA3IRRJRZF13INTJ5UOSDFJEJFQC61NA9IF486JNSEMIZ4WEW0NPWV7SJ5FWHZPOYMYRKTTJI7SU73Y55R53A58S2R7B4TQVUC6WRLKA2XPT6W5' where id=59; -update noar ti set v0='OCJKLR5DWR3C8QSGNPUDDVM8FA7T7UWVKEF80AXPSP50JUKOZKXW9MLTRCSSGQ1WJ3UIM7CED973ORIG8G2X30YR6IABYP5FYXS3BUB8YASSJZ15VDR21UR4D1MKIKOOTBISIG9IUWHC607NUVBA3IRRJRZF13INTJ5UOSDFJEJFQC61NA9IF486JNSEMIZ4WEW0NPWV7SJ5FWHZPOYMYRKTTJI7SU73Y55R53A58S2R7B4TQVUC6WRLKA2XPT6W5' where id=59; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='SZX3XFTLON4AGEFQKX8O2A6BQQBMK0O1J02XXY1DFW8MPKSCVGYVLZ3YOM21V8YHDK7VJHZGI7NX5SOKXF4XVIN2OY7IPWPCSR9J22LHMIUJ1UXRMFCWTU04ZO3OHNB5873V882WYTFWOVLIHD2RQMPRMRBC3FKFUGT7E3SBGVVZ2KKWE82S35T0Y3S13YSIB68Z81FGFCQGDPLL6QWXHELNJB4IJRWH1ER7WM56ITTFHK0IJ9SPVTN7AV9XRR1D3' where id=59; -update noar ti set v1='SZX3XFTLON4AGEFQKX8O2A6BQQBMK0O1J02XXY1DFW8MPKSCVGYVLZ3YOM21V8YHDK7VJHZGI7NX5SOKXF4XVIN2OY7IPWPCSR9J22LHMIUJ1UXRMFCWTU04ZO3OHNB5873V882WYTFWOVLIHD2RQMPRMRBC3FKFUGT7E3SBGVVZ2KKWE82S35T0Y3S13YSIB68Z81FGFCQGDPLL6QWXHELNJB4IJRWH1ER7WM56ITTFHK0IJ9SPVTN7AV9XRR1D3' where id=59; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='SGKGE4Z01FT1ZLC2PAW8G5T8PGG0EUCYSAF8L5MV2C071IHPV5J8O9KA2749U7QUK0AC4A7MWW81HVM3NBRDWDKT1LTEOYH8UGT3QXDIV37U89K8VXAZ9G87BMEAMZI2MSBG5704H4W45B17JIRGJ8QI25O0MLRVN72NS7JJG4754YC8L6C6P26OTWXL6Z4H7ZGB094GML0PHEXA0ISPIS5YX52ZVLSEWPB6XNOHJ8I8TVARPJ9YEDT8VSS0349Q2' where id=59; -update noar ti set v2='SGKGE4Z01FT1ZLC2PAW8G5T8PGG0EUCYSAF8L5MV2C071IHPV5J8O9KA2749U7QUK0AC4A7MWW81HVM3NBRDWDKT1LTEOYH8UGT3QXDIV37U89K8VXAZ9G87BMEAMZI2MSBG5704H4W45B17JIRGJ8QI25O0MLRVN72NS7JJG4754YC8L6C6P26OTWXL6Z4H7ZGB094GML0PHEXA0ISPIS5YX52ZVLSEWPB6XNOHJ8I8TVARPJ9YEDT8VSS0349Q2' where id=59; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='WW7PJ5U5FIPYO51MRLEAD29VOJ4RONVS3U7BAR4Y0BA7ZKOLO3GE7FJCWMSFD58GEHH9I45SPCPMB5EGOZHFVI3ICQ045KPR3CLRI5UA7LN10X0T1I824EY3YMFM0Y4L2N6I9O905JKPA39931IAOT3LQ8ZFN1UWFNQU8HMD86068TAHR1M1XL6EL22P49AJXJMVECPWTERW3D7YV2RQFS1UO4N6KBVIQWN37ZRUUB1ITN7I4D1VD5KMZ6JH9F8G4' where id=59; -update noar ti set v3='WW7PJ5U5FIPYO51MRLEAD29VOJ4RONVS3U7BAR4Y0BA7ZKOLO3GE7FJCWMSFD58GEHH9I45SPCPMB5EGOZHFVI3ICQ045KPR3CLRI5UA7LN10X0T1I824EY3YMFM0Y4L2N6I9O905JKPA39931IAOT3LQ8ZFN1UWFNQU8HMD86068TAHR1M1XL6EL22P49AJXJMVECPWTERW3D7YV2RQFS1UO4N6KBVIQWN37ZRUUB1ITN7I4D1VD5KMZ6JH9F8G4' where id=59; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='AOZVC9T1CKT9IETJ31WKMG7KHLMD0H6H0SAMB3ITD6EUYXKT4SM2U7DNVWT7Y8X0YRPSTVWR0AP74XA9ZHWMBHQ3NC4EGX7B5T9GX9WI04M3EY8EVJDXLC17TYY0TDUPV3Y30MICMKCV0OYCS3TMAR29TL33OKG3VX7BK8WV04HMBSB9YCZOALIAM2R1XK4EIQG4V7R6L4Q0YADNGASZJY8Z3KM467RF308IDJ6SN9TXRWHS30NI42WIX2S5QXVP7' where id=60; -update noar ti set v0='AOZVC9T1CKT9IETJ31WKMG7KHLMD0H6H0SAMB3ITD6EUYXKT4SM2U7DNVWT7Y8X0YRPSTVWR0AP74XA9ZHWMBHQ3NC4EGX7B5T9GX9WI04M3EY8EVJDXLC17TYY0TDUPV3Y30MICMKCV0OYCS3TMAR29TL33OKG3VX7BK8WV04HMBSB9YCZOALIAM2R1XK4EIQG4V7R6L4Q0YADNGASZJY8Z3KM467RF308IDJ6SN9TXRWHS30NI42WIX2S5QXVP7' where id=60; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='MMLN0JIFW6NRG014UZVRAUY0GH8VJ731Z77FPBUZVVRXGVD8L5SOIWTU9CFKRFFY1JUZM74LEWBLUNZGJOZZDTPY93UHS4S27P72QXSB95MP3X8EXYDSCEOO7DMTMYX98GCQ4242HDVLPITE4DB16DJKGCL8HRD2KJXFT6EFMLFX1OWA6ME5JP3KRG0LC2R9IB35EHHQ4MKO7N4QBNEH6EZ8EJXPLWPECQN2M08JAPBP08RJX678HHPJFG46SDO2S' where id=60; -update noar ti set v1='MMLN0JIFW6NRG014UZVRAUY0GH8VJ731Z77FPBUZVVRXGVD8L5SOIWTU9CFKRFFY1JUZM74LEWBLUNZGJOZZDTPY93UHS4S27P72QXSB95MP3X8EXYDSCEOO7DMTMYX98GCQ4242HDVLPITE4DB16DJKGCL8HRD2KJXFT6EFMLFX1OWA6ME5JP3KRG0LC2R9IB35EHHQ4MKO7N4QBNEH6EZ8EJXPLWPECQN2M08JAPBP08RJX678HHPJFG46SDO2S' where id=60; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='QY5UN1Q1FY85OIARC056Q9VM5I46LPE7SY61Z6PNGZVNC31JJHRZ4V9S33CDNJPSD7MXFT8CSYWWLPOB9MQ3KK4IJ7NDE2WCSEUEZ2N1TFI7BOBUK5TG2RGHLTOPIJAMLYOOKIH9Y8BUEZYRW6HEFBS0WBZ38IXH4Y93SN18O6DYV5ISB83HNLFM3YAV03MYPJD09GI30RJZ2WVCA43RSH6ITEGQA3HX1KFRM3ECBVYWXYQDR1SMYHO0EZ9XW2PHT' where id=60; -update noar ti set v2='QY5UN1Q1FY85OIARC056Q9VM5I46LPE7SY61Z6PNGZVNC31JJHRZ4V9S33CDNJPSD7MXFT8CSYWWLPOB9MQ3KK4IJ7NDE2WCSEUEZ2N1TFI7BOBUK5TG2RGHLTOPIJAMLYOOKIH9Y8BUEZYRW6HEFBS0WBZ38IXH4Y93SN18O6DYV5ISB83HNLFM3YAV03MYPJD09GI30RJZ2WVCA43RSH6ITEGQA3HX1KFRM3ECBVYWXYQDR1SMYHO0EZ9XW2PHT' where id=60; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='6LEOVTR64VSNYLW6RIHCEY2CRAFZHKXEQNHT9V60WZNZ7HWXW1P347NY7A8GO4KT7GTFY5832650LMBPT5J2YHANYC0MMDSKC59C8Q85G30TJI9PKMKK2TH7AEDTB18RL82OMQI7IRAQNZUZWP62WDL4MI0XKUBN0VSWG38SZYHMX4D1ZA3G2XXCEFEVUIBQBZV9H5NUM78ENIEVY51PWE7OU9V82LBUXAIV3WPRXKVX9Q7WJCYTP29DG4IIAVEWA' where id=60; -update noar ti set v3='6LEOVTR64VSNYLW6RIHCEY2CRAFZHKXEQNHT9V60WZNZ7HWXW1P347NY7A8GO4KT7GTFY5832650LMBPT5J2YHANYC0MMDSKC59C8Q85G30TJI9PKMKK2TH7AEDTB18RL82OMQI7IRAQNZUZWP62WDL4MI0XKUBN0VSWG38SZYHMX4D1ZA3G2XXCEFEVUIBQBZV9H5NUM78ENIEVY51PWE7OU9V82LBUXAIV3WPRXKVX9Q7WJCYTP29DG4IIAVEWA' where id=60; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='Z06DWH9481KQY5ZFX768QBMQLADK5COYS3Y4O6H5EIUEL3V9OVPWQ1UL1WKLNSZF6A9IDS6W1Q6RZMI3ROTFLE363BVOXDK8SEYZHGE55ZK56JYUWJ6B67P5SIP6S4V0W1ZEI6MNZKXN2NHMU0HKJDU9HDIICVH2C29O8Y4GPFD9NH5L74ZYHXQZ5JC9WLP4H3LD0K5A9B6OT89ZXMAV52N18P06R1PQKXK5C3M1P6XENDYXX9E9VWORZWENUXG9M' where id=61; -update noar ti set v0='Z06DWH9481KQY5ZFX768QBMQLADK5COYS3Y4O6H5EIUEL3V9OVPWQ1UL1WKLNSZF6A9IDS6W1Q6RZMI3ROTFLE363BVOXDK8SEYZHGE55ZK56JYUWJ6B67P5SIP6S4V0W1ZEI6MNZKXN2NHMU0HKJDU9HDIICVH2C29O8Y4GPFD9NH5L74ZYHXQZ5JC9WLP4H3LD0K5A9B6OT89ZXMAV52N18P06R1PQKXK5C3M1P6XENDYXX9E9VWORZWENUXG9M' where id=61; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='FCAIZUEISH1PP8D1UJEMUG2LMIY4FFH9OOCLC9MNLWJ8ISEUK7H1NG74WOC5NGXJO88RW8708K3C1V0J22REYZBKA3P4OW4Z3NGSS8O0R8EQACR0W5T308R178MYU6DK7EYKZI8I34AS9X00NTTYOKPILSVXL1X2V650O1X7TOA23WJEGTCZWKF63GMDS099SC7U7G4FH9STT61069CVVJ3V1L7PVZRYRY9JQUS8DNRXGCL2O221OWZ3FYH18KB6R' where id=61; -update noar ti set v1='FCAIZUEISH1PP8D1UJEMUG2LMIY4FFH9OOCLC9MNLWJ8ISEUK7H1NG74WOC5NGXJO88RW8708K3C1V0J22REYZBKA3P4OW4Z3NGSS8O0R8EQACR0W5T308R178MYU6DK7EYKZI8I34AS9X00NTTYOKPILSVXL1X2V650O1X7TOA23WJEGTCZWKF63GMDS099SC7U7G4FH9STT61069CVVJ3V1L7PVZRYRY9JQUS8DNRXGCL2O221OWZ3FYH18KB6R' where id=61; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='VJSKU2WK2WHEIRX475ME9G71GYLRFCQ3PLISDP8AG0ML2YF1CZ3FZ7BUO4GO8367049CQZNP78901O3MYGCS8B8GEQT8JS6C8UZ6CTQSASARSYMW7AVUA36IQJQZZGIO3AHBCUEFT7ZJJ5JHEGI2N4ZAHBZP7LR4NFZEBKQH6A27G0RQTCI3E9R2DJNWZBH06GFMXS62333RIOVPDA7L35VFRGHJPN4D6ONHFH3PHQFSKIC2HBN1XOB387FP88I1M' where id=61; -update noar ti set v2='VJSKU2WK2WHEIRX475ME9G71GYLRFCQ3PLISDP8AG0ML2YF1CZ3FZ7BUO4GO8367049CQZNP78901O3MYGCS8B8GEQT8JS6C8UZ6CTQSASARSYMW7AVUA36IQJQZZGIO3AHBCUEFT7ZJJ5JHEGI2N4ZAHBZP7LR4NFZEBKQH6A27G0RQTCI3E9R2DJNWZBH06GFMXS62333RIOVPDA7L35VFRGHJPN4D6ONHFH3PHQFSKIC2HBN1XOB387FP88I1M' where id=61; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='I9SDEYSD90H16OQ8OJCZH3TSBAZU4CD4HZ8EPQ8AAADHM1JWLIZ6CZWX6H29IR5YJARZO32GSWODWNC3TZDSUMBNKI918PF1R9UOJHYJVK7DSPLRP78QHVQ7QH9G6QJO68X2RLOLDMH1O5GS3OONBFVWEEA8LAJSR1KX3T5ICPA46IDRHPXK6DKC0U7J7NIBDHKJXYCUDPUK6AA0E6ST3H4SH635J89OFQS5DCR0FH5CU757J65PJTMERPCLHIJ6K' where id=61; -update noar ti set v3='I9SDEYSD90H16OQ8OJCZH3TSBAZU4CD4HZ8EPQ8AAADHM1JWLIZ6CZWX6H29IR5YJARZO32GSWODWNC3TZDSUMBNKI918PF1R9UOJHYJVK7DSPLRP78QHVQ7QH9G6QJO68X2RLOLDMH1O5GS3OONBFVWEEA8LAJSR1KX3T5ICPA46IDRHPXK6DKC0U7J7NIBDHKJXYCUDPUK6AA0E6ST3H4SH635J89OFQS5DCR0FH5CU757J65PJTMERPCLHIJ6K' where id=61; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='NXEXZUGUPS1TTYH4MEMQCOTU47J1L06S1Y5GN3N77G8262UEXHEZ6LKSACZ0MGUE5IMHE5EMSKSG5KBANY09Q64HL579L4OJ7L51HQPT1QMNIEWV4XMH91BB9C0BTOLZRDA0RHL7KQY9IT2ICMYUHVANHFXOJCQO7YKCG8XNAXQ84EVD25315P096U36XTW85N6X6O8D2TMOGCQIMXVPN0SIRFA7WS8D9RSK79B42GDI6RB2E8FA5TEEBT5F4YCHR' where id=62; -update noar ti set v0='NXEXZUGUPS1TTYH4MEMQCOTU47J1L06S1Y5GN3N77G8262UEXHEZ6LKSACZ0MGUE5IMHE5EMSKSG5KBANY09Q64HL579L4OJ7L51HQPT1QMNIEWV4XMH91BB9C0BTOLZRDA0RHL7KQY9IT2ICMYUHVANHFXOJCQO7YKCG8XNAXQ84EVD25315P096U36XTW85N6X6O8D2TMOGCQIMXVPN0SIRFA7WS8D9RSK79B42GDI6RB2E8FA5TEEBT5F4YCHR' where id=62; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='5AU9RJ74MDW27W4LVAXBPYS3NI7AEPDVVY7OEFFS0RDKVYXX6TU08HU72MRJ4860MGPDRFYYKX3GAVGZ85K4NE7CC25JM4RF1LYRTIYH67JLAWN63DODIF0H627PC08LKYGB9FMMZVHGWRKOQU7LZPI5BTC895DB81RATMR7EV02SOREHELLO72EMTWWOIXX8XG8DHJK5FU7EU64XSTRZPTY9BE80M9XK5RO3I9L9ZGE4G0FW7Q4HBXPPUTBL13I8' where id=62; -update noar ti set v1='5AU9RJ74MDW27W4LVAXBPYS3NI7AEPDVVY7OEFFS0RDKVYXX6TU08HU72MRJ4860MGPDRFYYKX3GAVGZ85K4NE7CC25JM4RF1LYRTIYH67JLAWN63DODIF0H627PC08LKYGB9FMMZVHGWRKOQU7LZPI5BTC895DB81RATMR7EV02SOREHELLO72EMTWWOIXX8XG8DHJK5FU7EU64XSTRZPTY9BE80M9XK5RO3I9L9ZGE4G0FW7Q4HBXPPUTBL13I8' where id=62; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='70OX8IB5D52ZKY0YRQDR3P1NMCPNMWO1CQ8KFIVMTRNYKEEFGP1YP2ELLWBEHW24USBQRU6P3DGJ3FJH2TPQJ0Q4X436IGF8QC41XU74K4YOQ5YZNZGZIYY8QS8ZP9IVBHPIKTFYOO5FGAUYALC1XHDZCZUGFCAT8BBYYQXCWQJQ2Y7K72XGA7LUUFRALQG6P57OOYSADVUKYNZ75GX7AMJQBPWOAC5DNDK75XIPE6Q172FRAMRK3OLHDIRUSC14A' where id=62; -update noar ti set v2='70OX8IB5D52ZKY0YRQDR3P1NMCPNMWO1CQ8KFIVMTRNYKEEFGP1YP2ELLWBEHW24USBQRU6P3DGJ3FJH2TPQJ0Q4X436IGF8QC41XU74K4YOQ5YZNZGZIYY8QS8ZP9IVBHPIKTFYOO5FGAUYALC1XHDZCZUGFCAT8BBYYQXCWQJQ2Y7K72XGA7LUUFRALQG6P57OOYSADVUKYNZ75GX7AMJQBPWOAC5DNDK75XIPE6Q172FRAMRK3OLHDIRUSC14A' where id=62; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='122OFJ6KA5NDLUYVNC0PAVE1U3IF10MIATZ9IOTXG6GC8339IJRIFRQ2QHFKU44R0FNRV8HO75VCIQ3YRON1DMOP7TU53DC6SQG6OJ5ICNUZDT3JUI070RZPZ84U4YV5I8ATT1S8SZZ7YUCF5THZK446OFU7NV54KSBRF3LFQ4ZT5C09XDZRHP436GQEE0J8SWM57DT6RV5033VNPV6MN3NR3CLTAIMWNN2W2ON4S914094K295W0DA7T6ULBQ64R' where id=62; -update noar ti set v3='122OFJ6KA5NDLUYVNC0PAVE1U3IF10MIATZ9IOTXG6GC8339IJRIFRQ2QHFKU44R0FNRV8HO75VCIQ3YRON1DMOP7TU53DC6SQG6OJ5ICNUZDT3JUI070RZPZ84U4YV5I8ATT1S8SZZ7YUCF5THZK446OFU7NV54KSBRF3LFQ4ZT5C09XDZRHP436GQEE0J8SWM57DT6RV5033VNPV6MN3NR3CLTAIMWNN2W2ON4S914094K295W0DA7T6ULBQ64R' where id=62; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='7XPULF6CBZ1A8KZW7WRCIRVO2HJSTNY8FH7HFF6OV7KQ5XQL3CSTHZS26YHE84YD9WNW48KH1TNVT9KSAGV8M95NF31N4RRB31QAGLY5QDF1K9LKB369I8UQZZFU5KAN2CSU8ERAZHZOPV611U4L80Y9DGMN1E35JYCQJD2N0WN7SJFGG5STWU2P42KP66DZSFB317VZTL9ZT78LHMZ3VVL74QNZY1B5K0AZYL2LK5L2IU4BV0OC8PYY9X6IM6G2I' where id=63; -update noar ti set v0='7XPULF6CBZ1A8KZW7WRCIRVO2HJSTNY8FH7HFF6OV7KQ5XQL3CSTHZS26YHE84YD9WNW48KH1TNVT9KSAGV8M95NF31N4RRB31QAGLY5QDF1K9LKB369I8UQZZFU5KAN2CSU8ERAZHZOPV611U4L80Y9DGMN1E35JYCQJD2N0WN7SJFGG5STWU2P42KP66DZSFB317VZTL9ZT78LHMZ3VVL74QNZY1B5K0AZYL2LK5L2IU4BV0OC8PYY9X6IM6G2I' where id=63; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='425VW1UHS2MFSSZQYC4MJMDFT6VQUJNYA7D6JZR5TZQY0CU6O2NHSZBE3AY9YMX05Y0ER4LZXUPV6DAOS4ZJDENI9QWXWBQLM6N45VKI4EUQFV96QFLGAPA5WBL2RR5W9L96XZI76OA8LK1KMER86D3VZ7T6VQWZ15KH662NG1YEFPXNXPLZCPKSDVS2TKYAEFD0D5VAWFQ6HS2NB7V8B013ETWJ5XN9S6BXLT38U063CZDVQUPSYM6U9K8C1RFAL' where id=63; -update noar ti set v1='425VW1UHS2MFSSZQYC4MJMDFT6VQUJNYA7D6JZR5TZQY0CU6O2NHSZBE3AY9YMX05Y0ER4LZXUPV6DAOS4ZJDENI9QWXWBQLM6N45VKI4EUQFV96QFLGAPA5WBL2RR5W9L96XZI76OA8LK1KMER86D3VZ7T6VQWZ15KH662NG1YEFPXNXPLZCPKSDVS2TKYAEFD0D5VAWFQ6HS2NB7V8B013ETWJ5XN9S6BXLT38U063CZDVQUPSYM6U9K8C1RFAL' where id=63; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='FIGA0YYCOX1PAY3OZMU14NO5NRN6DH84XGAHB52YXWYFXSPIAUC5YLNAYKDPMRXJK9Q6QBS0E9T88K5NY5C9O08HJ8I3WVVTC9YOWRRHG547IW6UC0Z3ENMUD1LQ2KSELRN4SRQ0ADR0XHNTPJ9PL147WK2KLSQYMTY2P7LDGKE4M76OY6XPRUHWVMCTQM9BRAFWMU9H1PPA0OX2TU7FJWGEPD7ATSU0KV4524ZI0X9FEE95D6DQ5OLWF6HM29X2W' where id=63; -update noar ti set v2='FIGA0YYCOX1PAY3OZMU14NO5NRN6DH84XGAHB52YXWYFXSPIAUC5YLNAYKDPMRXJK9Q6QBS0E9T88K5NY5C9O08HJ8I3WVVTC9YOWRRHG547IW6UC0Z3ENMUD1LQ2KSELRN4SRQ0ADR0XHNTPJ9PL147WK2KLSQYMTY2P7LDGKE4M76OY6XPRUHWVMCTQM9BRAFWMU9H1PPA0OX2TU7FJWGEPD7ATSU0KV4524ZI0X9FEE95D6DQ5OLWF6HM29X2W' where id=63; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='NRMJA9ZDTW4RCGR5VG9S19ZYBAO8R1FRT7JMA26N2PRKIUAUBDQFB1PBD89HVWNT119VIPTYM3PE8JYT1NNMCVYEQWAPN67P0XI9BN4FA2A3Z5O7FYDO0P3FITXFDCDA19D7T82Y9FDCJ49QK3JL9L2MR1YVM1ZD7I792QOJJDAHO0HF10KKY6P99IGVVHBWFM6IQA6JD6KH83U95BQOEBX5BNJSC2CGZA1NFGCZDSPTZH5ZPMYIDPWM372O2HQPR' where id=63; -update noar ti set v3='NRMJA9ZDTW4RCGR5VG9S19ZYBAO8R1FRT7JMA26N2PRKIUAUBDQFB1PBD89HVWNT119VIPTYM3PE8JYT1NNMCVYEQWAPN67P0XI9BN4FA2A3Z5O7FYDO0P3FITXFDCDA19D7T82Y9FDCJ49QK3JL9L2MR1YVM1ZD7I792QOJJDAHO0HF10KKY6P99IGVVHBWFM6IQA6JD6KH83U95BQOEBX5BNJSC2CGZA1NFGCZDSPTZH5ZPMYIDPWM372O2HQPR' where id=63; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='XE7SDGQ7FNX96D0EETW8TBJHY74508G28F219SHG2ZUBHWQ3O631HZ6OD4GASNLZ8T92Z2C6CD1YIS59P7X79W4HYLHW2ZBF8DSX1GDZAA5YYL5IPVQWGSJZIPPY431RMDWRWTGW0NUFNTLELPVPF8GR3TG0SA7DP5YTLJE619C6HYU0WFV3QYZ7R0NOJGKCTDCJXQKSUHS4GWPPBD2JPUXSE0IZ952C98DHI6JVBDX57JNOKCQ2HM851Q7I74WL4' where id=64; -update noar ti set v0='XE7SDGQ7FNX96D0EETW8TBJHY74508G28F219SHG2ZUBHWQ3O631HZ6OD4GASNLZ8T92Z2C6CD1YIS59P7X79W4HYLHW2ZBF8DSX1GDZAA5YYL5IPVQWGSJZIPPY431RMDWRWTGW0NUFNTLELPVPF8GR3TG0SA7DP5YTLJE619C6HYU0WFV3QYZ7R0NOJGKCTDCJXQKSUHS4GWPPBD2JPUXSE0IZ952C98DHI6JVBDX57JNOKCQ2HM851Q7I74WL4' where id=64; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='O1ZV9GEHG7FW6S72BZZK030LZEX0Y1SSNG7ONY2OV7UGRHQAMCHSYRG4TG432DQN1MRT02DLPRM0YNGF47DNX4CIEYNTBW2CX55F1DJXODVM8GTK3QN997Y5HBWV5S42OZUEZTQ21L6OSO7LDOHQQTLN5FH9FBIE2PGV27CYVCJH8RFA1AVXECV1HW0ESNXI9KZ1F286EJ8RJDQIFCXB5BGNR5THFF563H30X5714SL9BWDKMY4864UICDMX5WGX1' where id=64; -update noar ti set v1='O1ZV9GEHG7FW6S72BZZK030LZEX0Y1SSNG7ONY2OV7UGRHQAMCHSYRG4TG432DQN1MRT02DLPRM0YNGF47DNX4CIEYNTBW2CX55F1DJXODVM8GTK3QN997Y5HBWV5S42OZUEZTQ21L6OSO7LDOHQQTLN5FH9FBIE2PGV27CYVCJH8RFA1AVXECV1HW0ESNXI9KZ1F286EJ8RJDQIFCXB5BGNR5THFF563H30X5714SL9BWDKMY4864UICDMX5WGX1' where id=64; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='GJC3EVDTJ11CHNZE8TJO66IGOBHT1I9004BQLJWAKI79CLZBAW7HZ73QR9HIVTEA9L3CWR9YGRA9W55EZMBSH6YNS40B1525KXYBOXGM9Z10BJ7FWS6M9SN4GD6H77O36NKX46R2YPUYZI6EB3JJ314KB0OPS5GHW1FB238IKCL3RFTGI1AC8DBO5FZZKNELMDB2JEVEC5AMGLDWQDLUGH480RN54G1FLUT5ZRB8QS2M3KR9EOGGWJ7DGZSVPSUAC' where id=64; -update noar ti set v2='GJC3EVDTJ11CHNZE8TJO66IGOBHT1I9004BQLJWAKI79CLZBAW7HZ73QR9HIVTEA9L3CWR9YGRA9W55EZMBSH6YNS40B1525KXYBOXGM9Z10BJ7FWS6M9SN4GD6H77O36NKX46R2YPUYZI6EB3JJ314KB0OPS5GHW1FB238IKCL3RFTGI1AC8DBO5FZZKNELMDB2JEVEC5AMGLDWQDLUGH480RN54G1FLUT5ZRB8QS2M3KR9EOGGWJ7DGZSVPSUAC' where id=64; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='7TGO8SWUNJIUOEW78RP3WVK20PKKBND71LFY12JWTK97D5NAHVE8T72HSHMCFQM3SGEDVYKVSBUAY2256GNICQHPZODV6WKMJGOB8CJXCDFYA9FPQ71CF3543W42E7W4RV3MHIC91VSFQZBTWLEKOC6CLF23OGY36VVLM5XMGF3134V466OL7DHTT7IU2ODZMYV07C7CH8RYXOG12EQBCNYK21UL3XM9LUSE7RK0CNWGHL0PJD9K8GBYBUNB7UGS8' where id=64; -update noar ti set v3='7TGO8SWUNJIUOEW78RP3WVK20PKKBND71LFY12JWTK97D5NAHVE8T72HSHMCFQM3SGEDVYKVSBUAY2256GNICQHPZODV6WKMJGOB8CJXCDFYA9FPQ71CF3543W42E7W4RV3MHIC91VSFQZBTWLEKOC6CLF23OGY36VVLM5XMGF3134V466OL7DHTT7IU2ODZMYV07C7CH8RYXOG12EQBCNYK21UL3XM9LUSE7RK0CNWGHL0PJD9K8GBYBUNB7UGS8' where id=64; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='TBZ6JJNFFUZLUACSYXRNADLKFK2SJ7A2JH884CTUMLZY59XUO5FJKLVU5CYPO327DVSCBOOHVXYQKVNCYHNLATG7SBZV5WSRYPYV0M1BKL11XZQJ3MYB7FGGR7L4REIBRV37COJDK1RP4Q7N78A1Q19JLPMVNDSGENPPSR46AUTFCJ4V0XADYI8CQHQ9SMNK4XU3U5K6LR2SVSH12C5L33Q6LV9ANS653E16GG6CM4SE0BJI6X9RCBYFOORL5T1VM' where id=65; -update noar ti set v0='TBZ6JJNFFUZLUACSYXRNADLKFK2SJ7A2JH884CTUMLZY59XUO5FJKLVU5CYPO327DVSCBOOHVXYQKVNCYHNLATG7SBZV5WSRYPYV0M1BKL11XZQJ3MYB7FGGR7L4REIBRV37COJDK1RP4Q7N78A1Q19JLPMVNDSGENPPSR46AUTFCJ4V0XADYI8CQHQ9SMNK4XU3U5K6LR2SVSH12C5L33Q6LV9ANS653E16GG6CM4SE0BJI6X9RCBYFOORL5T1VM' where id=65; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='C9HM3XVOLWVUD2PE7328DNI8QNARV4FXQ2MYGY6MB16ZIOAZCEZIKJE6NBKQ7QTZIFM0CY7Q9D4YH7Z39L85L93PF89SYI430WI6UTGYDAPT9ZZ8XCMOZUZPUR9VX7VN4BWY4X1ATJ21K62GZ8T59K0BNS0QEMV2106WIGYCIPWR4E5YDID3SBXL20RS2CGP9S2KUMCYPQM7BJCTW2LL9WQORNATOGPNGVU5ISK8CPJOMM668P3KI6KMVEN291ZDX' where id=65; -update noar ti set v1='C9HM3XVOLWVUD2PE7328DNI8QNARV4FXQ2MYGY6MB16ZIOAZCEZIKJE6NBKQ7QTZIFM0CY7Q9D4YH7Z39L85L93PF89SYI430WI6UTGYDAPT9ZZ8XCMOZUZPUR9VX7VN4BWY4X1ATJ21K62GZ8T59K0BNS0QEMV2106WIGYCIPWR4E5YDID3SBXL20RS2CGP9S2KUMCYPQM7BJCTW2LL9WQORNATOGPNGVU5ISK8CPJOMM668P3KI6KMVEN291ZDX' where id=65; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='AB9CA313QSU2P6OZCZ7JP715YRCJT1AWY2L65I5SL3OXWP3IBT39UGK7PITXVVOAEP47R24FU1WXC9DW9J89WSEDE2V9YC0G8KNSVYMALVFMNTKHNMMYNAXKANUAA3DS1SJAWMANGF6UUPD9KFHI8XVB1EFQ8FJL87OWM6TR9ERXVQ8EBT9A4XXQ8OAEPVPQ6POWXUKFTT7D3ZM9ABLQ611MMT1ABVZVXOK8L4RMOYD883OOT10IW27R37CU78BHV' where id=65; -update noar ti set v2='AB9CA313QSU2P6OZCZ7JP715YRCJT1AWY2L65I5SL3OXWP3IBT39UGK7PITXVVOAEP47R24FU1WXC9DW9J89WSEDE2V9YC0G8KNSVYMALVFMNTKHNMMYNAXKANUAA3DS1SJAWMANGF6UUPD9KFHI8XVB1EFQ8FJL87OWM6TR9ERXVQ8EBT9A4XXQ8OAEPVPQ6POWXUKFTT7D3ZM9ABLQ611MMT1ABVZVXOK8L4RMOYD883OOT10IW27R37CU78BHV' where id=65; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='16S87X1BMKC4BRHCCI130S0NGSXN9DC2ZKD86C8450J5LCWLHMTBYA55BAXLYIQKY8AE5NGNR69WAQHURP6Q8690UPTSVV7NJS8DPUYSFMIBQI4FVPOKV5I109KZ1GK90BQVBF3IRSHFC92E8IRPYMR3D9GZ6M8TR8HTLZROF8A554AQOEZQO8Z1OA6Y3YLMG8G2D1MHIRSRDOA06ZP5S8OB1YZYB3IIKXQS3T3T94NKFIWWW2TK31GZVG027PGQZ' where id=65; -update noar ti set v3='16S87X1BMKC4BRHCCI130S0NGSXN9DC2ZKD86C8450J5LCWLHMTBYA55BAXLYIQKY8AE5NGNR69WAQHURP6Q8690UPTSVV7NJS8DPUYSFMIBQI4FVPOKV5I109KZ1GK90BQVBF3IRSHFC92E8IRPYMR3D9GZ6M8TR8HTLZROF8A554AQOEZQO8Z1OA6Y3YLMG8G2D1MHIRSRDOA06ZP5S8OB1YZYB3IIKXQS3T3T94NKFIWWW2TK31GZVG027PGQZ' where id=65; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='RZHB0X0RWNC1F7JAFKJJOVMY4KIW4OB1D7X9LRP3WN400ER5MUHK6BVPIMH9ZW3K74MT8JCEXIOI3MQ59Z5DPECLTM7JENDYCLSWWH0UX2DMOBSFFET0LBQO0EFP38AQ09FJQL62ZL8NZLCQ4IYO9SRDZMN8I0ISS43J2P2T4D2TJUAETUKI16UIWJTVJ0OCTN1MNJV1SQILIY5VL4ER48GM4AUXS5SHFP9CBDE0KNWFG0LF19RY1TWX0MQLT1F99' where id=66; -update noar ti set v0='RZHB0X0RWNC1F7JAFKJJOVMY4KIW4OB1D7X9LRP3WN400ER5MUHK6BVPIMH9ZW3K74MT8JCEXIOI3MQ59Z5DPECLTM7JENDYCLSWWH0UX2DMOBSFFET0LBQO0EFP38AQ09FJQL62ZL8NZLCQ4IYO9SRDZMN8I0ISS43J2P2T4D2TJUAETUKI16UIWJTVJ0OCTN1MNJV1SQILIY5VL4ER48GM4AUXS5SHFP9CBDE0KNWFG0LF19RY1TWX0MQLT1F99' where id=66; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='Y84RXR00CGIVCN7CLVXLKAG90IE913CE53WSJDPM2NSNZ6U7I2JM3YLTZKZKHHUNG8F3PELUEBLHTGLQAYWKJ7MJO4KRE11FCL6GUMCP52JUCHR2V23N3ZI01E6T69RB92TM92TXCHVIM4L2JMH3HTULVNNXG6FZT2Z7GE97TXELGE2RFGZ251G6UKVVN6YFI3RGOTNNSWQ08V7TA9SGXE8L9FMYG28JW5T11SC5FP1VQNCA91DK0N6PHS5YCI877' where id=66; -update noar ti set v1='Y84RXR00CGIVCN7CLVXLKAG90IE913CE53WSJDPM2NSNZ6U7I2JM3YLTZKZKHHUNG8F3PELUEBLHTGLQAYWKJ7MJO4KRE11FCL6GUMCP52JUCHR2V23N3ZI01E6T69RB92TM92TXCHVIM4L2JMH3HTULVNNXG6FZT2Z7GE97TXELGE2RFGZ251G6UKVVN6YFI3RGOTNNSWQ08V7TA9SGXE8L9FMYG28JW5T11SC5FP1VQNCA91DK0N6PHS5YCI877' where id=66; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='T2DJLNUNRQ8L67PKZJAMR7OZKZBA64875NT0OL1ATZ4AJPY296XJGNMNMXQV5OKPJCJ5FZL637GVDVK06ALA12G6VOOOXGVVV9ASVN2CG4HWKWVRIV02SV89XN6QSCVTZ01HKRS89HJRBPJZLEDLBTS4JF2DE7VZF872C83ZCD9KD3K2XTE9Y4ZTGD8TB2KX9HTEI0PRS62ZO445QWHLXCI72NFPQA63K77QN9DPQ8AC4O8JXIUX9WLSC4BREEJWZ' where id=66; -update noar ti set v2='T2DJLNUNRQ8L67PKZJAMR7OZKZBA64875NT0OL1ATZ4AJPY296XJGNMNMXQV5OKPJCJ5FZL637GVDVK06ALA12G6VOOOXGVVV9ASVN2CG4HWKWVRIV02SV89XN6QSCVTZ01HKRS89HJRBPJZLEDLBTS4JF2DE7VZF872C83ZCD9KD3K2XTE9Y4ZTGD8TB2KX9HTEI0PRS62ZO445QWHLXCI72NFPQA63K77QN9DPQ8AC4O8JXIUX9WLSC4BREEJWZ' where id=66; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='OJ21PWZ1P9AFTGF3E8RCJSQ0JEZJZIO2A6O9MZ0TH3FJ2GQS5ZB5KNDWI9EEEGAQPIQTUFP8V0SMUJJ1TDOS3DCGRRE3ZHXB8D37U1BYMPGATU1FM9Y5AJTS5SHBL1BMNA1FARSF317SMVF590AF5PBL27RLPSEQF6S1BY6228EBC60VWOAE6426KC8NB0NXPCPCSN5TM6FIMTIK5YCZSQBA1V1KZURMROCGUU6KVQ8ZJFBXL5LLOSJLN0L2M7XTX' where id=66; -update noar ti set v3='OJ21PWZ1P9AFTGF3E8RCJSQ0JEZJZIO2A6O9MZ0TH3FJ2GQS5ZB5KNDWI9EEEGAQPIQTUFP8V0SMUJJ1TDOS3DCGRRE3ZHXB8D37U1BYMPGATU1FM9Y5AJTS5SHBL1BMNA1FARSF317SMVF590AF5PBL27RLPSEQF6S1BY6228EBC60VWOAE6426KC8NB0NXPCPCSN5TM6FIMTIK5YCZSQBA1V1KZURMROCGUU6KVQ8ZJFBXL5LLOSJLN0L2M7XTX' where id=66; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='NQLQUQ92HOZ7R8CA72CBMD7427M960IBKN1VK4OXT2VS1OKRBVUKQYV2SK8FFJUZNG7SNWMC47QOMZXY6KVR8TR3B4JW8XS6B7BSUODTD758N1AEKZNHYWX5TLN44DJKPP0CY8XS7OBI25P7NVOZIA1303QQEZF43ENG7STQPL5ZH26ANXKD9SQAGCSQWBGSRNQSJDY53DEF1HT6798XVW4XVLW0AYJZ0KUGXJO94YJVYY4UJKIJ4FTEVC03JM0M7' where id=67; -update noar ti set v0='NQLQUQ92HOZ7R8CA72CBMD7427M960IBKN1VK4OXT2VS1OKRBVUKQYV2SK8FFJUZNG7SNWMC47QOMZXY6KVR8TR3B4JW8XS6B7BSUODTD758N1AEKZNHYWX5TLN44DJKPP0CY8XS7OBI25P7NVOZIA1303QQEZF43ENG7STQPL5ZH26ANXKD9SQAGCSQWBGSRNQSJDY53DEF1HT6798XVW4XVLW0AYJZ0KUGXJO94YJVYY4UJKIJ4FTEVC03JM0M7' where id=67; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='L4O1ZCQD2DXXFBP1M6CDV7B29H2SNGME8BL5EMSLFCJORX63VDHZ10K8RBA80RUPS8DGOVWGP5G296HMDS8NUZC3PQ5ZA8FH0ECEXWWCQCAVVU58PG0CB7R8G2L2UN7F0GKX4KMWOJZ02G367WAIV81GM1VNO2ECP1DBIIWRSCVALOSD3E7XQL49X7HD3MJ8PPZPTP3D4SG62V63UZZP0PGTJOGWHWI84Z0Q46SVUZTSVT515GDDZ3P6BVAJBY2OA' where id=67; -update noar ti set v1='L4O1ZCQD2DXXFBP1M6CDV7B29H2SNGME8BL5EMSLFCJORX63VDHZ10K8RBA80RUPS8DGOVWGP5G296HMDS8NUZC3PQ5ZA8FH0ECEXWWCQCAVVU58PG0CB7R8G2L2UN7F0GKX4KMWOJZ02G367WAIV81GM1VNO2ECP1DBIIWRSCVALOSD3E7XQL49X7HD3MJ8PPZPTP3D4SG62V63UZZP0PGTJOGWHWI84Z0Q46SVUZTSVT515GDDZ3P6BVAJBY2OA' where id=67; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='Y3ORAVZHZ2CKBO493F9OKE64G80RCXG5KNZFEFP1O3R516BU8EH6SP8GZ4S3WPZ6WIGGHDLNJQXINF3EIZSF9VJEOYDLN7ZFHJL32W9SBTBGBECXR5QCUZBB67G7O1PIT4RSHCJJRJMD8WXLEFV827SY4KBY6JN9EFRD2HPYPGK3VJE7AUMB8Q6HZ8GOIQGTJHP0LUJW8CYIVP7NRFBQZATBALQTNRM0ISS6BPG8QGS9K88N4XEMYSDE7QK7JO4V4' where id=67; -update noar ti set v2='Y3ORAVZHZ2CKBO493F9OKE64G80RCXG5KNZFEFP1O3R516BU8EH6SP8GZ4S3WPZ6WIGGHDLNJQXINF3EIZSF9VJEOYDLN7ZFHJL32W9SBTBGBECXR5QCUZBB67G7O1PIT4RSHCJJRJMD8WXLEFV827SY4KBY6JN9EFRD2HPYPGK3VJE7AUMB8Q6HZ8GOIQGTJHP0LUJW8CYIVP7NRFBQZATBALQTNRM0ISS6BPG8QGS9K88N4XEMYSDE7QK7JO4V4' where id=67; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='UIHTUUTLYHOSI338HKYJT9SZ1QQXGDRXFK1F3LM8GLUFMLMQF0360UD8ZLAGYKHMR9XZ6T4HJV1SWJE40DYN9JEVQPPMX6816TP9LGA0QCWALOLQ6KZUVSS79B20E2CN5GGWNWF9DQCZGWTXDNLVDNDPDPEZ4SEWZ2W8IF9HHBY5NL888EB0GQFPTW5HEU4GGZDAD9TG46YYGKO6R78N9O2JRKHK31AHT73V6E988961WMGZPAQJ1N35B0IHEFMBQ' where id=67; -update noar ti set v3='UIHTUUTLYHOSI338HKYJT9SZ1QQXGDRXFK1F3LM8GLUFMLMQF0360UD8ZLAGYKHMR9XZ6T4HJV1SWJE40DYN9JEVQPPMX6816TP9LGA0QCWALOLQ6KZUVSS79B20E2CN5GGWNWF9DQCZGWTXDNLVDNDPDPEZ4SEWZ2W8IF9HHBY5NL888EB0GQFPTW5HEU4GGZDAD9TG46YYGKO6R78N9O2JRKHK31AHT73V6E988961WMGZPAQJ1N35B0IHEFMBQ' where id=67; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='O0UQFUA1A9SBEGIMESDN1MD5QAPA5ZO7S6A3SD5EFD6MNDWHDMM78TA4X0I5YMKQ6CZMZP49LCDV2XDNJD7P3OXK199JRHAT6D7134CIPMWB1N3WITKR27X6LS7CUUK8FLYOABTRAZNL75FORY735UWG6HFHTWCJ4IBHX55G0J94F3NVA0L7Z6ZNS0EFF2EK767IN7PBAE2J3G9GLB886NL70HYWIW9XO02VPS8DB0HPHAZDL0AD1SSGBC0VLB3E9' where id=68; -update noar ti set v0='O0UQFUA1A9SBEGIMESDN1MD5QAPA5ZO7S6A3SD5EFD6MNDWHDMM78TA4X0I5YMKQ6CZMZP49LCDV2XDNJD7P3OXK199JRHAT6D7134CIPMWB1N3WITKR27X6LS7CUUK8FLYOABTRAZNL75FORY735UWG6HFHTWCJ4IBHX55G0J94F3NVA0L7Z6ZNS0EFF2EK767IN7PBAE2J3G9GLB886NL70HYWIW9XO02VPS8DB0HPHAZDL0AD1SSGBC0VLB3E9' where id=68; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='5LTCSHBTNBGPUU41BXA57FDZGA5PRRI9JBPX8130GUNTPSPJ9VM7Q20AOICZ4IZXW6MRCGF47W6T0J3BKD4UI2U21BINN9E1VB3MU7GBTBAODQZTMI8EZKEYVPE5ANUMS7MAPOW7H30D2PHE4XDNSPQ6C371EV3GJ7PK13YD3N1D4LIJ4R37RQ5R5HFT1C16OCAEZIVDKYPGXZ2ME7CDLY465I1OH93LQ0VHHF2WIFBG98N2LPYSOFTVZU8GH84CV' where id=68; -update noar ti set v1='5LTCSHBTNBGPUU41BXA57FDZGA5PRRI9JBPX8130GUNTPSPJ9VM7Q20AOICZ4IZXW6MRCGF47W6T0J3BKD4UI2U21BINN9E1VB3MU7GBTBAODQZTMI8EZKEYVPE5ANUMS7MAPOW7H30D2PHE4XDNSPQ6C371EV3GJ7PK13YD3N1D4LIJ4R37RQ5R5HFT1C16OCAEZIVDKYPGXZ2ME7CDLY465I1OH93LQ0VHHF2WIFBG98N2LPYSOFTVZU8GH84CV' where id=68; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='7U7H6UOAQF6DYKDBH6VS9N2IJXDFGH3CADHBUN0C2UH1KBSSRTFAFGIA9YV81OP2D2G7BGCX2VCGV72AZL8H6VZDSOIUQHO9OR23F086DZDA32982W3Z67A8KOTRGSW8WY1ATQO9M4W6T7X7LCJ2A2QO3TW4NTE5BPOOJL2VZV02MMVCGMZR30XSNMKTLUYR9WY14CXKNCDXQ5F6JYW0OTN9DBYFC9QXL5KK8QS2V84LDFX7I0NJ0V4NPEYFSYIQR' where id=68; -update noar ti set v2='7U7H6UOAQF6DYKDBH6VS9N2IJXDFGH3CADHBUN0C2UH1KBSSRTFAFGIA9YV81OP2D2G7BGCX2VCGV72AZL8H6VZDSOIUQHO9OR23F086DZDA32982W3Z67A8KOTRGSW8WY1ATQO9M4W6T7X7LCJ2A2QO3TW4NTE5BPOOJL2VZV02MMVCGMZR30XSNMKTLUYR9WY14CXKNCDXQ5F6JYW0OTN9DBYFC9QXL5KK8QS2V84LDFX7I0NJ0V4NPEYFSYIQR' where id=68; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='JDNPQQDCJE6LWW34038G31CBSUGT4QRTN0R2AMD0SEBD5YOK3MA1YKOR2QAEGKREZVWBDTHC0CFEUQAPGJBGH7FFAT7CAO6NAL4AG4XC7UI0SVHYN5TV2WCV0XNMHVYHN8IIFKMWGE7TWDHMNK5GZ8YHF8GA45WP64FIYL1Y8VDRB7FOLZZRKNWZIEWNN4KF4O41KLATOID4WCRPDKLDR1BS5SDMXREX3EL4JMNIJW79BJKEKQNDQA1J65IOUEWW1' where id=68; -update noar ti set v3='JDNPQQDCJE6LWW34038G31CBSUGT4QRTN0R2AMD0SEBD5YOK3MA1YKOR2QAEGKREZVWBDTHC0CFEUQAPGJBGH7FFAT7CAO6NAL4AG4XC7UI0SVHYN5TV2WCV0XNMHVYHN8IIFKMWGE7TWDHMNK5GZ8YHF8GA45WP64FIYL1Y8VDRB7FOLZZRKNWZIEWNN4KF4O41KLATOID4WCRPDKLDR1BS5SDMXREX3EL4JMNIJW79BJKEKQNDQA1J65IOUEWW1' where id=68; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='CWBTRY3CREKBD0E8A6PVNRT1SJHA1EPS47GWEZ911SF6PZCP0R6D11O0VQFLXN1Z3QJ30T0L5SWLIB58DBYZ2LMI9K4PNWWL15WZ7RXMB34MCXXSBV3A9ML79QU4A5QA13MO8OX17KR39UZWXRYQPER9AQULFUDBSJF8H6AUDCSP0LKLX2IQZ13YWNWHLS47ETQHUWU6BGRQIQUQN50LDVZWLMUJRZB4VILPO5HGJKQ9R9OD7SYZ8DF2J82GN3DHX' where id=69; -update noar ti set v0='CWBTRY3CREKBD0E8A6PVNRT1SJHA1EPS47GWEZ911SF6PZCP0R6D11O0VQFLXN1Z3QJ30T0L5SWLIB58DBYZ2LMI9K4PNWWL15WZ7RXMB34MCXXSBV3A9ML79QU4A5QA13MO8OX17KR39UZWXRYQPER9AQULFUDBSJF8H6AUDCSP0LKLX2IQZ13YWNWHLS47ETQHUWU6BGRQIQUQN50LDVZWLMUJRZB4VILPO5HGJKQ9R9OD7SYZ8DF2J82GN3DHX' where id=69; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='9KPQEQ1AJ93X9M12FUDH6140V1L3TYIFT27QU4QRII81VE6TKF4LVYJV8F05G38ADH6Q42G6UL0PZXO2Y2CJM2P6N8FJ2XZBAWK0MGFXYT88466EVQ3SD7LJXC879V813NQ01HQ324TDPZABXQJH3HRW9MZE4DOIX37JCBP2Z0RHKHWTC7FGWVFSN1P1IR96W9T7OE6IKIT89JLBX4PUUUUQUR258XQMZ9ZV3JOO5IB8X9F3QPBPFGIZXZH7M1D5E' where id=69; -update noar ti set v1='9KPQEQ1AJ93X9M12FUDH6140V1L3TYIFT27QU4QRII81VE6TKF4LVYJV8F05G38ADH6Q42G6UL0PZXO2Y2CJM2P6N8FJ2XZBAWK0MGFXYT88466EVQ3SD7LJXC879V813NQ01HQ324TDPZABXQJH3HRW9MZE4DOIX37JCBP2Z0RHKHWTC7FGWVFSN1P1IR96W9T7OE6IKIT89JLBX4PUUUUQUR258XQMZ9ZV3JOO5IB8X9F3QPBPFGIZXZH7M1D5E' where id=69; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='WZ283O0C7H4BW4981I23P8ZLAMAKQ2DGGARBGV5HVC3M4SV0KZW87K8XXIJKQJN2ELB6OFF7YKG5PTB0DWWZNIE72BPQLFKZWN0Z2U0YUUPKBS2R6QRGNRUXU0H7RXHVNNSD53NJ46PJ1CZ8A8JB23R3ZOLVOU6PUVC0SNL2NSVJJ2N0EK3CKPT4FADU1PN61U2VQIFM9VTVEXX3Q7GFLINQXNHNB53VJO3LZEV8TY5LJJ1DGTDNKWHULWUE3UGBS' where id=69; -update noar ti set v2='WZ283O0C7H4BW4981I23P8ZLAMAKQ2DGGARBGV5HVC3M4SV0KZW87K8XXIJKQJN2ELB6OFF7YKG5PTB0DWWZNIE72BPQLFKZWN0Z2U0YUUPKBS2R6QRGNRUXU0H7RXHVNNSD53NJ46PJ1CZ8A8JB23R3ZOLVOU6PUVC0SNL2NSVJJ2N0EK3CKPT4FADU1PN61U2VQIFM9VTVEXX3Q7GFLINQXNHNB53VJO3LZEV8TY5LJJ1DGTDNKWHULWUE3UGBS' where id=69; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='1TTQY4D3DHY1P21FNR3CNXLQQIVOY6WUEZEJ0QIUJOU3BLMVGUNGFJJP7XIN7L1YZ4MBZAIDQHURMY4LTKG6MKS819UIZ3PJH20084A0VTQLS79V4CQXQ7UH4R9R1L56ZE38HYG5TJJ5KHTRMOJK7Q5JXSWXH44XUUASL7DHZX0QQ0MJ6E602DSGL36FLGT6WH406T4CLPMW5XM02V1K4O7YV7GCVXI5K8ZD2UECR1HLUCOC87ZKT0MC2AF6K382Z' where id=69; -update noar ti set v3='1TTQY4D3DHY1P21FNR3CNXLQQIVOY6WUEZEJ0QIUJOU3BLMVGUNGFJJP7XIN7L1YZ4MBZAIDQHURMY4LTKG6MKS819UIZ3PJH20084A0VTQLS79V4CQXQ7UH4R9R1L56ZE38HYG5TJJ5KHTRMOJK7Q5JXSWXH44XUUASL7DHZX0QQ0MJ6E602DSGL36FLGT6WH406T4CLPMW5XM02V1K4O7YV7GCVXI5K8ZD2UECR1HLUCOC87ZKT0MC2AF6K382Z' where id=69; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='L8CTJ4X3CQ3TNN312LONYIHMPRJ9QSTCAVW26HK4LWXFOH4EWPDZ1QGP2H89ESAW1W4WVH7J0KT7FGJ5X5LGZOM3A8BKAXL7H1HBZ907LNRGR2UITF15GIYN8KEFD9UW41E3WYQBZXNMMGE2NRCFLOA3KGVPZ87ERE01C268CGBPY5VOPKY6JME8ENCV8UT8PYGEM39C0RRUIVXCK1JK3AC39KXFHYRMUA420WI24D3F68U2U3IJQBEL2YHC9TN4W' where id=70; -update noar ti set v0='L8CTJ4X3CQ3TNN312LONYIHMPRJ9QSTCAVW26HK4LWXFOH4EWPDZ1QGP2H89ESAW1W4WVH7J0KT7FGJ5X5LGZOM3A8BKAXL7H1HBZ907LNRGR2UITF15GIYN8KEFD9UW41E3WYQBZXNMMGE2NRCFLOA3KGVPZ87ERE01C268CGBPY5VOPKY6JME8ENCV8UT8PYGEM39C0RRUIVXCK1JK3AC39KXFHYRMUA420WI24D3F68U2U3IJQBEL2YHC9TN4W' where id=70; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='WS6AEDXCXTALDXH2ETPHA58G21M6WVU4D47B5DRDQB98BKKMK9IX2D6CBHHMQXQZH0MDNI1GLRRJYL1IQ526MENRF3IFDIV3WVIR4ZE6KLVENRCULHPSMHD6LDSYJAELSOPWPQFLLJNI7C7DUDGD1G5YZEKSHSFT5QWN4IL8RNJLON2NXY40BKYWG40UCN6P7FS8GJJ0IR717YAOA980AGDEXFC2ANFKYSMT2S013HBE8CDTVWGXCACAHBIYJQYYA' where id=70; -update noar ti set v1='WS6AEDXCXTALDXH2ETPHA58G21M6WVU4D47B5DRDQB98BKKMK9IX2D6CBHHMQXQZH0MDNI1GLRRJYL1IQ526MENRF3IFDIV3WVIR4ZE6KLVENRCULHPSMHD6LDSYJAELSOPWPQFLLJNI7C7DUDGD1G5YZEKSHSFT5QWN4IL8RNJLON2NXY40BKYWG40UCN6P7FS8GJJ0IR717YAOA980AGDEXFC2ANFKYSMT2S013HBE8CDTVWGXCACAHBIYJQYYA' where id=70; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='Z83PMP1JR5548HLUP4A4OU6EKVP30L1Q7K26QS9J6RW7J909G2I56M3UAXPMX3UELF9OUNDM0OCPN3M2ONTBNON6UJ0OLS0LKW01XENZLR2J24Z5WG7GOFSLQ6L5T3HQKGZKKPG44TR1J5YND1EZE5KNR39PBPDG4ZY38O8NWHIE73EW67YP15C2LJJIVFXZQQ0W6DDCV5W9FKP7RZF55DER2B6X1B9QN3QZ66A1HIWSALPEF1ZYIL9H140FK0X1K' where id=70; -update noar ti set v2='Z83PMP1JR5548HLUP4A4OU6EKVP30L1Q7K26QS9J6RW7J909G2I56M3UAXPMX3UELF9OUNDM0OCPN3M2ONTBNON6UJ0OLS0LKW01XENZLR2J24Z5WG7GOFSLQ6L5T3HQKGZKKPG44TR1J5YND1EZE5KNR39PBPDG4ZY38O8NWHIE73EW67YP15C2LJJIVFXZQQ0W6DDCV5W9FKP7RZF55DER2B6X1B9QN3QZ66A1HIWSALPEF1ZYIL9H140FK0X1K' where id=70; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='3XLTDHJ440OZLMUBYG84ICLXZ9YSWHWWX8E6680O5KNU80DA9FE7WX6IKP0D7W3LTNU1Q4AWH1MXRDM54LE878NJJUWL1ZA89ZGK15Z4W7XWS5ML4CXJTMZKMAWMJ5VBUN3MI3USBHHMMMCGW5C2IX3WGAN87RRSXCK6ZI9AUGRC8A66PDL9MJ2S0UVYHQRXHJNDE1K4R2WIVMJS7YJMYUAMJDL7401QSKWVXZH2U56B2XBEM2BQ7HH95PGY4ISJP' where id=70; -update noar ti set v3='3XLTDHJ440OZLMUBYG84ICLXZ9YSWHWWX8E6680O5KNU80DA9FE7WX6IKP0D7W3LTNU1Q4AWH1MXRDM54LE878NJJUWL1ZA89ZGK15Z4W7XWS5ML4CXJTMZKMAWMJ5VBUN3MI3USBHHMMMCGW5C2IX3WGAN87RRSXCK6ZI9AUGRC8A66PDL9MJ2S0UVYHQRXHJNDE1K4R2WIVMJS7YJMYUAMJDL7401QSKWVXZH2U56B2XBEM2BQ7HH95PGY4ISJP' where id=70; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='PAQOHGNNE5EV7QDDR0EKMB9NKIEPRJFWPRBN2A4BU0WSPGZBHM4UOQNX0HB7RF3C1CNACXVEFABO1F0JJ5W8B34MV5FBTCSH7DC6FRXWIWMTS46R349YJ8TCVBMU2IM644UL0OYGPTV607GK5D3HZE8J066OJ4W0T65GZHQ58OWUAQG2JD4MP4R87O280JS1ZRXR6L6BX6HETQO63M43JWJ1MXMEDX0KXGFFQ4BQTTVVYGZ9PEW3STAXG69H3YCDE' where id=71; -update noar ti set v0='PAQOHGNNE5EV7QDDR0EKMB9NKIEPRJFWPRBN2A4BU0WSPGZBHM4UOQNX0HB7RF3C1CNACXVEFABO1F0JJ5W8B34MV5FBTCSH7DC6FRXWIWMTS46R349YJ8TCVBMU2IM644UL0OYGPTV607GK5D3HZE8J066OJ4W0T65GZHQ58OWUAQG2JD4MP4R87O280JS1ZRXR6L6BX6HETQO63M43JWJ1MXMEDX0KXGFFQ4BQTTVVYGZ9PEW3STAXG69H3YCDE' where id=71; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='O6BYLZL1SQUJLH6GC404WDYA8ULDGUMAV3UD22TEH4CRWEH31J5YUXZBNTQHEHRGF8R6LCJ6CKYBMSMTF0F6CBK5Z96WMZ6BZAF4H3SYTI2321X7QVRR0UWXPID501I9ROJ2YUGZU81PLYLXRB0FEVKCAA4QQTOXOMGUWY51WLRBR44V1R86BUYC4GEIQQVHNIDYKMUE75QWO8YEX37S7G2K3RHY35GXZHGHW602E3913SZCFDALS1597S6FIMSI5' where id=71; -update noar ti set v1='O6BYLZL1SQUJLH6GC404WDYA8ULDGUMAV3UD22TEH4CRWEH31J5YUXZBNTQHEHRGF8R6LCJ6CKYBMSMTF0F6CBK5Z96WMZ6BZAF4H3SYTI2321X7QVRR0UWXPID501I9ROJ2YUGZU81PLYLXRB0FEVKCAA4QQTOXOMGUWY51WLRBR44V1R86BUYC4GEIQQVHNIDYKMUE75QWO8YEX37S7G2K3RHY35GXZHGHW602E3913SZCFDALS1597S6FIMSI5' where id=71; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='A3GIY8NITTWHH2L3N0MSGF0KWAWHI3M03XW96F06XDL7WKMYLC13QOGXHF2JZL6GX26103D9NZ52L5MC1HE5WPW354646YLDQN4D1WRU5XGG6D5AULWK17LLQPQLDG3647HW5V7QVPXPHLJHKENXERT3U86XKZAKCG7W596369TEVOZ1NC9BL9SYAX7UZQPOLAPQ2KTDQZH21883OEK5ED7TW4AT5XEE6R1H4B3RL1CFID5F855G5MQPIG83XQOWV' where id=71; -update noar ti set v2='A3GIY8NITTWHH2L3N0MSGF0KWAWHI3M03XW96F06XDL7WKMYLC13QOGXHF2JZL6GX26103D9NZ52L5MC1HE5WPW354646YLDQN4D1WRU5XGG6D5AULWK17LLQPQLDG3647HW5V7QVPXPHLJHKENXERT3U86XKZAKCG7W596369TEVOZ1NC9BL9SYAX7UZQPOLAPQ2KTDQZH21883OEK5ED7TW4AT5XEE6R1H4B3RL1CFID5F855G5MQPIG83XQOWV' where id=71; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='PPX1NYCY4YLL1DWXKL67Y7S3AMQMWWYV5LWRZXIH5X2LYLVJP0RYSOBY2FUGB6EJ0WQDY52EHEGS5HTWS2P1EVIM4FIU227YUO1SF4NY3LYV9GMU4E74870A1HD86ZHJJN068LVVIWHZJXM1BBQEFLYTN6T7O265LDLCB846F84J1WOVGR918ZHD41QP60TTEFU9ZAYGTDNG6DD3J6P7RV2A78CWQCHX41FL5J9RZ5ZAZ55K5EYQN8CZ6DNPEUA2U' where id=71; -update noar ti set v3='PPX1NYCY4YLL1DWXKL67Y7S3AMQMWWYV5LWRZXIH5X2LYLVJP0RYSOBY2FUGB6EJ0WQDY52EHEGS5HTWS2P1EVIM4FIU227YUO1SF4NY3LYV9GMU4E74870A1HD86ZHJJN068LVVIWHZJXM1BBQEFLYTN6T7O265LDLCB846F84J1WOVGR918ZHD41QP60TTEFU9ZAYGTDNG6DD3J6P7RV2A78CWQCHX41FL5J9RZ5ZAZ55K5EYQN8CZ6DNPEUA2U' where id=71; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='ZS6ZZKQYHKIX6DIOVRMVY0VFUG3BGQQIGUMYOVTFNRZY0WN8YF7O6RUYAH5O3ZG33H2Z65FQQGZQE1RWKFQD79CH41SNVCREUSET3IZ1F958FHTPNWBCK0M8YM0309ACJXP8XLSCMDA62D98GZQQJ68COODW35A9EUESL0S8HGZ7TJX0D12SNCDNTPMVQHLLFOV404IRU8KEFCK71JWV77C8XP3RERERLV2U95N6P19Z2HZHWKZ1BWXK548HM89KS' where id=72; -update noar ti set v0='ZS6ZZKQYHKIX6DIOVRMVY0VFUG3BGQQIGUMYOVTFNRZY0WN8YF7O6RUYAH5O3ZG33H2Z65FQQGZQE1RWKFQD79CH41SNVCREUSET3IZ1F958FHTPNWBCK0M8YM0309ACJXP8XLSCMDA62D98GZQQJ68COODW35A9EUESL0S8HGZ7TJX0D12SNCDNTPMVQHLLFOV404IRU8KEFCK71JWV77C8XP3RERERLV2U95N6P19Z2HZHWKZ1BWXK548HM89KS' where id=72; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='8506R6MY8CHZK93TCT1WQHYWPSQOEF6U0KDMF34TRTE3E4LGKF1OO48PAW2WEWMIYM2PVX4PSVAL46KI0YFC85AXQL6YV6WDBU4193C83H6NY3W27KTB3E3504ZTRCGIVHOMY41X91JCCRG99PZBW6ZQ55IL2X062NZVFEGV9GWY73T790FAGXBGKX9D1F49OW2SLICLGZ2O9VNX61YONO73JQUQWGPPOY1HDFWOLVNXRGWHLWRWGQ5AAMZQIT17U' where id=72; -update noar ti set v1='8506R6MY8CHZK93TCT1WQHYWPSQOEF6U0KDMF34TRTE3E4LGKF1OO48PAW2WEWMIYM2PVX4PSVAL46KI0YFC85AXQL6YV6WDBU4193C83H6NY3W27KTB3E3504ZTRCGIVHOMY41X91JCCRG99PZBW6ZQ55IL2X062NZVFEGV9GWY73T790FAGXBGKX9D1F49OW2SLICLGZ2O9VNX61YONO73JQUQWGPPOY1HDFWOLVNXRGWHLWRWGQ5AAMZQIT17U' where id=72; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='XUNKIDUBM6FBMBL0XZCLA52WRD2IGF993WZY678TD8ROLU3T32M3B4R867IKX1DZ614N4YF92YOVPK0UPTMHJPR56HMKUOOXEGV9FGNA2SATAHQH2ME0VFZ7J92G14E9QP39VUJA755XVJJPY556N4I9595JMV8AT7ZBS4R02MWXDLZ0B9WGT25FKQH1I851FBCE5IA7OD8LCUVBR5NB58ZCUBF7BAFZ1NIKUCVYU62M08HEF2TH3DSFPD6UDYURE' where id=72; -update noar ti set v2='XUNKIDUBM6FBMBL0XZCLA52WRD2IGF993WZY678TD8ROLU3T32M3B4R867IKX1DZ614N4YF92YOVPK0UPTMHJPR56HMKUOOXEGV9FGNA2SATAHQH2ME0VFZ7J92G14E9QP39VUJA755XVJJPY556N4I9595JMV8AT7ZBS4R02MWXDLZ0B9WGT25FKQH1I851FBCE5IA7OD8LCUVBR5NB58ZCUBF7BAFZ1NIKUCVYU62M08HEF2TH3DSFPD6UDYURE' where id=72; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='P32HEL3LFISXRKR2F7E9CUB5F0F3JPLVR6XPBWMYCEXXTDJHI96037TFU1EKAWV9BRAMJUCMUG4W6PHZF8JOXZ5S3OD7R41ALZ77UB09DB1UYF4L5L4AT5O79UHJX5L0PSP651N11UREL7ZH9QFT3P4ODYBW1DL191AOIBWN42UM82BNSQ56RM73M4AM0UYYKOIACOKHXG4IO93M64CIWVZHF8AC6LKEVV4T9M4WNOMEJE5JK7WNJ0A45E5WFAY72' where id=72; -update noar ti set v3='P32HEL3LFISXRKR2F7E9CUB5F0F3JPLVR6XPBWMYCEXXTDJHI96037TFU1EKAWV9BRAMJUCMUG4W6PHZF8JOXZ5S3OD7R41ALZ77UB09DB1UYF4L5L4AT5O79UHJX5L0PSP651N11UREL7ZH9QFT3P4ODYBW1DL191AOIBWN42UM82BNSQ56RM73M4AM0UYYKOIACOKHXG4IO93M64CIWVZHF8AC6LKEVV4T9M4WNOMEJE5JK7WNJ0A45E5WFAY72' where id=72; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='G0T0FR4FO5EKFHMU4YY6VYVR58QQX0TK7885LRVIFIR8A6L2BQYBZME9DBORU1SX21VL80EWLBP3262H7YS7WQTTMH6T5DRMJTQJ591JF6375DQ6KL6ACATL954D4WQC60UIENOKDMHEVYI2LUJNMQYHGYY6L0EF1DHSP1UHAJJDUM16DB0CNMRJ5TKZJA4WDKLKHRV661S1FXW8VQZ9Z4ZLBBNRNG64EWJFTWQ8YLC2LCYPD0WLWBE9SADQGJOI3' where id=73; -update noar ti set v0='G0T0FR4FO5EKFHMU4YY6VYVR58QQX0TK7885LRVIFIR8A6L2BQYBZME9DBORU1SX21VL80EWLBP3262H7YS7WQTTMH6T5DRMJTQJ591JF6375DQ6KL6ACATL954D4WQC60UIENOKDMHEVYI2LUJNMQYHGYY6L0EF1DHSP1UHAJJDUM16DB0CNMRJ5TKZJA4WDKLKHRV661S1FXW8VQZ9Z4ZLBBNRNG64EWJFTWQ8YLC2LCYPD0WLWBE9SADQGJOI3' where id=73; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='BDL0CWN58ENUO49ARMZWBHJQTNLAYDOLDEKL2KO0M2TCMJS6A09238YQXNBW9YK4GJZ1CCXQTHBSL4RYARLBKVJDDH5YC4RANFAO7XOXQWLLVFEH6R92OXHUAJHT4Q3S3LH6K2AY4NPGBIPBVM0JIHBIWLT008GBB2Q7WFXBT8FVEXR1GT9LLUNHRGF6VOSPJVMUFJM19BFHLX1A9K5MC98Q6BD7LV7DILJOAAR3BP75HS6AEGM5UUQXPLVSKDAEZ' where id=73; -update noar ti set v1='BDL0CWN58ENUO49ARMZWBHJQTNLAYDOLDEKL2KO0M2TCMJS6A09238YQXNBW9YK4GJZ1CCXQTHBSL4RYARLBKVJDDH5YC4RANFAO7XOXQWLLVFEH6R92OXHUAJHT4Q3S3LH6K2AY4NPGBIPBVM0JIHBIWLT008GBB2Q7WFXBT8FVEXR1GT9LLUNHRGF6VOSPJVMUFJM19BFHLX1A9K5MC98Q6BD7LV7DILJOAAR3BP75HS6AEGM5UUQXPLVSKDAEZ' where id=73; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='XQOUXXHLEQQG9CHP01JN95K7MXJXE6Y4V199FVDFYXXCGQ70EZMADR6RVRG7H02OJNZXBS1JCEFA9TBH9ASUGIWQP06JN3WXPV2ZK98ZARIF8D91XBC3BWSOEFN9K12JD1GXXTJT0QHS9CUK480DSS3OAIIFS4E1XZO2FCHHKE5CC3MRF1O0UBK9BF178OMS462ZK4ZY9JEVUBY0IGSUTL9MFVCQI2DRUB9Q3JDE6VU331476SSHQ86AA0OJ0OT2M' where id=73; -update noar ti set v2='XQOUXXHLEQQG9CHP01JN95K7MXJXE6Y4V199FVDFYXXCGQ70EZMADR6RVRG7H02OJNZXBS1JCEFA9TBH9ASUGIWQP06JN3WXPV2ZK98ZARIF8D91XBC3BWSOEFN9K12JD1GXXTJT0QHS9CUK480DSS3OAIIFS4E1XZO2FCHHKE5CC3MRF1O0UBK9BF178OMS462ZK4ZY9JEVUBY0IGSUTL9MFVCQI2DRUB9Q3JDE6VU331476SSHQ86AA0OJ0OT2M' where id=73; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='N2EBMXJ8H4GS6VQS7OGOPJ6MTZO86T0DBC3R8EHMC86876QGVTI9IPBEQ4V0W713F1LL8KIDUR5T8C2CTCT9NKEK1D67WJKFCZDY6Z999S5R0OZNBADWP5FBT202C6HI3OCID9M722Z58Z7O3OBM1ERYZSP1BXXQZ3DPAOK9T5UM3E48XR0VOJQXED54K92AJBLJR93OIF25LNA2JS533X11DGRREZP0V049MOI1ICMWE6UVRI64UQ3ME1QFKRLP4' where id=73; -update noar ti set v3='N2EBMXJ8H4GS6VQS7OGOPJ6MTZO86T0DBC3R8EHMC86876QGVTI9IPBEQ4V0W713F1LL8KIDUR5T8C2CTCT9NKEK1D67WJKFCZDY6Z999S5R0OZNBADWP5FBT202C6HI3OCID9M722Z58Z7O3OBM1ERYZSP1BXXQZ3DPAOK9T5UM3E48XR0VOJQXED54K92AJBLJR93OIF25LNA2JS533X11DGRREZP0V049MOI1ICMWE6UVRI64UQ3ME1QFKRLP4' where id=73; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='UC7DCO0XQ183ARVILDD2MEGELDY305QRRDFIL606PRF5AGCTFSQRN73UI0GQ12WUBHI3QOTV6XGRULSLJD7J0TXKLWTRZFW65SWNVR8RTWMT79PM0SW50D1UNZWB5TVM97ZFRBL04RDFJG5QRQM1SCPEUMCMFW9FW3UNHVXN09QUMYSWEZZN6YX12HSCO4KH13O85ZSNKZAT76PQ4NND0R69WC20907D568ZCR7GJP9U7P9737S57VIS2Y56FH4IP' where id=74; -update noar ti set v0='UC7DCO0XQ183ARVILDD2MEGELDY305QRRDFIL606PRF5AGCTFSQRN73UI0GQ12WUBHI3QOTV6XGRULSLJD7J0TXKLWTRZFW65SWNVR8RTWMT79PM0SW50D1UNZWB5TVM97ZFRBL04RDFJG5QRQM1SCPEUMCMFW9FW3UNHVXN09QUMYSWEZZN6YX12HSCO4KH13O85ZSNKZAT76PQ4NND0R69WC20907D568ZCR7GJP9U7P9737S57VIS2Y56FH4IP' where id=74; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='MK0S7UJQBCXTFKE0P5G0PDCZGMQ4HO7270522MIH4QXLQ2BIEWJAHIT1EKQ9R51MJQKFGSU882POH2RKF09S8JXP5HVQ7W1RT0PZ27F5TFWGVCSAL3TAUGNBFSX9HZXUR7R5J9FSR1EZPY7C0MYA96AXKHQXMZLUBH6FL34C8SF1S7IOZDOQAUJ9I8BVC2W0R8YJ3QLQWW7X434KFAK4916BSJ66ALVN25E57DDYNLVQPC28V1ZE4JU5BMOEJ31TJ' where id=74; -update noar ti set v1='MK0S7UJQBCXTFKE0P5G0PDCZGMQ4HO7270522MIH4QXLQ2BIEWJAHIT1EKQ9R51MJQKFGSU882POH2RKF09S8JXP5HVQ7W1RT0PZ27F5TFWGVCSAL3TAUGNBFSX9HZXUR7R5J9FSR1EZPY7C0MYA96AXKHQXMZLUBH6FL34C8SF1S7IOZDOQAUJ9I8BVC2W0R8YJ3QLQWW7X434KFAK4916BSJ66ALVN25E57DDYNLVQPC28V1ZE4JU5BMOEJ31TJ' where id=74; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='A2HDH0KVYC2HLBA46L6X7FBGBKZ7EEY86GFPBRWQDWES4YQNU9TV4MC30CDT8JA49ONLDUYAW3N0P9ZZDOLWDFCQV6HY9VZEJ4T3A7NSF02TJA8OW03NO2VLE4K7ZE2PTVFFZK77NUZAG7LOHU5OZAT8605F75TWW6RZNYL21GIWABGEW7XRF2BUEZPDY220BFAZH83GW3DMSSNAJIMG7O84MJSECGH3AFU59OLLMS7D4KYRW2HZI62QP2AQX2RPU' where id=74; -update noar ti set v2='A2HDH0KVYC2HLBA46L6X7FBGBKZ7EEY86GFPBRWQDWES4YQNU9TV4MC30CDT8JA49ONLDUYAW3N0P9ZZDOLWDFCQV6HY9VZEJ4T3A7NSF02TJA8OW03NO2VLE4K7ZE2PTVFFZK77NUZAG7LOHU5OZAT8605F75TWW6RZNYL21GIWABGEW7XRF2BUEZPDY220BFAZH83GW3DMSSNAJIMG7O84MJSECGH3AFU59OLLMS7D4KYRW2HZI62QP2AQX2RPU' where id=74; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='ILB9EXDP5M5R2C9X1BVDO92DZO4I79RR2PJ7UYC0M1FV5W5Q84JT0BKXZGQYXQ6M37INZZVBOTW5XBRE139RKHUG35ZOT51ITZANBYZLL0FD4W5SNII32UJ1KJXMI56UFC0JWKCAHH3KS73MO2NI6EPR5ELBF6TEHJ66Y6LR72T1GHRMQE4TCEBWXVI8AXPSZ0D0Q4K3OR4ZI8QGY25H2S3YG5NXOR16SBBAG5AM8LE7XULRIBDIBRSSUO4F4JPKK' where id=74; -update noar ti set v3='ILB9EXDP5M5R2C9X1BVDO92DZO4I79RR2PJ7UYC0M1FV5W5Q84JT0BKXZGQYXQ6M37INZZVBOTW5XBRE139RKHUG35ZOT51ITZANBYZLL0FD4W5SNII32UJ1KJXMI56UFC0JWKCAHH3KS73MO2NI6EPR5ELBF6TEHJ66Y6LR72T1GHRMQE4TCEBWXVI8AXPSZ0D0Q4K3OR4ZI8QGY25H2S3YG5NXOR16SBBAG5AM8LE7XULRIBDIBRSSUO4F4JPKK' where id=74; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='AQE73HB3XBAN7KJEKJQLGMIKUMDX0M97EUOJ8LCWDJB0HWDQFU8VK2TZVSPIY5JH8OVD44V2YJSVDVS814VH19ZBPUJ46TXV4WYOGLG4B8RD490MVTDA50UO1X41ZXOH9TUOSZIXK8CEQV3G6JGKPI1BKZYKY8NNL4AT91EZE9ADUTZ8VLZHIJ618URP79GDDEMUGFR5OUAX1YOLIHX6JX0BIY2KFNU996UEQLRLGP171WL6X0EV7RUZGOGMZ5P0L' where id=75; -update noar ti set v0='AQE73HB3XBAN7KJEKJQLGMIKUMDX0M97EUOJ8LCWDJB0HWDQFU8VK2TZVSPIY5JH8OVD44V2YJSVDVS814VH19ZBPUJ46TXV4WYOGLG4B8RD490MVTDA50UO1X41ZXOH9TUOSZIXK8CEQV3G6JGKPI1BKZYKY8NNL4AT91EZE9ADUTZ8VLZHIJ618URP79GDDEMUGFR5OUAX1YOLIHX6JX0BIY2KFNU996UEQLRLGP171WL6X0EV7RUZGOGMZ5P0L' where id=75; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='TBFOD59SMZJTYZ4J4REYTWVE6V2OSBR3WZK9UU9JFMWCIJY97FFUC2KYB9GKJXYB5Z6LVNFWOQ7AJGEUUJXFJ8MXLW5G6EPNA52YU9ZUX5FWHYKFC9MJFVH63H726C6KFMBME327TY42IK09TKQID6XG2BMVMEBH0I0ESGS1IDT6HOPE8T02LUE5KDTP6QGI68YIHLW7T4K9XYHDOLS5ZDDPFDNOKRV3SQYF7YHFIK7PYY19JUSHNDJSXQ2BZJFYZ' where id=75; -update noar ti set v1='TBFOD59SMZJTYZ4J4REYTWVE6V2OSBR3WZK9UU9JFMWCIJY97FFUC2KYB9GKJXYB5Z6LVNFWOQ7AJGEUUJXFJ8MXLW5G6EPNA52YU9ZUX5FWHYKFC9MJFVH63H726C6KFMBME327TY42IK09TKQID6XG2BMVMEBH0I0ESGS1IDT6HOPE8T02LUE5KDTP6QGI68YIHLW7T4K9XYHDOLS5ZDDPFDNOKRV3SQYF7YHFIK7PYY19JUSHNDJSXQ2BZJFYZ' where id=75; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='NFQ8PR01T9ZZIXON8YYZHTTUN9VPMCIJ1DPSQHK25QKIJ94QIQWPN4A20NTZAUQTNYRKV596BNMW8DDCAT1Q512VJVIFPY0NMP298549EC31KMZ8DZ7PVNT19ZHUE30ECDJLGERS55RFMJWRI2LYKMTVFY0OOKJBCZX9C7QWJGUENL97SXO0L3R4XF4VFSUWNS2N99DM47EAAKOTTIO062VN32EK4JZG4ANQNQBTULABCRXOX0IFL8QV34J1WU73N' where id=75; -update noar ti set v2='NFQ8PR01T9ZZIXON8YYZHTTUN9VPMCIJ1DPSQHK25QKIJ94QIQWPN4A20NTZAUQTNYRKV596BNMW8DDCAT1Q512VJVIFPY0NMP298549EC31KMZ8DZ7PVNT19ZHUE30ECDJLGERS55RFMJWRI2LYKMTVFY0OOKJBCZX9C7QWJGUENL97SXO0L3R4XF4VFSUWNS2N99DM47EAAKOTTIO062VN32EK4JZG4ANQNQBTULABCRXOX0IFL8QV34J1WU73N' where id=75; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='TJIA711030MVUDPFEHPVTAA8GYZ1CRBFIB1AGX572645FUSSVZ2QJVOPLZL5QFHXYXLO3YMR7LBW8VWSR4A38U4VB0LQP795GK5VESGNPQ8KZBN1D4FL0JJNOLH7FKV648R80RLT3EIJKY668T26CE2TKCHP6HC4R3XP33L0JDD91VT47WF16YPESOJFRSSADRFO17OXTR8TOOW8SWGC7MRQHWPF6TEOJTHB4XEWPA1S6L5NO1D24W267R2BR1L6Q' where id=75; -update noar ti set v3='TJIA711030MVUDPFEHPVTAA8GYZ1CRBFIB1AGX572645FUSSVZ2QJVOPLZL5QFHXYXLO3YMR7LBW8VWSR4A38U4VB0LQP795GK5VESGNPQ8KZBN1D4FL0JJNOLH7FKV648R80RLT3EIJKY668T26CE2TKCHP6HC4R3XP33L0JDD91VT47WF16YPESOJFRSSADRFO17OXTR8TOOW8SWGC7MRQHWPF6TEOJTHB4XEWPA1S6L5NO1D24W267R2BR1L6Q' where id=75; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='5R4RDM613H9U030D8HCJK7Q0S7DYSORM6L5LGE8FPKRKP52ZUYKG22LBMRSQK4D39VSP52YO69RL8QIQOW99TQZ56ZAKI9JG6JKOZD6JLLWC83B5TQKPKBAKR8148KNQE021D0JVXU3LOOIWWY4GK51SVD7H3RMQ1SLAS68HM6ZJ5XUCCAXO093MJYWANKRJCCFOYTFZH1G3SNXATUP269LH8OG81M4WRQ04NWI4MXFSA5NBVZK2LK4HJ6SLIO18J' where id=76; -update noar ti set v0='5R4RDM613H9U030D8HCJK7Q0S7DYSORM6L5LGE8FPKRKP52ZUYKG22LBMRSQK4D39VSP52YO69RL8QIQOW99TQZ56ZAKI9JG6JKOZD6JLLWC83B5TQKPKBAKR8148KNQE021D0JVXU3LOOIWWY4GK51SVD7H3RMQ1SLAS68HM6ZJ5XUCCAXO093MJYWANKRJCCFOYTFZH1G3SNXATUP269LH8OG81M4WRQ04NWI4MXFSA5NBVZK2LK4HJ6SLIO18J' where id=76; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='GTXTSCFUCSFMY5Z1O2YK77NA41P0PCCFZVH05E40BUHGNILNPKS5C0DOOIM1GE2JJSRVOM7KYOEL5UNMOLUSCULNJS3AL6IMVPN5TI8H282GVP6EKVR3931SZV7JY2WV6074H5QSFXTL73JFZIXB0A3FNTO3HCYB7HXVIKVBPCIMFTUMOM702ICY70SCD74B65VBNQ0NT3SXHC4RAGNSPEKNOVJV89NAZOCSXYQ70OVIA4034SYGAFXZT9AYK51FZ' where id=76; -update noar ti set v1='GTXTSCFUCSFMY5Z1O2YK77NA41P0PCCFZVH05E40BUHGNILNPKS5C0DOOIM1GE2JJSRVOM7KYOEL5UNMOLUSCULNJS3AL6IMVPN5TI8H282GVP6EKVR3931SZV7JY2WV6074H5QSFXTL73JFZIXB0A3FNTO3HCYB7HXVIKVBPCIMFTUMOM702ICY70SCD74B65VBNQ0NT3SXHC4RAGNSPEKNOVJV89NAZOCSXYQ70OVIA4034SYGAFXZT9AYK51FZ' where id=76; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='BTL3FNIGEDABSP75C9ONT77ILIFWWCY5ZBSFASEQ106T1X2AFPGP88LYSTFBDNQQSP9ODPEMMOJ4SY7SCD9YFFQETVZOAMHJKKRVKEX9G2URA0TPCMKC5R26MN3OFC8SYGC27ETBYV05KQZ8RYKG1NSN3SORAOF40O8PQXX5HB6DH7VN7E832A7469TTQGB1IVA94EQPTLH00N1EO913DMAAAOMWXRCLHXW7IE8589QDROYBRM9R2JMDB5789DDWW' where id=76; -update noar ti set v2='BTL3FNIGEDABSP75C9ONT77ILIFWWCY5ZBSFASEQ106T1X2AFPGP88LYSTFBDNQQSP9ODPEMMOJ4SY7SCD9YFFQETVZOAMHJKKRVKEX9G2URA0TPCMKC5R26MN3OFC8SYGC27ETBYV05KQZ8RYKG1NSN3SORAOF40O8PQXX5HB6DH7VN7E832A7469TTQGB1IVA94EQPTLH00N1EO913DMAAAOMWXRCLHXW7IE8589QDROYBRM9R2JMDB5789DDWW' where id=76; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='OJ41K9N09N6ME08KZTK6726UX1IBMMAIMXC5ZLJ2EQ3A1IOY35RQYP6NIA6VU3SKTS4L4SYW9KL5T5WRET5B4I9BUJZQ35TO7WPIG0B5MCCZ6K3F58BNBIGWOPG9VGSO6AJNVV3ANI1OWAAKKJABAR8G2S01IEASSSVI79DF2F1PVN7PR5KL9YFR4KXLS1XMVRJ5WCXHXAOCGIN3VAY9YHB2X42EN3DIIJRZPFISCQD6U98G0CTCEGXJ6UAHHD8AU' where id=76; -update noar ti set v3='OJ41K9N09N6ME08KZTK6726UX1IBMMAIMXC5ZLJ2EQ3A1IOY35RQYP6NIA6VU3SKTS4L4SYW9KL5T5WRET5B4I9BUJZQ35TO7WPIG0B5MCCZ6K3F58BNBIGWOPG9VGSO6AJNVV3ANI1OWAAKKJABAR8G2S01IEASSSVI79DF2F1PVN7PR5KL9YFR4KXLS1XMVRJ5WCXHXAOCGIN3VAY9YHB2X42EN3DIIJRZPFISCQD6U98G0CTCEGXJ6UAHHD8AU' where id=76; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='7F8CDZI57S0KZRZX482RDMKHE1ZJH5D6VBLKWG5F995MNGU1GO6S1MAICIOFDCS9BTUYZ6VST3MLZWEWLTIJF74XKYVXOHGWNM0H1V5I2DJD2IQKR7N185KUDFRJGCST93ESUD0UPFYVOC8Z23TZVUFZOV1PQ0DS4AYDQ6Q82WWDJ1V8CVJZVG17RGVF1C4SR7ZE8TOPW8FZAMM75Q1LSQYOEZJF1SR99Z702F516EJVEHWUIFQSCSHRPXVRGAW0F' where id=77; -update noar ti set v0='7F8CDZI57S0KZRZX482RDMKHE1ZJH5D6VBLKWG5F995MNGU1GO6S1MAICIOFDCS9BTUYZ6VST3MLZWEWLTIJF74XKYVXOHGWNM0H1V5I2DJD2IQKR7N185KUDFRJGCST93ESUD0UPFYVOC8Z23TZVUFZOV1PQ0DS4AYDQ6Q82WWDJ1V8CVJZVG17RGVF1C4SR7ZE8TOPW8FZAMM75Q1LSQYOEZJF1SR99Z702F516EJVEHWUIFQSCSHRPXVRGAW0F' where id=77; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='ZLP681JM5DP3B1EURBN2LJH91HPPA9XMAO377O6BJ6HTCYDFZMI3LSARSFDJ3H11R4GMN6NNRD7KR4IKF6LZEG1KS3FN7ON4PA21VLUAAGWNCS98AWWIKPJVDL8KY4FY9WIBYBI7M4HUZBG39MK4UPJJKLGVIV196WXFYTOCVLA4A2TLWQ0HAVD7UNZE1G4BUOQSX24F9V5OSDL3QJA9V9L95HXYVOXA1KYHSMLMUGCAXHM91216FJGDHOJ9JZBS7' where id=77; -update noar ti set v1='ZLP681JM5DP3B1EURBN2LJH91HPPA9XMAO377O6BJ6HTCYDFZMI3LSARSFDJ3H11R4GMN6NNRD7KR4IKF6LZEG1KS3FN7ON4PA21VLUAAGWNCS98AWWIKPJVDL8KY4FY9WIBYBI7M4HUZBG39MK4UPJJKLGVIV196WXFYTOCVLA4A2TLWQ0HAVD7UNZE1G4BUOQSX24F9V5OSDL3QJA9V9L95HXYVOXA1KYHSMLMUGCAXHM91216FJGDHOJ9JZBS7' where id=77; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='1A6KJ812QRTHSOQCSR1J1HXEI8R5WI5IL4H3RWUSZE8CT4XJBIL8NDY52FQ04KF4YBE34W978A4UUIRN0H0BG5WTEMAX897W6RILLZQ6PIL38DUNE7W8218FOA2TD1BSB378CCHG6RDE8W7YCZ0BOADXHED8EGL2ZZ5O5ZRLBPRCRSU1BZEK9YQDU025D73W2LZRLSEU8JE05Z1JF61U804XWJNB5P0LJU2QOM0BS39S7N1CSA7VKDLDSBPH7190B' where id=77; -update noar ti set v2='1A6KJ812QRTHSOQCSR1J1HXEI8R5WI5IL4H3RWUSZE8CT4XJBIL8NDY52FQ04KF4YBE34W978A4UUIRN0H0BG5WTEMAX897W6RILLZQ6PIL38DUNE7W8218FOA2TD1BSB378CCHG6RDE8W7YCZ0BOADXHED8EGL2ZZ5O5ZRLBPRCRSU1BZEK9YQDU025D73W2LZRLSEU8JE05Z1JF61U804XWJNB5P0LJU2QOM0BS39S7N1CSA7VKDLDSBPH7190B' where id=77; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='MMXFX5PNICBUFU7X4AEC1653TJ55CZAT9BGL6FGO5ERMRZQUC98AXPTHRAX7VKY57GPHNXGARYO3GNWZZXTO3A2BI1C6M8Q27570SRKI818LMSUML75AJHSM67WMJ4KLOAU5M5R49KGFXE8H5VMM6BR0GYSE6NG9G3EK1QGOA66TMSI8PDD84R8R0EA41RKYHL0SAE80K2KEPATE1TZYORRGRNQAEO6VMGPHBVA1W4JP0F5YPLLM1PQAHFVCHNPQA' where id=77; -update noar ti set v3='MMXFX5PNICBUFU7X4AEC1653TJ55CZAT9BGL6FGO5ERMRZQUC98AXPTHRAX7VKY57GPHNXGARYO3GNWZZXTO3A2BI1C6M8Q27570SRKI818LMSUML75AJHSM67WMJ4KLOAU5M5R49KGFXE8H5VMM6BR0GYSE6NG9G3EK1QGOA66TMSI8PDD84R8R0EA41RKYHL0SAE80K2KEPATE1TZYORRGRNQAEO6VMGPHBVA1W4JP0F5YPLLM1PQAHFVCHNPQA' where id=77; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='NB38CTV7YJHX6YJOPNSA39K6SCQLOQJ3UTK3VBJ6TREVYN5RI2VKYYPFVVZ6XU3HBRCQQ4TNJRMJBXMRVYV8Z04S9ZN5F094AT7L9BOYG3WQQ3YFYW5C9UVEQNQYF4KV3TW454IYW8XBUEKWW016Y3OIFP88ACAIYB9NGAI4VNOGUTXWWO878MHQ7EKOCOU6WN1LYTPUGTXO15Q2LP9UYM9KMUF8XKDF7W85KVSC4NQIVS6518M7KZF3E6FLHAVM4' where id=78; -update noar ti set v0='NB38CTV7YJHX6YJOPNSA39K6SCQLOQJ3UTK3VBJ6TREVYN5RI2VKYYPFVVZ6XU3HBRCQQ4TNJRMJBXMRVYV8Z04S9ZN5F094AT7L9BOYG3WQQ3YFYW5C9UVEQNQYF4KV3TW454IYW8XBUEKWW016Y3OIFP88ACAIYB9NGAI4VNOGUTXWWO878MHQ7EKOCOU6WN1LYTPUGTXO15Q2LP9UYM9KMUF8XKDF7W85KVSC4NQIVS6518M7KZF3E6FLHAVM4' where id=78; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='WOVERXH3OXEMZ8ZIYXF4MJ7SOG71AYOHIRNWFSOLCDP8XVGZCFPGVRN5KRN86QES5LNJ19RA9WX8B6EPBD4FEH05IWIO9QSYKNGEY8UDMEGTSJBORH205CLME5ZUCONC32E0JMS7JQ6AUUMNG6M5CFW6GZK9YFZ8UTAM565FZJ6ZR0QQA98Z7PPPS2HGBQ6TU131XHLGEZ7AUFDGMIJTDHR33BP2DU2AZ600Q1EN1743H7BQNBS7DISP5VT42FZAT' where id=78; -update noar ti set v1='WOVERXH3OXEMZ8ZIYXF4MJ7SOG71AYOHIRNWFSOLCDP8XVGZCFPGVRN5KRN86QES5LNJ19RA9WX8B6EPBD4FEH05IWIO9QSYKNGEY8UDMEGTSJBORH205CLME5ZUCONC32E0JMS7JQ6AUUMNG6M5CFW6GZK9YFZ8UTAM565FZJ6ZR0QQA98Z7PPPS2HGBQ6TU131XHLGEZ7AUFDGMIJTDHR33BP2DU2AZ600Q1EN1743H7BQNBS7DISP5VT42FZAT' where id=78; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='302UGD121Z5ICNJKA3W0FIG5NJVSELC118P9SD0SRT21YAN0TC8TGOT5W3ZV0C5ZN009O8BGQWDB2PM9Y6V95FN7TQZUPK1GQJ6FTJ1N9Q1TQ7P1AQ1OO4MCQDN1FPQD0HFMCCAN720JSI03TVUFUTFR7K5CJXMSXLU8UGCSEDBBU0X05MOWLOY2KHKBBF5YSCVDY181JN0XLH9G9XXBGYSDWTVVVT7BQJ7U8KT6T2DUAW5QJ6WIGLCD4QXQHHHMI' where id=78; -update noar ti set v2='302UGD121Z5ICNJKA3W0FIG5NJVSELC118P9SD0SRT21YAN0TC8TGOT5W3ZV0C5ZN009O8BGQWDB2PM9Y6V95FN7TQZUPK1GQJ6FTJ1N9Q1TQ7P1AQ1OO4MCQDN1FPQD0HFMCCAN720JSI03TVUFUTFR7K5CJXMSXLU8UGCSEDBBU0X05MOWLOY2KHKBBF5YSCVDY181JN0XLH9G9XXBGYSDWTVVVT7BQJ7U8KT6T2DUAW5QJ6WIGLCD4QXQHHHMI' where id=78; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='UZA52RDZ11V1K163GOPSTN2WNMEG3P72W6Q3GORAZVR300CM55DIHXM11Z0CZK9XDK1TESWIGR5PIQDIGVJALJT730UTW4H1C9718EIWJYA673S1O6NA1XLRM8W0QP8YQSC10XT4VIG7Z8AVYL1G1VQ7UZOO4C412AS7GJUFZ4HOWR1F9I91UFXSJ2TUYA6N4L1SLASP59FRLIN5J3GRK2GNC360S586TKXJXU61I6ANNR7B8IJ42SW1W0S1LKWL5' where id=78; -update noar ti set v3='UZA52RDZ11V1K163GOPSTN2WNMEG3P72W6Q3GORAZVR300CM55DIHXM11Z0CZK9XDK1TESWIGR5PIQDIGVJALJT730UTW4H1C9718EIWJYA673S1O6NA1XLRM8W0QP8YQSC10XT4VIG7Z8AVYL1G1VQ7UZOO4C412AS7GJUFZ4HOWR1F9I91UFXSJ2TUYA6N4L1SLASP59FRLIN5J3GRK2GNC360S586TKXJXU61I6ANNR7B8IJ42SW1W0S1LKWL5' where id=78; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='KKUGYZNS00WEJ9K8ZZBC5WSO4B31UWH6UMXZBE4ZTFI8V60DC7D0BLYQXRJ7IH5NL01CVGZRIV6EHF3JUA0J8U8O8YFX912Q2U3C8LVJ3KNAFOQM7K20GD6UQD887NW7JB4ZFAHHL2RYUE3VJYLG3D801N2GWQ1Z47W396XGC35W2H6GWYSOEVSK2QD2BBQHYYOY3ESJFYZRGDM2NFIU7K3RC7JJ6MOUE7LE77R3EJ9KVVEPHDOOBWR52DA1NIT0U' where id=79; -update noar ti set v0='KKUGYZNS00WEJ9K8ZZBC5WSO4B31UWH6UMXZBE4ZTFI8V60DC7D0BLYQXRJ7IH5NL01CVGZRIV6EHF3JUA0J8U8O8YFX912Q2U3C8LVJ3KNAFOQM7K20GD6UQD887NW7JB4ZFAHHL2RYUE3VJYLG3D801N2GWQ1Z47W396XGC35W2H6GWYSOEVSK2QD2BBQHYYOY3ESJFYZRGDM2NFIU7K3RC7JJ6MOUE7LE77R3EJ9KVVEPHDOOBWR52DA1NIT0U' where id=79; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='VUHTVV9ONE2QHRWZR59FIG4RWWO5DNA8A8TBSEPSZGRDQBS4K270QIDWS0Y72S5K2CTUF9P2FDFKBJYCGEF89XVV7L5TDYMXPBD19I5O8MYF1QERNI7VSOPWQNKY5LJFNYRVACLRS0NTIIJEJ1BBGA23I2SGMC9FJIF8CPFOJ74T3MDOL01WXJ640UDZACGRZZ4JTAW0NGLH59VJ55H9OZSUEYAFRK5HCCELRY4251XEQCU2302Y663ZPGN3AELO1' where id=79; -update noar ti set v1='VUHTVV9ONE2QHRWZR59FIG4RWWO5DNA8A8TBSEPSZGRDQBS4K270QIDWS0Y72S5K2CTUF9P2FDFKBJYCGEF89XVV7L5TDYMXPBD19I5O8MYF1QERNI7VSOPWQNKY5LJFNYRVACLRS0NTIIJEJ1BBGA23I2SGMC9FJIF8CPFOJ74T3MDOL01WXJ640UDZACGRZZ4JTAW0NGLH59VJ55H9OZSUEYAFRK5HCCELRY4251XEQCU2302Y663ZPGN3AELO1' where id=79; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='G6HLQ7DEPCLYB9V0QTQJE36F6T2RCYR60SEQAW55LINY7QN83ZZRVFT1XR5C4GLM4IFX9TVLNQ1X0F19DOHHLQ6ABG2572P0BKKPEUV5LIC04VJZMA5EKTHVP1N6I3J4MMNQJHX0T3TLPC8EVLQPN5TQ5XWR0BFHNVTGN1A14JFYJKQTRRBYSOFKMUJHUCF1L1IGB8SBPZH8LMMN9RG6UFENIIFH3WZ81FSDECZOTTX2IVJETIF1NN7Z9EUG9RLK1' where id=79; -update noar ti set v2='G6HLQ7DEPCLYB9V0QTQJE36F6T2RCYR60SEQAW55LINY7QN83ZZRVFT1XR5C4GLM4IFX9TVLNQ1X0F19DOHHLQ6ABG2572P0BKKPEUV5LIC04VJZMA5EKTHVP1N6I3J4MMNQJHX0T3TLPC8EVLQPN5TQ5XWR0BFHNVTGN1A14JFYJKQTRRBYSOFKMUJHUCF1L1IGB8SBPZH8LMMN9RG6UFENIIFH3WZ81FSDECZOTTX2IVJETIF1NN7Z9EUG9RLK1' where id=79; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='UNKLHN1WMIS2Z1N427LRLA61946NXMAQW0K1OZZT2CAY6EC1WL1OACMC0RGAOVU22P681I3TEYUVNZEJ1M1O1Y184D70DY8F5R4VGDQCNM08UMSMQWJGYUJ2HEEB3AZCM4W5NYTGGFEWGH662XYEQV461T4GLJDPCDBN12AKOQ1P606GZS54RIPDDA1J9B21715MOHHKICO9108YPKCMJ54PC92HDXUMH313OLJYJBS93HDMT25N7EMOAHXZZFVT9' where id=79; -update noar ti set v3='UNKLHN1WMIS2Z1N427LRLA61946NXMAQW0K1OZZT2CAY6EC1WL1OACMC0RGAOVU22P681I3TEYUVNZEJ1M1O1Y184D70DY8F5R4VGDQCNM08UMSMQWJGYUJ2HEEB3AZCM4W5NYTGGFEWGH662XYEQV461T4GLJDPCDBN12AKOQ1P606GZS54RIPDDA1J9B21715MOHHKICO9108YPKCMJ54PC92HDXUMH313OLJYJBS93HDMT25N7EMOAHXZZFVT9' where id=79; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='317SXVKJPSEANQUEWXJ7AIFCIPJIYUQ7WBS69PZF4UFUDQ4BMFIXCZKB21L0KDA4GJT3G96T5YAEKX9T7VOQMAUOF5RSL2AE9E428SV3DMCMRRZ9I5HMER03ACIU83R26Z71A9P1YI4MA37VOOEFH8XAO0U6W6M8J7065FNCEGIT7M1UTR03QSDXJT67CV72YDLVT50MVLKQEDSFE60YD2O11XF9TU85NT709VVDRD6NTFUFKKVYBHBDSFPZESW75' where id=80; -update noar ti set v0='317SXVKJPSEANQUEWXJ7AIFCIPJIYUQ7WBS69PZF4UFUDQ4BMFIXCZKB21L0KDA4GJT3G96T5YAEKX9T7VOQMAUOF5RSL2AE9E428SV3DMCMRRZ9I5HMER03ACIU83R26Z71A9P1YI4MA37VOOEFH8XAO0U6W6M8J7065FNCEGIT7M1UTR03QSDXJT67CV72YDLVT50MVLKQEDSFE60YD2O11XF9TU85NT709VVDRD6NTFUFKKVYBHBDSFPZESW75' where id=80; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='Z0N22RXKYVB3MC41CB1V9DG3EMMILB4725CL7YZ54110CJJL235Y22UF0HTYGPLCUCBQPMHGU87MW0R0WNK1BDFA6G5DO0TCHVK5YOI0JBB3TBPF8ZUHXBUK2S01883OIGHMS7AH0WMKYQ1LNHS5E5B7RT9ZE5Z0OX7E9SN4BTSH5C1SSKMWH30C30AH9T9SCO1RURYJXKKX9HAVJOE8PJ08LJRO6BGRKOEINGVHLBNJ9KWEHE3IL4PI8TU0005ZZ' where id=80; -update noar ti set v1='Z0N22RXKYVB3MC41CB1V9DG3EMMILB4725CL7YZ54110CJJL235Y22UF0HTYGPLCUCBQPMHGU87MW0R0WNK1BDFA6G5DO0TCHVK5YOI0JBB3TBPF8ZUHXBUK2S01883OIGHMS7AH0WMKYQ1LNHS5E5B7RT9ZE5Z0OX7E9SN4BTSH5C1SSKMWH30C30AH9T9SCO1RURYJXKKX9HAVJOE8PJ08LJRO6BGRKOEINGVHLBNJ9KWEHE3IL4PI8TU0005ZZ' where id=80; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='I1SFWBGGEZ2SGQRUVRNWJXU734RSJB4JI7GF7X15JP9RA5AFR7WNWNKBX1AE8CVXNZ85DUIS83NSHM1T0JCAJ0OS20MC6VC82O3GRXA3NKXYULVY1UGGTJRH1IKI3T339WOVY3U6JPRHPKQIEQG44CVB3UK9NEAXQQAEKUWNLUJKOD0YG95Z1FT2VLQVWTXYV0WXI3T33XT90APM12AJ5SIWCZV6AKS09W2FXG42YDXR8OMGYVMKMC2RVE4AWM460' where id=80; -update noar ti set v2='I1SFWBGGEZ2SGQRUVRNWJXU734RSJB4JI7GF7X15JP9RA5AFR7WNWNKBX1AE8CVXNZ85DUIS83NSHM1T0JCAJ0OS20MC6VC82O3GRXA3NKXYULVY1UGGTJRH1IKI3T339WOVY3U6JPRHPKQIEQG44CVB3UK9NEAXQQAEKUWNLUJKOD0YG95Z1FT2VLQVWTXYV0WXI3T33XT90APM12AJ5SIWCZV6AKS09W2FXG42YDXR8OMGYVMKMC2RVE4AWM460' where id=80; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='MJ3LUUFRYS54ED2NDFCS0K7N4NCDP9IBITQEOXLU96OJO8IIMUR492N8AESGY2C2SL2U6NDNX5EFVL6PP7Y6QGIZXZ8TUDWN4P47GXVH7D3LY035UDZS5HL56NQXOJJQDO1TEEEUQRTC5E8GQHDWZLP1LU0XBM69YEZYH3M515RZ7C45QX8JI58TDF8J4O69W4TOW7NTB6D9MES4GCTC5T17WWKV3ICKAEGMIUPH3VHI5AJWZWGEQX6QYF4AQS2BT' where id=80; -update noar ti set v3='MJ3LUUFRYS54ED2NDFCS0K7N4NCDP9IBITQEOXLU96OJO8IIMUR492N8AESGY2C2SL2U6NDNX5EFVL6PP7Y6QGIZXZ8TUDWN4P47GXVH7D3LY035UDZS5HL56NQXOJJQDO1TEEEUQRTC5E8GQHDWZLP1LU0XBM69YEZYH3M515RZ7C45QX8JI58TDF8J4O69W4TOW7NTB6D9MES4GCTC5T17WWKV3ICKAEGMIUPH3VHI5AJWZWGEQX6QYF4AQS2BT' where id=80; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='2HJBNNMLY3ZDXX4URFRTXFFLNOAVFL5OJR4LE8ME0HSELHSZ2QC3RAIQYTVBFKVM2QYDC9XADLX3K2ZHSOPOCJ29ZS9T8R9HP6C8T3LK1WUP4ROD5LIR11J2HDTNCQ8MNF9QQ6V46SCOCGNHCMES6Y0JR9AUXOZ18SP67GCABRPVXOOE4RM11UED00QBC8N31HHZZY3CUDRKWGAANMVCQAYGIYAVZ44HID8RE3EY0K64E8KTE0H5OKX5J5U4YK2XC' where id=81; -update noar ti set v0='2HJBNNMLY3ZDXX4URFRTXFFLNOAVFL5OJR4LE8ME0HSELHSZ2QC3RAIQYTVBFKVM2QYDC9XADLX3K2ZHSOPOCJ29ZS9T8R9HP6C8T3LK1WUP4ROD5LIR11J2HDTNCQ8MNF9QQ6V46SCOCGNHCMES6Y0JR9AUXOZ18SP67GCABRPVXOOE4RM11UED00QBC8N31HHZZY3CUDRKWGAANMVCQAYGIYAVZ44HID8RE3EY0K64E8KTE0H5OKX5J5U4YK2XC' where id=81; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='JHZE4NE23OZ9BL1TM5GMR9VHDDU3HP8M6SS2RHDZ7BYBJQC0F35FLKAZAF1DWXRHXP0D2PUM5JUR3J4TDKWDPW8LFBPE3GZLKZS5YQ3ISM1WMMFC07DNDGZIXM13WAN754THD2SPWV8ZXAZKO2VQMYHHI9KX2ZH1FC7ZQAVTACGLZ1NL7HB16L986DBHWKYAYHP7J8BT8W1D3V3K5XEB5K18DT44J0Q22YXFMQTVLAWRIPUFG3FUWS670VLWMZUIU' where id=81; -update noar ti set v1='JHZE4NE23OZ9BL1TM5GMR9VHDDU3HP8M6SS2RHDZ7BYBJQC0F35FLKAZAF1DWXRHXP0D2PUM5JUR3J4TDKWDPW8LFBPE3GZLKZS5YQ3ISM1WMMFC07DNDGZIXM13WAN754THD2SPWV8ZXAZKO2VQMYHHI9KX2ZH1FC7ZQAVTACGLZ1NL7HB16L986DBHWKYAYHP7J8BT8W1D3V3K5XEB5K18DT44J0Q22YXFMQTVLAWRIPUFG3FUWS670VLWMZUIU' where id=81; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='KGA521JM3FBK82CK9TDSKPFEYD72VXXQRZ15QBWEDHOFZMS7YQJ35OPHZCWQ5R7MH1B3YHJN9U09OV3RLEE8F3CIZAD318EM0812RYVEATBF7KEL1BALAWHCDTXMF7PINC3P68MGISR56XBK93VJ8QDOG038EAUT5ZPGC7777Q5OFZLG5PPHX7JW7F5LS6JWC7S1O0L3VYENFDFH3W5QVQY59KHW66FRGZ7TURZ6ZNFHVNX1W936XOGE2FKT28RNY' where id=81; -update noar ti set v2='KGA521JM3FBK82CK9TDSKPFEYD72VXXQRZ15QBWEDHOFZMS7YQJ35OPHZCWQ5R7MH1B3YHJN9U09OV3RLEE8F3CIZAD318EM0812RYVEATBF7KEL1BALAWHCDTXMF7PINC3P68MGISR56XBK93VJ8QDOG038EAUT5ZPGC7777Q5OFZLG5PPHX7JW7F5LS6JWC7S1O0L3VYENFDFH3W5QVQY59KHW66FRGZ7TURZ6ZNFHVNX1W936XOGE2FKT28RNY' where id=81; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='LFR2K57WNKMK5VYQGUMTUVM2KJS0FULGUOEP7QQAYP7VI8PGZFX5UDIXK5XVX0XSHHJF44A4OHXEPPT3OOTNUP9CBATFYZO3N8ZLSMOPXQYE4UFDSPONQGTLTF820J4DQYOBP0F0BPR6ZYCKSI041MNJNHWAV3TGBGNSTOSN8JVGBW7EYEKSZJEXAFK3Q0ZZFG4U2MVG0184NMZ6HESFSXGUYM1HJSCKPJ1LYQ3LZIQQJDWYJXR5AHTYXPI1ZMIP3' where id=81; -update noar ti set v3='LFR2K57WNKMK5VYQGUMTUVM2KJS0FULGUOEP7QQAYP7VI8PGZFX5UDIXK5XVX0XSHHJF44A4OHXEPPT3OOTNUP9CBATFYZO3N8ZLSMOPXQYE4UFDSPONQGTLTF820J4DQYOBP0F0BPR6ZYCKSI041MNJNHWAV3TGBGNSTOSN8JVGBW7EYEKSZJEXAFK3Q0ZZFG4U2MVG0184NMZ6HESFSXGUYM1HJSCKPJ1LYQ3LZIQQJDWYJXR5AHTYXPI1ZMIP3' where id=81; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='UP9EJTXA2RUMNTLGWJJBIZAPE8EFB1M24RNH7VSJZEP7KVSIN57ZOCF7M1ABVE3PNH2TBKFXS692O2GHD8487B9YSDOYM7SA0E4G3ZJYMYT9WPBFTVLJSVRQ719LK1SEAVAN45LLDAYDVY7C2N5ZS6BV1BHMK6B4V2BHWLTN6L23DGWX5911NMO6QJ137UCEX07SIRV5AE4ELP3N1845AS7317A9BWRBW7Q6S62HDY0E6AQWOPGJ2THQ25TSKRZTH' where id=82; -update noar ti set v0='UP9EJTXA2RUMNTLGWJJBIZAPE8EFB1M24RNH7VSJZEP7KVSIN57ZOCF7M1ABVE3PNH2TBKFXS692O2GHD8487B9YSDOYM7SA0E4G3ZJYMYT9WPBFTVLJSVRQ719LK1SEAVAN45LLDAYDVY7C2N5ZS6BV1BHMK6B4V2BHWLTN6L23DGWX5911NMO6QJ137UCEX07SIRV5AE4ELP3N1845AS7317A9BWRBW7Q6S62HDY0E6AQWOPGJ2THQ25TSKRZTH' where id=82; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='8I1JP2U5WSOY3JKTQUNZ8KZZSFBMCLZDA04E89JQIZTERN1WC7URYB1RQXS6U6XP0T91G00MUWTUPS79T9ERCTSXBWAEF8E3NX0B00JQOX8C3VJOZRPKUP4MJZQSG5HI74BYRTVH7HDGZLA2YIVTX98BPI41RSPZJHCQT71RUCGRK0V49L0NYQ06N46LWMKED8T0VXJJE1UKTPJK2XSP6ASIQLDFZCBUTVBGC2APDFZJXA2C76WIRXLH6LZIWL04W' where id=82; -update noar ti set v1='8I1JP2U5WSOY3JKTQUNZ8KZZSFBMCLZDA04E89JQIZTERN1WC7URYB1RQXS6U6XP0T91G00MUWTUPS79T9ERCTSXBWAEF8E3NX0B00JQOX8C3VJOZRPKUP4MJZQSG5HI74BYRTVH7HDGZLA2YIVTX98BPI41RSPZJHCQT71RUCGRK0V49L0NYQ06N46LWMKED8T0VXJJE1UKTPJK2XSP6ASIQLDFZCBUTVBGC2APDFZJXA2C76WIRXLH6LZIWL04W' where id=82; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='VEG9CQ875N3X034OX28G53ALQQ77BQTPMA0E9KPD7QB7FW6AJF8PL3ER7KY3LLDKD1H9QG9ZASY5CTUKBNNRDL56HJA5M9SUJXB0492AUXQIKI3Z7R0M3TOITXCGDF88FR0IPVLD1UGQAOWLRCM7PNLFC1FG50QP0JWH0D3SW00YBJTTR9NIVH6WB1CXIL966LMNZDLNEMT8Q3USAM8DEOJ9CNYV4NS8NUTHSLRSE7F6NV5RS90IBKNUNFQ8RFWVJ' where id=82; -update noar ti set v2='VEG9CQ875N3X034OX28G53ALQQ77BQTPMA0E9KPD7QB7FW6AJF8PL3ER7KY3LLDKD1H9QG9ZASY5CTUKBNNRDL56HJA5M9SUJXB0492AUXQIKI3Z7R0M3TOITXCGDF88FR0IPVLD1UGQAOWLRCM7PNLFC1FG50QP0JWH0D3SW00YBJTTR9NIVH6WB1CXIL966LMNZDLNEMT8Q3USAM8DEOJ9CNYV4NS8NUTHSLRSE7F6NV5RS90IBKNUNFQ8RFWVJ' where id=82; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='Q6BBPII67U59R29LHW3X07M6J5Z9HEB1NE9W1CAHAVMLEAVU8F1DKKS7GDQ6RR9X9236IZDPS72ZCCUITUZG8562X9LEPSM6FAX550JOBVLW7M3U4MFDB34D17AHVCRY4WN7HUU683ENTM62KOSUQIWJ7T9UJKBRVOC00TQ30O1LWYH1J7M4VIEDOP69G39OAFWZ229ZR3GYBT71513R0KXH6SPK0LDNHPXPFXT1QH793FDL91GL7LBL2QWVPVADF' where id=82; -update noar ti set v3='Q6BBPII67U59R29LHW3X07M6J5Z9HEB1NE9W1CAHAVMLEAVU8F1DKKS7GDQ6RR9X9236IZDPS72ZCCUITUZG8562X9LEPSM6FAX550JOBVLW7M3U4MFDB34D17AHVCRY4WN7HUU683ENTM62KOSUQIWJ7T9UJKBRVOC00TQ30O1LWYH1J7M4VIEDOP69G39OAFWZ229ZR3GYBT71513R0KXH6SPK0LDNHPXPFXT1QH793FDL91GL7LBL2QWVPVADF' where id=82; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='4BF5NQRJBZRUFQGU0KQKLSB9JN7PKIJXZBKPJFQBYCTIGFFHEXPTGQOEE9ZL6ZEGXJ742W9YBJQV9ONKYTK0HSSC9KIQ97WLIEMR8FHDSCDFAVAN3WPS5JWSYWQ98LZWVTEAHDGPPVM8KKHG29IM5IVB69BFE60GEVL9X4MJ9NN95FLZPXFWS1NM9P3WI8PO6C7V0PAN5I91APZK3WD5WVWKGNILOUEDO49114CMUJUAA1MZ23AQ9HPUONB5YKJ55' where id=83; -update noar ti set v0='4BF5NQRJBZRUFQGU0KQKLSB9JN7PKIJXZBKPJFQBYCTIGFFHEXPTGQOEE9ZL6ZEGXJ742W9YBJQV9ONKYTK0HSSC9KIQ97WLIEMR8FHDSCDFAVAN3WPS5JWSYWQ98LZWVTEAHDGPPVM8KKHG29IM5IVB69BFE60GEVL9X4MJ9NN95FLZPXFWS1NM9P3WI8PO6C7V0PAN5I91APZK3WD5WVWKGNILOUEDO49114CMUJUAA1MZ23AQ9HPUONB5YKJ55' where id=83; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='THFMIDCUDV5NGX99QS0U603Q55ARNEFBSZOHS04KRWZ7TSFBN8Z8VXR3JRJE63V41JM6TTBX21UTHZ9OGOVPTWAPBS3N6T8LWV3ECEDL99WPD3JKN4TF0V7LTFWD1EI7U6EYP06WJ3RVQ9W682GE74Q8IHA0X1XWCZWL9PRYTBBW4KSII27KEYIJR8WO2XCWBNAH1CSEN4GGHVKDY1EYRX4MEXU3ZHPJV75RZ1Q3IM7GY8E2IKDDA6UXKCEKX4QYW' where id=83; -update noar ti set v1='THFMIDCUDV5NGX99QS0U603Q55ARNEFBSZOHS04KRWZ7TSFBN8Z8VXR3JRJE63V41JM6TTBX21UTHZ9OGOVPTWAPBS3N6T8LWV3ECEDL99WPD3JKN4TF0V7LTFWD1EI7U6EYP06WJ3RVQ9W682GE74Q8IHA0X1XWCZWL9PRYTBBW4KSII27KEYIJR8WO2XCWBNAH1CSEN4GGHVKDY1EYRX4MEXU3ZHPJV75RZ1Q3IM7GY8E2IKDDA6UXKCEKX4QYW' where id=83; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='3QR3DTO8RKAGDVM93NGA0VU4DOSF56HFZNU58QX9HNXV7IR8QCF450DEJ87YY90AJ9QWX90MW3TT1574VWC5I3SUW8STI5ML3U7YDM7XINLY2BA7RKOU855L8FKS9UNOP3DMK2NEW6TDHWF964KD1SDM4T3GPTMLUSQPIZ1LALA1BHHROJ54O4Z6G66HX262D7NAX557R8JJEZG4PWC7LRBJ570JHIAUWDXIJZUQXWHI9NT8YS67L0XRQ1HLWUWXQ' where id=83; -update noar ti set v2='3QR3DTO8RKAGDVM93NGA0VU4DOSF56HFZNU58QX9HNXV7IR8QCF450DEJ87YY90AJ9QWX90MW3TT1574VWC5I3SUW8STI5ML3U7YDM7XINLY2BA7RKOU855L8FKS9UNOP3DMK2NEW6TDHWF964KD1SDM4T3GPTMLUSQPIZ1LALA1BHHROJ54O4Z6G66HX262D7NAX557R8JJEZG4PWC7LRBJ570JHIAUWDXIJZUQXWHI9NT8YS67L0XRQ1HLWUWXQ' where id=83; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='KSKR8VYTUWUPYNBKQX9PGUMIHHIYVDM78LW3FVY7OU1L67RY4NX4XTFAXFSSEOD18N8UJKLQFUJOWIZBMLP6BKW5G31YXLG29XB2CCLBZM9Q8YX9608FKANW5H3O5JDBA3QRLST642CH2ET6IUKT34OHMEIOBUYNVFC5PX5GOZBE3Y132RU8DCE2J5OQDBCC0T2JKYI5GX9ULCV44W6XXBESZEL1Q6CIBGP7OSOO918F5LNI8KHB9PRIDTUY7TNFS' where id=83; -update noar ti set v3='KSKR8VYTUWUPYNBKQX9PGUMIHHIYVDM78LW3FVY7OU1L67RY4NX4XTFAXFSSEOD18N8UJKLQFUJOWIZBMLP6BKW5G31YXLG29XB2CCLBZM9Q8YX9608FKANW5H3O5JDBA3QRLST642CH2ET6IUKT34OHMEIOBUYNVFC5PX5GOZBE3Y132RU8DCE2J5OQDBCC0T2JKYI5GX9ULCV44W6XXBESZEL1Q6CIBGP7OSOO918F5LNI8KHB9PRIDTUY7TNFS' where id=83; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='WNHM4MPPUK2RXYH3ZNBO834CKO2WTCQ26NVK7C0UKM6NTIGLLTSZMC4Q3HE8HCYWZHX6413200LI0CQA7ZQHPNAICSE7ZV3Q9A9YN2HP9JWQX65JR49VONST7NRL19FET065KVE1GNCHTC05KBQVH1EC5V54XNJO4CIWEVB1GYK4AB3HDOE4ST2WTKJ2D66LTMLXD0NYKUFP2GLECZUGNP8HAE1HGQCRX5PDLM6273OV2OI23X7RGEUF2O1ELYDBB' where id=84; -update noar ti set v0='WNHM4MPPUK2RXYH3ZNBO834CKO2WTCQ26NVK7C0UKM6NTIGLLTSZMC4Q3HE8HCYWZHX6413200LI0CQA7ZQHPNAICSE7ZV3Q9A9YN2HP9JWQX65JR49VONST7NRL19FET065KVE1GNCHTC05KBQVH1EC5V54XNJO4CIWEVB1GYK4AB3HDOE4ST2WTKJ2D66LTMLXD0NYKUFP2GLECZUGNP8HAE1HGQCRX5PDLM6273OV2OI23X7RGEUF2O1ELYDBB' where id=84; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='SB6DQ3V0XT7SGQA5QHTTI4D59W2UXD9CDRE6W7658ZIBHW5FR4640L5XU7F1IG0IMF4X7FOT462GGJGKAHTHYPKA32V02585L3ATT4BC7FNV4IJERWS9LLNJKS6EEDJNMPRJNAGR6K10LRI7THSA1LAXTMN0UJ5KP1Q46HN4RU3I2W2DQC1GJK8G1HCVL1YB5BXFXP0MFFB66IR7TEMZ0WL6U2HNC6G6HNFROEHJPX86NEPZLUYD1H6DTIY8ZOCRS' where id=84; -update noar ti set v1='SB6DQ3V0XT7SGQA5QHTTI4D59W2UXD9CDRE6W7658ZIBHW5FR4640L5XU7F1IG0IMF4X7FOT462GGJGKAHTHYPKA32V02585L3ATT4BC7FNV4IJERWS9LLNJKS6EEDJNMPRJNAGR6K10LRI7THSA1LAXTMN0UJ5KP1Q46HN4RU3I2W2DQC1GJK8G1HCVL1YB5BXFXP0MFFB66IR7TEMZ0WL6U2HNC6G6HNFROEHJPX86NEPZLUYD1H6DTIY8ZOCRS' where id=84; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='0CNL8VKPUBNR52B4CXNPMCJRHBV67TMUL0VFNWB03FAX4C66AFGDX0ZV0E5KS0HEXZZ2NFJ5LRSVKSZ5VBQXRHH4GN28CPA33EM3NOWBHWC7G0QGS5YVO1N30Z73HZUY5MKTZZIHAW1QWNQ6U82CC2KMQT4VP1TUB2S1DXBJUZM9437P4RXXH7Z2IXLUOMNY1XFC8N9DNH5WL3VBEJKKU5I5RX93PQAC5UOJ2IOHGSQK135PCA0K97DSV4TP3WAD9' where id=84; -update noar ti set v2='0CNL8VKPUBNR52B4CXNPMCJRHBV67TMUL0VFNWB03FAX4C66AFGDX0ZV0E5KS0HEXZZ2NFJ5LRSVKSZ5VBQXRHH4GN28CPA33EM3NOWBHWC7G0QGS5YVO1N30Z73HZUY5MKTZZIHAW1QWNQ6U82CC2KMQT4VP1TUB2S1DXBJUZM9437P4RXXH7Z2IXLUOMNY1XFC8N9DNH5WL3VBEJKKU5I5RX93PQAC5UOJ2IOHGSQK135PCA0K97DSV4TP3WAD9' where id=84; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='LS6GP1ZTS75NT5ALHWGO0PLQZX28FEYFWXOKK6Q96NFMHQ7R5G32VOEQHK1UUMZJA8QOYQN16T01KJDN89FOCO78GFH8PTX23TJ8C2DK7LX4AQP5TKHZYDB04TGLPUHMVPY7G0F2U4B9N8PHRRRIMDDMRLQNDRDIE64J7S5GCSA0KIKLDBRVE2LFLJD0ASORZNWLBNG6FNDDWA4I7AFD26TWZ2K5E5SA8WX0RJSQXWWKSJXBC6WFUPX2TZXY5OKJU' where id=84; -update noar ti set v3='LS6GP1ZTS75NT5ALHWGO0PLQZX28FEYFWXOKK6Q96NFMHQ7R5G32VOEQHK1UUMZJA8QOYQN16T01KJDN89FOCO78GFH8PTX23TJ8C2DK7LX4AQP5TKHZYDB04TGLPUHMVPY7G0F2U4B9N8PHRRRIMDDMRLQNDRDIE64J7S5GCSA0KIKLDBRVE2LFLJD0ASORZNWLBNG6FNDDWA4I7AFD26TWZ2K5E5SA8WX0RJSQXWWKSJXBC6WFUPX2TZXY5OKJU' where id=84; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='Y3Q3BOUVLDLBVPY2DU3VL1Z1A1711HI0EX3AV1UQE54ODZS8DLPH9DSO1I4PBGO21VK6CG8CP1Y69CGMSL4P6LWFCEVWJJCHKMIH24FKO53KIQQMGKZUXN51ZLKVHS3OV8QE5468UMPOGFB1G0YLV2VVIYZP5J3TFYQV6WO198FLSBL9FR1A23LFP6DQIKN2DMCJ9DHRJ231F7K9CKKOUAVGN3EVKBHYIWPQU0RGNGLV0L63AX4Z7DEQ3NBXY4PVM' where id=85; -update noar ti set v0='Y3Q3BOUVLDLBVPY2DU3VL1Z1A1711HI0EX3AV1UQE54ODZS8DLPH9DSO1I4PBGO21VK6CG8CP1Y69CGMSL4P6LWFCEVWJJCHKMIH24FKO53KIQQMGKZUXN51ZLKVHS3OV8QE5468UMPOGFB1G0YLV2VVIYZP5J3TFYQV6WO198FLSBL9FR1A23LFP6DQIKN2DMCJ9DHRJ231F7K9CKKOUAVGN3EVKBHYIWPQU0RGNGLV0L63AX4Z7DEQ3NBXY4PVM' where id=85; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='HIBDYHGMHEOMDY98GA4K2P4GY5R9J98N9CQVLAQ0IKMZH0BCDHIO7LDVT6L2ZUSUL5MGRHD3DDQKWMNIK3WBUZSX144D557MVUM8QF0GUZ04J7O5CJQC9YSKRBEEYXI0R3WRRQRHQJEGR5HSGCGVH2FF3ASEVC5V68HE2E7K3UF4CJBG200XHJ36J00J4IW2GOQ7BUGM737NXXJWNR3PLJDAIH74DO1MDJWPA3JF30ZN6S27UJCTY178B2YN8PARM' where id=85; -update noar ti set v1='HIBDYHGMHEOMDY98GA4K2P4GY5R9J98N9CQVLAQ0IKMZH0BCDHIO7LDVT6L2ZUSUL5MGRHD3DDQKWMNIK3WBUZSX144D557MVUM8QF0GUZ04J7O5CJQC9YSKRBEEYXI0R3WRRQRHQJEGR5HSGCGVH2FF3ASEVC5V68HE2E7K3UF4CJBG200XHJ36J00J4IW2GOQ7BUGM737NXXJWNR3PLJDAIH74DO1MDJWPA3JF30ZN6S27UJCTY178B2YN8PARM' where id=85; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='HG6035JL1SVXPCC0Y5WIBIQO9Z0ZAG3O97ON5T1VS9U44CDNVPTYV5E48540C5Y55V26SNE1RT8L16QOOCSIGI32K1Z5JM6HV5N793PEMPQ9HP7XCXA140LZGV6THQ9BOIVFE351A5ZKW42R53V77WU0T2KQB80ZEH6FP5G6ZHB6269CCQSGX39TTKMANY19CBHVP3IBUIQRB5O1O1YM2W0NO18KJZRY1X8ZW98F48XLMVU1OTHLB9TY33JO2IBDS' where id=85; -update noar ti set v2='HG6035JL1SVXPCC0Y5WIBIQO9Z0ZAG3O97ON5T1VS9U44CDNVPTYV5E48540C5Y55V26SNE1RT8L16QOOCSIGI32K1Z5JM6HV5N793PEMPQ9HP7XCXA140LZGV6THQ9BOIVFE351A5ZKW42R53V77WU0T2KQB80ZEH6FP5G6ZHB6269CCQSGX39TTKMANY19CBHVP3IBUIQRB5O1O1YM2W0NO18KJZRY1X8ZW98F48XLMVU1OTHLB9TY33JO2IBDS' where id=85; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='TX7X75C978XFPVZK44W0ZE23IJQ9FHIRNA847XD1HE0NO7KS9BDUHB1ZL1LOM1ZF0ZDNV6YX4GWARKNOM34NYD1K950MXFE833UMMEQK9CH200OVCOZYNGIKWQ0S42K3VVJVM8H0OUKIJXXQXGYKYO69UFI5KXM5VP63MZR5122KKHPDAQRP72L1BIV2PBRR0G75DMH6M6NSHYA6SO4XTY8723YYH97S6D4PB4H1PKBHZCEODVZAG7KGIQASH2MCX' where id=85; -update noar ti set v3='TX7X75C978XFPVZK44W0ZE23IJQ9FHIRNA847XD1HE0NO7KS9BDUHB1ZL1LOM1ZF0ZDNV6YX4GWARKNOM34NYD1K950MXFE833UMMEQK9CH200OVCOZYNGIKWQ0S42K3VVJVM8H0OUKIJXXQXGYKYO69UFI5KXM5VP63MZR5122KKHPDAQRP72L1BIV2PBRR0G75DMH6M6NSHYA6SO4XTY8723YYH97S6D4PB4H1PKBHZCEODVZAG7KGIQASH2MCX' where id=85; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='TOI2L67GT79V7MD6EUQARQ6E6TSQLQSD2DV5VCPGKI7E51PRPR6J9EHQXWBZ6J01C6B5ITXP8UQCWMEPVW4QJ2LCZF2MQ0XHRZCQ8K24QPC8NGZKUWAW6M1KIA3NWO9BWXQYOMCAF6GSZIJ2BSKQI9GHULRM5SFP1TRIKMPRNMIZ0KKC95KI5MF33U4DNFPUX2VPK6ZO4XS711ILPRS5DBD4A81IAITZAFHXG71RAT5VQVSIT1M39OK645IUM34YN' where id=86; -update noar ti set v0='TOI2L67GT79V7MD6EUQARQ6E6TSQLQSD2DV5VCPGKI7E51PRPR6J9EHQXWBZ6J01C6B5ITXP8UQCWMEPVW4QJ2LCZF2MQ0XHRZCQ8K24QPC8NGZKUWAW6M1KIA3NWO9BWXQYOMCAF6GSZIJ2BSKQI9GHULRM5SFP1TRIKMPRNMIZ0KKC95KI5MF33U4DNFPUX2VPK6ZO4XS711ILPRS5DBD4A81IAITZAFHXG71RAT5VQVSIT1M39OK645IUM34YN' where id=86; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='V8MY7ZS5FSPCKIBBTUEYH34M801ZFUYETP6EN7AVXNMHZLFH15XJS1MMKDXQV44MKZVY5H0I968O7KXVQ8VHTFUK17L763099QTVE86QTP5OF5PZXIQJGH20DC6JPME7P2ELCLR7TO6HM5U9UMO9Z58B8FDYYAABBF1FLQOAXZ2JEAPLHN94G8WDIILHTFYKRA2OG9JFH6IOTSH82STSC3WGBZSG9RZMWSEP4XD8C7CT9PMDADVWAH2NZSOIA1KYU' where id=86; -update noar ti set v1='V8MY7ZS5FSPCKIBBTUEYH34M801ZFUYETP6EN7AVXNMHZLFH15XJS1MMKDXQV44MKZVY5H0I968O7KXVQ8VHTFUK17L763099QTVE86QTP5OF5PZXIQJGH20DC6JPME7P2ELCLR7TO6HM5U9UMO9Z58B8FDYYAABBF1FLQOAXZ2JEAPLHN94G8WDIILHTFYKRA2OG9JFH6IOTSH82STSC3WGBZSG9RZMWSEP4XD8C7CT9PMDADVWAH2NZSOIA1KYU' where id=86; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='OI6XGHID2H3682J24XGDFK6T75FV6RTXWRNED2OGGY28MFG0G7F083IQ429QFHIJKTUI83M8KCS40L60WD34BLHA47PWQ1N8OV13FS6QF46Y7SHR79WZ1X7GWY6LE1I5XN1CI5NHS9U5S2STN2XNCW77FIWYP476JCQBXA2GA24B1S6KSPXRBU7T0MDS9A0VI6T3X2NNV5F1UWHCEOLG39C2RYT2SAH22ZPYB9DWBVA9VZ9B46QHQAJM49Y9DEU5O' where id=86; -update noar ti set v2='OI6XGHID2H3682J24XGDFK6T75FV6RTXWRNED2OGGY28MFG0G7F083IQ429QFHIJKTUI83M8KCS40L60WD34BLHA47PWQ1N8OV13FS6QF46Y7SHR79WZ1X7GWY6LE1I5XN1CI5NHS9U5S2STN2XNCW77FIWYP476JCQBXA2GA24B1S6KSPXRBU7T0MDS9A0VI6T3X2NNV5F1UWHCEOLG39C2RYT2SAH22ZPYB9DWBVA9VZ9B46QHQAJM49Y9DEU5O' where id=86; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='5O3T1GMMV5WZKHLLE4D7WBIRA8IXU5G0GN59ZXVVHO1MZ1ZX0OV2WKF8T2WO0T0SLLSIICP45RWG5HQOEIYN1TPYUBDKMK27ZTCZ8RX2WSSSXVJ80DH81WDBO2561HLQFMDZVG0R8D0X9FRYMKOOP79HUWBTRNN1PIZ8JP34JLR4AHA7LD88L10I7Z4EXXQ1U809EARQMDPC5R6SGROBMETUDUROLF6D1FXL7DNS3RN3YUTRDAQ33IG4SBDSSW1BR' where id=86; -update noar ti set v3='5O3T1GMMV5WZKHLLE4D7WBIRA8IXU5G0GN59ZXVVHO1MZ1ZX0OV2WKF8T2WO0T0SLLSIICP45RWG5HQOEIYN1TPYUBDKMK27ZTCZ8RX2WSSSXVJ80DH81WDBO2561HLQFMDZVG0R8D0X9FRYMKOOP79HUWBTRNN1PIZ8JP34JLR4AHA7LD88L10I7Z4EXXQ1U809EARQMDPC5R6SGROBMETUDUROLF6D1FXL7DNS3RN3YUTRDAQ33IG4SBDSSW1BR' where id=86; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='RK9SI16NM1A7MCANVK3R9G8FYUMGM6KMXTSLPZU5B0H49HV21G3UU53B1528OL2J8HTMVUK8C9XUU0ZVGLH34KRITAN8WYR6TSHFNSK80PO23SHFIJN1MG71IIX081OWSL5K18E7V1D8MTUSWSI45AKQ5L7SWRZYAXF335JIZOD9FKRAX4CMUDDRFMLVYQYCGJ6J9AINQ3PK5BBBDBF7QH7HQ3MYDVM27K0G4MGAWSZT7E0NX9BDPHH7GJ8TISHFR' where id=87; -update noar ti set v0='RK9SI16NM1A7MCANVK3R9G8FYUMGM6KMXTSLPZU5B0H49HV21G3UU53B1528OL2J8HTMVUK8C9XUU0ZVGLH34KRITAN8WYR6TSHFNSK80PO23SHFIJN1MG71IIX081OWSL5K18E7V1D8MTUSWSI45AKQ5L7SWRZYAXF335JIZOD9FKRAX4CMUDDRFMLVYQYCGJ6J9AINQ3PK5BBBDBF7QH7HQ3MYDVM27K0G4MGAWSZT7E0NX9BDPHH7GJ8TISHFR' where id=87; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='TN96X4NAF2C5LBAMTZX2JD9FO5CP93EUH9USZH2EYSJG3A99UNMZCY3GOSDMEBYLFCGS6UIHQW71B315JRA6CY1H41ERF40Y2OEKH2WHJCUPACHYNE42KUGV00DPXD49COYTO5RN23SHAWSD1C66NCXAMIZARETT1SRRPHRRZX9KJ2EYB1AQCK11G7JGB49ENBBFL3Z0Q685MN1XWZZZRDI7WWYBU19PRNDDLECA6YTOCX3UHJW0EG58FPQ6LBVKD' where id=87; -update noar ti set v1='TN96X4NAF2C5LBAMTZX2JD9FO5CP93EUH9USZH2EYSJG3A99UNMZCY3GOSDMEBYLFCGS6UIHQW71B315JRA6CY1H41ERF40Y2OEKH2WHJCUPACHYNE42KUGV00DPXD49COYTO5RN23SHAWSD1C66NCXAMIZARETT1SRRPHRRZX9KJ2EYB1AQCK11G7JGB49ENBBFL3Z0Q685MN1XWZZZRDI7WWYBU19PRNDDLECA6YTOCX3UHJW0EG58FPQ6LBVKD' where id=87; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='T384QCH1DSJS1RRGH05VTWE6V6AL8UHQ2WNF6H9DFPM89DVGMAJKSG46W3DC27PH17YO7DXEF8D7L1AR6FS9F1EF2Y06M2BWGZS33XB5H2NG0GWGXZH2HUOEKLCTGNBG4QYKKX0OF0WDJWSIOQ5OFIGD2XWEGGNDIU056WCMUU7J5NT7TPATBZG96PG8XB39C7QE6XEDKXKMN6JGAWWDU9G96ZL5WZEX3EXJ8RCDLI9OYFCIFE2YAJB16J9HIVYIB' where id=87; -update noar ti set v2='T384QCH1DSJS1RRGH05VTWE6V6AL8UHQ2WNF6H9DFPM89DVGMAJKSG46W3DC27PH17YO7DXEF8D7L1AR6FS9F1EF2Y06M2BWGZS33XB5H2NG0GWGXZH2HUOEKLCTGNBG4QYKKX0OF0WDJWSIOQ5OFIGD2XWEGGNDIU056WCMUU7J5NT7TPATBZG96PG8XB39C7QE6XEDKXKMN6JGAWWDU9G96ZL5WZEX3EXJ8RCDLI9OYFCIFE2YAJB16J9HIVYIB' where id=87; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='34R1ZKMFJ8SX79GP3IALW65FZOXKUI1KQ2OL23AJJN0W2ND1OO55MKGL4T2FSQHI52QNX5YE79DU2F7LJX8RBS2OF6QYKG9JI59HVQOZEIDQKWMS7EVYJDWONOI7DJ20TNQK3BA1BLFUY45WHTJQ2BTIYSDZ168G0BSZJ4MFMNR5M8DQZJTW23HYCRKS76FWBRYZ0CAYQ9L8S6ZAWG1K0MYE1YHDFYF3YBCMIRCEVNMGBGZRM3ZU4G880PXYYW30V' where id=87; -update noar ti set v3='34R1ZKMFJ8SX79GP3IALW65FZOXKUI1KQ2OL23AJJN0W2ND1OO55MKGL4T2FSQHI52QNX5YE79DU2F7LJX8RBS2OF6QYKG9JI59HVQOZEIDQKWMS7EVYJDWONOI7DJ20TNQK3BA1BLFUY45WHTJQ2BTIYSDZ168G0BSZJ4MFMNR5M8DQZJTW23HYCRKS76FWBRYZ0CAYQ9L8S6ZAWG1K0MYE1YHDFYF3YBCMIRCEVNMGBGZRM3ZU4G880PXYYW30V' where id=87; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='DNVW1TBYCZQ3SL3XBDAH2PBKT2GT9HVF11P4N18WNEXIHO2OUCPQTI9D1Z2TKACRVOD8OMFK2PSIYA0D15YG29PNDPX1BJ9H7C447JQB0IYFUE9GJGGAYVUDDMTV75J5R1N3SXK69GTG07N4ESJ2YOSP5F69XKSJ3FBMF5D9NTU3HHDWIMEYIL17X0WSHYJFV3YXWOCWSF3E44MJ310M5EG4YHB86C3O92HS8LP6Z8IC9KOLSOA8QC5JPUSSGOPNH' where id=88; -update noar ti set v0='DNVW1TBYCZQ3SL3XBDAH2PBKT2GT9HVF11P4N18WNEXIHO2OUCPQTI9D1Z2TKACRVOD8OMFK2PSIYA0D15YG29PNDPX1BJ9H7C447JQB0IYFUE9GJGGAYVUDDMTV75J5R1N3SXK69GTG07N4ESJ2YOSP5F69XKSJ3FBMF5D9NTU3HHDWIMEYIL17X0WSHYJFV3YXWOCWSF3E44MJ310M5EG4YHB86C3O92HS8LP6Z8IC9KOLSOA8QC5JPUSSGOPNH' where id=88; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='GW13J18GQ36UC12VUK84ZG4YWTO84BNLSZYIODIQLK3F8JFJCPCQW5ZRZWZOA5Q1T0DBVGRZWHXSN5RZR02WGMGAVX6LCGNKMD1CKJVSKWBVVTZU1G984S44DWNN75D9EVQ5ZR3SCQK65270ZR7G83I3KOWQH0SJV18IKOA2CYDH7CTFO743W6O9W5A2H40DEUPVGB53VQ2D6YZQBS8S82P4G06VSANHDUXF0L5T9PJPB4TBM2TNJR1W6FWSSXZAT' where id=88; -update noar ti set v1='GW13J18GQ36UC12VUK84ZG4YWTO84BNLSZYIODIQLK3F8JFJCPCQW5ZRZWZOA5Q1T0DBVGRZWHXSN5RZR02WGMGAVX6LCGNKMD1CKJVSKWBVVTZU1G984S44DWNN75D9EVQ5ZR3SCQK65270ZR7G83I3KOWQH0SJV18IKOA2CYDH7CTFO743W6O9W5A2H40DEUPVGB53VQ2D6YZQBS8S82P4G06VSANHDUXF0L5T9PJPB4TBM2TNJR1W6FWSSXZAT' where id=88; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='SLLOG6Y0TRHMWJPJGW0L2FDLS2Q3G34KHNE8J449EDWWZ47C8S11YRHBX596S9ICBURRQWMRL7ATMNMYYXB0BH285X9X1668IW1O57SU4F0SH3S54SHDXWNPXEUGKQD3B77KJ0Y959U0J5R3OP0KSARQLN992RNYPEB0KFLF1ES11TO8CWB8N2GDMDYU2PXR950GFSBVDDC7JDBXEUK6E8OK18TZE45NPERBGE01LJZ9DBUF8X7DSTCF8800SJSK8' where id=88; -update noar ti set v2='SLLOG6Y0TRHMWJPJGW0L2FDLS2Q3G34KHNE8J449EDWWZ47C8S11YRHBX596S9ICBURRQWMRL7ATMNMYYXB0BH285X9X1668IW1O57SU4F0SH3S54SHDXWNPXEUGKQD3B77KJ0Y959U0J5R3OP0KSARQLN992RNYPEB0KFLF1ES11TO8CWB8N2GDMDYU2PXR950GFSBVDDC7JDBXEUK6E8OK18TZE45NPERBGE01LJZ9DBUF8X7DSTCF8800SJSK8' where id=88; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='8GBW401CC5Z6KC7IE4JOA48GDBLMJ9PY5HU3YD5DODCXQRSR2D58UQDFT7YLOS68YYPS3SCL3PORB5J194DJ9APTD8QWHU4KUOY9WRG200VZSXILE5TVKGCFOVYAOSTV7EP33L0XGR5BHMI0K80Y6UP7Q008MBWJHB7V0N10YIKAKABAO2S9O15VNOQYIZ599FUOG7EF0PCYLBMRPAZAR2CKQJXNU79QJA5XVN14KR5RP6GWN0G65BUEMR0BLKZHA' where id=88; -update noar ti set v3='8GBW401CC5Z6KC7IE4JOA48GDBLMJ9PY5HU3YD5DODCXQRSR2D58UQDFT7YLOS68YYPS3SCL3PORB5J194DJ9APTD8QWHU4KUOY9WRG200VZSXILE5TVKGCFOVYAOSTV7EP33L0XGR5BHMI0K80Y6UP7Q008MBWJHB7V0N10YIKAKABAO2S9O15VNOQYIZ599FUOG7EF0PCYLBMRPAZAR2CKQJXNU79QJA5XVN14KR5RP6GWN0G65BUEMR0BLKZHA' where id=88; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='FCRMBUNPXV0ZIOJJMOMTNE1QMTOUTP1AOPLK6LI5LU30190RB7KTZI19K51G3YRETK884VCNCO9QVLZZY5PUPE477R97K0RKIQL1QPDYIQPZCT6QRPOFGY4SQQLC1V8CQBKHVXJLMWUGGKMP8G7X92SISFO1CU8FZHFL015OV934K0KY7EZIE2NLES3JJX6CRLRAR9MGQPQLZYRZFG9H112GLGEANKI3U91MSJ2GKYSQ1NHODGODALC7E32AMKTZ1' where id=89; -update noar ti set v0='FCRMBUNPXV0ZIOJJMOMTNE1QMTOUTP1AOPLK6LI5LU30190RB7KTZI19K51G3YRETK884VCNCO9QVLZZY5PUPE477R97K0RKIQL1QPDYIQPZCT6QRPOFGY4SQQLC1V8CQBKHVXJLMWUGGKMP8G7X92SISFO1CU8FZHFL015OV934K0KY7EZIE2NLES3JJX6CRLRAR9MGQPQLZYRZFG9H112GLGEANKI3U91MSJ2GKYSQ1NHODGODALC7E32AMKTZ1' where id=89; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='6EQU2GAN65WL56K1TYSN7AFNU8K57HVH69I0Y3QT3GQH45WKSIP2BO09XH3WC5LTY1C4TAZME92F6VEM89INT48S3QGD6T2UT38XMYNPBI024UNZO36CS3ICGQY6TK9QZ285KD1908YPDDI1PIFN9OINOCU6UR021EGCXFOE0KD7FF4BWG6K9UMTRV47AL2B7SWZNQ8UYQ3NKOOEFPMDX08IFCXADPTY72O3CERKLI4KK6N9QL8VYLHUSJ6W27X0C' where id=89; -update noar ti set v1='6EQU2GAN65WL56K1TYSN7AFNU8K57HVH69I0Y3QT3GQH45WKSIP2BO09XH3WC5LTY1C4TAZME92F6VEM89INT48S3QGD6T2UT38XMYNPBI024UNZO36CS3ICGQY6TK9QZ285KD1908YPDDI1PIFN9OINOCU6UR021EGCXFOE0KD7FF4BWG6K9UMTRV47AL2B7SWZNQ8UYQ3NKOOEFPMDX08IFCXADPTY72O3CERKLI4KK6N9QL8VYLHUSJ6W27X0C' where id=89; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='8HX17TDB7IF28USMJSYVWPAA9AZPVRPKXJDV85TFUCDIEOYZJE40S4X4UMZGJEHGJEOO4A332NTFXGGCM09JD8Y32UIBGQ21O3097C2COQ3394DK9XLEY5R1RL453GFYTDSJH8BW5FKAQ8HJ3O7M6DHCK10IWF20OES5WNCTR08740BX4HQFIVYG3U6UAP6BMMTXAA7LPC6ODPJM22RZNEJ8BUX06QWISLQIXBDUEZIXNDXD3N5MLY1EYXPP3WJSO' where id=89; -update noar ti set v2='8HX17TDB7IF28USMJSYVWPAA9AZPVRPKXJDV85TFUCDIEOYZJE40S4X4UMZGJEHGJEOO4A332NTFXGGCM09JD8Y32UIBGQ21O3097C2COQ3394DK9XLEY5R1RL453GFYTDSJH8BW5FKAQ8HJ3O7M6DHCK10IWF20OES5WNCTR08740BX4HQFIVYG3U6UAP6BMMTXAA7LPC6ODPJM22RZNEJ8BUX06QWISLQIXBDUEZIXNDXD3N5MLY1EYXPP3WJSO' where id=89; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='CBRMEQSGVPKJX84L68LRNFB0JZJPHNF5LK23C8AEWQVCQZK5HZEVLRMIDN30PYWM2WACK8ACXR35ESB7CGJ5TLS6V4U237T9EYG9IAXDR457QY9NAK7MTE9ZJDCGMV4YPDSH6R76KAEV9O49FH07VW70BDYVRMQS98H7RKMXYOGK4RG3QEN4Z3JB84WEF7JQ9JZG4VAH2KQ895HHU1851NOS6B7KAAPGLWJCI6R5YG1PIHXT8AVW8RGNO9V7BVIYK' where id=89; -update noar ti set v3='CBRMEQSGVPKJX84L68LRNFB0JZJPHNF5LK23C8AEWQVCQZK5HZEVLRMIDN30PYWM2WACK8ACXR35ESB7CGJ5TLS6V4U237T9EYG9IAXDR457QY9NAK7MTE9ZJDCGMV4YPDSH6R76KAEV9O49FH07VW70BDYVRMQS98H7RKMXYOGK4RG3QEN4Z3JB84WEF7JQ9JZG4VAH2KQ895HHU1851NOS6B7KAAPGLWJCI6R5YG1PIHXT8AVW8RGNO9V7BVIYK' where id=89; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='QNA1QO5V7X15MRHFIWTPM54OOJTILBI5FY0WNWBWVOYJLUHVG8BZJZ6DBDVXEW909DLE8BGIB2VZ47M8NR5B73H6NSQQMUAAZF39SL8UXAQ3BES3JK4F9MJZ09KNF12QFTH4XJLDR1L1XJUTYLBQEMXSA11NYZB0K9BJG32NKIO8OFJQ4E5B9G8B17E25AMDTNL6ZLO0BBTL6HOBGRXFLM3UOP10QT99G5LC5NF8Y6G7CB6TFCT3YOYYANM45YAKT' where id=90; -update noar ti set v0='QNA1QO5V7X15MRHFIWTPM54OOJTILBI5FY0WNWBWVOYJLUHVG8BZJZ6DBDVXEW909DLE8BGIB2VZ47M8NR5B73H6NSQQMUAAZF39SL8UXAQ3BES3JK4F9MJZ09KNF12QFTH4XJLDR1L1XJUTYLBQEMXSA11NYZB0K9BJG32NKIO8OFJQ4E5B9G8B17E25AMDTNL6ZLO0BBTL6HOBGRXFLM3UOP10QT99G5LC5NF8Y6G7CB6TFCT3YOYYANM45YAKT' where id=90; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='1O65WKW4MGFDEV2DBWXLKK49LPHD7VOP0S8XDJYTQKBO7WM00AKDVTT8XT5631B6W1XI2KSAEFY0SX7O3DL3EN17OD574EB2RWYCERM0A9Z1AOW0WZBC2AODEXUKZG11IQHJG4IYDUP89GEFWKEDWRADKOA9XHMV37JTFS0V6461KNPFFIJOIXP8QM341KJ0QOVA80OGYFT1CEBQ08DUR2EN0BSJCGHWA3CKZ3IUGRD1E6VV17QUOMY80FPO67BZP' where id=90; -update noar ti set v1='1O65WKW4MGFDEV2DBWXLKK49LPHD7VOP0S8XDJYTQKBO7WM00AKDVTT8XT5631B6W1XI2KSAEFY0SX7O3DL3EN17OD574EB2RWYCERM0A9Z1AOW0WZBC2AODEXUKZG11IQHJG4IYDUP89GEFWKEDWRADKOA9XHMV37JTFS0V6461KNPFFIJOIXP8QM341KJ0QOVA80OGYFT1CEBQ08DUR2EN0BSJCGHWA3CKZ3IUGRD1E6VV17QUOMY80FPO67BZP' where id=90; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='65BYX268QR2EMW17UX9AHB021U6H3MPCB9QJXOSO774S92U28DTREPO0VKC6ROIFYJ10TYA6K75TPX2PMZ1YS90ZJM076CZE721GD63RZAKK3W8MKD1Q7AEEQDIEIABRDWTD1SZ7WLE4XT9C9Z93RIIZY95V3IEUB3T2R6JAC3F2D9ND4MM7NNNWK48XYOEI6PH99T3R3ZO31UA2S3A2LJ4CBA4KGB4JNANILIQIV8ID55VUVDEZ4V8YUD7XSJ2U5' where id=90; -update noar ti set v2='65BYX268QR2EMW17UX9AHB021U6H3MPCB9QJXOSO774S92U28DTREPO0VKC6ROIFYJ10TYA6K75TPX2PMZ1YS90ZJM076CZE721GD63RZAKK3W8MKD1Q7AEEQDIEIABRDWTD1SZ7WLE4XT9C9Z93RIIZY95V3IEUB3T2R6JAC3F2D9ND4MM7NNNWK48XYOEI6PH99T3R3ZO31UA2S3A2LJ4CBA4KGB4JNANILIQIV8ID55VUVDEZ4V8YUD7XSJ2U5' where id=90; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='F7WXSO2SLKFA4VR40QPR2YZ37UXZPGOMKSWGDLZCNOUIOQBOLDW5W0ZJPET3F5WLHT7LLZUJ0P4EOHESDFZ06ESFSYS0NHPO0XGS1N0LM5F9BVIKILIPGRNNWF9GFQQ0O6E7QW1CSWWYL0EKR4NI04VWUHM9OJ40YLWCU7WRW8Q35E1KWXT1MYAVCHBOHH01VZQORV1YIQ4IWMJFZC53KETY0OPLGRH3W398VMW02YLY0IQN6CDFSDASH1Q1B1ODI' where id=90; -update noar ti set v3='F7WXSO2SLKFA4VR40QPR2YZ37UXZPGOMKSWGDLZCNOUIOQBOLDW5W0ZJPET3F5WLHT7LLZUJ0P4EOHESDFZ06ESFSYS0NHPO0XGS1N0LM5F9BVIKILIPGRNNWF9GFQQ0O6E7QW1CSWWYL0EKR4NI04VWUHM9OJ40YLWCU7WRW8Q35E1KWXT1MYAVCHBOHH01VZQORV1YIQ4IWMJFZC53KETY0OPLGRH3W398VMW02YLY0IQN6CDFSDASH1Q1B1ODI' where id=90; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='BXN41P3XDML9LI2WGX6SEKTREEUJNC35ESVWNYC7KDI5VYTDS26N06JCUKZVEFEOZZMB6YHN590EZT2OUT11DU61HL2R4BGQSSE16GWP0VOBUGPGL1BEDOTUTM0IMSI40F5A0LAK5LZ7IQLLC79LG4XCRBO5G23SLT6P1KXD1KX61086ME55Z1ODH6T4VIM3IJEKXBB7JEI7UQ0FRHP9YCCBNZ40UUVW982ZVILNCFK1XBXCK5SXJDZB921KRQQMK' where id=91; -update noar ti set v0='BXN41P3XDML9LI2WGX6SEKTREEUJNC35ESVWNYC7KDI5VYTDS26N06JCUKZVEFEOZZMB6YHN590EZT2OUT11DU61HL2R4BGQSSE16GWP0VOBUGPGL1BEDOTUTM0IMSI40F5A0LAK5LZ7IQLLC79LG4XCRBO5G23SLT6P1KXD1KX61086ME55Z1ODH6T4VIM3IJEKXBB7JEI7UQ0FRHP9YCCBNZ40UUVW982ZVILNCFK1XBXCK5SXJDZB921KRQQMK' where id=91; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='0DJTGK5SQ2C28D1BRS9HVJM0M4SZ50LG6X8YOOC5GYAH2PQE6CWM74QNRVW2LBKF0C97R9WAMPNZCB9CM9MRVDOBVBZZE09OPIWOFARJ0SCX6F9EPJBJT7R8MWD17FB9LIPLBXADYPIVX7DKNJFVT4OE54BVLU3WIA35ODGXW2A9ZK6B6G83WS7LLRTCTGY0E3EYGMXL8LPKU5FPAUJO3MQ3LIPUPWPF66XZWFOF25GCRAN0DHTL2QEHG2C53UCY5' where id=91; -update noar ti set v1='0DJTGK5SQ2C28D1BRS9HVJM0M4SZ50LG6X8YOOC5GYAH2PQE6CWM74QNRVW2LBKF0C97R9WAMPNZCB9CM9MRVDOBVBZZE09OPIWOFARJ0SCX6F9EPJBJT7R8MWD17FB9LIPLBXADYPIVX7DKNJFVT4OE54BVLU3WIA35ODGXW2A9ZK6B6G83WS7LLRTCTGY0E3EYGMXL8LPKU5FPAUJO3MQ3LIPUPWPF66XZWFOF25GCRAN0DHTL2QEHG2C53UCY5' where id=91; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='F8I1Y2DS2GMRUL65S8BAZFCRBOWFU5U9X4C5NAD6TE0Z5OP536AWFCQ3HFLSXVIMGKRFWK4JYZWDMA60LP1FBHRXH1ZIW8HNY39U4XQGDNW95XXM6JL6F0TFFPEEIV0RPC8HOCSVPHCLOW5A144F48952XEEFEZ46AFAKHJGU71GVXVWLZ7KFX84HM6ANUSKF2AAQ6OK4Y8IZHFURJX5ZXC8PHOUU6XEKFHBIWDNK70X6HINH8TN4HFHIL6QN5KPI' where id=91; -update noar ti set v2='F8I1Y2DS2GMRUL65S8BAZFCRBOWFU5U9X4C5NAD6TE0Z5OP536AWFCQ3HFLSXVIMGKRFWK4JYZWDMA60LP1FBHRXH1ZIW8HNY39U4XQGDNW95XXM6JL6F0TFFPEEIV0RPC8HOCSVPHCLOW5A144F48952XEEFEZ46AFAKHJGU71GVXVWLZ7KFX84HM6ANUSKF2AAQ6OK4Y8IZHFURJX5ZXC8PHOUU6XEKFHBIWDNK70X6HINH8TN4HFHIL6QN5KPI' where id=91; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='07LV3REF60SP7BB98CU8BRJBQ25JIZLU3N8I2AZ9FFSGQ30KLL7SAKRXPAFPD8WCOWAA0TYIZZY5AW0FNIPK20O38ZT140QWG1DXMDBT34FIF6U9W0RN2OXGU9MV56PHM2PAG2X3OS5C7I2QEQBK4ORKIRWCEV40KJ14CENPXWKJ1E75LU7OYWHD584HTN537T7H0JDD83PD1Y3OYOO12LZ560PMDZ895PH1SUWELWAEZPO6QU9T6YDEGMKPHKATD' where id=91; -update noar ti set v3='07LV3REF60SP7BB98CU8BRJBQ25JIZLU3N8I2AZ9FFSGQ30KLL7SAKRXPAFPD8WCOWAA0TYIZZY5AW0FNIPK20O38ZT140QWG1DXMDBT34FIF6U9W0RN2OXGU9MV56PHM2PAG2X3OS5C7I2QEQBK4ORKIRWCEV40KJ14CENPXWKJ1E75LU7OYWHD584HTN537T7H0JDD83PD1Y3OYOO12LZ560PMDZ895PH1SUWELWAEZPO6QU9T6YDEGMKPHKATD' where id=91; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='H7VXGSD9HW21CEJZEQ0ZKAQCDS7DHN0W2G4R6SH8QCCB9S6NYXSDD5LV0G3GGT771ODS8M3A4QBBB6I2IOVIUDU66UJME4MH3YBNVXCE40ABPQLHTGYCKHGSTBCT9P48UFW9YDZYK5DBNLELLCASRUQXBQP3GWWWRNHTIHTCKVCXEDEFXNEY9KNMVEC08DH028T8HBFH1T7TF3AN21LC205WX344A9ZKPNRIUI18IG03VBWUUO2NMB2SHH99066IE' where id=92; -update noar ti set v0='H7VXGSD9HW21CEJZEQ0ZKAQCDS7DHN0W2G4R6SH8QCCB9S6NYXSDD5LV0G3GGT771ODS8M3A4QBBB6I2IOVIUDU66UJME4MH3YBNVXCE40ABPQLHTGYCKHGSTBCT9P48UFW9YDZYK5DBNLELLCASRUQXBQP3GWWWRNHTIHTCKVCXEDEFXNEY9KNMVEC08DH028T8HBFH1T7TF3AN21LC205WX344A9ZKPNRIUI18IG03VBWUUO2NMB2SHH99066IE' where id=92; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='2N6GCHM78TBIOTYBHCCFIK5XYNKK9VF149X3QNY6WNKUJR4BYLACQ3W6PRPDPXIAITO1SG245S6U0NII5UDL09PAI00QI0RS2LWLSA7BVNZW8K3OK87SCA4P41F7OJW85FBU4M1EM4JMWUXZULX2UDXKZ3TJDWE6XWAHH0V6SVYHAIA9N1NNDA8HIZ2Y6O6NEFD9CM9LGO7FYQEV12UMR1KD2XZFMLECCQHISM5ILMEGM9FIOMNPUAVD7GSOFPIDC' where id=92; -update noar ti set v1='2N6GCHM78TBIOTYBHCCFIK5XYNKK9VF149X3QNY6WNKUJR4BYLACQ3W6PRPDPXIAITO1SG245S6U0NII5UDL09PAI00QI0RS2LWLSA7BVNZW8K3OK87SCA4P41F7OJW85FBU4M1EM4JMWUXZULX2UDXKZ3TJDWE6XWAHH0V6SVYHAIA9N1NNDA8HIZ2Y6O6NEFD9CM9LGO7FYQEV12UMR1KD2XZFMLECCQHISM5ILMEGM9FIOMNPUAVD7GSOFPIDC' where id=92; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='G16HEGDGKKWUES48KP5L801HZCUEAXCXJL2BMISXVWNPEHU0JQHJEOSVACMAUBMSQ79WEU2PZ8JX92V0TU9078Y0MQTAD3J1MNOIOPR79PB08RM87H624K39SRQZWA2BITVAJ6NWOOG2RGVMJS4NHOU49YHNRCWCOYGA5YQ2ODWH3C6GJ10Y1G7Q8KDGSEEOLWMHQB3ULOBIANT2L205WTVJ3X1LCQL4DR99KTTFM4GT339FPROE2ED00B781TS3B' where id=92; -update noar ti set v2='G16HEGDGKKWUES48KP5L801HZCUEAXCXJL2BMISXVWNPEHU0JQHJEOSVACMAUBMSQ79WEU2PZ8JX92V0TU9078Y0MQTAD3J1MNOIOPR79PB08RM87H624K39SRQZWA2BITVAJ6NWOOG2RGVMJS4NHOU49YHNRCWCOYGA5YQ2ODWH3C6GJ10Y1G7Q8KDGSEEOLWMHQB3ULOBIANT2L205WTVJ3X1LCQL4DR99KTTFM4GT339FPROE2ED00B781TS3B' where id=92; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='LUISH4SMBA0GU26E7EF5Y20881057BZ283VUJWLUVQP3MCCUT3MPCUAT8A9JRYBBRG089V2NHO6QO69K4XO79JWJ72XKSXZWF79JLPEWIQ0HBJ5TEZ1YWGF8Y94Y1POPFGODNIAXHIEU46OXVBUMJDNRSRRT7BXU9NAAY3RWR904XELIR79XFF8NFTODWO3TSU4ZMS84AKULST7D9TGW6XFVA8HXM2PVAQHGWSHRLTVCS2GX8201YGG9HJJBYIVU2' where id=92; -update noar ti set v3='LUISH4SMBA0GU26E7EF5Y20881057BZ283VUJWLUVQP3MCCUT3MPCUAT8A9JRYBBRG089V2NHO6QO69K4XO79JWJ72XKSXZWF79JLPEWIQ0HBJ5TEZ1YWGF8Y94Y1POPFGODNIAXHIEU46OXVBUMJDNRSRRT7BXU9NAAY3RWR904XELIR79XFF8NFTODWO3TSU4ZMS84AKULST7D9TGW6XFVA8HXM2PVAQHGWSHRLTVCS2GX8201YGG9HJJBYIVU2' where id=92; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='6UM3F9UHKZ2ISW2FI8IPN1UCATLKVC6A1P6VJ39XLK8NZCF2RWCCOBH4VA4BTUR3LLNYTX6MJG5Z1TXIFP2KJQTPC4TJ2DPT67Q2FF6D7UVVMUUYESVEOJNA0TWCJOT8V2K0K575TXS3E1C4G199SXD0HD1MGJ253WZKPWNQLHQPCXRJDRF4AI1BW96Y9GVDKPNDNGNM2YYV8ASQPH78B8E6K5XGAXMMUDHA6CCSZUNDYMEPK8UGJXDUVG945DJUU' where id=93; -update noar ti set v0='6UM3F9UHKZ2ISW2FI8IPN1UCATLKVC6A1P6VJ39XLK8NZCF2RWCCOBH4VA4BTUR3LLNYTX6MJG5Z1TXIFP2KJQTPC4TJ2DPT67Q2FF6D7UVVMUUYESVEOJNA0TWCJOT8V2K0K575TXS3E1C4G199SXD0HD1MGJ253WZKPWNQLHQPCXRJDRF4AI1BW96Y9GVDKPNDNGNM2YYV8ASQPH78B8E6K5XGAXMMUDHA6CCSZUNDYMEPK8UGJXDUVG945DJUU' where id=93; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='YKWISDDQSSG39UNNF5QG83YL6DMBAHKQU8T0PL26YQZOXG9W88HDT3Y8KLT7DTE2L38PYB9WTVFDYTJIBPDHX6XGSXPIWJGTHE9V559KPQ3OE06IRVHHLZRFDO92THBD28WACKKVNZ3X4Y00QSPO346NFI0HOBW624AYXFLVFL884RBAEV0T59MSC0TRBB2EJQAKMDMIUNJB93UY6OXVE0TL98SKMUT7AVYSZ49ONUR9CLJ1MY05AH3QMTBTSCG0A' where id=93; -update noar ti set v1='YKWISDDQSSG39UNNF5QG83YL6DMBAHKQU8T0PL26YQZOXG9W88HDT3Y8KLT7DTE2L38PYB9WTVFDYTJIBPDHX6XGSXPIWJGTHE9V559KPQ3OE06IRVHHLZRFDO92THBD28WACKKVNZ3X4Y00QSPO346NFI0HOBW624AYXFLVFL884RBAEV0T59MSC0TRBB2EJQAKMDMIUNJB93UY6OXVE0TL98SKMUT7AVYSZ49ONUR9CLJ1MY05AH3QMTBTSCG0A' where id=93; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='N6G5M55YHRV5QNDIY7ZFPZIKZ7TFVFI6Z3XKQLIJO2HKLZHCHX9G2CIH36W914OKMBD836RBCIVUJVZWVACMQODIIIWQQ906J52X05BH83DI75YTYPST28HHEP748FPM8OATD5T9F1BR0A62MA4F1OCON588906QQD9NSJFUFUI90BYEWZLYJZ49LVUMSXKQDIGEK303GQS6L4QILZKIC46MW0GNXSH4T8ZCRKMPWUDGFK55RC49BT6UPDVJK0NM8' where id=93; -update noar ti set v2='N6G5M55YHRV5QNDIY7ZFPZIKZ7TFVFI6Z3XKQLIJO2HKLZHCHX9G2CIH36W914OKMBD836RBCIVUJVZWVACMQODIIIWQQ906J52X05BH83DI75YTYPST28HHEP748FPM8OATD5T9F1BR0A62MA4F1OCON588906QQD9NSJFUFUI90BYEWZLYJZ49LVUMSXKQDIGEK303GQS6L4QILZKIC46MW0GNXSH4T8ZCRKMPWUDGFK55RC49BT6UPDVJK0NM8' where id=93; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='J9S8RYACHQS0ADM472FULUJXP503SSWYBZXY5K5DRPUOLAY1FPK0FT04IL4TFTBTLGX4VAB1EO8ZUC9U0HUABJZOEQO85GPSQ8S4O5P7YK8Q4K7QPV3HZU0IA8J9F88CBG1Y6XXC4VQAZA3CGSFO491GH47YQ8R6Z0F67MPGUAL7Z76IF2E4YBR1E0L018VBICHAF24JQEX03C9A6UHNFW45A0XP9W6GOOTF0CEF5Z6BJBK0VSZG4FIJ2BRCAKAIQ' where id=93; -update noar ti set v3='J9S8RYACHQS0ADM472FULUJXP503SSWYBZXY5K5DRPUOLAY1FPK0FT04IL4TFTBTLGX4VAB1EO8ZUC9U0HUABJZOEQO85GPSQ8S4O5P7YK8Q4K7QPV3HZU0IA8J9F88CBG1Y6XXC4VQAZA3CGSFO491GH47YQ8R6Z0F67MPGUAL7Z76IF2E4YBR1E0L018VBICHAF24JQEX03C9A6UHNFW45A0XP9W6GOOTF0CEF5Z6BJBK0VSZG4FIJ2BRCAKAIQ' where id=93; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='EM1A2R5V41XC5VG64YL53YNWNO51KR6QDFUJ3UKIYHLJUNTBLDO4VOG57KJOTC86GLLWXWN0N72CQ4CZYYKNAYKG8CAGHPW1QIIFJ2F4IBYQO7O7C6LWEM1BJM0W89K55HPPUNB2V119E0LN0QP5ICRCF9YQ239HLOEE3XE8H6W0S63RPOQ6RBTX8H5IWPT4PWX1L9EEDPRB8819EX12GH05AQZLDUZ0Z0IRGOE4XCCRE5KM311EN5Z6W3JCGDKDQ' where id=94; -update noar ti set v0='EM1A2R5V41XC5VG64YL53YNWNO51KR6QDFUJ3UKIYHLJUNTBLDO4VOG57KJOTC86GLLWXWN0N72CQ4CZYYKNAYKG8CAGHPW1QIIFJ2F4IBYQO7O7C6LWEM1BJM0W89K55HPPUNB2V119E0LN0QP5ICRCF9YQ239HLOEE3XE8H6W0S63RPOQ6RBTX8H5IWPT4PWX1L9EEDPRB8819EX12GH05AQZLDUZ0Z0IRGOE4XCCRE5KM311EN5Z6W3JCGDKDQ' where id=94; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='L9285JDY5DEB8H70RKSOD83JCPQUWT53CZRDGNN1R9ZRC35X0TBD4891YTTT2D559HOXMMVK4A6U2NRUXS3HJMQCZLWT7WS8XB45UW60W42PWUPULIFE3G1H5B2DD3FUW9YCS56KF4OBHTXWOD9F93GTOE5185M4IVS9FNTX75UZ1WYDSRR8GE41R1VKLGTV0M8SNLCOJEEZT191YRIA71F1CG4EBDG3ZN1QCZ7O2HSQ35GEKBHTSNWW8FG0QW0MP' where id=94; -update noar ti set v1='L9285JDY5DEB8H70RKSOD83JCPQUWT53CZRDGNN1R9ZRC35X0TBD4891YTTT2D559HOXMMVK4A6U2NRUXS3HJMQCZLWT7WS8XB45UW60W42PWUPULIFE3G1H5B2DD3FUW9YCS56KF4OBHTXWOD9F93GTOE5185M4IVS9FNTX75UZ1WYDSRR8GE41R1VKLGTV0M8SNLCOJEEZT191YRIA71F1CG4EBDG3ZN1QCZ7O2HSQ35GEKBHTSNWW8FG0QW0MP' where id=94; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='F842MVCK5O8AOUPAR46T9N3CEHMQ13UQ8O0IN85DDVFPXA2I8Q5AQPANL8W707TTT43IG61TWRG691QPFNZXPYKH197MVWJYQ57RD4DZ95P6XEQB5KA1P7NON14H5D44WVRSVKYIGVRI28EXMEZKYNEBYH6LX8OIBOJ4YXLO06JZ9K65B7CKO64L7XXAGL6HLES0DOGOLXV5QKA8MUFJHM091ETPZUZ18MN0JLSQ0LFAZNM80CB5ZCBWSJVM4Q4DE' where id=94; -update noar ti set v2='F842MVCK5O8AOUPAR46T9N3CEHMQ13UQ8O0IN85DDVFPXA2I8Q5AQPANL8W707TTT43IG61TWRG691QPFNZXPYKH197MVWJYQ57RD4DZ95P6XEQB5KA1P7NON14H5D44WVRSVKYIGVRI28EXMEZKYNEBYH6LX8OIBOJ4YXLO06JZ9K65B7CKO64L7XXAGL6HLES0DOGOLXV5QKA8MUFJHM091ETPZUZ18MN0JLSQ0LFAZNM80CB5ZCBWSJVM4Q4DE' where id=94; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='QICNQOQ99XPHAVUQG48270CPQ4D75H315M4HZI66FFPUF4PL08FHH58CA6MK8H8Z74ASTHEIUXBS580BYVBEC8MFDH6WH8HOODJUMRQA1JA7GTJ61KAM2CEGHF9VNCNZ90PGJ2A3C3MPUVYDMGKMFAVJ87WXK21WU49KM7PTBMSF7EG60TBO2VRWA2KB9A7E3ZUH9Y53AW0N4JBN19ZCHUM1NRAEIPH0SZKCPO22EH56QDQ3OG1QUPZ63U1M2MJPU' where id=94; -update noar ti set v3='QICNQOQ99XPHAVUQG48270CPQ4D75H315M4HZI66FFPUF4PL08FHH58CA6MK8H8Z74ASTHEIUXBS580BYVBEC8MFDH6WH8HOODJUMRQA1JA7GTJ61KAM2CEGHF9VNCNZ90PGJ2A3C3MPUVYDMGKMFAVJ87WXK21WU49KM7PTBMSF7EG60TBO2VRWA2KB9A7E3ZUH9Y53AW0N4JBN19ZCHUM1NRAEIPH0SZKCPO22EH56QDQ3OG1QUPZ63U1M2MJPU' where id=94; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='9NBLHVQLDNQ58F9OZYQZZTUACHVCAMHNEXEAP7NOQ2T4U0HFQDPZ4BISMVIASTZZ05B23MB87WEBPHD44RKLV7RY6WGRE35U77HEM1I8FF22AE4915ACNLA27ICTZA7OI6H530Z5EU0AMFKGQJXIGYV1JA0IC7O7KINMXDTXYA7G83SPNAQPFB8WN0HN1704DRRFZ1KEW5RB68G9X100OY8SZ9CFN3B10JTCSMD2JJB27U2FO5AEB4TU9XWVK84DM' where id=95; -update noar ti set v0='9NBLHVQLDNQ58F9OZYQZZTUACHVCAMHNEXEAP7NOQ2T4U0HFQDPZ4BISMVIASTZZ05B23MB87WEBPHD44RKLV7RY6WGRE35U77HEM1I8FF22AE4915ACNLA27ICTZA7OI6H530Z5EU0AMFKGQJXIGYV1JA0IC7O7KINMXDTXYA7G83SPNAQPFB8WN0HN1704DRRFZ1KEW5RB68G9X100OY8SZ9CFN3B10JTCSMD2JJB27U2FO5AEB4TU9XWVK84DM' where id=95; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='7L00YVBJPY9IW9O7HBYHE7WBV2FO3JQDPZWU1M4V8XQIPH9DACJL3T4I9I19NSIE0RIPBVD11AH7BI366XHDF3930OHLV3ID9ST0GW1PWMR9EPF9RGCLQ6I9YLID6EGNP3ZT25FK9U4195J0F8TWZH88F3K39AKNV1BY0N6BYC2I55EUW3970MR06I0YL40KAGKZY50S3WFOGAK9ST7FC8WQDRUSO6V7DIPO7612R16NKS46Z30FBWC7G331Z6O70' where id=95; -update noar ti set v1='7L00YVBJPY9IW9O7HBYHE7WBV2FO3JQDPZWU1M4V8XQIPH9DACJL3T4I9I19NSIE0RIPBVD11AH7BI366XHDF3930OHLV3ID9ST0GW1PWMR9EPF9RGCLQ6I9YLID6EGNP3ZT25FK9U4195J0F8TWZH88F3K39AKNV1BY0N6BYC2I55EUW3970MR06I0YL40KAGKZY50S3WFOGAK9ST7FC8WQDRUSO6V7DIPO7612R16NKS46Z30FBWC7G331Z6O70' where id=95; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='OFUU24WX9EHGQZ1N5TXO5UTFNSKI6E4IMUTUVAAWTLEHBDLDRT0AUOGTYHWUD3RSS7XB960DTMJVOJ7TBOP9LMDJL4I70JF64QYLTPDBI9YSQ7V24PF5WYUOB3ZB8Z32NFNO12JHD8CT16LA09E12NMCK1YPETDW2JIHHAI5984I9YY5DX5TKGWRN67G0RZT13HPMEX910PYZ97DRX7GK7Z58Y908MCH9I6C2W7B5TGH6ZLX72K3ZIV7UTZRXRE8V' where id=95; -update noar ti set v2='OFUU24WX9EHGQZ1N5TXO5UTFNSKI6E4IMUTUVAAWTLEHBDLDRT0AUOGTYHWUD3RSS7XB960DTMJVOJ7TBOP9LMDJL4I70JF64QYLTPDBI9YSQ7V24PF5WYUOB3ZB8Z32NFNO12JHD8CT16LA09E12NMCK1YPETDW2JIHHAI5984I9YY5DX5TKGWRN67G0RZT13HPMEX910PYZ97DRX7GK7Z58Y908MCH9I6C2W7B5TGH6ZLX72K3ZIV7UTZRXRE8V' where id=95; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='K2YW1ZKUH39WHDUCHRRODIMWZ2BT8FDBKQJ5F7SJXMJX144OQTDLEWHGXDDWY3RLV5PQGV9LTDFTAKOHP8O9NGUN89HW9R1MANZJGVNX6DBAMZOP4LF66C1OLVDY9EF08Q6JO1O78P4RFM5Z4M0BUUO5EZHM8NSEXGHF76QQSO8UN2IBYFZL6EGEUTFJCR0G360YR4N94YZ5KN03XAJVK9ODQ7JD7ZCTOV9AV9S0DHLHT2O5NH49C74MS9Q7WE06G' where id=95; -update noar ti set v3='K2YW1ZKUH39WHDUCHRRODIMWZ2BT8FDBKQJ5F7SJXMJX144OQTDLEWHGXDDWY3RLV5PQGV9LTDFTAKOHP8O9NGUN89HW9R1MANZJGVNX6DBAMZOP4LF66C1OLVDY9EF08Q6JO1O78P4RFM5Z4M0BUUO5EZHM8NSEXGHF76QQSO8UN2IBYFZL6EGEUTFJCR0G360YR4N94YZ5KN03XAJVK9ODQ7JD7ZCTOV9AV9S0DHLHT2O5NH49C74MS9Q7WE06G' where id=95; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='23PRE68SZL8CB8MDQ9RCHIWLP7QLE6A89FWVUBVTNDLFM8D1IXJ3NIXPOGLH65FJERVAW9720ALGSBNYL04IB6HPBEOK7B2IAKBKYOZ9QWYM8GCJAAGGVZ9UCJQM978BTHC4LVW40LCCG4KZP6DSMCAUE8SMAGML6JO66FXAUTN5W4S4E1037W59EIL2W3VV56N3VG7DO6TYUTB9UPV4KNLCVU7FUHMMXPES69RWVD2JEJPFU8WWRT4R27PAWGD87' where id=96; -update noar ti set v0='23PRE68SZL8CB8MDQ9RCHIWLP7QLE6A89FWVUBVTNDLFM8D1IXJ3NIXPOGLH65FJERVAW9720ALGSBNYL04IB6HPBEOK7B2IAKBKYOZ9QWYM8GCJAAGGVZ9UCJQM978BTHC4LVW40LCCG4KZP6DSMCAUE8SMAGML6JO66FXAUTN5W4S4E1037W59EIL2W3VV56N3VG7DO6TYUTB9UPV4KNLCVU7FUHMMXPES69RWVD2JEJPFU8WWRT4R27PAWGD87' where id=96; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='2EGQV6UVS25FQ05O6WOOW66G9DX1WHDP90DBIY0YFHJ0M8D3RTZ628VEYMLY69XVMWZVRCJLJX0TKEV2DK20QNNHU694GCRJ7VJM4W527G1K1HYGSXXEDIYB6UA02BR77KITUXYBOEKDKS9OB9DPFEYGAO17PZZKJF2KYBCMO5I82Q8W6PWXQ7CBEKN0QTTTM9W6AF35XXZYORM1EUHQZSRG9RG1VV7YVR3JF4TI4RQL3878114JV8YJIOUF08FHO' where id=96; -update noar ti set v1='2EGQV6UVS25FQ05O6WOOW66G9DX1WHDP90DBIY0YFHJ0M8D3RTZ628VEYMLY69XVMWZVRCJLJX0TKEV2DK20QNNHU694GCRJ7VJM4W527G1K1HYGSXXEDIYB6UA02BR77KITUXYBOEKDKS9OB9DPFEYGAO17PZZKJF2KYBCMO5I82Q8W6PWXQ7CBEKN0QTTTM9W6AF35XXZYORM1EUHQZSRG9RG1VV7YVR3JF4TI4RQL3878114JV8YJIOUF08FHO' where id=96; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='8KCXVTPSXDWRKGYPOGVBWZW8XAZWQEHTAIYIBH6DBRYR61F7MCGMAM91GFM3JXUXNJZ3TA5BUCD4B6ZYYAGYEUZKA0XF8ANXZG2Z0NFDIVJSPLGDI2Z5PI5WW64DQZX0X8EG7B0LEVWVAUNZ0VRE8E5VJMTWTWNLDEA8MX13I2ZP4STC2V362YKHHUO85SSL3GUQELA4KA89FEUODU4Q5WS7GGGAM1YGKIOH0GLWOL11Q6S5Z9G3CGPEJO5Z6RSGY' where id=96; -update noar ti set v2='8KCXVTPSXDWRKGYPOGVBWZW8XAZWQEHTAIYIBH6DBRYR61F7MCGMAM91GFM3JXUXNJZ3TA5BUCD4B6ZYYAGYEUZKA0XF8ANXZG2Z0NFDIVJSPLGDI2Z5PI5WW64DQZX0X8EG7B0LEVWVAUNZ0VRE8E5VJMTWTWNLDEA8MX13I2ZP4STC2V362YKHHUO85SSL3GUQELA4KA89FEUODU4Q5WS7GGGAM1YGKIOH0GLWOL11Q6S5Z9G3CGPEJO5Z6RSGY' where id=96; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='OJ3S0HG0LPIMW4216CVP7Q33BT8Q0P88XPL1447M5YS59R64122ONV1N0EV3RPVKNIWC4NHTO1QL3O42Z6O0T86Q5HY2QG7ZKG5CFIRR289ULWVNBGUJYUZRE2YIHKQ9JPG5LTXRFQIVO3X96KOIW0K56VH3VKVO4MFQVIT5J68U58DHKKO4E6CRSIFU2EKZUQMTID93QCL26G3RYOC4SMDIWNSPV0I3FSV0NH8ZTT5HLHOV08YW63OWG29CI82GB' where id=96; -update noar ti set v3='OJ3S0HG0LPIMW4216CVP7Q33BT8Q0P88XPL1447M5YS59R64122ONV1N0EV3RPVKNIWC4NHTO1QL3O42Z6O0T86Q5HY2QG7ZKG5CFIRR289ULWVNBGUJYUZRE2YIHKQ9JPG5LTXRFQIVO3X96KOIW0K56VH3VKVO4MFQVIT5J68U58DHKKO4E6CRSIFU2EKZUQMTID93QCL26G3RYOC4SMDIWNSPV0I3FSV0NH8ZTT5HLHOV08YW63OWG29CI82GB' where id=96; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='OQ7GNF5TEE5DETEWY4YXA40M4HYDVPFH25YBKSXT21CN2CIHCP6KZU4A0TX4DPGTK6CP8ZE9JONP92LCD0IM3FVZ1HR0YG2XHRZMCBBBDSSVIP144XTQ164BCOYMPGKW4NNO4H0PH90IESD6DZMO71355J1B4E9LKO5K2TY9CMA8X8DH9YANVBZWTW0EC52SZGHN9X8O5NL85T5ITK33Y1GDBMYAZ2ZWQXB88XV0HIKR6QWB6PHAHF26ZEJF2DIXI' where id=97; -update noar ti set v0='OQ7GNF5TEE5DETEWY4YXA40M4HYDVPFH25YBKSXT21CN2CIHCP6KZU4A0TX4DPGTK6CP8ZE9JONP92LCD0IM3FVZ1HR0YG2XHRZMCBBBDSSVIP144XTQ164BCOYMPGKW4NNO4H0PH90IESD6DZMO71355J1B4E9LKO5K2TY9CMA8X8DH9YANVBZWTW0EC52SZGHN9X8O5NL85T5ITK33Y1GDBMYAZ2ZWQXB88XV0HIKR6QWB6PHAHF26ZEJF2DIXI' where id=97; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='SM1L8UU5DQY1A9M8V0Q49K7JKHILKLGOQPCNLMG221GEVGZ07TUPFDAZLZ3EUOGFDGW3RKW2X608IY9AWEGFMKMUGMN9KYW4PVHOS2I136RU53LWWISOJLABZWTAB19P66VODRM4USHX4FFBRFTXNK19SD4A9CIAIFRLTGLMJ958P14ZF1TAOFD6JFO70SB9CN8XTV2H43NW0JJ07T0AG7IGO8QX948W5AHBNNDM4HB8UQ982G9MIWNROM56CKD7F' where id=97; -update noar ti set v1='SM1L8UU5DQY1A9M8V0Q49K7JKHILKLGOQPCNLMG221GEVGZ07TUPFDAZLZ3EUOGFDGW3RKW2X608IY9AWEGFMKMUGMN9KYW4PVHOS2I136RU53LWWISOJLABZWTAB19P66VODRM4USHX4FFBRFTXNK19SD4A9CIAIFRLTGLMJ958P14ZF1TAOFD6JFO70SB9CN8XTV2H43NW0JJ07T0AG7IGO8QX948W5AHBNNDM4HB8UQ982G9MIWNROM56CKD7F' where id=97; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='7TXWVN1C04LBHE1JO7GZ2BNISUMCBQCL1CUIW5AQIIZZSLWSRNF4GZGZAGCQICI1Y9A58ZV59XGTRFEQTXSD66AWD8S0Y80ME0QV1WH4F1ZBZ3SBKKCVPW32CJCYDII3HCFVA2GDUJG670UVLT2BO9V0PD77GP5XIF28DP7NDRMJ53DY1F0ZF09CIJ2VLK71EFJHX0OWEOZ4LZJGG2KLSAD9TMCKBNT08Z4E7XBHG6784M5GF5KIBCYGC29REUUR8' where id=97; -update noar ti set v2='7TXWVN1C04LBHE1JO7GZ2BNISUMCBQCL1CUIW5AQIIZZSLWSRNF4GZGZAGCQICI1Y9A58ZV59XGTRFEQTXSD66AWD8S0Y80ME0QV1WH4F1ZBZ3SBKKCVPW32CJCYDII3HCFVA2GDUJG670UVLT2BO9V0PD77GP5XIF28DP7NDRMJ53DY1F0ZF09CIJ2VLK71EFJHX0OWEOZ4LZJGG2KLSAD9TMCKBNT08Z4E7XBHG6784M5GF5KIBCYGC29REUUR8' where id=97; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='3C5FU7HS2ALTSJ7X424SMIJQ4LMQKMHLJAU37JTMAARV587HDPTEA7J9ONL5G3MFWIC966KWYRXT53XLNKZ7CBLLKNU75VB74INOY7UNUNVWGQHVDGP72PF4ZBIDACTTB1MZX6UIFGI5DCCE6PYKYUHC3DSILGY2DWWMOOELH6JMEA9TZ8O99BXGOZ68IOM6P6TCO0YM5N9E6UWYJO8QEI467AHGHNOY7LKEO3NTLMXKK32OE6809XYLHW37END3L' where id=97; -update noar ti set v3='3C5FU7HS2ALTSJ7X424SMIJQ4LMQKMHLJAU37JTMAARV587HDPTEA7J9ONL5G3MFWIC966KWYRXT53XLNKZ7CBLLKNU75VB74INOY7UNUNVWGQHVDGP72PF4ZBIDACTTB1MZX6UIFGI5DCCE6PYKYUHC3DSILGY2DWWMOOELH6JMEA9TZ8O99BXGOZ68IOM6P6TCO0YM5N9E6UWYJO8QEI467AHGHNOY7LKEO3NTLMXKK32OE6809XYLHW37END3L' where id=97; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='O6TA79MCZWQ2NZNDDC2MSMS9G9OG8AC9WX4RL4DG9KBF0Y16571L2K0E25FA2UJHLK2F3I9TI7OB3H9UTZ4LL9A5SXA24RRUPLTBP4X9QETNJJ6BY52RZIKQHGHQC8BBCK6ZF08CKMPDBIBYND4T7MG569Y52MACO4VJJFFDZD2KE2Y8G6MJKAKMIFB9LMSGPTYAW0BDXRL50EQJUCQBT0U0TDQIONFII9BIBP4NIBPM5TAXIXJYWYQL7IB1S5FU3' where id=98; -update noar ti set v0='O6TA79MCZWQ2NZNDDC2MSMS9G9OG8AC9WX4RL4DG9KBF0Y16571L2K0E25FA2UJHLK2F3I9TI7OB3H9UTZ4LL9A5SXA24RRUPLTBP4X9QETNJJ6BY52RZIKQHGHQC8BBCK6ZF08CKMPDBIBYND4T7MG569Y52MACO4VJJFFDZD2KE2Y8G6MJKAKMIFB9LMSGPTYAW0BDXRL50EQJUCQBT0U0TDQIONFII9BIBP4NIBPM5TAXIXJYWYQL7IB1S5FU3' where id=98; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='UX8STJROHRKWVBKFCNB49AICJCPKRTRU3V29ILHOAOPVKNLFF58GJLIWQZMZH2RXZLOEUKVXFYXSIBY8KEAFNLEIL60VW9Z1ZJ78PU83OVAV8NQ2UE6GCUEGMULEW5X59DBVI1CT1TNPQLOKGY7MUQBEZ758MI54A4QPMC1QQLP7RG9D62G6PAWKJXHYQ3YJEIFLMW0P1AS25I5E9KDD7CGYCOVWNT9A6T60F9I0KOAZ91C1ZZIK5U6VZSURG2M0V' where id=98; -update noar ti set v1='UX8STJROHRKWVBKFCNB49AICJCPKRTRU3V29ILHOAOPVKNLFF58GJLIWQZMZH2RXZLOEUKVXFYXSIBY8KEAFNLEIL60VW9Z1ZJ78PU83OVAV8NQ2UE6GCUEGMULEW5X59DBVI1CT1TNPQLOKGY7MUQBEZ758MI54A4QPMC1QQLP7RG9D62G6PAWKJXHYQ3YJEIFLMW0P1AS25I5E9KDD7CGYCOVWNT9A6T60F9I0KOAZ91C1ZZIK5U6VZSURG2M0V' where id=98; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='MU30X8COOAX3ZGOKXZ4GUWJU5U23LDGFEU2DIGPQX64OADO8NB6G2S0ZA1YUZHK2KUNWZKPB7HKAA6439XWPIUU6POXET1IHSP0O5F5K59AFF00CCA8FIDYLIWFW6XNZHMPCZIHSI5NMZ9ODACTSXM8R6VLF1ZEMLVP45S3874W2IUBY6AUL2CEAEODBAB32JZUE2GZYRATN651OMUQZ8438D0AACQ7VTV3VTZYXHNKQVFDXC24XGSWRPM80HNFYC' where id=98; -update noar ti set v2='MU30X8COOAX3ZGOKXZ4GUWJU5U23LDGFEU2DIGPQX64OADO8NB6G2S0ZA1YUZHK2KUNWZKPB7HKAA6439XWPIUU6POXET1IHSP0O5F5K59AFF00CCA8FIDYLIWFW6XNZHMPCZIHSI5NMZ9ODACTSXM8R6VLF1ZEMLVP45S3874W2IUBY6AUL2CEAEODBAB32JZUE2GZYRATN651OMUQZ8438D0AACQ7VTV3VTZYXHNKQVFDXC24XGSWRPM80HNFYC' where id=98; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='4K0JDOCTLCYRE3DOBQMVV1BD2UQ5O6A9B6NSBGHN2W3B4ALQIAUFXGKHS7JLPSFQ127KQ4I8DEWVIDQTI39H8CU5LYX3S57LGAW2I95BS38MYV1WXNHZRM48SI85GLKS59P6DRFPN6MMYV497E4QPL4ORRWH9X15IUZMH3QLL7NZQERWN4FYUDKAWJ97KFB0L1PO1CA2J65Y481QZ5OWVD6D7HF8Q7DMAY2H1G858459YHUUXSOVP3A1RUOUFGRE2' where id=98; -update noar ti set v3='4K0JDOCTLCYRE3DOBQMVV1BD2UQ5O6A9B6NSBGHN2W3B4ALQIAUFXGKHS7JLPSFQ127KQ4I8DEWVIDQTI39H8CU5LYX3S57LGAW2I95BS38MYV1WXNHZRM48SI85GLKS59P6DRFPN6MMYV497E4QPL4ORRWH9X15IUZMH3QLL7NZQERWN4FYUDKAWJ97KFB0L1PO1CA2J65Y481QZ5OWVD6D7HF8Q7DMAY2H1G858459YHUUXSOVP3A1RUOUFGRE2' where id=98; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='1HD4FEZ6O89K9SIA7520LA3A2LHVNAC0013Y6QULNI84IN83Z6UTD5Z3MA9WVPRBAYOLO05B5ER1VH7B7KRHINK38SENRAZ67D4LCUVUID33WLDD5NEIISBD2ZO21IHWAVYOFAG9Q3LVCKM82NBKO9GTT4SUKPQ3QZBVVLRJRWIW8TLSCHBU8MREUH664MVIT6AFS8TQJN820UDKZYKAT8234995NJG9ZFT7TYJW8NAMP2G7JYN0A2G1ONIQQYDQD' where id=99; -update noar ti set v0='1HD4FEZ6O89K9SIA7520LA3A2LHVNAC0013Y6QULNI84IN83Z6UTD5Z3MA9WVPRBAYOLO05B5ER1VH7B7KRHINK38SENRAZ67D4LCUVUID33WLDD5NEIISBD2ZO21IHWAVYOFAG9Q3LVCKM82NBKO9GTT4SUKPQ3QZBVVLRJRWIW8TLSCHBU8MREUH664MVIT6AFS8TQJN820UDKZYKAT8234995NJG9ZFT7TYJW8NAMP2G7JYN0A2G1ONIQQYDQD' where id=99; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='GAE02TPZQYSWK1XC8AMMVY3AYJI2B40BLR9TZB1NAUBYHS2OD5ITZTRCBAS90YT6Y9H88PC3KZ0JG9RAV7HVFXMTEEQQOMARKNDPJB0GWK3ZWOY7UH2WVDJEQYU0BGLBCAYAUECYL1SUNSUECC5IRZL91O992Z5H308CMI56PTN76ZV1E99JM0M6YL5OKKZ4Q1SEXKNCAWAO5JP1CBKBU9CXMWT2HWHPHCXK3F4251JO1CSNYC3NO2N4L0G4E1JO0' where id=99; -update noar ti set v1='GAE02TPZQYSWK1XC8AMMVY3AYJI2B40BLR9TZB1NAUBYHS2OD5ITZTRCBAS90YT6Y9H88PC3KZ0JG9RAV7HVFXMTEEQQOMARKNDPJB0GWK3ZWOY7UH2WVDJEQYU0BGLBCAYAUECYL1SUNSUECC5IRZL91O992Z5H308CMI56PTN76ZV1E99JM0M6YL5OKKZ4Q1SEXKNCAWAO5JP1CBKBU9CXMWT2HWHPHCXK3F4251JO1CSNYC3NO2N4L0G4E1JO0' where id=99; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='CY0A4E4NBQ2ZS4CMBES53QSW0MQ1BWH8AZO9YV2OXIEZ5HOVMUAPMLMDRFR2CT0SKJMJ6SJN91NCFHUNGLE5MMMDMEGDJUX80PMIJH3XD5YADPPEE5QYLH9DOD2WX5KZ8344G1Q3YHNQHXJG3HRPJ0B5FAOYVVAD1FLSK7AYGJ1FYG7ZZB2OY94EKCKO916RHX4CRH52EH5YBR9V723Y8CN0K4TK7Z19SP2KHOH8YGK4SZ79CYSMRWONKS9ZQ8XD7' where id=99; -update noar ti set v2='CY0A4E4NBQ2ZS4CMBES53QSW0MQ1BWH8AZO9YV2OXIEZ5HOVMUAPMLMDRFR2CT0SKJMJ6SJN91NCFHUNGLE5MMMDMEGDJUX80PMIJH3XD5YADPPEE5QYLH9DOD2WX5KZ8344G1Q3YHNQHXJG3HRPJ0B5FAOYVVAD1FLSK7AYGJ1FYG7ZZB2OY94EKCKO916RHX4CRH52EH5YBR9V723Y8CN0K4TK7Z19SP2KHOH8YGK4SZ79CYSMRWONKS9ZQ8XD7' where id=99; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='DHMZ20B176AOGQAT1TJTAN6DSKYW7Y2C529037IC0ISEW2D6MV6JUKXSMA2IS577MR8IJ0G5ZZS7TYELKW3CFLH969W8IVFR2B9VZ3IYNSK8R4BOSJZGN2SK5MEKCYDVCQRXOTAJCYKO8TMI88VDCNJBH5EDC3AKYUMQEYM1I2YTYBCF1HO6R5JHYR4T8IM5ICZ8AN7DM19LY6F0E9I0Y9WCLJ57R216J7DY1VBNOV8S9SCRDNEGN85W7K8JMI83F' where id=99; -update noar ti set v3='DHMZ20B176AOGQAT1TJTAN6DSKYW7Y2C529037IC0ISEW2D6MV6JUKXSMA2IS577MR8IJ0G5ZZS7TYELKW3CFLH969W8IVFR2B9VZ3IYNSK8R4BOSJZGN2SK5MEKCYDVCQRXOTAJCYKO8TMI88VDCNJBH5EDC3AKYUMQEYM1I2YTYBCF1HO6R5JHYR4T8IM5ICZ8AN7DM19LY6F0E9I0Y9WCLJ57R216J7DY1VBNOV8S9SCRDNEGN85W7K8JMI83F' where id=99; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -f0 int not null, -v0 varchar(256) not null, -v1 varchar(256) not null, -v2 varchar(256) not null, -v3 varchar(256) not null, -b0 text not null -) engine=tokudb; -insert into tt values (1,2,'a','b','c','d','e'); -insert into tt values (2,3,'','','','',''); -insert into tt values (3,4,'','','','',''); -insert into tt values (4,5,'','','','',''); -insert into tt values (5,6,'','','','',''); -insert into tt values (6,7,'','','','',''); -insert into tt values (7,8,'','','','',''); -insert into tt values (8,9,'','','','',''); -insert into tt values (9,10,'','','','',''); -insert into tt values (10,11,'','','','',''); -insert into tt values (11,12,'','','','',''); -insert into tt values (12,13,'','','','',''); -insert into tt values (13,14,'','','','',''); -insert into tt values (14,15,'','','','',''); -insert into tt values (15,16,'','','','',''); -insert into tt values (16,17,'','','','',''); -insert into tt values (17,18,'','','','',''); -insert into tt values (18,19,'','','','',''); -insert into tt values (19,20,'','','','',''); -insert into tt values (20,21,'','','','',''); -insert into tt values (21,22,'','','','',''); -insert into tt values (22,23,'','','','',''); -insert into tt values (23,24,'','','','',''); -insert into tt values (24,25,'','','','',''); -insert into tt values (25,26,'','','','',''); -insert into tt values (26,27,'','','','',''); -insert into tt values (27,28,'','','','',''); -insert into tt values (28,29,'','','','',''); -insert into tt values (29,30,'','','','',''); -insert into tt values (30,31,'','','','',''); -insert into tt values (31,32,'','','','',''); -insert into tt values (32,33,'','','','',''); -insert into tt values (33,34,'','','','',''); -insert into tt values (34,35,'','','','',''); -insert into tt values (35,36,'','','','',''); -insert into tt values (36,37,'','','','',''); -insert into tt values (37,38,'','','','',''); -insert into tt values (38,39,'','','','',''); -insert into tt values (39,40,'','','','',''); -insert into tt values (40,41,'','','','',''); -insert into tt values (41,42,'','','','',''); -insert into tt values (42,43,'','','','',''); -insert into tt values (43,44,'','','','',''); -insert into tt values (44,45,'','','','',''); -insert into tt values (45,46,'','','','',''); -insert into tt values (46,47,'','','','',''); -insert into tt values (47,48,'','','','',''); -insert into tt values (48,49,'','','','',''); -insert into tt values (49,50,'','','','',''); -insert into tt values (50,51,'','','','',''); -insert into tt values (51,52,'','','','',''); -insert into tt values (52,53,'','','','',''); -insert into tt values (53,54,'','','','',''); -insert into tt values (54,55,'','','','',''); -insert into tt values (55,56,'','','','',''); -insert into tt values (56,57,'','','','',''); -insert into tt values (57,58,'','','','',''); -insert into tt values (58,59,'','','','',''); -insert into tt values (59,60,'','','','',''); -insert into tt values (60,61,'','','','',''); -insert into tt values (61,62,'','','','',''); -insert into tt values (62,63,'','','','',''); -insert into tt values (63,64,'','','','',''); -insert into tt values (64,65,'','','','',''); -insert into tt values (65,66,'','','','',''); -insert into tt values (66,67,'','','','',''); -insert into tt values (67,68,'','','','',''); -insert into tt values (68,69,'','','','',''); -insert into tt values (69,70,'','','','',''); -insert into tt values (70,71,'','','','',''); -insert into tt values (71,72,'','','','',''); -insert into tt values (72,73,'','','','',''); -insert into tt values (73,74,'','','','',''); -insert into tt values (74,75,'','','','',''); -insert into tt values (75,76,'','','','',''); -insert into tt values (76,77,'','','','',''); -insert into tt values (77,78,'','','','',''); -insert into tt values (78,79,'','','','',''); -insert into tt values (79,80,'','','','',''); -insert into tt values (80,81,'','','','',''); -insert into tt values (81,82,'','','','',''); -insert into tt values (82,83,'','','','',''); -insert into tt values (83,84,'','','','',''); -insert into tt values (84,85,'','','','',''); -insert into tt values (85,86,'','','','',''); -insert into tt values (86,87,'','','','',''); -insert into tt values (87,88,'','','','',''); -insert into tt values (88,89,'','','','',''); -insert into tt values (89,90,'','','','',''); -insert into tt values (90,91,'','','','',''); -insert into tt values (91,92,'','','','',''); -insert into tt values (92,93,'','','','',''); -insert into tt values (93,94,'','','','',''); -insert into tt values (94,95,'','','','',''); -insert into tt values (95,96,'','','','',''); -insert into tt values (96,97,'','','','',''); -insert into tt values (97,98,'','','','',''); -insert into tt values (98,99,'','','','',''); -insert into tt values (99,100,'','','','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='null this 0' where id=0; -update noar ti set v0='null this 0' where id=0; -update noar tt set v1='null is 1' where id=0; -update noar ti set v1='null is 1' where id=0; -update noar tt set v2='null a 2' where id=0; -update noar ti set v2='null a 2' where id=0; -update noar tt set v3='null test 3' where id=0; -update noar ti set v3='null test 3' where id=0; -update noar tt set v0='this 0' where id=1; -update noar ti set v0='this 0' where id=1; -update noar tt set v1='is 1' where id=1; -update noar ti set v1='is 1' where id=1; -update noar tt set v2='another 2' where id=1; -update noar ti set v2='another 2' where id=1; -update noar tt set v3='test 3' where id=1; -update noar ti set v3='test 3' where id=1; -update noar tt set v0='F1A4JJ8LKGDMODWDFFQJT0QRKHWDIGKFJ9QPFOTEY6X8EG2IXY805D96ARABV5HW92N6F2J6RXIVPV6TOFTYP9BSVQRNMPMBKAEFJT5RZDNGLZDVP0DDZ6U6SONSC27TKAQRTEN9A0TQ6RP0HEWN3NFXUKVEM37CXEEHU0H3BLJARM7CSB31RTWDE3WHYEKYR905WCQQ9AXC1ZKAR59IYGQVFX164TW10BEL3JJVJBECFZ91SJXZSRPE7H4ZAXUB7' where id=2; -update noar ti set v0='F1A4JJ8LKGDMODWDFFQJT0QRKHWDIGKFJ9QPFOTEY6X8EG2IXY805D96ARABV5HW92N6F2J6RXIVPV6TOFTYP9BSVQRNMPMBKAEFJT5RZDNGLZDVP0DDZ6U6SONSC27TKAQRTEN9A0TQ6RP0HEWN3NFXUKVEM37CXEEHU0H3BLJARM7CSB31RTWDE3WHYEKYR905WCQQ9AXC1ZKAR59IYGQVFX164TW10BEL3JJVJBECFZ91SJXZSRPE7H4ZAXUB7' where id=2; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='90OGLWTNU84GEJCCGT0MXPY6WK7YULXN59QPRN31RC0KS3PC81SGK7NPNFAW528FTJXQDIONDTWJM5RYXC125KPMLQU6FK689HD6E0UJOAF0YYNMJMKU3N6LCK4NTRSZI2QFMHXS86ZR1PIDCXTCJNKH29UW1NCAOE4Y44RQC0X37IV2ZM0XL8CCK4BNTYYXI5OGAMNI25OHMHHY4J5O6MMFDXCEUK3749JH4EY0MU0MWDEC487H6RZUPJ0SN1L7O' where id=2; -update noar ti set v1='90OGLWTNU84GEJCCGT0MXPY6WK7YULXN59QPRN31RC0KS3PC81SGK7NPNFAW528FTJXQDIONDTWJM5RYXC125KPMLQU6FK689HD6E0UJOAF0YYNMJMKU3N6LCK4NTRSZI2QFMHXS86ZR1PIDCXTCJNKH29UW1NCAOE4Y44RQC0X37IV2ZM0XL8CCK4BNTYYXI5OGAMNI25OHMHHY4J5O6MMFDXCEUK3749JH4EY0MU0MWDEC487H6RZUPJ0SN1L7O' where id=2; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='5QCB9PASK9MVP5B5UZHYJJF2CUGL803ZRY9BMKOC2Z6074AMFMFYZ758J4NBTNMS07L16M2UDJ2KUKE03I8ISC9KW2PN4EW2HH6YNEGYIZJI73BAZQNKAJ0ERLCO119WHIN8GIYMAGKSLC52DNN9WXHU4CVYCRGLITNNC1T5A4WCUMLIG49R2TRGW5L647J8SF405L3E38VLA9YRWXOKUGBKFORY75ZOESKWWFID7ULC9PG4YD3EDH5VILUW5DBY5' where id=2; -update noar ti set v2='5QCB9PASK9MVP5B5UZHYJJF2CUGL803ZRY9BMKOC2Z6074AMFMFYZ758J4NBTNMS07L16M2UDJ2KUKE03I8ISC9KW2PN4EW2HH6YNEGYIZJI73BAZQNKAJ0ERLCO119WHIN8GIYMAGKSLC52DNN9WXHU4CVYCRGLITNNC1T5A4WCUMLIG49R2TRGW5L647J8SF405L3E38VLA9YRWXOKUGBKFORY75ZOESKWWFID7ULC9PG4YD3EDH5VILUW5DBY5' where id=2; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='G69FMB3WF75OUZG57JPZY6H56YU6BBB6A0YE534H89CVJEIHJVP45LE50A08D4JFJ05ZK6XTH1BTZ5T55F1LPQC1G3B50YUYA6364QMI7PWQ61MPUW33DPAMTAWR0GUULCC14SMC5DXNGVI3PBEFUBQ3HSO5CX8X76IGWPWGZ032S5QQATI7YZ34TV1URJHLZKKT4EI45Q49KGT7DCWT75WRNO8TZRNVWQKU06A2R49IX3AGU9DBSUMXPNPMKE3NZ' where id=2; -update noar ti set v3='G69FMB3WF75OUZG57JPZY6H56YU6BBB6A0YE534H89CVJEIHJVP45LE50A08D4JFJ05ZK6XTH1BTZ5T55F1LPQC1G3B50YUYA6364QMI7PWQ61MPUW33DPAMTAWR0GUULCC14SMC5DXNGVI3PBEFUBQ3HSO5CX8X76IGWPWGZ032S5QQATI7YZ34TV1URJHLZKKT4EI45Q49KGT7DCWT75WRNO8TZRNVWQKU06A2R49IX3AGU9DBSUMXPNPMKE3NZ' where id=2; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='ALSZON21LN9TENN7FXZSZQPS5LI1YZTQYEIXWKXW77MJLIBZZ86SE51YD8JAG9OCZ9G8EH9IL73XNVNRWGCFOLAWA6C8TNIMBZWC8NXU7KXSXHGQH1LY865H4FOFCIKLSCSJK02SK4FPXEYN7UNRZWPQEEFXO2MS2IIQ7YX6KP2DU31F9YJSVKJS3MD56VVI3N4GN5Z2RKTBBMUHEKJYMVKPHW4BTWYAS1SNWYBUMGVXCZZIUYCUQ6W316H73QV4D' where id=3; -update noar ti set v0='ALSZON21LN9TENN7FXZSZQPS5LI1YZTQYEIXWKXW77MJLIBZZ86SE51YD8JAG9OCZ9G8EH9IL73XNVNRWGCFOLAWA6C8TNIMBZWC8NXU7KXSXHGQH1LY865H4FOFCIKLSCSJK02SK4FPXEYN7UNRZWPQEEFXO2MS2IIQ7YX6KP2DU31F9YJSVKJS3MD56VVI3N4GN5Z2RKTBBMUHEKJYMVKPHW4BTWYAS1SNWYBUMGVXCZZIUYCUQ6W316H73QV4D' where id=3; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='6DAK7KZC3URTIR620Z1YNDZBDKOTZICKZNAQV44QE9WXPR1Q3ZC5PRBE1KIA2HFMHPAXR0LSEMZVJRZ5YJOFCGEC9BX5NS15YDQ5GZ78VIIFLQLF00WP7H6ZV9A256FVVNFI79ZJ9ZOGP3XXFIVUTJXO7AIYH9JMTA9AFLB6PWNGPY0HD45BJCRNATAW799B48PFEC7JT4YHZ4DSBV392QMYC2YC7L5Z1LYK59G5E2IDQQIQ8L6IKNCV60P3OMNZL' where id=3; -update noar ti set v1='6DAK7KZC3URTIR620Z1YNDZBDKOTZICKZNAQV44QE9WXPR1Q3ZC5PRBE1KIA2HFMHPAXR0LSEMZVJRZ5YJOFCGEC9BX5NS15YDQ5GZ78VIIFLQLF00WP7H6ZV9A256FVVNFI79ZJ9ZOGP3XXFIVUTJXO7AIYH9JMTA9AFLB6PWNGPY0HD45BJCRNATAW799B48PFEC7JT4YHZ4DSBV392QMYC2YC7L5Z1LYK59G5E2IDQQIQ8L6IKNCV60P3OMNZL' where id=3; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='3FJ9WJEKSA70H1TUF49LYQO14FOTKJADPQD7CNQUV2HFL8MASEID8PQQTB3H8ZZQSS6ORMJ9O4H6BV161LW3DS3PYCEMWYMDEPPCLDZEJHP0SDSLZATKY3AB299AFWM6ZU8Q8Y2KVII35SGLJSA0CRY6MXMD1YWOK0WH5ZMVA7QSRCKQLJ8QE77Z7EFMI2VW1JQE5M8RD525PEQ4MXZXJNRZGUPGYV3JYC00K24RJ28Z0QL6GUYOSW55IH3MRBO9H' where id=3; -update noar ti set v2='3FJ9WJEKSA70H1TUF49LYQO14FOTKJADPQD7CNQUV2HFL8MASEID8PQQTB3H8ZZQSS6ORMJ9O4H6BV161LW3DS3PYCEMWYMDEPPCLDZEJHP0SDSLZATKY3AB299AFWM6ZU8Q8Y2KVII35SGLJSA0CRY6MXMD1YWOK0WH5ZMVA7QSRCKQLJ8QE77Z7EFMI2VW1JQE5M8RD525PEQ4MXZXJNRZGUPGYV3JYC00K24RJ28Z0QL6GUYOSW55IH3MRBO9H' where id=3; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='LMLAZ2Y3778S6GP3PKFGMJ965OE7DACKJZB8WUUXUD0KO2SX49KZOBYNRKMC3FSONUR4YDEQ44M3SHKVZV69MWL1FHCROQE8KC76XOMPMNDRKG1VEMUQLN16I7Z09GF20FVSYM1LRL235W0F7ABYPWN3HX9T8RO56JV6W5M2WY97MLTYKBNF2M3DNVQTXM0I2095CK4YYSQ3UWJZ5DWA2W7IZ5ZUVIXBC5TZF41XD3BK5EQ50KCQKVPPZWHPDWTDX' where id=3; -update noar ti set v3='LMLAZ2Y3778S6GP3PKFGMJ965OE7DACKJZB8WUUXUD0KO2SX49KZOBYNRKMC3FSONUR4YDEQ44M3SHKVZV69MWL1FHCROQE8KC76XOMPMNDRKG1VEMUQLN16I7Z09GF20FVSYM1LRL235W0F7ABYPWN3HX9T8RO56JV6W5M2WY97MLTYKBNF2M3DNVQTXM0I2095CK4YYSQ3UWJZ5DWA2W7IZ5ZUVIXBC5TZF41XD3BK5EQ50KCQKVPPZWHPDWTDX' where id=3; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='3TXRH3RKN5QX9QH6UTXAX90FO1KT5E6RQ5YQ0Z0M029DD17ED4UITV9WBSJVJARID1XOP0BGGP4N1TN8RNXX9611YP5ZO9RBEAEHLONS7G3C5XHDYBIBW5H8K0EHP8IV4HJFRE9C4IPVY76K7XTKXK80ZOUNEC58KXPCZ0F4B8FI3O9MSYFDDY2ZRSB9XUWEC3ZMJ75OW8IJLYY6KL8KAT96PE0BMAD7F1FG6PDN9QRYNVO6EAG0QXTTT6XLEE8KA' where id=4; -update noar ti set v0='3TXRH3RKN5QX9QH6UTXAX90FO1KT5E6RQ5YQ0Z0M029DD17ED4UITV9WBSJVJARID1XOP0BGGP4N1TN8RNXX9611YP5ZO9RBEAEHLONS7G3C5XHDYBIBW5H8K0EHP8IV4HJFRE9C4IPVY76K7XTKXK80ZOUNEC58KXPCZ0F4B8FI3O9MSYFDDY2ZRSB9XUWEC3ZMJ75OW8IJLYY6KL8KAT96PE0BMAD7F1FG6PDN9QRYNVO6EAG0QXTTT6XLEE8KA' where id=4; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='V5NGOE1M02EFOTRJ4TDHKEXACA9T6RCFIHMTESJ3AGB3A8OSOBBI38NIIRS1RWGB88JROKZ5AJ2DOQGRQXTW9YRHY1KMVLJVG9LAYXC5LYF8QYAM4QLX90X7EQB13MNKBF5D6GKXJQNK7QR6XO9O42EE4V5V1J4DC9Q2PFAGP64G70085257H1ZOWIKEJ5QZ7M1IK0CQOS9BLBX8ZYWWG541YM5CFTZVIIXJ6CBR89ZHHE0G98C9MGYS9O9A34NP0' where id=4; -update noar ti set v1='V5NGOE1M02EFOTRJ4TDHKEXACA9T6RCFIHMTESJ3AGB3A8OSOBBI38NIIRS1RWGB88JROKZ5AJ2DOQGRQXTW9YRHY1KMVLJVG9LAYXC5LYF8QYAM4QLX90X7EQB13MNKBF5D6GKXJQNK7QR6XO9O42EE4V5V1J4DC9Q2PFAGP64G70085257H1ZOWIKEJ5QZ7M1IK0CQOS9BLBX8ZYWWG541YM5CFTZVIIXJ6CBR89ZHHE0G98C9MGYS9O9A34NP0' where id=4; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='8D07CWZF6LFP35FZRMBY4XSCS2T8VRU35DJHOOZB623NA0BDWJH0GV5ZXBB6C5MO4WOYMYDIP7MORXEHT0RKK9FJ98TA5X47CSZ89WTS5H3SYBNKX2O18L2QXS7NPKDC4G63XL5UL13OQIB5UBC17GH8UTNFPXU9T90OE5EM9GOQTRA5Q24NKFZLYL37R5WT54BJZ0U0RBR3SPDO3JRSJRC35LPHFU7YU8K1Q7MHXE38I59EDNUCS7CA6YMR6M2EF' where id=4; -update noar ti set v2='8D07CWZF6LFP35FZRMBY4XSCS2T8VRU35DJHOOZB623NA0BDWJH0GV5ZXBB6C5MO4WOYMYDIP7MORXEHT0RKK9FJ98TA5X47CSZ89WTS5H3SYBNKX2O18L2QXS7NPKDC4G63XL5UL13OQIB5UBC17GH8UTNFPXU9T90OE5EM9GOQTRA5Q24NKFZLYL37R5WT54BJZ0U0RBR3SPDO3JRSJRC35LPHFU7YU8K1Q7MHXE38I59EDNUCS7CA6YMR6M2EF' where id=4; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='ZKGAA6FDKPFY3SJ5QD9IR1QZNQSRN6OOT0X2PT938OREUVK36H0SMWU43RA5FRPFUXFMKMJV11ZON7PMOVOL2TIIL0O6P0CANLMZMYXNVQ3WZ7GL1CJE7872AGOZR43GI46JDAT9UHTZOULOWB7QS63H3ZABOUTLI38Z1TO091DA0KY0HOT37XJIMA63S6LLQ0JSMJU7D5SW5RWRZLGWRDMIBHS5I3V8KW6MJ44AURJKHSGC5L4SUHLUZTUJ0HYRP' where id=4; -update noar ti set v3='ZKGAA6FDKPFY3SJ5QD9IR1QZNQSRN6OOT0X2PT938OREUVK36H0SMWU43RA5FRPFUXFMKMJV11ZON7PMOVOL2TIIL0O6P0CANLMZMYXNVQ3WZ7GL1CJE7872AGOZR43GI46JDAT9UHTZOULOWB7QS63H3ZABOUTLI38Z1TO091DA0KY0HOT37XJIMA63S6LLQ0JSMJU7D5SW5RWRZLGWRDMIBHS5I3V8KW6MJ44AURJKHSGC5L4SUHLUZTUJ0HYRP' where id=4; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='UZTRANH93975WQMILZ2MUN6R4MZQ73UGRQYWDHD088I2ORRH7UC6ZEIRN6G0PUASQNROBYN2WION2W9IXA25D2RY0RCK7WF9XPZ41QNN2U56T5WFSZI7NFH81QZT80JZ3HXHN16L64SPGU373IS1XTMT9O1OLWQ7KYMUO2ZRT8X8UUFS9NPEVXE7X0NDF4UZ7D5SJNI2D5VAEWMSL4S2I18GWAJQE4YJHRBQ04FWYNMR73QX74Z96BH44T4T51YEC' where id=5; -update noar ti set v0='UZTRANH93975WQMILZ2MUN6R4MZQ73UGRQYWDHD088I2ORRH7UC6ZEIRN6G0PUASQNROBYN2WION2W9IXA25D2RY0RCK7WF9XPZ41QNN2U56T5WFSZI7NFH81QZT80JZ3HXHN16L64SPGU373IS1XTMT9O1OLWQ7KYMUO2ZRT8X8UUFS9NPEVXE7X0NDF4UZ7D5SJNI2D5VAEWMSL4S2I18GWAJQE4YJHRBQ04FWYNMR73QX74Z96BH44T4T51YEC' where id=5; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='D50S6RHBKH1MMTFNNHTC77UIYI18ELNVWR795GI0NM9O8WS06XNALDTXAQFKQRYZSREW2X75N1PKMY4GYZQMQKJ83ZS7TNJ908ICBHWDRF7AN9IJWGX7F7FFSQRJJ1XIJJ861FVMLN7D9N06UBVILS4HLGVDVC5H6BZE5HM2ZAP3OUTCP89CB5TGXUK96YL7OPWDH2AP6PP2A85G7O4ZTQNLH1TI1WX7ZQXL4XBXDQOR6KY8UI49DLHM8SNHW3563' where id=5; -update noar ti set v1='D50S6RHBKH1MMTFNNHTC77UIYI18ELNVWR795GI0NM9O8WS06XNALDTXAQFKQRYZSREW2X75N1PKMY4GYZQMQKJ83ZS7TNJ908ICBHWDRF7AN9IJWGX7F7FFSQRJJ1XIJJ861FVMLN7D9N06UBVILS4HLGVDVC5H6BZE5HM2ZAP3OUTCP89CB5TGXUK96YL7OPWDH2AP6PP2A85G7O4ZTQNLH1TI1WX7ZQXL4XBXDQOR6KY8UI49DLHM8SNHW3563' where id=5; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='O3AB3AX19SHAPTYGPEP7CGJC7P22KJ4GF65U63IE9VGB41GPDQBSCH3I87KFPGEZB2OSC80WNV0186M9YU4NZVC36WUA4DDS6H4QHRNWM1IPUJTU84E4G6HMN4NQZMLJ2XVCQVN00JPAIHHAIK0OUXKT47HM62116K6MMPDBJE65LT7Z94ZHQ2A9V34G43MYWXK88O8ZTVF2M7TS69KAPBM45ELX8DWDCL5CH5NKFH2U8S8XLI5D0XPLICKODKV6D' where id=5; -update noar ti set v2='O3AB3AX19SHAPTYGPEP7CGJC7P22KJ4GF65U63IE9VGB41GPDQBSCH3I87KFPGEZB2OSC80WNV0186M9YU4NZVC36WUA4DDS6H4QHRNWM1IPUJTU84E4G6HMN4NQZMLJ2XVCQVN00JPAIHHAIK0OUXKT47HM62116K6MMPDBJE65LT7Z94ZHQ2A9V34G43MYWXK88O8ZTVF2M7TS69KAPBM45ELX8DWDCL5CH5NKFH2U8S8XLI5D0XPLICKODKV6D' where id=5; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='KCTSSV8ISNBEAFKDGD86F4QCW1MJ09VSJPS1WM10S9I5H3U0URKWJPK8GKH18EVHJ2UFL1POO6O9DAM6DAPI95A5BHU0D85EGMDKQVHPTJZ7CQ2421LM5FI0B16GTVHLM2PU004XTSTIIZ11WVXWHJYWPCXYGY0T4PQHOVICTYL9C8MDW0EYDZV3A0DFI7NNYCCEF3IFFCUV8UVVH1GQTX83GGI0AQVDKLD172GEURRJX6UFCW8J5SQHK8DTB7D0I' where id=5; -update noar ti set v3='KCTSSV8ISNBEAFKDGD86F4QCW1MJ09VSJPS1WM10S9I5H3U0URKWJPK8GKH18EVHJ2UFL1POO6O9DAM6DAPI95A5BHU0D85EGMDKQVHPTJZ7CQ2421LM5FI0B16GTVHLM2PU004XTSTIIZ11WVXWHJYWPCXYGY0T4PQHOVICTYL9C8MDW0EYDZV3A0DFI7NNYCCEF3IFFCUV8UVVH1GQTX83GGI0AQVDKLD172GEURRJX6UFCW8J5SQHK8DTB7D0I' where id=5; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='RSIY4CQGK91NEH3B7MOBI83MS13EUKLJVM1K778UZT8FOC59JE6D7EVCYO3ASNIJQVGYHV3W5IOD14NZ76CSNSX63ZHLDROE258H0IBGCYNZKLMG7SML7WTBBEEMUDVQ1JS7ZDJ7KZAFKQP6IAR2B0FSH14OFA5OD0RMYR1P2OQBK863I6ISGSY2QLLDOR9HH289JLYBXNGGIJS9E5SET8LHG28BGCI2NP0VIMGPAN5T2PTS5U629A5MN44USRSWJ' where id=6; -update noar ti set v0='RSIY4CQGK91NEH3B7MOBI83MS13EUKLJVM1K778UZT8FOC59JE6D7EVCYO3ASNIJQVGYHV3W5IOD14NZ76CSNSX63ZHLDROE258H0IBGCYNZKLMG7SML7WTBBEEMUDVQ1JS7ZDJ7KZAFKQP6IAR2B0FSH14OFA5OD0RMYR1P2OQBK863I6ISGSY2QLLDOR9HH289JLYBXNGGIJS9E5SET8LHG28BGCI2NP0VIMGPAN5T2PTS5U629A5MN44USRSWJ' where id=6; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='9KVIHILYRAKCJ38ZXUXD886V4YVFBNTBCTZG7PDBDQM1RVO578WHZ5LP1RZ9ZYCPM1SMJ6KUVS1TUCCMMBDAM1MTOG6EBSL89576EYTCOWNK0HAPENKFHQO6ONYJO6LZ0H3WYL2WJYUN0YDWI4LGXDW7G9OBWA2LGWZDRICC9135CBHV0HDH8ATGZ6Z62KMIDYZXUSG04WJ2UDY2QQZTJMYSTLCXI05KNSILHXETOZM3GDYBOLVBUWX2FT4T8W3N7' where id=6; -update noar ti set v1='9KVIHILYRAKCJ38ZXUXD886V4YVFBNTBCTZG7PDBDQM1RVO578WHZ5LP1RZ9ZYCPM1SMJ6KUVS1TUCCMMBDAM1MTOG6EBSL89576EYTCOWNK0HAPENKFHQO6ONYJO6LZ0H3WYL2WJYUN0YDWI4LGXDW7G9OBWA2LGWZDRICC9135CBHV0HDH8ATGZ6Z62KMIDYZXUSG04WJ2UDY2QQZTJMYSTLCXI05KNSILHXETOZM3GDYBOLVBUWX2FT4T8W3N7' where id=6; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='HOZ5NVZDAKYR1AUE70K5JN2N0WIF9RKLU0CIZOOQMJ0VD4UWAY3CDGEXYC3P9N5WIN6AAXZIS8OHZER2UAG24EA8X0J0HDTVI9LYG94SX3HW2V4LFLKE2XVRB9ZCZAOALVO4XHBXAALJ0R2JLSPUJ5D1WRCRJ2X82BGSEUAMQR5U9Z1WZU1L5V9HCSLGI5BDTMNJ0QLPPWRBGDUNCGLBEWQAIZC07O4S4GO1HAIXGUV0OC9YHOCNJSP0EAMBQBMYG' where id=6; -update noar ti set v2='HOZ5NVZDAKYR1AUE70K5JN2N0WIF9RKLU0CIZOOQMJ0VD4UWAY3CDGEXYC3P9N5WIN6AAXZIS8OHZER2UAG24EA8X0J0HDTVI9LYG94SX3HW2V4LFLKE2XVRB9ZCZAOALVO4XHBXAALJ0R2JLSPUJ5D1WRCRJ2X82BGSEUAMQR5U9Z1WZU1L5V9HCSLGI5BDTMNJ0QLPPWRBGDUNCGLBEWQAIZC07O4S4GO1HAIXGUV0OC9YHOCNJSP0EAMBQBMYG' where id=6; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='KHDTOKKYJDGD0O41TB01KS8GGC7EL5TCGJPSU5HK5YPYIUCTE4RU2N4ACPJCRGCM94GW29IYRFPJIOKD4AG88WXZLMW37DY3PMPE2S2SCBKQJ0ZCF0BR6VGG45XTSHXPTZX0P24FQIW3RLPPETZ7IBAXL2JQI3NAQ9TESMEEUD1N81Z7PAY8IKQSJU6GNLHNNS09D5DL6MDRGO4ZACVKBM2JV9O2W5YULQMMWQ48ZXNSLTXVR14CNHMU1RO7P10KU' where id=6; -update noar ti set v3='KHDTOKKYJDGD0O41TB01KS8GGC7EL5TCGJPSU5HK5YPYIUCTE4RU2N4ACPJCRGCM94GW29IYRFPJIOKD4AG88WXZLMW37DY3PMPE2S2SCBKQJ0ZCF0BR6VGG45XTSHXPTZX0P24FQIW3RLPPETZ7IBAXL2JQI3NAQ9TESMEEUD1N81Z7PAY8IKQSJU6GNLHNNS09D5DL6MDRGO4ZACVKBM2JV9O2W5YULQMMWQ48ZXNSLTXVR14CNHMU1RO7P10KU' where id=6; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='LHM6SC7V983AQONHQU2KCHOWL4QRC0DFXB3YA3OOOZKJJ0BRQDAUWYA4VKLIU0CVC9RADQMJVEAWWUIE87QX6AM73FLTG8CLUX7COHTK4H6L0GJ1PQE0XA9KRKLQHESS0AIFSQLYB273Z20MP6WIHVJUKZ9NAZ982WCQ7W324DQIOGNSCK92ZQP493QDK5B4FEP97OYRNV2KAVV6IOFXR3UMPYN3DNV3E9U804E2R8NBJL5F0N0W4ER37YDL826X2' where id=7; -update noar ti set v0='LHM6SC7V983AQONHQU2KCHOWL4QRC0DFXB3YA3OOOZKJJ0BRQDAUWYA4VKLIU0CVC9RADQMJVEAWWUIE87QX6AM73FLTG8CLUX7COHTK4H6L0GJ1PQE0XA9KRKLQHESS0AIFSQLYB273Z20MP6WIHVJUKZ9NAZ982WCQ7W324DQIOGNSCK92ZQP493QDK5B4FEP97OYRNV2KAVV6IOFXR3UMPYN3DNV3E9U804E2R8NBJL5F0N0W4ER37YDL826X2' where id=7; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='90XPBAT7BYYDYFB49JHZX76W9VCYKPNAZMOW39OS2EWRO9NXFKO7TPGJ5RQUP94FXZPPRLRXUHOPL7X767PKO3I3CJEL7C96GQK3RCB3XEGT5M93O5TMVIU5B78YEJSO8PLF5I3AO9HJL99Y8MW75ZXDVHAKMKAF4G6KAGIV0LGMMPIS8D5JMR6H87OZ2S6CTWZM4C1GJEB5JQD5G1EHZY99MUSNT9W6KQ3I121T0MBDH18G0SD3168H6Z9H2GA2T' where id=7; -update noar ti set v1='90XPBAT7BYYDYFB49JHZX76W9VCYKPNAZMOW39OS2EWRO9NXFKO7TPGJ5RQUP94FXZPPRLRXUHOPL7X767PKO3I3CJEL7C96GQK3RCB3XEGT5M93O5TMVIU5B78YEJSO8PLF5I3AO9HJL99Y8MW75ZXDVHAKMKAF4G6KAGIV0LGMMPIS8D5JMR6H87OZ2S6CTWZM4C1GJEB5JQD5G1EHZY99MUSNT9W6KQ3I121T0MBDH18G0SD3168H6Z9H2GA2T' where id=7; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='NP8HYW41BNEOI62AMBSV3QL86Q4TR7W8N96HDTXKCOEFFV9OCCB0WP4LME8TUGZ0CO7JNV8HVTH1IVGNJZ7SSRSP18BN8XQ391G6WVI04RTNLYMDTQ823KH72CQWG407HSOEEQ7TI0BK1RJ7OUVX5U0YLLTEMCDMF08T3O4VR9DT4CH9I8NRSCJD7DU3XR5SRKK12519USN2IHHC0F8NNZWQU6B8E4CAIO3XCDFDDJWQYL1Z82Z0DVEI4TIFB6IYQ' where id=7; -update noar ti set v2='NP8HYW41BNEOI62AMBSV3QL86Q4TR7W8N96HDTXKCOEFFV9OCCB0WP4LME8TUGZ0CO7JNV8HVTH1IVGNJZ7SSRSP18BN8XQ391G6WVI04RTNLYMDTQ823KH72CQWG407HSOEEQ7TI0BK1RJ7OUVX5U0YLLTEMCDMF08T3O4VR9DT4CH9I8NRSCJD7DU3XR5SRKK12519USN2IHHC0F8NNZWQU6B8E4CAIO3XCDFDDJWQYL1Z82Z0DVEI4TIFB6IYQ' where id=7; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='F3K57HUK7J1FV955BLWNE6MKETSNKA9NDANUF5WZI36PHXYAV72SHSLZX8CZQMLAESFV4ZWSJBKS34OM75U3LG9MT8620N0TY8AUYEDG6J9F6XVW8B25LKT2QZBEPQN7Q9XPNGPP1MJ898C5NRF1D4SJFZGTL6B1IRJKL3PUZFYF6TUZY2NQL0EBM0GJTGX6D991EPNMQM2373FQC4U1BT8R3WR7H0TJPSOAX0AQPV4T7RIUT4XE3R0FKBWUX237M' where id=7; -update noar ti set v3='F3K57HUK7J1FV955BLWNE6MKETSNKA9NDANUF5WZI36PHXYAV72SHSLZX8CZQMLAESFV4ZWSJBKS34OM75U3LG9MT8620N0TY8AUYEDG6J9F6XVW8B25LKT2QZBEPQN7Q9XPNGPP1MJ898C5NRF1D4SJFZGTL6B1IRJKL3PUZFYF6TUZY2NQL0EBM0GJTGX6D991EPNMQM2373FQC4U1BT8R3WR7H0TJPSOAX0AQPV4T7RIUT4XE3R0FKBWUX237M' where id=7; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='Y5CNULAL1PXJ7XZWI8QX6YYYY36NZKJ7KV1ER3Q6OAURAYQZYHZ38YVOF0MZYR9OK980V7EQA5ZRKE082GVABO1CLOYXFYNZA62XP2RNK21Q9UHRM6XWG2HK9EYCFVA2GLOMQ4E139Q2RC8YVAAI27UQZP8E7BAGAYQ7QJ2FNXFN32I2LULCZZDH3QPL99OU78V4K7LP20MHKR49WI3WFJQPT3IYAOG6CHXA2GHYL7U2OLQ5GW5CZ9AP1HV4O1QCN' where id=8; -update noar ti set v0='Y5CNULAL1PXJ7XZWI8QX6YYYY36NZKJ7KV1ER3Q6OAURAYQZYHZ38YVOF0MZYR9OK980V7EQA5ZRKE082GVABO1CLOYXFYNZA62XP2RNK21Q9UHRM6XWG2HK9EYCFVA2GLOMQ4E139Q2RC8YVAAI27UQZP8E7BAGAYQ7QJ2FNXFN32I2LULCZZDH3QPL99OU78V4K7LP20MHKR49WI3WFJQPT3IYAOG6CHXA2GHYL7U2OLQ5GW5CZ9AP1HV4O1QCN' where id=8; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='Z7TBDC73IVSOY74C6RF5GBRWC96W3MBUF10FISKC1Z3YMC0SGXNCUMBHMXBGQ4XCB9D07SYR8F9HNFCKSPQ8X7EQBA126AQWEIS6D6WA42UMNB18XJZI2B7ZOQUDRANBAOIMQNHUCP04NI0VSVOVYEPOCIRL6DKD21IPZFSY7X7964ZHQNU0SMM4RBB2ZIWF5S0D540KFTIRKVXZZKK2VHWDR819BBXSBVG7ZBHL9JJAWU1VSV8QGQETBC8PFUWI6' where id=8; -update noar ti set v1='Z7TBDC73IVSOY74C6RF5GBRWC96W3MBUF10FISKC1Z3YMC0SGXNCUMBHMXBGQ4XCB9D07SYR8F9HNFCKSPQ8X7EQBA126AQWEIS6D6WA42UMNB18XJZI2B7ZOQUDRANBAOIMQNHUCP04NI0VSVOVYEPOCIRL6DKD21IPZFSY7X7964ZHQNU0SMM4RBB2ZIWF5S0D540KFTIRKVXZZKK2VHWDR819BBXSBVG7ZBHL9JJAWU1VSV8QGQETBC8PFUWI6' where id=8; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='CMJH7J3P1KZVK1IEJXESCPBHBS5L6Z8WB4YT4HZ4SP0XZGKGWMR3H28PXNG8WKWE8QW5DM6UMTLFQOFF9GGU10KK73HTGNFQ9XTX7JAEIEO83NVM3JY3O22L2MDGBSKYIM4NVYDV7CRNN5XIUPJ2NHOHU13KE05AHH08MCX7LHL8Y1SSO3VLLRDA6HLP1R54A1NL7ZA2GPU0LTFP3SJDVZIGA30978AG3T33QP05BSPLAFCBOG59HL1K99SY30GGA' where id=8; -update noar ti set v2='CMJH7J3P1KZVK1IEJXESCPBHBS5L6Z8WB4YT4HZ4SP0XZGKGWMR3H28PXNG8WKWE8QW5DM6UMTLFQOFF9GGU10KK73HTGNFQ9XTX7JAEIEO83NVM3JY3O22L2MDGBSKYIM4NVYDV7CRNN5XIUPJ2NHOHU13KE05AHH08MCX7LHL8Y1SSO3VLLRDA6HLP1R54A1NL7ZA2GPU0LTFP3SJDVZIGA30978AG3T33QP05BSPLAFCBOG59HL1K99SY30GGA' where id=8; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='85QYOPQYOOBEE3G2GRIRV57YB9DERNG48SHLPPUCZSZ6C6JJSZXLJQTTLK09O6DF7ETHB1Z8BTJFBT73G72TS2S3ZMRRZ4EZ38JJRBKI9M8D8CX6ASQZHRF88HE02OZ0PG35154RJBKC74AER4YJ24YAIBCVLCZ2LD1T55BY8Q4PEUHJG3FAQ97I0POCOOTSM92KA5G9IE9IWEM501CGVFGUTJBLSGDDPJAFE63ESJ8F04PICZ2OJ8UF08DX4PIZJ' where id=8; -update noar ti set v3='85QYOPQYOOBEE3G2GRIRV57YB9DERNG48SHLPPUCZSZ6C6JJSZXLJQTTLK09O6DF7ETHB1Z8BTJFBT73G72TS2S3ZMRRZ4EZ38JJRBKI9M8D8CX6ASQZHRF88HE02OZ0PG35154RJBKC74AER4YJ24YAIBCVLCZ2LD1T55BY8Q4PEUHJG3FAQ97I0POCOOTSM92KA5G9IE9IWEM501CGVFGUTJBLSGDDPJAFE63ESJ8F04PICZ2OJ8UF08DX4PIZJ' where id=8; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='CCXWJBA0QUXCGG1T43E8CMG0FLF0568J0MNG4MR85C2AF3HOEEOJ97GD7GQL43OJGHULZK7IWH028XSP9F604UFKBVXRRT90EJJSJA4BUHDEA3REBLQPF6PM1PNH6IX2V0Z0ZNLRWJSMQ4AHI2DJAEANQXF7RNRIV0BMZKZ4LVMROHY1HBIWEDPM8YFGPHM4BTV4AWKL209AM82ACIO94B15LCVE1N9CJICTS9X2NQ8FBDZH8XYDVVVD736PKV90P' where id=9; -update noar ti set v0='CCXWJBA0QUXCGG1T43E8CMG0FLF0568J0MNG4MR85C2AF3HOEEOJ97GD7GQL43OJGHULZK7IWH028XSP9F604UFKBVXRRT90EJJSJA4BUHDEA3REBLQPF6PM1PNH6IX2V0Z0ZNLRWJSMQ4AHI2DJAEANQXF7RNRIV0BMZKZ4LVMROHY1HBIWEDPM8YFGPHM4BTV4AWKL209AM82ACIO94B15LCVE1N9CJICTS9X2NQ8FBDZH8XYDVVVD736PKV90P' where id=9; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='UROABRDCBAA8643XGHW3GJ5GSJQ1XQO6UBP2XD2EN9RCL8AN2PVQZ1TAROUZYNHPKH3VWT4VCBR08V30P1KDW93JM1REDJ58MT1QP81LPA5NM5KXBNJQPP9YGM2S3VIJVXROVHBAWRA2SLEK7YGM2L2T29A3K09NZXR7CVFOG3H8M5C6YBSWQMGAJTFYAU38AXW72NC6TGPCIV1SYL56FIN5ZUF6EQFB28GBA8SF2DV8W6W756H9XXYCGBXX9XFW3' where id=9; -update noar ti set v1='UROABRDCBAA8643XGHW3GJ5GSJQ1XQO6UBP2XD2EN9RCL8AN2PVQZ1TAROUZYNHPKH3VWT4VCBR08V30P1KDW93JM1REDJ58MT1QP81LPA5NM5KXBNJQPP9YGM2S3VIJVXROVHBAWRA2SLEK7YGM2L2T29A3K09NZXR7CVFOG3H8M5C6YBSWQMGAJTFYAU38AXW72NC6TGPCIV1SYL56FIN5ZUF6EQFB28GBA8SF2DV8W6W756H9XXYCGBXX9XFW3' where id=9; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='JHBJNIADQ2IR585CYZOXWQPY572FK0YHY50YINS4MUPZADI64WITP85B4B1ETHHH3II4QZL4GS6E249AVCR2FUGJOR0STTEXYRRG5LC8EFXXU6837XF1WWFH7N5R38KHCB0YPAVASK2V5RHQI0QQX50OT8AUW4Y2GOAL2HTCJENGRVYIEXB46W7MMHQA0J9LDEVDIUUQKUPZIY2AFY1JNF53PDS5WYFJZJXXA05ZII8O9KPDS5VRCSAMWPYGBWR5P' where id=9; -update noar ti set v2='JHBJNIADQ2IR585CYZOXWQPY572FK0YHY50YINS4MUPZADI64WITP85B4B1ETHHH3II4QZL4GS6E249AVCR2FUGJOR0STTEXYRRG5LC8EFXXU6837XF1WWFH7N5R38KHCB0YPAVASK2V5RHQI0QQX50OT8AUW4Y2GOAL2HTCJENGRVYIEXB46W7MMHQA0J9LDEVDIUUQKUPZIY2AFY1JNF53PDS5WYFJZJXXA05ZII8O9KPDS5VRCSAMWPYGBWR5P' where id=9; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='H3W8RD7J0IY3SEMOYRZLNXUWP6SZIQXQMC9DH51RU8RP3IFJR61WY2VYYH78MYYJBWZYB4T1G14Y5783N5WLMAI08OXGWX0IBW53WY2O5QVTT1F6P9P7J4E8M7WMMAVO9UUTSBNUOHKFXQR6FX0QMZ2S5SE4HF2DNJE7QXB0OOMG8K1UQY9J7JE166BDUT3YLHVPH72EXGUKBHN7CA83F5YBM6H1RVFZW25NZLE6AK1GYYLH74SMFFTG3OG5NS5OK' where id=9; -update noar ti set v3='H3W8RD7J0IY3SEMOYRZLNXUWP6SZIQXQMC9DH51RU8RP3IFJR61WY2VYYH78MYYJBWZYB4T1G14Y5783N5WLMAI08OXGWX0IBW53WY2O5QVTT1F6P9P7J4E8M7WMMAVO9UUTSBNUOHKFXQR6FX0QMZ2S5SE4HF2DNJE7QXB0OOMG8K1UQY9J7JE166BDUT3YLHVPH72EXGUKBHN7CA83F5YBM6H1RVFZW25NZLE6AK1GYYLH74SMFFTG3OG5NS5OK' where id=9; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='NPQC5K1Y8D2FH4D9F4AY0KN8YUCM2XLJVH2W9FTWKG1UO69EEGFY8CCAT12G2R4TC472BSSJUJSEFPW5NW9AWLNOUGXXHIM8QSRRUCHE188K2JCGZY09ROGW8FPHOM32A8LQ6XRP32YNAGJOLS37XBOMGWQ05V9XRZ6SA79SNFBMEPG699IFAZGAG10HXIXPHYSNGPDSAJZ81QTWEV7H9VGF6UDT5873VZQV2DLZKFDGI0S8H4QIQEYHOVM9OCW61' where id=10; -update noar ti set v0='NPQC5K1Y8D2FH4D9F4AY0KN8YUCM2XLJVH2W9FTWKG1UO69EEGFY8CCAT12G2R4TC472BSSJUJSEFPW5NW9AWLNOUGXXHIM8QSRRUCHE188K2JCGZY09ROGW8FPHOM32A8LQ6XRP32YNAGJOLS37XBOMGWQ05V9XRZ6SA79SNFBMEPG699IFAZGAG10HXIXPHYSNGPDSAJZ81QTWEV7H9VGF6UDT5873VZQV2DLZKFDGI0S8H4QIQEYHOVM9OCW61' where id=10; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='TF6IWM7FXZE2YW7LAD000UFDXT46G74JRY1SWYK10KG98KP3I1SFT56Q7T9VPOJ0TLZ77BZIHE5VX5R6U2N8H1X9ZQG9ZI3TBQBO5IEPZE7M09QE8ADKSZWC0Q2GYNDDOG0JGMIIPNSGYU2F5MM5KKQ87RSYUMKSQPU8OVUDNTZ525OXVR9DHCBA5UV45X66QLT9XF6N2LYITP4GAA4ICD9UBDCNCQFRWMTO55OTOGJV6ESD5BWJ0E4JTNCLKISTA' where id=10; -update noar ti set v1='TF6IWM7FXZE2YW7LAD000UFDXT46G74JRY1SWYK10KG98KP3I1SFT56Q7T9VPOJ0TLZ77BZIHE5VX5R6U2N8H1X9ZQG9ZI3TBQBO5IEPZE7M09QE8ADKSZWC0Q2GYNDDOG0JGMIIPNSGYU2F5MM5KKQ87RSYUMKSQPU8OVUDNTZ525OXVR9DHCBA5UV45X66QLT9XF6N2LYITP4GAA4ICD9UBDCNCQFRWMTO55OTOGJV6ESD5BWJ0E4JTNCLKISTA' where id=10; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='Y74X1E1ZSSV0V3VH1YY9304X4Y0BYGXCOYFHFVIRI0MWOMRPSEZWJLN26DSJY7SF3304QQEBOE4ICDH4S5ZL7FY08BV4HV6MOHU57Q3QKI52U2K0LKDUP3SXV9ETYTYTW688OV9TMINUA2ZNJHZC6YYHQIRM59YCL8NI61GMMC3DOX436BU1AAABHLOV29AEN30DV9L0WL96FFIZOZHXZQJ2N2ZM1NBTFCMKO5WFKF5BB9PFJAFBWZXNPI0FG1SAE' where id=10; -update noar ti set v2='Y74X1E1ZSSV0V3VH1YY9304X4Y0BYGXCOYFHFVIRI0MWOMRPSEZWJLN26DSJY7SF3304QQEBOE4ICDH4S5ZL7FY08BV4HV6MOHU57Q3QKI52U2K0LKDUP3SXV9ETYTYTW688OV9TMINUA2ZNJHZC6YYHQIRM59YCL8NI61GMMC3DOX436BU1AAABHLOV29AEN30DV9L0WL96FFIZOZHXZQJ2N2ZM1NBTFCMKO5WFKF5BB9PFJAFBWZXNPI0FG1SAE' where id=10; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='8HMT8C2LH8AKHPP7Z33NRP8NZEAAY01FZCH9VO0LT6GXSBL8J4HAE7JT3O4R3PGW40HJK3CHV6T0B560SZH6IVHE6LILO0AR4TNVGUJKC4IU6RZRR9QS1ZN4E6LW9YMKWNK5I7OME75WTDL5QHZXP16SN6ZOD9Z8U488DEFJMZZ193MP7UHJVRQFSR67MY4JN047NGK284E2Y4HP31MWKSIYEFBBHS47CLR08ZJH7I91DKY32KC771VKW3LBVXPLG' where id=10; -update noar ti set v3='8HMT8C2LH8AKHPP7Z33NRP8NZEAAY01FZCH9VO0LT6GXSBL8J4HAE7JT3O4R3PGW40HJK3CHV6T0B560SZH6IVHE6LILO0AR4TNVGUJKC4IU6RZRR9QS1ZN4E6LW9YMKWNK5I7OME75WTDL5QHZXP16SN6ZOD9Z8U488DEFJMZZ193MP7UHJVRQFSR67MY4JN047NGK284E2Y4HP31MWKSIYEFBBHS47CLR08ZJH7I91DKY32KC771VKW3LBVXPLG' where id=10; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='G1PIUPV2DK6CK4M6UDBV8S4D9CHQ934NXHNP4Y8AWZNDY4VWF3EWL9I9FVM97C1LUL2UEUAP33MS0C8UFSVSXXPH8NI03NELI9I1L7OSA53KHNGSFMX5NDGQHEF2BJOJBW069143AYA78HJ6L9C9VX2X8BC53IAUFY5F0QA76LNOKDX10RBHEDLYKJOX9AAGK2KM81GRESU9C9ZUTGP1FNSVWV97M0RY7OKXWZINGMBSG5FPBS3UKE3OMQTAMZH24' where id=11; -update noar ti set v0='G1PIUPV2DK6CK4M6UDBV8S4D9CHQ934NXHNP4Y8AWZNDY4VWF3EWL9I9FVM97C1LUL2UEUAP33MS0C8UFSVSXXPH8NI03NELI9I1L7OSA53KHNGSFMX5NDGQHEF2BJOJBW069143AYA78HJ6L9C9VX2X8BC53IAUFY5F0QA76LNOKDX10RBHEDLYKJOX9AAGK2KM81GRESU9C9ZUTGP1FNSVWV97M0RY7OKXWZINGMBSG5FPBS3UKE3OMQTAMZH24' where id=11; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='1089YGSGCQC7EBSHXDXEKTG1B40ZGVS5ZOW6IHYHGVIB9VDZUYVG1PO8QOIL6JZN5XESZ4BEQ9M122BVSGPQVDKHA0VHLE5DENL07KTDIV4BPWPF0T9YKXZQN6V99MBKF3676VLA5A5S03F4ZD9K9PYX6RGPFOYFKFF1C5RFCJRY53IXGEL4K5AKNG7IULPXATM4384AQBMLPZBTJ9ABISHTHU5G3LLMV177H48TSJYR7BRFCE2PCP4GIJF9MZOBF' where id=11; -update noar ti set v1='1089YGSGCQC7EBSHXDXEKTG1B40ZGVS5ZOW6IHYHGVIB9VDZUYVG1PO8QOIL6JZN5XESZ4BEQ9M122BVSGPQVDKHA0VHLE5DENL07KTDIV4BPWPF0T9YKXZQN6V99MBKF3676VLA5A5S03F4ZD9K9PYX6RGPFOYFKFF1C5RFCJRY53IXGEL4K5AKNG7IULPXATM4384AQBMLPZBTJ9ABISHTHU5G3LLMV177H48TSJYR7BRFCE2PCP4GIJF9MZOBF' where id=11; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='B2DZ6JQ65DH37M765HN6PE6POJURGBVL34DC1IK9AUOGBPUIBLKXQ2BR0NT38GMY1EA3CBG964RGPPUQP631Q50ABJI9GRX95RXJ5WCQA864I3XYK0N8DSN93LP5MS9IQWRWKRO4IMM2SIR4KRN879DUXY5Y8H9RX3MYLSKC2C0CR9LGJYMNXAICQYON8JR6HUY6IR9K91ZQNIMSBBSHE0FA4YLI0G9ZH7UGC55BDNNXSWFR77241PM3M78E7A31C' where id=11; -update noar ti set v2='B2DZ6JQ65DH37M765HN6PE6POJURGBVL34DC1IK9AUOGBPUIBLKXQ2BR0NT38GMY1EA3CBG964RGPPUQP631Q50ABJI9GRX95RXJ5WCQA864I3XYK0N8DSN93LP5MS9IQWRWKRO4IMM2SIR4KRN879DUXY5Y8H9RX3MYLSKC2C0CR9LGJYMNXAICQYON8JR6HUY6IR9K91ZQNIMSBBSHE0FA4YLI0G9ZH7UGC55BDNNXSWFR77241PM3M78E7A31C' where id=11; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='EOOJW86E39PL7F6YDV949XGV9PBF5DYHTVW5W1JJGE661JT74AF3LMN1CYGQPQKDHS1IRY4JSL15S8DJC579THBSJZ2X6U6GOZXUKSGUNZTV6JOZOBNWGXCQKDL439PLRVTP7DLOUKWGX97HJBCHRPQYQRZ9JSJATZ0QHR6UBHVXGLBHWX2YPZRTW3BXLBJWHNCT5GUUA744IPBOG6RQKC5QZZZRVHA7ESYRZWY3S6B8FF8PM0EEW8G7JIO7EN8GC' where id=11; -update noar ti set v3='EOOJW86E39PL7F6YDV949XGV9PBF5DYHTVW5W1JJGE661JT74AF3LMN1CYGQPQKDHS1IRY4JSL15S8DJC579THBSJZ2X6U6GOZXUKSGUNZTV6JOZOBNWGXCQKDL439PLRVTP7DLOUKWGX97HJBCHRPQYQRZ9JSJATZ0QHR6UBHVXGLBHWX2YPZRTW3BXLBJWHNCT5GUUA744IPBOG6RQKC5QZZZRVHA7ESYRZWY3S6B8FF8PM0EEW8G7JIO7EN8GC' where id=11; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='KMPR9IT6KR3MVNV37YWY5E5P88QDA3N05PVNKHGGZM59J6HWWRE8MWRWWJOG440Q69N18BVHM214OR4ONP4R3M4BAFTSWCM5V4PH1H3CJ2SVYE20LW4OI0872NVYCRHDB58BC6QLSEP0O2WXBF0EPVO235Y6BX51QSAMK9S4WY0VVO6Y4ZACT3R03KPZKZGA6UIPVMFAVSTGF6KLFNNFBCNT58BZ4JVHZT96JELZ91TS57ZGUREHU9DSXUTG5LQ6S' where id=12; -update noar ti set v0='KMPR9IT6KR3MVNV37YWY5E5P88QDA3N05PVNKHGGZM59J6HWWRE8MWRWWJOG440Q69N18BVHM214OR4ONP4R3M4BAFTSWCM5V4PH1H3CJ2SVYE20LW4OI0872NVYCRHDB58BC6QLSEP0O2WXBF0EPVO235Y6BX51QSAMK9S4WY0VVO6Y4ZACT3R03KPZKZGA6UIPVMFAVSTGF6KLFNNFBCNT58BZ4JVHZT96JELZ91TS57ZGUREHU9DSXUTG5LQ6S' where id=12; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='7EE0CQ3NMTK6R1YYWA31YHM0PQGU2FMKNR381H3O2FA7ZBW1LIYWYQ21ENPTOA1WWW4IQXF0NMZBKUHNJVGGBK49JK9FWY06299Z66JUF65YJSWOQQMQ2R2KLGON57PCYDQ4AQEKFICIS5M0X36HHZCU8U9QIVESZ3JVDDGT7G19H5OCAIRUHOW20IOA15NXE37YFJFGGSN2SHOP9S0MMAZP8CYZBNZ0Z0M4W720ZXGL4EA2LYV6V24KBN7I0A9PB' where id=12; -update noar ti set v1='7EE0CQ3NMTK6R1YYWA31YHM0PQGU2FMKNR381H3O2FA7ZBW1LIYWYQ21ENPTOA1WWW4IQXF0NMZBKUHNJVGGBK49JK9FWY06299Z66JUF65YJSWOQQMQ2R2KLGON57PCYDQ4AQEKFICIS5M0X36HHZCU8U9QIVESZ3JVDDGT7G19H5OCAIRUHOW20IOA15NXE37YFJFGGSN2SHOP9S0MMAZP8CYZBNZ0Z0M4W720ZXGL4EA2LYV6V24KBN7I0A9PB' where id=12; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='6CAF8P27N9E6X9E5JCC40GMOLY7BQVTDEGVYP11VQN5RJ16O19E88Y3GI9XV9F2U03D2LFV9VCOF1U42B3Z8FTXNKK85DX4W1NZUNYUWFO9C4NC2C5DDGZQRNSB2KKXWED65FFB9QEZHA1PYBDYDYI7DKFSTV7W67ARIXL25S1T4DQU5VADD67PKUGLFANCP4A31CTOBTQKBL3NT3USH33QAJLE7WRBC9ZZ1JL00YWHRFIFVBR0X9JIZ8EZ60LZOK' where id=12; -update noar ti set v2='6CAF8P27N9E6X9E5JCC40GMOLY7BQVTDEGVYP11VQN5RJ16O19E88Y3GI9XV9F2U03D2LFV9VCOF1U42B3Z8FTXNKK85DX4W1NZUNYUWFO9C4NC2C5DDGZQRNSB2KKXWED65FFB9QEZHA1PYBDYDYI7DKFSTV7W67ARIXL25S1T4DQU5VADD67PKUGLFANCP4A31CTOBTQKBL3NT3USH33QAJLE7WRBC9ZZ1JL00YWHRFIFVBR0X9JIZ8EZ60LZOK' where id=12; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='ZQIV6F7BZFC8C74DSG0HDTQGMMZGLLJMI9HDQSJ1MA1H61L160RIJLTCD62TN7NNAVMGRAFGC6A7JHFAQDC8CP1BLB8X8SKUUZS36MP9NIKYSXJAX0GJWNYQG4GZALKC7QK0MIOG9QAAS3LYFFF4FCBMOKZYSDIUIIMOWTRK1J98EY6XQVAIJYCTY8MW95Q44Z6EFJHZL6EF28UE5YL8RL5I94Q2KFO01P9F3MTO4E7SSOK5B3TV7ANYKP4TE3L53' where id=12; -update noar ti set v3='ZQIV6F7BZFC8C74DSG0HDTQGMMZGLLJMI9HDQSJ1MA1H61L160RIJLTCD62TN7NNAVMGRAFGC6A7JHFAQDC8CP1BLB8X8SKUUZS36MP9NIKYSXJAX0GJWNYQG4GZALKC7QK0MIOG9QAAS3LYFFF4FCBMOKZYSDIUIIMOWTRK1J98EY6XQVAIJYCTY8MW95Q44Z6EFJHZL6EF28UE5YL8RL5I94Q2KFO01P9F3MTO4E7SSOK5B3TV7ANYKP4TE3L53' where id=12; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='KKYRHYP0AL4AF6TLSKTYX679JUVVSOHME36YHBYJGDO9W6Q7R1UU6G2KMGSFI4MBS57ZOS75N805F7QPBQK38R36NNUKTINPNJ4FYQQ8UBCI8CJVJD8Y2EKHM9GSJV1HMB7BQTM5V2NB2E2ROZZCFHNAQ0UX7QIKWPWV5LD128CEHRZ4YRRT666SIXEWN93KE7A73LNS0SHREGN2HNFRYAPYU50391B3RNVVGV74XCH2I7FW9B2AGEZTRQ16VYW52' where id=13; -update noar ti set v0='KKYRHYP0AL4AF6TLSKTYX679JUVVSOHME36YHBYJGDO9W6Q7R1UU6G2KMGSFI4MBS57ZOS75N805F7QPBQK38R36NNUKTINPNJ4FYQQ8UBCI8CJVJD8Y2EKHM9GSJV1HMB7BQTM5V2NB2E2ROZZCFHNAQ0UX7QIKWPWV5LD128CEHRZ4YRRT666SIXEWN93KE7A73LNS0SHREGN2HNFRYAPYU50391B3RNVVGV74XCH2I7FW9B2AGEZTRQ16VYW52' where id=13; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='LAK6WXGZNEMT4DWCQLT8WTP5OTJXQAX09QG44BF33SI98W7CELG2ZCEGGGCD3ETGLQG0MGFYZOC153SCQE67JJK64HE44NR2YRSTVYSM2ERGWU80CXZZU3V9FJJA85J32B3FPURONU28FO9CRQVDQK3D5EDSQZG775RGYKQJ37QBZWCHQFJ24WK3T0PFKCCP1JY3QWYVO0D5IWP63QR6H69X5PNHCYNL7ST932F6WYHKWZAUH3IS747WC2CQ94WTZ' where id=13; -update noar ti set v1='LAK6WXGZNEMT4DWCQLT8WTP5OTJXQAX09QG44BF33SI98W7CELG2ZCEGGGCD3ETGLQG0MGFYZOC153SCQE67JJK64HE44NR2YRSTVYSM2ERGWU80CXZZU3V9FJJA85J32B3FPURONU28FO9CRQVDQK3D5EDSQZG775RGYKQJ37QBZWCHQFJ24WK3T0PFKCCP1JY3QWYVO0D5IWP63QR6H69X5PNHCYNL7ST932F6WYHKWZAUH3IS747WC2CQ94WTZ' where id=13; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='XR7TCJ6SWY37YMKIA30A6P0UN4VFV8LE5NP9W074DP0D0CTKAVNJ3GSITM7XH0IDN4TS1XGRX890Z1B54YHOV05L3XBWI7NLB07IM1EOGWZGK2PT8JYS0PN4NOJYPJ9NM1VARNSL2F2T9R4F7OOS2UPI62PXGO0RHSM1XLTMKX49TJSIB7NA7QH5W0O6SE7TPEDEEU59MF7WWMKGJC2T7IVUGUA6CTZ0ULQBXPUB709EONRI5REKAGOHZ5KRUPM80' where id=13; -update noar ti set v2='XR7TCJ6SWY37YMKIA30A6P0UN4VFV8LE5NP9W074DP0D0CTKAVNJ3GSITM7XH0IDN4TS1XGRX890Z1B54YHOV05L3XBWI7NLB07IM1EOGWZGK2PT8JYS0PN4NOJYPJ9NM1VARNSL2F2T9R4F7OOS2UPI62PXGO0RHSM1XLTMKX49TJSIB7NA7QH5W0O6SE7TPEDEEU59MF7WWMKGJC2T7IVUGUA6CTZ0ULQBXPUB709EONRI5REKAGOHZ5KRUPM80' where id=13; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='HSN6YMIJAXLMEEIW4TNEY99KCC3Y75PT91I2036Z0RPD9RNH1534GPRRDP475O3EPYH92QUB5031TPFKRTSRDKOCFQ4HLSOAMUP7PSFEE02SLXPZ38DR6TO97G9FAKHT9VK1RRMFI428LBRZL72YFQ0DTVSKJXWERUE1655ZH4LGAAI7ERIV8KEP7WVZN1K4DBPKD4RM7XI5MY7ZR6IPFQLXVACBVA62ITUUDYL7XYADFQXVV2NJ5ZIGWLBCMJY8A' where id=13; -update noar ti set v3='HSN6YMIJAXLMEEIW4TNEY99KCC3Y75PT91I2036Z0RPD9RNH1534GPRRDP475O3EPYH92QUB5031TPFKRTSRDKOCFQ4HLSOAMUP7PSFEE02SLXPZ38DR6TO97G9FAKHT9VK1RRMFI428LBRZL72YFQ0DTVSKJXWERUE1655ZH4LGAAI7ERIV8KEP7WVZN1K4DBPKD4RM7XI5MY7ZR6IPFQLXVACBVA62ITUUDYL7XYADFQXVV2NJ5ZIGWLBCMJY8A' where id=13; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='DPGL9XGJWM0OHS8TV1CAI4G6WJWBKQOHE9BMN4FTO918WVPAR9PG1MJMUI5Q4PJ640S1R71QLMDJLU0J070TVUVC321UNM8MXKVG622ZZWWW3LIVGAWUM81KTHNYT3H72J317ECJLQWXVQ6J3I5594LE3Z0SDA0SCPH7IHN8SV6D3TXTMLF6SWFD5P3T5V7KP5Q177662SGUX4NS1ZDH0RR3ENKUCZ4C2MYLX8NZCGZWYNGF48L1JX7GUYPMW9XXO' where id=14; -update noar ti set v0='DPGL9XGJWM0OHS8TV1CAI4G6WJWBKQOHE9BMN4FTO918WVPAR9PG1MJMUI5Q4PJ640S1R71QLMDJLU0J070TVUVC321UNM8MXKVG622ZZWWW3LIVGAWUM81KTHNYT3H72J317ECJLQWXVQ6J3I5594LE3Z0SDA0SCPH7IHN8SV6D3TXTMLF6SWFD5P3T5V7KP5Q177662SGUX4NS1ZDH0RR3ENKUCZ4C2MYLX8NZCGZWYNGF48L1JX7GUYPMW9XXO' where id=14; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='82DXNVL7DOKCTQ7FAK8SCL8BTL9J7905QF9TY3NZE08VWBT641HD7F8JWDIB93D1R8T701TNBP819NBN6HTFU88QPOWLQQ9B56YYCR3UPN5YCGEA7X7CK318OM1DIVPN9AM93OQVUGMIXGWK8569CHDAFYJTXNPWIJSHQE0Q3SERS1DB9PQ1WB399LI11YNZ9SY399TUSY4QIKHP0EUNXWKMVQDPNT7Z545T1L534HXP5NG7NES13QJZHPATNN16L' where id=14; -update noar ti set v1='82DXNVL7DOKCTQ7FAK8SCL8BTL9J7905QF9TY3NZE08VWBT641HD7F8JWDIB93D1R8T701TNBP819NBN6HTFU88QPOWLQQ9B56YYCR3UPN5YCGEA7X7CK318OM1DIVPN9AM93OQVUGMIXGWK8569CHDAFYJTXNPWIJSHQE0Q3SERS1DB9PQ1WB399LI11YNZ9SY399TUSY4QIKHP0EUNXWKMVQDPNT7Z545T1L534HXP5NG7NES13QJZHPATNN16L' where id=14; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='E6B4AB06MLZYTMXVDN3BPX4JF1IPDXANJEZ1NE8RXK0QQN6AHFFGQSDQ3YM0A7VUQ8SZTLS7ASLAABRUSBLQMMRB5E85AG1SFH2NLKXZNSC4QSYQ2KO785ZGZATCCZAQ83XSF31B27IBIIYSXTG6ZPID6R74YW6EMUPATOCUOKRN1KPMNFZ926OC6K4T0EFA3E69FM0TN2MJI8G2JPKLK4NERIRGQ9OLNCSEM15FS0M3NCZV9O86V65A028S2IL9Z' where id=14; -update noar ti set v2='E6B4AB06MLZYTMXVDN3BPX4JF1IPDXANJEZ1NE8RXK0QQN6AHFFGQSDQ3YM0A7VUQ8SZTLS7ASLAABRUSBLQMMRB5E85AG1SFH2NLKXZNSC4QSYQ2KO785ZGZATCCZAQ83XSF31B27IBIIYSXTG6ZPID6R74YW6EMUPATOCUOKRN1KPMNFZ926OC6K4T0EFA3E69FM0TN2MJI8G2JPKLK4NERIRGQ9OLNCSEM15FS0M3NCZV9O86V65A028S2IL9Z' where id=14; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='6LDFMFYW502S2CSL96GBL7QA8XCCUYLK169ZSLQX56BPN3PPTUPYMVQ6A4M87CNJ4IKOE3KRAD82AZS4EOIJLHQPDKH9PTTF3WDOVHAJON303YISYMOQMFNJ22RD1M4I08WP8II1FNG9VYE9WGKB4J7DJ3EI5512GBJDRT7SY956EDR77UN3XA0E7JPVDIJ3OQ2IIHI1O6GGQ9J5HVXVT2I4UIBWDTRBJVK1D9GRKVXWWIGOTGSBVA5C7STCV3QTT' where id=14; -update noar ti set v3='6LDFMFYW502S2CSL96GBL7QA8XCCUYLK169ZSLQX56BPN3PPTUPYMVQ6A4M87CNJ4IKOE3KRAD82AZS4EOIJLHQPDKH9PTTF3WDOVHAJON303YISYMOQMFNJ22RD1M4I08WP8II1FNG9VYE9WGKB4J7DJ3EI5512GBJDRT7SY956EDR77UN3XA0E7JPVDIJ3OQ2IIHI1O6GGQ9J5HVXVT2I4UIBWDTRBJVK1D9GRKVXWWIGOTGSBVA5C7STCV3QTT' where id=14; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='146QAZLKFPU3ZM0GRPSDLF2TK6Z58210ZYJPVT7CWQHXSVW7K5Y7PNA5YDV4MPC0S5AY4UQMEGJVLQDV4KAMP6RWHUBOZI7B8MEV1D1V3TXFG52O6YJUAVD4BZMTCC5DWNBETALYMI41TDHEXLFFRVUY1D9I3FU0528U39GYMZFO4TR43W78HJG90S19V92O84H800PP6IT7PWOM3T94F5XC01QEHT0FN5AIEGGXCQ3VXZK542W0RDHITV8KBJ4BD' where id=15; -update noar ti set v0='146QAZLKFPU3ZM0GRPSDLF2TK6Z58210ZYJPVT7CWQHXSVW7K5Y7PNA5YDV4MPC0S5AY4UQMEGJVLQDV4KAMP6RWHUBOZI7B8MEV1D1V3TXFG52O6YJUAVD4BZMTCC5DWNBETALYMI41TDHEXLFFRVUY1D9I3FU0528U39GYMZFO4TR43W78HJG90S19V92O84H800PP6IT7PWOM3T94F5XC01QEHT0FN5AIEGGXCQ3VXZK542W0RDHITV8KBJ4BD' where id=15; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='0N2RODYAYB3DCVX0VXJPRMGIN0K5VFAFK8JPOV2GX173DM8JNLS2XEABOC1CUBU80KE6PGNC8MESOV2TUQK0V71XQMHKBWVWHUNXQ8VAW4LD71B7QTV8WXBLG4LN95IJCU35O6WST1VPWIW4YD0RKYF2P2AFRB7S56U5YLJ1AP9UEGDR92XQKIHIZ1HHP58SDCIP5BG44ZRLYJ7II1664K70MFIHRJDDEP4DRUVXTOU4BMI96QA6X7FWXOJ964Z2Q' where id=15; -update noar ti set v1='0N2RODYAYB3DCVX0VXJPRMGIN0K5VFAFK8JPOV2GX173DM8JNLS2XEABOC1CUBU80KE6PGNC8MESOV2TUQK0V71XQMHKBWVWHUNXQ8VAW4LD71B7QTV8WXBLG4LN95IJCU35O6WST1VPWIW4YD0RKYF2P2AFRB7S56U5YLJ1AP9UEGDR92XQKIHIZ1HHP58SDCIP5BG44ZRLYJ7II1664K70MFIHRJDDEP4DRUVXTOU4BMI96QA6X7FWXOJ964Z2Q' where id=15; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='TIXCEEPHSANG8VF2C9PPVYNVO5EFI1HVXI1XYL6DAJSD29GV2RT0G0HAFUBK42PZ42ONOKEBGXYHXKUAFQCY8ZFJYVKVUQQ3196UD436GYD373SMSHW7UEGE4L9BRJOKNFPPBEXBG4TD1WWJVJCX42BF8PYPDAY1F375KNVWW3L31EUXL311GSKD6LEL3T0BDDS5KXGBFDHDHNJAWELYLG1Z5Q0GP2BKY0VMASFIFND7B0ZPTH8QPPZIX9DJH8WE3' where id=15; -update noar ti set v2='TIXCEEPHSANG8VF2C9PPVYNVO5EFI1HVXI1XYL6DAJSD29GV2RT0G0HAFUBK42PZ42ONOKEBGXYHXKUAFQCY8ZFJYVKVUQQ3196UD436GYD373SMSHW7UEGE4L9BRJOKNFPPBEXBG4TD1WWJVJCX42BF8PYPDAY1F375KNVWW3L31EUXL311GSKD6LEL3T0BDDS5KXGBFDHDHNJAWELYLG1Z5Q0GP2BKY0VMASFIFND7B0ZPTH8QPPZIX9DJH8WE3' where id=15; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='BU80H39TADLUV4GHJFTHN2SRHDQI318ZBYGM08761OJ3SIURCB9U1BEQGQR8TQN0IFPBHMYFNG5S4TIYX465KSSGSIYWNV578MFHH6YWL4YZ2V6FMRNANCKGWN28KM3885S8GSV6V43F9BW4NJ00RR11C01MO1Y12RNV1GC87JFCHVKWHWYKP0GXP8W0ZXKVAL7P4CS3RJQ0QJL4UI2EN3K8NJVCM5EO4CR5QJGEGNAXSJQL27AQ7WLHVH0YI7Q6P' where id=15; -update noar ti set v3='BU80H39TADLUV4GHJFTHN2SRHDQI318ZBYGM08761OJ3SIURCB9U1BEQGQR8TQN0IFPBHMYFNG5S4TIYX465KSSGSIYWNV578MFHH6YWL4YZ2V6FMRNANCKGWN28KM3885S8GSV6V43F9BW4NJ00RR11C01MO1Y12RNV1GC87JFCHVKWHWYKP0GXP8W0ZXKVAL7P4CS3RJQ0QJL4UI2EN3K8NJVCM5EO4CR5QJGEGNAXSJQL27AQ7WLHVH0YI7Q6P' where id=15; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='1MC1WBDNA6FE50LO20BN3F7JE269P183R332QGGYOL6XI4NRO05YTFGQCVCOHRG231G2CLFYFRG20T7HU7J06DJUWRIHBQ0Q8TT2TWGNDBPQPYWMOFY2UUAY06PD79DNAJMBZJ9YL4WEYVQZAM2YLXN1TKB1PQ9ZIHZ5BHWKVQ7A1WPFN60MBQS6I2D5H38X607QW0EORB2CGF0FKMM22F1OMD6UWU12XHZLKJ1IQJMOD0AE1PUI8XWXDLDM1OVV0' where id=16; -update noar ti set v0='1MC1WBDNA6FE50LO20BN3F7JE269P183R332QGGYOL6XI4NRO05YTFGQCVCOHRG231G2CLFYFRG20T7HU7J06DJUWRIHBQ0Q8TT2TWGNDBPQPYWMOFY2UUAY06PD79DNAJMBZJ9YL4WEYVQZAM2YLXN1TKB1PQ9ZIHZ5BHWKVQ7A1WPFN60MBQS6I2D5H38X607QW0EORB2CGF0FKMM22F1OMD6UWU12XHZLKJ1IQJMOD0AE1PUI8XWXDLDM1OVV0' where id=16; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='S2KUJFIG0MEZ8EVL9BA9FGB2BJNNPLSGDJ9M87YQTRLGIJJN1WUG42JLI3M0HUC436F3PPEYJ10YIDVFJ2F30F38NIKD5Y2FH5LY01VJRIVQWZQ8CKJ4LTFMHQOBY79DVT8XLQTUN8LQOP0J3PVQA0VIUZZ9HFGA69C288MSTEA073X2CL75EO6FBEJMPGP7AXUHYIOA7FY6A7EP3ZWB37RUGICAVG4OW0P5YSLXXLN50TZBDQ6XGAFTWLE6RCNB1' where id=16; -update noar ti set v1='S2KUJFIG0MEZ8EVL9BA9FGB2BJNNPLSGDJ9M87YQTRLGIJJN1WUG42JLI3M0HUC436F3PPEYJ10YIDVFJ2F30F38NIKD5Y2FH5LY01VJRIVQWZQ8CKJ4LTFMHQOBY79DVT8XLQTUN8LQOP0J3PVQA0VIUZZ9HFGA69C288MSTEA073X2CL75EO6FBEJMPGP7AXUHYIOA7FY6A7EP3ZWB37RUGICAVG4OW0P5YSLXXLN50TZBDQ6XGAFTWLE6RCNB1' where id=16; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='ECWAIFYYPPCUPR9NY17BMBFKVG4N2XYM9ZFG7I4RLCKDNS2QT4JS2VQLHOHSP8V40MBWRK89IX1L2OEXWWWSCZCC2AZS9ZBPPOGMD5TT0NLDMBDCD7E3PI6X58QQEI1297O7B3SHQ8O5BOX2871SIRG8NWE2LA0OY22HVDO3QLDVHHK13DUP214FHUNORTX5QIFV4R28KCU5T7KSNL0X4N1FKVPVAQEF14K8OBRRUZZA22QKAT239BXR66DPLQTTF' where id=16; -update noar ti set v2='ECWAIFYYPPCUPR9NY17BMBFKVG4N2XYM9ZFG7I4RLCKDNS2QT4JS2VQLHOHSP8V40MBWRK89IX1L2OEXWWWSCZCC2AZS9ZBPPOGMD5TT0NLDMBDCD7E3PI6X58QQEI1297O7B3SHQ8O5BOX2871SIRG8NWE2LA0OY22HVDO3QLDVHHK13DUP214FHUNORTX5QIFV4R28KCU5T7KSNL0X4N1FKVPVAQEF14K8OBRRUZZA22QKAT239BXR66DPLQTTF' where id=16; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='M7TE8AOGANMM3OR3PGXSTGY8E9CD4T4LBWW9JKQR1DGWM4V3C1PQRZ01FBBUEWUDNDLYIG37B6ZSJ8IVNULWMHHG3YWLTKO37V46C5CQ6TAVR9HLXM5US8VB0UJE5GIBOGEP1BRMXDYZYBRFFW9VCWC7WFFMZGOS93HKGGX7IZ3FQAZNJXU58I6HQ13H8MS3A3M1ZEGLAFCDRDLE67FDP1L41Z3WLTFJDB7FQGMRTLLLH8MY6ARTDEPPM3YS45JPD' where id=16; -update noar ti set v3='M7TE8AOGANMM3OR3PGXSTGY8E9CD4T4LBWW9JKQR1DGWM4V3C1PQRZ01FBBUEWUDNDLYIG37B6ZSJ8IVNULWMHHG3YWLTKO37V46C5CQ6TAVR9HLXM5US8VB0UJE5GIBOGEP1BRMXDYZYBRFFW9VCWC7WFFMZGOS93HKGGX7IZ3FQAZNJXU58I6HQ13H8MS3A3M1ZEGLAFCDRDLE67FDP1L41Z3WLTFJDB7FQGMRTLLLH8MY6ARTDEPPM3YS45JPD' where id=16; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='22NCVZ1Q0AFW4FMGZ1I3DXBPISMBTAXDAU945RRMACDJYF44T8AOMJP0VQ8PCPBG5RP3JNUIUCM07SPGVG8A3FL63OWQYKFAESXP2G1FXGK0IKQI94MCOETOD9JKON7A77LXCGMZ2S0Y8Y3YTOR4MUHWC4EFLL7EI99SSPYG69SI0MMESE3FZP0QJHQMF42K58UF0HIKJ6V0AY7ITFIYXNWPMGJ6QLMF9DMYCLODEXVZZM4PARFZ3M28XP9CE8HWF' where id=17; -update noar ti set v0='22NCVZ1Q0AFW4FMGZ1I3DXBPISMBTAXDAU945RRMACDJYF44T8AOMJP0VQ8PCPBG5RP3JNUIUCM07SPGVG8A3FL63OWQYKFAESXP2G1FXGK0IKQI94MCOETOD9JKON7A77LXCGMZ2S0Y8Y3YTOR4MUHWC4EFLL7EI99SSPYG69SI0MMESE3FZP0QJHQMF42K58UF0HIKJ6V0AY7ITFIYXNWPMGJ6QLMF9DMYCLODEXVZZM4PARFZ3M28XP9CE8HWF' where id=17; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='X4UN0BAM3WBARYX8IFUL9UIEE16IFFIW1J0P2PGSDW8MWXN4B700VQTYIV7RARVAV4D5DGZYVXJYE9EUZV3QGLXKQG6PGCE4LTJO7LOUJTIPP1ENDGUYSQFFWO5HEU7ZS5WZH403C5WBI3O27HVMPA22TEST6M02UC4SEBKQB5RCTKWO5Y42A5VMVJJI69VEP5NPX9QFOMHPIS94LD4HDU0GTGB0K2EZXG448PGMYKMF152ERO7AEZ0NKG6RJ0Q5F' where id=17; -update noar ti set v1='X4UN0BAM3WBARYX8IFUL9UIEE16IFFIW1J0P2PGSDW8MWXN4B700VQTYIV7RARVAV4D5DGZYVXJYE9EUZV3QGLXKQG6PGCE4LTJO7LOUJTIPP1ENDGUYSQFFWO5HEU7ZS5WZH403C5WBI3O27HVMPA22TEST6M02UC4SEBKQB5RCTKWO5Y42A5VMVJJI69VEP5NPX9QFOMHPIS94LD4HDU0GTGB0K2EZXG448PGMYKMF152ERO7AEZ0NKG6RJ0Q5F' where id=17; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='YKCOYH0X4PMF0N25DGDSMYP7B4446O9NLP99L9P9BV6C80UD5J0RFDI7KV1XEB0MYWT3JGHD25ZXJQKMSQU257V4STCBVLLCNUPGBY1KUMLS07SCFOSS5MKWZ67LMRXVB494VEGK3B102L268GGTNSPPD0JDYWVHJ9C0KZ25WDT4HM0PTOGMNH5QP6RLSYXA12QZHQE7Z8NWWNXJALMT8RXAA4PBYDVX8QQMQ3DFWX735U04MPAIYO408FGK7YCNS' where id=17; -update noar ti set v2='YKCOYH0X4PMF0N25DGDSMYP7B4446O9NLP99L9P9BV6C80UD5J0RFDI7KV1XEB0MYWT3JGHD25ZXJQKMSQU257V4STCBVLLCNUPGBY1KUMLS07SCFOSS5MKWZ67LMRXVB494VEGK3B102L268GGTNSPPD0JDYWVHJ9C0KZ25WDT4HM0PTOGMNH5QP6RLSYXA12QZHQE7Z8NWWNXJALMT8RXAA4PBYDVX8QQMQ3DFWX735U04MPAIYO408FGK7YCNS' where id=17; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='KP5DX5S0B9VS9WHXSAUMNKM63GIM0SPCC413Y4SHO4ODNKLVFFZ0AM0CD7C929UPOP2MFJGVS8Z1NKJBC5TIRRKZ58C6HZ61K2DLFN0QMS6H4XNWYNULB708SW2RTHCRLY8TJ6D3400IL3SYAIJ2GCT1I3FD95WY3IY8WB7RF1YAS2A18J5FY161W2G14B444KM2LAEJ8N6B20HMYJ6S280TQH77EMS2ZOGE0ANW1KQZIZYW64W0SZNUZ0VLNBXB0' where id=17; -update noar ti set v3='KP5DX5S0B9VS9WHXSAUMNKM63GIM0SPCC413Y4SHO4ODNKLVFFZ0AM0CD7C929UPOP2MFJGVS8Z1NKJBC5TIRRKZ58C6HZ61K2DLFN0QMS6H4XNWYNULB708SW2RTHCRLY8TJ6D3400IL3SYAIJ2GCT1I3FD95WY3IY8WB7RF1YAS2A18J5FY161W2G14B444KM2LAEJ8N6B20HMYJ6S280TQH77EMS2ZOGE0ANW1KQZIZYW64W0SZNUZ0VLNBXB0' where id=17; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='WG6VAJUZN27NNW1XPD5RV9L46GQ0L7CGMJNTASQ4VOU4I1GWFUHDTVQ6031OQ5Y3NIAK2EGTQMVKK1HB4LIVH0BQYWR0J3M3GSIKKJHE0Y0K0186HD1JC0GQR579TVQODPNQ89EEJ8Q8FDIXLJ6UWZA6R8LZRENI6OD6MXZS1YCS0C0CGBLCC48GAYGZWZ0PI3EJ22U21J21T4ZHFYBP97ZTM9I7JNMLA9IEE06X2S9EHGLDVW11BSR4EGQIXNW4W' where id=18; -update noar ti set v0='WG6VAJUZN27NNW1XPD5RV9L46GQ0L7CGMJNTASQ4VOU4I1GWFUHDTVQ6031OQ5Y3NIAK2EGTQMVKK1HB4LIVH0BQYWR0J3M3GSIKKJHE0Y0K0186HD1JC0GQR579TVQODPNQ89EEJ8Q8FDIXLJ6UWZA6R8LZRENI6OD6MXZS1YCS0C0CGBLCC48GAYGZWZ0PI3EJ22U21J21T4ZHFYBP97ZTM9I7JNMLA9IEE06X2S9EHGLDVW11BSR4EGQIXNW4W' where id=18; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='4HQWT2BPJW5BDQ0ZBVVOVNQS9RU4BA34KG25AHJVZ1XBKKKN8RBUC8UHW70N359XMPGPJE6N7Q59J83L1KB8JOO71NB0T7AYWPLZUH56EJZWBCWVHHYVMF7M5IMSISEXIFAKF65JH7LCL0YCCLLMF794G2SZQ811PMPVWF1X8QQQJFETEYTOD6NPB8BXXPRW5AYNA5I9MOAGR09QD7B9D70SUL4OBGSRZHNSW4EM5VMBSY97R84G91DGW24EB1KV4' where id=18; -update noar ti set v1='4HQWT2BPJW5BDQ0ZBVVOVNQS9RU4BA34KG25AHJVZ1XBKKKN8RBUC8UHW70N359XMPGPJE6N7Q59J83L1KB8JOO71NB0T7AYWPLZUH56EJZWBCWVHHYVMF7M5IMSISEXIFAKF65JH7LCL0YCCLLMF794G2SZQ811PMPVWF1X8QQQJFETEYTOD6NPB8BXXPRW5AYNA5I9MOAGR09QD7B9D70SUL4OBGSRZHNSW4EM5VMBSY97R84G91DGW24EB1KV4' where id=18; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='FODMS2CIVRIXOZJ4YZNX12A32R5V5PT6GL0ODOQ90N7T8YRI2KQYOHGKWIJ0XH10W7WJSA3R4U7HGYY4M2V1S2ATTTYLLYPZ3EZM2X6THUF16FQOC6CBQR2B01E4E3QVAKP2YPWKXE0QJQO8JPK2EZRE7Y8WGSFGLY3HVXUHPG8MBY6G6IQFML3KZC1ZKZUMQH9B4CSQ83N64KWY1Y043V75HV3RNW25TZ49V5V53GM6RMLP84KBAPSX0404BG928' where id=18; -update noar ti set v2='FODMS2CIVRIXOZJ4YZNX12A32R5V5PT6GL0ODOQ90N7T8YRI2KQYOHGKWIJ0XH10W7WJSA3R4U7HGYY4M2V1S2ATTTYLLYPZ3EZM2X6THUF16FQOC6CBQR2B01E4E3QVAKP2YPWKXE0QJQO8JPK2EZRE7Y8WGSFGLY3HVXUHPG8MBY6G6IQFML3KZC1ZKZUMQH9B4CSQ83N64KWY1Y043V75HV3RNW25TZ49V5V53GM6RMLP84KBAPSX0404BG928' where id=18; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='1BTDX55UWNACA9AKC3OQOKE16GD6SN1JD9DOHRBSC59XAGJLBS12CRXEZ1TI3V109IFQFP3GH9U61SW7MDVNK27V0X0Z3MN8L8LY728C4W80CI3C6N3J1PGQDKOKW0LWE2S5A2D7XQYK9PXEYXRKQBQZU4SOGXMONV7Y5WJC0DV1HUF4ET6HLR4GNTNI955LAEA5XXWNOM8C7NJ8ZXFXU8Y6YRECWIK1280SSZDZQ2YLC2GP6ID3FN18JQPB8DQ9Y' where id=18; -update noar ti set v3='1BTDX55UWNACA9AKC3OQOKE16GD6SN1JD9DOHRBSC59XAGJLBS12CRXEZ1TI3V109IFQFP3GH9U61SW7MDVNK27V0X0Z3MN8L8LY728C4W80CI3C6N3J1PGQDKOKW0LWE2S5A2D7XQYK9PXEYXRKQBQZU4SOGXMONV7Y5WJC0DV1HUF4ET6HLR4GNTNI955LAEA5XXWNOM8C7NJ8ZXFXU8Y6YRECWIK1280SSZDZQ2YLC2GP6ID3FN18JQPB8DQ9Y' where id=18; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='3S3UA4ROC3XQNGKW81PUL9LQDN01654SV1WKXSV0BY6Q0JFQN6AJI32AC18FEG18W1OVCFS7XV32ID493YWVFDRB4Z8TDDKI7LI477FFPFMGTN2G7EZFA8CL59KKOKKFMY2U57FKVUD9XJJJ5X81LP8WQ9LO3WKVLW3DFMRY9G096KJFLLI0W57FNTIZQB7OLH5I99N45FREQVT2LB0B5QGEIHLVKC1WUEVZK85MOIEIQ21N71SEDSBJP52I9PL4W' where id=19; -update noar ti set v0='3S3UA4ROC3XQNGKW81PUL9LQDN01654SV1WKXSV0BY6Q0JFQN6AJI32AC18FEG18W1OVCFS7XV32ID493YWVFDRB4Z8TDDKI7LI477FFPFMGTN2G7EZFA8CL59KKOKKFMY2U57FKVUD9XJJJ5X81LP8WQ9LO3WKVLW3DFMRY9G096KJFLLI0W57FNTIZQB7OLH5I99N45FREQVT2LB0B5QGEIHLVKC1WUEVZK85MOIEIQ21N71SEDSBJP52I9PL4W' where id=19; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='X1IR527G5348PF69D1VVJQGI14U8TRI6GO0QPOHD5F1X0IUQZ4HC0O3XO9C4R01ZLWZH9LQR5ULGU3N45XZ0NHBYEQS2FIWBX2LYNLYM4U7WVM9Y3EMP4D9JIRHKVG5QSKRUUEALNZBAE78WUQHCD39PR4JJO5N4ALHK3OHEJU5M32A6S7UWFO15P0LA48D6VVKMUM7KY8JMOVUP1I2QGP8NUJ1TAYJXNES8W24CIYJXRTVF1AVU71TIC9QA07LOF' where id=19; -update noar ti set v1='X1IR527G5348PF69D1VVJQGI14U8TRI6GO0QPOHD5F1X0IUQZ4HC0O3XO9C4R01ZLWZH9LQR5ULGU3N45XZ0NHBYEQS2FIWBX2LYNLYM4U7WVM9Y3EMP4D9JIRHKVG5QSKRUUEALNZBAE78WUQHCD39PR4JJO5N4ALHK3OHEJU5M32A6S7UWFO15P0LA48D6VVKMUM7KY8JMOVUP1I2QGP8NUJ1TAYJXNES8W24CIYJXRTVF1AVU71TIC9QA07LOF' where id=19; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='KJ7ZA27HMCST439WCTJV138RKVKCGWQ0D36I65SR0MBFA75FTG1MTL5JR4921Z3JYOSAERNSVJY0LXD29XZ7XHYA3EXIEIGF3WMZKRPMV08SLEGHQTJ88I48HP96JWJBWGB8V198HLQV8LP2IUPSLWFIJD0M35JAN4J54PB9I8N7VCV3MOCSUZOUSD43CYFCRL3CJ1GSZ4Q6E6SJ8J5UUC1ZU51QYFH2EZ1KF9ZD2416THENRTG8IE2MJFHMJX7J5' where id=19; -update noar ti set v2='KJ7ZA27HMCST439WCTJV138RKVKCGWQ0D36I65SR0MBFA75FTG1MTL5JR4921Z3JYOSAERNSVJY0LXD29XZ7XHYA3EXIEIGF3WMZKRPMV08SLEGHQTJ88I48HP96JWJBWGB8V198HLQV8LP2IUPSLWFIJD0M35JAN4J54PB9I8N7VCV3MOCSUZOUSD43CYFCRL3CJ1GSZ4Q6E6SJ8J5UUC1ZU51QYFH2EZ1KF9ZD2416THENRTG8IE2MJFHMJX7J5' where id=19; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='55UKNY3IE2N16U0HZ2O9Q0L515BSAK0J5W80LPSZ4QUN105EKN5IOU9PW6WB1AME17JZT9WV6QH1GWIC56732TMYD7E1MW4ZAMQL49O9Z1HKSIV6C0URGKBFC2MDGLE7J19TQK5RP9MD7331FPII0ZMZFWC1ZAI61GJI3ARQ1SEZVTAI7N6C4XFUAYPKNIVMYE4U343HL1F0KLGGSG7HXMG5L1F1ZW8Q9LLQCXORQPBX1MWUJBXIMD1JD4DI83HHW' where id=19; -update noar ti set v3='55UKNY3IE2N16U0HZ2O9Q0L515BSAK0J5W80LPSZ4QUN105EKN5IOU9PW6WB1AME17JZT9WV6QH1GWIC56732TMYD7E1MW4ZAMQL49O9Z1HKSIV6C0URGKBFC2MDGLE7J19TQK5RP9MD7331FPII0ZMZFWC1ZAI61GJI3ARQ1SEZVTAI7N6C4XFUAYPKNIVMYE4U343HL1F0KLGGSG7HXMG5L1F1ZW8Q9LLQCXORQPBX1MWUJBXIMD1JD4DI83HHW' where id=19; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='9A4B5GRQGF4NXLB6WTBXEO2T5G18CTDFXNN2Y0S9MJTN6V3VOWVTG8R3KG4UQDPXZV9SOZ9EHJT3CTJJKF5MRRAYTF87592OWN6QMOOGS8N37NK45Y93DA8ZVQ2NT1XPOKJFOGDOFWD2TY92XYMWGSS2L8DYCZ6TWBM4H94Y62WNHJP5T7P7EBBBG40H4TT51FMBE2Z4X0SN5FTFFB0A7IL3HEF6APLWAG9P2RKCHFA0M9YXWIGX5MFUWLBO5E3N5' where id=20; -update noar ti set v0='9A4B5GRQGF4NXLB6WTBXEO2T5G18CTDFXNN2Y0S9MJTN6V3VOWVTG8R3KG4UQDPXZV9SOZ9EHJT3CTJJKF5MRRAYTF87592OWN6QMOOGS8N37NK45Y93DA8ZVQ2NT1XPOKJFOGDOFWD2TY92XYMWGSS2L8DYCZ6TWBM4H94Y62WNHJP5T7P7EBBBG40H4TT51FMBE2Z4X0SN5FTFFB0A7IL3HEF6APLWAG9P2RKCHFA0M9YXWIGX5MFUWLBO5E3N5' where id=20; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='ZLG2AY5DRT5OVNO77Z2IU9NQMV8FPO431XBAROHR1FXIY2YVEIOXPNZ22ZMED2ECTPEOLNEWN3EDMYATY32J2QEI5XRJS242T28BXH79PCVYMHDVEV2LVINDRDCB8DYACSA8M6FJMNKGPB9G8YQX5QLXKFX1MXJWOHLW1MVXKSGR5AA0LYJPVFK0LG0UK26TIC4S85P3ZLLTS29C2D92Y6U8TY9N781QN2Z8A8KJ0S3I3L9JTQVMA2DCBEJG4WA92' where id=20; -update noar ti set v1='ZLG2AY5DRT5OVNO77Z2IU9NQMV8FPO431XBAROHR1FXIY2YVEIOXPNZ22ZMED2ECTPEOLNEWN3EDMYATY32J2QEI5XRJS242T28BXH79PCVYMHDVEV2LVINDRDCB8DYACSA8M6FJMNKGPB9G8YQX5QLXKFX1MXJWOHLW1MVXKSGR5AA0LYJPVFK0LG0UK26TIC4S85P3ZLLTS29C2D92Y6U8TY9N781QN2Z8A8KJ0S3I3L9JTQVMA2DCBEJG4WA92' where id=20; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='53T4WDL12NJU2J7V66V4AEB78XI3CSH0AHP0DGGK96ZCJQI73V3Z1PU1325GKXW558482ZP0B2JUDPSXBC9R9RCXE1SUDP41C78DQ3V624SCOYK6ZU1F03NB63N3GF1EZJE1OUSMH0I3PK3HRXXESYSAQF46BNB4DMWAA47KBTZIA7IJY1V6S57SA6DXW4ATKENCH8GEYP01IYF6LPEFXRVL912XTK5LD1H4PR1GRAN14SLG5ES63MM4S3KPZCX1Y' where id=20; -update noar ti set v2='53T4WDL12NJU2J7V66V4AEB78XI3CSH0AHP0DGGK96ZCJQI73V3Z1PU1325GKXW558482ZP0B2JUDPSXBC9R9RCXE1SUDP41C78DQ3V624SCOYK6ZU1F03NB63N3GF1EZJE1OUSMH0I3PK3HRXXESYSAQF46BNB4DMWAA47KBTZIA7IJY1V6S57SA6DXW4ATKENCH8GEYP01IYF6LPEFXRVL912XTK5LD1H4PR1GRAN14SLG5ES63MM4S3KPZCX1Y' where id=20; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='MIUQ1V9AMOCMV1NFBCN6UXKYUE89QWR09P88V5V7JNET38YL65JERW9T54FWCD8QFLDR72S0HV41OVGE54A2UQB0XU7KLMGNK80S1C49O806IIT1MEBS26QP3L0AGJOYOXECQE8EUTWC87JAWRDDD9LEFGMSZ9PBHPZ91BMOUKIJB3KJ9ONCGG7D4DT1TY37YZJBIV6FB69A886ZCY9TZD6WX0EFU46H1GL9F6VFGFGJ3AJ1EA3JUAIPY4W5T43TO' where id=20; -update noar ti set v3='MIUQ1V9AMOCMV1NFBCN6UXKYUE89QWR09P88V5V7JNET38YL65JERW9T54FWCD8QFLDR72S0HV41OVGE54A2UQB0XU7KLMGNK80S1C49O806IIT1MEBS26QP3L0AGJOYOXECQE8EUTWC87JAWRDDD9LEFGMSZ9PBHPZ91BMOUKIJB3KJ9ONCGG7D4DT1TY37YZJBIV6FB69A886ZCY9TZD6WX0EFU46H1GL9F6VFGFGJ3AJ1EA3JUAIPY4W5T43TO' where id=20; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='SVLUC9216J60KEPVL9OC5SJ1H6KQASP581PAU8Y99I28XXPGZ217JOASTSJR1C6CA6ZPWER9DYOQNQM96W8I9N9U2LCSV8C3JTERE1V5CF6YSN8X2U6NQECHMPLQNV8PNXCPLKOI4OYXC83IOMG8QA9C2VG6WIPEQUBLZDNA7C6CWAG0IFYMU1VU5UPQJ0U7XF9ND0JTEKJONI5QKBZ4T2M07FFB566N9DIHRAFJC7UR2MS4SV1SQQMKKGAQEUN6U' where id=21; -update noar ti set v0='SVLUC9216J60KEPVL9OC5SJ1H6KQASP581PAU8Y99I28XXPGZ217JOASTSJR1C6CA6ZPWER9DYOQNQM96W8I9N9U2LCSV8C3JTERE1V5CF6YSN8X2U6NQECHMPLQNV8PNXCPLKOI4OYXC83IOMG8QA9C2VG6WIPEQUBLZDNA7C6CWAG0IFYMU1VU5UPQJ0U7XF9ND0JTEKJONI5QKBZ4T2M07FFB566N9DIHRAFJC7UR2MS4SV1SQQMKKGAQEUN6U' where id=21; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='G387H4MFM9PFE6MBY8BRAHEOY6A1MS9NIAJQMWD3IYVQK36UQRUUZG6R78XDKIC2NX7RNQVLILYKE1VPQ6OD040HKUOYCB00F8OB6ZZPABNZFH2T5DDDDQE1DAU0NIVC5X7WQMIB47AA18D7EWLP1R03D7WKASR8WKGNE3DIDQR3S4UA6UCM174RV9XW8YLAMSJ7SFATJ9LYTNQQW6868SIW0ICY1JB8GXJY0Q4V9EVI0XKFJCUZ9GWFF5BYDXFXW' where id=21; -update noar ti set v1='G387H4MFM9PFE6MBY8BRAHEOY6A1MS9NIAJQMWD3IYVQK36UQRUUZG6R78XDKIC2NX7RNQVLILYKE1VPQ6OD040HKUOYCB00F8OB6ZZPABNZFH2T5DDDDQE1DAU0NIVC5X7WQMIB47AA18D7EWLP1R03D7WKASR8WKGNE3DIDQR3S4UA6UCM174RV9XW8YLAMSJ7SFATJ9LYTNQQW6868SIW0ICY1JB8GXJY0Q4V9EVI0XKFJCUZ9GWFF5BYDXFXW' where id=21; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='RTFNBX0IMOHQGV2J2BO2DCI9GNHL2LUOVXWIV6PRLNRVQTIOS6OTQWA5K66WAWYZBO3IF54ZSMFYADTRNJ8370D8XO5ENUBQ2XNLWQUGOLPMKQ8FDHIR1O3399XV1WXP9BMRKKSQ9MWC6OWUB40LJX0YJIP0DE0BELD1B7YNP7FBG92VZ8NQKS5GAI9Z4XP7VXGTT4SH0EMX44ZOOTV5VXK4ZE2V98M8FEEHW7U5QDP4SJYRI33XOLFKYHFMZX6ZB' where id=21; -update noar ti set v2='RTFNBX0IMOHQGV2J2BO2DCI9GNHL2LUOVXWIV6PRLNRVQTIOS6OTQWA5K66WAWYZBO3IF54ZSMFYADTRNJ8370D8XO5ENUBQ2XNLWQUGOLPMKQ8FDHIR1O3399XV1WXP9BMRKKSQ9MWC6OWUB40LJX0YJIP0DE0BELD1B7YNP7FBG92VZ8NQKS5GAI9Z4XP7VXGTT4SH0EMX44ZOOTV5VXK4ZE2V98M8FEEHW7U5QDP4SJYRI33XOLFKYHFMZX6ZB' where id=21; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='WXBULGD94O04KDUPE250V2XT6DDAL2NSUORYTI50TCRTMNJ8XNRV775P7QEYGS7E9IOWFBUFA2XSFXW0WISEJMYTE0BJKQIXZSQX58E9ANQUH56DBEIWBOY0PIJJNZ3ADLMM49T4RX69IX1W4M86W56DM2ATXLTOGJC0SPPYQMMMWA2MGENIUWKI022W3FWNKLSHSGV8SAEW6XTF6GPYBGLYHS6XUS454PPQE6GGK0UB4TNLDQXFS7UDUGB2CWYQO' where id=21; -update noar ti set v3='WXBULGD94O04KDUPE250V2XT6DDAL2NSUORYTI50TCRTMNJ8XNRV775P7QEYGS7E9IOWFBUFA2XSFXW0WISEJMYTE0BJKQIXZSQX58E9ANQUH56DBEIWBOY0PIJJNZ3ADLMM49T4RX69IX1W4M86W56DM2ATXLTOGJC0SPPYQMMMWA2MGENIUWKI022W3FWNKLSHSGV8SAEW6XTF6GPYBGLYHS6XUS454PPQE6GGK0UB4TNLDQXFS7UDUGB2CWYQO' where id=21; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='JEEZEZGZ7ONLNEXWNOZ6IEOLE70TS3FG9M1B48MGOMZ67QQEZ4KX7PJUIPAECUE8TRF5NOODH9C405C5DD1YESEOMTCGP54NET4WJ0XG3Q88JK6NHAF1T85KM3JDSIUDHXUDGIJA1ISS7YRUBI4NY3SCBP6NEO6YJWP605301X5SQW6GD6E1PR07YPPULZO85CR2EGGM483ZBFJWA1MMBCO8CX6885JAOM078PIA8FTQ1ERDBQRUW2Y30PCGEJ1RC' where id=22; -update noar ti set v0='JEEZEZGZ7ONLNEXWNOZ6IEOLE70TS3FG9M1B48MGOMZ67QQEZ4KX7PJUIPAECUE8TRF5NOODH9C405C5DD1YESEOMTCGP54NET4WJ0XG3Q88JK6NHAF1T85KM3JDSIUDHXUDGIJA1ISS7YRUBI4NY3SCBP6NEO6YJWP605301X5SQW6GD6E1PR07YPPULZO85CR2EGGM483ZBFJWA1MMBCO8CX6885JAOM078PIA8FTQ1ERDBQRUW2Y30PCGEJ1RC' where id=22; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='L14W6JEIRD4STH3155ALH505X12KZM78GJ20UJT7HS7OH05LT36MUTEDO64UEOQCBAQ8SZF2PFHXF7AH4OJ63EA7V4KRD5SJK7B2ZKZ8V0RQJ4WQYVKK1H9SM2WCLJU8WASNP6K5I3WGFT7O56GFX0BBMGJQ9QMPPLFCDIW9X7S1AFV2A91WT9443OQ92J086H7GOJKPC2OHXLLGVSWFG6LRQ165WQ6ZJFV9WHWMY71E6OLP4SBDKFI5XWGT29UW9' where id=22; -update noar ti set v1='L14W6JEIRD4STH3155ALH505X12KZM78GJ20UJT7HS7OH05LT36MUTEDO64UEOQCBAQ8SZF2PFHXF7AH4OJ63EA7V4KRD5SJK7B2ZKZ8V0RQJ4WQYVKK1H9SM2WCLJU8WASNP6K5I3WGFT7O56GFX0BBMGJQ9QMPPLFCDIW9X7S1AFV2A91WT9443OQ92J086H7GOJKPC2OHXLLGVSWFG6LRQ165WQ6ZJFV9WHWMY71E6OLP4SBDKFI5XWGT29UW9' where id=22; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='UO15756S4IHK8GC5580ND2Z523LKMT8J48J4GXFJTBSJ9QTCJ9T1VWDD92UQ7FI82R3BCOLJM4JV09GAW4D02QR3OFJH665RYQYVPW60DXHBFCO1VZTOR4XMOE749DWZUYUJ5L09MKCQLHVF1SKWI3SKXDOE6NNAX6FZD1KC22ILYI6CV379FCZZ525I64Z1WXGHD6O2XNJJSIRQEE5SYDKR75PKLA5B3ZM1WY7SQ0F3EGB8T85IN6NIZH9W8CQCZ' where id=22; -update noar ti set v2='UO15756S4IHK8GC5580ND2Z523LKMT8J48J4GXFJTBSJ9QTCJ9T1VWDD92UQ7FI82R3BCOLJM4JV09GAW4D02QR3OFJH665RYQYVPW60DXHBFCO1VZTOR4XMOE749DWZUYUJ5L09MKCQLHVF1SKWI3SKXDOE6NNAX6FZD1KC22ILYI6CV379FCZZ525I64Z1WXGHD6O2XNJJSIRQEE5SYDKR75PKLA5B3ZM1WY7SQ0F3EGB8T85IN6NIZH9W8CQCZ' where id=22; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='48G9L26BM5A5IL4MF2VFZ7SAC5XQEFKBNU898PMEW7TANRVXIW6Y1JEYQMTURT6HRF355ROJ1E09OR5Z5GI2H3724R86NIBCQ4G2BQFCACINEDJNKN04A46BJGV4G4PPB67ALJJEZJQ0X9EYHISYQH6TCWQ4AX7CL0ZCKNNY6CP2VHYSQ8OCI3JMRBPLJRLB9PXULNTG6IKQ6J4K66C3RM6122FLFTZYZCNKEA692YNF71QS7VU8W260EAHSGO42H' where id=22; -update noar ti set v3='48G9L26BM5A5IL4MF2VFZ7SAC5XQEFKBNU898PMEW7TANRVXIW6Y1JEYQMTURT6HRF355ROJ1E09OR5Z5GI2H3724R86NIBCQ4G2BQFCACINEDJNKN04A46BJGV4G4PPB67ALJJEZJQ0X9EYHISYQH6TCWQ4AX7CL0ZCKNNY6CP2VHYSQ8OCI3JMRBPLJRLB9PXULNTG6IKQ6J4K66C3RM6122FLFTZYZCNKEA692YNF71QS7VU8W260EAHSGO42H' where id=22; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='742W4TS0469RFUNWNWDLI1TQJF2VMR3WZWVURHMRRV7FD4LIRO8HIVBW6SMMJHINQ7IR670MKDA46P3P2IQNJ8GE9JZOC4W2UOIW2HLOTVKVA2NH52P3PSYI8O6XM8ZOESMS5VTSTSYRU29U7Q5P6AH9KNSGMIXOTV24FGT3E7SU1P05XKZVGFRU8OF4YITK37DEUAWY0C57EI95OEH07M99GCXQ68RPZF3DZ84IFGTV4Q35FR8Z01FAEC8F81ZM6' where id=23; -update noar ti set v0='742W4TS0469RFUNWNWDLI1TQJF2VMR3WZWVURHMRRV7FD4LIRO8HIVBW6SMMJHINQ7IR670MKDA46P3P2IQNJ8GE9JZOC4W2UOIW2HLOTVKVA2NH52P3PSYI8O6XM8ZOESMS5VTSTSYRU29U7Q5P6AH9KNSGMIXOTV24FGT3E7SU1P05XKZVGFRU8OF4YITK37DEUAWY0C57EI95OEH07M99GCXQ68RPZF3DZ84IFGTV4Q35FR8Z01FAEC8F81ZM6' where id=23; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='FPBNQIHCIJ810F5HG2JL6G8WW4DNU0POZ3TKRAU0RD32YGB27APJJB3GBO1826IB1C1OVJBSE6X2N0VI8RDWLHE2K36ZNTX1ILGEULWH8W0AH8N2W3B6886XENFFRUGD2C8EXKMD5FMSFWP0VJD7GS244EDSTJXGQA31ZM86EW9HCCH131RVXDVQ54DGD6X8QKRIILOI5355EKFHTKQM9HCP00IWYSNA56JMPZDO7AGJCC31PH4XOB3R23Y89S8AC' where id=23; -update noar ti set v1='FPBNQIHCIJ810F5HG2JL6G8WW4DNU0POZ3TKRAU0RD32YGB27APJJB3GBO1826IB1C1OVJBSE6X2N0VI8RDWLHE2K36ZNTX1ILGEULWH8W0AH8N2W3B6886XENFFRUGD2C8EXKMD5FMSFWP0VJD7GS244EDSTJXGQA31ZM86EW9HCCH131RVXDVQ54DGD6X8QKRIILOI5355EKFHTKQM9HCP00IWYSNA56JMPZDO7AGJCC31PH4XOB3R23Y89S8AC' where id=23; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='SSXNTOVFT1V1W09WGG0UFW0KI84DZUUVAWPH989N2H76M1ZXQLH8FBFG9JC124ESP2Q7U4LSIVFQ681AAO99NJLOHVWI83ALBHUF6QNZKZG0MPPQ4FI02TQUUWRYOUD7IBMQACR36IB7XGZ01U7DI60GCA3AOB9IFHB48KVJTTHVIWBYURC640DHSTKH2YXUSNJHIUBFNLO8BIVJ67WZ60USJ542HEB6KK1TIBDH348LBJ3DIS8V9CMR3A3OCJ6A7' where id=23; -update noar ti set v2='SSXNTOVFT1V1W09WGG0UFW0KI84DZUUVAWPH989N2H76M1ZXQLH8FBFG9JC124ESP2Q7U4LSIVFQ681AAO99NJLOHVWI83ALBHUF6QNZKZG0MPPQ4FI02TQUUWRYOUD7IBMQACR36IB7XGZ01U7DI60GCA3AOB9IFHB48KVJTTHVIWBYURC640DHSTKH2YXUSNJHIUBFNLO8BIVJ67WZ60USJ542HEB6KK1TIBDH348LBJ3DIS8V9CMR3A3OCJ6A7' where id=23; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='7OYKHHGBLUCKU96U9QEYG8RLEAQQRQZRDCTUX6C0AMSPEB867J72NBKRGSKQIBA3TB50J5HYSVPCFTUKDYW54F10W388C046KDSZWYJ8W97FR0WRN7U2T84X5VF54ICHFZF9LNNN4NXP6EUDSX0T39UEI82W5GF1VVCQ8CX7ZLVMEST9KH6267DYB1E067NW2T3IGW8ZJVS9UAWK2ALGHEVOBNAKOENJWE6IGNEND4WK1DMUVVVN0R4S4KEYXYXGY' where id=23; -update noar ti set v3='7OYKHHGBLUCKU96U9QEYG8RLEAQQRQZRDCTUX6C0AMSPEB867J72NBKRGSKQIBA3TB50J5HYSVPCFTUKDYW54F10W388C046KDSZWYJ8W97FR0WRN7U2T84X5VF54ICHFZF9LNNN4NXP6EUDSX0T39UEI82W5GF1VVCQ8CX7ZLVMEST9KH6267DYB1E067NW2T3IGW8ZJVS9UAWK2ALGHEVOBNAKOENJWE6IGNEND4WK1DMUVVVN0R4S4KEYXYXGY' where id=23; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='UKHGEYJNEHB43UYR29RVIX2E69BM38JXOIWFE0YKEGM21M2QBYN9LLTTUZFIGG1MQJL3NJJF4VT704R5L38LZ6JRAQL8XPDRQ4P7JBYKXR43AXWZEO4GF8RD90R1750ZGGFVOCMQPEH1SZLBU9GA5RH3U9XR43D02N1YLV2OK81J1JPEF3SO600S0F9EHDSRZROBYPTO964G2B1IEUT4B8LXV0JQ011KBLNKQ2HY29DY2GIBS2QP0DPYGGGL04VRX' where id=24; -update noar ti set v0='UKHGEYJNEHB43UYR29RVIX2E69BM38JXOIWFE0YKEGM21M2QBYN9LLTTUZFIGG1MQJL3NJJF4VT704R5L38LZ6JRAQL8XPDRQ4P7JBYKXR43AXWZEO4GF8RD90R1750ZGGFVOCMQPEH1SZLBU9GA5RH3U9XR43D02N1YLV2OK81J1JPEF3SO600S0F9EHDSRZROBYPTO964G2B1IEUT4B8LXV0JQ011KBLNKQ2HY29DY2GIBS2QP0DPYGGGL04VRX' where id=24; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='WR3NEMXH8RB6CVIENPJRQE5UU412PHLH1K9LSHKMKQQW1KW57G0YWOS081DB9HL7DBR2B2FW9SUZOS37YTVCHWT8CTTIB78WWTSEVFNTRH4WPZ5BRN1W3Q8Q0IE8ZHAW6VD2JRFI6O384RABB61MF09H9YWX3FLTDU75UG1CTV8NW00BEXI58PHJSWHC4OIOUOKZBN8GQBJFX0WB4HS14LWEJ7MB2KJQDAIEN5J1H78KYLZ9HTKIFQEASH188HTMD' where id=24; -update noar ti set v1='WR3NEMXH8RB6CVIENPJRQE5UU412PHLH1K9LSHKMKQQW1KW57G0YWOS081DB9HL7DBR2B2FW9SUZOS37YTVCHWT8CTTIB78WWTSEVFNTRH4WPZ5BRN1W3Q8Q0IE8ZHAW6VD2JRFI6O384RABB61MF09H9YWX3FLTDU75UG1CTV8NW00BEXI58PHJSWHC4OIOUOKZBN8GQBJFX0WB4HS14LWEJ7MB2KJQDAIEN5J1H78KYLZ9HTKIFQEASH188HTMD' where id=24; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='UCAQ0O4WP1ILS1UAVXLI6P4506AIR4L2C85SDBQGRQ8UCUCRALFACCV62U1CBAI1QNGFDXI59ISN3M48235LYA279VU96P38BFPFJPRNAQXR3H3CAUXTQSQLMJZS00HBWLW2T6ZDP0S8QGHGO84HI0MQ6DAZT4UKYQKAWRE4AIAY3PHEQWX23UN55W2YLKGTFWILEDICTITMZZ5DFIGXMQC9DERTEBU7ZCG2LEWPIR6K3GAWAA9SIK8RPWTS6S0TK' where id=24; -update noar ti set v2='UCAQ0O4WP1ILS1UAVXLI6P4506AIR4L2C85SDBQGRQ8UCUCRALFACCV62U1CBAI1QNGFDXI59ISN3M48235LYA279VU96P38BFPFJPRNAQXR3H3CAUXTQSQLMJZS00HBWLW2T6ZDP0S8QGHGO84HI0MQ6DAZT4UKYQKAWRE4AIAY3PHEQWX23UN55W2YLKGTFWILEDICTITMZZ5DFIGXMQC9DERTEBU7ZCG2LEWPIR6K3GAWAA9SIK8RPWTS6S0TK' where id=24; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='XGLATUXOQZCS5PVNTA7P4BKEHF23QYWXMO6FL334424I087RPN9095VM4SBBK7RSQNW9R1EDNMCLHEFDBWUZ8APJ26POHN3SWHL6BR3W5I3KONYG9TEHM38ELG4EP7GTZ0H3TLGUZS1WT2PF1U468M9PX57DGYTXYH1KET4P8EP24ZBK783ZTRHC60MKYM6CV53TZM5EID31GJAED5DNOG6FBJ31DPCKKB70EG6B1O5V0NUNLY28ZAZMNOTCXY2OM' where id=24; -update noar ti set v3='XGLATUXOQZCS5PVNTA7P4BKEHF23QYWXMO6FL334424I087RPN9095VM4SBBK7RSQNW9R1EDNMCLHEFDBWUZ8APJ26POHN3SWHL6BR3W5I3KONYG9TEHM38ELG4EP7GTZ0H3TLGUZS1WT2PF1U468M9PX57DGYTXYH1KET4P8EP24ZBK783ZTRHC60MKYM6CV53TZM5EID31GJAED5DNOG6FBJ31DPCKKB70EG6B1O5V0NUNLY28ZAZMNOTCXY2OM' where id=24; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='LET2ITC7OAO0EV495YIAH04HVBSXWFG4FS202U7P369X29RB8EBI86EMMKITTGOQROVSVD5ZT2IOE6FXM5SLQLN8QZD3K0MGUEE8UGPBLBAE7PLX71IJ3LLERHTFZTGYWR1E0YA4A3VPZYV9HGCG0149HK7FN36U9DCOE4AM4264LMJ1GK4QOMDKCDMV7JLD5MVUJZX8Y6N8NHHLCQ1FVT7P15LC7CJOPNIO482RXFD8BY53FY0LS895WMW5PKCA0' where id=25; -update noar ti set v0='LET2ITC7OAO0EV495YIAH04HVBSXWFG4FS202U7P369X29RB8EBI86EMMKITTGOQROVSVD5ZT2IOE6FXM5SLQLN8QZD3K0MGUEE8UGPBLBAE7PLX71IJ3LLERHTFZTGYWR1E0YA4A3VPZYV9HGCG0149HK7FN36U9DCOE4AM4264LMJ1GK4QOMDKCDMV7JLD5MVUJZX8Y6N8NHHLCQ1FVT7P15LC7CJOPNIO482RXFD8BY53FY0LS895WMW5PKCA0' where id=25; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='BLLIFZZB3919MUJNPCVE7BSOY7J1YJS7ALBBMYTZVZ3EVHMP47DKE59BUOA4A3H731EYB4AVUCY7KSOGZJDKIL51UMQIW1RI1Q6TRTC1K2430ZU08FTNWROFC250J6X24AIYPL5BG8MIYYPIE36KPG9B1CHLA568L06A22CDU9P90DEP7Z6X0OO4DCNT2ZRL54CPFM0TD71S05RJUALNU4LMCOCSFIB0WYGEDQ1W3UWWD9S2O2IUUSCSUX6E1KGP6' where id=25; -update noar ti set v1='BLLIFZZB3919MUJNPCVE7BSOY7J1YJS7ALBBMYTZVZ3EVHMP47DKE59BUOA4A3H731EYB4AVUCY7KSOGZJDKIL51UMQIW1RI1Q6TRTC1K2430ZU08FTNWROFC250J6X24AIYPL5BG8MIYYPIE36KPG9B1CHLA568L06A22CDU9P90DEP7Z6X0OO4DCNT2ZRL54CPFM0TD71S05RJUALNU4LMCOCSFIB0WYGEDQ1W3UWWD9S2O2IUUSCSUX6E1KGP6' where id=25; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='E3DEFLQW33FV7W6GXU4KUXFAMQ1T2GS0JM7YSZOI8VS8LLGVEFLWPVU19E1Z2GVP7AQ2CT0HSMFJUPALLHHNKH4L327F3FWATH3KFZ2FQL7SE7TNMB35B19KB4ZFWURWC7MENP8OX34BVXOXLHNC06H1T9CHT968UZK6QTGY4D82KMNTQ9FPWTL42B9VEBM8EGK9SMKKZ39KTMTJE1NA2OBBGGLYC4ZRDOHT173EZF1SSQEFTL83OTFFZF6JH741U' where id=25; -update noar ti set v2='E3DEFLQW33FV7W6GXU4KUXFAMQ1T2GS0JM7YSZOI8VS8LLGVEFLWPVU19E1Z2GVP7AQ2CT0HSMFJUPALLHHNKH4L327F3FWATH3KFZ2FQL7SE7TNMB35B19KB4ZFWURWC7MENP8OX34BVXOXLHNC06H1T9CHT968UZK6QTGY4D82KMNTQ9FPWTL42B9VEBM8EGK9SMKKZ39KTMTJE1NA2OBBGGLYC4ZRDOHT173EZF1SSQEFTL83OTFFZF6JH741U' where id=25; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='G7DCK92JDBMTPDWV5E3AU6N81LP41Z2LE157M222BUUC7JNBFAB1CLTM5NRN3E3OT5V0X0PND9RXZJXBCQO6XIG60ZT9UMLKY5JMFVZRFCJ1FVS4WD1RAEGBPNWYWOU857QVJ87C602NB7TDQCAURU7ZE2JCYQCV5N83XW9Z4JCVUS7MOJFLLBOCQEN1BHVCG4ZW11YFN8F8JDAH4F0W4HUZE7D7S3YZC3HEVYMJVWEBQUEI96D5UHCZ9NZ2AFAAS' where id=25; -update noar ti set v3='G7DCK92JDBMTPDWV5E3AU6N81LP41Z2LE157M222BUUC7JNBFAB1CLTM5NRN3E3OT5V0X0PND9RXZJXBCQO6XIG60ZT9UMLKY5JMFVZRFCJ1FVS4WD1RAEGBPNWYWOU857QVJ87C602NB7TDQCAURU7ZE2JCYQCV5N83XW9Z4JCVUS7MOJFLLBOCQEN1BHVCG4ZW11YFN8F8JDAH4F0W4HUZE7D7S3YZC3HEVYMJVWEBQUEI96D5UHCZ9NZ2AFAAS' where id=25; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='92KSYM6D0QCDKV6DR6LGYQAJEPP6K3JK2MTYAJNH0OXI4VQHM83F3BNE98KWRN42GS47PMIAEJ026T8JH1OT3YXNMVVN7SX0EENAWG1UO7M83KHK9WA93W3UYPTSJ1AHT9CLSXFONP9SP2RERG0VNRZQQKIUTPPXO2QE5HJJVIWW051SWF6UUR188AKPEIXZ908JSOEGFJ2QTYY1LZ7GN2AG3JMLT8KOT8VXJRKVVY8BVVI13O5GDKL748CC5T762' where id=26; -update noar ti set v0='92KSYM6D0QCDKV6DR6LGYQAJEPP6K3JK2MTYAJNH0OXI4VQHM83F3BNE98KWRN42GS47PMIAEJ026T8JH1OT3YXNMVVN7SX0EENAWG1UO7M83KHK9WA93W3UYPTSJ1AHT9CLSXFONP9SP2RERG0VNRZQQKIUTPPXO2QE5HJJVIWW051SWF6UUR188AKPEIXZ908JSOEGFJ2QTYY1LZ7GN2AG3JMLT8KOT8VXJRKVVY8BVVI13O5GDKL748CC5T762' where id=26; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='JXZVHXEQD2EXJZ31HK5GXDP0Z5LMZAT3ODLLX9RHRVO581QGVDIY982M6K8KGVDGHQDI1ZMTP3XVO1XTCSB9UUFHNAREOI92W32044SGWWXY5310TIK780YKWDNC1UQ86014PDT4KVHYWCGKYMIEGRLG989E708XTK78R41RQPM370QLS9VNWS6IGY2L6VISSPYVRFF0I4BB966ZGJX5W4K3NH1GEJT5DMN1DFQ7YIL2U9KMHRUUABJC6SEVXDHXA' where id=26; -update noar ti set v1='JXZVHXEQD2EXJZ31HK5GXDP0Z5LMZAT3ODLLX9RHRVO581QGVDIY982M6K8KGVDGHQDI1ZMTP3XVO1XTCSB9UUFHNAREOI92W32044SGWWXY5310TIK780YKWDNC1UQ86014PDT4KVHYWCGKYMIEGRLG989E708XTK78R41RQPM370QLS9VNWS6IGY2L6VISSPYVRFF0I4BB966ZGJX5W4K3NH1GEJT5DMN1DFQ7YIL2U9KMHRUUABJC6SEVXDHXA' where id=26; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='6A6VBLBJYWFNJZP5AO8GHNS5KSAXM4U48R990LAP038RA0YJX9TFPCJMN8QB4MS47U6J8IZHV7FCHE9PTD3ZCS66DTPTME52GQEFDQT33XDYMA8E0CV71SZ4H8FCJ7XXNEU98DW7CNDMOAQ94L3QVM86QJCCC0Z9IS6M1YQYMZ1CDWEQQN95Z6RUM97QMFCZ7UAEFI9D3MNUKP8S8XAA0GT2KBQZW5XXX8K537MZM8IHWQ0PPBDJ1MAA3ARIS7VUD' where id=26; -update noar ti set v2='6A6VBLBJYWFNJZP5AO8GHNS5KSAXM4U48R990LAP038RA0YJX9TFPCJMN8QB4MS47U6J8IZHV7FCHE9PTD3ZCS66DTPTME52GQEFDQT33XDYMA8E0CV71SZ4H8FCJ7XXNEU98DW7CNDMOAQ94L3QVM86QJCCC0Z9IS6M1YQYMZ1CDWEQQN95Z6RUM97QMFCZ7UAEFI9D3MNUKP8S8XAA0GT2KBQZW5XXX8K537MZM8IHWQ0PPBDJ1MAA3ARIS7VUD' where id=26; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='TYG0RN23Z6U36OA28913RTYOSX0EQ6J7Y1ME10VLMRDEBQ4HPF1VWP35TI4GVQ9G28TDTB7ZKRSKIFYFWCX9H8UUX26W0SBX9TBI0VUCPM1PZKYO3P7QQZSH88X7ZK0702KC9GAFFSMKQJA2ARWV2S4741OU4WTJAQ8ZTAM2PH25LK2ERCAX038KMWXN1K1YWV273L6STNQBJZQ7GD26GBO0VT6V9EX7RBIU1JG6UTNRAYMRCVKDVG0MRUWM0OD8O' where id=26; -update noar ti set v3='TYG0RN23Z6U36OA28913RTYOSX0EQ6J7Y1ME10VLMRDEBQ4HPF1VWP35TI4GVQ9G28TDTB7ZKRSKIFYFWCX9H8UUX26W0SBX9TBI0VUCPM1PZKYO3P7QQZSH88X7ZK0702KC9GAFFSMKQJA2ARWV2S4741OU4WTJAQ8ZTAM2PH25LK2ERCAX038KMWXN1K1YWV273L6STNQBJZQ7GD26GBO0VT6V9EX7RBIU1JG6UTNRAYMRCVKDVG0MRUWM0OD8O' where id=26; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='1QKXZMD6C0L0Z79BL758AD91MJFXVS5QMEX33FAPO1HG7L440CS7UO12FGEPW33X6RJ5W5NYORVTOHTLB6K7R3A5THQIN6AIMH05J1EKF9ZZZSL07GG0MSG4UVS1CQ6KYOSC3LR11XERDPT02YJS97HFDFWHMGIFPLHRZPALX5F8KPSQCQU0FVCCLM8NUKG4C9ZTSQHW1Y9BXP876U17NF7O9GR5VN4XG6ATQKKMO5KUVPQV8GK2KUVNR32EIN35G' where id=27; -update noar ti set v0='1QKXZMD6C0L0Z79BL758AD91MJFXVS5QMEX33FAPO1HG7L440CS7UO12FGEPW33X6RJ5W5NYORVTOHTLB6K7R3A5THQIN6AIMH05J1EKF9ZZZSL07GG0MSG4UVS1CQ6KYOSC3LR11XERDPT02YJS97HFDFWHMGIFPLHRZPALX5F8KPSQCQU0FVCCLM8NUKG4C9ZTSQHW1Y9BXP876U17NF7O9GR5VN4XG6ATQKKMO5KUVPQV8GK2KUVNR32EIN35G' where id=27; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='43D4WF8721S3JA8E40KNKVPSRQ0A6CSIGKB60E1WG7723NVXE7ZN2HDSV62XPAXBMOB0OIS42219X1SN23XUQ43LH23L3GNKTZ601EX9G23BP1GUKXXJ4HNEHDW8VVXOVAXFL3R1X0WD2J1FU0R4N8O0DM062SNGZKDZVUV77OOAO2HQ81A29DUJ1TI23VBGNB4BPZN5D9TYHIK72WENPQURVCKRAV21GHUII9Y53UO6I05KKQKZGMLG3HC6JCYR5' where id=27; -update noar ti set v1='43D4WF8721S3JA8E40KNKVPSRQ0A6CSIGKB60E1WG7723NVXE7ZN2HDSV62XPAXBMOB0OIS42219X1SN23XUQ43LH23L3GNKTZ601EX9G23BP1GUKXXJ4HNEHDW8VVXOVAXFL3R1X0WD2J1FU0R4N8O0DM062SNGZKDZVUV77OOAO2HQ81A29DUJ1TI23VBGNB4BPZN5D9TYHIK72WENPQURVCKRAV21GHUII9Y53UO6I05KKQKZGMLG3HC6JCYR5' where id=27; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='TVFMQGD8SHUMGWLDECLPQOZ3DZZJSW6SESKODE5SV4WNWHTUHBQ6KKLQYDHQ8O03HM11S5NX7P20QH30C9102LI7HF754799AIDNN3OQC18CD4OP938YDZCBGFSUW24IY0G8QJQRM7BIE6FVI2WNSV04S67M4JAY20C7LZXYPBAJU17TEJN1X2ONMHM2QTOYSTDDGBPWKQD3D8716WUK1FAG9KFPY44WZXI64BU1SLA8EIFV4C0DEQJJUYGE3HIKF' where id=27; -update noar ti set v2='TVFMQGD8SHUMGWLDECLPQOZ3DZZJSW6SESKODE5SV4WNWHTUHBQ6KKLQYDHQ8O03HM11S5NX7P20QH30C9102LI7HF754799AIDNN3OQC18CD4OP938YDZCBGFSUW24IY0G8QJQRM7BIE6FVI2WNSV04S67M4JAY20C7LZXYPBAJU17TEJN1X2ONMHM2QTOYSTDDGBPWKQD3D8716WUK1FAG9KFPY44WZXI64BU1SLA8EIFV4C0DEQJJUYGE3HIKF' where id=27; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='C0I4MZG3VJFEYG3NN1WMQ4YFNKCB9X3VLF14YMK561P02VCEJT5DY69BT3X2L8TWFY3UEGO8W7MT2AL3ZW0ML9VG7XHT47HJ2FPES3JQO36QYRINFDAO7Z6AOEYWO7N3231SKTE9Q07WB7ME4R9C4LAH2GXWWFUAP3CXERVK88ZAQC0EXYUBNJPVCKK9Y79SY0P676HRIAWYYSN2S9EC1HB264G3WV2P4U2UOZXJWS8HO41NI1JVWEHH54SZRV7F3' where id=27; -update noar ti set v3='C0I4MZG3VJFEYG3NN1WMQ4YFNKCB9X3VLF14YMK561P02VCEJT5DY69BT3X2L8TWFY3UEGO8W7MT2AL3ZW0ML9VG7XHT47HJ2FPES3JQO36QYRINFDAO7Z6AOEYWO7N3231SKTE9Q07WB7ME4R9C4LAH2GXWWFUAP3CXERVK88ZAQC0EXYUBNJPVCKK9Y79SY0P676HRIAWYYSN2S9EC1HB264G3WV2P4U2UOZXJWS8HO41NI1JVWEHH54SZRV7F3' where id=27; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='1OFQBNZLWM12SWD0XSFBDNVNLEMT30TQW6B60KHOW829W8MIO6WVQLU6BRW2SEMSGQHP5T373ZXFDOKKJKEIDNKIH5YL9H6G2RBPVLU2L4ORCRU1JHKEZXO38PIK1Q2MHI2RCEZIIICPFN6RNXUXOWXAH8YFKT06HGKVNOLXEVPZCVR31XMAIK4USJ2CVMJMPW1YBCHRVTHISWU5IDB3E13TKKVMP1SYD1MIKQDT1VOMJ9YF1ITKJRM4URONRKHQS' where id=28; -update noar ti set v0='1OFQBNZLWM12SWD0XSFBDNVNLEMT30TQW6B60KHOW829W8MIO6WVQLU6BRW2SEMSGQHP5T373ZXFDOKKJKEIDNKIH5YL9H6G2RBPVLU2L4ORCRU1JHKEZXO38PIK1Q2MHI2RCEZIIICPFN6RNXUXOWXAH8YFKT06HGKVNOLXEVPZCVR31XMAIK4USJ2CVMJMPW1YBCHRVTHISWU5IDB3E13TKKVMP1SYD1MIKQDT1VOMJ9YF1ITKJRM4URONRKHQS' where id=28; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='GAWPIKDNCSV6UCW3UN6HR4JN75W5HWJZJHBTEE1WCIHNHULR7L9GOB627DMZW895ZDY1PTCLOSN8P32QMITOMKXUIRY67DJU0QZJHQTW147DAASJHWNMQB6ODOXU8EHREC7ECNZB1G9CMJS6BM9FTBCC3UI2VN4SSUAZMF0S052COEBF7DBJHC4T7NCTENF5RH8I44WU839IV1MAFWS10M2V73E4YDCT12VVDU2CPGHMY3CO93LBH053BKUB0ZG8Y' where id=28; -update noar ti set v1='GAWPIKDNCSV6UCW3UN6HR4JN75W5HWJZJHBTEE1WCIHNHULR7L9GOB627DMZW895ZDY1PTCLOSN8P32QMITOMKXUIRY67DJU0QZJHQTW147DAASJHWNMQB6ODOXU8EHREC7ECNZB1G9CMJS6BM9FTBCC3UI2VN4SSUAZMF0S052COEBF7DBJHC4T7NCTENF5RH8I44WU839IV1MAFWS10M2V73E4YDCT12VVDU2CPGHMY3CO93LBH053BKUB0ZG8Y' where id=28; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='5HGPJMITE8NL7NQWI69Q12P9QSCHAQ3WM6Z61YF69VDWSBBG2SS7LR7E6RRTI0IRDEHKP8LWVDAYNYM3FA9OK5EQEPRK53CAFWUSFVOJEGVK28363NJTY7JQPGSKT3LZB7CKLVBNF5C1EP5PPBGLAUTNX5GW9YR27TV0RYEX1SV0HJA7Q7C4IA8QQ4AWLX5GSRABN7LEWSN4NN0XQEOBNY24NFC2UQSNVOK1DJ3CX2RMYB9L2N54IVXMKQHQPRLGV' where id=28; -update noar ti set v2='5HGPJMITE8NL7NQWI69Q12P9QSCHAQ3WM6Z61YF69VDWSBBG2SS7LR7E6RRTI0IRDEHKP8LWVDAYNYM3FA9OK5EQEPRK53CAFWUSFVOJEGVK28363NJTY7JQPGSKT3LZB7CKLVBNF5C1EP5PPBGLAUTNX5GW9YR27TV0RYEX1SV0HJA7Q7C4IA8QQ4AWLX5GSRABN7LEWSN4NN0XQEOBNY24NFC2UQSNVOK1DJ3CX2RMYB9L2N54IVXMKQHQPRLGV' where id=28; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='GXFUU3JKG2XI92GHLAU8WQY8CEIN0TY2PZ66O7NA4LZ2TVSZJC2JLBKCAI7SH2HSZP7GJQ43SQRTU18WCUZG6RA1USKCEHHKIAMAF20WPIA1YBZ979KGUIG2HD0QB4N21BWC89XN7B57ZT2HSYMWS14IOJTAM4UO9EK7GP9E6UAECZATLT30AU58XQ291KCT6GRUDXWXFZY2J2X366NGQHYOWQ8C0GOCHC252KG37IEQTUHIX6SS27CLS4GOCMX8H' where id=28; -update noar ti set v3='GXFUU3JKG2XI92GHLAU8WQY8CEIN0TY2PZ66O7NA4LZ2TVSZJC2JLBKCAI7SH2HSZP7GJQ43SQRTU18WCUZG6RA1USKCEHHKIAMAF20WPIA1YBZ979KGUIG2HD0QB4N21BWC89XN7B57ZT2HSYMWS14IOJTAM4UO9EK7GP9E6UAECZATLT30AU58XQ291KCT6GRUDXWXFZY2J2X366NGQHYOWQ8C0GOCHC252KG37IEQTUHIX6SS27CLS4GOCMX8H' where id=28; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='5K63XUEFQTPX5H2T0IKFAJMAEKAZHSSSVXKPO2KEV9HKCBUV3XKT3VJ3LX9TU6GT9Y4Q9G472AFQ5HIIPUB0VR5CZ9D1FU3673OWW114HIZDXWDTR4H29D1EFSBRG1X7XF67GDLBN4MY64R98JBZBA5K86LGWE8G0O5BYVCSSEXXLP9KYESI4YK8TAOSLP5UEXX8IIWW5J6YXIQFP2AH7G0WGGZWC181NHQK0G2D9BVNWTMBHIS8ZZNLQSIUNMCYJ' where id=29; -update noar ti set v0='5K63XUEFQTPX5H2T0IKFAJMAEKAZHSSSVXKPO2KEV9HKCBUV3XKT3VJ3LX9TU6GT9Y4Q9G472AFQ5HIIPUB0VR5CZ9D1FU3673OWW114HIZDXWDTR4H29D1EFSBRG1X7XF67GDLBN4MY64R98JBZBA5K86LGWE8G0O5BYVCSSEXXLP9KYESI4YK8TAOSLP5UEXX8IIWW5J6YXIQFP2AH7G0WGGZWC181NHQK0G2D9BVNWTMBHIS8ZZNLQSIUNMCYJ' where id=29; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='82MZVZTCME90GI3WF4SLY9V6J7KLUKCBDYSEZAXZZKL9PTT149R2WOA201L74YUTPNQTJABKNOIX17TG5L8FR0NOCQQT3R4XFTBAM4EDO8LCRRWQR7B8QY8E74PPMC7YYEJGFNUG6ADARWDMLKWKZOU8VFIK6AEN6OQQ4A01VH3S4VLEOBCEJRT5D1UTUXVFAZPVR8TD7FX05XX1VBR9NN6QAHR7XTI8R6ED1A3LOCKN5MBUW46IONAAM27Q4V5G3' where id=29; -update noar ti set v1='82MZVZTCME90GI3WF4SLY9V6J7KLUKCBDYSEZAXZZKL9PTT149R2WOA201L74YUTPNQTJABKNOIX17TG5L8FR0NOCQQT3R4XFTBAM4EDO8LCRRWQR7B8QY8E74PPMC7YYEJGFNUG6ADARWDMLKWKZOU8VFIK6AEN6OQQ4A01VH3S4VLEOBCEJRT5D1UTUXVFAZPVR8TD7FX05XX1VBR9NN6QAHR7XTI8R6ED1A3LOCKN5MBUW46IONAAM27Q4V5G3' where id=29; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='TX7ZSXD0M8HEHB1Y8HQ2SXU6AI28RXM8NDRWZ50RSUMA388ACS7VCNEBLDVPC0CYKVW5SFZ065VRQP6MN5DMOKPTCNDWDKPYFEED1OOX59A5FNUIN7WU3RF24HPB6U2P8KL7GUC9GQGFV94VETGRROIHOYI1FDZUDGFHT1FLBULOCMYQEHDHYJQ9CJNLM8IWMUGD0FGMEMT12R5MSPHZGO590ML82TUM20H08GVETBWHO0I4XR9CXPOMGZIVQN8V4' where id=29; -update noar ti set v2='TX7ZSXD0M8HEHB1Y8HQ2SXU6AI28RXM8NDRWZ50RSUMA388ACS7VCNEBLDVPC0CYKVW5SFZ065VRQP6MN5DMOKPTCNDWDKPYFEED1OOX59A5FNUIN7WU3RF24HPB6U2P8KL7GUC9GQGFV94VETGRROIHOYI1FDZUDGFHT1FLBULOCMYQEHDHYJQ9CJNLM8IWMUGD0FGMEMT12R5MSPHZGO590ML82TUM20H08GVETBWHO0I4XR9CXPOMGZIVQN8V4' where id=29; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='AFFXMSGVOOAZY8MZ9DSZUJE6OBIL0OF10EUA3P2WT4LU22BMPBGIGLQHU3D51QREHVS7R8NNAWG4IDEWM11AT17712HR95B633HKGZ7MRJ9WC3UJDETPRBA5KYSKCWSFS32PSQ8CXT9A5VYFQHS9FBZGGUYIL9SPX1ZD7QK6Y1AL3B3OL2KEIZTGT1VSQ5FZ492FL0G10GP8NT6WUKJU325I47XSCZD24WDRQOLZ8OBM1V7YSFCKN4P8ZWCHH2CLU' where id=29; -update noar ti set v3='AFFXMSGVOOAZY8MZ9DSZUJE6OBIL0OF10EUA3P2WT4LU22BMPBGIGLQHU3D51QREHVS7R8NNAWG4IDEWM11AT17712HR95B633HKGZ7MRJ9WC3UJDETPRBA5KYSKCWSFS32PSQ8CXT9A5VYFQHS9FBZGGUYIL9SPX1ZD7QK6Y1AL3B3OL2KEIZTGT1VSQ5FZ492FL0G10GP8NT6WUKJU325I47XSCZD24WDRQOLZ8OBM1V7YSFCKN4P8ZWCHH2CLU' where id=29; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='AVZOVTI3F9H67KQ1NLFI0OMIEH0R1KI9M3HHH4GRT1M4W5539BLOVTUX8NA86O2IYOF56L1JDPC6C6YPTMAXBDAMAWL4IU7CCJPYUU65CO1EJOSD9C23FB7383RPRE2XYRUUS1TXCARLGEL5PMQLHE8HQKFQYGIGU0N80AEN6X4FCI9X3QGAY256O325F5Y9OH6RBG6GY97T84LXJHRKEW0OTWJN1BH2USMV0F0YFR06GWA2AALYUHX82DEIA0CKM' where id=30; -update noar ti set v0='AVZOVTI3F9H67KQ1NLFI0OMIEH0R1KI9M3HHH4GRT1M4W5539BLOVTUX8NA86O2IYOF56L1JDPC6C6YPTMAXBDAMAWL4IU7CCJPYUU65CO1EJOSD9C23FB7383RPRE2XYRUUS1TXCARLGEL5PMQLHE8HQKFQYGIGU0N80AEN6X4FCI9X3QGAY256O325F5Y9OH6RBG6GY97T84LXJHRKEW0OTWJN1BH2USMV0F0YFR06GWA2AALYUHX82DEIA0CKM' where id=30; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='5T4TFDF7T34PGBMBAYVW42LB2Q8Y3FHKFJEVA4QFEAYDF4XH23D91S26B5B0WQLOO2P28PUFQ8PKML3SYVPLXEXNWJZ5UJUA1M6UU6AJGWSHULZKU0RR7JI1ULP8X6RTJRI5QJLASMGHTQW664QGDNQ8QGM5B0RV887QJ8GLLN5GJNQTO9H3EE4QM22ROOOXE8BAU5C1V45Q64P0OSZI4XEJPSIU3Z4INI1GK109SBWFQSY6UU1U06CP2534DJ4NN' where id=30; -update noar ti set v1='5T4TFDF7T34PGBMBAYVW42LB2Q8Y3FHKFJEVA4QFEAYDF4XH23D91S26B5B0WQLOO2P28PUFQ8PKML3SYVPLXEXNWJZ5UJUA1M6UU6AJGWSHULZKU0RR7JI1ULP8X6RTJRI5QJLASMGHTQW664QGDNQ8QGM5B0RV887QJ8GLLN5GJNQTO9H3EE4QM22ROOOXE8BAU5C1V45Q64P0OSZI4XEJPSIU3Z4INI1GK109SBWFQSY6UU1U06CP2534DJ4NN' where id=30; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='D1LGNVY0XEFYZTJPO54TLVNQWOQOOCFS6KH8L7GDNCGVOOIH9H51QAF0OM3ZS2IMNCVTZALSKRA2BZX10DHT5KOCRMF1DN9GHUWF6FUNQCLEL1YJBNNM95JXM3V80MD37FCOJDMDJYZR0685YEUT9T1I4MV2B7AKISGIF367F40LLR1ASMDX2DK46G05SC725369I2ZLJ15CDM0LISR58FUIIMSETQAGAC3NEXS4CVLWZYOQJHUHCQAQ1MCFLRQTC' where id=30; -update noar ti set v2='D1LGNVY0XEFYZTJPO54TLVNQWOQOOCFS6KH8L7GDNCGVOOIH9H51QAF0OM3ZS2IMNCVTZALSKRA2BZX10DHT5KOCRMF1DN9GHUWF6FUNQCLEL1YJBNNM95JXM3V80MD37FCOJDMDJYZR0685YEUT9T1I4MV2B7AKISGIF367F40LLR1ASMDX2DK46G05SC725369I2ZLJ15CDM0LISR58FUIIMSETQAGAC3NEXS4CVLWZYOQJHUHCQAQ1MCFLRQTC' where id=30; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='87QKFKTUOM8OEINHO3ZLKFT3TROZF7LOBGX0F40EULIUCQUUUZB307SSLF266R49M8MJ8QM5J6DLYB0RV7KNVG1CONR4OP89LZS3A12COGA2CZIE57FFPT5U12T68BQY4HEKLBCAJOPF8H0X89OFYIRCCJDM0HBWBP6ZSIEYGN4LFF9U2DICMCKYLVZJHUBNHNA4WQGSQ2C2FCP6QX0K2IC2XCCZHBUQ3ZF9RMG9JZVGVID2LDPKRAP3EO0CB69EG' where id=30; -update noar ti set v3='87QKFKTUOM8OEINHO3ZLKFT3TROZF7LOBGX0F40EULIUCQUUUZB307SSLF266R49M8MJ8QM5J6DLYB0RV7KNVG1CONR4OP89LZS3A12COGA2CZIE57FFPT5U12T68BQY4HEKLBCAJOPF8H0X89OFYIRCCJDM0HBWBP6ZSIEYGN4LFF9U2DICMCKYLVZJHUBNHNA4WQGSQ2C2FCP6QX0K2IC2XCCZHBUQ3ZF9RMG9JZVGVID2LDPKRAP3EO0CB69EG' where id=30; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='QRQ8AHXI58TE4YCNUXJP977CTS6XUNAI1HPFCVBWDU9SJX0BV5I6JGJUO07S8Q0KA0P2FAWX5SWECS1S51PCPYHPMW6VX9ERG3XVTOGYE7LIX1XFB8X8EHC8LGZS049I9HEK77NEBSC012PDBUY2X8HBCHTJ6D2NPZFZKCXOIOEZOF5307J34V2TAII5N97J394D67A2Q89ZLI1Z2QI08S7ESPU5BJPJZIPLV2I1IMQVJKWR787EAATXSTA7AEN4E' where id=31; -update noar ti set v0='QRQ8AHXI58TE4YCNUXJP977CTS6XUNAI1HPFCVBWDU9SJX0BV5I6JGJUO07S8Q0KA0P2FAWX5SWECS1S51PCPYHPMW6VX9ERG3XVTOGYE7LIX1XFB8X8EHC8LGZS049I9HEK77NEBSC012PDBUY2X8HBCHTJ6D2NPZFZKCXOIOEZOF5307J34V2TAII5N97J394D67A2Q89ZLI1Z2QI08S7ESPU5BJPJZIPLV2I1IMQVJKWR787EAATXSTA7AEN4E' where id=31; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='Z21OH7P1L8ZJDXU6YVO2124I51YBBUKUJT8Z3PQRHP03X2N2OYTS1SSNRHFFJGCNC4GIBBM2J036FIWHYYZ77ZNYFE2OND3CGX99SPNB3AT7PJHLJ9L5E6N9YXM9OMTNLMRSTYQJWFA4YVHU116UKNDH0QMBEHSZVBFNBHFI7XZEUE580LMOPTTF4BHD77IKMIUY17VCGX5WPS4SYNP1ODIZZAXYOKCRJ9IOFGN05I4NFGIO1CHD9ZYL045BRDCRC' where id=31; -update noar ti set v1='Z21OH7P1L8ZJDXU6YVO2124I51YBBUKUJT8Z3PQRHP03X2N2OYTS1SSNRHFFJGCNC4GIBBM2J036FIWHYYZ77ZNYFE2OND3CGX99SPNB3AT7PJHLJ9L5E6N9YXM9OMTNLMRSTYQJWFA4YVHU116UKNDH0QMBEHSZVBFNBHFI7XZEUE580LMOPTTF4BHD77IKMIUY17VCGX5WPS4SYNP1ODIZZAXYOKCRJ9IOFGN05I4NFGIO1CHD9ZYL045BRDCRC' where id=31; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='Y57CQVM37ND2CY1PFONY4AOFEQ0ADDUY02CR5NP90PW9YCF2JQGIEU580793NP4XNXWCBRPGYVT1IPNWC6FGWFBVM3GZKZQTPZXRJ4H0FAIK29HW72OQBR60IJGY89GM31BEBLHJ9RBJY88078BL5RCEIY92LLQ8NN2F6MV1T6AAQUHXSLOJLW7EDX6RXC18KJE960BADGP85A82PE1GCT95UREIKHU8RZG2HI725WXZKLN2BBWTF3VVHWSW9AJI5' where id=31; -update noar ti set v2='Y57CQVM37ND2CY1PFONY4AOFEQ0ADDUY02CR5NP90PW9YCF2JQGIEU580793NP4XNXWCBRPGYVT1IPNWC6FGWFBVM3GZKZQTPZXRJ4H0FAIK29HW72OQBR60IJGY89GM31BEBLHJ9RBJY88078BL5RCEIY92LLQ8NN2F6MV1T6AAQUHXSLOJLW7EDX6RXC18KJE960BADGP85A82PE1GCT95UREIKHU8RZG2HI725WXZKLN2BBWTF3VVHWSW9AJI5' where id=31; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='PIDO3T1LWRLTSCJJ6L5JFGN4LLZ5MNWES59153PNS7133YXCQCFZRAOV6XHAEFVEOXGNSIVFZEA7299SE4PQ3ZDJERC6AHLQHQK0HAUOA3E73KCLJS8HSMDRG6VO60JR1GXWOEANVGSOCF6OJS7XXQUAEZX8NEOMYKTNGOA10C45MNYKDRTFY0IAPSLDFCJNL3Y36SALB6FQJOTYQS7653RRUW2ZVCB2N8RCC6SBP7NI92TXUVNW41MY07O8VTN42' where id=31; -update noar ti set v3='PIDO3T1LWRLTSCJJ6L5JFGN4LLZ5MNWES59153PNS7133YXCQCFZRAOV6XHAEFVEOXGNSIVFZEA7299SE4PQ3ZDJERC6AHLQHQK0HAUOA3E73KCLJS8HSMDRG6VO60JR1GXWOEANVGSOCF6OJS7XXQUAEZX8NEOMYKTNGOA10C45MNYKDRTFY0IAPSLDFCJNL3Y36SALB6FQJOTYQS7653RRUW2ZVCB2N8RCC6SBP7NI92TXUVNW41MY07O8VTN42' where id=31; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='3THSCOYLJ4BYEYIMJP04PRX4X56JG055WG81CPI9RV614ANAS33XZOMSFL3ROCRO9CX7WDKNO3WSGXUEUDUA26HH0XH1F83UZFW9HGI3694MPA0QNYHQL3D804U1AV0ZS9Y6N2A6Q66ZO2QQDM2XTWN87RW2GU6U051L9UY8IYUR7ASNQZOPYNKIMXCVDD9F1DP107VOUGOLSL3Q157LOZ4CZJM1KPE1HNYDZ1YN31D35E69ZBZ0ZNU930GZ0YDYM' where id=32; -update noar ti set v0='3THSCOYLJ4BYEYIMJP04PRX4X56JG055WG81CPI9RV614ANAS33XZOMSFL3ROCRO9CX7WDKNO3WSGXUEUDUA26HH0XH1F83UZFW9HGI3694MPA0QNYHQL3D804U1AV0ZS9Y6N2A6Q66ZO2QQDM2XTWN87RW2GU6U051L9UY8IYUR7ASNQZOPYNKIMXCVDD9F1DP107VOUGOLSL3Q157LOZ4CZJM1KPE1HNYDZ1YN31D35E69ZBZ0ZNU930GZ0YDYM' where id=32; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='J184FP5EE2BUC0EKCI70N3KL2HTW25CIJ91GXH40BAHY2LHEQIWUVGWQOFX7Z8A4P7ZEP0LR5LDC62OBLSZD05OYIS2KRJ91A6Q6Q8L3PSA7W62QT6HJ18LQ8IH2AXS4NDFZCAH6YS2Q87U7XBBQISQ43DFO3WG8II9OMDWBZ7NM2F2QEZ2FZIVKS2U5CDJF4OELNO9348WRNT8BD9NH0DR7FKPNMJPWKFH1BNM0X12S54M2YHYXIOWASJ12OEGKY' where id=32; -update noar ti set v1='J184FP5EE2BUC0EKCI70N3KL2HTW25CIJ91GXH40BAHY2LHEQIWUVGWQOFX7Z8A4P7ZEP0LR5LDC62OBLSZD05OYIS2KRJ91A6Q6Q8L3PSA7W62QT6HJ18LQ8IH2AXS4NDFZCAH6YS2Q87U7XBBQISQ43DFO3WG8II9OMDWBZ7NM2F2QEZ2FZIVKS2U5CDJF4OELNO9348WRNT8BD9NH0DR7FKPNMJPWKFH1BNM0X12S54M2YHYXIOWASJ12OEGKY' where id=32; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='TFZOGN64WWC93TFQ5W7L421WBUZ99W55VRJ9AYXJEHE7SCE1EEHHAYP9GXATCMC78JMLN90PSM7NPCLTH09DWSHZ90Y6NPYDQ1NXWR7UB8DKS0VCVY4207OXI3C0HV2UB1GK5HVC61JNAWYZ3GJ59XYMR1NT3191NSGIZLKR5EZG9RRTCDIIFIR1AOX97QR7ONGRXCFAA7SO0VXAIMP3R9P9LDGT07POOSXRSUM4AH5WKTCLYEVSAT4INWIIDFLPH' where id=32; -update noar ti set v2='TFZOGN64WWC93TFQ5W7L421WBUZ99W55VRJ9AYXJEHE7SCE1EEHHAYP9GXATCMC78JMLN90PSM7NPCLTH09DWSHZ90Y6NPYDQ1NXWR7UB8DKS0VCVY4207OXI3C0HV2UB1GK5HVC61JNAWYZ3GJ59XYMR1NT3191NSGIZLKR5EZG9RRTCDIIFIR1AOX97QR7ONGRXCFAA7SO0VXAIMP3R9P9LDGT07POOSXRSUM4AH5WKTCLYEVSAT4INWIIDFLPH' where id=32; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='U3Z9HUXGOBW8B82L7952O4W0JW67ZCJVMSQ10QJZONBNI4HMMTYRBDFAFEOTBX4WAJ1AU89I3XGJ6TJNJDDEQCUZ1YCV27F1QDV78TWK00TYESKNR5CKA25XUNX02U4NDUZBQG3B6RKPTBYQ9CA73J1B5KSUHJE7HDLXHORAV589S3DMPOMNZATHWBS5QFBT1VK8P3RN1TGNQ2TSH7N1QP3F1CZOMLZZJOY61ZOD4FLXKKRRR1KZJH6YFDT0R9IMZ' where id=32; -update noar ti set v3='U3Z9HUXGOBW8B82L7952O4W0JW67ZCJVMSQ10QJZONBNI4HMMTYRBDFAFEOTBX4WAJ1AU89I3XGJ6TJNJDDEQCUZ1YCV27F1QDV78TWK00TYESKNR5CKA25XUNX02U4NDUZBQG3B6RKPTBYQ9CA73J1B5KSUHJE7HDLXHORAV589S3DMPOMNZATHWBS5QFBT1VK8P3RN1TGNQ2TSH7N1QP3F1CZOMLZZJOY61ZOD4FLXKKRRR1KZJH6YFDT0R9IMZ' where id=32; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='XSKXM40W4WOTXYCA6UR8GS2ERD5N8W7QQT6BB404HXXPBDMMTKJGSOHILWLD4D7QC7VUPLASC5NWBY3X8W36IK5DU7RJ6OHMYVYF1C2H9WVQUR1AYNM0XFZIR11167Q57RGMX2J0SPFR56QPPKI2PRJJ5ZVK3DIX5UVWVU1V9NNN20Z31GMYD0XFNUF1J4HBFISU1HC8LX27E9YQDUZFZSJLR42KTQVGI6Q7RO0EOHDZFO39F81RYODOVFQHMJ47T' where id=33; -update noar ti set v0='XSKXM40W4WOTXYCA6UR8GS2ERD5N8W7QQT6BB404HXXPBDMMTKJGSOHILWLD4D7QC7VUPLASC5NWBY3X8W36IK5DU7RJ6OHMYVYF1C2H9WVQUR1AYNM0XFZIR11167Q57RGMX2J0SPFR56QPPKI2PRJJ5ZVK3DIX5UVWVU1V9NNN20Z31GMYD0XFNUF1J4HBFISU1HC8LX27E9YQDUZFZSJLR42KTQVGI6Q7RO0EOHDZFO39F81RYODOVFQHMJ47T' where id=33; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='MVO00J3SZNMRUIL2S0LQEDY9BXD82WI8G9CECGZJTF7K9ZF2H0EMNHRYCN3BP6IY5SVAK95VD47OUPKK9KY9N86RCANP10KSAKNZ8NGE93IHO2C2KVMF3BKFSWQOYKGG5M2SFU30UYR81E0SMTV1FN1SDPPX3B0X4NAY7C2V4Y3WJ6PB74KD4Y79V6COMG5RBHU4AUHXDDESA0WBS8ZRO5YHCTW5D5T6NUFD4RXEBKAV35KNB43PWRFC3QL5DCTV6' where id=33; -update noar ti set v1='MVO00J3SZNMRUIL2S0LQEDY9BXD82WI8G9CECGZJTF7K9ZF2H0EMNHRYCN3BP6IY5SVAK95VD47OUPKK9KY9N86RCANP10KSAKNZ8NGE93IHO2C2KVMF3BKFSWQOYKGG5M2SFU30UYR81E0SMTV1FN1SDPPX3B0X4NAY7C2V4Y3WJ6PB74KD4Y79V6COMG5RBHU4AUHXDDESA0WBS8ZRO5YHCTW5D5T6NUFD4RXEBKAV35KNB43PWRFC3QL5DCTV6' where id=33; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='7TR96M5M7G1QKYIEU7VF5L9O3KQ49X5KBO6EW748DH0ISCJJQWR62CXIDFSMO4I6H1PBTXOOPUEASNZC7GF2681H1ZDWBR22KGPDSX35DIJWOWTEDN826QC98MZTNX3LZNDLU5SYLPUYUTNRJHEVFYNMDAZX1WBH0XP1TKD5VPTRGVOD9M6Y4MDB5C3NR1JYUZ625KDRLJ0AU39A562W5DLF31JXUG7GWWPVJYWDA8GI174HKWN0800YFIPQKG0WV' where id=33; -update noar ti set v2='7TR96M5M7G1QKYIEU7VF5L9O3KQ49X5KBO6EW748DH0ISCJJQWR62CXIDFSMO4I6H1PBTXOOPUEASNZC7GF2681H1ZDWBR22KGPDSX35DIJWOWTEDN826QC98MZTNX3LZNDLU5SYLPUYUTNRJHEVFYNMDAZX1WBH0XP1TKD5VPTRGVOD9M6Y4MDB5C3NR1JYUZ625KDRLJ0AU39A562W5DLF31JXUG7GWWPVJYWDA8GI174HKWN0800YFIPQKG0WV' where id=33; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='EX850XK9PKFSCD03YP9U2ZR2KEVT4GLUMP1TQSVJI5P85E2JLHYLDSRX85CJFE1K2RB9VPGVDJ4RWU7F46UIRR25BZW9LWKCQHJWCEKU0SKOUP9DH9765XPBRUF8QNORZ54YXSG8RNERD3ZUHRR1QZ0UPOIXBAUD74ILFVOJSKJA54V85OU87ZPY8ESZPET2SYAP96L2N3DI7SJQV8AZ379F3FCFF42W7ZXBLFNJKXQARXGQXUVTUA9Y26WIQG5DJ' where id=33; -update noar ti set v3='EX850XK9PKFSCD03YP9U2ZR2KEVT4GLUMP1TQSVJI5P85E2JLHYLDSRX85CJFE1K2RB9VPGVDJ4RWU7F46UIRR25BZW9LWKCQHJWCEKU0SKOUP9DH9765XPBRUF8QNORZ54YXSG8RNERD3ZUHRR1QZ0UPOIXBAUD74ILFVOJSKJA54V85OU87ZPY8ESZPET2SYAP96L2N3DI7SJQV8AZ379F3FCFF42W7ZXBLFNJKXQARXGQXUVTUA9Y26WIQG5DJ' where id=33; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='SFHI9NDE9KJTS2PR3WAOGITVL3O5XC2D6EZGGQS0GAPE879RKWEKMN5JO7GIHY6GAZE77P2HOXF7DCG39XU3HG7HYOQK4XULG9YY1EW5GVHL3IVJJ7HV5NLRJ13KE284G7C7SO69XH7V0KPE3X0S5ADF93QPRAZRQ9T75SOCM2UKTPWY5JDHBI3HJ5W8DHK9MC15VVEZTO7W1417T5JTI307B5EP80OX1LRIT5U6L0EHG35I40YSRTTDF4OIL3MW5' where id=34; -update noar ti set v0='SFHI9NDE9KJTS2PR3WAOGITVL3O5XC2D6EZGGQS0GAPE879RKWEKMN5JO7GIHY6GAZE77P2HOXF7DCG39XU3HG7HYOQK4XULG9YY1EW5GVHL3IVJJ7HV5NLRJ13KE284G7C7SO69XH7V0KPE3X0S5ADF93QPRAZRQ9T75SOCM2UKTPWY5JDHBI3HJ5W8DHK9MC15VVEZTO7W1417T5JTI307B5EP80OX1LRIT5U6L0EHG35I40YSRTTDF4OIL3MW5' where id=34; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='DEDJUM3SPXGT7PQTR99G8UAZNVI4QMJPTUS3G8IBVA91RKY0UKFHPIMBO8XJG79Z4UROWSO68S5V4AL5ZBWYIK31E1N94XC2WRFU8G6SAWF1B78A98E28VYOCC88G3S4NZ52Z3Y49L74NCHKF89KYJDKGKC6OP34IA1ZIVJJ796UMPNYZCBELIPR4XNOYXGBDS5AZYSBFB3FI9J6D3TAHZEXRN6RUNQZSUMLLJQZ3Q7ACW44GC1UB4WWMP7U2NGH8' where id=34; -update noar ti set v1='DEDJUM3SPXGT7PQTR99G8UAZNVI4QMJPTUS3G8IBVA91RKY0UKFHPIMBO8XJG79Z4UROWSO68S5V4AL5ZBWYIK31E1N94XC2WRFU8G6SAWF1B78A98E28VYOCC88G3S4NZ52Z3Y49L74NCHKF89KYJDKGKC6OP34IA1ZIVJJ796UMPNYZCBELIPR4XNOYXGBDS5AZYSBFB3FI9J6D3TAHZEXRN6RUNQZSUMLLJQZ3Q7ACW44GC1UB4WWMP7U2NGH8' where id=34; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='U91REXQP9SQ1RKRPN2RUD73T4C6V95Q9UWP7AQEE6OW44YQUBZ297B599C2TTF61SCTMEYOVWQB4FP4P9I0PDTSLKNXJ3RURNZB6LQF85ZCEP4ET6OEGSRT7QCFVPTXXL3W2XAVCBHLUTTTD6KUM9U490DB1LU9OX2CZST8PRHDSRZ6OE4INQ4DFFYYYQXQDKBTBAN5G2BK4XOXIMEX2DWYMI3JS3G55JT38AY5K5S7TTZEY2V8LA9WVJ2KJEYU84' where id=34; -update noar ti set v2='U91REXQP9SQ1RKRPN2RUD73T4C6V95Q9UWP7AQEE6OW44YQUBZ297B599C2TTF61SCTMEYOVWQB4FP4P9I0PDTSLKNXJ3RURNZB6LQF85ZCEP4ET6OEGSRT7QCFVPTXXL3W2XAVCBHLUTTTD6KUM9U490DB1LU9OX2CZST8PRHDSRZ6OE4INQ4DFFYYYQXQDKBTBAN5G2BK4XOXIMEX2DWYMI3JS3G55JT38AY5K5S7TTZEY2V8LA9WVJ2KJEYU84' where id=34; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='F7RBP3Q9ETJEVGBKI7B699NRJ08Q6X6D0V7A42NR5FD6G64GEZ3YKMQTVH5TOE46Q1HG6JIACDDDGED2WGJU18KAI4UHIOMC5WGMLLI1NJQF6IKG0CQH67A5ZC3BHAWM1ON55CDQHKCXYSD5YMTDRQP2QM46L8DRHAZGMVVM2E573OMM3Q376JY7ACLPD98DTPNEGWF5P79CKV2HBEI58LLGGC3DLO9IXK96PQ9NCU5T4TMXJ4TQBWFDXGG23Q58T' where id=34; -update noar ti set v3='F7RBP3Q9ETJEVGBKI7B699NRJ08Q6X6D0V7A42NR5FD6G64GEZ3YKMQTVH5TOE46Q1HG6JIACDDDGED2WGJU18KAI4UHIOMC5WGMLLI1NJQF6IKG0CQH67A5ZC3BHAWM1ON55CDQHKCXYSD5YMTDRQP2QM46L8DRHAZGMVVM2E573OMM3Q376JY7ACLPD98DTPNEGWF5P79CKV2HBEI58LLGGC3DLO9IXK96PQ9NCU5T4TMXJ4TQBWFDXGG23Q58T' where id=34; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='KIPBKOWZ4H7RA8175AZW3BRYL8H8HIR79KGQRTJDR4CCMDPK1LTP4I20U0KKXUGPX3S0PORGQMZCZFUP5267YFPMTWXIA5ZBL97YZH6VYLZKNMQGXBW6RLUSDHDN93TJHA9XA34PLZ5L1U204DC3S4I9ZEM3MAGWUTBG7CZAE0P2026VV6B095CCWZF1PB5EFPP0LN6VOAIPPGG807YOPALTXNT19K9M9126RMXJIVC4IB0PB5W6PNBPZ5J5B1U2X' where id=35; -update noar ti set v0='KIPBKOWZ4H7RA8175AZW3BRYL8H8HIR79KGQRTJDR4CCMDPK1LTP4I20U0KKXUGPX3S0PORGQMZCZFUP5267YFPMTWXIA5ZBL97YZH6VYLZKNMQGXBW6RLUSDHDN93TJHA9XA34PLZ5L1U204DC3S4I9ZEM3MAGWUTBG7CZAE0P2026VV6B095CCWZF1PB5EFPP0LN6VOAIPPGG807YOPALTXNT19K9M9126RMXJIVC4IB0PB5W6PNBPZ5J5B1U2X' where id=35; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='R3JNMLP698KMVOFVH938MTOIHXUF70QGJYNU8O3L7SCLT7U5DLY6ZYC02WE1N9KG95JND2YTA47EJYRX23NNKQ58WI7Y7U8XKPTRB7MDN51Q8P3Q85V853TQWW5DEO7FAY1PQI1N89CXTJK0FU6FI247BCD2TENU2HXOGY3RGK3A9L9CMYKR64UTT702123V7OEYJE1GGWVV1RM9Y5QAYWLUPXCA42R8F0SPGL9E8JH3Y8FX6GPM1LWHRE048OS5Y' where id=35; -update noar ti set v1='R3JNMLP698KMVOFVH938MTOIHXUF70QGJYNU8O3L7SCLT7U5DLY6ZYC02WE1N9KG95JND2YTA47EJYRX23NNKQ58WI7Y7U8XKPTRB7MDN51Q8P3Q85V853TQWW5DEO7FAY1PQI1N89CXTJK0FU6FI247BCD2TENU2HXOGY3RGK3A9L9CMYKR64UTT702123V7OEYJE1GGWVV1RM9Y5QAYWLUPXCA42R8F0SPGL9E8JH3Y8FX6GPM1LWHRE048OS5Y' where id=35; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='YB1OGOHUMM19PPZ0O81KO52J44MW3F74T09SDV2AGQ0G1WSH2IWTVLN9MFZ55Q0LCGYA4A73ZGLG49IB7MAGLUQ0XN591K0XHYA4ENBF7XH24GVRKC5V70URJV7VQ8AN7Y92JPF8AZHO8H2URLXTVE6T02REGMJNTNX5PM5G04R8DA33EOJV1J79F4MF8EZCN16BIJXO5WPLHI0Z4111RIU4MQI3IWSGF6L3CX0H2AKOZUA9VF5R3KSRRXGVOBZ7H' where id=35; -update noar ti set v2='YB1OGOHUMM19PPZ0O81KO52J44MW3F74T09SDV2AGQ0G1WSH2IWTVLN9MFZ55Q0LCGYA4A73ZGLG49IB7MAGLUQ0XN591K0XHYA4ENBF7XH24GVRKC5V70URJV7VQ8AN7Y92JPF8AZHO8H2URLXTVE6T02REGMJNTNX5PM5G04R8DA33EOJV1J79F4MF8EZCN16BIJXO5WPLHI0Z4111RIU4MQI3IWSGF6L3CX0H2AKOZUA9VF5R3KSRRXGVOBZ7H' where id=35; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='0O9FEN1NI7VV3MCX55WT0W4HV2MTA78ZJDSEXYZWHS4ARLW5YJYMCHBSSKD4DBTMIVGEHR1HNPBUGDSJE8QWS6I86764YV7JHK97F1K3IDG5A700IWPM720C5KSEXR2HHRHYAOA8ERV23XHAJN8M5SS9GLOWIM37TJAULKI8VPR5RFS04PFFJT9AUDCC0BW78YGISCB7LBQW0BZWJBSORJA64R4781YND58JEBKG8TN7KAZFQC3OQRNWS89QX78W5' where id=35; -update noar ti set v3='0O9FEN1NI7VV3MCX55WT0W4HV2MTA78ZJDSEXYZWHS4ARLW5YJYMCHBSSKD4DBTMIVGEHR1HNPBUGDSJE8QWS6I86764YV7JHK97F1K3IDG5A700IWPM720C5KSEXR2HHRHYAOA8ERV23XHAJN8M5SS9GLOWIM37TJAULKI8VPR5RFS04PFFJT9AUDCC0BW78YGISCB7LBQW0BZWJBSORJA64R4781YND58JEBKG8TN7KAZFQC3OQRNWS89QX78W5' where id=35; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='IM8QDXKPVPXKT89A31YI38PGPHQ35TCMVCEB0GV2VRP7T25GC6EG7K8PG9KBLYSE07SVVFHI8GS2AQOHDPRKF6IYWG4737SUQ19CPTXX5W2AHH9LQLS4R5PPODSDDXQXL5QYWKGAJS6DGQR8F5G2WLB8NUI1TESITLG1IGI4HEF013K842XL7EFCD9FS7Q4E23REDCY36OYM0W9Z7CJH3EFSWA5B99H3XULZCFPFRP0ISAW1MQJFB61VL0YHDZYQD' where id=36; -update noar ti set v0='IM8QDXKPVPXKT89A31YI38PGPHQ35TCMVCEB0GV2VRP7T25GC6EG7K8PG9KBLYSE07SVVFHI8GS2AQOHDPRKF6IYWG4737SUQ19CPTXX5W2AHH9LQLS4R5PPODSDDXQXL5QYWKGAJS6DGQR8F5G2WLB8NUI1TESITLG1IGI4HEF013K842XL7EFCD9FS7Q4E23REDCY36OYM0W9Z7CJH3EFSWA5B99H3XULZCFPFRP0ISAW1MQJFB61VL0YHDZYQD' where id=36; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='17QBE7POFBXNMYBLU63YH9QNL6KGBWYQGUNN6W9JXAVS89OBJY9EQEJ5T1CS0M45A1JH4HCBFE97F0G0L5UA29OI3EX3GHDJ8EOB2DUXRKMNIGU7SWEGTRVMYYDBMP500JMNYI8261H19D0B992K1CE1L9PKUVSYBDNJHUTX34SUJ1TJX0ZBJKB0OSYOJ79WKXVOB4YIPIXAMB1Z9TRTDTZ2FT71THDF1R4B98HBCG23P57ZW6NMQ5MOMFSLPYBGE' where id=36; -update noar ti set v1='17QBE7POFBXNMYBLU63YH9QNL6KGBWYQGUNN6W9JXAVS89OBJY9EQEJ5T1CS0M45A1JH4HCBFE97F0G0L5UA29OI3EX3GHDJ8EOB2DUXRKMNIGU7SWEGTRVMYYDBMP500JMNYI8261H19D0B992K1CE1L9PKUVSYBDNJHUTX34SUJ1TJX0ZBJKB0OSYOJ79WKXVOB4YIPIXAMB1Z9TRTDTZ2FT71THDF1R4B98HBCG23P57ZW6NMQ5MOMFSLPYBGE' where id=36; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='O1SUXGDYRNSYX9Q0A1XCKGVYGFFQD2H1VU6OE3GUUCPYEMYQPV0IOS4H9ONK3R0WC6LHXAUBWEQ43ICX4H3B15MQNO999FLJ2VMVAOPS16MJC6XBVVK7F4TK8ZSIYKC529IXQ96T8EL2QZNPW5NAY79OCXEJ2BPELUSYGO6Q3XVXFA8ZMAZD5UAGFDYH3BEHKWNJ3B3NJXSPYXFEFAGWS9TQLMZWDKA5FHBNIYQYEVV1NDAWRYMJ6X1HXB4A583MF' where id=36; -update noar ti set v2='O1SUXGDYRNSYX9Q0A1XCKGVYGFFQD2H1VU6OE3GUUCPYEMYQPV0IOS4H9ONK3R0WC6LHXAUBWEQ43ICX4H3B15MQNO999FLJ2VMVAOPS16MJC6XBVVK7F4TK8ZSIYKC529IXQ96T8EL2QZNPW5NAY79OCXEJ2BPELUSYGO6Q3XVXFA8ZMAZD5UAGFDYH3BEHKWNJ3B3NJXSPYXFEFAGWS9TQLMZWDKA5FHBNIYQYEVV1NDAWRYMJ6X1HXB4A583MF' where id=36; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='UM2YR981US8UTN79O8LQXOQJ3EKID406ASSAOT5LR7V02GO943LC06DUBK87X9VB5XP10VYTLW2V8RAYAEJ9RK5LSFZR7LFV552BKJCLN2GZ93Z8I4ENCMN4GDIFHK4LI9NQM3XEAQXH1MRIIQZDRC2D94NEANNYOXVLHFAHX6RZGRU0BKWCBIF1NVKP0920CJZ6E5KE58C9ER26M2VPC5CP941Z2QG55U06UWUSQ7VDU0ONG0LJXRYZ3WQEZ071H' where id=36; -update noar ti set v3='UM2YR981US8UTN79O8LQXOQJ3EKID406ASSAOT5LR7V02GO943LC06DUBK87X9VB5XP10VYTLW2V8RAYAEJ9RK5LSFZR7LFV552BKJCLN2GZ93Z8I4ENCMN4GDIFHK4LI9NQM3XEAQXH1MRIIQZDRC2D94NEANNYOXVLHFAHX6RZGRU0BKWCBIF1NVKP0920CJZ6E5KE58C9ER26M2VPC5CP941Z2QG55U06UWUSQ7VDU0ONG0LJXRYZ3WQEZ071H' where id=36; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='E7HM12G1PKE9Q53X2NT75Q27YTPCQ6Q5228Q1WTACZEHQA28VEWTLRB0SBBS0NX98Q1543BU53PNDDJY0KA2DU3IIV0OJFXNP93Z9GK6UTIFN1PYC9FR18GY1R09TIL7RZK3ELL4D0D3IBC23VUVYK3BHUDE7J1H62323OJUQQO68SMWS9FOAUKLQLZHOQ1H2I51IRW0NQ1H9SLTHYUH1Q30E39UGNEOV8MLM8VHVDJYQZIWO5XLD7N04TWD9T2M5' where id=37; -update noar ti set v0='E7HM12G1PKE9Q53X2NT75Q27YTPCQ6Q5228Q1WTACZEHQA28VEWTLRB0SBBS0NX98Q1543BU53PNDDJY0KA2DU3IIV0OJFXNP93Z9GK6UTIFN1PYC9FR18GY1R09TIL7RZK3ELL4D0D3IBC23VUVYK3BHUDE7J1H62323OJUQQO68SMWS9FOAUKLQLZHOQ1H2I51IRW0NQ1H9SLTHYUH1Q30E39UGNEOV8MLM8VHVDJYQZIWO5XLD7N04TWD9T2M5' where id=37; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='ABB0S6RL26NXW97E91XYZZGCDAQYTI1JY04EGVXE71QP5T12OTF5WU2332B55LDB6W3P24LO283EV2P00JZXFFFYBB6DQSY9FKS9DC8V3B0NKIRBYRCPU89F8I7CL7YS4T9PXLME4B6YXQXPQQNG90SROEX677XKNTKYXUVUQ1G02KX1067RHWMWGTMT238KLH8IAEY8W7A3ERCUL7V80IQ21ZXVKIDGZV3Y8WJ4DMLKN541Z2M1IXYUOV8KXOP23' where id=37; -update noar ti set v1='ABB0S6RL26NXW97E91XYZZGCDAQYTI1JY04EGVXE71QP5T12OTF5WU2332B55LDB6W3P24LO283EV2P00JZXFFFYBB6DQSY9FKS9DC8V3B0NKIRBYRCPU89F8I7CL7YS4T9PXLME4B6YXQXPQQNG90SROEX677XKNTKYXUVUQ1G02KX1067RHWMWGTMT238KLH8IAEY8W7A3ERCUL7V80IQ21ZXVKIDGZV3Y8WJ4DMLKN541Z2M1IXYUOV8KXOP23' where id=37; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='UVAO28FY9545RHV4QHEQF717OJZ2SVINNIC155EWFW98U1D5E9OAQP61QD8XSAXRZWDCSZIM3C6OTI1JBKPG0W7YA06VGYU3VIJQ4KH8S5RZ7L0A83796RYUI1NGAU7LH5UHP9JCQE53AGXC74416T4DCUOMMHZIZJV6A563LMX96GBMJ7EI78QLBL23781FZENZYLRO8CY89420BP39R79TASYAAVB1N842THPNMNMFRAMH99ZXLWU9GOK16XOF8' where id=37; -update noar ti set v2='UVAO28FY9545RHV4QHEQF717OJZ2SVINNIC155EWFW98U1D5E9OAQP61QD8XSAXRZWDCSZIM3C6OTI1JBKPG0W7YA06VGYU3VIJQ4KH8S5RZ7L0A83796RYUI1NGAU7LH5UHP9JCQE53AGXC74416T4DCUOMMHZIZJV6A563LMX96GBMJ7EI78QLBL23781FZENZYLRO8CY89420BP39R79TASYAAVB1N842THPNMNMFRAMH99ZXLWU9GOK16XOF8' where id=37; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='E804XUFNM5CS6KBB610LA707IS191EKFVSTDEDZEV0RNT7E83E79UVW1UX1D770S9ODRMCIPNLR68VJRRU4T96REOSZ7Y3KUR79HJF6YOJWRT3HLWC03QGCWQEFSPWRZKKFPTWEC68M70UWDP522RFHXMKT8C976F1W17E1EJGM59W8F03GA4K6GPH5UKDSWZSUCGJGQLDTBL6AOULDPLJO1B54XLAIJA6M90D1F7JUXMLB0FUBJ37JIMSYV3D85A' where id=37; -update noar ti set v3='E804XUFNM5CS6KBB610LA707IS191EKFVSTDEDZEV0RNT7E83E79UVW1UX1D770S9ODRMCIPNLR68VJRRU4T96REOSZ7Y3KUR79HJF6YOJWRT3HLWC03QGCWQEFSPWRZKKFPTWEC68M70UWDP522RFHXMKT8C976F1W17E1EJGM59W8F03GA4K6GPH5UKDSWZSUCGJGQLDTBL6AOULDPLJO1B54XLAIJA6M90D1F7JUXMLB0FUBJ37JIMSYV3D85A' where id=37; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='KSRPHW9R54VWIIQYR5AMU7I0FVD5V0FOZ2WGXNL9ZGIE4JAHNW6DRK5P6XLX143GDVI41FM97TY00GQ9U7DMUNPKUUZ8H7CLIBASN948ZELVLW3Z30YP9JCWH9IE2KW6BAT1KRNATOL95PY1SW82ERYT7PDJUT5RAEGTYREB4CFSRWH4SVA6K654LJ03FIRGMKKSGOVJEABFHTRVBK9DS2OTXZ3ZSYW1CW3YL9QXYBQ4CMJQSIDADCYMIC8A1OIQW' where id=38; -update noar ti set v0='KSRPHW9R54VWIIQYR5AMU7I0FVD5V0FOZ2WGXNL9ZGIE4JAHNW6DRK5P6XLX143GDVI41FM97TY00GQ9U7DMUNPKUUZ8H7CLIBASN948ZELVLW3Z30YP9JCWH9IE2KW6BAT1KRNATOL95PY1SW82ERYT7PDJUT5RAEGTYREB4CFSRWH4SVA6K654LJ03FIRGMKKSGOVJEABFHTRVBK9DS2OTXZ3ZSYW1CW3YL9QXYBQ4CMJQSIDADCYMIC8A1OIQW' where id=38; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='CDY0BKT8MTJ47DYFUX93PLD18YZM2OE079MSJDYS1W6CMQOOJB2OVN3N9NL316LMGT9DSN89Q2P6TS2AOYJMB0Y19JE87KOZOO1JQXI7CMI8YWC9DUY86TXL8P88UUGCPKB7TWZWF2JACM8ARX7QZAOV5WQWG0A9V35LVQK6CEHW9U78AWJONKF49JYNA7AO2ZMFM926Z8RD72YWG0Y3Y6RZH6INL42GFTOYQ0LJ1VSCBVSHSXMT9VD97OV9N66NC' where id=38; -update noar ti set v1='CDY0BKT8MTJ47DYFUX93PLD18YZM2OE079MSJDYS1W6CMQOOJB2OVN3N9NL316LMGT9DSN89Q2P6TS2AOYJMB0Y19JE87KOZOO1JQXI7CMI8YWC9DUY86TXL8P88UUGCPKB7TWZWF2JACM8ARX7QZAOV5WQWG0A9V35LVQK6CEHW9U78AWJONKF49JYNA7AO2ZMFM926Z8RD72YWG0Y3Y6RZH6INL42GFTOYQ0LJ1VSCBVSHSXMT9VD97OV9N66NC' where id=38; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='0WRUD5M74TMCCFUW6RT45T7OUB4WLC9VB4X9KCATJI0WZ5J1BXJQ2M7A7A7PBWEJKK0KYVHRFCPBYXMGHDQLOG1P4AP5WRLN54XA9UQA3I8JOF8N2T36UUHQKD35JOAMZLKQPXJ9RNH1SSA9ZRG89BAGIL3NRCLACV8592HKN40M1MQMI2VBX5LP7RK17UUMD07IESVO838N9HR16Z80LHACAR1GE0R0HVBCSSUCKM0MKL8DPV249QEK9BCKHE7LR' where id=38; -update noar ti set v2='0WRUD5M74TMCCFUW6RT45T7OUB4WLC9VB4X9KCATJI0WZ5J1BXJQ2M7A7A7PBWEJKK0KYVHRFCPBYXMGHDQLOG1P4AP5WRLN54XA9UQA3I8JOF8N2T36UUHQKD35JOAMZLKQPXJ9RNH1SSA9ZRG89BAGIL3NRCLACV8592HKN40M1MQMI2VBX5LP7RK17UUMD07IESVO838N9HR16Z80LHACAR1GE0R0HVBCSSUCKM0MKL8DPV249QEK9BCKHE7LR' where id=38; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='DTSJLM92OSKYU8SVNKCZ10CIYYCSJT2OIOYFOGWWKTSQ4QQIMGG91O0QORDGDVWWUY8GPZFOS1WNDCZ4SGNGTIAPUDYR03SET7VW5KPFG24VZIPRIHAC69U4JWVDHE925A8XTXZFFABE7RLGBYNS8JDBSEHMR23CT93LL6UG4SVRTX51AMEODIK5S0U16O5JR9OE5KTLE3NYLMMDVLO00HCJKZCP48HJZB003O1CV2DOW3YK30AB2EM56A71QZZ38' where id=38; -update noar ti set v3='DTSJLM92OSKYU8SVNKCZ10CIYYCSJT2OIOYFOGWWKTSQ4QQIMGG91O0QORDGDVWWUY8GPZFOS1WNDCZ4SGNGTIAPUDYR03SET7VW5KPFG24VZIPRIHAC69U4JWVDHE925A8XTXZFFABE7RLGBYNS8JDBSEHMR23CT93LL6UG4SVRTX51AMEODIK5S0U16O5JR9OE5KTLE3NYLMMDVLO00HCJKZCP48HJZB003O1CV2DOW3YK30AB2EM56A71QZZ38' where id=38; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='KAQ5LAOU70U5RYC8OAG4KYV1HJ23CZMSK1E2I4Z32YBQZKB5A7RECIHXFCYQS3D5HBW2V9E7BGJ2NTIPY35IJKL83TDVBLOKJYMKC1572NUKDF8D1H6544YM06XDNSGGZKKN6KKIDWIWSRGYLHU3X91HGWW14MPCO5NT5OVHVBZO305L1JW4ROE1KHZV3FHDMRC1JC05HRKRNLNRQD9MNKAIV99JE0463KSC8SPCC5USVSB8WC48ME0K9P6IV33SY' where id=39; -update noar ti set v0='KAQ5LAOU70U5RYC8OAG4KYV1HJ23CZMSK1E2I4Z32YBQZKB5A7RECIHXFCYQS3D5HBW2V9E7BGJ2NTIPY35IJKL83TDVBLOKJYMKC1572NUKDF8D1H6544YM06XDNSGGZKKN6KKIDWIWSRGYLHU3X91HGWW14MPCO5NT5OVHVBZO305L1JW4ROE1KHZV3FHDMRC1JC05HRKRNLNRQD9MNKAIV99JE0463KSC8SPCC5USVSB8WC48ME0K9P6IV33SY' where id=39; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='MPNC600OM7GT50W8ZF2VXBPNSVMU15BANJF7AAZLWH3ZNGIQ9ZFMMM7CPYPSO0VW8PD4CCQWXFSE9PSP6I47RZXGK0AWV0B8J8V4OTM23ND4TXFCJQQDA2BQA161SB7TP3054ZI9Q9UN563HLTP35IZ0UH944ST3RLTAX2YA78UTHZJATV2QPFYEELYH3E8GJ1B5BEDM8P25O4WCN0M1WDLSKLU4B5128W1HS8RJ04VMYY2K10ST2GYEOYJMHLDHQ' where id=39; -update noar ti set v1='MPNC600OM7GT50W8ZF2VXBPNSVMU15BANJF7AAZLWH3ZNGIQ9ZFMMM7CPYPSO0VW8PD4CCQWXFSE9PSP6I47RZXGK0AWV0B8J8V4OTM23ND4TXFCJQQDA2BQA161SB7TP3054ZI9Q9UN563HLTP35IZ0UH944ST3RLTAX2YA78UTHZJATV2QPFYEELYH3E8GJ1B5BEDM8P25O4WCN0M1WDLSKLU4B5128W1HS8RJ04VMYY2K10ST2GYEOYJMHLDHQ' where id=39; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='605UIPV63A8Q5KTEC1XDGUKUHZQU8YGCU33EO02NEKDDZ1YT73TGL63AA64WIK2FXKG8U9TNBGLCUZ3CLWPZHF2PRNAVRPA7XTMDI5AMB111BNWXIDZFFIRHLEWTC5YOC6DBJV5VGTD39IE9XIPYBX0ZPMUGH259YGJPHXNVVR1V3FF6AQT0IGCVPWF6ALO4HSB031JQ0W38JG4RYC5ERAV74SLIFFPXCBIMDWZ0BOSHMPQNMS3DQENXI9X6PVNG3' where id=39; -update noar ti set v2='605UIPV63A8Q5KTEC1XDGUKUHZQU8YGCU33EO02NEKDDZ1YT73TGL63AA64WIK2FXKG8U9TNBGLCUZ3CLWPZHF2PRNAVRPA7XTMDI5AMB111BNWXIDZFFIRHLEWTC5YOC6DBJV5VGTD39IE9XIPYBX0ZPMUGH259YGJPHXNVVR1V3FF6AQT0IGCVPWF6ALO4HSB031JQ0W38JG4RYC5ERAV74SLIFFPXCBIMDWZ0BOSHMPQNMS3DQENXI9X6PVNG3' where id=39; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='Y1FYBXZ6G4JFU28VOU58PG15RSOZEF1GDQTE4ONT7BUKOPCB5AN6FV360CM4PJGLNCM38JHHTZMRI5LUC0PGAVI9G4KOEN4I4D6377118MZL152AE0UJDAT1YI6Y9541024C9JRNDH7CP1HEJPUDCLM9P40W6SU8G92E3IV8PNMEMGX4I1RZAEAUA5YVY5S2VQ247J0WE4ZI3Y1PFJIDUHNMZX7W5ZXU6HKRMWXHAUKM8ASLKS4R71DZ9J19ZA361' where id=39; -update noar ti set v3='Y1FYBXZ6G4JFU28VOU58PG15RSOZEF1GDQTE4ONT7BUKOPCB5AN6FV360CM4PJGLNCM38JHHTZMRI5LUC0PGAVI9G4KOEN4I4D6377118MZL152AE0UJDAT1YI6Y9541024C9JRNDH7CP1HEJPUDCLM9P40W6SU8G92E3IV8PNMEMGX4I1RZAEAUA5YVY5S2VQ247J0WE4ZI3Y1PFJIDUHNMZX7W5ZXU6HKRMWXHAUKM8ASLKS4R71DZ9J19ZA361' where id=39; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='0VKQ5X2PQQDTJV12EFUYSXYQU3ISX60OPPIQ0XQKM4MHW2HPQB3PQAS9HSOKT9S6Z2N3DAVFMBC2LQVY5BYO8J6NWFH86FJCPT82YJV5RRU7ATWJ3WGR7WK11Q4CZ8HP7KLY5BGAADOFWMIZR8IN4DVTXGZA9QQTJEHTR0KEYNUZ0CE9RSC7HRJNCORDS1Q7NL01VZEGW6POGQD5E5SJFING7V21VNSQW8CMFLU9ARI3X3RWWMB8DUAGE6FVQWMBI' where id=40; -update noar ti set v0='0VKQ5X2PQQDTJV12EFUYSXYQU3ISX60OPPIQ0XQKM4MHW2HPQB3PQAS9HSOKT9S6Z2N3DAVFMBC2LQVY5BYO8J6NWFH86FJCPT82YJV5RRU7ATWJ3WGR7WK11Q4CZ8HP7KLY5BGAADOFWMIZR8IN4DVTXGZA9QQTJEHTR0KEYNUZ0CE9RSC7HRJNCORDS1Q7NL01VZEGW6POGQD5E5SJFING7V21VNSQW8CMFLU9ARI3X3RWWMB8DUAGE6FVQWMBI' where id=40; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='NYE9S343RDJK6E1Z6PAPI7WJLN5U4BFHJYWOBPMW89VF2OTHRYNSRVZP3OJ0DMCWMZDBOH0KJLWF7IDK6AI7SQ6M8DOT00BQQBUY7Y9E8AGKW8BTXMJEBVYYMXCAUKAIC95U0PRUUK7GG4UI1IXZ4EDO5IK6MGNSG68S30Y6I93TMTNLCX3KQYE03V5SWVXJ7K21VK3SN9FIT7VIK1IZNG1YZRF12K7RJNQXXAIPQBO4XE10VYWPYJS0ANTDEGBNJ' where id=40; -update noar ti set v1='NYE9S343RDJK6E1Z6PAPI7WJLN5U4BFHJYWOBPMW89VF2OTHRYNSRVZP3OJ0DMCWMZDBOH0KJLWF7IDK6AI7SQ6M8DOT00BQQBUY7Y9E8AGKW8BTXMJEBVYYMXCAUKAIC95U0PRUUK7GG4UI1IXZ4EDO5IK6MGNSG68S30Y6I93TMTNLCX3KQYE03V5SWVXJ7K21VK3SN9FIT7VIK1IZNG1YZRF12K7RJNQXXAIPQBO4XE10VYWPYJS0ANTDEGBNJ' where id=40; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='Z6P0FIWZ6JVONA8AW2FPUHTZQQDG3Q6I9LNNPDRKYS7RF4F4S2Z8ASYA7SR5RSWKG9XV3H4IVHJQM0HC8M8QRHU5RGKDLJW02ZPJ63B6XS886B59Y7P29II593EQNKG8OBW3OLXHTJQHV8ZPC118O5U50IAPOHYS1OHIJYNV6YXCKETNF00LCGRAVIWSEUV5RI58SFJ7HJE7U6ZOYY2XX1ST45CELQV1N4IE47JRCUI895W59L6FIY4MTX3BF9JJY' where id=40; -update noar ti set v2='Z6P0FIWZ6JVONA8AW2FPUHTZQQDG3Q6I9LNNPDRKYS7RF4F4S2Z8ASYA7SR5RSWKG9XV3H4IVHJQM0HC8M8QRHU5RGKDLJW02ZPJ63B6XS886B59Y7P29II593EQNKG8OBW3OLXHTJQHV8ZPC118O5U50IAPOHYS1OHIJYNV6YXCKETNF00LCGRAVIWSEUV5RI58SFJ7HJE7U6ZOYY2XX1ST45CELQV1N4IE47JRCUI895W59L6FIY4MTX3BF9JJY' where id=40; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='4QJFZJF1OIDGJO8L3JF1FU8KVRBVCAW0I0OXX34SSV6WKU2TDADOYNHYLKF8S1CN9FF0HSAKFMH0Q47CBSLUBEHS64XSOY0H6WU4KZCFJ130BEYBV4O1Q8KQAHCVRH634IQSXHGH50SMT3Y86819GNDYMNNL6RJFG0LYVYG8JIM22W5D5I961Y2692JKPG4DEVUKIKRHB51F8OEUWTCEH50ECVVLU2SBV6W1NHWESX47TLCHSE796YK6CLNJV765T' where id=40; -update noar ti set v3='4QJFZJF1OIDGJO8L3JF1FU8KVRBVCAW0I0OXX34SSV6WKU2TDADOYNHYLKF8S1CN9FF0HSAKFMH0Q47CBSLUBEHS64XSOY0H6WU4KZCFJ130BEYBV4O1Q8KQAHCVRH634IQSXHGH50SMT3Y86819GNDYMNNL6RJFG0LYVYG8JIM22W5D5I961Y2692JKPG4DEVUKIKRHB51F8OEUWTCEH50ECVVLU2SBV6W1NHWESX47TLCHSE796YK6CLNJV765T' where id=40; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='HWRU6D5LE6HWXEN5S6W52X2HN11LQR9FCIHJPWAF6HSJDR7EEVE288F8DA8M2UZUE7F12BVG61VIDZ7BNXXOZWI3Y2N4705AN3866NQK6YPWH4LI48ZFUCTRLWRLT7563USJJXEKLQOPN1GAUGVR00E44D5WG6T2AHNXS2CFVKMHCJSX5ES2XVOINAQCL1JW07URUIRPAAW4CT81EHCKYNYK3KDRS6ZYL11EF6EQEOE7K2C168T5Y64JVZOK5ELCQ' where id=41; -update noar ti set v0='HWRU6D5LE6HWXEN5S6W52X2HN11LQR9FCIHJPWAF6HSJDR7EEVE288F8DA8M2UZUE7F12BVG61VIDZ7BNXXOZWI3Y2N4705AN3866NQK6YPWH4LI48ZFUCTRLWRLT7563USJJXEKLQOPN1GAUGVR00E44D5WG6T2AHNXS2CFVKMHCJSX5ES2XVOINAQCL1JW07URUIRPAAW4CT81EHCKYNYK3KDRS6ZYL11EF6EQEOE7K2C168T5Y64JVZOK5ELCQ' where id=41; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='2REATM9LDEW0A5B9N2185CGR5PBLVPYDE2DKU0O7M7EJA5PI8DU5J9BGJZI9IQ8U3IRM5AV9I8EFVKZ1AYC26QQU9SNONZAMO6JBL1DRAK7PR8760EA8EYEHV0JF35CKVNB537OQ4Z074XMH2XWU33J8D3S737QHS6FXI9GIUS404ZOIJWXZGVG77S2HO0ZX6TZ7V0URU55IXKXN9JRJBFDZUEM7GO9KOR7BKJH6DEG3WLS88EPLBQ2L1E6ZVJ8A2' where id=41; -update noar ti set v1='2REATM9LDEW0A5B9N2185CGR5PBLVPYDE2DKU0O7M7EJA5PI8DU5J9BGJZI9IQ8U3IRM5AV9I8EFVKZ1AYC26QQU9SNONZAMO6JBL1DRAK7PR8760EA8EYEHV0JF35CKVNB537OQ4Z074XMH2XWU33J8D3S737QHS6FXI9GIUS404ZOIJWXZGVG77S2HO0ZX6TZ7V0URU55IXKXN9JRJBFDZUEM7GO9KOR7BKJH6DEG3WLS88EPLBQ2L1E6ZVJ8A2' where id=41; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='O4UXNKM3O0OFP9BVJB264K46BYHG08QWXJUBQ5JGX0WH9IQ77U3GUSMJZUGFM5QGSSHE0MHM51JQZ7ME2EGR7VTLUNMUEJUZ45TI0E4AN4DTPIAT7O4VRV0W7UZVCS5STJDEUHO305FEPTXLTYELHKA85A0TO2FS1U3GO3513PE7CYRLE2VTPRN6FYIZT82G91WG0K24VF9DIRRO34VSL3C3CRF6WUP4VQM8L9J9VXPIO23V8AEFRRZ4ZDYOGD4UQ' where id=41; -update noar ti set v2='O4UXNKM3O0OFP9BVJB264K46BYHG08QWXJUBQ5JGX0WH9IQ77U3GUSMJZUGFM5QGSSHE0MHM51JQZ7ME2EGR7VTLUNMUEJUZ45TI0E4AN4DTPIAT7O4VRV0W7UZVCS5STJDEUHO305FEPTXLTYELHKA85A0TO2FS1U3GO3513PE7CYRLE2VTPRN6FYIZT82G91WG0K24VF9DIRRO34VSL3C3CRF6WUP4VQM8L9J9VXPIO23V8AEFRRZ4ZDYOGD4UQ' where id=41; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='WWQI6SKZJNZ7NTWKG1DDA6SJOLR7VJHSWRXU4P8QHB1LIH45F96SR4DKB4ZC6JDHRF3LW4CK5DROMHJW2HN7NJQKBH22S9PPRNIODSWC2T2HBDCU30BN5I77HJG8FL7N23TJYHNWTOJ4113Q62315EN4ZG1I8A1YGXL64BP3QWCNWLG13MC0DOE35BFQI6QDOA0G3N8LQEY669BVO29IK2JHHNA7RK3MGX75FHOHPJL77M8L9I9RQZBYKNR8BHDHH' where id=41; -update noar ti set v3='WWQI6SKZJNZ7NTWKG1DDA6SJOLR7VJHSWRXU4P8QHB1LIH45F96SR4DKB4ZC6JDHRF3LW4CK5DROMHJW2HN7NJQKBH22S9PPRNIODSWC2T2HBDCU30BN5I77HJG8FL7N23TJYHNWTOJ4113Q62315EN4ZG1I8A1YGXL64BP3QWCNWLG13MC0DOE35BFQI6QDOA0G3N8LQEY669BVO29IK2JHHNA7RK3MGX75FHOHPJL77M8L9I9RQZBYKNR8BHDHH' where id=41; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='B26APH1QO1T9F9IKE73JKNO8R57JW39FU554JGHS8P4ATSZBNZH1KB278NBBLC4WBBJPGAPPYCX9X12OKI1GJ1MZ7WJX0SZP7SVBO0B1RKU65D3T43ZE7RQYYJYVPLYND4743157YYNRCT8OS28RIS6OE67I8UZAN9I4DLY682DH9DU59VGTXW0K0RS51MSECC5T4M383U2JEE7638HL22UX7U8ZSZUVPHFIEFUU5CUTCOTE4BGTCW4SINRGYD70I' where id=42; -update noar ti set v0='B26APH1QO1T9F9IKE73JKNO8R57JW39FU554JGHS8P4ATSZBNZH1KB278NBBLC4WBBJPGAPPYCX9X12OKI1GJ1MZ7WJX0SZP7SVBO0B1RKU65D3T43ZE7RQYYJYVPLYND4743157YYNRCT8OS28RIS6OE67I8UZAN9I4DLY682DH9DU59VGTXW0K0RS51MSECC5T4M383U2JEE7638HL22UX7U8ZSZUVPHFIEFUU5CUTCOTE4BGTCW4SINRGYD70I' where id=42; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='33Y37JH1L18FFA4NRM2LTCHOXV17IJ75CSEC5ALLORHA3XU6HQKZ40R9N9098QH6BQ1JFL13VOZTK3UB610AZ2HORH933INO6J2ELQMVZIVRU0PSUFHIFWO959KVO994OOHN7Q5JPKL48C3PUU2097M89W92POTGYJ0ZZRKTMU8AOLT0AYU2PS4JGMOOLJC2JXFH80VA8VTMRPPRKVAEB5J2D27Z6L0JZXW1O1NRBSZ1Q7I8BC2TQIDMOXSZ5FUDB' where id=42; -update noar ti set v1='33Y37JH1L18FFA4NRM2LTCHOXV17IJ75CSEC5ALLORHA3XU6HQKZ40R9N9098QH6BQ1JFL13VOZTK3UB610AZ2HORH933INO6J2ELQMVZIVRU0PSUFHIFWO959KVO994OOHN7Q5JPKL48C3PUU2097M89W92POTGYJ0ZZRKTMU8AOLT0AYU2PS4JGMOOLJC2JXFH80VA8VTMRPPRKVAEB5J2D27Z6L0JZXW1O1NRBSZ1Q7I8BC2TQIDMOXSZ5FUDB' where id=42; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='4GA1A28P4CUYP2EPQ4AQHCM823H4GYFEIPJKG98DWKAO3J1IFLEAZHGKZUR60DMBOXIYWVS1D0YSWLCZ2IH7V83X51YWYX9IDI15H8AODQO987TCPOQN5DEY3E2KWS4A50KCQPPYNSNNH80PX92O8VD9QB2FHS7W67SG6EQ0L58O2GKFBSSORERP1WR9AJJRLT70JOTT7LP5ARD8FKHDF2E769XZS9M9WGYI4S0PCJ106D3W8U045QO3WYCZN0LUJ' where id=42; -update noar ti set v2='4GA1A28P4CUYP2EPQ4AQHCM823H4GYFEIPJKG98DWKAO3J1IFLEAZHGKZUR60DMBOXIYWVS1D0YSWLCZ2IH7V83X51YWYX9IDI15H8AODQO987TCPOQN5DEY3E2KWS4A50KCQPPYNSNNH80PX92O8VD9QB2FHS7W67SG6EQ0L58O2GKFBSSORERP1WR9AJJRLT70JOTT7LP5ARD8FKHDF2E769XZS9M9WGYI4S0PCJ106D3W8U045QO3WYCZN0LUJ' where id=42; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='TS3JKU2XDJ5H5CGJAUKUC9WLAHHJJVPNHY3V7VJSP9B7Z4TK8J9HASW8A4M699TGENR50R6LMGMWLVAS421IXCMDP2Q45ZUAK7YPNENVDU1QJD4CUORRGUK2PGZ0SWJNGTC6GOW8EE47EULXXWXCFJC3MOKL5C486TUVB34O0L08CZYSILNJQOPETYEAVK88RFJOTBFRPPAF2PJPWBMOS36J12ASE46IH2W2ZP1UXSSHKXBERCZOS3K6LPF40XD2Y' where id=42; -update noar ti set v3='TS3JKU2XDJ5H5CGJAUKUC9WLAHHJJVPNHY3V7VJSP9B7Z4TK8J9HASW8A4M699TGENR50R6LMGMWLVAS421IXCMDP2Q45ZUAK7YPNENVDU1QJD4CUORRGUK2PGZ0SWJNGTC6GOW8EE47EULXXWXCFJC3MOKL5C486TUVB34O0L08CZYSILNJQOPETYEAVK88RFJOTBFRPPAF2PJPWBMOS36J12ASE46IH2W2ZP1UXSSHKXBERCZOS3K6LPF40XD2Y' where id=42; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='CL6V9SSJP77WE8K1NQ02VZYU8RB2Q38UYZCQCFPX24666ZJD3XM60XWX394V7WV2SN374XR0AHPC9CWVOC434DKI4AJIFR83GKZSIFPOTEBNBP2IA9WY4ZYYVY79Q2QNPCCP7EJQIJW4O90LR1VUCL14MZJIU8KZXYWJR1UYWK21J5QPW7H8ZVA0HGJ3A6CYLOBUCWG52ERI5D2QOJ12T655SQFR74V8OUSQC3V44RAH88VHXBOF4D2ET4BFAHFCR' where id=43; -update noar ti set v0='CL6V9SSJP77WE8K1NQ02VZYU8RB2Q38UYZCQCFPX24666ZJD3XM60XWX394V7WV2SN374XR0AHPC9CWVOC434DKI4AJIFR83GKZSIFPOTEBNBP2IA9WY4ZYYVY79Q2QNPCCP7EJQIJW4O90LR1VUCL14MZJIU8KZXYWJR1UYWK21J5QPW7H8ZVA0HGJ3A6CYLOBUCWG52ERI5D2QOJ12T655SQFR74V8OUSQC3V44RAH88VHXBOF4D2ET4BFAHFCR' where id=43; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='PAVN2IYK705NWIJVC5PRM2K05T2SH5FFN8NK7CCQ5PQF81FAA44WGVEF4L1KDMGKXIM4QNKEQ80DTU2CWVMX92KNE330JPF6RONCWGX8Z0MAIYM9LH7YHZYAFUR0KDKZG0CFHQH6KHKBFDUH0VDX6YL08OB548A6DN65SA3FHIJMBQGM49DCJXQ0BCRW0ZYGUGRZ7T0CLVVAWPDWYFM4EDZ4V97E71LQJ50VMVHOIAYOEUGTTYRB5H89SFHE2BLO8' where id=43; -update noar ti set v1='PAVN2IYK705NWIJVC5PRM2K05T2SH5FFN8NK7CCQ5PQF81FAA44WGVEF4L1KDMGKXIM4QNKEQ80DTU2CWVMX92KNE330JPF6RONCWGX8Z0MAIYM9LH7YHZYAFUR0KDKZG0CFHQH6KHKBFDUH0VDX6YL08OB548A6DN65SA3FHIJMBQGM49DCJXQ0BCRW0ZYGUGRZ7T0CLVVAWPDWYFM4EDZ4V97E71LQJ50VMVHOIAYOEUGTTYRB5H89SFHE2BLO8' where id=43; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='A0WF6AH053APLJUK87DY1YX174LILLJFKIN7SBC969KCFXV7K0BT021NYUYFR4G7Y1XFP9PNUT7P43QDZ0MUKC8DL3IEV13UBQNGYIG6SRU93YWARIJPZLC749X2Y5476MJPZL0V5FNERXRA5J1YYARVP7Q5K3PKANY9F3YNWT075UFU1QS74FZB84Q6SKB75AXCKL7CUPXDNT6GD1G2IJ6BFS8T29UJSHU0QUSC8CRQW78SG5DX44CML2LB0IVIK' where id=43; -update noar ti set v2='A0WF6AH053APLJUK87DY1YX174LILLJFKIN7SBC969KCFXV7K0BT021NYUYFR4G7Y1XFP9PNUT7P43QDZ0MUKC8DL3IEV13UBQNGYIG6SRU93YWARIJPZLC749X2Y5476MJPZL0V5FNERXRA5J1YYARVP7Q5K3PKANY9F3YNWT075UFU1QS74FZB84Q6SKB75AXCKL7CUPXDNT6GD1G2IJ6BFS8T29UJSHU0QUSC8CRQW78SG5DX44CML2LB0IVIK' where id=43; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='BFC1W0PDFLDCE05C8PTZTJ0G748NG4V5Y649F9G4YNCWI1EPWSVVNZFR4LMCN72I28U0G6UPFRXA0W5FA2GFK5NTJ45T3BWBCV98IL9AL08JXTP6HEQLQMB5STFKQPSS4CUJFOBSV95FCC0AMY0UPKR9FIXFSS7CIOEJC9TSCGUS51416EG448IO3E2YKN6ONDMMHZLSL0TIPE0U2A8VGA0D31PX2D8BYCE616RWQTN2B4H0GT67CKL63DUEPYOUR' where id=43; -update noar ti set v3='BFC1W0PDFLDCE05C8PTZTJ0G748NG4V5Y649F9G4YNCWI1EPWSVVNZFR4LMCN72I28U0G6UPFRXA0W5FA2GFK5NTJ45T3BWBCV98IL9AL08JXTP6HEQLQMB5STFKQPSS4CUJFOBSV95FCC0AMY0UPKR9FIXFSS7CIOEJC9TSCGUS51416EG448IO3E2YKN6ONDMMHZLSL0TIPE0U2A8VGA0D31PX2D8BYCE616RWQTN2B4H0GT67CKL63DUEPYOUR' where id=43; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='65HF12YYOHEB5PJYWAMTERZR841XDGENHEJJR27LNLID4VLT4H2VDWFATJG5X9SN3BATFDUG3RXE90IB23YKLDJTHGROBTN91WGE14WW4BPRFJJR9FHVWVCGFRHH7SOPSS08QR5SGIUG1C4PMKJA8X1OX87RPBBLZBP1VU8WB65CEXWSY9DWHJ7A5DK90O00CIUPRJ880DXTVQ0FCZJIV13DMMBMGLJM62O3Y1Y6QU1MSFWPFC4EUH3L0DO4HXDFF' where id=44; -update noar ti set v0='65HF12YYOHEB5PJYWAMTERZR841XDGENHEJJR27LNLID4VLT4H2VDWFATJG5X9SN3BATFDUG3RXE90IB23YKLDJTHGROBTN91WGE14WW4BPRFJJR9FHVWVCGFRHH7SOPSS08QR5SGIUG1C4PMKJA8X1OX87RPBBLZBP1VU8WB65CEXWSY9DWHJ7A5DK90O00CIUPRJ880DXTVQ0FCZJIV13DMMBMGLJM62O3Y1Y6QU1MSFWPFC4EUH3L0DO4HXDFF' where id=44; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='KIZI306Y7UFS5PORP394I02OA9WC6MINBNAR2MHMJE567NCDF3VA1804F4T61BYUFG1L3M6F3IS4H2DB7YAHINPRWM68VR4L8W56440ZR0UY04SXIIWCC8Z5AE85VLGK6ISFE0SI2D0ARP6LVPD33XVETPX7BSHAH0SDREB2YFRSZFP3GPT2JXE4Z9VHMTTL86VT69PPVKFWCVLFGZJQZ6WNWRMC601SPZ3HZZQZ14I95FFF1Z1RWLSRBS6S1MWJ0' where id=44; -update noar ti set v1='KIZI306Y7UFS5PORP394I02OA9WC6MINBNAR2MHMJE567NCDF3VA1804F4T61BYUFG1L3M6F3IS4H2DB7YAHINPRWM68VR4L8W56440ZR0UY04SXIIWCC8Z5AE85VLGK6ISFE0SI2D0ARP6LVPD33XVETPX7BSHAH0SDREB2YFRSZFP3GPT2JXE4Z9VHMTTL86VT69PPVKFWCVLFGZJQZ6WNWRMC601SPZ3HZZQZ14I95FFF1Z1RWLSRBS6S1MWJ0' where id=44; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='6MHXEL4ZSOMZGO5G4G5DIT2YDEPKK79WMFLBDP8G7BN1NOSLGQ5D7KPGPWUGUZ7MTJ9EPE0859QOIALMQ6L0KXGVVX6XRULJV8E64XXO1BZUX7WZ26VXUAVF7NF7ORIR2GHN5W8H2BFJL1XSXDPQOFVWF8VFZZC8YXZNOGF2CELXGBKFJOTRSKNRTLWECJMU3SYOE68TNTKIHGM7IK3T857NVL9LVB7CX12PDWQ2NSUGEYO8IPFHYAZGXZGI88OOR' where id=44; -update noar ti set v2='6MHXEL4ZSOMZGO5G4G5DIT2YDEPKK79WMFLBDP8G7BN1NOSLGQ5D7KPGPWUGUZ7MTJ9EPE0859QOIALMQ6L0KXGVVX6XRULJV8E64XXO1BZUX7WZ26VXUAVF7NF7ORIR2GHN5W8H2BFJL1XSXDPQOFVWF8VFZZC8YXZNOGF2CELXGBKFJOTRSKNRTLWECJMU3SYOE68TNTKIHGM7IK3T857NVL9LVB7CX12PDWQ2NSUGEYO8IPFHYAZGXZGI88OOR' where id=44; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='YSYILL831UYPXYNDIOI5WVI203WTEIC1ZIXUB4QOMLXHB31V9NKV0YP2OXI6Y1RW5BVV19ECCCNS0VFZX98IWC6RCYVYA7TYNGQQRMNFLN3F54R030AEPP2Z4ATQYYT08E8V93896YFVD0PJAXLTYURQUA49F6Y7TMS6T6N5AEINR2K3AESWSQHQ88WYTHOYYZ4WCH2Y431XK4YRDEE5KXPRA17U0NZA0C5CRADFSIXM0Y5F2K87MIFXNKUIR79W8' where id=44; -update noar ti set v3='YSYILL831UYPXYNDIOI5WVI203WTEIC1ZIXUB4QOMLXHB31V9NKV0YP2OXI6Y1RW5BVV19ECCCNS0VFZX98IWC6RCYVYA7TYNGQQRMNFLN3F54R030AEPP2Z4ATQYYT08E8V93896YFVD0PJAXLTYURQUA49F6Y7TMS6T6N5AEINR2K3AESWSQHQ88WYTHOYYZ4WCH2Y431XK4YRDEE5KXPRA17U0NZA0C5CRADFSIXM0Y5F2K87MIFXNKUIR79W8' where id=44; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='FGX6QUO3PGR5QQ0N62GC924DZY3ZAGZAIEVZFFXNC2GC3QBUNVGZK8DL2L0J22WSXO81XCP1QF1WTSU6JH27KCDHB0BZ0JVUREJV57I20SUJ9YMJGCCWP097TK8TM81AJOJLXH7CD4WVZUEOUG695D4H5XDHOSTRITIX1B2DFHN1637YH4RITSHFEUW3K6I3VJB42HV48VYB4EXOVPDK27CW48EC2R3XL0VOUIWS0SGWJUM8XG28PFMSM6XMV6E2I' where id=45; -update noar ti set v0='FGX6QUO3PGR5QQ0N62GC924DZY3ZAGZAIEVZFFXNC2GC3QBUNVGZK8DL2L0J22WSXO81XCP1QF1WTSU6JH27KCDHB0BZ0JVUREJV57I20SUJ9YMJGCCWP097TK8TM81AJOJLXH7CD4WVZUEOUG695D4H5XDHOSTRITIX1B2DFHN1637YH4RITSHFEUW3K6I3VJB42HV48VYB4EXOVPDK27CW48EC2R3XL0VOUIWS0SGWJUM8XG28PFMSM6XMV6E2I' where id=45; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='NXRMLALWVI4DK12MNKT9LW1TW5J2MSQ24ZV0MECFGTUI1HKC08KOQUQYQL3NKA0NVB2HD1SVNB1N7LVGAY8S094SUESHJPFE1Q6FTMZQX2A6FW4DP0WPGLZ3J38VN7LA94GWCMP9VTXHB6NN0J3D72A3QLA48CKQMAIMZ6G57REX7H9DKXETPPGSVIOGQMHTJ11L183Z1UK3JMFOIGOUVXNAXFQQBJF7VCCE4CNFDVLJE915Z25EE7R5CVDVZ5GYV' where id=45; -update noar ti set v1='NXRMLALWVI4DK12MNKT9LW1TW5J2MSQ24ZV0MECFGTUI1HKC08KOQUQYQL3NKA0NVB2HD1SVNB1N7LVGAY8S094SUESHJPFE1Q6FTMZQX2A6FW4DP0WPGLZ3J38VN7LA94GWCMP9VTXHB6NN0J3D72A3QLA48CKQMAIMZ6G57REX7H9DKXETPPGSVIOGQMHTJ11L183Z1UK3JMFOIGOUVXNAXFQQBJF7VCCE4CNFDVLJE915Z25EE7R5CVDVZ5GYV' where id=45; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='P1X0GTIFY7R0IME581PI006OKRAN95XD95KET7M75P192TVDOWL45J1G76T7O8P3FA826F49I6AIUSCSCT6ZGRLDZ1O13DKP2KWX3SHAET63JKGMQ71OU3SQN26C9ED6V47LPIL8WFTQA3NT3H9EF8LLLQ3M8T1BOCDZ5T8XPULJE3HGYXRVL2P4WDMADWV09YAYLCKVJHJBKOZ3R1Y38ZX3ZY3JWZBBHFMTP08WC1MTYDZVSH4A4ZHT1DM344JKU' where id=45; -update noar ti set v2='P1X0GTIFY7R0IME581PI006OKRAN95XD95KET7M75P192TVDOWL45J1G76T7O8P3FA826F49I6AIUSCSCT6ZGRLDZ1O13DKP2KWX3SHAET63JKGMQ71OU3SQN26C9ED6V47LPIL8WFTQA3NT3H9EF8LLLQ3M8T1BOCDZ5T8XPULJE3HGYXRVL2P4WDMADWV09YAYLCKVJHJBKOZ3R1Y38ZX3ZY3JWZBBHFMTP08WC1MTYDZVSH4A4ZHT1DM344JKU' where id=45; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='3OBKSF9DZ7PWMQBBJ584R9E1ULIWQU30MIXM5P2984UO7NQKQHOK2NCG7220JHCPVVK0QMY576ENSJ1043LZYACR3UYK3PNDKT37BWWHLWAKJ2SNDLOH71ZCPEOZCEECIW7ZYE7YRTJPZ1BMCQ7WY3M9872IMMK81ORRLGDHLOLLKFZ5N4GIWEYD636E67NQ20BIGC84VLM5U6QUEA6NWDJVLPWQQFKEFKJZ9MMMCMBZCZEDVWCZ3RYNB12VB2KMI' where id=45; -update noar ti set v3='3OBKSF9DZ7PWMQBBJ584R9E1ULIWQU30MIXM5P2984UO7NQKQHOK2NCG7220JHCPVVK0QMY576ENSJ1043LZYACR3UYK3PNDKT37BWWHLWAKJ2SNDLOH71ZCPEOZCEECIW7ZYE7YRTJPZ1BMCQ7WY3M9872IMMK81ORRLGDHLOLLKFZ5N4GIWEYD636E67NQ20BIGC84VLM5U6QUEA6NWDJVLPWQQFKEFKJZ9MMMCMBZCZEDVWCZ3RYNB12VB2KMI' where id=45; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='XPSVIA76FZZ110SS9WUEQTW50A8ZI4XPPRGEOPX4YBBUKMXI600N6JBVGUNOPNV2A5I0H3KTMC959KW5BOE58LPVMSRAPBEY2APC7W8F34MJL7OL2UCQ7O44WEA6OF6GSABY8V3FFGVM2QO8GOM69CY8IKL8HEQ4GNWOAVINNJ8KWJLFSYZ0940T12SKPT0943UWJB4RY9F4P59IJFW8QTIU86ZYYLRJTP7Y5BYQGAT412WTWGPM86EU4J0YI93LO' where id=46; -update noar ti set v0='XPSVIA76FZZ110SS9WUEQTW50A8ZI4XPPRGEOPX4YBBUKMXI600N6JBVGUNOPNV2A5I0H3KTMC959KW5BOE58LPVMSRAPBEY2APC7W8F34MJL7OL2UCQ7O44WEA6OF6GSABY8V3FFGVM2QO8GOM69CY8IKL8HEQ4GNWOAVINNJ8KWJLFSYZ0940T12SKPT0943UWJB4RY9F4P59IJFW8QTIU86ZYYLRJTP7Y5BYQGAT412WTWGPM86EU4J0YI93LO' where id=46; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='MG6SLBHU0405FQXXGERN6CB8NPI374KDI1NBCA7KDX3HAB4LGAED97XNEE5QXJCE32K0ZDXGQEJPGNDB47RDQAITM3LLCC7UTT5ZAJRF48V5S5XRMVCBP3ICD83TGNPFELIC53UCVAGQTSB8UEC32VAOT1H96TJ3HE3GBR4LR5NYIT97MPUD4X932CE3L358Z4HBA68RW6Z7KEJJPSE6YSO28RTKYXAGSATNMG24Z541QC71TVVKRAJI6FWRTMNEZ' where id=46; -update noar ti set v1='MG6SLBHU0405FQXXGERN6CB8NPI374KDI1NBCA7KDX3HAB4LGAED97XNEE5QXJCE32K0ZDXGQEJPGNDB47RDQAITM3LLCC7UTT5ZAJRF48V5S5XRMVCBP3ICD83TGNPFELIC53UCVAGQTSB8UEC32VAOT1H96TJ3HE3GBR4LR5NYIT97MPUD4X932CE3L358Z4HBA68RW6Z7KEJJPSE6YSO28RTKYXAGSATNMG24Z541QC71TVVKRAJI6FWRTMNEZ' where id=46; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='UZEFVHAPP0YVNF9BYAM9J4OV66NWKXTDHXGU00896DD1SUKHNDTDZVXOD2DM7F7PHFL7LD85OII9NF5N6R49ELLQHVKI4V215YXNIZ1JTM6G4R89O20E9X4SDSV6IH4DGULXSZFUSCLD8LZ6QDQMQC5MT1OKW9J2QHGTSOCJ1L10WZWB1NWPVBXTUIK9MSG97BCTV9I6K8D3XFYNBOXPPNHWXLQATV14T2OOFVWF8W2FTGKJX6UA5DAG94P93TAAO' where id=46; -update noar ti set v2='UZEFVHAPP0YVNF9BYAM9J4OV66NWKXTDHXGU00896DD1SUKHNDTDZVXOD2DM7F7PHFL7LD85OII9NF5N6R49ELLQHVKI4V215YXNIZ1JTM6G4R89O20E9X4SDSV6IH4DGULXSZFUSCLD8LZ6QDQMQC5MT1OKW9J2QHGTSOCJ1L10WZWB1NWPVBXTUIK9MSG97BCTV9I6K8D3XFYNBOXPPNHWXLQATV14T2OOFVWF8W2FTGKJX6UA5DAG94P93TAAO' where id=46; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='N0TSZY0OU3IZOBN1698J3542T295SGXMJNSLP49PUH4GDPHZWZVM0SAGOEYSVDH0XIV7HUG6DDY2327HOQ330OVQEQXO2TH19E580BNRCN79UT8BXL4GBDWXB0QA7B1128IQM9UKF8I1C4K86P4THO1F32NZXY4VPG2L2AX4HARUE3P9YVNV6CIXDV590W5B8QBRK7TYO9B872WNNP9KIY0UHKUN9SZW86FG120GBPMP2QNZQ9P6ELEH183PK1ZDI' where id=46; -update noar ti set v3='N0TSZY0OU3IZOBN1698J3542T295SGXMJNSLP49PUH4GDPHZWZVM0SAGOEYSVDH0XIV7HUG6DDY2327HOQ330OVQEQXO2TH19E580BNRCN79UT8BXL4GBDWXB0QA7B1128IQM9UKF8I1C4K86P4THO1F32NZXY4VPG2L2AX4HARUE3P9YVNV6CIXDV590W5B8QBRK7TYO9B872WNNP9KIY0UHKUN9SZW86FG120GBPMP2QNZQ9P6ELEH183PK1ZDI' where id=46; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='ENTKQFPHX7G2AJ39YUZS9VCYQSLZDAT6P7IS8QDVU8QUPJMJOBOIYIEJG5DIQW9QPR7NTFD6AFI6DI5YMN1BFF9O5OQD0DBEFPUIFSFRI6ORPPIXVYFQ20BU1TMWAJKY5ZOBIF3EC3KXRNFP0X893TVIAWT3KNS85AGW64DU8WYFQK2CK16S5G37XYQ6PY5D34IEAWOCMSBK22V3S6HLK57LV19FI3GRUDH9P7YHO3N31PS8CS2BOP6S2LN6C0O7N' where id=47; -update noar ti set v0='ENTKQFPHX7G2AJ39YUZS9VCYQSLZDAT6P7IS8QDVU8QUPJMJOBOIYIEJG5DIQW9QPR7NTFD6AFI6DI5YMN1BFF9O5OQD0DBEFPUIFSFRI6ORPPIXVYFQ20BU1TMWAJKY5ZOBIF3EC3KXRNFP0X893TVIAWT3KNS85AGW64DU8WYFQK2CK16S5G37XYQ6PY5D34IEAWOCMSBK22V3S6HLK57LV19FI3GRUDH9P7YHO3N31PS8CS2BOP6S2LN6C0O7N' where id=47; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='HY3JITCZX272T7NC3UN2TVK3D4O2795M2YZSBD6TJFJU9KAU6QG0IAKVXD4HQY47BN3O49ILMWBXROE12SVUK880T5QU2EW8NDDWO9SWYM44PLRTFX671C2R93A1VJ216C6GY68Z1W1DAU7VR3GCNSTFGARHZ0UQX2810E46WLK3QC4KV8KJ094CW6MP51N57QPN2USYT5MH2QQOICQ5ZHBGYH4AJECVGMAAJ7D1SB1UGX3DQT55WXXCXZ45SGPME' where id=47; -update noar ti set v1='HY3JITCZX272T7NC3UN2TVK3D4O2795M2YZSBD6TJFJU9KAU6QG0IAKVXD4HQY47BN3O49ILMWBXROE12SVUK880T5QU2EW8NDDWO9SWYM44PLRTFX671C2R93A1VJ216C6GY68Z1W1DAU7VR3GCNSTFGARHZ0UQX2810E46WLK3QC4KV8KJ094CW6MP51N57QPN2USYT5MH2QQOICQ5ZHBGYH4AJECVGMAAJ7D1SB1UGX3DQT55WXXCXZ45SGPME' where id=47; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='QTAVN8W7CMXL08TSM82VSOXZFA2GJGKQH589BLHQXJ2X91H7VVEDQU0CAXJQV0KZI6UCB4TJVDSMAH7KGX3I0VK9H4PCDXMSR3J2APWS08WMQCLUVE7Q9I3XDDALTATU15WRXR5UJG9K0LDJB8HTNJ31KKPFMWHBG4G1IW1DT2R8XJKSWL1YJGO36FY5YR012AR1K7YXTLMVVNMBQOWGRA9YI8T1ZZCITMXDMEO4KBKSMNA1AJ6OH964YVP87HDD3' where id=47; -update noar ti set v2='QTAVN8W7CMXL08TSM82VSOXZFA2GJGKQH589BLHQXJ2X91H7VVEDQU0CAXJQV0KZI6UCB4TJVDSMAH7KGX3I0VK9H4PCDXMSR3J2APWS08WMQCLUVE7Q9I3XDDALTATU15WRXR5UJG9K0LDJB8HTNJ31KKPFMWHBG4G1IW1DT2R8XJKSWL1YJGO36FY5YR012AR1K7YXTLMVVNMBQOWGRA9YI8T1ZZCITMXDMEO4KBKSMNA1AJ6OH964YVP87HDD3' where id=47; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='0MU0DN3CILNTH4P4VW7L346GQH0IBHB2KRHHWUK3IZFKNZP2DDAY318J0I4YTLTOTPH7A9EW3J52MU0R3GRQL6W89PVAM9M0NJPQHCKQC9X5TFR4C40GFMMOGIYFDJN3GOSSEWJ8SYZDIILOKBPKMFAKO41KES23DU1L23H127T48KP97PCW12PI3N4KVBYWWLGB5D68UANS3AFQ8ZUKOI5Z00DKMEK6QK7TGA6MLF714UKVU8XACTFM733INRCTV' where id=47; -update noar ti set v3='0MU0DN3CILNTH4P4VW7L346GQH0IBHB2KRHHWUK3IZFKNZP2DDAY318J0I4YTLTOTPH7A9EW3J52MU0R3GRQL6W89PVAM9M0NJPQHCKQC9X5TFR4C40GFMMOGIYFDJN3GOSSEWJ8SYZDIILOKBPKMFAKO41KES23DU1L23H127T48KP97PCW12PI3N4KVBYWWLGB5D68UANS3AFQ8ZUKOI5Z00DKMEK6QK7TGA6MLF714UKVU8XACTFM733INRCTV' where id=47; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='AJ0ZB1IIX2E3PRBZC7RZDRMBNDSIBNPM107SBFHTRYDGIY66OCRW9XZBQ47N5YMY9KIQ324KRDK4PCI6GR6TGBBFF7BLXO913QN2T7NV4ZX12VWBWOBDU6FQASRAKQ5E91WEA3OIDP3SM7CG1KKF4DP4MC726LCLZV3S1PXPQD8S9ZNCE1OXI2ZJPBI5POXKSRDTCQUS9X6Y66YAPP1022Q1JQKGRRLK4N5PGPVYRUORTT2V1DPD9OGBIJXEFO5RA' where id=48; -update noar ti set v0='AJ0ZB1IIX2E3PRBZC7RZDRMBNDSIBNPM107SBFHTRYDGIY66OCRW9XZBQ47N5YMY9KIQ324KRDK4PCI6GR6TGBBFF7BLXO913QN2T7NV4ZX12VWBWOBDU6FQASRAKQ5E91WEA3OIDP3SM7CG1KKF4DP4MC726LCLZV3S1PXPQD8S9ZNCE1OXI2ZJPBI5POXKSRDTCQUS9X6Y66YAPP1022Q1JQKGRRLK4N5PGPVYRUORTT2V1DPD9OGBIJXEFO5RA' where id=48; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='PK8J4UH5XIC04B8YEQUNHLV7G9XC1S6JOCZFOHENH1VOEO3XQ5FX1SW8V3K18ODKHQEK0RLMK6GN56Z7MB2DLCXT5KTIBZ395UADYZH9RMJMQGWRRYZJPIQPEH4EIOHXFBS0L0M3JBB0O81NY0GSCZSRABK90SLXEMXCJ0RWVA91FAJY82OYE9IGWCJQBEF8IB2HXFZEQL82SWB59ZXIK6P6V1XCMOKF5ETMJ6QI2N81ZPRBMSIDSYBW6IVY94PIO' where id=48; -update noar ti set v1='PK8J4UH5XIC04B8YEQUNHLV7G9XC1S6JOCZFOHENH1VOEO3XQ5FX1SW8V3K18ODKHQEK0RLMK6GN56Z7MB2DLCXT5KTIBZ395UADYZH9RMJMQGWRRYZJPIQPEH4EIOHXFBS0L0M3JBB0O81NY0GSCZSRABK90SLXEMXCJ0RWVA91FAJY82OYE9IGWCJQBEF8IB2HXFZEQL82SWB59ZXIK6P6V1XCMOKF5ETMJ6QI2N81ZPRBMSIDSYBW6IVY94PIO' where id=48; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='DJTOKHUTKMN0KYK6NM03NPXX2745NXWIV0VUMJVAY7Q723QS03WQ4Q4O0GOPIIHZAG94UYHUT8JILAU5PFSP9S084YSRW5Q7FB1FIQIKSGZXMQUL6Q34G3K2140TL3JDEQGDGL6DX61DJVI9X5GNIOVG0U60GXTX9705EV5A21KY1NM0C3AV5OCIP9YXF3OZZ65EI3NS50FY6N9K6A7ZN2VYTGG9HRFNMKJYRC6HN5WUUSPLLZXSPS0R0AJL8YI1Q' where id=48; -update noar ti set v2='DJTOKHUTKMN0KYK6NM03NPXX2745NXWIV0VUMJVAY7Q723QS03WQ4Q4O0GOPIIHZAG94UYHUT8JILAU5PFSP9S084YSRW5Q7FB1FIQIKSGZXMQUL6Q34G3K2140TL3JDEQGDGL6DX61DJVI9X5GNIOVG0U60GXTX9705EV5A21KY1NM0C3AV5OCIP9YXF3OZZ65EI3NS50FY6N9K6A7ZN2VYTGG9HRFNMKJYRC6HN5WUUSPLLZXSPS0R0AJL8YI1Q' where id=48; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='NX5FMM59DI7ZD9BB112JIN1D8M8YUUCW9A8NOC25LL3NBY3VVRMBD4PGL7U47S3BLGK6BONHZ130KZ4QFK2BA0H4NDS2UL2OIG6DO2KX3LNNNJUNX27M01HJENL4PA0NAGYNMHG0L3VER4WPVE4F4YLX03BM7MWU9452R1B6EO5KH4NA0RR533IKHWHD88FJZCG21W7QLWDV2T2MEDZXABPEJC8O8BLY5P5PU7UVJZLVJEO1J4IJWUZ828EGQ41IM' where id=48; -update noar ti set v3='NX5FMM59DI7ZD9BB112JIN1D8M8YUUCW9A8NOC25LL3NBY3VVRMBD4PGL7U47S3BLGK6BONHZ130KZ4QFK2BA0H4NDS2UL2OIG6DO2KX3LNNNJUNX27M01HJENL4PA0NAGYNMHG0L3VER4WPVE4F4YLX03BM7MWU9452R1B6EO5KH4NA0RR533IKHWHD88FJZCG21W7QLWDV2T2MEDZXABPEJC8O8BLY5P5PU7UVJZLVJEO1J4IJWUZ828EGQ41IM' where id=48; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='DP4HVYRKY1OHXM6J5NSADI8AFXEQV4O5U1O9PQH24DDOGOK65KMBF7RDHUVUZOHJQI7855L8SMD45H90F65DW2VPGNZI00PKIE6MDYM2C2N9RB4QCWUCIB902Z54ORAOI79HS3SRZN0C6PKCO265LENOYPWOCYS78Z3J16VW0TFJWDLLP01HUG2FA38SUY8NMKY5XX3ZD6ZW64KH43TAJ9PG2TXLZM27BOL702FVKKOCT01VZ1TIBNIO282U9PIDM' where id=49; -update noar ti set v0='DP4HVYRKY1OHXM6J5NSADI8AFXEQV4O5U1O9PQH24DDOGOK65KMBF7RDHUVUZOHJQI7855L8SMD45H90F65DW2VPGNZI00PKIE6MDYM2C2N9RB4QCWUCIB902Z54ORAOI79HS3SRZN0C6PKCO265LENOYPWOCYS78Z3J16VW0TFJWDLLP01HUG2FA38SUY8NMKY5XX3ZD6ZW64KH43TAJ9PG2TXLZM27BOL702FVKKOCT01VZ1TIBNIO282U9PIDM' where id=49; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='UJCVL59R2GQVTMOEZ81QMICA726D16HQK232QLEK7IER7GV4FX9M6K1DW7D4G1V33G7WY7O1C388CUE33FGRNPSWWF9QRC2UB5PJ8QZ7YOS59FC8EBOA7FLYPKGHOYC5ETHQ3LE5B6BV2V72XAT3UL6M8R9B5UOUMP2TOCRY0JXG9MUMCD3ZLJXN14HEVNNG3VBRMOR9C495LWJAB80AY8YBO0RC0WET9YZI1TDOYSX4B8GB5WFJQ96J7L83ETHGK' where id=49; -update noar ti set v1='UJCVL59R2GQVTMOEZ81QMICA726D16HQK232QLEK7IER7GV4FX9M6K1DW7D4G1V33G7WY7O1C388CUE33FGRNPSWWF9QRC2UB5PJ8QZ7YOS59FC8EBOA7FLYPKGHOYC5ETHQ3LE5B6BV2V72XAT3UL6M8R9B5UOUMP2TOCRY0JXG9MUMCD3ZLJXN14HEVNNG3VBRMOR9C495LWJAB80AY8YBO0RC0WET9YZI1TDOYSX4B8GB5WFJQ96J7L83ETHGK' where id=49; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='OWEU4TKTFUK2F8WXPU5REQBS08WCEAGGZPZMCC0RTLRT7FYWF7V5R8MDHZNXRTHL7VOT28IOYF0NFIU89YTG2OWMUV9ULZ3WLM6NVTD3TLIF7UQ4GSTGG5HKSTG4DCCDIVWV5EEKQ5IX2496UP3ADJIQE9KKEZMHSAA0S4VFM6XCQTKHGATADSJ2IJPGE7U9U6S7IXG5U2MVLYJ1ZGJ9KN4X4X1NPULZKU37D46NKGE0E3ZLYXZIT8JZZ1XQ7CTUV' where id=49; -update noar ti set v2='OWEU4TKTFUK2F8WXPU5REQBS08WCEAGGZPZMCC0RTLRT7FYWF7V5R8MDHZNXRTHL7VOT28IOYF0NFIU89YTG2OWMUV9ULZ3WLM6NVTD3TLIF7UQ4GSTGG5HKSTG4DCCDIVWV5EEKQ5IX2496UP3ADJIQE9KKEZMHSAA0S4VFM6XCQTKHGATADSJ2IJPGE7U9U6S7IXG5U2MVLYJ1ZGJ9KN4X4X1NPULZKU37D46NKGE0E3ZLYXZIT8JZZ1XQ7CTUV' where id=49; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='64HP24BJUE39C4MPRLKFIUM1GB3B7RJJ8MEQ9PSYTWLN9LRHUE0AUI2TZLIDE8YB8SVUF0ZIZ9X0G8RUIWNSYNB70NPJLHADH53X6SH278G72BCVH0KI0UCGBJIU7GO3VW5U3JXB5LHT6TFXZ7WKGX80H8JQ04TT87X8SILUKAV3EI4978Y8E12YG3W75B1AI30YIF63IRTT0QJ7Z49A04MH3IFCBSPZP4VWZ5CT76HQ390P76X8XVJFUNVVUMMY2' where id=49; -update noar ti set v3='64HP24BJUE39C4MPRLKFIUM1GB3B7RJJ8MEQ9PSYTWLN9LRHUE0AUI2TZLIDE8YB8SVUF0ZIZ9X0G8RUIWNSYNB70NPJLHADH53X6SH278G72BCVH0KI0UCGBJIU7GO3VW5U3JXB5LHT6TFXZ7WKGX80H8JQ04TT87X8SILUKAV3EI4978Y8E12YG3W75B1AI30YIF63IRTT0QJ7Z49A04MH3IFCBSPZP4VWZ5CT76HQ390P76X8XVJFUNVVUMMY2' where id=49; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='AH6RJUA0TN3FWVAF6DAJEEXIHY5OE785ML1IUGUUINA37Q1DXMUVTQ4KTJCL4N7V4F166XKCS6UPT4O1J0CXWUI18FDCUUROXJ1GZXO3A11OJKQ6CF40PYPH4Z45L8TGBPJKITHKRAG7C9QQQEAXRKXUATYYE4ETB9DFNMZ0OCLDOI4JK8Z6ONFIBU9IL6Y4FNEQF30VW1EZB1THQ76LMNIWYEE4PNA69VRWIBZ7XSCT35JFHE4ZJOA62TDR5G004' where id=50; -update noar ti set v0='AH6RJUA0TN3FWVAF6DAJEEXIHY5OE785ML1IUGUUINA37Q1DXMUVTQ4KTJCL4N7V4F166XKCS6UPT4O1J0CXWUI18FDCUUROXJ1GZXO3A11OJKQ6CF40PYPH4Z45L8TGBPJKITHKRAG7C9QQQEAXRKXUATYYE4ETB9DFNMZ0OCLDOI4JK8Z6ONFIBU9IL6Y4FNEQF30VW1EZB1THQ76LMNIWYEE4PNA69VRWIBZ7XSCT35JFHE4ZJOA62TDR5G004' where id=50; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='3WJGO08D8N6P32S6TP8LA8EPVKK6F9H51M8E47CBQE2D2UG92ILRKC6NM31CTGNWFSH3PGSHJTHDY9UZEN41YL37PK2J9BYS63D6NT6DQ0V90L13FYFZKE5N0P3K7CGE9KZ3KRYL1T7VMK49NILEDNQN5WZGGQVHQ2G6V2W6163UL5C3AULDGYUSMHMLYDAQNCU4WS1N67HHMUKSNUKFNGYKWF5Y8GXKTL0R55FSKFONJ7KIIDMKLHCALHUAM0IK7' where id=50; -update noar ti set v1='3WJGO08D8N6P32S6TP8LA8EPVKK6F9H51M8E47CBQE2D2UG92ILRKC6NM31CTGNWFSH3PGSHJTHDY9UZEN41YL37PK2J9BYS63D6NT6DQ0V90L13FYFZKE5N0P3K7CGE9KZ3KRYL1T7VMK49NILEDNQN5WZGGQVHQ2G6V2W6163UL5C3AULDGYUSMHMLYDAQNCU4WS1N67HHMUKSNUKFNGYKWF5Y8GXKTL0R55FSKFONJ7KIIDMKLHCALHUAM0IK7' where id=50; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='BCEPH1I4N56QWD8V7ZQ8J63IBTH9VCZ00152KFWIZJO0DIIM46QA9UNRE9YJKQWCLY69YDPR3KFLNI90F9HRSCN0E6RJK038PPYM4VSMR5N387E9CD6GOUY8YPZBC3E41TEOZGEJ9WJ5HWG6VO6DNWGOW0IRN4Z4KILY4VS0ON8V1A0AL60DPGOEDE05IJUTFQW4OCVQENEWD1NP47H1FGOMAWV6G4HSY7548BELL0198FWE820OKTHG6NAEED4N9' where id=50; -update noar ti set v2='BCEPH1I4N56QWD8V7ZQ8J63IBTH9VCZ00152KFWIZJO0DIIM46QA9UNRE9YJKQWCLY69YDPR3KFLNI90F9HRSCN0E6RJK038PPYM4VSMR5N387E9CD6GOUY8YPZBC3E41TEOZGEJ9WJ5HWG6VO6DNWGOW0IRN4Z4KILY4VS0ON8V1A0AL60DPGOEDE05IJUTFQW4OCVQENEWD1NP47H1FGOMAWV6G4HSY7548BELL0198FWE820OKTHG6NAEED4N9' where id=50; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='DDYKE6YKZAILO7XJB95GWV2LPE82HPT151R32YMC6FOZKMEQFW46XH5G3ZIM6N7358EM8MDIZMJSQ35O77J0L7Z8ZRQLHU74DVY4QQRI5QR483EITJ8BYOMAN6G3XJPGLUD5ZABI333KYVU0L5G31NF6WJJMAS62KABSQ0QNE9OBCPKDLM9HJ8LUZ2KV278YPZ2N4XOWQC1VUXLSEMLA0SRQVEYXVZUONGNZUSYILI9N08NYR5EGWDN648CSF598W' where id=50; -update noar ti set v3='DDYKE6YKZAILO7XJB95GWV2LPE82HPT151R32YMC6FOZKMEQFW46XH5G3ZIM6N7358EM8MDIZMJSQ35O77J0L7Z8ZRQLHU74DVY4QQRI5QR483EITJ8BYOMAN6G3XJPGLUD5ZABI333KYVU0L5G31NF6WJJMAS62KABSQ0QNE9OBCPKDLM9HJ8LUZ2KV278YPZ2N4XOWQC1VUXLSEMLA0SRQVEYXVZUONGNZUSYILI9N08NYR5EGWDN648CSF598W' where id=50; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='IX8XV44MYZO5Q4T894ICBBS97IJEUNI9ZWUK0N13R3RT8KEWPGFG1PJ5TLKV9ZD9J75Z4DFXBHL37EYDRLUOMBY8FARXL78QPM0A6MZETUCIK3IM8IWCCK3UZAU233FREHNQ5HPF4M4T9LR5NCERZQF15TOLIV8LZ4OFZ4YE0XUPXWNBCUAFGCHOYHVRL5YWVSTI2BQ3NBVVLASBZBDVK8S2BEZ3ET9RI5W542DJWQF7FTG1MI4TM7Y8AS3ISLUZT' where id=51; -update noar ti set v0='IX8XV44MYZO5Q4T894ICBBS97IJEUNI9ZWUK0N13R3RT8KEWPGFG1PJ5TLKV9ZD9J75Z4DFXBHL37EYDRLUOMBY8FARXL78QPM0A6MZETUCIK3IM8IWCCK3UZAU233FREHNQ5HPF4M4T9LR5NCERZQF15TOLIV8LZ4OFZ4YE0XUPXWNBCUAFGCHOYHVRL5YWVSTI2BQ3NBVVLASBZBDVK8S2BEZ3ET9RI5W542DJWQF7FTG1MI4TM7Y8AS3ISLUZT' where id=51; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='BP6I9HQ6YIS0LYRJOAHTMNFDJOO3FV08BESRLO73HWVLTOR4QGNICXYMNCPIRL0BTHNFUPZUH7BC53F9EHRWIXJUWOT9MP1MA21NB5AKXN3U4PQEQZ1C895XHBB2P9U8UTO5GSCHD8DZYM2J838HACQ5RM3VV28OSP79HVOJ0IX6H6AQPYM8YKPXQIHH5SUCUWUQWL12PRBIR0G1ULZ12VUC2F706VZIN1J89VMBOTD8UDVVES8PEDZAFIC11A34X' where id=51; -update noar ti set v1='BP6I9HQ6YIS0LYRJOAHTMNFDJOO3FV08BESRLO73HWVLTOR4QGNICXYMNCPIRL0BTHNFUPZUH7BC53F9EHRWIXJUWOT9MP1MA21NB5AKXN3U4PQEQZ1C895XHBB2P9U8UTO5GSCHD8DZYM2J838HACQ5RM3VV28OSP79HVOJ0IX6H6AQPYM8YKPXQIHH5SUCUWUQWL12PRBIR0G1ULZ12VUC2F706VZIN1J89VMBOTD8UDVVES8PEDZAFIC11A34X' where id=51; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='Q06RQ2UKQZ06C0GJWGIDCRRNELZJMVF9CZ3YZKBLCILE4DI8DTG73VFR0WICBLNMOUA9L0MU4QF1MGZBQXHJWXKLKEAH4DSN66JNZSX7R0SVIWPEEPUXGZ5XEMTTUQ0NXTIL683LBJG86XK37302SX50SKMXOH9PZ4F6P9SQ3QVOZP5YM5WKMIIBIJN9U44CMOQHH631W9KMPII8ASYGP1CWYTT9398ISFSAPR5NPJ5RHEGDY9VVOHMIR8NSMGEWZ' where id=51; -update noar ti set v2='Q06RQ2UKQZ06C0GJWGIDCRRNELZJMVF9CZ3YZKBLCILE4DI8DTG73VFR0WICBLNMOUA9L0MU4QF1MGZBQXHJWXKLKEAH4DSN66JNZSX7R0SVIWPEEPUXGZ5XEMTTUQ0NXTIL683LBJG86XK37302SX50SKMXOH9PZ4F6P9SQ3QVOZP5YM5WKMIIBIJN9U44CMOQHH631W9KMPII8ASYGP1CWYTT9398ISFSAPR5NPJ5RHEGDY9VVOHMIR8NSMGEWZ' where id=51; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='CK1XXTMAKVNGHF6IHHBVZZMQTEYZ7HG8Z04HFRKN5RCM8GTUIAFPEYRK4IU4IZCSOH5RVZRV97VPGH8UD10TRJ282QHJNM2J485QPA0YCOHUPUPNFZMX6IKWA8KFHJYIAUQOJDPY8I6PQ74MA750X0ETU0F6ZWF6UONZG4O9WK1SXKPONAOKDGANNEOEZ2OYLPKN6P3R6IOVCC94WYETKHU5VEJJE01YC034GYAKABPIACQY15HVMGDNQSZ17GS3U' where id=51; -update noar ti set v3='CK1XXTMAKVNGHF6IHHBVZZMQTEYZ7HG8Z04HFRKN5RCM8GTUIAFPEYRK4IU4IZCSOH5RVZRV97VPGH8UD10TRJ282QHJNM2J485QPA0YCOHUPUPNFZMX6IKWA8KFHJYIAUQOJDPY8I6PQ74MA750X0ETU0F6ZWF6UONZG4O9WK1SXKPONAOKDGANNEOEZ2OYLPKN6P3R6IOVCC94WYETKHU5VEJJE01YC034GYAKABPIACQY15HVMGDNQSZ17GS3U' where id=51; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='M09HWRSUOLJ2POTRP5JCDYVBPMRDMBI1IW0Y7Q22YZSMDS6R7NADS0846PBSZ417UIC7VCED5OKI6GW9BLY8J7AZ1Z7YY6DDMI2M0YQXQT4KLW76UOU5W52FVNAA5PEZ8JD8HYTSF2OK2HDX5K0EHSP3ZV7X75JUKWID9PD3DDJI8YV2X3YL8L183M579APW9C600H4IXB3IZE76MBKW1KFCXDOBIJDYYX2JZ9OM29APVEGNM2FPC3GSQ57EQJ4WX' where id=52; -update noar ti set v0='M09HWRSUOLJ2POTRP5JCDYVBPMRDMBI1IW0Y7Q22YZSMDS6R7NADS0846PBSZ417UIC7VCED5OKI6GW9BLY8J7AZ1Z7YY6DDMI2M0YQXQT4KLW76UOU5W52FVNAA5PEZ8JD8HYTSF2OK2HDX5K0EHSP3ZV7X75JUKWID9PD3DDJI8YV2X3YL8L183M579APW9C600H4IXB3IZE76MBKW1KFCXDOBIJDYYX2JZ9OM29APVEGNM2FPC3GSQ57EQJ4WX' where id=52; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='S7FF8MBVYWBV1EITIENPHUW2BV6N3VOH4J4A7DOK37E9CUOF0TUJHA2FPGUZ9LS56S4OKMMRQ37Y7K2LIO0RIDOHG6JCVV0XA0CZSENOM4GOQC7QYL969ASPW5Q4Y5P2HLXON3CTTHOHB97HT34ML6CU3ELHF6DX4WQHIS9Q8PL2INFMSTZA7NO00PVS6B2BEPZ481PD9VBZENA4WA10NPHEKM6A1LWTZIO0F4R06RBKJ2G6UHJUJGJGTJDNHV2PI' where id=52; -update noar ti set v1='S7FF8MBVYWBV1EITIENPHUW2BV6N3VOH4J4A7DOK37E9CUOF0TUJHA2FPGUZ9LS56S4OKMMRQ37Y7K2LIO0RIDOHG6JCVV0XA0CZSENOM4GOQC7QYL969ASPW5Q4Y5P2HLXON3CTTHOHB97HT34ML6CU3ELHF6DX4WQHIS9Q8PL2INFMSTZA7NO00PVS6B2BEPZ481PD9VBZENA4WA10NPHEKM6A1LWTZIO0F4R06RBKJ2G6UHJUJGJGTJDNHV2PI' where id=52; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='GZD4ATOSQ5JDYQXP9TEDX71YHJFWQTV6VCWJ6TA93QF6WFC1JVJC179TWMYU4OF3GN8NANQ6UW41L60ZNW6IZVU9RROJR2EX4S433ICDLBXWUSUDTL7B94O1EOMR4OXI1DCGVBGQ4MR0991HQPLBHBU91ZOOYUCOKWU0NHFPD4XX5F8S9L2UGPCX5O0Q5MZZGZ41Y05E1GUFK5BS0AMKC55CKSDOG42W3BXO6A31W4HC485MUGKUPYDRUEJC3Y0OI' where id=52; -update noar ti set v2='GZD4ATOSQ5JDYQXP9TEDX71YHJFWQTV6VCWJ6TA93QF6WFC1JVJC179TWMYU4OF3GN8NANQ6UW41L60ZNW6IZVU9RROJR2EX4S433ICDLBXWUSUDTL7B94O1EOMR4OXI1DCGVBGQ4MR0991HQPLBHBU91ZOOYUCOKWU0NHFPD4XX5F8S9L2UGPCX5O0Q5MZZGZ41Y05E1GUFK5BS0AMKC55CKSDOG42W3BXO6A31W4HC485MUGKUPYDRUEJC3Y0OI' where id=52; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='U2YUS4MO6YA2MNGY3ATCE6LZ5ZIRW4ZVBYXVOBWTP4WC8ISQWSNXTXFP47PKHZD3JCNUQRLSF9W09TMX9NLQZG7WYY1UQCGZROSTOI0C31GJ6S81RJE3LT7L5XQO6Q6Q69A0GF3426NJ243Y2CHAXQT403IZ0V9N4TJSOJTF34EJL2MO17IND1SKA61YPCUK9BYPJ503LIPYIBBUQ5LEYTUYJRLYEFHNPPX8PTL7D4KRQDNAC2AWCFH34SA9KXN5P' where id=52; -update noar ti set v3='U2YUS4MO6YA2MNGY3ATCE6LZ5ZIRW4ZVBYXVOBWTP4WC8ISQWSNXTXFP47PKHZD3JCNUQRLSF9W09TMX9NLQZG7WYY1UQCGZROSTOI0C31GJ6S81RJE3LT7L5XQO6Q6Q69A0GF3426NJ243Y2CHAXQT403IZ0V9N4TJSOJTF34EJL2MO17IND1SKA61YPCUK9BYPJ503LIPYIBBUQ5LEYTUYJRLYEFHNPPX8PTL7D4KRQDNAC2AWCFH34SA9KXN5P' where id=52; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='YZ2XJTJJVS8SCDMGKY0T4XZFHMUE76Y6TGXZ16QTSZGBDXP9P0STCB3FWYGBMWE9IH2Y2XT0JTBP5VR4126TEI5V1VA6SP1BCD1VDCSL1V8RZMMUJIJVZAJLMWQ68FE0BOTX16OOB66VA76A8NBZFW26M8M4NPBJOKF3032E5G9H0YVUWKWH9TQAAOGF9ZJ6J86PAVOJGDEJDCYIF179WJRGW665025GLDVF2WAVUPC52YUFRE3H8WY6PAH0GRCAF' where id=53; -update noar ti set v0='YZ2XJTJJVS8SCDMGKY0T4XZFHMUE76Y6TGXZ16QTSZGBDXP9P0STCB3FWYGBMWE9IH2Y2XT0JTBP5VR4126TEI5V1VA6SP1BCD1VDCSL1V8RZMMUJIJVZAJLMWQ68FE0BOTX16OOB66VA76A8NBZFW26M8M4NPBJOKF3032E5G9H0YVUWKWH9TQAAOGF9ZJ6J86PAVOJGDEJDCYIF179WJRGW665025GLDVF2WAVUPC52YUFRE3H8WY6PAH0GRCAF' where id=53; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='GUW4DMWZGEVNXA856NJ6SRQIZ3K99KBUCH1Y9J0V63I8GSNK74NCVQ0JV0MNUYFUTMGOTZXZ59N51LXRMX8GJ1WZEXC6CB2IAYWRK0VQGSXW8RH3AA4BNYXESVQ888PW5GJOCTR7UWQI86681313LATF63IGSJNIWGNLSENWXNFXN42U7WQMM06D0YJYVJT0YFQ97SRY04FZF4BDDOIC7A1LJYV4D2RPXVNO4TWQEZYJ8PVEMHJIU4JURVHTI315Y' where id=53; -update noar ti set v1='GUW4DMWZGEVNXA856NJ6SRQIZ3K99KBUCH1Y9J0V63I8GSNK74NCVQ0JV0MNUYFUTMGOTZXZ59N51LXRMX8GJ1WZEXC6CB2IAYWRK0VQGSXW8RH3AA4BNYXESVQ888PW5GJOCTR7UWQI86681313LATF63IGSJNIWGNLSENWXNFXN42U7WQMM06D0YJYVJT0YFQ97SRY04FZF4BDDOIC7A1LJYV4D2RPXVNO4TWQEZYJ8PVEMHJIU4JURVHTI315Y' where id=53; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='VBGP5D5V2KM99SXNZISEUFL8ECH8FNEIXP78VOKMQVB8NH4FPYO9EOHKHPC06H7U2IBM7A4P748CQL11RRISDNATLSMX3H7G6Z4Z4K6ZLGQCAMPQF27120IPRWTJT2M6UBX1YOSUMHRBL3EZEB282HLSZ0UTNPMQTQASWZSFWGZNP3INXYM0GJBLAM2OSCCI7ARPNCJBJ5VQ9ZNTKPU09J7I1FB2OJ97IBP9FMRKXL0R2ZRNILK3JQ53M6YAKXW9K' where id=53; -update noar ti set v2='VBGP5D5V2KM99SXNZISEUFL8ECH8FNEIXP78VOKMQVB8NH4FPYO9EOHKHPC06H7U2IBM7A4P748CQL11RRISDNATLSMX3H7G6Z4Z4K6ZLGQCAMPQF27120IPRWTJT2M6UBX1YOSUMHRBL3EZEB282HLSZ0UTNPMQTQASWZSFWGZNP3INXYM0GJBLAM2OSCCI7ARPNCJBJ5VQ9ZNTKPU09J7I1FB2OJ97IBP9FMRKXL0R2ZRNILK3JQ53M6YAKXW9K' where id=53; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='0DGY1WNH1HRC430XLVY6KCJEB8R4OBEHJ5QD9VYY28OVE9VMWZO3BAFANRYNDZH8IDJQDNUX56F694IHQDFA9ONO5I7KTZQDGHMB57E64OX129NBGCKR5DZL1XW6O0QOFZ35G975QUCZQGXSI2JB19R5LY51IH3ZEN26FTEKAA0VFDMM4L625M7VHYL17YBPAIJOXIKUW9TAZ8MVQQ6V4CBRXCSO9FXN9TRL8F4QVGY7R7TMDZQKKW64SIX9NMP4S' where id=53; -update noar ti set v3='0DGY1WNH1HRC430XLVY6KCJEB8R4OBEHJ5QD9VYY28OVE9VMWZO3BAFANRYNDZH8IDJQDNUX56F694IHQDFA9ONO5I7KTZQDGHMB57E64OX129NBGCKR5DZL1XW6O0QOFZ35G975QUCZQGXSI2JB19R5LY51IH3ZEN26FTEKAA0VFDMM4L625M7VHYL17YBPAIJOXIKUW9TAZ8MVQQ6V4CBRXCSO9FXN9TRL8F4QVGY7R7TMDZQKKW64SIX9NMP4S' where id=53; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='148KU98F1DWGNJF21QI6TYP4RVND6DX0EB0SPRIZW9CJDCGQA3P4VWTQQUCK9A9V9J0J7QCUZ0SGJ8L1OW6ZHGNZ21P6MHP1N5JI3PKQY6ZMI9E5NOQVPCFRHV06FR0YH1ZDYYVOKAZIYM7DIFZYX3QS6P9XNB3EQIU6EDTIGF6W3VL2I2ZWE0IKA7TD5OFBVAV6ACMYJPFCYABXZMPM6O56D4LC5Z8RIHWZ9TDEBGH6JE2NYJ7RI04SQN4X1A3H3' where id=54; -update noar ti set v0='148KU98F1DWGNJF21QI6TYP4RVND6DX0EB0SPRIZW9CJDCGQA3P4VWTQQUCK9A9V9J0J7QCUZ0SGJ8L1OW6ZHGNZ21P6MHP1N5JI3PKQY6ZMI9E5NOQVPCFRHV06FR0YH1ZDYYVOKAZIYM7DIFZYX3QS6P9XNB3EQIU6EDTIGF6W3VL2I2ZWE0IKA7TD5OFBVAV6ACMYJPFCYABXZMPM6O56D4LC5Z8RIHWZ9TDEBGH6JE2NYJ7RI04SQN4X1A3H3' where id=54; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='XYGVV4QM9AB348JA8DYS2NC2QZMRTU8I2T8BTZBX3CDJOXQ5NBXS041QC29M44YKT7FCPXIO9S3KTDV713VS4LDA01DD1SEDXCL2056NTPEMEOKZZD6BSJZ0FX7PMI739KFLBSTC5I78H9OU49LWI0VWW9IE4P6YXNG3DTX6J12E4GHFKG9OHTGO3WSS7J687RCQXHO1SZL7O21LYYC89FBBB1W651TF5CYWBVANH7L27I63BKJMGX7UA2OXNO49M' where id=54; -update noar ti set v1='XYGVV4QM9AB348JA8DYS2NC2QZMRTU8I2T8BTZBX3CDJOXQ5NBXS041QC29M44YKT7FCPXIO9S3KTDV713VS4LDA01DD1SEDXCL2056NTPEMEOKZZD6BSJZ0FX7PMI739KFLBSTC5I78H9OU49LWI0VWW9IE4P6YXNG3DTX6J12E4GHFKG9OHTGO3WSS7J687RCQXHO1SZL7O21LYYC89FBBB1W651TF5CYWBVANH7L27I63BKJMGX7UA2OXNO49M' where id=54; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='IS2I84XDTHEEC1OPZF2MXH3VU03HZ43FCKBSHHEKR11YXP49QILMKNQUZIA807I5XZR80CIVA17LU546XJWJ6TCHDO3OIGJ7LVWXLBNDM802AR2E7E19XSUDI4M4XRX17VF5TSUFI396CU6PH2FOPBD908RP5F9MBAQRNSAN2STK8YY7HLCJY0VQIP4JIYJ1XRMNA29JKIT9JUKFCPN33S6GA3OCHEWLSGT1AG3MQEL21G3TT7DXACC8ASMGAF4M2' where id=54; -update noar ti set v2='IS2I84XDTHEEC1OPZF2MXH3VU03HZ43FCKBSHHEKR11YXP49QILMKNQUZIA807I5XZR80CIVA17LU546XJWJ6TCHDO3OIGJ7LVWXLBNDM802AR2E7E19XSUDI4M4XRX17VF5TSUFI396CU6PH2FOPBD908RP5F9MBAQRNSAN2STK8YY7HLCJY0VQIP4JIYJ1XRMNA29JKIT9JUKFCPN33S6GA3OCHEWLSGT1AG3MQEL21G3TT7DXACC8ASMGAF4M2' where id=54; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='R9NGX3RGHDCNUMSPBGBNZ2Q0EOJVYLDJ210HAOCU81FL18LJQOTVQ46H537P7SF3CTITMO7BGVTC5MGDY8VXCXPX1514VP31BIHOWLTM7R4ALHWBTYMW4EXMF87YDU6T1Z3Z3VRNIDLH0N3ZNOT215W761ZEXZRQEWY0629YPOI7CUS9LD0I7AZ1QV41J0F0WGZ34G9CHL6W2IOTZOUK76GV4QUEI97VH6SAG8PRTLE73D8J8ISLL0DHDUQH42YSN' where id=54; -update noar ti set v3='R9NGX3RGHDCNUMSPBGBNZ2Q0EOJVYLDJ210HAOCU81FL18LJQOTVQ46H537P7SF3CTITMO7BGVTC5MGDY8VXCXPX1514VP31BIHOWLTM7R4ALHWBTYMW4EXMF87YDU6T1Z3Z3VRNIDLH0N3ZNOT215W761ZEXZRQEWY0629YPOI7CUS9LD0I7AZ1QV41J0F0WGZ34G9CHL6W2IOTZOUK76GV4QUEI97VH6SAG8PRTLE73D8J8ISLL0DHDUQH42YSN' where id=54; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='RXITDSJRNHA6P2EMDU7N0ELY7XBRKYUNBBOLGP1TJU7QPKWEOYIW33WN7F5CYBOME1GP8R5B8MQ3X54FKUJB3ISVW3KHQ0LHV3KWA0T4DXFGFEMKY13D1Y2JQMNA06XOK6DJUVPHV66J8JYKWVFI14ELD4BQSHIJ8YWCID9RJJXMKEQPK2QN6CUS75Y6JEW7ZM15DGKJ58UEC6VP0XFX76MYHL3JMSCUE74T1VCP7MH1LAOD17PE0UZ5XWQC3O9LT' where id=55; -update noar ti set v0='RXITDSJRNHA6P2EMDU7N0ELY7XBRKYUNBBOLGP1TJU7QPKWEOYIW33WN7F5CYBOME1GP8R5B8MQ3X54FKUJB3ISVW3KHQ0LHV3KWA0T4DXFGFEMKY13D1Y2JQMNA06XOK6DJUVPHV66J8JYKWVFI14ELD4BQSHIJ8YWCID9RJJXMKEQPK2QN6CUS75Y6JEW7ZM15DGKJ58UEC6VP0XFX76MYHL3JMSCUE74T1VCP7MH1LAOD17PE0UZ5XWQC3O9LT' where id=55; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='74IZ0QHEDY8EQQ2A6LQLXXZS81RQS32X36LLNHJS56QOGZAQUL1G05JU1UE41JICQCC43LC4YV9COGWQMYH9MB18MI7RYJLTJQ0BVZ3U8SHPORLQSB4DRJ2OYD9S0K0XD2O9F6K0IALIXM1PUIJC55G3JKI7FXJHVG88AL28WCXUT1COLUTSQBO4N7KVA0JFTSPGKT2MD7ETMYLVTOCOKT1M57L85OBX620OOZ8HAV60OW9SCWMGG3027NF77TX7G' where id=55; -update noar ti set v1='74IZ0QHEDY8EQQ2A6LQLXXZS81RQS32X36LLNHJS56QOGZAQUL1G05JU1UE41JICQCC43LC4YV9COGWQMYH9MB18MI7RYJLTJQ0BVZ3U8SHPORLQSB4DRJ2OYD9S0K0XD2O9F6K0IALIXM1PUIJC55G3JKI7FXJHVG88AL28WCXUT1COLUTSQBO4N7KVA0JFTSPGKT2MD7ETMYLVTOCOKT1M57L85OBX620OOZ8HAV60OW9SCWMGG3027NF77TX7G' where id=55; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='QWSM80WQLJQSVD81V9ZZ80UIDKNPZCYZGTPSNIP9P4KABUDS0P9Y2EM5RMPP8X5NNW8LQ81NE3A9B2O3KIAOYBUFTSFFCBBY8HOO3XGY57WDD5L9439BUXBZZ0EWLUU2U9B4LEF35WUA4AMIPWG8LRHQOD4S50NUSKI5CXOBFQGDH4V0W1JFHY58C5W2KO584GTDN1QENOAR59DWXB8A1DJ28MO4D4SYSOV5X2GU57NX6WO3U2SFGEY7B98FW6PVZ' where id=55; -update noar ti set v2='QWSM80WQLJQSVD81V9ZZ80UIDKNPZCYZGTPSNIP9P4KABUDS0P9Y2EM5RMPP8X5NNW8LQ81NE3A9B2O3KIAOYBUFTSFFCBBY8HOO3XGY57WDD5L9439BUXBZZ0EWLUU2U9B4LEF35WUA4AMIPWG8LRHQOD4S50NUSKI5CXOBFQGDH4V0W1JFHY58C5W2KO584GTDN1QENOAR59DWXB8A1DJ28MO4D4SYSOV5X2GU57NX6WO3U2SFGEY7B98FW6PVZ' where id=55; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='4QCW3GZV2PRFCJFL1BNHE4BIEYWLTO32S0XJ803GNHMRQSUEVSWW419I7NR8O2H0MCO0S21BUAB4P6ZQ224QSJSJ7KTP8OB00AQSDAYRDCM5BKVVQTYBJN7LC0VY65YOEWMTZJSLERWV5UIZC5MBI5B77GLDZS1OLHRY2829LV6NH4P2VD955NWLO5U15DZSZP4Z23AHUOULYIJODPR6I558JLJ1O9VHJVYDX8S2BNHKEOYZION1XQ9ZCV2IKBJ0R' where id=55; -update noar ti set v3='4QCW3GZV2PRFCJFL1BNHE4BIEYWLTO32S0XJ803GNHMRQSUEVSWW419I7NR8O2H0MCO0S21BUAB4P6ZQ224QSJSJ7KTP8OB00AQSDAYRDCM5BKVVQTYBJN7LC0VY65YOEWMTZJSLERWV5UIZC5MBI5B77GLDZS1OLHRY2829LV6NH4P2VD955NWLO5U15DZSZP4Z23AHUOULYIJODPR6I558JLJ1O9VHJVYDX8S2BNHKEOYZION1XQ9ZCV2IKBJ0R' where id=55; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='RBC709DFZFIRQVPQJUA4NC5DUQ7JLTSUL7LP4OT32OGWIVEI12O9CTVFKY0T77DACEHDNJ2IRIJ224Q6HXZ6GDT0ZBQ9FI1C82SSZ3J4YECVL17SOUBT5EMUPU4YV5EKRFY27MJ7E97DCWP5BBVPWVFLZQ2HAT1SVJKGWBD6LN1BX7XBJJBDXKKNNFG1X81EUYX5LKB62RW666325USBGASVFAYQ89QV64PBH9KXZB396MVQPFM7KL428798YLRM8' where id=56; -update noar ti set v0='RBC709DFZFIRQVPQJUA4NC5DUQ7JLTSUL7LP4OT32OGWIVEI12O9CTVFKY0T77DACEHDNJ2IRIJ224Q6HXZ6GDT0ZBQ9FI1C82SSZ3J4YECVL17SOUBT5EMUPU4YV5EKRFY27MJ7E97DCWP5BBVPWVFLZQ2HAT1SVJKGWBD6LN1BX7XBJJBDXKKNNFG1X81EUYX5LKB62RW666325USBGASVFAYQ89QV64PBH9KXZB396MVQPFM7KL428798YLRM8' where id=56; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='HO20SZKYX0NH9STYSSEAXDFIS2KLNAHQGEGW16T89UVZHCA1EF8V6G6MYFASOURYNS59PMGVETIY8P5QAQYZS3K6P7KVJP4EMOZ9Y2OGAABTZWH3GJ6HSDDAND5L74BW3BYPZ2J0QZ6B2HP3G807B8NJ95U2YUAVELZ9PDG7G6X2YMZUHFPLGYNGNM4JA9LKTZ2PTNY3W31I7ZBZBIVFDMQPYLE9BE6NEGDG3OJD1I8ORZ0UYVK6XLQLKBMKGD5ZL' where id=56; -update noar ti set v1='HO20SZKYX0NH9STYSSEAXDFIS2KLNAHQGEGW16T89UVZHCA1EF8V6G6MYFASOURYNS59PMGVETIY8P5QAQYZS3K6P7KVJP4EMOZ9Y2OGAABTZWH3GJ6HSDDAND5L74BW3BYPZ2J0QZ6B2HP3G807B8NJ95U2YUAVELZ9PDG7G6X2YMZUHFPLGYNGNM4JA9LKTZ2PTNY3W31I7ZBZBIVFDMQPYLE9BE6NEGDG3OJD1I8ORZ0UYVK6XLQLKBMKGD5ZL' where id=56; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='OKTKCF4MVKK4NY2RXL3V7W3R7IR9J9LR9W6C6UKFQL7RNGPZNCI2RCC7XR46FXPDXRYQRSHQORE96WQC369XKDWSD47TM3IJDMYEDEDZAH3T6H8VO62NV885GRCOSL9SDNLRSUQD4ZNPMOGQUGR2KWPFX947B2LETD9ARJEWDIZW4IQU730J5EQ3NFCQ1OJ621VV8O4R58WZ2UNNEUE4S32YBELKJEJQLI6E63PRIAPHFBAT6P5A4MBNMK6U3HVJ4' where id=56; -update noar ti set v2='OKTKCF4MVKK4NY2RXL3V7W3R7IR9J9LR9W6C6UKFQL7RNGPZNCI2RCC7XR46FXPDXRYQRSHQORE96WQC369XKDWSD47TM3IJDMYEDEDZAH3T6H8VO62NV885GRCOSL9SDNLRSUQD4ZNPMOGQUGR2KWPFX947B2LETD9ARJEWDIZW4IQU730J5EQ3NFCQ1OJ621VV8O4R58WZ2UNNEUE4S32YBELKJEJQLI6E63PRIAPHFBAT6P5A4MBNMK6U3HVJ4' where id=56; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='A3TR0403QJMOPNQ7N9ETM6GMAAXH0X05S3GZ7OY0K2JUHRYUFVQ4AGOIYNZGVEE7KO90CWTUBWKPHZLP6RMSGV46HCZMY5AD2B5QNP5R3K0MT5PX5ZMQZ0ONOFP00JY2E7BUY3U4J6TF4W1P7OJ46EHAN3IWQQ336RUJ7OCJWAWW1WXKYNS9QMFN0I1FSQU2LFD15S4JL2UWH7D34M2R6DJGKPOWC6T1QNKH1CP3PA43SSS5KNMECHAEQ0Y2STGRS' where id=56; -update noar ti set v3='A3TR0403QJMOPNQ7N9ETM6GMAAXH0X05S3GZ7OY0K2JUHRYUFVQ4AGOIYNZGVEE7KO90CWTUBWKPHZLP6RMSGV46HCZMY5AD2B5QNP5R3K0MT5PX5ZMQZ0ONOFP00JY2E7BUY3U4J6TF4W1P7OJ46EHAN3IWQQ336RUJ7OCJWAWW1WXKYNS9QMFN0I1FSQU2LFD15S4JL2UWH7D34M2R6DJGKPOWC6T1QNKH1CP3PA43SSS5KNMECHAEQ0Y2STGRS' where id=56; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='K15RP1F2RBWKQYVW3YPN70EJZJOQ5UJ4ETF3RUR8DWERQB9YWKZWCET3XPRCQEXB4NQ14NB8L7GPFSSZX2P6VBLMJRK0KM81ZCJXZXK51QAH930SLZ9GGMKU6JCQVFLOD9VK7YLZIDNJWY4UXXNXCU8SVWF1TTZMD2INR689AXJ71UYU5AFS07NVK4590P7CBOXMPYKJ1FQGVNTQYUTDVIX73ATXF3F0QKBGB725O4X0YGNT53F3TI2J256R3UTPS' where id=57; -update noar ti set v0='K15RP1F2RBWKQYVW3YPN70EJZJOQ5UJ4ETF3RUR8DWERQB9YWKZWCET3XPRCQEXB4NQ14NB8L7GPFSSZX2P6VBLMJRK0KM81ZCJXZXK51QAH930SLZ9GGMKU6JCQVFLOD9VK7YLZIDNJWY4UXXNXCU8SVWF1TTZMD2INR689AXJ71UYU5AFS07NVK4590P7CBOXMPYKJ1FQGVNTQYUTDVIX73ATXF3F0QKBGB725O4X0YGNT53F3TI2J256R3UTPS' where id=57; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='EB8LKTZO0149MRXMX2V2SPEC9G1N2R5LHKL1XNSEJ3W4R626KV56I4HE33S08KZQLWCF89GGW28WD3QJIIOE52D9WUKJVLQDGU8JWC9H5JVJFQLYKA5GIP11HHGF9JP5JXTIWWCWM169PIIQY89HADZG0FB4PEC86ULCD4Z8N75YCACUXQWYR8QP6QJ5T5RN7RDQIIDIH78T90H7SFJVY4C8N9FL19IJ1QYBS75QFFN58MBKSPJWNYNCYRUZXKZJT' where id=57; -update noar ti set v1='EB8LKTZO0149MRXMX2V2SPEC9G1N2R5LHKL1XNSEJ3W4R626KV56I4HE33S08KZQLWCF89GGW28WD3QJIIOE52D9WUKJVLQDGU8JWC9H5JVJFQLYKA5GIP11HHGF9JP5JXTIWWCWM169PIIQY89HADZG0FB4PEC86ULCD4Z8N75YCACUXQWYR8QP6QJ5T5RN7RDQIIDIH78T90H7SFJVY4C8N9FL19IJ1QYBS75QFFN58MBKSPJWNYNCYRUZXKZJT' where id=57; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='R88IS6E8I6IU48YQ9NV9QPD6T0CSS7WNRV6YCM5GYWCROXB5A3V9RPK4PJYR9R9K9WGG234AF7ICPVMNRBVSS1LN83JO7FQK85GBZSKYJO688XJQDDRXOVXA2YD7XUEE8TSJ6366QIA4C4YY00OB9Q13G4A5YGUBFDF286ENE4HHKWGII2AEBFPOTQHNHSKJ80UBB2PC6P2MBPGCN8D56LF4TL40D9V47BZMR06324ZRNM2NR0OLSHWV2U57YQD9G' where id=57; -update noar ti set v2='R88IS6E8I6IU48YQ9NV9QPD6T0CSS7WNRV6YCM5GYWCROXB5A3V9RPK4PJYR9R9K9WGG234AF7ICPVMNRBVSS1LN83JO7FQK85GBZSKYJO688XJQDDRXOVXA2YD7XUEE8TSJ6366QIA4C4YY00OB9Q13G4A5YGUBFDF286ENE4HHKWGII2AEBFPOTQHNHSKJ80UBB2PC6P2MBPGCN8D56LF4TL40D9V47BZMR06324ZRNM2NR0OLSHWV2U57YQD9G' where id=57; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='QF45GZSFEVMJP97CNQ88Y3QB37GBAUCY3GU5FCT0SPVXY5BRV2ZYLBEX78TU92T0UUA4W0G9RPQZU1K5BX16430S742JKFN4RSVMAZXZBZM5VN6XL4OAWFP5V8J4KEZNNU3I34C1JSS0S3B3K9YE2J44LH2WFQKFRKDARIG2BLGJCD1K5HJ2RWG4TUAFGR84EOUMKT2G6NAQCBR7ZFW3EW15TTWAEVXH9BE2PWBOTN17CKVI3LFP3VZ22V33ZXX90' where id=57; -update noar ti set v3='QF45GZSFEVMJP97CNQ88Y3QB37GBAUCY3GU5FCT0SPVXY5BRV2ZYLBEX78TU92T0UUA4W0G9RPQZU1K5BX16430S742JKFN4RSVMAZXZBZM5VN6XL4OAWFP5V8J4KEZNNU3I34C1JSS0S3B3K9YE2J44LH2WFQKFRKDARIG2BLGJCD1K5HJ2RWG4TUAFGR84EOUMKT2G6NAQCBR7ZFW3EW15TTWAEVXH9BE2PWBOTN17CKVI3LFP3VZ22V33ZXX90' where id=57; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='QZ1JZYIAK1ZMSVJ6BA4RZQBAOH4ULI4GFI8DLQLVT0HSYI823QC0AZIYW3XRB6V3MLKHKD20VQ532FZGGZNO7X3NM43NFYDF7IKHULTZFIVSIVR9XXXSNA79C8JLJN8UZAKQ4M7FGCSS3DWPJIXWJMO0BVSM4CPV18LRLEBP5W8TWWJ9JJ1TBG7V20JXE373LL3M97U25RV256RLO7CW0DQI3LYRWAHX42ZXW196N42WPLTD0DZFJJPR5E3477F6M' where id=58; -update noar ti set v0='QZ1JZYIAK1ZMSVJ6BA4RZQBAOH4ULI4GFI8DLQLVT0HSYI823QC0AZIYW3XRB6V3MLKHKD20VQ532FZGGZNO7X3NM43NFYDF7IKHULTZFIVSIVR9XXXSNA79C8JLJN8UZAKQ4M7FGCSS3DWPJIXWJMO0BVSM4CPV18LRLEBP5W8TWWJ9JJ1TBG7V20JXE373LL3M97U25RV256RLO7CW0DQI3LYRWAHX42ZXW196N42WPLTD0DZFJJPR5E3477F6M' where id=58; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='ED5VEUPZ5V07RKUURO4MU47D6S19HO4KBP6Z4E4QH1QEMQ88B43093HGPGLNRJRHPNKZTY7LH0DRQJT5Y0VTZXHERE2K4HFCPXNRBGVZ7W7HVZUJKDPBIA1T5RFIEKCDHARZB849AODU2IXNL2J8SAZKJBG48SX8RQ43RT2ZVGZJGWS5BMICTSP5YORP07PFZZX4UBLT36AJJVOP3J1DHCJ2OLZWJ24P56XSA5ZFS2QP93VUUIW9UJK5HGOPYA09C' where id=58; -update noar ti set v1='ED5VEUPZ5V07RKUURO4MU47D6S19HO4KBP6Z4E4QH1QEMQ88B43093HGPGLNRJRHPNKZTY7LH0DRQJT5Y0VTZXHERE2K4HFCPXNRBGVZ7W7HVZUJKDPBIA1T5RFIEKCDHARZB849AODU2IXNL2J8SAZKJBG48SX8RQ43RT2ZVGZJGWS5BMICTSP5YORP07PFZZX4UBLT36AJJVOP3J1DHCJ2OLZWJ24P56XSA5ZFS2QP93VUUIW9UJK5HGOPYA09C' where id=58; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='Y6A1TF3MO7TAMRXSUIAXR2SC9T088BX8RZ5OD8SC2OPX0P9ZFD1DR9WCB9R3QMI3F9OSZF7PJU8VC8D6BSAA5NX9HIIOY6ZKWGG0LLHNHYHUIUBT3FHJ4M7HO51243WZNPRRU6GSFL0EHNX2FUMXJ1KWCO22U1YA46F42PDE1Z4RU05XNF0GR2I5XN8DNWPF1L7XCUVTF1DDXON2MS16V43HFK3KDD0I1ZPD53ZXHYHLAMSWOADUX1K6RH7KNOBJ0' where id=58; -update noar ti set v2='Y6A1TF3MO7TAMRXSUIAXR2SC9T088BX8RZ5OD8SC2OPX0P9ZFD1DR9WCB9R3QMI3F9OSZF7PJU8VC8D6BSAA5NX9HIIOY6ZKWGG0LLHNHYHUIUBT3FHJ4M7HO51243WZNPRRU6GSFL0EHNX2FUMXJ1KWCO22U1YA46F42PDE1Z4RU05XNF0GR2I5XN8DNWPF1L7XCUVTF1DDXON2MS16V43HFK3KDD0I1ZPD53ZXHYHLAMSWOADUX1K6RH7KNOBJ0' where id=58; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='VBIEKOIR2GDLKHZQVYIRRO3XUTNIPEPDGKYY5P4UNRZO9LS0AF8M5O2YMIL2247EWPJ88FY4PFP572IWGCWOWI6WHFYGXNIDOH4O4N05W3889J9HAW6ZQMG6BNKCM2NJ0VVG0KCKWWNPQT6FDZF1WXTCI1WYV5MUJ8ZW661HCFG7SQCO4SKLFI9TKBUXIA8F257ISRY07B78A9A321WG63JHJCTUJH7DXAW0L8A8HFLU7AOCU1GJ38TCD7GACX7PP' where id=58; -update noar ti set v3='VBIEKOIR2GDLKHZQVYIRRO3XUTNIPEPDGKYY5P4UNRZO9LS0AF8M5O2YMIL2247EWPJ88FY4PFP572IWGCWOWI6WHFYGXNIDOH4O4N05W3889J9HAW6ZQMG6BNKCM2NJ0VVG0KCKWWNPQT6FDZF1WXTCI1WYV5MUJ8ZW661HCFG7SQCO4SKLFI9TKBUXIA8F257ISRY07B78A9A321WG63JHJCTUJH7DXAW0L8A8HFLU7AOCU1GJ38TCD7GACX7PP' where id=58; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='2BUNCDFLTKP29WTPYHUAP60FHR16VMVZYB5L02EKAE1BCO6EE4ED6NO8BCPC8CZWMH21BTV5IX774YUE4Q3BF94HOP6NPLK42UQG56HQ7GQ9HUQRK43TXIN40G8XNEPS7YMTNFISCFE0MY65HAQ2R3C6VRJ5NOF90A6OM7JMHBJZ9Y3RVMUYEM5KH1AYPW8FSAUGNMJTYAX0IISIZ4CROXG2INWTCYWIZLI2XKK3BQQPX57NS3F12NHC05STLOB6W' where id=59; -update noar ti set v0='2BUNCDFLTKP29WTPYHUAP60FHR16VMVZYB5L02EKAE1BCO6EE4ED6NO8BCPC8CZWMH21BTV5IX774YUE4Q3BF94HOP6NPLK42UQG56HQ7GQ9HUQRK43TXIN40G8XNEPS7YMTNFISCFE0MY65HAQ2R3C6VRJ5NOF90A6OM7JMHBJZ9Y3RVMUYEM5KH1AYPW8FSAUGNMJTYAX0IISIZ4CROXG2INWTCYWIZLI2XKK3BQQPX57NS3F12NHC05STLOB6W' where id=59; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='UHHMAEEGFD4SWCMUUNKK4ZQ212JPB5IAQ8V7CKUOX7S6PWS4BEWK22IO392JZ6CBDHR1CBZ8XE81W3LFJCYH8Q5GGN23F4Q7PMISWICRL7VVH7E6385G57ADOGI2I52M5AF5NKAEWM0G9GROPQOPBHHYL9VJWCY7RZIK1K16WB6BNP3J0LKJ6XCE5I4N5VOKWN68AMFEFOOPE19RIS1WSDS5LXW2JUE0C9O2KNKXI75DU95MH8YKVHAVRV2SBIT94' where id=59; -update noar ti set v1='UHHMAEEGFD4SWCMUUNKK4ZQ212JPB5IAQ8V7CKUOX7S6PWS4BEWK22IO392JZ6CBDHR1CBZ8XE81W3LFJCYH8Q5GGN23F4Q7PMISWICRL7VVH7E6385G57ADOGI2I52M5AF5NKAEWM0G9GROPQOPBHHYL9VJWCY7RZIK1K16WB6BNP3J0LKJ6XCE5I4N5VOKWN68AMFEFOOPE19RIS1WSDS5LXW2JUE0C9O2KNKXI75DU95MH8YKVHAVRV2SBIT94' where id=59; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='OKLA2E4KX2PJANI9HK5YYMORWXX4ITMQR1AGPQB85O9ODQM959YOO995WEUBUXNWSRJIV3QJLAFLWETD4B59442RDVFEEWTSALJYHXJCBMPCY6JOYAM9KMZ1SSMVIFWU7ANPEEJBL6Q9WKPGA1ZVEOWQ2VOD0HO0QXYNAUDM56Y3FUM40FEK3762DL2UD0DPW1W6J0ME4YZS9RG9YGW0QEOQY8ABHB356TRCD04E34B8Q6E3DS73M06XRES8VI8S8' where id=59; -update noar ti set v2='OKLA2E4KX2PJANI9HK5YYMORWXX4ITMQR1AGPQB85O9ODQM959YOO995WEUBUXNWSRJIV3QJLAFLWETD4B59442RDVFEEWTSALJYHXJCBMPCY6JOYAM9KMZ1SSMVIFWU7ANPEEJBL6Q9WKPGA1ZVEOWQ2VOD0HO0QXYNAUDM56Y3FUM40FEK3762DL2UD0DPW1W6J0ME4YZS9RG9YGW0QEOQY8ABHB356TRCD04E34B8Q6E3DS73M06XRES8VI8S8' where id=59; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='K7U5XC1CN76Z4GE40A2GA4099RZATO348S8FG0VRGJ6YX4B2SOR7FOUXW0ZSY0K1QZX4TGXSN9IUAU3FR4F50FXI45KZGZZKBTTZ7S25NI6XPDLUUVWK1H1BRPE3B6TIEV50VLEYDJLO8897QVZWUAGA6SBP19Y3BT7T2VJJ4SE5XAO8PS5R77723YKPM9DBV6V6CFKTBY9Z9OMZQH220TMBMK5EREEHJEGCEANVHBCETCODDICXC8OZZEEE6ZXHV' where id=59; -update noar ti set v3='K7U5XC1CN76Z4GE40A2GA4099RZATO348S8FG0VRGJ6YX4B2SOR7FOUXW0ZSY0K1QZX4TGXSN9IUAU3FR4F50FXI45KZGZZKBTTZ7S25NI6XPDLUUVWK1H1BRPE3B6TIEV50VLEYDJLO8897QVZWUAGA6SBP19Y3BT7T2VJJ4SE5XAO8PS5R77723YKPM9DBV6V6CFKTBY9Z9OMZQH220TMBMK5EREEHJEGCEANVHBCETCODDICXC8OZZEEE6ZXHV' where id=59; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='3L36VFEBBYLBP80FP3EOCYZB85DMKVDPLHD1K7IEZAEVXJNP0HFSV7FNHROIAD69TUJZTYIRLJ68XSPXOKKKL83Q92CQN6FK7KY0YWQYQNVT98XMIN41EJIN2SDB8CMOLVLAA28WM3071GNXAEGFUGG1QST3OCCPV5Y7CTTPZWD6RE49QLPH5DP68U4FINLLJBH1LYJEGLUPVI2K319CJD1AQ213BC1ZK5ESYMD32TQLDIEZOB55DJGUCCMEGQ9NR' where id=60; -update noar ti set v0='3L36VFEBBYLBP80FP3EOCYZB85DMKVDPLHD1K7IEZAEVXJNP0HFSV7FNHROIAD69TUJZTYIRLJ68XSPXOKKKL83Q92CQN6FK7KY0YWQYQNVT98XMIN41EJIN2SDB8CMOLVLAA28WM3071GNXAEGFUGG1QST3OCCPV5Y7CTTPZWD6RE49QLPH5DP68U4FINLLJBH1LYJEGLUPVI2K319CJD1AQ213BC1ZK5ESYMD32TQLDIEZOB55DJGUCCMEGQ9NR' where id=60; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='9QEMVRKCXXE0XM5OVA3MFXIMZ7XLAGAGGQ5UBZLBJG157XO7QSAUW0STGIY0VBZNGJQG9BWOWINUH9KZTR9PFZZ9M3YPK44HCMF19H2EE5P4TILECACI0VTWNXCQBUZHO9MKOUCQEK1GGX01HZB6DGBSH2JI1ZHNLYFJFE7OYDNJVSYAPCYALSDVO9FR2PQ935G1GQ0UIWJ6MZA88JM69NRR6MDJVV6Q0SJVXYSATJSR3SF449KGO6EAKAXPKM1NA' where id=60; -update noar ti set v1='9QEMVRKCXXE0XM5OVA3MFXIMZ7XLAGAGGQ5UBZLBJG157XO7QSAUW0STGIY0VBZNGJQG9BWOWINUH9KZTR9PFZZ9M3YPK44HCMF19H2EE5P4TILECACI0VTWNXCQBUZHO9MKOUCQEK1GGX01HZB6DGBSH2JI1ZHNLYFJFE7OYDNJVSYAPCYALSDVO9FR2PQ935G1GQ0UIWJ6MZA88JM69NRR6MDJVV6Q0SJVXYSATJSR3SF449KGO6EAKAXPKM1NA' where id=60; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='AQHKV58DFWVFKHOVCOLNNAVNAIF00V7BF853WFJ4LL3KLMV77H5A0PIOLCRZJ64P1KEKCI7NSEE9990XIRUU6RN700DIT2E3BB0LMWDVVW0FT7QYVY62JYOIKT8BV5O0Z785BEBNQI3GYL5JS8INF5LYI75QWAE8PL8JQN51IA6XNARG7AFEHKKBU59KT8V7WU4VFEAZ03MUIY8JBLJDZB8DD0GBBYZJ8OJSYQTUL3SDT5HECE2I3M5ZHLSP9YAQB' where id=60; -update noar ti set v2='AQHKV58DFWVFKHOVCOLNNAVNAIF00V7BF853WFJ4LL3KLMV77H5A0PIOLCRZJ64P1KEKCI7NSEE9990XIRUU6RN700DIT2E3BB0LMWDVVW0FT7QYVY62JYOIKT8BV5O0Z785BEBNQI3GYL5JS8INF5LYI75QWAE8PL8JQN51IA6XNARG7AFEHKKBU59KT8V7WU4VFEAZ03MUIY8JBLJDZB8DD0GBBYZJ8OJSYQTUL3SDT5HECE2I3M5ZHLSP9YAQB' where id=60; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='IOGT7GFDG6PXPV2BRZV3UF9HPEZEM7O0Z08PO5P6GEGGI7DAS3RL4DE4XEMLKT9LK10TBMHCENBJ1QIKH0ZR9HENZIPQHNOJKOFNL0FG1XAB96U1E9B1QVUVX0IH5XFUCT5I2VX1FBBUY70KFKTLNYCLFDOF3WQUO4C41RBME6D270F5LRFRF7UJ82NQNJXPP2QJUN6VY1TPCPW2X0G7EKPCAF0BFYCGXNLS56NSWRF8Z0VHXPQ0P2UWTZPSW6BN6' where id=60; -update noar ti set v3='IOGT7GFDG6PXPV2BRZV3UF9HPEZEM7O0Z08PO5P6GEGGI7DAS3RL4DE4XEMLKT9LK10TBMHCENBJ1QIKH0ZR9HENZIPQHNOJKOFNL0FG1XAB96U1E9B1QVUVX0IH5XFUCT5I2VX1FBBUY70KFKTLNYCLFDOF3WQUO4C41RBME6D270F5LRFRF7UJ82NQNJXPP2QJUN6VY1TPCPW2X0G7EKPCAF0BFYCGXNLS56NSWRF8Z0VHXPQ0P2UWTZPSW6BN6' where id=60; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='CUPJV9P6FPRTVUW5W7Z3PQ3H86POO3DAAFLXWT8G3OA2D9V36I2V33OG6Q4ADFO4B9FPKV1946Y5GHT947M6OB6OL7CU5EMHZW05XLCBVOLKMDGYA4DDVB83XIJB3KRBOUEVXM64FSU2WM6IZQR6LH8ZOCYHHO82GG1ZKSSF5L2VK58Y7LJR90LFBZE05TOZ712E6RNM0XTVSYAHMDELWT8E0ANMTVYVRRVU1K4QG7XT3B6CBUA37WP3SV8Y3SUSQ' where id=61; -update noar ti set v0='CUPJV9P6FPRTVUW5W7Z3PQ3H86POO3DAAFLXWT8G3OA2D9V36I2V33OG6Q4ADFO4B9FPKV1946Y5GHT947M6OB6OL7CU5EMHZW05XLCBVOLKMDGYA4DDVB83XIJB3KRBOUEVXM64FSU2WM6IZQR6LH8ZOCYHHO82GG1ZKSSF5L2VK58Y7LJR90LFBZE05TOZ712E6RNM0XTVSYAHMDELWT8E0ANMTVYVRRVU1K4QG7XT3B6CBUA37WP3SV8Y3SUSQ' where id=61; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='ML3GJJJWXM2XPVNS2URI5VF0USCVM6DGOS6Y5ALIHKZUO48WYX9DXUR2L7FFJ4BQANG87GSJ9BE9MCP7TW0CZXCDYJL7O41EIJ70XJQ7TUJ2PSV1XR7K3DQ1QWP0XZ5PH8D4966BO1OBUFHW663KC9EVPHR9UO3XOVYHL0KC0KPJKSCVXW1D3LMTHD3FSKQZJUSSRYX3X8TGH0N6A9HEBRJ0JBZHRTF23SQL3UMSUBFXJBNUDNIL3BXRSO3OUG2JF' where id=61; -update noar ti set v1='ML3GJJJWXM2XPVNS2URI5VF0USCVM6DGOS6Y5ALIHKZUO48WYX9DXUR2L7FFJ4BQANG87GSJ9BE9MCP7TW0CZXCDYJL7O41EIJ70XJQ7TUJ2PSV1XR7K3DQ1QWP0XZ5PH8D4966BO1OBUFHW663KC9EVPHR9UO3XOVYHL0KC0KPJKSCVXW1D3LMTHD3FSKQZJUSSRYX3X8TGH0N6A9HEBRJ0JBZHRTF23SQL3UMSUBFXJBNUDNIL3BXRSO3OUG2JF' where id=61; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='CTSG7S8PW8XRJM9T0F136U65K3TF84P63SOQBR5YVK4UK6HP2SC1BF2M0GWUVDHZ6XZRJI8IH6U66XIKS82S9QHB843EL8O2IY30JJX6T3PPEU1OY4V35D2TMTO3R7Z7R7J284B4FISLCN28TPCLZ2EES09859FQFHDBKIOD2MW3XX8YGVF2J2LLM2GJ3U4IWZ6XXWZ0G4CPNHGLLWJQYD2J3K88OZ2EGFZYZDLSKV146M6889Q9VID3214SLP3I2' where id=61; -update noar ti set v2='CTSG7S8PW8XRJM9T0F136U65K3TF84P63SOQBR5YVK4UK6HP2SC1BF2M0GWUVDHZ6XZRJI8IH6U66XIKS82S9QHB843EL8O2IY30JJX6T3PPEU1OY4V35D2TMTO3R7Z7R7J284B4FISLCN28TPCLZ2EES09859FQFHDBKIOD2MW3XX8YGVF2J2LLM2GJ3U4IWZ6XXWZ0G4CPNHGLLWJQYD2J3K88OZ2EGFZYZDLSKV146M6889Q9VID3214SLP3I2' where id=61; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='OTCD82Z8KQNNWAW8XFO494KN6F6Z3HGY4KGHTBHESAIM217L4C36C3WKZB16QUN2LXNK30TU1RTC63LZMO5PQZ7BFCF7ZWI0PDQKMF6NA5I60FI25WKH6PNUSB9DOZJBUCZT5RWELOR50T09S6SGTETALGAO8IJ13H4V51Z11KIXJ796S9M8BO20PO8DV2BUX0XW8UFG3GBYR84DKO6QQCLTLH7JA335NZWZ101LF681IGRDCB1QIMJPN990WBYEM' where id=61; -update noar ti set v3='OTCD82Z8KQNNWAW8XFO494KN6F6Z3HGY4KGHTBHESAIM217L4C36C3WKZB16QUN2LXNK30TU1RTC63LZMO5PQZ7BFCF7ZWI0PDQKMF6NA5I60FI25WKH6PNUSB9DOZJBUCZT5RWELOR50T09S6SGTETALGAO8IJ13H4V51Z11KIXJ796S9M8BO20PO8DV2BUX0XW8UFG3GBYR84DKO6QQCLTLH7JA335NZWZ101LF681IGRDCB1QIMJPN990WBYEM' where id=61; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='ODWRS3H6FUUFGX3LEYCXMJ1TOIM6ELTEO1Y0YLRP0VQ0A2G04J3OUBFG3OUX174CONP5LON81GQPXQ7M8BA0ZI66KJYRCRB8URD0YDT2RPDIJBEL2I54Y0DE98VCSRVQQ35KPR2S7BUSFWN64V8I0WMA8H3ZNKDTRBYBLRM6QX3DHTKDFAYAVS4N8DT40WD0V0Y88GNM1L6L89G51EIYKTYRAXBJN477YC0SD45LKU989QEQ3MP7Q5YBZ9PSHBJJ5' where id=62; -update noar ti set v0='ODWRS3H6FUUFGX3LEYCXMJ1TOIM6ELTEO1Y0YLRP0VQ0A2G04J3OUBFG3OUX174CONP5LON81GQPXQ7M8BA0ZI66KJYRCRB8URD0YDT2RPDIJBEL2I54Y0DE98VCSRVQQ35KPR2S7BUSFWN64V8I0WMA8H3ZNKDTRBYBLRM6QX3DHTKDFAYAVS4N8DT40WD0V0Y88GNM1L6L89G51EIYKTYRAXBJN477YC0SD45LKU989QEQ3MP7Q5YBZ9PSHBJJ5' where id=62; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='2DYYELS8FMNEX4DC9I8FN6EG4HC86Q1RFSTTZH3UQRJR2AHCHPSZ645MRHDR89LOJYDQKIO45J7RYV7VOLR2IX9TLMAD965LA1Y1NR8BTGD32IW4B0SOFVNXMDUNEBXACXGEAXBILIFKWTW8CWKA6XDGR3TZEJKVBXSV8P1ARHR985QDMZBEVQ3371ZTK0KUYRNKS1SD1FYVTXDHMJWBE6G2HESM2MPRD22MT1D6QMOSTQA073BRUKNY5K0HVYI22' where id=62; -update noar ti set v1='2DYYELS8FMNEX4DC9I8FN6EG4HC86Q1RFSTTZH3UQRJR2AHCHPSZ645MRHDR89LOJYDQKIO45J7RYV7VOLR2IX9TLMAD965LA1Y1NR8BTGD32IW4B0SOFVNXMDUNEBXACXGEAXBILIFKWTW8CWKA6XDGR3TZEJKVBXSV8P1ARHR985QDMZBEVQ3371ZTK0KUYRNKS1SD1FYVTXDHMJWBE6G2HESM2MPRD22MT1D6QMOSTQA073BRUKNY5K0HVYI22' where id=62; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='GLJJB52XUKLG3Y8WMVXKIXNFQ33RX1F6PVQCTZLJJMK853CRWU8NTY3HGDKH8J5ZNY99R5Y6XPL5CA4Z56H30DDVE3V5GIPXTNQ78AUKLLEUD80UTEF69GNF7QDW0SR9O8PVTXODZXTWSZ3LSMJ7ODHLQ7JFOHKOIZ5UYGAZJ6CYBEMA70JQHWOOVFLU0E053Y07X1ZP7B412G62CWO1K010G9HQVU4SYXMIQZHNHK05HNW4ONCU0WLYCJ4RJMYDD' where id=62; -update noar ti set v2='GLJJB52XUKLG3Y8WMVXKIXNFQ33RX1F6PVQCTZLJJMK853CRWU8NTY3HGDKH8J5ZNY99R5Y6XPL5CA4Z56H30DDVE3V5GIPXTNQ78AUKLLEUD80UTEF69GNF7QDW0SR9O8PVTXODZXTWSZ3LSMJ7ODHLQ7JFOHKOIZ5UYGAZJ6CYBEMA70JQHWOOVFLU0E053Y07X1ZP7B412G62CWO1K010G9HQVU4SYXMIQZHNHK05HNW4ONCU0WLYCJ4RJMYDD' where id=62; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='TC910VQJFAGVOMTWOQVY7JP4Y9TZD06CN1VK7WB1V7LMNZQB4W1FCDLX4OG0BHG8MBQZ3YTQ29SRUDAOTRTG0NX701T90O92RDV8JSRR96RFG3B9YB7PBV3XH6JAO5UF0YNJIPVL9B2NEE9VCSVO5UN2YEK2OCATQKZD1NBZOEA2JPZPX0A8PJL2IRX8CJX3TDW2H2ZH1NNJL1ZSZRP9N2XLM3PRG1ABGMNQDOJ0HXDZ5XT0H2H2BK32BH7Q4ODQ2' where id=62; -update noar ti set v3='TC910VQJFAGVOMTWOQVY7JP4Y9TZD06CN1VK7WB1V7LMNZQB4W1FCDLX4OG0BHG8MBQZ3YTQ29SRUDAOTRTG0NX701T90O92RDV8JSRR96RFG3B9YB7PBV3XH6JAO5UF0YNJIPVL9B2NEE9VCSVO5UN2YEK2OCATQKZD1NBZOEA2JPZPX0A8PJL2IRX8CJX3TDW2H2ZH1NNJL1ZSZRP9N2XLM3PRG1ABGMNQDOJ0HXDZ5XT0H2H2BK32BH7Q4ODQ2' where id=62; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='DL1FITJMPASMD3XBWNW2PACFUUUPPEA5EICC3ZEF71UJ87CQS2LSADNBBCKFBHIEL9P5AJXPKM4L5P27SH7MHBUDV8ANCNFVO95LOEOZOPWJNP54TZ2YYU7TEWTC0CNKNQAJBC9J3P8PRN2BW9Q5ETTSP5TTCJGOM021U8EFITHTUJOJSH64G870C0ZQFYBJIL45J0O8RTGO3HFUUHC6RUHOQL1DM6JX88QSLRO2M9S1SRR6I5P0QXWBMCLOY88VA' where id=63; -update noar ti set v0='DL1FITJMPASMD3XBWNW2PACFUUUPPEA5EICC3ZEF71UJ87CQS2LSADNBBCKFBHIEL9P5AJXPKM4L5P27SH7MHBUDV8ANCNFVO95LOEOZOPWJNP54TZ2YYU7TEWTC0CNKNQAJBC9J3P8PRN2BW9Q5ETTSP5TTCJGOM021U8EFITHTUJOJSH64G870C0ZQFYBJIL45J0O8RTGO3HFUUHC6RUHOQL1DM6JX88QSLRO2M9S1SRR6I5P0QXWBMCLOY88VA' where id=63; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='5NFIJNOT6J4SAL4V9QIX4NQJNMOAB4OZFRMLCQB1NQ38IZU3KUW2SQ0KIN5C2AIOTP5C1Z3CNFOESLDR56VT1I1PYETWL3O7WLG770IKWWW6DH5785H6K47HGCZRU0HQYGEDV94NHNEFNIH2G1I8R7JQLSK1XAPH8N04P2GOJM7LETLFT53WTDDP7QC0PV5MPAMZTLL7NP7J1ARKKJWS8FV5EJG9BR59ODPUX6MN2EIPXTAEU38VC5QF4KJOR6D2B' where id=63; -update noar ti set v1='5NFIJNOT6J4SAL4V9QIX4NQJNMOAB4OZFRMLCQB1NQ38IZU3KUW2SQ0KIN5C2AIOTP5C1Z3CNFOESLDR56VT1I1PYETWL3O7WLG770IKWWW6DH5785H6K47HGCZRU0HQYGEDV94NHNEFNIH2G1I8R7JQLSK1XAPH8N04P2GOJM7LETLFT53WTDDP7QC0PV5MPAMZTLL7NP7J1ARKKJWS8FV5EJG9BR59ODPUX6MN2EIPXTAEU38VC5QF4KJOR6D2B' where id=63; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='9FKCHID9HK4TT8O6V1OGJQISQAUL6B9MV2RIL83YDH6D7VYFEA3CGQX0WYN5LCNTJ8AT5PFE20NPC6LDHHOGR9O3HTMS1EKKDMANP3Z0FVX0V1HPO1QAC3P66TS26XKGE3EPUP9QIM6HLJSRJL2L64Q5BYKWLAPDTFOZCYPDOOYGPYUFRXV9RELH3LJ40HPI81VOQ1CHRT39RBRBJ0A693QVHK5JZEG9ARA9JCSJLN76Q6DNOSMZR492QUQK8IX46' where id=63; -update noar ti set v2='9FKCHID9HK4TT8O6V1OGJQISQAUL6B9MV2RIL83YDH6D7VYFEA3CGQX0WYN5LCNTJ8AT5PFE20NPC6LDHHOGR9O3HTMS1EKKDMANP3Z0FVX0V1HPO1QAC3P66TS26XKGE3EPUP9QIM6HLJSRJL2L64Q5BYKWLAPDTFOZCYPDOOYGPYUFRXV9RELH3LJ40HPI81VOQ1CHRT39RBRBJ0A693QVHK5JZEG9ARA9JCSJLN76Q6DNOSMZR492QUQK8IX46' where id=63; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='DA6781X684GEW2RB5V7XXBKI4LD4UOUKPNU42LJCU8KK0LGIL7IS65GGOBDRNT3V0W80EZH11OKWPAMT8VY4C0HPSEYQNZMM74INJ3PMGLAI1L579NXQKBZX5G902PO8XINDCDYXP9XPG3M2XFP33LAEU2B6IY26LFAU2UK8KW9MQVKK5PBS9GP673ZFE9T8JAKVDBW3FEAQC6D07ATX3KHOT7BEUTXVT0WNGBXQJU99UR7GUAX13B83ZAMJWU0LJ' where id=63; -update noar ti set v3='DA6781X684GEW2RB5V7XXBKI4LD4UOUKPNU42LJCU8KK0LGIL7IS65GGOBDRNT3V0W80EZH11OKWPAMT8VY4C0HPSEYQNZMM74INJ3PMGLAI1L579NXQKBZX5G902PO8XINDCDYXP9XPG3M2XFP33LAEU2B6IY26LFAU2UK8KW9MQVKK5PBS9GP673ZFE9T8JAKVDBW3FEAQC6D07ATX3KHOT7BEUTXVT0WNGBXQJU99UR7GUAX13B83ZAMJWU0LJ' where id=63; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='RF0MMWZG6S8ED38OM41VKK0BTO58W17VEBQ4C8LYSTH4GDMPCUBB2ECZ5QJ61O83UV9SMHSXVVMJFFH5Z9QDF0B6B6EEPVXFMMA5OJRZNQHNCGHGN9C9PEYQU113T4AAF9SO1ODLN6BC9XIO8NGPCZREZ0QLVCDZ07B14P4TMM7V71DBOJDAYOAVW0OZLADINSGNBCE4WL1AQHXBCYH9SPODME4PWMSCQ8ONS6LDXVB852AQBCIP2UT4SMABU44LG' where id=64; -update noar ti set v0='RF0MMWZG6S8ED38OM41VKK0BTO58W17VEBQ4C8LYSTH4GDMPCUBB2ECZ5QJ61O83UV9SMHSXVVMJFFH5Z9QDF0B6B6EEPVXFMMA5OJRZNQHNCGHGN9C9PEYQU113T4AAF9SO1ODLN6BC9XIO8NGPCZREZ0QLVCDZ07B14P4TMM7V71DBOJDAYOAVW0OZLADINSGNBCE4WL1AQHXBCYH9SPODME4PWMSCQ8ONS6LDXVB852AQBCIP2UT4SMABU44LG' where id=64; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='22AA821U7P1LJRR8765ODS3WVHDI4L8Y28OGKI02EU9DEVICBHWNMAGVYE5GPK7BJR0WH4Z9QMJZJOHO4N1SWGPJ6LY7SUGPJTNN03B1UA6537PNHGXMB9E9FZPDLNIHNLPA2BWHF6XM4YCTLOSAK9ZILPSI0GX5VA6V4TE6TTNF6WT0ZS5LDCHW60AJS8VXWN075EX009PUY342A3FIC2JO8SCTUQ69DZGMR2XYYGMKL5DJMM7IT77TI5SASMMP6' where id=64; -update noar ti set v1='22AA821U7P1LJRR8765ODS3WVHDI4L8Y28OGKI02EU9DEVICBHWNMAGVYE5GPK7BJR0WH4Z9QMJZJOHO4N1SWGPJ6LY7SUGPJTNN03B1UA6537PNHGXMB9E9FZPDLNIHNLPA2BWHF6XM4YCTLOSAK9ZILPSI0GX5VA6V4TE6TTNF6WT0ZS5LDCHW60AJS8VXWN075EX009PUY342A3FIC2JO8SCTUQ69DZGMR2XYYGMKL5DJMM7IT77TI5SASMMP6' where id=64; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='FDF98Q46E6QV146E2WKM0ZCD18J59ULRRMNW6G1UMILDNQUS38P43DEX8TGO3IJEOY4D919IBL0G32C966M26J7ZCXIQJEE9RYZNSY4G7QSK8WCJUL8J2UCFANG0X2QH0XB0E8DTGJM0CPZZXIX4H1A6Y90LKYCUB8YJYXZZE2BNNVHC70DUP3P2OW4JTB04OPTI19YDCUV7DF9OP9OORV1US2G8SFMB2QT90276A9U8ZA5IBA2URCLH3VCRKS7ZA' where id=64; -update noar ti set v2='FDF98Q46E6QV146E2WKM0ZCD18J59ULRRMNW6G1UMILDNQUS38P43DEX8TGO3IJEOY4D919IBL0G32C966M26J7ZCXIQJEE9RYZNSY4G7QSK8WCJUL8J2UCFANG0X2QH0XB0E8DTGJM0CPZZXIX4H1A6Y90LKYCUB8YJYXZZE2BNNVHC70DUP3P2OW4JTB04OPTI19YDCUV7DF9OP9OORV1US2G8SFMB2QT90276A9U8ZA5IBA2URCLH3VCRKS7ZA' where id=64; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='APV8Z2WH2E5QSXT5ZQUQAWW34W5SE62TF7QFH0RF8FH6FNP8DFMD4A0I0R1P22Y7WWN7A2A841PSPSY6UAD59OUASGDMXPFHTN05SJ8VWRZPD0CHE7QPDZ1X3M0AUADKX6PWQ1R8L6QPA7XXWTU8A9LUJS4WKFOX1H728ZHT1RJOVSUPKZHGCO2TO3N0I58R0PHHLVYXQZXE8CD87DJ9QBJJGUY8M8FP67QE2YAY16ZJMAODNU21SW84P81W87V6H' where id=64; -update noar ti set v3='APV8Z2WH2E5QSXT5ZQUQAWW34W5SE62TF7QFH0RF8FH6FNP8DFMD4A0I0R1P22Y7WWN7A2A841PSPSY6UAD59OUASGDMXPFHTN05SJ8VWRZPD0CHE7QPDZ1X3M0AUADKX6PWQ1R8L6QPA7XXWTU8A9LUJS4WKFOX1H728ZHT1RJOVSUPKZHGCO2TO3N0I58R0PHHLVYXQZXE8CD87DJ9QBJJGUY8M8FP67QE2YAY16ZJMAODNU21SW84P81W87V6H' where id=64; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='80YNN85SEGS9WFQS032YLM55K9KF85751ROK8YLWW24WUE3LE4RF2EZSH2BT4ZK9Q6SRDSFZGDIXBIEGLKHJVVTQMDPV7OQXQTDWSR0IT1HDY5CQ51YW3DPGX8GWWVBZ736021FFMEA88O10Y72LNLQVCAJ1ILRL6UYK5GNRFSYDHMV9HI16NPF6HEKQ7FVFI2Q2JRJTE0NERVDNS5ZVKUCRA5553LF2M0V4D4DBUHEY8OIR1QRWDK68Y5MFQAAWL' where id=65; -update noar ti set v0='80YNN85SEGS9WFQS032YLM55K9KF85751ROK8YLWW24WUE3LE4RF2EZSH2BT4ZK9Q6SRDSFZGDIXBIEGLKHJVVTQMDPV7OQXQTDWSR0IT1HDY5CQ51YW3DPGX8GWWVBZ736021FFMEA88O10Y72LNLQVCAJ1ILRL6UYK5GNRFSYDHMV9HI16NPF6HEKQ7FVFI2Q2JRJTE0NERVDNS5ZVKUCRA5553LF2M0V4D4DBUHEY8OIR1QRWDK68Y5MFQAAWL' where id=65; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='VY7LV44SPEIX0TWZJZX6PMGKEJBXR4B9ETA5XFD2R9RJ9W2MXCM92BPYG0N43BOJ76S4X1UDNAV5I7VM2IXDLBCYBV3FPCTN3FN50T2XEH25HJLCR6DSN3O0PUQIZ1C8PBIQIOW88TMLN7SDXJ5CEALJSMTA7H2XK1B01FV5MMQRQ1MNTMPUFYUER66BVNIWGPPQZ13FDL4RD8RT41O4HC2UKHHQ2LJTS1UJPU4JRQ58YZP5VAIPP9PGDT0H4Q02I' where id=65; -update noar ti set v1='VY7LV44SPEIX0TWZJZX6PMGKEJBXR4B9ETA5XFD2R9RJ9W2MXCM92BPYG0N43BOJ76S4X1UDNAV5I7VM2IXDLBCYBV3FPCTN3FN50T2XEH25HJLCR6DSN3O0PUQIZ1C8PBIQIOW88TMLN7SDXJ5CEALJSMTA7H2XK1B01FV5MMQRQ1MNTMPUFYUER66BVNIWGPPQZ13FDL4RD8RT41O4HC2UKHHQ2LJTS1UJPU4JRQ58YZP5VAIPP9PGDT0H4Q02I' where id=65; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='KRCER8L1A7MZ2Z37C210ANS832VRIX3WK75X1248CMANBEV83REC324H8JR5X5460CECVUYH4MHS8EONJEBS7BEJMBFMZWORFM744O642I9UJ4BFENBU51YF9CSKYF34ZSEO2ZISWNJSWR8PK2FGQLZX8AE1HWM8DMJCCQ6G0N95G0BNDLTDAPDVPP5OPXLXGVGPX7VTSCI5JOXNRHNAD6AVB2QR1U87B3IO2VFB4HJ5NW51GRCX9LVNRW8GW8LBG' where id=65; -update noar ti set v2='KRCER8L1A7MZ2Z37C210ANS832VRIX3WK75X1248CMANBEV83REC324H8JR5X5460CECVUYH4MHS8EONJEBS7BEJMBFMZWORFM744O642I9UJ4BFENBU51YF9CSKYF34ZSEO2ZISWNJSWR8PK2FGQLZX8AE1HWM8DMJCCQ6G0N95G0BNDLTDAPDVPP5OPXLXGVGPX7VTSCI5JOXNRHNAD6AVB2QR1U87B3IO2VFB4HJ5NW51GRCX9LVNRW8GW8LBG' where id=65; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='PVA8LPX2SVW1UL53U4QVXAY5NW2R0BARFM800D8S2JQFBZ7YIDHY0VRIIS3BYB1PJTBJKNC8X7V3Y6IY53NEXYWUYN8KWCRLKXSDM7HJQ2Z9JOA195GXYBTTRIAINHS9UEWJU0ZRJDVLYK7NM10LVL961XGB5DQY8PXLTOI9HTEQ313F19GN4BB3AGXYZ7U4PIUNPYZXUYW1LNRN6LXHIHGFQ789XBZ4IV6IB70DQ399GHJYP3NA9MDF5IZYBGUV2' where id=65; -update noar ti set v3='PVA8LPX2SVW1UL53U4QVXAY5NW2R0BARFM800D8S2JQFBZ7YIDHY0VRIIS3BYB1PJTBJKNC8X7V3Y6IY53NEXYWUYN8KWCRLKXSDM7HJQ2Z9JOA195GXYBTTRIAINHS9UEWJU0ZRJDVLYK7NM10LVL961XGB5DQY8PXLTOI9HTEQ313F19GN4BB3AGXYZ7U4PIUNPYZXUYW1LNRN6LXHIHGFQ789XBZ4IV6IB70DQ399GHJYP3NA9MDF5IZYBGUV2' where id=65; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='F7UKETBHU8Z1JZODQLFDOBXEEM9DIS7U48L7ZIXD2AWF4VSAOWIH91G36DTDCHAM7UMIHWK2UN7C4JSXJZS42Q9UJEMWHP8EWO4E8HLAQ0IVRIWRWEZYMCHNUOAV0YBTA4M2FVAC546BXR7FUF9O5WSTZ17WCPMBFK9HJOPHQC0KIUCJKDLY3V0N5PHZ77MPB3LFOONL6E5J0A2Z9D9DS9O4UZVM3PNHHLK829KG6MG93D18LUYNFOKXDLYOHYLST' where id=66; -update noar ti set v0='F7UKETBHU8Z1JZODQLFDOBXEEM9DIS7U48L7ZIXD2AWF4VSAOWIH91G36DTDCHAM7UMIHWK2UN7C4JSXJZS42Q9UJEMWHP8EWO4E8HLAQ0IVRIWRWEZYMCHNUOAV0YBTA4M2FVAC546BXR7FUF9O5WSTZ17WCPMBFK9HJOPHQC0KIUCJKDLY3V0N5PHZ77MPB3LFOONL6E5J0A2Z9D9DS9O4UZVM3PNHHLK829KG6MG93D18LUYNFOKXDLYOHYLST' where id=66; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='K2C5WM1N0CE5SMI2LJOZIR4W7U663QYO2EB4K0A8LKXI9ZHPAW2MRYJOBO6CHBL8F6TDCW9ZC7EEUURGC8FRSULM4DVNNB61M6PNK1E0RUYHK43ZGFNZW01XNPFLEO4W17GU6WI8U6Z0S6WXRRIM4R8PG9L81RG113ZGO5T6776BO82YLHT07DPLCUVWKS7ZZY4FTM8FQDK9VIG57HLQGZBOZ5OTL76NEEQZERAUZW71NC48705AIXPF4X4IV15ZE' where id=66; -update noar ti set v1='K2C5WM1N0CE5SMI2LJOZIR4W7U663QYO2EB4K0A8LKXI9ZHPAW2MRYJOBO6CHBL8F6TDCW9ZC7EEUURGC8FRSULM4DVNNB61M6PNK1E0RUYHK43ZGFNZW01XNPFLEO4W17GU6WI8U6Z0S6WXRRIM4R8PG9L81RG113ZGO5T6776BO82YLHT07DPLCUVWKS7ZZY4FTM8FQDK9VIG57HLQGZBOZ5OTL76NEEQZERAUZW71NC48705AIXPF4X4IV15ZE' where id=66; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='EBCXAT1T5QQWYXC5ARHO58VVY93ODF2RSKHQAQNNDD9GZIFC6OJ4UGKFR1GRP9AMLG382JAR97XA5HC50LFVP6M2ZZ0FXKECFGDY2ILGZXI5G1CSIUI95XGKKDC7V5Z4YOYWXEV202DFHCR9OV420RGUDY00QB93W7JGCGV1OXJI8AA9O9PPZUOIRUAH62YXF98GCUXB7IPXCYCVIPUL48RGY2286O1OS8JSP31OHJ41F98Z38YF4SIVPH4YG5VHP' where id=66; -update noar ti set v2='EBCXAT1T5QQWYXC5ARHO58VVY93ODF2RSKHQAQNNDD9GZIFC6OJ4UGKFR1GRP9AMLG382JAR97XA5HC50LFVP6M2ZZ0FXKECFGDY2ILGZXI5G1CSIUI95XGKKDC7V5Z4YOYWXEV202DFHCR9OV420RGUDY00QB93W7JGCGV1OXJI8AA9O9PPZUOIRUAH62YXF98GCUXB7IPXCYCVIPUL48RGY2286O1OS8JSP31OHJ41F98Z38YF4SIVPH4YG5VHP' where id=66; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='00DI72N244EJE6PBNYK1AM4UEO3DDR7RQFTSCZV9MBYTDF0PX9KSNPCF589GBKOK1AA1G7H0BIE2LG6B87PI2MELYEYSGGL88YOG4VFBU6A82A3QPJF12KLV2IPE15M7U3X3UDGPB7EK9B491RJN3HLV76PUFDGBNWYAT7CBFJ6DH71XA48FITTYO87VXPEHWXK15IOJSACQRIGFK93GSYVT6W64XBOQZSSZYQ7H888NVODSMO810VVG79U2EYIVR' where id=66; -update noar ti set v3='00DI72N244EJE6PBNYK1AM4UEO3DDR7RQFTSCZV9MBYTDF0PX9KSNPCF589GBKOK1AA1G7H0BIE2LG6B87PI2MELYEYSGGL88YOG4VFBU6A82A3QPJF12KLV2IPE15M7U3X3UDGPB7EK9B491RJN3HLV76PUFDGBNWYAT7CBFJ6DH71XA48FITTYO87VXPEHWXK15IOJSACQRIGFK93GSYVT6W64XBOQZSSZYQ7H888NVODSMO810VVG79U2EYIVR' where id=66; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='GF0SYU852FTRKP8KJMS6IS77BE4QQ3D15KDM7JB854UCGLE6QQXYV5K82VOWTRLVW4RPQOBM023B43X4R1IOEG0TMA1RLRO71YIWEIBFQ7124I9SDMKZEG4HUPSOH1I7ECCNQ2K5LNHMGUMNYSM7CJKA6C7MMA4K6G3F4MXFILFJ2ZQ6TV7ACGJRBRJGRHIIBJUEMT204WJD1YH309444X5AW84MQ8443JKFSDCA6SMSQE1N71IPD4GN2Q8JMZIR0' where id=67; -update noar ti set v0='GF0SYU852FTRKP8KJMS6IS77BE4QQ3D15KDM7JB854UCGLE6QQXYV5K82VOWTRLVW4RPQOBM023B43X4R1IOEG0TMA1RLRO71YIWEIBFQ7124I9SDMKZEG4HUPSOH1I7ECCNQ2K5LNHMGUMNYSM7CJKA6C7MMA4K6G3F4MXFILFJ2ZQ6TV7ACGJRBRJGRHIIBJUEMT204WJD1YH309444X5AW84MQ8443JKFSDCA6SMSQE1N71IPD4GN2Q8JMZIR0' where id=67; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='U5QBCDD5T8XDQ00XEL71GOQ8UVKT456C47ZA7NOP20OSZ0X8C172BZN1AX5H1L4D5BWG89RHT8D6765HPPE6XKBMF2Z4DDLEDYIS6BZS6POMZ6I6NCIZQ0D0PZ4HZPLDZ4DLOLZ15PFLQGONX19YKY8YD2TORBPLUFTERTGFBV5EUF4X7VITRISS1O5PRX390USXCOBB7GCUZHA1A9I1H53RA5Y2ZJ22A92CRO9HKJL9PYZFSZCZ3DA7YZNCAX4Y9' where id=67; -update noar ti set v1='U5QBCDD5T8XDQ00XEL71GOQ8UVKT456C47ZA7NOP20OSZ0X8C172BZN1AX5H1L4D5BWG89RHT8D6765HPPE6XKBMF2Z4DDLEDYIS6BZS6POMZ6I6NCIZQ0D0PZ4HZPLDZ4DLOLZ15PFLQGONX19YKY8YD2TORBPLUFTERTGFBV5EUF4X7VITRISS1O5PRX390USXCOBB7GCUZHA1A9I1H53RA5Y2ZJ22A92CRO9HKJL9PYZFSZCZ3DA7YZNCAX4Y9' where id=67; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='Y35WRROLBG1W06EWAXE1VKYBOF3UR000Y0VHAEEIC48EMBW1QV4XBIKUNZAMVC68EJM4NI4O32L3GDMWE51SOSXH1Z41086OM8254X4E2QIBSDUQROEH1X3FG0NLR7BA1IKO3J5KJ1B65UQQCWV5SR039OR4Q305Z923KQW8BY6IJQ6PQOVSYZ1ANJMRXVT42CUMHW60DDJORX9KMLHPY9F8QO51YZQG56MSIWOMJBI0MQY5ZTVZGDUXH59YN8GEC' where id=67; -update noar ti set v2='Y35WRROLBG1W06EWAXE1VKYBOF3UR000Y0VHAEEIC48EMBW1QV4XBIKUNZAMVC68EJM4NI4O32L3GDMWE51SOSXH1Z41086OM8254X4E2QIBSDUQROEH1X3FG0NLR7BA1IKO3J5KJ1B65UQQCWV5SR039OR4Q305Z923KQW8BY6IJQ6PQOVSYZ1ANJMRXVT42CUMHW60DDJORX9KMLHPY9F8QO51YZQG56MSIWOMJBI0MQY5ZTVZGDUXH59YN8GEC' where id=67; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='KA40T1PMKTH1PL0LCE4BLLHV044DENTK595KZVBCVMO0XCH3DIX9P68HZQB7H66QCZR3GNVHZ5Y26ZQ1WSA0ZAQ2XZXGI6VBHF1ME5BUTKS5LH58UT1XOD1GEXEFZUGLG05XK26YMDTKLSI3K0465SP9945KGM1YIA6ZTGT4UL9GCP8TV3Y9XZBDTV3YDKTFCL7HO1Y83SW4RHGI7SMIFHZNLUFE073JDC099SWIWSND0FQ2U4U1LXR59W4PAN3OP' where id=67; -update noar ti set v3='KA40T1PMKTH1PL0LCE4BLLHV044DENTK595KZVBCVMO0XCH3DIX9P68HZQB7H66QCZR3GNVHZ5Y26ZQ1WSA0ZAQ2XZXGI6VBHF1ME5BUTKS5LH58UT1XOD1GEXEFZUGLG05XK26YMDTKLSI3K0465SP9945KGM1YIA6ZTGT4UL9GCP8TV3Y9XZBDTV3YDKTFCL7HO1Y83SW4RHGI7SMIFHZNLUFE073JDC099SWIWSND0FQ2U4U1LXR59W4PAN3OP' where id=67; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='V1KUJBJNJTEWA5EBAFQMF1THTFJN4EDGL1VIDZZG8CZ53LS1BY1IMFTZJNY2SLEFL1ZPSGVYJ4IORF37XXNNEIKM77UQCWFM1NYMAQI7QZK4X43PQ9TQK56OBL79J1TD6WPQUKTS8VP2H06UVUSKOV3GZXRDWKG7P2TUTTGKBRQYSOI0UA1PJ56PHSIZ21BTU5LTQOFRG48R2LR6JH0AOIF46PH6HE6YMCB8Y98HIJXJH1VONIH7MAI0NDPF5CG5O' where id=68; -update noar ti set v0='V1KUJBJNJTEWA5EBAFQMF1THTFJN4EDGL1VIDZZG8CZ53LS1BY1IMFTZJNY2SLEFL1ZPSGVYJ4IORF37XXNNEIKM77UQCWFM1NYMAQI7QZK4X43PQ9TQK56OBL79J1TD6WPQUKTS8VP2H06UVUSKOV3GZXRDWKG7P2TUTTGKBRQYSOI0UA1PJ56PHSIZ21BTU5LTQOFRG48R2LR6JH0AOIF46PH6HE6YMCB8Y98HIJXJH1VONIH7MAI0NDPF5CG5O' where id=68; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='I7XKNEP29OE3L9JYAXAURUX0GXZXRRFHJA8TP8SSBIZGZMYMWBKNTK2535D6LEODZ5PJT294218XMW0SN7NHY9F78N60OM5IY0IAX91HYCNML4F15YQGKEW9SMUZOKPYBM0DQFG5QEOWZBHYEI0UTSYQH2ZAHTBU61OW34LW81U3HIBNOJ8025LXVOSWYDA6IXZL3LJF5L20VIX8LHYVX113SLJCLMF0CKCPQ5RJ91QNEVFCF5GSSBW6EG05B7WKO' where id=68; -update noar ti set v1='I7XKNEP29OE3L9JYAXAURUX0GXZXRRFHJA8TP8SSBIZGZMYMWBKNTK2535D6LEODZ5PJT294218XMW0SN7NHY9F78N60OM5IY0IAX91HYCNML4F15YQGKEW9SMUZOKPYBM0DQFG5QEOWZBHYEI0UTSYQH2ZAHTBU61OW34LW81U3HIBNOJ8025LXVOSWYDA6IXZL3LJF5L20VIX8LHYVX113SLJCLMF0CKCPQ5RJ91QNEVFCF5GSSBW6EG05B7WKO' where id=68; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='831XK31Q47RZLWGSNMH9QA2BA44GX3HO1K5MWJ7S9N7RHEUCTRHQX3IHSB0XILQXOAJ6LQK3IJP79GT73NJHQR3R4EU3BEBS6GVX2FAJ9R0N05AMS7RU3DTM4PRFHEL12X3D1S5BC1YIVJX2IU83T18Y3YORU5UYUXDU1ANLSFEE45XBDQF7J51ANR1KNCKD940B7W28NW5ZQW88S2BQLPMKENSTXBYCB2WM5812224EDUPJVERCN71A68WKLEYEX' where id=68; -update noar ti set v2='831XK31Q47RZLWGSNMH9QA2BA44GX3HO1K5MWJ7S9N7RHEUCTRHQX3IHSB0XILQXOAJ6LQK3IJP79GT73NJHQR3R4EU3BEBS6GVX2FAJ9R0N05AMS7RU3DTM4PRFHEL12X3D1S5BC1YIVJX2IU83T18Y3YORU5UYUXDU1ANLSFEE45XBDQF7J51ANR1KNCKD940B7W28NW5ZQW88S2BQLPMKENSTXBYCB2WM5812224EDUPJVERCN71A68WKLEYEX' where id=68; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='UK79ZXGNALSWOVV77EASEQ1B1R7MLSZD3CIYOL3OG5NV8FZ46DASZP1HJDXUAW0W34AEQNND6FC0168FGOVHMQZJRR5XFLT4MSLGZX91SG36Q3SULOU3BT316YYC7QCA5DEYHFKNBBOQXVUV2QTW80EYJRGDUCT0DON5XO77HOIO7WR21RTNVBSD2SOT47Z58B0ZQBXB0O0KLQX7DZ5OH0PYTP7A2VDZRWNA2TQE6UFXQU9TNAOQ2IJJZNCCPEBLY' where id=68; -update noar ti set v3='UK79ZXGNALSWOVV77EASEQ1B1R7MLSZD3CIYOL3OG5NV8FZ46DASZP1HJDXUAW0W34AEQNND6FC0168FGOVHMQZJRR5XFLT4MSLGZX91SG36Q3SULOU3BT316YYC7QCA5DEYHFKNBBOQXVUV2QTW80EYJRGDUCT0DON5XO77HOIO7WR21RTNVBSD2SOT47Z58B0ZQBXB0O0KLQX7DZ5OH0PYTP7A2VDZRWNA2TQE6UFXQU9TNAOQ2IJJZNCCPEBLY' where id=68; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='XLIRVX3XH2QRKYSKM64J3RPXL13DD0OJIOPZUFPN78PZ7MZWTLEBZGOE0P9VJ9OOCAGJ8ZEEME7ZBOVFLWY37TU9A8FESOFDTC8J15LUYWJVNMGS5NGW6TOBKB1G2QE1DJB2ZXOYVQTJATP1JLNHR22TXQ88BVPJNEPQ5P71ZC0IS9OAJUFE6BFPM2YTSPPSEOJZR8CFAR9L0TA49CXBS1PLH2COEYYJVMSSEY9EKK5DBFFK4FR8OWK8V427SEV3S' where id=69; -update noar ti set v0='XLIRVX3XH2QRKYSKM64J3RPXL13DD0OJIOPZUFPN78PZ7MZWTLEBZGOE0P9VJ9OOCAGJ8ZEEME7ZBOVFLWY37TU9A8FESOFDTC8J15LUYWJVNMGS5NGW6TOBKB1G2QE1DJB2ZXOYVQTJATP1JLNHR22TXQ88BVPJNEPQ5P71ZC0IS9OAJUFE6BFPM2YTSPPSEOJZR8CFAR9L0TA49CXBS1PLH2COEYYJVMSSEY9EKK5DBFFK4FR8OWK8V427SEV3S' where id=69; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='8JX13HPES0FE1MDLVICQ85Q7RW7HHOJMC07IA4RIQWAIMRHZ6QQWHMTZWBHTGP4YMEJD84B0SU0BI98X567CLJR2BJ9Y0YJHU4LP0EQSG2J1NBVLE6HVY6FIIMT6XMVXE6W5HK1ZZ9Y13VXNQ9T2M2LRZ2N4U87WBGLT7EFT6KIF680IJ62PNXZTPSYZHDNJKWAIN5WNDYUDO03Z5646R0YJJBQTL5MEGYPK6C15GJM69EDYOZYA6MLRUWDGYZ91U' where id=69; -update noar ti set v1='8JX13HPES0FE1MDLVICQ85Q7RW7HHOJMC07IA4RIQWAIMRHZ6QQWHMTZWBHTGP4YMEJD84B0SU0BI98X567CLJR2BJ9Y0YJHU4LP0EQSG2J1NBVLE6HVY6FIIMT6XMVXE6W5HK1ZZ9Y13VXNQ9T2M2LRZ2N4U87WBGLT7EFT6KIF680IJ62PNXZTPSYZHDNJKWAIN5WNDYUDO03Z5646R0YJJBQTL5MEGYPK6C15GJM69EDYOZYA6MLRUWDGYZ91U' where id=69; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='FX82JZPD6S5JNEVXWK49ULK559CZTM8OTOPSTTH5SKK5NV8FQ7D8PLVZC5R2UUEXTEUBI9SH7QQSH5SCG0EUZ2J6TDCZCGIE73N31FMUL95SJXTG3EHR69I0XRJ645G0OBXK7YVW19Q8R1U5BBY6847WXUNO6FZIOBCO16RKLBDMHASMS4C1XTB3M7KH5Q84AESHI2ACUDYF2VMNF3PFURUGM2NPPMMY8B8B7H03YHX3SXKRQ5MCC44Y1GEJ9SOAD' where id=69; -update noar ti set v2='FX82JZPD6S5JNEVXWK49ULK559CZTM8OTOPSTTH5SKK5NV8FQ7D8PLVZC5R2UUEXTEUBI9SH7QQSH5SCG0EUZ2J6TDCZCGIE73N31FMUL95SJXTG3EHR69I0XRJ645G0OBXK7YVW19Q8R1U5BBY6847WXUNO6FZIOBCO16RKLBDMHASMS4C1XTB3M7KH5Q84AESHI2ACUDYF2VMNF3PFURUGM2NPPMMY8B8B7H03YHX3SXKRQ5MCC44Y1GEJ9SOAD' where id=69; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='TJQWYQ4Z60T2T1ZMW0MQ49DPNBZ8MRYQAUVHEMZILKH1MATK7LEYJA1R25ETTA1EGZ9H45ZIWOHPR9IHKEYBTY1SA5NCE0NV6GMR8LFXL0ZD9U3PBZ3EN5QW1SOLHKOECKILDKWA809QJOWM2G9JO2KWFBUFA5D0DHZSZPCDBOWS6AR0JZTY24YXDY26T1RTOGQ00D8SYMIZPGP1RFSL8EHU86AWRDFL6ATX4FAA215G5QJUZLK4S5BI1ENL8PV7V' where id=69; -update noar ti set v3='TJQWYQ4Z60T2T1ZMW0MQ49DPNBZ8MRYQAUVHEMZILKH1MATK7LEYJA1R25ETTA1EGZ9H45ZIWOHPR9IHKEYBTY1SA5NCE0NV6GMR8LFXL0ZD9U3PBZ3EN5QW1SOLHKOECKILDKWA809QJOWM2G9JO2KWFBUFA5D0DHZSZPCDBOWS6AR0JZTY24YXDY26T1RTOGQ00D8SYMIZPGP1RFSL8EHU86AWRDFL6ATX4FAA215G5QJUZLK4S5BI1ENL8PV7V' where id=69; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='496U9MN0L766DHL4SZ71NPS4XF84D2BEK4S6T8S73ABHEP8MMNFU16K4PF4KX0NZ3EZ051NBH8I0QZ2OULX85NVWABENJEG2UN8AZC6Q8V2EBQ0ANBV4YUO3VN8YHN09IYHJ79YXS0RIC8PCYHCBZ8WXLGDGSMN4FBBAZXGW2TE6EM4L8SYAFD7C57RZDTFCT9O2R3712R5C2XCRQ326ML0I3OOSCB0MR3PC6P6D4BMSCYXSGAXTYZYUU4M3W0ZE4' where id=70; -update noar ti set v0='496U9MN0L766DHL4SZ71NPS4XF84D2BEK4S6T8S73ABHEP8MMNFU16K4PF4KX0NZ3EZ051NBH8I0QZ2OULX85NVWABENJEG2UN8AZC6Q8V2EBQ0ANBV4YUO3VN8YHN09IYHJ79YXS0RIC8PCYHCBZ8WXLGDGSMN4FBBAZXGW2TE6EM4L8SYAFD7C57RZDTFCT9O2R3712R5C2XCRQ326ML0I3OOSCB0MR3PC6P6D4BMSCYXSGAXTYZYUU4M3W0ZE4' where id=70; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='RLLMLTGMYGT9V8VJQA5E4DPIHLIWEE28ARTJX25B0EONDI1JD7YQ8OAPLT38WBAY31I9XEVC11U6GGNXM1F8R4B3R9HBY8B64XJQ20OQRH9FDF5OQUI23OMECWMGXGMZKLW0HSTXL7WZY4KVF6BNNLUBECLJ0ZLO5A2T8PLF3H2N5IDBUDI93Q62X934O7LE4UKCKB5WUHIYWXE0LAYIK1OMD5TJYM44CRDZBR49D2CH6G9WPH56KVHDFGQNDHB7Z' where id=70; -update noar ti set v1='RLLMLTGMYGT9V8VJQA5E4DPIHLIWEE28ARTJX25B0EONDI1JD7YQ8OAPLT38WBAY31I9XEVC11U6GGNXM1F8R4B3R9HBY8B64XJQ20OQRH9FDF5OQUI23OMECWMGXGMZKLW0HSTXL7WZY4KVF6BNNLUBECLJ0ZLO5A2T8PLF3H2N5IDBUDI93Q62X934O7LE4UKCKB5WUHIYWXE0LAYIK1OMD5TJYM44CRDZBR49D2CH6G9WPH56KVHDFGQNDHB7Z' where id=70; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='71HCX56X32H1ENTBBYO3RJLHXK9V27BSV76U8Q89ULS8NVP29QNEFT10OPZDG6CJPNF5A50J15XBBGS6G7JL1J5Z0IKO104OJ8FF3QP1Z1MPV8YQJBSEYRROA01FX4XEZGNW0SSASBRIIMJ9529SQ9O8KPKZUB2IVX30X6T59ZJN97KSZZ72VP1IB8MBQWJN1E6X5POX7DDOD29BQ3D605EBLW4A7DPPQ3R9W7NOE37B0AIAD8RW9XGEE01O5BSFF' where id=70; -update noar ti set v2='71HCX56X32H1ENTBBYO3RJLHXK9V27BSV76U8Q89ULS8NVP29QNEFT10OPZDG6CJPNF5A50J15XBBGS6G7JL1J5Z0IKO104OJ8FF3QP1Z1MPV8YQJBSEYRROA01FX4XEZGNW0SSASBRIIMJ9529SQ9O8KPKZUB2IVX30X6T59ZJN97KSZZ72VP1IB8MBQWJN1E6X5POX7DDOD29BQ3D605EBLW4A7DPPQ3R9W7NOE37B0AIAD8RW9XGEE01O5BSFF' where id=70; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='FJLY9YYJ55F8J5PY3TRDWUNXG61YX3AIX8TOYYJTEZIRC9FSU4RBNWELRFXGPJCAVMCP1Y4NRWW78IIVF9Z4VPC6ZJW0B7QTMSTH28R4M8XZ049MJE28MTTT4OLMA2P5RP2OJSQBFRTOZZ5L1N5IQM7AC1BHE3IS990MO3IYEFX27LMYWGVBT0JXZFK4JAE5DVLDA07R7SSP7KNB08KJT8EKA7W4WI24MGFEF46MX906J6JXEGO2NHR865X7NF6KX' where id=70; -update noar ti set v3='FJLY9YYJ55F8J5PY3TRDWUNXG61YX3AIX8TOYYJTEZIRC9FSU4RBNWELRFXGPJCAVMCP1Y4NRWW78IIVF9Z4VPC6ZJW0B7QTMSTH28R4M8XZ049MJE28MTTT4OLMA2P5RP2OJSQBFRTOZZ5L1N5IQM7AC1BHE3IS990MO3IYEFX27LMYWGVBT0JXZFK4JAE5DVLDA07R7SSP7KNB08KJT8EKA7W4WI24MGFEF46MX906J6JXEGO2NHR865X7NF6KX' where id=70; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='9DZYQUSF9OTXF1YUWN6YFPG2ML3927OMDJWVQ6IV9SHJ6HDPKYA7HLWCYHCFUNTEFPFVW9T90ZS9IG8SINX8A49FLY5OFYDUMZ1PK6AXJPTY7ZQ0BZLUSOTIX32AD32KJRY8G5N3YAMWKNCQQ93N7UH0GVVR3JYT4X5DX4ZSK50ZLR3CA38W4JF3GVF7N06QM5AJWWUQ9K0PVI65MUZW5LE09O55039ZSTOUFDZ71ZEOH2R8LVO4L9J7MOYM2BMK1' where id=71; -update noar ti set v0='9DZYQUSF9OTXF1YUWN6YFPG2ML3927OMDJWVQ6IV9SHJ6HDPKYA7HLWCYHCFUNTEFPFVW9T90ZS9IG8SINX8A49FLY5OFYDUMZ1PK6AXJPTY7ZQ0BZLUSOTIX32AD32KJRY8G5N3YAMWKNCQQ93N7UH0GVVR3JYT4X5DX4ZSK50ZLR3CA38W4JF3GVF7N06QM5AJWWUQ9K0PVI65MUZW5LE09O55039ZSTOUFDZ71ZEOH2R8LVO4L9J7MOYM2BMK1' where id=71; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='N240W1BCFPSUI0MJEUYL970QF0D90E18ZTX0W5OPTNSBW964IUD65418K86X0P0AYMAR0LDV8317K7EX6BWDKK0KXFJ0WRRGKXDXIYE58TMKI9BLDRMDYB2EECS6SDXL08CHAE3GB0KUN904QQ30Y908DPYMPUSDRAV87B9KGMMXLI2DFCZENNCM27GB5C165UMNFGV31K78YTW2NWC2CJ2NA3LBPI2ADM73447QTTQ1FS70V6WD510INK7C5DNLN' where id=71; -update noar ti set v1='N240W1BCFPSUI0MJEUYL970QF0D90E18ZTX0W5OPTNSBW964IUD65418K86X0P0AYMAR0LDV8317K7EX6BWDKK0KXFJ0WRRGKXDXIYE58TMKI9BLDRMDYB2EECS6SDXL08CHAE3GB0KUN904QQ30Y908DPYMPUSDRAV87B9KGMMXLI2DFCZENNCM27GB5C165UMNFGV31K78YTW2NWC2CJ2NA3LBPI2ADM73447QTTQ1FS70V6WD510INK7C5DNLN' where id=71; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='622H5KHPBYEHO700WGUETVRWFOFJT2P0BZ2F7VBK205FBIKIU326XWYTELKQOUHJM8VYF5BW5C4PT0QUZ2IONGB9WX0U0EPSP9EREKZFMCHHKX40RKU55KWU5M3IWX2MBJIUM0V409UHR59HVU1NCJ0VOT703CGY5PC97YNOA8K9MDBTDRSBYTZC5067NOC9HI1MWHEWROUTW5JO1JO3V5E8KWJGFA9ZSUJK8J5FM3KXY9O9S6PQUWSP2RH1E8QWL' where id=71; -update noar ti set v2='622H5KHPBYEHO700WGUETVRWFOFJT2P0BZ2F7VBK205FBIKIU326XWYTELKQOUHJM8VYF5BW5C4PT0QUZ2IONGB9WX0U0EPSP9EREKZFMCHHKX40RKU55KWU5M3IWX2MBJIUM0V409UHR59HVU1NCJ0VOT703CGY5PC97YNOA8K9MDBTDRSBYTZC5067NOC9HI1MWHEWROUTW5JO1JO3V5E8KWJGFA9ZSUJK8J5FM3KXY9O9S6PQUWSP2RH1E8QWL' where id=71; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='693SVWB0NU7A8QNGNZUT2YSF0WOCLP26FH657DB76LJN47KRGPPOEG1JVE3K50XIOZHSN5J417ZNQDYWK4HZ9SFN96LL96YSXB3GDLOBBH4VWXOHE21HZ3ST2QX2LAMAZTKQR7AUSKNPOHJVORIY2YG91AD7NO31B53M05B2UZPFZ6M418I04JECNJY2PM3HNCENRH565YNJFWIGN6S4QNYG0KRYFIQ60MGS4YYO77R0OQJK99XTLUNVWPVHM7IDA' where id=71; -update noar ti set v3='693SVWB0NU7A8QNGNZUT2YSF0WOCLP26FH657DB76LJN47KRGPPOEG1JVE3K50XIOZHSN5J417ZNQDYWK4HZ9SFN96LL96YSXB3GDLOBBH4VWXOHE21HZ3ST2QX2LAMAZTKQR7AUSKNPOHJVORIY2YG91AD7NO31B53M05B2UZPFZ6M418I04JECNJY2PM3HNCENRH565YNJFWIGN6S4QNYG0KRYFIQ60MGS4YYO77R0OQJK99XTLUNVWPVHM7IDA' where id=71; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='4KVBI2G1BE6ZJC0ACZ25H195H8N0EGB00HGKZXXV2802TCJYXTR8SZQTW14ROQAZ8LDS61N8AUFGQUNXJQ19R547NY6WJ9WUA47ZZ4FQDAGSHAGRNZWNJC7Y3GSPUPIBKP9FCF15EP8PIDCOV3ZTLX5VAY933EWUKSBNDQYIWN2JIWCUOK0KAY2UCTRHVWSUWJR28H8BVNLDJTDDV29FUSGC71V33YH16GDC4VI3380U0G8LUAFRD823MKEM43F1V' where id=72; -update noar ti set v0='4KVBI2G1BE6ZJC0ACZ25H195H8N0EGB00HGKZXXV2802TCJYXTR8SZQTW14ROQAZ8LDS61N8AUFGQUNXJQ19R547NY6WJ9WUA47ZZ4FQDAGSHAGRNZWNJC7Y3GSPUPIBKP9FCF15EP8PIDCOV3ZTLX5VAY933EWUKSBNDQYIWN2JIWCUOK0KAY2UCTRHVWSUWJR28H8BVNLDJTDDV29FUSGC71V33YH16GDC4VI3380U0G8LUAFRD823MKEM43F1V' where id=72; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='5C9L72EGNPN3XEIC0S8YJX2S4BNQ5FNZ1SLA2KTRF523Q8GJG7B8J4LC8G9I1H6NCI49EUHBS57PV72WWC5XIXBIU5J69QZLNGXHYSIOF4L8VDPCNMB21S9TWQAX3WIVMSVCPD7KRWPIGNDGBFJG385DOBXVF0L86D7GMP1F1NJGM5NOUQWEWIB9E0XWH94YQWYOVS8AOT3QSHTYBZOWFQ3KMF8D2SWTV5GAC0AE2SLCWNT7WUWPGFQZQA89KM7GO' where id=72; -update noar ti set v1='5C9L72EGNPN3XEIC0S8YJX2S4BNQ5FNZ1SLA2KTRF523Q8GJG7B8J4LC8G9I1H6NCI49EUHBS57PV72WWC5XIXBIU5J69QZLNGXHYSIOF4L8VDPCNMB21S9TWQAX3WIVMSVCPD7KRWPIGNDGBFJG385DOBXVF0L86D7GMP1F1NJGM5NOUQWEWIB9E0XWH94YQWYOVS8AOT3QSHTYBZOWFQ3KMF8D2SWTV5GAC0AE2SLCWNT7WUWPGFQZQA89KM7GO' where id=72; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='UZB1VBNEW0BS1PH85F5DTEWFBB0HICPLT3G8NB92FZ01EK6DR0851HNNHRW5ISJ37WMJJR23GDU3U5UAI1V27F2IBZJF0B6154EQ7MX3EP62Q4ES37CG3QZRJHERXTD9U8JLAJ6UH2XPERL0AS87WUCR9J31WWIGG8E8H5E9NT1K427AYWXBSGI0PI5L13F6UABYP5BNENNNUFEHQPLQCRBOQBUFYJ7LIXT4AUEXHCZXBKCLS6OEZJ24AADFQS4P3' where id=72; -update noar ti set v2='UZB1VBNEW0BS1PH85F5DTEWFBB0HICPLT3G8NB92FZ01EK6DR0851HNNHRW5ISJ37WMJJR23GDU3U5UAI1V27F2IBZJF0B6154EQ7MX3EP62Q4ES37CG3QZRJHERXTD9U8JLAJ6UH2XPERL0AS87WUCR9J31WWIGG8E8H5E9NT1K427AYWXBSGI0PI5L13F6UABYP5BNENNNUFEHQPLQCRBOQBUFYJ7LIXT4AUEXHCZXBKCLS6OEZJ24AADFQS4P3' where id=72; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='M9KJ479UTCMETO0MI3SMJLXD47GS0FZ4B3PCN6G50SW38DM3Y8K8KTYK2CI8Q8XC1L1G5IYOSS6ITKLI7PK4WXMNF5N9LVR7XJY51ZQHMFL3M8GZHTQO5DROTOT3SKZ9K528B8XBW9FZX97Y29I6WN5WCKSU4QSU3KAKV1L5WHNOMFNS8Y0TBEMC2EPPZKXVIASWB98TYC4RCURHHZI1KG7HYF32XU1N5OEKI61A4KK0IXRZUYUWJCF5ASV8OTM4F' where id=72; -update noar ti set v3='M9KJ479UTCMETO0MI3SMJLXD47GS0FZ4B3PCN6G50SW38DM3Y8K8KTYK2CI8Q8XC1L1G5IYOSS6ITKLI7PK4WXMNF5N9LVR7XJY51ZQHMFL3M8GZHTQO5DROTOT3SKZ9K528B8XBW9FZX97Y29I6WN5WCKSU4QSU3KAKV1L5WHNOMFNS8Y0TBEMC2EPPZKXVIASWB98TYC4RCURHHZI1KG7HYF32XU1N5OEKI61A4KK0IXRZUYUWJCF5ASV8OTM4F' where id=72; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='7NEC4XECTR7ZW4IJASRU3H7WQGZ9T48SKRZB5J96H6124LC35990VQ1TXGGA1PYMWIH0HKOBIKBACX5Q8XE8A46HZQG9U1GIZJ01E2Y0C97IIKRLJBPWALKO71DRKXP7UA6B1JQ3L5YE3Q98R1ZIHLR4VLOZB46T7YMJHN75MIQ2S31TA4A9A9WX8JN83ZZYTWITPL748FS7AF7986FX2H6UQYESKHGB6NI26PS0PSWGES36AMXHBOZ2KNW5YD3LH' where id=73; -update noar ti set v0='7NEC4XECTR7ZW4IJASRU3H7WQGZ9T48SKRZB5J96H6124LC35990VQ1TXGGA1PYMWIH0HKOBIKBACX5Q8XE8A46HZQG9U1GIZJ01E2Y0C97IIKRLJBPWALKO71DRKXP7UA6B1JQ3L5YE3Q98R1ZIHLR4VLOZB46T7YMJHN75MIQ2S31TA4A9A9WX8JN83ZZYTWITPL748FS7AF7986FX2H6UQYESKHGB6NI26PS0PSWGES36AMXHBOZ2KNW5YD3LH' where id=73; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='C812P5RL4RLS0I5886A1PMR43QI83FMX77FNE69GENXR9ZMSAKJGZQ3DBPR1C64ZP9LQTA27G7NBZPUGLDRBP7VYNXQ8ATX2RE13OVY9X0WU1KE3O436F04H69S4XZD7U2F98Q248D2QQHS53N8A6I6IDDF9UOF1O3QG41381YTTK1V18EZGNW51588P9DZJCNXE8CJU7GN3M0DSEG31OW47JY7P2WO9R6RFIG9Y0WJUICW8PHMF2R5Y0IE49UZL0' where id=73; -update noar ti set v1='C812P5RL4RLS0I5886A1PMR43QI83FMX77FNE69GENXR9ZMSAKJGZQ3DBPR1C64ZP9LQTA27G7NBZPUGLDRBP7VYNXQ8ATX2RE13OVY9X0WU1KE3O436F04H69S4XZD7U2F98Q248D2QQHS53N8A6I6IDDF9UOF1O3QG41381YTTK1V18EZGNW51588P9DZJCNXE8CJU7GN3M0DSEG31OW47JY7P2WO9R6RFIG9Y0WJUICW8PHMF2R5Y0IE49UZL0' where id=73; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='WO8RCONG3AO65JYG2X4N02QYFQGU66QPSD6XANXR578LZ4C54R6MAXMPRWV371MZXNX94XKNZKN717QJ90ZBHF24J36UFI0430JPZZZ7HRWJB8GHAP8MKQ61XICSE0OI97DACR42F69CTXNLH3E7SSGYVDD7CHEPYMV286HS5CFAMJ8Z6SCDPK9SGS4QO82VTYJBBFYSCW09GMMR8OL36DHAWQBQT2FV2NK45KGL38WAEW9U0FZ73TRETTHMBYDNJ' where id=73; -update noar ti set v2='WO8RCONG3AO65JYG2X4N02QYFQGU66QPSD6XANXR578LZ4C54R6MAXMPRWV371MZXNX94XKNZKN717QJ90ZBHF24J36UFI0430JPZZZ7HRWJB8GHAP8MKQ61XICSE0OI97DACR42F69CTXNLH3E7SSGYVDD7CHEPYMV286HS5CFAMJ8Z6SCDPK9SGS4QO82VTYJBBFYSCW09GMMR8OL36DHAWQBQT2FV2NK45KGL38WAEW9U0FZ73TRETTHMBYDNJ' where id=73; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='8FS8A49KS3S2J7ZNUKIVYD8CR1N0SUV8UK1NWBKF8R2GOE1MSDVJLZPY6QZVAHESK0LSENBZIQ5IC86GI1DM0HWYRZEEY5JD19SNNED8E861RG3WT365K0V0N36B0SCRDGS3F5J7NG3RGDIY3U8ZJJCF2RMJ3NLYHAF5CLVCEZT3FN1X2C4B0S5H7V193QB9Z03JEHDBMH3PKPWZBF2XU913FHBN52EGEY9T88KT8WJHCN98JET6RMRFRCC36GPXW' where id=73; -update noar ti set v3='8FS8A49KS3S2J7ZNUKIVYD8CR1N0SUV8UK1NWBKF8R2GOE1MSDVJLZPY6QZVAHESK0LSENBZIQ5IC86GI1DM0HWYRZEEY5JD19SNNED8E861RG3WT365K0V0N36B0SCRDGS3F5J7NG3RGDIY3U8ZJJCF2RMJ3NLYHAF5CLVCEZT3FN1X2C4B0S5H7V193QB9Z03JEHDBMH3PKPWZBF2XU913FHBN52EGEY9T88KT8WJHCN98JET6RMRFRCC36GPXW' where id=73; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='9YNN9O1R1E5LJZ5KIIMVNEVFBFSV5ZHUFOJCJS4AOO6SUX1PN3UIS1PNBTLXD3I1DPMX7JX1JTFACPGBDDZ0XA5M3DQ91WNJK41VCB8OKB1LOWH1L6IE78HHTJ67J7O1XB44432Y1JLJLUE26PRBUYMXSTMTPWWZ4XCMQTDMG1SFG2W9UH3O6OT4XJKMMPS8BMGKHGXW85PLSKRNHA63MUBR63LU11B6ZUDQ0LMGIH2V725V7BNVTYIHB7728T8FZ' where id=74; -update noar ti set v0='9YNN9O1R1E5LJZ5KIIMVNEVFBFSV5ZHUFOJCJS4AOO6SUX1PN3UIS1PNBTLXD3I1DPMX7JX1JTFACPGBDDZ0XA5M3DQ91WNJK41VCB8OKB1LOWH1L6IE78HHTJ67J7O1XB44432Y1JLJLUE26PRBUYMXSTMTPWWZ4XCMQTDMG1SFG2W9UH3O6OT4XJKMMPS8BMGKHGXW85PLSKRNHA63MUBR63LU11B6ZUDQ0LMGIH2V725V7BNVTYIHB7728T8FZ' where id=74; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='OH77FS0E3VHZUNSGAC9ZG4SULNF66MVU6JENVIOISFZ4MIO24O6R2V9QWBET1PVSBO4W2NSWBM479O3G5RB0BF62CJ6FD817P7CW7ZZY04QGCJXA88GKU4RJ1RE6QJT8NK093EKPRJWQ6Y5MQHHMKW5914BPRD65FQ5WHY8Q0GMGQD2OU6BDKOVDS6OWWLI59C7RNHV8XX6X5BUWGR5V3WPRN68LPLEFIVQ2B5BCV9FJXH4ESJPTBF4I1YIX22LXE' where id=74; -update noar ti set v1='OH77FS0E3VHZUNSGAC9ZG4SULNF66MVU6JENVIOISFZ4MIO24O6R2V9QWBET1PVSBO4W2NSWBM479O3G5RB0BF62CJ6FD817P7CW7ZZY04QGCJXA88GKU4RJ1RE6QJT8NK093EKPRJWQ6Y5MQHHMKW5914BPRD65FQ5WHY8Q0GMGQD2OU6BDKOVDS6OWWLI59C7RNHV8XX6X5BUWGR5V3WPRN68LPLEFIVQ2B5BCV9FJXH4ESJPTBF4I1YIX22LXE' where id=74; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='A7U95GIVHS3RJI0XLFMEOCUD7F4SS5BGHSY53I6RO7WBYKW2P2UFS7TT6LF8QCDKL8LRMXQX80MGJGN29T0FDOMQRHVT0PJMY4SODMCOLHPVOS4GQVEEJXN9VXJ39DOMW823K2WXFFY9CUB5XFD3VN8F414YTAECKL1OZ6F0F3BHTYATE5WL8VPUHZODGSI95FFI55OY2GWJ0F5R3QLWQTWRM9S86FJ14CWVG1GTYPU6TMV3BQXCF15GHMSGKR6G6' where id=74; -update noar ti set v2='A7U95GIVHS3RJI0XLFMEOCUD7F4SS5BGHSY53I6RO7WBYKW2P2UFS7TT6LF8QCDKL8LRMXQX80MGJGN29T0FDOMQRHVT0PJMY4SODMCOLHPVOS4GQVEEJXN9VXJ39DOMW823K2WXFFY9CUB5XFD3VN8F414YTAECKL1OZ6F0F3BHTYATE5WL8VPUHZODGSI95FFI55OY2GWJ0F5R3QLWQTWRM9S86FJ14CWVG1GTYPU6TMV3BQXCF15GHMSGKR6G6' where id=74; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='4K0AMB69AHAMZSR7S5O0PLJ76BKVAYIE2O320HMUQJFAX22TFO3S35MIQ4GIJI9KMOQOBA9RPNHMS1T6CFWH5EVI78JQQR9IDBY46WRJVCYCZ8M6YQGQBP9AVC0AD2DS2IBW2HNXD9HOXF1AT7KRHCT4YHP2Z1BPTV7DHMW2EAABY3K698S9836N2AINOUNPLCHQDITXA6U8GYC8KAJOZZJ58JEQXBIRUT3SL2XZWULU5KAS4UW2MOEUUVUSE4SA5' where id=74; -update noar ti set v3='4K0AMB69AHAMZSR7S5O0PLJ76BKVAYIE2O320HMUQJFAX22TFO3S35MIQ4GIJI9KMOQOBA9RPNHMS1T6CFWH5EVI78JQQR9IDBY46WRJVCYCZ8M6YQGQBP9AVC0AD2DS2IBW2HNXD9HOXF1AT7KRHCT4YHP2Z1BPTV7DHMW2EAABY3K698S9836N2AINOUNPLCHQDITXA6U8GYC8KAJOZZJ58JEQXBIRUT3SL2XZWULU5KAS4UW2MOEUUVUSE4SA5' where id=74; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='MAXJK8SCOJ2E8T4VMQ261YKS5WC8TEA9US5KBXUC1T6226LYKNQMSWTIN3A7HZM01SS3WHI1OCNRRJQEJDO1DB2GLHANX99YH1TNCRYWBJ4FDV795TOA1PTTY0G7QS7DGEKL7B4TY5N4V8TLAZWDFWEC52ONF1GICCQO0V8UGVSV797VUREEEFI7ZWB1OYO3IT9BQHEED4L9JWKWDBW2WIFPUWHBZH6QJBNGOQET8HM4WMIXNUSVFJNSSTPDP5THO' where id=75; -update noar ti set v0='MAXJK8SCOJ2E8T4VMQ261YKS5WC8TEA9US5KBXUC1T6226LYKNQMSWTIN3A7HZM01SS3WHI1OCNRRJQEJDO1DB2GLHANX99YH1TNCRYWBJ4FDV795TOA1PTTY0G7QS7DGEKL7B4TY5N4V8TLAZWDFWEC52ONF1GICCQO0V8UGVSV797VUREEEFI7ZWB1OYO3IT9BQHEED4L9JWKWDBW2WIFPUWHBZH6QJBNGOQET8HM4WMIXNUSVFJNSSTPDP5THO' where id=75; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='AVWI8Y3F2LZ4J0IROPDULWOK9XE9GVUIEBO3VUBMSZW1I7RAGGMKEC1A0YN7M6AQT5QEYJFMB6RT5V2SNPSFVFHENSO0X5OGAFPMG95OQZ1LE3XVDD9IJTEG9U7QV249F805C0R4KN71LEF9I2CNPUH8IGZ9IMNBXXLM5S2GL6USLIJVUKSXWJVFNYIAZAIZNT0DOH9FFBP4DK9X6LYIC6E8ZZBZP7TD1ZA0TBW8HUKO1U41JGF5JF0FIDPRKRLB4' where id=75; -update noar ti set v1='AVWI8Y3F2LZ4J0IROPDULWOK9XE9GVUIEBO3VUBMSZW1I7RAGGMKEC1A0YN7M6AQT5QEYJFMB6RT5V2SNPSFVFHENSO0X5OGAFPMG95OQZ1LE3XVDD9IJTEG9U7QV249F805C0R4KN71LEF9I2CNPUH8IGZ9IMNBXXLM5S2GL6USLIJVUKSXWJVFNYIAZAIZNT0DOH9FFBP4DK9X6LYIC6E8ZZBZP7TD1ZA0TBW8HUKO1U41JGF5JF0FIDPRKRLB4' where id=75; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='J2WRIE1SYM8DB6EARECT01QBP6L7359A2ZLH49103EOZ0723AMYCJJNTGNF7F4NZPLUK0NZTJ3X3EGNWIQ7S0P5FNSST5BJ1EZ6NL2U85HQKGM4DYQVUR8O9EASGOI7TJWUMG6RTADPYNPIN227SK3AHTZHYJ7J7U0K1PWXNZO7UL6NK13GS6S5IXM498CM1YUTC24CG5B8JT3T654I33WM7Q0QGYO62ATVEJSHK6IN5TH8SGGE0NDFF8T6C4APFJ' where id=75; -update noar ti set v2='J2WRIE1SYM8DB6EARECT01QBP6L7359A2ZLH49103EOZ0723AMYCJJNTGNF7F4NZPLUK0NZTJ3X3EGNWIQ7S0P5FNSST5BJ1EZ6NL2U85HQKGM4DYQVUR8O9EASGOI7TJWUMG6RTADPYNPIN227SK3AHTZHYJ7J7U0K1PWXNZO7UL6NK13GS6S5IXM498CM1YUTC24CG5B8JT3T654I33WM7Q0QGYO62ATVEJSHK6IN5TH8SGGE0NDFF8T6C4APFJ' where id=75; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='QCF18C0GDB9XJ99UOJ5V5NSHX52SMX4NJCX6YM31XUWCRYOY8BT7HW330ML84ZOJAORF23HL13X9H3FI780K5BML23CE5RKD8MSP5Q4U5PIC3CPVJCO81S7INPU5X1SC1WJK66PSIP3QFLYMZ60MTBDMPZR1YQ0X6BDJQGPHJYXSAV8GH7Q5SBUCT4BGXAFWEWCNTH35QN2S6BRKRI094JGRY2K5EBUMS6H1BBI1YY8T2MCVE9W33CMG2X41MBLXC' where id=75; -update noar ti set v3='QCF18C0GDB9XJ99UOJ5V5NSHX52SMX4NJCX6YM31XUWCRYOY8BT7HW330ML84ZOJAORF23HL13X9H3FI780K5BML23CE5RKD8MSP5Q4U5PIC3CPVJCO81S7INPU5X1SC1WJK66PSIP3QFLYMZ60MTBDMPZR1YQ0X6BDJQGPHJYXSAV8GH7Q5SBUCT4BGXAFWEWCNTH35QN2S6BRKRI094JGRY2K5EBUMS6H1BBI1YY8T2MCVE9W33CMG2X41MBLXC' where id=75; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='71NT19EP84082NY6CJRT4GT5F4VRZHBW4BFBCZWDGYJA5PMNIDJHVP1LHXSMZ22GPH9RWCWE809VIVSA05G6SHT3GHU9TC0V8G8KJTSRK43X5X6EN4DT02EBN3YOVMZMAQL9O9WXLZLJVIHUZS9P1O5NNGVUEOMNT1P9HTI2BNTGLZSNCU59ZQO2B2HI1CD2K330OG33KETLRHM0KZHWY6EGLN5U36F3AN4E4RASWVIF0BQML8CQIK5DFOTWSV1I0' where id=76; -update noar ti set v0='71NT19EP84082NY6CJRT4GT5F4VRZHBW4BFBCZWDGYJA5PMNIDJHVP1LHXSMZ22GPH9RWCWE809VIVSA05G6SHT3GHU9TC0V8G8KJTSRK43X5X6EN4DT02EBN3YOVMZMAQL9O9WXLZLJVIHUZS9P1O5NNGVUEOMNT1P9HTI2BNTGLZSNCU59ZQO2B2HI1CD2K330OG33KETLRHM0KZHWY6EGLN5U36F3AN4E4RASWVIF0BQML8CQIK5DFOTWSV1I0' where id=76; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='BH3KTNOGM94BEH1J2QNK4XOSZIPMXR2G3NXCTRMZFPJOHXTDJU0ZTHK26W6M7J6O1SJLBOD46LI99XVF9KUGCWK81D6AWNUF1VEG8BEL8SYYTB7MX3DISRLI1B4OEZFXZL0UGWQ0R8KBZL774R4GZPI5T2N4NE8YAT5MDCHX7DBVDLKG4YHGV07LBAM7UHOVHQ961WA3TTR0F1743P7P65VIRGN1NMPZP2K3JILT2WFKKTWEX16GZ5RQJS5N99WM0' where id=76; -update noar ti set v1='BH3KTNOGM94BEH1J2QNK4XOSZIPMXR2G3NXCTRMZFPJOHXTDJU0ZTHK26W6M7J6O1SJLBOD46LI99XVF9KUGCWK81D6AWNUF1VEG8BEL8SYYTB7MX3DISRLI1B4OEZFXZL0UGWQ0R8KBZL774R4GZPI5T2N4NE8YAT5MDCHX7DBVDLKG4YHGV07LBAM7UHOVHQ961WA3TTR0F1743P7P65VIRGN1NMPZP2K3JILT2WFKKTWEX16GZ5RQJS5N99WM0' where id=76; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='MYG9WC3PCRJPG9WTEVI0QBKKXNL6MVRDED81DBONL7F1AK717OXTOPMJ44W4441A7UGOBO1OFFEB25TH6QNBUFHVJDO2BZHQTLX4G6LVWF9KS6KQ4DKP8X9YKQQBVJ8V29QRE8N8874BQRUVWTLPW74P13S5IVTCBMLVYODQDV6502G6FUDPY569AVTP7SFWZCVF6CCJQHSFO9JHXNSOF2EA03CYOE0B2DWS7T3GYJ9Y393SR9UBMRPMDJKNQKB0C' where id=76; -update noar ti set v2='MYG9WC3PCRJPG9WTEVI0QBKKXNL6MVRDED81DBONL7F1AK717OXTOPMJ44W4441A7UGOBO1OFFEB25TH6QNBUFHVJDO2BZHQTLX4G6LVWF9KS6KQ4DKP8X9YKQQBVJ8V29QRE8N8874BQRUVWTLPW74P13S5IVTCBMLVYODQDV6502G6FUDPY569AVTP7SFWZCVF6CCJQHSFO9JHXNSOF2EA03CYOE0B2DWS7T3GYJ9Y393SR9UBMRPMDJKNQKB0C' where id=76; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='ZKJR74B19LYTUC4TO15X0I15TZYO0P75YBNV2J3J6T844G08HKUS1Z1LBTKIXWXFGZU77ZTJYVY8TQSO1RFLHZL2XYNRBDL1UCAZMKDZMCK10RM3EM2Y1MW43MGNB2YBS39CMFD6Q9WE6ZIX7CG2P57P006HRKBMUAPOY73LGKRHX09AF8YFSS8TNBWV3E0VE23BV7V3HPBV29JY0C4EUMGL9O75G3OJJOOCRS2NBBSY2LVON6R8G4XKI7VI3882A' where id=76; -update noar ti set v3='ZKJR74B19LYTUC4TO15X0I15TZYO0P75YBNV2J3J6T844G08HKUS1Z1LBTKIXWXFGZU77ZTJYVY8TQSO1RFLHZL2XYNRBDL1UCAZMKDZMCK10RM3EM2Y1MW43MGNB2YBS39CMFD6Q9WE6ZIX7CG2P57P006HRKBMUAPOY73LGKRHX09AF8YFSS8TNBWV3E0VE23BV7V3HPBV29JY0C4EUMGL9O75G3OJJOOCRS2NBBSY2LVON6R8G4XKI7VI3882A' where id=76; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='QEH9QBXR6Q0RUU6VID14PBM1C134IF7ENG6IJUG13TCEEC7P3OO36I6RJMVMBAE47I5KE4856CKGR4YCMKHE4VZWK6R51FXBANSRRSD82NG5X1UFMOIGVTICZSZ7TKYGMOK8YHRD6W5DT8MBYWT5N6Q9KOJKJFFQTGMK13TC40BLF42JR2B5NJTKX1UM0YA05GR108UFGJGN2Q1DD4UCJKC6X2LEBR2RY5FIX9KZ796RMIYFUAQSK73WDJR3K85B0' where id=77; -update noar ti set v0='QEH9QBXR6Q0RUU6VID14PBM1C134IF7ENG6IJUG13TCEEC7P3OO36I6RJMVMBAE47I5KE4856CKGR4YCMKHE4VZWK6R51FXBANSRRSD82NG5X1UFMOIGVTICZSZ7TKYGMOK8YHRD6W5DT8MBYWT5N6Q9KOJKJFFQTGMK13TC40BLF42JR2B5NJTKX1UM0YA05GR108UFGJGN2Q1DD4UCJKC6X2LEBR2RY5FIX9KZ796RMIYFUAQSK73WDJR3K85B0' where id=77; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='ZP4W6KPAR1T6WTWH2MCFRENMQRJJRB66HEG089L5LM728YT3XIF5RVQJ3HSQRRE7G698ABL2LHUEF8UL53CKSZHMSIBNAJPQZS0NJ9UY88HC9OZFIYPEC522AMQZ55A01ZOE6HW3GK3EIF9P6GKJXDQ1DAKMV7RE2B6DRGDUO0J5PINNG1AYSFCQ8QF0CCPWQ06WX3YFW66KF3Z51LNJUROM3TNTK3S22NB3RDLFKUU57OG2FGI40U2U0SKZY8A82' where id=77; -update noar ti set v1='ZP4W6KPAR1T6WTWH2MCFRENMQRJJRB66HEG089L5LM728YT3XIF5RVQJ3HSQRRE7G698ABL2LHUEF8UL53CKSZHMSIBNAJPQZS0NJ9UY88HC9OZFIYPEC522AMQZ55A01ZOE6HW3GK3EIF9P6GKJXDQ1DAKMV7RE2B6DRGDUO0J5PINNG1AYSFCQ8QF0CCPWQ06WX3YFW66KF3Z51LNJUROM3TNTK3S22NB3RDLFKUU57OG2FGI40U2U0SKZY8A82' where id=77; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='34NNL1Y93SHGO2RMH8CGKUXEPYHS4GGK7I3EH6ZPS34D2EO6G4G4AXQQHICGC37UI1XGMPH54E0QC6E6EDN4F543YZ5WPQTZWND9V72NW9BC0ZQUAOBQAR60CDGHDY97O95UZHI7HFQBQY5NVXBMGP7UTVIRAANZ9IA015ELU2G7GUB37XZ1Z8VMVK96VRB8056XIQPS2SP1Z57SZ0EZ3YM8IN9G3IDMB54HQ9OFK0QU3BQERN4T5OOR7PXPXE2QN' where id=77; -update noar ti set v2='34NNL1Y93SHGO2RMH8CGKUXEPYHS4GGK7I3EH6ZPS34D2EO6G4G4AXQQHICGC37UI1XGMPH54E0QC6E6EDN4F543YZ5WPQTZWND9V72NW9BC0ZQUAOBQAR60CDGHDY97O95UZHI7HFQBQY5NVXBMGP7UTVIRAANZ9IA015ELU2G7GUB37XZ1Z8VMVK96VRB8056XIQPS2SP1Z57SZ0EZ3YM8IN9G3IDMB54HQ9OFK0QU3BQERN4T5OOR7PXPXE2QN' where id=77; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='QQRW0CJ6DVZKHMMCDAN0UYIJVJHDIYAXQ239COEG1Q6CH3DA41E6175QW3FSVI87T9INMJ0EZ15NXPE029KLECDS02L6LW3FVFOUVNIVCOI249MS0OZRN2YNLH3OG8W56LXCOU98NOTOAQECGXVA1304KMFLTZ17MQD5CGFSBFDWCC2F5DRNBAIJHMMW4BACUOEGR8EL8T8XD8L4ETKY4RBA9898QCGI5B7JBQXJ1HV6FBATOQW5IS7N0A4LORH42' where id=77; -update noar ti set v3='QQRW0CJ6DVZKHMMCDAN0UYIJVJHDIYAXQ239COEG1Q6CH3DA41E6175QW3FSVI87T9INMJ0EZ15NXPE029KLECDS02L6LW3FVFOUVNIVCOI249MS0OZRN2YNLH3OG8W56LXCOU98NOTOAQECGXVA1304KMFLTZ17MQD5CGFSBFDWCC2F5DRNBAIJHMMW4BACUOEGR8EL8T8XD8L4ETKY4RBA9898QCGI5B7JBQXJ1HV6FBATOQW5IS7N0A4LORH42' where id=77; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='M1TGPFZ27BNJ9HWFB6BWQU9T9J8OXRDSODTL3SMEIYA9J2YG3UIBCNR7YDIH5D3QY81FHBG2WVTO8J9ZA8JGK6GPJG9QD8JXFVI00R9L5KLQQILFULHREK1IN9ABI64EDC081J730AFPLLSUPF6ULW6IVB9DJ1E0J54UMITLZ94VV2JR2CIG1KGU2MYOCT7XB0P6SA7FLBL6KGFVFLJQTITRU0J14JRIQR239Z54YEB5BRSXHVMG5L1UOJQAGOUET' where id=78; -update noar ti set v0='M1TGPFZ27BNJ9HWFB6BWQU9T9J8OXRDSODTL3SMEIYA9J2YG3UIBCNR7YDIH5D3QY81FHBG2WVTO8J9ZA8JGK6GPJG9QD8JXFVI00R9L5KLQQILFULHREK1IN9ABI64EDC081J730AFPLLSUPF6ULW6IVB9DJ1E0J54UMITLZ94VV2JR2CIG1KGU2MYOCT7XB0P6SA7FLBL6KGFVFLJQTITRU0J14JRIQR239Z54YEB5BRSXHVMG5L1UOJQAGOUET' where id=78; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='E45HRG2PE82P2VMGLRV8ITBZOIGC0ROVAD2JNN60W9OLJ1MFE083QW3CVV3TB27XNU8YTKO4KFJFHG3W1UASL4AQR1ERT3RSW2OR5U3MDL0A9RJN2SEFG8ICL9UPZSL93UNR4LCR00A6W21O7K3CFP1XL238PS7OR71JTUPSR4GM947O0IXQJB735GGA1R1UNX1PNTBPP12KP3H1LKFCQW4H9HWUSIUZBT8PQI0V36LJ18ZR9D3QYAT9LB6IW7Z61' where id=78; -update noar ti set v1='E45HRG2PE82P2VMGLRV8ITBZOIGC0ROVAD2JNN60W9OLJ1MFE083QW3CVV3TB27XNU8YTKO4KFJFHG3W1UASL4AQR1ERT3RSW2OR5U3MDL0A9RJN2SEFG8ICL9UPZSL93UNR4LCR00A6W21O7K3CFP1XL238PS7OR71JTUPSR4GM947O0IXQJB735GGA1R1UNX1PNTBPP12KP3H1LKFCQW4H9HWUSIUZBT8PQI0V36LJ18ZR9D3QYAT9LB6IW7Z61' where id=78; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='LT422FNS340WVO7BROC6N63A63S388BF4TD1NJOVN6M2ULE9USLIZS2CD5GGLO9VIM4ZV07VU6QLA5VFZ10P2AJT5CL1CGW4FK1AESTHRUFNBHFDENW8OY6IWTDG7988B9WARPGM41CGSS6VDH7X84SQ6Z1JQDRWD5Z1HI2EUM9143P7OIGQMPBIZ64QQEMQ5USVWFZ1W8RP8Y23QJMFSYXABVVTXAF56JGCCOTICUTLZ7E6H5L6LJI9CJBLLLG4R' where id=78; -update noar ti set v2='LT422FNS340WVO7BROC6N63A63S388BF4TD1NJOVN6M2ULE9USLIZS2CD5GGLO9VIM4ZV07VU6QLA5VFZ10P2AJT5CL1CGW4FK1AESTHRUFNBHFDENW8OY6IWTDG7988B9WARPGM41CGSS6VDH7X84SQ6Z1JQDRWD5Z1HI2EUM9143P7OIGQMPBIZ64QQEMQ5USVWFZ1W8RP8Y23QJMFSYXABVVTXAF56JGCCOTICUTLZ7E6H5L6LJI9CJBLLLG4R' where id=78; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='2RRQQ3G33WUF5HHKU4ZEP20VX1I8YPRAIPYL8AKIP8ZGF3MIHY0K2MA4KFOD6IEGSSWQKBWLERQNS3OQ97CF8CROIC7IJ9FBXIRL39EIB2277KCX5PI977TJX07WP7TZ4XRQTCS26VS3IZFRHE2ECUP2N1G8SGN2DRAXK5APLP39WAN5KEVTN8VBWAGSE3EED3ZLYVR6QXXMZGLDN4QVEAMR9N0IEICCSRAHJLZIH7QS1PM6YWQPBSTXIQIFO9S07' where id=78; -update noar ti set v3='2RRQQ3G33WUF5HHKU4ZEP20VX1I8YPRAIPYL8AKIP8ZGF3MIHY0K2MA4KFOD6IEGSSWQKBWLERQNS3OQ97CF8CROIC7IJ9FBXIRL39EIB2277KCX5PI977TJX07WP7TZ4XRQTCS26VS3IZFRHE2ECUP2N1G8SGN2DRAXK5APLP39WAN5KEVTN8VBWAGSE3EED3ZLYVR6QXXMZGLDN4QVEAMR9N0IEICCSRAHJLZIH7QS1PM6YWQPBSTXIQIFO9S07' where id=78; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='GEY2MGKDC0A7ZOV2SCLHGJLN0UFEP867IBZZJ0KHNUKNAGNMTKLOSDO1A3I06AVWSUE5YTNMG4MB72EHJDYZFE82PGOTOFEAMMHSTQS6JTPXHL2JV9EGXXZY79VR271YWQVHPBPG491H57QDTNXJ1NF28RG7MXKRRGIE08SMIJA7OB8HYOKR7S8KAICAAIYQH6UHVG64IKIYA906ELD7KIA0GRSCJ8F9HJ5DD2ACBXWWPGPXY3K5SS1KLRCVYHBV8' where id=79; -update noar ti set v0='GEY2MGKDC0A7ZOV2SCLHGJLN0UFEP867IBZZJ0KHNUKNAGNMTKLOSDO1A3I06AVWSUE5YTNMG4MB72EHJDYZFE82PGOTOFEAMMHSTQS6JTPXHL2JV9EGXXZY79VR271YWQVHPBPG491H57QDTNXJ1NF28RG7MXKRRGIE08SMIJA7OB8HYOKR7S8KAICAAIYQH6UHVG64IKIYA906ELD7KIA0GRSCJ8F9HJ5DD2ACBXWWPGPXY3K5SS1KLRCVYHBV8' where id=79; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='AUR8O25HT1TRD66PAM3XUVR1X2UFPNO54QXGDTP03OWAIDQLPEPOQ2Y5YX3O1X9HWFPKM76DWEXSHRDIPR791Q9J30NQA24W5MF6MFBMSVR5DQ1X5V8ZOF93X1H4GK0DLP1Z8FQFDXGGMJ2M8G0RH9838AB8T3GSTLU9Q95XY5RJSV9NQ8XMUMFOX3VNDP4CBL58A57EWDGQO2C63I6TGQULG6W5H3DJT2I7VVN90N6ZNK7CLJ5LR0UHU4MTMWUJ0' where id=79; -update noar ti set v1='AUR8O25HT1TRD66PAM3XUVR1X2UFPNO54QXGDTP03OWAIDQLPEPOQ2Y5YX3O1X9HWFPKM76DWEXSHRDIPR791Q9J30NQA24W5MF6MFBMSVR5DQ1X5V8ZOF93X1H4GK0DLP1Z8FQFDXGGMJ2M8G0RH9838AB8T3GSTLU9Q95XY5RJSV9NQ8XMUMFOX3VNDP4CBL58A57EWDGQO2C63I6TGQULG6W5H3DJT2I7VVN90N6ZNK7CLJ5LR0UHU4MTMWUJ0' where id=79; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='HBOTJ0QPHI55D8MEL74B22UE5YGMR4HXPZ85D1X0FIFEY47WAAW44JIAQIH0MHTI4TXEGRR56CZ3IH7OA6DTWFYHCIQLWHMH9THFS46AKSYSSAGKJU3YP81RLTD4LFFLQMYKBWLEXGYEB4XG8ACGU2TR0QX7HT0QYR3LVEUB1LHFS3Q1YPPIJMNTJFMXZNOOWBSOCQYMIYY5F37RHC45X600YYHBCGPM5U7BHI4FVSD16S1XXVGVBFJAPVF0DBH1L' where id=79; -update noar ti set v2='HBOTJ0QPHI55D8MEL74B22UE5YGMR4HXPZ85D1X0FIFEY47WAAW44JIAQIH0MHTI4TXEGRR56CZ3IH7OA6DTWFYHCIQLWHMH9THFS46AKSYSSAGKJU3YP81RLTD4LFFLQMYKBWLEXGYEB4XG8ACGU2TR0QX7HT0QYR3LVEUB1LHFS3Q1YPPIJMNTJFMXZNOOWBSOCQYMIYY5F37RHC45X600YYHBCGPM5U7BHI4FVSD16S1XXVGVBFJAPVF0DBH1L' where id=79; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='KLVA79QM3ENX2ZEDQJ0G0YFX7MG38YA7XVGNI74NRSIGCO2140FROZV5S5GUV62XB4X859ZXJHNZY03R02CLTSZY3A66Z9N52S2P8Z8R2PJR3AKZDRKZHLKC59WX7ZLTKOCEKN2TCL3P3ZJ1MKBWBMZE4LPWAVFLQPIUR4A3L599QK6J456QKNVGXTC8EMNBLRMEXW2OFFLHG0MPU9RDOFTZSWRPA84F602YTXRK39WHXWIM6TNWPXT4IBR0IG1BT' where id=79; -update noar ti set v3='KLVA79QM3ENX2ZEDQJ0G0YFX7MG38YA7XVGNI74NRSIGCO2140FROZV5S5GUV62XB4X859ZXJHNZY03R02CLTSZY3A66Z9N52S2P8Z8R2PJR3AKZDRKZHLKC59WX7ZLTKOCEKN2TCL3P3ZJ1MKBWBMZE4LPWAVFLQPIUR4A3L599QK6J456QKNVGXTC8EMNBLRMEXW2OFFLHG0MPU9RDOFTZSWRPA84F602YTXRK39WHXWIM6TNWPXT4IBR0IG1BT' where id=79; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='13F7SG1T7D1P1IUD396Y3NKF692WWAOKBT5I0CYSZ3CCLJ3VWAPQCJLD31CFSLN6IRV1GPWEQG0NA1XMW7NHH1CG3DF0Z1NYQJE5UUXHMR79XSRFHHXF3814FOD276ILSAZ5G2KOTKQV61PLIGW5XVFKHJV5O6DW5F4AAWRMXGKT54K1HBAUHC5K60Y60EYZDBVXPFOCRYS61XFI2QCM9ZYJJBDLG9TXL0BZ85DUGLOR3YH5SX54TK92QYPUYULQL' where id=80; -update noar ti set v0='13F7SG1T7D1P1IUD396Y3NKF692WWAOKBT5I0CYSZ3CCLJ3VWAPQCJLD31CFSLN6IRV1GPWEQG0NA1XMW7NHH1CG3DF0Z1NYQJE5UUXHMR79XSRFHHXF3814FOD276ILSAZ5G2KOTKQV61PLIGW5XVFKHJV5O6DW5F4AAWRMXGKT54K1HBAUHC5K60Y60EYZDBVXPFOCRYS61XFI2QCM9ZYJJBDLG9TXL0BZ85DUGLOR3YH5SX54TK92QYPUYULQL' where id=80; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='57LW6PGG89D3EYVEKMN3JHTTFVPGO0JJP20MY2ZNJ1OOKV2KKWP2MB7KBN86LAO3W1WAOIUNRU4ZHFBU8LSI95I0A0ZEMRO75BLQV4Z7Y6HALJAUXRFL8K4QXO2BJH1A0XLA5WTISN8FIJS5SUJXMYMFT6GPQS3W3JIO55027QC7Q9B22MCIV0BYVXIWA4RB6R9BA0Y0Q50ZSZ9LXE1RBXYHMQJLWYMZRQNQ90J06P1DK3Y5UAWC3MQ1B1MGD36BE' where id=80; -update noar ti set v1='57LW6PGG89D3EYVEKMN3JHTTFVPGO0JJP20MY2ZNJ1OOKV2KKWP2MB7KBN86LAO3W1WAOIUNRU4ZHFBU8LSI95I0A0ZEMRO75BLQV4Z7Y6HALJAUXRFL8K4QXO2BJH1A0XLA5WTISN8FIJS5SUJXMYMFT6GPQS3W3JIO55027QC7Q9B22MCIV0BYVXIWA4RB6R9BA0Y0Q50ZSZ9LXE1RBXYHMQJLWYMZRQNQ90J06P1DK3Y5UAWC3MQ1B1MGD36BE' where id=80; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='ODJUG17MEZYWLG2TVEEKZ9GD8Z35RE87C4HM07SF05KGBJUNCJR31PTR29VWETVYJSZCHPEVGP3JU2IKZRSZMA2M1LPLLTK0HDULTQIJA2UATWJG0CO03Q9AL3HUJMJNIK1VB2LTERNXOIG016LTMLA2O2ZWCR5F3EN1WG9YZQ4NUYDYAA0MUWO2N6HUO9O86M04JDSTLAJW0PNDQ6XQ7TIDJT8C4JEUTZPU6W78H7V5XM4D0W5OT9DLFIZHGJBI4' where id=80; -update noar ti set v2='ODJUG17MEZYWLG2TVEEKZ9GD8Z35RE87C4HM07SF05KGBJUNCJR31PTR29VWETVYJSZCHPEVGP3JU2IKZRSZMA2M1LPLLTK0HDULTQIJA2UATWJG0CO03Q9AL3HUJMJNIK1VB2LTERNXOIG016LTMLA2O2ZWCR5F3EN1WG9YZQ4NUYDYAA0MUWO2N6HUO9O86M04JDSTLAJW0PNDQ6XQ7TIDJT8C4JEUTZPU6W78H7V5XM4D0W5OT9DLFIZHGJBI4' where id=80; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='SXUVWLXMZXSDJP6JGBYTFAB8B39TO6H7DUQFRZTGQJBPXMWA66FOOP4HFMEWQ4T2WDP2FRRF2HUHEOYZDQ2XHFSFSSRSXAW0NRL9478791RSMAREXVNVUXCAVIR5UPTJF2V4TT05FYD4K4PBGBZWUMSL0SU21S6C54SY8AO4U74DP7L16NQL1NFNZXEB8B3YAGBN7E97R4BXDAAWIFSLFWDSK1RGI48B3I9RXBR2LQXJL469L29WZRC4XD7GYPW2B' where id=80; -update noar ti set v3='SXUVWLXMZXSDJP6JGBYTFAB8B39TO6H7DUQFRZTGQJBPXMWA66FOOP4HFMEWQ4T2WDP2FRRF2HUHEOYZDQ2XHFSFSSRSXAW0NRL9478791RSMAREXVNVUXCAVIR5UPTJF2V4TT05FYD4K4PBGBZWUMSL0SU21S6C54SY8AO4U74DP7L16NQL1NFNZXEB8B3YAGBN7E97R4BXDAAWIFSLFWDSK1RGI48B3I9RXBR2LQXJL469L29WZRC4XD7GYPW2B' where id=80; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='AMLT048K0KR7Q5L8C2BYU1BNGZ3081ZJOGPUCL9DD8XS7V3DVMJE6C47MLFE8SWHZLEEV7E2S6Z9FOP1FH61NLUU6463OUAWB0WF6JZWM3DNNSUHNQ6WNGB7RO96VRSS2GDYIH7HVKEM090TNV7VSBBQ0K7I6OHNSBDJKCV4E30NI4UUV978CCWKCXL49EL197ZZJSTFZHP05GGDPKXCMSHY91LR2VJYGPBD4K0W8U12Y1QHXAPB73UTZG662KSKO' where id=81; -update noar ti set v0='AMLT048K0KR7Q5L8C2BYU1BNGZ3081ZJOGPUCL9DD8XS7V3DVMJE6C47MLFE8SWHZLEEV7E2S6Z9FOP1FH61NLUU6463OUAWB0WF6JZWM3DNNSUHNQ6WNGB7RO96VRSS2GDYIH7HVKEM090TNV7VSBBQ0K7I6OHNSBDJKCV4E30NI4UUV978CCWKCXL49EL197ZZJSTFZHP05GGDPKXCMSHY91LR2VJYGPBD4K0W8U12Y1QHXAPB73UTZG662KSKO' where id=81; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='V6IOC4DMKHUVG4T0VWRVYAYWG7STCVEZEPZWMTE0HIFTR7YBGR8BUY4E8ZSPYVVACFN9MSZZ8LN5Q5FRG8KSNVH8Z32P9SCJSUUHKCZPYC1DPC0ERIZDXOL2NWR1VOLBY688G9I6NI71BQHEGYENHP2F3C0W3C24GUYF6UE26TF64I9KY6HQ0UYBCD9JUTV934RJ13CEEIMUANYVDKKWKO353XW8U3F6ZJCBHOCZXBMH98KNKBZC8R41FOACHC2OG' where id=81; -update noar ti set v1='V6IOC4DMKHUVG4T0VWRVYAYWG7STCVEZEPZWMTE0HIFTR7YBGR8BUY4E8ZSPYVVACFN9MSZZ8LN5Q5FRG8KSNVH8Z32P9SCJSUUHKCZPYC1DPC0ERIZDXOL2NWR1VOLBY688G9I6NI71BQHEGYENHP2F3C0W3C24GUYF6UE26TF64I9KY6HQ0UYBCD9JUTV934RJ13CEEIMUANYVDKKWKO353XW8U3F6ZJCBHOCZXBMH98KNKBZC8R41FOACHC2OG' where id=81; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='YNK9KKE2ATAVT3RSUJ5QXUGS0GEAF1SITNX07D5LO24E5O2XY3FIJ0FVHVRA9U7WLF2Z8JZ6FWRX94G8SLMD3XB87YGCD1YXBWJN8R6Y8M4HODECUZG33JHLKANPH0ZY4AZSHL8VNG7R4XDJGIX6ZECZDWJ7XB1UPLTV1NJUCIWY78SLBQLKF9TDJZVJ2KQACAGYLKN3PX0FYV8VRKBRL2SU7TXOHRAY6BDZUQ492KETRCET7VCEUM1YU5B630TLQ' where id=81; -update noar ti set v2='YNK9KKE2ATAVT3RSUJ5QXUGS0GEAF1SITNX07D5LO24E5O2XY3FIJ0FVHVRA9U7WLF2Z8JZ6FWRX94G8SLMD3XB87YGCD1YXBWJN8R6Y8M4HODECUZG33JHLKANPH0ZY4AZSHL8VNG7R4XDJGIX6ZECZDWJ7XB1UPLTV1NJUCIWY78SLBQLKF9TDJZVJ2KQACAGYLKN3PX0FYV8VRKBRL2SU7TXOHRAY6BDZUQ492KETRCET7VCEUM1YU5B630TLQ' where id=81; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='9NHLMYS4OLQ6BJF5YP5O2CANJ8NBUVY3ZA3JJ95EK08YB4DWWS0ATU7E9XWQFF6P9RL6K10ZNYYIU8UEE5ULOX7D5Y6XXYHZU6UFE5BJEZMMBTBIB7VJ8A3YRM4IE8BX7C90M4ZX5S8148M8277P68FDZKW8YLUOE9SN5AJORM655P99TYHD8E7N7VMZKNGCCNX3K6S0G7ZH1RMK2ZMY8JCDUWV5N0UGXWAHWCL1X78H9OC41LU0GT5EI4IMEUMG1' where id=81; -update noar ti set v3='9NHLMYS4OLQ6BJF5YP5O2CANJ8NBUVY3ZA3JJ95EK08YB4DWWS0ATU7E9XWQFF6P9RL6K10ZNYYIU8UEE5ULOX7D5Y6XXYHZU6UFE5BJEZMMBTBIB7VJ8A3YRM4IE8BX7C90M4ZX5S8148M8277P68FDZKW8YLUOE9SN5AJORM655P99TYHD8E7N7VMZKNGCCNX3K6S0G7ZH1RMK2ZMY8JCDUWV5N0UGXWAHWCL1X78H9OC41LU0GT5EI4IMEUMG1' where id=81; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='DOFCX4P9HYBM8C1ZX6D1AS61K97GR9JFIU2OVM8NH2LKE9ZTZ19RP8KN9I6LYBV8H6KWXETTROSGU32JY0LUC7MOF1N7FWDZF6IIUNABG33LSB8G40OMNMUI9O9QW6A957TFVICO1ZU07HKCSX1N3052GRMTDOB6KZHUVNKKTOQL4V6TC9RFK87HJP64L7SRRBMDHABRI75KAI7CC874N5X8R343ZKQURXTJ30ISRHG9GP9KEHLV7XOT1YHPSUBUP' where id=82; -update noar ti set v0='DOFCX4P9HYBM8C1ZX6D1AS61K97GR9JFIU2OVM8NH2LKE9ZTZ19RP8KN9I6LYBV8H6KWXETTROSGU32JY0LUC7MOF1N7FWDZF6IIUNABG33LSB8G40OMNMUI9O9QW6A957TFVICO1ZU07HKCSX1N3052GRMTDOB6KZHUVNKKTOQL4V6TC9RFK87HJP64L7SRRBMDHABRI75KAI7CC874N5X8R343ZKQURXTJ30ISRHG9GP9KEHLV7XOT1YHPSUBUP' where id=82; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='P951KZJ7IBMVZ5FB6QOSCN1PJO04B2515L6CHATG9DBDXL97UIY6S8K9JVAN3JFZG8FC1XNDNSR8KDGWY8XOFIY0RI5Y7MI8XVHUXWGT33I0X2PWPAFG9XXZXC1YMHMH75Y9SN8C7NOED28NDG95JGZDRUSWER42KOVCXBXMIR1586CXTRUUR5AMTB6YYXY8876VZ4TSZPILMZHKBYAMC8AJPVG12FYKTBM7VTTNLH5ITX4B5F55YQHHR3D797DU0' where id=82; -update noar ti set v1='P951KZJ7IBMVZ5FB6QOSCN1PJO04B2515L6CHATG9DBDXL97UIY6S8K9JVAN3JFZG8FC1XNDNSR8KDGWY8XOFIY0RI5Y7MI8XVHUXWGT33I0X2PWPAFG9XXZXC1YMHMH75Y9SN8C7NOED28NDG95JGZDRUSWER42KOVCXBXMIR1586CXTRUUR5AMTB6YYXY8876VZ4TSZPILMZHKBYAMC8AJPVG12FYKTBM7VTTNLH5ITX4B5F55YQHHR3D797DU0' where id=82; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='JUZG3XE2ETQ2HU2T1T20X3TB7O2H2SL4375I810IQ4DBZHNNP8AK7H5970SWXTNK2PRBZF3PRV1KT8771G7QST9F29PDK3RK6C6NGV0WKW3FBT6D9DGKNPZWJ5GCZFHJSRV0X4VOIKVS8A40D8BWZN4SPDE32VFBCJ052NJ4TZMF9SDNL0SGNX8MUPIBCLTM4UUMI7XZ2QTPYN10TLI8OJHKE0XUU3J2X6WD0ZMW5TPWJQG41OZMWNDCOFQ7EYPXG' where id=82; -update noar ti set v2='JUZG3XE2ETQ2HU2T1T20X3TB7O2H2SL4375I810IQ4DBZHNNP8AK7H5970SWXTNK2PRBZF3PRV1KT8771G7QST9F29PDK3RK6C6NGV0WKW3FBT6D9DGKNPZWJ5GCZFHJSRV0X4VOIKVS8A40D8BWZN4SPDE32VFBCJ052NJ4TZMF9SDNL0SGNX8MUPIBCLTM4UUMI7XZ2QTPYN10TLI8OJHKE0XUU3J2X6WD0ZMW5TPWJQG41OZMWNDCOFQ7EYPXG' where id=82; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='YP41PXNDKYD7BZMXXC6ATY92DIBXGKOES918KQMD2P44FFMWJVYIZAD00SWHN2SRF160YOA6HBB1HNIOC8ZD4VFRDJA4E4WQS0P49N8MGJI73BGZVR2Q8EG8SVXGVY49SCL40E9LE7BN7BT0NDIMFINT63SKSU84QAQOLX3UKZIYTLO8KC1YE1O3TO8277J92DLGVP8P7AMQ6O64PYGIIDVLW39YZX0YPIQNR88561W2FKW8PL7HRDQOLGOKUSM6S' where id=82; -update noar ti set v3='YP41PXNDKYD7BZMXXC6ATY92DIBXGKOES918KQMD2P44FFMWJVYIZAD00SWHN2SRF160YOA6HBB1HNIOC8ZD4VFRDJA4E4WQS0P49N8MGJI73BGZVR2Q8EG8SVXGVY49SCL40E9LE7BN7BT0NDIMFINT63SKSU84QAQOLX3UKZIYTLO8KC1YE1O3TO8277J92DLGVP8P7AMQ6O64PYGIIDVLW39YZX0YPIQNR88561W2FKW8PL7HRDQOLGOKUSM6S' where id=82; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='0FCLZOQDMCW8E1R4GHV75SWZRAFRXSD2RG8BDUOOLK6AXBIJP6SBYL6D9L6AK9R646ZVD6Q4NWQR2VO1L7BT6WU9WIRBYMOIJ53SN4BZV0Y3YDT7XESFLFBJQ4K262P0XMJMYBSEWQEMGJEOJS9Q0YO31STLYJGYABDGDTLP5TCO87XKHGLOVEPB1YW4CEVYC7TJ4XR23TK0ABQB3R2QXPDN9THBV1ZM2X7SG4KM5H1L1SS25KM5D8OTIL3BH0GKT' where id=83; -update noar ti set v0='0FCLZOQDMCW8E1R4GHV75SWZRAFRXSD2RG8BDUOOLK6AXBIJP6SBYL6D9L6AK9R646ZVD6Q4NWQR2VO1L7BT6WU9WIRBYMOIJ53SN4BZV0Y3YDT7XESFLFBJQ4K262P0XMJMYBSEWQEMGJEOJS9Q0YO31STLYJGYABDGDTLP5TCO87XKHGLOVEPB1YW4CEVYC7TJ4XR23TK0ABQB3R2QXPDN9THBV1ZM2X7SG4KM5H1L1SS25KM5D8OTIL3BH0GKT' where id=83; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='6IFMEMMDPF4GHEWAN2USB2WH4XHP17EXAQFQ63ETCBA7TSZZ0H1WHD4J53W7WMZXXHGGJVKCWACCLOXM380GI8IE9T60MF7T5FQVWYYU22WU9UFZOB4OBIRC74LMIOSOM8FRTKTWTOA2OKPPEV3534SGVZT58A5W1KIXVFP0SLQRGZXLB8XA8F33EXQ04R6W4ZZH14PKQ7PDEOXBGE8CIVSU1U3BZ56Q07UDF0YYKE9Z4KJHH7451XC1WYS06B82I' where id=83; -update noar ti set v1='6IFMEMMDPF4GHEWAN2USB2WH4XHP17EXAQFQ63ETCBA7TSZZ0H1WHD4J53W7WMZXXHGGJVKCWACCLOXM380GI8IE9T60MF7T5FQVWYYU22WU9UFZOB4OBIRC74LMIOSOM8FRTKTWTOA2OKPPEV3534SGVZT58A5W1KIXVFP0SLQRGZXLB8XA8F33EXQ04R6W4ZZH14PKQ7PDEOXBGE8CIVSU1U3BZ56Q07UDF0YYKE9Z4KJHH7451XC1WYS06B82I' where id=83; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='MKRVT6JAIFQOWYG4D7L4M36HDUP5438X4HPFGCRTPCIMMXIP4VMFDVWL8NV4LCMZCD2NG09RM0U63UXBSHGY73MO142C4X0O499TQ9TSXEMDYVI1UN4F9QX787NROBJIH9KR0A2IJVOODSZD5Q3137O48N4TUUFWCH5W5YUJPNSZJ282GQF094F979CSQ72TCQOJ05JED1Q6WIGFTBPOML7MEJKII9VYJLMU3NXC5C9GODU4WYNGEQ1S0JN5R0G9H' where id=83; -update noar ti set v2='MKRVT6JAIFQOWYG4D7L4M36HDUP5438X4HPFGCRTPCIMMXIP4VMFDVWL8NV4LCMZCD2NG09RM0U63UXBSHGY73MO142C4X0O499TQ9TSXEMDYVI1UN4F9QX787NROBJIH9KR0A2IJVOODSZD5Q3137O48N4TUUFWCH5W5YUJPNSZJ282GQF094F979CSQ72TCQOJ05JED1Q6WIGFTBPOML7MEJKII9VYJLMU3NXC5C9GODU4WYNGEQ1S0JN5R0G9H' where id=83; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='6M2KK5N3FS7VS20V3O2P68RZJOU1DQ3KERUSM2ZXHWAHA03JAZGND8X1ETQMVSIHPW8CVEJBXEW69NCTS74P9872EBRDBMJ2WC1EZ6N0V90XCGZU7UAEXYHRN447P03IYAOC14KLHMKLW7HHUQOWWQ3FX34DR9PWIJD0KH135CXS9ZPYDYACJHD0NHM07JDU3AOJWQ6C1S4GQEM86M6BNIAP2LJEM8OSHVDJB2PEWB7BHTSJFBEFOP3OIDG8L4J4C' where id=83; -update noar ti set v3='6M2KK5N3FS7VS20V3O2P68RZJOU1DQ3KERUSM2ZXHWAHA03JAZGND8X1ETQMVSIHPW8CVEJBXEW69NCTS74P9872EBRDBMJ2WC1EZ6N0V90XCGZU7UAEXYHRN447P03IYAOC14KLHMKLW7HHUQOWWQ3FX34DR9PWIJD0KH135CXS9ZPYDYACJHD0NHM07JDU3AOJWQ6C1S4GQEM86M6BNIAP2LJEM8OSHVDJB2PEWB7BHTSJFBEFOP3OIDG8L4J4C' where id=83; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='B25EHGXYV5JOK9HJOHC1W0N00KGR7WXAL3LOS8XP26N6GPDH0J66NF1MFIPTVXB8AMQR92NO7JCU6HM5PIQUMLEKQKOUNTIDI7ILAHUBNDZNA20JX99R5FGQNVMAOBZ7DFMD7UA8OBQ81VXZA1F49M50KURP6WZPWW6C9Q15E2SJFPSM2TSSKTNJKHJJLKI84NDGSITSR4YCKPPPPNGPLZRUPSAIBRD2USLOLGS7L8X9TS35TQP5368KVXF5T4VTL' where id=84; -update noar ti set v0='B25EHGXYV5JOK9HJOHC1W0N00KGR7WXAL3LOS8XP26N6GPDH0J66NF1MFIPTVXB8AMQR92NO7JCU6HM5PIQUMLEKQKOUNTIDI7ILAHUBNDZNA20JX99R5FGQNVMAOBZ7DFMD7UA8OBQ81VXZA1F49M50KURP6WZPWW6C9Q15E2SJFPSM2TSSKTNJKHJJLKI84NDGSITSR4YCKPPPPNGPLZRUPSAIBRD2USLOLGS7L8X9TS35TQP5368KVXF5T4VTL' where id=84; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='TWJGKDFNMYNGMY7H75PIGUTMCPGM4CZMVPTKBFYTZ3B11NUCJ3TSZ1ZONHZ4V561J4SIOWAHIQZY8HRBVIMXXYVQMMF32Q1NIPC0V7DDUJYY7JZSLQFVQLPDBSDH4VT08XOXWZE6OV55ZFK2BMP63G8N2DMHZ6OHTLETFQYVED2UNIZ6E2MP1N4NR439AP6QTWF4PFZDFBIST93JIZRXC3RYF44VPGPKPZTY3DT115M8N9NVCW1FPUJE1WI59IY4O' where id=84; -update noar ti set v1='TWJGKDFNMYNGMY7H75PIGUTMCPGM4CZMVPTKBFYTZ3B11NUCJ3TSZ1ZONHZ4V561J4SIOWAHIQZY8HRBVIMXXYVQMMF32Q1NIPC0V7DDUJYY7JZSLQFVQLPDBSDH4VT08XOXWZE6OV55ZFK2BMP63G8N2DMHZ6OHTLETFQYVED2UNIZ6E2MP1N4NR439AP6QTWF4PFZDFBIST93JIZRXC3RYF44VPGPKPZTY3DT115M8N9NVCW1FPUJE1WI59IY4O' where id=84; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='SJOWZC3K6H34AAX7NEJPNQAINLA16GL0XPUGWWXEU6W35MV4VMLG5I5XY98ZO8KORGXMSP2XAZLAY8DF12D93TZQCZROGC2FGH6CXA7KTJ69HHW4P4MT43IY8H5U73Z0JOTK612SPYERDYXZ74BDLESGGRNIY1XTE220RMIDJ6TGBTYSFC263J4BE0GFUKNTOYBE1A78NPECPFX9LYSKCO2KPJ276992T6HVM3P7UQ8VIA8A3DI10RR4NB4LOUKYJ' where id=84; -update noar ti set v2='SJOWZC3K6H34AAX7NEJPNQAINLA16GL0XPUGWWXEU6W35MV4VMLG5I5XY98ZO8KORGXMSP2XAZLAY8DF12D93TZQCZROGC2FGH6CXA7KTJ69HHW4P4MT43IY8H5U73Z0JOTK612SPYERDYXZ74BDLESGGRNIY1XTE220RMIDJ6TGBTYSFC263J4BE0GFUKNTOYBE1A78NPECPFX9LYSKCO2KPJ276992T6HVM3P7UQ8VIA8A3DI10RR4NB4LOUKYJ' where id=84; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='SOCL23PHZJK56QAB7Z6395PU6EP6M6AKKPJQUCO9LP0IV0XH6CEDV8BXLZ38FBHVYIMBDLR0WLIGSJHAH3OTYWEMHRV64X5NHAH9EZ0J5MIUVK8T1BDBYU94LX0AAF3UFBNV0IP9WIT8991OD3ZBUTBQPI27GMOFUGS1QL59N5MKI0ONF7ZEAYO5T0ILEYLVPX1U7I2GYF1JEED33HQCRQ9YPJUWHWP9NGLTBF3FFKR8RZD64DYL4R0M52GWZQOVY' where id=84; -update noar ti set v3='SOCL23PHZJK56QAB7Z6395PU6EP6M6AKKPJQUCO9LP0IV0XH6CEDV8BXLZ38FBHVYIMBDLR0WLIGSJHAH3OTYWEMHRV64X5NHAH9EZ0J5MIUVK8T1BDBYU94LX0AAF3UFBNV0IP9WIT8991OD3ZBUTBQPI27GMOFUGS1QL59N5MKI0ONF7ZEAYO5T0ILEYLVPX1U7I2GYF1JEED33HQCRQ9YPJUWHWP9NGLTBF3FFKR8RZD64DYL4R0M52GWZQOVY' where id=84; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='P28JOIN7NYDCQP380JPX31M167CFI19Y9QQNA7LEDB4OCVDS93H6QINC4MPPE6MMJ7Y4P1KV3VSYU496XDD6D6TZZM2S216R7A2VUES2QH9GM3861AN1Q2J9FBQF9LVV81GVHT7QCRC3G8FP6L0OQJQSLB6H434MHEYW56NJ6H8YRUGKIQ0D9EBHM0K29PC6RG8JMMRW3C95DYUURIXNYYM0LAARQ2GTXUWNFH3S2LNX1ST0ZUU77RR3OSMZBIPJC' where id=85; -update noar ti set v0='P28JOIN7NYDCQP380JPX31M167CFI19Y9QQNA7LEDB4OCVDS93H6QINC4MPPE6MMJ7Y4P1KV3VSYU496XDD6D6TZZM2S216R7A2VUES2QH9GM3861AN1Q2J9FBQF9LVV81GVHT7QCRC3G8FP6L0OQJQSLB6H434MHEYW56NJ6H8YRUGKIQ0D9EBHM0K29PC6RG8JMMRW3C95DYUURIXNYYM0LAARQ2GTXUWNFH3S2LNX1ST0ZUU77RR3OSMZBIPJC' where id=85; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='BOWLIV9HON29C29AWYSNPSN5YW8RZCDTV2NWTX9BQNHOL71SL6W2FI12LUYAGLIIYAIQ53UFMMB8ZL8AM88OGWHAFCWKM1CAXMB6CMJ33U3YOVKQKR45D356GN3TLOTJJQIR5T50BEQQVCEQ0WQKA18ZWCWQWW6M04MSTY85KJOO46LS891KU89TYB4SDVDNJJNR83LS7EPBYAI3WLFFBVOIXN7SUPEJMB4C96XTH9VZ20MOFE50EGPCPJTID024D' where id=85; -update noar ti set v1='BOWLIV9HON29C29AWYSNPSN5YW8RZCDTV2NWTX9BQNHOL71SL6W2FI12LUYAGLIIYAIQ53UFMMB8ZL8AM88OGWHAFCWKM1CAXMB6CMJ33U3YOVKQKR45D356GN3TLOTJJQIR5T50BEQQVCEQ0WQKA18ZWCWQWW6M04MSTY85KJOO46LS891KU89TYB4SDVDNJJNR83LS7EPBYAI3WLFFBVOIXN7SUPEJMB4C96XTH9VZ20MOFE50EGPCPJTID024D' where id=85; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='SOUR5AWU95987LA1BKJSKXN6LQCGBTRMTTDTWEFAGSE9SPIUJHTYMX83MVKE4GR61YQ2VZ9FCF7U5Q8Y4Q7363WBRAHGMSUWNVIJMXD5LGNWHKQSWUC37VK9B4FGTCDLQ000NOZLVE6D5K1OR31K271BLNDSPV2MINO0KGJUYG7X7OYJI3MCO7OPMUYUW4BQ609BTX86LNPBWWPX9L4P2PB2HINDX4EVNH4Y6DW5ADFZJ265SUNFL6LHPNS2J7852' where id=85; -update noar ti set v2='SOUR5AWU95987LA1BKJSKXN6LQCGBTRMTTDTWEFAGSE9SPIUJHTYMX83MVKE4GR61YQ2VZ9FCF7U5Q8Y4Q7363WBRAHGMSUWNVIJMXD5LGNWHKQSWUC37VK9B4FGTCDLQ000NOZLVE6D5K1OR31K271BLNDSPV2MINO0KGJUYG7X7OYJI3MCO7OPMUYUW4BQ609BTX86LNPBWWPX9L4P2PB2HINDX4EVNH4Y6DW5ADFZJ265SUNFL6LHPNS2J7852' where id=85; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='OFT95IE0A713JR984C12GPELKFJXHFK4C9FH293BU8BTCVTP2USR6Q1XIVV2U5CIBVYPK6CYMLCFZKWGSO6QTL7P6XERZK5YLHQSLERKR488COK39IF97LC5V1TAEJB30EUM2S7UIP4UNZUC0C9FT5SE6JJZ881CSB7I654KEBIVM6JDI833Z6MQ62WDQIWJU6WSG9SNSAYN0SRCPDAE4TFWBXTV1P0T1CDH94FRUUYYG6PTMSMNXP2LIQPNHI6AX' where id=85; -update noar ti set v3='OFT95IE0A713JR984C12GPELKFJXHFK4C9FH293BU8BTCVTP2USR6Q1XIVV2U5CIBVYPK6CYMLCFZKWGSO6QTL7P6XERZK5YLHQSLERKR488COK39IF97LC5V1TAEJB30EUM2S7UIP4UNZUC0C9FT5SE6JJZ881CSB7I654KEBIVM6JDI833Z6MQ62WDQIWJU6WSG9SNSAYN0SRCPDAE4TFWBXTV1P0T1CDH94FRUUYYG6PTMSMNXP2LIQPNHI6AX' where id=85; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='7UELP5C694PXYWVGALCEANW32QF7VTKTW6JVU45W8Q84U56ZDT5ZXVA0SXC451E1YDVRHZ6G1MYAX80KDFB9KM6PYEC4IZ6AH0W4HQZE9AMUP84OFRY7BISUIUJX4NUFULGOQMBRRT3M2JEK5J166BGAVF0CH9EF29QLQGO0TD1Z57JG9R4SAA9X5O5A75RQPO0TLWP3RSFP6WMWW7T0PNF5FW54N1DUFMHOPZ8C7VBA1W7XEN9SRHZX01IPO0SIY' where id=86; -update noar ti set v0='7UELP5C694PXYWVGALCEANW32QF7VTKTW6JVU45W8Q84U56ZDT5ZXVA0SXC451E1YDVRHZ6G1MYAX80KDFB9KM6PYEC4IZ6AH0W4HQZE9AMUP84OFRY7BISUIUJX4NUFULGOQMBRRT3M2JEK5J166BGAVF0CH9EF29QLQGO0TD1Z57JG9R4SAA9X5O5A75RQPO0TLWP3RSFP6WMWW7T0PNF5FW54N1DUFMHOPZ8C7VBA1W7XEN9SRHZX01IPO0SIY' where id=86; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='28TC3K6P40MD5AU2WQ6SVT0RRJB3OI687V90NGA2C24IGDWMV8FQRXFSROJT88HTX2DD4147FZMXT4UQIDLX6SNZOWGTWYEXY1X4DLI98UER1L5VYEPPPTBD5V5W31VER1G11JR2OZEKIWB9KC36ZE2HB64NF7ADH4W5FXQ0USR0N2O20P7M09V6EMQF9UTBEE30I8Y5E1DA56BZGWFI7M6B0V95K8C4KZJXAQ850B364JTUQ43ZGLYHEDWTO6D5A' where id=86; -update noar ti set v1='28TC3K6P40MD5AU2WQ6SVT0RRJB3OI687V90NGA2C24IGDWMV8FQRXFSROJT88HTX2DD4147FZMXT4UQIDLX6SNZOWGTWYEXY1X4DLI98UER1L5VYEPPPTBD5V5W31VER1G11JR2OZEKIWB9KC36ZE2HB64NF7ADH4W5FXQ0USR0N2O20P7M09V6EMQF9UTBEE30I8Y5E1DA56BZGWFI7M6B0V95K8C4KZJXAQ850B364JTUQ43ZGLYHEDWTO6D5A' where id=86; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='APW7X4NNHGR8E8JKFQEXT6MV6TFPTKBY5BQ4ZAN5TWLV5JV2Q66U00ICNQHCBQY2SQ0LMS7NV4GWKGH5QNESTH2V9JNVCM9D2Z2J5QC2O39S8ME660EJ6E1A1GX04MSTX4N3CWK5L3XXOFOW236D1MODSB9UEESLROZO2XXC1W9WEZ0DVUQW3HV8OO7EHCKPHSUY9OS61US3AXATC5K163F4WRNJ7QOI7FTGXGI8MLUH0ZHRN1KR1OTEWWBB6B43M' where id=86; -update noar ti set v2='APW7X4NNHGR8E8JKFQEXT6MV6TFPTKBY5BQ4ZAN5TWLV5JV2Q66U00ICNQHCBQY2SQ0LMS7NV4GWKGH5QNESTH2V9JNVCM9D2Z2J5QC2O39S8ME660EJ6E1A1GX04MSTX4N3CWK5L3XXOFOW236D1MODSB9UEESLROZO2XXC1W9WEZ0DVUQW3HV8OO7EHCKPHSUY9OS61US3AXATC5K163F4WRNJ7QOI7FTGXGI8MLUH0ZHRN1KR1OTEWWBB6B43M' where id=86; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='TUUK19F8KL53VN9J1OPP65CU9ISFI6910WXSOY1Q1R9TD8WKS2NYADG92QHDP3H30DMWN316A0E3YV3FVUJ7FHWGCQX5KBMFHX2M9XBF2PM68E90AXQCYJX8ISMVQIPGV1WNKJX9VQ8SD0QLUIMUQ8DKHC4W4H33FTBLCAUBHIHAJSUM4HJF31VT7KVHD46II6FE641H9IMDATO61QIZZ3193Y8NI74NBI8PU84B6WBU0M474BLVN37S3SVDXAK2K' where id=86; -update noar ti set v3='TUUK19F8KL53VN9J1OPP65CU9ISFI6910WXSOY1Q1R9TD8WKS2NYADG92QHDP3H30DMWN316A0E3YV3FVUJ7FHWGCQX5KBMFHX2M9XBF2PM68E90AXQCYJX8ISMVQIPGV1WNKJX9VQ8SD0QLUIMUQ8DKHC4W4H33FTBLCAUBHIHAJSUM4HJF31VT7KVHD46II6FE641H9IMDATO61QIZZ3193Y8NI74NBI8PU84B6WBU0M474BLVN37S3SVDXAK2K' where id=86; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='W924NAW8RD4RSFVX8J7UOLLJTBENRK0M2W3QCMSGD27WIYXHFUAR98KP309MQVTM89F5SDALA915L5QN1QPV8N18G21D64JL1A0ESHTFC2A3AY2UZ86JXTJFDRILIK55KZMZHUCFQUHUSSO8FKMKN2HBXT6YPKYNZ2Y3VBGN8ON490MHVR8PF2OPSNXWLN6MNAWDNE8TWXIY3S38FRJO53V5WESJX2APQBQS2PVYSZ1AA2RYF49TU6V3IMV7CMP7K' where id=87; -update noar ti set v0='W924NAW8RD4RSFVX8J7UOLLJTBENRK0M2W3QCMSGD27WIYXHFUAR98KP309MQVTM89F5SDALA915L5QN1QPV8N18G21D64JL1A0ESHTFC2A3AY2UZ86JXTJFDRILIK55KZMZHUCFQUHUSSO8FKMKN2HBXT6YPKYNZ2Y3VBGN8ON490MHVR8PF2OPSNXWLN6MNAWDNE8TWXIY3S38FRJO53V5WESJX2APQBQS2PVYSZ1AA2RYF49TU6V3IMV7CMP7K' where id=87; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='1WVKVB3U3UUIH5H5PQC1QY6AMRILRTZMDDH1I2DA6TTPEFLY0TRLWJ4TPO7LWIMJZPPO3NF0TV8FAK8C0EQFUYS33H9VQJ5AWOO8RQ3J9VG0ZKOTDC2Y0QBKFVB673WGK3KNLDAIJ0C3X4B39ZV6N8ZJVL4QNJ9QKPAE1DLHK51ADHMVP9Z5BV3GZ7TDBQIRJ4IXF5RAUL5G0XSMO2GNRFRH8GB9G6EBA3SJALT4H888Q271V7F80BH8TC3B8QTTU' where id=87; -update noar ti set v1='1WVKVB3U3UUIH5H5PQC1QY6AMRILRTZMDDH1I2DA6TTPEFLY0TRLWJ4TPO7LWIMJZPPO3NF0TV8FAK8C0EQFUYS33H9VQJ5AWOO8RQ3J9VG0ZKOTDC2Y0QBKFVB673WGK3KNLDAIJ0C3X4B39ZV6N8ZJVL4QNJ9QKPAE1DLHK51ADHMVP9Z5BV3GZ7TDBQIRJ4IXF5RAUL5G0XSMO2GNRFRH8GB9G6EBA3SJALT4H888Q271V7F80BH8TC3B8QTTU' where id=87; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='X8CTNJVJXUM3AEPJEPAVUIZ69FDL6YGCIUEYOY3E2L8NAWP6OOXJWHWNM5E0DVD0L8KEOS2F5FOHT4C42ZQ8JJBAC1V4C8H0GNVD81XU0A9LYBWLK948QQLVLJ89XYQ5RNLSWVHJ3460TKYUTWEHF9AA9OAZ8WTBCSYNQEX8PO1AGWXLLPKPVI4DIO2VTQNDT5DU158Q2JXM5CBEP7RGHLPA3JSU77AN5VMIJ655RZWVTQ10GWH5UDGB2FX7KCS06' where id=87; -update noar ti set v2='X8CTNJVJXUM3AEPJEPAVUIZ69FDL6YGCIUEYOY3E2L8NAWP6OOXJWHWNM5E0DVD0L8KEOS2F5FOHT4C42ZQ8JJBAC1V4C8H0GNVD81XU0A9LYBWLK948QQLVLJ89XYQ5RNLSWVHJ3460TKYUTWEHF9AA9OAZ8WTBCSYNQEX8PO1AGWXLLPKPVI4DIO2VTQNDT5DU158Q2JXM5CBEP7RGHLPA3JSU77AN5VMIJ655RZWVTQ10GWH5UDGB2FX7KCS06' where id=87; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='20WIS5WIPC05JWKY4TIGBXUBJRX6GT8HTOQSAHCKY6PHOQEF4230DZWMTJ342ACJRBXLKCHNTT0ZSXVPEGS33RB8ISHYQKZKAQ1TM4U9448OZ2VML6HH9Q105H1722V2OU80KWAUHNUYZXS5XUSJXKX4P56ALCJ35A9R58TYXFKIMNGF76MKIA5PRKRNN8PG7E3RLST2ROQWPS2KDU21CPDNC0BW4566Z5TXE26W7W2K6HHW8K8B63GZG3FCQTDT8' where id=87; -update noar ti set v3='20WIS5WIPC05JWKY4TIGBXUBJRX6GT8HTOQSAHCKY6PHOQEF4230DZWMTJ342ACJRBXLKCHNTT0ZSXVPEGS33RB8ISHYQKZKAQ1TM4U9448OZ2VML6HH9Q105H1722V2OU80KWAUHNUYZXS5XUSJXKX4P56ALCJ35A9R58TYXFKIMNGF76MKIA5PRKRNN8PG7E3RLST2ROQWPS2KDU21CPDNC0BW4566Z5TXE26W7W2K6HHW8K8B63GZG3FCQTDT8' where id=87; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='U97O0SL9JV96D6A2D39Z50YV8SYRT1B4SZB6UTU6QDH3BFUUQJJAWG30Q58GIGK7COKJEDE0K7ILLCYFI7I0T1KHNGFVDR2IXN8HGVAPZ4WGQCZZPVLFNYHSG5MRCUWTVX2M5C12ZWJ7VBDX4X0V4J7Z3M0WFKPA205P0H2VKGDZJT7ZJYH5YNUVGITKUCZFFWCTC4HNT7XWOHM40BHLJ2G35JBX53VBI39IY2G9AAR2BNGS5A1U9HPCE2ATSULB4' where id=88; -update noar ti set v0='U97O0SL9JV96D6A2D39Z50YV8SYRT1B4SZB6UTU6QDH3BFUUQJJAWG30Q58GIGK7COKJEDE0K7ILLCYFI7I0T1KHNGFVDR2IXN8HGVAPZ4WGQCZZPVLFNYHSG5MRCUWTVX2M5C12ZWJ7VBDX4X0V4J7Z3M0WFKPA205P0H2VKGDZJT7ZJYH5YNUVGITKUCZFFWCTC4HNT7XWOHM40BHLJ2G35JBX53VBI39IY2G9AAR2BNGS5A1U9HPCE2ATSULB4' where id=88; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='WTSXJQ67WTTZ1DNKE9X15IDIVFJSYIQIQ4R9BHDCBJ2XBZBSGRNY9O73WU39ATPTMWHKMDCFQXNQ63FZR2SV1J4ASWXFYTVAV12K3U7RQZ6N1UGG2XFPWJ3VSLKZLRUXS9SS2P8247CQBGZGMCIY9LZIP2RGPNP4XRNXAEH8BST21MBC1CDEZ0MMTEX4PTKUGQOZCJ7JVLI3Y2BI7YVHW4NUDZC5UMMDHJV5EIY3A6SJEBL73J2YZDZA266C2S0JV' where id=88; -update noar ti set v1='WTSXJQ67WTTZ1DNKE9X15IDIVFJSYIQIQ4R9BHDCBJ2XBZBSGRNY9O73WU39ATPTMWHKMDCFQXNQ63FZR2SV1J4ASWXFYTVAV12K3U7RQZ6N1UGG2XFPWJ3VSLKZLRUXS9SS2P8247CQBGZGMCIY9LZIP2RGPNP4XRNXAEH8BST21MBC1CDEZ0MMTEX4PTKUGQOZCJ7JVLI3Y2BI7YVHW4NUDZC5UMMDHJV5EIY3A6SJEBL73J2YZDZA266C2S0JV' where id=88; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='Z953VOAWBDWIZH408RQYSSZ28SSTHEY58I2FRVJVGMO42KTAJJSL3UDHDGN42CLN3BTJ8GV0KUJCBWZE6XIPDPT2D33C0DHO4U7K8QL4Z1A6AEKTU7P0UU18AZXD9PTLCKRHY1WRIRZUI6W0QXV5G7X6RHMQERD25LVP0ZAD39CCBQI9HNFF7FDSBAGI3IS4UO9AS252GKSQU963IQ27JSA8WNU4VH9INY9722MS4HSNBX3VWGZ99VF84RMZ8SCXJ' where id=88; -update noar ti set v2='Z953VOAWBDWIZH408RQYSSZ28SSTHEY58I2FRVJVGMO42KTAJJSL3UDHDGN42CLN3BTJ8GV0KUJCBWZE6XIPDPT2D33C0DHO4U7K8QL4Z1A6AEKTU7P0UU18AZXD9PTLCKRHY1WRIRZUI6W0QXV5G7X6RHMQERD25LVP0ZAD39CCBQI9HNFF7FDSBAGI3IS4UO9AS252GKSQU963IQ27JSA8WNU4VH9INY9722MS4HSNBX3VWGZ99VF84RMZ8SCXJ' where id=88; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='76U1FZRVSCSO9TDC3VM4WUQD2KUGL275IE8GIOX5YROJLZT4YQC5LHSIA224H41HCIG5SSSX6BWWLZIWQJEFMVUTL7K41FLDYWB5QJI3EGOWX9GK1ZI9C0NS30WVLU3EO0EFMQN6VEB8BOJ29Q67QR02V9NLQBUTK8HPA0CVCQE84QQCVTM5OEB1A6KBZLXKYM8J6RNBDAE6K54Z1I6WN0PWMIQFSFM69AF7S4RAQ7P4F8L35N43CKKON42PBA19O' where id=88; -update noar ti set v3='76U1FZRVSCSO9TDC3VM4WUQD2KUGL275IE8GIOX5YROJLZT4YQC5LHSIA224H41HCIG5SSSX6BWWLZIWQJEFMVUTL7K41FLDYWB5QJI3EGOWX9GK1ZI9C0NS30WVLU3EO0EFMQN6VEB8BOJ29Q67QR02V9NLQBUTK8HPA0CVCQE84QQCVTM5OEB1A6KBZLXKYM8J6RNBDAE6K54Z1I6WN0PWMIQFSFM69AF7S4RAQ7P4F8L35N43CKKON42PBA19O' where id=88; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='VCG4HHIMNE2CPDDYNIFZXOPGDUKXTZXRDYLKSCYKGJUGLAOXSY0E4A5IK2FFU9SGNM9LCRXFYN2E78POZVRCFZW86GPF13GTSB143PFYAC6MYSV0T5TZ17PEIJPAL4L8XDAYQSI0UL3NNDAD33ZBVNI4CQ1BIQR5YPMDV1JKBAJKMDH50A7LP74UJ04FYS6SU3G7O1VP7BANSEQPP9NUL2TI98FAE82NTKLDB1IVLKPRMSW2UKW6ZKKZFIVSJD1JB' where id=89; -update noar ti set v0='VCG4HHIMNE2CPDDYNIFZXOPGDUKXTZXRDYLKSCYKGJUGLAOXSY0E4A5IK2FFU9SGNM9LCRXFYN2E78POZVRCFZW86GPF13GTSB143PFYAC6MYSV0T5TZ17PEIJPAL4L8XDAYQSI0UL3NNDAD33ZBVNI4CQ1BIQR5YPMDV1JKBAJKMDH50A7LP74UJ04FYS6SU3G7O1VP7BANSEQPP9NUL2TI98FAE82NTKLDB1IVLKPRMSW2UKW6ZKKZFIVSJD1JB' where id=89; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='WMRA7SFBWL5UHPKDOLUZKFAJZHL4OE4B9LR2FW274ELGV4V8DNWH5HR1EYULNJ02456Z2DIN14LLJ98HKEVCI515VTUJFC5FJCY0L3REYZD4J3D65R4CIW3652M4N2CB1EDC3FKLI4P51I1D82QFGB9L69VBJSBSXQKL2ZZAKQPWHR7LL4BD2TJ9LPN931MNRAJY0ZGGVM6URDMG1DFVMWPNOKD0TXMJ78Y4KWBRNVUVRIGXA2F9ZZK9SIJMBJI6N' where id=89; -update noar ti set v1='WMRA7SFBWL5UHPKDOLUZKFAJZHL4OE4B9LR2FW274ELGV4V8DNWH5HR1EYULNJ02456Z2DIN14LLJ98HKEVCI515VTUJFC5FJCY0L3REYZD4J3D65R4CIW3652M4N2CB1EDC3FKLI4P51I1D82QFGB9L69VBJSBSXQKL2ZZAKQPWHR7LL4BD2TJ9LPN931MNRAJY0ZGGVM6URDMG1DFVMWPNOKD0TXMJ78Y4KWBRNVUVRIGXA2F9ZZK9SIJMBJI6N' where id=89; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='FM64YFV19LCIGG7TPJKDDP32S4HYDTBNLWV8D3J52GB3TGW2GS7710F35S7UC6IA601R9JSHRXEYPPE7WHARTK4KCEWN3IZX7V0ET0X32VCQWTYW1B6U55A53IAERRAMBMQ53F2DKL1615OQMJ0MZRZP32XAUBPP021F29VYPMT070DTCSAZQVK3Z3FVAWNT38MDMJ5G77YSA0XXY1UGCZW80DEPSE7FB2CQ6RXB02QCB7JXVAP4MKVJEFATT5NKE' where id=89; -update noar ti set v2='FM64YFV19LCIGG7TPJKDDP32S4HYDTBNLWV8D3J52GB3TGW2GS7710F35S7UC6IA601R9JSHRXEYPPE7WHARTK4KCEWN3IZX7V0ET0X32VCQWTYW1B6U55A53IAERRAMBMQ53F2DKL1615OQMJ0MZRZP32XAUBPP021F29VYPMT070DTCSAZQVK3Z3FVAWNT38MDMJ5G77YSA0XXY1UGCZW80DEPSE7FB2CQ6RXB02QCB7JXVAP4MKVJEFATT5NKE' where id=89; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='NR44FZDD8CTQKCLZYS3KNY37Q8M0RTL0UOCA74W4NV5ELFTNW3PM2HYCVPNGWAINKBJJ45XTEWDGHM8UJEICLM2URD76FPSPIFE854OPKQ0X2HGVF500X44ZQ09X5X6RRDQVIE0CMCPHSQ0G6E44I71EPKB86D0OXGMMMVC0DY61NKI8Y3GBXAC9OTMWP08RB1G2L00FMDVIEIZ53CW1OI6E6UPSLGIX0K00LBE0B91JPO3B73DR94NBPJQXKIUZY' where id=89; -update noar ti set v3='NR44FZDD8CTQKCLZYS3KNY37Q8M0RTL0UOCA74W4NV5ELFTNW3PM2HYCVPNGWAINKBJJ45XTEWDGHM8UJEICLM2URD76FPSPIFE854OPKQ0X2HGVF500X44ZQ09X5X6RRDQVIE0CMCPHSQ0G6E44I71EPKB86D0OXGMMMVC0DY61NKI8Y3GBXAC9OTMWP08RB1G2L00FMDVIEIZ53CW1OI6E6UPSLGIX0K00LBE0B91JPO3B73DR94NBPJQXKIUZY' where id=89; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='9RA2VTN2QX9RUZT9O8MBOB7YJB6V2EWXH9BPCH2RNVPNQB6B27NLXRMRQ0U4Q71M5EJKYDLX2WGNFLUPEMX3YT3Q5ZCJROMDXARPDALZG741Q63MYR8BBUPJYHU1B97OE93AZE3HUCB5IU8C3TFROVN3LWA20DRYIJY7WY54YNDPF45B59U0OE9O59NDD325P7LJ3WRIS3L49F7QX7JCHUXNDGZ9PACGIBEDOPE0MQ9OETUQN4DDBZRPI5WRDE2HR' where id=90; -update noar ti set v0='9RA2VTN2QX9RUZT9O8MBOB7YJB6V2EWXH9BPCH2RNVPNQB6B27NLXRMRQ0U4Q71M5EJKYDLX2WGNFLUPEMX3YT3Q5ZCJROMDXARPDALZG741Q63MYR8BBUPJYHU1B97OE93AZE3HUCB5IU8C3TFROVN3LWA20DRYIJY7WY54YNDPF45B59U0OE9O59NDD325P7LJ3WRIS3L49F7QX7JCHUXNDGZ9PACGIBEDOPE0MQ9OETUQN4DDBZRPI5WRDE2HR' where id=90; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='H7MXPHCXU68PMAWFC6SU169CQBAWUWUJ1PQOW7W1LXBRHRQGFBWIQ8VC3M7CVLWLSYCSDXTU5VJF03POHY6IT984LBXN5IY33KT1LAVKSD16GZ40AX4IIPBY29LWJSW7OLKID9M6WHWHI2LYMQ4O2DAZJ41L8TNNY9VT3NRP6PBXCOZPF07L9B2VWM8ISOLYN9BA235DWQSZCKON67VC62GM2TD9T9B8U9DCB89CSCS4SR7F0QS3C4EDZ8IRPK3IG' where id=90; -update noar ti set v1='H7MXPHCXU68PMAWFC6SU169CQBAWUWUJ1PQOW7W1LXBRHRQGFBWIQ8VC3M7CVLWLSYCSDXTU5VJF03POHY6IT984LBXN5IY33KT1LAVKSD16GZ40AX4IIPBY29LWJSW7OLKID9M6WHWHI2LYMQ4O2DAZJ41L8TNNY9VT3NRP6PBXCOZPF07L9B2VWM8ISOLYN9BA235DWQSZCKON67VC62GM2TD9T9B8U9DCB89CSCS4SR7F0QS3C4EDZ8IRPK3IG' where id=90; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='BERHOT2VM8OBVA2MPC9HOZDS3I5KAXP2CZFF4AC4N8KF0UZEEH3GE756Y7W8C58U21MXFKUMZNYYS4I88JK8UVZ1KAPR495OUUMKLTYBXTG0WPIKALS09QC2AG5GI7L2GJK1YOPJRWMAQ6I3DUJZ78XRLRL0V8M46NLPAF6Q1SHIOJSALM5WKZ6O70ON8RNTNQAC0OD1GL901U1ZMJKWE7XMETT1J0JBGF0BH9JWVMZBYYAKRWNT5GU8MTRX672OB' where id=90; -update noar ti set v2='BERHOT2VM8OBVA2MPC9HOZDS3I5KAXP2CZFF4AC4N8KF0UZEEH3GE756Y7W8C58U21MXFKUMZNYYS4I88JK8UVZ1KAPR495OUUMKLTYBXTG0WPIKALS09QC2AG5GI7L2GJK1YOPJRWMAQ6I3DUJZ78XRLRL0V8M46NLPAF6Q1SHIOJSALM5WKZ6O70ON8RNTNQAC0OD1GL901U1ZMJKWE7XMETT1J0JBGF0BH9JWVMZBYYAKRWNT5GU8MTRX672OB' where id=90; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='DG0AZ96PWXZ5SVPKJS4BPMAH2EG1HZDDWDQ1ZEDE23289HXTJC8X1ZNYL6YFA7HVULYRQAIYI83B0KJL81ABAKFT4HIJVODY5I93IRMQ4UB5OJD5IUKK3KUZ0AE0WE6DR0DLQOR658LOE4JIJV5MQSME1TN4L0LGXBQP3BIDC51O5E8QO0A7O15Q6M6CH5422SZONJZ22IZULZ1FFMUN7WOGQO5YNSG45ELUXDDPS3PSV9JSXLIKMETZ49EX0ZX0V' where id=90; -update noar ti set v3='DG0AZ96PWXZ5SVPKJS4BPMAH2EG1HZDDWDQ1ZEDE23289HXTJC8X1ZNYL6YFA7HVULYRQAIYI83B0KJL81ABAKFT4HIJVODY5I93IRMQ4UB5OJD5IUKK3KUZ0AE0WE6DR0DLQOR658LOE4JIJV5MQSME1TN4L0LGXBQP3BIDC51O5E8QO0A7O15Q6M6CH5422SZONJZ22IZULZ1FFMUN7WOGQO5YNSG45ELUXDDPS3PSV9JSXLIKMETZ49EX0ZX0V' where id=90; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='BY5VWBEC5OEZECT5LR3XEWZOF0173U98NH3B12LMVHUE46I7IJI7XCT9N19Z15BUYNXL66F9SM3N9B8FBTEBMNGVOB407ZJ4G6L4MDCV9B9MQKH8VSRQKSAZ4WCKJSYHAS4YKWQEYK34SHN50OL3RNZVP8EV597JIZSFJ2SHMJHTL65S4AU7SJGZ9T72JGHK8S2R9M29NDJIC49NIDRWHMYYXFD124QCVB8W8HV8AU2Q3XRFNJWH7XJGJA1483Z5K' where id=91; -update noar ti set v0='BY5VWBEC5OEZECT5LR3XEWZOF0173U98NH3B12LMVHUE46I7IJI7XCT9N19Z15BUYNXL66F9SM3N9B8FBTEBMNGVOB407ZJ4G6L4MDCV9B9MQKH8VSRQKSAZ4WCKJSYHAS4YKWQEYK34SHN50OL3RNZVP8EV597JIZSFJ2SHMJHTL65S4AU7SJGZ9T72JGHK8S2R9M29NDJIC49NIDRWHMYYXFD124QCVB8W8HV8AU2Q3XRFNJWH7XJGJA1483Z5K' where id=91; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='XU9BJBHS59RVNU7W4MZDQKQLKV55OE39Z6AELRZDWS9E3T5TH7S68Y2PCDV9KS9LFJHMD9N1GQ2VRJCMQ6OHEYN16S9CSBHLYMWAINSZEWGE7KFBS8V2LNKJJSFGX0AI4XB4UKVJ4K863NPGUFLAG5EYUTI70VA6XZDNFWFLJ6FU24JT5Y7IUYKDFZIF03JWAD5B6T2EG5NP1W1L5QXF8AHL1MOWLVQVFPR1TRP97E1EIQUPNH5FZRRYH6A8IRX2A' where id=91; -update noar ti set v1='XU9BJBHS59RVNU7W4MZDQKQLKV55OE39Z6AELRZDWS9E3T5TH7S68Y2PCDV9KS9LFJHMD9N1GQ2VRJCMQ6OHEYN16S9CSBHLYMWAINSZEWGE7KFBS8V2LNKJJSFGX0AI4XB4UKVJ4K863NPGUFLAG5EYUTI70VA6XZDNFWFLJ6FU24JT5Y7IUYKDFZIF03JWAD5B6T2EG5NP1W1L5QXF8AHL1MOWLVQVFPR1TRP97E1EIQUPNH5FZRRYH6A8IRX2A' where id=91; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='Y5XLFYPAC8RVPEJ1B66GRC8KRTF5B8QLD2913Z4BUEFT37B5EMZC7YEQEXD6ZS521BEOOOIDPY769L9BNV4UDAW7TNK5XT9ZNA7N1JR80MQ4IYBXT09SLZFZAAMQAX6JQEF11TIP59VP9DJWAIQ11AF7WNU2PSK2YDAPPC597D2T495U0ZKDWMUHHWKP1CHV5FP9CBKCRDYOZ0MCA8KQQRJLWDFQGOJPIGCZK69R0QBNTMZZHRUTBOGXURB18ZD6Z' where id=91; -update noar ti set v2='Y5XLFYPAC8RVPEJ1B66GRC8KRTF5B8QLD2913Z4BUEFT37B5EMZC7YEQEXD6ZS521BEOOOIDPY769L9BNV4UDAW7TNK5XT9ZNA7N1JR80MQ4IYBXT09SLZFZAAMQAX6JQEF11TIP59VP9DJWAIQ11AF7WNU2PSK2YDAPPC597D2T495U0ZKDWMUHHWKP1CHV5FP9CBKCRDYOZ0MCA8KQQRJLWDFQGOJPIGCZK69R0QBNTMZZHRUTBOGXURB18ZD6Z' where id=91; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='OOSZLCXP95N5GMEUKD01RK0TISEK6HY51S9VQFW17ZGTGSM9RKCHTRLY0GLHNUYSYPZSF43BSFUPBLBAF6P5FI714BOQVU15WPB6ELULI8Z7HOWYW2RZ5LK6XTC7RKL8VUZNC13A63C7JKLOZ009VCLQY9QFU1SKLOSMX67SI97VO8YGQ9G36JZGAOK03N0MC8Z2RIR3NV3MNXP5HCDGHY7KFQDE87A7ZSYLH6S5FZH7QEEK725FTYYKBI7JP0T2S' where id=91; -update noar ti set v3='OOSZLCXP95N5GMEUKD01RK0TISEK6HY51S9VQFW17ZGTGSM9RKCHTRLY0GLHNUYSYPZSF43BSFUPBLBAF6P5FI714BOQVU15WPB6ELULI8Z7HOWYW2RZ5LK6XTC7RKL8VUZNC13A63C7JKLOZ009VCLQY9QFU1SKLOSMX67SI97VO8YGQ9G36JZGAOK03N0MC8Z2RIR3NV3MNXP5HCDGHY7KFQDE87A7ZSYLH6S5FZH7QEEK725FTYYKBI7JP0T2S' where id=91; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='SWPRMOJ2CCDN6IZKX7XKJ4R33MA06UVL4F2OEDUUS8W3WBWGZG5PHZZZY25FIUY99CG8T7GWGMJIGN4HOIT502VIAA5JNVXAU4VU1O0IL13A5IDGMO2KRVNNU0DI37QWBXB8SP35Q4921639LJMSJGK0TGGT8GF6MCUP87GCX1ZF2ASSQ5SJVQS9Q25EODTI7N38MOION3AC3XQFNJ9KSGJAA3XGM2REU3DR6YIRXUA3UY4ELKZS115XX1PW8K27Z' where id=92; -update noar ti set v0='SWPRMOJ2CCDN6IZKX7XKJ4R33MA06UVL4F2OEDUUS8W3WBWGZG5PHZZZY25FIUY99CG8T7GWGMJIGN4HOIT502VIAA5JNVXAU4VU1O0IL13A5IDGMO2KRVNNU0DI37QWBXB8SP35Q4921639LJMSJGK0TGGT8GF6MCUP87GCX1ZF2ASSQ5SJVQS9Q25EODTI7N38MOION3AC3XQFNJ9KSGJAA3XGM2REU3DR6YIRXUA3UY4ELKZS115XX1PW8K27Z' where id=92; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='92Q1PA0BZ0WGRWYO3I24IK5J1BUI8C4B98UGK8Y18SOR56EM9FMXCQUQPM8TUHYOE0H4QHRAUR0NIB7LR3YI9ZNDLDKITD9S17T2UCC1KXAOGVLTRCQQQ09N7HZ85M5P6ORP3EAYOIFAUSHNK4DBTA0KDRR5R1Z26H0653EO5DQSKO9VSAMPBEYSY49APBMQ2DXYHOBSWPPBDZ25UF3I4EM9TJCZS0CV49P0PLZ74JR68NV1EGBEOWX5IKS2T8MR8' where id=92; -update noar ti set v1='92Q1PA0BZ0WGRWYO3I24IK5J1BUI8C4B98UGK8Y18SOR56EM9FMXCQUQPM8TUHYOE0H4QHRAUR0NIB7LR3YI9ZNDLDKITD9S17T2UCC1KXAOGVLTRCQQQ09N7HZ85M5P6ORP3EAYOIFAUSHNK4DBTA0KDRR5R1Z26H0653EO5DQSKO9VSAMPBEYSY49APBMQ2DXYHOBSWPPBDZ25UF3I4EM9TJCZS0CV49P0PLZ74JR68NV1EGBEOWX5IKS2T8MR8' where id=92; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='2PLM212TWV9VABPG4RGJEHV3KA8QGKVSN1DXBRUZ3YPH4QJD6L09SO9TCDCU5G7553JEGAA2Z34LO4PZQU522YFSSL09Y22PZG3CISOFTVDDR84Z6ISJ4L59AKNSJ356BEENN4T7RB1Q1MVWA718JV1TAJ1UX61PYL8S8S5IGIT60NR06IAJRQQYNF0IV5LZ8VWQPRMJFZMY6T680466PPFLKUQ8TAP9E0VZUE6GRC3JU2X0ILDZPTZXZ2AG3GLKN' where id=92; -update noar ti set v2='2PLM212TWV9VABPG4RGJEHV3KA8QGKVSN1DXBRUZ3YPH4QJD6L09SO9TCDCU5G7553JEGAA2Z34LO4PZQU522YFSSL09Y22PZG3CISOFTVDDR84Z6ISJ4L59AKNSJ356BEENN4T7RB1Q1MVWA718JV1TAJ1UX61PYL8S8S5IGIT60NR06IAJRQQYNF0IV5LZ8VWQPRMJFZMY6T680466PPFLKUQ8TAP9E0VZUE6GRC3JU2X0ILDZPTZXZ2AG3GLKN' where id=92; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='D79Z78HLHH6AIWWOLDW19K4L4GQ3KUA3DMBZXLZ4HQJVK6YHE0WL9MA9VR2HODFIHBPEQZO7GOWIRNC9FF0PFGUW3ZAZY3ZUHPBTT80WJ9RB31XGUYLALD1TETSPMO12TA29FAWFTW2RGHX1SSWRVA484U7MSY960UCKXQ1YNSVG7YBDU6Z7W5AJU9VIJOV111VRFU3H5MLLGQG6ATAW200IN3JFB9Z60ZNW8ED88K251MILAC5Z6K8RZL4TE99CF' where id=92; -update noar ti set v3='D79Z78HLHH6AIWWOLDW19K4L4GQ3KUA3DMBZXLZ4HQJVK6YHE0WL9MA9VR2HODFIHBPEQZO7GOWIRNC9FF0PFGUW3ZAZY3ZUHPBTT80WJ9RB31XGUYLALD1TETSPMO12TA29FAWFTW2RGHX1SSWRVA484U7MSY960UCKXQ1YNSVG7YBDU6Z7W5AJU9VIJOV111VRFU3H5MLLGQG6ATAW200IN3JFB9Z60ZNW8ED88K251MILAC5Z6K8RZL4TE99CF' where id=92; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='QDZ079CUL8UK2JIJ60XUAT9PIDM2LLGPPQ8H8SP33IZEG41F7EOIW8BE69IIGCJO4XCORFVIERXCEW5SDR16ONXMF8SMM7ES6ECJ5CN350Y4LQWI9OSN48E88RY6UN00UHJK9RYIFKGK23O24CIUXHJ3SY287YO9WDAYG8N97D3EZZ8HXPF0DH5RFY5KLOF7WW6W7GYFCDEIQN9BMBH6S2ZDSQT008GSJ3QZMWPVC0BAVB1CE2DOHA08JQ9GIZRA1' where id=93; -update noar ti set v0='QDZ079CUL8UK2JIJ60XUAT9PIDM2LLGPPQ8H8SP33IZEG41F7EOIW8BE69IIGCJO4XCORFVIERXCEW5SDR16ONXMF8SMM7ES6ECJ5CN350Y4LQWI9OSN48E88RY6UN00UHJK9RYIFKGK23O24CIUXHJ3SY287YO9WDAYG8N97D3EZZ8HXPF0DH5RFY5KLOF7WW6W7GYFCDEIQN9BMBH6S2ZDSQT008GSJ3QZMWPVC0BAVB1CE2DOHA08JQ9GIZRA1' where id=93; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='ITZRRLA40OLHBR9H34H7T0ANTBQC61L659C5AD0BIJMC19DBI7Q4PHIPEMDT6J2EOW8DYFD1SVM7KMBP9B9PQ042DMO04SQS1VLOCKMGZ21163W4DJO0V4FCS8GOYG9V0PUVGZU6E05IOHMWCZYFLVK1JZU6VE6OJOUE9ZDIQ827TZG3MDXJ7I3LGTNOADZ9YYL170WGXNQTWUQYVACWANS1YJRJI1RQ390Q2MF1UNQY6H2130S86MIWXUH3KKKDP' where id=93; -update noar ti set v1='ITZRRLA40OLHBR9H34H7T0ANTBQC61L659C5AD0BIJMC19DBI7Q4PHIPEMDT6J2EOW8DYFD1SVM7KMBP9B9PQ042DMO04SQS1VLOCKMGZ21163W4DJO0V4FCS8GOYG9V0PUVGZU6E05IOHMWCZYFLVK1JZU6VE6OJOUE9ZDIQ827TZG3MDXJ7I3LGTNOADZ9YYL170WGXNQTWUQYVACWANS1YJRJI1RQ390Q2MF1UNQY6H2130S86MIWXUH3KKKDP' where id=93; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='D1Y72DH1QHIOQX9DPN8T57KEOAZXWMNB38VWXAPNAUDTUE1HV91LDM3BFWOOHNKP2GPSVMVYSI1HMOJSH4R4SIYSETFCL69U7VDR4E5W56RDSNG1M7HE2F7P8QSEHMCANMD4Q28F8Z520QU7E6JYWYRFEV08MOFR4STUNQZYA4RDGAAU1J90BAA5LOWHDSQE25K49JGFX2V28CWTQQM9LLVEEN6QE47NNFZ6MIN8P6DVWGOOKPUY6S6NUTC2S9TIZ' where id=93; -update noar ti set v2='D1Y72DH1QHIOQX9DPN8T57KEOAZXWMNB38VWXAPNAUDTUE1HV91LDM3BFWOOHNKP2GPSVMVYSI1HMOJSH4R4SIYSETFCL69U7VDR4E5W56RDSNG1M7HE2F7P8QSEHMCANMD4Q28F8Z520QU7E6JYWYRFEV08MOFR4STUNQZYA4RDGAAU1J90BAA5LOWHDSQE25K49JGFX2V28CWTQQM9LLVEEN6QE47NNFZ6MIN8P6DVWGOOKPUY6S6NUTC2S9TIZ' where id=93; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='REYJHFU5RDQJF0DFD7KH22V3XJR77N3YJ54E0E8QL7R0OAJU5Z96OEM6JUMEQ9NR3QRF5YTIF96BHJ81M5NETO3ZNPAU98TPADGVYJTHJC2XA3HYOGBX4B14I4B51UPQXQLWII7RBECCFBHWKVI2FEOHISPVN5L04N5D1W4XPUNKC859XTRPE3X9V8Q1TAW972F4N8YZNUJ3925ODDTSA6ETVCN5XRH4XEP2TVO4B3MCQHUS0U1AP8WETSARCMP5V' where id=93; -update noar ti set v3='REYJHFU5RDQJF0DFD7KH22V3XJR77N3YJ54E0E8QL7R0OAJU5Z96OEM6JUMEQ9NR3QRF5YTIF96BHJ81M5NETO3ZNPAU98TPADGVYJTHJC2XA3HYOGBX4B14I4B51UPQXQLWII7RBECCFBHWKVI2FEOHISPVN5L04N5D1W4XPUNKC859XTRPE3X9V8Q1TAW972F4N8YZNUJ3925ODDTSA6ETVCN5XRH4XEP2TVO4B3MCQHUS0U1AP8WETSARCMP5V' where id=93; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='09CPJ9QWKQC21LU2VE0WTRVPWJAVEOBOWA4L5XIEZH89Y5M8BLNVUSTVREYST0DL3R4E1FH9UVYR0XDCZ37B7XKJ25BJO39H3BW93FXW2SV2C4M5U50JF9RVMCWSIKMYWD840CZP4USDY0UKY5DOQY5NNFJHCXI22VX6DMCZ6JFJMX3L5HLYKSEXQ2SU1L55ZSZXPUIXD4C9MPWH6NU2QZVIJZO57DACX4BHQ87EA6BHTQPDXIXBLBG4VKOI2PZCF' where id=94; -update noar ti set v0='09CPJ9QWKQC21LU2VE0WTRVPWJAVEOBOWA4L5XIEZH89Y5M8BLNVUSTVREYST0DL3R4E1FH9UVYR0XDCZ37B7XKJ25BJO39H3BW93FXW2SV2C4M5U50JF9RVMCWSIKMYWD840CZP4USDY0UKY5DOQY5NNFJHCXI22VX6DMCZ6JFJMX3L5HLYKSEXQ2SU1L55ZSZXPUIXD4C9MPWH6NU2QZVIJZO57DACX4BHQ87EA6BHTQPDXIXBLBG4VKOI2PZCF' where id=94; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='SEVAP6S9DZJOJGXB984FWD0GB3XG8O3EG8OWBF7XIYDG2VTTH6ICMZ0VAMDVW3TYLPVR89EE9MX3W33EHLUL2B2ZDZPKY63NJVW1KXUESP1KXBYW2SJ1SZH2TPDZHH31FETK9S8O4N7G7MNE4DMKLVYY5UMQE1AXZ0K8UVS8KOR2P8V7OYNSDRWSXQ48DZJ0IB4LS145TWD38QEQY4OI7HKMJY82GJNH94DEZ19GOXA4UEFXI1XXPGH7IG8WS5DPY' where id=94; -update noar ti set v1='SEVAP6S9DZJOJGXB984FWD0GB3XG8O3EG8OWBF7XIYDG2VTTH6ICMZ0VAMDVW3TYLPVR89EE9MX3W33EHLUL2B2ZDZPKY63NJVW1KXUESP1KXBYW2SJ1SZH2TPDZHH31FETK9S8O4N7G7MNE4DMKLVYY5UMQE1AXZ0K8UVS8KOR2P8V7OYNSDRWSXQ48DZJ0IB4LS145TWD38QEQY4OI7HKMJY82GJNH94DEZ19GOXA4UEFXI1XXPGH7IG8WS5DPY' where id=94; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='FR8S6ZJAFR9MDHPM2KDE5K3OXV7D9DP3VIFH7C9R4Q8C79DUPSVNHUD6I7F9PI0GOD94YT0O5X3IX5WE9VUHJ47WQIDW9BOCVF8FDZ8S9YW2UE1U5H386U8X53RVACHB64VIYUSTBZ2S5KBVTCHT4RVC2HEI5NC49FBZMP785UOVAPFC7T9WSGQO2CHB9B9ZIJABS7US0OJVSRJR6GGEPKRQNO837G0KWOMVBCH77R4E3FQUI5VP29CTGOZJTA2X9' where id=94; -update noar ti set v2='FR8S6ZJAFR9MDHPM2KDE5K3OXV7D9DP3VIFH7C9R4Q8C79DUPSVNHUD6I7F9PI0GOD94YT0O5X3IX5WE9VUHJ47WQIDW9BOCVF8FDZ8S9YW2UE1U5H386U8X53RVACHB64VIYUSTBZ2S5KBVTCHT4RVC2HEI5NC49FBZMP785UOVAPFC7T9WSGQO2CHB9B9ZIJABS7US0OJVSRJR6GGEPKRQNO837G0KWOMVBCH77R4E3FQUI5VP29CTGOZJTA2X9' where id=94; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='M0QSCW7STQCRXOO3Y9GXVK417EVJG2GDTDN4NVRSVZAWOP5PMMCJB33CJR5ITNI1NHIG7Q4TEHVWGYRA6AUERJEGB3KYB1O5PEOZQ48Q3TSJ867ZC86Y02OWOP5ZZI0F0MTREN71E3FYFXOTIY9NQLOODMGO0LMKKVRQD9T54I99IE6U343LAUXW20CFGFLU2EZ9T3YRB5CGB2KCV2RLI0X7HPU9R61FMRI2E3S8PHDITQD4KRCEU5M87NL2TKSPG' where id=94; -update noar ti set v3='M0QSCW7STQCRXOO3Y9GXVK417EVJG2GDTDN4NVRSVZAWOP5PMMCJB33CJR5ITNI1NHIG7Q4TEHVWGYRA6AUERJEGB3KYB1O5PEOZQ48Q3TSJ867ZC86Y02OWOP5ZZI0F0MTREN71E3FYFXOTIY9NQLOODMGO0LMKKVRQD9T54I99IE6U343LAUXW20CFGFLU2EZ9T3YRB5CGB2KCV2RLI0X7HPU9R61FMRI2E3S8PHDITQD4KRCEU5M87NL2TKSPG' where id=94; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='DBOKEVKO10MXVDPTMT866DJ3NY58HR28BAASPR3UIB282Y59P0SXQ0949OLF4CXZN6YSSXAJOPO1Y2757CYBDL83SVW1EEVKSG61KTHPBPJ5PI8OZZI7WOZ1QF32S6O0HUCUY9XYXYYGA2WBUGQL7TQSNJYVJA9IYNDFPJHXH6IYVLXSLTSZ30AQVF4CZ6O0YDROMEKKDQGBQZRLZ2IVUXZP0WI4MREQ12MNXK540KYB4QFZ03T0MSYHN7QO9PU2Z' where id=95; -update noar ti set v0='DBOKEVKO10MXVDPTMT866DJ3NY58HR28BAASPR3UIB282Y59P0SXQ0949OLF4CXZN6YSSXAJOPO1Y2757CYBDL83SVW1EEVKSG61KTHPBPJ5PI8OZZI7WOZ1QF32S6O0HUCUY9XYXYYGA2WBUGQL7TQSNJYVJA9IYNDFPJHXH6IYVLXSLTSZ30AQVF4CZ6O0YDROMEKKDQGBQZRLZ2IVUXZP0WI4MREQ12MNXK540KYB4QFZ03T0MSYHN7QO9PU2Z' where id=95; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='D40IC6Y9E3ZL1D344OYH1WO0231NF2KOBIEFTF4O4R5BNBFLJ6GGBULZJE3686X98JZLA70Y7ZQUUXJANKH62E0CZTKOHWQ45NGMHO8MZPGRG7IROQJFSPVMC7EZGBX8W5ZRDJKY0FCCNV2VXWTJD96LWHLGR57FWQGWQF0K0BD1VCIYIE7TDOA5COTL9RZJR7J6S36HGAYT41C7A6XITBRZYBMDPVXETQARII8O2Q7TP5D86QZAML1G2KTXDXWZS' where id=95; -update noar ti set v1='D40IC6Y9E3ZL1D344OYH1WO0231NF2KOBIEFTF4O4R5BNBFLJ6GGBULZJE3686X98JZLA70Y7ZQUUXJANKH62E0CZTKOHWQ45NGMHO8MZPGRG7IROQJFSPVMC7EZGBX8W5ZRDJKY0FCCNV2VXWTJD96LWHLGR57FWQGWQF0K0BD1VCIYIE7TDOA5COTL9RZJR7J6S36HGAYT41C7A6XITBRZYBMDPVXETQARII8O2Q7TP5D86QZAML1G2KTXDXWZS' where id=95; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='W4W77CW3APJ6Q8HC96J5SWR2GG0OQLBD9KRJ3M9VOTK8CI8MMJMPDV4MD0HZYMQBE3UN2C0IOU35GQ3U8E3KN4A7CEAG8O4AP1V5ALNFZJ8D6MA4GAZV3WQFCA5WGWOH6FL7WWIC5TQYQ7L3NEH5MY836NT7MI224JGHYVW1Z9KIUP06KCNDZ945V8BJWUDYWMYYTXHO5QGPCUB0PLVECLLZPN5JWS6CJW53BK9OYEZV9YTQ2R0C0CI67VHYOY417' where id=95; -update noar ti set v2='W4W77CW3APJ6Q8HC96J5SWR2GG0OQLBD9KRJ3M9VOTK8CI8MMJMPDV4MD0HZYMQBE3UN2C0IOU35GQ3U8E3KN4A7CEAG8O4AP1V5ALNFZJ8D6MA4GAZV3WQFCA5WGWOH6FL7WWIC5TQYQ7L3NEH5MY836NT7MI224JGHYVW1Z9KIUP06KCNDZ945V8BJWUDYWMYYTXHO5QGPCUB0PLVECLLZPN5JWS6CJW53BK9OYEZV9YTQ2R0C0CI67VHYOY417' where id=95; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='4BBO20SI6KZ43QA7ASYSWV8OA5UQ1IW3H4Y5HCJH2VIN0ZJL3I69ZU4KQC5L2N2WV3ZPCYEPPYRDR63LYBCU3GOZK36XFLRHU8Q87Y8R9YC8GWP3Y5XNMPVA7IS8XQPRP775HJ7PFADLJE485EQMVZ447ITIM2WRIRYB6X2MG8JXLX3H4KJR23VLF7BZL4O3HOSQOYRKXAJI25V939RBDIUVNR4JT0NWTIDUB0J44I15V5U3358MMTM92UWJJ7PJI' where id=95; -update noar ti set v3='4BBO20SI6KZ43QA7ASYSWV8OA5UQ1IW3H4Y5HCJH2VIN0ZJL3I69ZU4KQC5L2N2WV3ZPCYEPPYRDR63LYBCU3GOZK36XFLRHU8Q87Y8R9YC8GWP3Y5XNMPVA7IS8XQPRP775HJ7PFADLJE485EQMVZ447ITIM2WRIRYB6X2MG8JXLX3H4KJR23VLF7BZL4O3HOSQOYRKXAJI25V939RBDIUVNR4JT0NWTIDUB0J44I15V5U3358MMTM92UWJJ7PJI' where id=95; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='XD58SW0WOZPSUK8BV3KRJTMDVB6ZHCGXA1VMQ5ITCGULPKN9Y379RE0TZIMJ4PTT824INEX0RXE8MKMSWZR8E78GU52W9U2ZQ3Z3NRBONYZIFJDTW0F0UE2T56FQ9IIV36GYVJFH336TP584WO0ZB1H73OJ3Z1DRWXW4YN0PNWLIWG888TBOLPFB5QDP0I80NPZMMNIDSKUBH80S019OZ1NF7QLDDEY2H4K1QJ0XG3J3GOF5DYUYGFS1X2W23JEXJ' where id=96; -update noar ti set v0='XD58SW0WOZPSUK8BV3KRJTMDVB6ZHCGXA1VMQ5ITCGULPKN9Y379RE0TZIMJ4PTT824INEX0RXE8MKMSWZR8E78GU52W9U2ZQ3Z3NRBONYZIFJDTW0F0UE2T56FQ9IIV36GYVJFH336TP584WO0ZB1H73OJ3Z1DRWXW4YN0PNWLIWG888TBOLPFB5QDP0I80NPZMMNIDSKUBH80S019OZ1NF7QLDDEY2H4K1QJ0XG3J3GOF5DYUYGFS1X2W23JEXJ' where id=96; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='TQCRSB14K5BFO78MT2YKNQT2AAEWCVYO63YPC71A7WQPTNYL7X5SHSCDOUHM2YD78KB52ENGBAIR9WE6V25MI20K22JCRMN115LQGX5JC7NEXHPN33N1BAL9Z24XEPTD3QSEX5C4GBWIHO1AUOEMTHXA9ONZFPB7ZD7PKA1CBC7H7736XS0MQP5XL11HH0SXBVQI8GUL5JYTCEU0Z7ATQJFL3IMLF7S97IPX2H9DW1VPKAVSWD01S7E3K47ESZKYZ' where id=96; -update noar ti set v1='TQCRSB14K5BFO78MT2YKNQT2AAEWCVYO63YPC71A7WQPTNYL7X5SHSCDOUHM2YD78KB52ENGBAIR9WE6V25MI20K22JCRMN115LQGX5JC7NEXHPN33N1BAL9Z24XEPTD3QSEX5C4GBWIHO1AUOEMTHXA9ONZFPB7ZD7PKA1CBC7H7736XS0MQP5XL11HH0SXBVQI8GUL5JYTCEU0Z7ATQJFL3IMLF7S97IPX2H9DW1VPKAVSWD01S7E3K47ESZKYZ' where id=96; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='O0LMFHUWRBTJ2RY5OS6ZOMO25H095ZEW1E172HBKDOJ0DOFFH03BJKO8UPQFJB6GAS3WPJENPDZNPDXJ1E0IQYK578Q529ZB9CKOMGILZ2DF9AQSYUPUXMLMA7D4QMLHU3R6LRA79U6WKSC1PT43TMTQOV4QLFI7CIA7G0MWR35AXMBWABYW5CWK9YVXKRH8SGNZIZ47GDR1X8KIV8SZKSVFOH1HARSXZ4UEEFIHX9HNG23AL73P5XDUWCNTVB75Q' where id=96; -update noar ti set v2='O0LMFHUWRBTJ2RY5OS6ZOMO25H095ZEW1E172HBKDOJ0DOFFH03BJKO8UPQFJB6GAS3WPJENPDZNPDXJ1E0IQYK578Q529ZB9CKOMGILZ2DF9AQSYUPUXMLMA7D4QMLHU3R6LRA79U6WKSC1PT43TMTQOV4QLFI7CIA7G0MWR35AXMBWABYW5CWK9YVXKRH8SGNZIZ47GDR1X8KIV8SZKSVFOH1HARSXZ4UEEFIHX9HNG23AL73P5XDUWCNTVB75Q' where id=96; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='IU3EZINLEE3FOULALFNKVCBWO1YPK01DOBWRO37TQMQ1YEL4ZSTDZVM5TUP875Y93YP7UQF279KJFF7Z36S7QAAC55F43EPDYBXUAC905WMVOZX81ZTLWOJDGTPRGQLUHA29WSATMX1U09E0AIILEPXL3T2DDBJWXZ6EZOOENBDWCIC6MC04RT6OA7O50JJKNY15PSJ1PJZQY79BG32GFSSP22I90VCH2XSMUEVY7B1N64Z44QKUABQG3YXGTM03F' where id=96; -update noar ti set v3='IU3EZINLEE3FOULALFNKVCBWO1YPK01DOBWRO37TQMQ1YEL4ZSTDZVM5TUP875Y93YP7UQF279KJFF7Z36S7QAAC55F43EPDYBXUAC905WMVOZX81ZTLWOJDGTPRGQLUHA29WSATMX1U09E0AIILEPXL3T2DDBJWXZ6EZOOENBDWCIC6MC04RT6OA7O50JJKNY15PSJ1PJZQY79BG32GFSSP22I90VCH2XSMUEVY7B1N64Z44QKUABQG3YXGTM03F' where id=96; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='B3HNSREC0R3SW37L1P9XDJ7ZDEPF7KIYPEC1MFMRRU9LHUPNAVJ4VBVRP0FMJJPZ4KXPDYXH9KWSXDHP1YNBS3HKK1IPACF31YIBHIRVCAS59T1DIF6CVRBFF5JW5LZQIONQ0L8DLIKF4PXDAMCN0097GOXY4ABPC23N1G03SCQTX2QTNOP1PDI9M6F7ZVBUHTNV5XBOK90PI6C9R1QF2Q5EULI9SBMOPZ5OAS8698WGVE685TLQWSJGNPD0G1AKA' where id=97; -update noar ti set v0='B3HNSREC0R3SW37L1P9XDJ7ZDEPF7KIYPEC1MFMRRU9LHUPNAVJ4VBVRP0FMJJPZ4KXPDYXH9KWSXDHP1YNBS3HKK1IPACF31YIBHIRVCAS59T1DIF6CVRBFF5JW5LZQIONQ0L8DLIKF4PXDAMCN0097GOXY4ABPC23N1G03SCQTX2QTNOP1PDI9M6F7ZVBUHTNV5XBOK90PI6C9R1QF2Q5EULI9SBMOPZ5OAS8698WGVE685TLQWSJGNPD0G1AKA' where id=97; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='YSMMAZZ1OPW08S47OJPLUV72RO2T2RIUZQREAQ75VE82SYAL6TSSA1MJ3O2A83O1TOAU7VBHAJ5IG4ODR05TY8BN6RFWUEZBJXRW6QOXKJCJ0VEY11Y8YD6JWWK5MHOLAD2FIF4G005RH7GE7TTWX2GONVHAQA4VR8JLVUUPSUV6CY19U0RXWNLP02BCQAEHMJL2F93UC97B08FH2JWT1ZTGYAAV86QYL0BUZ0UCF2895XV86XTSQ7F3TUVWZQEU6' where id=97; -update noar ti set v1='YSMMAZZ1OPW08S47OJPLUV72RO2T2RIUZQREAQ75VE82SYAL6TSSA1MJ3O2A83O1TOAU7VBHAJ5IG4ODR05TY8BN6RFWUEZBJXRW6QOXKJCJ0VEY11Y8YD6JWWK5MHOLAD2FIF4G005RH7GE7TTWX2GONVHAQA4VR8JLVUUPSUV6CY19U0RXWNLP02BCQAEHMJL2F93UC97B08FH2JWT1ZTGYAAV86QYL0BUZ0UCF2895XV86XTSQ7F3TUVWZQEU6' where id=97; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='6FNIPC8ALP3KX15590AW3P68ZPUY6WARFDS5EJ8BBJFVV4RAH6YZX7SDWFMWCTUTFMS0MHL0MXM3LNGRF32CIHKFREOEUBACJV9637UWB04RBOND7KHS73TYP7TBIEANJU49YU3TI881G6V568A4RW4J4EBYYOGMLIEEZS7V5YR8Z3V8AVHP1HBLA70SFWQFVAMILB87J8RY6TSLLRBRLQL9QYJ6Z25YGXCOHN4W2XA1DIDHM6I5I2YYCLAHIKUZR' where id=97; -update noar ti set v2='6FNIPC8ALP3KX15590AW3P68ZPUY6WARFDS5EJ8BBJFVV4RAH6YZX7SDWFMWCTUTFMS0MHL0MXM3LNGRF32CIHKFREOEUBACJV9637UWB04RBOND7KHS73TYP7TBIEANJU49YU3TI881G6V568A4RW4J4EBYYOGMLIEEZS7V5YR8Z3V8AVHP1HBLA70SFWQFVAMILB87J8RY6TSLLRBRLQL9QYJ6Z25YGXCOHN4W2XA1DIDHM6I5I2YYCLAHIKUZR' where id=97; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='G7BEQIQNCPL9V3SQY1ZY26BZQGH7L3K94FMCYZGCCVD45Z8TGJAKPUX8WBH6JGNSZVPP1BCJ8OSVCTD3EE8SVYMXFSY63ECQ4J5V98DGN2E7VYOL7DVJGBAAFNIH6Z04RPD3WDZLCD2OYJ8JFQ0XQJMJYTLT6JF29JXK7FWF8AREXQ2YZPL5X517D8DMRQVIOAM3M11AQSFNSC5GQOS981WACKFS6Z0USGKCSH8R1SHM7LB819CMNEZRON3BDNLTQ' where id=97; -update noar ti set v3='G7BEQIQNCPL9V3SQY1ZY26BZQGH7L3K94FMCYZGCCVD45Z8TGJAKPUX8WBH6JGNSZVPP1BCJ8OSVCTD3EE8SVYMXFSY63ECQ4J5V98DGN2E7VYOL7DVJGBAAFNIH6Z04RPD3WDZLCD2OYJ8JFQ0XQJMJYTLT6JF29JXK7FWF8AREXQ2YZPL5X517D8DMRQVIOAM3M11AQSFNSC5GQOS981WACKFS6Z0USGKCSH8R1SHM7LB819CMNEZRON3BDNLTQ' where id=97; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='17YM75UB7JOWA4MKPQ5PJIYMIM6WVHKOKG4ZA6K4H4RM366MM19ORCT3N3P1LE10843AIPTUPN8HU3OJS3LUQLVFY4LEZ0C8UBHWI048T2GFG40AH5IMPJ4MJHTLWKURD5NIBVH27Y823RSKSJME5LYGEB85T292UGZAIBSV7QB8VPH5P85SHOSGQ6I4MX6SIR31SZOYG9DS7Z8ZEUXU46P974277X7947J7JJXEMCA9L147OBE6YK25WHM90YWMG' where id=98; -update noar ti set v0='17YM75UB7JOWA4MKPQ5PJIYMIM6WVHKOKG4ZA6K4H4RM366MM19ORCT3N3P1LE10843AIPTUPN8HU3OJS3LUQLVFY4LEZ0C8UBHWI048T2GFG40AH5IMPJ4MJHTLWKURD5NIBVH27Y823RSKSJME5LYGEB85T292UGZAIBSV7QB8VPH5P85SHOSGQ6I4MX6SIR31SZOYG9DS7Z8ZEUXU46P974277X7947J7JJXEMCA9L147OBE6YK25WHM90YWMG' where id=98; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='AW4O3Z601EYNZAGBNDECMQUMWIH1PRCKAQD78HL1169PK5KDCQS05DZJ32IH1WMU9WG57IN2VPFDEILS3PY4SO5ZIVOW4LC3IOPA28W6VMQW2EHMSIMLHV6D3THV6UDLANAXQG73WR5DMXZVLM7UXSF3SGI6J5KG1ZUUQFZZV7LGG7S45VL5I9UHI8XXK59VKSMSKKSPRALMZVLEIA8RTB23WA5MKDBN2KC8DE45FD47VCWS4OAHP7C9OWDAGV2S5' where id=98; -update noar ti set v1='AW4O3Z601EYNZAGBNDECMQUMWIH1PRCKAQD78HL1169PK5KDCQS05DZJ32IH1WMU9WG57IN2VPFDEILS3PY4SO5ZIVOW4LC3IOPA28W6VMQW2EHMSIMLHV6D3THV6UDLANAXQG73WR5DMXZVLM7UXSF3SGI6J5KG1ZUUQFZZV7LGG7S45VL5I9UHI8XXK59VKSMSKKSPRALMZVLEIA8RTB23WA5MKDBN2KC8DE45FD47VCWS4OAHP7C9OWDAGV2S5' where id=98; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='74E41LJXI9JTWOC62IRCK1KHTNQKIUW4SWSW7BQXPLHP4NEL99X1VZB21G18PQNRP4J7DWDJE5ZO8DSGIP755HJW3JLM9VLWCLRB9ZXEHDDU8MO639CKOTLLGF5RLRGQTIXG35VDR3KE7D2OMTXJW2JFKWPBVPHS7F0WKMXO9H27PJ68BA2NS0GQ7RT4II0STLSIYMY6VVIZGD4XBVLUU7F0N2NCKQUGPAFOCOB3VAQO9CIXCOXBYJAE6PH36OJB0' where id=98; -update noar ti set v2='74E41LJXI9JTWOC62IRCK1KHTNQKIUW4SWSW7BQXPLHP4NEL99X1VZB21G18PQNRP4J7DWDJE5ZO8DSGIP755HJW3JLM9VLWCLRB9ZXEHDDU8MO639CKOTLLGF5RLRGQTIXG35VDR3KE7D2OMTXJW2JFKWPBVPHS7F0WKMXO9H27PJ68BA2NS0GQ7RT4II0STLSIYMY6VVIZGD4XBVLUU7F0N2NCKQUGPAFOCOB3VAQO9CIXCOXBYJAE6PH36OJB0' where id=98; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='NKAZHADTHWD0N0VHL47U7FMUM6O3MFZN2VAF9YPU98379ZJWS9IPPGPGCWD98V2SRAGBS1Y4WG6AKKVMIWXUZV0CUTZ51CKTPQJQ9BNBSLTGNZ3HC5QP9NITMGMXW7CNTUH1YFGAMN5X7VKE3NE7CNXDZQ6UYBQY03W6MNBRBU0VIWRWL2KUHPEWOI5XHVLDCTUWD5HDU7DJYZ0DRS2J6FXVT6H8JM2OF92XLO31R7Z8CYGECE70TWE0GOP9HU8CS' where id=98; -update noar ti set v3='NKAZHADTHWD0N0VHL47U7FMUM6O3MFZN2VAF9YPU98379ZJWS9IPPGPGCWD98V2SRAGBS1Y4WG6AKKVMIWXUZV0CUTZ51CKTPQJQ9BNBSLTGNZ3HC5QP9NITMGMXW7CNTUH1YFGAMN5X7VKE3NE7CNXDZQ6UYBQY03W6MNBRBU0VIWRWL2KUHPEWOI5XHVLDCTUWD5HDU7DJYZ0DRS2J6FXVT6H8JM2OF92XLO31R7Z8CYGECE70TWE0GOP9HU8CS' where id=98; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='2NTLB3QEKWW5DCDPV43TI8YHPOB8JMD56IRAH1Z8D2H722689BKRAMW638L59NXQRDQG0BOZ3WZK78M2RJRH1ILUOLK0K00MFQ9ATC8CO78PACPD2HMRN3MCJBKKLB0DCNB4J9S6EHTA4VY64NVG9MEUJ1TKE2PGHE8BKOR564PE6K2YD436EUMCVFAEJXQMSB9HYEWNOE3PTT4DNJYAIUK7JRQ7HEGNWX44IMSEOYDSMYEWEKOJSACQV3JYCNYTH' where id=99; -update noar ti set v0='2NTLB3QEKWW5DCDPV43TI8YHPOB8JMD56IRAH1Z8D2H722689BKRAMW638L59NXQRDQG0BOZ3WZK78M2RJRH1ILUOLK0K00MFQ9ATC8CO78PACPD2HMRN3MCJBKKLB0DCNB4J9S6EHTA4VY64NVG9MEUJ1TKE2PGHE8BKOR564PE6K2YD436EUMCVFAEJXQMSB9HYEWNOE3PTT4DNJYAIUK7JRQ7HEGNWX44IMSEOYDSMYEWEKOJSACQV3JYCNYTH' where id=99; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='U1U5AR0AJETU7MHC72BV30C6OAZLXY7KA0ML6AK18UZVIZVI7LAP6N4H5O9CZHOWZEDNGMH7MY81X1IXBFSIFPC3SQAH6Q11FU3K3GHQV0XUMDCIZW3QJFBTSA8GMT25D5KYY7NUTBG9K1966DT8HGB5TR455R7C4GQK1CGQU84A4MRMIL01A6GOUXQGIGPXKVCAPAM27PH9I950DC5R37BXV19JFHMQFC5KPESX9TI9DMPNX1AJG452MVNY60EP7' where id=99; -update noar ti set v1='U1U5AR0AJETU7MHC72BV30C6OAZLXY7KA0ML6AK18UZVIZVI7LAP6N4H5O9CZHOWZEDNGMH7MY81X1IXBFSIFPC3SQAH6Q11FU3K3GHQV0XUMDCIZW3QJFBTSA8GMT25D5KYY7NUTBG9K1966DT8HGB5TR455R7C4GQK1CGQU84A4MRMIL01A6GOUXQGIGPXKVCAPAM27PH9I950DC5R37BXV19JFHMQFC5KPESX9TI9DMPNX1AJG452MVNY60EP7' where id=99; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='4UT93HR61UO15A7VUFJK22JA2T0KLN6BSI96FMSVNM7335TJ9BQV2A6ZDNXBH3LHI6MJWIAR91ALJLDZKB328K49RJIBQYJLT5KKE93X9YDVPMH83XC2AV0SNSPCHWYRPXB9LD6OVM8PWFLOG3OTSPVIDELQHX36OHS7XI4Y5EOUYKHZUCVGB6AA6CAOPT83ISQ0C1WAMFOK2UTJN4B0U8AHPLYVL2X988X4ZGG3OJIOCSMXTV5N8RGC4LDU0VNJY' where id=99; -update noar ti set v2='4UT93HR61UO15A7VUFJK22JA2T0KLN6BSI96FMSVNM7335TJ9BQV2A6ZDNXBH3LHI6MJWIAR91ALJLDZKB328K49RJIBQYJLT5KKE93X9YDVPMH83XC2AV0SNSPCHWYRPXB9LD6OVM8PWFLOG3OTSPVIDELQHX36OHS7XI4Y5EOUYKHZUCVGB6AA6CAOPT83ISQ0C1WAMFOK2UTJN4B0U8AHPLYVL2X988X4ZGG3OJIOCSMXTV5N8RGC4LDU0VNJY' where id=99; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='FH4206H0AKGZAR04LTBY5CRSFC2WL9HU3GIIH93K1B2S87WGEIWKPH9CLJS572M5JIL1OR9R97M52X7ZUL90X6ORSY9MC44H6ITNB1XL6IRKZMYV1Q3E44W33L70HP0XXLYIPPPILG17SRQ3D4J6MKO0716J4Z79WLHU2EMETVR0H81OK6I77ER7YVGV9P9XXCUXZDBKUAN9FAZFWMCW2JE906FCKMHU71P99YI83VQS7GVYQRE1AMDHDP3Y5QLHT' where id=99; -update noar ti set v3='FH4206H0AKGZAR04LTBY5CRSFC2WL9HU3GIIH93K1B2S87WGEIWKPH9CLJS572M5JIL1OR9R97M52X7ZUL90X6ORSY9MC44H6ITNB1XL6IRKZMYV1Q3E44W33L70HP0XXLYIPPPILG17SRQ3D4J6MKO0716J4Z79WLHU2EMETVR0H81OK6I77ER7YVGV9P9XXCUXZDBKUAN9FAZFWMCW2JE906FCKMHU71P99YI83VQS7GVYQRE1AMDHDP3Y5QLHT' where id=99; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -f0 int null, -v0 varbinary(32) null, -v1 varbinary(32) null, -v2 varbinary(32) null, -v3 varbinary(32) null, -b0 text null -) engine=tokudb; -insert into tt (id) values (0); -insert into tt values (1,2,'a','b','c','d','e'); -insert into tt values (2,3,'','','','',''); -insert into tt values (3,4,'','','','',''); -insert into tt values (4,5,'','','','',''); -insert into tt values (5,6,'','','','',''); -insert into tt values (6,7,'','','','',''); -insert into tt values (7,8,'','','','',''); -insert into tt values (8,9,'','','','',''); -insert into tt values (9,10,'','','','',''); -insert into tt values (10,11,'','','','',''); -insert into tt values (11,12,'','','','',''); -insert into tt values (12,13,'','','','',''); -insert into tt values (13,14,'','','','',''); -insert into tt values (14,15,'','','','',''); -insert into tt values (15,16,'','','','',''); -insert into tt values (16,17,'','','','',''); -insert into tt values (17,18,'','','','',''); -insert into tt values (18,19,'','','','',''); -insert into tt values (19,20,'','','','',''); -insert into tt values (20,21,'','','','',''); -insert into tt values (21,22,'','','','',''); -insert into tt values (22,23,'','','','',''); -insert into tt values (23,24,'','','','',''); -insert into tt values (24,25,'','','','',''); -insert into tt values (25,26,'','','','',''); -insert into tt values (26,27,'','','','',''); -insert into tt values (27,28,'','','','',''); -insert into tt values (28,29,'','','','',''); -insert into tt values (29,30,'','','','',''); -insert into tt values (30,31,'','','','',''); -insert into tt values (31,32,'','','','',''); -insert into tt values (32,33,'','','','',''); -insert into tt values (33,34,'','','','',''); -insert into tt values (34,35,'','','','',''); -insert into tt values (35,36,'','','','',''); -insert into tt values (36,37,'','','','',''); -insert into tt values (37,38,'','','','',''); -insert into tt values (38,39,'','','','',''); -insert into tt values (39,40,'','','','',''); -insert into tt values (40,41,'','','','',''); -insert into tt values (41,42,'','','','',''); -insert into tt values (42,43,'','','','',''); -insert into tt values (43,44,'','','','',''); -insert into tt values (44,45,'','','','',''); -insert into tt values (45,46,'','','','',''); -insert into tt values (46,47,'','','','',''); -insert into tt values (47,48,'','','','',''); -insert into tt values (48,49,'','','','',''); -insert into tt values (49,50,'','','','',''); -insert into tt values (50,51,'','','','',''); -insert into tt values (51,52,'','','','',''); -insert into tt values (52,53,'','','','',''); -insert into tt values (53,54,'','','','',''); -insert into tt values (54,55,'','','','',''); -insert into tt values (55,56,'','','','',''); -insert into tt values (56,57,'','','','',''); -insert into tt values (57,58,'','','','',''); -insert into tt values (58,59,'','','','',''); -insert into tt values (59,60,'','','','',''); -insert into tt values (60,61,'','','','',''); -insert into tt values (61,62,'','','','',''); -insert into tt values (62,63,'','','','',''); -insert into tt values (63,64,'','','','',''); -insert into tt values (64,65,'','','','',''); -insert into tt values (65,66,'','','','',''); -insert into tt values (66,67,'','','','',''); -insert into tt values (67,68,'','','','',''); -insert into tt values (68,69,'','','','',''); -insert into tt values (69,70,'','','','',''); -insert into tt values (70,71,'','','','',''); -insert into tt values (71,72,'','','','',''); -insert into tt values (72,73,'','','','',''); -insert into tt values (73,74,'','','','',''); -insert into tt values (74,75,'','','','',''); -insert into tt values (75,76,'','','','',''); -insert into tt values (76,77,'','','','',''); -insert into tt values (77,78,'','','','',''); -insert into tt values (78,79,'','','','',''); -insert into tt values (79,80,'','','','',''); -insert into tt values (80,81,'','','','',''); -insert into tt values (81,82,'','','','',''); -insert into tt values (82,83,'','','','',''); -insert into tt values (83,84,'','','','',''); -insert into tt values (84,85,'','','','',''); -insert into tt values (85,86,'','','','',''); -insert into tt values (86,87,'','','','',''); -insert into tt values (87,88,'','','','',''); -insert into tt values (88,89,'','','','',''); -insert into tt values (89,90,'','','','',''); -insert into tt values (90,91,'','','','',''); -insert into tt values (91,92,'','','','',''); -insert into tt values (92,93,'','','','',''); -insert into tt values (93,94,'','','','',''); -insert into tt values (94,95,'','','','',''); -insert into tt values (95,96,'','','','',''); -insert into tt values (96,97,'','','','',''); -insert into tt values (97,98,'','','','',''); -insert into tt values (98,99,'','','','',''); -insert into tt values (99,100,'','','','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='null this 0' where id=0; -update noar ti set v0='null this 0' where id=0; -update noar tt set v1='null is 1' where id=0; -update noar ti set v1='null is 1' where id=0; -update noar tt set v2='null a 2' where id=0; -update noar ti set v2='null a 2' where id=0; -update noar tt set v3='null test 3' where id=0; -update noar ti set v3='null test 3' where id=0; -update noar tt set v0='this 0' where id=1; -update noar ti set v0='this 0' where id=1; -update noar tt set v1='is 1' where id=1; -update noar ti set v1='is 1' where id=1; -update noar tt set v2='another 2' where id=1; -update noar ti set v2='another 2' where id=1; -update noar tt set v3='test 3' where id=1; -update noar ti set v3='test 3' where id=1; -update noar tt set v0='4CP5X4JI3BIPVDNO7Z7P2CTN520K4QDCN' where id=2; -update noar ti set v0='4CP5X4JI3BIPVDNO7Z7P2CTN520K4QDCN' where id=2; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='HC7PYXH7C9WR60ULA4OMWD4BMR48R8UX5' where id=2; -update noar ti set v1='HC7PYXH7C9WR60ULA4OMWD4BMR48R8UX5' where id=2; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='K5FHOKK2G9C86C3A303DU0FSQQKMFB3YB' where id=2; -update noar ti set v2='K5FHOKK2G9C86C3A303DU0FSQQKMFB3YB' where id=2; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='2CXQ1CMYFAWE2LR87ZBMZOC9CQK8OTVSL' where id=2; -update noar ti set v3='2CXQ1CMYFAWE2LR87ZBMZOC9CQK8OTVSL' where id=2; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='793DR4UA07GWZNEPR58V97HAGQ3I6D6Y2' where id=3; -update noar ti set v0='793DR4UA07GWZNEPR58V97HAGQ3I6D6Y2' where id=3; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='PFBZXCNZYYHWVK5LSXPDQ35QIWY6UBPY7' where id=3; -update noar ti set v1='PFBZXCNZYYHWVK5LSXPDQ35QIWY6UBPY7' where id=3; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='CH11HV0RFRP15DHTDY3SN1F5OG7SPPQ3F' where id=3; -update noar ti set v2='CH11HV0RFRP15DHTDY3SN1F5OG7SPPQ3F' where id=3; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='U011IYJDGLMK4GV05MS9HGF7LF9Q95H2C' where id=3; -update noar ti set v3='U011IYJDGLMK4GV05MS9HGF7LF9Q95H2C' where id=3; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='BB737V4GRTKP57V34ST6L32J3S758HZSD' where id=4; -update noar ti set v0='BB737V4GRTKP57V34ST6L32J3S758HZSD' where id=4; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='0RWSKTVOOQQSKPSFJXP8EIUQ3UU3KXYB6' where id=4; -update noar ti set v1='0RWSKTVOOQQSKPSFJXP8EIUQ3UU3KXYB6' where id=4; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='2GO899F93HU6LIEJNZUOB7J9C9GV46MMK' where id=4; -update noar ti set v2='2GO899F93HU6LIEJNZUOB7J9C9GV46MMK' where id=4; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='8V2N9BGK197IGQD41I3WDI05UYS5J3SNI' where id=4; -update noar ti set v3='8V2N9BGK197IGQD41I3WDI05UYS5J3SNI' where id=4; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='9X7RAASZNH2LCGYKFZJBPTVPZKCACM79O' where id=5; -update noar ti set v0='9X7RAASZNH2LCGYKFZJBPTVPZKCACM79O' where id=5; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='WYARYZCZR9QTCE688SBNNLZ9FDSOX14NY' where id=5; -update noar ti set v1='WYARYZCZR9QTCE688SBNNLZ9FDSOX14NY' where id=5; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='VGD9E8B19FGQYPDNYZM5QVA63HTBHTUGY' where id=5; -update noar ti set v2='VGD9E8B19FGQYPDNYZM5QVA63HTBHTUGY' where id=5; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='JDI5QW4YD7KWG94L73DTK6W3VV4XV3XUU' where id=5; -update noar ti set v3='JDI5QW4YD7KWG94L73DTK6W3VV4XV3XUU' where id=5; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='6OBVEQVQFNVF857T56VJXICJJF5KQL7GJ' where id=6; -update noar ti set v0='6OBVEQVQFNVF857T56VJXICJJF5KQL7GJ' where id=6; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='MJOESFBM818ISRN9P4H0WUPJN48SDCTAT' where id=6; -update noar ti set v1='MJOESFBM818ISRN9P4H0WUPJN48SDCTAT' where id=6; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='QH92HZ1IG9A4HWAX2OFG2CWCW9E5V9RZR' where id=6; -update noar ti set v2='QH92HZ1IG9A4HWAX2OFG2CWCW9E5V9RZR' where id=6; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='HNXV83AOO765VV601XAV74WK28MNSC8TE' where id=6; -update noar ti set v3='HNXV83AOO765VV601XAV74WK28MNSC8TE' where id=6; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='U49CZSR017AKFJ3BX6YDCY9F1OARJ4UTT' where id=7; -update noar ti set v0='U49CZSR017AKFJ3BX6YDCY9F1OARJ4UTT' where id=7; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='RZTYCA4IBDJGC7M74CT2RS899HECRQH7O' where id=7; -update noar ti set v1='RZTYCA4IBDJGC7M74CT2RS899HECRQH7O' where id=7; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='KT312E7DD2LNM91XIAMBUFOTJRHBYNZJ2' where id=7; -update noar ti set v2='KT312E7DD2LNM91XIAMBUFOTJRHBYNZJ2' where id=7; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='FDSOY3E49UUGWPW8ZRGLGMH7OGX1GPIQW' where id=7; -update noar ti set v3='FDSOY3E49UUGWPW8ZRGLGMH7OGX1GPIQW' where id=7; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='CUO9CN8O71QR50KA5ONA2UVKJR1M8UQZM' where id=8; -update noar ti set v0='CUO9CN8O71QR50KA5ONA2UVKJR1M8UQZM' where id=8; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='EDGJ0L7LI1LJD0ZQ3W3EE9KPY9B858K2P' where id=8; -update noar ti set v1='EDGJ0L7LI1LJD0ZQ3W3EE9KPY9B858K2P' where id=8; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='5M22FGC8VPGXEIPZ42ILEDWKN4QGR7XRL' where id=8; -update noar ti set v2='5M22FGC8VPGXEIPZ42ILEDWKN4QGR7XRL' where id=8; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='PQTMEVXQ1Y6MP4FFTK40UUY77OJY9VPPI' where id=8; -update noar ti set v3='PQTMEVXQ1Y6MP4FFTK40UUY77OJY9VPPI' where id=8; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='6TK6YVBHDIR47H1VUITL8CNCADHPJSA6Y' where id=9; -update noar ti set v0='6TK6YVBHDIR47H1VUITL8CNCADHPJSA6Y' where id=9; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='OAU91413DXXAK7M0T9QGRBW2B0PL97FTG' where id=9; -update noar ti set v1='OAU91413DXXAK7M0T9QGRBW2B0PL97FTG' where id=9; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='EX4Y7MO577Z0NOCSSA52PA584HZ896YOJ' where id=9; -update noar ti set v2='EX4Y7MO577Z0NOCSSA52PA584HZ896YOJ' where id=9; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='TNJVERII0US72LZJOAP87UT6ZS320JI4C' where id=9; -update noar ti set v3='TNJVERII0US72LZJOAP87UT6ZS320JI4C' where id=9; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='KX4VD5NDNQYREB9HCNE40PFWIFWJNQCM8' where id=10; -update noar ti set v0='KX4VD5NDNQYREB9HCNE40PFWIFWJNQCM8' where id=10; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='MSBBYB879R6P45IGSCA3PV7TVYU6SMDJW' where id=10; -update noar ti set v1='MSBBYB879R6P45IGSCA3PV7TVYU6SMDJW' where id=10; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='61UJL0OACRSO64FGWGFYQRC1DR8OI1W7Z' where id=10; -update noar ti set v2='61UJL0OACRSO64FGWGFYQRC1DR8OI1W7Z' where id=10; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='DJA5KVC44MAUOXVW58IXTY8KVDJ60W0RU' where id=10; -update noar ti set v3='DJA5KVC44MAUOXVW58IXTY8KVDJ60W0RU' where id=10; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='F3KKDXYITEX2ZJGGXTFX12AK18R722YKV' where id=11; -update noar ti set v0='F3KKDXYITEX2ZJGGXTFX12AK18R722YKV' where id=11; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='BO0GMVUCD7J1SOKOM69WERXWQKET0AQOQ' where id=11; -update noar ti set v1='BO0GMVUCD7J1SOKOM69WERXWQKET0AQOQ' where id=11; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='C5H8G7L00U1EF6Z6J6V6ZGGCU6G4GITBM' where id=11; -update noar ti set v2='C5H8G7L00U1EF6Z6J6V6ZGGCU6G4GITBM' where id=11; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='X0FD3CKW82J2LAPC199SJV81Y6AKH3261' where id=11; -update noar ti set v3='X0FD3CKW82J2LAPC199SJV81Y6AKH3261' where id=11; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='J9M0SX7VQAJWD5RSY6OQRH54ZWPKTTRIG' where id=12; -update noar ti set v0='J9M0SX7VQAJWD5RSY6OQRH54ZWPKTTRIG' where id=12; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='MSWTOLNBO3TVXVUTQ418BHXJWVTIYFYP3' where id=12; -update noar ti set v1='MSWTOLNBO3TVXVUTQ418BHXJWVTIYFYP3' where id=12; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='BURRPFBYSCQCQA1P1B5GDN2FDI7KKBQD2' where id=12; -update noar ti set v2='BURRPFBYSCQCQA1P1B5GDN2FDI7KKBQD2' where id=12; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='AENI8YAP7HCL1VYZS7P7IPV7M4B9P16WR' where id=12; -update noar ti set v3='AENI8YAP7HCL1VYZS7P7IPV7M4B9P16WR' where id=12; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='T33IEGIGPA4YJTIGFY01S9ROY0WN2AHPJ' where id=13; -update noar ti set v0='T33IEGIGPA4YJTIGFY01S9ROY0WN2AHPJ' where id=13; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='A0KOR8TK5S1YUCGTJ141UAGPJC0IQUHA1' where id=13; -update noar ti set v1='A0KOR8TK5S1YUCGTJ141UAGPJC0IQUHA1' where id=13; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='IBO47UGFLR5YMS3OHOES3TFR2RJTNAUI4' where id=13; -update noar ti set v2='IBO47UGFLR5YMS3OHOES3TFR2RJTNAUI4' where id=13; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='9IJN8SQ9DKBSDZMVP5RTJ1N183N22LX9W' where id=13; -update noar ti set v3='9IJN8SQ9DKBSDZMVP5RTJ1N183N22LX9W' where id=13; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='VK7YYZ4DRDRLOXHDHO2376CMZ8O61OQG4' where id=14; -update noar ti set v0='VK7YYZ4DRDRLOXHDHO2376CMZ8O61OQG4' where id=14; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='303BLIRJSIBC6RCSG6MUFJ0YDRJDA35UI' where id=14; -update noar ti set v1='303BLIRJSIBC6RCSG6MUFJ0YDRJDA35UI' where id=14; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='NTYW8UZE23Q6HGHCXWO25G1DRHS0L725A' where id=14; -update noar ti set v2='NTYW8UZE23Q6HGHCXWO25G1DRHS0L725A' where id=14; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='0DKIBFHRCR8T2T5VHOZM6V4TOC787AT4T' where id=14; -update noar ti set v3='0DKIBFHRCR8T2T5VHOZM6V4TOC787AT4T' where id=14; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='5YU92WTZXROC00E31GCF5R3WS1FRJJ1T0' where id=15; -update noar ti set v0='5YU92WTZXROC00E31GCF5R3WS1FRJJ1T0' where id=15; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='03M43BN1ND9B2JUU03B49IPTQE2LM7FA5' where id=15; -update noar ti set v1='03M43BN1ND9B2JUU03B49IPTQE2LM7FA5' where id=15; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='4XIQFZDX4MXHH6BHKVZVJN0ROTRPZFXEJ' where id=15; -update noar ti set v2='4XIQFZDX4MXHH6BHKVZVJN0ROTRPZFXEJ' where id=15; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='M2SGE4XHADZWBQ1Q5QBN5LIYP82JJDDHE' where id=15; -update noar ti set v3='M2SGE4XHADZWBQ1Q5QBN5LIYP82JJDDHE' where id=15; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='DRVDZI5ZFD3UFRDA7Y4EZSXU6KTEXM5QU' where id=16; -update noar ti set v0='DRVDZI5ZFD3UFRDA7Y4EZSXU6KTEXM5QU' where id=16; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='GH8OBG3N7IT91MR877SKTLM6DVZS9N9HL' where id=16; -update noar ti set v1='GH8OBG3N7IT91MR877SKTLM6DVZS9N9HL' where id=16; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='P6ZM3JF3NJHTYHCRRLT1BAINKHSJR42XO' where id=16; -update noar ti set v2='P6ZM3JF3NJHTYHCRRLT1BAINKHSJR42XO' where id=16; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='GC2LVNHRNJ0WY14FJLVKFHVU4WKD1P2WJ' where id=16; -update noar ti set v3='GC2LVNHRNJ0WY14FJLVKFHVU4WKD1P2WJ' where id=16; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='7DPKSYB9BNPQR6ZFXUXGAUW5AAM49F6G5' where id=17; -update noar ti set v0='7DPKSYB9BNPQR6ZFXUXGAUW5AAM49F6G5' where id=17; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='P5BHDAG1RH0P5HCM9584JBPXNM1MW4Z67' where id=17; -update noar ti set v1='P5BHDAG1RH0P5HCM9584JBPXNM1MW4Z67' where id=17; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='ZGR15VERBSHFBXOE0X3IDQ1MGOS1CILMK' where id=17; -update noar ti set v2='ZGR15VERBSHFBXOE0X3IDQ1MGOS1CILMK' where id=17; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='6SGXIXYGD6EBYVQMMNDTE5GN229LZ2XJM' where id=17; -update noar ti set v3='6SGXIXYGD6EBYVQMMNDTE5GN229LZ2XJM' where id=17; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='2WQZCHQZ6YWLS4MHVN7MAXSA3R603FGX3' where id=18; -update noar ti set v0='2WQZCHQZ6YWLS4MHVN7MAXSA3R603FGX3' where id=18; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='TNQEFHY5LKKX5JRH78N952QAUJ88ZFX3R' where id=18; -update noar ti set v1='TNQEFHY5LKKX5JRH78N952QAUJ88ZFX3R' where id=18; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='THRKPBKBBIB1IZO5CMSULQA73FOLUG540' where id=18; -update noar ti set v2='THRKPBKBBIB1IZO5CMSULQA73FOLUG540' where id=18; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='QZW6GAXQ41EIWZ841PIMWTHA7P05FFCWS' where id=18; -update noar ti set v3='QZW6GAXQ41EIWZ841PIMWTHA7P05FFCWS' where id=18; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='5EDU1258VE5LPJQRYTHZ8HIOZFQ81R2WN' where id=19; -update noar ti set v0='5EDU1258VE5LPJQRYTHZ8HIOZFQ81R2WN' where id=19; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='775SD126XX2YC689R3K1MHUWD7IDGXC8D' where id=19; -update noar ti set v1='775SD126XX2YC689R3K1MHUWD7IDGXC8D' where id=19; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='WGFIGIJ4TXCLVTDMHMMBOL9TYSJT2U5J7' where id=19; -update noar ti set v2='WGFIGIJ4TXCLVTDMHMMBOL9TYSJT2U5J7' where id=19; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='B9R4R8WVPSW8UJSLM5XFHDLR4TR2VFAOQ' where id=19; -update noar ti set v3='B9R4R8WVPSW8UJSLM5XFHDLR4TR2VFAOQ' where id=19; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='JLL0RRC526GSC0OZ81S18P5RF6Z693OAB' where id=20; -update noar ti set v0='JLL0RRC526GSC0OZ81S18P5RF6Z693OAB' where id=20; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='4CFN1V3SZHMB880GPEMN4OZVS7JUFKD7H' where id=20; -update noar ti set v1='4CFN1V3SZHMB880GPEMN4OZVS7JUFKD7H' where id=20; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='35QG2JL3N7FAXBV8VXBVNPWBYR9DFQK2J' where id=20; -update noar ti set v2='35QG2JL3N7FAXBV8VXBVNPWBYR9DFQK2J' where id=20; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='9OBSW8L1SSF2BH2HGKJVT1AJ3IUV2SV2T' where id=20; -update noar ti set v3='9OBSW8L1SSF2BH2HGKJVT1AJ3IUV2SV2T' where id=20; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='46WNV380G1UCHVV2Y088QPDKW2XH7IQ34' where id=21; -update noar ti set v0='46WNV380G1UCHVV2Y088QPDKW2XH7IQ34' where id=21; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='UT74SRDGJ162PST8KYOHLNR9NBX4FDNZB' where id=21; -update noar ti set v1='UT74SRDGJ162PST8KYOHLNR9NBX4FDNZB' where id=21; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='PFNMIR36SAP05GKA8V84QPAEXFFXTJF1L' where id=21; -update noar ti set v2='PFNMIR36SAP05GKA8V84QPAEXFFXTJF1L' where id=21; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='8JPG5Z2F7Q82TXDAKY5XV5833VAIOXGS5' where id=21; -update noar ti set v3='8JPG5Z2F7Q82TXDAKY5XV5833VAIOXGS5' where id=21; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='0UKXDDT0GGG902TJUTEXP3WZX9YGUGI2H' where id=22; -update noar ti set v0='0UKXDDT0GGG902TJUTEXP3WZX9YGUGI2H' where id=22; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='KOJB5S4VNENEDL295MJCKSG0U6EWK2PCU' where id=22; -update noar ti set v1='KOJB5S4VNENEDL295MJCKSG0U6EWK2PCU' where id=22; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='U0V3DCABX2ZDQ6RSB5PFLFNY2J01GCK6F' where id=22; -update noar ti set v2='U0V3DCABX2ZDQ6RSB5PFLFNY2J01GCK6F' where id=22; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='0Z3TPX143JBX447B6NJ3LWYMLZ00BBWKK' where id=22; -update noar ti set v3='0Z3TPX143JBX447B6NJ3LWYMLZ00BBWKK' where id=22; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='ZY8EE75LVSXW4AU3EIL3B985J4TOH5IO1' where id=23; -update noar ti set v0='ZY8EE75LVSXW4AU3EIL3B985J4TOH5IO1' where id=23; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='D5FD17Z0K5GAPV0CMS50B2IV75V4IUXZQ' where id=23; -update noar ti set v1='D5FD17Z0K5GAPV0CMS50B2IV75V4IUXZQ' where id=23; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='7MUR2EHV1TRV16HNTPJ00LOO01798AFNB' where id=23; -update noar ti set v2='7MUR2EHV1TRV16HNTPJ00LOO01798AFNB' where id=23; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='AREQ7QKLJF6ZN0Z0UK55U2MSYDAYELT23' where id=23; -update noar ti set v3='AREQ7QKLJF6ZN0Z0UK55U2MSYDAYELT23' where id=23; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='4Q504T13MWXR6ULK0YUWCRI4G3V50P6PF' where id=24; -update noar ti set v0='4Q504T13MWXR6ULK0YUWCRI4G3V50P6PF' where id=24; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='UK541KYG7R7XHGMES2U39VYTK3QMIP2I1' where id=24; -update noar ti set v1='UK541KYG7R7XHGMES2U39VYTK3QMIP2I1' where id=24; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='6BXFG7ZUBWMWKFYU4HX4XCXFBQEGU6ARA' where id=24; -update noar ti set v2='6BXFG7ZUBWMWKFYU4HX4XCXFBQEGU6ARA' where id=24; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='UXGAOQUET56F4Q22WM3HO3RR8STL3BTGX' where id=24; -update noar ti set v3='UXGAOQUET56F4Q22WM3HO3RR8STL3BTGX' where id=24; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='6MYJ4932OBD45L7YC3L5MRMS2PK3X4ODU' where id=25; -update noar ti set v0='6MYJ4932OBD45L7YC3L5MRMS2PK3X4ODU' where id=25; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='JVTGCDRKTA4GXTGEKXDFDV7PKMOGI9IG9' where id=25; -update noar ti set v1='JVTGCDRKTA4GXTGEKXDFDV7PKMOGI9IG9' where id=25; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='SRXI5GYYDI859KJSLAONF19LMWABF8WYK' where id=25; -update noar ti set v2='SRXI5GYYDI859KJSLAONF19LMWABF8WYK' where id=25; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='EFXY8QR9T5F65EG2W2R9JHT8WXCF0EK87' where id=25; -update noar ti set v3='EFXY8QR9T5F65EG2W2R9JHT8WXCF0EK87' where id=25; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='NSO4PI7CNZW5A428BJRH10CJBEH5PZ47Z' where id=26; -update noar ti set v0='NSO4PI7CNZW5A428BJRH10CJBEH5PZ47Z' where id=26; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='8KRE4HS895B1E53HZFOUC1PHZSKU1E8TD' where id=26; -update noar ti set v1='8KRE4HS895B1E53HZFOUC1PHZSKU1E8TD' where id=26; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='M2RROHXDEYBF08RUB7VVED0WMY4FPVDEA' where id=26; -update noar ti set v2='M2RROHXDEYBF08RUB7VVED0WMY4FPVDEA' where id=26; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='AMIARU95LSVVGGSA9GMRHMWR81NTHDJ2S' where id=26; -update noar ti set v3='AMIARU95LSVVGGSA9GMRHMWR81NTHDJ2S' where id=26; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='1NGJS2DZYT851F7V7Q9EN69E5OG6NI2GS' where id=27; -update noar ti set v0='1NGJS2DZYT851F7V7Q9EN69E5OG6NI2GS' where id=27; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='KDHJFRBIFTSSL50L43SRL8NIEH4AC29TV' where id=27; -update noar ti set v1='KDHJFRBIFTSSL50L43SRL8NIEH4AC29TV' where id=27; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='UWNFRLAWJFIE8HTGNVZSLJV8UWFOWYVGM' where id=27; -update noar ti set v2='UWNFRLAWJFIE8HTGNVZSLJV8UWFOWYVGM' where id=27; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='CM9KK9IA3R0JS36E4OPKN4X5P3J3QGXGW' where id=27; -update noar ti set v3='CM9KK9IA3R0JS36E4OPKN4X5P3J3QGXGW' where id=27; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='WXVL0VAU46AEAECLL4IWODIURRN1NRJ61' where id=28; -update noar ti set v0='WXVL0VAU46AEAECLL4IWODIURRN1NRJ61' where id=28; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='FLNXU7KAEBYIA1QVIPGAC0HQGA7CGYB97' where id=28; -update noar ti set v1='FLNXU7KAEBYIA1QVIPGAC0HQGA7CGYB97' where id=28; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='HZ5SSKV25ICEW6MOX1L5FTDCP5LKCTXXT' where id=28; -update noar ti set v2='HZ5SSKV25ICEW6MOX1L5FTDCP5LKCTXXT' where id=28; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='XNGMLS5BJ2IOZM3O0ZN5RQ5OU0O53KFQI' where id=28; -update noar ti set v3='XNGMLS5BJ2IOZM3O0ZN5RQ5OU0O53KFQI' where id=28; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='8X5BD0AQOLFSQRBAUMWH4ZH7KMOJMPM0X' where id=29; -update noar ti set v0='8X5BD0AQOLFSQRBAUMWH4ZH7KMOJMPM0X' where id=29; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='VY2VPMVG4EY938I04X0J8QQJVY5Z82ZCF' where id=29; -update noar ti set v1='VY2VPMVG4EY938I04X0J8QQJVY5Z82ZCF' where id=29; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='2DWL9ZHLGQKW5FX2WWLHHMXIECOP8KX5H' where id=29; -update noar ti set v2='2DWL9ZHLGQKW5FX2WWLHHMXIECOP8KX5H' where id=29; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='B8YMT03HGSMR4G1YQL64ZF89BFMOA3KVI' where id=29; -update noar ti set v3='B8YMT03HGSMR4G1YQL64ZF89BFMOA3KVI' where id=29; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='9TAHULKNSN78RRNNZCLZUVYNR15WBXPQ4' where id=30; -update noar ti set v0='9TAHULKNSN78RRNNZCLZUVYNR15WBXPQ4' where id=30; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='S90UAF4G65THLKJ32ZYHA1Q5ZMLOIK6ZL' where id=30; -update noar ti set v1='S90UAF4G65THLKJ32ZYHA1Q5ZMLOIK6ZL' where id=30; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='XQ3OENJ87EJGBGVR39SSBBPRPNDO7XOS5' where id=30; -update noar ti set v2='XQ3OENJ87EJGBGVR39SSBBPRPNDO7XOS5' where id=30; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='5M4X6EDWDA3VFBBCS5UMYGVL9BMNN0JD4' where id=30; -update noar ti set v3='5M4X6EDWDA3VFBBCS5UMYGVL9BMNN0JD4' where id=30; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='G9162K93ZFX25S2DA7WXGQPDTFWLWLUBZ' where id=31; -update noar ti set v0='G9162K93ZFX25S2DA7WXGQPDTFWLWLUBZ' where id=31; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='BPODCXXZ7O8GFZB9F6HNFU8E8JO5I825K' where id=31; -update noar ti set v1='BPODCXXZ7O8GFZB9F6HNFU8E8JO5I825K' where id=31; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='RPWSOAON5CGL6WZINYDISF7TCGITG2N4H' where id=31; -update noar ti set v2='RPWSOAON5CGL6WZINYDISF7TCGITG2N4H' where id=31; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='X9VFTE9H7U6VZ2XGY1Z190UIAQ34VWS7K' where id=31; -update noar ti set v3='X9VFTE9H7U6VZ2XGY1Z190UIAQ34VWS7K' where id=31; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='MSPBDFB032UUMC2FJLZFOUECQ6X9SY6FN' where id=32; -update noar ti set v0='MSPBDFB032UUMC2FJLZFOUECQ6X9SY6FN' where id=32; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='7E975JP7W479XYPVAAFVAM77KWJR2WDV4' where id=32; -update noar ti set v1='7E975JP7W479XYPVAAFVAM77KWJR2WDV4' where id=32; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='D0FKVNIBA7C0MRDG1YSW5LE1GRCGXIPG8' where id=32; -update noar ti set v2='D0FKVNIBA7C0MRDG1YSW5LE1GRCGXIPG8' where id=32; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='334N2FM0WB4O6SDH99VQTZNOGG21TOH9B' where id=32; -update noar ti set v3='334N2FM0WB4O6SDH99VQTZNOGG21TOH9B' where id=32; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='DCCZEXYNV3379AN2L2VM7FSRC15ZZM5D7' where id=33; -update noar ti set v0='DCCZEXYNV3379AN2L2VM7FSRC15ZZM5D7' where id=33; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='0M67C8QUZIA52ZKYHCMNP94WBU463XIIF' where id=33; -update noar ti set v1='0M67C8QUZIA52ZKYHCMNP94WBU463XIIF' where id=33; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='AIU7JVPC24UL6ZDCKG8XCQZSF66MD4CWI' where id=33; -update noar ti set v2='AIU7JVPC24UL6ZDCKG8XCQZSF66MD4CWI' where id=33; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='JI1W62A1K1IOZ9MY4PMC41RR15RW9K8SI' where id=33; -update noar ti set v3='JI1W62A1K1IOZ9MY4PMC41RR15RW9K8SI' where id=33; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='K3KOWVVOQD2SF82ZQ0FJ8M84JWR63GW7N' where id=34; -update noar ti set v0='K3KOWVVOQD2SF82ZQ0FJ8M84JWR63GW7N' where id=34; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='3RYTC4FST2JNIPZZLY3BVM6DNSV1BYGJO' where id=34; -update noar ti set v1='3RYTC4FST2JNIPZZLY3BVM6DNSV1BYGJO' where id=34; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='PGO9LB9WQQV6I18NB79CIVAOMW1UA5JG5' where id=34; -update noar ti set v2='PGO9LB9WQQV6I18NB79CIVAOMW1UA5JG5' where id=34; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='WXTST0S0NO9Q2XVKUFNLKNOHLPVR5WMW3' where id=34; -update noar ti set v3='WXTST0S0NO9Q2XVKUFNLKNOHLPVR5WMW3' where id=34; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='QCYAPRWZL02L8P0JHB9OYXZZUK7DKEMKZ' where id=35; -update noar ti set v0='QCYAPRWZL02L8P0JHB9OYXZZUK7DKEMKZ' where id=35; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='QX6HNVX1TSMS3KDCTS2UDMD01OSBHGSQA' where id=35; -update noar ti set v1='QX6HNVX1TSMS3KDCTS2UDMD01OSBHGSQA' where id=35; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='9A6BAW9ZMGUU1X16TWO30NZCKWD4C06TQ' where id=35; -update noar ti set v2='9A6BAW9ZMGUU1X16TWO30NZCKWD4C06TQ' where id=35; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='K6S6JOOP7RYSTYT4VEXL71VOGFBY4IPJD' where id=35; -update noar ti set v3='K6S6JOOP7RYSTYT4VEXL71VOGFBY4IPJD' where id=35; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='RI4ANVX8PMG3JB152YV1GBHGC4TL5E5SN' where id=36; -update noar ti set v0='RI4ANVX8PMG3JB152YV1GBHGC4TL5E5SN' where id=36; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='YHU9HEQYPBN5FGJZ74CBMBHAS24PMSCIE' where id=36; -update noar ti set v1='YHU9HEQYPBN5FGJZ74CBMBHAS24PMSCIE' where id=36; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='NWPLUBLTD2UXNG1IDR1UZAFE4VHDYDJPV' where id=36; -update noar ti set v2='NWPLUBLTD2UXNG1IDR1UZAFE4VHDYDJPV' where id=36; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='3J7QSZA1789TZYPWLD5BBHY8VPBI8DZLX' where id=36; -update noar ti set v3='3J7QSZA1789TZYPWLD5BBHY8VPBI8DZLX' where id=36; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='2T7IMNEKKTKT5UPRSSPK1868D0IAPWCVP' where id=37; -update noar ti set v0='2T7IMNEKKTKT5UPRSSPK1868D0IAPWCVP' where id=37; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='G2VKZN58QXC9K7DDT0JGXQDLWIAD0SJF1' where id=37; -update noar ti set v1='G2VKZN58QXC9K7DDT0JGXQDLWIAD0SJF1' where id=37; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='DJPEITEJ6M70B1MWMRIAXUIGQGTFOYYX7' where id=37; -update noar ti set v2='DJPEITEJ6M70B1MWMRIAXUIGQGTFOYYX7' where id=37; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='62XLPFM3EUXBUEP4FBM4X7I6I08NMWXSM' where id=37; -update noar ti set v3='62XLPFM3EUXBUEP4FBM4X7I6I08NMWXSM' where id=37; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='R912P2HF5EHVFY6OYWY328BV0MJWIYB02' where id=38; -update noar ti set v0='R912P2HF5EHVFY6OYWY328BV0MJWIYB02' where id=38; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='ITQL0YP43X806V16F60HUPA0FCKKDEC5D' where id=38; -update noar ti set v1='ITQL0YP43X806V16F60HUPA0FCKKDEC5D' where id=38; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='3MVKMCM37ET5Y3UJDMMS6885EM079QB3Z' where id=38; -update noar ti set v2='3MVKMCM37ET5Y3UJDMMS6885EM079QB3Z' where id=38; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='VMRBAP9TCGCN6X6FRBF5TM1JUMANKD9M6' where id=38; -update noar ti set v3='VMRBAP9TCGCN6X6FRBF5TM1JUMANKD9M6' where id=38; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='DT5E4D9CD7UG4RRZDU3NTGRGWLU8DREYP' where id=39; -update noar ti set v0='DT5E4D9CD7UG4RRZDU3NTGRGWLU8DREYP' where id=39; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='L9GU0DO74KS50X401JR3Q0A8WNUJ5IPEX' where id=39; -update noar ti set v1='L9GU0DO74KS50X401JR3Q0A8WNUJ5IPEX' where id=39; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='FA0WDNHT4UL3IMNHXK7OH3UKKHE1RX8N8' where id=39; -update noar ti set v2='FA0WDNHT4UL3IMNHXK7OH3UKKHE1RX8N8' where id=39; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='IFW24W1X1BB8UTD2VSQGK017K8OHXUW56' where id=39; -update noar ti set v3='IFW24W1X1BB8UTD2VSQGK017K8OHXUW56' where id=39; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='MKJKE3COIAQ3A67Y0RYOHOLFKDLL9GWAJ' where id=40; -update noar ti set v0='MKJKE3COIAQ3A67Y0RYOHOLFKDLL9GWAJ' where id=40; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='GLID9S2KYZB9ACCUWPYKMEDXWP7TG9MFE' where id=40; -update noar ti set v1='GLID9S2KYZB9ACCUWPYKMEDXWP7TG9MFE' where id=40; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='ST2VEUTOE96PSUJDSE8PEQRMH8YB35CTM' where id=40; -update noar ti set v2='ST2VEUTOE96PSUJDSE8PEQRMH8YB35CTM' where id=40; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='A3XJVUHBILK9OHEPUD57RUIRZNVYLG63S' where id=40; -update noar ti set v3='A3XJVUHBILK9OHEPUD57RUIRZNVYLG63S' where id=40; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='3UWR1YYR5HS6ZDU6MRQI7Y15UE24DK2S3' where id=41; -update noar ti set v0='3UWR1YYR5HS6ZDU6MRQI7Y15UE24DK2S3' where id=41; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='VAA4210P14672GH4DM6L0ECZYZ09OSDW8' where id=41; -update noar ti set v1='VAA4210P14672GH4DM6L0ECZYZ09OSDW8' where id=41; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='B8F0TP4VR56U0LQ03DFHHK4JUJ9UB7ENT' where id=41; -update noar ti set v2='B8F0TP4VR56U0LQ03DFHHK4JUJ9UB7ENT' where id=41; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='FFQWF8RJT1PNQIEI57WSVIXHQ2LKTXCUP' where id=41; -update noar ti set v3='FFQWF8RJT1PNQIEI57WSVIXHQ2LKTXCUP' where id=41; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='O6VWMNB08WSKPY52C23PJ0EMB12D7M9ZA' where id=42; -update noar ti set v0='O6VWMNB08WSKPY52C23PJ0EMB12D7M9ZA' where id=42; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='XBXLZOAH7VXWIKBR2LWXG1NI53CZIXKQS' where id=42; -update noar ti set v1='XBXLZOAH7VXWIKBR2LWXG1NI53CZIXKQS' where id=42; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='ABJXY62V528OILRK03WD3Q9QBLFI1B28P' where id=42; -update noar ti set v2='ABJXY62V528OILRK03WD3Q9QBLFI1B28P' where id=42; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='AOXKZHVQHCA41PBLJJNSVEO2UEEFG2JK3' where id=42; -update noar ti set v3='AOXKZHVQHCA41PBLJJNSVEO2UEEFG2JK3' where id=42; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='9LHIQC9TVMFHHFI32KY0OS04GDZ1BTH0L' where id=43; -update noar ti set v0='9LHIQC9TVMFHHFI32KY0OS04GDZ1BTH0L' where id=43; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='RTS18K1IEHJNSA5NRQOZB4HAYBRZ0KJEV' where id=43; -update noar ti set v1='RTS18K1IEHJNSA5NRQOZB4HAYBRZ0KJEV' where id=43; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='V5XQW02KVYP37BSQA5E8MOMOT9VTMJ40I' where id=43; -update noar ti set v2='V5XQW02KVYP37BSQA5E8MOMOT9VTMJ40I' where id=43; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='5Y4B39JWO22GQ2N9P4EO1TLXTWDFT0DEN' where id=43; -update noar ti set v3='5Y4B39JWO22GQ2N9P4EO1TLXTWDFT0DEN' where id=43; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='PGKK16QDOOCE96HKCVBLEMDCKVG9V1JMO' where id=44; -update noar ti set v0='PGKK16QDOOCE96HKCVBLEMDCKVG9V1JMO' where id=44; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='78LW6GXX6Q16BPOVMOYSTYJWYHZ30TR8T' where id=44; -update noar ti set v1='78LW6GXX6Q16BPOVMOYSTYJWYHZ30TR8T' where id=44; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='QEAO4FTMGX0X009R64GRNAC0NRY8T0GOO' where id=44; -update noar ti set v2='QEAO4FTMGX0X009R64GRNAC0NRY8T0GOO' where id=44; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='2X16FM6TI5P79G3II2UQSLY1OVSAT12Q1' where id=44; -update noar ti set v3='2X16FM6TI5P79G3II2UQSLY1OVSAT12Q1' where id=44; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='ESXKX6USB9XY4FYXSD88PQI718391HAGN' where id=45; -update noar ti set v0='ESXKX6USB9XY4FYXSD88PQI718391HAGN' where id=45; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='0P2YNW03FRTHLLQ9FT78C37AUZ1TBV87F' where id=45; -update noar ti set v1='0P2YNW03FRTHLLQ9FT78C37AUZ1TBV87F' where id=45; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='413UKX649L2MF40T6HAZDMA9BESDN115E' where id=45; -update noar ti set v2='413UKX649L2MF40T6HAZDMA9BESDN115E' where id=45; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='2Z7REP7QMAKJAVBAWMVGLLFVOGVC4ADUP' where id=45; -update noar ti set v3='2Z7REP7QMAKJAVBAWMVGLLFVOGVC4ADUP' where id=45; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='8KI3Q799YHUYLMA944I8S0JVXGMXLVZSS' where id=46; -update noar ti set v0='8KI3Q799YHUYLMA944I8S0JVXGMXLVZSS' where id=46; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='TVI3CYJHZUT2AZSP876R33HS83Z5TPAW5' where id=46; -update noar ti set v1='TVI3CYJHZUT2AZSP876R33HS83Z5TPAW5' where id=46; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='RUQ9TZZR1NSFJVTK4220PVZXY8HNFOHQO' where id=46; -update noar ti set v2='RUQ9TZZR1NSFJVTK4220PVZXY8HNFOHQO' where id=46; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='MFMAMIJELQQ8IC9LCYM7UQ4MFXKESN5KN' where id=46; -update noar ti set v3='MFMAMIJELQQ8IC9LCYM7UQ4MFXKESN5KN' where id=46; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='8BYHXNU3NL88TA0WKJFIR4CV28YSEQMW3' where id=47; -update noar ti set v0='8BYHXNU3NL88TA0WKJFIR4CV28YSEQMW3' where id=47; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='QM4BZK70S004B16MVPFPE4MIPYNXEFSX0' where id=47; -update noar ti set v1='QM4BZK70S004B16MVPFPE4MIPYNXEFSX0' where id=47; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='S65PJ06W6S1K6TM82Y2T9FJV161KFAGT5' where id=47; -update noar ti set v2='S65PJ06W6S1K6TM82Y2T9FJV161KFAGT5' where id=47; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='YY6S5Y9EJ9NGN33SCYG3CQOE7H21UU1F0' where id=47; -update noar ti set v3='YY6S5Y9EJ9NGN33SCYG3CQOE7H21UU1F0' where id=47; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='TUSZUPWUJULY4NXRJJ654XQZ71REPCN62' where id=48; -update noar ti set v0='TUSZUPWUJULY4NXRJJ654XQZ71REPCN62' where id=48; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='OZU1HYIF3Y0T71NCTDFSSDMLEE6LLQ5GV' where id=48; -update noar ti set v1='OZU1HYIF3Y0T71NCTDFSSDMLEE6LLQ5GV' where id=48; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='DDOI7O9NTATXXM2FOBFP7D28YQQ2FDWSN' where id=48; -update noar ti set v2='DDOI7O9NTATXXM2FOBFP7D28YQQ2FDWSN' where id=48; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='C44MUD0KVWB2QXDWPR0TFU2AV56XF67LF' where id=48; -update noar ti set v3='C44MUD0KVWB2QXDWPR0TFU2AV56XF67LF' where id=48; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='MN5ZI8YZBWJJS8M9QBX25IU9XCNJHOMKM' where id=49; -update noar ti set v0='MN5ZI8YZBWJJS8M9QBX25IU9XCNJHOMKM' where id=49; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='5V1ER3RIF1HHF1UQ6KKOSH9MK7JV1XDP6' where id=49; -update noar ti set v1='5V1ER3RIF1HHF1UQ6KKOSH9MK7JV1XDP6' where id=49; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='JPVX4KE0GDYVTMOXZ8YWXHHFTZJ5A4LQR' where id=49; -update noar ti set v2='JPVX4KE0GDYVTMOXZ8YWXHHFTZJ5A4LQR' where id=49; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='1XWYOG4TBTULZZ8FH73O0WPQEEFCJEZOV' where id=49; -update noar ti set v3='1XWYOG4TBTULZZ8FH73O0WPQEEFCJEZOV' where id=49; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='COMYTADDRCBA0W7ORYHNUS7GYSQ44CPHD' where id=50; -update noar ti set v0='COMYTADDRCBA0W7ORYHNUS7GYSQ44CPHD' where id=50; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='UQGLOZP913RT96TX8PO1T7TEY9SNZA04B' where id=50; -update noar ti set v1='UQGLOZP913RT96TX8PO1T7TEY9SNZA04B' where id=50; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='XWFLBAJN7VEEB18QCDXLLFIXBTHUHQYYU' where id=50; -update noar ti set v2='XWFLBAJN7VEEB18QCDXLLFIXBTHUHQYYU' where id=50; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='JCR68CBYY518S9CUV1H67WZNZEW4VTXIH' where id=50; -update noar ti set v3='JCR68CBYY518S9CUV1H67WZNZEW4VTXIH' where id=50; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='AHARHQO29A125TK4DYNP1XM5NOHY98FCG' where id=51; -update noar ti set v0='AHARHQO29A125TK4DYNP1XM5NOHY98FCG' where id=51; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='T7BRSPTBZS5O6B6A3CNZSV4G2AZG9V41N' where id=51; -update noar ti set v1='T7BRSPTBZS5O6B6A3CNZSV4G2AZG9V41N' where id=51; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='VFGQCLMOGIZ5UMPCNE2YE0SILQ57P06W8' where id=51; -update noar ti set v2='VFGQCLMOGIZ5UMPCNE2YE0SILQ57P06W8' where id=51; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='YCGUIHJKGKH5I0A2ORBVSR8ROU9WA5TD8' where id=51; -update noar ti set v3='YCGUIHJKGKH5I0A2ORBVSR8ROU9WA5TD8' where id=51; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='BW5Y1UJMS97MDH7AXMSMJLCMOQR873JYP' where id=52; -update noar ti set v0='BW5Y1UJMS97MDH7AXMSMJLCMOQR873JYP' where id=52; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='MSNP8YLE46R6VDXWDI6ULZ6IUSQGYCREI' where id=52; -update noar ti set v1='MSNP8YLE46R6VDXWDI6ULZ6IUSQGYCREI' where id=52; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='LY5M8T1B2DAXX75JBXSX0OMJC4R7OWRSH' where id=52; -update noar ti set v2='LY5M8T1B2DAXX75JBXSX0OMJC4R7OWRSH' where id=52; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='WROEU2PQTO9J7FL6Z05FSA0TUJK4WUYTW' where id=52; -update noar ti set v3='WROEU2PQTO9J7FL6Z05FSA0TUJK4WUYTW' where id=52; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='RVGWA2P5SZ0V3WGJA20Z2AGZ14WNNX3MF' where id=53; -update noar ti set v0='RVGWA2P5SZ0V3WGJA20Z2AGZ14WNNX3MF' where id=53; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='MTEA9XO92VAPSAQT0IEZB21MM0JCDUBLB' where id=53; -update noar ti set v1='MTEA9XO92VAPSAQT0IEZB21MM0JCDUBLB' where id=53; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='7GH7XOZXQ41PYCL1CS6JZSNZGWVI72LWC' where id=53; -update noar ti set v2='7GH7XOZXQ41PYCL1CS6JZSNZGWVI72LWC' where id=53; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='QUBRHSONW9IX0MKCQ4UZM700OLBG3830N' where id=53; -update noar ti set v3='QUBRHSONW9IX0MKCQ4UZM700OLBG3830N' where id=53; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='ZVTO6EZ70ZROU9PUPUBVCTYG2DCN3LXPS' where id=54; -update noar ti set v0='ZVTO6EZ70ZROU9PUPUBVCTYG2DCN3LXPS' where id=54; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='URWVN56QBJE74QSR8MT644SPT4GWQKB50' where id=54; -update noar ti set v1='URWVN56QBJE74QSR8MT644SPT4GWQKB50' where id=54; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='TX79HNUJLAEOW6YH681LZ3TZPVF3QVSY7' where id=54; -update noar ti set v2='TX79HNUJLAEOW6YH681LZ3TZPVF3QVSY7' where id=54; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='F32NHURS5QZ7UCMW1ZLLMEJN4L4XJNBO9' where id=54; -update noar ti set v3='F32NHURS5QZ7UCMW1ZLLMEJN4L4XJNBO9' where id=54; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='FRMSA94HIAGIMN95QNHYDUZIGCVEPDV39' where id=55; -update noar ti set v0='FRMSA94HIAGIMN95QNHYDUZIGCVEPDV39' where id=55; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='SKKXZPI5WKBJRWLZGRAI5H7GCPVS8WL2X' where id=55; -update noar ti set v1='SKKXZPI5WKBJRWLZGRAI5H7GCPVS8WL2X' where id=55; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='GYGJ40LYFGSDS3ZE9TKXDRLR4OOTXP4NE' where id=55; -update noar ti set v2='GYGJ40LYFGSDS3ZE9TKXDRLR4OOTXP4NE' where id=55; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='11RRKQMO6DX54L4V09SBSHVKNSWOUFO5Y' where id=55; -update noar ti set v3='11RRKQMO6DX54L4V09SBSHVKNSWOUFO5Y' where id=55; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='4ZV817AXJ3UNA0SO6S6P188CWN9GIW5CA' where id=56; -update noar ti set v0='4ZV817AXJ3UNA0SO6S6P188CWN9GIW5CA' where id=56; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='TNYVAYCVX998HMIA8NH2TQ47CSQK5IX5W' where id=56; -update noar ti set v1='TNYVAYCVX998HMIA8NH2TQ47CSQK5IX5W' where id=56; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='ESZDWV23P3PQ10WXB5EDPTBEHFDA1E5DX' where id=56; -update noar ti set v2='ESZDWV23P3PQ10WXB5EDPTBEHFDA1E5DX' where id=56; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='381KXP22XWMN41GJVGJNGHKZRELKOQNHZ' where id=56; -update noar ti set v3='381KXP22XWMN41GJVGJNGHKZRELKOQNHZ' where id=56; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='NPNJBVTCADPVI4M0R1VTONQS7WXS3EH81' where id=57; -update noar ti set v0='NPNJBVTCADPVI4M0R1VTONQS7WXS3EH81' where id=57; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='AQBDV4A6BD3A3YAPKSBL7CN9Z6IBNUW82' where id=57; -update noar ti set v1='AQBDV4A6BD3A3YAPKSBL7CN9Z6IBNUW82' where id=57; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='380IWX6KBPG4HLZCRGADNXBTIZG53ABFD' where id=57; -update noar ti set v2='380IWX6KBPG4HLZCRGADNXBTIZG53ABFD' where id=57; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='G18OJAL461G4Q5HSKFKPXTU09QE2RLMY3' where id=57; -update noar ti set v3='G18OJAL461G4Q5HSKFKPXTU09QE2RLMY3' where id=57; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='DDN00LUKD3OEHQV4WQJ2HWDFYSENJCD5X' where id=58; -update noar ti set v0='DDN00LUKD3OEHQV4WQJ2HWDFYSENJCD5X' where id=58; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='3SYGNRCXS4XLTKLEZ04HUN9Y5M4UVZ4HM' where id=58; -update noar ti set v1='3SYGNRCXS4XLTKLEZ04HUN9Y5M4UVZ4HM' where id=58; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='3ISJ1V03VYDPPSLUWGFO9N0FTT89EZ0PT' where id=58; -update noar ti set v2='3ISJ1V03VYDPPSLUWGFO9N0FTT89EZ0PT' where id=58; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='BJEU63TZFNMVR7RDEQ0JPLVPAUN0LJVBY' where id=58; -update noar ti set v3='BJEU63TZFNMVR7RDEQ0JPLVPAUN0LJVBY' where id=58; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='LXEOXDHBGQSWPG70WI0JZZSLV1QU4VHDW' where id=59; -update noar ti set v0='LXEOXDHBGQSWPG70WI0JZZSLV1QU4VHDW' where id=59; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='QDIHTVPP9GXKS21JSH5ZW3JJ2NWE01WO2' where id=59; -update noar ti set v1='QDIHTVPP9GXKS21JSH5ZW3JJ2NWE01WO2' where id=59; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='FN8IF6ASEXAHAGEYX4EQJ8R3S72IMXY2M' where id=59; -update noar ti set v2='FN8IF6ASEXAHAGEYX4EQJ8R3S72IMXY2M' where id=59; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='886L60NO5VI7TTR7V4WDLOOIWBJ68BR6S' where id=59; -update noar ti set v3='886L60NO5VI7TTR7V4WDLOOIWBJ68BR6S' where id=59; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='E70TRHIS59ZZ4NQ59SHATDXZLOTEWLQ3R' where id=60; -update noar ti set v0='E70TRHIS59ZZ4NQ59SHATDXZLOTEWLQ3R' where id=60; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='BTTY4QM632NISEGAC7TA99Q41SHCB1WUC' where id=60; -update noar ti set v1='BTTY4QM632NISEGAC7TA99Q41SHCB1WUC' where id=60; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='IR32QC45X79KNWGGM095VO1J65S5A0TIV' where id=60; -update noar ti set v2='IR32QC45X79KNWGGM095VO1J65S5A0TIV' where id=60; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='T9YGLSNG8J7NHECBA5ESYDLOX74UQFA1G' where id=60; -update noar ti set v3='T9YGLSNG8J7NHECBA5ESYDLOX74UQFA1G' where id=60; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='ZFS6WYHV514XOXZISNCZL1EZA1U739PL6' where id=61; -update noar ti set v0='ZFS6WYHV514XOXZISNCZL1EZA1U739PL6' where id=61; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='5OOH8FMYR0650HTE6M59IWDEBOY9URERS' where id=61; -update noar ti set v1='5OOH8FMYR0650HTE6M59IWDEBOY9URERS' where id=61; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='Q2189FFZX3MR7DGWYRFMGK577WJLXLXO2' where id=61; -update noar ti set v2='Q2189FFZX3MR7DGWYRFMGK577WJLXLXO2' where id=61; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='30MPB9H0JZ2H5FPOZKS8F4OE7FWL3HCO4' where id=61; -update noar ti set v3='30MPB9H0JZ2H5FPOZKS8F4OE7FWL3HCO4' where id=61; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='BMH1ZK3GYMCOFENW8J4BO0Q70EFTGI92F' where id=62; -update noar ti set v0='BMH1ZK3GYMCOFENW8J4BO0Q70EFTGI92F' where id=62; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='QJBBTGAPNAX4M8J4WRJ3CED3IDCJ1C7UV' where id=62; -update noar ti set v1='QJBBTGAPNAX4M8J4WRJ3CED3IDCJ1C7UV' where id=62; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='8I7NGFA0NIB64E1CH2GRBBN0SP8ZU8KBV' where id=62; -update noar ti set v2='8I7NGFA0NIB64E1CH2GRBBN0SP8ZU8KBV' where id=62; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='RV0JH7XZNJM5OGU57SOQCP6KDZU0TSWNA' where id=62; -update noar ti set v3='RV0JH7XZNJM5OGU57SOQCP6KDZU0TSWNA' where id=62; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='8Q9EP1AH3V6CIVJDAPC5RONU6A49Z4UBM' where id=63; -update noar ti set v0='8Q9EP1AH3V6CIVJDAPC5RONU6A49Z4UBM' where id=63; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='DH8XT3SKF1VEML9GBIFVN5KDP0FDYUADL' where id=63; -update noar ti set v1='DH8XT3SKF1VEML9GBIFVN5KDP0FDYUADL' where id=63; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='T2LG8QNMINA7C1JCTQ8LSBLJ42QUGJ9VD' where id=63; -update noar ti set v2='T2LG8QNMINA7C1JCTQ8LSBLJ42QUGJ9VD' where id=63; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='SWR9BMKD2EQPIMFW6PEXNZBUHURY0KTKU' where id=63; -update noar ti set v3='SWR9BMKD2EQPIMFW6PEXNZBUHURY0KTKU' where id=63; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='3HOGCDN135GHCOLTLM8D2GUPTCJSH0UUP' where id=64; -update noar ti set v0='3HOGCDN135GHCOLTLM8D2GUPTCJSH0UUP' where id=64; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='8KL96S41VAINAHN8M5JU5Q4A6XCF7M4BD' where id=64; -update noar ti set v1='8KL96S41VAINAHN8M5JU5Q4A6XCF7M4BD' where id=64; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='KSJQ1OUGKWBN4J9JVGDRAGYHI02F65VN5' where id=64; -update noar ti set v2='KSJQ1OUGKWBN4J9JVGDRAGYHI02F65VN5' where id=64; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='0FF9J862P6PKCZE6A3APEK2QU5LIXY356' where id=64; -update noar ti set v3='0FF9J862P6PKCZE6A3APEK2QU5LIXY356' where id=64; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='J7CRG2XMNEB02IKV1ARDDK70N6Y0UIJBX' where id=65; -update noar ti set v0='J7CRG2XMNEB02IKV1ARDDK70N6Y0UIJBX' where id=65; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='QKDDHXYBZI0R27QFH6CWEN4GSWZWFNGAP' where id=65; -update noar ti set v1='QKDDHXYBZI0R27QFH6CWEN4GSWZWFNGAP' where id=65; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='P4DCWQ4ETGV59I4TUCN7OJTFZ79Y2WNZF' where id=65; -update noar ti set v2='P4DCWQ4ETGV59I4TUCN7OJTFZ79Y2WNZF' where id=65; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='HHSNM8AL42VZ1QD26ITZB24JUPIK90H2H' where id=65; -update noar ti set v3='HHSNM8AL42VZ1QD26ITZB24JUPIK90H2H' where id=65; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='U7QDG74C0O9E7RJ2B0NI7ZNKSMMP319FR' where id=66; -update noar ti set v0='U7QDG74C0O9E7RJ2B0NI7ZNKSMMP319FR' where id=66; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='21LZ0O6I11PGZ5Q9PU54AEWWH2DQCB42M' where id=66; -update noar ti set v1='21LZ0O6I11PGZ5Q9PU54AEWWH2DQCB42M' where id=66; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='XWEQ9A7RK3D3U4A6OGSUYJEY9F8857ODF' where id=66; -update noar ti set v2='XWEQ9A7RK3D3U4A6OGSUYJEY9F8857ODF' where id=66; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='722HYSC3XSUVC4FCDDU62XV3NNLHWINQG' where id=66; -update noar ti set v3='722HYSC3XSUVC4FCDDU62XV3NNLHWINQG' where id=66; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='EF9KFZ0Q574GMQJ9EXK6AVFHVN71W3J84' where id=67; -update noar ti set v0='EF9KFZ0Q574GMQJ9EXK6AVFHVN71W3J84' where id=67; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='L2J0SBTJQ26RCEOBZHLXGZA821K9D5BZC' where id=67; -update noar ti set v1='L2J0SBTJQ26RCEOBZHLXGZA821K9D5BZC' where id=67; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='J2EN7X25VKFNFSP9WS4IOD16T9RTFN5SG' where id=67; -update noar ti set v2='J2EN7X25VKFNFSP9WS4IOD16T9RTFN5SG' where id=67; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='D4II7SOYIQICLXPQMOPXI6N8V3YW5T11N' where id=67; -update noar ti set v3='D4II7SOYIQICLXPQMOPXI6N8V3YW5T11N' where id=67; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='7B5Y00JPNG3CUZ0URYRKYSB2QMOO7D2RE' where id=68; -update noar ti set v0='7B5Y00JPNG3CUZ0URYRKYSB2QMOO7D2RE' where id=68; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='Y55H3LWRWQ40KCA009OLN3XIYTBK6DOYJ' where id=68; -update noar ti set v1='Y55H3LWRWQ40KCA009OLN3XIYTBK6DOYJ' where id=68; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='05IQB948N1ZWWVOE4H9S7CPVN1HIXBAJI' where id=68; -update noar ti set v2='05IQB948N1ZWWVOE4H9S7CPVN1HIXBAJI' where id=68; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='P4QTPZ52FUM1HZVEQXPXHTTPB0AE77N4O' where id=68; -update noar ti set v3='P4QTPZ52FUM1HZVEQXPXHTTPB0AE77N4O' where id=68; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='YGN8KP34GE2OJKQA313IO0VD488FD4BSW' where id=69; -update noar ti set v0='YGN8KP34GE2OJKQA313IO0VD488FD4BSW' where id=69; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='HPQR5L105B7PMCXEXXX1O7YIFFNYVU6N3' where id=69; -update noar ti set v1='HPQR5L105B7PMCXEXXX1O7YIFFNYVU6N3' where id=69; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='LPIUASBAJI6MDE193R8YEHAZ910G2JZAQ' where id=69; -update noar ti set v2='LPIUASBAJI6MDE193R8YEHAZ910G2JZAQ' where id=69; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='DMR9KFWKZYCLZT0SXIFN898SAEI4JVVZN' where id=69; -update noar ti set v3='DMR9KFWKZYCLZT0SXIFN898SAEI4JVVZN' where id=69; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='E2QKXKRXDXU5CISL7RRQKZH65H1ND5T8L' where id=70; -update noar ti set v0='E2QKXKRXDXU5CISL7RRQKZH65H1ND5T8L' where id=70; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='KY8U273TV3S175XX41MBYIYYZEZ07HRHU' where id=70; -update noar ti set v1='KY8U273TV3S175XX41MBYIYYZEZ07HRHU' where id=70; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='E1SY1I1YHONFEXH8DQPRBXYKKM5EFEPXB' where id=70; -update noar ti set v2='E1SY1I1YHONFEXH8DQPRBXYKKM5EFEPXB' where id=70; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='V9Q3MY5BGNEGZDSBOH9V1CEFP8L5UQRYC' where id=70; -update noar ti set v3='V9Q3MY5BGNEGZDSBOH9V1CEFP8L5UQRYC' where id=70; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='HD6ZDFZ1Y05NXJ8GAC5Z7X52IXCSO57CE' where id=71; -update noar ti set v0='HD6ZDFZ1Y05NXJ8GAC5Z7X52IXCSO57CE' where id=71; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='OIYYCVQ8BW32K5HNJS8O3LJPGHZIEIWIW' where id=71; -update noar ti set v1='OIYYCVQ8BW32K5HNJS8O3LJPGHZIEIWIW' where id=71; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='6AA9R8FH4HPJCAYMG5FEGGIH8SLNYONS7' where id=71; -update noar ti set v2='6AA9R8FH4HPJCAYMG5FEGGIH8SLNYONS7' where id=71; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='8F5HTANJ45EYMRR5BUVQZO6XC3UQ0LQU7' where id=71; -update noar ti set v3='8F5HTANJ45EYMRR5BUVQZO6XC3UQ0LQU7' where id=71; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='HXDP5XI1YGXXD30DTPCG8GXH8FA3146U7' where id=72; -update noar ti set v0='HXDP5XI1YGXXD30DTPCG8GXH8FA3146U7' where id=72; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='00AGJNLXQVE9BHL1KP6KVKNLLMZXVD3L2' where id=72; -update noar ti set v1='00AGJNLXQVE9BHL1KP6KVKNLLMZXVD3L2' where id=72; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='HJWX6SF2IS19Z8R0IR7LN9X0INU5WCKPM' where id=72; -update noar ti set v2='HJWX6SF2IS19Z8R0IR7LN9X0INU5WCKPM' where id=72; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='YOJKU4F0DMW3VXUSCB0FYIZL9A741MOAL' where id=72; -update noar ti set v3='YOJKU4F0DMW3VXUSCB0FYIZL9A741MOAL' where id=72; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='54YDDTUJ7F338ADD6MG99GJDG3WP1BIHM' where id=73; -update noar ti set v0='54YDDTUJ7F338ADD6MG99GJDG3WP1BIHM' where id=73; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='OOVBMH2U3H0XZIGOUOFE3TW0LM6C2024Q' where id=73; -update noar ti set v1='OOVBMH2U3H0XZIGOUOFE3TW0LM6C2024Q' where id=73; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='ZGNXVYTHYFFUTJLLVYM6QSWBWGAF0B12B' where id=73; -update noar ti set v2='ZGNXVYTHYFFUTJLLVYM6QSWBWGAF0B12B' where id=73; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='Q7RLJLCOB7R3QWNESTCWQT88TNCSLRWZ6' where id=73; -update noar ti set v3='Q7RLJLCOB7R3QWNESTCWQT88TNCSLRWZ6' where id=73; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='SMCRS1V67Y08U5BX991NO082GWT2BPK80' where id=74; -update noar ti set v0='SMCRS1V67Y08U5BX991NO082GWT2BPK80' where id=74; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='0A28CB6Z3HVUFD1K8XW8HBIOMGZUVMO6S' where id=74; -update noar ti set v1='0A28CB6Z3HVUFD1K8XW8HBIOMGZUVMO6S' where id=74; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='75V771SGC1D9GC1AHHH6X7TA43YZDTMR6' where id=74; -update noar ti set v2='75V771SGC1D9GC1AHHH6X7TA43YZDTMR6' where id=74; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='4O3YYBGFM3ZB4ULJZRC6KR5CGJX5EXJHK' where id=74; -update noar ti set v3='4O3YYBGFM3ZB4ULJZRC6KR5CGJX5EXJHK' where id=74; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='Q2S43IWT3GDUCQI81IJTK7BJJ5L3ECEPV' where id=75; -update noar ti set v0='Q2S43IWT3GDUCQI81IJTK7BJJ5L3ECEPV' where id=75; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='3ZQ9I06NEAUY4AN2AB2XWM2GJXF7VGJWK' where id=75; -update noar ti set v1='3ZQ9I06NEAUY4AN2AB2XWM2GJXF7VGJWK' where id=75; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='A22SZG7S4QCRAB8R7LXT6TRNVN616SV44' where id=75; -update noar ti set v2='A22SZG7S4QCRAB8R7LXT6TRNVN616SV44' where id=75; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='QFFJ24MRB24MSJIW28YHIFFUQD1BKKXXC' where id=75; -update noar ti set v3='QFFJ24MRB24MSJIW28YHIFFUQD1BKKXXC' where id=75; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='Q5J8N0THHXCA8V1WK7CMJI8YYO244FFRP' where id=76; -update noar ti set v0='Q5J8N0THHXCA8V1WK7CMJI8YYO244FFRP' where id=76; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='W5P11AR03PUMZIV514BF68Q14HJZP5HG5' where id=76; -update noar ti set v1='W5P11AR03PUMZIV514BF68Q14HJZP5HG5' where id=76; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='54555ZFZQ9WW3ZB5EDJXA4M4XX3UFWF08' where id=76; -update noar ti set v2='54555ZFZQ9WW3ZB5EDJXA4M4XX3UFWF08' where id=76; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='QOPJBR9SLQUJY7QE9RWTSVTN9VPZUNSNS' where id=76; -update noar ti set v3='QOPJBR9SLQUJY7QE9RWTSVTN9VPZUNSNS' where id=76; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='SW36L31FQDUDKDZCRDG8AR29X3NAHY8T8' where id=77; -update noar ti set v0='SW36L31FQDUDKDZCRDG8AR29X3NAHY8T8' where id=77; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='J97LQNGAEBRMU74F5LBU71BNE7J0QM8P9' where id=77; -update noar ti set v1='J97LQNGAEBRMU74F5LBU71BNE7J0QM8P9' where id=77; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='2GZRW07GGP1P5MZMED64YME3OZ42CUPT2' where id=77; -update noar ti set v2='2GZRW07GGP1P5MZMED64YME3OZ42CUPT2' where id=77; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='SRICPEFRGMSKHEYK6PXT8Q6FO1BU24YAV' where id=77; -update noar ti set v3='SRICPEFRGMSKHEYK6PXT8Q6FO1BU24YAV' where id=77; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='XE2PTQ1BTPRVK0RV7VHRLBGDBSL4YY56Q' where id=78; -update noar ti set v0='XE2PTQ1BTPRVK0RV7VHRLBGDBSL4YY56Q' where id=78; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='A16OWCC43LW3H253ZJBFB9YUORY0ROGTT' where id=78; -update noar ti set v1='A16OWCC43LW3H253ZJBFB9YUORY0ROGTT' where id=78; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='N9ZFY5V8WW9MENCDRRADY61NTWLZR82RP' where id=78; -update noar ti set v2='N9ZFY5V8WW9MENCDRRADY61NTWLZR82RP' where id=78; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='7FR30M3ADDZ49Q2RR13L21B62HVTK4TN5' where id=78; -update noar ti set v3='7FR30M3ADDZ49Q2RR13L21B62HVTK4TN5' where id=78; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='X9PUMY0ZG1T3DSYS9L7459C7XFDWKNBRZ' where id=79; -update noar ti set v0='X9PUMY0ZG1T3DSYS9L7459C7XFDWKNBRZ' where id=79; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='MLN6VEL96SN2143ZBF35PB0K8X6278TOD' where id=79; -update noar ti set v1='MLN6VEL96SN2143ZBF35PB0K8X6278TOD' where id=79; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='1362321A6UEZ7YSPBNKR9V08ZH7548OOZ' where id=79; -update noar ti set v2='1362321A6UEZ7YSPBNKR9V08ZH7548OOZ' where id=79; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='N2V73YL4U821VGWBKDAZUI4WHGDDQO2FH' where id=79; -update noar ti set v3='N2V73YL4U821VGWBKDAZUI4WHGDDQO2FH' where id=79; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='4B8E20FNR5OWZTNI7SYN8JYLR50FW1HB6' where id=80; -update noar ti set v0='4B8E20FNR5OWZTNI7SYN8JYLR50FW1HB6' where id=80; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='ZYAP4KHYNI332X2W9MDT8M2H3PXBEFPMS' where id=80; -update noar ti set v1='ZYAP4KHYNI332X2W9MDT8M2H3PXBEFPMS' where id=80; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='IA45OKMD5P0SUFGK7OG6RDVFNFDLTAXQ9' where id=80; -update noar ti set v2='IA45OKMD5P0SUFGK7OG6RDVFNFDLTAXQ9' where id=80; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='WGRWSFGXRU3UJYDOSNT0HH6WYC9E2UQML' where id=80; -update noar ti set v3='WGRWSFGXRU3UJYDOSNT0HH6WYC9E2UQML' where id=80; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='K1NZYP5A3TVE59JLSULT9GKGES0WJMA7E' where id=81; -update noar ti set v0='K1NZYP5A3TVE59JLSULT9GKGES0WJMA7E' where id=81; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='1OXP30CIIQJOCTK72LT1OK36ZWBIN6FJK' where id=81; -update noar ti set v1='1OXP30CIIQJOCTK72LT1OK36ZWBIN6FJK' where id=81; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='M85XNBL432NZFLISC33CO3Z0KNES5H4JM' where id=81; -update noar ti set v2='M85XNBL432NZFLISC33CO3Z0KNES5H4JM' where id=81; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='2PG2GI9JWLTP5QBXLB2ZYDYDTBHQ3IRSJ' where id=81; -update noar ti set v3='2PG2GI9JWLTP5QBXLB2ZYDYDTBHQ3IRSJ' where id=81; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='A9I2GCJPJK4CNADPUVSXS2JEVK84H67XR' where id=82; -update noar ti set v0='A9I2GCJPJK4CNADPUVSXS2JEVK84H67XR' where id=82; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='2GCE1SV1IGRN98ZASFZTNCYQJHOM1L1UG' where id=82; -update noar ti set v1='2GCE1SV1IGRN98ZASFZTNCYQJHOM1L1UG' where id=82; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='HLU4Y21UHEWD97ODU0027LRKVMCJ1GGTS' where id=82; -update noar ti set v2='HLU4Y21UHEWD97ODU0027LRKVMCJ1GGTS' where id=82; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='EJPXNIE06RG2PS7KOVY5P4NJVC3PUU3VV' where id=82; -update noar ti set v3='EJPXNIE06RG2PS7KOVY5P4NJVC3PUU3VV' where id=82; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='D9S04KER4AI4OFX5Z1456GWVFZV6UD18M' where id=83; -update noar ti set v0='D9S04KER4AI4OFX5Z1456GWVFZV6UD18M' where id=83; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='N2NJAIYIZYZD8J6TGLXP24POVW91VEP5R' where id=83; -update noar ti set v1='N2NJAIYIZYZD8J6TGLXP24POVW91VEP5R' where id=83; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='ED6H5964IFYRRP8HMQ3N7ICN4OK5CAA71' where id=83; -update noar ti set v2='ED6H5964IFYRRP8HMQ3N7ICN4OK5CAA71' where id=83; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='W5NQR98L5J8YNFQCBLT2J6JOQM3TD5L2Y' where id=83; -update noar ti set v3='W5NQR98L5J8YNFQCBLT2J6JOQM3TD5L2Y' where id=83; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='IPL7DK90RMM6EEORED5VONN866QQXDERX' where id=84; -update noar ti set v0='IPL7DK90RMM6EEORED5VONN866QQXDERX' where id=84; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='A3UV5DFCCSMF9A0EWFW4XAEJSDYGKYZ8P' where id=84; -update noar ti set v1='A3UV5DFCCSMF9A0EWFW4XAEJSDYGKYZ8P' where id=84; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='9OLYM17E56DAHL80IWA46RLBA85JHRQ3O' where id=84; -update noar ti set v2='9OLYM17E56DAHL80IWA46RLBA85JHRQ3O' where id=84; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='KBML69OJP9LX4KE0JUNKIQIS8MNZP1DVQ' where id=84; -update noar ti set v3='KBML69OJP9LX4KE0JUNKIQIS8MNZP1DVQ' where id=84; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='7VZMOCE0YEUK32LJXQW51QOU0GMMDI1O8' where id=85; -update noar ti set v0='7VZMOCE0YEUK32LJXQW51QOU0GMMDI1O8' where id=85; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='7ZXQZM41BMMMSZYYP0L41SDSTIXOWWO3L' where id=85; -update noar ti set v1='7ZXQZM41BMMMSZYYP0L41SDSTIXOWWO3L' where id=85; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='0FVQZC3OM9JH0GULU3J9FP7XJ6LSEI6OZ' where id=85; -update noar ti set v2='0FVQZC3OM9JH0GULU3J9FP7XJ6LSEI6OZ' where id=85; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='4CN8G61XMGE56S1ETXPUQG2T6SAYMFQRH' where id=85; -update noar ti set v3='4CN8G61XMGE56S1ETXPUQG2T6SAYMFQRH' where id=85; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='EQNL9BPQEZFIBPK29BZA1VZB7H26UVDNQ' where id=86; -update noar ti set v0='EQNL9BPQEZFIBPK29BZA1VZB7H26UVDNQ' where id=86; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='9N9Y2Q84X94PXY4IHNIGMNCKLHL3J7S5N' where id=86; -update noar ti set v1='9N9Y2Q84X94PXY4IHNIGMNCKLHL3J7S5N' where id=86; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='KX0OQ10I1YL4TK9ZRDO245O0VX4NEJBV6' where id=86; -update noar ti set v2='KX0OQ10I1YL4TK9ZRDO245O0VX4NEJBV6' where id=86; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='QFHV89JZU5OS22X6TVYVISCROSZMOO1RH' where id=86; -update noar ti set v3='QFHV89JZU5OS22X6TVYVISCROSZMOO1RH' where id=86; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='O39YEURV7XZ5W35SD4ZEAQQLU0GIJU985' where id=87; -update noar ti set v0='O39YEURV7XZ5W35SD4ZEAQQLU0GIJU985' where id=87; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='HKWNBZ57F0ZUX8AR8N5X1ZFB59A0VK6IN' where id=87; -update noar ti set v1='HKWNBZ57F0ZUX8AR8N5X1ZFB59A0VK6IN' where id=87; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='D0UQJJ224G2X3AMUEQA5Q720PTWGABVCH' where id=87; -update noar ti set v2='D0UQJJ224G2X3AMUEQA5Q720PTWGABVCH' where id=87; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='WZ7BHPGL52LBR8FBVG3KG3MCZRZAVY47Z' where id=87; -update noar ti set v3='WZ7BHPGL52LBR8FBVG3KG3MCZRZAVY47Z' where id=87; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='G1KJPPG2CD18V57G1E19370KMH016QTK7' where id=88; -update noar ti set v0='G1KJPPG2CD18V57G1E19370KMH016QTK7' where id=88; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='3CCZKEVD0FQP33KP4CIN7778CSJ5TIX8J' where id=88; -update noar ti set v1='3CCZKEVD0FQP33KP4CIN7778CSJ5TIX8J' where id=88; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='VMN4DAEBQHWWA68APK3MSOS0NRP7PG0RJ' where id=88; -update noar ti set v2='VMN4DAEBQHWWA68APK3MSOS0NRP7PG0RJ' where id=88; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='MMQGLE2UJ8PL2KS4RDJ2PZWNGCCIINH7K' where id=88; -update noar ti set v3='MMQGLE2UJ8PL2KS4RDJ2PZWNGCCIINH7K' where id=88; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='9BTG0XOKV8GYMMR7LOR3V88R8412JKM48' where id=89; -update noar ti set v0='9BTG0XOKV8GYMMR7LOR3V88R8412JKM48' where id=89; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='7E0XYZPQD70XZ4HFGSIWJQHSF2FJS0H7Z' where id=89; -update noar ti set v1='7E0XYZPQD70XZ4HFGSIWJQHSF2FJS0H7Z' where id=89; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='MLKPLDJW6Q859KAFRAGOHG4V85B4ONRDX' where id=89; -update noar ti set v2='MLKPLDJW6Q859KAFRAGOHG4V85B4ONRDX' where id=89; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='C9795CRAF6AR32TOYYD6G1W0WOX6WB8U2' where id=89; -update noar ti set v3='C9795CRAF6AR32TOYYD6G1W0WOX6WB8U2' where id=89; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='6QAOPPHCOSHYHKQ0I2K1S4VJHZWH3F64R' where id=90; -update noar ti set v0='6QAOPPHCOSHYHKQ0I2K1S4VJHZWH3F64R' where id=90; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='R7BOE7RFKE8C9AVQQCE2CANSSIKFB4ETY' where id=90; -update noar ti set v1='R7BOE7RFKE8C9AVQQCE2CANSSIKFB4ETY' where id=90; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='DCEQVQKPVXQZZ6GWG4O65WKPQF8R1ZFSP' where id=90; -update noar ti set v2='DCEQVQKPVXQZZ6GWG4O65WKPQF8R1ZFSP' where id=90; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='ZOA3918RTFYQ6Q5MXWG9TM7L8G5U8WGDR' where id=90; -update noar ti set v3='ZOA3918RTFYQ6Q5MXWG9TM7L8G5U8WGDR' where id=90; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='5ZLU7HZ3QYRIGHOC8ETSRLX79QWY73YBY' where id=91; -update noar ti set v0='5ZLU7HZ3QYRIGHOC8ETSRLX79QWY73YBY' where id=91; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='GDDODFCDGO9A42KCC2ZOMCL70LM8U3V3H' where id=91; -update noar ti set v1='GDDODFCDGO9A42KCC2ZOMCL70LM8U3V3H' where id=91; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='0M2CSN6Z1X2S5AL0HF06MUJU3D02BTXN6' where id=91; -update noar ti set v2='0M2CSN6Z1X2S5AL0HF06MUJU3D02BTXN6' where id=91; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='K8WOXGDLKELE9FJ34Z6PVEKG468AYA3ZY' where id=91; -update noar ti set v3='K8WOXGDLKELE9FJ34Z6PVEKG468AYA3ZY' where id=91; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='NZSNG6PV75XWF0KRZ88RWCDIP224JGEVG' where id=92; -update noar ti set v0='NZSNG6PV75XWF0KRZ88RWCDIP224JGEVG' where id=92; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='VMIQDHJL7FK8FPT37IXKK839RWDFX1F0D' where id=92; -update noar ti set v1='VMIQDHJL7FK8FPT37IXKK839RWDFX1F0D' where id=92; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='320BLQ39CLOTR58HKZ52VJK18361767YP' where id=92; -update noar ti set v2='320BLQ39CLOTR58HKZ52VJK18361767YP' where id=92; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='6ZVOR2PKPL4AZCRH08UQP2MXMNVF2HKLA' where id=92; -update noar ti set v3='6ZVOR2PKPL4AZCRH08UQP2MXMNVF2HKLA' where id=92; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='PFWINPQSV8MS3JV3MSJXX2GGEGR2QSSUA' where id=93; -update noar ti set v0='PFWINPQSV8MS3JV3MSJXX2GGEGR2QSSUA' where id=93; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='K2DOTS8WQ5XTW0V4AQ7QQY44XMQUOBUGM' where id=93; -update noar ti set v1='K2DOTS8WQ5XTW0V4AQ7QQY44XMQUOBUGM' where id=93; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='WA5N6D873UWEWYAQ06SD6CEC109CGCWDV' where id=93; -update noar ti set v2='WA5N6D873UWEWYAQ06SD6CEC109CGCWDV' where id=93; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='FWM44LF6GNVPLOK87MMPJWVBSDZ22O630' where id=93; -update noar ti set v3='FWM44LF6GNVPLOK87MMPJWVBSDZ22O630' where id=93; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='IEUK6ZHBBMHDNFGZF4601PP4JWFMABAMK' where id=94; -update noar ti set v0='IEUK6ZHBBMHDNFGZF4601PP4JWFMABAMK' where id=94; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='10GZ9NF0ATDPHJM3UQOFTZPM37UC0DG5I' where id=94; -update noar ti set v1='10GZ9NF0ATDPHJM3UQOFTZPM37UC0DG5I' where id=94; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='R3ISPSPG3WJMOEJN18GEY2494RGVHBKR9' where id=94; -update noar ti set v2='R3ISPSPG3WJMOEJN18GEY2494RGVHBKR9' where id=94; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='X76DHCA5UDZ8QDL688ZEP4RCXCPT1Q6SN' where id=94; -update noar ti set v3='X76DHCA5UDZ8QDL688ZEP4RCXCPT1Q6SN' where id=94; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='IA3P8C6LCCCP3A28GKSAEME9C9EGG38U6' where id=95; -update noar ti set v0='IA3P8C6LCCCP3A28GKSAEME9C9EGG38U6' where id=95; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='C2SJHW0O5EIEWA7Q323ARS83A9TSUDM57' where id=95; -update noar ti set v1='C2SJHW0O5EIEWA7Q323ARS83A9TSUDM57' where id=95; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='D00MQ262E7PX2Z25Y9DMB5KDQSFQGE9NJ' where id=95; -update noar ti set v2='D00MQ262E7PX2Z25Y9DMB5KDQSFQGE9NJ' where id=95; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='09X077XI0W08QLEJ5QOL7DTSJJJ6WIEUH' where id=95; -update noar ti set v3='09X077XI0W08QLEJ5QOL7DTSJJJ6WIEUH' where id=95; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='NBKOZI0RNJVA3RQHAKBTS46CDV6MBY6MV' where id=96; -update noar ti set v0='NBKOZI0RNJVA3RQHAKBTS46CDV6MBY6MV' where id=96; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='L5B45BRUJ5BA5EKJL4RHTNO97J9O5J8CL' where id=96; -update noar ti set v1='L5B45BRUJ5BA5EKJL4RHTNO97J9O5J8CL' where id=96; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='HGPWFNBW76FTY2RJXUAJUE9A1XVO9SKKH' where id=96; -update noar ti set v2='HGPWFNBW76FTY2RJXUAJUE9A1XVO9SKKH' where id=96; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='U5BFEDZFJDN118WAA0VQ45CRUDTIMUCAD' where id=96; -update noar ti set v3='U5BFEDZFJDN118WAA0VQ45CRUDTIMUCAD' where id=96; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='HNBJW9XAI6I36QJOT92JNJT8MAO11CY6O' where id=97; -update noar ti set v0='HNBJW9XAI6I36QJOT92JNJT8MAO11CY6O' where id=97; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='YN3K2VMFRV1H6TQYH1SDRN2Q7K3CPQ6U2' where id=97; -update noar ti set v1='YN3K2VMFRV1H6TQYH1SDRN2Q7K3CPQ6U2' where id=97; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='402DS8LJ1QUGA4EEBFP32NBLKCY2HKOYB' where id=97; -update noar ti set v2='402DS8LJ1QUGA4EEBFP32NBLKCY2HKOYB' where id=97; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='L6JSFBN09KQTCE0TMQ6E5TG5M9R49HG33' where id=97; -update noar ti set v3='L6JSFBN09KQTCE0TMQ6E5TG5M9R49HG33' where id=97; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='SO9KHDO5UDDAD1RJ9YYPXZ3I5ZKU9CIE1' where id=98; -update noar ti set v0='SO9KHDO5UDDAD1RJ9YYPXZ3I5ZKU9CIE1' where id=98; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='KGBR4EUI238ATEPUSJPWHF4ZW9QYBT5B1' where id=98; -update noar ti set v1='KGBR4EUI238ATEPUSJPWHF4ZW9QYBT5B1' where id=98; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='44EJGJL6ST4QELA4OTB8QV06QWJ9MKKD7' where id=98; -update noar ti set v2='44EJGJL6ST4QELA4OTB8QV06QWJ9MKKD7' where id=98; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='70U3VG9612W1R9SX50F94HM5FYA8MG8Q9' where id=98; -update noar ti set v3='70U3VG9612W1R9SX50F94HM5FYA8MG8Q9' where id=98; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='TVTYJ99VH24RJ5PH8DSMX0JNQEW7IU9L0' where id=99; -update noar ti set v0='TVTYJ99VH24RJ5PH8DSMX0JNQEW7IU9L0' where id=99; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='4EWX41LPBMP7P0LW5XW8AOXC3YC5IB4H5' where id=99; -update noar ti set v1='4EWX41LPBMP7P0LW5XW8AOXC3YC5IB4H5' where id=99; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='EFTTO0NNEDA78AJLFIZVJUKY3BAE9NNLR' where id=99; -update noar ti set v2='EFTTO0NNEDA78AJLFIZVJUKY3BAE9NNLR' where id=99; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='0FXW7H2EYTQMK68YNRS116CNUGKL2NYPW' where id=99; -update noar ti set v3='0FXW7H2EYTQMK68YNRS116CNUGKL2NYPW' where id=99; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -f0 int not null, -v0 varbinary(32) not null, -v1 varbinary(32) not null, -v2 varbinary(32) not null, -v3 varbinary(32) not null, -b0 text not null -) engine=tokudb; -insert into tt values (1,2,'a','b','c','d','e'); -insert into tt values (2,3,'','','','',''); -insert into tt values (3,4,'','','','',''); -insert into tt values (4,5,'','','','',''); -insert into tt values (5,6,'','','','',''); -insert into tt values (6,7,'','','','',''); -insert into tt values (7,8,'','','','',''); -insert into tt values (8,9,'','','','',''); -insert into tt values (9,10,'','','','',''); -insert into tt values (10,11,'','','','',''); -insert into tt values (11,12,'','','','',''); -insert into tt values (12,13,'','','','',''); -insert into tt values (13,14,'','','','',''); -insert into tt values (14,15,'','','','',''); -insert into tt values (15,16,'','','','',''); -insert into tt values (16,17,'','','','',''); -insert into tt values (17,18,'','','','',''); -insert into tt values (18,19,'','','','',''); -insert into tt values (19,20,'','','','',''); -insert into tt values (20,21,'','','','',''); -insert into tt values (21,22,'','','','',''); -insert into tt values (22,23,'','','','',''); -insert into tt values (23,24,'','','','',''); -insert into tt values (24,25,'','','','',''); -insert into tt values (25,26,'','','','',''); -insert into tt values (26,27,'','','','',''); -insert into tt values (27,28,'','','','',''); -insert into tt values (28,29,'','','','',''); -insert into tt values (29,30,'','','','',''); -insert into tt values (30,31,'','','','',''); -insert into tt values (31,32,'','','','',''); -insert into tt values (32,33,'','','','',''); -insert into tt values (33,34,'','','','',''); -insert into tt values (34,35,'','','','',''); -insert into tt values (35,36,'','','','',''); -insert into tt values (36,37,'','','','',''); -insert into tt values (37,38,'','','','',''); -insert into tt values (38,39,'','','','',''); -insert into tt values (39,40,'','','','',''); -insert into tt values (40,41,'','','','',''); -insert into tt values (41,42,'','','','',''); -insert into tt values (42,43,'','','','',''); -insert into tt values (43,44,'','','','',''); -insert into tt values (44,45,'','','','',''); -insert into tt values (45,46,'','','','',''); -insert into tt values (46,47,'','','','',''); -insert into tt values (47,48,'','','','',''); -insert into tt values (48,49,'','','','',''); -insert into tt values (49,50,'','','','',''); -insert into tt values (50,51,'','','','',''); -insert into tt values (51,52,'','','','',''); -insert into tt values (52,53,'','','','',''); -insert into tt values (53,54,'','','','',''); -insert into tt values (54,55,'','','','',''); -insert into tt values (55,56,'','','','',''); -insert into tt values (56,57,'','','','',''); -insert into tt values (57,58,'','','','',''); -insert into tt values (58,59,'','','','',''); -insert into tt values (59,60,'','','','',''); -insert into tt values (60,61,'','','','',''); -insert into tt values (61,62,'','','','',''); -insert into tt values (62,63,'','','','',''); -insert into tt values (63,64,'','','','',''); -insert into tt values (64,65,'','','','',''); -insert into tt values (65,66,'','','','',''); -insert into tt values (66,67,'','','','',''); -insert into tt values (67,68,'','','','',''); -insert into tt values (68,69,'','','','',''); -insert into tt values (69,70,'','','','',''); -insert into tt values (70,71,'','','','',''); -insert into tt values (71,72,'','','','',''); -insert into tt values (72,73,'','','','',''); -insert into tt values (73,74,'','','','',''); -insert into tt values (74,75,'','','','',''); -insert into tt values (75,76,'','','','',''); -insert into tt values (76,77,'','','','',''); -insert into tt values (77,78,'','','','',''); -insert into tt values (78,79,'','','','',''); -insert into tt values (79,80,'','','','',''); -insert into tt values (80,81,'','','','',''); -insert into tt values (81,82,'','','','',''); -insert into tt values (82,83,'','','','',''); -insert into tt values (83,84,'','','','',''); -insert into tt values (84,85,'','','','',''); -insert into tt values (85,86,'','','','',''); -insert into tt values (86,87,'','','','',''); -insert into tt values (87,88,'','','','',''); -insert into tt values (88,89,'','','','',''); -insert into tt values (89,90,'','','','',''); -insert into tt values (90,91,'','','','',''); -insert into tt values (91,92,'','','','',''); -insert into tt values (92,93,'','','','',''); -insert into tt values (93,94,'','','','',''); -insert into tt values (94,95,'','','','',''); -insert into tt values (95,96,'','','','',''); -insert into tt values (96,97,'','','','',''); -insert into tt values (97,98,'','','','',''); -insert into tt values (98,99,'','','','',''); -insert into tt values (99,100,'','','','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='null this 0' where id=0; -update noar ti set v0='null this 0' where id=0; -update noar tt set v1='null is 1' where id=0; -update noar ti set v1='null is 1' where id=0; -update noar tt set v2='null a 2' where id=0; -update noar ti set v2='null a 2' where id=0; -update noar tt set v3='null test 3' where id=0; -update noar ti set v3='null test 3' where id=0; -update noar tt set v0='this 0' where id=1; -update noar ti set v0='this 0' where id=1; -update noar tt set v1='is 1' where id=1; -update noar ti set v1='is 1' where id=1; -update noar tt set v2='another 2' where id=1; -update noar ti set v2='another 2' where id=1; -update noar tt set v3='test 3' where id=1; -update noar ti set v3='test 3' where id=1; -update noar tt set v0='O9NHDDJMDKIUNPRVJYN6VQX87KBEDQKVI' where id=2; -update noar ti set v0='O9NHDDJMDKIUNPRVJYN6VQX87KBEDQKVI' where id=2; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='Q1QBW21GRLRYIVO9LD2K65Z15SIQBN14Z' where id=2; -update noar ti set v1='Q1QBW21GRLRYIVO9LD2K65Z15SIQBN14Z' where id=2; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='R7TZZ11QHWBAVG1O70GWHZ3YKZIRYDECE' where id=2; -update noar ti set v2='R7TZZ11QHWBAVG1O70GWHZ3YKZIRYDECE' where id=2; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='JKDR781NW03TKLDOHXGXU3FYZ1O7IDT5W' where id=2; -update noar ti set v3='JKDR781NW03TKLDOHXGXU3FYZ1O7IDT5W' where id=2; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='MLKEORAFHMQL32I8PMO90AUI66RJUC9DB' where id=3; -update noar ti set v0='MLKEORAFHMQL32I8PMO90AUI66RJUC9DB' where id=3; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='8E3WWOH8Y3PTZIIRULB7NYXS4JM21CZ2P' where id=3; -update noar ti set v1='8E3WWOH8Y3PTZIIRULB7NYXS4JM21CZ2P' where id=3; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='CX82OQAA14218YUU48UM3M852HHFPTI46' where id=3; -update noar ti set v2='CX82OQAA14218YUU48UM3M852HHFPTI46' where id=3; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='RQCJ1PK1U12TPRZGJ0F4RJ2JN06WVEO2G' where id=3; -update noar ti set v3='RQCJ1PK1U12TPRZGJ0F4RJ2JN06WVEO2G' where id=3; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='5WCN7V58LEQUG4BT7OXSGEC7L9U313SOG' where id=4; -update noar ti set v0='5WCN7V58LEQUG4BT7OXSGEC7L9U313SOG' where id=4; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='NQW2XNBHBTU6PTG7TX6I5ECTUUKANN0HE' where id=4; -update noar ti set v1='NQW2XNBHBTU6PTG7TX6I5ECTUUKANN0HE' where id=4; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='N1JY8MY9LMW97QOWN1H21O2U8ND0BEDAA' where id=4; -update noar ti set v2='N1JY8MY9LMW97QOWN1H21O2U8ND0BEDAA' where id=4; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='3OLVQ8ZMX26KVFGGHW92FADNTZNTLH1XD' where id=4; -update noar ti set v3='3OLVQ8ZMX26KVFGGHW92FADNTZNTLH1XD' where id=4; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='6SV21C45VCMQIWY5ZYY1B6247NKHRZILQ' where id=5; -update noar ti set v0='6SV21C45VCMQIWY5ZYY1B6247NKHRZILQ' where id=5; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='JWJ2PXPNJFIYYG19NU97EYO0FF7WH2NTA' where id=5; -update noar ti set v1='JWJ2PXPNJFIYYG19NU97EYO0FF7WH2NTA' where id=5; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='M9FLAKPCYBDFA1Q5LUEM6YA0JCZKBRUX7' where id=5; -update noar ti set v2='M9FLAKPCYBDFA1Q5LUEM6YA0JCZKBRUX7' where id=5; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='UID3D22OU1GJ4HFTP3CVQBIS0P4I1S2B5' where id=5; -update noar ti set v3='UID3D22OU1GJ4HFTP3CVQBIS0P4I1S2B5' where id=5; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='C0DD07GZZ1HMK7T0MNKEBAQA1WRND0IAW' where id=6; -update noar ti set v0='C0DD07GZZ1HMK7T0MNKEBAQA1WRND0IAW' where id=6; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='TMZWLUOEFJHLBGVS0SKU0IPUZ73VI6UMW' where id=6; -update noar ti set v1='TMZWLUOEFJHLBGVS0SKU0IPUZ73VI6UMW' where id=6; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='7S2NEJJBHWOQFHK3RWHAR426900CF5NYN' where id=6; -update noar ti set v2='7S2NEJJBHWOQFHK3RWHAR426900CF5NYN' where id=6; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='09ZCHETG7WO0USAFFHZ5INP9U7AUIBCKZ' where id=6; -update noar ti set v3='09ZCHETG7WO0USAFFHZ5INP9U7AUIBCKZ' where id=6; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='Y8OXMWL39MMR0YEB2TQU1DDC033BZ5BW1' where id=7; -update noar ti set v0='Y8OXMWL39MMR0YEB2TQU1DDC033BZ5BW1' where id=7; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='HC86NHK9NAUV5OFBYELB1D06HAYQLX4GU' where id=7; -update noar ti set v1='HC86NHK9NAUV5OFBYELB1D06HAYQLX4GU' where id=7; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='QWL2F7Y16CLMYRDB04XUSY1GSA0ISSO76' where id=7; -update noar ti set v2='QWL2F7Y16CLMYRDB04XUSY1GSA0ISSO76' where id=7; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='P2F0GV4EEYN4VE4HDXZ0E7PDKBSQJF6GL' where id=7; -update noar ti set v3='P2F0GV4EEYN4VE4HDXZ0E7PDKBSQJF6GL' where id=7; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='OYB0CLBGINZ3YBWW9NVIHHQYJGAI0X5BT' where id=8; -update noar ti set v0='OYB0CLBGINZ3YBWW9NVIHHQYJGAI0X5BT' where id=8; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='F1QHLVE9P88J6KY7N4TKFBOOILYEOHL4A' where id=8; -update noar ti set v1='F1QHLVE9P88J6KY7N4TKFBOOILYEOHL4A' where id=8; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='QF9ZE2I0VYNZE7QGWB33ZZLD4FIBGVNLT' where id=8; -update noar ti set v2='QF9ZE2I0VYNZE7QGWB33ZZLD4FIBGVNLT' where id=8; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='HWWI750LOVQP7AS10LDFVJNNS8MF9R8GY' where id=8; -update noar ti set v3='HWWI750LOVQP7AS10LDFVJNNS8MF9R8GY' where id=8; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='3WOM3TU4HU1PL7GKZX8OCAEVHYM11GM89' where id=9; -update noar ti set v0='3WOM3TU4HU1PL7GKZX8OCAEVHYM11GM89' where id=9; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='JIHBCC09NDSWMEJTIK0QIP9KAXNBZ9H1Q' where id=9; -update noar ti set v1='JIHBCC09NDSWMEJTIK0QIP9KAXNBZ9H1Q' where id=9; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='78YO3W3NXLUTU16UTYR7555XVFV52KDQC' where id=9; -update noar ti set v2='78YO3W3NXLUTU16UTYR7555XVFV52KDQC' where id=9; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='GXR3FE0JE56D5FQF11AEU4C99T8EXF1ZJ' where id=9; -update noar ti set v3='GXR3FE0JE56D5FQF11AEU4C99T8EXF1ZJ' where id=9; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='HGMVC69FY2Z6BL87OMXLNKBOJMTLCRLFW' where id=10; -update noar ti set v0='HGMVC69FY2Z6BL87OMXLNKBOJMTLCRLFW' where id=10; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='Z3TNXODWL0PNYWPFVR4R3H58D0CWU19BD' where id=10; -update noar ti set v1='Z3TNXODWL0PNYWPFVR4R3H58D0CWU19BD' where id=10; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='0QFA5XYBCEHP0DE6U7RFVB87807HQO64H' where id=10; -update noar ti set v2='0QFA5XYBCEHP0DE6U7RFVB87807HQO64H' where id=10; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='JPYIAZFXKUO9NJPR02VIYU249KANCV92D' where id=10; -update noar ti set v3='JPYIAZFXKUO9NJPR02VIYU249KANCV92D' where id=10; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='AMEZSIYEUDNEGHOS049TJACNNDR6MIC8E' where id=11; -update noar ti set v0='AMEZSIYEUDNEGHOS049TJACNNDR6MIC8E' where id=11; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='H1SWYVWHWADQ7BTQ750J1JO58L6RPY5W7' where id=11; -update noar ti set v1='H1SWYVWHWADQ7BTQ750J1JO58L6RPY5W7' where id=11; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='PLNCWN1ROGM9T0O1MWKDO9L6ESFU0FKR6' where id=11; -update noar ti set v2='PLNCWN1ROGM9T0O1MWKDO9L6ESFU0FKR6' where id=11; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='H9P6KPN6KTCV5PLP9THH67FGM2KYMSF4J' where id=11; -update noar ti set v3='H9P6KPN6KTCV5PLP9THH67FGM2KYMSF4J' where id=11; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='PVNUO91H0R7AKWCF1W2EXEHYATPTAH1E7' where id=12; -update noar ti set v0='PVNUO91H0R7AKWCF1W2EXEHYATPTAH1E7' where id=12; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='U0FOE6HQPNDNJXEP5FBY0A1V6J8HO570E' where id=12; -update noar ti set v1='U0FOE6HQPNDNJXEP5FBY0A1V6J8HO570E' where id=12; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='8V5CG0HWS4EOG7BGBGO534MUJXCDHZVAW' where id=12; -update noar ti set v2='8V5CG0HWS4EOG7BGBGO534MUJXCDHZVAW' where id=12; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='J6TONP8M31IGAAYVBNH546V98JYANY917' where id=12; -update noar ti set v3='J6TONP8M31IGAAYVBNH546V98JYANY917' where id=12; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='9SF0ETUMBG1C2Y5ZR5MRLMYXXL55D4TFA' where id=13; -update noar ti set v0='9SF0ETUMBG1C2Y5ZR5MRLMYXXL55D4TFA' where id=13; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='S8O71MSHHSLZXI2213PHD7HFENE4Y8P6F' where id=13; -update noar ti set v1='S8O71MSHHSLZXI2213PHD7HFENE4Y8P6F' where id=13; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='P8V7H83HGN1SGHXFFUN69JT1VIOVOCTBH' where id=13; -update noar ti set v2='P8V7H83HGN1SGHXFFUN69JT1VIOVOCTBH' where id=13; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='SZQ0XEJ08LD21ZSA55OHC4XL9VVR7CUW1' where id=13; -update noar ti set v3='SZQ0XEJ08LD21ZSA55OHC4XL9VVR7CUW1' where id=13; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='B12IPIJMUDE06SR5RNR0APUJJ97I85R31' where id=14; -update noar ti set v0='B12IPIJMUDE06SR5RNR0APUJJ97I85R31' where id=14; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='SQ1IR20KOWM2DK4RQ0KFJ2UYPAHOZL55J' where id=14; -update noar ti set v1='SQ1IR20KOWM2DK4RQ0KFJ2UYPAHOZL55J' where id=14; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='6O2OW9Y7PNH03AV2P6ISEHMB99NT52RRA' where id=14; -update noar ti set v2='6O2OW9Y7PNH03AV2P6ISEHMB99NT52RRA' where id=14; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='XZNG602TFER48KS2YEW3GOZT4QLDSUSM9' where id=14; -update noar ti set v3='XZNG602TFER48KS2YEW3GOZT4QLDSUSM9' where id=14; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='8P4R9R566P05H5MN3ZQXSGPTKUTOLQ0RT' where id=15; -update noar ti set v0='8P4R9R566P05H5MN3ZQXSGPTKUTOLQ0RT' where id=15; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='BSWDQFWV114F6LNP1FZQ5D384ZLPRHXL0' where id=15; -update noar ti set v1='BSWDQFWV114F6LNP1FZQ5D384ZLPRHXL0' where id=15; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='C18UYE05QL0RYD4WG1O7Y6W74RLOP7948' where id=15; -update noar ti set v2='C18UYE05QL0RYD4WG1O7Y6W74RLOP7948' where id=15; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='SJSLH132HKQBQAOZF91XKJPWTS2NOCTLR' where id=15; -update noar ti set v3='SJSLH132HKQBQAOZF91XKJPWTS2NOCTLR' where id=15; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='UZSVSIGW2JHZGPFPUCF6EHZUQHMM8Q6G6' where id=16; -update noar ti set v0='UZSVSIGW2JHZGPFPUCF6EHZUQHMM8Q6G6' where id=16; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='MZDBG86F95PE2QSYRU855GFUMVC9JWM8Y' where id=16; -update noar ti set v1='MZDBG86F95PE2QSYRU855GFUMVC9JWM8Y' where id=16; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='NF8PIMOIPPYH3AQJR6R8FQMPX10ZBDSFQ' where id=16; -update noar ti set v2='NF8PIMOIPPYH3AQJR6R8FQMPX10ZBDSFQ' where id=16; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='SPXG4OR4XFGUVWDRV7J3G8L2V5RSJYOYM' where id=16; -update noar ti set v3='SPXG4OR4XFGUVWDRV7J3G8L2V5RSJYOYM' where id=16; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='F3A1CHQU0MEJPT62HME1VKM5EQZ57SVXR' where id=17; -update noar ti set v0='F3A1CHQU0MEJPT62HME1VKM5EQZ57SVXR' where id=17; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='TQ2XK26I1XAFIR78Z8THVBD39K4IUZFZE' where id=17; -update noar ti set v1='TQ2XK26I1XAFIR78Z8THVBD39K4IUZFZE' where id=17; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='YVO846KBJ1NV8U6SDTL51M2K3HA4C4H6B' where id=17; -update noar ti set v2='YVO846KBJ1NV8U6SDTL51M2K3HA4C4H6B' where id=17; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='LVDOI1METCQVT2VW2ME3SXROD7EA2GC6F' where id=17; -update noar ti set v3='LVDOI1METCQVT2VW2ME3SXROD7EA2GC6F' where id=17; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='MKDJ79X4CTDYB1YMWDJOCTP82EIDX6XD7' where id=18; -update noar ti set v0='MKDJ79X4CTDYB1YMWDJOCTP82EIDX6XD7' where id=18; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='DXKLQC2B8SLZ49QFJEVKB7W5MSLP10PXB' where id=18; -update noar ti set v1='DXKLQC2B8SLZ49QFJEVKB7W5MSLP10PXB' where id=18; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='OVDNU2U0VYYB4SL9ATQRX14DTPSF2EYC0' where id=18; -update noar ti set v2='OVDNU2U0VYYB4SL9ATQRX14DTPSF2EYC0' where id=18; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='GHA7T9AZU3GP1YB75FOO09LGPIC54YT29' where id=18; -update noar ti set v3='GHA7T9AZU3GP1YB75FOO09LGPIC54YT29' where id=18; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='56YU26EX616AVMGIBO9T55F77CTPBHHTY' where id=19; -update noar ti set v0='56YU26EX616AVMGIBO9T55F77CTPBHHTY' where id=19; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='6IEIJABVSHTL7B7IC8ATYUOOMNG5P4J21' where id=19; -update noar ti set v1='6IEIJABVSHTL7B7IC8ATYUOOMNG5P4J21' where id=19; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='ZQDUTBTFE4OAHNRKF4PT5O7ALF6K0B871' where id=19; -update noar ti set v2='ZQDUTBTFE4OAHNRKF4PT5O7ALF6K0B871' where id=19; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='K7GNNXZ4GV1ONF0XJ5WCOF6TBS88TM1RX' where id=19; -update noar ti set v3='K7GNNXZ4GV1ONF0XJ5WCOF6TBS88TM1RX' where id=19; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='UC8URNJBUZONLBXRPGX52ZHH4DMBJ4QES' where id=20; -update noar ti set v0='UC8URNJBUZONLBXRPGX52ZHH4DMBJ4QES' where id=20; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='QEIWBYOKP8QIBME421MTQK5XT7L5VEIE1' where id=20; -update noar ti set v1='QEIWBYOKP8QIBME421MTQK5XT7L5VEIE1' where id=20; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='LOTIEB7G2YCUSRFF8GY44EZKWPUWR9072' where id=20; -update noar ti set v2='LOTIEB7G2YCUSRFF8GY44EZKWPUWR9072' where id=20; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='98WVRWY6KRR18BR694HT4D9X9HY1UISFD' where id=20; -update noar ti set v3='98WVRWY6KRR18BR694HT4D9X9HY1UISFD' where id=20; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='WGYQ7OOYJWOO3R3593YADT3CA0X24CHGE' where id=21; -update noar ti set v0='WGYQ7OOYJWOO3R3593YADT3CA0X24CHGE' where id=21; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='HEYADKX46NP9STU5WBTMCI51NS2YJN7W0' where id=21; -update noar ti set v1='HEYADKX46NP9STU5WBTMCI51NS2YJN7W0' where id=21; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='6MRK67XGPTU37D5JLR0HMO8KO1RVTCTCK' where id=21; -update noar ti set v2='6MRK67XGPTU37D5JLR0HMO8KO1RVTCTCK' where id=21; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='VJ21I5FYUNUCI6HEVY39MHK5VJKSUWLT4' where id=21; -update noar ti set v3='VJ21I5FYUNUCI6HEVY39MHK5VJKSUWLT4' where id=21; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='RK7QU7GYTGGM50TTY4S4XKLPQ96XU89YM' where id=22; -update noar ti set v0='RK7QU7GYTGGM50TTY4S4XKLPQ96XU89YM' where id=22; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='9XYLSONJ3MWXI8I1PKO03ONPE18JPEY08' where id=22; -update noar ti set v1='9XYLSONJ3MWXI8I1PKO03ONPE18JPEY08' where id=22; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='QUPQ3LGB6745Q9DJUMXA171IQ4Y2HU6G2' where id=22; -update noar ti set v2='QUPQ3LGB6745Q9DJUMXA171IQ4Y2HU6G2' where id=22; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='PKM2DEQIRE82867HKDOEBNV7LBGF3QH43' where id=22; -update noar ti set v3='PKM2DEQIRE82867HKDOEBNV7LBGF3QH43' where id=22; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='28B1SUBXBYD7IBS0GFBPZIIFPTBWEKK41' where id=23; -update noar ti set v0='28B1SUBXBYD7IBS0GFBPZIIFPTBWEKK41' where id=23; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='VOKF6B4GX5RVKM4E1ROO7Q1N904DE93MD' where id=23; -update noar ti set v1='VOKF6B4GX5RVKM4E1ROO7Q1N904DE93MD' where id=23; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='IQQRS8LONX8URZ30TB6EIKNI7MH937U0I' where id=23; -update noar ti set v2='IQQRS8LONX8URZ30TB6EIKNI7MH937U0I' where id=23; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='0MFUCQLDYNBJZX7PH4BX2BPCT6JJU2OCY' where id=23; -update noar ti set v3='0MFUCQLDYNBJZX7PH4BX2BPCT6JJU2OCY' where id=23; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='H35VJ0JJ9M4VKRSKPZSEFOGYHQEXPWD2V' where id=24; -update noar ti set v0='H35VJ0JJ9M4VKRSKPZSEFOGYHQEXPWD2V' where id=24; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='0WVQRQNN4L9T49A8NBOY4TDVRCKZPT4LM' where id=24; -update noar ti set v1='0WVQRQNN4L9T49A8NBOY4TDVRCKZPT4LM' where id=24; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='JEFMF7ET9L805T1WJ8K4ZQ5IVRQ6ZXPJD' where id=24; -update noar ti set v2='JEFMF7ET9L805T1WJ8K4ZQ5IVRQ6ZXPJD' where id=24; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='XE099KPJIXBNUL85T6F1N7JLRW984J9TF' where id=24; -update noar ti set v3='XE099KPJIXBNUL85T6F1N7JLRW984J9TF' where id=24; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='X14F3R7GU1RJOCCW4WX7CTIGT36TE3JRG' where id=25; -update noar ti set v0='X14F3R7GU1RJOCCW4WX7CTIGT36TE3JRG' where id=25; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='U4X1TLXGG39F6MJFB4AJ5AVNVDRQBEH06' where id=25; -update noar ti set v1='U4X1TLXGG39F6MJFB4AJ5AVNVDRQBEH06' where id=25; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='6VLMEP1APE3QP9NGZHV5WAUAJJCFMUP3Y' where id=25; -update noar ti set v2='6VLMEP1APE3QP9NGZHV5WAUAJJCFMUP3Y' where id=25; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='6E0GFNFJIYRBFZ7T6D47QZXFN85X5UGLZ' where id=25; -update noar ti set v3='6E0GFNFJIYRBFZ7T6D47QZXFN85X5UGLZ' where id=25; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='J7FZVM7Z9K8JFMX7X63U5T30O10QA5OMS' where id=26; -update noar ti set v0='J7FZVM7Z9K8JFMX7X63U5T30O10QA5OMS' where id=26; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='47DZY405L0EZ5VIBA5KAAX2N2TQDXPEPN' where id=26; -update noar ti set v1='47DZY405L0EZ5VIBA5KAAX2N2TQDXPEPN' where id=26; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='CT2XH9X3W36YXMAKQPKPIXTDHSII9695N' where id=26; -update noar ti set v2='CT2XH9X3W36YXMAKQPKPIXTDHSII9695N' where id=26; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='GRJJ7OT65HHPSRIRECL3YWXZHUAV950AE' where id=26; -update noar ti set v3='GRJJ7OT65HHPSRIRECL3YWXZHUAV950AE' where id=26; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='T2PQ2G2YUHMZFOIH8KD9WOLVZACI6QXSL' where id=27; -update noar ti set v0='T2PQ2G2YUHMZFOIH8KD9WOLVZACI6QXSL' where id=27; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='WBKMMLEJIH1CELPCOJR4GFCW910192RUC' where id=27; -update noar ti set v1='WBKMMLEJIH1CELPCOJR4GFCW910192RUC' where id=27; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='GW7O784R98OO80ZQRU56JV04O5ZKVCGLM' where id=27; -update noar ti set v2='GW7O784R98OO80ZQRU56JV04O5ZKVCGLM' where id=27; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='4ASKL6U7NE4H92UNQETXZQMELKRUM9RJW' where id=27; -update noar ti set v3='4ASKL6U7NE4H92UNQETXZQMELKRUM9RJW' where id=27; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='VL5UD7E3UXP1Y30T19OUQMDNQQDCVIMF5' where id=28; -update noar ti set v0='VL5UD7E3UXP1Y30T19OUQMDNQQDCVIMF5' where id=28; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='EPLL1XI0NDVRFJTEMPY5Y6U8ERLTL8T6A' where id=28; -update noar ti set v1='EPLL1XI0NDVRFJTEMPY5Y6U8ERLTL8T6A' where id=28; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='2BTSP19L73FQ35FQ5D08MP0C0JKQNYIE9' where id=28; -update noar ti set v2='2BTSP19L73FQ35FQ5D08MP0C0JKQNYIE9' where id=28; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='BH7X40UUGJPX4S4AALT5U9IKEEBUD1OUM' where id=28; -update noar ti set v3='BH7X40UUGJPX4S4AALT5U9IKEEBUD1OUM' where id=28; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='0XYMUNMMYKYKJOFX6KU1VZUXYW2R2SGOG' where id=29; -update noar ti set v0='0XYMUNMMYKYKJOFX6KU1VZUXYW2R2SGOG' where id=29; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='2O9VFIZQU5X3N3SH7X6KBHKZE99NGKJZH' where id=29; -update noar ti set v1='2O9VFIZQU5X3N3SH7X6KBHKZE99NGKJZH' where id=29; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='NLHXCA55YM0YH9ORW54T2DYRWI7PWSMY1' where id=29; -update noar ti set v2='NLHXCA55YM0YH9ORW54T2DYRWI7PWSMY1' where id=29; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='GFEF2SYYVRSHCVM1JX5GYY51H00H87XC2' where id=29; -update noar ti set v3='GFEF2SYYVRSHCVM1JX5GYY51H00H87XC2' where id=29; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='LJMNSZA5O130HP39Q0HGEY7PW6V1TWO3A' where id=30; -update noar ti set v0='LJMNSZA5O130HP39Q0HGEY7PW6V1TWO3A' where id=30; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='J8Q5CVBM83ZF76UY4KAZ0MBCSD3ZZK59O' where id=30; -update noar ti set v1='J8Q5CVBM83ZF76UY4KAZ0MBCSD3ZZK59O' where id=30; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='410FAC6AON5D5DNNS49P87VTKZ5XHY24W' where id=30; -update noar ti set v2='410FAC6AON5D5DNNS49P87VTKZ5XHY24W' where id=30; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='6OVAG8QJYGVZ7H3QSYLOJ4KB5HM9WU201' where id=30; -update noar ti set v3='6OVAG8QJYGVZ7H3QSYLOJ4KB5HM9WU201' where id=30; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='7NHI3QNFIXZQFRN67VXYFNXODUQNYRSGF' where id=31; -update noar ti set v0='7NHI3QNFIXZQFRN67VXYFNXODUQNYRSGF' where id=31; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='2EUIFAF1PD1GQ1X00EUU4G26IUHYE00WI' where id=31; -update noar ti set v1='2EUIFAF1PD1GQ1X00EUU4G26IUHYE00WI' where id=31; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='M1H8FI0O21CY7BVEK624X5QJPHGB919UN' where id=31; -update noar ti set v2='M1H8FI0O21CY7BVEK624X5QJPHGB919UN' where id=31; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='I661L0SLV4WI6NYPB3D97AUILOV6XC0FE' where id=31; -update noar ti set v3='I661L0SLV4WI6NYPB3D97AUILOV6XC0FE' where id=31; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='OGDZHQ95S17YB4LIFHGVFLOJSY1KDSB30' where id=32; -update noar ti set v0='OGDZHQ95S17YB4LIFHGVFLOJSY1KDSB30' where id=32; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='8GQUEDNSHUCLOJNKPIH56TB6L0PBMD65U' where id=32; -update noar ti set v1='8GQUEDNSHUCLOJNKPIH56TB6L0PBMD65U' where id=32; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='HAQQ51MGMVNOXA12ALYIYXHH7A66M4NFF' where id=32; -update noar ti set v2='HAQQ51MGMVNOXA12ALYIYXHH7A66M4NFF' where id=32; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='VW5OEZ7QECGOU9VVRTM4WOX79G2RBWETN' where id=32; -update noar ti set v3='VW5OEZ7QECGOU9VVRTM4WOX79G2RBWETN' where id=32; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='1LSN1T9R98CYSP8SDL6MUHZYC7734XO2X' where id=33; -update noar ti set v0='1LSN1T9R98CYSP8SDL6MUHZYC7734XO2X' where id=33; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='6H4XU6WU6JTODYEWNZ50V0SD2BBJ2CP1M' where id=33; -update noar ti set v1='6H4XU6WU6JTODYEWNZ50V0SD2BBJ2CP1M' where id=33; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='W1HXKNQTDCNJOJQ9H5ZJ0JSG1VQ5ZJSPV' where id=33; -update noar ti set v2='W1HXKNQTDCNJOJQ9H5ZJ0JSG1VQ5ZJSPV' where id=33; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='QQFHL4QXG8NJEKQ9JK8GTRGYKTMOHWLUW' where id=33; -update noar ti set v3='QQFHL4QXG8NJEKQ9JK8GTRGYKTMOHWLUW' where id=33; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='M3WQCU84TA265RO9865JQ6XBSE7NS6Z59' where id=34; -update noar ti set v0='M3WQCU84TA265RO9865JQ6XBSE7NS6Z59' where id=34; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='Z4DNA42Z37ORF1Z9JVTTPOV58RD6VMULU' where id=34; -update noar ti set v1='Z4DNA42Z37ORF1Z9JVTTPOV58RD6VMULU' where id=34; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='ZEOSTBEIKTX7MRRBMG2UYMWLFBH7ZLZQ0' where id=34; -update noar ti set v2='ZEOSTBEIKTX7MRRBMG2UYMWLFBH7ZLZQ0' where id=34; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='S0NBDM8NNEXLKYM6QDRQXHCH56XUVPUEQ' where id=34; -update noar ti set v3='S0NBDM8NNEXLKYM6QDRQXHCH56XUVPUEQ' where id=34; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='HAK9VG8HQJRVEUSNZJMLQ5HJWQL7QZV3C' where id=35; -update noar ti set v0='HAK9VG8HQJRVEUSNZJMLQ5HJWQL7QZV3C' where id=35; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='W27V5QYK0ZTD0G8YZDFAXXUU8528NDBPJ' where id=35; -update noar ti set v1='W27V5QYK0ZTD0G8YZDFAXXUU8528NDBPJ' where id=35; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='CJ9W59MF4VSOBZFJDP40E9YKZIO1Q6KLX' where id=35; -update noar ti set v2='CJ9W59MF4VSOBZFJDP40E9YKZIO1Q6KLX' where id=35; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='TTOFMYRMF7WLKCCI1Y1QCR2D3W6CC0VXO' where id=35; -update noar ti set v3='TTOFMYRMF7WLKCCI1Y1QCR2D3W6CC0VXO' where id=35; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='MF0TRKBPLG9IBFPTG57P7F5ZX2L057ZHT' where id=36; -update noar ti set v0='MF0TRKBPLG9IBFPTG57P7F5ZX2L057ZHT' where id=36; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='TWY9GL4N6YU1MWP8XB1PI8YS3UBWDDNMB' where id=36; -update noar ti set v1='TWY9GL4N6YU1MWP8XB1PI8YS3UBWDDNMB' where id=36; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='5XD0MEQKDMR2HGXBJ6NKSF0HKA6NNS742' where id=36; -update noar ti set v2='5XD0MEQKDMR2HGXBJ6NKSF0HKA6NNS742' where id=36; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='3H0EA6B45WR6FRWTCKCHOJXTHA5BKIT2F' where id=36; -update noar ti set v3='3H0EA6B45WR6FRWTCKCHOJXTHA5BKIT2F' where id=36; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='95E6L7GSV9I7KBBHV3F9KBE23IL6WE8YL' where id=37; -update noar ti set v0='95E6L7GSV9I7KBBHV3F9KBE23IL6WE8YL' where id=37; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='9F3JB8AIRJE6QHTXIEEVZJNLQYJEGXY4H' where id=37; -update noar ti set v1='9F3JB8AIRJE6QHTXIEEVZJNLQYJEGXY4H' where id=37; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='OYH9Y7IVQRZ8G842TPF6N7QNLGLP7AM3C' where id=37; -update noar ti set v2='OYH9Y7IVQRZ8G842TPF6N7QNLGLP7AM3C' where id=37; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='3B1JQXY8WUEFUUGSHRS45CEDCQN0WRNTQ' where id=37; -update noar ti set v3='3B1JQXY8WUEFUUGSHRS45CEDCQN0WRNTQ' where id=37; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='JZQLQ9ZHXFIU7WBCDA6OTRLW3PDSJNUJ7' where id=38; -update noar ti set v0='JZQLQ9ZHXFIU7WBCDA6OTRLW3PDSJNUJ7' where id=38; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='G24SDD849GUFPH2UIUXK6TDPMVZT9KX1C' where id=38; -update noar ti set v1='G24SDD849GUFPH2UIUXK6TDPMVZT9KX1C' where id=38; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='IZD3TF8EYOVOBCBOTZS4RBRQDJEJKBEJ9' where id=38; -update noar ti set v2='IZD3TF8EYOVOBCBOTZS4RBRQDJEJKBEJ9' where id=38; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='95XWXAHWDQKCSS7P7CI97AY8ZPF8HUJDW' where id=38; -update noar ti set v3='95XWXAHWDQKCSS7P7CI97AY8ZPF8HUJDW' where id=38; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='1T3Y4KJWLSI014FJXUJVP4S23RY039MOG' where id=39; -update noar ti set v0='1T3Y4KJWLSI014FJXUJVP4S23RY039MOG' where id=39; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='8MKPK1U4WQUQF4RPY272YOL2SIXE2G6J3' where id=39; -update noar ti set v1='8MKPK1U4WQUQF4RPY272YOL2SIXE2G6J3' where id=39; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='VHDUJNM08T9L9JFP4P742MTE3H6K954ZC' where id=39; -update noar ti set v2='VHDUJNM08T9L9JFP4P742MTE3H6K954ZC' where id=39; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='51C8TP623RGCLWDMRC8XJ0349CGIUYW1S' where id=39; -update noar ti set v3='51C8TP623RGCLWDMRC8XJ0349CGIUYW1S' where id=39; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='TCBKJV7WEFI3NKLR7IV4GROF41X4YGZV8' where id=40; -update noar ti set v0='TCBKJV7WEFI3NKLR7IV4GROF41X4YGZV8' where id=40; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='2N5M3QLKEWTVH0WHD8PEHAMWMD2YKXT4W' where id=40; -update noar ti set v1='2N5M3QLKEWTVH0WHD8PEHAMWMD2YKXT4W' where id=40; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='TO6EK2U8AK5D8WRZLYIP0QU5N1SADEC8B' where id=40; -update noar ti set v2='TO6EK2U8AK5D8WRZLYIP0QU5N1SADEC8B' where id=40; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='J0HIPHB60ZPUTXBHRD2R8A584R08B7QAN' where id=40; -update noar ti set v3='J0HIPHB60ZPUTXBHRD2R8A584R08B7QAN' where id=40; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='QMOCYIW5F2KGTXJWOURV0AUPGOVU0LRD1' where id=41; -update noar ti set v0='QMOCYIW5F2KGTXJWOURV0AUPGOVU0LRD1' where id=41; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='3J81DLRM220BY3D72I3SSMHA2BQ5XR61V' where id=41; -update noar ti set v1='3J81DLRM220BY3D72I3SSMHA2BQ5XR61V' where id=41; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='OBWI4SVE17HETZB0DO93V8F3255DASLP9' where id=41; -update noar ti set v2='OBWI4SVE17HETZB0DO93V8F3255DASLP9' where id=41; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='OVXNZF1UGXBVV6RYR0SS85O7XH6XRHYVU' where id=41; -update noar ti set v3='OVXNZF1UGXBVV6RYR0SS85O7XH6XRHYVU' where id=41; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='ND5SELQZO5NMDPGID2MGDS8QWSPQWRSDC' where id=42; -update noar ti set v0='ND5SELQZO5NMDPGID2MGDS8QWSPQWRSDC' where id=42; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='APFLH78J8RIUQABJO9C0XUJ728S19FMB1' where id=42; -update noar ti set v1='APFLH78J8RIUQABJO9C0XUJ728S19FMB1' where id=42; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='97W8TYYF33GACEUL9NIZ7Y8DL3SEU6M0X' where id=42; -update noar ti set v2='97W8TYYF33GACEUL9NIZ7Y8DL3SEU6M0X' where id=42; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='T7J5UC89PA3I2J3MP6H8FY38G8KCZ8DGE' where id=42; -update noar ti set v3='T7J5UC89PA3I2J3MP6H8FY38G8KCZ8DGE' where id=42; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='L9DAO06YPFO4FNO0YML7601UL297EJLJK' where id=43; -update noar ti set v0='L9DAO06YPFO4FNO0YML7601UL297EJLJK' where id=43; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='T8LPZDBGLKVGF7J8WDPNCGC4UDT5YXT0G' where id=43; -update noar ti set v1='T8LPZDBGLKVGF7J8WDPNCGC4UDT5YXT0G' where id=43; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='F8OE6XPDSL9T5L6RWXGZ37TOR08XQNKLD' where id=43; -update noar ti set v2='F8OE6XPDSL9T5L6RWXGZ37TOR08XQNKLD' where id=43; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='JP7QNSDHCOWOHEZ19AK8WBU3P0HZZZFUC' where id=43; -update noar ti set v3='JP7QNSDHCOWOHEZ19AK8WBU3P0HZZZFUC' where id=43; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='QR5CU9J1BM54KXSALVOU2YYIIT9II5IV7' where id=44; -update noar ti set v0='QR5CU9J1BM54KXSALVOU2YYIIT9II5IV7' where id=44; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='THR2AGEW965PRL7DQ6FPFRVF555HV9BGH' where id=44; -update noar ti set v1='THR2AGEW965PRL7DQ6FPFRVF555HV9BGH' where id=44; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='GK24JP9QKQEJ41FF92VFAFG2J4H367VXY' where id=44; -update noar ti set v2='GK24JP9QKQEJ41FF92VFAFG2J4H367VXY' where id=44; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='RXQ5576BL2NWDIAAZWD6T9ARM4A0CNHPK' where id=44; -update noar ti set v3='RXQ5576BL2NWDIAAZWD6T9ARM4A0CNHPK' where id=44; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='GWR3GW8YSUEHLA2IMYNODZTMABWQL3UVN' where id=45; -update noar ti set v0='GWR3GW8YSUEHLA2IMYNODZTMABWQL3UVN' where id=45; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='BKZNASNZUDYVUMESOFLQQMW3KXZRD8TNI' where id=45; -update noar ti set v1='BKZNASNZUDYVUMESOFLQQMW3KXZRD8TNI' where id=45; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='S9SNZCF4KJ3LOD8LU51I7YIK2NHHL2S9L' where id=45; -update noar ti set v2='S9SNZCF4KJ3LOD8LU51I7YIK2NHHL2S9L' where id=45; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='ZBWLFM6A2VE95ZKNZ8HFZNQ2JVSSWH1VJ' where id=45; -update noar ti set v3='ZBWLFM6A2VE95ZKNZ8HFZNQ2JVSSWH1VJ' where id=45; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='27CIX9UJKS2U48PLDIW59ZDET9LYB9ZP8' where id=46; -update noar ti set v0='27CIX9UJKS2U48PLDIW59ZDET9LYB9ZP8' where id=46; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='1A0ELI6O5NJFOPT5NKL53RVHJE7XE39LY' where id=46; -update noar ti set v1='1A0ELI6O5NJFOPT5NKL53RVHJE7XE39LY' where id=46; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='27J8V1GVO68JHO0CK71DFDXC4HF98GDBK' where id=46; -update noar ti set v2='27J8V1GVO68JHO0CK71DFDXC4HF98GDBK' where id=46; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='AH200JYBSX88DD1XIK7GVDLMJNEYVNRD6' where id=46; -update noar ti set v3='AH200JYBSX88DD1XIK7GVDLMJNEYVNRD6' where id=46; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='H5J4WZ3QWCZA02UB84BPM78RQDK2OTIK5' where id=47; -update noar ti set v0='H5J4WZ3QWCZA02UB84BPM78RQDK2OTIK5' where id=47; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='TL89W61XVOK7G5VUFTKUDY411H6J01DIF' where id=47; -update noar ti set v1='TL89W61XVOK7G5VUFTKUDY411H6J01DIF' where id=47; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='FA4N8L56DOQSQ909DQ4IXVV6QPMB3GXY7' where id=47; -update noar ti set v2='FA4N8L56DOQSQ909DQ4IXVV6QPMB3GXY7' where id=47; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='8S6S0DCK02JY4BEU0UMJAVEK73IXPORDL' where id=47; -update noar ti set v3='8S6S0DCK02JY4BEU0UMJAVEK73IXPORDL' where id=47; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='G9VHLMZMPR34PGYRYYE7EBCVZD62OV7G7' where id=48; -update noar ti set v0='G9VHLMZMPR34PGYRYYE7EBCVZD62OV7G7' where id=48; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='PXSSL3CI37E8NIARJ97E7560CU47S7ZJH' where id=48; -update noar ti set v1='PXSSL3CI37E8NIARJ97E7560CU47S7ZJH' where id=48; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='HL0KH8QSLJTM47SZNB5XYJ334W0T7LQ17' where id=48; -update noar ti set v2='HL0KH8QSLJTM47SZNB5XYJ334W0T7LQ17' where id=48; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='SZL2PQD8RE1IKQ1O9OYB3AD6NJBLI9BWD' where id=48; -update noar ti set v3='SZL2PQD8RE1IKQ1O9OYB3AD6NJBLI9BWD' where id=48; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='Z3AFY4MML6MYH5NG9JSQ72RLK0HO0BG9V' where id=49; -update noar ti set v0='Z3AFY4MML6MYH5NG9JSQ72RLK0HO0BG9V' where id=49; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='8WMTWYRK0DI205EJFQKQBWU67OCNKL2OO' where id=49; -update noar ti set v1='8WMTWYRK0DI205EJFQKQBWU67OCNKL2OO' where id=49; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='I9UEO5RMIUO4RF9LJPZQQ9EFNQQF8Y53O' where id=49; -update noar ti set v2='I9UEO5RMIUO4RF9LJPZQQ9EFNQQF8Y53O' where id=49; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='ILHMCPLH1R46JMUI86NJ3KQXLFDR7T3PV' where id=49; -update noar ti set v3='ILHMCPLH1R46JMUI86NJ3KQXLFDR7T3PV' where id=49; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='RURSQ9L2FSKAFNVYJK1C7FLEJFZHUILXD' where id=50; -update noar ti set v0='RURSQ9L2FSKAFNVYJK1C7FLEJFZHUILXD' where id=50; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='DSL5GCW995JRY82HOPK0IV52JUI4I1RBA' where id=50; -update noar ti set v1='DSL5GCW995JRY82HOPK0IV52JUI4I1RBA' where id=50; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='TRFMGIARIBM6O4HH9YT49EI7ICZDSCCZK' where id=50; -update noar ti set v2='TRFMGIARIBM6O4HH9YT49EI7ICZDSCCZK' where id=50; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='458762STQLMQS5IK2AUZFMMDAQ8GFVW39' where id=50; -update noar ti set v3='458762STQLMQS5IK2AUZFMMDAQ8GFVW39' where id=50; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='7L6UP1XJBFY9RLRQJZMOC52GHJZUXS27J' where id=51; -update noar ti set v0='7L6UP1XJBFY9RLRQJZMOC52GHJZUXS27J' where id=51; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='YTMDICEWMQJTBWBZCB6ALJSSY2HBLGA1B' where id=51; -update noar ti set v1='YTMDICEWMQJTBWBZCB6ALJSSY2HBLGA1B' where id=51; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='L6X04J0C3HWTE8R9JN3YADC02AS5O781E' where id=51; -update noar ti set v2='L6X04J0C3HWTE8R9JN3YADC02AS5O781E' where id=51; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='AD2RYQ8TG4Q0E3T5Y7O8NJERYDHV8Q2UY' where id=51; -update noar ti set v3='AD2RYQ8TG4Q0E3T5Y7O8NJERYDHV8Q2UY' where id=51; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='KIYNLLN5RH3R6LYNPHLAPYV5GB46E2G7W' where id=52; -update noar ti set v0='KIYNLLN5RH3R6LYNPHLAPYV5GB46E2G7W' where id=52; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='MJBQA2HIXRPOH9K42ZIQ9NXLUY9QN93Z3' where id=52; -update noar ti set v1='MJBQA2HIXRPOH9K42ZIQ9NXLUY9QN93Z3' where id=52; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='FERPK7XSW9WSSHW0MMSU32PKC169QA2H6' where id=52; -update noar ti set v2='FERPK7XSW9WSSHW0MMSU32PKC169QA2H6' where id=52; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='DSH8CFWXTX2DLN9XMHLZCASZL6K5XJUUA' where id=52; -update noar ti set v3='DSH8CFWXTX2DLN9XMHLZCASZL6K5XJUUA' where id=52; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='6AN7R1VYJVONXHX17M1DO6RG5RGZZD2T7' where id=53; -update noar ti set v0='6AN7R1VYJVONXHX17M1DO6RG5RGZZD2T7' where id=53; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='JWMPLL8L4A3AJ1YQQOBV89JSSZ1OPKF0I' where id=53; -update noar ti set v1='JWMPLL8L4A3AJ1YQQOBV89JSSZ1OPKF0I' where id=53; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='0LIY2CSI9D3HPPBADYLRUYKHH6Y5J6O0I' where id=53; -update noar ti set v2='0LIY2CSI9D3HPPBADYLRUYKHH6Y5J6O0I' where id=53; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='3TPM46KEH2W2KTRAVUCLDD24ZGIIYE73G' where id=53; -update noar ti set v3='3TPM46KEH2W2KTRAVUCLDD24ZGIIYE73G' where id=53; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='9FMS4I2NTMHR3AJLL5JPKH1MS2BETT508' where id=54; -update noar ti set v0='9FMS4I2NTMHR3AJLL5JPKH1MS2BETT508' where id=54; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='SB1RJLVZA09KX532JNTE5APJUTZU94BR7' where id=54; -update noar ti set v1='SB1RJLVZA09KX532JNTE5APJUTZU94BR7' where id=54; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='SH4NIS1WYNR6W7650I4CMS4WA3EE6EJ06' where id=54; -update noar ti set v2='SH4NIS1WYNR6W7650I4CMS4WA3EE6EJ06' where id=54; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='6M8ZNTNUYGYE8K0GPZCAGMIBB9GODDJ3T' where id=54; -update noar ti set v3='6M8ZNTNUYGYE8K0GPZCAGMIBB9GODDJ3T' where id=54; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='W7DSNS4NZ9283GJVVA48PWEYB8028KQ2B' where id=55; -update noar ti set v0='W7DSNS4NZ9283GJVVA48PWEYB8028KQ2B' where id=55; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='7W0NBJABATJMK0GRD5UMY5GUBFJYKHSOS' where id=55; -update noar ti set v1='7W0NBJABATJMK0GRD5UMY5GUBFJYKHSOS' where id=55; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='57EMBWTTQSRQI2JK20H8MNHYE0KS7K5MA' where id=55; -update noar ti set v2='57EMBWTTQSRQI2JK20H8MNHYE0KS7K5MA' where id=55; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='Y9PMVRMXLN1H6H2ZSL6S8VQYO3XMXOIZC' where id=55; -update noar ti set v3='Y9PMVRMXLN1H6H2ZSL6S8VQYO3XMXOIZC' where id=55; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='QUZ7ABM7U20FX9JU87HPJ45TE9R48DMDI' where id=56; -update noar ti set v0='QUZ7ABM7U20FX9JU87HPJ45TE9R48DMDI' where id=56; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='Q53CBPGSPVA4AUL0BOF9RU6XOH3OBYBXX' where id=56; -update noar ti set v1='Q53CBPGSPVA4AUL0BOF9RU6XOH3OBYBXX' where id=56; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='XI61XGI3OR56KT9GIRRC3CM0IIMNPPTGK' where id=56; -update noar ti set v2='XI61XGI3OR56KT9GIRRC3CM0IIMNPPTGK' where id=56; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='I6YYC6B0ZE88SRV7CQ138T0YASK9VS9C9' where id=56; -update noar ti set v3='I6YYC6B0ZE88SRV7CQ138T0YASK9VS9C9' where id=56; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='7K4KWB5KJQ0FNMMDFA3PAU7XSQ8LDQA7Z' where id=57; -update noar ti set v0='7K4KWB5KJQ0FNMMDFA3PAU7XSQ8LDQA7Z' where id=57; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='T7TM731845GEWLY5D0YTCFZL8E8TY5IS0' where id=57; -update noar ti set v1='T7TM731845GEWLY5D0YTCFZL8E8TY5IS0' where id=57; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='PAD1A0MOKVUAWOVCRU12QPQZL54L58MHM' where id=57; -update noar ti set v2='PAD1A0MOKVUAWOVCRU12QPQZL54L58MHM' where id=57; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='LF7RYQN7OR38JKDHM5MHLS3AKYPO5IKTC' where id=57; -update noar ti set v3='LF7RYQN7OR38JKDHM5MHLS3AKYPO5IKTC' where id=57; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='HPR7W84PVJXJ6GQFULKCJ9CJOZEFQ0BGF' where id=58; -update noar ti set v0='HPR7W84PVJXJ6GQFULKCJ9CJOZEFQ0BGF' where id=58; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='CITNSMY4DF1631N6T90S3SNEHFNTD4R27' where id=58; -update noar ti set v1='CITNSMY4DF1631N6T90S3SNEHFNTD4R27' where id=58; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='ZHZ3JRPT1ZDOFCH6W3B5WRD0Q31KHNK9X' where id=58; -update noar ti set v2='ZHZ3JRPT1ZDOFCH6W3B5WRD0Q31KHNK9X' where id=58; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='70B5U9N677URBUQM0USYHRFBPLPD67IQX' where id=58; -update noar ti set v3='70B5U9N677URBUQM0USYHRFBPLPD67IQX' where id=58; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='LA58EWWSB68PRT1LJJB98AH1PXGNTRC06' where id=59; -update noar ti set v0='LA58EWWSB68PRT1LJJB98AH1PXGNTRC06' where id=59; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='AP637AEY7NGUISPC3KD29OZ1O0G75CR4K' where id=59; -update noar ti set v1='AP637AEY7NGUISPC3KD29OZ1O0G75CR4K' where id=59; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='3EE7QBNM4DYRH3Q74JHVYQIKTI9AWAIK4' where id=59; -update noar ti set v2='3EE7QBNM4DYRH3Q74JHVYQIKTI9AWAIK4' where id=59; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='OAZ7WEOSWUYAYE479F9LD22KB2RE9MLTR' where id=59; -update noar ti set v3='OAZ7WEOSWUYAYE479F9LD22KB2RE9MLTR' where id=59; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='1IQOOZMRYNK70DX2TP46IJ5UUGK495Y1I' where id=60; -update noar ti set v0='1IQOOZMRYNK70DX2TP46IJ5UUGK495Y1I' where id=60; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='DQUK6ERL0VW5VMRVFWS248Y276ZPBMGQE' where id=60; -update noar ti set v1='DQUK6ERL0VW5VMRVFWS248Y276ZPBMGQE' where id=60; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='4ZJBYP0QD2WUBRB4NG9C57IF9GQMCZ38A' where id=60; -update noar ti set v2='4ZJBYP0QD2WUBRB4NG9C57IF9GQMCZ38A' where id=60; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='D5IYVYR9W7A6ZE3C5JW18GTMV7CB0BEWK' where id=60; -update noar ti set v3='D5IYVYR9W7A6ZE3C5JW18GTMV7CB0BEWK' where id=60; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='R6703LWXKEUK76X1YQEZOYWMTMO8QDVI9' where id=61; -update noar ti set v0='R6703LWXKEUK76X1YQEZOYWMTMO8QDVI9' where id=61; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='BQKLJYJMXRCQZINREU6BFYUT0QNZU3Z41' where id=61; -update noar ti set v1='BQKLJYJMXRCQZINREU6BFYUT0QNZU3Z41' where id=61; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='3B4WTYG204536B6U6LSAEQWJSMTILWQGH' where id=61; -update noar ti set v2='3B4WTYG204536B6U6LSAEQWJSMTILWQGH' where id=61; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='HEE35D4CB62BMEIB7WAKFZUONQKSLDWU6' where id=61; -update noar ti set v3='HEE35D4CB62BMEIB7WAKFZUONQKSLDWU6' where id=61; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='TJGMRDOJZKJX3BQY0ROVK9MW6KKHXMAFF' where id=62; -update noar ti set v0='TJGMRDOJZKJX3BQY0ROVK9MW6KKHXMAFF' where id=62; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='T4KXHC3H3HWBCG1S8QP9ET8VT9ZHLTBKO' where id=62; -update noar ti set v1='T4KXHC3H3HWBCG1S8QP9ET8VT9ZHLTBKO' where id=62; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='WGR6RZ9YVEEFV7GCKDBK5J6I47U1E1QAE' where id=62; -update noar ti set v2='WGR6RZ9YVEEFV7GCKDBK5J6I47U1E1QAE' where id=62; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='9QFS45BXHQ5GFEIYLN0B4ZR9ZDSUQ95H8' where id=62; -update noar ti set v3='9QFS45BXHQ5GFEIYLN0B4ZR9ZDSUQ95H8' where id=62; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='C0LB0552ZAI7DB3QKO10LWBGEXEOEACAB' where id=63; -update noar ti set v0='C0LB0552ZAI7DB3QKO10LWBGEXEOEACAB' where id=63; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='VKXX45AKTKLFOCWJZT683TDRWSLH2BJRA' where id=63; -update noar ti set v1='VKXX45AKTKLFOCWJZT683TDRWSLH2BJRA' where id=63; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='9T26MXOSVWZ744I7OC2PH13TERW1GHN0K' where id=63; -update noar ti set v2='9T26MXOSVWZ744I7OC2PH13TERW1GHN0K' where id=63; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='YHWLHXQRM5CXAKOFMIO7HPT0HDUIHQQ91' where id=63; -update noar ti set v3='YHWLHXQRM5CXAKOFMIO7HPT0HDUIHQQ91' where id=63; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='L7QNRDGTFGY21MVR5N9IH1NNUS1C2T9U2' where id=64; -update noar ti set v0='L7QNRDGTFGY21MVR5N9IH1NNUS1C2T9U2' where id=64; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='6PBQ0LHXJAYIYEKFJ04WZU6RXBRD86F90' where id=64; -update noar ti set v1='6PBQ0LHXJAYIYEKFJ04WZU6RXBRD86F90' where id=64; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='EE4MO8VSMDYTXV6LW58KYTNQTRDCHM8BQ' where id=64; -update noar ti set v2='EE4MO8VSMDYTXV6LW58KYTNQTRDCHM8BQ' where id=64; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='EAFFHWK6ZSAS83ZTT5I9VWGK0S568Y5NI' where id=64; -update noar ti set v3='EAFFHWK6ZSAS83ZTT5I9VWGK0S568Y5NI' where id=64; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='FY6BMD1JXRRLTDHVD0LJ5856CYRG1U80Q' where id=65; -update noar ti set v0='FY6BMD1JXRRLTDHVD0LJ5856CYRG1U80Q' where id=65; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='2VKZFS4O1NTHB9XFQL97OLY42WXHKG2B8' where id=65; -update noar ti set v1='2VKZFS4O1NTHB9XFQL97OLY42WXHKG2B8' where id=65; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='5ZN2JQDSGF0P8K6NOD7L1CNU4FAZDIAUL' where id=65; -update noar ti set v2='5ZN2JQDSGF0P8K6NOD7L1CNU4FAZDIAUL' where id=65; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='5G0LZLLYOZ7UZ5M93TWZEYMUVQF6G1SZH' where id=65; -update noar ti set v3='5G0LZLLYOZ7UZ5M93TWZEYMUVQF6G1SZH' where id=65; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='57NOVDL3B0S7PWQMPL07DONGGI9JRW3BP' where id=66; -update noar ti set v0='57NOVDL3B0S7PWQMPL07DONGGI9JRW3BP' where id=66; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='LO6VROUBXYCVZ4ISQM3L470ZUOMLHWT14' where id=66; -update noar ti set v1='LO6VROUBXYCVZ4ISQM3L470ZUOMLHWT14' where id=66; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='YUJ6RUU9EN9LQTZFOA1WW49B4QSD4BINX' where id=66; -update noar ti set v2='YUJ6RUU9EN9LQTZFOA1WW49B4QSD4BINX' where id=66; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='CB93SCQNUAHESR1BECFL62QHUPBRV0O7S' where id=66; -update noar ti set v3='CB93SCQNUAHESR1BECFL62QHUPBRV0O7S' where id=66; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='NJ1T120GMHCEO75BWMHFRJLMM3TOU025C' where id=67; -update noar ti set v0='NJ1T120GMHCEO75BWMHFRJLMM3TOU025C' where id=67; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='6RJI6M9VCLG1AXRIRCS9YA3XLIQWQPVV1' where id=67; -update noar ti set v1='6RJI6M9VCLG1AXRIRCS9YA3XLIQWQPVV1' where id=67; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='IRDGWKGAVDAAA3YKGU6E9ET4D1GZF608S' where id=67; -update noar ti set v2='IRDGWKGAVDAAA3YKGU6E9ET4D1GZF608S' where id=67; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='MJJKZ5RBV3FH79U4AB0SRROCXUEVD0LHR' where id=67; -update noar ti set v3='MJJKZ5RBV3FH79U4AB0SRROCXUEVD0LHR' where id=67; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='2C7JFI6EB3RL5Q4TY04BH8KPWS3TMZS2Z' where id=68; -update noar ti set v0='2C7JFI6EB3RL5Q4TY04BH8KPWS3TMZS2Z' where id=68; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='0HJU1QT9FFPRZUYMKKC0RMV2GPDTTRMUQ' where id=68; -update noar ti set v1='0HJU1QT9FFPRZUYMKKC0RMV2GPDTTRMUQ' where id=68; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='E1BKSMZR2DO79KIRCFIRE716ENZRRNI13' where id=68; -update noar ti set v2='E1BKSMZR2DO79KIRCFIRE716ENZRRNI13' where id=68; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='KFNMOZNA542NFSTZKRNV7Z4HQVO7NE860' where id=68; -update noar ti set v3='KFNMOZNA542NFSTZKRNV7Z4HQVO7NE860' where id=68; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='EWBUXHHDFYK8FGJL0MDB5IZB3SMXJ3VGY' where id=69; -update noar ti set v0='EWBUXHHDFYK8FGJL0MDB5IZB3SMXJ3VGY' where id=69; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='POKHSEI10ZP9LN7L94W206670DWWZK70W' where id=69; -update noar ti set v1='POKHSEI10ZP9LN7L94W206670DWWZK70W' where id=69; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='SWLF1ZB3XVDZM7G93X1LTTDXWPS6OCLFX' where id=69; -update noar ti set v2='SWLF1ZB3XVDZM7G93X1LTTDXWPS6OCLFX' where id=69; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='I232ZNA93R4SOW2EAPO734L1QRPCAQCYI' where id=69; -update noar ti set v3='I232ZNA93R4SOW2EAPO734L1QRPCAQCYI' where id=69; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='OZ6JA65Y43HPC54YDS9E7FNJBAH8EO3AV' where id=70; -update noar ti set v0='OZ6JA65Y43HPC54YDS9E7FNJBAH8EO3AV' where id=70; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='MGGNV6P04LUF60VJX3PVO1I9JOFSMOVGH' where id=70; -update noar ti set v1='MGGNV6P04LUF60VJX3PVO1I9JOFSMOVGH' where id=70; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='JNH9IVRXE84XL76VIDWEVLRCP5427NSUT' where id=70; -update noar ti set v2='JNH9IVRXE84XL76VIDWEVLRCP5427NSUT' where id=70; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='JS565B251FRNHUJDRIEKY0Y6V74R3XMNZ' where id=70; -update noar ti set v3='JS565B251FRNHUJDRIEKY0Y6V74R3XMNZ' where id=70; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='AGRS4ON84TBQBQ252OIMBHO6GLO15CIFV' where id=71; -update noar ti set v0='AGRS4ON84TBQBQ252OIMBHO6GLO15CIFV' where id=71; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='GHY1CEEZP7X211JNGEK2D643TQM16C380' where id=71; -update noar ti set v1='GHY1CEEZP7X211JNGEK2D643TQM16C380' where id=71; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='Y16YKA3RQ37SRX6UDPTKS1WW8IQ4YYQE5' where id=71; -update noar ti set v2='Y16YKA3RQ37SRX6UDPTKS1WW8IQ4YYQE5' where id=71; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='2VELPY70X6ZXB63NDTJ2YXBZMPRWVZSQO' where id=71; -update noar ti set v3='2VELPY70X6ZXB63NDTJ2YXBZMPRWVZSQO' where id=71; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='CMXQ08AY4COWXOQ4OOW5NFI6A4Y9SPLY1' where id=72; -update noar ti set v0='CMXQ08AY4COWXOQ4OOW5NFI6A4Y9SPLY1' where id=72; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='LE98GR5C69TYWOE6VU6X2DZ93YKTTYVGB' where id=72; -update noar ti set v1='LE98GR5C69TYWOE6VU6X2DZ93YKTTYVGB' where id=72; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='QLC63V609RJQ81M2HG2EFOPBZOLNWOXEE' where id=72; -update noar ti set v2='QLC63V609RJQ81M2HG2EFOPBZOLNWOXEE' where id=72; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='UQ0RBLIPP76MIWAECE7DTOLLB9LLSZRTW' where id=72; -update noar ti set v3='UQ0RBLIPP76MIWAECE7DTOLLB9LLSZRTW' where id=72; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='X1IJ1WYMEDBI4MQMEIFF1RE3OWIMC29MQ' where id=73; -update noar ti set v0='X1IJ1WYMEDBI4MQMEIFF1RE3OWIMC29MQ' where id=73; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='Y3V894ZKYOPPIPP6S9XSE95O384NL5F81' where id=73; -update noar ti set v1='Y3V894ZKYOPPIPP6S9XSE95O384NL5F81' where id=73; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='FAHE9Z45MIV12DAZT6DGL24T6CSZJMUZH' where id=73; -update noar ti set v2='FAHE9Z45MIV12DAZT6DGL24T6CSZJMUZH' where id=73; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='99T42KM7M72CS46SDEFJ5P0GZBU6KIAZ6' where id=73; -update noar ti set v3='99T42KM7M72CS46SDEFJ5P0GZBU6KIAZ6' where id=73; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='WBOWI0CEW7B9LI5PDLJC8FIYLKJJ6SH18' where id=74; -update noar ti set v0='WBOWI0CEW7B9LI5PDLJC8FIYLKJJ6SH18' where id=74; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='LSYOJO1Q2V8GPXYCXJA77ZPUF1JL6515N' where id=74; -update noar ti set v1='LSYOJO1Q2V8GPXYCXJA77ZPUF1JL6515N' where id=74; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='O5CUZUT5IYTS1JB86QX8CRZR6ZKF8KCPO' where id=74; -update noar ti set v2='O5CUZUT5IYTS1JB86QX8CRZR6ZKF8KCPO' where id=74; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='HSBWA8KJVH7NMXG8TXWHMPTM153K1803M' where id=74; -update noar ti set v3='HSBWA8KJVH7NMXG8TXWHMPTM153K1803M' where id=74; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='P1AKA9RXMQUPJ8UH4YSF2ZZMM4KI3KLOI' where id=75; -update noar ti set v0='P1AKA9RXMQUPJ8UH4YSF2ZZMM4KI3KLOI' where id=75; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='9BLOFZIHZMD70OKANU3ZT3QUDDP2Z3HK2' where id=75; -update noar ti set v1='9BLOFZIHZMD70OKANU3ZT3QUDDP2Z3HK2' where id=75; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='YLAZUKU8YIKPQU31M87L2MF6HSBNRFGSX' where id=75; -update noar ti set v2='YLAZUKU8YIKPQU31M87L2MF6HSBNRFGSX' where id=75; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='F98NSPC5CA6PWNYZBC606V28D1GC2NLII' where id=75; -update noar ti set v3='F98NSPC5CA6PWNYZBC606V28D1GC2NLII' where id=75; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='T98JPNLVHF2P083KV6N7YKE5FCA670P1H' where id=76; -update noar ti set v0='T98JPNLVHF2P083KV6N7YKE5FCA670P1H' where id=76; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='AZ975CNB0C9FLI9A0L6R7R4H0J0A1K458' where id=76; -update noar ti set v1='AZ975CNB0C9FLI9A0L6R7R4H0J0A1K458' where id=76; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='3N2LLW7WS9ZZ6HZBOKWVHMPQWUF1CC4X0' where id=76; -update noar ti set v2='3N2LLW7WS9ZZ6HZBOKWVHMPQWUF1CC4X0' where id=76; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='73VCJOOT0IQARR6DZET8UHYMHVY2Z6JJ4' where id=76; -update noar ti set v3='73VCJOOT0IQARR6DZET8UHYMHVY2Z6JJ4' where id=76; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='XXB3IJHCAMI97ZQ2ZACHFBGFEXB0CAUSE' where id=77; -update noar ti set v0='XXB3IJHCAMI97ZQ2ZACHFBGFEXB0CAUSE' where id=77; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='21KPBI7SBPI14NKO0C7QUBBCGXK7ZKOTZ' where id=77; -update noar ti set v1='21KPBI7SBPI14NKO0C7QUBBCGXK7ZKOTZ' where id=77; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='URLPIFRVYNAMYCRX7LLKQ5MT7FJFPB7WH' where id=77; -update noar ti set v2='URLPIFRVYNAMYCRX7LLKQ5MT7FJFPB7WH' where id=77; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='YOP561AH87AQJF4L8SVF96A1B1ND7V314' where id=77; -update noar ti set v3='YOP561AH87AQJF4L8SVF96A1B1ND7V314' where id=77; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='ZBFERG4QNM083VQODBXEXH762ZJSWKL92' where id=78; -update noar ti set v0='ZBFERG4QNM083VQODBXEXH762ZJSWKL92' where id=78; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='VQR847OOUIBLXNCD0DDC6R8AUNRB76O91' where id=78; -update noar ti set v1='VQR847OOUIBLXNCD0DDC6R8AUNRB76O91' where id=78; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='ZE40D1M8DAENTUXGQ2MQDFMQZA6O1CVO2' where id=78; -update noar ti set v2='ZE40D1M8DAENTUXGQ2MQDFMQZA6O1CVO2' where id=78; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='7ZGDF7C47NSDM34BH21FVRF21KPWPLPYK' where id=78; -update noar ti set v3='7ZGDF7C47NSDM34BH21FVRF21KPWPLPYK' where id=78; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='4SGF3DQGFXV1CGDG5ANXXO47UY17Y11W8' where id=79; -update noar ti set v0='4SGF3DQGFXV1CGDG5ANXXO47UY17Y11W8' where id=79; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='K5O85JPF9UH5A8G7MHIZW96EUU9A4CFA1' where id=79; -update noar ti set v1='K5O85JPF9UH5A8G7MHIZW96EUU9A4CFA1' where id=79; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='9TBJKUOURFRTJRNJUD5V9MHDXRNUMR1LT' where id=79; -update noar ti set v2='9TBJKUOURFRTJRNJUD5V9MHDXRNUMR1LT' where id=79; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='QJWTFODVSDM8EO6UHJ5KPGLX369ODALZN' where id=79; -update noar ti set v3='QJWTFODVSDM8EO6UHJ5KPGLX369ODALZN' where id=79; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='VLAJ4S98D5U7C43CB5FUM00SD288XO8RV' where id=80; -update noar ti set v0='VLAJ4S98D5U7C43CB5FUM00SD288XO8RV' where id=80; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='13QFF0874RF6M24B64V4OETJGOLOV17E4' where id=80; -update noar ti set v1='13QFF0874RF6M24B64V4OETJGOLOV17E4' where id=80; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='X7SUAGLHK4B0KQFHL7XIR783SIXBV4QN5' where id=80; -update noar ti set v2='X7SUAGLHK4B0KQFHL7XIR783SIXBV4QN5' where id=80; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='R72XWALF9KDJO3WXK8I6WCH34N9G4ZA8O' where id=80; -update noar ti set v3='R72XWALF9KDJO3WXK8I6WCH34N9G4ZA8O' where id=80; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='KTEFFO96XY7KY2IBL894XBPXAZWXAYFL1' where id=81; -update noar ti set v0='KTEFFO96XY7KY2IBL894XBPXAZWXAYFL1' where id=81; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='IWSED1A5WIPWZ3NFHEX8410M80SS29MPC' where id=81; -update noar ti set v1='IWSED1A5WIPWZ3NFHEX8410M80SS29MPC' where id=81; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='JITMLM0KGDD1MPIOYZD4SEYYDY8O0IPZL' where id=81; -update noar ti set v2='JITMLM0KGDD1MPIOYZD4SEYYDY8O0IPZL' where id=81; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='FWGVBCKX4QOL485DJBQVL466IATPH0J0S' where id=81; -update noar ti set v3='FWGVBCKX4QOL485DJBQVL466IATPH0J0S' where id=81; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='DTNA7INNCJNI3P0AYIVAPISMBYR9RMLV5' where id=82; -update noar ti set v0='DTNA7INNCJNI3P0AYIVAPISMBYR9RMLV5' where id=82; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='NNMSJ97H4ZSXEKZKXSXAPPHD4GUNE7OG4' where id=82; -update noar ti set v1='NNMSJ97H4ZSXEKZKXSXAPPHD4GUNE7OG4' where id=82; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='XQMMZ8E3GDICMQ1E5J5RXE8SX78M1XG7L' where id=82; -update noar ti set v2='XQMMZ8E3GDICMQ1E5J5RXE8SX78M1XG7L' where id=82; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='68H0B83BFFWEMG7YZHW2EFCQERQVWGNVK' where id=82; -update noar ti set v3='68H0B83BFFWEMG7YZHW2EFCQERQVWGNVK' where id=82; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='QMO9TTFMPJ4TO73LPFBJ3AC0DEKYAB0ET' where id=83; -update noar ti set v0='QMO9TTFMPJ4TO73LPFBJ3AC0DEKYAB0ET' where id=83; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='5VQTX3YJCEFUF1FG4XWJWLJ14TFZJJXIR' where id=83; -update noar ti set v1='5VQTX3YJCEFUF1FG4XWJWLJ14TFZJJXIR' where id=83; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='RSYL7JADB2ZJCXLWISPT73N8WHTO6IW83' where id=83; -update noar ti set v2='RSYL7JADB2ZJCXLWISPT73N8WHTO6IW83' where id=83; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='ZVCSF05JJG04TIMWUVFE11IKK3L1JU7C5' where id=83; -update noar ti set v3='ZVCSF05JJG04TIMWUVFE11IKK3L1JU7C5' where id=83; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='ZW2OKFTERFEDTGDOSF7E2F92JEE0J5POQ' where id=84; -update noar ti set v0='ZW2OKFTERFEDTGDOSF7E2F92JEE0J5POQ' where id=84; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='XBDJM2ACN0I1MI2J313FEQB1424LR8EDE' where id=84; -update noar ti set v1='XBDJM2ACN0I1MI2J313FEQB1424LR8EDE' where id=84; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='2CB71ZX2DK3QV3GOQEM6Z51F9N2ZCZ8CQ' where id=84; -update noar ti set v2='2CB71ZX2DK3QV3GOQEM6Z51F9N2ZCZ8CQ' where id=84; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='H0H1PLEZZVC0O2NGJ1UKB4UX6WKG9WNO0' where id=84; -update noar ti set v3='H0H1PLEZZVC0O2NGJ1UKB4UX6WKG9WNO0' where id=84; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='CNCY1KPXQ2R9XGXW3358XVK0CPJ3KFBHZ' where id=85; -update noar ti set v0='CNCY1KPXQ2R9XGXW3358XVK0CPJ3KFBHZ' where id=85; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='P7EFQFDLO0O09Q9K4YTEUSN7UDXV9KSZJ' where id=85; -update noar ti set v1='P7EFQFDLO0O09Q9K4YTEUSN7UDXV9KSZJ' where id=85; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='5FDYDRQMZ5T60YZCE7DL8VADZ4Z5F23Z7' where id=85; -update noar ti set v2='5FDYDRQMZ5T60YZCE7DL8VADZ4Z5F23Z7' where id=85; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='45NI5UNX32OO7QWYN33WXNNQPTC14SJT3' where id=85; -update noar ti set v3='45NI5UNX32OO7QWYN33WXNNQPTC14SJT3' where id=85; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='AQEBZQBLDYRATIYRW2Q4VB9Z3QIXFHTMA' where id=86; -update noar ti set v0='AQEBZQBLDYRATIYRW2Q4VB9Z3QIXFHTMA' where id=86; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='G4DPWHM507DIR6LFHS6Z25OIL893V7RE0' where id=86; -update noar ti set v1='G4DPWHM507DIR6LFHS6Z25OIL893V7RE0' where id=86; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='BDHH5S388F9ALHJTSPK3728EY9PCYGIXL' where id=86; -update noar ti set v2='BDHH5S388F9ALHJTSPK3728EY9PCYGIXL' where id=86; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='269GE1YSO0A3ETDNC3839UHISZC5BEXUJ' where id=86; -update noar ti set v3='269GE1YSO0A3ETDNC3839UHISZC5BEXUJ' where id=86; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='9TVS7OAD7LITZBQUL99GKCYOZBCIQBPKQ' where id=87; -update noar ti set v0='9TVS7OAD7LITZBQUL99GKCYOZBCIQBPKQ' where id=87; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='7NDTE4RT66B9DUEKQE590QRVQSEEUBBLP' where id=87; -update noar ti set v1='7NDTE4RT66B9DUEKQE590QRVQSEEUBBLP' where id=87; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='75UU9H5MJ5LDBWHU5GQTJBSOGU4K0EW0I' where id=87; -update noar ti set v2='75UU9H5MJ5LDBWHU5GQTJBSOGU4K0EW0I' where id=87; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='2GTQTOQO0O7XIOV6CTGGV495DG1HZ9JRE' where id=87; -update noar ti set v3='2GTQTOQO0O7XIOV6CTGGV495DG1HZ9JRE' where id=87; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='BKBZD41ZXLAQ2Y7CJ8A9527P8I7PM4KFH' where id=88; -update noar ti set v0='BKBZD41ZXLAQ2Y7CJ8A9527P8I7PM4KFH' where id=88; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='PR6O564MYVY1V2T703CSCFPIDTT9Z7NXH' where id=88; -update noar ti set v1='PR6O564MYVY1V2T703CSCFPIDTT9Z7NXH' where id=88; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='XG59QG8DHXVGPONH4AMM85D5ZJG3MG1GT' where id=88; -update noar ti set v2='XG59QG8DHXVGPONH4AMM85D5ZJG3MG1GT' where id=88; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='E2PMCQJNBY0RIK7672MATBTLUB2CWW2FE' where id=88; -update noar ti set v3='E2PMCQJNBY0RIK7672MATBTLUB2CWW2FE' where id=88; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='ZI17RPYY2F1N7I9CH1K6VVXJJA0PQK0SF' where id=89; -update noar ti set v0='ZI17RPYY2F1N7I9CH1K6VVXJJA0PQK0SF' where id=89; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='62VI8M2LZKFMRHA2P3CNH8XMRDSUKLLPL' where id=89; -update noar ti set v1='62VI8M2LZKFMRHA2P3CNH8XMRDSUKLLPL' where id=89; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='5L98FNGZF9RSO2MY8V3AOXPTWH0W2856B' where id=89; -update noar ti set v2='5L98FNGZF9RSO2MY8V3AOXPTWH0W2856B' where id=89; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='60XB753EJQ1YGGQV083YB9K3T6RK5QDQZ' where id=89; -update noar ti set v3='60XB753EJQ1YGGQV083YB9K3T6RK5QDQZ' where id=89; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='3T7OPS6T17EEELNYMF5KQXCP6T85AAK2W' where id=90; -update noar ti set v0='3T7OPS6T17EEELNYMF5KQXCP6T85AAK2W' where id=90; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='51EGCPTYNNJ9H6H3JIJBRHA7M7Q5DLV6L' where id=90; -update noar ti set v1='51EGCPTYNNJ9H6H3JIJBRHA7M7Q5DLV6L' where id=90; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='1KO904YXC0NBCRART470WFCYNX9I8GRGG' where id=90; -update noar ti set v2='1KO904YXC0NBCRART470WFCYNX9I8GRGG' where id=90; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='HWJUBIFBUL5T8W0TXP0WGC0YSDU4F87QE' where id=90; -update noar ti set v3='HWJUBIFBUL5T8W0TXP0WGC0YSDU4F87QE' where id=90; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='MCX8VBA8SIEVZIKOSFUNEZWALPCVAHZA9' where id=91; -update noar ti set v0='MCX8VBA8SIEVZIKOSFUNEZWALPCVAHZA9' where id=91; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='HMHPSE5ZJX0EPY4AD0SONINHVO9U2KX9U' where id=91; -update noar ti set v1='HMHPSE5ZJX0EPY4AD0SONINHVO9U2KX9U' where id=91; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='U2NLR5IKGB4WV484HQX2U1274N42LR4HM' where id=91; -update noar ti set v2='U2NLR5IKGB4WV484HQX2U1274N42LR4HM' where id=91; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='E8Y7KYC1H57JSOZR5CW9V4I8M1OHTMS3Y' where id=91; -update noar ti set v3='E8Y7KYC1H57JSOZR5CW9V4I8M1OHTMS3Y' where id=91; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='MP24496CCZZZB1WF84X6UTK2ZYJ4Q4JRH' where id=92; -update noar ti set v0='MP24496CCZZZB1WF84X6UTK2ZYJ4Q4JRH' where id=92; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='632NX3QHU2LR265L3N8I0L5JRQ6ATNBDK' where id=92; -update noar ti set v1='632NX3QHU2LR265L3N8I0L5JRQ6ATNBDK' where id=92; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='ZUEOHXZ6I7PJG8CDKCYGC1P9KXOGXPAAL' where id=92; -update noar ti set v2='ZUEOHXZ6I7PJG8CDKCYGC1P9KXOGXPAAL' where id=92; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='V0CC2HHD0CKQH2LHNLT1YCD38CA3VBJON' where id=92; -update noar ti set v3='V0CC2HHD0CKQH2LHNLT1YCD38CA3VBJON' where id=92; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='CIJ08XBVT4N3QBASLZSRNMJX11L27VRTY' where id=93; -update noar ti set v0='CIJ08XBVT4N3QBASLZSRNMJX11L27VRTY' where id=93; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='ODHZY95OPJYEM1YM39CNXSO8TCJ3Q176X' where id=93; -update noar ti set v1='ODHZY95OPJYEM1YM39CNXSO8TCJ3Q176X' where id=93; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='QB6FDMHZA3DZYFFK7Y4Y536F6GMNWXCPG' where id=93; -update noar ti set v2='QB6FDMHZA3DZYFFK7Y4Y536F6GMNWXCPG' where id=93; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='IY18E8SKPI40SGJDA5O2PKMFKUH0S0250' where id=93; -update noar ti set v3='IY18E8SKPI40SGJDA5O2PKMFKUH0S0250' where id=93; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='7HRJGOIOH6M8R3MBABI3347U0NQJDTTZS' where id=94; -update noar ti set v0='7HRJGOIOH6M8R3MBABI3347U0NQJDTTZS' where id=94; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='587585VOKF9DAXK0I27DD895BDT8UJPLI' where id=94; -update noar ti set v1='587585VOKF9DAXK0I27DD895BDT8UJPLI' where id=94; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='P3NA23XVT8YE2CC1M1ANRQ66EMZUVIQBL' where id=94; -update noar ti set v2='P3NA23XVT8YE2CC1M1ANRQ66EMZUVIQBL' where id=94; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='N53W139ISAB8KUGVRX7X6Q9CI6KF637S3' where id=94; -update noar ti set v3='N53W139ISAB8KUGVRX7X6Q9CI6KF637S3' where id=94; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='72C7ANCIBV6PSIJLG1KXGGOV7AUHHK3T9' where id=95; -update noar ti set v0='72C7ANCIBV6PSIJLG1KXGGOV7AUHHK3T9' where id=95; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='LL2TPQYROSPE7WIDE1QRUL697CDK9KKKQ' where id=95; -update noar ti set v1='LL2TPQYROSPE7WIDE1QRUL697CDK9KKKQ' where id=95; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='A2HX1PJKNPXGS8Y7B1XQ2748EC70HVI5Z' where id=95; -update noar ti set v2='A2HX1PJKNPXGS8Y7B1XQ2748EC70HVI5Z' where id=95; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='20Y3TKYBJO9U3175JI59W7Y4XGGW2Z2D9' where id=95; -update noar ti set v3='20Y3TKYBJO9U3175JI59W7Y4XGGW2Z2D9' where id=95; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='154T5LUDKY2WSUB5YX5RQ6J735NDN7YP3' where id=96; -update noar ti set v0='154T5LUDKY2WSUB5YX5RQ6J735NDN7YP3' where id=96; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='ULYRIHE1QD9E4W4V1A9K0F5SE5HEX3ER5' where id=96; -update noar ti set v1='ULYRIHE1QD9E4W4V1A9K0F5SE5HEX3ER5' where id=96; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='1HKPI8WULN8PU2QBVA7IVQUIPXFXTVUCK' where id=96; -update noar ti set v2='1HKPI8WULN8PU2QBVA7IVQUIPXFXTVUCK' where id=96; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='IYGAZNVNCYEAI2OMZEJMVIODDF6FW9845' where id=96; -update noar ti set v3='IYGAZNVNCYEAI2OMZEJMVIODDF6FW9845' where id=96; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='4A38UMXJ8QCZARQMNLESLUKJ72ZU7ESQC' where id=97; -update noar ti set v0='4A38UMXJ8QCZARQMNLESLUKJ72ZU7ESQC' where id=97; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='PAR1XBCZFT852Q8NCIT9300018D1UTLFO' where id=97; -update noar ti set v1='PAR1XBCZFT852Q8NCIT9300018D1UTLFO' where id=97; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='TQWRBG455K6N8PA9KRQCAEW2D5UPF01JS' where id=97; -update noar ti set v2='TQWRBG455K6N8PA9KRQCAEW2D5UPF01JS' where id=97; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='QTKE9966ERUKBBTBFTT49UPWJJBMG9XIE' where id=97; -update noar ti set v3='QTKE9966ERUKBBTBFTT49UPWJJBMG9XIE' where id=97; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='6UUWGKGGVZFMJ2SZPZGT3M6FMCTAY0NEB' where id=98; -update noar ti set v0='6UUWGKGGVZFMJ2SZPZGT3M6FMCTAY0NEB' where id=98; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='1H449U44PIMOS2GKKWF48UJM4F5RE5QNO' where id=98; -update noar ti set v1='1H449U44PIMOS2GKKWF48UJM4F5RE5QNO' where id=98; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='1L0YUIQCJF1G7GICFNVCX5M8B6TCWRSC8' where id=98; -update noar ti set v2='1L0YUIQCJF1G7GICFNVCX5M8B6TCWRSC8' where id=98; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='5S4MH3ZHVWI7R51FW3G265C5YUOHSKRLY' where id=98; -update noar ti set v3='5S4MH3ZHVWI7R51FW3G265C5YUOHSKRLY' where id=98; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='0Z9GTT0CRTSIRMPF3FIP2GJI6LME72GCT' where id=99; -update noar ti set v0='0Z9GTT0CRTSIRMPF3FIP2GJI6LME72GCT' where id=99; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='0PVF9ONHD3QR6ROWWVIW86O4A85UX5INJ' where id=99; -update noar ti set v1='0PVF9ONHD3QR6ROWWVIW86O4A85UX5INJ' where id=99; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='O6DP7BSQ5HRF2GX4QOHHRYXMASKRRB5J3' where id=99; -update noar ti set v2='O6DP7BSQ5HRF2GX4QOHHRYXMASKRRB5J3' where id=99; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='I4NUTHC417X1WZOJT6P9NOBSQAWFOSXPK' where id=99; -update noar ti set v3='I4NUTHC417X1WZOJT6P9NOBSQAWFOSXPK' where id=99; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -f0 int null, -v0 varbinary(256) null, -v1 varbinary(256) null, -v2 varbinary(256) null, -v3 varbinary(256) null, -b0 text null -) engine=tokudb; -insert into tt (id) values (0); -insert into tt values (1,2,'a','b','c','d','e'); -insert into tt values (2,3,'','','','',''); -insert into tt values (3,4,'','','','',''); -insert into tt values (4,5,'','','','',''); -insert into tt values (5,6,'','','','',''); -insert into tt values (6,7,'','','','',''); -insert into tt values (7,8,'','','','',''); -insert into tt values (8,9,'','','','',''); -insert into tt values (9,10,'','','','',''); -insert into tt values (10,11,'','','','',''); -insert into tt values (11,12,'','','','',''); -insert into tt values (12,13,'','','','',''); -insert into tt values (13,14,'','','','',''); -insert into tt values (14,15,'','','','',''); -insert into tt values (15,16,'','','','',''); -insert into tt values (16,17,'','','','',''); -insert into tt values (17,18,'','','','',''); -insert into tt values (18,19,'','','','',''); -insert into tt values (19,20,'','','','',''); -insert into tt values (20,21,'','','','',''); -insert into tt values (21,22,'','','','',''); -insert into tt values (22,23,'','','','',''); -insert into tt values (23,24,'','','','',''); -insert into tt values (24,25,'','','','',''); -insert into tt values (25,26,'','','','',''); -insert into tt values (26,27,'','','','',''); -insert into tt values (27,28,'','','','',''); -insert into tt values (28,29,'','','','',''); -insert into tt values (29,30,'','','','',''); -insert into tt values (30,31,'','','','',''); -insert into tt values (31,32,'','','','',''); -insert into tt values (32,33,'','','','',''); -insert into tt values (33,34,'','','','',''); -insert into tt values (34,35,'','','','',''); -insert into tt values (35,36,'','','','',''); -insert into tt values (36,37,'','','','',''); -insert into tt values (37,38,'','','','',''); -insert into tt values (38,39,'','','','',''); -insert into tt values (39,40,'','','','',''); -insert into tt values (40,41,'','','','',''); -insert into tt values (41,42,'','','','',''); -insert into tt values (42,43,'','','','',''); -insert into tt values (43,44,'','','','',''); -insert into tt values (44,45,'','','','',''); -insert into tt values (45,46,'','','','',''); -insert into tt values (46,47,'','','','',''); -insert into tt values (47,48,'','','','',''); -insert into tt values (48,49,'','','','',''); -insert into tt values (49,50,'','','','',''); -insert into tt values (50,51,'','','','',''); -insert into tt values (51,52,'','','','',''); -insert into tt values (52,53,'','','','',''); -insert into tt values (53,54,'','','','',''); -insert into tt values (54,55,'','','','',''); -insert into tt values (55,56,'','','','',''); -insert into tt values (56,57,'','','','',''); -insert into tt values (57,58,'','','','',''); -insert into tt values (58,59,'','','','',''); -insert into tt values (59,60,'','','','',''); -insert into tt values (60,61,'','','','',''); -insert into tt values (61,62,'','','','',''); -insert into tt values (62,63,'','','','',''); -insert into tt values (63,64,'','','','',''); -insert into tt values (64,65,'','','','',''); -insert into tt values (65,66,'','','','',''); -insert into tt values (66,67,'','','','',''); -insert into tt values (67,68,'','','','',''); -insert into tt values (68,69,'','','','',''); -insert into tt values (69,70,'','','','',''); -insert into tt values (70,71,'','','','',''); -insert into tt values (71,72,'','','','',''); -insert into tt values (72,73,'','','','',''); -insert into tt values (73,74,'','','','',''); -insert into tt values (74,75,'','','','',''); -insert into tt values (75,76,'','','','',''); -insert into tt values (76,77,'','','','',''); -insert into tt values (77,78,'','','','',''); -insert into tt values (78,79,'','','','',''); -insert into tt values (79,80,'','','','',''); -insert into tt values (80,81,'','','','',''); -insert into tt values (81,82,'','','','',''); -insert into tt values (82,83,'','','','',''); -insert into tt values (83,84,'','','','',''); -insert into tt values (84,85,'','','','',''); -insert into tt values (85,86,'','','','',''); -insert into tt values (86,87,'','','','',''); -insert into tt values (87,88,'','','','',''); -insert into tt values (88,89,'','','','',''); -insert into tt values (89,90,'','','','',''); -insert into tt values (90,91,'','','','',''); -insert into tt values (91,92,'','','','',''); -insert into tt values (92,93,'','','','',''); -insert into tt values (93,94,'','','','',''); -insert into tt values (94,95,'','','','',''); -insert into tt values (95,96,'','','','',''); -insert into tt values (96,97,'','','','',''); -insert into tt values (97,98,'','','','',''); -insert into tt values (98,99,'','','','',''); -insert into tt values (99,100,'','','','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='null this 0' where id=0; -update noar ti set v0='null this 0' where id=0; -update noar tt set v1='null is 1' where id=0; -update noar ti set v1='null is 1' where id=0; -update noar tt set v2='null a 2' where id=0; -update noar ti set v2='null a 2' where id=0; -update noar tt set v3='null test 3' where id=0; -update noar ti set v3='null test 3' where id=0; -update noar tt set v0='this 0' where id=1; -update noar ti set v0='this 0' where id=1; -update noar tt set v1='is 1' where id=1; -update noar ti set v1='is 1' where id=1; -update noar tt set v2='another 2' where id=1; -update noar ti set v2='another 2' where id=1; -update noar tt set v3='test 3' where id=1; -update noar ti set v3='test 3' where id=1; -update noar tt set v0='N5FUIPBLY8BCDFMOM9J59U0Z6ZV7IZ4E3EAR82XWC3AG45V57OCIGRMB3RV2U64D26F8M4220UOTUVAKCFNMNCNNAHJJ1203UCDOLEG6NDI1DKTKDP7L9TMA0F858TW5NITP19TN4QSBMILPWVDQA59KKMG4TW5IDJ2YXVC0L0XOE4LJ7UT764J6Y2RLZDBLD90HWBK9M3RFICD4U9KA6GVDVGWTXMNGUF1QQWBPEMFOWK5TFPP5RV1UDMLGCC3JC' where id=2; -update noar ti set v0='N5FUIPBLY8BCDFMOM9J59U0Z6ZV7IZ4E3EAR82XWC3AG45V57OCIGRMB3RV2U64D26F8M4220UOTUVAKCFNMNCNNAHJJ1203UCDOLEG6NDI1DKTKDP7L9TMA0F858TW5NITP19TN4QSBMILPWVDQA59KKMG4TW5IDJ2YXVC0L0XOE4LJ7UT764J6Y2RLZDBLD90HWBK9M3RFICD4U9KA6GVDVGWTXMNGUF1QQWBPEMFOWK5TFPP5RV1UDMLGCC3JC' where id=2; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='901NIKL85HV562NWKBJ0R1VA63AE1V5IIYMU33TGV3E43TZ2Z3B84JBQ94H1S4IL5KCZ0VVXMHB7Z5W8QMZYSJY9QFRK4AUR8LYOTCXV7SCLKR7713BT4QY7XND05IZQR6RMIFLN0NYOH2L27LVVZXBERLGX7PMM1RYNEUZIW5NKU5P2Q7WOOTEMZ2X0DB2CX2GN49W1Q10MUM2K8Y463OUPGDUY855FXT62EHAZXBAEAFTR7391OXTAPH0V9VG7M' where id=2; -update noar ti set v1='901NIKL85HV562NWKBJ0R1VA63AE1V5IIYMU33TGV3E43TZ2Z3B84JBQ94H1S4IL5KCZ0VVXMHB7Z5W8QMZYSJY9QFRK4AUR8LYOTCXV7SCLKR7713BT4QY7XND05IZQR6RMIFLN0NYOH2L27LVVZXBERLGX7PMM1RYNEUZIW5NKU5P2Q7WOOTEMZ2X0DB2CX2GN49W1Q10MUM2K8Y463OUPGDUY855FXT62EHAZXBAEAFTR7391OXTAPH0V9VG7M' where id=2; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='DYNBQU5XXFPMUXY54REGU5GW8914R17K9IJIRJ4UP153CJJMRXRVRHLO4FW4JZFTG9XOXF14RM7A7AX09NUSRPCVYXAAG5O111GJRTY2RHZBLKLVCUYNFW6SVOL64MHREY9BX26OUTR4W5UV984Z2F07MKR7A8CSEO0Q7JQUONZE1MSD61JV890OPAUPRGER1YQEGISCX2T1G2Q7YMFXY7GPVGFOJO2TGA0QR4OEXFBSAKVVJL2A3XWW1VJKB32BZ' where id=2; -update noar ti set v2='DYNBQU5XXFPMUXY54REGU5GW8914R17K9IJIRJ4UP153CJJMRXRVRHLO4FW4JZFTG9XOXF14RM7A7AX09NUSRPCVYXAAG5O111GJRTY2RHZBLKLVCUYNFW6SVOL64MHREY9BX26OUTR4W5UV984Z2F07MKR7A8CSEO0Q7JQUONZE1MSD61JV890OPAUPRGER1YQEGISCX2T1G2Q7YMFXY7GPVGFOJO2TGA0QR4OEXFBSAKVVJL2A3XWW1VJKB32BZ' where id=2; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='8TBDTM95ASERHO1JDMRTNWWG2FTGM6T7QA5F25XH4YOCLSUK4OS28CUIIYMB49ZG0UKEACZVPVXG81UOHDCTWTGTIVSSTFN5842WSAVD9EE1VHVKJ060YULWCIVSITOJGITMNF6PH6RA2SD2ZHIK1BSX1U2N7H12K8AMO53UMZI1UKNWFMG641Y0CU0154TC1AFBCUECOMF6USXRWQOIS5SZQ8MW065D0V49AIGS7IIR7JER26DDAVOZQ2LXPVT5L' where id=2; -update noar ti set v3='8TBDTM95ASERHO1JDMRTNWWG2FTGM6T7QA5F25XH4YOCLSUK4OS28CUIIYMB49ZG0UKEACZVPVXG81UOHDCTWTGTIVSSTFN5842WSAVD9EE1VHVKJ060YULWCIVSITOJGITMNF6PH6RA2SD2ZHIK1BSX1U2N7H12K8AMO53UMZI1UKNWFMG641Y0CU0154TC1AFBCUECOMF6USXRWQOIS5SZQ8MW065D0V49AIGS7IIR7JER26DDAVOZQ2LXPVT5L' where id=2; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='8OEJETZB0O1XZV5WUHM31U4H9M88EH6295AS05MXZZ6AD6OKBLSZP0V15I5ZWS503YPMZ479IU0J9BKYVI78SU01J20M4NXG863M0ITMD3SEGE9XUECDWL08LA8BVBZMQ87ZEG8A07OT0ZNVQ2JTJSFMXXLU3BTKRT8H5I2FM6QSQTUR99VXEEOZ8ZXQKHI7KAZPW88U644RB7CW64E8CGCN6GCZUTKV6V8XFWSYAUJVX0S2HLZJL3SUHCKJ0E3F4' where id=3; -update noar ti set v0='8OEJETZB0O1XZV5WUHM31U4H9M88EH6295AS05MXZZ6AD6OKBLSZP0V15I5ZWS503YPMZ479IU0J9BKYVI78SU01J20M4NXG863M0ITMD3SEGE9XUECDWL08LA8BVBZMQ87ZEG8A07OT0ZNVQ2JTJSFMXXLU3BTKRT8H5I2FM6QSQTUR99VXEEOZ8ZXQKHI7KAZPW88U644RB7CW64E8CGCN6GCZUTKV6V8XFWSYAUJVX0S2HLZJL3SUHCKJ0E3F4' where id=3; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='WZBXEEGO5NPB68OJ5NGUZY5OS3WAO0I8IKCT96KCD47A5ZLQYMAGTOHINCTRTCMMTF5Z9O7IB2B66R39HTC5ZWIC9RL05TNQE22N91XZAA0CQVCVO8J5I8JEYI0VSOGANNTGHCTZYURX8EPYE7TDTIQNHMQ28DHOFAY81GD82BLPGWV17PH0A1736URXSUO1KUQYZ8PSK6CRGV248VL49PR6IBU3ZYV1QQCMLU5EYXV6YPYZVJLNVND895YJOVEM5' where id=3; -update noar ti set v1='WZBXEEGO5NPB68OJ5NGUZY5OS3WAO0I8IKCT96KCD47A5ZLQYMAGTOHINCTRTCMMTF5Z9O7IB2B66R39HTC5ZWIC9RL05TNQE22N91XZAA0CQVCVO8J5I8JEYI0VSOGANNTGHCTZYURX8EPYE7TDTIQNHMQ28DHOFAY81GD82BLPGWV17PH0A1736URXSUO1KUQYZ8PSK6CRGV248VL49PR6IBU3ZYV1QQCMLU5EYXV6YPYZVJLNVND895YJOVEM5' where id=3; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='Y1QARB3SQBDWJF18Y1QWIDSXUQ45Z6MF6CTM2J25D3LP8CWXK72X5KUGCTIVJD4A923UFSCJQBXM6OOACWEGB5RX03C9ZDK7ZNRVFO2I7CVSUQ1U36TZL6JLKJXCL060F4XUIE1PNVFO43TC5JBBT9PZPSVZRNNEOQ2UW3N8YFJ4VCFGU34L8SM33812TRKGOVFAOLPDZOSW25OP7X55H2WIHFRYLQU5ITCAY3R3H071E1QDY8B6JTTHVOHLI2IY5' where id=3; -update noar ti set v2='Y1QARB3SQBDWJF18Y1QWIDSXUQ45Z6MF6CTM2J25D3LP8CWXK72X5KUGCTIVJD4A923UFSCJQBXM6OOACWEGB5RX03C9ZDK7ZNRVFO2I7CVSUQ1U36TZL6JLKJXCL060F4XUIE1PNVFO43TC5JBBT9PZPSVZRNNEOQ2UW3N8YFJ4VCFGU34L8SM33812TRKGOVFAOLPDZOSW25OP7X55H2WIHFRYLQU5ITCAY3R3H071E1QDY8B6JTTHVOHLI2IY5' where id=3; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='LEERCIAX974R0MFZ27OLIYWQ1JMERYH9M8262B125Y9P2IY5WW2JU0L7Y3QIRJL1NGU7OIT8GUYAR6XFU98TSRMYPIA9JS95UC4CTZ8630DP8VG0GOJTHAUYVWXMPUZ3DOMVIWPLHVO12JCN6L9PBX3ZDKQVV589DW59GZOCKE7U30KB6VUEEP8WR2GIX1957JXN4WRMS8FZAXPBVNJIO9S540YOFNI54T02NB5SHDPDYOFZ3JHYUMEAQRR50MCOU' where id=3; -update noar ti set v3='LEERCIAX974R0MFZ27OLIYWQ1JMERYH9M8262B125Y9P2IY5WW2JU0L7Y3QIRJL1NGU7OIT8GUYAR6XFU98TSRMYPIA9JS95UC4CTZ8630DP8VG0GOJTHAUYVWXMPUZ3DOMVIWPLHVO12JCN6L9PBX3ZDKQVV589DW59GZOCKE7U30KB6VUEEP8WR2GIX1957JXN4WRMS8FZAXPBVNJIO9S540YOFNI54T02NB5SHDPDYOFZ3JHYUMEAQRR50MCOU' where id=3; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='S9VT28U398ANZH2CI6MXDBOBYVU9QSXW5QA3UQSF13GNJSTWKQXMBK56XG0779DRTVOKAFB2OQDPPQYND3BZ1YRIL5RFHD74WC0X9N16J6YEDKAECYWCAIMRS8Q8F2TLUT4NNR1A9HTN0745XVWZ9R37YBAJN3NBG1A60J13UKHI90B1TN3QUROSN6EEGPBUSG6FHNSKU5FLV2PJ767K7YSOL7N87ERAAVPM37DLWQE8I1Z0VUMXXQ2AV2KJB2262' where id=4; -update noar ti set v0='S9VT28U398ANZH2CI6MXDBOBYVU9QSXW5QA3UQSF13GNJSTWKQXMBK56XG0779DRTVOKAFB2OQDPPQYND3BZ1YRIL5RFHD74WC0X9N16J6YEDKAECYWCAIMRS8Q8F2TLUT4NNR1A9HTN0745XVWZ9R37YBAJN3NBG1A60J13UKHI90B1TN3QUROSN6EEGPBUSG6FHNSKU5FLV2PJ767K7YSOL7N87ERAAVPM37DLWQE8I1Z0VUMXXQ2AV2KJB2262' where id=4; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='C7VYDGWY3ZGGCLP58C786Z60L6LSRQ6AELPXVE4OI8PQ87SJL54KHLG6C0F25CP9B9BD8SLSBDKTILXBT4WHMW17NGKOTY2RMEIV0VMRDPUHFF912JFXEF8SIQ37B43A09M0N5YVI7LHRL3Z86ANIHKR4TNAADUAZJXMX5HMYYU43RDQ57FZP8U53UM6R37ODJ45WQD4O0PIZYIOSCT6ABOSN1J3ZOHAZ7QWD5K1PZEAV1WAX0HSGYW4Q5MVOAL51' where id=4; -update noar ti set v1='C7VYDGWY3ZGGCLP58C786Z60L6LSRQ6AELPXVE4OI8PQ87SJL54KHLG6C0F25CP9B9BD8SLSBDKTILXBT4WHMW17NGKOTY2RMEIV0VMRDPUHFF912JFXEF8SIQ37B43A09M0N5YVI7LHRL3Z86ANIHKR4TNAADUAZJXMX5HMYYU43RDQ57FZP8U53UM6R37ODJ45WQD4O0PIZYIOSCT6ABOSN1J3ZOHAZ7QWD5K1PZEAV1WAX0HSGYW4Q5MVOAL51' where id=4; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='WKSVQUTJKW2IQLDIY6WNKRHNO3UB3EVI0GFL0M1B1PCH83MDBN6K8F90NJX1YKESUPCLZM63WPCWK6KI5Y6Y2YA9B4PQ0ITG7OYG6JTQ8R4MCFFV56GNOZ2I0JJRF0VBKHK8J0AP4TN5VIKYWBRKSQ7WK9A2A9SWKIY0UH6RGU11YAE1JHXC19FLK23458VB7COHU51S5KTANQOL48VJUCC2H01CP9OVX24AR42FWFKAPT5K6RK6GJ4OHBKT1ZK5O' where id=4; -update noar ti set v2='WKSVQUTJKW2IQLDIY6WNKRHNO3UB3EVI0GFL0M1B1PCH83MDBN6K8F90NJX1YKESUPCLZM63WPCWK6KI5Y6Y2YA9B4PQ0ITG7OYG6JTQ8R4MCFFV56GNOZ2I0JJRF0VBKHK8J0AP4TN5VIKYWBRKSQ7WK9A2A9SWKIY0UH6RGU11YAE1JHXC19FLK23458VB7COHU51S5KTANQOL48VJUCC2H01CP9OVX24AR42FWFKAPT5K6RK6GJ4OHBKT1ZK5O' where id=4; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='C9TM839RNF1RPA5YGG7VXSPAKPRGTQ5HW6F7JBYD21IMVIWDT25DAK3OHLDBWYB5UKQKWHWGPXZBKCUBUR34GLL64UGL7407GBW40H2N9XCS232N8A2J86BVJ3OPOWGRKO3OVOVC78TOQA01UEGN8Q9OXTC6PWBHVWJJMS3KB11VO50GV37AP1WV61PXAQYV2VSKTCN7LZ8N9VJ581VFDZX1W2PKA7ZYPPZ85N5JEDTILKWOL8MY0KRFS2PM6JHTX' where id=4; -update noar ti set v3='C9TM839RNF1RPA5YGG7VXSPAKPRGTQ5HW6F7JBYD21IMVIWDT25DAK3OHLDBWYB5UKQKWHWGPXZBKCUBUR34GLL64UGL7407GBW40H2N9XCS232N8A2J86BVJ3OPOWGRKO3OVOVC78TOQA01UEGN8Q9OXTC6PWBHVWJJMS3KB11VO50GV37AP1WV61PXAQYV2VSKTCN7LZ8N9VJ581VFDZX1W2PKA7ZYPPZ85N5JEDTILKWOL8MY0KRFS2PM6JHTX' where id=4; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='31PUS63RQ5S5ZW9QG8THBZEAAVGZYCIAKR7VLLR380KVD83EFH93PTO2UHNSCSFPP3KW4Y9FERHM6V1AESB5571ZHFFEKYVT6UVLFLXG1XC5MOPYFBR8XO6MERKSUHIU1ISLOH6TFWJMRV4LVCA1NEVNH4TRS5PUL2UK7E8QO2ZLXYDBTYACGEWTM4OF1ZNTSJZ579D31IK6KWNVG5A772X95156KVGLH3O7UT3LLES80I94Z6XV6B7RCCPN2VRVF' where id=5; -update noar ti set v0='31PUS63RQ5S5ZW9QG8THBZEAAVGZYCIAKR7VLLR380KVD83EFH93PTO2UHNSCSFPP3KW4Y9FERHM6V1AESB5571ZHFFEKYVT6UVLFLXG1XC5MOPYFBR8XO6MERKSUHIU1ISLOH6TFWJMRV4LVCA1NEVNH4TRS5PUL2UK7E8QO2ZLXYDBTYACGEWTM4OF1ZNTSJZ579D31IK6KWNVG5A772X95156KVGLH3O7UT3LLES80I94Z6XV6B7RCCPN2VRVF' where id=5; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='VM0YC3FYONLYG5NSQ8B16T9A3ISBAV2E3JMW6YRUSJXQMRQ2RPQSSC5SZY3C41T0PNOXCJCXHT81UYH9062ICJOT6BZ01YU61E9E9A1S9Y5HDNR63WA4EN556EL7VIV72TKUXI8KWRRJFVESZ28ZJN8D07DFAENNM4BCE829X0EJZKDRWVYUWM9UHWMGWN4HT6TGOI3NADQTIVJSAFXMKQDIOZV9435J8PPMI9HT4PHL77Q3UT5JH9MP2068JG6QB' where id=5; -update noar ti set v1='VM0YC3FYONLYG5NSQ8B16T9A3ISBAV2E3JMW6YRUSJXQMRQ2RPQSSC5SZY3C41T0PNOXCJCXHT81UYH9062ICJOT6BZ01YU61E9E9A1S9Y5HDNR63WA4EN556EL7VIV72TKUXI8KWRRJFVESZ28ZJN8D07DFAENNM4BCE829X0EJZKDRWVYUWM9UHWMGWN4HT6TGOI3NADQTIVJSAFXMKQDIOZV9435J8PPMI9HT4PHL77Q3UT5JH9MP2068JG6QB' where id=5; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='I78PU8Z6D7ZW7VWZ02FYCD0QBPWX494OV8EMQYI8NCBYRV36R2XJ0INZBY9YSOB2FK4IS1JTIFB9IE4YIPK7GJYOI2E9OWL2WAF1D8LCVY8N66I4NEZMEI4IV1SCZ746XEBONETIUHRGSBQWBLP2JU346WDAQBM8XPBEOIMPG4F1Y1V70XDTYG6AYCJ0DYEW7DAVVI5WSDF3PYSIOLDWW32ASEI6W60XB4K0QNIG4EOXRU1W0POOK7HCNCX9YVX8J' where id=5; -update noar ti set v2='I78PU8Z6D7ZW7VWZ02FYCD0QBPWX494OV8EMQYI8NCBYRV36R2XJ0INZBY9YSOB2FK4IS1JTIFB9IE4YIPK7GJYOI2E9OWL2WAF1D8LCVY8N66I4NEZMEI4IV1SCZ746XEBONETIUHRGSBQWBLP2JU346WDAQBM8XPBEOIMPG4F1Y1V70XDTYG6AYCJ0DYEW7DAVVI5WSDF3PYSIOLDWW32ASEI6W60XB4K0QNIG4EOXRU1W0POOK7HCNCX9YVX8J' where id=5; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='SME5KIAA01MC7JD6W3FB8DNE0KEOQLYEX507LX97FMDWJXVQVHRXH212ZPYLGUK0Q173BXICG4SAVIHMJTC626LZ0ZDBTU67OZ07BDYQ06AQZYDTEYCPKJ5OSBYS8T24HEV588QNAHG9POS5P4YLM6TWJS5QZARX9HT0ZN1BHFHD217GNHKZAMZT1YGSPWTK2SN5H5SH4MYXB9K50MWFAVOXVEPRSN2I1DNX431E310L7HANNPUUQPZ12EB8FJQKT' where id=5; -update noar ti set v3='SME5KIAA01MC7JD6W3FB8DNE0KEOQLYEX507LX97FMDWJXVQVHRXH212ZPYLGUK0Q173BXICG4SAVIHMJTC626LZ0ZDBTU67OZ07BDYQ06AQZYDTEYCPKJ5OSBYS8T24HEV588QNAHG9POS5P4YLM6TWJS5QZARX9HT0ZN1BHFHD217GNHKZAMZT1YGSPWTK2SN5H5SH4MYXB9K50MWFAVOXVEPRSN2I1DNX431E310L7HANNPUUQPZ12EB8FJQKT' where id=5; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='IKNEE2VP508DUONR75XYV05NYCDLR6INHORDYCVT1HEMQB5CI9LYBFET2WW0WC2ZYFT8WXGTJEKAA3DG12UO1T9ODY6TSDJY776J0PDJM3D09W41TBDF2QPI2ULZBMLEDAV1D1QCI40SURTBIZLV5QNTV7YYU4B8B0BL6JC2MO43P8ZQBTPJYXITUFH31JKNK9KCP3JMVOQEBZQLG8DJP63DCC171HSW0NRDFBLUU92X43HPS3XC1HEB0KKH9ARPA' where id=6; -update noar ti set v0='IKNEE2VP508DUONR75XYV05NYCDLR6INHORDYCVT1HEMQB5CI9LYBFET2WW0WC2ZYFT8WXGTJEKAA3DG12UO1T9ODY6TSDJY776J0PDJM3D09W41TBDF2QPI2ULZBMLEDAV1D1QCI40SURTBIZLV5QNTV7YYU4B8B0BL6JC2MO43P8ZQBTPJYXITUFH31JKNK9KCP3JMVOQEBZQLG8DJP63DCC171HSW0NRDFBLUU92X43HPS3XC1HEB0KKH9ARPA' where id=6; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='R0JIE2RMDVAEH5DUX6YP6P1KAPA4YPMD5I66QWEJGTEWJSJ2TL53JGJIZMULYRMVSX3Q466GIUL66RMP1397MIM4VFEBHEPGA256N7ONQZZJRIWWPCN0RE0JCHBQ3B5TN2WVYJ19OINYFZEH8TYGLKI3SUBCU0VS2XE57AJYDVB2OXK8ABYWE5UYT6J8PXDUE66NAWNWYFAD2V57RKPMU7FFMC0KRXK60P46V563SZTOXV8YEQT2DHV426GII0976' where id=6; -update noar ti set v1='R0JIE2RMDVAEH5DUX6YP6P1KAPA4YPMD5I66QWEJGTEWJSJ2TL53JGJIZMULYRMVSX3Q466GIUL66RMP1397MIM4VFEBHEPGA256N7ONQZZJRIWWPCN0RE0JCHBQ3B5TN2WVYJ19OINYFZEH8TYGLKI3SUBCU0VS2XE57AJYDVB2OXK8ABYWE5UYT6J8PXDUE66NAWNWYFAD2V57RKPMU7FFMC0KRXK60P46V563SZTOXV8YEQT2DHV426GII0976' where id=6; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='G4QISPS494QVELSOJPRI0727J080Z3FNVUC5JOAE980O099E2XDDKBJWFF4Y6XL12TXJGVJ2YIZ8OMZN1IFDKRB2KI96GGBIGRQYI8DVLDZSAVGGT272NYCKWGHAVYU7QAM1H09Z1N5JJ0TZIQKNJ0QVTWABYMIADFLOLSE8YO5CPE1X3V01Y2MEE4COEO12NDROAY55V12YG236ZCLMWEZNIHGQ89NUZKJPPWHUR1GD6R0MDVNHMBBFMRVCQ6H3N' where id=6; -update noar ti set v2='G4QISPS494QVELSOJPRI0727J080Z3FNVUC5JOAE980O099E2XDDKBJWFF4Y6XL12TXJGVJ2YIZ8OMZN1IFDKRB2KI96GGBIGRQYI8DVLDZSAVGGT272NYCKWGHAVYU7QAM1H09Z1N5JJ0TZIQKNJ0QVTWABYMIADFLOLSE8YO5CPE1X3V01Y2MEE4COEO12NDROAY55V12YG236ZCLMWEZNIHGQ89NUZKJPPWHUR1GD6R0MDVNHMBBFMRVCQ6H3N' where id=6; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='FH4EXOLMHU0WTHT3M4SCFXRKS0QTXTQHDLYZ0Z1JGKVKXDF57XXVCZ6NXAH9XPVZS3THWTIW2EGI3TKGHKHD9J6BZGWKTEN4PZP8Q2E5LAQJNH63BOB4Q8ZS2KL2QEOACW1UMAHS48KNQ9S5DLH168HFRTSJEUBW4689HQQ6MKFI95DCKXRXW0PBOXF7KU7U004L86W57ZTS05NWPCHRBQI7887RVL1AETAMB144V7Y1VFLVBJO7UR9L2M6WT96S9' where id=6; -update noar ti set v3='FH4EXOLMHU0WTHT3M4SCFXRKS0QTXTQHDLYZ0Z1JGKVKXDF57XXVCZ6NXAH9XPVZS3THWTIW2EGI3TKGHKHD9J6BZGWKTEN4PZP8Q2E5LAQJNH63BOB4Q8ZS2KL2QEOACW1UMAHS48KNQ9S5DLH168HFRTSJEUBW4689HQQ6MKFI95DCKXRXW0PBOXF7KU7U004L86W57ZTS05NWPCHRBQI7887RVL1AETAMB144V7Y1VFLVBJO7UR9L2M6WT96S9' where id=6; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='3MER9ZTRIOQ7BORJ2Y35XK8VTXK2FD47VK63HMMPFMFXKQDGFLM5PM5WG1X7VIDM5D8AMC82BUYZ2VS8029ESTYA51US3NP80GRTRFUWKGHZVKGXRRLP2PM5YIZIWZLD3SZ9IQKLKNGMQI6V31UGFKTPSI6Q05GBNIAX2TZIZYL1JN0T4V35JMFOL3KJAIJZ6TH5UUKXQLMSST1KEVN4C78JV1FDQDMDR6PZYERTRPHIDNQXUXPNGQU12OPRZRC01' where id=7; -update noar ti set v0='3MER9ZTRIOQ7BORJ2Y35XK8VTXK2FD47VK63HMMPFMFXKQDGFLM5PM5WG1X7VIDM5D8AMC82BUYZ2VS8029ESTYA51US3NP80GRTRFUWKGHZVKGXRRLP2PM5YIZIWZLD3SZ9IQKLKNGMQI6V31UGFKTPSI6Q05GBNIAX2TZIZYL1JN0T4V35JMFOL3KJAIJZ6TH5UUKXQLMSST1KEVN4C78JV1FDQDMDR6PZYERTRPHIDNQXUXPNGQU12OPRZRC01' where id=7; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='F2A36RO6O7DOIQL6LN1V9ZRYITN5JPI9OW01UTI5C7XOGAK15RU517PW54QFPVZJX4ZF9PVJJQOR2W7DTTQWXA8CE7RGCI0MLXNE85RCZYCS1RYYW3943H5G0V0OKDZ6XG6HET5U52VWGNM5CVCKO33AVIXFUTWWJP1HXHFQ0XCKQ8P5WRRKLIXKJU0Y2M6ZWLKI3B9H5MKDB4CFJQ0L35CGVKVYKXQT2L9GC0JSXTKBYAZ7PPBXEZESSNO32JDNE' where id=7; -update noar ti set v1='F2A36RO6O7DOIQL6LN1V9ZRYITN5JPI9OW01UTI5C7XOGAK15RU517PW54QFPVZJX4ZF9PVJJQOR2W7DTTQWXA8CE7RGCI0MLXNE85RCZYCS1RYYW3943H5G0V0OKDZ6XG6HET5U52VWGNM5CVCKO33AVIXFUTWWJP1HXHFQ0XCKQ8P5WRRKLIXKJU0Y2M6ZWLKI3B9H5MKDB4CFJQ0L35CGVKVYKXQT2L9GC0JSXTKBYAZ7PPBXEZESSNO32JDNE' where id=7; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='RBD8ZJIQY0QS0U6QLM447CD80KZDJZ1OEKYFOQPLR33Z0N263PO1E149WT2S7LPUOYMQHQBVMW6WMUOOOB3HKH61NHOBU6XNWI231297A57YQN4OPU7RSUXJS2W6J4VB99LA4BOITX5157TWILQ5N3VGGNRZ5O0UL6P536V32D4ZX7OWEAJRMRKI89BJ3U08SOKOX6AKQTW373YU6OIGA7JN202S0EAIU1W14V6GJZS5VG6BG91R9YV57UCTQJQLO' where id=7; -update noar ti set v2='RBD8ZJIQY0QS0U6QLM447CD80KZDJZ1OEKYFOQPLR33Z0N263PO1E149WT2S7LPUOYMQHQBVMW6WMUOOOB3HKH61NHOBU6XNWI231297A57YQN4OPU7RSUXJS2W6J4VB99LA4BOITX5157TWILQ5N3VGGNRZ5O0UL6P536V32D4ZX7OWEAJRMRKI89BJ3U08SOKOX6AKQTW373YU6OIGA7JN202S0EAIU1W14V6GJZS5VG6BG91R9YV57UCTQJQLO' where id=7; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='CHIGYE61A8LF6EH5TN6P4AAGT764LLXNSV3DC6WCT3WNJNAW15TL9PGP9PD9F0OB34SC6FIN8FW8EQCI1M8KV534AO4K9HUUGBFHJ25W99SRKMI5SFK1KHAQU1YX99KCNL4ALKZAUSQSLBF1O0CU2XNMH6L7M5JIWIDIN9JE9WKPCM6DQXSP20J8K2OXUVJ0VELEEX0HOXU3B7854LS1JFUAOP1S8KSOALA43ETVTE3LEFQ2YKPE91JMWW8K8IE2C' where id=7; -update noar ti set v3='CHIGYE61A8LF6EH5TN6P4AAGT764LLXNSV3DC6WCT3WNJNAW15TL9PGP9PD9F0OB34SC6FIN8FW8EQCI1M8KV534AO4K9HUUGBFHJ25W99SRKMI5SFK1KHAQU1YX99KCNL4ALKZAUSQSLBF1O0CU2XNMH6L7M5JIWIDIN9JE9WKPCM6DQXSP20J8K2OXUVJ0VELEEX0HOXU3B7854LS1JFUAOP1S8KSOALA43ETVTE3LEFQ2YKPE91JMWW8K8IE2C' where id=7; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='3KOBBPEI8RL9XB02NEHMPQWOHJG9BM7U5K4F86MBHG39KWROZ0LBF28EZIU5N2NBP5Y1SD2EU9QVRIYQW8A1043OAYH3BZPV84L3CBMRGFWBY9JSDMHV6R18H1FW8HOALOIX40EV9PIZ9BM33B1YX9U4TN34MI8H027VXKKIEUL7Q0D2KBJN08P4KDY3T6N8DWQU8H6WU96L41B8DIX5NDICK5RAM45L3MKJKW7WGLRV7OJPUDH0UL9TYON85W0GV' where id=8; -update noar ti set v0='3KOBBPEI8RL9XB02NEHMPQWOHJG9BM7U5K4F86MBHG39KWROZ0LBF28EZIU5N2NBP5Y1SD2EU9QVRIYQW8A1043OAYH3BZPV84L3CBMRGFWBY9JSDMHV6R18H1FW8HOALOIX40EV9PIZ9BM33B1YX9U4TN34MI8H027VXKKIEUL7Q0D2KBJN08P4KDY3T6N8DWQU8H6WU96L41B8DIX5NDICK5RAM45L3MKJKW7WGLRV7OJPUDH0UL9TYON85W0GV' where id=8; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='ECIOEFDMYAGLBT3O1R268ZS1H57E1UAPRVW6YAXLJKG5X7JW77785D9S9CD3E4RJPEKUAWBCCKX8E9T7MD11N3F8GN0NH7BR01V0VR9KQSDM3NEIYFGJOGIHJ9TDLMTE3SQK823FW9PIX9HCVUNJ452BEYF8GM63N4FW5EXOCHO4AIYJKTK5CF3OQQLLJTU4DJZXZMFVY7VB64EV3R8A495T7ZEMXDNVJTOZVEXSY59L0RGUZXHVZRPV27S4U5XWJ' where id=8; -update noar ti set v1='ECIOEFDMYAGLBT3O1R268ZS1H57E1UAPRVW6YAXLJKG5X7JW77785D9S9CD3E4RJPEKUAWBCCKX8E9T7MD11N3F8GN0NH7BR01V0VR9KQSDM3NEIYFGJOGIHJ9TDLMTE3SQK823FW9PIX9HCVUNJ452BEYF8GM63N4FW5EXOCHO4AIYJKTK5CF3OQQLLJTU4DJZXZMFVY7VB64EV3R8A495T7ZEMXDNVJTOZVEXSY59L0RGUZXHVZRPV27S4U5XWJ' where id=8; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='3NOLAGREL8P7LKC2EU895T2IZOQDRLVNP29M79Q15MC2A53FYBZSKXT5OG5ZY2L7WRDCCC0RBUUXGOZZOFTLS3AU0UAZ3MXJ5DPLUD2PGOF7QFFWHMLHDJ28O8B2HJYL3GFN7W2J0W1OR03QEUSK1SK0NK0SS644NSS49X4HSLKM9KD39FBLUROM2LKT6PEG23QGPR8NQOWDTQHNFLE44LQ43LY9KHYL36EPABSGDXQ1BJHHH2TS7RSNI3F2FXQQV' where id=8; -update noar ti set v2='3NOLAGREL8P7LKC2EU895T2IZOQDRLVNP29M79Q15MC2A53FYBZSKXT5OG5ZY2L7WRDCCC0RBUUXGOZZOFTLS3AU0UAZ3MXJ5DPLUD2PGOF7QFFWHMLHDJ28O8B2HJYL3GFN7W2J0W1OR03QEUSK1SK0NK0SS644NSS49X4HSLKM9KD39FBLUROM2LKT6PEG23QGPR8NQOWDTQHNFLE44LQ43LY9KHYL36EPABSGDXQ1BJHHH2TS7RSNI3F2FXQQV' where id=8; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='PQIAGB35N5LJS5XUZX63D942KGK62XNX3XDX53KTN532WEQC7I1UHDLLALU3X50HXH6OHU7DLSPIAOO3TYY9P21L6D109UB75KDE9XPFLX0UOZNQPLBH5ATL1PSEW42LKTBV3K46IR2PZGHGSD4XRLX5TJOCJ6Q96W3ST83BYO3K0AM8DL2JCQH5DXWJQXM5NEDS99SAHEVOV2WOEC4DF3L5FC6SD4YZY2HU2TV2X3UO70Q1E5BWH7IPAN2XDNWKC' where id=8; -update noar ti set v3='PQIAGB35N5LJS5XUZX63D942KGK62XNX3XDX53KTN532WEQC7I1UHDLLALU3X50HXH6OHU7DLSPIAOO3TYY9P21L6D109UB75KDE9XPFLX0UOZNQPLBH5ATL1PSEW42LKTBV3K46IR2PZGHGSD4XRLX5TJOCJ6Q96W3ST83BYO3K0AM8DL2JCQH5DXWJQXM5NEDS99SAHEVOV2WOEC4DF3L5FC6SD4YZY2HU2TV2X3UO70Q1E5BWH7IPAN2XDNWKC' where id=8; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='3CJCDFHZLWKHCM17I3GQCR2KQ8ZREG02KZBI10IYZO2ACEW6H7QSN93OQJ7JQBGJJB71UF8F1SA1UEMQHTABS70R283IJ4FXR6D19TTWS0X5J1DULQ2C9YV01NA6BYKL3NGEWE0E1ZH8JLTDUUP6P6LZI6LE6268EHQIY32XC2A4N3039R0QSR9L4GOCCW7BIXC2JIBLMJ9SDV3IPC1YYA3PLPLR5COWCMKSUIBXQK4X4ETU0CUSYA6DMBUPFSELG' where id=9; -update noar ti set v0='3CJCDFHZLWKHCM17I3GQCR2KQ8ZREG02KZBI10IYZO2ACEW6H7QSN93OQJ7JQBGJJB71UF8F1SA1UEMQHTABS70R283IJ4FXR6D19TTWS0X5J1DULQ2C9YV01NA6BYKL3NGEWE0E1ZH8JLTDUUP6P6LZI6LE6268EHQIY32XC2A4N3039R0QSR9L4GOCCW7BIXC2JIBLMJ9SDV3IPC1YYA3PLPLR5COWCMKSUIBXQK4X4ETU0CUSYA6DMBUPFSELG' where id=9; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='G3GOHGWATRXVR37C1YCCRCOVTMGPWDS1NK1ZL8PALAELQHDNIXGF95CYAW10TQ3VR965CE6ARQJSLL6YJMCQCPWD00YVESE70EKHNU6YRJE3T9J66X1U6HVQIPSC845124XBMJEOPRFS3H37BS7H4F3RJDXY2LRRGQV9B5N7TA5NVNB800BQU47K2XZWM5A7JJGXKA62QB1UAB4ZEG9S81UFBNQEXY22IVZQYTQKU214KFFG9Q07ZVO7WMJ2RJGYJ' where id=9; -update noar ti set v1='G3GOHGWATRXVR37C1YCCRCOVTMGPWDS1NK1ZL8PALAELQHDNIXGF95CYAW10TQ3VR965CE6ARQJSLL6YJMCQCPWD00YVESE70EKHNU6YRJE3T9J66X1U6HVQIPSC845124XBMJEOPRFS3H37BS7H4F3RJDXY2LRRGQV9B5N7TA5NVNB800BQU47K2XZWM5A7JJGXKA62QB1UAB4ZEG9S81UFBNQEXY22IVZQYTQKU214KFFG9Q07ZVO7WMJ2RJGYJ' where id=9; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='S6JQWNHUI0YD0GDXHLMA5JAFN0L3DJIIXV6TPRG7DNI9CRLHAVI2WXD1R5O0R6OBY6A9H1K2H4YVKR5WAZ25PX3OXO814I5WYMIGMKPR73TSTFAC3LTGKR0CD8J0UYIQ7UU7NWGPLZYIZZKJJ00Y2IG4JDH1HDKFDXUPD6YJB1E4X3UG02C4PJPFOSTZ8JORAI9WVDNHYF3QAASGFY3L76FPF95V59XFS7ZLCGGZMZC1FP8WF0AIJ7KVKYBM9Y411' where id=9; -update noar ti set v2='S6JQWNHUI0YD0GDXHLMA5JAFN0L3DJIIXV6TPRG7DNI9CRLHAVI2WXD1R5O0R6OBY6A9H1K2H4YVKR5WAZ25PX3OXO814I5WYMIGMKPR73TSTFAC3LTGKR0CD8J0UYIQ7UU7NWGPLZYIZZKJJ00Y2IG4JDH1HDKFDXUPD6YJB1E4X3UG02C4PJPFOSTZ8JORAI9WVDNHYF3QAASGFY3L76FPF95V59XFS7ZLCGGZMZC1FP8WF0AIJ7KVKYBM9Y411' where id=9; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='UDYQGO0R3RSDM89EZH7GQV11RGIQ6GO9BDRSE0ORS8JRM1UJR9KEOE4KGY7FXU9UVN7OW8SWX4WP13ZH13Y7G3T7XQDXQ4FWKV8PXPG7J38CCS2D3ME5UUNQFR67DYJ02EAPS0UO9P63BXCXRDBODXUAL8BYFD2DP1NREA0DW7KXB8FOUJFPAKML0394FQZF3DTOH4ES10G5XO7RQKVIM5V7QFP5Q2OH88O54V47B6V1P8BGOF04SMCZL0P3BGPDS' where id=9; -update noar ti set v3='UDYQGO0R3RSDM89EZH7GQV11RGIQ6GO9BDRSE0ORS8JRM1UJR9KEOE4KGY7FXU9UVN7OW8SWX4WP13ZH13Y7G3T7XQDXQ4FWKV8PXPG7J38CCS2D3ME5UUNQFR67DYJ02EAPS0UO9P63BXCXRDBODXUAL8BYFD2DP1NREA0DW7KXB8FOUJFPAKML0394FQZF3DTOH4ES10G5XO7RQKVIM5V7QFP5Q2OH88O54V47B6V1P8BGOF04SMCZL0P3BGPDS' where id=9; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='VM74ZVZ91H42LB6M6HVD3C84ESPUNA69FPHP61AH97TV8ECL50O2PK25ZMM3OEP9L9Z0J7IYIY8SP7NAVLRQQQ22C4BBM0W5XIG316D6907OX4U4RR2I3G1C6MTWRQUBCE1YR26GUJ6T8X1BTI5E7UG6F5Q38ETJ8UNAWY072LLPOJDZ5B875NF1MSZE5NXMVM2IVZ6BWJKOOKNV1FVQGP4TELIAQEIB4H4BP0CXF43NMQ7M7AYGDSICVG0SNR06W' where id=10; -update noar ti set v0='VM74ZVZ91H42LB6M6HVD3C84ESPUNA69FPHP61AH97TV8ECL50O2PK25ZMM3OEP9L9Z0J7IYIY8SP7NAVLRQQQ22C4BBM0W5XIG316D6907OX4U4RR2I3G1C6MTWRQUBCE1YR26GUJ6T8X1BTI5E7UG6F5Q38ETJ8UNAWY072LLPOJDZ5B875NF1MSZE5NXMVM2IVZ6BWJKOOKNV1FVQGP4TELIAQEIB4H4BP0CXF43NMQ7M7AYGDSICVG0SNR06W' where id=10; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='I7XA6F281EWOER5VZQC7QQFEMF4BWMLDPMWK3RWBG1WMBENIKRA1YUCG5H0XNDL9NXNIO0MMKXUJGHB3AZF4ZTS2HKEWJNA4VY6T5A0GXVV6ETEHY3V66D1D6TEUOLPHFPIRVMSYEV73UHZ6K1JTJM5C27G83MNHTLOJ1KP55ATEQ4395G9Q36QQM3H47UQZ4N0VS1E4Z1UND5UCPA6YWWRY61IVHRJ884KZ0NFO9S002D2P9B2TI6PJD0Z4VLI0M' where id=10; -update noar ti set v1='I7XA6F281EWOER5VZQC7QQFEMF4BWMLDPMWK3RWBG1WMBENIKRA1YUCG5H0XNDL9NXNIO0MMKXUJGHB3AZF4ZTS2HKEWJNA4VY6T5A0GXVV6ETEHY3V66D1D6TEUOLPHFPIRVMSYEV73UHZ6K1JTJM5C27G83MNHTLOJ1KP55ATEQ4395G9Q36QQM3H47UQZ4N0VS1E4Z1UND5UCPA6YWWRY61IVHRJ884KZ0NFO9S002D2P9B2TI6PJD0Z4VLI0M' where id=10; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='O76BKZPSZK3J8AIJ0CRDMO09URPA1QNC8CNPDLI2MPZU4XCTFNXURS0LTUVJEUU9PJE4TMXXZQ7D9EY8Y9NMBMCPLUCVY1KTM9Y7CX9RH87SRBNM6ECMLQTXIN9VQOA2K8ME0S33PGVWSJIETH0ERZODNTXD7WTJY1YWYS3ABAZCF5OQS95IE7I8LT9LXP69MKARA5GFHWYMQ60EIV9HAZIUI7QZYDYHVNKBEUAGT3CWWHU7B533PV5WLECMH536I' where id=10; -update noar ti set v2='O76BKZPSZK3J8AIJ0CRDMO09URPA1QNC8CNPDLI2MPZU4XCTFNXURS0LTUVJEUU9PJE4TMXXZQ7D9EY8Y9NMBMCPLUCVY1KTM9Y7CX9RH87SRBNM6ECMLQTXIN9VQOA2K8ME0S33PGVWSJIETH0ERZODNTXD7WTJY1YWYS3ABAZCF5OQS95IE7I8LT9LXP69MKARA5GFHWYMQ60EIV9HAZIUI7QZYDYHVNKBEUAGT3CWWHU7B533PV5WLECMH536I' where id=10; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='0POM4VKQ11MTFZ1A3OCIIEXW0GP8AVRZJSWEI7H2Q3LH4LZHW45OLB05CBI50ZEX6NPS03RXH6KDZYHSZ8XVSOV4IQDUBJQE4TGPD87ZM4A37HHXFDD8C23370178WP2FY5LX2E35EOTCHU39CRE4F1TBR9VKA6V79X9ODHS409ESNQANEXGIPMHGT78H5UAGWUOCJ7BK53E3VJR1FM1AGYHBI6RYTGGPYEVYNHPNM1TC7GFEPFZLSNSI6YFT9OZI' where id=10; -update noar ti set v3='0POM4VKQ11MTFZ1A3OCIIEXW0GP8AVRZJSWEI7H2Q3LH4LZHW45OLB05CBI50ZEX6NPS03RXH6KDZYHSZ8XVSOV4IQDUBJQE4TGPD87ZM4A37HHXFDD8C23370178WP2FY5LX2E35EOTCHU39CRE4F1TBR9VKA6V79X9ODHS409ESNQANEXGIPMHGT78H5UAGWUOCJ7BK53E3VJR1FM1AGYHBI6RYTGGPYEVYNHPNM1TC7GFEPFZLSNSI6YFT9OZI' where id=10; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='5Y94ZOFI4OOC7RDNJ0BK9RY5U6G60P5U4QASMKYKGJO51FWQGRNB72KE521N6RVS6OOPV28SNKGV04HLXYGDX98OMLBPZQN6OQNP0R03V4Q0B97EOJEBGJX5MOF2O7L0ZWGSFYF5VYE1Q25ONP55CU4CG4D0YCYZVVS7COOF4I9S85VZ4JT8HYL9NNP3J8LT087GEJGC8X1HYCKDIGO9FLNE1GAP1FTTW43EXPO99Q06SVF3DNJYW2AQH66GKULXP' where id=11; -update noar ti set v0='5Y94ZOFI4OOC7RDNJ0BK9RY5U6G60P5U4QASMKYKGJO51FWQGRNB72KE521N6RVS6OOPV28SNKGV04HLXYGDX98OMLBPZQN6OQNP0R03V4Q0B97EOJEBGJX5MOF2O7L0ZWGSFYF5VYE1Q25ONP55CU4CG4D0YCYZVVS7COOF4I9S85VZ4JT8HYL9NNP3J8LT087GEJGC8X1HYCKDIGO9FLNE1GAP1FTTW43EXPO99Q06SVF3DNJYW2AQH66GKULXP' where id=11; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='1RHR83UJFV03F2GA0I3E35D76NHRAHCB4OR0V494MWSYG6V3ORE17230CQQ35LRQJ6M0VSRR1GO6OBKTFXDDU56QQC4ZGOWQR96TTF5L3CO46ZU43LEXYKJNX1IGIGGPQPQDWZYM30BJS96RJCEFBVJHYE9LDF65JORHHK5VPKSVGDZIX0SIGWKVAJB2BFV7H5BOR9DIPUEZ7Q87OQ95MW8T89EQWGTKXGBAJPUO343Y7ZRTG9XF0EA2D52K5BDY2' where id=11; -update noar ti set v1='1RHR83UJFV03F2GA0I3E35D76NHRAHCB4OR0V494MWSYG6V3ORE17230CQQ35LRQJ6M0VSRR1GO6OBKTFXDDU56QQC4ZGOWQR96TTF5L3CO46ZU43LEXYKJNX1IGIGGPQPQDWZYM30BJS96RJCEFBVJHYE9LDF65JORHHK5VPKSVGDZIX0SIGWKVAJB2BFV7H5BOR9DIPUEZ7Q87OQ95MW8T89EQWGTKXGBAJPUO343Y7ZRTG9XF0EA2D52K5BDY2' where id=11; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='THOVGUU3OM2776HJ7YMHT4LZ05MRHZRKHBDNP1IOYBG2M59GNB31DGO3LSLXBKMKXRH9Z9MLM6WVJQ8JEQCAWG3Y12ZFUO9M5S2U24PV75VEJ1IJG08V5KGFKDZOSTJA9SPUOMPJR9XT1PBB1720J28O9OPS11MFSFPA67HT43LDHF0CM1PIWP4O7DZZH94MN6ULP1HZBMZWZJYHHQ1MUNS4R4GWMMD99P2XCSTBRC13KY84XN1ZKKQKQRWT4MSZG' where id=11; -update noar ti set v2='THOVGUU3OM2776HJ7YMHT4LZ05MRHZRKHBDNP1IOYBG2M59GNB31DGO3LSLXBKMKXRH9Z9MLM6WVJQ8JEQCAWG3Y12ZFUO9M5S2U24PV75VEJ1IJG08V5KGFKDZOSTJA9SPUOMPJR9XT1PBB1720J28O9OPS11MFSFPA67HT43LDHF0CM1PIWP4O7DZZH94MN6ULP1HZBMZWZJYHHQ1MUNS4R4GWMMD99P2XCSTBRC13KY84XN1ZKKQKQRWT4MSZG' where id=11; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='KLS726XGRK14V001SB4RIWT5JL749GKGSG3BZ4Q383DZ4F6BZPL4UVIMYS5RL0BKQULG9W9T1HDUN19SBJPNEYI0COAXWVMHGEU570RM29M3MGQADC1OP97BRFCMI03IUKXOBSEW7LPNLF8S0H1SHQO1KRDP2OA852XL5BTDR50HZZ08J7307B5MIGKTTM4J6CD6Z1DHPQJQEMS6SSWNZH1N5SN2D1FAD9ZX9S2LVVOMJJG42STN3ZEN9SM17LENL' where id=11; -update noar ti set v3='KLS726XGRK14V001SB4RIWT5JL749GKGSG3BZ4Q383DZ4F6BZPL4UVIMYS5RL0BKQULG9W9T1HDUN19SBJPNEYI0COAXWVMHGEU570RM29M3MGQADC1OP97BRFCMI03IUKXOBSEW7LPNLF8S0H1SHQO1KRDP2OA852XL5BTDR50HZZ08J7307B5MIGKTTM4J6CD6Z1DHPQJQEMS6SSWNZH1N5SN2D1FAD9ZX9S2LVVOMJJG42STN3ZEN9SM17LENL' where id=11; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='EEK0C0RGF12J7GDM1O1WGBPB01W0B8KF5AN78XJSBPXJ1BZ79NNJPGB68KC8HZWFJVVV3TFX787TA6QRHCYRBACIVL8DIFGFUREDFPUQSWGIB605KUX906ZBN8HE5F6SR5OA66LS3NICCVD8L4SZRPKK9Z2EPH859I8KTE6LF2DEIHQ8OEQ2TXNLGIU1CHL77XZMZGLT8LXLODJTN760V4SB8WCFAP1CVLS5VVRKE6NKRKMEFC84K5W2CML4XLXHM' where id=12; -update noar ti set v0='EEK0C0RGF12J7GDM1O1WGBPB01W0B8KF5AN78XJSBPXJ1BZ79NNJPGB68KC8HZWFJVVV3TFX787TA6QRHCYRBACIVL8DIFGFUREDFPUQSWGIB605KUX906ZBN8HE5F6SR5OA66LS3NICCVD8L4SZRPKK9Z2EPH859I8KTE6LF2DEIHQ8OEQ2TXNLGIU1CHL77XZMZGLT8LXLODJTN760V4SB8WCFAP1CVLS5VVRKE6NKRKMEFC84K5W2CML4XLXHM' where id=12; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='69KU63BJ41MALFIGAPUW5U4YB12K0VS5C84EQ60ZLBJJHZQY9VBG7JMHFKBLUU7YZXRRXFJC4NZ4IHFRB22FQYRRDMJOAER17YOK7TZ6A27NYMDN6YL48H0WHZ3CRIOF38JKCPOW4XMEC11IGRSNYHWVWNA265KJGAWXWBRD9UPSQ9GV1ZOUN4Z8FBCKACNNARTTDOSQXJTY1PW8HR4HMN9FMIJOB9SMHCC9ZLGWN726AOQF3LE3TAP1VTB46BSNZ' where id=12; -update noar ti set v1='69KU63BJ41MALFIGAPUW5U4YB12K0VS5C84EQ60ZLBJJHZQY9VBG7JMHFKBLUU7YZXRRXFJC4NZ4IHFRB22FQYRRDMJOAER17YOK7TZ6A27NYMDN6YL48H0WHZ3CRIOF38JKCPOW4XMEC11IGRSNYHWVWNA265KJGAWXWBRD9UPSQ9GV1ZOUN4Z8FBCKACNNARTTDOSQXJTY1PW8HR4HMN9FMIJOB9SMHCC9ZLGWN726AOQF3LE3TAP1VTB46BSNZ' where id=12; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='2ZIKLL8IEE2IRP883806DHIWXKH3AJN2SZBF19I8KTZ92CC1APWDOPX9VFOQM57A7BPP1CBCRZVKMNHDMCOJGLB7XL13ICGCSZ9OL6J8XDKHMOFT2ZQBVMOI4N2INW3SNQM2MNR7Y6X5ZTCT1NJ9ONYR5JROPPOTBDJ3PCERN3WN6T8FW1MC4S713UAMEWHHKXMQWROMOZLITDSM8Q30BO39OA1I79SDMHU3NY1TDAFN41N8IR666AFSMPYWDC4TS' where id=12; -update noar ti set v2='2ZIKLL8IEE2IRP883806DHIWXKH3AJN2SZBF19I8KTZ92CC1APWDOPX9VFOQM57A7BPP1CBCRZVKMNHDMCOJGLB7XL13ICGCSZ9OL6J8XDKHMOFT2ZQBVMOI4N2INW3SNQM2MNR7Y6X5ZTCT1NJ9ONYR5JROPPOTBDJ3PCERN3WN6T8FW1MC4S713UAMEWHHKXMQWROMOZLITDSM8Q30BO39OA1I79SDMHU3NY1TDAFN41N8IR666AFSMPYWDC4TS' where id=12; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='15BSSRPGNMG2W8RQUK67UU1JLFDH21KOSU9EWHLMTIVOBIYVV0KW8O8E273PPFZ0LGGCI439J5Y1V3OKNYDO5HLTEXUMPI68KUAUL4WF2NINTUTSHLYXTI8YWS6HCNS3QT0VL7BUBGF2RB1TTBW1D16LDCFNO8VFMRMUWBA9WFGBQWY6PSJI3SLOW1TUXBLZE7N0D6GQ1PR4E45JKLZ173DEEZHUIQ7EN35DPFVMP4C3MOSE70GAS9I71F6WR4WA4' where id=12; -update noar ti set v3='15BSSRPGNMG2W8RQUK67UU1JLFDH21KOSU9EWHLMTIVOBIYVV0KW8O8E273PPFZ0LGGCI439J5Y1V3OKNYDO5HLTEXUMPI68KUAUL4WF2NINTUTSHLYXTI8YWS6HCNS3QT0VL7BUBGF2RB1TTBW1D16LDCFNO8VFMRMUWBA9WFGBQWY6PSJI3SLOW1TUXBLZE7N0D6GQ1PR4E45JKLZ173DEEZHUIQ7EN35DPFVMP4C3MOSE70GAS9I71F6WR4WA4' where id=12; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='7PK3UW845LKDAMJMQXEB4JFM4U9QZL238SNW5K2TSYBWTLHQ4GC7I1YW5Z3R0LPBD7EO7YV6NGVEEL8FXDQ79RXEGQRLMRYNTN473DT96B3S5FZAM5NXV9GX5M3VSSJAAEH81MI3J6BOFV3J4S0HNT1UTR48L0UR97M1X4ROSMIKDOPZ0D8HCM1LVKXXRMFBIRYSQ6T7ZJETLILMCXKOU8M7D0UPDRYKRG60X45N12112DVZE3SAAW375V4XRYFUB' where id=13; -update noar ti set v0='7PK3UW845LKDAMJMQXEB4JFM4U9QZL238SNW5K2TSYBWTLHQ4GC7I1YW5Z3R0LPBD7EO7YV6NGVEEL8FXDQ79RXEGQRLMRYNTN473DT96B3S5FZAM5NXV9GX5M3VSSJAAEH81MI3J6BOFV3J4S0HNT1UTR48L0UR97M1X4ROSMIKDOPZ0D8HCM1LVKXXRMFBIRYSQ6T7ZJETLILMCXKOU8M7D0UPDRYKRG60X45N12112DVZE3SAAW375V4XRYFUB' where id=13; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='RMBX39P1LGB8Q0U4NRC6XCXPXAUG8SHNBDEWO8IFPJ8X6CMA6BTDHVT9PT29FCYFIDZTK1571SIHWIFC6GKUASF49NI3MYK618T0M2275K0CLBB0SQ492NMO83LO2SWKCR3JKR6DKRQQ723G4TQGR1A6LILYADCYA4P327MU6OQ66WLIOWV0IC4EXRXINSU0QZB6VQSRQKIAV5U8C4MGBT7O0XPC23FYDGRY999KY1KO12B85SD6VR14L7K9F50FJ' where id=13; -update noar ti set v1='RMBX39P1LGB8Q0U4NRC6XCXPXAUG8SHNBDEWO8IFPJ8X6CMA6BTDHVT9PT29FCYFIDZTK1571SIHWIFC6GKUASF49NI3MYK618T0M2275K0CLBB0SQ492NMO83LO2SWKCR3JKR6DKRQQ723G4TQGR1A6LILYADCYA4P327MU6OQ66WLIOWV0IC4EXRXINSU0QZB6VQSRQKIAV5U8C4MGBT7O0XPC23FYDGRY999KY1KO12B85SD6VR14L7K9F50FJ' where id=13; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='ZU93JFAVPL8EPW0SWSBSW5LXCN0Y4LSWQEQ1ZXTLKCH7PQBUDRMA7ZGDJYNIIEEWSA0YT0DEPFMXGQIORPDCMK8KSFITR0SKXGHHEL7I0CL0B9RLOXXLE5K09JMLK85CF4JEYW429VR2UGKAUFVTB3AE65XU9X8KEICVK3Y3LRWPQLIPKAS0P1RFPGLFCD9JI3TBE6B0HX7ZZPCNRAYWX6L59Y69TGJWUWJ6Q7GEO8MLBCR1MB1BLXURTI7PD2RJZ' where id=13; -update noar ti set v2='ZU93JFAVPL8EPW0SWSBSW5LXCN0Y4LSWQEQ1ZXTLKCH7PQBUDRMA7ZGDJYNIIEEWSA0YT0DEPFMXGQIORPDCMK8KSFITR0SKXGHHEL7I0CL0B9RLOXXLE5K09JMLK85CF4JEYW429VR2UGKAUFVTB3AE65XU9X8KEICVK3Y3LRWPQLIPKAS0P1RFPGLFCD9JI3TBE6B0HX7ZZPCNRAYWX6L59Y69TGJWUWJ6Q7GEO8MLBCR1MB1BLXURTI7PD2RJZ' where id=13; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='1B5466PNOB9QEYZBBIXMI8W70Q7LPU11JDFROHV84AMT6ZT93USOMV3XJHKVNJ03XGV7ID4FXZ28BBUK5J8U94PQG4V57GXL10CQN2T8L04GKIQ1C4CV7UG0K58L5N9VCREK17S3T0KWL27JA1VSOYOW7Q7P54S0NNYX3ZUDY270O801AFX3IM594B9VUGXWIQUV238QUVRCGYWW9F1C1KZA2ILYJL1V3WZ4IUD1IXI375X7T67TAKWN06DPZBPOY' where id=13; -update noar ti set v3='1B5466PNOB9QEYZBBIXMI8W70Q7LPU11JDFROHV84AMT6ZT93USOMV3XJHKVNJ03XGV7ID4FXZ28BBUK5J8U94PQG4V57GXL10CQN2T8L04GKIQ1C4CV7UG0K58L5N9VCREK17S3T0KWL27JA1VSOYOW7Q7P54S0NNYX3ZUDY270O801AFX3IM594B9VUGXWIQUV238QUVRCGYWW9F1C1KZA2ILYJL1V3WZ4IUD1IXI375X7T67TAKWN06DPZBPOY' where id=13; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='PWXJBK9ACLJIZTGZBVMWKKEB5CU5PSBSEH5K89RNFTUDG5W91KVJHVC9S2CMPIFWKI2ZDQD7LFC17PYX8TXRYEDKR7VFVZY69AZXTVPQMUTJEUS8H2LMGM679Y8JBAUKZ1B9YAXWFBJBYAMXY8DNENU8E4MCBIVJZ8AW7S3RUJP06LBFMIRS8B3SIPOQWM1GMPZAEC5S7TIH8PL7IDVABN2P3A5MEPEPJQ2BA1S3LXF0ZWTFESB2G1P7BL08JDLZ1' where id=14; -update noar ti set v0='PWXJBK9ACLJIZTGZBVMWKKEB5CU5PSBSEH5K89RNFTUDG5W91KVJHVC9S2CMPIFWKI2ZDQD7LFC17PYX8TXRYEDKR7VFVZY69AZXTVPQMUTJEUS8H2LMGM679Y8JBAUKZ1B9YAXWFBJBYAMXY8DNENU8E4MCBIVJZ8AW7S3RUJP06LBFMIRS8B3SIPOQWM1GMPZAEC5S7TIH8PL7IDVABN2P3A5MEPEPJQ2BA1S3LXF0ZWTFESB2G1P7BL08JDLZ1' where id=14; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='CWYTYZTB4ERWMGI2W8PPOJJ85MKG4T1Y19PIY5OKOXGQPZNXY8GW7HQLP3QVSDX50LKDSXTX520TCS82W4422VORS7RT0SA4T5PL26BTM06QJYBXOA0YHJMQ3O0O2IR11WU5LTVKZO5ILAB49ORO9CA5N3EOY5KHMZ26H1F67G9G2JF4LCG4SLKQXNUY1KV64HBB6LLSX1BTMRMNX414C6A22K3HG0SQ8U5H2PNA7MMQP7NTNGGAT26WBJJ0DA89S' where id=14; -update noar ti set v1='CWYTYZTB4ERWMGI2W8PPOJJ85MKG4T1Y19PIY5OKOXGQPZNXY8GW7HQLP3QVSDX50LKDSXTX520TCS82W4422VORS7RT0SA4T5PL26BTM06QJYBXOA0YHJMQ3O0O2IR11WU5LTVKZO5ILAB49ORO9CA5N3EOY5KHMZ26H1F67G9G2JF4LCG4SLKQXNUY1KV64HBB6LLSX1BTMRMNX414C6A22K3HG0SQ8U5H2PNA7MMQP7NTNGGAT26WBJJ0DA89S' where id=14; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='KVZCNPUCEGMV04O6D41DQMSPNV5BOEMQXWNKWEJNKLGAZM2DTI1I7J7IBT8TLHCZ0WS7GCKOW62MN0E9VHOIKEC21PQV3QG2ILLIZE2XM23UJPNBWTR1QX2KGORO4JEV3IJYSDDKD9YTWUQVPJ39H75PJRCZWSE1EZD13J5CC9TA504I151ED3MQA48W8YLQOCMWZ51CS3I9T7AV0S7MUNEIJD7ZCIVAC556T33N6UAYYG0MK99C29GTADOB05LWZ' where id=14; -update noar ti set v2='KVZCNPUCEGMV04O6D41DQMSPNV5BOEMQXWNKWEJNKLGAZM2DTI1I7J7IBT8TLHCZ0WS7GCKOW62MN0E9VHOIKEC21PQV3QG2ILLIZE2XM23UJPNBWTR1QX2KGORO4JEV3IJYSDDKD9YTWUQVPJ39H75PJRCZWSE1EZD13J5CC9TA504I151ED3MQA48W8YLQOCMWZ51CS3I9T7AV0S7MUNEIJD7ZCIVAC556T33N6UAYYG0MK99C29GTADOB05LWZ' where id=14; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='OQREEWT0RSE67A239V7QW6ZSPBOBV989G5DO4TFOAB6RTFWMC6QBJ8HBVF2F4HTXOBD9E53X67YRPPSQHZFVV43AY2VLREOTKCPO0NBRU63MP0YOICW29EFAFP9Z025540J1GY2I8FOWJ1E3GMWNF6X7KGPR82M2Y5L9GO92CZLFYSG3K46WK60TVI36D5ZM6N9EA7E5A8TO2Z0RYHE3GWZ0THRG2JTHT5T79PKYC8HGFPKFXY8NXEEQ55GMVI3G0' where id=14; -update noar ti set v3='OQREEWT0RSE67A239V7QW6ZSPBOBV989G5DO4TFOAB6RTFWMC6QBJ8HBVF2F4HTXOBD9E53X67YRPPSQHZFVV43AY2VLREOTKCPO0NBRU63MP0YOICW29EFAFP9Z025540J1GY2I8FOWJ1E3GMWNF6X7KGPR82M2Y5L9GO92CZLFYSG3K46WK60TVI36D5ZM6N9EA7E5A8TO2Z0RYHE3GWZ0THRG2JTHT5T79PKYC8HGFPKFXY8NXEEQ55GMVI3G0' where id=14; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='MR83IANLYWE7Q1R6NI1JTACZCMC39P7DOX2YC8RRICPVFAFPJM1S3K05740BK65RRA0ZKCISW8T4NTNWUU8YFFF1GIZHS8GUJPVTE9IZBVVIEVF2NTVKFT4638I5140B5XT1RL0YV2CDWLQEOH719W43B5NF4FUBJ0JOUKB7RDG7AW2JFFP9UZEG1HYJHLUAOV18RHTMTAXB6WDW3014YLWAPQJLP3QCS78Q43RWY30ZUXO34RWC9MBA88GTZG38V' where id=15; -update noar ti set v0='MR83IANLYWE7Q1R6NI1JTACZCMC39P7DOX2YC8RRICPVFAFPJM1S3K05740BK65RRA0ZKCISW8T4NTNWUU8YFFF1GIZHS8GUJPVTE9IZBVVIEVF2NTVKFT4638I5140B5XT1RL0YV2CDWLQEOH719W43B5NF4FUBJ0JOUKB7RDG7AW2JFFP9UZEG1HYJHLUAOV18RHTMTAXB6WDW3014YLWAPQJLP3QCS78Q43RWY30ZUXO34RWC9MBA88GTZG38V' where id=15; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='KMP2BQ44FDUD59T37WK2CBTGDBIT1VNLG1KT7HBF2QGCR98AU8BQDM6VWST1Q25ZOB29HRYDWZ8VFTMHX5BWM583BHYSZ7FYO0FHSSVLEZHEOOL95EMOHQH289BGETIP5UPHJM9P7HBUK091KFWLHNPLKM0JKE3PCLKWZVR7M97JW8VZOWKZAWLCE52MD5IRZD30UAMXG4CVPP5QQFLKLD4AV1LJFBRJRJ54K2GQ16ZVVK7MWIS8KBU41T3AHXUPP' where id=15; -update noar ti set v1='KMP2BQ44FDUD59T37WK2CBTGDBIT1VNLG1KT7HBF2QGCR98AU8BQDM6VWST1Q25ZOB29HRYDWZ8VFTMHX5BWM583BHYSZ7FYO0FHSSVLEZHEOOL95EMOHQH289BGETIP5UPHJM9P7HBUK091KFWLHNPLKM0JKE3PCLKWZVR7M97JW8VZOWKZAWLCE52MD5IRZD30UAMXG4CVPP5QQFLKLD4AV1LJFBRJRJ54K2GQ16ZVVK7MWIS8KBU41T3AHXUPP' where id=15; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='UT9IKX7AT2RGHPUFA4WZ3ZFDM30BQZYNNMS2USY7IB1IMNNA1O3I5CJJDSR3LHQLICWNUSKNOM7UPSTJZ1JZN6OQ8288E00OQ102XJRJKBJX0KRXTFXZFUQIWSZZBBMGDFPXO153R1N1FX6ZC1A52V6ZY465FLXB2GY6HG546TZTIDY78BPH07Y4U61D1I79A96P6DS4AMOTG1HAHMI7BU4WLVSAOLT4FAZL4A41GTHQ0X222RZL6T5WPDUG1TE19' where id=15; -update noar ti set v2='UT9IKX7AT2RGHPUFA4WZ3ZFDM30BQZYNNMS2USY7IB1IMNNA1O3I5CJJDSR3LHQLICWNUSKNOM7UPSTJZ1JZN6OQ8288E00OQ102XJRJKBJX0KRXTFXZFUQIWSZZBBMGDFPXO153R1N1FX6ZC1A52V6ZY465FLXB2GY6HG546TZTIDY78BPH07Y4U61D1I79A96P6DS4AMOTG1HAHMI7BU4WLVSAOLT4FAZL4A41GTHQ0X222RZL6T5WPDUG1TE19' where id=15; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='ICKII3HFMKINOU8UMYDKCEH4P7PU5RGF02VCJ6PSWW06LP4HAMCXXSZ5FVIEHGSP1XHG95D4X542FNGZXDAIVRPC0RP54PR6ZJ4YUK4KMQ85YYMJSZAPMCGSR18RXSL40CT4CPG4A9PFT56J5WCVV6DCW4L8IA978PGRU2L3GVBRJMQB0BQE27UBVVZRVX4B359XL4S2EIPT3AU3MTU36O8BXAG2TBMT63DOJQO204P9LJWHJ64CQO567VISFJW0X' where id=15; -update noar ti set v3='ICKII3HFMKINOU8UMYDKCEH4P7PU5RGF02VCJ6PSWW06LP4HAMCXXSZ5FVIEHGSP1XHG95D4X542FNGZXDAIVRPC0RP54PR6ZJ4YUK4KMQ85YYMJSZAPMCGSR18RXSL40CT4CPG4A9PFT56J5WCVV6DCW4L8IA978PGRU2L3GVBRJMQB0BQE27UBVVZRVX4B359XL4S2EIPT3AU3MTU36O8BXAG2TBMT63DOJQO204P9LJWHJ64CQO567VISFJW0X' where id=15; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='DQGN42J0F5OE57YURUHI5VTTG69RIVFYOC3CYWOISK4UU50KBUSD3FD0BN3VLHW92CE0B3YJ35DZB7LPE9WMSPWZ98YQF6YCBK9HUBXP49D4EBLLTRN7MOJ52WVBTCEWXP714WHGH0CMKO1A8QTJQDOKISR9IISDWHZYJ2Q41L5HT4C2WNVWM3YNJO2TPKT18C11BMMCA2XFR9Z45IUF67RE2UESVJFK27V4A99TIPJVPHQM2J43SAQK0WRTBBASE' where id=16; -update noar ti set v0='DQGN42J0F5OE57YURUHI5VTTG69RIVFYOC3CYWOISK4UU50KBUSD3FD0BN3VLHW92CE0B3YJ35DZB7LPE9WMSPWZ98YQF6YCBK9HUBXP49D4EBLLTRN7MOJ52WVBTCEWXP714WHGH0CMKO1A8QTJQDOKISR9IISDWHZYJ2Q41L5HT4C2WNVWM3YNJO2TPKT18C11BMMCA2XFR9Z45IUF67RE2UESVJFK27V4A99TIPJVPHQM2J43SAQK0WRTBBASE' where id=16; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='K7HFG4ISR8HL8RQNIL6IDS9R32RBYZHNB9X13J9EIOILG0PKKW4A6X8LCMXGH7KD6T8JWBW588Y5M13PBHVV4WLRD74KZZJBTY0E9VBF5D8QAOI2T75GA4OJVJ9HUVWB91EQXF0Z1QDHJ5DEBS3EML5K8YZLCVDTWIC16N4WHX0EXNDVWJFRPSAZ1GP8Q7K481K4I1TYX2X1MB8MTOOG5RGGBSSUKFRDEW9O24W7KUJCVXK9SZTDUFHK2SAG59P2G' where id=16; -update noar ti set v1='K7HFG4ISR8HL8RQNIL6IDS9R32RBYZHNB9X13J9EIOILG0PKKW4A6X8LCMXGH7KD6T8JWBW588Y5M13PBHVV4WLRD74KZZJBTY0E9VBF5D8QAOI2T75GA4OJVJ9HUVWB91EQXF0Z1QDHJ5DEBS3EML5K8YZLCVDTWIC16N4WHX0EXNDVWJFRPSAZ1GP8Q7K481K4I1TYX2X1MB8MTOOG5RGGBSSUKFRDEW9O24W7KUJCVXK9SZTDUFHK2SAG59P2G' where id=16; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='XSZHNUE8KT052R1ZK2TBAFM66DQN9R362YLHBP4EPOMBTAKIOE87X26KJSSDVRMBI2NVJTMDQF5XVT1ELMZGFSHA0YVVH1XHKPS27WPLPLER6PNWGJ91BT5SED31S1CBSS112PSHT7REHDGZIB1FAE3S9C02UCSNG36VUCJ8WYRW1G3P1DRYSETB2195T0EBQ0YOSNWO35PUPFY0UICLEPFG03L6GN4CA87QQL2A2SDC36N9KLQSFYN1CSW9PAWB4' where id=16; -update noar ti set v2='XSZHNUE8KT052R1ZK2TBAFM66DQN9R362YLHBP4EPOMBTAKIOE87X26KJSSDVRMBI2NVJTMDQF5XVT1ELMZGFSHA0YVVH1XHKPS27WPLPLER6PNWGJ91BT5SED31S1CBSS112PSHT7REHDGZIB1FAE3S9C02UCSNG36VUCJ8WYRW1G3P1DRYSETB2195T0EBQ0YOSNWO35PUPFY0UICLEPFG03L6GN4CA87QQL2A2SDC36N9KLQSFYN1CSW9PAWB4' where id=16; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='9CFIKEF4C2YAZSK0OV65F4H4GMZZM7MUQIJ1NOPAPBQ9AB5FWTJMUCJSLUZ9H1C4N6MWYB6HNIG8FM76VKJR343KFZ8KCAZ5VUQI82ST3KGGJ8T2A04RUWG86SI799AYDL6AIE0KH9X2Q8PJIHQJ2ZHO71PBD5JEKBD4SWIZA88QFGKZHZMU5WYGHADS3GKIA3YAM17LL122MH2UFTGHFTQ20P3KQOWGCBH6LFIQ8REA1WRJEZCBWA75RKU1FU0JJ' where id=16; -update noar ti set v3='9CFIKEF4C2YAZSK0OV65F4H4GMZZM7MUQIJ1NOPAPBQ9AB5FWTJMUCJSLUZ9H1C4N6MWYB6HNIG8FM76VKJR343KFZ8KCAZ5VUQI82ST3KGGJ8T2A04RUWG86SI799AYDL6AIE0KH9X2Q8PJIHQJ2ZHO71PBD5JEKBD4SWIZA88QFGKZHZMU5WYGHADS3GKIA3YAM17LL122MH2UFTGHFTQ20P3KQOWGCBH6LFIQ8REA1WRJEZCBWA75RKU1FU0JJ' where id=16; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='TY6I6SKGL5UOL42BRO29O1UXOD2JYEMXN8AZ96O7YPAUAL088O07TGEC6DVZOM3839PPZ7KBLFDRRQDKBFYPS72ORXESNCEWKM9UDM6ZR6LAZXA2SW18O705C6AII8IW2BKJ1M0Z424V6WA2ORBSJ7OZLDLGW21S9NYIZOE9OOS2TZNU323E0DX9G4C16VSHMJUCC2IOJR2VCYARZ52M4RU83KDHVFXWX6JBY4BLGYV2ZR4X481UWTP81Y099276K' where id=17; -update noar ti set v0='TY6I6SKGL5UOL42BRO29O1UXOD2JYEMXN8AZ96O7YPAUAL088O07TGEC6DVZOM3839PPZ7KBLFDRRQDKBFYPS72ORXESNCEWKM9UDM6ZR6LAZXA2SW18O705C6AII8IW2BKJ1M0Z424V6WA2ORBSJ7OZLDLGW21S9NYIZOE9OOS2TZNU323E0DX9G4C16VSHMJUCC2IOJR2VCYARZ52M4RU83KDHVFXWX6JBY4BLGYV2ZR4X481UWTP81Y099276K' where id=17; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='S1S76G57X1KT93CONQSL9JR7PWAMNRZQHBFQCJFORM6PQUOIGG9AQRKCJSK5G062464L067LMRZV36N42KNUVNW06BRS6633A5670IY1ZRTEK1W7YVP56T77H7UKL8VHJKWI4TF7D5OOFXGTY887U7F5AAI1VF70RHUCF3OQ7XLRZ2N1S488W1OMNAJUVM03KBLH2EVFYUDHE50MID8PVLS75REXQP0B10ZP6DN5BVYR5A416GR2ZVBKAK0JNJ1RA' where id=17; -update noar ti set v1='S1S76G57X1KT93CONQSL9JR7PWAMNRZQHBFQCJFORM6PQUOIGG9AQRKCJSK5G062464L067LMRZV36N42KNUVNW06BRS6633A5670IY1ZRTEK1W7YVP56T77H7UKL8VHJKWI4TF7D5OOFXGTY887U7F5AAI1VF70RHUCF3OQ7XLRZ2N1S488W1OMNAJUVM03KBLH2EVFYUDHE50MID8PVLS75REXQP0B10ZP6DN5BVYR5A416GR2ZVBKAK0JNJ1RA' where id=17; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='84XUWTY0IAMVDO7BOCMH9N40N46KOI0YM8A6ELLHXG59GUS1KM1Z7FNUP8DQ80RH2GF18X5BTTVMJ6M5RPE4N32QDS9CT0FKRA2Z69QHGGZRHGMKMNRSIMIB7Z5UTMGUE54SPE7MTMZ4Y5Y50BUHE9YOTGZUMSAPYCNP25Y0J0QUM90RV5PGD21244TNMYW2KPGZ3WKR98W5A3720OW7X1UQ3MIEMHDJY6LNA6BIC1ILECNM2KUADB4F9RN6SSS15' where id=17; -update noar ti set v2='84XUWTY0IAMVDO7BOCMH9N40N46KOI0YM8A6ELLHXG59GUS1KM1Z7FNUP8DQ80RH2GF18X5BTTVMJ6M5RPE4N32QDS9CT0FKRA2Z69QHGGZRHGMKMNRSIMIB7Z5UTMGUE54SPE7MTMZ4Y5Y50BUHE9YOTGZUMSAPYCNP25Y0J0QUM90RV5PGD21244TNMYW2KPGZ3WKR98W5A3720OW7X1UQ3MIEMHDJY6LNA6BIC1ILECNM2KUADB4F9RN6SSS15' where id=17; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='ZOG31JVCR5RRBQWGR84B3X7767PQX2XEQZTMDZ3VEPTNHKRZLPBFXSIM38KFG6D1ZH1YYWMDZQ31URMY5C90KMK9C1EWKJH8520U0JGQXWRSDIF88RJ1A4WM1K95TU68H452VIJXJIQBBGESJ2QIB5N8XCWLQPWAS38DN5K9OVYER9ODZFKI2JC92QLBUOJGUADN8O4WDPKOOGA4VGFIBLQFY1M6ICJOK5D2S210NAI4SAVSTVIL594RWP9KGS555' where id=17; -update noar ti set v3='ZOG31JVCR5RRBQWGR84B3X7767PQX2XEQZTMDZ3VEPTNHKRZLPBFXSIM38KFG6D1ZH1YYWMDZQ31URMY5C90KMK9C1EWKJH8520U0JGQXWRSDIF88RJ1A4WM1K95TU68H452VIJXJIQBBGESJ2QIB5N8XCWLQPWAS38DN5K9OVYER9ODZFKI2JC92QLBUOJGUADN8O4WDPKOOGA4VGFIBLQFY1M6ICJOK5D2S210NAI4SAVSTVIL594RWP9KGS555' where id=17; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='4Z0LYXCKI25LHUKIURUNG6Y2S2E74BKW49A90PLP634NOBX6VN68BXDEURWIYDF8PRCDS1KBWZMU8LNVI201UTXZDPE5LMQUZ2GQ6L7GYLFIKAKY00K86GH32O150MOHX2CAYFSQNG077FF60CK67E5B1BY1HAOQK74T7645W6I3MSC3HFW002H2D9Y4OUPUKVQKN4SCY36G1PQCWCAEO3V9YSAM3PCSZU6XM7A8HZGVYFDKZ7BV68AJJ1CRUXFCA' where id=18; -update noar ti set v0='4Z0LYXCKI25LHUKIURUNG6Y2S2E74BKW49A90PLP634NOBX6VN68BXDEURWIYDF8PRCDS1KBWZMU8LNVI201UTXZDPE5LMQUZ2GQ6L7GYLFIKAKY00K86GH32O150MOHX2CAYFSQNG077FF60CK67E5B1BY1HAOQK74T7645W6I3MSC3HFW002H2D9Y4OUPUKVQKN4SCY36G1PQCWCAEO3V9YSAM3PCSZU6XM7A8HZGVYFDKZ7BV68AJJ1CRUXFCA' where id=18; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='CKOKYWHVQ4ZT3FRRUYASZLCTT3MKW08LE4Q5PWRA6O016BGQMM2SZ9FSBIXSU5VQLUF7ZOMSEMU0VBQGQ1017PIE2XXFJSTY9UC7V0IA68VSYQ5XPQ7PWYD6JQ09EHR6B5LA7XWK548SCVV9Q15PXONSX82C3VIC54OXTTKRNS6YUEHN08B14AARBOPQ4EWIAFHL3NLQJC15XNG4Y1FZEI1YRFGQYKJEVXPHYD6B5V695CN0MVUSTRULKIHZEYVKZ' where id=18; -update noar ti set v1='CKOKYWHVQ4ZT3FRRUYASZLCTT3MKW08LE4Q5PWRA6O016BGQMM2SZ9FSBIXSU5VQLUF7ZOMSEMU0VBQGQ1017PIE2XXFJSTY9UC7V0IA68VSYQ5XPQ7PWYD6JQ09EHR6B5LA7XWK548SCVV9Q15PXONSX82C3VIC54OXTTKRNS6YUEHN08B14AARBOPQ4EWIAFHL3NLQJC15XNG4Y1FZEI1YRFGQYKJEVXPHYD6B5V695CN0MVUSTRULKIHZEYVKZ' where id=18; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='SDRECPG8ZCNSLDA4JOPFL554CQ798XKGFEBC25HVR4TVZI6TZWVHQBZHG0KYW6AX80I9G11PRMN2Z1BWKWUFH33AWELPJJHLSP5UJ9K7C0PYBUUM7F8D1VQWKJK70C0XVDIZC1OS52GX1MUA930WG8LNIERCLAZMA0YQ55JHSZAIWTFAROX8HEEHTBV0IZMK98YK4PI6H2CL2AIBTBLWTQOSM54BFI71X4ASSO1QHCLI8OGNQLHC3HCJZO0T4PYGS' where id=18; -update noar ti set v2='SDRECPG8ZCNSLDA4JOPFL554CQ798XKGFEBC25HVR4TVZI6TZWVHQBZHG0KYW6AX80I9G11PRMN2Z1BWKWUFH33AWELPJJHLSP5UJ9K7C0PYBUUM7F8D1VQWKJK70C0XVDIZC1OS52GX1MUA930WG8LNIERCLAZMA0YQ55JHSZAIWTFAROX8HEEHTBV0IZMK98YK4PI6H2CL2AIBTBLWTQOSM54BFI71X4ASSO1QHCLI8OGNQLHC3HCJZO0T4PYGS' where id=18; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='HTOAW4FV211DWN7412E5AAWPCYQRG6JX4KSIT94WV7AEZSACPHY0NB1D05YIEARYWTTUNXXPY6D5O3DJBDA8BZ031HRKYGRGMN9K3O7E1N6HJF8WLR2TOPC9050RQ4P3YXJF5KLERWRC7H8SPGQ472UYLC5IVGHSRYMSJ14DZSDDTGG2PF4FH93JA0PTZPL7I9FAQIWAIPJD89G6A5T4PALJTKWMBIMEZRVYK1UKZJHA4S7IFJWYVNZK0DMKF6MLG' where id=18; -update noar ti set v3='HTOAW4FV211DWN7412E5AAWPCYQRG6JX4KSIT94WV7AEZSACPHY0NB1D05YIEARYWTTUNXXPY6D5O3DJBDA8BZ031HRKYGRGMN9K3O7E1N6HJF8WLR2TOPC9050RQ4P3YXJF5KLERWRC7H8SPGQ472UYLC5IVGHSRYMSJ14DZSDDTGG2PF4FH93JA0PTZPL7I9FAQIWAIPJD89G6A5T4PALJTKWMBIMEZRVYK1UKZJHA4S7IFJWYVNZK0DMKF6MLG' where id=18; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='J2J0ES29Y61EHWTCR8LAQ4R0HVHOW0JFH1VZP7M88CG0XUXMHXLU572Y63HYJ2GK3PNMKN7QVRX7AA216NU3OBFLM1815DHOAICONUP1HL25O8PMLWL7WZ4GSIXCC80DMHRL0KY8Z0Y0DMT7XQKJNZFC23LMCY47C6P09CV4TWOTQWA137HOM457HYDV1Z7W4L99RZKTF37A2S7FFI4KFSAHHSO8FINF3CN8ABSXID8M1BBCXKXD4RTLYWNLMMPW4' where id=19; -update noar ti set v0='J2J0ES29Y61EHWTCR8LAQ4R0HVHOW0JFH1VZP7M88CG0XUXMHXLU572Y63HYJ2GK3PNMKN7QVRX7AA216NU3OBFLM1815DHOAICONUP1HL25O8PMLWL7WZ4GSIXCC80DMHRL0KY8Z0Y0DMT7XQKJNZFC23LMCY47C6P09CV4TWOTQWA137HOM457HYDV1Z7W4L99RZKTF37A2S7FFI4KFSAHHSO8FINF3CN8ABSXID8M1BBCXKXD4RTLYWNLMMPW4' where id=19; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='J7DLWVOJB6YPXAF5LQ2G7NZG6FV7J5TFRVE1QH1QOFL7B6JQN407RLZBMJHJNLC837K3T7RY9M0TX8F7FNY8K4OVA86TAF1EZVHBZZEISI10NKWSXEY5K3JTI2JFPEOI6L150MZ9WFECR8F8FV8ATGYJ69QO5CISXETT0HU25FU19AZRQ0LKJC1LHZ28G83IVSSI440WFPYA1NRTYLDFUCVUV5M21AF6ZYHBV1K2MGNOXCBXR0NCBOWTJBD5QEZ61' where id=19; -update noar ti set v1='J7DLWVOJB6YPXAF5LQ2G7NZG6FV7J5TFRVE1QH1QOFL7B6JQN407RLZBMJHJNLC837K3T7RY9M0TX8F7FNY8K4OVA86TAF1EZVHBZZEISI10NKWSXEY5K3JTI2JFPEOI6L150MZ9WFECR8F8FV8ATGYJ69QO5CISXETT0HU25FU19AZRQ0LKJC1LHZ28G83IVSSI440WFPYA1NRTYLDFUCVUV5M21AF6ZYHBV1K2MGNOXCBXR0NCBOWTJBD5QEZ61' where id=19; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='K9MU7LPUUZVCEQLKTV10NJTSE4TM8B6BH2N7O9QFYVJZG869JH50TSVYMO25NDPW0OTFLJOTHZXE2ZD23FJ7KWPYOZJRLUBK0IWGW85F7VAR3GVT5CXH02BQKYUQR04YBLE4YZZK4YWZAH2LAM3D88F3TIGMZCWKK2R7O0YE5YRREWGAZWL7K3F3KMB0E4NUC8CJXBOBPZ5ARMML1NCPKN2LTCJASNBZ90LKGKM307S2WLTDJBKSYA7IGAC5FPJSW' where id=19; -update noar ti set v2='K9MU7LPUUZVCEQLKTV10NJTSE4TM8B6BH2N7O9QFYVJZG869JH50TSVYMO25NDPW0OTFLJOTHZXE2ZD23FJ7KWPYOZJRLUBK0IWGW85F7VAR3GVT5CXH02BQKYUQR04YBLE4YZZK4YWZAH2LAM3D88F3TIGMZCWKK2R7O0YE5YRREWGAZWL7K3F3KMB0E4NUC8CJXBOBPZ5ARMML1NCPKN2LTCJASNBZ90LKGKM307S2WLTDJBKSYA7IGAC5FPJSW' where id=19; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='FA0WI39W4FQI9MO5G7WD10WO7SPFYHFJUL75GLKYD1ZXHNTQPY72RXST1V17T1MNVYZUEV5O5D7QODU0USVRH4HFZ2NV694E8NBNWRCNUOLDS3SNT6FZ0GUHPS6R4E0VN5XEQZ0XFN84S9GP445NSGXRDWIMY89IYT9KSHGJMLEQZADEMWF1OY09FLT673R4FP6T2ILYINS0K8B1OVINP0V0LUPWGPC5E3M2LA0JLLB7S1B74NFZ4N8ZDIO6YPVMS' where id=19; -update noar ti set v3='FA0WI39W4FQI9MO5G7WD10WO7SPFYHFJUL75GLKYD1ZXHNTQPY72RXST1V17T1MNVYZUEV5O5D7QODU0USVRH4HFZ2NV694E8NBNWRCNUOLDS3SNT6FZ0GUHPS6R4E0VN5XEQZ0XFN84S9GP445NSGXRDWIMY89IYT9KSHGJMLEQZADEMWF1OY09FLT673R4FP6T2ILYINS0K8B1OVINP0V0LUPWGPC5E3M2LA0JLLB7S1B74NFZ4N8ZDIO6YPVMS' where id=19; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='UQQMWAL04Q831U5I6RHE4LKN2HBD5N2D1UIWDV0CFQ0EZFWJ5J2C4Q1CS29C6RAYERUBIIQ9PW1OVTMD24PUIE5GM14TSQKM4IQA8JPRNDJBAB4OGRXMETJRWHTYDUHVI6UTMZ8AZXUXN1UHG7JUD5IZE2WN7HDMVZCLQQK1LFQT9326FS4FAH9OUVHCVC1PGK27MH8X4ZD4NZIIDSFM9RJVNR8MKRO9AXFDKLM2BKMDSDNZ8ZRDWAO9GIBLJDO8B' where id=20; -update noar ti set v0='UQQMWAL04Q831U5I6RHE4LKN2HBD5N2D1UIWDV0CFQ0EZFWJ5J2C4Q1CS29C6RAYERUBIIQ9PW1OVTMD24PUIE5GM14TSQKM4IQA8JPRNDJBAB4OGRXMETJRWHTYDUHVI6UTMZ8AZXUXN1UHG7JUD5IZE2WN7HDMVZCLQQK1LFQT9326FS4FAH9OUVHCVC1PGK27MH8X4ZD4NZIIDSFM9RJVNR8MKRO9AXFDKLM2BKMDSDNZ8ZRDWAO9GIBLJDO8B' where id=20; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='5JGEBJ322PBJ2T1E9LY6ITWX648MUXPX4YYN6YM4QXSCTEJDDJCY7O2Y15WDYPJR0RIK06SO8KRN7B9783I7KJZ80C9QCC788NYLNS8BIJ8U1H3A7AIQP39M6TG81ESRQWTP7K3QM0BIIU9G0FWHYIT3DI7LQ5EEGWDHWISZFWR7BTP2NBMWQQYRAEY48S8JFBJY79M0ZHN1UP7QZJ2GBC5ZDBG0DLP1ORLMG1B0AOJ9E4IESDV9AFQTN33V4Y3Y6' where id=20; -update noar ti set v1='5JGEBJ322PBJ2T1E9LY6ITWX648MUXPX4YYN6YM4QXSCTEJDDJCY7O2Y15WDYPJR0RIK06SO8KRN7B9783I7KJZ80C9QCC788NYLNS8BIJ8U1H3A7AIQP39M6TG81ESRQWTP7K3QM0BIIU9G0FWHYIT3DI7LQ5EEGWDHWISZFWR7BTP2NBMWQQYRAEY48S8JFBJY79M0ZHN1UP7QZJ2GBC5ZDBG0DLP1ORLMG1B0AOJ9E4IESDV9AFQTN33V4Y3Y6' where id=20; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='OG9104ZOQ6WCGCLB8KY60WN6O3QOE6SXO8WL6NPVO9CQP941CZF8J1NJ7A7ZMP48KWWV4MRRLL38RU5R0P8HM4OSQEN6Z06S0IMBNSHD0T5AKOJG1YZWKI7X4MP4LZQDXJHG5ECD5IW04PCIP7NWDYOO0MVS5UFDGW6D6P96Y5JOBO3G00IIJBB7ZAR0ZJ3MFKWP1V1MXKBQGCO3L5KKHRAYC5ID4MW5Q4TUT0B4O12YMMZ2G1NZV3YUSYREHNWKS' where id=20; -update noar ti set v2='OG9104ZOQ6WCGCLB8KY60WN6O3QOE6SXO8WL6NPVO9CQP941CZF8J1NJ7A7ZMP48KWWV4MRRLL38RU5R0P8HM4OSQEN6Z06S0IMBNSHD0T5AKOJG1YZWKI7X4MP4LZQDXJHG5ECD5IW04PCIP7NWDYOO0MVS5UFDGW6D6P96Y5JOBO3G00IIJBB7ZAR0ZJ3MFKWP1V1MXKBQGCO3L5KKHRAYC5ID4MW5Q4TUT0B4O12YMMZ2G1NZV3YUSYREHNWKS' where id=20; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='G0CK9B5NB56WDNYQD7AH6WDHNMU4R8TOTR3TK2FKS6N9YOCZS5NKI0228Z5R7GWXLJZVKFT3IPF1PQSSJLVSPO6XQG07XL0XBCNP2YZFBQIMXJOCAUYLTX4C93CT01IC8OXLI9X7O4WGNS4ZZC1NVZSL1PEP4V2IA70BBYWB8LRNY820UGSSVPTC17RJ1O10DXRDIAH714UBMIV921JRIKRKP7FH64JCCAZSD64JTQ735T7EMAWQLLKWO92P2UCNP' where id=20; -update noar ti set v3='G0CK9B5NB56WDNYQD7AH6WDHNMU4R8TOTR3TK2FKS6N9YOCZS5NKI0228Z5R7GWXLJZVKFT3IPF1PQSSJLVSPO6XQG07XL0XBCNP2YZFBQIMXJOCAUYLTX4C93CT01IC8OXLI9X7O4WGNS4ZZC1NVZSL1PEP4V2IA70BBYWB8LRNY820UGSSVPTC17RJ1O10DXRDIAH714UBMIV921JRIKRKP7FH64JCCAZSD64JTQ735T7EMAWQLLKWO92P2UCNP' where id=20; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='XEKSFWW852KAAHSKEGJ48HGLX99SZGG8QW8PZ0CDRHL5X2W1TOMNSM4RNEZAE1IX4JWTYFDM9SZ9G9KTDOTMT1KFBEUYW0X6BZMBIBNTIRX0UFCM2F6E9FAME4YA4RBMDJSHTT6GUP0QVRPCFLK5XVD0V8M8RDJD5JWWH5YHFI2DTZWG6RRTO1WFPP0HZF15DS7HM4NO5DH96JZQOY01FN9LUWV0BK6E6LXBWBCLKG8BTZULMZFFLZIAEDKX975NG' where id=21; -update noar ti set v0='XEKSFWW852KAAHSKEGJ48HGLX99SZGG8QW8PZ0CDRHL5X2W1TOMNSM4RNEZAE1IX4JWTYFDM9SZ9G9KTDOTMT1KFBEUYW0X6BZMBIBNTIRX0UFCM2F6E9FAME4YA4RBMDJSHTT6GUP0QVRPCFLK5XVD0V8M8RDJD5JWWH5YHFI2DTZWG6RRTO1WFPP0HZF15DS7HM4NO5DH96JZQOY01FN9LUWV0BK6E6LXBWBCLKG8BTZULMZFFLZIAEDKX975NG' where id=21; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='QHR1UAQQ7ITT3HPA7BIQ7QN8PAPE3Y2QTYMJ3DGEAIC0B174127WG6U5FVIQ8YPNHFVHOCI0V70B5WLEC1QPS4NDGEO90KHRH3P617ZB439KSQ10L2TIALZCDA6QVONE27720L5W4JBZBJNCQIX5DJGRRZMSL4IS68VTDE7Y6RZ7FS2RP7F6DMZ2RSVEREI4W9XSL875K5IEOMKSHJYMXCYIRJ22N5O9DXZLEB8UZIQWOIN3O10D2J7YEBF5VWEFF' where id=21; -update noar ti set v1='QHR1UAQQ7ITT3HPA7BIQ7QN8PAPE3Y2QTYMJ3DGEAIC0B174127WG6U5FVIQ8YPNHFVHOCI0V70B5WLEC1QPS4NDGEO90KHRH3P617ZB439KSQ10L2TIALZCDA6QVONE27720L5W4JBZBJNCQIX5DJGRRZMSL4IS68VTDE7Y6RZ7FS2RP7F6DMZ2RSVEREI4W9XSL875K5IEOMKSHJYMXCYIRJ22N5O9DXZLEB8UZIQWOIN3O10D2J7YEBF5VWEFF' where id=21; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='8JJARDA8JIMXNOMZO3QJT0PV7YKFK3ZP9YX8SU3XP1CAWS8XE1AE2KXT5O7V6LJIMJZOGVW7APZG40BR5C46LO54G4KR13VCXUJ60FZEIIOU9I7WZD08QVY6KDUBKL90FHUP5H3ZC6F2OITKSHW5RLF3BGYD3F7W64KHWTCB1FBWP0U42YFTI81PRGN0WSJOL9CPF3WZ0XP0LKI8BL9DHGJD4X2HAYIVCBBEA1RCCCGPADBM0SXX7JAFJHM6VTS6X' where id=21; -update noar ti set v2='8JJARDA8JIMXNOMZO3QJT0PV7YKFK3ZP9YX8SU3XP1CAWS8XE1AE2KXT5O7V6LJIMJZOGVW7APZG40BR5C46LO54G4KR13VCXUJ60FZEIIOU9I7WZD08QVY6KDUBKL90FHUP5H3ZC6F2OITKSHW5RLF3BGYD3F7W64KHWTCB1FBWP0U42YFTI81PRGN0WSJOL9CPF3WZ0XP0LKI8BL9DHGJD4X2HAYIVCBBEA1RCCCGPADBM0SXX7JAFJHM6VTS6X' where id=21; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='EDZ4EMGEZXM3X45IY3C778BVXZJ8X8RW3QEE1WKSB1R1YC69M4B4NZPNMXHO88EQEB18GLFXJLV2VMQUUNNLOAUG3PGUQPOUMP6O3BFNU3A0G7LWSORTEZZJCGRZOL5XIKUKOR2NJMBQF9WEXOLG3WC0PMC2RRRKDLSH8GBVG09SZJIHH5B4CENXV9QQY612ME0C8F5QJ034HV7JDES0NPVH1444FWTGT98YG3TUHDZBICNRM7RNQBG3GUGBUHQ6P' where id=21; -update noar ti set v3='EDZ4EMGEZXM3X45IY3C778BVXZJ8X8RW3QEE1WKSB1R1YC69M4B4NZPNMXHO88EQEB18GLFXJLV2VMQUUNNLOAUG3PGUQPOUMP6O3BFNU3A0G7LWSORTEZZJCGRZOL5XIKUKOR2NJMBQF9WEXOLG3WC0PMC2RRRKDLSH8GBVG09SZJIHH5B4CENXV9QQY612ME0C8F5QJ034HV7JDES0NPVH1444FWTGT98YG3TUHDZBICNRM7RNQBG3GUGBUHQ6P' where id=21; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='WO3CQCJRAK0VLQSJVOHQJYAF2JO2IG6BP8GYAUKA84PENPWV2ZHN46UYD7FY6DOZ0Y7HPI4B7343QHNQ4M3POFQ2CJNCLEQQ4GSPNNEBP7S0AWPP43U3PEWLN08GGR6GPCO012YE53AX8EY5NQ5GBUFDJX01XN6C3ALHOD3I2X3SKXHW6EQP8JGDNUEEYTHRVBTZZKCXKVYA3FDKSQCVO9B7QBJZATATZMXRPK9QNG9KB1HATZZ6Z6YYEROBSBY69' where id=22; -update noar ti set v0='WO3CQCJRAK0VLQSJVOHQJYAF2JO2IG6BP8GYAUKA84PENPWV2ZHN46UYD7FY6DOZ0Y7HPI4B7343QHNQ4M3POFQ2CJNCLEQQ4GSPNNEBP7S0AWPP43U3PEWLN08GGR6GPCO012YE53AX8EY5NQ5GBUFDJX01XN6C3ALHOD3I2X3SKXHW6EQP8JGDNUEEYTHRVBTZZKCXKVYA3FDKSQCVO9B7QBJZATATZMXRPK9QNG9KB1HATZZ6Z6YYEROBSBY69' where id=22; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='BT3TZ0D8XUOV3YHHAUQ3ILBZ0049B8A8JWAQK07GTIMODJITLWBQ39OWKGTBTCOAIFN0UPV8YBJCRP6MSJG81SCDN03HBRM8HT4NUN0CFL57N6IITWA5ZYLK7F9JCKHZGL4EP1QELKLA0XUIEZ4J4L4CC2PUGG836LEKA3L482KCKCIZCZ4WWI9DYLTMRERWGRCZRJU14ECX07Z835ZOILKISVDXR57AHYPE4SN7LBRHIOED69TQ6RT0R9SSG16HB' where id=22; -update noar ti set v1='BT3TZ0D8XUOV3YHHAUQ3ILBZ0049B8A8JWAQK07GTIMODJITLWBQ39OWKGTBTCOAIFN0UPV8YBJCRP6MSJG81SCDN03HBRM8HT4NUN0CFL57N6IITWA5ZYLK7F9JCKHZGL4EP1QELKLA0XUIEZ4J4L4CC2PUGG836LEKA3L482KCKCIZCZ4WWI9DYLTMRERWGRCZRJU14ECX07Z835ZOILKISVDXR57AHYPE4SN7LBRHIOED69TQ6RT0R9SSG16HB' where id=22; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='2YPKLIR4DE1LHKJEJ3XU2WCD96A5G977FZ9Z1WB93ED2GWPT7RRPX2E6SYR0A9ZMG2PGAXYGDIQJ7I67CTVF5ZCL810X1N3HTY3CRC7N4PMKU5DQ3BVB286EK5D0FLZRFB2Z3LIOJQL4R2GU5YZH8Y9R57SRJ4KFLX97D0UVSWLRD7WI00VB2GHDDJT7FJPGIZVV0LLLI3MZRUDEI012Z696XLNSBAHEH7B0ND0LVPBD53WMUSE9V0XYZ4GCGHG7U' where id=22; -update noar ti set v2='2YPKLIR4DE1LHKJEJ3XU2WCD96A5G977FZ9Z1WB93ED2GWPT7RRPX2E6SYR0A9ZMG2PGAXYGDIQJ7I67CTVF5ZCL810X1N3HTY3CRC7N4PMKU5DQ3BVB286EK5D0FLZRFB2Z3LIOJQL4R2GU5YZH8Y9R57SRJ4KFLX97D0UVSWLRD7WI00VB2GHDDJT7FJPGIZVV0LLLI3MZRUDEI012Z696XLNSBAHEH7B0ND0LVPBD53WMUSE9V0XYZ4GCGHG7U' where id=22; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='WOOXVNLOMONDMCGL3E3K673KPZBDZ8IV2ALYTDZAS2BCZYETLJO9XSFWLA1IS12RPPAZU17PFULYIBPLA12BQPX5UA47JCRISP4BMDSHGTSB6N2D339YNZRLM6PI6EST9YBQWW8IDGX5WXCLGVPH3BGADDILS78BIN1UO63XXGTE4SAIZ2OCNKLZ7MW9MY6PG80KGHM3769U9QVP7SGCXQSQG6INEFRFL5W5G6TEHAM00KXF80C7GKC1Z85R7CKJU' where id=22; -update noar ti set v3='WOOXVNLOMONDMCGL3E3K673KPZBDZ8IV2ALYTDZAS2BCZYETLJO9XSFWLA1IS12RPPAZU17PFULYIBPLA12BQPX5UA47JCRISP4BMDSHGTSB6N2D339YNZRLM6PI6EST9YBQWW8IDGX5WXCLGVPH3BGADDILS78BIN1UO63XXGTE4SAIZ2OCNKLZ7MW9MY6PG80KGHM3769U9QVP7SGCXQSQG6INEFRFL5W5G6TEHAM00KXF80C7GKC1Z85R7CKJU' where id=22; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='P7RD9WWB4R1TALVG2A6FVUCDFGTSPD4ZEPB896GSLWSCNS9BQSLXKLPDB7I8NDWYHTLR17JF9HXDFKLU0EIVR1ZS7UWXZYIAUYGJD00WC2V6GD1PLRHLTBUMR30G9FTVJSE0C1D4ZLG0IP8ZV7QX3BH18F3DX01OR0TOKWQMEA7LKJ56Q6LS76JU8CN30T4K5JGF9OUXAOTOLLQZCBK3LHZW1X6OPY7Y003HXGEI3JK9IHXFGWDARVBHIXQG8KQAE' where id=23; -update noar ti set v0='P7RD9WWB4R1TALVG2A6FVUCDFGTSPD4ZEPB896GSLWSCNS9BQSLXKLPDB7I8NDWYHTLR17JF9HXDFKLU0EIVR1ZS7UWXZYIAUYGJD00WC2V6GD1PLRHLTBUMR30G9FTVJSE0C1D4ZLG0IP8ZV7QX3BH18F3DX01OR0TOKWQMEA7LKJ56Q6LS76JU8CN30T4K5JGF9OUXAOTOLLQZCBK3LHZW1X6OPY7Y003HXGEI3JK9IHXFGWDARVBHIXQG8KQAE' where id=23; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='B2SHAL8VGJ1IQRWMPW9IGOVRRVYG2S9O7BALTD7UW60V3FV9OMLX1DR4QC6RQURGDBQU5UVVIN1L615P7P9CBKNDOIG5Y0Q2DP1I8R92SVG5JQGFBX65UR1Y280GPXVBK5W0GI42QFO7HPV65LDOBR9GDNQA8AIXQT3F6RXFVJME435BQ8EKACD9F0H2LWPY2671W93L1R4PW6FQVMDDB2DYE554T4YL9V5GJRYLDBJ7MUF53US5AYBPKHJAYCO81' where id=23; -update noar ti set v1='B2SHAL8VGJ1IQRWMPW9IGOVRRVYG2S9O7BALTD7UW60V3FV9OMLX1DR4QC6RQURGDBQU5UVVIN1L615P7P9CBKNDOIG5Y0Q2DP1I8R92SVG5JQGFBX65UR1Y280GPXVBK5W0GI42QFO7HPV65LDOBR9GDNQA8AIXQT3F6RXFVJME435BQ8EKACD9F0H2LWPY2671W93L1R4PW6FQVMDDB2DYE554T4YL9V5GJRYLDBJ7MUF53US5AYBPKHJAYCO81' where id=23; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='8IEOLDVO1OVED1QFIOBQBVI8V4T0QATA2PXS5Y83KGI58K0D6CDV21XS3MI7YRG1PW9AUVEQ7PXN0J75HIM7QQTH15YI7CPIPYON9DL4IS8IH6CJ6ZLFA1GGT3I6VG3F7A6VPNCTOOS0QM1WKL5HFFKY3GUF4852RWJJIR4L04VKZNIBXZCTJ4VZHKXK1ZKLL149S1024S4IPIRKCCNGKOTVF5WYDQ6PXIPS0AEPGP41EDE9M0E2DTUZII0JRWLKG' where id=23; -update noar ti set v2='8IEOLDVO1OVED1QFIOBQBVI8V4T0QATA2PXS5Y83KGI58K0D6CDV21XS3MI7YRG1PW9AUVEQ7PXN0J75HIM7QQTH15YI7CPIPYON9DL4IS8IH6CJ6ZLFA1GGT3I6VG3F7A6VPNCTOOS0QM1WKL5HFFKY3GUF4852RWJJIR4L04VKZNIBXZCTJ4VZHKXK1ZKLL149S1024S4IPIRKCCNGKOTVF5WYDQ6PXIPS0AEPGP41EDE9M0E2DTUZII0JRWLKG' where id=23; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='GCNB085XUZ0GZ5G66ISVJHQBO3WG50I82MDXJGSVC3WZWL7ZICYR4I4662CWM3NPGLXQ2DWLSCVXHQZEM76LJG2EJEGMSZ8E4M9LNF1FOT9J1LXEVC0V1RD53437SU5TIRUI9ULAG6ZNY8BP9VR2T4RJCGT9VFOB2F53XAT7IA69WCNKNA4LOCCNSS9GE5C3ZL6N9SJ31Y107578R3KGWZVHUDG7C941UTEF22LKVKQEJBN9SVDS93G7UYTQC320X' where id=23; -update noar ti set v3='GCNB085XUZ0GZ5G66ISVJHQBO3WG50I82MDXJGSVC3WZWL7ZICYR4I4662CWM3NPGLXQ2DWLSCVXHQZEM76LJG2EJEGMSZ8E4M9LNF1FOT9J1LXEVC0V1RD53437SU5TIRUI9ULAG6ZNY8BP9VR2T4RJCGT9VFOB2F53XAT7IA69WCNKNA4LOCCNSS9GE5C3ZL6N9SJ31Y107578R3KGWZVHUDG7C941UTEF22LKVKQEJBN9SVDS93G7UYTQC320X' where id=23; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='E0XGOP4HRH8U2O2XGZUOTBFXIRMEJY9MSJZ0JOIVE81AIFIHJSL9YAIFYYJCS4M3L4J3L0QVPNH4WPWCECGX98QSMY90VTPFMXBL2LRZZRBNIY4WAMI17A7Z1Q5BJRIN9F0QFX7W5KX9RQB1CZ3JKY6J4ODA5PMP3CE353G50YOU3W2Z1O39Y7UDXA9OVK1CTDW53REDY0K5ZIFDF750L19I45ZDRX5B3R1UZJ8UA65NL5RL71B56GYI0B2WFYLTB' where id=24; -update noar ti set v0='E0XGOP4HRH8U2O2XGZUOTBFXIRMEJY9MSJZ0JOIVE81AIFIHJSL9YAIFYYJCS4M3L4J3L0QVPNH4WPWCECGX98QSMY90VTPFMXBL2LRZZRBNIY4WAMI17A7Z1Q5BJRIN9F0QFX7W5KX9RQB1CZ3JKY6J4ODA5PMP3CE353G50YOU3W2Z1O39Y7UDXA9OVK1CTDW53REDY0K5ZIFDF750L19I45ZDRX5B3R1UZJ8UA65NL5RL71B56GYI0B2WFYLTB' where id=24; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='GTN8H25Q84ZVX3PM23GR96V21BLZ7L3RBT28LYMX40YRD042JIROH9LFEPXH1ATZSU98G7HHVVQKS5BZ87ZRT9MOU8UBNJI80F4RCZXEN521C3MGEHLYL0DNEPORII3BWPO35U63IWB58KZLE6LDIJJE321ESWQAMGTL46H4J306GF7IEAZPXQ8HNGAM7DUO9HF6H78OMP4N4816HJY8QWVE0JEN0ULTKEOUCH5MFVIDDO3NZQKUUMKDKYIMAYAD8' where id=24; -update noar ti set v1='GTN8H25Q84ZVX3PM23GR96V21BLZ7L3RBT28LYMX40YRD042JIROH9LFEPXH1ATZSU98G7HHVVQKS5BZ87ZRT9MOU8UBNJI80F4RCZXEN521C3MGEHLYL0DNEPORII3BWPO35U63IWB58KZLE6LDIJJE321ESWQAMGTL46H4J306GF7IEAZPXQ8HNGAM7DUO9HF6H78OMP4N4816HJY8QWVE0JEN0ULTKEOUCH5MFVIDDO3NZQKUUMKDKYIMAYAD8' where id=24; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='4H0K4RFAOMPR6OUAYXUOH1WJJVP9T745TF45OM5KM8YYBDP1YM56V0C0IJWICETWUXMP6ZX1AANF2314I749MKWBC3ZJO9RJB7AZJIWERIX3BYFL76QB95H1U64IVFPWXEHZV56SPF732NN30GECWXHW8W2ZXATS1EH8N53WDKSDSFZ0AL2CGZ1S7EC81IXUUU7SQ8Q47E3CG8DVB5J6WC0IY4PDX7CB36CENMHN33X6YKR2EQ8IMR8F2AVDSQZTP' where id=24; -update noar ti set v2='4H0K4RFAOMPR6OUAYXUOH1WJJVP9T745TF45OM5KM8YYBDP1YM56V0C0IJWICETWUXMP6ZX1AANF2314I749MKWBC3ZJO9RJB7AZJIWERIX3BYFL76QB95H1U64IVFPWXEHZV56SPF732NN30GECWXHW8W2ZXATS1EH8N53WDKSDSFZ0AL2CGZ1S7EC81IXUUU7SQ8Q47E3CG8DVB5J6WC0IY4PDX7CB36CENMHN33X6YKR2EQ8IMR8F2AVDSQZTP' where id=24; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='3I2P6SMLR1LY6PGGU867WSDIUE2YB9ACVPKCDLRIHIXM6VSOPS2JMU8XZ98VUBAOSVWUJ3YW2N5KZP2JFDTAV5E51VDZIHKABJLDR717WRUVBM4WKBN7SBDR5BIZUAI3V7GKTWLZYFVDO6T93XV70RUCTQ9J629W4WAE4G6717CC0BFYAOLVI0L95MABQW6E099WB4JK8R5841QV7DEG76AMXANKB41OKL3N7CKTCUF9J8E2WK9BTCLX4JLWBMB0Z' where id=24; -update noar ti set v3='3I2P6SMLR1LY6PGGU867WSDIUE2YB9ACVPKCDLRIHIXM6VSOPS2JMU8XZ98VUBAOSVWUJ3YW2N5KZP2JFDTAV5E51VDZIHKABJLDR717WRUVBM4WKBN7SBDR5BIZUAI3V7GKTWLZYFVDO6T93XV70RUCTQ9J629W4WAE4G6717CC0BFYAOLVI0L95MABQW6E099WB4JK8R5841QV7DEG76AMXANKB41OKL3N7CKTCUF9J8E2WK9BTCLX4JLWBMB0Z' where id=24; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='39XUFD29HM0I9FUXGQ358TF81A48FX1PRDJGBG319N73OJMWFSRRMOWOUXVX0HVIUPHFFELN3NZW0QX24JU0DAGVXGOIBR5BEIJIWR5EBOEARWPTK3SLBE47GG9QQ04USTVKN290H8MSPS9P6AON0H6Q9M4K8LXFIEZB90JXZZZ8UFOA1Z5MKYG2X186VRW5454S9YOTMMAQEG3WWUK4UY0ZTWHNR4ZFIEN2QA5CNW4SK10S1TH8XGOUEBNM8I4LX' where id=25; -update noar ti set v0='39XUFD29HM0I9FUXGQ358TF81A48FX1PRDJGBG319N73OJMWFSRRMOWOUXVX0HVIUPHFFELN3NZW0QX24JU0DAGVXGOIBR5BEIJIWR5EBOEARWPTK3SLBE47GG9QQ04USTVKN290H8MSPS9P6AON0H6Q9M4K8LXFIEZB90JXZZZ8UFOA1Z5MKYG2X186VRW5454S9YOTMMAQEG3WWUK4UY0ZTWHNR4ZFIEN2QA5CNW4SK10S1TH8XGOUEBNM8I4LX' where id=25; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='MERR3SYL0LYN8XNCONSVN6JYOFC7XLA1HCITK123KOTSMJJHT8ATYENA9DH85I2ODFOCX9L891SJ8Z42D94MVGFN9BRSCNWV78A8O9MDKRP9CB0AJKSHBMA3R8K635ZXAJT0OGOG1OF8IRFIIIG4H5NVYJGG44U3UKPKAZ4EXB2ZTAAUUUUPBET76UF74R4NNDBPIWT8SM9YS37UMGWGFVG7SXMA7080Y12EEUJYYCZZZ7KBCJRS1RJ6BBX0UP05R' where id=25; -update noar ti set v1='MERR3SYL0LYN8XNCONSVN6JYOFC7XLA1HCITK123KOTSMJJHT8ATYENA9DH85I2ODFOCX9L891SJ8Z42D94MVGFN9BRSCNWV78A8O9MDKRP9CB0AJKSHBMA3R8K635ZXAJT0OGOG1OF8IRFIIIG4H5NVYJGG44U3UKPKAZ4EXB2ZTAAUUUUPBET76UF74R4NNDBPIWT8SM9YS37UMGWGFVG7SXMA7080Y12EEUJYYCZZZ7KBCJRS1RJ6BBX0UP05R' where id=25; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='2FO4NAM2C26B5U1BF8UQT1MCIDRIC2QSBTD8XF3A3OC8B1NQFJDQWKO3UMJ288N3JFJIQ5WPUOF9C059X9G1ZF7GL91L83EH2P9TI7MJTWUW0AMFU6B694ZRCBRU40HJ0EX6G06GNMCDN6WJ65BVOJHASA2KYDLE0T2JIP0R01GG03SHPK4RE2R2CS3TPUWMOO0KLG08BFG3NTSOZV5FVAB2OXZQHYSQMUJ1EKET0RE5JBTS9EQMLUIEJSMT7LUGO' where id=25; -update noar ti set v2='2FO4NAM2C26B5U1BF8UQT1MCIDRIC2QSBTD8XF3A3OC8B1NQFJDQWKO3UMJ288N3JFJIQ5WPUOF9C059X9G1ZF7GL91L83EH2P9TI7MJTWUW0AMFU6B694ZRCBRU40HJ0EX6G06GNMCDN6WJ65BVOJHASA2KYDLE0T2JIP0R01GG03SHPK4RE2R2CS3TPUWMOO0KLG08BFG3NTSOZV5FVAB2OXZQHYSQMUJ1EKET0RE5JBTS9EQMLUIEJSMT7LUGO' where id=25; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='HMMKT3RWDO07HHXH2AKK4EA8O3I5O3NS1A1TXSZ6V48T9ML8CP30OQNDXQKQBG58YLH8ASDQ8L27GZGDHEAKS2ZUGEMX6P3GADT7L0N53LZSV8SDBA67PT1HO1VQCFYKEBIX8H8E7X58QUDLV8NHLDVZDJDEVM44XI4R5NTBNPAM5J2ATBHSZBKIIM9IQONCEHXOIBGRJTWT54TDK1PKUXZ0HETMU73EJQFOQFUCFOWWDX6NH1GX5B34VWK0GICEG' where id=25; -update noar ti set v3='HMMKT3RWDO07HHXH2AKK4EA8O3I5O3NS1A1TXSZ6V48T9ML8CP30OQNDXQKQBG58YLH8ASDQ8L27GZGDHEAKS2ZUGEMX6P3GADT7L0N53LZSV8SDBA67PT1HO1VQCFYKEBIX8H8E7X58QUDLV8NHLDVZDJDEVM44XI4R5NTBNPAM5J2ATBHSZBKIIM9IQONCEHXOIBGRJTWT54TDK1PKUXZ0HETMU73EJQFOQFUCFOWWDX6NH1GX5B34VWK0GICEG' where id=25; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='C2RS2NLODKUCV4IKB38BZSIHZYYE1Q0SCKCFB49GGMP3TRRN6ZP2CX2C76IGBHQ11T6TTQ66N9QPF1V7K2CLSAJM6PKARLJWAEY646O4VFW0SCY353RXAAYYOY3JPJ1Q0B203GDOQT7FYLFIYIP6C1E0XZW3CUU3BSQNF5YDPWWACE4I2Y6D9J1C08DQAORO4IWRSGU9YC6KF1JL7HFVAFJ5IIF0IUDZ61OQRX9UMAE150YJF98U5EJOYF0GJ4DAU' where id=26; -update noar ti set v0='C2RS2NLODKUCV4IKB38BZSIHZYYE1Q0SCKCFB49GGMP3TRRN6ZP2CX2C76IGBHQ11T6TTQ66N9QPF1V7K2CLSAJM6PKARLJWAEY646O4VFW0SCY353RXAAYYOY3JPJ1Q0B203GDOQT7FYLFIYIP6C1E0XZW3CUU3BSQNF5YDPWWACE4I2Y6D9J1C08DQAORO4IWRSGU9YC6KF1JL7HFVAFJ5IIF0IUDZ61OQRX9UMAE150YJF98U5EJOYF0GJ4DAU' where id=26; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='0YJVHYUJ973HRJIABAMPAX8K6TWXBNUK4LMBY5IIHLQL70JPVCXH2F18RJ1TNUMEHAMATQ4EU2R81PULB9YSW8MW67RX7MD3K8J2YHSHNTO1BZOMRTNJ1ZXUSOHCHDV518JWPFHIZXCLALXAJ7T2TONWTVJ0RTXQJAIXFKYYPTYF3LPZTNPR8TLBYNFAI1QVRNXVRPDM0B2JDJ5ANSHKLITMTQTDOG7MPYCVMVVSKU0UV8O74F4W9XWZRH6GMCZWT' where id=26; -update noar ti set v1='0YJVHYUJ973HRJIABAMPAX8K6TWXBNUK4LMBY5IIHLQL70JPVCXH2F18RJ1TNUMEHAMATQ4EU2R81PULB9YSW8MW67RX7MD3K8J2YHSHNTO1BZOMRTNJ1ZXUSOHCHDV518JWPFHIZXCLALXAJ7T2TONWTVJ0RTXQJAIXFKYYPTYF3LPZTNPR8TLBYNFAI1QVRNXVRPDM0B2JDJ5ANSHKLITMTQTDOG7MPYCVMVVSKU0UV8O74F4W9XWZRH6GMCZWT' where id=26; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='2747KCLKVF755VLZH2CJHIYL9J2Q5SXIDLPS0I23X84FQOUDAIJVIPRN6777R6U9LPHOMSFNS3PX8F6TCXTQNUQ0DKQ2WI4ADAMBSWU7384JYJDCF781LPELGIGNG607DHZXEHDUL6WGV59SGFY9EF4F98AL15OJPGWATGR4CVQM5P8YP86XMVT5S94REEDUA60VSYCKL7DIBK6ASM3YB7O7TK15DWDYBOPB8PC2RID4D6QUTJJPPAL7X55V968UN' where id=26; -update noar ti set v2='2747KCLKVF755VLZH2CJHIYL9J2Q5SXIDLPS0I23X84FQOUDAIJVIPRN6777R6U9LPHOMSFNS3PX8F6TCXTQNUQ0DKQ2WI4ADAMBSWU7384JYJDCF781LPELGIGNG607DHZXEHDUL6WGV59SGFY9EF4F98AL15OJPGWATGR4CVQM5P8YP86XMVT5S94REEDUA60VSYCKL7DIBK6ASM3YB7O7TK15DWDYBOPB8PC2RID4D6QUTJJPPAL7X55V968UN' where id=26; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='6TERZ9M8DGQ3HYD4VLLKH9LKGNSS75S6ZFKDZBA8W1XI5XVB4VMR8UQLFNNDNYWBU71WU2ZDKCOBTEP1O9Y516421LCE8CEU7V1U71KMZQ38ASIVUV6D19YHS1DNX675BYM07C20FEI6AQAKREPQJDDRZ37AAG01C2A1K2TQJ8Z6MY2VGW51MDA765QUT6PJ1U96JVZAMZ0OGZUDNQL68105YYSKI8OGYNKRQ9LNXWRX8PY5ZC5L79KG251CKG7XP' where id=26; -update noar ti set v3='6TERZ9M8DGQ3HYD4VLLKH9LKGNSS75S6ZFKDZBA8W1XI5XVB4VMR8UQLFNNDNYWBU71WU2ZDKCOBTEP1O9Y516421LCE8CEU7V1U71KMZQ38ASIVUV6D19YHS1DNX675BYM07C20FEI6AQAKREPQJDDRZ37AAG01C2A1K2TQJ8Z6MY2VGW51MDA765QUT6PJ1U96JVZAMZ0OGZUDNQL68105YYSKI8OGYNKRQ9LNXWRX8PY5ZC5L79KG251CKG7XP' where id=26; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='QKZ3UMFFSK138ITH538YKUOI35AXGMN8XGPO964RMVJSBVQU5ESKNZPVJCI112S76BDX2HNB93FMDP2PA6KEKYM7T7CAXU284MWPC58XTUDGFO20EZDT8Q6U33W5QSQ3KGRF7XNE62N8TLMPZQJSXMRY90P5NVLG3655TGY63T7QFF09OXF4UVJB65PDMYI3429FR0V1PBWCO6R6E3DB1NGM427UPPKL6ENXKEI2AAHLVL2P1EKZHZWTTZ8JR21UF' where id=27; -update noar ti set v0='QKZ3UMFFSK138ITH538YKUOI35AXGMN8XGPO964RMVJSBVQU5ESKNZPVJCI112S76BDX2HNB93FMDP2PA6KEKYM7T7CAXU284MWPC58XTUDGFO20EZDT8Q6U33W5QSQ3KGRF7XNE62N8TLMPZQJSXMRY90P5NVLG3655TGY63T7QFF09OXF4UVJB65PDMYI3429FR0V1PBWCO6R6E3DB1NGM427UPPKL6ENXKEI2AAHLVL2P1EKZHZWTTZ8JR21UF' where id=27; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='7MN2QHZPXVOVQJT9SHV3QMOMXWMZLS3M6AX041N90X75KZYN8UNK4VBIA2EZ1FADC0E2AWPRS61FAB080IJFRQ5M6J8LEUYTITAA3QRPS5CEXEZ3BQIQMPD4JNJY8XIM46NV2GMOUO4W1NQ7OYDM2D0HI8NAMSYHJQJH0FFBC1172S5VYQ6Z1VOU0WFAM6WAGLJ25KPK1Q5YUNZJK09B8NLK6HNKY5GPCNFYAGS5GFN2WIWH8ZZ5JLXH2KSSIO9KD' where id=27; -update noar ti set v1='7MN2QHZPXVOVQJT9SHV3QMOMXWMZLS3M6AX041N90X75KZYN8UNK4VBIA2EZ1FADC0E2AWPRS61FAB080IJFRQ5M6J8LEUYTITAA3QRPS5CEXEZ3BQIQMPD4JNJY8XIM46NV2GMOUO4W1NQ7OYDM2D0HI8NAMSYHJQJH0FFBC1172S5VYQ6Z1VOU0WFAM6WAGLJ25KPK1Q5YUNZJK09B8NLK6HNKY5GPCNFYAGS5GFN2WIWH8ZZ5JLXH2KSSIO9KD' where id=27; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='SML8WRDMKMUL2UQXZWCZFKSEFR9CIZ47Q5D6X7GOPHZKFY0167QNASXF6MSXWXYFNT2FS575PNR6I6OL4YCFLN1SV5IYJMZWBBJHVEUL1V8BPWRNIKY80J0KQ9N4PAFTO8ZQJ3MFL89U6400MVCEP410A7KPQU4RTTX3OZ7XHN8WJYMTKSP9QLM5PNDVQBVXGAA8B5FMO4PXXIXXSFVNEDZDNAQB4XYTEBLJT933EWAHO4IXDM1FSWCA8DQO0O0SP' where id=27; -update noar ti set v2='SML8WRDMKMUL2UQXZWCZFKSEFR9CIZ47Q5D6X7GOPHZKFY0167QNASXF6MSXWXYFNT2FS575PNR6I6OL4YCFLN1SV5IYJMZWBBJHVEUL1V8BPWRNIKY80J0KQ9N4PAFTO8ZQJ3MFL89U6400MVCEP410A7KPQU4RTTX3OZ7XHN8WJYMTKSP9QLM5PNDVQBVXGAA8B5FMO4PXXIXXSFVNEDZDNAQB4XYTEBLJT933EWAHO4IXDM1FSWCA8DQO0O0SP' where id=27; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='IVBDS3VZRB6GHU1K43OYTRCVMV4AA2H9X0J4KIXXA332YPLWT5PKP6U00OAC806XSYP621EF787D9XX0VMN5PF5EK239JH71GNGD6OB7XV7XI0W7AKET1GHA7MLSJROJB8IDMFWBIQFGLNGKO3UULYQJHR6DJ4GGYO4EDQI086NRHRYPE4OI4LNQINA6JFT10H3BMUFWUY3W9QSC316VBF6LMUS8352Z7COHUWRZO6LX13DE1W94KUR08U1PPFFZ6' where id=27; -update noar ti set v3='IVBDS3VZRB6GHU1K43OYTRCVMV4AA2H9X0J4KIXXA332YPLWT5PKP6U00OAC806XSYP621EF787D9XX0VMN5PF5EK239JH71GNGD6OB7XV7XI0W7AKET1GHA7MLSJROJB8IDMFWBIQFGLNGKO3UULYQJHR6DJ4GGYO4EDQI086NRHRYPE4OI4LNQINA6JFT10H3BMUFWUY3W9QSC316VBF6LMUS8352Z7COHUWRZO6LX13DE1W94KUR08U1PPFFZ6' where id=27; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='ZKST3LOJ5JHA3RGIMD9WXF2V734DMMHHO34ZAQCFA5LGC8QJJTKVWIVD11ZOK51QB5ZURZ6LYEL171UBWW4MTDZZ4JN4XCU5NIHERVBUR0YFXPWKV0GW7TYX26PEI69RHUO4QU0FE06T4YKF2NJQXX3U8KZ6J19P2EYGZ8IMRN2T18EY219CN9A3R92EZ4HWVZC73GFAG9FX6EY0DD1ZBM8N0YQVJFLM4KZTH9Z39AQ1J1AD4IZOWPF00TZM32RPO' where id=28; -update noar ti set v0='ZKST3LOJ5JHA3RGIMD9WXF2V734DMMHHO34ZAQCFA5LGC8QJJTKVWIVD11ZOK51QB5ZURZ6LYEL171UBWW4MTDZZ4JN4XCU5NIHERVBUR0YFXPWKV0GW7TYX26PEI69RHUO4QU0FE06T4YKF2NJQXX3U8KZ6J19P2EYGZ8IMRN2T18EY219CN9A3R92EZ4HWVZC73GFAG9FX6EY0DD1ZBM8N0YQVJFLM4KZTH9Z39AQ1J1AD4IZOWPF00TZM32RPO' where id=28; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='8LH8BNWU4CFBN15JMKI8I0TVJN5EZ4FK9AE8PIPRJ2JOM03E81MEBBY2VG4VGGAIPFO6B1JEAVRQ96PQ8EE4NTT1YUKHXMPE0AHIE16CY0WS2Q9UFZ2ZTNW01MY34EK5QB04GHSJKW9OX5YAKM2PFUWAPEZDT7W16X5SRIOV7ZCDYUU4KGLL5L5HLCZZU60GGW68ZQRM2QBDJGWRTIEYLYHC3T8695R1HE6KAQGA2VDUJKIQTJ0RVXVI3PSDCBQ59' where id=28; -update noar ti set v1='8LH8BNWU4CFBN15JMKI8I0TVJN5EZ4FK9AE8PIPRJ2JOM03E81MEBBY2VG4VGGAIPFO6B1JEAVRQ96PQ8EE4NTT1YUKHXMPE0AHIE16CY0WS2Q9UFZ2ZTNW01MY34EK5QB04GHSJKW9OX5YAKM2PFUWAPEZDT7W16X5SRIOV7ZCDYUU4KGLL5L5HLCZZU60GGW68ZQRM2QBDJGWRTIEYLYHC3T8695R1HE6KAQGA2VDUJKIQTJ0RVXVI3PSDCBQ59' where id=28; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='20S46Y0P3AF4JSHJ4Y1J1WAFG71GHGTWUMKCKI6CQAF4V3CFR9XMTJ2YUTTB0ZTU6CLYPUVLYIVE7MRCKJN76BBB1AUK2OX6UASIQ5H47DDK4DJ36B39GQEXECHQZRUKYJUD5UTQ66IXA5STJFGOP2D3AJU8YGAJ1X5L7XGACIVVCYVW6NBFBY9P85UBC6MI9PXQ06VJ0ZS6OFCDY7M1YBURMZBIWFGPRO5J5FH0P8S7G1SD08BA0VIW9JEBRLUUZ' where id=28; -update noar ti set v2='20S46Y0P3AF4JSHJ4Y1J1WAFG71GHGTWUMKCKI6CQAF4V3CFR9XMTJ2YUTTB0ZTU6CLYPUVLYIVE7MRCKJN76BBB1AUK2OX6UASIQ5H47DDK4DJ36B39GQEXECHQZRUKYJUD5UTQ66IXA5STJFGOP2D3AJU8YGAJ1X5L7XGACIVVCYVW6NBFBY9P85UBC6MI9PXQ06VJ0ZS6OFCDY7M1YBURMZBIWFGPRO5J5FH0P8S7G1SD08BA0VIW9JEBRLUUZ' where id=28; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='3TY92XYW97URV8JEGZ7VZYTPSX5NJFVNWKO7N18H4A1PMEZ9H69HSS9OB0LPXCOK8VDSRJNTUTXTNUQ2X0OKMLROXOAQ5JN2PNEOAWO2DL3UIX6OT6D2NG29IS393C80640884KNC7MGDHUGD9NOKNMZ4GTRPGO54ZFIN7602MMR00D2ZJ5X04GB0M11GMU9WPRNGZCS8O3GZH6BIBY6CIA6MIA85I5OXLM36LQZZ6MOJ9WMEXPKOQI0BUMYFYE7K' where id=28; -update noar ti set v3='3TY92XYW97URV8JEGZ7VZYTPSX5NJFVNWKO7N18H4A1PMEZ9H69HSS9OB0LPXCOK8VDSRJNTUTXTNUQ2X0OKMLROXOAQ5JN2PNEOAWO2DL3UIX6OT6D2NG29IS393C80640884KNC7MGDHUGD9NOKNMZ4GTRPGO54ZFIN7602MMR00D2ZJ5X04GB0M11GMU9WPRNGZCS8O3GZH6BIBY6CIA6MIA85I5OXLM36LQZZ6MOJ9WMEXPKOQI0BUMYFYE7K' where id=28; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='LXV10XHNT0YJOI6VRPXD409C8Y1L7RNWT7IORA4YKF17DLF2XOHXMOHN0LTVGR9AD6ITUBD5VP2T5WQ086OXPMLM9TBAT6BCEWMA722TRLYXOIIJZ372X3MEU62RHS1XENY6IVORRVHMHO8EIHYFZRUKTYAMLRL6CBNUI9C54P1WTSD9RKRLCJZEZX0EP78Z89G5VE63CRMQL55FS2YIF7505LEE93XL7YXK0YIGUH9VK91N76FX3IPG2BO6J8AZ7' where id=29; -update noar ti set v0='LXV10XHNT0YJOI6VRPXD409C8Y1L7RNWT7IORA4YKF17DLF2XOHXMOHN0LTVGR9AD6ITUBD5VP2T5WQ086OXPMLM9TBAT6BCEWMA722TRLYXOIIJZ372X3MEU62RHS1XENY6IVORRVHMHO8EIHYFZRUKTYAMLRL6CBNUI9C54P1WTSD9RKRLCJZEZX0EP78Z89G5VE63CRMQL55FS2YIF7505LEE93XL7YXK0YIGUH9VK91N76FX3IPG2BO6J8AZ7' where id=29; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='NV943HMRK7GDPEV2TOCSQC73YEJBGP9PP4ZGFE2POARAMRHKIEGH601L4NFSN86VO4I69JXLDCW36TSPS57M3A52BYRL0ZMH6Z4DJOGKT657SMV3ETMFOYGFZ9IMDRPR06TLUSX4XNQNPH8UB498F40RHSK1U6N2OM0MXHUBC6YR3WZF8WIQXR6AGTOB2GITIQYPY3MZMSSQO854TGCCAQZUCXC5FVGW18P0ZGANH46MK8E6EU7N7K5DWIXYXJMOS' where id=29; -update noar ti set v1='NV943HMRK7GDPEV2TOCSQC73YEJBGP9PP4ZGFE2POARAMRHKIEGH601L4NFSN86VO4I69JXLDCW36TSPS57M3A52BYRL0ZMH6Z4DJOGKT657SMV3ETMFOYGFZ9IMDRPR06TLUSX4XNQNPH8UB498F40RHSK1U6N2OM0MXHUBC6YR3WZF8WIQXR6AGTOB2GITIQYPY3MZMSSQO854TGCCAQZUCXC5FVGW18P0ZGANH46MK8E6EU7N7K5DWIXYXJMOS' where id=29; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='PMHHSQ67C3G8HKF90KIFQO6CUH78Y1LLJTARWTASXPIKMKWQ4B20GXDLO7D5YS1FTY6HHAMNLMHPR9Z31HWFY0ON5OR9UBJ1KSLU8SJTE8IFJTKL9TPCLS51NFLEE9TH1OTHC0UTACRMMRIMT1MRSU6FWO2D5H0AI7A84XNEGWS9FPB59FM0AYN5DREW8ONKQRQELP9AYKR2NL560GCNN1BU5LPXKYBS05PYF0DSQ4HNRFTXN40KLQNFPZYP7DDDD' where id=29; -update noar ti set v2='PMHHSQ67C3G8HKF90KIFQO6CUH78Y1LLJTARWTASXPIKMKWQ4B20GXDLO7D5YS1FTY6HHAMNLMHPR9Z31HWFY0ON5OR9UBJ1KSLU8SJTE8IFJTKL9TPCLS51NFLEE9TH1OTHC0UTACRMMRIMT1MRSU6FWO2D5H0AI7A84XNEGWS9FPB59FM0AYN5DREW8ONKQRQELP9AYKR2NL560GCNN1BU5LPXKYBS05PYF0DSQ4HNRFTXN40KLQNFPZYP7DDDD' where id=29; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='H1PWAJRJNZU6I983OO5MBSKK5RP12E56OBNEITZY57X8J11UJBURER9ZI670C9T2N21G3IBPBA7IC1106LSEWWQ90FHS6816ENTDCWP1D3JAY9E4Q33TVE0IX681NRIHW0TA4EB8Q8BSR5QZZG96I0UON6D9QN1EM4WHSNQ0LUVXA194KPGGNKHKZOYEM0C407MNOZ65CTSEU88HUYK5PWGIKDW9XHRNW4LGY9I1TQ1DJUGNMA1DV4CI40PYYZPWS' where id=29; -update noar ti set v3='H1PWAJRJNZU6I983OO5MBSKK5RP12E56OBNEITZY57X8J11UJBURER9ZI670C9T2N21G3IBPBA7IC1106LSEWWQ90FHS6816ENTDCWP1D3JAY9E4Q33TVE0IX681NRIHW0TA4EB8Q8BSR5QZZG96I0UON6D9QN1EM4WHSNQ0LUVXA194KPGGNKHKZOYEM0C407MNOZ65CTSEU88HUYK5PWGIKDW9XHRNW4LGY9I1TQ1DJUGNMA1DV4CI40PYYZPWS' where id=29; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='AU0OXSWA6CDQ8V1RJ6ZGW8B1QNXOTKM0WRWHR5DBNO4BK9E2SISOJLVM5EPPKPPJVEQ4DJ4UATRNQ810C300GIRJ64VTJCHA08NOROZMDUKWUV38Q1ZF9KDM3YN6ZLVT7T7G07GDHS60SAWRCY2ZKE60CISNFPNF8ACT9MF648752NWBNHATVAJGF62A1CFKF6VMVYB1XSWYFFSQV8XUYYRO0LW915U8Y3R25L70Q9YGC0NE86CJAJ70NFOO7ZS80' where id=30; -update noar ti set v0='AU0OXSWA6CDQ8V1RJ6ZGW8B1QNXOTKM0WRWHR5DBNO4BK9E2SISOJLVM5EPPKPPJVEQ4DJ4UATRNQ810C300GIRJ64VTJCHA08NOROZMDUKWUV38Q1ZF9KDM3YN6ZLVT7T7G07GDHS60SAWRCY2ZKE60CISNFPNF8ACT9MF648752NWBNHATVAJGF62A1CFKF6VMVYB1XSWYFFSQV8XUYYRO0LW915U8Y3R25L70Q9YGC0NE86CJAJ70NFOO7ZS80' where id=30; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='1DAJTFC8QKQ4THZVMCOY89H4T478NBAQY4ZFQZO4FRXZXL7OHAF1SQ6CI8V6H3ORQUVV4S0KBWHTIK7YCW9OO8P78JJA9CE87AH91PGBUW28XZVPHANUW6O3ERBS7VAM1LJASWPL6C09BEKZAYPAE1I6Y8IDVQKDFCOI09K1AABG6RWCJ67JAKH9A9UN5WW2QGVWUC6TEPQJ7RM4696GUTPDY9XVCLA54LTIOYPII2H3VQOT8ACV1ZPTAKZ8KFIA0' where id=30; -update noar ti set v1='1DAJTFC8QKQ4THZVMCOY89H4T478NBAQY4ZFQZO4FRXZXL7OHAF1SQ6CI8V6H3ORQUVV4S0KBWHTIK7YCW9OO8P78JJA9CE87AH91PGBUW28XZVPHANUW6O3ERBS7VAM1LJASWPL6C09BEKZAYPAE1I6Y8IDVQKDFCOI09K1AABG6RWCJ67JAKH9A9UN5WW2QGVWUC6TEPQJ7RM4696GUTPDY9XVCLA54LTIOYPII2H3VQOT8ACV1ZPTAKZ8KFIA0' where id=30; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='8E200MO7QMM0QU7RINIKZSR8JLZRUSZ82C0H2LOSQLQZ4Z40B863GQTNVEG1KR1PV6B9RTQ9WR9A0B5A5FMXK8ZMJBHJQFHLPMH1Z99PMGXAGQXU5W1PYTMRAM9MKMPTRQTVQGN8QNI4RHT5PIHNB05G3EUZ3TNJYHP407TZIVUK818J4ILMREQV28Q2ED9ZL28BFBXG1A6C6RASFV1PZESAONRUHDFNUT2OIQQ2OAU0FI1HNKI4BR91Z5Z5S7KH3' where id=30; -update noar ti set v2='8E200MO7QMM0QU7RINIKZSR8JLZRUSZ82C0H2LOSQLQZ4Z40B863GQTNVEG1KR1PV6B9RTQ9WR9A0B5A5FMXK8ZMJBHJQFHLPMH1Z99PMGXAGQXU5W1PYTMRAM9MKMPTRQTVQGN8QNI4RHT5PIHNB05G3EUZ3TNJYHP407TZIVUK818J4ILMREQV28Q2ED9ZL28BFBXG1A6C6RASFV1PZESAONRUHDFNUT2OIQQ2OAU0FI1HNKI4BR91Z5Z5S7KH3' where id=30; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='JED4CKSYO2GZUIJUGG5XU4HDCRXP6ZA0WFHNVK7COPDDB3B80GKCFT0TNXX2W0R8EJJO9WSG6WDCV76QAQ6OELSN88SBETG3SIHK740NIOE0L1ZIGBF1C5WZXDTQSKYYI8DFT0OPTOLGQWPEFVHMLT9JS1CE4S4FSJAC6FCUB3EJ67WX5DA8RYWNOQML1EGK5BZMAR4KN0V3ENGZBMPV5LX6SKXILRR6IBRKEA5UUD661GTQD0PUL8V5SA2NEG73B' where id=30; -update noar ti set v3='JED4CKSYO2GZUIJUGG5XU4HDCRXP6ZA0WFHNVK7COPDDB3B80GKCFT0TNXX2W0R8EJJO9WSG6WDCV76QAQ6OELSN88SBETG3SIHK740NIOE0L1ZIGBF1C5WZXDTQSKYYI8DFT0OPTOLGQWPEFVHMLT9JS1CE4S4FSJAC6FCUB3EJ67WX5DA8RYWNOQML1EGK5BZMAR4KN0V3ENGZBMPV5LX6SKXILRR6IBRKEA5UUD661GTQD0PUL8V5SA2NEG73B' where id=30; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='ICP5WMQ659GOI17Y5APP1MNR6K0GWALYF598VA5YBTI8LQBVVOAI9W5EHBVXGQV3X370YHXXFMK8VKU3B9LDVV4EBDIQMMT6FB6QXAQLUM5H8XRMKW0BPDT4R2USR2QGAIF13684E0LJJ0BFCQQPG9R169MIJHOJQP7SFB1SL1PXB8X12UPPPPZQFEV64Q2WKXH7YW5ZW42SCMQUZWSHKCX4ABZXA2J1NYHL3ESAFT01TSLSH6ZO2NWFMZK10XCP9' where id=31; -update noar ti set v0='ICP5WMQ659GOI17Y5APP1MNR6K0GWALYF598VA5YBTI8LQBVVOAI9W5EHBVXGQV3X370YHXXFMK8VKU3B9LDVV4EBDIQMMT6FB6QXAQLUM5H8XRMKW0BPDT4R2USR2QGAIF13684E0LJJ0BFCQQPG9R169MIJHOJQP7SFB1SL1PXB8X12UPPPPZQFEV64Q2WKXH7YW5ZW42SCMQUZWSHKCX4ABZXA2J1NYHL3ESAFT01TSLSH6ZO2NWFMZK10XCP9' where id=31; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='KTZGNSEXC1MQTS1B164LERUQ45C9WURO7YKNZTDL58G0ENKJ1SEK4WC2JVHWTWSSCK6X35G793AB88TJLSFD27DHNXESEBMBIZNGIX7IU2SUSGHY1FT30AMQ2QFLMTHED46759UMKL7RKCLH095S0VQUIGRRV92QH09BGVRKTCXN1VLXT905ICW8R8UJIXT46FEA14VZC56BCTYRQ9CP9LQP1XR8L19ZRC38ZLM4H8DXFZ4UJYU4DZ2UE65F5IIAF' where id=31; -update noar ti set v1='KTZGNSEXC1MQTS1B164LERUQ45C9WURO7YKNZTDL58G0ENKJ1SEK4WC2JVHWTWSSCK6X35G793AB88TJLSFD27DHNXESEBMBIZNGIX7IU2SUSGHY1FT30AMQ2QFLMTHED46759UMKL7RKCLH095S0VQUIGRRV92QH09BGVRKTCXN1VLXT905ICW8R8UJIXT46FEA14VZC56BCTYRQ9CP9LQP1XR8L19ZRC38ZLM4H8DXFZ4UJYU4DZ2UE65F5IIAF' where id=31; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='F43ZYNJVWZZVA4N0WAG6L1A0X9DIWK6T76HKQR76AYWQK8Q8PCWTCW1RUGCW2AHNU4FXBS2KMUUVHH4LOUI6Y24OE1GKWE5LQI3DPODPJOJIHN2U3EUOK6YX7EZJNC9PIBU4PD4JMD22BJA8YVJ1I10BX814RH8JFXA8VMOUYO512N3UFTCZTXAB0U15E8WKEZIJ4DA7CI66H6ZMPGW6BMZA8HHQBMF20EJZ48TPECAC7TR8IJ9B4FNXYCL331BNT' where id=31; -update noar ti set v2='F43ZYNJVWZZVA4N0WAG6L1A0X9DIWK6T76HKQR76AYWQK8Q8PCWTCW1RUGCW2AHNU4FXBS2KMUUVHH4LOUI6Y24OE1GKWE5LQI3DPODPJOJIHN2U3EUOK6YX7EZJNC9PIBU4PD4JMD22BJA8YVJ1I10BX814RH8JFXA8VMOUYO512N3UFTCZTXAB0U15E8WKEZIJ4DA7CI66H6ZMPGW6BMZA8HHQBMF20EJZ48TPECAC7TR8IJ9B4FNXYCL331BNT' where id=31; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='EAJN8CNKSUEXYCFDES83SR207HQ02S41N3KQLC6WII2ZT28I2MYKKRYBM8WVKD5KXU3TADL4W6IRPJTT2SI35BDQ58GS6UO7NGMXUX4FAH80VCW55TFQ54F4WJ6RU5VSHE6ZEBNRALOEDBKTLTXGPWO03YIDA7L46K7ED41PSD0AMFSSDIKCZWKJQLNC5L7T49V4OOH7C4FN6XVH9K260YY24ZMUQSW44DM3C4R1V0J131CWB44EINNY6WKRCL5AR' where id=31; -update noar ti set v3='EAJN8CNKSUEXYCFDES83SR207HQ02S41N3KQLC6WII2ZT28I2MYKKRYBM8WVKD5KXU3TADL4W6IRPJTT2SI35BDQ58GS6UO7NGMXUX4FAH80VCW55TFQ54F4WJ6RU5VSHE6ZEBNRALOEDBKTLTXGPWO03YIDA7L46K7ED41PSD0AMFSSDIKCZWKJQLNC5L7T49V4OOH7C4FN6XVH9K260YY24ZMUQSW44DM3C4R1V0J131CWB44EINNY6WKRCL5AR' where id=31; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='WSP3ZJWDVQ5XACQ0P7XB9I46MV3A487A2E624QPDDZYAQXPILCV54NOV6YCD6T6141T1JOC8NIPP080LO2IRC9PI6UGAIEUE1LJCJP9FSJ4Z5391MSNOYIXYLCH0114JG45DAAOEVDW10GIWYITGCU4VO1PZM9ELSZJ453XRZ261CPMLZF8GB4JRD4IBL7ZY3R4PSYKQH4BUG1S7STRVO50LMNSOA5H72X9QIOWZZ1GAYWJC6MN8P4HNSXR3XAFNW' where id=32; -update noar ti set v0='WSP3ZJWDVQ5XACQ0P7XB9I46MV3A487A2E624QPDDZYAQXPILCV54NOV6YCD6T6141T1JOC8NIPP080LO2IRC9PI6UGAIEUE1LJCJP9FSJ4Z5391MSNOYIXYLCH0114JG45DAAOEVDW10GIWYITGCU4VO1PZM9ELSZJ453XRZ261CPMLZF8GB4JRD4IBL7ZY3R4PSYKQH4BUG1S7STRVO50LMNSOA5H72X9QIOWZZ1GAYWJC6MN8P4HNSXR3XAFNW' where id=32; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='OZM5W0R94MQT5WE47OFXW8G2P0UXLBMRPGZ1159FXXEMK9VKODLWTCLHLJIPBRHR1CYPLXINTEM9SWXP34BT1JWM1X1T6IGGDWF11M59S01ELAWHT31E4CXFNLTCWWKYGESFBTA7PZSUMIPTU5PNE9C7THWMC1ZSXBCEFGJKJBA73Z055M2Z79OUV2P8REMV0G40BKLSWBJ1YJLO9KJVJFSI7BORCGMQEUGFA277QXT978W8JZ3F6F73L65IA1QW5' where id=32; -update noar ti set v1='OZM5W0R94MQT5WE47OFXW8G2P0UXLBMRPGZ1159FXXEMK9VKODLWTCLHLJIPBRHR1CYPLXINTEM9SWXP34BT1JWM1X1T6IGGDWF11M59S01ELAWHT31E4CXFNLTCWWKYGESFBTA7PZSUMIPTU5PNE9C7THWMC1ZSXBCEFGJKJBA73Z055M2Z79OUV2P8REMV0G40BKLSWBJ1YJLO9KJVJFSI7BORCGMQEUGFA277QXT978W8JZ3F6F73L65IA1QW5' where id=32; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='F4FCMAVRQ64ESYF7UXYLP6TPJN8KW57KQVMR97SBV796S8501INZ8GRKRYIONAEAWO85V94I3RQ5WJHFWGY6TDPRJ31HGIGN2RIZSIMEASFT8BQCVXUROGRAVDYVGRMDI8GUM5THQ3VEAZT4OMB5VHRGLGOU70FRGJ3WOA6LOROWGQE44D2TP8F000SXT482NNMKS5N25L40EBVUO7VLX6PX92KXZXFBQMS00JGP0ZSJL9S5NAE97YAHR3IQK2B49' where id=32; -update noar ti set v2='F4FCMAVRQ64ESYF7UXYLP6TPJN8KW57KQVMR97SBV796S8501INZ8GRKRYIONAEAWO85V94I3RQ5WJHFWGY6TDPRJ31HGIGN2RIZSIMEASFT8BQCVXUROGRAVDYVGRMDI8GUM5THQ3VEAZT4OMB5VHRGLGOU70FRGJ3WOA6LOROWGQE44D2TP8F000SXT482NNMKS5N25L40EBVUO7VLX6PX92KXZXFBQMS00JGP0ZSJL9S5NAE97YAHR3IQK2B49' where id=32; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='V0BL5PB096CUSXLGO3NAH6GL79WZM9CLQX0GJRP0PSTMX6T8BSNMYCJWWGJ5IMIMR9HF75YRGC63I3ZIUQYMT44C3JH09V2A5B2RMV107F85F1GPTB8EAOL4P8WD3TDEI4LELY6FY3EN66ZJCDJVPUARGAQV4O8UCEPT9MXD8WP5XCOFA7X18E51OBKVN4RLACY4Y7RK1RCTI95L7K1GI5DL00P2R4DYNKT2QGFAUSII64FY5ZZC1T1VHMCZAQ8FW' where id=32; -update noar ti set v3='V0BL5PB096CUSXLGO3NAH6GL79WZM9CLQX0GJRP0PSTMX6T8BSNMYCJWWGJ5IMIMR9HF75YRGC63I3ZIUQYMT44C3JH09V2A5B2RMV107F85F1GPTB8EAOL4P8WD3TDEI4LELY6FY3EN66ZJCDJVPUARGAQV4O8UCEPT9MXD8WP5XCOFA7X18E51OBKVN4RLACY4Y7RK1RCTI95L7K1GI5DL00P2R4DYNKT2QGFAUSII64FY5ZZC1T1VHMCZAQ8FW' where id=32; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='SMJCJ2I7BYD5ME648PESRGRNDAYLOF0AS1KEDGEGVK53QU0H1YZEVKYOFSMDD47NW277BIEIAGU9KVMIMUPBBV6MFHQTXT39FDSY3EEN0BT1TQ5JQGGT25XOQXENATG424XQ2ADICJZVA6OGQ6UE42ZJEE7MG7T6TVNXNX4ASSER6DTN4F77703UECIGDU1U8556WDHZEOUKB8RDD1WEDMUGVDK2LO9IP8Q41S0RXLFWL9TGVEA8WV7KQFGHFJFO8' where id=33; -update noar ti set v0='SMJCJ2I7BYD5ME648PESRGRNDAYLOF0AS1KEDGEGVK53QU0H1YZEVKYOFSMDD47NW277BIEIAGU9KVMIMUPBBV6MFHQTXT39FDSY3EEN0BT1TQ5JQGGT25XOQXENATG424XQ2ADICJZVA6OGQ6UE42ZJEE7MG7T6TVNXNX4ASSER6DTN4F77703UECIGDU1U8556WDHZEOUKB8RDD1WEDMUGVDK2LO9IP8Q41S0RXLFWL9TGVEA8WV7KQFGHFJFO8' where id=33; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='Z5E0TKVJXTVWLMXLOSWPMNI2S4OEQDTYSE8KZ6KLV2HY6BAEYUQTES81KH1QWKO7NP7GE5CWDZRFIO16Z1AIXSREFCOI5BCA791J2XI6USUZRAJA7IAEYEPXV9UZ4VRRQ2IWRAHJ03S0HUGPNXWKWY5OLPQ2C1JO12VMB8B983V9BXM84IHI8P3GTZ49455TYPBCJ2RLEBEAWONG6C9OHHEU6XA0J65LFD3FWP6Y3AQ2V1BUVKQG85IH1T54KOIOL' where id=33; -update noar ti set v1='Z5E0TKVJXTVWLMXLOSWPMNI2S4OEQDTYSE8KZ6KLV2HY6BAEYUQTES81KH1QWKO7NP7GE5CWDZRFIO16Z1AIXSREFCOI5BCA791J2XI6USUZRAJA7IAEYEPXV9UZ4VRRQ2IWRAHJ03S0HUGPNXWKWY5OLPQ2C1JO12VMB8B983V9BXM84IHI8P3GTZ49455TYPBCJ2RLEBEAWONG6C9OHHEU6XA0J65LFD3FWP6Y3AQ2V1BUVKQG85IH1T54KOIOL' where id=33; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='RI82AQZSNG5COFOSA2TEAJPELHLYTP83M01TZQ0H9LXFQF8NTNFYYC5XJZG5WPRG2BZ305FSKGW1SR8GWH7QW9TXYVGGSW5APS14QQIC5BCVKDM49Y6HW32Q0P76LNONUZEU4514ZMLPUUP98LZ5UE72WC4XXOD5VXFT9ZS2TGLIZKZQTDMFMIM0DL9PA54X4VZXT3HKGB3X21JQ1AG62HH764UPXVOORA8VW7B7BMY1GGET59JCXTB3YY96ADV10' where id=33; -update noar ti set v2='RI82AQZSNG5COFOSA2TEAJPELHLYTP83M01TZQ0H9LXFQF8NTNFYYC5XJZG5WPRG2BZ305FSKGW1SR8GWH7QW9TXYVGGSW5APS14QQIC5BCVKDM49Y6HW32Q0P76LNONUZEU4514ZMLPUUP98LZ5UE72WC4XXOD5VXFT9ZS2TGLIZKZQTDMFMIM0DL9PA54X4VZXT3HKGB3X21JQ1AG62HH764UPXVOORA8VW7B7BMY1GGET59JCXTB3YY96ADV10' where id=33; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='D2TIOP7HZ8XI9MKCCUCB6I0WY905H1GUXYR3PW5OQK0JZL1Y6EPO87PWGFWITHT57W3X9KUU9IJME6BPQTWBXEPWZ9RX7OESNJKSTIS50AYGPKK3KB2YE6N5Q6MDMXNVGUNHPRDHZ3V3MWWKLZJ8V4HE42MGXD1GPS6PXLNZ6VS39L4P28SCI6840Z7C3XZ323D34ZB1FSQA2L8DXBQQE7PEK15SWAQIKKY1DYJCTCWM773JZLFWB4F99SZQW7V6X' where id=33; -update noar ti set v3='D2TIOP7HZ8XI9MKCCUCB6I0WY905H1GUXYR3PW5OQK0JZL1Y6EPO87PWGFWITHT57W3X9KUU9IJME6BPQTWBXEPWZ9RX7OESNJKSTIS50AYGPKK3KB2YE6N5Q6MDMXNVGUNHPRDHZ3V3MWWKLZJ8V4HE42MGXD1GPS6PXLNZ6VS39L4P28SCI6840Z7C3XZ323D34ZB1FSQA2L8DXBQQE7PEK15SWAQIKKY1DYJCTCWM773JZLFWB4F99SZQW7V6X' where id=33; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='CEVPGTNI2AM3CB7BQZ1E68PN3EXOD1LAJRY9PYB9K52MWDPR3O0AIFZ00K76UM0ADJOIH4GT4ONL1ES09U2JSDJMRB4K6F29I1W8G41LZ03JU86HRDYALSPBB3Q7BKFYPW0XUB9KX40QXQ2LQH5RV4D2VBZG7YNLLJRZGWAEMZOML3CC2FPKUN2K76U1TMZD0SE1N17KS78CCAKS8EVDUW0L72VYPM8VGPXNHMK9OQYP6RD22B5SXW1EFX7OKOO6W' where id=34; -update noar ti set v0='CEVPGTNI2AM3CB7BQZ1E68PN3EXOD1LAJRY9PYB9K52MWDPR3O0AIFZ00K76UM0ADJOIH4GT4ONL1ES09U2JSDJMRB4K6F29I1W8G41LZ03JU86HRDYALSPBB3Q7BKFYPW0XUB9KX40QXQ2LQH5RV4D2VBZG7YNLLJRZGWAEMZOML3CC2FPKUN2K76U1TMZD0SE1N17KS78CCAKS8EVDUW0L72VYPM8VGPXNHMK9OQYP6RD22B5SXW1EFX7OKOO6W' where id=34; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='KLY7XAXSCG1PRGYEV2F4CNS74QOZ1HOZ1RZKR5PAQCBKFOG9QGZ4K7CGEYXCDVRFLR08ISL6O0LCE1DHFR6D0RZQ33M8KIIYYAJIQBIFX0SHSXCT998FZ3Y8QBKKSERX39YNTXPL2MKYRNTILEGKJEZXITPGNNNSYGGDUKX67VQLELXMX5V9GGKC6UJPJRV6N2X1U9QHM4ZBG5WHRTDS64NOKNG0HA2B3EYDXM3LT3M0TRGUGVLR3Y8XZWSNMYD2K' where id=34; -update noar ti set v1='KLY7XAXSCG1PRGYEV2F4CNS74QOZ1HOZ1RZKR5PAQCBKFOG9QGZ4K7CGEYXCDVRFLR08ISL6O0LCE1DHFR6D0RZQ33M8KIIYYAJIQBIFX0SHSXCT998FZ3Y8QBKKSERX39YNTXPL2MKYRNTILEGKJEZXITPGNNNSYGGDUKX67VQLELXMX5V9GGKC6UJPJRV6N2X1U9QHM4ZBG5WHRTDS64NOKNG0HA2B3EYDXM3LT3M0TRGUGVLR3Y8XZWSNMYD2K' where id=34; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='TASF19WZC6DOXCQELE13CAMAHCSVM2B62WERVP3OURCLITH5HP4B4Q2XMFBTV40ZIJT2NQK6G7D8YGNI7KRAVKVUDUSWYQTZUTCLCPAGXGS9WVOBJ5ZOACE3I372LMPGQ4UJTBIVZ2A6L553NQBEYN3F2PZZYXRBA9QVQOIU30ANQTH7Y8KTNYSD3DGO61CY8E2QAZYTQ2Z8GCSSIUU4DWJ5WREQRG63UAX58M5UAYGD7D6OEYVL1NGTQ4HZAWLC1' where id=34; -update noar ti set v2='TASF19WZC6DOXCQELE13CAMAHCSVM2B62WERVP3OURCLITH5HP4B4Q2XMFBTV40ZIJT2NQK6G7D8YGNI7KRAVKVUDUSWYQTZUTCLCPAGXGS9WVOBJ5ZOACE3I372LMPGQ4UJTBIVZ2A6L553NQBEYN3F2PZZYXRBA9QVQOIU30ANQTH7Y8KTNYSD3DGO61CY8E2QAZYTQ2Z8GCSSIUU4DWJ5WREQRG63UAX58M5UAYGD7D6OEYVL1NGTQ4HZAWLC1' where id=34; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='YSLWBTDMP4WO0IA84PRKYCUHTS78YHBPADLG8VQ02INCMYTES60W2K2813RP0DZ4NZYHL9BFPGM1Q1XSAEAA1GOI1P5OV1A749XNRQV0UFXKDWJU3UCK4IKVUX15CRMJRYFMH4I38KA16MAU092L3QJQNADKF2QRTGNWZ8VDHTMCW5WWV0TXT3UK1VMH2LVI8MUFTL51U6975IBKC4FA8LELUFJUXXWTO6LH5GAONH1PBMB3475M1RK3DDQCSNKZZ' where id=34; -update noar ti set v3='YSLWBTDMP4WO0IA84PRKYCUHTS78YHBPADLG8VQ02INCMYTES60W2K2813RP0DZ4NZYHL9BFPGM1Q1XSAEAA1GOI1P5OV1A749XNRQV0UFXKDWJU3UCK4IKVUX15CRMJRYFMH4I38KA16MAU092L3QJQNADKF2QRTGNWZ8VDHTMCW5WWV0TXT3UK1VMH2LVI8MUFTL51U6975IBKC4FA8LELUFJUXXWTO6LH5GAONH1PBMB3475M1RK3DDQCSNKZZ' where id=34; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='9Z2WWYVQAO54OROWEGFS1JAQBES4KLXDLOF8LXVPZ17QZMMTUXSRNTGL8GVJO2MWPBZD9CJAY7UK9IL4U4VFGE5FMDMT2YDVA1N8MCCBJL9U0WSUABMK927LBRHTD5RKT1O08AIIL6SMN6J7A1AFW92B7AKKIHWFLVKKP4AHG8RB9S9T0LMBL99CB62L0EQ4FAPUKDCCNBSM0V46DT8YO9YMZLAXB63QAGR3FKMF45DPJRZM62YQ0EBY59RVNJOLD' where id=35; -update noar ti set v0='9Z2WWYVQAO54OROWEGFS1JAQBES4KLXDLOF8LXVPZ17QZMMTUXSRNTGL8GVJO2MWPBZD9CJAY7UK9IL4U4VFGE5FMDMT2YDVA1N8MCCBJL9U0WSUABMK927LBRHTD5RKT1O08AIIL6SMN6J7A1AFW92B7AKKIHWFLVKKP4AHG8RB9S9T0LMBL99CB62L0EQ4FAPUKDCCNBSM0V46DT8YO9YMZLAXB63QAGR3FKMF45DPJRZM62YQ0EBY59RVNJOLD' where id=35; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='04ZO67E1SQKCWA18NIMQELK7GMD212AM2KPOUWINLA66A17D66SKOFLS1EPZ2EDBPGEC3WDHRCK59L7F9OFG71736IJ4CY4JOBP3ERDXB7XZGMCT0OV70TYGTWKLPYXRFBI8YBZ5YWA7KWSHQVE2ZQCT9FFYMYN68PT8QXIEA4IW9DXA2C0AEOENEG5UZLM9H13P4H71ATAHATJ5J4JSDAFAQWRJWIEH6Q2IF1UC552NQRFDRITIIBJW1C9JSGKH8' where id=35; -update noar ti set v1='04ZO67E1SQKCWA18NIMQELK7GMD212AM2KPOUWINLA66A17D66SKOFLS1EPZ2EDBPGEC3WDHRCK59L7F9OFG71736IJ4CY4JOBP3ERDXB7XZGMCT0OV70TYGTWKLPYXRFBI8YBZ5YWA7KWSHQVE2ZQCT9FFYMYN68PT8QXIEA4IW9DXA2C0AEOENEG5UZLM9H13P4H71ATAHATJ5J4JSDAFAQWRJWIEH6Q2IF1UC552NQRFDRITIIBJW1C9JSGKH8' where id=35; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='QAJHN7HVJM4MMZQD2A8MJ9FYRAD6U2S29U5DKF1B1P8J8XJOA0KSD0VYH4EF6GBN5DDLX3WLCCVJLEE3RAFE771CDVUF8EEARH1403WADOO5Q27Y7MB0Z5O94RTVN7F4DH75WWOVZ9ZJ7ZB4QIMADYAHBHOCQO3T968ZDOZH2NW2GPRS38LMGMWO824VZV19TV1J78IH1V27AJ5S78UTE03X58K5AH9VCX2WATUESM25IU0NX9AC9S5B32GQEV4DH' where id=35; -update noar ti set v2='QAJHN7HVJM4MMZQD2A8MJ9FYRAD6U2S29U5DKF1B1P8J8XJOA0KSD0VYH4EF6GBN5DDLX3WLCCVJLEE3RAFE771CDVUF8EEARH1403WADOO5Q27Y7MB0Z5O94RTVN7F4DH75WWOVZ9ZJ7ZB4QIMADYAHBHOCQO3T968ZDOZH2NW2GPRS38LMGMWO824VZV19TV1J78IH1V27AJ5S78UTE03X58K5AH9VCX2WATUESM25IU0NX9AC9S5B32GQEV4DH' where id=35; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='7YF1UUXIU98TX1QII3SE0054PWLELT3IQDFXZZD02IVY4HY5T6JKHR2CDF372IUUYV90F0IZI6K2IDC7BBBON4XGH4GS8T44F2HJWNZBFT7U2VONSOG8A4A9C690BG8WL54F8JY4GBCJQFM8SQBNJ0IWJO8CB17391QLSY7E3HC7U2P2Y7JNW47XCJ4XNP9XUKAHE4UAEGXIP1EBPG2CA0V432KJ5JAAYGUJEFS9B3UHTT907OWDJCJBJ2STVV419' where id=35; -update noar ti set v3='7YF1UUXIU98TX1QII3SE0054PWLELT3IQDFXZZD02IVY4HY5T6JKHR2CDF372IUUYV90F0IZI6K2IDC7BBBON4XGH4GS8T44F2HJWNZBFT7U2VONSOG8A4A9C690BG8WL54F8JY4GBCJQFM8SQBNJ0IWJO8CB17391QLSY7E3HC7U2P2Y7JNW47XCJ4XNP9XUKAHE4UAEGXIP1EBPG2CA0V432KJ5JAAYGUJEFS9B3UHTT907OWDJCJBJ2STVV419' where id=35; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='ZWTE34UL3W26PGM53MOG1JMLSBSP9WALLI7NFY97O95LPDQ7FWT0T5KYL81Y9WREZD8S3SNQV53ROL3365CVCKRIHE2EUQIEU2T4JTFPBAWPUP8HHQBBYHVGN8YG7MQ0WKLSDMQOMS4S0ZNH2UHTKSDMN03N4WGYUZH85EI81W7E9N7ZHDAQA4MT3XGPGN5KQR1PDKXUXMESSNOC89GFL9TFPN263VDU7WEW1AK9VC9YZXZ61O6H1QSGGEZTYOZ3O' where id=36; -update noar ti set v0='ZWTE34UL3W26PGM53MOG1JMLSBSP9WALLI7NFY97O95LPDQ7FWT0T5KYL81Y9WREZD8S3SNQV53ROL3365CVCKRIHE2EUQIEU2T4JTFPBAWPUP8HHQBBYHVGN8YG7MQ0WKLSDMQOMS4S0ZNH2UHTKSDMN03N4WGYUZH85EI81W7E9N7ZHDAQA4MT3XGPGN5KQR1PDKXUXMESSNOC89GFL9TFPN263VDU7WEW1AK9VC9YZXZ61O6H1QSGGEZTYOZ3O' where id=36; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='DB8LWOYT1Q02Z5OY1M5WHNPB1858O29EIHLA3BBAN5AUPEPG4YJCLCY9S6O10URWRV7XQQVLWMHVZWCKDCMJOVH5AORUOP37GO9VHYPA2VI7YS72W28X9P5XGIQBZZK4L5CHF2NMCBNRZIWIHTI9FSBH96W0V37SVXBZ9FJU75OCSOFJ8FBP7PSUNK0DNOKJSEJ1U3J18A1WNP8KHVQUTBQYEREHLLJ2I5G9V0Z8AWQUYD836HCE4HGPPEJS24N67' where id=36; -update noar ti set v1='DB8LWOYT1Q02Z5OY1M5WHNPB1858O29EIHLA3BBAN5AUPEPG4YJCLCY9S6O10URWRV7XQQVLWMHVZWCKDCMJOVH5AORUOP37GO9VHYPA2VI7YS72W28X9P5XGIQBZZK4L5CHF2NMCBNRZIWIHTI9FSBH96W0V37SVXBZ9FJU75OCSOFJ8FBP7PSUNK0DNOKJSEJ1U3J18A1WNP8KHVQUTBQYEREHLLJ2I5G9V0Z8AWQUYD836HCE4HGPPEJS24N67' where id=36; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='3RN6SO2MKI9QEO7D720Y4XYG98XAV7EJ74VHK4GKGIT5BTFQXTC5FCKM9K3WSSR5LZ0PKUDNPB1H1PXLGPO7CPJNHCJZJQT4R59M3L3716DSKPTEF2F8C6B56YO1L51VKTQ3D11REDDDNJO7VAQAJ8AFTAU3ELS0J4W00D98IAKK6P72W5HES28002EDN08RWY8H2GZAK1KPAMNEKDAVPHSIB23QBHQSHRVXNHTVSGQFOEK68X9P3UCDAWW5GPD2P' where id=36; -update noar ti set v2='3RN6SO2MKI9QEO7D720Y4XYG98XAV7EJ74VHK4GKGIT5BTFQXTC5FCKM9K3WSSR5LZ0PKUDNPB1H1PXLGPO7CPJNHCJZJQT4R59M3L3716DSKPTEF2F8C6B56YO1L51VKTQ3D11REDDDNJO7VAQAJ8AFTAU3ELS0J4W00D98IAKK6P72W5HES28002EDN08RWY8H2GZAK1KPAMNEKDAVPHSIB23QBHQSHRVXNHTVSGQFOEK68X9P3UCDAWW5GPD2P' where id=36; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='Y7WMCEAE241842NRD0G9QB4G0AECXE2XJBVYQANEMUBXE4GT1THUEK6RZW0LBD3XDKQU2I3Z4DCKN8HJBT9N91YGKFQVEXW689RSFH8FS29NOGTZC8T03QN8M0R9EHESKISGYRCD6AZ0FF5FC6B1KYXN156Z4IOMY65FDSLNV0XLROTCAFP7CH8MOF0TI6JITWVR3XLWCX4LPHJGR7CTPY8NI9Q9PCE0X1P5EDHO8PJYHDYELJUCTYMNEJJP1ANDR' where id=36; -update noar ti set v3='Y7WMCEAE241842NRD0G9QB4G0AECXE2XJBVYQANEMUBXE4GT1THUEK6RZW0LBD3XDKQU2I3Z4DCKN8HJBT9N91YGKFQVEXW689RSFH8FS29NOGTZC8T03QN8M0R9EHESKISGYRCD6AZ0FF5FC6B1KYXN156Z4IOMY65FDSLNV0XLROTCAFP7CH8MOF0TI6JITWVR3XLWCX4LPHJGR7CTPY8NI9Q9PCE0X1P5EDHO8PJYHDYELJUCTYMNEJJP1ANDR' where id=36; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='5KHDP07RQZBXC8CT2MMV24HBP5XFBECJPHYEN19BRDU8TZLZE3Q1R292UYKDH0B5IEII05OV04BND8ID54UW1X1YZXG6Q0CQZ2AD04E84BEH8QL5K8UBWLNTZCHWNQ3CGBIGFTD0JLLSUA6IPF48LTBJ8OLP6L094G6UXKHHYIU7FFN40LHOUDIEUZD2WQEKH7FAIDMRVCW3LF3HNCNM4YOZCMVWEX1B3WPDXW0H0E8R936E41MU0LODUGTK9GOV2' where id=37; -update noar ti set v0='5KHDP07RQZBXC8CT2MMV24HBP5XFBECJPHYEN19BRDU8TZLZE3Q1R292UYKDH0B5IEII05OV04BND8ID54UW1X1YZXG6Q0CQZ2AD04E84BEH8QL5K8UBWLNTZCHWNQ3CGBIGFTD0JLLSUA6IPF48LTBJ8OLP6L094G6UXKHHYIU7FFN40LHOUDIEUZD2WQEKH7FAIDMRVCW3LF3HNCNM4YOZCMVWEX1B3WPDXW0H0E8R936E41MU0LODUGTK9GOV2' where id=37; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='HM9HKNLFTTDS4F275OOYYVUGOWVZBN96RQ5VW8D1R8THQCW3LOWJ51FVT8BGW0UCI4IU26Q2TYZMIEUPKFLYTOODABG2QB5HQ0GML8XLNVNA8FTIHQ9BCPRK4HORQRN495CQOFQLLF193477Y0VSTOADAFEU3LPQYLJO9ON3AGPCET3SKARETYXLSGYC609QOUFO711O4KFVZUNMAPRKJMYX44CUNJQAKFOEYX46LQH4ED5MRBK8AC99AY5O2N3DW' where id=37; -update noar ti set v1='HM9HKNLFTTDS4F275OOYYVUGOWVZBN96RQ5VW8D1R8THQCW3LOWJ51FVT8BGW0UCI4IU26Q2TYZMIEUPKFLYTOODABG2QB5HQ0GML8XLNVNA8FTIHQ9BCPRK4HORQRN495CQOFQLLF193477Y0VSTOADAFEU3LPQYLJO9ON3AGPCET3SKARETYXLSGYC609QOUFO711O4KFVZUNMAPRKJMYX44CUNJQAKFOEYX46LQH4ED5MRBK8AC99AY5O2N3DW' where id=37; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='7PIF0EM0YX7VOZJL6AOEBIRN0M97MVYZQTL94HVSUI1Y8ZKK1JNPFTX9U8B5IP2VM3S6VWS06OXELAIDKC18LPIGOR4BFFF810H7EC47Z631N5W550WANJX3LXNAKM2X107C73VOUI2IR6P43H6GT9TXQDU53LDZXI8FWT4GT3JACCKFBO4LRAMATOKC2TTH44HU2PIXHTVD930JWGXBHYHKNYR7RYID3QPYRB4DH4RQBTPYBQ9FYOM9JA41V47NW' where id=37; -update noar ti set v2='7PIF0EM0YX7VOZJL6AOEBIRN0M97MVYZQTL94HVSUI1Y8ZKK1JNPFTX9U8B5IP2VM3S6VWS06OXELAIDKC18LPIGOR4BFFF810H7EC47Z631N5W550WANJX3LXNAKM2X107C73VOUI2IR6P43H6GT9TXQDU53LDZXI8FWT4GT3JACCKFBO4LRAMATOKC2TTH44HU2PIXHTVD930JWGXBHYHKNYR7RYID3QPYRB4DH4RQBTPYBQ9FYOM9JA41V47NW' where id=37; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='BHDRUYCC8FJWDWA1KMYVOW6FBNOCJTRLMJP2V5097XFIT1441QKRNEZ75WUWEGE24M3Z7SLITDJ1JLWCOZS7TVW3ZTGSQMTOOBIE5W2PLJO9YBQ41SJMIMQ8D05I3A4D6CLF9LTITTPC3VJ05GDP0Z6BCYB3R3N9036V9U4JF8TODQOHU24XSJXSP05BTFEFI9BFQDR6LU4F6P91UVKL5TF7MMP4360WOSNJM7NXZSVVH8C9WF0G8AUMEC2079OWS' where id=37; -update noar ti set v3='BHDRUYCC8FJWDWA1KMYVOW6FBNOCJTRLMJP2V5097XFIT1441QKRNEZ75WUWEGE24M3Z7SLITDJ1JLWCOZS7TVW3ZTGSQMTOOBIE5W2PLJO9YBQ41SJMIMQ8D05I3A4D6CLF9LTITTPC3VJ05GDP0Z6BCYB3R3N9036V9U4JF8TODQOHU24XSJXSP05BTFEFI9BFQDR6LU4F6P91UVKL5TF7MMP4360WOSNJM7NXZSVVH8C9WF0G8AUMEC2079OWS' where id=37; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='99R3SGHTL5SYXUJG0XYIHP9XI3K7ZYKNK41UBIZ0Q7BTSHFJ0MZ3W9EU5J36G2ZZ7KFORM8QIYTWE0042NWY45BHI4O6B32TSGFCHDI9TMI7NNCG6RTSMVSJRNDIEZVYN6IJOE43Q3CRMPXZ5SGUEB59VOS3XMEGILMI7VYS23SBV1GKCGFZMZSNNB84604ICVATGETO7V9GV56MCXVV3507SKPC4TJCSRLDJ9L4N0YRXA40UH7LQQUWL16T3XR2D' where id=38; -update noar ti set v0='99R3SGHTL5SYXUJG0XYIHP9XI3K7ZYKNK41UBIZ0Q7BTSHFJ0MZ3W9EU5J36G2ZZ7KFORM8QIYTWE0042NWY45BHI4O6B32TSGFCHDI9TMI7NNCG6RTSMVSJRNDIEZVYN6IJOE43Q3CRMPXZ5SGUEB59VOS3XMEGILMI7VYS23SBV1GKCGFZMZSNNB84604ICVATGETO7V9GV56MCXVV3507SKPC4TJCSRLDJ9L4N0YRXA40UH7LQQUWL16T3XR2D' where id=38; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='8XJ9D3TNL6AIZRNLQN73XTV10QHYAMS6CUT1Y5XKWC8V40E2URYC6SAMW0YDWF1QTG95B03KCY1FNMDQTVWPF39E6KAZ5Q920P5WCUQ5YBBY5TK1BVSOJIKG9OC5DG3MG77HXF4JHNNVZUPVE3I0F7JO953XEKHVKDFQ0FVG5E6E1ENM6X9EGLN7K4UG0FH6W9LGOHLKVJJACK2FL0C94VCXE621CKKNH2HG9VGJ40F2JG7GSTVQW1PGX9JL0YW3V' where id=38; -update noar ti set v1='8XJ9D3TNL6AIZRNLQN73XTV10QHYAMS6CUT1Y5XKWC8V40E2URYC6SAMW0YDWF1QTG95B03KCY1FNMDQTVWPF39E6KAZ5Q920P5WCUQ5YBBY5TK1BVSOJIKG9OC5DG3MG77HXF4JHNNVZUPVE3I0F7JO953XEKHVKDFQ0FVG5E6E1ENM6X9EGLN7K4UG0FH6W9LGOHLKVJJACK2FL0C94VCXE621CKKNH2HG9VGJ40F2JG7GSTVQW1PGX9JL0YW3V' where id=38; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='7OJL1AMJOI62PX9UPNGER0DPYE0IMOH0CDBD9OU8VWZGDJ1DAOFXC6UD36Y0QCSC63C5JGSERS8XTBRGW8IUGF3WYC60WN936RZMG6KRST4KZ3YTAASJ2VP0CKGJ4HYEWIC6VPYZK2EVB4BHA57DAVL96R77W9469RVGU06ZUNWDNICDQ0177FNU6K5O3ORHW4OUWU5LSHHSK1JD4GWRRSME1ECTU8B7FFVT52QMGTBL0SME3QSH6I4C0IR4QVW6Q' where id=38; -update noar ti set v2='7OJL1AMJOI62PX9UPNGER0DPYE0IMOH0CDBD9OU8VWZGDJ1DAOFXC6UD36Y0QCSC63C5JGSERS8XTBRGW8IUGF3WYC60WN936RZMG6KRST4KZ3YTAASJ2VP0CKGJ4HYEWIC6VPYZK2EVB4BHA57DAVL96R77W9469RVGU06ZUNWDNICDQ0177FNU6K5O3ORHW4OUWU5LSHHSK1JD4GWRRSME1ECTU8B7FFVT52QMGTBL0SME3QSH6I4C0IR4QVW6Q' where id=38; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='X7I8XRJKUY0PHLB4GEB99VKZU7OT097DEJ0CD7NM7ZT5SAWMUKMTKDTMVLOTAJ0O6PJKI8306ZW9ZL4CVQKCDIRDVN58M3TX5JCODJUQETLWZ078S82LZFAPOBUR7X7MEG76O9RGEMMBGGAQECIFYHN0KRK5RV2F7SGAZ11I2962C5PACSKG11SYTC5Y3KETNOW8W2E5G534R3PJLF5O63JACZ9WJ7M5RF1TCGUHTNQ9W8BS41S9SF6QQUE9WM98N' where id=38; -update noar ti set v3='X7I8XRJKUY0PHLB4GEB99VKZU7OT097DEJ0CD7NM7ZT5SAWMUKMTKDTMVLOTAJ0O6PJKI8306ZW9ZL4CVQKCDIRDVN58M3TX5JCODJUQETLWZ078S82LZFAPOBUR7X7MEG76O9RGEMMBGGAQECIFYHN0KRK5RV2F7SGAZ11I2962C5PACSKG11SYTC5Y3KETNOW8W2E5G534R3PJLF5O63JACZ9WJ7M5RF1TCGUHTNQ9W8BS41S9SF6QQUE9WM98N' where id=38; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='WJO97EIH9Z6P7F3O5KCIM6PR8SLAWJEOFBLQL2J6LVORX5T7CCT2L116VR4RMR8HVLPUWB21G17NS6HM3IIMTLU0J7SWFT1ZQLGFH8H5N8Q72A8AMRVQFW59UBXUZ1YCXW1DVEEFKIOKA4EH57D8A3TP3M6XBPCY4FKMF8P760JEURLXSW06ZGLTQNSQS1GPUZEGW256FRUCO8VE4BD5GXCAPS4BZ898F4R9KHS0LUCFVWGNLVKXN1R7I8EWT8P2L' where id=39; -update noar ti set v0='WJO97EIH9Z6P7F3O5KCIM6PR8SLAWJEOFBLQL2J6LVORX5T7CCT2L116VR4RMR8HVLPUWB21G17NS6HM3IIMTLU0J7SWFT1ZQLGFH8H5N8Q72A8AMRVQFW59UBXUZ1YCXW1DVEEFKIOKA4EH57D8A3TP3M6XBPCY4FKMF8P760JEURLXSW06ZGLTQNSQS1GPUZEGW256FRUCO8VE4BD5GXCAPS4BZ898F4R9KHS0LUCFVWGNLVKXN1R7I8EWT8P2L' where id=39; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='AY288AM1OSME167YWT2XRZPIAHF0DM16EQW6X72JPXTX1MRYG66ZYG5YNV0PNX3WMMQXBC3QYE07WBRWKHY2WK3GFRG1ZXJQ8BW4C6FS0LKLIQI14AIK1RFGFWT15HH3PFVCPXFF4F4PJDRCGC8AD8073TJYFT2LX129I3SEO4JODIBXWF611MFJ40B9VU0T21TEEMM8E2VFF1YXM2U9TQWE7VXH2WQQYS34AGPTSTDFW34FCQPENBH9TU34OCZRD' where id=39; -update noar ti set v1='AY288AM1OSME167YWT2XRZPIAHF0DM16EQW6X72JPXTX1MRYG66ZYG5YNV0PNX3WMMQXBC3QYE07WBRWKHY2WK3GFRG1ZXJQ8BW4C6FS0LKLIQI14AIK1RFGFWT15HH3PFVCPXFF4F4PJDRCGC8AD8073TJYFT2LX129I3SEO4JODIBXWF611MFJ40B9VU0T21TEEMM8E2VFF1YXM2U9TQWE7VXH2WQQYS34AGPTSTDFW34FCQPENBH9TU34OCZRD' where id=39; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='MHOMERN1SPK3N0RLL3N86XZFYIKNCFDWI6V87WTIHS75DGJJ0YAIP69MC06KGGVBRK35KMQNN42KUR6NSA0LGABJ4DZI0DTWNWTZ317UJR8VPLROTXWT6IZR0BO3QVKVVIJL1OPCF19X8JA6SKJEMUOOGYKBQ8T7XPP67X2YCRGS9SGR03LU2IIV4FNI6O1XDFAEQIE4G3SF72UFT91JE4DX3YEWJ3NUMNK5ESVERL4N7GAT8IPE93ZPF2RS5LI7V' where id=39; -update noar ti set v2='MHOMERN1SPK3N0RLL3N86XZFYIKNCFDWI6V87WTIHS75DGJJ0YAIP69MC06KGGVBRK35KMQNN42KUR6NSA0LGABJ4DZI0DTWNWTZ317UJR8VPLROTXWT6IZR0BO3QVKVVIJL1OPCF19X8JA6SKJEMUOOGYKBQ8T7XPP67X2YCRGS9SGR03LU2IIV4FNI6O1XDFAEQIE4G3SF72UFT91JE4DX3YEWJ3NUMNK5ESVERL4N7GAT8IPE93ZPF2RS5LI7V' where id=39; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='H0ECDT4ZNAECTNQ2I2M3JH1U4MJWFEB5ULS7B5NE2BLKCI4UG01KJNKIMAZ4N4107QTZLLV500KWB22WTEGLVWT1OY4QGV04LXY6BJHD0YWLB4NOWRJ3DCMB1E34GFE8R094XIM7KWFX2QLEUQMT72JT4E4BH91Q2SIS6CY9ZSBQAQ8EV0M82P7A9T6YY55SMJYQ070H3914DDMGNIHLIPWRBN20L1HOK6J6S7UOGQFFAWLMLY4CM6F92X9P2UIAK' where id=39; -update noar ti set v3='H0ECDT4ZNAECTNQ2I2M3JH1U4MJWFEB5ULS7B5NE2BLKCI4UG01KJNKIMAZ4N4107QTZLLV500KWB22WTEGLVWT1OY4QGV04LXY6BJHD0YWLB4NOWRJ3DCMB1E34GFE8R094XIM7KWFX2QLEUQMT72JT4E4BH91Q2SIS6CY9ZSBQAQ8EV0M82P7A9T6YY55SMJYQ070H3914DDMGNIHLIPWRBN20L1HOK6J6S7UOGQFFAWLMLY4CM6F92X9P2UIAK' where id=39; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='H6TYWFB0YPE87C06HV6VB15ASSH3T7KHEXJ9BDMGRQ1HEWAYVUI0OQVNJP41SKY8CV9LU428UG3LQ5AOZNVC6XHMCP7MXWLO9UVD6H2UGJXBE1FLZSNLSTWFKBEJD00X097BOTBWVR8JINXFIW6D1T3SSWROT0OP3KY63JD1EKZJ5OBWH6YMBRRUAT9LD5ZZEJGPWCH6JIP9EQ5XSUY1MDLXGI5SW513V2TGM7QOHEWHT2FANAUS7C8VU09U8F4F0' where id=40; -update noar ti set v0='H6TYWFB0YPE87C06HV6VB15ASSH3T7KHEXJ9BDMGRQ1HEWAYVUI0OQVNJP41SKY8CV9LU428UG3LQ5AOZNVC6XHMCP7MXWLO9UVD6H2UGJXBE1FLZSNLSTWFKBEJD00X097BOTBWVR8JINXFIW6D1T3SSWROT0OP3KY63JD1EKZJ5OBWH6YMBRRUAT9LD5ZZEJGPWCH6JIP9EQ5XSUY1MDLXGI5SW513V2TGM7QOHEWHT2FANAUS7C8VU09U8F4F0' where id=40; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='9YCGDP40QAO3GOF4SL44JQ034GH47O2R9AMIT7ERL4X9YAGG8YYHJ9D5OWBRIKNQKDTWVQAH89LLRBC4E3ZAD0QDSCL2FPQ6MC61Y1F087V27N8L2DOV4AYMS4BKWYQEWJC0YT3I595K4B2DQR6FY5Q66AV3TUQ3FK4JO5Z2392QO84NCG8ZX3TFXAFEE41IHSFBY7U2VSMUV6YME8HYNPL6RIFLU1VT22P9CQ1UHGX292LRIAYT91MDD68BVC9AZ' where id=40; -update noar ti set v1='9YCGDP40QAO3GOF4SL44JQ034GH47O2R9AMIT7ERL4X9YAGG8YYHJ9D5OWBRIKNQKDTWVQAH89LLRBC4E3ZAD0QDSCL2FPQ6MC61Y1F087V27N8L2DOV4AYMS4BKWYQEWJC0YT3I595K4B2DQR6FY5Q66AV3TUQ3FK4JO5Z2392QO84NCG8ZX3TFXAFEE41IHSFBY7U2VSMUV6YME8HYNPL6RIFLU1VT22P9CQ1UHGX292LRIAYT91MDD68BVC9AZ' where id=40; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='SG5W35L51AKPAWGI1FKFBFDIWS3XSHV8HA0LC15FOWRBZHPCBORMA8SK6JMJVFUT1JKQI1YAKNR5MXF1P4EW3UWSEFJ0C0ELWDSP96KPLBXRLK40R68D9RK5GM6X032EUGE1BT9ZJZAUE8JM3T51C209NIIVRFC9KEFDYYA85NL6ISF130VS1BRYA0SVTBWTG29JZEXWPXRZXJDLZ30QN3IIDWBOY5ATLHC74LJOLTRAHG9YEXCF65P4DH4K7GQT7' where id=40; -update noar ti set v2='SG5W35L51AKPAWGI1FKFBFDIWS3XSHV8HA0LC15FOWRBZHPCBORMA8SK6JMJVFUT1JKQI1YAKNR5MXF1P4EW3UWSEFJ0C0ELWDSP96KPLBXRLK40R68D9RK5GM6X032EUGE1BT9ZJZAUE8JM3T51C209NIIVRFC9KEFDYYA85NL6ISF130VS1BRYA0SVTBWTG29JZEXWPXRZXJDLZ30QN3IIDWBOY5ATLHC74LJOLTRAHG9YEXCF65P4DH4K7GQT7' where id=40; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='O6AVJDSYRVAH02R5JHW0G6TFMTE5FKNUJ01AG7IKWLT9ZR6VFLH9GD7L10ILXIB2107GFC4CL27NY3W9NJ83LR2ZFIH5BT3771C4K93XH9VIUWKC6FOR897XWACL6R9W6DJCQZFRO4K3POJLGJFA152TLHI5JJG4K5JPH81GP8JSI9VPQXAD5XIT4GWS6PE2SHT79TLYDKT2YF32TYVMGM1PA82TVCQV7KWVPQ36SJ1A5U061MD3P6DKLNJLPJTDH' where id=40; -update noar ti set v3='O6AVJDSYRVAH02R5JHW0G6TFMTE5FKNUJ01AG7IKWLT9ZR6VFLH9GD7L10ILXIB2107GFC4CL27NY3W9NJ83LR2ZFIH5BT3771C4K93XH9VIUWKC6FOR897XWACL6R9W6DJCQZFRO4K3POJLGJFA152TLHI5JJG4K5JPH81GP8JSI9VPQXAD5XIT4GWS6PE2SHT79TLYDKT2YF32TYVMGM1PA82TVCQV7KWVPQ36SJ1A5U061MD3P6DKLNJLPJTDH' where id=40; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='7IEH6KF3NPYH3V42OTV4Y3L11T8XJXUKZQXXD3DOBVWSBLLLJBCKDFKV2W889O84NJN8P3T0NNXZRT85GA5Q05SJF4HR42D51Z52CU53UG8KNUFZDSPNTHAF52608D2U2MWO5ST6YY6VYYSJBEIPVXUJWM899LQDVZM3QTFMONQP0E8H77JU6MZRJMSUQ5EL3GAM1FFDD93E5U13Z65URPBYRZ9YUG1RUPW1AK4WBV1FJ3AFWKRQ5HUQHQ54OFE9N' where id=41; -update noar ti set v0='7IEH6KF3NPYH3V42OTV4Y3L11T8XJXUKZQXXD3DOBVWSBLLLJBCKDFKV2W889O84NJN8P3T0NNXZRT85GA5Q05SJF4HR42D51Z52CU53UG8KNUFZDSPNTHAF52608D2U2MWO5ST6YY6VYYSJBEIPVXUJWM899LQDVZM3QTFMONQP0E8H77JU6MZRJMSUQ5EL3GAM1FFDD93E5U13Z65URPBYRZ9YUG1RUPW1AK4WBV1FJ3AFWKRQ5HUQHQ54OFE9N' where id=41; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='L6C3N4J9BHWSHAC6QX19XOWSM6H755SKBGV5PJ5P8PVT8NM7QJ46EA40XZEVG3ITPC6ZOBRSDSX91SVYLZ52JCUO20EP6GDYPTSQUJNBCFMG45WXSW9O31OB7G1WDOT2XMG0C6GSZL37IJKE8957PQ838YSPIQ7R2X9MZAHYYQNYHX8JDKGZCU2D4IRHSJPNCM5YKFCE08QR0K43QM695XFPE0WI9W6AJYM77FTQ782Q64IGF9UWA22GET3D627GU' where id=41; -update noar ti set v1='L6C3N4J9BHWSHAC6QX19XOWSM6H755SKBGV5PJ5P8PVT8NM7QJ46EA40XZEVG3ITPC6ZOBRSDSX91SVYLZ52JCUO20EP6GDYPTSQUJNBCFMG45WXSW9O31OB7G1WDOT2XMG0C6GSZL37IJKE8957PQ838YSPIQ7R2X9MZAHYYQNYHX8JDKGZCU2D4IRHSJPNCM5YKFCE08QR0K43QM695XFPE0WI9W6AJYM77FTQ782Q64IGF9UWA22GET3D627GU' where id=41; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='2D1P4PF60XUIPEWXSMMUZ69ZRXPTSBQZKFR38JO1C33M0X6GUE8GKYL1TVIB0AK61S3UPB7F57RG478I2BWE9Y48ETCFEIP582TLF0BPMRIL0HT0LTVEBV8A6FO2AU34MZ1X90UKZVUZW5O7MI8JGAFW0FYC61N9E24T961KAZ3YS692Y8MY82LLAR2AOYXP3E3OH73ET4G759KSRG804HP602JD29SAZOGX3OYFAJ6P85WDF8X1H3FQZI572N8VF' where id=41; -update noar ti set v2='2D1P4PF60XUIPEWXSMMUZ69ZRXPTSBQZKFR38JO1C33M0X6GUE8GKYL1TVIB0AK61S3UPB7F57RG478I2BWE9Y48ETCFEIP582TLF0BPMRIL0HT0LTVEBV8A6FO2AU34MZ1X90UKZVUZW5O7MI8JGAFW0FYC61N9E24T961KAZ3YS692Y8MY82LLAR2AOYXP3E3OH73ET4G759KSRG804HP602JD29SAZOGX3OYFAJ6P85WDF8X1H3FQZI572N8VF' where id=41; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='UNSOGZ7KH6PFU7SB5XFJKJF6PONZI4XXZM30SG7H68YR7ASKWVO9LT7RS3RS17VB1S72XWIS7CVN7STMI5RHZFUWFEXNDOXJI7ZXU2CRLLZXT0KPCTK8OBIS2NDO94VY7QK3YNGH4BA34BF1NOKT0ZV1OCB7SVG98QLROCENCR3HSFBL63UM4Y6DE1QELWMLPEVEW4DUNQUFJQBRAHXTF9YPOP70879LJ53WHE61MK5OXPB3JDFOGKF7PESMZOGQI' where id=41; -update noar ti set v3='UNSOGZ7KH6PFU7SB5XFJKJF6PONZI4XXZM30SG7H68YR7ASKWVO9LT7RS3RS17VB1S72XWIS7CVN7STMI5RHZFUWFEXNDOXJI7ZXU2CRLLZXT0KPCTK8OBIS2NDO94VY7QK3YNGH4BA34BF1NOKT0ZV1OCB7SVG98QLROCENCR3HSFBL63UM4Y6DE1QELWMLPEVEW4DUNQUFJQBRAHXTF9YPOP70879LJ53WHE61MK5OXPB3JDFOGKF7PESMZOGQI' where id=41; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='X2VS18LMHN0RSKNKD3V779LTXWS0FD7XE8J6ZSO1WXPFKREBT088TSS26Q7JFT5HZC0WKMBSQ720KMSZR1TYX7CG7Y8RB9JVT3U2D3DZPLC1RDMIFWVJCW5QSQ2LQJW0CRA5A8646G2B0YGAFT4HUCIOC0OLNDOZMB3A2E7PNYSAZK8GYD7AN2VAZE6IYT9W4L5Q4T1F4TDKEJSDVDMHVAYZ1M8WM4P3Y27AFMEVRPEUUNY4ODRQXH7U2HPE60ZHS' where id=42; -update noar ti set v0='X2VS18LMHN0RSKNKD3V779LTXWS0FD7XE8J6ZSO1WXPFKREBT088TSS26Q7JFT5HZC0WKMBSQ720KMSZR1TYX7CG7Y8RB9JVT3U2D3DZPLC1RDMIFWVJCW5QSQ2LQJW0CRA5A8646G2B0YGAFT4HUCIOC0OLNDOZMB3A2E7PNYSAZK8GYD7AN2VAZE6IYT9W4L5Q4T1F4TDKEJSDVDMHVAYZ1M8WM4P3Y27AFMEVRPEUUNY4ODRQXH7U2HPE60ZHS' where id=42; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='QUP7XPWL1USMNE30RH322RXH398Q4JCDHH65L1D5T7D6O50036YVFWOTQCP7EP2LL7BK80HFV4U2N8MQS63EMOHZHEHI2BHQLAH6NA7KX3SU8U3JOFFEUPP4IU4ZSHTLH2OBARE9AZ6IP7ZCXZB08A8KTTKJX7UBDR3I2WK09BGT9W09CD3ZMWI2O52AQDAK1I9AP28K2Y0EH4PPA9PEKV620RDMAR2UG4WWLWJMXZ9L7OOILU2NFMUFBL9WF1FYK' where id=42; -update noar ti set v1='QUP7XPWL1USMNE30RH322RXH398Q4JCDHH65L1D5T7D6O50036YVFWOTQCP7EP2LL7BK80HFV4U2N8MQS63EMOHZHEHI2BHQLAH6NA7KX3SU8U3JOFFEUPP4IU4ZSHTLH2OBARE9AZ6IP7ZCXZB08A8KTTKJX7UBDR3I2WK09BGT9W09CD3ZMWI2O52AQDAK1I9AP28K2Y0EH4PPA9PEKV620RDMAR2UG4WWLWJMXZ9L7OOILU2NFMUFBL9WF1FYK' where id=42; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='LTIIJYKPL9I9KJ0J3GFLHS0DS4SEZRV43NX25MCYG4VWO0SF9YDIEU3XYDGVQGUIHXR3LEEPAD4YY5E0A20L0VC2ZGXXDG9QR80073A0XEEZRUMDHTEB6PJMNJOM2LW0MIUK07I6OYX0UVCEPW9FP9F80OQTQWJ591RC7O8ZY8FH0KZ65DLZQIPSJ6L5KVTWZEDIPWAGGQRFL660ZYD9WE6E4ENOJLTZQXOP6HN1Z123835E3V5Y3ELHYZ3AO08V8' where id=42; -update noar ti set v2='LTIIJYKPL9I9KJ0J3GFLHS0DS4SEZRV43NX25MCYG4VWO0SF9YDIEU3XYDGVQGUIHXR3LEEPAD4YY5E0A20L0VC2ZGXXDG9QR80073A0XEEZRUMDHTEB6PJMNJOM2LW0MIUK07I6OYX0UVCEPW9FP9F80OQTQWJ591RC7O8ZY8FH0KZ65DLZQIPSJ6L5KVTWZEDIPWAGGQRFL660ZYD9WE6E4ENOJLTZQXOP6HN1Z123835E3V5Y3ELHYZ3AO08V8' where id=42; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='JVUTYXYK9ZB5483JK5XKDB1JU0XEQUZ7XQYGNSGSFSFUMO713WKHNHD5TH9JP2292SJ7E7X13EJ486IG6DT6U32ROA9T17USRFQPZR0M9CY4IAOMGYU4D0R6CTT8ZZ6FXGRAUSZASUNTRL5MA5X6WPPAL5ZRTTYD1MULKQFDDC5798KGZ6YJY4434GDRES7E4LVPOB9MMXCWB9HMVQ6E21J7KGI3LTZFNA6PVV1RI6XK5Q7MA345SVYMY12LQGUIU' where id=42; -update noar ti set v3='JVUTYXYK9ZB5483JK5XKDB1JU0XEQUZ7XQYGNSGSFSFUMO713WKHNHD5TH9JP2292SJ7E7X13EJ486IG6DT6U32ROA9T17USRFQPZR0M9CY4IAOMGYU4D0R6CTT8ZZ6FXGRAUSZASUNTRL5MA5X6WPPAL5ZRTTYD1MULKQFDDC5798KGZ6YJY4434GDRES7E4LVPOB9MMXCWB9HMVQ6E21J7KGI3LTZFNA6PVV1RI6XK5Q7MA345SVYMY12LQGUIU' where id=42; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='7OUUNWZK5PQTN3W1OSZAXC6Y2KVIQD6VYIN0TNT9GM7RH746OQN2VZAD64TN7H6F0PUG4COJUFX3IIZAT2CB9G2IDY0IWPK9OW46LS7F1R7833E5UH47L48I6CJ8H6XJ9F04HW2Z3IPU8457PS311F89IT9979SXH19BOSR40ZEK0ULODTS6RURBZZAKR9RMDT26QADIY65046JHRE2GC2ZQ0J2R3H07V1RBOT170KC8Z5O2LANXZ1OY170GC19FN' where id=43; -update noar ti set v0='7OUUNWZK5PQTN3W1OSZAXC6Y2KVIQD6VYIN0TNT9GM7RH746OQN2VZAD64TN7H6F0PUG4COJUFX3IIZAT2CB9G2IDY0IWPK9OW46LS7F1R7833E5UH47L48I6CJ8H6XJ9F04HW2Z3IPU8457PS311F89IT9979SXH19BOSR40ZEK0ULODTS6RURBZZAKR9RMDT26QADIY65046JHRE2GC2ZQ0J2R3H07V1RBOT170KC8Z5O2LANXZ1OY170GC19FN' where id=43; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='K2JI1VC0EQLF3X5JCPHHRJ8VIW9V8C634IZY6414TM1HJK5X3DOSNHS2CBBUQDOR2ZB4JUUB84L6O0JPEQ3Q58FKJZZE1X67SNXTTHD0QXPJR13YJIWLGYJP85QFHB0K3Z5AZ7X0JEVDD70W9SA7SCRQ19TGZZLBZ7E4IK8QO2K7BMZ9U7104ZUPO3IM04ZB7V1TZO8Q76OJR6558NKLJDM4DVIRX0D6XGWOWP62WY4SA1YCIJEBNWLDZ8HCR2XGH' where id=43; -update noar ti set v1='K2JI1VC0EQLF3X5JCPHHRJ8VIW9V8C634IZY6414TM1HJK5X3DOSNHS2CBBUQDOR2ZB4JUUB84L6O0JPEQ3Q58FKJZZE1X67SNXTTHD0QXPJR13YJIWLGYJP85QFHB0K3Z5AZ7X0JEVDD70W9SA7SCRQ19TGZZLBZ7E4IK8QO2K7BMZ9U7104ZUPO3IM04ZB7V1TZO8Q76OJR6558NKLJDM4DVIRX0D6XGWOWP62WY4SA1YCIJEBNWLDZ8HCR2XGH' where id=43; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='FUYIRVAUM5HEEIOW5V4KO6ADS3X0LBLELXSFR2T9IS8KB859RQ4EMT7F20YUT4X49X3JZ9J6UWTAC7P90BHEZ6TZHJY89ILOO47GPMZW68ZVMGI6NX23IJN6NEI8ZY6O3QROKZB9W7TA7KTKUN2UDV6IMZC95H1DVB0FRON57CWDR7GZWS3X5OQD0D6QRAXINE3EK5OYMHQM70R9TK0ESKQVIR0VIPEJ2LLC69AR3AYYAYKDPZS65VGXPYPGTDFE0' where id=43; -update noar ti set v2='FUYIRVAUM5HEEIOW5V4KO6ADS3X0LBLELXSFR2T9IS8KB859RQ4EMT7F20YUT4X49X3JZ9J6UWTAC7P90BHEZ6TZHJY89ILOO47GPMZW68ZVMGI6NX23IJN6NEI8ZY6O3QROKZB9W7TA7KTKUN2UDV6IMZC95H1DVB0FRON57CWDR7GZWS3X5OQD0D6QRAXINE3EK5OYMHQM70R9TK0ESKQVIR0VIPEJ2LLC69AR3AYYAYKDPZS65VGXPYPGTDFE0' where id=43; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='VU2IGL24FS2BPJ36CLN7NJ5EU7M9AJI0T6SX4MGCCJ7FHG3QY60JU3P1DNSS13P9WG8EWJWMNTISDA9IXVZJ99HNAOFRWHVX1EX7Y8NE0RUAAF7SJSWSMPOZK674J2WWY2Q6YRVOKFSFEU80QF0G7CYRKBLCWGNAF38DXLNZTBS44348NETSYBDJKO3M6DU4UG2W098L2KLEKV9QNI2TN04HP9BL1FRCZ3RIQ4JAL1LPFGWOH5J6LN6MNA26P50WD' where id=43; -update noar ti set v3='VU2IGL24FS2BPJ36CLN7NJ5EU7M9AJI0T6SX4MGCCJ7FHG3QY60JU3P1DNSS13P9WG8EWJWMNTISDA9IXVZJ99HNAOFRWHVX1EX7Y8NE0RUAAF7SJSWSMPOZK674J2WWY2Q6YRVOKFSFEU80QF0G7CYRKBLCWGNAF38DXLNZTBS44348NETSYBDJKO3M6DU4UG2W098L2KLEKV9QNI2TN04HP9BL1FRCZ3RIQ4JAL1LPFGWOH5J6LN6MNA26P50WD' where id=43; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='AETR40DV7UPJPYICX0J1EV5HNXQ70XL58VMK1EN6IQA9QNDFPJU97V3HMUFVQQXZT4SKNWHV0QRWWZWO5GPOS6G0EAQW2UJ5PVJWQ4QTVQLPPW40FAL6HHB15KO7MEHKOKL1ZDMTIGZBLZ6RWE0CASLKQV2LB51OV3REA05QL2QZNAG74I9CLN5CE6RLT956GEGY1K2ELAUU2CXXCZNPISEC7RQFIJFJ3FIQ5ZA7WFFVMM2FBODM4AT2LQK1L8H3T' where id=44; -update noar ti set v0='AETR40DV7UPJPYICX0J1EV5HNXQ70XL58VMK1EN6IQA9QNDFPJU97V3HMUFVQQXZT4SKNWHV0QRWWZWO5GPOS6G0EAQW2UJ5PVJWQ4QTVQLPPW40FAL6HHB15KO7MEHKOKL1ZDMTIGZBLZ6RWE0CASLKQV2LB51OV3REA05QL2QZNAG74I9CLN5CE6RLT956GEGY1K2ELAUU2CXXCZNPISEC7RQFIJFJ3FIQ5ZA7WFFVMM2FBODM4AT2LQK1L8H3T' where id=44; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='N8D4IMZN0Y6JIFLUVVW846REB8YSBULSTTOHO8I094O8Q61BDO8KHMJHZA21QKY2UX5L3SMZDWF78RNBAE1LMP1C8JG6TO65D0PNLVPN6VFIE1UZLGY86SR4CAH5O0XP2W8XPGAJN5VODWNLS724A5MSGR914LT30XQC905W5DOLVK259B2Z3LH2X9QEHM5ULYGZPQ3ULXFZKT4X2FBLAOXO1F5H6IR12AQJKFL5QQAM9K532N8VLVBAHSFF5F237' where id=44; -update noar ti set v1='N8D4IMZN0Y6JIFLUVVW846REB8YSBULSTTOHO8I094O8Q61BDO8KHMJHZA21QKY2UX5L3SMZDWF78RNBAE1LMP1C8JG6TO65D0PNLVPN6VFIE1UZLGY86SR4CAH5O0XP2W8XPGAJN5VODWNLS724A5MSGR914LT30XQC905W5DOLVK259B2Z3LH2X9QEHM5ULYGZPQ3ULXFZKT4X2FBLAOXO1F5H6IR12AQJKFL5QQAM9K532N8VLVBAHSFF5F237' where id=44; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='4LRXA2QRHH975VT3K72RLLC16FQ6B9MB15G217WIWL2LWJ3SZ673CTGBX1L6N3DB434DKX2RNS4Y8WSV2M2GG8UUZJYG478ANZV6LKTOBCVYM17N7640GHKRLY1WFMPZPSLH3PO57SQQ12UHT0MQRV6SIUKCMU67SGDXCD08V7VJYHE5TFO71RR0O3JKZ7YL4CVOI87VBVPGZZ4E4B31N6C2FCPFU09RZ2DJX0HTB8G9RKGGM3GM9B8FU728AH94C' where id=44; -update noar ti set v2='4LRXA2QRHH975VT3K72RLLC16FQ6B9MB15G217WIWL2LWJ3SZ673CTGBX1L6N3DB434DKX2RNS4Y8WSV2M2GG8UUZJYG478ANZV6LKTOBCVYM17N7640GHKRLY1WFMPZPSLH3PO57SQQ12UHT0MQRV6SIUKCMU67SGDXCD08V7VJYHE5TFO71RR0O3JKZ7YL4CVOI87VBVPGZZ4E4B31N6C2FCPFU09RZ2DJX0HTB8G9RKGGM3GM9B8FU728AH94C' where id=44; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='0LGG3WR798F5PQT50QWBUFZASSTY5Y75BD2OB9B3XD88J4NGZ93OZ9OILUAE4LTHNGNS65MCD692KWCUD94VX0Q5AXLQS97EZTVJN3XEPEO0J00XYJFBA5KEN6HQNN2QFQIU9T0BD5YDQCKQQIM9PKNLL05FNF2S34FANSQ38WBMEMR22VN0V0O68B50T65601H6JOOGKU0P0XLMBRMK3P0F0ZDI7CN9JBP5C5ABGYQQ4PNP25AGS4T0S72VQSCGX' where id=44; -update noar ti set v3='0LGG3WR798F5PQT50QWBUFZASSTY5Y75BD2OB9B3XD88J4NGZ93OZ9OILUAE4LTHNGNS65MCD692KWCUD94VX0Q5AXLQS97EZTVJN3XEPEO0J00XYJFBA5KEN6HQNN2QFQIU9T0BD5YDQCKQQIM9PKNLL05FNF2S34FANSQ38WBMEMR22VN0V0O68B50T65601H6JOOGKU0P0XLMBRMK3P0F0ZDI7CN9JBP5C5ABGYQQ4PNP25AGS4T0S72VQSCGX' where id=44; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='0V4RR08IBP9NZ6CB8ZRV0XPFMSAPESY3D1WH00H8HCNSHO3DQF62KCMVV1NYT7ZDSO65G0ZLUPME1GKJCVFXGZQWEHEH2GE8IHFT2892EN4IPJUHAIC7MF7KI9FRT4THFC3FSJ1J1YTAC4IA7F0RQRNJ99BL3K90PWZ8OCS6MDWH99ZQP7SJA2XD9XND8F8ZWXG49ERU7JIM43ORTAH1R60S4U5CMIVYQAQE3QI254RB3EBGY1XFZVAGSGWUOZGC7' where id=45; -update noar ti set v0='0V4RR08IBP9NZ6CB8ZRV0XPFMSAPESY3D1WH00H8HCNSHO3DQF62KCMVV1NYT7ZDSO65G0ZLUPME1GKJCVFXGZQWEHEH2GE8IHFT2892EN4IPJUHAIC7MF7KI9FRT4THFC3FSJ1J1YTAC4IA7F0RQRNJ99BL3K90PWZ8OCS6MDWH99ZQP7SJA2XD9XND8F8ZWXG49ERU7JIM43ORTAH1R60S4U5CMIVYQAQE3QI254RB3EBGY1XFZVAGSGWUOZGC7' where id=45; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='3GH5ST5IIZ8ZEG2TW9871HZ0RXZFFDVRQQ6WDFZ50BXH2TEJDACQFXSFQ9ZGXR5OOBOATZ6K0XPULOK373JB5DABA3JSB5TOAPTDKP0FACI0LPGZKMRU1MGJQ0C7QKK2Z9OS879HUKZQD51B43CU7PFETVOJBVQ0RKHZT58FYT4UA4JRHVCIMJTWQ509NSC76A6L0ZXUR69Z756X3AC0JE69NX5M0NVY90ZPFKU6X9UHD1LKAPTHNTKD40KG932YI' where id=45; -update noar ti set v1='3GH5ST5IIZ8ZEG2TW9871HZ0RXZFFDVRQQ6WDFZ50BXH2TEJDACQFXSFQ9ZGXR5OOBOATZ6K0XPULOK373JB5DABA3JSB5TOAPTDKP0FACI0LPGZKMRU1MGJQ0C7QKK2Z9OS879HUKZQD51B43CU7PFETVOJBVQ0RKHZT58FYT4UA4JRHVCIMJTWQ509NSC76A6L0ZXUR69Z756X3AC0JE69NX5M0NVY90ZPFKU6X9UHD1LKAPTHNTKD40KG932YI' where id=45; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='ARR9XXHYF1CM0A7OFKOJOW1PHEY4N2TEOW7IJ3RP3Q88QUQWOKYPMYLD0LY458LIVUIVJD4EOBOGYL8WCJ43GVJW3FKV0B8M4MO1XH644Q6A39VL4HU5LF7W737AI5ITCE5PJN93MDAPB7NW49IXAI1Q3NK5XGWZ2S3TN5UUERX6IDUNA76U7XBJJ328YWKYL7H9ZZYWOOCSHPP505SO33Y0CLJTV0693THI53Y230FLQDKMKV6K7UA7W19FFB4KZ' where id=45; -update noar ti set v2='ARR9XXHYF1CM0A7OFKOJOW1PHEY4N2TEOW7IJ3RP3Q88QUQWOKYPMYLD0LY458LIVUIVJD4EOBOGYL8WCJ43GVJW3FKV0B8M4MO1XH644Q6A39VL4HU5LF7W737AI5ITCE5PJN93MDAPB7NW49IXAI1Q3NK5XGWZ2S3TN5UUERX6IDUNA76U7XBJJ328YWKYL7H9ZZYWOOCSHPP505SO33Y0CLJTV0693THI53Y230FLQDKMKV6K7UA7W19FFB4KZ' where id=45; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='0ACKNANERV1WDP5J4UA0PQLE7QE10ZYUUTMGVAQ3MHTDWKKTSTPNFVIJ5RT1I6FE6XMM7GHG6MDK710ZI5SA67K2TYDRW0KI1UEOY5CT7608OQP3KG8120PHH6CNVA792XOFROJ7HN5ZRLPV2TKFOELEVBOM5DYE64FWJK8JTKKGL42LMCP3HSKO9Z151OCM9OKO6FADFV6O3UEOXZB5UJ9DNYSZY3HT3R0CI2YTJEK9OIROFKYO1DD4OB9ECAN6O' where id=45; -update noar ti set v3='0ACKNANERV1WDP5J4UA0PQLE7QE10ZYUUTMGVAQ3MHTDWKKTSTPNFVIJ5RT1I6FE6XMM7GHG6MDK710ZI5SA67K2TYDRW0KI1UEOY5CT7608OQP3KG8120PHH6CNVA792XOFROJ7HN5ZRLPV2TKFOELEVBOM5DYE64FWJK8JTKKGL42LMCP3HSKO9Z151OCM9OKO6FADFV6O3UEOXZB5UJ9DNYSZY3HT3R0CI2YTJEK9OIROFKYO1DD4OB9ECAN6O' where id=45; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='V9RCSI89T4LGCAOXCVVVCV1R3Q52BQB96VS7C7CVH8VPB8HO3W4OOY6CJNG72KXBBNRCA5WIHAAAHGKAP0RP61LSKT67D9WIMNSQRKPHADKE4VHDUW43MTNO2DARWTZ7P15TJI2YLPKS9QDJ6UU8WCQVJQXS45B5T7NXY0AS56WBOSBFKBFKMPJM694ZA2HW2XGALIX9G0I0ROWYJ9UGMPZV9VNE3QYGG32EGI6LM8JFK5LYIOASKI5LA7C76IURP' where id=46; -update noar ti set v0='V9RCSI89T4LGCAOXCVVVCV1R3Q52BQB96VS7C7CVH8VPB8HO3W4OOY6CJNG72KXBBNRCA5WIHAAAHGKAP0RP61LSKT67D9WIMNSQRKPHADKE4VHDUW43MTNO2DARWTZ7P15TJI2YLPKS9QDJ6UU8WCQVJQXS45B5T7NXY0AS56WBOSBFKBFKMPJM694ZA2HW2XGALIX9G0I0ROWYJ9UGMPZV9VNE3QYGG32EGI6LM8JFK5LYIOASKI5LA7C76IURP' where id=46; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='RIRWWU6AFOYC1OP9V5SGC5XCBQ5Z96X9JXBHCBCJONKMJ4UK9Y4NJRUOE7Z0VUVAGH8YWSYBBJWEJZYW0486D93PBO2ZI52LA3KTWWXEMBKBWYLOJ6YG7YV2M10JQLLR5PLPWC65R61ZRY2FPONB2PKDQQZZNVCKICBXA6AUNIWSL27EKF09ZOBKH25M7B2J6QH3WZ2DDOF0UVT8X172E7PCOXYO7CMPOWPOKD0MJSUTGFR4O7HQR6D7TL6WF96UT' where id=46; -update noar ti set v1='RIRWWU6AFOYC1OP9V5SGC5XCBQ5Z96X9JXBHCBCJONKMJ4UK9Y4NJRUOE7Z0VUVAGH8YWSYBBJWEJZYW0486D93PBO2ZI52LA3KTWWXEMBKBWYLOJ6YG7YV2M10JQLLR5PLPWC65R61ZRY2FPONB2PKDQQZZNVCKICBXA6AUNIWSL27EKF09ZOBKH25M7B2J6QH3WZ2DDOF0UVT8X172E7PCOXYO7CMPOWPOKD0MJSUTGFR4O7HQR6D7TL6WF96UT' where id=46; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='DWWQTXUC74RHFT7HSUKCPVUF33J5R8AP1N21XTYV05C7XQRUFMYZEMBT1CDQSVGSEDHMCVC7BRUZT8VZ8PYO6MI2S9PFKV2JI6HEUBNGEABUAIZJ43PS6QHFSLNU6DC338CZLUB4CR9PO2SVHU2O9Q18UW08W2V13V6T4NPFAY1CW0N1Y09ZJHWQ35BWLTHO9IAKAVMCPOBX9V3P00U5A02RQCFB4LGNYLD757I3Y342ZW5PKHFYQNI3ZO6YN0TQP' where id=46; -update noar ti set v2='DWWQTXUC74RHFT7HSUKCPVUF33J5R8AP1N21XTYV05C7XQRUFMYZEMBT1CDQSVGSEDHMCVC7BRUZT8VZ8PYO6MI2S9PFKV2JI6HEUBNGEABUAIZJ43PS6QHFSLNU6DC338CZLUB4CR9PO2SVHU2O9Q18UW08W2V13V6T4NPFAY1CW0N1Y09ZJHWQ35BWLTHO9IAKAVMCPOBX9V3P00U5A02RQCFB4LGNYLD757I3Y342ZW5PKHFYQNI3ZO6YN0TQP' where id=46; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='HH0Z1A2QNYU5N7MB90DDF33H3OFH3E1ORUTP8L87HRU7NYHGAIONAD5K6W8X8HVYAU11MRXUHPPCJDH9N5EXG1WA1KEMU55Y9AXE895OCXY5GSM4I72JXYGNB26CNZ7VAVA8DELE5A5E63PM6DYIEL04JUFRZ22YUUZ5Y0W2ZZYI3YJ4PHRY9S59FGGRO1PKZ8C596RD0AUOG7UROW9AZLEZZ6EXBOP1Q1IQHU59I9B6IUSTXQH4U461GD5UUA245' where id=46; -update noar ti set v3='HH0Z1A2QNYU5N7MB90DDF33H3OFH3E1ORUTP8L87HRU7NYHGAIONAD5K6W8X8HVYAU11MRXUHPPCJDH9N5EXG1WA1KEMU55Y9AXE895OCXY5GSM4I72JXYGNB26CNZ7VAVA8DELE5A5E63PM6DYIEL04JUFRZ22YUUZ5Y0W2ZZYI3YJ4PHRY9S59FGGRO1PKZ8C596RD0AUOG7UROW9AZLEZZ6EXBOP1Q1IQHU59I9B6IUSTXQH4U461GD5UUA245' where id=46; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='MEWSQH4NSS9ROL1BIGRPDRTL18W6HKGDZBNEUFSWHHYE5ZTRIBQND43A7DMHSTCU24450378JK3D7GM8R0JUAKU2NX7KY1XADQKXACH3LGY8SJIEL69FBLY488BYWLGYYIXBGWYSYGD2KTDEQ86121C3GL0OL734J978NSGKQUM5KTEKE6RQTPPPUWFPMWS8IPU5QVIIRLD21XRIRA4RIECJ65PWRWP2JO7O57TQI8ZRHZGPRAMJKRTU19CB3WSVZ' where id=47; -update noar ti set v0='MEWSQH4NSS9ROL1BIGRPDRTL18W6HKGDZBNEUFSWHHYE5ZTRIBQND43A7DMHSTCU24450378JK3D7GM8R0JUAKU2NX7KY1XADQKXACH3LGY8SJIEL69FBLY488BYWLGYYIXBGWYSYGD2KTDEQ86121C3GL0OL734J978NSGKQUM5KTEKE6RQTPPPUWFPMWS8IPU5QVIIRLD21XRIRA4RIECJ65PWRWP2JO7O57TQI8ZRHZGPRAMJKRTU19CB3WSVZ' where id=47; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='07U6EXGWSBP85X4EGFAGDCFXMJ2BN7TJC6F7MTRYVAB0R7SFOGCPHBYZ81649BUJGS4LV54RAJQQVVKJ13W25Y2SXN4AEEOYPHYZ5MSJ173RDG45CMXLTNBVWTO0GSNJEB2TVYXTNCIXVAQ1N4LCZZOLN6SO7R7B5WVNUOVOS3WJOIJOGIFEXRBV77MWO9NISOG51D4OVPFTBS7WYU4BFX3SFG3VXVC5F2PMRUFLALH0QX8E0A8PPB422PKCV6JV2' where id=47; -update noar ti set v1='07U6EXGWSBP85X4EGFAGDCFXMJ2BN7TJC6F7MTRYVAB0R7SFOGCPHBYZ81649BUJGS4LV54RAJQQVVKJ13W25Y2SXN4AEEOYPHYZ5MSJ173RDG45CMXLTNBVWTO0GSNJEB2TVYXTNCIXVAQ1N4LCZZOLN6SO7R7B5WVNUOVOS3WJOIJOGIFEXRBV77MWO9NISOG51D4OVPFTBS7WYU4BFX3SFG3VXVC5F2PMRUFLALH0QX8E0A8PPB422PKCV6JV2' where id=47; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='4ZE33VS11INXIY5RQ68BSV4CU3WSJOYBL4S9219JN31YOIB9XLCCN5YI4LXWKEES3AXPM28AN5454DRD1NUVXUNEHSO06J74L5GQE15ZS72KV6R2YN5TR66NN87QZOX5RW2CD9EAJQB55JYWX7L3H50WYUONVJ50815YHJB1F6GQJ0QLBRN4VVY8IOQ0LMTT2GA1EACP6QJGJ5959ZL7DE5BH903Q1O2ZT74NWLF8AFS9UKV3416XK4TVTEA1XWVD' where id=47; -update noar ti set v2='4ZE33VS11INXIY5RQ68BSV4CU3WSJOYBL4S9219JN31YOIB9XLCCN5YI4LXWKEES3AXPM28AN5454DRD1NUVXUNEHSO06J74L5GQE15ZS72KV6R2YN5TR66NN87QZOX5RW2CD9EAJQB55JYWX7L3H50WYUONVJ50815YHJB1F6GQJ0QLBRN4VVY8IOQ0LMTT2GA1EACP6QJGJ5959ZL7DE5BH903Q1O2ZT74NWLF8AFS9UKV3416XK4TVTEA1XWVD' where id=47; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='R1SY7FBXRNS2JDRH2WEJ5JR7XTLZHZ0OZLYK3WZFHDA0RR189W6U8S7RMJFW9441IVJ7900TNEPS95KO9RNYQZH00BTYPW0PDEO4RCKF8PURHU0QQIUFRF7NIU69H5RCSLRRWGW7FJFSSNEK64J1Y5YTSO6L2P3EOG7OLRTRA8HS9QERT3448KV286YOKDSWZWIG0QAO1BYDX4FT4SAT9WAHN25CLFTCTTGDV6CCS31UC1X3EDQTEJB5C5PN0BYCD' where id=47; -update noar ti set v3='R1SY7FBXRNS2JDRH2WEJ5JR7XTLZHZ0OZLYK3WZFHDA0RR189W6U8S7RMJFW9441IVJ7900TNEPS95KO9RNYQZH00BTYPW0PDEO4RCKF8PURHU0QQIUFRF7NIU69H5RCSLRRWGW7FJFSSNEK64J1Y5YTSO6L2P3EOG7OLRTRA8HS9QERT3448KV286YOKDSWZWIG0QAO1BYDX4FT4SAT9WAHN25CLFTCTTGDV6CCS31UC1X3EDQTEJB5C5PN0BYCD' where id=47; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='Z3NNEIH7FOIR6GRI7DE1JI3CWVLNABVWMYNV80C09E7LNKU8MIOSXWZVX8XMV3B6VVA38GFNP3RPT9BLIJ4D7LEY2QCAQU8LOSDR9MAXBUGI8YQ2WC4KMLYDN4J5SD4JLFZLZ627HYD0XNB9ZLS4UT3TM1BRVC5U31Z53JY9SPU0YC3EL67C4EUOBWIB6BLA1L9BLGEHB8WH0T5F99S40DMEOMH1DYDTIIVHLS0CX427XJ0I5JAZFNBA52PRX0CDQ' where id=48; -update noar ti set v0='Z3NNEIH7FOIR6GRI7DE1JI3CWVLNABVWMYNV80C09E7LNKU8MIOSXWZVX8XMV3B6VVA38GFNP3RPT9BLIJ4D7LEY2QCAQU8LOSDR9MAXBUGI8YQ2WC4KMLYDN4J5SD4JLFZLZ627HYD0XNB9ZLS4UT3TM1BRVC5U31Z53JY9SPU0YC3EL67C4EUOBWIB6BLA1L9BLGEHB8WH0T5F99S40DMEOMH1DYDTIIVHLS0CX427XJ0I5JAZFNBA52PRX0CDQ' where id=48; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='UQETTULM3ZC910CFODB2IJHTPDKJ677QZXJ6S5QY3J6A6QSHU43P5ASNC6BVAY7QPSW0QYFMAR5N6Q5JK0ZLQQF3C4ZJG3ZYAIX8DWVE6ET8LID4MRW5SBNGHH80EH73QRI2EOZ7R9F0MQRAKCXI20VF5II3CRDN17UQ6UA503ZSY817OTDY1JYHUTHOJJR0F4F3TVVWK5VTN1DTCOB9T7AE1WUN81SNP5STVNR5Y9F8H1TQQFEYGAH1ZALDL5AFU' where id=48; -update noar ti set v1='UQETTULM3ZC910CFODB2IJHTPDKJ677QZXJ6S5QY3J6A6QSHU43P5ASNC6BVAY7QPSW0QYFMAR5N6Q5JK0ZLQQF3C4ZJG3ZYAIX8DWVE6ET8LID4MRW5SBNGHH80EH73QRI2EOZ7R9F0MQRAKCXI20VF5II3CRDN17UQ6UA503ZSY817OTDY1JYHUTHOJJR0F4F3TVVWK5VTN1DTCOB9T7AE1WUN81SNP5STVNR5Y9F8H1TQQFEYGAH1ZALDL5AFU' where id=48; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='XO6WHYZJDUY15PL8GCCSK692T3BKD94YOUTCB5FWGQG0ICUHR4ZQFQ8NB2ZCPKTSYAPBOW9RHG1WHUAVY8IFMC9SNWMN8MGTWJ4Z1O6VX4CELGFE1A5QU5KM4HIDEP3C8CUM524UM54JZ6DLFRWR6O8GOR9TU5WXYFKQWWJ6AWDHRKW1AMRDA4E0VT2R1IAZ26UNM93GY760XKUE9FIPARYRK84FOYQ5GZ6P849GGQL4EZ5ZRQQU40B7UW0CSA88T' where id=48; -update noar ti set v2='XO6WHYZJDUY15PL8GCCSK692T3BKD94YOUTCB5FWGQG0ICUHR4ZQFQ8NB2ZCPKTSYAPBOW9RHG1WHUAVY8IFMC9SNWMN8MGTWJ4Z1O6VX4CELGFE1A5QU5KM4HIDEP3C8CUM524UM54JZ6DLFRWR6O8GOR9TU5WXYFKQWWJ6AWDHRKW1AMRDA4E0VT2R1IAZ26UNM93GY760XKUE9FIPARYRK84FOYQ5GZ6P849GGQL4EZ5ZRQQU40B7UW0CSA88T' where id=48; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='KGKROJSQXWLCGA578DR5ZF7Z6XNFD5JZFIN25KZUXMXCQRY2F47KE4ME724EU1ACF0W2LW6PU07AP5VAVKHSI5WJK1PNY91EM37FWDJSV6B7605PCTG67Y1ZWV2ESISM96W94VP6SD321K6XBCVO1ZFHW5SQBYW09Q5AU7N9RMA68Q0MF5YNLHYT9QLN93SCTQ3Y34T8778C1IH27UEE39Z06E7J0LJVRIXJ8S578W1VV6HXWCFGDDREWOTDOJMYU' where id=48; -update noar ti set v3='KGKROJSQXWLCGA578DR5ZF7Z6XNFD5JZFIN25KZUXMXCQRY2F47KE4ME724EU1ACF0W2LW6PU07AP5VAVKHSI5WJK1PNY91EM37FWDJSV6B7605PCTG67Y1ZWV2ESISM96W94VP6SD321K6XBCVO1ZFHW5SQBYW09Q5AU7N9RMA68Q0MF5YNLHYT9QLN93SCTQ3Y34T8778C1IH27UEE39Z06E7J0LJVRIXJ8S578W1VV6HXWCFGDDREWOTDOJMYU' where id=48; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='2C0TDDNSU7F74W7DMOWTC5XOZQXLJ92FXHA2Z0RG6S9TLQ951G3DOXGXFYXBNZF6BS4KMKUPTEOB7OQDXJVAA3SQN4P6Z60GPUV30RM293QF5KGQC2QZG1M4CX5UVI5KTM665SIV3JCCBGO0AUC6MTKFET3NCKU5VZEZ3NQS0J55IG3PAA8HJIQNIHIS02JZW2J6RFBLBCIXORLAR8K3NGEROL7XP6SM63TV92W62X0976PZKBM6P52WYWQOTD79V' where id=49; -update noar ti set v0='2C0TDDNSU7F74W7DMOWTC5XOZQXLJ92FXHA2Z0RG6S9TLQ951G3DOXGXFYXBNZF6BS4KMKUPTEOB7OQDXJVAA3SQN4P6Z60GPUV30RM293QF5KGQC2QZG1M4CX5UVI5KTM665SIV3JCCBGO0AUC6MTKFET3NCKU5VZEZ3NQS0J55IG3PAA8HJIQNIHIS02JZW2J6RFBLBCIXORLAR8K3NGEROL7XP6SM63TV92W62X0976PZKBM6P52WYWQOTD79V' where id=49; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='HDZ5SU7YMR83FBT3WKOA5LUPSTW7V1XDWU4J6Y3RS8PJOY3V13AR9RXMPE4N507KEPWINZFRF9SMDKMZREGOL4F00LK058YWKGGCHVXN3046CBI4VD47MOD394R1A1LIDRW6G4S2X2XDEXB05IMCCQONA4KX6D0X47FV9OK9B1BSW841NF90A2ENVJ1V4AUE0SCLYGDMM1FSEW6VFAN2UE0ZFBTPBMMOAT26I027KHDFG9WSPIY004V16B1L5GZXN' where id=49; -update noar ti set v1='HDZ5SU7YMR83FBT3WKOA5LUPSTW7V1XDWU4J6Y3RS8PJOY3V13AR9RXMPE4N507KEPWINZFRF9SMDKMZREGOL4F00LK058YWKGGCHVXN3046CBI4VD47MOD394R1A1LIDRW6G4S2X2XDEXB05IMCCQONA4KX6D0X47FV9OK9B1BSW841NF90A2ENVJ1V4AUE0SCLYGDMM1FSEW6VFAN2UE0ZFBTPBMMOAT26I027KHDFG9WSPIY004V16B1L5GZXN' where id=49; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='0Y5VN6FHUGBM5YPMP7CT01J0W65C56RVJRSO43SVPIF2NVATZRMXKLS4AR56TOFK475SY5GK1Y44ABNA84UXAGS6LGEWYUTNBCHQ3J3S4S5YG84GWFJXW522BDINVHZBFPTQBLUYZKDPEQRXXTM3J83E2A2CVL056GK2GF3CHF85VTPW67VRG2A7M6ZPAKMA7WITDRU6Q4W5J6179J1ZOMT10EQHYHMHKCS8MHR70WJKFRGL8D68TYV1GXN6KPIJ1' where id=49; -update noar ti set v2='0Y5VN6FHUGBM5YPMP7CT01J0W65C56RVJRSO43SVPIF2NVATZRMXKLS4AR56TOFK475SY5GK1Y44ABNA84UXAGS6LGEWYUTNBCHQ3J3S4S5YG84GWFJXW522BDINVHZBFPTQBLUYZKDPEQRXXTM3J83E2A2CVL056GK2GF3CHF85VTPW67VRG2A7M6ZPAKMA7WITDRU6Q4W5J6179J1ZOMT10EQHYHMHKCS8MHR70WJKFRGL8D68TYV1GXN6KPIJ1' where id=49; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='JCKTSLW5IWQXWY843YYA3XVS7YAYOLUGO3TAA6TU80Z2R4X8X62IDZE8OV5UWN2X0223GQ6KJI2KVL6V7QCFHCJI2BWIA2RAPBROMVEV7DP6QHVRHVRWY40HU5KEYRDDMQNGMJTOHXS92NLRAXUEIWT5VB1PD6C2UVOMZOA6IDYP5PJE5V4HLPFGNHKSTBOQ9MA7A3FXC6TM3GEYAOO8LWDW43NXQX0FHCFTH9313Z7IXHNL5IZZVPSILVJ4FG2XI' where id=49; -update noar ti set v3='JCKTSLW5IWQXWY843YYA3XVS7YAYOLUGO3TAA6TU80Z2R4X8X62IDZE8OV5UWN2X0223GQ6KJI2KVL6V7QCFHCJI2BWIA2RAPBROMVEV7DP6QHVRHVRWY40HU5KEYRDDMQNGMJTOHXS92NLRAXUEIWT5VB1PD6C2UVOMZOA6IDYP5PJE5V4HLPFGNHKSTBOQ9MA7A3FXC6TM3GEYAOO8LWDW43NXQX0FHCFTH9313Z7IXHNL5IZZVPSILVJ4FG2XI' where id=49; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='B3HHCFWDMM36S7X9QJJKZ8NDSEGGEXOYOCOGD3BHTZY2TQE097IZUTOK1GI94G5O0C8Y7PRRYDHH0M1P8BLUVKJ6CANZ5W8MB9O8UCEYM0GHJ7E87ILTE7DJMH75O0YZ4MCL4ENVL9H50EIRLM9TRGUKDI1PJ9VP7212FE4R4HRBALY49DK80WRISGR45J3RHDP4ALOANMF1W8613CVLEHOJP17ZFNR4F3D7PZYPGHYPBTOWFGNY5F0APADJJC03U' where id=50; -update noar ti set v0='B3HHCFWDMM36S7X9QJJKZ8NDSEGGEXOYOCOGD3BHTZY2TQE097IZUTOK1GI94G5O0C8Y7PRRYDHH0M1P8BLUVKJ6CANZ5W8MB9O8UCEYM0GHJ7E87ILTE7DJMH75O0YZ4MCL4ENVL9H50EIRLM9TRGUKDI1PJ9VP7212FE4R4HRBALY49DK80WRISGR45J3RHDP4ALOANMF1W8613CVLEHOJP17ZFNR4F3D7PZYPGHYPBTOWFGNY5F0APADJJC03U' where id=50; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='ZSXVHFTF1ZYI8DN9M2RF2FLYQH0IPG3PZMXRYJCZ3P5MPT5I7SH5SJYE03PCP9U1NGYGD645O432EF8Q2K0O3U3LCRPWO7VWUMFLIQFF4Y6ZOLMZCGNZJHE0UP7G2T49ZHCADTGM726B1RS9LAQOPT2PVWMPA1Q2D8SNS2LQCAE6Q0PZ3HMKGZPTBUPH4TA5Y14W76LX2663FV8D4YN93IESPCOND3YZAD43QA1YD4TQEWXV9A3SOZE4V240AI0TE' where id=50; -update noar ti set v1='ZSXVHFTF1ZYI8DN9M2RF2FLYQH0IPG3PZMXRYJCZ3P5MPT5I7SH5SJYE03PCP9U1NGYGD645O432EF8Q2K0O3U3LCRPWO7VWUMFLIQFF4Y6ZOLMZCGNZJHE0UP7G2T49ZHCADTGM726B1RS9LAQOPT2PVWMPA1Q2D8SNS2LQCAE6Q0PZ3HMKGZPTBUPH4TA5Y14W76LX2663FV8D4YN93IESPCOND3YZAD43QA1YD4TQEWXV9A3SOZE4V240AI0TE' where id=50; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='COPC5PZKQW75H1JB2V99Q0EHRDMNABBZQJQXMV67XJAPZAAQY4UT3DDXS74SFLOOBPU88MCA3P6HEEKMZ4Y21SA37HK454OLCSWA2SSY0POBLL7CBLRP020YPTIBLZSYV8FK7G1DENNVIQ1KNIUMK7PQ5V4FPUAQMWTB5A0JQMB64K9U3ASGYQR3WXKVTF3PMCAAMDU5UBLO62YGTD3VI5CZQGCAF9W8O0RXXNEKQP30HJDYJHLE20L92L8L2Y5KQ' where id=50; -update noar ti set v2='COPC5PZKQW75H1JB2V99Q0EHRDMNABBZQJQXMV67XJAPZAAQY4UT3DDXS74SFLOOBPU88MCA3P6HEEKMZ4Y21SA37HK454OLCSWA2SSY0POBLL7CBLRP020YPTIBLZSYV8FK7G1DENNVIQ1KNIUMK7PQ5V4FPUAQMWTB5A0JQMB64K9U3ASGYQR3WXKVTF3PMCAAMDU5UBLO62YGTD3VI5CZQGCAF9W8O0RXXNEKQP30HJDYJHLE20L92L8L2Y5KQ' where id=50; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='2Y4IEE44CZIVJGG3BGLHB716UH5O4VXM68VM0FH98H3QSGAI8O2KBX0ETV3H2GGI2PD4Z07MHPCONPUBPSW3YBGJWPNGFDXB37LFR42K50JC7U77P0RAC1TE178LD01S0FRFQ5JSKW92H56CO0I90SLALKABB0ABWCK28UF4Q2N7UIFIQXUMNQ88B5CJBRC4SKWX8B394TR19HTNHRCEUWMLIJCPBMD03T18API3U3H4Y38DY4HH40EVVXDRC6AEF' where id=50; -update noar ti set v3='2Y4IEE44CZIVJGG3BGLHB716UH5O4VXM68VM0FH98H3QSGAI8O2KBX0ETV3H2GGI2PD4Z07MHPCONPUBPSW3YBGJWPNGFDXB37LFR42K50JC7U77P0RAC1TE178LD01S0FRFQ5JSKW92H56CO0I90SLALKABB0ABWCK28UF4Q2N7UIFIQXUMNQ88B5CJBRC4SKWX8B394TR19HTNHRCEUWMLIJCPBMD03T18API3U3H4Y38DY4HH40EVVXDRC6AEF' where id=50; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='9KAHWAZ10DNAUVX8VNCBF3YLYN9PX46Z5G90PYYNZLGZCPQWJIARY2NCSHOTWR3I6NLGMQHVPCOKSC3AFORY2GCJSOIAVUOP2N6RQSX42S6871K6M3O4QTKLMLQNMLJ4DOQWYRIRAI1RV021FVCT0YP79ILOEWQCIDQVBDP7MMCZIIGOFBQU87QC8YUZIZMN1STRRC8ZQULPVG3PA4M0IPCM198HH95X2UEIGL671YCYIJPUIBYFBK6LODY8RO9EE' where id=51; -update noar ti set v0='9KAHWAZ10DNAUVX8VNCBF3YLYN9PX46Z5G90PYYNZLGZCPQWJIARY2NCSHOTWR3I6NLGMQHVPCOKSC3AFORY2GCJSOIAVUOP2N6RQSX42S6871K6M3O4QTKLMLQNMLJ4DOQWYRIRAI1RV021FVCT0YP79ILOEWQCIDQVBDP7MMCZIIGOFBQU87QC8YUZIZMN1STRRC8ZQULPVG3PA4M0IPCM198HH95X2UEIGL671YCYIJPUIBYFBK6LODY8RO9EE' where id=51; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='JRRFBWT3MDK1VJR7GS0Y6EPQ755EVK4V5OOCXKKO4OKTAD2GFM0GFCYR66Z753H15CK2K4Q708CXAADGRV5QFBI5X96COO90GI0IIXKO01ADVJYJFC2AHXZSPE0IJAPYATBPL4XUBYLYTU13MACVU3XBUP6KTQ51BLU5DZJCTK9PR46AU4AU7LRNAP5AZF0YCGHV7ACK90XEO6H8KOYOFYPCNF065RUGM3JWCVC5LUDPJDSGA4I8SZ2I48IRX9NQK' where id=51; -update noar ti set v1='JRRFBWT3MDK1VJR7GS0Y6EPQ755EVK4V5OOCXKKO4OKTAD2GFM0GFCYR66Z753H15CK2K4Q708CXAADGRV5QFBI5X96COO90GI0IIXKO01ADVJYJFC2AHXZSPE0IJAPYATBPL4XUBYLYTU13MACVU3XBUP6KTQ51BLU5DZJCTK9PR46AU4AU7LRNAP5AZF0YCGHV7ACK90XEO6H8KOYOFYPCNF065RUGM3JWCVC5LUDPJDSGA4I8SZ2I48IRX9NQK' where id=51; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='DT8A7KD7QYXD1I317W44YGUSBL22DITUVKYKNT571EHPOW96XW6LTS3JRVOHW3Q0VLF8XEY6KLV05G6K2YLZEW0TMVBH5W02384Y17V1MILYCAXZMF5HGRBPUQPNE90S85AM6M0HNHLQKP9I0OJJC3CJ18S29BD1CMJXHF1SX119EN8T3RDXCI7T77EP655KYQJ5C8OA3V20FDY01UIBYB4KR7NZ2W60ZNY00AADOHIAN0CNHT8RXUI586Z65LOPZ' where id=51; -update noar ti set v2='DT8A7KD7QYXD1I317W44YGUSBL22DITUVKYKNT571EHPOW96XW6LTS3JRVOHW3Q0VLF8XEY6KLV05G6K2YLZEW0TMVBH5W02384Y17V1MILYCAXZMF5HGRBPUQPNE90S85AM6M0HNHLQKP9I0OJJC3CJ18S29BD1CMJXHF1SX119EN8T3RDXCI7T77EP655KYQJ5C8OA3V20FDY01UIBYB4KR7NZ2W60ZNY00AADOHIAN0CNHT8RXUI586Z65LOPZ' where id=51; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='SNHO586PPIZR0DG5HB9LTH3OAJDR144L4XU36B2AXRPRMT962ICONI83IM9DA09HAI00SXIN2D05X8Y3PZEDD6QWKJAT3NEYGCPYBMSW6A71BNL0VU0PP18FYPS8SDP2RYQHNO21XG79X7X8O9JO739K701LARL9GCV08H02WDC712I4I6N579H8J3BLB99N1P7WXNSGMNGYIAL5GJSY73A27CGDA7335YCZWGNV7NVF6SNTD3Q2ESRQ3Z46FQ3PY' where id=51; -update noar ti set v3='SNHO586PPIZR0DG5HB9LTH3OAJDR144L4XU36B2AXRPRMT962ICONI83IM9DA09HAI00SXIN2D05X8Y3PZEDD6QWKJAT3NEYGCPYBMSW6A71BNL0VU0PP18FYPS8SDP2RYQHNO21XG79X7X8O9JO739K701LARL9GCV08H02WDC712I4I6N579H8J3BLB99N1P7WXNSGMNGYIAL5GJSY73A27CGDA7335YCZWGNV7NVF6SNTD3Q2ESRQ3Z46FQ3PY' where id=51; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='YJVAP3M8GHRF00KTP134RRE07NBYCXP67FYM7F2RQBAUV5LZAESBVU6ANEG7XZ9OD7SGDHLR6U94TIQWHLCXPFTNERL3RSXH49L2H3RXCRBYXI4TIM98QHEFHXW1Y3HNEANNV5D9TPTTENGEBMNRO84Z4SR3K7CMJI0MKDVLP7MH9EC3YKYZDG0S1RPMCDS1Y25B5B1UN84K7RAU01X6T1S3S30KP86C3WPU1QZF7K46G1NYXOVI6RF1ZPFFVNA85' where id=52; -update noar ti set v0='YJVAP3M8GHRF00KTP134RRE07NBYCXP67FYM7F2RQBAUV5LZAESBVU6ANEG7XZ9OD7SGDHLR6U94TIQWHLCXPFTNERL3RSXH49L2H3RXCRBYXI4TIM98QHEFHXW1Y3HNEANNV5D9TPTTENGEBMNRO84Z4SR3K7CMJI0MKDVLP7MH9EC3YKYZDG0S1RPMCDS1Y25B5B1UN84K7RAU01X6T1S3S30KP86C3WPU1QZF7K46G1NYXOVI6RF1ZPFFVNA85' where id=52; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='7PWERZDMXS5W3D0RULJNJUIL3O480IR9MIYLGWXHNIYIU9HP38MUP1DA9D6NSEHZ2XL0RTIUI0EEAQV56KOHSAMJY8KYBV52CBO2HLRIQZQYHZZ4TBFHQH23RNMXEIFGXR2KVYU4QFQX5WRIOE1X40TOK58YVP8RU48HR8088RE5J27Y2GRCAKP7OE6DJFCJMHGSRNAY47LYE8FY4EWNI2UK0OEDMAV71EPOU043URXT6TLOC0G6LKMHLHZ285MLJ' where id=52; -update noar ti set v1='7PWERZDMXS5W3D0RULJNJUIL3O480IR9MIYLGWXHNIYIU9HP38MUP1DA9D6NSEHZ2XL0RTIUI0EEAQV56KOHSAMJY8KYBV52CBO2HLRIQZQYHZZ4TBFHQH23RNMXEIFGXR2KVYU4QFQX5WRIOE1X40TOK58YVP8RU48HR8088RE5J27Y2GRCAKP7OE6DJFCJMHGSRNAY47LYE8FY4EWNI2UK0OEDMAV71EPOU043URXT6TLOC0G6LKMHLHZ285MLJ' where id=52; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='ABTN68797XZX1XLT9UYN6TW14OVIYIMEUOTGE0CL2FD0D65APM7UZN4CDF6Q4JKLWGUU2DWKMKTUKZSXIH3J3XXV1YNDMC8C9HAYQ8118P9FRH30I430WD8AUQXM6MSI6SGDFT0CSAHWVPEZL1PEIE453GF38116NVPVB9YMYOOYGE3ZPUP5H4MZ9G3JZKEGPBGJ2HD26M18SPOBNJTEUSFZHRCCACIE3BD18BLOMVB4MJ2MKVSIWBO1A26T69X1P' where id=52; -update noar ti set v2='ABTN68797XZX1XLT9UYN6TW14OVIYIMEUOTGE0CL2FD0D65APM7UZN4CDF6Q4JKLWGUU2DWKMKTUKZSXIH3J3XXV1YNDMC8C9HAYQ8118P9FRH30I430WD8AUQXM6MSI6SGDFT0CSAHWVPEZL1PEIE453GF38116NVPVB9YMYOOYGE3ZPUP5H4MZ9G3JZKEGPBGJ2HD26M18SPOBNJTEUSFZHRCCACIE3BD18BLOMVB4MJ2MKVSIWBO1A26T69X1P' where id=52; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='BME8T6JHZK2ADGLZNTMFMJVCKJM18KRG5LY1VDP1AX324XAWOKZZ1L0HPYLHVEK3U6VZWPEBZRHOLBXQHKIL2275L8I65EIZDNTWFSVHXEM8AUDDFVLZGYL8D7TQ4ANRHBXYMQ02JO87CEC8R4HIXUGSPK3HLWHEM3VDGF5BBKCUJXE5MGNOCM5Z6111C8TGS937QI7FLWOE13MX0U718H2VEIAMPCYD9UIB83RPRBOQ4MSE81G88OD5PB4USJQTT' where id=52; -update noar ti set v3='BME8T6JHZK2ADGLZNTMFMJVCKJM18KRG5LY1VDP1AX324XAWOKZZ1L0HPYLHVEK3U6VZWPEBZRHOLBXQHKIL2275L8I65EIZDNTWFSVHXEM8AUDDFVLZGYL8D7TQ4ANRHBXYMQ02JO87CEC8R4HIXUGSPK3HLWHEM3VDGF5BBKCUJXE5MGNOCM5Z6111C8TGS937QI7FLWOE13MX0U718H2VEIAMPCYD9UIB83RPRBOQ4MSE81G88OD5PB4USJQTT' where id=52; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='VVDXG9N95ESO8IZRXAB7BA7WWBVNQW2ZJ65ISS288DK86W5ZL00OLY8T643JXCH9W3AL4H0RP44RH3LVLKROYRI0NYM27I0Q50IJVBNHJBDZN44DU53NZ0200DTHY481FVC4X5S1PTY6KVTJ7J222HBBNHI5MKROU0MPHVS0RBEP934UBIGS9MZVXMCKQRTDR6MI93B699XQGIHY40TIPI3L21QTI0873ZVZGWNEEY7P8T36M1F2VVPX6HS5SWM5O' where id=53; -update noar ti set v0='VVDXG9N95ESO8IZRXAB7BA7WWBVNQW2ZJ65ISS288DK86W5ZL00OLY8T643JXCH9W3AL4H0RP44RH3LVLKROYRI0NYM27I0Q50IJVBNHJBDZN44DU53NZ0200DTHY481FVC4X5S1PTY6KVTJ7J222HBBNHI5MKROU0MPHVS0RBEP934UBIGS9MZVXMCKQRTDR6MI93B699XQGIHY40TIPI3L21QTI0873ZVZGWNEEY7P8T36M1F2VVPX6HS5SWM5O' where id=53; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='QHS4I64K5EI379CFKU6BR5HOCUT4XAY72IRWTQM18YK6CPKGF3ZEUQQZ9TDB4R2BFXSG6SM8BHSQ6AKMN87UZ7L6AF8TCDG5EOWIZYHFVHYR7B4FAW9MVB4QWC354YLE1RV0YUZ6RZI5HHJW9JQXP9R0IOPD9GL9O4F7ANDCN2EHIQATI2UJ89IBNMZRJG2T56KNTL0J87BHL8OA5KXCXK9G69JDZVT8GIE2CS4LT352VKMTLKI5BR8X8C33MCHL3' where id=53; -update noar ti set v1='QHS4I64K5EI379CFKU6BR5HOCUT4XAY72IRWTQM18YK6CPKGF3ZEUQQZ9TDB4R2BFXSG6SM8BHSQ6AKMN87UZ7L6AF8TCDG5EOWIZYHFVHYR7B4FAW9MVB4QWC354YLE1RV0YUZ6RZI5HHJW9JQXP9R0IOPD9GL9O4F7ANDCN2EHIQATI2UJ89IBNMZRJG2T56KNTL0J87BHL8OA5KXCXK9G69JDZVT8GIE2CS4LT352VKMTLKI5BR8X8C33MCHL3' where id=53; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='69PMN7LPEUKCD1F98FHR3VNX0TEGV0Q1TNNR16NWKW3ODHO4OSIH7CBWO0N8N45F5SVVC3COIJ43P9W9CO67V9RK2256JGUXMGL4HHLZ9C6QLME8IJYV2OB14RHOUC3773EI87QKVK58JZNAS65GELEWQFU93EP1LCVBPXI7CQL94FCHEKQ060BD0H8CO4BRDWY3KZVIRNAB8Q28KLWDH8R34NSUPN4WCOJ46DWZBXUT93L3A58J79314YWZM9RR9' where id=53; -update noar ti set v2='69PMN7LPEUKCD1F98FHR3VNX0TEGV0Q1TNNR16NWKW3ODHO4OSIH7CBWO0N8N45F5SVVC3COIJ43P9W9CO67V9RK2256JGUXMGL4HHLZ9C6QLME8IJYV2OB14RHOUC3773EI87QKVK58JZNAS65GELEWQFU93EP1LCVBPXI7CQL94FCHEKQ060BD0H8CO4BRDWY3KZVIRNAB8Q28KLWDH8R34NSUPN4WCOJ46DWZBXUT93L3A58J79314YWZM9RR9' where id=53; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='WQXSFYOTDQVPELU3QL0ROQ6Z0ES0DL34NV77V594W4MQJYUR1HWC102D4A3UZW6HFY6JFY2TU9KZ3PUHPVO2QHM50OD4OVRHSGF323TMPPBDHQMSIFHPULH6LW99FDD7V1XEHSRKUL7YNGEH6RUPE97P3L9883Y6Z98APJ6KJPVQNLESADXC79LT5W82M3ALIMMIF3ELDIE8UNMJA6GWLXH17FIH8R26N842SD2W6CLN2LIG550Y5PMO2JFC0DF3B' where id=53; -update noar ti set v3='WQXSFYOTDQVPELU3QL0ROQ6Z0ES0DL34NV77V594W4MQJYUR1HWC102D4A3UZW6HFY6JFY2TU9KZ3PUHPVO2QHM50OD4OVRHSGF323TMPPBDHQMSIFHPULH6LW99FDD7V1XEHSRKUL7YNGEH6RUPE97P3L9883Y6Z98APJ6KJPVQNLESADXC79LT5W82M3ALIMMIF3ELDIE8UNMJA6GWLXH17FIH8R26N842SD2W6CLN2LIG550Y5PMO2JFC0DF3B' where id=53; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='K451G7CBWQ1GDYNQ2IJVP4WCF11S8GN9SWKENYCC1D7693YTX6GUAZC47G4AGAT6BFOKT478NF86E5O4O68XEB11Y43CDZPK8AKQJKDUO7CW81D3CHBI7KFLVUY3PU3RLGXUR3HIM1SEVZQEWQI2I4RNGV3CCFYSR0NT2I2WPE5Z4EHT756BNSOI1ZCHGE92XX7MURLZURPF3OAKHDVKGZTBBN0BEKHIGPATVYBX2L7DR5Z6YYOTP1640E8BWT7CK' where id=54; -update noar ti set v0='K451G7CBWQ1GDYNQ2IJVP4WCF11S8GN9SWKENYCC1D7693YTX6GUAZC47G4AGAT6BFOKT478NF86E5O4O68XEB11Y43CDZPK8AKQJKDUO7CW81D3CHBI7KFLVUY3PU3RLGXUR3HIM1SEVZQEWQI2I4RNGV3CCFYSR0NT2I2WPE5Z4EHT756BNSOI1ZCHGE92XX7MURLZURPF3OAKHDVKGZTBBN0BEKHIGPATVYBX2L7DR5Z6YYOTP1640E8BWT7CK' where id=54; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='IMPDJLFC0K0EHX90WZNJMZ1HSANIUK2M2EV1ODSS7CDICR8MXIHIP49A2TCJA95TN7YSKXZZPCS1GCG69QUU80F650W6SZ2T7L4XZ6ZZJE3MZYEENSU6B3APHR44S5XCYRV5GWOEHXH3DOHOETADYNF838LO9OHQTDP32XP3LV99STJ8V3UL3X9RXXNMYK63VKIHQRRLZB6SITJCWP95A1XYUXBQOCI1BO1JHMY38PXZOHXLPPG2CZYIBAV6NQ3ZF' where id=54; -update noar ti set v1='IMPDJLFC0K0EHX90WZNJMZ1HSANIUK2M2EV1ODSS7CDICR8MXIHIP49A2TCJA95TN7YSKXZZPCS1GCG69QUU80F650W6SZ2T7L4XZ6ZZJE3MZYEENSU6B3APHR44S5XCYRV5GWOEHXH3DOHOETADYNF838LO9OHQTDP32XP3LV99STJ8V3UL3X9RXXNMYK63VKIHQRRLZB6SITJCWP95A1XYUXBQOCI1BO1JHMY38PXZOHXLPPG2CZYIBAV6NQ3ZF' where id=54; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='70WYQKTFS682JBEWD82T2YY384U1LZIQMJFGRPYL2JEUQR28AWQ19ATEWXONOKGXEON0TMW107Z1ZXZY2OC3O4FMBPUDH3Q6ILCW3VJHEES8KDZCYP8ZJAYB28Q9189FJ6744G8IHMZPTCY9LSJPLGIP38GAHEOETBGTPSETFSMNI2YW17FZQZ299CYHXQHN70RM4A04M6CQG0E7HPU4GRHKKE0Z82PM47DNB8ZY3LUUT6242SUDD4P3FU5HXV3Y1' where id=54; -update noar ti set v2='70WYQKTFS682JBEWD82T2YY384U1LZIQMJFGRPYL2JEUQR28AWQ19ATEWXONOKGXEON0TMW107Z1ZXZY2OC3O4FMBPUDH3Q6ILCW3VJHEES8KDZCYP8ZJAYB28Q9189FJ6744G8IHMZPTCY9LSJPLGIP38GAHEOETBGTPSETFSMNI2YW17FZQZ299CYHXQHN70RM4A04M6CQG0E7HPU4GRHKKE0Z82PM47DNB8ZY3LUUT6242SUDD4P3FU5HXV3Y1' where id=54; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='B1QS7BYUJ1G9II6JLAWLFNF3ZDNLLW7Y2VPQI34R83CQZC8L4RFHFQME0VMOO4GC3VG8XBP2FULKWGW9PQOZT7059BO0MCS6M44XEIOQE2JUDG67GLIMSXNWXL7NGN90FUOOSS3T60SM3WPF7JSM2WUMUOI4VY98MLG6J98OD712VGJ1Y65GXZT0PPJQ2WJ8FGGFDDXFQ5PAZ15TPZO5OKUZFXBRU2SXKRX72THILRNIPGETT0EZXEMSGU1Y8DJXJ' where id=54; -update noar ti set v3='B1QS7BYUJ1G9II6JLAWLFNF3ZDNLLW7Y2VPQI34R83CQZC8L4RFHFQME0VMOO4GC3VG8XBP2FULKWGW9PQOZT7059BO0MCS6M44XEIOQE2JUDG67GLIMSXNWXL7NGN90FUOOSS3T60SM3WPF7JSM2WUMUOI4VY98MLG6J98OD712VGJ1Y65GXZT0PPJQ2WJ8FGGFDDXFQ5PAZ15TPZO5OKUZFXBRU2SXKRX72THILRNIPGETT0EZXEMSGU1Y8DJXJ' where id=54; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='FT2E93NV3QCL4IENSLMVPXJLRU9UZU8YDHW4VIDTKVE07PD6P7H57NHA6RLP2ZXKDVQKLX2PU79IC5889CP7L5PBKWHE233WKFD0YI5LT3N9IQVA712JAGK7SE72IW2YXON7UELGIC751UTSA7BFLEQ4OXKAWTXOR89HFWI2WPF2TSY13SZA063F9EO2W0714N1TCC23HVLF2FIZFGHI0NUEL127HE7I1YW9A254IEM4T4CEEP8T613FC5WG05CEN' where id=55; -update noar ti set v0='FT2E93NV3QCL4IENSLMVPXJLRU9UZU8YDHW4VIDTKVE07PD6P7H57NHA6RLP2ZXKDVQKLX2PU79IC5889CP7L5PBKWHE233WKFD0YI5LT3N9IQVA712JAGK7SE72IW2YXON7UELGIC751UTSA7BFLEQ4OXKAWTXOR89HFWI2WPF2TSY13SZA063F9EO2W0714N1TCC23HVLF2FIZFGHI0NUEL127HE7I1YW9A254IEM4T4CEEP8T613FC5WG05CEN' where id=55; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='UUSG8E3OZ5GU6JFEAZDZTUVPU9D77QDLVFI72LED3KD8M12EEA0MA7PTSZHWQCSFRZR7Y915OWFLXULX76VYURNKPP0CM6RYKF2Y26QBRWT4UF76EOCCYBSJYB2RB0DSRU44C2AOWT9QA29IOUVSYA2TNPVR0ZL6J3NB0I9BY6BD4G3AOYKJ0RRGOUD0Q47A0BS7TSRFCL9O5B82VDZ55AUE1RMCWF2K0X88OIWTZKWG652YYGJRCKUBF5LW5HLVK' where id=55; -update noar ti set v1='UUSG8E3OZ5GU6JFEAZDZTUVPU9D77QDLVFI72LED3KD8M12EEA0MA7PTSZHWQCSFRZR7Y915OWFLXULX76VYURNKPP0CM6RYKF2Y26QBRWT4UF76EOCCYBSJYB2RB0DSRU44C2AOWT9QA29IOUVSYA2TNPVR0ZL6J3NB0I9BY6BD4G3AOYKJ0RRGOUD0Q47A0BS7TSRFCL9O5B82VDZ55AUE1RMCWF2K0X88OIWTZKWG652YYGJRCKUBF5LW5HLVK' where id=55; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='8IHXAKH9PJDI4NBT0U1XF6XCEXWYQGM1YQZWTNIBVGLGMZFOMG90W3OP69W83KI4A660G79B19U3LNBX5TL8TN9D6LSDDAOZHD4S9H95BOS0Y46JT4ESTEIXPGZY1847UTEODJ822CO4OG2OOJZWCZR3O16GVWZ7OVDW5K8M3YISQ0WLH0VRY0PBUMK095ZK4YA2XA68NTRFM70M798Q2IM8QJD6SAXCCHNCTWBEAHNPB9AD9AUFADZF4SRA28NTZ' where id=55; -update noar ti set v2='8IHXAKH9PJDI4NBT0U1XF6XCEXWYQGM1YQZWTNIBVGLGMZFOMG90W3OP69W83KI4A660G79B19U3LNBX5TL8TN9D6LSDDAOZHD4S9H95BOS0Y46JT4ESTEIXPGZY1847UTEODJ822CO4OG2OOJZWCZR3O16GVWZ7OVDW5K8M3YISQ0WLH0VRY0PBUMK095ZK4YA2XA68NTRFM70M798Q2IM8QJD6SAXCCHNCTWBEAHNPB9AD9AUFADZF4SRA28NTZ' where id=55; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='THPPDHEFNY8IAZKHNH57S5Q5JGI612U28HGOSUYPCO2WHS77MG6Q1EWMX5FE63JQIWIT2OJS3PZYDBOD2KV3MWMYBI36LSW9WLIDFC9PP318YY7N81JEE8KBXG2JWNSXBBBKSEL7ZV7FBU8VAGNPCP8KG1PM5CKDYSVBDIDA7T2C8XH3VT30PH1BHIBS7F884Q0X22531UDULHUNV50L4CKIDJYR6QDYJOWRFW1ONDMPLKYNR1O7R3EUF3PNSEB1Z' where id=55; -update noar ti set v3='THPPDHEFNY8IAZKHNH57S5Q5JGI612U28HGOSUYPCO2WHS77MG6Q1EWMX5FE63JQIWIT2OJS3PZYDBOD2KV3MWMYBI36LSW9WLIDFC9PP318YY7N81JEE8KBXG2JWNSXBBBKSEL7ZV7FBU8VAGNPCP8KG1PM5CKDYSVBDIDA7T2C8XH3VT30PH1BHIBS7F884Q0X22531UDULHUNV50L4CKIDJYR6QDYJOWRFW1ONDMPLKYNR1O7R3EUF3PNSEB1Z' where id=55; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='DGJZ5OJ8R4AZGL4857EH3S8E0NPHE3SW4XXNWRAD7ITLBIK6YMETRJQI5QFEFA6R471R7G4360YFKJJUKFXTDFXXRTZHJ8721BMSDADG5FJE5MMWO9HCOGJVQGRLENPH3H66OHNMGT5URDWZNSOKFHJT5KE7PLKN6CLWSPL6QZLZH7703V9RPJMW5RRZ3UY9JCSJQW8M79S3KKFHPV39IY2L33XUTGZA9D6T39O35EC50EPK3HIWSTJ2ZMI4OZN7D' where id=56; -update noar ti set v0='DGJZ5OJ8R4AZGL4857EH3S8E0NPHE3SW4XXNWRAD7ITLBIK6YMETRJQI5QFEFA6R471R7G4360YFKJJUKFXTDFXXRTZHJ8721BMSDADG5FJE5MMWO9HCOGJVQGRLENPH3H66OHNMGT5URDWZNSOKFHJT5KE7PLKN6CLWSPL6QZLZH7703V9RPJMW5RRZ3UY9JCSJQW8M79S3KKFHPV39IY2L33XUTGZA9D6T39O35EC50EPK3HIWSTJ2ZMI4OZN7D' where id=56; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='YTIQEU3A4OSHIHSIGPYTDDHH92K330QTDKP77E4M7NL4SIU6KTUINUFLDMP060CIG9O7BR8JBT4EK4NZV15J9AYJK4H1WTBH93MSFMWXZ7XZEZCY0PF6TOSOIW3FTA966GCCSO45D0FCXV1S12LSYS50F5QE8QZB2UW9MNBVU567BTFXAPRKXRKN4VNFFRV7BYY2TRTON7GJW6GULABHXCQEZMD6HVD74HP9JXR3QIHHQZ6CT5F8S6A28UXWYNMCW' where id=56; -update noar ti set v1='YTIQEU3A4OSHIHSIGPYTDDHH92K330QTDKP77E4M7NL4SIU6KTUINUFLDMP060CIG9O7BR8JBT4EK4NZV15J9AYJK4H1WTBH93MSFMWXZ7XZEZCY0PF6TOSOIW3FTA966GCCSO45D0FCXV1S12LSYS50F5QE8QZB2UW9MNBVU567BTFXAPRKXRKN4VNFFRV7BYY2TRTON7GJW6GULABHXCQEZMD6HVD74HP9JXR3QIHHQZ6CT5F8S6A28UXWYNMCW' where id=56; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='M6BC8QTDAGG5OA7OJ2SYLFRKD21LTTSVT80V7U0ELLZM2K4X3ZE57LRFCQIQXWP5HIN8LYKG2665JWNHRTGLCHPW8ROL3NIR1KGQ0DUZ4EDDHRENJHIOHIS5OKWIZ2WIOAEOOB73EFVCLQBHECG7UYMIAN1MWE25AX5AI05M00YNXI6WW3Z19AO59SVIKJ6SLSARG1OXAP4HKK11JJOBI8WLZSGD9YHQN9L8LVEVI30HV9KHV1HSUUJ8VY49M3LXI' where id=56; -update noar ti set v2='M6BC8QTDAGG5OA7OJ2SYLFRKD21LTTSVT80V7U0ELLZM2K4X3ZE57LRFCQIQXWP5HIN8LYKG2665JWNHRTGLCHPW8ROL3NIR1KGQ0DUZ4EDDHRENJHIOHIS5OKWIZ2WIOAEOOB73EFVCLQBHECG7UYMIAN1MWE25AX5AI05M00YNXI6WW3Z19AO59SVIKJ6SLSARG1OXAP4HKK11JJOBI8WLZSGD9YHQN9L8LVEVI30HV9KHV1HSUUJ8VY49M3LXI' where id=56; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='6MD7CL2Y95KE3EWVVTI1LF3VUTYERI7GYMABRNVLRJ5N37SWEVTXPTLQU4A3B7MR7KXC5DRHHO1LAWQYPD7RZA04GCZ7C9YOPODJMQ029IV4QZ31QV90UADVTTNC4OCAHET05IMFZ6TH3RE7C1ZBL2O54EHFAN0LCGUZPMWWGQUU2Z4LG2A0ERHT32OIHPMJ1TR5UNSTSU7QZW9L9MERFPWHH4CHQV8K9XWPGZOH6AZ8E7JL6AVECMHLRBMEJ5LLV' where id=56; -update noar ti set v3='6MD7CL2Y95KE3EWVVTI1LF3VUTYERI7GYMABRNVLRJ5N37SWEVTXPTLQU4A3B7MR7KXC5DRHHO1LAWQYPD7RZA04GCZ7C9YOPODJMQ029IV4QZ31QV90UADVTTNC4OCAHET05IMFZ6TH3RE7C1ZBL2O54EHFAN0LCGUZPMWWGQUU2Z4LG2A0ERHT32OIHPMJ1TR5UNSTSU7QZW9L9MERFPWHH4CHQV8K9XWPGZOH6AZ8E7JL6AVECMHLRBMEJ5LLV' where id=56; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='XY71VYW9EMPQ59SQ7MKUIPNBVBKJ6EM6DQF7GRJTM4SNZHUFK6VRXP24JXYZZ9FP6PCQIAQBHYN6YGD4LQ2OLYN23BJVK8LL8FBS64S6G3YPAZYBNJ7SL495FMZMPO2YNPLY5CXT8P4ZYT9TORHU8N0UWL2LAOW938C81JQLDSZR3FC5NBIOZ5T6AYJHQU1ZEIGYNW7NB1SF245QRL5PR2F9QB9B1YR47LATACOK41JZ2YEJAYJRO3HUN0G3X6VO8' where id=57; -update noar ti set v0='XY71VYW9EMPQ59SQ7MKUIPNBVBKJ6EM6DQF7GRJTM4SNZHUFK6VRXP24JXYZZ9FP6PCQIAQBHYN6YGD4LQ2OLYN23BJVK8LL8FBS64S6G3YPAZYBNJ7SL495FMZMPO2YNPLY5CXT8P4ZYT9TORHU8N0UWL2LAOW938C81JQLDSZR3FC5NBIOZ5T6AYJHQU1ZEIGYNW7NB1SF245QRL5PR2F9QB9B1YR47LATACOK41JZ2YEJAYJRO3HUN0G3X6VO8' where id=57; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='8N0TLAXW3AMYN44ZNRZCK9RFWSBQ4BHA2KFJ9AFUCPGRVUYQ79CGJRUIFS6E94EFXN0WABPM7OUI3D2033SM299S6XTMREPQF92XYTL7THW3IT735Z52PQRT5U0MTPITBY4Q1YZM0GWRUIODEFCTKSDNA554FZJZSKY37MSGJ9AOM0YZEY5N5BYFMS2TG7XJSJZ01E5Q46BTVQSPRJRCD9FUCNXK8GRY12H98ZTSP3EZ3R8ADLL2MS7ZHTSCS99YH' where id=57; -update noar ti set v1='8N0TLAXW3AMYN44ZNRZCK9RFWSBQ4BHA2KFJ9AFUCPGRVUYQ79CGJRUIFS6E94EFXN0WABPM7OUI3D2033SM299S6XTMREPQF92XYTL7THW3IT735Z52PQRT5U0MTPITBY4Q1YZM0GWRUIODEFCTKSDNA554FZJZSKY37MSGJ9AOM0YZEY5N5BYFMS2TG7XJSJZ01E5Q46BTVQSPRJRCD9FUCNXK8GRY12H98ZTSP3EZ3R8ADLL2MS7ZHTSCS99YH' where id=57; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='181IME83VOFM1CJ5NU5YRDV993DOHGVCBFDSW9JCQ7G7ORXW58239A10UYZV2S4VUKYNFSX159SXDOYX20HRL8CYEFC0M6V0OI07S1P3HIZ6OWDI3TFL5BXGPVBWKWAQQPZRPNKNHLMKEPFEYTP9NOP0KBGT3C5R0Y8YT6JH909BSFAM5HTR0PL7XZV5WLD0O58HELPH3Q1C95ILUGXYN3C4L8GJCP74U7EAPC99K6R7GPI4B6JW5RDI1WWUUF2J2' where id=57; -update noar ti set v2='181IME83VOFM1CJ5NU5YRDV993DOHGVCBFDSW9JCQ7G7ORXW58239A10UYZV2S4VUKYNFSX159SXDOYX20HRL8CYEFC0M6V0OI07S1P3HIZ6OWDI3TFL5BXGPVBWKWAQQPZRPNKNHLMKEPFEYTP9NOP0KBGT3C5R0Y8YT6JH909BSFAM5HTR0PL7XZV5WLD0O58HELPH3Q1C95ILUGXYN3C4L8GJCP74U7EAPC99K6R7GPI4B6JW5RDI1WWUUF2J2' where id=57; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='MAKEOJBJQT3M3QEOZFP2DHZMLBCOELYQCHWNV2TIRRBXWV7JNFMXG1D18OMJVLLNVD72YWNX20OOKWO7MDR1V5ZBW94IMUHZAQCJGY1YX4J8STOMZBBNCKGHA8DBEIGEH9OLGD5QNYRGVLEKTRZEML3P2Q99OT7BURN4G8EIRH68X1WW242ETZDDDU8XDMXQU87Z1AVKZSMF97FLDGLNY8HGCHT1X8PZ1L7UUK3OJG1NH6EWCG50SILBQA3775NUK' where id=57; -update noar ti set v3='MAKEOJBJQT3M3QEOZFP2DHZMLBCOELYQCHWNV2TIRRBXWV7JNFMXG1D18OMJVLLNVD72YWNX20OOKWO7MDR1V5ZBW94IMUHZAQCJGY1YX4J8STOMZBBNCKGHA8DBEIGEH9OLGD5QNYRGVLEKTRZEML3P2Q99OT7BURN4G8EIRH68X1WW242ETZDDDU8XDMXQU87Z1AVKZSMF97FLDGLNY8HGCHT1X8PZ1L7UUK3OJG1NH6EWCG50SILBQA3775NUK' where id=57; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='XNTCK6K8AXJTL5EURR61UE5KL4QI59LWZWL8W0XHOMUS7WY9D712T5QVUN24U5YG4XSSP1M1EPD9T36SGVOJDXE2XE8AKDZE2OM8DEGVT322JE6TBXA3CXAEGTBKI8WH2T29F08IOIW9U0JXKMOZOJD4LQH2R1RBHI9GYU2D2O5JZYETRJSFZILCXY2GSOO87LSGMO4COJJDJ3IMO5HPUC4TY4DPLFU6JNI2JDL7ZMKE78U1ZRFHGZP8C05X825HG' where id=58; -update noar ti set v0='XNTCK6K8AXJTL5EURR61UE5KL4QI59LWZWL8W0XHOMUS7WY9D712T5QVUN24U5YG4XSSP1M1EPD9T36SGVOJDXE2XE8AKDZE2OM8DEGVT322JE6TBXA3CXAEGTBKI8WH2T29F08IOIW9U0JXKMOZOJD4LQH2R1RBHI9GYU2D2O5JZYETRJSFZILCXY2GSOO87LSGMO4COJJDJ3IMO5HPUC4TY4DPLFU6JNI2JDL7ZMKE78U1ZRFHGZP8C05X825HG' where id=58; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='NITS3G6YX1LZILX51R77TPV16QLNHE0JE25FU308BD37CZ1R0UAVX8JVHH2IJA60HOEI2IUE7SCDEXHRXGYWD524FAHFTT7MEESDC35AKU47Z0JP804UFHR0V36WC23TT4NAI0S66ZOT1C5JCYMEF8CV8FSFWYPFJORAHMVA9BDIQT5S5P2MHURY44OHPQTTCCPGJ0YF5V2THSMP7ULLP2LXM3HC8S26ZKHOVFYJ3I9DUPIX7NTG4Q956GL7X7JSU' where id=58; -update noar ti set v1='NITS3G6YX1LZILX51R77TPV16QLNHE0JE25FU308BD37CZ1R0UAVX8JVHH2IJA60HOEI2IUE7SCDEXHRXGYWD524FAHFTT7MEESDC35AKU47Z0JP804UFHR0V36WC23TT4NAI0S66ZOT1C5JCYMEF8CV8FSFWYPFJORAHMVA9BDIQT5S5P2MHURY44OHPQTTCCPGJ0YF5V2THSMP7ULLP2LXM3HC8S26ZKHOVFYJ3I9DUPIX7NTG4Q956GL7X7JSU' where id=58; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='S0H4JFN1MX70SMLWUO4L939QUPPY9RV1GP0A446JOFH838XGFLOXU8T5EVXZQNS6ANFGKYOAM0TWK224MIJC0IHEKMSA4JE202TJ3Q76VG9E3UPRP7ZIO2FXXH5XBUAXYOJ82Y013CBX2K7S9FEV72ZHL1TZTM55O4ZCJU6P1ZR8E1WH59ATFPWAX7TT4NNSZ5F2BDFJH8Z1R7EUBPDO1DBYBOTWE8ZXTKAXUOHPRX8U7P598JXY5A2L86AHJG24S' where id=58; -update noar ti set v2='S0H4JFN1MX70SMLWUO4L939QUPPY9RV1GP0A446JOFH838XGFLOXU8T5EVXZQNS6ANFGKYOAM0TWK224MIJC0IHEKMSA4JE202TJ3Q76VG9E3UPRP7ZIO2FXXH5XBUAXYOJ82Y013CBX2K7S9FEV72ZHL1TZTM55O4ZCJU6P1ZR8E1WH59ATFPWAX7TT4NNSZ5F2BDFJH8Z1R7EUBPDO1DBYBOTWE8ZXTKAXUOHPRX8U7P598JXY5A2L86AHJG24S' where id=58; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='8WV6OJQZC90L4VLFY10MKFJ0JLW94M2U6FB2X95XNEKDFEDOWOR3WIXJ91PBY3JMAG84X3EDN9LEGK8G3TPOO5UTWRFJFXDN84804OMBSI36OKFEXAK5TCA8IVUNAEMNGOJM84XRU6AU88VMYVLXKC91P5N4L900PX9D6BCYZ4HIJS2GSTYFQN8F9ECT1JXYTE7FDPV2Y3D876ALNON62ZI3BB0P7I4QXIYM2PV8AUVWPG558AQRN3BEW7KDGY4KA' where id=58; -update noar ti set v3='8WV6OJQZC90L4VLFY10MKFJ0JLW94M2U6FB2X95XNEKDFEDOWOR3WIXJ91PBY3JMAG84X3EDN9LEGK8G3TPOO5UTWRFJFXDN84804OMBSI36OKFEXAK5TCA8IVUNAEMNGOJM84XRU6AU88VMYVLXKC91P5N4L900PX9D6BCYZ4HIJS2GSTYFQN8F9ECT1JXYTE7FDPV2Y3D876ALNON62ZI3BB0P7I4QXIYM2PV8AUVWPG558AQRN3BEW7KDGY4KA' where id=58; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='9G6I943PKYH7YHR8TW4RND8B97HJ856LCO5NU7KNH7Z2U6U7BTHO5DPFVNXNT9YB4DJQ2T5MOEBM7KUH039MNCN9IV8KDJ8VEJGK6LGN7VPZSB8YQFM5DHD6KGH48URDT7QDRQD3UBJ5ANNBN39NWT99OO0GDMB4PRA1KA4BYIPGHLZK27OCWFSIML3E0ZAE7NV0TID45GZYFZ6X4MFAVTB8TZ9720K9FD0IFD1FTM4L98N8154LTKW9OBHFZZ9DE' where id=59; -update noar ti set v0='9G6I943PKYH7YHR8TW4RND8B97HJ856LCO5NU7KNH7Z2U6U7BTHO5DPFVNXNT9YB4DJQ2T5MOEBM7KUH039MNCN9IV8KDJ8VEJGK6LGN7VPZSB8YQFM5DHD6KGH48URDT7QDRQD3UBJ5ANNBN39NWT99OO0GDMB4PRA1KA4BYIPGHLZK27OCWFSIML3E0ZAE7NV0TID45GZYFZ6X4MFAVTB8TZ9720K9FD0IFD1FTM4L98N8154LTKW9OBHFZZ9DE' where id=59; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='JFB48J7JXQWZHD2Q6X72OUDC83KI1OT0JUKOF3S0MMZIOV8BU9YMIA22R8WVD69ENZWOB562I69B9LN23EC9RAVBU8ITOMK82XFTX29NACAIXEIH7ANJQX9169M63N6Z5LDBCSQL5Y0W70D2HFALBKGI5XGW9X67YDK5COC0SMK3CJY8YCMP45PDF0GBDV1UR05QSG10DTNTQKLWWPD60SOIUFKAC1VKEBS0ZTFJ7FUPD6Z3COZWENX7ETPYP7P2Z' where id=59; -update noar ti set v1='JFB48J7JXQWZHD2Q6X72OUDC83KI1OT0JUKOF3S0MMZIOV8BU9YMIA22R8WVD69ENZWOB562I69B9LN23EC9RAVBU8ITOMK82XFTX29NACAIXEIH7ANJQX9169M63N6Z5LDBCSQL5Y0W70D2HFALBKGI5XGW9X67YDK5COC0SMK3CJY8YCMP45PDF0GBDV1UR05QSG10DTNTQKLWWPD60SOIUFKAC1VKEBS0ZTFJ7FUPD6Z3COZWENX7ETPYP7P2Z' where id=59; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='6C6KGZNIFUVCEFDBPIPJN6RYHIOYZF79HOT2UBVP65BIQVZFDNPZTI8D8YW5BFJAWTPNFGWUY7LK7EPQHRBVGJBLWJXRK85333TDB3NT1X32IQHBIORHU3SCHXRNUKZ6Y474F7ZKD2YTJR5ZTUR5AHJ82LYEXKGV0B6P5QFD7SBNJVQFNZGL48F7UHLSY4HVQ0NTSQJDGW588624MIIDXKO485ID9ZM0JJCMPB1UZVIS2LLHZC06RHQ9ZKXEFACHZ' where id=59; -update noar ti set v2='6C6KGZNIFUVCEFDBPIPJN6RYHIOYZF79HOT2UBVP65BIQVZFDNPZTI8D8YW5BFJAWTPNFGWUY7LK7EPQHRBVGJBLWJXRK85333TDB3NT1X32IQHBIORHU3SCHXRNUKZ6Y474F7ZKD2YTJR5ZTUR5AHJ82LYEXKGV0B6P5QFD7SBNJVQFNZGL48F7UHLSY4HVQ0NTSQJDGW588624MIIDXKO485ID9ZM0JJCMPB1UZVIS2LLHZC06RHQ9ZKXEFACHZ' where id=59; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='58W1GV25XYESW7KJ89OO4NEWR5L7ZFVKR8D4GTDW3M07UOA1FO9ZQBD6EN0WBO96KR1745XDYI4YP73DOMCA00QVV085QLBAYM08XBAULF0FJRX65ZTH5VQ7USAFX28WGDSL71W57LQGFFIFSQPZ4CS4JM1A64Z87IRYCRABUKSVRE42J98EDN8QADYINB2H2ZFZ1TVPMA5716GFT4HRQMUME5YSZPDX7CU80D1ZDAWI0WHBJMCPMMJ2SR52TP9SG' where id=59; -update noar ti set v3='58W1GV25XYESW7KJ89OO4NEWR5L7ZFVKR8D4GTDW3M07UOA1FO9ZQBD6EN0WBO96KR1745XDYI4YP73DOMCA00QVV085QLBAYM08XBAULF0FJRX65ZTH5VQ7USAFX28WGDSL71W57LQGFFIFSQPZ4CS4JM1A64Z87IRYCRABUKSVRE42J98EDN8QADYINB2H2ZFZ1TVPMA5716GFT4HRQMUME5YSZPDX7CU80D1ZDAWI0WHBJMCPMMJ2SR52TP9SG' where id=59; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='I73EEGL2XCVDFM7A1MMQA51II6O4Z5CURTJLOQUT8WU5MUQIHB9S3XBE2KYV6FIZSJBAWKORN9R8C18FJNGKRUEOZP2CAK5Z7ARBHDZP32OQ1QXKO3I4CVKY0P7L806TSOAO5K8J5TKQUKXKTGXA1SXEVVKD3RIX27U5BGXKD3G8OAXIJP0MYPLZODODEZA0S9P135GCMXK1OXIEAVQY89SKZJRP7497GNUMYBLA822NZV866G5RKQ2TW22RG8B9E' where id=60; -update noar ti set v0='I73EEGL2XCVDFM7A1MMQA51II6O4Z5CURTJLOQUT8WU5MUQIHB9S3XBE2KYV6FIZSJBAWKORN9R8C18FJNGKRUEOZP2CAK5Z7ARBHDZP32OQ1QXKO3I4CVKY0P7L806TSOAO5K8J5TKQUKXKTGXA1SXEVVKD3RIX27U5BGXKD3G8OAXIJP0MYPLZODODEZA0S9P135GCMXK1OXIEAVQY89SKZJRP7497GNUMYBLA822NZV866G5RKQ2TW22RG8B9E' where id=60; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='H7DSCRP710JNTL15CAT1LXSWBOP9D09FMYNBZXIO50DPXHVO8BY7AOZV0GYLM4Y4YI0BGL2NZ9NWRIXR23PSZJ2RXTLN51F8VN26CTSVN80Y2955254SZB85WZWHFYL8AAG6OSH45J4LQZL85GX026L44EYPFCK1RM2MI3PR7BTAJHUQRRFT4CR7YVAQDZTUV6RDSN45PVK4CTHCF6EJYFTQPZ4VEOXM1ORU0LYWEUTL9N2K9EAXO6AJG81DVVYQA' where id=60; -update noar ti set v1='H7DSCRP710JNTL15CAT1LXSWBOP9D09FMYNBZXIO50DPXHVO8BY7AOZV0GYLM4Y4YI0BGL2NZ9NWRIXR23PSZJ2RXTLN51F8VN26CTSVN80Y2955254SZB85WZWHFYL8AAG6OSH45J4LQZL85GX026L44EYPFCK1RM2MI3PR7BTAJHUQRRFT4CR7YVAQDZTUV6RDSN45PVK4CTHCF6EJYFTQPZ4VEOXM1ORU0LYWEUTL9N2K9EAXO6AJG81DVVYQA' where id=60; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='N3HL95RWNSMG5ULYW73MZAM9IJWAZTBW9V2Q77KUR45USYWZCFC135QQ808B9LH4RS7CN7JTPAE7997W8B5MFLGGZA94SOOE5STFWB423VIQU2JPCGKANAY9548RLVXFK614WN1U00TQMMOO3HJWDDPU6MQZ6YF9QHSPYR1KFM6E67DY39E3FF6D4Z4J3NXTZD7P3M4YRHYVW51UXZJJ0NXKK49L7AEK8SE3R0W6KH3IHNCLRU410JFRI6Z514U56' where id=60; -update noar ti set v2='N3HL95RWNSMG5ULYW73MZAM9IJWAZTBW9V2Q77KUR45USYWZCFC135QQ808B9LH4RS7CN7JTPAE7997W8B5MFLGGZA94SOOE5STFWB423VIQU2JPCGKANAY9548RLVXFK614WN1U00TQMMOO3HJWDDPU6MQZ6YF9QHSPYR1KFM6E67DY39E3FF6D4Z4J3NXTZD7P3M4YRHYVW51UXZJJ0NXKK49L7AEK8SE3R0W6KH3IHNCLRU410JFRI6Z514U56' where id=60; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='E5K3CYRB81ZAUEHY3IKPV60QVDE8H66DXJ6X2CCFQLJWDIYJ88W3IHJ0N59OYZNLCGZBDWXWVINI5P3GNZWV9TDCRA5H6SNTNNO1FSST8XB1C3FTOXJ8DNUS8VGWZ6VIV3XG48LWP7TAFE0WNRG6GBV8Z5UNGSA0RUVG4W1YV79AT1J6SZB0UFFRECY88HJD8Z0P68GSA82BBTKXFQMFKV095A42KKBE3BTUGQBFU654Z8H4X1W328JIHYKSNJ5Z7' where id=60; -update noar ti set v3='E5K3CYRB81ZAUEHY3IKPV60QVDE8H66DXJ6X2CCFQLJWDIYJ88W3IHJ0N59OYZNLCGZBDWXWVINI5P3GNZWV9TDCRA5H6SNTNNO1FSST8XB1C3FTOXJ8DNUS8VGWZ6VIV3XG48LWP7TAFE0WNRG6GBV8Z5UNGSA0RUVG4W1YV79AT1J6SZB0UFFRECY88HJD8Z0P68GSA82BBTKXFQMFKV095A42KKBE3BTUGQBFU654Z8H4X1W328JIHYKSNJ5Z7' where id=60; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='BC23ZSPXJFKOKVCR20RS9DYV100NC2SQ5PWICSU1N9CLH1X8FGLI43SP74I97O1I7P6D8Y09PWU3FFAJ6WAWKV9DDDSIT6JUL85R7JAX44WF307AMNP0WAKCRKE5Z8XTMNFJ5PQW2OR9CWMOYLS2ZYLSO7CLMI5XZC9KCAB21PHHY2IF3QJDGDFWYXV9MHYHHIP5QJOP41AZT4L1L3JIKBOTBSPGCIWBP8651VXJPSZOJNAT1PIM8EPRXWGE6LD3Z' where id=61; -update noar ti set v0='BC23ZSPXJFKOKVCR20RS9DYV100NC2SQ5PWICSU1N9CLH1X8FGLI43SP74I97O1I7P6D8Y09PWU3FFAJ6WAWKV9DDDSIT6JUL85R7JAX44WF307AMNP0WAKCRKE5Z8XTMNFJ5PQW2OR9CWMOYLS2ZYLSO7CLMI5XZC9KCAB21PHHY2IF3QJDGDFWYXV9MHYHHIP5QJOP41AZT4L1L3JIKBOTBSPGCIWBP8651VXJPSZOJNAT1PIM8EPRXWGE6LD3Z' where id=61; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='70K25FRSSEQYO12G0KVXDEK7D1JYFVO6C4STN7GGMZTTQD1P067ZYLYZHZEZ8JTJQE2AUNIN27OVAX1S4BU7USZ21FXN2YJAQO8AL417DELPSJF48JS6MIH4WO936IWBF5AJDATB25GO7LWCMRO26TTV1VRRY5LVBVL0JUE8H07GV9KRLDZWGC1ZNJH7C65A262WZPUV6JZVEQH1G1U9W0Y164DCX9WD4UGB7DSQWARN8EBJCKMMCF7A0G1QV8ITL' where id=61; -update noar ti set v1='70K25FRSSEQYO12G0KVXDEK7D1JYFVO6C4STN7GGMZTTQD1P067ZYLYZHZEZ8JTJQE2AUNIN27OVAX1S4BU7USZ21FXN2YJAQO8AL417DELPSJF48JS6MIH4WO936IWBF5AJDATB25GO7LWCMRO26TTV1VRRY5LVBVL0JUE8H07GV9KRLDZWGC1ZNJH7C65A262WZPUV6JZVEQH1G1U9W0Y164DCX9WD4UGB7DSQWARN8EBJCKMMCF7A0G1QV8ITL' where id=61; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='7NF99XEP5HPBEHHYT23I5WZ6U3K87JOY7JNK3K5RE2J1N4RJ52WGPHELFTZ5333SY6BBODGVFH8K66CUDDJHQX25H2ZW36BUE9IF1ALPS5UY762D3KMEZVFHHG720IUOLSDT92UYXE7LUOC054GGFZ2Y7Q320DFM98WGIO162M0O1M7Y998ERE4BZ3S0IOPOG5ZKV1OCFJ3V2TJX3JNSWT54CQBKVQ3XN0OUYXU2V34OXBV2RKVYIVI3D59AR3MX2' where id=61; -update noar ti set v2='7NF99XEP5HPBEHHYT23I5WZ6U3K87JOY7JNK3K5RE2J1N4RJ52WGPHELFTZ5333SY6BBODGVFH8K66CUDDJHQX25H2ZW36BUE9IF1ALPS5UY762D3KMEZVFHHG720IUOLSDT92UYXE7LUOC054GGFZ2Y7Q320DFM98WGIO162M0O1M7Y998ERE4BZ3S0IOPOG5ZKV1OCFJ3V2TJX3JNSWT54CQBKVQ3XN0OUYXU2V34OXBV2RKVYIVI3D59AR3MX2' where id=61; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='A7T0NQ8ASJMHXYNYEY42ICFARK4Q410H42IKEI4DYXW0OQHL6BDAZM03HBYDZI40TE350CENWYK1L61OAOE9FE9IZYLB7MB5TFXODXN67HXUGJ941G4PE2J7MAL3UNGG1DSBF5UAX5WZIBIHXP7JP710PGG2VBVMVRHY28N10SKQOSUDGL9MXX5G7BNOHXJXAA4L106CRENDM3U4V97UBVBJMK3VCXG02OTA9MJ51KKB2N5RZWYO3IPBMN4MIDVF5' where id=61; -update noar ti set v3='A7T0NQ8ASJMHXYNYEY42ICFARK4Q410H42IKEI4DYXW0OQHL6BDAZM03HBYDZI40TE350CENWYK1L61OAOE9FE9IZYLB7MB5TFXODXN67HXUGJ941G4PE2J7MAL3UNGG1DSBF5UAX5WZIBIHXP7JP710PGG2VBVMVRHY28N10SKQOSUDGL9MXX5G7BNOHXJXAA4L106CRENDM3U4V97UBVBJMK3VCXG02OTA9MJ51KKB2N5RZWYO3IPBMN4MIDVF5' where id=61; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='5E4N4TIDSTDNDHHKRACEGMD6B7F64VPYY6J0Y4SJSF4BX26CWN4BLA4QAJH0ED2MMAXWOXX74E5TY7D3STMQ0A7SWZEUMPLGNTE92CZWORV3HSNYBFNBMX5B4AQMJZWAYNN4Z2X0YX36ZN1Q3S8PMMX4I63MXQNW7OQ5NVR7KKO0XIZI5N4KOATMWN8ZZFQ1XEQULEFWVP0IGROQ1UTN1PB6A2QDD3J8F3FK4NS7AP061XFSOOPH6Q69BYH28NR1C' where id=62; -update noar ti set v0='5E4N4TIDSTDNDHHKRACEGMD6B7F64VPYY6J0Y4SJSF4BX26CWN4BLA4QAJH0ED2MMAXWOXX74E5TY7D3STMQ0A7SWZEUMPLGNTE92CZWORV3HSNYBFNBMX5B4AQMJZWAYNN4Z2X0YX36ZN1Q3S8PMMX4I63MXQNW7OQ5NVR7KKO0XIZI5N4KOATMWN8ZZFQ1XEQULEFWVP0IGROQ1UTN1PB6A2QDD3J8F3FK4NS7AP061XFSOOPH6Q69BYH28NR1C' where id=62; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='LLCAJ6M5UL1JWPB3Z8QN63YSPHN25ZLAEHB7UT6V9Y49O6439JCOFK38IR99104NH4MVL3L16U7PE5X0NNRJQE334PKHCG6FC8YI29HRFCAX04YBJJPCMNKHGZJ00G4LJ6I1MRNXM2FK561GH31RKFYL88XJ3133ET839CTKPCHW5OSLZA50MZBWI8GN70F5NH27XN2Q2BU7GC05ZRZ1LSQ60OT1GTZNAJE48WP61ZBMFY1YJC5D5YGI3RE66K54F' where id=62; -update noar ti set v1='LLCAJ6M5UL1JWPB3Z8QN63YSPHN25ZLAEHB7UT6V9Y49O6439JCOFK38IR99104NH4MVL3L16U7PE5X0NNRJQE334PKHCG6FC8YI29HRFCAX04YBJJPCMNKHGZJ00G4LJ6I1MRNXM2FK561GH31RKFYL88XJ3133ET839CTKPCHW5OSLZA50MZBWI8GN70F5NH27XN2Q2BU7GC05ZRZ1LSQ60OT1GTZNAJE48WP61ZBMFY1YJC5D5YGI3RE66K54F' where id=62; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='DXZ8JCRWV7Q0DSTX0TLW5XX0CZSZN5FFY6IWU7FCDADX86Q9JFVG4LNV0FUQQ6NFJJ4WI0TT1QK3VMA5O1VMX4Y3AWK6DJJTMU841BEP79RSHJIXR3A40KO7B45OX9Z1EHD75DWB7MYTI8QYRUJWATPBVD5D37KABKFFOIZ4AA7FP7CRM4FEWVIIQOM5KFZIQ4IYMLCZ41KASQVM2N0D51AQVJC2QKHRJ1462B2WYO7X4MPIBTKMNL5E2QJ6TEXRY' where id=62; -update noar ti set v2='DXZ8JCRWV7Q0DSTX0TLW5XX0CZSZN5FFY6IWU7FCDADX86Q9JFVG4LNV0FUQQ6NFJJ4WI0TT1QK3VMA5O1VMX4Y3AWK6DJJTMU841BEP79RSHJIXR3A40KO7B45OX9Z1EHD75DWB7MYTI8QYRUJWATPBVD5D37KABKFFOIZ4AA7FP7CRM4FEWVIIQOM5KFZIQ4IYMLCZ41KASQVM2N0D51AQVJC2QKHRJ1462B2WYO7X4MPIBTKMNL5E2QJ6TEXRY' where id=62; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='EUCJBIRS74PFT45AO86R084LRGIZ89P5S8TGU79I5A2X05QP83SGBNECXOQR22UEJ0BDJ9OSO5GICJDX9GSE8C1F2AGV0J13NIPQE8R5X3BF241W1GB7YHXFADQ3F1OLOOYPHZ16BMQKRVM94YOXS4127AWB2OZKOS8V8KU40PO8VUOMJVN0KG5ITQPP7W39HE80AWW8FE8LJTCNYBEL9OW6RFL8D8XGUVMN8GS6YQPDUWWQPCOY0DH9DZZX1QALS' where id=62; -update noar ti set v3='EUCJBIRS74PFT45AO86R084LRGIZ89P5S8TGU79I5A2X05QP83SGBNECXOQR22UEJ0BDJ9OSO5GICJDX9GSE8C1F2AGV0J13NIPQE8R5X3BF241W1GB7YHXFADQ3F1OLOOYPHZ16BMQKRVM94YOXS4127AWB2OZKOS8V8KU40PO8VUOMJVN0KG5ITQPP7W39HE80AWW8FE8LJTCNYBEL9OW6RFL8D8XGUVMN8GS6YQPDUWWQPCOY0DH9DZZX1QALS' where id=62; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='39CFH1HQ8UOXCI9E2R28NE4YAHBBVFY9E36BP0LS587UL44S2XTUFIVBWFPODZ5A6PO5LWXVFF1MSPK1U5XT813NZUAZJMJLK7ZD2YL39NTPG2NXZB134HGFCMTO50BCUQXWCZK5WXH03U7SO5T9Q8O2CV5H6EK7FVNBGIKTGUOWXM0TP3F566THK22OA7IQJUD19TV5OKLVY8XUONQGAE10YIDQCNTD5GOZ9IRZ3HING2MQMYPN5R8UB1GPTA6JA' where id=63; -update noar ti set v0='39CFH1HQ8UOXCI9E2R28NE4YAHBBVFY9E36BP0LS587UL44S2XTUFIVBWFPODZ5A6PO5LWXVFF1MSPK1U5XT813NZUAZJMJLK7ZD2YL39NTPG2NXZB134HGFCMTO50BCUQXWCZK5WXH03U7SO5T9Q8O2CV5H6EK7FVNBGIKTGUOWXM0TP3F566THK22OA7IQJUD19TV5OKLVY8XUONQGAE10YIDQCNTD5GOZ9IRZ3HING2MQMYPN5R8UB1GPTA6JA' where id=63; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='RS03SWW2C7K6A80ZS1JNZKYAXCQ6IG6NDR4VX30KJ16P9COD63BHO02C4A7LONEKR7SPJRWQY8BZD4IOUBNDG8UFUI4K5B0P4OOZTO4O6U6ETGCKMZME6P1ILTQKL4LCHWJ4B8FLMIOZR42DXPST9IZKM6CI1WAWK6VW7XYVNDC61Q42YS1A5KX9K7JDEP6GADCOU8ET65KXWZI5GMX7POYJU2YG6VN8LYIMUPNH5N5LN60KO38X14RLKA8YJW5OI' where id=63; -update noar ti set v1='RS03SWW2C7K6A80ZS1JNZKYAXCQ6IG6NDR4VX30KJ16P9COD63BHO02C4A7LONEKR7SPJRWQY8BZD4IOUBNDG8UFUI4K5B0P4OOZTO4O6U6ETGCKMZME6P1ILTQKL4LCHWJ4B8FLMIOZR42DXPST9IZKM6CI1WAWK6VW7XYVNDC61Q42YS1A5KX9K7JDEP6GADCOU8ET65KXWZI5GMX7POYJU2YG6VN8LYIMUPNH5N5LN60KO38X14RLKA8YJW5OI' where id=63; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='H5RAPPDQU8A0YUH4TRLD3DUAP3N4IGFFROZAO1G9V16KWA40SO3NMMAGCQHQ75XADXZPHNJA4X80AW1KR3PD479VLNIIQ0LME3VZJXBF6835AX8TIGVMCL56UGIAKQBSQ0BIRX0NY3LMCW8S4YOIX16LBLC7G4KFPZB5XJFW4KXFT5GEPEDW5ITFRX5XIGBOW43AFKPSXABQA04ZCY8IGV3UBI268YC9O73KE932AQ7LGW9OWI1PY8P9Q6ILIDJXV' where id=63; -update noar ti set v2='H5RAPPDQU8A0YUH4TRLD3DUAP3N4IGFFROZAO1G9V16KWA40SO3NMMAGCQHQ75XADXZPHNJA4X80AW1KR3PD479VLNIIQ0LME3VZJXBF6835AX8TIGVMCL56UGIAKQBSQ0BIRX0NY3LMCW8S4YOIX16LBLC7G4KFPZB5XJFW4KXFT5GEPEDW5ITFRX5XIGBOW43AFKPSXABQA04ZCY8IGV3UBI268YC9O73KE932AQ7LGW9OWI1PY8P9Q6ILIDJXV' where id=63; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='CJH5OL21PLDDG7AISNRCFBESYECZBA533K1MYP7YUMIYVYPXB3C5RFY6WC5MLB8AFTZO1DYVZSKUZOVAULLNWGORAI52OYKGW1K1UMYPDA3245OWWS6VZTX1L90VSWVOGWQQDH0BJ4G2JMTTH646QUMYOXNWMZF3W3QPP6OFZKKHXJQELSQYATQX7M92C6X2YUEM88MMQCZT6XT3215D7ATDS101PLK9DTZ6SK7OVWL4DGD907960Q3NSDL7QB6TF' where id=63; -update noar ti set v3='CJH5OL21PLDDG7AISNRCFBESYECZBA533K1MYP7YUMIYVYPXB3C5RFY6WC5MLB8AFTZO1DYVZSKUZOVAULLNWGORAI52OYKGW1K1UMYPDA3245OWWS6VZTX1L90VSWVOGWQQDH0BJ4G2JMTTH646QUMYOXNWMZF3W3QPP6OFZKKHXJQELSQYATQX7M92C6X2YUEM88MMQCZT6XT3215D7ATDS101PLK9DTZ6SK7OVWL4DGD907960Q3NSDL7QB6TF' where id=63; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='PCN8MXZ3YHRECE96RKQVEF393NXHCW7SQU82CPCFBB87Q5G1U71SJEOXCDOSQODQY536LZGFU64G9I2EMEBBNPQL7Z28XPCKK0JMMUD7DOJYKK9HKZNX8GMHVZ9EH39DPJEQ3ORMY7886M6WS1O79K6X2YB8EJEY0DVY2JVGUBY1GQEO19OK16SM1YYF1PWE295KCHVI41FND8DJSNXNTWBIXDRLIOYJ1DUQC626T9PCI31IQJ1JUJG6VSOM27JAZ' where id=64; -update noar ti set v0='PCN8MXZ3YHRECE96RKQVEF393NXHCW7SQU82CPCFBB87Q5G1U71SJEOXCDOSQODQY536LZGFU64G9I2EMEBBNPQL7Z28XPCKK0JMMUD7DOJYKK9HKZNX8GMHVZ9EH39DPJEQ3ORMY7886M6WS1O79K6X2YB8EJEY0DVY2JVGUBY1GQEO19OK16SM1YYF1PWE295KCHVI41FND8DJSNXNTWBIXDRLIOYJ1DUQC626T9PCI31IQJ1JUJG6VSOM27JAZ' where id=64; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='YIGIF0ZX8QLO64RFT1JXET0653QPXW7GQ131Z3AU254AJU194UU2TZYU2IIMEWU1IJ7XCG3F0QQ0BALFI5YHY2WNFUOG3RFMR4JTU73N6MX7DTR84VMZ1O6Z0F0N2HCC4AXD5N5PY5VBN3VLO1QEBMG73HFSTBUE5Q9VWPWPT17ZZHM17SR9AQBMR8FS70JYTMD6YVN0HU2O8FHY6EWTKOF1C4YVYOA2VNBFNNBZ1LO3SORHIN04K5FCEO0FSOGT1' where id=64; -update noar ti set v1='YIGIF0ZX8QLO64RFT1JXET0653QPXW7GQ131Z3AU254AJU194UU2TZYU2IIMEWU1IJ7XCG3F0QQ0BALFI5YHY2WNFUOG3RFMR4JTU73N6MX7DTR84VMZ1O6Z0F0N2HCC4AXD5N5PY5VBN3VLO1QEBMG73HFSTBUE5Q9VWPWPT17ZZHM17SR9AQBMR8FS70JYTMD6YVN0HU2O8FHY6EWTKOF1C4YVYOA2VNBFNNBZ1LO3SORHIN04K5FCEO0FSOGT1' where id=64; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='C4P5I84A0U101Q924KIC2P6ZAJCXS0D6C51NQ1U4ONHHDNNRC0JU6QMET0009627MF3WRXH2HSXKK0XEQDOPKJAN1AKJ38IW3S9JXVH51SNUE8WOHO25ZRTEU6HCFOVQL630PO8IQDXLBLQOF0NFDPHUHAMTBDLMH366Z3M78EPRAQ09K2X5RKLN16B96VFL8G59ELR9G6E9WV62L7M6EKH32J8ER5BZYW5B0H8QKY4Z1DNZ3GA2FW5D2QQPDKS7M' where id=64; -update noar ti set v2='C4P5I84A0U101Q924KIC2P6ZAJCXS0D6C51NQ1U4ONHHDNNRC0JU6QMET0009627MF3WRXH2HSXKK0XEQDOPKJAN1AKJ38IW3S9JXVH51SNUE8WOHO25ZRTEU6HCFOVQL630PO8IQDXLBLQOF0NFDPHUHAMTBDLMH366Z3M78EPRAQ09K2X5RKLN16B96VFL8G59ELR9G6E9WV62L7M6EKH32J8ER5BZYW5B0H8QKY4Z1DNZ3GA2FW5D2QQPDKS7M' where id=64; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='UPQLVCOOA8X666WEWY85BHB0VIYFT074071R8J27KWVLSQUWRIBEZKOL7HYRS9VS2F3D2451NLAAK1U7YK6HRKTSUTKLLD2D7J47S4R68EFCPPVB7RNCM4VKXEA6IB3OKGUNP0IG7W77S179Z5VSHN0IBMRUY0MXUX573IGJBCPAQA09PMSXRPLED5DZADQVBZJVRKOTM2AHPJXAPT4KC85TEGWLD4HCEXBLNUEXLCY987P1UM48P5EAPGC4BZMKS' where id=64; -update noar ti set v3='UPQLVCOOA8X666WEWY85BHB0VIYFT074071R8J27KWVLSQUWRIBEZKOL7HYRS9VS2F3D2451NLAAK1U7YK6HRKTSUTKLLD2D7J47S4R68EFCPPVB7RNCM4VKXEA6IB3OKGUNP0IG7W77S179Z5VSHN0IBMRUY0MXUX573IGJBCPAQA09PMSXRPLED5DZADQVBZJVRKOTM2AHPJXAPT4KC85TEGWLD4HCEXBLNUEXLCY987P1UM48P5EAPGC4BZMKS' where id=64; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='KW6ZLQWPP4QUOJC76OCDRZ6G74BEQQUWXMA5P5F80PJ49OXZWCR2JMD81NAE9YS0GKEPDOPEMUQ9M24NLJC57MXO8K3N1K6WQS1UZ47PY1T19LRSV5C66J1AA19RLWW47KPLLJKB73V5E9I0G464LO32YJLALAMA58DTP0C9CW7KXBED84704RVC5L6Z8Y6EISXV0QU2UN8WKEG49UMTZFPU0F6N4GJ68Q1CYX8IPJ1FNTLN6FNG8X54AE0NIALVU' where id=65; -update noar ti set v0='KW6ZLQWPP4QUOJC76OCDRZ6G74BEQQUWXMA5P5F80PJ49OXZWCR2JMD81NAE9YS0GKEPDOPEMUQ9M24NLJC57MXO8K3N1K6WQS1UZ47PY1T19LRSV5C66J1AA19RLWW47KPLLJKB73V5E9I0G464LO32YJLALAMA58DTP0C9CW7KXBED84704RVC5L6Z8Y6EISXV0QU2UN8WKEG49UMTZFPU0F6N4GJ68Q1CYX8IPJ1FNTLN6FNG8X54AE0NIALVU' where id=65; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='KIFMD4EKTW5JGB9J5QV6DCWWRPBFYEPI1995IWQ4H9ZVLYTOC3AF3IG301Z4D92YK1L95JNTVZVD93COUCNJNCRG7FW6N31NKXDJQJ8KCQ09TNO66FR9S7Z1EW9DHGH1ZJVHOH0CBGZ29NHGLOSBUP47TUHSQ9N265S565GTIPO2LT00E2KVBVT1T3DA0OJ6R0MSYDXFH0Z34C8IE9RFZS3T2YTQ2KFNJ296AXLSB4T1WAAM1OQY485YHC1Y9F8GQ' where id=65; -update noar ti set v1='KIFMD4EKTW5JGB9J5QV6DCWWRPBFYEPI1995IWQ4H9ZVLYTOC3AF3IG301Z4D92YK1L95JNTVZVD93COUCNJNCRG7FW6N31NKXDJQJ8KCQ09TNO66FR9S7Z1EW9DHGH1ZJVHOH0CBGZ29NHGLOSBUP47TUHSQ9N265S565GTIPO2LT00E2KVBVT1T3DA0OJ6R0MSYDXFH0Z34C8IE9RFZS3T2YTQ2KFNJ296AXLSB4T1WAAM1OQY485YHC1Y9F8GQ' where id=65; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='LT3SB6XVJCYKWLJ5XFOG20GGTFH417GYX503T08133NNW0EGC38J832FD4TQXAB47ROFYZ1JJW8HQ3WM848CWSQ3S6FSIH0TT4NA8MS1TY20I6LHNYL79ZKUDCTNBPZD9BGKB393BATUQ5NJ6G2JUFJYP9SUJHQ8W3NT659MSCPRB0GI4M1M0BAFATEEOGRZZI31G25B0YG7DMV9AH8TJ5ONBMZFCDU9ZHNSMPK4Q371ZHNEXCFKWYUL7DT5Z8PPZ' where id=65; -update noar ti set v2='LT3SB6XVJCYKWLJ5XFOG20GGTFH417GYX503T08133NNW0EGC38J832FD4TQXAB47ROFYZ1JJW8HQ3WM848CWSQ3S6FSIH0TT4NA8MS1TY20I6LHNYL79ZKUDCTNBPZD9BGKB393BATUQ5NJ6G2JUFJYP9SUJHQ8W3NT659MSCPRB0GI4M1M0BAFATEEOGRZZI31G25B0YG7DMV9AH8TJ5ONBMZFCDU9ZHNSMPK4Q371ZHNEXCFKWYUL7DT5Z8PPZ' where id=65; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='PRRX7TRDNUSBYOUFQA3ND47X6RELCDYQMNU9LA22PV0UC4YXJUTTSY111SMWM4CO923B7CXA79M5ERRTH4GWW8XUZX2CIHYML9U8TEJC3ENOL6HMCZ8JPYNNHPVTCN6G6K21DS6IQGSVVB5BSWB3CFDPX7MKK3DOLPEHSMZQ4DGMP74HXTOR1MTDM1H3J6ZH41SC03SVWOEGPGPAQFRUP04GKMXXRJLGSWHVQ5TEIAPVRYZ7EDEXDEC9C41M4TGT8' where id=65; -update noar ti set v3='PRRX7TRDNUSBYOUFQA3ND47X6RELCDYQMNU9LA22PV0UC4YXJUTTSY111SMWM4CO923B7CXA79M5ERRTH4GWW8XUZX2CIHYML9U8TEJC3ENOL6HMCZ8JPYNNHPVTCN6G6K21DS6IQGSVVB5BSWB3CFDPX7MKK3DOLPEHSMZQ4DGMP74HXTOR1MTDM1H3J6ZH41SC03SVWOEGPGPAQFRUP04GKMXXRJLGSWHVQ5TEIAPVRYZ7EDEXDEC9C41M4TGT8' where id=65; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='SBBNU41MNITGINJGLWXUVNS93PEO7C2ZN2LK37CH327WKYRMC9ZMWA8ET2RQ6HYZFUTIWNMJQ0CQ4ZRKRXHNHIGX0T5J4B8IJ2YXZ5FH87ETK72F1WLZVR16DDXY7MG8L05RMFJVHE3XH9EROG3SSBT8UTU7THOIQF5C571UMEAIMYJ5BFRKAUQI2NGF6ITEVA806YPNYAMTW1DJGUFGF4Y1KLHFBT5HQW4AM6I4WBARCR81JREUURYUNV162OSEW' where id=66; -update noar ti set v0='SBBNU41MNITGINJGLWXUVNS93PEO7C2ZN2LK37CH327WKYRMC9ZMWA8ET2RQ6HYZFUTIWNMJQ0CQ4ZRKRXHNHIGX0T5J4B8IJ2YXZ5FH87ETK72F1WLZVR16DDXY7MG8L05RMFJVHE3XH9EROG3SSBT8UTU7THOIQF5C571UMEAIMYJ5BFRKAUQI2NGF6ITEVA806YPNYAMTW1DJGUFGF4Y1KLHFBT5HQW4AM6I4WBARCR81JREUURYUNV162OSEW' where id=66; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='2HDHQ5PJVYQR7CSPMGK5NB1LXPE382STS6110MRU7VDF1RFKQMAOGQIGTG56M5M3P0MPTY55ZACTS03P142PAH1P500CIZJSQ58MDMVCUR5AIMZC5DS8QNKA0E0QG4K2KVVC9V520O0MQ79EE3UFU9B888D0JUPQ7WEPDY85HEND130AIKGUPZGMSP8T6OYPGLY4PWT44JPSB9RXWRQ0L9TCAM126JRE7WOZ33VDP47XXWK8IHXHCNLEXOVKLWXTQ' where id=66; -update noar ti set v1='2HDHQ5PJVYQR7CSPMGK5NB1LXPE382STS6110MRU7VDF1RFKQMAOGQIGTG56M5M3P0MPTY55ZACTS03P142PAH1P500CIZJSQ58MDMVCUR5AIMZC5DS8QNKA0E0QG4K2KVVC9V520O0MQ79EE3UFU9B888D0JUPQ7WEPDY85HEND130AIKGUPZGMSP8T6OYPGLY4PWT44JPSB9RXWRQ0L9TCAM126JRE7WOZ33VDP47XXWK8IHXHCNLEXOVKLWXTQ' where id=66; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='ZLK6HOEVVS608QLNIT3W987DIV5PF15NKPGJA98DXBR17EE3E0D50WC502PLHH7O16LR8W79PXLXVEME1C1FB22LC0023EQJVY1XT7HQ0QUN056YRJZS2D5LLICO70L554V98YFUJ6XHKV3TYJBIS66Q9UNF1TK5DLN6D3AZ369U78M4UGSD52DT77TMROJUTRESOD4ZE4CPHJ5IO9DC7THQZN8SFXMFXJAJDUXF934ETT76218XZ4FHLPTCNNDJM' where id=66; -update noar ti set v2='ZLK6HOEVVS608QLNIT3W987DIV5PF15NKPGJA98DXBR17EE3E0D50WC502PLHH7O16LR8W79PXLXVEME1C1FB22LC0023EQJVY1XT7HQ0QUN056YRJZS2D5LLICO70L554V98YFUJ6XHKV3TYJBIS66Q9UNF1TK5DLN6D3AZ369U78M4UGSD52DT77TMROJUTRESOD4ZE4CPHJ5IO9DC7THQZN8SFXMFXJAJDUXF934ETT76218XZ4FHLPTCNNDJM' where id=66; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='TMWQ5VG5JM2KD4UH7XUFMO7RLZRJJL2UKH8LOFLX675RLRO0BE87574T7DGM3P0U0Z6UO8M1LWFNEW416P8BS8RSPZ7QQTXWCIU6HMM8LRESOT16KYVW0FKHUS12GYJ41X1P90Z1K43F0WS0TA57DEO10ZO5BANXG8TWDZX33DWNTOXMCVSWYFY93C04PLWIDF8W27S6540ILYE8709CWRPYZUYC15WBMZU9FOBFCAWC08UICWY1LBC7I5FJ2O25N' where id=66; -update noar ti set v3='TMWQ5VG5JM2KD4UH7XUFMO7RLZRJJL2UKH8LOFLX675RLRO0BE87574T7DGM3P0U0Z6UO8M1LWFNEW416P8BS8RSPZ7QQTXWCIU6HMM8LRESOT16KYVW0FKHUS12GYJ41X1P90Z1K43F0WS0TA57DEO10ZO5BANXG8TWDZX33DWNTOXMCVSWYFY93C04PLWIDF8W27S6540ILYE8709CWRPYZUYC15WBMZU9FOBFCAWC08UICWY1LBC7I5FJ2O25N' where id=66; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='YFNAB4FB5Z6MBFPDRFWJYVTDXQUAIANDTZ63TSX7N9VRX3ZJCPAHOJAGDXKISNGT6IEQNYFW6UCRWKI77W5K06G4O8RZ6JV9LW8RSRGH4EQ81ECVQWRJVNQIRRT0GNMED29SVHZRO3J9JBUU9Q265E2DX2J1J3P991D5PKQPYFSKFY5LTBC4JSJKPZG7QHND7IIRXF8S8O5USKFDX6PD9ETYN4E951HPWKOMJL3QO4Y3M8K3UHYAA1X1E5WYND4D4' where id=67; -update noar ti set v0='YFNAB4FB5Z6MBFPDRFWJYVTDXQUAIANDTZ63TSX7N9VRX3ZJCPAHOJAGDXKISNGT6IEQNYFW6UCRWKI77W5K06G4O8RZ6JV9LW8RSRGH4EQ81ECVQWRJVNQIRRT0GNMED29SVHZRO3J9JBUU9Q265E2DX2J1J3P991D5PKQPYFSKFY5LTBC4JSJKPZG7QHND7IIRXF8S8O5USKFDX6PD9ETYN4E951HPWKOMJL3QO4Y3M8K3UHYAA1X1E5WYND4D4' where id=67; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='Y30NOVYA0YZLK4QP13UEGQAF90M2E9MOY76OFTZA8RT67GJDS8HQZBB9G7TGFA8DNIEUW8FQSSZ8A6QFUQSWNPAZ3F1VSXGLFG30UODO64GG1917465NHSWG41EBQNMZGZB25YUOL1RPD2QHXQID4S35MRS7DG5OX2XX0JDF2U4UR37N5B3C0WKA8CC83BBSVYWGIZAV8QWIVW85Z2ZIDU5LIKVSBT4E8HMVPNTJWI289NX628ZA0A81DCMVP2E2G' where id=67; -update noar ti set v1='Y30NOVYA0YZLK4QP13UEGQAF90M2E9MOY76OFTZA8RT67GJDS8HQZBB9G7TGFA8DNIEUW8FQSSZ8A6QFUQSWNPAZ3F1VSXGLFG30UODO64GG1917465NHSWG41EBQNMZGZB25YUOL1RPD2QHXQID4S35MRS7DG5OX2XX0JDF2U4UR37N5B3C0WKA8CC83BBSVYWGIZAV8QWIVW85Z2ZIDU5LIKVSBT4E8HMVPNTJWI289NX628ZA0A81DCMVP2E2G' where id=67; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='KHR0E8RGBJ5V4ID9XJRKPZ0102V9GPECTYAK3U47W005S897NVE7MP0085WZVSE9629KMSZDGQ5KH1BUW2KYVBQFC01JRNI0I478GBLNGRZPX22BFKKZTMPHIC4B5XBTBIU1VU2ZOV1XA7YM9KHNI5QXWIE01Z2CKHK1FN2M6CVWFWA1QIDBRQSZWC7Z37J1EHBOIBC88ITHBLDR8LW0PSSMA1MXTJ6VJNKKMW85EYQ6V3H2TXMA7SS4X8JFRVMMT' where id=67; -update noar ti set v2='KHR0E8RGBJ5V4ID9XJRKPZ0102V9GPECTYAK3U47W005S897NVE7MP0085WZVSE9629KMSZDGQ5KH1BUW2KYVBQFC01JRNI0I478GBLNGRZPX22BFKKZTMPHIC4B5XBTBIU1VU2ZOV1XA7YM9KHNI5QXWIE01Z2CKHK1FN2M6CVWFWA1QIDBRQSZWC7Z37J1EHBOIBC88ITHBLDR8LW0PSSMA1MXTJ6VJNKKMW85EYQ6V3H2TXMA7SS4X8JFRVMMT' where id=67; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='UJBA2DGEZYS72P7K7LXGLNDO4MC2RJ1WY1YYM04E42GBIKKXAUEHR47DBBQ9XJFQ1D86CMDEE3UB8M7P5NJSFCN45NJBBSIVAGRS63YMKLOG60G97GCPKJ4MMEUB11B69MLW7809XE2HQPFJF9KS8B5TLLT9FTZ49MODX1NR3CQ52EDJ4F7BZK5MEOTAEFCVTN99RUGW6SAW1LTDD0Q7I8NGCRHUCO1JMS8N9ZXIH4MWH7DCVIXZ3F2QDSO4G1R00' where id=67; -update noar ti set v3='UJBA2DGEZYS72P7K7LXGLNDO4MC2RJ1WY1YYM04E42GBIKKXAUEHR47DBBQ9XJFQ1D86CMDEE3UB8M7P5NJSFCN45NJBBSIVAGRS63YMKLOG60G97GCPKJ4MMEUB11B69MLW7809XE2HQPFJF9KS8B5TLLT9FTZ49MODX1NR3CQ52EDJ4F7BZK5MEOTAEFCVTN99RUGW6SAW1LTDD0Q7I8NGCRHUCO1JMS8N9ZXIH4MWH7DCVIXZ3F2QDSO4G1R00' where id=67; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='BH3ESXIZF6HIPMSRF21LF0YTBVAMG6557ZPNSSLKQ2O4RJ7ZPHI0DGTUZ7GA07ZHHHCTF263SHOR3X6KUWI5V53E42AX67TJHUFP8E48UBRK9BIC7M7OT7WF2REYZ9NBYZG99FI5OGKE5A7FRZMTNFLBZ07RUGEJ1YECL2ZZGRB04C1GUWVH941D35433PTA6MS9MDSIVR4SIYKJGES01KZ2HKDB3KG4Q7Q3GWYV5SDG30T5M7FRK73XYTH5E64XP' where id=68; -update noar ti set v0='BH3ESXIZF6HIPMSRF21LF0YTBVAMG6557ZPNSSLKQ2O4RJ7ZPHI0DGTUZ7GA07ZHHHCTF263SHOR3X6KUWI5V53E42AX67TJHUFP8E48UBRK9BIC7M7OT7WF2REYZ9NBYZG99FI5OGKE5A7FRZMTNFLBZ07RUGEJ1YECL2ZZGRB04C1GUWVH941D35433PTA6MS9MDSIVR4SIYKJGES01KZ2HKDB3KG4Q7Q3GWYV5SDG30T5M7FRK73XYTH5E64XP' where id=68; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='02YIDV7SRYPPTC3VPUOWWGBQHHOOMCFSRHSNHDWGZJQ09ZNPJERQKMHP4XPMECFFJAPUT2UG4O0WMCA9XY2WB614X2PXBNO0YYD7URBMSQG27HJ81B9BGHU55L54H19AV0GBP3QDAF1BB8S3OFBWCKQQ8YK1HXMDNNA7SJCRL61XCHHD1H2JV3AU8FAWR26TJTFVMNRRKAAEUD9RPLCENTYEVG27QBA09HD18UHUMPB874G2OVI6JHQ4BFGMJKUXN' where id=68; -update noar ti set v1='02YIDV7SRYPPTC3VPUOWWGBQHHOOMCFSRHSNHDWGZJQ09ZNPJERQKMHP4XPMECFFJAPUT2UG4O0WMCA9XY2WB614X2PXBNO0YYD7URBMSQG27HJ81B9BGHU55L54H19AV0GBP3QDAF1BB8S3OFBWCKQQ8YK1HXMDNNA7SJCRL61XCHHD1H2JV3AU8FAWR26TJTFVMNRRKAAEUD9RPLCENTYEVG27QBA09HD18UHUMPB874G2OVI6JHQ4BFGMJKUXN' where id=68; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='THLUX81EZAMATVGEYRELNEV8JF4UXX6ATOJRQILZJ4K2FXZ7S11BDSL1HWWCJV2PQZ5OQZ7ZUXSYQVGSMQ9TXL04J2AFA9A4HRAQUXLM57BU3AJIRA7M1DSGM5YFTXLHGDPBB47SWZUYVHJ6IA7SABRRG895RL8NC4LA3ZG4OBBRPILL1XWMF9Z4TM5W46DXLUNS5T53OU256XHPRYBJDVP9DUKIWEYA8163IFO58HB3OCDTA965HFI61JYHBAXES' where id=68; -update noar ti set v2='THLUX81EZAMATVGEYRELNEV8JF4UXX6ATOJRQILZJ4K2FXZ7S11BDSL1HWWCJV2PQZ5OQZ7ZUXSYQVGSMQ9TXL04J2AFA9A4HRAQUXLM57BU3AJIRA7M1DSGM5YFTXLHGDPBB47SWZUYVHJ6IA7SABRRG895RL8NC4LA3ZG4OBBRPILL1XWMF9Z4TM5W46DXLUNS5T53OU256XHPRYBJDVP9DUKIWEYA8163IFO58HB3OCDTA965HFI61JYHBAXES' where id=68; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='P4L46NDPS13Y8GI9Q1MJLQ5Y5154K57CXJVAV3G55V4UKL5UUVMR5B5ACAD40TFSV3AVMU424SZXUAGMEIQ3N0GHSFTPZWIVECS3VZFFQBY595YNR0ALF2TRR2QCSZYCGT6SFTTAH588U3VWBFNCY61TLXUK96QPZHDF4PSTC0T4BADJI53BX34QRG08YDRBCB13VAQUAR52BB3ISMEOUCF2XN8W0TVEUG99Z52PZ2M4DBVOU3EPU025OP4IKZ05T' where id=68; -update noar ti set v3='P4L46NDPS13Y8GI9Q1MJLQ5Y5154K57CXJVAV3G55V4UKL5UUVMR5B5ACAD40TFSV3AVMU424SZXUAGMEIQ3N0GHSFTPZWIVECS3VZFFQBY595YNR0ALF2TRR2QCSZYCGT6SFTTAH588U3VWBFNCY61TLXUK96QPZHDF4PSTC0T4BADJI53BX34QRG08YDRBCB13VAQUAR52BB3ISMEOUCF2XN8W0TVEUG99Z52PZ2M4DBVOU3EPU025OP4IKZ05T' where id=68; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='4WD9AP7AJNXDWXZILNE9Q54GSUUY2XR590TSPN2ABD9LVORNQAS9LZI08P405EM4NPBBC1L7SLW5VQR6IK03PHWX0HQIV0X3GXOWW0V8DJT87R44BX2V0UTOJU6ZWHT0RCKHWK96RU0I1O4JOV7J9V1XIZ9L8N7ABQCP1R43I17QP470VU92WL88I00JD9ISWDTCXP448U9T3WJCVBH5C16GIEIPMDA7ISHZGXNA4LEUKO9QETDPCXRUF0Q698E7M' where id=69; -update noar ti set v0='4WD9AP7AJNXDWXZILNE9Q54GSUUY2XR590TSPN2ABD9LVORNQAS9LZI08P405EM4NPBBC1L7SLW5VQR6IK03PHWX0HQIV0X3GXOWW0V8DJT87R44BX2V0UTOJU6ZWHT0RCKHWK96RU0I1O4JOV7J9V1XIZ9L8N7ABQCP1R43I17QP470VU92WL88I00JD9ISWDTCXP448U9T3WJCVBH5C16GIEIPMDA7ISHZGXNA4LEUKO9QETDPCXRUF0Q698E7M' where id=69; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='VEOT7T36B1XMEAH5FXQBPRQ8D23CW0FQTZSGSGNPIJA27CQCB3OK06HT06HJ0BO3R7D4PYSZSCHMQV763BM95WAJ5CNV7N6C9SQJT9MJ45N6XIHNV66VXL7Y7W9PX51DPKVMC7HAS78S368NM1V716ISVJCRI0RMT7Y733PRUSQ1A6NC9ACWCI7QROEJ1F679JIRWRU3U7K9J388AWF90B716GE1PGGDLEEAROWY9HIPLV2QY5TRAOUNYNOM8WVLL' where id=69; -update noar ti set v1='VEOT7T36B1XMEAH5FXQBPRQ8D23CW0FQTZSGSGNPIJA27CQCB3OK06HT06HJ0BO3R7D4PYSZSCHMQV763BM95WAJ5CNV7N6C9SQJT9MJ45N6XIHNV66VXL7Y7W9PX51DPKVMC7HAS78S368NM1V716ISVJCRI0RMT7Y733PRUSQ1A6NC9ACWCI7QROEJ1F679JIRWRU3U7K9J388AWF90B716GE1PGGDLEEAROWY9HIPLV2QY5TRAOUNYNOM8WVLL' where id=69; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='UNLXFL1CIO2BZEXF0HF38R1I7R8ATZXFCAUBEPWUA6FASR8F65H54LLGHPPS0LJILYE4OBHVKTRS0CY35VS8QLZC2LBPXDTW3ZAQ4E3AOTSZ49KKSLZWGRO3RD36GG9KQYYY7FI5JEF56INDMR8WDSHEA3P886ZGWIGMT9YSM6497IFD6UGRTY2VEI8UZSAPIME3JA70QY0VKQA35IDDGMOJRC6TL28NWCLL1HIPFKD81GR44O1UA9JG2ABLQW9ST' where id=69; -update noar ti set v2='UNLXFL1CIO2BZEXF0HF38R1I7R8ATZXFCAUBEPWUA6FASR8F65H54LLGHPPS0LJILYE4OBHVKTRS0CY35VS8QLZC2LBPXDTW3ZAQ4E3AOTSZ49KKSLZWGRO3RD36GG9KQYYY7FI5JEF56INDMR8WDSHEA3P886ZGWIGMT9YSM6497IFD6UGRTY2VEI8UZSAPIME3JA70QY0VKQA35IDDGMOJRC6TL28NWCLL1HIPFKD81GR44O1UA9JG2ABLQW9ST' where id=69; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='XNK3NWH69GBPW2ZKVHD4IAKUZM55I921YDBDULTCUEGVOFJIEIX02ODA03SZRNCMA88HUF4P0HPGFTRPBVYWVX7VESP5F2NGL0JWJTLB0V0SNZMWK11A0HLFYL5P2IAA84QKWDY70HWCNOLTDJPQF439HLFD73U999II9IPF6FW976S0YTT4JSB61FEMAGGM7F9HKPFGRNYF2ZJZM9Z034BUKM0YG90UM982ZBJQL4HB0EGJKPZWOZK164BGVCHHL' where id=69; -update noar ti set v3='XNK3NWH69GBPW2ZKVHD4IAKUZM55I921YDBDULTCUEGVOFJIEIX02ODA03SZRNCMA88HUF4P0HPGFTRPBVYWVX7VESP5F2NGL0JWJTLB0V0SNZMWK11A0HLFYL5P2IAA84QKWDY70HWCNOLTDJPQF439HLFD73U999II9IPF6FW976S0YTT4JSB61FEMAGGM7F9HKPFGRNYF2ZJZM9Z034BUKM0YG90UM982ZBJQL4HB0EGJKPZWOZK164BGVCHHL' where id=69; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='JOGIVDUE1SLU7XGGAAVGY4CNL724W4RL43JJWDQTW8Z9CJBMBWZ2IZMA2XOPS9CFFWGZ4UFY40TY9UYRGGCKLQINYVAMW9CHVUQG168LE0SVUO5PAT275IH3JX6UXDQH9Y9GRVIZRF1YWJUAJ671ZA9K1KMD95S6FI4DE2QW6LOY3I885GHJXQ5Y70GKS853T481Q7T89X7JD48ZG0WKPEFJOC00IFJX45AUMOMH5J93GVZKYOYQ91NM71J4IESXB' where id=70; -update noar ti set v0='JOGIVDUE1SLU7XGGAAVGY4CNL724W4RL43JJWDQTW8Z9CJBMBWZ2IZMA2XOPS9CFFWGZ4UFY40TY9UYRGGCKLQINYVAMW9CHVUQG168LE0SVUO5PAT275IH3JX6UXDQH9Y9GRVIZRF1YWJUAJ671ZA9K1KMD95S6FI4DE2QW6LOY3I885GHJXQ5Y70GKS853T481Q7T89X7JD48ZG0WKPEFJOC00IFJX45AUMOMH5J93GVZKYOYQ91NM71J4IESXB' where id=70; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='EYOMAU4VLHUE720BDNQ2GG0ZM2ITV7NMJ02P66WE7K9OUXKSBVB18S9514K9Y86EXOZZRNUW6ZGKOL09PFQF3A32SKDDNTFAJOJT06Q6FYEY5EH0BYN638PGPXQRKULK1CSCWHV4Z1MKCPZL9F0P6D9F4YEYPA7GJSU2ST8H02O3LTUA36SF7ZKNWHTGA1AEDAZPE9N811NGDTKJ1GV1G1R9TV96TS7VTWWS18FLARXMK5LM3IZU57P2U0CHA6KU9' where id=70; -update noar ti set v1='EYOMAU4VLHUE720BDNQ2GG0ZM2ITV7NMJ02P66WE7K9OUXKSBVB18S9514K9Y86EXOZZRNUW6ZGKOL09PFQF3A32SKDDNTFAJOJT06Q6FYEY5EH0BYN638PGPXQRKULK1CSCWHV4Z1MKCPZL9F0P6D9F4YEYPA7GJSU2ST8H02O3LTUA36SF7ZKNWHTGA1AEDAZPE9N811NGDTKJ1GV1G1R9TV96TS7VTWWS18FLARXMK5LM3IZU57P2U0CHA6KU9' where id=70; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='58NRQPHAGRVFTOAOEU3BR1RNRT2TADW9ZM46SY93SKRLXBLKLIEY5I5PVHDGA43A14QOQ4IGH7DG70OV3XQP6I6MP97DHJ54MDW8SKABF2T2D9YQ2IFSY5Y87R2QC1EWORBE94EJWZN01NJ5FNW744B32O4X3QFHG96PTM7RHC0GHIKAYCV80C9VWVVMWWGDADCKIAECLMEQAZ204T8AK88ZJ6X66IQB61KAGYTIZ6RX7XONXBNOR4RN1R0VW2HCC' where id=70; -update noar ti set v2='58NRQPHAGRVFTOAOEU3BR1RNRT2TADW9ZM46SY93SKRLXBLKLIEY5I5PVHDGA43A14QOQ4IGH7DG70OV3XQP6I6MP97DHJ54MDW8SKABF2T2D9YQ2IFSY5Y87R2QC1EWORBE94EJWZN01NJ5FNW744B32O4X3QFHG96PTM7RHC0GHIKAYCV80C9VWVVMWWGDADCKIAECLMEQAZ204T8AK88ZJ6X66IQB61KAGYTIZ6RX7XONXBNOR4RN1R0VW2HCC' where id=70; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='P2JYWEB3TGVNBLWEEOS0S5VCQH508JWPYBF5K3EJ3CZ62G4PW10BWPMMGY159RHEPZKW4WKYOSSD734PVWMC8PE8BT8NAH5Z7KA3GGM4HIKZ2ZOSF9LKKJQXD1E9XJ96V58O7MODJMN6XODOX262MD2BU957WH886ZOXNM0L3ESEX51G97L2T0TWJX64ARIIE2JL7LNVLL4V5HIEEXUBQDDG3ACGMQAA3C6CESEP0BO10MUSR789S0Y7XGGIYS579' where id=70; -update noar ti set v3='P2JYWEB3TGVNBLWEEOS0S5VCQH508JWPYBF5K3EJ3CZ62G4PW10BWPMMGY159RHEPZKW4WKYOSSD734PVWMC8PE8BT8NAH5Z7KA3GGM4HIKZ2ZOSF9LKKJQXD1E9XJ96V58O7MODJMN6XODOX262MD2BU957WH886ZOXNM0L3ESEX51G97L2T0TWJX64ARIIE2JL7LNVLL4V5HIEEXUBQDDG3ACGMQAA3C6CESEP0BO10MUSR789S0Y7XGGIYS579' where id=70; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='WEZEQZ33MIVHBUAIQ9H37T8RNOF3TZ8PMT18E6KK5IP43NCMUWG185FN3ING5IR80SGBRI75WVB538IGNPSB5XHH72Y02FVWH9ROMKMWNYH1NTBBILU46QVSLUUKM9IH05IDHOYZZA6CWDONV9WKQ0H853YCCJ450EKA8D4TVC7A6KVO68T6KN5JAFLPD6RPC7IEXQ33MP087HLHCU0542F9R9SDN1IXY6NGV52FQUSILDB7ZI7MW4E1R85XF8U6J' where id=71; -update noar ti set v0='WEZEQZ33MIVHBUAIQ9H37T8RNOF3TZ8PMT18E6KK5IP43NCMUWG185FN3ING5IR80SGBRI75WVB538IGNPSB5XHH72Y02FVWH9ROMKMWNYH1NTBBILU46QVSLUUKM9IH05IDHOYZZA6CWDONV9WKQ0H853YCCJ450EKA8D4TVC7A6KVO68T6KN5JAFLPD6RPC7IEXQ33MP087HLHCU0542F9R9SDN1IXY6NGV52FQUSILDB7ZI7MW4E1R85XF8U6J' where id=71; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='CQ5RZB0WIX9NV012C70BFL41IW3KBXI35F5063R3N3RUMGNOQ8I3XC4EN3ND2IQGZHLEMN1QDF79C76GVJLP0AR8IZC6YQMJ514XGOC4BS7ZKCH4NOE16YA55JIXL66DBVC05QQEQ9ZQ3C9KUY2SAQCV2SCPCCNI0I8NYALWM8VVWH5K7PWVKA52OX0D4CG0D9TGOULGGPA0DV30I0OCV0EBKAJHOG43DHF8HDQD8Z4PDG10ZEAT5UY5V5RV9YQBR' where id=71; -update noar ti set v1='CQ5RZB0WIX9NV012C70BFL41IW3KBXI35F5063R3N3RUMGNOQ8I3XC4EN3ND2IQGZHLEMN1QDF79C76GVJLP0AR8IZC6YQMJ514XGOC4BS7ZKCH4NOE16YA55JIXL66DBVC05QQEQ9ZQ3C9KUY2SAQCV2SCPCCNI0I8NYALWM8VVWH5K7PWVKA52OX0D4CG0D9TGOULGGPA0DV30I0OCV0EBKAJHOG43DHF8HDQD8Z4PDG10ZEAT5UY5V5RV9YQBR' where id=71; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='BNRB43X5QK2RLH59TRW9GMJOY270YNIZGMLYBMNVCW3ALG6IWWCHAL2OKVV7YWF5VKTOLGBLZVTDTPUVDTI7D8T6FWR64XA4Y6VDBIOF5E8NJFMGX2R0SBK0UJC8IS4TIO4VJHTWHN90QMUZIMBW25CXGC9PBEFH0SP2ITLQ15SDLGYXHN71M1G5LY1Q99ONAEHKI5B5OVHK1RFAHC5A11T2L5427O1DBCRIKD1FUC7SDR7IM0ESH20LSBC39YUY3' where id=71; -update noar ti set v2='BNRB43X5QK2RLH59TRW9GMJOY270YNIZGMLYBMNVCW3ALG6IWWCHAL2OKVV7YWF5VKTOLGBLZVTDTPUVDTI7D8T6FWR64XA4Y6VDBIOF5E8NJFMGX2R0SBK0UJC8IS4TIO4VJHTWHN90QMUZIMBW25CXGC9PBEFH0SP2ITLQ15SDLGYXHN71M1G5LY1Q99ONAEHKI5B5OVHK1RFAHC5A11T2L5427O1DBCRIKD1FUC7SDR7IM0ESH20LSBC39YUY3' where id=71; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='6I0VFCYZZI9XTQK557TD6K7OWWWJMKYU1X002UGCEM0RGYJ9QLRVRASD9DFQO7Z9L2JU2DSJNCV299B4AH6UELTUA0ZP1L6QEA49SY1ZDQL1SHB0DHGBCXSSP1WYC57MNNT52HQY769PSULEOZZ79P0HHBCU1QCFO2IH7YWGI5R1009OYANG9ZTTLLW915GZQUZR932CW513M05UATVCXXWG43BR0DN14G17W65YJ23B4V5HJS57T78D7NQF05RGQ' where id=71; -update noar ti set v3='6I0VFCYZZI9XTQK557TD6K7OWWWJMKYU1X002UGCEM0RGYJ9QLRVRASD9DFQO7Z9L2JU2DSJNCV299B4AH6UELTUA0ZP1L6QEA49SY1ZDQL1SHB0DHGBCXSSP1WYC57MNNT52HQY769PSULEOZZ79P0HHBCU1QCFO2IH7YWGI5R1009OYANG9ZTTLLW915GZQUZR932CW513M05UATVCXXWG43BR0DN14G17W65YJ23B4V5HJS57T78D7NQF05RGQ' where id=71; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='GEA32VYUZEO4Y8E3313TLVOETJG4D885IA0H72XLIVD42QTWDJPZPGVVDMDA4QTN24N6X2OOSMCTYNEAL3JBZ9PXGK0T7HGVOCSKJX0PY2ULLD3PQ4ANTN168B86S698JNX01MTYO3Y8S9EF43JE7HEQU4ZRLR4L17NN9I7IKWMP77B02YMS668ZRI4Y29YZ4BROMNTWIYD76X13KIP2P4QIJ27LCQ46R3YE2U1EVG2TJBOKU6ATCUOC828ZHVPOK' where id=72; -update noar ti set v0='GEA32VYUZEO4Y8E3313TLVOETJG4D885IA0H72XLIVD42QTWDJPZPGVVDMDA4QTN24N6X2OOSMCTYNEAL3JBZ9PXGK0T7HGVOCSKJX0PY2ULLD3PQ4ANTN168B86S698JNX01MTYO3Y8S9EF43JE7HEQU4ZRLR4L17NN9I7IKWMP77B02YMS668ZRI4Y29YZ4BROMNTWIYD76X13KIP2P4QIJ27LCQ46R3YE2U1EVG2TJBOKU6ATCUOC828ZHVPOK' where id=72; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='KKI43JO85AAO0CU50JEGZC50F0DZ11QRKC2HA9U88YJXSHL1I9K2G9JYX25NWZNNI3UK5ZML0FAMLQ7QI75DJFAZSSP8DFP81MYA1JQDNWHKUWDJX4DGECAYNOCGS89WYYA47B7HD8IG36EBOWOP6CMH4XZOQDTGWWTONV60CYXPHMWLZX6IJYFRK0YV4D4EH205SQS2J2TO3NL9AIQ9WJV2D4QYBC9C278WS08DUQDQB2MJ1HUI1ECSGP8XN0BP6' where id=72; -update noar ti set v1='KKI43JO85AAO0CU50JEGZC50F0DZ11QRKC2HA9U88YJXSHL1I9K2G9JYX25NWZNNI3UK5ZML0FAMLQ7QI75DJFAZSSP8DFP81MYA1JQDNWHKUWDJX4DGECAYNOCGS89WYYA47B7HD8IG36EBOWOP6CMH4XZOQDTGWWTONV60CYXPHMWLZX6IJYFRK0YV4D4EH205SQS2J2TO3NL9AIQ9WJV2D4QYBC9C278WS08DUQDQB2MJ1HUI1ECSGP8XN0BP6' where id=72; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='B3AR14NAJIBFS6WXNQDU9E2GSL0LSU855ILBS36KUBLF6VK81I134H4UC7F428MV7Z1KHX67NBZM1XH84UATRZWJF0MO6V1LEE24MCLDCN52YRL4A21CF9DSAEMMNK6XGH39XWIKNHXFQIB3FAFZ9VZLVQBILS24UMYZ77LJ2YWOX7TIHGLRTGHIDQOYZ48ETFRVQFDEMJ0Z2XVINPTIZJEKZ3JRUZ77860N1O4NCIQSFMYJX4XKXM65WKK9G0Q2L' where id=72; -update noar ti set v2='B3AR14NAJIBFS6WXNQDU9E2GSL0LSU855ILBS36KUBLF6VK81I134H4UC7F428MV7Z1KHX67NBZM1XH84UATRZWJF0MO6V1LEE24MCLDCN52YRL4A21CF9DSAEMMNK6XGH39XWIKNHXFQIB3FAFZ9VZLVQBILS24UMYZ77LJ2YWOX7TIHGLRTGHIDQOYZ48ETFRVQFDEMJ0Z2XVINPTIZJEKZ3JRUZ77860N1O4NCIQSFMYJX4XKXM65WKK9G0Q2L' where id=72; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='Q3PKU8ERQ21LXTL8B4NJLT2TNH3FEO4OEXROZU4CMLO2BQPPBOP2J4Z3QUP38YPWL01ON0HPDZSLQDFCF3CSVQMBW39PVMN7JJWGHWYNCQKAT9MQX017WXG9M1LAWJMZCIDA0OQ5BQ9CZ8V2WOAQGJYBW3NOGH6RWX3F0828B5H4K0HA417NUIDQPIVF0Y1P3RO8CN0HMDSDHO8NJ0YQ4D78WVSMHHIE8MJOTVVT9ZYMFTH8L2YY9IBUAIQ59VNNL' where id=72; -update noar ti set v3='Q3PKU8ERQ21LXTL8B4NJLT2TNH3FEO4OEXROZU4CMLO2BQPPBOP2J4Z3QUP38YPWL01ON0HPDZSLQDFCF3CSVQMBW39PVMN7JJWGHWYNCQKAT9MQX017WXG9M1LAWJMZCIDA0OQ5BQ9CZ8V2WOAQGJYBW3NOGH6RWX3F0828B5H4K0HA417NUIDQPIVF0Y1P3RO8CN0HMDSDHO8NJ0YQ4D78WVSMHHIE8MJOTVVT9ZYMFTH8L2YY9IBUAIQ59VNNL' where id=72; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='OJQVYIHHZDJEMWVRUUWIYNQ2B82XL2LPN5ENX334LFZ4KYAW2SSFH9JPUB1G9DOLSC4CW6HY1FQDQG4UNGBAZUKC1JFZ6VNHCPVQX9Y6DXAHR0MXSJN19VBI5A6SNFCL6VW5X37HPM2A6BMHCAA752LLDYRH71W9QUW4QSJ2FW8VOLQV1A138BOA9QL4OB55FL3R5JPJW10TOKMMPL465PCL9KXUP3WVNH24MV1XN816GDOMEDNEVC9TS215BJOMU' where id=73; -update noar ti set v0='OJQVYIHHZDJEMWVRUUWIYNQ2B82XL2LPN5ENX334LFZ4KYAW2SSFH9JPUB1G9DOLSC4CW6HY1FQDQG4UNGBAZUKC1JFZ6VNHCPVQX9Y6DXAHR0MXSJN19VBI5A6SNFCL6VW5X37HPM2A6BMHCAA752LLDYRH71W9QUW4QSJ2FW8VOLQV1A138BOA9QL4OB55FL3R5JPJW10TOKMMPL465PCL9KXUP3WVNH24MV1XN816GDOMEDNEVC9TS215BJOMU' where id=73; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='V95LHBUBZOYB47OBCZSYW2FXOX5012KZWQBJ2IPAKWQ479Y3XHW70BZLWGYQU7ETR984Z40CJ84KIGIT1O9DAF224PE3R0QU3CSQJBVH76FROWEB2RDNDNZRTE2HBVYBX7C8K3MF4QNZ6TBQ3IS64B2VOPHFHJUJGCEDI5CTQFHRPR6KK27O21AMFLE02HCJNI6ZTD4UO89Q0C8Y07HNZLWSRCQ1KVPL9IH98HP21IURTOZBG000ULWSABDHGDU9P' where id=73; -update noar ti set v1='V95LHBUBZOYB47OBCZSYW2FXOX5012KZWQBJ2IPAKWQ479Y3XHW70BZLWGYQU7ETR984Z40CJ84KIGIT1O9DAF224PE3R0QU3CSQJBVH76FROWEB2RDNDNZRTE2HBVYBX7C8K3MF4QNZ6TBQ3IS64B2VOPHFHJUJGCEDI5CTQFHRPR6KK27O21AMFLE02HCJNI6ZTD4UO89Q0C8Y07HNZLWSRCQ1KVPL9IH98HP21IURTOZBG000ULWSABDHGDU9P' where id=73; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='19DWGL7ODH4W4JXDA7YB4NNKPYE2TRGTN2028IMCKRIP3349W4C0CPTH6E9OWKGH23NUTVO9ADTRCRMFBW4UH1GXNIO2RPW8B5CB4DTMRW8407YDJ0Q1BI5MU34J17794VLDEYFBX9RAN6MFDRM72JBPXNBJP1DLFHRO8OWF0Q3UC5H6UTI5J1P2NI3L9AGK5T1I1UHP53905MY9DQXSRWYMGS21DML4J8RU23KID9IDC5810UGRZWWAIVIM2DXSS' where id=73; -update noar ti set v2='19DWGL7ODH4W4JXDA7YB4NNKPYE2TRGTN2028IMCKRIP3349W4C0CPTH6E9OWKGH23NUTVO9ADTRCRMFBW4UH1GXNIO2RPW8B5CB4DTMRW8407YDJ0Q1BI5MU34J17794VLDEYFBX9RAN6MFDRM72JBPXNBJP1DLFHRO8OWF0Q3UC5H6UTI5J1P2NI3L9AGK5T1I1UHP53905MY9DQXSRWYMGS21DML4J8RU23KID9IDC5810UGRZWWAIVIM2DXSS' where id=73; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='TUGBWR5FO4WC1S4ZN6J2KHGAR5OLAD767GKFCA0MSEKJK9H19ZB6V07MGGFLCRNUJJS4ACVUOOCN3MEFN46W3UHVJ36U1MC8EKYR8FGWOJYDFVJDKUFURINB17N18K4Q5B3LPSBKPOGX2ZL9MVGO6RB2EWVGPSF31BG87RF4NQJFJ216SZVLQSSPGLAZQ6HBLBGSRUNHATGQ8X7ICNHP3991BA2J0H4TPQX8YZ14MH4EX6E7JON5W5W1DWU80KLWA' where id=73; -update noar ti set v3='TUGBWR5FO4WC1S4ZN6J2KHGAR5OLAD767GKFCA0MSEKJK9H19ZB6V07MGGFLCRNUJJS4ACVUOOCN3MEFN46W3UHVJ36U1MC8EKYR8FGWOJYDFVJDKUFURINB17N18K4Q5B3LPSBKPOGX2ZL9MVGO6RB2EWVGPSF31BG87RF4NQJFJ216SZVLQSSPGLAZQ6HBLBGSRUNHATGQ8X7ICNHP3991BA2J0H4TPQX8YZ14MH4EX6E7JON5W5W1DWU80KLWA' where id=73; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='IXVHN2KO2BEDPMJG7XK5DJGY7AUZRHNSNNVRWJ4WU76BXVY6ENNE08NWXX3BJAFAG6CL59U5A5DF9R25IJCVPSVB8F4PX0TL0LW6HY0F7DBNFC8D4XU3ZSSGWATI7TXO0XSSC4KIV2HGSPIBSL88AXB2A6TSUP8JFI62DEEM2U6O76V722PDKCV6KKR0ITKRF6W1TAHRRR0S75OGKIOMAA9JRUSE3J7KYW7FDSH9GFJF9Y32B0SVVDVFV3GGPSHLI' where id=74; -update noar ti set v0='IXVHN2KO2BEDPMJG7XK5DJGY7AUZRHNSNNVRWJ4WU76BXVY6ENNE08NWXX3BJAFAG6CL59U5A5DF9R25IJCVPSVB8F4PX0TL0LW6HY0F7DBNFC8D4XU3ZSSGWATI7TXO0XSSC4KIV2HGSPIBSL88AXB2A6TSUP8JFI62DEEM2U6O76V722PDKCV6KKR0ITKRF6W1TAHRRR0S75OGKIOMAA9JRUSE3J7KYW7FDSH9GFJF9Y32B0SVVDVFV3GGPSHLI' where id=74; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='BGMV0FYBUTJG0ODDE8SEXM924JMID23BCV69G4FBTWNRO93G0YOTSAX9AN35V9ZYMKQF3VW9F24I1VJ2ISKQOE3R646WKIVG29WNRFRE3K64NKSCTF76JY8DDAH5B76IN5GV8175U8P5ZU8J111R3VWH1JJGD1ENC12H0PWCWV6N30JWHU7X6RZQE53S7BP5PXJ7QW7PL2SO8WQKWRA7G574TO3VWLN16SCJWQVTQ15KCRT5XN8YHJN3NXJIA4GGY' where id=74; -update noar ti set v1='BGMV0FYBUTJG0ODDE8SEXM924JMID23BCV69G4FBTWNRO93G0YOTSAX9AN35V9ZYMKQF3VW9F24I1VJ2ISKQOE3R646WKIVG29WNRFRE3K64NKSCTF76JY8DDAH5B76IN5GV8175U8P5ZU8J111R3VWH1JJGD1ENC12H0PWCWV6N30JWHU7X6RZQE53S7BP5PXJ7QW7PL2SO8WQKWRA7G574TO3VWLN16SCJWQVTQ15KCRT5XN8YHJN3NXJIA4GGY' where id=74; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='DO40UQ8OYI08NOL5F3RJEHIBDLM0QV0ONHRE7138HFIYM3KP9KZ58SP3TOVZ8C8XJC5GYQ5EPQGWGIIUTFWIBU07PB4IRZ6039BPK9HLP8F1COIA4HE35LKN2YDNP4A0IINHL10L3UL3YBPPLT11FJJKSRUO6OPPRBLKASSTPCW2193ZC3PNNSO3LBE9CHOOOQ70BNCQ1M3E73UHM6XMKW5MNM72SNNY226662P27ZGYUOA04WP3JBNFNKS6J13TI' where id=74; -update noar ti set v2='DO40UQ8OYI08NOL5F3RJEHIBDLM0QV0ONHRE7138HFIYM3KP9KZ58SP3TOVZ8C8XJC5GYQ5EPQGWGIIUTFWIBU07PB4IRZ6039BPK9HLP8F1COIA4HE35LKN2YDNP4A0IINHL10L3UL3YBPPLT11FJJKSRUO6OPPRBLKASSTPCW2193ZC3PNNSO3LBE9CHOOOQ70BNCQ1M3E73UHM6XMKW5MNM72SNNY226662P27ZGYUOA04WP3JBNFNKS6J13TI' where id=74; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='FD3BIZ39DJ7XU0NKEWHT2Q17J19E9PDN2S4FS2TIUQN12511KJJV3ROIPF6TOD5K6PI7QWRXJOCZFZ3OPUVV3IQX061MPTMXUJDTNI6MO5N9OMDE7RKOLBFCPZSLMIW3L20UCOYIQKUQV63FCWYJKLOE6EZTQXFFNKZ9HS79W2YR76OZPM12D1AEUFSPT464980H58YBBGVVH6F7LAKWLFKDU0T36ONS3TJ3FI7Q5CUF7Q643D24L493Q9VKKIUXS' where id=74; -update noar ti set v3='FD3BIZ39DJ7XU0NKEWHT2Q17J19E9PDN2S4FS2TIUQN12511KJJV3ROIPF6TOD5K6PI7QWRXJOCZFZ3OPUVV3IQX061MPTMXUJDTNI6MO5N9OMDE7RKOLBFCPZSLMIW3L20UCOYIQKUQV63FCWYJKLOE6EZTQXFFNKZ9HS79W2YR76OZPM12D1AEUFSPT464980H58YBBGVVH6F7LAKWLFKDU0T36ONS3TJ3FI7Q5CUF7Q643D24L493Q9VKKIUXS' where id=74; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='XEDOXIB62G0GD64FA796N7DNQ5F8H33Z60NO2APOG5TIULCZ7RWX0CQOIK3JXZYARHASN19GPNTV9PQEN2GIWPMSNKDCES5XCK2T0D67DVSXR8LG3A6C938C5JRAU6EDRJASCHD6CSWAT628AU6ALAC3P6X7CBJ0P9XK475K8WEN1BH0TD0V3PQD63ZSA1S9WHX11JVU2GYLT2YLVBMUJH4CHCWB6P4WY6IBRDT21Q8TU4EL7J29GIF4KEGZ686CO' where id=75; -update noar ti set v0='XEDOXIB62G0GD64FA796N7DNQ5F8H33Z60NO2APOG5TIULCZ7RWX0CQOIK3JXZYARHASN19GPNTV9PQEN2GIWPMSNKDCES5XCK2T0D67DVSXR8LG3A6C938C5JRAU6EDRJASCHD6CSWAT628AU6ALAC3P6X7CBJ0P9XK475K8WEN1BH0TD0V3PQD63ZSA1S9WHX11JVU2GYLT2YLVBMUJH4CHCWB6P4WY6IBRDT21Q8TU4EL7J29GIF4KEGZ686CO' where id=75; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='LZJY9L28JLUGLU3UO23WH0B5CCF3UOIK7Z3N60939DY83YTZI3E2UUIC489V7427CTVL8RTN723QWFTI1FVFTFRQB0C7HSMFJDMHD1UYI5OKR9HKZWMFRUBT91STZ7BQ6AZ4WWHENZLZDS0119B9ABVYO7J7447NRF2A8AYMIRKEX13X99ZP6QANWU5WPCGV2E536EP7NP6LOCV5EPLLN7ESKUSDCUY0CCAK6LC1EMO7QZI1BZWYRO7S5U42TS832' where id=75; -update noar ti set v1='LZJY9L28JLUGLU3UO23WH0B5CCF3UOIK7Z3N60939DY83YTZI3E2UUIC489V7427CTVL8RTN723QWFTI1FVFTFRQB0C7HSMFJDMHD1UYI5OKR9HKZWMFRUBT91STZ7BQ6AZ4WWHENZLZDS0119B9ABVYO7J7447NRF2A8AYMIRKEX13X99ZP6QANWU5WPCGV2E536EP7NP6LOCV5EPLLN7ESKUSDCUY0CCAK6LC1EMO7QZI1BZWYRO7S5U42TS832' where id=75; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='JKKWF9Q2L72OVYXSFM8SDPSGU3U4XW95ZW7K2Y4TUP1GSY3OI6U03J5FICPXQBPPTGT3T0XYKZ14EAIUEA0XIPCVOAPJ5SB9K9GVEM0QRRR2R1HO9UXB4NE8VRGZ3ZFVD5BPMHFS0KVTXLS13PV03D9AK088FD11H1VZ0DVYNCSVW2C28WDIUPP0IYX6XDXUYDIW8N7GT1A3RREDHS586AU0X9OQIQGD6O5IHMH5X9EWFGPCFBXC3DDKSA2TGSXAZ' where id=75; -update noar ti set v2='JKKWF9Q2L72OVYXSFM8SDPSGU3U4XW95ZW7K2Y4TUP1GSY3OI6U03J5FICPXQBPPTGT3T0XYKZ14EAIUEA0XIPCVOAPJ5SB9K9GVEM0QRRR2R1HO9UXB4NE8VRGZ3ZFVD5BPMHFS0KVTXLS13PV03D9AK088FD11H1VZ0DVYNCSVW2C28WDIUPP0IYX6XDXUYDIW8N7GT1A3RREDHS586AU0X9OQIQGD6O5IHMH5X9EWFGPCFBXC3DDKSA2TGSXAZ' where id=75; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='Q1VU1V7TLIS46IA99L44VRGFO81TPTU3C0F3MPZC46Z7HKP28HVNSPXP7ANN8MZFX0M9BC9U66WND1KVFV397JFP0W5K6LQ03IUGKVBJPZF3D7YWXD9EGL4QT3D3WZ02HZ476I8ENDDERWBRJ417VBNOO9ZS88AC2LVC45EGXCMA0L8ANHDT9C9R02V440MU5OPNGOMS3U9KIS5EGTASTA1BPJR6U1KY30YLO341CTXDZ4DIFQAUXG6DEAV6H9N47' where id=75; -update noar ti set v3='Q1VU1V7TLIS46IA99L44VRGFO81TPTU3C0F3MPZC46Z7HKP28HVNSPXP7ANN8MZFX0M9BC9U66WND1KVFV397JFP0W5K6LQ03IUGKVBJPZF3D7YWXD9EGL4QT3D3WZ02HZ476I8ENDDERWBRJ417VBNOO9ZS88AC2LVC45EGXCMA0L8ANHDT9C9R02V440MU5OPNGOMS3U9KIS5EGTASTA1BPJR6U1KY30YLO341CTXDZ4DIFQAUXG6DEAV6H9N47' where id=75; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='DGVDRPM4M78IAZLHGB6QPIP2Q2M57EAFHZ3QBNSQK0CP5MM33YFQNWW88MJSFKCTWKXTT0VHSDNX0AUAMYLNOF74EJ8DC9RA1X4BCG3FVE0BH5ISUG6MBHEO32ZKQVOTEHOBWNL2GM73QKCRNWUO1XHB3BBP3FR03L7897EJ3HXTPH94HX85T7D2CFGIMEC34680KZH26E1KJBRG3JPCAIHAY0HBX73K0KCWZVNJOSCYWFLWKEZ7Q9CW234ZQ92Y1' where id=76; -update noar ti set v0='DGVDRPM4M78IAZLHGB6QPIP2Q2M57EAFHZ3QBNSQK0CP5MM33YFQNWW88MJSFKCTWKXTT0VHSDNX0AUAMYLNOF74EJ8DC9RA1X4BCG3FVE0BH5ISUG6MBHEO32ZKQVOTEHOBWNL2GM73QKCRNWUO1XHB3BBP3FR03L7897EJ3HXTPH94HX85T7D2CFGIMEC34680KZH26E1KJBRG3JPCAIHAY0HBX73K0KCWZVNJOSCYWFLWKEZ7Q9CW234ZQ92Y1' where id=76; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='TOR40LL50S3CB1GW901HQP3D3EFF8CWVHV8NR4LGVA8P7ESZOF1W9UMHDU716E5SPL259Z1X4F639EYYOONQ3IJG7OMPIN7QZ5V3ZWP1EY0RM7IZCJY1DRQGCRKG8OTXUBW9AHR7AZIXY13B7P7RCAPX8I0MK6HJGHJZD8YOKM7ZJ9S6XFX452KLLW7MAJV3KG2PDC8C7TYEH017ZIZGBN66U3ABY04ABNH7FH0KP443TRZ5A4N5NCVBKRQ334IVU' where id=76; -update noar ti set v1='TOR40LL50S3CB1GW901HQP3D3EFF8CWVHV8NR4LGVA8P7ESZOF1W9UMHDU716E5SPL259Z1X4F639EYYOONQ3IJG7OMPIN7QZ5V3ZWP1EY0RM7IZCJY1DRQGCRKG8OTXUBW9AHR7AZIXY13B7P7RCAPX8I0MK6HJGHJZD8YOKM7ZJ9S6XFX452KLLW7MAJV3KG2PDC8C7TYEH017ZIZGBN66U3ABY04ABNH7FH0KP443TRZ5A4N5NCVBKRQ334IVU' where id=76; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='SN1EP8Y85PRPO1RPFGLHV7AHF4Y88JVNZAJE7ZPNW8CWTURPFU8EOYMCZ66TFAO2J679FQAPE4UQ21S35V7O1MFTRGWQ6TIU7X0H25FEFR9BRFDPSVBDWL3LLR6097LYWN9L2M3WHYYVCKHOW12HW6NSMH19QXMAJY159MGW6PNHURIFKBR2P0XXCRTUZP7WDPBM7B9IRFV6J90UW8AIFQROTB34NOT7ZA1I1BEV0PQ5IE34T9VX4QB3GYMZ4P4C1' where id=76; -update noar ti set v2='SN1EP8Y85PRPO1RPFGLHV7AHF4Y88JVNZAJE7ZPNW8CWTURPFU8EOYMCZ66TFAO2J679FQAPE4UQ21S35V7O1MFTRGWQ6TIU7X0H25FEFR9BRFDPSVBDWL3LLR6097LYWN9L2M3WHYYVCKHOW12HW6NSMH19QXMAJY159MGW6PNHURIFKBR2P0XXCRTUZP7WDPBM7B9IRFV6J90UW8AIFQROTB34NOT7ZA1I1BEV0PQ5IE34T9VX4QB3GYMZ4P4C1' where id=76; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='VNPXIFNWBJL398TGBQZLUNS11WZY5H3Q50TL41DE20P2IYM3DW81GPFPE3KM0385RIMN8IJ0KBF324OHDO2H4FMNZ3TBI5MSOKQI6SPMPZ8DRUBDLATQ6JI0130UGVB9LXKO36ZUPTEJ1IOPVC5SU2P6W0WU26FBGJIIQJFMYCT6QK16OHYEQG356VUD31K58AR3Z8ZKLFWG4SXNAU5ZP5LOE59TE6LP0C89DPOUE8VNFEN7MASS2FU2TIB96FY61' where id=76; -update noar ti set v3='VNPXIFNWBJL398TGBQZLUNS11WZY5H3Q50TL41DE20P2IYM3DW81GPFPE3KM0385RIMN8IJ0KBF324OHDO2H4FMNZ3TBI5MSOKQI6SPMPZ8DRUBDLATQ6JI0130UGVB9LXKO36ZUPTEJ1IOPVC5SU2P6W0WU26FBGJIIQJFMYCT6QK16OHYEQG356VUD31K58AR3Z8ZKLFWG4SXNAU5ZP5LOE59TE6LP0C89DPOUE8VNFEN7MASS2FU2TIB96FY61' where id=76; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='4WEJ6QCF8K5CYS20J88ICFQPCX470NAKBBLA5RMYB0XCK2S8C6RNIQ5LLWZR58W8ET0R2DL5I75E0YVQRC9VSPYK842NDRQLBP4SR4XMR374CS257OVQJ8TJAVTF3RS7CNZCIVN874UHR70YQO4GGQ113QEJ47EN5D1OZQNCCQU6VBMY7CPUFMB01JGH1M3R56ONEOIDNIGCHLBKI3BM2BVJ9WBPXPC2UZSEYWB222Z4LGWYM0UOZUHNA5VJCJANP' where id=77; -update noar ti set v0='4WEJ6QCF8K5CYS20J88ICFQPCX470NAKBBLA5RMYB0XCK2S8C6RNIQ5LLWZR58W8ET0R2DL5I75E0YVQRC9VSPYK842NDRQLBP4SR4XMR374CS257OVQJ8TJAVTF3RS7CNZCIVN874UHR70YQO4GGQ113QEJ47EN5D1OZQNCCQU6VBMY7CPUFMB01JGH1M3R56ONEOIDNIGCHLBKI3BM2BVJ9WBPXPC2UZSEYWB222Z4LGWYM0UOZUHNA5VJCJANP' where id=77; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='NM8HV723TWUXSOBD7UIRKVOV7H5YJ83QYYUFI0H10XPEYE1F0D51VNWRG0YLO39ONIHJ6HBM6WIZAFYFUT8DBT5K637RW8BT05UU3XSPHLHEOG62W6GGYSWSM1VVC6O3RU08WSPCZ8Z9W56DJXQRCQX79OKWIGE0GTVJ5IFF3F5LQXWOUBVOZ55EK2J1UHZK4A22KFN656WWMBGYNVBZYFT9RSW8N8BYI5UKG9Q8IW8XVDQ9WZVDI6TVPQGHDH16T' where id=77; -update noar ti set v1='NM8HV723TWUXSOBD7UIRKVOV7H5YJ83QYYUFI0H10XPEYE1F0D51VNWRG0YLO39ONIHJ6HBM6WIZAFYFUT8DBT5K637RW8BT05UU3XSPHLHEOG62W6GGYSWSM1VVC6O3RU08WSPCZ8Z9W56DJXQRCQX79OKWIGE0GTVJ5IFF3F5LQXWOUBVOZ55EK2J1UHZK4A22KFN656WWMBGYNVBZYFT9RSW8N8BYI5UKG9Q8IW8XVDQ9WZVDI6TVPQGHDH16T' where id=77; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='T8BEEU1BI4QFYVTHCAUKHUAU4VRI86XUGCL66119CXJMXQU0Q6J3TR4SCJIHIMJMUGMJ84B22XGGSOTVOVZO1TJT8YIS3G6Y1ETTYK9061SY3N9GG6GYUXU3O4VENJ1138BU7KQAKXE457SDR9D6U1B3F8H07ZWEF7UCU0WRNIP2PD3F9D8NP7DXJR06ND3SYST5AIPKW3DS5I6CENXA6E6GJQ8XB40VGSZ9MWMIQMUVQ5P6CNUL9FMB4FEGTJCA4' where id=77; -update noar ti set v2='T8BEEU1BI4QFYVTHCAUKHUAU4VRI86XUGCL66119CXJMXQU0Q6J3TR4SCJIHIMJMUGMJ84B22XGGSOTVOVZO1TJT8YIS3G6Y1ETTYK9061SY3N9GG6GYUXU3O4VENJ1138BU7KQAKXE457SDR9D6U1B3F8H07ZWEF7UCU0WRNIP2PD3F9D8NP7DXJR06ND3SYST5AIPKW3DS5I6CENXA6E6GJQ8XB40VGSZ9MWMIQMUVQ5P6CNUL9FMB4FEGTJCA4' where id=77; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='Z2LB146QXCQ1K30327L0P5C61U2NHPVF43EUZB8LMPNM0VZULCK1L77BK760Y16RS0I6TZ8VLC7OEUAC90NMRMN6PWBUKS0R9C7K5J5CXX5XMP50Y4EPK7M7DR6SFIKGOSMEC0X5NE7D8OQ8BW2M8R2UK5G6EMSON0PDVYW9LTZQ1SRSOOGD08EPKS53RHYRLJ7G3NYIFUVGTESDQPOQG3JTGHPSLLE0CSFHWMTN5DPLIX25ZZXWPD8UU3DMIO8G3' where id=77; -update noar ti set v3='Z2LB146QXCQ1K30327L0P5C61U2NHPVF43EUZB8LMPNM0VZULCK1L77BK760Y16RS0I6TZ8VLC7OEUAC90NMRMN6PWBUKS0R9C7K5J5CXX5XMP50Y4EPK7M7DR6SFIKGOSMEC0X5NE7D8OQ8BW2M8R2UK5G6EMSON0PDVYW9LTZQ1SRSOOGD08EPKS53RHYRLJ7G3NYIFUVGTESDQPOQG3JTGHPSLLE0CSFHWMTN5DPLIX25ZZXWPD8UU3DMIO8G3' where id=77; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='29IEVV2VC30F5OO9DQXIXTA11VXKRXB158ZNV40SNKBAMVHCY48LZ7EXQ879A08N766L46AKJJCE2W32TR8OQOIHFC3RV8232SABMQK0X3D32STQZXQMD2AP7FIDNYTKLDC5V19EMSB0179BJPZ33J7206FQZXZHDT2UMBRUTHMABIFNCX4WLEUWAGN2A0TZDBULK4GHDNPJFWDJJDOQAQO0XSLBUNA61QTSK720OOV3GATYBIPXA1EBIED2DNXOE' where id=78; -update noar ti set v0='29IEVV2VC30F5OO9DQXIXTA11VXKRXB158ZNV40SNKBAMVHCY48LZ7EXQ879A08N766L46AKJJCE2W32TR8OQOIHFC3RV8232SABMQK0X3D32STQZXQMD2AP7FIDNYTKLDC5V19EMSB0179BJPZ33J7206FQZXZHDT2UMBRUTHMABIFNCX4WLEUWAGN2A0TZDBULK4GHDNPJFWDJJDOQAQO0XSLBUNA61QTSK720OOV3GATYBIPXA1EBIED2DNXOE' where id=78; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='O2CZ4IKJ3US5Q376OFNLFOC5U789CY4WYVKMZBY6G4DGZPN2REBJRVCBD1VHJNUL9PDPLFHY6Y9PND3KJZEOPUU0S1CU1JXC63CD2VA1095X311EGB306DMB20PNMQZZPWG8DDI653DLS2L4WQF8MAPC8ZHBKSN9UEA35JDE6LJ5MTGVY7FN9FVY8MRL5PB8EFURSE3N524HUD7109VQZ1BB73SKTV0XVX1512PXH7P93AGKUNNN3IG8TN4T9L0MW' where id=78; -update noar ti set v1='O2CZ4IKJ3US5Q376OFNLFOC5U789CY4WYVKMZBY6G4DGZPN2REBJRVCBD1VHJNUL9PDPLFHY6Y9PND3KJZEOPUU0S1CU1JXC63CD2VA1095X311EGB306DMB20PNMQZZPWG8DDI653DLS2L4WQF8MAPC8ZHBKSN9UEA35JDE6LJ5MTGVY7FN9FVY8MRL5PB8EFURSE3N524HUD7109VQZ1BB73SKTV0XVX1512PXH7P93AGKUNNN3IG8TN4T9L0MW' where id=78; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='7MVBE30ICEGL02SN6Z82VSS93YD88NHCIR09WMZHD5L5JA4K366JQAD1TRRED086OVNV4ZW80E8PP1ZKP1ACZ53PGJVXVSI0NNC0CN1XW6RFC0FUBMF535X9A4FWA28C1BSB9FOIJJXGAX3JE9F0AWOW0HQYTQRMYLWAUMD1MXN9324Q8QW40U4TGFD3W8J2NP29VIML4F2GNYDQWTV5M3QRCVSMEN2DZ8X0ADL0TH28LLHYQ2DVNY9G979C5NJXF' where id=78; -update noar ti set v2='7MVBE30ICEGL02SN6Z82VSS93YD88NHCIR09WMZHD5L5JA4K366JQAD1TRRED086OVNV4ZW80E8PP1ZKP1ACZ53PGJVXVSI0NNC0CN1XW6RFC0FUBMF535X9A4FWA28C1BSB9FOIJJXGAX3JE9F0AWOW0HQYTQRMYLWAUMD1MXN9324Q8QW40U4TGFD3W8J2NP29VIML4F2GNYDQWTV5M3QRCVSMEN2DZ8X0ADL0TH28LLHYQ2DVNY9G979C5NJXF' where id=78; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='NXI9Z1155C569CT5SCNSUP1A94YUH0PQ8K6BJ40PCFL3TSL37GE4F55JWK87BQUERLU9TMN8RHHAWUL6VKF7JR6U6XJLQH8E3NTL8XJJW38ZOG0U9SS8A6LUJJWWLV3RTUP8M24RJUOU16ZUP8IW0BSFBPUDA6O5GI89QHBCQ9G3IV1NXDXC7WIH0AM5R1QHC2ATKCXGRH2C1BBOFJ8IDN5V55O6ALOZ7OFVAMMBL624GHZVRBBL4FCLOX5IG7CT9' where id=78; -update noar ti set v3='NXI9Z1155C569CT5SCNSUP1A94YUH0PQ8K6BJ40PCFL3TSL37GE4F55JWK87BQUERLU9TMN8RHHAWUL6VKF7JR6U6XJLQH8E3NTL8XJJW38ZOG0U9SS8A6LUJJWWLV3RTUP8M24RJUOU16ZUP8IW0BSFBPUDA6O5GI89QHBCQ9G3IV1NXDXC7WIH0AM5R1QHC2ATKCXGRH2C1BBOFJ8IDN5V55O6ALOZ7OFVAMMBL624GHZVRBBL4FCLOX5IG7CT9' where id=78; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='Q3FFZD7DDX86QMDGSJY2BRU58T98MFBN7BSDX49FII54HWDENRUHG6GP3X2SS4TD10U9OHHIW74AA99VHLM05GQECAJCA106FQX0B9CSQ5ULJ2LHTA3JSW9DU6GYQFGDNPXCRE2TQ0F4D3T0ICXJIK4UH8CN94CKVZYWETQ6M14L4P4VLLJFT2ODOIM5OG1C37CTMI84H462WMR0U75238YRCZ32335JO2T37ATFFU2R986OFMB21LRSXU7OZ8LSB' where id=79; -update noar ti set v0='Q3FFZD7DDX86QMDGSJY2BRU58T98MFBN7BSDX49FII54HWDENRUHG6GP3X2SS4TD10U9OHHIW74AA99VHLM05GQECAJCA106FQX0B9CSQ5ULJ2LHTA3JSW9DU6GYQFGDNPXCRE2TQ0F4D3T0ICXJIK4UH8CN94CKVZYWETQ6M14L4P4VLLJFT2ODOIM5OG1C37CTMI84H462WMR0U75238YRCZ32335JO2T37ATFFU2R986OFMB21LRSXU7OZ8LSB' where id=79; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='1CHHHKNY6CMSUK3X4JJYU1ID0T2WYA4QSL7C5KSJ8L1WULYTTPSWPJLNPEV7R9D37H0F819S5PDBQ483AO8ZYT64O69U2XPV0EP9X549G4PPBKMY1P8Z1JOMAANYSO6JF19GJ1IHUBVOSZDNGROFG26KW31CF8HSSVJRTVRUXSQTDJKI1KF3J281QAL41WP4Q2CKXRNCWLQ4QUOV1C8UN4DYCSPN5PYD1KHZ5I7MIQ6ZDLR4S7R5BXVQ3CK04D63M' where id=79; -update noar ti set v1='1CHHHKNY6CMSUK3X4JJYU1ID0T2WYA4QSL7C5KSJ8L1WULYTTPSWPJLNPEV7R9D37H0F819S5PDBQ483AO8ZYT64O69U2XPV0EP9X549G4PPBKMY1P8Z1JOMAANYSO6JF19GJ1IHUBVOSZDNGROFG26KW31CF8HSSVJRTVRUXSQTDJKI1KF3J281QAL41WP4Q2CKXRNCWLQ4QUOV1C8UN4DYCSPN5PYD1KHZ5I7MIQ6ZDLR4S7R5BXVQ3CK04D63M' where id=79; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='9LW7DQ1MLCRTJ9L1BRBBYOAR4M89KDJT9U00AO2VV7C48FOJRR1YQ17G0ACP25CL88T9KN2IHKNIQNZE27W2YZTD3D6JUPME6URTAPYTY7UTE80CS1GHBBJIRLLATPIBMXO1H47ZZBN1ZW07TX1P49PX4GZXNWT837N4QMS1KZ5MHGQ86Z7A2GDPDE12BH2S41RG0A1GVD52BXKXI7YFG57KUGS1C9TKYUMTZVMAQ34A60FI43R4R4HDTMVJC2QYA' where id=79; -update noar ti set v2='9LW7DQ1MLCRTJ9L1BRBBYOAR4M89KDJT9U00AO2VV7C48FOJRR1YQ17G0ACP25CL88T9KN2IHKNIQNZE27W2YZTD3D6JUPME6URTAPYTY7UTE80CS1GHBBJIRLLATPIBMXO1H47ZZBN1ZW07TX1P49PX4GZXNWT837N4QMS1KZ5MHGQ86Z7A2GDPDE12BH2S41RG0A1GVD52BXKXI7YFG57KUGS1C9TKYUMTZVMAQ34A60FI43R4R4HDTMVJC2QYA' where id=79; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='O8LRF4704XQ0JSM6M02LTI146T773PP9T4ZYYQO36S4CCBPLR8T6CUAP02YVKZ66ZHD35OUDMHGATSR5RUB6KZEDUO4FQWH8Q9ONW70C1LFTE7D4WP3EIC3RJH7XQWS7Q8PCMX7O5MUODVB6B3H8CE6PUMNJAKND4PODW6D3DGG5C8VBV7CKIB2OKGSGDPMN6SFT8R03MV07L4EASBRM7EXIRXZ80DJ7QHKRUITBY45X7L4ASLBBTOABIHRU7VEUA' where id=79; -update noar ti set v3='O8LRF4704XQ0JSM6M02LTI146T773PP9T4ZYYQO36S4CCBPLR8T6CUAP02YVKZ66ZHD35OUDMHGATSR5RUB6KZEDUO4FQWH8Q9ONW70C1LFTE7D4WP3EIC3RJH7XQWS7Q8PCMX7O5MUODVB6B3H8CE6PUMNJAKND4PODW6D3DGG5C8VBV7CKIB2OKGSGDPMN6SFT8R03MV07L4EASBRM7EXIRXZ80DJ7QHKRUITBY45X7L4ASLBBTOABIHRU7VEUA' where id=79; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='5ERX9GS9UO6KRUFIFQ3EYM7WIWVX4BN5MQZLKH3ZK9UYY5QSHKP0G04ALNCD2TNHQ7TXURQNH07B3OR16KOEUUJPJMC12MEX88SOPSM6OR9OZA549SN9768C3KMXDTX94XPFBJDO8K0RWHU6CEMYIGYMOI39HJN6SYLB79WLIO4FWMV8CHOR23N3UHVOVCUMGQI7HF52OEFEDUFLLAKDD04JEW6F5QS7EGL8JUHPN4IX1ORREBK8P1CVGU0H90P5G' where id=80; -update noar ti set v0='5ERX9GS9UO6KRUFIFQ3EYM7WIWVX4BN5MQZLKH3ZK9UYY5QSHKP0G04ALNCD2TNHQ7TXURQNH07B3OR16KOEUUJPJMC12MEX88SOPSM6OR9OZA549SN9768C3KMXDTX94XPFBJDO8K0RWHU6CEMYIGYMOI39HJN6SYLB79WLIO4FWMV8CHOR23N3UHVOVCUMGQI7HF52OEFEDUFLLAKDD04JEW6F5QS7EGL8JUHPN4IX1ORREBK8P1CVGU0H90P5G' where id=80; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='Z760IJEEUXH9MNILGXL3X1AICMXZ8K9G66B2WA39SDVDG9CNWCKZU1XXDA5LNYV4UT5DORMX17T6PNR0V4B3TD7VTAY0F4ZWW4U34P3COLBBIXR7567URPVZKKP857QH0230GNQ629SUTBQPQ5WPH4RQHYQUWMWLF1NHCMB7JFPTXPML67FSAMXE975VL4DCK3A8Q46BLOIXG3QETW7EWDHQPXLUYSKP61B71LTM1LNF0ZTOW02A95QAEQOL02VQ4' where id=80; -update noar ti set v1='Z760IJEEUXH9MNILGXL3X1AICMXZ8K9G66B2WA39SDVDG9CNWCKZU1XXDA5LNYV4UT5DORMX17T6PNR0V4B3TD7VTAY0F4ZWW4U34P3COLBBIXR7567URPVZKKP857QH0230GNQ629SUTBQPQ5WPH4RQHYQUWMWLF1NHCMB7JFPTXPML67FSAMXE975VL4DCK3A8Q46BLOIXG3QETW7EWDHQPXLUYSKP61B71LTM1LNF0ZTOW02A95QAEQOL02VQ4' where id=80; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='L78CIOWIEKYZTNHFVWC6TW66NLQJ0GP4CASGEJ5B79LD5MLVVPIG6R8W98T1OZ16ZY7QXHZ8QIZADOFMRV2AOXPW3GRD9K087QBCGQ9TWA7LAF26KDJ51P9SM0N7L8E2K6MRYUVY04GG4TZZMNP0GLH8U8TRNB7PYO7NE96HGX26MJSXXDBZ7QRBRWSWKOUA0IVO1H95XLFACM8J37TH97K1JSG6AUFLEA7Q8X6IHM7385I7PIE5J69KGYKPLP0YL' where id=80; -update noar ti set v2='L78CIOWIEKYZTNHFVWC6TW66NLQJ0GP4CASGEJ5B79LD5MLVVPIG6R8W98T1OZ16ZY7QXHZ8QIZADOFMRV2AOXPW3GRD9K087QBCGQ9TWA7LAF26KDJ51P9SM0N7L8E2K6MRYUVY04GG4TZZMNP0GLH8U8TRNB7PYO7NE96HGX26MJSXXDBZ7QRBRWSWKOUA0IVO1H95XLFACM8J37TH97K1JSG6AUFLEA7Q8X6IHM7385I7PIE5J69KGYKPLP0YL' where id=80; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='ROHU3JWF647KJDT4HJUJ2S5WQ1HJFDCE6BMNDUETEV9AENM3MMVBDENN42MHS4093TUCWNF3UBLEN8AVQ9R8RNUQ0KODU3CJXDKU79JMOK6B17ZQX5H066299S03HG2CS7HAE0XWA31Z5O27BDTBMH00AMZGURMXAY6N3DKPHWGXJMTPV8F2K261BHUBAXB3K9QY38MC7AZJIAVHF350FFPFBVPRV9CCJVNFNXFO00VFH5BO71J2M97BHCZH5GGII' where id=80; -update noar ti set v3='ROHU3JWF647KJDT4HJUJ2S5WQ1HJFDCE6BMNDUETEV9AENM3MMVBDENN42MHS4093TUCWNF3UBLEN8AVQ9R8RNUQ0KODU3CJXDKU79JMOK6B17ZQX5H066299S03HG2CS7HAE0XWA31Z5O27BDTBMH00AMZGURMXAY6N3DKPHWGXJMTPV8F2K261BHUBAXB3K9QY38MC7AZJIAVHF350FFPFBVPRV9CCJVNFNXFO00VFH5BO71J2M97BHCZH5GGII' where id=80; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='7IAQL7HCL9MS2N4H6MQRE7R98CHC5JRXI61AJOZQBLQVQ7PKGYAML3TMKZP6TCYNYEI030V838YCWSLKHT557WWIJ0MJIQA8WMMJHWHNIG4PXPAN626XG7PQT8BWJEVZ8VMNQGHCCYAXVZA4OMKO6H9AQK719WCQUZFG3CD928C7RN270PZIAZB3SHFLZSAK20WJK8VHVFN9CQ8XFGB0Q41TGNBQH8E1N2N290PNMUUCZ7YS0MWN6S1GD6D9CDF38' where id=81; -update noar ti set v0='7IAQL7HCL9MS2N4H6MQRE7R98CHC5JRXI61AJOZQBLQVQ7PKGYAML3TMKZP6TCYNYEI030V838YCWSLKHT557WWIJ0MJIQA8WMMJHWHNIG4PXPAN626XG7PQT8BWJEVZ8VMNQGHCCYAXVZA4OMKO6H9AQK719WCQUZFG3CD928C7RN270PZIAZB3SHFLZSAK20WJK8VHVFN9CQ8XFGB0Q41TGNBQH8E1N2N290PNMUUCZ7YS0MWN6S1GD6D9CDF38' where id=81; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='WHCYLKOEHI8OEAXP0KP8WICKENH4S8LI6246ZG0NVGL8G4WZFB1CM8GEA10O4G79LO79T0YKNKNHE8Y1VMPGB1YBHRA5SR6R3F9GC0K45CG9AYWG0OZ52AKNMF50YA9Q22OKXQZ111CHQESQAXEASOTAVF0ZFJ156DXRYPTW9M7OE2QDJGBEGCY9H63YHN6MI95K2ZMJPWE02VMFGTSKHAY92X65TCRXI4LXSDPGBHDXNM84ZWDOC2WX3S51A93BM' where id=81; -update noar ti set v1='WHCYLKOEHI8OEAXP0KP8WICKENH4S8LI6246ZG0NVGL8G4WZFB1CM8GEA10O4G79LO79T0YKNKNHE8Y1VMPGB1YBHRA5SR6R3F9GC0K45CG9AYWG0OZ52AKNMF50YA9Q22OKXQZ111CHQESQAXEASOTAVF0ZFJ156DXRYPTW9M7OE2QDJGBEGCY9H63YHN6MI95K2ZMJPWE02VMFGTSKHAY92X65TCRXI4LXSDPGBHDXNM84ZWDOC2WX3S51A93BM' where id=81; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='GGVI66QTBSD6H37N1UFPW2UASZB6U08I538EFE6AYGEOSG1Y4OL50FRIUW1TYDSX5NAGMUBQTVP1EI4NK85IR7BATNDZ2GTXWOROVV0GQ1IO5W1FSANU1FD6L81X6QP8EFSJ49BZO286PLZAFYNNSA6ANW8NUB8ZDO6BXOUU2NE3IC3NCUYE27L5BB0UPNNAFMOTTOXOHG3BZTV004FS0ID6H740HMCXNNTPED13B6NAUDYMBZSXHRDK42CL6WR5E' where id=81; -update noar ti set v2='GGVI66QTBSD6H37N1UFPW2UASZB6U08I538EFE6AYGEOSG1Y4OL50FRIUW1TYDSX5NAGMUBQTVP1EI4NK85IR7BATNDZ2GTXWOROVV0GQ1IO5W1FSANU1FD6L81X6QP8EFSJ49BZO286PLZAFYNNSA6ANW8NUB8ZDO6BXOUU2NE3IC3NCUYE27L5BB0UPNNAFMOTTOXOHG3BZTV004FS0ID6H740HMCXNNTPED13B6NAUDYMBZSXHRDK42CL6WR5E' where id=81; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='0CUC6PG8338586R61KV252EUYFR6KCS93634XBUJYBEBJDT0DPE4U2HCQVHLBDMQZAISIVR7DOE0YHF200PAUKMKTC7DKMGYD66XVTPKVBAO0XQJ3PRZEWR5YFXKCL3O1OXNI52P3R2JZ7VS492LH2ROOQJS7M7D8TX8T38BTNJQ702C9Q49UFV6H2WGRE85XKBPAYW0JLECJCPK78O95YP8M0W5URK8707NUBMPHALYU67CCO8HOVH2DARLRYJ9E' where id=81; -update noar ti set v3='0CUC6PG8338586R61KV252EUYFR6KCS93634XBUJYBEBJDT0DPE4U2HCQVHLBDMQZAISIVR7DOE0YHF200PAUKMKTC7DKMGYD66XVTPKVBAO0XQJ3PRZEWR5YFXKCL3O1OXNI52P3R2JZ7VS492LH2ROOQJS7M7D8TX8T38BTNJQ702C9Q49UFV6H2WGRE85XKBPAYW0JLECJCPK78O95YP8M0W5URK8707NUBMPHALYU67CCO8HOVH2DARLRYJ9E' where id=81; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='SROIC3LDYM70OIGPPB8C8TCQFKGYIH7MO31KZM3B36A2F74R99PFX9YELIANGQZP5OY3XRBVU3264KB971HUBIBVLD2PY3NPEOOU8SJQLHCPF6BCJTMEF5YMU0UKPGSBO3I9EPN6DQCINB3PDKGPV7XCXLAPCTV5L07SYFAQ1PXW1IKXWV2V76EOAJHERBMWMNSTU9KVT9S8DEHB4MQW55HGZHSY9EZG97H4RUUT36EWBYJGXHZT1NV59EYHJRQHR' where id=82; -update noar ti set v0='SROIC3LDYM70OIGPPB8C8TCQFKGYIH7MO31KZM3B36A2F74R99PFX9YELIANGQZP5OY3XRBVU3264KB971HUBIBVLD2PY3NPEOOU8SJQLHCPF6BCJTMEF5YMU0UKPGSBO3I9EPN6DQCINB3PDKGPV7XCXLAPCTV5L07SYFAQ1PXW1IKXWV2V76EOAJHERBMWMNSTU9KVT9S8DEHB4MQW55HGZHSY9EZG97H4RUUT36EWBYJGXHZT1NV59EYHJRQHR' where id=82; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='UDYCTXDNP6G6W3I140VDNAPYR48F2ETEPFV0RKPET0388DS7793BKGHR8TWBMGZMIIL52T9Z1FQ2IVQD7K895IUE3GZO92AOGF8U1GGYGU7NMXMXVUBY6OMIQRGNZ56BMAOO9L8GYKSH5HS1YTAD8CIXE1N7W93OEBVCJGSW4ZXUKBHGFFZIPXL93BEYLK9FKY6AUYAVCZIRWPG6SVSTW79KP0FWZYO0Y85UMXBGNJJ7PZDMRNR3HA09U4O4XBR8Y' where id=82; -update noar ti set v1='UDYCTXDNP6G6W3I140VDNAPYR48F2ETEPFV0RKPET0388DS7793BKGHR8TWBMGZMIIL52T9Z1FQ2IVQD7K895IUE3GZO92AOGF8U1GGYGU7NMXMXVUBY6OMIQRGNZ56BMAOO9L8GYKSH5HS1YTAD8CIXE1N7W93OEBVCJGSW4ZXUKBHGFFZIPXL93BEYLK9FKY6AUYAVCZIRWPG6SVSTW79KP0FWZYO0Y85UMXBGNJJ7PZDMRNR3HA09U4O4XBR8Y' where id=82; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='74EERGPYEQ8TB15ROHJZUQS70ZR8XBV0ESRE60YP6NLNKAPHYVS1PN3WIN65YVPTLQOARM9PX521WLO718I3DHRGDFGMULT6I5BPGMMK8SPE87G7BMA6BRIXCLFY6DF6PVEN0G1U9F0GZXN2AARQNV0HJL9KEQP08VPUNXM2P1RJG7B79Y4O0YCIOQ2WDJQKWERATSTR6JN1BACF3QMH5T8LQRTTIVGVI27Y6YYS0TCRLH62LYRIC7CKVJYYFW9YR' where id=82; -update noar ti set v2='74EERGPYEQ8TB15ROHJZUQS70ZR8XBV0ESRE60YP6NLNKAPHYVS1PN3WIN65YVPTLQOARM9PX521WLO718I3DHRGDFGMULT6I5BPGMMK8SPE87G7BMA6BRIXCLFY6DF6PVEN0G1U9F0GZXN2AARQNV0HJL9KEQP08VPUNXM2P1RJG7B79Y4O0YCIOQ2WDJQKWERATSTR6JN1BACF3QMH5T8LQRTTIVGVI27Y6YYS0TCRLH62LYRIC7CKVJYYFW9YR' where id=82; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='5C29FPCW6KQ1CGGHRXVNX6NYT4A7R9MKEJZTXWQXV5MJ3028G00BR6438SUVYQ6G518WBVN5UQSUF2DG16H54XA42G3FJGU2J2RVC58LR7LE456XODPR0Y74J4TN66DY6RUEOEINZW4NHZVZGCFDG6S5Z1H2L0NX3KKZ4CUI4S9YMNOIBRFBTYN039WL6S0FTVFZTLU4LJSV71VSHZEEQTRH1F8OLT1NPQ0GJ8IARUHCJDOTIFHLX7CX25EPZRSFF' where id=82; -update noar ti set v3='5C29FPCW6KQ1CGGHRXVNX6NYT4A7R9MKEJZTXWQXV5MJ3028G00BR6438SUVYQ6G518WBVN5UQSUF2DG16H54XA42G3FJGU2J2RVC58LR7LE456XODPR0Y74J4TN66DY6RUEOEINZW4NHZVZGCFDG6S5Z1H2L0NX3KKZ4CUI4S9YMNOIBRFBTYN039WL6S0FTVFZTLU4LJSV71VSHZEEQTRH1F8OLT1NPQ0GJ8IARUHCJDOTIFHLX7CX25EPZRSFF' where id=82; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='A93HJINGRDUQSPDDEO9JTQ3I5LZ7G29YXND123YYRRT0A1RLN870GBD1HSEI4JGOYSPRBU6QPX2H7Z1MRZ8Z2W1MNRZHPLKR0USOSDWLJD9B982AQGAQQBFEHM96H099B7WT8OEDAJTO181FW9N9WCMUOQE3NR0FCJHOLJDGM5COIV0Q2M467D04UU7M0BDF4SY8VZQT3Y3A7RLXAXD4351YNEOSQSQDM73U4EFC4SBDYJKIFK36FKS76C93WLNC6' where id=83; -update noar ti set v0='A93HJINGRDUQSPDDEO9JTQ3I5LZ7G29YXND123YYRRT0A1RLN870GBD1HSEI4JGOYSPRBU6QPX2H7Z1MRZ8Z2W1MNRZHPLKR0USOSDWLJD9B982AQGAQQBFEHM96H099B7WT8OEDAJTO181FW9N9WCMUOQE3NR0FCJHOLJDGM5COIV0Q2M467D04UU7M0BDF4SY8VZQT3Y3A7RLXAXD4351YNEOSQSQDM73U4EFC4SBDYJKIFK36FKS76C93WLNC6' where id=83; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='ENHVA29U3RP4WUZ395S1LOVG22X26CBAI0ZE342Q8CEWNLTO0GNF2GIN54OSEXK35AJ7I3FFQQCHYQQ7G27FJCYFD24920TSIWTJ9KQE0C6POSK8CKUC8T5061ILO4OJAVGQJE2P6CDUEZU93JA2HZ50NF3IXF5P24Q8V7ZYHS801487UNF6AOD2SI3YVVEW8M39BZEJ5ZLA66SCI18YQ48V02J91FDJO9H3LF8FYTF35SKYKW7DQZOU3OYRP5RLW' where id=83; -update noar ti set v1='ENHVA29U3RP4WUZ395S1LOVG22X26CBAI0ZE342Q8CEWNLTO0GNF2GIN54OSEXK35AJ7I3FFQQCHYQQ7G27FJCYFD24920TSIWTJ9KQE0C6POSK8CKUC8T5061ILO4OJAVGQJE2P6CDUEZU93JA2HZ50NF3IXF5P24Q8V7ZYHS801487UNF6AOD2SI3YVVEW8M39BZEJ5ZLA66SCI18YQ48V02J91FDJO9H3LF8FYTF35SKYKW7DQZOU3OYRP5RLW' where id=83; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='OCC0KHJO0C6BAIRDZOVJ6XWKDNEK3PH1OQTIUOF8WQRD31UAQOA51N9NXZYRCFUOGSQRADNMUMI4KAFI8IUIGG5XBGKF35QR2VQCSQS8OFLXIBZY2HC6E3CG55L5X8KBRFX1F5M9ISWLDJQOPP8QANTN7VSUYRA8R3JDXQ2KK0WMTSTAIY3ZBQUWT7O4IHP3WHGBQRL7M2FCP1TDK51MAO180U9RUUP97IKPDZZO0GTAL7MIRKIW03DGSXTG0AJTM' where id=83; -update noar ti set v2='OCC0KHJO0C6BAIRDZOVJ6XWKDNEK3PH1OQTIUOF8WQRD31UAQOA51N9NXZYRCFUOGSQRADNMUMI4KAFI8IUIGG5XBGKF35QR2VQCSQS8OFLXIBZY2HC6E3CG55L5X8KBRFX1F5M9ISWLDJQOPP8QANTN7VSUYRA8R3JDXQ2KK0WMTSTAIY3ZBQUWT7O4IHP3WHGBQRL7M2FCP1TDK51MAO180U9RUUP97IKPDZZO0GTAL7MIRKIW03DGSXTG0AJTM' where id=83; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='AQA45B652PEG93X2GUTBCA2CL7LG6DWQ3MW7YBI4T2M8JEEULAPKKS87K84MYCYLZTTGF7O9ZIQDDAM2FDKYCFGX4NOLQO4ZHO1Q1HBD64BWHOK7EC4H40585WRSYO6B8MXCW837TP0R9OX9JMZ6S23S4LUFB9KCN75CVAS34DWOUNHR0GAVXBGTVO0MHCL639JZNDJ8QOK9ASA7TEEIJNSXXZM7MVB96ED59E3JJZ4F62X6KISZOTRQPZPHCWTDZ' where id=83; -update noar ti set v3='AQA45B652PEG93X2GUTBCA2CL7LG6DWQ3MW7YBI4T2M8JEEULAPKKS87K84MYCYLZTTGF7O9ZIQDDAM2FDKYCFGX4NOLQO4ZHO1Q1HBD64BWHOK7EC4H40585WRSYO6B8MXCW837TP0R9OX9JMZ6S23S4LUFB9KCN75CVAS34DWOUNHR0GAVXBGTVO0MHCL639JZNDJ8QOK9ASA7TEEIJNSXXZM7MVB96ED59E3JJZ4F62X6KISZOTRQPZPHCWTDZ' where id=83; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='VHPHX3FNR8BD432JAU9JYZBEGTBEM8NYUVI1S3E5MBKLKN29314QG5XJ04QTEL61TSVO9QQHM3VIH3YHLAJ6QPZEXVSM34OLT5V9S91J10NZTG40XGUNKSTTC83TQ37DQZYKRNKPQWY5L4ZGK5D1V0C8BJGM9KEK43L2LL5UMQR7HWS78Z040DARY0C8X7PLG8J805DIB16LZMPVOKPGC7KWZAKFOF0AJK1M6LWJWO6IFT9PNRL73FSE0MFLYXGAJ' where id=84; -update noar ti set v0='VHPHX3FNR8BD432JAU9JYZBEGTBEM8NYUVI1S3E5MBKLKN29314QG5XJ04QTEL61TSVO9QQHM3VIH3YHLAJ6QPZEXVSM34OLT5V9S91J10NZTG40XGUNKSTTC83TQ37DQZYKRNKPQWY5L4ZGK5D1V0C8BJGM9KEK43L2LL5UMQR7HWS78Z040DARY0C8X7PLG8J805DIB16LZMPVOKPGC7KWZAKFOF0AJK1M6LWJWO6IFT9PNRL73FSE0MFLYXGAJ' where id=84; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='DA8A6LDDZ1LVOOLD12D58LQ0L4R1C54ONGOEJH62BMVJ6S9LGCF2X3CNFP7X3N31VQSQQKZN2ZFO9EBFS84URHR01YPS2PLT7DPF5U44O06V41B6ZJUPPZTQHO9XM9Z9001RVFHJL7BETRRFDEJM7829O9VELWKVXFQBT1MPCC857DJGVPWVO5H5RPNBA10F8KKORGXJUA6UU22MOFEIHD1TAK5XGO0K1S94UWBYZYUESCBH5DA6U77WEOU4G6NNX' where id=84; -update noar ti set v1='DA8A6LDDZ1LVOOLD12D58LQ0L4R1C54ONGOEJH62BMVJ6S9LGCF2X3CNFP7X3N31VQSQQKZN2ZFO9EBFS84URHR01YPS2PLT7DPF5U44O06V41B6ZJUPPZTQHO9XM9Z9001RVFHJL7BETRRFDEJM7829O9VELWKVXFQBT1MPCC857DJGVPWVO5H5RPNBA10F8KKORGXJUA6UU22MOFEIHD1TAK5XGO0K1S94UWBYZYUESCBH5DA6U77WEOU4G6NNX' where id=84; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='PJ5LUALL2G88Y3ZL176YQU77760USNMM7DQFCAURHMULAAJYXAZ3L9FSS2U59WXBWH0U9ZHUE7NK9EJK3FPIA3FTDS3SIY4152K1GXXBRZE00OKT04Y6W5ENMX6K0XRW0X6RGECKIYI22GX1XC4R14RN4SO9N7M1MFB12LH3J3UN4FIFYK69XKRPE4BWDUWCV7X5W878NHED2ENWETP79LKP2JK75E72B236NS6CWW3N24TIBGBOH3AO3LAPEU10D' where id=84; -update noar ti set v2='PJ5LUALL2G88Y3ZL176YQU77760USNMM7DQFCAURHMULAAJYXAZ3L9FSS2U59WXBWH0U9ZHUE7NK9EJK3FPIA3FTDS3SIY4152K1GXXBRZE00OKT04Y6W5ENMX6K0XRW0X6RGECKIYI22GX1XC4R14RN4SO9N7M1MFB12LH3J3UN4FIFYK69XKRPE4BWDUWCV7X5W878NHED2ENWETP79LKP2JK75E72B236NS6CWW3N24TIBGBOH3AO3LAPEU10D' where id=84; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='0FHAHXLKZRNNHJTOKUA302UYRBXTI3UY45XHDTF7719QRQWXHN3EF360U8YRPVPZ4RZ8VLSPQIKNHGPFKFX8593TT8OMWQRQH1TGH4DSNSHARZP419E7XG7NXP4ZS4L8Q2MTWGXK4K9GCMQV8UOIKDIMZ8MWSWJXKPQ7WFH9RTAPTA5OXR4F5ACOV84T2HGJPI43W3UNMJJ847H0IB1C3LWQXI61Y0YZGAW5KB7MW68KKQIHI1MIKYRU24JH9Z4LN' where id=84; -update noar ti set v3='0FHAHXLKZRNNHJTOKUA302UYRBXTI3UY45XHDTF7719QRQWXHN3EF360U8YRPVPZ4RZ8VLSPQIKNHGPFKFX8593TT8OMWQRQH1TGH4DSNSHARZP419E7XG7NXP4ZS4L8Q2MTWGXK4K9GCMQV8UOIKDIMZ8MWSWJXKPQ7WFH9RTAPTA5OXR4F5ACOV84T2HGJPI43W3UNMJJ847H0IB1C3LWQXI61Y0YZGAW5KB7MW68KKQIHI1MIKYRU24JH9Z4LN' where id=84; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='YMN4JN4O60G3GKYKGC45LL1YUC7VEJL6GMDCZJ2B0V9C8XYRQ7MEMZCP0VYS3QG8MZQIADP8OG9O1LQJJNTWJQ7E088KCUBFK0G8AL383HER588LS9OMVRYGRQZCCJTQI9V9H8EXT8B56TFLJ1B3AOA3ZW98AYNOYGZ30TJK7QITF7VTHYMLERXYTUDO036X4QN7SWP3QJVTWZGV6KICM1RK8SBH93RGR56I0FJ3IGEEDUO9QEJIWJTMOO88JEJF7' where id=85; -update noar ti set v0='YMN4JN4O60G3GKYKGC45LL1YUC7VEJL6GMDCZJ2B0V9C8XYRQ7MEMZCP0VYS3QG8MZQIADP8OG9O1LQJJNTWJQ7E088KCUBFK0G8AL383HER588LS9OMVRYGRQZCCJTQI9V9H8EXT8B56TFLJ1B3AOA3ZW98AYNOYGZ30TJK7QITF7VTHYMLERXYTUDO036X4QN7SWP3QJVTWZGV6KICM1RK8SBH93RGR56I0FJ3IGEEDUO9QEJIWJTMOO88JEJF7' where id=85; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='93YXNF3DWKVF61JYNWHWBJ2L68D8SWGM8EX7RIC05S64NR9VRSLKEQOKOMYZARSPCG6LS7BFPLUUT7USADWFI7HW71FR4KANRS2CB6BBWHI81P4V84FTL2UKTGXZBIJI4PUL38N5ABWCYPMC49UUTE0PPACP0B4BRAUV9OLCTC0WULUU0UKDBRAZUW784BO6ESB34W7JLVCKJDBP7YE32JXZ5GXRBUQJYJM779JRRI8WXFE15OF78LCRNVWUTTEAQ' where id=85; -update noar ti set v1='93YXNF3DWKVF61JYNWHWBJ2L68D8SWGM8EX7RIC05S64NR9VRSLKEQOKOMYZARSPCG6LS7BFPLUUT7USADWFI7HW71FR4KANRS2CB6BBWHI81P4V84FTL2UKTGXZBIJI4PUL38N5ABWCYPMC49UUTE0PPACP0B4BRAUV9OLCTC0WULUU0UKDBRAZUW784BO6ESB34W7JLVCKJDBP7YE32JXZ5GXRBUQJYJM779JRRI8WXFE15OF78LCRNVWUTTEAQ' where id=85; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='3QTKKLRXFDNGY27FTGIOTM2ODR7UI88BC8E6LOUXZUFWC0BFZRHBSMB1TTFEF7UBO8X3YI7DMDXYVSVWYAUGAYHVC7CEORJP5PSN6YN3JEJHDEBECLIKLMPYC8BDU3HNYZ0S9Q2CX915E7MQXNVIT8BYL1CA8D26S0QZV4YKT02DN80EX9DUTA7WGJK04ZU23MHX8DBCVESLKXDFG63ZCF8EDD54M6CLAXZ8J3DFFYNYS2XIWLH9MLYQLSYSTUO6C' where id=85; -update noar ti set v2='3QTKKLRXFDNGY27FTGIOTM2ODR7UI88BC8E6LOUXZUFWC0BFZRHBSMB1TTFEF7UBO8X3YI7DMDXYVSVWYAUGAYHVC7CEORJP5PSN6YN3JEJHDEBECLIKLMPYC8BDU3HNYZ0S9Q2CX915E7MQXNVIT8BYL1CA8D26S0QZV4YKT02DN80EX9DUTA7WGJK04ZU23MHX8DBCVESLKXDFG63ZCF8EDD54M6CLAXZ8J3DFFYNYS2XIWLH9MLYQLSYSTUO6C' where id=85; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='B8049LHH5FY9AO6WH71L37MBXUHYT4624TX7ZUP5XNL6GF938UC6FB6BTLY8TWHRPW1ZTCIRXS58BWSDN0UO0WX2MZ3U65APTH9IGF650HNRTXHXZFOB1IPQPX239CJXIBD4ECS8MWKN62OO3LEBIE2A454W74X14XE7X7X0068E8L7Q3623NEMWZ1FZKW63M90X787THKZ4FCVVNL76HKXTNXFSDX1V5JTYF41F7XANF4QNZ4XJAFZTIAT3J34SI' where id=85; -update noar ti set v3='B8049LHH5FY9AO6WH71L37MBXUHYT4624TX7ZUP5XNL6GF938UC6FB6BTLY8TWHRPW1ZTCIRXS58BWSDN0UO0WX2MZ3U65APTH9IGF650HNRTXHXZFOB1IPQPX239CJXIBD4ECS8MWKN62OO3LEBIE2A454W74X14XE7X7X0068E8L7Q3623NEMWZ1FZKW63M90X787THKZ4FCVVNL76HKXTNXFSDX1V5JTYF41F7XANF4QNZ4XJAFZTIAT3J34SI' where id=85; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='07PA99K9Y08R1MHMN8ZPHNZYDDFYKO0PQLHFPQQH4P727IA16R5VO6CJDBQFXI0EC2VMNRITR3WV9HPGJDRIOHUJ00G4S8F5OF8WQNTGC2HPTD9EFI4CK0OVKROTPEEMYP97LEUFWW0GGX4AKXAH7S0JWHJT2N9YU7VPQ9TX7NU2I6O05V7RNS0MYXRSDC3CXXPHXKURL0P42O8GB9XKEXPWZWYEJB6SPGDQU0B9RT8X6VVAQACJYMNY2EU5KKRFH' where id=86; -update noar ti set v0='07PA99K9Y08R1MHMN8ZPHNZYDDFYKO0PQLHFPQQH4P727IA16R5VO6CJDBQFXI0EC2VMNRITR3WV9HPGJDRIOHUJ00G4S8F5OF8WQNTGC2HPTD9EFI4CK0OVKROTPEEMYP97LEUFWW0GGX4AKXAH7S0JWHJT2N9YU7VPQ9TX7NU2I6O05V7RNS0MYXRSDC3CXXPHXKURL0P42O8GB9XKEXPWZWYEJB6SPGDQU0B9RT8X6VVAQACJYMNY2EU5KKRFH' where id=86; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='MGJOO4EAVA6XK9GVC0I5FGJQ8R88FHA4PXPS0F57S06VJGWVW30VVS426Q2XSZELYBJKOT008PA4R64HJE19QQD8OQ4WHLMY9UH47WT14M10CTQWHLFWP01JXIXBHEMAKCBF1QB6I6D4OK62FMWXIP20BQWL2T13FJ8Y3Q9230T8SK2V4GO2HC9706YSRN75X3IBO6JRTSJ0YO4NBEIOFVKQZ6YD7OUOPU6OV4OK8L82JHUU4W6A8UFHJPV7GTYPV' where id=86; -update noar ti set v1='MGJOO4EAVA6XK9GVC0I5FGJQ8R88FHA4PXPS0F57S06VJGWVW30VVS426Q2XSZELYBJKOT008PA4R64HJE19QQD8OQ4WHLMY9UH47WT14M10CTQWHLFWP01JXIXBHEMAKCBF1QB6I6D4OK62FMWXIP20BQWL2T13FJ8Y3Q9230T8SK2V4GO2HC9706YSRN75X3IBO6JRTSJ0YO4NBEIOFVKQZ6YD7OUOPU6OV4OK8L82JHUU4W6A8UFHJPV7GTYPV' where id=86; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='0LZB9SU9TDHNNTS3IJ7RA3ABA91ZGHYNMC9JV8GU75YIA0TVVCK7UIQIHR738T5G0RXHYTNTK3NSJ0MW95JWY7ANVL7X16ON0FJ4RIALH7U06RSI9GHWGU2A00G5SMKL0SM0ANNB39SFN2ZPO03IALQ6MNJW6IN0VG9EGGKBLI9DCJ7F9ZC7V7ZPI5696F4T3VGI54CSDANPRB39UXCRW1GJDQIXVTK4WAI8XCBU0UJA8RFSYW6ON6SI9OJQIX4OY' where id=86; -update noar ti set v2='0LZB9SU9TDHNNTS3IJ7RA3ABA91ZGHYNMC9JV8GU75YIA0TVVCK7UIQIHR738T5G0RXHYTNTK3NSJ0MW95JWY7ANVL7X16ON0FJ4RIALH7U06RSI9GHWGU2A00G5SMKL0SM0ANNB39SFN2ZPO03IALQ6MNJW6IN0VG9EGGKBLI9DCJ7F9ZC7V7ZPI5696F4T3VGI54CSDANPRB39UXCRW1GJDQIXVTK4WAI8XCBU0UJA8RFSYW6ON6SI9OJQIX4OY' where id=86; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='PMV0PY6F1MMZVICFX1NIBKQ7TGHWN5TG7Q6084EAN1S0OPFQGINF5EOOFEJPDDXWTTCN9OZC7HSHBBOXW18GG0XAGBBIJAK7HHRAZOMTYVHX7CJYHBW0NPQZ4N0ICUD6TLAHXP8RRYCLVH5UQ0L1CSXTBWQWZNW8GCKURBA0FAN5XJIK57YCF69OALKB1BRL7N5NLPIJ7OHC0E2V65TJURH9Y8CXDRMOOGUJSGHYLS7TGZ34DEIQY0P1H4NT3MF3Y' where id=86; -update noar ti set v3='PMV0PY6F1MMZVICFX1NIBKQ7TGHWN5TG7Q6084EAN1S0OPFQGINF5EOOFEJPDDXWTTCN9OZC7HSHBBOXW18GG0XAGBBIJAK7HHRAZOMTYVHX7CJYHBW0NPQZ4N0ICUD6TLAHXP8RRYCLVH5UQ0L1CSXTBWQWZNW8GCKURBA0FAN5XJIK57YCF69OALKB1BRL7N5NLPIJ7OHC0E2V65TJURH9Y8CXDRMOOGUJSGHYLS7TGZ34DEIQY0P1H4NT3MF3Y' where id=86; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='88TCH8BT2A3WQ60BCG7RR6B923JDQ8L26NS8X7J2UPM0AQVH5A0SC1L6V5312Y3KP2RDWHXW1DOW0NSXJEOD1I7YEU8YCCJ54KWGMSMNP3DA6RM4WHGYPVK6OE9IZ3LN3K7L7KZBLSQQFQW2O4XEFL0GYWTJ1ITLTZ1HKKGRNWUNBIV5R1W2CH0B3D616L8B2CWXA49DNCEDGNS2E17PI0FGA49XVZW6JT2PR7T9J8LAMT5NQIUFCMIJ8ZYGZYGFT' where id=87; -update noar ti set v0='88TCH8BT2A3WQ60BCG7RR6B923JDQ8L26NS8X7J2UPM0AQVH5A0SC1L6V5312Y3KP2RDWHXW1DOW0NSXJEOD1I7YEU8YCCJ54KWGMSMNP3DA6RM4WHGYPVK6OE9IZ3LN3K7L7KZBLSQQFQW2O4XEFL0GYWTJ1ITLTZ1HKKGRNWUNBIV5R1W2CH0B3D616L8B2CWXA49DNCEDGNS2E17PI0FGA49XVZW6JT2PR7T9J8LAMT5NQIUFCMIJ8ZYGZYGFT' where id=87; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='8MH9FXKUB9191VRDMZ2DVPLA2LO0EB8PBRZMMAVCTQPJ4EGL1F01P66W7CNR39ZYJDP73LZTW2I76VP8JBH7VCP6NMI1QBN20JE080DTPCO7DQMZ7SPXBOKUSEU2S35GRR3FYS16U20R2UR87OKVFWSQO8DT3PL3FG49BHS56PY66TY6XXNL4EXE68XX2CB2IYKNYEP5TXCDUYGAY44OVHC288U97G0Q4WXAGMTI5H79FDLIFIMBU2K1L1PY0OR2G' where id=87; -update noar ti set v1='8MH9FXKUB9191VRDMZ2DVPLA2LO0EB8PBRZMMAVCTQPJ4EGL1F01P66W7CNR39ZYJDP73LZTW2I76VP8JBH7VCP6NMI1QBN20JE080DTPCO7DQMZ7SPXBOKUSEU2S35GRR3FYS16U20R2UR87OKVFWSQO8DT3PL3FG49BHS56PY66TY6XXNL4EXE68XX2CB2IYKNYEP5TXCDUYGAY44OVHC288U97G0Q4WXAGMTI5H79FDLIFIMBU2K1L1PY0OR2G' where id=87; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='QNNPUX98IZ1946B7Y0FSA753076LCPYH1LF69OFIAK95LHFSHPDVFV8X00WLI6G8OQQMN1BNP2GUCLL0P1EE90A73RHO1FN7X27X0Z7B64BHNIIK63BQ1EZM85QTXT9CKHW63DB8ZV093SKGMM9QE318O93H1QUYVD8NYS2CGGHXP832A5YX1IO5HY8917LF5TSC7U2WSG1UPPYHJTHQ01ZFAW1XKZBEAIEON8D8GLJSC5FWI7P93FO0BTV3F2AL0' where id=87; -update noar ti set v2='QNNPUX98IZ1946B7Y0FSA753076LCPYH1LF69OFIAK95LHFSHPDVFV8X00WLI6G8OQQMN1BNP2GUCLL0P1EE90A73RHO1FN7X27X0Z7B64BHNIIK63BQ1EZM85QTXT9CKHW63DB8ZV093SKGMM9QE318O93H1QUYVD8NYS2CGGHXP832A5YX1IO5HY8917LF5TSC7U2WSG1UPPYHJTHQ01ZFAW1XKZBEAIEON8D8GLJSC5FWI7P93FO0BTV3F2AL0' where id=87; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='K3ZM9BYF6TPV9G5OLX9MC1VE72RJH3EUK00RSCMTXRPOFPJFVAMPPL449BSYZISR9Z33PQGEZ8TOHW5BNPBKBBUWE94EHCS2DW8CBDIREK6082LJ6GZUTCQL6BEU90Q5MOXE2A044XT5IYZDM1KP9MEHPY37DRR1B769VWT5H8LXV0I3TBRYM116DQF2C6MAM15EJW14JRQT9CVAESURHIJD2X41OL70HMA37GJF34YEBMEBPP9T2RFWW4JUFVA8N' where id=87; -update noar ti set v3='K3ZM9BYF6TPV9G5OLX9MC1VE72RJH3EUK00RSCMTXRPOFPJFVAMPPL449BSYZISR9Z33PQGEZ8TOHW5BNPBKBBUWE94EHCS2DW8CBDIREK6082LJ6GZUTCQL6BEU90Q5MOXE2A044XT5IYZDM1KP9MEHPY37DRR1B769VWT5H8LXV0I3TBRYM116DQF2C6MAM15EJW14JRQT9CVAESURHIJD2X41OL70HMA37GJF34YEBMEBPP9T2RFWW4JUFVA8N' where id=87; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='131I42L7FIJGNQ7KYY88QWDKYY6SHJX405VSN6JHPM6WS96NAF806N784S476OF5GPLELZNMZ5HUK5R5NTB5ANVSSDMG2NUY98EWW6YQBZ1BMDBBXHD87MCH2UCUJLEKY2TWKIPIJRK4Z85JVWCT7CF5NG65N7O63DV1HC1H55C00F2NUTBL4BUILRAOZ20KFSTX8VUDUSXC03K6X8CMGRTWS7Y891TX7ATCIJPTN3O4YETH2M5NF0V5Q7C5VF01F' where id=88; -update noar ti set v0='131I42L7FIJGNQ7KYY88QWDKYY6SHJX405VSN6JHPM6WS96NAF806N784S476OF5GPLELZNMZ5HUK5R5NTB5ANVSSDMG2NUY98EWW6YQBZ1BMDBBXHD87MCH2UCUJLEKY2TWKIPIJRK4Z85JVWCT7CF5NG65N7O63DV1HC1H55C00F2NUTBL4BUILRAOZ20KFSTX8VUDUSXC03K6X8CMGRTWS7Y891TX7ATCIJPTN3O4YETH2M5NF0V5Q7C5VF01F' where id=88; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='EWUPKULP6UG5MF1MRX86EMIP7TGZ680BG1R9VJQZBNB94TDK02VWSIT57KVCWSM1YOQ61YEKEG4PAY3PRA9QBXPEC6GIPZ0FASZLADBU9YSKN3FUH48CH0578JQAQAA5ECX6UB0OZ91TR9WWSIKQLEGGFKNH2MFSH6MRL0QTMAZYMLIY2ZAT6LK98JZVGJSDAO90SW4Z16RLIGZI3AD5VGRNMWG7BQG1PMI8C2UNUVJC4C1L60Z2SP1NL8UW6PA94' where id=88; -update noar ti set v1='EWUPKULP6UG5MF1MRX86EMIP7TGZ680BG1R9VJQZBNB94TDK02VWSIT57KVCWSM1YOQ61YEKEG4PAY3PRA9QBXPEC6GIPZ0FASZLADBU9YSKN3FUH48CH0578JQAQAA5ECX6UB0OZ91TR9WWSIKQLEGGFKNH2MFSH6MRL0QTMAZYMLIY2ZAT6LK98JZVGJSDAO90SW4Z16RLIGZI3AD5VGRNMWG7BQG1PMI8C2UNUVJC4C1L60Z2SP1NL8UW6PA94' where id=88; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='5YH8LTLGSJ0D6LUU5JQEAOJ34R5Y3XDZOR8ZYWE1DKW0HPR6RLSVCNAV377YCHPR0BBJKVEOAG07XAORX1119SWM72S0CEPCYMV3N9TLWTPJSPOGX0BJJ3UZKQZJJUTMLL6K5N1UIKWXBZNCOWMMJUVRT4CLFWMO7253IL3MO8GCNG3PJ4XN5XSGM5QQ9VM3P3RGDW03OSBZE8NRKH7PWZX4M5PPTB29D44PL6DRO7TRHK2XZ388NUJTGW5WNF9UN' where id=88; -update noar ti set v2='5YH8LTLGSJ0D6LUU5JQEAOJ34R5Y3XDZOR8ZYWE1DKW0HPR6RLSVCNAV377YCHPR0BBJKVEOAG07XAORX1119SWM72S0CEPCYMV3N9TLWTPJSPOGX0BJJ3UZKQZJJUTMLL6K5N1UIKWXBZNCOWMMJUVRT4CLFWMO7253IL3MO8GCNG3PJ4XN5XSGM5QQ9VM3P3RGDW03OSBZE8NRKH7PWZX4M5PPTB29D44PL6DRO7TRHK2XZ388NUJTGW5WNF9UN' where id=88; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='6962IUYMMANZF4VQCQR9W0OA9PXEL6VA2ZOQULH3J8EASPTD45V45O2JPHVXTX7M3OMHR4AXPTRLU9CRZR091K7L59ZAVV4KCXAQ0I0OY7Z5Y32IABDWIZY5T034EKWQ68BHS1020CRWLW8BXBJV6JI2204IQ4KY3CIP619PUTN42QBGM9JO0ANCGBAOLH9V4DQYCQM3FY4YQ0IJM7PCZEFAJGOAR1H7P5L0YL9L12R6EYLKRN2U6M679PVVKN4J2' where id=88; -update noar ti set v3='6962IUYMMANZF4VQCQR9W0OA9PXEL6VA2ZOQULH3J8EASPTD45V45O2JPHVXTX7M3OMHR4AXPTRLU9CRZR091K7L59ZAVV4KCXAQ0I0OY7Z5Y32IABDWIZY5T034EKWQ68BHS1020CRWLW8BXBJV6JI2204IQ4KY3CIP619PUTN42QBGM9JO0ANCGBAOLH9V4DQYCQM3FY4YQ0IJM7PCZEFAJGOAR1H7P5L0YL9L12R6EYLKRN2U6M679PVVKN4J2' where id=88; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='BRYU5QKKR83PAV2SQG7T3S0D3YWEDNQMR59GTKOJH6KRFAGYYRL0C9OUR3OTXLTWM06UCWG89KIQN7G91ZKGUIQMY6HX2RLJ66U2TI4WUJG929BTQF57ZS6HSRDTPE5KGXRY937O21GI6E8DY44SFREGU9NQH514SNU8U4KV10RCYHTUKW29CZAH9V9RU6ME6QAO06Z4IQGRSFRRLOP8ZLJWK1IWUXUK72M8A71A3LGETXOGYOAYH5R4E1D1XCT39' where id=89; -update noar ti set v0='BRYU5QKKR83PAV2SQG7T3S0D3YWEDNQMR59GTKOJH6KRFAGYYRL0C9OUR3OTXLTWM06UCWG89KIQN7G91ZKGUIQMY6HX2RLJ66U2TI4WUJG929BTQF57ZS6HSRDTPE5KGXRY937O21GI6E8DY44SFREGU9NQH514SNU8U4KV10RCYHTUKW29CZAH9V9RU6ME6QAO06Z4IQGRSFRRLOP8ZLJWK1IWUXUK72M8A71A3LGETXOGYOAYH5R4E1D1XCT39' where id=89; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='SH1GPNR8TGM4YSB1DQDHLEANT329WTK199FQEXJW3TMAEM09UWKKYHME3LBDY0M8YI1ASZDK87QN7M7Z97BBBBII6BI7YX1XAMQP5G3RL311OW0C3BCK3DA28KW69EVUPD59NOPQ0SIDNJCQ0PEX523XJCG4WSYAMQFMJA1PL5DLIC3C0RNQM819C906J6593Z34XJH0AQSY0YNAV14UGD8MAEPD84HON0CUZU7M3T6CG7023Z4SUQUSARCNW095Z' where id=89; -update noar ti set v1='SH1GPNR8TGM4YSB1DQDHLEANT329WTK199FQEXJW3TMAEM09UWKKYHME3LBDY0M8YI1ASZDK87QN7M7Z97BBBBII6BI7YX1XAMQP5G3RL311OW0C3BCK3DA28KW69EVUPD59NOPQ0SIDNJCQ0PEX523XJCG4WSYAMQFMJA1PL5DLIC3C0RNQM819C906J6593Z34XJH0AQSY0YNAV14UGD8MAEPD84HON0CUZU7M3T6CG7023Z4SUQUSARCNW095Z' where id=89; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='CZPY45G01J75DBNI6SSSTQ9GJUEHR22QVYTCTRDH0ZXHWKET6I4KRVB3ND5LC9BQJONLVUYD4J6V83K3K37LVUF5Y9DALIGE5N4OM50TEZ0VQGVXN48W7BMAV089ZT1A9XPRRW6Q6J676GMDKRNX7YTM4Y1AK62SVRO534DF5EII753729NSPPLRW9RO2F1MJN7FFTFL2F8XKE42K3L0QQOFKY1JVIVCFV160ENRLUEU4XQB097S344R5XT1TOX3Z' where id=89; -update noar ti set v2='CZPY45G01J75DBNI6SSSTQ9GJUEHR22QVYTCTRDH0ZXHWKET6I4KRVB3ND5LC9BQJONLVUYD4J6V83K3K37LVUF5Y9DALIGE5N4OM50TEZ0VQGVXN48W7BMAV089ZT1A9XPRRW6Q6J676GMDKRNX7YTM4Y1AK62SVRO534DF5EII753729NSPPLRW9RO2F1MJN7FFTFL2F8XKE42K3L0QQOFKY1JVIVCFV160ENRLUEU4XQB097S344R5XT1TOX3Z' where id=89; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='Q1SCK8LHFCEOUSR3VFDPFA3NOG3OSR9NHL8QW50OMU73FD3M4YXQ3YAQQIK03M23FNFQSV3HXRDZP1N1ZHECG2D41ORP3QITSO3TKW23N0CI9I7571T66KAO5YTMK6TJW84CPB7J9R4U4QUZBEN2AZIPE7WBIQBB3FNLN1YC79OLTUZH0ZO3K84EKXR3VFBINZY8N6ICOCSSN4X10QDBNMIT8LPT6N8KEHA4FGMB47E9KSI26G4WC0K8EYLHG6R5Q' where id=89; -update noar ti set v3='Q1SCK8LHFCEOUSR3VFDPFA3NOG3OSR9NHL8QW50OMU73FD3M4YXQ3YAQQIK03M23FNFQSV3HXRDZP1N1ZHECG2D41ORP3QITSO3TKW23N0CI9I7571T66KAO5YTMK6TJW84CPB7J9R4U4QUZBEN2AZIPE7WBIQBB3FNLN1YC79OLTUZH0ZO3K84EKXR3VFBINZY8N6ICOCSSN4X10QDBNMIT8LPT6N8KEHA4FGMB47E9KSI26G4WC0K8EYLHG6R5Q' where id=89; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='1L1W7ANM6CLDIZ148DXZ5IIHL7UX92HNYZ3F5OXCI5QJ6SBPPO7GCC8PIJ9O5HPV0939V0RHWU591TET75M313Z6951U1ZI26BBEM05X66O67TTDLBXJGLEDLRO07KJRDL2445QQGFOU57ZR3JXCG6TUFW8FGVGO9X702FRLCNGCL031UJ5PV9JTKKET6FWSU7Z28ARAQD0IULOUHHPZOXCVCR2X158CGDULERO8DM8BQA1VZN9IZJXMBKUAQ3ZC7' where id=90; -update noar ti set v0='1L1W7ANM6CLDIZ148DXZ5IIHL7UX92HNYZ3F5OXCI5QJ6SBPPO7GCC8PIJ9O5HPV0939V0RHWU591TET75M313Z6951U1ZI26BBEM05X66O67TTDLBXJGLEDLRO07KJRDL2445QQGFOU57ZR3JXCG6TUFW8FGVGO9X702FRLCNGCL031UJ5PV9JTKKET6FWSU7Z28ARAQD0IULOUHHPZOXCVCR2X158CGDULERO8DM8BQA1VZN9IZJXMBKUAQ3ZC7' where id=90; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='R4GXHHW8HUA2NE93YTIBLWISI09ZXUWT4R1BQZS6LYY7TGRM13RAB2526IO5P9CUJB0PHTK6DHYPI4QA187AAQDPYJMI5XUH7ZU86S4ZYYVM8CB25YEBOJ3DEVZ2HTCD4R9LBBPX6SMXERV3EI4YTFFFD3KUVQS6G6KJNYWYNKCISSF438F9M1CF287MXYP8NIUJOU9AJ86X82GU2TSLBLBNJWJGGQKLOG3PNPC7UEQ172Z2G15I2DQJUC10BFFOR' where id=90; -update noar ti set v1='R4GXHHW8HUA2NE93YTIBLWISI09ZXUWT4R1BQZS6LYY7TGRM13RAB2526IO5P9CUJB0PHTK6DHYPI4QA187AAQDPYJMI5XUH7ZU86S4ZYYVM8CB25YEBOJ3DEVZ2HTCD4R9LBBPX6SMXERV3EI4YTFFFD3KUVQS6G6KJNYWYNKCISSF438F9M1CF287MXYP8NIUJOU9AJ86X82GU2TSLBLBNJWJGGQKLOG3PNPC7UEQ172Z2G15I2DQJUC10BFFOR' where id=90; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='63VGP2SCNVZAYTH1KDUK5LLLTE20FWEL4Z1XYJIT8QWQEDM68FPDKXF6MNDI2A5TOOE9UHPOVR9BDTWLSCQ5TTFU2KR7EFL4A22F2684BHUL5IA2RXN3PEHZUMIWJV0INMXM8UOVY1K5UNRHSWKIK7RQ61MK8891GAXMB2ISK4U2YYB46DYNQXX87QBGHX8376UTVZQZJYDBREBHE5TBLARCMYUW28N3QZXJ2PC8BWJ7VRKJS0Q2MYLTWTE9FY1ZK' where id=90; -update noar ti set v2='63VGP2SCNVZAYTH1KDUK5LLLTE20FWEL4Z1XYJIT8QWQEDM68FPDKXF6MNDI2A5TOOE9UHPOVR9BDTWLSCQ5TTFU2KR7EFL4A22F2684BHUL5IA2RXN3PEHZUMIWJV0INMXM8UOVY1K5UNRHSWKIK7RQ61MK8891GAXMB2ISK4U2YYB46DYNQXX87QBGHX8376UTVZQZJYDBREBHE5TBLARCMYUW28N3QZXJ2PC8BWJ7VRKJS0Q2MYLTWTE9FY1ZK' where id=90; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='4XXV8VTI8TV1DJALD6ZQTAXR0SE05D7N5KWRZZ8VZFL71XB33CZWVO9V0C8UFCBGCGF4I2VWPXSFNSFMM4WWS0NWWRW2HGLWJMBNWNCL47IC6YMT2074VSO1NJFW8QHZ1S7LEH1DH4CD8ROCP4K5C9PN99ID4A545NDKII8O3WZLKH3YXC6KGAGC1A4OFBPKKO1H6QANDJJEPI4HU6DED0NB4FHWB86YIOKR9QK830ZS3XTHLX9UQ6HUHIUSTSXO5' where id=90; -update noar ti set v3='4XXV8VTI8TV1DJALD6ZQTAXR0SE05D7N5KWRZZ8VZFL71XB33CZWVO9V0C8UFCBGCGF4I2VWPXSFNSFMM4WWS0NWWRW2HGLWJMBNWNCL47IC6YMT2074VSO1NJFW8QHZ1S7LEH1DH4CD8ROCP4K5C9PN99ID4A545NDKII8O3WZLKH3YXC6KGAGC1A4OFBPKKO1H6QANDJJEPI4HU6DED0NB4FHWB86YIOKR9QK830ZS3XTHLX9UQ6HUHIUSTSXO5' where id=90; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='FWVLA52VDA5RM3ASLMI5F264IB2WSYYEOUGXEZNJ1N9INIYY8ZSKHMWI7HF9CZ7O746WPOQ4KH04318VOQORYW0KLMGKQJ2A87BBT19BG9YDOB4DNV1GINKSZ5GPKDM0G3H7ON0G8HKIR71M3MCYJK8S6R5O40CM3R3FCU0QL9D34O1CQSS1HCXVCXUM9EYLN6N0RCBPF6DO5QXRY2OJRG7FXFFTNZ01UMPMSGLNRLJ9DX0ZGF8942YQNI6ZPVLRJ' where id=91; -update noar ti set v0='FWVLA52VDA5RM3ASLMI5F264IB2WSYYEOUGXEZNJ1N9INIYY8ZSKHMWI7HF9CZ7O746WPOQ4KH04318VOQORYW0KLMGKQJ2A87BBT19BG9YDOB4DNV1GINKSZ5GPKDM0G3H7ON0G8HKIR71M3MCYJK8S6R5O40CM3R3FCU0QL9D34O1CQSS1HCXVCXUM9EYLN6N0RCBPF6DO5QXRY2OJRG7FXFFTNZ01UMPMSGLNRLJ9DX0ZGF8942YQNI6ZPVLRJ' where id=91; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='8VVJ3ZIVBBM8OH9SL8O1CIC5HON4HFPLWHYM55KM1FBCVAW327EBT80RDUCJLV1615NOCA0TFBL6CYRPKHL6ZMJ1A2FIT50KV7KFN6CGUJUYLT8J2XGY7AUMHOT2QR6OXO052TEMSKQ3UU04YH20BQ37MG0CYHY9QZ77VYRTZ9N0T8RR4779PRS0OMBUNU7Y6W9CU0AS6PSJPADV1MQ0K0H9BF5DZFFHVFMTXHMEQR0WPL76UG3XUWALI3SV9L7NE' where id=91; -update noar ti set v1='8VVJ3ZIVBBM8OH9SL8O1CIC5HON4HFPLWHYM55KM1FBCVAW327EBT80RDUCJLV1615NOCA0TFBL6CYRPKHL6ZMJ1A2FIT50KV7KFN6CGUJUYLT8J2XGY7AUMHOT2QR6OXO052TEMSKQ3UU04YH20BQ37MG0CYHY9QZ77VYRTZ9N0T8RR4779PRS0OMBUNU7Y6W9CU0AS6PSJPADV1MQ0K0H9BF5DZFFHVFMTXHMEQR0WPL76UG3XUWALI3SV9L7NE' where id=91; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='C3Z1IFT3RZWXJGZA9DDKQQ881R0PLTHTEFDQ2VDY2209TOVOSCT1MA28WBYKQ37HOI9P6KD00KLNAK00G98OZ8ARF5ZM072HRU5ATNBBNRE1V5K6FRBUHGED5788H0D0KV26YKXR3CAYVRKN5W5YIOBE8V44UUC0GZDLVDRGYHXL2TUCWD3A9DIS8NPVL2V1A9063B1BZST0U736FS0BVNJSP9I8V8XFWCFS3QTM7QSNHMPUIL70BL5J2QK7ACONM' where id=91; -update noar ti set v2='C3Z1IFT3RZWXJGZA9DDKQQ881R0PLTHTEFDQ2VDY2209TOVOSCT1MA28WBYKQ37HOI9P6KD00KLNAK00G98OZ8ARF5ZM072HRU5ATNBBNRE1V5K6FRBUHGED5788H0D0KV26YKXR3CAYVRKN5W5YIOBE8V44UUC0GZDLVDRGYHXL2TUCWD3A9DIS8NPVL2V1A9063B1BZST0U736FS0BVNJSP9I8V8XFWCFS3QTM7QSNHMPUIL70BL5J2QK7ACONM' where id=91; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='GM8NUPGQZQXY8MJ4IFSCNJEDHXF3OY1HP3U7ER0J9AOVN5PFULM0440NGDOK5ZVBOFWP611KWHTC1CCLFCA76HRXUPN6ZYU0QV0EBI9XNT9NA6FW4NFIKZO6RN4GCFT4ZGFM0R2KB2S2FMUTH7JRZI30OOM682NQUAZY5BU3HXDBQOGQZ47YQWJZOHKNE09A69RNYI6FA4BL4ZIDHUQTPQ2IHBRQTZAIKAMBXYEV3KLCFXSO9N1K4VVYH6BSE26Z6' where id=91; -update noar ti set v3='GM8NUPGQZQXY8MJ4IFSCNJEDHXF3OY1HP3U7ER0J9AOVN5PFULM0440NGDOK5ZVBOFWP611KWHTC1CCLFCA76HRXUPN6ZYU0QV0EBI9XNT9NA6FW4NFIKZO6RN4GCFT4ZGFM0R2KB2S2FMUTH7JRZI30OOM682NQUAZY5BU3HXDBQOGQZ47YQWJZOHKNE09A69RNYI6FA4BL4ZIDHUQTPQ2IHBRQTZAIKAMBXYEV3KLCFXSO9N1K4VVYH6BSE26Z6' where id=91; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='RVV1H440G7IF2JHF0GI37EP291FYD9RXRP5ST5Z1GG41J1Y6R1ELJZSUHMKQ52H92MFE72OI40AJKSPHPKTGW5KKC83OSWYFU2YMY2KNNYXP2A2F5LBBB9NYVALIY3J12YLHQR9C3N8BUF7A9OMOA9SY8FAVNUVTYOYWCJGKLXCUYNUWD47WLQAILOQT6LROTT9Z6RY6FBXGYIEA6VYJD69SY7752NEBEZIAG4YB99TIIAE1ZKNBONZ134F1X39JD' where id=92; -update noar ti set v0='RVV1H440G7IF2JHF0GI37EP291FYD9RXRP5ST5Z1GG41J1Y6R1ELJZSUHMKQ52H92MFE72OI40AJKSPHPKTGW5KKC83OSWYFU2YMY2KNNYXP2A2F5LBBB9NYVALIY3J12YLHQR9C3N8BUF7A9OMOA9SY8FAVNUVTYOYWCJGKLXCUYNUWD47WLQAILOQT6LROTT9Z6RY6FBXGYIEA6VYJD69SY7752NEBEZIAG4YB99TIIAE1ZKNBONZ134F1X39JD' where id=92; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='E5PPN4GMT8RKWB2ZCX0TRLNJLJRVPKB9WKG46DYD3ITX1EI1ABX0KPQ01LWYSSCFRCNRXK3NPGHYZ47QDABF07LK1HNC2NM3OSQW13TB9JPKQVS2I9NC7VH47P3BAYMQYLKQP16LSZJSC92U098ULCRDJO2DJXTDBQ0A5YRV45L525UPZ1RAEXQE4UIS6H8W1Y3660IY5MOKBJWIFUFKU94IB4IFIDJ44FE0H99ZNXA4LD3075A4ZJYBZN5JQCT34' where id=92; -update noar ti set v1='E5PPN4GMT8RKWB2ZCX0TRLNJLJRVPKB9WKG46DYD3ITX1EI1ABX0KPQ01LWYSSCFRCNRXK3NPGHYZ47QDABF07LK1HNC2NM3OSQW13TB9JPKQVS2I9NC7VH47P3BAYMQYLKQP16LSZJSC92U098ULCRDJO2DJXTDBQ0A5YRV45L525UPZ1RAEXQE4UIS6H8W1Y3660IY5MOKBJWIFUFKU94IB4IFIDJ44FE0H99ZNXA4LD3075A4ZJYBZN5JQCT34' where id=92; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='0N9AJV21Y70A87DVQMZGAVG663IMW936TIKECOWLCE5JPVRWFNQFZS8JDXIPIY5UOQETRJNDL9EUS96IRD15P2NIHA0B91MIKZMHOTM2ZQK3XBDFLD3411U38USXOYX35YXY2LLY31170T7H5MZAOTAIV4L791D0D9B5U2684CKRFY58Q1T41SP8ZCCU35N5EZ71EPTVXTMFO194MKR1Z8MJIED2KQ373NNG4ALI028MZBAJ1J3J7N3RTECPSS8S1' where id=92; -update noar ti set v2='0N9AJV21Y70A87DVQMZGAVG663IMW936TIKECOWLCE5JPVRWFNQFZS8JDXIPIY5UOQETRJNDL9EUS96IRD15P2NIHA0B91MIKZMHOTM2ZQK3XBDFLD3411U38USXOYX35YXY2LLY31170T7H5MZAOTAIV4L791D0D9B5U2684CKRFY58Q1T41SP8ZCCU35N5EZ71EPTVXTMFO194MKR1Z8MJIED2KQ373NNG4ALI028MZBAJ1J3J7N3RTECPSS8S1' where id=92; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='5NRG9TPQJFGZPU55R7HQ7DAE2WMTN6S3HGTZAN8HBIMFKDCG3DTAP4AWGSKEBBFYJGG8RGTYXWIBBVPHW66F4HLSFZBXLINYJZ8F8DNUTF0ZERIIOGRSQFXPMD0F3D2LHRJU14JSQ4COTDYT87Y79ZX8ZV5NI2H5SP1YM9Y9C8UN0YCBNMVRKRVPQ3AYQVEW1O4QB3BHXZKGGGRLYX2ULCR2ONSGYVES6JXWO4O6KA68ACHXRT5F28FAMQNNEV5GC' where id=92; -update noar ti set v3='5NRG9TPQJFGZPU55R7HQ7DAE2WMTN6S3HGTZAN8HBIMFKDCG3DTAP4AWGSKEBBFYJGG8RGTYXWIBBVPHW66F4HLSFZBXLINYJZ8F8DNUTF0ZERIIOGRSQFXPMD0F3D2LHRJU14JSQ4COTDYT87Y79ZX8ZV5NI2H5SP1YM9Y9C8UN0YCBNMVRKRVPQ3AYQVEW1O4QB3BHXZKGGGRLYX2ULCR2ONSGYVES6JXWO4O6KA68ACHXRT5F28FAMQNNEV5GC' where id=92; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='8OGUBG5PSFM9YFCRNYE1P416D66N991D3KNN79ITKN9Q4B37N7CPZVYP1BSTV60QHPWFGIUDRZKQWEG797PZ4KVX9XM0JI1MCPADAKTQYHJXIGB81Y3DLT8T7LMBWFSJ122KF8MQ3MX2WN68WWSSELG62H40WNTXORE23MM3RDK77OKCEH9ZP64Q0UKUJAINMDW8ENN3Y16AKHHOGD1XIXG131GCC43O3BSNDOWB9DW8S5JQKOH8PU272XJWLC0X5' where id=93; -update noar ti set v0='8OGUBG5PSFM9YFCRNYE1P416D66N991D3KNN79ITKN9Q4B37N7CPZVYP1BSTV60QHPWFGIUDRZKQWEG797PZ4KVX9XM0JI1MCPADAKTQYHJXIGB81Y3DLT8T7LMBWFSJ122KF8MQ3MX2WN68WWSSELG62H40WNTXORE23MM3RDK77OKCEH9ZP64Q0UKUJAINMDW8ENN3Y16AKHHOGD1XIXG131GCC43O3BSNDOWB9DW8S5JQKOH8PU272XJWLC0X5' where id=93; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='NI8A2ZUGRMA1UG3K6IC036SQ8LCRHMQB83WKHTTELLFPES4LPHT6JLXRKN30OFSUQMM574L5UB4Q02MVD786BC3RIJ1MQVCTW0GOJSFOAZSYDJWASIHSM414RQJQ6VVVVUIRAWJSGMKPN0P848MR3BLIWVCUE1DNDO2PXUKNWQYQG2KQ0EKZCYSDYRYSS2SXYSTDO471SQF93XYOXTV453HYONU7YVFHWWC3CD2M3WD7NR0P3HQH6STCC1RFV24PX' where id=93; -update noar ti set v1='NI8A2ZUGRMA1UG3K6IC036SQ8LCRHMQB83WKHTTELLFPES4LPHT6JLXRKN30OFSUQMM574L5UB4Q02MVD786BC3RIJ1MQVCTW0GOJSFOAZSYDJWASIHSM414RQJQ6VVVVUIRAWJSGMKPN0P848MR3BLIWVCUE1DNDO2PXUKNWQYQG2KQ0EKZCYSDYRYSS2SXYSTDO471SQF93XYOXTV453HYONU7YVFHWWC3CD2M3WD7NR0P3HQH6STCC1RFV24PX' where id=93; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='DPB3F7N6LDXWNRN56ZS9VR5STMD2ZHULKMRNRWGQAW3S3AS1LZX6TUHHH54342YFUFU4IQ34O7FYFWDMF8KY5QD08XD4WO8TP5DRAVOHEXQ5I47L6CIG2W9PZNS7H2T1Y8J6IWGJQGBHVOTF6GHN3X7OWGVEXQZT74T05231P6YDNTSACUFERNGP2JCZ4TT2G0BTM7000UPIXW96B9I5ZTGQZRKHU8LPC49UWFH0GVM2I4NBHXWNFM3SIIZED8B5J' where id=93; -update noar ti set v2='DPB3F7N6LDXWNRN56ZS9VR5STMD2ZHULKMRNRWGQAW3S3AS1LZX6TUHHH54342YFUFU4IQ34O7FYFWDMF8KY5QD08XD4WO8TP5DRAVOHEXQ5I47L6CIG2W9PZNS7H2T1Y8J6IWGJQGBHVOTF6GHN3X7OWGVEXQZT74T05231P6YDNTSACUFERNGP2JCZ4TT2G0BTM7000UPIXW96B9I5ZTGQZRKHU8LPC49UWFH0GVM2I4NBHXWNFM3SIIZED8B5J' where id=93; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='MIQBKX7ELS237YC2M98LXMMLQDEVSWJR0DDHJFBQ4HFCWXBZAJSUKMLFHRH853EBQCZOVBKQT96SR5SNY94IMSRSJIGJH0IAJUHNLJ15PZILRX2PQ0HK8YKSPI32H8Q4Q0R5STBQ2NJB1OO6YXQHNZN26PMZQKIEOM38T623KNNW4S18YZ93C4YBNOOBR9VG2C2B5Z8FEUBGXCU2R9TM0TEDDH7MQ1EDFAA5KHO2KV96I8FQJZI2QC1ZH8ZG44USR' where id=93; -update noar ti set v3='MIQBKX7ELS237YC2M98LXMMLQDEVSWJR0DDHJFBQ4HFCWXBZAJSUKMLFHRH853EBQCZOVBKQT96SR5SNY94IMSRSJIGJH0IAJUHNLJ15PZILRX2PQ0HK8YKSPI32H8Q4Q0R5STBQ2NJB1OO6YXQHNZN26PMZQKIEOM38T623KNNW4S18YZ93C4YBNOOBR9VG2C2B5Z8FEUBGXCU2R9TM0TEDDH7MQ1EDFAA5KHO2KV96I8FQJZI2QC1ZH8ZG44USR' where id=93; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='BXSTQD4OXKGNOO4RO94ELJKW31RICSUJZW2AHBIYOC3NSL0LJHGYAGW358OWXVQMCMWX9Y14UGIKJL7SC42WMX9FCARJL39JG59FFUFXKMQKP4DNPSDN8Y0NPMDX93NSFGUEE99OUAJWV3NC1WL9G0TGJLD7WS3AA1APY9DT5UV0LTOC5M5TCTGORYNOM7Q0YFBVQ5BKWYC1TFQT8VN0F9QVF2EJQPS1DQW1GEVMCP7VEZ5K3AUPB0IK9GYX64ASG' where id=94; -update noar ti set v0='BXSTQD4OXKGNOO4RO94ELJKW31RICSUJZW2AHBIYOC3NSL0LJHGYAGW358OWXVQMCMWX9Y14UGIKJL7SC42WMX9FCARJL39JG59FFUFXKMQKP4DNPSDN8Y0NPMDX93NSFGUEE99OUAJWV3NC1WL9G0TGJLD7WS3AA1APY9DT5UV0LTOC5M5TCTGORYNOM7Q0YFBVQ5BKWYC1TFQT8VN0F9QVF2EJQPS1DQW1GEVMCP7VEZ5K3AUPB0IK9GYX64ASG' where id=94; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='FII52OV4TALWIPZ5GT7ONEQUI9RUXZASEPCIR5136AHM1T1GDB3L8OGDESTWRYOHJOLXLHKRTZ0MKQZ6Q90DD097161T0OGFXM2QAVS8KQG9JNDRBTW2QPV713KWRW0JFDDN2A5021O1ZUIH15WYC9X79KJD8RX5X72BNPOI8EDJUMB61IHOCIW6H1PW569F3B751YTHFM0ZITZTG079D0FALBNHRA5JNC7J1C62O3DK6PX633LM3RS4MO0PUZSRK' where id=94; -update noar ti set v1='FII52OV4TALWIPZ5GT7ONEQUI9RUXZASEPCIR5136AHM1T1GDB3L8OGDESTWRYOHJOLXLHKRTZ0MKQZ6Q90DD097161T0OGFXM2QAVS8KQG9JNDRBTW2QPV713KWRW0JFDDN2A5021O1ZUIH15WYC9X79KJD8RX5X72BNPOI8EDJUMB61IHOCIW6H1PW569F3B751YTHFM0ZITZTG079D0FALBNHRA5JNC7J1C62O3DK6PX633LM3RS4MO0PUZSRK' where id=94; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='GN624I010EQ4SAY5RJ6DFYMQ5KQ1P7G3Q7C05N4PL7WRGEKA1FEUCWWQA2TARB00S75C6UFAPGZ2H5DOHYV69UUYL0P13047M0JJ8E6TKALBWGM0USLCDK2LMLBB8OAEEV2QTBBHZHA6L4S7JV8VNMD5H7T5DTZJG5597F3TQHQEIQQC5XBEYDB3OCPJEKZFFAY6Q8UBWCUXXOR6G2WKXP7XN7KJFVY6WPG9IWUDT9PDDJB1B7KH367UT0BY8ZGP6' where id=94; -update noar ti set v2='GN624I010EQ4SAY5RJ6DFYMQ5KQ1P7G3Q7C05N4PL7WRGEKA1FEUCWWQA2TARB00S75C6UFAPGZ2H5DOHYV69UUYL0P13047M0JJ8E6TKALBWGM0USLCDK2LMLBB8OAEEV2QTBBHZHA6L4S7JV8VNMD5H7T5DTZJG5597F3TQHQEIQQC5XBEYDB3OCPJEKZFFAY6Q8UBWCUXXOR6G2WKXP7XN7KJFVY6WPG9IWUDT9PDDJB1B7KH367UT0BY8ZGP6' where id=94; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='FD4M8P78IKEG20ZDD8FOFUVUHPU9A450K8TUKKBML04GX4G2HQOMXHHJ55XAIGN3SC18JC0SG8V8GPZCPN84FRKPO4AGTWVYA8155W1EMD2IDJMRYS1UTHSJ7RVOEXHAEX8X7N7Y1PI0PC28D3F4KV8AX8AEFQT6Z2SRBRIMO3I540PYM2LTI6YWI5J9OZ02VZX6UW1MX3Z18S1RJXZMN4D1QFA2G8QIU6VRZFM7R95ZH7UPJLHYGZ157N5513OMB' where id=94; -update noar ti set v3='FD4M8P78IKEG20ZDD8FOFUVUHPU9A450K8TUKKBML04GX4G2HQOMXHHJ55XAIGN3SC18JC0SG8V8GPZCPN84FRKPO4AGTWVYA8155W1EMD2IDJMRYS1UTHSJ7RVOEXHAEX8X7N7Y1PI0PC28D3F4KV8AX8AEFQT6Z2SRBRIMO3I540PYM2LTI6YWI5J9OZ02VZX6UW1MX3Z18S1RJXZMN4D1QFA2G8QIU6VRZFM7R95ZH7UPJLHYGZ157N5513OMB' where id=94; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='0XROE5VBHWTIYZBM57KHFWK6RD4BWI5ED4GRPKD3VIR1BPYWZSSX2G6RZHI3D7664T03FT1F5TI42OSEMSD302YIX6O8S77NLYBJUB4KR1FXLDEV8I5VI9G10P7MPQ81K2ZYJG9YQ49FPU7VCEVWAKY2B96YDL50NHQCK61C98J8N9DWEVNOC34NNS2W2COINLWI03BEJHMWNL4Z839ON2MK1YMPMQKOTYC50YRCLF0G6PYTJHC90GH9P1Z3WT10T' where id=95; -update noar ti set v0='0XROE5VBHWTIYZBM57KHFWK6RD4BWI5ED4GRPKD3VIR1BPYWZSSX2G6RZHI3D7664T03FT1F5TI42OSEMSD302YIX6O8S77NLYBJUB4KR1FXLDEV8I5VI9G10P7MPQ81K2ZYJG9YQ49FPU7VCEVWAKY2B96YDL50NHQCK61C98J8N9DWEVNOC34NNS2W2COINLWI03BEJHMWNL4Z839ON2MK1YMPMQKOTYC50YRCLF0G6PYTJHC90GH9P1Z3WT10T' where id=95; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='L3RBAQC8WPF07BZ5GZRIGRQBZWOWY3PW8PDMBJKWLEEL5AVWMA4JL5X9TKM3RF0R3UFZSJD7VEJW12PXR1CNXXNYAHFIHYR4VLM0PE4CL2GC1O30IL363BYQVZMU6CW4FG38W4F6U2ZERSDD6Z8FIP4F5QWA139K4797GOY1NXKKDTYOZD0Q6CVHBUW7P13J56K69QEBQO3SP9N9AJ06IERWAH3RER9HYNAQDP8E3FLI4A6XDQ53CX3DDI9Z0Z56T' where id=95; -update noar ti set v1='L3RBAQC8WPF07BZ5GZRIGRQBZWOWY3PW8PDMBJKWLEEL5AVWMA4JL5X9TKM3RF0R3UFZSJD7VEJW12PXR1CNXXNYAHFIHYR4VLM0PE4CL2GC1O30IL363BYQVZMU6CW4FG38W4F6U2ZERSDD6Z8FIP4F5QWA139K4797GOY1NXKKDTYOZD0Q6CVHBUW7P13J56K69QEBQO3SP9N9AJ06IERWAH3RER9HYNAQDP8E3FLI4A6XDQ53CX3DDI9Z0Z56T' where id=95; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='AQ81O2S4REJQC4L0WV4D9YSN6MOZA60X0RCQGYJ6JR1KU5FSUXJYDKGVQ4H4E2MUUBPY4P5KNJSFGACEZT2ON3A4ZDHE2P687SOAAK3J3QAUZLNV6F3N3SDZXGWD93C7S9HTCWV7QZ5VR53K0SC6UVQR9R857U6XKDPZMCPNAJCCH9M6FVM4C6P73U7IJFX4P8GZQV3B64KY1GK8CUFPMS45LVMLCGOQ2BSEL2ATVXO18FKD9T3Y3ABNQ848DWAMX' where id=95; -update noar ti set v2='AQ81O2S4REJQC4L0WV4D9YSN6MOZA60X0RCQGYJ6JR1KU5FSUXJYDKGVQ4H4E2MUUBPY4P5KNJSFGACEZT2ON3A4ZDHE2P687SOAAK3J3QAUZLNV6F3N3SDZXGWD93C7S9HTCWV7QZ5VR53K0SC6UVQR9R857U6XKDPZMCPNAJCCH9M6FVM4C6P73U7IJFX4P8GZQV3B64KY1GK8CUFPMS45LVMLCGOQ2BSEL2ATVXO18FKD9T3Y3ABNQ848DWAMX' where id=95; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='QZY4PIYS1TFSH4IU2SM8CMYF7BPT2GDWF3ELD5MNBAOSAN5PBKGA4OOZRHBI7RX7ZA1BVVI1KVYW4KNH6H0M5YPIULN06UZIO3W9KY2SJOOOBJ4SO8NV9V1OLFCRBJ0OSDHRIX3T3HEN17QSWVHKSS2AQYO91BOZI8IY8R8QTSYMZDKEDYY2WGHE35GXIY3FWE67RIDCDBNGQE2HCJCPP0DF8ZK157C5TMK9C7EMFK6DW4YYYRXDA4CZNVWM8HS7R' where id=95; -update noar ti set v3='QZY4PIYS1TFSH4IU2SM8CMYF7BPT2GDWF3ELD5MNBAOSAN5PBKGA4OOZRHBI7RX7ZA1BVVI1KVYW4KNH6H0M5YPIULN06UZIO3W9KY2SJOOOBJ4SO8NV9V1OLFCRBJ0OSDHRIX3T3HEN17QSWVHKSS2AQYO91BOZI8IY8R8QTSYMZDKEDYY2WGHE35GXIY3FWE67RIDCDBNGQE2HCJCPP0DF8ZK157C5TMK9C7EMFK6DW4YYYRXDA4CZNVWM8HS7R' where id=95; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='IQNTGGRADUTD2YZMX6UO5Y5MG75AYWMJYT14V8JACENITUTWQ08P7PRZAK9HKFS9TH5MEB792FNKOGGB14URFX7PZVLOK0VIZS6KW0WT6QHNOJI7MBATHUQG7SO4LZ4FB174IP35E4UI59FTL7BZPCCBYQIGS5NJ7Y2UDD2NZ20DIW0NKFCBRH6QAPI0WHZ9B1AFV398T64CM3JJO4RBAUK2JSUVK1GUEE6BGMVWMWJF8A4DLNFRDJ2ZKO6FFAR1N' where id=96; -update noar ti set v0='IQNTGGRADUTD2YZMX6UO5Y5MG75AYWMJYT14V8JACENITUTWQ08P7PRZAK9HKFS9TH5MEB792FNKOGGB14URFX7PZVLOK0VIZS6KW0WT6QHNOJI7MBATHUQG7SO4LZ4FB174IP35E4UI59FTL7BZPCCBYQIGS5NJ7Y2UDD2NZ20DIW0NKFCBRH6QAPI0WHZ9B1AFV398T64CM3JJO4RBAUK2JSUVK1GUEE6BGMVWMWJF8A4DLNFRDJ2ZKO6FFAR1N' where id=96; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='IOVZOSB1FQBQKSP0I5CPH8KQL2Q8JFCX2BUKXJJ9ZEQQ9LWG7NFDY7USIT0RJGMQ85HJ5QA0WBZ1ESFXK83LFN8ZKZMSZXK099EILWLC83CIOEC986M1LHC00T9Q1B8SJAIZO8C96JEKUBXQA26FO5EEUIM7AEU68L0GPDXRMWDL85S1AYVY8UQTO216W1MTY95QHAVKPSSNU2YUEY9586QN8CHLJKMVHDXEQHF5IH2RGQCKXBL222SBT6GZO3XE7' where id=96; -update noar ti set v1='IOVZOSB1FQBQKSP0I5CPH8KQL2Q8JFCX2BUKXJJ9ZEQQ9LWG7NFDY7USIT0RJGMQ85HJ5QA0WBZ1ESFXK83LFN8ZKZMSZXK099EILWLC83CIOEC986M1LHC00T9Q1B8SJAIZO8C96JEKUBXQA26FO5EEUIM7AEU68L0GPDXRMWDL85S1AYVY8UQTO216W1MTY95QHAVKPSSNU2YUEY9586QN8CHLJKMVHDXEQHF5IH2RGQCKXBL222SBT6GZO3XE7' where id=96; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='WZW2UZT4T1OHXCLAPWVPOIIL6LQ9MCEFBDUD6F057EW1TTS74F4W31UV3M9GTZDHA975FPZUF4LQJVI9W1PO1VFXL4MSCD6SQH003CGN8HGTWXS4DLMIMJGNTDXLLPASKIXZN3AVN39KPF48V6PQOZOW7USRO2Z3RGBN89JQMHH7AI382XK7COKOI9ZWPEJR3DJ9W4KPSIA6DTWQYRJH991Z3FNCS5JK880IL5P8DA6IC8ULWFTZGQ7UZT3483XX0' where id=96; -update noar ti set v2='WZW2UZT4T1OHXCLAPWVPOIIL6LQ9MCEFBDUD6F057EW1TTS74F4W31UV3M9GTZDHA975FPZUF4LQJVI9W1PO1VFXL4MSCD6SQH003CGN8HGTWXS4DLMIMJGNTDXLLPASKIXZN3AVN39KPF48V6PQOZOW7USRO2Z3RGBN89JQMHH7AI382XK7COKOI9ZWPEJR3DJ9W4KPSIA6DTWQYRJH991Z3FNCS5JK880IL5P8DA6IC8ULWFTZGQ7UZT3483XX0' where id=96; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='W71DTVQ7AAPG8A48LYFDQ9CZ2F0QUQPDQHY6YCT6UZZ9KI3V72W4XRXVA6TP4TMNJUBLW8UA2BLHFOSEQ53PXHMXDOIDDO8G1ZIE5PBU61ZG3W28A9M6JETXY6PCBZ97N0UGCWKZKAIA38ZOD03CV9OL0WVQHNRE3H18M05N9S9SE53Y0T5MQIB702EVBKM4PR4VHHZ0XMEO3C68MN8EETBC33AT3NR26E332D0YVNXMUW8S6UD84RYT4TJSCIRVJ' where id=96; -update noar ti set v3='W71DTVQ7AAPG8A48LYFDQ9CZ2F0QUQPDQHY6YCT6UZZ9KI3V72W4XRXVA6TP4TMNJUBLW8UA2BLHFOSEQ53PXHMXDOIDDO8G1ZIE5PBU61ZG3W28A9M6JETXY6PCBZ97N0UGCWKZKAIA38ZOD03CV9OL0WVQHNRE3H18M05N9S9SE53Y0T5MQIB702EVBKM4PR4VHHZ0XMEO3C68MN8EETBC33AT3NR26E332D0YVNXMUW8S6UD84RYT4TJSCIRVJ' where id=96; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='EQQ7QU2WKRN0S69XW8ROIL27L0NYD1RCITRN1CU7YHRAZGJA3X6BC7VUNQN81DPK62R0R94FFWNYQS4EJQPOMSJ1Z6P7ZH1XB8N6QD8IYNEOWNA66T3DU424SEY7LK48XD9X03C8DYNCRRH9UJM5KNOA1JFDEPZVVVATYXBUQBOPDC65BTMUDMIMR4OJ64J4ERU4H4EE9RHBQG5Y4AUXRI6736QQ63DG1Q3ZKON5ISN5S94I48H48SALW5UAB3Q5J' where id=97; -update noar ti set v0='EQQ7QU2WKRN0S69XW8ROIL27L0NYD1RCITRN1CU7YHRAZGJA3X6BC7VUNQN81DPK62R0R94FFWNYQS4EJQPOMSJ1Z6P7ZH1XB8N6QD8IYNEOWNA66T3DU424SEY7LK48XD9X03C8DYNCRRH9UJM5KNOA1JFDEPZVVVATYXBUQBOPDC65BTMUDMIMR4OJ64J4ERU4H4EE9RHBQG5Y4AUXRI6736QQ63DG1Q3ZKON5ISN5S94I48H48SALW5UAB3Q5J' where id=97; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='EPINWAM58B1T15VZAOUMSX7T76A8OQJUDEVCZSRJAQQMF62RJI2ALMEY9ZT3YXLXG7MKNCDY57OX50SXN7AU3Q5C4E5CTSB3W84IRGEG3EERP7QOEM4RKYPFEAMZH1AOIMCCDRBTIX9QJ96J36OAQXE1RF6F49G70ADVWHZGGTPJWQ35UINBYWZ5PVMVPL7WGYHJP1FQ7MH4K82JWBKAAXVUAW56BH7MVWQYFXK2JTOM1X72F1X8FIVHGA84P7XFX' where id=97; -update noar ti set v1='EPINWAM58B1T15VZAOUMSX7T76A8OQJUDEVCZSRJAQQMF62RJI2ALMEY9ZT3YXLXG7MKNCDY57OX50SXN7AU3Q5C4E5CTSB3W84IRGEG3EERP7QOEM4RKYPFEAMZH1AOIMCCDRBTIX9QJ96J36OAQXE1RF6F49G70ADVWHZGGTPJWQ35UINBYWZ5PVMVPL7WGYHJP1FQ7MH4K82JWBKAAXVUAW56BH7MVWQYFXK2JTOM1X72F1X8FIVHGA84P7XFX' where id=97; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='PPBNZAYK39P1F1LVEBZARC5B4N4V75V8S38J9B32WLT1KR8NYIR80VIA15DZTH28PJ6J7MQX211112OA0PH7EL3LRQ3UOAJZOUILVLP81C0GT6XYKQAHZ00FU1LNHUXQJIY262VEDV4BBWKBOWCTGLT31AWKWO6OOVZ4FCHZIT75TIECH70D5MUWMIXJQ7BSUUI6FJN2823YEGKCZT24UEMSG458W5PR0Q47RHW9BZ2HVSQMW67B9SA8ALWOUA2RG' where id=97; -update noar ti set v2='PPBNZAYK39P1F1LVEBZARC5B4N4V75V8S38J9B32WLT1KR8NYIR80VIA15DZTH28PJ6J7MQX211112OA0PH7EL3LRQ3UOAJZOUILVLP81C0GT6XYKQAHZ00FU1LNHUXQJIY262VEDV4BBWKBOWCTGLT31AWKWO6OOVZ4FCHZIT75TIECH70D5MUWMIXJQ7BSUUI6FJN2823YEGKCZT24UEMSG458W5PR0Q47RHW9BZ2HVSQMW67B9SA8ALWOUA2RG' where id=97; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='DWYM1QY2KK4ZNVADX0CZE4CEUW13L45PV6UMAKCCD63Z19ZCNQ2ANTX33K9I8GNIMGBPZYT3HO9YWJVHZ5TOW8WRCE23HIDPNCLTKXZXQR2SHQ2SBEXVOLD5GIE97EVM4JC6KK1B01MXOFY41B947YJ3CJXDK0UWCLGYWTLHWSK9DUVTZLIXBWRTV48E5LAOSLIXCNNYB2W2XX3HPY45CXFDTBHFXUC6TGNAB4217EVPLXOM3DS2YMRVRP4HHZ498' where id=97; -update noar ti set v3='DWYM1QY2KK4ZNVADX0CZE4CEUW13L45PV6UMAKCCD63Z19ZCNQ2ANTX33K9I8GNIMGBPZYT3HO9YWJVHZ5TOW8WRCE23HIDPNCLTKXZXQR2SHQ2SBEXVOLD5GIE97EVM4JC6KK1B01MXOFY41B947YJ3CJXDK0UWCLGYWTLHWSK9DUVTZLIXBWRTV48E5LAOSLIXCNNYB2W2XX3HPY45CXFDTBHFXUC6TGNAB4217EVPLXOM3DS2YMRVRP4HHZ498' where id=97; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='6OX69SYHPIQGJ5WNI1GIH6Q6MIWQ3QL1F2XPR6KDK1TBT6RR4QAW5LEI4IUXBSZJ02PRXCS01YP0SHCYV3I9AUMZ41HE3QQ7VWBP5PLK8DOP2DSKND32VSC0YNH8PJ3DRUDO0BMUKNA22O8VPJIQTIYU03SOFEVPB3HUN7JICGNMD1F0S4M473DZIB2WZHGYGJ95AGRF82DMDOHRRCCI6R12XR19X801GXR1P49LN00LKP6YLWOVFQDV8SLLEB6WZ' where id=98; -update noar ti set v0='6OX69SYHPIQGJ5WNI1GIH6Q6MIWQ3QL1F2XPR6KDK1TBT6RR4QAW5LEI4IUXBSZJ02PRXCS01YP0SHCYV3I9AUMZ41HE3QQ7VWBP5PLK8DOP2DSKND32VSC0YNH8PJ3DRUDO0BMUKNA22O8VPJIQTIYU03SOFEVPB3HUN7JICGNMD1F0S4M473DZIB2WZHGYGJ95AGRF82DMDOHRRCCI6R12XR19X801GXR1P49LN00LKP6YLWOVFQDV8SLLEB6WZ' where id=98; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='OMETU5ZLOT7SAEVMZD3OFQC7GEJTGIMFP8BGWC8F6T4F7KNVC0DQG4UZ09PFLDX6ET0QYRWJ89R6GWA322TRMKH2LOA1IIV15NBTHYUM1QNNC11VE9ZEUGXOQYEBMKAWD5XBH18X8K3WWX73FNP7L6YE9RO0THJCHL5R1TG3O21TB3WDJQR4HWOP7QMTOTVHQYTSK97WN53REXZRQBPY7F6VMOQY31T3H34IUBCYVQN5Y8RNBRJSMAHLL5NW868MK' where id=98; -update noar ti set v1='OMETU5ZLOT7SAEVMZD3OFQC7GEJTGIMFP8BGWC8F6T4F7KNVC0DQG4UZ09PFLDX6ET0QYRWJ89R6GWA322TRMKH2LOA1IIV15NBTHYUM1QNNC11VE9ZEUGXOQYEBMKAWD5XBH18X8K3WWX73FNP7L6YE9RO0THJCHL5R1TG3O21TB3WDJQR4HWOP7QMTOTVHQYTSK97WN53REXZRQBPY7F6VMOQY31T3H34IUBCYVQN5Y8RNBRJSMAHLL5NW868MK' where id=98; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='EZ8ZDWSXIIVZ3R41UPLC80LGH6BVDI56P8276QMGKSJ6HZQ5JJXIEJHKB1K5OG5J1L7OXWCZVBTCX4RMQDTK3ZGWL6WFCMD0YX1M3GS8N53TN32126QJQJH2R5PCOITFTRVVNMDQUMZRE2T5J3X1R7AHLA47M5LHQ4PEOB9ZFJRXQVDIFZZS3FVW12EPN9U664JJJ1FKGSROJJLY1FOSJ3I7JGWFCFNDPBEVF5D9HUV11PGN8SLWPFD5KOXHHB7OW' where id=98; -update noar ti set v2='EZ8ZDWSXIIVZ3R41UPLC80LGH6BVDI56P8276QMGKSJ6HZQ5JJXIEJHKB1K5OG5J1L7OXWCZVBTCX4RMQDTK3ZGWL6WFCMD0YX1M3GS8N53TN32126QJQJH2R5PCOITFTRVVNMDQUMZRE2T5J3X1R7AHLA47M5LHQ4PEOB9ZFJRXQVDIFZZS3FVW12EPN9U664JJJ1FKGSROJJLY1FOSJ3I7JGWFCFNDPBEVF5D9HUV11PGN8SLWPFD5KOXHHB7OW' where id=98; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='Y5GGZJ2QXMB5R0NP4D7TG248GQ1YOB2R7MJ637HVV6M6QSEMG3E0S5TK2VRTYS3H8ZNU0C59IY4CALDNX57C6VW8AEPSZ33BPCRYKBMPC1PFXE0SX4NHD8E3FQVHXJJ5OCK9A4WMNCW8IBRV7VWAYEW5NH4N1XCZ47U5C85WZ6JRA9FG8KAUO3F1K5GEPLEFQWI41HZVIDQKR93QBSR2RF9HGKLS3TW7AOUUBW8QO81YBOYLE48YVEX97NOPBOIL0' where id=98; -update noar ti set v3='Y5GGZJ2QXMB5R0NP4D7TG248GQ1YOB2R7MJ637HVV6M6QSEMG3E0S5TK2VRTYS3H8ZNU0C59IY4CALDNX57C6VW8AEPSZ33BPCRYKBMPC1PFXE0SX4NHD8E3FQVHXJJ5OCK9A4WMNCW8IBRV7VWAYEW5NH4N1XCZ47U5C85WZ6JRA9FG8KAUO3F1K5GEPLEFQWI41HZVIDQKR93QBSR2RF9HGKLS3TW7AOUUBW8QO81YBOYLE48YVEX97NOPBOIL0' where id=98; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='5HY6NJLDSBZZOYZWZ8Y4KTFQ7PVXI6759G5WN3KERA17M6DJMSQISJCRRK34CIXOWIWA2622J2DDAJJHO2ZNUZDUMXVPD6XNMEEZBHVI3OUO09OZY2V3I61RSBZXGBL2YO6IMHKWHIKGD6QXOWSA6G6NAFTGR651YPX8HMQY7FIHERVNAGO9UDS3V06UIYJNY8QPZX0878TEIGJ4ASMZ1GV0MW5L0FHNXEYLWCYS3RT6X5QE2SB16TOFFRX1GEF2B' where id=99; -update noar ti set v0='5HY6NJLDSBZZOYZWZ8Y4KTFQ7PVXI6759G5WN3KERA17M6DJMSQISJCRRK34CIXOWIWA2622J2DDAJJHO2ZNUZDUMXVPD6XNMEEZBHVI3OUO09OZY2V3I61RSBZXGBL2YO6IMHKWHIKGD6QXOWSA6G6NAFTGR651YPX8HMQY7FIHERVNAGO9UDS3V06UIYJNY8QPZX0878TEIGJ4ASMZ1GV0MW5L0FHNXEYLWCYS3RT6X5QE2SB16TOFFRX1GEF2B' where id=99; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='T4HGGT928YXUXK5JFRSZVC010NU1WUSBU8BSJSP2CL9JHQK3WX03T0VH6R7V2EPPW5FY44BPELIBZHCD4O4E5TKA9NL10D8ZDNVFDQL97INZHH4LJ6A0OHQ8WXLC5VGRFJP1Z49SRAQC5G3SI5SKWQU03FL12ZAFUINI1WF4LGYW06OWSTK6Z79MNIEQSF770Z6L42OKPTKG49VTFSQADBBEPF1O2HM1SKM5NU5FGGJ8SZJ7N3ASLWX7WXWELLLTQ' where id=99; -update noar ti set v1='T4HGGT928YXUXK5JFRSZVC010NU1WUSBU8BSJSP2CL9JHQK3WX03T0VH6R7V2EPPW5FY44BPELIBZHCD4O4E5TKA9NL10D8ZDNVFDQL97INZHH4LJ6A0OHQ8WXLC5VGRFJP1Z49SRAQC5G3SI5SKWQU03FL12ZAFUINI1WF4LGYW06OWSTK6Z79MNIEQSF770Z6L42OKPTKG49VTFSQADBBEPF1O2HM1SKM5NU5FGGJ8SZJ7N3ASLWX7WXWELLLTQ' where id=99; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='AAD2T24WXCYCSUJK3U748EJFRUU6SYRJIL25YIKIFFMPK98R1KY4UZ09DI1T3I7M0HH0THN46E4RAX1CWAZJ31AAHCQAYWRYIEJ763CTWOU3PI5FC5EKIEEEK2RQNY75JVB68U46K7HAQP6QUBHP5O3A4SW8VNIF7M9UNGRRCP4D1WIAG39BY2P4OWCMDCATFCU3G976SCJXX0ZY8DTYWEWYFTQMA53XZGFO5W477IDQAMJED80RZWEG5IRBJKO07' where id=99; -update noar ti set v2='AAD2T24WXCYCSUJK3U748EJFRUU6SYRJIL25YIKIFFMPK98R1KY4UZ09DI1T3I7M0HH0THN46E4RAX1CWAZJ31AAHCQAYWRYIEJ763CTWOU3PI5FC5EKIEEEK2RQNY75JVB68U46K7HAQP6QUBHP5O3A4SW8VNIF7M9UNGRRCP4D1WIAG39BY2P4OWCMDCATFCU3G976SCJXX0ZY8DTYWEWYFTQMA53XZGFO5W477IDQAMJED80RZWEG5IRBJKO07' where id=99; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='088C17CAB877RRXLZQAN3GCERG21GT9XDZNLW18J01ARBZOL74W52UBX83O6G6G98XS03MBPQIO7S774BQMBCAW9HLP8T9X81EWDPKM6CM9N0YQLXZP0D3UTV8PCD9CBH0VLEWQWPNUHO0L9B8Y7Z4EHWOBVGLKWPO539WYWXRX3OL0W47CV40L5QYFKCWKAOU78Y274ZJ9GVUD6WDHF7R8ZC11BUS9DH21HD9TGTVDSAJW3YKVTQ7LRT8552YF7H' where id=99; -update noar ti set v3='088C17CAB877RRXLZQAN3GCERG21GT9XDZNLW18J01ARBZOL74W52UBX83O6G6G98XS03MBPQIO7S774BQMBCAW9HLP8T9X81EWDPKM6CM9N0YQLXZP0D3UTV8PCD9CBH0VLEWQWPNUHO0L9B8Y7Z4EHWOBVGLKWPO539WYWXRX3OL0W47CV40L5QYFKCWKAOU78Y274ZJ9GVUD6WDHF7R8ZC11BUS9DH21HD9TGTVDSAJW3YKVTQ7LRT8552YF7H' where id=99; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt (id bigint unsigned primary key, -f0 int not null, -v0 varbinary(256) not null, -v1 varbinary(256) not null, -v2 varbinary(256) not null, -v3 varbinary(256) not null, -b0 text not null -) engine=tokudb; -insert into tt values (1,2,'a','b','c','d','e'); -insert into tt values (2,3,'','','','',''); -insert into tt values (3,4,'','','','',''); -insert into tt values (4,5,'','','','',''); -insert into tt values (5,6,'','','','',''); -insert into tt values (6,7,'','','','',''); -insert into tt values (7,8,'','','','',''); -insert into tt values (8,9,'','','','',''); -insert into tt values (9,10,'','','','',''); -insert into tt values (10,11,'','','','',''); -insert into tt values (11,12,'','','','',''); -insert into tt values (12,13,'','','','',''); -insert into tt values (13,14,'','','','',''); -insert into tt values (14,15,'','','','',''); -insert into tt values (15,16,'','','','',''); -insert into tt values (16,17,'','','','',''); -insert into tt values (17,18,'','','','',''); -insert into tt values (18,19,'','','','',''); -insert into tt values (19,20,'','','','',''); -insert into tt values (20,21,'','','','',''); -insert into tt values (21,22,'','','','',''); -insert into tt values (22,23,'','','','',''); -insert into tt values (23,24,'','','','',''); -insert into tt values (24,25,'','','','',''); -insert into tt values (25,26,'','','','',''); -insert into tt values (26,27,'','','','',''); -insert into tt values (27,28,'','','','',''); -insert into tt values (28,29,'','','','',''); -insert into tt values (29,30,'','','','',''); -insert into tt values (30,31,'','','','',''); -insert into tt values (31,32,'','','','',''); -insert into tt values (32,33,'','','','',''); -insert into tt values (33,34,'','','','',''); -insert into tt values (34,35,'','','','',''); -insert into tt values (35,36,'','','','',''); -insert into tt values (36,37,'','','','',''); -insert into tt values (37,38,'','','','',''); -insert into tt values (38,39,'','','','',''); -insert into tt values (39,40,'','','','',''); -insert into tt values (40,41,'','','','',''); -insert into tt values (41,42,'','','','',''); -insert into tt values (42,43,'','','','',''); -insert into tt values (43,44,'','','','',''); -insert into tt values (44,45,'','','','',''); -insert into tt values (45,46,'','','','',''); -insert into tt values (46,47,'','','','',''); -insert into tt values (47,48,'','','','',''); -insert into tt values (48,49,'','','','',''); -insert into tt values (49,50,'','','','',''); -insert into tt values (50,51,'','','','',''); -insert into tt values (51,52,'','','','',''); -insert into tt values (52,53,'','','','',''); -insert into tt values (53,54,'','','','',''); -insert into tt values (54,55,'','','','',''); -insert into tt values (55,56,'','','','',''); -insert into tt values (56,57,'','','','',''); -insert into tt values (57,58,'','','','',''); -insert into tt values (58,59,'','','','',''); -insert into tt values (59,60,'','','','',''); -insert into tt values (60,61,'','','','',''); -insert into tt values (61,62,'','','','',''); -insert into tt values (62,63,'','','','',''); -insert into tt values (63,64,'','','','',''); -insert into tt values (64,65,'','','','',''); -insert into tt values (65,66,'','','','',''); -insert into tt values (66,67,'','','','',''); -insert into tt values (67,68,'','','','',''); -insert into tt values (68,69,'','','','',''); -insert into tt values (69,70,'','','','',''); -insert into tt values (70,71,'','','','',''); -insert into tt values (71,72,'','','','',''); -insert into tt values (72,73,'','','','',''); -insert into tt values (73,74,'','','','',''); -insert into tt values (74,75,'','','','',''); -insert into tt values (75,76,'','','','',''); -insert into tt values (76,77,'','','','',''); -insert into tt values (77,78,'','','','',''); -insert into tt values (78,79,'','','','',''); -insert into tt values (79,80,'','','','',''); -insert into tt values (80,81,'','','','',''); -insert into tt values (81,82,'','','','',''); -insert into tt values (82,83,'','','','',''); -insert into tt values (83,84,'','','','',''); -insert into tt values (84,85,'','','','',''); -insert into tt values (85,86,'','','','',''); -insert into tt values (86,87,'','','','',''); -insert into tt values (87,88,'','','','',''); -insert into tt values (88,89,'','','','',''); -insert into tt values (89,90,'','','','',''); -insert into tt values (90,91,'','','','',''); -insert into tt values (91,92,'','','','',''); -insert into tt values (92,93,'','','','',''); -insert into tt values (93,94,'','','','',''); -insert into tt values (94,95,'','','','',''); -insert into tt values (95,96,'','','','',''); -insert into tt values (96,97,'','','','',''); -insert into tt values (97,98,'','','','',''); -insert into tt values (98,99,'','','','',''); -insert into tt values (99,100,'','','','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='null this 0' where id=0; -update noar ti set v0='null this 0' where id=0; -update noar tt set v1='null is 1' where id=0; -update noar ti set v1='null is 1' where id=0; -update noar tt set v2='null a 2' where id=0; -update noar ti set v2='null a 2' where id=0; -update noar tt set v3='null test 3' where id=0; -update noar ti set v3='null test 3' where id=0; -update noar tt set v0='this 0' where id=1; -update noar ti set v0='this 0' where id=1; -update noar tt set v1='is 1' where id=1; -update noar ti set v1='is 1' where id=1; -update noar tt set v2='another 2' where id=1; -update noar ti set v2='another 2' where id=1; -update noar tt set v3='test 3' where id=1; -update noar ti set v3='test 3' where id=1; -update noar tt set v0='HXQARM7X1ZS6SRO83LVDNWF5OCL7F92VRP8L9J740BWJDF3BXC6MT2X6OQQGVEQ37LEX0RNL77GO7CZ5VZNDKUAALOY03UOEXCT897YJXN8IRV264SXJK9RXT5QL3FOZMRTQ8K5BGWAHFI8YX4I8MGBASVYC7ZRPXFAV4TGKY3ZYP6NCNTM515ZSEKVU7UMW4NMK1BYERGJOD8W0ZS45NTEYG0C9E1MTQYMQHV11RI8N4PBGOBDUQHOZEKBKUTETC' where id=2; -update noar ti set v0='HXQARM7X1ZS6SRO83LVDNWF5OCL7F92VRP8L9J740BWJDF3BXC6MT2X6OQQGVEQ37LEX0RNL77GO7CZ5VZNDKUAALOY03UOEXCT897YJXN8IRV264SXJK9RXT5QL3FOZMRTQ8K5BGWAHFI8YX4I8MGBASVYC7ZRPXFAV4TGKY3ZYP6NCNTM515ZSEKVU7UMW4NMK1BYERGJOD8W0ZS45NTEYG0C9E1MTQYMQHV11RI8N4PBGOBDUQHOZEKBKUTETC' where id=2; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='CP94ISC8FR6RF5QXJOUJSFNRUSLE1X4B9IPKTO5QSB8LTILPZC4MWZ134IAYHFQSD1VQ3DO4B129LD9QIF7OQQIC2YYW5ZJTOTB4S7OX2JMUQ97RLZFO7VNFTL6PB22QBNCCHV806V6QUOQGBIA4QPVJB0EYZ60TPT2Z5GXLAUUJ5J2D51WOJN8BRE8PG8KJ992CBN3ZL32OATOHF14YRYCPMED1YTOUO3RDPSQ7KCAA21FLL64BPRCADHQ8SUBJF' where id=2; -update noar ti set v1='CP94ISC8FR6RF5QXJOUJSFNRUSLE1X4B9IPKTO5QSB8LTILPZC4MWZ134IAYHFQSD1VQ3DO4B129LD9QIF7OQQIC2YYW5ZJTOTB4S7OX2JMUQ97RLZFO7VNFTL6PB22QBNCCHV806V6QUOQGBIA4QPVJB0EYZ60TPT2Z5GXLAUUJ5J2D51WOJN8BRE8PG8KJ992CBN3ZL32OATOHF14YRYCPMED1YTOUO3RDPSQ7KCAA21FLL64BPRCADHQ8SUBJF' where id=2; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='9H141GVH408C2JXFI7SYSLBZ9JS65H12XH7A986LETBIQLOYYVE1F6HMBGS60CW0RQF6SDML1IH139NDHITI9403OLOHWTR18QFBXIGIWA5UVVLBRE0ZYQEPI0PI4MBY3S9D6CS4E804RM406ZDY66ZL7UWIE4NGBVX8ITNQ83AJ93PRF45675HO5Z5QBPD1AH02Z9KUS56DKUASNZAVG2DCRN7MBIIP0SOF4VUOG7HGTP9P1KRQ8HD5C4NGBGI6A' where id=2; -update noar ti set v2='9H141GVH408C2JXFI7SYSLBZ9JS65H12XH7A986LETBIQLOYYVE1F6HMBGS60CW0RQF6SDML1IH139NDHITI9403OLOHWTR18QFBXIGIWA5UVVLBRE0ZYQEPI0PI4MBY3S9D6CS4E804RM406ZDY66ZL7UWIE4NGBVX8ITNQ83AJ93PRF45675HO5Z5QBPD1AH02Z9KUS56DKUASNZAVG2DCRN7MBIIP0SOF4VUOG7HGTP9P1KRQ8HD5C4NGBGI6A' where id=2; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='2XH2XO870O3Z97MBUK92L2QQMPCNUAJHTYFVO2Y33A7VJUMACBMPXZ6OMHMKVGBXYAHC5B2K13EYC834FCNTR9INOV0HX3A4YO131XLADU70KVVIQQ7LJV4J82TSQ91XTJ8LDH6APZDHI813OAAUMNJLNUW8626TKFSU3ZLNLMV7PAZM6397EQG89OON7VJN4LM4ACB2C695IG1NSVBYVKOTMTSR22YB29YYHKWIHQMC7CH7F81JF9E35DF1G7KPL' where id=2; -update noar ti set v3='2XH2XO870O3Z97MBUK92L2QQMPCNUAJHTYFVO2Y33A7VJUMACBMPXZ6OMHMKVGBXYAHC5B2K13EYC834FCNTR9INOV0HX3A4YO131XLADU70KVVIQQ7LJV4J82TSQ91XTJ8LDH6APZDHI813OAAUMNJLNUW8626TKFSU3ZLNLMV7PAZM6397EQG89OON7VJN4LM4ACB2C695IG1NSVBYVKOTMTSR22YB29YYHKWIHQMC7CH7F81JF9E35DF1G7KPL' where id=2; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='440DIBISFADWRW2V3COGT5VTLA5G71PWSJMN8ZTRVA11E3WNW5JHTKIXEOH56NAWZS1ZTOQ1ZV3ONKSQ639IR92AS2U1YIRHMOW5AM6GB0BNUU5JPWX3O1X7WEY3ZWE16KH4G20JLW0L4QEYXORPKD3U6T8B4DEY1WUIKKKKFZ8XYM87WKTL63E4UVIF7123Q6IEY9ASFBISM2AHTL4KGHRLO3J2NZ3YBEJNDSKGCD6ME52JMNAKHGE2ZUVTTZMGV' where id=3; -update noar ti set v0='440DIBISFADWRW2V3COGT5VTLA5G71PWSJMN8ZTRVA11E3WNW5JHTKIXEOH56NAWZS1ZTOQ1ZV3ONKSQ639IR92AS2U1YIRHMOW5AM6GB0BNUU5JPWX3O1X7WEY3ZWE16KH4G20JLW0L4QEYXORPKD3U6T8B4DEY1WUIKKKKFZ8XYM87WKTL63E4UVIF7123Q6IEY9ASFBISM2AHTL4KGHRLO3J2NZ3YBEJNDSKGCD6ME52JMNAKHGE2ZUVTTZMGV' where id=3; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='7MUG6Q7UT4GXZZVO2WG0IJ18CJI5ZXI93V88HP70410KNM6B3AJOCAEYMSRZTIU4JZJU6HIOYO13FHDWS57BR7N88M2K1ROADIR0ZKHNHFW5473RVQ3DLLHEG0B9JOEVUB8J4G0NQKZVS5XWV5JN4LOXMMMPEKYEB3FEKKLO04CPE4CW5C2A7CBDYIMYLTCM9PF8U3RLLCNAQ8M6B265LD91XNH0BRRYVKQTUCFZ4NHJGFDHBB9034L78DZFGSCY9' where id=3; -update noar ti set v1='7MUG6Q7UT4GXZZVO2WG0IJ18CJI5ZXI93V88HP70410KNM6B3AJOCAEYMSRZTIU4JZJU6HIOYO13FHDWS57BR7N88M2K1ROADIR0ZKHNHFW5473RVQ3DLLHEG0B9JOEVUB8J4G0NQKZVS5XWV5JN4LOXMMMPEKYEB3FEKKLO04CPE4CW5C2A7CBDYIMYLTCM9PF8U3RLLCNAQ8M6B265LD91XNH0BRRYVKQTUCFZ4NHJGFDHBB9034L78DZFGSCY9' where id=3; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='6I01XADNR08W7F9B89LQWI6VQR7KNH7ZGX44Z1NF2Y5A78VFLY24VMCTYSLAC9YS7TLJ56CC3MIIS01ARE9DT8JGJKD58VREHXMNRMF9YC5JNQTOR2PIHL7WTMEYJ3VH09R9DETE1UCXSK2K3ZCCXZ8D44D9XV9VIVNOHHSW10XU8QVLVY21GUJFYHYBJBTOF7PKDGTYXR6VQ0AA18BIB4NEPBW34JHWCR3C6JE0W2G5QIV7LNBN26BDCYRD7S4T9' where id=3; -update noar ti set v2='6I01XADNR08W7F9B89LQWI6VQR7KNH7ZGX44Z1NF2Y5A78VFLY24VMCTYSLAC9YS7TLJ56CC3MIIS01ARE9DT8JGJKD58VREHXMNRMF9YC5JNQTOR2PIHL7WTMEYJ3VH09R9DETE1UCXSK2K3ZCCXZ8D44D9XV9VIVNOHHSW10XU8QVLVY21GUJFYHYBJBTOF7PKDGTYXR6VQ0AA18BIB4NEPBW34JHWCR3C6JE0W2G5QIV7LNBN26BDCYRD7S4T9' where id=3; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='BMJJUN9V7HS8SWT4F2MCPZB7FE6KDUKUU43IRNU2DOJXPX58YNNHER1B4DQ41SEET9LVD4WVX9IJNWBZBDT1VKS7049QASQ15IAZ0DXFKO93XW1XWXG1GCYN1HONDSQ4PP3LIU8WAFLA9RM8TYBB8LQ0D819R5BPX11M1Y816SGSLCVZGGXZY75Z7KKOF3KFQBNJZB06CUBM4CQ8M0X9G5YEGGS682UE5G52DWW1HM19VGVQEO9DX5APMHUPUK0OK' where id=3; -update noar ti set v3='BMJJUN9V7HS8SWT4F2MCPZB7FE6KDUKUU43IRNU2DOJXPX58YNNHER1B4DQ41SEET9LVD4WVX9IJNWBZBDT1VKS7049QASQ15IAZ0DXFKO93XW1XWXG1GCYN1HONDSQ4PP3LIU8WAFLA9RM8TYBB8LQ0D819R5BPX11M1Y816SGSLCVZGGXZY75Z7KKOF3KFQBNJZB06CUBM4CQ8M0X9G5YEGGS682UE5G52DWW1HM19VGVQEO9DX5APMHUPUK0OK' where id=3; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='ZJXWEASEZMXD3BNOHGPMVXP8EH5JMP79HUEIJWCARE5F3G8ISCRHMGZWCKA971FRH2Q5NTBML46F61J8YBBEDME6X3BY3GLL6E8BLESNS700WFO2VO7R0BK5E99DMRG4BQHD4MDD4T4Z1E69TUYOZ5QXP0JHHDTUEPDD719JWX4HBHCFUIBXAYMPXA5E91GKNH5639U1QGM7LP29L0W2WAUHVH9I7O6RUL3WGVV22OV7HZK1IQKIDBOGGM8ZI8TKV' where id=4; -update noar ti set v0='ZJXWEASEZMXD3BNOHGPMVXP8EH5JMP79HUEIJWCARE5F3G8ISCRHMGZWCKA971FRH2Q5NTBML46F61J8YBBEDME6X3BY3GLL6E8BLESNS700WFO2VO7R0BK5E99DMRG4BQHD4MDD4T4Z1E69TUYOZ5QXP0JHHDTUEPDD719JWX4HBHCFUIBXAYMPXA5E91GKNH5639U1QGM7LP29L0W2WAUHVH9I7O6RUL3WGVV22OV7HZK1IQKIDBOGGM8ZI8TKV' where id=4; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='8D3PKJ4BICVJKSPJJ1ZS3MG8F17FLFGDV8BL4TJ1ZQ8DENW8A2TOJT3AGGOM2FPMP8KWLA7R8SH35DYX7BFKLV9TL7H62FV7VA49JGT8ICPH9LAO65JCSVXRJWBE09222MJRFZDIB9934SGXXT005DW1HCKK3IGPNBF83DLK0EET77YAF7WFUK98NY0THDUQ5CDJ5WE14PKKH54FXDYOR6MXL87VD8LRRLX9AEPG5Z2E06B9E88X3SMF6WIQ4FJMK' where id=4; -update noar ti set v1='8D3PKJ4BICVJKSPJJ1ZS3MG8F17FLFGDV8BL4TJ1ZQ8DENW8A2TOJT3AGGOM2FPMP8KWLA7R8SH35DYX7BFKLV9TL7H62FV7VA49JGT8ICPH9LAO65JCSVXRJWBE09222MJRFZDIB9934SGXXT005DW1HCKK3IGPNBF83DLK0EET77YAF7WFUK98NY0THDUQ5CDJ5WE14PKKH54FXDYOR6MXL87VD8LRRLX9AEPG5Z2E06B9E88X3SMF6WIQ4FJMK' where id=4; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='GJGBSMJO675H8X1HCMZZ0P1D49AMK7PZRP4U6FAWAQ1BT0US9431CB351VUNTQEJ06ZQ375341MWEDPTQJ9M6S53ZBZEG1VZ3OO8U09FYUE4KBPW5DTN1HNX3FHEX12RPA5C6QEY83FK1ZJ9FH2YZDZF23SXI2YC4128Z4PR242IJZ9G8NJB25O1YJUCSOQ0DTUL76GSF0SUQLU6KF8YU2LJDIBNS5YO4FBPJXL7GXNNZYWGWCG4QICSB4XY1J6CN' where id=4; -update noar ti set v2='GJGBSMJO675H8X1HCMZZ0P1D49AMK7PZRP4U6FAWAQ1BT0US9431CB351VUNTQEJ06ZQ375341MWEDPTQJ9M6S53ZBZEG1VZ3OO8U09FYUE4KBPW5DTN1HNX3FHEX12RPA5C6QEY83FK1ZJ9FH2YZDZF23SXI2YC4128Z4PR242IJZ9G8NJB25O1YJUCSOQ0DTUL76GSF0SUQLU6KF8YU2LJDIBNS5YO4FBPJXL7GXNNZYWGWCG4QICSB4XY1J6CN' where id=4; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='IIWFVUF80WOR7ZIJHQFWVWKSP210DGF7P9JLEXHNPPSY7K8J6GMYJXYSFBK27207QA5RTBEWE6J0F9SL1S8A5R7VM0GW6VWIRL0JPRMG56MAM3H910Y3KAUN72F7KKRONLYH2LU7PHR41MQIVE573T1TCGKEV0NNSTY67KV63T0U3EKYTLZ0CXZCOAYTB409Y5FY632FRFDDKJFSDQHF0W8X32ESCPS9MPLV65TKYP0MCVWGCRCF9WTJY6NXUK4W6' where id=4; -update noar ti set v3='IIWFVUF80WOR7ZIJHQFWVWKSP210DGF7P9JLEXHNPPSY7K8J6GMYJXYSFBK27207QA5RTBEWE6J0F9SL1S8A5R7VM0GW6VWIRL0JPRMG56MAM3H910Y3KAUN72F7KKRONLYH2LU7PHR41MQIVE573T1TCGKEV0NNSTY67KV63T0U3EKYTLZ0CXZCOAYTB409Y5FY632FRFDDKJFSDQHF0W8X32ESCPS9MPLV65TKYP0MCVWGCRCF9WTJY6NXUK4W6' where id=4; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='T3SGM9F0HHF9TGA5VIUUNYEDLWWGZ2UJDS02T2IU4MNLP81JFV0TAQPU27LF5N9YH9UYI7ISEO4RAVTJG31RTI3UU1PQP4920TJ53U8NDXURZZU6UU6M9JGGGPEAB4NDXLBBMI9LF74E8FHYVRYAKFAYIKEOPRSLNUI06TFY46CLZPLAXLJ07OT9TV9HV5SO9F5LNK9QPA6ZAK3TNBI6OBE0VSHPP14SGUJTCBKKLQUT76MQV0U95OX0MEDJ8SIOG' where id=5; -update noar ti set v0='T3SGM9F0HHF9TGA5VIUUNYEDLWWGZ2UJDS02T2IU4MNLP81JFV0TAQPU27LF5N9YH9UYI7ISEO4RAVTJG31RTI3UU1PQP4920TJ53U8NDXURZZU6UU6M9JGGGPEAB4NDXLBBMI9LF74E8FHYVRYAKFAYIKEOPRSLNUI06TFY46CLZPLAXLJ07OT9TV9HV5SO9F5LNK9QPA6ZAK3TNBI6OBE0VSHPP14SGUJTCBKKLQUT76MQV0U95OX0MEDJ8SIOG' where id=5; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='77BFM7WKREFSTQ19XJ8RYLNTVFNAXE4DBHMNJ1W9LKXU9GYDDJOFTAXI8JBFOGCV5XIDY544C85K87Q04JR8X84J7N6NW8X4V4HA7MKDVBAGHFYPPY529I92ZLZAIRUYB7R37SUAZQSKPFZEGNWH5KCTJIY003MGLZST7FVF0O8M20YBA15AHI3VQV34KH17DI2T1ILUH41ZNUFMBTBIFAN7ZKQRBTTCW99XTLFWO8DFTVIIIDH49HTTMQ3QRX9Z1' where id=5; -update noar ti set v1='77BFM7WKREFSTQ19XJ8RYLNTVFNAXE4DBHMNJ1W9LKXU9GYDDJOFTAXI8JBFOGCV5XIDY544C85K87Q04JR8X84J7N6NW8X4V4HA7MKDVBAGHFYPPY529I92ZLZAIRUYB7R37SUAZQSKPFZEGNWH5KCTJIY003MGLZST7FVF0O8M20YBA15AHI3VQV34KH17DI2T1ILUH41ZNUFMBTBIFAN7ZKQRBTTCW99XTLFWO8DFTVIIIDH49HTTMQ3QRX9Z1' where id=5; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='9E4SU4R7VEHMPWNC6JEG4LHP4RC918X3O0IAX76AKV2RDLQ28TS71CUD2AYWUP2MGXQN44DFVDQ9DKQX87BM01LPZALOO6U3ZO5DU0L14CJO3CD5OGYUDIP2JR88VOEWDEKZ9PQYP8ADQ0KVCKT9XIO3N7O7VAXTOR9QQW5D5JTKI6P0VYIWKU8KP41ZUM7OD0JCAQSU7LIA8DPWKOYOT3VC3X90ZV1Q1Y6XQ5TDRG4DP86P1XHM5QA3R73ZRFSMU' where id=5; -update noar ti set v2='9E4SU4R7VEHMPWNC6JEG4LHP4RC918X3O0IAX76AKV2RDLQ28TS71CUD2AYWUP2MGXQN44DFVDQ9DKQX87BM01LPZALOO6U3ZO5DU0L14CJO3CD5OGYUDIP2JR88VOEWDEKZ9PQYP8ADQ0KVCKT9XIO3N7O7VAXTOR9QQW5D5JTKI6P0VYIWKU8KP41ZUM7OD0JCAQSU7LIA8DPWKOYOT3VC3X90ZV1Q1Y6XQ5TDRG4DP86P1XHM5QA3R73ZRFSMU' where id=5; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='459LKZ51NEUVZ5TRZ8KD6RG9Y9EEAXUD8ZEJWXLYZQOWYQTY6KMOGQTN9FWIRM5TE3TOD63JJLZ7KIHQHO1ECT1HEY80KJZJLBR4XGL0OPHGEBZ5FFLQZ60E7PRFEFGLKJIN9HSLFYMQPD1MWBTXU8CS9BGUWT31DUZ5X7KCFZBT9VUGAYCTK6JWNP2E0WXWCY8UTO7LB9GT4D23ZT93XPWS3W9TQ8Y4JK8AIEECC349B56EAG2N8T2KWC4FOK5GB' where id=5; -update noar ti set v3='459LKZ51NEUVZ5TRZ8KD6RG9Y9EEAXUD8ZEJWXLYZQOWYQTY6KMOGQTN9FWIRM5TE3TOD63JJLZ7KIHQHO1ECT1HEY80KJZJLBR4XGL0OPHGEBZ5FFLQZ60E7PRFEFGLKJIN9HSLFYMQPD1MWBTXU8CS9BGUWT31DUZ5X7KCFZBT9VUGAYCTK6JWNP2E0WXWCY8UTO7LB9GT4D23ZT93XPWS3W9TQ8Y4JK8AIEECC349B56EAG2N8T2KWC4FOK5GB' where id=5; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='VM9LCXGPDS2BXF0QDUEYK8BDI0WCXBNJLN8HS15SY426N1DEMFTVI69I1IH4M7432ZWFR86PPXSFJOBONWCSG203EMC2OJHVJBY3XFHDY85MOIMZR7V3TMW1ZJMTKGWZ1NSK02A8BOZ7QGMTUABV1HTLM2THK3NMWHFMQLRZ6AGBAU511E5FAO5QXU960CPV6G2N5SNS6ATFTJCH1ZWQJ7S4JBJH8L8NBI80J1EUO4GKW4SAT5D3G5B470ED63GN7' where id=6; -update noar ti set v0='VM9LCXGPDS2BXF0QDUEYK8BDI0WCXBNJLN8HS15SY426N1DEMFTVI69I1IH4M7432ZWFR86PPXSFJOBONWCSG203EMC2OJHVJBY3XFHDY85MOIMZR7V3TMW1ZJMTKGWZ1NSK02A8BOZ7QGMTUABV1HTLM2THK3NMWHFMQLRZ6AGBAU511E5FAO5QXU960CPV6G2N5SNS6ATFTJCH1ZWQJ7S4JBJH8L8NBI80J1EUO4GKW4SAT5D3G5B470ED63GN7' where id=6; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='Q9K414ODT08291LVJP5NMUHGZKLTV6DY1WV5S9G89LNR9LB773ENYADVZQNFNFDI3S0PBPLZ3LQFDVWWL3DNB1XUEAYJYKW06VAAL12XF64MCGIFUITME3JCKMY1QUQ1GYXCUCK7NLQWD94CPB74F302O1YK5YZWNUT5ROU8ON6WIEN1AW5MQNYB91BODVM1AKP1TWWV75NXDLT0QNX38HEVYBYQOJL4PYO6SRCQXTWEEMB17A2OP6NXCU36F1CX5' where id=6; -update noar ti set v1='Q9K414ODT08291LVJP5NMUHGZKLTV6DY1WV5S9G89LNR9LB773ENYADVZQNFNFDI3S0PBPLZ3LQFDVWWL3DNB1XUEAYJYKW06VAAL12XF64MCGIFUITME3JCKMY1QUQ1GYXCUCK7NLQWD94CPB74F302O1YK5YZWNUT5ROU8ON6WIEN1AW5MQNYB91BODVM1AKP1TWWV75NXDLT0QNX38HEVYBYQOJL4PYO6SRCQXTWEEMB17A2OP6NXCU36F1CX5' where id=6; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='GB9HHFJVTQO39O8O42N7OV3AHZYTV3D9PDJDYFN0EY09B2VKIH9IWIS60X6AWAXM1B4QX9XF9HJ1MA9HB50GR9LSPOAHSMQ1PZV8KHX9N89A4RVCAO0YL42RN9AR7COJ7NY6FZG1XHEMBD0R7UEGJ0O3CZBO3NUBGMB2U8OY0017U6QIJCG8VNTLWN1ZZ4YQLPLU7VRUAIU7W0K55B8JQFODM7M3IGQBE8EUS9MEG8KHY4Z5SFY4GNQO5QGAYGX19' where id=6; -update noar ti set v2='GB9HHFJVTQO39O8O42N7OV3AHZYTV3D9PDJDYFN0EY09B2VKIH9IWIS60X6AWAXM1B4QX9XF9HJ1MA9HB50GR9LSPOAHSMQ1PZV8KHX9N89A4RVCAO0YL42RN9AR7COJ7NY6FZG1XHEMBD0R7UEGJ0O3CZBO3NUBGMB2U8OY0017U6QIJCG8VNTLWN1ZZ4YQLPLU7VRUAIU7W0K55B8JQFODM7M3IGQBE8EUS9MEG8KHY4Z5SFY4GNQO5QGAYGX19' where id=6; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='517YPKKKPZGE939Z5V3BUTHZUJQ5UXWTGT1MFCL54F9IGLHJP5DHZEC1V02QCRZWAWUPDWMTTT2CLV9SD944YFJT8GRLQI7FRY9MW76YV4DRO5CBVZ3ZM9GSRJAWO7759XLO21WUHVB7O3FAJ70E713HDVA092GL09TCS40T4VISH2BXQ10UTI1YEFRZOKEYXRC23GXHMC4J9LTT5YIW5I2M5ELZIMZFHKERIUVJ2BZT821XR4MX8HQ5VULVVHFQ5' where id=6; -update noar ti set v3='517YPKKKPZGE939Z5V3BUTHZUJQ5UXWTGT1MFCL54F9IGLHJP5DHZEC1V02QCRZWAWUPDWMTTT2CLV9SD944YFJT8GRLQI7FRY9MW76YV4DRO5CBVZ3ZM9GSRJAWO7759XLO21WUHVB7O3FAJ70E713HDVA092GL09TCS40T4VISH2BXQ10UTI1YEFRZOKEYXRC23GXHMC4J9LTT5YIW5I2M5ELZIMZFHKERIUVJ2BZT821XR4MX8HQ5VULVVHFQ5' where id=6; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='RTJEPXOK0PKPC8SZN4H4LSBRITZ8M1820RZYUUJCAKFFZND9P7JWY5H7WGHB4P25IBXAB2ATQFLFOE7FJD4ZESEZ3IGWHUPZ35GQ28HEQGH7TZ2FV8FYEGG11ST45TBSTCNUNK38Q0LB5VA1KNSOG9JOURGD5GF7HMYDL0YJVU0TOXR9WLK1PFDI1NQGJY0A30IK0AQ4XL8QWPFQ0KVEQYO8IZF9XDKQVJSLV8Q834GHERRE3MPFUSQ6MBIBPEL1L' where id=7; -update noar ti set v0='RTJEPXOK0PKPC8SZN4H4LSBRITZ8M1820RZYUUJCAKFFZND9P7JWY5H7WGHB4P25IBXAB2ATQFLFOE7FJD4ZESEZ3IGWHUPZ35GQ28HEQGH7TZ2FV8FYEGG11ST45TBSTCNUNK38Q0LB5VA1KNSOG9JOURGD5GF7HMYDL0YJVU0TOXR9WLK1PFDI1NQGJY0A30IK0AQ4XL8QWPFQ0KVEQYO8IZF9XDKQVJSLV8Q834GHERRE3MPFUSQ6MBIBPEL1L' where id=7; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='BR3N3TYGCY425OB42XAIYPDWDZBOOYQ4HVOKX26OXG947F69MUTW6NXT9XRLSRDMNQQV682RZI6XR8OEO2POL1GM2K35DMR9L6K6YOX7L42AL7Z5DJMXGQ5B2XQGTZ6A7DNP06CCCSMMJ8R20QGW6JGNNI4VN1F7PQY6JR8E3BW82VZVTEN2QYJJRS73AZ9QA8Q5E7G31C3BGDU43FTBLDJ9GRXBF2LLNIYUR2JTPDBLE4R64N2HKYALOBZ1OEPCU' where id=7; -update noar ti set v1='BR3N3TYGCY425OB42XAIYPDWDZBOOYQ4HVOKX26OXG947F69MUTW6NXT9XRLSRDMNQQV682RZI6XR8OEO2POL1GM2K35DMR9L6K6YOX7L42AL7Z5DJMXGQ5B2XQGTZ6A7DNP06CCCSMMJ8R20QGW6JGNNI4VN1F7PQY6JR8E3BW82VZVTEN2QYJJRS73AZ9QA8Q5E7G31C3BGDU43FTBLDJ9GRXBF2LLNIYUR2JTPDBLE4R64N2HKYALOBZ1OEPCU' where id=7; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='SL3JXYSP33BACQD2I94HOF5DW1Y577QLKIY8X83KX09SRGFLYAY35766V1C5ZADM99XQQ5B351ZIJFZI3NVIJ1EUG4N55ZIP15RMD4NYX7L5VHDTO5Y8RMRLTXMOCYSDJJ30SRHSCPEGATIRZ4XSAU4II83MZG75025IWG77UPEAK6FTUPWBNCCXMU1U80V9XQI302IIUI7RBFC4YIQSKHQWMAM97HWV69EZJ5TS6GUC3T4A9HOYUHFNV6BBF8CGR' where id=7; -update noar ti set v2='SL3JXYSP33BACQD2I94HOF5DW1Y577QLKIY8X83KX09SRGFLYAY35766V1C5ZADM99XQQ5B351ZIJFZI3NVIJ1EUG4N55ZIP15RMD4NYX7L5VHDTO5Y8RMRLTXMOCYSDJJ30SRHSCPEGATIRZ4XSAU4II83MZG75025IWG77UPEAK6FTUPWBNCCXMU1U80V9XQI302IIUI7RBFC4YIQSKHQWMAM97HWV69EZJ5TS6GUC3T4A9HOYUHFNV6BBF8CGR' where id=7; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='SG2TTFA79JQTR676JWQ5D053X40K5MQBYAU0DODYXPA507R3WVBBVCEP9KN6HNB8VH972VICRBVVX3MA679LJT9QVB3ZBF0ZT6OFB8JCPLXX9LNOUY1A4OCNPUONMLLU5X3LVQEEWQ1VWQBKETR6J7P3C0C5QCCGUST8JADO3JBSY3ES1K4AWSCTK0GRJ28B9JQZ38WNBZ0QEOHUNPR27KN88XIJWEWVK4E3YXF0OYYC653ZWQCR6LC04868OY6XF' where id=7; -update noar ti set v3='SG2TTFA79JQTR676JWQ5D053X40K5MQBYAU0DODYXPA507R3WVBBVCEP9KN6HNB8VH972VICRBVVX3MA679LJT9QVB3ZBF0ZT6OFB8JCPLXX9LNOUY1A4OCNPUONMLLU5X3LVQEEWQ1VWQBKETR6J7P3C0C5QCCGUST8JADO3JBSY3ES1K4AWSCTK0GRJ28B9JQZ38WNBZ0QEOHUNPR27KN88XIJWEWVK4E3YXF0OYYC653ZWQCR6LC04868OY6XF' where id=7; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='6Z8109SOVJDDUWRTZ7W3TNXVNSFYZLEPYEGCRYCZPABBYGR3QAFVCXLXG9PJX9VPTFXCUHBYO0XEFYKQW07ZZMPOGLV740QAWB7Z9BURCAJVDSW6AWQBV8XL3AE1KW8YVUWY1FTOAGLIAUO7UWK41IYVTF1YP2EK9H7P19I0HNDBAA6WHXI9PB23JKKJTCJQ2FP8AO8DS427PQQ5COEIO113NQ7JQEY3GOZWG1TE2G9LDLJ3W7072PEH0ALVFPQBW' where id=8; -update noar ti set v0='6Z8109SOVJDDUWRTZ7W3TNXVNSFYZLEPYEGCRYCZPABBYGR3QAFVCXLXG9PJX9VPTFXCUHBYO0XEFYKQW07ZZMPOGLV740QAWB7Z9BURCAJVDSW6AWQBV8XL3AE1KW8YVUWY1FTOAGLIAUO7UWK41IYVTF1YP2EK9H7P19I0HNDBAA6WHXI9PB23JKKJTCJQ2FP8AO8DS427PQQ5COEIO113NQ7JQEY3GOZWG1TE2G9LDLJ3W7072PEH0ALVFPQBW' where id=8; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='3M8DXQC5UXZHYCMLFSPSUP4U1VW4DTD8MM16PZKCWQIA4MDD1DU0LS4YRXZ04BE4AOLPN6JKZF52AWFHQYG688JLYBR1XT3HFDBIS4I9XLONXAM9489FEWEIA4O23Q0UY82WVXX56AUZ9S0N3ERAF92OFH6BAM7YAOJTD348XKTBD52AIRKD56QYD8RH39JT1CNB0A1Y3CIAFLJ0HB6QLNXBZHO1GFQR98O0HOYOKGC1NY3SEHVAWGPCYN5ZZHJWL' where id=8; -update noar ti set v1='3M8DXQC5UXZHYCMLFSPSUP4U1VW4DTD8MM16PZKCWQIA4MDD1DU0LS4YRXZ04BE4AOLPN6JKZF52AWFHQYG688JLYBR1XT3HFDBIS4I9XLONXAM9489FEWEIA4O23Q0UY82WVXX56AUZ9S0N3ERAF92OFH6BAM7YAOJTD348XKTBD52AIRKD56QYD8RH39JT1CNB0A1Y3CIAFLJ0HB6QLNXBZHO1GFQR98O0HOYOKGC1NY3SEHVAWGPCYN5ZZHJWL' where id=8; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='0RC1AZUH5QVDDQWSM0RE9XJIGVJN1ZFUP1O9NTRMHRPUZDMULV3C4ZXSKBZ73TC5F7487QXZ8ZV81QDZPQ3DEZBHRII0T6YFJXG54HV6OITHFEYATG8D27CYVJY58JRHK2CM7EHF45CWAG5GL7IXQD76VSLO9YEPRJWQGFK3YUSIY1J4Z4TD8HEN1C5CFT5ETJ4MP6N8UAQ3MQGXZO71WSR0Y26W1CARA0C095OKKG0ECXK6DMFKOO8EVZPECY92E' where id=8; -update noar ti set v2='0RC1AZUH5QVDDQWSM0RE9XJIGVJN1ZFUP1O9NTRMHRPUZDMULV3C4ZXSKBZ73TC5F7487QXZ8ZV81QDZPQ3DEZBHRII0T6YFJXG54HV6OITHFEYATG8D27CYVJY58JRHK2CM7EHF45CWAG5GL7IXQD76VSLO9YEPRJWQGFK3YUSIY1J4Z4TD8HEN1C5CFT5ETJ4MP6N8UAQ3MQGXZO71WSR0Y26W1CARA0C095OKKG0ECXK6DMFKOO8EVZPECY92E' where id=8; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='8E0W95X2JLN1TQHNSVEGV7XG2N0Y4Q13JWWK83BZ7SX41O9VJQ5BFNFCGTRMB4AOQSSKA2GZQOQVNP4X6TPIC3CIGCF8X1O3RUTZ0OF8BQ64CSPT8ORMNGF2XYXCE2PODKJUB2URX76HZS2LVFGWNSBFVVCZEN2OFJ06A11UJ1BMR19FIFA6UOZ29KU3Z0GA5U2VSMPUP47KSB08908R4WH1N2Y4ZHOM04DZ106VUVXV1GQ0IZ62BFGRY29KXQ3RI' where id=8; -update noar ti set v3='8E0W95X2JLN1TQHNSVEGV7XG2N0Y4Q13JWWK83BZ7SX41O9VJQ5BFNFCGTRMB4AOQSSKA2GZQOQVNP4X6TPIC3CIGCF8X1O3RUTZ0OF8BQ64CSPT8ORMNGF2XYXCE2PODKJUB2URX76HZS2LVFGWNSBFVVCZEN2OFJ06A11UJ1BMR19FIFA6UOZ29KU3Z0GA5U2VSMPUP47KSB08908R4WH1N2Y4ZHOM04DZ106VUVXV1GQ0IZ62BFGRY29KXQ3RI' where id=8; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='LKX57SWVK5IE30N7BHD3C80L769S62BXRK1A5NAOC7TU3J1E8XDZT6T4UE4AJOGJMNMS9DNC8EAT65NZ135608MBF3ZJZZJWWQSXDFV8HKN71PHPT8U6I2YX352X40JUH5XQVRNB5AYXP9K93RKC3EM2U4HP2P11QDR1AJLNWN3KHR84ASL3QOZZQP58EGZQIUQYHAXI8S9H7BDCWGN9ACC6BS7RSQZ2CCA021GAD280WJOFL4J9VPDWM59OHK2I7' where id=9; -update noar ti set v0='LKX57SWVK5IE30N7BHD3C80L769S62BXRK1A5NAOC7TU3J1E8XDZT6T4UE4AJOGJMNMS9DNC8EAT65NZ135608MBF3ZJZZJWWQSXDFV8HKN71PHPT8U6I2YX352X40JUH5XQVRNB5AYXP9K93RKC3EM2U4HP2P11QDR1AJLNWN3KHR84ASL3QOZZQP58EGZQIUQYHAXI8S9H7BDCWGN9ACC6BS7RSQZ2CCA021GAD280WJOFL4J9VPDWM59OHK2I7' where id=9; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='LAB2DLVFDCPF3S5FTZ536C082X007E9VK0IQF2FZGKYDB8Y7UD15XNBC0XHP68GN9K8DIQ63G6RWN6YQZFXPVMAHM2J9MIGJU3N7QIR17G6IKXKU7WSMFDIF0LBUM8SH3DKSXEMZ5R7UKYF762H3JZ8STOU934Z4WLBL9XIH3W7CDQC0R6SFW7HPBBA9237BDCDTXVFPBTY4SM9EIAPXAJYIYSIJ2NC0N7JCHG5I1OC6OP7KHTE3A39SHSWYBFHCE' where id=9; -update noar ti set v1='LAB2DLVFDCPF3S5FTZ536C082X007E9VK0IQF2FZGKYDB8Y7UD15XNBC0XHP68GN9K8DIQ63G6RWN6YQZFXPVMAHM2J9MIGJU3N7QIR17G6IKXKU7WSMFDIF0LBUM8SH3DKSXEMZ5R7UKYF762H3JZ8STOU934Z4WLBL9XIH3W7CDQC0R6SFW7HPBBA9237BDCDTXVFPBTY4SM9EIAPXAJYIYSIJ2NC0N7JCHG5I1OC6OP7KHTE3A39SHSWYBFHCE' where id=9; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='UPA3863V3G3BFATC0PGP4KNKMO034WQYLSMXSCABQBJISNSBXS0GY5U97PY6EZVI0RI5RTXH4FTTPLD3M3TQJP6INVTOCIGQS9R82PY8DR7KJLZOL15DFW4WWPSV6FF53OF9J06MNQO8HJUKC9R1BTG3CDXX8MFLDIUH9J7CK8E8VA3IPAQQPJZX5IJMOUVUU2397YP0T69HHWU6FS50UCP2B7XIYP1B63VX91B3M3430WSTO2186KX8TY2VQMPUQ' where id=9; -update noar ti set v2='UPA3863V3G3BFATC0PGP4KNKMO034WQYLSMXSCABQBJISNSBXS0GY5U97PY6EZVI0RI5RTXH4FTTPLD3M3TQJP6INVTOCIGQS9R82PY8DR7KJLZOL15DFW4WWPSV6FF53OF9J06MNQO8HJUKC9R1BTG3CDXX8MFLDIUH9J7CK8E8VA3IPAQQPJZX5IJMOUVUU2397YP0T69HHWU6FS50UCP2B7XIYP1B63VX91B3M3430WSTO2186KX8TY2VQMPUQ' where id=9; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='CGWF4UHGUSJ0V0R4BM4OXCUN3WIYF1XBQV0R81BXU94JHJWAY1H9LN8YR47MI56X9UNSW6OXIAYT827OYPKMFBWAQN3DYOWEZY8WOEXRDQQD7ZV5D9LV98QXD5RW6LH0B8QAXZBPLHC3SV779Z2TCXQZNZHVQ3MVIBHJ2KWGN76SO16DPNAXIV6DMRWF167GSU3A8DCW6HGAJG4EIGE408HLFZB0Z4X9WGJC1OZDNPVC9QSY9QBF7Z2H2KGLT8DHA' where id=9; -update noar ti set v3='CGWF4UHGUSJ0V0R4BM4OXCUN3WIYF1XBQV0R81BXU94JHJWAY1H9LN8YR47MI56X9UNSW6OXIAYT827OYPKMFBWAQN3DYOWEZY8WOEXRDQQD7ZV5D9LV98QXD5RW6LH0B8QAXZBPLHC3SV779Z2TCXQZNZHVQ3MVIBHJ2KWGN76SO16DPNAXIV6DMRWF167GSU3A8DCW6HGAJG4EIGE408HLFZB0Z4X9WGJC1OZDNPVC9QSY9QBF7Z2H2KGLT8DHA' where id=9; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='5MWI8L5Q1UCHJND2A5E13OJHQAOWZRQLPKJTH9NBBF5KB5SFUST56UJ0MURFTN79NBLW2E9ESMSO9HAQAQJSQ8KJRMD4O1U9BGE3Q7WQEH3Q8V6QM5TFW6CYOLJ8F6LW9Z141PU74K2SWCBLJF9FR61BM3K7IIVAX0KAIW7HIFCV1Y2R8NJ7JTGOF4K17CCXW90RW4REW7XSOMLTI07FAR7JJVVY08GWLKYCQVETAV9CBWFTB2VQJYXPF11S6HETK' where id=10; -update noar ti set v0='5MWI8L5Q1UCHJND2A5E13OJHQAOWZRQLPKJTH9NBBF5KB5SFUST56UJ0MURFTN79NBLW2E9ESMSO9HAQAQJSQ8KJRMD4O1U9BGE3Q7WQEH3Q8V6QM5TFW6CYOLJ8F6LW9Z141PU74K2SWCBLJF9FR61BM3K7IIVAX0KAIW7HIFCV1Y2R8NJ7JTGOF4K17CCXW90RW4REW7XSOMLTI07FAR7JJVVY08GWLKYCQVETAV9CBWFTB2VQJYXPF11S6HETK' where id=10; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='C49KN2OLITD139WCYM0ECVCJ6D01Z16HETLLLJGT4AZEN97OQ3R4C65VP4WSE8FYVIUZG5DBXLG9EHTDC97Y67BTB34YORGZSSV1GK315TXREO5X9PJHV7MOEFX6LQP17A41QKZNMQ280SODLE2R2EN59F06L4D9UV3G10SB62QGUIF19UWT0XY2XPAPPMIQ66I7WCM4LWO2Z0NGZ29QPFHRPJZBCLUIYB47EBBAUPPRPBXNTFBBXFSC1FPAAXSY5' where id=10; -update noar ti set v1='C49KN2OLITD139WCYM0ECVCJ6D01Z16HETLLLJGT4AZEN97OQ3R4C65VP4WSE8FYVIUZG5DBXLG9EHTDC97Y67BTB34YORGZSSV1GK315TXREO5X9PJHV7MOEFX6LQP17A41QKZNMQ280SODLE2R2EN59F06L4D9UV3G10SB62QGUIF19UWT0XY2XPAPPMIQ66I7WCM4LWO2Z0NGZ29QPFHRPJZBCLUIYB47EBBAUPPRPBXNTFBBXFSC1FPAAXSY5' where id=10; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='H7L0LK8JRYQIVVJQA8FNK1K8LJ6BE17323OUEU5SD1RZ3JW2N7EKGJ5MNM1HA2E4PCSLX3J5KNK8056UCC5I38HIY8L57ST22BYNW53YMST40VNKOIDW4QG3A54J25FBZHS55EQTXYLA31M31TCS84SP314ZOR67NA0P5DBJ6ULTTHZP41XRYX20C78IVNLLJ1HJA2WU3YMXSL0OTZNLN6X4XDQNUW1D5JT5AW7SRLKV446RCR3YU92PXX58Y75CW' where id=10; -update noar ti set v2='H7L0LK8JRYQIVVJQA8FNK1K8LJ6BE17323OUEU5SD1RZ3JW2N7EKGJ5MNM1HA2E4PCSLX3J5KNK8056UCC5I38HIY8L57ST22BYNW53YMST40VNKOIDW4QG3A54J25FBZHS55EQTXYLA31M31TCS84SP314ZOR67NA0P5DBJ6ULTTHZP41XRYX20C78IVNLLJ1HJA2WU3YMXSL0OTZNLN6X4XDQNUW1D5JT5AW7SRLKV446RCR3YU92PXX58Y75CW' where id=10; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='R96YM73YM4R0B1UNOEJNCB8YGAITGGYL0TLWYLS31LHF19XUDQBNLVZEJM0PEHP4BEOGF0FX2AI83UDPVY59WIJGMFC9G74FFJA3HV92TBCEB00V768UMIEB4C0ZR4U7M0JONP5NTVC2VSZSBMEFF6KTNUE05RCE20AR4IQX4WY1UOREP6F6IT07PQVYHNF3W6AGUANQOZI90QNC2ZSHAIR6UHZGOML3BB9SYQ0UTNMPOJ7T0NXED620VNC0RQ3MR' where id=10; -update noar ti set v3='R96YM73YM4R0B1UNOEJNCB8YGAITGGYL0TLWYLS31LHF19XUDQBNLVZEJM0PEHP4BEOGF0FX2AI83UDPVY59WIJGMFC9G74FFJA3HV92TBCEB00V768UMIEB4C0ZR4U7M0JONP5NTVC2VSZSBMEFF6KTNUE05RCE20AR4IQX4WY1UOREP6F6IT07PQVYHNF3W6AGUANQOZI90QNC2ZSHAIR6UHZGOML3BB9SYQ0UTNMPOJ7T0NXED620VNC0RQ3MR' where id=10; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='04OSZWABN8XYY4HEHYQJRM7M2XPBD8UTK1LGYIMPLC18WQU8QR3A1HJB2L9P8RA6ZLG3U56XC5VV71CT29KDCW0FUOZC3XGA7RGJZTGPZFD8E1JFVLND694GI6NNH3D36UXLE5F296PXRCC7NH7PUJS5ZQI1ZYC3TAH71S5LGJZPJTIZPPU6OOEZSVOZ26P6F6KG380CLRWV81TYQKPQL4TE3EST8X8Q5AFNAQ6HBJJ9XFAK8642TYUZQLGEK7P0G' where id=11; -update noar ti set v0='04OSZWABN8XYY4HEHYQJRM7M2XPBD8UTK1LGYIMPLC18WQU8QR3A1HJB2L9P8RA6ZLG3U56XC5VV71CT29KDCW0FUOZC3XGA7RGJZTGPZFD8E1JFVLND694GI6NNH3D36UXLE5F296PXRCC7NH7PUJS5ZQI1ZYC3TAH71S5LGJZPJTIZPPU6OOEZSVOZ26P6F6KG380CLRWV81TYQKPQL4TE3EST8X8Q5AFNAQ6HBJJ9XFAK8642TYUZQLGEK7P0G' where id=11; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='8E2N7HIEARWE7A2FUX14OL351UO3J88GLZYU3RDC5FBBY37FRBXFPIZQ9EQHNT753I4IJ3W648RGXG3STBZPUJ7TETT8QHKC7M3Z4FTNX5PEOT8OJH41IK7YZA4IK2UOK1B34RVC21JPSFFGRA5MZZ053O2T7IXW99Z49TMGJP22C6W42CT3UWY7X1HC9CWGR3NFB6K54SIPIAA6RGBQ0NR488KL85XUW0B7E1UMT12RC4WAVDMZAAJB3HIESDVX9' where id=11; -update noar ti set v1='8E2N7HIEARWE7A2FUX14OL351UO3J88GLZYU3RDC5FBBY37FRBXFPIZQ9EQHNT753I4IJ3W648RGXG3STBZPUJ7TETT8QHKC7M3Z4FTNX5PEOT8OJH41IK7YZA4IK2UOK1B34RVC21JPSFFGRA5MZZ053O2T7IXW99Z49TMGJP22C6W42CT3UWY7X1HC9CWGR3NFB6K54SIPIAA6RGBQ0NR488KL85XUW0B7E1UMT12RC4WAVDMZAAJB3HIESDVX9' where id=11; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='ZTDXW5EMDB874E1R5QJZ1VRX7C5YV4568RUA65LQDVT8PPHOVQFI25HA2LY6TXZS84SACW20K1RYKZQ59MM05ICVXNV4TVN7LP9P6CI5O1T6G7U9F8F1VRSBU65WZFF0YOLSJ3Q3KVZ7WVMAF5SZT6BKC8WNTITLWKPJP3SJL1UBAAPZ27S8BHHEJX202E1NPYRCP8VPJEK8AE238OPHRT2P8RDH0FZLOHW17WAB2GQQVL4FR4RM33IUXVUEE3HL0' where id=11; -update noar ti set v2='ZTDXW5EMDB874E1R5QJZ1VRX7C5YV4568RUA65LQDVT8PPHOVQFI25HA2LY6TXZS84SACW20K1RYKZQ59MM05ICVXNV4TVN7LP9P6CI5O1T6G7U9F8F1VRSBU65WZFF0YOLSJ3Q3KVZ7WVMAF5SZT6BKC8WNTITLWKPJP3SJL1UBAAPZ27S8BHHEJX202E1NPYRCP8VPJEK8AE238OPHRT2P8RDH0FZLOHW17WAB2GQQVL4FR4RM33IUXVUEE3HL0' where id=11; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='AB9PDSQ9YG0LBM3R95BLRP238RC8GSOJ4KMOIUZP6JD30SVS5ZYE2G4NX2KBW3IZ3DBL6E8NHY2RSSODMLWQFUTP9AYRTKSH44MQJ1BJSJ68ROS3X95WCJHZMVQW8LLGSA76XMD44TKKYPVUL7UVNHZPFTNQ3ILPYEAX8FI8X1FMKKQTOYBYUXG4JPL0G41VYW9VHUOVSK4YQ7E7L0J6R09JRHEPQQFP114Z4BAHRCU31LTTODWKN0R6SJOJK4BCJ' where id=11; -update noar ti set v3='AB9PDSQ9YG0LBM3R95BLRP238RC8GSOJ4KMOIUZP6JD30SVS5ZYE2G4NX2KBW3IZ3DBL6E8NHY2RSSODMLWQFUTP9AYRTKSH44MQJ1BJSJ68ROS3X95WCJHZMVQW8LLGSA76XMD44TKKYPVUL7UVNHZPFTNQ3ILPYEAX8FI8X1FMKKQTOYBYUXG4JPL0G41VYW9VHUOVSK4YQ7E7L0J6R09JRHEPQQFP114Z4BAHRCU31LTTODWKN0R6SJOJK4BCJ' where id=11; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='V5LXYKY6V5LZ1ZEYN00JYGI9Z5VSX0NX2QG85LKPGTK4H8IX7WJ3616O693JUUP82F9XJAVOJ9IH3YK5YT3WFQ5X3D4RM0IAX3M30KZY3G23Q9A4XC74ZOYH5TD18293O5HY2EJH7S9XCVB1GKC1P1MD9Y11V0WSEA15LI6XXNSCC9KQFQ1RS7S0HNCMJL64OQ2T1KVEFVR3E2AQOUB5SWX023MY6TY2DDDPUL28NEA3N0G1ZEV7135NAG7D5OK5G' where id=12; -update noar ti set v0='V5LXYKY6V5LZ1ZEYN00JYGI9Z5VSX0NX2QG85LKPGTK4H8IX7WJ3616O693JUUP82F9XJAVOJ9IH3YK5YT3WFQ5X3D4RM0IAX3M30KZY3G23Q9A4XC74ZOYH5TD18293O5HY2EJH7S9XCVB1GKC1P1MD9Y11V0WSEA15LI6XXNSCC9KQFQ1RS7S0HNCMJL64OQ2T1KVEFVR3E2AQOUB5SWX023MY6TY2DDDPUL28NEA3N0G1ZEV7135NAG7D5OK5G' where id=12; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='ZFN6OAEU26G707F962O4QHOZPX6W0D0QWRPRAJOFX8XPMRN9Y0TP1G34WAZYA45M3EZ78WCA84SCYS1261QZ4ZS3ULL36AS0VXJDWNJWFX3S05B3AEMANUWFEVJNVIAGB6PE6893N55ZX6QDPWPL364CAR21DXICCEXUTTPALNVO2ZRY6TRQUH6PTRBNO72MLWJ9YCAQPQNUAVCOYNQ66YQYD0I5FK01H50G1WDN8VH2JG0FRESSN5PLOF9PQD5QR' where id=12; -update noar ti set v1='ZFN6OAEU26G707F962O4QHOZPX6W0D0QWRPRAJOFX8XPMRN9Y0TP1G34WAZYA45M3EZ78WCA84SCYS1261QZ4ZS3ULL36AS0VXJDWNJWFX3S05B3AEMANUWFEVJNVIAGB6PE6893N55ZX6QDPWPL364CAR21DXICCEXUTTPALNVO2ZRY6TRQUH6PTRBNO72MLWJ9YCAQPQNUAVCOYNQ66YQYD0I5FK01H50G1WDN8VH2JG0FRESSN5PLOF9PQD5QR' where id=12; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='VQX0Z8GIYB6PDTQQ3QWOJ3UEYKJR19SD53FCIJPVJ5PG2PZCA15JF90K3CCXX2WJ5YAH2SBJ6V7RWZMWR34NGNM57OUBQ31M9XYWD7AMVTE2YMLH45V64A7EIL22LRMFNBH23OFGMMG72U8RUZUUY7VL48MWH9KQ8XBJJCL4GLA9P7BI6Z3FD5VEYN6NLZBAD38E2UKNFYZWF0C7ZHTQYMSZZI5ZKBCU1UZCD8G0BUZCUVMVTTSSZD8APYS1S2JQS' where id=12; -update noar ti set v2='VQX0Z8GIYB6PDTQQ3QWOJ3UEYKJR19SD53FCIJPVJ5PG2PZCA15JF90K3CCXX2WJ5YAH2SBJ6V7RWZMWR34NGNM57OUBQ31M9XYWD7AMVTE2YMLH45V64A7EIL22LRMFNBH23OFGMMG72U8RUZUUY7VL48MWH9KQ8XBJJCL4GLA9P7BI6Z3FD5VEYN6NLZBAD38E2UKNFYZWF0C7ZHTQYMSZZI5ZKBCU1UZCD8G0BUZCUVMVTTSSZD8APYS1S2JQS' where id=12; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='H3M5YB8VKJX9HCV2B0ZA4NZXHC8H8YTAY9A9SXI8MS1YRBISRAH5TG2N2GQK31GP12JX5J4XRSLB9A1CY4GMKVHZFMK738PPKUNJMCCHKL8CUYCRCLSQVT56CO9J87AZ9TIQG1UCR9M49CJR0JV0N3184GMXTCDTC3QGJP78NGFBMVEF8WHD3XK4X1EU49YEVMDC4AP6MA2QISRR5VSS9TAZ1YK9CJKLG0LE1SF53XQG1PZQHQ2IAAKPMGQ2IP0KN' where id=12; -update noar ti set v3='H3M5YB8VKJX9HCV2B0ZA4NZXHC8H8YTAY9A9SXI8MS1YRBISRAH5TG2N2GQK31GP12JX5J4XRSLB9A1CY4GMKVHZFMK738PPKUNJMCCHKL8CUYCRCLSQVT56CO9J87AZ9TIQG1UCR9M49CJR0JV0N3184GMXTCDTC3QGJP78NGFBMVEF8WHD3XK4X1EU49YEVMDC4AP6MA2QISRR5VSS9TAZ1YK9CJKLG0LE1SF53XQG1PZQHQ2IAAKPMGQ2IP0KN' where id=12; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='0BQ6JUDERPBLQAZNK08MLPXJNCWNYQ1LUPIIG87140824SGIOWRJREI8HEG918VT3Y2QL272H26K80BT5L112AE0M3RDVC5IU653G5SBWITYM11G419FMLNE54HPQE05A28A0TH7U8OEE1B0TRPWT2V8D5UF1XEEEJ0KRYTPRQX8UQQLFFAQRJOSHE78KOM8BMKO8D2U05HU2XMXLZAFYHT2JJ14JAJE9Q3X76O8S3LJ2D5Q995OWH8I8VNV4S34E' where id=13; -update noar ti set v0='0BQ6JUDERPBLQAZNK08MLPXJNCWNYQ1LUPIIG87140824SGIOWRJREI8HEG918VT3Y2QL272H26K80BT5L112AE0M3RDVC5IU653G5SBWITYM11G419FMLNE54HPQE05A28A0TH7U8OEE1B0TRPWT2V8D5UF1XEEEJ0KRYTPRQX8UQQLFFAQRJOSHE78KOM8BMKO8D2U05HU2XMXLZAFYHT2JJ14JAJE9Q3X76O8S3LJ2D5Q995OWH8I8VNV4S34E' where id=13; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='9AMZKRYJEMP4690BPS403LC8UT5MODEBM22BAG4D39U0Q4TBE4EWK96ZD8NUZI5TV8R9T0N6Q2ASJV0JTZUEMKXT1MOV3Z5JET3OIFZUWHKV7GE2U1HJBLFQCKUMK8P0HTMMEFSFCIH0IAL677H2DKTRA2KTCZTFJMIUZVF4E9CAREB74X2P2ZLPQHESFSY2N1ILJHCXBHSFD8J0YHAZS5IWLRCPG241RX1AFY43N4T4RTAIQY6REPXRL1U6IEPZ7' where id=13; -update noar ti set v1='9AMZKRYJEMP4690BPS403LC8UT5MODEBM22BAG4D39U0Q4TBE4EWK96ZD8NUZI5TV8R9T0N6Q2ASJV0JTZUEMKXT1MOV3Z5JET3OIFZUWHKV7GE2U1HJBLFQCKUMK8P0HTMMEFSFCIH0IAL677H2DKTRA2KTCZTFJMIUZVF4E9CAREB74X2P2ZLPQHESFSY2N1ILJHCXBHSFD8J0YHAZS5IWLRCPG241RX1AFY43N4T4RTAIQY6REPXRL1U6IEPZ7' where id=13; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='FCCDBULZN5AC5HUZMOU1J5QRCS4S1C7Z371Y8Z7N88H67IF2M8TMELBN8W1BH9ZQVGDMFQP0VLDXKYLTZUYBPBW0UO7MBPSH4AZ60AIOTIUB9LW8P0TI2U15RF62E5YPC8S5LZ05QXMSMHDCVU0RUAJ943L2GH41VRLYRUHCKUVQDAHCH20KLMY8F76EGCO1DD7GG1IJ2BN2N0IJBAAMB54QQ2Q4Z3RZYSX9383G53983PGKFS0UXMZO7J1U4HKZU' where id=13; -update noar ti set v2='FCCDBULZN5AC5HUZMOU1J5QRCS4S1C7Z371Y8Z7N88H67IF2M8TMELBN8W1BH9ZQVGDMFQP0VLDXKYLTZUYBPBW0UO7MBPSH4AZ60AIOTIUB9LW8P0TI2U15RF62E5YPC8S5LZ05QXMSMHDCVU0RUAJ943L2GH41VRLYRUHCKUVQDAHCH20KLMY8F76EGCO1DD7GG1IJ2BN2N0IJBAAMB54QQ2Q4Z3RZYSX9383G53983PGKFS0UXMZO7J1U4HKZU' where id=13; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='SAQMCV95TG3T09WH0B904FML7IG727PSMJ9TN7102TPY13JMAFKBIZSTUJJS5DJ21KMMHYJTXEGGIU83KIGIYNPEKRW8VI1CHWHTL6N7EX8DZMEMR356G4BRL4FASSVCSN1RU0FEIWGDKCCW38AYQERJRT2UVWDH2LC7ZHFODGJ16TJKU3ARDPIBDEJ5H0CWK3JV96XWYSU6Z9HWJD5G2F78HEPQU615XWYJKG7TIQA7NJ3U2B09GASBEU2YZO59H' where id=13; -update noar ti set v3='SAQMCV95TG3T09WH0B904FML7IG727PSMJ9TN7102TPY13JMAFKBIZSTUJJS5DJ21KMMHYJTXEGGIU83KIGIYNPEKRW8VI1CHWHTL6N7EX8DZMEMR356G4BRL4FASSVCSN1RU0FEIWGDKCCW38AYQERJRT2UVWDH2LC7ZHFODGJ16TJKU3ARDPIBDEJ5H0CWK3JV96XWYSU6Z9HWJD5G2F78HEPQU615XWYJKG7TIQA7NJ3U2B09GASBEU2YZO59H' where id=13; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='8P7YV1QBXTRVC6H3J5GN8BKD2CIN7H0YNSXE7VQD94SODKPKGOO7TOAHDUORC2JTLR63I81JXNFT0Y9P9ITRAX9R93W7MAGKB6LCYFSTXF53TKUASMF0ZHND54QB1Y4BV5PL4DLQ5SVMH560FVD0CA38HCLDVY278DSWSMGYAQACJL792TZ6M6LEXTMDI90ZI2TIQBQ23KEI0T8A79SUIH2XTS5MOYE7KFE3O93ERNIXVPYNQWZBTNVAFGUSX93QK' where id=14; -update noar ti set v0='8P7YV1QBXTRVC6H3J5GN8BKD2CIN7H0YNSXE7VQD94SODKPKGOO7TOAHDUORC2JTLR63I81JXNFT0Y9P9ITRAX9R93W7MAGKB6LCYFSTXF53TKUASMF0ZHND54QB1Y4BV5PL4DLQ5SVMH560FVD0CA38HCLDVY278DSWSMGYAQACJL792TZ6M6LEXTMDI90ZI2TIQBQ23KEI0T8A79SUIH2XTS5MOYE7KFE3O93ERNIXVPYNQWZBTNVAFGUSX93QK' where id=14; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='AB353RMDDKRCC3CI27XQNS4GL6N20K2GN99IG7KEABKLL3DKHL2VXWUYP2PKZIXHMQBGCWVIQUN7N7NSOWU7X79WLT4D4DZG5KBNKH86T5JK0YPHJZGNTP9OCBMJQXOEN0SV6DQOYAYWMY0VLLNU95DQWT13Y11MP2MO8HPAGXU945VW033XZSWKR1VEZYSFY7UVMWC3WJUAB266C6CCCDIIGQ0181MWZBCQXD7ZDDGPSGVNMX33DP0F2KZK4R46O' where id=14; -update noar ti set v1='AB353RMDDKRCC3CI27XQNS4GL6N20K2GN99IG7KEABKLL3DKHL2VXWUYP2PKZIXHMQBGCWVIQUN7N7NSOWU7X79WLT4D4DZG5KBNKH86T5JK0YPHJZGNTP9OCBMJQXOEN0SV6DQOYAYWMY0VLLNU95DQWT13Y11MP2MO8HPAGXU945VW033XZSWKR1VEZYSFY7UVMWC3WJUAB266C6CCCDIIGQ0181MWZBCQXD7ZDDGPSGVNMX33DP0F2KZK4R46O' where id=14; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='8YFKAMF2GMDUTSJVHV96FLY3H175FH18XC854DX64XPJQ91WJ1OVP5D4UKIM4924J3KTRUW4BP5HI5N9PFZ7GKBYMGJLBO47ZTX0UR6J6THBB0QQNMDDUXTTMJ9V9KPIPF1W6RFMZ6YVKZGPHH33LY4TDKMMQHGGG6XTIRE1MN55LAGLO4UL4X4DDBJO7D4ZKQZYFO73JDHZIUI0SI5J7B5NMG4J84EHK9J4SCYQLRYJMS0KV5AJ9E4BF5VH11KZE' where id=14; -update noar ti set v2='8YFKAMF2GMDUTSJVHV96FLY3H175FH18XC854DX64XPJQ91WJ1OVP5D4UKIM4924J3KTRUW4BP5HI5N9PFZ7GKBYMGJLBO47ZTX0UR6J6THBB0QQNMDDUXTTMJ9V9KPIPF1W6RFMZ6YVKZGPHH33LY4TDKMMQHGGG6XTIRE1MN55LAGLO4UL4X4DDBJO7D4ZKQZYFO73JDHZIUI0SI5J7B5NMG4J84EHK9J4SCYQLRYJMS0KV5AJ9E4BF5VH11KZE' where id=14; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='BWL7S5A8NUCR0ON6T559WQF9WN3ZB726H7583ETHGB6C0G3262K4IZU89HVEK1Y6SDIEPV1X5MPXUP5022VZZLTC2XULSS3258EW1KABNPHUGYIICT20OIPX2VKACTXFP5IVFP35U2JNUN3XQGHYOLLNGHED1KHJINJ0DGP6Q2BBUJ1ILBJTM2VB3VP22H9LJ8BBW6YHKNFRSFV6ST9ZVIMS8H5IHFV2V6YGQVYEHL08FW1EXTNJ14BOJRI2QFESI' where id=14; -update noar ti set v3='BWL7S5A8NUCR0ON6T559WQF9WN3ZB726H7583ETHGB6C0G3262K4IZU89HVEK1Y6SDIEPV1X5MPXUP5022VZZLTC2XULSS3258EW1KABNPHUGYIICT20OIPX2VKACTXFP5IVFP35U2JNUN3XQGHYOLLNGHED1KHJINJ0DGP6Q2BBUJ1ILBJTM2VB3VP22H9LJ8BBW6YHKNFRSFV6ST9ZVIMS8H5IHFV2V6YGQVYEHL08FW1EXTNJ14BOJRI2QFESI' where id=14; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='NIPNXTQ3XUDFIJL0BLCV2HN2L73P7VN4FU97OYLNYXSMOLO1FY70O4XSEQYHQSSF80PE42N7G3X9WV1CNP5QY0V3F2ERA2FFN3EQ4WZTHIBYBAHTX5TG9TSV000AN6LMTKDKLAN87NCLHOVLFQEJKYF4UXPAQIO7Y1TOLI43SBA6Y6KM8HFDGQKWO79FUAG9VL58PUDM0VGK2AY2T6L49ROU3PKJAE1T497O72CX2DVR3LPG247LCDKLAT5WQVBQH' where id=15; -update noar ti set v0='NIPNXTQ3XUDFIJL0BLCV2HN2L73P7VN4FU97OYLNYXSMOLO1FY70O4XSEQYHQSSF80PE42N7G3X9WV1CNP5QY0V3F2ERA2FFN3EQ4WZTHIBYBAHTX5TG9TSV000AN6LMTKDKLAN87NCLHOVLFQEJKYF4UXPAQIO7Y1TOLI43SBA6Y6KM8HFDGQKWO79FUAG9VL58PUDM0VGK2AY2T6L49ROU3PKJAE1T497O72CX2DVR3LPG247LCDKLAT5WQVBQH' where id=15; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='76BG85Z4HU5UG4K7LZTWWSGATWCKBZYC1N7O9F5KSDCV22Y72GI9PPFMH1UD99SADG003CCVBN3WLR0KB8FW0X9TV73IHSNOUT33D6J269EGZCQVIIO9I4AW3O1ULOZRTFB687M2GTEGAJG7OMAKL526W4Y5F93QKCKBWA3EOHKPO9JBABZHFG3P7WGYC712OXJBCSYXSMQR112OWHY4VNXN581FHSNP9G3QKXL27Q4V8GL2GXO8WVZB0XI5JENE6' where id=15; -update noar ti set v1='76BG85Z4HU5UG4K7LZTWWSGATWCKBZYC1N7O9F5KSDCV22Y72GI9PPFMH1UD99SADG003CCVBN3WLR0KB8FW0X9TV73IHSNOUT33D6J269EGZCQVIIO9I4AW3O1ULOZRTFB687M2GTEGAJG7OMAKL526W4Y5F93QKCKBWA3EOHKPO9JBABZHFG3P7WGYC712OXJBCSYXSMQR112OWHY4VNXN581FHSNP9G3QKXL27Q4V8GL2GXO8WVZB0XI5JENE6' where id=15; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='ZSLQN4KDSAOJ5ZHX3C46SNFQQY1CDQ02B32NIGSA7WEE9BVHL8CLWTN5HOQO6BMNETRRQMKURCRYT8CSC7E57OL0MAKU8AUKLLRNPYHHSF4RD1VUSJL6WJ8ZM3K2DVUBZDS0FERUXDJDWK340QHX24PWHHN3K7P0YOGFMEH99ZU9N7ESCUT82QUICZQWXZTOCM3Z9LTUL4P2FZFAD5K0X13Q4LWQ66TW7FMBT0FEOF73T1T84LUM1JDZ062T017KJ' where id=15; -update noar ti set v2='ZSLQN4KDSAOJ5ZHX3C46SNFQQY1CDQ02B32NIGSA7WEE9BVHL8CLWTN5HOQO6BMNETRRQMKURCRYT8CSC7E57OL0MAKU8AUKLLRNPYHHSF4RD1VUSJL6WJ8ZM3K2DVUBZDS0FERUXDJDWK340QHX24PWHHN3K7P0YOGFMEH99ZU9N7ESCUT82QUICZQWXZTOCM3Z9LTUL4P2FZFAD5K0X13Q4LWQ66TW7FMBT0FEOF73T1T84LUM1JDZ062T017KJ' where id=15; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='9ZQF665VYVHA7BI6PSJAVBQIKURT04GKN9VYB29189TCLHPSVVIKCL4MPPDZCZQAR5GAQD0MSQSJT21G27BL4YZA68P7SXEX4VTJF3VNRTXMJ7H0N40NNLL0N569X3KRH2C1X5CGMCA765DR4JJCVZ7M5F47UYPTHUBC5LP8DUCG52WEI51JX03L8X5Z0YTOFQNRVZ5FZGO5WE05P8WEYW8BJSK5XBN287BLRYPGRS10DGTCXWAQUIA1H6V5I4HU9' where id=15; -update noar ti set v3='9ZQF665VYVHA7BI6PSJAVBQIKURT04GKN9VYB29189TCLHPSVVIKCL4MPPDZCZQAR5GAQD0MSQSJT21G27BL4YZA68P7SXEX4VTJF3VNRTXMJ7H0N40NNLL0N569X3KRH2C1X5CGMCA765DR4JJCVZ7M5F47UYPTHUBC5LP8DUCG52WEI51JX03L8X5Z0YTOFQNRVZ5FZGO5WE05P8WEYW8BJSK5XBN287BLRYPGRS10DGTCXWAQUIA1H6V5I4HU9' where id=15; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='Y3QO4M5KHDN1SV95J8DA6THASVE799AGXWIFFTBYDY8N7WQL15KRNQX9E1P9MU7GYMB2CTNQE6WJG0TEU3Y7F28JLMU713WMVUCGGTPAHT7DK7S1G4A4A7KW7QXHC7JJ4R3WVZIKWLCXY0TC2EKULSR4DVOTFLW24QNKBY111298J27EXFU2Z6P40M0OTZO5X3BSVQJDOA23XYU8N6QC20RIY6N6M4VSJN3H4NR355LZEXOT7K64BFI6PX0G0V8G5' where id=16; -update noar ti set v0='Y3QO4M5KHDN1SV95J8DA6THASVE799AGXWIFFTBYDY8N7WQL15KRNQX9E1P9MU7GYMB2CTNQE6WJG0TEU3Y7F28JLMU713WMVUCGGTPAHT7DK7S1G4A4A7KW7QXHC7JJ4R3WVZIKWLCXY0TC2EKULSR4DVOTFLW24QNKBY111298J27EXFU2Z6P40M0OTZO5X3BSVQJDOA23XYU8N6QC20RIY6N6M4VSJN3H4NR355LZEXOT7K64BFI6PX0G0V8G5' where id=16; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='BUOKN95C2YZKYIR5NHASDKBN4NACXND9CLBIHGCUB040Z7Y1USZ7ZHW82DU3J4HO921LLXINRF3ZHL3CKBPLX34TIKW6CZKS6IW3VOGBHLMKQ0D1ABF2MPIQ8CQY7X4K74BGJG7MOGXZ5RKJ03ZKPM9AYUECGJQ6H7AJNX2VAPKIFF3UCA20LPEY1D9HFLX0XDBIPKFMC1XWJGGPF0LFHBLIPNMQV90ROSWX7IVFRI6L0X6ZV922WFNGMEM0P7PZT' where id=16; -update noar ti set v1='BUOKN95C2YZKYIR5NHASDKBN4NACXND9CLBIHGCUB040Z7Y1USZ7ZHW82DU3J4HO921LLXINRF3ZHL3CKBPLX34TIKW6CZKS6IW3VOGBHLMKQ0D1ABF2MPIQ8CQY7X4K74BGJG7MOGXZ5RKJ03ZKPM9AYUECGJQ6H7AJNX2VAPKIFF3UCA20LPEY1D9HFLX0XDBIPKFMC1XWJGGPF0LFHBLIPNMQV90ROSWX7IVFRI6L0X6ZV922WFNGMEM0P7PZT' where id=16; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='A4GWW90Z56JY82G9YDXZ3QA31DDD06E0BKSADEOFWLW554Z20JSITTW0TAMMTM68ZO7H74DY6K1NMD2KRAIMA585YQBB3R6D3XFWXGR9436W5HZC5CHSWNZ370YZG7UIQIKPQRO5EXGUXTNR8HQSZNSRPS9OKSZIV5OM2M6W4CRYZCSYZRFW78L5AX4SKV0W3TE27OG1ORY7RMW1P582QPDUPYOHGE2TJOOC6A5QHIK8O9N0QLB8YG3U39QF4Q7Z8' where id=16; -update noar ti set v2='A4GWW90Z56JY82G9YDXZ3QA31DDD06E0BKSADEOFWLW554Z20JSITTW0TAMMTM68ZO7H74DY6K1NMD2KRAIMA585YQBB3R6D3XFWXGR9436W5HZC5CHSWNZ370YZG7UIQIKPQRO5EXGUXTNR8HQSZNSRPS9OKSZIV5OM2M6W4CRYZCSYZRFW78L5AX4SKV0W3TE27OG1ORY7RMW1P582QPDUPYOHGE2TJOOC6A5QHIK8O9N0QLB8YG3U39QF4Q7Z8' where id=16; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='BG9HW8OWS91PFB05GXEG0LWJ94M35PKRMO5ZLMKY9Q2BTUBKDFU7W6V1DK0J9XSII1A75Q4XBRXR5K7IBH7EEJ39JZ0SUUI91P9OUKQFNOGYUGXVZI7NDBDOW42XOFYZJ76E9M3SF2ORBA6KKVHT9B4KR580DTKH9DD2AVDXZAFQVF16CFH0MW8FPY26JBVFSEMI5WIX902EEEJY2XPFC5C9S44OT04HPXX9WWBFEJM2712WZWYFFFVJPLKS5MD3B' where id=16; -update noar ti set v3='BG9HW8OWS91PFB05GXEG0LWJ94M35PKRMO5ZLMKY9Q2BTUBKDFU7W6V1DK0J9XSII1A75Q4XBRXR5K7IBH7EEJ39JZ0SUUI91P9OUKQFNOGYUGXVZI7NDBDOW42XOFYZJ76E9M3SF2ORBA6KKVHT9B4KR580DTKH9DD2AVDXZAFQVF16CFH0MW8FPY26JBVFSEMI5WIX902EEEJY2XPFC5C9S44OT04HPXX9WWBFEJM2712WZWYFFFVJPLKS5MD3B' where id=16; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='VFQA6QPOFSNDFRN56LI3PTXZRP0CGVA1OSQWW2RJR8F3868FWND46KU8FVX5MU6UC4IEF4A8BVFCML4HNXYTXZJ2KNGZLNXFHPU6RPMKOAGMD47H8FQQLEWZMQNPPRAVMNDAMCVMFVGWB0XRJGTMCB3MKY00NPV3KQF5WFJ984LNF96I7LS3ON6O4ES9JDVZ3ZPGD7Z8HUX221Y2EEYDHXJUNT1YL6HKFR0ONSGG0ZTQ5KQ2IMW8OOTOBOC7ZZSR3' where id=17; -update noar ti set v0='VFQA6QPOFSNDFRN56LI3PTXZRP0CGVA1OSQWW2RJR8F3868FWND46KU8FVX5MU6UC4IEF4A8BVFCML4HNXYTXZJ2KNGZLNXFHPU6RPMKOAGMD47H8FQQLEWZMQNPPRAVMNDAMCVMFVGWB0XRJGTMCB3MKY00NPV3KQF5WFJ984LNF96I7LS3ON6O4ES9JDVZ3ZPGD7Z8HUX221Y2EEYDHXJUNT1YL6HKFR0ONSGG0ZTQ5KQ2IMW8OOTOBOC7ZZSR3' where id=17; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='0KSFJCJ74RB0HDOS6RC38GZ7QMQMB6U86X2H24Y6UYBKJQKJ6ZXME4IJCDJYLKQYHOMLV3N2RR7AHOEHIKXUW7SSWDF2EUD5MG8B9PCRFM5ECP0CUD71T6M18CJ1IIDAAJHAZTTH3MDDBYGSE1QXOPBBA51IYAKKWKGBSO7ZP2FHIEXZVCSK9IDC1W54UARPQISV35MHFG9WD3OMGFALDO97OXKPRP3ZXS2R1TFQ6INRHRFHP1TUFAFZT27QPZ2EE' where id=17; -update noar ti set v1='0KSFJCJ74RB0HDOS6RC38GZ7QMQMB6U86X2H24Y6UYBKJQKJ6ZXME4IJCDJYLKQYHOMLV3N2RR7AHOEHIKXUW7SSWDF2EUD5MG8B9PCRFM5ECP0CUD71T6M18CJ1IIDAAJHAZTTH3MDDBYGSE1QXOPBBA51IYAKKWKGBSO7ZP2FHIEXZVCSK9IDC1W54UARPQISV35MHFG9WD3OMGFALDO97OXKPRP3ZXS2R1TFQ6INRHRFHP1TUFAFZT27QPZ2EE' where id=17; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='UDT60KSPD9246V4VB66HWC7SODE7UKZFS4VLE775641EQ0HBNEKMWMMVU0H7NGS65RIETAR9T5TIWODQKJATR8G0G7KNYD7Y0KWEKTV9J5S7C6JHXHXI8I8IZ4Q14Z4580GEP1J7PWI8HQ34V1131HOTW5CEHDEVDXKMAYNO2HKT8P3B5RGM5P05UQQ5QQJ868THVSDCVLFKC9MMAYD8SBIYX1FLE9LFE9FKVSCAH8L29CF6BMN5IQOSJ64RMTAN2' where id=17; -update noar ti set v2='UDT60KSPD9246V4VB66HWC7SODE7UKZFS4VLE775641EQ0HBNEKMWMMVU0H7NGS65RIETAR9T5TIWODQKJATR8G0G7KNYD7Y0KWEKTV9J5S7C6JHXHXI8I8IZ4Q14Z4580GEP1J7PWI8HQ34V1131HOTW5CEHDEVDXKMAYNO2HKT8P3B5RGM5P05UQQ5QQJ868THVSDCVLFKC9MMAYD8SBIYX1FLE9LFE9FKVSCAH8L29CF6BMN5IQOSJ64RMTAN2' where id=17; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='W9P796ZQ6AZYXDJDMKFI4PO42JA995NAKF3NQZXT481A81R209I0XORUSBY2CS8E6SOKDAUAEXI4HFZX8F3J6CRF0B42BC0T4VEVXBODUIAIJD9AAHIFVK9O5OMHHUXI8F3EXX76ZF6ADK3MJY541V7PWJ03Q3JQWH15OVPGTQFRCPF887XSFE0XXW8HWIS6KFLPB3L0PEJYTGQ9OP71TGVGS8OY4DXX1M8Q56DK4NIMFQ46YAD3WLW6DACMGGNCZ' where id=17; -update noar ti set v3='W9P796ZQ6AZYXDJDMKFI4PO42JA995NAKF3NQZXT481A81R209I0XORUSBY2CS8E6SOKDAUAEXI4HFZX8F3J6CRF0B42BC0T4VEVXBODUIAIJD9AAHIFVK9O5OMHHUXI8F3EXX76ZF6ADK3MJY541V7PWJ03Q3JQWH15OVPGTQFRCPF887XSFE0XXW8HWIS6KFLPB3L0PEJYTGQ9OP71TGVGS8OY4DXX1M8Q56DK4NIMFQ46YAD3WLW6DACMGGNCZ' where id=17; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='J7NA8DDFOMJ87RW8GVVQ35RDBYYY9VT4PV3XELFE9T54QQFYL6JQ3SA4G3MH2S8F1EVX8JB3BS7BPCT3GAB24ZJ5JKSMVMVZ3OCP0KDBV1C6AQYES3JGKPOOQ5TQIIXYRY212G0L2QZL1PJQ4UTVYN6M6UNOUFIRY415ENKN7841SZBM2DWSUUU2N4LHAS3Q6FUOV1TO93U0P6N0P9X4PM1JWGX23BHKRO8DE6DF48I73F2JW9IMR05HOQCC27X3J' where id=18; -update noar ti set v0='J7NA8DDFOMJ87RW8GVVQ35RDBYYY9VT4PV3XELFE9T54QQFYL6JQ3SA4G3MH2S8F1EVX8JB3BS7BPCT3GAB24ZJ5JKSMVMVZ3OCP0KDBV1C6AQYES3JGKPOOQ5TQIIXYRY212G0L2QZL1PJQ4UTVYN6M6UNOUFIRY415ENKN7841SZBM2DWSUUU2N4LHAS3Q6FUOV1TO93U0P6N0P9X4PM1JWGX23BHKRO8DE6DF48I73F2JW9IMR05HOQCC27X3J' where id=18; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='MO3OA8KS7ED5CA3JOSSF68991H67ERM2W0GVLSRTX30ANIGYCZCRKV2HF8WNLJQ9T7JGL3NFP22LUVY0PKBKNSZM0R223E0QCREU2AS51EU5K9RB3QXY8AFQVDUJNFDNX3KKFK0HDWQC90I7M9NV41RKO9VIJ2XVYDLC9CIT5N63Y6D5JZ38VA4ADXZR4OA7LNI7O7HZ3CF4C0MQ3OTQTJIRNUWNXLQJOZ89S8JTC3O6WINFJXU41MVW0NKLF7S7L' where id=18; -update noar ti set v1='MO3OA8KS7ED5CA3JOSSF68991H67ERM2W0GVLSRTX30ANIGYCZCRKV2HF8WNLJQ9T7JGL3NFP22LUVY0PKBKNSZM0R223E0QCREU2AS51EU5K9RB3QXY8AFQVDUJNFDNX3KKFK0HDWQC90I7M9NV41RKO9VIJ2XVYDLC9CIT5N63Y6D5JZ38VA4ADXZR4OA7LNI7O7HZ3CF4C0MQ3OTQTJIRNUWNXLQJOZ89S8JTC3O6WINFJXU41MVW0NKLF7S7L' where id=18; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='KC7OAY1ZX24X7I78TFM797E9P0NGC4VUCDCRWG5ZU9DD6E0O901FB8EH2GRMUO15EZLFMDQPX6T43ODLSVNWE95TN4V5Q0DYAIRMZEUJK515F5NKAPN9WJB34BWKGUQ4QRX0U6EQMXTVK5DGFL0YGDT2JO1WIEIJZBBZQKRUBF8K1HPI2ODGQ95CLB4DNF4BLYLIBXUE9UWD6F0CDLLQ3U8CLKWO5IQPE9XBGU853LOUXPNLE57F0G84QIHGIA7RO' where id=18; -update noar ti set v2='KC7OAY1ZX24X7I78TFM797E9P0NGC4VUCDCRWG5ZU9DD6E0O901FB8EH2GRMUO15EZLFMDQPX6T43ODLSVNWE95TN4V5Q0DYAIRMZEUJK515F5NKAPN9WJB34BWKGUQ4QRX0U6EQMXTVK5DGFL0YGDT2JO1WIEIJZBBZQKRUBF8K1HPI2ODGQ95CLB4DNF4BLYLIBXUE9UWD6F0CDLLQ3U8CLKWO5IQPE9XBGU853LOUXPNLE57F0G84QIHGIA7RO' where id=18; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='EUJNGCYJ6PVHSKBAF8F990V4LS87E0USG55RIS0T3HXHAU5JVEJQ0HQ8BGJT1CT2MNW2WL96K8K26KOHOMCHAP8T9NH4MZXSHWW8ZMA7VNAJ46ZTFZ5PHUGZX1T4B7RAM66HSCHNQ1631RP2SDQC3WN72LDQYW9O7TJ4UJXDWWGEPX5XPQ5KQZP6KH7FIAL2C4WIGG16F4TND40PFX6TFK0JXPBNBQ6YY69C4PAXYMIPBZV3S7D7KYBC0047BDS4U' where id=18; -update noar ti set v3='EUJNGCYJ6PVHSKBAF8F990V4LS87E0USG55RIS0T3HXHAU5JVEJQ0HQ8BGJT1CT2MNW2WL96K8K26KOHOMCHAP8T9NH4MZXSHWW8ZMA7VNAJ46ZTFZ5PHUGZX1T4B7RAM66HSCHNQ1631RP2SDQC3WN72LDQYW9O7TJ4UJXDWWGEPX5XPQ5KQZP6KH7FIAL2C4WIGG16F4TND40PFX6TFK0JXPBNBQ6YY69C4PAXYMIPBZV3S7D7KYBC0047BDS4U' where id=18; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='P05IYRHSPYQZRFCOM1WVHVDCWFYHVN0DVJBLZ6JD3MEBA7416LIQX91OVGEG4BZK9DNE0EM3FEPQ7O3BDULAH86E2CYYAPKNP4CMZ24H0VV6QJQVHM2ED7W0CGWUCXH1R1UFN3ZZ9TAH9K5YLMNPVCU8IUPZ3E5GUWVH1XP5AFA00O4R0IW0W23AYAHTOQBLG96VGI815JWXKSICM6VYOVJZZC3HTCN5RG0XMX1YRQJR8EWIOEDK2N4W3J4G9PMJ3' where id=19; -update noar ti set v0='P05IYRHSPYQZRFCOM1WVHVDCWFYHVN0DVJBLZ6JD3MEBA7416LIQX91OVGEG4BZK9DNE0EM3FEPQ7O3BDULAH86E2CYYAPKNP4CMZ24H0VV6QJQVHM2ED7W0CGWUCXH1R1UFN3ZZ9TAH9K5YLMNPVCU8IUPZ3E5GUWVH1XP5AFA00O4R0IW0W23AYAHTOQBLG96VGI815JWXKSICM6VYOVJZZC3HTCN5RG0XMX1YRQJR8EWIOEDK2N4W3J4G9PMJ3' where id=19; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='05F4SCFZ9ROHGZRW53MRW2VH23UNYZXB4UO4O45OK9LVPWNWNFSUC9Q0L8Y7NAUJA8XN2WK5JL6DWSHP9563QB911OO190DHVGWWGI3DQZCP0E2Z1SHIE4YVYQG66D1GA74UQ579E9O3O64I6BC8G6DSNAMGBDZF0X5KS6XEK3V6M2XE3HL3D5PG9N1PRDFNKWDG7YG6EH9XEIW6OLGR6XFDDDPWFQ40Y04XQZ94P5VVECWZW99UYXM8O9C1G1WRD' where id=19; -update noar ti set v1='05F4SCFZ9ROHGZRW53MRW2VH23UNYZXB4UO4O45OK9LVPWNWNFSUC9Q0L8Y7NAUJA8XN2WK5JL6DWSHP9563QB911OO190DHVGWWGI3DQZCP0E2Z1SHIE4YVYQG66D1GA74UQ579E9O3O64I6BC8G6DSNAMGBDZF0X5KS6XEK3V6M2XE3HL3D5PG9N1PRDFNKWDG7YG6EH9XEIW6OLGR6XFDDDPWFQ40Y04XQZ94P5VVECWZW99UYXM8O9C1G1WRD' where id=19; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='6OIMVHGV4MQI6G7BFJS0WK553G7N1TU176FN6ERI6CEPNM59QAFE4XEODP1N0SS5CSQ71C97ACW3DJ0QJ9BBPETGS6K97IC0ZGQHB7G8O3EEW49NZLOB2KDYC8MU8ALC7W0E7H1WVLZDTK5M1TBFVEBRRV793921INLUP40D3GY70TFJ2FAT8NNRQZGEDJO1JE62JCBPO29P3S50SS4FHLNQMOBTF0QTTLY8D2FM2JL2AQYZSZM9UK9C8XWJLWYPL' where id=19; -update noar ti set v2='6OIMVHGV4MQI6G7BFJS0WK553G7N1TU176FN6ERI6CEPNM59QAFE4XEODP1N0SS5CSQ71C97ACW3DJ0QJ9BBPETGS6K97IC0ZGQHB7G8O3EEW49NZLOB2KDYC8MU8ALC7W0E7H1WVLZDTK5M1TBFVEBRRV793921INLUP40D3GY70TFJ2FAT8NNRQZGEDJO1JE62JCBPO29P3S50SS4FHLNQMOBTF0QTTLY8D2FM2JL2AQYZSZM9UK9C8XWJLWYPL' where id=19; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='34RDPZPFXV6K7SR2X6CIUMEJY8ZKI5RJ6AAF11FPO9KKDO2RRJGQN8SRUHA47WOS1CMP065FPKFB5A8O4N9ISAXWCZ9I2TMC641XP10SJYHMYTNMDSOUXKJOYJHHW3BR86TQ9A5BMD9ADK03EHMAXDU5FMK2XA8P5HGX7FYXMVL7NY3YDMA26HHQYHQLDH15AJHZWHNHT10Y83E763DOEVF8CVWPPTE9G9S9LZJCGU3T55M7MKI1PNULMTE1LZUSC' where id=19; -update noar ti set v3='34RDPZPFXV6K7SR2X6CIUMEJY8ZKI5RJ6AAF11FPO9KKDO2RRJGQN8SRUHA47WOS1CMP065FPKFB5A8O4N9ISAXWCZ9I2TMC641XP10SJYHMYTNMDSOUXKJOYJHHW3BR86TQ9A5BMD9ADK03EHMAXDU5FMK2XA8P5HGX7FYXMVL7NY3YDMA26HHQYHQLDH15AJHZWHNHT10Y83E763DOEVF8CVWPPTE9G9S9LZJCGU3T55M7MKI1PNULMTE1LZUSC' where id=19; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='R0JF5O8W9C6EFOULZRNJ66WBXRN7FPIS5JMPYK44SMTCOEDN18P2MNBEUSMIFOMDUR48RB5DUSODRO5U2JSWK16N8EEC96B8XGGI4I6KEAM3EQX6320BHVSQMN5EDUR1IVKEYV9Z8717H7X0HU6PE7VJ6WTK8S61VS84ZKJJVVIY2107SV84Y9KK64AVVQ0G56QZ5DEVLCBLQQCWIZD9Z59G6PH33285XCP9DLDNA5N7DR8CMQVEL7B9C8L3MFB0L' where id=20; -update noar ti set v0='R0JF5O8W9C6EFOULZRNJ66WBXRN7FPIS5JMPYK44SMTCOEDN18P2MNBEUSMIFOMDUR48RB5DUSODRO5U2JSWK16N8EEC96B8XGGI4I6KEAM3EQX6320BHVSQMN5EDUR1IVKEYV9Z8717H7X0HU6PE7VJ6WTK8S61VS84ZKJJVVIY2107SV84Y9KK64AVVQ0G56QZ5DEVLCBLQQCWIZD9Z59G6PH33285XCP9DLDNA5N7DR8CMQVEL7B9C8L3MFB0L' where id=20; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='VGMCHGSZZR6TX86S67VLOZAOANYQ6CBIISLDT2ZHYYQSHNCA14VET1TKCJC2AY71A6ZXQAM1B1Z269IWAORAOX0I0M3L9Q6RYK8M80UHY4SWQK11KBP63GIG3PP8OF9MCBQBZO6C32Z6LBTMLIIT0AUW8FTYWADEMEZDSIVTG3HWRR1X7HGYC3VVHGNKRH6YH9SJ9AZOSJB4LV59CMDN81T3R3770ONHRD5IZEY2A3PK04NJVSBMZI7NFN55C49ZJ' where id=20; -update noar ti set v1='VGMCHGSZZR6TX86S67VLOZAOANYQ6CBIISLDT2ZHYYQSHNCA14VET1TKCJC2AY71A6ZXQAM1B1Z269IWAORAOX0I0M3L9Q6RYK8M80UHY4SWQK11KBP63GIG3PP8OF9MCBQBZO6C32Z6LBTMLIIT0AUW8FTYWADEMEZDSIVTG3HWRR1X7HGYC3VVHGNKRH6YH9SJ9AZOSJB4LV59CMDN81T3R3770ONHRD5IZEY2A3PK04NJVSBMZI7NFN55C49ZJ' where id=20; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='84QXI3JETHU11TT5V9RYRZQQY74DOMWYF3HUY23HZZSHIS8AWTE82I53MR4E8K97HQXRAELLXOS2ODA1DDLP357IBFH01XX0SHZIYR6IOL2UUI39Z5FPOL8LBICXG9F8QXYLJY7QWB5YKK8PWQSNDG1ATEXYCKWP18J9R1I4CFE0R6US90USQUXI31O82SJYNAN809F8IQ6YREECUGPJG55SWVPKB4O9UW7RA2DYPJ73EKJG1D9Z7VL1ZCWN5GLYG' where id=20; -update noar ti set v2='84QXI3JETHU11TT5V9RYRZQQY74DOMWYF3HUY23HZZSHIS8AWTE82I53MR4E8K97HQXRAELLXOS2ODA1DDLP357IBFH01XX0SHZIYR6IOL2UUI39Z5FPOL8LBICXG9F8QXYLJY7QWB5YKK8PWQSNDG1ATEXYCKWP18J9R1I4CFE0R6US90USQUXI31O82SJYNAN809F8IQ6YREECUGPJG55SWVPKB4O9UW7RA2DYPJ73EKJG1D9Z7VL1ZCWN5GLYG' where id=20; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='CU9PRJ19A2XGY4PYIBILRCB8XY2WK7G5UEB2SBTS4AYUI33E6XGHSJ07HJMH77F1N30WQMXVPLV92BAWVJH12PMYXCOQCS44LBQ8EGVRO1NFRUNXILTCTEUU0WX0OMDK6LGYOASBU7OK9J99FVYFSPERHZDPB19V0NXWKZJ6XC6QBTAJP6XSXGAWJVNCGGQCL14XM4N5UICFCXITEL4GVJ8LVJ7Y9Y8ZZ4187Y3HNXGP81MAQZULP0LVKNOJR1JFF' where id=20; -update noar ti set v3='CU9PRJ19A2XGY4PYIBILRCB8XY2WK7G5UEB2SBTS4AYUI33E6XGHSJ07HJMH77F1N30WQMXVPLV92BAWVJH12PMYXCOQCS44LBQ8EGVRO1NFRUNXILTCTEUU0WX0OMDK6LGYOASBU7OK9J99FVYFSPERHZDPB19V0NXWKZJ6XC6QBTAJP6XSXGAWJVNCGGQCL14XM4N5UICFCXITEL4GVJ8LVJ7Y9Y8ZZ4187Y3HNXGP81MAQZULP0LVKNOJR1JFF' where id=20; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='8TRV4USLXJZ2Y042NRYC5M2IRQ5UUFC2YZFJBLPRDADRAFJSG0YQ1FD0ROSCMG4W79C3WUJC90MJGAI17PS6CWXO9Z433RGRYNKKH86VY47HLAWDIX8O6CNTDD4NSI8OKZJZZBNVREAR7JBNM9RP78AFKE88I2TFH7NROLSGLQA8Y0P2DH3NS1L8H4Q6FI8J8VMRGOJRUAC1ZA50CV11OZY7WFO34LN5AYTEMFOKXB2603P9KCXGMXOFU4ZBOHH83' where id=21; -update noar ti set v0='8TRV4USLXJZ2Y042NRYC5M2IRQ5UUFC2YZFJBLPRDADRAFJSG0YQ1FD0ROSCMG4W79C3WUJC90MJGAI17PS6CWXO9Z433RGRYNKKH86VY47HLAWDIX8O6CNTDD4NSI8OKZJZZBNVREAR7JBNM9RP78AFKE88I2TFH7NROLSGLQA8Y0P2DH3NS1L8H4Q6FI8J8VMRGOJRUAC1ZA50CV11OZY7WFO34LN5AYTEMFOKXB2603P9KCXGMXOFU4ZBOHH83' where id=21; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='RHGJ1VLS0T9N6BPSFGZXUQRM9RFGNFXTP8U3R3S7WCVTRWSB38MGUP09ZMNQGK8CQ2TUOM8L0ZMHB5IVRFWJZ1P7KC06LGGWUR4YE7HDUGNUNDZDG6ITPKBY171IJ0EP8AA68Y46AUOAM7CXCJA6QLJ8I7KLPCGT3QSCA2ORYPXTBHD4DJFR2AHE4DFUY6IOQE0BNR4KR6SL59CY0V64HERSJ0NFM80ZR4N1R9B6AP4XVHNMP02PQME78KP399ROC' where id=21; -update noar ti set v1='RHGJ1VLS0T9N6BPSFGZXUQRM9RFGNFXTP8U3R3S7WCVTRWSB38MGUP09ZMNQGK8CQ2TUOM8L0ZMHB5IVRFWJZ1P7KC06LGGWUR4YE7HDUGNUNDZDG6ITPKBY171IJ0EP8AA68Y46AUOAM7CXCJA6QLJ8I7KLPCGT3QSCA2ORYPXTBHD4DJFR2AHE4DFUY6IOQE0BNR4KR6SL59CY0V64HERSJ0NFM80ZR4N1R9B6AP4XVHNMP02PQME78KP399ROC' where id=21; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='BLGASJTXH1V5RT3L5OZXKPPHERZS0F36T88R8FSEUXVOMJY64LL2LWN10DBGW3C5PJ0C81EURUA3VSXLXN87PZXXC0LUME8AQUQ5E0G0T7U7LDO8X528607NSEXR85GWG32HFDB3M6UGPENTEIMNDR8TQGF9F9OKOVLLNZGCE8ITFFEYL5Q8SL74UM516P67424K4LQIL8NV9UE68DVA9WH8GBEODRN3NU9K367O6IS8EG6CE52G2J3AEID1WYK5Q' where id=21; -update noar ti set v2='BLGASJTXH1V5RT3L5OZXKPPHERZS0F36T88R8FSEUXVOMJY64LL2LWN10DBGW3C5PJ0C81EURUA3VSXLXN87PZXXC0LUME8AQUQ5E0G0T7U7LDO8X528607NSEXR85GWG32HFDB3M6UGPENTEIMNDR8TQGF9F9OKOVLLNZGCE8ITFFEYL5Q8SL74UM516P67424K4LQIL8NV9UE68DVA9WH8GBEODRN3NU9K367O6IS8EG6CE52G2J3AEID1WYK5Q' where id=21; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='LKMFI2U4UT5K195NK8VDDETYAXAAJPF2WRQTWAA4D5RSKKBW25UYC95ZDHZ5T34JHCDMS3P151G3S287F5XNL18ZH4WLZD4MCBRD2D0Q0V1M2ZYZHA7AX0PDGIS6DEO9QY7HF5UPAC3T7FULJY3YYWPMB7XUFWEU84K3599LEZKNC7USYYW5IMFJJLP39N24NQAA9ZEMTPFMYGKVU5HFM1VTMCIZ3ZOHUYVSKV1JY79DF8CDWS78NXY843NFEOJNM' where id=21; -update noar ti set v3='LKMFI2U4UT5K195NK8VDDETYAXAAJPF2WRQTWAA4D5RSKKBW25UYC95ZDHZ5T34JHCDMS3P151G3S287F5XNL18ZH4WLZD4MCBRD2D0Q0V1M2ZYZHA7AX0PDGIS6DEO9QY7HF5UPAC3T7FULJY3YYWPMB7XUFWEU84K3599LEZKNC7USYYW5IMFJJLP39N24NQAA9ZEMTPFMYGKVU5HFM1VTMCIZ3ZOHUYVSKV1JY79DF8CDWS78NXY843NFEOJNM' where id=21; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='49S6PQXZJXO1TSSOAXPB0W2Q33CXG4SC3U0F8DHD3SPOP06OKTMIAS9LM8LU8KZ69H47AAF9VHTM8G7YY1P2469WRFOXR0S56JM6W7QN41VQ5DFJDF3U3LAXIBPYG6QMO66WQ6KNS7HO9QX9QR9SMNLFP4KQHND021FT4A5DPW3EOZO8S9IPFLOP89WN0EOEFPFO9A3ZOYL4QZRUFUH5A6NUBF4KJZPE5FMGVX8WX1DREETUTZM6UEI8M0UY3BG8T' where id=22; -update noar ti set v0='49S6PQXZJXO1TSSOAXPB0W2Q33CXG4SC3U0F8DHD3SPOP06OKTMIAS9LM8LU8KZ69H47AAF9VHTM8G7YY1P2469WRFOXR0S56JM6W7QN41VQ5DFJDF3U3LAXIBPYG6QMO66WQ6KNS7HO9QX9QR9SMNLFP4KQHND021FT4A5DPW3EOZO8S9IPFLOP89WN0EOEFPFO9A3ZOYL4QZRUFUH5A6NUBF4KJZPE5FMGVX8WX1DREETUTZM6UEI8M0UY3BG8T' where id=22; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='VGGJ4R69QOCMZ2MVU1J5U19W0B4BF7KQYD3WY0GWWW1DXFB2B0NF4FOXQXPCU7G88XY8HP77X8WWINLH7TNWURMZ15YJI0KH2N47W6UYQPQX0A14NZQ2ROY44VGHQICCJ2VGVTE58UJPSMA4M3QJNH62MB02KC5C92Y3C1RQYAWQ3WSLMXB9SFU1MSX3RSDBA02ITJ86BWQZL6CB671QALA05PO7CIJFDOO1FEOSVSUW934XOT5TZYOCBK0WII9YT' where id=22; -update noar ti set v1='VGGJ4R69QOCMZ2MVU1J5U19W0B4BF7KQYD3WY0GWWW1DXFB2B0NF4FOXQXPCU7G88XY8HP77X8WWINLH7TNWURMZ15YJI0KH2N47W6UYQPQX0A14NZQ2ROY44VGHQICCJ2VGVTE58UJPSMA4M3QJNH62MB02KC5C92Y3C1RQYAWQ3WSLMXB9SFU1MSX3RSDBA02ITJ86BWQZL6CB671QALA05PO7CIJFDOO1FEOSVSUW934XOT5TZYOCBK0WII9YT' where id=22; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='AADJ962WUP6UOSLGT0E15CBFLGQSJGIYSE5OBENUKLH57P5P5VKV5KUYAHV6OH5QHDQFAP9VH47HFTH4QLBMG3D7GH550F0VQFOLDC61BS568152S1SIXZR8YFZNHROMQP76GODLNBDIS8PAW26HW0F1LVKW4T4IVG4P5N006LM8X15E02RX6KWDF3LCFTZLMTDD2V02QF44ZZ8G8EV2GDYMPYHPP56QB872RRRUQ2LHIKEBML5MTXJB070R8396Z' where id=22; -update noar ti set v2='AADJ962WUP6UOSLGT0E15CBFLGQSJGIYSE5OBENUKLH57P5P5VKV5KUYAHV6OH5QHDQFAP9VH47HFTH4QLBMG3D7GH550F0VQFOLDC61BS568152S1SIXZR8YFZNHROMQP76GODLNBDIS8PAW26HW0F1LVKW4T4IVG4P5N006LM8X15E02RX6KWDF3LCFTZLMTDD2V02QF44ZZ8G8EV2GDYMPYHPP56QB872RRRUQ2LHIKEBML5MTXJB070R8396Z' where id=22; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='17MVMQ8RCO0PFAYPKMXA1ZKCDLEW9HMR5TK0QGXCYW4C3I5U1HNUABCLUN0VSQ9FN7O5NRMEQAQW73FM46F9UO3QBX7IMWNQRWGWW5QEAB9AE07GIUE962FDO80TH571EZZBP7J81E5V8UNITPTRVFEMZRZT3G7M0918AW59N9HDQYANVI0TVX0G9YDDU4Q0FJYI3L2PXL9NJ84XH43L6NQY73WYLOXP9N0YC1Y9IVLPV9GWIR2MU0KKXDAIMEVQ5' where id=22; -update noar ti set v3='17MVMQ8RCO0PFAYPKMXA1ZKCDLEW9HMR5TK0QGXCYW4C3I5U1HNUABCLUN0VSQ9FN7O5NRMEQAQW73FM46F9UO3QBX7IMWNQRWGWW5QEAB9AE07GIUE962FDO80TH571EZZBP7J81E5V8UNITPTRVFEMZRZT3G7M0918AW59N9HDQYANVI0TVX0G9YDDU4Q0FJYI3L2PXL9NJ84XH43L6NQY73WYLOXP9N0YC1Y9IVLPV9GWIR2MU0KKXDAIMEVQ5' where id=22; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='6GYJ3TQ7GG360E76XG8CCE7M9UPY89FTLSWNJY8WDZOZ24IYJ2LUBT7BOW315Z04Y4XD04R0X5TLYWQZN246EUFXU44MVPHY3QLXFLMRCHLPUYOE3KQ3XO34X0YXP2Z2IPECO745VX710O72KES736RC8BQ91EWXEDV413H5C709WS068YEIWJTC6N15ZYLRVNJ4XB721ZBFS5AL985VYRQ6QYH0KKFIQTQQQXSH6YIWDYGIMZYMYMRWXAR5V9IZV' where id=23; -update noar ti set v0='6GYJ3TQ7GG360E76XG8CCE7M9UPY89FTLSWNJY8WDZOZ24IYJ2LUBT7BOW315Z04Y4XD04R0X5TLYWQZN246EUFXU44MVPHY3QLXFLMRCHLPUYOE3KQ3XO34X0YXP2Z2IPECO745VX710O72KES736RC8BQ91EWXEDV413H5C709WS068YEIWJTC6N15ZYLRVNJ4XB721ZBFS5AL985VYRQ6QYH0KKFIQTQQQXSH6YIWDYGIMZYMYMRWXAR5V9IZV' where id=23; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='CVJWYFWYSZL79KSZPCVR1JT9XO7WJ2HQ07Y4LMWO4UKY1IFDPY17O75AM7EZ0J2NDMU3RUY38I45EBLXCH5L7PKDJNASQC4DDVHN3RU1ZYHH7BMQAA2PH26X7EVS63K5BCQPR6JSR6MUYA2HDNNEU15FCQCE1JPHBW4596G06XRSKQR4AVANM0WYN15SYTXKNMHKO2ZSV78HBL2PYDI9GMNWZA19MNTXVX49HSA0AWXC7RL7R4GQS1V5B54255LK6' where id=23; -update noar ti set v1='CVJWYFWYSZL79KSZPCVR1JT9XO7WJ2HQ07Y4LMWO4UKY1IFDPY17O75AM7EZ0J2NDMU3RUY38I45EBLXCH5L7PKDJNASQC4DDVHN3RU1ZYHH7BMQAA2PH26X7EVS63K5BCQPR6JSR6MUYA2HDNNEU15FCQCE1JPHBW4596G06XRSKQR4AVANM0WYN15SYTXKNMHKO2ZSV78HBL2PYDI9GMNWZA19MNTXVX49HSA0AWXC7RL7R4GQS1V5B54255LK6' where id=23; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='6ZLJ1ORHQTCYPNWA5JJKNUUI1D2B1VSHAEBRA4B8ZBU4NRKJX24ZWECOHIOCIUOS9NCBQHT4BTSOEBDYSECXKLDR7THFZS35L1WQ7DQDDZZBIMB7PEZQQ27XXNDR0WYA3TT17KZV4IQ9JOIOVXHCYTQ2S6ZQ1GIWQ9JN5HQ8ULCTG9PZP490JAAVBVDSNKTDL4T1ROUSV4JIN90R1LW629Y73E60550M4P7ES2E8IU3ES058SGS34Z5AKG4MDUZ8O' where id=23; -update noar ti set v2='6ZLJ1ORHQTCYPNWA5JJKNUUI1D2B1VSHAEBRA4B8ZBU4NRKJX24ZWECOHIOCIUOS9NCBQHT4BTSOEBDYSECXKLDR7THFZS35L1WQ7DQDDZZBIMB7PEZQQ27XXNDR0WYA3TT17KZV4IQ9JOIOVXHCYTQ2S6ZQ1GIWQ9JN5HQ8ULCTG9PZP490JAAVBVDSNKTDL4T1ROUSV4JIN90R1LW629Y73E60550M4P7ES2E8IU3ES058SGS34Z5AKG4MDUZ8O' where id=23; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='POZ605KQ10GA7A7056U6F1UTKYGEEKS56VSLI9SVIAQW8AMGC7O0DNMUMTJDX3WE6B47I9EQB79XS5MGHXSZHMODMJG89XVVM210YK1WQMWNY1EYW95Z9LOV1Z1TPEF862IIYIB31KV5HF2A4BNOK02T4197ZL90DVB9XU8AYBHJCVOR7Y0HZOEZY0GUH5NSSJ7GG41PPW4M8ZMV0OKBPN51I2JBJWJK277IBCPLKVCJBN0CEHPZBQG06LOV831HJ' where id=23; -update noar ti set v3='POZ605KQ10GA7A7056U6F1UTKYGEEKS56VSLI9SVIAQW8AMGC7O0DNMUMTJDX3WE6B47I9EQB79XS5MGHXSZHMODMJG89XVVM210YK1WQMWNY1EYW95Z9LOV1Z1TPEF862IIYIB31KV5HF2A4BNOK02T4197ZL90DVB9XU8AYBHJCVOR7Y0HZOEZY0GUH5NSSJ7GG41PPW4M8ZMV0OKBPN51I2JBJWJK277IBCPLKVCJBN0CEHPZBQG06LOV831HJ' where id=23; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='3QUJA2NN8LQ8IUUQ6I94GGKVJC90EHLOFD6BADS49P1RBXIK1C4OEG86PVC82QNPIGM17GJD6TEMH57N5PMWIJTU1PZBE9PMESNRQMCG6K6TYJ0OPTQRP3Y6488GL168DMBII2FYURECXG5MQ2KM06D00JND1YMNFLG4I2QDHJKC8DFSS3WI3R01HXPK5ZA36V4T5CK3PBYPPKZPJBN8YFVQ2VWACYVKRTG1TZJV2J7006JL24LIBPEIDI0DDG3ZQ' where id=24; -update noar ti set v0='3QUJA2NN8LQ8IUUQ6I94GGKVJC90EHLOFD6BADS49P1RBXIK1C4OEG86PVC82QNPIGM17GJD6TEMH57N5PMWIJTU1PZBE9PMESNRQMCG6K6TYJ0OPTQRP3Y6488GL168DMBII2FYURECXG5MQ2KM06D00JND1YMNFLG4I2QDHJKC8DFSS3WI3R01HXPK5ZA36V4T5CK3PBYPPKZPJBN8YFVQ2VWACYVKRTG1TZJV2J7006JL24LIBPEIDI0DDG3ZQ' where id=24; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='MV6VYZX7XFAH09ONK2APDARSW4VU02XPQSZKOFK3SLQKLD7I6O32FTL8T2UC1AH059ZTDGY7SBCLMU4E88A25FH5I5UAEK62BDXLIDUW6SVFBI9RYTU330BT6YKJ4AZSKBE2AALD676ZANCQCD3628LXJUM9HDF96E9FC05WTYXGYPFTAMIJY9CZMSNPRIGI6Y1R8MTV0M6J9370U25YG3VF3LT27AVYEUPKBBCVUINFXTM9TL1YUO06KE0AG50U0' where id=24; -update noar ti set v1='MV6VYZX7XFAH09ONK2APDARSW4VU02XPQSZKOFK3SLQKLD7I6O32FTL8T2UC1AH059ZTDGY7SBCLMU4E88A25FH5I5UAEK62BDXLIDUW6SVFBI9RYTU330BT6YKJ4AZSKBE2AALD676ZANCQCD3628LXJUM9HDF96E9FC05WTYXGYPFTAMIJY9CZMSNPRIGI6Y1R8MTV0M6J9370U25YG3VF3LT27AVYEUPKBBCVUINFXTM9TL1YUO06KE0AG50U0' where id=24; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='QH1U8J2ANLNCTQYX7ZXTN2JZ2BM65HGXMXW1H5URGRSR1Y8V6ERUFKTG08HSM5GX8AW01BMJEPNO5GIJRXEGN2KY8PZVK4SF07VS0QOEA24W5RB9XUXUFBTHDGS21DU7WH70CKI8IG2MFR0VTXXVVVEX9GITV5D7U2Y99PF1ECE7RPKGFO0JMZFCTVEENFVG4UQEUYNE8BMVKPXP55U81KVGFQPN87LOJNZCA8KFWCEJ7LNP96UPE43NI3I6O5SM5' where id=24; -update noar ti set v2='QH1U8J2ANLNCTQYX7ZXTN2JZ2BM65HGXMXW1H5URGRSR1Y8V6ERUFKTG08HSM5GX8AW01BMJEPNO5GIJRXEGN2KY8PZVK4SF07VS0QOEA24W5RB9XUXUFBTHDGS21DU7WH70CKI8IG2MFR0VTXXVVVEX9GITV5D7U2Y99PF1ECE7RPKGFO0JMZFCTVEENFVG4UQEUYNE8BMVKPXP55U81KVGFQPN87LOJNZCA8KFWCEJ7LNP96UPE43NI3I6O5SM5' where id=24; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='ESWBWQFN08XQZPMYWEV4UFL0F3321YHBM3OOC1141L3RCP9O213EAY41PS2384FSLI7U0JKCJVNHXN1CCBHJXDDAACET0XILTGP2X4PF4WA5AK4P5XJH8HF74PP6N83WKCI67BO6Z08Q0VB2ZB0F3WYFJPCAMSTG9HDGYSSM0B42LDWQEY91ZMCREVLSLUKAB8PUHLCVNBN8YJFE8877XG8MNUXA7T193Q7OMYZD0OKMRT11SLTXKBRB8ML8B0Y8Z' where id=24; -update noar ti set v3='ESWBWQFN08XQZPMYWEV4UFL0F3321YHBM3OOC1141L3RCP9O213EAY41PS2384FSLI7U0JKCJVNHXN1CCBHJXDDAACET0XILTGP2X4PF4WA5AK4P5XJH8HF74PP6N83WKCI67BO6Z08Q0VB2ZB0F3WYFJPCAMSTG9HDGYSSM0B42LDWQEY91ZMCREVLSLUKAB8PUHLCVNBN8YJFE8877XG8MNUXA7T193Q7OMYZD0OKMRT11SLTXKBRB8ML8B0Y8Z' where id=24; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='81J30FMX1T09PIXYANJ2LXXOOXW8O9SP6ZZD9N18TAOMFTY0KLRVEDAHJQFKJGEMLQ1VF1UFBOKQW1PFIZ7D532UT9SQR0D8G125Z0YKVAMOBV679VPOCHA5D5MHXNZ1VKNH4Q2ERAVH4X13TVGBXAKZMU6GT50VYXBN6D649KBJ7MV11MOUWL7Y4H1N1M2KKVDQ0FFIXEWFEMSMNR0LGAVAYUSUAPRHA5VOMNX0I9JO3BT7ZTJFG0PH67S7P9QG5' where id=25; -update noar ti set v0='81J30FMX1T09PIXYANJ2LXXOOXW8O9SP6ZZD9N18TAOMFTY0KLRVEDAHJQFKJGEMLQ1VF1UFBOKQW1PFIZ7D532UT9SQR0D8G125Z0YKVAMOBV679VPOCHA5D5MHXNZ1VKNH4Q2ERAVH4X13TVGBXAKZMU6GT50VYXBN6D649KBJ7MV11MOUWL7Y4H1N1M2KKVDQ0FFIXEWFEMSMNR0LGAVAYUSUAPRHA5VOMNX0I9JO3BT7ZTJFG0PH67S7P9QG5' where id=25; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='3GT2T6AUI87IJ6XYTOPKBK5X574LWH9MQP9M6Q6IQNS5AVBH3SKEKQMD1K0KQ2B8YFVY5OH7RMN2S7XAN3QAL9SFOTSGO7B6A4SSKCLPHP96MQEQX3NKM876AJ52BO3LSUVB5VWDJ3PPPNVHRE9N7FFOSWTDNTEZQQLKQ0MH74MQTB1TBT77LBM3MAF1CDH6UC16OX4A2F891R4KYJ9CG6VADM38XHY5TGSAYW3LDGFTD9REG2J2P612U169RCE2Y' where id=25; -update noar ti set v1='3GT2T6AUI87IJ6XYTOPKBK5X574LWH9MQP9M6Q6IQNS5AVBH3SKEKQMD1K0KQ2B8YFVY5OH7RMN2S7XAN3QAL9SFOTSGO7B6A4SSKCLPHP96MQEQX3NKM876AJ52BO3LSUVB5VWDJ3PPPNVHRE9N7FFOSWTDNTEZQQLKQ0MH74MQTB1TBT77LBM3MAF1CDH6UC16OX4A2F891R4KYJ9CG6VADM38XHY5TGSAYW3LDGFTD9REG2J2P612U169RCE2Y' where id=25; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='XHJZRRUSIDVND93JGKWH3J1OS4F1N32WRKP74BTN9RZF2VWEAO2TBB4KNNE6AH3MHYMYFJO1E6Y3EUQBYL7BVYUWBQ0JZGNWMFVT4V3N1EQ8XPICM2970BMOAI0VDXODSAZOS4RLTPEEQ85GWYH7F9Y8DBOIYLPSVAMDW5QC22Q8U5TY91W2K3B8ITESTAGQ6INC6IPZ3PGYZH90LLM8RKU68EETU2Z3RFTA0YGSFFLZ8HQ5OTP5W4H2W9DTGEUN4' where id=25; -update noar ti set v2='XHJZRRUSIDVND93JGKWH3J1OS4F1N32WRKP74BTN9RZF2VWEAO2TBB4KNNE6AH3MHYMYFJO1E6Y3EUQBYL7BVYUWBQ0JZGNWMFVT4V3N1EQ8XPICM2970BMOAI0VDXODSAZOS4RLTPEEQ85GWYH7F9Y8DBOIYLPSVAMDW5QC22Q8U5TY91W2K3B8ITESTAGQ6INC6IPZ3PGYZH90LLM8RKU68EETU2Z3RFTA0YGSFFLZ8HQ5OTP5W4H2W9DTGEUN4' where id=25; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='0BBEXG0WRACW3QWPFZE5WBQE6YQZZRNKJVG8RIWSANUVX4I0ETMERYTF899OKN9CYKHTSBKPR9L6NGB57Z0VSSZGETFPULIT3C6BMZ045FYOI4TFTCF6WWSJ1LDZ2BAPR74SQSCC2PDM0ZXM4E8YVAV33H52L6ZD4JV0JY7SNAXVOC5R0BA4491SPA3H1AJREZV863VANHM2LYO0AW78SF0IG68SKW2NMFJAJXRS48PDORNSQ85N9TIAOS83NLSTQ' where id=25; -update noar ti set v3='0BBEXG0WRACW3QWPFZE5WBQE6YQZZRNKJVG8RIWSANUVX4I0ETMERYTF899OKN9CYKHTSBKPR9L6NGB57Z0VSSZGETFPULIT3C6BMZ045FYOI4TFTCF6WWSJ1LDZ2BAPR74SQSCC2PDM0ZXM4E8YVAV33H52L6ZD4JV0JY7SNAXVOC5R0BA4491SPA3H1AJREZV863VANHM2LYO0AW78SF0IG68SKW2NMFJAJXRS48PDORNSQ85N9TIAOS83NLSTQ' where id=25; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='AELV5TY2XKP26JTBTS5Z90TPMUT6233ONJXMFAPEDVEIF9RNC6TB9TRP0WLRUZJ0UZK9JU9EXML437K2WNF1P2EA8P4LD5VEG5TFF46RGTRPI5OI6V1POQF8UFEATKYL9W87IVH9YG1CCSWPG8JGIRBRQF0A04BG6RSCTNYDKRC4ZH5596V7EP8SKLC2F49JW04LVOS9J643EJ77X8NR8PWH3PMVGJ9D9JSSO5YIBFUY7C426CO0S12C04MS7LK96' where id=26; -update noar ti set v0='AELV5TY2XKP26JTBTS5Z90TPMUT6233ONJXMFAPEDVEIF9RNC6TB9TRP0WLRUZJ0UZK9JU9EXML437K2WNF1P2EA8P4LD5VEG5TFF46RGTRPI5OI6V1POQF8UFEATKYL9W87IVH9YG1CCSWPG8JGIRBRQF0A04BG6RSCTNYDKRC4ZH5596V7EP8SKLC2F49JW04LVOS9J643EJ77X8NR8PWH3PMVGJ9D9JSSO5YIBFUY7C426CO0S12C04MS7LK96' where id=26; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='52VDF6V2BHAIANC339MVMDK20XLMHFNTERDXCIZRTFGQS2TNL9F1F2MA7HN97RNKUH3EOAZ58ZUVCM1XW0TBBQO69ZEFM4T51RPYJ1F3S4QT1IZVWN4VPF0IHP7IBF0VSR6V11EBYZHDGRZQ589DJ4RMWQAO1A36PK4Q0A1W2MQ2RIAUP9H4J5T0TSPSQWTS8DOVV3EK920F8OOHUAPB9NOJVA0SF4JXJB8MX8605AAYB5E341041VMSZ9RC08YFN' where id=26; -update noar ti set v1='52VDF6V2BHAIANC339MVMDK20XLMHFNTERDXCIZRTFGQS2TNL9F1F2MA7HN97RNKUH3EOAZ58ZUVCM1XW0TBBQO69ZEFM4T51RPYJ1F3S4QT1IZVWN4VPF0IHP7IBF0VSR6V11EBYZHDGRZQ589DJ4RMWQAO1A36PK4Q0A1W2MQ2RIAUP9H4J5T0TSPSQWTS8DOVV3EK920F8OOHUAPB9NOJVA0SF4JXJB8MX8605AAYB5E341041VMSZ9RC08YFN' where id=26; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='JHKKDWD0I2ISHDQBJGISUS6ZYYVQF9HF0FWX24NSCU8E1K5VRH8WZRP5SY5XVCUZVXS9AUH8CWIIXVQ728T0W47HJ7KR3YVY69WSTHIHI9YML9NJZ88HB1J4ZE91CXNHEPMRMD9YYG69C1H6T87T3E8BCP13882XX8VEY2SSZR2C580VN4PL0F0DE726DALIC7I0G6N3520HMCSGMHUVJLAFNWQB5RP4NM593OD6GNM2C1PB1G6JMUBX3G87J19GS' where id=26; -update noar ti set v2='JHKKDWD0I2ISHDQBJGISUS6ZYYVQF9HF0FWX24NSCU8E1K5VRH8WZRP5SY5XVCUZVXS9AUH8CWIIXVQ728T0W47HJ7KR3YVY69WSTHIHI9YML9NJZ88HB1J4ZE91CXNHEPMRMD9YYG69C1H6T87T3E8BCP13882XX8VEY2SSZR2C580VN4PL0F0DE726DALIC7I0G6N3520HMCSGMHUVJLAFNWQB5RP4NM593OD6GNM2C1PB1G6JMUBX3G87J19GS' where id=26; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='R3R8U0P7ULLNNJRKJXZEB4QA5D5DGNCQSQ98JEY8PAZS15C2SPO7RWNXIPCWXG3OWFVAMJ8AXMX5HLH4DXX6M2884DSC99RCV501FC96VBYCA6JWNH9CMYQGNTI5GM3HNEU1OTT18SI03XOX6AELE98UKUFD8J0967FPN3NLIENEEKLQKH1KUXQOY20EZNXE8T2LPQ6XIYQPYRD6L29YDMRSLVWLB39WXLBT4ZV8G1IQQD4PAHYBZHIQH07C1XJ1Z' where id=26; -update noar ti set v3='R3R8U0P7ULLNNJRKJXZEB4QA5D5DGNCQSQ98JEY8PAZS15C2SPO7RWNXIPCWXG3OWFVAMJ8AXMX5HLH4DXX6M2884DSC99RCV501FC96VBYCA6JWNH9CMYQGNTI5GM3HNEU1OTT18SI03XOX6AELE98UKUFD8J0967FPN3NLIENEEKLQKH1KUXQOY20EZNXE8T2LPQ6XIYQPYRD6L29YDMRSLVWLB39WXLBT4ZV8G1IQQD4PAHYBZHIQH07C1XJ1Z' where id=26; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='14SQ6M9B8T18XUN95SQCSS0L8VTKEJD4EBEN4WXSQRMGIUHR0TTHQ9CB0DT5NVH2F1J2OJHL98DAL3UUCUSW80GYGEOB0JMO8F285KBSW4GTM6ZV45NAS4QXSQZFMGM44W964474CBUMYUXMZ4X2279XZ0VKUS6JQUHUDG2OWOLS4SE94W3ES4B180HRU7TG5FQEHEP7RYXGETB4LY37PEM7B4BPTQA9V8H1E4PPLYSROWVBTROMBFQWYKBL6LWU4' where id=27; -update noar ti set v0='14SQ6M9B8T18XUN95SQCSS0L8VTKEJD4EBEN4WXSQRMGIUHR0TTHQ9CB0DT5NVH2F1J2OJHL98DAL3UUCUSW80GYGEOB0JMO8F285KBSW4GTM6ZV45NAS4QXSQZFMGM44W964474CBUMYUXMZ4X2279XZ0VKUS6JQUHUDG2OWOLS4SE94W3ES4B180HRU7TG5FQEHEP7RYXGETB4LY37PEM7B4BPTQA9V8H1E4PPLYSROWVBTROMBFQWYKBL6LWU4' where id=27; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='LTIKKUJMOU0JBSS9UD2N9D9ZVPFQD7A4F970DAV5D6T0VODSM7KSC4NS1X0YGSC7C504M66U8K4LMI5DDMCEI13YKFF2D23CQ7HAB9SFOKX2AW365WD3OW6Y9C3N2SMXTXVCMZWONGWICWYZ3YCK53MT5WYXKIOJCQLM1OVMP9VFUM7BOUUMEV4XX00FZ5N9GKGYA0TDM9M11ELCP22NCS37JGPBPXBWCDBGJL6IWHO8OLOZZ0MKS57RGEZNHOSGH' where id=27; -update noar ti set v1='LTIKKUJMOU0JBSS9UD2N9D9ZVPFQD7A4F970DAV5D6T0VODSM7KSC4NS1X0YGSC7C504M66U8K4LMI5DDMCEI13YKFF2D23CQ7HAB9SFOKX2AW365WD3OW6Y9C3N2SMXTXVCMZWONGWICWYZ3YCK53MT5WYXKIOJCQLM1OVMP9VFUM7BOUUMEV4XX00FZ5N9GKGYA0TDM9M11ELCP22NCS37JGPBPXBWCDBGJL6IWHO8OLOZZ0MKS57RGEZNHOSGH' where id=27; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='TLTNGXA7OUAJ0SGKV9PH4XTC118MCP2KESLQX77H47ICR16D70O0O2PS2P5FUP0U8Q0MTU9NKZZ8WAJA1A1JURF3JDKJZ5GOCLAJTLJG1RHYOJ86II4NQKJCZYCWWSPOFR1NEMLHJE3D664AI6VUYQ1OVKZ2EJ3GCSEUC8DUZI5GXRJY3E3SH4278V4ME0M2R9PD6VT8J7V5R5VH003LE7H8L5WORVHSG1788B928PMOUZR6SY0UYG3S3ZVYMHG2N' where id=27; -update noar ti set v2='TLTNGXA7OUAJ0SGKV9PH4XTC118MCP2KESLQX77H47ICR16D70O0O2PS2P5FUP0U8Q0MTU9NKZZ8WAJA1A1JURF3JDKJZ5GOCLAJTLJG1RHYOJ86II4NQKJCZYCWWSPOFR1NEMLHJE3D664AI6VUYQ1OVKZ2EJ3GCSEUC8DUZI5GXRJY3E3SH4278V4ME0M2R9PD6VT8J7V5R5VH003LE7H8L5WORVHSG1788B928PMOUZR6SY0UYG3S3ZVYMHG2N' where id=27; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='QC1MK2XJPJ4H86T1OSJ9P8PEI41QXDOVW6F46W2V6QR5FMG500S4GM73J3TVOHSDCZHQ9DJLI975BX8YQAKLIQNKKSWWLXVWN54WLADWY7W7BYR2MUBGMFK3RZH68EANDBEYE7YFJ6VVUR7NBCNQNDGCGNR9MEU8467U9BRR2UAKQJK1TTVWHBDEMJSGWR7G5G2H87GWNKKZB51IFV9E5TN3QS96QY1QM0RQODGZHTEEL7SKE1APD510AUCQ85KCB' where id=27; -update noar ti set v3='QC1MK2XJPJ4H86T1OSJ9P8PEI41QXDOVW6F46W2V6QR5FMG500S4GM73J3TVOHSDCZHQ9DJLI975BX8YQAKLIQNKKSWWLXVWN54WLADWY7W7BYR2MUBGMFK3RZH68EANDBEYE7YFJ6VVUR7NBCNQNDGCGNR9MEU8467U9BRR2UAKQJK1TTVWHBDEMJSGWR7G5G2H87GWNKKZB51IFV9E5TN3QS96QY1QM0RQODGZHTEEL7SKE1APD510AUCQ85KCB' where id=27; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='BM9UY69WUYPP2FSIR7DAD8M18G0V1WCLXZQ9YF3Z4AT9G02AO4P5ZJU3LOIDZ2IJY9X6ZND8SIJK258GSTKUUCD0MP29BIR3ZH2Z15YHQDAP914MU0CHY96XM3QHA61C6AJEFJOS19BP57ZYIZZNGHZ6231N4Q30F9NZDRLWMQNNH2XQNX2EU4VMIJ70QPUB5322OMBYHYT8H11095IICUI6XD1D9GDAEZO2H15DCI8TXL7HVCITTDCTVU1UMENZX' where id=28; -update noar ti set v0='BM9UY69WUYPP2FSIR7DAD8M18G0V1WCLXZQ9YF3Z4AT9G02AO4P5ZJU3LOIDZ2IJY9X6ZND8SIJK258GSTKUUCD0MP29BIR3ZH2Z15YHQDAP914MU0CHY96XM3QHA61C6AJEFJOS19BP57ZYIZZNGHZ6231N4Q30F9NZDRLWMQNNH2XQNX2EU4VMIJ70QPUB5322OMBYHYT8H11095IICUI6XD1D9GDAEZO2H15DCI8TXL7HVCITTDCTVU1UMENZX' where id=28; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='5OKWR34LOOG9BEAJU34OQHKU0M3IDR1OUKRTJPFJHFUH5KFQZMO1SNEY2UTH8HYMYP8UCC6H9I41H267VA098KKFA24G1IFGW7QCFKL7O33L4H2FO7EXA4L9V3DU79FNMG5TZMQ19DYNBJNIZ1MEUZQG2DLITIMRFTG1PIQPOWXGRUMESUTEZRN7WTLYM7BTD8MEJ2DOJZKPAWL80GS0RPWY0CVRAQR7WLAB7D256N414WXF3RK7HT3PEBQGY3DB8' where id=28; -update noar ti set v1='5OKWR34LOOG9BEAJU34OQHKU0M3IDR1OUKRTJPFJHFUH5KFQZMO1SNEY2UTH8HYMYP8UCC6H9I41H267VA098KKFA24G1IFGW7QCFKL7O33L4H2FO7EXA4L9V3DU79FNMG5TZMQ19DYNBJNIZ1MEUZQG2DLITIMRFTG1PIQPOWXGRUMESUTEZRN7WTLYM7BTD8MEJ2DOJZKPAWL80GS0RPWY0CVRAQR7WLAB7D256N414WXF3RK7HT3PEBQGY3DB8' where id=28; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='YUN0QFB9UB4C76P409QXBBVIX77MYH425FL4S3VZNPRJREJZ8V9B3SKLAWONL84HZKF4T4S9SRJKMGYNPHHEJ27C5SXCDTJ2S23DRB7O0NNJUO5ZIRKTZZASME1KYCNGKUP4LNKKWZ2XWE3U990RCDJ91D61WCX5E9TAH6OGSMK9AYALFSE3BFSHY7LFHGYOUZQJFNNX3DGX8N7CXSLU3XC7RIZCTLVMQDDTJYJGF08RNASW1KQI1EBOENNRMPNBR' where id=28; -update noar ti set v2='YUN0QFB9UB4C76P409QXBBVIX77MYH425FL4S3VZNPRJREJZ8V9B3SKLAWONL84HZKF4T4S9SRJKMGYNPHHEJ27C5SXCDTJ2S23DRB7O0NNJUO5ZIRKTZZASME1KYCNGKUP4LNKKWZ2XWE3U990RCDJ91D61WCX5E9TAH6OGSMK9AYALFSE3BFSHY7LFHGYOUZQJFNNX3DGX8N7CXSLU3XC7RIZCTLVMQDDTJYJGF08RNASW1KQI1EBOENNRMPNBR' where id=28; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='FQGWZ0W7ZCBJO3PP2GAT5IU7TEDZ77EJVP0AAPNR3WYQNAQUCANIC4FO0ALR91KWYVQY9FFKPU4WVLRCFW6DAS4UUF49ESB3WLJ2OCFI36BMXDUPJJQ4P7XPLR6DUZ8KL95990QJHPXTQU19TYV7XAKR48GMD58995CP1G4PTNDUHSIJFG3EGO1EXC24BAYOMDYCNN9AMH7EXYTESS5DMTP3JHXMUEISK7VNDRBPKZYFN67WJ2KE3TDSKF6BA7BQU' where id=28; -update noar ti set v3='FQGWZ0W7ZCBJO3PP2GAT5IU7TEDZ77EJVP0AAPNR3WYQNAQUCANIC4FO0ALR91KWYVQY9FFKPU4WVLRCFW6DAS4UUF49ESB3WLJ2OCFI36BMXDUPJJQ4P7XPLR6DUZ8KL95990QJHPXTQU19TYV7XAKR48GMD58995CP1G4PTNDUHSIJFG3EGO1EXC24BAYOMDYCNN9AMH7EXYTESS5DMTP3JHXMUEISK7VNDRBPKZYFN67WJ2KE3TDSKF6BA7BQU' where id=28; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='PR12EJBD6QG7FV4GNQ69DLY5XJX8EP8RDOR2PU9KCOKD7KHC9ENURHO3D96GI799B5ISM093XN0ROHOAKHNDRN6CFEAYXBFP00RFYJTRT6CCT2A7D15HBKMTWLVK5WAXH3KMRN3IT6LTK0ZORN9X4B2MU2N5MAPZJL2WL7L5KAECFL8I2LHNH836P6TW119IDQINDC7W4S603TSNGNRER47ATJ5Z7REEQII7B4EWMB3KX2TQ0QY8QZV591DT447PH' where id=29; -update noar ti set v0='PR12EJBD6QG7FV4GNQ69DLY5XJX8EP8RDOR2PU9KCOKD7KHC9ENURHO3D96GI799B5ISM093XN0ROHOAKHNDRN6CFEAYXBFP00RFYJTRT6CCT2A7D15HBKMTWLVK5WAXH3KMRN3IT6LTK0ZORN9X4B2MU2N5MAPZJL2WL7L5KAECFL8I2LHNH836P6TW119IDQINDC7W4S603TSNGNRER47ATJ5Z7REEQII7B4EWMB3KX2TQ0QY8QZV591DT447PH' where id=29; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='E3Z9UQF3FBTD08OF9XZJT4U4JCY6G6U5BH9GHBXVMSZYQWBFJS20Y2VI18QTHQXQWKJN78QZ6ID6B21RO5A6EE9ZCIW3430TOHALN2MTGBJNNB6909R1UXM2CZ7VSN7P3WVSA2J78TILHTC8DFGSLJ7GNCX266C2VVDE7NSPSW335FXRO95J8P697GYK6976YKWBIEZYTH7WE8FOVCHNDDM8CN7IZ6TVTTA0B55V9B56KT3DH9FOHAYYPOZX99CCE' where id=29; -update noar ti set v1='E3Z9UQF3FBTD08OF9XZJT4U4JCY6G6U5BH9GHBXVMSZYQWBFJS20Y2VI18QTHQXQWKJN78QZ6ID6B21RO5A6EE9ZCIW3430TOHALN2MTGBJNNB6909R1UXM2CZ7VSN7P3WVSA2J78TILHTC8DFGSLJ7GNCX266C2VVDE7NSPSW335FXRO95J8P697GYK6976YKWBIEZYTH7WE8FOVCHNDDM8CN7IZ6TVTTA0B55V9B56KT3DH9FOHAYYPOZX99CCE' where id=29; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='E1IZ53SPMWVTHH356XGEFAOKNMJ6RNSLPJVEEF738LOQW3T2GJOREJPDFDM9WCZ5JM1ZD1VEU5MYDOCN09H5PXDAX140GL4C1CYM9WI51BP7PPXXTMBWSR2BWL3MKJ9GUMUEU44LECULA7AYBPOIO0F1GQQLS4CMKBXE6LI1EYRQ23357K1GV7DG2QR9UYJI44DSWDXHUS8322WO9R1OBBU4U3DF11GGGAFOE2YOLUC1SB7UZUAS8FLEXXY633DX6' where id=29; -update noar ti set v2='E1IZ53SPMWVTHH356XGEFAOKNMJ6RNSLPJVEEF738LOQW3T2GJOREJPDFDM9WCZ5JM1ZD1VEU5MYDOCN09H5PXDAX140GL4C1CYM9WI51BP7PPXXTMBWSR2BWL3MKJ9GUMUEU44LECULA7AYBPOIO0F1GQQLS4CMKBXE6LI1EYRQ23357K1GV7DG2QR9UYJI44DSWDXHUS8322WO9R1OBBU4U3DF11GGGAFOE2YOLUC1SB7UZUAS8FLEXXY633DX6' where id=29; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='EHYOUSMDAJA6HFP3RN7FWVK2JHW1J3CGDG32QD93SA6BWZ3RB8YGX825H8H7KJRG7TBI2HEZV8ZV3XO9P2YFJ6R3CG1RZPWA01U2EFERK62KM6I43GFDYVTRHD59NPC1YGP1KW5EMI0J8MRQNHHUI1FBKK15YJPJR2TO16NZZGDHCI1IYE0XXDDSM52OYV9T69XBB4W8RTRDZS7KWH3YNB2R5JSKHF17EZNTY8P5OBB96T55NYHZKEE77484IB4FS' where id=29; -update noar ti set v3='EHYOUSMDAJA6HFP3RN7FWVK2JHW1J3CGDG32QD93SA6BWZ3RB8YGX825H8H7KJRG7TBI2HEZV8ZV3XO9P2YFJ6R3CG1RZPWA01U2EFERK62KM6I43GFDYVTRHD59NPC1YGP1KW5EMI0J8MRQNHHUI1FBKK15YJPJR2TO16NZZGDHCI1IYE0XXDDSM52OYV9T69XBB4W8RTRDZS7KWH3YNB2R5JSKHF17EZNTY8P5OBB96T55NYHZKEE77484IB4FS' where id=29; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='A8SOCOKOXSANBDWQVMJ4ERXE4CSFKV8D4B0KSAER0API3SJ6G6FQ8VXGFPNVOQ4OU0K2FT1Z78WK3SBTELGT7PLCJ8JE0KAVUWFXGHNMOTQQXB5GEYT0UJLFRR201TLROF3VZPSJ63N4KXSC5UWSXLLMNRBFQ78XVIXKQKFQ9QBUQV3RNUOVR9DPETTM88OZBWWW3NDSWVATQRYTFGNMEEQOO4NS8ZQ484PMLD0YUG2ENQP6M12TX11V5O8S6BEAW' where id=30; -update noar ti set v0='A8SOCOKOXSANBDWQVMJ4ERXE4CSFKV8D4B0KSAER0API3SJ6G6FQ8VXGFPNVOQ4OU0K2FT1Z78WK3SBTELGT7PLCJ8JE0KAVUWFXGHNMOTQQXB5GEYT0UJLFRR201TLROF3VZPSJ63N4KXSC5UWSXLLMNRBFQ78XVIXKQKFQ9QBUQV3RNUOVR9DPETTM88OZBWWW3NDSWVATQRYTFGNMEEQOO4NS8ZQ484PMLD0YUG2ENQP6M12TX11V5O8S6BEAW' where id=30; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='UZCU1TSDNZB5Z6R0JR916UOWDGK9OBCPA8R5XYYGXZIYRC36JF07CBNRIWYZJ4J0P695TY731DFUAIW10AHHBIOWKVET3MA1XDQUMH2AESGI7XKSYQN0802I4A9YIL7BBBGBO0RAGC5GXVOAGATVP93AFPHHWZZGKKCD1KUJ0SI158PQGZ4YA8814TS951ONGJ1FCVM7U7UII13SNCWD3QE7FAOU6G7XDFTCHAR9E5HFZNLY2V09YSLX9Y2ZB1BNS' where id=30; -update noar ti set v1='UZCU1TSDNZB5Z6R0JR916UOWDGK9OBCPA8R5XYYGXZIYRC36JF07CBNRIWYZJ4J0P695TY731DFUAIW10AHHBIOWKVET3MA1XDQUMH2AESGI7XKSYQN0802I4A9YIL7BBBGBO0RAGC5GXVOAGATVP93AFPHHWZZGKKCD1KUJ0SI158PQGZ4YA8814TS951ONGJ1FCVM7U7UII13SNCWD3QE7FAOU6G7XDFTCHAR9E5HFZNLY2V09YSLX9Y2ZB1BNS' where id=30; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='UQO8AFUSLDZKCMQAPRTEFZ3T20WLELNA0A8ALYCM52A0KWNDOAJYGNK35C6F3ZJMBLGU4ZYT0GTUHPXWT1GPCW26DQWIX4S4DS7HXKYKCLF86EAGWQCW37D3R7LZ8CLNNHW8TUU4Y028EVN93RIQGNNW9L21XX9WAHSZEWLFAMPMZXM1VI4VR7WTB8R0XOIBLZH0GFFNYF86R8CTD2H3NUGNUMKYT7ZR9QC22ZYIY9EBU9E7XDTFQI6SM6N6AY6Q0' where id=30; -update noar ti set v2='UQO8AFUSLDZKCMQAPRTEFZ3T20WLELNA0A8ALYCM52A0KWNDOAJYGNK35C6F3ZJMBLGU4ZYT0GTUHPXWT1GPCW26DQWIX4S4DS7HXKYKCLF86EAGWQCW37D3R7LZ8CLNNHW8TUU4Y028EVN93RIQGNNW9L21XX9WAHSZEWLFAMPMZXM1VI4VR7WTB8R0XOIBLZH0GFFNYF86R8CTD2H3NUGNUMKYT7ZR9QC22ZYIY9EBU9E7XDTFQI6SM6N6AY6Q0' where id=30; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='O8VP1VV8KFCC1VDBP96SC07ONPBV43RU9A939XNP18AYPKN1O7V8088VK70P3Y4TLGKNKQERUYQE2CI0RJSSNDCPIEC08GKNDOB7VEWSK5RJHNR6YPV800DXIZV9BBY0VOCQE30AHN6ZKQVW52AORWHEOHTSSHZN3MJAZZZ7MQKROJJ7SC0GP5WEBJ4CH882EWE8XWCT4UWNUCDENGOB56QXLOX9XMNBH35INO016TNCO0V2W9K39CWDDZ860MXQ2' where id=30; -update noar ti set v3='O8VP1VV8KFCC1VDBP96SC07ONPBV43RU9A939XNP18AYPKN1O7V8088VK70P3Y4TLGKNKQERUYQE2CI0RJSSNDCPIEC08GKNDOB7VEWSK5RJHNR6YPV800DXIZV9BBY0VOCQE30AHN6ZKQVW52AORWHEOHTSSHZN3MJAZZZ7MQKROJJ7SC0GP5WEBJ4CH882EWE8XWCT4UWNUCDENGOB56QXLOX9XMNBH35INO016TNCO0V2W9K39CWDDZ860MXQ2' where id=30; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='IB0Z7TPVX8Q2TA32KC6S89FE2VEB82FGEJ8L67EI5ZRRE0G0H0G3PBYJI8E2H8NSDNCU2UNY8MRM8WOY5KOU6VTN5G5O2ZPK6Z9OSD5DZ44HWJJN2AQ0VOEA21LMJ71FMI0DQ17JSTU15MUFW5N5TY5LLI6FWX8HF4W5BNO8Z5ULNGJPO18XMCIQD7Z0ROA926YQ9BLTSCICLNGIXFA7FKSTDQIVFPEY9MGFZGRRJOG26IEFFS6SGD0P4DWV1NFY9' where id=31; -update noar ti set v0='IB0Z7TPVX8Q2TA32KC6S89FE2VEB82FGEJ8L67EI5ZRRE0G0H0G3PBYJI8E2H8NSDNCU2UNY8MRM8WOY5KOU6VTN5G5O2ZPK6Z9OSD5DZ44HWJJN2AQ0VOEA21LMJ71FMI0DQ17JSTU15MUFW5N5TY5LLI6FWX8HF4W5BNO8Z5ULNGJPO18XMCIQD7Z0ROA926YQ9BLTSCICLNGIXFA7FKSTDQIVFPEY9MGFZGRRJOG26IEFFS6SGD0P4DWV1NFY9' where id=31; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='KA5048BUOODD90DRYV4B9EY1UVLK1FLT37YGK2ZCYB2CNIAFQYWPAZZE6PDZEWZX0UXYANT38QJS04Q6JWV7YOUFZIONH9EIEWTL6KPH20LQSG466782PVVEZ4LWY7U31DDNJ6AADVF38ZHC6026WNNUAMQB6HWH7K3LW6K830J6R7ZXEWWVMQRGP09Q3QSXTA62C5CFY604U8R24F0KZKS0B27LSLF5CZPSZMIXTNZE7QLEYJJ234TA6O331CEFK' where id=31; -update noar ti set v1='KA5048BUOODD90DRYV4B9EY1UVLK1FLT37YGK2ZCYB2CNIAFQYWPAZZE6PDZEWZX0UXYANT38QJS04Q6JWV7YOUFZIONH9EIEWTL6KPH20LQSG466782PVVEZ4LWY7U31DDNJ6AADVF38ZHC6026WNNUAMQB6HWH7K3LW6K830J6R7ZXEWWVMQRGP09Q3QSXTA62C5CFY604U8R24F0KZKS0B27LSLF5CZPSZMIXTNZE7QLEYJJ234TA6O331CEFK' where id=31; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='V3IWJA42H3WKWUY7RKSP5FP8NGIZD00CIAI5ZB1RMXAHROTKZPFNYAQM8JJIDFYBD5IOJM9A9JEZPWGHYRKWKBQWBT32EVV2IBHD6MYIYDC3VN36Y2JZ819U85MQDJWQL7UUKFR3MINVQKJA1P7NNJ3MX2D0DKGAOYYM4XGIEDJQG4MB8RMDVVEJMC6R5CQCR81TTL0NJG21ZSG0AKR097J5DAJYFJG8PGM00DISDZ1PXOIL0I1C7EDEFBCRVGBFU' where id=31; -update noar ti set v2='V3IWJA42H3WKWUY7RKSP5FP8NGIZD00CIAI5ZB1RMXAHROTKZPFNYAQM8JJIDFYBD5IOJM9A9JEZPWGHYRKWKBQWBT32EVV2IBHD6MYIYDC3VN36Y2JZ819U85MQDJWQL7UUKFR3MINVQKJA1P7NNJ3MX2D0DKGAOYYM4XGIEDJQG4MB8RMDVVEJMC6R5CQCR81TTL0NJG21ZSG0AKR097J5DAJYFJG8PGM00DISDZ1PXOIL0I1C7EDEFBCRVGBFU' where id=31; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='VWJAN93Y8M3HX5N6KGMQIBWU121BYJVUTM2T1X8YUYMHVWBV4LHCVLJEVZYIH0QR9O1LFY60QXM1YE7SWXW9C2J1MB9RYLG03BCLEI3ZVMJVFJDZ3A4Q7L85D5QQPBQXYI12P8NNRVQLLK4FH40RVF7WCGBP1NXU4O4NHLAWB1XJS4KBOQJZXVRL4RV62RY8R9YOQ0798CRGT06MNA6DICQTIMJLG20S78VMRR9MS0KSEU4XF0TPMM2204I91IDDR' where id=31; -update noar ti set v3='VWJAN93Y8M3HX5N6KGMQIBWU121BYJVUTM2T1X8YUYMHVWBV4LHCVLJEVZYIH0QR9O1LFY60QXM1YE7SWXW9C2J1MB9RYLG03BCLEI3ZVMJVFJDZ3A4Q7L85D5QQPBQXYI12P8NNRVQLLK4FH40RVF7WCGBP1NXU4O4NHLAWB1XJS4KBOQJZXVRL4RV62RY8R9YOQ0798CRGT06MNA6DICQTIMJLG20S78VMRR9MS0KSEU4XF0TPMM2204I91IDDR' where id=31; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='O3E5NHT1DJTJ6B1C8DTGNZUJYFHS1BVUQAN02YCRH10H6NP9PWAYUUC43MC3KE42Y5HUS1J1HIVUR5MS439C8KE3WHD26JRRU58M0L6OBMJXJNGTRM1TYWY0K6FO7BWLUUIXZ12140NIU8Z0MEZX6G8X7VXW5NMMA9R27DN1XFMD4858KY3A48LPTTLN36ZIT25K45T7XVT2VM8YIX53OIWXQVY0069ZKRU94YDM6UR2IH99IC7EX2QJ80W1S2SHK' where id=32; -update noar ti set v0='O3E5NHT1DJTJ6B1C8DTGNZUJYFHS1BVUQAN02YCRH10H6NP9PWAYUUC43MC3KE42Y5HUS1J1HIVUR5MS439C8KE3WHD26JRRU58M0L6OBMJXJNGTRM1TYWY0K6FO7BWLUUIXZ12140NIU8Z0MEZX6G8X7VXW5NMMA9R27DN1XFMD4858KY3A48LPTTLN36ZIT25K45T7XVT2VM8YIX53OIWXQVY0069ZKRU94YDM6UR2IH99IC7EX2QJ80W1S2SHK' where id=32; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='UCY7ZLOQWXX3W9GPJCOHKDO8R5I6E33JDIFY77KXR4HCZ05FUKHMU5GZ6OQI3EB48AUHV63TSP5XL80JB4BE7W62I85T28MK866TVT1583CPMS9Y6IEM2QJW8RD2837NFO8RR35DLP8OS4S88LP5U77ZM2XREJZG4AUAW7W99ZVTMBDVSKZYLNLZYIDBM6NHQ2N1TX8IJITKI8WAMVV3CTB0YB78U3ZRN8PKWMLCHVP2Z28NUVHBXHJJYD89IWF9H' where id=32; -update noar ti set v1='UCY7ZLOQWXX3W9GPJCOHKDO8R5I6E33JDIFY77KXR4HCZ05FUKHMU5GZ6OQI3EB48AUHV63TSP5XL80JB4BE7W62I85T28MK866TVT1583CPMS9Y6IEM2QJW8RD2837NFO8RR35DLP8OS4S88LP5U77ZM2XREJZG4AUAW7W99ZVTMBDVSKZYLNLZYIDBM6NHQ2N1TX8IJITKI8WAMVV3CTB0YB78U3ZRN8PKWMLCHVP2Z28NUVHBXHJJYD89IWF9H' where id=32; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='VQL8O3HNFP7N14ISQ326AEJ9I7KJD7LW9DPRZR5VO2SLON787MPB5DT2NFAMS3QQ3YMFDPUKZQKC6TWCNCVGE5SFI52XL20B06IFPE06ZJTXODN6WESAW92QR4KS9LG0D56832YRXS8F3CR78KXX699PXNY4V07M117NBBLCNCWH0R1MUILN88QK1K57DGF8XEOFYXKJNTZOQ4P7V4YZB4C62CNF7OD162RKR4RTADBISYLT2O5LNUS3R0M8DDJKF' where id=32; -update noar ti set v2='VQL8O3HNFP7N14ISQ326AEJ9I7KJD7LW9DPRZR5VO2SLON787MPB5DT2NFAMS3QQ3YMFDPUKZQKC6TWCNCVGE5SFI52XL20B06IFPE06ZJTXODN6WESAW92QR4KS9LG0D56832YRXS8F3CR78KXX699PXNY4V07M117NBBLCNCWH0R1MUILN88QK1K57DGF8XEOFYXKJNTZOQ4P7V4YZB4C62CNF7OD162RKR4RTADBISYLT2O5LNUS3R0M8DDJKF' where id=32; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='QOTFGZC3MKU8AAFZWBN07SE9DZOSFSO42NYUZIDKHEF596JTWJAHBQY1ZF6RXF5YOAT3HJM1C1NTG91A7J6SCKWK1G5OR2XKGUSK9OYFL5UXT1EJKYZP5BH7XEFBZ6M6RFS12FAE7OAVJF3OTY567ASC8DJB0SSWH4ULATMUUOO6MVZHPQFSKS4W201QY2S68DG18GJBT6ZJAC90I7IF2EDXYPXM1E0VMMYZJK9TM14VSU3ZJAFLAI2GGJPQQQJ11' where id=32; -update noar ti set v3='QOTFGZC3MKU8AAFZWBN07SE9DZOSFSO42NYUZIDKHEF596JTWJAHBQY1ZF6RXF5YOAT3HJM1C1NTG91A7J6SCKWK1G5OR2XKGUSK9OYFL5UXT1EJKYZP5BH7XEFBZ6M6RFS12FAE7OAVJF3OTY567ASC8DJB0SSWH4ULATMUUOO6MVZHPQFSKS4W201QY2S68DG18GJBT6ZJAC90I7IF2EDXYPXM1E0VMMYZJK9TM14VSU3ZJAFLAI2GGJPQQQJ11' where id=32; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='XD6GMOBPO8POPL6K4RJOJYZR7PNROL2RRAVVUMMSMCB0H3I7VNOJWFV5TG7KDMEJT5K636GTLAGSGDHA9006Z31I63I59ZQZABVFQR4HR4L3LSXF8S3IJ2OM5ZDFOM6SMEIPIFKITY9AIWRA7NMRD6GUD3V2HLDEZGU10PLPAIUGHTTE10WP6E895L3XE3JC0FAF2R42H7CJSMGWF3T0JYLT03PAR482MMFUF0HT0M90QU4ZVNTTW3K94BLDPN4W1' where id=33; -update noar ti set v0='XD6GMOBPO8POPL6K4RJOJYZR7PNROL2RRAVVUMMSMCB0H3I7VNOJWFV5TG7KDMEJT5K636GTLAGSGDHA9006Z31I63I59ZQZABVFQR4HR4L3LSXF8S3IJ2OM5ZDFOM6SMEIPIFKITY9AIWRA7NMRD6GUD3V2HLDEZGU10PLPAIUGHTTE10WP6E895L3XE3JC0FAF2R42H7CJSMGWF3T0JYLT03PAR482MMFUF0HT0M90QU4ZVNTTW3K94BLDPN4W1' where id=33; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='UHZ23YKNC4EAKAL7U3C84W0J5FHDMIMJB9CHK6NCMJ84LYO0OW201K68BSU7VTUVUW68HQ0MKRS2RCD36WNOT5I9HE4R2VUS4XJA546EJH0T8JNQ46SWCVY1AO0SAUNVP2ZIFLCUCR4Z4R8M4C7XS44H2WHDZQI7IYKLP430PN5DZT974CB4M6EU3YYUU26IZHQ4YQ7DZBADO2ETPG8V4843UK19H2SAMXGOFIWA4YL6QQ0D0TZ353M8M8APSDLF3' where id=33; -update noar ti set v1='UHZ23YKNC4EAKAL7U3C84W0J5FHDMIMJB9CHK6NCMJ84LYO0OW201K68BSU7VTUVUW68HQ0MKRS2RCD36WNOT5I9HE4R2VUS4XJA546EJH0T8JNQ46SWCVY1AO0SAUNVP2ZIFLCUCR4Z4R8M4C7XS44H2WHDZQI7IYKLP430PN5DZT974CB4M6EU3YYUU26IZHQ4YQ7DZBADO2ETPG8V4843UK19H2SAMXGOFIWA4YL6QQ0D0TZ353M8M8APSDLF3' where id=33; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='5NBNKIO5LYRW5QECL4ZT4W0R9I6GDM2F3819LR0GTWV0GPW652R6UHFOW2FTYVO3IPH1T5OVQ6K6AYM5KEW0O1PJVCNY0YQUY9A4NTHD4SDPKLFXSRO16MWCIZZ05WQO5TEV1TE826ZAW50WI4N2OWCBAMCD4MOAE879NNVSGB6I0HEPUHHG8U6HFSDODEU5GDHX1PFCS49H9H7N0KJOIJ23C3I61X1IVE5MJY5FNE9CHG3COKZF41Z7H61WFGT6F' where id=33; -update noar ti set v2='5NBNKIO5LYRW5QECL4ZT4W0R9I6GDM2F3819LR0GTWV0GPW652R6UHFOW2FTYVO3IPH1T5OVQ6K6AYM5KEW0O1PJVCNY0YQUY9A4NTHD4SDPKLFXSRO16MWCIZZ05WQO5TEV1TE826ZAW50WI4N2OWCBAMCD4MOAE879NNVSGB6I0HEPUHHG8U6HFSDODEU5GDHX1PFCS49H9H7N0KJOIJ23C3I61X1IVE5MJY5FNE9CHG3COKZF41Z7H61WFGT6F' where id=33; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='2Z7CL7TZ3WYE0KSGC84QVQTQ9HJRYIE4AFR6ZBIWC502095GO3NRTN8UUFOQEQNVMMYUYMWOANQ9SZC3086YQJEBAGRYCNLPTX5BYW8X35FP3QAJ9KLILM856Q7AESEZ1AYBMV75CQRO5OG4BRWB6MV76BSYTXQ7U9NFTK6G8O5HI1CPTCB80O26WHQ79N0BJZFBEET4EX5ID744V7RL08AFMT0FO7U1CCLX53RLD302BZ5TNJKBLFXGC1G60QX8B' where id=33; -update noar ti set v3='2Z7CL7TZ3WYE0KSGC84QVQTQ9HJRYIE4AFR6ZBIWC502095GO3NRTN8UUFOQEQNVMMYUYMWOANQ9SZC3086YQJEBAGRYCNLPTX5BYW8X35FP3QAJ9KLILM856Q7AESEZ1AYBMV75CQRO5OG4BRWB6MV76BSYTXQ7U9NFTK6G8O5HI1CPTCB80O26WHQ79N0BJZFBEET4EX5ID744V7RL08AFMT0FO7U1CCLX53RLD302BZ5TNJKBLFXGC1G60QX8B' where id=33; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='96BHOUVW5ZGEHU12H02DMDKYX2UD5J4V4QLW3IQY7G2S7ZG8O49N6C3KI0AGUJCMNA06KOC52SZIK4Z4EGGZHMX53HB5F1WMI832BOOI6R5JU8QC3TECJVZS6XX6H3BAVEIZQ5I410GTVDEZPVIL7MNLZ9QWWVMR28WNJDZGK29R9QWZ6FRH4S5MLJL8DS6MJ4UUALBCMF24EORNATDG3QT4EEIU9A3XTGWIMACMRL5KRUB1JD4QK6030AFB06ONC' where id=34; -update noar ti set v0='96BHOUVW5ZGEHU12H02DMDKYX2UD5J4V4QLW3IQY7G2S7ZG8O49N6C3KI0AGUJCMNA06KOC52SZIK4Z4EGGZHMX53HB5F1WMI832BOOI6R5JU8QC3TECJVZS6XX6H3BAVEIZQ5I410GTVDEZPVIL7MNLZ9QWWVMR28WNJDZGK29R9QWZ6FRH4S5MLJL8DS6MJ4UUALBCMF24EORNATDG3QT4EEIU9A3XTGWIMACMRL5KRUB1JD4QK6030AFB06ONC' where id=34; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='W6LX7F2N5U0D5T4F6L750TTUKYLFCYZGZCCQ7NPV6A4BOBD7TQDP0XIQSREZ1EED9PYWSY64QH183DXTBQRRTW0ARFXZS81QSFIN6O7UGFWVY1G5C748KW9GEPOEHK3CF9IMJHBSDRXBSL0A7KVOP822UKCYTQU51ADRQEPZRCVFP2S8RSUDWQ727VJ7P6IZF0R1G3PLA5EL0WOM4RZPVQ0RQM4H1IE8HC7KPBV4KL574X8X567G5GTOE5NT4KTWE' where id=34; -update noar ti set v1='W6LX7F2N5U0D5T4F6L750TTUKYLFCYZGZCCQ7NPV6A4BOBD7TQDP0XIQSREZ1EED9PYWSY64QH183DXTBQRRTW0ARFXZS81QSFIN6O7UGFWVY1G5C748KW9GEPOEHK3CF9IMJHBSDRXBSL0A7KVOP822UKCYTQU51ADRQEPZRCVFP2S8RSUDWQ727VJ7P6IZF0R1G3PLA5EL0WOM4RZPVQ0RQM4H1IE8HC7KPBV4KL574X8X567G5GTOE5NT4KTWE' where id=34; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='V21AICMQ729RR0PNVVIH4AWH525N5TOR7GTAEBZ6W7UDQ30B5IACD91YI5Y12DM4YF01PQNIMNB42W983NVRZWSLFEYAP2ESXJELLETUNXPB33KR9R78ZPAI8S9FABROTD8QKUHQ8PVTHDGYWA4KPVRCINQS42FALYX324VHUE7UASJVK99M5XMS70FKU8683I2JSFHDGTP8178TFZCRRD6XZO364EFSMEDF96U4EXEO5CV3OKKE2OUWI6QGPKB4Q' where id=34; -update noar ti set v2='V21AICMQ729RR0PNVVIH4AWH525N5TOR7GTAEBZ6W7UDQ30B5IACD91YI5Y12DM4YF01PQNIMNB42W983NVRZWSLFEYAP2ESXJELLETUNXPB33KR9R78ZPAI8S9FABROTD8QKUHQ8PVTHDGYWA4KPVRCINQS42FALYX324VHUE7UASJVK99M5XMS70FKU8683I2JSFHDGTP8178TFZCRRD6XZO364EFSMEDF96U4EXEO5CV3OKKE2OUWI6QGPKB4Q' where id=34; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='BNJRCA1JX2QYXRADCXY75J5AGEEIY4HNKQUU2T662TRZKS59SLE6M4RFI5IQCK2KBK9SG1MMB6VB61YVK1XGWB17OFI6FSFADXGRGHQDMJ74MDGSYS8ZAMES8E3F9V29PXF0BKOA7A6QDXBXEO43KWQELU6FMWC6XIXRICV3VM734PWT7AX8O8T533H8UYQUTBD8GTQPNZV9T1CHSQKA96ZUY8TFWY5NN6KF8N5ET50ATE0XRUVY6V0ETCE31YIP4' where id=34; -update noar ti set v3='BNJRCA1JX2QYXRADCXY75J5AGEEIY4HNKQUU2T662TRZKS59SLE6M4RFI5IQCK2KBK9SG1MMB6VB61YVK1XGWB17OFI6FSFADXGRGHQDMJ74MDGSYS8ZAMES8E3F9V29PXF0BKOA7A6QDXBXEO43KWQELU6FMWC6XIXRICV3VM734PWT7AX8O8T533H8UYQUTBD8GTQPNZV9T1CHSQKA96ZUY8TFWY5NN6KF8N5ET50ATE0XRUVY6V0ETCE31YIP4' where id=34; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='8KBV6X4UKRJDPYWYI63STCRG47D369Q2YK2TNX3DJNUBLP41BZOVMKGRY0LB4PN4SNZWBZWZBB7SB61S2SWY9WAZWF1OD2W8GBUDVC1AZQPDGWH2434AQBUSXW8TZ7R3YAH1IHGKLKH9O0P60KGGHLKJIBMSP3SXKCE95UEDB8DE7N1EKCFJRBO0D6SIZ87L5JYXTB0MV43LZCFM6VI9CHHS02KH9HK0EC32VIT6J1NFV5VR7TMPM0Z6P3RAP4EJ9' where id=35; -update noar ti set v0='8KBV6X4UKRJDPYWYI63STCRG47D369Q2YK2TNX3DJNUBLP41BZOVMKGRY0LB4PN4SNZWBZWZBB7SB61S2SWY9WAZWF1OD2W8GBUDVC1AZQPDGWH2434AQBUSXW8TZ7R3YAH1IHGKLKH9O0P60KGGHLKJIBMSP3SXKCE95UEDB8DE7N1EKCFJRBO0D6SIZ87L5JYXTB0MV43LZCFM6VI9CHHS02KH9HK0EC32VIT6J1NFV5VR7TMPM0Z6P3RAP4EJ9' where id=35; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='CHV4OBDGYWDKHDDPQLBGQD5PZXNBIGZNRVBPELV3051ROSAS9H2OTAB6FFW75WZN97BDTLWP34H79GMA6C4VWC4W6CLZIG3A44O28HZCK3ZGQR9INLXXUVJ4CZ82T4FFKCHW0TZ0QHDGMDHW6E93E08IIVAAJ5NR6ZZWHFGR93TTIGCSQYWRNLODTBM9MGA8X41POBIWSN38746BFKAK294VQZBCJ1JAUPUBVX1QJ7ZSEKKM9X2TAT6BOCB19WE1B' where id=35; -update noar ti set v1='CHV4OBDGYWDKHDDPQLBGQD5PZXNBIGZNRVBPELV3051ROSAS9H2OTAB6FFW75WZN97BDTLWP34H79GMA6C4VWC4W6CLZIG3A44O28HZCK3ZGQR9INLXXUVJ4CZ82T4FFKCHW0TZ0QHDGMDHW6E93E08IIVAAJ5NR6ZZWHFGR93TTIGCSQYWRNLODTBM9MGA8X41POBIWSN38746BFKAK294VQZBCJ1JAUPUBVX1QJ7ZSEKKM9X2TAT6BOCB19WE1B' where id=35; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='01AMHL7K1YHLRCBUJWGMEZW9NJXXRAWOQTX273P4302T2HLTT5MHT6WG40ABVIP57D8VWDT1N5CXGV5T4BIA2FKXS8LQ5OA9YZO5YQSGXEIT5T7NSBQKWV9TR8QUPBAXGL72LHBJLDWWAF3DXG7GRYOYLL2CS8J27YUGJUVOCCYWXE938Z5OU2CUMP7X2I7FD6AOCN8RRQCDN2MKPB3NWL1IJ23L7MIWQV9L29RB4M9EVQPC3NVZVX3W0TPRZSEYJ' where id=35; -update noar ti set v2='01AMHL7K1YHLRCBUJWGMEZW9NJXXRAWOQTX273P4302T2HLTT5MHT6WG40ABVIP57D8VWDT1N5CXGV5T4BIA2FKXS8LQ5OA9YZO5YQSGXEIT5T7NSBQKWV9TR8QUPBAXGL72LHBJLDWWAF3DXG7GRYOYLL2CS8J27YUGJUVOCCYWXE938Z5OU2CUMP7X2I7FD6AOCN8RRQCDN2MKPB3NWL1IJ23L7MIWQV9L29RB4M9EVQPC3NVZVX3W0TPRZSEYJ' where id=35; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='9IAYO057TG9GABJS7WL1S3UVCNSVA2IVRH5UARYW5CASEXPUY8ATGUQZ5X386RJA042NW6F49DBKKAWYV0MRZU1FMHIMFQOE8XWRJ8PKLLT0RFOYG9CYUJF0DSQOUJJ1R8FYT0OFGM4M0VXGPPA0X5896WTN30RNBDZQA9KMVH5KHXOVA117YMZVBMYFS7QADGJMX3L82WC5LHOSLGO3UQPYO50IANIJXHHZP86OMRVU0KZYVRGO31IZD71L1AR0U' where id=35; -update noar ti set v3='9IAYO057TG9GABJS7WL1S3UVCNSVA2IVRH5UARYW5CASEXPUY8ATGUQZ5X386RJA042NW6F49DBKKAWYV0MRZU1FMHIMFQOE8XWRJ8PKLLT0RFOYG9CYUJF0DSQOUJJ1R8FYT0OFGM4M0VXGPPA0X5896WTN30RNBDZQA9KMVH5KHXOVA117YMZVBMYFS7QADGJMX3L82WC5LHOSLGO3UQPYO50IANIJXHHZP86OMRVU0KZYVRGO31IZD71L1AR0U' where id=35; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='M0U4EX7P7N41957A3YUCSJ1DSPR3S2KOBYKWVB0Q8OZA60ASJ9VIFS2XWTT104DISKA44DDTDJAOBNILFRWZESNJ2NZN2L4MOMXMOE1MYN3PZ7I1IXZ0TDTMP6SCIVELPF2LPE4OOB0JEQH22FLITQMS3IJ3MRFZTQWSVY9I5Y2E4X13QZW97TCQWST2YL57T4VKHWB5ACN22G0VWT2VB1MZWNLRPCB9G6RFFY9WOEMWN109V7D73WT731ANVVXCR' where id=36; -update noar ti set v0='M0U4EX7P7N41957A3YUCSJ1DSPR3S2KOBYKWVB0Q8OZA60ASJ9VIFS2XWTT104DISKA44DDTDJAOBNILFRWZESNJ2NZN2L4MOMXMOE1MYN3PZ7I1IXZ0TDTMP6SCIVELPF2LPE4OOB0JEQH22FLITQMS3IJ3MRFZTQWSVY9I5Y2E4X13QZW97TCQWST2YL57T4VKHWB5ACN22G0VWT2VB1MZWNLRPCB9G6RFFY9WOEMWN109V7D73WT731ANVVXCR' where id=36; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='T9YOL0GZXKSCXLVTGCJEO3VXAPZF0LLO8MCIT9DC9W7TPC2WH7GI4NE8HUR10X48HGDJ059HRBJ7KSDIMD1FCBBA7QCP3DLWCBBATU6Z7L3447CBLR3A3SINSAX3FDGTO1DNGWLGQCHHPVI7LOCA8N8X8ESF7OXR1W82BI75OP5TPSO3Z7UZZXTQVWIY11EFJQYW1Z01T19R748BMW0R9WHL9DE9KR16SJ2MD6X1BFVUZJLBZ2QVARSEQAS7NB03D' where id=36; -update noar ti set v1='T9YOL0GZXKSCXLVTGCJEO3VXAPZF0LLO8MCIT9DC9W7TPC2WH7GI4NE8HUR10X48HGDJ059HRBJ7KSDIMD1FCBBA7QCP3DLWCBBATU6Z7L3447CBLR3A3SINSAX3FDGTO1DNGWLGQCHHPVI7LOCA8N8X8ESF7OXR1W82BI75OP5TPSO3Z7UZZXTQVWIY11EFJQYW1Z01T19R748BMW0R9WHL9DE9KR16SJ2MD6X1BFVUZJLBZ2QVARSEQAS7NB03D' where id=36; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='B1O2TZIWYV1B9W6IB4V3YY8UDINKM3RIYCN8WINIHYCD9SQJJXJWRDRJXR93P6EVOZS4YIIGI9Y9NYZL1NHLQ2BCPI2R089P242RO04OHI2Z7UTUR95SS57S6EDWYSG1JALLNJB2Z5Q5BSUN65VBCLCD520CW6B2K9YGHXK9W6EKFFESZQUK49MYMKOMRT5IEBMMADGCLMFSEQW2947ZMMUGV75B670T55YV6N4YTBXYHQ77F6PSXOUSOLQY7HB6R' where id=36; -update noar ti set v2='B1O2TZIWYV1B9W6IB4V3YY8UDINKM3RIYCN8WINIHYCD9SQJJXJWRDRJXR93P6EVOZS4YIIGI9Y9NYZL1NHLQ2BCPI2R089P242RO04OHI2Z7UTUR95SS57S6EDWYSG1JALLNJB2Z5Q5BSUN65VBCLCD520CW6B2K9YGHXK9W6EKFFESZQUK49MYMKOMRT5IEBMMADGCLMFSEQW2947ZMMUGV75B670T55YV6N4YTBXYHQ77F6PSXOUSOLQY7HB6R' where id=36; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='VVCDXOYRKOIWZZ7SAILFI0SZ6U8T06FH16SSKJ0T0VADHJGDM5XTUJYTORV494KNEIUWNDEFRQXVDK6SRQNNCCLVMD6Z3EGJNMLG7SR9UD9NE4XKT4R1JJU9J2EBU34MCYD2JT6RDJBPTZ4BJTLZXLFF8EHEHU7JMH59NISYO4Z9399SODI04482J4J70Y5V3797OFBJQ5OOZNOT7UUE6QGEY3XD19PY62626L8R8WWZ3MG7N677S3053FSB21LR3' where id=36; -update noar ti set v3='VVCDXOYRKOIWZZ7SAILFI0SZ6U8T06FH16SSKJ0T0VADHJGDM5XTUJYTORV494KNEIUWNDEFRQXVDK6SRQNNCCLVMD6Z3EGJNMLG7SR9UD9NE4XKT4R1JJU9J2EBU34MCYD2JT6RDJBPTZ4BJTLZXLFF8EHEHU7JMH59NISYO4Z9399SODI04482J4J70Y5V3797OFBJQ5OOZNOT7UUE6QGEY3XD19PY62626L8R8WWZ3MG7N677S3053FSB21LR3' where id=36; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='ZJD2A0ARO578WAFTKJ9FTOM5ZBJGBVIQZ27SUM1YBT26R5MAL0WNS0T6HFT20TFMUN8C1YDMXVRQTERZ15E4KCD0SGL4H17L9OJY1XZFBW7U6KH2SOT95Y6DO5R148FRVB2PDOOO1PX9NOYF4MYCRF211VC4EIGYCCPQBL3D5C0BOY5SU3T5BKX5NYXFFLYB23F26YN84YVZGPL2GXMKZSLMVT0R490LBSGH9B11FDJIPRBM79B5HCHZ3O8E3CI4G' where id=37; -update noar ti set v0='ZJD2A0ARO578WAFTKJ9FTOM5ZBJGBVIQZ27SUM1YBT26R5MAL0WNS0T6HFT20TFMUN8C1YDMXVRQTERZ15E4KCD0SGL4H17L9OJY1XZFBW7U6KH2SOT95Y6DO5R148FRVB2PDOOO1PX9NOYF4MYCRF211VC4EIGYCCPQBL3D5C0BOY5SU3T5BKX5NYXFFLYB23F26YN84YVZGPL2GXMKZSLMVT0R490LBSGH9B11FDJIPRBM79B5HCHZ3O8E3CI4G' where id=37; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='7YKRX49F3N63FNVPCI8Q2FV2H10DNO30AGGZ94UD0BAMOGEWRRJUZA6HXO1ZF3YGUR5ZBNIK0B0VO799ZISVUNX3G4QVNASECBJVX1QOLCAPSER2D5YAF7WMDOVH8YKYSF107HX0VD91IXPTWSK4EDVJFX4H1RIDP7AWXPZSGVSXZARANZGUEOS8MP5YNOPEO5QS4DVKKPR3XEZAOR1R8C9F2OWAM9TDSO063OZRX4SHGIQ672CZM6X4LRGSPKGY2' where id=37; -update noar ti set v1='7YKRX49F3N63FNVPCI8Q2FV2H10DNO30AGGZ94UD0BAMOGEWRRJUZA6HXO1ZF3YGUR5ZBNIK0B0VO799ZISVUNX3G4QVNASECBJVX1QOLCAPSER2D5YAF7WMDOVH8YKYSF107HX0VD91IXPTWSK4EDVJFX4H1RIDP7AWXPZSGVSXZARANZGUEOS8MP5YNOPEO5QS4DVKKPR3XEZAOR1R8C9F2OWAM9TDSO063OZRX4SHGIQ672CZM6X4LRGSPKGY2' where id=37; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='MLIXAB8I8VUC3A0PVUZ53S26QQEUH0MDFT3JOQ9LNNEMYHNVMAK9F5VU2XC62FFLSV8DU1NWCGHLIBZY98NRSYSB6YCTYDN19EDXYWCSS6T166QF9YH5M7S5YCDC7G7IWKC8IK4NR5BOPJ15U1O6S6JMMX9L16GK8YV7V6Q3MC9HDLX0NV6OQ4J6P0IA8XVQH8YXLR1NM5YI3WBZO7EQBR07FTFP8OT2G1VBXT3AISXF19XBH1DOIIOL6C8HP5WH6' where id=37; -update noar ti set v2='MLIXAB8I8VUC3A0PVUZ53S26QQEUH0MDFT3JOQ9LNNEMYHNVMAK9F5VU2XC62FFLSV8DU1NWCGHLIBZY98NRSYSB6YCTYDN19EDXYWCSS6T166QF9YH5M7S5YCDC7G7IWKC8IK4NR5BOPJ15U1O6S6JMMX9L16GK8YV7V6Q3MC9HDLX0NV6OQ4J6P0IA8XVQH8YXLR1NM5YI3WBZO7EQBR07FTFP8OT2G1VBXT3AISXF19XBH1DOIIOL6C8HP5WH6' where id=37; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='18PSJSHLJQYHU7EMFIQNJTG3ZP4RU0NT1KA6UK1GZV2DPBXP07WYX457IKJD0Y13O4JYGY7Y8G25QV136V00EJWGZO6S5X8S41P17QREBV3UNWVHSC6AYC48KVNGS7Y9QEAMFNLOMQX6SELIR485DUSQ6KD65U0W6IJA24CZKC5CAEKUAU5O3Y8TL107L42WMRJ51M0S3PPY68AFYCQYOBLXSCLS2NSWSW1QP8M9MO7VURCTJ18Y9M5PM9V2O0L79' where id=37; -update noar ti set v3='18PSJSHLJQYHU7EMFIQNJTG3ZP4RU0NT1KA6UK1GZV2DPBXP07WYX457IKJD0Y13O4JYGY7Y8G25QV136V00EJWGZO6S5X8S41P17QREBV3UNWVHSC6AYC48KVNGS7Y9QEAMFNLOMQX6SELIR485DUSQ6KD65U0W6IJA24CZKC5CAEKUAU5O3Y8TL107L42WMRJ51M0S3PPY68AFYCQYOBLXSCLS2NSWSW1QP8M9MO7VURCTJ18Y9M5PM9V2O0L79' where id=37; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='0PPCXEXQAW6NZFYBHVFDNXZ72IOU6U0NAF6GHCC2CBWJ6FR5O60OE59X12DR94LWQH7W6RAARA3K5UA7CN7SON15SE8YYKN0BG0ME02E4X5F202TFP027IT7E7SCQYC48GVBMM4QD0V2OA4K29M96SRGRUABIKIEO8659YWZ00T2SXLB44GGIDQ4A5LL62LITG52N88ZYH2OSVYDZNUW8L6V6QZF1CG3E1H7DBRWSEZAEX122QQ87VME71Z9SMXWM' where id=38; -update noar ti set v0='0PPCXEXQAW6NZFYBHVFDNXZ72IOU6U0NAF6GHCC2CBWJ6FR5O60OE59X12DR94LWQH7W6RAARA3K5UA7CN7SON15SE8YYKN0BG0ME02E4X5F202TFP027IT7E7SCQYC48GVBMM4QD0V2OA4K29M96SRGRUABIKIEO8659YWZ00T2SXLB44GGIDQ4A5LL62LITG52N88ZYH2OSVYDZNUW8L6V6QZF1CG3E1H7DBRWSEZAEX122QQ87VME71Z9SMXWM' where id=38; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='MQ9NKR88QS3JT8D73FKF7H049V8F9FV152K381RG6MG7LXAX4LXPZIVSF7HS29RGMSTQLGAFOBB2ASWPTKZX8J9NT0A0KLR7V2SI3EUCV74HBWABGQIE7S4X3G0FXGRFISMI13X1PX87G1LSRB0WJFVV8YKR4UDFD9J2T0FI53580WEJHJGAG3IDLIJPQX2PFY3WJIJ1ZIN625KA5SAXI207M26A7J5D9Y8Q65ONKSTP41KO01K9AJPFUVEZHLYVA' where id=38; -update noar ti set v1='MQ9NKR88QS3JT8D73FKF7H049V8F9FV152K381RG6MG7LXAX4LXPZIVSF7HS29RGMSTQLGAFOBB2ASWPTKZX8J9NT0A0KLR7V2SI3EUCV74HBWABGQIE7S4X3G0FXGRFISMI13X1PX87G1LSRB0WJFVV8YKR4UDFD9J2T0FI53580WEJHJGAG3IDLIJPQX2PFY3WJIJ1ZIN625KA5SAXI207M26A7J5D9Y8Q65ONKSTP41KO01K9AJPFUVEZHLYVA' where id=38; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='J66BHK5CX59CGBKBR1II3CDGTBW1II3ND5XMK5E4J0LN4LLA3190T2V8BP1E2820PV0TUIA86JQ8P9E4NLAPJ4Y1BMFLQ1PNVDJSMO46IBOAKJ675ECHKXYE7LR892XQTDVHENA3L3SMWVY1090VFTQ658JY33ZSWSW777Y0W9II98SUM49CRD1QM4UU5BWUNCBVIUINHYHQ7RLD16NY9EK0CF9EVCCCC1XUBF23BEMVX8IOQXKHQFT0EIDSL9T6U' where id=38; -update noar ti set v2='J66BHK5CX59CGBKBR1II3CDGTBW1II3ND5XMK5E4J0LN4LLA3190T2V8BP1E2820PV0TUIA86JQ8P9E4NLAPJ4Y1BMFLQ1PNVDJSMO46IBOAKJ675ECHKXYE7LR892XQTDVHENA3L3SMWVY1090VFTQ658JY33ZSWSW777Y0W9II98SUM49CRD1QM4UU5BWUNCBVIUINHYHQ7RLD16NY9EK0CF9EVCCCC1XUBF23BEMVX8IOQXKHQFT0EIDSL9T6U' where id=38; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='6EPLPYENJL5DS3BMXF5E5TUQ1WVCZHOAXZQFK0VG212FC5SFFPLIKCSXYE2ROQT5QM32YVHY6C0JCMH4730VU6A840PMMXA2P1INN2ZT8JKY4SUC6FN2YJSGBF1B6QK7TX8GIGDH8AZEGFAJVTCCB7VN5O74HPB78W5EMBPNANJECEI00RFE76A9BSJ75M1AEMI8QA2GMZMXNOT6IPMXXYKY041XQ6WB439CPFUNB8SJ8GQBQVP286ZCFH6GU11DR' where id=38; -update noar ti set v3='6EPLPYENJL5DS3BMXF5E5TUQ1WVCZHOAXZQFK0VG212FC5SFFPLIKCSXYE2ROQT5QM32YVHY6C0JCMH4730VU6A840PMMXA2P1INN2ZT8JKY4SUC6FN2YJSGBF1B6QK7TX8GIGDH8AZEGFAJVTCCB7VN5O74HPB78W5EMBPNANJECEI00RFE76A9BSJ75M1AEMI8QA2GMZMXNOT6IPMXXYKY041XQ6WB439CPFUNB8SJ8GQBQVP286ZCFH6GU11DR' where id=38; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='MBIJLQRMHX8UN2DL59P0SL86NBBALZN4MXLLMYFCZO4P6XAWKHHFBDIPWAPAM2OLRO4KQ2GJ50J70C0HPHOTJ67U4F2DGZ4RVF6GVK5N68EPGIVQOI79L6E42MC1GPJO3GME4UZ4VHL3VQIIG90ZUJNEHX8WN3XKSJA2DRTIFB1CVXZ10VSS0ZQ7S1RMTUR21W31P245K7RZ1FSCLG265U5GHTCXR4VXNQQ29AYTPS2NZCH07CIQBPLB9ZMCRMTTA' where id=39; -update noar ti set v0='MBIJLQRMHX8UN2DL59P0SL86NBBALZN4MXLLMYFCZO4P6XAWKHHFBDIPWAPAM2OLRO4KQ2GJ50J70C0HPHOTJ67U4F2DGZ4RVF6GVK5N68EPGIVQOI79L6E42MC1GPJO3GME4UZ4VHL3VQIIG90ZUJNEHX8WN3XKSJA2DRTIFB1CVXZ10VSS0ZQ7S1RMTUR21W31P245K7RZ1FSCLG265U5GHTCXR4VXNQQ29AYTPS2NZCH07CIQBPLB9ZMCRMTTA' where id=39; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='NSFIH0HZH8POOGYFFYPK4GIE3B1UD5WRRI6SOU1B05BGPAINR7O02M1729R1VVW4UF3KHD7CJNUCKU1NRHLQGIBRO4XSAKD61Y3IZBJKXDTTEZLSFIW60A7IYH5TM96PZSCL4QMUJ5JGC8IFGURM7LBZ27AYXH9W0I476X8DFEFU8SXDTU85J0EKMSTZHGSSTFGYYAZYR8NFUAVEW9T8B9TOWPR2SXH3PBIP87ORSWT4WZG9ARQHL5GJ23A6RQOXA' where id=39; -update noar ti set v1='NSFIH0HZH8POOGYFFYPK4GIE3B1UD5WRRI6SOU1B05BGPAINR7O02M1729R1VVW4UF3KHD7CJNUCKU1NRHLQGIBRO4XSAKD61Y3IZBJKXDTTEZLSFIW60A7IYH5TM96PZSCL4QMUJ5JGC8IFGURM7LBZ27AYXH9W0I476X8DFEFU8SXDTU85J0EKMSTZHGSSTFGYYAZYR8NFUAVEW9T8B9TOWPR2SXH3PBIP87ORSWT4WZG9ARQHL5GJ23A6RQOXA' where id=39; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='KACBVXR9WWP571WUNBLZZRBI8T3ZLMNYQYCQEDHNC9SQ9AW555ZF0JFSC38Q65C9MDQPXX9VMOK3EI6N8CNCSZDMWXLH0XDJHEBYPURWHVY6BAEX5V67C08085VN31ANK5MLR9TNDYUPS2SU7R8FX0FUK2SDUXV5PYEYMT02A20LB8VI0CQAXM0GEMFBTUWW7CY5F0NMUSPCF0JEM21QLFZMMWG19U1KW3ZTV091R5QSF230Q5I58IF0USUCQ8I4Q' where id=39; -update noar ti set v2='KACBVXR9WWP571WUNBLZZRBI8T3ZLMNYQYCQEDHNC9SQ9AW555ZF0JFSC38Q65C9MDQPXX9VMOK3EI6N8CNCSZDMWXLH0XDJHEBYPURWHVY6BAEX5V67C08085VN31ANK5MLR9TNDYUPS2SU7R8FX0FUK2SDUXV5PYEYMT02A20LB8VI0CQAXM0GEMFBTUWW7CY5F0NMUSPCF0JEM21QLFZMMWG19U1KW3ZTV091R5QSF230Q5I58IF0USUCQ8I4Q' where id=39; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='IICHG9NY81SCAQMR7JPS16WZ5QN3NGGNIEAI9JVFLUAJJWD2KJUVXN54702OW7TV7JPCCCZT6U2SMNQB5GE7GAJFBRZQW8OFAC1TXMRPYBNP1NJGR4FLPR517PM8CQBBACCPCSY2AIFDCU8LSI53RQGTDCR0HLI425KEZK8P9ASGU8JI84QTLYG38A584996KCT70A7SBSLYLBQFM0FMVSGQCQPJQECHTR86XAS9W5E5SJQ8QMHEFMTKW1AZ2DQHA' where id=39; -update noar ti set v3='IICHG9NY81SCAQMR7JPS16WZ5QN3NGGNIEAI9JVFLUAJJWD2KJUVXN54702OW7TV7JPCCCZT6U2SMNQB5GE7GAJFBRZQW8OFAC1TXMRPYBNP1NJGR4FLPR517PM8CQBBACCPCSY2AIFDCU8LSI53RQGTDCR0HLI425KEZK8P9ASGU8JI84QTLYG38A584996KCT70A7SBSLYLBQFM0FMVSGQCQPJQECHTR86XAS9W5E5SJQ8QMHEFMTKW1AZ2DQHA' where id=39; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='JS2SF26JP07VS8U1UW57MYH066TW6RJ5ORZ193DCV0R67XT51BGF0VQVOMF6SMANMF66N5FHY62H0X8WHNB0FDRWIEKUHWZAZB2M6ZDNAMWPL68GL6N9X2TRPZ6VVZKYR0FLPDPZFT9J26SHUDCYDSTS3KKSPZQL40DW9U29WUKXA2GD5ZXU6UD20H1KERE7I9NC0QXUGB0T5S50MHJPW68W8E2QOLUF61PXWOAF3JVG3GZONY1EBU2DVXXMGKGHB' where id=40; -update noar ti set v0='JS2SF26JP07VS8U1UW57MYH066TW6RJ5ORZ193DCV0R67XT51BGF0VQVOMF6SMANMF66N5FHY62H0X8WHNB0FDRWIEKUHWZAZB2M6ZDNAMWPL68GL6N9X2TRPZ6VVZKYR0FLPDPZFT9J26SHUDCYDSTS3KKSPZQL40DW9U29WUKXA2GD5ZXU6UD20H1KERE7I9NC0QXUGB0T5S50MHJPW68W8E2QOLUF61PXWOAF3JVG3GZONY1EBU2DVXXMGKGHB' where id=40; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='RU9KPNR8CRROLPYW026M8NDR45WQ3CHJY1J7BYICHACR8BT2UL3XL8PVAS6T0IE915IXV5IPZP3T9N4P4J5MAH9M19AQ8S0JD9H0EPKQWQFA1HXFLWVEDDD8EF7WTH5YE7T6FGIRVM5VFHG7RDJ793SSKRAF5VSVJDMP11VT75M6OPGUPL900ZJ1842LGC0M3J3KPF60R2AVB83YG2WYE49YM2IW22YV65PNJXLVFDW20PWJR14QKOX26HU9RTQ1S' where id=40; -update noar ti set v1='RU9KPNR8CRROLPYW026M8NDR45WQ3CHJY1J7BYICHACR8BT2UL3XL8PVAS6T0IE915IXV5IPZP3T9N4P4J5MAH9M19AQ8S0JD9H0EPKQWQFA1HXFLWVEDDD8EF7WTH5YE7T6FGIRVM5VFHG7RDJ793SSKRAF5VSVJDMP11VT75M6OPGUPL900ZJ1842LGC0M3J3KPF60R2AVB83YG2WYE49YM2IW22YV65PNJXLVFDW20PWJR14QKOX26HU9RTQ1S' where id=40; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='KIQLRRPH20523ZEAX8M9299NH77Z7O6W0CLRN0R5H2QEZ8PP4YUUYP8MSZDC76UNEXPR93EGKGJ232I81G2KBYK73RCWOJKFPG58D8MDNOWPRGT7RI257Q6ZOGR1MVPX9P96OOFRC0UF1E8BC2TDK6LM54JBAGAOTKRBY6YSQ33MOE0JRP8JWHVMG2PI1JK7CR0V2SNCU32TPHXPCX00MW8O2DZTTX8LURL0OQ3DVWLSWWDKH47JOHRJ2NVBUTD5D' where id=40; -update noar ti set v2='KIQLRRPH20523ZEAX8M9299NH77Z7O6W0CLRN0R5H2QEZ8PP4YUUYP8MSZDC76UNEXPR93EGKGJ232I81G2KBYK73RCWOJKFPG58D8MDNOWPRGT7RI257Q6ZOGR1MVPX9P96OOFRC0UF1E8BC2TDK6LM54JBAGAOTKRBY6YSQ33MOE0JRP8JWHVMG2PI1JK7CR0V2SNCU32TPHXPCX00MW8O2DZTTX8LURL0OQ3DVWLSWWDKH47JOHRJ2NVBUTD5D' where id=40; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='NIY892D98R34VRPVDPXGWYEYR78HTUOWTVAIZE1YX34I7DL9SVJ8ZTKFLDAWVWNUT9H7PQVFU21RESZZIRNMXO7OSSF8DXCHMJLOA93NAWJNLUR1DI8XT9N8IEHMN68R6FONVYZVIDJYT5C5FXW4B7BD0IF2LCD1AO8U665HWH9ASVX0FM6R1Q4BXOKZO72ZGH0FI5FWL9NURKN4PLZ8TXJ57VJ30AP92FL7AKO1JU5REVJHG40PX3GJUC4AHISJH' where id=40; -update noar ti set v3='NIY892D98R34VRPVDPXGWYEYR78HTUOWTVAIZE1YX34I7DL9SVJ8ZTKFLDAWVWNUT9H7PQVFU21RESZZIRNMXO7OSSF8DXCHMJLOA93NAWJNLUR1DI8XT9N8IEHMN68R6FONVYZVIDJYT5C5FXW4B7BD0IF2LCD1AO8U665HWH9ASVX0FM6R1Q4BXOKZO72ZGH0FI5FWL9NURKN4PLZ8TXJ57VJ30AP92FL7AKO1JU5REVJHG40PX3GJUC4AHISJH' where id=40; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='C1HMR8AVREFGKVQ63C7D47U9PQZYGKQR3XII6F3990712OKXQJBSYUHWPY5GSKP3QO2D08X1SKULCWAAUKXFNFQJN65QA4O1C3X1EL3JPSIBD24GTLAOR3CXEWFF5MEUSQJKIYVJ3FZPHMAHMUNTN4GASTNMM856OO9URCX519HU7HPMB6DQMJYJVT9UXTWUS9ATL31D77AL4ZLSBSNOQ1DMYC5838E2VE5ZJLE00Y9N6EJ5AE584L449RBK3IFHE' where id=41; -update noar ti set v0='C1HMR8AVREFGKVQ63C7D47U9PQZYGKQR3XII6F3990712OKXQJBSYUHWPY5GSKP3QO2D08X1SKULCWAAUKXFNFQJN65QA4O1C3X1EL3JPSIBD24GTLAOR3CXEWFF5MEUSQJKIYVJ3FZPHMAHMUNTN4GASTNMM856OO9URCX519HU7HPMB6DQMJYJVT9UXTWUS9ATL31D77AL4ZLSBSNOQ1DMYC5838E2VE5ZJLE00Y9N6EJ5AE584L449RBK3IFHE' where id=41; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='2M27TTLJMUW78ZLY31CJ4HTV8OHD7IBLO3BLACHI5O63JUK7RL0VZZ1E4EDSTHRINUOWO64QXH9Q6ZVBRNIKPIZBDG9DJPFIU6E5X84JHXBBL51M0XYQATB7PSM8WYC6YT15PW2GRJ1OV8NCTT01HGMT5IK02SJW7Y1UB5R8NJUZC4J9885H1ZDWID4H2W6OK005S2IQ44UDGKU01EPHAOXAV05FX7TKVT19CZ9BZ12W6G5XJBC773GD2WCV0T9L7' where id=41; -update noar ti set v1='2M27TTLJMUW78ZLY31CJ4HTV8OHD7IBLO3BLACHI5O63JUK7RL0VZZ1E4EDSTHRINUOWO64QXH9Q6ZVBRNIKPIZBDG9DJPFIU6E5X84JHXBBL51M0XYQATB7PSM8WYC6YT15PW2GRJ1OV8NCTT01HGMT5IK02SJW7Y1UB5R8NJUZC4J9885H1ZDWID4H2W6OK005S2IQ44UDGKU01EPHAOXAV05FX7TKVT19CZ9BZ12W6G5XJBC773GD2WCV0T9L7' where id=41; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='P32XQK94PPU6P6XSDX80S4AWBPQVGMI87R8IYP490S1EFEHOTROI7XWZYJMA1R3SNTTBDTDN6EN5OV4C2WEGKM3F2QICKUY83ZH548QINBZR1BSYP8L2YMBM947TQ86E1TP6DCVISFVKWHH3KLJYZUOJANJEQJ6CZYDEWJTMGIAJSN4NYB409P12VKBPDU7DCY1SJ7CDN7U3S1U15MFK2MUH2ANQFNH58742X5YBDGZK8PT3VQH9D5WBLV8BCYZAZ' where id=41; -update noar ti set v2='P32XQK94PPU6P6XSDX80S4AWBPQVGMI87R8IYP490S1EFEHOTROI7XWZYJMA1R3SNTTBDTDN6EN5OV4C2WEGKM3F2QICKUY83ZH548QINBZR1BSYP8L2YMBM947TQ86E1TP6DCVISFVKWHH3KLJYZUOJANJEQJ6CZYDEWJTMGIAJSN4NYB409P12VKBPDU7DCY1SJ7CDN7U3S1U15MFK2MUH2ANQFNH58742X5YBDGZK8PT3VQH9D5WBLV8BCYZAZ' where id=41; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='K80ACSSQCTWAUUVH9B8ZXO5O1ZVDB11L5X2TBTT3QHCT6TWP46IJMP18XNMWL5ZFOMDM4F4A70BRJHQWJGA43OTVNLIZAXV6XVBPTSZTWR5BPQ1PW6Z2SHWLHINEQGW1NBODSR59LPCOQRSMIERXSOA0SX3OOK1B9IOSZELC6FZKCCB3GKFE0JNEVFFFSGFTRRYBSH563FYQU45KF3IQBTJ51E39IHGUFYGTNJT1VHBBUHT47BFAMKIK5B4H4O5DW' where id=41; -update noar ti set v3='K80ACSSQCTWAUUVH9B8ZXO5O1ZVDB11L5X2TBTT3QHCT6TWP46IJMP18XNMWL5ZFOMDM4F4A70BRJHQWJGA43OTVNLIZAXV6XVBPTSZTWR5BPQ1PW6Z2SHWLHINEQGW1NBODSR59LPCOQRSMIERXSOA0SX3OOK1B9IOSZELC6FZKCCB3GKFE0JNEVFFFSGFTRRYBSH563FYQU45KF3IQBTJ51E39IHGUFYGTNJT1VHBBUHT47BFAMKIK5B4H4O5DW' where id=41; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='AXE6E25KSO6X9FQ378OHFQJSL3Y587JHS6PS7N5TWKS0MU0PO4MU3NB64O341DQRWO0OLPL9DZ1N0CPEBKOQX8QPF0MX465BV4MML06D6GL37YX7FNVY73Z7JKD9Y6WCN5KSA1PEZ94FRMPL79ABK51SG3ETE4FMVFQF5M3YP72B2FPB1SI322X2IIL2HKECLWW9Z6IZDSDG3NPJX0B02GC39JVXUIQK4Y04A4ADW9NAVC73J8Z5WJU7U5J3OTPC9' where id=42; -update noar ti set v0='AXE6E25KSO6X9FQ378OHFQJSL3Y587JHS6PS7N5TWKS0MU0PO4MU3NB64O341DQRWO0OLPL9DZ1N0CPEBKOQX8QPF0MX465BV4MML06D6GL37YX7FNVY73Z7JKD9Y6WCN5KSA1PEZ94FRMPL79ABK51SG3ETE4FMVFQF5M3YP72B2FPB1SI322X2IIL2HKECLWW9Z6IZDSDG3NPJX0B02GC39JVXUIQK4Y04A4ADW9NAVC73J8Z5WJU7U5J3OTPC9' where id=42; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='73TOUD4EONX110H0DV7HE3HZVITV2ECQMO3QI5GL1OYXUHD4HK3422B2SIL9D0KFEODL2BD0AZJ7BFU7L7YL7YQI1A118DWTB0EU7OICZQLSF18NTGU24MUPXSXUHZY62CHOB4NNDNZ9C87FCTVVR7IT9F4853U485QQVT476K8ZE3EUIHIAXQVRMYZO6A0HNV693J2ZZK4J9AIEOR3SRP6278IAUXORSJRZ7NIOUUQXFQGON4APBRK2HDCC4ZBQJ' where id=42; -update noar ti set v1='73TOUD4EONX110H0DV7HE3HZVITV2ECQMO3QI5GL1OYXUHD4HK3422B2SIL9D0KFEODL2BD0AZJ7BFU7L7YL7YQI1A118DWTB0EU7OICZQLSF18NTGU24MUPXSXUHZY62CHOB4NNDNZ9C87FCTVVR7IT9F4853U485QQVT476K8ZE3EUIHIAXQVRMYZO6A0HNV693J2ZZK4J9AIEOR3SRP6278IAUXORSJRZ7NIOUUQXFQGON4APBRK2HDCC4ZBQJ' where id=42; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='8SNJHZKVFOKMR9JBXBSP14F7VRUPNQQ9AO779YSPCXBCVH8RNS8ZQ25KAVEUW68WXZ5CBT2S3P51CUP2HJWZSDAN28CBNBHQSB44YASD0YWTN17R8143THIBC2HCR41J8JOS5VCHUJDUEY8CGYSWGY9EWOI36X4NGTMEALRCFNKJR2W9TWCYZQFM963S6IBF1Y3MON44NL98MOCRIKZ5O97N6AM3E28JJ9WO5S7EA8WK74K0CRFLR5MBJR35PMIZN' where id=42; -update noar ti set v2='8SNJHZKVFOKMR9JBXBSP14F7VRUPNQQ9AO779YSPCXBCVH8RNS8ZQ25KAVEUW68WXZ5CBT2S3P51CUP2HJWZSDAN28CBNBHQSB44YASD0YWTN17R8143THIBC2HCR41J8JOS5VCHUJDUEY8CGYSWGY9EWOI36X4NGTMEALRCFNKJR2W9TWCYZQFM963S6IBF1Y3MON44NL98MOCRIKZ5O97N6AM3E28JJ9WO5S7EA8WK74K0CRFLR5MBJR35PMIZN' where id=42; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='26WCQVQYMI48CW3TL65ZS4F5R9MTI048B05BF60S9OHG46ZY0NEOAZFCCHH7IUNP1N93HS872SFTB2LZ3NH7RYR5WIWX2DLZCER9I1C1P1BEPOSC3S3AS66HFI15D8Y1Y31U90L207YABO9KPJEASZM4PX0V7RQCNRXTS10X2LDWC722MXTVJPWTXYV2513V3QAYAK9HMQXZXKCA668PZG1HFK6VN2WYWW8VEWRBLNV5B9CL98THF8T4PQ2MBI38P' where id=42; -update noar ti set v3='26WCQVQYMI48CW3TL65ZS4F5R9MTI048B05BF60S9OHG46ZY0NEOAZFCCHH7IUNP1N93HS872SFTB2LZ3NH7RYR5WIWX2DLZCER9I1C1P1BEPOSC3S3AS66HFI15D8Y1Y31U90L207YABO9KPJEASZM4PX0V7RQCNRXTS10X2LDWC722MXTVJPWTXYV2513V3QAYAK9HMQXZXKCA668PZG1HFK6VN2WYWW8VEWRBLNV5B9CL98THF8T4PQ2MBI38P' where id=42; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='N4QGLNWDK955DOINBQI4XMPW86UUQDBAZA1B6U6BBCDCRNXDGA7G97YJLTTM9XUPYCCVK9VKDZFMQZRC8QT83CG0Y73MPQYBN5MDSPF3H58EU9C1HGUZIVD5T0A62RKW3DBI6MLYDJPBYY33EOTBGYE2QTPO0TABRG7RPU9JHKU5WKIPZO58UGB7FV5MGHK5YQCZMT3EZF5M7KNKJ0YRH2EZAXG2TQ6G4BQQLIH92I1PI256H0ZWZLNROCLN4O0BE' where id=43; -update noar ti set v0='N4QGLNWDK955DOINBQI4XMPW86UUQDBAZA1B6U6BBCDCRNXDGA7G97YJLTTM9XUPYCCVK9VKDZFMQZRC8QT83CG0Y73MPQYBN5MDSPF3H58EU9C1HGUZIVD5T0A62RKW3DBI6MLYDJPBYY33EOTBGYE2QTPO0TABRG7RPU9JHKU5WKIPZO58UGB7FV5MGHK5YQCZMT3EZF5M7KNKJ0YRH2EZAXG2TQ6G4BQQLIH92I1PI256H0ZWZLNROCLN4O0BE' where id=43; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='C5WNK7DO09CLH11GEQ15TCEF2UW5XOLKZ6XXEMYMC1LYTAMPBY6HRGRUKURWHTS9JPNWL41BP8PM9686W2U0B8R9JSB2HQU71KM8N6Z75PFUI97S7GOMCJ9YNW43U1LFU26X8SK8RF7EIL6TMSM8FFXAT91XM96W0NPTYOLFEUEI8CYQ555FACHLW0V4R1E3QG62F3FVBBGW05MI6AZZWLAJ688GVGOIE2C8UTZUT7CJYANKIUIRT92MTH45YVG20' where id=43; -update noar ti set v1='C5WNK7DO09CLH11GEQ15TCEF2UW5XOLKZ6XXEMYMC1LYTAMPBY6HRGRUKURWHTS9JPNWL41BP8PM9686W2U0B8R9JSB2HQU71KM8N6Z75PFUI97S7GOMCJ9YNW43U1LFU26X8SK8RF7EIL6TMSM8FFXAT91XM96W0NPTYOLFEUEI8CYQ555FACHLW0V4R1E3QG62F3FVBBGW05MI6AZZWLAJ688GVGOIE2C8UTZUT7CJYANKIUIRT92MTH45YVG20' where id=43; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='KSZXG1B5O09HBMBYGDCWHIST8GRJEHY8PN4IB7TBDN01PJMOLBWY9TMLI3X5V80U2K5NNNZ2P9TTQFG1HBW1T1YY1VP3UDV1LKFNTGOWPM12XFN82W8T083GY7HR6BLYMPT0ZQHTSGMXCE7BY5L2BOB5GUWZINU36VMGLYJXX63OHXTVCHC7Q8ISLOZC3DSN2HDTM1APTXHIXKYQFZ3UCLWD09SDZ7TJ72ZYKMWNGA7QU9MGVACKXXFWYQDOS2SMC' where id=43; -update noar ti set v2='KSZXG1B5O09HBMBYGDCWHIST8GRJEHY8PN4IB7TBDN01PJMOLBWY9TMLI3X5V80U2K5NNNZ2P9TTQFG1HBW1T1YY1VP3UDV1LKFNTGOWPM12XFN82W8T083GY7HR6BLYMPT0ZQHTSGMXCE7BY5L2BOB5GUWZINU36VMGLYJXX63OHXTVCHC7Q8ISLOZC3DSN2HDTM1APTXHIXKYQFZ3UCLWD09SDZ7TJ72ZYKMWNGA7QU9MGVACKXXFWYQDOS2SMC' where id=43; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='V8LZAYWQ9VSGN0UH6ODPBSDK0N28GI0OWTC2ZNJ9S6SCJ4FJA4YGHUR8DJ84X5VXJRC71AXL92XF78L9CISJK00TVXMEMG0CC4O0S0BSOOEIPZKM5CI0A981N0CYPNGW66IPMTVPEQMWQCD8EE0JINYSQNW96RSQ5RHV1PDV47Y0VSHRESBF7T2VPO1LTTIGQSQWOVFW9I4KYVCVB8YMI5JI8X64L37GB7FIU5Z39D1VAW0WPVPI7JFQ5K59PLRNV' where id=43; -update noar ti set v3='V8LZAYWQ9VSGN0UH6ODPBSDK0N28GI0OWTC2ZNJ9S6SCJ4FJA4YGHUR8DJ84X5VXJRC71AXL92XF78L9CISJK00TVXMEMG0CC4O0S0BSOOEIPZKM5CI0A981N0CYPNGW66IPMTVPEQMWQCD8EE0JINYSQNW96RSQ5RHV1PDV47Y0VSHRESBF7T2VPO1LTTIGQSQWOVFW9I4KYVCVB8YMI5JI8X64L37GB7FIU5Z39D1VAW0WPVPI7JFQ5K59PLRNV' where id=43; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='JG70S82EH2XF6QK131GSV1AKI0CK0MH0ZSB477ZNQYRLL8DE8W9P9FV1DTUXNT3GPHRP49YZAI5I9HWRU24KQZANZWFRY1QA67KSSVQIN9ZS9PVGNLHRUPU47R0WXB6VB8NI1YBWQ4VO4EFR65XW8XLM7KG2SRNRFYVF7P54YAJS7L3QF2S68RJWHA22T73YA8N11N05E0N0C9PRDBAKKAFJ0Z0MD70XOOOPDM7K6KGQAXD78Q4CIT8PYDQ39UD3Q' where id=44; -update noar ti set v0='JG70S82EH2XF6QK131GSV1AKI0CK0MH0ZSB477ZNQYRLL8DE8W9P9FV1DTUXNT3GPHRP49YZAI5I9HWRU24KQZANZWFRY1QA67KSSVQIN9ZS9PVGNLHRUPU47R0WXB6VB8NI1YBWQ4VO4EFR65XW8XLM7KG2SRNRFYVF7P54YAJS7L3QF2S68RJWHA22T73YA8N11N05E0N0C9PRDBAKKAFJ0Z0MD70XOOOPDM7K6KGQAXD78Q4CIT8PYDQ39UD3Q' where id=44; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='07SG3BPYWQQEEPPUXICSE0JKJDFA0C3DD95G0MF2KDDBSGP636C9KSJ4JDO2W9UDT3FI465Z8WSWYULSNIH5XT7XYUTMNQRXJSGC3Q7TU8FGLFSHVX2FMKP4OU25X9NPNOQ0VUYR76DFE9MB25EMCZ8254D116AC9HUB1QSYMVQUO7IJNLZKYWSI0S973LHC0I87Y8415RJMAW8SE5EDRN5HUMGFOL2QSLCVLMB5DPZK3SHMPBQOU59PL2NDZYMAY' where id=44; -update noar ti set v1='07SG3BPYWQQEEPPUXICSE0JKJDFA0C3DD95G0MF2KDDBSGP636C9KSJ4JDO2W9UDT3FI465Z8WSWYULSNIH5XT7XYUTMNQRXJSGC3Q7TU8FGLFSHVX2FMKP4OU25X9NPNOQ0VUYR76DFE9MB25EMCZ8254D116AC9HUB1QSYMVQUO7IJNLZKYWSI0S973LHC0I87Y8415RJMAW8SE5EDRN5HUMGFOL2QSLCVLMB5DPZK3SHMPBQOU59PL2NDZYMAY' where id=44; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='1RXGUMTFHFSC2VP8HGPVKV4ZKJPBDQTQ4OK8UKMRHUKEMZGZ5CA6GKAZ5BHY5I3KM1I2Z6G28K8T9Q3QCII043K742N6KOJMWLFADKMBV59VAXE2TAC2P2K0KWLB3NX6V7TP5HPZUT60NGETTCOWFC299PQKE8VVGI6NRTKEKXMS6YXK5INJHL4W8XW2A269VR5OHMJDOE1HT1PUMYGUJA4PZCL21VN7UUJ7TF2P968OH7LRB2RR5ML6Y5XU2Y0QC' where id=44; -update noar ti set v2='1RXGUMTFHFSC2VP8HGPVKV4ZKJPBDQTQ4OK8UKMRHUKEMZGZ5CA6GKAZ5BHY5I3KM1I2Z6G28K8T9Q3QCII043K742N6KOJMWLFADKMBV59VAXE2TAC2P2K0KWLB3NX6V7TP5HPZUT60NGETTCOWFC299PQKE8VVGI6NRTKEKXMS6YXK5INJHL4W8XW2A269VR5OHMJDOE1HT1PUMYGUJA4PZCL21VN7UUJ7TF2P968OH7LRB2RR5ML6Y5XU2Y0QC' where id=44; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='NKL5I1GO2TCCE7RR4QIHHIX3QP0NX2BZXAD6DBSWXY2JJTWI63HF2C6P317LOR0CN6NIVMITIQ97NC06DJINN1UBDSAGHK1B3ZXW3N0YG8NH4OGEA9GINKXND5QQW00RE80DDCZ5658TIQQ3I0QTMZ24EIPN8GRY3L4WW2DJ44TJ2OUF2Y6YPE0469HYDISL1J3NGKMPB6GDSL01PXHSGT3E3P9O4QAT4RMR925FJRH3UJJM7LAAMAXH95TK1J0PC' where id=44; -update noar ti set v3='NKL5I1GO2TCCE7RR4QIHHIX3QP0NX2BZXAD6DBSWXY2JJTWI63HF2C6P317LOR0CN6NIVMITIQ97NC06DJINN1UBDSAGHK1B3ZXW3N0YG8NH4OGEA9GINKXND5QQW00RE80DDCZ5658TIQQ3I0QTMZ24EIPN8GRY3L4WW2DJ44TJ2OUF2Y6YPE0469HYDISL1J3NGKMPB6GDSL01PXHSGT3E3P9O4QAT4RMR925FJRH3UJJM7LAAMAXH95TK1J0PC' where id=44; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='QJLVI60CSI69F3T7M9J6LRGMMEF7QBZ140K30QJ6PCHLSWCP5PLFDNCLFY5GUVZYBJ26I3P4D8C7LF5QYD3XGY6HNMP3UKCLXV6IRN6WA50NIUDJ1K0V60YPORJCJUFURIPD5MA4SQWAQQ0B62M1GHJKEXMFMFAUE1VH2UEJ98G9075NEITENA5V94BBVPQ7DIGOTVDPEM6UN8OYY0L0LXDTYQO2BFO47XEO6U5SS0V4BMH8FTK537Z2JCZYEVFB0' where id=45; -update noar ti set v0='QJLVI60CSI69F3T7M9J6LRGMMEF7QBZ140K30QJ6PCHLSWCP5PLFDNCLFY5GUVZYBJ26I3P4D8C7LF5QYD3XGY6HNMP3UKCLXV6IRN6WA50NIUDJ1K0V60YPORJCJUFURIPD5MA4SQWAQQ0B62M1GHJKEXMFMFAUE1VH2UEJ98G9075NEITENA5V94BBVPQ7DIGOTVDPEM6UN8OYY0L0LXDTYQO2BFO47XEO6U5SS0V4BMH8FTK537Z2JCZYEVFB0' where id=45; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='0MED4MORQR2O4BOE2U9MH6LFRAIEP1HTR4MLPLYBRV3FZLH57T4O4XU8C3VWRILWECMJJZSYLVD9YAIG4OVOK06LUY002LNSLBMGVGDRHVE1R7G3I4H3J2SMWPHUV3WEMPDB0DSW72EFDQW1AEGV2GLP2KO7LZVPYDCSG0P69LZPLY7DPRPXSXOS2Z3OVXC8RX1X5EBFKRRSP9EFITVST68QO991P9GE0S19MUSDR23CLMQYP1HP47J29WVP2I1CA' where id=45; -update noar ti set v1='0MED4MORQR2O4BOE2U9MH6LFRAIEP1HTR4MLPLYBRV3FZLH57T4O4XU8C3VWRILWECMJJZSYLVD9YAIG4OVOK06LUY002LNSLBMGVGDRHVE1R7G3I4H3J2SMWPHUV3WEMPDB0DSW72EFDQW1AEGV2GLP2KO7LZVPYDCSG0P69LZPLY7DPRPXSXOS2Z3OVXC8RX1X5EBFKRRSP9EFITVST68QO991P9GE0S19MUSDR23CLMQYP1HP47J29WVP2I1CA' where id=45; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='BIG3O7ZSKC73JJW8LEXUOOEU3HZX9F3GTIXC08U7QQOGA74LOEUTY1T738SV9TAHINHU6JKK5RPW80NIXC9RHN6YHRJ1YBV8LEK4XARWJM3IMXEJP6PWB7WVB7EMDZKK42DSQ2NG7HGL6IX04EBK1HI6JJ16GW452PA6YAEU6H61HQ9T7LZPVGTBP6NMYKN7KPXOQKBOYG06LJ6WPSMN2S2NFKCDC1KDZD6ILJ83HSQSF5YCZDEWN3D5EC9AGYUW0' where id=45; -update noar ti set v2='BIG3O7ZSKC73JJW8LEXUOOEU3HZX9F3GTIXC08U7QQOGA74LOEUTY1T738SV9TAHINHU6JKK5RPW80NIXC9RHN6YHRJ1YBV8LEK4XARWJM3IMXEJP6PWB7WVB7EMDZKK42DSQ2NG7HGL6IX04EBK1HI6JJ16GW452PA6YAEU6H61HQ9T7LZPVGTBP6NMYKN7KPXOQKBOYG06LJ6WPSMN2S2NFKCDC1KDZD6ILJ83HSQSF5YCZDEWN3D5EC9AGYUW0' where id=45; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='OUYC9DKTGWZGFT4A2NRBER81EVCO2O3UA8VOUMDQJDSO52KN420UL6NE4PK94H9H62WM6THTLWK4QZXSKLVCZHRTUJ5S0FUHRKWTEFEP4FU62F1BYF23U2UQS091VV8AAACCECK0XFK85O1SHU03GZKA0TFODE1EFBOC3HTA42IIA3IS8W0YRUMPT4EQI4KI4V4I9T79ZV200J4O8IURWZHF070JWBUR702E9SEPNZ9Z95CVYHU10P1O0AMLGA9Y9' where id=45; -update noar ti set v3='OUYC9DKTGWZGFT4A2NRBER81EVCO2O3UA8VOUMDQJDSO52KN420UL6NE4PK94H9H62WM6THTLWK4QZXSKLVCZHRTUJ5S0FUHRKWTEFEP4FU62F1BYF23U2UQS091VV8AAACCECK0XFK85O1SHU03GZKA0TFODE1EFBOC3HTA42IIA3IS8W0YRUMPT4EQI4KI4V4I9T79ZV200J4O8IURWZHF070JWBUR702E9SEPNZ9Z95CVYHU10P1O0AMLGA9Y9' where id=45; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='PB6DJX0JC33IS056GK6KS818CFG0U90X8WVOUM4WYRM7RZXFZWM91LA9VF5LWY0ERXO349YZM8EUF7Y7J6DWDDZA4AANVSO5OVQL1GBQMOLL5V80V4TFLBQNN2X7YWOW5IY6FYWR4GK0XXG7NQ64P89YYADE3V27BWVJ9REG4PD33XEX4DINBT64RSDPO476HGLKW3RNH4SFCC3CL95A14DNWE17RSNBIX8U3590R7GXN2VB7LIG1A3H9T9Y58TCL' where id=46; -update noar ti set v0='PB6DJX0JC33IS056GK6KS818CFG0U90X8WVOUM4WYRM7RZXFZWM91LA9VF5LWY0ERXO349YZM8EUF7Y7J6DWDDZA4AANVSO5OVQL1GBQMOLL5V80V4TFLBQNN2X7YWOW5IY6FYWR4GK0XXG7NQ64P89YYADE3V27BWVJ9REG4PD33XEX4DINBT64RSDPO476HGLKW3RNH4SFCC3CL95A14DNWE17RSNBIX8U3590R7GXN2VB7LIG1A3H9T9Y58TCL' where id=46; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='F83WA3EXCAFGQ1J7S9CZTE399YABHZODSXR0D506Z2KEWZ7982MHMU8JTC6GCITMDVUG1ZQHEQT7MQHLVHKNE5719S6SUSLKZ9JGR224GHBZIVTD4AM09YISFRK1TLN7LMJSDIETBZRNR7U91Q13PP4V42MC6S0JSZRNAF83CN37Q2C4Y8O8TMJBICTR0ERJ4523EAJ3LKL6BFDVQVPUVWF0D5XABZXR75Z98NHSOELQ4U8XMX1727847VE2NNQQG' where id=46; -update noar ti set v1='F83WA3EXCAFGQ1J7S9CZTE399YABHZODSXR0D506Z2KEWZ7982MHMU8JTC6GCITMDVUG1ZQHEQT7MQHLVHKNE5719S6SUSLKZ9JGR224GHBZIVTD4AM09YISFRK1TLN7LMJSDIETBZRNR7U91Q13PP4V42MC6S0JSZRNAF83CN37Q2C4Y8O8TMJBICTR0ERJ4523EAJ3LKL6BFDVQVPUVWF0D5XABZXR75Z98NHSOELQ4U8XMX1727847VE2NNQQG' where id=46; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='VF2FHUXPTMJCPPC6ND5MY7L1YPUXSV4NWLQOE0COYQJ09WA940LR6V0M2FPD7LYW20UELPDE8BMUOKR1THQS1X1YBCO3KJW1C60K16ADIGLM05OEGLB5DSUZT3SDFQI2P3OQ4ONO95FI5UPLZE8ZVRRTVJQDUT6LEVFNRLMW67I2KVXCDU27L2CPS3KDEKRTFC7HIXEV6LFAYU74CCI7DAM2U76IX075N8HGAX8U8ZOWWXT10DNPI6LCY12LXO38W' where id=46; -update noar ti set v2='VF2FHUXPTMJCPPC6ND5MY7L1YPUXSV4NWLQOE0COYQJ09WA940LR6V0M2FPD7LYW20UELPDE8BMUOKR1THQS1X1YBCO3KJW1C60K16ADIGLM05OEGLB5DSUZT3SDFQI2P3OQ4ONO95FI5UPLZE8ZVRRTVJQDUT6LEVFNRLMW67I2KVXCDU27L2CPS3KDEKRTFC7HIXEV6LFAYU74CCI7DAM2U76IX075N8HGAX8U8ZOWWXT10DNPI6LCY12LXO38W' where id=46; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='1EB42JNSJZPAFH6Z91LNXM3U5AHA7KOW5QKPR1Y18HTDDJWRQIB4DE9A0BI8D77ZAS49I2Y0YV0U35XT5DRAM5DI644XMIFBLL6X7D0XE2E9IXSQUS4WI340PH3RUYCC7QPIJNH58XTKG0PFD3F2OZ43CASBUT9XDR9SA4ESDBDG6GUVZOQGV9ZF7GZ91HQV3ZPI9RCLUSKYJ4KRR1IPM3EZW9X9VD7ID06EVB9MR60WQF2K94VQS4V6FLP67EFE4' where id=46; -update noar ti set v3='1EB42JNSJZPAFH6Z91LNXM3U5AHA7KOW5QKPR1Y18HTDDJWRQIB4DE9A0BI8D77ZAS49I2Y0YV0U35XT5DRAM5DI644XMIFBLL6X7D0XE2E9IXSQUS4WI340PH3RUYCC7QPIJNH58XTKG0PFD3F2OZ43CASBUT9XDR9SA4ESDBDG6GUVZOQGV9ZF7GZ91HQV3ZPI9RCLUSKYJ4KRR1IPM3EZW9X9VD7ID06EVB9MR60WQF2K94VQS4V6FLP67EFE4' where id=46; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='AXWTUPJFKOTIA2IGWM4MX9SBKLG9Y2GM0NBE9DAISHQOS4I5ZYXRNXZ631JY9S48RY2IRQCBHF457P1G20HXOUHGYN54U06QE9KHLVDIEWR1IF34B12VVM5CUZLDYN5W6BM20EGYUJRV9S5AWO5WU7D14D5WOW7P0FPG9WXZLXPUPNTKS4VXESSISW6BM1P5UDIUGBII7370S9UJFXF4P0SA55RK9Y47P92FAE6QKG2HS528DU4VSL3H1N19MV5RB' where id=47; -update noar ti set v0='AXWTUPJFKOTIA2IGWM4MX9SBKLG9Y2GM0NBE9DAISHQOS4I5ZYXRNXZ631JY9S48RY2IRQCBHF457P1G20HXOUHGYN54U06QE9KHLVDIEWR1IF34B12VVM5CUZLDYN5W6BM20EGYUJRV9S5AWO5WU7D14D5WOW7P0FPG9WXZLXPUPNTKS4VXESSISW6BM1P5UDIUGBII7370S9UJFXF4P0SA55RK9Y47P92FAE6QKG2HS528DU4VSL3H1N19MV5RB' where id=47; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='U5HRVCAYKV0YX0Z7UFWFRFMGQZOL74CRFPA12V5RQHAOAB8WHT2GQTRWBBNMZ9ZEKM7P5CCGTNBYY5N3OHM520HNB01TRJBS9JRG6ZBGWEWNKPSNHJHB1B0Q4GWCDHLO24NMGC8KFGXKC7F8CIOA33PQODFSZCBLM55BE3P41S9COGW04H0KC767XWMUWDS879SA7MRDMXA09I0IUCXWZUWDDB5FP3Z3LXXYQ1JCDGXE9RQNO8PFGSU2GYBTPAXBU' where id=47; -update noar ti set v1='U5HRVCAYKV0YX0Z7UFWFRFMGQZOL74CRFPA12V5RQHAOAB8WHT2GQTRWBBNMZ9ZEKM7P5CCGTNBYY5N3OHM520HNB01TRJBS9JRG6ZBGWEWNKPSNHJHB1B0Q4GWCDHLO24NMGC8KFGXKC7F8CIOA33PQODFSZCBLM55BE3P41S9COGW04H0KC767XWMUWDS879SA7MRDMXA09I0IUCXWZUWDDB5FP3Z3LXXYQ1JCDGXE9RQNO8PFGSU2GYBTPAXBU' where id=47; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='SS4H5RR972GX6AC6L42C5NSQK1EPB2RZ3339ZIP8S6LBDZX9LNKF5D6DAX8EFV0HW3WCI7E4HPPYP3Q1GJRCD2F98FAR4D2526LBFVWF5F3X546B8C82D6KTC633L1BSWCKRF4MYFWOW4M9NVRAYQILXAS4XZ206T3H3K1R9V6EAH79XM6T1KJPH8N2CGY2G9JJM7ZVTKMWXXWWUMZG737VKB1441EA53REMQI9303XF96GS7JQRHAVMBCKFL15AE' where id=47; -update noar ti set v2='SS4H5RR972GX6AC6L42C5NSQK1EPB2RZ3339ZIP8S6LBDZX9LNKF5D6DAX8EFV0HW3WCI7E4HPPYP3Q1GJRCD2F98FAR4D2526LBFVWF5F3X546B8C82D6KTC633L1BSWCKRF4MYFWOW4M9NVRAYQILXAS4XZ206T3H3K1R9V6EAH79XM6T1KJPH8N2CGY2G9JJM7ZVTKMWXXWWUMZG737VKB1441EA53REMQI9303XF96GS7JQRHAVMBCKFL15AE' where id=47; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='OUX8FNHCWK1ZK9IHMWM8RMU1N006C2AFDN17KHGJJSOD8ZL3K7R6FWR8LIVSR0DLGHIFR4SO6EMXXOPZ3RZSEDQ70JJIW0COS50W4MIPUZ4PFZUHNDDBP3PFCMEQQIXUMN0E82BPR2DTMQEBLAZA7ON3QX7V612H4UO6H9ZK1Q9IQT4G95APIRXDNNLFZQTOZPWNNNJ67MHTRMN2T49PTZH9H55GXEE4PY6I551NZAVD5NRVOMXZ1MRQNWC2RY6W7' where id=47; -update noar ti set v3='OUX8FNHCWK1ZK9IHMWM8RMU1N006C2AFDN17KHGJJSOD8ZL3K7R6FWR8LIVSR0DLGHIFR4SO6EMXXOPZ3RZSEDQ70JJIW0COS50W4MIPUZ4PFZUHNDDBP3PFCMEQQIXUMN0E82BPR2DTMQEBLAZA7ON3QX7V612H4UO6H9ZK1Q9IQT4G95APIRXDNNLFZQTOZPWNNNJ67MHTRMN2T49PTZH9H55GXEE4PY6I551NZAVD5NRVOMXZ1MRQNWC2RY6W7' where id=47; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='MB5H1GDPS1VCHQ9PW1EDK84A367DLALIB92THATAP0MY21UZSLKIQMVALPITBWYZ1T6DKOMNMDJ26BP7P29QOFVY0Q1QGQ1DS4JPNKH5IJO1I1YRV3SSWBTFRF14ITYQD7FU7PV0IGUJ1A21XP8CF3ZJ9T7QB5T9OOAQPGJ0KVOM6GYJ7WA369TOV7TDRGQU1GEFYLSYRIWTTGCN6C07EQAYX9MF399JCZ3OBTDH9WDKFERXJGO95DAAIPAF0H4YK' where id=48; -update noar ti set v0='MB5H1GDPS1VCHQ9PW1EDK84A367DLALIB92THATAP0MY21UZSLKIQMVALPITBWYZ1T6DKOMNMDJ26BP7P29QOFVY0Q1QGQ1DS4JPNKH5IJO1I1YRV3SSWBTFRF14ITYQD7FU7PV0IGUJ1A21XP8CF3ZJ9T7QB5T9OOAQPGJ0KVOM6GYJ7WA369TOV7TDRGQU1GEFYLSYRIWTTGCN6C07EQAYX9MF399JCZ3OBTDH9WDKFERXJGO95DAAIPAF0H4YK' where id=48; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='WS7R7FP866JN1TTU7QFKA4URDL1IS3ENK8PL5YPOGILQ76VUFO9Y362VTAHA19J3VM4WMZON3U0KU80KCEL6G3AR9HXHFPJ98RP3YAD9IEZBTK7FU8L512R3Q3JO2EAFYLY7RONZTGZ44DF66IGNA0E2NKF8GBELZIRS55I7VOD7CTM3M60PDIACWRZAOA61NHC8BCWI8CDROUYKK0OHYGX18O71HZLHON3U3TAGPB9MJN3CCCSRW0EF0WS7H18HD' where id=48; -update noar ti set v1='WS7R7FP866JN1TTU7QFKA4URDL1IS3ENK8PL5YPOGILQ76VUFO9Y362VTAHA19J3VM4WMZON3U0KU80KCEL6G3AR9HXHFPJ98RP3YAD9IEZBTK7FU8L512R3Q3JO2EAFYLY7RONZTGZ44DF66IGNA0E2NKF8GBELZIRS55I7VOD7CTM3M60PDIACWRZAOA61NHC8BCWI8CDROUYKK0OHYGX18O71HZLHON3U3TAGPB9MJN3CCCSRW0EF0WS7H18HD' where id=48; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='OURRGQBAB4425PAAVQDZCSF3DEWUW1CVBB3C7UCCKJSWRR1D4IFS7P8UMI59MIO6YOAH3AJUAHBT05416W8WH5501TFITBJGRWQM61Q4IND4GH8L85ZBULJQOX54XT51AXUASK179GJRJWTIH8MXFORV4Z9Y9DIBBDF6VC5MWBCOVBLCQU6WX8PGP59B4G7HVT1TOA2ULTNJX5OAP6WVU92RI1M47SIHHPI6FV3F68KRO27T572PN5NIGL6TOG2BO' where id=48; -update noar ti set v2='OURRGQBAB4425PAAVQDZCSF3DEWUW1CVBB3C7UCCKJSWRR1D4IFS7P8UMI59MIO6YOAH3AJUAHBT05416W8WH5501TFITBJGRWQM61Q4IND4GH8L85ZBULJQOX54XT51AXUASK179GJRJWTIH8MXFORV4Z9Y9DIBBDF6VC5MWBCOVBLCQU6WX8PGP59B4G7HVT1TOA2ULTNJX5OAP6WVU92RI1M47SIHHPI6FV3F68KRO27T572PN5NIGL6TOG2BO' where id=48; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='M2GZYWGU6K2Z1BRUCDWQM4MX6YZ0VHVWKMVIH3YTKBQNXUYGIVEYKCIIA80205LX9OYPVGWFDOWUQBQENQQCT0CDEJ59HVFTTG7J4EG455TAXBDIHSZMZWKK9AZ6118VHSOGVEINMWWWWZUGGM79GAT5PZKI1WR8EA6J24XGGCOVKLK77UWA8LJ91GZLFEI0F0QUVBAGX4125SAJXK2HBKJMVD165V4W8DCLS3UCVWZXPPFDO6QBWHDXRKFKALR86' where id=48; -update noar ti set v3='M2GZYWGU6K2Z1BRUCDWQM4MX6YZ0VHVWKMVIH3YTKBQNXUYGIVEYKCIIA80205LX9OYPVGWFDOWUQBQENQQCT0CDEJ59HVFTTG7J4EG455TAXBDIHSZMZWKK9AZ6118VHSOGVEINMWWWWZUGGM79GAT5PZKI1WR8EA6J24XGGCOVKLK77UWA8LJ91GZLFEI0F0QUVBAGX4125SAJXK2HBKJMVD165V4W8DCLS3UCVWZXPPFDO6QBWHDXRKFKALR86' where id=48; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='AO8D9J3S7JLAIEP1567XBBM1YRUQ7R9TTBOOUCNW1WWEBVB43X0CU7VO90UC42FQUATL201RCV6QF476ELOBZEFI2J7RJZ94OR9CFTJZ1GZRJ0BO0MFLYIQD8YQ79NTMYM6P768O0GENJT4HQTMMITS5Z6TE1HY1EYTH12C0WIXI3H10BDQHOMQH9XPWN7PKBNRKVSEDQBANGB90IARLZNRP77IBID3YRG3LZUAF12DY7HJ1CCK05TR5PVGPFTZ03' where id=49; -update noar ti set v0='AO8D9J3S7JLAIEP1567XBBM1YRUQ7R9TTBOOUCNW1WWEBVB43X0CU7VO90UC42FQUATL201RCV6QF476ELOBZEFI2J7RJZ94OR9CFTJZ1GZRJ0BO0MFLYIQD8YQ79NTMYM6P768O0GENJT4HQTMMITS5Z6TE1HY1EYTH12C0WIXI3H10BDQHOMQH9XPWN7PKBNRKVSEDQBANGB90IARLZNRP77IBID3YRG3LZUAF12DY7HJ1CCK05TR5PVGPFTZ03' where id=49; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='XCKZM3OD2Z7IVD51S1UZKBLJOBHZ21CA37Z0ZLXXXU9WWPGHHKF8B7WIISUTNZ9XV48UMBS92BGSUKW1G1K0AEND4PEC7X5TUIGYOSOTUELEV5GRAO686I6SLPHO3HDM0JX9NO3BRNE44IZ9EKY0VR225LWRSLP8Z6OZTGN2O7BAD9DBRRS8VZ3O87ZDZO8X2UAS7UCFUF8T7PZ0BSAU2T4X91N9EXA8FDYQSNGKRMJOC1Y0IJA6Q6P8H1MBRQTLZ' where id=49; -update noar ti set v1='XCKZM3OD2Z7IVD51S1UZKBLJOBHZ21CA37Z0ZLXXXU9WWPGHHKF8B7WIISUTNZ9XV48UMBS92BGSUKW1G1K0AEND4PEC7X5TUIGYOSOTUELEV5GRAO686I6SLPHO3HDM0JX9NO3BRNE44IZ9EKY0VR225LWRSLP8Z6OZTGN2O7BAD9DBRRS8VZ3O87ZDZO8X2UAS7UCFUF8T7PZ0BSAU2T4X91N9EXA8FDYQSNGKRMJOC1Y0IJA6Q6P8H1MBRQTLZ' where id=49; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='HX8HWM57ZA4REZHCZ5QIFX3EHDZ5VOQALTPQ9RGTUREZD61Q2EE71ARF7Q070OECZOR74YX0VMXQ8OUOWG5U1JYJXRKLFY9OKJ1W5G19WZN3RYNTLBJTFWV66CCRGWCDS984LVZ2MX00PFU5O1PEVR6NZEDN91BYU3YNR88HI3VZ1L926IYZF7UTJOUJ7J3I6LT8KAOTF0EJXK9K2MYTAHJM430XVQ3CX1Q8D59FBWJCBBYD285SMF9MGHOZUMJX2' where id=49; -update noar ti set v2='HX8HWM57ZA4REZHCZ5QIFX3EHDZ5VOQALTPQ9RGTUREZD61Q2EE71ARF7Q070OECZOR74YX0VMXQ8OUOWG5U1JYJXRKLFY9OKJ1W5G19WZN3RYNTLBJTFWV66CCRGWCDS984LVZ2MX00PFU5O1PEVR6NZEDN91BYU3YNR88HI3VZ1L926IYZF7UTJOUJ7J3I6LT8KAOTF0EJXK9K2MYTAHJM430XVQ3CX1Q8D59FBWJCBBYD285SMF9MGHOZUMJX2' where id=49; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='GNK7N79NMO26ME4T9KR9W4L8G8252XOYJVKGG3UF8K0CXS9YKT7V75YBZHMDSL8XVGGLI50SSDKX0MPDVRR91YGM3YWKOBI9ZKDZ6YLMX6XST30TX98XKUZHOE2PIR4P3ND98UAVQ0N1TDXZ8979OCOG9CZYVQMT3AC72VQZ9SN78WW41GEKAODMR7FI1DXR91AIBOAQ0VS6QEIO5Q3EQHJKR3QD312WC3OQ5RHX45ELD10QNZFLR81V8DR8IJ8WD' where id=49; -update noar ti set v3='GNK7N79NMO26ME4T9KR9W4L8G8252XOYJVKGG3UF8K0CXS9YKT7V75YBZHMDSL8XVGGLI50SSDKX0MPDVRR91YGM3YWKOBI9ZKDZ6YLMX6XST30TX98XKUZHOE2PIR4P3ND98UAVQ0N1TDXZ8979OCOG9CZYVQMT3AC72VQZ9SN78WW41GEKAODMR7FI1DXR91AIBOAQ0VS6QEIO5Q3EQHJKR3QD312WC3OQ5RHX45ELD10QNZFLR81V8DR8IJ8WD' where id=49; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='37HT7BYR78EERPH9RVTTIOBKTLDDE9S7WVA8ZUA76MVVW2Q10E6AT0BNWCSDFB0B0HJ802F2LN6CGQJ0DU6DJ8G37WONMW0KHOFJQOVHT3YQN3FR3IFT6L90958O9AMBASZ2CEJDJT8GV0XQ67ZYC7T6PJHYS7OSITUI1126TMFUW3ADSJZBKQKJQR5B2PGVABS2V62ZKZRQDC48YAV2HV7XOGJRQQAF736COH274QB9Z0Y6M9GCQHFP9PXWRNNMH' where id=50; -update noar ti set v0='37HT7BYR78EERPH9RVTTIOBKTLDDE9S7WVA8ZUA76MVVW2Q10E6AT0BNWCSDFB0B0HJ802F2LN6CGQJ0DU6DJ8G37WONMW0KHOFJQOVHT3YQN3FR3IFT6L90958O9AMBASZ2CEJDJT8GV0XQ67ZYC7T6PJHYS7OSITUI1126TMFUW3ADSJZBKQKJQR5B2PGVABS2V62ZKZRQDC48YAV2HV7XOGJRQQAF736COH274QB9Z0Y6M9GCQHFP9PXWRNNMH' where id=50; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='M2UYZV7J77TIQRXJXXOIV7AHONHGSGR85FSDETGPJAGIN4WP7WA4INPXCC1UKW38MYWIMPZOQVM7BQJXKVBOB9LRVL2FNAKP3U6SKTVQ4VAW2PNKRNBMJ9SXLJNBWBUJEUXFPL30SXBW2PVKII5AGTPT9MGL2NXMCGX23PRU5O0769FS4Z9AYQ9CCWKZ4FB3H265QPRGL2JZ6DG4U4WJUIA5TAJB439F2APCSHVGCUV0SPVUGUADCS33MIZTBHM3J' where id=50; -update noar ti set v1='M2UYZV7J77TIQRXJXXOIV7AHONHGSGR85FSDETGPJAGIN4WP7WA4INPXCC1UKW38MYWIMPZOQVM7BQJXKVBOB9LRVL2FNAKP3U6SKTVQ4VAW2PNKRNBMJ9SXLJNBWBUJEUXFPL30SXBW2PVKII5AGTPT9MGL2NXMCGX23PRU5O0769FS4Z9AYQ9CCWKZ4FB3H265QPRGL2JZ6DG4U4WJUIA5TAJB439F2APCSHVGCUV0SPVUGUADCS33MIZTBHM3J' where id=50; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='FP83NGEV9S1FG0GW9R022EWXKFSLJ5ERTIEK2KO05FGPNPUAVYGNKNNQLVPYXS2C988FHSVGJ3UGXJXTE1MAC8DZAAQ6XM71XR2HHFSYQ4DJ3EHWKSTRU72XGAU3A1Z95J1UL4CYFM0DKZDCYCKXOZETZX37EPCZ1JOTAMLFM0BUQC4BKNGUK5K82FKVXR7Z9RN8G1UQKF2A7MHV22PZXYERT0ICT3QD9C1JFN2XMROQPEAONYCABVRR8HNF6KHEN' where id=50; -update noar ti set v2='FP83NGEV9S1FG0GW9R022EWXKFSLJ5ERTIEK2KO05FGPNPUAVYGNKNNQLVPYXS2C988FHSVGJ3UGXJXTE1MAC8DZAAQ6XM71XR2HHFSYQ4DJ3EHWKSTRU72XGAU3A1Z95J1UL4CYFM0DKZDCYCKXOZETZX37EPCZ1JOTAMLFM0BUQC4BKNGUK5K82FKVXR7Z9RN8G1UQKF2A7MHV22PZXYERT0ICT3QD9C1JFN2XMROQPEAONYCABVRR8HNF6KHEN' where id=50; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='YEV58MS7K3YGU404NGCT58AWBHF392C5LBUJGHP9PZSB9IIQAFBH8S74TQ6HSMO4NZDULW4H5PKMZ2KUTESKFC93GRP1O83QSG85ILG4WPZNW778PTQD8GHO2ILAVQX1T72GXYXE46ELH5JOQOHB1IJMIXQ7SQMB38QR58PFFTGOT626JM1C4TWN5RROFMEPDENLHTD0PONBFP6PGQQCLWUNGW3KCHM9PBWC4QYSXOVWN8HCHIYWVT4S9MQZXZXTM' where id=50; -update noar ti set v3='YEV58MS7K3YGU404NGCT58AWBHF392C5LBUJGHP9PZSB9IIQAFBH8S74TQ6HSMO4NZDULW4H5PKMZ2KUTESKFC93GRP1O83QSG85ILG4WPZNW778PTQD8GHO2ILAVQX1T72GXYXE46ELH5JOQOHB1IJMIXQ7SQMB38QR58PFFTGOT626JM1C4TWN5RROFMEPDENLHTD0PONBFP6PGQQCLWUNGW3KCHM9PBWC4QYSXOVWN8HCHIYWVT4S9MQZXZXTM' where id=50; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='L02SLSQNFP6MNF48RGP7WVWH0TWBROBHU26EP167Q5BUMEZQHDDJZ0G5TVDM0QHA9ZV4Z0OB96NBPQOGL30EBXWX2Z30AF2F9W3JPQXLR9SAPB0YIHMPK9NPB1MGL9SQU1OPKRHFJU2GNBWVQQRG2IYPX18UITGOLZKZH5SHDBH3UTRZ54INUXBL9SK7KL83VSH0D6OSX6RHAJ9JZZJW9JJ3G5HUZE4TWNJS5NNLOQ2OTSOVO3QB015LLWAHKJ8T2' where id=51; -update noar ti set v0='L02SLSQNFP6MNF48RGP7WVWH0TWBROBHU26EP167Q5BUMEZQHDDJZ0G5TVDM0QHA9ZV4Z0OB96NBPQOGL30EBXWX2Z30AF2F9W3JPQXLR9SAPB0YIHMPK9NPB1MGL9SQU1OPKRHFJU2GNBWVQQRG2IYPX18UITGOLZKZH5SHDBH3UTRZ54INUXBL9SK7KL83VSH0D6OSX6RHAJ9JZZJW9JJ3G5HUZE4TWNJS5NNLOQ2OTSOVO3QB015LLWAHKJ8T2' where id=51; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='TXPG9ZZWW0R5EWHR1AWDMBAYHOF2JEYO1Z28SQ21V1ECQFW9L20ITYB0BOPWA6T9XEY56FTQWBPCZZDQMZ3XOCRWH6H0C7Z4L879UA8B1KLQK0JOMLK0V67HO1D181Q1CAAPEXNQ0ZA9IZXX8XBASO844UN3RGXCTA1YU53AE6T37TQ383UZPWTGBAZ8GHZ5MZWJHQ4I5GR1DLPDHW8XC6OA04R6BTBIEHLSYXYZX1X7QNI1R66QAW85FZWP4SYSX' where id=51; -update noar ti set v1='TXPG9ZZWW0R5EWHR1AWDMBAYHOF2JEYO1Z28SQ21V1ECQFW9L20ITYB0BOPWA6T9XEY56FTQWBPCZZDQMZ3XOCRWH6H0C7Z4L879UA8B1KLQK0JOMLK0V67HO1D181Q1CAAPEXNQ0ZA9IZXX8XBASO844UN3RGXCTA1YU53AE6T37TQ383UZPWTGBAZ8GHZ5MZWJHQ4I5GR1DLPDHW8XC6OA04R6BTBIEHLSYXYZX1X7QNI1R66QAW85FZWP4SYSX' where id=51; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='90I06DOQD2WMCSHO3DMYUX0JX8E13HRTF4G00Z6P2J33BLLUB4105474BIDK426DO8NLVS8V17G7V9RX9AH292GF4BUZNEECW6Z496HWG5U7LXEFEW42WA3QV5CKSQNVIOFYZVZUD1MRU82J5WPNLUFIBAW4C2APG5LR3SR0WKN6RWS83YM23FXNWPBUB6OU49EKP9M5B64NI8QABYG1D8V4CROHCQRZMXF5BT23YLS5RGVWCNOHZ3Q4VNGGMKJQR' where id=51; -update noar ti set v2='90I06DOQD2WMCSHO3DMYUX0JX8E13HRTF4G00Z6P2J33BLLUB4105474BIDK426DO8NLVS8V17G7V9RX9AH292GF4BUZNEECW6Z496HWG5U7LXEFEW42WA3QV5CKSQNVIOFYZVZUD1MRU82J5WPNLUFIBAW4C2APG5LR3SR0WKN6RWS83YM23FXNWPBUB6OU49EKP9M5B64NI8QABYG1D8V4CROHCQRZMXF5BT23YLS5RGVWCNOHZ3Q4VNGGMKJQR' where id=51; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='XSVOFDOIVFWQXX8CTHTBUFDSPDAGU8OMD18HUFYEY4TFA04CSAMLQZGHSO29VDQPQTKTP1JQGGHWJJNH1K30633EZP20DDPXD7B6SLPNACGV1U6CVRZX76FA6OVWLP1ZQ0UNG34NHL7X8L8IPK03YT9TN24K0C5F5XWY9LIJPOD70G4XJBXZBZLWDCHC15BY6VG4O7H1WCH90F06YHJ1KXDQW7S52BBETH613H6RLU5MPVT2VAVJYWMRE7F9G6F3E' where id=51; -update noar ti set v3='XSVOFDOIVFWQXX8CTHTBUFDSPDAGU8OMD18HUFYEY4TFA04CSAMLQZGHSO29VDQPQTKTP1JQGGHWJJNH1K30633EZP20DDPXD7B6SLPNACGV1U6CVRZX76FA6OVWLP1ZQ0UNG34NHL7X8L8IPK03YT9TN24K0C5F5XWY9LIJPOD70G4XJBXZBZLWDCHC15BY6VG4O7H1WCH90F06YHJ1KXDQW7S52BBETH613H6RLU5MPVT2VAVJYWMRE7F9G6F3E' where id=51; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='L0ZPPT7SS7BAVC7TR9C68FWR0WAA78EN1SX4R31ZI74CRBA4L35LEZZEJVDIZ0SJZBIRDBF2RA1RE2U5A5O1UCP9L7EBL8W7A3ZQ4ES2XZ83ZQW16YQUA1UDOFB3ZUHLEJVAOR54S3QBZQANO20I9KJCXJAS5YT82MTXN1CIGWH2JVIYHOB5V0BEB5MLQ0HHG6IXEI5GONM6YZA01QHJR8MLEPRVNM8DBUYVQ473KB54GF5LO35OG0UTT4Y05DLNL' where id=52; -update noar ti set v0='L0ZPPT7SS7BAVC7TR9C68FWR0WAA78EN1SX4R31ZI74CRBA4L35LEZZEJVDIZ0SJZBIRDBF2RA1RE2U5A5O1UCP9L7EBL8W7A3ZQ4ES2XZ83ZQW16YQUA1UDOFB3ZUHLEJVAOR54S3QBZQANO20I9KJCXJAS5YT82MTXN1CIGWH2JVIYHOB5V0BEB5MLQ0HHG6IXEI5GONM6YZA01QHJR8MLEPRVNM8DBUYVQ473KB54GF5LO35OG0UTT4Y05DLNL' where id=52; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='PWI8CZ9UWFWBDES4AVY04QUTPTF2QC3KERXSNWUJS1U636EP6KEEOTXSDLW4QVF7Z662Z3V7XRTJEA4PMQ1NAH8H3OLEUVQ7IAKMJD87286B2LVQQ63TD6YVG2H1XFY5TPLEVBUJYGK7IL7JI140LJ3Z110LQ1YZPIH0NC63DM1ZIJI9FY43P9NXYF75XJHPVQMPWTD1AVRAB8O8SRZ9KICCNQ7X03LVYWOV7D4VKB1ISDAXFLOVCSR4P875AQAWJ' where id=52; -update noar ti set v1='PWI8CZ9UWFWBDES4AVY04QUTPTF2QC3KERXSNWUJS1U636EP6KEEOTXSDLW4QVF7Z662Z3V7XRTJEA4PMQ1NAH8H3OLEUVQ7IAKMJD87286B2LVQQ63TD6YVG2H1XFY5TPLEVBUJYGK7IL7JI140LJ3Z110LQ1YZPIH0NC63DM1ZIJI9FY43P9NXYF75XJHPVQMPWTD1AVRAB8O8SRZ9KICCNQ7X03LVYWOV7D4VKB1ISDAXFLOVCSR4P875AQAWJ' where id=52; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='CI0801VOLLZWCYYZVBL3M0PDXTMXOOHTRZWFNF7XSIZRL6E8U22KU09WH08Q9FBEJG9M9QY9NA89G3LBB8JAOUPO1LI1ZX49BMV6P7YQHDBL8G9ABZISV2BTA0G7HOOT6UKIM67JOFLVDQ137JM5OUPQLLSPX1Z4SWV2OD3L6LAPTWFF7QY9YTPVWRWDEBRWC2GZ5V52J3JUAWGF1DG93ODJE09FMZ8YEZ7U13HNUA60SX1BTD1SJS094E07FPX33' where id=52; -update noar ti set v2='CI0801VOLLZWCYYZVBL3M0PDXTMXOOHTRZWFNF7XSIZRL6E8U22KU09WH08Q9FBEJG9M9QY9NA89G3LBB8JAOUPO1LI1ZX49BMV6P7YQHDBL8G9ABZISV2BTA0G7HOOT6UKIM67JOFLVDQ137JM5OUPQLLSPX1Z4SWV2OD3L6LAPTWFF7QY9YTPVWRWDEBRWC2GZ5V52J3JUAWGF1DG93ODJE09FMZ8YEZ7U13HNUA60SX1BTD1SJS094E07FPX33' where id=52; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='CAS3QUFXWJLZ11XBP5SBRBWCHRB4YTFVDK8CRBS4NX9P0UHDRVR9BWF8GC0FVTZO3N4QYJE85DTSZ2Q9RTMR2Z32EFMEC9IA9CGP1LO27L110BMCPVH0I4E96Y8K7Y41A2L8XSYQVQ3CTMDS99M9WOAGIH5Q9KJOX3J2MMBQSR4MJA7V3DFZ0ZNM2QW9ACEN14MBY2KIFTQJVN1A6W0YSE6V014MDIPRRYAHTRGL5431V84L1GRCS1LIKJ4SIOGWX' where id=52; -update noar ti set v3='CAS3QUFXWJLZ11XBP5SBRBWCHRB4YTFVDK8CRBS4NX9P0UHDRVR9BWF8GC0FVTZO3N4QYJE85DTSZ2Q9RTMR2Z32EFMEC9IA9CGP1LO27L110BMCPVH0I4E96Y8K7Y41A2L8XSYQVQ3CTMDS99M9WOAGIH5Q9KJOX3J2MMBQSR4MJA7V3DFZ0ZNM2QW9ACEN14MBY2KIFTQJVN1A6W0YSE6V014MDIPRRYAHTRGL5431V84L1GRCS1LIKJ4SIOGWX' where id=52; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='F9Y7SXJEGYF82G7OCV8JBC0XC895SAD409K42N9FPADHWKIEYT7WH0IZQ1SYEXBD22XV4FTGBTUO9JTI9KCTSX5W0F0AN3Z1I89NHWIYNQTCZ9QLO6BLART4L3HLEYR7PPHX0651ABD7UZL587JFGND5AJHJZJMBR8INF5UUDR86PZIOZQCNIIELH9D59C9BYKUT1IVOWWLCRRMXA9ZKIQNDBMIQ2V7OXU8A5MMSB4NFQVP1SLEZTCWWA018RSGQX' where id=53; -update noar ti set v0='F9Y7SXJEGYF82G7OCV8JBC0XC895SAD409K42N9FPADHWKIEYT7WH0IZQ1SYEXBD22XV4FTGBTUO9JTI9KCTSX5W0F0AN3Z1I89NHWIYNQTCZ9QLO6BLART4L3HLEYR7PPHX0651ABD7UZL587JFGND5AJHJZJMBR8INF5UUDR86PZIOZQCNIIELH9D59C9BYKUT1IVOWWLCRRMXA9ZKIQNDBMIQ2V7OXU8A5MMSB4NFQVP1SLEZTCWWA018RSGQX' where id=53; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='MRBFQBTUE41O7ZNL2YQ81SOWIEF1V4Y8UNVZ3K8MWCNCRAYNTCMHFEG3KAP3I08FIN3TJPGJTW6BH8FH06Y97N9SWOQNE5BGKNLNVRRQPSW4VBPT7W1SGK5ZXXA1341JCE3QB83S8BOMCXZC5MU6V8XVXEO5NIK2CC4EU8VMPSDAHKNU22M8RXP4KU2MYXEENQWDXYBSF41EAW177715PGQ7GD0M2O2A21KXFMZ259FDPJFP0VXJOEYF79255ZCQ4' where id=53; -update noar ti set v1='MRBFQBTUE41O7ZNL2YQ81SOWIEF1V4Y8UNVZ3K8MWCNCRAYNTCMHFEG3KAP3I08FIN3TJPGJTW6BH8FH06Y97N9SWOQNE5BGKNLNVRRQPSW4VBPT7W1SGK5ZXXA1341JCE3QB83S8BOMCXZC5MU6V8XVXEO5NIK2CC4EU8VMPSDAHKNU22M8RXP4KU2MYXEENQWDXYBSF41EAW177715PGQ7GD0M2O2A21KXFMZ259FDPJFP0VXJOEYF79255ZCQ4' where id=53; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='YFRBEYDP8189782U16KDH6YKK1PFYYLSPF6ZZBJR4YZ6HY9U1NJWPBUQNKZM95U21272FISYKZW9S4NZQEBIDFKN2IO58LPMTT2M8E6TMQDEVQQQ2CY19IM8MHN1FY04947C9KTQJS6WY20O0K1WKJCLOQWPNPB64FPIACPEC00RVJSSSS7B7QFFWXE2U2NBR6O9EOBTUFG72ZJWNE9OW6C5CCJ9J1PNKBHXZ8W2GRPPML059CJ65FJTQP0TA6JXT' where id=53; -update noar ti set v2='YFRBEYDP8189782U16KDH6YKK1PFYYLSPF6ZZBJR4YZ6HY9U1NJWPBUQNKZM95U21272FISYKZW9S4NZQEBIDFKN2IO58LPMTT2M8E6TMQDEVQQQ2CY19IM8MHN1FY04947C9KTQJS6WY20O0K1WKJCLOQWPNPB64FPIACPEC00RVJSSSS7B7QFFWXE2U2NBR6O9EOBTUFG72ZJWNE9OW6C5CCJ9J1PNKBHXZ8W2GRPPML059CJ65FJTQP0TA6JXT' where id=53; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='LVM1V0I9MZ3SOPEVCLGTBIIACYI2SUING6FEEFWK5WR0T6WHQAB8RD0M2ILS5S1GYV34Z03JEK1Z4BTQUM62CYQTMHJUYU4H1YHQPEERDXYTENM3BGALT5FIFPYP7X0JL98OY9QVKF27BTAA8PWS8BW7BAL71UASZLDQMF8U01S5EBUM0DIC5NAI5F19OTDEKKI7KBHMV51317E4LMHEGGAM22X04PHJLL8NN6PX9UYHS6B8687FEVY6MIC7YBJXZ' where id=53; -update noar ti set v3='LVM1V0I9MZ3SOPEVCLGTBIIACYI2SUING6FEEFWK5WR0T6WHQAB8RD0M2ILS5S1GYV34Z03JEK1Z4BTQUM62CYQTMHJUYU4H1YHQPEERDXYTENM3BGALT5FIFPYP7X0JL98OY9QVKF27BTAA8PWS8BW7BAL71UASZLDQMF8U01S5EBUM0DIC5NAI5F19OTDEKKI7KBHMV51317E4LMHEGGAM22X04PHJLL8NN6PX9UYHS6B8687FEVY6MIC7YBJXZ' where id=53; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='ADFWI0G6MCB2ET4MQVWSOGJWVZ0RUNCG0SMSC2U35CLW3DWP8K6W3ZKM6N1TCPY4U82GOI7LZFTWTG4E087X4VPKE0L3HPNBMTGAKYMVZZ03TIB2GM07C4JFOTT05TOCV7RV25KT45TM30CEK86YW904O6J2O5DOFEYK5U3CEUB319TWTF3JJ4PPSWOQVHFOTPI0HT5BYI6AX3FUUAN4LPV8I9NJ5VLYCJZC3OH81MS98UGR5GHBHLDA8W28N97M5' where id=54; -update noar ti set v0='ADFWI0G6MCB2ET4MQVWSOGJWVZ0RUNCG0SMSC2U35CLW3DWP8K6W3ZKM6N1TCPY4U82GOI7LZFTWTG4E087X4VPKE0L3HPNBMTGAKYMVZZ03TIB2GM07C4JFOTT05TOCV7RV25KT45TM30CEK86YW904O6J2O5DOFEYK5U3CEUB319TWTF3JJ4PPSWOQVHFOTPI0HT5BYI6AX3FUUAN4LPV8I9NJ5VLYCJZC3OH81MS98UGR5GHBHLDA8W28N97M5' where id=54; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='0SVFOEMGZ3H24E1ATRK5UFXXZ7N9TVDSA59V4OCY2EWR5PL5L6QQLPMZNW5GDK3L7CEK4AJ05G4NCVBKMR4AFDAFYVOX96X6ZMFTXIDQ1M3XER1W8FHVW69A5B604KGHNBSPS03NSY4E54PAYFD8Y4284H2VN2CD7XE35MIQTOZDOK77PP8IFRT45PN8JX9OIJSNGI2XKJW5X96GN1XUUPO4B0NPQX6VT3QZC7I6A2TXJ4VMT8DW00P9EQM9BGMQM' where id=54; -update noar ti set v1='0SVFOEMGZ3H24E1ATRK5UFXXZ7N9TVDSA59V4OCY2EWR5PL5L6QQLPMZNW5GDK3L7CEK4AJ05G4NCVBKMR4AFDAFYVOX96X6ZMFTXIDQ1M3XER1W8FHVW69A5B604KGHNBSPS03NSY4E54PAYFD8Y4284H2VN2CD7XE35MIQTOZDOK77PP8IFRT45PN8JX9OIJSNGI2XKJW5X96GN1XUUPO4B0NPQX6VT3QZC7I6A2TXJ4VMT8DW00P9EQM9BGMQM' where id=54; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='KU18A9HPHCO93FHXGDH4MMSSX2U9MASPMNU6XSGK5FT2KEAIFSEM0CA4M3VO9OPIVG29S5Y4K40G53SOTEZ2R521PEWY6L185E5M1456W8EAVCIWXZU5WCPB31094WT5IVU7TNPZ8FIKNH5ALMWSE5AK0UZ5NRFF80GSRYKPYZTECQYC7NXS6PLESLBES36K2T6HT2RDUMWWPR2KQMAPNPYNIK1HFXCU3AMYKAI97D74O55E5OGHNWNLXOXGURD3B' where id=54; -update noar ti set v2='KU18A9HPHCO93FHXGDH4MMSSX2U9MASPMNU6XSGK5FT2KEAIFSEM0CA4M3VO9OPIVG29S5Y4K40G53SOTEZ2R521PEWY6L185E5M1456W8EAVCIWXZU5WCPB31094WT5IVU7TNPZ8FIKNH5ALMWSE5AK0UZ5NRFF80GSRYKPYZTECQYC7NXS6PLESLBES36K2T6HT2RDUMWWPR2KQMAPNPYNIK1HFXCU3AMYKAI97D74O55E5OGHNWNLXOXGURD3B' where id=54; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='PCQKPKVK305WUYEQ6YG3BVVQPEE58UD3ST6IV3406AS8EWQX064ZB1724J4M4EA4I9BF6L9KZB774JLF8SUPP49DQL641SNIR01T2SDT9VE84UNTJBPWDMECC4A3V0M5NLDL08ZYXLYJ0H4QVPXVUHXB5IWSVI06ZXGYM18THWEXGURXRCP5YBGJB0CFRQ43IVWT8O2NOWZ2T3XLUZEP5N5S2YOK08686MM08DQULZZCJ8DMCTQK7Z6LQA7J0ZGNS' where id=54; -update noar ti set v3='PCQKPKVK305WUYEQ6YG3BVVQPEE58UD3ST6IV3406AS8EWQX064ZB1724J4M4EA4I9BF6L9KZB774JLF8SUPP49DQL641SNIR01T2SDT9VE84UNTJBPWDMECC4A3V0M5NLDL08ZYXLYJ0H4QVPXVUHXB5IWSVI06ZXGYM18THWEXGURXRCP5YBGJB0CFRQ43IVWT8O2NOWZ2T3XLUZEP5N5S2YOK08686MM08DQULZZCJ8DMCTQK7Z6LQA7J0ZGNS' where id=54; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='196RZHXSWGM81DT1VMWLAC2Y17JN2SP7FL9RRY3RDVXAEZYR5L61IGN2I2WXLBDXC6Z8DOU2OV8USNYWUPJA7JMLSNN3AG4DUM0A7XD8X9OPRAQDFKWJ6JNRQ8X2O9ERIR6A8VPUHEMTK6Q2J03DIZ7LYQ0XBIMMJ1JI65R3DW677LWG4Y560KMTQEQFHL7ROUASJ4UQWPNF6MDJG2W26KQOOCERQHA9JMWMGDLET359PK0Y4C1EPSES4PPPZL8YO' where id=55; -update noar ti set v0='196RZHXSWGM81DT1VMWLAC2Y17JN2SP7FL9RRY3RDVXAEZYR5L61IGN2I2WXLBDXC6Z8DOU2OV8USNYWUPJA7JMLSNN3AG4DUM0A7XD8X9OPRAQDFKWJ6JNRQ8X2O9ERIR6A8VPUHEMTK6Q2J03DIZ7LYQ0XBIMMJ1JI65R3DW677LWG4Y560KMTQEQFHL7ROUASJ4UQWPNF6MDJG2W26KQOOCERQHA9JMWMGDLET359PK0Y4C1EPSES4PPPZL8YO' where id=55; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='F8GQ95HDP1DFXK5LHOAHGHVDVSBQI977RAZGXJVU6THHC0TWY7IM33BDT7M213XPCSO9D1XBBZWRX330Z2S2FOQY3XG190Q0H53ZG0XZCTIBM1L3T2NG0X8XBU018QFVL2BBSJMKIIVFJVPT5U01VN196NUZJ1OOEWC0BTK48UG4Y4J6BOG1TF4LFHFTX62ABBGSF0UP0OWTSG0GOBIUQYRSF04AJYHT9O78M11YEFZUQGJKB2SW26WSLLB8VPYS8' where id=55; -update noar ti set v1='F8GQ95HDP1DFXK5LHOAHGHVDVSBQI977RAZGXJVU6THHC0TWY7IM33BDT7M213XPCSO9D1XBBZWRX330Z2S2FOQY3XG190Q0H53ZG0XZCTIBM1L3T2NG0X8XBU018QFVL2BBSJMKIIVFJVPT5U01VN196NUZJ1OOEWC0BTK48UG4Y4J6BOG1TF4LFHFTX62ABBGSF0UP0OWTSG0GOBIUQYRSF04AJYHT9O78M11YEFZUQGJKB2SW26WSLLB8VPYS8' where id=55; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='K1I0Z2B7ZN3QBN086EHRGA27VHY9RO2YB2H681THW0HPUB497APGDOZOKMYHVDQBELBRB1JA75WE4402XI00J21TC82YF1W9KSXSYR9ESND2YSC1R1DP3ZRRNVV1RACHXA6470W0BFH65EJMWRUYK6IIKJZAZPLRH5FBYU31OBSJE9UBAU2M26IZXKVI0CKWQVUHJ3HX3C2X0DFYDQLPY9KPFRBPOO05XJYLXB7O3WWFOX7XBIPV1P2TRJC46LVVG' where id=55; -update noar ti set v2='K1I0Z2B7ZN3QBN086EHRGA27VHY9RO2YB2H681THW0HPUB497APGDOZOKMYHVDQBELBRB1JA75WE4402XI00J21TC82YF1W9KSXSYR9ESND2YSC1R1DP3ZRRNVV1RACHXA6470W0BFH65EJMWRUYK6IIKJZAZPLRH5FBYU31OBSJE9UBAU2M26IZXKVI0CKWQVUHJ3HX3C2X0DFYDQLPY9KPFRBPOO05XJYLXB7O3WWFOX7XBIPV1P2TRJC46LVVG' where id=55; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='F9TSKR4WWEF9ZUV53CTC9GHA1TGHF4885ZJYEMBDXG0NO1NBCJFLCXMFAC7QJEW0QA2V9R4QEH1SS5UD5IBU84LYZ13XL3NV6Q1V2PU6HAOTTSKYT4YHA2862JXZ5CED5SIJK8ZJ877XIR9F47BMGE2Y40J2H43N61GO0SKJ6CGO4HVYH586BR4FIAWLU6TFG2B5ZL71IMG2GIA0P45NKQ2S8KWHAWCEI5ET8UJC0AP4FB8OHGANZTDHFHY41JV22' where id=55; -update noar ti set v3='F9TSKR4WWEF9ZUV53CTC9GHA1TGHF4885ZJYEMBDXG0NO1NBCJFLCXMFAC7QJEW0QA2V9R4QEH1SS5UD5IBU84LYZ13XL3NV6Q1V2PU6HAOTTSKYT4YHA2862JXZ5CED5SIJK8ZJ877XIR9F47BMGE2Y40J2H43N61GO0SKJ6CGO4HVYH586BR4FIAWLU6TFG2B5ZL71IMG2GIA0P45NKQ2S8KWHAWCEI5ET8UJC0AP4FB8OHGANZTDHFHY41JV22' where id=55; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='8FC304K4BSVBUGNNNPNYXYDNC0EB0KSATJKOFEALXTTOB9BDWIC2D7ODG2JO8KCJXDNISTFHLHMTYB5PBMLSY7HI7EGWXBPZEWKJQH3RLB7F44P2UQKCMVA99VA1Z46DZR94Q79CY46D6WD84AYNTURPAS8KMKI8MN555QFOXKF9BLK019CL56EJ70KCIP3930YNQ0PJJDSDIANA7JA428DAHL738D5NJOBAX8T7ONZ5H6NP74LHEF9Y183PRCJLY' where id=56; -update noar ti set v0='8FC304K4BSVBUGNNNPNYXYDNC0EB0KSATJKOFEALXTTOB9BDWIC2D7ODG2JO8KCJXDNISTFHLHMTYB5PBMLSY7HI7EGWXBPZEWKJQH3RLB7F44P2UQKCMVA99VA1Z46DZR94Q79CY46D6WD84AYNTURPAS8KMKI8MN555QFOXKF9BLK019CL56EJ70KCIP3930YNQ0PJJDSDIANA7JA428DAHL738D5NJOBAX8T7ONZ5H6NP74LHEF9Y183PRCJLY' where id=56; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='D558J5CLD9TOLNJH29UJSVHLLRDNJ8M3QCW3030TPAX9UNAFGXUUJ8X63JRUOIRQNO83XOOMXC15HF02SOGV0G79V0A0408E7BD7YM2UWL8PYDQKQZQPP12YMJ85Q7N4WUO0Z7JBV402Q0VZ3RZG1EHEHSES8UOG36I0Y7NPUJC85QQEWVJ4P5ZHLFO1EGR5Y2W3V7AHEY9IJFHS2ZV4VIHRP0TAC78FYBTR79QNV0GBFTUBV3W878PMDSM7USWRS' where id=56; -update noar ti set v1='D558J5CLD9TOLNJH29UJSVHLLRDNJ8M3QCW3030TPAX9UNAFGXUUJ8X63JRUOIRQNO83XOOMXC15HF02SOGV0G79V0A0408E7BD7YM2UWL8PYDQKQZQPP12YMJ85Q7N4WUO0Z7JBV402Q0VZ3RZG1EHEHSES8UOG36I0Y7NPUJC85QQEWVJ4P5ZHLFO1EGR5Y2W3V7AHEY9IJFHS2ZV4VIHRP0TAC78FYBTR79QNV0GBFTUBV3W878PMDSM7USWRS' where id=56; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='0Z1YYXWV5WQKMUBUUZ0Q9GRJEDB4OM2MUMSA9WR2EFF6F7ZSVPREZ4MMV0GXRORDA0JAO7KGZZ9MTI4T2VFBZSGPAGLUFY7YJB6XT1P9M91Z5LL0EMFCW2KLWWZ6P65VZQ2KFOI77VQBH02GPKB1FY9RX44DPIG8F8DBIIDZM7O0NW5U1YNQBNQU3OD4XR8FHC2GNJ5WK6075COH3EKP6HE5DNUL6OTQ8LLFNTLY6X87JTQL5OWC026F98N5D3AS6' where id=56; -update noar ti set v2='0Z1YYXWV5WQKMUBUUZ0Q9GRJEDB4OM2MUMSA9WR2EFF6F7ZSVPREZ4MMV0GXRORDA0JAO7KGZZ9MTI4T2VFBZSGPAGLUFY7YJB6XT1P9M91Z5LL0EMFCW2KLWWZ6P65VZQ2KFOI77VQBH02GPKB1FY9RX44DPIG8F8DBIIDZM7O0NW5U1YNQBNQU3OD4XR8FHC2GNJ5WK6075COH3EKP6HE5DNUL6OTQ8LLFNTLY6X87JTQL5OWC026F98N5D3AS6' where id=56; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='0O9I6F4LTHAFNYSW1LVG2L95O4GM0BKQV84Q96YBQ1LSC6Q1NDDVL0VG8DRI7T28CHR6K1JBG3VDA347LOPCB6VYIAFE4A9LKOB1H5JDVG6HNFE6IFGRIFJJCIEOGNGZJYAEA5O2J3H4G0URYLCNASZ6FGCNA6KYNCKCIUOWV9P9UW2ALVKC2PF1KH4MBWFDEW0DH07A1UNLUDHEFIKCCLH9ZQ51DTXVDYFVH6ICFT2YW77FZQN1YWMNK7LRPSHA1' where id=56; -update noar ti set v3='0O9I6F4LTHAFNYSW1LVG2L95O4GM0BKQV84Q96YBQ1LSC6Q1NDDVL0VG8DRI7T28CHR6K1JBG3VDA347LOPCB6VYIAFE4A9LKOB1H5JDVG6HNFE6IFGRIFJJCIEOGNGZJYAEA5O2J3H4G0URYLCNASZ6FGCNA6KYNCKCIUOWV9P9UW2ALVKC2PF1KH4MBWFDEW0DH07A1UNLUDHEFIKCCLH9ZQ51DTXVDYFVH6ICFT2YW77FZQN1YWMNK7LRPSHA1' where id=56; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='AGYV8UPPSEGYRUQDKCAB5G55LMFLXI44EMJGQMROZP03F07M2WQK1M4ZY92BRXZEIASUT1D8ON19D6L7C48CIKAUMLL73ZB01CGIHTKXCGCGPE1DLCDUMYYU0Q2JIS5AJJKHWL2NNVQONE2P5OR28FSKYUF3DWXRSY4OSDKRAM1KDR95PETVNOPSZYN0MUC3O8IJELHASQDHQEC7GQRSC7BAXPXZMSIIMUOXKK58R6TG360XEYC3F4Z39OHMIUKJ7' where id=57; -update noar ti set v0='AGYV8UPPSEGYRUQDKCAB5G55LMFLXI44EMJGQMROZP03F07M2WQK1M4ZY92BRXZEIASUT1D8ON19D6L7C48CIKAUMLL73ZB01CGIHTKXCGCGPE1DLCDUMYYU0Q2JIS5AJJKHWL2NNVQONE2P5OR28FSKYUF3DWXRSY4OSDKRAM1KDR95PETVNOPSZYN0MUC3O8IJELHASQDHQEC7GQRSC7BAXPXZMSIIMUOXKK58R6TG360XEYC3F4Z39OHMIUKJ7' where id=57; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='KUNQBP46MWE0UJ57J9LHSMWOLWEJPXT0V9I1NZG68O7EBJYCACHSEOI0A3YNYK44AJN1LCW3L201123YJ9L36NSWFUYXV53K8136L8SUXCFYFW8A9WY7V3MG5ZEV8PR6HN426PWY3H9PO0VY368VBHRPYOE7EW7FFA6UNGZWAN9T8AD1AY2SYAWRNHZU11VLYLMPAGD6YH6BY9INGQLGLUMDUP9Q6SU6716IY8HTJXSA3BKG7OHJ7HXDNCAGULLU1' where id=57; -update noar ti set v1='KUNQBP46MWE0UJ57J9LHSMWOLWEJPXT0V9I1NZG68O7EBJYCACHSEOI0A3YNYK44AJN1LCW3L201123YJ9L36NSWFUYXV53K8136L8SUXCFYFW8A9WY7V3MG5ZEV8PR6HN426PWY3H9PO0VY368VBHRPYOE7EW7FFA6UNGZWAN9T8AD1AY2SYAWRNHZU11VLYLMPAGD6YH6BY9INGQLGLUMDUP9Q6SU6716IY8HTJXSA3BKG7OHJ7HXDNCAGULLU1' where id=57; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='CFXKAH3P31CZNHLUUQYVHJGFUW93VM345SRSZEE8HFI69G48G2CZ9SJG6SV993RZO7J9L933LS9454Z0SBBYTZSKTDQC5DELH5DGWE80TVJAW8Z5AOPM0AR9YAAPH8DDV5E87HW00NNO1QEQTEXZ22B3X2GOB9IF8K0J5VS9AAXEZ5V1O56D49PLY3XCWIPNMDIMJBZYCSE30WEX6SFB5OFNUNXV1Y5EO5Q9A71D41PC10CXF1MYNALONSCUJ233M' where id=57; -update noar ti set v2='CFXKAH3P31CZNHLUUQYVHJGFUW93VM345SRSZEE8HFI69G48G2CZ9SJG6SV993RZO7J9L933LS9454Z0SBBYTZSKTDQC5DELH5DGWE80TVJAW8Z5AOPM0AR9YAAPH8DDV5E87HW00NNO1QEQTEXZ22B3X2GOB9IF8K0J5VS9AAXEZ5V1O56D49PLY3XCWIPNMDIMJBZYCSE30WEX6SFB5OFNUNXV1Y5EO5Q9A71D41PC10CXF1MYNALONSCUJ233M' where id=57; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='CSY88EP4UG4BWCOC8BY9ILZZX9XZCSZJP7NZ77PHOMCASPTVL0UTDS525SGLO3PZW5RFTWJKGY8OWLLXI2BS6BE855X8BLZMUVMLV6FYLN9K0S8RRS6RBK42CK3JOKAIAJUYRPOYVZAB0D66ITXOV6K36UQOQ6ED8ONL6SNR1EK41426IC8D9UOWBESEHGJ83FGBRG31XEXH36UUIASEAQGXYS7SCF8PVVK7429VDGE1SYBJIGDQ8VUU7L5GY4GZ1' where id=57; -update noar ti set v3='CSY88EP4UG4BWCOC8BY9ILZZX9XZCSZJP7NZ77PHOMCASPTVL0UTDS525SGLO3PZW5RFTWJKGY8OWLLXI2BS6BE855X8BLZMUVMLV6FYLN9K0S8RRS6RBK42CK3JOKAIAJUYRPOYVZAB0D66ITXOV6K36UQOQ6ED8ONL6SNR1EK41426IC8D9UOWBESEHGJ83FGBRG31XEXH36UUIASEAQGXYS7SCF8PVVK7429VDGE1SYBJIGDQ8VUU7L5GY4GZ1' where id=57; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='AQIKFKXZ1VYWLL8ASN42UD0SHSK7CTXPR6Q7EGFVM1ARTZAN8MC5SEXSNDZ4NQL8LJUPR2CCSQBGIQTE7T7WLVEBEJAM0V6AAEWLI9GW57OF7QGSRDTT33UMV2O102JTBYNWHF4TSDWQMCS2EVR3AIBJBCBF71YB64FWWN8OR273I8PIXP2T1II2Y2SHX967RT6CP20POQQ2S44Y35AOH6BTCX1JLH86EUQ46GUZBJVCICO3PQ8UE150A5WAF7YQR' where id=58; -update noar ti set v0='AQIKFKXZ1VYWLL8ASN42UD0SHSK7CTXPR6Q7EGFVM1ARTZAN8MC5SEXSNDZ4NQL8LJUPR2CCSQBGIQTE7T7WLVEBEJAM0V6AAEWLI9GW57OF7QGSRDTT33UMV2O102JTBYNWHF4TSDWQMCS2EVR3AIBJBCBF71YB64FWWN8OR273I8PIXP2T1II2Y2SHX967RT6CP20POQQ2S44Y35AOH6BTCX1JLH86EUQ46GUZBJVCICO3PQ8UE150A5WAF7YQR' where id=58; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='3IJYIF852HE5W2MBBSH4H8APM3U2SR6J4O4HAB2DXHZSEF9E9I0SM8R1KLJYOU7HJVJN8WH090ZXQW8WRXI4JXBYRWWON0IADZ869P1CHJJI59ZL5JWCIWEUJUABKCY31IVWAL7IIB39M2E3NG63J2WQ44WSG2H26616P972UGUAV7Q84S0H5F0LG45AITQZQEHAAE4XXYADK0D3NDZQZRLXLQWAGW632LMX6V76MFPEFF4HBIQMF1A8R6P6H7D2I' where id=58; -update noar ti set v1='3IJYIF852HE5W2MBBSH4H8APM3U2SR6J4O4HAB2DXHZSEF9E9I0SM8R1KLJYOU7HJVJN8WH090ZXQW8WRXI4JXBYRWWON0IADZ869P1CHJJI59ZL5JWCIWEUJUABKCY31IVWAL7IIB39M2E3NG63J2WQ44WSG2H26616P972UGUAV7Q84S0H5F0LG45AITQZQEHAAE4XXYADK0D3NDZQZRLXLQWAGW632LMX6V76MFPEFF4HBIQMF1A8R6P6H7D2I' where id=58; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='JJIX2VVHNVNZYELVOSO886TWWQWTXYMNDBU913VNQ5338ZIPNSIGAJEKIDSACIDKZOQAUOLJRT1IZRVLKQYHGAYBZWEM8YH2T1UIBNZ4WNABYUE4DVU5XMSEQZ84P09RG6VWPHS7EJSJJ72U4ZVH236E8A0H8I6CFK9JT3ADKV7RKSDMSGE2D6PLGSB5585IM7IAHD60SXFTPK7626N5673ECXV6U7LUSGPQGRNBSQU0GPQ3YH5HFCHRW0XMUSHMQ' where id=58; -update noar ti set v2='JJIX2VVHNVNZYELVOSO886TWWQWTXYMNDBU913VNQ5338ZIPNSIGAJEKIDSACIDKZOQAUOLJRT1IZRVLKQYHGAYBZWEM8YH2T1UIBNZ4WNABYUE4DVU5XMSEQZ84P09RG6VWPHS7EJSJJ72U4ZVH236E8A0H8I6CFK9JT3ADKV7RKSDMSGE2D6PLGSB5585IM7IAHD60SXFTPK7626N5673ECXV6U7LUSGPQGRNBSQU0GPQ3YH5HFCHRW0XMUSHMQ' where id=58; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='KWR3OUUM72I0LMZK2AKTT7D814PGC0UVQEQV9V7TWYDPOX1MJNML7PBM1BRK6VOSH0WY3A5D5CFVF1JAPZT7OEANPWORJXCMS9SS5K0ZTUADNRB62TLXTZWM00FPQJG60PV7D905S22EZ48DW31Z6SF2H3LL91WOVIGOC9ARXY7E2YVWNFGQ24JMH4YNLVKIUYBHMOXMLFD00T6ALA8FTS9Z0T4PLBMQ45390X5N4PLV0M4XUU6Z4N10G92UB5OER' where id=58; -update noar ti set v3='KWR3OUUM72I0LMZK2AKTT7D814PGC0UVQEQV9V7TWYDPOX1MJNML7PBM1BRK6VOSH0WY3A5D5CFVF1JAPZT7OEANPWORJXCMS9SS5K0ZTUADNRB62TLXTZWM00FPQJG60PV7D905S22EZ48DW31Z6SF2H3LL91WOVIGOC9ARXY7E2YVWNFGQ24JMH4YNLVKIUYBHMOXMLFD00T6ALA8FTS9Z0T4PLBMQ45390X5N4PLV0M4XUU6Z4N10G92UB5OER' where id=58; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='CUVD9E35O4D9EGPG33EEQKUQIV9BCANRXED6GFNI2CQU4U2G19FOMP7W02JQ4RGM0CWWBLIDWVDG1F8EZDZYJVRR6NTNTF46DAHE5DULJQLU9QZCX6Z45SVNIUH8B6ZBY17OPC4DTNA1WDCABUDHSSTIKAXZVIIPRTC4YCNQ0FGBAL9HEYIWHKZLZHNJTJWDAWD5PGSL7S44QH2P2EK2KIV1W14SYGQYS8HKU9Y2CGA39DJRAPL5DTEO9M3LJCPKB' where id=59; -update noar ti set v0='CUVD9E35O4D9EGPG33EEQKUQIV9BCANRXED6GFNI2CQU4U2G19FOMP7W02JQ4RGM0CWWBLIDWVDG1F8EZDZYJVRR6NTNTF46DAHE5DULJQLU9QZCX6Z45SVNIUH8B6ZBY17OPC4DTNA1WDCABUDHSSTIKAXZVIIPRTC4YCNQ0FGBAL9HEYIWHKZLZHNJTJWDAWD5PGSL7S44QH2P2EK2KIV1W14SYGQYS8HKU9Y2CGA39DJRAPL5DTEO9M3LJCPKB' where id=59; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='V6TSWDUGK603NG3I4KR128P5SE1NONW8CT0DTOUB34Q24EMYUM4OK7FAJXRL5EGAT5HB2VQEMSZLFVBBUH5CUR0ACIUMAG93K9OXJ6LLC7RM3WU5TR9CJAWJSD4OOEIM1P4FYWP9NQXX7NZ76HDDYQA5XHWOKRNFUUYB4SGN69L0W88EC7PYW1ORBDDPCEV9Y7KPVQPHLBRP4TG1HONHE1ZURBU1OW7EDTMWN6PU9O226RDW9BMH0BMFZ7XYMUX87' where id=59; -update noar ti set v1='V6TSWDUGK603NG3I4KR128P5SE1NONW8CT0DTOUB34Q24EMYUM4OK7FAJXRL5EGAT5HB2VQEMSZLFVBBUH5CUR0ACIUMAG93K9OXJ6LLC7RM3WU5TR9CJAWJSD4OOEIM1P4FYWP9NQXX7NZ76HDDYQA5XHWOKRNFUUYB4SGN69L0W88EC7PYW1ORBDDPCEV9Y7KPVQPHLBRP4TG1HONHE1ZURBU1OW7EDTMWN6PU9O226RDW9BMH0BMFZ7XYMUX87' where id=59; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='4TURTU1T1JLUT90V8FUBNKKT08WILZNBYEF0GCW4VXER993RBH8MMWS5Y05M52LETQMXG0927UVJ89J4EZ6NR98XITSH2YF4T7UAUUW0I47I7I9Z8OOGZB8XADJBNHCN5MLPMHJPNU9U4ZIG8A540THY9T8UH7VL5EMX1FHDJW5FJM2TVBJG3JWLJS8QVMBTOTJHA2U85VB4U9Q992I4EUXVR3PD2RUKQ30X8QOMMSU7QS06LTR2SB4O1GZH8Q067' where id=59; -update noar ti set v2='4TURTU1T1JLUT90V8FUBNKKT08WILZNBYEF0GCW4VXER993RBH8MMWS5Y05M52LETQMXG0927UVJ89J4EZ6NR98XITSH2YF4T7UAUUW0I47I7I9Z8OOGZB8XADJBNHCN5MLPMHJPNU9U4ZIG8A540THY9T8UH7VL5EMX1FHDJW5FJM2TVBJG3JWLJS8QVMBTOTJHA2U85VB4U9Q992I4EUXVR3PD2RUKQ30X8QOMMSU7QS06LTR2SB4O1GZH8Q067' where id=59; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='QQVLJE4MR0VANDS2IV2FVVHBAQ4G6P1MD221WG1YZRTL52EDE23S9HKZ9PY3OL6V62FXYY5SUNSUTW81ZCZG05QLHB68UOTIRVT2SHNVWCZCK702PM9NVAD8F7VEQ7HBSOIHZRE2ZCR2JGLQLCTOOC3T1R14P3TPF91BQWY2QHP01YGCKVRJFD1AY0741NFDXI40VKSHXXDPQ5JNQ4045LODL91ZD9B7OY1K48OFU3I9SVY3D2T1NK8O8KLFULHME' where id=59; -update noar ti set v3='QQVLJE4MR0VANDS2IV2FVVHBAQ4G6P1MD221WG1YZRTL52EDE23S9HKZ9PY3OL6V62FXYY5SUNSUTW81ZCZG05QLHB68UOTIRVT2SHNVWCZCK702PM9NVAD8F7VEQ7HBSOIHZRE2ZCR2JGLQLCTOOC3T1R14P3TPF91BQWY2QHP01YGCKVRJFD1AY0741NFDXI40VKSHXXDPQ5JNQ4045LODL91ZD9B7OY1K48OFU3I9SVY3D2T1NK8O8KLFULHME' where id=59; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='0A941Z4EG2IV9GWFF19FW7BXF5PWXFEBS5SJHDGKMFF5O9W74903TBQA4VZ4MJ8PJNZC77R7CZO4QZ3ZL0B9UE11L3QXCK04QTOUKHK7V9TO35REW2LVZPJ06OA5Q04M0G14G81M408HPWCA6LTID12VHE5PL2F2RFWZQVYQMUSLMJXK5IID1XNV683DE6PIE5VD68W5V7OLOLU92O2GAW2UZD1BVLAI0PVUXUC8MHZJU9BDWNC5HJRI6FO4SPNM9' where id=60; -update noar ti set v0='0A941Z4EG2IV9GWFF19FW7BXF5PWXFEBS5SJHDGKMFF5O9W74903TBQA4VZ4MJ8PJNZC77R7CZO4QZ3ZL0B9UE11L3QXCK04QTOUKHK7V9TO35REW2LVZPJ06OA5Q04M0G14G81M408HPWCA6LTID12VHE5PL2F2RFWZQVYQMUSLMJXK5IID1XNV683DE6PIE5VD68W5V7OLOLU92O2GAW2UZD1BVLAI0PVUXUC8MHZJU9BDWNC5HJRI6FO4SPNM9' where id=60; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='FWIEVICR740U0VRVWLEU8QSSB3I5T1OA3KAAO5XCZ1P7CMLWVWQRXPAZCO1YK31D3RDXXLCIX4LUBJJRN5X3HHJ071S6XKMNYZ1IXZGC93KZU4TWC6EQBIPEMOZG1TNV4NEJL6KXFNWCCELJ0NJIHVHHLAN17ENNHDJIQCUILPV9ZHU9WHUK2URZ6FXC6ZPZHZ3G8W8DEN3AGKMS59GE4RSLL6EGI61C5XU18TVPD1K6N5KQWHW96TBZNFG74UNPV' where id=60; -update noar ti set v1='FWIEVICR740U0VRVWLEU8QSSB3I5T1OA3KAAO5XCZ1P7CMLWVWQRXPAZCO1YK31D3RDXXLCIX4LUBJJRN5X3HHJ071S6XKMNYZ1IXZGC93KZU4TWC6EQBIPEMOZG1TNV4NEJL6KXFNWCCELJ0NJIHVHHLAN17ENNHDJIQCUILPV9ZHU9WHUK2URZ6FXC6ZPZHZ3G8W8DEN3AGKMS59GE4RSLL6EGI61C5XU18TVPD1K6N5KQWHW96TBZNFG74UNPV' where id=60; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='RF018ZFV31DFDMEOW8L97JX8FSEDLH60GNPY79IGHH5LKSRV5SV48US3ERB2GLX3HYKORWGLCP1WPEZID1M0K06AFSP3LCHQ1P3Q7A1AUY5UYSHPB89IAKD280RYDL0VGWMN0A40O9P50ZREO7P9G0FUOU3JBHDCOZSMZO29XG1RQ126M3N393A2PIUFRNTXI59LAZQ52BM2RW4T01974SZGJNANP17DAL82QBRGHL3V4MGE3OJBRZR25QOSAHX05' where id=60; -update noar ti set v2='RF018ZFV31DFDMEOW8L97JX8FSEDLH60GNPY79IGHH5LKSRV5SV48US3ERB2GLX3HYKORWGLCP1WPEZID1M0K06AFSP3LCHQ1P3Q7A1AUY5UYSHPB89IAKD280RYDL0VGWMN0A40O9P50ZREO7P9G0FUOU3JBHDCOZSMZO29XG1RQ126M3N393A2PIUFRNTXI59LAZQ52BM2RW4T01974SZGJNANP17DAL82QBRGHL3V4MGE3OJBRZR25QOSAHX05' where id=60; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='NBQY3B9ELPVPUDV83M7M7BCGPWAKYT6XGEZ0VQXOGTAJ5S30U86DOJ0WCEE8LK3OG634DUWPE6VHW2F0PX3V2P73NROV32PTU0XTKMNE7XDIPF1DR8WEJZ1OK3F1YLCPRRMQTFRCK3WWLI2U59W27PE5D8465BK25ENG75RPDPXU2RLAH4TN09NWBQY75F51RF38T7IQCP6LFOKRI8EBC4O2I88HK7RLHUJOF7H5YVFEA2QNG25AW5BXIU62EU8MW' where id=60; -update noar ti set v3='NBQY3B9ELPVPUDV83M7M7BCGPWAKYT6XGEZ0VQXOGTAJ5S30U86DOJ0WCEE8LK3OG634DUWPE6VHW2F0PX3V2P73NROV32PTU0XTKMNE7XDIPF1DR8WEJZ1OK3F1YLCPRRMQTFRCK3WWLI2U59W27PE5D8465BK25ENG75RPDPXU2RLAH4TN09NWBQY75F51RF38T7IQCP6LFOKRI8EBC4O2I88HK7RLHUJOF7H5YVFEA2QNG25AW5BXIU62EU8MW' where id=60; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='JRK0ZCGIIRW4ZBUGCEKZ79X4TISEQDRUKABZ52FVDYN7KZ5DZ6Q2LNSAJAJXJPH1GB2QEC9874EHMGIYIEOBGI2TI0I9EG83ZR76QAHH45E3R5UQNPIQ82AYGBYGZE6K53E0P37RVV8DYUXKTQRUTNETLR322OPN6BFD9XZJ1J04WMDTYG6V1CD8WKBRPH24UPME6I6P7V4Z7I1APJRWISAIA6RZ9DAHETDZ2TBSMAVQBIWOELQDKX2LJ6GKH6TDX' where id=61; -update noar ti set v0='JRK0ZCGIIRW4ZBUGCEKZ79X4TISEQDRUKABZ52FVDYN7KZ5DZ6Q2LNSAJAJXJPH1GB2QEC9874EHMGIYIEOBGI2TI0I9EG83ZR76QAHH45E3R5UQNPIQ82AYGBYGZE6K53E0P37RVV8DYUXKTQRUTNETLR322OPN6BFD9XZJ1J04WMDTYG6V1CD8WKBRPH24UPME6I6P7V4Z7I1APJRWISAIA6RZ9DAHETDZ2TBSMAVQBIWOELQDKX2LJ6GKH6TDX' where id=61; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='4BGKVM9119Z1D0OYE9EX855MEUSPQ802FXDBDBS9UHP2PMFHOTPRSA526G1Y9HIEDWMQGSF6L9QVZ1MC482BEGM4C82XJOZR6SSQIO0XA81NF4AQAFLBZAT4L310FJN23JYT0AMNDISSJD0B7HDN8J7WTBL4PB5CU03VG3U8CAKF07PP68NB7Q4KJ9DHE7TBSINOABRTGAVDQCO2248Q3NEP5W035D0K7JGEWFPZYNITX2C5E1YHZTLO5W3248XC2' where id=61; -update noar ti set v1='4BGKVM9119Z1D0OYE9EX855MEUSPQ802FXDBDBS9UHP2PMFHOTPRSA526G1Y9HIEDWMQGSF6L9QVZ1MC482BEGM4C82XJOZR6SSQIO0XA81NF4AQAFLBZAT4L310FJN23JYT0AMNDISSJD0B7HDN8J7WTBL4PB5CU03VG3U8CAKF07PP68NB7Q4KJ9DHE7TBSINOABRTGAVDQCO2248Q3NEP5W035D0K7JGEWFPZYNITX2C5E1YHZTLO5W3248XC2' where id=61; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='Y5W2HMA232FFNHFWW8OIO6VJBVWHHKJC4KJLPD5S9D5ZNR9E82PW4VNO0M64B0W5JSPJZB7QY0HK3XTHMHJBO7LN3R34QWJ4XHK0AC26NNWWU562MU0PBICIMR5L08SKWUH3PE93M15AO2CY5YVBXIOK719BPCQRBNBAAC6UDDELK3R8XEVURBO3U8LYYBTJCM6T2ZFFQYV0328QL5L2ECPCGSNLAGKGLHMXE7IEB9PVKPSDTLC31S441X3C0M857' where id=61; -update noar ti set v2='Y5W2HMA232FFNHFWW8OIO6VJBVWHHKJC4KJLPD5S9D5ZNR9E82PW4VNO0M64B0W5JSPJZB7QY0HK3XTHMHJBO7LN3R34QWJ4XHK0AC26NNWWU562MU0PBICIMR5L08SKWUH3PE93M15AO2CY5YVBXIOK719BPCQRBNBAAC6UDDELK3R8XEVURBO3U8LYYBTJCM6T2ZFFQYV0328QL5L2ECPCGSNLAGKGLHMXE7IEB9PVKPSDTLC31S441X3C0M857' where id=61; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='IFY4880GO7ICBN1AKFJ37R410OOD8R062DQIMJKG50FF8RGU5SWS3VWJ5VVLBWXBLQG0HG9HU3X7DOHARQ36S7GGTDOM6HK9JN8GEBD0TP7GYR2GQ7KRHGL8Z4881NV8C92BU4H14LUL5OPVZT5W0C1TAL2Q5MEWDL78VENONCEPD1GSQ40S1V68IDN5IGTLG5JPO62SE13O5JCUUBDDB1S06FIU15SJHAI50ILM6MJ7XIREBW47140EPFYJDJB25' where id=61; -update noar ti set v3='IFY4880GO7ICBN1AKFJ37R410OOD8R062DQIMJKG50FF8RGU5SWS3VWJ5VVLBWXBLQG0HG9HU3X7DOHARQ36S7GGTDOM6HK9JN8GEBD0TP7GYR2GQ7KRHGL8Z4881NV8C92BU4H14LUL5OPVZT5W0C1TAL2Q5MEWDL78VENONCEPD1GSQ40S1V68IDN5IGTLG5JPO62SE13O5JCUUBDDB1S06FIU15SJHAI50ILM6MJ7XIREBW47140EPFYJDJB25' where id=61; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='EQQ6RB6C2M7FIOYXCQ0I8VVDGITDTYE16AZDLCYIJ8VVK3EU0X3QKMQ0AZRYS1CQ5XHTEVMS6TIC0IL3GJD6JEHIMOEPTDYSQZ6CHMLXLN7JCRKRH1UVEORFJMWMVODXNPG07D7S6IS6ORCKO6LZRDV19NFUUDMJTTT18GFQ03A7WLBUOUGXQLCLZBNJBGA1D75VQEU48HCEG11NGW6JIQYITGH0OF79DTAML6APHN6M3SSEO7R5FJXFFDMPJ7JN5' where id=62; -update noar ti set v0='EQQ6RB6C2M7FIOYXCQ0I8VVDGITDTYE16AZDLCYIJ8VVK3EU0X3QKMQ0AZRYS1CQ5XHTEVMS6TIC0IL3GJD6JEHIMOEPTDYSQZ6CHMLXLN7JCRKRH1UVEORFJMWMVODXNPG07D7S6IS6ORCKO6LZRDV19NFUUDMJTTT18GFQ03A7WLBUOUGXQLCLZBNJBGA1D75VQEU48HCEG11NGW6JIQYITGH0OF79DTAML6APHN6M3SSEO7R5FJXFFDMPJ7JN5' where id=62; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='V6PRL6BXT1NRCGQL5R1FFC9IWQHWMQ6PCRNEQ2HXZG34ZTYCD7E5ARETURGYMYDXRVTTZ26CARBWAPWISIS643NNJJREN2AI9Z8OZY8BW6NXKZRO55GDKIAZWXKODV7BBWIE2I5KY8EA2JPXTHKC4IR1SYN5EAS2ZYG14NVFIT48RFPJAFGRCRAFAO7GIERNPPBW9F0EKW1YBMTEFDXBYM10YUFV4RJXB1ZP26HNA8MCFWHRYWY8K1C3L5U8Q9PQ8' where id=62; -update noar ti set v1='V6PRL6BXT1NRCGQL5R1FFC9IWQHWMQ6PCRNEQ2HXZG34ZTYCD7E5ARETURGYMYDXRVTTZ26CARBWAPWISIS643NNJJREN2AI9Z8OZY8BW6NXKZRO55GDKIAZWXKODV7BBWIE2I5KY8EA2JPXTHKC4IR1SYN5EAS2ZYG14NVFIT48RFPJAFGRCRAFAO7GIERNPPBW9F0EKW1YBMTEFDXBYM10YUFV4RJXB1ZP26HNA8MCFWHRYWY8K1C3L5U8Q9PQ8' where id=62; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='9YNM51YZSRIDLE1AQKO2NGB5E5CLMG5K1B7U8G1FRZLGQUR85JUZKDNHAL2XS7NZH7362L7BUDK6O693Y1CSQ88UWEEH5AJ50ZCV258LH6WC681J41KKR053K569BPUW6CM6DVIYP4KXY0B3HJKP8QEP4DUTX6M2LQP2LMKNVVI3SFOQ41KODDQE6IDRK468ZB2NFRSALT69395B40OJMK26IAK8VIU364RF05V16TH6ZN4MZ3ETYJNCIMQ3348MF' where id=62; -update noar ti set v2='9YNM51YZSRIDLE1AQKO2NGB5E5CLMG5K1B7U8G1FRZLGQUR85JUZKDNHAL2XS7NZH7362L7BUDK6O693Y1CSQ88UWEEH5AJ50ZCV258LH6WC681J41KKR053K569BPUW6CM6DVIYP4KXY0B3HJKP8QEP4DUTX6M2LQP2LMKNVVI3SFOQ41KODDQE6IDRK468ZB2NFRSALT69395B40OJMK26IAK8VIU364RF05V16TH6ZN4MZ3ETYJNCIMQ3348MF' where id=62; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='XQRQZJFSQLKXNJUNAAMNFQ3HBTQ5KP8SOXE4IEWAVNJRRCDDV4W16VPRX1JQLZRMNIWIPMA7LT8MTTJ7SM5JP51I8CJ5W2MXKQVZIF6HEM42W5O7OGK6QEU9A8G3FJYWPUT98QPTFQ8DILIBSBR45TGULXBRMTBFNHKL640X48X2D25U55EKEZ7GZDZSBZ8CUAP2CV67IP6LVXHJ694VDYZS1P5DS7Y6N6VR52YHPKQYGLOEJQI9ZYAX1ZRYXBN3P' where id=62; -update noar ti set v3='XQRQZJFSQLKXNJUNAAMNFQ3HBTQ5KP8SOXE4IEWAVNJRRCDDV4W16VPRX1JQLZRMNIWIPMA7LT8MTTJ7SM5JP51I8CJ5W2MXKQVZIF6HEM42W5O7OGK6QEU9A8G3FJYWPUT98QPTFQ8DILIBSBR45TGULXBRMTBFNHKL640X48X2D25U55EKEZ7GZDZSBZ8CUAP2CV67IP6LVXHJ694VDYZS1P5DS7Y6N6VR52YHPKQYGLOEJQI9ZYAX1ZRYXBN3P' where id=62; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='MLK5OMNX996177NKDXK50ITSDODH5R4D9MJ9YJ6FJA5PP9Q58N680T2YISVF0RHD4YMV5MCY3YJZZZ973D1QR25HWMXE1WJE4VV7GGJ9K1HFEOJ9XQ3GPNOTG6YIXJGVNX26UKZDQNAGYQX9N7MMOF9GIU3P213BVA45DXNGHE5W6FVVPAQO3FLCVHUJ583CGAHQKBSCJRB709OK8XJA9MGGGO4IR3YU7MT32JTXTKLK5EP6WVMUAZ69D2MFB8CJW' where id=63; -update noar ti set v0='MLK5OMNX996177NKDXK50ITSDODH5R4D9MJ9YJ6FJA5PP9Q58N680T2YISVF0RHD4YMV5MCY3YJZZZ973D1QR25HWMXE1WJE4VV7GGJ9K1HFEOJ9XQ3GPNOTG6YIXJGVNX26UKZDQNAGYQX9N7MMOF9GIU3P213BVA45DXNGHE5W6FVVPAQO3FLCVHUJ583CGAHQKBSCJRB709OK8XJA9MGGGO4IR3YU7MT32JTXTKLK5EP6WVMUAZ69D2MFB8CJW' where id=63; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='9OSWRG5UVOR5SRJEYJ0YERVUXWTKNH5A4M3UMJQ6UOQRQIB59YXK4LH9XMQCR5324NTLYH0YQSHJ8MOM89BSFFN1A4COO2P14AQ402TQ5GCCK4CGL14PU6JTMV3Y3D5BFZ4CGV04N2UWA8PN0QG576PK4BBIHTMRWSCEDD8GQHUB6UBWS2UOQQE8N1865PJMTGFFINPM6HDE1ATZBUA1LLE4LJJ190DEAV3LRBLB6HP481512FRGQOLL2XV9DW8KX' where id=63; -update noar ti set v1='9OSWRG5UVOR5SRJEYJ0YERVUXWTKNH5A4M3UMJQ6UOQRQIB59YXK4LH9XMQCR5324NTLYH0YQSHJ8MOM89BSFFN1A4COO2P14AQ402TQ5GCCK4CGL14PU6JTMV3Y3D5BFZ4CGV04N2UWA8PN0QG576PK4BBIHTMRWSCEDD8GQHUB6UBWS2UOQQE8N1865PJMTGFFINPM6HDE1ATZBUA1LLE4LJJ190DEAV3LRBLB6HP481512FRGQOLL2XV9DW8KX' where id=63; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='PHIWXGZOHQKX30KUJNFVHC37XSM5COMUZ9QKVK6PAI1OVM8B4TT7N6X7RTSVQVZVVAOLDEKC1OT59K6RPYTH36O0I6BUFQ4O9MVQF73K6CD2ZPDQIDCIEONELUHNTBMDI3MF6QLLOOTED00EWK2STVNJV2ADBFZNDOMQ1EGQZ6337J8AOUISNN9CM4SB24UZ00YS3G33OLNS8C5HK0XKTCDBXB1UVN70N2JB3IDAMBNIHYDPFDQHU3CVIHQ8DT9QG' where id=63; -update noar ti set v2='PHIWXGZOHQKX30KUJNFVHC37XSM5COMUZ9QKVK6PAI1OVM8B4TT7N6X7RTSVQVZVVAOLDEKC1OT59K6RPYTH36O0I6BUFQ4O9MVQF73K6CD2ZPDQIDCIEONELUHNTBMDI3MF6QLLOOTED00EWK2STVNJV2ADBFZNDOMQ1EGQZ6337J8AOUISNN9CM4SB24UZ00YS3G33OLNS8C5HK0XKTCDBXB1UVN70N2JB3IDAMBNIHYDPFDQHU3CVIHQ8DT9QG' where id=63; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='VQML9GORFV07CPK1BYL0NSI1QUU7T8N0W6K11SPUW0OQ105AQEA7IC0XOY9F8GFBCF1EYZW7IPO4V21E01HNDFQO8HRYILOV6RRCT1UDN0YQ1Z8F9JE2PUC1HL1YDXIQ5KZTIK1NJ8Z5G3KG1KLHFE3ODHNXH555DXPN7SW8N58KDZ0AB1VYATTOH5QGLCEQF03PTODZEXN21DPTO13HO84F5W6SRQCC33RRNCRWSYWHDOAVBARZYV2ZI8NC1PEL9' where id=63; -update noar ti set v3='VQML9GORFV07CPK1BYL0NSI1QUU7T8N0W6K11SPUW0OQ105AQEA7IC0XOY9F8GFBCF1EYZW7IPO4V21E01HNDFQO8HRYILOV6RRCT1UDN0YQ1Z8F9JE2PUC1HL1YDXIQ5KZTIK1NJ8Z5G3KG1KLHFE3ODHNXH555DXPN7SW8N58KDZ0AB1VYATTOH5QGLCEQF03PTODZEXN21DPTO13HO84F5W6SRQCC33RRNCRWSYWHDOAVBARZYV2ZI8NC1PEL9' where id=63; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='A6FOTIU48JWADRZ1YRIC9JV4RLBS1KASLST56JPC9RWMY07UK1RC1A4GB0AC93MX9IK20QSK8RIC2TC8WKPXCO0XVFCJJMA3NVEGL6RL9YF3JHRD44A8QOVC2QLHLAK297ZT6OIMXNWBWRGNQF0328QU7F71GL1OWTHECVH11RKYK8VWKMD4WYOLK42U0M07OFJDXUCIBXD6LJYMFVD5EW43GRR3ZDM71R69ZPC0ZR4TLMQENPDZ0KHYVDQ7E58G0' where id=64; -update noar ti set v0='A6FOTIU48JWADRZ1YRIC9JV4RLBS1KASLST56JPC9RWMY07UK1RC1A4GB0AC93MX9IK20QSK8RIC2TC8WKPXCO0XVFCJJMA3NVEGL6RL9YF3JHRD44A8QOVC2QLHLAK297ZT6OIMXNWBWRGNQF0328QU7F71GL1OWTHECVH11RKYK8VWKMD4WYOLK42U0M07OFJDXUCIBXD6LJYMFVD5EW43GRR3ZDM71R69ZPC0ZR4TLMQENPDZ0KHYVDQ7E58G0' where id=64; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='WTY5C15ZEU2ERV7HHY1A0DOPS8MNN2LQ0YY9339UE0YTTYCPPZ2WZI0Y3CKS5RJO8QKZPNWPVXZ9DUY86MU5NJDT8I60H49T443M5VL7AWAVIPGSVDMJO4A6PSPMSBTGRTV4NM8D3P871BETF5MU4W0N1VQ4JD2Y768U7NNCJAT7NWE5V9UEWW71MZJZXB4IZPS617PRA1WMXGNOHKPMQBEPHTDY2DCZR54E12HNVEG5H60ALKFDJPGKFDVKPMECG' where id=64; -update noar ti set v1='WTY5C15ZEU2ERV7HHY1A0DOPS8MNN2LQ0YY9339UE0YTTYCPPZ2WZI0Y3CKS5RJO8QKZPNWPVXZ9DUY86MU5NJDT8I60H49T443M5VL7AWAVIPGSVDMJO4A6PSPMSBTGRTV4NM8D3P871BETF5MU4W0N1VQ4JD2Y768U7NNCJAT7NWE5V9UEWW71MZJZXB4IZPS617PRA1WMXGNOHKPMQBEPHTDY2DCZR54E12HNVEG5H60ALKFDJPGKFDVKPMECG' where id=64; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='RPTENB3ETSR98K7JT4P1F5RR2W1AMUFPEDT32FHZL13G0ENWNO95COKI6091QTXPBQIS5A5O8ELBOI46HP26HEJOBN3BXVV2XN8FYIMJAXW9V2X8158F1TAKTVF1CRYRCMXXTIHZZV8T66V0VLYG5T1U5E3WHB7RRNABCGDKBM2X5I3PL7EEJ9JM44MMFBFUWPXAILABIMSWJNEA6EQNT1P43F0MARLDXH817TS33ZP9L717N34PIAPCRRPVMGBEZ' where id=64; -update noar ti set v2='RPTENB3ETSR98K7JT4P1F5RR2W1AMUFPEDT32FHZL13G0ENWNO95COKI6091QTXPBQIS5A5O8ELBOI46HP26HEJOBN3BXVV2XN8FYIMJAXW9V2X8158F1TAKTVF1CRYRCMXXTIHZZV8T66V0VLYG5T1U5E3WHB7RRNABCGDKBM2X5I3PL7EEJ9JM44MMFBFUWPXAILABIMSWJNEA6EQNT1P43F0MARLDXH817TS33ZP9L717N34PIAPCRRPVMGBEZ' where id=64; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='3UO0GQYJYKUPJ7LR2ARKLGK6NVT945WTKI40XSBZ5YIJAX2XGR0N4ZYDUAAMCLYKFVX9VLXUIDOZGEXND1M7H8VGM511AOWQFY3IO402UTEKPJ6X5QRNCWZCYA50H4PVKUNI152UHAJTP6MRP7K1RUVX1AOL1RYUHQW7NJ0H6XL35TESBVQ1UKAB3LIUW0E5RUPLWYBZQMU3IRLWJPJN1WP3SICJTYP735JDML352Z0XZW2NJ89B9L0UQVXFQY60C' where id=64; -update noar ti set v3='3UO0GQYJYKUPJ7LR2ARKLGK6NVT945WTKI40XSBZ5YIJAX2XGR0N4ZYDUAAMCLYKFVX9VLXUIDOZGEXND1M7H8VGM511AOWQFY3IO402UTEKPJ6X5QRNCWZCYA50H4PVKUNI152UHAJTP6MRP7K1RUVX1AOL1RYUHQW7NJ0H6XL35TESBVQ1UKAB3LIUW0E5RUPLWYBZQMU3IRLWJPJN1WP3SICJTYP735JDML352Z0XZW2NJ89B9L0UQVXFQY60C' where id=64; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='IZ5G9W8JX3FFNW6K6OINC65XZECSI57UNWCS2CEDRC8F16NDEZAOAFR4WPS5TA756DQH213J5DVEPP2NLWZGK7JHIMHZ1IO23KS65Z21SX0BKUKCY5CX8NI1PH9WPG2LO9Y0LSCC9E30SHAJXBTBXVN8SCF2E5O2GLIPLKD9TRWF4ONYNBOBY7WSNJF9HLV80XJ2NEOLWK2YWRQSZXUJ20TK82PZPNGFG64XJQBEPRP4E3DU1A5VXQEJ9GVVXHFIC' where id=65; -update noar ti set v0='IZ5G9W8JX3FFNW6K6OINC65XZECSI57UNWCS2CEDRC8F16NDEZAOAFR4WPS5TA756DQH213J5DVEPP2NLWZGK7JHIMHZ1IO23KS65Z21SX0BKUKCY5CX8NI1PH9WPG2LO9Y0LSCC9E30SHAJXBTBXVN8SCF2E5O2GLIPLKD9TRWF4ONYNBOBY7WSNJF9HLV80XJ2NEOLWK2YWRQSZXUJ20TK82PZPNGFG64XJQBEPRP4E3DU1A5VXQEJ9GVVXHFIC' where id=65; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='G1JY3SIR0KJIPR3TR69AO2H2AAM1ORIPCLQ092ZEG2YUU8AQJFYL8GU12CVLA3X6XOEQLNLXJBGPL77CN1CJA4KX88U2EC7E2WMLCO1RXZU33XQ356ZUL3IWE6UOKCZY19AR5S52NMCMYM3U18MELYQFZPC6B1K0KKRFHTF39FC6YHUCG1VUEC7FP1J2EO4EABY6HQOZFM5JCOLTRTYXVIONRERSM0SYIKGFHPRJJKGO7PXPU6UQ2SLQQIN5H87I2' where id=65; -update noar ti set v1='G1JY3SIR0KJIPR3TR69AO2H2AAM1ORIPCLQ092ZEG2YUU8AQJFYL8GU12CVLA3X6XOEQLNLXJBGPL77CN1CJA4KX88U2EC7E2WMLCO1RXZU33XQ356ZUL3IWE6UOKCZY19AR5S52NMCMYM3U18MELYQFZPC6B1K0KKRFHTF39FC6YHUCG1VUEC7FP1J2EO4EABY6HQOZFM5JCOLTRTYXVIONRERSM0SYIKGFHPRJJKGO7PXPU6UQ2SLQQIN5H87I2' where id=65; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='JQB1AV58BGRQQK0ZUJCY3WH0XB67DV9MGLLR03864TD6TKEFNB4L7N2XXJLBULAZPUR2RQCP6AJDUM2IHX9FL8X81EAK39HZIMUZDU4Q2DE894N7D6GCR8IGML0YPLEGPKEDMWXQCX2LGIAR4BW5BV5HV2HZW93EQKWQAAMREEKWQLMFHGW7M1BXCYABJN8WM9AN81MOE41559XZLBWWCWLSDDCJ559SABWTUAX7MNOQ7N11ECRODOLS6M2MSL1Z1' where id=65; -update noar ti set v2='JQB1AV58BGRQQK0ZUJCY3WH0XB67DV9MGLLR03864TD6TKEFNB4L7N2XXJLBULAZPUR2RQCP6AJDUM2IHX9FL8X81EAK39HZIMUZDU4Q2DE894N7D6GCR8IGML0YPLEGPKEDMWXQCX2LGIAR4BW5BV5HV2HZW93EQKWQAAMREEKWQLMFHGW7M1BXCYABJN8WM9AN81MOE41559XZLBWWCWLSDDCJ559SABWTUAX7MNOQ7N11ECRODOLS6M2MSL1Z1' where id=65; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='BIWL5WWAB109BEHRG07GTEAO15240MWVWARPT82JRWBOTUV7OBIO4C51OIHO54JDJ2DVK4G9LEPEQGE2CQ1P92ADSAM0RVV3INHU823TX8VC889YP1YC2LOBD87GRZMKCCMU85H3B11DC9FVFDDOOUAGR8O6N7ROKPKC231HZVRCGBS84BWWSDYMSB69IPBYBIJPPWVXOJGY8XDKMBNQ0Z9D684LHNOTFATXFBXAC6ZRW491Y92WVLQ44DYPR1RCA' where id=65; -update noar ti set v3='BIWL5WWAB109BEHRG07GTEAO15240MWVWARPT82JRWBOTUV7OBIO4C51OIHO54JDJ2DVK4G9LEPEQGE2CQ1P92ADSAM0RVV3INHU823TX8VC889YP1YC2LOBD87GRZMKCCMU85H3B11DC9FVFDDOOUAGR8O6N7ROKPKC231HZVRCGBS84BWWSDYMSB69IPBYBIJPPWVXOJGY8XDKMBNQ0Z9D684LHNOTFATXFBXAC6ZRW491Y92WVLQ44DYPR1RCA' where id=65; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='698QAF0IVRQSE28DJA5L43GQKTT1JI5AQYGN85D28AM2F89AF1QEV50ZLHOR2E63NQIHQ8SG1ZHPZ1XFAPKR47MVXT570CAG5B7V9RFV86B1BIXCHL7ZW00VMQ0XZT86OCGXKTB6RY5JCGVW7DF0ORPEK42RXYKLU54N13HW7QZRCXXK7UJQDN3CC61877S7BRRK67UNJ319QK0W4CHDTAKQKNVGOH7EA4WER7RXDOR1I2MZ0BCKBR20W74IK9QW4' where id=66; -update noar ti set v0='698QAF0IVRQSE28DJA5L43GQKTT1JI5AQYGN85D28AM2F89AF1QEV50ZLHOR2E63NQIHQ8SG1ZHPZ1XFAPKR47MVXT570CAG5B7V9RFV86B1BIXCHL7ZW00VMQ0XZT86OCGXKTB6RY5JCGVW7DF0ORPEK42RXYKLU54N13HW7QZRCXXK7UJQDN3CC61877S7BRRK67UNJ319QK0W4CHDTAKQKNVGOH7EA4WER7RXDOR1I2MZ0BCKBR20W74IK9QW4' where id=66; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='BVA3SX2Z9PCS1MSM7FF4B7NOL1BSM6DFSD8DRUJ6E3B72AK2IHQNZDL9CF1ZZ64ES79VIM3UWRNY0HTNOVPQTLYYV8X4XVMDUVCIF1HO0YVDSY61FB0JE63R1QWQBIZN2VNQCFNKOPRV5OVEH9A18N07BZ3HK7F41TLOJTNE1542S4LU6UIS8YGXEKN2BR8J12JGHM6A51NFV3XHM8R00X6OUQW1CJKHCZR3096G80OJMWGGXXGTV7IAX8WO1FM8D' where id=66; -update noar ti set v1='BVA3SX2Z9PCS1MSM7FF4B7NOL1BSM6DFSD8DRUJ6E3B72AK2IHQNZDL9CF1ZZ64ES79VIM3UWRNY0HTNOVPQTLYYV8X4XVMDUVCIF1HO0YVDSY61FB0JE63R1QWQBIZN2VNQCFNKOPRV5OVEH9A18N07BZ3HK7F41TLOJTNE1542S4LU6UIS8YGXEKN2BR8J12JGHM6A51NFV3XHM8R00X6OUQW1CJKHCZR3096G80OJMWGGXXGTV7IAX8WO1FM8D' where id=66; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='0XZ0ZGTMG3V0ZFQ6JYBLXOKY11SVP6IF7SYZW7QB4DFF8MA2AF36W5NJ8T4S066TWJ55T7VLPN4BS2LJYHSK1QIVTWMLISXX1UIFXO50KO1MS11OUWYA9DSN6L04WRCE03IOQYRHKP9986KQAHCU991PYT9457LFIS74WTMSMGWO3WDY3A5S43LW9TUGK2T5K97ZTG3ROKH05DIT05SIHRDG9CR88OL2AO2S9OA5OKCMCOSS74FGZWUPW0Y3PN1Q0' where id=66; -update noar ti set v2='0XZ0ZGTMG3V0ZFQ6JYBLXOKY11SVP6IF7SYZW7QB4DFF8MA2AF36W5NJ8T4S066TWJ55T7VLPN4BS2LJYHSK1QIVTWMLISXX1UIFXO50KO1MS11OUWYA9DSN6L04WRCE03IOQYRHKP9986KQAHCU991PYT9457LFIS74WTMSMGWO3WDY3A5S43LW9TUGK2T5K97ZTG3ROKH05DIT05SIHRDG9CR88OL2AO2S9OA5OKCMCOSS74FGZWUPW0Y3PN1Q0' where id=66; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='YO0D586IHMZX1B8C2DCNV3RYQMD9KD6COQ4JABGD71L1EYF1ASLO3HLWFSJQNPWWQQ1IN9BOCPEZ4OFKLMLTBICAWMHHO3TVX10J5AVFWTZPC7YAPUO3EVFPFTHN79H82FDE98HY5ZTLOJI235EK7UQH25ESA3GO14Q5AQDWVO9PXILFJ0KH4TB56XS80QY5ED5GHD4STEL7JE87NTVHMGI8129E44RNU6GYOKKVSMC80YGX3C9LEX1MJW5HM5S9O' where id=66; -update noar ti set v3='YO0D586IHMZX1B8C2DCNV3RYQMD9KD6COQ4JABGD71L1EYF1ASLO3HLWFSJQNPWWQQ1IN9BOCPEZ4OFKLMLTBICAWMHHO3TVX10J5AVFWTZPC7YAPUO3EVFPFTHN79H82FDE98HY5ZTLOJI235EK7UQH25ESA3GO14Q5AQDWVO9PXILFJ0KH4TB56XS80QY5ED5GHD4STEL7JE87NTVHMGI8129E44RNU6GYOKKVSMC80YGX3C9LEX1MJW5HM5S9O' where id=66; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='0QHV2YSY3JS1ZXXKYXFEEXTTJD1APH1NKZ20JEPH69432V5SCACYH7RXJEZ0V866WJTDMQZASC6MUI1ARHDRSY7QZY27UXR4HCQV7IKT4WHB55D1DL9DLWV29U5S7V2BF207397J04UF8Z2LLB1GDJMWUHB3BUM1JS7G441LCLHVONHA5Q39X05IZGC4MUS46TBP79QJU6FMCWF7FJD1Y5JYGR0R7804QK4OK58AMKMR0V3PXW53ARTN4A4IY2R0F' where id=67; -update noar ti set v0='0QHV2YSY3JS1ZXXKYXFEEXTTJD1APH1NKZ20JEPH69432V5SCACYH7RXJEZ0V866WJTDMQZASC6MUI1ARHDRSY7QZY27UXR4HCQV7IKT4WHB55D1DL9DLWV29U5S7V2BF207397J04UF8Z2LLB1GDJMWUHB3BUM1JS7G441LCLHVONHA5Q39X05IZGC4MUS46TBP79QJU6FMCWF7FJD1Y5JYGR0R7804QK4OK58AMKMR0V3PXW53ARTN4A4IY2R0F' where id=67; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='HEUXEQC9LEARKUAB3CSE471DMJTC3XKE1M3SBY13Y6OBVKA0SK6OTL4LUZT0OOXL2K3GJAU8HBAOFHVINDQU6OFWT90DFAXJ97E6XFON2TKWEFMDZEK1T9REG076BXB4JBNPRN68ME3Z6T1HRYYXHI5YG3HJOGB6M540EZ4PCY0HUSSFM2I0R97SB3BMILXKYEYGEYVEBDC25614NUQWISOCT3710QEO8XAF42M5RDSG055MF2DLE5RLCJY9VOO6C' where id=67; -update noar ti set v1='HEUXEQC9LEARKUAB3CSE471DMJTC3XKE1M3SBY13Y6OBVKA0SK6OTL4LUZT0OOXL2K3GJAU8HBAOFHVINDQU6OFWT90DFAXJ97E6XFON2TKWEFMDZEK1T9REG076BXB4JBNPRN68ME3Z6T1HRYYXHI5YG3HJOGB6M540EZ4PCY0HUSSFM2I0R97SB3BMILXKYEYGEYVEBDC25614NUQWISOCT3710QEO8XAF42M5RDSG055MF2DLE5RLCJY9VOO6C' where id=67; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='HPH1C6QGUFJVG2CZKPC785GZ8OMYYQ4LWUT0J52VKMQIF4QVXW8Z4PCPAYN0OPTBJHR7SNMKOEETQ3MGBN79486K329C6MVDFX5QJG4LE76AFGFSQZ240ZNTWS3Z2ED8ALOOQO0D79S3YCYK1OKI1225EOJ01ZGUVAY9WL0WO3AHWADP956X9WU07EHB0IMKPJQ40A2CTC1DDU7AMHG18R9YY5ZPRR98XJABECZ80B5N58HK6WKIIP52U736Q38EF' where id=67; -update noar ti set v2='HPH1C6QGUFJVG2CZKPC785GZ8OMYYQ4LWUT0J52VKMQIF4QVXW8Z4PCPAYN0OPTBJHR7SNMKOEETQ3MGBN79486K329C6MVDFX5QJG4LE76AFGFSQZ240ZNTWS3Z2ED8ALOOQO0D79S3YCYK1OKI1225EOJ01ZGUVAY9WL0WO3AHWADP956X9WU07EHB0IMKPJQ40A2CTC1DDU7AMHG18R9YY5ZPRR98XJABECZ80B5N58HK6WKIIP52U736Q38EF' where id=67; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='WFURLW3O0WJEP5Z8S1J3D3KKVQ2QEU65R02H77N9Y8WWJIC3H0DNHH3PJGMHLG0CAE7L910NR1TXW9QRY3R1JBP3SPUM4PHQO9G9JQWZCKQVR0NDMPG41EYI3O5LCXV4UDAD5GOECEQNT1MLDTSQ9ZAK4ULPP3RV13K2UTMYZMX8N6PVGRZDOYWPTGKK8M0ISQBXXVMEXZDCI1EGZXB4QQ2I8Y0PJN5GOM1QD0SSKLCNR3P78IOAP0QK3VJRTYAJ8' where id=67; -update noar ti set v3='WFURLW3O0WJEP5Z8S1J3D3KKVQ2QEU65R02H77N9Y8WWJIC3H0DNHH3PJGMHLG0CAE7L910NR1TXW9QRY3R1JBP3SPUM4PHQO9G9JQWZCKQVR0NDMPG41EYI3O5LCXV4UDAD5GOECEQNT1MLDTSQ9ZAK4ULPP3RV13K2UTMYZMX8N6PVGRZDOYWPTGKK8M0ISQBXXVMEXZDCI1EGZXB4QQ2I8Y0PJN5GOM1QD0SSKLCNR3P78IOAP0QK3VJRTYAJ8' where id=67; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='SH0X13UGX8HL56FVPGWPJXRX9DA4AOCQEJEVPROCNI22GO3O7CKKUG91V32DSR2DOESVXT6VMJFM26QT2BQFNKPY2P1NFDHNHWMPLNYLJ7AI8IL9ZFD0MSDVPUFBBCMB8L7430NKAX5L21A2V9CMCZXUUH9O6T7KWY6MO4Z3713PX4BLTQOQD2BVW0JZTDTDTQWZLCXRQO8UWF96NFONL6QMF0N2RXIJKREO37EOJL8KAHIIKGR4ID33FC3JWAGIK' where id=68; -update noar ti set v0='SH0X13UGX8HL56FVPGWPJXRX9DA4AOCQEJEVPROCNI22GO3O7CKKUG91V32DSR2DOESVXT6VMJFM26QT2BQFNKPY2P1NFDHNHWMPLNYLJ7AI8IL9ZFD0MSDVPUFBBCMB8L7430NKAX5L21A2V9CMCZXUUH9O6T7KWY6MO4Z3713PX4BLTQOQD2BVW0JZTDTDTQWZLCXRQO8UWF96NFONL6QMF0N2RXIJKREO37EOJL8KAHIIKGR4ID33FC3JWAGIK' where id=68; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='XTONFIT2HEX1SIGY1QM512E302HYAGJE0WNYFPAPMTHLX8KTMZFFGAORFVGNLJXHYG09C315O2L2SCBIDFS4RGGH2WB03RXWCUJ6MUKUJ7WODHI7O8BKDIXZFRTCA8B27BS2LDZX2MHUEXY2ESRSZ05CU5LK8TXKZBXBPMKU85ZGO8Q5BNUJ7QYPMJTVF2FNG307B32WP4ZXJXSTFJ7Q95X0I5OSVFYKIY62VYJB8P1R9QL2YFZZ6OE8FGIJORCSW' where id=68; -update noar ti set v1='XTONFIT2HEX1SIGY1QM512E302HYAGJE0WNYFPAPMTHLX8KTMZFFGAORFVGNLJXHYG09C315O2L2SCBIDFS4RGGH2WB03RXWCUJ6MUKUJ7WODHI7O8BKDIXZFRTCA8B27BS2LDZX2MHUEXY2ESRSZ05CU5LK8TXKZBXBPMKU85ZGO8Q5BNUJ7QYPMJTVF2FNG307B32WP4ZXJXSTFJ7Q95X0I5OSVFYKIY62VYJB8P1R9QL2YFZZ6OE8FGIJORCSW' where id=68; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='RY89K8BQULSAX3380IKWDM4327A0KVRXR30KP7138JM19MTFBYDO7J2LJ19ELA21B8W5IAZML9HOTFLA7NPG750N6FN38INLWBAJ3TMDTFSYBII1F8YV4CNE8GOCD3OFB5SZJVJDHOEH4UQTNLDGQN2J7Y3XLRAKJMY1YGJ1WNYDHMTX4OS8KAD253DIL83HFP975HY2WECLVORROCIW0RCIE8FIT2XJE3UZAJFX6CB0WEHY7ARG344LT3RA0JDMU' where id=68; -update noar ti set v2='RY89K8BQULSAX3380IKWDM4327A0KVRXR30KP7138JM19MTFBYDO7J2LJ19ELA21B8W5IAZML9HOTFLA7NPG750N6FN38INLWBAJ3TMDTFSYBII1F8YV4CNE8GOCD3OFB5SZJVJDHOEH4UQTNLDGQN2J7Y3XLRAKJMY1YGJ1WNYDHMTX4OS8KAD253DIL83HFP975HY2WECLVORROCIW0RCIE8FIT2XJE3UZAJFX6CB0WEHY7ARG344LT3RA0JDMU' where id=68; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='K0QQA5MDSGU6MWXGWC8F7T0YS0JNAL4TQNOIP56TMPVUN1QR0Q14GHF4GKZWKRBL01BCXWVIK7LPSH8RK6XBF83GOTH1FHSOT1P670Z9M6MYB7PVDWYHPWDY3VP2CW6P4EJNOWB3MY6UN0CFQ95GHCPTJNSBJ880N6X6ZZC34QYPGIPJ62NK5BHIX8VITCS0DRF9LD9GH67NWBAL9OQB6JMKGI3968IXK81I56OTHW10WCBT1ITQDOXNTANN2BZ4Y' where id=68; -update noar ti set v3='K0QQA5MDSGU6MWXGWC8F7T0YS0JNAL4TQNOIP56TMPVUN1QR0Q14GHF4GKZWKRBL01BCXWVIK7LPSH8RK6XBF83GOTH1FHSOT1P670Z9M6MYB7PVDWYHPWDY3VP2CW6P4EJNOWB3MY6UN0CFQ95GHCPTJNSBJ880N6X6ZZC34QYPGIPJ62NK5BHIX8VITCS0DRF9LD9GH67NWBAL9OQB6JMKGI3968IXK81I56OTHW10WCBT1ITQDOXNTANN2BZ4Y' where id=68; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='F8JII6T7EL9A2FGD4HE506JAZC4P6QI58JI9RGODOBPBX0Y00UJ445PLGE5CQ4XSXAUEYUT6G6MPZDDL3EYDNOVKVEZVYWF0W2N6QBVV6X3GX6SUH0RH4P10LZ8RKS4V2K7VAKZKA2FS86B4LDKWPN0QAQQMXW3FGDW7FS0XLN2MTR03LEYDC0V0QGM2WM3JJIFFKLFJPR7JWYYIVZGLHLRPS83XU2C4PPBW445DELM7QRQR75DW3GYB3P7RSAXQJ' where id=69; -update noar ti set v0='F8JII6T7EL9A2FGD4HE506JAZC4P6QI58JI9RGODOBPBX0Y00UJ445PLGE5CQ4XSXAUEYUT6G6MPZDDL3EYDNOVKVEZVYWF0W2N6QBVV6X3GX6SUH0RH4P10LZ8RKS4V2K7VAKZKA2FS86B4LDKWPN0QAQQMXW3FGDW7FS0XLN2MTR03LEYDC0V0QGM2WM3JJIFFKLFJPR7JWYYIVZGLHLRPS83XU2C4PPBW445DELM7QRQR75DW3GYB3P7RSAXQJ' where id=69; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='UL0VE33M30IXP67YW5TUFCZLX9SKK5B3VRV18OHVV02RB1ZIQ78WDAT685TN3960YG10S2PNL4EF95AKEF0FH0MLMHW4GX85T3HCZXU5I42PNDJ373M26PQ1RWWONT9LJHU905W31PPMCW8F0LU25K17R0EL5D7HH5GCZCHFU306BUREP9I8O4HIU9C58BK9X2Y04SPFCJWFGJE0A8YAPFEIOX0DBCHXBX8P1T6UB9V6AIM2KJOXBQPWITZ7OD31B' where id=69; -update noar ti set v1='UL0VE33M30IXP67YW5TUFCZLX9SKK5B3VRV18OHVV02RB1ZIQ78WDAT685TN3960YG10S2PNL4EF95AKEF0FH0MLMHW4GX85T3HCZXU5I42PNDJ373M26PQ1RWWONT9LJHU905W31PPMCW8F0LU25K17R0EL5D7HH5GCZCHFU306BUREP9I8O4HIU9C58BK9X2Y04SPFCJWFGJE0A8YAPFEIOX0DBCHXBX8P1T6UB9V6AIM2KJOXBQPWITZ7OD31B' where id=69; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='D4UD3SBDHA9JBDOMG893SFTQRM5OYZ3J2M3Q9WNXOIKVAIDIE29YFBF6RPEB4UCO3TBKD0BLC8N0N4JELRPV86CLQHBAB00EMHL3TQ16NVWD8QSODCP4CXR32K3CRIN4PEENNT1B02AHPU31J8OX9N6VRA05OYLGJY03A0338N1K6XQJV7I8G5HZ4YPDEEO5S8QMYSQ0IMQDCDY15QVSP2P0LF127WSNMC83PNQC9E0GASDGRD6BEJ0UWN8Y1IJ94' where id=69; -update noar ti set v2='D4UD3SBDHA9JBDOMG893SFTQRM5OYZ3J2M3Q9WNXOIKVAIDIE29YFBF6RPEB4UCO3TBKD0BLC8N0N4JELRPV86CLQHBAB00EMHL3TQ16NVWD8QSODCP4CXR32K3CRIN4PEENNT1B02AHPU31J8OX9N6VRA05OYLGJY03A0338N1K6XQJV7I8G5HZ4YPDEEO5S8QMYSQ0IMQDCDY15QVSP2P0LF127WSNMC83PNQC9E0GASDGRD6BEJ0UWN8Y1IJ94' where id=69; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='KQ5EYSAZRD9DFQXP8GI1TJSR66GASD0R0QC3Q3D6XQ5C5K0R2RXID4LPOALCTZY5L6YB87HLQG68GE0N2BEPQTHDQD0ENZQAFNHM6WTXME02GPCVYXKZNSKJWNK5VWDTPR1K8E2DV6X41P6YE090437PZPHO48ERONXAQ73XYWDIFTBPXPKYIX8P9W5ONFISC45VDEWNQEWS0EXF0EMMCRIBE1ENG6QDV871LI7SGYMXD1I5CE8C9P6YCJ1K8OOXC' where id=69; -update noar ti set v3='KQ5EYSAZRD9DFQXP8GI1TJSR66GASD0R0QC3Q3D6XQ5C5K0R2RXID4LPOALCTZY5L6YB87HLQG68GE0N2BEPQTHDQD0ENZQAFNHM6WTXME02GPCVYXKZNSKJWNK5VWDTPR1K8E2DV6X41P6YE090437PZPHO48ERONXAQ73XYWDIFTBPXPKYIX8P9W5ONFISC45VDEWNQEWS0EXF0EMMCRIBE1ENG6QDV871LI7SGYMXD1I5CE8C9P6YCJ1K8OOXC' where id=69; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='XK5O7XTAISPFIB4Z0ROPEHZPDBYTMU3HE8O4SYGLGXA3MSF1CURWCJHF6R1N3IKYA4DMTP13JKTOWRGUSJ3B6FPWGR861YYB8EHM4C8C4ZU8C6LZ96TK1YV9D6TGR40WV1D1HVQK8PTSUPPVW13RY34HL6RQ8R41H1VK4RJAYO6VUZ5YI8ASG0ZA28JDVAQ4CPQW84SVDJLW0O8CMXLG3TDHLCKQA6P44I7NR3PI4D0M6Z337XTW17XJHDDEPZQWO' where id=70; -update noar ti set v0='XK5O7XTAISPFIB4Z0ROPEHZPDBYTMU3HE8O4SYGLGXA3MSF1CURWCJHF6R1N3IKYA4DMTP13JKTOWRGUSJ3B6FPWGR861YYB8EHM4C8C4ZU8C6LZ96TK1YV9D6TGR40WV1D1HVQK8PTSUPPVW13RY34HL6RQ8R41H1VK4RJAYO6VUZ5YI8ASG0ZA28JDVAQ4CPQW84SVDJLW0O8CMXLG3TDHLCKQA6P44I7NR3PI4D0M6Z337XTW17XJHDDEPZQWO' where id=70; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='E4LFFSA1J925QOFISTE14MMMS7TJDPBPFHJL1P62IBB6ZQ9LV16SBA297IWYL86064QNSAC8FODZZMTRG5RDXF9PAB5HCV6CFI56OTO2F55OT2MGDE0QHFO8BE53V5Z7SA6DJI6QGQN45WQJ1B5HOT4E5D3JVDJ1Y3R7MQYUN99O0DDLCGTSSGDMGQI4U7VAIR8P0RDGQRLWQGLBN3Z73EEZBUROI2QDIANHKZX0TA7KKBLIMISMPKIE0X2PMW8SM' where id=70; -update noar ti set v1='E4LFFSA1J925QOFISTE14MMMS7TJDPBPFHJL1P62IBB6ZQ9LV16SBA297IWYL86064QNSAC8FODZZMTRG5RDXF9PAB5HCV6CFI56OTO2F55OT2MGDE0QHFO8BE53V5Z7SA6DJI6QGQN45WQJ1B5HOT4E5D3JVDJ1Y3R7MQYUN99O0DDLCGTSSGDMGQI4U7VAIR8P0RDGQRLWQGLBN3Z73EEZBUROI2QDIANHKZX0TA7KKBLIMISMPKIE0X2PMW8SM' where id=70; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='WELHWOKHZZ3O1QOR1MUIKUDC5HW8OSXP2MW0SKCUQTLCQPUWZ1BV3CVEABS1PLQN8EU1KCDQ5ICWW0IK8T963FIDGUKH0IDGQLRP4MH22A3QC6J7AP6S8I6JWZ630SDBVRM3I5ZT7ZIJN0QLI73Z84JXQFRJLF0A9GYYOL03KCTCIOESIKUY8130AUY7VF2BGWXMFEGV2U45EDGKVUP4ILPESV4JXV9FXLMXY1OEY19Q9C5A6YZQNQTBEES9CXFH1' where id=70; -update noar ti set v2='WELHWOKHZZ3O1QOR1MUIKUDC5HW8OSXP2MW0SKCUQTLCQPUWZ1BV3CVEABS1PLQN8EU1KCDQ5ICWW0IK8T963FIDGUKH0IDGQLRP4MH22A3QC6J7AP6S8I6JWZ630SDBVRM3I5ZT7ZIJN0QLI73Z84JXQFRJLF0A9GYYOL03KCTCIOESIKUY8130AUY7VF2BGWXMFEGV2U45EDGKVUP4ILPESV4JXV9FXLMXY1OEY19Q9C5A6YZQNQTBEES9CXFH1' where id=70; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='NN98J202D6MHL1OX7XZP6CB0X67BBW02WJIVUBQB2P491X3NR1C3H5I3MQDN7Q3OXKI7MXTZ3FV4ML1D36A0R5FX849N0G6G2M1UJ6QXJ9WVSOXS2W12746BN2YY54FNQ7N64CCRQ89DPF8L0YR70NCY8OYFR71LRKCSNT3ZEOH23XMHP050HCWTJOQTTKBAMOQDUVGC0YREF4EZX35UDJ4WKM194NIE6QO8W299YKWBGRD6IQGW4F2WOA8OM1TA6' where id=70; -update noar ti set v3='NN98J202D6MHL1OX7XZP6CB0X67BBW02WJIVUBQB2P491X3NR1C3H5I3MQDN7Q3OXKI7MXTZ3FV4ML1D36A0R5FX849N0G6G2M1UJ6QXJ9WVSOXS2W12746BN2YY54FNQ7N64CCRQ89DPF8L0YR70NCY8OYFR71LRKCSNT3ZEOH23XMHP050HCWTJOQTTKBAMOQDUVGC0YREF4EZX35UDJ4WKM194NIE6QO8W299YKWBGRD6IQGW4F2WOA8OM1TA6' where id=70; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='YFRPIK542K92D9ORHSDG0MO6HRMLHASGU1I7N57A6CFWF99HWYVDJAAWC61TL0640QAGTV46V50HKTS9LN764W2M1GQYFEDLWL1FN9A95BSYS5MF2IKYROY382PGSN7VINU781K2XXYSND5VJ2LEDS0TMQHC6XG7RB2P7VZME4UZMAK8U0DNCI5YT2EYV9LIO3EYVQLMKKWBQFLL25VIXRXF0XCDB9NJBFSAWVEJL8C0FGOELC9E6FNJP1JX5JLCH' where id=71; -update noar ti set v0='YFRPIK542K92D9ORHSDG0MO6HRMLHASGU1I7N57A6CFWF99HWYVDJAAWC61TL0640QAGTV46V50HKTS9LN764W2M1GQYFEDLWL1FN9A95BSYS5MF2IKYROY382PGSN7VINU781K2XXYSND5VJ2LEDS0TMQHC6XG7RB2P7VZME4UZMAK8U0DNCI5YT2EYV9LIO3EYVQLMKKWBQFLL25VIXRXF0XCDB9NJBFSAWVEJL8C0FGOELC9E6FNJP1JX5JLCH' where id=71; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='J3XU346XQGSUTTYFKWBTN7IYUOQEXQLFIU9YA6TADH3NMINHBPD8E6ZTZVGXXVVOF1GOMO7A0BMJIYA5ARDZ3ZXVFYPI8596XQ87MLQQZVX0YOKWSJFNHFFG3SFF1OFJ0GDOPZ5UBMJ6CXHX2L26U8I711AD3LPM88H99UXMVTA7Z0ECDKLB4FJ0XIGPWA9QWTSZBJTVXG1XDL1LVN0PZTE2A7LUO9ZLXL0Q4LSQD5MT1OTQL30ZZWSSOHR18KNLV' where id=71; -update noar ti set v1='J3XU346XQGSUTTYFKWBTN7IYUOQEXQLFIU9YA6TADH3NMINHBPD8E6ZTZVGXXVVOF1GOMO7A0BMJIYA5ARDZ3ZXVFYPI8596XQ87MLQQZVX0YOKWSJFNHFFG3SFF1OFJ0GDOPZ5UBMJ6CXHX2L26U8I711AD3LPM88H99UXMVTA7Z0ECDKLB4FJ0XIGPWA9QWTSZBJTVXG1XDL1LVN0PZTE2A7LUO9ZLXL0Q4LSQD5MT1OTQL30ZZWSSOHR18KNLV' where id=71; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='V469URBLW2ZEIAF61MEEW6SQ4UZ7WSBF78RU9OHWM579KG5YAGJCOOL2SV7LBUMZUYV1WJUMHTYCDPJ764B24L0V7EQSHIBQG2KDPUGQHYVCB4QOVKXRQXAJ1X5F6M4U6TAMOIZWYD95PG51NQCC26IJP9HD0FQWEQHCP3ORX0JHMU0GYCVSC86BDTZNN1AAOUI642250ETQPT58EUJ6MDBK7RV5OICFG77ADQ0GINX6D3BNQ8OQ3Y0AWFVBJIKHF' where id=71; -update noar ti set v2='V469URBLW2ZEIAF61MEEW6SQ4UZ7WSBF78RU9OHWM579KG5YAGJCOOL2SV7LBUMZUYV1WJUMHTYCDPJ764B24L0V7EQSHIBQG2KDPUGQHYVCB4QOVKXRQXAJ1X5F6M4U6TAMOIZWYD95PG51NQCC26IJP9HD0FQWEQHCP3ORX0JHMU0GYCVSC86BDTZNN1AAOUI642250ETQPT58EUJ6MDBK7RV5OICFG77ADQ0GINX6D3BNQ8OQ3Y0AWFVBJIKHF' where id=71; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='TIJ8M4LSSCBMCRQH08HT77VAUZ8XFIQZVBXJHL3NXBGRSQE5U28PS3F48SBV2BPIPLVP4RD9YCT8ZQHAWZE3B33957HHHGBJI5909MJZPWRYVOIZ30673AZ6SX85JS8DWXUX1JS09GVMCE0NK4H29RAFDW1IRBGKLXJF9X4XUTWN91DOQJY9OBWHFL99KEU4FIZIF1K5C1EME3AXDEUDC6E4ZJ81PTJCZ4L4VHTTRUZ4EKK0NAFII3D31H4B4Z7WD' where id=71; -update noar ti set v3='TIJ8M4LSSCBMCRQH08HT77VAUZ8XFIQZVBXJHL3NXBGRSQE5U28PS3F48SBV2BPIPLVP4RD9YCT8ZQHAWZE3B33957HHHGBJI5909MJZPWRYVOIZ30673AZ6SX85JS8DWXUX1JS09GVMCE0NK4H29RAFDW1IRBGKLXJF9X4XUTWN91DOQJY9OBWHFL99KEU4FIZIF1K5C1EME3AXDEUDC6E4ZJ81PTJCZ4L4VHTTRUZ4EKK0NAFII3D31H4B4Z7WD' where id=71; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='4923FUZ9C8VB2SS9SMTKUEQSUCPJZ6BMZTZFUSOPYJTC2T2ULN27ETBZLFEFZWW7VQMA7VCSG2AUK8L6A8TDZLTJOMDK8K711AOUGXIPUHZ5K8T04HSHLNO24YR00ML2XFPKY189GFWKT5EJF8FL0TZEHJBQRSNDOI0J68GBH6XYG2U7T7MBJJRMRAAC3DDBU62M7PEOTA0HVZEUZQQ3AO5N3ED4LQJ1J7E1ELSD325MMGH4ORUU4OU454E3TFNPW' where id=72; -update noar ti set v0='4923FUZ9C8VB2SS9SMTKUEQSUCPJZ6BMZTZFUSOPYJTC2T2ULN27ETBZLFEFZWW7VQMA7VCSG2AUK8L6A8TDZLTJOMDK8K711AOUGXIPUHZ5K8T04HSHLNO24YR00ML2XFPKY189GFWKT5EJF8FL0TZEHJBQRSNDOI0J68GBH6XYG2U7T7MBJJRMRAAC3DDBU62M7PEOTA0HVZEUZQQ3AO5N3ED4LQJ1J7E1ELSD325MMGH4ORUU4OU454E3TFNPW' where id=72; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='B7VS1GQXUXDHDE6750REEMOYWEJ93J46HCF5TDBY8M18I7QXJ1Z6GIIWMG2G69DN2TS193N04XFFNLPJK04HK78MILVNVZWO2XQ8Z4V71TBKQT92T4RM00KM7F4D8L3UTH8W5PB28LCTQO9PEUBNXC779BX4ZIO2BJB6C0FMJ0WSNX18FVMQZ0Q4SYK6J6T13COUNIOXXSL3X9F41F2317W6F5EX746NSJS4YYP8K63DZFWD4B01Y3P6NGTK85VEZ' where id=72; -update noar ti set v1='B7VS1GQXUXDHDE6750REEMOYWEJ93J46HCF5TDBY8M18I7QXJ1Z6GIIWMG2G69DN2TS193N04XFFNLPJK04HK78MILVNVZWO2XQ8Z4V71TBKQT92T4RM00KM7F4D8L3UTH8W5PB28LCTQO9PEUBNXC779BX4ZIO2BJB6C0FMJ0WSNX18FVMQZ0Q4SYK6J6T13COUNIOXXSL3X9F41F2317W6F5EX746NSJS4YYP8K63DZFWD4B01Y3P6NGTK85VEZ' where id=72; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='S61LPEQUXN6S0KC9Z1W5QYATW6HZSBX9A15MTONV9MM06P4X29JVFRT9M9KI9Y6SROQC4UNWLDVRHWG4M0DIJASW8JJH3K81JVOUTP8WN2RTBI42XXSNM4LRIIOLNNGRD6GW44EJGUSYM6WGCTU6NERD42WI25YLT090KYIP4IWBLEF91Z2NQEVEOG67FUTLFII8YZ7OIO5F52R5QGHWX63SVILEPIKEZ6MOBRF692OI64Z3A8LLYXRCBG6G2R15Q' where id=72; -update noar ti set v2='S61LPEQUXN6S0KC9Z1W5QYATW6HZSBX9A15MTONV9MM06P4X29JVFRT9M9KI9Y6SROQC4UNWLDVRHWG4M0DIJASW8JJH3K81JVOUTP8WN2RTBI42XXSNM4LRIIOLNNGRD6GW44EJGUSYM6WGCTU6NERD42WI25YLT090KYIP4IWBLEF91Z2NQEVEOG67FUTLFII8YZ7OIO5F52R5QGHWX63SVILEPIKEZ6MOBRF692OI64Z3A8LLYXRCBG6G2R15Q' where id=72; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='KE8FRYTJ2OYB6WOW5AGK9JHM88CUEACNTHYQGJRJQCNYWF9FQ0GOGT9QIOGLTTYI37BBJ2VY2E1H8NII07NIN5AQZM0C18IA4ROV991DHHC0TM0NNQXF45XXSIFT1U1K3ZAQC5YRAGT7R5URPKSWDTLEMM411VW6Q8K8MFTDXJ8FYPUTCHRBMZ595EE8BL3PLGCZP06SS0RXW41XEWXQFN8QAGDJ1LJDGJ5YG8NZNPNSN8S9YP482ZLF6P926WSFU' where id=72; -update noar ti set v3='KE8FRYTJ2OYB6WOW5AGK9JHM88CUEACNTHYQGJRJQCNYWF9FQ0GOGT9QIOGLTTYI37BBJ2VY2E1H8NII07NIN5AQZM0C18IA4ROV991DHHC0TM0NNQXF45XXSIFT1U1K3ZAQC5YRAGT7R5URPKSWDTLEMM411VW6Q8K8MFTDXJ8FYPUTCHRBMZ595EE8BL3PLGCZP06SS0RXW41XEWXQFN8QAGDJ1LJDGJ5YG8NZNPNSN8S9YP482ZLF6P926WSFU' where id=72; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='9CB91B5WD7UMVUJQGVQTD49SCGF6WMV2I0CFXJR3APIWUPWNP8LSR2CY8OL84FBDSRP2MGMNBJ4P31LCXG2IC3ICVJPNM4P0HZQYYY1L5J9BDJOAL4GUS7JCFSZ4WTU53CL385XSK45G56JNU9E6MWHSODZYLZ5AJKVAKYUNUY9UGOMT4RE9K1J9CH1X8WHQQYXODL85IYJ2Z9I8ZE32C6R98O6FEHP06YB7DZBDSCOHS4OA31HEM1O12HC0DYBIC' where id=73; -update noar ti set v0='9CB91B5WD7UMVUJQGVQTD49SCGF6WMV2I0CFXJR3APIWUPWNP8LSR2CY8OL84FBDSRP2MGMNBJ4P31LCXG2IC3ICVJPNM4P0HZQYYY1L5J9BDJOAL4GUS7JCFSZ4WTU53CL385XSK45G56JNU9E6MWHSODZYLZ5AJKVAKYUNUY9UGOMT4RE9K1J9CH1X8WHQQYXODL85IYJ2Z9I8ZE32C6R98O6FEHP06YB7DZBDSCOHS4OA31HEM1O12HC0DYBIC' where id=73; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='S7CPPV8WQDPDQMB5RNVLBUJAKOVJBLST3TEX0MJWZRSDKW4SF2UVZGW9R8WB4C6CR8IOYE4C61X0QCFKGFCBYY5RGZ6XU4S9Q71ACMAUY7VKDJONUFELZY4JI56S8XXUWWNWC16FV3B4TD5TH5TBVNRFKO3Y2XM6VKRG888T2OH82TJ4N7910IPY9Y2GLZ274CV5ZGR23AXHVIBENR1PPHTSHILA9AYW2POKOK63JMQMVW2UD2GIG7452E121LVXP' where id=73; -update noar ti set v1='S7CPPV8WQDPDQMB5RNVLBUJAKOVJBLST3TEX0MJWZRSDKW4SF2UVZGW9R8WB4C6CR8IOYE4C61X0QCFKGFCBYY5RGZ6XU4S9Q71ACMAUY7VKDJONUFELZY4JI56S8XXUWWNWC16FV3B4TD5TH5TBVNRFKO3Y2XM6VKRG888T2OH82TJ4N7910IPY9Y2GLZ274CV5ZGR23AXHVIBENR1PPHTSHILA9AYW2POKOK63JMQMVW2UD2GIG7452E121LVXP' where id=73; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='3S8L7M742YLSQI65DUNEZDD5C771A435R9PDBHHR38AC1ZYMWG0OW6BOG94AIX3ATWJ055JF0X4NENH0CA4L6J0U1XGAQQN70O3LWLR57F7MMISEL41TV895SEC4CXOT4KSR5MBMHJL0FR88ASZWP2KW1RDWN4V9K5XGB0ES1PLVYCDZ45CZCOPP35UFZ3WMG614VUYG4JP7VX96DA6WRTSFQIBP3UAPHGOU05UC0SLZ7DYNPWHOMWEVI0OZI5V40' where id=73; -update noar ti set v2='3S8L7M742YLSQI65DUNEZDD5C771A435R9PDBHHR38AC1ZYMWG0OW6BOG94AIX3ATWJ055JF0X4NENH0CA4L6J0U1XGAQQN70O3LWLR57F7MMISEL41TV895SEC4CXOT4KSR5MBMHJL0FR88ASZWP2KW1RDWN4V9K5XGB0ES1PLVYCDZ45CZCOPP35UFZ3WMG614VUYG4JP7VX96DA6WRTSFQIBP3UAPHGOU05UC0SLZ7DYNPWHOMWEVI0OZI5V40' where id=73; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='4IFPJW2AGP7HSP6CEN4SLLL8XE9Y4UTBLDCOYCIBMK6ZI8WM3BGOO19ZT2LX4G79QMJH7TE7KOPYDR2PAO6APT3JIJ3OGNH85CTBAQZWOY1LXIMDPOG1OS5OZNKDU7SZTUSLETAHRE3VAZ5IAO493S5N8UOST4P2BM6XB92FDVW3C9WSZ9A4O2MOIH79TL4UPKF96HE7MVRRPC2A64ETW4GZO1MH2EPYGWHC1UTKZFJGEFHHUFM46YKA7B1AHZZD2' where id=73; -update noar ti set v3='4IFPJW2AGP7HSP6CEN4SLLL8XE9Y4UTBLDCOYCIBMK6ZI8WM3BGOO19ZT2LX4G79QMJH7TE7KOPYDR2PAO6APT3JIJ3OGNH85CTBAQZWOY1LXIMDPOG1OS5OZNKDU7SZTUSLETAHRE3VAZ5IAO493S5N8UOST4P2BM6XB92FDVW3C9WSZ9A4O2MOIH79TL4UPKF96HE7MVRRPC2A64ETW4GZO1MH2EPYGWHC1UTKZFJGEFHHUFM46YKA7B1AHZZD2' where id=73; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='4U6SRBJ8NTLWAPC4SDPZN3RYZ9YORA5VUTNZRJQ3FQKSYJAR1M1UK2FJJ8B1OMN40KVL43M24TSA7L1AR5A0XYNR6YMUDOC6THT5225G3J01YM5KYXU7BAN0K227SGQ3ZBKU3WMVIEFH9O14YCEEAGQ8WBW6IZSVIHOM0LVA8Y7QEZFWEEEFR7PFKFORQBXENJOCB433JZ3HSAIPZRC24S7W036J5ISPH9LDVP832MG1NY80OOV60URI9JMNGYID9' where id=74; -update noar ti set v0='4U6SRBJ8NTLWAPC4SDPZN3RYZ9YORA5VUTNZRJQ3FQKSYJAR1M1UK2FJJ8B1OMN40KVL43M24TSA7L1AR5A0XYNR6YMUDOC6THT5225G3J01YM5KYXU7BAN0K227SGQ3ZBKU3WMVIEFH9O14YCEEAGQ8WBW6IZSVIHOM0LVA8Y7QEZFWEEEFR7PFKFORQBXENJOCB433JZ3HSAIPZRC24S7W036J5ISPH9LDVP832MG1NY80OOV60URI9JMNGYID9' where id=74; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='SCY94S3SS1B716ZVXOMSQXIV84IAE60B4888EQGK9S6YVWIAK3ITNTA2YS14A1ZOOLSXNTO6PBVIKTWMCKEB8HS0T5GUZT07HJBEQUYT8GVSB79L70LZGRGY9VKK5Y8YQJ98W4XVTBN1B48C9C3X130LLONJA90FQION5E17K8KKEU7GJ8VXKA6GVLAB3G9XJ2NS8G5IKQKZUDTR9NX23NF738ZU6JC50B49RYZJC4JC2WT98OCAJUW46SCHCWJZX' where id=74; -update noar ti set v1='SCY94S3SS1B716ZVXOMSQXIV84IAE60B4888EQGK9S6YVWIAK3ITNTA2YS14A1ZOOLSXNTO6PBVIKTWMCKEB8HS0T5GUZT07HJBEQUYT8GVSB79L70LZGRGY9VKK5Y8YQJ98W4XVTBN1B48C9C3X130LLONJA90FQION5E17K8KKEU7GJ8VXKA6GVLAB3G9XJ2NS8G5IKQKZUDTR9NX23NF738ZU6JC50B49RYZJC4JC2WT98OCAJUW46SCHCWJZX' where id=74; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='3MOJPPCWMCY7LZX1V6N08LUS6P6IF0O2G2B0IAWFYV7VSZAAZ4L4RDOV28ENC4J6IBBS0P7WMBPLT1UNJNO2YNESJC20K1T2V039W6DB4U9AA95A3HROO8HCLVDHI1X5TDLJLWYKYFF05G5GH6JUMPNAHYR0QTCV2NK33N1TIWM2KK21ENP7NKESYWGUI66SDGIJ7R08PIKV2GFT2SXWISXE61UWPDBLO1MWKLA3DU9OUT4WDNEBDK8CX6EUPDVTH' where id=74; -update noar ti set v2='3MOJPPCWMCY7LZX1V6N08LUS6P6IF0O2G2B0IAWFYV7VSZAAZ4L4RDOV28ENC4J6IBBS0P7WMBPLT1UNJNO2YNESJC20K1T2V039W6DB4U9AA95A3HROO8HCLVDHI1X5TDLJLWYKYFF05G5GH6JUMPNAHYR0QTCV2NK33N1TIWM2KK21ENP7NKESYWGUI66SDGIJ7R08PIKV2GFT2SXWISXE61UWPDBLO1MWKLA3DU9OUT4WDNEBDK8CX6EUPDVTH' where id=74; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='2MN0GKNKCTDHL4JG1UNE5BGPMWHKFP3SFIVF787RKBYIYM4V42QL95CZK3ZMDNGL22XWELJ9BRARV4E26FA9ELLLL8FLPS2BL746WO8ZHKFPHQAFHP3N921BQY2Y7B5QH99R6SQ6KG7XD5V25CB8AVBU443FEHB4IZOUSQTODXVYZAQDILSXV440GHY7IJ09FQ1RUBULQPG56JJ7X6JXDN7S1R5ZSRUC368RB27S342XS7OQM07VWM99BRYXIKURK' where id=74; -update noar ti set v3='2MN0GKNKCTDHL4JG1UNE5BGPMWHKFP3SFIVF787RKBYIYM4V42QL95CZK3ZMDNGL22XWELJ9BRARV4E26FA9ELLLL8FLPS2BL746WO8ZHKFPHQAFHP3N921BQY2Y7B5QH99R6SQ6KG7XD5V25CB8AVBU443FEHB4IZOUSQTODXVYZAQDILSXV440GHY7IJ09FQ1RUBULQPG56JJ7X6JXDN7S1R5ZSRUC368RB27S342XS7OQM07VWM99BRYXIKURK' where id=74; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='6FCV3W9RQ4B1P1SNF745MID6YK0F7WDBWW25H2UR539DVV2PQTICFZ3C9QRFZ7ZBNTI2UVVQCCYVZK4VSX7KOULFZEAF0229LMKU9YEYGXW2ZKC0G6IBPPXBH35OATNOZKKGOFWRGJGBQKPUDUZKA83L9A9WLEIUNSVJ7DQZXUYWB4XRLAIDABG7IIXI6TMBG5IC27J3U9DL8GF8M5C8Q57JV222KGMXJVQKVHIIHMOMQA46GOG7EHHPAUINUVX8B' where id=75; -update noar ti set v0='6FCV3W9RQ4B1P1SNF745MID6YK0F7WDBWW25H2UR539DVV2PQTICFZ3C9QRFZ7ZBNTI2UVVQCCYVZK4VSX7KOULFZEAF0229LMKU9YEYGXW2ZKC0G6IBPPXBH35OATNOZKKGOFWRGJGBQKPUDUZKA83L9A9WLEIUNSVJ7DQZXUYWB4XRLAIDABG7IIXI6TMBG5IC27J3U9DL8GF8M5C8Q57JV222KGMXJVQKVHIIHMOMQA46GOG7EHHPAUINUVX8B' where id=75; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='VR4NED14HX9SFOJ6RS62SIRCHHMQO3F4DS1GHLTK1FLBVMJXSIIOD3V34SKQ2YQ8L42A9YV5B4Z1P20IFZ4S2BLLN1NOEH9OCHU5DIAKL34M997K9TU6EZKHNIMBS9OJKTRCP7LJTZZCTVA19GUNQUTJOZCAWEOM8665SC7QKLUM7T76K52DX1ITTPE90L9F00V7IZM54QP6AGZEH6K9W9QYX3MD13TIZAONM333SH8WSZ8Y1GGIHRMKJOSHQBPST' where id=75; -update noar ti set v1='VR4NED14HX9SFOJ6RS62SIRCHHMQO3F4DS1GHLTK1FLBVMJXSIIOD3V34SKQ2YQ8L42A9YV5B4Z1P20IFZ4S2BLLN1NOEH9OCHU5DIAKL34M997K9TU6EZKHNIMBS9OJKTRCP7LJTZZCTVA19GUNQUTJOZCAWEOM8665SC7QKLUM7T76K52DX1ITTPE90L9F00V7IZM54QP6AGZEH6K9W9QYX3MD13TIZAONM333SH8WSZ8Y1GGIHRMKJOSHQBPST' where id=75; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='K44JPUE83N81GY0NRA8JTL4L7RVB36Y1VSSA6FW1525WMM6UX5Z3GQF6EJCD31YVWOX3MBPJLXPE7JOZZ4S9TP2Z2Q9BJY1WJEKGEAKGE40A849FADDQOYMU8UU515ACU1KGHBF4FBBFR96T4ZFZXWGBKQHBZU6U34RWRZ5YR12UMC7LGIECJAS0UK774QOLMN97XVATXTPJGCOR0U7LUH4GUP2ZHZ37QMCH3Z7E91HPP5S8QXWF3TCD67HS7T1EZ' where id=75; -update noar ti set v2='K44JPUE83N81GY0NRA8JTL4L7RVB36Y1VSSA6FW1525WMM6UX5Z3GQF6EJCD31YVWOX3MBPJLXPE7JOZZ4S9TP2Z2Q9BJY1WJEKGEAKGE40A849FADDQOYMU8UU515ACU1KGHBF4FBBFR96T4ZFZXWGBKQHBZU6U34RWRZ5YR12UMC7LGIECJAS0UK774QOLMN97XVATXTPJGCOR0U7LUH4GUP2ZHZ37QMCH3Z7E91HPP5S8QXWF3TCD67HS7T1EZ' where id=75; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='HKHJA63CY8D34IU6BFOOG21VORX8C7M672KRPN0C1TLSDC38MGXI0X1UKV44671YDMLLN3I1A693ZWIQU1D2QFK5QG9LTW723P6OP18YO4NNBNXP66QI61PC27KKYBK83SICHFNO7K37JF1V5NTHTDCTPT7T7JND1R1NEOWUQ0U4NXLLIINLQWK284K74U34OD2R68V2M0OXV123NWAGWE5XWOYU3GU1CH3K5W13UGW2N15G0QU8L7BOPSOQ6Z7I7' where id=75; -update noar ti set v3='HKHJA63CY8D34IU6BFOOG21VORX8C7M672KRPN0C1TLSDC38MGXI0X1UKV44671YDMLLN3I1A693ZWIQU1D2QFK5QG9LTW723P6OP18YO4NNBNXP66QI61PC27KKYBK83SICHFNO7K37JF1V5NTHTDCTPT7T7JND1R1NEOWUQ0U4NXLLIINLQWK284K74U34OD2R68V2M0OXV123NWAGWE5XWOYU3GU1CH3K5W13UGW2N15G0QU8L7BOPSOQ6Z7I7' where id=75; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='1UH6NRKWMVCGYAF3R4Q65BR4JOANCQYV06XPL2FAVYRAWXKFCEBFZ3LUSDSZPHS06KDNU3Z7ZGD0QLRBVVGBVI877CJ4AI8MN9I82HBSYJ86PJV83M734KX6YGUOARKV4MLD5LRMPGFNH4V1ATJQQY5BNVOPMUNGPUVH7XK0V51QNJX390ZHX5J6NY0LJ9NTV2HH6NSD4HAEC4OAFJGRKYYJX6NXL9P1FGY25810IGH3LUVSTNSL91NBCHDG79IFF' where id=76; -update noar ti set v0='1UH6NRKWMVCGYAF3R4Q65BR4JOANCQYV06XPL2FAVYRAWXKFCEBFZ3LUSDSZPHS06KDNU3Z7ZGD0QLRBVVGBVI877CJ4AI8MN9I82HBSYJ86PJV83M734KX6YGUOARKV4MLD5LRMPGFNH4V1ATJQQY5BNVOPMUNGPUVH7XK0V51QNJX390ZHX5J6NY0LJ9NTV2HH6NSD4HAEC4OAFJGRKYYJX6NXL9P1FGY25810IGH3LUVSTNSL91NBCHDG79IFF' where id=76; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='E8R00BKNSPVOV9O06UFQKV6BRY8LLJJO7KCF9OAZQIMLM4VZ6YL8SNW7R5BY1Y737NFD52OKXEFIA1O43XJ6Q24MIHJNQGG69WIN9Z5NAYKU552T15P7D7N56NR55KLAIM1V9VKRQJLXUJLB5L55SDDGFHAQO5MGAYFKIQ26IQ0YD4QEELVWL76DUDG4PNGHT1N6TASQ0LJPFNFU56UAEDQM6DHKN6M4H8XQPTXCKN9AG0XRBMGY4FW3DZ0AUZXXH' where id=76; -update noar ti set v1='E8R00BKNSPVOV9O06UFQKV6BRY8LLJJO7KCF9OAZQIMLM4VZ6YL8SNW7R5BY1Y737NFD52OKXEFIA1O43XJ6Q24MIHJNQGG69WIN9Z5NAYKU552T15P7D7N56NR55KLAIM1V9VKRQJLXUJLB5L55SDDGFHAQO5MGAYFKIQ26IQ0YD4QEELVWL76DUDG4PNGHT1N6TASQ0LJPFNFU56UAEDQM6DHKN6M4H8XQPTXCKN9AG0XRBMGY4FW3DZ0AUZXXH' where id=76; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='K1HD98641FDCHEWHOC1Q43L1EQHYILBBTCPHK3DJYWY7LPG9BMK48RCZFZPZUSGLETR7XFNC5KKK74MZ2FBJVLDNWUD966KG7VSA46D2F0YL3O0NERYCQJF0J8CH8828ILH812JBG7IW7VNE7PREB2MQFP2SFSQRRWQ4SKWPWNWR98ODGDBD4P4SARPEH77SDOEJ0BHMX1NOZJD3KULBJ7UGXSWLQ6DHENTVXI1N7RGRR6P6NHPV58QYZDU3VLUV8' where id=76; -update noar ti set v2='K1HD98641FDCHEWHOC1Q43L1EQHYILBBTCPHK3DJYWY7LPG9BMK48RCZFZPZUSGLETR7XFNC5KKK74MZ2FBJVLDNWUD966KG7VSA46D2F0YL3O0NERYCQJF0J8CH8828ILH812JBG7IW7VNE7PREB2MQFP2SFSQRRWQ4SKWPWNWR98ODGDBD4P4SARPEH77SDOEJ0BHMX1NOZJD3KULBJ7UGXSWLQ6DHENTVXI1N7RGRR6P6NHPV58QYZDU3VLUV8' where id=76; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='7M9XV1GQQJN22D12Z4QU3NVE33X5TRK20DA7ZK6RXOAYP62JWIU0YQWZCFKZN6EJCJ875XIF7YHOE3B3S2CH4UMLAB6KPDVLPNS6T9R82L9D3LEJPBB178YCV1BFDPQGNHYMKBN7SDGYQG1EZS16P36RJ8JTRXX5KBQZH0EGK8MCXLUMLGNB4RXE4W56PPEW5H5L2LSW3KCZQ1XD1SF2EDBUH90O8CIWTFTZTMWZQIK7HZ07SQQNOQ39UMACKHZ7B' where id=76; -update noar ti set v3='7M9XV1GQQJN22D12Z4QU3NVE33X5TRK20DA7ZK6RXOAYP62JWIU0YQWZCFKZN6EJCJ875XIF7YHOE3B3S2CH4UMLAB6KPDVLPNS6T9R82L9D3LEJPBB178YCV1BFDPQGNHYMKBN7SDGYQG1EZS16P36RJ8JTRXX5KBQZH0EGK8MCXLUMLGNB4RXE4W56PPEW5H5L2LSW3KCZQ1XD1SF2EDBUH90O8CIWTFTZTMWZQIK7HZ07SQQNOQ39UMACKHZ7B' where id=76; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='Y0X21K01JOROS64RCVXJIZ5P915919548PNC48QXQV1JYSPX1NKECQ8A27ZXPHF72Y18HEFUPSQGZKY2IASHE6A2XAY32UG5Q5EP61RHRWF0255WKEYX1H8FL30NV3D6TK02L03GYK0KDZ5UFUQ795KZT6ZTB5BDLBDBPKZ45TZU26016JEYNLCT71TVXXOFH9Q5WX8B341T215D8GAQAQ6L0F86X7STD0G6G8KWZOBVI7D8U0WQHS26OVMVEAPHY' where id=77; -update noar ti set v0='Y0X21K01JOROS64RCVXJIZ5P915919548PNC48QXQV1JYSPX1NKECQ8A27ZXPHF72Y18HEFUPSQGZKY2IASHE6A2XAY32UG5Q5EP61RHRWF0255WKEYX1H8FL30NV3D6TK02L03GYK0KDZ5UFUQ795KZT6ZTB5BDLBDBPKZ45TZU26016JEYNLCT71TVXXOFH9Q5WX8B341T215D8GAQAQ6L0F86X7STD0G6G8KWZOBVI7D8U0WQHS26OVMVEAPHY' where id=77; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='3UZNHPJWOTPKIOFVBGEDE3VS34IYJTKA3W1VXYQ4F4F68VR8M7YIE0BSTNR0D3M72S6NYMZWMKK4XBOXLQJXRT4S0OHDENV40ZGIUCQM1RCJOWP11VJ9UUKT10J6PGH76JM60VCKJ0UJO81T0ZKCKAQQ6TVQMZ6AWOEFKKUFOPB0TKO8O3V47TYN6AWBGQDLK85PZ8QC8WBRBBF0504QO8ORODEYVJUEZBKUNEMEPL8I3N4P15XEZV4UUKC13SFFD' where id=77; -update noar ti set v1='3UZNHPJWOTPKIOFVBGEDE3VS34IYJTKA3W1VXYQ4F4F68VR8M7YIE0BSTNR0D3M72S6NYMZWMKK4XBOXLQJXRT4S0OHDENV40ZGIUCQM1RCJOWP11VJ9UUKT10J6PGH76JM60VCKJ0UJO81T0ZKCKAQQ6TVQMZ6AWOEFKKUFOPB0TKO8O3V47TYN6AWBGQDLK85PZ8QC8WBRBBF0504QO8ORODEYVJUEZBKUNEMEPL8I3N4P15XEZV4UUKC13SFFD' where id=77; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='BK0XLWGMSO3G9PUXI2ALOWONIRS4OYW77WJ0VQNHWUVUF2ZFABNZP3LLVA3ELIP3GOX4GL9Y5O0DN2J8SN7YQHGF9FB6ZO6U865WPARKOW01VXAHMRFDQTKH071J5WRB0HAK4SFGJWXIJNBB4G03NRVBUMPVKLZHZ4E8UKZ8AI088HCZPHWKDY6VEK27OECSEYFQMU10IK76922K6BKQISJ78COQJLDZHYHNI1VWBKEW6X4Z1Q2WRJKWYYU4FA9ZG' where id=77; -update noar ti set v2='BK0XLWGMSO3G9PUXI2ALOWONIRS4OYW77WJ0VQNHWUVUF2ZFABNZP3LLVA3ELIP3GOX4GL9Y5O0DN2J8SN7YQHGF9FB6ZO6U865WPARKOW01VXAHMRFDQTKH071J5WRB0HAK4SFGJWXIJNBB4G03NRVBUMPVKLZHZ4E8UKZ8AI088HCZPHWKDY6VEK27OECSEYFQMU10IK76922K6BKQISJ78COQJLDZHYHNI1VWBKEW6X4Z1Q2WRJKWYYU4FA9ZG' where id=77; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='PBYBVDSMU71C3KRULCTZ3MESIFK15Y1X3CYOOV9E3ZHJQRT4YPQJX3XD9F9SGI310NV7CGDL2U9U19A2WI11JORKYW5K6S3VV3TAJJ0M2KODAVRE0B5LB8UMUE17P9L1283C1SO0V1XO5ZFIFSB37YY8FEJJCCD0CO242580XG2GMB9U1C8XQ5X5TPZ18FUMO0L66KTH3WRMC5CGJ05SM3RXUA85Q528Q6YU8URQLWZ6EOXZ5E69AHT7M2OCLOP0V' where id=77; -update noar ti set v3='PBYBVDSMU71C3KRULCTZ3MESIFK15Y1X3CYOOV9E3ZHJQRT4YPQJX3XD9F9SGI310NV7CGDL2U9U19A2WI11JORKYW5K6S3VV3TAJJ0M2KODAVRE0B5LB8UMUE17P9L1283C1SO0V1XO5ZFIFSB37YY8FEJJCCD0CO242580XG2GMB9U1C8XQ5X5TPZ18FUMO0L66KTH3WRMC5CGJ05SM3RXUA85Q528Q6YU8URQLWZ6EOXZ5E69AHT7M2OCLOP0V' where id=77; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='XZZXMF5AN6Z9244CI69NPBUJ8UTW7NCHOIU3SNQYZX67PRRKV22QLOUVN3EVGVY9TDYDROIX6W2P43PP07KZU2EGS4RRIZWBRAD7JCRGG435MDI7GXC3N7UPDYBYFS0MOL15KFFRZPPGG3T9U19GSZ31DYMEXADQ18K4WFOH3DW20MXEQV59V8PRDXY4800SYJH0JB5CP7RUTMPALPIJS6ACBCRKMEQ7AY4V65JFUWYYF2DGFVJSVEA3V32NVCSI8' where id=78; -update noar ti set v0='XZZXMF5AN6Z9244CI69NPBUJ8UTW7NCHOIU3SNQYZX67PRRKV22QLOUVN3EVGVY9TDYDROIX6W2P43PP07KZU2EGS4RRIZWBRAD7JCRGG435MDI7GXC3N7UPDYBYFS0MOL15KFFRZPPGG3T9U19GSZ31DYMEXADQ18K4WFOH3DW20MXEQV59V8PRDXY4800SYJH0JB5CP7RUTMPALPIJS6ACBCRKMEQ7AY4V65JFUWYYF2DGFVJSVEA3V32NVCSI8' where id=78; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='Q50TIDU0O84HE11QSQN4L83ASFGW5XCWM1MC38WZH218A5QN4AKUP4OLHB0HV096HRPQDB7AV2JKKAKDLF46MMKGLSZGNVT79QFPQF0M0R43WXAP26OXGQCHPUM479XZIEYA1A2K2O93W3YWMRD02Z0F5R2D3CPJLWREPPIIVKAJULI9PIH53HCDLMI88YZX1US6ZB5SR4IE68DD7R6N3EGIBG7MU9NECW9HZ39WJKBM8AQF8K7DJ29GULOX99OJG' where id=78; -update noar ti set v1='Q50TIDU0O84HE11QSQN4L83ASFGW5XCWM1MC38WZH218A5QN4AKUP4OLHB0HV096HRPQDB7AV2JKKAKDLF46MMKGLSZGNVT79QFPQF0M0R43WXAP26OXGQCHPUM479XZIEYA1A2K2O93W3YWMRD02Z0F5R2D3CPJLWREPPIIVKAJULI9PIH53HCDLMI88YZX1US6ZB5SR4IE68DD7R6N3EGIBG7MU9NECW9HZ39WJKBM8AQF8K7DJ29GULOX99OJG' where id=78; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='ZX31YBDENGT4ZUZ3M15EHDQ0H4QJYFGZ28UYD1SI2OEW8WTGDXO0US62RRZWTDY9CWP1308P07KTKS6N3NH8J6M9XNPY3U85GTP8IA8BHFF6MHRKD34RJ9CNG523CXSICUHREMOBYTNDFICPLD3Q23WF0LUOCXOT0BTLZO0LHHX5MU52RALZ2B03NDDN7C1F3X0YAZMPT174IORNAW3IAQB9YG9MZOO1HTD3F1GOMO9XNKECX48885PPMF0L8Z2OQ' where id=78; -update noar ti set v2='ZX31YBDENGT4ZUZ3M15EHDQ0H4QJYFGZ28UYD1SI2OEW8WTGDXO0US62RRZWTDY9CWP1308P07KTKS6N3NH8J6M9XNPY3U85GTP8IA8BHFF6MHRKD34RJ9CNG523CXSICUHREMOBYTNDFICPLD3Q23WF0LUOCXOT0BTLZO0LHHX5MU52RALZ2B03NDDN7C1F3X0YAZMPT174IORNAW3IAQB9YG9MZOO1HTD3F1GOMO9XNKECX48885PPMF0L8Z2OQ' where id=78; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='GXYG7808ZF0F88QWX1ZBH44CCAC8GDIOWDUUVWZYSDCZSDGH5LCQZIJZEJLVISFPPJ7KPBOJQOQ6658CU89HLQC9L4ZEAW08OYTTYZFWMNWR8X1E8CFKRXRTRI4U6KTSHNRDOMQYMKD1JWNYXTX08ZO7ANY3CJLBWP6I4JIH5ZTVAGCJQIN2ZRXFJOUKTHY7PEF7QJ259G3DSIWOAMOYACR9FD9PL6OL2YYPH0W3F4A6BJLAP7FTZEDXFXPYEIQTN' where id=78; -update noar ti set v3='GXYG7808ZF0F88QWX1ZBH44CCAC8GDIOWDUUVWZYSDCZSDGH5LCQZIJZEJLVISFPPJ7KPBOJQOQ6658CU89HLQC9L4ZEAW08OYTTYZFWMNWR8X1E8CFKRXRTRI4U6KTSHNRDOMQYMKD1JWNYXTX08ZO7ANY3CJLBWP6I4JIH5ZTVAGCJQIN2ZRXFJOUKTHY7PEF7QJ259G3DSIWOAMOYACR9FD9PL6OL2YYPH0W3F4A6BJLAP7FTZEDXFXPYEIQTN' where id=78; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='PMJHK06HYCSFCNMRFGWMWU44Q1BW8YQ11GHJW88ADUGZ8JQQKFNQH5QKMC1TAVE2AI4U409H0DV2OSD051332FEMN2K3J6E6O7BVKH3R5NGN6WCR8GUXF9QNUYE9QCY1Y5QCU4R211JGD1NIP2GPQINWEV354V2GAVXC0WUPBSZ0YRLC4WW2ADIGQQMY8PK5U7WX4TJ59KXAKNWSNN1JJWVBQHM4O9SNHMN52UW0J1YDTP6KCFA6DB6QZVFAZUPVN' where id=79; -update noar ti set v0='PMJHK06HYCSFCNMRFGWMWU44Q1BW8YQ11GHJW88ADUGZ8JQQKFNQH5QKMC1TAVE2AI4U409H0DV2OSD051332FEMN2K3J6E6O7BVKH3R5NGN6WCR8GUXF9QNUYE9QCY1Y5QCU4R211JGD1NIP2GPQINWEV354V2GAVXC0WUPBSZ0YRLC4WW2ADIGQQMY8PK5U7WX4TJ59KXAKNWSNN1JJWVBQHM4O9SNHMN52UW0J1YDTP6KCFA6DB6QZVFAZUPVN' where id=79; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='ANZCL9NTECQ337BYT0I9ZQW2XLBGK1OMIU8CPE3JIIX4ITETBTBLI432NBNXQ4ZS7I92JAFUUTGULJ1I5FMSTX07IUXDMM529ZSIQYYQKXGG9K6U036KEYAD21S6P2CSLAICAAWYA8GVRMZNCWTLP1JFTSHXVM1RPOV184WA698ON67GWKE9VUB2XFE69OA0A6M0ZGIVUPT4OD7J6HLIJCKK3ED2LS2PICTBG23UO5S3NCYEKDNMWIIVP5PZRBY0K' where id=79; -update noar ti set v1='ANZCL9NTECQ337BYT0I9ZQW2XLBGK1OMIU8CPE3JIIX4ITETBTBLI432NBNXQ4ZS7I92JAFUUTGULJ1I5FMSTX07IUXDMM529ZSIQYYQKXGG9K6U036KEYAD21S6P2CSLAICAAWYA8GVRMZNCWTLP1JFTSHXVM1RPOV184WA698ON67GWKE9VUB2XFE69OA0A6M0ZGIVUPT4OD7J6HLIJCKK3ED2LS2PICTBG23UO5S3NCYEKDNMWIIVP5PZRBY0K' where id=79; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='ERC73LHB2CVEY9C5416UXYTRMK7L5STH2Q9CQHRYD7CQKKG2QQSZDRXJ16ELIR8W73VB5HO15G93XO4MFB52IUJUBT8V4LGQN9B8ABGR26RUYSRPL73OOSTV7W2HWZABQ8DEQ3B3TZULKZ2J7MOV2VMKQKUFBJEOWV9IRXXO28GRAMY1M8Q9G0CX4FZE4D5J1WXWA1W0AG4YLTOQ1JR3XAMU9MXOZ7NH295DAYUL95N4RIHVCPT3PVR2959H1W7SY' where id=79; -update noar ti set v2='ERC73LHB2CVEY9C5416UXYTRMK7L5STH2Q9CQHRYD7CQKKG2QQSZDRXJ16ELIR8W73VB5HO15G93XO4MFB52IUJUBT8V4LGQN9B8ABGR26RUYSRPL73OOSTV7W2HWZABQ8DEQ3B3TZULKZ2J7MOV2VMKQKUFBJEOWV9IRXXO28GRAMY1M8Q9G0CX4FZE4D5J1WXWA1W0AG4YLTOQ1JR3XAMU9MXOZ7NH295DAYUL95N4RIHVCPT3PVR2959H1W7SY' where id=79; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='4I4JFAAGMW4T3BM9YUVER5IZ6U9U1C9079H6S360DJ96S2ES8HY3ERN7LUB6JF737F6UWKIYRHNMFLCB8GM3X8L9PNENBEA6UGX3509HB5OYZCW4LE49JNJX0NK02TJHUH79YQSO6DVBBPXNFMRPJ0B68FF6HZIE18EC502QLPVKLM4RD18PPXCBP9ONOPFFFCX6LTKNA19T47GM7KUNFSN6PCUTT6CHINZOUJMHIHRTZW2OOVWYB5YPKJSODEERV' where id=79; -update noar ti set v3='4I4JFAAGMW4T3BM9YUVER5IZ6U9U1C9079H6S360DJ96S2ES8HY3ERN7LUB6JF737F6UWKIYRHNMFLCB8GM3X8L9PNENBEA6UGX3509HB5OYZCW4LE49JNJX0NK02TJHUH79YQSO6DVBBPXNFMRPJ0B68FF6HZIE18EC502QLPVKLM4RD18PPXCBP9ONOPFFFCX6LTKNA19T47GM7KUNFSN6PCUTT6CHINZOUJMHIHRTZW2OOVWYB5YPKJSODEERV' where id=79; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='OGE1PNX6W81XKL4S9J9EM8U3BZRE3ZJQ2V2BGONQ3I5RYG31H4DRLZ233WZ28UUH1KYOH95KUCC3EE78CX3A908SAM25AEIBWAWOY8I810IO4PGV6DAWPDFNXHJZUMXFK7GQKUAIKZK60C7C1MR295WWAQCBS8P9156WK1FA724FZ0ECYMPICO37ALT7QHAD1E27Z3WF6GJ9HD3GYZPDVMMT3TDBXH4KVCF5RY6ZQTRSFU9O3S9APGV4YZX15E9CT' where id=80; -update noar ti set v0='OGE1PNX6W81XKL4S9J9EM8U3BZRE3ZJQ2V2BGONQ3I5RYG31H4DRLZ233WZ28UUH1KYOH95KUCC3EE78CX3A908SAM25AEIBWAWOY8I810IO4PGV6DAWPDFNXHJZUMXFK7GQKUAIKZK60C7C1MR295WWAQCBS8P9156WK1FA724FZ0ECYMPICO37ALT7QHAD1E27Z3WF6GJ9HD3GYZPDVMMT3TDBXH4KVCF5RY6ZQTRSFU9O3S9APGV4YZX15E9CT' where id=80; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='XAAQGPLKVSALYLCKCRXFLKQEV8E4R671MNWV1J3TF21H7LVUCK4I94P6JW1SD9A8AETHG4DA1WC46V7WOECUUC8DTKBYJWVY3456N191V2U5PKLDN22P0TE6DFHX6JR0WKDE91JY6ZI6BLFXBJYY2H4ZZQLYMWGOPLGPZ2CLBCBVWYZF3I0WLSDX48U2LF453UYXR6LB35D2DXXDD0TBAAGJQF3XCX3C2A023DELGQQFNIG15VTW7XTDI4IAFH08H' where id=80; -update noar ti set v1='XAAQGPLKVSALYLCKCRXFLKQEV8E4R671MNWV1J3TF21H7LVUCK4I94P6JW1SD9A8AETHG4DA1WC46V7WOECUUC8DTKBYJWVY3456N191V2U5PKLDN22P0TE6DFHX6JR0WKDE91JY6ZI6BLFXBJYY2H4ZZQLYMWGOPLGPZ2CLBCBVWYZF3I0WLSDX48U2LF453UYXR6LB35D2DXXDD0TBAAGJQF3XCX3C2A023DELGQQFNIG15VTW7XTDI4IAFH08H' where id=80; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='3L080BAQAUV1E5NDE673QQ57Q2RFIMNSPGDJRJHV2U7NJ67QJ6NDBKFOIF4WEOUVBOZ5MGDAG8A7KS0SP83WWKPYEMALJ704N66IZLSWL27CUMEWG1HXOK1LYIJFH2VHD719WDTV9BXG1GCSDIUUPK0LN5T5EPXDM5K4BZJG7YH5PLTOPZCO8TKB7TIDCWBQJNBGOH7IDEJTHJTNUK0QAQ0OFTWXU41NDGDW8W2QG3KX6MY6QV63UXJTLEI0EJ6KY' where id=80; -update noar ti set v2='3L080BAQAUV1E5NDE673QQ57Q2RFIMNSPGDJRJHV2U7NJ67QJ6NDBKFOIF4WEOUVBOZ5MGDAG8A7KS0SP83WWKPYEMALJ704N66IZLSWL27CUMEWG1HXOK1LYIJFH2VHD719WDTV9BXG1GCSDIUUPK0LN5T5EPXDM5K4BZJG7YH5PLTOPZCO8TKB7TIDCWBQJNBGOH7IDEJTHJTNUK0QAQ0OFTWXU41NDGDW8W2QG3KX6MY6QV63UXJTLEI0EJ6KY' where id=80; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='XOPCY9TJ5PBMNYCRPGISOJ1E1Z5PM55QBCN2ER3MEAMP31RS2TTGFR8L7WLR6EMVQ0GY5PXFPRGZG2QWHGLJ4WV9ULB2YAYM9TK9P387LH6SMCMXB9ZVQ525GI2C13FUL58QKSHALKSRKLP47NZNT4Y3YGSYUNM5IFIFSN4ZIYLMJ060GMIW0HNOW0PVVDNQQWRI5K9CUXREFP6ENRXBQUEFLZGSBHXOX5NXES3OG4W4QN87UF8TOOWIZHUM3L4K1' where id=80; -update noar ti set v3='XOPCY9TJ5PBMNYCRPGISOJ1E1Z5PM55QBCN2ER3MEAMP31RS2TTGFR8L7WLR6EMVQ0GY5PXFPRGZG2QWHGLJ4WV9ULB2YAYM9TK9P387LH6SMCMXB9ZVQ525GI2C13FUL58QKSHALKSRKLP47NZNT4Y3YGSYUNM5IFIFSN4ZIYLMJ060GMIW0HNOW0PVVDNQQWRI5K9CUXREFP6ENRXBQUEFLZGSBHXOX5NXES3OG4W4QN87UF8TOOWIZHUM3L4K1' where id=80; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='HVKWOFNPTF1XMCLUA128Z0FL6MS60M2AUTQ3QLM4QH4VRELRLKZQTX8UW93T26WJUSAL9936LRKCUIMS8D500DEP9WFJUOJ6KFF7IH1FCT0YTIRUUEOCCJD4FYX70D89BT3HXBDV7IFHRMRHM7GQAUD1KJGKQ0SLPOFKS2Z0PCRRSZ9XYW21CZ82ZAFCCWTT5CNWA41QU31F7EVA27E2WNJM05WC96LMAU5V0KL89IFGRNE67NPVHQSOGVPCOCDS8' where id=81; -update noar ti set v0='HVKWOFNPTF1XMCLUA128Z0FL6MS60M2AUTQ3QLM4QH4VRELRLKZQTX8UW93T26WJUSAL9936LRKCUIMS8D500DEP9WFJUOJ6KFF7IH1FCT0YTIRUUEOCCJD4FYX70D89BT3HXBDV7IFHRMRHM7GQAUD1KJGKQ0SLPOFKS2Z0PCRRSZ9XYW21CZ82ZAFCCWTT5CNWA41QU31F7EVA27E2WNJM05WC96LMAU5V0KL89IFGRNE67NPVHQSOGVPCOCDS8' where id=81; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='GNOOCOB7KGE3IX7P29O9OPRXYYEWN6JEC2RZ79BY87753GSDM4NCODWAX7FQI1YQI8BGDFF93Y50USRWZGGBHCSCKHF62NUNQC48B5YDX9BDEFIODJDXRESB7H9UC54NUYEPK99B0TWI52CIY4I6N5AK10HZDD5S6HSERVS3KMVJR3MAATX05SN4WQRRBWDP9B2ZTEO957LXKKCMW6D7M09MG3GHR3L2K6XNAVRFN0AFH1W4TJ140426UVALCPDO8' where id=81; -update noar ti set v1='GNOOCOB7KGE3IX7P29O9OPRXYYEWN6JEC2RZ79BY87753GSDM4NCODWAX7FQI1YQI8BGDFF93Y50USRWZGGBHCSCKHF62NUNQC48B5YDX9BDEFIODJDXRESB7H9UC54NUYEPK99B0TWI52CIY4I6N5AK10HZDD5S6HSERVS3KMVJR3MAATX05SN4WQRRBWDP9B2ZTEO957LXKKCMW6D7M09MG3GHR3L2K6XNAVRFN0AFH1W4TJ140426UVALCPDO8' where id=81; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='WYJ9Z0PH4GMGW3Q8HA0M8LJTWEL32CELY7PRWFHUZGN22LXS4YP7OPG39Q056DWRRDTEINCDGV5DDEV7V0V37CSH3L90I5LFZ5QPCSYKHZNMSF1F3C5FYC3I2QBD5GJLRJYMWCYQRH9AADH9K3MF7PX582SQQISFU5X8OF1JLYZNABO0RWNP1TID9FOSV01ZXEL7A2EZGBL6H56RGA0BGC4I7EI504VAAWYHW7PDSMPZTRM2UXNKC765U1DAD6JQ6' where id=81; -update noar ti set v2='WYJ9Z0PH4GMGW3Q8HA0M8LJTWEL32CELY7PRWFHUZGN22LXS4YP7OPG39Q056DWRRDTEINCDGV5DDEV7V0V37CSH3L90I5LFZ5QPCSYKHZNMSF1F3C5FYC3I2QBD5GJLRJYMWCYQRH9AADH9K3MF7PX582SQQISFU5X8OF1JLYZNABO0RWNP1TID9FOSV01ZXEL7A2EZGBL6H56RGA0BGC4I7EI504VAAWYHW7PDSMPZTRM2UXNKC765U1DAD6JQ6' where id=81; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='DS8WQ78VGLXXIWT4BR4KORNH3PN74C47T4Z4H9YE8QS4W71JA5VGS1M9YBLXQYI8IH0OTPMW9UD4BTFSTAOD5W08L1Z8UF8D6EWL5V6BQ9VN81KBQC99TJNLXXBL8R5JS8DH4TZ6B11GY79HNI5VZCSXUJJZLREQP4UBNUD6LNXA5F878DZLEESJXGCHXH4GN9AWPK5C93ELSCIAJU6PMPK4898L4BGH1ZTZR9YOW06IXD1EOCERBTGLQP35OJ6T7' where id=81; -update noar ti set v3='DS8WQ78VGLXXIWT4BR4KORNH3PN74C47T4Z4H9YE8QS4W71JA5VGS1M9YBLXQYI8IH0OTPMW9UD4BTFSTAOD5W08L1Z8UF8D6EWL5V6BQ9VN81KBQC99TJNLXXBL8R5JS8DH4TZ6B11GY79HNI5VZCSXUJJZLREQP4UBNUD6LNXA5F878DZLEESJXGCHXH4GN9AWPK5C93ELSCIAJU6PMPK4898L4BGH1ZTZR9YOW06IXD1EOCERBTGLQP35OJ6T7' where id=81; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='Z1AFFAFJ8HEXQ6KWLXHTWSQME27Q0UPVYC5F0UP14OWUINMNXPLM0AIYR1VOCWF6MOQRNZ2ESBK6OD5Y3YCIZLKEHS6RX0K1U6JSGEGKODHSRHOZ9WKVKSPP11U9HHQH7W5IUXRWINAT837WDUXVOQF9R1YEHF9KYPM1NN09HMP7P0U7CCVTM3RNLBCSMCVQAJ4EA84ZTPXWEKOA8327TKU27BA8LDXZM3EUBGK7LWP8CZT8H7FZW26LR5Y6QRG6H' where id=82; -update noar ti set v0='Z1AFFAFJ8HEXQ6KWLXHTWSQME27Q0UPVYC5F0UP14OWUINMNXPLM0AIYR1VOCWF6MOQRNZ2ESBK6OD5Y3YCIZLKEHS6RX0K1U6JSGEGKODHSRHOZ9WKVKSPP11U9HHQH7W5IUXRWINAT837WDUXVOQF9R1YEHF9KYPM1NN09HMP7P0U7CCVTM3RNLBCSMCVQAJ4EA84ZTPXWEKOA8327TKU27BA8LDXZM3EUBGK7LWP8CZT8H7FZW26LR5Y6QRG6H' where id=82; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='S4NWT2J6P6SYKFPVUIJ3KYGIVY7H2354FD29C0C7GQ3FNBA998IT9GNPHK1PL7TR3T72MYLN76PQ73YUPW3VF3PD64B708NZMZ4KW85WFL3ESORTNAKGXEAOEAF5J8N0ACZMZRY3UTMI7OO3G9DMRUXCJHQ95944VX8QN4PD0L3AQFD847I425R5VSOGQ9XVKYKU7W8A7LZW2R6VY77VLVSULK0OOPZK4S0Y36MEIESDA7I4XEUT8Q3OF0CD7A9IZ' where id=82; -update noar ti set v1='S4NWT2J6P6SYKFPVUIJ3KYGIVY7H2354FD29C0C7GQ3FNBA998IT9GNPHK1PL7TR3T72MYLN76PQ73YUPW3VF3PD64B708NZMZ4KW85WFL3ESORTNAKGXEAOEAF5J8N0ACZMZRY3UTMI7OO3G9DMRUXCJHQ95944VX8QN4PD0L3AQFD847I425R5VSOGQ9XVKYKU7W8A7LZW2R6VY77VLVSULK0OOPZK4S0Y36MEIESDA7I4XEUT8Q3OF0CD7A9IZ' where id=82; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='FTICG6DF3C5TLX9AIU7AGG28LDH5JM36AY5I6CM6Q5ZPPCK0ESHK2YII7IZ4USI6KEW9YBW1FI95C367O7JVU3JSFJJX7JMT2E2TLXMP5ZOLHAOD0H5UUZQRLFPU83V6TRLZ6DSR9BG97HHK4ENQ926FJD01H7OTC4F11PBAMB40RUGJT9KQUJU5MGQY4WE21MD09KVKQWFQS3334C2QMF1C9MYT11P6TGYOT77W96F8HDS84SZJGP1W7EVCM9Y1D' where id=82; -update noar ti set v2='FTICG6DF3C5TLX9AIU7AGG28LDH5JM36AY5I6CM6Q5ZPPCK0ESHK2YII7IZ4USI6KEW9YBW1FI95C367O7JVU3JSFJJX7JMT2E2TLXMP5ZOLHAOD0H5UUZQRLFPU83V6TRLZ6DSR9BG97HHK4ENQ926FJD01H7OTC4F11PBAMB40RUGJT9KQUJU5MGQY4WE21MD09KVKQWFQS3334C2QMF1C9MYT11P6TGYOT77W96F8HDS84SZJGP1W7EVCM9Y1D' where id=82; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='Y3MGK8MKGSBMROFRXDIMDWRYAJWGPQQ8NWVAHYQX4AWKTAL1FPJKQNTQGRZCMH5WJMP9W4AB2C3270F03CDB082Z2N2X8G1CJ8Y9KA6QKG0Y3CUYSM13E88OV9CZP9LGK449XU2SIRPMLY5LD1U15H4ED6BDJNHQI1Q7SO8XFCKR07UEKFZ2VNWDPXSQ5D8EPI4LN90XDLK616GH693F5YZ20DQOJ3VN31M6ZDXH333ERFSHJ9OSMFEMHBR7TSCMP' where id=82; -update noar ti set v3='Y3MGK8MKGSBMROFRXDIMDWRYAJWGPQQ8NWVAHYQX4AWKTAL1FPJKQNTQGRZCMH5WJMP9W4AB2C3270F03CDB082Z2N2X8G1CJ8Y9KA6QKG0Y3CUYSM13E88OV9CZP9LGK449XU2SIRPMLY5LD1U15H4ED6BDJNHQI1Q7SO8XFCKR07UEKFZ2VNWDPXSQ5D8EPI4LN90XDLK616GH693F5YZ20DQOJ3VN31M6ZDXH333ERFSHJ9OSMFEMHBR7TSCMP' where id=82; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='OTMLOVFELN5DWW9P8ZQYJ3DGFDA5MQVEIC42HBGGXZ5TYKZR9RGJSJGNAK7IYPTMUIFDOLGWCSVF61H2JLO8DIRSR1MBOEUMGS7NZKKU5IK74JQATCK7KP3D7M3XH11X8TL0014PT7XER24EC3VLW8A0UF9HNSZHNO5O0JWIJI6FJSBP1ZKOIG2V6ZCLE8K2C8C5HXZN2RI69N4IH7YW09INDH16B9YA5ZJE3D4QW9OVFKX3P44V0PO7CKVTF7XOC' where id=83; -update noar ti set v0='OTMLOVFELN5DWW9P8ZQYJ3DGFDA5MQVEIC42HBGGXZ5TYKZR9RGJSJGNAK7IYPTMUIFDOLGWCSVF61H2JLO8DIRSR1MBOEUMGS7NZKKU5IK74JQATCK7KP3D7M3XH11X8TL0014PT7XER24EC3VLW8A0UF9HNSZHNO5O0JWIJI6FJSBP1ZKOIG2V6ZCLE8K2C8C5HXZN2RI69N4IH7YW09INDH16B9YA5ZJE3D4QW9OVFKX3P44V0PO7CKVTF7XOC' where id=83; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='0MP1KZYYN416GXEW0YIGMX1DK05PNGEJHH0WAK03J64VVDCKPB7675TF8AZTESKARPVLHCHT9BGVCM12QT7OZ2IWIB87G7NU0O02VIW5L3VSWFIG2MIG82O8RI7VQ696LQAWS4XI8R97EJK0ZF5I6V564A15L8YV5UDPQAEPFJKQMLZ9BBX961E3TGUUAKGDPVNU49ILB4BOTIIKYR7WXCXY3OTD92Q9F8PS3I81DKM0FQDQCKDGSHHNV94ZOFD8T' where id=83; -update noar ti set v1='0MP1KZYYN416GXEW0YIGMX1DK05PNGEJHH0WAK03J64VVDCKPB7675TF8AZTESKARPVLHCHT9BGVCM12QT7OZ2IWIB87G7NU0O02VIW5L3VSWFIG2MIG82O8RI7VQ696LQAWS4XI8R97EJK0ZF5I6V564A15L8YV5UDPQAEPFJKQMLZ9BBX961E3TGUUAKGDPVNU49ILB4BOTIIKYR7WXCXY3OTD92Q9F8PS3I81DKM0FQDQCKDGSHHNV94ZOFD8T' where id=83; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='9CRFIG074L6A6UIQRVPP5GFXXHPFN4SQI26AFPNRIYI49H5UNA63CXD39QIT8GW3U8V9DKPNGW4WJY9CMKL7K32P559F5HHC7DOD79V8FD8CQ8D2P4VZJTJCHMVAADTTO32XX7WBU9EXTI21XMU8QR4MPQN5SH29V0IOW2BUI3AHIXSYPV95RSMREPIRN29R6XVU9N3B9G7RQEX0I39LTVDYBEYGLTPE8SF7KJCJS9J9ODRJSTSKA4ULXG7ILKACZ' where id=83; -update noar ti set v2='9CRFIG074L6A6UIQRVPP5GFXXHPFN4SQI26AFPNRIYI49H5UNA63CXD39QIT8GW3U8V9DKPNGW4WJY9CMKL7K32P559F5HHC7DOD79V8FD8CQ8D2P4VZJTJCHMVAADTTO32XX7WBU9EXTI21XMU8QR4MPQN5SH29V0IOW2BUI3AHIXSYPV95RSMREPIRN29R6XVU9N3B9G7RQEX0I39LTVDYBEYGLTPE8SF7KJCJS9J9ODRJSTSKA4ULXG7ILKACZ' where id=83; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='VE01PQ912HNRHFOE9D944S39B7OISUTX4XQ0KMH24FOJIQF2EYBP4OHOQY6Q7MIEIN0ST2GVR9QQPTLIEKPZ7HHAO4UIQYATG7N2QF9RZIAQA4GCRRFXM5PE0H2AG4HPDLG4RILYMB44VVZ6J7092Q1UVBXUC090R9A6OPJWXB657XCT8CBN13MFPQ16I22D6W6X4C1RCBI73KRH2Q6LGLU611BXUWQKX4TGFK2TS76KVWHMRCOLYQ4ZVRLQLO4P9' where id=83; -update noar ti set v3='VE01PQ912HNRHFOE9D944S39B7OISUTX4XQ0KMH24FOJIQF2EYBP4OHOQY6Q7MIEIN0ST2GVR9QQPTLIEKPZ7HHAO4UIQYATG7N2QF9RZIAQA4GCRRFXM5PE0H2AG4HPDLG4RILYMB44VVZ6J7092Q1UVBXUC090R9A6OPJWXB657XCT8CBN13MFPQ16I22D6W6X4C1RCBI73KRH2Q6LGLU611BXUWQKX4TGFK2TS76KVWHMRCOLYQ4ZVRLQLO4P9' where id=83; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='ZJB6MJMV1LCAKQIJ5JYA6YCNIH1QOLIG5DDLMMXBVJ2NQHKNRIUA0PT2VBB5YBVCRF9TZ0OG7BYOTVAI6XT6GW0GAIQ8MN0RC3S1OIEYK1VBXUEB76AVATQ0HI9GB4T3DWF8AJJFCJ8HQ82ISMHHOKUJTXEO0MXDJWKPCZMR50HNX3H4VDOUBISUKARQRVK54ZNLO44KIW7S2S2YLGRM9YXD37IV33KEYIBN3XQBNMIPCXE3BIGJWS34N61B8J73V' where id=84; -update noar ti set v0='ZJB6MJMV1LCAKQIJ5JYA6YCNIH1QOLIG5DDLMMXBVJ2NQHKNRIUA0PT2VBB5YBVCRF9TZ0OG7BYOTVAI6XT6GW0GAIQ8MN0RC3S1OIEYK1VBXUEB76AVATQ0HI9GB4T3DWF8AJJFCJ8HQ82ISMHHOKUJTXEO0MXDJWKPCZMR50HNX3H4VDOUBISUKARQRVK54ZNLO44KIW7S2S2YLGRM9YXD37IV33KEYIBN3XQBNMIPCXE3BIGJWS34N61B8J73V' where id=84; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='VHFC8M5QVI85GA5BBKL57FLV4OWT1WF3AOQTVPDNS5KTSSCG1M5YR58AFFOA7XOIVMKCUOG7VAKUYH0QPPD068FTLQ03RU2FGQXM126NMTL6CQHDAXGCV7EKN7VPCPKQWCI4MRCV0WUX1NNG2ZCID4LQHRHAQA95542AV8COA35FUO0GMQ37L62HBZ3VFG369W4KTNPYR4TR8QM6JGQT6RTZW8KJRUO51S6L45OLBFWY6KF6BNDFRU2G59E0NM2GF' where id=84; -update noar ti set v1='VHFC8M5QVI85GA5BBKL57FLV4OWT1WF3AOQTVPDNS5KTSSCG1M5YR58AFFOA7XOIVMKCUOG7VAKUYH0QPPD068FTLQ03RU2FGQXM126NMTL6CQHDAXGCV7EKN7VPCPKQWCI4MRCV0WUX1NNG2ZCID4LQHRHAQA95542AV8COA35FUO0GMQ37L62HBZ3VFG369W4KTNPYR4TR8QM6JGQT6RTZW8KJRUO51S6L45OLBFWY6KF6BNDFRU2G59E0NM2GF' where id=84; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='CISL18PE36Z2RYM3TMO4S91FF0PQDRLL0CSDUYBFUDDFNJAS38MX1XZJKYHMTETY7BNV8Z9TVCS5RXI1A1FP8VYAQ8KNDSZNY7WIVDOC4WATSO5AGX7K0WZCEZM2U060TDE0TL3JJLFVT7CPLOY1JP57X12R7NHHQS4CX9DH7NUAK13LJSCBVGE9BAVFFT1I1GA1TTLXFUG0B15TACPL3FINNS48HM3UVIQ90ELSWRRZUBNTTNVKAL6KEVO87WBZS' where id=84; -update noar ti set v2='CISL18PE36Z2RYM3TMO4S91FF0PQDRLL0CSDUYBFUDDFNJAS38MX1XZJKYHMTETY7BNV8Z9TVCS5RXI1A1FP8VYAQ8KNDSZNY7WIVDOC4WATSO5AGX7K0WZCEZM2U060TDE0TL3JJLFVT7CPLOY1JP57X12R7NHHQS4CX9DH7NUAK13LJSCBVGE9BAVFFT1I1GA1TTLXFUG0B15TACPL3FINNS48HM3UVIQ90ELSWRRZUBNTTNVKAL6KEVO87WBZS' where id=84; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='ISGODRA200H08GXEPOU3MXIV4IJGMDUKIQCYL2QDVM9XJFUSNP0X5MGER3IKQ6D5J6E6DEPEZW8ICTGP6XNYSKCY52YVZ504RWKCABB94161STQWB5SDP1TJYAKRV6BGD6CUFTE9RE6CVYJUZ3PHWM503LA8HQ9OE8XGME5DP787BBIM8M3TRTBNGE1L84G7UK0SFJJY404YL5CT1WCLUHTIJ0UT5U5U5FRIRT9L45X71KL93SLK2VUNM66Y8BIMA' where id=84; -update noar ti set v3='ISGODRA200H08GXEPOU3MXIV4IJGMDUKIQCYL2QDVM9XJFUSNP0X5MGER3IKQ6D5J6E6DEPEZW8ICTGP6XNYSKCY52YVZ504RWKCABB94161STQWB5SDP1TJYAKRV6BGD6CUFTE9RE6CVYJUZ3PHWM503LA8HQ9OE8XGME5DP787BBIM8M3TRTBNGE1L84G7UK0SFJJY404YL5CT1WCLUHTIJ0UT5U5U5FRIRT9L45X71KL93SLK2VUNM66Y8BIMA' where id=84; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='49LF2XJUH54TIKVSMLM741OLVFYVO8GPNZPVR3M7U3UO5989IUIOBISZCVF9J58Q1B5EJCGU8QWWNLHA3Y80947DMV9KNLXPO0U02PF3QCZU37B2QL1UL0U5O9GXBQDRGFC5HFMA50ME7GUH4K9IIKQHYA8STE1OR2JYL0KNBNN557XPIIV5TI4C11B1Y3X7UI2XBTI9CI0VAOHJXEO2V761L215HFIW20W547OPHNOAPFGYSWNEP09JTFEPI0EIP' where id=85; -update noar ti set v0='49LF2XJUH54TIKVSMLM741OLVFYVO8GPNZPVR3M7U3UO5989IUIOBISZCVF9J58Q1B5EJCGU8QWWNLHA3Y80947DMV9KNLXPO0U02PF3QCZU37B2QL1UL0U5O9GXBQDRGFC5HFMA50ME7GUH4K9IIKQHYA8STE1OR2JYL0KNBNN557XPIIV5TI4C11B1Y3X7UI2XBTI9CI0VAOHJXEO2V761L215HFIW20W547OPHNOAPFGYSWNEP09JTFEPI0EIP' where id=85; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='8GL79SB1XRSAZHYVP7FPYSH1N1XHMWX7JYJXCOQQKK7Q09MSN6792UST3PTXCIPAEHOC5NYMLVXOII6BJU81U4RQR2TBL5XP1OGIC9LFN4388OSJJYUIUHP1PVH6M65O23X0U8ALCHD8OGA3S69QA23R6L39YWZZ62HCDDZGBFSLP9V874M01VYPWQCY2WFIH32NTWRZ4Q069EFOA6MPNTOT6YT0OPEDHBTPT435AG61V723UX8O03QBGQQL44M1Y' where id=85; -update noar ti set v1='8GL79SB1XRSAZHYVP7FPYSH1N1XHMWX7JYJXCOQQKK7Q09MSN6792UST3PTXCIPAEHOC5NYMLVXOII6BJU81U4RQR2TBL5XP1OGIC9LFN4388OSJJYUIUHP1PVH6M65O23X0U8ALCHD8OGA3S69QA23R6L39YWZZ62HCDDZGBFSLP9V874M01VYPWQCY2WFIH32NTWRZ4Q069EFOA6MPNTOT6YT0OPEDHBTPT435AG61V723UX8O03QBGQQL44M1Y' where id=85; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='80XLWF4LZ3GKQKU5M1MXKQMX8LXOKMJ5UAFGNSIKACLN05L0I1QYYKZGOWVJMLZYYM71732QLIWQMQWPUA0GBRYFDV8JPRLJS8STUIYTKRVDYHNVNX4VISJBPB0RHRJ9TVJ7GWG8LTEQEBLGYBR402XS7H007G50PZG2X4QLOUAH8YCO9TIY0F26VTZFI2B8LLMUD11EV0C87RKYK0XZ9IFG4WBXY4MS7DEZYLF1M9S7FU0YG13Y681JM51VSF47Q' where id=85; -update noar ti set v2='80XLWF4LZ3GKQKU5M1MXKQMX8LXOKMJ5UAFGNSIKACLN05L0I1QYYKZGOWVJMLZYYM71732QLIWQMQWPUA0GBRYFDV8JPRLJS8STUIYTKRVDYHNVNX4VISJBPB0RHRJ9TVJ7GWG8LTEQEBLGYBR402XS7H007G50PZG2X4QLOUAH8YCO9TIY0F26VTZFI2B8LLMUD11EV0C87RKYK0XZ9IFG4WBXY4MS7DEZYLF1M9S7FU0YG13Y681JM51VSF47Q' where id=85; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='I55NQ0DV2O5PAH8W81QUYVBS4F9BDG14MHNREC30TY30OFDGZ5A5IY43AT7A9WTXTJIIQ0IERJH22JKGE61AV1C016YWUQZSNS472WOC5QJ2Z030XSHEGBI2RSROEX0G6TH7L71FDZA0Q0HVOS4M2KBBEEM8K0WJUI1OH160ZYG2DEUXZADVI7CHLI6G904PCKH55CGBRIW8EGQNMRN1UOKR205EXFLUT17UH03MDTVPWQ02NUUBH7LS41TIHHY4W' where id=85; -update noar ti set v3='I55NQ0DV2O5PAH8W81QUYVBS4F9BDG14MHNREC30TY30OFDGZ5A5IY43AT7A9WTXTJIIQ0IERJH22JKGE61AV1C016YWUQZSNS472WOC5QJ2Z030XSHEGBI2RSROEX0G6TH7L71FDZA0Q0HVOS4M2KBBEEM8K0WJUI1OH160ZYG2DEUXZADVI7CHLI6G904PCKH55CGBRIW8EGQNMRN1UOKR205EXFLUT17UH03MDTVPWQ02NUUBH7LS41TIHHY4W' where id=85; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='KMITW1TN044QC5VOFYY0Q5EBI6ALKUUUBDMZBLP4PVG48MGZ8WD84ASK5M2BSDQVD53GTTTOZZVGU81CDBTLZFQOM0XYNLHH4EPGBSB6IV8F6QBN5MJ4G7Q57EDOTJ2NZIOO9UB0365DSCU7TQP3TD7UARAUF3M6TS008QPZIKKV24ZJ7NEQ349A8J62NM15JPL5UO3KXYEVH66SAKS96FEVNF8QH9GQ15CO4WKDS7L0B4ELYS7UMAHNBD382WPU6' where id=86; -update noar ti set v0='KMITW1TN044QC5VOFYY0Q5EBI6ALKUUUBDMZBLP4PVG48MGZ8WD84ASK5M2BSDQVD53GTTTOZZVGU81CDBTLZFQOM0XYNLHH4EPGBSB6IV8F6QBN5MJ4G7Q57EDOTJ2NZIOO9UB0365DSCU7TQP3TD7UARAUF3M6TS008QPZIKKV24ZJ7NEQ349A8J62NM15JPL5UO3KXYEVH66SAKS96FEVNF8QH9GQ15CO4WKDS7L0B4ELYS7UMAHNBD382WPU6' where id=86; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='937DKZR6XCWJDJ4ZERII10RY8G7QCJSUBMVG49BZKIXBKYNQCZSN5EZNNXCAX11WO18MSYBACNGXVE5186PW1JMH5HSTCI3D4AILVS607E88E5CIO1NZ5P4V4JDFLS5S1FJ6I5PU80B75DYXH2QI0CKAQVE0N6YJDX4ZO7CBQECRRZ80XKHASI2IHFKGQVUMHOCM2UQ5AF28YSV47K7TTQO5MTEMG6K5F0XB2DDM773ABMIUKXMSU75CNK70R5K5S' where id=86; -update noar ti set v1='937DKZR6XCWJDJ4ZERII10RY8G7QCJSUBMVG49BZKIXBKYNQCZSN5EZNNXCAX11WO18MSYBACNGXVE5186PW1JMH5HSTCI3D4AILVS607E88E5CIO1NZ5P4V4JDFLS5S1FJ6I5PU80B75DYXH2QI0CKAQVE0N6YJDX4ZO7CBQECRRZ80XKHASI2IHFKGQVUMHOCM2UQ5AF28YSV47K7TTQO5MTEMG6K5F0XB2DDM773ABMIUKXMSU75CNK70R5K5S' where id=86; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='6GW2VIOWKEJ8ESVVTRMGODL2SNCEIN8DYTZ7BN1YAJNON5CIC46FH0Z52WBYO7CYAE11MPQ9JU0J2PQVDRCIZN5X68W1M5DDD7CYNYFKFH2A466ROLZYQLFS7NLK9MAVG004PDDGSYEG3YDQHGCFCN7AYXO3MJ12I99ERIOK5HC7HTYHHNHIARE3FJHUF4KYSPEZZE6XU81GD2DN30ZIPJK5RGT3OHWYTD9YHQFYKGQUZCFRHYKF66HU6784Q3UY0' where id=86; -update noar ti set v2='6GW2VIOWKEJ8ESVVTRMGODL2SNCEIN8DYTZ7BN1YAJNON5CIC46FH0Z52WBYO7CYAE11MPQ9JU0J2PQVDRCIZN5X68W1M5DDD7CYNYFKFH2A466ROLZYQLFS7NLK9MAVG004PDDGSYEG3YDQHGCFCN7AYXO3MJ12I99ERIOK5HC7HTYHHNHIARE3FJHUF4KYSPEZZE6XU81GD2DN30ZIPJK5RGT3OHWYTD9YHQFYKGQUZCFRHYKF66HU6784Q3UY0' where id=86; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='7WVTO26UVFWPTATT9MJFCHJBKR2ZMOADMLUGV7C427LCWJ7EQ57X201KIFPPPWAXRLRNL0YJ91YB3O0B4W4YXQ3CYA7SVV71GNY6VDGKAIF2HDSLIX3PGQWMKHWQIY48EQ9FMCFC33H22W4FW4EL34SL5DE0MIOFL6RND20MAEKPO8PATTIHREMVF1W5GG3ILSH7D7IYCB73CL2L63QJ57QCYQVQY3RRVAKKE368VFFHJXO9THMLZNL3DP52YTOWX' where id=86; -update noar ti set v3='7WVTO26UVFWPTATT9MJFCHJBKR2ZMOADMLUGV7C427LCWJ7EQ57X201KIFPPPWAXRLRNL0YJ91YB3O0B4W4YXQ3CYA7SVV71GNY6VDGKAIF2HDSLIX3PGQWMKHWQIY48EQ9FMCFC33H22W4FW4EL34SL5DE0MIOFL6RND20MAEKPO8PATTIHREMVF1W5GG3ILSH7D7IYCB73CL2L63QJ57QCYQVQY3RRVAKKE368VFFHJXO9THMLZNL3DP52YTOWX' where id=86; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='TVTAELH553TRH2LW915RRLWWLUZQ7A851IW85T7PFWSISU6KBRQFNNU04MCH4FRE1IR6NW9FYOFE3Q06NNVKZJYVTA8F7GFBE4XQBR7KX3COQS64AAIY261BNYH6IRQGVYYMV4ZVH48NDBTVDBHIN9LHT0CT9RCFRSA8Q1IO8RGV683VO4Y3OFJJ22TNVHVKCBIPMNINY6PXQLG6FNEU2KULNIJK2PTPSGCMUSAYP3C7650J3CX2XYS52OKI7DK9I' where id=87; -update noar ti set v0='TVTAELH553TRH2LW915RRLWWLUZQ7A851IW85T7PFWSISU6KBRQFNNU04MCH4FRE1IR6NW9FYOFE3Q06NNVKZJYVTA8F7GFBE4XQBR7KX3COQS64AAIY261BNYH6IRQGVYYMV4ZVH48NDBTVDBHIN9LHT0CT9RCFRSA8Q1IO8RGV683VO4Y3OFJJ22TNVHVKCBIPMNINY6PXQLG6FNEU2KULNIJK2PTPSGCMUSAYP3C7650J3CX2XYS52OKI7DK9I' where id=87; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='MFOO4B51J9HDOBT48ARQ117ZJYM7ENIF4XAKA7F5ZRR0U5E8H5SSD2CO2GD9RPOPHPY7CVX56JQKNWC4L9ZVSR6NFRCSQYOFTQLQP4S9UTNG8DFGAD72EO4KJBWKEELPO59UY6Q3ERK80NQATGRKT8OUWSBC3JBJ1QPQ5C3ZEWJA3O7OI9RDRJ66YZPUVXIWMCWDJI7H2SBMBMYHMMBLFSETUWA94H7ZBRANR3AYMX06IMI4ZFGDE1EGY7QQDF9BN' where id=87; -update noar ti set v1='MFOO4B51J9HDOBT48ARQ117ZJYM7ENIF4XAKA7F5ZRR0U5E8H5SSD2CO2GD9RPOPHPY7CVX56JQKNWC4L9ZVSR6NFRCSQYOFTQLQP4S9UTNG8DFGAD72EO4KJBWKEELPO59UY6Q3ERK80NQATGRKT8OUWSBC3JBJ1QPQ5C3ZEWJA3O7OI9RDRJ66YZPUVXIWMCWDJI7H2SBMBMYHMMBLFSETUWA94H7ZBRANR3AYMX06IMI4ZFGDE1EGY7QQDF9BN' where id=87; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='E2KIABUGKRBTPRUHNUG0TP9E8AKDCBX4TDJJR87Z6ADS0BA3CZOY3F5PAQ9GNNLPEHIQYP42D3UFOC7WN55Z7A3LA02KT54RV1FG05GW9C7G98ZJED7IVU2E0DAZBR3YYT69IR4TZGN4WLW8H4CRJ4J82SVA58VOUI6ZQTMEC94NUO2G4BKZW3S1VAW1T714I4PB7DM0SCCGIHS0SVR7WR7WIDN4MAB5ZXF37WR0RM9V65PQHXJF1BGUEUS05C0EX' where id=87; -update noar ti set v2='E2KIABUGKRBTPRUHNUG0TP9E8AKDCBX4TDJJR87Z6ADS0BA3CZOY3F5PAQ9GNNLPEHIQYP42D3UFOC7WN55Z7A3LA02KT54RV1FG05GW9C7G98ZJED7IVU2E0DAZBR3YYT69IR4TZGN4WLW8H4CRJ4J82SVA58VOUI6ZQTMEC94NUO2G4BKZW3S1VAW1T714I4PB7DM0SCCGIHS0SVR7WR7WIDN4MAB5ZXF37WR0RM9V65PQHXJF1BGUEUS05C0EX' where id=87; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='CMG6KAEA2E3M3DCXKBAMGGG4TXHWTP6QHHKJ3CY1T2AKUBP2DPOF3JQXBRORE11J6X1QHY16J5M5OG74W1VE78ZVCD4UWDGWC5PVB5Y9YVWQ3ZPHFFW7WZN79S49FBDFQQGRUUTL805V8I5A1R6L3N2AJITY8NIVZQ1BFBV7X2HV01YAOBXSBXO1QMQYKL74RMFGCWYDWTIK02YM09AV4SLJPRW4IS7ITXB0P9YD7ITGBKTKY2HG5OM3Q633ZQ282' where id=87; -update noar ti set v3='CMG6KAEA2E3M3DCXKBAMGGG4TXHWTP6QHHKJ3CY1T2AKUBP2DPOF3JQXBRORE11J6X1QHY16J5M5OG74W1VE78ZVCD4UWDGWC5PVB5Y9YVWQ3ZPHFFW7WZN79S49FBDFQQGRUUTL805V8I5A1R6L3N2AJITY8NIVZQ1BFBV7X2HV01YAOBXSBXO1QMQYKL74RMFGCWYDWTIK02YM09AV4SLJPRW4IS7ITXB0P9YD7ITGBKTKY2HG5OM3Q633ZQ282' where id=87; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='JWGXVKTG89T8MXB18UHWQ24QW8TH27MIVIHCE453AXY874SOQI7ODP58C8069DDCFKJWDLWSDVR8P8KR92PG6XM2I62W6NOLBFJJE97WNCKICXCDZNCR52190LM1H28W6DKIH3MH6TPNA2L1AH1DOTDYEZDZA2NNE1ELHSLAE5QQSNMTDOV216FTHDUSXUGCBKZW5D5HJBOBZP2K5RVVCNZ6D9DX0UHDWBKLYSY233LN78HVLJC40ERONQ3QWIAG6' where id=88; -update noar ti set v0='JWGXVKTG89T8MXB18UHWQ24QW8TH27MIVIHCE453AXY874SOQI7ODP58C8069DDCFKJWDLWSDVR8P8KR92PG6XM2I62W6NOLBFJJE97WNCKICXCDZNCR52190LM1H28W6DKIH3MH6TPNA2L1AH1DOTDYEZDZA2NNE1ELHSLAE5QQSNMTDOV216FTHDUSXUGCBKZW5D5HJBOBZP2K5RVVCNZ6D9DX0UHDWBKLYSY233LN78HVLJC40ERONQ3QWIAG6' where id=88; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='TOFNGY7WGDL6P7700N7RF9776HR6ADJSOBTXTGVR4Z90WH8PMFHR91OY125A6INJDSYEW0I28TNP12B0HBHQWWUMK8JAQ3Q9EHXP6ZCOX82M6AFX493ZW2WJ5CYUVRGMEW70KRX22YWAVBWOE5LPZKX0L6MM1J9MMRYKKIAKPQJJF2XW4KYGF0NM4FW0JLXVYMV9VK060T33CMBX3X4LMX4F641BQBZWYKVIR5NGQAU8ZANPJS6HQNYRSXAFQ7YD4' where id=88; -update noar ti set v1='TOFNGY7WGDL6P7700N7RF9776HR6ADJSOBTXTGVR4Z90WH8PMFHR91OY125A6INJDSYEW0I28TNP12B0HBHQWWUMK8JAQ3Q9EHXP6ZCOX82M6AFX493ZW2WJ5CYUVRGMEW70KRX22YWAVBWOE5LPZKX0L6MM1J9MMRYKKIAKPQJJF2XW4KYGF0NM4FW0JLXVYMV9VK060T33CMBX3X4LMX4F641BQBZWYKVIR5NGQAU8ZANPJS6HQNYRSXAFQ7YD4' where id=88; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='J185Q4TTRTGJCGUZ8ELJW9E6TXO1I0ANHSAINO8BW6M3NVZIZBG2TX5FE1OSRHRDVCI4YW9RL2MAM8QKXRC7RUPFZHZA867R6572OUMYYDD7Y6KHN3E3G77H4BAR224NBMJ1RRTKRABH5KGPYKZQRMAPQE5EECIPDGQ3T1RUYUIMJHA32G3RRXVXUMBJOS6RCSH3HYMK0IUOW1YCBDRIF79Q3V7S6PZOG0M3TRZV3B2HP6P35G2D4KZKTTQ8ZR1R9' where id=88; -update noar ti set v2='J185Q4TTRTGJCGUZ8ELJW9E6TXO1I0ANHSAINO8BW6M3NVZIZBG2TX5FE1OSRHRDVCI4YW9RL2MAM8QKXRC7RUPFZHZA867R6572OUMYYDD7Y6KHN3E3G77H4BAR224NBMJ1RRTKRABH5KGPYKZQRMAPQE5EECIPDGQ3T1RUYUIMJHA32G3RRXVXUMBJOS6RCSH3HYMK0IUOW1YCBDRIF79Q3V7S6PZOG0M3TRZV3B2HP6P35G2D4KZKTTQ8ZR1R9' where id=88; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='NX9U9U7LCTO2XCGC1YP7VZ9CI4OYSZ5P0DH1PCP47GNC0P2IE9R08N1IQJOFAK3XK37YYUYBS7X5EQDUU9MXTEJ13230SP3K1QMAHPYMRYPO7TBI4NFPAJAGT54ZF47OH9Y82EAQYMZYNB3O24PVT1EKZQBK3II3SJ9Q8VPFJ2B17W32C5AG02THSREHO9P5VP9HBLZGLJCQF9Y65IRA0UPEBLERXZHIS7I2RSVC3H7J8RCI53Q35MBYDMP2UEVPV' where id=88; -update noar ti set v3='NX9U9U7LCTO2XCGC1YP7VZ9CI4OYSZ5P0DH1PCP47GNC0P2IE9R08N1IQJOFAK3XK37YYUYBS7X5EQDUU9MXTEJ13230SP3K1QMAHPYMRYPO7TBI4NFPAJAGT54ZF47OH9Y82EAQYMZYNB3O24PVT1EKZQBK3II3SJ9Q8VPFJ2B17W32C5AG02THSREHO9P5VP9HBLZGLJCQF9Y65IRA0UPEBLERXZHIS7I2RSVC3H7J8RCI53Q35MBYDMP2UEVPV' where id=88; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='XBYXZ8MFXPU5SVC7HVP9GEIU9O3S0NHTVMTMX55BQAHA1WF65U5W52WCXSIORXUIR71XQ28N0UKKY80WDIOYKO2SKY3KD2NAC3CWTF5ZDPEFWTASQ9P2RJSZ5UGOTRPKNAGMIUNKWS46WV33Q2HJ7ZH7EUBX83P87FWDRNYGFTKNLH0HYIK10HXWSZP2AXFAOKNEOQI21UFGALXA9OSZ47QNVCLRIAL9QN0VOAYBW33SJNS7B8LP27DW8IMDKNZ55' where id=89; -update noar ti set v0='XBYXZ8MFXPU5SVC7HVP9GEIU9O3S0NHTVMTMX55BQAHA1WF65U5W52WCXSIORXUIR71XQ28N0UKKY80WDIOYKO2SKY3KD2NAC3CWTF5ZDPEFWTASQ9P2RJSZ5UGOTRPKNAGMIUNKWS46WV33Q2HJ7ZH7EUBX83P87FWDRNYGFTKNLH0HYIK10HXWSZP2AXFAOKNEOQI21UFGALXA9OSZ47QNVCLRIAL9QN0VOAYBW33SJNS7B8LP27DW8IMDKNZ55' where id=89; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='XK4YWCJUAN8ZN7KLLZTFSVWRM1L99FJNSG3UGFPPB9DGX5MIQZ27LAYSEB2MCSQMKC0Q9GSDYRVVTJAA8MJTYRON3O142CV1HMDXLGNSNMZNOD4UFWT5SXXULZBG2T5X7396GZAN5CWALNBBYBTPZRZNZBYCIA2VCHI8RR8D7DP5UV1ET3CEJHH4WLS8C8S8DKMM4QXNH32JE06T7FVXWX8MZHLBZNKJ9R33IO9MO46DMB271IO9SCUON3GNRLYNM' where id=89; -update noar ti set v1='XK4YWCJUAN8ZN7KLLZTFSVWRM1L99FJNSG3UGFPPB9DGX5MIQZ27LAYSEB2MCSQMKC0Q9GSDYRVVTJAA8MJTYRON3O142CV1HMDXLGNSNMZNOD4UFWT5SXXULZBG2T5X7396GZAN5CWALNBBYBTPZRZNZBYCIA2VCHI8RR8D7DP5UV1ET3CEJHH4WLS8C8S8DKMM4QXNH32JE06T7FVXWX8MZHLBZNKJ9R33IO9MO46DMB271IO9SCUON3GNRLYNM' where id=89; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='A3QKPK822VDQ5085BZHJE918BJI27EQK2F44LGCJGKZKOYR0ZK153ZSAO0T5WD54LIDIXQ44A1XVS9BTBQC3OTNNA79PGDXAUEE9TG2Y2UYUA8QWK7DN5ZQ6L678TK32DXEOEZXW9LEAZSOO5LNMUQSALQNI8O8NNZU4NVYYWLIYRPM7WZVG6LQCLJGD33NEI2PR09TBW54OANH13UTBAGJY2MBRTJW97GVRMP76YDFZPMGH4VOKOPB9EE86215A0' where id=89; -update noar ti set v2='A3QKPK822VDQ5085BZHJE918BJI27EQK2F44LGCJGKZKOYR0ZK153ZSAO0T5WD54LIDIXQ44A1XVS9BTBQC3OTNNA79PGDXAUEE9TG2Y2UYUA8QWK7DN5ZQ6L678TK32DXEOEZXW9LEAZSOO5LNMUQSALQNI8O8NNZU4NVYYWLIYRPM7WZVG6LQCLJGD33NEI2PR09TBW54OANH13UTBAGJY2MBRTJW97GVRMP76YDFZPMGH4VOKOPB9EE86215A0' where id=89; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='AXB04X27LL84R6APRE2WD5ZQDOT5C54WDITI67PKM44FI7JL1T8JT9KCIWDDHOLRGQWUV02DPWQC0LRP6QJTQDZNAONKKZNJYKU4PHZ3WN7D835VMWXYSFXJ1LYDX4W54MVV7664V1WY5LTSDPTNUF8JSFWEOSXRPQ8G78K47FE1GJKZIBUQ3DAEARX1NM2GLB4UMA7WO0J5AW85RY2O186RVJ1P6WDEQICU0Z6D4S68GA1P0U9RN2X7YTVI3WB57' where id=89; -update noar ti set v3='AXB04X27LL84R6APRE2WD5ZQDOT5C54WDITI67PKM44FI7JL1T8JT9KCIWDDHOLRGQWUV02DPWQC0LRP6QJTQDZNAONKKZNJYKU4PHZ3WN7D835VMWXYSFXJ1LYDX4W54MVV7664V1WY5LTSDPTNUF8JSFWEOSXRPQ8G78K47FE1GJKZIBUQ3DAEARX1NM2GLB4UMA7WO0J5AW85RY2O186RVJ1P6WDEQICU0Z6D4S68GA1P0U9RN2X7YTVI3WB57' where id=89; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='24A512R1E15GG6V6BIM0F1I4KOVBRDK2KB5X5I2TR0I11DOJUYA9QPPFXE2HXUCMJYUPPXUHKV71DI246KTMUF4S69XO68YWRN9STUR8D49Y2M88K0NHPVLHTOPIA9R9J4Q2VHCKTL9WUN8BCY6RO52F6ZBGFBU4TAUH91MUF5BXFN8BMZD72HH55FUBNWT7J7PKUKYF8JRG725OU7CPKQDUBU76UM3GAJ9QZ78DKAGYZUF7P7AMFBCO3KCXP9PA1' where id=90; -update noar ti set v0='24A512R1E15GG6V6BIM0F1I4KOVBRDK2KB5X5I2TR0I11DOJUYA9QPPFXE2HXUCMJYUPPXUHKV71DI246KTMUF4S69XO68YWRN9STUR8D49Y2M88K0NHPVLHTOPIA9R9J4Q2VHCKTL9WUN8BCY6RO52F6ZBGFBU4TAUH91MUF5BXFN8BMZD72HH55FUBNWT7J7PKUKYF8JRG725OU7CPKQDUBU76UM3GAJ9QZ78DKAGYZUF7P7AMFBCO3KCXP9PA1' where id=90; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='BFBNTLUIIAIUE88NCG72GU8G6RQ166LL7GIID03YQF5D8194M6M8QOKQY0TJLSTKSTZSWJGQKLOIFH57I3FVLPCUN8SGXP2GM6R6YN4ETIV6VVZVFYXPRIF2QEPNZD6SRMH1YC17IOLM5BZSLBO91C6KYSCGATHVIHROFAAXB70Z8JO3PKN341N0UCCN6ZGKN873W5X4XTK4DQGEJ776LXEL1TAVVGXQC7WKU3WDU7NBJAJ5GQXZRU1L71BWBUTUZ' where id=90; -update noar ti set v1='BFBNTLUIIAIUE88NCG72GU8G6RQ166LL7GIID03YQF5D8194M6M8QOKQY0TJLSTKSTZSWJGQKLOIFH57I3FVLPCUN8SGXP2GM6R6YN4ETIV6VVZVFYXPRIF2QEPNZD6SRMH1YC17IOLM5BZSLBO91C6KYSCGATHVIHROFAAXB70Z8JO3PKN341N0UCCN6ZGKN873W5X4XTK4DQGEJ776LXEL1TAVVGXQC7WKU3WDU7NBJAJ5GQXZRU1L71BWBUTUZ' where id=90; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='82MJYN32AKGV01ZNZXV7ZTNR4U1B1YT403BVJV3UGYU6KG94FW69R31416L91HLNBDK0EH8LKOTVJRF13Q40D7EEXFUMX1QNSEC8LS213TCCGK6OQTPJOSF9QHDKZPZIX9LYI0F597QG796I3DQ57WU2MEBVMQGFJ3PL6ZE0WQURGMU2LFNKFRICV73UJ3T4WL9W602LPPVEENT1C1T5RUTBBGW8HTUIGNVO3PJ2GMFKXTBP4P8IAJ50S6TTLXYF6' where id=90; -update noar ti set v2='82MJYN32AKGV01ZNZXV7ZTNR4U1B1YT403BVJV3UGYU6KG94FW69R31416L91HLNBDK0EH8LKOTVJRF13Q40D7EEXFUMX1QNSEC8LS213TCCGK6OQTPJOSF9QHDKZPZIX9LYI0F597QG796I3DQ57WU2MEBVMQGFJ3PL6ZE0WQURGMU2LFNKFRICV73UJ3T4WL9W602LPPVEENT1C1T5RUTBBGW8HTUIGNVO3PJ2GMFKXTBP4P8IAJ50S6TTLXYF6' where id=90; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='4KMNFGP2LIIFBGSA0AEPA70TDRUU4T2R80BBGS0DBV5F76ET9U45GUANOHWS8ABURIIG4W2YD9WM0R3M6G9DXWIHKE5LPNUMGDO73VLJLPICQEYSXOPZ5CZXGIV8JNIF4UHUYM889Y8GZSHUFDZLUIMNU0LCWU3VF9I6UEVZGESDPKQBFYDPHVOR4SC0GOKPQFFXXT69RIYYRMIBQ9WO6K4VXBEVEX0M6WOVPA2R2N836BU35V5M6GLHL299FS5JQ' where id=90; -update noar ti set v3='4KMNFGP2LIIFBGSA0AEPA70TDRUU4T2R80BBGS0DBV5F76ET9U45GUANOHWS8ABURIIG4W2YD9WM0R3M6G9DXWIHKE5LPNUMGDO73VLJLPICQEYSXOPZ5CZXGIV8JNIF4UHUYM889Y8GZSHUFDZLUIMNU0LCWU3VF9I6UEVZGESDPKQBFYDPHVOR4SC0GOKPQFFXXT69RIYYRMIBQ9WO6K4VXBEVEX0M6WOVPA2R2N836BU35V5M6GLHL299FS5JQ' where id=90; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='H5RVFYRB8FUGWOI6VTWMAXK37BXF7W665LYAQ43K87HTDVZA1KOB6ZPA2BPM7H0QICWDRTQ34S8B2ZVU7ZZSDI9UTL9MQJ16ZNVI0EYRQCRJ0YHH1K7Z3TSLH6MAUM5DBCNRNWMSNFN6YBNDXGAXGB6JKIAC3HQ36SSLYG5BS1U0PG63L2GGPGDWIO95LGICJ59X3X9C9L2OL7P6743HB2A3OZ85G7LDZAPHGLIS9OZ17ZCZ7HZ951Q4DGQMKC5E8' where id=91; -update noar ti set v0='H5RVFYRB8FUGWOI6VTWMAXK37BXF7W665LYAQ43K87HTDVZA1KOB6ZPA2BPM7H0QICWDRTQ34S8B2ZVU7ZZSDI9UTL9MQJ16ZNVI0EYRQCRJ0YHH1K7Z3TSLH6MAUM5DBCNRNWMSNFN6YBNDXGAXGB6JKIAC3HQ36SSLYG5BS1U0PG63L2GGPGDWIO95LGICJ59X3X9C9L2OL7P6743HB2A3OZ85G7LDZAPHGLIS9OZ17ZCZ7HZ951Q4DGQMKC5E8' where id=91; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='3QTQ22O79WXROW10ZIGKFK9C0ON1CSOWUVAAC88P2LXZ6EFW22ZWYMIPPI7X13KSDBWFW8BRRUMSUYIJK5TYXSDT1QTQVSN7X2O6GTKUMS2RGW4H2P3EMF5KD1WTE8N43VZB9THRNWIZ8YLMOQYHZMLU1R5PLP9DK8AFQZDT6VV3BH93183J59E26OICO9X51TII3WXDV90CLTQKP5TK1EM3PG7NV7SXV17N7G4WIGQOFMP5RAHYLTQQHLZK2H383' where id=91; -update noar ti set v1='3QTQ22O79WXROW10ZIGKFK9C0ON1CSOWUVAAC88P2LXZ6EFW22ZWYMIPPI7X13KSDBWFW8BRRUMSUYIJK5TYXSDT1QTQVSN7X2O6GTKUMS2RGW4H2P3EMF5KD1WTE8N43VZB9THRNWIZ8YLMOQYHZMLU1R5PLP9DK8AFQZDT6VV3BH93183J59E26OICO9X51TII3WXDV90CLTQKP5TK1EM3PG7NV7SXV17N7G4WIGQOFMP5RAHYLTQQHLZK2H383' where id=91; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='5PI4Q9TEN68K5DAGII5EBTQZ0YW4CH8WRMN0SXA69CXAV55P78BD3TXIRT6TVG54E0SK12YG85HYE2EJRHK65YZT25C95Z5ZFT1M9U8RSKAJ7QA3K29L2BDL43QBKQFN1BVSMIZ5DAB4GKTMQLBQ7K98LJH70FWZWX5R5RXUZ8QSSNMNMMHC7BKWOWY3L0SM120ZGD59T2T5ONVCJN8NBD7INEROY3SWNZ45AQ8G48YKIPT5U9QNNWHLKPSWFOIUZ' where id=91; -update noar ti set v2='5PI4Q9TEN68K5DAGII5EBTQZ0YW4CH8WRMN0SXA69CXAV55P78BD3TXIRT6TVG54E0SK12YG85HYE2EJRHK65YZT25C95Z5ZFT1M9U8RSKAJ7QA3K29L2BDL43QBKQFN1BVSMIZ5DAB4GKTMQLBQ7K98LJH70FWZWX5R5RXUZ8QSSNMNMMHC7BKWOWY3L0SM120ZGD59T2T5ONVCJN8NBD7INEROY3SWNZ45AQ8G48YKIPT5U9QNNWHLKPSWFOIUZ' where id=91; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='HMCIFVLIP82EB98V66WN595HAFU5UZD2W10RR126OP0HTKEFXPQ9FCKEK094B6SNLMMKP606ULPU1S21YMFM1RDZFAM6D9N07DEPVFPSFRU8QBYUWX3H6PMELJZQ6LHP1I7Y26GOQC0NGTP7SPDDNG7A2KSBOOUHTDUXNV199ITGHOCFCE2Q1DL7T2HLTDJOMQ4HURE6PKVTOOJIYRJQGPA3WS2GJC018Q75QZ7UXL0L5A8QA9M0GSPOP8YMFOBF2' where id=91; -update noar ti set v3='HMCIFVLIP82EB98V66WN595HAFU5UZD2W10RR126OP0HTKEFXPQ9FCKEK094B6SNLMMKP606ULPU1S21YMFM1RDZFAM6D9N07DEPVFPSFRU8QBYUWX3H6PMELJZQ6LHP1I7Y26GOQC0NGTP7SPDDNG7A2KSBOOUHTDUXNV199ITGHOCFCE2Q1DL7T2HLTDJOMQ4HURE6PKVTOOJIYRJQGPA3WS2GJC018Q75QZ7UXL0L5A8QA9M0GSPOP8YMFOBF2' where id=91; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='785RE4HQE4VE16P5AWUB1V4J4DQJJBO8RP69GU94BEN98LHXML7F54A2Z1PK9XAH28J9K3MH86F6DLZ201JPNKXN38U7FLX7FJWIDYYM32JA6VC0NES00BCNAWU4QT5IV8J8A8KJ8EDAXB00OHFJ7SMDBDVXCV6ETLVL0JLKQSVPG93ZTD89061FVJ1AOW2B9EEEMM6KJKPLNGMO0NHP7US308Y90NI2YFDS1VLPX8NROVEUO9H7B9XVGWZSMKO3J' where id=92; -update noar ti set v0='785RE4HQE4VE16P5AWUB1V4J4DQJJBO8RP69GU94BEN98LHXML7F54A2Z1PK9XAH28J9K3MH86F6DLZ201JPNKXN38U7FLX7FJWIDYYM32JA6VC0NES00BCNAWU4QT5IV8J8A8KJ8EDAXB00OHFJ7SMDBDVXCV6ETLVL0JLKQSVPG93ZTD89061FVJ1AOW2B9EEEMM6KJKPLNGMO0NHP7US308Y90NI2YFDS1VLPX8NROVEUO9H7B9XVGWZSMKO3J' where id=92; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='0EAB2PKE0VSX30YVSJQA0WHFBN56CHFLCMTLDOEWUL1C3F08S1X0K2PUNJ5KYJLIDKOQW3A4N9YDFQLLVGCUERSQUUCZZ6ZXF3PEKD643XONVHBU1OIBIUSV2A2M4PU7NUZAL01LUZJGUI1EQUIWOXSML2OZNNFRJS3P98RB7AJ6MHPB3D5CH2WN7ROML9Q9P4Q3N2H6TY9ZN7BD3TKAQRBL1H1CNYM0PGKOO15MKHD7EWY10H80LGVFYNBBMBAAS' where id=92; -update noar ti set v1='0EAB2PKE0VSX30YVSJQA0WHFBN56CHFLCMTLDOEWUL1C3F08S1X0K2PUNJ5KYJLIDKOQW3A4N9YDFQLLVGCUERSQUUCZZ6ZXF3PEKD643XONVHBU1OIBIUSV2A2M4PU7NUZAL01LUZJGUI1EQUIWOXSML2OZNNFRJS3P98RB7AJ6MHPB3D5CH2WN7ROML9Q9P4Q3N2H6TY9ZN7BD3TKAQRBL1H1CNYM0PGKOO15MKHD7EWY10H80LGVFYNBBMBAAS' where id=92; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='2NJ4IUDLWPW0YBQ67EP3TRNDYMEP4LMAEDSRCVHW3VU5VUJ7U401VU5DCVO6RN4GMFU95CZCBL5BPXISWPSS9ID05H21MC5TDAQ0MNWQ85E69KFY4JRALHNEFWV1JFGLIF1AFSEN2CN5GL463TT9RPUKNJITW5ICZ5SQXD4VSKU94C7T9WU6QFW8MIDHCYYNI18GYQ23M6RCB2MRHOXIB9H78YI3191CI8BVLAT9W6GKABFKVM0MGV7V0Y7XP4352' where id=92; -update noar ti set v2='2NJ4IUDLWPW0YBQ67EP3TRNDYMEP4LMAEDSRCVHW3VU5VUJ7U401VU5DCVO6RN4GMFU95CZCBL5BPXISWPSS9ID05H21MC5TDAQ0MNWQ85E69KFY4JRALHNEFWV1JFGLIF1AFSEN2CN5GL463TT9RPUKNJITW5ICZ5SQXD4VSKU94C7T9WU6QFW8MIDHCYYNI18GYQ23M6RCB2MRHOXIB9H78YI3191CI8BVLAT9W6GKABFKVM0MGV7V0Y7XP4352' where id=92; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='JOZ0SGSDWBX0I0Z1JWZROGVYLQGHVI5RA0YVPGEG4C2MVK3F8HKWBTNZN05KV4SJJVTFML71ERZ1M3ZDOBCUIHXBE4V01B35PYOFYJJ83OWOUY93SAUSE62ZX5WJZSNUNGTJSN3R56VNP5OG0VD9YS70FQQVCTMQKL434AS124GGPRJKQ7AVSWRYO6PA8KF035TVPFCDWAENYPUPF7ZQQLJQ291VD850Q2SFGTJ22TJDNQVP40O4LQS3DXZVO2ZZA' where id=92; -update noar ti set v3='JOZ0SGSDWBX0I0Z1JWZROGVYLQGHVI5RA0YVPGEG4C2MVK3F8HKWBTNZN05KV4SJJVTFML71ERZ1M3ZDOBCUIHXBE4V01B35PYOFYJJ83OWOUY93SAUSE62ZX5WJZSNUNGTJSN3R56VNP5OG0VD9YS70FQQVCTMQKL434AS124GGPRJKQ7AVSWRYO6PA8KF035TVPFCDWAENYPUPF7ZQQLJQ291VD850Q2SFGTJ22TJDNQVP40O4LQS3DXZVO2ZZA' where id=92; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='DGCYFK8V52C5Q39UFQQI6GFV9MS2STLV1IVMQE8B3D5XVXHY0JGLH4QVNXM5X63RMO9XNQRMK1ZBW8K9B9Q2J4ANK8XIV3UF00ZQ5ZP51Z77E1UDIA0TY82H5SWNODE7SSE3LZJK4SROJ3W4LTMA3VIKBR8AROSTKU634XKY2ZQUUPD4295PMJED0ZRVDXP3SSEVM6WBTPDS37NGXA8TSYQFN59LR83GEYD24W26KAJIRQ6EGYLXFXQI56ZO1TZ47' where id=93; -update noar ti set v0='DGCYFK8V52C5Q39UFQQI6GFV9MS2STLV1IVMQE8B3D5XVXHY0JGLH4QVNXM5X63RMO9XNQRMK1ZBW8K9B9Q2J4ANK8XIV3UF00ZQ5ZP51Z77E1UDIA0TY82H5SWNODE7SSE3LZJK4SROJ3W4LTMA3VIKBR8AROSTKU634XKY2ZQUUPD4295PMJED0ZRVDXP3SSEVM6WBTPDS37NGXA8TSYQFN59LR83GEYD24W26KAJIRQ6EGYLXFXQI56ZO1TZ47' where id=93; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='X6UQMQPRLVDDO364Q5ZVKKIG7150PHH2IAK1UJ14RPMFDIC60TSCUWPFG89I85K0VU78SVGB74XE5Z8LKMH8BJL3CRLZNRROZIKFGF8SOL88ODQOM3QL6Q2TVNAO0S5QCO7VDFWVGG9Y78D29XNKLPG34YXQO9B2G43AY2CH6ICUNC8TXAHI7IFF8IE19073OZDW4UNV3ODEXOWNIHGPQS8LFEY62R7E0XZOXM14YA0MNQ9URB12029KOXJS5ADWN' where id=93; -update noar ti set v1='X6UQMQPRLVDDO364Q5ZVKKIG7150PHH2IAK1UJ14RPMFDIC60TSCUWPFG89I85K0VU78SVGB74XE5Z8LKMH8BJL3CRLZNRROZIKFGF8SOL88ODQOM3QL6Q2TVNAO0S5QCO7VDFWVGG9Y78D29XNKLPG34YXQO9B2G43AY2CH6ICUNC8TXAHI7IFF8IE19073OZDW4UNV3ODEXOWNIHGPQS8LFEY62R7E0XZOXM14YA0MNQ9URB12029KOXJS5ADWN' where id=93; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='QK5GWKB4T0VEGNP4JCJGEB2RHM5X9S1A42N33117H88ETLIJU4Z9L53SLUMZYA3VA64420NO3LFARVDSTKHUNYW4VEMP5MELEDU587HXCS9AXDPI54AOPH8EDR8AO0BPDKQOLL4NY726N1KVLA044I0MVFU63X61H7H3E8W1UT097PUOPAI1VVTMT4APDE8LAB567UZ2964ZTXSHGDLODX8Q2VX6IUBT37EE9A9VRO9X6ZXGRD1SLLZLKIRUGFDF5' where id=93; -update noar ti set v2='QK5GWKB4T0VEGNP4JCJGEB2RHM5X9S1A42N33117H88ETLIJU4Z9L53SLUMZYA3VA64420NO3LFARVDSTKHUNYW4VEMP5MELEDU587HXCS9AXDPI54AOPH8EDR8AO0BPDKQOLL4NY726N1KVLA044I0MVFU63X61H7H3E8W1UT097PUOPAI1VVTMT4APDE8LAB567UZ2964ZTXSHGDLODX8Q2VX6IUBT37EE9A9VRO9X6ZXGRD1SLLZLKIRUGFDF5' where id=93; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='MD2G12QTM7C1ADRLCAQIA3K91899IXUVBL9I2R90EOCPMKM8METIYDDJFUZA85HDLDBO2KI30IAJC5P4L195QRIHBTV18I30GB5QWBG9DPU3S4SAP4BIRNUBW871W4BJJM4B8LRW7SNT7QEFBR7L5MU52JCAZOPWNGGDN63XUKKZL929LPWUY7IRYVHIROFE9K3WMFBYCWP21VFB3KI7QICAWU6OR4LGQHLFZ92FXZABR7D4B0O75LZKUU3GO8SEK' where id=93; -update noar ti set v3='MD2G12QTM7C1ADRLCAQIA3K91899IXUVBL9I2R90EOCPMKM8METIYDDJFUZA85HDLDBO2KI30IAJC5P4L195QRIHBTV18I30GB5QWBG9DPU3S4SAP4BIRNUBW871W4BJJM4B8LRW7SNT7QEFBR7L5MU52JCAZOPWNGGDN63XUKKZL929LPWUY7IRYVHIROFE9K3WMFBYCWP21VFB3KI7QICAWU6OR4LGQHLFZ92FXZABR7D4B0O75LZKUU3GO8SEK' where id=93; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='H11BFIZVDXIQJSLBQRQ5J8F5H50NY1Q8VIN7KZM72TOK3E1XBJXV3ABNPPV9FEH3RDYXGL37XK2Z2HOQVUTS3RBKHELHI08TJD0AFBBSCXGLRWMG3OZ6Q1GH49BSOIUWWXUM84S441W33FRE3U9XIS8F69LEXY81L4V8B9CEQ5AX7J2NR43W80IIRJXWDF20283YSJKHDB9GHMXWE988IXFUG29CCBKAEMAUPVA9L475WSXQ4VYI8UOOKCOT6X5TQ' where id=94; -update noar ti set v0='H11BFIZVDXIQJSLBQRQ5J8F5H50NY1Q8VIN7KZM72TOK3E1XBJXV3ABNPPV9FEH3RDYXGL37XK2Z2HOQVUTS3RBKHELHI08TJD0AFBBSCXGLRWMG3OZ6Q1GH49BSOIUWWXUM84S441W33FRE3U9XIS8F69LEXY81L4V8B9CEQ5AX7J2NR43W80IIRJXWDF20283YSJKHDB9GHMXWE988IXFUG29CCBKAEMAUPVA9L475WSXQ4VYI8UOOKCOT6X5TQ' where id=94; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='WPC7JU4ENGC774U45EX78DMKHIZ30Y3K57FQ8P0JCHM3YI794O39DLY2D7YS9LN5XZ9DCIAU3UHY4JG6OT9OCWJLIKCNX06RVYUML9WS0OA1ZCOO4AHXOH1Y34KPHYO9MU09DH88J4IBADOPC5TCADI3OFDFJGW5IE96ZFXVXLL3ZGVANB637LHS7F6NXHDH49C6ULHU8KX8W86TZV1BEWS7HEVXDDM41IKMXB862OJCRRP86M7O10GTZF73CQIVE' where id=94; -update noar ti set v1='WPC7JU4ENGC774U45EX78DMKHIZ30Y3K57FQ8P0JCHM3YI794O39DLY2D7YS9LN5XZ9DCIAU3UHY4JG6OT9OCWJLIKCNX06RVYUML9WS0OA1ZCOO4AHXOH1Y34KPHYO9MU09DH88J4IBADOPC5TCADI3OFDFJGW5IE96ZFXVXLL3ZGVANB637LHS7F6NXHDH49C6ULHU8KX8W86TZV1BEWS7HEVXDDM41IKMXB862OJCRRP86M7O10GTZF73CQIVE' where id=94; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='TQO5EOT4LBPGC3PCJIJVZ6YMHOEZPSCI8S6HDAPJTS95E178XYUY53HFHSYXT4I9ELX7G2QDOBSD76ABGMHY2W96V0KT7FTF18035Y6RW8NDFPZBYSCJY99IM1PV0ELMI1QKN3ZAUQM8RY6VOY7MREQLGLCVYLOXQZ2L9CK4R5J3R0ZVZZBSJWZFDH25K8LNM3OPHZE57ENKK8TLLIJS6PV1Q011NCHGD61BLGZZD3KZD4X8U0XTPN57J873UHG6P' where id=94; -update noar ti set v2='TQO5EOT4LBPGC3PCJIJVZ6YMHOEZPSCI8S6HDAPJTS95E178XYUY53HFHSYXT4I9ELX7G2QDOBSD76ABGMHY2W96V0KT7FTF18035Y6RW8NDFPZBYSCJY99IM1PV0ELMI1QKN3ZAUQM8RY6VOY7MREQLGLCVYLOXQZ2L9CK4R5J3R0ZVZZBSJWZFDH25K8LNM3OPHZE57ENKK8TLLIJS6PV1Q011NCHGD61BLGZZD3KZD4X8U0XTPN57J873UHG6P' where id=94; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='W9Y750CILBYT3Z127LDRTG7RZQNCVB9OAQIHMSOSYM82F7H732IZ5WAO0NBY15SXE9N2H3PSRLAL75FT9KDW79M1SE9T89ANRHNAAA11CIE0AI2NCZVFJFT0EP3ZWYLVRY354B1AS2OXH889OCQ9CRQGZ9RRS6DNFY7Y6PL3CREQH6B3OXWMIWX3BQR8DD5AE43Z1DBC8KRZVS5GZZ2YKX3113TMGB15TE6CI97A51SJSI25JZ0L86UCUV44HERY5' where id=94; -update noar ti set v3='W9Y750CILBYT3Z127LDRTG7RZQNCVB9OAQIHMSOSYM82F7H732IZ5WAO0NBY15SXE9N2H3PSRLAL75FT9KDW79M1SE9T89ANRHNAAA11CIE0AI2NCZVFJFT0EP3ZWYLVRY354B1AS2OXH889OCQ9CRQGZ9RRS6DNFY7Y6PL3CREQH6B3OXWMIWX3BQR8DD5AE43Z1DBC8KRZVS5GZZ2YKX3113TMGB15TE6CI97A51SJSI25JZ0L86UCUV44HERY5' where id=94; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='6EH7QOIVOHN03HU0CUMJ0N2D4WM04O1P7UFKK2HJAP1A4PMOYXI4UB7SJ9NQ6K734OVFRAAB7L7IC1AZGVYECSFPS1KJX2XBJOGLFLSRADJLPSVOD56DXV0G8I7OFHH9UW9XCKR7F0547HZ1ZA6QN1PQBA25HW02EWAR909H3KZ7P8ULQXK07MRWELUUG6DR6S9WPU0OSPM73B5JMJ0R3PNTDT37JZB28VCUZQWFZYKXP25LGAMWXWZ9G6E40AF5X' where id=95; -update noar ti set v0='6EH7QOIVOHN03HU0CUMJ0N2D4WM04O1P7UFKK2HJAP1A4PMOYXI4UB7SJ9NQ6K734OVFRAAB7L7IC1AZGVYECSFPS1KJX2XBJOGLFLSRADJLPSVOD56DXV0G8I7OFHH9UW9XCKR7F0547HZ1ZA6QN1PQBA25HW02EWAR909H3KZ7P8ULQXK07MRWELUUG6DR6S9WPU0OSPM73B5JMJ0R3PNTDT37JZB28VCUZQWFZYKXP25LGAMWXWZ9G6E40AF5X' where id=95; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='5F5NA2DAJF52WVJZIPTVS277X9YJG5X0WE98SRQ5P00TF072U92VFG5BEHZXIPB9Y88137RSUR571QM9AGC0ZNDMOXTYOFW08LVJSF3EL4KQIDZN3MO28KE1WMNPPK4VM5A1AO65SDLFUSQYO0ZED3HKFG05JWNFC99GMC23K1LYC78RTJINJVZU2LI75M35MQZ3UU2ZMYDL2T0FTUDJ4RE74UE9AKYU6D4F7O9MY5SVPBBCFSVD0EAZAHBJVWK88' where id=95; -update noar ti set v1='5F5NA2DAJF52WVJZIPTVS277X9YJG5X0WE98SRQ5P00TF072U92VFG5BEHZXIPB9Y88137RSUR571QM9AGC0ZNDMOXTYOFW08LVJSF3EL4KQIDZN3MO28KE1WMNPPK4VM5A1AO65SDLFUSQYO0ZED3HKFG05JWNFC99GMC23K1LYC78RTJINJVZU2LI75M35MQZ3UU2ZMYDL2T0FTUDJ4RE74UE9AKYU6D4F7O9MY5SVPBBCFSVD0EAZAHBJVWK88' where id=95; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='Q2LDQOBULXJYLQOXWFCE3RSBY0V05RTKQCTYQETDUKUJZTLUUK01X7HGB4X0UZ67YG2CYE7O5PWYKXCOT9LNCVKWEG5Q4IGA5W4T9T1NFPA4LJ7EISBXHWA109RFB5AJMM2O7MZ57HHCD71E6AMLOFC90MSKXPUTW58D12FDRPUSZ18Z2R75D7Q0ED2BHKHAH6NT0BUDYBY6EIVCMATYKT7O6O51FDWA5LJPF3DLQF7NJVS5I7A3XG3L2B33K1O7V' where id=95; -update noar ti set v2='Q2LDQOBULXJYLQOXWFCE3RSBY0V05RTKQCTYQETDUKUJZTLUUK01X7HGB4X0UZ67YG2CYE7O5PWYKXCOT9LNCVKWEG5Q4IGA5W4T9T1NFPA4LJ7EISBXHWA109RFB5AJMM2O7MZ57HHCD71E6AMLOFC90MSKXPUTW58D12FDRPUSZ18Z2R75D7Q0ED2BHKHAH6NT0BUDYBY6EIVCMATYKT7O6O51FDWA5LJPF3DLQF7NJVS5I7A3XG3L2B33K1O7V' where id=95; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='REKOS1KNF5KJOVW58D7X5AZP883BHX8A2GOE8FJBNYXBKMERMYY2L2L0LMTNYNK538E4MJN79BEQ76KVF3Q26VNTZY7HEHZI2L1VXJK5KI1CC5SWNZF96V8H533EF2C331NZX1RTUIIXAGBX9M3UQPZDLM7R5FVO0T1BU1EGM3W9KVYOLELU65V7WWHSYNA6AQNBPEL9M4PGIOJG8XN8M9ZV1TM6XBLUEZKQGX2WDEIN9EE7QOOB7LO7HF833O9U8' where id=95; -update noar ti set v3='REKOS1KNF5KJOVW58D7X5AZP883BHX8A2GOE8FJBNYXBKMERMYY2L2L0LMTNYNK538E4MJN79BEQ76KVF3Q26VNTZY7HEHZI2L1VXJK5KI1CC5SWNZF96V8H533EF2C331NZX1RTUIIXAGBX9M3UQPZDLM7R5FVO0T1BU1EGM3W9KVYOLELU65V7WWHSYNA6AQNBPEL9M4PGIOJG8XN8M9ZV1TM6XBLUEZKQGX2WDEIN9EE7QOOB7LO7HF833O9U8' where id=95; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='FAAXUMQKWZIUTMKRYCF2CX25NLPKPG6MQ8CO4N030L52E79HDW3Q4LS2CV8F4WYKWQPP9QFJ9ES33XKMXLOMGXWVVHMGJNWUJG1X2EQA20K01CK855O3OED02VIG92SWAKHS4265HHUDIV4YZJYOXVD706BTSZV128OGQ6UKU4BHIYCCTMHA7Y92D8J9Y4X2D6BXIOYFX6D4E0OXULQUCK5JOU3P55M7QY7P6SB1GVJFZPJ887Q2LYXHQ6TZJ8UH8' where id=96; -update noar ti set v0='FAAXUMQKWZIUTMKRYCF2CX25NLPKPG6MQ8CO4N030L52E79HDW3Q4LS2CV8F4WYKWQPP9QFJ9ES33XKMXLOMGXWVVHMGJNWUJG1X2EQA20K01CK855O3OED02VIG92SWAKHS4265HHUDIV4YZJYOXVD706BTSZV128OGQ6UKU4BHIYCCTMHA7Y92D8J9Y4X2D6BXIOYFX6D4E0OXULQUCK5JOU3P55M7QY7P6SB1GVJFZPJ887Q2LYXHQ6TZJ8UH8' where id=96; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='AVB7L0JPH7EAEIWJBTF17FS34SU9LT3GWLYWJWL0X0V0YUYBT85P9Q9IX57TTDUA609O7RVDVLXX2IQJ9DBLZYUVSEXDK8Z2VC0HB9JRMM98OXK7ZUF4BQEB7EPO39U9IPFG0G0MIAMDWGNWYQC1QHAQYEOHXZ6TBV39QKF5WLF25I8OMWMRTW81SC9JEPIFVQNKTTATW720V9Y8HIS1XJT9UGXWJZFK3OJZ98Q30AR38GURYFZPVLAEXMWF1TLZ7' where id=96; -update noar ti set v1='AVB7L0JPH7EAEIWJBTF17FS34SU9LT3GWLYWJWL0X0V0YUYBT85P9Q9IX57TTDUA609O7RVDVLXX2IQJ9DBLZYUVSEXDK8Z2VC0HB9JRMM98OXK7ZUF4BQEB7EPO39U9IPFG0G0MIAMDWGNWYQC1QHAQYEOHXZ6TBV39QKF5WLF25I8OMWMRTW81SC9JEPIFVQNKTTATW720V9Y8HIS1XJT9UGXWJZFK3OJZ98Q30AR38GURYFZPVLAEXMWF1TLZ7' where id=96; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='VTGHTU2UTBEA0Q2C9VHJBGB3A2SG9YL68EH0N3HKIN8RL3ZQM9G2MYZCICJ5X9WGJ26HGLNXGBD61ZT3VPTRUT9V2NSPA2441VQYACSCM3J160CYBZ71PWWKPI1THMQWXD7RSQBBLQYJB9GYLIXSLXIHBVMFAEVGR1H4SRKMCTFX0EKVVM8UQ394F22FVZPTO8LNA3N7BCASHK7YOZM2AMW03PXHD7K4IKSHBZ524VRRER0T35PZICZNHSFO34Z4W' where id=96; -update noar ti set v2='VTGHTU2UTBEA0Q2C9VHJBGB3A2SG9YL68EH0N3HKIN8RL3ZQM9G2MYZCICJ5X9WGJ26HGLNXGBD61ZT3VPTRUT9V2NSPA2441VQYACSCM3J160CYBZ71PWWKPI1THMQWXD7RSQBBLQYJB9GYLIXSLXIHBVMFAEVGR1H4SRKMCTFX0EKVVM8UQ394F22FVZPTO8LNA3N7BCASHK7YOZM2AMW03PXHD7K4IKSHBZ524VRRER0T35PZICZNHSFO34Z4W' where id=96; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='UFJ5JLTP7WUETVGL7QAV005KL9XZ2MNNTHP7O5012TUVA6BGJ79UDMQC5OGYYCW98IZ1WOW35ZB0FSGY2BP8FGJZZ835HRNPSDJ6M2SSWLYMO2IJ6J5F0VYS84NKECE7X53K6RTBDDO0VB3ZM32Z49M8ZCVN7GT8IVEQ9O3SNQMRNY65CRVAK1VSI55E8ZUVY4IWHF6GFI7X6G6H2R75IGA1ASR0BGVBDF32IYWT4DSPJ1II3UCA9D19FLX3NC2ZX' where id=96; -update noar ti set v3='UFJ5JLTP7WUETVGL7QAV005KL9XZ2MNNTHP7O5012TUVA6BGJ79UDMQC5OGYYCW98IZ1WOW35ZB0FSGY2BP8FGJZZ835HRNPSDJ6M2SSWLYMO2IJ6J5F0VYS84NKECE7X53K6RTBDDO0VB3ZM32Z49M8ZCVN7GT8IVEQ9O3SNQMRNY65CRVAK1VSI55E8ZUVY4IWHF6GFI7X6G6H2R75IGA1ASR0BGVBDF32IYWT4DSPJ1II3UCA9D19FLX3NC2ZX' where id=96; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='2257OFXUKLFS2FB5DWHAL2W2YCLFCWSIZ1OYHQXG7DIU8MR0M5N22GZHSIK17MSZ19SGW6LWPUS6DEMLI8LNUHYOUUR6VHWJ9V1EOFVTKPH91AIG559AH6VGZHGDW5G42RCTNQ9LVVYHOQZ9P0VEW0D96WCJHSKUG07ZZFZUB6Q2J4RQ828O09OHJJOP8XF5R5WYBRYCVZL965JLKB58YMLXOMHO8MJTI8SO3XB8QX30O4Z1TY5OTCC734ISR5OR8' where id=97; -update noar ti set v0='2257OFXUKLFS2FB5DWHAL2W2YCLFCWSIZ1OYHQXG7DIU8MR0M5N22GZHSIK17MSZ19SGW6LWPUS6DEMLI8LNUHYOUUR6VHWJ9V1EOFVTKPH91AIG559AH6VGZHGDW5G42RCTNQ9LVVYHOQZ9P0VEW0D96WCJHSKUG07ZZFZUB6Q2J4RQ828O09OHJJOP8XF5R5WYBRYCVZL965JLKB58YMLXOMHO8MJTI8SO3XB8QX30O4Z1TY5OTCC734ISR5OR8' where id=97; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='PCWGA3O10XR00QS2SWXP0U7JQH8G0O5U6H3GK8TONZCESJJBF97BKWFRCNE9N58SPDMWIC3QL7U4QD3MBLMVAJO062J3JLE6HBNUOV6SJL0UEZLQKG80ZG4DS51V9NU9DQICOPGAXPNUO59V680NATGNIH0E5O0KJE30NNW4ZZ0ILP5H9QS5ZJ8RHT1MG8QABXSRVS0RS4C661EW8YNO3X6ZWMLZ133IHJVUPJNUPKTCXT027620U4IYBPPZ14E0L' where id=97; -update noar ti set v1='PCWGA3O10XR00QS2SWXP0U7JQH8G0O5U6H3GK8TONZCESJJBF97BKWFRCNE9N58SPDMWIC3QL7U4QD3MBLMVAJO062J3JLE6HBNUOV6SJL0UEZLQKG80ZG4DS51V9NU9DQICOPGAXPNUO59V680NATGNIH0E5O0KJE30NNW4ZZ0ILP5H9QS5ZJ8RHT1MG8QABXSRVS0RS4C661EW8YNO3X6ZWMLZ133IHJVUPJNUPKTCXT027620U4IYBPPZ14E0L' where id=97; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='T58S91X3BNFNRYPR3IMKC9D6UJOZA7BJ19Q9EC0TZJFHJIQAI8C4RUE71REVF85BRQ7M7UAPK6L2UUW6WVTGY9W2JAN1D1WLC5OV8DL7ZXUT6QAPLSR5VX5I7JEE0ZLBUVV0ST7LBH7444Y01YJ0TZGX3LFKAGPPWMGTQ3KJ4FV9Q9L3M6Q0BXTOYTH225XK5NG9Y3MD8WBI2CN2PIUNONJXQGXXJ8GIZMDWFWNV7L9IJXVPDJAXISI14EQD0I1LL' where id=97; -update noar ti set v2='T58S91X3BNFNRYPR3IMKC9D6UJOZA7BJ19Q9EC0TZJFHJIQAI8C4RUE71REVF85BRQ7M7UAPK6L2UUW6WVTGY9W2JAN1D1WLC5OV8DL7ZXUT6QAPLSR5VX5I7JEE0ZLBUVV0ST7LBH7444Y01YJ0TZGX3LFKAGPPWMGTQ3KJ4FV9Q9L3M6Q0BXTOYTH225XK5NG9Y3MD8WBI2CN2PIUNONJXQGXXJ8GIZMDWFWNV7L9IJXVPDJAXISI14EQD0I1LL' where id=97; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='ELR5OYU9FXZFHMBF3J2HG47AII8Y02M473OWKDEZ2AK6V3JKJWXQLM4K1Z27YA0VS6ZROJNK2RVEGWWEQBNK0AAPXZUSCJUQKD4NOGVMX3T6BNJSAGTV6NJHQHPHUZ85YJXVUD9FM1K6RK855XRKYU4MVDNB6PH9NY9OGOHR5E04LA34YRE4L8P780ERJD5OAG347T8XAMB038NGQADTYLX3PDI0MN1IXYK1A1OEZC6AIED8IPYFMQ59QQGOGLP93' where id=97; -update noar ti set v3='ELR5OYU9FXZFHMBF3J2HG47AII8Y02M473OWKDEZ2AK6V3JKJWXQLM4K1Z27YA0VS6ZROJNK2RVEGWWEQBNK0AAPXZUSCJUQKD4NOGVMX3T6BNJSAGTV6NJHQHPHUZ85YJXVUD9FM1K6RK855XRKYU4MVDNB6PH9NY9OGOHR5E04LA34YRE4L8P780ERJD5OAG347T8XAMB038NGQADTYLX3PDI0MN1IXYK1A1OEZC6AIED8IPYFMQ59QQGOGLP93' where id=97; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='PPZV0EDGI7ZL7GY81JGDYNOM2C58PD0MX2XFOC99C94BIPS89HBE0QWJM69W5TX37WICUILTDTERRFN8MNR4CK2WVKMXJI2LZAZTQTIKXDKIWXQZW34FCSP64P9QCAFNBDBJCODEGPCFVP5AZC3GYEXIMWB8IU7PVBUXK481YL49T4P99H0CI6WCMZBNEDT500DG6DE1F6QM5IQGW5I4MHQVKEHGMOYE8A66AC946MRUPJ8WMJ2CGBPTQT8VYYMUF' where id=98; -update noar ti set v0='PPZV0EDGI7ZL7GY81JGDYNOM2C58PD0MX2XFOC99C94BIPS89HBE0QWJM69W5TX37WICUILTDTERRFN8MNR4CK2WVKMXJI2LZAZTQTIKXDKIWXQZW34FCSP64P9QCAFNBDBJCODEGPCFVP5AZC3GYEXIMWB8IU7PVBUXK481YL49T4P99H0CI6WCMZBNEDT500DG6DE1F6QM5IQGW5I4MHQVKEHGMOYE8A66AC946MRUPJ8WMJ2CGBPTQT8VYYMUF' where id=98; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='MHE8ZHDRQMBO2NN7RQVMUJNFF1HZJLSBMHBYWO0YAZFO3D28C3O0GYH3IMCKBH8IOCIGWS89W56Y0J96HMUKJKCYOMWDTH02RYZ54WLQGERGQ3T92H7KUGYKS8OI06GGE04RAHEJ33BTF8KGBPCBJC62UP4K4T8X1M0MX4S8GIYGUTV0YKAAJVOPZTTMMYTK9KMCHHXTLHN36J88IFHW37N3J9FRTZDTI2EYW7XDNHYXZ6AB5XCNMQP8MMPVTO4M3' where id=98; -update noar ti set v1='MHE8ZHDRQMBO2NN7RQVMUJNFF1HZJLSBMHBYWO0YAZFO3D28C3O0GYH3IMCKBH8IOCIGWS89W56Y0J96HMUKJKCYOMWDTH02RYZ54WLQGERGQ3T92H7KUGYKS8OI06GGE04RAHEJ33BTF8KGBPCBJC62UP4K4T8X1M0MX4S8GIYGUTV0YKAAJVOPZTTMMYTK9KMCHHXTLHN36J88IFHW37N3J9FRTZDTI2EYW7XDNHYXZ6AB5XCNMQP8MMPVTO4M3' where id=98; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='SWJ9LT09OCC8EVXVTOFW27OXE71E9F49XOLWOG49Z8755GNPS5QH5X6AJ3IUPOGR0R6DQY9ABXIEZB3KQLRLMT50C7YVDJ0F4A3RRJ42N19UFEM34Y6115Y4UBLY7RA794MV1DZGDXR34T8KB6QR2ZFX3ZX8UT0965P9T2FR51JGBS3VOWPR5SD9IRGI9Y62NQ9WH569HZBM8IHAAVZ7Q9EZEE9J95ZYYC4QAOHY9GMUD2QMGEJYL5QSEC6MHXD4K' where id=98; -update noar ti set v2='SWJ9LT09OCC8EVXVTOFW27OXE71E9F49XOLWOG49Z8755GNPS5QH5X6AJ3IUPOGR0R6DQY9ABXIEZB3KQLRLMT50C7YVDJ0F4A3RRJ42N19UFEM34Y6115Y4UBLY7RA794MV1DZGDXR34T8KB6QR2ZFX3ZX8UT0965P9T2FR51JGBS3VOWPR5SD9IRGI9Y62NQ9WH569HZBM8IHAAVZ7Q9EZEE9J95ZYYC4QAOHY9GMUD2QMGEJYL5QSEC6MHXD4K' where id=98; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='JCOI29KEC0NYM1G3ZGCEYW8GGJKG8BZ5XNK0WKBWU0H0RN3XJ3GT5L2Y7LF0PHRE0KNCX9EOE6KMCPZJ5CWA88C6YAEGS4U5LNQ55CFUQCF8PIIT9VV4NHMV0MHM91D01NGTTVY3Z4B1O7QQNZGB52781EYNX0UT5OQMD19IETHNFI1FH80HS03RXPJRA49448T726CY77U5T338NONRYUF2PP40D3Z05LG8V0382Y7ULY0UR5ZVZ1BB812OQUEBT' where id=98; -update noar ti set v3='JCOI29KEC0NYM1G3ZGCEYW8GGJKG8BZ5XNK0WKBWU0H0RN3XJ3GT5L2Y7LF0PHRE0KNCX9EOE6KMCPZJ5CWA88C6YAEGS4U5LNQ55CFUQCF8PIIT9VV4NHMV0MHM91D01NGTTVY3Z4B1O7QQNZGB52781EYNX0UT5OQMD19IETHNFI1FH80HS03RXPJRA49448T726CY77U5T338NONRYUF2PP40D3Z05LG8V0382Y7ULY0UR5ZVZ1BB812OQUEBT' where id=98; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -update noar tt set v0='L2I9WV9C7179KOVWGEBPR14V2R8KHW9ADCF27C1QS2LWYBOU4SIPEJK86PMMNGZQ5XDXPT4QNS3F5N8DN5L9V934ER2JYAA6PFZ61WPBVDB3WMEBAVQZ53B64V74RRA1Z6KC9EFI9ZGDJU45WJY7XIQGUUXRCI60EA6AUCYI36RON8K1E1Z4BSYK1N2GPWKPK8K25XEJWH99NK5BGSUZGMSDT15D6I2A9BNHMS4DUFFGTX9TBHKDULLZTUENPHXSB' where id=99; -update noar ti set v0='L2I9WV9C7179KOVWGEBPR14V2R8KHW9ADCF27C1QS2LWYBOU4SIPEJK86PMMNGZQ5XDXPT4QNS3F5N8DN5L9V934ER2JYAA6PFZ61WPBVDB3WMEBAVQZ53B64V74RRA1Z6KC9EFI9ZGDJU45WJY7XIQGUUXRCI60EA6AUCYI36RON8K1E1Z4BSYK1N2GPWKPK8K25XEJWH99NK5BGSUZGMSDT15D6I2A9BNHMS4DUFFGTX9TBHKDULLZTUENPHXSB' where id=99; -Warnings: -Warning 1265 Data truncated for column 'v0' at row 1 -update noar tt set v1='3YNWGOW6CV4GMJAWES6GY0RIZLCYXJQV0GP9SB089WRV1LAIIQOEHS1NDVZTD0N5DJH6SFXIAR5B86F4F14CK9ND8RZOQ55X59PK3L7Z8E36UNTNFE5C1852AZEC1P1TY8QPINDZO5QBSBKRXOG0TWE4OAJ082PIO6KJZVMHDI5ANLKLPRP7N9O6OIFJLB5EM9M04SGFOWSRJDGPZJXGUUHUE9VRY21DM7A0RC6N3YZFNJG8Q6XQIY3J8JTQRO64V' where id=99; -update noar ti set v1='3YNWGOW6CV4GMJAWES6GY0RIZLCYXJQV0GP9SB089WRV1LAIIQOEHS1NDVZTD0N5DJH6SFXIAR5B86F4F14CK9ND8RZOQ55X59PK3L7Z8E36UNTNFE5C1852AZEC1P1TY8QPINDZO5QBSBKRXOG0TWE4OAJ082PIO6KJZVMHDI5ANLKLPRP7N9O6OIFJLB5EM9M04SGFOWSRJDGPZJXGUUHUE9VRY21DM7A0RC6N3YZFNJG8Q6XQIY3J8JTQRO64V' where id=99; -Warnings: -Warning 1265 Data truncated for column 'v1' at row 1 -update noar tt set v2='2QS184OQUSY2T1FOAWQIE57GN9DGAXSDLAASV89Q3FBLHZXOLFJUFNBHVAHYXCG42R8PZL3BQ1RRAID83P7N4YMMGZDKG4UM7CKVVJN5M36MR574PDLC1ADMBHRFLO4CO39HP4LPUMMVY22M0QDSJILNIM4H7YUS32R8OE7MURE1N2GIRB93JQUHY5OZG743QWEY6Y98ADMP7P1YL3XDBSVZKQ2DVLN4NTC37HV3F1T0OZ5ATLLGTZPARNF4BII0A' where id=99; -update noar ti set v2='2QS184OQUSY2T1FOAWQIE57GN9DGAXSDLAASV89Q3FBLHZXOLFJUFNBHVAHYXCG42R8PZL3BQ1RRAID83P7N4YMMGZDKG4UM7CKVVJN5M36MR574PDLC1ADMBHRFLO4CO39HP4LPUMMVY22M0QDSJILNIM4H7YUS32R8OE7MURE1N2GIRB93JQUHY5OZG743QWEY6Y98ADMP7P1YL3XDBSVZKQ2DVLN4NTC37HV3F1T0OZ5ATLLGTZPARNF4BII0A' where id=99; -Warnings: -Warning 1265 Data truncated for column 'v2' at row 1 -update noar tt set v3='GSTHW6G2VM1R3YG9RI9KQIMUAO37JPPXHVUL6AXRRA1AV2730CYIKKOQTAL1A2S4NFSV1YDKRWE854E2I7XY12GYDJ1P41WMFYOA3IW4UPAXR1JI5B5RNJI9IXZJEXOT7DWI6XUZ1GF6HDNU480SB6HNM6ZEJBROFRWEIK0T12CCTP7VOQ10H18WGEG5K9NCSGCO6B3328U663KYNC107S58LHXF02I2WI69CBGF3OE2ISAOYH2UIDN7PWFVR5XNL' where id=99; -update noar ti set v3='GSTHW6G2VM1R3YG9RI9KQIMUAO37JPPXHVUL6AXRRA1AV2730CYIKKOQTAL1A2S4NFSV1YDKRWE854E2I7XY12GYDJ1P41WMFYOA3IW4UPAXR1JI5B5RNJI9IXZJEXOT7DWI6XUZ1GF6HDNU480SB6HNM6ZEJBROFRWEIK0T12CCTP7VOQ10H18WGEG5K9NCSGCO6B3328U663KYNC107S58LHXF02I2WI69CBGF3OE2ISAOYH2UIDN7PWFVR5XNL' where id=99; -Warnings: -Warning 1265 Data truncated for column 'v3' at row 1 -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; +This test does not produce any output on success diff --git a/storage/tokudb/mysql-test/tokudb/r/fast_upsert_bin_pad.result b/storage/tokudb/mysql-test/tokudb/r/fast_upsert_bin_pad.result index 44cf18a79b20f83cfac349ad638637f260638fb8..1955c1632d2ce1893b892ed09367542cc1b88071 100644 GIT binary patch delta 225 zcmbQt`iQl@IJHEfBtN?}B`H2NFEJ@6H9jq|xFo)`pg6Ut#MaQ73#6bpwYWGlKTn~! zFeg4YKPA;xqc}AuHMvBgD77FbF*#Mk!2u?vqaGX*fnhRtCL}h$RW-&-nd~r^Gd3acWVCt>MJ2CKG=u evE=0^7EP97?1C`PFiK3`%_s!pI6xTOOxFQ5U^f*2 diff --git a/storage/tokudb/mysql-test/tokudb/r/fast_upsert_char.result b/storage/tokudb/mysql-test/tokudb/r/fast_upsert_char.result index d8036ff6607..aa9be20e7ed 100644 --- a/storage/tokudb/mysql-test/tokudb/r/fast_upsert_char.result +++ b/storage/tokudb/mysql-test/tokudb/r/fast_upsert_char.result @@ -1,19 +1,19 @@ -set default_storage_engine='tokudb'; -drop table if exists tt, ti; -set tokudb_disable_slow_upsert=1; -create table tt (id int primary key, c char(32), b binary(32)); +set tokudb_enable_fast_upsert=1; +set session sql_mode=(select replace(@@sql_mode,'STRICT_TRANS_TABLES','')); +set session sql_mode=(select replace(@@sql_mode,'STRICT_ALL_TABLES','')); +create table tt (id int primary key, c char(32), b binary(32)) engine = tokudb; create table ti like tt; alter table ti engine=innodb; -insert noar into tt values (1,null,null) on duplicate key update c='hi'; -insert noar into ti values (1,null,null) on duplicate key update c='hi'; +insert into tt values (1,null,null) on duplicate key update c='hi'; +insert into ti values (1,null,null) on duplicate key update c='hi'; include/diff_tables.inc [test.tt, test.ti] -insert noar into tt values (1,null,null) on duplicate key update c='there'; -insert noar into ti values (1,null,null) on duplicate key update c='there'; +insert into tt values (1,null,null) on duplicate key update c='there'; +insert into ti values (1,null,null) on duplicate key update c='there'; include/diff_tables.inc [test.tt, test.ti] -insert noar into tt values (1,null,null) on duplicate key update b='you'; -insert noar into ti values (1,null,null) on duplicate key update b='you'; +insert into tt values (1,null,null) on duplicate key update b='you'; +insert into ti values (1,null,null) on duplicate key update b='you'; include/diff_tables.inc [test.tt, test.ti] -insert noar into tt values (1,null,null) on duplicate key update b='people'; -insert noar into ti values (1,null,null) on duplicate key update b='people'; +insert into tt values (1,null,null) on duplicate key update b='people'; +insert into ti values (1,null,null) on duplicate key update b='people'; include/diff_tables.inc [test.tt, test.ti] drop table tt, ti; diff --git a/storage/tokudb/mysql-test/tokudb/r/fast_upsert_deadlock.result b/storage/tokudb/mysql-test/tokudb/r/fast_upsert_deadlock.result index 192d32d9a95..d7ec18951e1 100644 --- a/storage/tokudb/mysql-test/tokudb/r/fast_upsert_deadlock.result +++ b/storage/tokudb/mysql-test/tokudb/r/fast_upsert_deadlock.result @@ -1,12 +1,17 @@ -drop table if exists t; -set default_storage_engine='tokudb'; -create table t (id bigint primary key, b bigint not null default 0); +set tokudb_enable_fast_upsert=1; +set session sql_mode=(select replace(@@sql_mode,'STRICT_TRANS_TABLES','')); +set session sql_mode=(select replace(@@sql_mode,'STRICT_ALL_TABLES','')); +create table t (id bigint primary key, b bigint not null default 0) +engine = tokudb; +SET SESSION sql_mode=(SELECT REPLACE(@@sql_mode,'STRICT_TRANS_TABLES','')); +SET SESSION sql_mode=(SELECT REPLACE(@@sql_mode,'STRICT_ALL_TABLES','')); +set tokudb_enable_fast_upsert=1; begin; -insert noar into t (id) values (1) on duplicate key update b=b+1; +insert into t (id) values (1) on duplicate key update b=b+1; begin; -insert noar into t (id) values (2) on duplicate key update b=b-1; -insert noar into t (id) values (2) on duplicate key update b=b+1; -insert noar into t (id) values (1) on duplicate key update b=b-1; +insert into t (id) values (2) on duplicate key update b=b-1; +insert into t (id) values (2) on duplicate key update b=b+1; +insert into t (id) values (1) on duplicate key update b=b-1; Got one of the listed errors rollback; commit; diff --git a/storage/tokudb/mysql-test/tokudb/r/fast_upsert_int.result b/storage/tokudb/mysql-test/tokudb/r/fast_upsert_int.result index 0d500c480a8..4a963777fc0 100644 --- a/storage/tokudb/mysql-test/tokudb/r/fast_upsert_int.result +++ b/storage/tokudb/mysql-test/tokudb/r/fast_upsert_int.result @@ -1,427 +1 @@ -set default_storage_engine='tokudb'; -drop table if exists tt, ti; -set tokudb_disable_slow_update=1; -create table tt ( -id tinyint null primary key, -x tinyint null, -y tinyint null, -z tinyint null, -a char(32), aa varchar(32) -); -insert noar into tt (id) values (1),(2),(3) on duplicate key update x=0; -insert noar into tt (id) values (1) on duplicate key update y=0,z=42; -insert noar into tt (id) values (1) on duplicate key update y=y+1,z=z+100; -insert noar into tt (id) values (1) on duplicate key update y=y-1; -insert noar into tt (id) values (1) on duplicate key update z=z-100; -create table ti like tt; -alter table ti engine=innodb; -insert noar into ti (id) values (1),(2),(3) on duplicate key update x=0; -insert noar into ti (id) values (1) on duplicate key update y=0,z=42; -insert noar into ti (id) values (1) on duplicate key update y=y+1,z=z+100; -Warnings: -Warning 1264 Out of range value for column 'z' at row 1 -insert noar into ti (id) values (1) on duplicate key update y=y-1; -insert noar into ti (id) values (1) on duplicate key update z=z-100; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt ( -id tinyint not null primary key, -x tinyint not null default 0, -y tinyint not null default 0, -z tinyint not null default 0, -a char(32), aa varchar(32) -); -insert noar into tt (id) values (1),(2),(3) on duplicate key update x=0; -insert noar into tt (id) values (1) on duplicate key update y=0,z=42; -insert noar into tt (id) values (1) on duplicate key update y=y+1,z=z+100; -insert noar into tt (id) values (1) on duplicate key update y=y-1; -insert noar into tt (id) values (1) on duplicate key update z=z-100; -create table ti like tt; -alter table ti engine=innodb; -insert noar into ti (id) values (1),(2),(3) on duplicate key update x=0; -insert noar into ti (id) values (1) on duplicate key update y=0,z=42; -insert noar into ti (id) values (1) on duplicate key update y=y+1,z=z+100; -Warnings: -Warning 1264 Out of range value for column 'z' at row 1 -insert noar into ti (id) values (1) on duplicate key update y=y-1; -insert noar into ti (id) values (1) on duplicate key update z=z-100; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt ( -id tinyint unsigned null primary key, -x tinyint unsigned null, -y tinyint unsigned null, -z tinyint unsigned null, -a char(32), aa varchar(32) -); -insert noar into tt (id) values (1),(2),(3) on duplicate key update x=0; -insert noar into tt (id) values (1) on duplicate key update y=0,z=42; -insert noar into tt (id) values (1) on duplicate key update y=y+1,z=z+100; -insert noar into tt (id) values (1) on duplicate key update y=y-1; -insert noar into tt (id) values (1) on duplicate key update z=z-100; -create table ti like tt; -alter table ti engine=innodb; -insert noar into ti (id) values (1),(2),(3) on duplicate key update x=0; -insert noar into ti (id) values (1) on duplicate key update y=0,z=42; -insert noar into ti (id) values (1) on duplicate key update y=y+1,z=z+100; -insert noar into ti (id) values (1) on duplicate key update y=y-1; -insert noar into ti (id) values (1) on duplicate key update z=z-100; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt ( -id tinyint unsigned not null primary key, -x tinyint unsigned not null default 0, -y tinyint unsigned not null default 0, -z tinyint unsigned not null default 0, -a char(32), aa varchar(32) -); -insert noar into tt (id) values (1),(2),(3) on duplicate key update x=0; -insert noar into tt (id) values (1) on duplicate key update y=0,z=42; -insert noar into tt (id) values (1) on duplicate key update y=y+1,z=z+100; -insert noar into tt (id) values (1) on duplicate key update y=y-1; -insert noar into tt (id) values (1) on duplicate key update z=z-100; -create table ti like tt; -alter table ti engine=innodb; -insert noar into ti (id) values (1),(2),(3) on duplicate key update x=0; -insert noar into ti (id) values (1) on duplicate key update y=0,z=42; -insert noar into ti (id) values (1) on duplicate key update y=y+1,z=z+100; -insert noar into ti (id) values (1) on duplicate key update y=y-1; -insert noar into ti (id) values (1) on duplicate key update z=z-100; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt ( -id smallint null primary key, -x smallint null, -y smallint null, -z smallint null, -a char(32), aa varchar(32) -); -insert noar into tt (id) values (1),(2),(3) on duplicate key update x=0; -insert noar into tt (id) values (1) on duplicate key update y=0,z=42; -insert noar into tt (id) values (1) on duplicate key update y=y+1,z=z+100; -insert noar into tt (id) values (1) on duplicate key update y=y-1; -insert noar into tt (id) values (1) on duplicate key update z=z-100; -create table ti like tt; -alter table ti engine=innodb; -insert noar into ti (id) values (1),(2),(3) on duplicate key update x=0; -insert noar into ti (id) values (1) on duplicate key update y=0,z=42; -insert noar into ti (id) values (1) on duplicate key update y=y+1,z=z+100; -insert noar into ti (id) values (1) on duplicate key update y=y-1; -insert noar into ti (id) values (1) on duplicate key update z=z-100; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt ( -id smallint not null primary key, -x smallint not null default 0, -y smallint not null default 0, -z smallint not null default 0, -a char(32), aa varchar(32) -); -insert noar into tt (id) values (1),(2),(3) on duplicate key update x=0; -insert noar into tt (id) values (1) on duplicate key update y=0,z=42; -insert noar into tt (id) values (1) on duplicate key update y=y+1,z=z+100; -insert noar into tt (id) values (1) on duplicate key update y=y-1; -insert noar into tt (id) values (1) on duplicate key update z=z-100; -create table ti like tt; -alter table ti engine=innodb; -insert noar into ti (id) values (1),(2),(3) on duplicate key update x=0; -insert noar into ti (id) values (1) on duplicate key update y=0,z=42; -insert noar into ti (id) values (1) on duplicate key update y=y+1,z=z+100; -insert noar into ti (id) values (1) on duplicate key update y=y-1; -insert noar into ti (id) values (1) on duplicate key update z=z-100; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt ( -id smallint unsigned null primary key, -x smallint unsigned null, -y smallint unsigned null, -z smallint unsigned null, -a char(32), aa varchar(32) -); -insert noar into tt (id) values (1),(2),(3) on duplicate key update x=0; -insert noar into tt (id) values (1) on duplicate key update y=0,z=42; -insert noar into tt (id) values (1) on duplicate key update y=y+1,z=z+100; -insert noar into tt (id) values (1) on duplicate key update y=y-1; -insert noar into tt (id) values (1) on duplicate key update z=z-100; -create table ti like tt; -alter table ti engine=innodb; -insert noar into ti (id) values (1),(2),(3) on duplicate key update x=0; -insert noar into ti (id) values (1) on duplicate key update y=0,z=42; -insert noar into ti (id) values (1) on duplicate key update y=y+1,z=z+100; -insert noar into ti (id) values (1) on duplicate key update y=y-1; -insert noar into ti (id) values (1) on duplicate key update z=z-100; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt ( -id smallint unsigned not null primary key, -x smallint unsigned not null default 0, -y smallint unsigned not null default 0, -z smallint unsigned not null default 0, -a char(32), aa varchar(32) -); -insert noar into tt (id) values (1),(2),(3) on duplicate key update x=0; -insert noar into tt (id) values (1) on duplicate key update y=0,z=42; -insert noar into tt (id) values (1) on duplicate key update y=y+1,z=z+100; -insert noar into tt (id) values (1) on duplicate key update y=y-1; -insert noar into tt (id) values (1) on duplicate key update z=z-100; -create table ti like tt; -alter table ti engine=innodb; -insert noar into ti (id) values (1),(2),(3) on duplicate key update x=0; -insert noar into ti (id) values (1) on duplicate key update y=0,z=42; -insert noar into ti (id) values (1) on duplicate key update y=y+1,z=z+100; -insert noar into ti (id) values (1) on duplicate key update y=y-1; -insert noar into ti (id) values (1) on duplicate key update z=z-100; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt ( -id mediumint null primary key, -x mediumint null, -y mediumint null, -z mediumint null, -a char(32), aa varchar(32) -); -insert noar into tt (id) values (1),(2),(3) on duplicate key update x=0; -insert noar into tt (id) values (1) on duplicate key update y=0,z=42; -insert noar into tt (id) values (1) on duplicate key update y=y+1,z=z+100; -insert noar into tt (id) values (1) on duplicate key update y=y-1; -insert noar into tt (id) values (1) on duplicate key update z=z-100; -create table ti like tt; -alter table ti engine=innodb; -insert noar into ti (id) values (1),(2),(3) on duplicate key update x=0; -insert noar into ti (id) values (1) on duplicate key update y=0,z=42; -insert noar into ti (id) values (1) on duplicate key update y=y+1,z=z+100; -insert noar into ti (id) values (1) on duplicate key update y=y-1; -insert noar into ti (id) values (1) on duplicate key update z=z-100; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt ( -id mediumint not null primary key, -x mediumint not null default 0, -y mediumint not null default 0, -z mediumint not null default 0, -a char(32), aa varchar(32) -); -insert noar into tt (id) values (1),(2),(3) on duplicate key update x=0; -insert noar into tt (id) values (1) on duplicate key update y=0,z=42; -insert noar into tt (id) values (1) on duplicate key update y=y+1,z=z+100; -insert noar into tt (id) values (1) on duplicate key update y=y-1; -insert noar into tt (id) values (1) on duplicate key update z=z-100; -create table ti like tt; -alter table ti engine=innodb; -insert noar into ti (id) values (1),(2),(3) on duplicate key update x=0; -insert noar into ti (id) values (1) on duplicate key update y=0,z=42; -insert noar into ti (id) values (1) on duplicate key update y=y+1,z=z+100; -insert noar into ti (id) values (1) on duplicate key update y=y-1; -insert noar into ti (id) values (1) on duplicate key update z=z-100; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt ( -id mediumint unsigned null primary key, -x mediumint unsigned null, -y mediumint unsigned null, -z mediumint unsigned null, -a char(32), aa varchar(32) -); -insert noar into tt (id) values (1),(2),(3) on duplicate key update x=0; -insert noar into tt (id) values (1) on duplicate key update y=0,z=42; -insert noar into tt (id) values (1) on duplicate key update y=y+1,z=z+100; -insert noar into tt (id) values (1) on duplicate key update y=y-1; -insert noar into tt (id) values (1) on duplicate key update z=z-100; -create table ti like tt; -alter table ti engine=innodb; -insert noar into ti (id) values (1),(2),(3) on duplicate key update x=0; -insert noar into ti (id) values (1) on duplicate key update y=0,z=42; -insert noar into ti (id) values (1) on duplicate key update y=y+1,z=z+100; -insert noar into ti (id) values (1) on duplicate key update y=y-1; -insert noar into ti (id) values (1) on duplicate key update z=z-100; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt ( -id mediumint unsigned not null primary key, -x mediumint unsigned not null default 0, -y mediumint unsigned not null default 0, -z mediumint unsigned not null default 0, -a char(32), aa varchar(32) -); -insert noar into tt (id) values (1),(2),(3) on duplicate key update x=0; -insert noar into tt (id) values (1) on duplicate key update y=0,z=42; -insert noar into tt (id) values (1) on duplicate key update y=y+1,z=z+100; -insert noar into tt (id) values (1) on duplicate key update y=y-1; -insert noar into tt (id) values (1) on duplicate key update z=z-100; -create table ti like tt; -alter table ti engine=innodb; -insert noar into ti (id) values (1),(2),(3) on duplicate key update x=0; -insert noar into ti (id) values (1) on duplicate key update y=0,z=42; -insert noar into ti (id) values (1) on duplicate key update y=y+1,z=z+100; -insert noar into ti (id) values (1) on duplicate key update y=y-1; -insert noar into ti (id) values (1) on duplicate key update z=z-100; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt ( -id int null primary key, -x int null, -y int null, -z int null, -a char(32), aa varchar(32) -); -insert noar into tt (id) values (1),(2),(3) on duplicate key update x=0; -insert noar into tt (id) values (1) on duplicate key update y=0,z=42; -insert noar into tt (id) values (1) on duplicate key update y=y+1,z=z+100; -insert noar into tt (id) values (1) on duplicate key update y=y-1; -insert noar into tt (id) values (1) on duplicate key update z=z-100; -create table ti like tt; -alter table ti engine=innodb; -insert noar into ti (id) values (1),(2),(3) on duplicate key update x=0; -insert noar into ti (id) values (1) on duplicate key update y=0,z=42; -insert noar into ti (id) values (1) on duplicate key update y=y+1,z=z+100; -insert noar into ti (id) values (1) on duplicate key update y=y-1; -insert noar into ti (id) values (1) on duplicate key update z=z-100; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt ( -id int not null primary key, -x int not null default 0, -y int not null default 0, -z int not null default 0, -a char(32), aa varchar(32) -); -insert noar into tt (id) values (1),(2),(3) on duplicate key update x=0; -insert noar into tt (id) values (1) on duplicate key update y=0,z=42; -insert noar into tt (id) values (1) on duplicate key update y=y+1,z=z+100; -insert noar into tt (id) values (1) on duplicate key update y=y-1; -insert noar into tt (id) values (1) on duplicate key update z=z-100; -create table ti like tt; -alter table ti engine=innodb; -insert noar into ti (id) values (1),(2),(3) on duplicate key update x=0; -insert noar into ti (id) values (1) on duplicate key update y=0,z=42; -insert noar into ti (id) values (1) on duplicate key update y=y+1,z=z+100; -insert noar into ti (id) values (1) on duplicate key update y=y-1; -insert noar into ti (id) values (1) on duplicate key update z=z-100; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt ( -id int unsigned null primary key, -x int unsigned null, -y int unsigned null, -z int unsigned null, -a char(32), aa varchar(32) -); -insert noar into tt (id) values (1),(2),(3) on duplicate key update x=0; -insert noar into tt (id) values (1) on duplicate key update y=0,z=42; -insert noar into tt (id) values (1) on duplicate key update y=y+1,z=z+100; -insert noar into tt (id) values (1) on duplicate key update y=y-1; -insert noar into tt (id) values (1) on duplicate key update z=z-100; -create table ti like tt; -alter table ti engine=innodb; -insert noar into ti (id) values (1),(2),(3) on duplicate key update x=0; -insert noar into ti (id) values (1) on duplicate key update y=0,z=42; -insert noar into ti (id) values (1) on duplicate key update y=y+1,z=z+100; -insert noar into ti (id) values (1) on duplicate key update y=y-1; -insert noar into ti (id) values (1) on duplicate key update z=z-100; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt ( -id int unsigned not null primary key, -x int unsigned not null default 0, -y int unsigned not null default 0, -z int unsigned not null default 0, -a char(32), aa varchar(32) -); -insert noar into tt (id) values (1),(2),(3) on duplicate key update x=0; -insert noar into tt (id) values (1) on duplicate key update y=0,z=42; -insert noar into tt (id) values (1) on duplicate key update y=y+1,z=z+100; -insert noar into tt (id) values (1) on duplicate key update y=y-1; -insert noar into tt (id) values (1) on duplicate key update z=z-100; -create table ti like tt; -alter table ti engine=innodb; -insert noar into ti (id) values (1),(2),(3) on duplicate key update x=0; -insert noar into ti (id) values (1) on duplicate key update y=0,z=42; -insert noar into ti (id) values (1) on duplicate key update y=y+1,z=z+100; -insert noar into ti (id) values (1) on duplicate key update y=y-1; -insert noar into ti (id) values (1) on duplicate key update z=z-100; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt ( -id bigint null primary key, -x bigint null, -y bigint null, -z bigint null, -a char(32), aa varchar(32) -); -insert noar into tt (id) values (1),(2),(3) on duplicate key update x=0; -insert noar into tt (id) values (1) on duplicate key update y=0,z=42; -insert noar into tt (id) values (1) on duplicate key update y=y+1,z=z+100; -insert noar into tt (id) values (1) on duplicate key update y=y-1; -insert noar into tt (id) values (1) on duplicate key update z=z-100; -create table ti like tt; -alter table ti engine=innodb; -insert noar into ti (id) values (1),(2),(3) on duplicate key update x=0; -insert noar into ti (id) values (1) on duplicate key update y=0,z=42; -insert noar into ti (id) values (1) on duplicate key update y=y+1,z=z+100; -insert noar into ti (id) values (1) on duplicate key update y=y-1; -insert noar into ti (id) values (1) on duplicate key update z=z-100; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt ( -id bigint not null primary key, -x bigint not null default 0, -y bigint not null default 0, -z bigint not null default 0, -a char(32), aa varchar(32) -); -insert noar into tt (id) values (1),(2),(3) on duplicate key update x=0; -insert noar into tt (id) values (1) on duplicate key update y=0,z=42; -insert noar into tt (id) values (1) on duplicate key update y=y+1,z=z+100; -insert noar into tt (id) values (1) on duplicate key update y=y-1; -insert noar into tt (id) values (1) on duplicate key update z=z-100; -create table ti like tt; -alter table ti engine=innodb; -insert noar into ti (id) values (1),(2),(3) on duplicate key update x=0; -insert noar into ti (id) values (1) on duplicate key update y=0,z=42; -insert noar into ti (id) values (1) on duplicate key update y=y+1,z=z+100; -insert noar into ti (id) values (1) on duplicate key update y=y-1; -insert noar into ti (id) values (1) on duplicate key update z=z-100; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt ( -id bigint unsigned null primary key, -x bigint unsigned null, -y bigint unsigned null, -z bigint unsigned null, -a char(32), aa varchar(32) -); -insert noar into tt (id) values (1),(2),(3) on duplicate key update x=0; -insert noar into tt (id) values (1) on duplicate key update y=0,z=42; -insert noar into tt (id) values (1) on duplicate key update y=y+1,z=z+100; -insert noar into tt (id) values (1) on duplicate key update y=y-1; -insert noar into tt (id) values (1) on duplicate key update z=z-100; -create table ti like tt; -alter table ti engine=innodb; -insert noar into ti (id) values (1),(2),(3) on duplicate key update x=0; -insert noar into ti (id) values (1) on duplicate key update y=0,z=42; -insert noar into ti (id) values (1) on duplicate key update y=y+1,z=z+100; -insert noar into ti (id) values (1) on duplicate key update y=y-1; -insert noar into ti (id) values (1) on duplicate key update z=z-100; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; -create table tt ( -id bigint unsigned not null primary key, -x bigint unsigned not null default 0, -y bigint unsigned not null default 0, -z bigint unsigned not null default 0, -a char(32), aa varchar(32) -); -insert noar into tt (id) values (1),(2),(3) on duplicate key update x=0; -insert noar into tt (id) values (1) on duplicate key update y=0,z=42; -insert noar into tt (id) values (1) on duplicate key update y=y+1,z=z+100; -insert noar into tt (id) values (1) on duplicate key update y=y-1; -insert noar into tt (id) values (1) on duplicate key update z=z-100; -create table ti like tt; -alter table ti engine=innodb; -insert noar into ti (id) values (1),(2),(3) on duplicate key update x=0; -insert noar into ti (id) values (1) on duplicate key update y=0,z=42; -insert noar into ti (id) values (1) on duplicate key update y=y+1,z=z+100; -insert noar into ti (id) values (1) on duplicate key update y=y-1; -insert noar into ti (id) values (1) on duplicate key update z=z-100; -include/diff_tables.inc [test.tt, test.ti] -drop table tt, ti; +This test does not produce any output on success diff --git a/storage/tokudb/mysql-test/tokudb/r/fast_upsert_key.result b/storage/tokudb/mysql-test/tokudb/r/fast_upsert_key.result index 95e31062c88..d05f40619ed 100644 --- a/storage/tokudb/mysql-test/tokudb/r/fast_upsert_key.result +++ b/storage/tokudb/mysql-test/tokudb/r/fast_upsert_key.result @@ -1,23 +1,40 @@ -set default_storage_engine='tokudb'; -drop table if exists t; -set tokudb_disable_slow_upsert=1; -create table t (a int, b char(32), c varchar(32), d blob); -insert noar into t values (1,null,null,null) on duplicate key update a=42; +set tokudb_enable_fast_upsert=1; +set session sql_mode=(select replace(@@sql_mode,'STRICT_TRANS_TABLES','')); +set session sql_mode=(select replace(@@sql_mode,'STRICT_ALL_TABLES','')); +create table t (a int, b char(32), c varchar(32), d blob) engine = tokudb; +insert into t values (1,null,null,null) on duplicate key update a=42; ERROR 42000: Table 't' uses an extension that doesn't exist in this XYZ version drop table t; -create table t (id int primary key, a int, b char(32), c varchar(32), d blob, clustering key(a)); -insert noar into t values (1,null,null,null,null) on duplicate key update a=42; +create table t (id int primary key, +a int, b char(32), +c varchar(32), +d blob, +clustering key(a)) engine = tokudb; +insert into t values (1,null,null,null,null) on duplicate key update a=42; ERROR 42000: Table 't' uses an extension that doesn't exist in this XYZ version drop table t; -create table t (id int primary key, a int, b char(32), c varchar(32), d blob, key(c)); -insert noar into t values (1,null,null,null,null) on duplicate key update a=42; +create table t (id int primary key, +a int, +b char(32), +c varchar(32), +d blob, +key(c)) engine = tokudb ; +insert into t values (1,null,null,null,null) on duplicate key update a=42; ERROR 42000: Table 't' uses an extension that doesn't exist in this XYZ version drop table t; -create table t (id int, a int, b char(32), c varchar(32), d blob, primary key(id, a)); -insert noar into t values (1,2,null,null,null) on duplicate key update a=42; +create table t (id int, +a int, b char(32), +c varchar(32), +d blob, +primary key(id, a)) engine = tokudb; +insert into t values (1,2,null,null,null) on duplicate key update a=42; ERROR 42000: Table 't' uses an extension that doesn't exist in this XYZ version drop table t; -create table t (id int, a int, b char(32), c varchar(32), d blob, primary key(a, id)); -insert noar into t values (1,2,null,null,null) on duplicate key update a=42; +create table t (id int, +a int, b char(32), +c varchar(32), +d blob, +primary key(a, id)) engine = tokudb; +insert into t values (1,2,null,null,null) on duplicate key update a=42; ERROR 42000: Table 't' uses an extension that doesn't exist in this XYZ version drop table t; diff --git a/storage/tokudb/mysql-test/tokudb/r/fast_upsert_sqlmode.result b/storage/tokudb/mysql-test/tokudb/r/fast_upsert_sqlmode.result index 9b1fd60d691..30a6448b0a2 100644 --- a/storage/tokudb/mysql-test/tokudb/r/fast_upsert_sqlmode.result +++ b/storage/tokudb/mysql-test/tokudb/r/fast_upsert_sqlmode.result @@ -1,17 +1,16 @@ -set default_storage_engine='tokudb'; -drop table if exists t; -set tokudb_disable_slow_upsert=1; -create table t (id int primary key, x int not null); -insert noar into t values (1,0); -insert noar into t values (1,0) on duplicate key update x=42; -insert noar into t values (1,0) on duplicate key update x=x+1; -insert noar into t values (1,0) on duplicate key update x=x-1; +set tokudb_enable_fast_upsert=1; +set session sql_mode=(select replace(@@sql_mode,'STRICT_TRANS_TABLES','')); +set session sql_mode=(select replace(@@sql_mode,'STRICT_ALL_TABLES','')); +create table t (id int primary key, x int not null) engine = tokudb; +insert into t values (1,0); +insert into t values (1,0) on duplicate key update x=42; +insert into t values (1,0) on duplicate key update x=x+1; +insert into t values (1,0) on duplicate key update x=x-1; set session sql_mode="NO_ENGINE_SUBSTITUTION,traditional"; -insert noar into t values (1,0) on duplicate key update x=42; +insert into t values (1,0) on duplicate key update x=42; ERROR 42000: Table 't' uses an extension that doesn't exist in this XYZ version -insert noar into t values (1,0) on duplicate key update x=x+1; +insert into t values (1,0) on duplicate key update x=x+1; ERROR 42000: Table 't' uses an extension that doesn't exist in this XYZ version -insert noar into t values (1,0) on duplicate key update x=x-1; +insert into t values (1,0) on duplicate key update x=x-1; ERROR 42000: Table 't' uses an extension that doesn't exist in this XYZ version -set session sql_mode="NO_ENGINE_SUBSTITUTION"; drop table t; diff --git a/storage/tokudb/mysql-test/tokudb/r/fast_upsert_values.result b/storage/tokudb/mysql-test/tokudb/r/fast_upsert_values.result index d2214fb1cd9..6930584465c 100644 --- a/storage/tokudb/mysql-test/tokudb/r/fast_upsert_values.result +++ b/storage/tokudb/mysql-test/tokudb/r/fast_upsert_values.result @@ -1,22 +1,22 @@ -set default_storage_engine='tokudb'; -drop table if exists t; -set tokudb_disable_slow_upsert=1; -create table t (id int primary key, x int not null); -insert noar into t values (1,1); -insert noar into t values (1,1) on duplicate key update x=x+1; +set session sql_mode=(select replace(@@sql_mode,'STRICT_TRANS_TABLES','')); +set session sql_mode=(select replace(@@sql_mode,'STRICT_ALL_TABLES','')); +set tokudb_enable_fast_upsert=1; +create table t (id int primary key, x int not null) engine = tokudb; +insert into t values (1,1); +insert into t values (1,1) on duplicate key update x=x+1; select * from t; id x 1 2 -insert noar into t values (1,10) on duplicate key update x=values(x)+1; +insert into t values (1,10) on duplicate key update x=values(x)+1; ERROR 42000: Table 't' uses an extension that doesn't exist in this XYZ version select * from t; id x 1 2 -insert noar into t values (1,10) on duplicate key update x=x+values(x); +insert into t values (1,10) on duplicate key update x=x+values(x); select * from t; id x 1 12 -insert noar into t values (1,100) on duplicate key update x=x+values(x); +insert into t values (1,100) on duplicate key update x=x+values(x); select * from t; id x 1 112 diff --git a/storage/tokudb/mysql-test/tokudb/r/tokudb_mrr.result b/storage/tokudb/mysql-test/tokudb/r/tokudb_mrr.result new file mode 100644 index 00000000000..9eb0c2f5e34 --- /dev/null +++ b/storage/tokudb/mysql-test/tokudb/r/tokudb_mrr.result @@ -0,0 +1,706 @@ +set optimizer_switch='mrr=on,mrr_cost_based=off'; +set default_storage_engine=TokuDB; +create table t1(a int); +show create table t1; +Table Create Table +t1 CREATE TABLE `t1` ( + `a` int(11) DEFAULT NULL +) ENGINE=TokuDB DEFAULT CHARSET=latin1 +insert into t1 values (0),(1),(2),(3),(4),(5),(6),(7),(8),(9); +create table t2(a int); +insert into t2 select A.a + 10*(B.a + 10*C.a) from t1 A, t1 B, t1 C; +create table t3 ( +a char(8) not null, b char(8) not null, filler char(200), +key(a) +); +insert into t3 select @a:=concat('c-', 1000+ A.a, '=w'), @a, 'filler' from t2 A; +insert into t3 select concat('c-', 1000+A.a, '=w'), concat('c-', 2000+A.a, '=w'), +'filler-1' from t2 A; +insert into t3 select concat('c-', 1000+A.a, '=w'), concat('c-', 3000+A.a, '=w'), +'filler-2' from t2 A; +select a,filler from t3 where a >= 'c-9011=w'; +a filler +select a,filler from t3 where a >= 'c-1011=w' and a <= 'c-1015=w'; +a filler +c-1011=w filler +c-1011=w filler-1 +c-1011=w filler-2 +c-1012=w filler +c-1012=w filler-1 +c-1012=w filler-2 +c-1013=w filler +c-1013=w filler-1 +c-1013=w filler-2 +c-1014=w filler +c-1014=w filler-1 +c-1014=w filler-2 +c-1015=w filler +c-1015=w filler-1 +c-1015=w filler-2 +select a,filler from t3 where (a>='c-1011=w' and a <= 'c-1013=w') or +(a>='c-1014=w' and a <= 'c-1015=w'); +a filler +c-1011=w filler +c-1011=w filler-1 +c-1011=w filler-2 +c-1012=w filler +c-1012=w filler-1 +c-1012=w filler-2 +c-1013=w filler +c-1013=w filler-1 +c-1013=w filler-2 +c-1014=w filler +c-1014=w filler-1 +c-1014=w filler-2 +c-1015=w filler +c-1015=w filler-1 +c-1015=w filler-2 +insert into t3 values ('c-1013=z', 'c-1013=z', 'err'); +insert into t3 values ('a-1014=w', 'a-1014=w', 'err'); +select a,filler from t3 where (a>='c-1011=w' and a <= 'c-1013=w') or +(a>='c-1014=w' and a <= 'c-1015=w'); +a filler +c-1011=w filler +c-1011=w filler-1 +c-1011=w filler-2 +c-1012=w filler +c-1012=w filler-1 +c-1012=w filler-2 +c-1013=w filler +c-1013=w filler-1 +c-1013=w filler-2 +c-1014=w filler +c-1014=w filler-1 +c-1014=w filler-2 +c-1015=w filler +c-1015=w filler-1 +c-1015=w filler-2 +delete from t3 where b in ('c-1013=z', 'a-1014=w'); +select a,filler from t3 where a='c-1011=w' or a='c-1012=w' or a='c-1013=w' or +a='c-1014=w' or a='c-1015=w'; +a filler +c-1011=w filler +c-1011=w filler-1 +c-1011=w filler-2 +c-1012=w filler +c-1012=w filler-1 +c-1012=w filler-2 +c-1013=w filler +c-1013=w filler-1 +c-1013=w filler-2 +c-1014=w filler +c-1014=w filler-1 +c-1014=w filler-2 +c-1015=w filler +c-1015=w filler-1 +c-1015=w filler-2 +insert into t3 values ('c-1013=w', 'del-me', 'inserted'); +select a,filler from t3 where a='c-1011=w' or a='c-1012=w' or a='c-1013=w' or +a='c-1014=w' or a='c-1015=w'; +a filler +c-1011=w filler +c-1011=w filler-1 +c-1011=w filler-2 +c-1012=w filler +c-1012=w filler-1 +c-1012=w filler-2 +c-1013=w filler +c-1013=w filler-1 +c-1013=w filler-2 +c-1013=w inserted +c-1014=w filler +c-1014=w filler-1 +c-1014=w filler-2 +c-1015=w filler +c-1015=w filler-1 +c-1015=w filler-2 +delete from t3 where b='del-me'; +alter table t3 add primary key(b); +select b,filler from t3 where (b>='c-1011=w' and b<= 'c-1018=w') or +b IN ('c-1019=w', 'c-1020=w', 'c-1021=w', +'c-1022=w', 'c-1023=w', 'c-1024=w'); +b filler +c-1011=w filler +c-1012=w filler +c-1013=w filler +c-1014=w filler +c-1015=w filler +c-1016=w filler +c-1017=w filler +c-1018=w filler +c-1019=w filler +c-1020=w filler +c-1021=w filler +c-1022=w filler +c-1023=w filler +c-1024=w filler +select b,filler from t3 where (b>='c-1011=w' and b<= 'c-1020=w') or +b IN ('c-1021=w', 'c-1022=w', 'c-1023=w'); +b filler +c-1011=w filler +c-1012=w filler +c-1013=w filler +c-1014=w filler +c-1015=w filler +c-1016=w filler +c-1017=w filler +c-1018=w filler +c-1019=w filler +c-1020=w filler +c-1021=w filler +c-1022=w filler +c-1023=w filler +select b,filler from t3 where (b>='c-1011=w' and b<= 'c-1018=w') or +b IN ('c-1019=w', 'c-1020=w') or +(b>='c-1021=w' and b<= 'c-1023=w'); +b filler +c-1011=w filler +c-1012=w filler +c-1013=w filler +c-1014=w filler +c-1015=w filler +c-1016=w filler +c-1017=w filler +c-1018=w filler +c-1019=w filler +c-1020=w filler +c-1021=w filler +c-1022=w filler +c-1023=w filler +create table t4 (a varchar(10), b int, c char(10), filler char(200), +key idx1 (a, b, c)); +insert into t4 (filler) select concat('NULL-', 15-a) from t2 order by a limit 15; +insert into t4 (a,b,c,filler) +select 'b-1',NULL,'c-1', concat('NULL-', 15-a) from t2 order by a limit 15; +insert into t4 (a,b,c,filler) +select 'b-1',NULL,'c-222', concat('NULL-', 15-a) from t2 order by a limit 15; +insert into t4 (a,b,c,filler) +select 'bb-1',NULL,'cc-2', concat('NULL-', 15-a) from t2 order by a limit 15; +insert into t4 (a,b,c,filler) +select 'zz-1',NULL,'cc-2', 'filler-data' from t2 order by a limit 500; +explain +select * from t4 where a IS NULL and b IS NULL and (c IS NULL or c='no-such-row1' + or c='no-such-row2'); +id select_type table type possible_keys key key_len ref rows Extra +1 SIMPLE t4 range idx1 idx1 29 NULL 16 Using where; Using MRR +select * from t4 where a IS NULL and b IS NULL and (c IS NULL or c='no-such-row1' + or c='no-such-row2'); +a b c filler +NULL NULL NULL NULL-15 +NULL NULL NULL NULL-14 +NULL NULL NULL NULL-13 +NULL NULL NULL NULL-12 +NULL NULL NULL NULL-11 +NULL NULL NULL NULL-10 +NULL NULL NULL NULL-9 +NULL NULL NULL NULL-8 +NULL NULL NULL NULL-7 +NULL NULL NULL NULL-6 +NULL NULL NULL NULL-5 +NULL NULL NULL NULL-4 +NULL NULL NULL NULL-3 +NULL NULL NULL NULL-2 +NULL NULL NULL NULL-1 +explain +select * from t4 where (a ='b-1' or a='bb-1') and b IS NULL and (c='c-1' or c='cc-2'); +id select_type table type possible_keys key key_len ref rows Extra +1 SIMPLE t4 range idx1 idx1 29 NULL 32 Using where; Using MRR +select * from t4 where (a ='b-1' or a='bb-1') and b IS NULL and (c='c-1' or c='cc-2'); +a b c filler +b-1 NULL c-1 NULL-15 +b-1 NULL c-1 NULL-14 +b-1 NULL c-1 NULL-13 +b-1 NULL c-1 NULL-12 +b-1 NULL c-1 NULL-11 +b-1 NULL c-1 NULL-10 +b-1 NULL c-1 NULL-9 +b-1 NULL c-1 NULL-8 +b-1 NULL c-1 NULL-7 +b-1 NULL c-1 NULL-6 +b-1 NULL c-1 NULL-5 +b-1 NULL c-1 NULL-4 +b-1 NULL c-1 NULL-3 +b-1 NULL c-1 NULL-2 +b-1 NULL c-1 NULL-1 +bb-1 NULL cc-2 NULL-15 +bb-1 NULL cc-2 NULL-14 +bb-1 NULL cc-2 NULL-13 +bb-1 NULL cc-2 NULL-12 +bb-1 NULL cc-2 NULL-11 +bb-1 NULL cc-2 NULL-10 +bb-1 NULL cc-2 NULL-9 +bb-1 NULL cc-2 NULL-8 +bb-1 NULL cc-2 NULL-7 +bb-1 NULL cc-2 NULL-6 +bb-1 NULL cc-2 NULL-5 +bb-1 NULL cc-2 NULL-4 +bb-1 NULL cc-2 NULL-3 +bb-1 NULL cc-2 NULL-2 +bb-1 NULL cc-2 NULL-1 +select * from t4 ignore index(idx1) where (a ='b-1' or a='bb-1') and b IS NULL and (c='c-1' or c='cc-2'); +a b c filler +b-1 NULL c-1 NULL-15 +b-1 NULL c-1 NULL-14 +b-1 NULL c-1 NULL-13 +b-1 NULL c-1 NULL-12 +b-1 NULL c-1 NULL-11 +b-1 NULL c-1 NULL-10 +b-1 NULL c-1 NULL-9 +b-1 NULL c-1 NULL-8 +b-1 NULL c-1 NULL-7 +b-1 NULL c-1 NULL-6 +b-1 NULL c-1 NULL-5 +b-1 NULL c-1 NULL-4 +b-1 NULL c-1 NULL-3 +b-1 NULL c-1 NULL-2 +b-1 NULL c-1 NULL-1 +bb-1 NULL cc-2 NULL-15 +bb-1 NULL cc-2 NULL-14 +bb-1 NULL cc-2 NULL-13 +bb-1 NULL cc-2 NULL-12 +bb-1 NULL cc-2 NULL-11 +bb-1 NULL cc-2 NULL-10 +bb-1 NULL cc-2 NULL-9 +bb-1 NULL cc-2 NULL-8 +bb-1 NULL cc-2 NULL-7 +bb-1 NULL cc-2 NULL-6 +bb-1 NULL cc-2 NULL-5 +bb-1 NULL cc-2 NULL-4 +bb-1 NULL cc-2 NULL-3 +bb-1 NULL cc-2 NULL-2 +bb-1 NULL cc-2 NULL-1 +drop table t1, t2, t3, t4; +create table t1 (a int, b int not null,unique key (a,b),index(b)); +insert ignore into t1 values (1,1),(2,2),(3,3),(4,4),(5,5),(6,6),(null,7),(9,9),(8,8),(7,7),(null,9),(null,9),(6,6); +create table t2 like t1; +insert into t2 select * from t1; +alter table t1 modify b blob not null, add c int not null, drop key a, add unique key (a,b(20),c), drop key b, add key (b(10)); +select * from t1 where a is null; +a b c +NULL 7 0 +NULL 9 0 +NULL 9 0 +select * from t1 where (a is null or a > 0 and a < 3) and b > 7 limit 3; +a b c +NULL 9 0 +NULL 9 0 +select * from t1 where a is null and b=9 or a is null and b=7 limit 3; +a b c +NULL 7 0 +NULL 9 0 +NULL 9 0 +drop table t1, t2; +CREATE TABLE t1 ( +ID int(10) unsigned NOT NULL AUTO_INCREMENT, +col1 int(10) unsigned DEFAULT NULL, +key1 int(10) unsigned NOT NULL DEFAULT '0', +key2 int(10) unsigned DEFAULT NULL, +text1 text, +text2 text, +col2 smallint(6) DEFAULT '100', +col3 enum('headers','bodyandsubject') NOT NULL DEFAULT 'bodyandsubject', +col4 tinyint(3) unsigned NOT NULL DEFAULT '0', +PRIMARY KEY (ID), +KEY (key1), +KEY (key2) +) AUTO_INCREMENT=6 DEFAULT CHARSET=utf8; +INSERT INTO t1 VALUES +(1,NULL,1130,NULL,'Hello',NULL,100,'bodyandsubject',0), +(2,NULL,1130,NULL,'bye',NULL,100,'bodyandsubject',0), +(3,NULL,1130,NULL,'red',NULL,100,'bodyandsubject',0), +(4,NULL,1130,NULL,'yellow',NULL,100,'bodyandsubject',0), +(5,NULL,1130,NULL,'blue',NULL,100,'bodyandsubject',0); +select * FROM t1 WHERE key1=1130 AND col1 IS NULL ORDER BY text1; +ID col1 key1 key2 text1 text2 col2 col3 col4 +5 NULL 1130 NULL blue NULL 100 bodyandsubject 0 +2 NULL 1130 NULL bye NULL 100 bodyandsubject 0 +1 NULL 1130 NULL Hello NULL 100 bodyandsubject 0 +3 NULL 1130 NULL red NULL 100 bodyandsubject 0 +4 NULL 1130 NULL yellow NULL 100 bodyandsubject 0 +drop table t1; + +BUG#37851: Crash in test_if_skip_sort_order tab->select is zero + +CREATE TABLE t1 ( +pk int(11) NOT NULL AUTO_INCREMENT, +PRIMARY KEY (pk) +); +INSERT INTO t1 VALUES (1); +CREATE TABLE t2 ( +pk int(11) NOT NULL AUTO_INCREMENT, +int_key int(11) DEFAULT NULL, +PRIMARY KEY (pk), +KEY int_key (int_key) +); +INSERT INTO t2 VALUES (1,1),(2,6),(3,0); +EXPLAIN EXTENDED +SELECT MIN(t1.pk) +FROM t1 WHERE EXISTS ( +SELECT t2.pk +FROM t2 +WHERE t2.int_key IS NULL +GROUP BY t2.pk +); +id select_type table type possible_keys key key_len ref rows filtered Extra +1 PRIMARY NULL NULL NULL NULL NULL NULL NULL NULL Impossible WHERE +2 SUBQUERY t2 ref int_key int_key 5 const 1 100.00 Using where; Using index +Warnings: +Note 1003 /* select#1 */ select min(`test`.`t1`.`pk`) AS `MIN(t1.pk)` from `test`.`t1` where 0 +DROP TABLE t1, t2; +# +# BUG#42048 Discrepancy between MyISAM and Maria's ICP implementation +# +create table t0 (a int); +insert into t0 values (0),(1),(2),(3),(4),(5),(6),(7),(8),(9); +create table t1 (a int, b char(20), filler char(200), key(a,b(10))); +insert into t1 select A.a + 10*(B.a + 10*C.a), 'bbb','filler' from t0 A, t0 B, t0 C; +update t1 set b=repeat(char(65+a), 20) where a < 25; +This must show range + using index condition: +explain select * from t1 where a < 10 and b = repeat(char(65+a), 20); +id select_type table type possible_keys key key_len ref rows Extra +1 SIMPLE t1 range a a 5 NULL x Using where +select * from t1 where a < 10 and b = repeat(char(65+a), 20); +a b filler +0 AAAAAAAAAAAAAAAAAAAA filler +1 BBBBBBBBBBBBBBBBBBBB filler +2 CCCCCCCCCCCCCCCCCCCC filler +3 DDDDDDDDDDDDDDDDDDDD filler +4 EEEEEEEEEEEEEEEEEEEE filler +5 FFFFFFFFFFFFFFFFFFFF filler +6 GGGGGGGGGGGGGGGGGGGG filler +7 HHHHHHHHHHHHHHHHHHHH filler +8 IIIIIIIIIIIIIIIIIIII filler +9 JJJJJJJJJJJJJJJJJJJJ filler +drop table t0,t1; +# +# BUG#41136: ORDER BY + range access: EXPLAIN shows "Using MRR" while MRR is actually not used +# +create table t0 (a int); +insert into t0 values (0),(1),(2),(3),(4),(5),(6),(7),(8),(9); +create table t1 (a int, b int, key(a)); +insert into t1 select A.a + 10 *(B.a + 10*C.a), A.a + 10 *(B.a + 10*C.a) from t0 A, t0 B, t0 C; +This mustn't show "Using MRR": +explain select * from t1 where a < 20 order by a; +id select_type table type possible_keys key key_len ref rows Extra +1 SIMPLE t1 range a a 5 NULL 20 Using where +drop table t0, t1; +set @read_rnd_buffer_size_save= @@read_rnd_buffer_size; +set read_rnd_buffer_size=64; +create table t1(a int); +insert into t1 values (0),(1),(2),(3),(4),(5),(6),(7),(8),(9); +create table t2(a char(8), b char(8), c char(8), filler char(100), key k1(a,b,c) ); +insert into t2 select +concat('a-', 1000 + A.a, '-a'), +concat('b-', 1000 + B.a, '-b'), +concat('c-', 1000 + C.a, '-c'), +'filler' +from t1 A, t1 B, t1 C; +EXPLAIN select count(length(a) + length(filler)) +from t2 force index (k1) +where a>='a-1000-a' and a <'a-1001-a'; +id select_type table type possible_keys key key_len ref rows Extra +1 SIMPLE t2 range k1 k1 9 NULL 100 Using where; Using MRR +select count(length(a) + length(filler)) +from t2 force index (k1) +where a>='a-1000-a' and a <'a-1001-a'; +count(length(a) + length(filler)) +100 +drop table t2; +create table t2 (a char(100), b char(100), c char(100), d int, +filler char(10), key(d), primary key (a,b,c)); +insert into t2 select A.a, B.a, B.a, A.a, 'filler' from t1 A, t1 B; +explain select * from t2 force index (d) where d < 10; +id select_type table type possible_keys key key_len ref rows Extra +1 SIMPLE t2 range d d 5 NULL # Using where +drop table t2; +drop table t1; +set @@read_rnd_buffer_size= @read_rnd_buffer_size_save; +create table t1 (f1 int not null, f2 int not null,f3 int not null, f4 char(1), primary key (f1,f2), key ix(f3)); +select * from t1 where (f3>=5 and f3<=10) or (f3>=1 and f3<=4); +f1 f2 f3 f4 +1 1 1 A +10 10 10 A +2 2 2 A +3 3 3 A +4 4 4 A +5 5 5 A +6 6 6 A +7 7 7 A +8 8 8 A +9 9 9 A +drop table t1; + +BUG#37977: Wrong result returned on GROUP BY + OR + Innodb + +CREATE TABLE t1 ( +`pk` int(11) NOT NULL AUTO_INCREMENT, +`int_nokey` int(11) NOT NULL, +`int_key` int(11) NOT NULL, +`date_key` date NOT NULL, +`date_nokey` date NOT NULL, +`time_key` time NOT NULL, +`time_nokey` time NOT NULL, +`datetime_key` datetime NOT NULL, +`datetime_nokey` datetime NOT NULL, +`varchar_key` varchar(5) DEFAULT NULL, +`varchar_nokey` varchar(5) DEFAULT NULL, +PRIMARY KEY (`pk`), +KEY `int_key` (`int_key`), +KEY `date_key` (`date_key`), +KEY `time_key` (`time_key`), +KEY `datetime_key` (`datetime_key`), +KEY `varchar_key` (`varchar_key`) +); +INSERT INTO t1 VALUES +(1,5,5,'2009-10-16','2009-10-16','09:28:15','09:28:15','2007-09-14 05:34:08','2007-09-14 05:34:08','qk','qk'), +(2,6,6,'0000-00-00','0000-00-00','23:06:39','23:06:39','0000-00-00 00:00:00','0000-00-00 00:00:00','j','j'), +(3,10,10,'2000-12-18','2000-12-18','22:16:19','22:16:19','2006-11-04 15:42:50','2006-11-04 15:42:50','aew','aew'), +(4,0,0,'2001-09-18','2001-09-18','00:00:00','00:00:00','2004-03-23 13:23:35','2004-03-23 13:23:35',NULL,NULL), +(5,6,6,'2007-08-16','2007-08-16','22:13:38','22:13:38','2004-08-19 11:01:28','2004-08-19 11:01:28','qu','qu'); +select pk from t1 WHERE `varchar_key` > 'kr' group by pk; +pk +1 +5 +select pk from t1 WHERE `int_nokey` IS NULL OR `varchar_key` > 'kr' group by pk; +pk +1 +5 +drop table t1; +# +# BUG#39447: Error with NOT NULL condition and LIMIT 1 +# +CREATE TABLE t1 ( +id int(11) NOT NULL, +parent_id int(11) DEFAULT NULL, +name varchar(10) DEFAULT NULL, +PRIMARY KEY (id), +KEY ind_parent_id (parent_id) +); +insert into t1 (id, parent_id, name) values +(10,NULL,'A'), +(20,10,'B'), +(30,10,'C'), +(40,NULL,'D'), +(50,40,'E'), +(60,40,'F'), +(70,NULL,'J'); +SELECT id FROM t1 WHERE parent_id IS NOT NULL ORDER BY id DESC LIMIT 1; +id +60 +This must show type=index, extra=Using where +explain SELECT * FROM t1 WHERE parent_id IS NOT NULL ORDER BY id DESC LIMIT 1; +id select_type table type possible_keys key key_len ref rows Extra +1 SIMPLE t1 index ind_parent_id PRIMARY 4 NULL 1 Using where +SELECT * FROM t1 WHERE parent_id IS NOT NULL ORDER BY id DESC LIMIT 1; +id parent_id name +60 40 F +drop table t1; +# +# Bug#50381 "Assertion failing in handler.h:1283: +# void COST_VECT::add_io(double, double)" +# +CREATE TABLE t1 ( +c1 INT NOT NULL, +c2 VARCHAR(1) DEFAULT NULL, +PRIMARY KEY (c1) +); +CREATE TABLE t2 ( +c1 INT NOT NULL, +c2 VARCHAR(1) DEFAULT NULL, +PRIMARY KEY (c1) +); +INSERT INTO t2 VALUES (10,'v'); +INSERT INTO t2 VALUES (11,'r'); +SELECT t1.c2 +FROM t2 STRAIGHT_JOIN t1 ON t1.c1 < t2.c1; +c2 +DROP TABLE t1, t2; +# +# Bug#58463: Error Can't find record on SELECT with JOIN and ORDER BY +# +CREATE TABLE t1 ( +pk INT NOT NULL, +PRIMARY KEY (pk) +) ENGINE=MyISAM; +INSERT INTO t1 VALUES (2); +CREATE TABLE t2 ( +pk INT NOT NULL, +i1 INT NOT NULL, +i2 INT NOT NULL, +c1 VARCHAR(1024) CHARACTER SET utf8, +PRIMARY KEY (pk), +KEY k1 (i1) +); +INSERT INTO t2 VALUES (3, 9, 1, NULL); +EXPLAIN SELECT i1 +FROM t1 LEFT JOIN t2 ON t1.pk = t2.i2 +WHERE t2.i1 > 5 +AND t2.pk IS NULL +ORDER BY i1; +id select_type table type possible_keys key key_len ref rows Extra +1 SIMPLE t1 system PRIMARY NULL NULL NULL 1 NULL +1 SIMPLE t2 const PRIMARY,k1 PRIMARY 4 const 1 Using where +SELECT i1 +FROM t1 LEFT JOIN t2 ON t1.pk = t2.i2 +WHERE t2.i1 > 5 +AND t2.pk IS NULL +ORDER BY i1; +i1 +DROP TABLE t1, t2; +# +# Bug#12321461: CRASH IN DSMRR_IMPL::DSMRR_INIT ON SELECT STRAIGHT_JOIN +# +set @save_optimizer_switch = @@optimizer_switch; +set optimizer_switch='block_nested_loop=off,batched_key_access=off'; +CREATE TABLE t1 ( +pk INTEGER, +c1 VARCHAR(1) NOT NULL, +PRIMARY KEY (pk) +); +CREATE TABLE t2 ( +c1 VARCHAR(1) NOT NULL +); +INSERT INTO t2 VALUES ('v'), ('c'); +EXPLAIN SELECT STRAIGHT_JOIN t1.c1 +FROM t1 RIGHT OUTER JOIN t2 ON t1.c1 = t2.c1 +WHERE t1.pk > 176; +id select_type table type possible_keys key key_len ref rows Extra +1 SIMPLE t2 ALL NULL NULL NULL NULL 2 NULL +1 SIMPLE t1 range PRIMARY PRIMARY 4 NULL 1 Using where +SELECT STRAIGHT_JOIN t1.c1 +FROM t1 RIGHT OUTER JOIN t2 ON t1.c1 = t2.c1 +WHERE t1.pk > 176; +c1 +DROP TABLE t1,t2; +set optimizer_switch= @save_optimizer_switch; +# +# Bug#13249966 MRR: RANDOM ERROR DUE TO UNINITIALIZED RES WITH +# SMALL READ_RND_BUFFER_SIZE +# +set @read_rnd_buffer_size_save= @@read_rnd_buffer_size; +set read_rnd_buffer_size=1; +select @@read_rnd_buffer_size; +@@read_rnd_buffer_size +1 +CREATE TABLE t1 ( +i1 INTEGER NOT NULL, +i2 INTEGER NOT NULL, +KEY (i2) +); +INSERT INTO t1 VALUES (0,1),(1,2),(2,3); +EXPLAIN SELECT i1 +FROM t1 +WHERE i2 > 2; +id select_type table type possible_keys key key_len ref rows Extra +1 SIMPLE t1 range i2 i2 4 NULL 1 Using where +SELECT i1 +FROM t1 +WHERE i2 > 2; +i1 +2 +DROP TABLE t1; +set @@read_rnd_buffer_size= @read_rnd_buffer_size_save; +select @@read_rnd_buffer_size; +@@read_rnd_buffer_size +262144 +# +# Bug 12365385 STRAIGHT_JOIN QUERY QUICKLY EXHAUSTS SYSTEM+VIRT. +# MEMORY LEADING TO SYSTEM CRASH +# +CREATE TABLE ten (a INTEGER); +INSERT INTO ten VALUES (0),(1),(2),(3),(4),(5),(6),(7),(8),(9); +CREATE TABLE t1 ( +pk INTEGER NOT NULL, +i1 INTEGER NOT NULL, +c1 VARCHAR(10) NOT NULL, +PRIMARY KEY (pk) +); +INSERT INTO t1 +SELECT a, 1, 'MySQL' FROM ten; +CREATE TABLE t2 ( +pk INTEGER NOT NULL, +c1 VARCHAR(10) NOT NULL, +c2 varchar(10) NOT NULL, +PRIMARY KEY (pk) +); +INSERT INTO t2 +SELECT a, 'MySQL', 'MySQL' FROM ten; +CREATE TABLE t3 ( +pk INTEGER NOT NULL, +c1 VARCHAR(10) NOT NULL, +PRIMARY KEY (pk) +); +INSERT INTO t3 +SELECT a, 'MySQL' FROM ten; +CREATE TABLE t4 ( +pk int(11) NOT NULL, +c1_key varchar(10) CHARACTER SET utf8 NOT NULL, +c2 varchar(10) NOT NULL, +c3 varchar(10) NOT NULL, +PRIMARY KEY (pk), +KEY k1 (c1_key) +); +CREATE TABLE t5 ( +pk INTEGER NOT NULL, +c1 VARCHAR(10) NOT NULL, +PRIMARY KEY (pk) +); +INSERT INTO t5 +SELECT a, 'MySQL' FROM ten; +EXPLAIN SELECT STRAIGHT_JOIN * +FROM +(t1 LEFT JOIN +(t2 LEFT JOIN +(t3 LEFT OUTER JOIN t4 ON t3.c1 <= t4.c1_key) +ON t2.c1 = t4.c3) +ON t1.c1 = t4.c2) +RIGHT OUTER JOIN t5 ON t2.c2 <= t5.c1 +WHERE t1.i1 = 1; +id select_type table type possible_keys key key_len ref rows Extra +1 SIMPLE t5 ALL NULL NULL NULL NULL 10 NULL +1 SIMPLE t1 ALL NULL NULL NULL NULL 10 Using where; Using join buffer (Block Nested Loop) +1 SIMPLE t2 ALL NULL NULL NULL NULL 10 Using where; Using join buffer (Block Nested Loop) +1 SIMPLE t3 ALL NULL NULL NULL NULL 10 Using join buffer (Block Nested Loop) +1 SIMPLE t4 ALL k1 NULL NULL NULL 1 Range checked for each record (index map: 0x2) +SELECT STRAIGHT_JOIN * +FROM +(t1 LEFT JOIN +(t2 LEFT JOIN +(t3 LEFT OUTER JOIN t4 ON t3.c1 <= t4.c1_key) +ON t2.c1 = t4.c3) +ON t1.c1 = t4.c2) +RIGHT OUTER JOIN t5 ON t2.c2 <= t5.c1 +WHERE t1.i1 = 1; +pk i1 c1 pk c1 c2 pk c1 pk c1_key c2 c3 pk c1 +DROP TABLE ten, t1, t2, t3, t4, t5; +# +# Bug#41029 "MRR: SELECT FOR UPDATE fails to lock gaps (InnoDB table)" +# +SET AUTOCOMMIT=0; +CREATE TABLE t1 ( +dummy INT PRIMARY KEY, +a INT UNIQUE, +b INT +) ENGINE=TokuDB; +INSERT INTO t1 VALUES (1,1,1),(3,3,3),(5,5,5); +COMMIT; +SET SESSION TRANSACTION ISOLATION LEVEL REPEATABLE READ; +SELECT @@tx_isolation; +@@tx_isolation +REPEATABLE-READ +START TRANSACTION; +EXPLAIN SELECT * FROM t1 WHERE a >= 2 FOR UPDATE; +id select_type table type possible_keys key key_len ref rows Extra +1 SIMPLE t1 range a a 5 NULL 2 Using where +SELECT * FROM t1 WHERE a >= 2 FOR UPDATE; +dummy a b +3 3 3 +5 5 5 +SET AUTOCOMMIT=0; +SET TOKUDB_LOCK_TIMEOUT=2; +START TRANSACTION; +INSERT INTO t1 VALUES (2,2,2); +ERROR HY000: Lock wait timeout exceeded; try restarting transaction +ROLLBACK; +ROLLBACK; +DROP TABLE t1; diff --git a/storage/tokudb/mysql-test/tokudb/t/compressions.test b/storage/tokudb/mysql-test/tokudb/t/compressions.test new file mode 100644 index 00000000000..3e83cdb8b68 --- /dev/null +++ b/storage/tokudb/mysql-test/tokudb/t/compressions.test @@ -0,0 +1,68 @@ +--source include/have_tokudb.inc + +# The purpose of this test is to perform about as full of an end-to-end +# validation that the requested compression algo at the SQL layer is actually +# applied to the FT data files. The only practical way to check this is to use +# tokuftdump and look at the data files header value for compression_method. +# A side effect of this is that the existance of this test will ensure that at +# no time will the compression method IDs ever change, if they do, this test +# will fail and users data will be irreparably damaged. + +# uncompressed - compression_method=0 +CREATE TABLE t1 (a INT) ENGINE=TokuDB ROW_FORMAT=TOKUDB_UNCOMPRESSED; +--let $t1_file = `SELECT internal_file_name FROM information_schema.tokudb_file_map WHERE dictionary_name = './test/t1-main'` + +# SNAPPY - compression_method=7 +CREATE TABLE t2 (a INT) ENGINE=TokuDB ROW_FORMAT=TOKUDB_SNAPPY; +--let $t2_file = `SELECT internal_file_name FROM information_schema.tokudb_file_map WHERE dictionary_name = './test/t2-main'` + +# QUICKLZ - compression_method=9 +CREATE TABLE t3 (a INT) ENGINE=TokuDB ROW_FORMAT=TOKUDB_QUICKLZ; +--let $t3_file = `SELECT internal_file_name FROM information_schema.tokudb_file_map WHERE dictionary_name = './test/t3-main'` + +# LZMA - compression_method=10 +CREATE TABLE t4 (a INT) ENGINE=TokuDB ROW_FORMAT=TOKUDB_LZMA; +--let $t4_file = `SELECT internal_file_name FROM information_schema.tokudb_file_map WHERE dictionary_name = './test/t4-main'` + +# ZLIB (without checksum) - compression_method=11 +CREATE TABLE t5 (a INT) ENGINE=TokuDB ROW_FORMAT=TOKUDB_ZLIB; +--let $t5_file = `SELECT internal_file_name FROM information_schema.tokudb_file_map WHERE dictionary_name = './test/t5-main'` + +--let $datadir = `SELECT @@global.datadir` + +# To ensure we have correct headers written to FT data files and no chance of a +# race between header rotation and tokuftdump, lets just perform a clean server +# shutdown before we go rooting around in the FT files. +--source include/shutdown_mysqld.inc + +--let SEARCH_FILE=$MYSQLTEST_VARDIR/tmp/dump + +# uncompressed - compression_method=0 +--exec $MYSQL_TOKUFTDUMP $datadir/$t1_file > $SEARCH_FILE +--let SEARCH_PATTERN=compression_method=0 +--source include/search_pattern_in_file.inc + +# SNAPPY - compression_method=7 +--exec $MYSQL_TOKUFTDUMP $datadir/$t2_file > $SEARCH_FILE +--let SEARCH_PATTERN=compression_method=7 +--source include/search_pattern_in_file.inc + +# QUICKLZ - compression_method=9 +--exec $MYSQL_TOKUFTDUMP $datadir/$t3_file > $SEARCH_FILE +--let SEARCH_PATTERN=compression_method=9 +--source include/search_pattern_in_file.inc + +# LZMA - compression_method=10 +--exec $MYSQL_TOKUFTDUMP $datadir/$t4_file > $SEARCH_FILE +--let SEARCH_PATTERN=compression_method=10 +--source include/search_pattern_in_file.inc + +# ZLIB (without checksum) - compression_method=11 +--exec $MYSQL_TOKUFTDUMP $datadir/$t5_file > $SEARCH_FILE +--let SEARCH_PATTERN=compression_method=11 +--source include/search_pattern_in_file.inc + +--remove_file $SEARCH_FILE +--source include/start_mysqld.inc + +DROP TABLE t1, t2, t3, t4, t5; diff --git a/storage/tokudb/mysql-test/tokudb/t/disabled.def b/storage/tokudb/mysql-test/tokudb/t/disabled.def index f7413a0edc5..751794ac690 100644 --- a/storage/tokudb/mysql-test/tokudb/t/disabled.def +++ b/storage/tokudb/mysql-test/tokudb/t/disabled.def @@ -2,27 +2,3 @@ mvcc-19: tokutek mvcc-20: tokutek mvcc-27: tokutek storage_engine_default: tokudb is not the default storage engine -fast_update_binlog_mixed : https://tokutek.atlassian.net/browse/DB-871 -fast_update_binlog_row : https://tokutek.atlassian.net/browse/DB-871 -fast_update_binlog_statement : https://tokutek.atlassian.net/browse/DB-871 -fast_update_blobs_fixed_varchar : https://tokutek.atlassian.net/browse/DB-871 -fast_update_blobs : https://tokutek.atlassian.net/browse/DB-871 -fast_update_blobs_with_varchar : https://tokutek.atlassian.net/browse/DB-871 -fast_update_char : https://tokutek.atlassian.net/browse/DB-871 -fast_update_deadlock : https://tokutek.atlassian.net/browse/DB-871 -fast_update_decr_floor : https://tokutek.atlassian.net/browse/DB-871 -fast_update_disable_slow_update : https://tokutek.atlassian.net/browse/DB-871 -fast_update_error : https://tokutek.atlassian.net/browse/DB-871 -fast_update_int_bounds : https://tokutek.atlassian.net/browse/DB-871 -fast_update_int : https://tokutek.atlassian.net/browse/DB-871 -fast_update_key : https://tokutek.atlassian.net/browse/DB-871 -fast_update_sqlmode : https://tokutek.atlassian.net/browse/DB-871 -fast_update_uint_bounds : https://tokutek.atlassian.net/browse/DB-871 -fast_update_varchar : https://tokutek.atlassian.net/browse/DB-871 -fast_upsert_bin_pad : https://tokutek.atlassian.net/browse/DB-871 -fast_upsert_char : https://tokutek.atlassian.net/browse/DB-871 -fast_upsert_deadlock : https://tokutek.atlassian.net/browse/DB-871 -fast_upsert_int : https://tokutek.atlassian.net/browse/DB-871 -fast_upsert_key : https://tokutek.atlassian.net/browse/DB-871 -fast_upsert_sqlmode : https://tokutek.atlassian.net/browse/DB-871 -fast_upsert_values : https://tokutek.atlassian.net/browse/DB-871 diff --git a/storage/tokudb/mysql-test/tokudb/t/fast_update_binlog_mixed-master.opt b/storage/tokudb/mysql-test/tokudb/t/fast_update_binlog_mixed-master.opt new file mode 100644 index 00000000000..215b68b3509 --- /dev/null +++ b/storage/tokudb/mysql-test/tokudb/t/fast_update_binlog_mixed-master.opt @@ -0,0 +1,2 @@ +--binlog-format=mixed + diff --git a/storage/tokudb/mysql-test/tokudb/t/fast_update_binlog_mixed.test b/storage/tokudb/mysql-test/tokudb/t/fast_update_binlog_mixed.test index 28a11cf302c..a8bcab826ac 100644 --- a/storage/tokudb/mysql-test/tokudb/t/fast_update_binlog_mixed.test +++ b/storage/tokudb/mysql-test/tokudb/t/fast_update_binlog_mixed.test @@ -2,18 +2,15 @@ source include/master-slave.inc; source include/have_binlog_format_mixed.inc; source include/have_tokudb.inc; -set default_storage_engine='tokudb'; -create table tt (id int primary key, x int); - -set session tokudb_disable_slow_upsert=1; +create table tt (id int primary key, x int) engine = tokudb; connection master; -show variables like 'binlog_format'; -show variables like 'server_id'; +source ../include/setup_fast_update_upsert.inc; +set session tokudb_enable_fast_update=1; connection slave; -show variables like 'binlog_format'; -show variables like 'server_id'; +source ../include/setup_fast_update_upsert.inc; +set session tokudb_enable_fast_update=1; connection master; @@ -36,7 +33,7 @@ while ($i < $n) { # update a bunch of rows let $i=0; while ($i < $n) { - eval update noar tt set x=x+1 where id=$i; + eval update tt set x=x+1 where id=$i; inc $i; } select * from tt where x != 2; diff --git a/storage/tokudb/mysql-test/tokudb/t/fast_update_binlog_row-master.opt b/storage/tokudb/mysql-test/tokudb/t/fast_update_binlog_row-master.opt new file mode 100644 index 00000000000..40fd126d18a --- /dev/null +++ b/storage/tokudb/mysql-test/tokudb/t/fast_update_binlog_row-master.opt @@ -0,0 +1,2 @@ +--binlog-format=row + diff --git a/storage/tokudb/mysql-test/tokudb/t/fast_update_binlog_row.test b/storage/tokudb/mysql-test/tokudb/t/fast_update_binlog_row.test index 6a8342eb4d9..f416a14c2d4 100644 --- a/storage/tokudb/mysql-test/tokudb/t/fast_update_binlog_row.test +++ b/storage/tokudb/mysql-test/tokudb/t/fast_update_binlog_row.test @@ -1,29 +1,28 @@ source include/have_binlog_format_row.inc; source include/have_tokudb.inc; -set default_storage_engine='tokudb'; -create table tt (id int primary key, x int); +create table tt (id int primary key, x int) engine = tokudb; -set session tokudb_disable_slow_upsert=1; +source ../include/setup_fast_update_upsert.inc; +set session tokudb_enable_fast_update=1; +set session tokudb_enable_fast_upsert=1; -insert noar into tt values (1,0); +insert into tt values (1,0); replace_regex /MariaDB/XYZ/ /MySQL/XYZ/; error ER_UNSUPPORTED_EXTENSION; -insert noar into tt values (1,0) on duplicate key update x=x+1; +insert into tt values (1,0) on duplicate key update x=x+1; replace_regex /MariaDB/XYZ/ /MySQL/XYZ/; error ER_UNSUPPORTED_EXTENSION; -insert noar into tt values (2,0) on duplicate key update x=x+1; - -set session tokudb_disable_slow_update=1; +insert into tt values (2,0) on duplicate key update x=x+1; replace_regex /MariaDB/XYZ/ /MySQL/XYZ/; error ER_UNSUPPORTED_EXTENSION; -update noar tt set x=x+1 where id=1; +update tt set x=x+1 where id=1; replace_regex /MariaDB/XYZ/ /MySQL/XYZ/; error ER_UNSUPPORTED_EXTENSION; -update noar tt set x=x+1 where id=2; +update tt set x=x+1 where id=2; drop table tt; diff --git a/storage/tokudb/mysql-test/tokudb/t/fast_update_binlog_statement-master.opt b/storage/tokudb/mysql-test/tokudb/t/fast_update_binlog_statement-master.opt new file mode 100644 index 00000000000..0dac5e9fb9c --- /dev/null +++ b/storage/tokudb/mysql-test/tokudb/t/fast_update_binlog_statement-master.opt @@ -0,0 +1,2 @@ +--binlog-format=statement + diff --git a/storage/tokudb/mysql-test/tokudb/t/fast_update_binlog_statement.test b/storage/tokudb/mysql-test/tokudb/t/fast_update_binlog_statement.test index bab2aadb340..6f6775e3d69 100644 --- a/storage/tokudb/mysql-test/tokudb/t/fast_update_binlog_statement.test +++ b/storage/tokudb/mysql-test/tokudb/t/fast_update_binlog_statement.test @@ -2,18 +2,15 @@ source include/master-slave.inc; source include/have_binlog_format_statement.inc; source include/have_tokudb.inc; -set default_storage_engine='tokudb'; -create table tt (id int primary key, x int); - -set session tokudb_disable_slow_upsert=1; +create table tt (id int primary key, x int) engine = tokudb; connection master; -show variables like 'binlog_format'; -show variables like 'server_id'; +source ../include/setup_fast_update_upsert.inc; +set session tokudb_enable_fast_update=1; connection slave; -show variables like 'binlog_format'; -show variables like 'server_id'; +source ../include/setup_fast_update_upsert.inc; +set session tokudb_enable_fast_update=1; connection master; @@ -36,7 +33,7 @@ while ($i < $n) { # update a bunch of rows let $i=0; while ($i < $n) { - eval update noar tt set x=x+1 where id=$i; + eval update tt set x=x+1 where id=$i; inc $i; } select * from tt where x != 2; diff --git a/storage/tokudb/mysql-test/tokudb/t/fast_update_blobs.py b/storage/tokudb/mysql-test/tokudb/t/fast_update_blobs.py deleted file mode 100644 index 06b89626120..00000000000 --- a/storage/tokudb/mysql-test/tokudb/t/fast_update_blobs.py +++ /dev/null @@ -1,57 +0,0 @@ -#!/usr/bin/env python - -import sys -import random -import string - -def main(): - print "# generated by tokudb_fast_update_blobs.py" - print "source include/have_tokudb.inc;" - print "source include/have_innodb.inc;" - print "set default_storage_engine='tokudb';" - print "disable_warnings;" - print "drop table if exists t;" - print "enable_warnings;" - - nrows = 10 - - blob_types = [ 'tinyblob', 'blob', 'mediumblob', 'longblob', 'text' ] - for a in blob_types: - for b in blob_types: - for c in blob_types: - for n in [ 'null', 'not null' ]: - test_blobs([ a, b, c ] , n, nrows) - return 0 - -def test_blobs(cols, n, nrows): - print "create table tt (id bigint unsigned primary key," - # print " f0 int %s," % (n) - for i in range(len(cols)): - if i < len(cols)-1: - print " b%d %s %s," % (i, cols[i], n) - else: - print " b%d %s %s" % (i, cols[i], n) - print ") engine=tokudb;" - - for id in range(1,nrows): - if n == 'null': - print "insert into tt (id) values (%d);" % (id) - else: - print "insert into tt values (%d,'','','');" % (id) - - print "create table ti like tt;" - print "alter table ti engine=innodb;" - print "insert into ti select * from tt;" - - for id in range(1,nrows): - for i in range(3): - long_str = ''.join(random.choice(string.ascii_uppercase + string.digits) for x in range(random.randint(1,32))) - print "update noar tt set b%d='%s' where id=%d;" % (i, long_str, id) - print "update noar ti set b%d='%s' where id=%d;" % (i, long_str, id) - - print "let $diff_tables = test.tt, test.ti;" - print "source include/diff_tables.inc;" - - print "drop table tt, ti;" - -sys.exit(main()) diff --git a/storage/tokudb/mysql-test/tokudb/t/fast_update_blobs.test b/storage/tokudb/mysql-test/tokudb/t/fast_update_blobs.test index 1c91116bc99..05d6937572b 100644 --- a/storage/tokudb/mysql-test/tokudb/t/fast_update_blobs.test +++ b/storage/tokudb/mysql-test/tokudb/t/fast_update_blobs.test @@ -1,18507 +1,68 @@ -# generated by tokudb_fast_update_blobs.py -source include/have_tokudb.inc; -source include/have_innodb.inc; -set default_storage_engine='tokudb'; -disable_warnings; -drop table if exists t; -enable_warnings; -create table tt (id bigint unsigned primary key, - b0 tinyblob null, - b1 tinyblob null, - b2 tinyblob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set b0='O3XN3EYXMGZTZN1K5U5MZVJSTCI' where id=1; -update noar ti set b0='O3XN3EYXMGZTZN1K5U5MZVJSTCI' where id=1; -update noar tt set b1='NUJSL2DPUO3Y2VJJMOXGIKD5' where id=1; -update noar ti set b1='NUJSL2DPUO3Y2VJJMOXGIKD5' where id=1; -update noar tt set b2='GYH1A64A160VD620KTYFI0LMWTHTQ' where id=1; -update noar ti set b2='GYH1A64A160VD620KTYFI0LMWTHTQ' where id=1; -update noar tt set b0='R6NPFB2F' where id=2; -update noar ti set b0='R6NPFB2F' where id=2; -update noar tt set b1='I2FJYHVA88B5QIRGWO' where id=2; -update noar ti set b1='I2FJYHVA88B5QIRGWO' where id=2; -update noar tt set b2='VXNCR7V92TOSSD4S9CP1LU2QS7OYWI' where id=2; -update noar ti set b2='VXNCR7V92TOSSD4S9CP1LU2QS7OYWI' where id=2; -update noar tt set b0='0UQ09GUSN08XS' where id=3; -update noar ti set b0='0UQ09GUSN08XS' where id=3; -update noar tt set b1='5LWNM0Y07MT1PW2' where id=3; -update noar ti set b1='5LWNM0Y07MT1PW2' where id=3; -update noar tt set b2='HN4' where id=3; -update noar ti set b2='HN4' where id=3; -update noar tt set b0='C1QZDQRLS0PTQBP' where id=4; -update noar ti set b0='C1QZDQRLS0PTQBP' where id=4; -update noar tt set b1='143H1LL68O8ZQJI7K99JQVLCZ9' where id=4; -update noar ti set b1='143H1LL68O8ZQJI7K99JQVLCZ9' where id=4; -update noar tt set b2='4YOVMJ' where id=4; -update noar ti set b2='4YOVMJ' where id=4; -update noar tt set b0='T9SL9H4JFRX5BXQBG' where id=5; -update noar ti set b0='T9SL9H4JFRX5BXQBG' where id=5; -update noar tt set b1='IERUZ3U5PS27T7' where id=5; -update noar ti set b1='IERUZ3U5PS27T7' where id=5; -update noar tt set b2='3FJ10AUIZ70MM9N11G4GZ2SD' where id=5; -update noar ti set b2='3FJ10AUIZ70MM9N11G4GZ2SD' where id=5; -update noar tt set b0='2NW6C3TI50EG0EP8UXI4LDLQ8Q6AG02' where id=6; -update noar ti set b0='2NW6C3TI50EG0EP8UXI4LDLQ8Q6AG02' where id=6; -update noar tt set b1='W52A7GZSPSTEMZU80PEM' where id=6; -update noar ti set b1='W52A7GZSPSTEMZU80PEM' where id=6; -update noar tt set b2='F24TFX952ZCB8LKYJK3V5RPLC216' where id=6; -update noar ti set b2='F24TFX952ZCB8LKYJK3V5RPLC216' where id=6; -update noar tt set b0='CLKM' where id=7; -update noar ti set b0='CLKM' where id=7; -update noar tt set b1='V922ZOJPOWQ8DYEU1WPLNUI2V' where id=7; -update noar ti set b1='V922ZOJPOWQ8DYEU1WPLNUI2V' where id=7; -update noar tt set b2='KJHGLHTC' where id=7; -update noar ti set b2='KJHGLHTC' where id=7; -update noar tt set b0='OGYBFJIZYQ' where id=8; -update noar ti set b0='OGYBFJIZYQ' where id=8; -update noar tt set b1='37VFBYBMAZ4I139RNG8URUOU' where id=8; -update noar ti set b1='37VFBYBMAZ4I139RNG8URUOU' where id=8; -update noar tt set b2='2IA' where id=8; -update noar ti set b2='2IA' where id=8; -update noar tt set b0='Q' where id=9; -update noar ti set b0='Q' where id=9; -update noar tt set b1='E' where id=9; -update noar ti set b1='E' where id=9; -update noar tt set b2='VICTYSWSPPYUHIPU0HCJE' where id=9; -update noar ti set b2='VICTYSWSPPYUHIPU0HCJE' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - b0 tinyblob not null, - b1 tinyblob not null, - b2 tinyblob not null -) engine=tokudb; -insert into tt values (1,'','',''); -insert into tt values (2,'','',''); -insert into tt values (3,'','',''); -insert into tt values (4,'','',''); -insert into tt values (5,'','',''); -insert into tt values (6,'','',''); -insert into tt values (7,'','',''); -insert into tt values (8,'','',''); -insert into tt values (9,'','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set b0='78I7U' where id=1; -update noar ti set b0='78I7U' where id=1; -update noar tt set b1='2E' where id=1; -update noar ti set b1='2E' where id=1; -update noar tt set b2='Q2YKT0GTIOJXMLP' where id=1; -update noar ti set b2='Q2YKT0GTIOJXMLP' where id=1; -update noar tt set b0='E92J7SF7I48BP708TPG52I5' where id=2; -update noar ti set b0='E92J7SF7I48BP708TPG52I5' where id=2; -update noar tt set b1='R1Z9BSQKSB2SNUEYBP' where id=2; -update noar ti set b1='R1Z9BSQKSB2SNUEYBP' where id=2; -update noar tt set b2='4CE0T3D4V5LKBQKPR' where id=2; -update noar ti set b2='4CE0T3D4V5LKBQKPR' where id=2; -update noar tt set b0='T48NWMCR57OKPX5TYOV4U0' where id=3; -update noar ti set b0='T48NWMCR57OKPX5TYOV4U0' where id=3; -update noar tt set b1='81PWG56P2IG' where id=3; -update noar ti set b1='81PWG56P2IG' where id=3; -update noar tt set b2='RDGBM1UKE1JMOWHMX' where id=3; -update noar ti set b2='RDGBM1UKE1JMOWHMX' where id=3; -update noar tt set b0='I7SF7FI49T' where id=4; -update noar ti set b0='I7SF7FI49T' where id=4; -update noar tt set b1='7W2SY6IPNVID3Z9VA5VK51' where id=4; -update noar ti set b1='7W2SY6IPNVID3Z9VA5VK51' where id=4; -update noar tt set b2='J1SN8MNYDL69E7ZT1' where id=4; -update noar ti set b2='J1SN8MNYDL69E7ZT1' where id=4; -update noar tt set b0='ZQGK' where id=5; -update noar ti set b0='ZQGK' where id=5; -update noar tt set b1='V1H7K4A7VL5YC8' where id=5; -update noar ti set b1='V1H7K4A7VL5YC8' where id=5; -update noar tt set b2='WXXGE8SNSOG0SYKJTUUFP3TT' where id=5; -update noar ti set b2='WXXGE8SNSOG0SYKJTUUFP3TT' where id=5; -update noar tt set b0='I3JCH6NJX8M6675' where id=6; -update noar ti set b0='I3JCH6NJX8M6675' where id=6; -update noar tt set b1='ONSN97QXAQHJN' where id=6; -update noar ti set b1='ONSN97QXAQHJN' where id=6; -update noar tt set b2='SDSEY521KDIYIAJQ' where id=6; -update noar ti set b2='SDSEY521KDIYIAJQ' where id=6; -update noar tt set b0='7AUYSC9VLF0GUZXVWY1XGG125JDM2BD' where id=7; -update noar ti set b0='7AUYSC9VLF0GUZXVWY1XGG125JDM2BD' where id=7; -update noar tt set b1='TW2N' where id=7; -update noar ti set b1='TW2N' where id=7; -update noar tt set b2='UBOG0O1TQRMF44XE2LPILC5HUTB' where id=7; -update noar ti set b2='UBOG0O1TQRMF44XE2LPILC5HUTB' where id=7; -update noar tt set b0='RNILQ' where id=8; -update noar ti set b0='RNILQ' where id=8; -update noar tt set b1='Y4K42HA5ZBKY1GSCYHHRABS3' where id=8; -update noar ti set b1='Y4K42HA5ZBKY1GSCYHHRABS3' where id=8; -update noar tt set b2='K83J4' where id=8; -update noar ti set b2='K83J4' where id=8; -update noar tt set b0='SGIG8LERFZH5IN4' where id=9; -update noar ti set b0='SGIG8LERFZH5IN4' where id=9; -update noar tt set b1='DOB38I74JNL' where id=9; -update noar ti set b1='DOB38I74JNL' where id=9; -update noar tt set b2='NF7GFC2OWLCIL1FK' where id=9; -update noar ti set b2='NF7GFC2OWLCIL1FK' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - b0 tinyblob null, - b1 tinyblob null, - b2 blob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set b0='2ZMNW7MOI7XPC1SFNTNERTRG' where id=1; -update noar ti set b0='2ZMNW7MOI7XPC1SFNTNERTRG' where id=1; -update noar tt set b1='BYMTR69R' where id=1; -update noar ti set b1='BYMTR69R' where id=1; -update noar tt set b2='HL7' where id=1; -update noar ti set b2='HL7' where id=1; -update noar tt set b0='OZY1X19RJPGK8X00FRJL2F2NX' where id=2; -update noar ti set b0='OZY1X19RJPGK8X00FRJL2F2NX' where id=2; -update noar tt set b1='O2' where id=2; -update noar ti set b1='O2' where id=2; -update noar tt set b2='OTXZ24LPI7XYS7R26PNZ8' where id=2; -update noar ti set b2='OTXZ24LPI7XYS7R26PNZ8' where id=2; -update noar tt set b0='WNS6QDEXUIN7XIPE6G7HCI7I9NANP214' where id=3; -update noar ti set b0='WNS6QDEXUIN7XIPE6G7HCI7I9NANP214' where id=3; -update noar tt set b1='XUH4VZ1V67H5YZEPT8OVG9H7KFJ' where id=3; -update noar ti set b1='XUH4VZ1V67H5YZEPT8OVG9H7KFJ' where id=3; -update noar tt set b2='0EAC437AZVUO' where id=3; -update noar ti set b2='0EAC437AZVUO' where id=3; -update noar tt set b0='WM9' where id=4; -update noar ti set b0='WM9' where id=4; -update noar tt set b1='DF' where id=4; -update noar ti set b1='DF' where id=4; -update noar tt set b2='JWDAVSRXZYL6JBCEYU6YJXI3XPAGQ' where id=4; -update noar ti set b2='JWDAVSRXZYL6JBCEYU6YJXI3XPAGQ' where id=4; -update noar tt set b0='1' where id=5; -update noar ti set b0='1' where id=5; -update noar tt set b1='HOMT' where id=5; -update noar ti set b1='HOMT' where id=5; -update noar tt set b2='611LSHXW6C6' where id=5; -update noar ti set b2='611LSHXW6C6' where id=5; -update noar tt set b0='JMSBV35M4WX32UTN6' where id=6; -update noar ti set b0='JMSBV35M4WX32UTN6' where id=6; -update noar tt set b1='JQXWCHWG29RUAFA505RJU' where id=6; -update noar ti set b1='JQXWCHWG29RUAFA505RJU' where id=6; -update noar tt set b2='J96ILGE2OIV4N806O9PDLOJ' where id=6; -update noar ti set b2='J96ILGE2OIV4N806O9PDLOJ' where id=6; -update noar tt set b0='XO1VG8FBRDZD0SPU81NM' where id=7; -update noar ti set b0='XO1VG8FBRDZD0SPU81NM' where id=7; -update noar tt set b1='KY0MJVN' where id=7; -update noar ti set b1='KY0MJVN' where id=7; -update noar tt set b2='DNQ' where id=7; -update noar ti set b2='DNQ' where id=7; -update noar tt set b0='8XEKKIYOYS' where id=8; -update noar ti set b0='8XEKKIYOYS' where id=8; -update noar tt set b1='COVKXI827HCTZXZN8JHAC934JESF' where id=8; -update noar ti set b1='COVKXI827HCTZXZN8JHAC934JESF' where id=8; -update noar tt set b2='MA9SYQHPSQPDZMA9X' where id=8; -update noar ti set b2='MA9SYQHPSQPDZMA9X' where id=8; -update noar tt set b0='JQSW65RE1F6DI275' where id=9; -update noar ti set b0='JQSW65RE1F6DI275' where id=9; -update noar tt set b1='1LTAL1EJVLMJ4DAQY1OTX4I8ZOEDDS' where id=9; -update noar ti set b1='1LTAL1EJVLMJ4DAQY1OTX4I8ZOEDDS' where id=9; -update noar tt set b2='A8' where id=9; -update noar ti set b2='A8' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - b0 tinyblob not null, - b1 tinyblob not null, - b2 blob not null -) engine=tokudb; -insert into tt values (1,'','',''); -insert into tt values (2,'','',''); -insert into tt values (3,'','',''); -insert into tt values (4,'','',''); -insert into tt values (5,'','',''); -insert into tt values (6,'','',''); -insert into tt values (7,'','',''); -insert into tt values (8,'','',''); -insert into tt values (9,'','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set b0='VQOCKPL5H5DVLKVGMILZB0GZIK623L' where id=1; -update noar ti set b0='VQOCKPL5H5DVLKVGMILZB0GZIK623L' where id=1; -update noar tt set b1='3MRBTKCK069RHIDH1G51E' where id=1; -update noar ti set b1='3MRBTKCK069RHIDH1G51E' where id=1; -update noar tt set b2='IRFBLSQK734N83DBVL9C7OM56726' where id=1; -update noar ti set b2='IRFBLSQK734N83DBVL9C7OM56726' where id=1; -update noar tt set b0='5E0MA' where id=2; -update noar ti set b0='5E0MA' where id=2; -update noar tt set b1='YCS1EEK83OL' where id=2; -update noar ti set b1='YCS1EEK83OL' where id=2; -update noar tt set b2='PSTHRKGQDURK' where id=2; -update noar ti set b2='PSTHRKGQDURK' where id=2; -update noar tt set b0='H' where id=3; -update noar ti set b0='H' where id=3; -update noar tt set b1='R8WJJVIJV98M2SG0KIZG0SC9' where id=3; -update noar ti set b1='R8WJJVIJV98M2SG0KIZG0SC9' where id=3; -update noar tt set b2='ZYNCPB2CR42I7EPP7UQYVMLM' where id=3; -update noar ti set b2='ZYNCPB2CR42I7EPP7UQYVMLM' where id=3; -update noar tt set b0='1B1H2FKGCWOICZ83MAHE3O' where id=4; -update noar ti set b0='1B1H2FKGCWOICZ83MAHE3O' where id=4; -update noar tt set b1='WRHNYKV2B5LXAH70GPSPGG5' where id=4; -update noar ti set b1='WRHNYKV2B5LXAH70GPSPGG5' where id=4; -update noar tt set b2='S7SYT3T4EZGZ7VOQ88T5J2Z6TIJD2JLJ' where id=4; -update noar ti set b2='S7SYT3T4EZGZ7VOQ88T5J2Z6TIJD2JLJ' where id=4; -update noar tt set b0='72SNGZS4Q6OYF6EKM6KCCZRRJ57' where id=5; -update noar ti set b0='72SNGZS4Q6OYF6EKM6KCCZRRJ57' where id=5; -update noar tt set b1='T8F3D1PBIYHWGFBF83G025W' where id=5; -update noar ti set b1='T8F3D1PBIYHWGFBF83G025W' where id=5; -update noar tt set b2='9' where id=5; -update noar ti set b2='9' where id=5; -update noar tt set b0='3PAQF3PS3D89H' where id=6; -update noar ti set b0='3PAQF3PS3D89H' where id=6; -update noar tt set b1='Z5Y8S9X56BBZ29BXTDN1P1V' where id=6; -update noar ti set b1='Z5Y8S9X56BBZ29BXTDN1P1V' where id=6; -update noar tt set b2='X252FUABR21UFQBQDP2WNGDXMT' where id=6; -update noar ti set b2='X252FUABR21UFQBQDP2WNGDXMT' where id=6; -update noar tt set b0='DALFKMTLJZ5BXRG4EKS2FHLMVXPQL' where id=7; -update noar ti set b0='DALFKMTLJZ5BXRG4EKS2FHLMVXPQL' where id=7; -update noar tt set b1='RPQ8H6VEL5O6' where id=7; -update noar ti set b1='RPQ8H6VEL5O6' where id=7; -update noar tt set b2='ZF0DNOYMWRDWNNIS3HZY6WGU0NKI6EJ' where id=7; -update noar ti set b2='ZF0DNOYMWRDWNNIS3HZY6WGU0NKI6EJ' where id=7; -update noar tt set b0='Z4O3V4T5W' where id=8; -update noar ti set b0='Z4O3V4T5W' where id=8; -update noar tt set b1='12YE' where id=8; -update noar ti set b1='12YE' where id=8; -update noar tt set b2='GX5T10S2D5OGE9J1AMUNU1JPCZQ2' where id=8; -update noar ti set b2='GX5T10S2D5OGE9J1AMUNU1JPCZQ2' where id=8; -update noar tt set b0='Y' where id=9; -update noar ti set b0='Y' where id=9; -update noar tt set b1='O9PN' where id=9; -update noar ti set b1='O9PN' where id=9; -update noar tt set b2='B30TY855SEBYUJ86K3AYSW84DQLZ' where id=9; -update noar ti set b2='B30TY855SEBYUJ86K3AYSW84DQLZ' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - b0 tinyblob null, - b1 tinyblob null, - b2 mediumblob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set b0='XHX7H' where id=1; -update noar ti set b0='XHX7H' where id=1; -update noar tt set b1='70248WWK1SJUXW5M7H75KWRJK' where id=1; -update noar ti set b1='70248WWK1SJUXW5M7H75KWRJK' where id=1; -update noar tt set b2='2NTMLCWX1FQ3XZXCR7D8HPK8ZQ' where id=1; -update noar ti set b2='2NTMLCWX1FQ3XZXCR7D8HPK8ZQ' where id=1; -update noar tt set b0='L4Z9' where id=2; -update noar ti set b0='L4Z9' where id=2; -update noar tt set b1='UOLOKXZIO4FR7YYXRKGNU8VYE4D9' where id=2; -update noar ti set b1='UOLOKXZIO4FR7YYXRKGNU8VYE4D9' where id=2; -update noar tt set b2='40XELRCMK59A8MW521P' where id=2; -update noar ti set b2='40XELRCMK59A8MW521P' where id=2; -update noar tt set b0='A8PKOY8Q5EVB2KZ2OFABA9LH3GOOHFS' where id=3; -update noar ti set b0='A8PKOY8Q5EVB2KZ2OFABA9LH3GOOHFS' where id=3; -update noar tt set b1='2FHUA1G4SC89LVA1OEZN48IYX6O5G3' where id=3; -update noar ti set b1='2FHUA1G4SC89LVA1OEZN48IYX6O5G3' where id=3; -update noar tt set b2='8I12GS5B9SPHRKB4WJ0PHVIUY8' where id=3; -update noar ti set b2='8I12GS5B9SPHRKB4WJ0PHVIUY8' where id=3; -update noar tt set b0='QSJ0IPK3WGQ5FR75EAD6TECBU074ZDD4' where id=4; -update noar ti set b0='QSJ0IPK3WGQ5FR75EAD6TECBU074ZDD4' where id=4; -update noar tt set b1='AB82KEF1B7K2MQHQT' where id=4; -update noar ti set b1='AB82KEF1B7K2MQHQT' where id=4; -update noar tt set b2='QC8GL01FICTFYDKD958ZA81J' where id=4; -update noar ti set b2='QC8GL01FICTFYDKD958ZA81J' where id=4; -update noar tt set b0='DQJM1A9YDKA2NDZU4IJ9NIYS3RAB' where id=5; -update noar ti set b0='DQJM1A9YDKA2NDZU4IJ9NIYS3RAB' where id=5; -update noar tt set b1='KYNBC' where id=5; -update noar ti set b1='KYNBC' where id=5; -update noar tt set b2='CGMBIPMI16L0JI3O1TB7LLO' where id=5; -update noar ti set b2='CGMBIPMI16L0JI3O1TB7LLO' where id=5; -update noar tt set b0='1I87DCEFLW' where id=6; -update noar ti set b0='1I87DCEFLW' where id=6; -update noar tt set b1='SFFIDXJU4CKXUZETTVYAL2WL' where id=6; -update noar ti set b1='SFFIDXJU4CKXUZETTVYAL2WL' where id=6; -update noar tt set b2='9LQK51TFID4GU' where id=6; -update noar ti set b2='9LQK51TFID4GU' where id=6; -update noar tt set b0='ZH3YEK8W' where id=7; -update noar ti set b0='ZH3YEK8W' where id=7; -update noar tt set b1='DH2DLTG3LX9QQCG55ZS4VNFRMF' where id=7; -update noar ti set b1='DH2DLTG3LX9QQCG55ZS4VNFRMF' where id=7; -update noar tt set b2='OLEFIDX' where id=7; -update noar ti set b2='OLEFIDX' where id=7; -update noar tt set b0='4G2DDE6S6' where id=8; -update noar ti set b0='4G2DDE6S6' where id=8; -update noar tt set b1='UQVXK0N7BZ6VL' where id=8; -update noar ti set b1='UQVXK0N7BZ6VL' where id=8; -update noar tt set b2='KERVJYBEOIYZI4RJIJAJACE86L5ZZ1LZ' where id=8; -update noar ti set b2='KERVJYBEOIYZI4RJIJAJACE86L5ZZ1LZ' where id=8; -update noar tt set b0='ZV5ZM' where id=9; -update noar ti set b0='ZV5ZM' where id=9; -update noar tt set b1='W' where id=9; -update noar ti set b1='W' where id=9; -update noar tt set b2='MT' where id=9; -update noar ti set b2='MT' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - b0 tinyblob not null, - b1 tinyblob not null, - b2 mediumblob not null -) engine=tokudb; -insert into tt values (1,'','',''); -insert into tt values (2,'','',''); -insert into tt values (3,'','',''); -insert into tt values (4,'','',''); -insert into tt values (5,'','',''); -insert into tt values (6,'','',''); -insert into tt values (7,'','',''); -insert into tt values (8,'','',''); -insert into tt values (9,'','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set b0='NUXZ5RL0IJMYU45DPNFA96OOKUSEEH4' where id=1; -update noar ti set b0='NUXZ5RL0IJMYU45DPNFA96OOKUSEEH4' where id=1; -update noar tt set b1='HRCSHQZ43RE3M4JWWZH9X2U8' where id=1; -update noar ti set b1='HRCSHQZ43RE3M4JWWZH9X2U8' where id=1; -update noar tt set b2='A5E92XIT2SJGQHL' where id=1; -update noar ti set b2='A5E92XIT2SJGQHL' where id=1; -update noar tt set b0='LQKN4SPQ4D0' where id=2; -update noar ti set b0='LQKN4SPQ4D0' where id=2; -update noar tt set b1='XEGFM13YYUXX6DZ9' where id=2; -update noar ti set b1='XEGFM13YYUXX6DZ9' where id=2; -update noar tt set b2='03Q' where id=2; -update noar ti set b2='03Q' where id=2; -update noar tt set b0='LZ5MR01QEB7NW' where id=3; -update noar ti set b0='LZ5MR01QEB7NW' where id=3; -update noar tt set b1='4XRTJXIGD6FWLO20' where id=3; -update noar ti set b1='4XRTJXIGD6FWLO20' where id=3; -update noar tt set b2='8WLU8HWLI5OBSTUK1MIO' where id=3; -update noar ti set b2='8WLU8HWLI5OBSTUK1MIO' where id=3; -update noar tt set b0='QVDNHUKS4D' where id=4; -update noar ti set b0='QVDNHUKS4D' where id=4; -update noar tt set b1='ILQ3ZX70' where id=4; -update noar ti set b1='ILQ3ZX70' where id=4; -update noar tt set b2='2GP6' where id=4; -update noar ti set b2='2GP6' where id=4; -update noar tt set b0='FD' where id=5; -update noar ti set b0='FD' where id=5; -update noar tt set b1='IKKX' where id=5; -update noar ti set b1='IKKX' where id=5; -update noar tt set b2='9TVIX7LVDPXP' where id=5; -update noar ti set b2='9TVIX7LVDPXP' where id=5; -update noar tt set b0='IIO' where id=6; -update noar ti set b0='IIO' where id=6; -update noar tt set b1='HVH0RIDW2SEIPZWEXMV8S4R53FEE' where id=6; -update noar ti set b1='HVH0RIDW2SEIPZWEXMV8S4R53FEE' where id=6; -update noar tt set b2='NVZD7TBH0JXLDF36RM' where id=6; -update noar ti set b2='NVZD7TBH0JXLDF36RM' where id=6; -update noar tt set b0='5CGJYTET3XOUB7465GENRZOXH' where id=7; -update noar ti set b0='5CGJYTET3XOUB7465GENRZOXH' where id=7; -update noar tt set b1='Q81RZ584O113C9NPBF77GLU4AK' where id=7; -update noar ti set b1='Q81RZ584O113C9NPBF77GLU4AK' where id=7; -update noar tt set b2='MFHOY' where id=7; -update noar ti set b2='MFHOY' where id=7; -update noar tt set b0='G6T8VSVL58VIR' where id=8; -update noar ti set b0='G6T8VSVL58VIR' where id=8; -update noar tt set b1='7PB8QVUESXMQGHU6T' where id=8; -update noar ti set b1='7PB8QVUESXMQGHU6T' where id=8; -update noar tt set b2='FAWC4TYYMFOF0EMZTZOKZDGE693' where id=8; -update noar ti set b2='FAWC4TYYMFOF0EMZTZOKZDGE693' where id=8; -update noar tt set b0='3PHHB4DXRIH31KRNW4ERO4JP04ZF9ZC' where id=9; -update noar ti set b0='3PHHB4DXRIH31KRNW4ERO4JP04ZF9ZC' where id=9; -update noar tt set b1='WURT2JDSMEQJ72RCFX2' where id=9; -update noar ti set b1='WURT2JDSMEQJ72RCFX2' where id=9; -update noar tt set b2='Y9QEDVCOXUPKJWC7CVKWPTUGW8' where id=9; -update noar ti set b2='Y9QEDVCOXUPKJWC7CVKWPTUGW8' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - b0 tinyblob null, - b1 tinyblob null, - b2 longblob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set b0='E' where id=1; -update noar ti set b0='E' where id=1; -update noar tt set b1='DUYTE2MT0WSCRXZEN380DMUTSYT71B' where id=1; -update noar ti set b1='DUYTE2MT0WSCRXZEN380DMUTSYT71B' where id=1; -update noar tt set b2='348CU' where id=1; -update noar ti set b2='348CU' where id=1; -update noar tt set b0='OIBQKKYIY' where id=2; -update noar ti set b0='OIBQKKYIY' where id=2; -update noar tt set b1='R976ZBP25S0X9PPOY1NNAR' where id=2; -update noar ti set b1='R976ZBP25S0X9PPOY1NNAR' where id=2; -update noar tt set b2='FBBS' where id=2; -update noar ti set b2='FBBS' where id=2; -update noar tt set b0='PUGBX1YCQ2W353' where id=3; -update noar ti set b0='PUGBX1YCQ2W353' where id=3; -update noar tt set b1='1CQ' where id=3; -update noar ti set b1='1CQ' where id=3; -update noar tt set b2='7ANSC30V' where id=3; -update noar ti set b2='7ANSC30V' where id=3; -update noar tt set b0='6ZMFLWZVLJ6ZUGYDL5M5U31BWK' where id=4; -update noar ti set b0='6ZMFLWZVLJ6ZUGYDL5M5U31BWK' where id=4; -update noar tt set b1='40LVE0SITV4FXPFM1MSKTCF9ZGM3' where id=4; -update noar ti set b1='40LVE0SITV4FXPFM1MSKTCF9ZGM3' where id=4; -update noar tt set b2='1R8' where id=4; -update noar ti set b2='1R8' where id=4; -update noar tt set b0='FWD1SAM1BDI8' where id=5; -update noar ti set b0='FWD1SAM1BDI8' where id=5; -update noar tt set b1='1ZRU1LAVEVXQ2290WQYVWKYHS9DGP3' where id=5; -update noar ti set b1='1ZRU1LAVEVXQ2290WQYVWKYHS9DGP3' where id=5; -update noar tt set b2='XA' where id=5; -update noar ti set b2='XA' where id=5; -update noar tt set b0='BI7GAOW3G' where id=6; -update noar ti set b0='BI7GAOW3G' where id=6; -update noar tt set b1='KGB' where id=6; -update noar ti set b1='KGB' where id=6; -update noar tt set b2='WLYAZVYP27KDSUILDPHYLJFOERPQEYQ3' where id=6; -update noar ti set b2='WLYAZVYP27KDSUILDPHYLJFOERPQEYQ3' where id=6; -update noar tt set b0='7YISX5CUDJH' where id=7; -update noar ti set b0='7YISX5CUDJH' where id=7; -update noar tt set b1='VODNM1OUTLYDYGZPGH5LYS2Y5PACG' where id=7; -update noar ti set b1='VODNM1OUTLYDYGZPGH5LYS2Y5PACG' where id=7; -update noar tt set b2='8R24DIUHLITO0HUDNS' where id=7; -update noar ti set b2='8R24DIUHLITO0HUDNS' where id=7; -update noar tt set b0='2OB0A6PC6VJP7PK33V6' where id=8; -update noar ti set b0='2OB0A6PC6VJP7PK33V6' where id=8; -update noar tt set b1='2TFGQ3YXC0' where id=8; -update noar ti set b1='2TFGQ3YXC0' where id=8; -update noar tt set b2='N1PK7NXUONYKEYEZXZ3HU8' where id=8; -update noar ti set b2='N1PK7NXUONYKEYEZXZ3HU8' where id=8; -update noar tt set b0='SOE02A3GUY913QQLVLUGB' where id=9; -update noar ti set b0='SOE02A3GUY913QQLVLUGB' where id=9; -update noar tt set b1='VQ1JX' where id=9; -update noar ti set b1='VQ1JX' where id=9; -update noar tt set b2='64MNBYFJLP322NHM9' where id=9; -update noar ti set b2='64MNBYFJLP322NHM9' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - b0 tinyblob not null, - b1 tinyblob not null, - b2 longblob not null -) engine=tokudb; -insert into tt values (1,'','',''); -insert into tt values (2,'','',''); -insert into tt values (3,'','',''); -insert into tt values (4,'','',''); -insert into tt values (5,'','',''); -insert into tt values (6,'','',''); -insert into tt values (7,'','',''); -insert into tt values (8,'','',''); -insert into tt values (9,'','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set b0='XDAQ' where id=1; -update noar ti set b0='XDAQ' where id=1; -update noar tt set b1='VMWKBKP7A88SQURQGQJF7EX' where id=1; -update noar ti set b1='VMWKBKP7A88SQURQGQJF7EX' where id=1; -update noar tt set b2='5894HPJ9CL6' where id=1; -update noar ti set b2='5894HPJ9CL6' where id=1; -update noar tt set b0='O0RC' where id=2; -update noar ti set b0='O0RC' where id=2; -update noar tt set b1='KHHIB46XQJXJITZSF0SP4IPHPZD2P' where id=2; -update noar ti set b1='KHHIB46XQJXJITZSF0SP4IPHPZD2P' where id=2; -update noar tt set b2='XEIJOG' where id=2; -update noar ti set b2='XEIJOG' where id=2; -update noar tt set b0='77' where id=3; -update noar ti set b0='77' where id=3; -update noar tt set b1='J6NWB9ECQ7HW' where id=3; -update noar ti set b1='J6NWB9ECQ7HW' where id=3; -update noar tt set b2='8IKTO5RFV60NZO' where id=3; -update noar ti set b2='8IKTO5RFV60NZO' where id=3; -update noar tt set b0='VL3J0U18MHNWHP4UY2' where id=4; -update noar ti set b0='VL3J0U18MHNWHP4UY2' where id=4; -update noar tt set b1='HQG2U2C2KEH1QGP32' where id=4; -update noar ti set b1='HQG2U2C2KEH1QGP32' where id=4; -update noar tt set b2='2EK40KX2QPWLSI5F94C2TFA6Y9CG' where id=4; -update noar ti set b2='2EK40KX2QPWLSI5F94C2TFA6Y9CG' where id=4; -update noar tt set b0='BTXSRAYF1NI69VSLKDXGZ' where id=5; -update noar ti set b0='BTXSRAYF1NI69VSLKDXGZ' where id=5; -update noar tt set b1='RE' where id=5; -update noar ti set b1='RE' where id=5; -update noar tt set b2='6KK727IC0J0M1WWR7EYI88MTQ87' where id=5; -update noar ti set b2='6KK727IC0J0M1WWR7EYI88MTQ87' where id=5; -update noar tt set b0='S8WTCV8C9NF1PIFEX2HIUZUITT5XS7' where id=6; -update noar ti set b0='S8WTCV8C9NF1PIFEX2HIUZUITT5XS7' where id=6; -update noar tt set b1='4' where id=6; -update noar ti set b1='4' where id=6; -update noar tt set b2='IMTR26ZDPHGP57C6E3Q' where id=6; -update noar ti set b2='IMTR26ZDPHGP57C6E3Q' where id=6; -update noar tt set b0='GO0OUK72C67QUVDM5KF4N52VD2' where id=7; -update noar ti set b0='GO0OUK72C67QUVDM5KF4N52VD2' where id=7; -update noar tt set b1='8290NN8J5246IOBBQJHUZV' where id=7; -update noar ti set b1='8290NN8J5246IOBBQJHUZV' where id=7; -update noar tt set b2='OYB0N7YX1L1M31QLMO7LJ0Z5IQWM' where id=7; -update noar ti set b2='OYB0N7YX1L1M31QLMO7LJ0Z5IQWM' where id=7; -update noar tt set b0='K7OYBCJRFMJCDJ1LHNKVNXXL' where id=8; -update noar ti set b0='K7OYBCJRFMJCDJ1LHNKVNXXL' where id=8; -update noar tt set b1='1QCDJ8VLZR14ERF4VW7' where id=8; -update noar ti set b1='1QCDJ8VLZR14ERF4VW7' where id=8; -update noar tt set b2='AJBATT' where id=8; -update noar ti set b2='AJBATT' where id=8; -update noar tt set b0='STHCKDVFEWH5F8OODT' where id=9; -update noar ti set b0='STHCKDVFEWH5F8OODT' where id=9; -update noar tt set b1='150UQWNDMIX3J4SAED' where id=9; -update noar ti set b1='150UQWNDMIX3J4SAED' where id=9; -update noar tt set b2='FW3S181UYHPGD7XS9US' where id=9; -update noar ti set b2='FW3S181UYHPGD7XS9US' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - b0 tinyblob null, - b1 tinyblob null, - b2 text null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set b0='T83' where id=1; -update noar ti set b0='T83' where id=1; -update noar tt set b1='X48LAEEHK3ZH4V0NJ2YMVD' where id=1; -update noar ti set b1='X48LAEEHK3ZH4V0NJ2YMVD' where id=1; -update noar tt set b2='E6WJPGMSRHRDB' where id=1; -update noar ti set b2='E6WJPGMSRHRDB' where id=1; -update noar tt set b0='P5PHN4PM2G77JGF8Q' where id=2; -update noar ti set b0='P5PHN4PM2G77JGF8Q' where id=2; -update noar tt set b1='7C41T' where id=2; -update noar ti set b1='7C41T' where id=2; -update noar tt set b2='OYFXXMWFB5CV' where id=2; -update noar ti set b2='OYFXXMWFB5CV' where id=2; -update noar tt set b0='Y0ZQ5U2RRARVF' where id=3; -update noar ti set b0='Y0ZQ5U2RRARVF' where id=3; -update noar tt set b1='8XX12WLULLQ' where id=3; -update noar ti set b1='8XX12WLULLQ' where id=3; -update noar tt set b2='U4WNXJUWJZP8I3NQ51OAV4U7KTX9C' where id=3; -update noar ti set b2='U4WNXJUWJZP8I3NQ51OAV4U7KTX9C' where id=3; -update noar tt set b0='N7BSKZ3Y67' where id=4; -update noar ti set b0='N7BSKZ3Y67' where id=4; -update noar tt set b1='K5936GKS' where id=4; -update noar ti set b1='K5936GKS' where id=4; -update noar tt set b2='1ZO' where id=4; -update noar ti set b2='1ZO' where id=4; -update noar tt set b0='NY9DL1EZPR5' where id=5; -update noar ti set b0='NY9DL1EZPR5' where id=5; -update noar tt set b1='TQ6W4Y6KVJ6AA9QAB' where id=5; -update noar ti set b1='TQ6W4Y6KVJ6AA9QAB' where id=5; -update noar tt set b2='GP9894AUG675QNW' where id=5; -update noar ti set b2='GP9894AUG675QNW' where id=5; -update noar tt set b0='CZGZ9L99X6P9J9L4K6' where id=6; -update noar ti set b0='CZGZ9L99X6P9J9L4K6' where id=6; -update noar tt set b1='VKXYTSCF7JWFNPP1MGBEUDF5C' where id=6; -update noar ti set b1='VKXYTSCF7JWFNPP1MGBEUDF5C' where id=6; -update noar tt set b2='SLC08ZH6ABF56M4ZA2T1BR' where id=6; -update noar ti set b2='SLC08ZH6ABF56M4ZA2T1BR' where id=6; -update noar tt set b0='L' where id=7; -update noar ti set b0='L' where id=7; -update noar tt set b1='KYDSUG' where id=7; -update noar ti set b1='KYDSUG' where id=7; -update noar tt set b2='I4ZSA23JNPV5QI4KFXQIB536YAYBIE2Q' where id=7; -update noar ti set b2='I4ZSA23JNPV5QI4KFXQIB536YAYBIE2Q' where id=7; -update noar tt set b0='39A7UTUCUG6PYCJ8NA5LS' where id=8; -update noar ti set b0='39A7UTUCUG6PYCJ8NA5LS' where id=8; -update noar tt set b1='25S89JJZ' where id=8; -update noar ti set b1='25S89JJZ' where id=8; -update noar tt set b2='YTE0JXKIJ0YTDO' where id=8; -update noar ti set b2='YTE0JXKIJ0YTDO' where id=8; -update noar tt set b0='TY8TL9W8NGZTE1QMFYK3D1W426Z' where id=9; -update noar ti set b0='TY8TL9W8NGZTE1QMFYK3D1W426Z' where id=9; -update noar tt set b1='SNN' where id=9; -update noar ti set b1='SNN' where id=9; -update noar tt set b2='GTS3LG8H85VPSD69EF3X34AKL93HMN8' where id=9; -update noar ti set b2='GTS3LG8H85VPSD69EF3X34AKL93HMN8' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - b0 tinyblob not null, - b1 tinyblob not null, - b2 text not null -) engine=tokudb; -insert into tt values (1,'','',''); -insert into tt values (2,'','',''); -insert into tt values (3,'','',''); -insert into tt values (4,'','',''); -insert into tt values (5,'','',''); -insert into tt values (6,'','',''); -insert into tt values (7,'','',''); -insert into tt values (8,'','',''); -insert into tt values (9,'','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set b0='FLAD1DU9OIS5NG4U7BRH58WZ' where id=1; -update noar ti set b0='FLAD1DU9OIS5NG4U7BRH58WZ' where id=1; -update noar tt set b1='D6R0TPWR39QI4WELUE1N9139L337PIP' where id=1; -update noar ti set b1='D6R0TPWR39QI4WELUE1N9139L337PIP' where id=1; -update noar tt set b2='PT1PGFYPJIF0YQYHIZTX0CPER8NDK5' where id=1; -update noar ti set b2='PT1PGFYPJIF0YQYHIZTX0CPER8NDK5' where id=1; -update noar tt set b0='6PAC8KGF5EJZDZT' where id=2; -update noar ti set b0='6PAC8KGF5EJZDZT' where id=2; -update noar tt set b1='QB0RNZ0B76A73J7G3P9AAZQR220' where id=2; -update noar ti set b1='QB0RNZ0B76A73J7G3P9AAZQR220' where id=2; -update noar tt set b2='FWMXEQOZNZ' where id=2; -update noar ti set b2='FWMXEQOZNZ' where id=2; -update noar tt set b0='YVT4RPNTLO1G7HSQXE' where id=3; -update noar ti set b0='YVT4RPNTLO1G7HSQXE' where id=3; -update noar tt set b1='DPU3E51A9ZNWX1BJ9R3BS21GKDA' where id=3; -update noar ti set b1='DPU3E51A9ZNWX1BJ9R3BS21GKDA' where id=3; -update noar tt set b2='OB2VHDDM9SB0CI3HF3IAF' where id=3; -update noar ti set b2='OB2VHDDM9SB0CI3HF3IAF' where id=3; -update noar tt set b0='O6RM9IXR6EYFKYRAJP8DPBELZMK' where id=4; -update noar ti set b0='O6RM9IXR6EYFKYRAJP8DPBELZMK' where id=4; -update noar tt set b1='O8LUFAMEQVZOMJVUB4TGDBV' where id=4; -update noar ti set b1='O8LUFAMEQVZOMJVUB4TGDBV' where id=4; -update noar tt set b2='K6FRSLXB7BMOXMEZT7O3L0RVB' where id=4; -update noar ti set b2='K6FRSLXB7BMOXMEZT7O3L0RVB' where id=4; -update noar tt set b0='SZIE4M82QR3XSNZ3M' where id=5; -update noar ti set b0='SZIE4M82QR3XSNZ3M' where id=5; -update noar tt set b1='EODT7VSE8QDZURNG2I' where id=5; -update noar ti set b1='EODT7VSE8QDZURNG2I' where id=5; -update noar tt set b2='CQIYLXBZHF' where id=5; -update noar ti set b2='CQIYLXBZHF' where id=5; -update noar tt set b0='830KNDTN2VW2C' where id=6; -update noar ti set b0='830KNDTN2VW2C' where id=6; -update noar tt set b1='VML26A88V2GELPA2UM1E14J8' where id=6; -update noar ti set b1='VML26A88V2GELPA2UM1E14J8' where id=6; -update noar tt set b2='9OLDUH' where id=6; -update noar ti set b2='9OLDUH' where id=6; -update noar tt set b0='0C4NH6OS20EEXYT48MCGVTNT0NP' where id=7; -update noar ti set b0='0C4NH6OS20EEXYT48MCGVTNT0NP' where id=7; -update noar tt set b1='WIO6QBQUBOFRNFKKNSV' where id=7; -update noar ti set b1='WIO6QBQUBOFRNFKKNSV' where id=7; -update noar tt set b2='MHJZ6DF8JOCGG9G5NAJWT845PPWPFFN' where id=7; -update noar ti set b2='MHJZ6DF8JOCGG9G5NAJWT845PPWPFFN' where id=7; -update noar tt set b0='MGN3KRMZWRMZ59NU2ZWII' where id=8; -update noar ti set b0='MGN3KRMZWRMZ59NU2ZWII' where id=8; -update noar tt set b1='E1LLD5KHRL9E' where id=8; -update noar ti set b1='E1LLD5KHRL9E' where id=8; -update noar tt set b2='WKQWXX7U2PD9DETEEMZLI26' where id=8; -update noar ti set b2='WKQWXX7U2PD9DETEEMZLI26' where id=8; -update noar tt set b0='Z44ZNT67L2C' where id=9; -update noar ti set b0='Z44ZNT67L2C' where id=9; -update noar tt set b1='UC6X34E4EZOA1BXAGU62STY3' where id=9; -update noar ti set b1='UC6X34E4EZOA1BXAGU62STY3' where id=9; -update noar tt set b2='ZP795KUPO3' where id=9; -update noar ti set b2='ZP795KUPO3' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - b0 tinyblob null, - b1 blob null, - b2 tinyblob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set b0='W3E1BRU0QDRV7U052ZO8IYDY8' where id=1; -update noar ti set b0='W3E1BRU0QDRV7U052ZO8IYDY8' where id=1; -update noar tt set b1='1I56MCIYGN1XJ2' where id=1; -update noar ti set b1='1I56MCIYGN1XJ2' where id=1; -update noar tt set b2='YO5BN084JGRG' where id=1; -update noar ti set b2='YO5BN084JGRG' where id=1; -update noar tt set b0='1VLFX19NQ30GNIY1I2IJO0' where id=2; -update noar ti set b0='1VLFX19NQ30GNIY1I2IJO0' where id=2; -update noar tt set b1='7X2X4Q0ECDQH9Z716ML2DVQG8K' where id=2; -update noar ti set b1='7X2X4Q0ECDQH9Z716ML2DVQG8K' where id=2; -update noar tt set b2='FOAZC78KKO4N7CPBI7PFAMR3' where id=2; -update noar ti set b2='FOAZC78KKO4N7CPBI7PFAMR3' where id=2; -update noar tt set b0='BILB6BB71S5WA8S1DGNUA' where id=3; -update noar ti set b0='BILB6BB71S5WA8S1DGNUA' where id=3; -update noar tt set b1='1J6KN' where id=3; -update noar ti set b1='1J6KN' where id=3; -update noar tt set b2='S3' where id=3; -update noar ti set b2='S3' where id=3; -update noar tt set b0='3S1J5OTZW0A9RXHX9V' where id=4; -update noar ti set b0='3S1J5OTZW0A9RXHX9V' where id=4; -update noar tt set b1='YOTTW35UFC746O4KV37ILBK1WXW' where id=4; -update noar ti set b1='YOTTW35UFC746O4KV37ILBK1WXW' where id=4; -update noar tt set b2='UVRDWL1UBNWVT' where id=4; -update noar ti set b2='UVRDWL1UBNWVT' where id=4; -update noar tt set b0='KUWJPYFNL4MQXXUOS70TBOKQ5KF9TR' where id=5; -update noar ti set b0='KUWJPYFNL4MQXXUOS70TBOKQ5KF9TR' where id=5; -update noar tt set b1='GJ0QJZHLAMJV5SGC' where id=5; -update noar ti set b1='GJ0QJZHLAMJV5SGC' where id=5; -update noar tt set b2='7YZ60YY22K0AEEOIU0ZDN5' where id=5; -update noar ti set b2='7YZ60YY22K0AEEOIU0ZDN5' where id=5; -update noar tt set b0='586F' where id=6; -update noar ti set b0='586F' where id=6; -update noar tt set b1='QYJ93MZVBQWTK9B602FL' where id=6; -update noar ti set b1='QYJ93MZVBQWTK9B602FL' where id=6; -update noar tt set b2='TFL4VBCSYKY38FQPDA' where id=6; -update noar ti set b2='TFL4VBCSYKY38FQPDA' where id=6; -update noar tt set b0='5TTWSW3DPO3NT9' where id=7; -update noar ti set b0='5TTWSW3DPO3NT9' where id=7; -update noar tt set b1='GBBBC4X06T3LPN1JRBSZ' where id=7; -update noar ti set b1='GBBBC4X06T3LPN1JRBSZ' where id=7; -update noar tt set b2='GCQXIJFWLPKKCERQTS34QU4XUFWG4R' where id=7; -update noar ti set b2='GCQXIJFWLPKKCERQTS34QU4XUFWG4R' where id=7; -update noar tt set b0='ILIQQ3' where id=8; -update noar ti set b0='ILIQQ3' where id=8; -update noar tt set b1='6CAGH4E7SGX' where id=8; -update noar ti set b1='6CAGH4E7SGX' where id=8; -update noar tt set b2='98' where id=8; -update noar ti set b2='98' where id=8; -update noar tt set b0='BBIG0PVO87K' where id=9; -update noar ti set b0='BBIG0PVO87K' where id=9; -update noar tt set b1='ARJ1CMNVXQGJF6NX82' where id=9; -update noar ti set b1='ARJ1CMNVXQGJF6NX82' where id=9; -update noar tt set b2='5W9S1AF' where id=9; -update noar ti set b2='5W9S1AF' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - b0 tinyblob not null, - b1 blob not null, - b2 tinyblob not null -) engine=tokudb; -insert into tt values (1,'','',''); -insert into tt values (2,'','',''); -insert into tt values (3,'','',''); -insert into tt values (4,'','',''); -insert into tt values (5,'','',''); -insert into tt values (6,'','',''); -insert into tt values (7,'','',''); -insert into tt values (8,'','',''); -insert into tt values (9,'','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set b0='G1' where id=1; -update noar ti set b0='G1' where id=1; -update noar tt set b1='LP4PGUIVD2KVEOHG4G33P' where id=1; -update noar ti set b1='LP4PGUIVD2KVEOHG4G33P' where id=1; -update noar tt set b2='96F7VE7YN15VB52PZOA3TAXH85C' where id=1; -update noar ti set b2='96F7VE7YN15VB52PZOA3TAXH85C' where id=1; -update noar tt set b0='W31SHEPO0HUY5GV39SOW2LDW1OBUL' where id=2; -update noar ti set b0='W31SHEPO0HUY5GV39SOW2LDW1OBUL' where id=2; -update noar tt set b1='8DK9G' where id=2; -update noar ti set b1='8DK9G' where id=2; -update noar tt set b2='4O7SVQTY' where id=2; -update noar ti set b2='4O7SVQTY' where id=2; -update noar tt set b0='FUKX6X' where id=3; -update noar ti set b0='FUKX6X' where id=3; -update noar tt set b1='TPKJ4' where id=3; -update noar ti set b1='TPKJ4' where id=3; -update noar tt set b2='F7Z4Y04F4XBHYAYKD8' where id=3; -update noar ti set b2='F7Z4Y04F4XBHYAYKD8' where id=3; -update noar tt set b0='S09TJEE3VM5CWIZ3JDZ8TJ02' where id=4; -update noar ti set b0='S09TJEE3VM5CWIZ3JDZ8TJ02' where id=4; -update noar tt set b1='996' where id=4; -update noar ti set b1='996' where id=4; -update noar tt set b2='8IB0BBSXQR8Z2C4FP3GGG1K3Y9' where id=4; -update noar ti set b2='8IB0BBSXQR8Z2C4FP3GGG1K3Y9' where id=4; -update noar tt set b0='QY5KX' where id=5; -update noar ti set b0='QY5KX' where id=5; -update noar tt set b1='FI0TK' where id=5; -update noar ti set b1='FI0TK' where id=5; -update noar tt set b2='46RKT9QZG' where id=5; -update noar ti set b2='46RKT9QZG' where id=5; -update noar tt set b0='70Y4WLLLWS7YI0H7NUZN87' where id=6; -update noar ti set b0='70Y4WLLLWS7YI0H7NUZN87' where id=6; -update noar tt set b1='65UMA352KWXTE3WINMO52KN' where id=6; -update noar ti set b1='65UMA352KWXTE3WINMO52KN' where id=6; -update noar tt set b2='0KL6P4LD5MGAJ03NPU9X03BEVCPNO2' where id=6; -update noar ti set b2='0KL6P4LD5MGAJ03NPU9X03BEVCPNO2' where id=6; -update noar tt set b0='H2' where id=7; -update noar ti set b0='H2' where id=7; -update noar tt set b1='M4G61' where id=7; -update noar ti set b1='M4G61' where id=7; -update noar tt set b2='SMPY8OYCK3E5OF6N1B2X' where id=7; -update noar ti set b2='SMPY8OYCK3E5OF6N1B2X' where id=7; -update noar tt set b0='N44T19OMKUEH' where id=8; -update noar ti set b0='N44T19OMKUEH' where id=8; -update noar tt set b1='CKVR10TK6483Z553RQYV579' where id=8; -update noar ti set b1='CKVR10TK6483Z553RQYV579' where id=8; -update noar tt set b2='J3U3ZGSS3ASI2EV7168C4PPTCP4K' where id=8; -update noar ti set b2='J3U3ZGSS3ASI2EV7168C4PPTCP4K' where id=8; -update noar tt set b0='MSVCREOPDHFM8SEIEM6079YJVT' where id=9; -update noar ti set b0='MSVCREOPDHFM8SEIEM6079YJVT' where id=9; -update noar tt set b1='JPLMM7HS' where id=9; -update noar ti set b1='JPLMM7HS' where id=9; -update noar tt set b2='W11DG4Z889J1DA0YRC23Y' where id=9; -update noar ti set b2='W11DG4Z889J1DA0YRC23Y' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - b0 tinyblob null, - b1 blob null, - b2 blob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set b0='CQQ20FBKF9CLXAO8H' where id=1; -update noar ti set b0='CQQ20FBKF9CLXAO8H' where id=1; -update noar tt set b1='7D28UR82M5EQG1U8TDV4' where id=1; -update noar ti set b1='7D28UR82M5EQG1U8TDV4' where id=1; -update noar tt set b2='W' where id=1; -update noar ti set b2='W' where id=1; -update noar tt set b0='98D763XQ' where id=2; -update noar ti set b0='98D763XQ' where id=2; -update noar tt set b1='NX81TXXVGYJXRTGCBKGY8FLEV2' where id=2; -update noar ti set b1='NX81TXXVGYJXRTGCBKGY8FLEV2' where id=2; -update noar tt set b2='MAO3HC' where id=2; -update noar ti set b2='MAO3HC' where id=2; -update noar tt set b0='Y0CI' where id=3; -update noar ti set b0='Y0CI' where id=3; -update noar tt set b1='SSVK0B556CS' where id=3; -update noar ti set b1='SSVK0B556CS' where id=3; -update noar tt set b2='NM8AFB2S6T6XR5I0CMEDN9MAY' where id=3; -update noar ti set b2='NM8AFB2S6T6XR5I0CMEDN9MAY' where id=3; -update noar tt set b0='M3IHPBO' where id=4; -update noar ti set b0='M3IHPBO' where id=4; -update noar tt set b1='CV1P92O9FWKCWKBV' where id=4; -update noar ti set b1='CV1P92O9FWKCWKBV' where id=4; -update noar tt set b2='N6LZWRY04OBC3171GL3OF4LMWOWKAC8K' where id=4; -update noar ti set b2='N6LZWRY04OBC3171GL3OF4LMWOWKAC8K' where id=4; -update noar tt set b0='QR1' where id=5; -update noar ti set b0='QR1' where id=5; -update noar tt set b1='ND0WUELCVPSU' where id=5; -update noar ti set b1='ND0WUELCVPSU' where id=5; -update noar tt set b2='J58WCUVVYKXOX23IEK3B' where id=5; -update noar ti set b2='J58WCUVVYKXOX23IEK3B' where id=5; -update noar tt set b0='YPF8UO33Z66JTM64W' where id=6; -update noar ti set b0='YPF8UO33Z66JTM64W' where id=6; -update noar tt set b1='RGPKQ9USTQKZ' where id=6; -update noar ti set b1='RGPKQ9USTQKZ' where id=6; -update noar tt set b2='MB88S2L5TXQHFXU30PP34TF6F7IUBG' where id=6; -update noar ti set b2='MB88S2L5TXQHFXU30PP34TF6F7IUBG' where id=6; -update noar tt set b0='O0FTPQUKUS6GBDYYD' where id=7; -update noar ti set b0='O0FTPQUKUS6GBDYYD' where id=7; -update noar tt set b1='XWKV8OENAIGM4' where id=7; -update noar ti set b1='XWKV8OENAIGM4' where id=7; -update noar tt set b2='VCXV6XC0NM48IG3WNUJNOY3JWXF98IQ9' where id=7; -update noar ti set b2='VCXV6XC0NM48IG3WNUJNOY3JWXF98IQ9' where id=7; -update noar tt set b0='LPTK4JADRI6HB0' where id=8; -update noar ti set b0='LPTK4JADRI6HB0' where id=8; -update noar tt set b1='CMP7BGPEH5HE4MCAFVKFOK567CBIQSUS' where id=8; -update noar ti set b1='CMP7BGPEH5HE4MCAFVKFOK567CBIQSUS' where id=8; -update noar tt set b2='EO' where id=8; -update noar ti set b2='EO' where id=8; -update noar tt set b0='UFZOWSXE0Y5QMFOWWW2L' where id=9; -update noar ti set b0='UFZOWSXE0Y5QMFOWWW2L' where id=9; -update noar tt set b1='XAXW6AREZZBVIHVE0J660IE0D46S04AB' where id=9; -update noar ti set b1='XAXW6AREZZBVIHVE0J660IE0D46S04AB' where id=9; -update noar tt set b2='G8ZSERN0TMTZ5MI3Q7TEEHRRH9Z' where id=9; -update noar ti set b2='G8ZSERN0TMTZ5MI3Q7TEEHRRH9Z' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - b0 tinyblob not null, - b1 blob not null, - b2 blob not null -) engine=tokudb; -insert into tt values (1,'','',''); -insert into tt values (2,'','',''); -insert into tt values (3,'','',''); -insert into tt values (4,'','',''); -insert into tt values (5,'','',''); -insert into tt values (6,'','',''); -insert into tt values (7,'','',''); -insert into tt values (8,'','',''); -insert into tt values (9,'','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set b0='YB' where id=1; -update noar ti set b0='YB' where id=1; -update noar tt set b1='6NA7XYO28TKA75RND7MTI' where id=1; -update noar ti set b1='6NA7XYO28TKA75RND7MTI' where id=1; -update noar tt set b2='KL91GF8BLQRBOCE02JM3XRBBH' where id=1; -update noar ti set b2='KL91GF8BLQRBOCE02JM3XRBBH' where id=1; -update noar tt set b0='F1RI64V9YN7Y4VNIQ0IKLAI' where id=2; -update noar ti set b0='F1RI64V9YN7Y4VNIQ0IKLAI' where id=2; -update noar tt set b1='2U8Q9KD497XPFRJKC' where id=2; -update noar ti set b1='2U8Q9KD497XPFRJKC' where id=2; -update noar tt set b2='CTX86TY41S4COK62' where id=2; -update noar ti set b2='CTX86TY41S4COK62' where id=2; -update noar tt set b0='A1539Z2Y2C4KO' where id=3; -update noar ti set b0='A1539Z2Y2C4KO' where id=3; -update noar tt set b1='2VTLWM39ZJ1SW2D' where id=3; -update noar ti set b1='2VTLWM39ZJ1SW2D' where id=3; -update noar tt set b2='0PH0JTOTU1Q29H1TH' where id=3; -update noar ti set b2='0PH0JTOTU1Q29H1TH' where id=3; -update noar tt set b0='SIKAV8UZBK0J3RU' where id=4; -update noar ti set b0='SIKAV8UZBK0J3RU' where id=4; -update noar tt set b1='6H3M6N028SA1HT2' where id=4; -update noar ti set b1='6H3M6N028SA1HT2' where id=4; -update noar tt set b2='193J9L9FBGBYO5RX2HG07TV85VKV' where id=4; -update noar ti set b2='193J9L9FBGBYO5RX2HG07TV85VKV' where id=4; -update noar tt set b0='Q9SEGANQW35PGJSBJGLX48XH9' where id=5; -update noar ti set b0='Q9SEGANQW35PGJSBJGLX48XH9' where id=5; -update noar tt set b1='TIPBCO2X5NXW2B0CF' where id=5; -update noar ti set b1='TIPBCO2X5NXW2B0CF' where id=5; -update noar tt set b2='RB6GQK6PYEPRTMCE1' where id=5; -update noar ti set b2='RB6GQK6PYEPRTMCE1' where id=5; -update noar tt set b0='W' where id=6; -update noar ti set b0='W' where id=6; -update noar tt set b1='KTC8' where id=6; -update noar ti set b1='KTC8' where id=6; -update noar tt set b2='CR1RXZEDHFP6O' where id=6; -update noar ti set b2='CR1RXZEDHFP6O' where id=6; -update noar tt set b0='XKYNUGAKQL4' where id=7; -update noar ti set b0='XKYNUGAKQL4' where id=7; -update noar tt set b1='R2PER83QXP4YDUXYXXE' where id=7; -update noar ti set b1='R2PER83QXP4YDUXYXXE' where id=7; -update noar tt set b2='KF1J' where id=7; -update noar ti set b2='KF1J' where id=7; -update noar tt set b0='2HY6MVCXM6F2VLKIBSCV5BJ5APAT52X' where id=8; -update noar ti set b0='2HY6MVCXM6F2VLKIBSCV5BJ5APAT52X' where id=8; -update noar tt set b1='GV3FSDITS39B4E2152L9QQW9KR1' where id=8; -update noar ti set b1='GV3FSDITS39B4E2152L9QQW9KR1' where id=8; -update noar tt set b2='JVJGA13TXG' where id=8; -update noar ti set b2='JVJGA13TXG' where id=8; -update noar tt set b0='K07DD' where id=9; -update noar ti set b0='K07DD' where id=9; -update noar tt set b1='0DOL50' where id=9; -update noar ti set b1='0DOL50' where id=9; -update noar tt set b2='AKSCKJCMCP31EEULWVGME' where id=9; -update noar ti set b2='AKSCKJCMCP31EEULWVGME' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - b0 tinyblob null, - b1 blob null, - b2 mediumblob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set b0='M0WI88R27XF17NNSYV4MWD4EHFYT4ZN' where id=1; -update noar ti set b0='M0WI88R27XF17NNSYV4MWD4EHFYT4ZN' where id=1; -update noar tt set b1='7B154ZQPG3CP500HVK6796PQ469Z' where id=1; -update noar ti set b1='7B154ZQPG3CP500HVK6796PQ469Z' where id=1; -update noar tt set b2='ZSOS2GSH2H6KDOYLQUHUC5FMDW5B6N' where id=1; -update noar ti set b2='ZSOS2GSH2H6KDOYLQUHUC5FMDW5B6N' where id=1; -update noar tt set b0='0JED16Q9M3OYDCE9ADWIT' where id=2; -update noar ti set b0='0JED16Q9M3OYDCE9ADWIT' where id=2; -update noar tt set b1='ISFL7F' where id=2; -update noar ti set b1='ISFL7F' where id=2; -update noar tt set b2='JMWKPL6H84T89CIXQSCBS8Y' where id=2; -update noar ti set b2='JMWKPL6H84T89CIXQSCBS8Y' where id=2; -update noar tt set b0='0B' where id=3; -update noar ti set b0='0B' where id=3; -update noar tt set b1='2Q' where id=3; -update noar ti set b1='2Q' where id=3; -update noar tt set b2='KLD' where id=3; -update noar ti set b2='KLD' where id=3; -update noar tt set b0='9YCRAMCH5VVJNX1777X9NOW5GWLR45' where id=4; -update noar ti set b0='9YCRAMCH5VVJNX1777X9NOW5GWLR45' where id=4; -update noar tt set b1='VTHEJP' where id=4; -update noar ti set b1='VTHEJP' where id=4; -update noar tt set b2='QY4JBID6XQJE' where id=4; -update noar ti set b2='QY4JBID6XQJE' where id=4; -update noar tt set b0='D2X9' where id=5; -update noar ti set b0='D2X9' where id=5; -update noar tt set b1='Y7V3O80H1460PLM1' where id=5; -update noar ti set b1='Y7V3O80H1460PLM1' where id=5; -update noar tt set b2='GK8F0SW6D9C35' where id=5; -update noar ti set b2='GK8F0SW6D9C35' where id=5; -update noar tt set b0='HBL6AF6AUDGJU1P2L4X7FJ2KDQY' where id=6; -update noar ti set b0='HBL6AF6AUDGJU1P2L4X7FJ2KDQY' where id=6; -update noar tt set b1='RVNZ660' where id=6; -update noar ti set b1='RVNZ660' where id=6; -update noar tt set b2='DQM3' where id=6; -update noar ti set b2='DQM3' where id=6; -update noar tt set b0='F12SFLDWC5GIUS' where id=7; -update noar ti set b0='F12SFLDWC5GIUS' where id=7; -update noar tt set b1='KNU' where id=7; -update noar ti set b1='KNU' where id=7; -update noar tt set b2='KKBEDHEZCQDMJIJZMJ1UQ12ARK916O' where id=7; -update noar ti set b2='KKBEDHEZCQDMJIJZMJ1UQ12ARK916O' where id=7; -update noar tt set b0='X75C7ZY1AT' where id=8; -update noar ti set b0='X75C7ZY1AT' where id=8; -update noar tt set b1='TH7KMW1IO9JRKXQR2NBE9X85S554NB1' where id=8; -update noar ti set b1='TH7KMW1IO9JRKXQR2NBE9X85S554NB1' where id=8; -update noar tt set b2='T1UBOPGPW4C8A95L3UW96VK7UCEGBQC' where id=8; -update noar ti set b2='T1UBOPGPW4C8A95L3UW96VK7UCEGBQC' where id=8; -update noar tt set b0='ZVSQRQV' where id=9; -update noar ti set b0='ZVSQRQV' where id=9; -update noar tt set b1='ED1WY0SU' where id=9; -update noar ti set b1='ED1WY0SU' where id=9; -update noar tt set b2='93A58OVP0SQPZAYWU6FFQO2WHAJW3' where id=9; -update noar ti set b2='93A58OVP0SQPZAYWU6FFQO2WHAJW3' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - b0 tinyblob not null, - b1 blob not null, - b2 mediumblob not null -) engine=tokudb; -insert into tt values (1,'','',''); -insert into tt values (2,'','',''); -insert into tt values (3,'','',''); -insert into tt values (4,'','',''); -insert into tt values (5,'','',''); -insert into tt values (6,'','',''); -insert into tt values (7,'','',''); -insert into tt values (8,'','',''); -insert into tt values (9,'','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set b0='PBZ5' where id=1; -update noar ti set b0='PBZ5' where id=1; -update noar tt set b1='WA4D' where id=1; -update noar ti set b1='WA4D' where id=1; -update noar tt set b2='5X22DH9QMGE6GL423VVZSX9SEL6D9W' where id=1; -update noar ti set b2='5X22DH9QMGE6GL423VVZSX9SEL6D9W' where id=1; -update noar tt set b0='5TDZI1NG8LA7' where id=2; -update noar ti set b0='5TDZI1NG8LA7' where id=2; -update noar tt set b1='DK6I6YQQAKU' where id=2; -update noar ti set b1='DK6I6YQQAKU' where id=2; -update noar tt set b2='QLUP' where id=2; -update noar ti set b2='QLUP' where id=2; -update noar tt set b0='NDU7RWPL6HLW2TNTQMHSUJ3' where id=3; -update noar ti set b0='NDU7RWPL6HLW2TNTQMHSUJ3' where id=3; -update noar tt set b1='XKSPE0UZP7KX7' where id=3; -update noar ti set b1='XKSPE0UZP7KX7' where id=3; -update noar tt set b2='0UFZOQ9V7U0RI1EYA9A1' where id=3; -update noar ti set b2='0UFZOQ9V7U0RI1EYA9A1' where id=3; -update noar tt set b0='Z1BMVZXFSLPWMKARLIJ3C521MH8R0' where id=4; -update noar ti set b0='Z1BMVZXFSLPWMKARLIJ3C521MH8R0' where id=4; -update noar tt set b1='J22MX2IK8OG' where id=4; -update noar ti set b1='J22MX2IK8OG' where id=4; -update noar tt set b2='4W' where id=4; -update noar ti set b2='4W' where id=4; -update noar tt set b0='C2KAH' where id=5; -update noar ti set b0='C2KAH' where id=5; -update noar tt set b1='WF8C0Z9H7X6486S335GUK9RGZJTQ8' where id=5; -update noar ti set b1='WF8C0Z9H7X6486S335GUK9RGZJTQ8' where id=5; -update noar tt set b2='PFKHD013QZ7L' where id=5; -update noar ti set b2='PFKHD013QZ7L' where id=5; -update noar tt set b0='4HJ8EFFYXPWXDB5IFZTYYA2' where id=6; -update noar ti set b0='4HJ8EFFYXPWXDB5IFZTYYA2' where id=6; -update noar tt set b1='4DFR9JEE9AD7193OUYVA9Z67JK3YR57M' where id=6; -update noar ti set b1='4DFR9JEE9AD7193OUYVA9Z67JK3YR57M' where id=6; -update noar tt set b2='GKDATR4GK5BQ5IHFQ8NJJR2' where id=6; -update noar ti set b2='GKDATR4GK5BQ5IHFQ8NJJR2' where id=6; -update noar tt set b0='48TDHZ' where id=7; -update noar ti set b0='48TDHZ' where id=7; -update noar tt set b1='FV2GTDI0QI0JC19' where id=7; -update noar ti set b1='FV2GTDI0QI0JC19' where id=7; -update noar tt set b2='JG8HXRTBB5YLSBM40PAOQW6LLSX9W3Y' where id=7; -update noar ti set b2='JG8HXRTBB5YLSBM40PAOQW6LLSX9W3Y' where id=7; -update noar tt set b0='SHKGZWRYV2EY2C4NOVBV0Z6QL77TT' where id=8; -update noar ti set b0='SHKGZWRYV2EY2C4NOVBV0Z6QL77TT' where id=8; -update noar tt set b1='LAJ37V0' where id=8; -update noar ti set b1='LAJ37V0' where id=8; -update noar tt set b2='31HVRWD3ROXFP7O5PJMC' where id=8; -update noar ti set b2='31HVRWD3ROXFP7O5PJMC' where id=8; -update noar tt set b0='YXAL3S6DOGZ4ZEUVO02LG' where id=9; -update noar ti set b0='YXAL3S6DOGZ4ZEUVO02LG' where id=9; -update noar tt set b1='G' where id=9; -update noar ti set b1='G' where id=9; -update noar tt set b2='46HIP9JK' where id=9; -update noar ti set b2='46HIP9JK' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - b0 tinyblob null, - b1 blob null, - b2 longblob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set b0='BXJ7QD5CN60DC' where id=1; -update noar ti set b0='BXJ7QD5CN60DC' where id=1; -update noar tt set b1='SR7XRP327RKAHI0BSV2GQF9RXYO' where id=1; -update noar ti set b1='SR7XRP327RKAHI0BSV2GQF9RXYO' where id=1; -update noar tt set b2='NCPT4NVNV' where id=1; -update noar ti set b2='NCPT4NVNV' where id=1; -update noar tt set b0='TV4PGD9W3CJM1OANPKZDFKN8WNQYJNPN' where id=2; -update noar ti set b0='TV4PGD9W3CJM1OANPKZDFKN8WNQYJNPN' where id=2; -update noar tt set b1='8RI30V3ZQFAII43XWLCYB6TSI8' where id=2; -update noar ti set b1='8RI30V3ZQFAII43XWLCYB6TSI8' where id=2; -update noar tt set b2='LQO69OFXE2QSTP' where id=2; -update noar ti set b2='LQO69OFXE2QSTP' where id=2; -update noar tt set b0='QB4KJUGZSM' where id=3; -update noar ti set b0='QB4KJUGZSM' where id=3; -update noar tt set b1='3VCV77A89B8ECEGVQ6Y2GT51YFBCHN' where id=3; -update noar ti set b1='3VCV77A89B8ECEGVQ6Y2GT51YFBCHN' where id=3; -update noar tt set b2='DX0N7V13XEM009JORY262' where id=3; -update noar ti set b2='DX0N7V13XEM009JORY262' where id=3; -update noar tt set b0='HIG8U2GHT76BF8QRAB8H0949N' where id=4; -update noar ti set b0='HIG8U2GHT76BF8QRAB8H0949N' where id=4; -update noar tt set b1='9D6ESING7D2JSCM66JHARHIFFA8BBO9' where id=4; -update noar ti set b1='9D6ESING7D2JSCM66JHARHIFFA8BBO9' where id=4; -update noar tt set b2='I' where id=4; -update noar ti set b2='I' where id=4; -update noar tt set b0='LFFU3M3R23883RIO8Z00RXFF6OI7' where id=5; -update noar ti set b0='LFFU3M3R23883RIO8Z00RXFF6OI7' where id=5; -update noar tt set b1='943M5PMWQ' where id=5; -update noar ti set b1='943M5PMWQ' where id=5; -update noar tt set b2='08' where id=5; -update noar ti set b2='08' where id=5; -update noar tt set b0='PUQC49FYLWKBPV' where id=6; -update noar ti set b0='PUQC49FYLWKBPV' where id=6; -update noar tt set b1='LDVP4D7GYGHR33E' where id=6; -update noar ti set b1='LDVP4D7GYGHR33E' where id=6; -update noar tt set b2='9RDVM7GDHUGWPK7E8Q7IQ0' where id=6; -update noar ti set b2='9RDVM7GDHUGWPK7E8Q7IQ0' where id=6; -update noar tt set b0='E1U1N' where id=7; -update noar ti set b0='E1U1N' where id=7; -update noar tt set b1='KR68MDP85H1E' where id=7; -update noar ti set b1='KR68MDP85H1E' where id=7; -update noar tt set b2='3OGM7' where id=7; -update noar ti set b2='3OGM7' where id=7; -update noar tt set b0='96GPPR2SWZ0HGNLT7VWHPVMJF3S85W9' where id=8; -update noar ti set b0='96GPPR2SWZ0HGNLT7VWHPVMJF3S85W9' where id=8; -update noar tt set b1='N77AE7G57H2VW0PY' where id=8; -update noar ti set b1='N77AE7G57H2VW0PY' where id=8; -update noar tt set b2='5YCO' where id=8; -update noar ti set b2='5YCO' where id=8; -update noar tt set b0='CCY' where id=9; -update noar ti set b0='CCY' where id=9; -update noar tt set b1='MW7DKSWJV9KQA8IHRDI' where id=9; -update noar ti set b1='MW7DKSWJV9KQA8IHRDI' where id=9; -update noar tt set b2='2UVBD7RV9OQ1ET7YX4IU' where id=9; -update noar ti set b2='2UVBD7RV9OQ1ET7YX4IU' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - b0 tinyblob not null, - b1 blob not null, - b2 longblob not null -) engine=tokudb; -insert into tt values (1,'','',''); -insert into tt values (2,'','',''); -insert into tt values (3,'','',''); -insert into tt values (4,'','',''); -insert into tt values (5,'','',''); -insert into tt values (6,'','',''); -insert into tt values (7,'','',''); -insert into tt values (8,'','',''); -insert into tt values (9,'','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set b0='P3OR865OZCUSETY5' where id=1; -update noar ti set b0='P3OR865OZCUSETY5' where id=1; -update noar tt set b1='VIOG' where id=1; -update noar ti set b1='VIOG' where id=1; -update noar tt set b2='250TIVPKIXMPZ1C6Z5Y' where id=1; -update noar ti set b2='250TIVPKIXMPZ1C6Z5Y' where id=1; -update noar tt set b0='VM7I6NPR1XJN5JCHSUEH8PO38E0' where id=2; -update noar ti set b0='VM7I6NPR1XJN5JCHSUEH8PO38E0' where id=2; -update noar tt set b1='H' where id=2; -update noar ti set b1='H' where id=2; -update noar tt set b2='0P2NI' where id=2; -update noar ti set b2='0P2NI' where id=2; -update noar tt set b0='IGUVHY8524WPPGDPX5Q727IWK2' where id=3; -update noar ti set b0='IGUVHY8524WPPGDPX5Q727IWK2' where id=3; -update noar tt set b1='6TRDXA1NGYVYP8MU2PWR6Q33' where id=3; -update noar ti set b1='6TRDXA1NGYVYP8MU2PWR6Q33' where id=3; -update noar tt set b2='CDBAZME9LHTJ7SDMSQIPXT4AK' where id=3; -update noar ti set b2='CDBAZME9LHTJ7SDMSQIPXT4AK' where id=3; -update noar tt set b0='E17Q0M0GVPWZFVUPALGLF7Z' where id=4; -update noar ti set b0='E17Q0M0GVPWZFVUPALGLF7Z' where id=4; -update noar tt set b1='B138' where id=4; -update noar ti set b1='B138' where id=4; -update noar tt set b2='K28OT3' where id=4; -update noar ti set b2='K28OT3' where id=4; -update noar tt set b0='799NAUH9LZ6DQ2YM4YBDJXK0UP5C' where id=5; -update noar ti set b0='799NAUH9LZ6DQ2YM4YBDJXK0UP5C' where id=5; -update noar tt set b1='6ZN7TJLGBMFMI54KDBYH1' where id=5; -update noar ti set b1='6ZN7TJLGBMFMI54KDBYH1' where id=5; -update noar tt set b2='L3WOXG7WTTXC3IV' where id=5; -update noar ti set b2='L3WOXG7WTTXC3IV' where id=5; -update noar tt set b0='6DJX9N6ILL5TKHDKGEQFVFF3BT4' where id=6; -update noar ti set b0='6DJX9N6ILL5TKHDKGEQFVFF3BT4' where id=6; -update noar tt set b1='64MY4' where id=6; -update noar ti set b1='64MY4' where id=6; -update noar tt set b2='GOEJLSUYTIODH6NRU4N2ZQLV69EKRKU' where id=6; -update noar ti set b2='GOEJLSUYTIODH6NRU4N2ZQLV69EKRKU' where id=6; -update noar tt set b0='3M' where id=7; -update noar ti set b0='3M' where id=7; -update noar tt set b1='DZ88RA0VGO9OQAP1B877TIIJ' where id=7; -update noar ti set b1='DZ88RA0VGO9OQAP1B877TIIJ' where id=7; -update noar tt set b2='P7X3Y0U09' where id=7; -update noar ti set b2='P7X3Y0U09' where id=7; -update noar tt set b0='L1LTSJSTTAN' where id=8; -update noar ti set b0='L1LTSJSTTAN' where id=8; -update noar tt set b1='DIJE7V2X273ZJ5Q46LK526R8XAT0CD' where id=8; -update noar ti set b1='DIJE7V2X273ZJ5Q46LK526R8XAT0CD' where id=8; -update noar tt set b2='HDUWY57FI15DVFMH1X' where id=8; -update noar ti set b2='HDUWY57FI15DVFMH1X' where id=8; -update noar tt set b0='LWLFO7R2QHKNV87FR7S' where id=9; -update noar ti set b0='LWLFO7R2QHKNV87FR7S' where id=9; -update noar tt set b1='2RZUVK3S31BP6FB6Y0HSBW1NQ' where id=9; -update noar ti set b1='2RZUVK3S31BP6FB6Y0HSBW1NQ' where id=9; -update noar tt set b2='ZUY' where id=9; -update noar ti set b2='ZUY' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - b0 tinyblob null, - b1 blob null, - b2 text null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set b0='N5FAV' where id=1; -update noar ti set b0='N5FAV' where id=1; -update noar tt set b1='RYFWXW1F9RL' where id=1; -update noar ti set b1='RYFWXW1F9RL' where id=1; -update noar tt set b2='7DPV6J2QCEC5ADBFD3LGHEPQ45' where id=1; -update noar ti set b2='7DPV6J2QCEC5ADBFD3LGHEPQ45' where id=1; -update noar tt set b0='JIPOEWS3URK01XP4' where id=2; -update noar ti set b0='JIPOEWS3URK01XP4' where id=2; -update noar tt set b1='YOS5YFF2TLF' where id=2; -update noar ti set b1='YOS5YFF2TLF' where id=2; -update noar tt set b2='37NBJ61XX81S7MA1AYNE8JATUVML' where id=2; -update noar ti set b2='37NBJ61XX81S7MA1AYNE8JATUVML' where id=2; -update noar tt set b0='QQAF5MC' where id=3; -update noar ti set b0='QQAF5MC' where id=3; -update noar tt set b1='DY38O7X13Q9NQO435UNGT2GETFVEO80' where id=3; -update noar ti set b1='DY38O7X13Q9NQO435UNGT2GETFVEO80' where id=3; -update noar tt set b2='6JQECIJEBHAZ4XX45R6GUW19XG' where id=3; -update noar ti set b2='6JQECIJEBHAZ4XX45R6GUW19XG' where id=3; -update noar tt set b0='24AJA' where id=4; -update noar ti set b0='24AJA' where id=4; -update noar tt set b1='81E25ALZALDIW7SL2FOYANUMI0BEM1MD' where id=4; -update noar ti set b1='81E25ALZALDIW7SL2FOYANUMI0BEM1MD' where id=4; -update noar tt set b2='3BA2X' where id=4; -update noar ti set b2='3BA2X' where id=4; -update noar tt set b0='BNKHC8BMS5H28LNPCLY3DPJG0E86' where id=5; -update noar ti set b0='BNKHC8BMS5H28LNPCLY3DPJG0E86' where id=5; -update noar tt set b1='9CTRWMLS1FU634SKTZ0BHX' where id=5; -update noar ti set b1='9CTRWMLS1FU634SKTZ0BHX' where id=5; -update noar tt set b2='ZHIFCL6FCTUGV' where id=5; -update noar ti set b2='ZHIFCL6FCTUGV' where id=5; -update noar tt set b0='DQ9BCIUOL7UOB' where id=6; -update noar ti set b0='DQ9BCIUOL7UOB' where id=6; -update noar tt set b1='2Q5K2JDNDNMB79GEZO8S9E6SMU' where id=6; -update noar ti set b1='2Q5K2JDNDNMB79GEZO8S9E6SMU' where id=6; -update noar tt set b2='292UMJRNFY13ROE6ADFOF' where id=6; -update noar ti set b2='292UMJRNFY13ROE6ADFOF' where id=6; -update noar tt set b0='V1GX25GBFALLY0ANX95G454SE4F6H' where id=7; -update noar ti set b0='V1GX25GBFALLY0ANX95G454SE4F6H' where id=7; -update noar tt set b1='2OJI3LOTMTT2OB60P0N087EYP3' where id=7; -update noar ti set b1='2OJI3LOTMTT2OB60P0N087EYP3' where id=7; -update noar tt set b2='WS' where id=7; -update noar ti set b2='WS' where id=7; -update noar tt set b0='0Y5IB6UIQIKT58' where id=8; -update noar ti set b0='0Y5IB6UIQIKT58' where id=8; -update noar tt set b1='KIX01AKQWO8UAO4XBTA0' where id=8; -update noar ti set b1='KIX01AKQWO8UAO4XBTA0' where id=8; -update noar tt set b2='H0J8RBH3DTSM1XZ9CJZCJHEHFUR' where id=8; -update noar ti set b2='H0J8RBH3DTSM1XZ9CJZCJHEHFUR' where id=8; -update noar tt set b0='1EH88DP9RH' where id=9; -update noar ti set b0='1EH88DP9RH' where id=9; -update noar tt set b1='9N64S3DOR754' where id=9; -update noar ti set b1='9N64S3DOR754' where id=9; -update noar tt set b2='GFGUGUQVHR3JL50XHRY8SL3TEM' where id=9; -update noar ti set b2='GFGUGUQVHR3JL50XHRY8SL3TEM' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - b0 tinyblob not null, - b1 blob not null, - b2 text not null -) engine=tokudb; -insert into tt values (1,'','',''); -insert into tt values (2,'','',''); -insert into tt values (3,'','',''); -insert into tt values (4,'','',''); -insert into tt values (5,'','',''); -insert into tt values (6,'','',''); -insert into tt values (7,'','',''); -insert into tt values (8,'','',''); -insert into tt values (9,'','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set b0='OHE09CVN1PE6SOQ0TQIDQ966YRR' where id=1; -update noar ti set b0='OHE09CVN1PE6SOQ0TQIDQ966YRR' where id=1; -update noar tt set b1='2OA1ZU9B69P4LKS45N5HY82Q77WE' where id=1; -update noar ti set b1='2OA1ZU9B69P4LKS45N5HY82Q77WE' where id=1; -update noar tt set b2='BDDR6TUDPRAV12BSO42SHUH20SFS1' where id=1; -update noar ti set b2='BDDR6TUDPRAV12BSO42SHUH20SFS1' where id=1; -update noar tt set b0='NATFMK64HO0H1' where id=2; -update noar ti set b0='NATFMK64HO0H1' where id=2; -update noar tt set b1='NRR2H7LOZ87FSGKKDKOMDEFXXV8X15L' where id=2; -update noar ti set b1='NRR2H7LOZ87FSGKKDKOMDEFXXV8X15L' where id=2; -update noar tt set b2='X9RQIR7QAXVLKE' where id=2; -update noar ti set b2='X9RQIR7QAXVLKE' where id=2; -update noar tt set b0='SMXBH03' where id=3; -update noar ti set b0='SMXBH03' where id=3; -update noar tt set b1='LMF8WXBU6UUSS05VLM4AWXNK' where id=3; -update noar ti set b1='LMF8WXBU6UUSS05VLM4AWXNK' where id=3; -update noar tt set b2='K25NU1I1A7G1H37X8J' where id=3; -update noar ti set b2='K25NU1I1A7G1H37X8J' where id=3; -update noar tt set b0='YCAQOFZJORR6GHNPB5W4S5SXLNQHKJ' where id=4; -update noar ti set b0='YCAQOFZJORR6GHNPB5W4S5SXLNQHKJ' where id=4; -update noar tt set b1='UKVS095MVDHQFY' where id=4; -update noar ti set b1='UKVS095MVDHQFY' where id=4; -update noar tt set b2='P8YU3T6VH7RJZP' where id=4; -update noar ti set b2='P8YU3T6VH7RJZP' where id=4; -update noar tt set b0='MQWW3T3OE39ACEE4ORTN7E6E00BKY0WE' where id=5; -update noar ti set b0='MQWW3T3OE39ACEE4ORTN7E6E00BKY0WE' where id=5; -update noar tt set b1='D1W8LB4' where id=5; -update noar ti set b1='D1W8LB4' where id=5; -update noar tt set b2='5PUG6EW1NKHLO' where id=5; -update noar ti set b2='5PUG6EW1NKHLO' where id=5; -update noar tt set b0='MJ' where id=6; -update noar ti set b0='MJ' where id=6; -update noar tt set b1='9T' where id=6; -update noar ti set b1='9T' where id=6; -update noar tt set b2='JS' where id=6; -update noar ti set b2='JS' where id=6; -update noar tt set b0='PWMQ9Y62JLYVANGVNW2P' where id=7; -update noar ti set b0='PWMQ9Y62JLYVANGVNW2P' where id=7; -update noar tt set b1='4LSY6RIPCNCUJMAIW168LP4V1J4GMA' where id=7; -update noar ti set b1='4LSY6RIPCNCUJMAIW168LP4V1J4GMA' where id=7; -update noar tt set b2='2K8VOWIRB' where id=7; -update noar ti set b2='2K8VOWIRB' where id=7; -update noar tt set b0='D3FWQY2N45AD234LMFR6EE' where id=8; -update noar ti set b0='D3FWQY2N45AD234LMFR6EE' where id=8; -update noar tt set b1='D8PFGU6K1FZROQI2OKBPE' where id=8; -update noar ti set b1='D8PFGU6K1FZROQI2OKBPE' where id=8; -update noar tt set b2='UI2QM6RXB63N35PG0ZR6AE' where id=8; -update noar ti set b2='UI2QM6RXB63N35PG0ZR6AE' where id=8; -update noar tt set b0='HW8QRKNLSCZLLKVFI2PPF8UUO8ZB' where id=9; -update noar ti set b0='HW8QRKNLSCZLLKVFI2PPF8UUO8ZB' where id=9; -update noar tt set b1='V5O58RH9M2DTNG1WCNHU6UYI3' where id=9; -update noar ti set b1='V5O58RH9M2DTNG1WCNHU6UYI3' where id=9; -update noar tt set b2='VYTJN24E' where id=9; -update noar ti set b2='VYTJN24E' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - b0 tinyblob null, - b1 mediumblob null, - b2 tinyblob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set b0='7H20YF66A9RXV7GQ5J' where id=1; -update noar ti set b0='7H20YF66A9RXV7GQ5J' where id=1; -update noar tt set b1='IOAO4KGB5V31WO5' where id=1; -update noar ti set b1='IOAO4KGB5V31WO5' where id=1; -update noar tt set b2='RV57OU' where id=1; -update noar ti set b2='RV57OU' where id=1; -update noar tt set b0='OKHLNT1VZWFLDA6V2KX9EBAOF' where id=2; -update noar ti set b0='OKHLNT1VZWFLDA6V2KX9EBAOF' where id=2; -update noar tt set b1='SXLOO2Q3QHBIYJOOF9R5EE35CJV9' where id=2; -update noar ti set b1='SXLOO2Q3QHBIYJOOF9R5EE35CJV9' where id=2; -update noar tt set b2='NLX3M8' where id=2; -update noar ti set b2='NLX3M8' where id=2; -update noar tt set b0='RA9J9RZXZOBMX1' where id=3; -update noar ti set b0='RA9J9RZXZOBMX1' where id=3; -update noar tt set b1='P8TTGU2N4HNZVDT6184YH' where id=3; -update noar ti set b1='P8TTGU2N4HNZVDT6184YH' where id=3; -update noar tt set b2='3' where id=3; -update noar ti set b2='3' where id=3; -update noar tt set b0='D' where id=4; -update noar ti set b0='D' where id=4; -update noar tt set b1='4CY862DE' where id=4; -update noar ti set b1='4CY862DE' where id=4; -update noar tt set b2='HJ6K7T1DOUIJ8FV82LJ5' where id=4; -update noar ti set b2='HJ6K7T1DOUIJ8FV82LJ5' where id=4; -update noar tt set b0='8J0HWDJ120V' where id=5; -update noar ti set b0='8J0HWDJ120V' where id=5; -update noar tt set b1='U3XHYGU5HD' where id=5; -update noar ti set b1='U3XHYGU5HD' where id=5; -update noar tt set b2='SR3CRVL6OV' where id=5; -update noar ti set b2='SR3CRVL6OV' where id=5; -update noar tt set b0='MI' where id=6; -update noar ti set b0='MI' where id=6; -update noar tt set b1='0IA4PJS6DZ' where id=6; -update noar ti set b1='0IA4PJS6DZ' where id=6; -update noar tt set b2='QJHUDCHA4IYE' where id=6; -update noar ti set b2='QJHUDCHA4IYE' where id=6; -update noar tt set b0='SW5E' where id=7; -update noar ti set b0='SW5E' where id=7; -update noar tt set b1='8LETY9NARJSWRKOMD9EPH98WC3CE' where id=7; -update noar ti set b1='8LETY9NARJSWRKOMD9EPH98WC3CE' where id=7; -update noar tt set b2='XZA2174D548YOBREK4XJI' where id=7; -update noar ti set b2='XZA2174D548YOBREK4XJI' where id=7; -update noar tt set b0='KSK' where id=8; -update noar ti set b0='KSK' where id=8; -update noar tt set b1='YS7GP2LEZA22K2T804VTMPPI' where id=8; -update noar ti set b1='YS7GP2LEZA22K2T804VTMPPI' where id=8; -update noar tt set b2='J15HJL0K7E5WLYRBS34RD5SKTAPMOR' where id=8; -update noar ti set b2='J15HJL0K7E5WLYRBS34RD5SKTAPMOR' where id=8; -update noar tt set b0='X8UBULN4DAPQJ4J0SKRF8XIA' where id=9; -update noar ti set b0='X8UBULN4DAPQJ4J0SKRF8XIA' where id=9; -update noar tt set b1='J69B8PDS4PG3HCX6NB0UF2G5YJ92X6' where id=9; -update noar ti set b1='J69B8PDS4PG3HCX6NB0UF2G5YJ92X6' where id=9; -update noar tt set b2='LNLBZUVT51QSB8J154H0GX6OG' where id=9; -update noar ti set b2='LNLBZUVT51QSB8J154H0GX6OG' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - b0 tinyblob not null, - b1 mediumblob not null, - b2 tinyblob not null -) engine=tokudb; -insert into tt values (1,'','',''); -insert into tt values (2,'','',''); -insert into tt values (3,'','',''); -insert into tt values (4,'','',''); -insert into tt values (5,'','',''); -insert into tt values (6,'','',''); -insert into tt values (7,'','',''); -insert into tt values (8,'','',''); -insert into tt values (9,'','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set b0='D5NHT94GAYKZ0ZL8WJFOCP8C5Z955F' where id=1; -update noar ti set b0='D5NHT94GAYKZ0ZL8WJFOCP8C5Z955F' where id=1; -update noar tt set b1='E95' where id=1; -update noar ti set b1='E95' where id=1; -update noar tt set b2='E9S2FF4NARNCMNONETF904M547Y5A837' where id=1; -update noar ti set b2='E9S2FF4NARNCMNONETF904M547Y5A837' where id=1; -update noar tt set b0='DMVF21TT7UOOVLZG2M64' where id=2; -update noar ti set b0='DMVF21TT7UOOVLZG2M64' where id=2; -update noar tt set b1='7VVLJ672EB' where id=2; -update noar ti set b1='7VVLJ672EB' where id=2; -update noar tt set b2='K7' where id=2; -update noar ti set b2='K7' where id=2; -update noar tt set b0='NQI3T161XHZN5YHTZWD68SLXTNIN' where id=3; -update noar ti set b0='NQI3T161XHZN5YHTZWD68SLXTNIN' where id=3; -update noar tt set b1='T5I' where id=3; -update noar ti set b1='T5I' where id=3; -update noar tt set b2='20T3' where id=3; -update noar ti set b2='20T3' where id=3; -update noar tt set b0='EOS29XP3SERP0YJ2JAQRJ3' where id=4; -update noar ti set b0='EOS29XP3SERP0YJ2JAQRJ3' where id=4; -update noar tt set b1='QR379A0X6BVCODK1OPRW1LN6FD7PEZ2' where id=4; -update noar ti set b1='QR379A0X6BVCODK1OPRW1LN6FD7PEZ2' where id=4; -update noar tt set b2='82OANMH93' where id=4; -update noar ti set b2='82OANMH93' where id=4; -update noar tt set b0='31FIVXNTDC' where id=5; -update noar ti set b0='31FIVXNTDC' where id=5; -update noar tt set b1='5JZ8PZLP8IU50775QN0WPLMVOL7CJ9S' where id=5; -update noar ti set b1='5JZ8PZLP8IU50775QN0WPLMVOL7CJ9S' where id=5; -update noar tt set b2='EEEOV0XTLKJPEB07ZQ8P0D5O82A4BBTX' where id=5; -update noar ti set b2='EEEOV0XTLKJPEB07ZQ8P0D5O82A4BBTX' where id=5; -update noar tt set b0='AMMWWL6LQEJPRSTJLWFIGWT' where id=6; -update noar ti set b0='AMMWWL6LQEJPRSTJLWFIGWT' where id=6; -update noar tt set b1='HQPQZCS' where id=6; -update noar ti set b1='HQPQZCS' where id=6; -update noar tt set b2='HCVDS7GXPCLFTXB07WQCJX' where id=6; -update noar ti set b2='HCVDS7GXPCLFTXB07WQCJX' where id=6; -update noar tt set b0='OMNW' where id=7; -update noar ti set b0='OMNW' where id=7; -update noar tt set b1='2JTU2WCEE5T0A19' where id=7; -update noar ti set b1='2JTU2WCEE5T0A19' where id=7; -update noar tt set b2='27FB02D29NJBRT6F' where id=7; -update noar ti set b2='27FB02D29NJBRT6F' where id=7; -update noar tt set b0='R' where id=8; -update noar ti set b0='R' where id=8; -update noar tt set b1='FV' where id=8; -update noar ti set b1='FV' where id=8; -update noar tt set b2='QXYW88W2KI23FOGY04' where id=8; -update noar ti set b2='QXYW88W2KI23FOGY04' where id=8; -update noar tt set b0='3G01CANSG3FDFKHOODJKQB6FX' where id=9; -update noar ti set b0='3G01CANSG3FDFKHOODJKQB6FX' where id=9; -update noar tt set b1='UN6KUYV6UFWHVYWQKI7S1DDN6' where id=9; -update noar ti set b1='UN6KUYV6UFWHVYWQKI7S1DDN6' where id=9; -update noar tt set b2='EEUT1VDOTNJMTM5NFJPZH' where id=9; -update noar ti set b2='EEUT1VDOTNJMTM5NFJPZH' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - b0 tinyblob null, - b1 mediumblob null, - b2 blob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set b0='G3V17GK52' where id=1; -update noar ti set b0='G3V17GK52' where id=1; -update noar tt set b1='QHKDP02I65QSN' where id=1; -update noar ti set b1='QHKDP02I65QSN' where id=1; -update noar tt set b2='0JZ0CNQSUBS' where id=1; -update noar ti set b2='0JZ0CNQSUBS' where id=1; -update noar tt set b0='FGH0FPCA02P' where id=2; -update noar ti set b0='FGH0FPCA02P' where id=2; -update noar tt set b1='T5FEBH06R2FOZ40' where id=2; -update noar ti set b1='T5FEBH06R2FOZ40' where id=2; -update noar tt set b2='6' where id=2; -update noar ti set b2='6' where id=2; -update noar tt set b0='6A0XBN3F4DS2V2S' where id=3; -update noar ti set b0='6A0XBN3F4DS2V2S' where id=3; -update noar tt set b1='HGXSH0G3Z7EHQAI09FLJX' where id=3; -update noar ti set b1='HGXSH0G3Z7EHQAI09FLJX' where id=3; -update noar tt set b2='RZ86H6959C4001UMGW5J12WKMV039VH' where id=3; -update noar ti set b2='RZ86H6959C4001UMGW5J12WKMV039VH' where id=3; -update noar tt set b0='3G' where id=4; -update noar ti set b0='3G' where id=4; -update noar tt set b1='2KFCAJ2Q9TG8E3GTL3GSEM28XU6IIC4A' where id=4; -update noar ti set b1='2KFCAJ2Q9TG8E3GTL3GSEM28XU6IIC4A' where id=4; -update noar tt set b2='TFH78N9S' where id=4; -update noar ti set b2='TFH78N9S' where id=4; -update noar tt set b0='FNUJ7W' where id=5; -update noar ti set b0='FNUJ7W' where id=5; -update noar tt set b1='PVOABGSIGWNVQ5Y' where id=5; -update noar ti set b1='PVOABGSIGWNVQ5Y' where id=5; -update noar tt set b2='IJS0H0N92DP9Y8SWNZBAUU' where id=5; -update noar ti set b2='IJS0H0N92DP9Y8SWNZBAUU' where id=5; -update noar tt set b0='AGZHX' where id=6; -update noar ti set b0='AGZHX' where id=6; -update noar tt set b1='KPT3LZVGI' where id=6; -update noar ti set b1='KPT3LZVGI' where id=6; -update noar tt set b2='TD60T4QZJNAGLC1UE299XV' where id=6; -update noar ti set b2='TD60T4QZJNAGLC1UE299XV' where id=6; -update noar tt set b0='NK7ZXDZGGHJ531MUPCB13' where id=7; -update noar ti set b0='NK7ZXDZGGHJ531MUPCB13' where id=7; -update noar tt set b1='789A10YLUFH44S' where id=7; -update noar ti set b1='789A10YLUFH44S' where id=7; -update noar tt set b2='2ZBHBA8PDC7T0RZ93T' where id=7; -update noar ti set b2='2ZBHBA8PDC7T0RZ93T' where id=7; -update noar tt set b0='7XYYW' where id=8; -update noar ti set b0='7XYYW' where id=8; -update noar tt set b1='EJJ' where id=8; -update noar ti set b1='EJJ' where id=8; -update noar tt set b2='TOG0E6BYRKJV' where id=8; -update noar ti set b2='TOG0E6BYRKJV' where id=8; -update noar tt set b0='P94KRHR' where id=9; -update noar ti set b0='P94KRHR' where id=9; -update noar tt set b1='WDGKG7UBRX3FKBC2HR' where id=9; -update noar ti set b1='WDGKG7UBRX3FKBC2HR' where id=9; -update noar tt set b2='HDRRZ8MNM2YQ5LDTS' where id=9; -update noar ti set b2='HDRRZ8MNM2YQ5LDTS' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - b0 tinyblob not null, - b1 mediumblob not null, - b2 blob not null -) engine=tokudb; -insert into tt values (1,'','',''); -insert into tt values (2,'','',''); -insert into tt values (3,'','',''); -insert into tt values (4,'','',''); -insert into tt values (5,'','',''); -insert into tt values (6,'','',''); -insert into tt values (7,'','',''); -insert into tt values (8,'','',''); -insert into tt values (9,'','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set b0='LR1F2C5AYWHSULZV972FP0LNDTQ93UEY' where id=1; -update noar ti set b0='LR1F2C5AYWHSULZV972FP0LNDTQ93UEY' where id=1; -update noar tt set b1='VNS2FD255YHT737ZJAXMC56' where id=1; -update noar ti set b1='VNS2FD255YHT737ZJAXMC56' where id=1; -update noar tt set b2='WMCUL9CKIUUL29E11KVCAAB0B' where id=1; -update noar ti set b2='WMCUL9CKIUUL29E11KVCAAB0B' where id=1; -update noar tt set b0='HKU9TSDFCW83P4ADM91QT2SVRQMVV' where id=2; -update noar ti set b0='HKU9TSDFCW83P4ADM91QT2SVRQMVV' where id=2; -update noar tt set b1='THK6Q0PI7NVU9PXBW3RK3IZ1PMB6X3' where id=2; -update noar ti set b1='THK6Q0PI7NVU9PXBW3RK3IZ1PMB6X3' where id=2; -update noar tt set b2='LLVLZ91MUSQXOXFE8BYBC2GSIU3U54XN' where id=2; -update noar ti set b2='LLVLZ91MUSQXOXFE8BYBC2GSIU3U54XN' where id=2; -update noar tt set b0='8DVOSZRLWSTIK' where id=3; -update noar ti set b0='8DVOSZRLWSTIK' where id=3; -update noar tt set b1='2BGTY67YW7KX5TX1U5MD5' where id=3; -update noar ti set b1='2BGTY67YW7KX5TX1U5MD5' where id=3; -update noar tt set b2='UV9UNZDQECM0N2' where id=3; -update noar ti set b2='UV9UNZDQECM0N2' where id=3; -update noar tt set b0='OYXPNG3IALFMOKKTKBZF' where id=4; -update noar ti set b0='OYXPNG3IALFMOKKTKBZF' where id=4; -update noar tt set b1='YEPI66UUA1A240GD48' where id=4; -update noar ti set b1='YEPI66UUA1A240GD48' where id=4; -update noar tt set b2='HE4J4W7ZRZWLZI26XR23' where id=4; -update noar ti set b2='HE4J4W7ZRZWLZI26XR23' where id=4; -update noar tt set b0='130E6Y38TW24D082' where id=5; -update noar ti set b0='130E6Y38TW24D082' where id=5; -update noar tt set b1='VG018IS8ZQN1D' where id=5; -update noar ti set b1='VG018IS8ZQN1D' where id=5; -update noar tt set b2='QH6X8N45BQEG6FD4XHGD2JRAZGN6W6' where id=5; -update noar ti set b2='QH6X8N45BQEG6FD4XHGD2JRAZGN6W6' where id=5; -update noar tt set b0='HZJNJ9QPUC94J' where id=6; -update noar ti set b0='HZJNJ9QPUC94J' where id=6; -update noar tt set b1='12AQKBWP7' where id=6; -update noar ti set b1='12AQKBWP7' where id=6; -update noar tt set b2='LDOGKBAG57B7UCCNAD56V' where id=6; -update noar ti set b2='LDOGKBAG57B7UCCNAD56V' where id=6; -update noar tt set b0='M72' where id=7; -update noar ti set b0='M72' where id=7; -update noar tt set b1='13W65YYJOH49XZ8LE' where id=7; -update noar ti set b1='13W65YYJOH49XZ8LE' where id=7; -update noar tt set b2='CFCY' where id=7; -update noar ti set b2='CFCY' where id=7; -update noar tt set b0='K82JOXYRGMBEONIOXKGI4E3L0J' where id=8; -update noar ti set b0='K82JOXYRGMBEONIOXKGI4E3L0J' where id=8; -update noar tt set b1='BPW' where id=8; -update noar ti set b1='BPW' where id=8; -update noar tt set b2='AB3TYGHITLU260KVRVHUZSALSTLO55C' where id=8; -update noar ti set b2='AB3TYGHITLU260KVRVHUZSALSTLO55C' where id=8; -update noar tt set b0='5KSA3BQ1X1F86XAS' where id=9; -update noar ti set b0='5KSA3BQ1X1F86XAS' where id=9; -update noar tt set b1='6R689A37RVWEZ8RK4' where id=9; -update noar ti set b1='6R689A37RVWEZ8RK4' where id=9; -update noar tt set b2='249XCEBEUHQLF413TJ74LP' where id=9; -update noar ti set b2='249XCEBEUHQLF413TJ74LP' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - b0 tinyblob null, - b1 mediumblob null, - b2 mediumblob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set b0='VCO0JPLDALLG' where id=1; -update noar ti set b0='VCO0JPLDALLG' where id=1; -update noar tt set b1='YZ73XB0JK6XYBGSGAS9MJJ' where id=1; -update noar ti set b1='YZ73XB0JK6XYBGSGAS9MJJ' where id=1; -update noar tt set b2='DUB9P3TDVP2KEI' where id=1; -update noar ti set b2='DUB9P3TDVP2KEI' where id=1; -update noar tt set b0='L1X84LWN8QRDM' where id=2; -update noar ti set b0='L1X84LWN8QRDM' where id=2; -update noar tt set b1='HOR89OUSLFZQ' where id=2; -update noar ti set b1='HOR89OUSLFZQ' where id=2; -update noar tt set b2='II07KOFF5BETPB24O77O8Z' where id=2; -update noar ti set b2='II07KOFF5BETPB24O77O8Z' where id=2; -update noar tt set b0='3C5G9CY6G9BZ50KLHRYE' where id=3; -update noar ti set b0='3C5G9CY6G9BZ50KLHRYE' where id=3; -update noar tt set b1='BOT9A33IKQNQ' where id=3; -update noar ti set b1='BOT9A33IKQNQ' where id=3; -update noar tt set b2='19HXK4IFAMY409SFK00ZPMG' where id=3; -update noar ti set b2='19HXK4IFAMY409SFK00ZPMG' where id=3; -update noar tt set b0='A9MNK5MS60QKEJCRAGF6H55' where id=4; -update noar ti set b0='A9MNK5MS60QKEJCRAGF6H55' where id=4; -update noar tt set b1='BFVYS6M7OO494V6SIV8O7A' where id=4; -update noar ti set b1='BFVYS6M7OO494V6SIV8O7A' where id=4; -update noar tt set b2='Q0ZJKOUJV2Y8WFFYIMV20VKZHASNYL7' where id=4; -update noar ti set b2='Q0ZJKOUJV2Y8WFFYIMV20VKZHASNYL7' where id=4; -update noar tt set b0='YQ5CWFGV4LA5YU' where id=5; -update noar ti set b0='YQ5CWFGV4LA5YU' where id=5; -update noar tt set b1='3VG46KQDCT6EZFRFCT93OGBYP' where id=5; -update noar ti set b1='3VG46KQDCT6EZFRFCT93OGBYP' where id=5; -update noar tt set b2='L0H' where id=5; -update noar ti set b2='L0H' where id=5; -update noar tt set b0='58WDO1GR881BAT6VMOE0JAIO1U8ATM' where id=6; -update noar ti set b0='58WDO1GR881BAT6VMOE0JAIO1U8ATM' where id=6; -update noar tt set b1='W04PPC20CNITELJ24TJE9' where id=6; -update noar ti set b1='W04PPC20CNITELJ24TJE9' where id=6; -update noar tt set b2='FKO06Y1WWP9EF9231X8FSOF' where id=6; -update noar ti set b2='FKO06Y1WWP9EF9231X8FSOF' where id=6; -update noar tt set b0='6YV3CFTPOQMYFJAP74132DZ' where id=7; -update noar ti set b0='6YV3CFTPOQMYFJAP74132DZ' where id=7; -update noar tt set b1='NPZCGPF1KDZAZ8THVONNE' where id=7; -update noar ti set b1='NPZCGPF1KDZAZ8THVONNE' where id=7; -update noar tt set b2='FXFENBCXULQ6THLA5N1RKX' where id=7; -update noar ti set b2='FXFENBCXULQ6THLA5N1RKX' where id=7; -update noar tt set b0='Q6FWAJY98GNLU8RH4' where id=8; -update noar ti set b0='Q6FWAJY98GNLU8RH4' where id=8; -update noar tt set b1='38ZHPSGDNKDMVCDJ4SV0LLKGS' where id=8; -update noar ti set b1='38ZHPSGDNKDMVCDJ4SV0LLKGS' where id=8; -update noar tt set b2='X8P14PZT9PTRVF' where id=8; -update noar ti set b2='X8P14PZT9PTRVF' where id=8; -update noar tt set b0='SDRKTAPHLVRD13SOAKS0WRCE' where id=9; -update noar ti set b0='SDRKTAPHLVRD13SOAKS0WRCE' where id=9; -update noar tt set b1='XXCT9B8IUTBHFEMQ7TH6L30XK9CP5' where id=9; -update noar ti set b1='XXCT9B8IUTBHFEMQ7TH6L30XK9CP5' where id=9; -update noar tt set b2='DC0L9V' where id=9; -update noar ti set b2='DC0L9V' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - b0 tinyblob not null, - b1 mediumblob not null, - b2 mediumblob not null -) engine=tokudb; -insert into tt values (1,'','',''); -insert into tt values (2,'','',''); -insert into tt values (3,'','',''); -insert into tt values (4,'','',''); -insert into tt values (5,'','',''); -insert into tt values (6,'','',''); -insert into tt values (7,'','',''); -insert into tt values (8,'','',''); -insert into tt values (9,'','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set b0='8H5QEMP8Z93WE6J6H244WHNPLMNYIYA' where id=1; -update noar ti set b0='8H5QEMP8Z93WE6J6H244WHNPLMNYIYA' where id=1; -update noar tt set b1='M3Y4OT4' where id=1; -update noar ti set b1='M3Y4OT4' where id=1; -update noar tt set b2='0YFUJA8U3TZOPC6RXLJ3F69ZUPZYQPT' where id=1; -update noar ti set b2='0YFUJA8U3TZOPC6RXLJ3F69ZUPZYQPT' where id=1; -update noar tt set b0='FGGBOVA2XVGBH1E42QILO1N1BQ8CXBZI' where id=2; -update noar ti set b0='FGGBOVA2XVGBH1E42QILO1N1BQ8CXBZI' where id=2; -update noar tt set b1='VJ3D0R0JKTQ' where id=2; -update noar ti set b1='VJ3D0R0JKTQ' where id=2; -update noar tt set b2='8H8MPL0OG2CJJV5OQX05TNSUDVQL' where id=2; -update noar ti set b2='8H8MPL0OG2CJJV5OQX05TNSUDVQL' where id=2; -update noar tt set b0='6L12YITZKF4LDG44HCUIII78K' where id=3; -update noar ti set b0='6L12YITZKF4LDG44HCUIII78K' where id=3; -update noar tt set b1='WEX3OO556LIWHS8DPO6BBYTUY2X2' where id=3; -update noar ti set b1='WEX3OO556LIWHS8DPO6BBYTUY2X2' where id=3; -update noar tt set b2='NW' where id=3; -update noar ti set b2='NW' where id=3; -update noar tt set b0='MYDT5X143' where id=4; -update noar ti set b0='MYDT5X143' where id=4; -update noar tt set b1='04WKK4YFP4C807FZNQZPSVT' where id=4; -update noar ti set b1='04WKK4YFP4C807FZNQZPSVT' where id=4; -update noar tt set b2='R92M8YAE9YHF8JWHTU3YU' where id=4; -update noar ti set b2='R92M8YAE9YHF8JWHTU3YU' where id=4; -update noar tt set b0='PSFXPY89A39M0' where id=5; -update noar ti set b0='PSFXPY89A39M0' where id=5; -update noar tt set b1='T9QQ2P57OU67CJY' where id=5; -update noar ti set b1='T9QQ2P57OU67CJY' where id=5; -update noar tt set b2='MGYSY6VJUR4' where id=5; -update noar ti set b2='MGYSY6VJUR4' where id=5; -update noar tt set b0='8W37RYQ4JM9ITCP10PFJ5U2' where id=6; -update noar ti set b0='8W37RYQ4JM9ITCP10PFJ5U2' where id=6; -update noar tt set b1='H5O79F36HZS' where id=6; -update noar ti set b1='H5O79F36HZS' where id=6; -update noar tt set b2='WB9' where id=6; -update noar ti set b2='WB9' where id=6; -update noar tt set b0='AK7WTU9IVQNJXCE66XHKHYDQN0OE' where id=7; -update noar ti set b0='AK7WTU9IVQNJXCE66XHKHYDQN0OE' where id=7; -update noar tt set b1='UCJEYUVAOSM1UFXZPKPLOK4KOBFNLXP' where id=7; -update noar ti set b1='UCJEYUVAOSM1UFXZPKPLOK4KOBFNLXP' where id=7; -update noar tt set b2='23WBK' where id=7; -update noar ti set b2='23WBK' where id=7; -update noar tt set b0='Q276ZA93FRTBQNPYFWBI4Y2VF7N3' where id=8; -update noar ti set b0='Q276ZA93FRTBQNPYFWBI4Y2VF7N3' where id=8; -update noar tt set b1='97BBSW4XFX1C95TLO1T1LRAZLQ9NFN5A' where id=8; -update noar ti set b1='97BBSW4XFX1C95TLO1T1LRAZLQ9NFN5A' where id=8; -update noar tt set b2='DUKXEJK0JAC6W62BTZ5E' where id=8; -update noar ti set b2='DUKXEJK0JAC6W62BTZ5E' where id=8; -update noar tt set b0='M49S057P13EDI3DGCUS6UTA9N' where id=9; -update noar ti set b0='M49S057P13EDI3DGCUS6UTA9N' where id=9; -update noar tt set b1='BIT6W9BP45A04HII58G' where id=9; -update noar ti set b1='BIT6W9BP45A04HII58G' where id=9; -update noar tt set b2='0X24QVI' where id=9; -update noar ti set b2='0X24QVI' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - b0 tinyblob null, - b1 mediumblob null, - b2 longblob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set b0='RC3FJ0G' where id=1; -update noar ti set b0='RC3FJ0G' where id=1; -update noar tt set b1='4LWJ05NF59SO8A7N55B' where id=1; -update noar ti set b1='4LWJ05NF59SO8A7N55B' where id=1; -update noar tt set b2='V388YCB879EAURE' where id=1; -update noar ti set b2='V388YCB879EAURE' where id=1; -update noar tt set b0='GUUFRAJ' where id=2; -update noar ti set b0='GUUFRAJ' where id=2; -update noar tt set b1='YISROZ786YAUVSM' where id=2; -update noar ti set b1='YISROZ786YAUVSM' where id=2; -update noar tt set b2='FZ779HQ5MV1' where id=2; -update noar ti set b2='FZ779HQ5MV1' where id=2; -update noar tt set b0='TSXHOQGC4MOLERHFF7XCTKZK9U0' where id=3; -update noar ti set b0='TSXHOQGC4MOLERHFF7XCTKZK9U0' where id=3; -update noar tt set b1='TP9FIWYOXXOORH7ZFFT9X2UXJJR' where id=3; -update noar ti set b1='TP9FIWYOXXOORH7ZFFT9X2UXJJR' where id=3; -update noar tt set b2='ORZ37L3X9H101WX' where id=3; -update noar ti set b2='ORZ37L3X9H101WX' where id=3; -update noar tt set b0='8' where id=4; -update noar ti set b0='8' where id=4; -update noar tt set b1='QHVO7KU808904CP7MB503ELDJ79YKZ' where id=4; -update noar ti set b1='QHVO7KU808904CP7MB503ELDJ79YKZ' where id=4; -update noar tt set b2='ED0USKHRYPZWWNOHR6BJ' where id=4; -update noar ti set b2='ED0USKHRYPZWWNOHR6BJ' where id=4; -update noar tt set b0='F7UPEJ6THCHF' where id=5; -update noar ti set b0='F7UPEJ6THCHF' where id=5; -update noar tt set b1='UVGYAJTXTSD16SOSTB03' where id=5; -update noar ti set b1='UVGYAJTXTSD16SOSTB03' where id=5; -update noar tt set b2='382KK8' where id=5; -update noar ti set b2='382KK8' where id=5; -update noar tt set b0='ATAP386S4Q7XL5' where id=6; -update noar ti set b0='ATAP386S4Q7XL5' where id=6; -update noar tt set b1='J' where id=6; -update noar ti set b1='J' where id=6; -update noar tt set b2='QWB7VVS8VSVMWM' where id=6; -update noar ti set b2='QWB7VVS8VSVMWM' where id=6; -update noar tt set b0='Q42T35O3MXCHH0XUGPO0BE1T2Z3Y25I9' where id=7; -update noar ti set b0='Q42T35O3MXCHH0XUGPO0BE1T2Z3Y25I9' where id=7; -update noar tt set b1='VD5W0ZS' where id=7; -update noar ti set b1='VD5W0ZS' where id=7; -update noar tt set b2='Q7WDRS9XBHCF' where id=7; -update noar ti set b2='Q7WDRS9XBHCF' where id=7; -update noar tt set b0='U6DUHCZGKKZNAANMYNVZT7SVY8' where id=8; -update noar ti set b0='U6DUHCZGKKZNAANMYNVZT7SVY8' where id=8; -update noar tt set b1='M' where id=8; -update noar ti set b1='M' where id=8; -update noar tt set b2='3NXRJ' where id=8; -update noar ti set b2='3NXRJ' where id=8; -update noar tt set b0='99N97C7' where id=9; -update noar ti set b0='99N97C7' where id=9; -update noar tt set b1='7JKF57BEDGDX5DJ5PYV182F4Q5M8CUJ0' where id=9; -update noar ti set b1='7JKF57BEDGDX5DJ5PYV182F4Q5M8CUJ0' where id=9; -update noar tt set b2='VDB' where id=9; -update noar ti set b2='VDB' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - b0 tinyblob not null, - b1 mediumblob not null, - b2 longblob not null -) engine=tokudb; -insert into tt values (1,'','',''); -insert into tt values (2,'','',''); -insert into tt values (3,'','',''); -insert into tt values (4,'','',''); -insert into tt values (5,'','',''); -insert into tt values (6,'','',''); -insert into tt values (7,'','',''); -insert into tt values (8,'','',''); -insert into tt values (9,'','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set b0='XKDY8ACXOX8ENOXXR8RYBH8FAMAL6N' where id=1; -update noar ti set b0='XKDY8ACXOX8ENOXXR8RYBH8FAMAL6N' where id=1; -update noar tt set b1='IMHPNCEL9' where id=1; -update noar ti set b1='IMHPNCEL9' where id=1; -update noar tt set b2='L7L62L800Z4WVCIHCVINV94XL' where id=1; -update noar ti set b2='L7L62L800Z4WVCIHCVINV94XL' where id=1; -update noar tt set b0='RBPSPQWGWPLTHQ6F' where id=2; -update noar ti set b0='RBPSPQWGWPLTHQ6F' where id=2; -update noar tt set b1='8W2JYOK4B3' where id=2; -update noar ti set b1='8W2JYOK4B3' where id=2; -update noar tt set b2='8RW6127MR8K3ZME6LSCPSY9QRMM' where id=2; -update noar ti set b2='8RW6127MR8K3ZME6LSCPSY9QRMM' where id=2; -update noar tt set b0='ZJFQLEMC9J3MUPKH02XRFPKJ1GPA2' where id=3; -update noar ti set b0='ZJFQLEMC9J3MUPKH02XRFPKJ1GPA2' where id=3; -update noar tt set b1='7VV561KMJX7VRDGAKBZBMPRA' where id=3; -update noar ti set b1='7VV561KMJX7VRDGAKBZBMPRA' where id=3; -update noar tt set b2='HO45A8DY59MXR' where id=3; -update noar ti set b2='HO45A8DY59MXR' where id=3; -update noar tt set b0='9YGFHMPAOJT' where id=4; -update noar ti set b0='9YGFHMPAOJT' where id=4; -update noar tt set b1='Q783BWI451RKUTIUORM0A1XH1D' where id=4; -update noar ti set b1='Q783BWI451RKUTIUORM0A1XH1D' where id=4; -update noar tt set b2='4Q4QGYUCLA8P2' where id=4; -update noar ti set b2='4Q4QGYUCLA8P2' where id=4; -update noar tt set b0='Z2LI0DW41QA3NF335ISKDALN94ID1B' where id=5; -update noar ti set b0='Z2LI0DW41QA3NF335ISKDALN94ID1B' where id=5; -update noar tt set b1='94X08DXN3JGSN6OX5TNY' where id=5; -update noar ti set b1='94X08DXN3JGSN6OX5TNY' where id=5; -update noar tt set b2='08XHC0A9QE61JNX0H8M65J85XT1RB' where id=5; -update noar ti set b2='08XHC0A9QE61JNX0H8M65J85XT1RB' where id=5; -update noar tt set b0='1FIX84TDQI' where id=6; -update noar ti set b0='1FIX84TDQI' where id=6; -update noar tt set b1='CJ' where id=6; -update noar ti set b1='CJ' where id=6; -update noar tt set b2='B3DWKDMOHVKR' where id=6; -update noar ti set b2='B3DWKDMOHVKR' where id=6; -update noar tt set b0='AAKRU7H1L5W69XQ' where id=7; -update noar ti set b0='AAKRU7H1L5W69XQ' where id=7; -update noar tt set b1='GKX5U1G9GNZ1NNM4JE' where id=7; -update noar ti set b1='GKX5U1G9GNZ1NNM4JE' where id=7; -update noar tt set b2='QZBFHDQM23R3O' where id=7; -update noar ti set b2='QZBFHDQM23R3O' where id=7; -update noar tt set b0='ZRK9EJLOLDOYIBUAJUUKO' where id=8; -update noar ti set b0='ZRK9EJLOLDOYIBUAJUUKO' where id=8; -update noar tt set b1='7XSY' where id=8; -update noar ti set b1='7XSY' where id=8; -update noar tt set b2='R996UUTNJO99CM8' where id=8; -update noar ti set b2='R996UUTNJO99CM8' where id=8; -update noar tt set b0='582YZLBRXAEEDBS' where id=9; -update noar ti set b0='582YZLBRXAEEDBS' where id=9; -update noar tt set b1='IYYTVFADGRGCWS1' where id=9; -update noar ti set b1='IYYTVFADGRGCWS1' where id=9; -update noar tt set b2='D1T' where id=9; -update noar ti set b2='D1T' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - b0 tinyblob null, - b1 mediumblob null, - b2 text null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set b0='WIRORQ4KM9V8XE7PMT3GTSNNMT5' where id=1; -update noar ti set b0='WIRORQ4KM9V8XE7PMT3GTSNNMT5' where id=1; -update noar tt set b1='A3251TI36XPC9HO2U' where id=1; -update noar ti set b1='A3251TI36XPC9HO2U' where id=1; -update noar tt set b2='DQUMFTXH3F8O2GAK310VY2WE7H' where id=1; -update noar ti set b2='DQUMFTXH3F8O2GAK310VY2WE7H' where id=1; -update noar tt set b0='L' where id=2; -update noar ti set b0='L' where id=2; -update noar tt set b1='64TO' where id=2; -update noar ti set b1='64TO' where id=2; -update noar tt set b2='RG5ZJ18J3T259N193KHQ' where id=2; -update noar ti set b2='RG5ZJ18J3T259N193KHQ' where id=2; -update noar tt set b0='3KNWN' where id=3; -update noar ti set b0='3KNWN' where id=3; -update noar tt set b1='U8CKKEJT3P6QOFST681FF7' where id=3; -update noar ti set b1='U8CKKEJT3P6QOFST681FF7' where id=3; -update noar tt set b2='NUFA1BREMJPZCKO4RNL4EYCENJ' where id=3; -update noar ti set b2='NUFA1BREMJPZCKO4RNL4EYCENJ' where id=3; -update noar tt set b0='UZYNXGAF' where id=4; -update noar ti set b0='UZYNXGAF' where id=4; -update noar tt set b1='SIVSRI6XXDU' where id=4; -update noar ti set b1='SIVSRI6XXDU' where id=4; -update noar tt set b2='B1V3JA96D' where id=4; -update noar ti set b2='B1V3JA96D' where id=4; -update noar tt set b0='LBU' where id=5; -update noar ti set b0='LBU' where id=5; -update noar tt set b1='R' where id=5; -update noar ti set b1='R' where id=5; -update noar tt set b2='8XXOBX49KD' where id=5; -update noar ti set b2='8XXOBX49KD' where id=5; -update noar tt set b0='0K0RQ1EO3VW0H1L218H8EN64Q' where id=6; -update noar ti set b0='0K0RQ1EO3VW0H1L218H8EN64Q' where id=6; -update noar tt set b1='EZT3PQVTFNRSHIVV5ZCXJXEMG12U1NYN' where id=6; -update noar ti set b1='EZT3PQVTFNRSHIVV5ZCXJXEMG12U1NYN' where id=6; -update noar tt set b2='AY2PLXYBQJBXDF8Z' where id=6; -update noar ti set b2='AY2PLXYBQJBXDF8Z' where id=6; -update noar tt set b0='VF4ULFAUOSVG7ZDTKQ' where id=7; -update noar ti set b0='VF4ULFAUOSVG7ZDTKQ' where id=7; -update noar tt set b1='C9A3AP6' where id=7; -update noar ti set b1='C9A3AP6' where id=7; -update noar tt set b2='8LXTB1' where id=7; -update noar ti set b2='8LXTB1' where id=7; -update noar tt set b0='ZDO9R2W21' where id=8; -update noar ti set b0='ZDO9R2W21' where id=8; -update noar tt set b1='F3R362HRMBMV3OV4WAG601DQQK' where id=8; -update noar ti set b1='F3R362HRMBMV3OV4WAG601DQQK' where id=8; -update noar tt set b2='XERMA9UCH8F1F2P2282VK' where id=8; -update noar ti set b2='XERMA9UCH8F1F2P2282VK' where id=8; -update noar tt set b0='B5CXB4Z1QOTWCHZQ22WV7' where id=9; -update noar ti set b0='B5CXB4Z1QOTWCHZQ22WV7' where id=9; -update noar tt set b1='AUKE2FUDO4ZXJ4JW8MTS8' where id=9; -update noar ti set b1='AUKE2FUDO4ZXJ4JW8MTS8' where id=9; -update noar tt set b2='M9Z4LORON659SNL' where id=9; -update noar ti set b2='M9Z4LORON659SNL' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - b0 tinyblob not null, - b1 mediumblob not null, - b2 text not null -) engine=tokudb; -insert into tt values (1,'','',''); -insert into tt values (2,'','',''); -insert into tt values (3,'','',''); -insert into tt values (4,'','',''); -insert into tt values (5,'','',''); -insert into tt values (6,'','',''); -insert into tt values (7,'','',''); -insert into tt values (8,'','',''); -insert into tt values (9,'','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set b0='58VWJ07B' where id=1; -update noar ti set b0='58VWJ07B' where id=1; -update noar tt set b1='S962AC7' where id=1; -update noar ti set b1='S962AC7' where id=1; -update noar tt set b2='G4SZ7R35GUN3P26A' where id=1; -update noar ti set b2='G4SZ7R35GUN3P26A' where id=1; -update noar tt set b0='ALUHYRRH8HKH4Z51VK0I' where id=2; -update noar ti set b0='ALUHYRRH8HKH4Z51VK0I' where id=2; -update noar tt set b1='M3I11KSUB9' where id=2; -update noar ti set b1='M3I11KSUB9' where id=2; -update noar tt set b2='2T5TKRLXULPZ22T5STNLTUMQHKWEB1E' where id=2; -update noar ti set b2='2T5TKRLXULPZ22T5STNLTUMQHKWEB1E' where id=2; -update noar tt set b0='7CF' where id=3; -update noar ti set b0='7CF' where id=3; -update noar tt set b1='GTRZCS6U26EZX6BCEK9NO73M2' where id=3; -update noar ti set b1='GTRZCS6U26EZX6BCEK9NO73M2' where id=3; -update noar tt set b2='KDE' where id=3; -update noar ti set b2='KDE' where id=3; -update noar tt set b0='GLZV5M1WQFPJ3' where id=4; -update noar ti set b0='GLZV5M1WQFPJ3' where id=4; -update noar tt set b1='2GKJLOHPWK3PEE6' where id=4; -update noar ti set b1='2GKJLOHPWK3PEE6' where id=4; -update noar tt set b2='VCKWGAFKWEOFL1JQ9L' where id=4; -update noar ti set b2='VCKWGAFKWEOFL1JQ9L' where id=4; -update noar tt set b0='AX7RMVA9NQ61X7ZXVDCP2FI6L0PT' where id=5; -update noar ti set b0='AX7RMVA9NQ61X7ZXVDCP2FI6L0PT' where id=5; -update noar tt set b1='IMF0L3S64G6PUKRGFM2' where id=5; -update noar ti set b1='IMF0L3S64G6PUKRGFM2' where id=5; -update noar tt set b2='9LSKI5BR7DH3VQRLPW74OTLS' where id=5; -update noar ti set b2='9LSKI5BR7DH3VQRLPW74OTLS' where id=5; -update noar tt set b0='GQS3EC50U3BVCM6H3H4ZLYKI21C5' where id=6; -update noar ti set b0='GQS3EC50U3BVCM6H3H4ZLYKI21C5' where id=6; -update noar tt set b1='SAIMB8RE' where id=6; -update noar ti set b1='SAIMB8RE' where id=6; -update noar tt set b2='LBJJQ7MRSG8G0F38CDEB' where id=6; -update noar ti set b2='LBJJQ7MRSG8G0F38CDEB' where id=6; -update noar tt set b0='3D9XWMT0JF2Y5H2JLBTLZGP5K05J11' where id=7; -update noar ti set b0='3D9XWMT0JF2Y5H2JLBTLZGP5K05J11' where id=7; -update noar tt set b1='81FU' where id=7; -update noar ti set b1='81FU' where id=7; -update noar tt set b2='218UUTD8T4' where id=7; -update noar ti set b2='218UUTD8T4' where id=7; -update noar tt set b0='2K' where id=8; -update noar ti set b0='2K' where id=8; -update noar tt set b1='B2TWOZWNY6EAVO5KY8' where id=8; -update noar ti set b1='B2TWOZWNY6EAVO5KY8' where id=8; -update noar tt set b2='SPJCRCLHK5IPYSCN8CZR8WGRPD' where id=8; -update noar ti set b2='SPJCRCLHK5IPYSCN8CZR8WGRPD' where id=8; -update noar tt set b0='BYRBSWCWWWYLF5TXB6HHTVNU' where id=9; -update noar ti set b0='BYRBSWCWWWYLF5TXB6HHTVNU' where id=9; -update noar tt set b1='02G6UOLOEICXBBVFFG32U8PJKXKK6BMX' where id=9; -update noar ti set b1='02G6UOLOEICXBBVFFG32U8PJKXKK6BMX' where id=9; -update noar tt set b2='MP2GH63NZ64MDCC6YPBO1549AHVH3' where id=9; -update noar ti set b2='MP2GH63NZ64MDCC6YPBO1549AHVH3' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - b0 tinyblob null, - b1 longblob null, - b2 tinyblob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set b0='WXA7SP1HUDKEAHG00OY' where id=1; -update noar ti set b0='WXA7SP1HUDKEAHG00OY' where id=1; -update noar tt set b1='D4Y89QEGNY7DALJV2CDG' where id=1; -update noar ti set b1='D4Y89QEGNY7DALJV2CDG' where id=1; -update noar tt set b2='86CBXEO2MDCVKW52IWBJBFOE93W1' where id=1; -update noar ti set b2='86CBXEO2MDCVKW52IWBJBFOE93W1' where id=1; -update noar tt set b0='W0PGLR2FOPV8YF' where id=2; -update noar ti set b0='W0PGLR2FOPV8YF' where id=2; -update noar tt set b1='4D2LGR9Y' where id=2; -update noar ti set b1='4D2LGR9Y' where id=2; -update noar tt set b2='U7OYN1T7OI2895OSPWD' where id=2; -update noar ti set b2='U7OYN1T7OI2895OSPWD' where id=2; -update noar tt set b0='HJVNM9XM6PH7IEBZPG08CSM' where id=3; -update noar ti set b0='HJVNM9XM6PH7IEBZPG08CSM' where id=3; -update noar tt set b1='45PYSB58HTPHPWK60B4ORHPVJKVOJ' where id=3; -update noar ti set b1='45PYSB58HTPHPWK60B4ORHPVJKVOJ' where id=3; -update noar tt set b2='PCEJ7C' where id=3; -update noar ti set b2='PCEJ7C' where id=3; -update noar tt set b0='0ZCFY1TD0' where id=4; -update noar ti set b0='0ZCFY1TD0' where id=4; -update noar tt set b1='A5Y7D2VYANTWMF6RNS2DZBWYQ28' where id=4; -update noar ti set b1='A5Y7D2VYANTWMF6RNS2DZBWYQ28' where id=4; -update noar tt set b2='8L6RY6LDAOPWA' where id=4; -update noar ti set b2='8L6RY6LDAOPWA' where id=4; -update noar tt set b0='8OO5F3EUNAG0XNIWH36Q6O75O7A7' where id=5; -update noar ti set b0='8OO5F3EUNAG0XNIWH36Q6O75O7A7' where id=5; -update noar tt set b1='OLX5GHAATYOGGTF0PE2' where id=5; -update noar ti set b1='OLX5GHAATYOGGTF0PE2' where id=5; -update noar tt set b2='PQ7HLR2YXZ6BYEJF63CE' where id=5; -update noar ti set b2='PQ7HLR2YXZ6BYEJF63CE' where id=5; -update noar tt set b0='6H5S8G6F0F1F3W9PBUD8I0U' where id=6; -update noar ti set b0='6H5S8G6F0F1F3W9PBUD8I0U' where id=6; -update noar tt set b1='3W70ZQE2YSU' where id=6; -update noar ti set b1='3W70ZQE2YSU' where id=6; -update noar tt set b2='4' where id=6; -update noar ti set b2='4' where id=6; -update noar tt set b0='F93UERCGUA5H31QTL' where id=7; -update noar ti set b0='F93UERCGUA5H31QTL' where id=7; -update noar tt set b1='GMNM73XZLCJIF66AM6GZ14C6GX' where id=7; -update noar ti set b1='GMNM73XZLCJIF66AM6GZ14C6GX' where id=7; -update noar tt set b2='4OLM1P4' where id=7; -update noar ti set b2='4OLM1P4' where id=7; -update noar tt set b0='MW7YIKK8E2B78OGCH8Q8CQRMOQYG' where id=8; -update noar ti set b0='MW7YIKK8E2B78OGCH8Q8CQRMOQYG' where id=8; -update noar tt set b1='F84QH8AIP9Y83THER' where id=8; -update noar ti set b1='F84QH8AIP9Y83THER' where id=8; -update noar tt set b2='WDLC7KHUM5KDASBWVT7HTHT' where id=8; -update noar ti set b2='WDLC7KHUM5KDASBWVT7HTHT' where id=8; -update noar tt set b0='A6F58NLMH1' where id=9; -update noar ti set b0='A6F58NLMH1' where id=9; -update noar tt set b1='QW6F011ZNG4MLIQ53PHXSCHVEPLSDG5' where id=9; -update noar ti set b1='QW6F011ZNG4MLIQ53PHXSCHVEPLSDG5' where id=9; -update noar tt set b2='U89X7VALQUXVDMCJ0F3HV2D' where id=9; -update noar ti set b2='U89X7VALQUXVDMCJ0F3HV2D' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - b0 tinyblob not null, - b1 longblob not null, - b2 tinyblob not null -) engine=tokudb; -insert into tt values (1,'','',''); -insert into tt values (2,'','',''); -insert into tt values (3,'','',''); -insert into tt values (4,'','',''); -insert into tt values (5,'','',''); -insert into tt values (6,'','',''); -insert into tt values (7,'','',''); -insert into tt values (8,'','',''); -insert into tt values (9,'','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set b0='166MH3AEDCXCP3O7GRTTQZRO6BJKU19' where id=1; -update noar ti set b0='166MH3AEDCXCP3O7GRTTQZRO6BJKU19' where id=1; -update noar tt set b1='3C396EJJX7P' where id=1; -update noar ti set b1='3C396EJJX7P' where id=1; -update noar tt set b2='78AI3H1XRXU4' where id=1; -update noar ti set b2='78AI3H1XRXU4' where id=1; -update noar tt set b0='7QA9XB7YAEA05MCW144SI' where id=2; -update noar ti set b0='7QA9XB7YAEA05MCW144SI' where id=2; -update noar tt set b1='5OJIX' where id=2; -update noar ti set b1='5OJIX' where id=2; -update noar tt set b2='9RW4R36P4ASMH3S' where id=2; -update noar ti set b2='9RW4R36P4ASMH3S' where id=2; -update noar tt set b0='9' where id=3; -update noar ti set b0='9' where id=3; -update noar tt set b1='M0IC' where id=3; -update noar ti set b1='M0IC' where id=3; -update noar tt set b2='2SHOH1OK9' where id=3; -update noar ti set b2='2SHOH1OK9' where id=3; -update noar tt set b0='LQXJ0MK7LTPFDU8ZUG24JK6D' where id=4; -update noar ti set b0='LQXJ0MK7LTPFDU8ZUG24JK6D' where id=4; -update noar tt set b1='9US7U8O3RXETUBRH4W' where id=4; -update noar ti set b1='9US7U8O3RXETUBRH4W' where id=4; -update noar tt set b2='OJXDY' where id=4; -update noar ti set b2='OJXDY' where id=4; -update noar tt set b0='N' where id=5; -update noar ti set b0='N' where id=5; -update noar tt set b1='M7N7HKM5T05ZIUCV9BER' where id=5; -update noar ti set b1='M7N7HKM5T05ZIUCV9BER' where id=5; -update noar tt set b2='53' where id=5; -update noar ti set b2='53' where id=5; -update noar tt set b0='ELN3RS21Y94U3P6O9L81G7ANC' where id=6; -update noar ti set b0='ELN3RS21Y94U3P6O9L81G7ANC' where id=6; -update noar tt set b1='27XQXUH7BQNE' where id=6; -update noar ti set b1='27XQXUH7BQNE' where id=6; -update noar tt set b2='1' where id=6; -update noar ti set b2='1' where id=6; -update noar tt set b0='NLML8' where id=7; -update noar ti set b0='NLML8' where id=7; -update noar tt set b1='JJIITAXW2HMSZ7L5UXR1QRR' where id=7; -update noar ti set b1='JJIITAXW2HMSZ7L5UXR1QRR' where id=7; -update noar tt set b2='TEWE7JN90' where id=7; -update noar ti set b2='TEWE7JN90' where id=7; -update noar tt set b0='U0AU7M00Z65JGLYM41VEC8V23V' where id=8; -update noar ti set b0='U0AU7M00Z65JGLYM41VEC8V23V' where id=8; -update noar tt set b1='QK' where id=8; -update noar ti set b1='QK' where id=8; -update noar tt set b2='TU6HO1ZWTHP0SQQOD7UKZK047' where id=8; -update noar ti set b2='TU6HO1ZWTHP0SQQOD7UKZK047' where id=8; -update noar tt set b0='YQ245XZBQLDXKCR' where id=9; -update noar ti set b0='YQ245XZBQLDXKCR' where id=9; -update noar tt set b1='VYJ3P7V5BWD6P908EKQEAQRS32HYB' where id=9; -update noar ti set b1='VYJ3P7V5BWD6P908EKQEAQRS32HYB' where id=9; -update noar tt set b2='OW6OAAE6YJMQ9QID' where id=9; -update noar ti set b2='OW6OAAE6YJMQ9QID' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - b0 tinyblob null, - b1 longblob null, - b2 blob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set b0='3FYCUHVXJUWWR' where id=1; -update noar ti set b0='3FYCUHVXJUWWR' where id=1; -update noar tt set b1='OLSES8XDHIV' where id=1; -update noar ti set b1='OLSES8XDHIV' where id=1; -update noar tt set b2='T0KK244ZUAM9X84VJTUWY5IMH4' where id=1; -update noar ti set b2='T0KK244ZUAM9X84VJTUWY5IMH4' where id=1; -update noar tt set b0='A1SON62ULFVY1P' where id=2; -update noar ti set b0='A1SON62ULFVY1P' where id=2; -update noar tt set b1='BTQW520G58GQ1KN15C6GWPJ4DVH7W' where id=2; -update noar ti set b1='BTQW520G58GQ1KN15C6GWPJ4DVH7W' where id=2; -update noar tt set b2='0B' where id=2; -update noar ti set b2='0B' where id=2; -update noar tt set b0='5M996XG24LKZAC4L90IUW9' where id=3; -update noar ti set b0='5M996XG24LKZAC4L90IUW9' where id=3; -update noar tt set b1='QRJX14P243BP5E9WIAC' where id=3; -update noar ti set b1='QRJX14P243BP5E9WIAC' where id=3; -update noar tt set b2='QFXCMAXUBZTY6VK8GR3OXDJAPLE3RRP3' where id=3; -update noar ti set b2='QFXCMAXUBZTY6VK8GR3OXDJAPLE3RRP3' where id=3; -update noar tt set b0='Q8QFM1L5UOL36CL' where id=4; -update noar ti set b0='Q8QFM1L5UOL36CL' where id=4; -update noar tt set b1='SU6ADSJIBUKCP72OO44YJ' where id=4; -update noar ti set b1='SU6ADSJIBUKCP72OO44YJ' where id=4; -update noar tt set b2='T5BF45JTPVXPC2WQ4YUPB' where id=4; -update noar ti set b2='T5BF45JTPVXPC2WQ4YUPB' where id=4; -update noar tt set b0='OLQ2KW8KPS8X' where id=5; -update noar ti set b0='OLQ2KW8KPS8X' where id=5; -update noar tt set b1='LJPWC23XJT667T09MOI96' where id=5; -update noar ti set b1='LJPWC23XJT667T09MOI96' where id=5; -update noar tt set b2='FUU3MAMEX1QB9SBEO' where id=5; -update noar ti set b2='FUU3MAMEX1QB9SBEO' where id=5; -update noar tt set b0='84' where id=6; -update noar ti set b0='84' where id=6; -update noar tt set b1='O9SRSGIUITLXUFJIULAGGTVIBP' where id=6; -update noar ti set b1='O9SRSGIUITLXUFJIULAGGTVIBP' where id=6; -update noar tt set b2='TY7RHZI1PEJIP5D4S' where id=6; -update noar ti set b2='TY7RHZI1PEJIP5D4S' where id=6; -update noar tt set b0='BG6MCPR' where id=7; -update noar ti set b0='BG6MCPR' where id=7; -update noar tt set b1='GURK96DSFMDT5CR' where id=7; -update noar ti set b1='GURK96DSFMDT5CR' where id=7; -update noar tt set b2='M3D4NOFLZK3XF8' where id=7; -update noar ti set b2='M3D4NOFLZK3XF8' where id=7; -update noar tt set b0='6RGFQ9C5PC' where id=8; -update noar ti set b0='6RGFQ9C5PC' where id=8; -update noar tt set b1='TCC0934YN3IWLMSUB3' where id=8; -update noar ti set b1='TCC0934YN3IWLMSUB3' where id=8; -update noar tt set b2='AQ3' where id=8; -update noar ti set b2='AQ3' where id=8; -update noar tt set b0='PEM68STZNX358JKECE712MM' where id=9; -update noar ti set b0='PEM68STZNX358JKECE712MM' where id=9; -update noar tt set b1='IXNHU' where id=9; -update noar ti set b1='IXNHU' where id=9; -update noar tt set b2='EV6BAVDVJGXC8TN5XMG' where id=9; -update noar ti set b2='EV6BAVDVJGXC8TN5XMG' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - b0 tinyblob not null, - b1 longblob not null, - b2 blob not null -) engine=tokudb; -insert into tt values (1,'','',''); -insert into tt values (2,'','',''); -insert into tt values (3,'','',''); -insert into tt values (4,'','',''); -insert into tt values (5,'','',''); -insert into tt values (6,'','',''); -insert into tt values (7,'','',''); -insert into tt values (8,'','',''); -insert into tt values (9,'','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set b0='SH93XMF3AHVZ4S' where id=1; -update noar ti set b0='SH93XMF3AHVZ4S' where id=1; -update noar tt set b1='7IU3NH' where id=1; -update noar ti set b1='7IU3NH' where id=1; -update noar tt set b2='9PHIRPDK2' where id=1; -update noar ti set b2='9PHIRPDK2' where id=1; -update noar tt set b0='8ND8GZP1VYMHMKLEH72Y6Z' where id=2; -update noar ti set b0='8ND8GZP1VYMHMKLEH72Y6Z' where id=2; -update noar tt set b1='5Q7RKUTRI7SXBOV7Y9HCSURX3D' where id=2; -update noar ti set b1='5Q7RKUTRI7SXBOV7Y9HCSURX3D' where id=2; -update noar tt set b2='9V8K7PXD4SK4MRED6C48D612600' where id=2; -update noar ti set b2='9V8K7PXD4SK4MRED6C48D612600' where id=2; -update noar tt set b0='3H23IVIK467' where id=3; -update noar ti set b0='3H23IVIK467' where id=3; -update noar tt set b1='S5P8VXGG5MPIAP' where id=3; -update noar ti set b1='S5P8VXGG5MPIAP' where id=3; -update noar tt set b2='AHBTX5BTTYU5DXSP7PVNPJQ7AG' where id=3; -update noar ti set b2='AHBTX5BTTYU5DXSP7PVNPJQ7AG' where id=3; -update noar tt set b0='AANIZ1153DQ3IYBONFHYGOINVXRG' where id=4; -update noar ti set b0='AANIZ1153DQ3IYBONFHYGOINVXRG' where id=4; -update noar tt set b1='LGHOP7DNLW274' where id=4; -update noar ti set b1='LGHOP7DNLW274' where id=4; -update noar tt set b2='2AW8MQLKX9V95C4KW6Y1JB2O' where id=4; -update noar ti set b2='2AW8MQLKX9V95C4KW6Y1JB2O' where id=4; -update noar tt set b0='EPOP' where id=5; -update noar ti set b0='EPOP' where id=5; -update noar tt set b1='9G76VFO821Y2W0MVN48RCBB5V3TNB7M0' where id=5; -update noar ti set b1='9G76VFO821Y2W0MVN48RCBB5V3TNB7M0' where id=5; -update noar tt set b2='L0S8WT13TWB' where id=5; -update noar ti set b2='L0S8WT13TWB' where id=5; -update noar tt set b0='IYX9EI5N6YZJT0YU7BGDTL23JXEB9D3Y' where id=6; -update noar ti set b0='IYX9EI5N6YZJT0YU7BGDTL23JXEB9D3Y' where id=6; -update noar tt set b1='G08NUJECYUQTQZHQWMPPG0GUZWTBD7MO' where id=6; -update noar ti set b1='G08NUJECYUQTQZHQWMPPG0GUZWTBD7MO' where id=6; -update noar tt set b2='YAUH1BUM' where id=6; -update noar ti set b2='YAUH1BUM' where id=6; -update noar tt set b0='IKNVP7LCTZSZ1ROPVIP4U' where id=7; -update noar ti set b0='IKNVP7LCTZSZ1ROPVIP4U' where id=7; -update noar tt set b1='GOA0QNQF2M4' where id=7; -update noar ti set b1='GOA0QNQF2M4' where id=7; -update noar tt set b2='KJU92DVMH5' where id=7; -update noar ti set b2='KJU92DVMH5' where id=7; -update noar tt set b0='9R6573CAA5Q0W6PHM39M3W7O64U2E' where id=8; -update noar ti set b0='9R6573CAA5Q0W6PHM39M3W7O64U2E' where id=8; -update noar tt set b1='OP5NZWOTR4VV80RFSWGGK2MA' where id=8; -update noar ti set b1='OP5NZWOTR4VV80RFSWGGK2MA' where id=8; -update noar tt set b2='TN' where id=8; -update noar ti set b2='TN' where id=8; -update noar tt set b0='LSHJ5C0ZL' where id=9; -update noar ti set b0='LSHJ5C0ZL' where id=9; -update noar tt set b1='7SQA3937P0D8JU9V' where id=9; -update noar ti set b1='7SQA3937P0D8JU9V' where id=9; -update noar tt set b2='VKNSLMEA7' where id=9; -update noar ti set b2='VKNSLMEA7' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - b0 tinyblob null, - b1 longblob null, - b2 mediumblob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set b0='OK7AIIPW4IDXD1SD' where id=1; -update noar ti set b0='OK7AIIPW4IDXD1SD' where id=1; -update noar tt set b1='VWHFAOEC53GBBJDKAIMI3QSJU' where id=1; -update noar ti set b1='VWHFAOEC53GBBJDKAIMI3QSJU' where id=1; -update noar tt set b2='PKHPS' where id=1; -update noar ti set b2='PKHPS' where id=1; -update noar tt set b0='DTYNVT00GFQEYVVJPR2HMO2L8B' where id=2; -update noar ti set b0='DTYNVT00GFQEYVVJPR2HMO2L8B' where id=2; -update noar tt set b1='54KMF19CSD9K85686IE6F' where id=2; -update noar ti set b1='54KMF19CSD9K85686IE6F' where id=2; -update noar tt set b2='Z604T31AA' where id=2; -update noar ti set b2='Z604T31AA' where id=2; -update noar tt set b0='14KAF2Q16FY8FHA7M5GM36WHGONDJT4' where id=3; -update noar ti set b0='14KAF2Q16FY8FHA7M5GM36WHGONDJT4' where id=3; -update noar tt set b1='FJH98KFN9U5FLXWQ5U6LUYDE6B' where id=3; -update noar ti set b1='FJH98KFN9U5FLXWQ5U6LUYDE6B' where id=3; -update noar tt set b2='9' where id=3; -update noar ti set b2='9' where id=3; -update noar tt set b0='YE6NHHUSRJPXSX' where id=4; -update noar ti set b0='YE6NHHUSRJPXSX' where id=4; -update noar tt set b1='BO6YJZVDZGI8NXT0G' where id=4; -update noar ti set b1='BO6YJZVDZGI8NXT0G' where id=4; -update noar tt set b2='7Z' where id=4; -update noar ti set b2='7Z' where id=4; -update noar tt set b0='YTKGJI09L4O4GM6RB84YODFW9N' where id=5; -update noar ti set b0='YTKGJI09L4O4GM6RB84YODFW9N' where id=5; -update noar tt set b1='8DYMBLB' where id=5; -update noar ti set b1='8DYMBLB' where id=5; -update noar tt set b2='FR76TS6RN' where id=5; -update noar ti set b2='FR76TS6RN' where id=5; -update noar tt set b0='XM9L24AZEQNS9U6H' where id=6; -update noar ti set b0='XM9L24AZEQNS9U6H' where id=6; -update noar tt set b1='WT' where id=6; -update noar ti set b1='WT' where id=6; -update noar tt set b2='ZI' where id=6; -update noar ti set b2='ZI' where id=6; -update noar tt set b0='ONF0G' where id=7; -update noar ti set b0='ONF0G' where id=7; -update noar tt set b1='0G0G8QIEQ' where id=7; -update noar ti set b1='0G0G8QIEQ' where id=7; -update noar tt set b2='XOZIJ2F4M1E0MT3YOBQFWGR' where id=7; -update noar ti set b2='XOZIJ2F4M1E0MT3YOBQFWGR' where id=7; -update noar tt set b0='LYMRU' where id=8; -update noar ti set b0='LYMRU' where id=8; -update noar tt set b1='KT4J557BTJVDLMO1E7P' where id=8; -update noar ti set b1='KT4J557BTJVDLMO1E7P' where id=8; -update noar tt set b2='CTJ6JJB05GO' where id=8; -update noar ti set b2='CTJ6JJB05GO' where id=8; -update noar tt set b0='HQV4GGXN4BML' where id=9; -update noar ti set b0='HQV4GGXN4BML' where id=9; -update noar tt set b1='B98RQD4K' where id=9; -update noar ti set b1='B98RQD4K' where id=9; -update noar tt set b2='A4KVWSW2BCEDPL3DJ95' where id=9; -update noar ti set b2='A4KVWSW2BCEDPL3DJ95' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - b0 tinyblob not null, - b1 longblob not null, - b2 mediumblob not null -) engine=tokudb; -insert into tt values (1,'','',''); -insert into tt values (2,'','',''); -insert into tt values (3,'','',''); -insert into tt values (4,'','',''); -insert into tt values (5,'','',''); -insert into tt values (6,'','',''); -insert into tt values (7,'','',''); -insert into tt values (8,'','',''); -insert into tt values (9,'','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set b0='QRJR3AY1WUSN' where id=1; -update noar ti set b0='QRJR3AY1WUSN' where id=1; -update noar tt set b1='YYB7SZSQ8E06W' where id=1; -update noar ti set b1='YYB7SZSQ8E06W' where id=1; -update noar tt set b2='O' where id=1; -update noar ti set b2='O' where id=1; -update noar tt set b0='GN441L3IV50M4DPFX2' where id=2; -update noar ti set b0='GN441L3IV50M4DPFX2' where id=2; -update noar tt set b1='QZA8UWIM1PW750X8FW' where id=2; -update noar ti set b1='QZA8UWIM1PW750X8FW' where id=2; -update noar tt set b2='IWZEUOSSFDT0U1NFX5VDUWMCH' where id=2; -update noar ti set b2='IWZEUOSSFDT0U1NFX5VDUWMCH' where id=2; -update noar tt set b0='VO3Z8QO804BWD3DLVPPE8SWKG1LD' where id=3; -update noar ti set b0='VO3Z8QO804BWD3DLVPPE8SWKG1LD' where id=3; -update noar tt set b1='L5' where id=3; -update noar ti set b1='L5' where id=3; -update noar tt set b2='PDGK50QTEHWYYKN68X78YQ' where id=3; -update noar ti set b2='PDGK50QTEHWYYKN68X78YQ' where id=3; -update noar tt set b0='HLCPXHF' where id=4; -update noar ti set b0='HLCPXHF' where id=4; -update noar tt set b1='HS17C8BFK9CSYKJ5KYR' where id=4; -update noar ti set b1='HS17C8BFK9CSYKJ5KYR' where id=4; -update noar tt set b2='YPPEDN0YAO4SB2' where id=4; -update noar ti set b2='YPPEDN0YAO4SB2' where id=4; -update noar tt set b0='2UGGI' where id=5; -update noar ti set b0='2UGGI' where id=5; -update noar tt set b1='7F4UBQ' where id=5; -update noar ti set b1='7F4UBQ' where id=5; -update noar tt set b2='3R' where id=5; -update noar ti set b2='3R' where id=5; -update noar tt set b0='KP2W7G86NB3QDVVXO' where id=6; -update noar ti set b0='KP2W7G86NB3QDVVXO' where id=6; -update noar tt set b1='AXZ9VG63F' where id=6; -update noar ti set b1='AXZ9VG63F' where id=6; -update noar tt set b2='04SEY1G66F73U0Z' where id=6; -update noar ti set b2='04SEY1G66F73U0Z' where id=6; -update noar tt set b0='2K56ILPAM9IB' where id=7; -update noar ti set b0='2K56ILPAM9IB' where id=7; -update noar tt set b1='ZECBKQNED5XGPBJETYT6IU' where id=7; -update noar ti set b1='ZECBKQNED5XGPBJETYT6IU' where id=7; -update noar tt set b2='N7HH5DJIWBIXSMUPTUO9D14BIOEEZB1G' where id=7; -update noar ti set b2='N7HH5DJIWBIXSMUPTUO9D14BIOEEZB1G' where id=7; -update noar tt set b0='D31RONWAQF995FZ5L' where id=8; -update noar ti set b0='D31RONWAQF995FZ5L' where id=8; -update noar tt set b1='XBSL1F8PXC2RX2Z0U9' where id=8; -update noar ti set b1='XBSL1F8PXC2RX2Z0U9' where id=8; -update noar tt set b2='Q0ECZR5CS6JDFVJR85E6NNUXB0OVQ' where id=8; -update noar ti set b2='Q0ECZR5CS6JDFVJR85E6NNUXB0OVQ' where id=8; -update noar tt set b0='0K9' where id=9; -update noar ti set b0='0K9' where id=9; -update noar tt set b1='QRR36PG66K4G8HLBCC14B62' where id=9; -update noar ti set b1='QRR36PG66K4G8HLBCC14B62' where id=9; -update noar tt set b2='PVTZ8AN9T0BI3GX6YVWC' where id=9; -update noar ti set b2='PVTZ8AN9T0BI3GX6YVWC' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - b0 tinyblob null, - b1 longblob null, - b2 longblob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set b0='V4EXPNC4DXHNG' where id=1; -update noar ti set b0='V4EXPNC4DXHNG' where id=1; -update noar tt set b1='SVZ5L6R' where id=1; -update noar ti set b1='SVZ5L6R' where id=1; -update noar tt set b2='77UESANOA857QU' where id=1; -update noar ti set b2='77UESANOA857QU' where id=1; -update noar tt set b0='0R5' where id=2; -update noar ti set b0='0R5' where id=2; -update noar tt set b1='Z87UOK84DW2JXSH02JVOA1K1SDGH34UD' where id=2; -update noar ti set b1='Z87UOK84DW2JXSH02JVOA1K1SDGH34UD' where id=2; -update noar tt set b2='AHQRBXA0L50JMFM96SR6TRBGN45YL' where id=2; -update noar ti set b2='AHQRBXA0L50JMFM96SR6TRBGN45YL' where id=2; -update noar tt set b0='U6BQMY1WGUB4S' where id=3; -update noar ti set b0='U6BQMY1WGUB4S' where id=3; -update noar tt set b1='64S7596QB0D0XEML' where id=3; -update noar ti set b1='64S7596QB0D0XEML' where id=3; -update noar tt set b2='BQ5F' where id=3; -update noar ti set b2='BQ5F' where id=3; -update noar tt set b0='Q3QASTAZZYK9QNAVIPGHAJYW7' where id=4; -update noar ti set b0='Q3QASTAZZYK9QNAVIPGHAJYW7' where id=4; -update noar tt set b1='J0HWO627U6P8HMRESVK6' where id=4; -update noar ti set b1='J0HWO627U6P8HMRESVK6' where id=4; -update noar tt set b2='O0ENHDV' where id=4; -update noar ti set b2='O0ENHDV' where id=4; -update noar tt set b0='C893AUEKROVS5' where id=5; -update noar ti set b0='C893AUEKROVS5' where id=5; -update noar tt set b1='6NR' where id=5; -update noar ti set b1='6NR' where id=5; -update noar tt set b2='8QC5NTX4C8SWCKT0P5ZFY44AN' where id=5; -update noar ti set b2='8QC5NTX4C8SWCKT0P5ZFY44AN' where id=5; -update noar tt set b0='KE1TGBH7FLN3QT7PWW' where id=6; -update noar ti set b0='KE1TGBH7FLN3QT7PWW' where id=6; -update noar tt set b1='64MWOKJI7' where id=6; -update noar ti set b1='64MWOKJI7' where id=6; -update noar tt set b2='VPZP0UTUG5PCLLHYJ4ZKINX6KN3D' where id=6; -update noar ti set b2='VPZP0UTUG5PCLLHYJ4ZKINX6KN3D' where id=6; -update noar tt set b0='5QMP3U3IAZR2M4BIN3K0QOZEG' where id=7; -update noar ti set b0='5QMP3U3IAZR2M4BIN3K0QOZEG' where id=7; -update noar tt set b1='78RKVS7SYP98EC4UI01' where id=7; -update noar ti set b1='78RKVS7SYP98EC4UI01' where id=7; -update noar tt set b2='3ZPI3WITUTNZ0AFXS2OZ' where id=7; -update noar ti set b2='3ZPI3WITUTNZ0AFXS2OZ' where id=7; -update noar tt set b0='017JE1G' where id=8; -update noar ti set b0='017JE1G' where id=8; -update noar tt set b1='60S' where id=8; -update noar ti set b1='60S' where id=8; -update noar tt set b2='UBDB3PKH5VYSU3LUKC7ABXR3JY3XFG' where id=8; -update noar ti set b2='UBDB3PKH5VYSU3LUKC7ABXR3JY3XFG' where id=8; -update noar tt set b0='0GAV03D' where id=9; -update noar ti set b0='0GAV03D' where id=9; -update noar tt set b1='WEA46YHICT9JRIJL' where id=9; -update noar ti set b1='WEA46YHICT9JRIJL' where id=9; -update noar tt set b2='3LRQ4CJIQIR7NHV' where id=9; -update noar ti set b2='3LRQ4CJIQIR7NHV' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - b0 tinyblob not null, - b1 longblob not null, - b2 longblob not null -) engine=tokudb; -insert into tt values (1,'','',''); -insert into tt values (2,'','',''); -insert into tt values (3,'','',''); -insert into tt values (4,'','',''); -insert into tt values (5,'','',''); -insert into tt values (6,'','',''); -insert into tt values (7,'','',''); -insert into tt values (8,'','',''); -insert into tt values (9,'','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set b0='SIUOUQMQ94GMYUWWA4LL2JVURA2' where id=1; -update noar ti set b0='SIUOUQMQ94GMYUWWA4LL2JVURA2' where id=1; -update noar tt set b1='JIBD' where id=1; -update noar ti set b1='JIBD' where id=1; -update noar tt set b2='USWPA1J2AM9YOJHS65S' where id=1; -update noar ti set b2='USWPA1J2AM9YOJHS65S' where id=1; -update noar tt set b0='M4XC5M2VEZAR5SZZYWQ1MV78FGDEK' where id=2; -update noar ti set b0='M4XC5M2VEZAR5SZZYWQ1MV78FGDEK' where id=2; -update noar tt set b1='KA' where id=2; -update noar ti set b1='KA' where id=2; -update noar tt set b2='IG09OLU5DESH7L8RR29IG201DLWLMS' where id=2; -update noar ti set b2='IG09OLU5DESH7L8RR29IG201DLWLMS' where id=2; -update noar tt set b0='L9EDIO9IXIW8WZYQYVVW04N7DUY6' where id=3; -update noar ti set b0='L9EDIO9IXIW8WZYQYVVW04N7DUY6' where id=3; -update noar tt set b1='VJ' where id=3; -update noar ti set b1='VJ' where id=3; -update noar tt set b2='7P9P6E9B98VKB' where id=3; -update noar ti set b2='7P9P6E9B98VKB' where id=3; -update noar tt set b0='13' where id=4; -update noar ti set b0='13' where id=4; -update noar tt set b1='CHQUBL8UKBCBQE14D2JTPVXW33VKIOK' where id=4; -update noar ti set b1='CHQUBL8UKBCBQE14D2JTPVXW33VKIOK' where id=4; -update noar tt set b2='3F0OTCG0ERAZ9VLSG6JW6' where id=4; -update noar ti set b2='3F0OTCG0ERAZ9VLSG6JW6' where id=4; -update noar tt set b0='HH7GW75U' where id=5; -update noar ti set b0='HH7GW75U' where id=5; -update noar tt set b1='CLBXJJL209T9T1LE2UNZA' where id=5; -update noar ti set b1='CLBXJJL209T9T1LE2UNZA' where id=5; -update noar tt set b2='TIAVVOU3' where id=5; -update noar ti set b2='TIAVVOU3' where id=5; -update noar tt set b0='V8HDFCXHUJD8O8UJDG8UP89D2TR' where id=6; -update noar ti set b0='V8HDFCXHUJD8O8UJDG8UP89D2TR' where id=6; -update noar tt set b1='QA' where id=6; -update noar ti set b1='QA' where id=6; -update noar tt set b2='BQCG46E0D7GY8X7YES1OJ48SNJ4' where id=6; -update noar ti set b2='BQCG46E0D7GY8X7YES1OJ48SNJ4' where id=6; -update noar tt set b0='9FK5ZZV' where id=7; -update noar ti set b0='9FK5ZZV' where id=7; -update noar tt set b1='39GP3USPT5CI9YIV6LPI0D7PK0D2' where id=7; -update noar ti set b1='39GP3USPT5CI9YIV6LPI0D7PK0D2' where id=7; -update noar tt set b2='9C4C2R89T' where id=7; -update noar ti set b2='9C4C2R89T' where id=7; -update noar tt set b0='DJN0GRYNI07R99NWYRROPCNRFJMV1R' where id=8; -update noar ti set b0='DJN0GRYNI07R99NWYRROPCNRFJMV1R' where id=8; -update noar tt set b1='B9T7EZRIPV7SDL54BGW8M' where id=8; -update noar ti set b1='B9T7EZRIPV7SDL54BGW8M' where id=8; -update noar tt set b2='TAHG3DP0TNP9D35T3OG115246K9W27F' where id=8; -update noar ti set b2='TAHG3DP0TNP9D35T3OG115246K9W27F' where id=8; -update noar tt set b0='4GXJ5D2X27XZ6X0PV2LGURBYLG4XC1ZI' where id=9; -update noar ti set b0='4GXJ5D2X27XZ6X0PV2LGURBYLG4XC1ZI' where id=9; -update noar tt set b1='B6IZ1GE2X9LG17DRKQNA7RYZCT3EK4D5' where id=9; -update noar ti set b1='B6IZ1GE2X9LG17DRKQNA7RYZCT3EK4D5' where id=9; -update noar tt set b2='QHLK2DOD9AQQ0C' where id=9; -update noar ti set b2='QHLK2DOD9AQQ0C' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - b0 tinyblob null, - b1 longblob null, - b2 text null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set b0='TPJ3V1L' where id=1; -update noar ti set b0='TPJ3V1L' where id=1; -update noar tt set b1='LYLO3Q3638DJJYPSR9UH5X' where id=1; -update noar ti set b1='LYLO3Q3638DJJYPSR9UH5X' where id=1; -update noar tt set b2='HUF' where id=1; -update noar ti set b2='HUF' where id=1; -update noar tt set b0='NWU3N76SC4U0GPPMM43G5FIZ' where id=2; -update noar ti set b0='NWU3N76SC4U0GPPMM43G5FIZ' where id=2; -update noar tt set b1='B7GTI3IWHD1NRWZ29W2BQDP6F62OYR' where id=2; -update noar ti set b1='B7GTI3IWHD1NRWZ29W2BQDP6F62OYR' where id=2; -update noar tt set b2='FMQXSFXA4IH54Y' where id=2; -update noar ti set b2='FMQXSFXA4IH54Y' where id=2; -update noar tt set b0='UPDP71UGIPBOPC5YCH0M1DPEW4' where id=3; -update noar ti set b0='UPDP71UGIPBOPC5YCH0M1DPEW4' where id=3; -update noar tt set b1='9408YTEZ8T663GTS2QQX4746EK5J1F1S' where id=3; -update noar ti set b1='9408YTEZ8T663GTS2QQX4746EK5J1F1S' where id=3; -update noar tt set b2='7GUW9SK72J533N5FXC1K8LNULNVTICU' where id=3; -update noar ti set b2='7GUW9SK72J533N5FXC1K8LNULNVTICU' where id=3; -update noar tt set b0='5ZSOS8M4RL1XWQ8HY' where id=4; -update noar ti set b0='5ZSOS8M4RL1XWQ8HY' where id=4; -update noar tt set b1='X5Z5' where id=4; -update noar ti set b1='X5Z5' where id=4; -update noar tt set b2='LNRQ93XDBJDYQFXVO2RJ37H5HNMHVEJ' where id=4; -update noar ti set b2='LNRQ93XDBJDYQFXVO2RJ37H5HNMHVEJ' where id=4; -update noar tt set b0='94C2GL4YNGAASVN92IT2NW0QQP2RI' where id=5; -update noar ti set b0='94C2GL4YNGAASVN92IT2NW0QQP2RI' where id=5; -update noar tt set b1='X6ITDE7ABH53PF' where id=5; -update noar ti set b1='X6ITDE7ABH53PF' where id=5; -update noar tt set b2='W' where id=5; -update noar ti set b2='W' where id=5; -update noar tt set b0='CEG3XGBX6RQ7B1FENR3' where id=6; -update noar ti set b0='CEG3XGBX6RQ7B1FENR3' where id=6; -update noar tt set b1='CO4D27' where id=6; -update noar ti set b1='CO4D27' where id=6; -update noar tt set b2='DOIM41UC9' where id=6; -update noar ti set b2='DOIM41UC9' where id=6; -update noar tt set b0='0WADZ1INY29EM4NRYZQ3W5BSH9' where id=7; -update noar ti set b0='0WADZ1INY29EM4NRYZQ3W5BSH9' where id=7; -update noar tt set b1='BLV10XRZ11JW6GKD9PT2095822N8UKL' where id=7; -update noar ti set b1='BLV10XRZ11JW6GKD9PT2095822N8UKL' where id=7; -update noar tt set b2='XL0N1RL4UGLEEI4IMXOK0Q9CM8RD34W' where id=7; -update noar ti set b2='XL0N1RL4UGLEEI4IMXOK0Q9CM8RD34W' where id=7; -update noar tt set b0='QBL41UGAVZR93301XC' where id=8; -update noar ti set b0='QBL41UGAVZR93301XC' where id=8; -update noar tt set b1='LDHXR' where id=8; -update noar ti set b1='LDHXR' where id=8; -update noar tt set b2='N2QE8D3GV' where id=8; -update noar ti set b2='N2QE8D3GV' where id=8; -update noar tt set b0='9R10GK0V2OS1P0R' where id=9; -update noar ti set b0='9R10GK0V2OS1P0R' where id=9; -update noar tt set b1='MWZRTKITWAU26FG' where id=9; -update noar ti set b1='MWZRTKITWAU26FG' where id=9; -update noar tt set b2='JNN6LED3DUMX5MINF94PUSA2X8BISZ' where id=9; -update noar ti set b2='JNN6LED3DUMX5MINF94PUSA2X8BISZ' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - b0 tinyblob not null, - b1 longblob not null, - b2 text not null -) engine=tokudb; -insert into tt values (1,'','',''); -insert into tt values (2,'','',''); -insert into tt values (3,'','',''); -insert into tt values (4,'','',''); -insert into tt values (5,'','',''); -insert into tt values (6,'','',''); -insert into tt values (7,'','',''); -insert into tt values (8,'','',''); -insert into tt values (9,'','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set b0='SY45AWJB48MZHC43VI5DW' where id=1; -update noar ti set b0='SY45AWJB48MZHC43VI5DW' where id=1; -update noar tt set b1='96H' where id=1; -update noar ti set b1='96H' where id=1; -update noar tt set b2='1689MM2JZTPDAE8MNJY0EGRDK4' where id=1; -update noar ti set b2='1689MM2JZTPDAE8MNJY0EGRDK4' where id=1; -update noar tt set b0='C0O19W54H7X2EO0PJCIKC7' where id=2; -update noar ti set b0='C0O19W54H7X2EO0PJCIKC7' where id=2; -update noar tt set b1='JZBUGA4LZ4A60UZLUY1FFL8HROP3WUTX' where id=2; -update noar ti set b1='JZBUGA4LZ4A60UZLUY1FFL8HROP3WUTX' where id=2; -update noar tt set b2='WHY8VQENSVNTT3QEBSP' where id=2; -update noar ti set b2='WHY8VQENSVNTT3QEBSP' where id=2; -update noar tt set b0='TJ1O' where id=3; -update noar ti set b0='TJ1O' where id=3; -update noar tt set b1='4W0PA0WW' where id=3; -update noar ti set b1='4W0PA0WW' where id=3; -update noar tt set b2='S' where id=3; -update noar ti set b2='S' where id=3; -update noar tt set b0='PA0HGG5DVJC' where id=4; -update noar ti set b0='PA0HGG5DVJC' where id=4; -update noar tt set b1='VJH47XXPJ2O44R' where id=4; -update noar ti set b1='VJH47XXPJ2O44R' where id=4; -update noar tt set b2='5WON0SLKQORMLW327OP0I5YE' where id=4; -update noar ti set b2='5WON0SLKQORMLW327OP0I5YE' where id=4; -update noar tt set b0='K0FNWKUDU6PGTKBTQTD4FLBY1' where id=5; -update noar ti set b0='K0FNWKUDU6PGTKBTQTD4FLBY1' where id=5; -update noar tt set b1='0W6L6LE' where id=5; -update noar ti set b1='0W6L6LE' where id=5; -update noar tt set b2='PJCQRB7UFFS2RJEL' where id=5; -update noar ti set b2='PJCQRB7UFFS2RJEL' where id=5; -update noar tt set b0='IL6TP1RFJR94HAG7VYK7DL6AHQVN635F' where id=6; -update noar ti set b0='IL6TP1RFJR94HAG7VYK7DL6AHQVN635F' where id=6; -update noar tt set b1='QZTO52EKP2Y2Y4557L1I9MTYVKWCD' where id=6; -update noar ti set b1='QZTO52EKP2Y2Y4557L1I9MTYVKWCD' where id=6; -update noar tt set b2='XSLJT3MNK6RK4HECD5E56ESQTG01PCEA' where id=6; -update noar ti set b2='XSLJT3MNK6RK4HECD5E56ESQTG01PCEA' where id=6; -update noar tt set b0='TMAQ9ZOG4XPOGRZ' where id=7; -update noar ti set b0='TMAQ9ZOG4XPOGRZ' where id=7; -update noar tt set b1='YXAQPPYBPDFGH9WA3NUL3BZCX' where id=7; -update noar ti set b1='YXAQPPYBPDFGH9WA3NUL3BZCX' where id=7; -update noar tt set b2='PID8CVM27K9RJ1UB' where id=7; -update noar ti set b2='PID8CVM27K9RJ1UB' where id=7; -update noar tt set b0='PHFJ0NU50ZKFNXO' where id=8; -update noar ti set b0='PHFJ0NU50ZKFNXO' where id=8; -update noar tt set b1='WPBV4VCJ6U7MT8E' where id=8; -update noar ti set b1='WPBV4VCJ6U7MT8E' where id=8; -update noar tt set b2='R' where id=8; -update noar ti set b2='R' where id=8; -update noar tt set b0='958GJCAH96O' where id=9; -update noar ti set b0='958GJCAH96O' where id=9; -update noar tt set b1='AIUQ5E7L5BC53HLU3VB1' where id=9; -update noar ti set b1='AIUQ5E7L5BC53HLU3VB1' where id=9; -update noar tt set b2='VBEYW2GGA5C' where id=9; -update noar ti set b2='VBEYW2GGA5C' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - b0 tinyblob null, - b1 text null, - b2 tinyblob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set b0='XACHNX1V8L2VN8CILGTLWM' where id=1; -update noar ti set b0='XACHNX1V8L2VN8CILGTLWM' where id=1; -update noar tt set b1='A9MTUNFL5EDEMLWLI9RU4SIP' where id=1; -update noar ti set b1='A9MTUNFL5EDEMLWLI9RU4SIP' where id=1; -update noar tt set b2='M2LZ26BJND1NFOJDYCVDYY2C' where id=1; -update noar ti set b2='M2LZ26BJND1NFOJDYCVDYY2C' where id=1; -update noar tt set b0='1CL0J9L' where id=2; -update noar ti set b0='1CL0J9L' where id=2; -update noar tt set b1='26AIX' where id=2; -update noar ti set b1='26AIX' where id=2; -update noar tt set b2='9FRXB7JIQLUJM002NJ5RMV' where id=2; -update noar ti set b2='9FRXB7JIQLUJM002NJ5RMV' where id=2; -update noar tt set b0='6ZAEY1SYBUQL9' where id=3; -update noar ti set b0='6ZAEY1SYBUQL9' where id=3; -update noar tt set b1='IVQ4JSP77Y7UULE9A1A' where id=3; -update noar ti set b1='IVQ4JSP77Y7UULE9A1A' where id=3; -update noar tt set b2='C' where id=3; -update noar ti set b2='C' where id=3; -update noar tt set b0='YACCA1YGYGN' where id=4; -update noar ti set b0='YACCA1YGYGN' where id=4; -update noar tt set b1='TXP' where id=4; -update noar ti set b1='TXP' where id=4; -update noar tt set b2='Y3SQ73D3M7IP510OJN9ITSQO' where id=4; -update noar ti set b2='Y3SQ73D3M7IP510OJN9ITSQO' where id=4; -update noar tt set b0='EEQTPLLTY9BL617N' where id=5; -update noar ti set b0='EEQTPLLTY9BL617N' where id=5; -update noar tt set b1='NLBYP5VR2UQV' where id=5; -update noar ti set b1='NLBYP5VR2UQV' where id=5; -update noar tt set b2='5HUWC9Z1YAFNNQJ4BSXTBH' where id=5; -update noar ti set b2='5HUWC9Z1YAFNNQJ4BSXTBH' where id=5; -update noar tt set b0='X2Q6MI0C3DA21AO64P92RSUG2' where id=6; -update noar ti set b0='X2Q6MI0C3DA21AO64P92RSUG2' where id=6; -update noar tt set b1='MYB0RH25CM5Q' where id=6; -update noar ti set b1='MYB0RH25CM5Q' where id=6; -update noar tt set b2='K' where id=6; -update noar ti set b2='K' where id=6; -update noar tt set b0='OXQD66LHD40N05OX0UZUIVOKJF25G7Z' where id=7; -update noar ti set b0='OXQD66LHD40N05OX0UZUIVOKJF25G7Z' where id=7; -update noar tt set b1='VXWOLY7TY4L56GYDDYVUAPV0YM' where id=7; -update noar ti set b1='VXWOLY7TY4L56GYDDYVUAPV0YM' where id=7; -update noar tt set b2='7T2MC1QTPL9RVZZ6VWQJ0N1EL' where id=7; -update noar ti set b2='7T2MC1QTPL9RVZZ6VWQJ0N1EL' where id=7; -update noar tt set b0='BDGIOLLOX41TG66DSIG97IZ3RLWXB' where id=8; -update noar ti set b0='BDGIOLLOX41TG66DSIG97IZ3RLWXB' where id=8; -update noar tt set b1='FLHNNI472K' where id=8; -update noar ti set b1='FLHNNI472K' where id=8; -update noar tt set b2='Z7PR1N6R5A7CXK' where id=8; -update noar ti set b2='Z7PR1N6R5A7CXK' where id=8; -update noar tt set b0='FVEOP338T7' where id=9; -update noar ti set b0='FVEOP338T7' where id=9; -update noar tt set b1='KY0LPIV' where id=9; -update noar ti set b1='KY0LPIV' where id=9; -update noar tt set b2='Q1Z5ZR294ITKWNUCG01ME' where id=9; -update noar ti set b2='Q1Z5ZR294ITKWNUCG01ME' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - b0 tinyblob not null, - b1 text not null, - b2 tinyblob not null -) engine=tokudb; -insert into tt values (1,'','',''); -insert into tt values (2,'','',''); -insert into tt values (3,'','',''); -insert into tt values (4,'','',''); -insert into tt values (5,'','',''); -insert into tt values (6,'','',''); -insert into tt values (7,'','',''); -insert into tt values (8,'','',''); -insert into tt values (9,'','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set b0='4ZTREP' where id=1; -update noar ti set b0='4ZTREP' where id=1; -update noar tt set b1='L8X5S9IQ2RAHKD6XM3Z9KTQNO78YTW' where id=1; -update noar ti set b1='L8X5S9IQ2RAHKD6XM3Z9KTQNO78YTW' where id=1; -update noar tt set b2='41YMD8JTG51IEPGRGTQ6MM225E' where id=1; -update noar ti set b2='41YMD8JTG51IEPGRGTQ6MM225E' where id=1; -update noar tt set b0='2PLFJJ82CMFP42NE5018RC65' where id=2; -update noar ti set b0='2PLFJJ82CMFP42NE5018RC65' where id=2; -update noar tt set b1='8282NR6B' where id=2; -update noar ti set b1='8282NR6B' where id=2; -update noar tt set b2='4XGVY3J' where id=2; -update noar ti set b2='4XGVY3J' where id=2; -update noar tt set b0='29VMTNQG642ZYUT8PJWECJS' where id=3; -update noar ti set b0='29VMTNQG642ZYUT8PJWECJS' where id=3; -update noar tt set b1='JZW2D' where id=3; -update noar ti set b1='JZW2D' where id=3; -update noar tt set b2='BR1MP4ZC90V46MDG' where id=3; -update noar ti set b2='BR1MP4ZC90V46MDG' where id=3; -update noar tt set b0='NMS9QB' where id=4; -update noar ti set b0='NMS9QB' where id=4; -update noar tt set b1='3A26DG0S2XHI' where id=4; -update noar ti set b1='3A26DG0S2XHI' where id=4; -update noar tt set b2='QPJIUG' where id=4; -update noar ti set b2='QPJIUG' where id=4; -update noar tt set b0='O2OPXB1YLKS4PWF4' where id=5; -update noar ti set b0='O2OPXB1YLKS4PWF4' where id=5; -update noar tt set b1='VZQJMENLLJ8PZUYPVJQ6WRFQ5VYKLY' where id=5; -update noar ti set b1='VZQJMENLLJ8PZUYPVJQ6WRFQ5VYKLY' where id=5; -update noar tt set b2='RW2Y42NS7VZZ' where id=5; -update noar ti set b2='RW2Y42NS7VZZ' where id=5; -update noar tt set b0='JIU7D6LO5RA' where id=6; -update noar ti set b0='JIU7D6LO5RA' where id=6; -update noar tt set b1='RHLROSF28RI' where id=6; -update noar ti set b1='RHLROSF28RI' where id=6; -update noar tt set b2='3H5YMX4MZ94L35EAEAZLADR4D2TEP' where id=6; -update noar ti set b2='3H5YMX4MZ94L35EAEAZLADR4D2TEP' where id=6; -update noar tt set b0='N3J5GB7JGOT' where id=7; -update noar ti set b0='N3J5GB7JGOT' where id=7; -update noar tt set b1='74D0861LTF58RLG' where id=7; -update noar ti set b1='74D0861LTF58RLG' where id=7; -update noar tt set b2='OVU3UN' where id=7; -update noar ti set b2='OVU3UN' where id=7; -update noar tt set b0='UYP0FCWXVJXXVQ91653G1Q1' where id=8; -update noar ti set b0='UYP0FCWXVJXXVQ91653G1Q1' where id=8; -update noar tt set b1='MI45Q2XOB5LIYZR7HT6PRB' where id=8; -update noar ti set b1='MI45Q2XOB5LIYZR7HT6PRB' where id=8; -update noar tt set b2='RAGG7VXX7DZ40FALUEX' where id=8; -update noar ti set b2='RAGG7VXX7DZ40FALUEX' where id=8; -update noar tt set b0='NK' where id=9; -update noar ti set b0='NK' where id=9; -update noar tt set b1='ZGSZI1LMJ1BI82XFI6' where id=9; -update noar ti set b1='ZGSZI1LMJ1BI82XFI6' where id=9; -update noar tt set b2='CV1TLDFLXTRYFMYPEKI57U6YXX2FG' where id=9; -update noar ti set b2='CV1TLDFLXTRYFMYPEKI57U6YXX2FG' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - b0 tinyblob null, - b1 text null, - b2 blob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set b0='J6UT4L0CV5TFE' where id=1; -update noar ti set b0='J6UT4L0CV5TFE' where id=1; -update noar tt set b1='ULUG7J2AP3RBZR9BEWG48N6' where id=1; -update noar ti set b1='ULUG7J2AP3RBZR9BEWG48N6' where id=1; -update noar tt set b2='B5PFGDG0FVSR' where id=1; -update noar ti set b2='B5PFGDG0FVSR' where id=1; -update noar tt set b0='ACILM35DA1RCEMX72QNYDS' where id=2; -update noar ti set b0='ACILM35DA1RCEMX72QNYDS' where id=2; -update noar tt set b1='UDL9EWXMJYR5' where id=2; -update noar ti set b1='UDL9EWXMJYR5' where id=2; -update noar tt set b2='O9ZMOIXEA' where id=2; -update noar ti set b2='O9ZMOIXEA' where id=2; -update noar tt set b0='45BESPEY2SBE' where id=3; -update noar ti set b0='45BESPEY2SBE' where id=3; -update noar tt set b1='O655ZSCFIE871GV4PT3FI' where id=3; -update noar ti set b1='O655ZSCFIE871GV4PT3FI' where id=3; -update noar tt set b2='JYUSOPL0UTP19Y2ZXZMI2UEPKF' where id=3; -update noar ti set b2='JYUSOPL0UTP19Y2ZXZMI2UEPKF' where id=3; -update noar tt set b0='NP' where id=4; -update noar ti set b0='NP' where id=4; -update noar tt set b1='U68SQCT' where id=4; -update noar ti set b1='U68SQCT' where id=4; -update noar tt set b2='TDPUMJLW0JAK3D7Y1IHR' where id=4; -update noar ti set b2='TDPUMJLW0JAK3D7Y1IHR' where id=4; -update noar tt set b0='J8EM359HBKQT0' where id=5; -update noar ti set b0='J8EM359HBKQT0' where id=5; -update noar tt set b1='MGCQE9TVGNA1PBOSCMGYNHJZD' where id=5; -update noar ti set b1='MGCQE9TVGNA1PBOSCMGYNHJZD' where id=5; -update noar tt set b2='H8JXMDJKJ84C28OAX' where id=5; -update noar ti set b2='H8JXMDJKJ84C28OAX' where id=5; -update noar tt set b0='X3YBKBN9J0' where id=6; -update noar ti set b0='X3YBKBN9J0' where id=6; -update noar tt set b1='9EN14YI0UBGRKRGZX1ET' where id=6; -update noar ti set b1='9EN14YI0UBGRKRGZX1ET' where id=6; -update noar tt set b2='UICXV153KI63KIA3YL9YN58IP5P14B' where id=6; -update noar ti set b2='UICXV153KI63KIA3YL9YN58IP5P14B' where id=6; -update noar tt set b0='4UU4G6MY8DTWZVASILHQ' where id=7; -update noar ti set b0='4UU4G6MY8DTWZVASILHQ' where id=7; -update noar tt set b1='8Z7LRW9ENCJA5VT25AKUUO04' where id=7; -update noar ti set b1='8Z7LRW9ENCJA5VT25AKUUO04' where id=7; -update noar tt set b2='BMER3TQ1A3FIH9O' where id=7; -update noar ti set b2='BMER3TQ1A3FIH9O' where id=7; -update noar tt set b0='FY1YP7EHHO2GSO13Q8UERG5GL1D' where id=8; -update noar ti set b0='FY1YP7EHHO2GSO13Q8UERG5GL1D' where id=8; -update noar tt set b1='VNA082E3LI9G' where id=8; -update noar ti set b1='VNA082E3LI9G' where id=8; -update noar tt set b2='91EDWQ87M' where id=8; -update noar ti set b2='91EDWQ87M' where id=8; -update noar tt set b0='RZ3YBHHYG5WWXOZJMIE' where id=9; -update noar ti set b0='RZ3YBHHYG5WWXOZJMIE' where id=9; -update noar tt set b1='XN8LKNMPI' where id=9; -update noar ti set b1='XN8LKNMPI' where id=9; -update noar tt set b2='5Z' where id=9; -update noar ti set b2='5Z' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - b0 tinyblob not null, - b1 text not null, - b2 blob not null -) engine=tokudb; -insert into tt values (1,'','',''); -insert into tt values (2,'','',''); -insert into tt values (3,'','',''); -insert into tt values (4,'','',''); -insert into tt values (5,'','',''); -insert into tt values (6,'','',''); -insert into tt values (7,'','',''); -insert into tt values (8,'','',''); -insert into tt values (9,'','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set b0='JAOF86PXKZMP1DCOGYPEX67EUZAZD' where id=1; -update noar ti set b0='JAOF86PXKZMP1DCOGYPEX67EUZAZD' where id=1; -update noar tt set b1='LDG5RVX8F' where id=1; -update noar ti set b1='LDG5RVX8F' where id=1; -update noar tt set b2='ZCR6M6394O' where id=1; -update noar ti set b2='ZCR6M6394O' where id=1; -update noar tt set b0='9ZSJM50B2Y3MFOUVKC' where id=2; -update noar ti set b0='9ZSJM50B2Y3MFOUVKC' where id=2; -update noar tt set b1='SCCEKNG6YF' where id=2; -update noar ti set b1='SCCEKNG6YF' where id=2; -update noar tt set b2='PKXDPVWGICX5LHIHZKRI' where id=2; -update noar ti set b2='PKXDPVWGICX5LHIHZKRI' where id=2; -update noar tt set b0='F98Q0DMX' where id=3; -update noar ti set b0='F98Q0DMX' where id=3; -update noar tt set b1='HSWFR62' where id=3; -update noar ti set b1='HSWFR62' where id=3; -update noar tt set b2='FOTDH' where id=3; -update noar ti set b2='FOTDH' where id=3; -update noar tt set b0='KCK' where id=4; -update noar ti set b0='KCK' where id=4; -update noar tt set b1='UQTU3ZCBGJX' where id=4; -update noar ti set b1='UQTU3ZCBGJX' where id=4; -update noar tt set b2='B37KUKFKMC3EET1IP6' where id=4; -update noar ti set b2='B37KUKFKMC3EET1IP6' where id=4; -update noar tt set b0='DBLPTXA' where id=5; -update noar ti set b0='DBLPTXA' where id=5; -update noar tt set b1='WW7SS8L91YKM' where id=5; -update noar ti set b1='WW7SS8L91YKM' where id=5; -update noar tt set b2='NA' where id=5; -update noar ti set b2='NA' where id=5; -update noar tt set b0='NRNCPQLLLBBL5YN36PC3L7P811HCETY' where id=6; -update noar ti set b0='NRNCPQLLLBBL5YN36PC3L7P811HCETY' where id=6; -update noar tt set b1='P2K8SUMEKQGRHS9H4IO7L5EPZ7' where id=6; -update noar ti set b1='P2K8SUMEKQGRHS9H4IO7L5EPZ7' where id=6; -update noar tt set b2='RXOJ5' where id=6; -update noar ti set b2='RXOJ5' where id=6; -update noar tt set b0='RDDNNT' where id=7; -update noar ti set b0='RDDNNT' where id=7; -update noar tt set b1='CGQK3MHL0A20NU' where id=7; -update noar ti set b1='CGQK3MHL0A20NU' where id=7; -update noar tt set b2='UFK0AUJ7ZITUZZOSBPMB6C1Q' where id=7; -update noar ti set b2='UFK0AUJ7ZITUZZOSBPMB6C1Q' where id=7; -update noar tt set b0='TDRVBP3' where id=8; -update noar ti set b0='TDRVBP3' where id=8; -update noar tt set b1='L4TJZ5AHCQKQ9YJ89M' where id=8; -update noar ti set b1='L4TJZ5AHCQKQ9YJ89M' where id=8; -update noar tt set b2='CJWQN82XPOZG88O27UV01NGJ02V2K' where id=8; -update noar ti set b2='CJWQN82XPOZG88O27UV01NGJ02V2K' where id=8; -update noar tt set b0='SS9YA7U3VCZSS34VJDDE' where id=9; -update noar ti set b0='SS9YA7U3VCZSS34VJDDE' where id=9; -update noar tt set b1='KL5OI2675CDMOGA234B2BR3Y8' where id=9; -update noar ti set b1='KL5OI2675CDMOGA234B2BR3Y8' where id=9; -update noar tt set b2='6FYOP' where id=9; -update noar ti set b2='6FYOP' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - b0 tinyblob null, - b1 text null, - b2 mediumblob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set b0='NQ6E2TT4QEUBCL0BM5QYMUXKUUC' where id=1; -update noar ti set b0='NQ6E2TT4QEUBCL0BM5QYMUXKUUC' where id=1; -update noar tt set b1='2OZH' where id=1; -update noar ti set b1='2OZH' where id=1; -update noar tt set b2='M' where id=1; -update noar ti set b2='M' where id=1; -update noar tt set b0='6FZANCNLQB5500WADDZAK' where id=2; -update noar ti set b0='6FZANCNLQB5500WADDZAK' where id=2; -update noar tt set b1='AQNIUDUTQIFS' where id=2; -update noar ti set b1='AQNIUDUTQIFS' where id=2; -update noar tt set b2='539MKB4ULIIPBQTQ9N' where id=2; -update noar ti set b2='539MKB4ULIIPBQTQ9N' where id=2; -update noar tt set b0='T9K4XVUEVWP' where id=3; -update noar ti set b0='T9K4XVUEVWP' where id=3; -update noar tt set b1='53UC17TUE2R' where id=3; -update noar ti set b1='53UC17TUE2R' where id=3; -update noar tt set b2='M9H86EJYS258IAST' where id=3; -update noar ti set b2='M9H86EJYS258IAST' where id=3; -update noar tt set b0='GRQEOSO0KL5T' where id=4; -update noar ti set b0='GRQEOSO0KL5T' where id=4; -update noar tt set b1='06T5RMX3X06GN0T3627I4GPAQHV' where id=4; -update noar ti set b1='06T5RMX3X06GN0T3627I4GPAQHV' where id=4; -update noar tt set b2='S71PWP7V0OPD0P6JW' where id=4; -update noar ti set b2='S71PWP7V0OPD0P6JW' where id=4; -update noar tt set b0='QA43317YFTZ8Z5YIISY' where id=5; -update noar ti set b0='QA43317YFTZ8Z5YIISY' where id=5; -update noar tt set b1='S0PDNFO517' where id=5; -update noar ti set b1='S0PDNFO517' where id=5; -update noar tt set b2='8RLSMA8BC8SXOMV7G' where id=5; -update noar ti set b2='8RLSMA8BC8SXOMV7G' where id=5; -update noar tt set b0='WA3MOZRQSM9TRED7L0H' where id=6; -update noar ti set b0='WA3MOZRQSM9TRED7L0H' where id=6; -update noar tt set b1='SQ9' where id=6; -update noar ti set b1='SQ9' where id=6; -update noar tt set b2='AI24SPUR5ELGV' where id=6; -update noar ti set b2='AI24SPUR5ELGV' where id=6; -update noar tt set b0='AK67' where id=7; -update noar ti set b0='AK67' where id=7; -update noar tt set b1='ZKN47H9X6KD6W' where id=7; -update noar ti set b1='ZKN47H9X6KD6W' where id=7; -update noar tt set b2='AVCJG4V34FIFWQLO3A4KDVB' where id=7; -update noar ti set b2='AVCJG4V34FIFWQLO3A4KDVB' where id=7; -update noar tt set b0='YGS9AS49D' where id=8; -update noar ti set b0='YGS9AS49D' where id=8; -update noar tt set b1='04G70' where id=8; -update noar ti set b1='04G70' where id=8; -update noar tt set b2='WUIG8UVJ5K3ESR4EA59G5GEK' where id=8; -update noar ti set b2='WUIG8UVJ5K3ESR4EA59G5GEK' where id=8; -update noar tt set b0='9Y59RWP' where id=9; -update noar ti set b0='9Y59RWP' where id=9; -update noar tt set b1='PO24Y3PXHMZ' where id=9; -update noar ti set b1='PO24Y3PXHMZ' where id=9; -update noar tt set b2='ZF9SWWE06ND4J1J4OW6Y5NDIR1B' where id=9; -update noar ti set b2='ZF9SWWE06ND4J1J4OW6Y5NDIR1B' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - b0 tinyblob not null, - b1 text not null, - b2 mediumblob not null -) engine=tokudb; -insert into tt values (1,'','',''); -insert into tt values (2,'','',''); -insert into tt values (3,'','',''); -insert into tt values (4,'','',''); -insert into tt values (5,'','',''); -insert into tt values (6,'','',''); -insert into tt values (7,'','',''); -insert into tt values (8,'','',''); -insert into tt values (9,'','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set b0='CB7DR' where id=1; -update noar ti set b0='CB7DR' where id=1; -update noar tt set b1='3IV0V4FWCZSE8K63AQ2ABWB' where id=1; -update noar ti set b1='3IV0V4FWCZSE8K63AQ2ABWB' where id=1; -update noar tt set b2='JDTM2D021NWIIN' where id=1; -update noar ti set b2='JDTM2D021NWIIN' where id=1; -update noar tt set b0='BITNE28A94O6QUP' where id=2; -update noar ti set b0='BITNE28A94O6QUP' where id=2; -update noar tt set b1='UMNQHNDV' where id=2; -update noar ti set b1='UMNQHNDV' where id=2; -update noar tt set b2='JERM91Z2E5LU9CC' where id=2; -update noar ti set b2='JERM91Z2E5LU9CC' where id=2; -update noar tt set b0='2W2JH6VCFYO6QCE0DI0IWWJ07LQAVAQS' where id=3; -update noar ti set b0='2W2JH6VCFYO6QCE0DI0IWWJ07LQAVAQS' where id=3; -update noar tt set b1='5RYPYWU0361KJB44H9YC00AY3H8KYKB' where id=3; -update noar ti set b1='5RYPYWU0361KJB44H9YC00AY3H8KYKB' where id=3; -update noar tt set b2='I7V5B0TF' where id=3; -update noar ti set b2='I7V5B0TF' where id=3; -update noar tt set b0='GSHODRIHOYZRWESEQD6B0L' where id=4; -update noar ti set b0='GSHODRIHOYZRWESEQD6B0L' where id=4; -update noar tt set b1='P9OO2VK94SQX7954EITPZ1VWX9KQQ27' where id=4; -update noar ti set b1='P9OO2VK94SQX7954EITPZ1VWX9KQQ27' where id=4; -update noar tt set b2='2NBA9A86IJO6L' where id=4; -update noar ti set b2='2NBA9A86IJO6L' where id=4; -update noar tt set b0='3TDU4' where id=5; -update noar ti set b0='3TDU4' where id=5; -update noar tt set b1='CMCUYBXLGZUX2KZ0' where id=5; -update noar ti set b1='CMCUYBXLGZUX2KZ0' where id=5; -update noar tt set b2='4O4M2' where id=5; -update noar ti set b2='4O4M2' where id=5; -update noar tt set b0='WUVU8KP4WO' where id=6; -update noar ti set b0='WUVU8KP4WO' where id=6; -update noar tt set b1='NCCSZ' where id=6; -update noar ti set b1='NCCSZ' where id=6; -update noar tt set b2='3BFOMBUZAYFA1F36OSC5QJHU2MKP' where id=6; -update noar ti set b2='3BFOMBUZAYFA1F36OSC5QJHU2MKP' where id=6; -update noar tt set b0='GUX' where id=7; -update noar ti set b0='GUX' where id=7; -update noar tt set b1='CMKTB0YO39RHKZNY0M81ZW' where id=7; -update noar ti set b1='CMKTB0YO39RHKZNY0M81ZW' where id=7; -update noar tt set b2='KK7IRA9L20NW9R9ZGXP5' where id=7; -update noar ti set b2='KK7IRA9L20NW9R9ZGXP5' where id=7; -update noar tt set b0='GSI2IM6JPB2L' where id=8; -update noar ti set b0='GSI2IM6JPB2L' where id=8; -update noar tt set b1='U' where id=8; -update noar ti set b1='U' where id=8; -update noar tt set b2='Y70ZWZNCLRAU44ALT7SL9F2' where id=8; -update noar ti set b2='Y70ZWZNCLRAU44ALT7SL9F2' where id=8; -update noar tt set b0='CZKFARQ39XKQRYMEOPZ4ROXKTB4' where id=9; -update noar ti set b0='CZKFARQ39XKQRYMEOPZ4ROXKTB4' where id=9; -update noar tt set b1='C4T7JPODAU7C0PFY2FGG089NYSISK' where id=9; -update noar ti set b1='C4T7JPODAU7C0PFY2FGG089NYSISK' where id=9; -update noar tt set b2='AVIL6S41XDR' where id=9; -update noar ti set b2='AVIL6S41XDR' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - b0 tinyblob null, - b1 text null, - b2 longblob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set b0='ID15RM6NVRAE2G1SVR3ID6NMNE8' where id=1; -update noar ti set b0='ID15RM6NVRAE2G1SVR3ID6NMNE8' where id=1; -update noar tt set b1='5HM871AGHGOMW5M90ATJCQ94LLT' where id=1; -update noar ti set b1='5HM871AGHGOMW5M90ATJCQ94LLT' where id=1; -update noar tt set b2='N0ZJ8991LSCTIPFCEC59E3' where id=1; -update noar ti set b2='N0ZJ8991LSCTIPFCEC59E3' where id=1; -update noar tt set b0='KUTQ50HVQYE6COC26MBXCU1' where id=2; -update noar ti set b0='KUTQ50HVQYE6COC26MBXCU1' where id=2; -update noar tt set b1='YLDR7E378DNE' where id=2; -update noar ti set b1='YLDR7E378DNE' where id=2; -update noar tt set b2='NJJVF17WBMUWCSYY82F0' where id=2; -update noar ti set b2='NJJVF17WBMUWCSYY82F0' where id=2; -update noar tt set b0='3FQEA5CICF' where id=3; -update noar ti set b0='3FQEA5CICF' where id=3; -update noar tt set b1='ZQKVL3BTHCPO8R86RXMAGO' where id=3; -update noar ti set b1='ZQKVL3BTHCPO8R86RXMAGO' where id=3; -update noar tt set b2='SUDTA2Q17P8PC8EJXV3SQEQKGKQ' where id=3; -update noar ti set b2='SUDTA2Q17P8PC8EJXV3SQEQKGKQ' where id=3; -update noar tt set b0='ACZNH5S' where id=4; -update noar ti set b0='ACZNH5S' where id=4; -update noar tt set b1='7FLNC66NGQXBP6C9HM7EZW' where id=4; -update noar ti set b1='7FLNC66NGQXBP6C9HM7EZW' where id=4; -update noar tt set b2='1QVH7ZG3DBS8CYBKJH4' where id=4; -update noar ti set b2='1QVH7ZG3DBS8CYBKJH4' where id=4; -update noar tt set b0='SL2JPIFL9KJH9Y0ZNA' where id=5; -update noar ti set b0='SL2JPIFL9KJH9Y0ZNA' where id=5; -update noar tt set b1='74MXZYEC23I88SRDCDKL0KEN3XIGA' where id=5; -update noar ti set b1='74MXZYEC23I88SRDCDKL0KEN3XIGA' where id=5; -update noar tt set b2='F' where id=5; -update noar ti set b2='F' where id=5; -update noar tt set b0='ML4FYQJY' where id=6; -update noar ti set b0='ML4FYQJY' where id=6; -update noar tt set b1='J5A25CVP62XE15ZNWTDL' where id=6; -update noar ti set b1='J5A25CVP62XE15ZNWTDL' where id=6; -update noar tt set b2='AJ97L5X' where id=6; -update noar ti set b2='AJ97L5X' where id=6; -update noar tt set b0='4C1BU1FHDZGIWOB1UCOCK9' where id=7; -update noar ti set b0='4C1BU1FHDZGIWOB1UCOCK9' where id=7; -update noar tt set b1='RPP' where id=7; -update noar ti set b1='RPP' where id=7; -update noar tt set b2='TE76F0I8RK0YW680LKEPYMP2SFV6CO' where id=7; -update noar ti set b2='TE76F0I8RK0YW680LKEPYMP2SFV6CO' where id=7; -update noar tt set b0='X' where id=8; -update noar ti set b0='X' where id=8; -update noar tt set b1='O0X6BSPSO126CGGS2BG3KL' where id=8; -update noar ti set b1='O0X6BSPSO126CGGS2BG3KL' where id=8; -update noar tt set b2='JBJ0451' where id=8; -update noar ti set b2='JBJ0451' where id=8; -update noar tt set b0='F34MEXGXKFBM2UT' where id=9; -update noar ti set b0='F34MEXGXKFBM2UT' where id=9; -update noar tt set b1='BSRWZP0Z' where id=9; -update noar ti set b1='BSRWZP0Z' where id=9; -update noar tt set b2='37EEOCYR6T3PNEDX3FBQ92G4T53WODTW' where id=9; -update noar ti set b2='37EEOCYR6T3PNEDX3FBQ92G4T53WODTW' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - b0 tinyblob not null, - b1 text not null, - b2 longblob not null -) engine=tokudb; -insert into tt values (1,'','',''); -insert into tt values (2,'','',''); -insert into tt values (3,'','',''); -insert into tt values (4,'','',''); -insert into tt values (5,'','',''); -insert into tt values (6,'','',''); -insert into tt values (7,'','',''); -insert into tt values (8,'','',''); -insert into tt values (9,'','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set b0='7JBUS90CC54ZP' where id=1; -update noar ti set b0='7JBUS90CC54ZP' where id=1; -update noar tt set b1='Q3GDRWNXSY5D6MN7NO6IFE1O4FKSJ' where id=1; -update noar ti set b1='Q3GDRWNXSY5D6MN7NO6IFE1O4FKSJ' where id=1; -update noar tt set b2='7O74JBSYLSGCO1BSEDBGUK7P4F8UPYHY' where id=1; -update noar ti set b2='7O74JBSYLSGCO1BSEDBGUK7P4F8UPYHY' where id=1; -update noar tt set b0='VZY0DWFNAZOFKNZ60GSQQYFFPJXM' where id=2; -update noar ti set b0='VZY0DWFNAZOFKNZ60GSQQYFFPJXM' where id=2; -update noar tt set b1='CALYLSO8EXTSLTJFPTPXDT302' where id=2; -update noar ti set b1='CALYLSO8EXTSLTJFPTPXDT302' where id=2; -update noar tt set b2='BCLO1TUGPY9PS6VMPB4H53' where id=2; -update noar ti set b2='BCLO1TUGPY9PS6VMPB4H53' where id=2; -update noar tt set b0='LDNC3KFAGW5I' where id=3; -update noar ti set b0='LDNC3KFAGW5I' where id=3; -update noar tt set b1='MUYKZMYSE05JY16RL9RPL' where id=3; -update noar ti set b1='MUYKZMYSE05JY16RL9RPL' where id=3; -update noar tt set b2='9V56GV2MB7ST6EQ0C373AW3VJYPIB3' where id=3; -update noar ti set b2='9V56GV2MB7ST6EQ0C373AW3VJYPIB3' where id=3; -update noar tt set b0='GEY8K2LOBOUWBYMIJ9562W4TF6OCBB5' where id=4; -update noar ti set b0='GEY8K2LOBOUWBYMIJ9562W4TF6OCBB5' where id=4; -update noar tt set b1='LJBIHLQ535ZNG1EK7BT' where id=4; -update noar ti set b1='LJBIHLQ535ZNG1EK7BT' where id=4; -update noar tt set b2='9N646DR7QUUOC' where id=4; -update noar ti set b2='9N646DR7QUUOC' where id=4; -update noar tt set b0='430HB1DAVS6CF' where id=5; -update noar ti set b0='430HB1DAVS6CF' where id=5; -update noar tt set b1='0OV3ZGF2JUUDEKR5L' where id=5; -update noar ti set b1='0OV3ZGF2JUUDEKR5L' where id=5; -update noar tt set b2='5CFJKPAREPGLQYBVV736BL01Z' where id=5; -update noar ti set b2='5CFJKPAREPGLQYBVV736BL01Z' where id=5; -update noar tt set b0='AD312BIYRDC' where id=6; -update noar ti set b0='AD312BIYRDC' where id=6; -update noar tt set b1='Z16' where id=6; -update noar ti set b1='Z16' where id=6; -update noar tt set b2='LGZWGGFJ5UF36HJDJYD2K' where id=6; -update noar ti set b2='LGZWGGFJ5UF36HJDJYD2K' where id=6; -update noar tt set b0='E3QALDLJUSKLJRLI3F5TXI1KF' where id=7; -update noar ti set b0='E3QALDLJUSKLJRLI3F5TXI1KF' where id=7; -update noar tt set b1='UWI9LX49HEZ49F1AJ21ZDWVXII42RL' where id=7; -update noar ti set b1='UWI9LX49HEZ49F1AJ21ZDWVXII42RL' where id=7; -update noar tt set b2='8W9Y' where id=7; -update noar ti set b2='8W9Y' where id=7; -update noar tt set b0='KHXNWY' where id=8; -update noar ti set b0='KHXNWY' where id=8; -update noar tt set b1='JY99H9VWYTEYZAP2P8ICC1' where id=8; -update noar ti set b1='JY99H9VWYTEYZAP2P8ICC1' where id=8; -update noar tt set b2='AXAF9HDTLTU' where id=8; -update noar ti set b2='AXAF9HDTLTU' where id=8; -update noar tt set b0='YYQTPL5FVDQS9OQ2HGAZT19I' where id=9; -update noar ti set b0='YYQTPL5FVDQS9OQ2HGAZT19I' where id=9; -update noar tt set b1='6J0DCU71M0ASWYCZPRML1G4KMWLKO9' where id=9; -update noar ti set b1='6J0DCU71M0ASWYCZPRML1G4KMWLKO9' where id=9; -update noar tt set b2='M0H5STWTOHCH9PC' where id=9; -update noar ti set b2='M0H5STWTOHCH9PC' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - b0 tinyblob null, - b1 text null, - b2 text null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set b0='91DCSZ52QOPUF59N8T' where id=1; -update noar ti set b0='91DCSZ52QOPUF59N8T' where id=1; -update noar tt set b1='91IHWVIPDW753US2CW9TDI' where id=1; -update noar ti set b1='91IHWVIPDW753US2CW9TDI' where id=1; -update noar tt set b2='00D2H' where id=1; -update noar ti set b2='00D2H' where id=1; -update noar tt set b0='XZDPPXL0GDH1QZL9DSQK60OI0M1X84X' where id=2; -update noar ti set b0='XZDPPXL0GDH1QZL9DSQK60OI0M1X84X' where id=2; -update noar tt set b1='I' where id=2; -update noar ti set b1='I' where id=2; -update noar tt set b2='AHEXM1L97KOTB9KXI29YGDSY6FOF' where id=2; -update noar ti set b2='AHEXM1L97KOTB9KXI29YGDSY6FOF' where id=2; -update noar tt set b0='VYILFYJM08X5A1ZURWVYE6X7ADXO2S' where id=3; -update noar ti set b0='VYILFYJM08X5A1ZURWVYE6X7ADXO2S' where id=3; -update noar tt set b1='VAV9I4VHTMEZ0U8IEZQV' where id=3; -update noar ti set b1='VAV9I4VHTMEZ0U8IEZQV' where id=3; -update noar tt set b2='3PP5X4QIEXYD6C93ASOSQZVZW4TINIY' where id=3; -update noar ti set b2='3PP5X4QIEXYD6C93ASOSQZVZW4TINIY' where id=3; -update noar tt set b0='0XLZV04KSUMJFY92AK71V5AN3' where id=4; -update noar ti set b0='0XLZV04KSUMJFY92AK71V5AN3' where id=4; -update noar tt set b1='C4M9BGY6GTKID0D8W7QFIG' where id=4; -update noar ti set b1='C4M9BGY6GTKID0D8W7QFIG' where id=4; -update noar tt set b2='B4UK' where id=4; -update noar ti set b2='B4UK' where id=4; -update noar tt set b0='KIF9PC0XV722MUNP8CKWAVX' where id=5; -update noar ti set b0='KIF9PC0XV722MUNP8CKWAVX' where id=5; -update noar tt set b1='ULKUU2EK' where id=5; -update noar ti set b1='ULKUU2EK' where id=5; -update noar tt set b2='0RP6EJLHGTFEZLSUJM3FV' where id=5; -update noar ti set b2='0RP6EJLHGTFEZLSUJM3FV' where id=5; -update noar tt set b0='EKB7' where id=6; -update noar ti set b0='EKB7' where id=6; -update noar tt set b1='94K' where id=6; -update noar ti set b1='94K' where id=6; -update noar tt set b2='PA9H' where id=6; -update noar ti set b2='PA9H' where id=6; -update noar tt set b0='OAQ9A2Z2WWDK2C05JYB1XVNCSCVOAX' where id=7; -update noar ti set b0='OAQ9A2Z2WWDK2C05JYB1XVNCSCVOAX' where id=7; -update noar tt set b1='3UG8NITM4B' where id=7; -update noar ti set b1='3UG8NITM4B' where id=7; -update noar tt set b2='PS6MJPIGPL7WBXD6QHCWEF5EZ7' where id=7; -update noar ti set b2='PS6MJPIGPL7WBXD6QHCWEF5EZ7' where id=7; -update noar tt set b0='29ZHZEZ6IXV50BXETX8' where id=8; -update noar ti set b0='29ZHZEZ6IXV50BXETX8' where id=8; -update noar tt set b1='8I3NM1AZEP' where id=8; -update noar ti set b1='8I3NM1AZEP' where id=8; -update noar tt set b2='ZIE8PAUV13PKXDSB' where id=8; -update noar ti set b2='ZIE8PAUV13PKXDSB' where id=8; -update noar tt set b0='P7ZZOLEGWA' where id=9; -update noar ti set b0='P7ZZOLEGWA' where id=9; -update noar tt set b1='ZEY1GVHHPTJMQ8YIXEODPKD6A893' where id=9; -update noar ti set b1='ZEY1GVHHPTJMQ8YIXEODPKD6A893' where id=9; -update noar tt set b2='3U3PCBQYYCMKR3SHEJ' where id=9; -update noar ti set b2='3U3PCBQYYCMKR3SHEJ' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - b0 tinyblob not null, - b1 text not null, - b2 text not null -) engine=tokudb; -insert into tt values (1,'','',''); -insert into tt values (2,'','',''); -insert into tt values (3,'','',''); -insert into tt values (4,'','',''); -insert into tt values (5,'','',''); -insert into tt values (6,'','',''); -insert into tt values (7,'','',''); -insert into tt values (8,'','',''); -insert into tt values (9,'','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set b0='3VHW6PMZ2' where id=1; -update noar ti set b0='3VHW6PMZ2' where id=1; -update noar tt set b1='KOTGK0AV3UUROTM' where id=1; -update noar ti set b1='KOTGK0AV3UUROTM' where id=1; -update noar tt set b2='NQ2OJDDTWDURBJA4' where id=1; -update noar ti set b2='NQ2OJDDTWDURBJA4' where id=1; -update noar tt set b0='GTTPG2F21EXGXIMTS51HV5LYM452NMX' where id=2; -update noar ti set b0='GTTPG2F21EXGXIMTS51HV5LYM452NMX' where id=2; -update noar tt set b1='GBYE0' where id=2; -update noar ti set b1='GBYE0' where id=2; -update noar tt set b2='M9TO3FKFONZ5F3JQGZSOP2ILQRDBX' where id=2; -update noar ti set b2='M9TO3FKFONZ5F3JQGZSOP2ILQRDBX' where id=2; -update noar tt set b0='B4319RTBKXUV955KWWU2MKUO' where id=3; -update noar ti set b0='B4319RTBKXUV955KWWU2MKUO' where id=3; -update noar tt set b1='Q6PIZF4PZQZLK414RJEDFW' where id=3; -update noar ti set b1='Q6PIZF4PZQZLK414RJEDFW' where id=3; -update noar tt set b2='09UP4L2FGEJ53AFXVDMICCYCF5XV4' where id=3; -update noar ti set b2='09UP4L2FGEJ53AFXVDMICCYCF5XV4' where id=3; -update noar tt set b0='MF2U3X8OEE44EIJGW3F7I9T' where id=4; -update noar ti set b0='MF2U3X8OEE44EIJGW3F7I9T' where id=4; -update noar tt set b1='AQHCVO6WNYD4960ZQPP5' where id=4; -update noar ti set b1='AQHCVO6WNYD4960ZQPP5' where id=4; -update noar tt set b2='A04YIZ' where id=4; -update noar ti set b2='A04YIZ' where id=4; -update noar tt set b0='539WAPOAOKDJ5EYUSX4F' where id=5; -update noar ti set b0='539WAPOAOKDJ5EYUSX4F' where id=5; -update noar tt set b1='YX5DH' where id=5; -update noar ti set b1='YX5DH' where id=5; -update noar tt set b2='KBNW7EI9GT' where id=5; -update noar ti set b2='KBNW7EI9GT' where id=5; -update noar tt set b0='YTKJ4' where id=6; -update noar ti set b0='YTKJ4' where id=6; -update noar tt set b1='W8T941CRUZGE018BDESL26RYYQDLPR5K' where id=6; -update noar ti set b1='W8T941CRUZGE018BDESL26RYYQDLPR5K' where id=6; -update noar tt set b2='CIJ4JAYKUG' where id=6; -update noar ti set b2='CIJ4JAYKUG' where id=6; -update noar tt set b0='IMK5JCJD6FKDYH2KTTLFBCOPTOU' where id=7; -update noar ti set b0='IMK5JCJD6FKDYH2KTTLFBCOPTOU' where id=7; -update noar tt set b1='YQC2H44B78Z8PDTZ54FLH81BLYR28DK' where id=7; -update noar ti set b1='YQC2H44B78Z8PDTZ54FLH81BLYR28DK' where id=7; -update noar tt set b2='LT36URXKF16PVURRC61WUL' where id=7; -update noar ti set b2='LT36URXKF16PVURRC61WUL' where id=7; -update noar tt set b0='CK8JJ2RH79NGC3K79LZ9' where id=8; -update noar ti set b0='CK8JJ2RH79NGC3K79LZ9' where id=8; -update noar tt set b1='H' where id=8; -update noar ti set b1='H' where id=8; -update noar tt set b2='AOUJ2RUBOYPERTL02V7XPYSKHPLS4' where id=8; -update noar ti set b2='AOUJ2RUBOYPERTL02V7XPYSKHPLS4' where id=8; -update noar tt set b0='TYY4B20YTLT1WHX0I3E74O' where id=9; -update noar ti set b0='TYY4B20YTLT1WHX0I3E74O' where id=9; -update noar tt set b1='5MSSOO3CQILR74TVY86' where id=9; -update noar ti set b1='5MSSOO3CQILR74TVY86' where id=9; -update noar tt set b2='V21B9TTH2X612MTDW2Y' where id=9; -update noar ti set b2='V21B9TTH2X612MTDW2Y' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - b0 blob null, - b1 tinyblob null, - b2 tinyblob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set b0='LC8S6KPDD' where id=1; -update noar ti set b0='LC8S6KPDD' where id=1; -update noar tt set b1='TLLDEARF982' where id=1; -update noar ti set b1='TLLDEARF982' where id=1; -update noar tt set b2='ZVM3PFRK4JBRJJ48E129XZDDT' where id=1; -update noar ti set b2='ZVM3PFRK4JBRJJ48E129XZDDT' where id=1; -update noar tt set b0='XAQEJUH9CAW2CN2Y1OQ9QFBC' where id=2; -update noar ti set b0='XAQEJUH9CAW2CN2Y1OQ9QFBC' where id=2; -update noar tt set b1='33VKW0R95SXFZ' where id=2; -update noar ti set b1='33VKW0R95SXFZ' where id=2; -update noar tt set b2='AMGX9F' where id=2; -update noar ti set b2='AMGX9F' where id=2; -update noar tt set b0='1X1A6V' where id=3; -update noar ti set b0='1X1A6V' where id=3; -update noar tt set b1='J6T2XWFYLXJH6QREZ0' where id=3; -update noar ti set b1='J6T2XWFYLXJH6QREZ0' where id=3; -update noar tt set b2='RTBMVXOCOEISHDYKDTGE8' where id=3; -update noar ti set b2='RTBMVXOCOEISHDYKDTGE8' where id=3; -update noar tt set b0='BJM' where id=4; -update noar ti set b0='BJM' where id=4; -update noar tt set b1='KE50380QJ' where id=4; -update noar ti set b1='KE50380QJ' where id=4; -update noar tt set b2='87RJDL8EBX9XNJSKBAW9E30QOCS' where id=4; -update noar ti set b2='87RJDL8EBX9XNJSKBAW9E30QOCS' where id=4; -update noar tt set b0='O1VW0L1NLSGZLJBYQ9GNB917E' where id=5; -update noar ti set b0='O1VW0L1NLSGZLJBYQ9GNB917E' where id=5; -update noar tt set b1='XR321T8Z2WP5ZCKONENKVT4GV' where id=5; -update noar ti set b1='XR321T8Z2WP5ZCKONENKVT4GV' where id=5; -update noar tt set b2='NDF5N1R5OMSLJ04IWMZRVP' where id=5; -update noar ti set b2='NDF5N1R5OMSLJ04IWMZRVP' where id=5; -update noar tt set b0='2BB3BYC' where id=6; -update noar ti set b0='2BB3BYC' where id=6; -update noar tt set b1='BH2DF2O33A1S1VI8YUFQA4JWES9Z2LU' where id=6; -update noar ti set b1='BH2DF2O33A1S1VI8YUFQA4JWES9Z2LU' where id=6; -update noar tt set b2='XRYJSI04OJ74M1IL6F9ZS015GV' where id=6; -update noar ti set b2='XRYJSI04OJ74M1IL6F9ZS015GV' where id=6; -update noar tt set b0='PZKP9ERFSAJVOHCO7ONL' where id=7; -update noar ti set b0='PZKP9ERFSAJVOHCO7ONL' where id=7; -update noar tt set b1='WDMGY5HTUIN81RFPELXUE' where id=7; -update noar ti set b1='WDMGY5HTUIN81RFPELXUE' where id=7; -update noar tt set b2='FY774Z2PJ91O9XB817TZ078I' where id=7; -update noar ti set b2='FY774Z2PJ91O9XB817TZ078I' where id=7; -update noar tt set b0='4JJD618STH' where id=8; -update noar ti set b0='4JJD618STH' where id=8; -update noar tt set b1='OKLS4X' where id=8; -update noar ti set b1='OKLS4X' where id=8; -update noar tt set b2='UBMIJRROMCESRXBOI9AHQ4GC' where id=8; -update noar ti set b2='UBMIJRROMCESRXBOI9AHQ4GC' where id=8; -update noar tt set b0='Z3WSQBRPALJ2HLQ' where id=9; -update noar ti set b0='Z3WSQBRPALJ2HLQ' where id=9; -update noar tt set b1='8SWZFU0F0XUH' where id=9; -update noar ti set b1='8SWZFU0F0XUH' where id=9; -update noar tt set b2='TUHBCKAOBEYGP0RWXHC5R' where id=9; -update noar ti set b2='TUHBCKAOBEYGP0RWXHC5R' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - b0 blob not null, - b1 tinyblob not null, - b2 tinyblob not null -) engine=tokudb; -insert into tt values (1,'','',''); -insert into tt values (2,'','',''); -insert into tt values (3,'','',''); -insert into tt values (4,'','',''); -insert into tt values (5,'','',''); -insert into tt values (6,'','',''); -insert into tt values (7,'','',''); -insert into tt values (8,'','',''); -insert into tt values (9,'','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set b0='R93JVVYJJGWJH' where id=1; -update noar ti set b0='R93JVVYJJGWJH' where id=1; -update noar tt set b1='Q7YYMWIZKRHL' where id=1; -update noar ti set b1='Q7YYMWIZKRHL' where id=1; -update noar tt set b2='IVYNOOU7MHO2VL29HBN' where id=1; -update noar ti set b2='IVYNOOU7MHO2VL29HBN' where id=1; -update noar tt set b0='DOZKTU7CZ5X1NQOBH4IWFS7YN5S' where id=2; -update noar ti set b0='DOZKTU7CZ5X1NQOBH4IWFS7YN5S' where id=2; -update noar tt set b1='O6' where id=2; -update noar ti set b1='O6' where id=2; -update noar tt set b2='6NF' where id=2; -update noar ti set b2='6NF' where id=2; -update noar tt set b0='R' where id=3; -update noar ti set b0='R' where id=3; -update noar tt set b1='GSRB8VQIA7SF7WRE3XW14MIHUG' where id=3; -update noar ti set b1='GSRB8VQIA7SF7WRE3XW14MIHUG' where id=3; -update noar tt set b2='Z4SEBK' where id=3; -update noar ti set b2='Z4SEBK' where id=3; -update noar tt set b0='EU0NG5RLNQ0FG93SIRDU9A' where id=4; -update noar ti set b0='EU0NG5RLNQ0FG93SIRDU9A' where id=4; -update noar tt set b1='IJL4UHLTW8BM4GA5657' where id=4; -update noar ti set b1='IJL4UHLTW8BM4GA5657' where id=4; -update noar tt set b2='23' where id=4; -update noar ti set b2='23' where id=4; -update noar tt set b0='ZDN5A5GS3OS7LQY88E01BHTQMFN5' where id=5; -update noar ti set b0='ZDN5A5GS3OS7LQY88E01BHTQMFN5' where id=5; -update noar tt set b1='V' where id=5; -update noar ti set b1='V' where id=5; -update noar tt set b2='BBKV7E3NK63DB7PTNB5ZD27X' where id=5; -update noar ti set b2='BBKV7E3NK63DB7PTNB5ZD27X' where id=5; -update noar tt set b0='VAFM6B2QNOD565NT' where id=6; -update noar ti set b0='VAFM6B2QNOD565NT' where id=6; -update noar tt set b1='NZXGAS' where id=6; -update noar ti set b1='NZXGAS' where id=6; -update noar tt set b2='2I1K' where id=6; -update noar ti set b2='2I1K' where id=6; -update noar tt set b0='2KHYAGWQDIRI7' where id=7; -update noar ti set b0='2KHYAGWQDIRI7' where id=7; -update noar tt set b1='Z1YJXP5X080O6TZZC6CXIH2' where id=7; -update noar ti set b1='Z1YJXP5X080O6TZZC6CXIH2' where id=7; -update noar tt set b2='MDPB0RZV9CYYPZKYVLW9OKU1NH' where id=7; -update noar ti set b2='MDPB0RZV9CYYPZKYVLW9OKU1NH' where id=7; -update noar tt set b0='E5XVD0B3DVXQ2' where id=8; -update noar ti set b0='E5XVD0B3DVXQ2' where id=8; -update noar tt set b1='P9T' where id=8; -update noar ti set b1='P9T' where id=8; -update noar tt set b2='YV20LJ44P09WMKTBX10YSXQ6628BSG' where id=8; -update noar ti set b2='YV20LJ44P09WMKTBX10YSXQ6628BSG' where id=8; -update noar tt set b0='90F4IHGCHNWIBXCKYHK6AOTXXSIRK' where id=9; -update noar ti set b0='90F4IHGCHNWIBXCKYHK6AOTXXSIRK' where id=9; -update noar tt set b1='CXCQVMV9GZ2GMKGXEDV3' where id=9; -update noar ti set b1='CXCQVMV9GZ2GMKGXEDV3' where id=9; -update noar tt set b2='2Y' where id=9; -update noar ti set b2='2Y' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - b0 blob null, - b1 tinyblob null, - b2 blob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set b0='PEP5' where id=1; -update noar ti set b0='PEP5' where id=1; -update noar tt set b1='0M1I4BRP' where id=1; -update noar ti set b1='0M1I4BRP' where id=1; -update noar tt set b2='TG68K9G337OOXS41DJOR' where id=1; -update noar ti set b2='TG68K9G337OOXS41DJOR' where id=1; -update noar tt set b0='LAFGLX4X2RI0P0CCVW1C07N9' where id=2; -update noar ti set b0='LAFGLX4X2RI0P0CCVW1C07N9' where id=2; -update noar tt set b1='Z' where id=2; -update noar ti set b1='Z' where id=2; -update noar tt set b2='5A1RV7LFLWKYH5LYKJ' where id=2; -update noar ti set b2='5A1RV7LFLWKYH5LYKJ' where id=2; -update noar tt set b0='7FQUO63Y4J3F6XY5TK8WBL1JC' where id=3; -update noar ti set b0='7FQUO63Y4J3F6XY5TK8WBL1JC' where id=3; -update noar tt set b1='ZCFL2' where id=3; -update noar ti set b1='ZCFL2' where id=3; -update noar tt set b2='UAHJRG88YC' where id=3; -update noar ti set b2='UAHJRG88YC' where id=3; -update noar tt set b0='X8MRZEL6JK4171PBO1LZA' where id=4; -update noar ti set b0='X8MRZEL6JK4171PBO1LZA' where id=4; -update noar tt set b1='2XLXGEI' where id=4; -update noar ti set b1='2XLXGEI' where id=4; -update noar tt set b2='C975AHK0Z27QDSYVVA4L' where id=4; -update noar ti set b2='C975AHK0Z27QDSYVVA4L' where id=4; -update noar tt set b0='W51BKRA1Y0OFVGT45X7I' where id=5; -update noar ti set b0='W51BKRA1Y0OFVGT45X7I' where id=5; -update noar tt set b1='VH3YFW0ZYJGQAYTYCWEBCH' where id=5; -update noar ti set b1='VH3YFW0ZYJGQAYTYCWEBCH' where id=5; -update noar tt set b2='FRBI6B14RG9U9UR592ET15APGR8W' where id=5; -update noar ti set b2='FRBI6B14RG9U9UR592ET15APGR8W' where id=5; -update noar tt set b0='TETT3YQ7QK9NAJRBHKC26GKRIB8Q' where id=6; -update noar ti set b0='TETT3YQ7QK9NAJRBHKC26GKRIB8Q' where id=6; -update noar tt set b1='8QBHGJIDHZDIG8P5PQ0T' where id=6; -update noar ti set b1='8QBHGJIDHZDIG8P5PQ0T' where id=6; -update noar tt set b2='TTTCN0' where id=6; -update noar ti set b2='TTTCN0' where id=6; -update noar tt set b0='0HCXJ' where id=7; -update noar ti set b0='0HCXJ' where id=7; -update noar tt set b1='6M20GGPW' where id=7; -update noar ti set b1='6M20GGPW' where id=7; -update noar tt set b2='H4PLC08K2YNCTTSEKOOATSOZC' where id=7; -update noar ti set b2='H4PLC08K2YNCTTSEKOOATSOZC' where id=7; -update noar tt set b0='6ZT2BYN' where id=8; -update noar ti set b0='6ZT2BYN' where id=8; -update noar tt set b1='C' where id=8; -update noar ti set b1='C' where id=8; -update noar tt set b2='9O50YGHXIBRJ1JAJV6XSXWBVLQ10F' where id=8; -update noar ti set b2='9O50YGHXIBRJ1JAJV6XSXWBVLQ10F' where id=8; -update noar tt set b0='0V2590NK7A2R8CUD' where id=9; -update noar ti set b0='0V2590NK7A2R8CUD' where id=9; -update noar tt set b1='A25YFMPK4BFE5NSBM2F' where id=9; -update noar ti set b1='A25YFMPK4BFE5NSBM2F' where id=9; -update noar tt set b2='FUTR' where id=9; -update noar ti set b2='FUTR' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - b0 blob not null, - b1 tinyblob not null, - b2 blob not null -) engine=tokudb; -insert into tt values (1,'','',''); -insert into tt values (2,'','',''); -insert into tt values (3,'','',''); -insert into tt values (4,'','',''); -insert into tt values (5,'','',''); -insert into tt values (6,'','',''); -insert into tt values (7,'','',''); -insert into tt values (8,'','',''); -insert into tt values (9,'','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set b0='SEEJNAC9DJK5GNKNR8W' where id=1; -update noar ti set b0='SEEJNAC9DJK5GNKNR8W' where id=1; -update noar tt set b1='FHRNE3KON82' where id=1; -update noar ti set b1='FHRNE3KON82' where id=1; -update noar tt set b2='2VY2YKWAQHTL3ZMQYYUSH2X' where id=1; -update noar ti set b2='2VY2YKWAQHTL3ZMQYYUSH2X' where id=1; -update noar tt set b0='ECECHGW0JU383KKXKWP22J9DFT48020' where id=2; -update noar ti set b0='ECECHGW0JU383KKXKWP22J9DFT48020' where id=2; -update noar tt set b1='9UA4TJ5UNGWAEXSRT' where id=2; -update noar ti set b1='9UA4TJ5UNGWAEXSRT' where id=2; -update noar tt set b2='NUJ3C6NAEHY' where id=2; -update noar ti set b2='NUJ3C6NAEHY' where id=2; -update noar tt set b0='BM45KXCGD13W' where id=3; -update noar ti set b0='BM45KXCGD13W' where id=3; -update noar tt set b1='OTM8SVJQF5YJ7QWW2MG7OG5' where id=3; -update noar ti set b1='OTM8SVJQF5YJ7QWW2MG7OG5' where id=3; -update noar tt set b2='0GW3NNBC1IBDHBHQA4N26UNZLK6E14' where id=3; -update noar ti set b2='0GW3NNBC1IBDHBHQA4N26UNZLK6E14' where id=3; -update noar tt set b0='9F53FRNHTUMARSSHZWVODPVETVD3FZ' where id=4; -update noar ti set b0='9F53FRNHTUMARSSHZWVODPVETVD3FZ' where id=4; -update noar tt set b1='4D58G6ES' where id=4; -update noar ti set b1='4D58G6ES' where id=4; -update noar tt set b2='9LGGUHPFFS6C8Q' where id=4; -update noar ti set b2='9LGGUHPFFS6C8Q' where id=4; -update noar tt set b0='8BE9BDC8CUJ' where id=5; -update noar ti set b0='8BE9BDC8CUJ' where id=5; -update noar tt set b1='5U9GAOG25169IZ1DVKQS' where id=5; -update noar ti set b1='5U9GAOG25169IZ1DVKQS' where id=5; -update noar tt set b2='TU' where id=5; -update noar ti set b2='TU' where id=5; -update noar tt set b0='B5YH59M1N4D2STGW53AEU3LKJU' where id=6; -update noar ti set b0='B5YH59M1N4D2STGW53AEU3LKJU' where id=6; -update noar tt set b1='BAYSON04AWUZKZPIII1HV4S4TVHTS9V' where id=6; -update noar ti set b1='BAYSON04AWUZKZPIII1HV4S4TVHTS9V' where id=6; -update noar tt set b2='HTRN4Y8HJ9J13NLKE3K27JXDWJX' where id=6; -update noar ti set b2='HTRN4Y8HJ9J13NLKE3K27JXDWJX' where id=6; -update noar tt set b0='GPVBNFUQWO2I1J7JH6HSK' where id=7; -update noar ti set b0='GPVBNFUQWO2I1J7JH6HSK' where id=7; -update noar tt set b1='DFAX1A56JBW6Y7AO0S4JFMTGEXFCRQU' where id=7; -update noar ti set b1='DFAX1A56JBW6Y7AO0S4JFMTGEXFCRQU' where id=7; -update noar tt set b2='3BVI11ICJX659667G265' where id=7; -update noar ti set b2='3BVI11ICJX659667G265' where id=7; -update noar tt set b0='ZME9A' where id=8; -update noar ti set b0='ZME9A' where id=8; -update noar tt set b1='UPTYEY4UNJPCEMCI6NVVL5LW' where id=8; -update noar ti set b1='UPTYEY4UNJPCEMCI6NVVL5LW' where id=8; -update noar tt set b2='0V6JJU3Z3VE' where id=8; -update noar ti set b2='0V6JJU3Z3VE' where id=8; -update noar tt set b0='F2BKAP8T8R8T4R3WKMVOXZ' where id=9; -update noar ti set b0='F2BKAP8T8R8T4R3WKMVOXZ' where id=9; -update noar tt set b1='JDF2T0VFB7W2MKQMU' where id=9; -update noar ti set b1='JDF2T0VFB7W2MKQMU' where id=9; -update noar tt set b2='TJGGCMAD2XJ7NHZ' where id=9; -update noar ti set b2='TJGGCMAD2XJ7NHZ' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - b0 blob null, - b1 tinyblob null, - b2 mediumblob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set b0='89HQW2DZA6JSQRBZZ0GD0HGCGY3' where id=1; -update noar ti set b0='89HQW2DZA6JSQRBZZ0GD0HGCGY3' where id=1; -update noar tt set b1='NQX44RYUJENELUWJRR0PNEMBRLM5QX' where id=1; -update noar ti set b1='NQX44RYUJENELUWJRR0PNEMBRLM5QX' where id=1; -update noar tt set b2='OZ' where id=1; -update noar ti set b2='OZ' where id=1; -update noar tt set b0='PMB9FGECN5X7GF' where id=2; -update noar ti set b0='PMB9FGECN5X7GF' where id=2; -update noar tt set b1='61' where id=2; -update noar ti set b1='61' where id=2; -update noar tt set b2='6ESZLOBK2DN2XTVPB' where id=2; -update noar ti set b2='6ESZLOBK2DN2XTVPB' where id=2; -update noar tt set b0='JVZBP4BYUPKX' where id=3; -update noar ti set b0='JVZBP4BYUPKX' where id=3; -update noar tt set b1='24263MZNY58HDNO62BSFKWPJW77MXLN' where id=3; -update noar ti set b1='24263MZNY58HDNO62BSFKWPJW77MXLN' where id=3; -update noar tt set b2='D' where id=3; -update noar ti set b2='D' where id=3; -update noar tt set b0='2Y5C' where id=4; -update noar ti set b0='2Y5C' where id=4; -update noar tt set b1='B186EW3PAX2OVMHA05MQOC5DP' where id=4; -update noar ti set b1='B186EW3PAX2OVMHA05MQOC5DP' where id=4; -update noar tt set b2='LHCC7Y7I3GC70S8ZDJZ77GQT3K' where id=4; -update noar ti set b2='LHCC7Y7I3GC70S8ZDJZ77GQT3K' where id=4; -update noar tt set b0='9BA' where id=5; -update noar ti set b0='9BA' where id=5; -update noar tt set b1='FK' where id=5; -update noar ti set b1='FK' where id=5; -update noar tt set b2='JG9DVPO8S' where id=5; -update noar ti set b2='JG9DVPO8S' where id=5; -update noar tt set b0='K0ZPUBQQR21SOZOROVA0WDPW3ZIT' where id=6; -update noar ti set b0='K0ZPUBQQR21SOZOROVA0WDPW3ZIT' where id=6; -update noar tt set b1='9KM3XYBPW40G3' where id=6; -update noar ti set b1='9KM3XYBPW40G3' where id=6; -update noar tt set b2='6J96HOV' where id=6; -update noar ti set b2='6J96HOV' where id=6; -update noar tt set b0='CDKVHA3MZX' where id=7; -update noar ti set b0='CDKVHA3MZX' where id=7; -update noar tt set b1='2DU' where id=7; -update noar ti set b1='2DU' where id=7; -update noar tt set b2='55FNZK1VXBM0Z0UIHHRBZCANSNQDJW' where id=7; -update noar ti set b2='55FNZK1VXBM0Z0UIHHRBZCANSNQDJW' where id=7; -update noar tt set b0='OA89GY2RBCBE8H3OLTYCBEZ7TO7BH2X' where id=8; -update noar ti set b0='OA89GY2RBCBE8H3OLTYCBEZ7TO7BH2X' where id=8; -update noar tt set b1='I' where id=8; -update noar ti set b1='I' where id=8; -update noar tt set b2='21OL' where id=8; -update noar ti set b2='21OL' where id=8; -update noar tt set b0='X2JEQ9NJ0YM6E0E88F5' where id=9; -update noar ti set b0='X2JEQ9NJ0YM6E0E88F5' where id=9; -update noar tt set b1='26RRYIA42ZYNE571RKXIXL' where id=9; -update noar ti set b1='26RRYIA42ZYNE571RKXIXL' where id=9; -update noar tt set b2='1QOCKUXOB1PQXHSYKU13' where id=9; -update noar ti set b2='1QOCKUXOB1PQXHSYKU13' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - b0 blob not null, - b1 tinyblob not null, - b2 mediumblob not null -) engine=tokudb; -insert into tt values (1,'','',''); -insert into tt values (2,'','',''); -insert into tt values (3,'','',''); -insert into tt values (4,'','',''); -insert into tt values (5,'','',''); -insert into tt values (6,'','',''); -insert into tt values (7,'','',''); -insert into tt values (8,'','',''); -insert into tt values (9,'','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set b0='QKJ2VXAUU54GLFSLNL' where id=1; -update noar ti set b0='QKJ2VXAUU54GLFSLNL' where id=1; -update noar tt set b1='VQHEADM5' where id=1; -update noar ti set b1='VQHEADM5' where id=1; -update noar tt set b2='4J3AR3P3CO' where id=1; -update noar ti set b2='4J3AR3P3CO' where id=1; -update noar tt set b0='V' where id=2; -update noar ti set b0='V' where id=2; -update noar tt set b1='Z5B9YFY7' where id=2; -update noar ti set b1='Z5B9YFY7' where id=2; -update noar tt set b2='5IZZ8O87R8H9JLOUKTACH89ZG' where id=2; -update noar ti set b2='5IZZ8O87R8H9JLOUKTACH89ZG' where id=2; -update noar tt set b0='0IKFJ6GBDKS1Q' where id=3; -update noar ti set b0='0IKFJ6GBDKS1Q' where id=3; -update noar tt set b1='BCAAXYSWPSNRPHU1S19E07HP' where id=3; -update noar ti set b1='BCAAXYSWPSNRPHU1S19E07HP' where id=3; -update noar tt set b2='9EKB1V28W8M7CGN' where id=3; -update noar ti set b2='9EKB1V28W8M7CGN' where id=3; -update noar tt set b0='WMZZ11JK' where id=4; -update noar ti set b0='WMZZ11JK' where id=4; -update noar tt set b1='X1RCX7ASBLJ1EGNP7' where id=4; -update noar ti set b1='X1RCX7ASBLJ1EGNP7' where id=4; -update noar tt set b2='4CB94JR2ZZ' where id=4; -update noar ti set b2='4CB94JR2ZZ' where id=4; -update noar tt set b0='M3' where id=5; -update noar ti set b0='M3' where id=5; -update noar tt set b1='6GAY6ZXVT1CMHYIWQ8XTGTDFI0WVQMKL' where id=5; -update noar ti set b1='6GAY6ZXVT1CMHYIWQ8XTGTDFI0WVQMKL' where id=5; -update noar tt set b2='UCDRVCSWHCWYC67SRAR' where id=5; -update noar ti set b2='UCDRVCSWHCWYC67SRAR' where id=5; -update noar tt set b0='D0W4JKELXUL' where id=6; -update noar ti set b0='D0W4JKELXUL' where id=6; -update noar tt set b1='HDA4YQQNXCIGWQ348Z' where id=6; -update noar ti set b1='HDA4YQQNXCIGWQ348Z' where id=6; -update noar tt set b2='JBAKJMPT2QNJ4IECLUY4JYNV' where id=6; -update noar ti set b2='JBAKJMPT2QNJ4IECLUY4JYNV' where id=6; -update noar tt set b0='WFO3OIB87X3DK6S1I' where id=7; -update noar ti set b0='WFO3OIB87X3DK6S1I' where id=7; -update noar tt set b1='RS3D5PBFZO9CJWVNLHYT' where id=7; -update noar ti set b1='RS3D5PBFZO9CJWVNLHYT' where id=7; -update noar tt set b2='G' where id=7; -update noar ti set b2='G' where id=7; -update noar tt set b0='2' where id=8; -update noar ti set b0='2' where id=8; -update noar tt set b1='DJRIBESMKXG8S' where id=8; -update noar ti set b1='DJRIBESMKXG8S' where id=8; -update noar tt set b2='KORZIRY4DCLUTCZKKYAY47RQR4XTE2KK' where id=8; -update noar ti set b2='KORZIRY4DCLUTCZKKYAY47RQR4XTE2KK' where id=8; -update noar tt set b0='706B' where id=9; -update noar ti set b0='706B' where id=9; -update noar tt set b1='5GMQUM37WM2XWG6HJV1JGG7AYBHADM5' where id=9; -update noar ti set b1='5GMQUM37WM2XWG6HJV1JGG7AYBHADM5' where id=9; -update noar tt set b2='T0508F2Q9KOGQZXN' where id=9; -update noar ti set b2='T0508F2Q9KOGQZXN' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - b0 blob null, - b1 tinyblob null, - b2 longblob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set b0='FDEE00SJGD9Y1W2K7VQSFM7BRF7' where id=1; -update noar ti set b0='FDEE00SJGD9Y1W2K7VQSFM7BRF7' where id=1; -update noar tt set b1='4VBS9YDTZEDRJJM7PZFOHR4YN' where id=1; -update noar ti set b1='4VBS9YDTZEDRJJM7PZFOHR4YN' where id=1; -update noar tt set b2='XMC33BXO5TD64AUOLM' where id=1; -update noar ti set b2='XMC33BXO5TD64AUOLM' where id=1; -update noar tt set b0='8KBB3HQLAWI69NSDRW2' where id=2; -update noar ti set b0='8KBB3HQLAWI69NSDRW2' where id=2; -update noar tt set b1='BQX7B0QR594IAITQCVRH6' where id=2; -update noar ti set b1='BQX7B0QR594IAITQCVRH6' where id=2; -update noar tt set b2='6ONNFQBSJLYNKSW57MJ35E' where id=2; -update noar ti set b2='6ONNFQBSJLYNKSW57MJ35E' where id=2; -update noar tt set b0='PRFTAF07EFUG74GO0' where id=3; -update noar ti set b0='PRFTAF07EFUG74GO0' where id=3; -update noar tt set b1='AE9388LG1Q1V6YZ6WPEIYS' where id=3; -update noar ti set b1='AE9388LG1Q1V6YZ6WPEIYS' where id=3; -update noar tt set b2='8BX07HRNM8WVGZDQQES5TT8IMLA' where id=3; -update noar ti set b2='8BX07HRNM8WVGZDQQES5TT8IMLA' where id=3; -update noar tt set b0='9UGBMVPXOGSEAMGBBF7KN59FK9P9' where id=4; -update noar ti set b0='9UGBMVPXOGSEAMGBBF7KN59FK9P9' where id=4; -update noar tt set b1='89JBHBYODU547JUCHIRHUZLGAKNVLSLH' where id=4; -update noar ti set b1='89JBHBYODU547JUCHIRHUZLGAKNVLSLH' where id=4; -update noar tt set b2='0UBOSKPIS51HKQHY91J99G4U1ERLFH' where id=4; -update noar ti set b2='0UBOSKPIS51HKQHY91J99G4U1ERLFH' where id=4; -update noar tt set b0='I8' where id=5; -update noar ti set b0='I8' where id=5; -update noar tt set b1='CTK5BOQ8BSRB3POABSCUGIVS09C' where id=5; -update noar ti set b1='CTK5BOQ8BSRB3POABSCUGIVS09C' where id=5; -update noar tt set b2='OU01N' where id=5; -update noar ti set b2='OU01N' where id=5; -update noar tt set b0='FMFS' where id=6; -update noar ti set b0='FMFS' where id=6; -update noar tt set b1='PHHGM8F60860CJEVB59B8QKM8T3ZP0' where id=6; -update noar ti set b1='PHHGM8F60860CJEVB59B8QKM8T3ZP0' where id=6; -update noar tt set b2='6KRPVX34JMJG41QBWZAJJ5' where id=6; -update noar ti set b2='6KRPVX34JMJG41QBWZAJJ5' where id=6; -update noar tt set b0='BV2VGQD' where id=7; -update noar ti set b0='BV2VGQD' where id=7; -update noar tt set b1='JY0VHUBJ0YZNNZ8VYAO6HSSYLMA6K' where id=7; -update noar ti set b1='JY0VHUBJ0YZNNZ8VYAO6HSSYLMA6K' where id=7; -update noar tt set b2='FGS7P4Q' where id=7; -update noar ti set b2='FGS7P4Q' where id=7; -update noar tt set b0='MQMZBVENUCJ8UJJ09XNW6IYU2HXQXO' where id=8; -update noar ti set b0='MQMZBVENUCJ8UJJ09XNW6IYU2HXQXO' where id=8; -update noar tt set b1='UASAGZ68COLPUOCTC55' where id=8; -update noar ti set b1='UASAGZ68COLPUOCTC55' where id=8; -update noar tt set b2='4Y8DGERP9R40MM24Z2' where id=8; -update noar ti set b2='4Y8DGERP9R40MM24Z2' where id=8; -update noar tt set b0='46R6F31ILFURWXRZ7SB2U2U' where id=9; -update noar ti set b0='46R6F31ILFURWXRZ7SB2U2U' where id=9; -update noar tt set b1='Y4Y4B3S7' where id=9; -update noar ti set b1='Y4Y4B3S7' where id=9; -update noar tt set b2='RYKIS12QMX' where id=9; -update noar ti set b2='RYKIS12QMX' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - b0 blob not null, - b1 tinyblob not null, - b2 longblob not null -) engine=tokudb; -insert into tt values (1,'','',''); -insert into tt values (2,'','',''); -insert into tt values (3,'','',''); -insert into tt values (4,'','',''); -insert into tt values (5,'','',''); -insert into tt values (6,'','',''); -insert into tt values (7,'','',''); -insert into tt values (8,'','',''); -insert into tt values (9,'','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set b0='HSFH0ZTYWAWAHMCG7FMSPJF0Z8' where id=1; -update noar ti set b0='HSFH0ZTYWAWAHMCG7FMSPJF0Z8' where id=1; -update noar tt set b1='FW0A82DHRGPWW172BE37QY7NZWGS056Q' where id=1; -update noar ti set b1='FW0A82DHRGPWW172BE37QY7NZWGS056Q' where id=1; -update noar tt set b2='7WFSWBH1ZB5K9VGDERAZ3' where id=1; -update noar ti set b2='7WFSWBH1ZB5K9VGDERAZ3' where id=1; -update noar tt set b0='BNLQV27O4' where id=2; -update noar ti set b0='BNLQV27O4' where id=2; -update noar tt set b1='GCPGNML' where id=2; -update noar ti set b1='GCPGNML' where id=2; -update noar tt set b2='KBJSGMHY037OUXI19MIIC8G36EH2G5' where id=2; -update noar ti set b2='KBJSGMHY037OUXI19MIIC8G36EH2G5' where id=2; -update noar tt set b0='L4C5DMA0ZHTX80DOO28LEZ3DRHFX1' where id=3; -update noar ti set b0='L4C5DMA0ZHTX80DOO28LEZ3DRHFX1' where id=3; -update noar tt set b1='TIA737NKMB4NYWV0CUVZRZS17X' where id=3; -update noar ti set b1='TIA737NKMB4NYWV0CUVZRZS17X' where id=3; -update noar tt set b2='PI6XBD7ZO8VYFN94Z5DF6W' where id=3; -update noar ti set b2='PI6XBD7ZO8VYFN94Z5DF6W' where id=3; -update noar tt set b0='YAXJ29E6' where id=4; -update noar ti set b0='YAXJ29E6' where id=4; -update noar tt set b1='UOYZGEDRRATO' where id=4; -update noar ti set b1='UOYZGEDRRATO' where id=4; -update noar tt set b2='JJ8IYIEGMSQ' where id=4; -update noar ti set b2='JJ8IYIEGMSQ' where id=4; -update noar tt set b0='6' where id=5; -update noar ti set b0='6' where id=5; -update noar tt set b1='EWW35KLM88QKELLNH1NU9GASCGK09E' where id=5; -update noar ti set b1='EWW35KLM88QKELLNH1NU9GASCGK09E' where id=5; -update noar tt set b2='AEL3YG2NYESC8SGI6' where id=5; -update noar ti set b2='AEL3YG2NYESC8SGI6' where id=5; -update noar tt set b0='T0BWPQIK7V1OX2Q5QKID3B9' where id=6; -update noar ti set b0='T0BWPQIK7V1OX2Q5QKID3B9' where id=6; -update noar tt set b1='HJ' where id=6; -update noar ti set b1='HJ' where id=6; -update noar tt set b2='LNVTTVZ0V9TJ1M' where id=6; -update noar ti set b2='LNVTTVZ0V9TJ1M' where id=6; -update noar tt set b0='8ZDS806O8WM9ZS4IY07M' where id=7; -update noar ti set b0='8ZDS806O8WM9ZS4IY07M' where id=7; -update noar tt set b1='VV' where id=7; -update noar ti set b1='VV' where id=7; -update noar tt set b2='WCC2CJAU6D7YDWNU81XH4RKKLMM' where id=7; -update noar ti set b2='WCC2CJAU6D7YDWNU81XH4RKKLMM' where id=7; -update noar tt set b0='LWQ7NYFOBTX0YHXK9' where id=8; -update noar ti set b0='LWQ7NYFOBTX0YHXK9' where id=8; -update noar tt set b1='PGQYIJRK' where id=8; -update noar ti set b1='PGQYIJRK' where id=8; -update noar tt set b2='533Q0D' where id=8; -update noar ti set b2='533Q0D' where id=8; -update noar tt set b0='JTI9QQ9S5U57YJPX7SOLZ7YJWXL' where id=9; -update noar ti set b0='JTI9QQ9S5U57YJPX7SOLZ7YJWXL' where id=9; -update noar tt set b1='UQ8T18V5N' where id=9; -update noar ti set b1='UQ8T18V5N' where id=9; -update noar tt set b2='L6V03NK4BM686NRIL2XUL1TJ2UQZM4TH' where id=9; -update noar ti set b2='L6V03NK4BM686NRIL2XUL1TJ2UQZM4TH' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - b0 blob null, - b1 tinyblob null, - b2 text null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set b0='PJ1E2HNNBI4ELOR3D12XPPOAQ9DSV' where id=1; -update noar ti set b0='PJ1E2HNNBI4ELOR3D12XPPOAQ9DSV' where id=1; -update noar tt set b1='68BP87VDYTSIYZJKLIL60BN603I0' where id=1; -update noar ti set b1='68BP87VDYTSIYZJKLIL60BN603I0' where id=1; -update noar tt set b2='0BBFOY9HAG6VIXO6Q13PW' where id=1; -update noar ti set b2='0BBFOY9HAG6VIXO6Q13PW' where id=1; -update noar tt set b0='SR5XPP0YP76VA6V9NQBZ' where id=2; -update noar ti set b0='SR5XPP0YP76VA6V9NQBZ' where id=2; -update noar tt set b1='R1REPTM31Q5' where id=2; -update noar ti set b1='R1REPTM31Q5' where id=2; -update noar tt set b2='DI4RB2W63KPOZ6TVT68TR' where id=2; -update noar ti set b2='DI4RB2W63KPOZ6TVT68TR' where id=2; -update noar tt set b0='ZLVRXQHYMMPX3P81712GCLHLNSX0' where id=3; -update noar ti set b0='ZLVRXQHYMMPX3P81712GCLHLNSX0' where id=3; -update noar tt set b1='CPPOLKZE6ONH1I2N' where id=3; -update noar ti set b1='CPPOLKZE6ONH1I2N' where id=3; -update noar tt set b2='WSUHEQQM7Y7XGNVEV' where id=3; -update noar ti set b2='WSUHEQQM7Y7XGNVEV' where id=3; -update noar tt set b0='9MJJKQGO0' where id=4; -update noar ti set b0='9MJJKQGO0' where id=4; -update noar tt set b1='YSBTVV7YXKMQBJSXJCM6B59' where id=4; -update noar ti set b1='YSBTVV7YXKMQBJSXJCM6B59' where id=4; -update noar tt set b2='JO1RCM80UZKQGTYSQJ6' where id=4; -update noar ti set b2='JO1RCM80UZKQGTYSQJ6' where id=4; -update noar tt set b0='0YD46MV1XPS' where id=5; -update noar ti set b0='0YD46MV1XPS' where id=5; -update noar tt set b1='03' where id=5; -update noar ti set b1='03' where id=5; -update noar tt set b2='0JOLC82TINTME' where id=5; -update noar ti set b2='0JOLC82TINTME' where id=5; -update noar tt set b0='I0J37Y85HOMS847YR1D9XFWM' where id=6; -update noar ti set b0='I0J37Y85HOMS847YR1D9XFWM' where id=6; -update noar tt set b1='5GPA0UDONNC6XIF6' where id=6; -update noar ti set b1='5GPA0UDONNC6XIF6' where id=6; -update noar tt set b2='U425D3Z41P8OC' where id=6; -update noar ti set b2='U425D3Z41P8OC' where id=6; -update noar tt set b0='WG' where id=7; -update noar ti set b0='WG' where id=7; -update noar tt set b1='A8INT0H' where id=7; -update noar ti set b1='A8INT0H' where id=7; -update noar tt set b2='JMGT52ZFPU6T67Z0Y20LS7' where id=7; -update noar ti set b2='JMGT52ZFPU6T67Z0Y20LS7' where id=7; -update noar tt set b0='KT8EFTIRVHR3Q0ZJVTWPJUBKOYF97IG2' where id=8; -update noar ti set b0='KT8EFTIRVHR3Q0ZJVTWPJUBKOYF97IG2' where id=8; -update noar tt set b1='BK5GAXW' where id=8; -update noar ti set b1='BK5GAXW' where id=8; -update noar tt set b2='SMTYS20L9C06PH8RRN87' where id=8; -update noar ti set b2='SMTYS20L9C06PH8RRN87' where id=8; -update noar tt set b0='2UELG1RA45IC6FLK97PLSE87VD8ZAF' where id=9; -update noar ti set b0='2UELG1RA45IC6FLK97PLSE87VD8ZAF' where id=9; -update noar tt set b1='9' where id=9; -update noar ti set b1='9' where id=9; -update noar tt set b2='8LK5FLJIKUY6GL5' where id=9; -update noar ti set b2='8LK5FLJIKUY6GL5' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - b0 blob not null, - b1 tinyblob not null, - b2 text not null -) engine=tokudb; -insert into tt values (1,'','',''); -insert into tt values (2,'','',''); -insert into tt values (3,'','',''); -insert into tt values (4,'','',''); -insert into tt values (5,'','',''); -insert into tt values (6,'','',''); -insert into tt values (7,'','',''); -insert into tt values (8,'','',''); -insert into tt values (9,'','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set b0='AAXLS5G0PPUS' where id=1; -update noar ti set b0='AAXLS5G0PPUS' where id=1; -update noar tt set b1='WBBO5Q' where id=1; -update noar ti set b1='WBBO5Q' where id=1; -update noar tt set b2='814OEE9XUVIGN3PU7U3APBPI' where id=1; -update noar ti set b2='814OEE9XUVIGN3PU7U3APBPI' where id=1; -update noar tt set b0='XPLJ89D046BAKOO3EVDW1' where id=2; -update noar ti set b0='XPLJ89D046BAKOO3EVDW1' where id=2; -update noar tt set b1='TT8X8VOJG' where id=2; -update noar ti set b1='TT8X8VOJG' where id=2; -update noar tt set b2='JVV0CL' where id=2; -update noar ti set b2='JVV0CL' where id=2; -update noar tt set b0='J' where id=3; -update noar ti set b0='J' where id=3; -update noar tt set b1='RSRIUJ' where id=3; -update noar ti set b1='RSRIUJ' where id=3; -update noar tt set b2='LR2ZIH' where id=3; -update noar ti set b2='LR2ZIH' where id=3; -update noar tt set b0='6GF9CAL1EJLYO' where id=4; -update noar ti set b0='6GF9CAL1EJLYO' where id=4; -update noar tt set b1='JQYFXCUBLAWP2B' where id=4; -update noar ti set b1='JQYFXCUBLAWP2B' where id=4; -update noar tt set b2='LICKD8USL37F5F3RYYPSQSN' where id=4; -update noar ti set b2='LICKD8USL37F5F3RYYPSQSN' where id=4; -update noar tt set b0='Y4LGGE9XBOZ4' where id=5; -update noar ti set b0='Y4LGGE9XBOZ4' where id=5; -update noar tt set b1='6ZC2MRJ' where id=5; -update noar ti set b1='6ZC2MRJ' where id=5; -update noar tt set b2='30X3EE19FXZQVYSDTLDNAUCXP97SW99' where id=5; -update noar ti set b2='30X3EE19FXZQVYSDTLDNAUCXP97SW99' where id=5; -update noar tt set b0='KD9RVH' where id=6; -update noar ti set b0='KD9RVH' where id=6; -update noar tt set b1='U8GYRTCCXBVL7D' where id=6; -update noar ti set b1='U8GYRTCCXBVL7D' where id=6; -update noar tt set b2='0Z822KQQ4CI3G20C290O05' where id=6; -update noar ti set b2='0Z822KQQ4CI3G20C290O05' where id=6; -update noar tt set b0='TOO353J5QJ5PXT7QR' where id=7; -update noar ti set b0='TOO353J5QJ5PXT7QR' where id=7; -update noar tt set b1='9L4KVXIM9E1WF6Z8EB5APXVEL' where id=7; -update noar ti set b1='9L4KVXIM9E1WF6Z8EB5APXVEL' where id=7; -update noar tt set b2='F9XI1K' where id=7; -update noar ti set b2='F9XI1K' where id=7; -update noar tt set b0='39IV1R3FSSA3SV' where id=8; -update noar ti set b0='39IV1R3FSSA3SV' where id=8; -update noar tt set b1='WM15C2NO3WMTQ1L56LAQ' where id=8; -update noar ti set b1='WM15C2NO3WMTQ1L56LAQ' where id=8; -update noar tt set b2='BEQ04' where id=8; -update noar ti set b2='BEQ04' where id=8; -update noar tt set b0='MCIDX6SA137ZUIDQH5VQNE3HNLDLV1S' where id=9; -update noar ti set b0='MCIDX6SA137ZUIDQH5VQNE3HNLDLV1S' where id=9; -update noar tt set b1='WLNH9CVRXRM4' where id=9; -update noar ti set b1='WLNH9CVRXRM4' where id=9; -update noar tt set b2='JY2IKQH2A1L6ENF0NF73' where id=9; -update noar ti set b2='JY2IKQH2A1L6ENF0NF73' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - b0 blob null, - b1 blob null, - b2 tinyblob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set b0='IXZWHX4CZCW9ML2S65PTDI1HJ35U2ON' where id=1; -update noar ti set b0='IXZWHX4CZCW9ML2S65PTDI1HJ35U2ON' where id=1; -update noar tt set b1='QR3HW6I0KDWUK5' where id=1; -update noar ti set b1='QR3HW6I0KDWUK5' where id=1; -update noar tt set b2='U22MTI3N89H50N4BOYB7TUIS1PTV16EV' where id=1; -update noar ti set b2='U22MTI3N89H50N4BOYB7TUIS1PTV16EV' where id=1; -update noar tt set b0='QCS3D652TVA9DYYIYX87' where id=2; -update noar ti set b0='QCS3D652TVA9DYYIYX87' where id=2; -update noar tt set b1='DQGMST' where id=2; -update noar ti set b1='DQGMST' where id=2; -update noar tt set b2='LK9HJC4TVACHAHRATRA0TEB9K8OK' where id=2; -update noar ti set b2='LK9HJC4TVACHAHRATRA0TEB9K8OK' where id=2; -update noar tt set b0='SYTWGM7QYA9JO45UV85ED4' where id=3; -update noar ti set b0='SYTWGM7QYA9JO45UV85ED4' where id=3; -update noar tt set b1='MUB5JTTLW' where id=3; -update noar ti set b1='MUB5JTTLW' where id=3; -update noar tt set b2='YQR3ICEQA71' where id=3; -update noar ti set b2='YQR3ICEQA71' where id=3; -update noar tt set b0='SX' where id=4; -update noar ti set b0='SX' where id=4; -update noar tt set b1='IDG64I47X6PI0FYMB' where id=4; -update noar ti set b1='IDG64I47X6PI0FYMB' where id=4; -update noar tt set b2='2SHFW1M6UB437PA' where id=4; -update noar ti set b2='2SHFW1M6UB437PA' where id=4; -update noar tt set b0='43ZLUHPPBMAK6EA7SFID8' where id=5; -update noar ti set b0='43ZLUHPPBMAK6EA7SFID8' where id=5; -update noar tt set b1='H9L5L0KQG9IWXK46L1T' where id=5; -update noar ti set b1='H9L5L0KQG9IWXK46L1T' where id=5; -update noar tt set b2='8E09LXUMO' where id=5; -update noar ti set b2='8E09LXUMO' where id=5; -update noar tt set b0='CMCNAJWVO2QHB7C2UE2GFY' where id=6; -update noar ti set b0='CMCNAJWVO2QHB7C2UE2GFY' where id=6; -update noar tt set b1='JWVMMU' where id=6; -update noar ti set b1='JWVMMU' where id=6; -update noar tt set b2='7ER1I3QIR23P06LDKY1DMSGXR' where id=6; -update noar ti set b2='7ER1I3QIR23P06LDKY1DMSGXR' where id=6; -update noar tt set b0='Q8FPD00R73' where id=7; -update noar ti set b0='Q8FPD00R73' where id=7; -update noar tt set b1='1PXML1EAX7EVDACPEJV' where id=7; -update noar ti set b1='1PXML1EAX7EVDACPEJV' where id=7; -update noar tt set b2='Z84KEYJQRZA01CZR67' where id=7; -update noar ti set b2='Z84KEYJQRZA01CZR67' where id=7; -update noar tt set b0='Y5NA6ZHJ7M9X43' where id=8; -update noar ti set b0='Y5NA6ZHJ7M9X43' where id=8; -update noar tt set b1='GRNUNYHSFWWB6SJI37F5HBHHK3IJJ' where id=8; -update noar ti set b1='GRNUNYHSFWWB6SJI37F5HBHHK3IJJ' where id=8; -update noar tt set b2='I1XNSPT08' where id=8; -update noar ti set b2='I1XNSPT08' where id=8; -update noar tt set b0='8TBDS1ZAVCTZCZ8D' where id=9; -update noar ti set b0='8TBDS1ZAVCTZCZ8D' where id=9; -update noar tt set b1='W' where id=9; -update noar ti set b1='W' where id=9; -update noar tt set b2='95QSR3SL5KUZ' where id=9; -update noar ti set b2='95QSR3SL5KUZ' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - b0 blob not null, - b1 blob not null, - b2 tinyblob not null -) engine=tokudb; -insert into tt values (1,'','',''); -insert into tt values (2,'','',''); -insert into tt values (3,'','',''); -insert into tt values (4,'','',''); -insert into tt values (5,'','',''); -insert into tt values (6,'','',''); -insert into tt values (7,'','',''); -insert into tt values (8,'','',''); -insert into tt values (9,'','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set b0='WVAI8AEDFU6X1E4O6JYXNV7ELO90Q' where id=1; -update noar ti set b0='WVAI8AEDFU6X1E4O6JYXNV7ELO90Q' where id=1; -update noar tt set b1='6RHS0DF2OE1KKY6EKQO70' where id=1; -update noar ti set b1='6RHS0DF2OE1KKY6EKQO70' where id=1; -update noar tt set b2='Z1D4ZRTTRG3DAD8P6SO4FH1FV' where id=1; -update noar ti set b2='Z1D4ZRTTRG3DAD8P6SO4FH1FV' where id=1; -update noar tt set b0='GE89XGF9XIH8' where id=2; -update noar ti set b0='GE89XGF9XIH8' where id=2; -update noar tt set b1='AILJ5MACC5W' where id=2; -update noar ti set b1='AILJ5MACC5W' where id=2; -update noar tt set b2='9RGXWEA6CGO8G' where id=2; -update noar ti set b2='9RGXWEA6CGO8G' where id=2; -update noar tt set b0='043GDPRT3PN3UJCPQ6SUQB' where id=3; -update noar ti set b0='043GDPRT3PN3UJCPQ6SUQB' where id=3; -update noar tt set b1='WMCKIY0NQJI7J8T4J2' where id=3; -update noar ti set b1='WMCKIY0NQJI7J8T4J2' where id=3; -update noar tt set b2='COC9JP7DGW7E3LZU48449L' where id=3; -update noar ti set b2='COC9JP7DGW7E3LZU48449L' where id=3; -update noar tt set b0='IY4NG8VI1XELF8QKT9D42U5B3ERULKS' where id=4; -update noar ti set b0='IY4NG8VI1XELF8QKT9D42U5B3ERULKS' where id=4; -update noar tt set b1='L8ENZSLYV1KUT2849FO4A8DKHDYUDC5' where id=4; -update noar ti set b1='L8ENZSLYV1KUT2849FO4A8DKHDYUDC5' where id=4; -update noar tt set b2='DMNEG6' where id=4; -update noar ti set b2='DMNEG6' where id=4; -update noar tt set b0='U4NO' where id=5; -update noar ti set b0='U4NO' where id=5; -update noar tt set b1='I4X7OL' where id=5; -update noar ti set b1='I4X7OL' where id=5; -update noar tt set b2='SIG8DLU3EUFWPXA4AOD0' where id=5; -update noar ti set b2='SIG8DLU3EUFWPXA4AOD0' where id=5; -update noar tt set b0='2DSFS0IMOS' where id=6; -update noar ti set b0='2DSFS0IMOS' where id=6; -update noar tt set b1='LVTRKJA3QM8NS9GP3TOOYK9CYFKQQFOX' where id=6; -update noar ti set b1='LVTRKJA3QM8NS9GP3TOOYK9CYFKQQFOX' where id=6; -update noar tt set b2='ZTN7NFM8E584MLMPIVO0PDNX5XRVH' where id=6; -update noar ti set b2='ZTN7NFM8E584MLMPIVO0PDNX5XRVH' where id=6; -update noar tt set b0='R3UX8RP4PDR4CJK' where id=7; -update noar ti set b0='R3UX8RP4PDR4CJK' where id=7; -update noar tt set b1='16R9JH7' where id=7; -update noar ti set b1='16R9JH7' where id=7; -update noar tt set b2='U81LKIQVFI20UJEUO0VS2OAV' where id=7; -update noar ti set b2='U81LKIQVFI20UJEUO0VS2OAV' where id=7; -update noar tt set b0='HB9HCVU' where id=8; -update noar ti set b0='HB9HCVU' where id=8; -update noar tt set b1='470I0WQAP2666' where id=8; -update noar ti set b1='470I0WQAP2666' where id=8; -update noar tt set b2='SGZ1B0ARGAHV2YQ' where id=8; -update noar ti set b2='SGZ1B0ARGAHV2YQ' where id=8; -update noar tt set b0='1AY7PKEEPN32' where id=9; -update noar ti set b0='1AY7PKEEPN32' where id=9; -update noar tt set b1='VUQRLRXIHSJ6V264GOEJYWEWO0A' where id=9; -update noar ti set b1='VUQRLRXIHSJ6V264GOEJYWEWO0A' where id=9; -update noar tt set b2='7Y0W723Y23YVYJ6GPA4F' where id=9; -update noar ti set b2='7Y0W723Y23YVYJ6GPA4F' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - b0 blob null, - b1 blob null, - b2 blob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set b0='98P9O693V1NXZ9LP' where id=1; -update noar ti set b0='98P9O693V1NXZ9LP' where id=1; -update noar tt set b1='K9T6WBSQB7PVAK3JZVXN' where id=1; -update noar ti set b1='K9T6WBSQB7PVAK3JZVXN' where id=1; -update noar tt set b2='IPZGMVHE63DI5BDS05A487' where id=1; -update noar ti set b2='IPZGMVHE63DI5BDS05A487' where id=1; -update noar tt set b0='BSVY0QSL9W9GPFKMSO5A2BN7HMC1UX' where id=2; -update noar ti set b0='BSVY0QSL9W9GPFKMSO5A2BN7HMC1UX' where id=2; -update noar tt set b1='MIFHIG' where id=2; -update noar ti set b1='MIFHIG' where id=2; -update noar tt set b2='6139EB0SNTZEP0XKAOPM' where id=2; -update noar ti set b2='6139EB0SNTZEP0XKAOPM' where id=2; -update noar tt set b0='T73I1FL5AUDUA' where id=3; -update noar ti set b0='T73I1FL5AUDUA' where id=3; -update noar tt set b1='42ZUAEJSMHLR8N068TS7ZRVK47D' where id=3; -update noar ti set b1='42ZUAEJSMHLR8N068TS7ZRVK47D' where id=3; -update noar tt set b2='I6UK8YK5FO4OF' where id=3; -update noar ti set b2='I6UK8YK5FO4OF' where id=3; -update noar tt set b0='PTR8P4K3LALD285V' where id=4; -update noar ti set b0='PTR8P4K3LALD285V' where id=4; -update noar tt set b1='QGQ8M6WWTGIVZ9J11MRIAJZ7LYY' where id=4; -update noar ti set b1='QGQ8M6WWTGIVZ9J11MRIAJZ7LYY' where id=4; -update noar tt set b2='A54MBVPNYX02' where id=4; -update noar ti set b2='A54MBVPNYX02' where id=4; -update noar tt set b0='G2IRAH5HEZGV1' where id=5; -update noar ti set b0='G2IRAH5HEZGV1' where id=5; -update noar tt set b1='K7P8CWD3G1NEJ0B606NEC0AM9EWM' where id=5; -update noar ti set b1='K7P8CWD3G1NEJ0B606NEC0AM9EWM' where id=5; -update noar tt set b2='9WC5K0JYPSGEP0CTP59' where id=5; -update noar ti set b2='9WC5K0JYPSGEP0CTP59' where id=5; -update noar tt set b0='3S' where id=6; -update noar ti set b0='3S' where id=6; -update noar tt set b1='ZQ96C864' where id=6; -update noar ti set b1='ZQ96C864' where id=6; -update noar tt set b2='HHPMIIPN0ZDT6A9VVB675V29VS' where id=6; -update noar ti set b2='HHPMIIPN0ZDT6A9VVB675V29VS' where id=6; -update noar tt set b0='18XOL' where id=7; -update noar ti set b0='18XOL' where id=7; -update noar tt set b1='DXAXGVAYWAIEYDUQIJSH2J5J1K5' where id=7; -update noar ti set b1='DXAXGVAYWAIEYDUQIJSH2J5J1K5' where id=7; -update noar tt set b2='805OY0Y0B7J974FGTWN2QMO9' where id=7; -update noar ti set b2='805OY0Y0B7J974FGTWN2QMO9' where id=7; -update noar tt set b0='N1U6ZUL0MWO' where id=8; -update noar ti set b0='N1U6ZUL0MWO' where id=8; -update noar tt set b1='EBXY2S14913PV2MHYM8' where id=8; -update noar ti set b1='EBXY2S14913PV2MHYM8' where id=8; -update noar tt set b2='E6V25MRE8EGW4KRBEC744LST69R1HU5' where id=8; -update noar ti set b2='E6V25MRE8EGW4KRBEC744LST69R1HU5' where id=8; -update noar tt set b0='RFT7ZQI963AT85JNAQPO' where id=9; -update noar ti set b0='RFT7ZQI963AT85JNAQPO' where id=9; -update noar tt set b1='1S' where id=9; -update noar ti set b1='1S' where id=9; -update noar tt set b2='3ZC31H3O22' where id=9; -update noar ti set b2='3ZC31H3O22' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - b0 blob not null, - b1 blob not null, - b2 blob not null -) engine=tokudb; -insert into tt values (1,'','',''); -insert into tt values (2,'','',''); -insert into tt values (3,'','',''); -insert into tt values (4,'','',''); -insert into tt values (5,'','',''); -insert into tt values (6,'','',''); -insert into tt values (7,'','',''); -insert into tt values (8,'','',''); -insert into tt values (9,'','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set b0='QAO3X5CJKILWGDLA' where id=1; -update noar ti set b0='QAO3X5CJKILWGDLA' where id=1; -update noar tt set b1='9F9E8DSZ48V4PI50' where id=1; -update noar ti set b1='9F9E8DSZ48V4PI50' where id=1; -update noar tt set b2='AP6SL7SAH96NR228TS1F6' where id=1; -update noar ti set b2='AP6SL7SAH96NR228TS1F6' where id=1; -update noar tt set b0='DYTLSR4NZ6RVVUAM' where id=2; -update noar ti set b0='DYTLSR4NZ6RVVUAM' where id=2; -update noar tt set b1='TA5VJ42QB227AMUHDPL0IRSZSEMC' where id=2; -update noar ti set b1='TA5VJ42QB227AMUHDPL0IRSZSEMC' where id=2; -update noar tt set b2='ETQ8U6W998SW28J48' where id=2; -update noar ti set b2='ETQ8U6W998SW28J48' where id=2; -update noar tt set b0='5FSBN03813OG12CF54PTN9' where id=3; -update noar ti set b0='5FSBN03813OG12CF54PTN9' where id=3; -update noar tt set b1='0HFJUX62W4V28TFU3E0XJY' where id=3; -update noar ti set b1='0HFJUX62W4V28TFU3E0XJY' where id=3; -update noar tt set b2='17N' where id=3; -update noar ti set b2='17N' where id=3; -update noar tt set b0='D' where id=4; -update noar ti set b0='D' where id=4; -update noar tt set b1='Z3JBC1MTM2XC746ONBL44' where id=4; -update noar ti set b1='Z3JBC1MTM2XC746ONBL44' where id=4; -update noar tt set b2='RTD' where id=4; -update noar ti set b2='RTD' where id=4; -update noar tt set b0='9CCBGMSK9F8Q2RUXFS5VDVLGEZ63KWMS' where id=5; -update noar ti set b0='9CCBGMSK9F8Q2RUXFS5VDVLGEZ63KWMS' where id=5; -update noar tt set b1='UB3EX0L1N71AYE6BM85OWAHPDPC' where id=5; -update noar ti set b1='UB3EX0L1N71AYE6BM85OWAHPDPC' where id=5; -update noar tt set b2='MID3MUDG' where id=5; -update noar ti set b2='MID3MUDG' where id=5; -update noar tt set b0='UDX1TX8O69PLNWCR03VE3B3Z8IYCF8O' where id=6; -update noar ti set b0='UDX1TX8O69PLNWCR03VE3B3Z8IYCF8O' where id=6; -update noar tt set b1='IO07JDTZD0YSCW7D7JULKH2XR8Q' where id=6; -update noar ti set b1='IO07JDTZD0YSCW7D7JULKH2XR8Q' where id=6; -update noar tt set b2='RG4DI8AJED6CSID7V3ZO4OGTTZ1' where id=6; -update noar ti set b2='RG4DI8AJED6CSID7V3ZO4OGTTZ1' where id=6; -update noar tt set b0='LPRTXX5' where id=7; -update noar ti set b0='LPRTXX5' where id=7; -update noar tt set b1='HHIXGFDHRB' where id=7; -update noar ti set b1='HHIXGFDHRB' where id=7; -update noar tt set b2='9H8NPOIGYBP6U487P1ZUROFOAT5SJW97' where id=7; -update noar ti set b2='9H8NPOIGYBP6U487P1ZUROFOAT5SJW97' where id=7; -update noar tt set b0='KK7Y06H' where id=8; -update noar ti set b0='KK7Y06H' where id=8; -update noar tt set b1='01SMRXUZ2R' where id=8; -update noar ti set b1='01SMRXUZ2R' where id=8; -update noar tt set b2='FRLFQZEXW7O2YP4M' where id=8; -update noar ti set b2='FRLFQZEXW7O2YP4M' where id=8; -update noar tt set b0='WM9K587L' where id=9; -update noar ti set b0='WM9K587L' where id=9; -update noar tt set b1='00BIDQXMH' where id=9; -update noar ti set b1='00BIDQXMH' where id=9; -update noar tt set b2='DKLS' where id=9; -update noar ti set b2='DKLS' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - b0 blob null, - b1 blob null, - b2 mediumblob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set b0='ZI0WNWKEK8CLBNA8586IKD62TIMCSJ2B' where id=1; -update noar ti set b0='ZI0WNWKEK8CLBNA8586IKD62TIMCSJ2B' where id=1; -update noar tt set b1='Y2TW67X7' where id=1; -update noar ti set b1='Y2TW67X7' where id=1; -update noar tt set b2='PH' where id=1; -update noar ti set b2='PH' where id=1; -update noar tt set b0='VUIQ65K' where id=2; -update noar ti set b0='VUIQ65K' where id=2; -update noar tt set b1='0VGZ8KWSB' where id=2; -update noar ti set b1='0VGZ8KWSB' where id=2; -update noar tt set b2='C8DYRPU2JW1CP5' where id=2; -update noar ti set b2='C8DYRPU2JW1CP5' where id=2; -update noar tt set b0='X' where id=3; -update noar ti set b0='X' where id=3; -update noar tt set b1='Q5F3MZZ' where id=3; -update noar ti set b1='Q5F3MZZ' where id=3; -update noar tt set b2='YZ1R0TJLARJ61DHG6G39XW5N891Y' where id=3; -update noar ti set b2='YZ1R0TJLARJ61DHG6G39XW5N891Y' where id=3; -update noar tt set b0='O1K423U69LMMA5E1HKH' where id=4; -update noar ti set b0='O1K423U69LMMA5E1HKH' where id=4; -update noar tt set b1='R6VOP94BXWDICWTD1N' where id=4; -update noar ti set b1='R6VOP94BXWDICWTD1N' where id=4; -update noar tt set b2='I6SFGIYV5Z0R6FA17FT289Y2JKEMLD' where id=4; -update noar ti set b2='I6SFGIYV5Z0R6FA17FT289Y2JKEMLD' where id=4; -update noar tt set b0='P0PTIZBT0VBQ8Z5O1' where id=5; -update noar ti set b0='P0PTIZBT0VBQ8Z5O1' where id=5; -update noar tt set b1='Z3NM65FDT5ES2CCH0T1' where id=5; -update noar ti set b1='Z3NM65FDT5ES2CCH0T1' where id=5; -update noar tt set b2='CF2' where id=5; -update noar ti set b2='CF2' where id=5; -update noar tt set b0='LWK' where id=6; -update noar ti set b0='LWK' where id=6; -update noar tt set b1='3YF2DGHA' where id=6; -update noar ti set b1='3YF2DGHA' where id=6; -update noar tt set b2='DFQCONK04' where id=6; -update noar ti set b2='DFQCONK04' where id=6; -update noar tt set b0='5KAMOFWPXOP' where id=7; -update noar ti set b0='5KAMOFWPXOP' where id=7; -update noar tt set b1='BHU8F' where id=7; -update noar ti set b1='BHU8F' where id=7; -update noar tt set b2='NIRQ47GP' where id=7; -update noar ti set b2='NIRQ47GP' where id=7; -update noar tt set b0='T4OH01O811EB8H' where id=8; -update noar ti set b0='T4OH01O811EB8H' where id=8; -update noar tt set b1='0FHEH8U045T3Z3VECYRNXQYGU4WU' where id=8; -update noar ti set b1='0FHEH8U045T3Z3VECYRNXQYGU4WU' where id=8; -update noar tt set b2='14T35GPVUVPXONKOO0S7D4JM6TPHO7SH' where id=8; -update noar ti set b2='14T35GPVUVPXONKOO0S7D4JM6TPHO7SH' where id=8; -update noar tt set b0='6894B5HADGHLN' where id=9; -update noar ti set b0='6894B5HADGHLN' where id=9; -update noar tt set b1='V3F401GUM1H60HSYN5XMXN69P' where id=9; -update noar ti set b1='V3F401GUM1H60HSYN5XMXN69P' where id=9; -update noar tt set b2='BANDB' where id=9; -update noar ti set b2='BANDB' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - b0 blob not null, - b1 blob not null, - b2 mediumblob not null -) engine=tokudb; -insert into tt values (1,'','',''); -insert into tt values (2,'','',''); -insert into tt values (3,'','',''); -insert into tt values (4,'','',''); -insert into tt values (5,'','',''); -insert into tt values (6,'','',''); -insert into tt values (7,'','',''); -insert into tt values (8,'','',''); -insert into tt values (9,'','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set b0='YAX' where id=1; -update noar ti set b0='YAX' where id=1; -update noar tt set b1='UUA8JI8ZRUIL' where id=1; -update noar ti set b1='UUA8JI8ZRUIL' where id=1; -update noar tt set b2='Z5P2NI5V8AWINU6KLP' where id=1; -update noar ti set b2='Z5P2NI5V8AWINU6KLP' where id=1; -update noar tt set b0='JAWR6XH3F0TOPI47J6KEOQT82NW' where id=2; -update noar ti set b0='JAWR6XH3F0TOPI47J6KEOQT82NW' where id=2; -update noar tt set b1='QYP3K9BECZ9NS41BTMY27' where id=2; -update noar ti set b1='QYP3K9BECZ9NS41BTMY27' where id=2; -update noar tt set b2='8VUI5AMSC92RZX8GH1' where id=2; -update noar ti set b2='8VUI5AMSC92RZX8GH1' where id=2; -update noar tt set b0='D0W7G4U9SPQVLG6ZPAVN1LL' where id=3; -update noar ti set b0='D0W7G4U9SPQVLG6ZPAVN1LL' where id=3; -update noar tt set b1='R2YXFUKPZBADY6N1GCQFEXRY078FNA' where id=3; -update noar ti set b1='R2YXFUKPZBADY6N1GCQFEXRY078FNA' where id=3; -update noar tt set b2='R7PLQXEX25WHZ94HW7HYP' where id=3; -update noar ti set b2='R7PLQXEX25WHZ94HW7HYP' where id=3; -update noar tt set b0='U0W9ZVMKM7K8' where id=4; -update noar ti set b0='U0W9ZVMKM7K8' where id=4; -update noar tt set b1='U' where id=4; -update noar ti set b1='U' where id=4; -update noar tt set b2='3FOIEYZCL2X3UW' where id=4; -update noar ti set b2='3FOIEYZCL2X3UW' where id=4; -update noar tt set b0='P9NSYCPG1P0BFEQOHQ0YL5C9VMKZU' where id=5; -update noar ti set b0='P9NSYCPG1P0BFEQOHQ0YL5C9VMKZU' where id=5; -update noar tt set b1='4OY294SQFNFZM' where id=5; -update noar ti set b1='4OY294SQFNFZM' where id=5; -update noar tt set b2='XDK7' where id=5; -update noar ti set b2='XDK7' where id=5; -update noar tt set b0='MPY0FEGK1ZQ8CG90G' where id=6; -update noar ti set b0='MPY0FEGK1ZQ8CG90G' where id=6; -update noar tt set b1='N4MM4PIAHXR4GYYIQ8NP7RRY3RVWC' where id=6; -update noar ti set b1='N4MM4PIAHXR4GYYIQ8NP7RRY3RVWC' where id=6; -update noar tt set b2='HENDN4UMXS3BFHV9B4Z3ZUXKW927RM' where id=6; -update noar ti set b2='HENDN4UMXS3BFHV9B4Z3ZUXKW927RM' where id=6; -update noar tt set b0='CWW8WZ21JMGASA1EGAM6T8GPN37KXT65' where id=7; -update noar ti set b0='CWW8WZ21JMGASA1EGAM6T8GPN37KXT65' where id=7; -update noar tt set b1='GHXPI36S' where id=7; -update noar ti set b1='GHXPI36S' where id=7; -update noar tt set b2='1G8VRE7Y58F0' where id=7; -update noar ti set b2='1G8VRE7Y58F0' where id=7; -update noar tt set b0='V4IG5V8MPL6VYH8LK3198WTU' where id=8; -update noar ti set b0='V4IG5V8MPL6VYH8LK3198WTU' where id=8; -update noar tt set b1='M9LL14XZOAO9JY6COFRWECC' where id=8; -update noar ti set b1='M9LL14XZOAO9JY6COFRWECC' where id=8; -update noar tt set b2='NVRAKYIWYPFFOD0BT5T4Z' where id=8; -update noar ti set b2='NVRAKYIWYPFFOD0BT5T4Z' where id=8; -update noar tt set b0='M0JILK4VK7SVE557XUW908ZNHM4VD1TV' where id=9; -update noar ti set b0='M0JILK4VK7SVE557XUW908ZNHM4VD1TV' where id=9; -update noar tt set b1='K9U3DVOMLAVP8KGQ11NYEV6HE6JS' where id=9; -update noar ti set b1='K9U3DVOMLAVP8KGQ11NYEV6HE6JS' where id=9; -update noar tt set b2='N9ENZX5NTSTOHLVBPRY9' where id=9; -update noar ti set b2='N9ENZX5NTSTOHLVBPRY9' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - b0 blob null, - b1 blob null, - b2 longblob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set b0='56AMJL983G85V1XPLSP0' where id=1; -update noar ti set b0='56AMJL983G85V1XPLSP0' where id=1; -update noar tt set b1='3FWFB4' where id=1; -update noar ti set b1='3FWFB4' where id=1; -update noar tt set b2='0DZO1YWIZDXEZSW6QL3R1JE' where id=1; -update noar ti set b2='0DZO1YWIZDXEZSW6QL3R1JE' where id=1; -update noar tt set b0='DH6YE' where id=2; -update noar ti set b0='DH6YE' where id=2; -update noar tt set b1='Z1Y31' where id=2; -update noar ti set b1='Z1Y31' where id=2; -update noar tt set b2='C6H46H7IPKQ9RTN' where id=2; -update noar ti set b2='C6H46H7IPKQ9RTN' where id=2; -update noar tt set b0='M2JTOSE3ZUE7Z8D' where id=3; -update noar ti set b0='M2JTOSE3ZUE7Z8D' where id=3; -update noar tt set b1='P6ITGSNVA97Z11AGIW5BZLTFNDVG9GZ0' where id=3; -update noar ti set b1='P6ITGSNVA97Z11AGIW5BZLTFNDVG9GZ0' where id=3; -update noar tt set b2='D8RUIFXX15BSYKOTZLM1J6YVECXQ' where id=3; -update noar ti set b2='D8RUIFXX15BSYKOTZLM1J6YVECXQ' where id=3; -update noar tt set b0='ZB' where id=4; -update noar ti set b0='ZB' where id=4; -update noar tt set b1='BY264UQW5RX5T2KB2M' where id=4; -update noar ti set b1='BY264UQW5RX5T2KB2M' where id=4; -update noar tt set b2='P4Y' where id=4; -update noar ti set b2='P4Y' where id=4; -update noar tt set b0='R0E536JU0' where id=5; -update noar ti set b0='R0E536JU0' where id=5; -update noar tt set b1='NE1TFYCHQG8VZIMH8KB1NDG' where id=5; -update noar ti set b1='NE1TFYCHQG8VZIMH8KB1NDG' where id=5; -update noar tt set b2='L9FE' where id=5; -update noar ti set b2='L9FE' where id=5; -update noar tt set b0='IOW7HK5VP3JMKWOWR' where id=6; -update noar ti set b0='IOW7HK5VP3JMKWOWR' where id=6; -update noar tt set b1='H5PH3OLPW2' where id=6; -update noar ti set b1='H5PH3OLPW2' where id=6; -update noar tt set b2='A4SJ6UOC' where id=6; -update noar ti set b2='A4SJ6UOC' where id=6; -update noar tt set b0='OGXACY' where id=7; -update noar ti set b0='OGXACY' where id=7; -update noar tt set b1='1HDURLDWQFU6W0R68' where id=7; -update noar ti set b1='1HDURLDWQFU6W0R68' where id=7; -update noar tt set b2='9KSVB3P8GBVL7WSS29W6E' where id=7; -update noar ti set b2='9KSVB3P8GBVL7WSS29W6E' where id=7; -update noar tt set b0='AZ60M6KYCGAB08GR' where id=8; -update noar ti set b0='AZ60M6KYCGAB08GR' where id=8; -update noar tt set b1='5ET0Q4B4IE8BI4TG8' where id=8; -update noar ti set b1='5ET0Q4B4IE8BI4TG8' where id=8; -update noar tt set b2='KM8' where id=8; -update noar ti set b2='KM8' where id=8; -update noar tt set b0='Z2LE2LISQB2VTFH2M022RRN76BOQB' where id=9; -update noar ti set b0='Z2LE2LISQB2VTFH2M022RRN76BOQB' where id=9; -update noar tt set b1='B02MWV49R10TWTQZGDEMHFO1G4' where id=9; -update noar ti set b1='B02MWV49R10TWTQZGDEMHFO1G4' where id=9; -update noar tt set b2='9' where id=9; -update noar ti set b2='9' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - b0 blob not null, - b1 blob not null, - b2 longblob not null -) engine=tokudb; -insert into tt values (1,'','',''); -insert into tt values (2,'','',''); -insert into tt values (3,'','',''); -insert into tt values (4,'','',''); -insert into tt values (5,'','',''); -insert into tt values (6,'','',''); -insert into tt values (7,'','',''); -insert into tt values (8,'','',''); -insert into tt values (9,'','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set b0='D5RQ5CZ' where id=1; -update noar ti set b0='D5RQ5CZ' where id=1; -update noar tt set b1='M3XX7GMJ6LGX2GY75V20W4Q0LFBIX65' where id=1; -update noar ti set b1='M3XX7GMJ6LGX2GY75V20W4Q0LFBIX65' where id=1; -update noar tt set b2='PW' where id=1; -update noar ti set b2='PW' where id=1; -update noar tt set b0='RP7G3Z93X41UAZDJH' where id=2; -update noar ti set b0='RP7G3Z93X41UAZDJH' where id=2; -update noar tt set b1='3F310XIFVRVS663KAOF' where id=2; -update noar ti set b1='3F310XIFVRVS663KAOF' where id=2; -update noar tt set b2='ZN' where id=2; -update noar ti set b2='ZN' where id=2; -update noar tt set b0='HCO5RM66HFYY21VCRYK8IE274CUI0Z45' where id=3; -update noar ti set b0='HCO5RM66HFYY21VCRYK8IE274CUI0Z45' where id=3; -update noar tt set b1='O2HHP099ZWSR4AV7QTY' where id=3; -update noar ti set b1='O2HHP099ZWSR4AV7QTY' where id=3; -update noar tt set b2='I9AY8RMGX3YBY6DC104JW4UX' where id=3; -update noar ti set b2='I9AY8RMGX3YBY6DC104JW4UX' where id=3; -update noar tt set b0='Q4GH6SWGDV6' where id=4; -update noar ti set b0='Q4GH6SWGDV6' where id=4; -update noar tt set b1='NZGJYI3Z8PPAERH4WBKGH17O6RXN3RRD' where id=4; -update noar ti set b1='NZGJYI3Z8PPAERH4WBKGH17O6RXN3RRD' where id=4; -update noar tt set b2='M0VB12ETATHJXPV71C' where id=4; -update noar ti set b2='M0VB12ETATHJXPV71C' where id=4; -update noar tt set b0='CRT1768U969' where id=5; -update noar ti set b0='CRT1768U969' where id=5; -update noar tt set b1='9G5190KKG4KY7VYLNRTRDAYGRZLMRVN' where id=5; -update noar ti set b1='9G5190KKG4KY7VYLNRTRDAYGRZLMRVN' where id=5; -update noar tt set b2='MDH77KMMKEUX0WLYNL9ZHP7GTZ5' where id=5; -update noar ti set b2='MDH77KMMKEUX0WLYNL9ZHP7GTZ5' where id=5; -update noar tt set b0='E' where id=6; -update noar ti set b0='E' where id=6; -update noar tt set b1='AG1HPZKJZI2V3I2OY2KYZMF6R60R' where id=6; -update noar ti set b1='AG1HPZKJZI2V3I2OY2KYZMF6R60R' where id=6; -update noar tt set b2='ELA3ZVF41SQIDZSQ40' where id=6; -update noar ti set b2='ELA3ZVF41SQIDZSQ40' where id=6; -update noar tt set b0='3S' where id=7; -update noar ti set b0='3S' where id=7; -update noar tt set b1='NV' where id=7; -update noar ti set b1='NV' where id=7; -update noar tt set b2='0NXW8QE' where id=7; -update noar ti set b2='0NXW8QE' where id=7; -update noar tt set b0='YWF1WJL1YAHW5S' where id=8; -update noar ti set b0='YWF1WJL1YAHW5S' where id=8; -update noar tt set b1='QT18FZ87HUWU09YV50P' where id=8; -update noar ti set b1='QT18FZ87HUWU09YV50P' where id=8; -update noar tt set b2='F44MCHPPP4NVX0MGQX3YDHKK0ZX3' where id=8; -update noar ti set b2='F44MCHPPP4NVX0MGQX3YDHKK0ZX3' where id=8; -update noar tt set b0='HJ' where id=9; -update noar ti set b0='HJ' where id=9; -update noar tt set b1='399DX' where id=9; -update noar ti set b1='399DX' where id=9; -update noar tt set b2='D' where id=9; -update noar ti set b2='D' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - b0 blob null, - b1 blob null, - b2 text null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set b0='KUL9R62R5XHT9TLKXWAJ2' where id=1; -update noar ti set b0='KUL9R62R5XHT9TLKXWAJ2' where id=1; -update noar tt set b1='I16AISVK0C84JN94O' where id=1; -update noar ti set b1='I16AISVK0C84JN94O' where id=1; -update noar tt set b2='DZBSYN6XM3LQRMUOHVS' where id=1; -update noar ti set b2='DZBSYN6XM3LQRMUOHVS' where id=1; -update noar tt set b0='9QX7EWVD01RNO0K31H1C46P5Y' where id=2; -update noar ti set b0='9QX7EWVD01RNO0K31H1C46P5Y' where id=2; -update noar tt set b1='T5W4UV' where id=2; -update noar ti set b1='T5W4UV' where id=2; -update noar tt set b2='NSM3QUAFH69G13E71ZQ5FT' where id=2; -update noar ti set b2='NSM3QUAFH69G13E71ZQ5FT' where id=2; -update noar tt set b0='FZMG4K9M9' where id=3; -update noar ti set b0='FZMG4K9M9' where id=3; -update noar tt set b1='KDK2I3CZ5ODM4COM' where id=3; -update noar ti set b1='KDK2I3CZ5ODM4COM' where id=3; -update noar tt set b2='Q8CHH3VNZXM5JBOAK' where id=3; -update noar ti set b2='Q8CHH3VNZXM5JBOAK' where id=3; -update noar tt set b0='Z' where id=4; -update noar ti set b0='Z' where id=4; -update noar tt set b1='T9Z' where id=4; -update noar ti set b1='T9Z' where id=4; -update noar tt set b2='26PX3YLA2DBLW2KQ9T8ER825PG5AU2VX' where id=4; -update noar ti set b2='26PX3YLA2DBLW2KQ9T8ER825PG5AU2VX' where id=4; -update noar tt set b0='IYOSIQVCY0QYKLDMDBVTR5CKP47YC9C' where id=5; -update noar ti set b0='IYOSIQVCY0QYKLDMDBVTR5CKP47YC9C' where id=5; -update noar tt set b1='NEOGGYNOPY4JC1JXJ' where id=5; -update noar ti set b1='NEOGGYNOPY4JC1JXJ' where id=5; -update noar tt set b2='QD8W0VPV' where id=5; -update noar ti set b2='QD8W0VPV' where id=5; -update noar tt set b0='OHEIOC8XO6C7RTLXBIH99777UU7WZE3I' where id=6; -update noar ti set b0='OHEIOC8XO6C7RTLXBIH99777UU7WZE3I' where id=6; -update noar tt set b1='GDVTQ' where id=6; -update noar ti set b1='GDVTQ' where id=6; -update noar tt set b2='KSON25ZJHPPV2VCA1MADX2BGAGOEZ' where id=6; -update noar ti set b2='KSON25ZJHPPV2VCA1MADX2BGAGOEZ' where id=6; -update noar tt set b0='BYN85BOSV1PLLQB2AGSJLXBIHQUR' where id=7; -update noar ti set b0='BYN85BOSV1PLLQB2AGSJLXBIHQUR' where id=7; -update noar tt set b1='18EPY4WOA0PRS4UEH8IDQWFRMONY' where id=7; -update noar ti set b1='18EPY4WOA0PRS4UEH8IDQWFRMONY' where id=7; -update noar tt set b2='2K1WWKV3FFQ9GE1IVCG0' where id=7; -update noar ti set b2='2K1WWKV3FFQ9GE1IVCG0' where id=7; -update noar tt set b0='6O50X7JG01O476B92PVF' where id=8; -update noar ti set b0='6O50X7JG01O476B92PVF' where id=8; -update noar tt set b1='JF1' where id=8; -update noar ti set b1='JF1' where id=8; -update noar tt set b2='O8JXY5CFDL20' where id=8; -update noar ti set b2='O8JXY5CFDL20' where id=8; -update noar tt set b0='V27DZ' where id=9; -update noar ti set b0='V27DZ' where id=9; -update noar tt set b1='NBZCN2ASHLBS0SFFZ87R0D98' where id=9; -update noar ti set b1='NBZCN2ASHLBS0SFFZ87R0D98' where id=9; -update noar tt set b2='GEL' where id=9; -update noar ti set b2='GEL' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - b0 blob not null, - b1 blob not null, - b2 text not null -) engine=tokudb; -insert into tt values (1,'','',''); -insert into tt values (2,'','',''); -insert into tt values (3,'','',''); -insert into tt values (4,'','',''); -insert into tt values (5,'','',''); -insert into tt values (6,'','',''); -insert into tt values (7,'','',''); -insert into tt values (8,'','',''); -insert into tt values (9,'','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set b0='2J50PUSKS4CLILJ8BE' where id=1; -update noar ti set b0='2J50PUSKS4CLILJ8BE' where id=1; -update noar tt set b1='IZ7O58ECHPB9EJEF8H43UMVWC' where id=1; -update noar ti set b1='IZ7O58ECHPB9EJEF8H43UMVWC' where id=1; -update noar tt set b2='KSB8DY5VBCSVTJ' where id=1; -update noar ti set b2='KSB8DY5VBCSVTJ' where id=1; -update noar tt set b0='OP4RAOMGCIBUS9WP8O3GE8' where id=2; -update noar ti set b0='OP4RAOMGCIBUS9WP8O3GE8' where id=2; -update noar tt set b1='YXPLOGN9198B' where id=2; -update noar ti set b1='YXPLOGN9198B' where id=2; -update noar tt set b2='LA3M88Q' where id=2; -update noar ti set b2='LA3M88Q' where id=2; -update noar tt set b0='KHVIJHK6JLLYEGNG59QD6C6BXQFOD' where id=3; -update noar ti set b0='KHVIJHK6JLLYEGNG59QD6C6BXQFOD' where id=3; -update noar tt set b1='AQWK4196CLH31W5OF0K' where id=3; -update noar ti set b1='AQWK4196CLH31W5OF0K' where id=3; -update noar tt set b2='WQ3TDBB7I9' where id=3; -update noar ti set b2='WQ3TDBB7I9' where id=3; -update noar tt set b0='83D0GE8JEZBMPUGRXWAGACZB8TBSNMN' where id=4; -update noar ti set b0='83D0GE8JEZBMPUGRXWAGACZB8TBSNMN' where id=4; -update noar tt set b1='I6QS32TU' where id=4; -update noar ti set b1='I6QS32TU' where id=4; -update noar tt set b2='SV6UBP82JBWED' where id=4; -update noar ti set b2='SV6UBP82JBWED' where id=4; -update noar tt set b0='U' where id=5; -update noar ti set b0='U' where id=5; -update noar tt set b1='G5PVDKYQE2SFB5W445VJEK22JABFMB' where id=5; -update noar ti set b1='G5PVDKYQE2SFB5W445VJEK22JABFMB' where id=5; -update noar tt set b2='EOGDCBZLP7EB4O2V8SN' where id=5; -update noar ti set b2='EOGDCBZLP7EB4O2V8SN' where id=5; -update noar tt set b0='SA56' where id=6; -update noar ti set b0='SA56' where id=6; -update noar tt set b1='AAD24XLTEBO3R3HXZ2BHV0QY0J' where id=6; -update noar ti set b1='AAD24XLTEBO3R3HXZ2BHV0QY0J' where id=6; -update noar tt set b2='6TTM4VGMWV44BX457MNLAHN35KT' where id=6; -update noar ti set b2='6TTM4VGMWV44BX457MNLAHN35KT' where id=6; -update noar tt set b0='1G32Y30YJMQZKCV60V6RMHTY34' where id=7; -update noar ti set b0='1G32Y30YJMQZKCV60V6RMHTY34' where id=7; -update noar tt set b1='FRBYVQX0L2XTWWQJ0MNBTE13BUCCW' where id=7; -update noar ti set b1='FRBYVQX0L2XTWWQJ0MNBTE13BUCCW' where id=7; -update noar tt set b2='2C1PB72YP3XJPYDLS5Q90SDMSM5O275H' where id=7; -update noar ti set b2='2C1PB72YP3XJPYDLS5Q90SDMSM5O275H' where id=7; -update noar tt set b0='34QQYD9ABXX820FRK278269SY5RZ3' where id=8; -update noar ti set b0='34QQYD9ABXX820FRK278269SY5RZ3' where id=8; -update noar tt set b1='UQG9UCA6JER9C6AWJP9QLXV' where id=8; -update noar ti set b1='UQG9UCA6JER9C6AWJP9QLXV' where id=8; -update noar tt set b2='QIMCR0S7' where id=8; -update noar ti set b2='QIMCR0S7' where id=8; -update noar tt set b0='UHXB' where id=9; -update noar ti set b0='UHXB' where id=9; -update noar tt set b1='V8STWNA1AEQVKVDB7ZL8' where id=9; -update noar ti set b1='V8STWNA1AEQVKVDB7ZL8' where id=9; -update noar tt set b2='8KZE20JFQ7F80V' where id=9; -update noar ti set b2='8KZE20JFQ7F80V' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - b0 blob null, - b1 mediumblob null, - b2 tinyblob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set b0='7CDYYCLYVV3P' where id=1; -update noar ti set b0='7CDYYCLYVV3P' where id=1; -update noar tt set b1='GBZFHZ9' where id=1; -update noar ti set b1='GBZFHZ9' where id=1; -update noar tt set b2='T4BUQYE' where id=1; -update noar ti set b2='T4BUQYE' where id=1; -update noar tt set b0='S2EZBRBRWZ021679I5BNYZCP1VIUTJ' where id=2; -update noar ti set b0='S2EZBRBRWZ021679I5BNYZCP1VIUTJ' where id=2; -update noar tt set b1='G7LQ' where id=2; -update noar ti set b1='G7LQ' where id=2; -update noar tt set b2='XMN08ZVS2TRN6HE4JX9L' where id=2; -update noar ti set b2='XMN08ZVS2TRN6HE4JX9L' where id=2; -update noar tt set b0='O0P' where id=3; -update noar ti set b0='O0P' where id=3; -update noar tt set b1='S4OTKHKYR5UWJYEI2ILP04YL3JLT' where id=3; -update noar ti set b1='S4OTKHKYR5UWJYEI2ILP04YL3JLT' where id=3; -update noar tt set b2='J2EZDFMNI04QC35' where id=3; -update noar ti set b2='J2EZDFMNI04QC35' where id=3; -update noar tt set b0='AA7754SASPCBQ3KQRP21M' where id=4; -update noar ti set b0='AA7754SASPCBQ3KQRP21M' where id=4; -update noar tt set b1='1F358JYFLDLOXI' where id=4; -update noar ti set b1='1F358JYFLDLOXI' where id=4; -update noar tt set b2='HR0AQW8FX1E' where id=4; -update noar ti set b2='HR0AQW8FX1E' where id=4; -update noar tt set b0='PVMT' where id=5; -update noar ti set b0='PVMT' where id=5; -update noar tt set b1='2XR3QS' where id=5; -update noar ti set b1='2XR3QS' where id=5; -update noar tt set b2='ITAGAD' where id=5; -update noar ti set b2='ITAGAD' where id=5; -update noar tt set b0='6L68VMJY3SYTRRDC4HYA' where id=6; -update noar ti set b0='6L68VMJY3SYTRRDC4HYA' where id=6; -update noar tt set b1='WJUHNDSXWWAG' where id=6; -update noar ti set b1='WJUHNDSXWWAG' where id=6; -update noar tt set b2='58RVBGH37AO139VKFAQSK' where id=6; -update noar ti set b2='58RVBGH37AO139VKFAQSK' where id=6; -update noar tt set b0='67UD1' where id=7; -update noar ti set b0='67UD1' where id=7; -update noar tt set b1='2I8W7ESDGFM4Y5E' where id=7; -update noar ti set b1='2I8W7ESDGFM4Y5E' where id=7; -update noar tt set b2='X9EX9UGJEVO1OFNBW2A2GC2HARGT1' where id=7; -update noar ti set b2='X9EX9UGJEVO1OFNBW2A2GC2HARGT1' where id=7; -update noar tt set b0='0VR9B5RD28PB4W4QMWVRRFPVCL' where id=8; -update noar ti set b0='0VR9B5RD28PB4W4QMWVRRFPVCL' where id=8; -update noar tt set b1='5C7BUUI807GM63M' where id=8; -update noar ti set b1='5C7BUUI807GM63M' where id=8; -update noar tt set b2='K' where id=8; -update noar ti set b2='K' where id=8; -update noar tt set b0='ER' where id=9; -update noar ti set b0='ER' where id=9; -update noar tt set b1='OQ3MYTZL4ESWL6Z8V' where id=9; -update noar ti set b1='OQ3MYTZL4ESWL6Z8V' where id=9; -update noar tt set b2='JIDOINACMUZU' where id=9; -update noar ti set b2='JIDOINACMUZU' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - b0 blob not null, - b1 mediumblob not null, - b2 tinyblob not null -) engine=tokudb; -insert into tt values (1,'','',''); -insert into tt values (2,'','',''); -insert into tt values (3,'','',''); -insert into tt values (4,'','',''); -insert into tt values (5,'','',''); -insert into tt values (6,'','',''); -insert into tt values (7,'','',''); -insert into tt values (8,'','',''); -insert into tt values (9,'','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set b0='C6' where id=1; -update noar ti set b0='C6' where id=1; -update noar tt set b1='SOU6MIDKZC2SRYNIPESS8XSDENUA4' where id=1; -update noar ti set b1='SOU6MIDKZC2SRYNIPESS8XSDENUA4' where id=1; -update noar tt set b2='ARIUNWKSHU12NXO3RMMAPORPTP6GW' where id=1; -update noar ti set b2='ARIUNWKSHU12NXO3RMMAPORPTP6GW' where id=1; -update noar tt set b0='QO39RTKRAI' where id=2; -update noar ti set b0='QO39RTKRAI' where id=2; -update noar tt set b1='Y3XLVR33AXH7TVD9U07C2UO' where id=2; -update noar ti set b1='Y3XLVR33AXH7TVD9U07C2UO' where id=2; -update noar tt set b2='RT9ZNAF' where id=2; -update noar ti set b2='RT9ZNAF' where id=2; -update noar tt set b0='L987SRYNJVZ2P3E3SIY5I3' where id=3; -update noar ti set b0='L987SRYNJVZ2P3E3SIY5I3' where id=3; -update noar tt set b1='GLGA44' where id=3; -update noar ti set b1='GLGA44' where id=3; -update noar tt set b2='RU6U5' where id=3; -update noar ti set b2='RU6U5' where id=3; -update noar tt set b0='LZKU6COFRGCPOZK1VMVMS0F7' where id=4; -update noar ti set b0='LZKU6COFRGCPOZK1VMVMS0F7' where id=4; -update noar tt set b1='PYDZ60VDWUDKA9FQWP06A0I' where id=4; -update noar ti set b1='PYDZ60VDWUDKA9FQWP06A0I' where id=4; -update noar tt set b2='6JH9Q' where id=4; -update noar ti set b2='6JH9Q' where id=4; -update noar tt set b0='L0RESOTBTQV' where id=5; -update noar ti set b0='L0RESOTBTQV' where id=5; -update noar tt set b1='D2' where id=5; -update noar ti set b1='D2' where id=5; -update noar tt set b2='UG2GQNWXSYM' where id=5; -update noar ti set b2='UG2GQNWXSYM' where id=5; -update noar tt set b0='T8J' where id=6; -update noar ti set b0='T8J' where id=6; -update noar tt set b1='A3V96R26JYETEC7BRJNUOU3CYHXU5OR' where id=6; -update noar ti set b1='A3V96R26JYETEC7BRJNUOU3CYHXU5OR' where id=6; -update noar tt set b2='LCALHV6OS4RAO2MQSAX93NP334Q' where id=6; -update noar ti set b2='LCALHV6OS4RAO2MQSAX93NP334Q' where id=6; -update noar tt set b0='1YYQCPJV7OUC' where id=7; -update noar ti set b0='1YYQCPJV7OUC' where id=7; -update noar tt set b1='J76VDPWGNVZ81' where id=7; -update noar ti set b1='J76VDPWGNVZ81' where id=7; -update noar tt set b2='BG56WWJXFXMIHG4VUFK10XP' where id=7; -update noar ti set b2='BG56WWJXFXMIHG4VUFK10XP' where id=7; -update noar tt set b0='6BBHJLWDH8QZZH' where id=8; -update noar ti set b0='6BBHJLWDH8QZZH' where id=8; -update noar tt set b1='71P23X3Q77XFK3S0QQEO9MZVC88' where id=8; -update noar ti set b1='71P23X3Q77XFK3S0QQEO9MZVC88' where id=8; -update noar tt set b2='LZXU4W69N2DR' where id=8; -update noar ti set b2='LZXU4W69N2DR' where id=8; -update noar tt set b0='HETGMBF3GSCNU2C4DASNP' where id=9; -update noar ti set b0='HETGMBF3GSCNU2C4DASNP' where id=9; -update noar tt set b1='22GV5RJOB5H7741' where id=9; -update noar ti set b1='22GV5RJOB5H7741' where id=9; -update noar tt set b2='IDDR5KA9OHDG70M5ZC' where id=9; -update noar ti set b2='IDDR5KA9OHDG70M5ZC' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - b0 blob null, - b1 mediumblob null, - b2 blob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set b0='QHY19YQGCFEAQNPCDES9WSB7W7D7' where id=1; -update noar ti set b0='QHY19YQGCFEAQNPCDES9WSB7W7D7' where id=1; -update noar tt set b1='AF' where id=1; -update noar ti set b1='AF' where id=1; -update noar tt set b2='Y7KFGW5T7SV' where id=1; -update noar ti set b2='Y7KFGW5T7SV' where id=1; -update noar tt set b0='VC0IUSILD4PN81LG48YUY' where id=2; -update noar ti set b0='VC0IUSILD4PN81LG48YUY' where id=2; -update noar tt set b1='HRQ45I18BYA7GQBSMS' where id=2; -update noar ti set b1='HRQ45I18BYA7GQBSMS' where id=2; -update noar tt set b2='TF2HGCXUXXICVYW7PJG50K7BN' where id=2; -update noar ti set b2='TF2HGCXUXXICVYW7PJG50K7BN' where id=2; -update noar tt set b0='DM28KDBKQ71' where id=3; -update noar ti set b0='DM28KDBKQ71' where id=3; -update noar tt set b1='ZOTKU2Z25LMH78I1EGKTSVE7U0' where id=3; -update noar ti set b1='ZOTKU2Z25LMH78I1EGKTSVE7U0' where id=3; -update noar tt set b2='GPP6VN80AFJMNJ168695' where id=3; -update noar ti set b2='GPP6VN80AFJMNJ168695' where id=3; -update noar tt set b0='LRNFCS3D8HJL28' where id=4; -update noar ti set b0='LRNFCS3D8HJL28' where id=4; -update noar tt set b1='8EWKJ5ORQNDO158EJN0' where id=4; -update noar ti set b1='8EWKJ5ORQNDO158EJN0' where id=4; -update noar tt set b2='16JQ36TDSTKNJ780L2N9U' where id=4; -update noar ti set b2='16JQ36TDSTKNJ780L2N9U' where id=4; -update noar tt set b0='56RW5' where id=5; -update noar ti set b0='56RW5' where id=5; -update noar tt set b1='R7TL1XXDTN005D74MY9L' where id=5; -update noar ti set b1='R7TL1XXDTN005D74MY9L' where id=5; -update noar tt set b2='R0C' where id=5; -update noar ti set b2='R0C' where id=5; -update noar tt set b0='8ISFYDRRMQW0NDBPEC9L' where id=6; -update noar ti set b0='8ISFYDRRMQW0NDBPEC9L' where id=6; -update noar tt set b1='9PZLQTMB3RQHAP8XV5NI61LMQ0OM5' where id=6; -update noar ti set b1='9PZLQTMB3RQHAP8XV5NI61LMQ0OM5' where id=6; -update noar tt set b2='JUN9TLDZDV2N0RW9' where id=6; -update noar ti set b2='JUN9TLDZDV2N0RW9' where id=6; -update noar tt set b0='QCQ1GDVCVPDJH87QV' where id=7; -update noar ti set b0='QCQ1GDVCVPDJH87QV' where id=7; -update noar tt set b1='LOVX89LS6NE' where id=7; -update noar ti set b1='LOVX89LS6NE' where id=7; -update noar tt set b2='P' where id=7; -update noar ti set b2='P' where id=7; -update noar tt set b0='H7J22C64A28FAJ0TPGZC4N09EW7HP6Y' where id=8; -update noar ti set b0='H7J22C64A28FAJ0TPGZC4N09EW7HP6Y' where id=8; -update noar tt set b1='Z8DU5NMHP8XOI' where id=8; -update noar ti set b1='Z8DU5NMHP8XOI' where id=8; -update noar tt set b2='J205717P18L' where id=8; -update noar ti set b2='J205717P18L' where id=8; -update noar tt set b0='BAEHP6VAXCU2PC79GRQJ4TFE4ZTTPHB' where id=9; -update noar ti set b0='BAEHP6VAXCU2PC79GRQJ4TFE4ZTTPHB' where id=9; -update noar tt set b1='D4IJGT76XBJ9WSIC' where id=9; -update noar ti set b1='D4IJGT76XBJ9WSIC' where id=9; -update noar tt set b2='ERZ182THFSO1X1C' where id=9; -update noar ti set b2='ERZ182THFSO1X1C' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - b0 blob not null, - b1 mediumblob not null, - b2 blob not null -) engine=tokudb; -insert into tt values (1,'','',''); -insert into tt values (2,'','',''); -insert into tt values (3,'','',''); -insert into tt values (4,'','',''); -insert into tt values (5,'','',''); -insert into tt values (6,'','',''); -insert into tt values (7,'','',''); -insert into tt values (8,'','',''); -insert into tt values (9,'','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set b0='17AJDBI9' where id=1; -update noar ti set b0='17AJDBI9' where id=1; -update noar tt set b1='A53RGXM55SQQ16PE98R4ILCHOJL9KK27' where id=1; -update noar ti set b1='A53RGXM55SQQ16PE98R4ILCHOJL9KK27' where id=1; -update noar tt set b2='UIVSAMSD5SONPH0OYYX' where id=1; -update noar ti set b2='UIVSAMSD5SONPH0OYYX' where id=1; -update noar tt set b0='9W1O62Y4CR2FV5K0XEYXB' where id=2; -update noar ti set b0='9W1O62Y4CR2FV5K0XEYXB' where id=2; -update noar tt set b1='HOTTZNLX4PU3T68ZL8IAIHZQ' where id=2; -update noar ti set b1='HOTTZNLX4PU3T68ZL8IAIHZQ' where id=2; -update noar tt set b2='5KZ' where id=2; -update noar ti set b2='5KZ' where id=2; -update noar tt set b0='8XWIIERQXFLK8AKC1R1' where id=3; -update noar ti set b0='8XWIIERQXFLK8AKC1R1' where id=3; -update noar tt set b1='ZMEA7VELZYAQFHH1' where id=3; -update noar ti set b1='ZMEA7VELZYAQFHH1' where id=3; -update noar tt set b2='25O1X' where id=3; -update noar ti set b2='25O1X' where id=3; -update noar tt set b0='2FGED7D2KGPDLN' where id=4; -update noar ti set b0='2FGED7D2KGPDLN' where id=4; -update noar tt set b1='LN' where id=4; -update noar ti set b1='LN' where id=4; -update noar tt set b2='REZOU5LK3VX1ALEWM' where id=4; -update noar ti set b2='REZOU5LK3VX1ALEWM' where id=4; -update noar tt set b0='YCG' where id=5; -update noar ti set b0='YCG' where id=5; -update noar tt set b1='BAYLK1X9WTBT4TVG21V' where id=5; -update noar ti set b1='BAYLK1X9WTBT4TVG21V' where id=5; -update noar tt set b2='KWXST8PVYOSNRI0' where id=5; -update noar ti set b2='KWXST8PVYOSNRI0' where id=5; -update noar tt set b0='0I45AIEGXIA5UXC2' where id=6; -update noar ti set b0='0I45AIEGXIA5UXC2' where id=6; -update noar tt set b1='D5V346' where id=6; -update noar ti set b1='D5V346' where id=6; -update noar tt set b2='8' where id=6; -update noar ti set b2='8' where id=6; -update noar tt set b0='O891VTQKFH' where id=7; -update noar ti set b0='O891VTQKFH' where id=7; -update noar tt set b1='DS1EWMZR9RL5DA47Y3XP6UWEUQ5RDP' where id=7; -update noar ti set b1='DS1EWMZR9RL5DA47Y3XP6UWEUQ5RDP' where id=7; -update noar tt set b2='4Z34HE15BBU6YR31SKKFO2NMUZU2' where id=7; -update noar ti set b2='4Z34HE15BBU6YR31SKKFO2NMUZU2' where id=7; -update noar tt set b0='DP5H34ZBD9RXLQ80J3I3XHZLXIXBM' where id=8; -update noar ti set b0='DP5H34ZBD9RXLQ80J3I3XHZLXIXBM' where id=8; -update noar tt set b1='483RCPP45FUATV7YG5L' where id=8; -update noar ti set b1='483RCPP45FUATV7YG5L' where id=8; -update noar tt set b2='VC4D88' where id=8; -update noar ti set b2='VC4D88' where id=8; -update noar tt set b0='P' where id=9; -update noar ti set b0='P' where id=9; -update noar tt set b1='QMTZBK6UYYYW8Z' where id=9; -update noar ti set b1='QMTZBK6UYYYW8Z' where id=9; -update noar tt set b2='NSU' where id=9; -update noar ti set b2='NSU' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - b0 blob null, - b1 mediumblob null, - b2 mediumblob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set b0='65YJEE13IWQUE' where id=1; -update noar ti set b0='65YJEE13IWQUE' where id=1; -update noar tt set b1='TCTC1A' where id=1; -update noar ti set b1='TCTC1A' where id=1; -update noar tt set b2='OZXJ' where id=1; -update noar ti set b2='OZXJ' where id=1; -update noar tt set b0='TMS' where id=2; -update noar ti set b0='TMS' where id=2; -update noar tt set b1='ZWERA63F20BCAV3' where id=2; -update noar ti set b1='ZWERA63F20BCAV3' where id=2; -update noar tt set b2='L05MPNDVRUXSHD4P1RH' where id=2; -update noar ti set b2='L05MPNDVRUXSHD4P1RH' where id=2; -update noar tt set b0='EDLHA' where id=3; -update noar ti set b0='EDLHA' where id=3; -update noar tt set b1='73FRWPOG3' where id=3; -update noar ti set b1='73FRWPOG3' where id=3; -update noar tt set b2='DKHW3HVOO7YI1SR9V4LRU14E09ECG' where id=3; -update noar ti set b2='DKHW3HVOO7YI1SR9V4LRU14E09ECG' where id=3; -update noar tt set b0='YXF0VZISJ08NI6SEFLYM1GXPO' where id=4; -update noar ti set b0='YXF0VZISJ08NI6SEFLYM1GXPO' where id=4; -update noar tt set b1='XI5GWIEERUB19Y98ZMC' where id=4; -update noar ti set b1='XI5GWIEERUB19Y98ZMC' where id=4; -update noar tt set b2='WAV8FKTKQEACKL5IKKQ0E' where id=4; -update noar ti set b2='WAV8FKTKQEACKL5IKKQ0E' where id=4; -update noar tt set b0='06KHAXKMQTNW8B58CH1TATN9HHRU' where id=5; -update noar ti set b0='06KHAXKMQTNW8B58CH1TATN9HHRU' where id=5; -update noar tt set b1='NSNJ1PC01PN4NH' where id=5; -update noar ti set b1='NSNJ1PC01PN4NH' where id=5; -update noar tt set b2='LIVS5P695JXJXC7TXX975PBAMW' where id=5; -update noar ti set b2='LIVS5P695JXJXC7TXX975PBAMW' where id=5; -update noar tt set b0='L1CGVE' where id=6; -update noar ti set b0='L1CGVE' where id=6; -update noar tt set b1='K62BND8ATNVYH82TJL7JP2BQFP' where id=6; -update noar ti set b1='K62BND8ATNVYH82TJL7JP2BQFP' where id=6; -update noar tt set b2='69W77LR0AIXSUV3J6LW7UZNVE30' where id=6; -update noar ti set b2='69W77LR0AIXSUV3J6LW7UZNVE30' where id=6; -update noar tt set b0='1B6BH39B' where id=7; -update noar ti set b0='1B6BH39B' where id=7; -update noar tt set b1='JSYHA6JRTBYIMRBDTU' where id=7; -update noar ti set b1='JSYHA6JRTBYIMRBDTU' where id=7; -update noar tt set b2='P7O2D' where id=7; -update noar ti set b2='P7O2D' where id=7; -update noar tt set b0='ZR2GCW88R0V' where id=8; -update noar ti set b0='ZR2GCW88R0V' where id=8; -update noar tt set b1='WIFGDOLS5XXEJBG' where id=8; -update noar ti set b1='WIFGDOLS5XXEJBG' where id=8; -update noar tt set b2='6XGD7H0202357X9R6VSUKSR' where id=8; -update noar ti set b2='6XGD7H0202357X9R6VSUKSR' where id=8; -update noar tt set b0='ZYXY9PE3HP4870TLBPKEB7JVNCF' where id=9; -update noar ti set b0='ZYXY9PE3HP4870TLBPKEB7JVNCF' where id=9; -update noar tt set b1='E5GNDGEL12YEX3F6MCR4G4' where id=9; -update noar ti set b1='E5GNDGEL12YEX3F6MCR4G4' where id=9; -update noar tt set b2='LI34MJ75ED0C3MPTR30BS9RQV02I' where id=9; -update noar ti set b2='LI34MJ75ED0C3MPTR30BS9RQV02I' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - b0 blob not null, - b1 mediumblob not null, - b2 mediumblob not null -) engine=tokudb; -insert into tt values (1,'','',''); -insert into tt values (2,'','',''); -insert into tt values (3,'','',''); -insert into tt values (4,'','',''); -insert into tt values (5,'','',''); -insert into tt values (6,'','',''); -insert into tt values (7,'','',''); -insert into tt values (8,'','',''); -insert into tt values (9,'','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set b0='TOBQKN42SUUGP63XRGHY1J5' where id=1; -update noar ti set b0='TOBQKN42SUUGP63XRGHY1J5' where id=1; -update noar tt set b1='G4FKD' where id=1; -update noar ti set b1='G4FKD' where id=1; -update noar tt set b2='G' where id=1; -update noar ti set b2='G' where id=1; -update noar tt set b0='900SYJ5N0CTFSSW0IIFEB6U4E8' where id=2; -update noar ti set b0='900SYJ5N0CTFSSW0IIFEB6U4E8' where id=2; -update noar tt set b1='PNTRT71405K6SHAEBVAX' where id=2; -update noar ti set b1='PNTRT71405K6SHAEBVAX' where id=2; -update noar tt set b2='0D7T1OCJDHV6VIV9DZ5' where id=2; -update noar ti set b2='0D7T1OCJDHV6VIV9DZ5' where id=2; -update noar tt set b0='YHPBGEIAYMWFE2RR3W3S4IB' where id=3; -update noar ti set b0='YHPBGEIAYMWFE2RR3W3S4IB' where id=3; -update noar tt set b1='VAN8EKUEXNKRE' where id=3; -update noar ti set b1='VAN8EKUEXNKRE' where id=3; -update noar tt set b2='XJCR2JHJW5' where id=3; -update noar ti set b2='XJCR2JHJW5' where id=3; -update noar tt set b0='OXG5W7JU' where id=4; -update noar ti set b0='OXG5W7JU' where id=4; -update noar tt set b1='2L0QK0ZGS2GNH9CJG6JDZ1' where id=4; -update noar ti set b1='2L0QK0ZGS2GNH9CJG6JDZ1' where id=4; -update noar tt set b2='L2B7CLE3Q955XDFE2UR' where id=4; -update noar ti set b2='L2B7CLE3Q955XDFE2UR' where id=4; -update noar tt set b0='556B7WWPS5ZMMLMMH9Y6R86TTVI' where id=5; -update noar ti set b0='556B7WWPS5ZMMLMMH9Y6R86TTVI' where id=5; -update noar tt set b1='A5H2HTJ7NXYC1TDTE8RTYK0RIPXE' where id=5; -update noar ti set b1='A5H2HTJ7NXYC1TDTE8RTYK0RIPXE' where id=5; -update noar tt set b2='BXGQDZ3NYE0ORJ9Q7L3GTQ' where id=5; -update noar ti set b2='BXGQDZ3NYE0ORJ9Q7L3GTQ' where id=5; -update noar tt set b0='J13DGJMKK' where id=6; -update noar ti set b0='J13DGJMKK' where id=6; -update noar tt set b1='OKXKB36SIBQ6DYTAWWNCQRN' where id=6; -update noar ti set b1='OKXKB36SIBQ6DYTAWWNCQRN' where id=6; -update noar tt set b2='X' where id=6; -update noar ti set b2='X' where id=6; -update noar tt set b0='MQF' where id=7; -update noar ti set b0='MQF' where id=7; -update noar tt set b1='DF4BYC54BPBT16UGQDLQTT' where id=7; -update noar ti set b1='DF4BYC54BPBT16UGQDLQTT' where id=7; -update noar tt set b2='B6QFZ6D8JNN5ZP66R8G0A0HT6' where id=7; -update noar ti set b2='B6QFZ6D8JNN5ZP66R8G0A0HT6' where id=7; -update noar tt set b0='1P4JOLC1RP' where id=8; -update noar ti set b0='1P4JOLC1RP' where id=8; -update noar tt set b1='TSZ73EN' where id=8; -update noar ti set b1='TSZ73EN' where id=8; -update noar tt set b2='6CGX2FBTI8Y0VY2EUU4' where id=8; -update noar ti set b2='6CGX2FBTI8Y0VY2EUU4' where id=8; -update noar tt set b0='IE9PE17JCCSZZNYWWN7OFYZ0NHGDHM' where id=9; -update noar ti set b0='IE9PE17JCCSZZNYWWN7OFYZ0NHGDHM' where id=9; -update noar tt set b1='8PT11CX4KBBLGB0' where id=9; -update noar ti set b1='8PT11CX4KBBLGB0' where id=9; -update noar tt set b2='W4' where id=9; -update noar ti set b2='W4' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - b0 blob null, - b1 mediumblob null, - b2 longblob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set b0='9RMD' where id=1; -update noar ti set b0='9RMD' where id=1; -update noar tt set b1='TYIPDO3YUIUCVODS4' where id=1; -update noar ti set b1='TYIPDO3YUIUCVODS4' where id=1; -update noar tt set b2='6IV' where id=1; -update noar ti set b2='6IV' where id=1; -update noar tt set b0='6QH0E2YXDJNOCEHTAR2NTKDK20P9VWBQ' where id=2; -update noar ti set b0='6QH0E2YXDJNOCEHTAR2NTKDK20P9VWBQ' where id=2; -update noar tt set b1='3CIQ61ZPJ2XEIJEIVAZM17QAN' where id=2; -update noar ti set b1='3CIQ61ZPJ2XEIJEIVAZM17QAN' where id=2; -update noar tt set b2='EIHD06DJEAK5K1' where id=2; -update noar ti set b2='EIHD06DJEAK5K1' where id=2; -update noar tt set b0='RKKOEX2AIKMYTOK2LX' where id=3; -update noar ti set b0='RKKOEX2AIKMYTOK2LX' where id=3; -update noar tt set b1='I' where id=3; -update noar ti set b1='I' where id=3; -update noar tt set b2='W2R8SPPSDARAW20IL2PDHYQ1N5LZWDDT' where id=3; -update noar ti set b2='W2R8SPPSDARAW20IL2PDHYQ1N5LZWDDT' where id=3; -update noar tt set b0='1BHBGALM' where id=4; -update noar ti set b0='1BHBGALM' where id=4; -update noar tt set b1='NC23ZCD8' where id=4; -update noar ti set b1='NC23ZCD8' where id=4; -update noar tt set b2='XZ' where id=4; -update noar ti set b2='XZ' where id=4; -update noar tt set b0='1PQ0BA7' where id=5; -update noar ti set b0='1PQ0BA7' where id=5; -update noar tt set b1='187K13162HY8VE7HX7U7TX1N4OGGTXY' where id=5; -update noar ti set b1='187K13162HY8VE7HX7U7TX1N4OGGTXY' where id=5; -update noar tt set b2='H8TN56V' where id=5; -update noar ti set b2='H8TN56V' where id=5; -update noar tt set b0='1' where id=6; -update noar ti set b0='1' where id=6; -update noar tt set b1='OBY25SU3KGENETDEX6GHZA2D1D1MZJNO' where id=6; -update noar ti set b1='OBY25SU3KGENETDEX6GHZA2D1D1MZJNO' where id=6; -update noar tt set b2='V1P3HAQRATR52GGRFHM6SG' where id=6; -update noar ti set b2='V1P3HAQRATR52GGRFHM6SG' where id=6; -update noar tt set b0='83KD5K1Y137GDQKR8AA0VOYRZ6R6LYKC' where id=7; -update noar ti set b0='83KD5K1Y137GDQKR8AA0VOYRZ6R6LYKC' where id=7; -update noar tt set b1='JTLVFSMCVBHO' where id=7; -update noar ti set b1='JTLVFSMCVBHO' where id=7; -update noar tt set b2='EZIZDAKTNMEDTR91HB5AJJBM' where id=7; -update noar ti set b2='EZIZDAKTNMEDTR91HB5AJJBM' where id=7; -update noar tt set b0='C8GCJOOI0T4N8O' where id=8; -update noar ti set b0='C8GCJOOI0T4N8O' where id=8; -update noar tt set b1='8Q0C3NVR8' where id=8; -update noar ti set b1='8Q0C3NVR8' where id=8; -update noar tt set b2='NID37C0FSL14ZSTGY' where id=8; -update noar ti set b2='NID37C0FSL14ZSTGY' where id=8; -update noar tt set b0='J00I6E86QOY27A9H7O82YQSRFXVY' where id=9; -update noar ti set b0='J00I6E86QOY27A9H7O82YQSRFXVY' where id=9; -update noar tt set b1='PGV9HBB4WLB' where id=9; -update noar ti set b1='PGV9HBB4WLB' where id=9; -update noar tt set b2='T' where id=9; -update noar ti set b2='T' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - b0 blob not null, - b1 mediumblob not null, - b2 longblob not null -) engine=tokudb; -insert into tt values (1,'','',''); -insert into tt values (2,'','',''); -insert into tt values (3,'','',''); -insert into tt values (4,'','',''); -insert into tt values (5,'','',''); -insert into tt values (6,'','',''); -insert into tt values (7,'','',''); -insert into tt values (8,'','',''); -insert into tt values (9,'','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set b0='JRQ8DE4AB8NKCJXNHTNFTW5V8OKOX5K' where id=1; -update noar ti set b0='JRQ8DE4AB8NKCJXNHTNFTW5V8OKOX5K' where id=1; -update noar tt set b1='AIF22OVYI11YHRPD2LXXA0V3' where id=1; -update noar ti set b1='AIF22OVYI11YHRPD2LXXA0V3' where id=1; -update noar tt set b2='7DTC5DJ5G7TIDO8' where id=1; -update noar ti set b2='7DTC5DJ5G7TIDO8' where id=1; -update noar tt set b0='8' where id=2; -update noar ti set b0='8' where id=2; -update noar tt set b1='JXQOS9' where id=2; -update noar ti set b1='JXQOS9' where id=2; -update noar tt set b2='12O2O1T3N0P8KRRGEJS7B' where id=2; -update noar ti set b2='12O2O1T3N0P8KRRGEJS7B' where id=2; -update noar tt set b0='AX1T88VFY7RI3QB' where id=3; -update noar ti set b0='AX1T88VFY7RI3QB' where id=3; -update noar tt set b1='N4CMM2U1WGGXI7EKQ' where id=3; -update noar ti set b1='N4CMM2U1WGGXI7EKQ' where id=3; -update noar tt set b2='197JHL39G90FSL8VYQMQS' where id=3; -update noar ti set b2='197JHL39G90FSL8VYQMQS' where id=3; -update noar tt set b0='TDCNRDGPMRN9RU' where id=4; -update noar ti set b0='TDCNRDGPMRN9RU' where id=4; -update noar tt set b1='ZKKNM' where id=4; -update noar ti set b1='ZKKNM' where id=4; -update noar tt set b2='ULG0UUUE5Z7GVJGAALB6TGTK4' where id=4; -update noar ti set b2='ULG0UUUE5Z7GVJGAALB6TGTK4' where id=4; -update noar tt set b0='DIPOUWJYOMHHDIE6' where id=5; -update noar ti set b0='DIPOUWJYOMHHDIE6' where id=5; -update noar tt set b1='1X1SFHWKJ3NMQX510XRJENT4S' where id=5; -update noar ti set b1='1X1SFHWKJ3NMQX510XRJENT4S' where id=5; -update noar tt set b2='QCBUTH8YUR263U05GNOB5Q' where id=5; -update noar ti set b2='QCBUTH8YUR263U05GNOB5Q' where id=5; -update noar tt set b0='W1ZQ' where id=6; -update noar ti set b0='W1ZQ' where id=6; -update noar tt set b1='7NV0B333' where id=6; -update noar ti set b1='7NV0B333' where id=6; -update noar tt set b2='IF6OH1I4CMIVJ5HQBCKEWA' where id=6; -update noar ti set b2='IF6OH1I4CMIVJ5HQBCKEWA' where id=6; -update noar tt set b0='A1XWKO7' where id=7; -update noar ti set b0='A1XWKO7' where id=7; -update noar tt set b1='26LZNFVSG8P1Y0ZD9PGRV' where id=7; -update noar ti set b1='26LZNFVSG8P1Y0ZD9PGRV' where id=7; -update noar tt set b2='5G6O2RKTG' where id=7; -update noar ti set b2='5G6O2RKTG' where id=7; -update noar tt set b0='FKQV6DP5VRD364PVGTQG48MTQ' where id=8; -update noar ti set b0='FKQV6DP5VRD364PVGTQG48MTQ' where id=8; -update noar tt set b1='14IBLVPMUDIL14GN1' where id=8; -update noar ti set b1='14IBLVPMUDIL14GN1' where id=8; -update noar tt set b2='SX4PM3NPHD638' where id=8; -update noar ti set b2='SX4PM3NPHD638' where id=8; -update noar tt set b0='HLV213O72HW7YRQSGJD5M' where id=9; -update noar ti set b0='HLV213O72HW7YRQSGJD5M' where id=9; -update noar tt set b1='IBQ8NKFYS' where id=9; -update noar ti set b1='IBQ8NKFYS' where id=9; -update noar tt set b2='CJ3AW0YAXK7GZ3NR4V0KNVZGO08HTG' where id=9; -update noar ti set b2='CJ3AW0YAXK7GZ3NR4V0KNVZGO08HTG' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - b0 blob null, - b1 mediumblob null, - b2 text null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set b0='XW0PG070O391K72FDZIS7' where id=1; -update noar ti set b0='XW0PG070O391K72FDZIS7' where id=1; -update noar tt set b1='S' where id=1; -update noar ti set b1='S' where id=1; -update noar tt set b2='KTI8Z92T69FLTCDFN2PARZB5GZY44' where id=1; -update noar ti set b2='KTI8Z92T69FLTCDFN2PARZB5GZY44' where id=1; -update noar tt set b0='ZHF4' where id=2; -update noar ti set b0='ZHF4' where id=2; -update noar tt set b1='UBNUJQRVDRETQRXWOAXTW59G02CB0' where id=2; -update noar ti set b1='UBNUJQRVDRETQRXWOAXTW59G02CB0' where id=2; -update noar tt set b2='805FBNL1W' where id=2; -update noar ti set b2='805FBNL1W' where id=2; -update noar tt set b0='TIZLMT55R8LBU4H6LYJNJC7JBAJZEPK9' where id=3; -update noar ti set b0='TIZLMT55R8LBU4H6LYJNJC7JBAJZEPK9' where id=3; -update noar tt set b1='5P1W37GHJCY' where id=3; -update noar ti set b1='5P1W37GHJCY' where id=3; -update noar tt set b2='UHQ' where id=3; -update noar ti set b2='UHQ' where id=3; -update noar tt set b0='2J1T0B6BXK0T13K' where id=4; -update noar ti set b0='2J1T0B6BXK0T13K' where id=4; -update noar tt set b1='KVFQGXVV2NMWTEW6PORP' where id=4; -update noar ti set b1='KVFQGXVV2NMWTEW6PORP' where id=4; -update noar tt set b2='GC0E5VURDYYC' where id=4; -update noar ti set b2='GC0E5VURDYYC' where id=4; -update noar tt set b0='Y' where id=5; -update noar ti set b0='Y' where id=5; -update noar tt set b1='09MCJ2IEPNZQ302ES9QD6O35EDKJAXU' where id=5; -update noar ti set b1='09MCJ2IEPNZQ302ES9QD6O35EDKJAXU' where id=5; -update noar tt set b2='16YGB78H3H3FXKO8JXLH36QOY8O9LMFT' where id=5; -update noar ti set b2='16YGB78H3H3FXKO8JXLH36QOY8O9LMFT' where id=5; -update noar tt set b0='E9H7' where id=6; -update noar ti set b0='E9H7' where id=6; -update noar tt set b1='782SIPI2PQUIHBKX014RRI' where id=6; -update noar ti set b1='782SIPI2PQUIHBKX014RRI' where id=6; -update noar tt set b2='PKYYVDSWF00V5VDJTEVMFB5SOFPP9' where id=6; -update noar ti set b2='PKYYVDSWF00V5VDJTEVMFB5SOFPP9' where id=6; -update noar tt set b0='LRQSJNM8IJ' where id=7; -update noar ti set b0='LRQSJNM8IJ' where id=7; -update noar tt set b1='7YM0CR7635FYELLOA6N4N155OM7ODA2' where id=7; -update noar ti set b1='7YM0CR7635FYELLOA6N4N155OM7ODA2' where id=7; -update noar tt set b2='52SET7KYZ' where id=7; -update noar ti set b2='52SET7KYZ' where id=7; -update noar tt set b0='QA0WV6' where id=8; -update noar ti set b0='QA0WV6' where id=8; -update noar tt set b1='NOELJ7UF1S1V8F0JX21CN5XVI4UJ490Q' where id=8; -update noar ti set b1='NOELJ7UF1S1V8F0JX21CN5XVI4UJ490Q' where id=8; -update noar tt set b2='1TZ110V6J7BL' where id=8; -update noar ti set b2='1TZ110V6J7BL' where id=8; -update noar tt set b0='864XZ0BNOSHR' where id=9; -update noar ti set b0='864XZ0BNOSHR' where id=9; -update noar tt set b1='ZTYAMK4TO8OMA0KWLV8' where id=9; -update noar ti set b1='ZTYAMK4TO8OMA0KWLV8' where id=9; -update noar tt set b2='C6IFCKRZH7Q9RVXU6C' where id=9; -update noar ti set b2='C6IFCKRZH7Q9RVXU6C' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - b0 blob not null, - b1 mediumblob not null, - b2 text not null -) engine=tokudb; -insert into tt values (1,'','',''); -insert into tt values (2,'','',''); -insert into tt values (3,'','',''); -insert into tt values (4,'','',''); -insert into tt values (5,'','',''); -insert into tt values (6,'','',''); -insert into tt values (7,'','',''); -insert into tt values (8,'','',''); -insert into tt values (9,'','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set b0='8A3E7GNRJNWH1LICL603SIMW' where id=1; -update noar ti set b0='8A3E7GNRJNWH1LICL603SIMW' where id=1; -update noar tt set b1='L5ZUIANIN7YPH08SF6FACDJ' where id=1; -update noar ti set b1='L5ZUIANIN7YPH08SF6FACDJ' where id=1; -update noar tt set b2='5TT18' where id=1; -update noar ti set b2='5TT18' where id=1; -update noar tt set b0='COZY' where id=2; -update noar ti set b0='COZY' where id=2; -update noar tt set b1='6J29CSX73NBUF4R28PY4CVHAVI26U' where id=2; -update noar ti set b1='6J29CSX73NBUF4R28PY4CVHAVI26U' where id=2; -update noar tt set b2='4NYPYLX6Z100VQFH9Y2E' where id=2; -update noar ti set b2='4NYPYLX6Z100VQFH9Y2E' where id=2; -update noar tt set b0='59CCV5112PZRDB' where id=3; -update noar ti set b0='59CCV5112PZRDB' where id=3; -update noar tt set b1='9QAT315TO4C8N5HNJ0H36FZOJ39JISR' where id=3; -update noar ti set b1='9QAT315TO4C8N5HNJ0H36FZOJ39JISR' where id=3; -update noar tt set b2='E' where id=3; -update noar ti set b2='E' where id=3; -update noar tt set b0='1Z5AGHX' where id=4; -update noar ti set b0='1Z5AGHX' where id=4; -update noar tt set b1='I5MCPCL0HDHW' where id=4; -update noar ti set b1='I5MCPCL0HDHW' where id=4; -update noar tt set b2='BRJWNH91X5TD4Q4CBUIV5HG' where id=4; -update noar ti set b2='BRJWNH91X5TD4Q4CBUIV5HG' where id=4; -update noar tt set b0='ZJ2LCP' where id=5; -update noar ti set b0='ZJ2LCP' where id=5; -update noar tt set b1='9PFOHP58' where id=5; -update noar ti set b1='9PFOHP58' where id=5; -update noar tt set b2='E5D5IM5RZ6' where id=5; -update noar ti set b2='E5D5IM5RZ6' where id=5; -update noar tt set b0='0JI1' where id=6; -update noar ti set b0='0JI1' where id=6; -update noar tt set b1='Q81T' where id=6; -update noar ti set b1='Q81T' where id=6; -update noar tt set b2='HI5SXOMFVM7XSS2VFNAS661' where id=6; -update noar ti set b2='HI5SXOMFVM7XSS2VFNAS661' where id=6; -update noar tt set b0='WKROC99QPP' where id=7; -update noar ti set b0='WKROC99QPP' where id=7; -update noar tt set b1='MJLUQLTA65R9KKD40XB49OOOIR8624' where id=7; -update noar ti set b1='MJLUQLTA65R9KKD40XB49OOOIR8624' where id=7; -update noar tt set b2='84UCRON6EQMN0PCX1I6PYIWK96' where id=7; -update noar ti set b2='84UCRON6EQMN0PCX1I6PYIWK96' where id=7; -update noar tt set b0='3ZX7YSDOSBLK2O3163I' where id=8; -update noar ti set b0='3ZX7YSDOSBLK2O3163I' where id=8; -update noar tt set b1='6ODEIKVWGIBWHCH0ER20A7L' where id=8; -update noar ti set b1='6ODEIKVWGIBWHCH0ER20A7L' where id=8; -update noar tt set b2='6ORJ6ML11Y' where id=8; -update noar ti set b2='6ORJ6ML11Y' where id=8; -update noar tt set b0='DD5PRF62PI' where id=9; -update noar ti set b0='DD5PRF62PI' where id=9; -update noar tt set b1='KM7GBCPJ46P00L' where id=9; -update noar ti set b1='KM7GBCPJ46P00L' where id=9; -update noar tt set b2='V00KLD1QT7R3N81W4YKNV2KAO1ZBZ' where id=9; -update noar ti set b2='V00KLD1QT7R3N81W4YKNV2KAO1ZBZ' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - b0 blob null, - b1 longblob null, - b2 tinyblob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set b0='S9D8CGW60YGMTQMWKRDREED6A5QO' where id=1; -update noar ti set b0='S9D8CGW60YGMTQMWKRDREED6A5QO' where id=1; -update noar tt set b1='NVCBR4MERA08P7131Q3MRU3OCV14S38P' where id=1; -update noar ti set b1='NVCBR4MERA08P7131Q3MRU3OCV14S38P' where id=1; -update noar tt set b2='KLIM06OJPKVKFTUOD1VHGBKL3GR8VRGX' where id=1; -update noar ti set b2='KLIM06OJPKVKFTUOD1VHGBKL3GR8VRGX' where id=1; -update noar tt set b0='SWKR3YCK3UU8WMEU4UC3DBO32ZY0C' where id=2; -update noar ti set b0='SWKR3YCK3UU8WMEU4UC3DBO32ZY0C' where id=2; -update noar tt set b1='SYL2HJYD06L70ERBKTIKFFAI6' where id=2; -update noar ti set b1='SYL2HJYD06L70ERBKTIKFFAI6' where id=2; -update noar tt set b2='CPIVVNQX4TZR' where id=2; -update noar ti set b2='CPIVVNQX4TZR' where id=2; -update noar tt set b0='O6LZEOFE332J' where id=3; -update noar ti set b0='O6LZEOFE332J' where id=3; -update noar tt set b1='6K1TG4' where id=3; -update noar ti set b1='6K1TG4' where id=3; -update noar tt set b2='Y8WRN3DZ7SG60NHPYCQMRZ42S9FV' where id=3; -update noar ti set b2='Y8WRN3DZ7SG60NHPYCQMRZ42S9FV' where id=3; -update noar tt set b0='BPFSXIEV9EE2AXHQY48P' where id=4; -update noar ti set b0='BPFSXIEV9EE2AXHQY48P' where id=4; -update noar tt set b1='4QK0J7786RI3U8GL8' where id=4; -update noar ti set b1='4QK0J7786RI3U8GL8' where id=4; -update noar tt set b2='7BZQ3Y5PQM5545IZ' where id=4; -update noar ti set b2='7BZQ3Y5PQM5545IZ' where id=4; -update noar tt set b0='F9X5Y0PDAZPVSALW7ZG6ORKE' where id=5; -update noar ti set b0='F9X5Y0PDAZPVSALW7ZG6ORKE' where id=5; -update noar tt set b1='RNVNCLSRAZMG4B1ERM1KEI3' where id=5; -update noar ti set b1='RNVNCLSRAZMG4B1ERM1KEI3' where id=5; -update noar tt set b2='DVMQ8L' where id=5; -update noar ti set b2='DVMQ8L' where id=5; -update noar tt set b0='TKLUQHR44TEAJARKF' where id=6; -update noar ti set b0='TKLUQHR44TEAJARKF' where id=6; -update noar tt set b1='AN6T3S7PWCZYMO7J' where id=6; -update noar ti set b1='AN6T3S7PWCZYMO7J' where id=6; -update noar tt set b2='VG7J5A5JM6GSPYP29LLIB4' where id=6; -update noar ti set b2='VG7J5A5JM6GSPYP29LLIB4' where id=6; -update noar tt set b0='8LCRSAMFP8CG984YF7Z' where id=7; -update noar ti set b0='8LCRSAMFP8CG984YF7Z' where id=7; -update noar tt set b1='3YEF6XOJ80V074X' where id=7; -update noar ti set b1='3YEF6XOJ80V074X' where id=7; -update noar tt set b2='4X293VJ' where id=7; -update noar ti set b2='4X293VJ' where id=7; -update noar tt set b0='8V7KDWK7' where id=8; -update noar ti set b0='8V7KDWK7' where id=8; -update noar tt set b1='UGVZ2Y6A' where id=8; -update noar ti set b1='UGVZ2Y6A' where id=8; -update noar tt set b2='TWL2XU3NQ34Y9O' where id=8; -update noar ti set b2='TWL2XU3NQ34Y9O' where id=8; -update noar tt set b0='J8LIS3KDS' where id=9; -update noar ti set b0='J8LIS3KDS' where id=9; -update noar tt set b1='8D2ED4075IL' where id=9; -update noar ti set b1='8D2ED4075IL' where id=9; -update noar tt set b2='33P6MMTEXXA0PQ778QFWBTJ' where id=9; -update noar ti set b2='33P6MMTEXXA0PQ778QFWBTJ' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - b0 blob not null, - b1 longblob not null, - b2 tinyblob not null -) engine=tokudb; -insert into tt values (1,'','',''); -insert into tt values (2,'','',''); -insert into tt values (3,'','',''); -insert into tt values (4,'','',''); -insert into tt values (5,'','',''); -insert into tt values (6,'','',''); -insert into tt values (7,'','',''); -insert into tt values (8,'','',''); -insert into tt values (9,'','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set b0='7IZSEFD' where id=1; -update noar ti set b0='7IZSEFD' where id=1; -update noar tt set b1='4GJL9N7FHSIDG61M0XNTZ' where id=1; -update noar ti set b1='4GJL9N7FHSIDG61M0XNTZ' where id=1; -update noar tt set b2='YS9AII1CJDMF' where id=1; -update noar ti set b2='YS9AII1CJDMF' where id=1; -update noar tt set b0='H434P0HTV6OT92R09TQUS' where id=2; -update noar ti set b0='H434P0HTV6OT92R09TQUS' where id=2; -update noar tt set b1='HWW7IR4R5PFSPX' where id=2; -update noar ti set b1='HWW7IR4R5PFSPX' where id=2; -update noar tt set b2='8V51UP8H379U89BKY4BW50T' where id=2; -update noar ti set b2='8V51UP8H379U89BKY4BW50T' where id=2; -update noar tt set b0='3MG9NIUOU90SA8JCYL0V' where id=3; -update noar ti set b0='3MG9NIUOU90SA8JCYL0V' where id=3; -update noar tt set b1='0V1R4520PXY9TMM2CR7SB' where id=3; -update noar ti set b1='0V1R4520PXY9TMM2CR7SB' where id=3; -update noar tt set b2='3VTGYLUQVS41PFOYC4K5' where id=3; -update noar ti set b2='3VTGYLUQVS41PFOYC4K5' where id=3; -update noar tt set b0='UCLRQEJMTV6QFYXTHZ06L6GF' where id=4; -update noar ti set b0='UCLRQEJMTV6QFYXTHZ06L6GF' where id=4; -update noar tt set b1='ICAQ96TZUI32UHDO6NAKL' where id=4; -update noar ti set b1='ICAQ96TZUI32UHDO6NAKL' where id=4; -update noar tt set b2='HN55NKJC45LKROJ1DSTU84C' where id=4; -update noar ti set b2='HN55NKJC45LKROJ1DSTU84C' where id=4; -update noar tt set b0='N8JOW3KH' where id=5; -update noar ti set b0='N8JOW3KH' where id=5; -update noar tt set b1='T7ERDYJXVZ6JW0Z3M' where id=5; -update noar ti set b1='T7ERDYJXVZ6JW0Z3M' where id=5; -update noar tt set b2='EVR9BR8BKLEX50EMD674W1' where id=5; -update noar ti set b2='EVR9BR8BKLEX50EMD674W1' where id=5; -update noar tt set b0='SK0794NV4R7T' where id=6; -update noar ti set b0='SK0794NV4R7T' where id=6; -update noar tt set b1='1V4XK5PFGI1' where id=6; -update noar ti set b1='1V4XK5PFGI1' where id=6; -update noar tt set b2='WF7977XX5Q65S' where id=6; -update noar ti set b2='WF7977XX5Q65S' where id=6; -update noar tt set b0='0LLPSQ3VOIY' where id=7; -update noar ti set b0='0LLPSQ3VOIY' where id=7; -update noar tt set b1='LRDKSH1VM3GUY2LVWUPC4FK64FOA2' where id=7; -update noar ti set b1='LRDKSH1VM3GUY2LVWUPC4FK64FOA2' where id=7; -update noar tt set b2='P4T488LX0D34' where id=7; -update noar ti set b2='P4T488LX0D34' where id=7; -update noar tt set b0='EBQCITCU3W' where id=8; -update noar ti set b0='EBQCITCU3W' where id=8; -update noar tt set b1='A' where id=8; -update noar ti set b1='A' where id=8; -update noar tt set b2='B7' where id=8; -update noar ti set b2='B7' where id=8; -update noar tt set b0='K8KPAL103WSS9PIAL9M70K3W639MPFUY' where id=9; -update noar ti set b0='K8KPAL103WSS9PIAL9M70K3W639MPFUY' where id=9; -update noar tt set b1='CZYNCMLPJBRTATMTQCVQ3J7L94J3R' where id=9; -update noar ti set b1='CZYNCMLPJBRTATMTQCVQ3J7L94J3R' where id=9; -update noar tt set b2='H1KGAR37TJ6GVGWFC6DFYHC6PXE' where id=9; -update noar ti set b2='H1KGAR37TJ6GVGWFC6DFYHC6PXE' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - b0 blob null, - b1 longblob null, - b2 blob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set b0='S6BGCNQML5VSMTO' where id=1; -update noar ti set b0='S6BGCNQML5VSMTO' where id=1; -update noar tt set b1='VD1EVKRC2TFQ1CC6FKCZRYI8' where id=1; -update noar ti set b1='VD1EVKRC2TFQ1CC6FKCZRYI8' where id=1; -update noar tt set b2='X67SI5CDCJVVYCV' where id=1; -update noar ti set b2='X67SI5CDCJVVYCV' where id=1; -update noar tt set b0='68IYT2VTPGU53XUWLB4LQAK' where id=2; -update noar ti set b0='68IYT2VTPGU53XUWLB4LQAK' where id=2; -update noar tt set b1='XOZO8CN6N3' where id=2; -update noar ti set b1='XOZO8CN6N3' where id=2; -update noar tt set b2='PACFQEVFS4B2CZFNFOMYN5Z2' where id=2; -update noar ti set b2='PACFQEVFS4B2CZFNFOMYN5Z2' where id=2; -update noar tt set b0='1X96A1W1Y9907GZTISROBGP' where id=3; -update noar ti set b0='1X96A1W1Y9907GZTISROBGP' where id=3; -update noar tt set b1='4VM' where id=3; -update noar ti set b1='4VM' where id=3; -update noar tt set b2='52Y8Q' where id=3; -update noar ti set b2='52Y8Q' where id=3; -update noar tt set b0='0WOWESWQE6LGRUID7M7C93EVWLXUMYEN' where id=4; -update noar ti set b0='0WOWESWQE6LGRUID7M7C93EVWLXUMYEN' where id=4; -update noar tt set b1='J9B4WWK0LRQ9ET8MMAA' where id=4; -update noar ti set b1='J9B4WWK0LRQ9ET8MMAA' where id=4; -update noar tt set b2='ULGR71U7E70H6DZQ' where id=4; -update noar ti set b2='ULGR71U7E70H6DZQ' where id=4; -update noar tt set b0='4QYK2JM7JX7' where id=5; -update noar ti set b0='4QYK2JM7JX7' where id=5; -update noar tt set b1='C22ZY4W56PJHRKR' where id=5; -update noar ti set b1='C22ZY4W56PJHRKR' where id=5; -update noar tt set b2='C8RW9DEW2Q0DH2IRJJ' where id=5; -update noar ti set b2='C8RW9DEW2Q0DH2IRJJ' where id=5; -update noar tt set b0='82KG51AFJ7RP4ZEEJR7B6IK1M18OG0R1' where id=6; -update noar ti set b0='82KG51AFJ7RP4ZEEJR7B6IK1M18OG0R1' where id=6; -update noar tt set b1='XQP12ZWUTZ13WP8ZT5L' where id=6; -update noar ti set b1='XQP12ZWUTZ13WP8ZT5L' where id=6; -update noar tt set b2='O6KDED44V4SDF25HGK6H9N9B1IYOPYLS' where id=6; -update noar ti set b2='O6KDED44V4SDF25HGK6H9N9B1IYOPYLS' where id=6; -update noar tt set b0='RR5YOKA5L07KO78' where id=7; -update noar ti set b0='RR5YOKA5L07KO78' where id=7; -update noar tt set b1='DWS2FO1AF0YWUPUULKXWH' where id=7; -update noar ti set b1='DWS2FO1AF0YWUPUULKXWH' where id=7; -update noar tt set b2='HBHBYW0M' where id=7; -update noar ti set b2='HBHBYW0M' where id=7; -update noar tt set b0='KT17UQ5YLCA829XDOP4VDICS' where id=8; -update noar ti set b0='KT17UQ5YLCA829XDOP4VDICS' where id=8; -update noar tt set b1='HF6X3YCI9LCT5GPP8KTMYH63WI' where id=8; -update noar ti set b1='HF6X3YCI9LCT5GPP8KTMYH63WI' where id=8; -update noar tt set b2='WV3HEI8VOTJ9BYWON1LDPT4E' where id=8; -update noar ti set b2='WV3HEI8VOTJ9BYWON1LDPT4E' where id=8; -update noar tt set b0='2EOX3GK1TWM74' where id=9; -update noar ti set b0='2EOX3GK1TWM74' where id=9; -update noar tt set b1='T' where id=9; -update noar ti set b1='T' where id=9; -update noar tt set b2='NIYO3ETGFOO3B' where id=9; -update noar ti set b2='NIYO3ETGFOO3B' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - b0 blob not null, - b1 longblob not null, - b2 blob not null -) engine=tokudb; -insert into tt values (1,'','',''); -insert into tt values (2,'','',''); -insert into tt values (3,'','',''); -insert into tt values (4,'','',''); -insert into tt values (5,'','',''); -insert into tt values (6,'','',''); -insert into tt values (7,'','',''); -insert into tt values (8,'','',''); -insert into tt values (9,'','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set b0='0O5V16R4A5DALWQDBH5RQKD8X08GI4' where id=1; -update noar ti set b0='0O5V16R4A5DALWQDBH5RQKD8X08GI4' where id=1; -update noar tt set b1='D6L6LAGOD4311SH9' where id=1; -update noar ti set b1='D6L6LAGOD4311SH9' where id=1; -update noar tt set b2='JP58UA92HK6VLBUXHOVG62K4S4' where id=1; -update noar ti set b2='JP58UA92HK6VLBUXHOVG62K4S4' where id=1; -update noar tt set b0='XH' where id=2; -update noar ti set b0='XH' where id=2; -update noar tt set b1='VF6FH7OU' where id=2; -update noar ti set b1='VF6FH7OU' where id=2; -update noar tt set b2='4B34ABOY1LEM2Q7VQYA1AG50S1' where id=2; -update noar ti set b2='4B34ABOY1LEM2Q7VQYA1AG50S1' where id=2; -update noar tt set b0='QQ' where id=3; -update noar ti set b0='QQ' where id=3; -update noar tt set b1='618U8RXFJ01SV' where id=3; -update noar ti set b1='618U8RXFJ01SV' where id=3; -update noar tt set b2='0CBTO' where id=3; -update noar ti set b2='0CBTO' where id=3; -update noar tt set b0='59MT12LIVYGU705D8' where id=4; -update noar ti set b0='59MT12LIVYGU705D8' where id=4; -update noar tt set b1='WGBTAYK4GEJBPZC41Z3C85' where id=4; -update noar ti set b1='WGBTAYK4GEJBPZC41Z3C85' where id=4; -update noar tt set b2='S6' where id=4; -update noar ti set b2='S6' where id=4; -update noar tt set b0='KR0DUUTWSZCL2OJT0XIYDYT' where id=5; -update noar ti set b0='KR0DUUTWSZCL2OJT0XIYDYT' where id=5; -update noar tt set b1='5' where id=5; -update noar ti set b1='5' where id=5; -update noar tt set b2='YG9' where id=5; -update noar ti set b2='YG9' where id=5; -update noar tt set b0='REFVO3MHK1GJZQQAAKE' where id=6; -update noar ti set b0='REFVO3MHK1GJZQQAAKE' where id=6; -update noar tt set b1='F0DCOBO00MT8HZ' where id=6; -update noar ti set b1='F0DCOBO00MT8HZ' where id=6; -update noar tt set b2='E7AG8DSHYH8' where id=6; -update noar ti set b2='E7AG8DSHYH8' where id=6; -update noar tt set b0='BI0CX22WA4D' where id=7; -update noar ti set b0='BI0CX22WA4D' where id=7; -update noar tt set b1='R96V1S' where id=7; -update noar ti set b1='R96V1S' where id=7; -update noar tt set b2='JBLZKZXNWX21TJLET97XQ0K' where id=7; -update noar ti set b2='JBLZKZXNWX21TJLET97XQ0K' where id=7; -update noar tt set b0='K2KV2' where id=8; -update noar ti set b0='K2KV2' where id=8; -update noar tt set b1='7HTCOWTR9L3HQUY4OU5SA7' where id=8; -update noar ti set b1='7HTCOWTR9L3HQUY4OU5SA7' where id=8; -update noar tt set b2='2PZW8Y' where id=8; -update noar ti set b2='2PZW8Y' where id=8; -update noar tt set b0='JEO' where id=9; -update noar ti set b0='JEO' where id=9; -update noar tt set b1='9BQQX' where id=9; -update noar ti set b1='9BQQX' where id=9; -update noar tt set b2='KCRXVZNI72E022VFZME7ESUL' where id=9; -update noar ti set b2='KCRXVZNI72E022VFZME7ESUL' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - b0 blob null, - b1 longblob null, - b2 mediumblob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set b0='Z9DRIG2' where id=1; -update noar ti set b0='Z9DRIG2' where id=1; -update noar tt set b1='59RW2H' where id=1; -update noar ti set b1='59RW2H' where id=1; -update noar tt set b2='ZAFZPRWT' where id=1; -update noar ti set b2='ZAFZPRWT' where id=1; -update noar tt set b0='DRHEAF' where id=2; -update noar ti set b0='DRHEAF' where id=2; -update noar tt set b1='8IJPRLI86NV7MSSTP3S4' where id=2; -update noar ti set b1='8IJPRLI86NV7MSSTP3S4' where id=2; -update noar tt set b2='XISFCCV64GTIND6K3FGFEF1M4M' where id=2; -update noar ti set b2='XISFCCV64GTIND6K3FGFEF1M4M' where id=2; -update noar tt set b0='B6LZN46M309RX510TN0DZQSC49C83RT' where id=3; -update noar ti set b0='B6LZN46M309RX510TN0DZQSC49C83RT' where id=3; -update noar tt set b1='6W3357AR8SM9276W5Q03' where id=3; -update noar ti set b1='6W3357AR8SM9276W5Q03' where id=3; -update noar tt set b2='O1Y1YU1Q17QHYYHIA8L5O' where id=3; -update noar ti set b2='O1Y1YU1Q17QHYYHIA8L5O' where id=3; -update noar tt set b0='1OK0VTISQKQX' where id=4; -update noar ti set b0='1OK0VTISQKQX' where id=4; -update noar tt set b1='N8QVL' where id=4; -update noar ti set b1='N8QVL' where id=4; -update noar tt set b2='GAKWM18ZYD92YY0SFPISSW' where id=4; -update noar ti set b2='GAKWM18ZYD92YY0SFPISSW' where id=4; -update noar tt set b0='2JB1OQJLFEOE80KAEX5TMXED' where id=5; -update noar ti set b0='2JB1OQJLFEOE80KAEX5TMXED' where id=5; -update noar tt set b1='I3EAL2Y40NRP6C5EE9Y7VHKCX0H3O9A' where id=5; -update noar ti set b1='I3EAL2Y40NRP6C5EE9Y7VHKCX0H3O9A' where id=5; -update noar tt set b2='H2SDNMO7VWVZECEO57M41U0748SV1S' where id=5; -update noar ti set b2='H2SDNMO7VWVZECEO57M41U0748SV1S' where id=5; -update noar tt set b0='RK3WZ8QHQ3H73IUKKMQ' where id=6; -update noar ti set b0='RK3WZ8QHQ3H73IUKKMQ' where id=6; -update noar tt set b1='NDYVM09MKNQ1AFLZ6JFXSN69R9HV' where id=6; -update noar ti set b1='NDYVM09MKNQ1AFLZ6JFXSN69R9HV' where id=6; -update noar tt set b2='8UCX79SYBO0X8' where id=6; -update noar ti set b2='8UCX79SYBO0X8' where id=6; -update noar tt set b0='Z6G' where id=7; -update noar ti set b0='Z6G' where id=7; -update noar tt set b1='T' where id=7; -update noar ti set b1='T' where id=7; -update noar tt set b2='ILF218J65OX74' where id=7; -update noar ti set b2='ILF218J65OX74' where id=7; -update noar tt set b0='FTYIY590VAJY0616MBDOC7Q' where id=8; -update noar ti set b0='FTYIY590VAJY0616MBDOC7Q' where id=8; -update noar tt set b1='II7YNFI2SXTLYADNGM9W91' where id=8; -update noar ti set b1='II7YNFI2SXTLYADNGM9W91' where id=8; -update noar tt set b2='WYSX1ZJZ69CLFZGE2OO1K9BNZ' where id=8; -update noar ti set b2='WYSX1ZJZ69CLFZGE2OO1K9BNZ' where id=8; -update noar tt set b0='70VICVAIWLJOZRY5XFCLRYG' where id=9; -update noar ti set b0='70VICVAIWLJOZRY5XFCLRYG' where id=9; -update noar tt set b1='HA41' where id=9; -update noar ti set b1='HA41' where id=9; -update noar tt set b2='LJN5OANDXOAWWYE8P5L4T6DLXV' where id=9; -update noar ti set b2='LJN5OANDXOAWWYE8P5L4T6DLXV' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - b0 blob not null, - b1 longblob not null, - b2 mediumblob not null -) engine=tokudb; -insert into tt values (1,'','',''); -insert into tt values (2,'','',''); -insert into tt values (3,'','',''); -insert into tt values (4,'','',''); -insert into tt values (5,'','',''); -insert into tt values (6,'','',''); -insert into tt values (7,'','',''); -insert into tt values (8,'','',''); -insert into tt values (9,'','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set b0='IGFPUXUTPHXORPXDS9PZDB' where id=1; -update noar ti set b0='IGFPUXUTPHXORPXDS9PZDB' where id=1; -update noar tt set b1='3UUEPV5RDZB90S' where id=1; -update noar ti set b1='3UUEPV5RDZB90S' where id=1; -update noar tt set b2='7' where id=1; -update noar ti set b2='7' where id=1; -update noar tt set b0='EQK99PG8CYOJQ5RIRRX7TQCS' where id=2; -update noar ti set b0='EQK99PG8CYOJQ5RIRRX7TQCS' where id=2; -update noar tt set b1='MD' where id=2; -update noar ti set b1='MD' where id=2; -update noar tt set b2='EJ51C9I' where id=2; -update noar ti set b2='EJ51C9I' where id=2; -update noar tt set b0='CDD' where id=3; -update noar ti set b0='CDD' where id=3; -update noar tt set b1='VGPPO49NP8E4MUV0W3' where id=3; -update noar ti set b1='VGPPO49NP8E4MUV0W3' where id=3; -update noar tt set b2='9BQBGZ5E6DGQ5AZJYAMKN3GX' where id=3; -update noar ti set b2='9BQBGZ5E6DGQ5AZJYAMKN3GX' where id=3; -update noar tt set b0='MC5C6EKTD4HB7ZUF3' where id=4; -update noar ti set b0='MC5C6EKTD4HB7ZUF3' where id=4; -update noar tt set b1='BT2D0BK11557' where id=4; -update noar ti set b1='BT2D0BK11557' where id=4; -update noar tt set b2='A3BH399UBJ3JPMJ' where id=4; -update noar ti set b2='A3BH399UBJ3JPMJ' where id=4; -update noar tt set b0='48820CW4C7P7LWG' where id=5; -update noar ti set b0='48820CW4C7P7LWG' where id=5; -update noar tt set b1='LKNWTC1XWMX15NI7C7AQR9T' where id=5; -update noar ti set b1='LKNWTC1XWMX15NI7C7AQR9T' where id=5; -update noar tt set b2='TXO4L8OSFV3YPT' where id=5; -update noar ti set b2='TXO4L8OSFV3YPT' where id=5; -update noar tt set b0='I303F0E8UJRK6H8YHH70EPEIK' where id=6; -update noar ti set b0='I303F0E8UJRK6H8YHH70EPEIK' where id=6; -update noar tt set b1='2M4D2Q6XEA2OL4Z9KO4VB' where id=6; -update noar ti set b1='2M4D2Q6XEA2OL4Z9KO4VB' where id=6; -update noar tt set b2='ZMOUB7ETM94F719ULVOB1HG4AL3PP' where id=6; -update noar ti set b2='ZMOUB7ETM94F719ULVOB1HG4AL3PP' where id=6; -update noar tt set b0='GSL6NOHLUIPLJF6DM81UZQUN73XZP' where id=7; -update noar ti set b0='GSL6NOHLUIPLJF6DM81UZQUN73XZP' where id=7; -update noar tt set b1='ZHITRPU6JETS90OH' where id=7; -update noar ti set b1='ZHITRPU6JETS90OH' where id=7; -update noar tt set b2='0GVVNAK1K7DW7CBYZ9Z77H1' where id=7; -update noar ti set b2='0GVVNAK1K7DW7CBYZ9Z77H1' where id=7; -update noar tt set b0='PYXSEUBVM1ELYZO634W4AEDBXKW9WR' where id=8; -update noar ti set b0='PYXSEUBVM1ELYZO634W4AEDBXKW9WR' where id=8; -update noar tt set b1='GW465TWLHZB52' where id=8; -update noar ti set b1='GW465TWLHZB52' where id=8; -update noar tt set b2='QX41Q57G8ZNW8M9JV3WGR4SC6K' where id=8; -update noar ti set b2='QX41Q57G8ZNW8M9JV3WGR4SC6K' where id=8; -update noar tt set b0='ZCARQTAIX15MNWZRD9V7BYXEBS' where id=9; -update noar ti set b0='ZCARQTAIX15MNWZRD9V7BYXEBS' where id=9; -update noar tt set b1='00OFNNG1B0' where id=9; -update noar ti set b1='00OFNNG1B0' where id=9; -update noar tt set b2='X' where id=9; -update noar ti set b2='X' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - b0 blob null, - b1 longblob null, - b2 longblob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set b0='RV4HLLCLNSEZBKOOROTQSDA5' where id=1; -update noar ti set b0='RV4HLLCLNSEZBKOOROTQSDA5' where id=1; -update noar tt set b1='OSJ5BTRV3D' where id=1; -update noar ti set b1='OSJ5BTRV3D' where id=1; -update noar tt set b2='ZXFRGMI' where id=1; -update noar ti set b2='ZXFRGMI' where id=1; -update noar tt set b0='OKD966601VZDTT4QJREZ2Z0EW4TF' where id=2; -update noar ti set b0='OKD966601VZDTT4QJREZ2Z0EW4TF' where id=2; -update noar tt set b1='Z1' where id=2; -update noar ti set b1='Z1' where id=2; -update noar tt set b2='DBW0' where id=2; -update noar ti set b2='DBW0' where id=2; -update noar tt set b0='LTUVFUI6K8MEJGR39OB' where id=3; -update noar ti set b0='LTUVFUI6K8MEJGR39OB' where id=3; -update noar tt set b1='4E6OI5IG99V8H68NV13' where id=3; -update noar ti set b1='4E6OI5IG99V8H68NV13' where id=3; -update noar tt set b2='RT6LPPT36V9JDZMFJGXIAYW34H0EE' where id=3; -update noar ti set b2='RT6LPPT36V9JDZMFJGXIAYW34H0EE' where id=3; -update noar tt set b0='74JUQ5ARCZ' where id=4; -update noar ti set b0='74JUQ5ARCZ' where id=4; -update noar tt set b1='Z7BW2' where id=4; -update noar ti set b1='Z7BW2' where id=4; -update noar tt set b2='EMZH0U' where id=4; -update noar ti set b2='EMZH0U' where id=4; -update noar tt set b0='60V7CY06Z' where id=5; -update noar ti set b0='60V7CY06Z' where id=5; -update noar tt set b1='TAEP7THUV2OCI533QOA4NU3AQSAX2' where id=5; -update noar ti set b1='TAEP7THUV2OCI533QOA4NU3AQSAX2' where id=5; -update noar tt set b2='74' where id=5; -update noar ti set b2='74' where id=5; -update noar tt set b0='QPV50ZSO6P5VDHMCK7EB2E1' where id=6; -update noar ti set b0='QPV50ZSO6P5VDHMCK7EB2E1' where id=6; -update noar tt set b1='B3O9FWA9XMVTMAB3COZBB4ZDQTMRLVR5' where id=6; -update noar ti set b1='B3O9FWA9XMVTMAB3COZBB4ZDQTMRLVR5' where id=6; -update noar tt set b2='48DES2TG9T31KZA615CWY802H35' where id=6; -update noar ti set b2='48DES2TG9T31KZA615CWY802H35' where id=6; -update noar tt set b0='ZWZD85HMA4WLB' where id=7; -update noar ti set b0='ZWZD85HMA4WLB' where id=7; -update noar tt set b1='HFVM9E6AKPKJR80QEK1VNN6LA' where id=7; -update noar ti set b1='HFVM9E6AKPKJR80QEK1VNN6LA' where id=7; -update noar tt set b2='MUSG' where id=7; -update noar ti set b2='MUSG' where id=7; -update noar tt set b0='H1PHGFV745FIURX2L' where id=8; -update noar ti set b0='H1PHGFV745FIURX2L' where id=8; -update noar tt set b1='KXNAZMARY6PEWFPD1TU' where id=8; -update noar ti set b1='KXNAZMARY6PEWFPD1TU' where id=8; -update noar tt set b2='IR274' where id=8; -update noar ti set b2='IR274' where id=8; -update noar tt set b0='6B1HS' where id=9; -update noar ti set b0='6B1HS' where id=9; -update noar tt set b1='UWSHKJCUSXC4TUNN73MW1LXBKK1VXE' where id=9; -update noar ti set b1='UWSHKJCUSXC4TUNN73MW1LXBKK1VXE' where id=9; -update noar tt set b2='ENGXWAL5H3' where id=9; -update noar ti set b2='ENGXWAL5H3' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - b0 blob not null, - b1 longblob not null, - b2 longblob not null -) engine=tokudb; -insert into tt values (1,'','',''); -insert into tt values (2,'','',''); -insert into tt values (3,'','',''); -insert into tt values (4,'','',''); -insert into tt values (5,'','',''); -insert into tt values (6,'','',''); -insert into tt values (7,'','',''); -insert into tt values (8,'','',''); -insert into tt values (9,'','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set b0='I65YP8Q6RMOPP1' where id=1; -update noar ti set b0='I65YP8Q6RMOPP1' where id=1; -update noar tt set b1='A6S5VGN45FOYI2WH08ZIUUNS' where id=1; -update noar ti set b1='A6S5VGN45FOYI2WH08ZIUUNS' where id=1; -update noar tt set b2='D' where id=1; -update noar ti set b2='D' where id=1; -update noar tt set b0='3VVR' where id=2; -update noar ti set b0='3VVR' where id=2; -update noar tt set b1='YJ166H' where id=2; -update noar ti set b1='YJ166H' where id=2; -update noar tt set b2='YQL8AUSTOTDZFC5X1L75488DWHTYD' where id=2; -update noar ti set b2='YQL8AUSTOTDZFC5X1L75488DWHTYD' where id=2; -update noar tt set b0='9WXXI59' where id=3; -update noar ti set b0='9WXXI59' where id=3; -update noar tt set b1='43UCYDP6' where id=3; -update noar ti set b1='43UCYDP6' where id=3; -update noar tt set b2='44DJIDPX6X' where id=3; -update noar ti set b2='44DJIDPX6X' where id=3; -update noar tt set b0='X9EM2Q7DN6XA9EYTMKON9LES7' where id=4; -update noar ti set b0='X9EM2Q7DN6XA9EYTMKON9LES7' where id=4; -update noar tt set b1='YB8D3BOZ80HWSU1MESE05NTECJJAN6' where id=4; -update noar ti set b1='YB8D3BOZ80HWSU1MESE05NTECJJAN6' where id=4; -update noar tt set b2='FXL1UX9BB5LWE48O9F956ZRBE1S1SVA' where id=4; -update noar ti set b2='FXL1UX9BB5LWE48O9F956ZRBE1S1SVA' where id=4; -update noar tt set b0='10KPQ' where id=5; -update noar ti set b0='10KPQ' where id=5; -update noar tt set b1='GY0POJ8NM3J061AFL' where id=5; -update noar ti set b1='GY0POJ8NM3J061AFL' where id=5; -update noar tt set b2='104SXWP9IT9NNPA518U' where id=5; -update noar ti set b2='104SXWP9IT9NNPA518U' where id=5; -update noar tt set b0='LRKHUZ1X' where id=6; -update noar ti set b0='LRKHUZ1X' where id=6; -update noar tt set b1='GB' where id=6; -update noar ti set b1='GB' where id=6; -update noar tt set b2='6OLMUD' where id=6; -update noar ti set b2='6OLMUD' where id=6; -update noar tt set b0='121LKKWOJF0GK5J5MFZ7TG6U' where id=7; -update noar ti set b0='121LKKWOJF0GK5J5MFZ7TG6U' where id=7; -update noar tt set b1='2HH' where id=7; -update noar ti set b1='2HH' where id=7; -update noar tt set b2='QLBB99UECVAL0AGMINQK8YFH8' where id=7; -update noar ti set b2='QLBB99UECVAL0AGMINQK8YFH8' where id=7; -update noar tt set b0='1JLLP564VGPC1NSC4MO' where id=8; -update noar ti set b0='1JLLP564VGPC1NSC4MO' where id=8; -update noar tt set b1='V0RBCUR9R7ERSVEX' where id=8; -update noar ti set b1='V0RBCUR9R7ERSVEX' where id=8; -update noar tt set b2='UYYO7EG7XEF4PA6' where id=8; -update noar ti set b2='UYYO7EG7XEF4PA6' where id=8; -update noar tt set b0='Z1KLG' where id=9; -update noar ti set b0='Z1KLG' where id=9; -update noar tt set b1='G31ZEHD8RYC' where id=9; -update noar ti set b1='G31ZEHD8RYC' where id=9; -update noar tt set b2='0EOG74086EN49' where id=9; -update noar ti set b2='0EOG74086EN49' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - b0 blob null, - b1 longblob null, - b2 text null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set b0='ND3WYA' where id=1; -update noar ti set b0='ND3WYA' where id=1; -update noar tt set b1='O0WNNIJXSCQL0KNGXT4AHUCS9NNLWJ' where id=1; -update noar ti set b1='O0WNNIJXSCQL0KNGXT4AHUCS9NNLWJ' where id=1; -update noar tt set b2='LN6H5B6' where id=1; -update noar ti set b2='LN6H5B6' where id=1; -update noar tt set b0='G5HP1ZNNSX' where id=2; -update noar ti set b0='G5HP1ZNNSX' where id=2; -update noar tt set b1='C567L66GSSVNQL1D8UHVOZKLGWA9C' where id=2; -update noar ti set b1='C567L66GSSVNQL1D8UHVOZKLGWA9C' where id=2; -update noar tt set b2='85MHG8F3FUPGJKHEC' where id=2; -update noar ti set b2='85MHG8F3FUPGJKHEC' where id=2; -update noar tt set b0='T2ZH0DDO35XS3P1K' where id=3; -update noar ti set b0='T2ZH0DDO35XS3P1K' where id=3; -update noar tt set b1='RD5Y7CJ2TK6NRSPGNFTDJ3UX3J' where id=3; -update noar ti set b1='RD5Y7CJ2TK6NRSPGNFTDJ3UX3J' where id=3; -update noar tt set b2='78HFOQGARPMT790A' where id=3; -update noar ti set b2='78HFOQGARPMT790A' where id=3; -update noar tt set b0='A1008GD7MFMG0ZMP8CFZ0910FOXYZNA2' where id=4; -update noar ti set b0='A1008GD7MFMG0ZMP8CFZ0910FOXYZNA2' where id=4; -update noar tt set b1='Z8PY55DXURH15XSJBZ5O2SBT8K9B' where id=4; -update noar ti set b1='Z8PY55DXURH15XSJBZ5O2SBT8K9B' where id=4; -update noar tt set b2='R9ZKAJ69OL0KUFMXARKW4NWHWK' where id=4; -update noar ti set b2='R9ZKAJ69OL0KUFMXARKW4NWHWK' where id=4; -update noar tt set b0='DZK70UFCTD' where id=5; -update noar ti set b0='DZK70UFCTD' where id=5; -update noar tt set b1='L48I5RC2EA2TVF' where id=5; -update noar ti set b1='L48I5RC2EA2TVF' where id=5; -update noar tt set b2='1IOM92TI8BDNQEUMWWS' where id=5; -update noar ti set b2='1IOM92TI8BDNQEUMWWS' where id=5; -update noar tt set b0='PDO' where id=6; -update noar ti set b0='PDO' where id=6; -update noar tt set b1='WWH9Y6YZVMT56' where id=6; -update noar ti set b1='WWH9Y6YZVMT56' where id=6; -update noar tt set b2='2Z20PMRNSKD0BV38EITE6OOVD1Z8CQIN' where id=6; -update noar ti set b2='2Z20PMRNSKD0BV38EITE6OOVD1Z8CQIN' where id=6; -update noar tt set b0='CV4UQ523CL9UZUSJX88OXXU9J' where id=7; -update noar ti set b0='CV4UQ523CL9UZUSJX88OXXU9J' where id=7; -update noar tt set b1='RTNVM4KHK5OAMMRMOBSN' where id=7; -update noar ti set b1='RTNVM4KHK5OAMMRMOBSN' where id=7; -update noar tt set b2='K1KDUQ1TJP04Z2G48' where id=7; -update noar ti set b2='K1KDUQ1TJP04Z2G48' where id=7; -update noar tt set b0='GS4QQFS5F5PHTZEDCY95OIWVRCFCFA' where id=8; -update noar ti set b0='GS4QQFS5F5PHTZEDCY95OIWVRCFCFA' where id=8; -update noar tt set b1='NNM0V2MZUM76Y1JLHB2UQLXIPU0016' where id=8; -update noar ti set b1='NNM0V2MZUM76Y1JLHB2UQLXIPU0016' where id=8; -update noar tt set b2='O14734HMEVI' where id=8; -update noar ti set b2='O14734HMEVI' where id=8; -update noar tt set b0='JK0GUW' where id=9; -update noar ti set b0='JK0GUW' where id=9; -update noar tt set b1='D9UEO2TCB1NTVJUQNSMSO7O' where id=9; -update noar ti set b1='D9UEO2TCB1NTVJUQNSMSO7O' where id=9; -update noar tt set b2='5GWVO7U0DHDK69Y2H053EE' where id=9; -update noar ti set b2='5GWVO7U0DHDK69Y2H053EE' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - b0 blob not null, - b1 longblob not null, - b2 text not null -) engine=tokudb; -insert into tt values (1,'','',''); -insert into tt values (2,'','',''); -insert into tt values (3,'','',''); -insert into tt values (4,'','',''); -insert into tt values (5,'','',''); -insert into tt values (6,'','',''); -insert into tt values (7,'','',''); -insert into tt values (8,'','',''); -insert into tt values (9,'','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set b0='A6JGJ5JYDYG9M1D5ZY1G5X8LBK' where id=1; -update noar ti set b0='A6JGJ5JYDYG9M1D5ZY1G5X8LBK' where id=1; -update noar tt set b1='3CNMX8YH9BGGVEHS4CE' where id=1; -update noar ti set b1='3CNMX8YH9BGGVEHS4CE' where id=1; -update noar tt set b2='ZUA' where id=1; -update noar ti set b2='ZUA' where id=1; -update noar tt set b0='JJVUTKSYA4' where id=2; -update noar ti set b0='JJVUTKSYA4' where id=2; -update noar tt set b1='EDPEUCVHKFNP4IL2UE3' where id=2; -update noar ti set b1='EDPEUCVHKFNP4IL2UE3' where id=2; -update noar tt set b2='O2KVM93RDC4WGYV7LZ05G8B3N4E7X' where id=2; -update noar ti set b2='O2KVM93RDC4WGYV7LZ05G8B3N4E7X' where id=2; -update noar tt set b0='0T4JUDAIU' where id=3; -update noar ti set b0='0T4JUDAIU' where id=3; -update noar tt set b1='B0X21O' where id=3; -update noar ti set b1='B0X21O' where id=3; -update noar tt set b2='UXE1HG7IFDKNVRKB' where id=3; -update noar ti set b2='UXE1HG7IFDKNVRKB' where id=3; -update noar tt set b0='0QSQOR5Y2T93MAPCVPS2ZV' where id=4; -update noar ti set b0='0QSQOR5Y2T93MAPCVPS2ZV' where id=4; -update noar tt set b1='5U334HV76C0F3YGNF8GKLCF4BZ08QR' where id=4; -update noar ti set b1='5U334HV76C0F3YGNF8GKLCF4BZ08QR' where id=4; -update noar tt set b2='M113B8LRIMZOZX0G' where id=4; -update noar ti set b2='M113B8LRIMZOZX0G' where id=4; -update noar tt set b0='V4ZINFU59S' where id=5; -update noar ti set b0='V4ZINFU59S' where id=5; -update noar tt set b1='G6LJC9P5LLWJV9ANSPSQPPPAWYHGON' where id=5; -update noar ti set b1='G6LJC9P5LLWJV9ANSPSQPPPAWYHGON' where id=5; -update noar tt set b2='KZFNNN85SCLW4LFM458TII7NNK' where id=5; -update noar ti set b2='KZFNNN85SCLW4LFM458TII7NNK' where id=5; -update noar tt set b0='R0' where id=6; -update noar ti set b0='R0' where id=6; -update noar tt set b1='BA4KGZFQEBLX2XRD1QOR' where id=6; -update noar ti set b1='BA4KGZFQEBLX2XRD1QOR' where id=6; -update noar tt set b2='X2XC3F94D' where id=6; -update noar ti set b2='X2XC3F94D' where id=6; -update noar tt set b0='2YRLUJK6SLF3XC7M' where id=7; -update noar ti set b0='2YRLUJK6SLF3XC7M' where id=7; -update noar tt set b1='J2NT4C7PLLBGEDU3GOMEU6JP' where id=7; -update noar ti set b1='J2NT4C7PLLBGEDU3GOMEU6JP' where id=7; -update noar tt set b2='6JO97FFNJHTQMCC2AM01G3F4D0A9XXUW' where id=7; -update noar ti set b2='6JO97FFNJHTQMCC2AM01G3F4D0A9XXUW' where id=7; -update noar tt set b0='4QLZZPL3DNR22B3LX3XC85K5' where id=8; -update noar ti set b0='4QLZZPL3DNR22B3LX3XC85K5' where id=8; -update noar tt set b1='8C1MDIF7N0' where id=8; -update noar ti set b1='8C1MDIF7N0' where id=8; -update noar tt set b2='6YXGDYIXWAJP2LI2MI6Q0' where id=8; -update noar ti set b2='6YXGDYIXWAJP2LI2MI6Q0' where id=8; -update noar tt set b0='5WH4145AGVDBEG3BHV4JYMMF' where id=9; -update noar ti set b0='5WH4145AGVDBEG3BHV4JYMMF' where id=9; -update noar tt set b1='QNR4O6DPU' where id=9; -update noar ti set b1='QNR4O6DPU' where id=9; -update noar tt set b2='HFLXU8R1G' where id=9; -update noar ti set b2='HFLXU8R1G' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - b0 blob null, - b1 text null, - b2 tinyblob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set b0='B1EUCR' where id=1; -update noar ti set b0='B1EUCR' where id=1; -update noar tt set b1='VKU0K8YVVJ1M1DI79BEYHB0ZW' where id=1; -update noar ti set b1='VKU0K8YVVJ1M1DI79BEYHB0ZW' where id=1; -update noar tt set b2='YH88B551C' where id=1; -update noar ti set b2='YH88B551C' where id=1; -update noar tt set b0='9X67O7K6W2EYW4' where id=2; -update noar ti set b0='9X67O7K6W2EYW4' where id=2; -update noar tt set b1='9GYG9F44' where id=2; -update noar ti set b1='9GYG9F44' where id=2; -update noar tt set b2='JDOAQ6KUC5CMFR03CM' where id=2; -update noar ti set b2='JDOAQ6KUC5CMFR03CM' where id=2; -update noar tt set b0='9CPHQ7B8Z3' where id=3; -update noar ti set b0='9CPHQ7B8Z3' where id=3; -update noar tt set b1='2TVWNIGSVHZLJ' where id=3; -update noar ti set b1='2TVWNIGSVHZLJ' where id=3; -update noar tt set b2='VQR6C5W17KDJ2L32' where id=3; -update noar ti set b2='VQR6C5W17KDJ2L32' where id=3; -update noar tt set b0='TV2' where id=4; -update noar ti set b0='TV2' where id=4; -update noar tt set b1='JN415DV9HPR8PLHX61HJ7GG092' where id=4; -update noar ti set b1='JN415DV9HPR8PLHX61HJ7GG092' where id=4; -update noar tt set b2='1UO' where id=4; -update noar ti set b2='1UO' where id=4; -update noar tt set b0='XTPCW9609D79KN7TU' where id=5; -update noar ti set b0='XTPCW9609D79KN7TU' where id=5; -update noar tt set b1='JKMU2DGEMAB' where id=5; -update noar ti set b1='JKMU2DGEMAB' where id=5; -update noar tt set b2='S3O716HW0MFK6CSLDIIP3YYCXXA' where id=5; -update noar ti set b2='S3O716HW0MFK6CSLDIIP3YYCXXA' where id=5; -update noar tt set b0='VP3F77ZOTLX0' where id=6; -update noar ti set b0='VP3F77ZOTLX0' where id=6; -update noar tt set b1='WFFD8W3B4C9SYSH2VDJFT64V' where id=6; -update noar ti set b1='WFFD8W3B4C9SYSH2VDJFT64V' where id=6; -update noar tt set b2='D3VR83F2X8X5PPVOKT' where id=6; -update noar ti set b2='D3VR83F2X8X5PPVOKT' where id=6; -update noar tt set b0='YRIZ03REJNJHGSZS7NBVCVXKW' where id=7; -update noar ti set b0='YRIZ03REJNJHGSZS7NBVCVXKW' where id=7; -update noar tt set b1='U2P9IPQ85ADK' where id=7; -update noar ti set b1='U2P9IPQ85ADK' where id=7; -update noar tt set b2='F74G2GNZ' where id=7; -update noar ti set b2='F74G2GNZ' where id=7; -update noar tt set b0='0120V4BYBR' where id=8; -update noar ti set b0='0120V4BYBR' where id=8; -update noar tt set b1='7496AO8CA9ZAJIX8CJEYAGGIXGST4' where id=8; -update noar ti set b1='7496AO8CA9ZAJIX8CJEYAGGIXGST4' where id=8; -update noar tt set b2='FZZ8MZCTVE8AQN3162GABOPRJ9C6T' where id=8; -update noar ti set b2='FZZ8MZCTVE8AQN3162GABOPRJ9C6T' where id=8; -update noar tt set b0='IR4G6VQBK8DLV6' where id=9; -update noar ti set b0='IR4G6VQBK8DLV6' where id=9; -update noar tt set b1='157A149HUF2MJVOBRTSB3A' where id=9; -update noar ti set b1='157A149HUF2MJVOBRTSB3A' where id=9; -update noar tt set b2='ESD9EIVNV2G3MK9Z86SC13ZSMICFXUA' where id=9; -update noar ti set b2='ESD9EIVNV2G3MK9Z86SC13ZSMICFXUA' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - b0 blob not null, - b1 text not null, - b2 tinyblob not null -) engine=tokudb; -insert into tt values (1,'','',''); -insert into tt values (2,'','',''); -insert into tt values (3,'','',''); -insert into tt values (4,'','',''); -insert into tt values (5,'','',''); -insert into tt values (6,'','',''); -insert into tt values (7,'','',''); -insert into tt values (8,'','',''); -insert into tt values (9,'','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set b0='T4RZHTYOV92D077ZVD43JFF' where id=1; -update noar ti set b0='T4RZHTYOV92D077ZVD43JFF' where id=1; -update noar tt set b1='TQFD' where id=1; -update noar ti set b1='TQFD' where id=1; -update noar tt set b2='A' where id=1; -update noar ti set b2='A' where id=1; -update noar tt set b0='XHRCV97MTPE21A16TGZJ' where id=2; -update noar ti set b0='XHRCV97MTPE21A16TGZJ' where id=2; -update noar tt set b1='5BPP1' where id=2; -update noar ti set b1='5BPP1' where id=2; -update noar tt set b2='YZE70KE20TX4OZGW' where id=2; -update noar ti set b2='YZE70KE20TX4OZGW' where id=2; -update noar tt set b0='S9Z7D1A7OSZI58RJ21WYHDBMBAWK' where id=3; -update noar ti set b0='S9Z7D1A7OSZI58RJ21WYHDBMBAWK' where id=3; -update noar tt set b1='UGKFG7Y5YMQF0D1NQGCVJNEUS' where id=3; -update noar ti set b1='UGKFG7Y5YMQF0D1NQGCVJNEUS' where id=3; -update noar tt set b2='Y' where id=3; -update noar ti set b2='Y' where id=3; -update noar tt set b0='DRJ6HDNKW' where id=4; -update noar ti set b0='DRJ6HDNKW' where id=4; -update noar tt set b1='ILT47' where id=4; -update noar ti set b1='ILT47' where id=4; -update noar tt set b2='QQMJQGI7EV2C51MJ75VIF10N6' where id=4; -update noar ti set b2='QQMJQGI7EV2C51MJ75VIF10N6' where id=4; -update noar tt set b0='FAZB86899K4' where id=5; -update noar ti set b0='FAZB86899K4' where id=5; -update noar tt set b1='GCHLZYZPY8QJ60W' where id=5; -update noar ti set b1='GCHLZYZPY8QJ60W' where id=5; -update noar tt set b2='98O8PX' where id=5; -update noar ti set b2='98O8PX' where id=5; -update noar tt set b0='S' where id=6; -update noar ti set b0='S' where id=6; -update noar tt set b1='RSRBLPT172OA5SXM' where id=6; -update noar ti set b1='RSRBLPT172OA5SXM' where id=6; -update noar tt set b2='ZTCQAVC1TYKN938RLJCGNJ' where id=6; -update noar ti set b2='ZTCQAVC1TYKN938RLJCGNJ' where id=6; -update noar tt set b0='YFT9WPF81' where id=7; -update noar ti set b0='YFT9WPF81' where id=7; -update noar tt set b1='EF4E9DUGS3UWKLIM150G' where id=7; -update noar ti set b1='EF4E9DUGS3UWKLIM150G' where id=7; -update noar tt set b2='RW3EYE3UGWS' where id=7; -update noar ti set b2='RW3EYE3UGWS' where id=7; -update noar tt set b0='P' where id=8; -update noar ti set b0='P' where id=8; -update noar tt set b1='CG9P7SYZCK0MMHYZRO' where id=8; -update noar ti set b1='CG9P7SYZCK0MMHYZRO' where id=8; -update noar tt set b2='2FBGWQ8S6BRIK23BF3AZ4ODUDQBX' where id=8; -update noar ti set b2='2FBGWQ8S6BRIK23BF3AZ4ODUDQBX' where id=8; -update noar tt set b0='5HDPAV2625DUZ3IWP17M4XOUC' where id=9; -update noar ti set b0='5HDPAV2625DUZ3IWP17M4XOUC' where id=9; -update noar tt set b1='D5' where id=9; -update noar ti set b1='D5' where id=9; -update noar tt set b2='Z62O27HTVQ8EP7I' where id=9; -update noar ti set b2='Z62O27HTVQ8EP7I' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - b0 blob null, - b1 text null, - b2 blob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set b0='HA1HIAMV2HH' where id=1; -update noar ti set b0='HA1HIAMV2HH' where id=1; -update noar tt set b1='45EX2GGUMF6882GXEWHEAH4T7K8T6LH' where id=1; -update noar ti set b1='45EX2GGUMF6882GXEWHEAH4T7K8T6LH' where id=1; -update noar tt set b2='KEIQI2K' where id=1; -update noar ti set b2='KEIQI2K' where id=1; -update noar tt set b0='ARTUUP4SGQK77PH9I' where id=2; -update noar ti set b0='ARTUUP4SGQK77PH9I' where id=2; -update noar tt set b1='JFGHH15' where id=2; -update noar ti set b1='JFGHH15' where id=2; -update noar tt set b2='4W7BS4VZC02701' where id=2; -update noar ti set b2='4W7BS4VZC02701' where id=2; -update noar tt set b0='QDUL0ORSDP' where id=3; -update noar ti set b0='QDUL0ORSDP' where id=3; -update noar tt set b1='7FOK3YA' where id=3; -update noar ti set b1='7FOK3YA' where id=3; -update noar tt set b2='7J1B4IB5WCXU5S3JL7CUNQGF1' where id=3; -update noar ti set b2='7J1B4IB5WCXU5S3JL7CUNQGF1' where id=3; -update noar tt set b0='HX7UFX4SMJZ1QVHYQBY' where id=4; -update noar ti set b0='HX7UFX4SMJZ1QVHYQBY' where id=4; -update noar tt set b1='O9M' where id=4; -update noar ti set b1='O9M' where id=4; -update noar tt set b2='8ULWYUKC8H6Q9CIY8PLNKG9Z988AO' where id=4; -update noar ti set b2='8ULWYUKC8H6Q9CIY8PLNKG9Z988AO' where id=4; -update noar tt set b0='WEGH8P35N6G6K' where id=5; -update noar ti set b0='WEGH8P35N6G6K' where id=5; -update noar tt set b1='N' where id=5; -update noar ti set b1='N' where id=5; -update noar tt set b2='LYMBO5R67XEDQ641CUCXJ' where id=5; -update noar ti set b2='LYMBO5R67XEDQ641CUCXJ' where id=5; -update noar tt set b0='112IOFAN' where id=6; -update noar ti set b0='112IOFAN' where id=6; -update noar tt set b1='MSGCHV0NCZ7ZP74KIIARPW0P96FJGUO' where id=6; -update noar ti set b1='MSGCHV0NCZ7ZP74KIIARPW0P96FJGUO' where id=6; -update noar tt set b2='56F' where id=6; -update noar ti set b2='56F' where id=6; -update noar tt set b0='WSC6E7Q2Y3ZTVF6QVOQ' where id=7; -update noar ti set b0='WSC6E7Q2Y3ZTVF6QVOQ' where id=7; -update noar tt set b1='TJ6HKNWSOSLM0EEN5EL' where id=7; -update noar ti set b1='TJ6HKNWSOSLM0EEN5EL' where id=7; -update noar tt set b2='T9W9HDQTZG1I82HW6DGCWXMVS4FC' where id=7; -update noar ti set b2='T9W9HDQTZG1I82HW6DGCWXMVS4FC' where id=7; -update noar tt set b0='53ZT4AD' where id=8; -update noar ti set b0='53ZT4AD' where id=8; -update noar tt set b1='P1GGPXU5WFC43718F5O4O' where id=8; -update noar ti set b1='P1GGPXU5WFC43718F5O4O' where id=8; -update noar tt set b2='MVHG2E' where id=8; -update noar ti set b2='MVHG2E' where id=8; -update noar tt set b0='I5BL2WISRM5EVQJRVV84WXO57T4N' where id=9; -update noar ti set b0='I5BL2WISRM5EVQJRVV84WXO57T4N' where id=9; -update noar tt set b1='FYYJ0J3YKDDUYD7PWQCAM' where id=9; -update noar ti set b1='FYYJ0J3YKDDUYD7PWQCAM' where id=9; -update noar tt set b2='XRNJSJNUOPHMJ0H1W0QTME19' where id=9; -update noar ti set b2='XRNJSJNUOPHMJ0H1W0QTME19' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - b0 blob not null, - b1 text not null, - b2 blob not null -) engine=tokudb; -insert into tt values (1,'','',''); -insert into tt values (2,'','',''); -insert into tt values (3,'','',''); -insert into tt values (4,'','',''); -insert into tt values (5,'','',''); -insert into tt values (6,'','',''); -insert into tt values (7,'','',''); -insert into tt values (8,'','',''); -insert into tt values (9,'','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set b0='8EGO5L81728RPV4062RFW871PJYU9' where id=1; -update noar ti set b0='8EGO5L81728RPV4062RFW871PJYU9' where id=1; -update noar tt set b1='NX8UVM1AYN3CNYWRMJ2Y02Z0CNR5YS' where id=1; -update noar ti set b1='NX8UVM1AYN3CNYWRMJ2Y02Z0CNR5YS' where id=1; -update noar tt set b2='Y12LXQQ' where id=1; -update noar ti set b2='Y12LXQQ' where id=1; -update noar tt set b0='0BVQ7MB38GA' where id=2; -update noar ti set b0='0BVQ7MB38GA' where id=2; -update noar tt set b1='C01ZDY' where id=2; -update noar ti set b1='C01ZDY' where id=2; -update noar tt set b2='SETD4N39CHLM318H5E1WLWX' where id=2; -update noar ti set b2='SETD4N39CHLM318H5E1WLWX' where id=2; -update noar tt set b0='HA2LVP7NDKTXO1HHY3KAWQAIW' where id=3; -update noar ti set b0='HA2LVP7NDKTXO1HHY3KAWQAIW' where id=3; -update noar tt set b1='E9TWBDPA' where id=3; -update noar ti set b1='E9TWBDPA' where id=3; -update noar tt set b2='31' where id=3; -update noar ti set b2='31' where id=3; -update noar tt set b0='N1RBV1E57FFZMECMYPVBQCMCL57T6X' where id=4; -update noar ti set b0='N1RBV1E57FFZMECMYPVBQCMCL57T6X' where id=4; -update noar tt set b1='TN4OXKOF9NANKFX' where id=4; -update noar ti set b1='TN4OXKOF9NANKFX' where id=4; -update noar tt set b2='D21Q8HTGK' where id=4; -update noar ti set b2='D21Q8HTGK' where id=4; -update noar tt set b0='FHJ22A160B62SM72QI' where id=5; -update noar ti set b0='FHJ22A160B62SM72QI' where id=5; -update noar tt set b1='2BG2W7FF30EWYUS' where id=5; -update noar ti set b1='2BG2W7FF30EWYUS' where id=5; -update noar tt set b2='9VI9BG5VTQBZKGTLIOXUKE' where id=5; -update noar ti set b2='9VI9BG5VTQBZKGTLIOXUKE' where id=5; -update noar tt set b0='0ACIBLG2ISBH7U0' where id=6; -update noar ti set b0='0ACIBLG2ISBH7U0' where id=6; -update noar tt set b1='TP6FONDAL2KJVOM2NVMD5M3G' where id=6; -update noar ti set b1='TP6FONDAL2KJVOM2NVMD5M3G' where id=6; -update noar tt set b2='KC' where id=6; -update noar ti set b2='KC' where id=6; -update noar tt set b0='3A8GWSCW78AMUF' where id=7; -update noar ti set b0='3A8GWSCW78AMUF' where id=7; -update noar tt set b1='DV9QLRMQNQS' where id=7; -update noar ti set b1='DV9QLRMQNQS' where id=7; -update noar tt set b2='HOIUMKDXKZFBB6211T' where id=7; -update noar ti set b2='HOIUMKDXKZFBB6211T' where id=7; -update noar tt set b0='6P' where id=8; -update noar ti set b0='6P' where id=8; -update noar tt set b1='Y4MJE9N6CTPU2QIUHKD4SR7VQZK8S81' where id=8; -update noar ti set b1='Y4MJE9N6CTPU2QIUHKD4SR7VQZK8S81' where id=8; -update noar tt set b2='8BLLILMS7MI02V6RRQQDPWEE' where id=8; -update noar ti set b2='8BLLILMS7MI02V6RRQQDPWEE' where id=8; -update noar tt set b0='05HGJ2ZTCPITH5I18CTSP1' where id=9; -update noar ti set b0='05HGJ2ZTCPITH5I18CTSP1' where id=9; -update noar tt set b1='NVTJO9JHT3BCDGFVML9MNO' where id=9; -update noar ti set b1='NVTJO9JHT3BCDGFVML9MNO' where id=9; -update noar tt set b2='I6LVEERZ3J6E8' where id=9; -update noar ti set b2='I6LVEERZ3J6E8' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - b0 blob null, - b1 text null, - b2 mediumblob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set b0='UDJ5W3RPHI02CA' where id=1; -update noar ti set b0='UDJ5W3RPHI02CA' where id=1; -update noar tt set b1='IWKOODAOFT4RS5T6E6YF6FM7GWK' where id=1; -update noar ti set b1='IWKOODAOFT4RS5T6E6YF6FM7GWK' where id=1; -update noar tt set b2='0HUQAGALI' where id=1; -update noar ti set b2='0HUQAGALI' where id=1; -update noar tt set b0='UIQZ18K5FC02J2LU' where id=2; -update noar ti set b0='UIQZ18K5FC02J2LU' where id=2; -update noar tt set b1='DEK6BPTJ' where id=2; -update noar ti set b1='DEK6BPTJ' where id=2; -update noar tt set b2='F2H7NWIDZL9AWYZ4JQ0XMG3FB' where id=2; -update noar ti set b2='F2H7NWIDZL9AWYZ4JQ0XMG3FB' where id=2; -update noar tt set b0='Z8D1C4J6IC7NY7OKY5AB43FSKSMBSXXF' where id=3; -update noar ti set b0='Z8D1C4J6IC7NY7OKY5AB43FSKSMBSXXF' where id=3; -update noar tt set b1='VR0P9KPR510FU9QSTFEH4' where id=3; -update noar ti set b1='VR0P9KPR510FU9QSTFEH4' where id=3; -update noar tt set b2='I6UMQ59YSDFJ4LO4543VV2L' where id=3; -update noar ti set b2='I6UMQ59YSDFJ4LO4543VV2L' where id=3; -update noar tt set b0='R6YPBQ2OV5AT22VENGQO4GOJ' where id=4; -update noar ti set b0='R6YPBQ2OV5AT22VENGQO4GOJ' where id=4; -update noar tt set b1='XJ0TAIIVXJNDE2J836SE7' where id=4; -update noar ti set b1='XJ0TAIIVXJNDE2J836SE7' where id=4; -update noar tt set b2='1OQ73M' where id=4; -update noar ti set b2='1OQ73M' where id=4; -update noar tt set b0='LVE5T9HMVMI5HWMHTWZU5YY3VH' where id=5; -update noar ti set b0='LVE5T9HMVMI5HWMHTWZU5YY3VH' where id=5; -update noar tt set b1='FEA8YTBLNJU258GUGUJ70GV9B' where id=5; -update noar ti set b1='FEA8YTBLNJU258GUGUJ70GV9B' where id=5; -update noar tt set b2='P9TAHRCDJ2K69XF1NL1' where id=5; -update noar ti set b2='P9TAHRCDJ2K69XF1NL1' where id=5; -update noar tt set b0='VWED1OTEDB62D6JJ66' where id=6; -update noar ti set b0='VWED1OTEDB62D6JJ66' where id=6; -update noar tt set b1='1M8JPPLK1OT5PUL7TW2L1MX32NXCXD' where id=6; -update noar ti set b1='1M8JPPLK1OT5PUL7TW2L1MX32NXCXD' where id=6; -update noar tt set b2='CPIKRKHJKGCPQUGK1672HN' where id=6; -update noar ti set b2='CPIKRKHJKGCPQUGK1672HN' where id=6; -update noar tt set b0='O7TZFIEFB0ZTFFZ6EU9A7L2PNX' where id=7; -update noar ti set b0='O7TZFIEFB0ZTFFZ6EU9A7L2PNX' where id=7; -update noar tt set b1='YXTJ9S5VW2KD09D2B9Z7S8AW7RQW9NQE' where id=7; -update noar ti set b1='YXTJ9S5VW2KD09D2B9Z7S8AW7RQW9NQE' where id=7; -update noar tt set b2='NRLTOPISL5NGANN' where id=7; -update noar ti set b2='NRLTOPISL5NGANN' where id=7; -update noar tt set b0='11BPELVZ6JV8NUGFMK2YO' where id=8; -update noar ti set b0='11BPELVZ6JV8NUGFMK2YO' where id=8; -update noar tt set b1='BENH3OXMOT40J' where id=8; -update noar ti set b1='BENH3OXMOT40J' where id=8; -update noar tt set b2='QWQ5UMZB0Q80AG3Q0UZDTF63YK8S8J5' where id=8; -update noar ti set b2='QWQ5UMZB0Q80AG3Q0UZDTF63YK8S8J5' where id=8; -update noar tt set b0='T2' where id=9; -update noar ti set b0='T2' where id=9; -update noar tt set b1='5VMBH0X6340U4E9UA95L1NSUDRSD' where id=9; -update noar ti set b1='5VMBH0X6340U4E9UA95L1NSUDRSD' where id=9; -update noar tt set b2='07XICTUD4CK6XTTEC2JDV' where id=9; -update noar ti set b2='07XICTUD4CK6XTTEC2JDV' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - b0 blob not null, - b1 text not null, - b2 mediumblob not null -) engine=tokudb; -insert into tt values (1,'','',''); -insert into tt values (2,'','',''); -insert into tt values (3,'','',''); -insert into tt values (4,'','',''); -insert into tt values (5,'','',''); -insert into tt values (6,'','',''); -insert into tt values (7,'','',''); -insert into tt values (8,'','',''); -insert into tt values (9,'','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set b0='EDZTEJZONZLOLHZDY' where id=1; -update noar ti set b0='EDZTEJZONZLOLHZDY' where id=1; -update noar tt set b1='W3B52JOBRQUFLE7R' where id=1; -update noar ti set b1='W3B52JOBRQUFLE7R' where id=1; -update noar tt set b2='Z4ALPLU' where id=1; -update noar ti set b2='Z4ALPLU' where id=1; -update noar tt set b0='I2DO4X2E08E6NKCN7' where id=2; -update noar ti set b0='I2DO4X2E08E6NKCN7' where id=2; -update noar tt set b1='1ABP' where id=2; -update noar ti set b1='1ABP' where id=2; -update noar tt set b2='CT8Y369UVG1S015BRQOIYA' where id=2; -update noar ti set b2='CT8Y369UVG1S015BRQOIYA' where id=2; -update noar tt set b0='VAPEDI' where id=3; -update noar ti set b0='VAPEDI' where id=3; -update noar tt set b1='J4GLCT0A04SL' where id=3; -update noar ti set b1='J4GLCT0A04SL' where id=3; -update noar tt set b2='CPLUX8JR8BXT' where id=3; -update noar ti set b2='CPLUX8JR8BXT' where id=3; -update noar tt set b0='STGMGI3F1SMIT4FGGHLJ' where id=4; -update noar ti set b0='STGMGI3F1SMIT4FGGHLJ' where id=4; -update noar tt set b1='ZIVAR7XEOSZ2' where id=4; -update noar ti set b1='ZIVAR7XEOSZ2' where id=4; -update noar tt set b2='M5SIDWZ0BQQ048S7JKR74F8' where id=4; -update noar ti set b2='M5SIDWZ0BQQ048S7JKR74F8' where id=4; -update noar tt set b0='EW2RE7WEXNG4QBNZMVWD' where id=5; -update noar ti set b0='EW2RE7WEXNG4QBNZMVWD' where id=5; -update noar tt set b1='SM0RIHD7BN771MC56JYDE1PIHHWEV' where id=5; -update noar ti set b1='SM0RIHD7BN771MC56JYDE1PIHHWEV' where id=5; -update noar tt set b2='2ZCP4' where id=5; -update noar ti set b2='2ZCP4' where id=5; -update noar tt set b0='F8LZUXTWNUJHIB9JAQPC' where id=6; -update noar ti set b0='F8LZUXTWNUJHIB9JAQPC' where id=6; -update noar tt set b1='U' where id=6; -update noar ti set b1='U' where id=6; -update noar tt set b2='EVJPU4C94LR9' where id=6; -update noar ti set b2='EVJPU4C94LR9' where id=6; -update noar tt set b0='7QOMWZPD1QR63NZ9LAC96IZY6CO8154T' where id=7; -update noar ti set b0='7QOMWZPD1QR63NZ9LAC96IZY6CO8154T' where id=7; -update noar tt set b1='BKRGK9UL' where id=7; -update noar ti set b1='BKRGK9UL' where id=7; -update noar tt set b2='WHJQS5A' where id=7; -update noar ti set b2='WHJQS5A' where id=7; -update noar tt set b0='J820YVR6DJK7SQ9EW6XV9H045I1D2' where id=8; -update noar ti set b0='J820YVR6DJK7SQ9EW6XV9H045I1D2' where id=8; -update noar tt set b1='6E4O0ES2BJ5YRG24X' where id=8; -update noar ti set b1='6E4O0ES2BJ5YRG24X' where id=8; -update noar tt set b2='A46S4C7PIWHDL4YV' where id=8; -update noar ti set b2='A46S4C7PIWHDL4YV' where id=8; -update noar tt set b0='5D5D' where id=9; -update noar ti set b0='5D5D' where id=9; -update noar tt set b1='L1DP8MN2K' where id=9; -update noar ti set b1='L1DP8MN2K' where id=9; -update noar tt set b2='1WU6NWLJCALZUG0H5AX9W9YPL6PMSM2' where id=9; -update noar ti set b2='1WU6NWLJCALZUG0H5AX9W9YPL6PMSM2' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - b0 blob null, - b1 text null, - b2 longblob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set b0='W3IA19UIZY1KC751B' where id=1; -update noar ti set b0='W3IA19UIZY1KC751B' where id=1; -update noar tt set b1='E5HC1LONEX9AZ65D0AAISY99RHT' where id=1; -update noar ti set b1='E5HC1LONEX9AZ65D0AAISY99RHT' where id=1; -update noar tt set b2='X5NGFGVUUJQHLFUHMTMPFDZ9J' where id=1; -update noar ti set b2='X5NGFGVUUJQHLFUHMTMPFDZ9J' where id=1; -update noar tt set b0='52UJSV3' where id=2; -update noar ti set b0='52UJSV3' where id=2; -update noar tt set b1='L37XA72ODF426OEHTEC' where id=2; -update noar ti set b1='L37XA72ODF426OEHTEC' where id=2; -update noar tt set b2='F0F9M43TNV8UIB' where id=2; -update noar ti set b2='F0F9M43TNV8UIB' where id=2; -update noar tt set b0='SZ5SSAIW9QPDS5Y' where id=3; -update noar ti set b0='SZ5SSAIW9QPDS5Y' where id=3; -update noar tt set b1='TUNEO04475K426O4I6' where id=3; -update noar ti set b1='TUNEO04475K426O4I6' where id=3; -update noar tt set b2='NIETHOR663IPECZR8U9UUBU1VG6EBDK' where id=3; -update noar ti set b2='NIETHOR663IPECZR8U9UUBU1VG6EBDK' where id=3; -update noar tt set b0='U3C53R' where id=4; -update noar ti set b0='U3C53R' where id=4; -update noar tt set b1='1P3WNES2T32XMGOYHIUC755TP' where id=4; -update noar ti set b1='1P3WNES2T32XMGOYHIUC755TP' where id=4; -update noar tt set b2='6UAHCBWF2JBOPM' where id=4; -update noar ti set b2='6UAHCBWF2JBOPM' where id=4; -update noar tt set b0='J0AG2NX' where id=5; -update noar ti set b0='J0AG2NX' where id=5; -update noar tt set b1='W' where id=5; -update noar ti set b1='W' where id=5; -update noar tt set b2='9X0G5J' where id=5; -update noar ti set b2='9X0G5J' where id=5; -update noar tt set b0='80OCZLO2X8A5VVDWOH1' where id=6; -update noar ti set b0='80OCZLO2X8A5VVDWOH1' where id=6; -update noar tt set b1='4PULS' where id=6; -update noar ti set b1='4PULS' where id=6; -update noar tt set b2='54BV' where id=6; -update noar ti set b2='54BV' where id=6; -update noar tt set b0='IQYR2839P0VA35JB69GABVJE' where id=7; -update noar ti set b0='IQYR2839P0VA35JB69GABVJE' where id=7; -update noar tt set b1='X4WV9QNADO' where id=7; -update noar ti set b1='X4WV9QNADO' where id=7; -update noar tt set b2='E0W9' where id=7; -update noar ti set b2='E0W9' where id=7; -update noar tt set b0='GNSUWQ85FIPJANX58RFZ1PY1PT8' where id=8; -update noar ti set b0='GNSUWQ85FIPJANX58RFZ1PY1PT8' where id=8; -update noar tt set b1='JSTLNO9ZCBWPRBYXYXFKF5EJX936YS' where id=8; -update noar ti set b1='JSTLNO9ZCBWPRBYXYXFKF5EJX936YS' where id=8; -update noar tt set b2='XFFW' where id=8; -update noar ti set b2='XFFW' where id=8; -update noar tt set b0='20BGNJ' where id=9; -update noar ti set b0='20BGNJ' where id=9; -update noar tt set b1='DL8A3XINIRN44W275IA' where id=9; -update noar ti set b1='DL8A3XINIRN44W275IA' where id=9; -update noar tt set b2='K16' where id=9; -update noar ti set b2='K16' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - b0 blob not null, - b1 text not null, - b2 longblob not null -) engine=tokudb; -insert into tt values (1,'','',''); -insert into tt values (2,'','',''); -insert into tt values (3,'','',''); -insert into tt values (4,'','',''); -insert into tt values (5,'','',''); -insert into tt values (6,'','',''); -insert into tt values (7,'','',''); -insert into tt values (8,'','',''); -insert into tt values (9,'','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set b0='YAI1RJVG5HVWK2DOOTFI' where id=1; -update noar ti set b0='YAI1RJVG5HVWK2DOOTFI' where id=1; -update noar tt set b1='7F9NKS90DULKGW' where id=1; -update noar ti set b1='7F9NKS90DULKGW' where id=1; -update noar tt set b2='LZD1WD' where id=1; -update noar ti set b2='LZD1WD' where id=1; -update noar tt set b0='T8RY05QML9R2JAAAC0ZS' where id=2; -update noar ti set b0='T8RY05QML9R2JAAAC0ZS' where id=2; -update noar tt set b1='NUHRN3200BKNTEF9KGHIC00KL6455S' where id=2; -update noar ti set b1='NUHRN3200BKNTEF9KGHIC00KL6455S' where id=2; -update noar tt set b2='VKG2SP1O' where id=2; -update noar ti set b2='VKG2SP1O' where id=2; -update noar tt set b0='M45XTWC67ERX6' where id=3; -update noar ti set b0='M45XTWC67ERX6' where id=3; -update noar tt set b1='7T3A3OZM6L8CZ618LR445W72EEOCW7' where id=3; -update noar ti set b1='7T3A3OZM6L8CZ618LR445W72EEOCW7' where id=3; -update noar tt set b2='UQRWCK4ON8EOULPQFO2ST' where id=3; -update noar ti set b2='UQRWCK4ON8EOULPQFO2ST' where id=3; -update noar tt set b0='3J9X4TSW9OASS7XE4L' where id=4; -update noar ti set b0='3J9X4TSW9OASS7XE4L' where id=4; -update noar tt set b1='20HQSVWXEL585YIMX1N' where id=4; -update noar ti set b1='20HQSVWXEL585YIMX1N' where id=4; -update noar tt set b2='6G' where id=4; -update noar ti set b2='6G' where id=4; -update noar tt set b0='VE' where id=5; -update noar ti set b0='VE' where id=5; -update noar tt set b1='P2K9F0PI0I' where id=5; -update noar ti set b1='P2K9F0PI0I' where id=5; -update noar tt set b2='O957F' where id=5; -update noar ti set b2='O957F' where id=5; -update noar tt set b0='2ZAGNW74LF62AI0Q0MIUFUENHMVQE' where id=6; -update noar ti set b0='2ZAGNW74LF62AI0Q0MIUFUENHMVQE' where id=6; -update noar tt set b1='BHVD6PM' where id=6; -update noar ti set b1='BHVD6PM' where id=6; -update noar tt set b2='0TUXEQ1' where id=6; -update noar ti set b2='0TUXEQ1' where id=6; -update noar tt set b0='WE178WBM64YFNA0VR8R72' where id=7; -update noar ti set b0='WE178WBM64YFNA0VR8R72' where id=7; -update noar tt set b1='CEOBRM8B5RJPJIOWG5J201BX4H' where id=7; -update noar ti set b1='CEOBRM8B5RJPJIOWG5J201BX4H' where id=7; -update noar tt set b2='8OFITYK0IFVKCEYEEC' where id=7; -update noar ti set b2='8OFITYK0IFVKCEYEEC' where id=7; -update noar tt set b0='55N14DB5S1ZPLBF8YCK6DQBD1AU' where id=8; -update noar ti set b0='55N14DB5S1ZPLBF8YCK6DQBD1AU' where id=8; -update noar tt set b1='CE8CUTQ8T' where id=8; -update noar ti set b1='CE8CUTQ8T' where id=8; -update noar tt set b2='R44PRV4S8UJJVCFEY6OUD72' where id=8; -update noar ti set b2='R44PRV4S8UJJVCFEY6OUD72' where id=8; -update noar tt set b0='HT3BB1NSR1WYIWD7R2NKB' where id=9; -update noar ti set b0='HT3BB1NSR1WYIWD7R2NKB' where id=9; -update noar tt set b1='1V1AYK88R4B77I2' where id=9; -update noar ti set b1='1V1AYK88R4B77I2' where id=9; -update noar tt set b2='OL0F' where id=9; -update noar ti set b2='OL0F' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - b0 blob null, - b1 text null, - b2 text null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set b0='BG2X' where id=1; -update noar ti set b0='BG2X' where id=1; -update noar tt set b1='UY6IKKOSWBTTL2VW00' where id=1; -update noar ti set b1='UY6IKKOSWBTTL2VW00' where id=1; -update noar tt set b2='NF7WJICX71U' where id=1; -update noar ti set b2='NF7WJICX71U' where id=1; -update noar tt set b0='VHD07HKZCKMCOQ2E2UP' where id=2; -update noar ti set b0='VHD07HKZCKMCOQ2E2UP' where id=2; -update noar tt set b1='63WNHJM' where id=2; -update noar ti set b1='63WNHJM' where id=2; -update noar tt set b2='UNUV7RTG3CR0190G94TRQ0WPYG' where id=2; -update noar ti set b2='UNUV7RTG3CR0190G94TRQ0WPYG' where id=2; -update noar tt set b0='QG' where id=3; -update noar ti set b0='QG' where id=3; -update noar tt set b1='WZ0' where id=3; -update noar ti set b1='WZ0' where id=3; -update noar tt set b2='IVJNO9' where id=3; -update noar ti set b2='IVJNO9' where id=3; -update noar tt set b0='CGL' where id=4; -update noar ti set b0='CGL' where id=4; -update noar tt set b1='SULWDBXVXPT7UTR51' where id=4; -update noar ti set b1='SULWDBXVXPT7UTR51' where id=4; -update noar tt set b2='YTIG5IC9V19N6BKH7SK7MPKCDJ60YYCI' where id=4; -update noar ti set b2='YTIG5IC9V19N6BKH7SK7MPKCDJ60YYCI' where id=4; -update noar tt set b0='D2J9TR4KJH3VUF4KPQVXS0H687DUODC' where id=5; -update noar ti set b0='D2J9TR4KJH3VUF4KPQVXS0H687DUODC' where id=5; -update noar tt set b1='8JGAWQGIZG' where id=5; -update noar ti set b1='8JGAWQGIZG' where id=5; -update noar tt set b2='DTWP3ROISNNVRIQ8GJ1GT0' where id=5; -update noar ti set b2='DTWP3ROISNNVRIQ8GJ1GT0' where id=5; -update noar tt set b0='X9KK4D8' where id=6; -update noar ti set b0='X9KK4D8' where id=6; -update noar tt set b1='1D5WN511SYYH1U6R1Y82' where id=6; -update noar ti set b1='1D5WN511SYYH1U6R1Y82' where id=6; -update noar tt set b2='U1' where id=6; -update noar ti set b2='U1' where id=6; -update noar tt set b0='PVK9HKH22ZN' where id=7; -update noar ti set b0='PVK9HKH22ZN' where id=7; -update noar tt set b1='S6TGWWSYE9JNT16' where id=7; -update noar ti set b1='S6TGWWSYE9JNT16' where id=7; -update noar tt set b2='W48ZH6UD1N1W95' where id=7; -update noar ti set b2='W48ZH6UD1N1W95' where id=7; -update noar tt set b0='F9RERUVB0D' where id=8; -update noar ti set b0='F9RERUVB0D' where id=8; -update noar tt set b1='TKQS9USU7ZO6PDMSOXA9' where id=8; -update noar ti set b1='TKQS9USU7ZO6PDMSOXA9' where id=8; -update noar tt set b2='7' where id=8; -update noar ti set b2='7' where id=8; -update noar tt set b0='BO7H134KVBQJ' where id=9; -update noar ti set b0='BO7H134KVBQJ' where id=9; -update noar tt set b1='EQXK7T8KGWIVKGLHKYQLVZ4VYUOA1' where id=9; -update noar ti set b1='EQXK7T8KGWIVKGLHKYQLVZ4VYUOA1' where id=9; -update noar tt set b2='9R0K9R32A1NXM7PVO' where id=9; -update noar ti set b2='9R0K9R32A1NXM7PVO' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - b0 blob not null, - b1 text not null, - b2 text not null -) engine=tokudb; -insert into tt values (1,'','',''); -insert into tt values (2,'','',''); -insert into tt values (3,'','',''); -insert into tt values (4,'','',''); -insert into tt values (5,'','',''); -insert into tt values (6,'','',''); -insert into tt values (7,'','',''); -insert into tt values (8,'','',''); -insert into tt values (9,'','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set b0='6YJIUM3DXU5L88YZDGUK3Y4PI5R7' where id=1; -update noar ti set b0='6YJIUM3DXU5L88YZDGUK3Y4PI5R7' where id=1; -update noar tt set b1='WC89MCBB' where id=1; -update noar ti set b1='WC89MCBB' where id=1; -update noar tt set b2='RO44MTP21CU27' where id=1; -update noar ti set b2='RO44MTP21CU27' where id=1; -update noar tt set b0='HN9DXG0IU5WOFZO1Y3BJR9W' where id=2; -update noar ti set b0='HN9DXG0IU5WOFZO1Y3BJR9W' where id=2; -update noar tt set b1='XBN68N8' where id=2; -update noar ti set b1='XBN68N8' where id=2; -update noar tt set b2='3WG4Z' where id=2; -update noar ti set b2='3WG4Z' where id=2; -update noar tt set b0='R6Z546BGZ9YCCC6NGJ75ZV73QZ2' where id=3; -update noar ti set b0='R6Z546BGZ9YCCC6NGJ75ZV73QZ2' where id=3; -update noar tt set b1='OX8IO1YEL' where id=3; -update noar ti set b1='OX8IO1YEL' where id=3; -update noar tt set b2='2CV' where id=3; -update noar ti set b2='2CV' where id=3; -update noar tt set b0='NR45N4L93KTP91NT8XXE' where id=4; -update noar ti set b0='NR45N4L93KTP91NT8XXE' where id=4; -update noar tt set b1='OU7ER9' where id=4; -update noar ti set b1='OU7ER9' where id=4; -update noar tt set b2='DYU92F9A4NW230YJ3KZ20SI23' where id=4; -update noar ti set b2='DYU92F9A4NW230YJ3KZ20SI23' where id=4; -update noar tt set b0='TMBV' where id=5; -update noar ti set b0='TMBV' where id=5; -update noar tt set b1='2C0QQZE' where id=5; -update noar ti set b1='2C0QQZE' where id=5; -update noar tt set b2='2GCGV48N9OXXOM03HUGRDN' where id=5; -update noar ti set b2='2GCGV48N9OXXOM03HUGRDN' where id=5; -update noar tt set b0='75DRF204E30BJUAM67Z7JUW8CHIH4RK' where id=6; -update noar ti set b0='75DRF204E30BJUAM67Z7JUW8CHIH4RK' where id=6; -update noar tt set b1='HSZMFUUO5U2MU' where id=6; -update noar ti set b1='HSZMFUUO5U2MU' where id=6; -update noar tt set b2='0WGW88OQZBIX32MVN3EDUXF0' where id=6; -update noar ti set b2='0WGW88OQZBIX32MVN3EDUXF0' where id=6; -update noar tt set b0='PZL6E' where id=7; -update noar ti set b0='PZL6E' where id=7; -update noar tt set b1='2LC5JHCES1XOJE42QZCJ44ANKR0S' where id=7; -update noar ti set b1='2LC5JHCES1XOJE42QZCJ44ANKR0S' where id=7; -update noar tt set b2='4M20PZCX5GXE84L1L173OA8J5B' where id=7; -update noar ti set b2='4M20PZCX5GXE84L1L173OA8J5B' where id=7; -update noar tt set b0='OUUCMWSID2GYBV6IHR69' where id=8; -update noar ti set b0='OUUCMWSID2GYBV6IHR69' where id=8; -update noar tt set b1='MUVOME2X' where id=8; -update noar ti set b1='MUVOME2X' where id=8; -update noar tt set b2='SD9' where id=8; -update noar ti set b2='SD9' where id=8; -update noar tt set b0='2L1DV5DJU' where id=9; -update noar ti set b0='2L1DV5DJU' where id=9; -update noar tt set b1='1R5K1GNYARBRPEWQSU5' where id=9; -update noar ti set b1='1R5K1GNYARBRPEWQSU5' where id=9; -update noar tt set b2='13YB' where id=9; -update noar ti set b2='13YB' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - b0 mediumblob null, - b1 tinyblob null, - b2 tinyblob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set b0='126ME164I4' where id=1; -update noar ti set b0='126ME164I4' where id=1; -update noar tt set b1='5NI66P9XPXF0LMIPFBMO5OA5X1PF6SFW' where id=1; -update noar ti set b1='5NI66P9XPXF0LMIPFBMO5OA5X1PF6SFW' where id=1; -update noar tt set b2='8YF8TEGHBTFDVJEIKTWARSDFGAW7REVD' where id=1; -update noar ti set b2='8YF8TEGHBTFDVJEIKTWARSDFGAW7REVD' where id=1; -update noar tt set b0='SBSQERN72IRK8MD4D58UDJK7IMHQ' where id=2; -update noar ti set b0='SBSQERN72IRK8MD4D58UDJK7IMHQ' where id=2; -update noar tt set b1='B3BXCV3T' where id=2; -update noar ti set b1='B3BXCV3T' where id=2; -update noar tt set b2='IYCJVFA32U57A9JS1M8EY3YF0V7K' where id=2; -update noar ti set b2='IYCJVFA32U57A9JS1M8EY3YF0V7K' where id=2; -update noar tt set b0='VHLMO42D04HF7LDU54BHCYNHUG2ASE' where id=3; -update noar ti set b0='VHLMO42D04HF7LDU54BHCYNHUG2ASE' where id=3; -update noar tt set b1='USJ' where id=3; -update noar ti set b1='USJ' where id=3; -update noar tt set b2='EDI2X7Y2P33G1LEQLCQDFAJ2WFR3Z' where id=3; -update noar ti set b2='EDI2X7Y2P33G1LEQLCQDFAJ2WFR3Z' where id=3; -update noar tt set b0='B75PU0T58A30P91UMPPBEM6G3LD7' where id=4; -update noar ti set b0='B75PU0T58A30P91UMPPBEM6G3LD7' where id=4; -update noar tt set b1='4P4JMLBO' where id=4; -update noar ti set b1='4P4JMLBO' where id=4; -update noar tt set b2='T4JFWGIP21' where id=4; -update noar ti set b2='T4JFWGIP21' where id=4; -update noar tt set b0='E4FIGD9SAOF5RBU' where id=5; -update noar ti set b0='E4FIGD9SAOF5RBU' where id=5; -update noar tt set b1='Y7N4' where id=5; -update noar ti set b1='Y7N4' where id=5; -update noar tt set b2='TBT41O8HP1VJNRSL3' where id=5; -update noar ti set b2='TBT41O8HP1VJNRSL3' where id=5; -update noar tt set b0='F3' where id=6; -update noar ti set b0='F3' where id=6; -update noar tt set b1='WCJWOWHR3IEUD3HCL5FG2' where id=6; -update noar ti set b1='WCJWOWHR3IEUD3HCL5FG2' where id=6; -update noar tt set b2='MJVUIUQ3Y' where id=6; -update noar ti set b2='MJVUIUQ3Y' where id=6; -update noar tt set b0='CVJQTXFGZI97QJ9IVOM3EXYO18J3VNFP' where id=7; -update noar ti set b0='CVJQTXFGZI97QJ9IVOM3EXYO18J3VNFP' where id=7; -update noar tt set b1='LGV1H1P3SVY732SYFQW8FG1PK' where id=7; -update noar ti set b1='LGV1H1P3SVY732SYFQW8FG1PK' where id=7; -update noar tt set b2='3UVVSSE4ZFWIJ' where id=7; -update noar ti set b2='3UVVSSE4ZFWIJ' where id=7; -update noar tt set b0='ARSKK4U17TCPVXJVK1HBUJ3RY37AQ6JM' where id=8; -update noar ti set b0='ARSKK4U17TCPVXJVK1HBUJ3RY37AQ6JM' where id=8; -update noar tt set b1='JTAG1CNAU9T86A04D' where id=8; -update noar ti set b1='JTAG1CNAU9T86A04D' where id=8; -update noar tt set b2='JF1ELTCLJIGLHGX0TP1' where id=8; -update noar ti set b2='JF1ELTCLJIGLHGX0TP1' where id=8; -update noar tt set b0='MUWM8RW' where id=9; -update noar ti set b0='MUWM8RW' where id=9; -update noar tt set b1='R6I8D0F4O58R1S52QZ' where id=9; -update noar ti set b1='R6I8D0F4O58R1S52QZ' where id=9; -update noar tt set b2='BDFN2OAM3MV7XUSM0UBGT9' where id=9; -update noar ti set b2='BDFN2OAM3MV7XUSM0UBGT9' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - b0 mediumblob not null, - b1 tinyblob not null, - b2 tinyblob not null -) engine=tokudb; -insert into tt values (1,'','',''); -insert into tt values (2,'','',''); -insert into tt values (3,'','',''); -insert into tt values (4,'','',''); -insert into tt values (5,'','',''); -insert into tt values (6,'','',''); -insert into tt values (7,'','',''); -insert into tt values (8,'','',''); -insert into tt values (9,'','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set b0='TOQXPL0YQ84X8FISSQD3GP6G91D6WKL' where id=1; -update noar ti set b0='TOQXPL0YQ84X8FISSQD3GP6G91D6WKL' where id=1; -update noar tt set b1='XMJLU8FO5KU6CD243EU1KD4Z8H2C7V4L' where id=1; -update noar ti set b1='XMJLU8FO5KU6CD243EU1KD4Z8H2C7V4L' where id=1; -update noar tt set b2='8MS82E' where id=1; -update noar ti set b2='8MS82E' where id=1; -update noar tt set b0='J8UF5IWND19R10PSELGPVDJ6ENB' where id=2; -update noar ti set b0='J8UF5IWND19R10PSELGPVDJ6ENB' where id=2; -update noar tt set b1='AWS8T6V6HBG6FVJNFO66QEBT' where id=2; -update noar ti set b1='AWS8T6V6HBG6FVJNFO66QEBT' where id=2; -update noar tt set b2='SY2IHCUK6XSDN1TW' where id=2; -update noar ti set b2='SY2IHCUK6XSDN1TW' where id=2; -update noar tt set b0='1W7U5M66BHCAL6F' where id=3; -update noar ti set b0='1W7U5M66BHCAL6F' where id=3; -update noar tt set b1='UG102ERN' where id=3; -update noar ti set b1='UG102ERN' where id=3; -update noar tt set b2='COWHSG43NDFYMU2NHJC9NZJG' where id=3; -update noar ti set b2='COWHSG43NDFYMU2NHJC9NZJG' where id=3; -update noar tt set b0='067CYMTKJ0Y92LJ80B7V48F' where id=4; -update noar ti set b0='067CYMTKJ0Y92LJ80B7V48F' where id=4; -update noar tt set b1='RO8ZISHJ6E7FN3UZ0MJW' where id=4; -update noar ti set b1='RO8ZISHJ6E7FN3UZ0MJW' where id=4; -update noar tt set b2='KHCXPGTELK560WL7KR81RCGQDVXY0PMZ' where id=4; -update noar ti set b2='KHCXPGTELK560WL7KR81RCGQDVXY0PMZ' where id=4; -update noar tt set b0='BZBW1Q' where id=5; -update noar ti set b0='BZBW1Q' where id=5; -update noar tt set b1='08X74ERR6FHVR9QP2YA4' where id=5; -update noar ti set b1='08X74ERR6FHVR9QP2YA4' where id=5; -update noar tt set b2='YE2G0D98A84X56DIRSMS5M0EVJ3M' where id=5; -update noar ti set b2='YE2G0D98A84X56DIRSMS5M0EVJ3M' where id=5; -update noar tt set b0='IL2HM8MBPP' where id=6; -update noar ti set b0='IL2HM8MBPP' where id=6; -update noar tt set b1='6O5VGK0NU4ML5O0SU6GIRFK9WS' where id=6; -update noar ti set b1='6O5VGK0NU4ML5O0SU6GIRFK9WS' where id=6; -update noar tt set b2='Y3BGTN41TEZQM0W34639M' where id=6; -update noar ti set b2='Y3BGTN41TEZQM0W34639M' where id=6; -update noar tt set b0='O0' where id=7; -update noar ti set b0='O0' where id=7; -update noar tt set b1='PVL9B5P9995TI73QC5LEHE2ZAUTVD2' where id=7; -update noar ti set b1='PVL9B5P9995TI73QC5LEHE2ZAUTVD2' where id=7; -update noar tt set b2='UES' where id=7; -update noar ti set b2='UES' where id=7; -update noar tt set b0='6NGK3R3Y4M3WM3O' where id=8; -update noar ti set b0='6NGK3R3Y4M3WM3O' where id=8; -update noar tt set b1='9ASX73COHOYHL1ZVLSWQ4IBE1WZ2JON' where id=8; -update noar ti set b1='9ASX73COHOYHL1ZVLSWQ4IBE1WZ2JON' where id=8; -update noar tt set b2='RLSQUW1J3DKRJWE7Q' where id=8; -update noar ti set b2='RLSQUW1J3DKRJWE7Q' where id=8; -update noar tt set b0='RGFVE460GQ' where id=9; -update noar ti set b0='RGFVE460GQ' where id=9; -update noar tt set b1='8RST9AV224' where id=9; -update noar ti set b1='8RST9AV224' where id=9; -update noar tt set b2='WIPY25E3TV' where id=9; -update noar ti set b2='WIPY25E3TV' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - b0 mediumblob null, - b1 tinyblob null, - b2 blob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set b0='O8U' where id=1; -update noar ti set b0='O8U' where id=1; -update noar tt set b1='2RDLA1ZYPNBKZ9U2TP' where id=1; -update noar ti set b1='2RDLA1ZYPNBKZ9U2TP' where id=1; -update noar tt set b2='TT' where id=1; -update noar ti set b2='TT' where id=1; -update noar tt set b0='V7X' where id=2; -update noar ti set b0='V7X' where id=2; -update noar tt set b1='3KFLKNJ6KCZXH0' where id=2; -update noar ti set b1='3KFLKNJ6KCZXH0' where id=2; -update noar tt set b2='05TUBMQPNJXR6SRT4' where id=2; -update noar ti set b2='05TUBMQPNJXR6SRT4' where id=2; -update noar tt set b0='P4DV6' where id=3; -update noar ti set b0='P4DV6' where id=3; -update noar tt set b1='KGNRCMY21J2SI3VOUUS54S8AI' where id=3; -update noar ti set b1='KGNRCMY21J2SI3VOUUS54S8AI' where id=3; -update noar tt set b2='FV39CR' where id=3; -update noar ti set b2='FV39CR' where id=3; -update noar tt set b0='7' where id=4; -update noar ti set b0='7' where id=4; -update noar tt set b1='9TVGWWTKV3V25IR' where id=4; -update noar ti set b1='9TVGWWTKV3V25IR' where id=4; -update noar tt set b2='MZZ7M612OWBWZF931G' where id=4; -update noar ti set b2='MZZ7M612OWBWZF931G' where id=4; -update noar tt set b0='X0' where id=5; -update noar ti set b0='X0' where id=5; -update noar tt set b1='8CHXGXO1LC4312NU' where id=5; -update noar ti set b1='8CHXGXO1LC4312NU' where id=5; -update noar tt set b2='SAB' where id=5; -update noar ti set b2='SAB' where id=5; -update noar tt set b0='5SSOUP01IVG7QUI134XMH8PQLKX42HRX' where id=6; -update noar ti set b0='5SSOUP01IVG7QUI134XMH8PQLKX42HRX' where id=6; -update noar tt set b1='0I7NQP6ZL9VU414QT2PMSOIWEH7' where id=6; -update noar ti set b1='0I7NQP6ZL9VU414QT2PMSOIWEH7' where id=6; -update noar tt set b2='5RT2Y' where id=6; -update noar ti set b2='5RT2Y' where id=6; -update noar tt set b0='BMYG6OOGJHIFI2W0HUEWJI60ER' where id=7; -update noar ti set b0='BMYG6OOGJHIFI2W0HUEWJI60ER' where id=7; -update noar tt set b1='CJ7TRWQFN4OKMUU0QF23Q' where id=7; -update noar ti set b1='CJ7TRWQFN4OKMUU0QF23Q' where id=7; -update noar tt set b2='ILZII8X3UDMDN4HBMYNVC76M4TEV96' where id=7; -update noar ti set b2='ILZII8X3UDMDN4HBMYNVC76M4TEV96' where id=7; -update noar tt set b0='TQERA9KMBRN08NS3IEBHB' where id=8; -update noar ti set b0='TQERA9KMBRN08NS3IEBHB' where id=8; -update noar tt set b1='5GDI4H' where id=8; -update noar ti set b1='5GDI4H' where id=8; -update noar tt set b2='614OMCY3CUIEIMIZOLBTU' where id=8; -update noar ti set b2='614OMCY3CUIEIMIZOLBTU' where id=8; -update noar tt set b0='JM1TLRQZY8TCS1' where id=9; -update noar ti set b0='JM1TLRQZY8TCS1' where id=9; -update noar tt set b1='1FPOMFV0XC' where id=9; -update noar ti set b1='1FPOMFV0XC' where id=9; -update noar tt set b2='RK2TXCE90OYM0N0QYHIC' where id=9; -update noar ti set b2='RK2TXCE90OYM0N0QYHIC' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - b0 mediumblob not null, - b1 tinyblob not null, - b2 blob not null -) engine=tokudb; -insert into tt values (1,'','',''); -insert into tt values (2,'','',''); -insert into tt values (3,'','',''); -insert into tt values (4,'','',''); -insert into tt values (5,'','',''); -insert into tt values (6,'','',''); -insert into tt values (7,'','',''); -insert into tt values (8,'','',''); -insert into tt values (9,'','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set b0='3NO3QE8SVFDP7USX4Z5Y0NT2PI9M3X' where id=1; -update noar ti set b0='3NO3QE8SVFDP7USX4Z5Y0NT2PI9M3X' where id=1; -update noar tt set b1='MZDRHIQHVE1U' where id=1; -update noar ti set b1='MZDRHIQHVE1U' where id=1; -update noar tt set b2='AE866SA8O' where id=1; -update noar ti set b2='AE866SA8O' where id=1; -update noar tt set b0='3MJ97O5TMFUM9R7RGG97PLKOIY1EU4L' where id=2; -update noar ti set b0='3MJ97O5TMFUM9R7RGG97PLKOIY1EU4L' where id=2; -update noar tt set b1='N3YX' where id=2; -update noar ti set b1='N3YX' where id=2; -update noar tt set b2='VGJPIXFSRYGC9XESK5FFMSODQJJUAJ' where id=2; -update noar ti set b2='VGJPIXFSRYGC9XESK5FFMSODQJJUAJ' where id=2; -update noar tt set b0='U0DZTNTHT4KMB' where id=3; -update noar ti set b0='U0DZTNTHT4KMB' where id=3; -update noar tt set b1='BTBNSJ0Q02XJ7UIW' where id=3; -update noar ti set b1='BTBNSJ0Q02XJ7UIW' where id=3; -update noar tt set b2='BGW9PLDYAF74HXISD5XZV8E' where id=3; -update noar ti set b2='BGW9PLDYAF74HXISD5XZV8E' where id=3; -update noar tt set b0='TYF9WD0BV3392SLDR6C9R65ZBB35NP' where id=4; -update noar ti set b0='TYF9WD0BV3392SLDR6C9R65ZBB35NP' where id=4; -update noar tt set b1='IEOVT9T8A2LD1RKOL800XK' where id=4; -update noar ti set b1='IEOVT9T8A2LD1RKOL800XK' where id=4; -update noar tt set b2='45MQPXAQ3MK' where id=4; -update noar ti set b2='45MQPXAQ3MK' where id=4; -update noar tt set b0='UO9TMG2FPUXKO7VQAS0RVUT0C44' where id=5; -update noar ti set b0='UO9TMG2FPUXKO7VQAS0RVUT0C44' where id=5; -update noar tt set b1='HG6MW3CZMT076DKQ63MP6U' where id=5; -update noar ti set b1='HG6MW3CZMT076DKQ63MP6U' where id=5; -update noar tt set b2='ACOBS79' where id=5; -update noar ti set b2='ACOBS79' where id=5; -update noar tt set b0='N9UBNU31' where id=6; -update noar ti set b0='N9UBNU31' where id=6; -update noar tt set b1='QGQ5JJOP' where id=6; -update noar ti set b1='QGQ5JJOP' where id=6; -update noar tt set b2='3ORB5GAHWR45Q3F0G03IVPKU9S55E' where id=6; -update noar ti set b2='3ORB5GAHWR45Q3F0G03IVPKU9S55E' where id=6; -update noar tt set b0='ZG3LA4' where id=7; -update noar ti set b0='ZG3LA4' where id=7; -update noar tt set b1='RJEM7X6SO79WNCZ1EJ7YG' where id=7; -update noar ti set b1='RJEM7X6SO79WNCZ1EJ7YG' where id=7; -update noar tt set b2='RZQ2TFUB6I9S1ND9GE97LHW8TI4VG3' where id=7; -update noar ti set b2='RZQ2TFUB6I9S1ND9GE97LHW8TI4VG3' where id=7; -update noar tt set b0='M8CFRB67TF6VUIAZGQLA96Q' where id=8; -update noar ti set b0='M8CFRB67TF6VUIAZGQLA96Q' where id=8; -update noar tt set b1='CE39QBK72IY3A9R83BUGODRZ8T843V' where id=8; -update noar ti set b1='CE39QBK72IY3A9R83BUGODRZ8T843V' where id=8; -update noar tt set b2='3XL5CFCM' where id=8; -update noar ti set b2='3XL5CFCM' where id=8; -update noar tt set b0='ZLBDLDB0LTRNVUT1HMT41B09' where id=9; -update noar ti set b0='ZLBDLDB0LTRNVUT1HMT41B09' where id=9; -update noar tt set b1='LZUWC4R2DLQSCA7DA7G17WL' where id=9; -update noar ti set b1='LZUWC4R2DLQSCA7DA7G17WL' where id=9; -update noar tt set b2='90T1TPKPL' where id=9; -update noar ti set b2='90T1TPKPL' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - b0 mediumblob null, - b1 tinyblob null, - b2 mediumblob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set b0='LZT3B24BZJ58MTFPI0AY15ND7' where id=1; -update noar ti set b0='LZT3B24BZJ58MTFPI0AY15ND7' where id=1; -update noar tt set b1='C' where id=1; -update noar ti set b1='C' where id=1; -update noar tt set b2='H' where id=1; -update noar ti set b2='H' where id=1; -update noar tt set b0='PL9HXR38V96OMJLOCE' where id=2; -update noar ti set b0='PL9HXR38V96OMJLOCE' where id=2; -update noar tt set b1='64TYG5GXTSBSQL0U5' where id=2; -update noar ti set b1='64TYG5GXTSBSQL0U5' where id=2; -update noar tt set b2='5EXFNEJWFK1EW6O24BAUUQXTKHLIR' where id=2; -update noar ti set b2='5EXFNEJWFK1EW6O24BAUUQXTKHLIR' where id=2; -update noar tt set b0='JLAT3P' where id=3; -update noar ti set b0='JLAT3P' where id=3; -update noar tt set b1='CZZFILH6V2QJ6KQGGB4LZNQ' where id=3; -update noar ti set b1='CZZFILH6V2QJ6KQGGB4LZNQ' where id=3; -update noar tt set b2='T6GT6GX054H6KTZO' where id=3; -update noar ti set b2='T6GT6GX054H6KTZO' where id=3; -update noar tt set b0='KCLTZS' where id=4; -update noar ti set b0='KCLTZS' where id=4; -update noar tt set b1='ETMHSQZ89W3A67GEUFU9GOEZJ751YID' where id=4; -update noar ti set b1='ETMHSQZ89W3A67GEUFU9GOEZJ751YID' where id=4; -update noar tt set b2='ZUPQR2C3' where id=4; -update noar ti set b2='ZUPQR2C3' where id=4; -update noar tt set b0='P6Z7HZCAWM8TT4MR' where id=5; -update noar ti set b0='P6Z7HZCAWM8TT4MR' where id=5; -update noar tt set b1='9OZI2KZV0BJXPNDP8D5' where id=5; -update noar ti set b1='9OZI2KZV0BJXPNDP8D5' where id=5; -update noar tt set b2='SJB4SAACJX0033SGL5FS7Z4OW' where id=5; -update noar ti set b2='SJB4SAACJX0033SGL5FS7Z4OW' where id=5; -update noar tt set b0='Z5HY3UTTJM4SZJI4P7B' where id=6; -update noar ti set b0='Z5HY3UTTJM4SZJI4P7B' where id=6; -update noar tt set b1='SR3XY' where id=6; -update noar ti set b1='SR3XY' where id=6; -update noar tt set b2='7H2Y' where id=6; -update noar ti set b2='7H2Y' where id=6; -update noar tt set b0='9S0YRAE9BRVAEO2P62PJL1TNNPZ' where id=7; -update noar ti set b0='9S0YRAE9BRVAEO2P62PJL1TNNPZ' where id=7; -update noar tt set b1='TFF9CRW0R3UUGEFKMMSQDKA3' where id=7; -update noar ti set b1='TFF9CRW0R3UUGEFKMMSQDKA3' where id=7; -update noar tt set b2='KSSI31U8XGN' where id=7; -update noar ti set b2='KSSI31U8XGN' where id=7; -update noar tt set b0='GZODJABN6ERHMG' where id=8; -update noar ti set b0='GZODJABN6ERHMG' where id=8; -update noar tt set b1='2LFOYJUNKYNWA' where id=8; -update noar ti set b1='2LFOYJUNKYNWA' where id=8; -update noar tt set b2='JM2WLM7FFHNER' where id=8; -update noar ti set b2='JM2WLM7FFHNER' where id=8; -update noar tt set b0='Y' where id=9; -update noar ti set b0='Y' where id=9; -update noar tt set b1='WTRPBE2GYCSZNGSWFHXOLDB6YEMX1K' where id=9; -update noar ti set b1='WTRPBE2GYCSZNGSWFHXOLDB6YEMX1K' where id=9; -update noar tt set b2='F0Q0U4GUEJWOY4YPGLFZ8NPEUAZTO3O' where id=9; -update noar ti set b2='F0Q0U4GUEJWOY4YPGLFZ8NPEUAZTO3O' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - b0 mediumblob not null, - b1 tinyblob not null, - b2 mediumblob not null -) engine=tokudb; -insert into tt values (1,'','',''); -insert into tt values (2,'','',''); -insert into tt values (3,'','',''); -insert into tt values (4,'','',''); -insert into tt values (5,'','',''); -insert into tt values (6,'','',''); -insert into tt values (7,'','',''); -insert into tt values (8,'','',''); -insert into tt values (9,'','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set b0='A05SRQJGZ7' where id=1; -update noar ti set b0='A05SRQJGZ7' where id=1; -update noar tt set b1='V01D0Q6H28EVEIHQN1W6J' where id=1; -update noar ti set b1='V01D0Q6H28EVEIHQN1W6J' where id=1; -update noar tt set b2='2CUKXE4TXHAERP8PCR3OOLFGWQ5' where id=1; -update noar ti set b2='2CUKXE4TXHAERP8PCR3OOLFGWQ5' where id=1; -update noar tt set b0='NHD3V11P0FFD2UY6L21XZ2EMEYJIXKL5' where id=2; -update noar ti set b0='NHD3V11P0FFD2UY6L21XZ2EMEYJIXKL5' where id=2; -update noar tt set b1='5NJQ8QVAPV2TVK' where id=2; -update noar ti set b1='5NJQ8QVAPV2TVK' where id=2; -update noar tt set b2='VM4X3FQVC4' where id=2; -update noar ti set b2='VM4X3FQVC4' where id=2; -update noar tt set b0='DJ' where id=3; -update noar ti set b0='DJ' where id=3; -update noar tt set b1='NESZVJJD4B1ZM9O4E0VXOE' where id=3; -update noar ti set b1='NESZVJJD4B1ZM9O4E0VXOE' where id=3; -update noar tt set b2='3YJGJN' where id=3; -update noar ti set b2='3YJGJN' where id=3; -update noar tt set b0='RQ35TNJS' where id=4; -update noar ti set b0='RQ35TNJS' where id=4; -update noar tt set b1='5MM41JVC6R55EQE08PCS92RSQ' where id=4; -update noar ti set b1='5MM41JVC6R55EQE08PCS92RSQ' where id=4; -update noar tt set b2='KVCYVFNB43W' where id=4; -update noar ti set b2='KVCYVFNB43W' where id=4; -update noar tt set b0='3XZOC52CW' where id=5; -update noar ti set b0='3XZOC52CW' where id=5; -update noar tt set b1='0QJCD82UR6RIYAJLD1LDN1F1O' where id=5; -update noar ti set b1='0QJCD82UR6RIYAJLD1LDN1F1O' where id=5; -update noar tt set b2='E1KFF5C5EHAD1G6C6GTM9W9M5FT36D' where id=5; -update noar ti set b2='E1KFF5C5EHAD1G6C6GTM9W9M5FT36D' where id=5; -update noar tt set b0='HMK9NUY' where id=6; -update noar ti set b0='HMK9NUY' where id=6; -update noar tt set b1='G5D5RADDHGMMHWWBD' where id=6; -update noar ti set b1='G5D5RADDHGMMHWWBD' where id=6; -update noar tt set b2='FMMC3WMBIZSY' where id=6; -update noar ti set b2='FMMC3WMBIZSY' where id=6; -update noar tt set b0='PAQMG3JHRTOHM' where id=7; -update noar ti set b0='PAQMG3JHRTOHM' where id=7; -update noar tt set b1='HIUOWXIA1JV' where id=7; -update noar ti set b1='HIUOWXIA1JV' where id=7; -update noar tt set b2='QWG53YIKUC0G2WJI0L22SGGUI3P5' where id=7; -update noar ti set b2='QWG53YIKUC0G2WJI0L22SGGUI3P5' where id=7; -update noar tt set b0='L8ZNTB2Y' where id=8; -update noar ti set b0='L8ZNTB2Y' where id=8; -update noar tt set b1='Z779' where id=8; -update noar ti set b1='Z779' where id=8; -update noar tt set b2='JU43J7HCRRF' where id=8; -update noar ti set b2='JU43J7HCRRF' where id=8; -update noar tt set b0='14BF' where id=9; -update noar ti set b0='14BF' where id=9; -update noar tt set b1='LT47822OH70XCY5B1CYE3WGJZ168R0' where id=9; -update noar ti set b1='LT47822OH70XCY5B1CYE3WGJZ168R0' where id=9; -update noar tt set b2='FAEQNRP4HL2WW' where id=9; -update noar ti set b2='FAEQNRP4HL2WW' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - b0 mediumblob null, - b1 tinyblob null, - b2 longblob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set b0='AMECKXNV9YV8MTFOXZRYRJ0LCRHSDERU' where id=1; -update noar ti set b0='AMECKXNV9YV8MTFOXZRYRJ0LCRHSDERU' where id=1; -update noar tt set b1='HATOGF668ZZ2GO9YY8VGFH2MQTKTS1W3' where id=1; -update noar ti set b1='HATOGF668ZZ2GO9YY8VGFH2MQTKTS1W3' where id=1; -update noar tt set b2='VAIP2NN40' where id=1; -update noar ti set b2='VAIP2NN40' where id=1; -update noar tt set b0='7SS6BBCLKC5HGH7X406GXH0BCJWH' where id=2; -update noar ti set b0='7SS6BBCLKC5HGH7X406GXH0BCJWH' where id=2; -update noar tt set b1='EXY0XM' where id=2; -update noar ti set b1='EXY0XM' where id=2; -update noar tt set b2='HPY9F7NHPJJS8LA8V5' where id=2; -update noar ti set b2='HPY9F7NHPJJS8LA8V5' where id=2; -update noar tt set b0='9972H5GWJ0SHHLUHL5D06QE3VN' where id=3; -update noar ti set b0='9972H5GWJ0SHHLUHL5D06QE3VN' where id=3; -update noar tt set b1='7FJON' where id=3; -update noar ti set b1='7FJON' where id=3; -update noar tt set b2='CXWT5EMH0ADR8TM3IP5MP4L1N90G5U' where id=3; -update noar ti set b2='CXWT5EMH0ADR8TM3IP5MP4L1N90G5U' where id=3; -update noar tt set b0='7JFY99S8Q7SM5BWUB5MMFUSI10IVMD' where id=4; -update noar ti set b0='7JFY99S8Q7SM5BWUB5MMFUSI10IVMD' where id=4; -update noar tt set b1='10EZS17XQVRZ' where id=4; -update noar ti set b1='10EZS17XQVRZ' where id=4; -update noar tt set b2='8VQLS0BOACK9ZHM9I' where id=4; -update noar ti set b2='8VQLS0BOACK9ZHM9I' where id=4; -update noar tt set b0='D' where id=5; -update noar ti set b0='D' where id=5; -update noar tt set b1='JUYCRU4LNJ4SQTMB' where id=5; -update noar ti set b1='JUYCRU4LNJ4SQTMB' where id=5; -update noar tt set b2='VSTKFPQU5U06H2EUOPZI29TER4OAF' where id=5; -update noar ti set b2='VSTKFPQU5U06H2EUOPZI29TER4OAF' where id=5; -update noar tt set b0='VZSIYE' where id=6; -update noar ti set b0='VZSIYE' where id=6; -update noar tt set b1='LT' where id=6; -update noar ti set b1='LT' where id=6; -update noar tt set b2='ZCH2UWLV0HL8VHBZAS2FQMYV61' where id=6; -update noar ti set b2='ZCH2UWLV0HL8VHBZAS2FQMYV61' where id=6; -update noar tt set b0='4HR2T3HCBO9LAYMI2BFUYJ' where id=7; -update noar ti set b0='4HR2T3HCBO9LAYMI2BFUYJ' where id=7; -update noar tt set b1='W4NGL9JPIQPV70VYQYFE0T9W' where id=7; -update noar ti set b1='W4NGL9JPIQPV70VYQYFE0T9W' where id=7; -update noar tt set b2='V2011CWV9PD0Z' where id=7; -update noar ti set b2='V2011CWV9PD0Z' where id=7; -update noar tt set b0='VESMIIJH65VN' where id=8; -update noar ti set b0='VESMIIJH65VN' where id=8; -update noar tt set b1='EWJ' where id=8; -update noar ti set b1='EWJ' where id=8; -update noar tt set b2='NHNQMWJYDNOCDIJ2Y9I4LG05THXX' where id=8; -update noar ti set b2='NHNQMWJYDNOCDIJ2Y9I4LG05THXX' where id=8; -update noar tt set b0='BJ6IVVLXARD45JHT' where id=9; -update noar ti set b0='BJ6IVVLXARD45JHT' where id=9; -update noar tt set b1='XFOF22HUDV3ZR8SX9' where id=9; -update noar ti set b1='XFOF22HUDV3ZR8SX9' where id=9; -update noar tt set b2='QZ77HKNP39KE7UVQYM1130J9' where id=9; -update noar ti set b2='QZ77HKNP39KE7UVQYM1130J9' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - b0 mediumblob not null, - b1 tinyblob not null, - b2 longblob not null -) engine=tokudb; -insert into tt values (1,'','',''); -insert into tt values (2,'','',''); -insert into tt values (3,'','',''); -insert into tt values (4,'','',''); -insert into tt values (5,'','',''); -insert into tt values (6,'','',''); -insert into tt values (7,'','',''); -insert into tt values (8,'','',''); -insert into tt values (9,'','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set b0='U2T' where id=1; -update noar ti set b0='U2T' where id=1; -update noar tt set b1='903ENKDKW1' where id=1; -update noar ti set b1='903ENKDKW1' where id=1; -update noar tt set b2='6M2K5BL4YI1SKN' where id=1; -update noar ti set b2='6M2K5BL4YI1SKN' where id=1; -update noar tt set b0='FIC0G5YWH' where id=2; -update noar ti set b0='FIC0G5YWH' where id=2; -update noar tt set b1='135P99OLVSS1ZU55' where id=2; -update noar ti set b1='135P99OLVSS1ZU55' where id=2; -update noar tt set b2='8NQSORKUCSYNZNT70SHQA9ZYEKHG3' where id=2; -update noar ti set b2='8NQSORKUCSYNZNT70SHQA9ZYEKHG3' where id=2; -update noar tt set b0='HNB4TYD1GJIM3YPFVVEGHM9X8RQ3DXF' where id=3; -update noar ti set b0='HNB4TYD1GJIM3YPFVVEGHM9X8RQ3DXF' where id=3; -update noar tt set b1='AA1XX' where id=3; -update noar ti set b1='AA1XX' where id=3; -update noar tt set b2='CSBECP1H4RBYP' where id=3; -update noar ti set b2='CSBECP1H4RBYP' where id=3; -update noar tt set b0='E31BK1N0M' where id=4; -update noar ti set b0='E31BK1N0M' where id=4; -update noar tt set b1='GI8' where id=4; -update noar ti set b1='GI8' where id=4; -update noar tt set b2='PXX' where id=4; -update noar ti set b2='PXX' where id=4; -update noar tt set b0='0ULS' where id=5; -update noar ti set b0='0ULS' where id=5; -update noar tt set b1='CDC9' where id=5; -update noar ti set b1='CDC9' where id=5; -update noar tt set b2='NP57DQX' where id=5; -update noar ti set b2='NP57DQX' where id=5; -update noar tt set b0='ST2S4FTE8UMSK05NJOEP3TC' where id=6; -update noar ti set b0='ST2S4FTE8UMSK05NJOEP3TC' where id=6; -update noar tt set b1='BHMOD23PJERY6U' where id=6; -update noar ti set b1='BHMOD23PJERY6U' where id=6; -update noar tt set b2='J8B0V34HODM0H48O0DDW6J6FS9CDM' where id=6; -update noar ti set b2='J8B0V34HODM0H48O0DDW6J6FS9CDM' where id=6; -update noar tt set b0='0YIOYTP6GAAHQXPUNFL5D8FNMI' where id=7; -update noar ti set b0='0YIOYTP6GAAHQXPUNFL5D8FNMI' where id=7; -update noar tt set b1='9XBT9BHAY1MXWT2OK' where id=7; -update noar ti set b1='9XBT9BHAY1MXWT2OK' where id=7; -update noar tt set b2='AM' where id=7; -update noar ti set b2='AM' where id=7; -update noar tt set b0='KMM0M9' where id=8; -update noar ti set b0='KMM0M9' where id=8; -update noar tt set b1='EQN5AKY0CN75AZGCRHM4I8DL7ILLROW' where id=8; -update noar ti set b1='EQN5AKY0CN75AZGCRHM4I8DL7ILLROW' where id=8; -update noar tt set b2='AA0EWJ12' where id=8; -update noar ti set b2='AA0EWJ12' where id=8; -update noar tt set b0='QMPP9ZOZR4XGEWGVRZ5E6OTFFMBD' where id=9; -update noar ti set b0='QMPP9ZOZR4XGEWGVRZ5E6OTFFMBD' where id=9; -update noar tt set b1='GK9R9BWB6H1EKA2' where id=9; -update noar ti set b1='GK9R9BWB6H1EKA2' where id=9; -update noar tt set b2='4LV3Q2F79VOD02IU3393PJF7OITV2AUU' where id=9; -update noar ti set b2='4LV3Q2F79VOD02IU3393PJF7OITV2AUU' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - b0 mediumblob null, - b1 tinyblob null, - b2 text null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set b0='AA5HG6QGVVMLY53N966G96TI' where id=1; -update noar ti set b0='AA5HG6QGVVMLY53N966G96TI' where id=1; -update noar tt set b1='RG' where id=1; -update noar ti set b1='RG' where id=1; -update noar tt set b2='FCMJM' where id=1; -update noar ti set b2='FCMJM' where id=1; -update noar tt set b0='HUFIUZSQVH00107P0ZP652GD' where id=2; -update noar ti set b0='HUFIUZSQVH00107P0ZP652GD' where id=2; -update noar tt set b1='SDY3WEXZRP46DQPJG0GJB7A6T' where id=2; -update noar ti set b1='SDY3WEXZRP46DQPJG0GJB7A6T' where id=2; -update noar tt set b2='ZEEAA' where id=2; -update noar ti set b2='ZEEAA' where id=2; -update noar tt set b0='B4T419WE0' where id=3; -update noar ti set b0='B4T419WE0' where id=3; -update noar tt set b1='LWNTY2FYA7Q6OCDPIMVQV3Q' where id=3; -update noar ti set b1='LWNTY2FYA7Q6OCDPIMVQV3Q' where id=3; -update noar tt set b2='0NG74UWP9589JI' where id=3; -update noar ti set b2='0NG74UWP9589JI' where id=3; -update noar tt set b0='RO1KN9C4O9X0EGJG9F5API' where id=4; -update noar ti set b0='RO1KN9C4O9X0EGJG9F5API' where id=4; -update noar tt set b1='VSI5TA5PCAJ5FB' where id=4; -update noar ti set b1='VSI5TA5PCAJ5FB' where id=4; -update noar tt set b2='4VV276B51YDWQTA52JWTTGTMM5DH' where id=4; -update noar ti set b2='4VV276B51YDWQTA52JWTTGTMM5DH' where id=4; -update noar tt set b0='8L42EF8W1ITHIBI' where id=5; -update noar ti set b0='8L42EF8W1ITHIBI' where id=5; -update noar tt set b1='B4FFOD8XJ87EZ0MOCVGE1A' where id=5; -update noar ti set b1='B4FFOD8XJ87EZ0MOCVGE1A' where id=5; -update noar tt set b2='Q5Z' where id=5; -update noar ti set b2='Q5Z' where id=5; -update noar tt set b0='28DVY1MKS2IWSSVT8J' where id=6; -update noar ti set b0='28DVY1MKS2IWSSVT8J' where id=6; -update noar tt set b1='LD' where id=6; -update noar ti set b1='LD' where id=6; -update noar tt set b2='PAVN' where id=6; -update noar ti set b2='PAVN' where id=6; -update noar tt set b0='3FB' where id=7; -update noar ti set b0='3FB' where id=7; -update noar tt set b1='MXJ32CKR9F85QOEQW7QKK87' where id=7; -update noar ti set b1='MXJ32CKR9F85QOEQW7QKK87' where id=7; -update noar tt set b2='1B8M8R7XGPDKEXRLN' where id=7; -update noar ti set b2='1B8M8R7XGPDKEXRLN' where id=7; -update noar tt set b0='KFMHZJIDOOS' where id=8; -update noar ti set b0='KFMHZJIDOOS' where id=8; -update noar tt set b1='N81W91SLJE98SMGGD' where id=8; -update noar ti set b1='N81W91SLJE98SMGGD' where id=8; -update noar tt set b2='YRARYP' where id=8; -update noar ti set b2='YRARYP' where id=8; -update noar tt set b0='JJPJSULAEU6' where id=9; -update noar ti set b0='JJPJSULAEU6' where id=9; -update noar tt set b1='JZI' where id=9; -update noar ti set b1='JZI' where id=9; -update noar tt set b2='FAZS8L0NNL09Y0OXSLSFQHXGCR' where id=9; -update noar ti set b2='FAZS8L0NNL09Y0OXSLSFQHXGCR' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - b0 mediumblob not null, - b1 tinyblob not null, - b2 text not null -) engine=tokudb; -insert into tt values (1,'','',''); -insert into tt values (2,'','',''); -insert into tt values (3,'','',''); -insert into tt values (4,'','',''); -insert into tt values (5,'','',''); -insert into tt values (6,'','',''); -insert into tt values (7,'','',''); -insert into tt values (8,'','',''); -insert into tt values (9,'','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set b0='YMYCE8P8GMI7' where id=1; -update noar ti set b0='YMYCE8P8GMI7' where id=1; -update noar tt set b1='UZTBJ4THRVTSY20Q7Q2ZO8FYOA' where id=1; -update noar ti set b1='UZTBJ4THRVTSY20Q7Q2ZO8FYOA' where id=1; -update noar tt set b2='AJGXMDZ7X8' where id=1; -update noar ti set b2='AJGXMDZ7X8' where id=1; -update noar tt set b0='Y8O5HW3L4KBNEINC7M4GE7LZI' where id=2; -update noar ti set b0='Y8O5HW3L4KBNEINC7M4GE7LZI' where id=2; -update noar tt set b1='X2ZTV5HOCD6SPLDNOQYGMEG' where id=2; -update noar ti set b1='X2ZTV5HOCD6SPLDNOQYGMEG' where id=2; -update noar tt set b2='8HH8H71W0558C58N6ST9QZQJ39J6NXMP' where id=2; -update noar ti set b2='8HH8H71W0558C58N6ST9QZQJ39J6NXMP' where id=2; -update noar tt set b0='TNFY7' where id=3; -update noar ti set b0='TNFY7' where id=3; -update noar tt set b1='JEAB54UV1ENN8S6F' where id=3; -update noar ti set b1='JEAB54UV1ENN8S6F' where id=3; -update noar tt set b2='4SRC5NPY2N6JS2VGSC5BD7' where id=3; -update noar ti set b2='4SRC5NPY2N6JS2VGSC5BD7' where id=3; -update noar tt set b0='5NLP436C0GTZJE3NO9462NV' where id=4; -update noar ti set b0='5NLP436C0GTZJE3NO9462NV' where id=4; -update noar tt set b1='2PPH2R' where id=4; -update noar ti set b1='2PPH2R' where id=4; -update noar tt set b2='FT8B55Q97K5F01FLQXN6IB5IHX' where id=4; -update noar ti set b2='FT8B55Q97K5F01FLQXN6IB5IHX' where id=4; -update noar tt set b0='68VIBY5PW8W143FHF3YG' where id=5; -update noar ti set b0='68VIBY5PW8W143FHF3YG' where id=5; -update noar tt set b1='UT' where id=5; -update noar ti set b1='UT' where id=5; -update noar tt set b2='K4RPOHHTSRDIGQYO753GWG72U' where id=5; -update noar ti set b2='K4RPOHHTSRDIGQYO753GWG72U' where id=5; -update noar tt set b0='MO7YS' where id=6; -update noar ti set b0='MO7YS' where id=6; -update noar tt set b1='MQQ2O46FB9LA' where id=6; -update noar ti set b1='MQQ2O46FB9LA' where id=6; -update noar tt set b2='7ROGCMX0C9WFU3CZS3FVZCFW' where id=6; -update noar ti set b2='7ROGCMX0C9WFU3CZS3FVZCFW' where id=6; -update noar tt set b0='2PFN9A7BA8D3U8JEW2' where id=7; -update noar ti set b0='2PFN9A7BA8D3U8JEW2' where id=7; -update noar tt set b1='R6L460429H8J7HKTAX' where id=7; -update noar ti set b1='R6L460429H8J7HKTAX' where id=7; -update noar tt set b2='KS95ZJOYHZ2757URU18' where id=7; -update noar ti set b2='KS95ZJOYHZ2757URU18' where id=7; -update noar tt set b0='SPDC5UL0ICY5WAAXEWEL3W9C0' where id=8; -update noar ti set b0='SPDC5UL0ICY5WAAXEWEL3W9C0' where id=8; -update noar tt set b1='DJS2KYQ9VLMP8HFP4IT427FM' where id=8; -update noar ti set b1='DJS2KYQ9VLMP8HFP4IT427FM' where id=8; -update noar tt set b2='35' where id=8; -update noar ti set b2='35' where id=8; -update noar tt set b0='RLYZGX4MUS4V7M4MLCVNHMWSGDDK9' where id=9; -update noar ti set b0='RLYZGX4MUS4V7M4MLCVNHMWSGDDK9' where id=9; -update noar tt set b1='H' where id=9; -update noar ti set b1='H' where id=9; -update noar tt set b2='NEH1YQIO2YJDPUSQ' where id=9; -update noar ti set b2='NEH1YQIO2YJDPUSQ' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - b0 mediumblob null, - b1 blob null, - b2 tinyblob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set b0='VKPLK3N1ZIKT2H' where id=1; -update noar ti set b0='VKPLK3N1ZIKT2H' where id=1; -update noar tt set b1='LGT0YSN2PZLV1J6J8' where id=1; -update noar ti set b1='LGT0YSN2PZLV1J6J8' where id=1; -update noar tt set b2='7CSRRNGWYEVRH685AZQ98VU3U' where id=1; -update noar ti set b2='7CSRRNGWYEVRH685AZQ98VU3U' where id=1; -update noar tt set b0='LJVZZS65CV9L0LXT72I2O' where id=2; -update noar ti set b0='LJVZZS65CV9L0LXT72I2O' where id=2; -update noar tt set b1='PYFD8X2RUNJTGL78L' where id=2; -update noar ti set b1='PYFD8X2RUNJTGL78L' where id=2; -update noar tt set b2='HMNGSQ67GORBH8NYBOJTQNOLV0' where id=2; -update noar ti set b2='HMNGSQ67GORBH8NYBOJTQNOLV0' where id=2; -update noar tt set b0='QUQT1BMGCF7QD5RH3E2FDCYG2HTKE' where id=3; -update noar ti set b0='QUQT1BMGCF7QD5RH3E2FDCYG2HTKE' where id=3; -update noar tt set b1='RK7AK1N0S27WUR9V' where id=3; -update noar ti set b1='RK7AK1N0S27WUR9V' where id=3; -update noar tt set b2='3L' where id=3; -update noar ti set b2='3L' where id=3; -update noar tt set b0='JP4ZP7R9DG019H6S6DVUK9N9' where id=4; -update noar ti set b0='JP4ZP7R9DG019H6S6DVUK9N9' where id=4; -update noar tt set b1='6OK2GAJ85EXM5LQLNEU3' where id=4; -update noar ti set b1='6OK2GAJ85EXM5LQLNEU3' where id=4; -update noar tt set b2='2ML1QL1EQNBMTWE3VW6V9EZBC6V' where id=4; -update noar ti set b2='2ML1QL1EQNBMTWE3VW6V9EZBC6V' where id=4; -update noar tt set b0='8V3Q9BISTIOVU30EGGER4QO' where id=5; -update noar ti set b0='8V3Q9BISTIOVU30EGGER4QO' where id=5; -update noar tt set b1='LYW0RNG6K4FHMJH4L4MNJBX1O339' where id=5; -update noar ti set b1='LYW0RNG6K4FHMJH4L4MNJBX1O339' where id=5; -update noar tt set b2='DXJVMTC5RA8K6Z0' where id=5; -update noar ti set b2='DXJVMTC5RA8K6Z0' where id=5; -update noar tt set b0='BTT' where id=6; -update noar ti set b0='BTT' where id=6; -update noar tt set b1='EDSDMIZT' where id=6; -update noar ti set b1='EDSDMIZT' where id=6; -update noar tt set b2='RJ8GH25E83V36B7L0OM1F8IUJ' where id=6; -update noar ti set b2='RJ8GH25E83V36B7L0OM1F8IUJ' where id=6; -update noar tt set b0='RY' where id=7; -update noar ti set b0='RY' where id=7; -update noar tt set b1='FETAKMZA1TAYVC' where id=7; -update noar ti set b1='FETAKMZA1TAYVC' where id=7; -update noar tt set b2='D4ON5F2LHUWNGYSK659NMD26EMJR' where id=7; -update noar ti set b2='D4ON5F2LHUWNGYSK659NMD26EMJR' where id=7; -update noar tt set b0='6' where id=8; -update noar ti set b0='6' where id=8; -update noar tt set b1='NP7Q' where id=8; -update noar ti set b1='NP7Q' where id=8; -update noar tt set b2='92GHAK3UC41BQQQ74WDJKEZU4004W' where id=8; -update noar ti set b2='92GHAK3UC41BQQQ74WDJKEZU4004W' where id=8; -update noar tt set b0='4I70HF60JPC5AXVS' where id=9; -update noar ti set b0='4I70HF60JPC5AXVS' where id=9; -update noar tt set b1='XG5KV63MIR4' where id=9; -update noar ti set b1='XG5KV63MIR4' where id=9; -update noar tt set b2='M' where id=9; -update noar ti set b2='M' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - b0 mediumblob not null, - b1 blob not null, - b2 tinyblob not null -) engine=tokudb; -insert into tt values (1,'','',''); -insert into tt values (2,'','',''); -insert into tt values (3,'','',''); -insert into tt values (4,'','',''); -insert into tt values (5,'','',''); -insert into tt values (6,'','',''); -insert into tt values (7,'','',''); -insert into tt values (8,'','',''); -insert into tt values (9,'','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set b0='MDFIB' where id=1; -update noar ti set b0='MDFIB' where id=1; -update noar tt set b1='OQGVS0EOTEIM4N2UDZRMYZUR2ELJ1ZKI' where id=1; -update noar ti set b1='OQGVS0EOTEIM4N2UDZRMYZUR2ELJ1ZKI' where id=1; -update noar tt set b2='2UYHY7Q8SHCVVXMW38PD4TJP8IDT6IT' where id=1; -update noar ti set b2='2UYHY7Q8SHCVVXMW38PD4TJP8IDT6IT' where id=1; -update noar tt set b0='0AHCRI641CCOI4E7LNU55HZLOB' where id=2; -update noar ti set b0='0AHCRI641CCOI4E7LNU55HZLOB' where id=2; -update noar tt set b1='5BRY' where id=2; -update noar ti set b1='5BRY' where id=2; -update noar tt set b2='2W4GA02T952WC3LB8ZB7' where id=2; -update noar ti set b2='2W4GA02T952WC3LB8ZB7' where id=2; -update noar tt set b0='T9N54ULE3FM7QW9I6R65VZT0R' where id=3; -update noar ti set b0='T9N54ULE3FM7QW9I6R65VZT0R' where id=3; -update noar tt set b1='MIIUIJFI6Q0' where id=3; -update noar ti set b1='MIIUIJFI6Q0' where id=3; -update noar tt set b2='Y33MADV1S88N77O7BDV97RPA24' where id=3; -update noar ti set b2='Y33MADV1S88N77O7BDV97RPA24' where id=3; -update noar tt set b0='0OW7KECKABL7H25IV77X' where id=4; -update noar ti set b0='0OW7KECKABL7H25IV77X' where id=4; -update noar tt set b1='Z69J3UK9C0FQLMHK6DACGO' where id=4; -update noar ti set b1='Z69J3UK9C0FQLMHK6DACGO' where id=4; -update noar tt set b2='FKNZ3E0HAVK2F7OQF81HGY' where id=4; -update noar ti set b2='FKNZ3E0HAVK2F7OQF81HGY' where id=4; -update noar tt set b0='SJEG65Q5XMVJDMSNIPE2PA4' where id=5; -update noar ti set b0='SJEG65Q5XMVJDMSNIPE2PA4' where id=5; -update noar tt set b1='X0LAU7QAE' where id=5; -update noar ti set b1='X0LAU7QAE' where id=5; -update noar tt set b2='VA4TZ0' where id=5; -update noar ti set b2='VA4TZ0' where id=5; -update noar tt set b0='S67IEBZ5VE9E6KXVN69C6IKBXNC79' where id=6; -update noar ti set b0='S67IEBZ5VE9E6KXVN69C6IKBXNC79' where id=6; -update noar tt set b1='JS1T1T9WUJ0ONCALCWXRIP61' where id=6; -update noar ti set b1='JS1T1T9WUJ0ONCALCWXRIP61' where id=6; -update noar tt set b2='41IM1TLAGJRUF' where id=6; -update noar ti set b2='41IM1TLAGJRUF' where id=6; -update noar tt set b0='O4B6EQJIG6YGTE24JBUE9USP8YCXAYO' where id=7; -update noar ti set b0='O4B6EQJIG6YGTE24JBUE9USP8YCXAYO' where id=7; -update noar tt set b1='M1AGL5R1WUX8VPH2PD07K9' where id=7; -update noar ti set b1='M1AGL5R1WUX8VPH2PD07K9' where id=7; -update noar tt set b2='56JGZ0WFQ0CO' where id=7; -update noar ti set b2='56JGZ0WFQ0CO' where id=7; -update noar tt set b0='98WQGN0SEA3KWPX9' where id=8; -update noar ti set b0='98WQGN0SEA3KWPX9' where id=8; -update noar tt set b1='M' where id=8; -update noar ti set b1='M' where id=8; -update noar tt set b2='CCMBWCMP8EBLDBROU87X51YJ0PFGQDQ' where id=8; -update noar ti set b2='CCMBWCMP8EBLDBROU87X51YJ0PFGQDQ' where id=8; -update noar tt set b0='7EZ975GBTEZ8WNXJLPAGT7DBHS38BI' where id=9; -update noar ti set b0='7EZ975GBTEZ8WNXJLPAGT7DBHS38BI' where id=9; -update noar tt set b1='31ZGLQA6MNJCMHWH' where id=9; -update noar ti set b1='31ZGLQA6MNJCMHWH' where id=9; -update noar tt set b2='V2HSZ2ARKWL9ELN' where id=9; -update noar ti set b2='V2HSZ2ARKWL9ELN' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - b0 mediumblob null, - b1 blob null, - b2 blob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set b0='7AKGPPU11NCCRVU' where id=1; -update noar ti set b0='7AKGPPU11NCCRVU' where id=1; -update noar tt set b1='6IFGUZKQ2QOVLP492MIQ1OGMLKX' where id=1; -update noar ti set b1='6IFGUZKQ2QOVLP492MIQ1OGMLKX' where id=1; -update noar tt set b2='82DX861HZI' where id=1; -update noar ti set b2='82DX861HZI' where id=1; -update noar tt set b0='SKZ2I5L' where id=2; -update noar ti set b0='SKZ2I5L' where id=2; -update noar tt set b1='P9' where id=2; -update noar ti set b1='P9' where id=2; -update noar tt set b2='S93P0NASDKH91NAD03EUP4IRN' where id=2; -update noar ti set b2='S93P0NASDKH91NAD03EUP4IRN' where id=2; -update noar tt set b0='XE8FRXQ7NQPYZ' where id=3; -update noar ti set b0='XE8FRXQ7NQPYZ' where id=3; -update noar tt set b1='9AX6HGJ9XXMMGOSR658RH8H6KU' where id=3; -update noar ti set b1='9AX6HGJ9XXMMGOSR658RH8H6KU' where id=3; -update noar tt set b2='HHEI5' where id=3; -update noar ti set b2='HHEI5' where id=3; -update noar tt set b0='CYKKBK7S7S7D' where id=4; -update noar ti set b0='CYKKBK7S7S7D' where id=4; -update noar tt set b1='1C67J3MPCG4NKAQ0KYLDYNY' where id=4; -update noar ti set b1='1C67J3MPCG4NKAQ0KYLDYNY' where id=4; -update noar tt set b2='FVTB3MJI5A4UZBLLVHEK26QJ8Y3606G' where id=4; -update noar ti set b2='FVTB3MJI5A4UZBLLVHEK26QJ8Y3606G' where id=4; -update noar tt set b0='F5AXCNHWHF831HHCO4' where id=5; -update noar ti set b0='F5AXCNHWHF831HHCO4' where id=5; -update noar tt set b1='4Y7L42E36MZT6DM49H66V3B4L' where id=5; -update noar ti set b1='4Y7L42E36MZT6DM49H66V3B4L' where id=5; -update noar tt set b2='P' where id=5; -update noar ti set b2='P' where id=5; -update noar tt set b0='GRX6JREF7TMQ1FLW8' where id=6; -update noar ti set b0='GRX6JREF7TMQ1FLW8' where id=6; -update noar tt set b1='4YC0XH6C8' where id=6; -update noar ti set b1='4YC0XH6C8' where id=6; -update noar tt set b2='C' where id=6; -update noar ti set b2='C' where id=6; -update noar tt set b0='ICYOVFN1IZ48H8RQQESGDHL1N4IXT' where id=7; -update noar ti set b0='ICYOVFN1IZ48H8RQQESGDHL1N4IXT' where id=7; -update noar tt set b1='N1OL87YNVZY17DE5XIUTMB9KLPTIIW' where id=7; -update noar ti set b1='N1OL87YNVZY17DE5XIUTMB9KLPTIIW' where id=7; -update noar tt set b2='0IPWNZQWWODVEFLHVHVUOZ4CDDOB1Z' where id=7; -update noar ti set b2='0IPWNZQWWODVEFLHVHVUOZ4CDDOB1Z' where id=7; -update noar tt set b0='2L540LSQDZ9D7' where id=8; -update noar ti set b0='2L540LSQDZ9D7' where id=8; -update noar tt set b1='4O69ZESBJCLEWZFHZBR3' where id=8; -update noar ti set b1='4O69ZESBJCLEWZFHZBR3' where id=8; -update noar tt set b2='J' where id=8; -update noar ti set b2='J' where id=8; -update noar tt set b0='RLJ7OMM5RG9NS3JU6JNGNDKS' where id=9; -update noar ti set b0='RLJ7OMM5RG9NS3JU6JNGNDKS' where id=9; -update noar tt set b1='BK3SQAX98YDFZG6C0YA6YRSNF0SE' where id=9; -update noar ti set b1='BK3SQAX98YDFZG6C0YA6YRSNF0SE' where id=9; -update noar tt set b2='3G5AHBMBABMFAYASK1S8P18' where id=9; -update noar ti set b2='3G5AHBMBABMFAYASK1S8P18' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - b0 mediumblob not null, - b1 blob not null, - b2 blob not null -) engine=tokudb; -insert into tt values (1,'','',''); -insert into tt values (2,'','',''); -insert into tt values (3,'','',''); -insert into tt values (4,'','',''); -insert into tt values (5,'','',''); -insert into tt values (6,'','',''); -insert into tt values (7,'','',''); -insert into tt values (8,'','',''); -insert into tt values (9,'','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set b0='O91C7UOF2' where id=1; -update noar ti set b0='O91C7UOF2' where id=1; -update noar tt set b1='FDOELIS4SXL88' where id=1; -update noar ti set b1='FDOELIS4SXL88' where id=1; -update noar tt set b2='KETCLYBDCEUP4UX6DUV8JXAY' where id=1; -update noar ti set b2='KETCLYBDCEUP4UX6DUV8JXAY' where id=1; -update noar tt set b0='FVS8NGVZS3NS1C' where id=2; -update noar ti set b0='FVS8NGVZS3NS1C' where id=2; -update noar tt set b1='18RUXF2PF' where id=2; -update noar ti set b1='18RUXF2PF' where id=2; -update noar tt set b2='NAO' where id=2; -update noar ti set b2='NAO' where id=2; -update noar tt set b0='KHPPOP8K1F0OK9Z' where id=3; -update noar ti set b0='KHPPOP8K1F0OK9Z' where id=3; -update noar tt set b1='L7TEXY6O2G' where id=3; -update noar ti set b1='L7TEXY6O2G' where id=3; -update noar tt set b2='K6J6MY4ISE3' where id=3; -update noar ti set b2='K6J6MY4ISE3' where id=3; -update noar tt set b0='NVHHMT6GV0WN' where id=4; -update noar ti set b0='NVHHMT6GV0WN' where id=4; -update noar tt set b1='FP65XW87J8RLCQ7EQP' where id=4; -update noar ti set b1='FP65XW87J8RLCQ7EQP' where id=4; -update noar tt set b2='63CIMN' where id=4; -update noar ti set b2='63CIMN' where id=4; -update noar tt set b0='TRP2PJEMO' where id=5; -update noar ti set b0='TRP2PJEMO' where id=5; -update noar tt set b1='I2HA' where id=5; -update noar ti set b1='I2HA' where id=5; -update noar tt set b2='42XNK4KW1' where id=5; -update noar ti set b2='42XNK4KW1' where id=5; -update noar tt set b0='W3U' where id=6; -update noar ti set b0='W3U' where id=6; -update noar tt set b1='ALQ8C4RHKDP9NFX8561SJGJ' where id=6; -update noar ti set b1='ALQ8C4RHKDP9NFX8561SJGJ' where id=6; -update noar tt set b2='DGE1WSFZIPJ5AL' where id=6; -update noar ti set b2='DGE1WSFZIPJ5AL' where id=6; -update noar tt set b0='NLW2JZHCG3PM1TWA5' where id=7; -update noar ti set b0='NLW2JZHCG3PM1TWA5' where id=7; -update noar tt set b1='9999KA9DY' where id=7; -update noar ti set b1='9999KA9DY' where id=7; -update noar tt set b2='XELOLNNA' where id=7; -update noar ti set b2='XELOLNNA' where id=7; -update noar tt set b0='NQYSBME4MRMEIL1T5AG4QEDES0TUOSI5' where id=8; -update noar ti set b0='NQYSBME4MRMEIL1T5AG4QEDES0TUOSI5' where id=8; -update noar tt set b1='B8SH6SJLUCZ3CVFKX7' where id=8; -update noar ti set b1='B8SH6SJLUCZ3CVFKX7' where id=8; -update noar tt set b2='S5UK' where id=8; -update noar ti set b2='S5UK' where id=8; -update noar tt set b0='J24J15XUVQ4TWAYJZO3E9OF6UHT96' where id=9; -update noar ti set b0='J24J15XUVQ4TWAYJZO3E9OF6UHT96' where id=9; -update noar tt set b1='P40V3QGZKN2IWXVEVDZJD18SD237U6N' where id=9; -update noar ti set b1='P40V3QGZKN2IWXVEVDZJD18SD237U6N' where id=9; -update noar tt set b2='V1L0KAX6TW70B3U3HH4989AIQL' where id=9; -update noar ti set b2='V1L0KAX6TW70B3U3HH4989AIQL' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - b0 mediumblob null, - b1 blob null, - b2 mediumblob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set b0='3X26JF2IKOEJXR8RI8SJD4K1RQTZL77' where id=1; -update noar ti set b0='3X26JF2IKOEJXR8RI8SJD4K1RQTZL77' where id=1; -update noar tt set b1='1H89K0' where id=1; -update noar ti set b1='1H89K0' where id=1; -update noar tt set b2='AEBSTU3QJ7J' where id=1; -update noar ti set b2='AEBSTU3QJ7J' where id=1; -update noar tt set b0='IOVPXM9H' where id=2; -update noar ti set b0='IOVPXM9H' where id=2; -update noar tt set b1='DB03N79WJTM2' where id=2; -update noar ti set b1='DB03N79WJTM2' where id=2; -update noar tt set b2='6YZ' where id=2; -update noar ti set b2='6YZ' where id=2; -update noar tt set b0='MZBW4' where id=3; -update noar ti set b0='MZBW4' where id=3; -update noar tt set b1='VMGNKDF879CIPWM' where id=3; -update noar ti set b1='VMGNKDF879CIPWM' where id=3; -update noar tt set b2='9TAQQZ3YLFC8BZFSFP0OMH18E89QR2' where id=3; -update noar ti set b2='9TAQQZ3YLFC8BZFSFP0OMH18E89QR2' where id=3; -update noar tt set b0='QKALGN8UWXN5HK' where id=4; -update noar ti set b0='QKALGN8UWXN5HK' where id=4; -update noar tt set b1='DPYQX3EAGFPK3V09JGI3KOGNVSH3' where id=4; -update noar ti set b1='DPYQX3EAGFPK3V09JGI3KOGNVSH3' where id=4; -update noar tt set b2='XL9I080FF1ZPPQE1XXFXKTM14ETEU7R8' where id=4; -update noar ti set b2='XL9I080FF1ZPPQE1XXFXKTM14ETEU7R8' where id=4; -update noar tt set b0='LICZX7Z6L3UN9FGWFZMWA5' where id=5; -update noar ti set b0='LICZX7Z6L3UN9FGWFZMWA5' where id=5; -update noar tt set b1='W5HCDPWAYHRNLLEO' where id=5; -update noar ti set b1='W5HCDPWAYHRNLLEO' where id=5; -update noar tt set b2='Q38DFVLCJZWIS' where id=5; -update noar ti set b2='Q38DFVLCJZWIS' where id=5; -update noar tt set b0='XCWFUJEO7WH7I582SLGQMFOPAWSH' where id=6; -update noar ti set b0='XCWFUJEO7WH7I582SLGQMFOPAWSH' where id=6; -update noar tt set b1='W5TW0ZVH2KJJ9EM' where id=6; -update noar ti set b1='W5TW0ZVH2KJJ9EM' where id=6; -update noar tt set b2='3UQ32GZEYCEJR1F6GZ9D20Y4F' where id=6; -update noar ti set b2='3UQ32GZEYCEJR1F6GZ9D20Y4F' where id=6; -update noar tt set b0='VWA2Z4A7RG3LUMQSOACV8' where id=7; -update noar ti set b0='VWA2Z4A7RG3LUMQSOACV8' where id=7; -update noar tt set b1='74OBJ3' where id=7; -update noar ti set b1='74OBJ3' where id=7; -update noar tt set b2='DQ2FS82GDOWDKLFGT36X8Z3WBY5NHFZ' where id=7; -update noar ti set b2='DQ2FS82GDOWDKLFGT36X8Z3WBY5NHFZ' where id=7; -update noar tt set b0='847XT' where id=8; -update noar ti set b0='847XT' where id=8; -update noar tt set b1='DEFNGHAXTWVF7T5CFXD1YZIBXFWOE' where id=8; -update noar ti set b1='DEFNGHAXTWVF7T5CFXD1YZIBXFWOE' where id=8; -update noar tt set b2='I8Y94A9M12EE2PA8KH4LDCP' where id=8; -update noar ti set b2='I8Y94A9M12EE2PA8KH4LDCP' where id=8; -update noar tt set b0='6IWV2H0OSVESQUNFNIDM8SHM99MSEJG' where id=9; -update noar ti set b0='6IWV2H0OSVESQUNFNIDM8SHM99MSEJG' where id=9; -update noar tt set b1='X95F5RRP6BQRCL9ZGTR9FW' where id=9; -update noar ti set b1='X95F5RRP6BQRCL9ZGTR9FW' where id=9; -update noar tt set b2='EZ7MCODQ4T370IYQK0Q3Z4GE1TY4' where id=9; -update noar ti set b2='EZ7MCODQ4T370IYQK0Q3Z4GE1TY4' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - b0 mediumblob not null, - b1 blob not null, - b2 mediumblob not null -) engine=tokudb; -insert into tt values (1,'','',''); -insert into tt values (2,'','',''); -insert into tt values (3,'','',''); -insert into tt values (4,'','',''); -insert into tt values (5,'','',''); -insert into tt values (6,'','',''); -insert into tt values (7,'','',''); -insert into tt values (8,'','',''); -insert into tt values (9,'','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set b0='EJAYT73EFQF0JXCSHI6FCN68I' where id=1; -update noar ti set b0='EJAYT73EFQF0JXCSHI6FCN68I' where id=1; -update noar tt set b1='IZ4DWL82DMXQWHO39WJ' where id=1; -update noar ti set b1='IZ4DWL82DMXQWHO39WJ' where id=1; -update noar tt set b2='SW9AN82TRMA3O2' where id=1; -update noar ti set b2='SW9AN82TRMA3O2' where id=1; -update noar tt set b0='WJJ0LQEQMCCLZ3CYQOFAQM9RCQE2S5QK' where id=2; -update noar ti set b0='WJJ0LQEQMCCLZ3CYQOFAQM9RCQE2S5QK' where id=2; -update noar tt set b1='IKUX9' where id=2; -update noar ti set b1='IKUX9' where id=2; -update noar tt set b2='TBKO9S9YME5VMUMNM' where id=2; -update noar ti set b2='TBKO9S9YME5VMUMNM' where id=2; -update noar tt set b0='V4K0MSWCYRKVLAR1SDGD6VI8UIB6WKTV' where id=3; -update noar ti set b0='V4K0MSWCYRKVLAR1SDGD6VI8UIB6WKTV' where id=3; -update noar tt set b1='82DRWXJLWU0' where id=3; -update noar ti set b1='82DRWXJLWU0' where id=3; -update noar tt set b2='7CJLP30J0DEZ8DHXY9QL0REB1IP6C7' where id=3; -update noar ti set b2='7CJLP30J0DEZ8DHXY9QL0REB1IP6C7' where id=3; -update noar tt set b0='2W1KES6ZG' where id=4; -update noar ti set b0='2W1KES6ZG' where id=4; -update noar tt set b1='H6S8HZOE1OC12DLH' where id=4; -update noar ti set b1='H6S8HZOE1OC12DLH' where id=4; -update noar tt set b2='4KCV' where id=4; -update noar ti set b2='4KCV' where id=4; -update noar tt set b0='E1D1' where id=5; -update noar ti set b0='E1D1' where id=5; -update noar tt set b1='6R93XA7P7XS56BN9RE7L8CVU30UN6' where id=5; -update noar ti set b1='6R93XA7P7XS56BN9RE7L8CVU30UN6' where id=5; -update noar tt set b2='12D8WBNCCKT4VDTFTN2OUY41VKL' where id=5; -update noar ti set b2='12D8WBNCCKT4VDTFTN2OUY41VKL' where id=5; -update noar tt set b0='7AAB27VV' where id=6; -update noar ti set b0='7AAB27VV' where id=6; -update noar tt set b1='6JJVG4X4O9GG' where id=6; -update noar ti set b1='6JJVG4X4O9GG' where id=6; -update noar tt set b2='UUJW9L1LQUN0V6CBPPYYKL' where id=6; -update noar ti set b2='UUJW9L1LQUN0V6CBPPYYKL' where id=6; -update noar tt set b0='H7LKPK14' where id=7; -update noar ti set b0='H7LKPK14' where id=7; -update noar tt set b1='NNIC' where id=7; -update noar ti set b1='NNIC' where id=7; -update noar tt set b2='912R7JF3SGDANWMX' where id=7; -update noar ti set b2='912R7JF3SGDANWMX' where id=7; -update noar tt set b0='WR68BE4JVU9LR75NRIORVNL2' where id=8; -update noar ti set b0='WR68BE4JVU9LR75NRIORVNL2' where id=8; -update noar tt set b1='VI5' where id=8; -update noar ti set b1='VI5' where id=8; -update noar tt set b2='N3PA4V290N1' where id=8; -update noar ti set b2='N3PA4V290N1' where id=8; -update noar tt set b0='C1SFTQNYT6CYT21WLXUJCYIMF6' where id=9; -update noar ti set b0='C1SFTQNYT6CYT21WLXUJCYIMF6' where id=9; -update noar tt set b1='TN13NYRJ' where id=9; -update noar ti set b1='TN13NYRJ' where id=9; -update noar tt set b2='D6ZM8YMGN8DKA0669II8' where id=9; -update noar ti set b2='D6ZM8YMGN8DKA0669II8' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - b0 mediumblob null, - b1 blob null, - b2 longblob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set b0='1' where id=1; -update noar ti set b0='1' where id=1; -update noar tt set b1='L0N' where id=1; -update noar ti set b1='L0N' where id=1; -update noar tt set b2='AQQKVUJ9J' where id=1; -update noar ti set b2='AQQKVUJ9J' where id=1; -update noar tt set b0='E1PEZCW' where id=2; -update noar ti set b0='E1PEZCW' where id=2; -update noar tt set b1='4XBXLQHGD8YVSEQH88' where id=2; -update noar ti set b1='4XBXLQHGD8YVSEQH88' where id=2; -update noar tt set b2='QRLE9CRZAW0CP0CZK75' where id=2; -update noar ti set b2='QRLE9CRZAW0CP0CZK75' where id=2; -update noar tt set b0='4DWWUJ8FIP4H7C08QLID9' where id=3; -update noar ti set b0='4DWWUJ8FIP4H7C08QLID9' where id=3; -update noar tt set b1='ZWN0ARCSA4EBX52BLK36QVDRNDK7O3CW' where id=3; -update noar ti set b1='ZWN0ARCSA4EBX52BLK36QVDRNDK7O3CW' where id=3; -update noar tt set b2='Z' where id=3; -update noar ti set b2='Z' where id=3; -update noar tt set b0='UZNR324660DTPQ' where id=4; -update noar ti set b0='UZNR324660DTPQ' where id=4; -update noar tt set b1='ULR0Z' where id=4; -update noar ti set b1='ULR0Z' where id=4; -update noar tt set b2='S0WF13' where id=4; -update noar ti set b2='S0WF13' where id=4; -update noar tt set b0='YBO0YM' where id=5; -update noar ti set b0='YBO0YM' where id=5; -update noar tt set b1='GB4FX7AVD' where id=5; -update noar ti set b1='GB4FX7AVD' where id=5; -update noar tt set b2='WZX9U35NHLDLV4NK1ND1PL35A' where id=5; -update noar ti set b2='WZX9U35NHLDLV4NK1ND1PL35A' where id=5; -update noar tt set b0='9QSDYIK0X9N2SC' where id=6; -update noar ti set b0='9QSDYIK0X9N2SC' where id=6; -update noar tt set b1='W818Y' where id=6; -update noar ti set b1='W818Y' where id=6; -update noar tt set b2='KC7UY55SPKOJ' where id=6; -update noar ti set b2='KC7UY55SPKOJ' where id=6; -update noar tt set b0='THR6G359C' where id=7; -update noar ti set b0='THR6G359C' where id=7; -update noar tt set b1='9C6H4G78JPKM' where id=7; -update noar ti set b1='9C6H4G78JPKM' where id=7; -update noar tt set b2='8S9TGUB85I60MCM9' where id=7; -update noar ti set b2='8S9TGUB85I60MCM9' where id=7; -update noar tt set b0='TDL' where id=8; -update noar ti set b0='TDL' where id=8; -update noar tt set b1='85THFM0SKT34ARK2H1U3FIK72D9' where id=8; -update noar ti set b1='85THFM0SKT34ARK2H1U3FIK72D9' where id=8; -update noar tt set b2='7Y8X23H2FTD2T786JSW1R47PDBYFQ' where id=8; -update noar ti set b2='7Y8X23H2FTD2T786JSW1R47PDBYFQ' where id=8; -update noar tt set b0='S3Z15XFEBPYEW2NZM' where id=9; -update noar ti set b0='S3Z15XFEBPYEW2NZM' where id=9; -update noar tt set b1='R' where id=9; -update noar ti set b1='R' where id=9; -update noar tt set b2='QWIRW1T84WI9KTZ0W20Y2' where id=9; -update noar ti set b2='QWIRW1T84WI9KTZ0W20Y2' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - b0 mediumblob not null, - b1 blob not null, - b2 longblob not null -) engine=tokudb; -insert into tt values (1,'','',''); -insert into tt values (2,'','',''); -insert into tt values (3,'','',''); -insert into tt values (4,'','',''); -insert into tt values (5,'','',''); -insert into tt values (6,'','',''); -insert into tt values (7,'','',''); -insert into tt values (8,'','',''); -insert into tt values (9,'','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set b0='22WZ3FQ0ZUBMHZV9' where id=1; -update noar ti set b0='22WZ3FQ0ZUBMHZV9' where id=1; -update noar tt set b1='RSR1JAJDTRHLXTSGXJZ6WQTZHUGC' where id=1; -update noar ti set b1='RSR1JAJDTRHLXTSGXJZ6WQTZHUGC' where id=1; -update noar tt set b2='C3KE1GRUKMX24YJ207NB0BFIGLCOJ4F' where id=1; -update noar ti set b2='C3KE1GRUKMX24YJ207NB0BFIGLCOJ4F' where id=1; -update noar tt set b0='K09S3DYTK7MY7GAF' where id=2; -update noar ti set b0='K09S3DYTK7MY7GAF' where id=2; -update noar tt set b1='6EQHPW' where id=2; -update noar ti set b1='6EQHPW' where id=2; -update noar tt set b2='C6TNIL' where id=2; -update noar ti set b2='C6TNIL' where id=2; -update noar tt set b0='CVC79L9RD8S6WHRYUKWBIB08' where id=3; -update noar ti set b0='CVC79L9RD8S6WHRYUKWBIB08' where id=3; -update noar tt set b1='9P6JZ6B9LP9EQ6H' where id=3; -update noar ti set b1='9P6JZ6B9LP9EQ6H' where id=3; -update noar tt set b2='LTR15JO1CM5LLVKS7TDVYLFG8I79ZA' where id=3; -update noar ti set b2='LTR15JO1CM5LLVKS7TDVYLFG8I79ZA' where id=3; -update noar tt set b0='CJ3ECLJKIC73ZSX' where id=4; -update noar ti set b0='CJ3ECLJKIC73ZSX' where id=4; -update noar tt set b1='MI60P6L28O1D0UQ9NPW6XDLSA67FPO85' where id=4; -update noar ti set b1='MI60P6L28O1D0UQ9NPW6XDLSA67FPO85' where id=4; -update noar tt set b2='CQEZH6R6A9IH00WEK8JASF5PD0' where id=4; -update noar ti set b2='CQEZH6R6A9IH00WEK8JASF5PD0' where id=4; -update noar tt set b0='PQBFU01JRLDBRP5' where id=5; -update noar ti set b0='PQBFU01JRLDBRP5' where id=5; -update noar tt set b1='ZAWCQ9NOHB7' where id=5; -update noar ti set b1='ZAWCQ9NOHB7' where id=5; -update noar tt set b2='ACAAP0DFRUASTFUWJKIKAG' where id=5; -update noar ti set b2='ACAAP0DFRUASTFUWJKIKAG' where id=5; -update noar tt set b0='NH2TH' where id=6; -update noar ti set b0='NH2TH' where id=6; -update noar tt set b1='SEMC3JGTY5ET8PRRTMMR0TYJ' where id=6; -update noar ti set b1='SEMC3JGTY5ET8PRRTMMR0TYJ' where id=6; -update noar tt set b2='I0TOS1V1SM' where id=6; -update noar ti set b2='I0TOS1V1SM' where id=6; -update noar tt set b0='7V30E5Q' where id=7; -update noar ti set b0='7V30E5Q' where id=7; -update noar tt set b1='SX' where id=7; -update noar ti set b1='SX' where id=7; -update noar tt set b2='Q0IG' where id=7; -update noar ti set b2='Q0IG' where id=7; -update noar tt set b0='9AYRVW331LKLZ' where id=8; -update noar ti set b0='9AYRVW331LKLZ' where id=8; -update noar tt set b1='1Z7WEU11JK9S4QS21GZV' where id=8; -update noar ti set b1='1Z7WEU11JK9S4QS21GZV' where id=8; -update noar tt set b2='2Q78XXOA' where id=8; -update noar ti set b2='2Q78XXOA' where id=8; -update noar tt set b0='7R' where id=9; -update noar ti set b0='7R' where id=9; -update noar tt set b1='QSC' where id=9; -update noar ti set b1='QSC' where id=9; -update noar tt set b2='4A2DJWOV1UP6BE59HQ' where id=9; -update noar ti set b2='4A2DJWOV1UP6BE59HQ' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - b0 mediumblob null, - b1 blob null, - b2 text null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set b0='MSIMS2NJBQ6G' where id=1; -update noar ti set b0='MSIMS2NJBQ6G' where id=1; -update noar tt set b1='Y5IIO7KZ46GNNTAX5XNBF8SWL2BPKFT' where id=1; -update noar ti set b1='Y5IIO7KZ46GNNTAX5XNBF8SWL2BPKFT' where id=1; -update noar tt set b2='SPCOX5B8PCDRZ49S' where id=1; -update noar ti set b2='SPCOX5B8PCDRZ49S' where id=1; -update noar tt set b0='KM5F7FYPG24L46MRK5DVAH' where id=2; -update noar ti set b0='KM5F7FYPG24L46MRK5DVAH' where id=2; -update noar tt set b1='V6R5EMQB' where id=2; -update noar ti set b1='V6R5EMQB' where id=2; -update noar tt set b2='XAY2Q60TILQGUZSILTC7YXP' where id=2; -update noar ti set b2='XAY2Q60TILQGUZSILTC7YXP' where id=2; -update noar tt set b0='VMHYRIMI5XQKQ1TMZAEA20' where id=3; -update noar ti set b0='VMHYRIMI5XQKQ1TMZAEA20' where id=3; -update noar tt set b1='0FZF4RH7GEFW6U232Y' where id=3; -update noar ti set b1='0FZF4RH7GEFW6U232Y' where id=3; -update noar tt set b2='Q3MMINMGRD7PCYZMQL89VY6T' where id=3; -update noar ti set b2='Q3MMINMGRD7PCYZMQL89VY6T' where id=3; -update noar tt set b0='UPO2F4KASA7POVOGHMFU' where id=4; -update noar ti set b0='UPO2F4KASA7POVOGHMFU' where id=4; -update noar tt set b1='4ASTYO' where id=4; -update noar ti set b1='4ASTYO' where id=4; -update noar tt set b2='V5FT7N4F2N2F2SE37RQIT3YK' where id=4; -update noar ti set b2='V5FT7N4F2N2F2SE37RQIT3YK' where id=4; -update noar tt set b0='UMY5ONQU217ZGJZLU097' where id=5; -update noar ti set b0='UMY5ONQU217ZGJZLU097' where id=5; -update noar tt set b1='PSIFNNQIUM2YS4ITLEMXXZ92K' where id=5; -update noar ti set b1='PSIFNNQIUM2YS4ITLEMXXZ92K' where id=5; -update noar tt set b2='TCFFM6RBB6M1XOLMIUW' where id=5; -update noar ti set b2='TCFFM6RBB6M1XOLMIUW' where id=5; -update noar tt set b0='82JBQJR5KY7VHPDLR6W5' where id=6; -update noar ti set b0='82JBQJR5KY7VHPDLR6W5' where id=6; -update noar tt set b1='DME03HOM3Z9XOMCT53FT2T' where id=6; -update noar ti set b1='DME03HOM3Z9XOMCT53FT2T' where id=6; -update noar tt set b2='O5R4TX3ORZR1' where id=6; -update noar ti set b2='O5R4TX3ORZR1' where id=6; -update noar tt set b0='SLP' where id=7; -update noar ti set b0='SLP' where id=7; -update noar tt set b1='DYCNPMKRY12UGG9Y02AP8E2Y' where id=7; -update noar ti set b1='DYCNPMKRY12UGG9Y02AP8E2Y' where id=7; -update noar tt set b2='FFNU' where id=7; -update noar ti set b2='FFNU' where id=7; -update noar tt set b0='S8G07KK16CPD0KMT054BQQX4BQV' where id=8; -update noar ti set b0='S8G07KK16CPD0KMT054BQQX4BQV' where id=8; -update noar tt set b1='HB2H5C7HI01TZ4KNXIFKVF0ZCL' where id=8; -update noar ti set b1='HB2H5C7HI01TZ4KNXIFKVF0ZCL' where id=8; -update noar tt set b2='9JSROBS45G4M878HRRYDLAYS' where id=8; -update noar ti set b2='9JSROBS45G4M878HRRYDLAYS' where id=8; -update noar tt set b0='ZUD7W4N1ATN' where id=9; -update noar ti set b0='ZUD7W4N1ATN' where id=9; -update noar tt set b1='7D7MPVZ7LIJY41ANQPC83APJM' where id=9; -update noar ti set b1='7D7MPVZ7LIJY41ANQPC83APJM' where id=9; -update noar tt set b2='7E83N26' where id=9; -update noar ti set b2='7E83N26' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - b0 mediumblob not null, - b1 blob not null, - b2 text not null -) engine=tokudb; -insert into tt values (1,'','',''); -insert into tt values (2,'','',''); -insert into tt values (3,'','',''); -insert into tt values (4,'','',''); -insert into tt values (5,'','',''); -insert into tt values (6,'','',''); -insert into tt values (7,'','',''); -insert into tt values (8,'','',''); -insert into tt values (9,'','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set b0='P' where id=1; -update noar ti set b0='P' where id=1; -update noar tt set b1='P5GXUISHA' where id=1; -update noar ti set b1='P5GXUISHA' where id=1; -update noar tt set b2='AMKV' where id=1; -update noar ti set b2='AMKV' where id=1; -update noar tt set b0='1M' where id=2; -update noar ti set b0='1M' where id=2; -update noar tt set b1='ZLEERLPLTTANHGEC1' where id=2; -update noar ti set b1='ZLEERLPLTTANHGEC1' where id=2; -update noar tt set b2='E9MAJQCI94PY45VT1HU1782Y11O' where id=2; -update noar ti set b2='E9MAJQCI94PY45VT1HU1782Y11O' where id=2; -update noar tt set b0='Z4S528S2502' where id=3; -update noar ti set b0='Z4S528S2502' where id=3; -update noar tt set b1='2V7M3LQPCA5R4K1KMZ421RD' where id=3; -update noar ti set b1='2V7M3LQPCA5R4K1KMZ421RD' where id=3; -update noar tt set b2='SP0RNMDX0NFV1K' where id=3; -update noar ti set b2='SP0RNMDX0NFV1K' where id=3; -update noar tt set b0='GXA0MTKXAS9S26FODNE' where id=4; -update noar ti set b0='GXA0MTKXAS9S26FODNE' where id=4; -update noar tt set b1='2UE2V5MBC' where id=4; -update noar ti set b1='2UE2V5MBC' where id=4; -update noar tt set b2='91U6BU5TSUXJN35WXO4U872K3' where id=4; -update noar ti set b2='91U6BU5TSUXJN35WXO4U872K3' where id=4; -update noar tt set b0='FDRN6' where id=5; -update noar ti set b0='FDRN6' where id=5; -update noar tt set b1='UUBC4ORQHCTQP1' where id=5; -update noar ti set b1='UUBC4ORQHCTQP1' where id=5; -update noar tt set b2='27NP2S41' where id=5; -update noar ti set b2='27NP2S41' where id=5; -update noar tt set b0='7' where id=6; -update noar ti set b0='7' where id=6; -update noar tt set b1='QM84AD1VSB556AWDB03WYCUJ' where id=6; -update noar ti set b1='QM84AD1VSB556AWDB03WYCUJ' where id=6; -update noar tt set b2='2S4DPYHBAX4EOLDX0RMWIOK' where id=6; -update noar ti set b2='2S4DPYHBAX4EOLDX0RMWIOK' where id=6; -update noar tt set b0='QD' where id=7; -update noar ti set b0='QD' where id=7; -update noar tt set b1='28CGS888QNM6Z99UNARO' where id=7; -update noar ti set b1='28CGS888QNM6Z99UNARO' where id=7; -update noar tt set b2='MVLD78E1J' where id=7; -update noar ti set b2='MVLD78E1J' where id=7; -update noar tt set b0='LJ66FSSAA170ELUMEPIWZP0OZ8P2DUL' where id=8; -update noar ti set b0='LJ66FSSAA170ELUMEPIWZP0OZ8P2DUL' where id=8; -update noar tt set b1='GDNJAHWG' where id=8; -update noar ti set b1='GDNJAHWG' where id=8; -update noar tt set b2='LGD' where id=8; -update noar ti set b2='LGD' where id=8; -update noar tt set b0='Y0P4H' where id=9; -update noar ti set b0='Y0P4H' where id=9; -update noar tt set b1='F2QNF3D1BQGC' where id=9; -update noar ti set b1='F2QNF3D1BQGC' where id=9; -update noar tt set b2='ZJPHA58THT4GPYHW6MNEH5CBJ0' where id=9; -update noar ti set b2='ZJPHA58THT4GPYHW6MNEH5CBJ0' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - b0 mediumblob null, - b1 mediumblob null, - b2 tinyblob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set b0='346' where id=1; -update noar ti set b0='346' where id=1; -update noar tt set b1='84P9J' where id=1; -update noar ti set b1='84P9J' where id=1; -update noar tt set b2='IQWRE' where id=1; -update noar ti set b2='IQWRE' where id=1; -update noar tt set b0='H2W8A0RDIBPXG6O0U2U3E4R224' where id=2; -update noar ti set b0='H2W8A0RDIBPXG6O0U2U3E4R224' where id=2; -update noar tt set b1='P450GN9OV9' where id=2; -update noar ti set b1='P450GN9OV9' where id=2; -update noar tt set b2='KQ5M' where id=2; -update noar ti set b2='KQ5M' where id=2; -update noar tt set b0='JW4F0728JTXKM5LS3MJM3ZDKP6YKQU' where id=3; -update noar ti set b0='JW4F0728JTXKM5LS3MJM3ZDKP6YKQU' where id=3; -update noar tt set b1='T274QNQKO7Z86FJP42CE3XQ3DR5AES' where id=3; -update noar ti set b1='T274QNQKO7Z86FJP42CE3XQ3DR5AES' where id=3; -update noar tt set b2='4J' where id=3; -update noar ti set b2='4J' where id=3; -update noar tt set b0='9EFS5L36GAFM' where id=4; -update noar ti set b0='9EFS5L36GAFM' where id=4; -update noar tt set b1='D2UJVNS01272WL' where id=4; -update noar ti set b1='D2UJVNS01272WL' where id=4; -update noar tt set b2='7H8S2RDEH56IK9IJ6WMK6B1W77' where id=4; -update noar ti set b2='7H8S2RDEH56IK9IJ6WMK6B1W77' where id=4; -update noar tt set b0='WEU7FNNNUOW5FC' where id=5; -update noar ti set b0='WEU7FNNNUOW5FC' where id=5; -update noar tt set b1='VJLDG5FDJR41ZVYK' where id=5; -update noar ti set b1='VJLDG5FDJR41ZVYK' where id=5; -update noar tt set b2='505CKWK5SYJ1H33XP8YE4A9' where id=5; -update noar ti set b2='505CKWK5SYJ1H33XP8YE4A9' where id=5; -update noar tt set b0='VE4C61TWA5J5CM6' where id=6; -update noar ti set b0='VE4C61TWA5J5CM6' where id=6; -update noar tt set b1='W' where id=6; -update noar ti set b1='W' where id=6; -update noar tt set b2='9IM9MHLNVEJLORYR2' where id=6; -update noar ti set b2='9IM9MHLNVEJLORYR2' where id=6; -update noar tt set b0='PRJ18M7J9BOG7YE' where id=7; -update noar ti set b0='PRJ18M7J9BOG7YE' where id=7; -update noar tt set b1='LFTA28KX75B9TPTWXFG4Q' where id=7; -update noar ti set b1='LFTA28KX75B9TPTWXFG4Q' where id=7; -update noar tt set b2='LHVJ7NXTRNOKGBMDEWJQ' where id=7; -update noar ti set b2='LHVJ7NXTRNOKGBMDEWJQ' where id=7; -update noar tt set b0='BG9I68B' where id=8; -update noar ti set b0='BG9I68B' where id=8; -update noar tt set b1='ISCD8G04JC794SIL3LX8MLI7' where id=8; -update noar ti set b1='ISCD8G04JC794SIL3LX8MLI7' where id=8; -update noar tt set b2='DG' where id=8; -update noar ti set b2='DG' where id=8; -update noar tt set b0='YGKP2NRFBRT84' where id=9; -update noar ti set b0='YGKP2NRFBRT84' where id=9; -update noar tt set b1='03VF' where id=9; -update noar ti set b1='03VF' where id=9; -update noar tt set b2='90UQKJYBNHND17GAR' where id=9; -update noar ti set b2='90UQKJYBNHND17GAR' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - b0 mediumblob not null, - b1 mediumblob not null, - b2 tinyblob not null -) engine=tokudb; -insert into tt values (1,'','',''); -insert into tt values (2,'','',''); -insert into tt values (3,'','',''); -insert into tt values (4,'','',''); -insert into tt values (5,'','',''); -insert into tt values (6,'','',''); -insert into tt values (7,'','',''); -insert into tt values (8,'','',''); -insert into tt values (9,'','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set b0='6YRU50V3ATPC501BOQVTXL8868L52' where id=1; -update noar ti set b0='6YRU50V3ATPC501BOQVTXL8868L52' where id=1; -update noar tt set b1='08BIC1P1Q' where id=1; -update noar ti set b1='08BIC1P1Q' where id=1; -update noar tt set b2='QPDNDN7EYKKAHIJT0VRSGTUWDP06QHQ8' where id=1; -update noar ti set b2='QPDNDN7EYKKAHIJT0VRSGTUWDP06QHQ8' where id=1; -update noar tt set b0='NKZDG9CXZA' where id=2; -update noar ti set b0='NKZDG9CXZA' where id=2; -update noar tt set b1='BG825UXM2D' where id=2; -update noar ti set b1='BG825UXM2D' where id=2; -update noar tt set b2='K2NJILYK234B' where id=2; -update noar ti set b2='K2NJILYK234B' where id=2; -update noar tt set b0='15NIC8087P5' where id=3; -update noar ti set b0='15NIC8087P5' where id=3; -update noar tt set b1='B8YX3XP' where id=3; -update noar ti set b1='B8YX3XP' where id=3; -update noar tt set b2='CRDN503VDT' where id=3; -update noar ti set b2='CRDN503VDT' where id=3; -update noar tt set b0='AYT6AIF9FWQVV' where id=4; -update noar ti set b0='AYT6AIF9FWQVV' where id=4; -update noar tt set b1='E6O0' where id=4; -update noar ti set b1='E6O0' where id=4; -update noar tt set b2='OQ6A2BIUO3SVK0PD0OJ8DEFSXPUHUE' where id=4; -update noar ti set b2='OQ6A2BIUO3SVK0PD0OJ8DEFSXPUHUE' where id=4; -update noar tt set b0='P1LP9441U28B3EUW6CGMYACKB0' where id=5; -update noar ti set b0='P1LP9441U28B3EUW6CGMYACKB0' where id=5; -update noar tt set b1='YMP9WH9TM5VO2S0GEMK76P76H9MZ' where id=5; -update noar ti set b1='YMP9WH9TM5VO2S0GEMK76P76H9MZ' where id=5; -update noar tt set b2='BDIH' where id=5; -update noar ti set b2='BDIH' where id=5; -update noar tt set b0='1SDQR5' where id=6; -update noar ti set b0='1SDQR5' where id=6; -update noar tt set b1='0X9NCUXZIG22B5' where id=6; -update noar ti set b1='0X9NCUXZIG22B5' where id=6; -update noar tt set b2='TOUZPMSNGRWDR' where id=6; -update noar ti set b2='TOUZPMSNGRWDR' where id=6; -update noar tt set b0='CPO187XAHQEGW1S1FDAZDSPYQ' where id=7; -update noar ti set b0='CPO187XAHQEGW1S1FDAZDSPYQ' where id=7; -update noar tt set b1='3QIV1PEBAB0L' where id=7; -update noar ti set b1='3QIV1PEBAB0L' where id=7; -update noar tt set b2='GMMB0GKL315' where id=7; -update noar ti set b2='GMMB0GKL315' where id=7; -update noar tt set b0='RS13W6Z1AUXR' where id=8; -update noar ti set b0='RS13W6Z1AUXR' where id=8; -update noar tt set b1='4Z2H3V52XRMAUMY763NOO3GV' where id=8; -update noar ti set b1='4Z2H3V52XRMAUMY763NOO3GV' where id=8; -update noar tt set b2='GIW1FTH8TB' where id=8; -update noar ti set b2='GIW1FTH8TB' where id=8; -update noar tt set b0='92G26S3NU86O7DGGURQ71' where id=9; -update noar ti set b0='92G26S3NU86O7DGGURQ71' where id=9; -update noar tt set b1='K5R79G5VTHRSCP' where id=9; -update noar ti set b1='K5R79G5VTHRSCP' where id=9; -update noar tt set b2='2TOUXTX37XZ7W6Q' where id=9; -update noar ti set b2='2TOUXTX37XZ7W6Q' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - b0 mediumblob null, - b1 mediumblob null, - b2 blob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set b0='K20XMQ5ICM14FF' where id=1; -update noar ti set b0='K20XMQ5ICM14FF' where id=1; -update noar tt set b1='0NR' where id=1; -update noar ti set b1='0NR' where id=1; -update noar tt set b2='YKOUNOC' where id=1; -update noar ti set b2='YKOUNOC' where id=1; -update noar tt set b0='2CT8R' where id=2; -update noar ti set b0='2CT8R' where id=2; -update noar tt set b1='TZYUMDD' where id=2; -update noar ti set b1='TZYUMDD' where id=2; -update noar tt set b2='O4MWZJS' where id=2; -update noar ti set b2='O4MWZJS' where id=2; -update noar tt set b0='3K8UTRHBGC352I4A9ZL4OTCY2P' where id=3; -update noar ti set b0='3K8UTRHBGC352I4A9ZL4OTCY2P' where id=3; -update noar tt set b1='YFA5ZHPQNH4SIXSM5J5B5JC6NOS4JCH9' where id=3; -update noar ti set b1='YFA5ZHPQNH4SIXSM5J5B5JC6NOS4JCH9' where id=3; -update noar tt set b2='0Y478KRDRJM5E9HUGFQW83415' where id=3; -update noar ti set b2='0Y478KRDRJM5E9HUGFQW83415' where id=3; -update noar tt set b0='89V0' where id=4; -update noar ti set b0='89V0' where id=4; -update noar tt set b1='YOCMJQV9DMNGBXH6L' where id=4; -update noar ti set b1='YOCMJQV9DMNGBXH6L' where id=4; -update noar tt set b2='6KRBZ6KSR3K1UH327XJ8RXRM' where id=4; -update noar ti set b2='6KRBZ6KSR3K1UH327XJ8RXRM' where id=4; -update noar tt set b0='7M6EI4TJBNVQIZE3FA1TCCT0ABAW9EJ6' where id=5; -update noar ti set b0='7M6EI4TJBNVQIZE3FA1TCCT0ABAW9EJ6' where id=5; -update noar tt set b1='BHCJENERCZ2FDYWH7CH51FSL' where id=5; -update noar ti set b1='BHCJENERCZ2FDYWH7CH51FSL' where id=5; -update noar tt set b2='YXMUXG3P' where id=5; -update noar ti set b2='YXMUXG3P' where id=5; -update noar tt set b0='5' where id=6; -update noar ti set b0='5' where id=6; -update noar tt set b1='MSO2AU2INQ8KQFHQFEKC1' where id=6; -update noar ti set b1='MSO2AU2INQ8KQFHQFEKC1' where id=6; -update noar tt set b2='YQC2SIYODUIG88' where id=6; -update noar ti set b2='YQC2SIYODUIG88' where id=6; -update noar tt set b0='BZGP0N0WW94' where id=7; -update noar ti set b0='BZGP0N0WW94' where id=7; -update noar tt set b1='OSWCW9CV7KLK1RZ9MECOP5' where id=7; -update noar ti set b1='OSWCW9CV7KLK1RZ9MECOP5' where id=7; -update noar tt set b2='9X2HWBJ7OC1PBQ4' where id=7; -update noar ti set b2='9X2HWBJ7OC1PBQ4' where id=7; -update noar tt set b0='FQIUY7LUR3KKEG2E7KEFED5V0MW' where id=8; -update noar ti set b0='FQIUY7LUR3KKEG2E7KEFED5V0MW' where id=8; -update noar tt set b1='AUZSU' where id=8; -update noar ti set b1='AUZSU' where id=8; -update noar tt set b2='FGRCY' where id=8; -update noar ti set b2='FGRCY' where id=8; -update noar tt set b0='H5E6IJMPXJC' where id=9; -update noar ti set b0='H5E6IJMPXJC' where id=9; -update noar tt set b1='G62F1053W7' where id=9; -update noar ti set b1='G62F1053W7' where id=9; -update noar tt set b2='NPHPQ560DCNFGUEA' where id=9; -update noar ti set b2='NPHPQ560DCNFGUEA' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - b0 mediumblob not null, - b1 mediumblob not null, - b2 blob not null -) engine=tokudb; -insert into tt values (1,'','',''); -insert into tt values (2,'','',''); -insert into tt values (3,'','',''); -insert into tt values (4,'','',''); -insert into tt values (5,'','',''); -insert into tt values (6,'','',''); -insert into tt values (7,'','',''); -insert into tt values (8,'','',''); -insert into tt values (9,'','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set b0='UEPOWINI' where id=1; -update noar ti set b0='UEPOWINI' where id=1; -update noar tt set b1='WKGVV76LB4UBMC48HIBLD4M2QE' where id=1; -update noar ti set b1='WKGVV76LB4UBMC48HIBLD4M2QE' where id=1; -update noar tt set b2='5V37M1DQ' where id=1; -update noar ti set b2='5V37M1DQ' where id=1; -update noar tt set b0='OBULB2GPD7Y0PV4V79DLOLMT9' where id=2; -update noar ti set b0='OBULB2GPD7Y0PV4V79DLOLMT9' where id=2; -update noar tt set b1='IWQW2X42COGFS0A8F0N3KN6PG' where id=2; -update noar ti set b1='IWQW2X42COGFS0A8F0N3KN6PG' where id=2; -update noar tt set b2='AD4X5P' where id=2; -update noar ti set b2='AD4X5P' where id=2; -update noar tt set b0='LG1LPJUAI4MQXKO9D1O8Z08P18UM8Y' where id=3; -update noar ti set b0='LG1LPJUAI4MQXKO9D1O8Z08P18UM8Y' where id=3; -update noar tt set b1='CTGY99WEBKZH4SNWY' where id=3; -update noar ti set b1='CTGY99WEBKZH4SNWY' where id=3; -update noar tt set b2='L7GNOLVYTONCJ5MDK3ODKX2X' where id=3; -update noar ti set b2='L7GNOLVYTONCJ5MDK3ODKX2X' where id=3; -update noar tt set b0='OHUPUAZC2TARNQ' where id=4; -update noar ti set b0='OHUPUAZC2TARNQ' where id=4; -update noar tt set b1='F6R9J9' where id=4; -update noar ti set b1='F6R9J9' where id=4; -update noar tt set b2='WX' where id=4; -update noar ti set b2='WX' where id=4; -update noar tt set b0='4UARZDMBUV2RQRU49623Y0VMSQ' where id=5; -update noar ti set b0='4UARZDMBUV2RQRU49623Y0VMSQ' where id=5; -update noar tt set b1='VP34VK10RASDCQI3X7J0JO8X' where id=5; -update noar ti set b1='VP34VK10RASDCQI3X7J0JO8X' where id=5; -update noar tt set b2='WJFFRJB3AJQQGAN3NOHS3N9D86G' where id=5; -update noar ti set b2='WJFFRJB3AJQQGAN3NOHS3N9D86G' where id=5; -update noar tt set b0='V7TA9' where id=6; -update noar ti set b0='V7TA9' where id=6; -update noar tt set b1='IK3UI59XXL9H5T6CWY8M1WIUP7OJK' where id=6; -update noar ti set b1='IK3UI59XXL9H5T6CWY8M1WIUP7OJK' where id=6; -update noar tt set b2='1ACTUFUYBTQCY2R8S1K2ACLF' where id=6; -update noar ti set b2='1ACTUFUYBTQCY2R8S1K2ACLF' where id=6; -update noar tt set b0='T625PDFFOBDUJK2A1KVE' where id=7; -update noar ti set b0='T625PDFFOBDUJK2A1KVE' where id=7; -update noar tt set b1='23SSDBWB4TSWB8YIPAD5T3ZGHOH2FI9O' where id=7; -update noar ti set b1='23SSDBWB4TSWB8YIPAD5T3ZGHOH2FI9O' where id=7; -update noar tt set b2='U68BHPDQ6KDFQI865PZQ1DA' where id=7; -update noar ti set b2='U68BHPDQ6KDFQI865PZQ1DA' where id=7; -update noar tt set b0='4AFE5FF6SUQWPVRX9DY7PTS647D29H1I' where id=8; -update noar ti set b0='4AFE5FF6SUQWPVRX9DY7PTS647D29H1I' where id=8; -update noar tt set b1='2JY8X3GADKY0S1VT8Q' where id=8; -update noar ti set b1='2JY8X3GADKY0S1VT8Q' where id=8; -update noar tt set b2='ZIF9BYLNGX154X8K' where id=8; -update noar ti set b2='ZIF9BYLNGX154X8K' where id=8; -update noar tt set b0='7H1TU8YP5A0D' where id=9; -update noar ti set b0='7H1TU8YP5A0D' where id=9; -update noar tt set b1='ADW9A33GI' where id=9; -update noar ti set b1='ADW9A33GI' where id=9; -update noar tt set b2='6IU5TYU9OCB3F4UN9A10HLRF' where id=9; -update noar ti set b2='6IU5TYU9OCB3F4UN9A10HLRF' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - b0 mediumblob null, - b1 mediumblob null, - b2 mediumblob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set b0='P6WFN8S6301YT6PTL2H19SDUG1L' where id=1; -update noar ti set b0='P6WFN8S6301YT6PTL2H19SDUG1L' where id=1; -update noar tt set b1='WT4OI' where id=1; -update noar ti set b1='WT4OI' where id=1; -update noar tt set b2='GNZ' where id=1; -update noar ti set b2='GNZ' where id=1; -update noar tt set b0='POPSLHFW5QON1FT7AYJ6Y' where id=2; -update noar ti set b0='POPSLHFW5QON1FT7AYJ6Y' where id=2; -update noar tt set b1='HY3' where id=2; -update noar ti set b1='HY3' where id=2; -update noar tt set b2='ARFF5BETLD8AJJM' where id=2; -update noar ti set b2='ARFF5BETLD8AJJM' where id=2; -update noar tt set b0='HZ3U9ACQD0RZ' where id=3; -update noar ti set b0='HZ3U9ACQD0RZ' where id=3; -update noar tt set b1='Y730TNJRJFZT8LHDQHDDBD68JBF7G00' where id=3; -update noar ti set b1='Y730TNJRJFZT8LHDQHDDBD68JBF7G00' where id=3; -update noar tt set b2='3Y9W090ESO0SDFNCUJJN' where id=3; -update noar ti set b2='3Y9W090ESO0SDFNCUJJN' where id=3; -update noar tt set b0='TX753P8Y6OEJRGCRQ36FJGP0M11L' where id=4; -update noar ti set b0='TX753P8Y6OEJRGCRQ36FJGP0M11L' where id=4; -update noar tt set b1='O4SSRIWGVDZTTA9VZP7' where id=4; -update noar ti set b1='O4SSRIWGVDZTTA9VZP7' where id=4; -update noar tt set b2='2KHD2MAZPKM6EGWVU47WVF' where id=4; -update noar ti set b2='2KHD2MAZPKM6EGWVU47WVF' where id=4; -update noar tt set b0='4QVZKM' where id=5; -update noar ti set b0='4QVZKM' where id=5; -update noar tt set b1='0NJVRH' where id=5; -update noar ti set b1='0NJVRH' where id=5; -update noar tt set b2='V' where id=5; -update noar ti set b2='V' where id=5; -update noar tt set b0='85RL2F4OBNK' where id=6; -update noar ti set b0='85RL2F4OBNK' where id=6; -update noar tt set b1='PYGDSSP9E9' where id=6; -update noar ti set b1='PYGDSSP9E9' where id=6; -update noar tt set b2='2N5XN6O' where id=6; -update noar ti set b2='2N5XN6O' where id=6; -update noar tt set b0='QQG91P0SP1AXBV34X7I' where id=7; -update noar ti set b0='QQG91P0SP1AXBV34X7I' where id=7; -update noar tt set b1='QJ1RI65PXRIB3XNSIPJ05V5M' where id=7; -update noar ti set b1='QJ1RI65PXRIB3XNSIPJ05V5M' where id=7; -update noar tt set b2='NL13BN1UF870L4WD' where id=7; -update noar ti set b2='NL13BN1UF870L4WD' where id=7; -update noar tt set b0='OSZALWNP8A' where id=8; -update noar ti set b0='OSZALWNP8A' where id=8; -update noar tt set b1='UP1EOBGBI73I3QMI8G0P1' where id=8; -update noar ti set b1='UP1EOBGBI73I3QMI8G0P1' where id=8; -update noar tt set b2='1DTP8Z5509706J5MDAS4733S7Q2JEKF3' where id=8; -update noar ti set b2='1DTP8Z5509706J5MDAS4733S7Q2JEKF3' where id=8; -update noar tt set b0='PKDZWEWQW3FAGDMI5QLSLWQZP0' where id=9; -update noar ti set b0='PKDZWEWQW3FAGDMI5QLSLWQZP0' where id=9; -update noar tt set b1='W3GGOEW4YI6WM09QR51DU2VCH6N6T4FZ' where id=9; -update noar ti set b1='W3GGOEW4YI6WM09QR51DU2VCH6N6T4FZ' where id=9; -update noar tt set b2='TOR4GCUAWVDT2TTR8HGUK38T0QVS3D1Z' where id=9; -update noar ti set b2='TOR4GCUAWVDT2TTR8HGUK38T0QVS3D1Z' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - b0 mediumblob not null, - b1 mediumblob not null, - b2 mediumblob not null -) engine=tokudb; -insert into tt values (1,'','',''); -insert into tt values (2,'','',''); -insert into tt values (3,'','',''); -insert into tt values (4,'','',''); -insert into tt values (5,'','',''); -insert into tt values (6,'','',''); -insert into tt values (7,'','',''); -insert into tt values (8,'','',''); -insert into tt values (9,'','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set b0='GXSOQ7Y8MU0T2NYW81VXE7' where id=1; -update noar ti set b0='GXSOQ7Y8MU0T2NYW81VXE7' where id=1; -update noar tt set b1='9IKISSJJP94ULPMVA3PY' where id=1; -update noar ti set b1='9IKISSJJP94ULPMVA3PY' where id=1; -update noar tt set b2='6F0A1XO70VDST4Y' where id=1; -update noar ti set b2='6F0A1XO70VDST4Y' where id=1; -update noar tt set b0='2658MQ8OLXXWUYZS2' where id=2; -update noar ti set b0='2658MQ8OLXXWUYZS2' where id=2; -update noar tt set b1='2' where id=2; -update noar ti set b1='2' where id=2; -update noar tt set b2='XYNDTRKJ7N4C4JK' where id=2; -update noar ti set b2='XYNDTRKJ7N4C4JK' where id=2; -update noar tt set b0='G' where id=3; -update noar ti set b0='G' where id=3; -update noar tt set b1='1ZWM1CMIOZ1L70L' where id=3; -update noar ti set b1='1ZWM1CMIOZ1L70L' where id=3; -update noar tt set b2='KZEPB0CKY04QY3T406ZJ7QPP49UE' where id=3; -update noar ti set b2='KZEPB0CKY04QY3T406ZJ7QPP49UE' where id=3; -update noar tt set b0='DN6TGQGWLFC7FNCDVB4V1H1RUNTT' where id=4; -update noar ti set b0='DN6TGQGWLFC7FNCDVB4V1H1RUNTT' where id=4; -update noar tt set b1='SE0A7EG7OJHQS' where id=4; -update noar ti set b1='SE0A7EG7OJHQS' where id=4; -update noar tt set b2='3LDB8TIZUDRDCXM15U' where id=4; -update noar ti set b2='3LDB8TIZUDRDCXM15U' where id=4; -update noar tt set b0='RMQV63TKMJ6J' where id=5; -update noar ti set b0='RMQV63TKMJ6J' where id=5; -update noar tt set b1='R13LT1CXL6OUC737DD3C5A' where id=5; -update noar ti set b1='R13LT1CXL6OUC737DD3C5A' where id=5; -update noar tt set b2='GL2HS67PERDK2WI2P423ZLXL' where id=5; -update noar ti set b2='GL2HS67PERDK2WI2P423ZLXL' where id=5; -update noar tt set b0='SVDK4ZRGTOY4V7ZJ2XQQUKE0UL0EMJ' where id=6; -update noar ti set b0='SVDK4ZRGTOY4V7ZJ2XQQUKE0UL0EMJ' where id=6; -update noar tt set b1='W70M' where id=6; -update noar ti set b1='W70M' where id=6; -update noar tt set b2='QADLOFC4Q' where id=6; -update noar ti set b2='QADLOFC4Q' where id=6; -update noar tt set b0='3MIAR00DAZ' where id=7; -update noar ti set b0='3MIAR00DAZ' where id=7; -update noar tt set b1='01PA8WLFSFEZN2XA' where id=7; -update noar ti set b1='01PA8WLFSFEZN2XA' where id=7; -update noar tt set b2='8R1GFIUYGLP' where id=7; -update noar ti set b2='8R1GFIUYGLP' where id=7; -update noar tt set b0='KRMIL9JIRJJB5HW8BXCXK61VM1YYV2XR' where id=8; -update noar ti set b0='KRMIL9JIRJJB5HW8BXCXK61VM1YYV2XR' where id=8; -update noar tt set b1='8T1FA8H9B75Y191OC48Z738' where id=8; -update noar ti set b1='8T1FA8H9B75Y191OC48Z738' where id=8; -update noar tt set b2='C' where id=8; -update noar ti set b2='C' where id=8; -update noar tt set b0='CMOIIWX5R96XEN7GDP7O0' where id=9; -update noar ti set b0='CMOIIWX5R96XEN7GDP7O0' where id=9; -update noar tt set b1='PQNHV3TGXWYVB207C3KIXO0E6UFOG92J' where id=9; -update noar ti set b1='PQNHV3TGXWYVB207C3KIXO0E6UFOG92J' where id=9; -update noar tt set b2='QV1KYD2TXGLPZ' where id=9; -update noar ti set b2='QV1KYD2TXGLPZ' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - b0 mediumblob null, - b1 mediumblob null, - b2 longblob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set b0='YVZSPRURV56CHEXFPAJNC91114ZFQ48' where id=1; -update noar ti set b0='YVZSPRURV56CHEXFPAJNC91114ZFQ48' where id=1; -update noar tt set b1='DGL1F7Z08WLV5IQMJ5OQ9' where id=1; -update noar ti set b1='DGL1F7Z08WLV5IQMJ5OQ9' where id=1; -update noar tt set b2='YHU0YFWJ36TZBUY39RURXU3F' where id=1; -update noar ti set b2='YHU0YFWJ36TZBUY39RURXU3F' where id=1; -update noar tt set b0='1KDWZ6' where id=2; -update noar ti set b0='1KDWZ6' where id=2; -update noar tt set b1='WPKIJGS8U6OW0KQ' where id=2; -update noar ti set b1='WPKIJGS8U6OW0KQ' where id=2; -update noar tt set b2='UKNXU2D6' where id=2; -update noar ti set b2='UKNXU2D6' where id=2; -update noar tt set b0='DNXQTCNIILPE3' where id=3; -update noar ti set b0='DNXQTCNIILPE3' where id=3; -update noar tt set b1='VVTVVMZB8ZJ1C4N80DUWUL' where id=3; -update noar ti set b1='VVTVVMZB8ZJ1C4N80DUWUL' where id=3; -update noar tt set b2='1IYDTB9RW' where id=3; -update noar ti set b2='1IYDTB9RW' where id=3; -update noar tt set b0='SM9S4RM2OLJHH82OK1VV' where id=4; -update noar ti set b0='SM9S4RM2OLJHH82OK1VV' where id=4; -update noar tt set b1='ZGVH' where id=4; -update noar ti set b1='ZGVH' where id=4; -update noar tt set b2='BVJLZ3DPZ457XP92SFPLVA6GK' where id=4; -update noar ti set b2='BVJLZ3DPZ457XP92SFPLVA6GK' where id=4; -update noar tt set b0='VPQSA3J7S0CCZ8Q71AD0XJQS' where id=5; -update noar ti set b0='VPQSA3J7S0CCZ8Q71AD0XJQS' where id=5; -update noar tt set b1='0J53AY66ZO18P4G1CIW1U1N9Q9PBQ' where id=5; -update noar ti set b1='0J53AY66ZO18P4G1CIW1U1N9Q9PBQ' where id=5; -update noar tt set b2='2UH3OD3L49N2KVWVVNDTGYSX9' where id=5; -update noar ti set b2='2UH3OD3L49N2KVWVVNDTGYSX9' where id=5; -update noar tt set b0='027HVWMX' where id=6; -update noar ti set b0='027HVWMX' where id=6; -update noar tt set b1='0EWP60VWSG' where id=6; -update noar ti set b1='0EWP60VWSG' where id=6; -update noar tt set b2='SBWDFAWDP2PW8PC1LYZ' where id=6; -update noar ti set b2='SBWDFAWDP2PW8PC1LYZ' where id=6; -update noar tt set b0='VC224VNW0C118R1ABKF1MEX' where id=7; -update noar ti set b0='VC224VNW0C118R1ABKF1MEX' where id=7; -update noar tt set b1='YJAVPB3O' where id=7; -update noar ti set b1='YJAVPB3O' where id=7; -update noar tt set b2='XOH8YK' where id=7; -update noar ti set b2='XOH8YK' where id=7; -update noar tt set b0='I4PTT0OYGANXEAGYHO191GY' where id=8; -update noar ti set b0='I4PTT0OYGANXEAGYHO191GY' where id=8; -update noar tt set b1='97' where id=8; -update noar ti set b1='97' where id=8; -update noar tt set b2='0G4US9C6ME2U9UW8ASP0O89' where id=8; -update noar ti set b2='0G4US9C6ME2U9UW8ASP0O89' where id=8; -update noar tt set b0='MHIHYR7MNOZXNZDRRKVCJB1GQANIA12' where id=9; -update noar ti set b0='MHIHYR7MNOZXNZDRRKVCJB1GQANIA12' where id=9; -update noar tt set b1='RV9YGBTMGKJZ8U11TJMECE' where id=9; -update noar ti set b1='RV9YGBTMGKJZ8U11TJMECE' where id=9; -update noar tt set b2='ZT9BB6HA1L80DAEKJFME' where id=9; -update noar ti set b2='ZT9BB6HA1L80DAEKJFME' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - b0 mediumblob not null, - b1 mediumblob not null, - b2 longblob not null -) engine=tokudb; -insert into tt values (1,'','',''); -insert into tt values (2,'','',''); -insert into tt values (3,'','',''); -insert into tt values (4,'','',''); -insert into tt values (5,'','',''); -insert into tt values (6,'','',''); -insert into tt values (7,'','',''); -insert into tt values (8,'','',''); -insert into tt values (9,'','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set b0='6CAUYPW6EL' where id=1; -update noar ti set b0='6CAUYPW6EL' where id=1; -update noar tt set b1='NV9BR1BI6UJ' where id=1; -update noar ti set b1='NV9BR1BI6UJ' where id=1; -update noar tt set b2='JOXP2S3T0ZCVVKF' where id=1; -update noar ti set b2='JOXP2S3T0ZCVVKF' where id=1; -update noar tt set b0='736HKDM40' where id=2; -update noar ti set b0='736HKDM40' where id=2; -update noar tt set b1='999TXVGNA1FPQR' where id=2; -update noar ti set b1='999TXVGNA1FPQR' where id=2; -update noar tt set b2='8EQOQLECSGYGZT38X7YJPQ5FKFX1P1' where id=2; -update noar ti set b2='8EQOQLECSGYGZT38X7YJPQ5FKFX1P1' where id=2; -update noar tt set b0='VG0' where id=3; -update noar ti set b0='VG0' where id=3; -update noar tt set b1='5FRJYS' where id=3; -update noar ti set b1='5FRJYS' where id=3; -update noar tt set b2='EECZUH6K5PZ7CTY' where id=3; -update noar ti set b2='EECZUH6K5PZ7CTY' where id=3; -update noar tt set b0='M9T0HGZZGR' where id=4; -update noar ti set b0='M9T0HGZZGR' where id=4; -update noar tt set b1='QSDMVSYKJXJWIOO9K9' where id=4; -update noar ti set b1='QSDMVSYKJXJWIOO9K9' where id=4; -update noar tt set b2='6VWOLASJWXEEE2KGIEHXJUFO' where id=4; -update noar ti set b2='6VWOLASJWXEEE2KGIEHXJUFO' where id=4; -update noar tt set b0='AASGZL6TG912HM2MOCXUR' where id=5; -update noar ti set b0='AASGZL6TG912HM2MOCXUR' where id=5; -update noar tt set b1='P5KHI1V4LZF02XW' where id=5; -update noar ti set b1='P5KHI1V4LZF02XW' where id=5; -update noar tt set b2='EXSL7PAYETH8I' where id=5; -update noar ti set b2='EXSL7PAYETH8I' where id=5; -update noar tt set b0='0XN1YJICC01KGESUZF0H0L4OR5ML8K' where id=6; -update noar ti set b0='0XN1YJICC01KGESUZF0H0L4OR5ML8K' where id=6; -update noar tt set b1='G34DBPX8CQB2G02ZXZ4UMEL' where id=6; -update noar ti set b1='G34DBPX8CQB2G02ZXZ4UMEL' where id=6; -update noar tt set b2='N7' where id=6; -update noar ti set b2='N7' where id=6; -update noar tt set b0='Z5' where id=7; -update noar ti set b0='Z5' where id=7; -update noar tt set b1='NY3XMNT4PULZ2A9GBSX9JUS9LH' where id=7; -update noar ti set b1='NY3XMNT4PULZ2A9GBSX9JUS9LH' where id=7; -update noar tt set b2='L6EMKMTZ1M28N3HJE5XQLSB1FI' where id=7; -update noar ti set b2='L6EMKMTZ1M28N3HJE5XQLSB1FI' where id=7; -update noar tt set b0='Z6EFHLC10ZTTSL4JAQ9KPDE4' where id=8; -update noar ti set b0='Z6EFHLC10ZTTSL4JAQ9KPDE4' where id=8; -update noar tt set b1='4CBBYRA9VK6WY2DNRLLX4C79C8EV' where id=8; -update noar ti set b1='4CBBYRA9VK6WY2DNRLLX4C79C8EV' where id=8; -update noar tt set b2='2U4U02WW1EY1M8SCZKTAZDCGIMF4L8' where id=8; -update noar ti set b2='2U4U02WW1EY1M8SCZKTAZDCGIMF4L8' where id=8; -update noar tt set b0='OJ00U7A71MXNCE01YGFX8NBN90' where id=9; -update noar ti set b0='OJ00U7A71MXNCE01YGFX8NBN90' where id=9; -update noar tt set b1='8V6' where id=9; -update noar ti set b1='8V6' where id=9; -update noar tt set b2='9549E1OMTCYIYB21E3O2PV5N8CER30XY' where id=9; -update noar ti set b2='9549E1OMTCYIYB21E3O2PV5N8CER30XY' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - b0 mediumblob null, - b1 mediumblob null, - b2 text null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set b0='F7' where id=1; -update noar ti set b0='F7' where id=1; -update noar tt set b1='LSKALVO1TA' where id=1; -update noar ti set b1='LSKALVO1TA' where id=1; -update noar tt set b2='VQ0ENLI6G0E' where id=1; -update noar ti set b2='VQ0ENLI6G0E' where id=1; -update noar tt set b0='XAAZKI' where id=2; -update noar ti set b0='XAAZKI' where id=2; -update noar tt set b1='B5LTVGXCICBTRK05JY12' where id=2; -update noar ti set b1='B5LTVGXCICBTRK05JY12' where id=2; -update noar tt set b2='FCEQWB' where id=2; -update noar ti set b2='FCEQWB' where id=2; -update noar tt set b0='ZKDS5HAQ1UHL046JLEFBCFK8G' where id=3; -update noar ti set b0='ZKDS5HAQ1UHL046JLEFBCFK8G' where id=3; -update noar tt set b1='001IR8BY' where id=3; -update noar ti set b1='001IR8BY' where id=3; -update noar tt set b2='K9EA' where id=3; -update noar ti set b2='K9EA' where id=3; -update noar tt set b0='8UDFO9BE2EP87B2PQTBTY7W11B4GZI9' where id=4; -update noar ti set b0='8UDFO9BE2EP87B2PQTBTY7W11B4GZI9' where id=4; -update noar tt set b1='J3XPCEUY0X0ZO53Q' where id=4; -update noar ti set b1='J3XPCEUY0X0ZO53Q' where id=4; -update noar tt set b2='7030KX1FA0C6HRY6G6SEJ0Y9U' where id=4; -update noar ti set b2='7030KX1FA0C6HRY6G6SEJ0Y9U' where id=4; -update noar tt set b0='V' where id=5; -update noar ti set b0='V' where id=5; -update noar tt set b1='2J8MSZ134CBYT3CHZ0VQ' where id=5; -update noar ti set b1='2J8MSZ134CBYT3CHZ0VQ' where id=5; -update noar tt set b2='TH93LXEQ81W7JD9B5U7N6LRGYCZD' where id=5; -update noar ti set b2='TH93LXEQ81W7JD9B5U7N6LRGYCZD' where id=5; -update noar tt set b0='L3A50UKS2KTGPWOWS9QBA1L2XR' where id=6; -update noar ti set b0='L3A50UKS2KTGPWOWS9QBA1L2XR' where id=6; -update noar tt set b1='T9XOWRH' where id=6; -update noar ti set b1='T9XOWRH' where id=6; -update noar tt set b2='W9N92P6W2EDFRJYQ3P9CZ' where id=6; -update noar ti set b2='W9N92P6W2EDFRJYQ3P9CZ' where id=6; -update noar tt set b0='U37OKI2NHSGMGBTUND' where id=7; -update noar ti set b0='U37OKI2NHSGMGBTUND' where id=7; -update noar tt set b1='MROWBFH9FIJMCGFJAZN7CI38Q' where id=7; -update noar ti set b1='MROWBFH9FIJMCGFJAZN7CI38Q' where id=7; -update noar tt set b2='NE2FE3ADN2HLAJFBRJAH4C' where id=7; -update noar ti set b2='NE2FE3ADN2HLAJFBRJAH4C' where id=7; -update noar tt set b0='MEWI2ZWW8PGN' where id=8; -update noar ti set b0='MEWI2ZWW8PGN' where id=8; -update noar tt set b1='IOK449PT5AZK1SXOJD1Q' where id=8; -update noar ti set b1='IOK449PT5AZK1SXOJD1Q' where id=8; -update noar tt set b2='06DW4LX6WNB' where id=8; -update noar ti set b2='06DW4LX6WNB' where id=8; -update noar tt set b0='EENSHC0IGEUWW77OFGJBRFKA4DB4D' where id=9; -update noar ti set b0='EENSHC0IGEUWW77OFGJBRFKA4DB4D' where id=9; -update noar tt set b1='VT9EYPF9B6CYHKZ7UG5YCM97UXFI0PCT' where id=9; -update noar ti set b1='VT9EYPF9B6CYHKZ7UG5YCM97UXFI0PCT' where id=9; -update noar tt set b2='QMYR' where id=9; -update noar ti set b2='QMYR' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - b0 mediumblob not null, - b1 mediumblob not null, - b2 text not null -) engine=tokudb; -insert into tt values (1,'','',''); -insert into tt values (2,'','',''); -insert into tt values (3,'','',''); -insert into tt values (4,'','',''); -insert into tt values (5,'','',''); -insert into tt values (6,'','',''); -insert into tt values (7,'','',''); -insert into tt values (8,'','',''); -insert into tt values (9,'','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set b0='S' where id=1; -update noar ti set b0='S' where id=1; -update noar tt set b1='1I1YHX9UNR369ZS5FT' where id=1; -update noar ti set b1='1I1YHX9UNR369ZS5FT' where id=1; -update noar tt set b2='VQFOVRR10NADRRHBEKBMA06DTY2Q' where id=1; -update noar ti set b2='VQFOVRR10NADRRHBEKBMA06DTY2Q' where id=1; -update noar tt set b0='E97K7Q93YPFA9B3PUV' where id=2; -update noar ti set b0='E97K7Q93YPFA9B3PUV' where id=2; -update noar tt set b1='CY1OM0INXGW9XB6THLMNMM441' where id=2; -update noar ti set b1='CY1OM0INXGW9XB6THLMNMM441' where id=2; -update noar tt set b2='RCALC83TID0GSFMQHJA' where id=2; -update noar ti set b2='RCALC83TID0GSFMQHJA' where id=2; -update noar tt set b0='O2H2V79N2WO07QCCA' where id=3; -update noar ti set b0='O2H2V79N2WO07QCCA' where id=3; -update noar tt set b1='CK' where id=3; -update noar ti set b1='CK' where id=3; -update noar tt set b2='6QEDY4T0EHC4POKF2GFMCQ' where id=3; -update noar ti set b2='6QEDY4T0EHC4POKF2GFMCQ' where id=3; -update noar tt set b0='47DNAX5TQJLSWWV8NDASSTFH9VIF' where id=4; -update noar ti set b0='47DNAX5TQJLSWWV8NDASSTFH9VIF' where id=4; -update noar tt set b1='AES2MT4MCUQ7WBCJDBK' where id=4; -update noar ti set b1='AES2MT4MCUQ7WBCJDBK' where id=4; -update noar tt set b2='1WAV830TBGMFYHHD' where id=4; -update noar ti set b2='1WAV830TBGMFYHHD' where id=4; -update noar tt set b0='8IGASXFEQCJZLIPF4XTU7SK' where id=5; -update noar ti set b0='8IGASXFEQCJZLIPF4XTU7SK' where id=5; -update noar tt set b1='86TE048W4WEG5PW3YYUKUTRSYQ' where id=5; -update noar ti set b1='86TE048W4WEG5PW3YYUKUTRSYQ' where id=5; -update noar tt set b2='8T5' where id=5; -update noar ti set b2='8T5' where id=5; -update noar tt set b0='WMQO8O9B9FELFGIX2F' where id=6; -update noar ti set b0='WMQO8O9B9FELFGIX2F' where id=6; -update noar tt set b1='I616XPHHLS9D9FSW5BO20ERJRGF' where id=6; -update noar ti set b1='I616XPHHLS9D9FSW5BO20ERJRGF' where id=6; -update noar tt set b2='2A0' where id=6; -update noar ti set b2='2A0' where id=6; -update noar tt set b0='1E13TBB' where id=7; -update noar ti set b0='1E13TBB' where id=7; -update noar tt set b1='R34SV9Q079NDH9QLAYGIVG' where id=7; -update noar ti set b1='R34SV9Q079NDH9QLAYGIVG' where id=7; -update noar tt set b2='GI7Y6OOIN3B1IIUCA8S2KM5A0F9CV82' where id=7; -update noar ti set b2='GI7Y6OOIN3B1IIUCA8S2KM5A0F9CV82' where id=7; -update noar tt set b0='J8O3H9YC51NJQFX4Z7BEPS' where id=8; -update noar ti set b0='J8O3H9YC51NJQFX4Z7BEPS' where id=8; -update noar tt set b1='08WE5QAF3GFETJNGGO2BVFAFAOOOVZAU' where id=8; -update noar ti set b1='08WE5QAF3GFETJNGGO2BVFAFAOOOVZAU' where id=8; -update noar tt set b2='U7X78FYM' where id=8; -update noar ti set b2='U7X78FYM' where id=8; -update noar tt set b0='GSO6' where id=9; -update noar ti set b0='GSO6' where id=9; -update noar tt set b1='T7511LP29OS6VKSCC' where id=9; -update noar ti set b1='T7511LP29OS6VKSCC' where id=9; -update noar tt set b2='JMQ1' where id=9; -update noar ti set b2='JMQ1' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - b0 mediumblob null, - b1 longblob null, - b2 tinyblob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set b0='NA618TEHZX90CZFHBQDTC1V8XG9J75' where id=1; -update noar ti set b0='NA618TEHZX90CZFHBQDTC1V8XG9J75' where id=1; -update noar tt set b1='YTVASEIF' where id=1; -update noar ti set b1='YTVASEIF' where id=1; -update noar tt set b2='Y9RI6C78SD02T3X7KGTYQD76EQ7S' where id=1; -update noar ti set b2='Y9RI6C78SD02T3X7KGTYQD76EQ7S' where id=1; -update noar tt set b0='OO' where id=2; -update noar ti set b0='OO' where id=2; -update noar tt set b1='361GKY38WX0ED5S1DGA' where id=2; -update noar ti set b1='361GKY38WX0ED5S1DGA' where id=2; -update noar tt set b2='92Q' where id=2; -update noar ti set b2='92Q' where id=2; -update noar tt set b0='R0KDIDIA760DSETGB4PLOW5' where id=3; -update noar ti set b0='R0KDIDIA760DSETGB4PLOW5' where id=3; -update noar tt set b1='C' where id=3; -update noar ti set b1='C' where id=3; -update noar tt set b2='I4444EF9C2I' where id=3; -update noar ti set b2='I4444EF9C2I' where id=3; -update noar tt set b0='WVSTWO3BG' where id=4; -update noar ti set b0='WVSTWO3BG' where id=4; -update noar tt set b1='2XI3ZORR0BO5I245GEKZ' where id=4; -update noar ti set b1='2XI3ZORR0BO5I245GEKZ' where id=4; -update noar tt set b2='RRLDJ8' where id=4; -update noar ti set b2='RRLDJ8' where id=4; -update noar tt set b0='7' where id=5; -update noar ti set b0='7' where id=5; -update noar tt set b1='QI6MAPFBO3CP' where id=5; -update noar ti set b1='QI6MAPFBO3CP' where id=5; -update noar tt set b2='98TA4DPA5ON9BCVMA0Z' where id=5; -update noar ti set b2='98TA4DPA5ON9BCVMA0Z' where id=5; -update noar tt set b0='2G' where id=6; -update noar ti set b0='2G' where id=6; -update noar tt set b1='MYXD4ARGJWS55L9EXYC38RN4KMP' where id=6; -update noar ti set b1='MYXD4ARGJWS55L9EXYC38RN4KMP' where id=6; -update noar tt set b2='Y6481' where id=6; -update noar ti set b2='Y6481' where id=6; -update noar tt set b0='QH75' where id=7; -update noar ti set b0='QH75' where id=7; -update noar tt set b1='X3VFIAB337LYD7DBF' where id=7; -update noar ti set b1='X3VFIAB337LYD7DBF' where id=7; -update noar tt set b2='W6PWF0DV78' where id=7; -update noar ti set b2='W6PWF0DV78' where id=7; -update noar tt set b0='VUH87V5F' where id=8; -update noar ti set b0='VUH87V5F' where id=8; -update noar tt set b1='9TIEGAW1MPASPDCVI8' where id=8; -update noar ti set b1='9TIEGAW1MPASPDCVI8' where id=8; -update noar tt set b2='T53N9R4A6GX9AFHJAXSBV05NWGTQ8MY5' where id=8; -update noar ti set b2='T53N9R4A6GX9AFHJAXSBV05NWGTQ8MY5' where id=8; -update noar tt set b0='GR' where id=9; -update noar ti set b0='GR' where id=9; -update noar tt set b1='Z79RVKK5BPSGF3J3ORK08OE58SL' where id=9; -update noar ti set b1='Z79RVKK5BPSGF3J3ORK08OE58SL' where id=9; -update noar tt set b2='RA' where id=9; -update noar ti set b2='RA' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - b0 mediumblob not null, - b1 longblob not null, - b2 tinyblob not null -) engine=tokudb; -insert into tt values (1,'','',''); -insert into tt values (2,'','',''); -insert into tt values (3,'','',''); -insert into tt values (4,'','',''); -insert into tt values (5,'','',''); -insert into tt values (6,'','',''); -insert into tt values (7,'','',''); -insert into tt values (8,'','',''); -insert into tt values (9,'','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set b0='ZBGN66XH999Q9NEUF2RPNPP0ZW' where id=1; -update noar ti set b0='ZBGN66XH999Q9NEUF2RPNPP0ZW' where id=1; -update noar tt set b1='3Q0JKSO2Z5URP' where id=1; -update noar ti set b1='3Q0JKSO2Z5URP' where id=1; -update noar tt set b2='62S31IO5R7GSO4T67R9MSNGIRMWM' where id=1; -update noar ti set b2='62S31IO5R7GSO4T67R9MSNGIRMWM' where id=1; -update noar tt set b0='8JUBE94QLIIZRIZHH91HKDULEI82' where id=2; -update noar ti set b0='8JUBE94QLIIZRIZHH91HKDULEI82' where id=2; -update noar tt set b1='SRY8TJ2P2U0GNNMY7UQ06RJ5' where id=2; -update noar ti set b1='SRY8TJ2P2U0GNNMY7UQ06RJ5' where id=2; -update noar tt set b2='3E3582KWGAV' where id=2; -update noar ti set b2='3E3582KWGAV' where id=2; -update noar tt set b0='KRR08HTNGOQFATE' where id=3; -update noar ti set b0='KRR08HTNGOQFATE' where id=3; -update noar tt set b1='LHRC9549LTIAX408KGYLXC95ALVNOFD' where id=3; -update noar ti set b1='LHRC9549LTIAX408KGYLXC95ALVNOFD' where id=3; -update noar tt set b2='2FXVSY' where id=3; -update noar ti set b2='2FXVSY' where id=3; -update noar tt set b0='IU85IK7Q3' where id=4; -update noar ti set b0='IU85IK7Q3' where id=4; -update noar tt set b1='FXQ3XVXUK' where id=4; -update noar ti set b1='FXQ3XVXUK' where id=4; -update noar tt set b2='CZ47BC8ORPQPX8UVG0Q3ZTUC' where id=4; -update noar ti set b2='CZ47BC8ORPQPX8UVG0Q3ZTUC' where id=4; -update noar tt set b0='UXUUWQYNFZBGTIK41QZIEFTU6E35K6T' where id=5; -update noar ti set b0='UXUUWQYNFZBGTIK41QZIEFTU6E35K6T' where id=5; -update noar tt set b1='36L35ZIKE9' where id=5; -update noar ti set b1='36L35ZIKE9' where id=5; -update noar tt set b2='JGHEW6KHAMN6I0JRNM' where id=5; -update noar ti set b2='JGHEW6KHAMN6I0JRNM' where id=5; -update noar tt set b0='0K99Q2CWX3QGLH0CAGQW9JO73' where id=6; -update noar ti set b0='0K99Q2CWX3QGLH0CAGQW9JO73' where id=6; -update noar tt set b1='V8X4FUEET36BYH6IHCHOWLKMQURAOJLQ' where id=6; -update noar ti set b1='V8X4FUEET36BYH6IHCHOWLKMQURAOJLQ' where id=6; -update noar tt set b2='V9T4CJV55OTC' where id=6; -update noar ti set b2='V9T4CJV55OTC' where id=6; -update noar tt set b0='KEO9CF4VUE92ZBNNR23LPPZXX7VI25XB' where id=7; -update noar ti set b0='KEO9CF4VUE92ZBNNR23LPPZXX7VI25XB' where id=7; -update noar tt set b1='B8' where id=7; -update noar ti set b1='B8' where id=7; -update noar tt set b2='1P' where id=7; -update noar ti set b2='1P' where id=7; -update noar tt set b0='9JU5XTJQ8K4HH2LJ7A' where id=8; -update noar ti set b0='9JU5XTJQ8K4HH2LJ7A' where id=8; -update noar tt set b1='V5K2CS3ID7EFEA7D1MM4QNQVLES' where id=8; -update noar ti set b1='V5K2CS3ID7EFEA7D1MM4QNQVLES' where id=8; -update noar tt set b2='3VPWI83QLNJU4WJ1' where id=8; -update noar ti set b2='3VPWI83QLNJU4WJ1' where id=8; -update noar tt set b0='633PXANQAGN60YC35L' where id=9; -update noar ti set b0='633PXANQAGN60YC35L' where id=9; -update noar tt set b1='ZP9ZHVA05KAL' where id=9; -update noar ti set b1='ZP9ZHVA05KAL' where id=9; -update noar tt set b2='J5KPZMNK1UPHXM2QHPSF1' where id=9; -update noar ti set b2='J5KPZMNK1UPHXM2QHPSF1' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - b0 mediumblob null, - b1 longblob null, - b2 blob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set b0='NXQQRD3M53K6NF7IG92WK2' where id=1; -update noar ti set b0='NXQQRD3M53K6NF7IG92WK2' where id=1; -update noar tt set b1='I67SVCO2K1ZJ' where id=1; -update noar ti set b1='I67SVCO2K1ZJ' where id=1; -update noar tt set b2='I8P8YDS6KM6IRE7MNGCF' where id=1; -update noar ti set b2='I8P8YDS6KM6IRE7MNGCF' where id=1; -update noar tt set b0='Y2BA9' where id=2; -update noar ti set b0='Y2BA9' where id=2; -update noar tt set b1='HX5EKYFMQ3VRMNZFE6FH834TU' where id=2; -update noar ti set b1='HX5EKYFMQ3VRMNZFE6FH834TU' where id=2; -update noar tt set b2='338MG5UD1568BKI7Q7VXRH' where id=2; -update noar ti set b2='338MG5UD1568BKI7Q7VXRH' where id=2; -update noar tt set b0='UPT2SBB0WCVVNIT5Q13LA3ADYP' where id=3; -update noar ti set b0='UPT2SBB0WCVVNIT5Q13LA3ADYP' where id=3; -update noar tt set b1='EAVNHGU4MBF' where id=3; -update noar ti set b1='EAVNHGU4MBF' where id=3; -update noar tt set b2='GMIK44SYDK5UVA5C73J1VLJ4' where id=3; -update noar ti set b2='GMIK44SYDK5UVA5C73J1VLJ4' where id=3; -update noar tt set b0='J5NTXPBKQWD4CXLXSTE9GLZI8' where id=4; -update noar ti set b0='J5NTXPBKQWD4CXLXSTE9GLZI8' where id=4; -update noar tt set b1='FJ3SS8Y33FI5EK2M7IINN3Q7ALX' where id=4; -update noar ti set b1='FJ3SS8Y33FI5EK2M7IINN3Q7ALX' where id=4; -update noar tt set b2='NC16L3DLGP0KTW6O' where id=4; -update noar ti set b2='NC16L3DLGP0KTW6O' where id=4; -update noar tt set b0='Y32B7DG1B96EVU6436R7URQURO3MLYB' where id=5; -update noar ti set b0='Y32B7DG1B96EVU6436R7URQURO3MLYB' where id=5; -update noar tt set b1='GTWXKLA41ZRP8M22XSQQIM65' where id=5; -update noar ti set b1='GTWXKLA41ZRP8M22XSQQIM65' where id=5; -update noar tt set b2='YZD' where id=5; -update noar ti set b2='YZD' where id=5; -update noar tt set b0='B491VCNL4OYTZ5O1FF5RRF7U6' where id=6; -update noar ti set b0='B491VCNL4OYTZ5O1FF5RRF7U6' where id=6; -update noar tt set b1='EN3G0PC30KQ34XLFUAQR4' where id=6; -update noar ti set b1='EN3G0PC30KQ34XLFUAQR4' where id=6; -update noar tt set b2='LJ41D97' where id=6; -update noar ti set b2='LJ41D97' where id=6; -update noar tt set b0='WHBH65AFVEQ6H4P' where id=7; -update noar ti set b0='WHBH65AFVEQ6H4P' where id=7; -update noar tt set b1='8U59FI0LWKLVLNF5' where id=7; -update noar ti set b1='8U59FI0LWKLVLNF5' where id=7; -update noar tt set b2='15OVTL4S' where id=7; -update noar ti set b2='15OVTL4S' where id=7; -update noar tt set b0='L3UXTOFNSL251GMFH' where id=8; -update noar ti set b0='L3UXTOFNSL251GMFH' where id=8; -update noar tt set b1='J' where id=8; -update noar ti set b1='J' where id=8; -update noar tt set b2='KF1RO4N7WEO6QCWVUL' where id=8; -update noar ti set b2='KF1RO4N7WEO6QCWVUL' where id=8; -update noar tt set b0='4MSXYR4ABDFQXRVCZP5' where id=9; -update noar ti set b0='4MSXYR4ABDFQXRVCZP5' where id=9; -update noar tt set b1='7ISP2DR3001KSVQ6OHBS4JP' where id=9; -update noar ti set b1='7ISP2DR3001KSVQ6OHBS4JP' where id=9; -update noar tt set b2='48JY9SSEJZZXR80DWU' where id=9; -update noar ti set b2='48JY9SSEJZZXR80DWU' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - b0 mediumblob not null, - b1 longblob not null, - b2 blob not null -) engine=tokudb; -insert into tt values (1,'','',''); -insert into tt values (2,'','',''); -insert into tt values (3,'','',''); -insert into tt values (4,'','',''); -insert into tt values (5,'','',''); -insert into tt values (6,'','',''); -insert into tt values (7,'','',''); -insert into tt values (8,'','',''); -insert into tt values (9,'','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set b0='KO4OLH6SJXNY1R9UUQBLYGORMD' where id=1; -update noar ti set b0='KO4OLH6SJXNY1R9UUQBLYGORMD' where id=1; -update noar tt set b1='LZH9L4K002Q2ZZPBGZO27GRD' where id=1; -update noar ti set b1='LZH9L4K002Q2ZZPBGZO27GRD' where id=1; -update noar tt set b2='17A95DDREMLFVFG' where id=1; -update noar ti set b2='17A95DDREMLFVFG' where id=1; -update noar tt set b0='XCWFW6N02XT1JJZDCUTM1JN84ODHX' where id=2; -update noar ti set b0='XCWFW6N02XT1JJZDCUTM1JN84ODHX' where id=2; -update noar tt set b1='D788' where id=2; -update noar ti set b1='D788' where id=2; -update noar tt set b2='V6XZ' where id=2; -update noar ti set b2='V6XZ' where id=2; -update noar tt set b0='2DK1UBRVDBHVUENY4UEG2' where id=3; -update noar ti set b0='2DK1UBRVDBHVUENY4UEG2' where id=3; -update noar tt set b1='D3WJD5P3Q' where id=3; -update noar ti set b1='D3WJD5P3Q' where id=3; -update noar tt set b2='09QYU' where id=3; -update noar ti set b2='09QYU' where id=3; -update noar tt set b0='4KNVGVL' where id=4; -update noar ti set b0='4KNVGVL' where id=4; -update noar tt set b1='PNP3XAT1W' where id=4; -update noar ti set b1='PNP3XAT1W' where id=4; -update noar tt set b2='YSUCD8BDH63M98XA' where id=4; -update noar ti set b2='YSUCD8BDH63M98XA' where id=4; -update noar tt set b0='08R0L2BP967A' where id=5; -update noar ti set b0='08R0L2BP967A' where id=5; -update noar tt set b1='6J35EG97AWMVXOCCMMC6MLLDSF' where id=5; -update noar ti set b1='6J35EG97AWMVXOCCMMC6MLLDSF' where id=5; -update noar tt set b2='Q447UQ604H3UXLNAJ' where id=5; -update noar ti set b2='Q447UQ604H3UXLNAJ' where id=5; -update noar tt set b0='69MG7R9JH3UD2VYOTE0KNBVCB53M696B' where id=6; -update noar ti set b0='69MG7R9JH3UD2VYOTE0KNBVCB53M696B' where id=6; -update noar tt set b1='GLGGL6U1SG' where id=6; -update noar ti set b1='GLGGL6U1SG' where id=6; -update noar tt set b2='R00O9ECHZSYM5FIMSQY' where id=6; -update noar ti set b2='R00O9ECHZSYM5FIMSQY' where id=6; -update noar tt set b0='AH2W33QDICC269L69B9N0MFRVCW' where id=7; -update noar ti set b0='AH2W33QDICC269L69B9N0MFRVCW' where id=7; -update noar tt set b1='T6J2WH2I3Z5RWXVTSI7S4C6T7STOXXD' where id=7; -update noar ti set b1='T6J2WH2I3Z5RWXVTSI7S4C6T7STOXXD' where id=7; -update noar tt set b2='KSWRONRU4N7' where id=7; -update noar ti set b2='KSWRONRU4N7' where id=7; -update noar tt set b0='W6GGGMFZYS4OV6IJQG9VM' where id=8; -update noar ti set b0='W6GGGMFZYS4OV6IJQG9VM' where id=8; -update noar tt set b1='ZDHL3' where id=8; -update noar ti set b1='ZDHL3' where id=8; -update noar tt set b2='BCEOMRP0N01ZN1IB4A0' where id=8; -update noar ti set b2='BCEOMRP0N01ZN1IB4A0' where id=8; -update noar tt set b0='274URTSFZNZXXFUUODCLOKRLB753' where id=9; -update noar ti set b0='274URTSFZNZXXFUUODCLOKRLB753' where id=9; -update noar tt set b1='EEP0A' where id=9; -update noar ti set b1='EEP0A' where id=9; -update noar tt set b2='3H60DMQDZM35FQECAOFUJ0' where id=9; -update noar ti set b2='3H60DMQDZM35FQECAOFUJ0' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - b0 mediumblob null, - b1 longblob null, - b2 mediumblob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set b0='QEB3L4H90L8M9GEJTO0XIPE' where id=1; -update noar ti set b0='QEB3L4H90L8M9GEJTO0XIPE' where id=1; -update noar tt set b1='R3R24PNNIG8N65EIDJT' where id=1; -update noar ti set b1='R3R24PNNIG8N65EIDJT' where id=1; -update noar tt set b2='AZWFBDKVQ0E' where id=1; -update noar ti set b2='AZWFBDKVQ0E' where id=1; -update noar tt set b0='A36IN830DMYRBZC' where id=2; -update noar ti set b0='A36IN830DMYRBZC' where id=2; -update noar tt set b1='QLM8JTATMNIES9XESY' where id=2; -update noar ti set b1='QLM8JTATMNIES9XESY' where id=2; -update noar tt set b2='C26XNJX2NPBZILAYVHGKRS' where id=2; -update noar ti set b2='C26XNJX2NPBZILAYVHGKRS' where id=2; -update noar tt set b0='QT49FWECT9BS7A05NJ50FR7PG' where id=3; -update noar ti set b0='QT49FWECT9BS7A05NJ50FR7PG' where id=3; -update noar tt set b1='ATVWFNDOQ1R8' where id=3; -update noar ti set b1='ATVWFNDOQ1R8' where id=3; -update noar tt set b2='V' where id=3; -update noar ti set b2='V' where id=3; -update noar tt set b0='LPQKBR4IPN82SYO6A13W' where id=4; -update noar ti set b0='LPQKBR4IPN82SYO6A13W' where id=4; -update noar tt set b1='S7GAZ1INVKTJ' where id=4; -update noar ti set b1='S7GAZ1INVKTJ' where id=4; -update noar tt set b2='UYGU0JI9AI' where id=4; -update noar ti set b2='UYGU0JI9AI' where id=4; -update noar tt set b0='84T1AHYMJ' where id=5; -update noar ti set b0='84T1AHYMJ' where id=5; -update noar tt set b1='XW15XWNAKM' where id=5; -update noar ti set b1='XW15XWNAKM' where id=5; -update noar tt set b2='TXCEOAXNJ0CBRD31PEK3ZV0' where id=5; -update noar ti set b2='TXCEOAXNJ0CBRD31PEK3ZV0' where id=5; -update noar tt set b0='CPYZNWJBWN0O6X4ZSSZ4TDFCZMPIQ' where id=6; -update noar ti set b0='CPYZNWJBWN0O6X4ZSSZ4TDFCZMPIQ' where id=6; -update noar tt set b1='X9IDKTBK074WCZ92NWS6' where id=6; -update noar ti set b1='X9IDKTBK074WCZ92NWS6' where id=6; -update noar tt set b2='OT3QWO2' where id=6; -update noar ti set b2='OT3QWO2' where id=6; -update noar tt set b0='K4Z0SRYW9X39WDR6M1XI31DIY0Q6' where id=7; -update noar ti set b0='K4Z0SRYW9X39WDR6M1XI31DIY0Q6' where id=7; -update noar tt set b1='9KJPW50GJF28FJXP60KWP4MNVIR' where id=7; -update noar ti set b1='9KJPW50GJF28FJXP60KWP4MNVIR' where id=7; -update noar tt set b2='NKTGTP6Z88L73QKR' where id=7; -update noar ti set b2='NKTGTP6Z88L73QKR' where id=7; -update noar tt set b0='7A01' where id=8; -update noar ti set b0='7A01' where id=8; -update noar tt set b1='XDXY5DJHJXXGJTXK' where id=8; -update noar ti set b1='XDXY5DJHJXXGJTXK' where id=8; -update noar tt set b2='3O' where id=8; -update noar ti set b2='3O' where id=8; -update noar tt set b0='0K0SZ6N1NJEZCTNXA0B8M41N2IKJ' where id=9; -update noar ti set b0='0K0SZ6N1NJEZCTNXA0B8M41N2IKJ' where id=9; -update noar tt set b1='LLM7F8LF' where id=9; -update noar ti set b1='LLM7F8LF' where id=9; -update noar tt set b2='DJBWF1AI23LB4IF1O81RLJXTP2V2S9U' where id=9; -update noar ti set b2='DJBWF1AI23LB4IF1O81RLJXTP2V2S9U' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - b0 mediumblob not null, - b1 longblob not null, - b2 mediumblob not null -) engine=tokudb; -insert into tt values (1,'','',''); -insert into tt values (2,'','',''); -insert into tt values (3,'','',''); -insert into tt values (4,'','',''); -insert into tt values (5,'','',''); -insert into tt values (6,'','',''); -insert into tt values (7,'','',''); -insert into tt values (8,'','',''); -insert into tt values (9,'','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set b0='S2GNWID48DVN' where id=1; -update noar ti set b0='S2GNWID48DVN' where id=1; -update noar tt set b1='OP7BN4PVZJ75AAFBMV1749B1OASG' where id=1; -update noar ti set b1='OP7BN4PVZJ75AAFBMV1749B1OASG' where id=1; -update noar tt set b2='6BWBHHCPT' where id=1; -update noar ti set b2='6BWBHHCPT' where id=1; -update noar tt set b0='87' where id=2; -update noar ti set b0='87' where id=2; -update noar tt set b1='R70I2AXYVJS' where id=2; -update noar ti set b1='R70I2AXYVJS' where id=2; -update noar tt set b2='S8X0XMCORSW5Z' where id=2; -update noar ti set b2='S8X0XMCORSW5Z' where id=2; -update noar tt set b0='Q8KA8L1ZO0OTCO1K0RTPAAS033GKXYX' where id=3; -update noar ti set b0='Q8KA8L1ZO0OTCO1K0RTPAAS033GKXYX' where id=3; -update noar tt set b1='DAJCJIW60JU1NUO0EHA7B2SWSPH2' where id=3; -update noar ti set b1='DAJCJIW60JU1NUO0EHA7B2SWSPH2' where id=3; -update noar tt set b2='56854R' where id=3; -update noar ti set b2='56854R' where id=3; -update noar tt set b0='MA64632MHVXC' where id=4; -update noar ti set b0='MA64632MHVXC' where id=4; -update noar tt set b1='8Z5DPNB' where id=4; -update noar ti set b1='8Z5DPNB' where id=4; -update noar tt set b2='IY44E3' where id=4; -update noar ti set b2='IY44E3' where id=4; -update noar tt set b0='5WE6S5' where id=5; -update noar ti set b0='5WE6S5' where id=5; -update noar tt set b1='NPX' where id=5; -update noar ti set b1='NPX' where id=5; -update noar tt set b2='1BAKLV9JYJFDZQHRIRKCZQ9EMAOEM32' where id=5; -update noar ti set b2='1BAKLV9JYJFDZQHRIRKCZQ9EMAOEM32' where id=5; -update noar tt set b0='JCY' where id=6; -update noar ti set b0='JCY' where id=6; -update noar tt set b1='LAHAK6KVY73SBNQHV7B2AC3UQ1LQY' where id=6; -update noar ti set b1='LAHAK6KVY73SBNQHV7B2AC3UQ1LQY' where id=6; -update noar tt set b2='1S7EMKKQHB9L' where id=6; -update noar ti set b2='1S7EMKKQHB9L' where id=6; -update noar tt set b0='G5QJOG8H2KTWKQA86R8ND14SHO' where id=7; -update noar ti set b0='G5QJOG8H2KTWKQA86R8ND14SHO' where id=7; -update noar tt set b1='CSXYJQZFL45CIIJ' where id=7; -update noar ti set b1='CSXYJQZFL45CIIJ' where id=7; -update noar tt set b2='RVLHD7DKC8KE6I5SA00T3XKF2SJQAIC' where id=7; -update noar ti set b2='RVLHD7DKC8KE6I5SA00T3XKF2SJQAIC' where id=7; -update noar tt set b0='645EV2FJ72QLO24F58RVKODYAHZ' where id=8; -update noar ti set b0='645EV2FJ72QLO24F58RVKODYAHZ' where id=8; -update noar tt set b1='TN' where id=8; -update noar ti set b1='TN' where id=8; -update noar tt set b2='9SD7ZYLA9JTKZ7KINPRLKQCEYBSLTHXM' where id=8; -update noar ti set b2='9SD7ZYLA9JTKZ7KINPRLKQCEYBSLTHXM' where id=8; -update noar tt set b0='VFZEHQZZ4MAKFGEOHZ4VTHT55' where id=9; -update noar ti set b0='VFZEHQZZ4MAKFGEOHZ4VTHT55' where id=9; -update noar tt set b1='GJI4MEN8D4554SKXD' where id=9; -update noar ti set b1='GJI4MEN8D4554SKXD' where id=9; -update noar tt set b2='PU2UXKL4TJ' where id=9; -update noar ti set b2='PU2UXKL4TJ' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - b0 mediumblob null, - b1 longblob null, - b2 longblob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set b0='QGP605SFDMORJVG1X4A8HFF47R1GMXU' where id=1; -update noar ti set b0='QGP605SFDMORJVG1X4A8HFF47R1GMXU' where id=1; -update noar tt set b1='RMND1JHVZFKU5MRUTY2X6KXD5NOVD4RP' where id=1; -update noar ti set b1='RMND1JHVZFKU5MRUTY2X6KXD5NOVD4RP' where id=1; -update noar tt set b2='XC5RRXD4UIJNYYVXO' where id=1; -update noar ti set b2='XC5RRXD4UIJNYYVXO' where id=1; -update noar tt set b0='L1D' where id=2; -update noar ti set b0='L1D' where id=2; -update noar tt set b1='3' where id=2; -update noar ti set b1='3' where id=2; -update noar tt set b2='J4FURTLO7LOHFI6WCDVX5' where id=2; -update noar ti set b2='J4FURTLO7LOHFI6WCDVX5' where id=2; -update noar tt set b0='CPKZBHO1AE8FOMDX6QOTAE' where id=3; -update noar ti set b0='CPKZBHO1AE8FOMDX6QOTAE' where id=3; -update noar tt set b1='Z0Z83M4987340NEB2637' where id=3; -update noar ti set b1='Z0Z83M4987340NEB2637' where id=3; -update noar tt set b2='0E9G11M74UYE3IE9EEDL' where id=3; -update noar ti set b2='0E9G11M74UYE3IE9EEDL' where id=3; -update noar tt set b0='6N99N5I' where id=4; -update noar ti set b0='6N99N5I' where id=4; -update noar tt set b1='SFLEK27' where id=4; -update noar ti set b1='SFLEK27' where id=4; -update noar tt set b2='9TNERZ7UCPFT09TXNB' where id=4; -update noar ti set b2='9TNERZ7UCPFT09TXNB' where id=4; -update noar tt set b0='WRRLSIN' where id=5; -update noar ti set b0='WRRLSIN' where id=5; -update noar tt set b1='20UD58MVO' where id=5; -update noar ti set b1='20UD58MVO' where id=5; -update noar tt set b2='O22I3AAI91GPOPJW5VE' where id=5; -update noar ti set b2='O22I3AAI91GPOPJW5VE' where id=5; -update noar tt set b0='48X5A0KD6HNRA0PYRO34' where id=6; -update noar ti set b0='48X5A0KD6HNRA0PYRO34' where id=6; -update noar tt set b1='RUVCMGC05CKVUTKGFH8NH1CF' where id=6; -update noar ti set b1='RUVCMGC05CKVUTKGFH8NH1CF' where id=6; -update noar tt set b2='ERCBW35363OYOBYREBDJRDCNTSGUB8N8' where id=6; -update noar ti set b2='ERCBW35363OYOBYREBDJRDCNTSGUB8N8' where id=6; -update noar tt set b0='PHGE90JKAE14EVI' where id=7; -update noar ti set b0='PHGE90JKAE14EVI' where id=7; -update noar tt set b1='PUX8' where id=7; -update noar ti set b1='PUX8' where id=7; -update noar tt set b2='U562PGF7JNY3XPDA7ONZ' where id=7; -update noar ti set b2='U562PGF7JNY3XPDA7ONZ' where id=7; -update noar tt set b0='LJKEHRQUK58A7KLG6JQGN' where id=8; -update noar ti set b0='LJKEHRQUK58A7KLG6JQGN' where id=8; -update noar tt set b1='3IK2Q' where id=8; -update noar ti set b1='3IK2Q' where id=8; -update noar tt set b2='9LUEWCJIP1KKV6JNZXRYOEZW7YUG8Z7M' where id=8; -update noar ti set b2='9LUEWCJIP1KKV6JNZXRYOEZW7YUG8Z7M' where id=8; -update noar tt set b0='GJY3JNVBRPI1GR44YATZTW12IVA5P' where id=9; -update noar ti set b0='GJY3JNVBRPI1GR44YATZTW12IVA5P' where id=9; -update noar tt set b1='QMKPYZAGVG89OSFIFPBXY74SRT7' where id=9; -update noar ti set b1='QMKPYZAGVG89OSFIFPBXY74SRT7' where id=9; -update noar tt set b2='3KJTATITCH2IG90S' where id=9; -update noar ti set b2='3KJTATITCH2IG90S' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - b0 mediumblob not null, - b1 longblob not null, - b2 longblob not null -) engine=tokudb; -insert into tt values (1,'','',''); -insert into tt values (2,'','',''); -insert into tt values (3,'','',''); -insert into tt values (4,'','',''); -insert into tt values (5,'','',''); -insert into tt values (6,'','',''); -insert into tt values (7,'','',''); -insert into tt values (8,'','',''); -insert into tt values (9,'','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set b0='XLSSZRO' where id=1; -update noar ti set b0='XLSSZRO' where id=1; -update noar tt set b1='8' where id=1; -update noar ti set b1='8' where id=1; -update noar tt set b2='S8Q4QRFZYUFT36KU4EO78UPHHTX1F9C' where id=1; -update noar ti set b2='S8Q4QRFZYUFT36KU4EO78UPHHTX1F9C' where id=1; -update noar tt set b0='MAZR66TUMVRHAVG' where id=2; -update noar ti set b0='MAZR66TUMVRHAVG' where id=2; -update noar tt set b1='P8L5Y36PX' where id=2; -update noar ti set b1='P8L5Y36PX' where id=2; -update noar tt set b2='R0QWA98' where id=2; -update noar ti set b2='R0QWA98' where id=2; -update noar tt set b0='5XFZQ2UIQV6KLOQC3IJSIO84J66' where id=3; -update noar ti set b0='5XFZQ2UIQV6KLOQC3IJSIO84J66' where id=3; -update noar tt set b1='NV0WHD413MZ5UG0Q' where id=3; -update noar ti set b1='NV0WHD413MZ5UG0Q' where id=3; -update noar tt set b2='Q58X4R1NKDN07' where id=3; -update noar ti set b2='Q58X4R1NKDN07' where id=3; -update noar tt set b0='6LPVBTEW8' where id=4; -update noar ti set b0='6LPVBTEW8' where id=4; -update noar tt set b1='3UD320' where id=4; -update noar ti set b1='3UD320' where id=4; -update noar tt set b2='Z5U' where id=4; -update noar ti set b2='Z5U' where id=4; -update noar tt set b0='ZZ0F8BTA696P7' where id=5; -update noar ti set b0='ZZ0F8BTA696P7' where id=5; -update noar tt set b1='ERZ63IQCGM5GJSM73PBNWQVV2TDR' where id=5; -update noar ti set b1='ERZ63IQCGM5GJSM73PBNWQVV2TDR' where id=5; -update noar tt set b2='EH0T8993' where id=5; -update noar ti set b2='EH0T8993' where id=5; -update noar tt set b0='2XHTI3RA3ONPUTYQSQJDBIU0D' where id=6; -update noar ti set b0='2XHTI3RA3ONPUTYQSQJDBIU0D' where id=6; -update noar tt set b1='HN82VINZLWBNA69TOPU' where id=6; -update noar ti set b1='HN82VINZLWBNA69TOPU' where id=6; -update noar tt set b2='EAHU7YT1YP91SYEIOI29F6188' where id=6; -update noar ti set b2='EAHU7YT1YP91SYEIOI29F6188' where id=6; -update noar tt set b0='7GXGKG54FPDRKXJ' where id=7; -update noar ti set b0='7GXGKG54FPDRKXJ' where id=7; -update noar tt set b1='8QOHIX9AJ3030XGQZAAYKE8VEGX9' where id=7; -update noar ti set b1='8QOHIX9AJ3030XGQZAAYKE8VEGX9' where id=7; -update noar tt set b2='W8VM84Q' where id=7; -update noar ti set b2='W8VM84Q' where id=7; -update noar tt set b0='EV' where id=8; -update noar ti set b0='EV' where id=8; -update noar tt set b1='8HG0P' where id=8; -update noar ti set b1='8HG0P' where id=8; -update noar tt set b2='6J8XB9T2VKOGZ64AX7TJEB' where id=8; -update noar ti set b2='6J8XB9T2VKOGZ64AX7TJEB' where id=8; -update noar tt set b0='ECQLJ96HLRXI51N43K0ROIOESK6U' where id=9; -update noar ti set b0='ECQLJ96HLRXI51N43K0ROIOESK6U' where id=9; -update noar tt set b1='DRML428XG4R67BX0FN2G9GU' where id=9; -update noar ti set b1='DRML428XG4R67BX0FN2G9GU' where id=9; -update noar tt set b2='EW2G0TEWQ8GBQCRIH0083N5O' where id=9; -update noar ti set b2='EW2G0TEWQ8GBQCRIH0083N5O' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - b0 mediumblob null, - b1 longblob null, - b2 text null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set b0='MAXMPF7TUV0MCI56H1YFPH5' where id=1; -update noar ti set b0='MAXMPF7TUV0MCI56H1YFPH5' where id=1; -update noar tt set b1='S5EKMHZJ8CLDJ9MNKIFDL2H550SLET' where id=1; -update noar ti set b1='S5EKMHZJ8CLDJ9MNKIFDL2H550SLET' where id=1; -update noar tt set b2='C8KWQI6XUM04JT7OVZ' where id=1; -update noar ti set b2='C8KWQI6XUM04JT7OVZ' where id=1; -update noar tt set b0='LQEYSD1WNZTEGU2H67LBR6FZ0TX68Q' where id=2; -update noar ti set b0='LQEYSD1WNZTEGU2H67LBR6FZ0TX68Q' where id=2; -update noar tt set b1='4UYF6' where id=2; -update noar ti set b1='4UYF6' where id=2; -update noar tt set b2='X4S07Q4BPNVLFI70RX3GZHT8' where id=2; -update noar ti set b2='X4S07Q4BPNVLFI70RX3GZHT8' where id=2; -update noar tt set b0='F6MZ9NJELPT20WGF06OJQEK' where id=3; -update noar ti set b0='F6MZ9NJELPT20WGF06OJQEK' where id=3; -update noar tt set b1='S5O0BME9J8LYOAUECGIE26ZJ5HT' where id=3; -update noar ti set b1='S5O0BME9J8LYOAUECGIE26ZJ5HT' where id=3; -update noar tt set b2='6X8PYH566263PDZCHLKSYGAD9BMZP1' where id=3; -update noar ti set b2='6X8PYH566263PDZCHLKSYGAD9BMZP1' where id=3; -update noar tt set b0='R4K3C5YXY' where id=4; -update noar ti set b0='R4K3C5YXY' where id=4; -update noar tt set b1='BZ3VDZCVF33MFAJID27VS98' where id=4; -update noar ti set b1='BZ3VDZCVF33MFAJID27VS98' where id=4; -update noar tt set b2='919DT0JYDNP83TDYULW7ADCKU0KONWI' where id=4; -update noar ti set b2='919DT0JYDNP83TDYULW7ADCKU0KONWI' where id=4; -update noar tt set b0='X4' where id=5; -update noar ti set b0='X4' where id=5; -update noar tt set b1='Y8EMEG189APTMZQZNOZC8BEWRE' where id=5; -update noar ti set b1='Y8EMEG189APTMZQZNOZC8BEWRE' where id=5; -update noar tt set b2='O8G8767UNH2EGP51EDKM73' where id=5; -update noar ti set b2='O8G8767UNH2EGP51EDKM73' where id=5; -update noar tt set b0='T' where id=6; -update noar ti set b0='T' where id=6; -update noar tt set b1='UCOOJ2XL5I' where id=6; -update noar ti set b1='UCOOJ2XL5I' where id=6; -update noar tt set b2='GOAHWCD3HAT' where id=6; -update noar ti set b2='GOAHWCD3HAT' where id=6; -update noar tt set b0='RLWOZRXGBWP4U' where id=7; -update noar ti set b0='RLWOZRXGBWP4U' where id=7; -update noar tt set b1='003TSEHK4X0IN' where id=7; -update noar ti set b1='003TSEHK4X0IN' where id=7; -update noar tt set b2='VVRVGIUJXC1AQ9VEOM6Z50H7GDA6GOMD' where id=7; -update noar ti set b2='VVRVGIUJXC1AQ9VEOM6Z50H7GDA6GOMD' where id=7; -update noar tt set b0='DUX0L' where id=8; -update noar ti set b0='DUX0L' where id=8; -update noar tt set b1='JAZY2' where id=8; -update noar ti set b1='JAZY2' where id=8; -update noar tt set b2='KOSRX1CYE3IYSQ52O4NXSQH' where id=8; -update noar ti set b2='KOSRX1CYE3IYSQ52O4NXSQH' where id=8; -update noar tt set b0='T' where id=9; -update noar ti set b0='T' where id=9; -update noar tt set b1='I1' where id=9; -update noar ti set b1='I1' where id=9; -update noar tt set b2='M6IJVN179XNMABFH77B7XYQRO3ZPK6PX' where id=9; -update noar ti set b2='M6IJVN179XNMABFH77B7XYQRO3ZPK6PX' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - b0 mediumblob not null, - b1 longblob not null, - b2 text not null -) engine=tokudb; -insert into tt values (1,'','',''); -insert into tt values (2,'','',''); -insert into tt values (3,'','',''); -insert into tt values (4,'','',''); -insert into tt values (5,'','',''); -insert into tt values (6,'','',''); -insert into tt values (7,'','',''); -insert into tt values (8,'','',''); -insert into tt values (9,'','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set b0='ARF2OX6I4NCXXOJABZ3CJ' where id=1; -update noar ti set b0='ARF2OX6I4NCXXOJABZ3CJ' where id=1; -update noar tt set b1='NWIX38X5JHKFVS2J3K0HSXSF' where id=1; -update noar ti set b1='NWIX38X5JHKFVS2J3K0HSXSF' where id=1; -update noar tt set b2='T3QSG3MSW4GR4KOY7' where id=1; -update noar ti set b2='T3QSG3MSW4GR4KOY7' where id=1; -update noar tt set b0='TB4KUIEG0P3RJE9O8TJFCK2A6SD66WPN' where id=2; -update noar ti set b0='TB4KUIEG0P3RJE9O8TJFCK2A6SD66WPN' where id=2; -update noar tt set b1='ZB38GFHO5G25' where id=2; -update noar ti set b1='ZB38GFHO5G25' where id=2; -update noar tt set b2='DOXK2H4BDYPQ' where id=2; -update noar ti set b2='DOXK2H4BDYPQ' where id=2; -update noar tt set b0='HI2INZC3LV' where id=3; -update noar ti set b0='HI2INZC3LV' where id=3; -update noar tt set b1='SEYL29YL09' where id=3; -update noar ti set b1='SEYL29YL09' where id=3; -update noar tt set b2='Q373ECQ6WFJYBTX33IHAW9VV1Z74Y' where id=3; -update noar ti set b2='Q373ECQ6WFJYBTX33IHAW9VV1Z74Y' where id=3; -update noar tt set b0='IOFI267CHU6NYW5XD' where id=4; -update noar ti set b0='IOFI267CHU6NYW5XD' where id=4; -update noar tt set b1='1AZDD78RDDKF' where id=4; -update noar ti set b1='1AZDD78RDDKF' where id=4; -update noar tt set b2='J5XXCDGGQ' where id=4; -update noar ti set b2='J5XXCDGGQ' where id=4; -update noar tt set b0='COVLBUULRWR9ET91497QKD1ARXA24FX' where id=5; -update noar ti set b0='COVLBUULRWR9ET91497QKD1ARXA24FX' where id=5; -update noar tt set b1='FO87IWC9NOFOQ7H7LMWBHQTL0DMRV' where id=5; -update noar ti set b1='FO87IWC9NOFOQ7H7LMWBHQTL0DMRV' where id=5; -update noar tt set b2='NGRXKNKH8F' where id=5; -update noar ti set b2='NGRXKNKH8F' where id=5; -update noar tt set b0='B14N1BBIV' where id=6; -update noar ti set b0='B14N1BBIV' where id=6; -update noar tt set b1='GQGLP8AILOUJX7KR' where id=6; -update noar ti set b1='GQGLP8AILOUJX7KR' where id=6; -update noar tt set b2='VEZ00YSQH91RP854VU6WYX3O6WV' where id=6; -update noar ti set b2='VEZ00YSQH91RP854VU6WYX3O6WV' where id=6; -update noar tt set b0='HGG16UAO75AXAWXNHN2BJH6NF8' where id=7; -update noar ti set b0='HGG16UAO75AXAWXNHN2BJH6NF8' where id=7; -update noar tt set b1='HE69FHE59A62' where id=7; -update noar ti set b1='HE69FHE59A62' where id=7; -update noar tt set b2='QGYJUGF4SH2FVAIOSIUH7RIHQGAYT4IF' where id=7; -update noar ti set b2='QGYJUGF4SH2FVAIOSIUH7RIHQGAYT4IF' where id=7; -update noar tt set b0='0QPCNEPH4HS3Y95056PYHD' where id=8; -update noar ti set b0='0QPCNEPH4HS3Y95056PYHD' where id=8; -update noar tt set b1='76VVLV9EUICA8VI14EWHOZ981S' where id=8; -update noar ti set b1='76VVLV9EUICA8VI14EWHOZ981S' where id=8; -update noar tt set b2='FP9GJ88TSSXHZ6IG78HZL8LOE' where id=8; -update noar ti set b2='FP9GJ88TSSXHZ6IG78HZL8LOE' where id=8; -update noar tt set b0='9MK5D1D120TUO930' where id=9; -update noar ti set b0='9MK5D1D120TUO930' where id=9; -update noar tt set b1='ZIKXPL7092J9X5HGM0M8K3JGJY7C7L5' where id=9; -update noar ti set b1='ZIKXPL7092J9X5HGM0M8K3JGJY7C7L5' where id=9; -update noar tt set b2='896QEL8BV8U' where id=9; -update noar ti set b2='896QEL8BV8U' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - b0 mediumblob null, - b1 text null, - b2 tinyblob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set b0='W0QJFVJ' where id=1; -update noar ti set b0='W0QJFVJ' where id=1; -update noar tt set b1='YM1BF3D6W4TQOFK93FGYD8' where id=1; -update noar ti set b1='YM1BF3D6W4TQOFK93FGYD8' where id=1; -update noar tt set b2='FB6EQWNT30U4J' where id=1; -update noar ti set b2='FB6EQWNT30U4J' where id=1; -update noar tt set b0='P6P5PTOVMOWYREA5WLZA6MLJE8' where id=2; -update noar ti set b0='P6P5PTOVMOWYREA5WLZA6MLJE8' where id=2; -update noar tt set b1='HF' where id=2; -update noar ti set b1='HF' where id=2; -update noar tt set b2='RX470Z0SCFQ8A73FP2QVNTAVCV' where id=2; -update noar ti set b2='RX470Z0SCFQ8A73FP2QVNTAVCV' where id=2; -update noar tt set b0='9LKU6FRQVHWPBCYT915SINB9PZT3' where id=3; -update noar ti set b0='9LKU6FRQVHWPBCYT915SINB9PZT3' where id=3; -update noar tt set b1='OI' where id=3; -update noar ti set b1='OI' where id=3; -update noar tt set b2='7RJ1V' where id=3; -update noar ti set b2='7RJ1V' where id=3; -update noar tt set b0='Z7F9J8HST42KX4CR9CF97J48' where id=4; -update noar ti set b0='Z7F9J8HST42KX4CR9CF97J48' where id=4; -update noar tt set b1='OJUDCULJW2F' where id=4; -update noar ti set b1='OJUDCULJW2F' where id=4; -update noar tt set b2='2YBFLBOTWURCB0WGXIZU5L' where id=4; -update noar ti set b2='2YBFLBOTWURCB0WGXIZU5L' where id=4; -update noar tt set b0='WM3J2U097STSKM6U6DW7UJZ82S3' where id=5; -update noar ti set b0='WM3J2U097STSKM6U6DW7UJZ82S3' where id=5; -update noar tt set b1='UPF2RESCJ328IRRF0JE4' where id=5; -update noar ti set b1='UPF2RESCJ328IRRF0JE4' where id=5; -update noar tt set b2='E51TQ8CWY2O9370GPECYGE' where id=5; -update noar ti set b2='E51TQ8CWY2O9370GPECYGE' where id=5; -update noar tt set b0='6B5D7SRKWBVRD' where id=6; -update noar ti set b0='6B5D7SRKWBVRD' where id=6; -update noar tt set b1='BOKNV90GOXK7LS9DE94JZ4E3H130' where id=6; -update noar ti set b1='BOKNV90GOXK7LS9DE94JZ4E3H130' where id=6; -update noar tt set b2='0973T91EOUKAJ21KTO3UVDG2138XDE0P' where id=6; -update noar ti set b2='0973T91EOUKAJ21KTO3UVDG2138XDE0P' where id=6; -update noar tt set b0='E5EJ5O2KSMY301OH82D7QTLINLLAXO8' where id=7; -update noar ti set b0='E5EJ5O2KSMY301OH82D7QTLINLLAXO8' where id=7; -update noar tt set b1='2OO1VI791DPW' where id=7; -update noar ti set b1='2OO1VI791DPW' where id=7; -update noar tt set b2='M4L3WADCIDTSKP0K4B' where id=7; -update noar ti set b2='M4L3WADCIDTSKP0K4B' where id=7; -update noar tt set b0='OHLFBDOPP8LDRSVGFUKYF' where id=8; -update noar ti set b0='OHLFBDOPP8LDRSVGFUKYF' where id=8; -update noar tt set b1='HNGAG0PI2P14' where id=8; -update noar ti set b1='HNGAG0PI2P14' where id=8; -update noar tt set b2='LHO4A4W1ABLSI8OFLHLJ7ITQ0AJS08L' where id=8; -update noar ti set b2='LHO4A4W1ABLSI8OFLHLJ7ITQ0AJS08L' where id=8; -update noar tt set b0='1L4U80T47PB7QH9UB8EELVY6ZDF' where id=9; -update noar ti set b0='1L4U80T47PB7QH9UB8EELVY6ZDF' where id=9; -update noar tt set b1='4D8M2CDJ3HGPO9I8Q1IOBCIA' where id=9; -update noar ti set b1='4D8M2CDJ3HGPO9I8Q1IOBCIA' where id=9; -update noar tt set b2='XC8FQAYG7ZIJ33Y9GFND89NEZ' where id=9; -update noar ti set b2='XC8FQAYG7ZIJ33Y9GFND89NEZ' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - b0 mediumblob not null, - b1 text not null, - b2 tinyblob not null -) engine=tokudb; -insert into tt values (1,'','',''); -insert into tt values (2,'','',''); -insert into tt values (3,'','',''); -insert into tt values (4,'','',''); -insert into tt values (5,'','',''); -insert into tt values (6,'','',''); -insert into tt values (7,'','',''); -insert into tt values (8,'','',''); -insert into tt values (9,'','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set b0='QGWQDDONQL5X25L8VNYUUXU' where id=1; -update noar ti set b0='QGWQDDONQL5X25L8VNYUUXU' where id=1; -update noar tt set b1='EBL959YUAGUP1EPG2520JJDFH7OTM7XZ' where id=1; -update noar ti set b1='EBL959YUAGUP1EPG2520JJDFH7OTM7XZ' where id=1; -update noar tt set b2='1M3E1RBQE4UQAEIYNL7ESD03J' where id=1; -update noar ti set b2='1M3E1RBQE4UQAEIYNL7ESD03J' where id=1; -update noar tt set b0='8TJ' where id=2; -update noar ti set b0='8TJ' where id=2; -update noar tt set b1='1Q3Y77861R3AA9GCECZZ6E9MDLZP' where id=2; -update noar ti set b1='1Q3Y77861R3AA9GCECZZ6E9MDLZP' where id=2; -update noar tt set b2='HUN0WK1W5DUDLPUOHW' where id=2; -update noar ti set b2='HUN0WK1W5DUDLPUOHW' where id=2; -update noar tt set b0='GEQB5UIWO18S2JCI4O8536FTLVF0CR9K' where id=3; -update noar ti set b0='GEQB5UIWO18S2JCI4O8536FTLVF0CR9K' where id=3; -update noar tt set b1='P1YBSPIH2ZRKBN6ES' where id=3; -update noar ti set b1='P1YBSPIH2ZRKBN6ES' where id=3; -update noar tt set b2='LB5AASRDMOTT2POT3HED081HMHY49YN' where id=3; -update noar ti set b2='LB5AASRDMOTT2POT3HED081HMHY49YN' where id=3; -update noar tt set b0='5DYIRSIV5ZXMTKHL90FJ3K23' where id=4; -update noar ti set b0='5DYIRSIV5ZXMTKHL90FJ3K23' where id=4; -update noar tt set b1='YRAOVCPOBGHZZXDJRBTE8ZOR9KLD2' where id=4; -update noar ti set b1='YRAOVCPOBGHZZXDJRBTE8ZOR9KLD2' where id=4; -update noar tt set b2='8S35YGWXSQY22PPWC8SR5V20' where id=4; -update noar ti set b2='8S35YGWXSQY22PPWC8SR5V20' where id=4; -update noar tt set b0='CM1P4AU' where id=5; -update noar ti set b0='CM1P4AU' where id=5; -update noar tt set b1='TFQBR6' where id=5; -update noar ti set b1='TFQBR6' where id=5; -update noar tt set b2='PBGEKEEWEJGA' where id=5; -update noar ti set b2='PBGEKEEWEJGA' where id=5; -update noar tt set b0='A1KAGH5DTD510F2AH7TI6Q6Z13LA27T' where id=6; -update noar ti set b0='A1KAGH5DTD510F2AH7TI6Q6Z13LA27T' where id=6; -update noar tt set b1='X8FD0OFUZ64GWTW2RY5JP' where id=6; -update noar ti set b1='X8FD0OFUZ64GWTW2RY5JP' where id=6; -update noar tt set b2='3P7CJ7PKQIDQZVSQUQIT6QC4EEIVX26' where id=6; -update noar ti set b2='3P7CJ7PKQIDQZVSQUQIT6QC4EEIVX26' where id=6; -update noar tt set b0='06136OVB9R' where id=7; -update noar ti set b0='06136OVB9R' where id=7; -update noar tt set b1='ECTIILXY4HY8NH11H' where id=7; -update noar ti set b1='ECTIILXY4HY8NH11H' where id=7; -update noar tt set b2='IC2P5EB' where id=7; -update noar ti set b2='IC2P5EB' where id=7; -update noar tt set b0='IGP12N09O1SVH' where id=8; -update noar ti set b0='IGP12N09O1SVH' where id=8; -update noar tt set b1='JRMWRF4CYVMU2IL2OJC331G8GC5' where id=8; -update noar ti set b1='JRMWRF4CYVMU2IL2OJC331G8GC5' where id=8; -update noar tt set b2='TRRJCPEGX3N13TX8' where id=8; -update noar ti set b2='TRRJCPEGX3N13TX8' where id=8; -update noar tt set b0='D563TB8' where id=9; -update noar ti set b0='D563TB8' where id=9; -update noar tt set b1='TNY' where id=9; -update noar ti set b1='TNY' where id=9; -update noar tt set b2='PBLTJHGO6UE' where id=9; -update noar ti set b2='PBLTJHGO6UE' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - b0 mediumblob null, - b1 text null, - b2 blob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set b0='OJYDB8MWAB63YTG0E1JHFAPSEN8O39LG' where id=1; -update noar ti set b0='OJYDB8MWAB63YTG0E1JHFAPSEN8O39LG' where id=1; -update noar tt set b1='WEGWFTFTVR8TW7SII56CXYW' where id=1; -update noar ti set b1='WEGWFTFTVR8TW7SII56CXYW' where id=1; -update noar tt set b2='Y3NR81I9IF0XUF0MHY4IGB36' where id=1; -update noar ti set b2='Y3NR81I9IF0XUF0MHY4IGB36' where id=1; -update noar tt set b0='D' where id=2; -update noar ti set b0='D' where id=2; -update noar tt set b1='EKVU3NT3N0VK0YT4WI4V208D6P' where id=2; -update noar ti set b1='EKVU3NT3N0VK0YT4WI4V208D6P' where id=2; -update noar tt set b2='7N7CWUOSN0U30AEWR23F3J25' where id=2; -update noar ti set b2='7N7CWUOSN0U30AEWR23F3J25' where id=2; -update noar tt set b0='0DFBT' where id=3; -update noar ti set b0='0DFBT' where id=3; -update noar tt set b1='49QW73ZWRP501FZ62RV932VXQ80ZZZ1T' where id=3; -update noar ti set b1='49QW73ZWRP501FZ62RV932VXQ80ZZZ1T' where id=3; -update noar tt set b2='ITX2UTXA4USKKPCN9W0REEUYJSMSPJ' where id=3; -update noar ti set b2='ITX2UTXA4USKKPCN9W0REEUYJSMSPJ' where id=3; -update noar tt set b0='XRYLIKBG' where id=4; -update noar ti set b0='XRYLIKBG' where id=4; -update noar tt set b1='D1L4AVKB3PY29' where id=4; -update noar ti set b1='D1L4AVKB3PY29' where id=4; -update noar tt set b2='DY6P9IFKZGHA0O9QSP7Y48E2K0O3' where id=4; -update noar ti set b2='DY6P9IFKZGHA0O9QSP7Y48E2K0O3' where id=4; -update noar tt set b0='G' where id=5; -update noar ti set b0='G' where id=5; -update noar tt set b1='30DKW9NKEH2PLYT67' where id=5; -update noar ti set b1='30DKW9NKEH2PLYT67' where id=5; -update noar tt set b2='UYLWN4VI7YOJDY98BYC06H' where id=5; -update noar ti set b2='UYLWN4VI7YOJDY98BYC06H' where id=5; -update noar tt set b0='HD5C5FO62R60MV32' where id=6; -update noar ti set b0='HD5C5FO62R60MV32' where id=6; -update noar tt set b1='JPMT3ORK6X6B' where id=6; -update noar ti set b1='JPMT3ORK6X6B' where id=6; -update noar tt set b2='JMCN7IEYYPX5A7P7AKU' where id=6; -update noar ti set b2='JMCN7IEYYPX5A7P7AKU' where id=6; -update noar tt set b0='6ZT2CAC6SPGFJT' where id=7; -update noar ti set b0='6ZT2CAC6SPGFJT' where id=7; -update noar tt set b1='VWXZURFZ05JU1O2NEQUKAPUV4' where id=7; -update noar ti set b1='VWXZURFZ05JU1O2NEQUKAPUV4' where id=7; -update noar tt set b2='ZZ8DDB6FQC50ER9KZMX285' where id=7; -update noar ti set b2='ZZ8DDB6FQC50ER9KZMX285' where id=7; -update noar tt set b0='DZJGBEZX6I7UPE9TA' where id=8; -update noar ti set b0='DZJGBEZX6I7UPE9TA' where id=8; -update noar tt set b1='L27Q' where id=8; -update noar ti set b1='L27Q' where id=8; -update noar tt set b2='7UHPKHZWJY4H0P8VP7U4NULH19R0M' where id=8; -update noar ti set b2='7UHPKHZWJY4H0P8VP7U4NULH19R0M' where id=8; -update noar tt set b0='C0G51KDVAZ2BKY03FAY4E' where id=9; -update noar ti set b0='C0G51KDVAZ2BKY03FAY4E' where id=9; -update noar tt set b1='M5PCQ9U0G1VSKJ5RHL4HENT' where id=9; -update noar ti set b1='M5PCQ9U0G1VSKJ5RHL4HENT' where id=9; -update noar tt set b2='7PG5GFY0BINV4A' where id=9; -update noar ti set b2='7PG5GFY0BINV4A' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - b0 mediumblob not null, - b1 text not null, - b2 blob not null -) engine=tokudb; -insert into tt values (1,'','',''); -insert into tt values (2,'','',''); -insert into tt values (3,'','',''); -insert into tt values (4,'','',''); -insert into tt values (5,'','',''); -insert into tt values (6,'','',''); -insert into tt values (7,'','',''); -insert into tt values (8,'','',''); -insert into tt values (9,'','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set b0='WPLDP7C9S5COMWMF8L0UUJ' where id=1; -update noar ti set b0='WPLDP7C9S5COMWMF8L0UUJ' where id=1; -update noar tt set b1='S4QEXH0J9T' where id=1; -update noar ti set b1='S4QEXH0J9T' where id=1; -update noar tt set b2='ADA4K9BMN6Y7IR98WL' where id=1; -update noar ti set b2='ADA4K9BMN6Y7IR98WL' where id=1; -update noar tt set b0='1NN67JASBVRJ' where id=2; -update noar ti set b0='1NN67JASBVRJ' where id=2; -update noar tt set b1='DJP9MTVJMNF7M6DP4BRCKGT53' where id=2; -update noar ti set b1='DJP9MTVJMNF7M6DP4BRCKGT53' where id=2; -update noar tt set b2='X3YFQC62W25L2OMCZISXI2WP' where id=2; -update noar ti set b2='X3YFQC62W25L2OMCZISXI2WP' where id=2; -update noar tt set b0='KLCDLI5TTTM3TLT6PULCOHW' where id=3; -update noar ti set b0='KLCDLI5TTTM3TLT6PULCOHW' where id=3; -update noar tt set b1='8A4KA8V4DWXNK2UCMSNXDNZ0XIUMCK' where id=3; -update noar ti set b1='8A4KA8V4DWXNK2UCMSNXDNZ0XIUMCK' where id=3; -update noar tt set b2='WSKRRRSTW1VW4UJ9XBNUX3M' where id=3; -update noar ti set b2='WSKRRRSTW1VW4UJ9XBNUX3M' where id=3; -update noar tt set b0='ZDMKXU8JYR891BTOIZ050Y6EDB' where id=4; -update noar ti set b0='ZDMKXU8JYR891BTOIZ050Y6EDB' where id=4; -update noar tt set b1='J4XUPSONCZZDEI6IFW' where id=4; -update noar ti set b1='J4XUPSONCZZDEI6IFW' where id=4; -update noar tt set b2='U9WKYA6' where id=4; -update noar ti set b2='U9WKYA6' where id=4; -update noar tt set b0='G66' where id=5; -update noar ti set b0='G66' where id=5; -update noar tt set b1='KIFJN1NZGZDY5MVDRJQ' where id=5; -update noar ti set b1='KIFJN1NZGZDY5MVDRJQ' where id=5; -update noar tt set b2='QI2KOTI' where id=5; -update noar ti set b2='QI2KOTI' where id=5; -update noar tt set b0='6LI7VNF5DE7J4IBMOSKCR9693XCVVRE' where id=6; -update noar ti set b0='6LI7VNF5DE7J4IBMOSKCR9693XCVVRE' where id=6; -update noar tt set b1='JLIJWW1ENFYVXUX0O4FOW' where id=6; -update noar ti set b1='JLIJWW1ENFYVXUX0O4FOW' where id=6; -update noar tt set b2='7IML6T4324046OECV9J5RP0KRAL0' where id=6; -update noar ti set b2='7IML6T4324046OECV9J5RP0KRAL0' where id=6; -update noar tt set b0='FQVFWHN88E9XZ9KT' where id=7; -update noar ti set b0='FQVFWHN88E9XZ9KT' where id=7; -update noar tt set b1='ZCORTFD9TO' where id=7; -update noar ti set b1='ZCORTFD9TO' where id=7; -update noar tt set b2='NZWVZV5M7UEGZE412K48' where id=7; -update noar ti set b2='NZWVZV5M7UEGZE412K48' where id=7; -update noar tt set b0='14ZWGXXU02SJGP1R7ETFU5' where id=8; -update noar ti set b0='14ZWGXXU02SJGP1R7ETFU5' where id=8; -update noar tt set b1='MW9IVFHIBZDAYGC1F2KIV0E' where id=8; -update noar ti set b1='MW9IVFHIBZDAYGC1F2KIV0E' where id=8; -update noar tt set b2='OY' where id=8; -update noar ti set b2='OY' where id=8; -update noar tt set b0='ZCE1Z1' where id=9; -update noar ti set b0='ZCE1Z1' where id=9; -update noar tt set b1='ID6VRJF66OU8SN60EY' where id=9; -update noar ti set b1='ID6VRJF66OU8SN60EY' where id=9; -update noar tt set b2='DM39LR37P6XB7KQXY' where id=9; -update noar ti set b2='DM39LR37P6XB7KQXY' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - b0 mediumblob null, - b1 text null, - b2 mediumblob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set b0='MO26TDAU' where id=1; -update noar ti set b0='MO26TDAU' where id=1; -update noar tt set b1='OLY4PJ9DUHJRJ4MAT1WYDO8T03R69' where id=1; -update noar ti set b1='OLY4PJ9DUHJRJ4MAT1WYDO8T03R69' where id=1; -update noar tt set b2='M6JJZ08IG2MO99XAETZ70RM' where id=1; -update noar ti set b2='M6JJZ08IG2MO99XAETZ70RM' where id=1; -update noar tt set b0='B77CGU2C3' where id=2; -update noar ti set b0='B77CGU2C3' where id=2; -update noar tt set b1='9FGMC9UV' where id=2; -update noar ti set b1='9FGMC9UV' where id=2; -update noar tt set b2='PJXELC' where id=2; -update noar ti set b2='PJXELC' where id=2; -update noar tt set b0='HXGLD' where id=3; -update noar ti set b0='HXGLD' where id=3; -update noar tt set b1='C36IY80' where id=3; -update noar ti set b1='C36IY80' where id=3; -update noar tt set b2='PJPIRG2MO' where id=3; -update noar ti set b2='PJPIRG2MO' where id=3; -update noar tt set b0='7QZ1UONC' where id=4; -update noar ti set b0='7QZ1UONC' where id=4; -update noar tt set b1='DKSZ13EZV0H86XZG5E10U' where id=4; -update noar ti set b1='DKSZ13EZV0H86XZG5E10U' where id=4; -update noar tt set b2='WAX1MPIF2N2SXAI3NX' where id=4; -update noar ti set b2='WAX1MPIF2N2SXAI3NX' where id=4; -update noar tt set b0='P' where id=5; -update noar ti set b0='P' where id=5; -update noar tt set b1='WCNF845CIL32MU11UUST7' where id=5; -update noar ti set b1='WCNF845CIL32MU11UUST7' where id=5; -update noar tt set b2='7DPY2HIGM' where id=5; -update noar ti set b2='7DPY2HIGM' where id=5; -update noar tt set b0='XC9REDW3OFHXI08CWH4Q' where id=6; -update noar ti set b0='XC9REDW3OFHXI08CWH4Q' where id=6; -update noar tt set b1='R5N915M1Q0QI4EOP7' where id=6; -update noar ti set b1='R5N915M1Q0QI4EOP7' where id=6; -update noar tt set b2='TTK8KG5CCCN71SWMIK' where id=6; -update noar ti set b2='TTK8KG5CCCN71SWMIK' where id=6; -update noar tt set b0='RJPKUXAVTW252NE' where id=7; -update noar ti set b0='RJPKUXAVTW252NE' where id=7; -update noar tt set b1='HWCQBI7B965LGCS8UU3A' where id=7; -update noar ti set b1='HWCQBI7B965LGCS8UU3A' where id=7; -update noar tt set b2='G3P7O9PG4LD5Z8IMLTVT0K5E6' where id=7; -update noar ti set b2='G3P7O9PG4LD5Z8IMLTVT0K5E6' where id=7; -update noar tt set b0='QOBKPBE6VF45GYCNC' where id=8; -update noar ti set b0='QOBKPBE6VF45GYCNC' where id=8; -update noar tt set b1='A7MG33' where id=8; -update noar ti set b1='A7MG33' where id=8; -update noar tt set b2='6YTS36DH0ZTJ1JVF3PD07T968A' where id=8; -update noar ti set b2='6YTS36DH0ZTJ1JVF3PD07T968A' where id=8; -update noar tt set b0='9HQ3TSV' where id=9; -update noar ti set b0='9HQ3TSV' where id=9; -update noar tt set b1='VM82BLAHGL5T97UYA' where id=9; -update noar ti set b1='VM82BLAHGL5T97UYA' where id=9; -update noar tt set b2='BV7B20OH71VL3A7J' where id=9; -update noar ti set b2='BV7B20OH71VL3A7J' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - b0 mediumblob not null, - b1 text not null, - b2 mediumblob not null -) engine=tokudb; -insert into tt values (1,'','',''); -insert into tt values (2,'','',''); -insert into tt values (3,'','',''); -insert into tt values (4,'','',''); -insert into tt values (5,'','',''); -insert into tt values (6,'','',''); -insert into tt values (7,'','',''); -insert into tt values (8,'','',''); -insert into tt values (9,'','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set b0='SQSFIG54XSZ1E' where id=1; -update noar ti set b0='SQSFIG54XSZ1E' where id=1; -update noar tt set b1='6BXXLC212IQEQ' where id=1; -update noar ti set b1='6BXXLC212IQEQ' where id=1; -update noar tt set b2='GYVTR' where id=1; -update noar ti set b2='GYVTR' where id=1; -update noar tt set b0='LMF3IIR5HK225OXPP' where id=2; -update noar ti set b0='LMF3IIR5HK225OXPP' where id=2; -update noar tt set b1='RR0F06FJBW' where id=2; -update noar ti set b1='RR0F06FJBW' where id=2; -update noar tt set b2='4AMQY64RN6LUME5TYAB519Q' where id=2; -update noar ti set b2='4AMQY64RN6LUME5TYAB519Q' where id=2; -update noar tt set b0='RYQU2MQ' where id=3; -update noar ti set b0='RYQU2MQ' where id=3; -update noar tt set b1='Z3T' where id=3; -update noar ti set b1='Z3T' where id=3; -update noar tt set b2='FEKQEZ1V3AXGTRZ' where id=3; -update noar ti set b2='FEKQEZ1V3AXGTRZ' where id=3; -update noar tt set b0='J0FM9KOZUR7RO7JRSOVL0UJ' where id=4; -update noar ti set b0='J0FM9KOZUR7RO7JRSOVL0UJ' where id=4; -update noar tt set b1='24QUOXMREDZ5AS2BMQHYMW' where id=4; -update noar ti set b1='24QUOXMREDZ5AS2BMQHYMW' where id=4; -update noar tt set b2='ECOGBNK9IPH0WQIXW7' where id=4; -update noar ti set b2='ECOGBNK9IPH0WQIXW7' where id=4; -update noar tt set b0='OCY6M8H3GGQ57T8HJG5YF9' where id=5; -update noar ti set b0='OCY6M8H3GGQ57T8HJG5YF9' where id=5; -update noar tt set b1='9J3GLLT7QGGNL5' where id=5; -update noar ti set b1='9J3GLLT7QGGNL5' where id=5; -update noar tt set b2='O' where id=5; -update noar ti set b2='O' where id=5; -update noar tt set b0='38G39L714NT2F6TJ2' where id=6; -update noar ti set b0='38G39L714NT2F6TJ2' where id=6; -update noar tt set b1='Y5O1P9JY' where id=6; -update noar ti set b1='Y5O1P9JY' where id=6; -update noar tt set b2='HPKLJ3M2LLA24J93N6AL5D' where id=6; -update noar ti set b2='HPKLJ3M2LLA24J93N6AL5D' where id=6; -update noar tt set b0='84FQUWELNZGNWUHXWCB4N4YQ5S' where id=7; -update noar ti set b0='84FQUWELNZGNWUHXWCB4N4YQ5S' where id=7; -update noar tt set b1='QNE3' where id=7; -update noar ti set b1='QNE3' where id=7; -update noar tt set b2='A4VSP8T3SSXQ' where id=7; -update noar ti set b2='A4VSP8T3SSXQ' where id=7; -update noar tt set b0='EXFL3VSS21ZYCLRW2UW4OVYYT' where id=8; -update noar ti set b0='EXFL3VSS21ZYCLRW2UW4OVYYT' where id=8; -update noar tt set b1='HCAHS6X6M92VVSC7P2' where id=8; -update noar ti set b1='HCAHS6X6M92VVSC7P2' where id=8; -update noar tt set b2='J8TWW74' where id=8; -update noar ti set b2='J8TWW74' where id=8; -update noar tt set b0='9LXGXJ4ERVU7D9Z' where id=9; -update noar ti set b0='9LXGXJ4ERVU7D9Z' where id=9; -update noar tt set b1='E' where id=9; -update noar ti set b1='E' where id=9; -update noar tt set b2='4STJCY7EQ74FUNJHA9C' where id=9; -update noar ti set b2='4STJCY7EQ74FUNJHA9C' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - b0 mediumblob null, - b1 text null, - b2 longblob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set b0='MEY' where id=1; -update noar ti set b0='MEY' where id=1; -update noar tt set b1='WO8KREUBEIEZLLN7BOSUO05FXSTMGX' where id=1; -update noar ti set b1='WO8KREUBEIEZLLN7BOSUO05FXSTMGX' where id=1; -update noar tt set b2='BHEXCELMKQZQ2FI9XCIZ' where id=1; -update noar ti set b2='BHEXCELMKQZQ2FI9XCIZ' where id=1; -update noar tt set b0='GR35XAX7DH0IVGCZXE' where id=2; -update noar ti set b0='GR35XAX7DH0IVGCZXE' where id=2; -update noar tt set b1='KIZHZ1' where id=2; -update noar ti set b1='KIZHZ1' where id=2; -update noar tt set b2='JVIUV8JDRF7LSREK43L7YEA8R0P' where id=2; -update noar ti set b2='JVIUV8JDRF7LSREK43L7YEA8R0P' where id=2; -update noar tt set b0='DCVA0MAQ' where id=3; -update noar ti set b0='DCVA0MAQ' where id=3; -update noar tt set b1='VSIV4KCPQVJN' where id=3; -update noar ti set b1='VSIV4KCPQVJN' where id=3; -update noar tt set b2='NURPT' where id=3; -update noar ti set b2='NURPT' where id=3; -update noar tt set b0='CBX256Z5QSS8TDK547BLJ8USDF' where id=4; -update noar ti set b0='CBX256Z5QSS8TDK547BLJ8USDF' where id=4; -update noar tt set b1='W' where id=4; -update noar ti set b1='W' where id=4; -update noar tt set b2='PHL73DJ8MIFYBXS8GQN00' where id=4; -update noar ti set b2='PHL73DJ8MIFYBXS8GQN00' where id=4; -update noar tt set b0='PDAPO' where id=5; -update noar ti set b0='PDAPO' where id=5; -update noar tt set b1='75BOFPWVTS0SX9H13U' where id=5; -update noar ti set b1='75BOFPWVTS0SX9H13U' where id=5; -update noar tt set b2='U' where id=5; -update noar ti set b2='U' where id=5; -update noar tt set b0='6TTBI9QBDL8YC0BQ' where id=6; -update noar ti set b0='6TTBI9QBDL8YC0BQ' where id=6; -update noar tt set b1='R0RFXKIK8Q229G84HCG65GPFYHYPV4' where id=6; -update noar ti set b1='R0RFXKIK8Q229G84HCG65GPFYHYPV4' where id=6; -update noar tt set b2='YLVD17U4C2J9OQWTEPB3LURN0XL0Y3G' where id=6; -update noar ti set b2='YLVD17U4C2J9OQWTEPB3LURN0XL0Y3G' where id=6; -update noar tt set b0='LK1DQH34TFB0CK5BA1I' where id=7; -update noar ti set b0='LK1DQH34TFB0CK5BA1I' where id=7; -update noar tt set b1='NQ3HCK' where id=7; -update noar ti set b1='NQ3HCK' where id=7; -update noar tt set b2='KNDF1DKQRH5PO92' where id=7; -update noar ti set b2='KNDF1DKQRH5PO92' where id=7; -update noar tt set b0='UEMG' where id=8; -update noar ti set b0='UEMG' where id=8; -update noar tt set b1='8CXCKX5NRK9NTZ6IQE5R' where id=8; -update noar ti set b1='8CXCKX5NRK9NTZ6IQE5R' where id=8; -update noar tt set b2='ENVP2Z6ADCZ7N' where id=8; -update noar ti set b2='ENVP2Z6ADCZ7N' where id=8; -update noar tt set b0='TH4AGQYIC2VTL' where id=9; -update noar ti set b0='TH4AGQYIC2VTL' where id=9; -update noar tt set b1='NO3XHO0U' where id=9; -update noar ti set b1='NO3XHO0U' where id=9; -update noar tt set b2='FOS0YAIHPEJ4GXN47ME6S2I34KDCRF5' where id=9; -update noar ti set b2='FOS0YAIHPEJ4GXN47ME6S2I34KDCRF5' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - b0 mediumblob not null, - b1 text not null, - b2 longblob not null -) engine=tokudb; -insert into tt values (1,'','',''); -insert into tt values (2,'','',''); -insert into tt values (3,'','',''); -insert into tt values (4,'','',''); -insert into tt values (5,'','',''); -insert into tt values (6,'','',''); -insert into tt values (7,'','',''); -insert into tt values (8,'','',''); -insert into tt values (9,'','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set b0='47GCPQAS8Z' where id=1; -update noar ti set b0='47GCPQAS8Z' where id=1; -update noar tt set b1='RUUX6W0XPRGR1T' where id=1; -update noar ti set b1='RUUX6W0XPRGR1T' where id=1; -update noar tt set b2='O1OLWMDZE4N4KQTQ6V5SSQQ' where id=1; -update noar ti set b2='O1OLWMDZE4N4KQTQ6V5SSQQ' where id=1; -update noar tt set b0='5' where id=2; -update noar ti set b0='5' where id=2; -update noar tt set b1='2C16JT7MNVVYOOFGMCUH4H17UV2' where id=2; -update noar ti set b1='2C16JT7MNVVYOOFGMCUH4H17UV2' where id=2; -update noar tt set b2='HX4ZXAAAPJRGAEPNYGW' where id=2; -update noar ti set b2='HX4ZXAAAPJRGAEPNYGW' where id=2; -update noar tt set b0='UOEWA5QXDC' where id=3; -update noar ti set b0='UOEWA5QXDC' where id=3; -update noar tt set b1='Z6XUNYQK6CCEMFY1' where id=3; -update noar ti set b1='Z6XUNYQK6CCEMFY1' where id=3; -update noar tt set b2='VYBYWHFYAH8NZQSYSKBMI0X6T4V5PB' where id=3; -update noar ti set b2='VYBYWHFYAH8NZQSYSKBMI0X6T4V5PB' where id=3; -update noar tt set b0='RC28XF0SK9PK0ADQ' where id=4; -update noar ti set b0='RC28XF0SK9PK0ADQ' where id=4; -update noar tt set b1='Z3MJHR9Y' where id=4; -update noar ti set b1='Z3MJHR9Y' where id=4; -update noar tt set b2='PGVG9TYDNRXL4PHSNE2' where id=4; -update noar ti set b2='PGVG9TYDNRXL4PHSNE2' where id=4; -update noar tt set b0='Z8HXG3YMG81O' where id=5; -update noar ti set b0='Z8HXG3YMG81O' where id=5; -update noar tt set b1='HANBKEQB' where id=5; -update noar ti set b1='HANBKEQB' where id=5; -update noar tt set b2='WET8XPK0U46O04F2PWLYO' where id=5; -update noar ti set b2='WET8XPK0U46O04F2PWLYO' where id=5; -update noar tt set b0='1ZDVLUAH7SA3Y3C' where id=6; -update noar ti set b0='1ZDVLUAH7SA3Y3C' where id=6; -update noar tt set b1='7UXYUP8DL' where id=6; -update noar ti set b1='7UXYUP8DL' where id=6; -update noar tt set b2='43IEZTC48NRTT' where id=6; -update noar ti set b2='43IEZTC48NRTT' where id=6; -update noar tt set b0='CN0U6MFEDO87QXBTFV' where id=7; -update noar ti set b0='CN0U6MFEDO87QXBTFV' where id=7; -update noar tt set b1='12IR' where id=7; -update noar ti set b1='12IR' where id=7; -update noar tt set b2='AJ781Y60NOULD5D4EB6TRJ' where id=7; -update noar ti set b2='AJ781Y60NOULD5D4EB6TRJ' where id=7; -update noar tt set b0='F2R0ODT21WYB7UTUMMAX9QUT' where id=8; -update noar ti set b0='F2R0ODT21WYB7UTUMMAX9QUT' where id=8; -update noar tt set b1='UX96QNPUSYZ5N6' where id=8; -update noar ti set b1='UX96QNPUSYZ5N6' where id=8; -update noar tt set b2='KJPX7L' where id=8; -update noar ti set b2='KJPX7L' where id=8; -update noar tt set b0='HS9MW0WYQW1SOPDL9AFQ09RM' where id=9; -update noar ti set b0='HS9MW0WYQW1SOPDL9AFQ09RM' where id=9; -update noar tt set b1='2BN1M4X3C5151D634XWJ0F' where id=9; -update noar ti set b1='2BN1M4X3C5151D634XWJ0F' where id=9; -update noar tt set b2='3TF8SXGPMCDCUYXQVXFKYA1NX' where id=9; -update noar ti set b2='3TF8SXGPMCDCUYXQVXFKYA1NX' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - b0 mediumblob null, - b1 text null, - b2 text null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set b0='MV18' where id=1; -update noar ti set b0='MV18' where id=1; -update noar tt set b1='BBFXPWAZSE6R3KFIMM2KPW5' where id=1; -update noar ti set b1='BBFXPWAZSE6R3KFIMM2KPW5' where id=1; -update noar tt set b2='KM0ZBQMDVQBIZS80IHP2C' where id=1; -update noar ti set b2='KM0ZBQMDVQBIZS80IHP2C' where id=1; -update noar tt set b0='DRFLPZY511AXR8X722' where id=2; -update noar ti set b0='DRFLPZY511AXR8X722' where id=2; -update noar tt set b1='UZYAY9KJN6GN05N2Q4N15TK1FIGTQOK' where id=2; -update noar ti set b1='UZYAY9KJN6GN05N2Q4N15TK1FIGTQOK' where id=2; -update noar tt set b2='IW2GAUW4F83SDJML05MJNHVJLEH' where id=2; -update noar ti set b2='IW2GAUW4F83SDJML05MJNHVJLEH' where id=2; -update noar tt set b0='D06OK45UXZ52A1DTP7M1' where id=3; -update noar ti set b0='D06OK45UXZ52A1DTP7M1' where id=3; -update noar tt set b1='U' where id=3; -update noar ti set b1='U' where id=3; -update noar tt set b2='MOTJ7AML' where id=3; -update noar ti set b2='MOTJ7AML' where id=3; -update noar tt set b0='NJFIU7G28CN' where id=4; -update noar ti set b0='NJFIU7G28CN' where id=4; -update noar tt set b1='2RCIF4W' where id=4; -update noar ti set b1='2RCIF4W' where id=4; -update noar tt set b2='REBFM32' where id=4; -update noar ti set b2='REBFM32' where id=4; -update noar tt set b0='IVQMCZ9EFCI8BGMJ9Y8QVQVM4UGBAOD' where id=5; -update noar ti set b0='IVQMCZ9EFCI8BGMJ9Y8QVQVM4UGBAOD' where id=5; -update noar tt set b1='E5' where id=5; -update noar ti set b1='E5' where id=5; -update noar tt set b2='RL0RVKCO6UTR9B3TJ' where id=5; -update noar ti set b2='RL0RVKCO6UTR9B3TJ' where id=5; -update noar tt set b0='G' where id=6; -update noar ti set b0='G' where id=6; -update noar tt set b1='ZF' where id=6; -update noar ti set b1='ZF' where id=6; -update noar tt set b2='9M58ZXGHXIQZKMUH1ZJMM6BDQX4I' where id=6; -update noar ti set b2='9M58ZXGHXIQZKMUH1ZJMM6BDQX4I' where id=6; -update noar tt set b0='4NUHJK9Q4UBU9776I0ILL7OADOM33G' where id=7; -update noar ti set b0='4NUHJK9Q4UBU9776I0ILL7OADOM33G' where id=7; -update noar tt set b1='I4VIYZXAEF3RKS9PGRHQUZWMS5RNLT' where id=7; -update noar ti set b1='I4VIYZXAEF3RKS9PGRHQUZWMS5RNLT' where id=7; -update noar tt set b2='ER0OE7' where id=7; -update noar ti set b2='ER0OE7' where id=7; -update noar tt set b0='ZME8Q' where id=8; -update noar ti set b0='ZME8Q' where id=8; -update noar tt set b1='ESLK1' where id=8; -update noar ti set b1='ESLK1' where id=8; -update noar tt set b2='CAGDTXCI2MJ' where id=8; -update noar ti set b2='CAGDTXCI2MJ' where id=8; -update noar tt set b0='WEDXNTS76L0J55CIWBHJ7' where id=9; -update noar ti set b0='WEDXNTS76L0J55CIWBHJ7' where id=9; -update noar tt set b1='CDYAACCVDNH' where id=9; -update noar ti set b1='CDYAACCVDNH' where id=9; -update noar tt set b2='CREPE4E97E' where id=9; -update noar ti set b2='CREPE4E97E' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - b0 mediumblob not null, - b1 text not null, - b2 text not null -) engine=tokudb; -insert into tt values (1,'','',''); -insert into tt values (2,'','',''); -insert into tt values (3,'','',''); -insert into tt values (4,'','',''); -insert into tt values (5,'','',''); -insert into tt values (6,'','',''); -insert into tt values (7,'','',''); -insert into tt values (8,'','',''); -insert into tt values (9,'','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set b0='QC8Y8WMF2K31HRB8K1BABCIFEK2O7ZT1' where id=1; -update noar ti set b0='QC8Y8WMF2K31HRB8K1BABCIFEK2O7ZT1' where id=1; -update noar tt set b1='FJHT4U2MD3E001UC840968924PVD' where id=1; -update noar ti set b1='FJHT4U2MD3E001UC840968924PVD' where id=1; -update noar tt set b2='7VVN5F4TJKXVG' where id=1; -update noar ti set b2='7VVN5F4TJKXVG' where id=1; -update noar tt set b0='KAO8X7OYFBI2WHB3UQN47J1M4J' where id=2; -update noar ti set b0='KAO8X7OYFBI2WHB3UQN47J1M4J' where id=2; -update noar tt set b1='VSRFYUKV8VT46VWAV' where id=2; -update noar ti set b1='VSRFYUKV8VT46VWAV' where id=2; -update noar tt set b2='F1FXID9F' where id=2; -update noar ti set b2='F1FXID9F' where id=2; -update noar tt set b0='C' where id=3; -update noar ti set b0='C' where id=3; -update noar tt set b1='LYQLD3MOJHFTLYQJZTW7D' where id=3; -update noar ti set b1='LYQLD3MOJHFTLYQJZTW7D' where id=3; -update noar tt set b2='AOR38IUWZXLUIQIV1' where id=3; -update noar ti set b2='AOR38IUWZXLUIQIV1' where id=3; -update noar tt set b0='0MPJ71PDA0Z6663Q' where id=4; -update noar ti set b0='0MPJ71PDA0Z6663Q' where id=4; -update noar tt set b1='P2AD5S' where id=4; -update noar ti set b1='P2AD5S' where id=4; -update noar tt set b2='TZQ4LHVDN2UFLZ0P' where id=4; -update noar ti set b2='TZQ4LHVDN2UFLZ0P' where id=4; -update noar tt set b0='CSGGA6LH3FDSKN9AXVMDQ1JJ314AB2BJ' where id=5; -update noar ti set b0='CSGGA6LH3FDSKN9AXVMDQ1JJ314AB2BJ' where id=5; -update noar tt set b1='XK9P4BMU6RC424CNBO0POJL8' where id=5; -update noar ti set b1='XK9P4BMU6RC424CNBO0POJL8' where id=5; -update noar tt set b2='DALCTHKLU5RT3P' where id=5; -update noar ti set b2='DALCTHKLU5RT3P' where id=5; -update noar tt set b0='DFZUWI09WO' where id=6; -update noar ti set b0='DFZUWI09WO' where id=6; -update noar tt set b1='PQDNREGTFT0A' where id=6; -update noar ti set b1='PQDNREGTFT0A' where id=6; -update noar tt set b2='TUI2HHEO4H1IIFWTQA3' where id=6; -update noar ti set b2='TUI2HHEO4H1IIFWTQA3' where id=6; -update noar tt set b0='77' where id=7; -update noar ti set b0='77' where id=7; -update noar tt set b1='NGZNLFE318H8VHKLU1Y8X6RCJI0L25B' where id=7; -update noar ti set b1='NGZNLFE318H8VHKLU1Y8X6RCJI0L25B' where id=7; -update noar tt set b2='L1MV' where id=7; -update noar ti set b2='L1MV' where id=7; -update noar tt set b0='EABNWWR5W8YP94LBL8A4S4BLEBCYCVI2' where id=8; -update noar ti set b0='EABNWWR5W8YP94LBL8A4S4BLEBCYCVI2' where id=8; -update noar tt set b1='E8IGWGKYLN6RH275FMCHYDSTW' where id=8; -update noar ti set b1='E8IGWGKYLN6RH275FMCHYDSTW' where id=8; -update noar tt set b2='HTRDE033P5NLT0ZXTCZ' where id=8; -update noar ti set b2='HTRDE033P5NLT0ZXTCZ' where id=8; -update noar tt set b0='GODI9RMP6' where id=9; -update noar ti set b0='GODI9RMP6' where id=9; -update noar tt set b1='XZRQT0PIFZHJI23FG' where id=9; -update noar ti set b1='XZRQT0PIFZHJI23FG' where id=9; -update noar tt set b2='XOWPY1BNL679JDHKBKY8G95EG3' where id=9; -update noar ti set b2='XOWPY1BNL679JDHKBKY8G95EG3' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - b0 longblob null, - b1 tinyblob null, - b2 tinyblob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set b0='AO1Q5U9DUO' where id=1; -update noar ti set b0='AO1Q5U9DUO' where id=1; -update noar tt set b1='2V80' where id=1; -update noar ti set b1='2V80' where id=1; -update noar tt set b2='H2DJRSWGQE31N4DCMGJG4E5' where id=1; -update noar ti set b2='H2DJRSWGQE31N4DCMGJG4E5' where id=1; -update noar tt set b0='C1EB85YC9F4E2A06H7NZJA' where id=2; -update noar ti set b0='C1EB85YC9F4E2A06H7NZJA' where id=2; -update noar tt set b1='0C95J97UME2LZXM' where id=2; -update noar ti set b1='0C95J97UME2LZXM' where id=2; -update noar tt set b2='DYAMC3LJ8JB7IIDXZWR7' where id=2; -update noar ti set b2='DYAMC3LJ8JB7IIDXZWR7' where id=2; -update noar tt set b0='8JGN0M2QJ6' where id=3; -update noar ti set b0='8JGN0M2QJ6' where id=3; -update noar tt set b1='1ZSV3C' where id=3; -update noar ti set b1='1ZSV3C' where id=3; -update noar tt set b2='WLXCGC4INPCHJIGZF04D53ROXCD' where id=3; -update noar ti set b2='WLXCGC4INPCHJIGZF04D53ROXCD' where id=3; -update noar tt set b0='BOBD4YMJPPVU5JUXOQ5Z7YDO' where id=4; -update noar ti set b0='BOBD4YMJPPVU5JUXOQ5Z7YDO' where id=4; -update noar tt set b1='TY3749KD8QI3IP16CXJH5' where id=4; -update noar ti set b1='TY3749KD8QI3IP16CXJH5' where id=4; -update noar tt set b2='8GH9PU1C7PSZB3BJ' where id=4; -update noar ti set b2='8GH9PU1C7PSZB3BJ' where id=4; -update noar tt set b0='7YA56URK0CR5VMXI8R7VATMWUVNT3BAN' where id=5; -update noar ti set b0='7YA56URK0CR5VMXI8R7VATMWUVNT3BAN' where id=5; -update noar tt set b1='5WJFTNMHH' where id=5; -update noar ti set b1='5WJFTNMHH' where id=5; -update noar tt set b2='IYX' where id=5; -update noar ti set b2='IYX' where id=5; -update noar tt set b0='5X0O7GYS66631NP8066L7EVYCMEZHCY' where id=6; -update noar ti set b0='5X0O7GYS66631NP8066L7EVYCMEZHCY' where id=6; -update noar tt set b1='4BLUDKH4CCCHU8E4K2F' where id=6; -update noar ti set b1='4BLUDKH4CCCHU8E4K2F' where id=6; -update noar tt set b2='B4IR' where id=6; -update noar ti set b2='B4IR' where id=6; -update noar tt set b0='7CYJF6U7DCZA3F9AXO9J' where id=7; -update noar ti set b0='7CYJF6U7DCZA3F9AXO9J' where id=7; -update noar tt set b1='Y0VE4DUYQWYVBLZ4SGAY' where id=7; -update noar ti set b1='Y0VE4DUYQWYVBLZ4SGAY' where id=7; -update noar tt set b2='W58MCELG8SR963AIJVXD8Q2U' where id=7; -update noar ti set b2='W58MCELG8SR963AIJVXD8Q2U' where id=7; -update noar tt set b0='CP8E8FM2XFYNHUP0K7YOFVVYEIZB0' where id=8; -update noar ti set b0='CP8E8FM2XFYNHUP0K7YOFVVYEIZB0' where id=8; -update noar tt set b1='ASQQ1O' where id=8; -update noar ti set b1='ASQQ1O' where id=8; -update noar tt set b2='KC528T2F40C5G8QMK75OM98T7B' where id=8; -update noar ti set b2='KC528T2F40C5G8QMK75OM98T7B' where id=8; -update noar tt set b0='BY1DWN2568BVQ860EZ12F5E7Q94MQ' where id=9; -update noar ti set b0='BY1DWN2568BVQ860EZ12F5E7Q94MQ' where id=9; -update noar tt set b1='OVKD6KYWHN' where id=9; -update noar ti set b1='OVKD6KYWHN' where id=9; -update noar tt set b2='J4NLTRTR2L8BCN0TX0A7OBQJXSDU4QMH' where id=9; -update noar ti set b2='J4NLTRTR2L8BCN0TX0A7OBQJXSDU4QMH' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - b0 longblob not null, - b1 tinyblob not null, - b2 tinyblob not null -) engine=tokudb; -insert into tt values (1,'','',''); -insert into tt values (2,'','',''); -insert into tt values (3,'','',''); -insert into tt values (4,'','',''); -insert into tt values (5,'','',''); -insert into tt values (6,'','',''); -insert into tt values (7,'','',''); -insert into tt values (8,'','',''); -insert into tt values (9,'','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set b0='9K9' where id=1; -update noar ti set b0='9K9' where id=1; -update noar tt set b1='9DLH0DX2RCO' where id=1; -update noar ti set b1='9DLH0DX2RCO' where id=1; -update noar tt set b2='E' where id=1; -update noar ti set b2='E' where id=1; -update noar tt set b0='5FHW3MDI9WW4VAQJIQK9FS8WY0JHP3' where id=2; -update noar ti set b0='5FHW3MDI9WW4VAQJIQK9FS8WY0JHP3' where id=2; -update noar tt set b1='RWZ' where id=2; -update noar ti set b1='RWZ' where id=2; -update noar tt set b2='C1ZTZJF2THA1C' where id=2; -update noar ti set b2='C1ZTZJF2THA1C' where id=2; -update noar tt set b0='NHRAJ' where id=3; -update noar ti set b0='NHRAJ' where id=3; -update noar tt set b1='M9IFM79TMCWCV8IZZUSFUY0ST' where id=3; -update noar ti set b1='M9IFM79TMCWCV8IZZUSFUY0ST' where id=3; -update noar tt set b2='4F9H7I1K' where id=3; -update noar ti set b2='4F9H7I1K' where id=3; -update noar tt set b0='9COAH4ZYBHBLYZUSWTCYKL9KHX30SN' where id=4; -update noar ti set b0='9COAH4ZYBHBLYZUSWTCYKL9KHX30SN' where id=4; -update noar tt set b1='AVA5JQE5VTV76I1B18JKYWEPLMXK' where id=4; -update noar ti set b1='AVA5JQE5VTV76I1B18JKYWEPLMXK' where id=4; -update noar tt set b2='YPC1JFEN' where id=4; -update noar ti set b2='YPC1JFEN' where id=4; -update noar tt set b0='6R6FQ7OGEW5ZYPGRCGB8KIXVMJ' where id=5; -update noar ti set b0='6R6FQ7OGEW5ZYPGRCGB8KIXVMJ' where id=5; -update noar tt set b1='900SKJ4S' where id=5; -update noar ti set b1='900SKJ4S' where id=5; -update noar tt set b2='L8LUY297DXC6DMH24GQA5LDZFLDGY' where id=5; -update noar ti set b2='L8LUY297DXC6DMH24GQA5LDZFLDGY' where id=5; -update noar tt set b0='15B2E38A9PWIR2ZT5E02' where id=6; -update noar ti set b0='15B2E38A9PWIR2ZT5E02' where id=6; -update noar tt set b1='K3EQT3HVFNCOKX7KVEBPVV0623DC' where id=6; -update noar ti set b1='K3EQT3HVFNCOKX7KVEBPVV0623DC' where id=6; -update noar tt set b2='O1YW52AJF' where id=6; -update noar ti set b2='O1YW52AJF' where id=6; -update noar tt set b0='MPDOF2HY4G706LF4FTSSFCH4UAJ' where id=7; -update noar ti set b0='MPDOF2HY4G706LF4FTSSFCH4UAJ' where id=7; -update noar tt set b1='PGH2B44H' where id=7; -update noar ti set b1='PGH2B44H' where id=7; -update noar tt set b2='ZWM5D8B' where id=7; -update noar ti set b2='ZWM5D8B' where id=7; -update noar tt set b0='PMI296281Z1MZNC9FEZQI' where id=8; -update noar ti set b0='PMI296281Z1MZNC9FEZQI' where id=8; -update noar tt set b1='WUTL8LBBT4E6L5OCQ7' where id=8; -update noar ti set b1='WUTL8LBBT4E6L5OCQ7' where id=8; -update noar tt set b2='81633JX' where id=8; -update noar ti set b2='81633JX' where id=8; -update noar tt set b0='4C6HTXWGN3W8R9HE' where id=9; -update noar ti set b0='4C6HTXWGN3W8R9HE' where id=9; -update noar tt set b1='VCEE6B2423S' where id=9; -update noar ti set b1='VCEE6B2423S' where id=9; -update noar tt set b2='OHT2X' where id=9; -update noar ti set b2='OHT2X' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - b0 longblob null, - b1 tinyblob null, - b2 blob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set b0='SAM56HN8BG7QD80G8' where id=1; -update noar ti set b0='SAM56HN8BG7QD80G8' where id=1; -update noar tt set b1='R15XSOH2OSR4YAFE9ODY' where id=1; -update noar ti set b1='R15XSOH2OSR4YAFE9ODY' where id=1; -update noar tt set b2='0IQ6JWUO9BB6KZOJPV08P4XNHKK71U' where id=1; -update noar ti set b2='0IQ6JWUO9BB6KZOJPV08P4XNHKK71U' where id=1; -update noar tt set b0='LZ9T40P9' where id=2; -update noar ti set b0='LZ9T40P9' where id=2; -update noar tt set b1='D3SMXZ78I4S4K7WOMHW5T4C9R4WS9V' where id=2; -update noar ti set b1='D3SMXZ78I4S4K7WOMHW5T4C9R4WS9V' where id=2; -update noar tt set b2='8NPZFBYPQ3YSV6FO' where id=2; -update noar ti set b2='8NPZFBYPQ3YSV6FO' where id=2; -update noar tt set b0='TC5IHPDFRQWI3HKXLI9HC' where id=3; -update noar ti set b0='TC5IHPDFRQWI3HKXLI9HC' where id=3; -update noar tt set b1='7K2L0X8U0OVOIEDSMW86X' where id=3; -update noar ti set b1='7K2L0X8U0OVOIEDSMW86X' where id=3; -update noar tt set b2='W6HVMDLNMEFES8CRS' where id=3; -update noar ti set b2='W6HVMDLNMEFES8CRS' where id=3; -update noar tt set b0='OT53A2L1E5PVH' where id=4; -update noar ti set b0='OT53A2L1E5PVH' where id=4; -update noar tt set b1='5PUH44ZFM' where id=4; -update noar ti set b1='5PUH44ZFM' where id=4; -update noar tt set b2='VSEGOVEEN2O' where id=4; -update noar ti set b2='VSEGOVEEN2O' where id=4; -update noar tt set b0='45CGK5WD3YGL06' where id=5; -update noar ti set b0='45CGK5WD3YGL06' where id=5; -update noar tt set b1='BBYC0LCVOI5' where id=5; -update noar ti set b1='BBYC0LCVOI5' where id=5; -update noar tt set b2='AM151X28L4TXXXN7TU746X0MNZPM' where id=5; -update noar ti set b2='AM151X28L4TXXXN7TU746X0MNZPM' where id=5; -update noar tt set b0='1Y6' where id=6; -update noar ti set b0='1Y6' where id=6; -update noar tt set b1='HZ633R2Q9C' where id=6; -update noar ti set b1='HZ633R2Q9C' where id=6; -update noar tt set b2='8LMDSC8SR5JAR2OGHOMPEY5L5NBL6' where id=6; -update noar ti set b2='8LMDSC8SR5JAR2OGHOMPEY5L5NBL6' where id=6; -update noar tt set b0='PLPHB' where id=7; -update noar ti set b0='PLPHB' where id=7; -update noar tt set b1='1W8KXWQ7J2QK4N1JXGS2I6FCOIN' where id=7; -update noar ti set b1='1W8KXWQ7J2QK4N1JXGS2I6FCOIN' where id=7; -update noar tt set b2='GH8F6FJ29MY' where id=7; -update noar ti set b2='GH8F6FJ29MY' where id=7; -update noar tt set b0='O4CI9KUCGCW0V3JF8NBHXXMM51' where id=8; -update noar ti set b0='O4CI9KUCGCW0V3JF8NBHXXMM51' where id=8; -update noar tt set b1='OOVHQN9YMUXP0EDWNBCN7S8V' where id=8; -update noar ti set b1='OOVHQN9YMUXP0EDWNBCN7S8V' where id=8; -update noar tt set b2='LMMRQYAYYLWUS6' where id=8; -update noar ti set b2='LMMRQYAYYLWUS6' where id=8; -update noar tt set b0='YPG2VBTQGS' where id=9; -update noar ti set b0='YPG2VBTQGS' where id=9; -update noar tt set b1='O1WJ4JTW3AA0USFZNPCHB6IXNL' where id=9; -update noar ti set b1='O1WJ4JTW3AA0USFZNPCHB6IXNL' where id=9; -update noar tt set b2='1WQCD2FF' where id=9; -update noar ti set b2='1WQCD2FF' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - b0 longblob not null, - b1 tinyblob not null, - b2 blob not null -) engine=tokudb; -insert into tt values (1,'','',''); -insert into tt values (2,'','',''); -insert into tt values (3,'','',''); -insert into tt values (4,'','',''); -insert into tt values (5,'','',''); -insert into tt values (6,'','',''); -insert into tt values (7,'','',''); -insert into tt values (8,'','',''); -insert into tt values (9,'','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set b0='6S8VG4MAQA84CDN6UBD3J' where id=1; -update noar ti set b0='6S8VG4MAQA84CDN6UBD3J' where id=1; -update noar tt set b1='YFPFW55NM' where id=1; -update noar ti set b1='YFPFW55NM' where id=1; -update noar tt set b2='I9VI569FANSAE3XRWT2' where id=1; -update noar ti set b2='I9VI569FANSAE3XRWT2' where id=1; -update noar tt set b0='S' where id=2; -update noar ti set b0='S' where id=2; -update noar tt set b1='7K0MJV3C8P693M778O5V6K9ERG' where id=2; -update noar ti set b1='7K0MJV3C8P693M778O5V6K9ERG' where id=2; -update noar tt set b2='22IIESGLKV655X6ILO3RF5H1F' where id=2; -update noar ti set b2='22IIESGLKV655X6ILO3RF5H1F' where id=2; -update noar tt set b0='4SPA43Y1P4AAX4SNX8RPQ8QN9' where id=3; -update noar ti set b0='4SPA43Y1P4AAX4SNX8RPQ8QN9' where id=3; -update noar tt set b1='6' where id=3; -update noar ti set b1='6' where id=3; -update noar tt set b2='PAISUR28Z3FJXQWQ8SGP' where id=3; -update noar ti set b2='PAISUR28Z3FJXQWQ8SGP' where id=3; -update noar tt set b0='BOG3GB1AVT4PW' where id=4; -update noar ti set b0='BOG3GB1AVT4PW' where id=4; -update noar tt set b1='N8RWDFKEN4KP3OJQH' where id=4; -update noar ti set b1='N8RWDFKEN4KP3OJQH' where id=4; -update noar tt set b2='PNX3VV' where id=4; -update noar ti set b2='PNX3VV' where id=4; -update noar tt set b0='M' where id=5; -update noar ti set b0='M' where id=5; -update noar tt set b1='NXHRY6WIRK8DTGKKT7J2ASZ5I3F' where id=5; -update noar ti set b1='NXHRY6WIRK8DTGKKT7J2ASZ5I3F' where id=5; -update noar tt set b2='C0OMGNA85F' where id=5; -update noar ti set b2='C0OMGNA85F' where id=5; -update noar tt set b0='X7E9PF5W81VPECZ5U4G' where id=6; -update noar ti set b0='X7E9PF5W81VPECZ5U4G' where id=6; -update noar tt set b1='NM4038656KF77157N6' where id=6; -update noar ti set b1='NM4038656KF77157N6' where id=6; -update noar tt set b2='UX1VR87WWOZ50LBTIJE70M' where id=6; -update noar ti set b2='UX1VR87WWOZ50LBTIJE70M' where id=6; -update noar tt set b0='E0E5E9YUWLF' where id=7; -update noar ti set b0='E0E5E9YUWLF' where id=7; -update noar tt set b1='7WZJMK' where id=7; -update noar ti set b1='7WZJMK' where id=7; -update noar tt set b2='OO95XV6PACZH79YCRK' where id=7; -update noar ti set b2='OO95XV6PACZH79YCRK' where id=7; -update noar tt set b0='ZHDPAYP57BF29STXJYI' where id=8; -update noar ti set b0='ZHDPAYP57BF29STXJYI' where id=8; -update noar tt set b1='YRPQ10EMVCC0FM837T' where id=8; -update noar ti set b1='YRPQ10EMVCC0FM837T' where id=8; -update noar tt set b2='M6549RAU5ZTZ92W' where id=8; -update noar ti set b2='M6549RAU5ZTZ92W' where id=8; -update noar tt set b0='XWGAR890BTT2E2IF5PXSIFA' where id=9; -update noar ti set b0='XWGAR890BTT2E2IF5PXSIFA' where id=9; -update noar tt set b1='M3J35HC6BFQ1K900' where id=9; -update noar ti set b1='M3J35HC6BFQ1K900' where id=9; -update noar tt set b2='MPCC44697O40O' where id=9; -update noar ti set b2='MPCC44697O40O' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - b0 longblob null, - b1 tinyblob null, - b2 mediumblob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set b0='2QQUGS60TPE' where id=1; -update noar ti set b0='2QQUGS60TPE' where id=1; -update noar tt set b1='OD' where id=1; -update noar ti set b1='OD' where id=1; -update noar tt set b2='2QIIC55' where id=1; -update noar ti set b2='2QIIC55' where id=1; -update noar tt set b0='MRJLC2Z' where id=2; -update noar ti set b0='MRJLC2Z' where id=2; -update noar tt set b1='FUKJ2' where id=2; -update noar ti set b1='FUKJ2' where id=2; -update noar tt set b2='MC4M' where id=2; -update noar ti set b2='MC4M' where id=2; -update noar tt set b0='L2TXBHOASM14BLBVH3F92HX' where id=3; -update noar ti set b0='L2TXBHOASM14BLBVH3F92HX' where id=3; -update noar tt set b1='KRC' where id=3; -update noar ti set b1='KRC' where id=3; -update noar tt set b2='CH905BEE0YZBWE5UQTEY' where id=3; -update noar ti set b2='CH905BEE0YZBWE5UQTEY' where id=3; -update noar tt set b0='1K9V2T0HARGXHT7W' where id=4; -update noar ti set b0='1K9V2T0HARGXHT7W' where id=4; -update noar tt set b1='6RD3VD1E' where id=4; -update noar ti set b1='6RD3VD1E' where id=4; -update noar tt set b2='S0Q5NQFY7EC1DSNKR80' where id=4; -update noar ti set b2='S0Q5NQFY7EC1DSNKR80' where id=4; -update noar tt set b0='6S' where id=5; -update noar ti set b0='6S' where id=5; -update noar tt set b1='H7TXMBG5AQKYX0MEQ6S7DBS' where id=5; -update noar ti set b1='H7TXMBG5AQKYX0MEQ6S7DBS' where id=5; -update noar tt set b2='T6VF1E1J7WPOJGV22G2HN6R11WSRMU6' where id=5; -update noar ti set b2='T6VF1E1J7WPOJGV22G2HN6R11WSRMU6' where id=5; -update noar tt set b0='TSEVF' where id=6; -update noar ti set b0='TSEVF' where id=6; -update noar tt set b1='28JC0KDPQP0SIKD849TFGOGXM' where id=6; -update noar ti set b1='28JC0KDPQP0SIKD849TFGOGXM' where id=6; -update noar tt set b2='ZTSGA0RR1PYFAXAA1RJ7WZ' where id=6; -update noar ti set b2='ZTSGA0RR1PYFAXAA1RJ7WZ' where id=6; -update noar tt set b0='1RC5JR1NWDGQ2' where id=7; -update noar ti set b0='1RC5JR1NWDGQ2' where id=7; -update noar tt set b1='IO8V0YARYH1YLO6DXX' where id=7; -update noar ti set b1='IO8V0YARYH1YLO6DXX' where id=7; -update noar tt set b2='M50' where id=7; -update noar ti set b2='M50' where id=7; -update noar tt set b0='TCV53HBRVIRICVOH4N6K7ZIDW' where id=8; -update noar ti set b0='TCV53HBRVIRICVOH4N6K7ZIDW' where id=8; -update noar tt set b1='5AYQP99305I' where id=8; -update noar ti set b1='5AYQP99305I' where id=8; -update noar tt set b2='N0R323A7CLL1SL4YRG3' where id=8; -update noar ti set b2='N0R323A7CLL1SL4YRG3' where id=8; -update noar tt set b0='F0JZW67YWB7' where id=9; -update noar ti set b0='F0JZW67YWB7' where id=9; -update noar tt set b1='1ENYGRL9' where id=9; -update noar ti set b1='1ENYGRL9' where id=9; -update noar tt set b2='C6ECU7ZXZ528I26WI' where id=9; -update noar ti set b2='C6ECU7ZXZ528I26WI' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - b0 longblob not null, - b1 tinyblob not null, - b2 mediumblob not null -) engine=tokudb; -insert into tt values (1,'','',''); -insert into tt values (2,'','',''); -insert into tt values (3,'','',''); -insert into tt values (4,'','',''); -insert into tt values (5,'','',''); -insert into tt values (6,'','',''); -insert into tt values (7,'','',''); -insert into tt values (8,'','',''); -insert into tt values (9,'','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set b0='T8NSVY70MOJ2ETMHEP0N' where id=1; -update noar ti set b0='T8NSVY70MOJ2ETMHEP0N' where id=1; -update noar tt set b1='1Y5N5CVJRI590G' where id=1; -update noar ti set b1='1Y5N5CVJRI590G' where id=1; -update noar tt set b2='GHM8OHW' where id=1; -update noar ti set b2='GHM8OHW' where id=1; -update noar tt set b0='6S74ZO0I' where id=2; -update noar ti set b0='6S74ZO0I' where id=2; -update noar tt set b1='SB0ZH000IQ18NN0AH6P6ESHKCUC8E2AH' where id=2; -update noar ti set b1='SB0ZH000IQ18NN0AH6P6ESHKCUC8E2AH' where id=2; -update noar tt set b2='S1RD2FS' where id=2; -update noar ti set b2='S1RD2FS' where id=2; -update noar tt set b0='9ALNRHQEF5XLPH6' where id=3; -update noar ti set b0='9ALNRHQEF5XLPH6' where id=3; -update noar tt set b1='9O76H' where id=3; -update noar ti set b1='9O76H' where id=3; -update noar tt set b2='ABX4J7DTW7WBWC' where id=3; -update noar ti set b2='ABX4J7DTW7WBWC' where id=3; -update noar tt set b0='2FK59KPVTTB2C73ADSD5KA4C' where id=4; -update noar ti set b0='2FK59KPVTTB2C73ADSD5KA4C' where id=4; -update noar tt set b1='PMQFFW' where id=4; -update noar ti set b1='PMQFFW' where id=4; -update noar tt set b2='JR2JK8MNHH6J6VED29M0V17QZIV' where id=4; -update noar ti set b2='JR2JK8MNHH6J6VED29M0V17QZIV' where id=4; -update noar tt set b0='J0J949UY7HY6PL' where id=5; -update noar ti set b0='J0J949UY7HY6PL' where id=5; -update noar tt set b1='GEG9TMW8R0' where id=5; -update noar ti set b1='GEG9TMW8R0' where id=5; -update noar tt set b2='TPIYH7UZ0YRZUE6BCX' where id=5; -update noar ti set b2='TPIYH7UZ0YRZUE6BCX' where id=5; -update noar tt set b0='5IDJCQP4QIS9INXHNM' where id=6; -update noar ti set b0='5IDJCQP4QIS9INXHNM' where id=6; -update noar tt set b1='2' where id=6; -update noar ti set b1='2' where id=6; -update noar tt set b2='EG0LA5PCMA4CF7' where id=6; -update noar ti set b2='EG0LA5PCMA4CF7' where id=6; -update noar tt set b0='ZR2R6V753JDT3RJ' where id=7; -update noar ti set b0='ZR2R6V753JDT3RJ' where id=7; -update noar tt set b1='ECOV20CT003622M2SC37POU1US' where id=7; -update noar ti set b1='ECOV20CT003622M2SC37POU1US' where id=7; -update noar tt set b2='KD4GA34DSP' where id=7; -update noar ti set b2='KD4GA34DSP' where id=7; -update noar tt set b0='Z6DMP9' where id=8; -update noar ti set b0='Z6DMP9' where id=8; -update noar tt set b1='GEA9LTKCUY355LRH' where id=8; -update noar ti set b1='GEA9LTKCUY355LRH' where id=8; -update noar tt set b2='WDOW8PNXTWDZZ8GP1NPL5R26LIS9' where id=8; -update noar ti set b2='WDOW8PNXTWDZZ8GP1NPL5R26LIS9' where id=8; -update noar tt set b0='5LL1EAPYJ61KWOKKBPHZ2KA' where id=9; -update noar ti set b0='5LL1EAPYJ61KWOKKBPHZ2KA' where id=9; -update noar tt set b1='3H9IOO' where id=9; -update noar ti set b1='3H9IOO' where id=9; -update noar tt set b2='DDVWEORJ0YX7RJWSGOR' where id=9; -update noar ti set b2='DDVWEORJ0YX7RJWSGOR' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - b0 longblob null, - b1 tinyblob null, - b2 longblob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set b0='0BWCLHYO278EPHVO6URJ24' where id=1; -update noar ti set b0='0BWCLHYO278EPHVO6URJ24' where id=1; -update noar tt set b1='8AK0YL81MIJWH2RMMNWCYHYY1GYVG' where id=1; -update noar ti set b1='8AK0YL81MIJWH2RMMNWCYHYY1GYVG' where id=1; -update noar tt set b2='01SK8MRA9HBWHBEYJQ2RPL' where id=1; -update noar ti set b2='01SK8MRA9HBWHBEYJQ2RPL' where id=1; -update noar tt set b0='IV2RDYXOMOR877BW9R' where id=2; -update noar ti set b0='IV2RDYXOMOR877BW9R' where id=2; -update noar tt set b1='PN76KOCRHYZXJB2MNE' where id=2; -update noar ti set b1='PN76KOCRHYZXJB2MNE' where id=2; -update noar tt set b2='4' where id=2; -update noar ti set b2='4' where id=2; -update noar tt set b0='TJVXQKNV544V6I1EMB' where id=3; -update noar ti set b0='TJVXQKNV544V6I1EMB' where id=3; -update noar tt set b1='3NVX1LKP89REHKNQYNIW' where id=3; -update noar ti set b1='3NVX1LKP89REHKNQYNIW' where id=3; -update noar tt set b2='SIBATQUYCPQUKIVGL32L42Q2U7OSRPZ7' where id=3; -update noar ti set b2='SIBATQUYCPQUKIVGL32L42Q2U7OSRPZ7' where id=3; -update noar tt set b0='YGNWP03WN4OV' where id=4; -update noar ti set b0='YGNWP03WN4OV' where id=4; -update noar tt set b1='KBBY3SLSIO3H9VW760427DML07APJ' where id=4; -update noar ti set b1='KBBY3SLSIO3H9VW760427DML07APJ' where id=4; -update noar tt set b2='I4C6STI5EZPIUCB47' where id=4; -update noar ti set b2='I4C6STI5EZPIUCB47' where id=4; -update noar tt set b0='6HMYTMBOHK7ZG7HI' where id=5; -update noar ti set b0='6HMYTMBOHK7ZG7HI' where id=5; -update noar tt set b1='2YBE6W2LISOLJ2TOL83ANX' where id=5; -update noar ti set b1='2YBE6W2LISOLJ2TOL83ANX' where id=5; -update noar tt set b2='N4LBGJIRV5UJUC6ZU0N5UIDH' where id=5; -update noar ti set b2='N4LBGJIRV5UJUC6ZU0N5UIDH' where id=5; -update noar tt set b0='KYIJLX' where id=6; -update noar ti set b0='KYIJLX' where id=6; -update noar tt set b1='2EG3NAKA7XLIJZZ0GENA5KPY' where id=6; -update noar ti set b1='2EG3NAKA7XLIJZZ0GENA5KPY' where id=6; -update noar tt set b2='WCBFPTLC7' where id=6; -update noar ti set b2='WCBFPTLC7' where id=6; -update noar tt set b0='A5Y9ZQM0G5AHPM2JMEDKLMBWCCRI' where id=7; -update noar ti set b0='A5Y9ZQM0G5AHPM2JMEDKLMBWCCRI' where id=7; -update noar tt set b1='Q7M' where id=7; -update noar ti set b1='Q7M' where id=7; -update noar tt set b2='GC1P5' where id=7; -update noar ti set b2='GC1P5' where id=7; -update noar tt set b0='QMXRY5M8PLXZ7LGTNWNWELOXPE' where id=8; -update noar ti set b0='QMXRY5M8PLXZ7LGTNWNWELOXPE' where id=8; -update noar tt set b1='FURDKNG4YI35XMOKPJ' where id=8; -update noar ti set b1='FURDKNG4YI35XMOKPJ' where id=8; -update noar tt set b2='Q7MV00AYRYNPZR6B5GW4ID2S2QA' where id=8; -update noar ti set b2='Q7MV00AYRYNPZR6B5GW4ID2S2QA' where id=8; -update noar tt set b0='801F3' where id=9; -update noar ti set b0='801F3' where id=9; -update noar tt set b1='ABGSOMIFS2TEFZLG2OH4S28ND' where id=9; -update noar ti set b1='ABGSOMIFS2TEFZLG2OH4S28ND' where id=9; -update noar tt set b2='0B' where id=9; -update noar ti set b2='0B' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - b0 longblob not null, - b1 tinyblob not null, - b2 longblob not null -) engine=tokudb; -insert into tt values (1,'','',''); -insert into tt values (2,'','',''); -insert into tt values (3,'','',''); -insert into tt values (4,'','',''); -insert into tt values (5,'','',''); -insert into tt values (6,'','',''); -insert into tt values (7,'','',''); -insert into tt values (8,'','',''); -insert into tt values (9,'','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set b0='HYULH0EP5M8' where id=1; -update noar ti set b0='HYULH0EP5M8' where id=1; -update noar tt set b1='T9QEY2GNZ09V6SQ7SP' where id=1; -update noar ti set b1='T9QEY2GNZ09V6SQ7SP' where id=1; -update noar tt set b2='9FY4MXBQ82NZDO8ZQOY1B' where id=1; -update noar ti set b2='9FY4MXBQ82NZDO8ZQOY1B' where id=1; -update noar tt set b0='091LJ8FUTIA30IXFB2SY6' where id=2; -update noar ti set b0='091LJ8FUTIA30IXFB2SY6' where id=2; -update noar tt set b1='01BTTHIHI52M8ZLMVLO08ROL82NMC7F' where id=2; -update noar ti set b1='01BTTHIHI52M8ZLMVLO08ROL82NMC7F' where id=2; -update noar tt set b2='8VT8Y' where id=2; -update noar ti set b2='8VT8Y' where id=2; -update noar tt set b0='99OT5FQ' where id=3; -update noar ti set b0='99OT5FQ' where id=3; -update noar tt set b1='WICHM8MB6Q3F5M3OCECL7CO5' where id=3; -update noar ti set b1='WICHM8MB6Q3F5M3OCECL7CO5' where id=3; -update noar tt set b2='3RWK9JB3W7M4ZYSPU73ESH8RMWSW2N4' where id=3; -update noar ti set b2='3RWK9JB3W7M4ZYSPU73ESH8RMWSW2N4' where id=3; -update noar tt set b0='RT28R567061I' where id=4; -update noar ti set b0='RT28R567061I' where id=4; -update noar tt set b1='2G7BY2I79' where id=4; -update noar ti set b1='2G7BY2I79' where id=4; -update noar tt set b2='T' where id=4; -update noar ti set b2='T' where id=4; -update noar tt set b0='SHQW8BAXW6RYLN48O24LO8' where id=5; -update noar ti set b0='SHQW8BAXW6RYLN48O24LO8' where id=5; -update noar tt set b1='JOUTFFQZQCPCLMZRP' where id=5; -update noar ti set b1='JOUTFFQZQCPCLMZRP' where id=5; -update noar tt set b2='QNPC00ZJQ' where id=5; -update noar ti set b2='QNPC00ZJQ' where id=5; -update noar tt set b0='U4CQNM' where id=6; -update noar ti set b0='U4CQNM' where id=6; -update noar tt set b1='LBTTDH' where id=6; -update noar ti set b1='LBTTDH' where id=6; -update noar tt set b2='X25T0ZP3SMSWW7TE3IAB6GG151X' where id=6; -update noar ti set b2='X25T0ZP3SMSWW7TE3IAB6GG151X' where id=6; -update noar tt set b0='VSEYXELJNC4RO37RI6VTCIWQ9K9DD' where id=7; -update noar ti set b0='VSEYXELJNC4RO37RI6VTCIWQ9K9DD' where id=7; -update noar tt set b1='AM1K2Y78M0NYXTH6CG' where id=7; -update noar ti set b1='AM1K2Y78M0NYXTH6CG' where id=7; -update noar tt set b2='I5PCD9F3T9N8O7SYHB9QSU9J' where id=7; -update noar ti set b2='I5PCD9F3T9N8O7SYHB9QSU9J' where id=7; -update noar tt set b0='ECDO82LO' where id=8; -update noar ti set b0='ECDO82LO' where id=8; -update noar tt set b1='5UGU7XK' where id=8; -update noar ti set b1='5UGU7XK' where id=8; -update noar tt set b2='8AUBTFNUGF36SGSO3S' where id=8; -update noar ti set b2='8AUBTFNUGF36SGSO3S' where id=8; -update noar tt set b0='XRPVTL9V4WJP5C1W5Z5W1MWYNKU8' where id=9; -update noar ti set b0='XRPVTL9V4WJP5C1W5Z5W1MWYNKU8' where id=9; -update noar tt set b1='JQ3QW5VNJML1' where id=9; -update noar ti set b1='JQ3QW5VNJML1' where id=9; -update noar tt set b2='YY4NJ6VQEVAG6R182ACA8GHB' where id=9; -update noar ti set b2='YY4NJ6VQEVAG6R182ACA8GHB' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - b0 longblob null, - b1 tinyblob null, - b2 text null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set b0='9OAH7ZQKU326WS89' where id=1; -update noar ti set b0='9OAH7ZQKU326WS89' where id=1; -update noar tt set b1='URDN20WMFHSVETY' where id=1; -update noar ti set b1='URDN20WMFHSVETY' where id=1; -update noar tt set b2='C58B2DR2VTZ1JWLDXWD25UCL7O4SSV7' where id=1; -update noar ti set b2='C58B2DR2VTZ1JWLDXWD25UCL7O4SSV7' where id=1; -update noar tt set b0='N9USYEY1NWE' where id=2; -update noar ti set b0='N9USYEY1NWE' where id=2; -update noar tt set b1='YXAA801C8NCNCGK84C94IOWPP' where id=2; -update noar ti set b1='YXAA801C8NCNCGK84C94IOWPP' where id=2; -update noar tt set b2='YN3PCLXOTCVCJ5OWXOIUIPLYWPOP' where id=2; -update noar ti set b2='YN3PCLXOTCVCJ5OWXOIUIPLYWPOP' where id=2; -update noar tt set b0='N6UY69VK70TDUTXXR26JTGI2GE' where id=3; -update noar ti set b0='N6UY69VK70TDUTXXR26JTGI2GE' where id=3; -update noar tt set b1='QOGCPSDN5VPFW7611SXRCMMT1GGL6TC' where id=3; -update noar ti set b1='QOGCPSDN5VPFW7611SXRCMMT1GGL6TC' where id=3; -update noar tt set b2='AFM28GUN26CSE3' where id=3; -update noar ti set b2='AFM28GUN26CSE3' where id=3; -update noar tt set b0='UWOPMSTKSSMHGL0MWI15AD' where id=4; -update noar ti set b0='UWOPMSTKSSMHGL0MWI15AD' where id=4; -update noar tt set b1='26XMMIWK0Q' where id=4; -update noar ti set b1='26XMMIWK0Q' where id=4; -update noar tt set b2='MRFDVNRRVDNO3H' where id=4; -update noar ti set b2='MRFDVNRRVDNO3H' where id=4; -update noar tt set b0='V96NNPMYCA9ZMLJ9D01QD' where id=5; -update noar ti set b0='V96NNPMYCA9ZMLJ9D01QD' where id=5; -update noar tt set b1='0' where id=5; -update noar ti set b1='0' where id=5; -update noar tt set b2='2F2RML5OI48950RIF378W' where id=5; -update noar ti set b2='2F2RML5OI48950RIF378W' where id=5; -update noar tt set b0='BPY695C7AHD' where id=6; -update noar ti set b0='BPY695C7AHD' where id=6; -update noar tt set b1='248OQ9GSR2RYXBWDC4KL8X1IZ' where id=6; -update noar ti set b1='248OQ9GSR2RYXBWDC4KL8X1IZ' where id=6; -update noar tt set b2='VVG3V' where id=6; -update noar ti set b2='VVG3V' where id=6; -update noar tt set b0='IU8' where id=7; -update noar ti set b0='IU8' where id=7; -update noar tt set b1='2MDLCF1HBPK' where id=7; -update noar ti set b1='2MDLCF1HBPK' where id=7; -update noar tt set b2='DHANDJYN13HKRGMHU97XU7LTHFJ04' where id=7; -update noar ti set b2='DHANDJYN13HKRGMHU97XU7LTHFJ04' where id=7; -update noar tt set b0='PMKN6JH7M8LRSAUI77NKWG0' where id=8; -update noar ti set b0='PMKN6JH7M8LRSAUI77NKWG0' where id=8; -update noar tt set b1='CWP6S5YLYR' where id=8; -update noar ti set b1='CWP6S5YLYR' where id=8; -update noar tt set b2='8NDVQJY' where id=8; -update noar ti set b2='8NDVQJY' where id=8; -update noar tt set b0='95OQ48VEO5NUU5O' where id=9; -update noar ti set b0='95OQ48VEO5NUU5O' where id=9; -update noar tt set b1='QLS' where id=9; -update noar ti set b1='QLS' where id=9; -update noar tt set b2='3T9RVG' where id=9; -update noar ti set b2='3T9RVG' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - b0 longblob not null, - b1 tinyblob not null, - b2 text not null -) engine=tokudb; -insert into tt values (1,'','',''); -insert into tt values (2,'','',''); -insert into tt values (3,'','',''); -insert into tt values (4,'','',''); -insert into tt values (5,'','',''); -insert into tt values (6,'','',''); -insert into tt values (7,'','',''); -insert into tt values (8,'','',''); -insert into tt values (9,'','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set b0='PDSTKPDZE91' where id=1; -update noar ti set b0='PDSTKPDZE91' where id=1; -update noar tt set b1='E3' where id=1; -update noar ti set b1='E3' where id=1; -update noar tt set b2='JS' where id=1; -update noar ti set b2='JS' where id=1; -update noar tt set b0='F58' where id=2; -update noar ti set b0='F58' where id=2; -update noar tt set b1='2TO70GQPNANV2N66MMM6BO' where id=2; -update noar ti set b1='2TO70GQPNANV2N66MMM6BO' where id=2; -update noar tt set b2='BRZRB0HCX575NDPLZO3O475AH' where id=2; -update noar ti set b2='BRZRB0HCX575NDPLZO3O475AH' where id=2; -update noar tt set b0='E1NFTPA91D722R84FGZLIC' where id=3; -update noar ti set b0='E1NFTPA91D722R84FGZLIC' where id=3; -update noar tt set b1='ZXT03M7HGKP4SMTPQVR5L' where id=3; -update noar ti set b1='ZXT03M7HGKP4SMTPQVR5L' where id=3; -update noar tt set b2='FZK0NDUE7AF' where id=3; -update noar ti set b2='FZK0NDUE7AF' where id=3; -update noar tt set b0='IWPG63U6C8D' where id=4; -update noar ti set b0='IWPG63U6C8D' where id=4; -update noar tt set b1='0P4' where id=4; -update noar ti set b1='0P4' where id=4; -update noar tt set b2='N2QF' where id=4; -update noar ti set b2='N2QF' where id=4; -update noar tt set b0='OGR8QE52KQN0MOI1CBQ0CVERT2' where id=5; -update noar ti set b0='OGR8QE52KQN0MOI1CBQ0CVERT2' where id=5; -update noar tt set b1='9' where id=5; -update noar ti set b1='9' where id=5; -update noar tt set b2='523RCD1AE' where id=5; -update noar ti set b2='523RCD1AE' where id=5; -update noar tt set b0='1ZDG0QNTS3N7HZSLOS' where id=6; -update noar ti set b0='1ZDG0QNTS3N7HZSLOS' where id=6; -update noar tt set b1='42SRZSWXYCCB4H3JQWXPEV1H' where id=6; -update noar ti set b1='42SRZSWXYCCB4H3JQWXPEV1H' where id=6; -update noar tt set b2='YFO' where id=6; -update noar ti set b2='YFO' where id=6; -update noar tt set b0='ILFGIKC3CXIWBZ5N68XCAG' where id=7; -update noar ti set b0='ILFGIKC3CXIWBZ5N68XCAG' where id=7; -update noar tt set b1='69WLZBPZE06Y2ILA5X6T' where id=7; -update noar ti set b1='69WLZBPZE06Y2ILA5X6T' where id=7; -update noar tt set b2='CB2RZSYO060H04L' where id=7; -update noar ti set b2='CB2RZSYO060H04L' where id=7; -update noar tt set b0='T49IQ0OD1KBKBW1G87S9HN0TMXC6' where id=8; -update noar ti set b0='T49IQ0OD1KBKBW1G87S9HN0TMXC6' where id=8; -update noar tt set b1='13' where id=8; -update noar ti set b1='13' where id=8; -update noar tt set b2='BSQD1YMXZ2NX0S9OGW50BAJ' where id=8; -update noar ti set b2='BSQD1YMXZ2NX0S9OGW50BAJ' where id=8; -update noar tt set b0='O6' where id=9; -update noar ti set b0='O6' where id=9; -update noar tt set b1='CK1I41K4KL0IN2NLYRXTAXWLW' where id=9; -update noar ti set b1='CK1I41K4KL0IN2NLYRXTAXWLW' where id=9; -update noar tt set b2='II8LMTGKMBFQ1E02RFB2N2Q0CLUZ' where id=9; -update noar ti set b2='II8LMTGKMBFQ1E02RFB2N2Q0CLUZ' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - b0 longblob null, - b1 blob null, - b2 tinyblob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set b0='FYCQ4S8' where id=1; -update noar ti set b0='FYCQ4S8' where id=1; -update noar tt set b1='35B' where id=1; -update noar ti set b1='35B' where id=1; -update noar tt set b2='P8VN7P687AL48LX5GSZADPBNXFPD4C' where id=1; -update noar ti set b2='P8VN7P687AL48LX5GSZADPBNXFPD4C' where id=1; -update noar tt set b0='PLLTKRB02' where id=2; -update noar ti set b0='PLLTKRB02' where id=2; -update noar tt set b1='X8E6V5OVJL2GHBI2P6' where id=2; -update noar ti set b1='X8E6V5OVJL2GHBI2P6' where id=2; -update noar tt set b2='TIJ8MT3MGQGUB3AFEX' where id=2; -update noar ti set b2='TIJ8MT3MGQGUB3AFEX' where id=2; -update noar tt set b0='H78VKU4401' where id=3; -update noar ti set b0='H78VKU4401' where id=3; -update noar tt set b1='CCM22' where id=3; -update noar ti set b1='CCM22' where id=3; -update noar tt set b2='7A03CT9XZH3ER1SFY' where id=3; -update noar ti set b2='7A03CT9XZH3ER1SFY' where id=3; -update noar tt set b0='EYT4P9YTVTJTNULH59N1K' where id=4; -update noar ti set b0='EYT4P9YTVTJTNULH59N1K' where id=4; -update noar tt set b1='84O63N84MW6G1RCTN' where id=4; -update noar ti set b1='84O63N84MW6G1RCTN' where id=4; -update noar tt set b2='HPBKWC2CXFUFUDFOISLA05CHIBMQ6' where id=4; -update noar ti set b2='HPBKWC2CXFUFUDFOISLA05CHIBMQ6' where id=4; -update noar tt set b0='N8MF9PCA4Z6YX134' where id=5; -update noar ti set b0='N8MF9PCA4Z6YX134' where id=5; -update noar tt set b1='VVN9233GFFLJTF73H' where id=5; -update noar ti set b1='VVN9233GFFLJTF73H' where id=5; -update noar tt set b2='RHTNFYN2JJ7S3EHDZY696YHM82Y' where id=5; -update noar ti set b2='RHTNFYN2JJ7S3EHDZY696YHM82Y' where id=5; -update noar tt set b0='8FKKBVSQ2DD82Y3D853FEYWLH' where id=6; -update noar ti set b0='8FKKBVSQ2DD82Y3D853FEYWLH' where id=6; -update noar tt set b1='R7OZFKH0BXI2HTLSHY40TQUEZ6F' where id=6; -update noar ti set b1='R7OZFKH0BXI2HTLSHY40TQUEZ6F' where id=6; -update noar tt set b2='CQBC461FFJYUM68O0VR1ECIDMD2UIQ' where id=6; -update noar ti set b2='CQBC461FFJYUM68O0VR1ECIDMD2UIQ' where id=6; -update noar tt set b0='0RPIXAGCIBDD7U7J2' where id=7; -update noar ti set b0='0RPIXAGCIBDD7U7J2' where id=7; -update noar tt set b1='1ZR196R3BKHH349JP9PRJWD' where id=7; -update noar ti set b1='1ZR196R3BKHH349JP9PRJWD' where id=7; -update noar tt set b2='ND352LZPIGODOAE87MJS0EKH8LT676L' where id=7; -update noar ti set b2='ND352LZPIGODOAE87MJS0EKH8LT676L' where id=7; -update noar tt set b0='7DH3TV' where id=8; -update noar ti set b0='7DH3TV' where id=8; -update noar tt set b1='XRT54KYS58Y9FM4OOJC0U8C6DCND' where id=8; -update noar ti set b1='XRT54KYS58Y9FM4OOJC0U8C6DCND' where id=8; -update noar tt set b2='QS5702EDN5GBQMBSMNXT' where id=8; -update noar ti set b2='QS5702EDN5GBQMBSMNXT' where id=8; -update noar tt set b0='V45OU6BZ1P' where id=9; -update noar ti set b0='V45OU6BZ1P' where id=9; -update noar tt set b1='J85UR68X4N3RF5QNNLM4OPE8QV' where id=9; -update noar ti set b1='J85UR68X4N3RF5QNNLM4OPE8QV' where id=9; -update noar tt set b2='QO' where id=9; -update noar ti set b2='QO' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - b0 longblob not null, - b1 blob not null, - b2 tinyblob not null -) engine=tokudb; -insert into tt values (1,'','',''); -insert into tt values (2,'','',''); -insert into tt values (3,'','',''); -insert into tt values (4,'','',''); -insert into tt values (5,'','',''); -insert into tt values (6,'','',''); -insert into tt values (7,'','',''); -insert into tt values (8,'','',''); -insert into tt values (9,'','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set b0='KI3LKGOFDHFP9648RD2N48BBBP8F' where id=1; -update noar ti set b0='KI3LKGOFDHFP9648RD2N48BBBP8F' where id=1; -update noar tt set b1='1AGDVES6MMFRDUFDTBHGBC43BIN2' where id=1; -update noar ti set b1='1AGDVES6MMFRDUFDTBHGBC43BIN2' where id=1; -update noar tt set b2='BDQI5O1ALFOEWZHNMF7Q42ERH9' where id=1; -update noar ti set b2='BDQI5O1ALFOEWZHNMF7Q42ERH9' where id=1; -update noar tt set b0='TH8MZGQ7RARK9F0A088LHWJXTU7RQ9Y' where id=2; -update noar ti set b0='TH8MZGQ7RARK9F0A088LHWJXTU7RQ9Y' where id=2; -update noar tt set b1='OYB7L67O8RP9OAQ' where id=2; -update noar ti set b1='OYB7L67O8RP9OAQ' where id=2; -update noar tt set b2='3U5RHVIDLFNU3RDLCY' where id=2; -update noar ti set b2='3U5RHVIDLFNU3RDLCY' where id=2; -update noar tt set b0='82IM1ATOAOWSVWR62TXT9T' where id=3; -update noar ti set b0='82IM1ATOAOWSVWR62TXT9T' where id=3; -update noar tt set b1='Q4A' where id=3; -update noar ti set b1='Q4A' where id=3; -update noar tt set b2='32U53FTIF90QIF9DBFYDQ51' where id=3; -update noar ti set b2='32U53FTIF90QIF9DBFYDQ51' where id=3; -update noar tt set b0='OL5LBLVZOKDEM66RV39' where id=4; -update noar ti set b0='OL5LBLVZOKDEM66RV39' where id=4; -update noar tt set b1='ZG6T9O9WG7W8KX0ANYRD' where id=4; -update noar ti set b1='ZG6T9O9WG7W8KX0ANYRD' where id=4; -update noar tt set b2='HZQ34JJ9RVX003VKTGQKZPV9Q' where id=4; -update noar ti set b2='HZQ34JJ9RVX003VKTGQKZPV9Q' where id=4; -update noar tt set b0='W0UTC7ZE9UQQO' where id=5; -update noar ti set b0='W0UTC7ZE9UQQO' where id=5; -update noar tt set b1='SF9M1332U3LPWMA5Y7' where id=5; -update noar ti set b1='SF9M1332U3LPWMA5Y7' where id=5; -update noar tt set b2='TOA7NBKVBY953' where id=5; -update noar ti set b2='TOA7NBKVBY953' where id=5; -update noar tt set b0='XJ' where id=6; -update noar ti set b0='XJ' where id=6; -update noar tt set b1='3INUXN7RBVWIBI6VH85' where id=6; -update noar ti set b1='3INUXN7RBVWIBI6VH85' where id=6; -update noar tt set b2='1DPZSY9Z7XPB0VHMQQBOF8W7XZOH' where id=6; -update noar ti set b2='1DPZSY9Z7XPB0VHMQQBOF8W7XZOH' where id=6; -update noar tt set b0='X3E875' where id=7; -update noar ti set b0='X3E875' where id=7; -update noar tt set b1='8S1M9VHOUC3RK3DRZZ' where id=7; -update noar ti set b1='8S1M9VHOUC3RK3DRZZ' where id=7; -update noar tt set b2='DAXXE30KXBCJ2GSK7T64YKHKGDBLGC2' where id=7; -update noar ti set b2='DAXXE30KXBCJ2GSK7T64YKHKGDBLGC2' where id=7; -update noar tt set b0='84Y7F35ABG9BYK04EFFOGLI89N' where id=8; -update noar ti set b0='84Y7F35ABG9BYK04EFFOGLI89N' where id=8; -update noar tt set b1='99LFZWRY9WGSHLHFPP6QKGZVLLHU747D' where id=8; -update noar ti set b1='99LFZWRY9WGSHLHFPP6QKGZVLLHU747D' where id=8; -update noar tt set b2='H0RBGA2BY1396M48VC3E4ZGRXTJHVSF' where id=8; -update noar ti set b2='H0RBGA2BY1396M48VC3E4ZGRXTJHVSF' where id=8; -update noar tt set b0='H' where id=9; -update noar ti set b0='H' where id=9; -update noar tt set b1='BI8090ZMCTBV6A8O0M1FZQU' where id=9; -update noar ti set b1='BI8090ZMCTBV6A8O0M1FZQU' where id=9; -update noar tt set b2='1YNO52GZFN80LITZ69' where id=9; -update noar ti set b2='1YNO52GZFN80LITZ69' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - b0 longblob null, - b1 blob null, - b2 blob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set b0='P7GBXU2I' where id=1; -update noar ti set b0='P7GBXU2I' where id=1; -update noar tt set b1='H' where id=1; -update noar ti set b1='H' where id=1; -update noar tt set b2='ZL5RMN4PU' where id=1; -update noar ti set b2='ZL5RMN4PU' where id=1; -update noar tt set b0='KTMJ7DC693YHSIDX' where id=2; -update noar ti set b0='KTMJ7DC693YHSIDX' where id=2; -update noar tt set b1='61DW7JEP4JTXVSD94ZVGYN9' where id=2; -update noar ti set b1='61DW7JEP4JTXVSD94ZVGYN9' where id=2; -update noar tt set b2='RVHWFX8LCL8F' where id=2; -update noar ti set b2='RVHWFX8LCL8F' where id=2; -update noar tt set b0='CSEUQIHDL6XISQG1FY' where id=3; -update noar ti set b0='CSEUQIHDL6XISQG1FY' where id=3; -update noar tt set b1='9XO7KNHSNOUCXWZGT2VXK8Z3YUI' where id=3; -update noar ti set b1='9XO7KNHSNOUCXWZGT2VXK8Z3YUI' where id=3; -update noar tt set b2='814IJMG93S' where id=3; -update noar ti set b2='814IJMG93S' where id=3; -update noar tt set b0='6WXCOYCDPYB9DZJMWJDPFH6KV90RMS5' where id=4; -update noar ti set b0='6WXCOYCDPYB9DZJMWJDPFH6KV90RMS5' where id=4; -update noar tt set b1='H2YLU8VFWJQQUP' where id=4; -update noar ti set b1='H2YLU8VFWJQQUP' where id=4; -update noar tt set b2='QNNZKNW62JDZAS' where id=4; -update noar ti set b2='QNNZKNW62JDZAS' where id=4; -update noar tt set b0='0CLBPFMSZCFQ7VP' where id=5; -update noar ti set b0='0CLBPFMSZCFQ7VP' where id=5; -update noar tt set b1='TLPWMYSFOBTN' where id=5; -update noar ti set b1='TLPWMYSFOBTN' where id=5; -update noar tt set b2='AZZ2' where id=5; -update noar ti set b2='AZZ2' where id=5; -update noar tt set b0='VI54HTTGSSG9FGXEA' where id=6; -update noar ti set b0='VI54HTTGSSG9FGXEA' where id=6; -update noar tt set b1='W43M91NONCI4B6GA6GMMNPCOY38QP0' where id=6; -update noar ti set b1='W43M91NONCI4B6GA6GMMNPCOY38QP0' where id=6; -update noar tt set b2='6B1S2LJXDI7Z4M4N5BYW9M5' where id=6; -update noar ti set b2='6B1S2LJXDI7Z4M4N5BYW9M5' where id=6; -update noar tt set b0='BJ98ALF1' where id=7; -update noar ti set b0='BJ98ALF1' where id=7; -update noar tt set b1='IBQ6YU36AGR11W' where id=7; -update noar ti set b1='IBQ6YU36AGR11W' where id=7; -update noar tt set b2='RHUP7LK5KRYMIYQZH1ZM5Y8' where id=7; -update noar ti set b2='RHUP7LK5KRYMIYQZH1ZM5Y8' where id=7; -update noar tt set b0='6SV3Y7UQT779WX0G3' where id=8; -update noar ti set b0='6SV3Y7UQT779WX0G3' where id=8; -update noar tt set b1='11M1EZXN5X1RMN81LDS610C' where id=8; -update noar ti set b1='11M1EZXN5X1RMN81LDS610C' where id=8; -update noar tt set b2='UUH14XTJVMG9IMJF7' where id=8; -update noar ti set b2='UUH14XTJVMG9IMJF7' where id=8; -update noar tt set b0='FJSCNC5D96ALI50BUDBG' where id=9; -update noar ti set b0='FJSCNC5D96ALI50BUDBG' where id=9; -update noar tt set b1='0D3NY2R2903CQ4S2A3AR' where id=9; -update noar ti set b1='0D3NY2R2903CQ4S2A3AR' where id=9; -update noar tt set b2='Y4YN1R' where id=9; -update noar ti set b2='Y4YN1R' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - b0 longblob not null, - b1 blob not null, - b2 blob not null -) engine=tokudb; -insert into tt values (1,'','',''); -insert into tt values (2,'','',''); -insert into tt values (3,'','',''); -insert into tt values (4,'','',''); -insert into tt values (5,'','',''); -insert into tt values (6,'','',''); -insert into tt values (7,'','',''); -insert into tt values (8,'','',''); -insert into tt values (9,'','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set b0='RSV1XSY00FF' where id=1; -update noar ti set b0='RSV1XSY00FF' where id=1; -update noar tt set b1='STZUCWW' where id=1; -update noar ti set b1='STZUCWW' where id=1; -update noar tt set b2='W7ANLT9PJHKJW3CZUS' where id=1; -update noar ti set b2='W7ANLT9PJHKJW3CZUS' where id=1; -update noar tt set b0='YZ9A7ISZME1H4' where id=2; -update noar ti set b0='YZ9A7ISZME1H4' where id=2; -update noar tt set b1='DRNP7XEK7BIY8Q3TS6GGJWF0169BP' where id=2; -update noar ti set b1='DRNP7XEK7BIY8Q3TS6GGJWF0169BP' where id=2; -update noar tt set b2='PYZ9O7WNWH1DE' where id=2; -update noar ti set b2='PYZ9O7WNWH1DE' where id=2; -update noar tt set b0='37' where id=3; -update noar ti set b0='37' where id=3; -update noar tt set b1='G2XHVK9WREITW4FW' where id=3; -update noar ti set b1='G2XHVK9WREITW4FW' where id=3; -update noar tt set b2='TGJC7WT5XP0OXLKI' where id=3; -update noar ti set b2='TGJC7WT5XP0OXLKI' where id=3; -update noar tt set b0='RUYO092MKJ2D4NZBYVNRDE1E3' where id=4; -update noar ti set b0='RUYO092MKJ2D4NZBYVNRDE1E3' where id=4; -update noar tt set b1='80F8GBYCNKU3X2I39' where id=4; -update noar ti set b1='80F8GBYCNKU3X2I39' where id=4; -update noar tt set b2='KZN8BYISTCYF7OBIU' where id=4; -update noar ti set b2='KZN8BYISTCYF7OBIU' where id=4; -update noar tt set b0='FZ4AFEU65A' where id=5; -update noar ti set b0='FZ4AFEU65A' where id=5; -update noar tt set b1='RU' where id=5; -update noar ti set b1='RU' where id=5; -update noar tt set b2='PGN28I70YFPT7HSR1FMU0CQH' where id=5; -update noar ti set b2='PGN28I70YFPT7HSR1FMU0CQH' where id=5; -update noar tt set b0='G083EX25WVGXC5F7Y' where id=6; -update noar ti set b0='G083EX25WVGXC5F7Y' where id=6; -update noar tt set b1='7YLRA7BHA0NW5' where id=6; -update noar ti set b1='7YLRA7BHA0NW5' where id=6; -update noar tt set b2='CR1CE5JY04K' where id=6; -update noar ti set b2='CR1CE5JY04K' where id=6; -update noar tt set b0='F' where id=7; -update noar ti set b0='F' where id=7; -update noar tt set b1='CY68LEQMQ224DKWJM' where id=7; -update noar ti set b1='CY68LEQMQ224DKWJM' where id=7; -update noar tt set b2='7WEQT8U' where id=7; -update noar ti set b2='7WEQT8U' where id=7; -update noar tt set b0='7ARPD9VPZO' where id=8; -update noar ti set b0='7ARPD9VPZO' where id=8; -update noar tt set b1='HUORAOXM13NQM6TIUAHRUVYFCMAL6KE4' where id=8; -update noar ti set b1='HUORAOXM13NQM6TIUAHRUVYFCMAL6KE4' where id=8; -update noar tt set b2='9BPCXLB' where id=8; -update noar ti set b2='9BPCXLB' where id=8; -update noar tt set b0='CEZLV1BOUKKQ30EJ' where id=9; -update noar ti set b0='CEZLV1BOUKKQ30EJ' where id=9; -update noar tt set b1='H0Y' where id=9; -update noar ti set b1='H0Y' where id=9; -update noar tt set b2='2H0F' where id=9; -update noar ti set b2='2H0F' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - b0 longblob null, - b1 blob null, - b2 mediumblob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set b0='PKZ07U' where id=1; -update noar ti set b0='PKZ07U' where id=1; -update noar tt set b1='RQDZV72DDNECMNRL' where id=1; -update noar ti set b1='RQDZV72DDNECMNRL' where id=1; -update noar tt set b2='DFGTB33X' where id=1; -update noar ti set b2='DFGTB33X' where id=1; -update noar tt set b0='FH4EO7Y9RAC6TUYUWWZ5C13J70' where id=2; -update noar ti set b0='FH4EO7Y9RAC6TUYUWWZ5C13J70' where id=2; -update noar tt set b1='O9AZUPNJRM5D' where id=2; -update noar ti set b1='O9AZUPNJRM5D' where id=2; -update noar tt set b2='8CQTJ3HKHVML5E89' where id=2; -update noar ti set b2='8CQTJ3HKHVML5E89' where id=2; -update noar tt set b0='5EN' where id=3; -update noar ti set b0='5EN' where id=3; -update noar tt set b1='3' where id=3; -update noar ti set b1='3' where id=3; -update noar tt set b2='BLLT2PIIJ9SET531ICELVCUL' where id=3; -update noar ti set b2='BLLT2PIIJ9SET531ICELVCUL' where id=3; -update noar tt set b0='HHHB7DOZ41OT9K0ZT6AXHO' where id=4; -update noar ti set b0='HHHB7DOZ41OT9K0ZT6AXHO' where id=4; -update noar tt set b1='QWL89319SJ07NLNF' where id=4; -update noar ti set b1='QWL89319SJ07NLNF' where id=4; -update noar tt set b2='Q8XM48VXSM87QNZJFD1MIUWEUSZ8SJ0' where id=4; -update noar ti set b2='Q8XM48VXSM87QNZJFD1MIUWEUSZ8SJ0' where id=4; -update noar tt set b0='MI7V9CGT' where id=5; -update noar ti set b0='MI7V9CGT' where id=5; -update noar tt set b1='F4D2TA' where id=5; -update noar ti set b1='F4D2TA' where id=5; -update noar tt set b2='75' where id=5; -update noar ti set b2='75' where id=5; -update noar tt set b0='X5' where id=6; -update noar ti set b0='X5' where id=6; -update noar tt set b1='GSGBU4CLLDRZC2' where id=6; -update noar ti set b1='GSGBU4CLLDRZC2' where id=6; -update noar tt set b2='U8OADT7WWE5WQDAYMCK9F0Q04ZFEN' where id=6; -update noar ti set b2='U8OADT7WWE5WQDAYMCK9F0Q04ZFEN' where id=6; -update noar tt set b0='Y7OPDYU47AQF' where id=7; -update noar ti set b0='Y7OPDYU47AQF' where id=7; -update noar tt set b1='TQAA04AE3VZAS14Y71ITL0' where id=7; -update noar ti set b1='TQAA04AE3VZAS14Y71ITL0' where id=7; -update noar tt set b2='WGQJI40Y16NUIZAAQKSKXNN39' where id=7; -update noar ti set b2='WGQJI40Y16NUIZAAQKSKXNN39' where id=7; -update noar tt set b0='E2O' where id=8; -update noar ti set b0='E2O' where id=8; -update noar tt set b1='64M7YPD8' where id=8; -update noar ti set b1='64M7YPD8' where id=8; -update noar tt set b2='J' where id=8; -update noar ti set b2='J' where id=8; -update noar tt set b0='Z' where id=9; -update noar ti set b0='Z' where id=9; -update noar tt set b1='XLDS2S24' where id=9; -update noar ti set b1='XLDS2S24' where id=9; -update noar tt set b2='HLA2LL5N7QS3LK9T14AX' where id=9; -update noar ti set b2='HLA2LL5N7QS3LK9T14AX' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - b0 longblob not null, - b1 blob not null, - b2 mediumblob not null -) engine=tokudb; -insert into tt values (1,'','',''); -insert into tt values (2,'','',''); -insert into tt values (3,'','',''); -insert into tt values (4,'','',''); -insert into tt values (5,'','',''); -insert into tt values (6,'','',''); -insert into tt values (7,'','',''); -insert into tt values (8,'','',''); -insert into tt values (9,'','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set b0='ODFQBMOJ9C5HW2GEUTIO1ULWZJG5EMY' where id=1; -update noar ti set b0='ODFQBMOJ9C5HW2GEUTIO1ULWZJG5EMY' where id=1; -update noar tt set b1='1CK2HUAF52QFKLOEEXLI6IU20TN5VZB' where id=1; -update noar ti set b1='1CK2HUAF52QFKLOEEXLI6IU20TN5VZB' where id=1; -update noar tt set b2='ZQNKH9GGAFKINFTVSZV' where id=1; -update noar ti set b2='ZQNKH9GGAFKINFTVSZV' where id=1; -update noar tt set b0='JAQ1XIYE4OH28' where id=2; -update noar ti set b0='JAQ1XIYE4OH28' where id=2; -update noar tt set b1='95FGL5Y924ZKR3ZGVC7O6JRK3U98FR1G' where id=2; -update noar ti set b1='95FGL5Y924ZKR3ZGVC7O6JRK3U98FR1G' where id=2; -update noar tt set b2='GUH2I' where id=2; -update noar ti set b2='GUH2I' where id=2; -update noar tt set b0='XHVFXPRGELBLWQZTRQQRAS' where id=3; -update noar ti set b0='XHVFXPRGELBLWQZTRQQRAS' where id=3; -update noar tt set b1='FYNGE6QKP7I8LYPLDY9KUV7CBNL' where id=3; -update noar ti set b1='FYNGE6QKP7I8LYPLDY9KUV7CBNL' where id=3; -update noar tt set b2='HLC302TMZOWGF77P94723' where id=3; -update noar ti set b2='HLC302TMZOWGF77P94723' where id=3; -update noar tt set b0='V42L6H9ESXZE6YM0TI0HJ' where id=4; -update noar ti set b0='V42L6H9ESXZE6YM0TI0HJ' where id=4; -update noar tt set b1='J8ELZNRLVTMR0G19UKVYJJ7P3FPZJZY8' where id=4; -update noar ti set b1='J8ELZNRLVTMR0G19UKVYJJ7P3FPZJZY8' where id=4; -update noar tt set b2='WGDX39SEMN43IY4LU' where id=4; -update noar ti set b2='WGDX39SEMN43IY4LU' where id=4; -update noar tt set b0='3' where id=5; -update noar ti set b0='3' where id=5; -update noar tt set b1='FXRP3U89IL019Y8ASAC8OOG8LQLBGXP5' where id=5; -update noar ti set b1='FXRP3U89IL019Y8ASAC8OOG8LQLBGXP5' where id=5; -update noar tt set b2='N315G9MWFAND8BRWWXGXF4EB2' where id=5; -update noar ti set b2='N315G9MWFAND8BRWWXGXF4EB2' where id=5; -update noar tt set b0='L' where id=6; -update noar ti set b0='L' where id=6; -update noar tt set b1='BKRKBGQT29V2T47BLETD1OD1A51Q9GT' where id=6; -update noar ti set b1='BKRKBGQT29V2T47BLETD1OD1A51Q9GT' where id=6; -update noar tt set b2='SH2EYK' where id=6; -update noar ti set b2='SH2EYK' where id=6; -update noar tt set b0='SX85B75' where id=7; -update noar ti set b0='SX85B75' where id=7; -update noar tt set b1='9LBMIUWTN4KZY2V8P6C4WS95EP6V' where id=7; -update noar ti set b1='9LBMIUWTN4KZY2V8P6C4WS95EP6V' where id=7; -update noar tt set b2='23CSPD2RUC1RSK2VQJFSCAGSNLK8D69' where id=7; -update noar ti set b2='23CSPD2RUC1RSK2VQJFSCAGSNLK8D69' where id=7; -update noar tt set b0='4NVAXNV2A0C09GEV7AQ7SC6J' where id=8; -update noar ti set b0='4NVAXNV2A0C09GEV7AQ7SC6J' where id=8; -update noar tt set b1='C9F1B2PWUMTITLMF2T8ZS' where id=8; -update noar ti set b1='C9F1B2PWUMTITLMF2T8ZS' where id=8; -update noar tt set b2='9C' where id=8; -update noar ti set b2='9C' where id=8; -update noar tt set b0='EU3IC1JKD1PHPYL65KC14XV' where id=9; -update noar ti set b0='EU3IC1JKD1PHPYL65KC14XV' where id=9; -update noar tt set b1='POL7NS1S5' where id=9; -update noar ti set b1='POL7NS1S5' where id=9; -update noar tt set b2='AMTX' where id=9; -update noar ti set b2='AMTX' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - b0 longblob null, - b1 blob null, - b2 longblob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set b0='ENPIQ87BJMOJQJX67HP' where id=1; -update noar ti set b0='ENPIQ87BJMOJQJX67HP' where id=1; -update noar tt set b1='JEIMVJVNDOP72K9' where id=1; -update noar ti set b1='JEIMVJVNDOP72K9' where id=1; -update noar tt set b2='3' where id=1; -update noar ti set b2='3' where id=1; -update noar tt set b0='ED4T34F1922DFW9A' where id=2; -update noar ti set b0='ED4T34F1922DFW9A' where id=2; -update noar tt set b1='OL' where id=2; -update noar ti set b1='OL' where id=2; -update noar tt set b2='D7ZIWCL33J9XFNWTRV029RSZ2' where id=2; -update noar ti set b2='D7ZIWCL33J9XFNWTRV029RSZ2' where id=2; -update noar tt set b0='TZVW' where id=3; -update noar ti set b0='TZVW' where id=3; -update noar tt set b1='FSPC4SJW32E3OVJ6H' where id=3; -update noar ti set b1='FSPC4SJW32E3OVJ6H' where id=3; -update noar tt set b2='XOQUAXRI421KQIJ4694QSRQTM5Z66V' where id=3; -update noar ti set b2='XOQUAXRI421KQIJ4694QSRQTM5Z66V' where id=3; -update noar tt set b0='CIRXJL4IV6A8HE29TNNWFRBGJ' where id=4; -update noar ti set b0='CIRXJL4IV6A8HE29TNNWFRBGJ' where id=4; -update noar tt set b1='VMW8FZS' where id=4; -update noar ti set b1='VMW8FZS' where id=4; -update noar tt set b2='1ROB5A1JYBGM9M1NR2YDN9NVA' where id=4; -update noar ti set b2='1ROB5A1JYBGM9M1NR2YDN9NVA' where id=4; -update noar tt set b0='OEAENQ23ZWDRANJ' where id=5; -update noar ti set b0='OEAENQ23ZWDRANJ' where id=5; -update noar tt set b1='USZ3ULJNCRSIA0H70AVZZP4V' where id=5; -update noar ti set b1='USZ3ULJNCRSIA0H70AVZZP4V' where id=5; -update noar tt set b2='SR942GZFO3HKOX' where id=5; -update noar ti set b2='SR942GZFO3HKOX' where id=5; -update noar tt set b0='DCVOP' where id=6; -update noar ti set b0='DCVOP' where id=6; -update noar tt set b1='CSOTEHAHFHCL' where id=6; -update noar ti set b1='CSOTEHAHFHCL' where id=6; -update noar tt set b2='6Y2DXL4DXG17LCX1MAJ1Y' where id=6; -update noar ti set b2='6Y2DXL4DXG17LCX1MAJ1Y' where id=6; -update noar tt set b0='WC74ECVEP6YQ82' where id=7; -update noar ti set b0='WC74ECVEP6YQ82' where id=7; -update noar tt set b1='8TRH69PAVJE6904C66G7XBAPXX62FC' where id=7; -update noar ti set b1='8TRH69PAVJE6904C66G7XBAPXX62FC' where id=7; -update noar tt set b2='0NGH9WS' where id=7; -update noar ti set b2='0NGH9WS' where id=7; -update noar tt set b0='2E7IKLF7QZ3VRH8W88G5H7HK' where id=8; -update noar ti set b0='2E7IKLF7QZ3VRH8W88G5H7HK' where id=8; -update noar tt set b1='NNGNDKL' where id=8; -update noar ti set b1='NNGNDKL' where id=8; -update noar tt set b2='K4ODJ2XYSUVXJR0ZQ3510' where id=8; -update noar ti set b2='K4ODJ2XYSUVXJR0ZQ3510' where id=8; -update noar tt set b0='UNFTM5' where id=9; -update noar ti set b0='UNFTM5' where id=9; -update noar tt set b1='1K9PRBHKHVPOH5D2UJ0JSCPFCMN8VHW' where id=9; -update noar ti set b1='1K9PRBHKHVPOH5D2UJ0JSCPFCMN8VHW' where id=9; -update noar tt set b2='8J49AWQSEHADA09EQO6T8B2AYZYRIV39' where id=9; -update noar ti set b2='8J49AWQSEHADA09EQO6T8B2AYZYRIV39' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - b0 longblob not null, - b1 blob not null, - b2 longblob not null -) engine=tokudb; -insert into tt values (1,'','',''); -insert into tt values (2,'','',''); -insert into tt values (3,'','',''); -insert into tt values (4,'','',''); -insert into tt values (5,'','',''); -insert into tt values (6,'','',''); -insert into tt values (7,'','',''); -insert into tt values (8,'','',''); -insert into tt values (9,'','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set b0='4YR5OV2' where id=1; -update noar ti set b0='4YR5OV2' where id=1; -update noar tt set b1='TMH04BZ7KMMEJHF3XPKQZ1HK63AJQ' where id=1; -update noar ti set b1='TMH04BZ7KMMEJHF3XPKQZ1HK63AJQ' where id=1; -update noar tt set b2='4MSGH' where id=1; -update noar ti set b2='4MSGH' where id=1; -update noar tt set b0='HGP145XAWG5JIZQSGYYTBKNH0' where id=2; -update noar ti set b0='HGP145XAWG5JIZQSGYYTBKNH0' where id=2; -update noar tt set b1='4UFAD8B2A9FHOU8462HZ' where id=2; -update noar ti set b1='4UFAD8B2A9FHOU8462HZ' where id=2; -update noar tt set b2='O2Q77QH9BVOKYVVUCP4X' where id=2; -update noar ti set b2='O2Q77QH9BVOKYVVUCP4X' where id=2; -update noar tt set b0='DSINLDN0953FXRWNADCVP8LXLHH83ETA' where id=3; -update noar ti set b0='DSINLDN0953FXRWNADCVP8LXLHH83ETA' where id=3; -update noar tt set b1='8ZAIILLVTWNJBVV2Y7C2LP82M3PD' where id=3; -update noar ti set b1='8ZAIILLVTWNJBVV2Y7C2LP82M3PD' where id=3; -update noar tt set b2='HDVS3WLSS2OFR01C' where id=3; -update noar ti set b2='HDVS3WLSS2OFR01C' where id=3; -update noar tt set b0='66CG2YLNL4MAXVWW4SF2' where id=4; -update noar ti set b0='66CG2YLNL4MAXVWW4SF2' where id=4; -update noar tt set b1='3IS7GBN5JYNECRVUCVI7GIO86DB0R9' where id=4; -update noar ti set b1='3IS7GBN5JYNECRVUCVI7GIO86DB0R9' where id=4; -update noar tt set b2='FX2LL' where id=4; -update noar ti set b2='FX2LL' where id=4; -update noar tt set b0='7' where id=5; -update noar ti set b0='7' where id=5; -update noar tt set b1='RHBCYBESGLJNP9L' where id=5; -update noar ti set b1='RHBCYBESGLJNP9L' where id=5; -update noar tt set b2='DA9SKWUNC4LG' where id=5; -update noar ti set b2='DA9SKWUNC4LG' where id=5; -update noar tt set b0='1KEGXR44Y9MT9AX9YLPBI5DPT' where id=6; -update noar ti set b0='1KEGXR44Y9MT9AX9YLPBI5DPT' where id=6; -update noar tt set b1='4MW6F3KY6GDVOILZGGD4IZNFBKT' where id=6; -update noar ti set b1='4MW6F3KY6GDVOILZGGD4IZNFBKT' where id=6; -update noar tt set b2='FP9KL111TZD' where id=6; -update noar ti set b2='FP9KL111TZD' where id=6; -update noar tt set b0='B169' where id=7; -update noar ti set b0='B169' where id=7; -update noar tt set b1='SYTMF9HKR5OV04MSX' where id=7; -update noar ti set b1='SYTMF9HKR5OV04MSX' where id=7; -update noar tt set b2='8Z5MGK3Y3P2Y2JJ73WPG4TROKUYX6' where id=7; -update noar ti set b2='8Z5MGK3Y3P2Y2JJ73WPG4TROKUYX6' where id=7; -update noar tt set b0='UISFEX1OH47N6XLH8Z6R3UKDY' where id=8; -update noar ti set b0='UISFEX1OH47N6XLH8Z6R3UKDY' where id=8; -update noar tt set b1='TDWONE8LK71QK0Z2O4ACJEMSO' where id=8; -update noar ti set b1='TDWONE8LK71QK0Z2O4ACJEMSO' where id=8; -update noar tt set b2='7' where id=8; -update noar ti set b2='7' where id=8; -update noar tt set b0='1DIFDQ33SJ' where id=9; -update noar ti set b0='1DIFDQ33SJ' where id=9; -update noar tt set b1='YW' where id=9; -update noar ti set b1='YW' where id=9; -update noar tt set b2='2YBNPH4B4K9J' where id=9; -update noar ti set b2='2YBNPH4B4K9J' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - b0 longblob null, - b1 blob null, - b2 text null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set b0='QAXRZK5KTF05RY' where id=1; -update noar ti set b0='QAXRZK5KTF05RY' where id=1; -update noar tt set b1='0HVVWKQ9R2ZCY78VWGH4W8IO4F8BFI6' where id=1; -update noar ti set b1='0HVVWKQ9R2ZCY78VWGH4W8IO4F8BFI6' where id=1; -update noar tt set b2='BIME7O4DB5UYBR59F51VQ35G0X9SESE6' where id=1; -update noar ti set b2='BIME7O4DB5UYBR59F51VQ35G0X9SESE6' where id=1; -update noar tt set b0='Z4TH37UC8OQBPM9MKYEU' where id=2; -update noar ti set b0='Z4TH37UC8OQBPM9MKYEU' where id=2; -update noar tt set b1='CE6C8IAX4G6HHKABWNSX8' where id=2; -update noar ti set b1='CE6C8IAX4G6HHKABWNSX8' where id=2; -update noar tt set b2='K1LUOIOBRXYV2VXYK7O6T9P' where id=2; -update noar ti set b2='K1LUOIOBRXYV2VXYK7O6T9P' where id=2; -update noar tt set b0='0YXQE4HK7Z4' where id=3; -update noar ti set b0='0YXQE4HK7Z4' where id=3; -update noar tt set b1='DBQ2IKRP0ZSATUWH4FNF' where id=3; -update noar ti set b1='DBQ2IKRP0ZSATUWH4FNF' where id=3; -update noar tt set b2='UNM' where id=3; -update noar ti set b2='UNM' where id=3; -update noar tt set b0='8M6HWWJ5YW4Q0P2T0OCEHUTFWCKK' where id=4; -update noar ti set b0='8M6HWWJ5YW4Q0P2T0OCEHUTFWCKK' where id=4; -update noar tt set b1='8O' where id=4; -update noar ti set b1='8O' where id=4; -update noar tt set b2='K6AF' where id=4; -update noar ti set b2='K6AF' where id=4; -update noar tt set b0='W6IXIPZDQ1JKSJTMSXNF4XQ7XRJU' where id=5; -update noar ti set b0='W6IXIPZDQ1JKSJTMSXNF4XQ7XRJU' where id=5; -update noar tt set b1='7UF2W5SGY39DV93RIIRD5PB5DUWBQ47' where id=5; -update noar ti set b1='7UF2W5SGY39DV93RIIRD5PB5DUWBQ47' where id=5; -update noar tt set b2='VCCOWF' where id=5; -update noar ti set b2='VCCOWF' where id=5; -update noar tt set b0='QIQ2WRN2JG5' where id=6; -update noar ti set b0='QIQ2WRN2JG5' where id=6; -update noar tt set b1='9NVFK9Z7OD' where id=6; -update noar ti set b1='9NVFK9Z7OD' where id=6; -update noar tt set b2='HAPWZICVOCREFE1FYVZFVJ' where id=6; -update noar ti set b2='HAPWZICVOCREFE1FYVZFVJ' where id=6; -update noar tt set b0='TRKE5YSBPNENH9N' where id=7; -update noar ti set b0='TRKE5YSBPNENH9N' where id=7; -update noar tt set b1='AUOOJFP42U6846T5FRIZYY3' where id=7; -update noar ti set b1='AUOOJFP42U6846T5FRIZYY3' where id=7; -update noar tt set b2='5RC6PKF2' where id=7; -update noar ti set b2='5RC6PKF2' where id=7; -update noar tt set b0='Z5U3DBBB67QB' where id=8; -update noar ti set b0='Z5U3DBBB67QB' where id=8; -update noar tt set b1='B28TS61AQUL3E4WIKX8G6EJJ' where id=8; -update noar ti set b1='B28TS61AQUL3E4WIKX8G6EJJ' where id=8; -update noar tt set b2='WADXA8MBY2ZSFPJQCBVU8DJWY4YLFTV' where id=8; -update noar ti set b2='WADXA8MBY2ZSFPJQCBVU8DJWY4YLFTV' where id=8; -update noar tt set b0='3JY1IXFGGJV00F281OFEJX7EQ6CTB8J' where id=9; -update noar ti set b0='3JY1IXFGGJV00F281OFEJX7EQ6CTB8J' where id=9; -update noar tt set b1='YDQC52Q6V3QMAKCFI6TWHI6LD25E' where id=9; -update noar ti set b1='YDQC52Q6V3QMAKCFI6TWHI6LD25E' where id=9; -update noar tt set b2='ZM50PVKOJ1' where id=9; -update noar ti set b2='ZM50PVKOJ1' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - b0 longblob not null, - b1 blob not null, - b2 text not null -) engine=tokudb; -insert into tt values (1,'','',''); -insert into tt values (2,'','',''); -insert into tt values (3,'','',''); -insert into tt values (4,'','',''); -insert into tt values (5,'','',''); -insert into tt values (6,'','',''); -insert into tt values (7,'','',''); -insert into tt values (8,'','',''); -insert into tt values (9,'','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set b0='UIN6LSZOIQALWMSJYZGS9H' where id=1; -update noar ti set b0='UIN6LSZOIQALWMSJYZGS9H' where id=1; -update noar tt set b1='N6IIRBLCWO8C6OL8Z6A' where id=1; -update noar ti set b1='N6IIRBLCWO8C6OL8Z6A' where id=1; -update noar tt set b2='NJ1RWAC' where id=1; -update noar ti set b2='NJ1RWAC' where id=1; -update noar tt set b0='K691ZTWVMOCSR3DPI2' where id=2; -update noar ti set b0='K691ZTWVMOCSR3DPI2' where id=2; -update noar tt set b1='P8TYGH4OZ9NX95D19VYWI8' where id=2; -update noar ti set b1='P8TYGH4OZ9NX95D19VYWI8' where id=2; -update noar tt set b2='1CK27Z61SFUOJNEAODL3R8' where id=2; -update noar ti set b2='1CK27Z61SFUOJNEAODL3R8' where id=2; -update noar tt set b0='NGDGM03E25T' where id=3; -update noar ti set b0='NGDGM03E25T' where id=3; -update noar tt set b1='CS51C9XZP0S' where id=3; -update noar ti set b1='CS51C9XZP0S' where id=3; -update noar tt set b2='S0V6YWRP' where id=3; -update noar ti set b2='S0V6YWRP' where id=3; -update noar tt set b0='CP87S787CQJDQUI985I9E6' where id=4; -update noar ti set b0='CP87S787CQJDQUI985I9E6' where id=4; -update noar tt set b1='J8WW7NK1ELXNM323' where id=4; -update noar ti set b1='J8WW7NK1ELXNM323' where id=4; -update noar tt set b2='63IFZJ' where id=4; -update noar ti set b2='63IFZJ' where id=4; -update noar tt set b0='449VMKOWBMC80SYHI0C1HZ' where id=5; -update noar ti set b0='449VMKOWBMC80SYHI0C1HZ' where id=5; -update noar tt set b1='W8NUI2R1' where id=5; -update noar ti set b1='W8NUI2R1' where id=5; -update noar tt set b2='K89UZY6B1C4RBE' where id=5; -update noar ti set b2='K89UZY6B1C4RBE' where id=5; -update noar tt set b0='VUNXE4G05Y39HWW6X' where id=6; -update noar ti set b0='VUNXE4G05Y39HWW6X' where id=6; -update noar tt set b1='6WDUD8ZLY9UHNWO8UIG1OKMLMX' where id=6; -update noar ti set b1='6WDUD8ZLY9UHNWO8UIG1OKMLMX' where id=6; -update noar tt set b2='1GPF0Q' where id=6; -update noar ti set b2='1GPF0Q' where id=6; -update noar tt set b0='W9RXONTWFWDXVPPZQLP2NO2' where id=7; -update noar ti set b0='W9RXONTWFWDXVPPZQLP2NO2' where id=7; -update noar tt set b1='GFSKHX9AAAD5OM' where id=7; -update noar ti set b1='GFSKHX9AAAD5OM' where id=7; -update noar tt set b2='CRPQKMNOXWU56WQ5TF' where id=7; -update noar ti set b2='CRPQKMNOXWU56WQ5TF' where id=7; -update noar tt set b0='N9X1GX' where id=8; -update noar ti set b0='N9X1GX' where id=8; -update noar tt set b1='EDB9GS4SB40XX37XZOQNT04I' where id=8; -update noar ti set b1='EDB9GS4SB40XX37XZOQNT04I' where id=8; -update noar tt set b2='KVIN' where id=8; -update noar ti set b2='KVIN' where id=8; -update noar tt set b0='KC9L880VLFID96SBPHU6I' where id=9; -update noar ti set b0='KC9L880VLFID96SBPHU6I' where id=9; -update noar tt set b1='F1BU01H40ZR9WVSV3AA2' where id=9; -update noar ti set b1='F1BU01H40ZR9WVSV3AA2' where id=9; -update noar tt set b2='REJHZA0MTF5DIFXK2X8FKZV' where id=9; -update noar ti set b2='REJHZA0MTF5DIFXK2X8FKZV' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - b0 longblob null, - b1 mediumblob null, - b2 tinyblob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set b0='9WY4UVN1N6RW5' where id=1; -update noar ti set b0='9WY4UVN1N6RW5' where id=1; -update noar tt set b1='FVM6Z7YO4528HX' where id=1; -update noar ti set b1='FVM6Z7YO4528HX' where id=1; -update noar tt set b2='TNYUO4' where id=1; -update noar ti set b2='TNYUO4' where id=1; -update noar tt set b0='EIDJG721JXO29ITLO' where id=2; -update noar ti set b0='EIDJG721JXO29ITLO' where id=2; -update noar tt set b1='QEB2334H' where id=2; -update noar ti set b1='QEB2334H' where id=2; -update noar tt set b2='DCOZ8GG0VL7481JMB2CWHEU7ZOWD' where id=2; -update noar ti set b2='DCOZ8GG0VL7481JMB2CWHEU7ZOWD' where id=2; -update noar tt set b0='LVTV0WFBRWN461VD37' where id=3; -update noar ti set b0='LVTV0WFBRWN461VD37' where id=3; -update noar tt set b1='9' where id=3; -update noar ti set b1='9' where id=3; -update noar tt set b2='LQBPEW1ZQZNVFJZI8RN6' where id=3; -update noar ti set b2='LQBPEW1ZQZNVFJZI8RN6' where id=3; -update noar tt set b0='IH0WQNH' where id=4; -update noar ti set b0='IH0WQNH' where id=4; -update noar tt set b1='UA4K6FIFQV' where id=4; -update noar ti set b1='UA4K6FIFQV' where id=4; -update noar tt set b2='CL' where id=4; -update noar ti set b2='CL' where id=4; -update noar tt set b0='9VQ7PPXO667V7E94PYUFQK4FL' where id=5; -update noar ti set b0='9VQ7PPXO667V7E94PYUFQK4FL' where id=5; -update noar tt set b1='52EY8YFMX8X3M06IL' where id=5; -update noar ti set b1='52EY8YFMX8X3M06IL' where id=5; -update noar tt set b2='2RH9M1Y' where id=5; -update noar ti set b2='2RH9M1Y' where id=5; -update noar tt set b0='HZ16E873PXHA3K8VNRAD1' where id=6; -update noar ti set b0='HZ16E873PXHA3K8VNRAD1' where id=6; -update noar tt set b1='9RO5173ZYP' where id=6; -update noar ti set b1='9RO5173ZYP' where id=6; -update noar tt set b2='CVTKD0N0YFRNCB5DZF2HXA' where id=6; -update noar ti set b2='CVTKD0N0YFRNCB5DZF2HXA' where id=6; -update noar tt set b0='BX' where id=7; -update noar ti set b0='BX' where id=7; -update noar tt set b1='8PW8ADO9HBH' where id=7; -update noar ti set b1='8PW8ADO9HBH' where id=7; -update noar tt set b2='93C5R66R9BFTK1YNQ' where id=7; -update noar ti set b2='93C5R66R9BFTK1YNQ' where id=7; -update noar tt set b0='SK49SRN2SZB5HCUMI7HU' where id=8; -update noar ti set b0='SK49SRN2SZB5HCUMI7HU' where id=8; -update noar tt set b1='I6ZT6F73PDU80RMC38DA' where id=8; -update noar ti set b1='I6ZT6F73PDU80RMC38DA' where id=8; -update noar tt set b2='WGOSTZH26245ZYRS46ZPOR' where id=8; -update noar ti set b2='WGOSTZH26245ZYRS46ZPOR' where id=8; -update noar tt set b0='H1' where id=9; -update noar ti set b0='H1' where id=9; -update noar tt set b1='6VEFOJINMX1U5DT7' where id=9; -update noar ti set b1='6VEFOJINMX1U5DT7' where id=9; -update noar tt set b2='68FL5VYHZ89SKA645Y0LKWD' where id=9; -update noar ti set b2='68FL5VYHZ89SKA645Y0LKWD' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - b0 longblob not null, - b1 mediumblob not null, - b2 tinyblob not null -) engine=tokudb; -insert into tt values (1,'','',''); -insert into tt values (2,'','',''); -insert into tt values (3,'','',''); -insert into tt values (4,'','',''); -insert into tt values (5,'','',''); -insert into tt values (6,'','',''); -insert into tt values (7,'','',''); -insert into tt values (8,'','',''); -insert into tt values (9,'','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set b0='8DQW5WBMTRXJY9KRANK8H3YMKLZ30K1' where id=1; -update noar ti set b0='8DQW5WBMTRXJY9KRANK8H3YMKLZ30K1' where id=1; -update noar tt set b1='A98Z60U1JET53XA09YSD15QSE9YL' where id=1; -update noar ti set b1='A98Z60U1JET53XA09YSD15QSE9YL' where id=1; -update noar tt set b2='7AA264A0XNUBWHB2DHW' where id=1; -update noar ti set b2='7AA264A0XNUBWHB2DHW' where id=1; -update noar tt set b0='M' where id=2; -update noar ti set b0='M' where id=2; -update noar tt set b1='KJ89S07OE2IMKF924P2M2UF9' where id=2; -update noar ti set b1='KJ89S07OE2IMKF924P2M2UF9' where id=2; -update noar tt set b2='ICM92DK4' where id=2; -update noar ti set b2='ICM92DK4' where id=2; -update noar tt set b0='8NMQ1GGNDVGKP0SGP2GSGQNC' where id=3; -update noar ti set b0='8NMQ1GGNDVGKP0SGP2GSGQNC' where id=3; -update noar tt set b1='GP1QPEHS59MT1ZDCYJHWJOG7NHPE7' where id=3; -update noar ti set b1='GP1QPEHS59MT1ZDCYJHWJOG7NHPE7' where id=3; -update noar tt set b2='6OX5W6789XIVV010LA' where id=3; -update noar ti set b2='6OX5W6789XIVV010LA' where id=3; -update noar tt set b0='0RWA0540MONOTNWPIWA50VFGDHEM4SS' where id=4; -update noar ti set b0='0RWA0540MONOTNWPIWA50VFGDHEM4SS' where id=4; -update noar tt set b1='OW7' where id=4; -update noar ti set b1='OW7' where id=4; -update noar tt set b2='U2CQK2WYCG1L913208IET42' where id=4; -update noar ti set b2='U2CQK2WYCG1L913208IET42' where id=4; -update noar tt set b0='KAYKUL0J9OQ45B1' where id=5; -update noar ti set b0='KAYKUL0J9OQ45B1' where id=5; -update noar tt set b1='R7H30DYSCZE6QJQWOGW53RBLZY49' where id=5; -update noar ti set b1='R7H30DYSCZE6QJQWOGW53RBLZY49' where id=5; -update noar tt set b2='A8TUNVR1F0F1AQA4XA5M860' where id=5; -update noar ti set b2='A8TUNVR1F0F1AQA4XA5M860' where id=5; -update noar tt set b0='9F2A1G' where id=6; -update noar ti set b0='9F2A1G' where id=6; -update noar tt set b1='58UQG6XST8Z0C9YY' where id=6; -update noar ti set b1='58UQG6XST8Z0C9YY' where id=6; -update noar tt set b2='782RIGIQPIF8P116W85F' where id=6; -update noar ti set b2='782RIGIQPIF8P116W85F' where id=6; -update noar tt set b0='A7U4LM1J265LO' where id=7; -update noar ti set b0='A7U4LM1J265LO' where id=7; -update noar tt set b1='F690H' where id=7; -update noar ti set b1='F690H' where id=7; -update noar tt set b2='B312GJFW7NG002WBK' where id=7; -update noar ti set b2='B312GJFW7NG002WBK' where id=7; -update noar tt set b0='EFP9BPPSA1X0339VXXBOT' where id=8; -update noar ti set b0='EFP9BPPSA1X0339VXXBOT' where id=8; -update noar tt set b1='6HL7H1H7FL5EH77D' where id=8; -update noar ti set b1='6HL7H1H7FL5EH77D' where id=8; -update noar tt set b2='CL' where id=8; -update noar ti set b2='CL' where id=8; -update noar tt set b0='22OS4QLQOSGS6BOX' where id=9; -update noar ti set b0='22OS4QLQOSGS6BOX' where id=9; -update noar tt set b1='S05M97K' where id=9; -update noar ti set b1='S05M97K' where id=9; -update noar tt set b2='93VZTP0QCC5N5NGRQI' where id=9; -update noar ti set b2='93VZTP0QCC5N5NGRQI' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - b0 longblob null, - b1 mediumblob null, - b2 blob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set b0='7KVAM' where id=1; -update noar ti set b0='7KVAM' where id=1; -update noar tt set b1='AG7GAKAU8VXENX9HHIS7WSZRG6UWC9' where id=1; -update noar ti set b1='AG7GAKAU8VXENX9HHIS7WSZRG6UWC9' where id=1; -update noar tt set b2='JBKF2DYN1GF9P' where id=1; -update noar ti set b2='JBKF2DYN1GF9P' where id=1; -update noar tt set b0='1HU5' where id=2; -update noar ti set b0='1HU5' where id=2; -update noar tt set b1='0D59PARTH7HZ625LCZJMUO' where id=2; -update noar ti set b1='0D59PARTH7HZ625LCZJMUO' where id=2; -update noar tt set b2='VNTG6FNKZ5V22GZLR3A80TYZPI2' where id=2; -update noar ti set b2='VNTG6FNKZ5V22GZLR3A80TYZPI2' where id=2; -update noar tt set b0='HBGYWSH2QZDTH6VGDO1W2RF70GW' where id=3; -update noar ti set b0='HBGYWSH2QZDTH6VGDO1W2RF70GW' where id=3; -update noar tt set b1='V629VCCC3OVMPE1' where id=3; -update noar ti set b1='V629VCCC3OVMPE1' where id=3; -update noar tt set b2='2J95W41W66' where id=3; -update noar ti set b2='2J95W41W66' where id=3; -update noar tt set b0='XYYF16JGDCI2JYLYLWT8K7YFG' where id=4; -update noar ti set b0='XYYF16JGDCI2JYLYLWT8K7YFG' where id=4; -update noar tt set b1='M6FK0245FQ7MZLB7GQSFIL' where id=4; -update noar ti set b1='M6FK0245FQ7MZLB7GQSFIL' where id=4; -update noar tt set b2='FQRK' where id=4; -update noar ti set b2='FQRK' where id=4; -update noar tt set b0='HU2873TTB' where id=5; -update noar ti set b0='HU2873TTB' where id=5; -update noar tt set b1='27IQQ' where id=5; -update noar ti set b1='27IQQ' where id=5; -update noar tt set b2='Y8' where id=5; -update noar ti set b2='Y8' where id=5; -update noar tt set b0='7H' where id=6; -update noar ti set b0='7H' where id=6; -update noar tt set b1='24LS7IHXF' where id=6; -update noar ti set b1='24LS7IHXF' where id=6; -update noar tt set b2='T' where id=6; -update noar ti set b2='T' where id=6; -update noar tt set b0='0Z62IIV4ST' where id=7; -update noar ti set b0='0Z62IIV4ST' where id=7; -update noar tt set b1='7AV29C1IU984FXHCSRGWFSAX' where id=7; -update noar ti set b1='7AV29C1IU984FXHCSRGWFSAX' where id=7; -update noar tt set b2='U2WOU7' where id=7; -update noar ti set b2='U2WOU7' where id=7; -update noar tt set b0='F1FKZMXR' where id=8; -update noar ti set b0='F1FKZMXR' where id=8; -update noar tt set b1='WCS0NN0UFCT' where id=8; -update noar ti set b1='WCS0NN0UFCT' where id=8; -update noar tt set b2='PU2U87VVY90Y' where id=8; -update noar ti set b2='PU2U87VVY90Y' where id=8; -update noar tt set b0='P4IWAARBSZ1PUB' where id=9; -update noar ti set b0='P4IWAARBSZ1PUB' where id=9; -update noar tt set b1='KTQD8GIMBS2FP1PTJKKXFRSWAN6N' where id=9; -update noar ti set b1='KTQD8GIMBS2FP1PTJKKXFRSWAN6N' where id=9; -update noar tt set b2='N8YRTE0KJR0RJU' where id=9; -update noar ti set b2='N8YRTE0KJR0RJU' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - b0 longblob not null, - b1 mediumblob not null, - b2 blob not null -) engine=tokudb; -insert into tt values (1,'','',''); -insert into tt values (2,'','',''); -insert into tt values (3,'','',''); -insert into tt values (4,'','',''); -insert into tt values (5,'','',''); -insert into tt values (6,'','',''); -insert into tt values (7,'','',''); -insert into tt values (8,'','',''); -insert into tt values (9,'','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set b0='4X44KD5PUV2AB59GLIS' where id=1; -update noar ti set b0='4X44KD5PUV2AB59GLIS' where id=1; -update noar tt set b1='GUZFZEOPFFMR2CBAZM1IZQTD' where id=1; -update noar ti set b1='GUZFZEOPFFMR2CBAZM1IZQTD' where id=1; -update noar tt set b2='Q72YBK0TSJYHHY8PU' where id=1; -update noar ti set b2='Q72YBK0TSJYHHY8PU' where id=1; -update noar tt set b0='K19LDDP5C' where id=2; -update noar ti set b0='K19LDDP5C' where id=2; -update noar tt set b1='J6OBZKSTJ2JMO6QON' where id=2; -update noar ti set b1='J6OBZKSTJ2JMO6QON' where id=2; -update noar tt set b2='UDMV2VF31' where id=2; -update noar ti set b2='UDMV2VF31' where id=2; -update noar tt set b0='L5WGNU4WNIWH' where id=3; -update noar ti set b0='L5WGNU4WNIWH' where id=3; -update noar tt set b1='K75U2I' where id=3; -update noar ti set b1='K75U2I' where id=3; -update noar tt set b2='NZ55E' where id=3; -update noar ti set b2='NZ55E' where id=3; -update noar tt set b0='YQOB' where id=4; -update noar ti set b0='YQOB' where id=4; -update noar tt set b1='NXRM03CJW9' where id=4; -update noar ti set b1='NXRM03CJW9' where id=4; -update noar tt set b2='JGLE0BDVC72BQL379W' where id=4; -update noar ti set b2='JGLE0BDVC72BQL379W' where id=4; -update noar tt set b0='SYL3LQZYLJXJADASRPY7UUOO494HU' where id=5; -update noar ti set b0='SYL3LQZYLJXJADASRPY7UUOO494HU' where id=5; -update noar tt set b1='74NYBECENCTMECVHTANU0U' where id=5; -update noar ti set b1='74NYBECENCTMECVHTANU0U' where id=5; -update noar tt set b2='I1LS6BVPIU6AAFK2' where id=5; -update noar ti set b2='I1LS6BVPIU6AAFK2' where id=5; -update noar tt set b0='MCBSWZ3K3BOLH688CUKIBWS8ACODDFZ' where id=6; -update noar ti set b0='MCBSWZ3K3BOLH688CUKIBWS8ACODDFZ' where id=6; -update noar tt set b1='WIFT09PZWS2C42Q2PO6G2JF7QBEFO0' where id=6; -update noar ti set b1='WIFT09PZWS2C42Q2PO6G2JF7QBEFO0' where id=6; -update noar tt set b2='RYC8MM85X2QJE4OGS247UK42WU4X' where id=6; -update noar ti set b2='RYC8MM85X2QJE4OGS247UK42WU4X' where id=6; -update noar tt set b0='KVPZC4ZXTAOMSINCDGVNJ1OI' where id=7; -update noar ti set b0='KVPZC4ZXTAOMSINCDGVNJ1OI' where id=7; -update noar tt set b1='S60E9CU30Z4MYLX4' where id=7; -update noar ti set b1='S60E9CU30Z4MYLX4' where id=7; -update noar tt set b2='DW90E' where id=7; -update noar ti set b2='DW90E' where id=7; -update noar tt set b0='8YLSKDT5MR0TGVFG5WE3EORCEE' where id=8; -update noar ti set b0='8YLSKDT5MR0TGVFG5WE3EORCEE' where id=8; -update noar tt set b1='XLJSPV40KBLNNML' where id=8; -update noar ti set b1='XLJSPV40KBLNNML' where id=8; -update noar tt set b2='3TWZ1ZI' where id=8; -update noar ti set b2='3TWZ1ZI' where id=8; -update noar tt set b0='AOS56W' where id=9; -update noar ti set b0='AOS56W' where id=9; -update noar tt set b1='P379HOGZL9OGNTP23PUBSELFL' where id=9; -update noar ti set b1='P379HOGZL9OGNTP23PUBSELFL' where id=9; -update noar tt set b2='6NX5LO2H7U447EB34ZTX5' where id=9; -update noar ti set b2='6NX5LO2H7U447EB34ZTX5' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - b0 longblob null, - b1 mediumblob null, - b2 mediumblob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set b0='2HRCAP0905VZZN' where id=1; -update noar ti set b0='2HRCAP0905VZZN' where id=1; -update noar tt set b1='AX5W379S76BX' where id=1; -update noar ti set b1='AX5W379S76BX' where id=1; -update noar tt set b2='U3RA' where id=1; -update noar ti set b2='U3RA' where id=1; -update noar tt set b0='9G' where id=2; -update noar ti set b0='9G' where id=2; -update noar tt set b1='EKD8MUW0VE43O8YX54TZLOBSV2BC' where id=2; -update noar ti set b1='EKD8MUW0VE43O8YX54TZLOBSV2BC' where id=2; -update noar tt set b2='N63O2K45Y8G1SOR' where id=2; -update noar ti set b2='N63O2K45Y8G1SOR' where id=2; -update noar tt set b0='0MG0AN' where id=3; -update noar ti set b0='0MG0AN' where id=3; -update noar tt set b1='G6U9MCHSN76DXGP2DJ58T7JW' where id=3; -update noar ti set b1='G6U9MCHSN76DXGP2DJ58T7JW' where id=3; -update noar tt set b2='T005F4' where id=3; -update noar ti set b2='T005F4' where id=3; -update noar tt set b0='4PRQXZ9UI4HQYZ0C2L' where id=4; -update noar ti set b0='4PRQXZ9UI4HQYZ0C2L' where id=4; -update noar tt set b1='MF75X11414E' where id=4; -update noar ti set b1='MF75X11414E' where id=4; -update noar tt set b2='YGZUB2BJ72L24KA' where id=4; -update noar ti set b2='YGZUB2BJ72L24KA' where id=4; -update noar tt set b0='OTTOY3SL23GRFCG' where id=5; -update noar ti set b0='OTTOY3SL23GRFCG' where id=5; -update noar tt set b1='D457VTVI86PIOT0NHTU' where id=5; -update noar ti set b1='D457VTVI86PIOT0NHTU' where id=5; -update noar tt set b2='EJ4MQJGBAFHJGWKAZO2SDV' where id=5; -update noar ti set b2='EJ4MQJGBAFHJGWKAZO2SDV' where id=5; -update noar tt set b0='N86' where id=6; -update noar ti set b0='N86' where id=6; -update noar tt set b1='0JLVBVQ6HBOA3L' where id=6; -update noar ti set b1='0JLVBVQ6HBOA3L' where id=6; -update noar tt set b2='P52JAO' where id=6; -update noar ti set b2='P52JAO' where id=6; -update noar tt set b0='CIXD6375TYSKN2D0B2AM09NYD8FAJ6' where id=7; -update noar ti set b0='CIXD6375TYSKN2D0B2AM09NYD8FAJ6' where id=7; -update noar tt set b1='5DPK0NP' where id=7; -update noar ti set b1='5DPK0NP' where id=7; -update noar tt set b2='3ISKSVQO9UUWV70MZB' where id=7; -update noar ti set b2='3ISKSVQO9UUWV70MZB' where id=7; -update noar tt set b0='VMSZNXG67HA1H2PE90YJ9HI0P' where id=8; -update noar ti set b0='VMSZNXG67HA1H2PE90YJ9HI0P' where id=8; -update noar tt set b1='IHCGN1QMFZZ9IF81OAREN93IWONP4' where id=8; -update noar ti set b1='IHCGN1QMFZZ9IF81OAREN93IWONP4' where id=8; -update noar tt set b2='2Y7IVAILB1AEE4WS23' where id=8; -update noar ti set b2='2Y7IVAILB1AEE4WS23' where id=8; -update noar tt set b0='KQJY9VW30LCGNUBT6K8BKPRAHWGFWLT' where id=9; -update noar ti set b0='KQJY9VW30LCGNUBT6K8BKPRAHWGFWLT' where id=9; -update noar tt set b1='55SQU999SQM' where id=9; -update noar ti set b1='55SQU999SQM' where id=9; -update noar tt set b2='5Q' where id=9; -update noar ti set b2='5Q' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - b0 longblob not null, - b1 mediumblob not null, - b2 mediumblob not null -) engine=tokudb; -insert into tt values (1,'','',''); -insert into tt values (2,'','',''); -insert into tt values (3,'','',''); -insert into tt values (4,'','',''); -insert into tt values (5,'','',''); -insert into tt values (6,'','',''); -insert into tt values (7,'','',''); -insert into tt values (8,'','',''); -insert into tt values (9,'','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set b0='FA1E95MXS945VHWE13CFX2IM1' where id=1; -update noar ti set b0='FA1E95MXS945VHWE13CFX2IM1' where id=1; -update noar tt set b1='7RIHIQWB0OGWMN' where id=1; -update noar ti set b1='7RIHIQWB0OGWMN' where id=1; -update noar tt set b2='O5T7ZU9MUCT7RQP4' where id=1; -update noar ti set b2='O5T7ZU9MUCT7RQP4' where id=1; -update noar tt set b0='I1594G1NTW' where id=2; -update noar ti set b0='I1594G1NTW' where id=2; -update noar tt set b1='XMJGF9BO5T67ZEDM0FDT832N4HJE' where id=2; -update noar ti set b1='XMJGF9BO5T67ZEDM0FDT832N4HJE' where id=2; -update noar tt set b2='5JFWAF4NVPYNN7BZQQKW3Y0R1G' where id=2; -update noar ti set b2='5JFWAF4NVPYNN7BZQQKW3Y0R1G' where id=2; -update noar tt set b0='INBO28LEJ5522W2HGPJNZV' where id=3; -update noar ti set b0='INBO28LEJ5522W2HGPJNZV' where id=3; -update noar tt set b1='3GV7KD1RP3W' where id=3; -update noar ti set b1='3GV7KD1RP3W' where id=3; -update noar tt set b2='KQ8' where id=3; -update noar ti set b2='KQ8' where id=3; -update noar tt set b0='8SAC48T7RQV4NE66GSC4SWHR45F50T5' where id=4; -update noar ti set b0='8SAC48T7RQV4NE66GSC4SWHR45F50T5' where id=4; -update noar tt set b1='Y3EOTNDEXTG' where id=4; -update noar ti set b1='Y3EOTNDEXTG' where id=4; -update noar tt set b2='F23Q' where id=4; -update noar ti set b2='F23Q' where id=4; -update noar tt set b0='BQYNBGCE8IG0EQ6WY0QUYE5BJZ9B3' where id=5; -update noar ti set b0='BQYNBGCE8IG0EQ6WY0QUYE5BJZ9B3' where id=5; -update noar tt set b1='CCA67' where id=5; -update noar ti set b1='CCA67' where id=5; -update noar tt set b2='BMPL9SFXQA4U53F9TZFQ8A' where id=5; -update noar ti set b2='BMPL9SFXQA4U53F9TZFQ8A' where id=5; -update noar tt set b0='Z' where id=6; -update noar ti set b0='Z' where id=6; -update noar tt set b1='RKZ85JF1DHJGFGEL3' where id=6; -update noar ti set b1='RKZ85JF1DHJGFGEL3' where id=6; -update noar tt set b2='HUKZT97AVB9FG' where id=6; -update noar ti set b2='HUKZT97AVB9FG' where id=6; -update noar tt set b0='F5PIC6IVDAIG' where id=7; -update noar ti set b0='F5PIC6IVDAIG' where id=7; -update noar tt set b1='B8DC39H7HL857V4LIDV1H9AADDRAPRRN' where id=7; -update noar ti set b1='B8DC39H7HL857V4LIDV1H9AADDRAPRRN' where id=7; -update noar tt set b2='IBMAFBKRP9110OT3' where id=7; -update noar ti set b2='IBMAFBKRP9110OT3' where id=7; -update noar tt set b0='7XCQKY8QM4LD7' where id=8; -update noar ti set b0='7XCQKY8QM4LD7' where id=8; -update noar tt set b1='FNJW' where id=8; -update noar ti set b1='FNJW' where id=8; -update noar tt set b2='T8X8C4KNVP12Y0OSPGNJ' where id=8; -update noar ti set b2='T8X8C4KNVP12Y0OSPGNJ' where id=8; -update noar tt set b0='OTF42VCU9TVRLL24AINGU5L' where id=9; -update noar ti set b0='OTF42VCU9TVRLL24AINGU5L' where id=9; -update noar tt set b1='6CIR6DVLXFNI58BS7YN8LFWOJB8XI4C' where id=9; -update noar ti set b1='6CIR6DVLXFNI58BS7YN8LFWOJB8XI4C' where id=9; -update noar tt set b2='7XOC4WSG9PWL' where id=9; -update noar ti set b2='7XOC4WSG9PWL' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - b0 longblob null, - b1 mediumblob null, - b2 longblob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set b0='7P7VWR46M3K33Z3BYF' where id=1; -update noar ti set b0='7P7VWR46M3K33Z3BYF' where id=1; -update noar tt set b1='0IYUYTC8SX5UK5' where id=1; -update noar ti set b1='0IYUYTC8SX5UK5' where id=1; -update noar tt set b2='NXB1JU8NQJ85USRBVRFAF0N7XGD' where id=1; -update noar ti set b2='NXB1JU8NQJ85USRBVRFAF0N7XGD' where id=1; -update noar tt set b0='LYZDZIU8T1C9KNFPX8TGD32YGBWVZK' where id=2; -update noar ti set b0='LYZDZIU8T1C9KNFPX8TGD32YGBWVZK' where id=2; -update noar tt set b1='SKGQPIWP9974I3CMY90UHE423JM' where id=2; -update noar ti set b1='SKGQPIWP9974I3CMY90UHE423JM' where id=2; -update noar tt set b2='69WQFYV4PC0LBPVMKFF' where id=2; -update noar ti set b2='69WQFYV4PC0LBPVMKFF' where id=2; -update noar tt set b0='A6V959GEP86BDYAN373' where id=3; -update noar ti set b0='A6V959GEP86BDYAN373' where id=3; -update noar tt set b1='XJPR38131Q1BQR4FIW57YNJ4O' where id=3; -update noar ti set b1='XJPR38131Q1BQR4FIW57YNJ4O' where id=3; -update noar tt set b2='ES6XBCEW90EBS' where id=3; -update noar ti set b2='ES6XBCEW90EBS' where id=3; -update noar tt set b0='DYYUF2KGPQCUKCGW1HGVU9EFOH3BEKRH' where id=4; -update noar ti set b0='DYYUF2KGPQCUKCGW1HGVU9EFOH3BEKRH' where id=4; -update noar tt set b1='T' where id=4; -update noar ti set b1='T' where id=4; -update noar tt set b2='8806HIZCYWQGP84Y' where id=4; -update noar ti set b2='8806HIZCYWQGP84Y' where id=4; -update noar tt set b0='K66RLI8C8ZBW' where id=5; -update noar ti set b0='K66RLI8C8ZBW' where id=5; -update noar tt set b1='VZ' where id=5; -update noar ti set b1='VZ' where id=5; -update noar tt set b2='R6V30DDMUPYS1OIVE6E8R1VBVP6DA4' where id=5; -update noar ti set b2='R6V30DDMUPYS1OIVE6E8R1VBVP6DA4' where id=5; -update noar tt set b0='O1SAV3HZIXG' where id=6; -update noar ti set b0='O1SAV3HZIXG' where id=6; -update noar tt set b1='UP62E8JWIIRCVK74XPUCI' where id=6; -update noar ti set b1='UP62E8JWIIRCVK74XPUCI' where id=6; -update noar tt set b2='Y4D' where id=6; -update noar ti set b2='Y4D' where id=6; -update noar tt set b0='V' where id=7; -update noar ti set b0='V' where id=7; -update noar tt set b1='YCI' where id=7; -update noar ti set b1='YCI' where id=7; -update noar tt set b2='R' where id=7; -update noar ti set b2='R' where id=7; -update noar tt set b0='FMBEURZ2KGJ5PS380XBMU6Y' where id=8; -update noar ti set b0='FMBEURZ2KGJ5PS380XBMU6Y' where id=8; -update noar tt set b1='T106L5CAST5PFE0VS623TFGEYZZ32C' where id=8; -update noar ti set b1='T106L5CAST5PFE0VS623TFGEYZZ32C' where id=8; -update noar tt set b2='385N53THZY79SF5RIM5ODBXDAKJ' where id=8; -update noar ti set b2='385N53THZY79SF5RIM5ODBXDAKJ' where id=8; -update noar tt set b0='QC5RZNFNU7UXGLT8FCDP9E7JY4ZWE0OE' where id=9; -update noar ti set b0='QC5RZNFNU7UXGLT8FCDP9E7JY4ZWE0OE' where id=9; -update noar tt set b1='NP2THCZJI400L9HELKYX' where id=9; -update noar ti set b1='NP2THCZJI400L9HELKYX' where id=9; -update noar tt set b2='28GR' where id=9; -update noar ti set b2='28GR' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - b0 longblob not null, - b1 mediumblob not null, - b2 longblob not null -) engine=tokudb; -insert into tt values (1,'','',''); -insert into tt values (2,'','',''); -insert into tt values (3,'','',''); -insert into tt values (4,'','',''); -insert into tt values (5,'','',''); -insert into tt values (6,'','',''); -insert into tt values (7,'','',''); -insert into tt values (8,'','',''); -insert into tt values (9,'','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set b0='9WCJKFAZWB2KC' where id=1; -update noar ti set b0='9WCJKFAZWB2KC' where id=1; -update noar tt set b1='8TEX' where id=1; -update noar ti set b1='8TEX' where id=1; -update noar tt set b2='J1' where id=1; -update noar ti set b2='J1' where id=1; -update noar tt set b0='J0NC0MH' where id=2; -update noar ti set b0='J0NC0MH' where id=2; -update noar tt set b1='E00Y2O6J02D7RWMT' where id=2; -update noar ti set b1='E00Y2O6J02D7RWMT' where id=2; -update noar tt set b2='53IQCEG9BGXA4' where id=2; -update noar ti set b2='53IQCEG9BGXA4' where id=2; -update noar tt set b0='A499G37C' where id=3; -update noar ti set b0='A499G37C' where id=3; -update noar tt set b1='LO3X3BK4EL1RGMUWHQQERQXG' where id=3; -update noar ti set b1='LO3X3BK4EL1RGMUWHQQERQXG' where id=3; -update noar tt set b2='A7CV61DBVY33PLHL7MJD1AGVJNX0S2' where id=3; -update noar ti set b2='A7CV61DBVY33PLHL7MJD1AGVJNX0S2' where id=3; -update noar tt set b0='O5WZ459K4UF' where id=4; -update noar ti set b0='O5WZ459K4UF' where id=4; -update noar tt set b1='GLWJT8EO' where id=4; -update noar ti set b1='GLWJT8EO' where id=4; -update noar tt set b2='JI1RAX70CHL7IJRXPJ' where id=4; -update noar ti set b2='JI1RAX70CHL7IJRXPJ' where id=4; -update noar tt set b0='I39' where id=5; -update noar ti set b0='I39' where id=5; -update noar tt set b1='V096YO741VT2C33N4108QYSYHIGH' where id=5; -update noar ti set b1='V096YO741VT2C33N4108QYSYHIGH' where id=5; -update noar tt set b2='MV9JJ23SGNJ3IXJIDWN9HEUA50WZRY2' where id=5; -update noar ti set b2='MV9JJ23SGNJ3IXJIDWN9HEUA50WZRY2' where id=5; -update noar tt set b0='CEGX6WPZ0GGA' where id=6; -update noar ti set b0='CEGX6WPZ0GGA' where id=6; -update noar tt set b1='W' where id=6; -update noar ti set b1='W' where id=6; -update noar tt set b2='AVEHC3N2865I' where id=6; -update noar ti set b2='AVEHC3N2865I' where id=6; -update noar tt set b0='TWT3XE24F8CPDECQ' where id=7; -update noar ti set b0='TWT3XE24F8CPDECQ' where id=7; -update noar tt set b1='ED27COR9YM5ZA' where id=7; -update noar ti set b1='ED27COR9YM5ZA' where id=7; -update noar tt set b2='EAY35MSNQLGHD3LS2FV30J7JE1Y' where id=7; -update noar ti set b2='EAY35MSNQLGHD3LS2FV30J7JE1Y' where id=7; -update noar tt set b0='MW31JXELXP51Q754' where id=8; -update noar ti set b0='MW31JXELXP51Q754' where id=8; -update noar tt set b1='W8BGOASW' where id=8; -update noar ti set b1='W8BGOASW' where id=8; -update noar tt set b2='ZEMOYL4B2JI40MT70A' where id=8; -update noar ti set b2='ZEMOYL4B2JI40MT70A' where id=8; -update noar tt set b0='7F8R2KBX4NN1NYIDQ9IP3D' where id=9; -update noar ti set b0='7F8R2KBX4NN1NYIDQ9IP3D' where id=9; -update noar tt set b1='S07MWS3K0' where id=9; -update noar ti set b1='S07MWS3K0' where id=9; -update noar tt set b2='KPD1BFOIDVMWCY8RBXW5EA' where id=9; -update noar ti set b2='KPD1BFOIDVMWCY8RBXW5EA' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - b0 longblob null, - b1 mediumblob null, - b2 text null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set b0='0S' where id=1; -update noar ti set b0='0S' where id=1; -update noar tt set b1='Y8SP5F1GMZULHWT5' where id=1; -update noar ti set b1='Y8SP5F1GMZULHWT5' where id=1; -update noar tt set b2='YMWNAFC5PM7ZSZMTV' where id=1; -update noar ti set b2='YMWNAFC5PM7ZSZMTV' where id=1; -update noar tt set b0='GN102Z3FDV5KJ5F4RTSGNL08HN7O3' where id=2; -update noar ti set b0='GN102Z3FDV5KJ5F4RTSGNL08HN7O3' where id=2; -update noar tt set b1='HR1PNWRJGCBVZ5J9QN7' where id=2; -update noar ti set b1='HR1PNWRJGCBVZ5J9QN7' where id=2; -update noar tt set b2='URZ73ZIZO5F' where id=2; -update noar ti set b2='URZ73ZIZO5F' where id=2; -update noar tt set b0='NXPQ8ZCKPO96L' where id=3; -update noar ti set b0='NXPQ8ZCKPO96L' where id=3; -update noar tt set b1='72X8GEOOW9UULY7KVQ8EBBG' where id=3; -update noar ti set b1='72X8GEOOW9UULY7KVQ8EBBG' where id=3; -update noar tt set b2='42MODMQL9YNUQYX32P2HHROR1G5' where id=3; -update noar ti set b2='42MODMQL9YNUQYX32P2HHROR1G5' where id=3; -update noar tt set b0='DN3X7ZX2HT' where id=4; -update noar ti set b0='DN3X7ZX2HT' where id=4; -update noar tt set b1='3KYIR' where id=4; -update noar ti set b1='3KYIR' where id=4; -update noar tt set b2='BFEVJMPSSZK9FOUO' where id=4; -update noar ti set b2='BFEVJMPSSZK9FOUO' where id=4; -update noar tt set b0='TYBWSAX4R77B15BO' where id=5; -update noar ti set b0='TYBWSAX4R77B15BO' where id=5; -update noar tt set b1='6O8WFI6INKLBFTWPAJJNP26UXU' where id=5; -update noar ti set b1='6O8WFI6INKLBFTWPAJJNP26UXU' where id=5; -update noar tt set b2='SA97NF74WKQBKL1QU666AUUBDU3WAN' where id=5; -update noar ti set b2='SA97NF74WKQBKL1QU666AUUBDU3WAN' where id=5; -update noar tt set b0='JMXI7' where id=6; -update noar ti set b0='JMXI7' where id=6; -update noar tt set b1='5IKDW03TKYOG6RI84W6O' where id=6; -update noar ti set b1='5IKDW03TKYOG6RI84W6O' where id=6; -update noar tt set b2='AG' where id=6; -update noar ti set b2='AG' where id=6; -update noar tt set b0='4TQKM38CZJG1FXFV8FFB64IQGAT7P' where id=7; -update noar ti set b0='4TQKM38CZJG1FXFV8FFB64IQGAT7P' where id=7; -update noar tt set b1='OSEDUHZY6' where id=7; -update noar ti set b1='OSEDUHZY6' where id=7; -update noar tt set b2='9W64VN' where id=7; -update noar ti set b2='9W64VN' where id=7; -update noar tt set b0='MB3UDSMUYX25WW' where id=8; -update noar ti set b0='MB3UDSMUYX25WW' where id=8; -update noar tt set b1='TZIH9H9RV603LUG4TTF' where id=8; -update noar ti set b1='TZIH9H9RV603LUG4TTF' where id=8; -update noar tt set b2='1XIRUAKWKP63OY57X3HDDL5V' where id=8; -update noar ti set b2='1XIRUAKWKP63OY57X3HDDL5V' where id=8; -update noar tt set b0='KAL85OSD6' where id=9; -update noar ti set b0='KAL85OSD6' where id=9; -update noar tt set b1='3DIRBRFFUGO6SIP6JZ' where id=9; -update noar ti set b1='3DIRBRFFUGO6SIP6JZ' where id=9; -update noar tt set b2='T9YUML9EFXX96OTX' where id=9; -update noar ti set b2='T9YUML9EFXX96OTX' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - b0 longblob not null, - b1 mediumblob not null, - b2 text not null -) engine=tokudb; -insert into tt values (1,'','',''); -insert into tt values (2,'','',''); -insert into tt values (3,'','',''); -insert into tt values (4,'','',''); -insert into tt values (5,'','',''); -insert into tt values (6,'','',''); -insert into tt values (7,'','',''); -insert into tt values (8,'','',''); -insert into tt values (9,'','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set b0='3Z1O' where id=1; -update noar ti set b0='3Z1O' where id=1; -update noar tt set b1='K3RZVY05DRXGKFIS' where id=1; -update noar ti set b1='K3RZVY05DRXGKFIS' where id=1; -update noar tt set b2='7' where id=1; -update noar ti set b2='7' where id=1; -update noar tt set b0='6' where id=2; -update noar ti set b0='6' where id=2; -update noar tt set b1='4W1UFA6SHFBSR6BEF' where id=2; -update noar ti set b1='4W1UFA6SHFBSR6BEF' where id=2; -update noar tt set b2='4' where id=2; -update noar ti set b2='4' where id=2; -update noar tt set b0='68E5ZSX9SXXBRAU2QNMX8WFU2OQV' where id=3; -update noar ti set b0='68E5ZSX9SXXBRAU2QNMX8WFU2OQV' where id=3; -update noar tt set b1='ZXLJKNPT7ZDT0N8WKS' where id=3; -update noar ti set b1='ZXLJKNPT7ZDT0N8WKS' where id=3; -update noar tt set b2='AN7CC6P6S259WQ18QINXNOVBAB' where id=3; -update noar ti set b2='AN7CC6P6S259WQ18QINXNOVBAB' where id=3; -update noar tt set b0='A19RJCOIBN2' where id=4; -update noar ti set b0='A19RJCOIBN2' where id=4; -update noar tt set b1='K7HU9SO' where id=4; -update noar ti set b1='K7HU9SO' where id=4; -update noar tt set b2='Y3F5F6UD0K7' where id=4; -update noar ti set b2='Y3F5F6UD0K7' where id=4; -update noar tt set b0='V3AFEWALPM' where id=5; -update noar ti set b0='V3AFEWALPM' where id=5; -update noar tt set b1='EGY18YN7VO7IMW56N4ZEZFZPPITX' where id=5; -update noar ti set b1='EGY18YN7VO7IMW56N4ZEZFZPPITX' where id=5; -update noar tt set b2='RH' where id=5; -update noar ti set b2='RH' where id=5; -update noar tt set b0='3I3BWXW00BN2' where id=6; -update noar ti set b0='3I3BWXW00BN2' where id=6; -update noar tt set b1='YK8H7G4GVLP2DJTK' where id=6; -update noar ti set b1='YK8H7G4GVLP2DJTK' where id=6; -update noar tt set b2='TKOLZBD33YYLZHOCH1ENWJ4WUDJG9VF' where id=6; -update noar ti set b2='TKOLZBD33YYLZHOCH1ENWJ4WUDJG9VF' where id=6; -update noar tt set b0='7XDDUD7K0QUC' where id=7; -update noar ti set b0='7XDDUD7K0QUC' where id=7; -update noar tt set b1='12Y5TLV5S9DFULS' where id=7; -update noar ti set b1='12Y5TLV5S9DFULS' where id=7; -update noar tt set b2='Y45B2N81B4L4B5H6JPD5DMK67' where id=7; -update noar ti set b2='Y45B2N81B4L4B5H6JPD5DMK67' where id=7; -update noar tt set b0='E0JHKNVFAR3KPTD637' where id=8; -update noar ti set b0='E0JHKNVFAR3KPTD637' where id=8; -update noar tt set b1='PYMF51R3FE94PYB4R' where id=8; -update noar ti set b1='PYMF51R3FE94PYB4R' where id=8; -update noar tt set b2='G02HEX4P7' where id=8; -update noar ti set b2='G02HEX4P7' where id=8; -update noar tt set b0='KECZD' where id=9; -update noar ti set b0='KECZD' where id=9; -update noar tt set b1='WGYB464SCYUGEW8JNFHIX24SRE8H8MF' where id=9; -update noar ti set b1='WGYB464SCYUGEW8JNFHIX24SRE8H8MF' where id=9; -update noar tt set b2='XJST2DY' where id=9; -update noar ti set b2='XJST2DY' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - b0 longblob null, - b1 longblob null, - b2 tinyblob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set b0='R0HJK7N43O5' where id=1; -update noar ti set b0='R0HJK7N43O5' where id=1; -update noar tt set b1='67YBE4PLEFK' where id=1; -update noar ti set b1='67YBE4PLEFK' where id=1; -update noar tt set b2='928WX319S0DVW1E5O' where id=1; -update noar ti set b2='928WX319S0DVW1E5O' where id=1; -update noar tt set b0='ZN7XB' where id=2; -update noar ti set b0='ZN7XB' where id=2; -update noar tt set b1='W05UKU6L8' where id=2; -update noar ti set b1='W05UKU6L8' where id=2; -update noar tt set b2='ZT9Y8WIK1NALC6WR6AEQT0V0' where id=2; -update noar ti set b2='ZT9Y8WIK1NALC6WR6AEQT0V0' where id=2; -update noar tt set b0='LJBJTTIK39YLBVONT5NF7MA' where id=3; -update noar ti set b0='LJBJTTIK39YLBVONT5NF7MA' where id=3; -update noar tt set b1='GU75XPE8' where id=3; -update noar ti set b1='GU75XPE8' where id=3; -update noar tt set b2='VYGB51BKSA0UQEASS8UPM0SHRCSJ99N' where id=3; -update noar ti set b2='VYGB51BKSA0UQEASS8UPM0SHRCSJ99N' where id=3; -update noar tt set b0='R5RXTZ0RP7QC598B6V3' where id=4; -update noar ti set b0='R5RXTZ0RP7QC598B6V3' where id=4; -update noar tt set b1='2WE2S4YIMM4IQ9U' where id=4; -update noar ti set b1='2WE2S4YIMM4IQ9U' where id=4; -update noar tt set b2='AN02UDUSCHR' where id=4; -update noar ti set b2='AN02UDUSCHR' where id=4; -update noar tt set b0='BELMINE0LSCPU6KYF68V2P4PNZ7' where id=5; -update noar ti set b0='BELMINE0LSCPU6KYF68V2P4PNZ7' where id=5; -update noar tt set b1='1UH7BBSEOY' where id=5; -update noar ti set b1='1UH7BBSEOY' where id=5; -update noar tt set b2='JOB7D3J6NS0O4YFZKN' where id=5; -update noar ti set b2='JOB7D3J6NS0O4YFZKN' where id=5; -update noar tt set b0='VD9K1CA15D7VVWMM' where id=6; -update noar ti set b0='VD9K1CA15D7VVWMM' where id=6; -update noar tt set b1='96M5MVE8IFCKR438W9PE2L' where id=6; -update noar ti set b1='96M5MVE8IFCKR438W9PE2L' where id=6; -update noar tt set b2='XHENFSNRZZ2CCXVP5O' where id=6; -update noar ti set b2='XHENFSNRZZ2CCXVP5O' where id=6; -update noar tt set b0='6JWEQLBSCFJSHH8' where id=7; -update noar ti set b0='6JWEQLBSCFJSHH8' where id=7; -update noar tt set b1='ZS87OOWG6JI0WKEEWD' where id=7; -update noar ti set b1='ZS87OOWG6JI0WKEEWD' where id=7; -update noar tt set b2='RB3CBJ5PHG7OWQV94DUI04PSLHB8' where id=7; -update noar ti set b2='RB3CBJ5PHG7OWQV94DUI04PSLHB8' where id=7; -update noar tt set b0='LOAVEIF79OAJNXETED48D6J6F' where id=8; -update noar ti set b0='LOAVEIF79OAJNXETED48D6J6F' where id=8; -update noar tt set b1='KUXTEM64U080052KJSLRDZOQGR5M9H' where id=8; -update noar ti set b1='KUXTEM64U080052KJSLRDZOQGR5M9H' where id=8; -update noar tt set b2='7P3IHE7N' where id=8; -update noar ti set b2='7P3IHE7N' where id=8; -update noar tt set b0='GJJPZ0U8XA6ML5O6D02KH0' where id=9; -update noar ti set b0='GJJPZ0U8XA6ML5O6D02KH0' where id=9; -update noar tt set b1='CBVU8V2TPJ97924S64YJND0Z4MBA9NG5' where id=9; -update noar ti set b1='CBVU8V2TPJ97924S64YJND0Z4MBA9NG5' where id=9; -update noar tt set b2='L0IIEXDAY4K3K5J95XYI2QHQB3ON0A' where id=9; -update noar ti set b2='L0IIEXDAY4K3K5J95XYI2QHQB3ON0A' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - b0 longblob not null, - b1 longblob not null, - b2 tinyblob not null -) engine=tokudb; -insert into tt values (1,'','',''); -insert into tt values (2,'','',''); -insert into tt values (3,'','',''); -insert into tt values (4,'','',''); -insert into tt values (5,'','',''); -insert into tt values (6,'','',''); -insert into tt values (7,'','',''); -insert into tt values (8,'','',''); -insert into tt values (9,'','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set b0='O8WKUP0OJPHVO' where id=1; -update noar ti set b0='O8WKUP0OJPHVO' where id=1; -update noar tt set b1='KK9WTL5IKLWMW' where id=1; -update noar ti set b1='KK9WTL5IKLWMW' where id=1; -update noar tt set b2='HVQUD0PE0XWBN1MWD' where id=1; -update noar ti set b2='HVQUD0PE0XWBN1MWD' where id=1; -update noar tt set b0='HM3G7ACS9SU0YAWOPG' where id=2; -update noar ti set b0='HM3G7ACS9SU0YAWOPG' where id=2; -update noar tt set b1='JLHCSX7S69K6B86LCDKBL' where id=2; -update noar ti set b1='JLHCSX7S69K6B86LCDKBL' where id=2; -update noar tt set b2='8A4V7OQHV57EV9LQ17CJQQ' where id=2; -update noar ti set b2='8A4V7OQHV57EV9LQ17CJQQ' where id=2; -update noar tt set b0='C3W9X9RDX3OCY1BNWGDJVL8BRZ7E7B' where id=3; -update noar ti set b0='C3W9X9RDX3OCY1BNWGDJVL8BRZ7E7B' where id=3; -update noar tt set b1='H7ZHP5YILHI' where id=3; -update noar ti set b1='H7ZHP5YILHI' where id=3; -update noar tt set b2='CJNLQD2EWZ0DD03PC' where id=3; -update noar ti set b2='CJNLQD2EWZ0DD03PC' where id=3; -update noar tt set b0='TNIHXTKU8YA8K2G1BUSGIPM98GHP6' where id=4; -update noar ti set b0='TNIHXTKU8YA8K2G1BUSGIPM98GHP6' where id=4; -update noar tt set b1='8' where id=4; -update noar ti set b1='8' where id=4; -update noar tt set b2='Y2RP22TQM8EZC6IK2XR' where id=4; -update noar ti set b2='Y2RP22TQM8EZC6IK2XR' where id=4; -update noar tt set b0='JWIMKLKO' where id=5; -update noar ti set b0='JWIMKLKO' where id=5; -update noar tt set b1='DIIDNP0' where id=5; -update noar ti set b1='DIIDNP0' where id=5; -update noar tt set b2='7GG5758KKWFWZZS8BI282Q3TY' where id=5; -update noar ti set b2='7GG5758KKWFWZZS8BI282Q3TY' where id=5; -update noar tt set b0='HRU8N95LXV2L4BEP6Z3ACGNGI0OAFW9H' where id=6; -update noar ti set b0='HRU8N95LXV2L4BEP6Z3ACGNGI0OAFW9H' where id=6; -update noar tt set b1='YRHIWZFD59A7MQDYM0M' where id=6; -update noar ti set b1='YRHIWZFD59A7MQDYM0M' where id=6; -update noar tt set b2='M7MIYJRVFCZ8S' where id=6; -update noar ti set b2='M7MIYJRVFCZ8S' where id=6; -update noar tt set b0='4LF6QFJ49V1FWXX3P' where id=7; -update noar ti set b0='4LF6QFJ49V1FWXX3P' where id=7; -update noar tt set b1='B' where id=7; -update noar ti set b1='B' where id=7; -update noar tt set b2='Z7VKCPZWJYUA51NNSZ4I57RMT' where id=7; -update noar ti set b2='Z7VKCPZWJYUA51NNSZ4I57RMT' where id=7; -update noar tt set b0='O' where id=8; -update noar ti set b0='O' where id=8; -update noar tt set b1='79JWR7V3O' where id=8; -update noar ti set b1='79JWR7V3O' where id=8; -update noar tt set b2='E6KLVRC66LD60AMTJFWRPGRCJM' where id=8; -update noar ti set b2='E6KLVRC66LD60AMTJFWRPGRCJM' where id=8; -update noar tt set b0='KCCDWV' where id=9; -update noar ti set b0='KCCDWV' where id=9; -update noar tt set b1='XWQK9QSHLF1TOX5ZM54JS6S7UTWU' where id=9; -update noar ti set b1='XWQK9QSHLF1TOX5ZM54JS6S7UTWU' where id=9; -update noar tt set b2='4B9XB25G1LF7N8535CUPD003IH51L' where id=9; -update noar ti set b2='4B9XB25G1LF7N8535CUPD003IH51L' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - b0 longblob null, - b1 longblob null, - b2 blob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set b0='M6' where id=1; -update noar ti set b0='M6' where id=1; -update noar tt set b1='6WB5YDKXASEESOEIB0CGQ9FQB9BM0' where id=1; -update noar ti set b1='6WB5YDKXASEESOEIB0CGQ9FQB9BM0' where id=1; -update noar tt set b2='MWRV1ZC71KY' where id=1; -update noar ti set b2='MWRV1ZC71KY' where id=1; -update noar tt set b0='P' where id=2; -update noar ti set b0='P' where id=2; -update noar tt set b1='PBG23HPBYPJFWGGTTVQAVA1221A' where id=2; -update noar ti set b1='PBG23HPBYPJFWGGTTVQAVA1221A' where id=2; -update noar tt set b2='N5ODQH4CJNW3Y043G748CKFM55' where id=2; -update noar ti set b2='N5ODQH4CJNW3Y043G748CKFM55' where id=2; -update noar tt set b0='JFGNBFXQZY41RCK7EEZ3UMB5YS' where id=3; -update noar ti set b0='JFGNBFXQZY41RCK7EEZ3UMB5YS' where id=3; -update noar tt set b1='KYS6VKGUWE0O' where id=3; -update noar ti set b1='KYS6VKGUWE0O' where id=3; -update noar tt set b2='24KE6M2' where id=3; -update noar ti set b2='24KE6M2' where id=3; -update noar tt set b0='9PE715FW0LW8' where id=4; -update noar ti set b0='9PE715FW0LW8' where id=4; -update noar tt set b1='6S4QWFKRY7CQCHRTE8' where id=4; -update noar ti set b1='6S4QWFKRY7CQCHRTE8' where id=4; -update noar tt set b2='Z6HYGVQMIH8ZZRVIZCQH2517JVAM6WAF' where id=4; -update noar ti set b2='Z6HYGVQMIH8ZZRVIZCQH2517JVAM6WAF' where id=4; -update noar tt set b0='0' where id=5; -update noar ti set b0='0' where id=5; -update noar tt set b1='JM8G7EZOUK' where id=5; -update noar ti set b1='JM8G7EZOUK' where id=5; -update noar tt set b2='J2QLZXW1BS77WRCPFWDK0R7R40XWL5G' where id=5; -update noar ti set b2='J2QLZXW1BS77WRCPFWDK0R7R40XWL5G' where id=5; -update noar tt set b0='64WAV8VYYW4SJ9AXC7GAYXV66JT' where id=6; -update noar ti set b0='64WAV8VYYW4SJ9AXC7GAYXV66JT' where id=6; -update noar tt set b1='IRCO0S0B62VWHKKY4LQ' where id=6; -update noar ti set b1='IRCO0S0B62VWHKKY4LQ' where id=6; -update noar tt set b2='YE7TSIK8J3T6PPJYK5HXWORSGSH' where id=6; -update noar ti set b2='YE7TSIK8J3T6PPJYK5HXWORSGSH' where id=6; -update noar tt set b0='UQ2LESGHE' where id=7; -update noar ti set b0='UQ2LESGHE' where id=7; -update noar tt set b1='ZNQKKJGEPZX7KHW0QKJ5J3G62H' where id=7; -update noar ti set b1='ZNQKKJGEPZX7KHW0QKJ5J3G62H' where id=7; -update noar tt set b2='1U' where id=7; -update noar ti set b2='1U' where id=7; -update noar tt set b0='EGLLD3VTQG94' where id=8; -update noar ti set b0='EGLLD3VTQG94' where id=8; -update noar tt set b1='OFPKB092PQ' where id=8; -update noar ti set b1='OFPKB092PQ' where id=8; -update noar tt set b2='27FUKE1Q4N0K9VMYZNBNVN0TZ1' where id=8; -update noar ti set b2='27FUKE1Q4N0K9VMYZNBNVN0TZ1' where id=8; -update noar tt set b0='O46O' where id=9; -update noar ti set b0='O46O' where id=9; -update noar tt set b1='FCMBEMW0OFUVPO4HFG1' where id=9; -update noar ti set b1='FCMBEMW0OFUVPO4HFG1' where id=9; -update noar tt set b2='8HFH5IXT25D51NJ2' where id=9; -update noar ti set b2='8HFH5IXT25D51NJ2' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - b0 longblob not null, - b1 longblob not null, - b2 blob not null -) engine=tokudb; -insert into tt values (1,'','',''); -insert into tt values (2,'','',''); -insert into tt values (3,'','',''); -insert into tt values (4,'','',''); -insert into tt values (5,'','',''); -insert into tt values (6,'','',''); -insert into tt values (7,'','',''); -insert into tt values (8,'','',''); -insert into tt values (9,'','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set b0='LOIGPTMH2X0PVMR' where id=1; -update noar ti set b0='LOIGPTMH2X0PVMR' where id=1; -update noar tt set b1='57RGHKZE8M3OXGE' where id=1; -update noar ti set b1='57RGHKZE8M3OXGE' where id=1; -update noar tt set b2='LJHDI' where id=1; -update noar ti set b2='LJHDI' where id=1; -update noar tt set b0='9Y08OP0C3TPM0I67GKS52J9IBDWESIQ5' where id=2; -update noar ti set b0='9Y08OP0C3TPM0I67GKS52J9IBDWESIQ5' where id=2; -update noar tt set b1='63JJSAJFUBT00N5A63FV4' where id=2; -update noar ti set b1='63JJSAJFUBT00N5A63FV4' where id=2; -update noar tt set b2='TMQ47D4PZ7BKVK' where id=2; -update noar ti set b2='TMQ47D4PZ7BKVK' where id=2; -update noar tt set b0='7AFUGYCRF7ITUP9UBU9RQV' where id=3; -update noar ti set b0='7AFUGYCRF7ITUP9UBU9RQV' where id=3; -update noar tt set b1='XUTWM' where id=3; -update noar ti set b1='XUTWM' where id=3; -update noar tt set b2='EMGLMKTYRPSOI2OOULQZ' where id=3; -update noar ti set b2='EMGLMKTYRPSOI2OOULQZ' where id=3; -update noar tt set b0='0JE8HS' where id=4; -update noar ti set b0='0JE8HS' where id=4; -update noar tt set b1='YH0VA0DYH3F0A266D0TH1X5DP1W3CAT9' where id=4; -update noar ti set b1='YH0VA0DYH3F0A266D0TH1X5DP1W3CAT9' where id=4; -update noar tt set b2='6N33REG8SD4FHOS' where id=4; -update noar ti set b2='6N33REG8SD4FHOS' where id=4; -update noar tt set b0='MD4KNI3O3YPL3RPZPRVKL03' where id=5; -update noar ti set b0='MD4KNI3O3YPL3RPZPRVKL03' where id=5; -update noar tt set b1='RORK4YSJCSVRT' where id=5; -update noar ti set b1='RORK4YSJCSVRT' where id=5; -update noar tt set b2='C8ID8J2N7' where id=5; -update noar ti set b2='C8ID8J2N7' where id=5; -update noar tt set b0='ZU8F3BTWZG3P4018BBZPC' where id=6; -update noar ti set b0='ZU8F3BTWZG3P4018BBZPC' where id=6; -update noar tt set b1='0Z1FIOWA' where id=6; -update noar ti set b1='0Z1FIOWA' where id=6; -update noar tt set b2='TSGTY6PRQP4AT1HSNAO5WFB00JIQ2' where id=6; -update noar ti set b2='TSGTY6PRQP4AT1HSNAO5WFB00JIQ2' where id=6; -update noar tt set b0='N07TZK' where id=7; -update noar ti set b0='N07TZK' where id=7; -update noar tt set b1='GQ9OF7L2C' where id=7; -update noar ti set b1='GQ9OF7L2C' where id=7; -update noar tt set b2='6DZ2EY' where id=7; -update noar ti set b2='6DZ2EY' where id=7; -update noar tt set b0='T2QJSVQC4C1C6' where id=8; -update noar ti set b0='T2QJSVQC4C1C6' where id=8; -update noar tt set b1='DAO' where id=8; -update noar ti set b1='DAO' where id=8; -update noar tt set b2='OGCR9' where id=8; -update noar ti set b2='OGCR9' where id=8; -update noar tt set b0='2M' where id=9; -update noar ti set b0='2M' where id=9; -update noar tt set b1='Y4UB9DLPJVU77PS0EOENBQ5KZ' where id=9; -update noar ti set b1='Y4UB9DLPJVU77PS0EOENBQ5KZ' where id=9; -update noar tt set b2='05TWF3FI3IU6GS0VCVY5E4R9VJHT' where id=9; -update noar ti set b2='05TWF3FI3IU6GS0VCVY5E4R9VJHT' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - b0 longblob null, - b1 longblob null, - b2 mediumblob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set b0='TCW6EBVP9UP9QGMUS51KORF' where id=1; -update noar ti set b0='TCW6EBVP9UP9QGMUS51KORF' where id=1; -update noar tt set b1='8C3LUI4LKPTXEZLKMN55GYB' where id=1; -update noar ti set b1='8C3LUI4LKPTXEZLKMN55GYB' where id=1; -update noar tt set b2='42B6N2JQJNSCLKPA4PS3NL' where id=1; -update noar ti set b2='42B6N2JQJNSCLKPA4PS3NL' where id=1; -update noar tt set b0='QVSDA9OP9GA1497N' where id=2; -update noar ti set b0='QVSDA9OP9GA1497N' where id=2; -update noar tt set b1='O7VYDWML6GQR47VSOGLOOXYGT7NV' where id=2; -update noar ti set b1='O7VYDWML6GQR47VSOGLOOXYGT7NV' where id=2; -update noar tt set b2='HOSWBF1OKMCPINYL8ZSPFZJ' where id=2; -update noar ti set b2='HOSWBF1OKMCPINYL8ZSPFZJ' where id=2; -update noar tt set b0='Q8LK2JFAMAA1Q7GHC9VUUIZ12D' where id=3; -update noar ti set b0='Q8LK2JFAMAA1Q7GHC9VUUIZ12D' where id=3; -update noar tt set b1='I4N6RHTNI4QZELU0O194UHQ29R4O' where id=3; -update noar ti set b1='I4N6RHTNI4QZELU0O194UHQ29R4O' where id=3; -update noar tt set b2='1TPSL' where id=3; -update noar ti set b2='1TPSL' where id=3; -update noar tt set b0='OZRGLMGJUUDWXHU1TK' where id=4; -update noar ti set b0='OZRGLMGJUUDWXHU1TK' where id=4; -update noar tt set b1='MJ60Q5R2WH0MNTO1ORB230HXDL84L' where id=4; -update noar ti set b1='MJ60Q5R2WH0MNTO1ORB230HXDL84L' where id=4; -update noar tt set b2='041ND2IUG5F4RMG58N5' where id=4; -update noar ti set b2='041ND2IUG5F4RMG58N5' where id=4; -update noar tt set b0='SNZE32A' where id=5; -update noar ti set b0='SNZE32A' where id=5; -update noar tt set b1='KE66HRYN6CR' where id=5; -update noar ti set b1='KE66HRYN6CR' where id=5; -update noar tt set b2='KEZMOKYAOMVCIST330EO2PWW7' where id=5; -update noar ti set b2='KEZMOKYAOMVCIST330EO2PWW7' where id=5; -update noar tt set b0='9P2XB5CPWOZWV3GYYFI0RW0U4B63NDI8' where id=6; -update noar ti set b0='9P2XB5CPWOZWV3GYYFI0RW0U4B63NDI8' where id=6; -update noar tt set b1='KH1XS0JT' where id=6; -update noar ti set b1='KH1XS0JT' where id=6; -update noar tt set b2='USXE69YTV7FHGNQ' where id=6; -update noar ti set b2='USXE69YTV7FHGNQ' where id=6; -update noar tt set b0='DRPVW0RCXA8MDIBI' where id=7; -update noar ti set b0='DRPVW0RCXA8MDIBI' where id=7; -update noar tt set b1='8HBE24DW4SMQAR684WBOG8AOW20ZW1' where id=7; -update noar ti set b1='8HBE24DW4SMQAR684WBOG8AOW20ZW1' where id=7; -update noar tt set b2='T5Q9A00' where id=7; -update noar ti set b2='T5Q9A00' where id=7; -update noar tt set b0='AEJTADFSQO58GJ8RUWL8QF77Y679G9' where id=8; -update noar ti set b0='AEJTADFSQO58GJ8RUWL8QF77Y679G9' where id=8; -update noar tt set b1='VYCQ17FLWVL' where id=8; -update noar ti set b1='VYCQ17FLWVL' where id=8; -update noar tt set b2='ZT8NI2P9IXQW7ABNZDBG3' where id=8; -update noar ti set b2='ZT8NI2P9IXQW7ABNZDBG3' where id=8; -update noar tt set b0='YN1W59WFGNGAXBYCTPZSB' where id=9; -update noar ti set b0='YN1W59WFGNGAXBYCTPZSB' where id=9; -update noar tt set b1='K1K4E0L52QD4Z2S2XT3P0PAW0D51P5' where id=9; -update noar ti set b1='K1K4E0L52QD4Z2S2XT3P0PAW0D51P5' where id=9; -update noar tt set b2='QX0U6J6ES7HECXBYHZG221SVAQC14' where id=9; -update noar ti set b2='QX0U6J6ES7HECXBYHZG221SVAQC14' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - b0 longblob not null, - b1 longblob not null, - b2 mediumblob not null -) engine=tokudb; -insert into tt values (1,'','',''); -insert into tt values (2,'','',''); -insert into tt values (3,'','',''); -insert into tt values (4,'','',''); -insert into tt values (5,'','',''); -insert into tt values (6,'','',''); -insert into tt values (7,'','',''); -insert into tt values (8,'','',''); -insert into tt values (9,'','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set b0='XHH8E0XSN2I4NSK8A5DVRCP' where id=1; -update noar ti set b0='XHH8E0XSN2I4NSK8A5DVRCP' where id=1; -update noar tt set b1='AZERK72OLM48' where id=1; -update noar ti set b1='AZERK72OLM48' where id=1; -update noar tt set b2='FKE252EO' where id=1; -update noar ti set b2='FKE252EO' where id=1; -update noar tt set b0='PP9EED' where id=2; -update noar ti set b0='PP9EED' where id=2; -update noar tt set b1='5R' where id=2; -update noar ti set b1='5R' where id=2; -update noar tt set b2='4I6XG7D5R37RG3LU00J80' where id=2; -update noar ti set b2='4I6XG7D5R37RG3LU00J80' where id=2; -update noar tt set b0='HY8A2JS8YGQ1X950WNQQV' where id=3; -update noar ti set b0='HY8A2JS8YGQ1X950WNQQV' where id=3; -update noar tt set b1='70MXOM7E5EFKICV4ZZ1VXRXYBXFBWV5' where id=3; -update noar ti set b1='70MXOM7E5EFKICV4ZZ1VXRXYBXFBWV5' where id=3; -update noar tt set b2='KH' where id=3; -update noar ti set b2='KH' where id=3; -update noar tt set b0='CLUWPWGVV0VQS70AZXP4L' where id=4; -update noar ti set b0='CLUWPWGVV0VQS70AZXP4L' where id=4; -update noar tt set b1='6IBA3QKDFC86' where id=4; -update noar ti set b1='6IBA3QKDFC86' where id=4; -update noar tt set b2='8RAKOD46SSM011UG402AE' where id=4; -update noar ti set b2='8RAKOD46SSM011UG402AE' where id=4; -update noar tt set b0='47OOAO3OY7F71LSYTSH8G2CD42IVVGLD' where id=5; -update noar ti set b0='47OOAO3OY7F71LSYTSH8G2CD42IVVGLD' where id=5; -update noar tt set b1='5DCEX' where id=5; -update noar ti set b1='5DCEX' where id=5; -update noar tt set b2='936' where id=5; -update noar ti set b2='936' where id=5; -update noar tt set b0='OKXI7BSNF8VFXV9071ENG9E8RPM3' where id=6; -update noar ti set b0='OKXI7BSNF8VFXV9071ENG9E8RPM3' where id=6; -update noar tt set b1='ZNVFE7YGFHV' where id=6; -update noar ti set b1='ZNVFE7YGFHV' where id=6; -update noar tt set b2='48SD6JZNU6ZCBARXSSAZ4XCAAP' where id=6; -update noar ti set b2='48SD6JZNU6ZCBARXSSAZ4XCAAP' where id=6; -update noar tt set b0='PO5Y4CKD9CEUJK3UKCSJJ' where id=7; -update noar ti set b0='PO5Y4CKD9CEUJK3UKCSJJ' where id=7; -update noar tt set b1='GTMT0N7G0SN49C86N6XE1Y5R3HBCN' where id=7; -update noar ti set b1='GTMT0N7G0SN49C86N6XE1Y5R3HBCN' where id=7; -update noar tt set b2='EXI9CZZ7HTL9YDLMJNEGUSJU6' where id=7; -update noar ti set b2='EXI9CZZ7HTL9YDLMJNEGUSJU6' where id=7; -update noar tt set b0='GT3GZU2LPMI4HKCEHZZUFGLEC0O' where id=8; -update noar ti set b0='GT3GZU2LPMI4HKCEHZZUFGLEC0O' where id=8; -update noar tt set b1='BFWH8096KEUJPQHYFIMTTYU8WEY' where id=8; -update noar ti set b1='BFWH8096KEUJPQHYFIMTTYU8WEY' where id=8; -update noar tt set b2='S' where id=8; -update noar ti set b2='S' where id=8; -update noar tt set b0='1K45W48ID7H1EDY' where id=9; -update noar ti set b0='1K45W48ID7H1EDY' where id=9; -update noar tt set b1='GYLG39VE0JBO1MB5QLWTY' where id=9; -update noar ti set b1='GYLG39VE0JBO1MB5QLWTY' where id=9; -update noar tt set b2='RC0IPBSC' where id=9; -update noar ti set b2='RC0IPBSC' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - b0 longblob null, - b1 longblob null, - b2 longblob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set b0='VH69R' where id=1; -update noar ti set b0='VH69R' where id=1; -update noar tt set b1='1' where id=1; -update noar ti set b1='1' where id=1; -update noar tt set b2='KU0KOINH1J33J' where id=1; -update noar ti set b2='KU0KOINH1J33J' where id=1; -update noar tt set b0='3J39WA7HOWMUDVO4TD5R5JAXAR' where id=2; -update noar ti set b0='3J39WA7HOWMUDVO4TD5R5JAXAR' where id=2; -update noar tt set b1='2GEGVMH7T3K' where id=2; -update noar ti set b1='2GEGVMH7T3K' where id=2; -update noar tt set b2='BHLG33DTOJTJ2I15' where id=2; -update noar ti set b2='BHLG33DTOJTJ2I15' where id=2; -update noar tt set b0='2QLPTOEITFGJJSVACZ2' where id=3; -update noar ti set b0='2QLPTOEITFGJJSVACZ2' where id=3; -update noar tt set b1='KXCDLQIKEI0YCWT' where id=3; -update noar ti set b1='KXCDLQIKEI0YCWT' where id=3; -update noar tt set b2='AOM956HPGAV178JJ4LBQJOTA' where id=3; -update noar ti set b2='AOM956HPGAV178JJ4LBQJOTA' where id=3; -update noar tt set b0='M1KU9H' where id=4; -update noar ti set b0='M1KU9H' where id=4; -update noar tt set b1='OICW0BW5CU2C' where id=4; -update noar ti set b1='OICW0BW5CU2C' where id=4; -update noar tt set b2='M' where id=4; -update noar ti set b2='M' where id=4; -update noar tt set b0='RAEZSIUWDXWC8' where id=5; -update noar ti set b0='RAEZSIUWDXWC8' where id=5; -update noar tt set b1='PKCRYIL7FQP8UOHPHCI7' where id=5; -update noar ti set b1='PKCRYIL7FQP8UOHPHCI7' where id=5; -update noar tt set b2='PM3S0ZZABNWW2SJSMJR7QRGZZW' where id=5; -update noar ti set b2='PM3S0ZZABNWW2SJSMJR7QRGZZW' where id=5; -update noar tt set b0='Q1VR6YF' where id=6; -update noar ti set b0='Q1VR6YF' where id=6; -update noar tt set b1='ZF8PIXB4QVUL' where id=6; -update noar ti set b1='ZF8PIXB4QVUL' where id=6; -update noar tt set b2='9PIY24FPU2NLO5DFR' where id=6; -update noar ti set b2='9PIY24FPU2NLO5DFR' where id=6; -update noar tt set b0='R8ELXK9S618HG1NC6KRDKRVYJCNL1I' where id=7; -update noar ti set b0='R8ELXK9S618HG1NC6KRDKRVYJCNL1I' where id=7; -update noar tt set b1='IQQRKI9KAR7FMSNYBP0T' where id=7; -update noar ti set b1='IQQRKI9KAR7FMSNYBP0T' where id=7; -update noar tt set b2='OXF525BKZ3CHRMS9HIOHY' where id=7; -update noar ti set b2='OXF525BKZ3CHRMS9HIOHY' where id=7; -update noar tt set b0='KSJGXCHACNFN7AM' where id=8; -update noar ti set b0='KSJGXCHACNFN7AM' where id=8; -update noar tt set b1='4QBJRH2QXN95JFQM4' where id=8; -update noar ti set b1='4QBJRH2QXN95JFQM4' where id=8; -update noar tt set b2='SLG1MNLMALG3T5' where id=8; -update noar ti set b2='SLG1MNLMALG3T5' where id=8; -update noar tt set b0='0SUC73T9V41OF0YYW8BKEYNGA3L' where id=9; -update noar ti set b0='0SUC73T9V41OF0YYW8BKEYNGA3L' where id=9; -update noar tt set b1='UMU77' where id=9; -update noar ti set b1='UMU77' where id=9; -update noar tt set b2='2VD77658L33TDFZ267T51S9OQ0A8' where id=9; -update noar ti set b2='2VD77658L33TDFZ267T51S9OQ0A8' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - b0 longblob not null, - b1 longblob not null, - b2 longblob not null -) engine=tokudb; -insert into tt values (1,'','',''); -insert into tt values (2,'','',''); -insert into tt values (3,'','',''); -insert into tt values (4,'','',''); -insert into tt values (5,'','',''); -insert into tt values (6,'','',''); -insert into tt values (7,'','',''); -insert into tt values (8,'','',''); -insert into tt values (9,'','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set b0='RX' where id=1; -update noar ti set b0='RX' where id=1; -update noar tt set b1='7SFJKQ7NGLUF72G' where id=1; -update noar ti set b1='7SFJKQ7NGLUF72G' where id=1; -update noar tt set b2='0PS3ZQ82RIRXU3QZ2HXT7JT25' where id=1; -update noar ti set b2='0PS3ZQ82RIRXU3QZ2HXT7JT25' where id=1; -update noar tt set b0='P8IPKEVX6GG08UY4X1LR3XRPHOO1ODHH' where id=2; -update noar ti set b0='P8IPKEVX6GG08UY4X1LR3XRPHOO1ODHH' where id=2; -update noar tt set b1='XK6IA9WF7UVL7WSTM' where id=2; -update noar ti set b1='XK6IA9WF7UVL7WSTM' where id=2; -update noar tt set b2='VDIY64XOB7BLIJXFRI721NH' where id=2; -update noar ti set b2='VDIY64XOB7BLIJXFRI721NH' where id=2; -update noar tt set b0='J821WCG' where id=3; -update noar ti set b0='J821WCG' where id=3; -update noar tt set b1='80EX56MFC7IUZH92Y6JGYVH4U8' where id=3; -update noar ti set b1='80EX56MFC7IUZH92Y6JGYVH4U8' where id=3; -update noar tt set b2='XHS44SE0OG7VZ6AW6S431GUDH' where id=3; -update noar ti set b2='XHS44SE0OG7VZ6AW6S431GUDH' where id=3; -update noar tt set b0='EH3NET' where id=4; -update noar ti set b0='EH3NET' where id=4; -update noar tt set b1='TRR4VRBAHIKACQK9POT0H9SH0S1UEI4K' where id=4; -update noar ti set b1='TRR4VRBAHIKACQK9POT0H9SH0S1UEI4K' where id=4; -update noar tt set b2='PTOXLSHDOZVJ4LWT' where id=4; -update noar ti set b2='PTOXLSHDOZVJ4LWT' where id=4; -update noar tt set b0='GYZI' where id=5; -update noar ti set b0='GYZI' where id=5; -update noar tt set b1='YAEMFXIFLF4' where id=5; -update noar ti set b1='YAEMFXIFLF4' where id=5; -update noar tt set b2='ZVSIY6IF0' where id=5; -update noar ti set b2='ZVSIY6IF0' where id=5; -update noar tt set b0='IXOY98PLQ9OS9WUVBI397UQTN' where id=6; -update noar ti set b0='IXOY98PLQ9OS9WUVBI397UQTN' where id=6; -update noar tt set b1='XNSK1FW6XABO1HJGHYMRT' where id=6; -update noar ti set b1='XNSK1FW6XABO1HJGHYMRT' where id=6; -update noar tt set b2='B2HUPDHI42ICSX9KTZUD2EO4' where id=6; -update noar ti set b2='B2HUPDHI42ICSX9KTZUD2EO4' where id=6; -update noar tt set b0='1KV9NUL8DBR1699UPBH8FY8VZMKO' where id=7; -update noar ti set b0='1KV9NUL8DBR1699UPBH8FY8VZMKO' where id=7; -update noar tt set b1='7MAVLJXTDOQT5W5OW7FLCE4MC8558HGM' where id=7; -update noar ti set b1='7MAVLJXTDOQT5W5OW7FLCE4MC8558HGM' where id=7; -update noar tt set b2='7F99MF82OI64IFU37Q7DHASXMIRU' where id=7; -update noar ti set b2='7F99MF82OI64IFU37Q7DHASXMIRU' where id=7; -update noar tt set b0='OW0FE9S45ZTL5NBR7952SMGH0A5GYGNB' where id=8; -update noar ti set b0='OW0FE9S45ZTL5NBR7952SMGH0A5GYGNB' where id=8; -update noar tt set b1='KHZEVA47Y3G3EB4TTG47L890L8SVH' where id=8; -update noar ti set b1='KHZEVA47Y3G3EB4TTG47L890L8SVH' where id=8; -update noar tt set b2='3YYY52H1O9Z7TDJ63UT8' where id=8; -update noar ti set b2='3YYY52H1O9Z7TDJ63UT8' where id=8; -update noar tt set b0='KV5CBWGS2' where id=9; -update noar ti set b0='KV5CBWGS2' where id=9; -update noar tt set b1='K01P1ADJHBX9BCU2H579SUMF' where id=9; -update noar ti set b1='K01P1ADJHBX9BCU2H579SUMF' where id=9; -update noar tt set b2='ZTM617SXJQO962JQILLLJ51' where id=9; -update noar ti set b2='ZTM617SXJQO962JQILLLJ51' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - b0 longblob null, - b1 longblob null, - b2 text null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set b0='2WIKWBMMPT0BTDOSXDMBT0C' where id=1; -update noar ti set b0='2WIKWBMMPT0BTDOSXDMBT0C' where id=1; -update noar tt set b1='TGLJ1KJOGBEQKJP2LL' where id=1; -update noar ti set b1='TGLJ1KJOGBEQKJP2LL' where id=1; -update noar tt set b2='XKOKP4L285RBK8' where id=1; -update noar ti set b2='XKOKP4L285RBK8' where id=1; -update noar tt set b0='100MFWVG1L' where id=2; -update noar ti set b0='100MFWVG1L' where id=2; -update noar tt set b1='9XAKCPD3' where id=2; -update noar ti set b1='9XAKCPD3' where id=2; -update noar tt set b2='FUYFBZRR5TFCOHPC' where id=2; -update noar ti set b2='FUYFBZRR5TFCOHPC' where id=2; -update noar tt set b0='7I15R7YPIB8HO7OAJM5F0KL' where id=3; -update noar ti set b0='7I15R7YPIB8HO7OAJM5F0KL' where id=3; -update noar tt set b1='SU' where id=3; -update noar ti set b1='SU' where id=3; -update noar tt set b2='LP63XBPZ6R9SA6TFXL' where id=3; -update noar ti set b2='LP63XBPZ6R9SA6TFXL' where id=3; -update noar tt set b0='M70TWLABYGZ5HTH2DY4EZR' where id=4; -update noar ti set b0='M70TWLABYGZ5HTH2DY4EZR' where id=4; -update noar tt set b1='KX2I8N7TUCJRTF6E5T8TCEBY8XSE74CH' where id=4; -update noar ti set b1='KX2I8N7TUCJRTF6E5T8TCEBY8XSE74CH' where id=4; -update noar tt set b2='78Y7C6Q7IPA5X0VGSY4X5U70JSN9X8' where id=4; -update noar ti set b2='78Y7C6Q7IPA5X0VGSY4X5U70JSN9X8' where id=4; -update noar tt set b0='TRQ31J29CXMTFFQR1BRKZ4OLS3VNJ' where id=5; -update noar ti set b0='TRQ31J29CXMTFFQR1BRKZ4OLS3VNJ' where id=5; -update noar tt set b1='9KRQKLE71' where id=5; -update noar ti set b1='9KRQKLE71' where id=5; -update noar tt set b2='CW8BYP2AK41K43IGUP' where id=5; -update noar ti set b2='CW8BYP2AK41K43IGUP' where id=5; -update noar tt set b0='X3UO96CRHWBGZAY9H98S2' where id=6; -update noar ti set b0='X3UO96CRHWBGZAY9H98S2' where id=6; -update noar tt set b1='2MLWK3MDDBZ6' where id=6; -update noar ti set b1='2MLWK3MDDBZ6' where id=6; -update noar tt set b2='D7GGF1B6GJBUQK91TZZYFAWXN8ZJ' where id=6; -update noar ti set b2='D7GGF1B6GJBUQK91TZZYFAWXN8ZJ' where id=6; -update noar tt set b0='R9H5MTFZ3ZT80MCI' where id=7; -update noar ti set b0='R9H5MTFZ3ZT80MCI' where id=7; -update noar tt set b1='FXZSVI7TP' where id=7; -update noar ti set b1='FXZSVI7TP' where id=7; -update noar tt set b2='ON84ZS5BOJOYDICM' where id=7; -update noar ti set b2='ON84ZS5BOJOYDICM' where id=7; -update noar tt set b0='MDL5FYSRTB1HXSLSTW' where id=8; -update noar ti set b0='MDL5FYSRTB1HXSLSTW' where id=8; -update noar tt set b1='1HYNFP' where id=8; -update noar ti set b1='1HYNFP' where id=8; -update noar tt set b2='6FW32QWAD5QAUSHGFSAGBV3NW2Y4' where id=8; -update noar ti set b2='6FW32QWAD5QAUSHGFSAGBV3NW2Y4' where id=8; -update noar tt set b0='E9ZPTE6UYGOZN71HT7RKNRATSMG7T' where id=9; -update noar ti set b0='E9ZPTE6UYGOZN71HT7RKNRATSMG7T' where id=9; -update noar tt set b1='Z35NU7RZK9S0DIKZBDGRFH' where id=9; -update noar ti set b1='Z35NU7RZK9S0DIKZBDGRFH' where id=9; -update noar tt set b2='46GB' where id=9; -update noar ti set b2='46GB' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - b0 longblob not null, - b1 longblob not null, - b2 text not null -) engine=tokudb; -insert into tt values (1,'','',''); -insert into tt values (2,'','',''); -insert into tt values (3,'','',''); -insert into tt values (4,'','',''); -insert into tt values (5,'','',''); -insert into tt values (6,'','',''); -insert into tt values (7,'','',''); -insert into tt values (8,'','',''); -insert into tt values (9,'','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set b0='BH' where id=1; -update noar ti set b0='BH' where id=1; -update noar tt set b1='XX7RVUO4SIWCIVA7DMFFN3V6U' where id=1; -update noar ti set b1='XX7RVUO4SIWCIVA7DMFFN3V6U' where id=1; -update noar tt set b2='3LKF5' where id=1; -update noar ti set b2='3LKF5' where id=1; -update noar tt set b0='C8IJZ8LM08' where id=2; -update noar ti set b0='C8IJZ8LM08' where id=2; -update noar tt set b1='XPW4AV1YV3V' where id=2; -update noar ti set b1='XPW4AV1YV3V' where id=2; -update noar tt set b2='R3M39UVD5VSPO1WHGFXC47HBJOLBE' where id=2; -update noar ti set b2='R3M39UVD5VSPO1WHGFXC47HBJOLBE' where id=2; -update noar tt set b0='MDYZ4UMN' where id=3; -update noar ti set b0='MDYZ4UMN' where id=3; -update noar tt set b1='8U4G9SL1ECWR7MQPUWVUKM64ZF' where id=3; -update noar ti set b1='8U4G9SL1ECWR7MQPUWVUKM64ZF' where id=3; -update noar tt set b2='5' where id=3; -update noar ti set b2='5' where id=3; -update noar tt set b0='1CKYP7OR7TV7WOE' where id=4; -update noar ti set b0='1CKYP7OR7TV7WOE' where id=4; -update noar tt set b1='N8S' where id=4; -update noar ti set b1='N8S' where id=4; -update noar tt set b2='Y9KNQYN1TIJ8R3MMY9' where id=4; -update noar ti set b2='Y9KNQYN1TIJ8R3MMY9' where id=4; -update noar tt set b0='2J34U29IYY78WEVDEM2MMOQJDSTA' where id=5; -update noar ti set b0='2J34U29IYY78WEVDEM2MMOQJDSTA' where id=5; -update noar tt set b1='4Y68T5KGB9AMO2RQJ4YTOZYI' where id=5; -update noar ti set b1='4Y68T5KGB9AMO2RQJ4YTOZYI' where id=5; -update noar tt set b2='QBLXNG' where id=5; -update noar ti set b2='QBLXNG' where id=5; -update noar tt set b0='OVKTJB6EMLIBSKX' where id=6; -update noar ti set b0='OVKTJB6EMLIBSKX' where id=6; -update noar tt set b1='1LU91IHNHXOIALCCKCPUTTRVB' where id=6; -update noar ti set b1='1LU91IHNHXOIALCCKCPUTTRVB' where id=6; -update noar tt set b2='1YHRCT7' where id=6; -update noar ti set b2='1YHRCT7' where id=6; -update noar tt set b0='LT2QECPJ8ZGPE23R9MDQCW9LPG51DYN' where id=7; -update noar ti set b0='LT2QECPJ8ZGPE23R9MDQCW9LPG51DYN' where id=7; -update noar tt set b1='2XH2JJL3' where id=7; -update noar ti set b1='2XH2JJL3' where id=7; -update noar tt set b2='FY6D293RBNTB3SXH5Z7KW' where id=7; -update noar ti set b2='FY6D293RBNTB3SXH5Z7KW' where id=7; -update noar tt set b0='C7QF' where id=8; -update noar ti set b0='C7QF' where id=8; -update noar tt set b1='XAW65IM9JAAZ6V86R0F223WOO' where id=8; -update noar ti set b1='XAW65IM9JAAZ6V86R0F223WOO' where id=8; -update noar tt set b2='KV5OJN4B' where id=8; -update noar ti set b2='KV5OJN4B' where id=8; -update noar tt set b0='JAHB8FQT2D36DV4UX' where id=9; -update noar ti set b0='JAHB8FQT2D36DV4UX' where id=9; -update noar tt set b1='4PPNZJ' where id=9; -update noar ti set b1='4PPNZJ' where id=9; -update noar tt set b2='PPGI736QC17GGCA' where id=9; -update noar ti set b2='PPGI736QC17GGCA' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - b0 longblob null, - b1 text null, - b2 tinyblob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set b0='3YRR7GNBKJZOIQLADTO' where id=1; -update noar ti set b0='3YRR7GNBKJZOIQLADTO' where id=1; -update noar tt set b1='3E' where id=1; -update noar ti set b1='3E' where id=1; -update noar tt set b2='ELLO9IKPCOX11HV64LS5RVLQ40H8FG' where id=1; -update noar ti set b2='ELLO9IKPCOX11HV64LS5RVLQ40H8FG' where id=1; -update noar tt set b0='9W0E' where id=2; -update noar ti set b0='9W0E' where id=2; -update noar tt set b1='C07K9E2R61X7P' where id=2; -update noar ti set b1='C07K9E2R61X7P' where id=2; -update noar tt set b2='0IHZU2DFEP0ZK8DZMYXYN4H' where id=2; -update noar ti set b2='0IHZU2DFEP0ZK8DZMYXYN4H' where id=2; -update noar tt set b0='EVVN8BOWTNO4' where id=3; -update noar ti set b0='EVVN8BOWTNO4' where id=3; -update noar tt set b1='5UA3' where id=3; -update noar ti set b1='5UA3' where id=3; -update noar tt set b2='BQNR3PGGO' where id=3; -update noar ti set b2='BQNR3PGGO' where id=3; -update noar tt set b0='6WYQXCORSR8IDTF4M83P12073P' where id=4; -update noar ti set b0='6WYQXCORSR8IDTF4M83P12073P' where id=4; -update noar tt set b1='0F0F7E' where id=4; -update noar ti set b1='0F0F7E' where id=4; -update noar tt set b2='8MUPWP77CNI74YHCRTTBG0OQL7' where id=4; -update noar ti set b2='8MUPWP77CNI74YHCRTTBG0OQL7' where id=4; -update noar tt set b0='8J' where id=5; -update noar ti set b0='8J' where id=5; -update noar tt set b1='T1XJR0DQTPH' where id=5; -update noar ti set b1='T1XJR0DQTPH' where id=5; -update noar tt set b2='RTXMS51KBXM7TLOWDO34V7C3SYM' where id=5; -update noar ti set b2='RTXMS51KBXM7TLOWDO34V7C3SYM' where id=5; -update noar tt set b0='64ENRG818K' where id=6; -update noar ti set b0='64ENRG818K' where id=6; -update noar tt set b1='V359EERFLGTGF86GU' where id=6; -update noar ti set b1='V359EERFLGTGF86GU' where id=6; -update noar tt set b2='OKEWJ5HPG82BW9Q' where id=6; -update noar ti set b2='OKEWJ5HPG82BW9Q' where id=6; -update noar tt set b0='B2T0Z4F2MQ4' where id=7; -update noar ti set b0='B2T0Z4F2MQ4' where id=7; -update noar tt set b1='EE' where id=7; -update noar ti set b1='EE' where id=7; -update noar tt set b2='LHBI3' where id=7; -update noar ti set b2='LHBI3' where id=7; -update noar tt set b0='O3O' where id=8; -update noar ti set b0='O3O' where id=8; -update noar tt set b1='WRQMGL0UL1QC' where id=8; -update noar ti set b1='WRQMGL0UL1QC' where id=8; -update noar tt set b2='ITBDHX2' where id=8; -update noar ti set b2='ITBDHX2' where id=8; -update noar tt set b0='FJQD1PUN9UNRPTY4O6RBAF6' where id=9; -update noar ti set b0='FJQD1PUN9UNRPTY4O6RBAF6' where id=9; -update noar tt set b1='U72IE' where id=9; -update noar ti set b1='U72IE' where id=9; -update noar tt set b2='MHW3V5H4RX7BK1KHXD8FHR3C9SK4Y84' where id=9; -update noar ti set b2='MHW3V5H4RX7BK1KHXD8FHR3C9SK4Y84' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - b0 longblob not null, - b1 text not null, - b2 tinyblob not null -) engine=tokudb; -insert into tt values (1,'','',''); -insert into tt values (2,'','',''); -insert into tt values (3,'','',''); -insert into tt values (4,'','',''); -insert into tt values (5,'','',''); -insert into tt values (6,'','',''); -insert into tt values (7,'','',''); -insert into tt values (8,'','',''); -insert into tt values (9,'','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set b0='UGA5RP5GQVX6K5C3SK' where id=1; -update noar ti set b0='UGA5RP5GQVX6K5C3SK' where id=1; -update noar tt set b1='Q037HZVZMPDHWOD30D7JSKJ17KRIHWEG' where id=1; -update noar ti set b1='Q037HZVZMPDHWOD30D7JSKJ17KRIHWEG' where id=1; -update noar tt set b2='J' where id=1; -update noar ti set b2='J' where id=1; -update noar tt set b0='BH5Z6SC5AK87FK0' where id=2; -update noar ti set b0='BH5Z6SC5AK87FK0' where id=2; -update noar tt set b1='H7W3NNOGOSOXO' where id=2; -update noar ti set b1='H7W3NNOGOSOXO' where id=2; -update noar tt set b2='MPYY2' where id=2; -update noar ti set b2='MPYY2' where id=2; -update noar tt set b0='PYF0UJLUISPVI' where id=3; -update noar ti set b0='PYF0UJLUISPVI' where id=3; -update noar tt set b1='QTRQYD3JWZQGETKDFZE3MZIG9N0PH' where id=3; -update noar ti set b1='QTRQYD3JWZQGETKDFZE3MZIG9N0PH' where id=3; -update noar tt set b2='2NNT7DJT6R4KHXDXO6KY1723QATECD' where id=3; -update noar ti set b2='2NNT7DJT6R4KHXDXO6KY1723QATECD' where id=3; -update noar tt set b0='V3' where id=4; -update noar ti set b0='V3' where id=4; -update noar tt set b1='AHASUQ1OXD1GCV6X1Y915FT' where id=4; -update noar ti set b1='AHASUQ1OXD1GCV6X1Y915FT' where id=4; -update noar tt set b2='MGJMYRBTVQJ34CBBL9GJ8GEP07349' where id=4; -update noar ti set b2='MGJMYRBTVQJ34CBBL9GJ8GEP07349' where id=4; -update noar tt set b0='2Q5SVI4IRZAM2TISEABH0UG99O15' where id=5; -update noar ti set b0='2Q5SVI4IRZAM2TISEABH0UG99O15' where id=5; -update noar tt set b1='0RDD50BFQQRDJXD6R' where id=5; -update noar ti set b1='0RDD50BFQQRDJXD6R' where id=5; -update noar tt set b2='S13IBYF6UWKOOGF' where id=5; -update noar ti set b2='S13IBYF6UWKOOGF' where id=5; -update noar tt set b0='A73KY6' where id=6; -update noar ti set b0='A73KY6' where id=6; -update noar tt set b1='KQA5MY6GWPGUVBITQ0QOMNIJK' where id=6; -update noar ti set b1='KQA5MY6GWPGUVBITQ0QOMNIJK' where id=6; -update noar tt set b2='F8JSSGO75DT3FUP8CRBMB6U9SI7AF9' where id=6; -update noar ti set b2='F8JSSGO75DT3FUP8CRBMB6U9SI7AF9' where id=6; -update noar tt set b0='ODHO2TOU5E2' where id=7; -update noar ti set b0='ODHO2TOU5E2' where id=7; -update noar tt set b1='1C49DCZSASYUAFWVQHV0' where id=7; -update noar ti set b1='1C49DCZSASYUAFWVQHV0' where id=7; -update noar tt set b2='EKT76EMAVIM' where id=7; -update noar ti set b2='EKT76EMAVIM' where id=7; -update noar tt set b0='MV1I9WNI2RN3SU5J' where id=8; -update noar ti set b0='MV1I9WNI2RN3SU5J' where id=8; -update noar tt set b1='ZB0BIWVWKPY' where id=8; -update noar ti set b1='ZB0BIWVWKPY' where id=8; -update noar tt set b2='R2A7L5SCDKUBFRXVFZ078XI4F0Q' where id=8; -update noar ti set b2='R2A7L5SCDKUBFRXVFZ078XI4F0Q' where id=8; -update noar tt set b0='EDROEI5PKGT0' where id=9; -update noar ti set b0='EDROEI5PKGT0' where id=9; -update noar tt set b1='68Z9IRV04BRXGYK' where id=9; -update noar ti set b1='68Z9IRV04BRXGYK' where id=9; -update noar tt set b2='CUY50A2L5LSZUG3E4410X43Z62VQ' where id=9; -update noar ti set b2='CUY50A2L5LSZUG3E4410X43Z62VQ' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - b0 longblob null, - b1 text null, - b2 blob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set b0='J6FCD74UVB5' where id=1; -update noar ti set b0='J6FCD74UVB5' where id=1; -update noar tt set b1='H5WHS10JQM60O9' where id=1; -update noar ti set b1='H5WHS10JQM60O9' where id=1; -update noar tt set b2='9686UOK9UONR7398POIO4JL4J7FHVG0C' where id=1; -update noar ti set b2='9686UOK9UONR7398POIO4JL4J7FHVG0C' where id=1; -update noar tt set b0='ZUIYRD' where id=2; -update noar ti set b0='ZUIYRD' where id=2; -update noar tt set b1='L2SB3MFF01' where id=2; -update noar ti set b1='L2SB3MFF01' where id=2; -update noar tt set b2='7FT9HU6PL82VRXXO1YX5SVWEL3OWF7R' where id=2; -update noar ti set b2='7FT9HU6PL82VRXXO1YX5SVWEL3OWF7R' where id=2; -update noar tt set b0='EKT64H605JFTJEE' where id=3; -update noar ti set b0='EKT64H605JFTJEE' where id=3; -update noar tt set b1='FKY5TXTC5ZQ7JLRWFKOA862IV92HR' where id=3; -update noar ti set b1='FKY5TXTC5ZQ7JLRWFKOA862IV92HR' where id=3; -update noar tt set b2='1JUNHV1O1DHI56M' where id=3; -update noar ti set b2='1JUNHV1O1DHI56M' where id=3; -update noar tt set b0='E48CPX4JO' where id=4; -update noar ti set b0='E48CPX4JO' where id=4; -update noar tt set b1='1J264W' where id=4; -update noar ti set b1='1J264W' where id=4; -update noar tt set b2='SOP6F9TFH9371RJAL7XEQLWUHC' where id=4; -update noar ti set b2='SOP6F9TFH9371RJAL7XEQLWUHC' where id=4; -update noar tt set b0='DMDLFB85GFGXYO56FFFQQ' where id=5; -update noar ti set b0='DMDLFB85GFGXYO56FFFQQ' where id=5; -update noar tt set b1='PTQK6PEZ250WEAXPQR6M2O' where id=5; -update noar ti set b1='PTQK6PEZ250WEAXPQR6M2O' where id=5; -update noar tt set b2='QJ9J7' where id=5; -update noar ti set b2='QJ9J7' where id=5; -update noar tt set b0='1N' where id=6; -update noar ti set b0='1N' where id=6; -update noar tt set b1='ZRDECDH' where id=6; -update noar ti set b1='ZRDECDH' where id=6; -update noar tt set b2='FP0KL0ON9BM273YWP' where id=6; -update noar ti set b2='FP0KL0ON9BM273YWP' where id=6; -update noar tt set b0='LZP10T28A8R' where id=7; -update noar ti set b0='LZP10T28A8R' where id=7; -update noar tt set b1='XH3LBXFYZMBB' where id=7; -update noar ti set b1='XH3LBXFYZMBB' where id=7; -update noar tt set b2='KZB8' where id=7; -update noar ti set b2='KZB8' where id=7; -update noar tt set b0='SLO162JR7QM8P5VAPNZQY4M3IAXXXGS' where id=8; -update noar ti set b0='SLO162JR7QM8P5VAPNZQY4M3IAXXXGS' where id=8; -update noar tt set b1='7HKRTCHTFMHN' where id=8; -update noar ti set b1='7HKRTCHTFMHN' where id=8; -update noar tt set b2='LRWG6FPRCJJI0XYD' where id=8; -update noar ti set b2='LRWG6FPRCJJI0XYD' where id=8; -update noar tt set b0='TMC2R9T9J' where id=9; -update noar ti set b0='TMC2R9T9J' where id=9; -update noar tt set b1='CK38ZD95JWM' where id=9; -update noar ti set b1='CK38ZD95JWM' where id=9; -update noar tt set b2='8JCWBVUMYZDFA' where id=9; -update noar ti set b2='8JCWBVUMYZDFA' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - b0 longblob not null, - b1 text not null, - b2 blob not null -) engine=tokudb; -insert into tt values (1,'','',''); -insert into tt values (2,'','',''); -insert into tt values (3,'','',''); -insert into tt values (4,'','',''); -insert into tt values (5,'','',''); -insert into tt values (6,'','',''); -insert into tt values (7,'','',''); -insert into tt values (8,'','',''); -insert into tt values (9,'','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set b0='W5H0A7QOV7Z4GRUSWPB4C4' where id=1; -update noar ti set b0='W5H0A7QOV7Z4GRUSWPB4C4' where id=1; -update noar tt set b1='QWM' where id=1; -update noar ti set b1='QWM' where id=1; -update noar tt set b2='LPJ' where id=1; -update noar ti set b2='LPJ' where id=1; -update noar tt set b0='51FZQGI1HE76MSJFSB67K9BR' where id=2; -update noar ti set b0='51FZQGI1HE76MSJFSB67K9BR' where id=2; -update noar tt set b1='WP7VCQL3K7FXY78ZX5JZ7FT8I36G' where id=2; -update noar ti set b1='WP7VCQL3K7FXY78ZX5JZ7FT8I36G' where id=2; -update noar tt set b2='P6GIVWFKV4GOJH01UIJK' where id=2; -update noar ti set b2='P6GIVWFKV4GOJH01UIJK' where id=2; -update noar tt set b0='NPZSZOA2CFE1MFMEO9UIFY4RKW21I3' where id=3; -update noar ti set b0='NPZSZOA2CFE1MFMEO9UIFY4RKW21I3' where id=3; -update noar tt set b1='2CHULP14F0' where id=3; -update noar ti set b1='2CHULP14F0' where id=3; -update noar tt set b2='2VN4' where id=3; -update noar ti set b2='2VN4' where id=3; -update noar tt set b0='B346T0F3GH7HUGVSXP8E2KWYY7PX48WH' where id=4; -update noar ti set b0='B346T0F3GH7HUGVSXP8E2KWYY7PX48WH' where id=4; -update noar tt set b1='QMH04RIB0L1B' where id=4; -update noar ti set b1='QMH04RIB0L1B' where id=4; -update noar tt set b2='JU9MQ' where id=4; -update noar ti set b2='JU9MQ' where id=4; -update noar tt set b0='KOY2CD' where id=5; -update noar ti set b0='KOY2CD' where id=5; -update noar tt set b1='NF' where id=5; -update noar ti set b1='NF' where id=5; -update noar tt set b2='FA0RSJUT1S9I04N7WR58BVUOW4B3Q' where id=5; -update noar ti set b2='FA0RSJUT1S9I04N7WR58BVUOW4B3Q' where id=5; -update noar tt set b0='QZVQ' where id=6; -update noar ti set b0='QZVQ' where id=6; -update noar tt set b1='QWCIK63XQRC9LUPBGGQ058BV10' where id=6; -update noar ti set b1='QWCIK63XQRC9LUPBGGQ058BV10' where id=6; -update noar tt set b2='5QD9IKRLULQ' where id=6; -update noar ti set b2='5QD9IKRLULQ' where id=6; -update noar tt set b0='IVVMK5K6GU1' where id=7; -update noar ti set b0='IVVMK5K6GU1' where id=7; -update noar tt set b1='OR8KI32IW987HBEH4YTP' where id=7; -update noar ti set b1='OR8KI32IW987HBEH4YTP' where id=7; -update noar tt set b2='LX10XK7NIIPZFM1MU9G3BSCTB61988P' where id=7; -update noar ti set b2='LX10XK7NIIPZFM1MU9G3BSCTB61988P' where id=7; -update noar tt set b0='QP83DRFFB1B9SPU68JC' where id=8; -update noar ti set b0='QP83DRFFB1B9SPU68JC' where id=8; -update noar tt set b1='C6VSDYJ7A3928BYS' where id=8; -update noar ti set b1='C6VSDYJ7A3928BYS' where id=8; -update noar tt set b2='Y6A4' where id=8; -update noar ti set b2='Y6A4' where id=8; -update noar tt set b0='R1IEXEDHKURI5PIGU1QI319S' where id=9; -update noar ti set b0='R1IEXEDHKURI5PIGU1QI319S' where id=9; -update noar tt set b1='DYOXZHN4WEJTGQY5Z0K56WX1UNN4O' where id=9; -update noar ti set b1='DYOXZHN4WEJTGQY5Z0K56WX1UNN4O' where id=9; -update noar tt set b2='9SIJVBSVNZ2DPPITJAOL7NZI' where id=9; -update noar ti set b2='9SIJVBSVNZ2DPPITJAOL7NZI' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - b0 longblob null, - b1 text null, - b2 mediumblob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set b0='SD8LNOMFZJMJIN7A76Q6C2' where id=1; -update noar ti set b0='SD8LNOMFZJMJIN7A76Q6C2' where id=1; -update noar tt set b1='7CG' where id=1; -update noar ti set b1='7CG' where id=1; -update noar tt set b2='EJ1XQC1QEVLKCNWFAT4XY90HTW' where id=1; -update noar ti set b2='EJ1XQC1QEVLKCNWFAT4XY90HTW' where id=1; -update noar tt set b0='1R1TWOIZ48RSM6L1LX5XAGB4X' where id=2; -update noar ti set b0='1R1TWOIZ48RSM6L1LX5XAGB4X' where id=2; -update noar tt set b1='XVSF67DEFB3O2FA20USQTI6BEBSZI8' where id=2; -update noar ti set b1='XVSF67DEFB3O2FA20USQTI6BEBSZI8' where id=2; -update noar tt set b2='YZ9TSCBHD904R07GM' where id=2; -update noar ti set b2='YZ9TSCBHD904R07GM' where id=2; -update noar tt set b0='KSOIIEM36HWG4OC5VRNBWPV6PXHBIM5H' where id=3; -update noar ti set b0='KSOIIEM36HWG4OC5VRNBWPV6PXHBIM5H' where id=3; -update noar tt set b1='A8N01RR1WCSU1SS2I8VHNG3E7' where id=3; -update noar ti set b1='A8N01RR1WCSU1SS2I8VHNG3E7' where id=3; -update noar tt set b2='W8FZZ0N50CZ573683OC77B' where id=3; -update noar ti set b2='W8FZZ0N50CZ573683OC77B' where id=3; -update noar tt set b0='JIVJMP5E6SE9SQR8ABXH9AIHPJ3UBST4' where id=4; -update noar ti set b0='JIVJMP5E6SE9SQR8ABXH9AIHPJ3UBST4' where id=4; -update noar tt set b1='4TDI0M9YG3MTI51JYRL5A0Y43B30' where id=4; -update noar ti set b1='4TDI0M9YG3MTI51JYRL5A0Y43B30' where id=4; -update noar tt set b2='RTD' where id=4; -update noar ti set b2='RTD' where id=4; -update noar tt set b0='O' where id=5; -update noar ti set b0='O' where id=5; -update noar tt set b1='GZIHJPGN9B' where id=5; -update noar ti set b1='GZIHJPGN9B' where id=5; -update noar tt set b2='5MD2VBPM' where id=5; -update noar ti set b2='5MD2VBPM' where id=5; -update noar tt set b0='KKVFF6E27078NKO2MA4' where id=6; -update noar ti set b0='KKVFF6E27078NKO2MA4' where id=6; -update noar tt set b1='PMWX4ZHPF5GB4WNB1OPT5DROV' where id=6; -update noar ti set b1='PMWX4ZHPF5GB4WNB1OPT5DROV' where id=6; -update noar tt set b2='A' where id=6; -update noar ti set b2='A' where id=6; -update noar tt set b0='X' where id=7; -update noar ti set b0='X' where id=7; -update noar tt set b1='GG24EDPR' where id=7; -update noar ti set b1='GG24EDPR' where id=7; -update noar tt set b2='NN437ZTIVTN' where id=7; -update noar ti set b2='NN437ZTIVTN' where id=7; -update noar tt set b0='K876776IE07' where id=8; -update noar ti set b0='K876776IE07' where id=8; -update noar tt set b1='4TA2MKQ5CJIY6LB4A0U7DRWJK5T6' where id=8; -update noar ti set b1='4TA2MKQ5CJIY6LB4A0U7DRWJK5T6' where id=8; -update noar tt set b2='SUC7B4NVT36O96SX' where id=8; -update noar ti set b2='SUC7B4NVT36O96SX' where id=8; -update noar tt set b0='KVN53LB8RRYZUUR' where id=9; -update noar ti set b0='KVN53LB8RRYZUUR' where id=9; -update noar tt set b1='7QFOZ7' where id=9; -update noar ti set b1='7QFOZ7' where id=9; -update noar tt set b2='KIKSK89TRP93IRB7QBYUO4JP7X518Z' where id=9; -update noar ti set b2='KIKSK89TRP93IRB7QBYUO4JP7X518Z' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - b0 longblob not null, - b1 text not null, - b2 mediumblob not null -) engine=tokudb; -insert into tt values (1,'','',''); -insert into tt values (2,'','',''); -insert into tt values (3,'','',''); -insert into tt values (4,'','',''); -insert into tt values (5,'','',''); -insert into tt values (6,'','',''); -insert into tt values (7,'','',''); -insert into tt values (8,'','',''); -insert into tt values (9,'','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set b0='J836QLFGB91' where id=1; -update noar ti set b0='J836QLFGB91' where id=1; -update noar tt set b1='DVE18VX1C3YUYUHM4LHGZ9F57UHFT' where id=1; -update noar ti set b1='DVE18VX1C3YUYUHM4LHGZ9F57UHFT' where id=1; -update noar tt set b2='2HOCJ' where id=1; -update noar ti set b2='2HOCJ' where id=1; -update noar tt set b0='RWE7U2ZOVVLUUCH94BHPZQJC' where id=2; -update noar ti set b0='RWE7U2ZOVVLUUCH94BHPZQJC' where id=2; -update noar tt set b1='47FHIZ02XZXPDIJ25PQAJQ67QTT40K' where id=2; -update noar ti set b1='47FHIZ02XZXPDIJ25PQAJQ67QTT40K' where id=2; -update noar tt set b2='B0C4I' where id=2; -update noar ti set b2='B0C4I' where id=2; -update noar tt set b0='B04J7EPS19Y9JXYVZCBSB49L6SO6WTB6' where id=3; -update noar ti set b0='B04J7EPS19Y9JXYVZCBSB49L6SO6WTB6' where id=3; -update noar tt set b1='5ZBZ' where id=3; -update noar ti set b1='5ZBZ' where id=3; -update noar tt set b2='A8UH8AMVZFSYEILYY4NAOID14OUBBR' where id=3; -update noar ti set b2='A8UH8AMVZFSYEILYY4NAOID14OUBBR' where id=3; -update noar tt set b0='QF4N6K' where id=4; -update noar ti set b0='QF4N6K' where id=4; -update noar tt set b1='7JR0SLTGZY8JD2I' where id=4; -update noar ti set b1='7JR0SLTGZY8JD2I' where id=4; -update noar tt set b2='6AR' where id=4; -update noar ti set b2='6AR' where id=4; -update noar tt set b0='NL3RV98YUI46IJZMW33VCHA' where id=5; -update noar ti set b0='NL3RV98YUI46IJZMW33VCHA' where id=5; -update noar tt set b1='E9ZBPZ988HVR' where id=5; -update noar ti set b1='E9ZBPZ988HVR' where id=5; -update noar tt set b2='5JAIYR4H9R49JX3QU' where id=5; -update noar ti set b2='5JAIYR4H9R49JX3QU' where id=5; -update noar tt set b0='DX5XM' where id=6; -update noar ti set b0='DX5XM' where id=6; -update noar tt set b1='M430F56IMR' where id=6; -update noar ti set b1='M430F56IMR' where id=6; -update noar tt set b2='MTYQ51J8NKRRX2' where id=6; -update noar ti set b2='MTYQ51J8NKRRX2' where id=6; -update noar tt set b0='1VZ8NRAO3O72AL8EDUVFHROS94' where id=7; -update noar ti set b0='1VZ8NRAO3O72AL8EDUVFHROS94' where id=7; -update noar tt set b1='X5ORGUCXSLQTO' where id=7; -update noar ti set b1='X5ORGUCXSLQTO' where id=7; -update noar tt set b2='YIXNY' where id=7; -update noar ti set b2='YIXNY' where id=7; -update noar tt set b0='B1OGLBDU3BWA7DBFGMZ4OCB' where id=8; -update noar ti set b0='B1OGLBDU3BWA7DBFGMZ4OCB' where id=8; -update noar tt set b1='Q6DKOT844' where id=8; -update noar ti set b1='Q6DKOT844' where id=8; -update noar tt set b2='0ML0O877PF4D3H0PG1MIX6S' where id=8; -update noar ti set b2='0ML0O877PF4D3H0PG1MIX6S' where id=8; -update noar tt set b0='IW6GNF0DLNK5G5IUHLXJXD52OK' where id=9; -update noar ti set b0='IW6GNF0DLNK5G5IUHLXJXD52OK' where id=9; -update noar tt set b1='N8HRAHAHZX5SKMEVJI3TY6WKP78' where id=9; -update noar ti set b1='N8HRAHAHZX5SKMEVJI3TY6WKP78' where id=9; -update noar tt set b2='LDT2L5CSYWBJSK6' where id=9; -update noar ti set b2='LDT2L5CSYWBJSK6' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - b0 longblob null, - b1 text null, - b2 longblob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set b0='VHUPQMV3EEHHVAFA3AFTTID59CUOERXJ' where id=1; -update noar ti set b0='VHUPQMV3EEHHVAFA3AFTTID59CUOERXJ' where id=1; -update noar tt set b1='K991DO78VPO7SZSCVCFY8P1CGSL' where id=1; -update noar ti set b1='K991DO78VPO7SZSCVCFY8P1CGSL' where id=1; -update noar tt set b2='W5' where id=1; -update noar ti set b2='W5' where id=1; -update noar tt set b0='97WVCGVLTCIGYR' where id=2; -update noar ti set b0='97WVCGVLTCIGYR' where id=2; -update noar tt set b1='S5G' where id=2; -update noar ti set b1='S5G' where id=2; -update noar tt set b2='K1ESXBK3S19ZC2' where id=2; -update noar ti set b2='K1ESXBK3S19ZC2' where id=2; -update noar tt set b0='8V5GOVFP0VMSTBZFIYL3JYPBIPFKUM4P' where id=3; -update noar ti set b0='8V5GOVFP0VMSTBZFIYL3JYPBIPFKUM4P' where id=3; -update noar tt set b1='5J6YE826HEGAJNBER86T6Y3LZDVWZ4Z' where id=3; -update noar ti set b1='5J6YE826HEGAJNBER86T6Y3LZDVWZ4Z' where id=3; -update noar tt set b2='5MNX2IZ' where id=3; -update noar ti set b2='5MNX2IZ' where id=3; -update noar tt set b0='PLZB7' where id=4; -update noar ti set b0='PLZB7' where id=4; -update noar tt set b1='GVP7YDHSWIKB3P81P54M5TCDY0Z' where id=4; -update noar ti set b1='GVP7YDHSWIKB3P81P54M5TCDY0Z' where id=4; -update noar tt set b2='MIFCZ5FSG29F6A92V' where id=4; -update noar ti set b2='MIFCZ5FSG29F6A92V' where id=4; -update noar tt set b0='T4Z6JRZ8A528NLII5I' where id=5; -update noar ti set b0='T4Z6JRZ8A528NLII5I' where id=5; -update noar tt set b1='XA71' where id=5; -update noar ti set b1='XA71' where id=5; -update noar tt set b2='5CO1SE0TV4F0SCVSD' where id=5; -update noar ti set b2='5CO1SE0TV4F0SCVSD' where id=5; -update noar tt set b0='YKTEE7GXJLN9PB' where id=6; -update noar ti set b0='YKTEE7GXJLN9PB' where id=6; -update noar tt set b1='BZPJSGBLX732JERF3UJ2Z2FN' where id=6; -update noar ti set b1='BZPJSGBLX732JERF3UJ2Z2FN' where id=6; -update noar tt set b2='CVCVEAA4' where id=6; -update noar ti set b2='CVCVEAA4' where id=6; -update noar tt set b0='TOJL6M1VYI1' where id=7; -update noar ti set b0='TOJL6M1VYI1' where id=7; -update noar tt set b1='HRW0SQCE4CQE7U' where id=7; -update noar ti set b1='HRW0SQCE4CQE7U' where id=7; -update noar tt set b2='8VW59GFHIVBILH29LNDQ28KMYFXQU193' where id=7; -update noar ti set b2='8VW59GFHIVBILH29LNDQ28KMYFXQU193' where id=7; -update noar tt set b0='TM93JZRXAAWWG7HZY' where id=8; -update noar ti set b0='TM93JZRXAAWWG7HZY' where id=8; -update noar tt set b1='A69J5XKEIFLLT33RW7P8' where id=8; -update noar ti set b1='A69J5XKEIFLLT33RW7P8' where id=8; -update noar tt set b2='LPJTU0ZY5SX70NSM3I26NQSWRS' where id=8; -update noar ti set b2='LPJTU0ZY5SX70NSM3I26NQSWRS' where id=8; -update noar tt set b0='W65TICZSD1YDI' where id=9; -update noar ti set b0='W65TICZSD1YDI' where id=9; -update noar tt set b1='QIXKROMIO9P' where id=9; -update noar ti set b1='QIXKROMIO9P' where id=9; -update noar tt set b2='Y2' where id=9; -update noar ti set b2='Y2' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - b0 longblob not null, - b1 text not null, - b2 longblob not null -) engine=tokudb; -insert into tt values (1,'','',''); -insert into tt values (2,'','',''); -insert into tt values (3,'','',''); -insert into tt values (4,'','',''); -insert into tt values (5,'','',''); -insert into tt values (6,'','',''); -insert into tt values (7,'','',''); -insert into tt values (8,'','',''); -insert into tt values (9,'','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set b0='IXLQ' where id=1; -update noar ti set b0='IXLQ' where id=1; -update noar tt set b1='0GV8ET59V74TSL6UAKVQK7IA' where id=1; -update noar ti set b1='0GV8ET59V74TSL6UAKVQK7IA' where id=1; -update noar tt set b2='J5LLXL9C0Z' where id=1; -update noar ti set b2='J5LLXL9C0Z' where id=1; -update noar tt set b0='GN1' where id=2; -update noar ti set b0='GN1' where id=2; -update noar tt set b1='GCEHA6AQ8BC7ZJVBSH5TN0YBB' where id=2; -update noar ti set b1='GCEHA6AQ8BC7ZJVBSH5TN0YBB' where id=2; -update noar tt set b2='RRUM0MZ3F6UIBCGYY1ZRB6' where id=2; -update noar ti set b2='RRUM0MZ3F6UIBCGYY1ZRB6' where id=2; -update noar tt set b0='CHTLDYNLKO070GRYHN5AO' where id=3; -update noar ti set b0='CHTLDYNLKO070GRYHN5AO' where id=3; -update noar tt set b1='T6R74' where id=3; -update noar ti set b1='T6R74' where id=3; -update noar tt set b2='02QEW3K4JAZBMDPI3U34ITG' where id=3; -update noar ti set b2='02QEW3K4JAZBMDPI3U34ITG' where id=3; -update noar tt set b0='F86MITJKWEBY571S4' where id=4; -update noar ti set b0='F86MITJKWEBY571S4' where id=4; -update noar tt set b1='WCMSVXB2KATELVUDFXNR4B1CLLOTV' where id=4; -update noar ti set b1='WCMSVXB2KATELVUDFXNR4B1CLLOTV' where id=4; -update noar tt set b2='PWC' where id=4; -update noar ti set b2='PWC' where id=4; -update noar tt set b0='WPIL3JE320Z' where id=5; -update noar ti set b0='WPIL3JE320Z' where id=5; -update noar tt set b1='DNNVGHQWIHL2VB' where id=5; -update noar ti set b1='DNNVGHQWIHL2VB' where id=5; -update noar tt set b2='1Y1Z' where id=5; -update noar ti set b2='1Y1Z' where id=5; -update noar tt set b0='8I14EXD02CS' where id=6; -update noar ti set b0='8I14EXD02CS' where id=6; -update noar tt set b1='OPCV6ODUMXJ4' where id=6; -update noar ti set b1='OPCV6ODUMXJ4' where id=6; -update noar tt set b2='HTG0EQPAKHZ13DXTGLTXU7OW601PES' where id=6; -update noar ti set b2='HTG0EQPAKHZ13DXTGLTXU7OW601PES' where id=6; -update noar tt set b0='DPBY7XPODUL' where id=7; -update noar ti set b0='DPBY7XPODUL' where id=7; -update noar tt set b1='Y' where id=7; -update noar ti set b1='Y' where id=7; -update noar tt set b2='LJWJWLS3BRN' where id=7; -update noar ti set b2='LJWJWLS3BRN' where id=7; -update noar tt set b0='YKRGG60SV7370054Z10FO' where id=8; -update noar ti set b0='YKRGG60SV7370054Z10FO' where id=8; -update noar tt set b1='TUCXJJOP1ZZXTC9S1IOT3H' where id=8; -update noar ti set b1='TUCXJJOP1ZZXTC9S1IOT3H' where id=8; -update noar tt set b2='UQ7N2WEJFIOS3FDP9' where id=8; -update noar ti set b2='UQ7N2WEJFIOS3FDP9' where id=8; -update noar tt set b0='E40AN7BDA3PITTUSCD9ZZMMMKD9K' where id=9; -update noar ti set b0='E40AN7BDA3PITTUSCD9ZZMMMKD9K' where id=9; -update noar tt set b1='I93Z1FXE2HHMHCP8524DH1LV' where id=9; -update noar ti set b1='I93Z1FXE2HHMHCP8524DH1LV' where id=9; -update noar tt set b2='F8GN2' where id=9; -update noar ti set b2='F8GN2' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - b0 longblob null, - b1 text null, - b2 text null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set b0='W725N51H71T565X5T9X1' where id=1; -update noar ti set b0='W725N51H71T565X5T9X1' where id=1; -update noar tt set b1='HUELY9ZD20MVBVDI' where id=1; -update noar ti set b1='HUELY9ZD20MVBVDI' where id=1; -update noar tt set b2='GRL5E7IA5W12INXDIK0ZQ2Z5V6J1' where id=1; -update noar ti set b2='GRL5E7IA5W12INXDIK0ZQ2Z5V6J1' where id=1; -update noar tt set b0='OW' where id=2; -update noar ti set b0='OW' where id=2; -update noar tt set b1='N3O0NU0EPNA60BYWWC1Y97TV' where id=2; -update noar ti set b1='N3O0NU0EPNA60BYWWC1Y97TV' where id=2; -update noar tt set b2='P' where id=2; -update noar ti set b2='P' where id=2; -update noar tt set b0='ZQPCWFYWD9W' where id=3; -update noar ti set b0='ZQPCWFYWD9W' where id=3; -update noar tt set b1='MFWBI8N0QN14D4B94UMMNT6RW4BWXA' where id=3; -update noar ti set b1='MFWBI8N0QN14D4B94UMMNT6RW4BWXA' where id=3; -update noar tt set b2='YBX3QB40G25OSXCJ1K4FD297Z0L' where id=3; -update noar ti set b2='YBX3QB40G25OSXCJ1K4FD297Z0L' where id=3; -update noar tt set b0='KMR7G47F42Y' where id=4; -update noar ti set b0='KMR7G47F42Y' where id=4; -update noar tt set b1='U291AF6KA' where id=4; -update noar ti set b1='U291AF6KA' where id=4; -update noar tt set b2='UZIA1WNZ7QT4' where id=4; -update noar ti set b2='UZIA1WNZ7QT4' where id=4; -update noar tt set b0='NQ6DWZO45XCVWZIU6KNJM' where id=5; -update noar ti set b0='NQ6DWZO45XCVWZIU6KNJM' where id=5; -update noar tt set b1='UW9F7U' where id=5; -update noar ti set b1='UW9F7U' where id=5; -update noar tt set b2='K1IIRFTCWD7MB4X7' where id=5; -update noar ti set b2='K1IIRFTCWD7MB4X7' where id=5; -update noar tt set b0='2MN2UKF6N5SZWRU7' where id=6; -update noar ti set b0='2MN2UKF6N5SZWRU7' where id=6; -update noar tt set b1='233OZPX30ZW3284HGVODFHT' where id=6; -update noar ti set b1='233OZPX30ZW3284HGVODFHT' where id=6; -update noar tt set b2='Q0R0SO9R8Z50FFZ1TNFBZ4T5' where id=6; -update noar ti set b2='Q0R0SO9R8Z50FFZ1TNFBZ4T5' where id=6; -update noar tt set b0='90TJKR5AUJIB740YG5' where id=7; -update noar ti set b0='90TJKR5AUJIB740YG5' where id=7; -update noar tt set b1='Q3G5HYWMM8ZT51OND73QG7RQF8MH5' where id=7; -update noar ti set b1='Q3G5HYWMM8ZT51OND73QG7RQF8MH5' where id=7; -update noar tt set b2='FC0Z6LO041XJBG5O1ALZYTM15TRK0ZGN' where id=7; -update noar ti set b2='FC0Z6LO041XJBG5O1ALZYTM15TRK0ZGN' where id=7; -update noar tt set b0='RPGEPQ5JE5EZGPHHHE1KPZELS5J' where id=8; -update noar ti set b0='RPGEPQ5JE5EZGPHHHE1KPZELS5J' where id=8; -update noar tt set b1='I' where id=8; -update noar ti set b1='I' where id=8; -update noar tt set b2='BM7SW4MQ8YTUU4X4WTH' where id=8; -update noar ti set b2='BM7SW4MQ8YTUU4X4WTH' where id=8; -update noar tt set b0='XHOI1Y3UOSLIFVORTA4X6Q8KWNZVH6L' where id=9; -update noar ti set b0='XHOI1Y3UOSLIFVORTA4X6Q8KWNZVH6L' where id=9; -update noar tt set b1='A8BPZX77AZQO' where id=9; -update noar ti set b1='A8BPZX77AZQO' where id=9; -update noar tt set b2='N' where id=9; -update noar ti set b2='N' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - b0 longblob not null, - b1 text not null, - b2 text not null -) engine=tokudb; -insert into tt values (1,'','',''); -insert into tt values (2,'','',''); -insert into tt values (3,'','',''); -insert into tt values (4,'','',''); -insert into tt values (5,'','',''); -insert into tt values (6,'','',''); -insert into tt values (7,'','',''); -insert into tt values (8,'','',''); -insert into tt values (9,'','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set b0='S2FIIC4M2KV' where id=1; -update noar ti set b0='S2FIIC4M2KV' where id=1; -update noar tt set b1='YQSR' where id=1; -update noar ti set b1='YQSR' where id=1; -update noar tt set b2='FZC5TKJVBMB1WW7L' where id=1; -update noar ti set b2='FZC5TKJVBMB1WW7L' where id=1; -update noar tt set b0='7B1L17ADXH' where id=2; -update noar ti set b0='7B1L17ADXH' where id=2; -update noar tt set b1='NCRLGJ0HPRNA9FCM3' where id=2; -update noar ti set b1='NCRLGJ0HPRNA9FCM3' where id=2; -update noar tt set b2='HKBJCG1I2W4BLOV9' where id=2; -update noar ti set b2='HKBJCG1I2W4BLOV9' where id=2; -update noar tt set b0='NOPYPMB90PM7YHZK5AMVLP7NETD2' where id=3; -update noar ti set b0='NOPYPMB90PM7YHZK5AMVLP7NETD2' where id=3; -update noar tt set b1='RBU04MRNSEH4ZWJKJFIUS8G26KKDZ6N3' where id=3; -update noar ti set b1='RBU04MRNSEH4ZWJKJFIUS8G26KKDZ6N3' where id=3; -update noar tt set b2='DSPMVAY35RJLC8727' where id=3; -update noar ti set b2='DSPMVAY35RJLC8727' where id=3; -update noar tt set b0='X' where id=4; -update noar ti set b0='X' where id=4; -update noar tt set b1='M4YT2XF6B3' where id=4; -update noar ti set b1='M4YT2XF6B3' where id=4; -update noar tt set b2='LHB' where id=4; -update noar ti set b2='LHB' where id=4; -update noar tt set b0='6NUWYOVU7XBGL56IS' where id=5; -update noar ti set b0='6NUWYOVU7XBGL56IS' where id=5; -update noar tt set b1='WPU226NBPDPFHKPUZOASR4B' where id=5; -update noar ti set b1='WPU226NBPDPFHKPUZOASR4B' where id=5; -update noar tt set b2='F767Y2X1Z3U' where id=5; -update noar ti set b2='F767Y2X1Z3U' where id=5; -update noar tt set b0='LKIIMW3J090F6O3SMNQ3M' where id=6; -update noar ti set b0='LKIIMW3J090F6O3SMNQ3M' where id=6; -update noar tt set b1='N' where id=6; -update noar ti set b1='N' where id=6; -update noar tt set b2='6TZ6PIQ4VV2T' where id=6; -update noar ti set b2='6TZ6PIQ4VV2T' where id=6; -update noar tt set b0='X3V2F9U5OLX35QQG4ULCET0WIRK97' where id=7; -update noar ti set b0='X3V2F9U5OLX35QQG4ULCET0WIRK97' where id=7; -update noar tt set b1='7S54PCK5URKOHY6PVO5K' where id=7; -update noar ti set b1='7S54PCK5URKOHY6PVO5K' where id=7; -update noar tt set b2='NOYD7G7I' where id=7; -update noar ti set b2='NOYD7G7I' where id=7; -update noar tt set b0='IDE4A5' where id=8; -update noar ti set b0='IDE4A5' where id=8; -update noar tt set b1='0WZ0JADT8' where id=8; -update noar ti set b1='0WZ0JADT8' where id=8; -update noar tt set b2='DRJ85FAS8RN6BA2I0HWEA2Q' where id=8; -update noar ti set b2='DRJ85FAS8RN6BA2I0HWEA2Q' where id=8; -update noar tt set b0='BF39NXSJIP8OLCVGBN00' where id=9; -update noar ti set b0='BF39NXSJIP8OLCVGBN00' where id=9; -update noar tt set b1='PLLY62BC0UM8BLGJGGJ7LU15MG' where id=9; -update noar ti set b1='PLLY62BC0UM8BLGJGGJ7LU15MG' where id=9; -update noar tt set b2='0JBCQDQWFGODF' where id=9; -update noar ti set b2='0JBCQDQWFGODF' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - b0 text null, - b1 tinyblob null, - b2 tinyblob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set b0='WS9RHW5CQ7AKYJKMRXL2RZLLR' where id=1; -update noar ti set b0='WS9RHW5CQ7AKYJKMRXL2RZLLR' where id=1; -update noar tt set b1='0B7HZ582I1M0U6KM7D' where id=1; -update noar ti set b1='0B7HZ582I1M0U6KM7D' where id=1; -update noar tt set b2='2308KMB641OE' where id=1; -update noar ti set b2='2308KMB641OE' where id=1; -update noar tt set b0='52PYZU3ZQ4H6NUDU1P3XH' where id=2; -update noar ti set b0='52PYZU3ZQ4H6NUDU1P3XH' where id=2; -update noar tt set b1='X4NJAT8JN8L4B0BB' where id=2; -update noar ti set b1='X4NJAT8JN8L4B0BB' where id=2; -update noar tt set b2='K' where id=2; -update noar ti set b2='K' where id=2; -update noar tt set b0='ZWCR50LDMJ0' where id=3; -update noar ti set b0='ZWCR50LDMJ0' where id=3; -update noar tt set b1='ERHQ1Z45GDSPN4NUGP5YO4V4CDGKK3V' where id=3; -update noar ti set b1='ERHQ1Z45GDSPN4NUGP5YO4V4CDGKK3V' where id=3; -update noar tt set b2='W' where id=3; -update noar ti set b2='W' where id=3; -update noar tt set b0='PPQMNYBOOH69' where id=4; -update noar ti set b0='PPQMNYBOOH69' where id=4; -update noar tt set b1='Z7ZZTK8473T0T76Y0TF27' where id=4; -update noar ti set b1='Z7ZZTK8473T0T76Y0TF27' where id=4; -update noar tt set b2='AO5UEGO9BDNB2WMYVJF4ZPLA' where id=4; -update noar ti set b2='AO5UEGO9BDNB2WMYVJF4ZPLA' where id=4; -update noar tt set b0='FMDR0GVWPQ6QYPK0K9AASP4KJJZO71C9' where id=5; -update noar ti set b0='FMDR0GVWPQ6QYPK0K9AASP4KJJZO71C9' where id=5; -update noar tt set b1='BXM5OQMOV2H3T31NMV02Y' where id=5; -update noar ti set b1='BXM5OQMOV2H3T31NMV02Y' where id=5; -update noar tt set b2='3AEF5NH2KER56WAGNAQ' where id=5; -update noar ti set b2='3AEF5NH2KER56WAGNAQ' where id=5; -update noar tt set b0='K2DGUVO2ITLS5JMV54I4OKH' where id=6; -update noar ti set b0='K2DGUVO2ITLS5JMV54I4OKH' where id=6; -update noar tt set b1='MRUR5S6ZXDBMA' where id=6; -update noar ti set b1='MRUR5S6ZXDBMA' where id=6; -update noar tt set b2='B4K8Q80ATJJFD9F29L8ZQS98H0FXX2K5' where id=6; -update noar ti set b2='B4K8Q80ATJJFD9F29L8ZQS98H0FXX2K5' where id=6; -update noar tt set b0='I5GYSX' where id=7; -update noar ti set b0='I5GYSX' where id=7; -update noar tt set b1='RL' where id=7; -update noar ti set b1='RL' where id=7; -update noar tt set b2='C9DV9LB2YGHVDDQBUIEF' where id=7; -update noar ti set b2='C9DV9LB2YGHVDDQBUIEF' where id=7; -update noar tt set b0='7Q' where id=8; -update noar ti set b0='7Q' where id=8; -update noar tt set b1='3U90HTAFIVXNAXU3J0RHFJ' where id=8; -update noar ti set b1='3U90HTAFIVXNAXU3J0RHFJ' where id=8; -update noar tt set b2='9FFX6765EPY7' where id=8; -update noar ti set b2='9FFX6765EPY7' where id=8; -update noar tt set b0='XCYOVGDHDNKKB0BGPYI102JR7EIXZET' where id=9; -update noar ti set b0='XCYOVGDHDNKKB0BGPYI102JR7EIXZET' where id=9; -update noar tt set b1='48NH5Z5OJ80HSJ8AH4OH1U3' where id=9; -update noar ti set b1='48NH5Z5OJ80HSJ8AH4OH1U3' where id=9; -update noar tt set b2='EE6K02P5AB' where id=9; -update noar ti set b2='EE6K02P5AB' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - b0 text not null, - b1 tinyblob not null, - b2 tinyblob not null -) engine=tokudb; -insert into tt values (1,'','',''); -insert into tt values (2,'','',''); -insert into tt values (3,'','',''); -insert into tt values (4,'','',''); -insert into tt values (5,'','',''); -insert into tt values (6,'','',''); -insert into tt values (7,'','',''); -insert into tt values (8,'','',''); -insert into tt values (9,'','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set b0='W' where id=1; -update noar ti set b0='W' where id=1; -update noar tt set b1='LMTP0HBUV' where id=1; -update noar ti set b1='LMTP0HBUV' where id=1; -update noar tt set b2='HSVVBHU73SE6IWY621FX' where id=1; -update noar ti set b2='HSVVBHU73SE6IWY621FX' where id=1; -update noar tt set b0='N4CSLN' where id=2; -update noar ti set b0='N4CSLN' where id=2; -update noar tt set b1='UJABUUEUV18WB' where id=2; -update noar ti set b1='UJABUUEUV18WB' where id=2; -update noar tt set b2='V48QOLP0DP7QZDZSW4QCE' where id=2; -update noar ti set b2='V48QOLP0DP7QZDZSW4QCE' where id=2; -update noar tt set b0='9TZTJNYHJ3' where id=3; -update noar ti set b0='9TZTJNYHJ3' where id=3; -update noar tt set b1='6XH9OPDVC' where id=3; -update noar ti set b1='6XH9OPDVC' where id=3; -update noar tt set b2='HCOUDQ' where id=3; -update noar ti set b2='HCOUDQ' where id=3; -update noar tt set b0='99PQGD56BU7FHQGWOYJC' where id=4; -update noar ti set b0='99PQGD56BU7FHQGWOYJC' where id=4; -update noar tt set b1='LAHI6UJO6EKB7Z5WH5D334Q4UJM7LA' where id=4; -update noar ti set b1='LAHI6UJO6EKB7Z5WH5D334Q4UJM7LA' where id=4; -update noar tt set b2='J7RXGNDEBS3XZNRS7M3CUU1' where id=4; -update noar ti set b2='J7RXGNDEBS3XZNRS7M3CUU1' where id=4; -update noar tt set b0='V9EFS' where id=5; -update noar ti set b0='V9EFS' where id=5; -update noar tt set b1='BFJ3' where id=5; -update noar ti set b1='BFJ3' where id=5; -update noar tt set b2='OXPR9QS654' where id=5; -update noar ti set b2='OXPR9QS654' where id=5; -update noar tt set b0='806K' where id=6; -update noar ti set b0='806K' where id=6; -update noar tt set b1='7K94TPJ741TEI' where id=6; -update noar ti set b1='7K94TPJ741TEI' where id=6; -update noar tt set b2='3JN63UR0DNOXZPP683742HJ' where id=6; -update noar ti set b2='3JN63UR0DNOXZPP683742HJ' where id=6; -update noar tt set b0='Z4SMHSB06M5O59UM952HQS5608KH' where id=7; -update noar ti set b0='Z4SMHSB06M5O59UM952HQS5608KH' where id=7; -update noar tt set b1='DWG0ADX0ZJQORJL' where id=7; -update noar ti set b1='DWG0ADX0ZJQORJL' where id=7; -update noar tt set b2='CA4ITK2UZFGKJMM01FZ' where id=7; -update noar ti set b2='CA4ITK2UZFGKJMM01FZ' where id=7; -update noar tt set b0='30ARYOKSVNFNJNL' where id=8; -update noar ti set b0='30ARYOKSVNFNJNL' where id=8; -update noar tt set b1='7EF0MV6535YX1QYTOOVG4QK1' where id=8; -update noar ti set b1='7EF0MV6535YX1QYTOOVG4QK1' where id=8; -update noar tt set b2='I2INHN7R09XBX' where id=8; -update noar ti set b2='I2INHN7R09XBX' where id=8; -update noar tt set b0='VCOHKSB7V3I87ORQ2CN0N7LHNXA7HWF' where id=9; -update noar ti set b0='VCOHKSB7V3I87ORQ2CN0N7LHNXA7HWF' where id=9; -update noar tt set b1='LA5ILHAA31QU2ZFYL' where id=9; -update noar ti set b1='LA5ILHAA31QU2ZFYL' where id=9; -update noar tt set b2='SPZD17HVKKU' where id=9; -update noar ti set b2='SPZD17HVKKU' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - b0 text null, - b1 tinyblob null, - b2 blob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set b0='GCXZ895YBASD0IK1ELMFLN0UC' where id=1; -update noar ti set b0='GCXZ895YBASD0IK1ELMFLN0UC' where id=1; -update noar tt set b1='Y876W40Z5VYB2GDI9BV' where id=1; -update noar ti set b1='Y876W40Z5VYB2GDI9BV' where id=1; -update noar tt set b2='71C1KOZ3B8VEJP5Z2QYBMP78UGB1Y' where id=1; -update noar ti set b2='71C1KOZ3B8VEJP5Z2QYBMP78UGB1Y' where id=1; -update noar tt set b0='FI1Z0OS5D8U1D4SSCL' where id=2; -update noar ti set b0='FI1Z0OS5D8U1D4SSCL' where id=2; -update noar tt set b1='HXVYGU' where id=2; -update noar ti set b1='HXVYGU' where id=2; -update noar tt set b2='ZKCU' where id=2; -update noar ti set b2='ZKCU' where id=2; -update noar tt set b0='QUPNV94G' where id=3; -update noar ti set b0='QUPNV94G' where id=3; -update noar tt set b1='4SO1QP7AW08GCUPQ' where id=3; -update noar ti set b1='4SO1QP7AW08GCUPQ' where id=3; -update noar tt set b2='9I8MMI4DPDXFSK6U1TDXMVSSM' where id=3; -update noar ti set b2='9I8MMI4DPDXFSK6U1TDXMVSSM' where id=3; -update noar tt set b0='V9' where id=4; -update noar ti set b0='V9' where id=4; -update noar tt set b1='FAWA8YRHOX2I63H6EF93' where id=4; -update noar ti set b1='FAWA8YRHOX2I63H6EF93' where id=4; -update noar tt set b2='FAXSY62Q3LKKC68I3W991MACWTD37L' where id=4; -update noar ti set b2='FAXSY62Q3LKKC68I3W991MACWTD37L' where id=4; -update noar tt set b0='NYMONSDQ4MQ' where id=5; -update noar ti set b0='NYMONSDQ4MQ' where id=5; -update noar tt set b1='0HHYNS4VL7JFIW36PHZB88C7J' where id=5; -update noar ti set b1='0HHYNS4VL7JFIW36PHZB88C7J' where id=5; -update noar tt set b2='IZNWS78X9LDDVGLQDBRW2K83TDAM' where id=5; -update noar ti set b2='IZNWS78X9LDDVGLQDBRW2K83TDAM' where id=5; -update noar tt set b0='GGIQ4EY772KPSG501T9RQAEKDVQX' where id=6; -update noar ti set b0='GGIQ4EY772KPSG501T9RQAEKDVQX' where id=6; -update noar tt set b1='CF13HBZHJGB2ERMND9WZ4VOMV6QH' where id=6; -update noar ti set b1='CF13HBZHJGB2ERMND9WZ4VOMV6QH' where id=6; -update noar tt set b2='M9MN72C' where id=6; -update noar ti set b2='M9MN72C' where id=6; -update noar tt set b0='8H6G54PQQHAT196FPL4Y60DD9BMT' where id=7; -update noar ti set b0='8H6G54PQQHAT196FPL4Y60DD9BMT' where id=7; -update noar tt set b1='XFZ' where id=7; -update noar ti set b1='XFZ' where id=7; -update noar tt set b2='XH5' where id=7; -update noar ti set b2='XH5' where id=7; -update noar tt set b0='CBTBDHU5WNR9DPKSTLUNPIT0N7J7O77P' where id=8; -update noar ti set b0='CBTBDHU5WNR9DPKSTLUNPIT0N7J7O77P' where id=8; -update noar tt set b1='0V0W2UYBT' where id=8; -update noar ti set b1='0V0W2UYBT' where id=8; -update noar tt set b2='TAGL08D35XLRRKLUPITQBKR3DZUZ' where id=8; -update noar ti set b2='TAGL08D35XLRRKLUPITQBKR3DZUZ' where id=8; -update noar tt set b0='873B3' where id=9; -update noar ti set b0='873B3' where id=9; -update noar tt set b1='G2RCWFZX2UEOPX6FMS71PVXM' where id=9; -update noar ti set b1='G2RCWFZX2UEOPX6FMS71PVXM' where id=9; -update noar tt set b2='JI969NWTEN1RZ8BUTPZTK' where id=9; -update noar ti set b2='JI969NWTEN1RZ8BUTPZTK' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - b0 text not null, - b1 tinyblob not null, - b2 blob not null -) engine=tokudb; -insert into tt values (1,'','',''); -insert into tt values (2,'','',''); -insert into tt values (3,'','',''); -insert into tt values (4,'','',''); -insert into tt values (5,'','',''); -insert into tt values (6,'','',''); -insert into tt values (7,'','',''); -insert into tt values (8,'','',''); -insert into tt values (9,'','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set b0='W02CNZAIFE6IA3XPHR1HFZL4DEJKP1' where id=1; -update noar ti set b0='W02CNZAIFE6IA3XPHR1HFZL4DEJKP1' where id=1; -update noar tt set b1='2S0RGEC2NWEMOKIVLCNGA98NE5ZUADK' where id=1; -update noar ti set b1='2S0RGEC2NWEMOKIVLCNGA98NE5ZUADK' where id=1; -update noar tt set b2='6ALIGAHIG7OU6CYHHB46A0CO7FM7' where id=1; -update noar ti set b2='6ALIGAHIG7OU6CYHHB46A0CO7FM7' where id=1; -update noar tt set b0='7MI8UGUB6D9CM' where id=2; -update noar ti set b0='7MI8UGUB6D9CM' where id=2; -update noar tt set b1='9OZOGGDN05L0KC4YV17EG7ARPURZJ' where id=2; -update noar ti set b1='9OZOGGDN05L0KC4YV17EG7ARPURZJ' where id=2; -update noar tt set b2='KJWDCTGKH' where id=2; -update noar ti set b2='KJWDCTGKH' where id=2; -update noar tt set b0='SRLFGXFU' where id=3; -update noar ti set b0='SRLFGXFU' where id=3; -update noar tt set b1='NRAXYY33FI76750' where id=3; -update noar ti set b1='NRAXYY33FI76750' where id=3; -update noar tt set b2='HJOX9BI6KCST6M9VH2HBM0' where id=3; -update noar ti set b2='HJOX9BI6KCST6M9VH2HBM0' where id=3; -update noar tt set b0='1' where id=4; -update noar ti set b0='1' where id=4; -update noar tt set b1='7OPKY500TN6QA5LIVTE608C' where id=4; -update noar ti set b1='7OPKY500TN6QA5LIVTE608C' where id=4; -update noar tt set b2='N1TP86ODBIETCM4A6KH' where id=4; -update noar ti set b2='N1TP86ODBIETCM4A6KH' where id=4; -update noar tt set b0='91TQYZYM7GJLU99Q' where id=5; -update noar ti set b0='91TQYZYM7GJLU99Q' where id=5; -update noar tt set b1='HJIC7GF' where id=5; -update noar ti set b1='HJIC7GF' where id=5; -update noar tt set b2='DUT1H546UGUP0' where id=5; -update noar ti set b2='DUT1H546UGUP0' where id=5; -update noar tt set b0='I4KL0FJMFN7G88CM8A1YZRJFI' where id=6; -update noar ti set b0='I4KL0FJMFN7G88CM8A1YZRJFI' where id=6; -update noar tt set b1='Y5GX9NCQ2MH03' where id=6; -update noar ti set b1='Y5GX9NCQ2MH03' where id=6; -update noar tt set b2='3Y6G0GLO' where id=6; -update noar ti set b2='3Y6G0GLO' where id=6; -update noar tt set b0='COVBM' where id=7; -update noar ti set b0='COVBM' where id=7; -update noar tt set b1='VSRX00E6' where id=7; -update noar ti set b1='VSRX00E6' where id=7; -update noar tt set b2='IYNB6AJG90M6HI' where id=7; -update noar ti set b2='IYNB6AJG90M6HI' where id=7; -update noar tt set b0='UQK1HUF1EM04BEV4HA27' where id=8; -update noar ti set b0='UQK1HUF1EM04BEV4HA27' where id=8; -update noar tt set b1='UMPI' where id=8; -update noar ti set b1='UMPI' where id=8; -update noar tt set b2='BETVTQP5FSD6Q79XM' where id=8; -update noar ti set b2='BETVTQP5FSD6Q79XM' where id=8; -update noar tt set b0='6JZAY3R6UU5O3H' where id=9; -update noar ti set b0='6JZAY3R6UU5O3H' where id=9; -update noar tt set b1='EDXP5TEFI4OL0KLHVGJ5I2DB2SU' where id=9; -update noar ti set b1='EDXP5TEFI4OL0KLHVGJ5I2DB2SU' where id=9; -update noar tt set b2='W82SEP' where id=9; -update noar ti set b2='W82SEP' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - b0 text null, - b1 tinyblob null, - b2 mediumblob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set b0='R2BWLS' where id=1; -update noar ti set b0='R2BWLS' where id=1; -update noar tt set b1='ZDF9RS0NKL2GN0WG03BX' where id=1; -update noar ti set b1='ZDF9RS0NKL2GN0WG03BX' where id=1; -update noar tt set b2='OAI' where id=1; -update noar ti set b2='OAI' where id=1; -update noar tt set b0='1646ESR6RAL2PLJQHBFPG' where id=2; -update noar ti set b0='1646ESR6RAL2PLJQHBFPG' where id=2; -update noar tt set b1='3AZX293T2' where id=2; -update noar ti set b1='3AZX293T2' where id=2; -update noar tt set b2='L3AIYOZLK5' where id=2; -update noar ti set b2='L3AIYOZLK5' where id=2; -update noar tt set b0='S' where id=3; -update noar ti set b0='S' where id=3; -update noar tt set b1='XLYS9DA8I2I3NB3K09RUDZP26X' where id=3; -update noar ti set b1='XLYS9DA8I2I3NB3K09RUDZP26X' where id=3; -update noar tt set b2='9E' where id=3; -update noar ti set b2='9E' where id=3; -update noar tt set b0='7CIX6DFZ4P' where id=4; -update noar ti set b0='7CIX6DFZ4P' where id=4; -update noar tt set b1='CBAGXJS52VC4CCE3294TPMW7JCW' where id=4; -update noar ti set b1='CBAGXJS52VC4CCE3294TPMW7JCW' where id=4; -update noar tt set b2='96RZW66O6YKB6S1F4Q4ROSOANN951KE3' where id=4; -update noar ti set b2='96RZW66O6YKB6S1F4Q4ROSOANN951KE3' where id=4; -update noar tt set b0='CN4IMBRA6VFRQCAHTYX0FKRPI6GLI1' where id=5; -update noar ti set b0='CN4IMBRA6VFRQCAHTYX0FKRPI6GLI1' where id=5; -update noar tt set b1='UI' where id=5; -update noar ti set b1='UI' where id=5; -update noar tt set b2='6HGTWM1WK873UOEHXJILP7UT' where id=5; -update noar ti set b2='6HGTWM1WK873UOEHXJILP7UT' where id=5; -update noar tt set b0='J' where id=6; -update noar ti set b0='J' where id=6; -update noar tt set b1='QO9F2ZTHGUQS7ZV' where id=6; -update noar ti set b1='QO9F2ZTHGUQS7ZV' where id=6; -update noar tt set b2='RW0T7PHY31X2ZLMK3FGK8OL' where id=6; -update noar ti set b2='RW0T7PHY31X2ZLMK3FGK8OL' where id=6; -update noar tt set b0='6L5M21FO7GRRK1BGWQ' where id=7; -update noar ti set b0='6L5M21FO7GRRK1BGWQ' where id=7; -update noar tt set b1='YHZKTIH6MSL4V0FMJSNPLA' where id=7; -update noar ti set b1='YHZKTIH6MSL4V0FMJSNPLA' where id=7; -update noar tt set b2='PLKQZJOBU75APK3UK5GUU' where id=7; -update noar ti set b2='PLKQZJOBU75APK3UK5GUU' where id=7; -update noar tt set b0='Q01INRM3YFONS4OMY8AT84' where id=8; -update noar ti set b0='Q01INRM3YFONS4OMY8AT84' where id=8; -update noar tt set b1='YDLY7AEMS' where id=8; -update noar ti set b1='YDLY7AEMS' where id=8; -update noar tt set b2='JDMIJAFT0' where id=8; -update noar ti set b2='JDMIJAFT0' where id=8; -update noar tt set b0='LYMGXEHWIPSU0' where id=9; -update noar ti set b0='LYMGXEHWIPSU0' where id=9; -update noar tt set b1='NSVKLSVLJNGDU' where id=9; -update noar ti set b1='NSVKLSVLJNGDU' where id=9; -update noar tt set b2='JCNMN0PNRDM4ZUD37AD0I4SCL34' where id=9; -update noar ti set b2='JCNMN0PNRDM4ZUD37AD0I4SCL34' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - b0 text not null, - b1 tinyblob not null, - b2 mediumblob not null -) engine=tokudb; -insert into tt values (1,'','',''); -insert into tt values (2,'','',''); -insert into tt values (3,'','',''); -insert into tt values (4,'','',''); -insert into tt values (5,'','',''); -insert into tt values (6,'','',''); -insert into tt values (7,'','',''); -insert into tt values (8,'','',''); -insert into tt values (9,'','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set b0='KZLVWSLYP' where id=1; -update noar ti set b0='KZLVWSLYP' where id=1; -update noar tt set b1='PRIGWZX2' where id=1; -update noar ti set b1='PRIGWZX2' where id=1; -update noar tt set b2='ORQZVPP0JOJCXEOIBISVBO' where id=1; -update noar ti set b2='ORQZVPP0JOJCXEOIBISVBO' where id=1; -update noar tt set b0='BR2ZBJSWSOBQ' where id=2; -update noar ti set b0='BR2ZBJSWSOBQ' where id=2; -update noar tt set b1='LNQ85NN3W0' where id=2; -update noar ti set b1='LNQ85NN3W0' where id=2; -update noar tt set b2='E' where id=2; -update noar ti set b2='E' where id=2; -update noar tt set b0='3NHG5H' where id=3; -update noar ti set b0='3NHG5H' where id=3; -update noar tt set b1='T8GJE56GLP0MUOD0L700H25L7IYWZR' where id=3; -update noar ti set b1='T8GJE56GLP0MUOD0L700H25L7IYWZR' where id=3; -update noar tt set b2='OGMXEXZ6N4GZLC0FCGJYCM6DQ4F' where id=3; -update noar ti set b2='OGMXEXZ6N4GZLC0FCGJYCM6DQ4F' where id=3; -update noar tt set b0='AKFH' where id=4; -update noar ti set b0='AKFH' where id=4; -update noar tt set b1='MJ6KLHS7Z' where id=4; -update noar ti set b1='MJ6KLHS7Z' where id=4; -update noar tt set b2='JUBQVRKCG' where id=4; -update noar ti set b2='JUBQVRKCG' where id=4; -update noar tt set b0='FKMRKIMU' where id=5; -update noar ti set b0='FKMRKIMU' where id=5; -update noar tt set b1='U50ZE5FFO9W8E4K6AFP2EFYW08QOJUO' where id=5; -update noar ti set b1='U50ZE5FFO9W8E4K6AFP2EFYW08QOJUO' where id=5; -update noar tt set b2='CM1SWIRPXU5' where id=5; -update noar ti set b2='CM1SWIRPXU5' where id=5; -update noar tt set b0='M5PCMRB' where id=6; -update noar ti set b0='M5PCMRB' where id=6; -update noar tt set b1='FBURUI3K4GA0FVDWT' where id=6; -update noar ti set b1='FBURUI3K4GA0FVDWT' where id=6; -update noar tt set b2='C4O14LBKH942WDPOHTA7727RO5' where id=6; -update noar ti set b2='C4O14LBKH942WDPOHTA7727RO5' where id=6; -update noar tt set b0='8NW0SXJJVB6BIGXN86O7WFI' where id=7; -update noar ti set b0='8NW0SXJJVB6BIGXN86O7WFI' where id=7; -update noar tt set b1='HX7U13QFVN' where id=7; -update noar ti set b1='HX7U13QFVN' where id=7; -update noar tt set b2='3YLV3HUTQZ0HBDP83IMZKSWROKD' where id=7; -update noar ti set b2='3YLV3HUTQZ0HBDP83IMZKSWROKD' where id=7; -update noar tt set b0='861WKMVZYTDRCL218STCI5Q37TG' where id=8; -update noar ti set b0='861WKMVZYTDRCL218STCI5Q37TG' where id=8; -update noar tt set b1='G' where id=8; -update noar ti set b1='G' where id=8; -update noar tt set b2='28J7TPGOZY1L2H5NI4BXO' where id=8; -update noar ti set b2='28J7TPGOZY1L2H5NI4BXO' where id=8; -update noar tt set b0='9WU9K6AVXMHLHE' where id=9; -update noar ti set b0='9WU9K6AVXMHLHE' where id=9; -update noar tt set b1='V6W2F0RW2OI6' where id=9; -update noar ti set b1='V6W2F0RW2OI6' where id=9; -update noar tt set b2='TO6RY9SO8EUZG' where id=9; -update noar ti set b2='TO6RY9SO8EUZG' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - b0 text null, - b1 tinyblob null, - b2 longblob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set b0='P026RGI7' where id=1; -update noar ti set b0='P026RGI7' where id=1; -update noar tt set b1='HMB9' where id=1; -update noar ti set b1='HMB9' where id=1; -update noar tt set b2='9WXAOR36R22G4KIOMF61CJOPPREE1FPV' where id=1; -update noar ti set b2='9WXAOR36R22G4KIOMF61CJOPPREE1FPV' where id=1; -update noar tt set b0='Z7SLVMLJI90YXKSME4U5JSWW1NDAGPOJ' where id=2; -update noar ti set b0='Z7SLVMLJI90YXKSME4U5JSWW1NDAGPOJ' where id=2; -update noar tt set b1='L6GG3W5SD1J9KNDX9N86EHFF4IJ0G' where id=2; -update noar ti set b1='L6GG3W5SD1J9KNDX9N86EHFF4IJ0G' where id=2; -update noar tt set b2='I2EJVK6KO9CLLBW1GBL2VDW1JZXV' where id=2; -update noar ti set b2='I2EJVK6KO9CLLBW1GBL2VDW1JZXV' where id=2; -update noar tt set b0='7WT8QY6JHLN4PL' where id=3; -update noar ti set b0='7WT8QY6JHLN4PL' where id=3; -update noar tt set b1='ESYH9FOXUA' where id=3; -update noar ti set b1='ESYH9FOXUA' where id=3; -update noar tt set b2='VKU89BAEF0SML8GWML1M2O8U05NAN5F0' where id=3; -update noar ti set b2='VKU89BAEF0SML8GWML1M2O8U05NAN5F0' where id=3; -update noar tt set b0='NBQI1ETMT9YQTOJEMRMSV' where id=4; -update noar ti set b0='NBQI1ETMT9YQTOJEMRMSV' where id=4; -update noar tt set b1='5NBGCT6QI8I' where id=4; -update noar ti set b1='5NBGCT6QI8I' where id=4; -update noar tt set b2='G99KPIG3B1R3AMCH69LH9BUNFXC2G' where id=4; -update noar ti set b2='G99KPIG3B1R3AMCH69LH9BUNFXC2G' where id=4; -update noar tt set b0='AX5IKUQ7814AJMG8VJTY' where id=5; -update noar ti set b0='AX5IKUQ7814AJMG8VJTY' where id=5; -update noar tt set b1='0HRT' where id=5; -update noar ti set b1='0HRT' where id=5; -update noar tt set b2='JI0LRN' where id=5; -update noar ti set b2='JI0LRN' where id=5; -update noar tt set b0='ZLLRV' where id=6; -update noar ti set b0='ZLLRV' where id=6; -update noar tt set b1='AZO0WPETD1IEU2W0E' where id=6; -update noar ti set b1='AZO0WPETD1IEU2W0E' where id=6; -update noar tt set b2='2QWQNWUT7LJEJ0OMLZVANPHYRH' where id=6; -update noar ti set b2='2QWQNWUT7LJEJ0OMLZVANPHYRH' where id=6; -update noar tt set b0='VYCG8MQ1NXT4UG431981BA1CELN9X8' where id=7; -update noar ti set b0='VYCG8MQ1NXT4UG431981BA1CELN9X8' where id=7; -update noar tt set b1='N6FO' where id=7; -update noar ti set b1='N6FO' where id=7; -update noar tt set b2='YLLY98BWGIO81FAP6' where id=7; -update noar ti set b2='YLLY98BWGIO81FAP6' where id=7; -update noar tt set b0='18AF2WKP4MMXGCOWAL4' where id=8; -update noar ti set b0='18AF2WKP4MMXGCOWAL4' where id=8; -update noar tt set b1='5KVYXVMIUE8KC05A4JJY' where id=8; -update noar ti set b1='5KVYXVMIUE8KC05A4JJY' where id=8; -update noar tt set b2='C6X19L' where id=8; -update noar ti set b2='C6X19L' where id=8; -update noar tt set b0='U9B' where id=9; -update noar ti set b0='U9B' where id=9; -update noar tt set b1='P03ERPU' where id=9; -update noar ti set b1='P03ERPU' where id=9; -update noar tt set b2='2K926FRYLL80CNFU7V' where id=9; -update noar ti set b2='2K926FRYLL80CNFU7V' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - b0 text not null, - b1 tinyblob not null, - b2 longblob not null -) engine=tokudb; -insert into tt values (1,'','',''); -insert into tt values (2,'','',''); -insert into tt values (3,'','',''); -insert into tt values (4,'','',''); -insert into tt values (5,'','',''); -insert into tt values (6,'','',''); -insert into tt values (7,'','',''); -insert into tt values (8,'','',''); -insert into tt values (9,'','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set b0='LDZQ62' where id=1; -update noar ti set b0='LDZQ62' where id=1; -update noar tt set b1='TSHQCJAKBWKNSP' where id=1; -update noar ti set b1='TSHQCJAKBWKNSP' where id=1; -update noar tt set b2='V925Z2RR' where id=1; -update noar ti set b2='V925Z2RR' where id=1; -update noar tt set b0='8TA2EGNM082' where id=2; -update noar ti set b0='8TA2EGNM082' where id=2; -update noar tt set b1='ROPWSPB4JF7YPB4TM0PRPO' where id=2; -update noar ti set b1='ROPWSPB4JF7YPB4TM0PRPO' where id=2; -update noar tt set b2='NY0MFA6FH8UA' where id=2; -update noar ti set b2='NY0MFA6FH8UA' where id=2; -update noar tt set b0='9J0NTMDNSGDPJGRF' where id=3; -update noar ti set b0='9J0NTMDNSGDPJGRF' where id=3; -update noar tt set b1='GXXXJPHPV0JUJMP' where id=3; -update noar ti set b1='GXXXJPHPV0JUJMP' where id=3; -update noar tt set b2='01YM61LJ38X6' where id=3; -update noar ti set b2='01YM61LJ38X6' where id=3; -update noar tt set b0='N' where id=4; -update noar ti set b0='N' where id=4; -update noar tt set b1='G7UPQ9Y44OKF0TXUMZ2' where id=4; -update noar ti set b1='G7UPQ9Y44OKF0TXUMZ2' where id=4; -update noar tt set b2='TB5J' where id=4; -update noar ti set b2='TB5J' where id=4; -update noar tt set b0='A' where id=5; -update noar ti set b0='A' where id=5; -update noar tt set b1='6V70U56BSZGKY7NS5WVMQATXSXZ4' where id=5; -update noar ti set b1='6V70U56BSZGKY7NS5WVMQATXSXZ4' where id=5; -update noar tt set b2='WZIUE5OYFUQ4UA9CZVUBM1613ZP' where id=5; -update noar ti set b2='WZIUE5OYFUQ4UA9CZVUBM1613ZP' where id=5; -update noar tt set b0='ZTMC5C5Y67ZTOZHY' where id=6; -update noar ti set b0='ZTMC5C5Y67ZTOZHY' where id=6; -update noar tt set b1='147TP9MG12D7ATN5RB4HUHQRV' where id=6; -update noar ti set b1='147TP9MG12D7ATN5RB4HUHQRV' where id=6; -update noar tt set b2='VMHDCJ1J' where id=6; -update noar ti set b2='VMHDCJ1J' where id=6; -update noar tt set b0='UVK2JX29QW0W4DHOW2BQ4N' where id=7; -update noar ti set b0='UVK2JX29QW0W4DHOW2BQ4N' where id=7; -update noar tt set b1='A1EN6R7ABSBIK1JZY1CGSKWXBSGH' where id=7; -update noar ti set b1='A1EN6R7ABSBIK1JZY1CGSKWXBSGH' where id=7; -update noar tt set b2='EJ59VT5YXEEAM6BO86W6T' where id=7; -update noar ti set b2='EJ59VT5YXEEAM6BO86W6T' where id=7; -update noar tt set b0='U' where id=8; -update noar ti set b0='U' where id=8; -update noar tt set b1='78YUR0Q3D3K9U' where id=8; -update noar ti set b1='78YUR0Q3D3K9U' where id=8; -update noar tt set b2='IUM9GL98NMSU2ZY3BBN4SBLP3N' where id=8; -update noar ti set b2='IUM9GL98NMSU2ZY3BBN4SBLP3N' where id=8; -update noar tt set b0='FWVPAF0F0M3MKIUOVF4W1P' where id=9; -update noar ti set b0='FWVPAF0F0M3MKIUOVF4W1P' where id=9; -update noar tt set b1='WEXY9Y' where id=9; -update noar ti set b1='WEXY9Y' where id=9; -update noar tt set b2='J5RTQE5QAS' where id=9; -update noar ti set b2='J5RTQE5QAS' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - b0 text null, - b1 tinyblob null, - b2 text null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set b0='5C19WLU0CCGOFGGXQFW' where id=1; -update noar ti set b0='5C19WLU0CCGOFGGXQFW' where id=1; -update noar tt set b1='JZ11HN04EHQ61FA7QZFCT7TDJR' where id=1; -update noar ti set b1='JZ11HN04EHQ61FA7QZFCT7TDJR' where id=1; -update noar tt set b2='OFEOC45Q7USIYH5GLN6Q' where id=1; -update noar ti set b2='OFEOC45Q7USIYH5GLN6Q' where id=1; -update noar tt set b0='GL95P5IC6C8MDD7LWVLX9UEJO9IY5N1' where id=2; -update noar ti set b0='GL95P5IC6C8MDD7LWVLX9UEJO9IY5N1' where id=2; -update noar tt set b1='J4EJLSR2' where id=2; -update noar ti set b1='J4EJLSR2' where id=2; -update noar tt set b2='71153JRQONJ8DJZX37W6TLRLH' where id=2; -update noar ti set b2='71153JRQONJ8DJZX37W6TLRLH' where id=2; -update noar tt set b0='SGZVUKASDZQJTYFSL0XOE' where id=3; -update noar ti set b0='SGZVUKASDZQJTYFSL0XOE' where id=3; -update noar tt set b1='BFOB7FKIUVCB' where id=3; -update noar ti set b1='BFOB7FKIUVCB' where id=3; -update noar tt set b2='CTZDNML' where id=3; -update noar ti set b2='CTZDNML' where id=3; -update noar tt set b0='VFC8ZT5EFNA91HDN0ME2' where id=4; -update noar ti set b0='VFC8ZT5EFNA91HDN0ME2' where id=4; -update noar tt set b1='9HYIJD02YJC0TT5A' where id=4; -update noar ti set b1='9HYIJD02YJC0TT5A' where id=4; -update noar tt set b2='BGGBA3B6IK' where id=4; -update noar ti set b2='BGGBA3B6IK' where id=4; -update noar tt set b0='1ZAG871BYX00E0CHQ528B76JLWIYIGK' where id=5; -update noar ti set b0='1ZAG871BYX00E0CHQ528B76JLWIYIGK' where id=5; -update noar tt set b1='QR0QXSBRJDS5YDQ' where id=5; -update noar ti set b1='QR0QXSBRJDS5YDQ' where id=5; -update noar tt set b2='P1X' where id=5; -update noar ti set b2='P1X' where id=5; -update noar tt set b0='NMK41PD5HFO4A0L20JK46QB3FDN5AB' where id=6; -update noar ti set b0='NMK41PD5HFO4A0L20JK46QB3FDN5AB' where id=6; -update noar tt set b1='UQMAPQ3INLUX85L4RS2H' where id=6; -update noar ti set b1='UQMAPQ3INLUX85L4RS2H' where id=6; -update noar tt set b2='WG7KRKI3J51ZPWVE8NEE7OHW4GF' where id=6; -update noar ti set b2='WG7KRKI3J51ZPWVE8NEE7OHW4GF' where id=6; -update noar tt set b0='VYXOSHBDRNGO6P3HSYQ53GHWGODXG7KU' where id=7; -update noar ti set b0='VYXOSHBDRNGO6P3HSYQ53GHWGODXG7KU' where id=7; -update noar tt set b1='E9WE4QJ4' where id=7; -update noar ti set b1='E9WE4QJ4' where id=7; -update noar tt set b2='VM71160W2HBBWXQO735I' where id=7; -update noar ti set b2='VM71160W2HBBWXQO735I' where id=7; -update noar tt set b0='A11YB1TQEHRRY88A2F1YZB5U3' where id=8; -update noar ti set b0='A11YB1TQEHRRY88A2F1YZB5U3' where id=8; -update noar tt set b1='EKDSPE0BMY' where id=8; -update noar ti set b1='EKDSPE0BMY' where id=8; -update noar tt set b2='QOUAQXFP8GE8M8GESVCOIIV5C6V5' where id=8; -update noar ti set b2='QOUAQXFP8GE8M8GESVCOIIV5C6V5' where id=8; -update noar tt set b0='2JT6TY' where id=9; -update noar ti set b0='2JT6TY' where id=9; -update noar tt set b1='SZTYLSBW7VQ' where id=9; -update noar ti set b1='SZTYLSBW7VQ' where id=9; -update noar tt set b2='87' where id=9; -update noar ti set b2='87' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - b0 text not null, - b1 tinyblob not null, - b2 text not null -) engine=tokudb; -insert into tt values (1,'','',''); -insert into tt values (2,'','',''); -insert into tt values (3,'','',''); -insert into tt values (4,'','',''); -insert into tt values (5,'','',''); -insert into tt values (6,'','',''); -insert into tt values (7,'','',''); -insert into tt values (8,'','',''); -insert into tt values (9,'','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set b0='IUUKUIZIUNFRBJA1' where id=1; -update noar ti set b0='IUUKUIZIUNFRBJA1' where id=1; -update noar tt set b1='I7VEUQV1I2I3SIK1D3R0' where id=1; -update noar ti set b1='I7VEUQV1I2I3SIK1D3R0' where id=1; -update noar tt set b2='RLD962Z' where id=1; -update noar ti set b2='RLD962Z' where id=1; -update noar tt set b0='GIDBPR6XSWNT2P54' where id=2; -update noar ti set b0='GIDBPR6XSWNT2P54' where id=2; -update noar tt set b1='WNZ4B1WM31A2H9N6F6WPMCHY1Q' where id=2; -update noar ti set b1='WNZ4B1WM31A2H9N6F6WPMCHY1Q' where id=2; -update noar tt set b2='1J9DP0GVU3FZY' where id=2; -update noar ti set b2='1J9DP0GVU3FZY' where id=2; -update noar tt set b0='VSXJHTPJKYEDGP4SLHG0JLS54X' where id=3; -update noar ti set b0='VSXJHTPJKYEDGP4SLHG0JLS54X' where id=3; -update noar tt set b1='M4L3E3C6MFGX5GDIS9OGPHQ7F1' where id=3; -update noar ti set b1='M4L3E3C6MFGX5GDIS9OGPHQ7F1' where id=3; -update noar tt set b2='MJNMPY1T' where id=3; -update noar ti set b2='MJNMPY1T' where id=3; -update noar tt set b0='95OKX9T8U40BF' where id=4; -update noar ti set b0='95OKX9T8U40BF' where id=4; -update noar tt set b1='MUU1NMS69K' where id=4; -update noar ti set b1='MUU1NMS69K' where id=4; -update noar tt set b2='VKO8L48K29YTD1GJWRF1ZKZVYJFHFIK' where id=4; -update noar ti set b2='VKO8L48K29YTD1GJWRF1ZKZVYJFHFIK' where id=4; -update noar tt set b0='ECAFMVP' where id=5; -update noar ti set b0='ECAFMVP' where id=5; -update noar tt set b1='NMVUYN6DF9NA1GYAK8L5N0PI4J5FXB' where id=5; -update noar ti set b1='NMVUYN6DF9NA1GYAK8L5N0PI4J5FXB' where id=5; -update noar tt set b2='76E5XR398OY1ZRR5M4O5' where id=5; -update noar ti set b2='76E5XR398OY1ZRR5M4O5' where id=5; -update noar tt set b0='5MACI4J4S8MISFHETAA8F' where id=6; -update noar ti set b0='5MACI4J4S8MISFHETAA8F' where id=6; -update noar tt set b1='YB136' where id=6; -update noar ti set b1='YB136' where id=6; -update noar tt set b2='46' where id=6; -update noar ti set b2='46' where id=6; -update noar tt set b0='RYJ2E9MU62OCUPE3Q15NXSOWPJ' where id=7; -update noar ti set b0='RYJ2E9MU62OCUPE3Q15NXSOWPJ' where id=7; -update noar tt set b1='ANJ4DJQDDA1URAHXU9LB79V8DFCTTL' where id=7; -update noar ti set b1='ANJ4DJQDDA1URAHXU9LB79V8DFCTTL' where id=7; -update noar tt set b2='Q3I5RKQOAJN' where id=7; -update noar ti set b2='Q3I5RKQOAJN' where id=7; -update noar tt set b0='JVD6Y3GRUG' where id=8; -update noar ti set b0='JVD6Y3GRUG' where id=8; -update noar tt set b1='1QJ4SAN6Q' where id=8; -update noar ti set b1='1QJ4SAN6Q' where id=8; -update noar tt set b2='1CAWYWTL2Y1DZ4ER5JH1QXZ6RZKM6Y' where id=8; -update noar ti set b2='1CAWYWTL2Y1DZ4ER5JH1QXZ6RZKM6Y' where id=8; -update noar tt set b0='XFPY1Y0USG87O18SAACSQ' where id=9; -update noar ti set b0='XFPY1Y0USG87O18SAACSQ' where id=9; -update noar tt set b1='YX2JU92LEPE0PAH0JRMCG4C0I9XEU' where id=9; -update noar ti set b1='YX2JU92LEPE0PAH0JRMCG4C0I9XEU' where id=9; -update noar tt set b2='IUELD0ATIF341LF0RT86YJXO4F2' where id=9; -update noar ti set b2='IUELD0ATIF341LF0RT86YJXO4F2' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - b0 text null, - b1 blob null, - b2 tinyblob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set b0='639LW3SSYAH9ZKNWZOOH9A5WRT8HDZ9' where id=1; -update noar ti set b0='639LW3SSYAH9ZKNWZOOH9A5WRT8HDZ9' where id=1; -update noar tt set b1='OO4NXLDGOLPR0JCAHG724X174EAH2EI6' where id=1; -update noar ti set b1='OO4NXLDGOLPR0JCAHG724X174EAH2EI6' where id=1; -update noar tt set b2='BWE' where id=1; -update noar ti set b2='BWE' where id=1; -update noar tt set b0='70RQS' where id=2; -update noar ti set b0='70RQS' where id=2; -update noar tt set b1='959F09ZP' where id=2; -update noar ti set b1='959F09ZP' where id=2; -update noar tt set b2='LUJ8FWF3JKHTX' where id=2; -update noar ti set b2='LUJ8FWF3JKHTX' where id=2; -update noar tt set b0='R501GHKFLRXMYI3EV6DAO6F6A5W90PF' where id=3; -update noar ti set b0='R501GHKFLRXMYI3EV6DAO6F6A5W90PF' where id=3; -update noar tt set b1='VHXCSQXP765CQE0X9W2D' where id=3; -update noar ti set b1='VHXCSQXP765CQE0X9W2D' where id=3; -update noar tt set b2='VV' where id=3; -update noar ti set b2='VV' where id=3; -update noar tt set b0='UMN6WVI' where id=4; -update noar ti set b0='UMN6WVI' where id=4; -update noar tt set b1='VSCSC' where id=4; -update noar ti set b1='VSCSC' where id=4; -update noar tt set b2='QQILSU15ZC13OFR' where id=4; -update noar ti set b2='QQILSU15ZC13OFR' where id=4; -update noar tt set b0='3TFOOURBK' where id=5; -update noar ti set b0='3TFOOURBK' where id=5; -update noar tt set b1='OJKB44779HHS85NU2QQPTMH8GACK' where id=5; -update noar ti set b1='OJKB44779HHS85NU2QQPTMH8GACK' where id=5; -update noar tt set b2='4QE0RQ' where id=5; -update noar ti set b2='4QE0RQ' where id=5; -update noar tt set b0='JWDMXPXGJZH5V6I6DG9N' where id=6; -update noar ti set b0='JWDMXPXGJZH5V6I6DG9N' where id=6; -update noar tt set b1='7P3JUWPHCRI8AYNVR6' where id=6; -update noar ti set b1='7P3JUWPHCRI8AYNVR6' where id=6; -update noar tt set b2='3NUA5984ZRUPB4GF' where id=6; -update noar ti set b2='3NUA5984ZRUPB4GF' where id=6; -update noar tt set b0='VQQFLPAJ735O8V1DLRVLX84D557O' where id=7; -update noar ti set b0='VQQFLPAJ735O8V1DLRVLX84D557O' where id=7; -update noar tt set b1='76IHAPI4OJVP' where id=7; -update noar ti set b1='76IHAPI4OJVP' where id=7; -update noar tt set b2='RV0GX0ET1ESQ9LD' where id=7; -update noar ti set b2='RV0GX0ET1ESQ9LD' where id=7; -update noar tt set b0='M725JA0F' where id=8; -update noar ti set b0='M725JA0F' where id=8; -update noar tt set b1='DGNJ34BNQV3ZRFVYQD' where id=8; -update noar ti set b1='DGNJ34BNQV3ZRFVYQD' where id=8; -update noar tt set b2='EXSXZ3T3' where id=8; -update noar ti set b2='EXSXZ3T3' where id=8; -update noar tt set b0='GLUJBG3CD6P9ASKO0IHK8NG' where id=9; -update noar ti set b0='GLUJBG3CD6P9ASKO0IHK8NG' where id=9; -update noar tt set b1='XF' where id=9; -update noar ti set b1='XF' where id=9; -update noar tt set b2='01GLNOYMINL2LWTP14XTMQP5ZCD82NQD' where id=9; -update noar ti set b2='01GLNOYMINL2LWTP14XTMQP5ZCD82NQD' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - b0 text not null, - b1 blob not null, - b2 tinyblob not null -) engine=tokudb; -insert into tt values (1,'','',''); -insert into tt values (2,'','',''); -insert into tt values (3,'','',''); -insert into tt values (4,'','',''); -insert into tt values (5,'','',''); -insert into tt values (6,'','',''); -insert into tt values (7,'','',''); -insert into tt values (8,'','',''); -insert into tt values (9,'','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set b0='CVK0WBAQCY9D0VNT' where id=1; -update noar ti set b0='CVK0WBAQCY9D0VNT' where id=1; -update noar tt set b1='1GNE' where id=1; -update noar ti set b1='1GNE' where id=1; -update noar tt set b2='GMW1G9UIPYXAHTB4DNFEFQK5DD' where id=1; -update noar ti set b2='GMW1G9UIPYXAHTB4DNFEFQK5DD' where id=1; -update noar tt set b0='N7C0NKZFYQTI4DVBAWDS' where id=2; -update noar ti set b0='N7C0NKZFYQTI4DVBAWDS' where id=2; -update noar tt set b1='V8M4JV7Z91G9FM' where id=2; -update noar ti set b1='V8M4JV7Z91G9FM' where id=2; -update noar tt set b2='OC1KN7W3GZTGU8H5O' where id=2; -update noar ti set b2='OC1KN7W3GZTGU8H5O' where id=2; -update noar tt set b0='RA4XEY38I' where id=3; -update noar ti set b0='RA4XEY38I' where id=3; -update noar tt set b1='4067UUNNJ2Z1OMDG902WZ' where id=3; -update noar ti set b1='4067UUNNJ2Z1OMDG902WZ' where id=3; -update noar tt set b2='Z8Q7X1864VLQLA44K1OLU7HR7P5C' where id=3; -update noar ti set b2='Z8Q7X1864VLQLA44K1OLU7HR7P5C' where id=3; -update noar tt set b0='MKXU68RGV2JFUBLAFKW' where id=4; -update noar ti set b0='MKXU68RGV2JFUBLAFKW' where id=4; -update noar tt set b1='WY' where id=4; -update noar ti set b1='WY' where id=4; -update noar tt set b2='94PLXX31OLV9ZNOKKNF4QQJCPZC1RZ64' where id=4; -update noar ti set b2='94PLXX31OLV9ZNOKKNF4QQJCPZC1RZ64' where id=4; -update noar tt set b0='EVSIMUTGQJ8H2BDE3W4NU0RB48WZEIF3' where id=5; -update noar ti set b0='EVSIMUTGQJ8H2BDE3W4NU0RB48WZEIF3' where id=5; -update noar tt set b1='KBFS7C9CW7VTA8FVGRC5GWT4TRCB0KQO' where id=5; -update noar ti set b1='KBFS7C9CW7VTA8FVGRC5GWT4TRCB0KQO' where id=5; -update noar tt set b2='9CE3ITZNPH4THWMAM69F' where id=5; -update noar ti set b2='9CE3ITZNPH4THWMAM69F' where id=5; -update noar tt set b0='2AJ1IT271KPC49SNXMPLWI8' where id=6; -update noar ti set b0='2AJ1IT271KPC49SNXMPLWI8' where id=6; -update noar tt set b1='H68KJGZZ82QT0' where id=6; -update noar ti set b1='H68KJGZZ82QT0' where id=6; -update noar tt set b2='DRF8L7I40BJ68OXRSMC2MQV' where id=6; -update noar ti set b2='DRF8L7I40BJ68OXRSMC2MQV' where id=6; -update noar tt set b0='8VDUN8L' where id=7; -update noar ti set b0='8VDUN8L' where id=7; -update noar tt set b1='DQYXN1SVB' where id=7; -update noar ti set b1='DQYXN1SVB' where id=7; -update noar tt set b2='DFZQS9F1N3XSRS9CTCR' where id=7; -update noar ti set b2='DFZQS9F1N3XSRS9CTCR' where id=7; -update noar tt set b0='YUDJ16IKZSM77ZYJMA3XEJAPG1' where id=8; -update noar ti set b0='YUDJ16IKZSM77ZYJMA3XEJAPG1' where id=8; -update noar tt set b1='PEDQ01X' where id=8; -update noar ti set b1='PEDQ01X' where id=8; -update noar tt set b2='OB6UCNX3OLZPPGREZT5XPJ4' where id=8; -update noar ti set b2='OB6UCNX3OLZPPGREZT5XPJ4' where id=8; -update noar tt set b0='JDG1OW' where id=9; -update noar ti set b0='JDG1OW' where id=9; -update noar tt set b1='P5UQAPXFURKWC2VAIEZBHBIIU8' where id=9; -update noar ti set b1='P5UQAPXFURKWC2VAIEZBHBIIU8' where id=9; -update noar tt set b2='27' where id=9; -update noar ti set b2='27' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - b0 text null, - b1 blob null, - b2 blob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set b0='6604SEUPOJ1NH' where id=1; -update noar ti set b0='6604SEUPOJ1NH' where id=1; -update noar tt set b1='U9UKP73' where id=1; -update noar ti set b1='U9UKP73' where id=1; -update noar tt set b2='D20SE4B542DH5VQNU20KOSF6' where id=1; -update noar ti set b2='D20SE4B542DH5VQNU20KOSF6' where id=1; -update noar tt set b0='NF9XX' where id=2; -update noar ti set b0='NF9XX' where id=2; -update noar tt set b1='24ZM1CL7P' where id=2; -update noar ti set b1='24ZM1CL7P' where id=2; -update noar tt set b2='GIV9E0CEGWFO2APSS62LB2YDOU' where id=2; -update noar ti set b2='GIV9E0CEGWFO2APSS62LB2YDOU' where id=2; -update noar tt set b0='7FYNCVTSF75RXRBU94F3ILDL25GWMF' where id=3; -update noar ti set b0='7FYNCVTSF75RXRBU94F3ILDL25GWMF' where id=3; -update noar tt set b1='TM' where id=3; -update noar ti set b1='TM' where id=3; -update noar tt set b2='BZ0PGFK3NFMCWN5A57HD0QT777TO4' where id=3; -update noar ti set b2='BZ0PGFK3NFMCWN5A57HD0QT777TO4' where id=3; -update noar tt set b0='LMMPIO1Z3' where id=4; -update noar ti set b0='LMMPIO1Z3' where id=4; -update noar tt set b1='CPKDUI5UVT37Q2WF0UICR4T' where id=4; -update noar ti set b1='CPKDUI5UVT37Q2WF0UICR4T' where id=4; -update noar tt set b2='PXZRXSAO7R4LK5AG' where id=4; -update noar ti set b2='PXZRXSAO7R4LK5AG' where id=4; -update noar tt set b0='7SWE1SWALSTRY' where id=5; -update noar ti set b0='7SWE1SWALSTRY' where id=5; -update noar tt set b1='8IAPWSFR66EV4G' where id=5; -update noar ti set b1='8IAPWSFR66EV4G' where id=5; -update noar tt set b2='WLXCIO2HMZTHQ752H' where id=5; -update noar ti set b2='WLXCIO2HMZTHQ752H' where id=5; -update noar tt set b0='X1K5ULAKDCTH' where id=6; -update noar ti set b0='X1K5ULAKDCTH' where id=6; -update noar tt set b1='VU5GM75G7X5RBO8BSBYBUPEQ13V70R' where id=6; -update noar ti set b1='VU5GM75G7X5RBO8BSBYBUPEQ13V70R' where id=6; -update noar tt set b2='OSZE1IM69X' where id=6; -update noar ti set b2='OSZE1IM69X' where id=6; -update noar tt set b0='N4G6CRZX4K7YQ25ZEMGR674U9EFAPYKF' where id=7; -update noar ti set b0='N4G6CRZX4K7YQ25ZEMGR674U9EFAPYKF' where id=7; -update noar tt set b1='F8K1ETN3HQ62M' where id=7; -update noar ti set b1='F8K1ETN3HQ62M' where id=7; -update noar tt set b2='J8B5XCR' where id=7; -update noar ti set b2='J8B5XCR' where id=7; -update noar tt set b0='EGGSUMHTUZ2Z49D0P2NNMWPNU29' where id=8; -update noar ti set b0='EGGSUMHTUZ2Z49D0P2NNMWPNU29' where id=8; -update noar tt set b1='TSP0V0F7YFFP1KC' where id=8; -update noar ti set b1='TSP0V0F7YFFP1KC' where id=8; -update noar tt set b2='X6VM77DCFUFWE9OME' where id=8; -update noar ti set b2='X6VM77DCFUFWE9OME' where id=8; -update noar tt set b0='F695SRM8F6RMKMTDGEUWRWQIUSIBJZ' where id=9; -update noar ti set b0='F695SRM8F6RMKMTDGEUWRWQIUSIBJZ' where id=9; -update noar tt set b1='XP427W4M6C7JWKLNHC39VH6E2QQVXW23' where id=9; -update noar ti set b1='XP427W4M6C7JWKLNHC39VH6E2QQVXW23' where id=9; -update noar tt set b2='PL4S46' where id=9; -update noar ti set b2='PL4S46' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - b0 text not null, - b1 blob not null, - b2 blob not null -) engine=tokudb; -insert into tt values (1,'','',''); -insert into tt values (2,'','',''); -insert into tt values (3,'','',''); -insert into tt values (4,'','',''); -insert into tt values (5,'','',''); -insert into tt values (6,'','',''); -insert into tt values (7,'','',''); -insert into tt values (8,'','',''); -insert into tt values (9,'','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set b0='ZPW4ZC0FLWL' where id=1; -update noar ti set b0='ZPW4ZC0FLWL' where id=1; -update noar tt set b1='HRCFD' where id=1; -update noar ti set b1='HRCFD' where id=1; -update noar tt set b2='XMYRIB8X7DBYPENWR0E4N90SN27517W7' where id=1; -update noar ti set b2='XMYRIB8X7DBYPENWR0E4N90SN27517W7' where id=1; -update noar tt set b0='ANWYLJ7F3OVWYZZ15V27SZV1C2' where id=2; -update noar ti set b0='ANWYLJ7F3OVWYZZ15V27SZV1C2' where id=2; -update noar tt set b1='PBBDLSO9N7' where id=2; -update noar ti set b1='PBBDLSO9N7' where id=2; -update noar tt set b2='B4PBXG3NFGWOYQ5G6R1CSB' where id=2; -update noar ti set b2='B4PBXG3NFGWOYQ5G6R1CSB' where id=2; -update noar tt set b0='PENOUEMLJ5B1RC9L' where id=3; -update noar ti set b0='PENOUEMLJ5B1RC9L' where id=3; -update noar tt set b1='W95CKPSD7LJZNZEOPYDT3U' where id=3; -update noar ti set b1='W95CKPSD7LJZNZEOPYDT3U' where id=3; -update noar tt set b2='AO2ZUAJ44T3J' where id=3; -update noar ti set b2='AO2ZUAJ44T3J' where id=3; -update noar tt set b0='639I9XEB8NUM31TDPVVXPNANX3RSWH' where id=4; -update noar ti set b0='639I9XEB8NUM31TDPVVXPNANX3RSWH' where id=4; -update noar tt set b1='FZTY6' where id=4; -update noar ti set b1='FZTY6' where id=4; -update noar tt set b2='SEUWCXV7KAP' where id=4; -update noar ti set b2='SEUWCXV7KAP' where id=4; -update noar tt set b0='7NJI84HPMG99STTH370A3VVPULZE' where id=5; -update noar ti set b0='7NJI84HPMG99STTH370A3VVPULZE' where id=5; -update noar tt set b1='DMS1X1CR52AS25OOABXADW' where id=5; -update noar ti set b1='DMS1X1CR52AS25OOABXADW' where id=5; -update noar tt set b2='IME633' where id=5; -update noar ti set b2='IME633' where id=5; -update noar tt set b0='ZACORRE3QOAL71KOB4D7AK2UXXESWF' where id=6; -update noar ti set b0='ZACORRE3QOAL71KOB4D7AK2UXXESWF' where id=6; -update noar tt set b1='8S7W28XKIMSS085OXY4VCMXD49AXN' where id=6; -update noar ti set b1='8S7W28XKIMSS085OXY4VCMXD49AXN' where id=6; -update noar tt set b2='L91NFDQTXW849L0TDVC8QKSD9SCR6' where id=6; -update noar ti set b2='L91NFDQTXW849L0TDVC8QKSD9SCR6' where id=6; -update noar tt set b0='9GZG8PCEQNFJU7EQLI9ARFGST' where id=7; -update noar ti set b0='9GZG8PCEQNFJU7EQLI9ARFGST' where id=7; -update noar tt set b1='IX16SA4' where id=7; -update noar ti set b1='IX16SA4' where id=7; -update noar tt set b2='VG4EI3Q1H' where id=7; -update noar ti set b2='VG4EI3Q1H' where id=7; -update noar tt set b0='MY8HU0U2WH38W' where id=8; -update noar ti set b0='MY8HU0U2WH38W' where id=8; -update noar tt set b1='V' where id=8; -update noar ti set b1='V' where id=8; -update noar tt set b2='U5YFNFL3RU9794DGIG2E6KZW85QPLM' where id=8; -update noar ti set b2='U5YFNFL3RU9794DGIG2E6KZW85QPLM' where id=8; -update noar tt set b0='JE94WZHA6G75VPEXZAVV' where id=9; -update noar ti set b0='JE94WZHA6G75VPEXZAVV' where id=9; -update noar tt set b1='3QT5' where id=9; -update noar ti set b1='3QT5' where id=9; -update noar tt set b2='8HUO9PI' where id=9; -update noar ti set b2='8HUO9PI' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - b0 text null, - b1 blob null, - b2 mediumblob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set b0='Z0YMM5JM2NXUZRYPR' where id=1; -update noar ti set b0='Z0YMM5JM2NXUZRYPR' where id=1; -update noar tt set b1='ZI4QU' where id=1; -update noar ti set b1='ZI4QU' where id=1; -update noar tt set b2='IWLYQGF4F9XR' where id=1; -update noar ti set b2='IWLYQGF4F9XR' where id=1; -update noar tt set b0='8DF7PDUAK1Q8JO08I' where id=2; -update noar ti set b0='8DF7PDUAK1Q8JO08I' where id=2; -update noar tt set b1='CZ53T' where id=2; -update noar ti set b1='CZ53T' where id=2; -update noar tt set b2='2C8CV37B302RT4BES' where id=2; -update noar ti set b2='2C8CV37B302RT4BES' where id=2; -update noar tt set b0='GHYTKCC1RU62343XDLQ' where id=3; -update noar ti set b0='GHYTKCC1RU62343XDLQ' where id=3; -update noar tt set b1='ZPIC05VC4073GRPEVDLU1YY097ZQ' where id=3; -update noar ti set b1='ZPIC05VC4073GRPEVDLU1YY097ZQ' where id=3; -update noar tt set b2='68Y8EOS4ATCPDD' where id=3; -update noar ti set b2='68Y8EOS4ATCPDD' where id=3; -update noar tt set b0='TVO3MA44RIQC7B57ZSBDHVBG49JQEYJ' where id=4; -update noar ti set b0='TVO3MA44RIQC7B57ZSBDHVBG49JQEYJ' where id=4; -update noar tt set b1='2MF3' where id=4; -update noar ti set b1='2MF3' where id=4; -update noar tt set b2='HKSV7BZFVNLUXJU6OGVPGYRN' where id=4; -update noar ti set b2='HKSV7BZFVNLUXJU6OGVPGYRN' where id=4; -update noar tt set b0='BDC859S7' where id=5; -update noar ti set b0='BDC859S7' where id=5; -update noar tt set b1='AL3TQ1FEOB29PY811DZDD7L' where id=5; -update noar ti set b1='AL3TQ1FEOB29PY811DZDD7L' where id=5; -update noar tt set b2='ISINVKF23GAJLFF8KEC2FCY0' where id=5; -update noar ti set b2='ISINVKF23GAJLFF8KEC2FCY0' where id=5; -update noar tt set b0='NLJX7SF5ILDY6SHUPBFJLU' where id=6; -update noar ti set b0='NLJX7SF5ILDY6SHUPBFJLU' where id=6; -update noar tt set b1='NYE6E34KK7MJFTIC6UC8ZHUQ0H' where id=6; -update noar ti set b1='NYE6E34KK7MJFTIC6UC8ZHUQ0H' where id=6; -update noar tt set b2='ZR' where id=6; -update noar ti set b2='ZR' where id=6; -update noar tt set b0='7U3BBQI5DH4H' where id=7; -update noar ti set b0='7U3BBQI5DH4H' where id=7; -update noar tt set b1='MPYYN6Y92SG6ADA6WOBB9DS1RBF1E2' where id=7; -update noar ti set b1='MPYYN6Y92SG6ADA6WOBB9DS1RBF1E2' where id=7; -update noar tt set b2='P911GC' where id=7; -update noar ti set b2='P911GC' where id=7; -update noar tt set b0='YXYGPU9KQUXG' where id=8; -update noar ti set b0='YXYGPU9KQUXG' where id=8; -update noar tt set b1='15W4' where id=8; -update noar ti set b1='15W4' where id=8; -update noar tt set b2='22MEOHC9T3BTK0VPSVOPH9LR' where id=8; -update noar ti set b2='22MEOHC9T3BTK0VPSVOPH9LR' where id=8; -update noar tt set b0='JILIU' where id=9; -update noar ti set b0='JILIU' where id=9; -update noar tt set b1='O2GGP60RF2R7W4Z3R' where id=9; -update noar ti set b1='O2GGP60RF2R7W4Z3R' where id=9; -update noar tt set b2='7' where id=9; -update noar ti set b2='7' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - b0 text not null, - b1 blob not null, - b2 mediumblob not null -) engine=tokudb; -insert into tt values (1,'','',''); -insert into tt values (2,'','',''); -insert into tt values (3,'','',''); -insert into tt values (4,'','',''); -insert into tt values (5,'','',''); -insert into tt values (6,'','',''); -insert into tt values (7,'','',''); -insert into tt values (8,'','',''); -insert into tt values (9,'','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set b0='OEWYKUULY0Q7E3Y1NU8LX1EF2P4R6PD' where id=1; -update noar ti set b0='OEWYKUULY0Q7E3Y1NU8LX1EF2P4R6PD' where id=1; -update noar tt set b1='DN' where id=1; -update noar ti set b1='DN' where id=1; -update noar tt set b2='P7QT77VLUR2BGCXW9M1' where id=1; -update noar ti set b2='P7QT77VLUR2BGCXW9M1' where id=1; -update noar tt set b0='FPV99KYKUFTOQU' where id=2; -update noar ti set b0='FPV99KYKUFTOQU' where id=2; -update noar tt set b1='AY25HWDKZFVHYI4KUFOOLBR' where id=2; -update noar ti set b1='AY25HWDKZFVHYI4KUFOOLBR' where id=2; -update noar tt set b2='KWWNEU9SU8N9JLPH6D0' where id=2; -update noar ti set b2='KWWNEU9SU8N9JLPH6D0' where id=2; -update noar tt set b0='V34O7O5F7TC89GWNXK14A5WS' where id=3; -update noar ti set b0='V34O7O5F7TC89GWNXK14A5WS' where id=3; -update noar tt set b1='JWASTWP6EIIOH609BA7LX7CQI' where id=3; -update noar ti set b1='JWASTWP6EIIOH609BA7LX7CQI' where id=3; -update noar tt set b2='YIY0HZBFA' where id=3; -update noar ti set b2='YIY0HZBFA' where id=3; -update noar tt set b0='8H7DXS102TU3IXV0CCIZJXK' where id=4; -update noar ti set b0='8H7DXS102TU3IXV0CCIZJXK' where id=4; -update noar tt set b1='W' where id=4; -update noar ti set b1='W' where id=4; -update noar tt set b2='6QPG4F8JY0XBI5ZUCY4' where id=4; -update noar ti set b2='6QPG4F8JY0XBI5ZUCY4' where id=4; -update noar tt set b0='AW2KK' where id=5; -update noar ti set b0='AW2KK' where id=5; -update noar tt set b1='TJ6S4ZFS4486CBCD6AXJFI' where id=5; -update noar ti set b1='TJ6S4ZFS4486CBCD6AXJFI' where id=5; -update noar tt set b2='IS5W52VX669CAB8PJSSJMJ6ZQQ741QH' where id=5; -update noar ti set b2='IS5W52VX669CAB8PJSSJMJ6ZQQ741QH' where id=5; -update noar tt set b0='7A6Z6VEZJRSM' where id=6; -update noar ti set b0='7A6Z6VEZJRSM' where id=6; -update noar tt set b1='G696QBIK2QTVEVIZOWG9E2S' where id=6; -update noar ti set b1='G696QBIK2QTVEVIZOWG9E2S' where id=6; -update noar tt set b2='IZ073IH8YIOA' where id=6; -update noar ti set b2='IZ073IH8YIOA' where id=6; -update noar tt set b0='22I7VKEJDLR8WR891QMXIK8B0ESL70L' where id=7; -update noar ti set b0='22I7VKEJDLR8WR891QMXIK8B0ESL70L' where id=7; -update noar tt set b1='KZ4P7UQ391WEFSY797W2M3Q8PU' where id=7; -update noar ti set b1='KZ4P7UQ391WEFSY797W2M3Q8PU' where id=7; -update noar tt set b2='UD4U6MQMX89' where id=7; -update noar ti set b2='UD4U6MQMX89' where id=7; -update noar tt set b0='N026JXH0BVWP' where id=8; -update noar ti set b0='N026JXH0BVWP' where id=8; -update noar tt set b1='FYTUD' where id=8; -update noar ti set b1='FYTUD' where id=8; -update noar tt set b2='54' where id=8; -update noar ti set b2='54' where id=8; -update noar tt set b0='C1BT' where id=9; -update noar ti set b0='C1BT' where id=9; -update noar tt set b1='V0' where id=9; -update noar ti set b1='V0' where id=9; -update noar tt set b2='S6MOT0M8JOH8JN3DPS7P3A' where id=9; -update noar ti set b2='S6MOT0M8JOH8JN3DPS7P3A' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - b0 text null, - b1 blob null, - b2 longblob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set b0='ZBRG79B9G5RZEND4O7GQ9L' where id=1; -update noar ti set b0='ZBRG79B9G5RZEND4O7GQ9L' where id=1; -update noar tt set b1='40M' where id=1; -update noar ti set b1='40M' where id=1; -update noar tt set b2='AGW99IRGKV36OHW186A9CDMF1W' where id=1; -update noar ti set b2='AGW99IRGKV36OHW186A9CDMF1W' where id=1; -update noar tt set b0='4RHC85920A6RF' where id=2; -update noar ti set b0='4RHC85920A6RF' where id=2; -update noar tt set b1='X613EFQG9X5G7B92Y8M5U3A' where id=2; -update noar ti set b1='X613EFQG9X5G7B92Y8M5U3A' where id=2; -update noar tt set b2='ZXAKH' where id=2; -update noar ti set b2='ZXAKH' where id=2; -update noar tt set b0='S1DWBV0EOJCSXTWZ2P8TX4B' where id=3; -update noar ti set b0='S1DWBV0EOJCSXTWZ2P8TX4B' where id=3; -update noar tt set b1='O0DDZ53H3OKX0KDO6MK4OR' where id=3; -update noar ti set b1='O0DDZ53H3OKX0KDO6MK4OR' where id=3; -update noar tt set b2='J18WK' where id=3; -update noar ti set b2='J18WK' where id=3; -update noar tt set b0='969OH' where id=4; -update noar ti set b0='969OH' where id=4; -update noar tt set b1='DWJCHH7TVC3CWTBCPO6R0WK' where id=4; -update noar ti set b1='DWJCHH7TVC3CWTBCPO6R0WK' where id=4; -update noar tt set b2='GTT15TVKP' where id=4; -update noar ti set b2='GTT15TVKP' where id=4; -update noar tt set b0='25IL7ZXWJN9YWSPEZ26P8CSUKW0E' where id=5; -update noar ti set b0='25IL7ZXWJN9YWSPEZ26P8CSUKW0E' where id=5; -update noar tt set b1='LLC89' where id=5; -update noar ti set b1='LLC89' where id=5; -update noar tt set b2='CRY8702G6LVMB' where id=5; -update noar ti set b2='CRY8702G6LVMB' where id=5; -update noar tt set b0='HFE' where id=6; -update noar ti set b0='HFE' where id=6; -update noar tt set b1='EBWZ' where id=6; -update noar ti set b1='EBWZ' where id=6; -update noar tt set b2='FD' where id=6; -update noar ti set b2='FD' where id=6; -update noar tt set b0='LP3QOJEELP' where id=7; -update noar ti set b0='LP3QOJEELP' where id=7; -update noar tt set b1='R2OPGOQETJP' where id=7; -update noar ti set b1='R2OPGOQETJP' where id=7; -update noar tt set b2='2C2VXCUH1B9XL3YFW3NNJ4QNMB09QF' where id=7; -update noar ti set b2='2C2VXCUH1B9XL3YFW3NNJ4QNMB09QF' where id=7; -update noar tt set b0='7WVMQOGLF632B99IG3UDBPWR5RUL58QM' where id=8; -update noar ti set b0='7WVMQOGLF632B99IG3UDBPWR5RUL58QM' where id=8; -update noar tt set b1='GJBCRUWTQXDBEL1G7JU9MYP5AV7L0D8' where id=8; -update noar ti set b1='GJBCRUWTQXDBEL1G7JU9MYP5AV7L0D8' where id=8; -update noar tt set b2='T2EAB1E9L3MD4BIK1' where id=8; -update noar ti set b2='T2EAB1E9L3MD4BIK1' where id=8; -update noar tt set b0='M40E8H6JM6' where id=9; -update noar ti set b0='M40E8H6JM6' where id=9; -update noar tt set b1='HTYWYY9D0BSZMO0XRAZG2LXZMWS' where id=9; -update noar ti set b1='HTYWYY9D0BSZMO0XRAZG2LXZMWS' where id=9; -update noar tt set b2='XUB8ZSSJNJDAJ45PVYXN4GR2O1GBQT9' where id=9; -update noar ti set b2='XUB8ZSSJNJDAJ45PVYXN4GR2O1GBQT9' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - b0 text not null, - b1 blob not null, - b2 longblob not null -) engine=tokudb; -insert into tt values (1,'','',''); -insert into tt values (2,'','',''); -insert into tt values (3,'','',''); -insert into tt values (4,'','',''); -insert into tt values (5,'','',''); -insert into tt values (6,'','',''); -insert into tt values (7,'','',''); -insert into tt values (8,'','',''); -insert into tt values (9,'','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set b0='ECB3EOOST' where id=1; -update noar ti set b0='ECB3EOOST' where id=1; -update noar tt set b1='3' where id=1; -update noar ti set b1='3' where id=1; -update noar tt set b2='DT7AZRXV235GNTCG' where id=1; -update noar ti set b2='DT7AZRXV235GNTCG' where id=1; -update noar tt set b0='AJ' where id=2; -update noar ti set b0='AJ' where id=2; -update noar tt set b1='ZKRBO8BSF1QTD1O2YH8S3EQ' where id=2; -update noar ti set b1='ZKRBO8BSF1QTD1O2YH8S3EQ' where id=2; -update noar tt set b2='SWW2Y9S1NJ9CEEPL4X798V9' where id=2; -update noar ti set b2='SWW2Y9S1NJ9CEEPL4X798V9' where id=2; -update noar tt set b0='6MNNRV73AF0VZ3Z' where id=3; -update noar ti set b0='6MNNRV73AF0VZ3Z' where id=3; -update noar tt set b1='WKI' where id=3; -update noar ti set b1='WKI' where id=3; -update noar tt set b2='LDO005JI41OV6K099DZJQ4IS85' where id=3; -update noar ti set b2='LDO005JI41OV6K099DZJQ4IS85' where id=3; -update noar tt set b0='FZRNQGH6GJAE4S1XGOKZFCOR0' where id=4; -update noar ti set b0='FZRNQGH6GJAE4S1XGOKZFCOR0' where id=4; -update noar tt set b1='Y9HQ8FFNO3E53VLIGW4Q' where id=4; -update noar ti set b1='Y9HQ8FFNO3E53VLIGW4Q' where id=4; -update noar tt set b2='51282NTOVOEY77F' where id=4; -update noar ti set b2='51282NTOVOEY77F' where id=4; -update noar tt set b0='AZN4K5RY2OK' where id=5; -update noar ti set b0='AZN4K5RY2OK' where id=5; -update noar tt set b1='ULQ1KDH8Q' where id=5; -update noar ti set b1='ULQ1KDH8Q' where id=5; -update noar tt set b2='B0O0E15KI' where id=5; -update noar ti set b2='B0O0E15KI' where id=5; -update noar tt set b0='D36PS8GP5A85BT4PWGACGLD' where id=6; -update noar ti set b0='D36PS8GP5A85BT4PWGACGLD' where id=6; -update noar tt set b1='HJA2EVLGSMIMW' where id=6; -update noar ti set b1='HJA2EVLGSMIMW' where id=6; -update noar tt set b2='4X' where id=6; -update noar ti set b2='4X' where id=6; -update noar tt set b0='TDSTY3C9AMSBLWX83U2CBPI46' where id=7; -update noar ti set b0='TDSTY3C9AMSBLWX83U2CBPI46' where id=7; -update noar tt set b1='QJQL6O7A4AH9YVGKD72IU9P' where id=7; -update noar ti set b1='QJQL6O7A4AH9YVGKD72IU9P' where id=7; -update noar tt set b2='DIP13EXSBZEEM0K8NR0W23631K1J' where id=7; -update noar ti set b2='DIP13EXSBZEEM0K8NR0W23631K1J' where id=7; -update noar tt set b0='UQK9W7AR0H3I4UFPNCF1' where id=8; -update noar ti set b0='UQK9W7AR0H3I4UFPNCF1' where id=8; -update noar tt set b1='HJAZ' where id=8; -update noar ti set b1='HJAZ' where id=8; -update noar tt set b2='A569YD19ZF23K67YWVY' where id=8; -update noar ti set b2='A569YD19ZF23K67YWVY' where id=8; -update noar tt set b0='8WQW4RKLPDM2NL9B484D1MBM6UGMB3B4' where id=9; -update noar ti set b0='8WQW4RKLPDM2NL9B484D1MBM6UGMB3B4' where id=9; -update noar tt set b1='BNKWZ' where id=9; -update noar ti set b1='BNKWZ' where id=9; -update noar tt set b2='AVV955VSW47QH1CI42D0JZPG5C' where id=9; -update noar ti set b2='AVV955VSW47QH1CI42D0JZPG5C' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - b0 text null, - b1 blob null, - b2 text null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set b0='NBT461F4JIGF6B3KY70D3HCE25HVJ' where id=1; -update noar ti set b0='NBT461F4JIGF6B3KY70D3HCE25HVJ' where id=1; -update noar tt set b1='L41VQCK6DMMFND1KRV45H4' where id=1; -update noar ti set b1='L41VQCK6DMMFND1KRV45H4' where id=1; -update noar tt set b2='761E2M' where id=1; -update noar ti set b2='761E2M' where id=1; -update noar tt set b0='823Y9MXU' where id=2; -update noar ti set b0='823Y9MXU' where id=2; -update noar tt set b1='W165L' where id=2; -update noar ti set b1='W165L' where id=2; -update noar tt set b2='EJ66JI8AEI31YA' where id=2; -update noar ti set b2='EJ66JI8AEI31YA' where id=2; -update noar tt set b0='P7TRKT' where id=3; -update noar ti set b0='P7TRKT' where id=3; -update noar tt set b1='7RXAVJO' where id=3; -update noar ti set b1='7RXAVJO' where id=3; -update noar tt set b2='N' where id=3; -update noar ti set b2='N' where id=3; -update noar tt set b0='C24JOPE1FAY8WG39A4A0VNN85MMQPCN' where id=4; -update noar ti set b0='C24JOPE1FAY8WG39A4A0VNN85MMQPCN' where id=4; -update noar tt set b1='L0BYK' where id=4; -update noar ti set b1='L0BYK' where id=4; -update noar tt set b2='R' where id=4; -update noar ti set b2='R' where id=4; -update noar tt set b0='ZNPL0YRH2DX97MFQZDF5VH' where id=5; -update noar ti set b0='ZNPL0YRH2DX97MFQZDF5VH' where id=5; -update noar tt set b1='U2PAATZ1CQER202LLVBGE6A4HFDNOTH' where id=5; -update noar ti set b1='U2PAATZ1CQER202LLVBGE6A4HFDNOTH' where id=5; -update noar tt set b2='QRFL' where id=5; -update noar ti set b2='QRFL' where id=5; -update noar tt set b0='4WF5ZDFTYJ5TTDBSLLQ' where id=6; -update noar ti set b0='4WF5ZDFTYJ5TTDBSLLQ' where id=6; -update noar tt set b1='MTSA8YVP7XR0FHYE1' where id=6; -update noar ti set b1='MTSA8YVP7XR0FHYE1' where id=6; -update noar tt set b2='8MCJOJTMW7R42ALI0LZPVKJLYDMVZ9' where id=6; -update noar ti set b2='8MCJOJTMW7R42ALI0LZPVKJLYDMVZ9' where id=6; -update noar tt set b0='5CZIS' where id=7; -update noar ti set b0='5CZIS' where id=7; -update noar tt set b1='867FEWDBMDXK81MP8DQNH5CU4HT986AN' where id=7; -update noar ti set b1='867FEWDBMDXK81MP8DQNH5CU4HT986AN' where id=7; -update noar tt set b2='G43YTE6FP1WXH9JBV' where id=7; -update noar ti set b2='G43YTE6FP1WXH9JBV' where id=7; -update noar tt set b0='65K8A6QLXGX6439IDJ433TOO5AA' where id=8; -update noar ti set b0='65K8A6QLXGX6439IDJ433TOO5AA' where id=8; -update noar tt set b1='9W76O63W7V4Y0Q31U1WEHQR7' where id=8; -update noar ti set b1='9W76O63W7V4Y0Q31U1WEHQR7' where id=8; -update noar tt set b2='NLBIYQ8G3FZXP' where id=8; -update noar ti set b2='NLBIYQ8G3FZXP' where id=8; -update noar tt set b0='8M9OLVIMC4IPQ9' where id=9; -update noar ti set b0='8M9OLVIMC4IPQ9' where id=9; -update noar tt set b1='IA2SK9O1XLB2NVLOWQDECFEZ6WN6' where id=9; -update noar ti set b1='IA2SK9O1XLB2NVLOWQDECFEZ6WN6' where id=9; -update noar tt set b2='Y6HM4KI0DIOAST57MU29OXNVP8' where id=9; -update noar ti set b2='Y6HM4KI0DIOAST57MU29OXNVP8' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - b0 text not null, - b1 blob not null, - b2 text not null -) engine=tokudb; -insert into tt values (1,'','',''); -insert into tt values (2,'','',''); -insert into tt values (3,'','',''); -insert into tt values (4,'','',''); -insert into tt values (5,'','',''); -insert into tt values (6,'','',''); -insert into tt values (7,'','',''); -insert into tt values (8,'','',''); -insert into tt values (9,'','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set b0='9220T0A2HMH8PIR46F' where id=1; -update noar ti set b0='9220T0A2HMH8PIR46F' where id=1; -update noar tt set b1='QN7FF6OFKXBZC83EEVMF93YIHE' where id=1; -update noar ti set b1='QN7FF6OFKXBZC83EEVMF93YIHE' where id=1; -update noar tt set b2='DG71G8XOKJWL3PXPGWUIIXRQP4H' where id=1; -update noar ti set b2='DG71G8XOKJWL3PXPGWUIIXRQP4H' where id=1; -update noar tt set b0='C8IGFNSQMW7T5XSRPR3J99D22P' where id=2; -update noar ti set b0='C8IGFNSQMW7T5XSRPR3J99D22P' where id=2; -update noar tt set b1='PSB6Q2NC' where id=2; -update noar ti set b1='PSB6Q2NC' where id=2; -update noar tt set b2='RG0K57VG0HQUOUD0' where id=2; -update noar ti set b2='RG0K57VG0HQUOUD0' where id=2; -update noar tt set b0='VFXLJ1AM44AG1UHGDRYDU3GRG7KON4ZF' where id=3; -update noar ti set b0='VFXLJ1AM44AG1UHGDRYDU3GRG7KON4ZF' where id=3; -update noar tt set b1='ELHQO7Q7ZSIH7TB52VZZVY9' where id=3; -update noar ti set b1='ELHQO7Q7ZSIH7TB52VZZVY9' where id=3; -update noar tt set b2='72ST27NWEE6HBXYW051' where id=3; -update noar ti set b2='72ST27NWEE6HBXYW051' where id=3; -update noar tt set b0='XB' where id=4; -update noar ti set b0='XB' where id=4; -update noar tt set b1='59LZB2HU5IE2F5' where id=4; -update noar ti set b1='59LZB2HU5IE2F5' where id=4; -update noar tt set b2='M1VLCBAGLK6H1HXW' where id=4; -update noar ti set b2='M1VLCBAGLK6H1HXW' where id=4; -update noar tt set b0='VRJPWTGN' where id=5; -update noar ti set b0='VRJPWTGN' where id=5; -update noar tt set b1='QI8U81BF4LPXPIZYKK' where id=5; -update noar ti set b1='QI8U81BF4LPXPIZYKK' where id=5; -update noar tt set b2='82CDXLP59L5CKGP9BVO22B3J0GB0ZW' where id=5; -update noar ti set b2='82CDXLP59L5CKGP9BVO22B3J0GB0ZW' where id=5; -update noar tt set b0='02OYPKBNKR7E0Z1ZPBZDZ' where id=6; -update noar ti set b0='02OYPKBNKR7E0Z1ZPBZDZ' where id=6; -update noar tt set b1='9Z3WM5VSE' where id=6; -update noar ti set b1='9Z3WM5VSE' where id=6; -update noar tt set b2='63ZIB046VLTD4O5VPKX' where id=6; -update noar ti set b2='63ZIB046VLTD4O5VPKX' where id=6; -update noar tt set b0='MG5HS2' where id=7; -update noar ti set b0='MG5HS2' where id=7; -update noar tt set b1='5LIXBE4DGTF84UI7WRN8WB48LG94C' where id=7; -update noar ti set b1='5LIXBE4DGTF84UI7WRN8WB48LG94C' where id=7; -update noar tt set b2='X3HA80ZMJA6YR83XKMGGRIKIPG' where id=7; -update noar ti set b2='X3HA80ZMJA6YR83XKMGGRIKIPG' where id=7; -update noar tt set b0='KPWLLJG6B8L9VV' where id=8; -update noar ti set b0='KPWLLJG6B8L9VV' where id=8; -update noar tt set b1='0Z1AU57IVCBBFGX0ZBO' where id=8; -update noar ti set b1='0Z1AU57IVCBBFGX0ZBO' where id=8; -update noar tt set b2='YNCNTIX7KLQXD1' where id=8; -update noar ti set b2='YNCNTIX7KLQXD1' where id=8; -update noar tt set b0='U4QFAL1Y64SK2OJ0MH0NF' where id=9; -update noar ti set b0='U4QFAL1Y64SK2OJ0MH0NF' where id=9; -update noar tt set b1='IKS12Y0VM2' where id=9; -update noar ti set b1='IKS12Y0VM2' where id=9; -update noar tt set b2='1H6QA' where id=9; -update noar ti set b2='1H6QA' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - b0 text null, - b1 mediumblob null, - b2 tinyblob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set b0='X0S5ABI3AUYI83844TSV30978RGAXM' where id=1; -update noar ti set b0='X0S5ABI3AUYI83844TSV30978RGAXM' where id=1; -update noar tt set b1='YE8F7WZ2YPR4PUL2Q32SL5IA8' where id=1; -update noar ti set b1='YE8F7WZ2YPR4PUL2Q32SL5IA8' where id=1; -update noar tt set b2='NMP3QFUB3LZKUFS' where id=1; -update noar ti set b2='NMP3QFUB3LZKUFS' where id=1; -update noar tt set b0='HM48YMB8GUD7MHTFPZTB' where id=2; -update noar ti set b0='HM48YMB8GUD7MHTFPZTB' where id=2; -update noar tt set b1='KWBDN6VO7TRXXSNUS05IWZA850FS' where id=2; -update noar ti set b1='KWBDN6VO7TRXXSNUS05IWZA850FS' where id=2; -update noar tt set b2='1KH9YBYVOOST1712HSE0C96D4RJ6JM' where id=2; -update noar ti set b2='1KH9YBYVOOST1712HSE0C96D4RJ6JM' where id=2; -update noar tt set b0='WMG2UWPRYDO' where id=3; -update noar ti set b0='WMG2UWPRYDO' where id=3; -update noar tt set b1='T1IW3XTE281R5IGAB22VV88A0QB28IFN' where id=3; -update noar ti set b1='T1IW3XTE281R5IGAB22VV88A0QB28IFN' where id=3; -update noar tt set b2='TL0X2V9P577U3' where id=3; -update noar ti set b2='TL0X2V9P577U3' where id=3; -update noar tt set b0='XQU3M65OYG41OLHKRS4L' where id=4; -update noar ti set b0='XQU3M65OYG41OLHKRS4L' where id=4; -update noar tt set b1='HQ6J3M0SGEYYKBKUP52G6D59' where id=4; -update noar ti set b1='HQ6J3M0SGEYYKBKUP52G6D59' where id=4; -update noar tt set b2='26P8LE1L36' where id=4; -update noar ti set b2='26P8LE1L36' where id=4; -update noar tt set b0='YM77UE0' where id=5; -update noar ti set b0='YM77UE0' where id=5; -update noar tt set b1='Q0ALCATADV3XED' where id=5; -update noar ti set b1='Q0ALCATADV3XED' where id=5; -update noar tt set b2='HA9S7Y8TJJQ95S' where id=5; -update noar ti set b2='HA9S7Y8TJJQ95S' where id=5; -update noar tt set b0='UUD' where id=6; -update noar ti set b0='UUD' where id=6; -update noar tt set b1='IO3FHBCQ4CGWW' where id=6; -update noar ti set b1='IO3FHBCQ4CGWW' where id=6; -update noar tt set b2='J8CK17GJ8FOJ' where id=6; -update noar ti set b2='J8CK17GJ8FOJ' where id=6; -update noar tt set b0='6JDL18UKAH7TXORDN40Q' where id=7; -update noar ti set b0='6JDL18UKAH7TXORDN40Q' where id=7; -update noar tt set b1='87FZAU27' where id=7; -update noar ti set b1='87FZAU27' where id=7; -update noar tt set b2='WWQ2OS784LL8OGJTLN2QSBKZXCVB3A' where id=7; -update noar ti set b2='WWQ2OS784LL8OGJTLN2QSBKZXCVB3A' where id=7; -update noar tt set b0='UQYXETVAH8CZVRIUI1S' where id=8; -update noar ti set b0='UQYXETVAH8CZVRIUI1S' where id=8; -update noar tt set b1='S88GEIRLHWWG0Q' where id=8; -update noar ti set b1='S88GEIRLHWWG0Q' where id=8; -update noar tt set b2='1PLMDYYZJ2' where id=8; -update noar ti set b2='1PLMDYYZJ2' where id=8; -update noar tt set b0='B50CSRX8IIUOF7PL65MVCULH0WTRJ60' where id=9; -update noar ti set b0='B50CSRX8IIUOF7PL65MVCULH0WTRJ60' where id=9; -update noar tt set b1='SJD3MPLDIGV6IQE8' where id=9; -update noar ti set b1='SJD3MPLDIGV6IQE8' where id=9; -update noar tt set b2='CI2V0IC6FY0I4' where id=9; -update noar ti set b2='CI2V0IC6FY0I4' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - b0 text not null, - b1 mediumblob not null, - b2 tinyblob not null -) engine=tokudb; -insert into tt values (1,'','',''); -insert into tt values (2,'','',''); -insert into tt values (3,'','',''); -insert into tt values (4,'','',''); -insert into tt values (5,'','',''); -insert into tt values (6,'','',''); -insert into tt values (7,'','',''); -insert into tt values (8,'','',''); -insert into tt values (9,'','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set b0='CJTE' where id=1; -update noar ti set b0='CJTE' where id=1; -update noar tt set b1='PYQ0MDVWL9EEJWAX9HC82' where id=1; -update noar ti set b1='PYQ0MDVWL9EEJWAX9HC82' where id=1; -update noar tt set b2='PPZZLUOUNT8C3JP44' where id=1; -update noar ti set b2='PPZZLUOUNT8C3JP44' where id=1; -update noar tt set b0='A4ZF0SL49YRGNKR4B34836CHQUC6PD0' where id=2; -update noar ti set b0='A4ZF0SL49YRGNKR4B34836CHQUC6PD0' where id=2; -update noar tt set b1='TP5W92IJKPCMCJNI6CQLW' where id=2; -update noar ti set b1='TP5W92IJKPCMCJNI6CQLW' where id=2; -update noar tt set b2='CS5UF' where id=2; -update noar ti set b2='CS5UF' where id=2; -update noar tt set b0='JZGUSQTIA5Z15LO2NMYPJ' where id=3; -update noar ti set b0='JZGUSQTIA5Z15LO2NMYPJ' where id=3; -update noar tt set b1='M8T' where id=3; -update noar ti set b1='M8T' where id=3; -update noar tt set b2='B8E4NGYG9LXNKSUO6S' where id=3; -update noar ti set b2='B8E4NGYG9LXNKSUO6S' where id=3; -update noar tt set b0='9YON3RE0W896TOFMDSF4OFCR3QEH' where id=4; -update noar ti set b0='9YON3RE0W896TOFMDSF4OFCR3QEH' where id=4; -update noar tt set b1='QACCCZ91KH0U1G21I4TCYQ4Y5' where id=4; -update noar ti set b1='QACCCZ91KH0U1G21I4TCYQ4Y5' where id=4; -update noar tt set b2='YPQN1PD04GSNH' where id=4; -update noar ti set b2='YPQN1PD04GSNH' where id=4; -update noar tt set b0='HFOVI3S23LZMOQ84N3L3U4CEZNTJ' where id=5; -update noar ti set b0='HFOVI3S23LZMOQ84N3L3U4CEZNTJ' where id=5; -update noar tt set b1='QG5NI275LUGTJ10C6U' where id=5; -update noar ti set b1='QG5NI275LUGTJ10C6U' where id=5; -update noar tt set b2='IE5USMKZNBCMKQHBZ10EWQRFIZX2S1' where id=5; -update noar ti set b2='IE5USMKZNBCMKQHBZ10EWQRFIZX2S1' where id=5; -update noar tt set b0='I6EVI' where id=6; -update noar ti set b0='I6EVI' where id=6; -update noar tt set b1='YMSRQSIS9R6AIX9M0QV' where id=6; -update noar ti set b1='YMSRQSIS9R6AIX9M0QV' where id=6; -update noar tt set b2='OGF' where id=6; -update noar ti set b2='OGF' where id=6; -update noar tt set b0='KP5VR5MK2WKAFW6YM7OJRU' where id=7; -update noar ti set b0='KP5VR5MK2WKAFW6YM7OJRU' where id=7; -update noar tt set b1='AX49E3OSHZ1DXX8FBODUPEQ' where id=7; -update noar ti set b1='AX49E3OSHZ1DXX8FBODUPEQ' where id=7; -update noar tt set b2='KHXKNFBOQ8M3Y5HSZJ' where id=7; -update noar ti set b2='KHXKNFBOQ8M3Y5HSZJ' where id=7; -update noar tt set b0='6IDJH8EZVIOFDTTPNOTGH9H1YKP7SVW7' where id=8; -update noar ti set b0='6IDJH8EZVIOFDTTPNOTGH9H1YKP7SVW7' where id=8; -update noar tt set b1='870PQEAXH6XU' where id=8; -update noar ti set b1='870PQEAXH6XU' where id=8; -update noar tt set b2='K3N4W0JN' where id=8; -update noar ti set b2='K3N4W0JN' where id=8; -update noar tt set b0='UA4OBVP' where id=9; -update noar ti set b0='UA4OBVP' where id=9; -update noar tt set b1='JFOUKEJFILNPC' where id=9; -update noar ti set b1='JFOUKEJFILNPC' where id=9; -update noar tt set b2='3J7KDIVWZEI1LTDRLQZH' where id=9; -update noar ti set b2='3J7KDIVWZEI1LTDRLQZH' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - b0 text null, - b1 mediumblob null, - b2 blob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set b0='BF8FMI5OV3MNRME81W0TRC7XTQ7SBCBA' where id=1; -update noar ti set b0='BF8FMI5OV3MNRME81W0TRC7XTQ7SBCBA' where id=1; -update noar tt set b1='0S9BFER54JXZV' where id=1; -update noar ti set b1='0S9BFER54JXZV' where id=1; -update noar tt set b2='8H1M7N20Y8P3H80UMZ9M' where id=1; -update noar ti set b2='8H1M7N20Y8P3H80UMZ9M' where id=1; -update noar tt set b0='GHYTFR6FP6S0WJUNGE' where id=2; -update noar ti set b0='GHYTFR6FP6S0WJUNGE' where id=2; -update noar tt set b1='CCNSS' where id=2; -update noar ti set b1='CCNSS' where id=2; -update noar tt set b2='8O8TZ1RAZMM41CM' where id=2; -update noar ti set b2='8O8TZ1RAZMM41CM' where id=2; -update noar tt set b0='C2ESVEREHWQCQTOYGN6' where id=3; -update noar ti set b0='C2ESVEREHWQCQTOYGN6' where id=3; -update noar tt set b1='SANT9F' where id=3; -update noar ti set b1='SANT9F' where id=3; -update noar tt set b2='RGQYTEC8LSXXDHB3ABBP4U4C66ENGL1' where id=3; -update noar ti set b2='RGQYTEC8LSXXDHB3ABBP4U4C66ENGL1' where id=3; -update noar tt set b0='0VDZUGXVXAN4HW4A9ITEK2E209' where id=4; -update noar ti set b0='0VDZUGXVXAN4HW4A9ITEK2E209' where id=4; -update noar tt set b1='VEOSK9FXWFPW6U1KUF' where id=4; -update noar ti set b1='VEOSK9FXWFPW6U1KUF' where id=4; -update noar tt set b2='2JEOMXXOWTVU58XLY9NKA6VP' where id=4; -update noar ti set b2='2JEOMXXOWTVU58XLY9NKA6VP' where id=4; -update noar tt set b0='AAMQLFWQPZEC7XF77IC49B3YIFB' where id=5; -update noar ti set b0='AAMQLFWQPZEC7XF77IC49B3YIFB' where id=5; -update noar tt set b1='FIX' where id=5; -update noar ti set b1='FIX' where id=5; -update noar tt set b2='RAA95L9XGL7HY1SPB4PTQB97JD36N0' where id=5; -update noar ti set b2='RAA95L9XGL7HY1SPB4PTQB97JD36N0' where id=5; -update noar tt set b0='NIN0ME935VFQHL79UHMHVUMIX6OV4' where id=6; -update noar ti set b0='NIN0ME935VFQHL79UHMHVUMIX6OV4' where id=6; -update noar tt set b1='XFHGM' where id=6; -update noar ti set b1='XFHGM' where id=6; -update noar tt set b2='7NY2O3YR' where id=6; -update noar ti set b2='7NY2O3YR' where id=6; -update noar tt set b0='4TDJXIXKTGZTVP7FD9O6QWB' where id=7; -update noar ti set b0='4TDJXIXKTGZTVP7FD9O6QWB' where id=7; -update noar tt set b1='4JV4UC8Z2MMM0B4T9E7D6MC3NPYQXL8' where id=7; -update noar ti set b1='4JV4UC8Z2MMM0B4T9E7D6MC3NPYQXL8' where id=7; -update noar tt set b2='WEF5RKFXNTMBIQ06GJE5DQUV' where id=7; -update noar ti set b2='WEF5RKFXNTMBIQ06GJE5DQUV' where id=7; -update noar tt set b0='M8F9BRE7FG02AE2XMJKI4SGIMI65S' where id=8; -update noar ti set b0='M8F9BRE7FG02AE2XMJKI4SGIMI65S' where id=8; -update noar tt set b1='GK5WRIKSK4XUH2VRJVUFW' where id=8; -update noar ti set b1='GK5WRIKSK4XUH2VRJVUFW' where id=8; -update noar tt set b2='JTI37YQD0I2J' where id=8; -update noar ti set b2='JTI37YQD0I2J' where id=8; -update noar tt set b0='DQD9M7CWCBGS7NT1ZMEKF' where id=9; -update noar ti set b0='DQD9M7CWCBGS7NT1ZMEKF' where id=9; -update noar tt set b1='PBA1AEQJJCPGDV5E4' where id=9; -update noar ti set b1='PBA1AEQJJCPGDV5E4' where id=9; -update noar tt set b2='YZH1ZEZROAUD' where id=9; -update noar ti set b2='YZH1ZEZROAUD' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - b0 text not null, - b1 mediumblob not null, - b2 blob not null -) engine=tokudb; -insert into tt values (1,'','',''); -insert into tt values (2,'','',''); -insert into tt values (3,'','',''); -insert into tt values (4,'','',''); -insert into tt values (5,'','',''); -insert into tt values (6,'','',''); -insert into tt values (7,'','',''); -insert into tt values (8,'','',''); -insert into tt values (9,'','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set b0='2WI8IZ9' where id=1; -update noar ti set b0='2WI8IZ9' where id=1; -update noar tt set b1='VIVEZ0Y3JU9E8OH4C88TUS0LZIVR' where id=1; -update noar ti set b1='VIVEZ0Y3JU9E8OH4C88TUS0LZIVR' where id=1; -update noar tt set b2='8CFENFZ7FR5UOSZ7CNHTPX5UFJ1AC5I' where id=1; -update noar ti set b2='8CFENFZ7FR5UOSZ7CNHTPX5UFJ1AC5I' where id=1; -update noar tt set b0='X8LZ6OL0VQ6C' where id=2; -update noar ti set b0='X8LZ6OL0VQ6C' where id=2; -update noar tt set b1='XNIIY2XNSQTV8I8FBONZIAX' where id=2; -update noar ti set b1='XNIIY2XNSQTV8I8FBONZIAX' where id=2; -update noar tt set b2='S4J8EKR2SJXDT1K7VK4K2CAAB' where id=2; -update noar ti set b2='S4J8EKR2SJXDT1K7VK4K2CAAB' where id=2; -update noar tt set b0='W9PTO2QCQ8R' where id=3; -update noar ti set b0='W9PTO2QCQ8R' where id=3; -update noar tt set b1='AEDBOLJJ' where id=3; -update noar ti set b1='AEDBOLJJ' where id=3; -update noar tt set b2='8D8PFX89G0EW4R0R3XJG9CC1ASR' where id=3; -update noar ti set b2='8D8PFX89G0EW4R0R3XJG9CC1ASR' where id=3; -update noar tt set b0='LPRIH2I' where id=4; -update noar ti set b0='LPRIH2I' where id=4; -update noar tt set b1='IH12BTA0NKKFEQNQV4XMM' where id=4; -update noar ti set b1='IH12BTA0NKKFEQNQV4XMM' where id=4; -update noar tt set b2='YHOWHQSF' where id=4; -update noar ti set b2='YHOWHQSF' where id=4; -update noar tt set b0='HU2B02V9JZI7HR2TZKHD5ZVSCTKSQCL' where id=5; -update noar ti set b0='HU2B02V9JZI7HR2TZKHD5ZVSCTKSQCL' where id=5; -update noar tt set b1='V3T8UDWF95ZD3WSQZY6ZSZ5' where id=5; -update noar ti set b1='V3T8UDWF95ZD3WSQZY6ZSZ5' where id=5; -update noar tt set b2='F3HY8QP040TBJWRCCQQRTNVL' where id=5; -update noar ti set b2='F3HY8QP040TBJWRCCQQRTNVL' where id=5; -update noar tt set b0='6VK' where id=6; -update noar ti set b0='6VK' where id=6; -update noar tt set b1='DMYKRP3A31UU8LRZ5FE3RF8BFRX' where id=6; -update noar ti set b1='DMYKRP3A31UU8LRZ5FE3RF8BFRX' where id=6; -update noar tt set b2='RXZEP8UDXX4QAEHN0DHM6FUMMRUQN2' where id=6; -update noar ti set b2='RXZEP8UDXX4QAEHN0DHM6FUMMRUQN2' where id=6; -update noar tt set b0='MFEGY0' where id=7; -update noar ti set b0='MFEGY0' where id=7; -update noar tt set b1='AKOPUMQQDOC0V0T28NS5MY9YT5DRKSX0' where id=7; -update noar ti set b1='AKOPUMQQDOC0V0T28NS5MY9YT5DRKSX0' where id=7; -update noar tt set b2='2VYB4WHU77LZQ1P' where id=7; -update noar ti set b2='2VYB4WHU77LZQ1P' where id=7; -update noar tt set b0='H9SJQCBGJ6D7' where id=8; -update noar ti set b0='H9SJQCBGJ6D7' where id=8; -update noar tt set b1='1785LTCHMHA2Q' where id=8; -update noar ti set b1='1785LTCHMHA2Q' where id=8; -update noar tt set b2='JEJJ' where id=8; -update noar ti set b2='JEJJ' where id=8; -update noar tt set b0='QB7BP2WL' where id=9; -update noar ti set b0='QB7BP2WL' where id=9; -update noar tt set b1='JX' where id=9; -update noar ti set b1='JX' where id=9; -update noar tt set b2='XY87SOQ4NONQ3X7' where id=9; -update noar ti set b2='XY87SOQ4NONQ3X7' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - b0 text null, - b1 mediumblob null, - b2 mediumblob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set b0='NS7MMJRW5IIECP3GD1J22IKZOB' where id=1; -update noar ti set b0='NS7MMJRW5IIECP3GD1J22IKZOB' where id=1; -update noar tt set b1='N4J1BJJR7X34JAL970LXJYFYHGR' where id=1; -update noar ti set b1='N4J1BJJR7X34JAL970LXJYFYHGR' where id=1; -update noar tt set b2='AAGYHPJ3E0FQTZO' where id=1; -update noar ti set b2='AAGYHPJ3E0FQTZO' where id=1; -update noar tt set b0='UX3O5GNNSPL6TWHX85' where id=2; -update noar ti set b0='UX3O5GNNSPL6TWHX85' where id=2; -update noar tt set b1='B8XLIKSYCBB9BLG8FYV20N1WKEG6HWN' where id=2; -update noar ti set b1='B8XLIKSYCBB9BLG8FYV20N1WKEG6HWN' where id=2; -update noar tt set b2='BX3WLY05L16NKO2YU3K8' where id=2; -update noar ti set b2='BX3WLY05L16NKO2YU3K8' where id=2; -update noar tt set b0='VSZIM8W2A1' where id=3; -update noar ti set b0='VSZIM8W2A1' where id=3; -update noar tt set b1='FK37F7FG9OHDZTDW' where id=3; -update noar ti set b1='FK37F7FG9OHDZTDW' where id=3; -update noar tt set b2='NW2XMFHPL4PX1LOKVQ00V5JZNOTU' where id=3; -update noar ti set b2='NW2XMFHPL4PX1LOKVQ00V5JZNOTU' where id=3; -update noar tt set b0='YYWG58MPQKES63' where id=4; -update noar ti set b0='YYWG58MPQKES63' where id=4; -update noar tt set b1='W4CQ9KMF' where id=4; -update noar ti set b1='W4CQ9KMF' where id=4; -update noar tt set b2='EQDCYJ7AJ15D9' where id=4; -update noar ti set b2='EQDCYJ7AJ15D9' where id=4; -update noar tt set b0='K' where id=5; -update noar ti set b0='K' where id=5; -update noar tt set b1='I3ITBINECVO' where id=5; -update noar ti set b1='I3ITBINECVO' where id=5; -update noar tt set b2='Y006C4KR03U9' where id=5; -update noar ti set b2='Y006C4KR03U9' where id=5; -update noar tt set b0='DAQI8IUSWQ' where id=6; -update noar ti set b0='DAQI8IUSWQ' where id=6; -update noar tt set b1='Q4ERIJ' where id=6; -update noar ti set b1='Q4ERIJ' where id=6; -update noar tt set b2='69ALED3PKX2Z2UWZBE0WFZ' where id=6; -update noar ti set b2='69ALED3PKX2Z2UWZBE0WFZ' where id=6; -update noar tt set b0='5UUYI36GIYQCQJT5A6FGD62R9OD71ASC' where id=7; -update noar ti set b0='5UUYI36GIYQCQJT5A6FGD62R9OD71ASC' where id=7; -update noar tt set b1='MLM1KTXNMJNQ4WORGUP3J0DL0' where id=7; -update noar ti set b1='MLM1KTXNMJNQ4WORGUP3J0DL0' where id=7; -update noar tt set b2='XBC8HFTAQ7LF5O2YP6E' where id=7; -update noar ti set b2='XBC8HFTAQ7LF5O2YP6E' where id=7; -update noar tt set b0='KBKZN58GN4Q' where id=8; -update noar ti set b0='KBKZN58GN4Q' where id=8; -update noar tt set b1='Z79TSD2SZ29DJ' where id=8; -update noar ti set b1='Z79TSD2SZ29DJ' where id=8; -update noar tt set b2='Q1IKFP' where id=8; -update noar ti set b2='Q1IKFP' where id=8; -update noar tt set b0='0A1YV' where id=9; -update noar ti set b0='0A1YV' where id=9; -update noar tt set b1='VA8N2UFZPHUOSXDY40W2TJ3S' where id=9; -update noar ti set b1='VA8N2UFZPHUOSXDY40W2TJ3S' where id=9; -update noar tt set b2='JUPWBP15V' where id=9; -update noar ti set b2='JUPWBP15V' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - b0 text not null, - b1 mediumblob not null, - b2 mediumblob not null -) engine=tokudb; -insert into tt values (1,'','',''); -insert into tt values (2,'','',''); -insert into tt values (3,'','',''); -insert into tt values (4,'','',''); -insert into tt values (5,'','',''); -insert into tt values (6,'','',''); -insert into tt values (7,'','',''); -insert into tt values (8,'','',''); -insert into tt values (9,'','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set b0='B42YXTJ11558L3SS2A755' where id=1; -update noar ti set b0='B42YXTJ11558L3SS2A755' where id=1; -update noar tt set b1='6URJO63N2UCB8SV' where id=1; -update noar ti set b1='6URJO63N2UCB8SV' where id=1; -update noar tt set b2='7ZXAW9LETGZO323WWWL' where id=1; -update noar ti set b2='7ZXAW9LETGZO323WWWL' where id=1; -update noar tt set b0='9C61BPXPEER0VS2ZM51IRC4TVY83RJ8' where id=2; -update noar ti set b0='9C61BPXPEER0VS2ZM51IRC4TVY83RJ8' where id=2; -update noar tt set b1='DSZYS96XN' where id=2; -update noar ti set b1='DSZYS96XN' where id=2; -update noar tt set b2='5EO8S394DJRP' where id=2; -update noar ti set b2='5EO8S394DJRP' where id=2; -update noar tt set b0='12V4R9NGD682JLSLFY' where id=3; -update noar ti set b0='12V4R9NGD682JLSLFY' where id=3; -update noar tt set b1='IAO7RKWYU95SIF8C3' where id=3; -update noar ti set b1='IAO7RKWYU95SIF8C3' where id=3; -update noar tt set b2='SEBEDH6FAHGS6WIJTYAEUXSUQEPOR' where id=3; -update noar ti set b2='SEBEDH6FAHGS6WIJTYAEUXSUQEPOR' where id=3; -update noar tt set b0='6S04A0WC4P8TZN3T1EN9J4M' where id=4; -update noar ti set b0='6S04A0WC4P8TZN3T1EN9J4M' where id=4; -update noar tt set b1='EQ16VY3H89ZC4ADZFN6DSSB2FC9TK' where id=4; -update noar ti set b1='EQ16VY3H89ZC4ADZFN6DSSB2FC9TK' where id=4; -update noar tt set b2='3MSE9TBIVEXULDHAZZDBPYJM0QO' where id=4; -update noar ti set b2='3MSE9TBIVEXULDHAZZDBPYJM0QO' where id=4; -update noar tt set b0='1SDS1DXSA5' where id=5; -update noar ti set b0='1SDS1DXSA5' where id=5; -update noar tt set b1='DYU26KP9DJC0FMCOI3' where id=5; -update noar ti set b1='DYU26KP9DJC0FMCOI3' where id=5; -update noar tt set b2='U51619EWS8X5ARJSCQQZSOUZ377IR7L' where id=5; -update noar ti set b2='U51619EWS8X5ARJSCQQZSOUZ377IR7L' where id=5; -update noar tt set b0='FB6T8RZMCACBCEHI22X' where id=6; -update noar ti set b0='FB6T8RZMCACBCEHI22X' where id=6; -update noar tt set b1='ZI4' where id=6; -update noar ti set b1='ZI4' where id=6; -update noar tt set b2='6UMZPCXPEFLDM2RN5OFOQ' where id=6; -update noar ti set b2='6UMZPCXPEFLDM2RN5OFOQ' where id=6; -update noar tt set b0='2SOF3TELW33KHF63BL' where id=7; -update noar ti set b0='2SOF3TELW33KHF63BL' where id=7; -update noar tt set b1='7U' where id=7; -update noar ti set b1='7U' where id=7; -update noar tt set b2='1EYMATWT9BW6Z7X5WE3' where id=7; -update noar ti set b2='1EYMATWT9BW6Z7X5WE3' where id=7; -update noar tt set b0='7Z443FLV86ZH2501EOKGXXZ' where id=8; -update noar ti set b0='7Z443FLV86ZH2501EOKGXXZ' where id=8; -update noar tt set b1='PLV57' where id=8; -update noar ti set b1='PLV57' where id=8; -update noar tt set b2='KWB04L' where id=8; -update noar ti set b2='KWB04L' where id=8; -update noar tt set b0='EAFY9MI42W52M' where id=9; -update noar ti set b0='EAFY9MI42W52M' where id=9; -update noar tt set b1='1Y1C5C1U0MNW9XV3FKZ1Q23' where id=9; -update noar ti set b1='1Y1C5C1U0MNW9XV3FKZ1Q23' where id=9; -update noar tt set b2='2C8XFM53DUH' where id=9; -update noar ti set b2='2C8XFM53DUH' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - b0 text null, - b1 mediumblob null, - b2 longblob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set b0='Q1ZTCN9' where id=1; -update noar ti set b0='Q1ZTCN9' where id=1; -update noar tt set b1='VUIEEFQRXCE8689D87D8SLJ5' where id=1; -update noar ti set b1='VUIEEFQRXCE8689D87D8SLJ5' where id=1; -update noar tt set b2='Q4MIDSUO6EY337N1B3O1' where id=1; -update noar ti set b2='Q4MIDSUO6EY337N1B3O1' where id=1; -update noar tt set b0='Y1CZXZIJJBSJ79X' where id=2; -update noar ti set b0='Y1CZXZIJJBSJ79X' where id=2; -update noar tt set b1='PYOBZ2F212PX6O0M2E' where id=2; -update noar ti set b1='PYOBZ2F212PX6O0M2E' where id=2; -update noar tt set b2='2AAZYS99XL83EYF9Z4' where id=2; -update noar ti set b2='2AAZYS99XL83EYF9Z4' where id=2; -update noar tt set b0='HMDFCWFA8DRTJRZC8MA3' where id=3; -update noar ti set b0='HMDFCWFA8DRTJRZC8MA3' where id=3; -update noar tt set b1='267XDLG5AHJQ6HFC0INFC0HYWU1A2CRU' where id=3; -update noar ti set b1='267XDLG5AHJQ6HFC0INFC0HYWU1A2CRU' where id=3; -update noar tt set b2='J3AE3V7TPOVCDG37T6NB' where id=3; -update noar ti set b2='J3AE3V7TPOVCDG37T6NB' where id=3; -update noar tt set b0='FO20IT04ORHJMM12COG088YT' where id=4; -update noar ti set b0='FO20IT04ORHJMM12COG088YT' where id=4; -update noar tt set b1='6SNE0H24TV2CTJDG' where id=4; -update noar ti set b1='6SNE0H24TV2CTJDG' where id=4; -update noar tt set b2='ZIS2ET5324LHUGQ3VDE8G' where id=4; -update noar ti set b2='ZIS2ET5324LHUGQ3VDE8G' where id=4; -update noar tt set b0='V5N6AZLRRE3TV' where id=5; -update noar ti set b0='V5N6AZLRRE3TV' where id=5; -update noar tt set b1='EELN' where id=5; -update noar ti set b1='EELN' where id=5; -update noar tt set b2='67HZJK73HWS6KSYZK96' where id=5; -update noar ti set b2='67HZJK73HWS6KSYZK96' where id=5; -update noar tt set b0='UX4ANK1BE69TVFB13H9F1AEZRX5' where id=6; -update noar ti set b0='UX4ANK1BE69TVFB13H9F1AEZRX5' where id=6; -update noar tt set b1='OH2I1R8CL4EG94SO2LKNJUDVTFY' where id=6; -update noar ti set b1='OH2I1R8CL4EG94SO2LKNJUDVTFY' where id=6; -update noar tt set b2='0Q2EGS9T9C6FZ973KPBN56GVZK' where id=6; -update noar ti set b2='0Q2EGS9T9C6FZ973KPBN56GVZK' where id=6; -update noar tt set b0='JB53U7R6' where id=7; -update noar ti set b0='JB53U7R6' where id=7; -update noar tt set b1='T77JK24HG6L5GHRJU' where id=7; -update noar ti set b1='T77JK24HG6L5GHRJU' where id=7; -update noar tt set b2='0YFM97NAKHEB22G4T13857O58WHOCI' where id=7; -update noar ti set b2='0YFM97NAKHEB22G4T13857O58WHOCI' where id=7; -update noar tt set b0='4SECL86MXMMEP7KA12TP7' where id=8; -update noar ti set b0='4SECL86MXMMEP7KA12TP7' where id=8; -update noar tt set b1='AY6CPI4POOCV2H399OCF6V' where id=8; -update noar ti set b1='AY6CPI4POOCV2H399OCF6V' where id=8; -update noar tt set b2='TR' where id=8; -update noar ti set b2='TR' where id=8; -update noar tt set b0='MCU578SYBED9RSWNCRO4264' where id=9; -update noar ti set b0='MCU578SYBED9RSWNCRO4264' where id=9; -update noar tt set b1='9V0QU7VILY7GVPVKQFYJ8J4144RV2D' where id=9; -update noar ti set b1='9V0QU7VILY7GVPVKQFYJ8J4144RV2D' where id=9; -update noar tt set b2='6E9Q9M8Q8WQAFR0W1KQZF9D4L8' where id=9; -update noar ti set b2='6E9Q9M8Q8WQAFR0W1KQZF9D4L8' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - b0 text not null, - b1 mediumblob not null, - b2 longblob not null -) engine=tokudb; -insert into tt values (1,'','',''); -insert into tt values (2,'','',''); -insert into tt values (3,'','',''); -insert into tt values (4,'','',''); -insert into tt values (5,'','',''); -insert into tt values (6,'','',''); -insert into tt values (7,'','',''); -insert into tt values (8,'','',''); -insert into tt values (9,'','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set b0='PTLIFNY16MRL2495OL31JBA6EUFZQ' where id=1; -update noar ti set b0='PTLIFNY16MRL2495OL31JBA6EUFZQ' where id=1; -update noar tt set b1='3ICDB1LDOJMWSHUKC2J' where id=1; -update noar ti set b1='3ICDB1LDOJMWSHUKC2J' where id=1; -update noar tt set b2='FUTAZ' where id=1; -update noar ti set b2='FUTAZ' where id=1; -update noar tt set b0='RW4661J70687XJB7NU50WY56' where id=2; -update noar ti set b0='RW4661J70687XJB7NU50WY56' where id=2; -update noar tt set b1='KNAFYUXHDXJ750YHU1' where id=2; -update noar ti set b1='KNAFYUXHDXJ750YHU1' where id=2; -update noar tt set b2='HHXFF9P9JSZ3VO' where id=2; -update noar ti set b2='HHXFF9P9JSZ3VO' where id=2; -update noar tt set b0='LCW646' where id=3; -update noar ti set b0='LCW646' where id=3; -update noar tt set b1='4CDWTYITSHA9Z' where id=3; -update noar ti set b1='4CDWTYITSHA9Z' where id=3; -update noar tt set b2='237R8Y' where id=3; -update noar ti set b2='237R8Y' where id=3; -update noar tt set b0='QSYCQ' where id=4; -update noar ti set b0='QSYCQ' where id=4; -update noar tt set b1='H9E9KGGOBFVG' where id=4; -update noar ti set b1='H9E9KGGOBFVG' where id=4; -update noar tt set b2='AF01ZHN0GRUFD4CNNJ1431' where id=4; -update noar ti set b2='AF01ZHN0GRUFD4CNNJ1431' where id=4; -update noar tt set b0='5KI19YN7HZ32ZR259' where id=5; -update noar ti set b0='5KI19YN7HZ32ZR259' where id=5; -update noar tt set b1='ESYEW3U9G' where id=5; -update noar ti set b1='ESYEW3U9G' where id=5; -update noar tt set b2='41RLKV' where id=5; -update noar ti set b2='41RLKV' where id=5; -update noar tt set b0='B8EOH268AMN' where id=6; -update noar ti set b0='B8EOH268AMN' where id=6; -update noar tt set b1='QF2RQF8Q6704HRSEYNQJH441YFNF0' where id=6; -update noar ti set b1='QF2RQF8Q6704HRSEYNQJH441YFNF0' where id=6; -update noar tt set b2='CI8NO7V' where id=6; -update noar ti set b2='CI8NO7V' where id=6; -update noar tt set b0='8JUE0UOR0ECQ90J6ZTE097CJXPA' where id=7; -update noar ti set b0='8JUE0UOR0ECQ90J6ZTE097CJXPA' where id=7; -update noar tt set b1='FG6FFBVYM9A' where id=7; -update noar ti set b1='FG6FFBVYM9A' where id=7; -update noar tt set b2='V1ZZPJ73LZC0W76H9XF' where id=7; -update noar ti set b2='V1ZZPJ73LZC0W76H9XF' where id=7; -update noar tt set b0='G9CGK3PV9FABT7VG5NN1219LL' where id=8; -update noar ti set b0='G9CGK3PV9FABT7VG5NN1219LL' where id=8; -update noar tt set b1='Q3ZH5Q8J2ORJZ' where id=8; -update noar ti set b1='Q3ZH5Q8J2ORJZ' where id=8; -update noar tt set b2='FVQI3MYISE9ESOYSB' where id=8; -update noar ti set b2='FVQI3MYISE9ESOYSB' where id=8; -update noar tt set b0='4HHTTK' where id=9; -update noar ti set b0='4HHTTK' where id=9; -update noar tt set b1='5VT67S0S7YC5CHQ9VJRE' where id=9; -update noar ti set b1='5VT67S0S7YC5CHQ9VJRE' where id=9; -update noar tt set b2='5KWG061WWAGNL521A' where id=9; -update noar ti set b2='5KWG061WWAGNL521A' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - b0 text null, - b1 mediumblob null, - b2 text null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set b0='F1KPE' where id=1; -update noar ti set b0='F1KPE' where id=1; -update noar tt set b1='UZKD4TK45MYMKZPQ9F6I' where id=1; -update noar ti set b1='UZKD4TK45MYMKZPQ9F6I' where id=1; -update noar tt set b2='IQPWGKQME4SRRB4NQRI45ZTZJE' where id=1; -update noar ti set b2='IQPWGKQME4SRRB4NQRI45ZTZJE' where id=1; -update noar tt set b0='3YXNF7LEJ9ULZ2A' where id=2; -update noar ti set b0='3YXNF7LEJ9ULZ2A' where id=2; -update noar tt set b1='0O4I29IFUTX5GOEL' where id=2; -update noar ti set b1='0O4I29IFUTX5GOEL' where id=2; -update noar tt set b2='K60S8RLS8C86VU96Y9XAC05O55T' where id=2; -update noar ti set b2='K60S8RLS8C86VU96Y9XAC05O55T' where id=2; -update noar tt set b0='86TSE9D6M2' where id=3; -update noar ti set b0='86TSE9D6M2' where id=3; -update noar tt set b1='QY8XQICM17' where id=3; -update noar ti set b1='QY8XQICM17' where id=3; -update noar tt set b2='S3YIF43WK8LV617A7YY7LZ9J' where id=3; -update noar ti set b2='S3YIF43WK8LV617A7YY7LZ9J' where id=3; -update noar tt set b0='9VWXP37V' where id=4; -update noar ti set b0='9VWXP37V' where id=4; -update noar tt set b1='JX6384SVV3KLY9HMWVE8XQKX892ZZ' where id=4; -update noar ti set b1='JX6384SVV3KLY9HMWVE8XQKX892ZZ' where id=4; -update noar tt set b2='JR6JIHS7ZGPZTML4H9OPFYYW' where id=4; -update noar ti set b2='JR6JIHS7ZGPZTML4H9OPFYYW' where id=4; -update noar tt set b0='9PMJ81BFSRW07WT6UG0ICGWNV2Q1QX5' where id=5; -update noar ti set b0='9PMJ81BFSRW07WT6UG0ICGWNV2Q1QX5' where id=5; -update noar tt set b1='9ACHG9FTHCVYX0ICE4NHW1L' where id=5; -update noar ti set b1='9ACHG9FTHCVYX0ICE4NHW1L' where id=5; -update noar tt set b2='5' where id=5; -update noar ti set b2='5' where id=5; -update noar tt set b0='YF6GZE6QL4BXXXSOK9B1' where id=6; -update noar ti set b0='YF6GZE6QL4BXXXSOK9B1' where id=6; -update noar tt set b1='X8' where id=6; -update noar ti set b1='X8' where id=6; -update noar tt set b2='2I0NDLS8' where id=6; -update noar ti set b2='2I0NDLS8' where id=6; -update noar tt set b0='38CVZ57NIZOWZ7WK6' where id=7; -update noar ti set b0='38CVZ57NIZOWZ7WK6' where id=7; -update noar tt set b1='4AS06GZAUQJ0' where id=7; -update noar ti set b1='4AS06GZAUQJ0' where id=7; -update noar tt set b2='K3TME' where id=7; -update noar ti set b2='K3TME' where id=7; -update noar tt set b0='JP9O7DK2NP7ZEY' where id=8; -update noar ti set b0='JP9O7DK2NP7ZEY' where id=8; -update noar tt set b1='REZUKM5Z4X28OOLKJ2PKDIGGYC2D' where id=8; -update noar ti set b1='REZUKM5Z4X28OOLKJ2PKDIGGYC2D' where id=8; -update noar tt set b2='CNHLKRIFD2Q0M5FVTEOLC09IPDEH' where id=8; -update noar ti set b2='CNHLKRIFD2Q0M5FVTEOLC09IPDEH' where id=8; -update noar tt set b0='TENQM314ZB7PL5XIX' where id=9; -update noar ti set b0='TENQM314ZB7PL5XIX' where id=9; -update noar tt set b1='BKR3OVXX64UUIWWF' where id=9; -update noar ti set b1='BKR3OVXX64UUIWWF' where id=9; -update noar tt set b2='U' where id=9; -update noar ti set b2='U' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - b0 text not null, - b1 mediumblob not null, - b2 text not null -) engine=tokudb; -insert into tt values (1,'','',''); -insert into tt values (2,'','',''); -insert into tt values (3,'','',''); -insert into tt values (4,'','',''); -insert into tt values (5,'','',''); -insert into tt values (6,'','',''); -insert into tt values (7,'','',''); -insert into tt values (8,'','',''); -insert into tt values (9,'','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set b0='FZLG1JJ6REQTI4C6FIFBIC8NVVSCG4' where id=1; -update noar ti set b0='FZLG1JJ6REQTI4C6FIFBIC8NVVSCG4' where id=1; -update noar tt set b1='E5EYERVZOMPYYHN5XOUBF' where id=1; -update noar ti set b1='E5EYERVZOMPYYHN5XOUBF' where id=1; -update noar tt set b2='QFGWX7ZONIZW17M7QF9KMKLTNAH' where id=1; -update noar ti set b2='QFGWX7ZONIZW17M7QF9KMKLTNAH' where id=1; -update noar tt set b0='QD4H9HIP95Y4' where id=2; -update noar ti set b0='QD4H9HIP95Y4' where id=2; -update noar tt set b1='4TPXNUPI517KMFAA7T8P03MHU' where id=2; -update noar ti set b1='4TPXNUPI517KMFAA7T8P03MHU' where id=2; -update noar tt set b2='9MCF0LPM66GFQU49DV4F' where id=2; -update noar ti set b2='9MCF0LPM66GFQU49DV4F' where id=2; -update noar tt set b0='ODT' where id=3; -update noar ti set b0='ODT' where id=3; -update noar tt set b1='C1D0P0076RHFD9CDVQ9II0L1OF3LL' where id=3; -update noar ti set b1='C1D0P0076RHFD9CDVQ9II0L1OF3LL' where id=3; -update noar tt set b2='JMYFWQWMNCDZYEP4ZNW50F895OW' where id=3; -update noar ti set b2='JMYFWQWMNCDZYEP4ZNW50F895OW' where id=3; -update noar tt set b0='PAIPB3NQN' where id=4; -update noar ti set b0='PAIPB3NQN' where id=4; -update noar tt set b1='EC0NJU5USYIWDBXYZFPQQGKIR8' where id=4; -update noar ti set b1='EC0NJU5USYIWDBXYZFPQQGKIR8' where id=4; -update noar tt set b2='ZAPDPQR0GWVPQ7JOZBYF' where id=4; -update noar ti set b2='ZAPDPQR0GWVPQ7JOZBYF' where id=4; -update noar tt set b0='ZVG0E2G4YSFWXXI48FIOYYQ1JBBSWK' where id=5; -update noar ti set b0='ZVG0E2G4YSFWXXI48FIOYYQ1JBBSWK' where id=5; -update noar tt set b1='E1SM6MHM04' where id=5; -update noar ti set b1='E1SM6MHM04' where id=5; -update noar tt set b2='Q0YZ1WU25RVIF0SHOR8P2OXIN' where id=5; -update noar ti set b2='Q0YZ1WU25RVIF0SHOR8P2OXIN' where id=5; -update noar tt set b0='WFYU' where id=6; -update noar ti set b0='WFYU' where id=6; -update noar tt set b1='WNV76YAIUJN0ICYEXVQUQKXN7U6D' where id=6; -update noar ti set b1='WNV76YAIUJN0ICYEXVQUQKXN7U6D' where id=6; -update noar tt set b2='0R3B34FEFCZ4UN' where id=6; -update noar ti set b2='0R3B34FEFCZ4UN' where id=6; -update noar tt set b0='J2ZGLJJG8IUP7UHK4219VRVB9MM' where id=7; -update noar ti set b0='J2ZGLJJG8IUP7UHK4219VRVB9MM' where id=7; -update noar tt set b1='T623353FCRJGLPU676D8WALK6Z23VVQL' where id=7; -update noar ti set b1='T623353FCRJGLPU676D8WALK6Z23VVQL' where id=7; -update noar tt set b2='DZ' where id=7; -update noar ti set b2='DZ' where id=7; -update noar tt set b0='BY5HHOCT3093NKT' where id=8; -update noar ti set b0='BY5HHOCT3093NKT' where id=8; -update noar tt set b1='XBSIJGQJWZK7E0X1Z7' where id=8; -update noar ti set b1='XBSIJGQJWZK7E0X1Z7' where id=8; -update noar tt set b2='IQWMK3YBNTHPCOC9SE3LKQCOFZH' where id=8; -update noar ti set b2='IQWMK3YBNTHPCOC9SE3LKQCOFZH' where id=8; -update noar tt set b0='1YNRS1GX9Y2DHX0XB5BP29IULIYXH87Z' where id=9; -update noar ti set b0='1YNRS1GX9Y2DHX0XB5BP29IULIYXH87Z' where id=9; -update noar tt set b1='FA8PCZAUHHN847DPVD20V' where id=9; -update noar ti set b1='FA8PCZAUHHN847DPVD20V' where id=9; -update noar tt set b2='7HPTYCMEJDA8ACGI4AUYXD89XAESI' where id=9; -update noar ti set b2='7HPTYCMEJDA8ACGI4AUYXD89XAESI' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - b0 text null, - b1 longblob null, - b2 tinyblob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set b0='UUGMOZ1P3' where id=1; -update noar ti set b0='UUGMOZ1P3' where id=1; -update noar tt set b1='PBWC9AMOAT0NJTZRFDHAYJI9YNBYOPXW' where id=1; -update noar ti set b1='PBWC9AMOAT0NJTZRFDHAYJI9YNBYOPXW' where id=1; -update noar tt set b2='8F6X32CU7TLEJYCKSUWR' where id=1; -update noar ti set b2='8F6X32CU7TLEJYCKSUWR' where id=1; -update noar tt set b0='SNC6LN383ACJ4K0Y1NJ' where id=2; -update noar ti set b0='SNC6LN383ACJ4K0Y1NJ' where id=2; -update noar tt set b1='0HJPYQPGGOO40O26ZQK438L1LB0' where id=2; -update noar ti set b1='0HJPYQPGGOO40O26ZQK438L1LB0' where id=2; -update noar tt set b2='EAYEUB079Q6ULB' where id=2; -update noar ti set b2='EAYEUB079Q6ULB' where id=2; -update noar tt set b0='FBK0CKXVMY0NCQM7' where id=3; -update noar ti set b0='FBK0CKXVMY0NCQM7' where id=3; -update noar tt set b1='TM' where id=3; -update noar ti set b1='TM' where id=3; -update noar tt set b2='YL22GZAQSVO2JASQCI3FZX8HPSI' where id=3; -update noar ti set b2='YL22GZAQSVO2JASQCI3FZX8HPSI' where id=3; -update noar tt set b0='9QR2QL9QQR6BF' where id=4; -update noar ti set b0='9QR2QL9QQR6BF' where id=4; -update noar tt set b1='2F4LIFNIHGDSUSTINS0WUQMIV' where id=4; -update noar ti set b1='2F4LIFNIHGDSUSTINS0WUQMIV' where id=4; -update noar tt set b2='K4' where id=4; -update noar ti set b2='K4' where id=4; -update noar tt set b0='GDCE31TWJT' where id=5; -update noar ti set b0='GDCE31TWJT' where id=5; -update noar tt set b1='71Z3FE5XK6L9' where id=5; -update noar ti set b1='71Z3FE5XK6L9' where id=5; -update noar tt set b2='DBX91DP6TO' where id=5; -update noar ti set b2='DBX91DP6TO' where id=5; -update noar tt set b0='WO06OFL' where id=6; -update noar ti set b0='WO06OFL' where id=6; -update noar tt set b1='34' where id=6; -update noar ti set b1='34' where id=6; -update noar tt set b2='JNH9' where id=6; -update noar ti set b2='JNH9' where id=6; -update noar tt set b0='Y1Q2QPCMLDXGVVKEL026QTVCZMEE' where id=7; -update noar ti set b0='Y1Q2QPCMLDXGVVKEL026QTVCZMEE' where id=7; -update noar tt set b1='RI1RYZG3L2GFW18Z03HOYC5' where id=7; -update noar ti set b1='RI1RYZG3L2GFW18Z03HOYC5' where id=7; -update noar tt set b2='10OCM08ETI7GHGB3FA' where id=7; -update noar ti set b2='10OCM08ETI7GHGB3FA' where id=7; -update noar tt set b0='LU6L0URZ9S3OQFK24YINC1' where id=8; -update noar ti set b0='LU6L0URZ9S3OQFK24YINC1' where id=8; -update noar tt set b1='QX7RVVV' where id=8; -update noar ti set b1='QX7RVVV' where id=8; -update noar tt set b2='KX0MPDVWDG3MX7NLVTI5SQ4' where id=8; -update noar ti set b2='KX0MPDVWDG3MX7NLVTI5SQ4' where id=8; -update noar tt set b0='036' where id=9; -update noar ti set b0='036' where id=9; -update noar tt set b1='0W0UZUP2HSA22U0IAS5' where id=9; -update noar ti set b1='0W0UZUP2HSA22U0IAS5' where id=9; -update noar tt set b2='OZ0F' where id=9; -update noar ti set b2='OZ0F' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - b0 text not null, - b1 longblob not null, - b2 tinyblob not null -) engine=tokudb; -insert into tt values (1,'','',''); -insert into tt values (2,'','',''); -insert into tt values (3,'','',''); -insert into tt values (4,'','',''); -insert into tt values (5,'','',''); -insert into tt values (6,'','',''); -insert into tt values (7,'','',''); -insert into tt values (8,'','',''); -insert into tt values (9,'','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set b0='FG5GFLPIXT02' where id=1; -update noar ti set b0='FG5GFLPIXT02' where id=1; -update noar tt set b1='KYGJ4KO2M5K9699II6AGHI5T' where id=1; -update noar ti set b1='KYGJ4KO2M5K9699II6AGHI5T' where id=1; -update noar tt set b2='TJS03JSU2' where id=1; -update noar ti set b2='TJS03JSU2' where id=1; -update noar tt set b0='GSB' where id=2; -update noar ti set b0='GSB' where id=2; -update noar tt set b1='YO' where id=2; -update noar ti set b1='YO' where id=2; -update noar tt set b2='P99PYJZHXZFHQBDUQX' where id=2; -update noar ti set b2='P99PYJZHXZFHQBDUQX' where id=2; -update noar tt set b0='QQTGTYCEZHO7DS5Z0BT0HI' where id=3; -update noar ti set b0='QQTGTYCEZHO7DS5Z0BT0HI' where id=3; -update noar tt set b1='O42TZUJVKA7YEHVGYZ9' where id=3; -update noar ti set b1='O42TZUJVKA7YEHVGYZ9' where id=3; -update noar tt set b2='COKYO8BHKV5UBBOFBD3G7' where id=3; -update noar ti set b2='COKYO8BHKV5UBBOFBD3G7' where id=3; -update noar tt set b0='YTS9FYDEO87B599JY7V5JMXE' where id=4; -update noar ti set b0='YTS9FYDEO87B599JY7V5JMXE' where id=4; -update noar tt set b1='H14MBK1' where id=4; -update noar ti set b1='H14MBK1' where id=4; -update noar tt set b2='J1UUIK1W5JIETHQZ4HDRZWA' where id=4; -update noar ti set b2='J1UUIK1W5JIETHQZ4HDRZWA' where id=4; -update noar tt set b0='WW6S001TL1QV' where id=5; -update noar ti set b0='WW6S001TL1QV' where id=5; -update noar tt set b1='3SL' where id=5; -update noar ti set b1='3SL' where id=5; -update noar tt set b2='2350D0PGAD' where id=5; -update noar ti set b2='2350D0PGAD' where id=5; -update noar tt set b0='PY7KV6DLP' where id=6; -update noar ti set b0='PY7KV6DLP' where id=6; -update noar tt set b1='CJ5W6JZF203YL2E1JMBZKA483VH3JRI' where id=6; -update noar ti set b1='CJ5W6JZF203YL2E1JMBZKA483VH3JRI' where id=6; -update noar tt set b2='QGXI0Q8YJ' where id=6; -update noar ti set b2='QGXI0Q8YJ' where id=6; -update noar tt set b0='BU6WFNRGHPBWILUDPHBSIHRDI2ZGU6I' where id=7; -update noar ti set b0='BU6WFNRGHPBWILUDPHBSIHRDI2ZGU6I' where id=7; -update noar tt set b1='IVKCI5SIWEMS6Z677N0B1DME8JJ25L2I' where id=7; -update noar ti set b1='IVKCI5SIWEMS6Z677N0B1DME8JJ25L2I' where id=7; -update noar tt set b2='U8' where id=7; -update noar ti set b2='U8' where id=7; -update noar tt set b0='92PT815NVI59ES' where id=8; -update noar ti set b0='92PT815NVI59ES' where id=8; -update noar tt set b1='U3E9DZ4H37O8KYNPI' where id=8; -update noar ti set b1='U3E9DZ4H37O8KYNPI' where id=8; -update noar tt set b2='M1P1AL8RI5GT28OMG38PVPAKGJM8OY' where id=8; -update noar ti set b2='M1P1AL8RI5GT28OMG38PVPAKGJM8OY' where id=8; -update noar tt set b0='NJ97NFK6QUZ' where id=9; -update noar ti set b0='NJ97NFK6QUZ' where id=9; -update noar tt set b1='9N1MYO' where id=9; -update noar ti set b1='9N1MYO' where id=9; -update noar tt set b2='BDMG7MDSYCCHVJY2TEI7' where id=9; -update noar ti set b2='BDMG7MDSYCCHVJY2TEI7' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - b0 text null, - b1 longblob null, - b2 blob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set b0='EDIY6' where id=1; -update noar ti set b0='EDIY6' where id=1; -update noar tt set b1='58TPY5G' where id=1; -update noar ti set b1='58TPY5G' where id=1; -update noar tt set b2='8' where id=1; -update noar ti set b2='8' where id=1; -update noar tt set b0='TED6CUCZ2YTLEWABEODOHKPY' where id=2; -update noar ti set b0='TED6CUCZ2YTLEWABEODOHKPY' where id=2; -update noar tt set b1='MFNK' where id=2; -update noar ti set b1='MFNK' where id=2; -update noar tt set b2='CP2P45YB5RDFB2EKL4836' where id=2; -update noar ti set b2='CP2P45YB5RDFB2EKL4836' where id=2; -update noar tt set b0='TBQ9QWAZE2E26H3185DTTU2FCX' where id=3; -update noar ti set b0='TBQ9QWAZE2E26H3185DTTU2FCX' where id=3; -update noar tt set b1='8X44NE7RGRDRF4BCBZE3HPZZGLG9ZP9' where id=3; -update noar ti set b1='8X44NE7RGRDRF4BCBZE3HPZZGLG9ZP9' where id=3; -update noar tt set b2='4B9HKB4FOT05OTXEUVYTKD2YXQK' where id=3; -update noar ti set b2='4B9HKB4FOT05OTXEUVYTKD2YXQK' where id=3; -update noar tt set b0='P1EGDBQWU8Y98WCZ74W' where id=4; -update noar ti set b0='P1EGDBQWU8Y98WCZ74W' where id=4; -update noar tt set b1='X' where id=4; -update noar ti set b1='X' where id=4; -update noar tt set b2='K33PV3VRODEC3AWYU4LX3' where id=4; -update noar ti set b2='K33PV3VRODEC3AWYU4LX3' where id=4; -update noar tt set b0='AAD3SCXGXZ7KHLELVA' where id=5; -update noar ti set b0='AAD3SCXGXZ7KHLELVA' where id=5; -update noar tt set b1='NFB49OZR7JWU0ONDOJT6H' where id=5; -update noar ti set b1='NFB49OZR7JWU0ONDOJT6H' where id=5; -update noar tt set b2='97FWTMW3O2BQDFJCPAHA7ORR917EI' where id=5; -update noar ti set b2='97FWTMW3O2BQDFJCPAHA7ORR917EI' where id=5; -update noar tt set b0='1MEIX05A06L1KHZB767GB2Y' where id=6; -update noar ti set b0='1MEIX05A06L1KHZB767GB2Y' where id=6; -update noar tt set b1='KYUPVOMHNKWTEBF1' where id=6; -update noar ti set b1='KYUPVOMHNKWTEBF1' where id=6; -update noar tt set b2='GOL' where id=6; -update noar ti set b2='GOL' where id=6; -update noar tt set b0='S991AE337P7VLMOQ' where id=7; -update noar ti set b0='S991AE337P7VLMOQ' where id=7; -update noar tt set b1='26EB8QJTV5KOTXZJDH2N' where id=7; -update noar ti set b1='26EB8QJTV5KOTXZJDH2N' where id=7; -update noar tt set b2='6W8J8R68' where id=7; -update noar ti set b2='6W8J8R68' where id=7; -update noar tt set b0='BO3TGF' where id=8; -update noar ti set b0='BO3TGF' where id=8; -update noar tt set b1='ZUFG02URD9W4WJSFZ6XVR8V1PH1VXONT' where id=8; -update noar ti set b1='ZUFG02URD9W4WJSFZ6XVR8V1PH1VXONT' where id=8; -update noar tt set b2='WCNKT1RP4CZ035P2KRDTQF2A' where id=8; -update noar ti set b2='WCNKT1RP4CZ035P2KRDTQF2A' where id=8; -update noar tt set b0='3RV4SVJNFH5807' where id=9; -update noar ti set b0='3RV4SVJNFH5807' where id=9; -update noar tt set b1='HH0E8QCB9INLB' where id=9; -update noar ti set b1='HH0E8QCB9INLB' where id=9; -update noar tt set b2='9' where id=9; -update noar ti set b2='9' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - b0 text not null, - b1 longblob not null, - b2 blob not null -) engine=tokudb; -insert into tt values (1,'','',''); -insert into tt values (2,'','',''); -insert into tt values (3,'','',''); -insert into tt values (4,'','',''); -insert into tt values (5,'','',''); -insert into tt values (6,'','',''); -insert into tt values (7,'','',''); -insert into tt values (8,'','',''); -insert into tt values (9,'','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set b0='S1BZX1GMU2YND3ET9RJBOP7Q2S' where id=1; -update noar ti set b0='S1BZX1GMU2YND3ET9RJBOP7Q2S' where id=1; -update noar tt set b1='V0K31OUURZTPZO' where id=1; -update noar ti set b1='V0K31OUURZTPZO' where id=1; -update noar tt set b2='4ZZWYX4XPJHEYA88GMBDB5E' where id=1; -update noar ti set b2='4ZZWYX4XPJHEYA88GMBDB5E' where id=1; -update noar tt set b0='UNS8VQ6BTRS7LQRZH0Y' where id=2; -update noar ti set b0='UNS8VQ6BTRS7LQRZH0Y' where id=2; -update noar tt set b1='98H7FEP5HT' where id=2; -update noar ti set b1='98H7FEP5HT' where id=2; -update noar tt set b2='QTPIF0' where id=2; -update noar ti set b2='QTPIF0' where id=2; -update noar tt set b0='I6VATVQRU1VXHUIGYTBKE5' where id=3; -update noar ti set b0='I6VATVQRU1VXHUIGYTBKE5' where id=3; -update noar tt set b1='PYCER' where id=3; -update noar ti set b1='PYCER' where id=3; -update noar tt set b2='7CDT8FFD9OS19F1T2XIYJ' where id=3; -update noar ti set b2='7CDT8FFD9OS19F1T2XIYJ' where id=3; -update noar tt set b0='N0B501K95GPMN51NW' where id=4; -update noar ti set b0='N0B501K95GPMN51NW' where id=4; -update noar tt set b1='YD87UKN4S0' where id=4; -update noar ti set b1='YD87UKN4S0' where id=4; -update noar tt set b2='CZ7L9BHYOTL45P3P5HVCI77PV45R' where id=4; -update noar ti set b2='CZ7L9BHYOTL45P3P5HVCI77PV45R' where id=4; -update noar tt set b0='292MSMHCG9J7W8JV24Q' where id=5; -update noar ti set b0='292MSMHCG9J7W8JV24Q' where id=5; -update noar tt set b1='MWCPOCMY' where id=5; -update noar ti set b1='MWCPOCMY' where id=5; -update noar tt set b2='PG' where id=5; -update noar ti set b2='PG' where id=5; -update noar tt set b0='YBKSVEI6S76HXMT7J' where id=6; -update noar ti set b0='YBKSVEI6S76HXMT7J' where id=6; -update noar tt set b1='ASIL8EPIEP' where id=6; -update noar ti set b1='ASIL8EPIEP' where id=6; -update noar tt set b2='XEFHH7CNNMOYS0FQ4JGIRPZ' where id=6; -update noar ti set b2='XEFHH7CNNMOYS0FQ4JGIRPZ' where id=6; -update noar tt set b0='SVK3OKVD592V3DLJGZWI' where id=7; -update noar ti set b0='SVK3OKVD592V3DLJGZWI' where id=7; -update noar tt set b1='ZDN6T0H31T6U6SPT319GJS8AO6' where id=7; -update noar ti set b1='ZDN6T0H31T6U6SPT319GJS8AO6' where id=7; -update noar tt set b2='PTZED93DMLC9MH25D2H0' where id=7; -update noar ti set b2='PTZED93DMLC9MH25D2H0' where id=7; -update noar tt set b0='Z2257C73FE768H3OGQYRQYJ' where id=8; -update noar ti set b0='Z2257C73FE768H3OGQYRQYJ' where id=8; -update noar tt set b1='JFE2BNXQ6F6QO4F36PV' where id=8; -update noar ti set b1='JFE2BNXQ6F6QO4F36PV' where id=8; -update noar tt set b2='YNYCFK4IEVWDEK2I2NPGYPMDF' where id=8; -update noar ti set b2='YNYCFK4IEVWDEK2I2NPGYPMDF' where id=8; -update noar tt set b0='P7TEHC1E7H' where id=9; -update noar ti set b0='P7TEHC1E7H' where id=9; -update noar tt set b1='GAMS' where id=9; -update noar ti set b1='GAMS' where id=9; -update noar tt set b2='ISQVEH5DWMZA9CFO6TX' where id=9; -update noar ti set b2='ISQVEH5DWMZA9CFO6TX' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - b0 text null, - b1 longblob null, - b2 mediumblob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set b0='VEV9WU59A5QRVQHC' where id=1; -update noar ti set b0='VEV9WU59A5QRVQHC' where id=1; -update noar tt set b1='WV6Q5JD1392NNJMAKJ5' where id=1; -update noar ti set b1='WV6Q5JD1392NNJMAKJ5' where id=1; -update noar tt set b2='WN52ORPN75BUDPO8E1T29' where id=1; -update noar ti set b2='WN52ORPN75BUDPO8E1T29' where id=1; -update noar tt set b0='LNFEZR474NVFI' where id=2; -update noar ti set b0='LNFEZR474NVFI' where id=2; -update noar tt set b1='I4J85LC7Y5C6UAFAYW86GG8M7O0OUTN' where id=2; -update noar ti set b1='I4J85LC7Y5C6UAFAYW86GG8M7O0OUTN' where id=2; -update noar tt set b2='3DZU6' where id=2; -update noar ti set b2='3DZU6' where id=2; -update noar tt set b0='P6XMKGEREU7AA7ROKVRWVTAAN' where id=3; -update noar ti set b0='P6XMKGEREU7AA7ROKVRWVTAAN' where id=3; -update noar tt set b1='U32B4Y8PRCDZV5I3M29ITBE1' where id=3; -update noar ti set b1='U32B4Y8PRCDZV5I3M29ITBE1' where id=3; -update noar tt set b2='K9U3T4I6J3CG' where id=3; -update noar ti set b2='K9U3T4I6J3CG' where id=3; -update noar tt set b0='CR' where id=4; -update noar ti set b0='CR' where id=4; -update noar tt set b1='B38BF9K2P' where id=4; -update noar ti set b1='B38BF9K2P' where id=4; -update noar tt set b2='1IFYUVT2064YST' where id=4; -update noar ti set b2='1IFYUVT2064YST' where id=4; -update noar tt set b0='NT' where id=5; -update noar ti set b0='NT' where id=5; -update noar tt set b1='W9X11NURLXPNWPXN30' where id=5; -update noar ti set b1='W9X11NURLXPNWPXN30' where id=5; -update noar tt set b2='ZWI9O' where id=5; -update noar ti set b2='ZWI9O' where id=5; -update noar tt set b0='RN600UL03M' where id=6; -update noar ti set b0='RN600UL03M' where id=6; -update noar tt set b1='6FQDTUI' where id=6; -update noar ti set b1='6FQDTUI' where id=6; -update noar tt set b2='ITYTZVLJTMG9QY5TG00JVHIZTH' where id=6; -update noar ti set b2='ITYTZVLJTMG9QY5TG00JVHIZTH' where id=6; -update noar tt set b0='H8EKMVY2SZ7JW4YXVRO7Q' where id=7; -update noar ti set b0='H8EKMVY2SZ7JW4YXVRO7Q' where id=7; -update noar tt set b1='R18EEVGLUATFI1JRR2VJE16NVJO' where id=7; -update noar ti set b1='R18EEVGLUATFI1JRR2VJE16NVJO' where id=7; -update noar tt set b2='FG4G' where id=7; -update noar ti set b2='FG4G' where id=7; -update noar tt set b0='5NM000UZDLIF' where id=8; -update noar ti set b0='5NM000UZDLIF' where id=8; -update noar tt set b1='HYXNAJ8QYF' where id=8; -update noar ti set b1='HYXNAJ8QYF' where id=8; -update noar tt set b2='URU0KZ4NK2U' where id=8; -update noar ti set b2='URU0KZ4NK2U' where id=8; -update noar tt set b0='LRQK35RR' where id=9; -update noar ti set b0='LRQK35RR' where id=9; -update noar tt set b1='QACJ71GE6K5Z' where id=9; -update noar ti set b1='QACJ71GE6K5Z' where id=9; -update noar tt set b2='MSTWYPU' where id=9; -update noar ti set b2='MSTWYPU' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - b0 text not null, - b1 longblob not null, - b2 mediumblob not null -) engine=tokudb; -insert into tt values (1,'','',''); -insert into tt values (2,'','',''); -insert into tt values (3,'','',''); -insert into tt values (4,'','',''); -insert into tt values (5,'','',''); -insert into tt values (6,'','',''); -insert into tt values (7,'','',''); -insert into tt values (8,'','',''); -insert into tt values (9,'','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set b0='QDV1DW52NO1MN4WBTEHIA3' where id=1; -update noar ti set b0='QDV1DW52NO1MN4WBTEHIA3' where id=1; -update noar tt set b1='8Y23EXK4M9OJUBIEX1040CN7O0KIHVY' where id=1; -update noar ti set b1='8Y23EXK4M9OJUBIEX1040CN7O0KIHVY' where id=1; -update noar tt set b2='G1ZFVE1R9JMUG' where id=1; -update noar ti set b2='G1ZFVE1R9JMUG' where id=1; -update noar tt set b0='G1VTP8VER9X5XF76IHM' where id=2; -update noar ti set b0='G1VTP8VER9X5XF76IHM' where id=2; -update noar tt set b1='SA73SUE0VCNOE7BFNMD51ECOCHLO' where id=2; -update noar ti set b1='SA73SUE0VCNOE7BFNMD51ECOCHLO' where id=2; -update noar tt set b2='HPKDPWSVCQV' where id=2; -update noar ti set b2='HPKDPWSVCQV' where id=2; -update noar tt set b0='1FYN8LDJ6DNLJ34' where id=3; -update noar ti set b0='1FYN8LDJ6DNLJ34' where id=3; -update noar tt set b1='Z1SZ9WQ7VX' where id=3; -update noar ti set b1='Z1SZ9WQ7VX' where id=3; -update noar tt set b2='C4II1NMNM6JKNDQ5C80TZXKYZT' where id=3; -update noar ti set b2='C4II1NMNM6JKNDQ5C80TZXKYZT' where id=3; -update noar tt set b0='4XFAFZ8EF4QFK6XHLWC6BGH' where id=4; -update noar ti set b0='4XFAFZ8EF4QFK6XHLWC6BGH' where id=4; -update noar tt set b1='EMH5CJKDFI387I7LFB3A9HUQOCWQSJ' where id=4; -update noar ti set b1='EMH5CJKDFI387I7LFB3A9HUQOCWQSJ' where id=4; -update noar tt set b2='0JHKEL816XK' where id=4; -update noar ti set b2='0JHKEL816XK' where id=4; -update noar tt set b0='LPZCG1NJLEJ93YM9YWZ8C' where id=5; -update noar ti set b0='LPZCG1NJLEJ93YM9YWZ8C' where id=5; -update noar tt set b1='4I26Y2BZUYJDWBB5R9OZIBN9E' where id=5; -update noar ti set b1='4I26Y2BZUYJDWBB5R9OZIBN9E' where id=5; -update noar tt set b2='PPJJ82O7WFYXZK4D6LF44EZ' where id=5; -update noar ti set b2='PPJJ82O7WFYXZK4D6LF44EZ' where id=5; -update noar tt set b0='DE3306BZ9H185S' where id=6; -update noar ti set b0='DE3306BZ9H185S' where id=6; -update noar tt set b1='DC6RPIWT22VB9MRF5EL5V' where id=6; -update noar ti set b1='DC6RPIWT22VB9MRF5EL5V' where id=6; -update noar tt set b2='F5VQ' where id=6; -update noar ti set b2='F5VQ' where id=6; -update noar tt set b0='I3ZX4DBGGUQA39FDULDSD' where id=7; -update noar ti set b0='I3ZX4DBGGUQA39FDULDSD' where id=7; -update noar tt set b1='T4F' where id=7; -update noar ti set b1='T4F' where id=7; -update noar tt set b2='D1VR6GGTXT8Z4F' where id=7; -update noar ti set b2='D1VR6GGTXT8Z4F' where id=7; -update noar tt set b0='VSC6LZCV2ZE416NVFT764' where id=8; -update noar ti set b0='VSC6LZCV2ZE416NVFT764' where id=8; -update noar tt set b1='AUYFPW84B73M6HJ1OAT7F4L2940KLE' where id=8; -update noar ti set b1='AUYFPW84B73M6HJ1OAT7F4L2940KLE' where id=8; -update noar tt set b2='KX63IC4RB0PVY5D3FNGUJLEK2DMFY9' where id=8; -update noar ti set b2='KX63IC4RB0PVY5D3FNGUJLEK2DMFY9' where id=8; -update noar tt set b0='CY4P7S18Q9XA28M5XXG1N9CO8' where id=9; -update noar ti set b0='CY4P7S18Q9XA28M5XXG1N9CO8' where id=9; -update noar tt set b1='YFHB0JI3ZYNUZ404MZ4AAF' where id=9; -update noar ti set b1='YFHB0JI3ZYNUZ404MZ4AAF' where id=9; -update noar tt set b2='D9GAS0S5ROW' where id=9; -update noar ti set b2='D9GAS0S5ROW' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - b0 text null, - b1 longblob null, - b2 longblob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set b0='2NGUMPZUZX0TL260L' where id=1; -update noar ti set b0='2NGUMPZUZX0TL260L' where id=1; -update noar tt set b1='DW8W78O1G5OQ2EF0V3ID8DSH48O' where id=1; -update noar ti set b1='DW8W78O1G5OQ2EF0V3ID8DSH48O' where id=1; -update noar tt set b2='2JSMC5IUQBXOL1MX16TGXAJH' where id=1; -update noar ti set b2='2JSMC5IUQBXOL1MX16TGXAJH' where id=1; -update noar tt set b0='HIAH3SCF1YAVTQ3E1DZNGNVW' where id=2; -update noar ti set b0='HIAH3SCF1YAVTQ3E1DZNGNVW' where id=2; -update noar tt set b1='5EKU2AC' where id=2; -update noar ti set b1='5EKU2AC' where id=2; -update noar tt set b2='PGZ4HGDFR5MG9RFQPSW1J48E' where id=2; -update noar ti set b2='PGZ4HGDFR5MG9RFQPSW1J48E' where id=2; -update noar tt set b0='ZTTHM7B3BXVE' where id=3; -update noar ti set b0='ZTTHM7B3BXVE' where id=3; -update noar tt set b1='ZSNFZI9EUVQNEJNS26723HR' where id=3; -update noar ti set b1='ZSNFZI9EUVQNEJNS26723HR' where id=3; -update noar tt set b2='DKATUL9WLR81U5AO9H7FI' where id=3; -update noar ti set b2='DKATUL9WLR81U5AO9H7FI' where id=3; -update noar tt set b0='9R' where id=4; -update noar ti set b0='9R' where id=4; -update noar tt set b1='BZXBHWT' where id=4; -update noar ti set b1='BZXBHWT' where id=4; -update noar tt set b2='VC663OJ8UT9EW5P07LZ7B38JS2' where id=4; -update noar ti set b2='VC663OJ8UT9EW5P07LZ7B38JS2' where id=4; -update noar tt set b0='M2T' where id=5; -update noar ti set b0='M2T' where id=5; -update noar tt set b1='H6CXFZ725MF1PPCSZF' where id=5; -update noar ti set b1='H6CXFZ725MF1PPCSZF' where id=5; -update noar tt set b2='0VVHL1FA457G06IJETDPD45C0V5EUU' where id=5; -update noar ti set b2='0VVHL1FA457G06IJETDPD45C0V5EUU' where id=5; -update noar tt set b0='VJW3KOMHUQL4RW' where id=6; -update noar ti set b0='VJW3KOMHUQL4RW' where id=6; -update noar tt set b1='2B28D758GWHYYCXM4X' where id=6; -update noar ti set b1='2B28D758GWHYYCXM4X' where id=6; -update noar tt set b2='Y3J29IF87PC' where id=6; -update noar ti set b2='Y3J29IF87PC' where id=6; -update noar tt set b0='1' where id=7; -update noar ti set b0='1' where id=7; -update noar tt set b1='TQHPLGW8PLJQB9A' where id=7; -update noar ti set b1='TQHPLGW8PLJQB9A' where id=7; -update noar tt set b2='I89R20VLFWTEJ6WPY6VPW' where id=7; -update noar ti set b2='I89R20VLFWTEJ6WPY6VPW' where id=7; -update noar tt set b0='EQVFQ13R5L66IC7P9SNQ90GXFJ2VMV' where id=8; -update noar ti set b0='EQVFQ13R5L66IC7P9SNQ90GXFJ2VMV' where id=8; -update noar tt set b1='HXUSMNLI22HYEONA2GA6' where id=8; -update noar ti set b1='HXUSMNLI22HYEONA2GA6' where id=8; -update noar tt set b2='5DH9JOODED0Q7FM82I7ZKGYWWTG1' where id=8; -update noar ti set b2='5DH9JOODED0Q7FM82I7ZKGYWWTG1' where id=8; -update noar tt set b0='JSRU0RMHB3DZDIW13R3Q7BC3SAA' where id=9; -update noar ti set b0='JSRU0RMHB3DZDIW13R3Q7BC3SAA' where id=9; -update noar tt set b1='Z2JW8XTSL51UPV7B9OS3D' where id=9; -update noar ti set b1='Z2JW8XTSL51UPV7B9OS3D' where id=9; -update noar tt set b2='ZMU' where id=9; -update noar ti set b2='ZMU' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - b0 text not null, - b1 longblob not null, - b2 longblob not null -) engine=tokudb; -insert into tt values (1,'','',''); -insert into tt values (2,'','',''); -insert into tt values (3,'','',''); -insert into tt values (4,'','',''); -insert into tt values (5,'','',''); -insert into tt values (6,'','',''); -insert into tt values (7,'','',''); -insert into tt values (8,'','',''); -insert into tt values (9,'','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set b0='LJKN0KJFQ' where id=1; -update noar ti set b0='LJKN0KJFQ' where id=1; -update noar tt set b1='J8PFJQGICL' where id=1; -update noar ti set b1='J8PFJQGICL' where id=1; -update noar tt set b2='4AA3XU1LOHABMVAHPBZ631ALUFCZO9V' where id=1; -update noar ti set b2='4AA3XU1LOHABMVAHPBZ631ALUFCZO9V' where id=1; -update noar tt set b0='7O6' where id=2; -update noar ti set b0='7O6' where id=2; -update noar tt set b1='M6D2N2N4W5VYB06EKI' where id=2; -update noar ti set b1='M6D2N2N4W5VYB06EKI' where id=2; -update noar tt set b2='8E0TC8I31M6L572PHIXMRA' where id=2; -update noar ti set b2='8E0TC8I31M6L572PHIXMRA' where id=2; -update noar tt set b0='22BVZD36B74GL8467REMX1O4' where id=3; -update noar ti set b0='22BVZD36B74GL8467REMX1O4' where id=3; -update noar tt set b1='H17E70BNU9039OJG89UF3K3TI' where id=3; -update noar ti set b1='H17E70BNU9039OJG89UF3K3TI' where id=3; -update noar tt set b2='26M8B15CDHG5YEK' where id=3; -update noar ti set b2='26M8B15CDHG5YEK' where id=3; -update noar tt set b0='QTA5LHL4PILPW7NPQQ90PITP012M' where id=4; -update noar ti set b0='QTA5LHL4PILPW7NPQQ90PITP012M' where id=4; -update noar tt set b1='O68YTNV7MS2D' where id=4; -update noar ti set b1='O68YTNV7MS2D' where id=4; -update noar tt set b2='LOVI692I2W67ICLBID' where id=4; -update noar ti set b2='LOVI692I2W67ICLBID' where id=4; -update noar tt set b0='GKH3D' where id=5; -update noar ti set b0='GKH3D' where id=5; -update noar tt set b1='X0CMCGJM773FR99DV4BIAB' where id=5; -update noar ti set b1='X0CMCGJM773FR99DV4BIAB' where id=5; -update noar tt set b2='DRRUR4GR9BSW' where id=5; -update noar ti set b2='DRRUR4GR9BSW' where id=5; -update noar tt set b0='QDZR' where id=6; -update noar ti set b0='QDZR' where id=6; -update noar tt set b1='8OW73WTSBTU6LAXIK79J516X' where id=6; -update noar ti set b1='8OW73WTSBTU6LAXIK79J516X' where id=6; -update noar tt set b2='NLHR487IVFOBOF9OQ69SQ8R8WJP6X' where id=6; -update noar ti set b2='NLHR487IVFOBOF9OQ69SQ8R8WJP6X' where id=6; -update noar tt set b0='U2U1O0SBSAG' where id=7; -update noar ti set b0='U2U1O0SBSAG' where id=7; -update noar tt set b1='5GE0IWAZ1M6M126RGXLE' where id=7; -update noar ti set b1='5GE0IWAZ1M6M126RGXLE' where id=7; -update noar tt set b2='N279NXUJ2SWUAYUOXEPLYEUO' where id=7; -update noar ti set b2='N279NXUJ2SWUAYUOXEPLYEUO' where id=7; -update noar tt set b0='2C18JJE3CF6Q92UMJ9' where id=8; -update noar ti set b0='2C18JJE3CF6Q92UMJ9' where id=8; -update noar tt set b1='XIIXQGXKOT7G2P5JANVOS8X' where id=8; -update noar ti set b1='XIIXQGXKOT7G2P5JANVOS8X' where id=8; -update noar tt set b2='AC6CJR5Z8J81S4RK31F8M' where id=8; -update noar ti set b2='AC6CJR5Z8J81S4RK31F8M' where id=8; -update noar tt set b0='T595' where id=9; -update noar ti set b0='T595' where id=9; -update noar tt set b1='6HUCK6POCSAFHSZLNRVPLMGO8B' where id=9; -update noar ti set b1='6HUCK6POCSAFHSZLNRVPLMGO8B' where id=9; -update noar tt set b2='GQ89J3PPUW17294K0H7A9Z8J8XEP0M' where id=9; -update noar ti set b2='GQ89J3PPUW17294K0H7A9Z8J8XEP0M' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - b0 text null, - b1 longblob null, - b2 text null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set b0='HL0FNP7CE9H9B3G9BDLETK' where id=1; -update noar ti set b0='HL0FNP7CE9H9B3G9BDLETK' where id=1; -update noar tt set b1='PVO' where id=1; -update noar ti set b1='PVO' where id=1; -update noar tt set b2='S8YNFEYYWLMVIYGUMBDT8WQG5L6QKU5' where id=1; -update noar ti set b2='S8YNFEYYWLMVIYGUMBDT8WQG5L6QKU5' where id=1; -update noar tt set b0='GM184QL0VV6TSWV' where id=2; -update noar ti set b0='GM184QL0VV6TSWV' where id=2; -update noar tt set b1='SJZW15OHPP3MCWYRES9NMM7VEIE4' where id=2; -update noar ti set b1='SJZW15OHPP3MCWYRES9NMM7VEIE4' where id=2; -update noar tt set b2='DVHRUQ1BPVBB8PIC51F3RCYUE7T6ZOHT' where id=2; -update noar ti set b2='DVHRUQ1BPVBB8PIC51F3RCYUE7T6ZOHT' where id=2; -update noar tt set b0='T3SUCNTHSHUW9S5VRBV97SC' where id=3; -update noar ti set b0='T3SUCNTHSHUW9S5VRBV97SC' where id=3; -update noar tt set b1='OP8VT8F4AH9J9D9' where id=3; -update noar ti set b1='OP8VT8F4AH9J9D9' where id=3; -update noar tt set b2='5IW2MK4C7Q5Z3Q3W9M1JEOCNGIB4R' where id=3; -update noar ti set b2='5IW2MK4C7Q5Z3Q3W9M1JEOCNGIB4R' where id=3; -update noar tt set b0='01JNLPY3FC07Q7MR7SEUOG4' where id=4; -update noar ti set b0='01JNLPY3FC07Q7MR7SEUOG4' where id=4; -update noar tt set b1='BIMVQMYKY778883059GDKSWIPX47S' where id=4; -update noar ti set b1='BIMVQMYKY778883059GDKSWIPX47S' where id=4; -update noar tt set b2='00YU0I95PUABBNAMI1GCKCABOVUS' where id=4; -update noar ti set b2='00YU0I95PUABBNAMI1GCKCABOVUS' where id=4; -update noar tt set b0='3U6BE' where id=5; -update noar ti set b0='3U6BE' where id=5; -update noar tt set b1='FG334ISBNVVT2ROXCSJ' where id=5; -update noar ti set b1='FG334ISBNVVT2ROXCSJ' where id=5; -update noar tt set b2='T53RHR1265QK2VRI1W36QP77MAK7X' where id=5; -update noar ti set b2='T53RHR1265QK2VRI1W36QP77MAK7X' where id=5; -update noar tt set b0='H8JW' where id=6; -update noar ti set b0='H8JW' where id=6; -update noar tt set b1='GAKIJANPJVG1W3HJZG22SF1K2VPM7HT' where id=6; -update noar ti set b1='GAKIJANPJVG1W3HJZG22SF1K2VPM7HT' where id=6; -update noar tt set b2='WD94AI6BDICDEZ6IG8J9IZPJQC' where id=6; -update noar ti set b2='WD94AI6BDICDEZ6IG8J9IZPJQC' where id=6; -update noar tt set b0='YABRBGGTPYX522I3V' where id=7; -update noar ti set b0='YABRBGGTPYX522I3V' where id=7; -update noar tt set b1='G7E7PGPLOW4958282' where id=7; -update noar ti set b1='G7E7PGPLOW4958282' where id=7; -update noar tt set b2='MCB9TKDZBXHLW' where id=7; -update noar ti set b2='MCB9TKDZBXHLW' where id=7; -update noar tt set b0='ADN8PPM' where id=8; -update noar ti set b0='ADN8PPM' where id=8; -update noar tt set b1='42XRCNNAUE1F6KOEL2GQNX' where id=8; -update noar ti set b1='42XRCNNAUE1F6KOEL2GQNX' where id=8; -update noar tt set b2='S30726STKNXAZUAG6MKT8P5Y65PK0M' where id=8; -update noar ti set b2='S30726STKNXAZUAG6MKT8P5Y65PK0M' where id=8; -update noar tt set b0='F7C1E0GW6YKTZMNMLB8WKJKKEIKY' where id=9; -update noar ti set b0='F7C1E0GW6YKTZMNMLB8WKJKKEIKY' where id=9; -update noar tt set b1='KE5E8S9LXN2GZCCH' where id=9; -update noar ti set b1='KE5E8S9LXN2GZCCH' where id=9; -update noar tt set b2='QL3' where id=9; -update noar ti set b2='QL3' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - b0 text not null, - b1 longblob not null, - b2 text not null -) engine=tokudb; -insert into tt values (1,'','',''); -insert into tt values (2,'','',''); -insert into tt values (3,'','',''); -insert into tt values (4,'','',''); -insert into tt values (5,'','',''); -insert into tt values (6,'','',''); -insert into tt values (7,'','',''); -insert into tt values (8,'','',''); -insert into tt values (9,'','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set b0='X6LMVB76NTAXAGOR8DN5PL3X3TTUXCB' where id=1; -update noar ti set b0='X6LMVB76NTAXAGOR8DN5PL3X3TTUXCB' where id=1; -update noar tt set b1='LS566VGAAI6RQ7JP1J10OGE' where id=1; -update noar ti set b1='LS566VGAAI6RQ7JP1J10OGE' where id=1; -update noar tt set b2='7MH' where id=1; -update noar ti set b2='7MH' where id=1; -update noar tt set b0='4K4OMGG0PIO2ZSAGP' where id=2; -update noar ti set b0='4K4OMGG0PIO2ZSAGP' where id=2; -update noar tt set b1='U2L8X89150GACC6BIDKI0XSV5P094' where id=2; -update noar ti set b1='U2L8X89150GACC6BIDKI0XSV5P094' where id=2; -update noar tt set b2='G2T1I8Q8S9IBYQECZ86RZ4TTIACVZ' where id=2; -update noar ti set b2='G2T1I8Q8S9IBYQECZ86RZ4TTIACVZ' where id=2; -update noar tt set b0='3OHI6SLJZIA3OVB' where id=3; -update noar ti set b0='3OHI6SLJZIA3OVB' where id=3; -update noar tt set b1='MILHDQXXBYL0RA82IGQDO' where id=3; -update noar ti set b1='MILHDQXXBYL0RA82IGQDO' where id=3; -update noar tt set b2='0LX36X4AO' where id=3; -update noar ti set b2='0LX36X4AO' where id=3; -update noar tt set b0='KY3MG5742LGRZBC232TXTE1BH60SV' where id=4; -update noar ti set b0='KY3MG5742LGRZBC232TXTE1BH60SV' where id=4; -update noar tt set b1='P' where id=4; -update noar ti set b1='P' where id=4; -update noar tt set b2='927QY4ZJXANNGEHQM8JTGGE1B' where id=4; -update noar ti set b2='927QY4ZJXANNGEHQM8JTGGE1B' where id=4; -update noar tt set b0='R9JQPMS4KQFWF4ABBF6' where id=5; -update noar ti set b0='R9JQPMS4KQFWF4ABBF6' where id=5; -update noar tt set b1='J' where id=5; -update noar ti set b1='J' where id=5; -update noar tt set b2='SPF2VKZTAAR' where id=5; -update noar ti set b2='SPF2VKZTAAR' where id=5; -update noar tt set b0='EJ5YBRPHR' where id=6; -update noar ti set b0='EJ5YBRPHR' where id=6; -update noar tt set b1='GV2' where id=6; -update noar ti set b1='GV2' where id=6; -update noar tt set b2='HI90YAE5DF2WA7OIV2DDJHZKNM8EADH' where id=6; -update noar ti set b2='HI90YAE5DF2WA7OIV2DDJHZKNM8EADH' where id=6; -update noar tt set b0='R' where id=7; -update noar ti set b0='R' where id=7; -update noar tt set b1='5R2ZMNI8U4OSCN1RSXHA79OC66ACH' where id=7; -update noar ti set b1='5R2ZMNI8U4OSCN1RSXHA79OC66ACH' where id=7; -update noar tt set b2='9YFCAX' where id=7; -update noar ti set b2='9YFCAX' where id=7; -update noar tt set b0='Y1RN6IF8X31Y3DKNZ5GGPB3I2Z3DOA' where id=8; -update noar ti set b0='Y1RN6IF8X31Y3DKNZ5GGPB3I2Z3DOA' where id=8; -update noar tt set b1='B45L2BGXIR6AGB18MIL4IJ1YIE' where id=8; -update noar ti set b1='B45L2BGXIR6AGB18MIL4IJ1YIE' where id=8; -update noar tt set b2='3H02CTVAJ1UYT2BS8SJX5JB4V4JXXFA' where id=8; -update noar ti set b2='3H02CTVAJ1UYT2BS8SJX5JB4V4JXXFA' where id=8; -update noar tt set b0='954IT78G5DN4D' where id=9; -update noar ti set b0='954IT78G5DN4D' where id=9; -update noar tt set b1='S0ONUXIFI67G7T' where id=9; -update noar ti set b1='S0ONUXIFI67G7T' where id=9; -update noar tt set b2='K41RZTCZ61FMR' where id=9; -update noar ti set b2='K41RZTCZ61FMR' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - b0 text null, - b1 text null, - b2 tinyblob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set b0='9PDRR' where id=1; -update noar ti set b0='9PDRR' where id=1; -update noar tt set b1='YJWT6F3FJF6O69D4L2' where id=1; -update noar ti set b1='YJWT6F3FJF6O69D4L2' where id=1; -update noar tt set b2='N4QR' where id=1; -update noar ti set b2='N4QR' where id=1; -update noar tt set b0='B5R9FO1' where id=2; -update noar ti set b0='B5R9FO1' where id=2; -update noar tt set b1='0Q39EW' where id=2; -update noar ti set b1='0Q39EW' where id=2; -update noar tt set b2='96LO1MFORWSRU0JKFVNDX2KX1XGNINJ' where id=2; -update noar ti set b2='96LO1MFORWSRU0JKFVNDX2KX1XGNINJ' where id=2; -update noar tt set b0='Y4YX8921BJM4DW3Z7Z0W' where id=3; -update noar ti set b0='Y4YX8921BJM4DW3Z7Z0W' where id=3; -update noar tt set b1='ITM8GR2EDW8L7QA7QTD1JRFCC7NR6AZD' where id=3; -update noar ti set b1='ITM8GR2EDW8L7QA7QTD1JRFCC7NR6AZD' where id=3; -update noar tt set b2='9WWY7BGR7JMDIIZCF4A7FQPZN64N' where id=3; -update noar ti set b2='9WWY7BGR7JMDIIZCF4A7FQPZN64N' where id=3; -update noar tt set b0='Z6L250O1S' where id=4; -update noar ti set b0='Z6L250O1S' where id=4; -update noar tt set b1='YQL6L44N9XX39G6L23CZC5QOKY' where id=4; -update noar ti set b1='YQL6L44N9XX39G6L23CZC5QOKY' where id=4; -update noar tt set b2='2J0V08Z6RZD5WBKCXTEZW1FZLRDW7Y' where id=4; -update noar ti set b2='2J0V08Z6RZD5WBKCXTEZW1FZLRDW7Y' where id=4; -update noar tt set b0='IW5Q65CI0THXPBGQ3NAXXDNI06' where id=5; -update noar ti set b0='IW5Q65CI0THXPBGQ3NAXXDNI06' where id=5; -update noar tt set b1='U3B9K0CFSOOJ0RLKZW0MKUHEPYQ' where id=5; -update noar ti set b1='U3B9K0CFSOOJ0RLKZW0MKUHEPYQ' where id=5; -update noar tt set b2='PCPIC5BCS23NVUGXK4' where id=5; -update noar ti set b2='PCPIC5BCS23NVUGXK4' where id=5; -update noar tt set b0='29YI53POYKDJXB6DOKPEYBZSB9C' where id=6; -update noar ti set b0='29YI53POYKDJXB6DOKPEYBZSB9C' where id=6; -update noar tt set b1='UU4WGE7FUQVIFXD98O' where id=6; -update noar ti set b1='UU4WGE7FUQVIFXD98O' where id=6; -update noar tt set b2='MX3WNZ' where id=6; -update noar ti set b2='MX3WNZ' where id=6; -update noar tt set b0='3KV07CY5WSTUUUSD67DBEG6B' where id=7; -update noar ti set b0='3KV07CY5WSTUUUSD67DBEG6B' where id=7; -update noar tt set b1='9H8LBF7IPVSJVEWCEDDFKWOS' where id=7; -update noar ti set b1='9H8LBF7IPVSJVEWCEDDFKWOS' where id=7; -update noar tt set b2='8AN159KCL5KERUVC' where id=7; -update noar ti set b2='8AN159KCL5KERUVC' where id=7; -update noar tt set b0='7MMD31CWOVRTHTGM6CDAX35W7' where id=8; -update noar ti set b0='7MMD31CWOVRTHTGM6CDAX35W7' where id=8; -update noar tt set b1='XHM8L9CUJURAT' where id=8; -update noar ti set b1='XHM8L9CUJURAT' where id=8; -update noar tt set b2='CB3VD5FFE9T9WW3GGDZW09DWAQO' where id=8; -update noar ti set b2='CB3VD5FFE9T9WW3GGDZW09DWAQO' where id=8; -update noar tt set b0='767TM4RMFEBRS4NSYVSI6U8MKB8C' where id=9; -update noar ti set b0='767TM4RMFEBRS4NSYVSI6U8MKB8C' where id=9; -update noar tt set b1='D7X2NO5F6V6S01APM6O30EG5BHKM' where id=9; -update noar ti set b1='D7X2NO5F6V6S01APM6O30EG5BHKM' where id=9; -update noar tt set b2='6SDB8NYHYVZWXZEFTYC50X8YN' where id=9; -update noar ti set b2='6SDB8NYHYVZWXZEFTYC50X8YN' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - b0 text not null, - b1 text not null, - b2 tinyblob not null -) engine=tokudb; -insert into tt values (1,'','',''); -insert into tt values (2,'','',''); -insert into tt values (3,'','',''); -insert into tt values (4,'','',''); -insert into tt values (5,'','',''); -insert into tt values (6,'','',''); -insert into tt values (7,'','',''); -insert into tt values (8,'','',''); -insert into tt values (9,'','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set b0='9YTTXBH3O0JP8JHED' where id=1; -update noar ti set b0='9YTTXBH3O0JP8JHED' where id=1; -update noar tt set b1='BDSIF9GRHQ4SE0FO0PTW9GK' where id=1; -update noar ti set b1='BDSIF9GRHQ4SE0FO0PTW9GK' where id=1; -update noar tt set b2='9X3XHHY7BETNSR30NA44GUDFLCZRMFZ' where id=1; -update noar ti set b2='9X3XHHY7BETNSR30NA44GUDFLCZRMFZ' where id=1; -update noar tt set b0='NV3MVBDLV7FNH6PB8J5O06IVRV' where id=2; -update noar ti set b0='NV3MVBDLV7FNH6PB8J5O06IVRV' where id=2; -update noar tt set b1='LKXSN4SGRH2S8CRG' where id=2; -update noar ti set b1='LKXSN4SGRH2S8CRG' where id=2; -update noar tt set b2='U4Z0FNP2LK3PG' where id=2; -update noar ti set b2='U4Z0FNP2LK3PG' where id=2; -update noar tt set b0='50ZUMS' where id=3; -update noar ti set b0='50ZUMS' where id=3; -update noar tt set b1='60TXDK826A8NIVQ0ITO79H7S0VBQY93' where id=3; -update noar ti set b1='60TXDK826A8NIVQ0ITO79H7S0VBQY93' where id=3; -update noar tt set b2='HVJIGK1ZZ1C' where id=3; -update noar ti set b2='HVJIGK1ZZ1C' where id=3; -update noar tt set b0='K0MB' where id=4; -update noar ti set b0='K0MB' where id=4; -update noar tt set b1='XXGFNIO' where id=4; -update noar ti set b1='XXGFNIO' where id=4; -update noar tt set b2='AVHY40W9J7Z' where id=4; -update noar ti set b2='AVHY40W9J7Z' where id=4; -update noar tt set b0='Q' where id=5; -update noar ti set b0='Q' where id=5; -update noar tt set b1='5BLHLE' where id=5; -update noar ti set b1='5BLHLE' where id=5; -update noar tt set b2='TT6I' where id=5; -update noar ti set b2='TT6I' where id=5; -update noar tt set b0='TR6TBKNST5US9OF6J19AFF34K8KZH' where id=6; -update noar ti set b0='TR6TBKNST5US9OF6J19AFF34K8KZH' where id=6; -update noar tt set b1='08VYPDAD' where id=6; -update noar ti set b1='08VYPDAD' where id=6; -update noar tt set b2='SC2IP6C' where id=6; -update noar ti set b2='SC2IP6C' where id=6; -update noar tt set b0='WQYRGW4BHD17YJC8U1KMXUWE2WH' where id=7; -update noar ti set b0='WQYRGW4BHD17YJC8U1KMXUWE2WH' where id=7; -update noar tt set b1='0I1VKWQ5YCC9RQCFXXDQ0OGIE0EYSEM1' where id=7; -update noar ti set b1='0I1VKWQ5YCC9RQCFXXDQ0OGIE0EYSEM1' where id=7; -update noar tt set b2='TAIIGOZ1IVKIZCQJ0VPB1Y59Y' where id=7; -update noar ti set b2='TAIIGOZ1IVKIZCQJ0VPB1Y59Y' where id=7; -update noar tt set b0='MYPFFRUD9U9JQUCIE2VB1' where id=8; -update noar ti set b0='MYPFFRUD9U9JQUCIE2VB1' where id=8; -update noar tt set b1='AJXFU5274YAHNGLY64KL4QVWY14DQI' where id=8; -update noar ti set b1='AJXFU5274YAHNGLY64KL4QVWY14DQI' where id=8; -update noar tt set b2='XMKA9NAK0CUECYB0QLBCUZZKZ8M0IO7' where id=8; -update noar ti set b2='XMKA9NAK0CUECYB0QLBCUZZKZ8M0IO7' where id=8; -update noar tt set b0='ZAQ' where id=9; -update noar ti set b0='ZAQ' where id=9; -update noar tt set b1='UKJZ1K865PGML0CR' where id=9; -update noar ti set b1='UKJZ1K865PGML0CR' where id=9; -update noar tt set b2='3JZNQ6KYFI5CVIPW2' where id=9; -update noar ti set b2='3JZNQ6KYFI5CVIPW2' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - b0 text null, - b1 text null, - b2 blob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set b0='TKPI1SH2U0AA0QK5AAFPL3Z6DJIG4C' where id=1; -update noar ti set b0='TKPI1SH2U0AA0QK5AAFPL3Z6DJIG4C' where id=1; -update noar tt set b1='5VTYJ7IAH' where id=1; -update noar ti set b1='5VTYJ7IAH' where id=1; -update noar tt set b2='IWIH3TXEVUEOUB57FW6YO3O0XU2WXXWL' where id=1; -update noar ti set b2='IWIH3TXEVUEOUB57FW6YO3O0XU2WXXWL' where id=1; -update noar tt set b0='6PAXYU1552ZPFC8LHU3EB9V65NX262JA' where id=2; -update noar ti set b0='6PAXYU1552ZPFC8LHU3EB9V65NX262JA' where id=2; -update noar tt set b1='53UX1QOKRL7X8TXY85EZ' where id=2; -update noar ti set b1='53UX1QOKRL7X8TXY85EZ' where id=2; -update noar tt set b2='IHKV66Q2MTXPGWJJ' where id=2; -update noar ti set b2='IHKV66Q2MTXPGWJJ' where id=2; -update noar tt set b0='I0BGQKWU5L5JOKJWDLGXUKJDIP' where id=3; -update noar ti set b0='I0BGQKWU5L5JOKJWDLGXUKJDIP' where id=3; -update noar tt set b1='I18ATAJ20NKWC798E8EPIKQ4PYRH1EIZ' where id=3; -update noar ti set b1='I18ATAJ20NKWC798E8EPIKQ4PYRH1EIZ' where id=3; -update noar tt set b2='5' where id=3; -update noar ti set b2='5' where id=3; -update noar tt set b0='XSLQBWR13ENOHEY2W' where id=4; -update noar ti set b0='XSLQBWR13ENOHEY2W' where id=4; -update noar tt set b1='Z' where id=4; -update noar ti set b1='Z' where id=4; -update noar tt set b2='J54QREWMG121FEVNRC0SOAPBWB00YML8' where id=4; -update noar ti set b2='J54QREWMG121FEVNRC0SOAPBWB00YML8' where id=4; -update noar tt set b0='COAA589ST1CR0KT9I8RV0YU' where id=5; -update noar ti set b0='COAA589ST1CR0KT9I8RV0YU' where id=5; -update noar tt set b1='ZE72TSPZOVD50KLOKOP' where id=5; -update noar ti set b1='ZE72TSPZOVD50KLOKOP' where id=5; -update noar tt set b2='JH9ILCHR9WOVD55OOY34ZKVNU6' where id=5; -update noar ti set b2='JH9ILCHR9WOVD55OOY34ZKVNU6' where id=5; -update noar tt set b0='BVLQB5IZ7FYRS7YHET0PWZ' where id=6; -update noar ti set b0='BVLQB5IZ7FYRS7YHET0PWZ' where id=6; -update noar tt set b1='ORKV' where id=6; -update noar ti set b1='ORKV' where id=6; -update noar tt set b2='ZAPAO0VY74V2GNBM204HIE9NEO3OL1S' where id=6; -update noar ti set b2='ZAPAO0VY74V2GNBM204HIE9NEO3OL1S' where id=6; -update noar tt set b0='CP06CLD2RARFYGE8' where id=7; -update noar ti set b0='CP06CLD2RARFYGE8' where id=7; -update noar tt set b1='GTKGXWTKS14QVAHPND5' where id=7; -update noar ti set b1='GTKGXWTKS14QVAHPND5' where id=7; -update noar tt set b2='CM' where id=7; -update noar ti set b2='CM' where id=7; -update noar tt set b0='A3SJHCG64MY3SDDGP1H4TMFRJ9309D1S' where id=8; -update noar ti set b0='A3SJHCG64MY3SDDGP1H4TMFRJ9309D1S' where id=8; -update noar tt set b1='QR6J3GUTI8PHITP' where id=8; -update noar ti set b1='QR6J3GUTI8PHITP' where id=8; -update noar tt set b2='INP2JHVS1KGJ8F2X7AHYX8WMEVMOI87V' where id=8; -update noar ti set b2='INP2JHVS1KGJ8F2X7AHYX8WMEVMOI87V' where id=8; -update noar tt set b0='4OOENX85VMTHK0YOO4VASHQJ6FW4JTG' where id=9; -update noar ti set b0='4OOENX85VMTHK0YOO4VASHQJ6FW4JTG' where id=9; -update noar tt set b1='QY1D23A7XH3X' where id=9; -update noar ti set b1='QY1D23A7XH3X' where id=9; -update noar tt set b2='IZJJRU7DRVI3F2' where id=9; -update noar ti set b2='IZJJRU7DRVI3F2' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - b0 text not null, - b1 text not null, - b2 blob not null -) engine=tokudb; -insert into tt values (1,'','',''); -insert into tt values (2,'','',''); -insert into tt values (3,'','',''); -insert into tt values (4,'','',''); -insert into tt values (5,'','',''); -insert into tt values (6,'','',''); -insert into tt values (7,'','',''); -insert into tt values (8,'','',''); -insert into tt values (9,'','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set b0='ZOJ9SW49HXQQAZFK' where id=1; -update noar ti set b0='ZOJ9SW49HXQQAZFK' where id=1; -update noar tt set b1='6YP47XZYE1MVTK65OERJKIL2YET80BK' where id=1; -update noar ti set b1='6YP47XZYE1MVTK65OERJKIL2YET80BK' where id=1; -update noar tt set b2='K6B2HO6PT' where id=1; -update noar ti set b2='K6B2HO6PT' where id=1; -update noar tt set b0='G7UWUB4' where id=2; -update noar ti set b0='G7UWUB4' where id=2; -update noar tt set b1='H5NY6M6N96BLF9ICD2M8Y66VE' where id=2; -update noar ti set b1='H5NY6M6N96BLF9ICD2M8Y66VE' where id=2; -update noar tt set b2='DH0SBB0MMP09FDKGYRXGVNU1G92P44' where id=2; -update noar ti set b2='DH0SBB0MMP09FDKGYRXGVNU1G92P44' where id=2; -update noar tt set b0='GPHWBK8' where id=3; -update noar ti set b0='GPHWBK8' where id=3; -update noar tt set b1='TQ2JG9D0WP48GOR04L3GTDRBHG' where id=3; -update noar ti set b1='TQ2JG9D0WP48GOR04L3GTDRBHG' where id=3; -update noar tt set b2='AT1V1LM2K3G' where id=3; -update noar ti set b2='AT1V1LM2K3G' where id=3; -update noar tt set b0='QI4AM1Q8W5L4ENGSCR6KPQZOL9S6IF' where id=4; -update noar ti set b0='QI4AM1Q8W5L4ENGSCR6KPQZOL9S6IF' where id=4; -update noar tt set b1='PA2IBLRSF2USL6W32J7DSNLUVPUONY7H' where id=4; -update noar ti set b1='PA2IBLRSF2USL6W32J7DSNLUVPUONY7H' where id=4; -update noar tt set b2='735WPLOM' where id=4; -update noar ti set b2='735WPLOM' where id=4; -update noar tt set b0='U8MXOUAJU8Q0HLQZ8U5SLN9' where id=5; -update noar ti set b0='U8MXOUAJU8Q0HLQZ8U5SLN9' where id=5; -update noar tt set b1='G15702GA2MAUTTE9L87GY' where id=5; -update noar ti set b1='G15702GA2MAUTTE9L87GY' where id=5; -update noar tt set b2='NCWJ661R' where id=5; -update noar ti set b2='NCWJ661R' where id=5; -update noar tt set b0='939WN2' where id=6; -update noar ti set b0='939WN2' where id=6; -update noar tt set b1='01RSWCKNG7KR6GRAV7FLB901IYQV' where id=6; -update noar ti set b1='01RSWCKNG7KR6GRAV7FLB901IYQV' where id=6; -update noar tt set b2='B' where id=6; -update noar ti set b2='B' where id=6; -update noar tt set b0='1RNSOBU73X' where id=7; -update noar ti set b0='1RNSOBU73X' where id=7; -update noar tt set b1='3W606F9XRYI89205LMZNG1BS19XNU' where id=7; -update noar ti set b1='3W606F9XRYI89205LMZNG1BS19XNU' where id=7; -update noar tt set b2='JH4HDYDVZT9ITR' where id=7; -update noar ti set b2='JH4HDYDVZT9ITR' where id=7; -update noar tt set b0='PHJU3GC28F97RFABA2V69GGB0BUT235' where id=8; -update noar ti set b0='PHJU3GC28F97RFABA2V69GGB0BUT235' where id=8; -update noar tt set b1='53XB8R8PWE1NNNB7' where id=8; -update noar ti set b1='53XB8R8PWE1NNNB7' where id=8; -update noar tt set b2='UFPD2BL4SIOGE4VBF7O2O6L68VT' where id=8; -update noar ti set b2='UFPD2BL4SIOGE4VBF7O2O6L68VT' where id=8; -update noar tt set b0='V4F3D791' where id=9; -update noar ti set b0='V4F3D791' where id=9; -update noar tt set b1='9H4PC2PS3YEKU' where id=9; -update noar ti set b1='9H4PC2PS3YEKU' where id=9; -update noar tt set b2='6YVZOJIQCVDTPSX6N6GRG' where id=9; -update noar ti set b2='6YVZOJIQCVDTPSX6N6GRG' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - b0 text null, - b1 text null, - b2 mediumblob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set b0='8PFJXWHPTLME3MS7VAJ9ONHHQQ' where id=1; -update noar ti set b0='8PFJXWHPTLME3MS7VAJ9ONHHQQ' where id=1; -update noar tt set b1='C6RF5LRN62Q7TTG' where id=1; -update noar ti set b1='C6RF5LRN62Q7TTG' where id=1; -update noar tt set b2='X' where id=1; -update noar ti set b2='X' where id=1; -update noar tt set b0='YR4KE' where id=2; -update noar ti set b0='YR4KE' where id=2; -update noar tt set b1='R1WEIKTVQNOODULE' where id=2; -update noar ti set b1='R1WEIKTVQNOODULE' where id=2; -update noar tt set b2='0E2RPX0CRPKS5XXAAA9YDC5HL' where id=2; -update noar ti set b2='0E2RPX0CRPKS5XXAAA9YDC5HL' where id=2; -update noar tt set b0='ZQ80K8E8KJSMFXX' where id=3; -update noar ti set b0='ZQ80K8E8KJSMFXX' where id=3; -update noar tt set b1='13' where id=3; -update noar ti set b1='13' where id=3; -update noar tt set b2='2P1LXI' where id=3; -update noar ti set b2='2P1LXI' where id=3; -update noar tt set b0='YJMVH7FHL83P7DAR6BE396792V5FTXXE' where id=4; -update noar ti set b0='YJMVH7FHL83P7DAR6BE396792V5FTXXE' where id=4; -update noar tt set b1='1O32R1Q57Y6VBUG49PIIQ' where id=4; -update noar ti set b1='1O32R1Q57Y6VBUG49PIIQ' where id=4; -update noar tt set b2='J2Q' where id=4; -update noar ti set b2='J2Q' where id=4; -update noar tt set b0='JHZ60NXWD1Z1AU1' where id=5; -update noar ti set b0='JHZ60NXWD1Z1AU1' where id=5; -update noar tt set b1='KWRSEAMTEJR2FA7' where id=5; -update noar ti set b1='KWRSEAMTEJR2FA7' where id=5; -update noar tt set b2='IPIYGP01EUO' where id=5; -update noar ti set b2='IPIYGP01EUO' where id=5; -update noar tt set b0='S1P0MAEVOEQKFWAMRFHQA99ZB' where id=6; -update noar ti set b0='S1P0MAEVOEQKFWAMRFHQA99ZB' where id=6; -update noar tt set b1='DQOJ2V96R8H' where id=6; -update noar ti set b1='DQOJ2V96R8H' where id=6; -update noar tt set b2='70T9DR7KCA7WS5RLA40IPSJP' where id=6; -update noar ti set b2='70T9DR7KCA7WS5RLA40IPSJP' where id=6; -update noar tt set b0='TRMSFWV66PF' where id=7; -update noar ti set b0='TRMSFWV66PF' where id=7; -update noar tt set b1='8WSO2LT0VUHP1RMIM' where id=7; -update noar ti set b1='8WSO2LT0VUHP1RMIM' where id=7; -update noar tt set b2='DHKM3N3IJVJC' where id=7; -update noar ti set b2='DHKM3N3IJVJC' where id=7; -update noar tt set b0='T9GZ47NM' where id=8; -update noar ti set b0='T9GZ47NM' where id=8; -update noar tt set b1='68I4PDRVJE2' where id=8; -update noar ti set b1='68I4PDRVJE2' where id=8; -update noar tt set b2='ALPRPCMWH4I9OCHFRJ5WSRP4KORZFO7A' where id=8; -update noar ti set b2='ALPRPCMWH4I9OCHFRJ5WSRP4KORZFO7A' where id=8; -update noar tt set b0='2PH7G3W' where id=9; -update noar ti set b0='2PH7G3W' where id=9; -update noar tt set b1='VF4MQFQB9V6XA64VZV73Q6V1B037E9VO' where id=9; -update noar ti set b1='VF4MQFQB9V6XA64VZV73Q6V1B037E9VO' where id=9; -update noar tt set b2='S' where id=9; -update noar ti set b2='S' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - b0 text not null, - b1 text not null, - b2 mediumblob not null -) engine=tokudb; -insert into tt values (1,'','',''); -insert into tt values (2,'','',''); -insert into tt values (3,'','',''); -insert into tt values (4,'','',''); -insert into tt values (5,'','',''); -insert into tt values (6,'','',''); -insert into tt values (7,'','',''); -insert into tt values (8,'','',''); -insert into tt values (9,'','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set b0='QUJ9LBDNAXIHUFMR991SEHLDPJM' where id=1; -update noar ti set b0='QUJ9LBDNAXIHUFMR991SEHLDPJM' where id=1; -update noar tt set b1='UWA642K8WUJN78WE2R0A3AC1Z' where id=1; -update noar ti set b1='UWA642K8WUJN78WE2R0A3AC1Z' where id=1; -update noar tt set b2='RDZ9US' where id=1; -update noar ti set b2='RDZ9US' where id=1; -update noar tt set b0='4EW1J0I8' where id=2; -update noar ti set b0='4EW1J0I8' where id=2; -update noar tt set b1='P0IRCH8UR9KU52478' where id=2; -update noar ti set b1='P0IRCH8UR9KU52478' where id=2; -update noar tt set b2='HJOZI2OW98D7' where id=2; -update noar ti set b2='HJOZI2OW98D7' where id=2; -update noar tt set b0='9RJ9D9369596' where id=3; -update noar ti set b0='9RJ9D9369596' where id=3; -update noar tt set b1='TVXNJ5BU691U8Z01S' where id=3; -update noar ti set b1='TVXNJ5BU691U8Z01S' where id=3; -update noar tt set b2='C9LZXIVO2R1F3BDLA1HDR7' where id=3; -update noar ti set b2='C9LZXIVO2R1F3BDLA1HDR7' where id=3; -update noar tt set b0='IML54WVA5PRYNRPE0R7VAVD7DGL' where id=4; -update noar ti set b0='IML54WVA5PRYNRPE0R7VAVD7DGL' where id=4; -update noar tt set b1='FUOSDQBJ203P' where id=4; -update noar ti set b1='FUOSDQBJ203P' where id=4; -update noar tt set b2='QC11' where id=4; -update noar ti set b2='QC11' where id=4; -update noar tt set b0='OL2UZNX6J19SWR90S5ECPB2HC' where id=5; -update noar ti set b0='OL2UZNX6J19SWR90S5ECPB2HC' where id=5; -update noar tt set b1='A' where id=5; -update noar ti set b1='A' where id=5; -update noar tt set b2='68N06E5CUAV792AO' where id=5; -update noar ti set b2='68N06E5CUAV792AO' where id=5; -update noar tt set b0='H4U5K' where id=6; -update noar ti set b0='H4U5K' where id=6; -update noar tt set b1='6CTY54R1CV7MP8IRSITGY2E' where id=6; -update noar ti set b1='6CTY54R1CV7MP8IRSITGY2E' where id=6; -update noar tt set b2='Y50MFVAV039SF9YQUXIXIQP' where id=6; -update noar ti set b2='Y50MFVAV039SF9YQUXIXIQP' where id=6; -update noar tt set b0='VJ934C6XP73X7IHALF2008YX1RXCHKLL' where id=7; -update noar ti set b0='VJ934C6XP73X7IHALF2008YX1RXCHKLL' where id=7; -update noar tt set b1='F1FBJUSLMKORRUK0F2PF5JQWAV' where id=7; -update noar ti set b1='F1FBJUSLMKORRUK0F2PF5JQWAV' where id=7; -update noar tt set b2='8I1VRK' where id=7; -update noar ti set b2='8I1VRK' where id=7; -update noar tt set b0='1IFCV5OWSCDA0H69FP2L' where id=8; -update noar ti set b0='1IFCV5OWSCDA0H69FP2L' where id=8; -update noar tt set b1='U6ZE3HIWNQPFS0VMSV' where id=8; -update noar ti set b1='U6ZE3HIWNQPFS0VMSV' where id=8; -update noar tt set b2='OPO075JAZXT62TEHK' where id=8; -update noar ti set b2='OPO075JAZXT62TEHK' where id=8; -update noar tt set b0='UDXBKR5BT' where id=9; -update noar ti set b0='UDXBKR5BT' where id=9; -update noar tt set b1='M5M687DEUEBDZJ0OMCR71DGGDN84YG0' where id=9; -update noar ti set b1='M5M687DEUEBDZJ0OMCR71DGGDN84YG0' where id=9; -update noar tt set b2='3YV1IT' where id=9; -update noar ti set b2='3YV1IT' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - b0 text null, - b1 text null, - b2 longblob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set b0='P4AD2RGQ5Z8FCJFHPY1XPBFQ' where id=1; -update noar ti set b0='P4AD2RGQ5Z8FCJFHPY1XPBFQ' where id=1; -update noar tt set b1='00MV75PG3' where id=1; -update noar ti set b1='00MV75PG3' where id=1; -update noar tt set b2='RYVYLRSWKBTDMYEC1L1JT9D5ZMFX' where id=1; -update noar ti set b2='RYVYLRSWKBTDMYEC1L1JT9D5ZMFX' where id=1; -update noar tt set b0='U2TANQAGA77NH1K58V2R3' where id=2; -update noar ti set b0='U2TANQAGA77NH1K58V2R3' where id=2; -update noar tt set b1='63VLXO1C3D54A2' where id=2; -update noar ti set b1='63VLXO1C3D54A2' where id=2; -update noar tt set b2='JK2HLGFR8KK9F3KM3THI8' where id=2; -update noar ti set b2='JK2HLGFR8KK9F3KM3THI8' where id=2; -update noar tt set b0='BFIDS55EUYYHFCPQ7RVFZTZY35SDFP' where id=3; -update noar ti set b0='BFIDS55EUYYHFCPQ7RVFZTZY35SDFP' where id=3; -update noar tt set b1='UU6H2SZWJTX7MT8CH' where id=3; -update noar ti set b1='UU6H2SZWJTX7MT8CH' where id=3; -update noar tt set b2='JISET1GTB2PXR' where id=3; -update noar ti set b2='JISET1GTB2PXR' where id=3; -update noar tt set b0='E8PGHJ00E0EV8D9PJG44XKMWC1ZFPECH' where id=4; -update noar ti set b0='E8PGHJ00E0EV8D9PJG44XKMWC1ZFPECH' where id=4; -update noar tt set b1='XCO5EK1BCRPXK' where id=4; -update noar ti set b1='XCO5EK1BCRPXK' where id=4; -update noar tt set b2='N4DKM' where id=4; -update noar ti set b2='N4DKM' where id=4; -update noar tt set b0='4LGHUC2' where id=5; -update noar ti set b0='4LGHUC2' where id=5; -update noar tt set b1='SQG1PEBF3X44D0P4QI6936S93' where id=5; -update noar ti set b1='SQG1PEBF3X44D0P4QI6936S93' where id=5; -update noar tt set b2='V1SNEVI1QR31ZKJ5ZP4' where id=5; -update noar ti set b2='V1SNEVI1QR31ZKJ5ZP4' where id=5; -update noar tt set b0='8' where id=6; -update noar ti set b0='8' where id=6; -update noar tt set b1='LI9M938N2DY6O63RYS3' where id=6; -update noar ti set b1='LI9M938N2DY6O63RYS3' where id=6; -update noar tt set b2='I91ME1ZUAD6H2XO86WJK5BHEQS' where id=6; -update noar ti set b2='I91ME1ZUAD6H2XO86WJK5BHEQS' where id=6; -update noar tt set b0='ZDH6QOA6V42TN' where id=7; -update noar ti set b0='ZDH6QOA6V42TN' where id=7; -update noar tt set b1='OCIJD' where id=7; -update noar ti set b1='OCIJD' where id=7; -update noar tt set b2='NA9621YEEDZGASGE0' where id=7; -update noar ti set b2='NA9621YEEDZGASGE0' where id=7; -update noar tt set b0='7FGZFLEPTGIZZKZMRSMY9' where id=8; -update noar ti set b0='7FGZFLEPTGIZZKZMRSMY9' where id=8; -update noar tt set b1='61U3PWW00LL731GIOCZG' where id=8; -update noar ti set b1='61U3PWW00LL731GIOCZG' where id=8; -update noar tt set b2='4573VI901F86GDSDO4NL9661B' where id=8; -update noar ti set b2='4573VI901F86GDSDO4NL9661B' where id=8; -update noar tt set b0='BB1T3VLBBTF3J1JQIIM3' where id=9; -update noar ti set b0='BB1T3VLBBTF3J1JQIIM3' where id=9; -update noar tt set b1='YODBR' where id=9; -update noar ti set b1='YODBR' where id=9; -update noar tt set b2='PB6SXV8USIP4U0UQLUSONBQ0' where id=9; -update noar ti set b2='PB6SXV8USIP4U0UQLUSONBQ0' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - b0 text not null, - b1 text not null, - b2 longblob not null -) engine=tokudb; -insert into tt values (1,'','',''); -insert into tt values (2,'','',''); -insert into tt values (3,'','',''); -insert into tt values (4,'','',''); -insert into tt values (5,'','',''); -insert into tt values (6,'','',''); -insert into tt values (7,'','',''); -insert into tt values (8,'','',''); -insert into tt values (9,'','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set b0='31PKJM51YE4' where id=1; -update noar ti set b0='31PKJM51YE4' where id=1; -update noar tt set b1='WXXEI' where id=1; -update noar ti set b1='WXXEI' where id=1; -update noar tt set b2='YLN3FHUROB2FO2BR3DFS6' where id=1; -update noar ti set b2='YLN3FHUROB2FO2BR3DFS6' where id=1; -update noar tt set b0='HF4HBXQ6IS' where id=2; -update noar ti set b0='HF4HBXQ6IS' where id=2; -update noar tt set b1='Q8PDD' where id=2; -update noar ti set b1='Q8PDD' where id=2; -update noar tt set b2='O3X1SR3BJI2ZV9' where id=2; -update noar ti set b2='O3X1SR3BJI2ZV9' where id=2; -update noar tt set b0='UKDG5PRMIO4I' where id=3; -update noar ti set b0='UKDG5PRMIO4I' where id=3; -update noar tt set b1='JNO5J8O4NFBJEUN5QC8YH3VTBS4Y4' where id=3; -update noar ti set b1='JNO5J8O4NFBJEUN5QC8YH3VTBS4Y4' where id=3; -update noar tt set b2='MAEOTNCLB30YK2AP8N' where id=3; -update noar ti set b2='MAEOTNCLB30YK2AP8N' where id=3; -update noar tt set b0='NUBEYHPAOZOXHSY1TOLMN6F3JHXJ0Y72' where id=4; -update noar ti set b0='NUBEYHPAOZOXHSY1TOLMN6F3JHXJ0Y72' where id=4; -update noar tt set b1='RBR0JR6F6B8GWHK1W40BW4' where id=4; -update noar ti set b1='RBR0JR6F6B8GWHK1W40BW4' where id=4; -update noar tt set b2='X7WECAGSM9P5' where id=4; -update noar ti set b2='X7WECAGSM9P5' where id=4; -update noar tt set b0='DRVXBSP42P' where id=5; -update noar ti set b0='DRVXBSP42P' where id=5; -update noar tt set b1='MEO5' where id=5; -update noar ti set b1='MEO5' where id=5; -update noar tt set b2='NWR7410JBM0QX101I' where id=5; -update noar ti set b2='NWR7410JBM0QX101I' where id=5; -update noar tt set b0='U4LM8OY6H744' where id=6; -update noar ti set b0='U4LM8OY6H744' where id=6; -update noar tt set b1='JZLIYZVWLOSH7RQ6' where id=6; -update noar ti set b1='JZLIYZVWLOSH7RQ6' where id=6; -update noar tt set b2='AK7ERXV9UDLOAUFC6ZD8Z' where id=6; -update noar ti set b2='AK7ERXV9UDLOAUFC6ZD8Z' where id=6; -update noar tt set b0='EI13RVZEBO' where id=7; -update noar ti set b0='EI13RVZEBO' where id=7; -update noar tt set b1='MOKVMZ9NOFBE5MZ1R3' where id=7; -update noar ti set b1='MOKVMZ9NOFBE5MZ1R3' where id=7; -update noar tt set b2='IS1909KHX46Y52T75' where id=7; -update noar ti set b2='IS1909KHX46Y52T75' where id=7; -update noar tt set b0='7IAF' where id=8; -update noar ti set b0='7IAF' where id=8; -update noar tt set b1='V53X6XCV3KSPPXJV' where id=8; -update noar ti set b1='V53X6XCV3KSPPXJV' where id=8; -update noar tt set b2='F15HUXD0D2Z' where id=8; -update noar ti set b2='F15HUXD0D2Z' where id=8; -update noar tt set b0='7SA2WI9HJ16JCG92O78I0' where id=9; -update noar ti set b0='7SA2WI9HJ16JCG92O78I0' where id=9; -update noar tt set b1='QYVUDKJ' where id=9; -update noar ti set b1='QYVUDKJ' where id=9; -update noar tt set b2='75EKSBDTZEY6ZMUSR9RG99LKG3I' where id=9; -update noar ti set b2='75EKSBDTZEY6ZMUSR9RG99LKG3I' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - b0 text null, - b1 text null, - b2 text null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set b0='KGT2OUVZ4RW75Z720HTRXUEUT0C9L' where id=1; -update noar ti set b0='KGT2OUVZ4RW75Z720HTRXUEUT0C9L' where id=1; -update noar tt set b1='7VVLWMQ5RZI49LQ3CYGTBW37VRV1C08Y' where id=1; -update noar ti set b1='7VVLWMQ5RZI49LQ3CYGTBW37VRV1C08Y' where id=1; -update noar tt set b2='UHM3PVVOFK' where id=1; -update noar ti set b2='UHM3PVVOFK' where id=1; -update noar tt set b0='3WLFBVTSTFOAR1H6LZJII57' where id=2; -update noar ti set b0='3WLFBVTSTFOAR1H6LZJII57' where id=2; -update noar tt set b1='3RV5I3S44HLJ5C22YE1V1LZHV4XU5O7' where id=2; -update noar ti set b1='3RV5I3S44HLJ5C22YE1V1LZHV4XU5O7' where id=2; -update noar tt set b2='EH' where id=2; -update noar ti set b2='EH' where id=2; -update noar tt set b0='04K67BHVGEVC2IIE' where id=3; -update noar ti set b0='04K67BHVGEVC2IIE' where id=3; -update noar tt set b1='VQRJQFRDPSN2EO88GU84C' where id=3; -update noar ti set b1='VQRJQFRDPSN2EO88GU84C' where id=3; -update noar tt set b2='0E' where id=3; -update noar ti set b2='0E' where id=3; -update noar tt set b0='Z4KC4F123J711' where id=4; -update noar ti set b0='Z4KC4F123J711' where id=4; -update noar tt set b1='K07' where id=4; -update noar ti set b1='K07' where id=4; -update noar tt set b2='3CEN03R' where id=4; -update noar ti set b2='3CEN03R' where id=4; -update noar tt set b0='LZXPD2UT' where id=5; -update noar ti set b0='LZXPD2UT' where id=5; -update noar tt set b1='E386' where id=5; -update noar ti set b1='E386' where id=5; -update noar tt set b2='N6V64UW' where id=5; -update noar ti set b2='N6V64UW' where id=5; -update noar tt set b0='MZE3EVZ0GTQ847GEAHQ' where id=6; -update noar ti set b0='MZE3EVZ0GTQ847GEAHQ' where id=6; -update noar tt set b1='4J0F9WUCWY06C5IV9QBLUXXE1' where id=6; -update noar ti set b1='4J0F9WUCWY06C5IV9QBLUXXE1' where id=6; -update noar tt set b2='FRCJF1683XAKVEE' where id=6; -update noar ti set b2='FRCJF1683XAKVEE' where id=6; -update noar tt set b0='DR8V3B9VRB8UWPKDYNWN9VN14B' where id=7; -update noar ti set b0='DR8V3B9VRB8UWPKDYNWN9VN14B' where id=7; -update noar tt set b1='OTNQCJDJRKVUXXPU' where id=7; -update noar ti set b1='OTNQCJDJRKVUXXPU' where id=7; -update noar tt set b2='BIIJLOMAME661KQ7A2' where id=7; -update noar ti set b2='BIIJLOMAME661KQ7A2' where id=7; -update noar tt set b0='IS17X2UTDBJQBKOHQ997MQAFM7XK' where id=8; -update noar ti set b0='IS17X2UTDBJQBKOHQ997MQAFM7XK' where id=8; -update noar tt set b1='4103QO4O9HPIZ7Z970RORJ85J99QU2J2' where id=8; -update noar ti set b1='4103QO4O9HPIZ7Z970RORJ85J99QU2J2' where id=8; -update noar tt set b2='AWCPPC74S89S7GBV9ZZMJJN2CZX' where id=8; -update noar ti set b2='AWCPPC74S89S7GBV9ZZMJJN2CZX' where id=8; -update noar tt set b0='7373' where id=9; -update noar ti set b0='7373' where id=9; -update noar tt set b1='42O9AXDJDCC6GCTD7FI7' where id=9; -update noar ti set b1='42O9AXDJDCC6GCTD7FI7' where id=9; -update noar tt set b2='GO6MZKMUBB318SARJ' where id=9; -update noar ti set b2='GO6MZKMUBB318SARJ' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - b0 text not null, - b1 text not null, - b2 text not null -) engine=tokudb; -insert into tt values (1,'','',''); -insert into tt values (2,'','',''); -insert into tt values (3,'','',''); -insert into tt values (4,'','',''); -insert into tt values (5,'','',''); -insert into tt values (6,'','',''); -insert into tt values (7,'','',''); -insert into tt values (8,'','',''); -insert into tt values (9,'','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set b0='BN5I0IAG1H81K6N61ZL5DLGEEMR' where id=1; -update noar ti set b0='BN5I0IAG1H81K6N61ZL5DLGEEMR' where id=1; -update noar tt set b1='VI48T0MVLTMP21BJS607BACKW8' where id=1; -update noar ti set b1='VI48T0MVLTMP21BJS607BACKW8' where id=1; -update noar tt set b2='LR' where id=1; -update noar ti set b2='LR' where id=1; -update noar tt set b0='AOJ79MI3DOM7BB6IVCV4CN8' where id=2; -update noar ti set b0='AOJ79MI3DOM7BB6IVCV4CN8' where id=2; -update noar tt set b1='WSXB92NDOIWDCLCQGD2LM4CZX' where id=2; -update noar ti set b1='WSXB92NDOIWDCLCQGD2LM4CZX' where id=2; -update noar tt set b2='KNHK' where id=2; -update noar ti set b2='KNHK' where id=2; -update noar tt set b0='2G9N7R6EFQA7JE13ATMA3AH357VDS' where id=3; -update noar ti set b0='2G9N7R6EFQA7JE13ATMA3AH357VDS' where id=3; -update noar tt set b1='WJYP9XQVJ8RKEPQAGV' where id=3; -update noar ti set b1='WJYP9XQVJ8RKEPQAGV' where id=3; -update noar tt set b2='BFXR1STWUZY9RM' where id=3; -update noar ti set b2='BFXR1STWUZY9RM' where id=3; -update noar tt set b0='K0F3W234B0LZY6' where id=4; -update noar ti set b0='K0F3W234B0LZY6' where id=4; -update noar tt set b1='O5T9Y10C8OED2OC92ZJ8AB5WBCXCOB9S' where id=4; -update noar ti set b1='O5T9Y10C8OED2OC92ZJ8AB5WBCXCOB9S' where id=4; -update noar tt set b2='GBUS6Y9ECF' where id=4; -update noar ti set b2='GBUS6Y9ECF' where id=4; -update noar tt set b0='ZHC' where id=5; -update noar ti set b0='ZHC' where id=5; -update noar tt set b1='DQR9P5VSSBA01WQ' where id=5; -update noar ti set b1='DQR9P5VSSBA01WQ' where id=5; -update noar tt set b2='5' where id=5; -update noar ti set b2='5' where id=5; -update noar tt set b0='6T62BGHYI4JSUP45AT2ANX5' where id=6; -update noar ti set b0='6T62BGHYI4JSUP45AT2ANX5' where id=6; -update noar tt set b1='2XP9KMPQM56VQAPFI9H4CMMM4BW' where id=6; -update noar ti set b1='2XP9KMPQM56VQAPFI9H4CMMM4BW' where id=6; -update noar tt set b2='0QZ5R40' where id=6; -update noar ti set b2='0QZ5R40' where id=6; -update noar tt set b0='CXCL4RYSR57W7V3G1QK3M5W0ZH7' where id=7; -update noar ti set b0='CXCL4RYSR57W7V3G1QK3M5W0ZH7' where id=7; -update noar tt set b1='0HJLH1JK' where id=7; -update noar ti set b1='0HJLH1JK' where id=7; -update noar tt set b2='R09YIQW78' where id=7; -update noar ti set b2='R09YIQW78' where id=7; -update noar tt set b0='QLDCVCMHCISPBS8H9I' where id=8; -update noar ti set b0='QLDCVCMHCISPBS8H9I' where id=8; -update noar tt set b1='9Z1MCQY6GN5CVGWTE266LIE' where id=8; -update noar ti set b1='9Z1MCQY6GN5CVGWTE266LIE' where id=8; -update noar tt set b2='2IQ4JF3X0RK181I7DKZY' where id=8; -update noar ti set b2='2IQ4JF3X0RK181I7DKZY' where id=8; -update noar tt set b0='UDWIQTSM59BA8DBSPNLYS0EEJDFCFG' where id=9; -update noar ti set b0='UDWIQTSM59BA8DBSPNLYS0EEJDFCFG' where id=9; -update noar tt set b1='L' where id=9; -update noar ti set b1='L' where id=9; -update noar tt set b2='OQ22J6SMTSA0KSHTMU' where id=9; -update noar ti set b2='OQ22J6SMTSA0KSHTMU' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; +--source ../include/fast_update_gen_header.inc + +--let GENERATED=$MYSQL_TMP_DIR/generated_fast_update_blobs.inc + +--perl + + my $nrows = 10; + open(FILE, '>', "$ENV{GENERATED}") or die; + my @blob_types = ('tinyblob', 'blob', 'mediumblob', 'longblob', 'text'); + foreach my $a (@blob_types) { + foreach my $b (@blob_types) { + foreach my $c (@blob_types) { + foreach my $n ('null', 'not null') { + test_blobs([$a, $b, $c], $n, $nrows); + } + } + } + } + close FILE; + + sub test_blobs { + my $cols = shift; + my $n = shift; + my $nrows = shift; + + print FILE 'create table tt (id bigint unsigned primary key,'; + foreach my $i (0 .. $#{$cols}) { + if ($i < $#{$cols}) { + print FILE " b$i $cols->[$i] $n, "; + } + else { + print FILE "b$i $cols->[$i] $n"; + } + + } + print FILE ") engine=tokudb;\n"; + + foreach my $id (1 .. $nrows) { + if ($n eq 'null') { + print FILE "insert into tt (id) values ($id);\n"; + } + else { + print FILE "insert into tt values ($id,'','','');\n"; + } + } + + print FILE "create table ti like tt;\n"; + print FILE "alter table ti engine=innodb;\n"; + print FILE "insert into ti select * from tt;\n"; + + foreach my $id (1 .. $nrows) { + foreach my $i (0 .. $#{$cols}) { + my $long_str = rnd_str((rand(32) + 1), ("A" .. "Z", 0 .. 9)); + print FILE "update tt set b$i='$long_str' where id=$id;\n"; + print FILE "update ti set b$i='$long_str' where id=$id;\n"; + } + } + + print FILE '--let $diff_tables = test.tt, test.ti'."\n"; + print FILE '--source include/diff_tables.inc'."\n"; + print FILE 'drop table tt, ti;'; + } + + sub rnd_str { join '', @_[ map{ rand @_ } 1 .. shift ] } + +EOF + +--source ../include/fast_update_gen_footer_silent.inc diff --git a/storage/tokudb/mysql-test/tokudb/t/fast_update_blobs_fixed_varchar.py b/storage/tokudb/mysql-test/tokudb/t/fast_update_blobs_fixed_varchar.py deleted file mode 100644 index 6288b5b2a53..00000000000 --- a/storage/tokudb/mysql-test/tokudb/t/fast_update_blobs_fixed_varchar.py +++ /dev/null @@ -1,63 +0,0 @@ -#!/usr/bin/env python - -import sys -import random -import string - -def main(): - print "# generated by tokudb_fast_update_blobs_fixed_varchar.py" - print "source include/have_tokudb.inc;" - print "source include/have_innodb.inc;" - print "set default_storage_engine='tokudb';" - print "disable_warnings;" - print "drop table if exists t;" - print "enable_warnings;" - - nrows = 10 - - blob_types = [ 'tinyblob', 'blob', 'mediumblob', 'longblob' ] - for a in blob_types: - for b in blob_types: - for c in blob_types: - for n in [ 'null', 'not null' ]: - for v in [ 'varchar(32)', 'varchar(256)' ]: - test_blobs([ a, b, c ] , v, n, nrows) - return 0 - -def test_blobs(cols, v, n, nrows): - print "create table tt (id bigint unsigned primary key," - print " f0 int %s," % (n) - print " v0 %s %s," % (v, n) - for i in range(len(cols)): - if i < len(cols)-1: - print " b%d %s %s," % (i, cols[i], n) - else: - print " b%d %s %s" % (i, cols[i], n) - print ") engine=tokudb;" - - for id in range(1,nrows): - if n == 'null': - print "insert into tt (id) values (%d);" % (id) - else: - print "insert into tt values (%d,0,'','','','');" % (id) - - print "create table ti like tt;" - print "alter table ti engine=innodb;" - print "insert into ti select * from tt;" - - for id in range(1,nrows): - for i in range(3): - long_str = ''.join(random.choice(string.ascii_uppercase + string.digits) for x in range(random.randint(1,32))) - print "update noar tt set v%d='%s' where id=%d;" % (0, long_str, id) - print "update noar ti set v%d='%s' where id=%d;" % (0, long_str, id) - - long_str = ''.join(random.choice(string.ascii_uppercase + string.digits) for x in range(random.randint(1,32))) - print "update noar tt set b%d='%s' where id=%d;" % (i, long_str, id) - print "update noar ti set b%d='%s' where id=%d;" % (i, long_str, id) - - print "let $diff_tables = test.tt, test.ti;" - print "source include/diff_tables.inc;" - - print "drop table tt, ti;" - -sys.exit(main()) diff --git a/storage/tokudb/mysql-test/tokudb/t/fast_update_blobs_fixed_varchar.test b/storage/tokudb/mysql-test/tokudb/t/fast_update_blobs_fixed_varchar.test deleted file mode 100644 index c4df1a29f39..00000000000 --- a/storage/tokudb/mysql-test/tokudb/t/fast_update_blobs_fixed_varchar.test +++ /dev/null @@ -1,33287 +0,0 @@ -# generated by tokudb_fast_update_blobs_fixed_varchar.py -source include/have_tokudb.inc; -source include/have_innodb.inc; -set default_storage_engine='tokudb'; -disable_warnings; -drop table if exists t; -enable_warnings; -create table tt (id bigint unsigned primary key, - f0 int null, - v0 varchar(32) null, - b0 tinyblob null, - b1 tinyblob null, - b2 tinyblob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='UP9F5O0JN4QXD8HH' where id=1; -update noar ti set v0='UP9F5O0JN4QXD8HH' where id=1; -update noar tt set b0='EQGX2U37E6GA0YSE85' where id=1; -update noar ti set b0='EQGX2U37E6GA0YSE85' where id=1; -update noar tt set v0='EAYWOECTE' where id=1; -update noar ti set v0='EAYWOECTE' where id=1; -update noar tt set b1='3DQMQ1AYYQMVH7KIDGQRPPYR2DG5L4FX' where id=1; -update noar ti set b1='3DQMQ1AYYQMVH7KIDGQRPPYR2DG5L4FX' where id=1; -update noar tt set v0='QAAYX2OSCJTKYCHQPOEVKQBB13B4U' where id=1; -update noar ti set v0='QAAYX2OSCJTKYCHQPOEVKQBB13B4U' where id=1; -update noar tt set b2='R7P1J6O112EUCRDX0WCD7IDVXRJ68' where id=1; -update noar ti set b2='R7P1J6O112EUCRDX0WCD7IDVXRJ68' where id=1; -update noar tt set v0='C2G3ODA9SGFXDOKM15LR9ZD8X' where id=2; -update noar ti set v0='C2G3ODA9SGFXDOKM15LR9ZD8X' where id=2; -update noar tt set b0='P2AACV03N5JCQ' where id=2; -update noar ti set b0='P2AACV03N5JCQ' where id=2; -update noar tt set v0='B6I2SNUZO7BF17MH8EN7WHCPCIE1NB' where id=2; -update noar ti set v0='B6I2SNUZO7BF17MH8EN7WHCPCIE1NB' where id=2; -update noar tt set b1='P39L5F08ZPVJE010T1ACA9ROE5Y5KWK' where id=2; -update noar ti set b1='P39L5F08ZPVJE010T1ACA9ROE5Y5KWK' where id=2; -update noar tt set v0='UEX612R01T443' where id=2; -update noar ti set v0='UEX612R01T443' where id=2; -update noar tt set b2='9BXWW9NT7MJPZH6E4LW' where id=2; -update noar ti set b2='9BXWW9NT7MJPZH6E4LW' where id=2; -update noar tt set v0='8VRY65Q0PZXYZMEWB7PAD08KK5T90973' where id=3; -update noar ti set v0='8VRY65Q0PZXYZMEWB7PAD08KK5T90973' where id=3; -update noar tt set b0='VN13VOB0DINTY1UYRUZQF1ASFG' where id=3; -update noar ti set b0='VN13VOB0DINTY1UYRUZQF1ASFG' where id=3; -update noar tt set v0='NKWSR6DE2RCFOSHBOWLUUDZ9CL4T8' where id=3; -update noar ti set v0='NKWSR6DE2RCFOSHBOWLUUDZ9CL4T8' where id=3; -update noar tt set b1='QB' where id=3; -update noar ti set b1='QB' where id=3; -update noar tt set v0='2EKWUEP95ULXGJB4OF' where id=3; -update noar ti set v0='2EKWUEP95ULXGJB4OF' where id=3; -update noar tt set b2='Q6IYFN' where id=3; -update noar ti set b2='Q6IYFN' where id=3; -update noar tt set v0='IKQCVMC' where id=4; -update noar ti set v0='IKQCVMC' where id=4; -update noar tt set b0='N535EEK3NPFVSLTB2FAFWRROGD744ZN' where id=4; -update noar ti set b0='N535EEK3NPFVSLTB2FAFWRROGD744ZN' where id=4; -update noar tt set v0='QHNVMNDLY3G4WOVP' where id=4; -update noar ti set v0='QHNVMNDLY3G4WOVP' where id=4; -update noar tt set b1='HDPRGT6XXXGVMZKEN9DN9' where id=4; -update noar ti set b1='HDPRGT6XXXGVMZKEN9DN9' where id=4; -update noar tt set v0='CV12CSM2AVQGZPHXA3Y2' where id=4; -update noar ti set v0='CV12CSM2AVQGZPHXA3Y2' where id=4; -update noar tt set b2='CW7Z0PVFFDQ8CK' where id=4; -update noar ti set b2='CW7Z0PVFFDQ8CK' where id=4; -update noar tt set v0='7SC69BS2SHACUDZVAT8KFC4' where id=5; -update noar ti set v0='7SC69BS2SHACUDZVAT8KFC4' where id=5; -update noar tt set b0='JDNI7VC' where id=5; -update noar ti set b0='JDNI7VC' where id=5; -update noar tt set v0='5SBZI8TP' where id=5; -update noar ti set v0='5SBZI8TP' where id=5; -update noar tt set b1='RTFVTNJXKCRHBSGJRY0IZN' where id=5; -update noar ti set b1='RTFVTNJXKCRHBSGJRY0IZN' where id=5; -update noar tt set v0='56VE0IR8LWSTMCHM' where id=5; -update noar ti set v0='56VE0IR8LWSTMCHM' where id=5; -update noar tt set b2='3FSJ78' where id=5; -update noar ti set b2='3FSJ78' where id=5; -update noar tt set v0='2X4Q8S76IL22ER5A2GVT' where id=6; -update noar ti set v0='2X4Q8S76IL22ER5A2GVT' where id=6; -update noar tt set b0='Y9101E34S6Z2OYB5MDYQPZGCM3IZL7' where id=6; -update noar ti set b0='Y9101E34S6Z2OYB5MDYQPZGCM3IZL7' where id=6; -update noar tt set v0='YQQR77N2QTM' where id=6; -update noar ti set v0='YQQR77N2QTM' where id=6; -update noar tt set b1='1ZALS3OP2JRCSCO8H66BE09WV8HC' where id=6; -update noar ti set b1='1ZALS3OP2JRCSCO8H66BE09WV8HC' where id=6; -update noar tt set v0='D8QT15LKKEJFNJG298Q77ZU' where id=6; -update noar ti set v0='D8QT15LKKEJFNJG298Q77ZU' where id=6; -update noar tt set b2='HYLO1AYTN' where id=6; -update noar ti set b2='HYLO1AYTN' where id=6; -update noar tt set v0='UFIWRPMOVW5C' where id=7; -update noar ti set v0='UFIWRPMOVW5C' where id=7; -update noar tt set b0='PES1N2P9GMTJDLGJAP5QDVQ4BNG' where id=7; -update noar ti set b0='PES1N2P9GMTJDLGJAP5QDVQ4BNG' where id=7; -update noar tt set v0='VLAQQZAT' where id=7; -update noar ti set v0='VLAQQZAT' where id=7; -update noar tt set b1='73FP' where id=7; -update noar ti set b1='73FP' where id=7; -update noar tt set v0='4DU1OB96AM6WMHZDR24WNN7NPI4' where id=7; -update noar ti set v0='4DU1OB96AM6WMHZDR24WNN7NPI4' where id=7; -update noar tt set b2='G1RF3N24F1U8L9I589U8WMO' where id=7; -update noar ti set b2='G1RF3N24F1U8L9I589U8WMO' where id=7; -update noar tt set v0='UYF92O382IWRRQ6MM1ZFAPQNZ8' where id=8; -update noar ti set v0='UYF92O382IWRRQ6MM1ZFAPQNZ8' where id=8; -update noar tt set b0='8KTWN9NSBQT6' where id=8; -update noar ti set b0='8KTWN9NSBQT6' where id=8; -update noar tt set v0='942BQ1D9B' where id=8; -update noar ti set v0='942BQ1D9B' where id=8; -update noar tt set b1='3IFV1B2FJY' where id=8; -update noar ti set b1='3IFV1B2FJY' where id=8; -update noar tt set v0='87I84MN9HJUQKYIFDPBRHR1' where id=8; -update noar ti set v0='87I84MN9HJUQKYIFDPBRHR1' where id=8; -update noar tt set b2='LYY8ML7GUN7UJ7IX53RYP2L' where id=8; -update noar ti set b2='LYY8ML7GUN7UJ7IX53RYP2L' where id=8; -update noar tt set v0='2XKR0RNJJPIN3Y4H' where id=9; -update noar ti set v0='2XKR0RNJJPIN3Y4H' where id=9; -update noar tt set b0='LDO4E' where id=9; -update noar ti set b0='LDO4E' where id=9; -update noar tt set v0='WHMJ' where id=9; -update noar ti set v0='WHMJ' where id=9; -update noar tt set b1='J2LM4S9MV' where id=9; -update noar ti set b1='J2LM4S9MV' where id=9; -update noar tt set v0='XXZEOMP3LRDU' where id=9; -update noar ti set v0='XXZEOMP3LRDU' where id=9; -update noar tt set b2='IE' where id=9; -update noar ti set b2='IE' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - f0 int null, - v0 varchar(256) null, - b0 tinyblob null, - b1 tinyblob null, - b2 tinyblob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='FV4DRG1LHP44HGV4NZR7TVIEWZ' where id=1; -update noar ti set v0='FV4DRG1LHP44HGV4NZR7TVIEWZ' where id=1; -update noar tt set b0='FS5PN4X2B32UINXW99V' where id=1; -update noar ti set b0='FS5PN4X2B32UINXW99V' where id=1; -update noar tt set v0='8MUQ8W189DGFJ5A8N8UO7NX2196MC07X' where id=1; -update noar ti set v0='8MUQ8W189DGFJ5A8N8UO7NX2196MC07X' where id=1; -update noar tt set b1='GZ3JC972E2NQEJ11M9IBZBTCXN' where id=1; -update noar ti set b1='GZ3JC972E2NQEJ11M9IBZBTCXN' where id=1; -update noar tt set v0='RHDYV4J2V78CSQI64WTQQV5MXGCR' where id=1; -update noar ti set v0='RHDYV4J2V78CSQI64WTQQV5MXGCR' where id=1; -update noar tt set b2='8MRPKVQM95Z6KHLNISO' where id=1; -update noar ti set b2='8MRPKVQM95Z6KHLNISO' where id=1; -update noar tt set v0='DXDUTO3S' where id=2; -update noar ti set v0='DXDUTO3S' where id=2; -update noar tt set b0='0I3UWLX861OUTPKVS4BN0XY' where id=2; -update noar ti set b0='0I3UWLX861OUTPKVS4BN0XY' where id=2; -update noar tt set v0='JXTIVEBV5XAVAO5D8' where id=2; -update noar ti set v0='JXTIVEBV5XAVAO5D8' where id=2; -update noar tt set b1='OLK6YMPAX' where id=2; -update noar ti set b1='OLK6YMPAX' where id=2; -update noar tt set v0='PKSX8' where id=2; -update noar ti set v0='PKSX8' where id=2; -update noar tt set b2='TR3HACE395' where id=2; -update noar ti set b2='TR3HACE395' where id=2; -update noar tt set v0='RVDWQJWJ7WJ31' where id=3; -update noar ti set v0='RVDWQJWJ7WJ31' where id=3; -update noar tt set b0='IWLR3WDB4URQJ325UVOPSAAQFE75K' where id=3; -update noar ti set b0='IWLR3WDB4URQJ325UVOPSAAQFE75K' where id=3; -update noar tt set v0='ICKMSBE7BB6XKU20326K' where id=3; -update noar ti set v0='ICKMSBE7BB6XKU20326K' where id=3; -update noar tt set b1='UNCMR8LMHNRPIV7TPUEA0WETDA' where id=3; -update noar ti set b1='UNCMR8LMHNRPIV7TPUEA0WETDA' where id=3; -update noar tt set v0='U8J0B0QD78HJJUJHB7A9R4CW27PBCEI' where id=3; -update noar ti set v0='U8J0B0QD78HJJUJHB7A9R4CW27PBCEI' where id=3; -update noar tt set b2='9O6QERAE1N5HA2ZX8XFOUVM90UANZQ' where id=3; -update noar ti set b2='9O6QERAE1N5HA2ZX8XFOUVM90UANZQ' where id=3; -update noar tt set v0='7AHJNKB1Z8U' where id=4; -update noar ti set v0='7AHJNKB1Z8U' where id=4; -update noar tt set b0='ZCTM9I' where id=4; -update noar ti set b0='ZCTM9I' where id=4; -update noar tt set v0='I8831J2C65TMWH9QG' where id=4; -update noar ti set v0='I8831J2C65TMWH9QG' where id=4; -update noar tt set b1='57GZ4NT0' where id=4; -update noar ti set b1='57GZ4NT0' where id=4; -update noar tt set v0='4ALMNYRG2AIWX1X5PUL7' where id=4; -update noar ti set v0='4ALMNYRG2AIWX1X5PUL7' where id=4; -update noar tt set b2='G8VLK2UJHDKN0CKREQU2V05HMDXT' where id=4; -update noar ti set b2='G8VLK2UJHDKN0CKREQU2V05HMDXT' where id=4; -update noar tt set v0='IFK8SRQR7OLE' where id=5; -update noar ti set v0='IFK8SRQR7OLE' where id=5; -update noar tt set b0='357P3X2S0R9V6ZXUWS' where id=5; -update noar ti set b0='357P3X2S0R9V6ZXUWS' where id=5; -update noar tt set v0='LFFTV125YF8EWV8U5PWY7LFHI5O5' where id=5; -update noar ti set v0='LFFTV125YF8EWV8U5PWY7LFHI5O5' where id=5; -update noar tt set b1='UG7KBKA931KNNT8TES3GY8XTQ' where id=5; -update noar ti set b1='UG7KBKA931KNNT8TES3GY8XTQ' where id=5; -update noar tt set v0='RK0Z2K1' where id=5; -update noar ti set v0='RK0Z2K1' where id=5; -update noar tt set b2='U6RCPA' where id=5; -update noar ti set b2='U6RCPA' where id=5; -update noar tt set v0='4MVHJPMHU72F5WMTA' where id=6; -update noar ti set v0='4MVHJPMHU72F5WMTA' where id=6; -update noar tt set b0='KCBTKDVRMH95K92' where id=6; -update noar ti set b0='KCBTKDVRMH95K92' where id=6; -update noar tt set v0='PDEJJ3T7IRI1LH4FVNM904PEN3ST108' where id=6; -update noar ti set v0='PDEJJ3T7IRI1LH4FVNM904PEN3ST108' where id=6; -update noar tt set b1='XM9OQPKZOBE' where id=6; -update noar ti set b1='XM9OQPKZOBE' where id=6; -update noar tt set v0='SZ7FDMF2E62FOJ8' where id=6; -update noar ti set v0='SZ7FDMF2E62FOJ8' where id=6; -update noar tt set b2='0C' where id=6; -update noar ti set b2='0C' where id=6; -update noar tt set v0='H9PXC7IBJFEPO' where id=7; -update noar ti set v0='H9PXC7IBJFEPO' where id=7; -update noar tt set b0='BIAS' where id=7; -update noar ti set b0='BIAS' where id=7; -update noar tt set v0='FZTAA5N6G74ZAF96QTK' where id=7; -update noar ti set v0='FZTAA5N6G74ZAF96QTK' where id=7; -update noar tt set b1='91IPC' where id=7; -update noar ti set b1='91IPC' where id=7; -update noar tt set v0='FZ5J' where id=7; -update noar ti set v0='FZ5J' where id=7; -update noar tt set b2='9B8XON1A2SIVAXVL6SOUSATA4JABU' where id=7; -update noar ti set b2='9B8XON1A2SIVAXVL6SOUSATA4JABU' where id=7; -update noar tt set v0='7UE62ORJT08A5' where id=8; -update noar ti set v0='7UE62ORJT08A5' where id=8; -update noar tt set b0='R7' where id=8; -update noar ti set b0='R7' where id=8; -update noar tt set v0='HUAN1GQIYG97GDIZA8RDTZSWPPY' where id=8; -update noar ti set v0='HUAN1GQIYG97GDIZA8RDTZSWPPY' where id=8; -update noar tt set b1='Y90' where id=8; -update noar ti set b1='Y90' where id=8; -update noar tt set v0='4TPOP' where id=8; -update noar ti set v0='4TPOP' where id=8; -update noar tt set b2='25CO3E822C8V0U51C0EOES2ZTAB4CZ0' where id=8; -update noar ti set b2='25CO3E822C8V0U51C0EOES2ZTAB4CZ0' where id=8; -update noar tt set v0='TTSNQKRUK85MVP9IPBMRY94C59' where id=9; -update noar ti set v0='TTSNQKRUK85MVP9IPBMRY94C59' where id=9; -update noar tt set b0='5D6JG1GGEMMH1X' where id=9; -update noar ti set b0='5D6JG1GGEMMH1X' where id=9; -update noar tt set v0='06RZDZW60' where id=9; -update noar ti set v0='06RZDZW60' where id=9; -update noar tt set b1='BNZ0U' where id=9; -update noar ti set b1='BNZ0U' where id=9; -update noar tt set v0='78Y8EGDRPM14PNR2DMXOZ1NC2FKF' where id=9; -update noar ti set v0='78Y8EGDRPM14PNR2DMXOZ1NC2FKF' where id=9; -update noar tt set b2='OOT1X' where id=9; -update noar ti set b2='OOT1X' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - f0 int not null, - v0 varchar(32) not null, - b0 tinyblob not null, - b1 tinyblob not null, - b2 tinyblob not null -) engine=tokudb; -insert into tt values (1,0,'','','',''); -insert into tt values (2,0,'','','',''); -insert into tt values (3,0,'','','',''); -insert into tt values (4,0,'','','',''); -insert into tt values (5,0,'','','',''); -insert into tt values (6,0,'','','',''); -insert into tt values (7,0,'','','',''); -insert into tt values (8,0,'','','',''); -insert into tt values (9,0,'','','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='VAKDKACN7UGM3' where id=1; -update noar ti set v0='VAKDKACN7UGM3' where id=1; -update noar tt set b0='2INNKXHAQ9C6QM' where id=1; -update noar ti set b0='2INNKXHAQ9C6QM' where id=1; -update noar tt set v0='W3SXABYIYYNHYMO1Q1XUMRTA0Z' where id=1; -update noar ti set v0='W3SXABYIYYNHYMO1Q1XUMRTA0Z' where id=1; -update noar tt set b1='FXWR8OYZTZ4BC8I5OBL3VM0AU' where id=1; -update noar ti set b1='FXWR8OYZTZ4BC8I5OBL3VM0AU' where id=1; -update noar tt set v0='UPTOQLZMLDGIHUPJZCK1Q' where id=1; -update noar ti set v0='UPTOQLZMLDGIHUPJZCK1Q' where id=1; -update noar tt set b2='P52EODM7ILUW9D3HJPK3PX3ZYP2M9J4V' where id=1; -update noar ti set b2='P52EODM7ILUW9D3HJPK3PX3ZYP2M9J4V' where id=1; -update noar tt set v0='G10QH4YXOPZW' where id=2; -update noar ti set v0='G10QH4YXOPZW' where id=2; -update noar tt set b0='4KEAGOEA922JI911K5PJ439' where id=2; -update noar ti set b0='4KEAGOEA922JI911K5PJ439' where id=2; -update noar tt set v0='CHOEPH6F' where id=2; -update noar ti set v0='CHOEPH6F' where id=2; -update noar tt set b1='KU1B83' where id=2; -update noar ti set b1='KU1B83' where id=2; -update noar tt set v0='HB5QQAP698WR4AVNF6' where id=2; -update noar ti set v0='HB5QQAP698WR4AVNF6' where id=2; -update noar tt set b2='WEIJ1BMVXJBDAKK2R7' where id=2; -update noar ti set b2='WEIJ1BMVXJBDAKK2R7' where id=2; -update noar tt set v0='JHSI1SUOPI8L8ACQPUB05HNP0B59' where id=3; -update noar ti set v0='JHSI1SUOPI8L8ACQPUB05HNP0B59' where id=3; -update noar tt set b0='T6FJIH8XKBRTG5WIOB' where id=3; -update noar ti set b0='T6FJIH8XKBRTG5WIOB' where id=3; -update noar tt set v0='OQLCJ4W6EM5' where id=3; -update noar ti set v0='OQLCJ4W6EM5' where id=3; -update noar tt set b1='GC84AGICWXQM1PKZH7382T1NZH8J' where id=3; -update noar ti set b1='GC84AGICWXQM1PKZH7382T1NZH8J' where id=3; -update noar tt set v0='RVW26FZ1FYIP7LWEDXN5DKT' where id=3; -update noar ti set v0='RVW26FZ1FYIP7LWEDXN5DKT' where id=3; -update noar tt set b2='ALVUZTUO87J1HFHLIVTOMI2P' where id=3; -update noar ti set b2='ALVUZTUO87J1HFHLIVTOMI2P' where id=3; -update noar tt set v0='UPQFDFLILA9GMY8ZP' where id=4; -update noar ti set v0='UPQFDFLILA9GMY8ZP' where id=4; -update noar tt set b0='8VO13VMPUE0RNQTR66Q5FG5CUMWIKUIG' where id=4; -update noar ti set b0='8VO13VMPUE0RNQTR66Q5FG5CUMWIKUIG' where id=4; -update noar tt set v0='28WY6FGO5LO7TY9F6ADVHSHHZLF0BDF' where id=4; -update noar ti set v0='28WY6FGO5LO7TY9F6ADVHSHHZLF0BDF' where id=4; -update noar tt set b1='6A' where id=4; -update noar ti set b1='6A' where id=4; -update noar tt set v0='NVQ2G891R7J1VFPWIQMPRKZ9P6U3' where id=4; -update noar ti set v0='NVQ2G891R7J1VFPWIQMPRKZ9P6U3' where id=4; -update noar tt set b2='VACFHQB260KA8FSHD' where id=4; -update noar ti set b2='VACFHQB260KA8FSHD' where id=4; -update noar tt set v0='UQ04H702XE3' where id=5; -update noar ti set v0='UQ04H702XE3' where id=5; -update noar tt set b0='4WK90T' where id=5; -update noar ti set b0='4WK90T' where id=5; -update noar tt set v0='G0X4UU92GBWF7MRMXLRIKFMTVL9QVFWO' where id=5; -update noar ti set v0='G0X4UU92GBWF7MRMXLRIKFMTVL9QVFWO' where id=5; -update noar tt set b1='67' where id=5; -update noar ti set b1='67' where id=5; -update noar tt set v0='62SKJ7JK11UR43YI385HCHI' where id=5; -update noar ti set v0='62SKJ7JK11UR43YI385HCHI' where id=5; -update noar tt set b2='FSB6QPRBEE6DY' where id=5; -update noar ti set b2='FSB6QPRBEE6DY' where id=5; -update noar tt set v0='TNSFYZTZO13PJCOXL6CV3O1RTU8UW' where id=6; -update noar ti set v0='TNSFYZTZO13PJCOXL6CV3O1RTU8UW' where id=6; -update noar tt set b0='BS1DL0BE35ID9SHB5ZE5FRASU' where id=6; -update noar ti set b0='BS1DL0BE35ID9SHB5ZE5FRASU' where id=6; -update noar tt set v0='ZY239H2DDXXYG' where id=6; -update noar ti set v0='ZY239H2DDXXYG' where id=6; -update noar tt set b1='KXFX21DFWC009FAH3KRZ7EBF3GR' where id=6; -update noar ti set b1='KXFX21DFWC009FAH3KRZ7EBF3GR' where id=6; -update noar tt set v0='TWFH53ICC' where id=6; -update noar ti set v0='TWFH53ICC' where id=6; -update noar tt set b2='Q4HWKTLFCKNOS' where id=6; -update noar ti set b2='Q4HWKTLFCKNOS' where id=6; -update noar tt set v0='LNTCIVFWR1FIX1XX588G43KVKI36F0NT' where id=7; -update noar ti set v0='LNTCIVFWR1FIX1XX588G43KVKI36F0NT' where id=7; -update noar tt set b0='0WHO6CZVMUFYHG22V9TJ7' where id=7; -update noar ti set b0='0WHO6CZVMUFYHG22V9TJ7' where id=7; -update noar tt set v0='7EQZZANQLD8BACAZ71OOALT0X' where id=7; -update noar ti set v0='7EQZZANQLD8BACAZ71OOALT0X' where id=7; -update noar tt set b1='PSPD411S51' where id=7; -update noar ti set b1='PSPD411S51' where id=7; -update noar tt set v0='WCKC4UWEQ02PSDDBTY8E' where id=7; -update noar ti set v0='WCKC4UWEQ02PSDDBTY8E' where id=7; -update noar tt set b2='C' where id=7; -update noar ti set b2='C' where id=7; -update noar tt set v0='IOEQJD1QBNUYBMYN3H' where id=8; -update noar ti set v0='IOEQJD1QBNUYBMYN3H' where id=8; -update noar tt set b0='ODNNLZR7LV8HC0I3TWHW' where id=8; -update noar ti set b0='ODNNLZR7LV8HC0I3TWHW' where id=8; -update noar tt set v0='OJRL9VSISYGV19' where id=8; -update noar ti set v0='OJRL9VSISYGV19' where id=8; -update noar tt set b1='92HSSW48949ZJ' where id=8; -update noar ti set b1='92HSSW48949ZJ' where id=8; -update noar tt set v0='R8MEEA3PLQJUZAOAU5UB4TZNO5RK0' where id=8; -update noar ti set v0='R8MEEA3PLQJUZAOAU5UB4TZNO5RK0' where id=8; -update noar tt set b2='VILUT4VXEUZ7WVQKC' where id=8; -update noar ti set b2='VILUT4VXEUZ7WVQKC' where id=8; -update noar tt set v0='5XXICQ2TY' where id=9; -update noar ti set v0='5XXICQ2TY' where id=9; -update noar tt set b0='JJRLLY6ZTS4' where id=9; -update noar ti set b0='JJRLLY6ZTS4' where id=9; -update noar tt set v0='S8QDOSBA' where id=9; -update noar ti set v0='S8QDOSBA' where id=9; -update noar tt set b1='2I65NAZ8H87BWLM7KBU0KSJUC5F6Q' where id=9; -update noar ti set b1='2I65NAZ8H87BWLM7KBU0KSJUC5F6Q' where id=9; -update noar tt set v0='ULKFH' where id=9; -update noar ti set v0='ULKFH' where id=9; -update noar tt set b2='TVTWI14US' where id=9; -update noar ti set b2='TVTWI14US' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - f0 int not null, - v0 varchar(256) not null, - b0 tinyblob not null, - b1 tinyblob not null, - b2 tinyblob not null -) engine=tokudb; -insert into tt values (1,0,'','','',''); -insert into tt values (2,0,'','','',''); -insert into tt values (3,0,'','','',''); -insert into tt values (4,0,'','','',''); -insert into tt values (5,0,'','','',''); -insert into tt values (6,0,'','','',''); -insert into tt values (7,0,'','','',''); -insert into tt values (8,0,'','','',''); -insert into tt values (9,0,'','','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='QETZC' where id=1; -update noar ti set v0='QETZC' where id=1; -update noar tt set b0='TBFFSKY5BH9W3ULR' where id=1; -update noar ti set b0='TBFFSKY5BH9W3ULR' where id=1; -update noar tt set v0='W0MFEVQ5CS168WH5KFMIKAWH9JQNN4W' where id=1; -update noar ti set v0='W0MFEVQ5CS168WH5KFMIKAWH9JQNN4W' where id=1; -update noar tt set b1='8QP6I5ASCMN83IZ3USHA21VI2' where id=1; -update noar ti set b1='8QP6I5ASCMN83IZ3USHA21VI2' where id=1; -update noar tt set v0='9JWYOU3K6WZI' where id=1; -update noar ti set v0='9JWYOU3K6WZI' where id=1; -update noar tt set b2='IN4KR562PBMSF' where id=1; -update noar ti set b2='IN4KR562PBMSF' where id=1; -update noar tt set v0='EIKL96PTPQ794B' where id=2; -update noar ti set v0='EIKL96PTPQ794B' where id=2; -update noar tt set b0='KN8188232Q8' where id=2; -update noar ti set b0='KN8188232Q8' where id=2; -update noar tt set v0='FF3' where id=2; -update noar ti set v0='FF3' where id=2; -update noar tt set b1='TB' where id=2; -update noar ti set b1='TB' where id=2; -update noar tt set v0='QPV4RBSX4125AWTY834' where id=2; -update noar ti set v0='QPV4RBSX4125AWTY834' where id=2; -update noar tt set b2='XU9S3BBQ' where id=2; -update noar ti set b2='XU9S3BBQ' where id=2; -update noar tt set v0='JZJGSUJLBWEIA4IX17ZJAUXWT' where id=3; -update noar ti set v0='JZJGSUJLBWEIA4IX17ZJAUXWT' where id=3; -update noar tt set b0='F2KY1HSC4PTG' where id=3; -update noar ti set b0='F2KY1HSC4PTG' where id=3; -update noar tt set v0='90G8C3HR' where id=3; -update noar ti set v0='90G8C3HR' where id=3; -update noar tt set b1='BX6Y2M3C1J85QTCJQDTO9FJ' where id=3; -update noar ti set b1='BX6Y2M3C1J85QTCJQDTO9FJ' where id=3; -update noar tt set v0='T7Y8' where id=3; -update noar ti set v0='T7Y8' where id=3; -update noar tt set b2='6IQY88FIXBUZP9PPR' where id=3; -update noar ti set b2='6IQY88FIXBUZP9PPR' where id=3; -update noar tt set v0='UBN41YI25' where id=4; -update noar ti set v0='UBN41YI25' where id=4; -update noar tt set b0='D36WQNQHAUZZXT26ZT8S69ZOKYN' where id=4; -update noar ti set b0='D36WQNQHAUZZXT26ZT8S69ZOKYN' where id=4; -update noar tt set v0='PC9PZZF8FD42E1RTYLHEDC' where id=4; -update noar ti set v0='PC9PZZF8FD42E1RTYLHEDC' where id=4; -update noar tt set b1='XYS7CK3GL4WRO' where id=4; -update noar ti set b1='XYS7CK3GL4WRO' where id=4; -update noar tt set v0='O7FOKS2XW4AJY6DOBITB8ZKLU' where id=4; -update noar ti set v0='O7FOKS2XW4AJY6DOBITB8ZKLU' where id=4; -update noar tt set b2='33CYAEQV38XU9YQYUQ50C1' where id=4; -update noar ti set b2='33CYAEQV38XU9YQYUQ50C1' where id=4; -update noar tt set v0='E83ZUZD7ZR1DCUFF0HR0U8ODLKOING' where id=5; -update noar ti set v0='E83ZUZD7ZR1DCUFF0HR0U8ODLKOING' where id=5; -update noar tt set b0='MZ69' where id=5; -update noar ti set b0='MZ69' where id=5; -update noar tt set v0='ACDSD99DMU1SSANQ4CGNR0YGIFSWIP3' where id=5; -update noar ti set v0='ACDSD99DMU1SSANQ4CGNR0YGIFSWIP3' where id=5; -update noar tt set b1='R' where id=5; -update noar ti set b1='R' where id=5; -update noar tt set v0='PJJP7H9OBOPBLD1XJX9' where id=5; -update noar ti set v0='PJJP7H9OBOPBLD1XJX9' where id=5; -update noar tt set b2='FPSV3B0P2NY7ZQT' where id=5; -update noar ti set b2='FPSV3B0P2NY7ZQT' where id=5; -update noar tt set v0='F4VDWWI3I75P4RR3GVHLGH' where id=6; -update noar ti set v0='F4VDWWI3I75P4RR3GVHLGH' where id=6; -update noar tt set b0='5VB87QH59H29RQLCAX4' where id=6; -update noar ti set b0='5VB87QH59H29RQLCAX4' where id=6; -update noar tt set v0='3HLJ0VCMM0OHQSK20R7MA91' where id=6; -update noar ti set v0='3HLJ0VCMM0OHQSK20R7MA91' where id=6; -update noar tt set b1='C7QKBMEGNQ7XV8Y4IYF' where id=6; -update noar ti set b1='C7QKBMEGNQ7XV8Y4IYF' where id=6; -update noar tt set v0='JRGEXWSFP2YZHMXO' where id=6; -update noar ti set v0='JRGEXWSFP2YZHMXO' where id=6; -update noar tt set b2='S8206U7YHC0' where id=6; -update noar ti set b2='S8206U7YHC0' where id=6; -update noar tt set v0='NTXQQX' where id=7; -update noar ti set v0='NTXQQX' where id=7; -update noar tt set b0='QURBVUCJWX9RK19R8N4B072VITFP41' where id=7; -update noar ti set b0='QURBVUCJWX9RK19R8N4B072VITFP41' where id=7; -update noar tt set v0='8GG30NBC7R059IZIP8' where id=7; -update noar ti set v0='8GG30NBC7R059IZIP8' where id=7; -update noar tt set b1='RJBP9AORKOYEHOPSKDRBUEYQMF34P' where id=7; -update noar ti set b1='RJBP9AORKOYEHOPSKDRBUEYQMF34P' where id=7; -update noar tt set v0='5C2NDN3WNS5XP3AS' where id=7; -update noar ti set v0='5C2NDN3WNS5XP3AS' where id=7; -update noar tt set b2='SE62H4S14' where id=7; -update noar ti set b2='SE62H4S14' where id=7; -update noar tt set v0='LGDNOAIMMRYGY3YKGDVTXOWD05WPA1N' where id=8; -update noar ti set v0='LGDNOAIMMRYGY3YKGDVTXOWD05WPA1N' where id=8; -update noar tt set b0='V4M5BI8QZ41Q' where id=8; -update noar ti set b0='V4M5BI8QZ41Q' where id=8; -update noar tt set v0='EE7RPU1GWTK7CH' where id=8; -update noar ti set v0='EE7RPU1GWTK7CH' where id=8; -update noar tt set b1='9BVHAABUKRU4G1T0MCKIELXWM5G' where id=8; -update noar ti set b1='9BVHAABUKRU4G1T0MCKIELXWM5G' where id=8; -update noar tt set v0='G8VF6M6W9JC6WBYD2O3KRA7AT' where id=8; -update noar ti set v0='G8VF6M6W9JC6WBYD2O3KRA7AT' where id=8; -update noar tt set b2='Z1OE5UXP5JM' where id=8; -update noar ti set b2='Z1OE5UXP5JM' where id=8; -update noar tt set v0='7MRC91R7MC1HEP6MKEMRQ5R4OR7PC' where id=9; -update noar ti set v0='7MRC91R7MC1HEP6MKEMRQ5R4OR7PC' where id=9; -update noar tt set b0='XNYR0LL6' where id=9; -update noar ti set b0='XNYR0LL6' where id=9; -update noar tt set v0='30PDV' where id=9; -update noar ti set v0='30PDV' where id=9; -update noar tt set b1='I2FTDXR0JKWPOPM9OAUB9EGSD6' where id=9; -update noar ti set b1='I2FTDXR0JKWPOPM9OAUB9EGSD6' where id=9; -update noar tt set v0='PT' where id=9; -update noar ti set v0='PT' where id=9; -update noar tt set b2='915O3J8G6EJH8FA' where id=9; -update noar ti set b2='915O3J8G6EJH8FA' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - f0 int null, - v0 varchar(32) null, - b0 tinyblob null, - b1 tinyblob null, - b2 blob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='GWUF6Q87WWWUX1QXW' where id=1; -update noar ti set v0='GWUF6Q87WWWUX1QXW' where id=1; -update noar tt set b0='ZCU3V6ZFNSEGV8FE8CTAIK7UUF1VF6' where id=1; -update noar ti set b0='ZCU3V6ZFNSEGV8FE8CTAIK7UUF1VF6' where id=1; -update noar tt set v0='BVQFNY3G0F8M9TY2V39YI' where id=1; -update noar ti set v0='BVQFNY3G0F8M9TY2V39YI' where id=1; -update noar tt set b1='PUAY76GUN6LT7W5TW6V9T' where id=1; -update noar ti set b1='PUAY76GUN6LT7W5TW6V9T' where id=1; -update noar tt set v0='CSPTN1ZPILA7VHVI77ELIEQZDKY' where id=1; -update noar ti set v0='CSPTN1ZPILA7VHVI77ELIEQZDKY' where id=1; -update noar tt set b2='2HTW962P9V' where id=1; -update noar ti set b2='2HTW962P9V' where id=1; -update noar tt set v0='4P7V99N74CHERVHHO0D4KBW28' where id=2; -update noar ti set v0='4P7V99N74CHERVHHO0D4KBW28' where id=2; -update noar tt set b0='BE6T2P053ZZK228F' where id=2; -update noar ti set b0='BE6T2P053ZZK228F' where id=2; -update noar tt set v0='4Y1' where id=2; -update noar ti set v0='4Y1' where id=2; -update noar tt set b1='V68Q9IZ7AZYZTWZIYJBF4MWD' where id=2; -update noar ti set b1='V68Q9IZ7AZYZTWZIYJBF4MWD' where id=2; -update noar tt set v0='HQ301L35BQHC79' where id=2; -update noar ti set v0='HQ301L35BQHC79' where id=2; -update noar tt set b2='PU6I' where id=2; -update noar ti set b2='PU6I' where id=2; -update noar tt set v0='9KN' where id=3; -update noar ti set v0='9KN' where id=3; -update noar tt set b0='WSYIPK2J' where id=3; -update noar ti set b0='WSYIPK2J' where id=3; -update noar tt set v0='YUG48SU6GAH' where id=3; -update noar ti set v0='YUG48SU6GAH' where id=3; -update noar tt set b1='6QBKIJO' where id=3; -update noar ti set b1='6QBKIJO' where id=3; -update noar tt set v0='INT' where id=3; -update noar ti set v0='INT' where id=3; -update noar tt set b2='691YYKB36QQ3' where id=3; -update noar ti set b2='691YYKB36QQ3' where id=3; -update noar tt set v0='GV6A2LQ1BICRHSG5' where id=4; -update noar ti set v0='GV6A2LQ1BICRHSG5' where id=4; -update noar tt set b0='VJX07MIPR0' where id=4; -update noar ti set b0='VJX07MIPR0' where id=4; -update noar tt set v0='6O6HXB7T8HSDSIA0I' where id=4; -update noar ti set v0='6O6HXB7T8HSDSIA0I' where id=4; -update noar tt set b1='SPB1RRMHM' where id=4; -update noar ti set b1='SPB1RRMHM' where id=4; -update noar tt set v0='VRS6VBF9CX5RZ491MVSOWQ4040XB2DWB' where id=4; -update noar ti set v0='VRS6VBF9CX5RZ491MVSOWQ4040XB2DWB' where id=4; -update noar tt set b2='3UNO4AL1AYIGYFXOJ14FLKCKLE76' where id=4; -update noar ti set b2='3UNO4AL1AYIGYFXOJ14FLKCKLE76' where id=4; -update noar tt set v0='EUFVIWUJ9335G1O8B8ICTPPMNAHAO3' where id=5; -update noar ti set v0='EUFVIWUJ9335G1O8B8ICTPPMNAHAO3' where id=5; -update noar tt set b0='ZEWP6Y21KJLMKMJ' where id=5; -update noar ti set b0='ZEWP6Y21KJLMKMJ' where id=5; -update noar tt set v0='PNPFO72319BVC7NBE34YD6VC5LYI6' where id=5; -update noar ti set v0='PNPFO72319BVC7NBE34YD6VC5LYI6' where id=5; -update noar tt set b1='4SIXIJIG5B' where id=5; -update noar ti set b1='4SIXIJIG5B' where id=5; -update noar tt set v0='JJJBYJAQ' where id=5; -update noar ti set v0='JJJBYJAQ' where id=5; -update noar tt set b2='E2M6LMONX38NXAA96VNZ8L0J' where id=5; -update noar ti set b2='E2M6LMONX38NXAA96VNZ8L0J' where id=5; -update noar tt set v0='7RMJUCAMFMEO7UH2GK8MLGDWM5I46Y' where id=6; -update noar ti set v0='7RMJUCAMFMEO7UH2GK8MLGDWM5I46Y' where id=6; -update noar tt set b0='IXVG0MCJE9F1DIIZ' where id=6; -update noar ti set b0='IXVG0MCJE9F1DIIZ' where id=6; -update noar tt set v0='NTFS5XE6GX74Z4Q1A2KD' where id=6; -update noar ti set v0='NTFS5XE6GX74Z4Q1A2KD' where id=6; -update noar tt set b1='J28C3O26G65K91CMD29UB0Z' where id=6; -update noar ti set b1='J28C3O26G65K91CMD29UB0Z' where id=6; -update noar tt set v0='05MEPHCVARQ' where id=6; -update noar ti set v0='05MEPHCVARQ' where id=6; -update noar tt set b2='LCKD2ORUDT0A4FSJF26F76J979LU8' where id=6; -update noar ti set b2='LCKD2ORUDT0A4FSJF26F76J979LU8' where id=6; -update noar tt set v0='M4L5K355LPYM8Q6KDSG93M68VV4Z' where id=7; -update noar ti set v0='M4L5K355LPYM8Q6KDSG93M68VV4Z' where id=7; -update noar tt set b0='NE531CI' where id=7; -update noar ti set b0='NE531CI' where id=7; -update noar tt set v0='WUM7D8NR' where id=7; -update noar ti set v0='WUM7D8NR' where id=7; -update noar tt set b1='3QDV0YC7W23L0CD2P5' where id=7; -update noar ti set b1='3QDV0YC7W23L0CD2P5' where id=7; -update noar tt set v0='18XOOA4BJ91AKRTT6DWUWLD5T5Q9' where id=7; -update noar ti set v0='18XOOA4BJ91AKRTT6DWUWLD5T5Q9' where id=7; -update noar tt set b2='767' where id=7; -update noar ti set b2='767' where id=7; -update noar tt set v0='KCVSPID558BWCE7VQS13LZFXT2F' where id=8; -update noar ti set v0='KCVSPID558BWCE7VQS13LZFXT2F' where id=8; -update noar tt set b0='149RUW7I1B89USG2N3X' where id=8; -update noar ti set b0='149RUW7I1B89USG2N3X' where id=8; -update noar tt set v0='GDMK0X9B4EUQGWSM4OB6A6NK1HLXO' where id=8; -update noar ti set v0='GDMK0X9B4EUQGWSM4OB6A6NK1HLXO' where id=8; -update noar tt set b1='X7R' where id=8; -update noar ti set b1='X7R' where id=8; -update noar tt set v0='6AFQRMNSGZZ92X42ENI83QK78MJL' where id=8; -update noar ti set v0='6AFQRMNSGZZ92X42ENI83QK78MJL' where id=8; -update noar tt set b2='WASUL5O52II3Y9N6LTVKIX' where id=8; -update noar ti set b2='WASUL5O52II3Y9N6LTVKIX' where id=8; -update noar tt set v0='ETPO6VXV54BD6' where id=9; -update noar ti set v0='ETPO6VXV54BD6' where id=9; -update noar tt set b0='IT5H87V' where id=9; -update noar ti set b0='IT5H87V' where id=9; -update noar tt set v0='H13F1498WH29X6VJW12Y7A97801N10VO' where id=9; -update noar ti set v0='H13F1498WH29X6VJW12Y7A97801N10VO' where id=9; -update noar tt set b1='NO4TCPZ8XBLG33PP2CWYCNF4P' where id=9; -update noar ti set b1='NO4TCPZ8XBLG33PP2CWYCNF4P' where id=9; -update noar tt set v0='V4ZQFEQ2X1IK0W' where id=9; -update noar ti set v0='V4ZQFEQ2X1IK0W' where id=9; -update noar tt set b2='0Q49W1U8M1NS7E8BAR2MY7PDZM6' where id=9; -update noar ti set b2='0Q49W1U8M1NS7E8BAR2MY7PDZM6' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - f0 int null, - v0 varchar(256) null, - b0 tinyblob null, - b1 tinyblob null, - b2 blob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='94937Y8ZS6B8UT3JNU43LY47TSY' where id=1; -update noar ti set v0='94937Y8ZS6B8UT3JNU43LY47TSY' where id=1; -update noar tt set b0='9TP198CFJR' where id=1; -update noar ti set b0='9TP198CFJR' where id=1; -update noar tt set v0='55H1YW4YSH4Q' where id=1; -update noar ti set v0='55H1YW4YSH4Q' where id=1; -update noar tt set b1='QX8CYN553IJSAIE4HQZFX8JAONPFP' where id=1; -update noar ti set b1='QX8CYN553IJSAIE4HQZFX8JAONPFP' where id=1; -update noar tt set v0='FPVDOM2S1S3E74' where id=1; -update noar ti set v0='FPVDOM2S1S3E74' where id=1; -update noar tt set b2='E1BWI9D39XI50' where id=1; -update noar ti set b2='E1BWI9D39XI50' where id=1; -update noar tt set v0='MBYDYL' where id=2; -update noar ti set v0='MBYDYL' where id=2; -update noar tt set b0='X' where id=2; -update noar ti set b0='X' where id=2; -update noar tt set v0='W0VI4WEWXSJNGVMKFH' where id=2; -update noar ti set v0='W0VI4WEWXSJNGVMKFH' where id=2; -update noar tt set b1='63R' where id=2; -update noar ti set b1='63R' where id=2; -update noar tt set v0='1K5TT2MRENM87JOSQ57HGU86HBBWH8' where id=2; -update noar ti set v0='1K5TT2MRENM87JOSQ57HGU86HBBWH8' where id=2; -update noar tt set b2='5QZG9QFLIQ2KER1TJ9VH' where id=2; -update noar ti set b2='5QZG9QFLIQ2KER1TJ9VH' where id=2; -update noar tt set v0='YRZGVC7LBEY88Q0T4QPBBTXXBSNN8' where id=3; -update noar ti set v0='YRZGVC7LBEY88Q0T4QPBBTXXBSNN8' where id=3; -update noar tt set b0='AKOKNIY8PBGCU' where id=3; -update noar ti set b0='AKOKNIY8PBGCU' where id=3; -update noar tt set v0='27B79PBL4QNS4G7AV0K43' where id=3; -update noar ti set v0='27B79PBL4QNS4G7AV0K43' where id=3; -update noar tt set b1='EVRHBFSETK' where id=3; -update noar ti set b1='EVRHBFSETK' where id=3; -update noar tt set v0='H8B8WSH' where id=3; -update noar ti set v0='H8B8WSH' where id=3; -update noar tt set b2='YULW7LTJCZJA02VNX3V0M' where id=3; -update noar ti set b2='YULW7LTJCZJA02VNX3V0M' where id=3; -update noar tt set v0='JPYZUZUC97RT6JA23OU' where id=4; -update noar ti set v0='JPYZUZUC97RT6JA23OU' where id=4; -update noar tt set b0='04NA8NXBG78MU' where id=4; -update noar ti set b0='04NA8NXBG78MU' where id=4; -update noar tt set v0='FED98K4MP' where id=4; -update noar ti set v0='FED98K4MP' where id=4; -update noar tt set b1='F1VR6TZ1K52' where id=4; -update noar ti set b1='F1VR6TZ1K52' where id=4; -update noar tt set v0='7HO0WY6D1XK' where id=4; -update noar ti set v0='7HO0WY6D1XK' where id=4; -update noar tt set b2='Q8IHI4A7' where id=4; -update noar ti set b2='Q8IHI4A7' where id=4; -update noar tt set v0='R82G' where id=5; -update noar ti set v0='R82G' where id=5; -update noar tt set b0='9UX6PFYQT' where id=5; -update noar ti set b0='9UX6PFYQT' where id=5; -update noar tt set v0='O90SP331MXJD8' where id=5; -update noar ti set v0='O90SP331MXJD8' where id=5; -update noar tt set b1='VSP2X9' where id=5; -update noar ti set b1='VSP2X9' where id=5; -update noar tt set v0='9O7HNUAFE7EZPNVL4H' where id=5; -update noar ti set v0='9O7HNUAFE7EZPNVL4H' where id=5; -update noar tt set b2='CWWNWYAEUT7X' where id=5; -update noar ti set b2='CWWNWYAEUT7X' where id=5; -update noar tt set v0='I4G1MRWGHIGAA' where id=6; -update noar ti set v0='I4G1MRWGHIGAA' where id=6; -update noar tt set b0='8F9GWX6YPAUDER17K5' where id=6; -update noar ti set b0='8F9GWX6YPAUDER17K5' where id=6; -update noar tt set v0='YL1NHUXMJYVR004AV5MB' where id=6; -update noar ti set v0='YL1NHUXMJYVR004AV5MB' where id=6; -update noar tt set b1='74YG2583WJ0EWNUWYQMWC5DKZ1BHYQ0' where id=6; -update noar ti set b1='74YG2583WJ0EWNUWYQMWC5DKZ1BHYQ0' where id=6; -update noar tt set v0='GXN9V3VYIH0DWMBFT9H91IJKN' where id=6; -update noar ti set v0='GXN9V3VYIH0DWMBFT9H91IJKN' where id=6; -update noar tt set b2='TC8U32U98FGXV6B94YDZOKPOSPL' where id=6; -update noar ti set b2='TC8U32U98FGXV6B94YDZOKPOSPL' where id=6; -update noar tt set v0='39MFY6FJT7PV6XZ4T' where id=7; -update noar ti set v0='39MFY6FJT7PV6XZ4T' where id=7; -update noar tt set b0='CVWHPW97GJ' where id=7; -update noar ti set b0='CVWHPW97GJ' where id=7; -update noar tt set v0='Q4GP' where id=7; -update noar ti set v0='Q4GP' where id=7; -update noar tt set b1='6AM3C7F2NO1NDD1DXIM' where id=7; -update noar ti set b1='6AM3C7F2NO1NDD1DXIM' where id=7; -update noar tt set v0='CCLP2TUG' where id=7; -update noar ti set v0='CCLP2TUG' where id=7; -update noar tt set b2='BV7UA' where id=7; -update noar ti set b2='BV7UA' where id=7; -update noar tt set v0='H5TIU1HN5H6S' where id=8; -update noar ti set v0='H5TIU1HN5H6S' where id=8; -update noar tt set b0='TPNQ6PKGDH7FRN' where id=8; -update noar ti set b0='TPNQ6PKGDH7FRN' where id=8; -update noar tt set v0='YATXKM3ZO4M2WSKJ4AJJRIMKJ1WWZ' where id=8; -update noar ti set v0='YATXKM3ZO4M2WSKJ4AJJRIMKJ1WWZ' where id=8; -update noar tt set b1='IUBVN' where id=8; -update noar ti set b1='IUBVN' where id=8; -update noar tt set v0='NJ' where id=8; -update noar ti set v0='NJ' where id=8; -update noar tt set b2='WI2WZ8ZC9IRVU3OJU04Q2IGIY' where id=8; -update noar ti set b2='WI2WZ8ZC9IRVU3OJU04Q2IGIY' where id=8; -update noar tt set v0='LOHGD82GJ9HE4P70Y9GX2HNEGYJDA0F' where id=9; -update noar ti set v0='LOHGD82GJ9HE4P70Y9GX2HNEGYJDA0F' where id=9; -update noar tt set b0='XIG3K30QJ3N3J7AWRBDQEKFNXYY' where id=9; -update noar ti set b0='XIG3K30QJ3N3J7AWRBDQEKFNXYY' where id=9; -update noar tt set v0='WDVP5U92KZNYU' where id=9; -update noar ti set v0='WDVP5U92KZNYU' where id=9; -update noar tt set b1='P4X1Z8SNE' where id=9; -update noar ti set b1='P4X1Z8SNE' where id=9; -update noar tt set v0='ZO' where id=9; -update noar ti set v0='ZO' where id=9; -update noar tt set b2='DHYMQIK7RBAZ12G8ISTU' where id=9; -update noar ti set b2='DHYMQIK7RBAZ12G8ISTU' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - f0 int not null, - v0 varchar(32) not null, - b0 tinyblob not null, - b1 tinyblob not null, - b2 blob not null -) engine=tokudb; -insert into tt values (1,0,'','','',''); -insert into tt values (2,0,'','','',''); -insert into tt values (3,0,'','','',''); -insert into tt values (4,0,'','','',''); -insert into tt values (5,0,'','','',''); -insert into tt values (6,0,'','','',''); -insert into tt values (7,0,'','','',''); -insert into tt values (8,0,'','','',''); -insert into tt values (9,0,'','','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='OD7U2GWRE4VBNUF1Q2OLW2GX0NIZG' where id=1; -update noar ti set v0='OD7U2GWRE4VBNUF1Q2OLW2GX0NIZG' where id=1; -update noar tt set b0='Z' where id=1; -update noar ti set b0='Z' where id=1; -update noar tt set v0='0NMBXJKAJ5ECX' where id=1; -update noar ti set v0='0NMBXJKAJ5ECX' where id=1; -update noar tt set b1='96' where id=1; -update noar ti set b1='96' where id=1; -update noar tt set v0='SQZC1FUZK' where id=1; -update noar ti set v0='SQZC1FUZK' where id=1; -update noar tt set b2='U3UEF26K59HNGYQ' where id=1; -update noar ti set b2='U3UEF26K59HNGYQ' where id=1; -update noar tt set v0='CUM51DE70R0P98N8QLW85VLUJJ85A4FA' where id=2; -update noar ti set v0='CUM51DE70R0P98N8QLW85VLUJJ85A4FA' where id=2; -update noar tt set b0='RY29M' where id=2; -update noar ti set b0='RY29M' where id=2; -update noar tt set v0='69SSVPI88KJPYU3CBPBZ' where id=2; -update noar ti set v0='69SSVPI88KJPYU3CBPBZ' where id=2; -update noar tt set b1='0PWCMD59CY5GJD0JR4EG6P7SIBX9QXC' where id=2; -update noar ti set b1='0PWCMD59CY5GJD0JR4EG6P7SIBX9QXC' where id=2; -update noar tt set v0='NQ9TP' where id=2; -update noar ti set v0='NQ9TP' where id=2; -update noar tt set b2='395' where id=2; -update noar ti set b2='395' where id=2; -update noar tt set v0='XZ3W5IEF' where id=3; -update noar ti set v0='XZ3W5IEF' where id=3; -update noar tt set b0='1EV8' where id=3; -update noar ti set b0='1EV8' where id=3; -update noar tt set v0='3GC1X' where id=3; -update noar ti set v0='3GC1X' where id=3; -update noar tt set b1='V6L5I2CMX3T876B5F6LXNN0ZUJ012Q9B' where id=3; -update noar ti set b1='V6L5I2CMX3T876B5F6LXNN0ZUJ012Q9B' where id=3; -update noar tt set v0='M764Q230O59PS78ZI' where id=3; -update noar ti set v0='M764Q230O59PS78ZI' where id=3; -update noar tt set b2='GQP5BGSGJWJ3W59BQ' where id=3; -update noar ti set b2='GQP5BGSGJWJ3W59BQ' where id=3; -update noar tt set v0='3BOP3AUY2' where id=4; -update noar ti set v0='3BOP3AUY2' where id=4; -update noar tt set b0='R47OJ1DD26TDV0KAD0DYFZXUHVBL5' where id=4; -update noar ti set b0='R47OJ1DD26TDV0KAD0DYFZXUHVBL5' where id=4; -update noar tt set v0='48AB02Z4WGF36W671LL23NGOP4' where id=4; -update noar ti set v0='48AB02Z4WGF36W671LL23NGOP4' where id=4; -update noar tt set b1='KBG3FMVLCMF735RE' where id=4; -update noar ti set b1='KBG3FMVLCMF735RE' where id=4; -update noar tt set v0='3GBRRDA1G7DXILQT02ZOB2JK1N' where id=4; -update noar ti set v0='3GBRRDA1G7DXILQT02ZOB2JK1N' where id=4; -update noar tt set b2='PZJ0T31G5LAQUCK2H53QUPTD8W6UJ' where id=4; -update noar ti set b2='PZJ0T31G5LAQUCK2H53QUPTD8W6UJ' where id=4; -update noar tt set v0='X6WDT9ZZEA6RZ2PSQ6BD80P03DSD29K' where id=5; -update noar ti set v0='X6WDT9ZZEA6RZ2PSQ6BD80P03DSD29K' where id=5; -update noar tt set b0='IGS' where id=5; -update noar ti set b0='IGS' where id=5; -update noar tt set v0='I84RXOJQCBFT9VA67SL37278K1FUPH' where id=5; -update noar ti set v0='I84RXOJQCBFT9VA67SL37278K1FUPH' where id=5; -update noar tt set b1='0QRESRYD1B8V34P09YT68ZK' where id=5; -update noar ti set b1='0QRESRYD1B8V34P09YT68ZK' where id=5; -update noar tt set v0='5AV5YLOLWC' where id=5; -update noar ti set v0='5AV5YLOLWC' where id=5; -update noar tt set b2='7' where id=5; -update noar ti set b2='7' where id=5; -update noar tt set v0='1E' where id=6; -update noar ti set v0='1E' where id=6; -update noar tt set b0='7XRZ3WJCKRTBRP' where id=6; -update noar ti set b0='7XRZ3WJCKRTBRP' where id=6; -update noar tt set v0='RUBPZ0C2' where id=6; -update noar ti set v0='RUBPZ0C2' where id=6; -update noar tt set b1='BDDVDB6TCQFJ69D3' where id=6; -update noar ti set b1='BDDVDB6TCQFJ69D3' where id=6; -update noar tt set v0='E' where id=6; -update noar ti set v0='E' where id=6; -update noar tt set b2='S03UXBDW18QC8ZVASS2T7R1HMY' where id=6; -update noar ti set b2='S03UXBDW18QC8ZVASS2T7R1HMY' where id=6; -update noar tt set v0='55' where id=7; -update noar ti set v0='55' where id=7; -update noar tt set b0='JFATL6SREEOIDZ6A9UN4CC' where id=7; -update noar ti set b0='JFATL6SREEOIDZ6A9UN4CC' where id=7; -update noar tt set v0='11S' where id=7; -update noar ti set v0='11S' where id=7; -update noar tt set b1='5KGSQ' where id=7; -update noar ti set b1='5KGSQ' where id=7; -update noar tt set v0='1' where id=7; -update noar ti set v0='1' where id=7; -update noar tt set b2='6HGM2NSDU52ESTP396DDXUDGG38ORY3' where id=7; -update noar ti set b2='6HGM2NSDU52ESTP396DDXUDGG38ORY3' where id=7; -update noar tt set v0='WDPYZ17V' where id=8; -update noar ti set v0='WDPYZ17V' where id=8; -update noar tt set b0='2HIKX2GKUXHKDQJJX2GYC7MRUI' where id=8; -update noar ti set b0='2HIKX2GKUXHKDQJJX2GYC7MRUI' where id=8; -update noar tt set v0='5MW6WUHMT4IIM48UID3P' where id=8; -update noar ti set v0='5MW6WUHMT4IIM48UID3P' where id=8; -update noar tt set b1='TZYAHU6LCH' where id=8; -update noar ti set b1='TZYAHU6LCH' where id=8; -update noar tt set v0='MZ0N8EAAUTTXFIQYAFO8HCCJ3IVX' where id=8; -update noar ti set v0='MZ0N8EAAUTTXFIQYAFO8HCCJ3IVX' where id=8; -update noar tt set b2='KKN4SQ8FXK3O0LFM8ULFIOT08X7MEA' where id=8; -update noar ti set b2='KKN4SQ8FXK3O0LFM8ULFIOT08X7MEA' where id=8; -update noar tt set v0='ZGPM8Q2DECD4GNAM' where id=9; -update noar ti set v0='ZGPM8Q2DECD4GNAM' where id=9; -update noar tt set b0='CGBIZU3S5I34' where id=9; -update noar ti set b0='CGBIZU3S5I34' where id=9; -update noar tt set v0='BO8OIBJJ' where id=9; -update noar ti set v0='BO8OIBJJ' where id=9; -update noar tt set b1='VBDU42CL7M3DST3CZX' where id=9; -update noar ti set b1='VBDU42CL7M3DST3CZX' where id=9; -update noar tt set v0='8UXMPQEC7VPCL78DN7V1HIQF' where id=9; -update noar ti set v0='8UXMPQEC7VPCL78DN7V1HIQF' where id=9; -update noar tt set b2='LS1O9ISP2F0VMVAVZCPXOQPBD2ELA' where id=9; -update noar ti set b2='LS1O9ISP2F0VMVAVZCPXOQPBD2ELA' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - f0 int not null, - v0 varchar(256) not null, - b0 tinyblob not null, - b1 tinyblob not null, - b2 blob not null -) engine=tokudb; -insert into tt values (1,0,'','','',''); -insert into tt values (2,0,'','','',''); -insert into tt values (3,0,'','','',''); -insert into tt values (4,0,'','','',''); -insert into tt values (5,0,'','','',''); -insert into tt values (6,0,'','','',''); -insert into tt values (7,0,'','','',''); -insert into tt values (8,0,'','','',''); -insert into tt values (9,0,'','','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='L' where id=1; -update noar ti set v0='L' where id=1; -update noar tt set b0='2FL5A671O3BLN70Z' where id=1; -update noar ti set b0='2FL5A671O3BLN70Z' where id=1; -update noar tt set v0='QXX2ACY06ZJYJNA6J374KEPB8' where id=1; -update noar ti set v0='QXX2ACY06ZJYJNA6J374KEPB8' where id=1; -update noar tt set b1='Z88LKRG9PVV' where id=1; -update noar ti set b1='Z88LKRG9PVV' where id=1; -update noar tt set v0='ITJVKBDE8V9GRU' where id=1; -update noar ti set v0='ITJVKBDE8V9GRU' where id=1; -update noar tt set b2='4NB2Z321QTPS33VXP5CLC1Z2G' where id=1; -update noar ti set b2='4NB2Z321QTPS33VXP5CLC1Z2G' where id=1; -update noar tt set v0='XJZT' where id=2; -update noar ti set v0='XJZT' where id=2; -update noar tt set b0='ZZ581EA78P1C4JQ' where id=2; -update noar ti set b0='ZZ581EA78P1C4JQ' where id=2; -update noar tt set v0='3CTYFUJY7LGYH5M6W' where id=2; -update noar ti set v0='3CTYFUJY7LGYH5M6W' where id=2; -update noar tt set b1='TB3I44RRHR4KJ' where id=2; -update noar ti set b1='TB3I44RRHR4KJ' where id=2; -update noar tt set v0='1CIW99I4R' where id=2; -update noar ti set v0='1CIW99I4R' where id=2; -update noar tt set b2='ZWIH2IPVXOOP8U8II' where id=2; -update noar ti set b2='ZWIH2IPVXOOP8U8II' where id=2; -update noar tt set v0='94LBME0N20NQMBR2BJQ49VZFK0ALI' where id=3; -update noar ti set v0='94LBME0N20NQMBR2BJQ49VZFK0ALI' where id=3; -update noar tt set b0='AFQI5X' where id=3; -update noar ti set b0='AFQI5X' where id=3; -update noar tt set v0='7AEDRDU66H00O9' where id=3; -update noar ti set v0='7AEDRDU66H00O9' where id=3; -update noar tt set b1='N1KM9GDCMUQTJ0LR' where id=3; -update noar ti set b1='N1KM9GDCMUQTJ0LR' where id=3; -update noar tt set v0='T5JGMRMIE016C2507BU7ILNEXI4G7X' where id=3; -update noar ti set v0='T5JGMRMIE016C2507BU7ILNEXI4G7X' where id=3; -update noar tt set b2='YV71Y' where id=3; -update noar ti set b2='YV71Y' where id=3; -update noar tt set v0='W' where id=4; -update noar ti set v0='W' where id=4; -update noar tt set b0='FZIWANCO77X4I5GHWTXV70L1UP0' where id=4; -update noar ti set b0='FZIWANCO77X4I5GHWTXV70L1UP0' where id=4; -update noar tt set v0='9K6BSUMDAZXGRC4W59RFL2C6GMXC524' where id=4; -update noar ti set v0='9K6BSUMDAZXGRC4W59RFL2C6GMXC524' where id=4; -update noar tt set b1='U2SBKAUALJ4Y5Q5OFU7KDF' where id=4; -update noar ti set b1='U2SBKAUALJ4Y5Q5OFU7KDF' where id=4; -update noar tt set v0='8R' where id=4; -update noar ti set v0='8R' where id=4; -update noar tt set b2='APZGIGFP18' where id=4; -update noar ti set b2='APZGIGFP18' where id=4; -update noar tt set v0='P' where id=5; -update noar ti set v0='P' where id=5; -update noar tt set b0='X8KG1HVY63KSFC08JOCAD' where id=5; -update noar ti set b0='X8KG1HVY63KSFC08JOCAD' where id=5; -update noar tt set v0='LS1U' where id=5; -update noar ti set v0='LS1U' where id=5; -update noar tt set b1='CWT3RKAZOCJS1TL' where id=5; -update noar ti set b1='CWT3RKAZOCJS1TL' where id=5; -update noar tt set v0='9MPSX9LPAGGJ8DJDO' where id=5; -update noar ti set v0='9MPSX9LPAGGJ8DJDO' where id=5; -update noar tt set b2='4V5YJ4953RQOMBG5O5' where id=5; -update noar ti set b2='4V5YJ4953RQOMBG5O5' where id=5; -update noar tt set v0='X81V6DQB9QG' where id=6; -update noar ti set v0='X81V6DQB9QG' where id=6; -update noar tt set b0='BTZQ83C0SCNSPLB103N4ADSXTJC1ACYM' where id=6; -update noar ti set b0='BTZQ83C0SCNSPLB103N4ADSXTJC1ACYM' where id=6; -update noar tt set v0='5CIDA4LCP7L8R6UBZ8LOZZ' where id=6; -update noar ti set v0='5CIDA4LCP7L8R6UBZ8LOZZ' where id=6; -update noar tt set b1='THX6T8NMBMS12NVSFCFM49OA5JVZ1' where id=6; -update noar ti set b1='THX6T8NMBMS12NVSFCFM49OA5JVZ1' where id=6; -update noar tt set v0='IRTO5W6GB1R6RZRVEXQPM6QQNKRLXTAS' where id=6; -update noar ti set v0='IRTO5W6GB1R6RZRVEXQPM6QQNKRLXTAS' where id=6; -update noar tt set b2='676QFRVGJ2EOCIXM0FOROPQ06' where id=6; -update noar ti set b2='676QFRVGJ2EOCIXM0FOROPQ06' where id=6; -update noar tt set v0='BAUNIP8914WKN5J52DGOWUGF' where id=7; -update noar ti set v0='BAUNIP8914WKN5J52DGOWUGF' where id=7; -update noar tt set b0='2EQ2M3WYFNOV' where id=7; -update noar ti set b0='2EQ2M3WYFNOV' where id=7; -update noar tt set v0='ZNN2Y9N5U55UUI6BPR' where id=7; -update noar ti set v0='ZNN2Y9N5U55UUI6BPR' where id=7; -update noar tt set b1='C47TW' where id=7; -update noar ti set b1='C47TW' where id=7; -update noar tt set v0='OU0NFUMIG7A2LW2T7P8BKDNCSSWLENT' where id=7; -update noar ti set v0='OU0NFUMIG7A2LW2T7P8BKDNCSSWLENT' where id=7; -update noar tt set b2='R5Q9Z2KD5OFHVPCUNIHHTD2MS52SDT' where id=7; -update noar ti set b2='R5Q9Z2KD5OFHVPCUNIHHTD2MS52SDT' where id=7; -update noar tt set v0='PT30PI2W8B0' where id=8; -update noar ti set v0='PT30PI2W8B0' where id=8; -update noar tt set b0='HK3C2VEG' where id=8; -update noar ti set b0='HK3C2VEG' where id=8; -update noar tt set v0='DCCLO9RUZ8O' where id=8; -update noar ti set v0='DCCLO9RUZ8O' where id=8; -update noar tt set b1='IZJYZPBRDCIWKIQJQS' where id=8; -update noar ti set b1='IZJYZPBRDCIWKIQJQS' where id=8; -update noar tt set v0='SDQIQC9XF0JYZ85TTKJ9Q8AW4ZFYRFUB' where id=8; -update noar ti set v0='SDQIQC9XF0JYZ85TTKJ9Q8AW4ZFYRFUB' where id=8; -update noar tt set b2='4ALWL4JIDD4IBGULTO08RN95RS2' where id=8; -update noar ti set b2='4ALWL4JIDD4IBGULTO08RN95RS2' where id=8; -update noar tt set v0='FVH3MLV0Q6RV3S8WL9VQ29JDOSJ' where id=9; -update noar ti set v0='FVH3MLV0Q6RV3S8WL9VQ29JDOSJ' where id=9; -update noar tt set b0='HPA6RHHBVPMWCLJTXDR' where id=9; -update noar ti set b0='HPA6RHHBVPMWCLJTXDR' where id=9; -update noar tt set v0='5XAGO1' where id=9; -update noar ti set v0='5XAGO1' where id=9; -update noar tt set b1='64G01OQJKHYJOEKVPCQV0' where id=9; -update noar ti set b1='64G01OQJKHYJOEKVPCQV0' where id=9; -update noar tt set v0='YQHPG0SW6QBGRDYF' where id=9; -update noar ti set v0='YQHPG0SW6QBGRDYF' where id=9; -update noar tt set b2='D9MJMYKITVI9H' where id=9; -update noar ti set b2='D9MJMYKITVI9H' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - f0 int null, - v0 varchar(32) null, - b0 tinyblob null, - b1 tinyblob null, - b2 mediumblob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='NY6I53I6NQ43Z3NE3GK27BS' where id=1; -update noar ti set v0='NY6I53I6NQ43Z3NE3GK27BS' where id=1; -update noar tt set b0='9M5A' where id=1; -update noar ti set b0='9M5A' where id=1; -update noar tt set v0='3WC52KXRYED8N4RG578' where id=1; -update noar ti set v0='3WC52KXRYED8N4RG578' where id=1; -update noar tt set b1='CFCQHJ1ZGY6X62BCX4WEQMHYHCZB77DL' where id=1; -update noar ti set b1='CFCQHJ1ZGY6X62BCX4WEQMHYHCZB77DL' where id=1; -update noar tt set v0='WZK8Z06Q8V6VZBVYPNSIKF7' where id=1; -update noar ti set v0='WZK8Z06Q8V6VZBVYPNSIKF7' where id=1; -update noar tt set b2='D' where id=1; -update noar ti set b2='D' where id=1; -update noar tt set v0='HIO6O0DZTZI25BMQP9' where id=2; -update noar ti set v0='HIO6O0DZTZI25BMQP9' where id=2; -update noar tt set b0='IHQ0FPU6WDRRMCJ7W6KB' where id=2; -update noar ti set b0='IHQ0FPU6WDRRMCJ7W6KB' where id=2; -update noar tt set v0='EYOP5UD' where id=2; -update noar ti set v0='EYOP5UD' where id=2; -update noar tt set b1='134X8Q' where id=2; -update noar ti set b1='134X8Q' where id=2; -update noar tt set v0='YSC2TV' where id=2; -update noar ti set v0='YSC2TV' where id=2; -update noar tt set b2='RDF9KMIH13Q2K0RBFBQHCCW' where id=2; -update noar ti set b2='RDF9KMIH13Q2K0RBFBQHCCW' where id=2; -update noar tt set v0='TU7CLC265Z3KYCTSK4P5VRXDU85PDY' where id=3; -update noar ti set v0='TU7CLC265Z3KYCTSK4P5VRXDU85PDY' where id=3; -update noar tt set b0='RYN4YHF35587CHO89H8584YBOZ' where id=3; -update noar ti set b0='RYN4YHF35587CHO89H8584YBOZ' where id=3; -update noar tt set v0='WJKXQNWJAP' where id=3; -update noar ti set v0='WJKXQNWJAP' where id=3; -update noar tt set b1='VX43Y650ZF9MJ48AC2VJPSPA1V4' where id=3; -update noar ti set b1='VX43Y650ZF9MJ48AC2VJPSPA1V4' where id=3; -update noar tt set v0='SINUFU60YCD0XB' where id=3; -update noar ti set v0='SINUFU60YCD0XB' where id=3; -update noar tt set b2='4QTRL' where id=3; -update noar ti set b2='4QTRL' where id=3; -update noar tt set v0='6DZMOESLINOXOFI6R24TM7C' where id=4; -update noar ti set v0='6DZMOESLINOXOFI6R24TM7C' where id=4; -update noar tt set b0='A1W13TZV' where id=4; -update noar ti set b0='A1W13TZV' where id=4; -update noar tt set v0='U7Q8H' where id=4; -update noar ti set v0='U7Q8H' where id=4; -update noar tt set b1='3DY7QYLMAX8DKVBUQOYFECB1C1Y' where id=4; -update noar ti set b1='3DY7QYLMAX8DKVBUQOYFECB1C1Y' where id=4; -update noar tt set v0='14VXFJCVMF469L8A6' where id=4; -update noar ti set v0='14VXFJCVMF469L8A6' where id=4; -update noar tt set b2='PABFN3XZWBL2PDY3OKT2H83' where id=4; -update noar ti set b2='PABFN3XZWBL2PDY3OKT2H83' where id=4; -update noar tt set v0='0JBOS89X8' where id=5; -update noar ti set v0='0JBOS89X8' where id=5; -update noar tt set b0='Z65DHL101QK76IJEW1' where id=5; -update noar ti set b0='Z65DHL101QK76IJEW1' where id=5; -update noar tt set v0='841064AI51KZRXWEXON66WF843HUN5O' where id=5; -update noar ti set v0='841064AI51KZRXWEXON66WF843HUN5O' where id=5; -update noar tt set b1='OYL3NDMKKYNQP6WHO8DUMRSDEV0SHG' where id=5; -update noar ti set b1='OYL3NDMKKYNQP6WHO8DUMRSDEV0SHG' where id=5; -update noar tt set v0='WCTD1IC' where id=5; -update noar ti set v0='WCTD1IC' where id=5; -update noar tt set b2='14Z8NAC5EFJYDOV5L23295W99FCRV' where id=5; -update noar ti set b2='14Z8NAC5EFJYDOV5L23295W99FCRV' where id=5; -update noar tt set v0='3HGRO53DFO' where id=6; -update noar ti set v0='3HGRO53DFO' where id=6; -update noar tt set b0='MWRAVX2J4XN9' where id=6; -update noar ti set b0='MWRAVX2J4XN9' where id=6; -update noar tt set v0='UFY8TS2D3Q4C77B' where id=6; -update noar ti set v0='UFY8TS2D3Q4C77B' where id=6; -update noar tt set b1='Y5L5J2RVN2CGT' where id=6; -update noar ti set b1='Y5L5J2RVN2CGT' where id=6; -update noar tt set v0='IH8I6XP1X691O' where id=6; -update noar ti set v0='IH8I6XP1X691O' where id=6; -update noar tt set b2='LMYYGGAOUEBWZ8CQHL0LINSW' where id=6; -update noar ti set b2='LMYYGGAOUEBWZ8CQHL0LINSW' where id=6; -update noar tt set v0='5P2Z1M0OS' where id=7; -update noar ti set v0='5P2Z1M0OS' where id=7; -update noar tt set b0='OPO722WMQXDTSQS9W4' where id=7; -update noar ti set b0='OPO722WMQXDTSQS9W4' where id=7; -update noar tt set v0='KYSAKL' where id=7; -update noar ti set v0='KYSAKL' where id=7; -update noar tt set b1='99YMP8FRZV03O7LG1' where id=7; -update noar ti set b1='99YMP8FRZV03O7LG1' where id=7; -update noar tt set v0='XQJT7NW4HYTNRM' where id=7; -update noar ti set v0='XQJT7NW4HYTNRM' where id=7; -update noar tt set b2='88OMWNINWYCJW2MDOPTB4TLCZDLG' where id=7; -update noar ti set b2='88OMWNINWYCJW2MDOPTB4TLCZDLG' where id=7; -update noar tt set v0='G6PHZFSV0CO6VZCL8C3Q3N3P' where id=8; -update noar ti set v0='G6PHZFSV0CO6VZCL8C3Q3N3P' where id=8; -update noar tt set b0='Q8LQNIPP0YCOKNI' where id=8; -update noar ti set b0='Q8LQNIPP0YCOKNI' where id=8; -update noar tt set v0='IRS2SKGU6898WQKKN104AA1IQZTIY' where id=8; -update noar ti set v0='IRS2SKGU6898WQKKN104AA1IQZTIY' where id=8; -update noar tt set b1='579Z2G7VN' where id=8; -update noar ti set b1='579Z2G7VN' where id=8; -update noar tt set v0='T5MYDI' where id=8; -update noar ti set v0='T5MYDI' where id=8; -update noar tt set b2='879OJ6J76ZCY' where id=8; -update noar ti set b2='879OJ6J76ZCY' where id=8; -update noar tt set v0='AXM4E' where id=9; -update noar ti set v0='AXM4E' where id=9; -update noar tt set b0='JM79E52Y1J8M07GMMPIHI7K8GGUEA' where id=9; -update noar ti set b0='JM79E52Y1J8M07GMMPIHI7K8GGUEA' where id=9; -update noar tt set v0='7X016' where id=9; -update noar ti set v0='7X016' where id=9; -update noar tt set b1='TQN4UF00YDS' where id=9; -update noar ti set b1='TQN4UF00YDS' where id=9; -update noar tt set v0='B6CKV5SWBUO024WIGOXOH7E5J' where id=9; -update noar ti set v0='B6CKV5SWBUO024WIGOXOH7E5J' where id=9; -update noar tt set b2='22YNXHK2BJYE4EY44U9ZV' where id=9; -update noar ti set b2='22YNXHK2BJYE4EY44U9ZV' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - f0 int null, - v0 varchar(256) null, - b0 tinyblob null, - b1 tinyblob null, - b2 mediumblob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='AH0QPE6' where id=1; -update noar ti set v0='AH0QPE6' where id=1; -update noar tt set b0='KOW0OPILMP' where id=1; -update noar ti set b0='KOW0OPILMP' where id=1; -update noar tt set v0='VYQRZ53O' where id=1; -update noar ti set v0='VYQRZ53O' where id=1; -update noar tt set b1='XHRJUZU506VQ7VXXYBWOY768JYPC' where id=1; -update noar ti set b1='XHRJUZU506VQ7VXXYBWOY768JYPC' where id=1; -update noar tt set v0='NSQMQ7M1QYKO5D' where id=1; -update noar ti set v0='NSQMQ7M1QYKO5D' where id=1; -update noar tt set b2='3170DAEAV68K1Z9' where id=1; -update noar ti set b2='3170DAEAV68K1Z9' where id=1; -update noar tt set v0='ZYPJOYEQQRLV1C9IUB' where id=2; -update noar ti set v0='ZYPJOYEQQRLV1C9IUB' where id=2; -update noar tt set b0='ME1D9ZSQZXG2SAS4WWKIJ' where id=2; -update noar ti set b0='ME1D9ZSQZXG2SAS4WWKIJ' where id=2; -update noar tt set v0='7S7XA8UK' where id=2; -update noar ti set v0='7S7XA8UK' where id=2; -update noar tt set b1='WOSI7SGUGD0Y' where id=2; -update noar ti set b1='WOSI7SGUGD0Y' where id=2; -update noar tt set v0='CM6' where id=2; -update noar ti set v0='CM6' where id=2; -update noar tt set b2='CVZONN07AXKD8A' where id=2; -update noar ti set b2='CVZONN07AXKD8A' where id=2; -update noar tt set v0='ACUP1MTUXUHQ' where id=3; -update noar ti set v0='ACUP1MTUXUHQ' where id=3; -update noar tt set b0='TB8DF8XOT5BJIJTM4GXT' where id=3; -update noar ti set b0='TB8DF8XOT5BJIJTM4GXT' where id=3; -update noar tt set v0='SVI24A1XH3WQN' where id=3; -update noar ti set v0='SVI24A1XH3WQN' where id=3; -update noar tt set b1='QSTAFZKF' where id=3; -update noar ti set b1='QSTAFZKF' where id=3; -update noar tt set v0='5R9ZK' where id=3; -update noar ti set v0='5R9ZK' where id=3; -update noar tt set b2='5IH15FMEGO5PW' where id=3; -update noar ti set b2='5IH15FMEGO5PW' where id=3; -update noar tt set v0='OLMD96PZ7V9ZVKQF3TLL8' where id=4; -update noar ti set v0='OLMD96PZ7V9ZVKQF3TLL8' where id=4; -update noar tt set b0='17KW3KEH52VIT21YEELVTQVVP' where id=4; -update noar ti set b0='17KW3KEH52VIT21YEELVTQVVP' where id=4; -update noar tt set v0='8XN2L5H4O74S' where id=4; -update noar ti set v0='8XN2L5H4O74S' where id=4; -update noar tt set b1='FHGZV50WE1VQ0CP9FKOPL8BJ' where id=4; -update noar ti set b1='FHGZV50WE1VQ0CP9FKOPL8BJ' where id=4; -update noar tt set v0='7EPKTYU7WG80OEBZ5' where id=4; -update noar ti set v0='7EPKTYU7WG80OEBZ5' where id=4; -update noar tt set b2='NJ1PU' where id=4; -update noar ti set b2='NJ1PU' where id=4; -update noar tt set v0='0JTXLLPR33Z' where id=5; -update noar ti set v0='0JTXLLPR33Z' where id=5; -update noar tt set b0='THOKSU8N2WAZI52R7B16D3LSAEU3ONO' where id=5; -update noar ti set b0='THOKSU8N2WAZI52R7B16D3LSAEU3ONO' where id=5; -update noar tt set v0='08KBBM4VSCYWENBVR' where id=5; -update noar ti set v0='08KBBM4VSCYWENBVR' where id=5; -update noar tt set b1='18UQ4HTXH05RMT' where id=5; -update noar ti set b1='18UQ4HTXH05RMT' where id=5; -update noar tt set v0='XZGKBSVKB6IA' where id=5; -update noar ti set v0='XZGKBSVKB6IA' where id=5; -update noar tt set b2='G' where id=5; -update noar ti set b2='G' where id=5; -update noar tt set v0='0AIUVJK8353JJHBZG11R44EV5OVQXV' where id=6; -update noar ti set v0='0AIUVJK8353JJHBZG11R44EV5OVQXV' where id=6; -update noar tt set b0='2' where id=6; -update noar ti set b0='2' where id=6; -update noar tt set v0='67TC4RXIU4J' where id=6; -update noar ti set v0='67TC4RXIU4J' where id=6; -update noar tt set b1='D09O3Q69M5HRNB06FTBMG' where id=6; -update noar ti set b1='D09O3Q69M5HRNB06FTBMG' where id=6; -update noar tt set v0='G1XBK8HV3' where id=6; -update noar ti set v0='G1XBK8HV3' where id=6; -update noar tt set b2='ZD53QVOY3K2IQ9Z9JJ6R1A' where id=6; -update noar ti set b2='ZD53QVOY3K2IQ9Z9JJ6R1A' where id=6; -update noar tt set v0='L9VOXIQHG7KL49BR23' where id=7; -update noar ti set v0='L9VOXIQHG7KL49BR23' where id=7; -update noar tt set b0='7HWQ5QUZV4XCCP7FOW' where id=7; -update noar ti set b0='7HWQ5QUZV4XCCP7FOW' where id=7; -update noar tt set v0='Y6E00MR1TKSTHC0NFXPGY892' where id=7; -update noar ti set v0='Y6E00MR1TKSTHC0NFXPGY892' where id=7; -update noar tt set b1='37VZIDMPXDBKGM' where id=7; -update noar ti set b1='37VZIDMPXDBKGM' where id=7; -update noar tt set v0='ZH7JNDM75ZPKNSXOPGENYV' where id=7; -update noar ti set v0='ZH7JNDM75ZPKNSXOPGENYV' where id=7; -update noar tt set b2='T1MO7TLWKGNY4ELCKW0' where id=7; -update noar ti set b2='T1MO7TLWKGNY4ELCKW0' where id=7; -update noar tt set v0='BUNE0RBQ1BZHKPE' where id=8; -update noar ti set v0='BUNE0RBQ1BZHKPE' where id=8; -update noar tt set b0='079SASB411YF18C2L00ZFZW59WJCRC' where id=8; -update noar ti set b0='079SASB411YF18C2L00ZFZW59WJCRC' where id=8; -update noar tt set v0='HO92F0CTWJ27ZWXFX8RX782EAOPR2YQ' where id=8; -update noar ti set v0='HO92F0CTWJ27ZWXFX8RX782EAOPR2YQ' where id=8; -update noar tt set b1='TASLAWC7CR250B0W9SEQOCMLCHTHNV' where id=8; -update noar ti set b1='TASLAWC7CR250B0W9SEQOCMLCHTHNV' where id=8; -update noar tt set v0='GFM5181G1KR' where id=8; -update noar ti set v0='GFM5181G1KR' where id=8; -update noar tt set b2='EGGELRME' where id=8; -update noar ti set b2='EGGELRME' where id=8; -update noar tt set v0='NU' where id=9; -update noar ti set v0='NU' where id=9; -update noar tt set b0='WXQ' where id=9; -update noar ti set b0='WXQ' where id=9; -update noar tt set v0='LYAW83V0ESNKSV42' where id=9; -update noar ti set v0='LYAW83V0ESNKSV42' where id=9; -update noar tt set b1='Q30QVJU432J' where id=9; -update noar ti set b1='Q30QVJU432J' where id=9; -update noar tt set v0='Y4AM8CYHHHGIH58OOJGMPWT' where id=9; -update noar ti set v0='Y4AM8CYHHHGIH58OOJGMPWT' where id=9; -update noar tt set b2='PJ1KK9M8DISBU6R8NP7BQM03' where id=9; -update noar ti set b2='PJ1KK9M8DISBU6R8NP7BQM03' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - f0 int not null, - v0 varchar(32) not null, - b0 tinyblob not null, - b1 tinyblob not null, - b2 mediumblob not null -) engine=tokudb; -insert into tt values (1,0,'','','',''); -insert into tt values (2,0,'','','',''); -insert into tt values (3,0,'','','',''); -insert into tt values (4,0,'','','',''); -insert into tt values (5,0,'','','',''); -insert into tt values (6,0,'','','',''); -insert into tt values (7,0,'','','',''); -insert into tt values (8,0,'','','',''); -insert into tt values (9,0,'','','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='EBDMVSE8SRS7' where id=1; -update noar ti set v0='EBDMVSE8SRS7' where id=1; -update noar tt set b0='3LLM47LYOHNHCMTKWDDL7J0PI3' where id=1; -update noar ti set b0='3LLM47LYOHNHCMTKWDDL7J0PI3' where id=1; -update noar tt set v0='ISMD5S9F3YHP8N61T60QIRWRW2YYI8' where id=1; -update noar ti set v0='ISMD5S9F3YHP8N61T60QIRWRW2YYI8' where id=1; -update noar tt set b1='YPTNHMJ6DEG2Z' where id=1; -update noar ti set b1='YPTNHMJ6DEG2Z' where id=1; -update noar tt set v0='MT58845PR24AZKRA0CXGGK2VOW' where id=1; -update noar ti set v0='MT58845PR24AZKRA0CXGGK2VOW' where id=1; -update noar tt set b2='U5PJTBALJ6G6S3R1G5GBI2KY5GHBT' where id=1; -update noar ti set b2='U5PJTBALJ6G6S3R1G5GBI2KY5GHBT' where id=1; -update noar tt set v0='JL4YOZB838MTJPSX9YK5INP54D' where id=2; -update noar ti set v0='JL4YOZB838MTJPSX9YK5INP54D' where id=2; -update noar tt set b0='6JNJRKL8L' where id=2; -update noar ti set b0='6JNJRKL8L' where id=2; -update noar tt set v0='97B6OSWMVOJ7P' where id=2; -update noar ti set v0='97B6OSWMVOJ7P' where id=2; -update noar tt set b1='BBZHEEZ58' where id=2; -update noar ti set b1='BBZHEEZ58' where id=2; -update noar tt set v0='K8H4AEJIG88D6L54' where id=2; -update noar ti set v0='K8H4AEJIG88D6L54' where id=2; -update noar tt set b2='OBVWZ9IS75O7OXGIEAE' where id=2; -update noar ti set b2='OBVWZ9IS75O7OXGIEAE' where id=2; -update noar tt set v0='R5W6007CPK3SKCC197EKYF6IIML' where id=3; -update noar ti set v0='R5W6007CPK3SKCC197EKYF6IIML' where id=3; -update noar tt set b0='0RPTS8X76FNYKXJESBQ6IJCZJ6466DFQ' where id=3; -update noar ti set b0='0RPTS8X76FNYKXJESBQ6IJCZJ6466DFQ' where id=3; -update noar tt set v0='1QXF0V6' where id=3; -update noar ti set v0='1QXF0V6' where id=3; -update noar tt set b1='545MG8ERXEY0ES2GWU6' where id=3; -update noar ti set b1='545MG8ERXEY0ES2GWU6' where id=3; -update noar tt set v0='9OER' where id=3; -update noar ti set v0='9OER' where id=3; -update noar tt set b2='2XLQR2ZLSAAF1J' where id=3; -update noar ti set b2='2XLQR2ZLSAAF1J' where id=3; -update noar tt set v0='AIG6T' where id=4; -update noar ti set v0='AIG6T' where id=4; -update noar tt set b0='UAA3DJVM4A67LENS9IQE4O34DAAZHE' where id=4; -update noar ti set b0='UAA3DJVM4A67LENS9IQE4O34DAAZHE' where id=4; -update noar tt set v0='Z8MH6087LWNL' where id=4; -update noar ti set v0='Z8MH6087LWNL' where id=4; -update noar tt set b1='2TO7O2GWF1S' where id=4; -update noar ti set b1='2TO7O2GWF1S' where id=4; -update noar tt set v0='112DGTZZFIGU6UW' where id=4; -update noar ti set v0='112DGTZZFIGU6UW' where id=4; -update noar tt set b2='ZUX' where id=4; -update noar ti set b2='ZUX' where id=4; -update noar tt set v0='5R812U1J4KC3I98Q9CD4Z5' where id=5; -update noar ti set v0='5R812U1J4KC3I98Q9CD4Z5' where id=5; -update noar tt set b0='W19LR394V1PUNQ5TOST08LK4JJ81' where id=5; -update noar ti set b0='W19LR394V1PUNQ5TOST08LK4JJ81' where id=5; -update noar tt set v0='N046OAF7KWWTFCHAK7M1MNEFUX6' where id=5; -update noar ti set v0='N046OAF7KWWTFCHAK7M1MNEFUX6' where id=5; -update noar tt set b1='BEX90' where id=5; -update noar ti set b1='BEX90' where id=5; -update noar tt set v0='W6ZJC283GG6XDRKDA00CU' where id=5; -update noar ti set v0='W6ZJC283GG6XDRKDA00CU' where id=5; -update noar tt set b2='SW6YF65ZZR' where id=5; -update noar ti set b2='SW6YF65ZZR' where id=5; -update noar tt set v0='FN4SQB7CLT' where id=6; -update noar ti set v0='FN4SQB7CLT' where id=6; -update noar tt set b0='91ESNOZG2HT8W5C3IL61K' where id=6; -update noar ti set b0='91ESNOZG2HT8W5C3IL61K' where id=6; -update noar tt set v0='OA0GW' where id=6; -update noar ti set v0='OA0GW' where id=6; -update noar tt set b1='KYB42T420M2S0RG5MVHEH8' where id=6; -update noar ti set b1='KYB42T420M2S0RG5MVHEH8' where id=6; -update noar tt set v0='SNXZDT6LXH' where id=6; -update noar ti set v0='SNXZDT6LXH' where id=6; -update noar tt set b2='3VXMULO4' where id=6; -update noar ti set b2='3VXMULO4' where id=6; -update noar tt set v0='24X59TQ4AO7TXEA8N' where id=7; -update noar ti set v0='24X59TQ4AO7TXEA8N' where id=7; -update noar tt set b0='OJNXGIEWCEJP0BO2ETUL2DRH3254VQ3' where id=7; -update noar ti set b0='OJNXGIEWCEJP0BO2ETUL2DRH3254VQ3' where id=7; -update noar tt set v0='C4ED5SOI' where id=7; -update noar ti set v0='C4ED5SOI' where id=7; -update noar tt set b1='FDEMF79SMDVEDRZV' where id=7; -update noar ti set b1='FDEMF79SMDVEDRZV' where id=7; -update noar tt set v0='45NRX77NHZ9DPO91YW24SFVC7R6PJ' where id=7; -update noar ti set v0='45NRX77NHZ9DPO91YW24SFVC7R6PJ' where id=7; -update noar tt set b2='H5DO1XGPAND5QL9ID' where id=7; -update noar ti set b2='H5DO1XGPAND5QL9ID' where id=7; -update noar tt set v0='735' where id=8; -update noar ti set v0='735' where id=8; -update noar tt set b0='F33F1LGLFK6MISSLGLQNIESWEGGNC59C' where id=8; -update noar ti set b0='F33F1LGLFK6MISSLGLQNIESWEGGNC59C' where id=8; -update noar tt set v0='Z74TECDZ0XQHY6B51AFC8B7G3A09GG2F' where id=8; -update noar ti set v0='Z74TECDZ0XQHY6B51AFC8B7G3A09GG2F' where id=8; -update noar tt set b1='OWZBVCAL9IARJLEV7J9RUGC' where id=8; -update noar ti set b1='OWZBVCAL9IARJLEV7J9RUGC' where id=8; -update noar tt set v0='HSG8G82JQIJEMQUMZMQ5ILG1UW' where id=8; -update noar ti set v0='HSG8G82JQIJEMQUMZMQ5ILG1UW' where id=8; -update noar tt set b2='1LZKUV2MNSKPN' where id=8; -update noar ti set b2='1LZKUV2MNSKPN' where id=8; -update noar tt set v0='1KMVQ13VKUTNUD8' where id=9; -update noar ti set v0='1KMVQ13VKUTNUD8' where id=9; -update noar tt set b0='8P7A9S32XDJZT44BQFQXMUMQ72' where id=9; -update noar ti set b0='8P7A9S32XDJZT44BQFQXMUMQ72' where id=9; -update noar tt set v0='HN7EL' where id=9; -update noar ti set v0='HN7EL' where id=9; -update noar tt set b1='YR8SBTP58NJMXP5BV24OL0K5B' where id=9; -update noar ti set b1='YR8SBTP58NJMXP5BV24OL0K5B' where id=9; -update noar tt set v0='MI782QHDFKDKX866T9KBZ09XVFJ' where id=9; -update noar ti set v0='MI782QHDFKDKX866T9KBZ09XVFJ' where id=9; -update noar tt set b2='9RE0JEAC4TGJ' where id=9; -update noar ti set b2='9RE0JEAC4TGJ' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - f0 int not null, - v0 varchar(256) not null, - b0 tinyblob not null, - b1 tinyblob not null, - b2 mediumblob not null -) engine=tokudb; -insert into tt values (1,0,'','','',''); -insert into tt values (2,0,'','','',''); -insert into tt values (3,0,'','','',''); -insert into tt values (4,0,'','','',''); -insert into tt values (5,0,'','','',''); -insert into tt values (6,0,'','','',''); -insert into tt values (7,0,'','','',''); -insert into tt values (8,0,'','','',''); -insert into tt values (9,0,'','','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='K8NSPJ189F8KM6OROEJOJ1NMIV9Y8K6' where id=1; -update noar ti set v0='K8NSPJ189F8KM6OROEJOJ1NMIV9Y8K6' where id=1; -update noar tt set b0='6LMF64A8OS2X3' where id=1; -update noar ti set b0='6LMF64A8OS2X3' where id=1; -update noar tt set v0='NNI1BGFAA9OM1JWZHRSDSL2KUVM44FI' where id=1; -update noar ti set v0='NNI1BGFAA9OM1JWZHRSDSL2KUVM44FI' where id=1; -update noar tt set b1='ZBROJ6Q3HRIT4GZ9V' where id=1; -update noar ti set b1='ZBROJ6Q3HRIT4GZ9V' where id=1; -update noar tt set v0='Q11983622ERSVR05GIPBXR' where id=1; -update noar ti set v0='Q11983622ERSVR05GIPBXR' where id=1; -update noar tt set b2='KN7KF' where id=1; -update noar ti set b2='KN7KF' where id=1; -update noar tt set v0='SB5ISHJJV44VO77GE8SKA7139TC38OL' where id=2; -update noar ti set v0='SB5ISHJJV44VO77GE8SKA7139TC38OL' where id=2; -update noar tt set b0='53Z8NQIBR7D10BD414BY' where id=2; -update noar ti set b0='53Z8NQIBR7D10BD414BY' where id=2; -update noar tt set v0='STPDGQUQ0LAO6SA402T1P8' where id=2; -update noar ti set v0='STPDGQUQ0LAO6SA402T1P8' where id=2; -update noar tt set b1='MKEXV3R8IK08W2J0QYJU362' where id=2; -update noar ti set b1='MKEXV3R8IK08W2J0QYJU362' where id=2; -update noar tt set v0='AP6Y9D9785T6W7FK6O1FPMGQOTLSWD' where id=2; -update noar ti set v0='AP6Y9D9785T6W7FK6O1FPMGQOTLSWD' where id=2; -update noar tt set b2='G59NTPAVZ95H2I82Q5B' where id=2; -update noar ti set b2='G59NTPAVZ95H2I82Q5B' where id=2; -update noar tt set v0='P7009TG4BTBWX' where id=3; -update noar ti set v0='P7009TG4BTBWX' where id=3; -update noar tt set b0='0SABYIY6HXY6M' where id=3; -update noar ti set b0='0SABYIY6HXY6M' where id=3; -update noar tt set v0='089COAGUJXOHIHSX9Y1VOR1O6' where id=3; -update noar ti set v0='089COAGUJXOHIHSX9Y1VOR1O6' where id=3; -update noar tt set b1='KWQEBDL877LC' where id=3; -update noar ti set b1='KWQEBDL877LC' where id=3; -update noar tt set v0='Y711VK8VM4KZYRYQB2CJG8J36' where id=3; -update noar ti set v0='Y711VK8VM4KZYRYQB2CJG8J36' where id=3; -update noar tt set b2='ZWXUKT4BQBTER9N6V' where id=3; -update noar ti set b2='ZWXUKT4BQBTER9N6V' where id=3; -update noar tt set v0='8TH9CZFHVO6LTLFZB73M7Q' where id=4; -update noar ti set v0='8TH9CZFHVO6LTLFZB73M7Q' where id=4; -update noar tt set b0='DPO8UJ6ZHYN3J0BL92' where id=4; -update noar ti set b0='DPO8UJ6ZHYN3J0BL92' where id=4; -update noar tt set v0='E2N' where id=4; -update noar ti set v0='E2N' where id=4; -update noar tt set b1='HBOUE8ABT5Q5DBGKN' where id=4; -update noar ti set b1='HBOUE8ABT5Q5DBGKN' where id=4; -update noar tt set v0='C6DA97JFDC' where id=4; -update noar ti set v0='C6DA97JFDC' where id=4; -update noar tt set b2='KJ47WRCHX9CDVXU99LMU' where id=4; -update noar ti set b2='KJ47WRCHX9CDVXU99LMU' where id=4; -update noar tt set v0='XFR3J' where id=5; -update noar ti set v0='XFR3J' where id=5; -update noar tt set b0='P78MA' where id=5; -update noar ti set b0='P78MA' where id=5; -update noar tt set v0='VGJFEI8BSG3VHUBNEPTI' where id=5; -update noar ti set v0='VGJFEI8BSG3VHUBNEPTI' where id=5; -update noar tt set b1='3EG2W3DYKCVK' where id=5; -update noar ti set b1='3EG2W3DYKCVK' where id=5; -update noar tt set v0='7M8LRFW9XOL945G' where id=5; -update noar ti set v0='7M8LRFW9XOL945G' where id=5; -update noar tt set b2='92LZO2S465NJ3ZZNVTH' where id=5; -update noar ti set b2='92LZO2S465NJ3ZZNVTH' where id=5; -update noar tt set v0='E5KTDNHV8YRLR8MS185F886N' where id=6; -update noar ti set v0='E5KTDNHV8YRLR8MS185F886N' where id=6; -update noar tt set b0='84W3KV27G41M470O5UM2MV58' where id=6; -update noar ti set b0='84W3KV27G41M470O5UM2MV58' where id=6; -update noar tt set v0='8WL1S7VOITW3A0V9EKAYZ5WSH5AVABKI' where id=6; -update noar ti set v0='8WL1S7VOITW3A0V9EKAYZ5WSH5AVABKI' where id=6; -update noar tt set b1='HVAUU0T8RUA7KFWQHXH102UCQZNP' where id=6; -update noar ti set b1='HVAUU0T8RUA7KFWQHXH102UCQZNP' where id=6; -update noar tt set v0='YRBNYN9OQEX299P95WWZ16GG1XEU' where id=6; -update noar ti set v0='YRBNYN9OQEX299P95WWZ16GG1XEU' where id=6; -update noar tt set b2='1JZW6RL836Y0B' where id=6; -update noar ti set b2='1JZW6RL836Y0B' where id=6; -update noar tt set v0='9AO0PMC1U3NK5VU6Y0A' where id=7; -update noar ti set v0='9AO0PMC1U3NK5VU6Y0A' where id=7; -update noar tt set b0='DXED3P' where id=7; -update noar ti set b0='DXED3P' where id=7; -update noar tt set v0='N91HXSDSGQ8957CF4SH' where id=7; -update noar ti set v0='N91HXSDSGQ8957CF4SH' where id=7; -update noar tt set b1='19RTEBXJ' where id=7; -update noar ti set b1='19RTEBXJ' where id=7; -update noar tt set v0='NA583' where id=7; -update noar ti set v0='NA583' where id=7; -update noar tt set b2='A8PIRU08HHI8P4NH1H7M8' where id=7; -update noar ti set b2='A8PIRU08HHI8P4NH1H7M8' where id=7; -update noar tt set v0='TCKTNX00RS7OCBZS6R' where id=8; -update noar ti set v0='TCKTNX00RS7OCBZS6R' where id=8; -update noar tt set b0='PFH2ECI5PSYY5X6RVW' where id=8; -update noar ti set b0='PFH2ECI5PSYY5X6RVW' where id=8; -update noar tt set v0='ZJLFP22U5MOVF' where id=8; -update noar ti set v0='ZJLFP22U5MOVF' where id=8; -update noar tt set b1='89XI3QPR7JM7LJD596FDN' where id=8; -update noar ti set b1='89XI3QPR7JM7LJD596FDN' where id=8; -update noar tt set v0='DNMX5QSFKDQJ' where id=8; -update noar ti set v0='DNMX5QSFKDQJ' where id=8; -update noar tt set b2='PMANK0RF34GV' where id=8; -update noar ti set b2='PMANK0RF34GV' where id=8; -update noar tt set v0='CP9OR4' where id=9; -update noar ti set v0='CP9OR4' where id=9; -update noar tt set b0='UBARS9EYH43DRZ4RQJQIP1X2JP2CP' where id=9; -update noar ti set b0='UBARS9EYH43DRZ4RQJQIP1X2JP2CP' where id=9; -update noar tt set v0='CIXEAVKVXU' where id=9; -update noar ti set v0='CIXEAVKVXU' where id=9; -update noar tt set b1='S9RGTGFSCE8CUTA2ZTQ934BBPGG' where id=9; -update noar ti set b1='S9RGTGFSCE8CUTA2ZTQ934BBPGG' where id=9; -update noar tt set v0='O6TZ8JM8A4W1' where id=9; -update noar ti set v0='O6TZ8JM8A4W1' where id=9; -update noar tt set b2='3QWTT010XHC5UHLN4S06' where id=9; -update noar ti set b2='3QWTT010XHC5UHLN4S06' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - f0 int null, - v0 varchar(32) null, - b0 tinyblob null, - b1 tinyblob null, - b2 longblob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='IO183H14D1WS' where id=1; -update noar ti set v0='IO183H14D1WS' where id=1; -update noar tt set b0='4659HHPODFOX7H28I' where id=1; -update noar ti set b0='4659HHPODFOX7H28I' where id=1; -update noar tt set v0='V794014B20ZPL8UA93XN4D4GN452ISBM' where id=1; -update noar ti set v0='V794014B20ZPL8UA93XN4D4GN452ISBM' where id=1; -update noar tt set b1='NP' where id=1; -update noar ti set b1='NP' where id=1; -update noar tt set v0='HZD70LUSY' where id=1; -update noar ti set v0='HZD70LUSY' where id=1; -update noar tt set b2='2W7TW' where id=1; -update noar ti set b2='2W7TW' where id=1; -update noar tt set v0='LG5Y5UAYTY0JI' where id=2; -update noar ti set v0='LG5Y5UAYTY0JI' where id=2; -update noar tt set b0='LI0' where id=2; -update noar ti set b0='LI0' where id=2; -update noar tt set v0='V0PQLUP624SPBJTVPYY6LWZ' where id=2; -update noar ti set v0='V0PQLUP624SPBJTVPYY6LWZ' where id=2; -update noar tt set b1='FFGMF67N' where id=2; -update noar ti set b1='FFGMF67N' where id=2; -update noar tt set v0='9ILULRIJ49FOWO701RS8US6EN0CLC' where id=2; -update noar ti set v0='9ILULRIJ49FOWO701RS8US6EN0CLC' where id=2; -update noar tt set b2='R2XLNNPFM35QH9PTFG7429YES3' where id=2; -update noar ti set b2='R2XLNNPFM35QH9PTFG7429YES3' where id=2; -update noar tt set v0='GO60CLY8UW1IE5DMDM' where id=3; -update noar ti set v0='GO60CLY8UW1IE5DMDM' where id=3; -update noar tt set b0='G7HTHTB611JX19W6CETJPCTDYFTC5' where id=3; -update noar ti set b0='G7HTHTB611JX19W6CETJPCTDYFTC5' where id=3; -update noar tt set v0='FPR08WZUWZD' where id=3; -update noar ti set v0='FPR08WZUWZD' where id=3; -update noar tt set b1='RFELQ2O9XNWVT8E1AO43S7O' where id=3; -update noar ti set b1='RFELQ2O9XNWVT8E1AO43S7O' where id=3; -update noar tt set v0='6JCMUIRX4CDT8R5V334OSNEQ8C' where id=3; -update noar ti set v0='6JCMUIRX4CDT8R5V334OSNEQ8C' where id=3; -update noar tt set b2='1W0RNVBQ9UQT0BXI' where id=3; -update noar ti set b2='1W0RNVBQ9UQT0BXI' where id=3; -update noar tt set v0='RHM' where id=4; -update noar ti set v0='RHM' where id=4; -update noar tt set b0='8O1VS8JKLHNNVEI2VTQIVBIK0' where id=4; -update noar ti set b0='8O1VS8JKLHNNVEI2VTQIVBIK0' where id=4; -update noar tt set v0='F1Y45M' where id=4; -update noar ti set v0='F1Y45M' where id=4; -update noar tt set b1='0AISSMOOX1GNSOIUN7B4C2708U8U1' where id=4; -update noar ti set b1='0AISSMOOX1GNSOIUN7B4C2708U8U1' where id=4; -update noar tt set v0='4FPJ12U2KXUUF34UUCF2HA7SU' where id=4; -update noar ti set v0='4FPJ12U2KXUUF34UUCF2HA7SU' where id=4; -update noar tt set b2='KEL3VYHM' where id=4; -update noar ti set b2='KEL3VYHM' where id=4; -update noar tt set v0='YSR5UG5GCIWVQB1VKWW4O0HEPU57A2' where id=5; -update noar ti set v0='YSR5UG5GCIWVQB1VKWW4O0HEPU57A2' where id=5; -update noar tt set b0='OW8NRFQ7RUF4WW0' where id=5; -update noar ti set b0='OW8NRFQ7RUF4WW0' where id=5; -update noar tt set v0='ZSLIWZKVJWS0XXD' where id=5; -update noar ti set v0='ZSLIWZKVJWS0XXD' where id=5; -update noar tt set b1='TW5TC0P8LQ7LK41H3NDGL5CC' where id=5; -update noar ti set b1='TW5TC0P8LQ7LK41H3NDGL5CC' where id=5; -update noar tt set v0='CR' where id=5; -update noar ti set v0='CR' where id=5; -update noar tt set b2='3A62GE0' where id=5; -update noar ti set b2='3A62GE0' where id=5; -update noar tt set v0='JIT6Z9A8DFG084KW7G' where id=6; -update noar ti set v0='JIT6Z9A8DFG084KW7G' where id=6; -update noar tt set b0='HM' where id=6; -update noar ti set b0='HM' where id=6; -update noar tt set v0='WJH3UE76ZSG' where id=6; -update noar ti set v0='WJH3UE76ZSG' where id=6; -update noar tt set b1='4NGYH5TWD57ZRWRV' where id=6; -update noar ti set b1='4NGYH5TWD57ZRWRV' where id=6; -update noar tt set v0='119K6HXZD492URWUT1ZEIOG' where id=6; -update noar ti set v0='119K6HXZD492URWUT1ZEIOG' where id=6; -update noar tt set b2='RCO3B5MT2DGXQZ' where id=6; -update noar ti set b2='RCO3B5MT2DGXQZ' where id=6; -update noar tt set v0='OJ291GEPK1RMR07OFH9' where id=7; -update noar ti set v0='OJ291GEPK1RMR07OFH9' where id=7; -update noar tt set b0='H24GEC0NZHAGY4QC757OI2QNFY74' where id=7; -update noar ti set b0='H24GEC0NZHAGY4QC757OI2QNFY74' where id=7; -update noar tt set v0='3P19Y7OJYE' where id=7; -update noar ti set v0='3P19Y7OJYE' where id=7; -update noar tt set b1='JH' where id=7; -update noar ti set b1='JH' where id=7; -update noar tt set v0='5' where id=7; -update noar ti set v0='5' where id=7; -update noar tt set b2='TAYUPP3H7J5RE70I8WWPKXEAA' where id=7; -update noar ti set b2='TAYUPP3H7J5RE70I8WWPKXEAA' where id=7; -update noar tt set v0='CFG0DPZS0CMB' where id=8; -update noar ti set v0='CFG0DPZS0CMB' where id=8; -update noar tt set b0='J6GJABCR9SJKK6BO5' where id=8; -update noar ti set b0='J6GJABCR9SJKK6BO5' where id=8; -update noar tt set v0='ERVZ4EV9HZXZS6YTS9P' where id=8; -update noar ti set v0='ERVZ4EV9HZXZS6YTS9P' where id=8; -update noar tt set b1='47TDQS84MGAB9Z4TC' where id=8; -update noar ti set b1='47TDQS84MGAB9Z4TC' where id=8; -update noar tt set v0='8GNSVLA8IHMYTUOYIM' where id=8; -update noar ti set v0='8GNSVLA8IHMYTUOYIM' where id=8; -update noar tt set b2='O475F' where id=8; -update noar ti set b2='O475F' where id=8; -update noar tt set v0='GG4GDZ4CSPDY2MGGS6L9QBH5W6' where id=9; -update noar ti set v0='GG4GDZ4CSPDY2MGGS6L9QBH5W6' where id=9; -update noar tt set b0='GES24NIWZ0FJ09HTB8' where id=9; -update noar ti set b0='GES24NIWZ0FJ09HTB8' where id=9; -update noar tt set v0='S2NHJIET' where id=9; -update noar ti set v0='S2NHJIET' where id=9; -update noar tt set b1='LZSCMC5B3MGLGS68WDDLX122GHBW8WR' where id=9; -update noar ti set b1='LZSCMC5B3MGLGS68WDDLX122GHBW8WR' where id=9; -update noar tt set v0='NNRHRO87YKM9ZHMXIXY94GO6T84EXDU7' where id=9; -update noar ti set v0='NNRHRO87YKM9ZHMXIXY94GO6T84EXDU7' where id=9; -update noar tt set b2='DUYWTHBGQTFWY0F7WBBRUIKL9CA5' where id=9; -update noar ti set b2='DUYWTHBGQTFWY0F7WBBRUIKL9CA5' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - f0 int null, - v0 varchar(256) null, - b0 tinyblob null, - b1 tinyblob null, - b2 longblob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='FQJEBWZ5H9QATEP' where id=1; -update noar ti set v0='FQJEBWZ5H9QATEP' where id=1; -update noar tt set b0='94KXNTAJHCFX3JG458XUZGAGAFFX' where id=1; -update noar ti set b0='94KXNTAJHCFX3JG458XUZGAGAFFX' where id=1; -update noar tt set v0='S4WX0KP4IYHF7WPV7WLVOZ79K81' where id=1; -update noar ti set v0='S4WX0KP4IYHF7WPV7WLVOZ79K81' where id=1; -update noar tt set b1='NF' where id=1; -update noar ti set b1='NF' where id=1; -update noar tt set v0='FYD1C8XIBYI16SHIVJJYNPY6P' where id=1; -update noar ti set v0='FYD1C8XIBYI16SHIVJJYNPY6P' where id=1; -update noar tt set b2='YXXQPI18CCSAAKIC5R3N52LUMGF7AJW' where id=1; -update noar ti set b2='YXXQPI18CCSAAKIC5R3N52LUMGF7AJW' where id=1; -update noar tt set v0='JRPGR9ZV6VQLXX4UZ5S229ZQB0SZ2' where id=2; -update noar ti set v0='JRPGR9ZV6VQLXX4UZ5S229ZQB0SZ2' where id=2; -update noar tt set b0='WEN30AFXA6DLGXWGAZ' where id=2; -update noar ti set b0='WEN30AFXA6DLGXWGAZ' where id=2; -update noar tt set v0='VP0W5C5TY' where id=2; -update noar ti set v0='VP0W5C5TY' where id=2; -update noar tt set b1='SX79T2M' where id=2; -update noar ti set b1='SX79T2M' where id=2; -update noar tt set v0='SMA1R3STCSPCR84YO8J9C26L2' where id=2; -update noar ti set v0='SMA1R3STCSPCR84YO8J9C26L2' where id=2; -update noar tt set b2='UZFK1OQXFUZG' where id=2; -update noar ti set b2='UZFK1OQXFUZG' where id=2; -update noar tt set v0='EGWWLFQJ0B1' where id=3; -update noar ti set v0='EGWWLFQJ0B1' where id=3; -update noar tt set b0='4V8RMAL' where id=3; -update noar ti set b0='4V8RMAL' where id=3; -update noar tt set v0='72GDUYZ86W8RJQYXL6QEE' where id=3; -update noar ti set v0='72GDUYZ86W8RJQYXL6QEE' where id=3; -update noar tt set b1='BZKLCI' where id=3; -update noar ti set b1='BZKLCI' where id=3; -update noar tt set v0='IHBKYL1BDZ6UT672YO' where id=3; -update noar ti set v0='IHBKYL1BDZ6UT672YO' where id=3; -update noar tt set b2='ULBHM2GQSZE57FYYBC7R2' where id=3; -update noar ti set b2='ULBHM2GQSZE57FYYBC7R2' where id=3; -update noar tt set v0='KX1L5YMHYO5TWA2NFF2ZC' where id=4; -update noar ti set v0='KX1L5YMHYO5TWA2NFF2ZC' where id=4; -update noar tt set b0='V8DA0B9D' where id=4; -update noar ti set b0='V8DA0B9D' where id=4; -update noar tt set v0='J7FI7Z46YLY5591JREZCXU55L7' where id=4; -update noar ti set v0='J7FI7Z46YLY5591JREZCXU55L7' where id=4; -update noar tt set b1='LYMOJ2NBZ3QSJHPUK2L2' where id=4; -update noar ti set b1='LYMOJ2NBZ3QSJHPUK2L2' where id=4; -update noar tt set v0='C1PDF82HCNUMTX7TD0IAUGU8781' where id=4; -update noar ti set v0='C1PDF82HCNUMTX7TD0IAUGU8781' where id=4; -update noar tt set b2='SHV4DZNX2T26CR0BA7GWG5139PTNG' where id=4; -update noar ti set b2='SHV4DZNX2T26CR0BA7GWG5139PTNG' where id=4; -update noar tt set v0='T772XEVGTFV' where id=5; -update noar ti set v0='T772XEVGTFV' where id=5; -update noar tt set b0='CFMKN8LUFBEBNRE4FJG7V7YU17IIE' where id=5; -update noar ti set b0='CFMKN8LUFBEBNRE4FJG7V7YU17IIE' where id=5; -update noar tt set v0='D' where id=5; -update noar ti set v0='D' where id=5; -update noar tt set b1='B6P2Y36S7LV04DBT' where id=5; -update noar ti set b1='B6P2Y36S7LV04DBT' where id=5; -update noar tt set v0='FUSTNCDCMYB00USXC9SG' where id=5; -update noar ti set v0='FUSTNCDCMYB00USXC9SG' where id=5; -update noar tt set b2='45X6B9C9CKO7ACSDYWF2C0UPEWBVD' where id=5; -update noar ti set b2='45X6B9C9CKO7ACSDYWF2C0UPEWBVD' where id=5; -update noar tt set v0='YRF' where id=6; -update noar ti set v0='YRF' where id=6; -update noar tt set b0='FIT19WCTO' where id=6; -update noar ti set b0='FIT19WCTO' where id=6; -update noar tt set v0='HUT7DKH54G3SEE08R8U1SCOJY' where id=6; -update noar ti set v0='HUT7DKH54G3SEE08R8U1SCOJY' where id=6; -update noar tt set b1='K5PWHFU4QXCT8PULYCJN845' where id=6; -update noar ti set b1='K5PWHFU4QXCT8PULYCJN845' where id=6; -update noar tt set v0='1ZV6T12OVT0O9J7WKV' where id=6; -update noar ti set v0='1ZV6T12OVT0O9J7WKV' where id=6; -update noar tt set b2='3AMDBYZFPO2GDDZGHKC7GBNJ' where id=6; -update noar ti set b2='3AMDBYZFPO2GDDZGHKC7GBNJ' where id=6; -update noar tt set v0='62649G70QT23G598IR5CKLPND4SFUKQ' where id=7; -update noar ti set v0='62649G70QT23G598IR5CKLPND4SFUKQ' where id=7; -update noar tt set b0='Q7PI30WPVLNLW00' where id=7; -update noar ti set b0='Q7PI30WPVLNLW00' where id=7; -update noar tt set v0='U4DU6U03LW0GDV' where id=7; -update noar ti set v0='U4DU6U03LW0GDV' where id=7; -update noar tt set b1='581AR1P21X8HKGJYNDH0AGXB' where id=7; -update noar ti set b1='581AR1P21X8HKGJYNDH0AGXB' where id=7; -update noar tt set v0='OEOCXX8MB38GTMW' where id=7; -update noar ti set v0='OEOCXX8MB38GTMW' where id=7; -update noar tt set b2='Y6G8ZWVI5EGH7NMJ326OQKJWZMCCO5IA' where id=7; -update noar ti set b2='Y6G8ZWVI5EGH7NMJ326OQKJWZMCCO5IA' where id=7; -update noar tt set v0='CM8RUHC2HEH2MSY47BATWMXMXIWV' where id=8; -update noar ti set v0='CM8RUHC2HEH2MSY47BATWMXMXIWV' where id=8; -update noar tt set b0='J48HOSOIR8ITD' where id=8; -update noar ti set b0='J48HOSOIR8ITD' where id=8; -update noar tt set v0='CJ7DM7VIS5FVFFTSC1A9T3IPOX512' where id=8; -update noar ti set v0='CJ7DM7VIS5FVFFTSC1A9T3IPOX512' where id=8; -update noar tt set b1='DDDA0C1KCQAGLX02PUPYX9JOTH1Q4WBY' where id=8; -update noar ti set b1='DDDA0C1KCQAGLX02PUPYX9JOTH1Q4WBY' where id=8; -update noar tt set v0='5WMFIGARIK08F4WOA1' where id=8; -update noar ti set v0='5WMFIGARIK08F4WOA1' where id=8; -update noar tt set b2='3C74W5EAAU06EEK745CEYPKEMQD' where id=8; -update noar ti set b2='3C74W5EAAU06EEK745CEYPKEMQD' where id=8; -update noar tt set v0='8YQL4C2UA838FLPTK8' where id=9; -update noar ti set v0='8YQL4C2UA838FLPTK8' where id=9; -update noar tt set b0='6MIA72A297ZYL2VLGDJ3HD1XR' where id=9; -update noar ti set b0='6MIA72A297ZYL2VLGDJ3HD1XR' where id=9; -update noar tt set v0='MW5PFU7AUWFDGRE6' where id=9; -update noar ti set v0='MW5PFU7AUWFDGRE6' where id=9; -update noar tt set b1='OTBG4W5FF1ZY6OML4FVJP1H14IBH' where id=9; -update noar ti set b1='OTBG4W5FF1ZY6OML4FVJP1H14IBH' where id=9; -update noar tt set v0='UGMRBVTEORP6EM3TJ' where id=9; -update noar ti set v0='UGMRBVTEORP6EM3TJ' where id=9; -update noar tt set b2='V' where id=9; -update noar ti set b2='V' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - f0 int not null, - v0 varchar(32) not null, - b0 tinyblob not null, - b1 tinyblob not null, - b2 longblob not null -) engine=tokudb; -insert into tt values (1,0,'','','',''); -insert into tt values (2,0,'','','',''); -insert into tt values (3,0,'','','',''); -insert into tt values (4,0,'','','',''); -insert into tt values (5,0,'','','',''); -insert into tt values (6,0,'','','',''); -insert into tt values (7,0,'','','',''); -insert into tt values (8,0,'','','',''); -insert into tt values (9,0,'','','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='7XTT73TB6O2ZROIS6Y' where id=1; -update noar ti set v0='7XTT73TB6O2ZROIS6Y' where id=1; -update noar tt set b0='Q7KGHH' where id=1; -update noar ti set b0='Q7KGHH' where id=1; -update noar tt set v0='XY1VOS09GPAWLXEETTVSP3T0' where id=1; -update noar ti set v0='XY1VOS09GPAWLXEETTVSP3T0' where id=1; -update noar tt set b1='1TK8D' where id=1; -update noar ti set b1='1TK8D' where id=1; -update noar tt set v0='16XA06KSW6NIT' where id=1; -update noar ti set v0='16XA06KSW6NIT' where id=1; -update noar tt set b2='7T3DDNQPF4OYECMNFGX5OXJF' where id=1; -update noar ti set b2='7T3DDNQPF4OYECMNFGX5OXJF' where id=1; -update noar tt set v0='IIN4XULFRSR58UT4H6XTFOFSNAYMMQBB' where id=2; -update noar ti set v0='IIN4XULFRSR58UT4H6XTFOFSNAYMMQBB' where id=2; -update noar tt set b0='ZFCOTEUO684CUJBGJSDWO7W' where id=2; -update noar ti set b0='ZFCOTEUO684CUJBGJSDWO7W' where id=2; -update noar tt set v0='X9FHNE7G6YYWCBP9EWH8RD4W' where id=2; -update noar ti set v0='X9FHNE7G6YYWCBP9EWH8RD4W' where id=2; -update noar tt set b1='M4OYBT793CUJ1674PHUUEAM8J55MS' where id=2; -update noar ti set b1='M4OYBT793CUJ1674PHUUEAM8J55MS' where id=2; -update noar tt set v0='F' where id=2; -update noar ti set v0='F' where id=2; -update noar tt set b2='2GX93CUWKA7GKHTWMR' where id=2; -update noar ti set b2='2GX93CUWKA7GKHTWMR' where id=2; -update noar tt set v0='3S8UD79J7ZMYZ' where id=3; -update noar ti set v0='3S8UD79J7ZMYZ' where id=3; -update noar tt set b0='6TBMQGKGL2JMT' where id=3; -update noar ti set b0='6TBMQGKGL2JMT' where id=3; -update noar tt set v0='Z950E9IRHP5L1VTLMJ0MECLQC51' where id=3; -update noar ti set v0='Z950E9IRHP5L1VTLMJ0MECLQC51' where id=3; -update noar tt set b1='4TZ3B' where id=3; -update noar ti set b1='4TZ3B' where id=3; -update noar tt set v0='V' where id=3; -update noar ti set v0='V' where id=3; -update noar tt set b2='4GU1VTRD5GF87HNJPJYP2SXK0IRBQPY' where id=3; -update noar ti set b2='4GU1VTRD5GF87HNJPJYP2SXK0IRBQPY' where id=3; -update noar tt set v0='ECEYJOFA504OPSNOEAOJ' where id=4; -update noar ti set v0='ECEYJOFA504OPSNOEAOJ' where id=4; -update noar tt set b0='OUYV5F' where id=4; -update noar ti set b0='OUYV5F' where id=4; -update noar tt set v0='7Y6J6LXKONTTGEVEUA9Z' where id=4; -update noar ti set v0='7Y6J6LXKONTTGEVEUA9Z' where id=4; -update noar tt set b1='P3LW' where id=4; -update noar ti set b1='P3LW' where id=4; -update noar tt set v0='SZ38GAN2EM51' where id=4; -update noar ti set v0='SZ38GAN2EM51' where id=4; -update noar tt set b2='9E' where id=4; -update noar ti set b2='9E' where id=4; -update noar tt set v0='2' where id=5; -update noar ti set v0='2' where id=5; -update noar tt set b0='IF7YOOD8UCL7FL' where id=5; -update noar ti set b0='IF7YOOD8UCL7FL' where id=5; -update noar tt set v0='HUHXW5QJF7P' where id=5; -update noar ti set v0='HUHXW5QJF7P' where id=5; -update noar tt set b1='54I625COL1E' where id=5; -update noar ti set b1='54I625COL1E' where id=5; -update noar tt set v0='T61CCMJU0FWNX' where id=5; -update noar ti set v0='T61CCMJU0FWNX' where id=5; -update noar tt set b2='Y1G0RDSE184U3EI21NQWJS7' where id=5; -update noar ti set b2='Y1G0RDSE184U3EI21NQWJS7' where id=5; -update noar tt set v0='HUHMVG3C6KFUIWZYPSJWAJFILVTWW0' where id=6; -update noar ti set v0='HUHMVG3C6KFUIWZYPSJWAJFILVTWW0' where id=6; -update noar tt set b0='SSS4' where id=6; -update noar ti set b0='SSS4' where id=6; -update noar tt set v0='22Q3QFMX9O6EK8JH5J' where id=6; -update noar ti set v0='22Q3QFMX9O6EK8JH5J' where id=6; -update noar tt set b1='GFQYG61MUE3BO5' where id=6; -update noar ti set b1='GFQYG61MUE3BO5' where id=6; -update noar tt set v0='MJ6RUYCTN1B04IXPBI6K7VONB3RZO' where id=6; -update noar ti set v0='MJ6RUYCTN1B04IXPBI6K7VONB3RZO' where id=6; -update noar tt set b2='QC1UN0X0ZDF6YK' where id=6; -update noar ti set b2='QC1UN0X0ZDF6YK' where id=6; -update noar tt set v0='16GAUCR1A7FZV3BN0' where id=7; -update noar ti set v0='16GAUCR1A7FZV3BN0' where id=7; -update noar tt set b0='4S71LZQD1MV4PLZ9K273TF0I' where id=7; -update noar ti set b0='4S71LZQD1MV4PLZ9K273TF0I' where id=7; -update noar tt set v0='B3DX22JT9KMPOMG4YQNQSEZD8I' where id=7; -update noar ti set v0='B3DX22JT9KMPOMG4YQNQSEZD8I' where id=7; -update noar tt set b1='901DP42WV97QFW1NLYDRR88AWP' where id=7; -update noar ti set b1='901DP42WV97QFW1NLYDRR88AWP' where id=7; -update noar tt set v0='RH1H99MQBOWGDNA6F0ZCAU0EHY' where id=7; -update noar ti set v0='RH1H99MQBOWGDNA6F0ZCAU0EHY' where id=7; -update noar tt set b2='UTJ24G95SZK28WIZTEG7FQAS2G5AFH' where id=7; -update noar ti set b2='UTJ24G95SZK28WIZTEG7FQAS2G5AFH' where id=7; -update noar tt set v0='5INBHYAFHU6UNXWXW82' where id=8; -update noar ti set v0='5INBHYAFHU6UNXWXW82' where id=8; -update noar tt set b0='R8' where id=8; -update noar ti set b0='R8' where id=8; -update noar tt set v0='86J3XWPQBDAE7DH6N4BSWCNKQ0DSICR4' where id=8; -update noar ti set v0='86J3XWPQBDAE7DH6N4BSWCNKQ0DSICR4' where id=8; -update noar tt set b1='XO9ADPIOC15W65' where id=8; -update noar ti set b1='XO9ADPIOC15W65' where id=8; -update noar tt set v0='ZWX' where id=8; -update noar ti set v0='ZWX' where id=8; -update noar tt set b2='DI02PG5UHYGW26QIP7RFN5' where id=8; -update noar ti set b2='DI02PG5UHYGW26QIP7RFN5' where id=8; -update noar tt set v0='23B' where id=9; -update noar ti set v0='23B' where id=9; -update noar tt set b0='OK7CO7B605S05ZEA2R' where id=9; -update noar ti set b0='OK7CO7B605S05ZEA2R' where id=9; -update noar tt set v0='MRAVTBHQJ2KMBQ' where id=9; -update noar ti set v0='MRAVTBHQJ2KMBQ' where id=9; -update noar tt set b1='VBVVXR' where id=9; -update noar ti set b1='VBVVXR' where id=9; -update noar tt set v0='WVYRUL7OKPOCAG' where id=9; -update noar ti set v0='WVYRUL7OKPOCAG' where id=9; -update noar tt set b2='AZYZ2TNI4' where id=9; -update noar ti set b2='AZYZ2TNI4' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - f0 int not null, - v0 varchar(256) not null, - b0 tinyblob not null, - b1 tinyblob not null, - b2 longblob not null -) engine=tokudb; -insert into tt values (1,0,'','','',''); -insert into tt values (2,0,'','','',''); -insert into tt values (3,0,'','','',''); -insert into tt values (4,0,'','','',''); -insert into tt values (5,0,'','','',''); -insert into tt values (6,0,'','','',''); -insert into tt values (7,0,'','','',''); -insert into tt values (8,0,'','','',''); -insert into tt values (9,0,'','','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='P8ERNEXJX0' where id=1; -update noar ti set v0='P8ERNEXJX0' where id=1; -update noar tt set b0='46LLDX6PU5W3C1AK8' where id=1; -update noar ti set b0='46LLDX6PU5W3C1AK8' where id=1; -update noar tt set v0='89DEUI' where id=1; -update noar ti set v0='89DEUI' where id=1; -update noar tt set b1='51OIFUHAFC' where id=1; -update noar ti set b1='51OIFUHAFC' where id=1; -update noar tt set v0='YDG1IG3BOYA8D9J7LNZM' where id=1; -update noar ti set v0='YDG1IG3BOYA8D9J7LNZM' where id=1; -update noar tt set b2='Q31K7LUKOKN63WE0536ZJVXE4VFGYJL' where id=1; -update noar ti set b2='Q31K7LUKOKN63WE0536ZJVXE4VFGYJL' where id=1; -update noar tt set v0='V' where id=2; -update noar ti set v0='V' where id=2; -update noar tt set b0='4' where id=2; -update noar ti set b0='4' where id=2; -update noar tt set v0='HF3LV51L9NUVQ16H' where id=2; -update noar ti set v0='HF3LV51L9NUVQ16H' where id=2; -update noar tt set b1='9TLL9T' where id=2; -update noar ti set b1='9TLL9T' where id=2; -update noar tt set v0='NJD6IG' where id=2; -update noar ti set v0='NJD6IG' where id=2; -update noar tt set b2='ZZ0LN5ILJ7E1WWMME26J6BFR5' where id=2; -update noar ti set b2='ZZ0LN5ILJ7E1WWMME26J6BFR5' where id=2; -update noar tt set v0='BMZSSN5DZ68AAZHDFVDKT6AOIN4' where id=3; -update noar ti set v0='BMZSSN5DZ68AAZHDFVDKT6AOIN4' where id=3; -update noar tt set b0='IYBES7D33F' where id=3; -update noar ti set b0='IYBES7D33F' where id=3; -update noar tt set v0='VRV9J3OELG82TP49NIIL93K0ILZK8OEH' where id=3; -update noar ti set v0='VRV9J3OELG82TP49NIIL93K0ILZK8OEH' where id=3; -update noar tt set b1='BAZMSYZ9' where id=3; -update noar ti set b1='BAZMSYZ9' where id=3; -update noar tt set v0='71TVIPM60CDQ' where id=3; -update noar ti set v0='71TVIPM60CDQ' where id=3; -update noar tt set b2='PQ0CQ9TQJ30QHIE6VMFKUZ0VM24' where id=3; -update noar ti set b2='PQ0CQ9TQJ30QHIE6VMFKUZ0VM24' where id=3; -update noar tt set v0='FK2QS2M38MG4SB' where id=4; -update noar ti set v0='FK2QS2M38MG4SB' where id=4; -update noar tt set b0='BJ53EUSXGLSJT2DK0HRSTKVNOC' where id=4; -update noar ti set b0='BJ53EUSXGLSJT2DK0HRSTKVNOC' where id=4; -update noar tt set v0='AW0JKGZG' where id=4; -update noar ti set v0='AW0JKGZG' where id=4; -update noar tt set b1='QYF22DIANJZJDLW' where id=4; -update noar ti set b1='QYF22DIANJZJDLW' where id=4; -update noar tt set v0='UOKB2TZJGOAY7W0CCY13IM6DCN83RNV' where id=4; -update noar ti set v0='UOKB2TZJGOAY7W0CCY13IM6DCN83RNV' where id=4; -update noar tt set b2='QFGB82ROQMFRJ' where id=4; -update noar ti set b2='QFGB82ROQMFRJ' where id=4; -update noar tt set v0='GCT1' where id=5; -update noar ti set v0='GCT1' where id=5; -update noar tt set b0='4AY3G3TMA6K1KLOG' where id=5; -update noar ti set b0='4AY3G3TMA6K1KLOG' where id=5; -update noar tt set v0='E2NQGKV9NQ' where id=5; -update noar ti set v0='E2NQGKV9NQ' where id=5; -update noar tt set b1='0FZXXTL56A9FDWQWTV8VDE5' where id=5; -update noar ti set b1='0FZXXTL56A9FDWQWTV8VDE5' where id=5; -update noar tt set v0='2' where id=5; -update noar ti set v0='2' where id=5; -update noar tt set b2='XNHFGL9O4331TJ8O5WGJ' where id=5; -update noar ti set b2='XNHFGL9O4331TJ8O5WGJ' where id=5; -update noar tt set v0='3WN2' where id=6; -update noar ti set v0='3WN2' where id=6; -update noar tt set b0='4OHP6FSU5QAPFHYGW3' where id=6; -update noar ti set b0='4OHP6FSU5QAPFHYGW3' where id=6; -update noar tt set v0='6LZLS7JDJZMXTEL09' where id=6; -update noar ti set v0='6LZLS7JDJZMXTEL09' where id=6; -update noar tt set b1='E56W' where id=6; -update noar ti set b1='E56W' where id=6; -update noar tt set v0='Z' where id=6; -update noar ti set v0='Z' where id=6; -update noar tt set b2='QL4P44RMBNPTM1BGXORDXA' where id=6; -update noar ti set b2='QL4P44RMBNPTM1BGXORDXA' where id=6; -update noar tt set v0='V72KAJT49Q3XNJJH3BZ38UIDBR' where id=7; -update noar ti set v0='V72KAJT49Q3XNJJH3BZ38UIDBR' where id=7; -update noar tt set b0='A8ZHTF28G2ESEKC2P' where id=7; -update noar ti set b0='A8ZHTF28G2ESEKC2P' where id=7; -update noar tt set v0='MSU2TK7T7X8H2PO002' where id=7; -update noar ti set v0='MSU2TK7T7X8H2PO002' where id=7; -update noar tt set b1='OEIVQ9JNR12TLNS9F9TRBO' where id=7; -update noar ti set b1='OEIVQ9JNR12TLNS9F9TRBO' where id=7; -update noar tt set v0='ORMWQRG' where id=7; -update noar ti set v0='ORMWQRG' where id=7; -update noar tt set b2='2TGJ' where id=7; -update noar ti set b2='2TGJ' where id=7; -update noar tt set v0='DM8NIYDI3UY7VYOP6CA' where id=8; -update noar ti set v0='DM8NIYDI3UY7VYOP6CA' where id=8; -update noar tt set b0='0R8SCQQHS2' where id=8; -update noar ti set b0='0R8SCQQHS2' where id=8; -update noar tt set v0='73V4GP8ZGHQUPGHJQNEMSNB6ZDC09RB' where id=8; -update noar ti set v0='73V4GP8ZGHQUPGHJQNEMSNB6ZDC09RB' where id=8; -update noar tt set b1='T5PUHSVI2D42NGLBRORMZ5QYC5DTXTZ' where id=8; -update noar ti set b1='T5PUHSVI2D42NGLBRORMZ5QYC5DTXTZ' where id=8; -update noar tt set v0='VQFLD8QM79CJWYS' where id=8; -update noar ti set v0='VQFLD8QM79CJWYS' where id=8; -update noar tt set b2='U71T03E3B7RY' where id=8; -update noar ti set b2='U71T03E3B7RY' where id=8; -update noar tt set v0='040Z9WA6YSCGWQ9B5W4NU423DTFI' where id=9; -update noar ti set v0='040Z9WA6YSCGWQ9B5W4NU423DTFI' where id=9; -update noar tt set b0='7S5ZH62ONHLKBLLQM6J9ME9PA2EP' where id=9; -update noar ti set b0='7S5ZH62ONHLKBLLQM6J9ME9PA2EP' where id=9; -update noar tt set v0='EPH88UO2JBO4A45I1MH7U9LLQT' where id=9; -update noar ti set v0='EPH88UO2JBO4A45I1MH7U9LLQT' where id=9; -update noar tt set b1='KBVAOHS4TOMRVITUY9PFOU9HHF' where id=9; -update noar ti set b1='KBVAOHS4TOMRVITUY9PFOU9HHF' where id=9; -update noar tt set v0='0JGT7D8SMB9C3EIG54GE57U12' where id=9; -update noar ti set v0='0JGT7D8SMB9C3EIG54GE57U12' where id=9; -update noar tt set b2='2Y57' where id=9; -update noar ti set b2='2Y57' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - f0 int null, - v0 varchar(32) null, - b0 tinyblob null, - b1 blob null, - b2 tinyblob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='BROUDSR' where id=1; -update noar ti set v0='BROUDSR' where id=1; -update noar tt set b0='RIX5UPSX8W3TD609MDRNEN' where id=1; -update noar ti set b0='RIX5UPSX8W3TD609MDRNEN' where id=1; -update noar tt set v0='FA2DJ12YMS4AGIP0AP38FZ4OG' where id=1; -update noar ti set v0='FA2DJ12YMS4AGIP0AP38FZ4OG' where id=1; -update noar tt set b1='MF3RMRFVZ1DL9FGW2IPNCF' where id=1; -update noar ti set b1='MF3RMRFVZ1DL9FGW2IPNCF' where id=1; -update noar tt set v0='2FGI' where id=1; -update noar ti set v0='2FGI' where id=1; -update noar tt set b2='DUJD9TNRDDT7IRA5SG429RDYRKPF7YYS' where id=1; -update noar ti set b2='DUJD9TNRDDT7IRA5SG429RDYRKPF7YYS' where id=1; -update noar tt set v0='KZA3SVRJMGZ' where id=2; -update noar ti set v0='KZA3SVRJMGZ' where id=2; -update noar tt set b0='BDM6QA64CL' where id=2; -update noar ti set b0='BDM6QA64CL' where id=2; -update noar tt set v0='KJDHM84OLBFC8HEV0U0' where id=2; -update noar ti set v0='KJDHM84OLBFC8HEV0U0' where id=2; -update noar tt set b1='G1SL9DX1N3O0CHC5I' where id=2; -update noar ti set b1='G1SL9DX1N3O0CHC5I' where id=2; -update noar tt set v0='1740XYPAI2DR1C' where id=2; -update noar ti set v0='1740XYPAI2DR1C' where id=2; -update noar tt set b2='UU' where id=2; -update noar ti set b2='UU' where id=2; -update noar tt set v0='HSHCU568NJ4QCQC9HDIU236FWGWW' where id=3; -update noar ti set v0='HSHCU568NJ4QCQC9HDIU236FWGWW' where id=3; -update noar tt set b0='4WPHC740' where id=3; -update noar ti set b0='4WPHC740' where id=3; -update noar tt set v0='SG33S788P0HN1B3AQX6' where id=3; -update noar ti set v0='SG33S788P0HN1B3AQX6' where id=3; -update noar tt set b1='44SHY2BBA9BLFRYF1FKKA5TE' where id=3; -update noar ti set b1='44SHY2BBA9BLFRYF1FKKA5TE' where id=3; -update noar tt set v0='ITFEBA8WACVKR67GS5QQ0OTQBAHB' where id=3; -update noar ti set v0='ITFEBA8WACVKR67GS5QQ0OTQBAHB' where id=3; -update noar tt set b2='YA4KQWU4AFP6SIO8' where id=3; -update noar ti set b2='YA4KQWU4AFP6SIO8' where id=3; -update noar tt set v0='BQ7W9X' where id=4; -update noar ti set v0='BQ7W9X' where id=4; -update noar tt set b0='QFUTQUZZF71D5J' where id=4; -update noar ti set b0='QFUTQUZZF71D5J' where id=4; -update noar tt set v0='2NPYTD9N3OJPUBJHSRH4RWMBOWQFT2P' where id=4; -update noar ti set v0='2NPYTD9N3OJPUBJHSRH4RWMBOWQFT2P' where id=4; -update noar tt set b1='1L98HMNCNYU' where id=4; -update noar ti set b1='1L98HMNCNYU' where id=4; -update noar tt set v0='6QIPIGAAFURBQ7DCUFBKHE7FTUEQWMB' where id=4; -update noar ti set v0='6QIPIGAAFURBQ7DCUFBKHE7FTUEQWMB' where id=4; -update noar tt set b2='60PQQJWWA9AZ' where id=4; -update noar ti set b2='60PQQJWWA9AZ' where id=4; -update noar tt set v0='WWQCW66A' where id=5; -update noar ti set v0='WWQCW66A' where id=5; -update noar tt set b0='M1MY4PN8NFJP' where id=5; -update noar ti set b0='M1MY4PN8NFJP' where id=5; -update noar tt set v0='DHTNK6F7SEKJVX0SIWCPGWA77IAQKY2U' where id=5; -update noar ti set v0='DHTNK6F7SEKJVX0SIWCPGWA77IAQKY2U' where id=5; -update noar tt set b1='B' where id=5; -update noar ti set b1='B' where id=5; -update noar tt set v0='6BYP' where id=5; -update noar ti set v0='6BYP' where id=5; -update noar tt set b2='HICT9Z5K4E' where id=5; -update noar ti set b2='HICT9Z5K4E' where id=5; -update noar tt set v0='F' where id=6; -update noar ti set v0='F' where id=6; -update noar tt set b0='MQZO2RFT36J' where id=6; -update noar ti set b0='MQZO2RFT36J' where id=6; -update noar tt set v0='ABFV2ZBHW67QVLBTGQMS662N2X' where id=6; -update noar ti set v0='ABFV2ZBHW67QVLBTGQMS662N2X' where id=6; -update noar tt set b1='7BKQ3B8NSXP3DVP94W67' where id=6; -update noar ti set b1='7BKQ3B8NSXP3DVP94W67' where id=6; -update noar tt set v0='4VSCO3SE9ENG1RHBJCDVHFVOEGJLX0' where id=6; -update noar ti set v0='4VSCO3SE9ENG1RHBJCDVHFVOEGJLX0' where id=6; -update noar tt set b2='9LFYQYL80G82XGFQ' where id=6; -update noar ti set b2='9LFYQYL80G82XGFQ' where id=6; -update noar tt set v0='OBREEN9N8JK5PF4TFS27FOI' where id=7; -update noar ti set v0='OBREEN9N8JK5PF4TFS27FOI' where id=7; -update noar tt set b0='WBJPALYRNREZ1DG97W22LW3YNPZ' where id=7; -update noar ti set b0='WBJPALYRNREZ1DG97W22LW3YNPZ' where id=7; -update noar tt set v0='G30MQH1Z3NTR7XBKHF' where id=7; -update noar ti set v0='G30MQH1Z3NTR7XBKHF' where id=7; -update noar tt set b1='0' where id=7; -update noar ti set b1='0' where id=7; -update noar tt set v0='JE7YZ' where id=7; -update noar ti set v0='JE7YZ' where id=7; -update noar tt set b2='KZK' where id=7; -update noar ti set b2='KZK' where id=7; -update noar tt set v0='W16ESY' where id=8; -update noar ti set v0='W16ESY' where id=8; -update noar tt set b0='2KHZO6WI' where id=8; -update noar ti set b0='2KHZO6WI' where id=8; -update noar tt set v0='0CPXCSLBIS5K522R' where id=8; -update noar ti set v0='0CPXCSLBIS5K522R' where id=8; -update noar tt set b1='A58CI6K4NQ7FQAPKWE9LG8OO' where id=8; -update noar ti set b1='A58CI6K4NQ7FQAPKWE9LG8OO' where id=8; -update noar tt set v0='BZRNYKOYM83Y93UCTAR1' where id=8; -update noar ti set v0='BZRNYKOYM83Y93UCTAR1' where id=8; -update noar tt set b2='JC2R1Z090XG8TBIPREB8RVM0LCGW' where id=8; -update noar ti set b2='JC2R1Z090XG8TBIPREB8RVM0LCGW' where id=8; -update noar tt set v0='1BS' where id=9; -update noar ti set v0='1BS' where id=9; -update noar tt set b0='3KLCZHEJFGRE1RWD27IFY0' where id=9; -update noar ti set b0='3KLCZHEJFGRE1RWD27IFY0' where id=9; -update noar tt set v0='IIPL2GQ7RWMNSAAZM2EBN9LWMHY7EXVE' where id=9; -update noar ti set v0='IIPL2GQ7RWMNSAAZM2EBN9LWMHY7EXVE' where id=9; -update noar tt set b1='OSRXH' where id=9; -update noar ti set b1='OSRXH' where id=9; -update noar tt set v0='MOJUUCMQUO0' where id=9; -update noar ti set v0='MOJUUCMQUO0' where id=9; -update noar tt set b2='EFKIQ6TG9RBD1N0IRU5QFJS7' where id=9; -update noar ti set b2='EFKIQ6TG9RBD1N0IRU5QFJS7' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - f0 int null, - v0 varchar(256) null, - b0 tinyblob null, - b1 blob null, - b2 tinyblob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='SRYJIKT9UMDUUVMJWKG' where id=1; -update noar ti set v0='SRYJIKT9UMDUUVMJWKG' where id=1; -update noar tt set b0='I6IK9FCUHYKXOM' where id=1; -update noar ti set b0='I6IK9FCUHYKXOM' where id=1; -update noar tt set v0='HUV9FWP3J26VL' where id=1; -update noar ti set v0='HUV9FWP3J26VL' where id=1; -update noar tt set b1='3WOW43V1QDPD6ZJ' where id=1; -update noar ti set b1='3WOW43V1QDPD6ZJ' where id=1; -update noar tt set v0='3J2NLWHDFJE0EH8ZAXD2U1827USBPIV' where id=1; -update noar ti set v0='3J2NLWHDFJE0EH8ZAXD2U1827USBPIV' where id=1; -update noar tt set b2='Y497E01' where id=1; -update noar ti set b2='Y497E01' where id=1; -update noar tt set v0='H1JY' where id=2; -update noar ti set v0='H1JY' where id=2; -update noar tt set b0='YI35EOFSQB7EZ7CRW7S9QI' where id=2; -update noar ti set b0='YI35EOFSQB7EZ7CRW7S9QI' where id=2; -update noar tt set v0='7LKGN6KR7MLI3XZVXA3TFYM' where id=2; -update noar ti set v0='7LKGN6KR7MLI3XZVXA3TFYM' where id=2; -update noar tt set b1='BE2S48NUFB7XPK9OUQSVE41PAZN0W' where id=2; -update noar ti set b1='BE2S48NUFB7XPK9OUQSVE41PAZN0W' where id=2; -update noar tt set v0='TAV8CKC1CEXWQF6G5R0QJ93' where id=2; -update noar ti set v0='TAV8CKC1CEXWQF6G5R0QJ93' where id=2; -update noar tt set b2='0DQPMM' where id=2; -update noar ti set b2='0DQPMM' where id=2; -update noar tt set v0='NY7MI21QOVN15AYK6A64' where id=3; -update noar ti set v0='NY7MI21QOVN15AYK6A64' where id=3; -update noar tt set b0='NEEQHUG6JF4GM7MH6KH63WQU604A' where id=3; -update noar ti set b0='NEEQHUG6JF4GM7MH6KH63WQU604A' where id=3; -update noar tt set v0='6H6SHGNTN7' where id=3; -update noar ti set v0='6H6SHGNTN7' where id=3; -update noar tt set b1='KT0GOJI68W5RVC9OU25240RLD5WJBR2' where id=3; -update noar ti set b1='KT0GOJI68W5RVC9OU25240RLD5WJBR2' where id=3; -update noar tt set v0='F5TC01JDVCVGUZN1WSTEXZ' where id=3; -update noar ti set v0='F5TC01JDVCVGUZN1WSTEXZ' where id=3; -update noar tt set b2='XUKBAL579EL1D' where id=3; -update noar ti set b2='XUKBAL579EL1D' where id=3; -update noar tt set v0='0VJEEDOX1YX1C2IRBUD' where id=4; -update noar ti set v0='0VJEEDOX1YX1C2IRBUD' where id=4; -update noar tt set b0='CHG' where id=4; -update noar ti set b0='CHG' where id=4; -update noar tt set v0='CPBEFBD' where id=4; -update noar ti set v0='CPBEFBD' where id=4; -update noar tt set b1='4I6' where id=4; -update noar ti set b1='4I6' where id=4; -update noar tt set v0='6UAQ6M4IWS1ILD798ZRF29YI73ZGFP2P' where id=4; -update noar ti set v0='6UAQ6M4IWS1ILD798ZRF29YI73ZGFP2P' where id=4; -update noar tt set b2='7RZBWU77YZSE' where id=4; -update noar ti set b2='7RZBWU77YZSE' where id=4; -update noar tt set v0='IHCY' where id=5; -update noar ti set v0='IHCY' where id=5; -update noar tt set b0='NF7MX9803ULIJCVUTSVGHDX6DGY0HCA7' where id=5; -update noar ti set b0='NF7MX9803ULIJCVUTSVGHDX6DGY0HCA7' where id=5; -update noar tt set v0='9HW38U6NN7' where id=5; -update noar ti set v0='9HW38U6NN7' where id=5; -update noar tt set b1='W5QHTB383UTHMHTA51STZFE' where id=5; -update noar ti set b1='W5QHTB383UTHMHTA51STZFE' where id=5; -update noar tt set v0='6H662CU5AK0ZVSLO91' where id=5; -update noar ti set v0='6H662CU5AK0ZVSLO91' where id=5; -update noar tt set b2='R' where id=5; -update noar ti set b2='R' where id=5; -update noar tt set v0='NIE1Y2RAXOXDF53KQE68GDYJ6QSP' where id=6; -update noar ti set v0='NIE1Y2RAXOXDF53KQE68GDYJ6QSP' where id=6; -update noar tt set b0='1HJIHCTB9UQ7SP77OO1GCB0XGZ' where id=6; -update noar ti set b0='1HJIHCTB9UQ7SP77OO1GCB0XGZ' where id=6; -update noar tt set v0='0' where id=6; -update noar ti set v0='0' where id=6; -update noar tt set b1='E5' where id=6; -update noar ti set b1='E5' where id=6; -update noar tt set v0='K5' where id=6; -update noar ti set v0='K5' where id=6; -update noar tt set b2='JDWGFIUQ58ZFW619J5V4N63' where id=6; -update noar ti set b2='JDWGFIUQ58ZFW619J5V4N63' where id=6; -update noar tt set v0='B486QLU' where id=7; -update noar ti set v0='B486QLU' where id=7; -update noar tt set b0='BYGMXZ2AJ55VN0DL8HHNGYNXAEAA7Z9' where id=7; -update noar ti set b0='BYGMXZ2AJ55VN0DL8HHNGYNXAEAA7Z9' where id=7; -update noar tt set v0='PF' where id=7; -update noar ti set v0='PF' where id=7; -update noar tt set b1='B384EWQEFMAH7SIHFGK98YQ3YY6CX7EA' where id=7; -update noar ti set b1='B384EWQEFMAH7SIHFGK98YQ3YY6CX7EA' where id=7; -update noar tt set v0='H5GZVSYQAXU24' where id=7; -update noar ti set v0='H5GZVSYQAXU24' where id=7; -update noar tt set b2='LLOXPNDN3SFLP29YOML' where id=7; -update noar ti set b2='LLOXPNDN3SFLP29YOML' where id=7; -update noar tt set v0='I5D7YUMCCM6B' where id=8; -update noar ti set v0='I5D7YUMCCM6B' where id=8; -update noar tt set b0='C5SM3TMLLRRSHROTJ' where id=8; -update noar ti set b0='C5SM3TMLLRRSHROTJ' where id=8; -update noar tt set v0='XSEOI' where id=8; -update noar ti set v0='XSEOI' where id=8; -update noar tt set b1='VTQ' where id=8; -update noar ti set b1='VTQ' where id=8; -update noar tt set v0='GQ23CUQG4O' where id=8; -update noar ti set v0='GQ23CUQG4O' where id=8; -update noar tt set b2='RGTFQ1BLW25X72BHAUHHD8' where id=8; -update noar ti set b2='RGTFQ1BLW25X72BHAUHHD8' where id=8; -update noar tt set v0='K7828F3XRT6XEE4PWP9J2T' where id=9; -update noar ti set v0='K7828F3XRT6XEE4PWP9J2T' where id=9; -update noar tt set b0='KDVF7O1W6S6JSRVV1EE' where id=9; -update noar ti set b0='KDVF7O1W6S6JSRVV1EE' where id=9; -update noar tt set v0='RS84B7KKF' where id=9; -update noar ti set v0='RS84B7KKF' where id=9; -update noar tt set b1='4V1QC9TC1O7J7C' where id=9; -update noar ti set b1='4V1QC9TC1O7J7C' where id=9; -update noar tt set v0='2IUL5W04RM34NU6M9QGQSX1' where id=9; -update noar ti set v0='2IUL5W04RM34NU6M9QGQSX1' where id=9; -update noar tt set b2='0RYE2TOC' where id=9; -update noar ti set b2='0RYE2TOC' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - f0 int not null, - v0 varchar(32) not null, - b0 tinyblob not null, - b1 blob not null, - b2 tinyblob not null -) engine=tokudb; -insert into tt values (1,0,'','','',''); -insert into tt values (2,0,'','','',''); -insert into tt values (3,0,'','','',''); -insert into tt values (4,0,'','','',''); -insert into tt values (5,0,'','','',''); -insert into tt values (6,0,'','','',''); -insert into tt values (7,0,'','','',''); -insert into tt values (8,0,'','','',''); -insert into tt values (9,0,'','','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='1M3BDN2LYVWHKCQ75NL' where id=1; -update noar ti set v0='1M3BDN2LYVWHKCQ75NL' where id=1; -update noar tt set b0='WIP8ZSUE5TWWDFRZ5PRGQ2' where id=1; -update noar ti set b0='WIP8ZSUE5TWWDFRZ5PRGQ2' where id=1; -update noar tt set v0='IVBVLGZYOJ0KOLDC1EJ2' where id=1; -update noar ti set v0='IVBVLGZYOJ0KOLDC1EJ2' where id=1; -update noar tt set b1='B2UVWA7PX2U2Y7I8XW5U' where id=1; -update noar ti set b1='B2UVWA7PX2U2Y7I8XW5U' where id=1; -update noar tt set v0='EYITE2Z9PS2' where id=1; -update noar ti set v0='EYITE2Z9PS2' where id=1; -update noar tt set b2='GIJ6XAP' where id=1; -update noar ti set b2='GIJ6XAP' where id=1; -update noar tt set v0='L3N86NTCWANSI9YAV' where id=2; -update noar ti set v0='L3N86NTCWANSI9YAV' where id=2; -update noar tt set b0='G' where id=2; -update noar ti set b0='G' where id=2; -update noar tt set v0='P7IGSKL6V3E4PEE9FLJRBDLJZ' where id=2; -update noar ti set v0='P7IGSKL6V3E4PEE9FLJRBDLJZ' where id=2; -update noar tt set b1='UKRP' where id=2; -update noar ti set b1='UKRP' where id=2; -update noar tt set v0='VSPIM7XWS63UKL78BZE09C2T' where id=2; -update noar ti set v0='VSPIM7XWS63UKL78BZE09C2T' where id=2; -update noar tt set b2='MBMPE7OE18X3YOF19' where id=2; -update noar ti set b2='MBMPE7OE18X3YOF19' where id=2; -update noar tt set v0='N0MTRRTI6GQVUXQ8' where id=3; -update noar ti set v0='N0MTRRTI6GQVUXQ8' where id=3; -update noar tt set b0='DLWFSYJEJ' where id=3; -update noar ti set b0='DLWFSYJEJ' where id=3; -update noar tt set v0='LFN' where id=3; -update noar ti set v0='LFN' where id=3; -update noar tt set b1='9E' where id=3; -update noar ti set b1='9E' where id=3; -update noar tt set v0='3V9YIBI3NSG14PLAUT8AF9' where id=3; -update noar ti set v0='3V9YIBI3NSG14PLAUT8AF9' where id=3; -update noar tt set b2='GFCL5OSNEESH' where id=3; -update noar ti set b2='GFCL5OSNEESH' where id=3; -update noar tt set v0='JL' where id=4; -update noar ti set v0='JL' where id=4; -update noar tt set b0='QOXK7Q0RHTN6B9LI' where id=4; -update noar ti set b0='QOXK7Q0RHTN6B9LI' where id=4; -update noar tt set v0='6HRO' where id=4; -update noar ti set v0='6HRO' where id=4; -update noar tt set b1='99VDLOCABCSKGDIZV2FAH6JP23YI' where id=4; -update noar ti set b1='99VDLOCABCSKGDIZV2FAH6JP23YI' where id=4; -update noar tt set v0='XA62B38YU0A0E' where id=4; -update noar ti set v0='XA62B38YU0A0E' where id=4; -update noar tt set b2='R6NPUAIAMBBVO1YGHA' where id=4; -update noar ti set b2='R6NPUAIAMBBVO1YGHA' where id=4; -update noar tt set v0='MJU' where id=5; -update noar ti set v0='MJU' where id=5; -update noar tt set b0='9BGE34Y6HBP' where id=5; -update noar ti set b0='9BGE34Y6HBP' where id=5; -update noar tt set v0='643ONEEBMJ513YTII3AYC6' where id=5; -update noar ti set v0='643ONEEBMJ513YTII3AYC6' where id=5; -update noar tt set b1='KR5OW82C9TJZ' where id=5; -update noar ti set b1='KR5OW82C9TJZ' where id=5; -update noar tt set v0='TKQJ2WHKB32H243G' where id=5; -update noar ti set v0='TKQJ2WHKB32H243G' where id=5; -update noar tt set b2='JOZZLIU466' where id=5; -update noar ti set b2='JOZZLIU466' where id=5; -update noar tt set v0='MXUCG5TGOAZPLNJOQ6DR2D' where id=6; -update noar ti set v0='MXUCG5TGOAZPLNJOQ6DR2D' where id=6; -update noar tt set b0='6ZSWB' where id=6; -update noar ti set b0='6ZSWB' where id=6; -update noar tt set v0='5' where id=6; -update noar ti set v0='5' where id=6; -update noar tt set b1='7YDUL' where id=6; -update noar ti set b1='7YDUL' where id=6; -update noar tt set v0='ATNVMUR03DOQWJYH2R0GKEQ5BAMDL' where id=6; -update noar ti set v0='ATNVMUR03DOQWJYH2R0GKEQ5BAMDL' where id=6; -update noar tt set b2='SLYHPNHJGA5C4' where id=6; -update noar ti set b2='SLYHPNHJGA5C4' where id=6; -update noar tt set v0='3XK9Y53' where id=7; -update noar ti set v0='3XK9Y53' where id=7; -update noar tt set b0='0ERE' where id=7; -update noar ti set b0='0ERE' where id=7; -update noar tt set v0='HRA20YBAAOA9AAO9BV' where id=7; -update noar ti set v0='HRA20YBAAOA9AAO9BV' where id=7; -update noar tt set b1='ECZBAA43XYZM52IU8W02KTHQMSJDLJB0' where id=7; -update noar ti set b1='ECZBAA43XYZM52IU8W02KTHQMSJDLJB0' where id=7; -update noar tt set v0='US8W3DHMGUB5' where id=7; -update noar ti set v0='US8W3DHMGUB5' where id=7; -update noar tt set b2='U1W12ER0A2C27' where id=7; -update noar ti set b2='U1W12ER0A2C27' where id=7; -update noar tt set v0='ZKOSAEBJLNUI0ASUBF2KMSVFT7D' where id=8; -update noar ti set v0='ZKOSAEBJLNUI0ASUBF2KMSVFT7D' where id=8; -update noar tt set b0='8MOJRLW5ZS8' where id=8; -update noar ti set b0='8MOJRLW5ZS8' where id=8; -update noar tt set v0='YLZ67TXQD5KM3TMFBMWTMO9HT05Z3GO' where id=8; -update noar ti set v0='YLZ67TXQD5KM3TMFBMWTMO9HT05Z3GO' where id=8; -update noar tt set b1='QYPWFX16YXC6UDQL5YD6AS204Q15' where id=8; -update noar ti set b1='QYPWFX16YXC6UDQL5YD6AS204Q15' where id=8; -update noar tt set v0='FY07OGWCSW' where id=8; -update noar ti set v0='FY07OGWCSW' where id=8; -update noar tt set b2='E69NUAPLPQYMZ3' where id=8; -update noar ti set b2='E69NUAPLPQYMZ3' where id=8; -update noar tt set v0='4ZUMNJ9QV6NN9H6JJVI' where id=9; -update noar ti set v0='4ZUMNJ9QV6NN9H6JJVI' where id=9; -update noar tt set b0='4' where id=9; -update noar ti set b0='4' where id=9; -update noar tt set v0='2UCK' where id=9; -update noar ti set v0='2UCK' where id=9; -update noar tt set b1='7B5YOYFVS9F5M' where id=9; -update noar ti set b1='7B5YOYFVS9F5M' where id=9; -update noar tt set v0='9CJWUGM69HNBDGLKO38TE5L12ADO' where id=9; -update noar ti set v0='9CJWUGM69HNBDGLKO38TE5L12ADO' where id=9; -update noar tt set b2='5E9QX8EC1OCFS9HNY2' where id=9; -update noar ti set b2='5E9QX8EC1OCFS9HNY2' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - f0 int not null, - v0 varchar(256) not null, - b0 tinyblob not null, - b1 blob not null, - b2 tinyblob not null -) engine=tokudb; -insert into tt values (1,0,'','','',''); -insert into tt values (2,0,'','','',''); -insert into tt values (3,0,'','','',''); -insert into tt values (4,0,'','','',''); -insert into tt values (5,0,'','','',''); -insert into tt values (6,0,'','','',''); -insert into tt values (7,0,'','','',''); -insert into tt values (8,0,'','','',''); -insert into tt values (9,0,'','','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='D16B' where id=1; -update noar ti set v0='D16B' where id=1; -update noar tt set b0='1GLRM' where id=1; -update noar ti set b0='1GLRM' where id=1; -update noar tt set v0='BWI' where id=1; -update noar ti set v0='BWI' where id=1; -update noar tt set b1='93XR68CG95P1FQ1AHRBWGQTBLZTBDCOZ' where id=1; -update noar ti set b1='93XR68CG95P1FQ1AHRBWGQTBLZTBDCOZ' where id=1; -update noar tt set v0='51CTWC3F4GJES8K4WAAZRFLR7C' where id=1; -update noar ti set v0='51CTWC3F4GJES8K4WAAZRFLR7C' where id=1; -update noar tt set b2='6Q050V' where id=1; -update noar ti set b2='6Q050V' where id=1; -update noar tt set v0='5KQRMV9R310WGQP8XOL' where id=2; -update noar ti set v0='5KQRMV9R310WGQP8XOL' where id=2; -update noar tt set b0='3X1HAD54DRB4MPS' where id=2; -update noar ti set b0='3X1HAD54DRB4MPS' where id=2; -update noar tt set v0='ID3PCB7AMA47VPDJKRCB87J1JVH4XZW' where id=2; -update noar ti set v0='ID3PCB7AMA47VPDJKRCB87J1JVH4XZW' where id=2; -update noar tt set b1='DRCLLAJP082OGQOFP' where id=2; -update noar ti set b1='DRCLLAJP082OGQOFP' where id=2; -update noar tt set v0='TIZ09' where id=2; -update noar ti set v0='TIZ09' where id=2; -update noar tt set b2='FITZRU85OZ3C' where id=2; -update noar ti set b2='FITZRU85OZ3C' where id=2; -update noar tt set v0='OMX9HNFQMFE0XTB' where id=3; -update noar ti set v0='OMX9HNFQMFE0XTB' where id=3; -update noar tt set b0='C2TINHJMIKHWBMK9PCPU7XS2O' where id=3; -update noar ti set b0='C2TINHJMIKHWBMK9PCPU7XS2O' where id=3; -update noar tt set v0='Z365ZS7F30D0IGO7WX81LD8RFHVT' where id=3; -update noar ti set v0='Z365ZS7F30D0IGO7WX81LD8RFHVT' where id=3; -update noar tt set b1='Z5W2JOI' where id=3; -update noar ti set b1='Z5W2JOI' where id=3; -update noar tt set v0='NZH2S8YRKZ29OBRX62M0HLTV7MMPW7' where id=3; -update noar ti set v0='NZH2S8YRKZ29OBRX62M0HLTV7MMPW7' where id=3; -update noar tt set b2='B104PRWOJMAPGY1VRDAOZC6GF5QM1W' where id=3; -update noar ti set b2='B104PRWOJMAPGY1VRDAOZC6GF5QM1W' where id=3; -update noar tt set v0='5V75N3V' where id=4; -update noar ti set v0='5V75N3V' where id=4; -update noar tt set b0='OUZT2ZB4TRH8KAE4LLPHI1' where id=4; -update noar ti set b0='OUZT2ZB4TRH8KAE4LLPHI1' where id=4; -update noar tt set v0='RDWE9JTRLPEHSMD1X7WN3' where id=4; -update noar ti set v0='RDWE9JTRLPEHSMD1X7WN3' where id=4; -update noar tt set b1='T5WR21RGSA7GUO7X' where id=4; -update noar ti set b1='T5WR21RGSA7GUO7X' where id=4; -update noar tt set v0='8FV' where id=4; -update noar ti set v0='8FV' where id=4; -update noar tt set b2='AK7P964L' where id=4; -update noar ti set b2='AK7P964L' where id=4; -update noar tt set v0='I4TT8488NY40' where id=5; -update noar ti set v0='I4TT8488NY40' where id=5; -update noar tt set b0='B057L4QV' where id=5; -update noar ti set b0='B057L4QV' where id=5; -update noar tt set v0='9ZCQXIJUON2TLU394' where id=5; -update noar ti set v0='9ZCQXIJUON2TLU394' where id=5; -update noar tt set b1='VKBNM' where id=5; -update noar ti set b1='VKBNM' where id=5; -update noar tt set v0='FW0E5N2LVX703UIAI44XY' where id=5; -update noar ti set v0='FW0E5N2LVX703UIAI44XY' where id=5; -update noar tt set b2='6GD5MNMXP4CSJEMVOP7IPUFD' where id=5; -update noar ti set b2='6GD5MNMXP4CSJEMVOP7IPUFD' where id=5; -update noar tt set v0='Y' where id=6; -update noar ti set v0='Y' where id=6; -update noar tt set b0='N778ONW15IE4' where id=6; -update noar ti set b0='N778ONW15IE4' where id=6; -update noar tt set v0='KDWKCNG464TOLSF46N9' where id=6; -update noar ti set v0='KDWKCNG464TOLSF46N9' where id=6; -update noar tt set b1='V7ADAMKHGLH0CXKWEVMCA9W' where id=6; -update noar ti set b1='V7ADAMKHGLH0CXKWEVMCA9W' where id=6; -update noar tt set v0='1UVE4PLGLR7V2OTFW7FB8' where id=6; -update noar ti set v0='1UVE4PLGLR7V2OTFW7FB8' where id=6; -update noar tt set b2='0H4ZY8F62LTM6V1093P2EEVGAY036A0' where id=6; -update noar ti set b2='0H4ZY8F62LTM6V1093P2EEVGAY036A0' where id=6; -update noar tt set v0='FBRSFD24Q603JJJQJA0U6MJ1U3Y' where id=7; -update noar ti set v0='FBRSFD24Q603JJJQJA0U6MJ1U3Y' where id=7; -update noar tt set b0='Z7KPMID44AT' where id=7; -update noar ti set b0='Z7KPMID44AT' where id=7; -update noar tt set v0='715A4JQ0HMSC7HOY0' where id=7; -update noar ti set v0='715A4JQ0HMSC7HOY0' where id=7; -update noar tt set b1='3C7UVSJNTN' where id=7; -update noar ti set b1='3C7UVSJNTN' where id=7; -update noar tt set v0='1S5ZS' where id=7; -update noar ti set v0='1S5ZS' where id=7; -update noar tt set b2='5X45ZRH6V8UQFK0767S0IRPTVBT62RE0' where id=7; -update noar ti set b2='5X45ZRH6V8UQFK0767S0IRPTVBT62RE0' where id=7; -update noar tt set v0='MUIHBB9LOF' where id=8; -update noar ti set v0='MUIHBB9LOF' where id=8; -update noar tt set b0='58Q8' where id=8; -update noar ti set b0='58Q8' where id=8; -update noar tt set v0='0TX' where id=8; -update noar ti set v0='0TX' where id=8; -update noar tt set b1='OIY8EE3' where id=8; -update noar ti set b1='OIY8EE3' where id=8; -update noar tt set v0='CFKBOCQP9O' where id=8; -update noar ti set v0='CFKBOCQP9O' where id=8; -update noar tt set b2='W0WCO3LKT0D8OHVX5' where id=8; -update noar ti set b2='W0WCO3LKT0D8OHVX5' where id=8; -update noar tt set v0='VH8XQZ' where id=9; -update noar ti set v0='VH8XQZ' where id=9; -update noar tt set b0='1BA3N' where id=9; -update noar ti set b0='1BA3N' where id=9; -update noar tt set v0='12YQQ23GYSM9M7T3SY0CAYCFQ5WJ4W' where id=9; -update noar ti set v0='12YQQ23GYSM9M7T3SY0CAYCFQ5WJ4W' where id=9; -update noar tt set b1='6TPTEJV2MA9AZ0K9JQ9KEKK9GK6' where id=9; -update noar ti set b1='6TPTEJV2MA9AZ0K9JQ9KEKK9GK6' where id=9; -update noar tt set v0='Q' where id=9; -update noar ti set v0='Q' where id=9; -update noar tt set b2='JUQP2VLQXK5M4DPBNZA71V023' where id=9; -update noar ti set b2='JUQP2VLQXK5M4DPBNZA71V023' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - f0 int null, - v0 varchar(32) null, - b0 tinyblob null, - b1 blob null, - b2 blob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='U50AJQ1JN1G0YH' where id=1; -update noar ti set v0='U50AJQ1JN1G0YH' where id=1; -update noar tt set b0='VAF3V1GU' where id=1; -update noar ti set b0='VAF3V1GU' where id=1; -update noar tt set v0='WJNS9B6981XFM1M1GF0XUI0' where id=1; -update noar ti set v0='WJNS9B6981XFM1M1GF0XUI0' where id=1; -update noar tt set b1='ZS5NQBM9YRUEMMGCSBFQYZS1T' where id=1; -update noar ti set b1='ZS5NQBM9YRUEMMGCSBFQYZS1T' where id=1; -update noar tt set v0='BX9VN7U7F4H1EU0CZ2VXLX36SMT' where id=1; -update noar ti set v0='BX9VN7U7F4H1EU0CZ2VXLX36SMT' where id=1; -update noar tt set b2='3G4CDC88E6435QRY' where id=1; -update noar ti set b2='3G4CDC88E6435QRY' where id=1; -update noar tt set v0='8J43KAUNM9' where id=2; -update noar ti set v0='8J43KAUNM9' where id=2; -update noar tt set b0='TH' where id=2; -update noar ti set b0='TH' where id=2; -update noar tt set v0='VS' where id=2; -update noar ti set v0='VS' where id=2; -update noar tt set b1='YOZ59SCEO8MVYNKIKJR' where id=2; -update noar ti set b1='YOZ59SCEO8MVYNKIKJR' where id=2; -update noar tt set v0='CMKKFCMT1K17U' where id=2; -update noar ti set v0='CMKKFCMT1K17U' where id=2; -update noar tt set b2='PYK0ACLSWCG22BKK9ITELHJ1' where id=2; -update noar ti set b2='PYK0ACLSWCG22BKK9ITELHJ1' where id=2; -update noar tt set v0='7QZUQ7SX6KTKPM6YLE31KVR3SLZRLOQ' where id=3; -update noar ti set v0='7QZUQ7SX6KTKPM6YLE31KVR3SLZRLOQ' where id=3; -update noar tt set b0='0OEV8YCO4T0HC8LKP47MY036MKEVES' where id=3; -update noar ti set b0='0OEV8YCO4T0HC8LKP47MY036MKEVES' where id=3; -update noar tt set v0='TDIPGQKTPH6CHWO4A5N4WNZ6UW' where id=3; -update noar ti set v0='TDIPGQKTPH6CHWO4A5N4WNZ6UW' where id=3; -update noar tt set b1='8PHCVSWXKSC8KL7PUOH' where id=3; -update noar ti set b1='8PHCVSWXKSC8KL7PUOH' where id=3; -update noar tt set v0='UOSA8ZTCO7684' where id=3; -update noar ti set v0='UOSA8ZTCO7684' where id=3; -update noar tt set b2='RGNKGWGGTXRNKA' where id=3; -update noar ti set b2='RGNKGWGGTXRNKA' where id=3; -update noar tt set v0='ABMW' where id=4; -update noar ti set v0='ABMW' where id=4; -update noar tt set b0='MAIY1I7W3YQA1QCKC3HUOPXQE02TQ6T' where id=4; -update noar ti set b0='MAIY1I7W3YQA1QCKC3HUOPXQE02TQ6T' where id=4; -update noar tt set v0='IHN7FTEI1D5M4JCTHNBY5GIDLHCLK5J9' where id=4; -update noar ti set v0='IHN7FTEI1D5M4JCTHNBY5GIDLHCLK5J9' where id=4; -update noar tt set b1='0PVBMVE' where id=4; -update noar ti set b1='0PVBMVE' where id=4; -update noar tt set v0='K' where id=4; -update noar ti set v0='K' where id=4; -update noar tt set b2='KA9J0D8SW7H4X6KMTG387N8EIG2Y' where id=4; -update noar ti set b2='KA9J0D8SW7H4X6KMTG387N8EIG2Y' where id=4; -update noar tt set v0='XECTDXBWT04EQJ8HQKXGGQ19NVIRDB' where id=5; -update noar ti set v0='XECTDXBWT04EQJ8HQKXGGQ19NVIRDB' where id=5; -update noar tt set b0='6K5XICS4' where id=5; -update noar ti set b0='6K5XICS4' where id=5; -update noar tt set v0='6WKS2DY0EPK3W' where id=5; -update noar ti set v0='6WKS2DY0EPK3W' where id=5; -update noar tt set b1='RD1PEV' where id=5; -update noar ti set b1='RD1PEV' where id=5; -update noar tt set v0='PSXIERURXWIWAJLZOHU7VSD' where id=5; -update noar ti set v0='PSXIERURXWIWAJLZOHU7VSD' where id=5; -update noar tt set b2='TX88HBADG4Y9N4FNKRQEB2' where id=5; -update noar ti set b2='TX88HBADG4Y9N4FNKRQEB2' where id=5; -update noar tt set v0='9UVEYD7AWTYQZOFBST08SJFWP2GD6J' where id=6; -update noar ti set v0='9UVEYD7AWTYQZOFBST08SJFWP2GD6J' where id=6; -update noar tt set b0='BQGUELQ0NJY0NCVTXTUNI3Q7ZLJUT' where id=6; -update noar ti set b0='BQGUELQ0NJY0NCVTXTUNI3Q7ZLJUT' where id=6; -update noar tt set v0='P4S5FGG0HC8BPUH6OE2FSI' where id=6; -update noar ti set v0='P4S5FGG0HC8BPUH6OE2FSI' where id=6; -update noar tt set b1='DB66VV0DE1Y3LPPP6JBNY1K' where id=6; -update noar ti set b1='DB66VV0DE1Y3LPPP6JBNY1K' where id=6; -update noar tt set v0='WPN' where id=6; -update noar ti set v0='WPN' where id=6; -update noar tt set b2='VHRHD6PZ3KO4M3Z' where id=6; -update noar ti set b2='VHRHD6PZ3KO4M3Z' where id=6; -update noar tt set v0='96AJTQZKM' where id=7; -update noar ti set v0='96AJTQZKM' where id=7; -update noar tt set b0='KH9K6' where id=7; -update noar ti set b0='KH9K6' where id=7; -update noar tt set v0='9EAE' where id=7; -update noar ti set v0='9EAE' where id=7; -update noar tt set b1='OP4NVCVKSFROYVOFM7GD0QJYKAVN3Y' where id=7; -update noar ti set b1='OP4NVCVKSFROYVOFM7GD0QJYKAVN3Y' where id=7; -update noar tt set v0='9ZANWI5' where id=7; -update noar ti set v0='9ZANWI5' where id=7; -update noar tt set b2='EMIAHLYA9R7OZ3KS8BDMAYMU22LY5Z' where id=7; -update noar ti set b2='EMIAHLYA9R7OZ3KS8BDMAYMU22LY5Z' where id=7; -update noar tt set v0='N92XHAMJE561R2Q0OJV2F95TSL58' where id=8; -update noar ti set v0='N92XHAMJE561R2Q0OJV2F95TSL58' where id=8; -update noar tt set b0='13K46DNSTTDOG' where id=8; -update noar ti set b0='13K46DNSTTDOG' where id=8; -update noar tt set v0='S18HGU8671HPALLH' where id=8; -update noar ti set v0='S18HGU8671HPALLH' where id=8; -update noar tt set b1='5TCFNGVDEQE71KW71YQUY6RFUGX' where id=8; -update noar ti set b1='5TCFNGVDEQE71KW71YQUY6RFUGX' where id=8; -update noar tt set v0='MR2EE98P9' where id=8; -update noar ti set v0='MR2EE98P9' where id=8; -update noar tt set b2='07JYA894MPURF4' where id=8; -update noar ti set b2='07JYA894MPURF4' where id=8; -update noar tt set v0='K67V75EW1A89BAB596N0X' where id=9; -update noar ti set v0='K67V75EW1A89BAB596N0X' where id=9; -update noar tt set b0='SY2QCCXKBEK2DT36U37J9MZUU' where id=9; -update noar ti set b0='SY2QCCXKBEK2DT36U37J9MZUU' where id=9; -update noar tt set v0='Q9HR' where id=9; -update noar ti set v0='Q9HR' where id=9; -update noar tt set b1='TB474GT9P915JA7' where id=9; -update noar ti set b1='TB474GT9P915JA7' where id=9; -update noar tt set v0='EIXA2H2E0XLCBJ3REOGVLSOCL2VYQGR' where id=9; -update noar ti set v0='EIXA2H2E0XLCBJ3REOGVLSOCL2VYQGR' where id=9; -update noar tt set b2='64MAF15KBC5Y8ZH236Q9KWRNL9Q' where id=9; -update noar ti set b2='64MAF15KBC5Y8ZH236Q9KWRNL9Q' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - f0 int null, - v0 varchar(256) null, - b0 tinyblob null, - b1 blob null, - b2 blob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='2I' where id=1; -update noar ti set v0='2I' where id=1; -update noar tt set b0='P1VI3KLF905KLGIKEXXXLI' where id=1; -update noar ti set b0='P1VI3KLF905KLGIKEXXXLI' where id=1; -update noar tt set v0='ZL66BQBQM17YN8NN' where id=1; -update noar ti set v0='ZL66BQBQM17YN8NN' where id=1; -update noar tt set b1='ZLNEVXTXK7OZJJ2NXOW75P20MA0AII' where id=1; -update noar ti set b1='ZLNEVXTXK7OZJJ2NXOW75P20MA0AII' where id=1; -update noar tt set v0='JYM' where id=1; -update noar ti set v0='JYM' where id=1; -update noar tt set b2='O7EZG' where id=1; -update noar ti set b2='O7EZG' where id=1; -update noar tt set v0='OJQX6UFC' where id=2; -update noar ti set v0='OJQX6UFC' where id=2; -update noar tt set b0='UA5Z9GE' where id=2; -update noar ti set b0='UA5Z9GE' where id=2; -update noar tt set v0='QKP63Y2BX56XFNX2T8WFHRTAQ' where id=2; -update noar ti set v0='QKP63Y2BX56XFNX2T8WFHRTAQ' where id=2; -update noar tt set b1='AZ92EZ1WD5462TBK4OJ3S5A4EMY20V' where id=2; -update noar ti set b1='AZ92EZ1WD5462TBK4OJ3S5A4EMY20V' where id=2; -update noar tt set v0='OFKREEXUWFEGP' where id=2; -update noar ti set v0='OFKREEXUWFEGP' where id=2; -update noar tt set b2='XGQ4D6WQ1U1N' where id=2; -update noar ti set b2='XGQ4D6WQ1U1N' where id=2; -update noar tt set v0='HB' where id=3; -update noar ti set v0='HB' where id=3; -update noar tt set b0='5NFEO3XO' where id=3; -update noar ti set b0='5NFEO3XO' where id=3; -update noar tt set v0='B3QNL6UGV5HTUJ4K7F9LDAF7RI57IMS' where id=3; -update noar ti set v0='B3QNL6UGV5HTUJ4K7F9LDAF7RI57IMS' where id=3; -update noar tt set b1='LB' where id=3; -update noar ti set b1='LB' where id=3; -update noar tt set v0='JNO3Q2YQLGP8XKMBULG' where id=3; -update noar ti set v0='JNO3Q2YQLGP8XKMBULG' where id=3; -update noar tt set b2='AS8IA3VPRLP4RRUQ73KA9499JQTU5IZ' where id=3; -update noar ti set b2='AS8IA3VPRLP4RRUQ73KA9499JQTU5IZ' where id=3; -update noar tt set v0='X0YQZQOCBTAVPPYD3ITSP19B6FGJZ4' where id=4; -update noar ti set v0='X0YQZQOCBTAVPPYD3ITSP19B6FGJZ4' where id=4; -update noar tt set b0='UO3BO1GU1' where id=4; -update noar ti set b0='UO3BO1GU1' where id=4; -update noar tt set v0='QT6NUID7WWRIPAKTKXI' where id=4; -update noar ti set v0='QT6NUID7WWRIPAKTKXI' where id=4; -update noar tt set b1='7OY2KLZUCP237I4FQC526E' where id=4; -update noar ti set b1='7OY2KLZUCP237I4FQC526E' where id=4; -update noar tt set v0='C8GU5JOE7M5FWUC2F' where id=4; -update noar ti set v0='C8GU5JOE7M5FWUC2F' where id=4; -update noar tt set b2='U824PWKGO1JY' where id=4; -update noar ti set b2='U824PWKGO1JY' where id=4; -update noar tt set v0='XL4GSK0MSY7FV' where id=5; -update noar ti set v0='XL4GSK0MSY7FV' where id=5; -update noar tt set b0='L48Q7HUKLKEWXDLILEVTOVRMCNYGKA' where id=5; -update noar ti set b0='L48Q7HUKLKEWXDLILEVTOVRMCNYGKA' where id=5; -update noar tt set v0='09YWQBVCZD4UBJE0J8' where id=5; -update noar ti set v0='09YWQBVCZD4UBJE0J8' where id=5; -update noar tt set b1='8DIWKYPD7E' where id=5; -update noar ti set b1='8DIWKYPD7E' where id=5; -update noar tt set v0='C3WXE4WDIUZY0XTPPDY42TOSIPP7QTS' where id=5; -update noar ti set v0='C3WXE4WDIUZY0XTPPDY42TOSIPP7QTS' where id=5; -update noar tt set b2='TDF3LPX43QS' where id=5; -update noar ti set b2='TDF3LPX43QS' where id=5; -update noar tt set v0='83HIYUSKT5XZ9AJH3U0' where id=6; -update noar ti set v0='83HIYUSKT5XZ9AJH3U0' where id=6; -update noar tt set b0='EQ5BGX62ZD4I' where id=6; -update noar ti set b0='EQ5BGX62ZD4I' where id=6; -update noar tt set v0='0P65' where id=6; -update noar ti set v0='0P65' where id=6; -update noar tt set b1='OLQUJG4V840WOZ5KQDDT2Z' where id=6; -update noar ti set b1='OLQUJG4V840WOZ5KQDDT2Z' where id=6; -update noar tt set v0='JKY8DKPSU5ZCSE4RZY7UWTECQROJSV' where id=6; -update noar ti set v0='JKY8DKPSU5ZCSE4RZY7UWTECQROJSV' where id=6; -update noar tt set b2='HWR99ZT6212ZD03XNDJ0HE6PBJ2XA' where id=6; -update noar ti set b2='HWR99ZT6212ZD03XNDJ0HE6PBJ2XA' where id=6; -update noar tt set v0='W9P1NM' where id=7; -update noar ti set v0='W9P1NM' where id=7; -update noar tt set b0='1DR7JOE0K3I6LHHPV6YTAOK39YN6' where id=7; -update noar ti set b0='1DR7JOE0K3I6LHHPV6YTAOK39YN6' where id=7; -update noar tt set v0='I6X4RWB7KNGMX' where id=7; -update noar ti set v0='I6X4RWB7KNGMX' where id=7; -update noar tt set b1='2M1L5Q6IE6RKXXCARG3G' where id=7; -update noar ti set b1='2M1L5Q6IE6RKXXCARG3G' where id=7; -update noar tt set v0='HB89KGI' where id=7; -update noar ti set v0='HB89KGI' where id=7; -update noar tt set b2='E3F4X52INZYBPN' where id=7; -update noar ti set b2='E3F4X52INZYBPN' where id=7; -update noar tt set v0='94Q79ZPQ' where id=8; -update noar ti set v0='94Q79ZPQ' where id=8; -update noar tt set b0='MF2NV06' where id=8; -update noar ti set b0='MF2NV06' where id=8; -update noar tt set v0='WHC1TTOU9WB5G7V1L' where id=8; -update noar ti set v0='WHC1TTOU9WB5G7V1L' where id=8; -update noar tt set b1='UOFP6Q' where id=8; -update noar ti set b1='UOFP6Q' where id=8; -update noar tt set v0='TFAA7CBYCM' where id=8; -update noar ti set v0='TFAA7CBYCM' where id=8; -update noar tt set b2='UBXAVUGQZ3K1R6O42YOTDPAKB' where id=8; -update noar ti set b2='UBXAVUGQZ3K1R6O42YOTDPAKB' where id=8; -update noar tt set v0='NP0R2D4L39UZ5KHB3FGNKJJW8X0MKD' where id=9; -update noar ti set v0='NP0R2D4L39UZ5KHB3FGNKJJW8X0MKD' where id=9; -update noar tt set b0='W54TD8RFZJPL0CH' where id=9; -update noar ti set b0='W54TD8RFZJPL0CH' where id=9; -update noar tt set v0='HHP7FFFJLG6XAW' where id=9; -update noar ti set v0='HHP7FFFJLG6XAW' where id=9; -update noar tt set b1='QVM199Y8KLB' where id=9; -update noar ti set b1='QVM199Y8KLB' where id=9; -update noar tt set v0='BVLR61' where id=9; -update noar ti set v0='BVLR61' where id=9; -update noar tt set b2='4F4EMXB23ZMBZ' where id=9; -update noar ti set b2='4F4EMXB23ZMBZ' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - f0 int not null, - v0 varchar(32) not null, - b0 tinyblob not null, - b1 blob not null, - b2 blob not null -) engine=tokudb; -insert into tt values (1,0,'','','',''); -insert into tt values (2,0,'','','',''); -insert into tt values (3,0,'','','',''); -insert into tt values (4,0,'','','',''); -insert into tt values (5,0,'','','',''); -insert into tt values (6,0,'','','',''); -insert into tt values (7,0,'','','',''); -insert into tt values (8,0,'','','',''); -insert into tt values (9,0,'','','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='JGZ22PUX22RVYWUQ90NI0W' where id=1; -update noar ti set v0='JGZ22PUX22RVYWUQ90NI0W' where id=1; -update noar tt set b0='Y6Y491PDVJKINUAGF4HXB1' where id=1; -update noar ti set b0='Y6Y491PDVJKINUAGF4HXB1' where id=1; -update noar tt set v0='3MEOHP6BVGLTOWGWX' where id=1; -update noar ti set v0='3MEOHP6BVGLTOWGWX' where id=1; -update noar tt set b1='6IFIC' where id=1; -update noar ti set b1='6IFIC' where id=1; -update noar tt set v0='0QFO1J' where id=1; -update noar ti set v0='0QFO1J' where id=1; -update noar tt set b2='GP7V8FP358G5S6ZE123UZMMUT50V' where id=1; -update noar ti set b2='GP7V8FP358G5S6ZE123UZMMUT50V' where id=1; -update noar tt set v0='HR8' where id=2; -update noar ti set v0='HR8' where id=2; -update noar tt set b0='SGUB2' where id=2; -update noar ti set b0='SGUB2' where id=2; -update noar tt set v0='EQ' where id=2; -update noar ti set v0='EQ' where id=2; -update noar tt set b1='9AB7D4IVRSRRSZ99' where id=2; -update noar ti set b1='9AB7D4IVRSRRSZ99' where id=2; -update noar tt set v0='YIYKIYQ3NPQTDXT4SKP1EE4' where id=2; -update noar ti set v0='YIYKIYQ3NPQTDXT4SKP1EE4' where id=2; -update noar tt set b2='9BO4H8QVM64IMSIWATXXI3D5' where id=2; -update noar ti set b2='9BO4H8QVM64IMSIWATXXI3D5' where id=2; -update noar tt set v0='00CSJNTU00LPOWDN2' where id=3; -update noar ti set v0='00CSJNTU00LPOWDN2' where id=3; -update noar tt set b0='WDY4KP6TI6T0NJQ4' where id=3; -update noar ti set b0='WDY4KP6TI6T0NJQ4' where id=3; -update noar tt set v0='ROUAJGDG2ZAHLU8MBWV09ZKMBUQ8IXW9' where id=3; -update noar ti set v0='ROUAJGDG2ZAHLU8MBWV09ZKMBUQ8IXW9' where id=3; -update noar tt set b1='W3RM35S3XD7055ENC9QGD4RQUYMOSXY' where id=3; -update noar ti set b1='W3RM35S3XD7055ENC9QGD4RQUYMOSXY' where id=3; -update noar tt set v0='KCBO8YT5QQ3XX8UR303CN32TJ' where id=3; -update noar ti set v0='KCBO8YT5QQ3XX8UR303CN32TJ' where id=3; -update noar tt set b2='3QVT7VU4HNAA9M4K3RY' where id=3; -update noar ti set b2='3QVT7VU4HNAA9M4K3RY' where id=3; -update noar tt set v0='19HAA3' where id=4; -update noar ti set v0='19HAA3' where id=4; -update noar tt set b0='PHN1UGAGK91H1YG3SM0O5FOPDSSJN' where id=4; -update noar ti set b0='PHN1UGAGK91H1YG3SM0O5FOPDSSJN' where id=4; -update noar tt set v0='UH24UTV72RU4O52HF' where id=4; -update noar ti set v0='UH24UTV72RU4O52HF' where id=4; -update noar tt set b1='D' where id=4; -update noar ti set b1='D' where id=4; -update noar tt set v0='P7DVWXYY5AVEGL35CAY36R' where id=4; -update noar ti set v0='P7DVWXYY5AVEGL35CAY36R' where id=4; -update noar tt set b2='9MCHIPI' where id=4; -update noar ti set b2='9MCHIPI' where id=4; -update noar tt set v0='PLQ8YYR4VTVMUJX8WRAT75BL8BJ2WH03' where id=5; -update noar ti set v0='PLQ8YYR4VTVMUJX8WRAT75BL8BJ2WH03' where id=5; -update noar tt set b0='NJKSRC2YQ0' where id=5; -update noar ti set b0='NJKSRC2YQ0' where id=5; -update noar tt set v0='98C64' where id=5; -update noar ti set v0='98C64' where id=5; -update noar tt set b1='KXQCT7XYWHLOJSNEDRIUML' where id=5; -update noar ti set b1='KXQCT7XYWHLOJSNEDRIUML' where id=5; -update noar tt set v0='FI3' where id=5; -update noar ti set v0='FI3' where id=5; -update noar tt set b2='3B8B4' where id=5; -update noar ti set b2='3B8B4' where id=5; -update noar tt set v0='HB033COOVWJKICWALPEO' where id=6; -update noar ti set v0='HB033COOVWJKICWALPEO' where id=6; -update noar tt set b0='VVJTVSDU6V090WRVK6BXW07RYJH' where id=6; -update noar ti set b0='VVJTVSDU6V090WRVK6BXW07RYJH' where id=6; -update noar tt set v0='WFK7YDQ3N6STR' where id=6; -update noar ti set v0='WFK7YDQ3N6STR' where id=6; -update noar tt set b1='QBULJ4330JUTOYL1M' where id=6; -update noar ti set b1='QBULJ4330JUTOYL1M' where id=6; -update noar tt set v0='C3M9DJJ' where id=6; -update noar ti set v0='C3M9DJJ' where id=6; -update noar tt set b2='2P74326LDCSTLA7OK4' where id=6; -update noar ti set b2='2P74326LDCSTLA7OK4' where id=6; -update noar tt set v0='46BJOC70NG5DP4HM68ARTTP6L8HXHYII' where id=7; -update noar ti set v0='46BJOC70NG5DP4HM68ARTTP6L8HXHYII' where id=7; -update noar tt set b0='CUP3DH234BCVBMZ' where id=7; -update noar ti set b0='CUP3DH234BCVBMZ' where id=7; -update noar tt set v0='PER6R2JCKVZGB7J' where id=7; -update noar ti set v0='PER6R2JCKVZGB7J' where id=7; -update noar tt set b1='53NRH80AK7AXT1QXSDUOE38' where id=7; -update noar ti set b1='53NRH80AK7AXT1QXSDUOE38' where id=7; -update noar tt set v0='VT748Z0BGB1O802K' where id=7; -update noar ti set v0='VT748Z0BGB1O802K' where id=7; -update noar tt set b2='D' where id=7; -update noar ti set b2='D' where id=7; -update noar tt set v0='KSU4N' where id=8; -update noar ti set v0='KSU4N' where id=8; -update noar tt set b0='K1H6OGC9P1ZFQ' where id=8; -update noar ti set b0='K1H6OGC9P1ZFQ' where id=8; -update noar tt set v0='SOIS7YSD7Z' where id=8; -update noar ti set v0='SOIS7YSD7Z' where id=8; -update noar tt set b1='EHE6QU8O27TY20L051T2535SOKO5JMG' where id=8; -update noar ti set b1='EHE6QU8O27TY20L051T2535SOKO5JMG' where id=8; -update noar tt set v0='B8LZU3VOWWKN' where id=8; -update noar ti set v0='B8LZU3VOWWKN' where id=8; -update noar tt set b2='XUIIUYK5UH8G7' where id=8; -update noar ti set b2='XUIIUYK5UH8G7' where id=8; -update noar tt set v0='L9EPDQWUXG6R8U2Q' where id=9; -update noar ti set v0='L9EPDQWUXG6R8U2Q' where id=9; -update noar tt set b0='NUP1ZFAUNKWKSLU4OGWAO4N21' where id=9; -update noar ti set b0='NUP1ZFAUNKWKSLU4OGWAO4N21' where id=9; -update noar tt set v0='8XRYAZ' where id=9; -update noar ti set v0='8XRYAZ' where id=9; -update noar tt set b1='RN6TXKN4' where id=9; -update noar ti set b1='RN6TXKN4' where id=9; -update noar tt set v0='93H5657J0AOL4ZPI4SRA' where id=9; -update noar ti set v0='93H5657J0AOL4ZPI4SRA' where id=9; -update noar tt set b2='DUE35HFWL6GGA6RJ9R' where id=9; -update noar ti set b2='DUE35HFWL6GGA6RJ9R' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - f0 int not null, - v0 varchar(256) not null, - b0 tinyblob not null, - b1 blob not null, - b2 blob not null -) engine=tokudb; -insert into tt values (1,0,'','','',''); -insert into tt values (2,0,'','','',''); -insert into tt values (3,0,'','','',''); -insert into tt values (4,0,'','','',''); -insert into tt values (5,0,'','','',''); -insert into tt values (6,0,'','','',''); -insert into tt values (7,0,'','','',''); -insert into tt values (8,0,'','','',''); -insert into tt values (9,0,'','','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='PCDEW2UXS4MRD2769QUFSNV1NV2J' where id=1; -update noar ti set v0='PCDEW2UXS4MRD2769QUFSNV1NV2J' where id=1; -update noar tt set b0='8AEVLOYIXTK51YZ5XLYBP148GJK' where id=1; -update noar ti set b0='8AEVLOYIXTK51YZ5XLYBP148GJK' where id=1; -update noar tt set v0='Y56OUJ7X6KC5B5PNKV' where id=1; -update noar ti set v0='Y56OUJ7X6KC5B5PNKV' where id=1; -update noar tt set b1='46275Z336R900LG0' where id=1; -update noar ti set b1='46275Z336R900LG0' where id=1; -update noar tt set v0='N0QEM7KWBPBOSZJQOFMFII' where id=1; -update noar ti set v0='N0QEM7KWBPBOSZJQOFMFII' where id=1; -update noar tt set b2='SAN4NOL' where id=1; -update noar ti set b2='SAN4NOL' where id=1; -update noar tt set v0='75A1BLXT2CI1MY352DRWGH' where id=2; -update noar ti set v0='75A1BLXT2CI1MY352DRWGH' where id=2; -update noar tt set b0='BJSL60TCELZ06IWA2NVTQ1LW92C' where id=2; -update noar ti set b0='BJSL60TCELZ06IWA2NVTQ1LW92C' where id=2; -update noar tt set v0='INK' where id=2; -update noar ti set v0='INK' where id=2; -update noar tt set b1='UX3W0WU9F9R27SVY3' where id=2; -update noar ti set b1='UX3W0WU9F9R27SVY3' where id=2; -update noar tt set v0='202MO30MWSJ3RBGJ' where id=2; -update noar ti set v0='202MO30MWSJ3RBGJ' where id=2; -update noar tt set b2='U971UM3IOS7LSP0ABARE5SU1' where id=2; -update noar ti set b2='U971UM3IOS7LSP0ABARE5SU1' where id=2; -update noar tt set v0='J7N199SON5ZMNWW' where id=3; -update noar ti set v0='J7N199SON5ZMNWW' where id=3; -update noar tt set b0='TSCTQCKWTIA16HDFF3HQZLT7ZAO9ZLUA' where id=3; -update noar ti set b0='TSCTQCKWTIA16HDFF3HQZLT7ZAO9ZLUA' where id=3; -update noar tt set v0='7SYK77QJZL8CI5TFBB7Q92' where id=3; -update noar ti set v0='7SYK77QJZL8CI5TFBB7Q92' where id=3; -update noar tt set b1='STG' where id=3; -update noar ti set b1='STG' where id=3; -update noar tt set v0='3JQ4HGVAFN77' where id=3; -update noar ti set v0='3JQ4HGVAFN77' where id=3; -update noar tt set b2='ALTL3UIEV3DE3PJNS7X3ZD13M51D6X' where id=3; -update noar ti set b2='ALTL3UIEV3DE3PJNS7X3ZD13M51D6X' where id=3; -update noar tt set v0='NMHW6POKCLRE0SG5D' where id=4; -update noar ti set v0='NMHW6POKCLRE0SG5D' where id=4; -update noar tt set b0='9T1LN0NHL0WFPC4R0LF92RP49L3' where id=4; -update noar ti set b0='9T1LN0NHL0WFPC4R0LF92RP49L3' where id=4; -update noar tt set v0='IFV9V7M47G6LS1PIDA7L1LUMCNMV' where id=4; -update noar ti set v0='IFV9V7M47G6LS1PIDA7L1LUMCNMV' where id=4; -update noar tt set b1='E' where id=4; -update noar ti set b1='E' where id=4; -update noar tt set v0='LKSJSI3W6G2T6G1A4OFY4' where id=4; -update noar ti set v0='LKSJSI3W6G2T6G1A4OFY4' where id=4; -update noar tt set b2='O90GIRSQJFHMRRAZ3N22SC9XZV6WLI4N' where id=4; -update noar ti set b2='O90GIRSQJFHMRRAZ3N22SC9XZV6WLI4N' where id=4; -update noar tt set v0='S9GK6K05JI7NVTLWZU9F0HSM1H0Z' where id=5; -update noar ti set v0='S9GK6K05JI7NVTLWZU9F0HSM1H0Z' where id=5; -update noar tt set b0='Y943RBCB56KZWNP0OR58JQHFXI1' where id=5; -update noar ti set b0='Y943RBCB56KZWNP0OR58JQHFXI1' where id=5; -update noar tt set v0='XR0LUZ3NRULEL13F' where id=5; -update noar ti set v0='XR0LUZ3NRULEL13F' where id=5; -update noar tt set b1='UEU3FSKSTFUG34QK8S1' where id=5; -update noar ti set b1='UEU3FSKSTFUG34QK8S1' where id=5; -update noar tt set v0='NDS' where id=5; -update noar ti set v0='NDS' where id=5; -update noar tt set b2='1KH365LZF35GJPDCRK0VN48KILJL' where id=5; -update noar ti set b2='1KH365LZF35GJPDCRK0VN48KILJL' where id=5; -update noar tt set v0='TNPCV1Z4ZMYJCAOQRBP' where id=6; -update noar ti set v0='TNPCV1Z4ZMYJCAOQRBP' where id=6; -update noar tt set b0='P1E0YW' where id=6; -update noar ti set b0='P1E0YW' where id=6; -update noar tt set v0='Y8G0MAGA3EVQKQXP1YKWKMIGR' where id=6; -update noar ti set v0='Y8G0MAGA3EVQKQXP1YKWKMIGR' where id=6; -update noar tt set b1='BXQ8EB8GZ9KU6' where id=6; -update noar ti set b1='BXQ8EB8GZ9KU6' where id=6; -update noar tt set v0='P9EDQX45D649GHOK9QXV5KNGB' where id=6; -update noar ti set v0='P9EDQX45D649GHOK9QXV5KNGB' where id=6; -update noar tt set b2='8NVA' where id=6; -update noar ti set b2='8NVA' where id=6; -update noar tt set v0='9U' where id=7; -update noar ti set v0='9U' where id=7; -update noar tt set b0='CZE082LCU1ICVFMUJNAZ4L0MA7ZPJ' where id=7; -update noar ti set b0='CZE082LCU1ICVFMUJNAZ4L0MA7ZPJ' where id=7; -update noar tt set v0='7KA025ITKEY7XSO5DEJXF5' where id=7; -update noar ti set v0='7KA025ITKEY7XSO5DEJXF5' where id=7; -update noar tt set b1='QDPJWOZA785IWSOD74VGM4' where id=7; -update noar ti set b1='QDPJWOZA785IWSOD74VGM4' where id=7; -update noar tt set v0='5028WYOHG3QSDHY4IKO41BJ6UCRU' where id=7; -update noar ti set v0='5028WYOHG3QSDHY4IKO41BJ6UCRU' where id=7; -update noar tt set b2='D80FF0YB163LD844VQ573TL' where id=7; -update noar ti set b2='D80FF0YB163LD844VQ573TL' where id=7; -update noar tt set v0='A0BCIUZX8RYKAMDOOA1VTQ8I5Y' where id=8; -update noar ti set v0='A0BCIUZX8RYKAMDOOA1VTQ8I5Y' where id=8; -update noar tt set b0='6QJEW9' where id=8; -update noar ti set b0='6QJEW9' where id=8; -update noar tt set v0='W5IXOQAA4OBYPGB8' where id=8; -update noar ti set v0='W5IXOQAA4OBYPGB8' where id=8; -update noar tt set b1='4IN2M2UD' where id=8; -update noar ti set b1='4IN2M2UD' where id=8; -update noar tt set v0='05TE675X1A1DM' where id=8; -update noar ti set v0='05TE675X1A1DM' where id=8; -update noar tt set b2='3JYYJZ' where id=8; -update noar ti set b2='3JYYJZ' where id=8; -update noar tt set v0='EPFKWCVOPGXJCWGW' where id=9; -update noar ti set v0='EPFKWCVOPGXJCWGW' where id=9; -update noar tt set b0='D6N26Y0EB6XXR4EF2G' where id=9; -update noar ti set b0='D6N26Y0EB6XXR4EF2G' where id=9; -update noar tt set v0='0BW' where id=9; -update noar ti set v0='0BW' where id=9; -update noar tt set b1='U3' where id=9; -update noar ti set b1='U3' where id=9; -update noar tt set v0='OPITJ9GXYBBZLWD8VQOAIWVFW1P63' where id=9; -update noar ti set v0='OPITJ9GXYBBZLWD8VQOAIWVFW1P63' where id=9; -update noar tt set b2='7FDVO1BS5JVV08LUEU77BV' where id=9; -update noar ti set b2='7FDVO1BS5JVV08LUEU77BV' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - f0 int null, - v0 varchar(32) null, - b0 tinyblob null, - b1 blob null, - b2 mediumblob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='6B5LYFZEER6TF1OIDUAP8HD' where id=1; -update noar ti set v0='6B5LYFZEER6TF1OIDUAP8HD' where id=1; -update noar tt set b0='XFPXPKBN3792X8PNCA0TZ1TTHA9295R7' where id=1; -update noar ti set b0='XFPXPKBN3792X8PNCA0TZ1TTHA9295R7' where id=1; -update noar tt set v0='T82NXGLCTBNWD59' where id=1; -update noar ti set v0='T82NXGLCTBNWD59' where id=1; -update noar tt set b1='34F670' where id=1; -update noar ti set b1='34F670' where id=1; -update noar tt set v0='UR7FPKM' where id=1; -update noar ti set v0='UR7FPKM' where id=1; -update noar tt set b2='IIF0G8F0U1MSQ' where id=1; -update noar ti set b2='IIF0G8F0U1MSQ' where id=1; -update noar tt set v0='9KE2DXE' where id=2; -update noar ti set v0='9KE2DXE' where id=2; -update noar tt set b0='X58CN7EJI5TX4RY5VGFEOV2OPJ' where id=2; -update noar ti set b0='X58CN7EJI5TX4RY5VGFEOV2OPJ' where id=2; -update noar tt set v0='FM0PE' where id=2; -update noar ti set v0='FM0PE' where id=2; -update noar tt set b1='2HI8LRAFUFFGME20KEVE7PVUCEZ' where id=2; -update noar ti set b1='2HI8LRAFUFFGME20KEVE7PVUCEZ' where id=2; -update noar tt set v0='M2QL' where id=2; -update noar ti set v0='M2QL' where id=2; -update noar tt set b2='4QRFDXKH0GJBVB' where id=2; -update noar ti set b2='4QRFDXKH0GJBVB' where id=2; -update noar tt set v0='080BP' where id=3; -update noar ti set v0='080BP' where id=3; -update noar tt set b0='V2VN' where id=3; -update noar ti set b0='V2VN' where id=3; -update noar tt set v0='JPUGCY0NCBHGLVQO' where id=3; -update noar ti set v0='JPUGCY0NCBHGLVQO' where id=3; -update noar tt set b1='G5HAS6QK0BUWGF8' where id=3; -update noar ti set b1='G5HAS6QK0BUWGF8' where id=3; -update noar tt set v0='RYJASUZR' where id=3; -update noar ti set v0='RYJASUZR' where id=3; -update noar tt set b2='B2PUJJILJDPQGT4' where id=3; -update noar ti set b2='B2PUJJILJDPQGT4' where id=3; -update noar tt set v0='FQUAAEZQSUEP69LAOAQN' where id=4; -update noar ti set v0='FQUAAEZQSUEP69LAOAQN' where id=4; -update noar tt set b0='JXDCUFFWA8Q86SGAA8RBI' where id=4; -update noar ti set b0='JXDCUFFWA8Q86SGAA8RBI' where id=4; -update noar tt set v0='1VINNTSHBZ9H4' where id=4; -update noar ti set v0='1VINNTSHBZ9H4' where id=4; -update noar tt set b1='G7DZ3NE8JFO7P' where id=4; -update noar ti set b1='G7DZ3NE8JFO7P' where id=4; -update noar tt set v0='99F91LAHG944QVUL' where id=4; -update noar ti set v0='99F91LAHG944QVUL' where id=4; -update noar tt set b2='PZV' where id=4; -update noar ti set b2='PZV' where id=4; -update noar tt set v0='MWL6NQ8WFTJ6T' where id=5; -update noar ti set v0='MWL6NQ8WFTJ6T' where id=5; -update noar tt set b0='7FB36L2GM5JSHQD6Q3C3WT' where id=5; -update noar ti set b0='7FB36L2GM5JSHQD6Q3C3WT' where id=5; -update noar tt set v0='04298HR9ZRFL3PSD2GDV53B1MEP058' where id=5; -update noar ti set v0='04298HR9ZRFL3PSD2GDV53B1MEP058' where id=5; -update noar tt set b1='EUBD1KUO1S2J' where id=5; -update noar ti set b1='EUBD1KUO1S2J' where id=5; -update noar tt set v0='0VZ3ECY2IU1EMZA85TFWGLX6VKO5EP' where id=5; -update noar ti set v0='0VZ3ECY2IU1EMZA85TFWGLX6VKO5EP' where id=5; -update noar tt set b2='TRSJN9Z4HF16F' where id=5; -update noar ti set b2='TRSJN9Z4HF16F' where id=5; -update noar tt set v0='Y4U6AZ4DR8F' where id=6; -update noar ti set v0='Y4U6AZ4DR8F' where id=6; -update noar tt set b0='7LEFKGWT94FVEBOKYVR0IC' where id=6; -update noar ti set b0='7LEFKGWT94FVEBOKYVR0IC' where id=6; -update noar tt set v0='MV7F' where id=6; -update noar ti set v0='MV7F' where id=6; -update noar tt set b1='I7QR' where id=6; -update noar ti set b1='I7QR' where id=6; -update noar tt set v0='SCP3UDJLZJH0M2ZYEL41PDJU' where id=6; -update noar ti set v0='SCP3UDJLZJH0M2ZYEL41PDJU' where id=6; -update noar tt set b2='HYJTBRJ84KMJ0' where id=6; -update noar ti set b2='HYJTBRJ84KMJ0' where id=6; -update noar tt set v0='68XV89D4TG6JY' where id=7; -update noar ti set v0='68XV89D4TG6JY' where id=7; -update noar tt set b0='J4DAA' where id=7; -update noar ti set b0='J4DAA' where id=7; -update noar tt set v0='HOOS0S27Z1IQ' where id=7; -update noar ti set v0='HOOS0S27Z1IQ' where id=7; -update noar tt set b1='M5WVHVJQ' where id=7; -update noar ti set b1='M5WVHVJQ' where id=7; -update noar tt set v0='FZGNYL9XKC1IFGP5RMAWCJ28PCSTUSP' where id=7; -update noar ti set v0='FZGNYL9XKC1IFGP5RMAWCJ28PCSTUSP' where id=7; -update noar tt set b2='4H9JSEGPGIW0AQT95URDXWDCG3B129' where id=7; -update noar ti set b2='4H9JSEGPGIW0AQT95URDXWDCG3B129' where id=7; -update noar tt set v0='Q41UB2MFEMYICSMH8B5LSW6C288M4MV' where id=8; -update noar ti set v0='Q41UB2MFEMYICSMH8B5LSW6C288M4MV' where id=8; -update noar tt set b0='0W8CHC2R5O9RLJOJARXFSFX' where id=8; -update noar ti set b0='0W8CHC2R5O9RLJOJARXFSFX' where id=8; -update noar tt set v0='HAFBFNG' where id=8; -update noar ti set v0='HAFBFNG' where id=8; -update noar tt set b1='3UKFNBNFD96F1LG577F9SFC9F43H8P3A' where id=8; -update noar ti set b1='3UKFNBNFD96F1LG577F9SFC9F43H8P3A' where id=8; -update noar tt set v0='0SJK2YS5XP19S83RZP3SJ4' where id=8; -update noar ti set v0='0SJK2YS5XP19S83RZP3SJ4' where id=8; -update noar tt set b2='LKSR9R' where id=8; -update noar ti set b2='LKSR9R' where id=8; -update noar tt set v0='3' where id=9; -update noar ti set v0='3' where id=9; -update noar tt set b0='BUHAUWE' where id=9; -update noar ti set b0='BUHAUWE' where id=9; -update noar tt set v0='6KNM5ZR7TGKPYWQ7A5E08U76A' where id=9; -update noar ti set v0='6KNM5ZR7TGKPYWQ7A5E08U76A' where id=9; -update noar tt set b1='S' where id=9; -update noar ti set b1='S' where id=9; -update noar tt set v0='I' where id=9; -update noar ti set v0='I' where id=9; -update noar tt set b2='PUZIW8ML' where id=9; -update noar ti set b2='PUZIW8ML' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - f0 int null, - v0 varchar(256) null, - b0 tinyblob null, - b1 blob null, - b2 mediumblob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='C3DXT5S' where id=1; -update noar ti set v0='C3DXT5S' where id=1; -update noar tt set b0='8EO1WTUFC0LWN' where id=1; -update noar ti set b0='8EO1WTUFC0LWN' where id=1; -update noar tt set v0='DA2XQOYGHAL' where id=1; -update noar ti set v0='DA2XQOYGHAL' where id=1; -update noar tt set b1='LBVLH18GCGVCQMTRNA9' where id=1; -update noar ti set b1='LBVLH18GCGVCQMTRNA9' where id=1; -update noar tt set v0='WDOI0FG44RUVMDH04PQXXWFSPIHGY6BY' where id=1; -update noar ti set v0='WDOI0FG44RUVMDH04PQXXWFSPIHGY6BY' where id=1; -update noar tt set b2='R229LSDCR' where id=1; -update noar ti set b2='R229LSDCR' where id=1; -update noar tt set v0='5IDZ5YW0J7D6WMPET66JYLPH8Q5QCS' where id=2; -update noar ti set v0='5IDZ5YW0J7D6WMPET66JYLPH8Q5QCS' where id=2; -update noar tt set b0='HX' where id=2; -update noar ti set b0='HX' where id=2; -update noar tt set v0='VQMNJXZ8FEJODOCFVS4T5MOIRAXG' where id=2; -update noar ti set v0='VQMNJXZ8FEJODOCFVS4T5MOIRAXG' where id=2; -update noar tt set b1='RGI92TQN81' where id=2; -update noar ti set b1='RGI92TQN81' where id=2; -update noar tt set v0='2V2AJEC57QHJXHGTA' where id=2; -update noar ti set v0='2V2AJEC57QHJXHGTA' where id=2; -update noar tt set b2='C6PX0G' where id=2; -update noar ti set b2='C6PX0G' where id=2; -update noar tt set v0='F6UTTEO8JTKGDF36Y3X1E9PIIBX' where id=3; -update noar ti set v0='F6UTTEO8JTKGDF36Y3X1E9PIIBX' where id=3; -update noar tt set b0='7E1IVSHIIZ8ZZU52' where id=3; -update noar ti set b0='7E1IVSHIIZ8ZZU52' where id=3; -update noar tt set v0='5QT1NDMGX29M0XHTYOCYH' where id=3; -update noar ti set v0='5QT1NDMGX29M0XHTYOCYH' where id=3; -update noar tt set b1='EKC' where id=3; -update noar ti set b1='EKC' where id=3; -update noar tt set v0='5L4YFFLX3X4NMZNR1MPQG35' where id=3; -update noar ti set v0='5L4YFFLX3X4NMZNR1MPQG35' where id=3; -update noar tt set b2='XQ64OCC6NGJJN0E7C4TGVRWG2KXCQ6' where id=3; -update noar ti set b2='XQ64OCC6NGJJN0E7C4TGVRWG2KXCQ6' where id=3; -update noar tt set v0='OLUKY7GTN04KJE3TG' where id=4; -update noar ti set v0='OLUKY7GTN04KJE3TG' where id=4; -update noar tt set b0='66QXTP6BBCW95F' where id=4; -update noar ti set b0='66QXTP6BBCW95F' where id=4; -update noar tt set v0='K' where id=4; -update noar ti set v0='K' where id=4; -update noar tt set b1='GON6T3UBR1SNJLPOD32LK' where id=4; -update noar ti set b1='GON6T3UBR1SNJLPOD32LK' where id=4; -update noar tt set v0='VNRAU1JZB02LNK4E32PBV00Z9EEHBUKX' where id=4; -update noar ti set v0='VNRAU1JZB02LNK4E32PBV00Z9EEHBUKX' where id=4; -update noar tt set b2='F0PP9G4BKJGUN' where id=4; -update noar ti set b2='F0PP9G4BKJGUN' where id=4; -update noar tt set v0='HOEC' where id=5; -update noar ti set v0='HOEC' where id=5; -update noar tt set b0='E2CI2TNI8DHORJ' where id=5; -update noar ti set b0='E2CI2TNI8DHORJ' where id=5; -update noar tt set v0='CR0K0KDJ86VV201QK8XE06' where id=5; -update noar ti set v0='CR0K0KDJ86VV201QK8XE06' where id=5; -update noar tt set b1='SIU7Q73K80' where id=5; -update noar ti set b1='SIU7Q73K80' where id=5; -update noar tt set v0='F9RTRGD0KM4FJX9LR5TWH50IIFEUDX1M' where id=5; -update noar ti set v0='F9RTRGD0KM4FJX9LR5TWH50IIFEUDX1M' where id=5; -update noar tt set b2='ADPS5DX10VWCY46M1JMLHIDW336CA' where id=5; -update noar ti set b2='ADPS5DX10VWCY46M1JMLHIDW336CA' where id=5; -update noar tt set v0='QQS9FY9IEXNBYT6QDU9Q89' where id=6; -update noar ti set v0='QQS9FY9IEXNBYT6QDU9Q89' where id=6; -update noar tt set b0='CAPVR994XAZ17D97KIBW89A2D' where id=6; -update noar ti set b0='CAPVR994XAZ17D97KIBW89A2D' where id=6; -update noar tt set v0='SO6' where id=6; -update noar ti set v0='SO6' where id=6; -update noar tt set b1='OBJC0N9RL82WOX3226WVK0SEEELZRI' where id=6; -update noar ti set b1='OBJC0N9RL82WOX3226WVK0SEEELZRI' where id=6; -update noar tt set v0='LHUBM79WKW1GIS7W7NZJ0SLK' where id=6; -update noar ti set v0='LHUBM79WKW1GIS7W7NZJ0SLK' where id=6; -update noar tt set b2='7IIIVNPZOY7Y6PQOEGKT' where id=6; -update noar ti set b2='7IIIVNPZOY7Y6PQOEGKT' where id=6; -update noar tt set v0='GQGXDN6FKY0E5W8UX92R8C4DG3MMOSTS' where id=7; -update noar ti set v0='GQGXDN6FKY0E5W8UX92R8C4DG3MMOSTS' where id=7; -update noar tt set b0='4ASI9COMIRVZCJ9HUDU2RE3AOODA8S0' where id=7; -update noar ti set b0='4ASI9COMIRVZCJ9HUDU2RE3AOODA8S0' where id=7; -update noar tt set v0='KSWFSU' where id=7; -update noar ti set v0='KSWFSU' where id=7; -update noar tt set b1='B6TAA473WR' where id=7; -update noar ti set b1='B6TAA473WR' where id=7; -update noar tt set v0='XI2CF6BS8Q94IG664R7BFHI4EZ3LB' where id=7; -update noar ti set v0='XI2CF6BS8Q94IG664R7BFHI4EZ3LB' where id=7; -update noar tt set b2='C3JB6EZ31V0LN2Y9GIN' where id=7; -update noar ti set b2='C3JB6EZ31V0LN2Y9GIN' where id=7; -update noar tt set v0='6I2Z81YA2UPRQOVI' where id=8; -update noar ti set v0='6I2Z81YA2UPRQOVI' where id=8; -update noar tt set b0='162Z4MPQADM' where id=8; -update noar ti set b0='162Z4MPQADM' where id=8; -update noar tt set v0='23GRKMS' where id=8; -update noar ti set v0='23GRKMS' where id=8; -update noar tt set b1='0YAYYLOQ5FR2K6LNRDZU2' where id=8; -update noar ti set b1='0YAYYLOQ5FR2K6LNRDZU2' where id=8; -update noar tt set v0='JIJDACY9Y0ULYG6DIETHY474' where id=8; -update noar ti set v0='JIJDACY9Y0ULYG6DIETHY474' where id=8; -update noar tt set b2='59M2PBKEX2HYURXMS0J7AZ1KXMF8' where id=8; -update noar ti set b2='59M2PBKEX2HYURXMS0J7AZ1KXMF8' where id=8; -update noar tt set v0='3KX7I4EMHI1TCEAZYR504DP7N' where id=9; -update noar ti set v0='3KX7I4EMHI1TCEAZYR504DP7N' where id=9; -update noar tt set b0='4GE5EQ7VU2L' where id=9; -update noar ti set b0='4GE5EQ7VU2L' where id=9; -update noar tt set v0='NPH7MHLZXCI5ZLK4X' where id=9; -update noar ti set v0='NPH7MHLZXCI5ZLK4X' where id=9; -update noar tt set b1='QS67A8QQYKBTSONRU8P' where id=9; -update noar ti set b1='QS67A8QQYKBTSONRU8P' where id=9; -update noar tt set v0='IYH360I' where id=9; -update noar ti set v0='IYH360I' where id=9; -update noar tt set b2='ZH' where id=9; -update noar ti set b2='ZH' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - f0 int not null, - v0 varchar(32) not null, - b0 tinyblob not null, - b1 blob not null, - b2 mediumblob not null -) engine=tokudb; -insert into tt values (1,0,'','','',''); -insert into tt values (2,0,'','','',''); -insert into tt values (3,0,'','','',''); -insert into tt values (4,0,'','','',''); -insert into tt values (5,0,'','','',''); -insert into tt values (6,0,'','','',''); -insert into tt values (7,0,'','','',''); -insert into tt values (8,0,'','','',''); -insert into tt values (9,0,'','','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='EY2KOT82FZ4FU' where id=1; -update noar ti set v0='EY2KOT82FZ4FU' where id=1; -update noar tt set b0='M9Y9H' where id=1; -update noar ti set b0='M9Y9H' where id=1; -update noar tt set v0='V4CPWY9' where id=1; -update noar ti set v0='V4CPWY9' where id=1; -update noar tt set b1='RLOVRWMKZNLNL9AY9F' where id=1; -update noar ti set b1='RLOVRWMKZNLNL9AY9F' where id=1; -update noar tt set v0='HVKEPSI' where id=1; -update noar ti set v0='HVKEPSI' where id=1; -update noar tt set b2='FSUWSIP1N8LH1RGTZP' where id=1; -update noar ti set b2='FSUWSIP1N8LH1RGTZP' where id=1; -update noar tt set v0='GV0H6I0L4DR0G' where id=2; -update noar ti set v0='GV0H6I0L4DR0G' where id=2; -update noar tt set b0='X0ITOY' where id=2; -update noar ti set b0='X0ITOY' where id=2; -update noar tt set v0='W' where id=2; -update noar ti set v0='W' where id=2; -update noar tt set b1='ZE2WQ9' where id=2; -update noar ti set b1='ZE2WQ9' where id=2; -update noar tt set v0='AXT1DCWHH6ADJED' where id=2; -update noar ti set v0='AXT1DCWHH6ADJED' where id=2; -update noar tt set b2='BQLKNKZU5P' where id=2; -update noar ti set b2='BQLKNKZU5P' where id=2; -update noar tt set v0='EV655YZBBY9' where id=3; -update noar ti set v0='EV655YZBBY9' where id=3; -update noar tt set b0='YVL' where id=3; -update noar ti set b0='YVL' where id=3; -update noar tt set v0='5BM4SI9T74QYJ5DO' where id=3; -update noar ti set v0='5BM4SI9T74QYJ5DO' where id=3; -update noar tt set b1='K2I08J6D' where id=3; -update noar ti set b1='K2I08J6D' where id=3; -update noar tt set v0='7YHPSP' where id=3; -update noar ti set v0='7YHPSP' where id=3; -update noar tt set b2='GSZA' where id=3; -update noar ti set b2='GSZA' where id=3; -update noar tt set v0='KW837W77GBTV3YIVT0M6DBXLLLUPO' where id=4; -update noar ti set v0='KW837W77GBTV3YIVT0M6DBXLLLUPO' where id=4; -update noar tt set b0='BW0S60WQ2SKCT75DZBJ2V' where id=4; -update noar ti set b0='BW0S60WQ2SKCT75DZBJ2V' where id=4; -update noar tt set v0='XLVI9UGH2QT8DIHLZOFVS0RLIS0HK0XB' where id=4; -update noar ti set v0='XLVI9UGH2QT8DIHLZOFVS0RLIS0HK0XB' where id=4; -update noar tt set b1='KELX3DWU3221X6DRMFHCR3FKUZ3Y6MM5' where id=4; -update noar ti set b1='KELX3DWU3221X6DRMFHCR3FKUZ3Y6MM5' where id=4; -update noar tt set v0='NMYYLI' where id=4; -update noar ti set v0='NMYYLI' where id=4; -update noar tt set b2='R8GB1X56EK2' where id=4; -update noar ti set b2='R8GB1X56EK2' where id=4; -update noar tt set v0='T7HS2RGP' where id=5; -update noar ti set v0='T7HS2RGP' where id=5; -update noar tt set b0='MAWBUNW' where id=5; -update noar ti set b0='MAWBUNW' where id=5; -update noar tt set v0='RHUV9VBFZWIVS0PQM3AQ' where id=5; -update noar ti set v0='RHUV9VBFZWIVS0PQM3AQ' where id=5; -update noar tt set b1='W1GTO1E' where id=5; -update noar ti set b1='W1GTO1E' where id=5; -update noar tt set v0='MI' where id=5; -update noar ti set v0='MI' where id=5; -update noar tt set b2='2FMUZ' where id=5; -update noar ti set b2='2FMUZ' where id=5; -update noar tt set v0='5UHFDUT' where id=6; -update noar ti set v0='5UHFDUT' where id=6; -update noar tt set b0='PO82BUFTM8UW4T9CW5CE' where id=6; -update noar ti set b0='PO82BUFTM8UW4T9CW5CE' where id=6; -update noar tt set v0='5O6JJ0OLDL87SD' where id=6; -update noar ti set v0='5O6JJ0OLDL87SD' where id=6; -update noar tt set b1='TBKKH643Y5MLRMDH5NZIVJZ9HP1N1' where id=6; -update noar ti set b1='TBKKH643Y5MLRMDH5NZIVJZ9HP1N1' where id=6; -update noar tt set v0='AE3' where id=6; -update noar ti set v0='AE3' where id=6; -update noar tt set b2='XZQ' where id=6; -update noar ti set b2='XZQ' where id=6; -update noar tt set v0='IK71I8BNGAO' where id=7; -update noar ti set v0='IK71I8BNGAO' where id=7; -update noar tt set b0='LKRWNU7LSVDDS1AV6SSL0VZJRK271CCL' where id=7; -update noar ti set b0='LKRWNU7LSVDDS1AV6SSL0VZJRK271CCL' where id=7; -update noar tt set v0='XBHNEAGTQH' where id=7; -update noar ti set v0='XBHNEAGTQH' where id=7; -update noar tt set b1='TZ7HA' where id=7; -update noar ti set b1='TZ7HA' where id=7; -update noar tt set v0='UZGTIP3CTTI8296N3W64WI1FBED' where id=7; -update noar ti set v0='UZGTIP3CTTI8296N3W64WI1FBED' where id=7; -update noar tt set b2='1HO' where id=7; -update noar ti set b2='1HO' where id=7; -update noar tt set v0='QZGTOMM6CA' where id=8; -update noar ti set v0='QZGTOMM6CA' where id=8; -update noar tt set b0='QNS2ENVLTD11WO' where id=8; -update noar ti set b0='QNS2ENVLTD11WO' where id=8; -update noar tt set v0='2F77494RHWG06SAGISA' where id=8; -update noar ti set v0='2F77494RHWG06SAGISA' where id=8; -update noar tt set b1='U' where id=8; -update noar ti set b1='U' where id=8; -update noar tt set v0='JHV3S2WSK1Q1FTMOZQMT' where id=8; -update noar ti set v0='JHV3S2WSK1Q1FTMOZQMT' where id=8; -update noar tt set b2='8G3144RP88EOQI3IJX2PKFEJJCMBZFFA' where id=8; -update noar ti set b2='8G3144RP88EOQI3IJX2PKFEJJCMBZFFA' where id=8; -update noar tt set v0='4H5EGT9UOKKP2F113ZE3RWOAQ5G' where id=9; -update noar ti set v0='4H5EGT9UOKKP2F113ZE3RWOAQ5G' where id=9; -update noar tt set b0='MS' where id=9; -update noar ti set b0='MS' where id=9; -update noar tt set v0='27YMHNTMO' where id=9; -update noar ti set v0='27YMHNTMO' where id=9; -update noar tt set b1='0WMAH17RW0XSEK67M5DWE8FM312S' where id=9; -update noar ti set b1='0WMAH17RW0XSEK67M5DWE8FM312S' where id=9; -update noar tt set v0='72H94E7RWBSWH' where id=9; -update noar ti set v0='72H94E7RWBSWH' where id=9; -update noar tt set b2='KKN1RK271JNFCFA8CFLAMS85' where id=9; -update noar ti set b2='KKN1RK271JNFCFA8CFLAMS85' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - f0 int not null, - v0 varchar(256) not null, - b0 tinyblob not null, - b1 blob not null, - b2 mediumblob not null -) engine=tokudb; -insert into tt values (1,0,'','','',''); -insert into tt values (2,0,'','','',''); -insert into tt values (3,0,'','','',''); -insert into tt values (4,0,'','','',''); -insert into tt values (5,0,'','','',''); -insert into tt values (6,0,'','','',''); -insert into tt values (7,0,'','','',''); -insert into tt values (8,0,'','','',''); -insert into tt values (9,0,'','','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='F47PP3MSOMOXLF0VPVO5HR2XMQ' where id=1; -update noar ti set v0='F47PP3MSOMOXLF0VPVO5HR2XMQ' where id=1; -update noar tt set b0='JHO0QT5EDZE9HC0DA1EUQ' where id=1; -update noar ti set b0='JHO0QT5EDZE9HC0DA1EUQ' where id=1; -update noar tt set v0='PPKUUXRW3JI' where id=1; -update noar ti set v0='PPKUUXRW3JI' where id=1; -update noar tt set b1='5ENA40PFDZQ7BEAS' where id=1; -update noar ti set b1='5ENA40PFDZQ7BEAS' where id=1; -update noar tt set v0='8' where id=1; -update noar ti set v0='8' where id=1; -update noar tt set b2='QYXB85F79E8K1O9VV58F53YVMY811NZR' where id=1; -update noar ti set b2='QYXB85F79E8K1O9VV58F53YVMY811NZR' where id=1; -update noar tt set v0='ZJWX' where id=2; -update noar ti set v0='ZJWX' where id=2; -update noar tt set b0='AHDNUCOCHS0U8GLH' where id=2; -update noar ti set b0='AHDNUCOCHS0U8GLH' where id=2; -update noar tt set v0='HNGZ2XPYQ' where id=2; -update noar ti set v0='HNGZ2XPYQ' where id=2; -update noar tt set b1='YB0WZHGHEBC6JQIZ' where id=2; -update noar ti set b1='YB0WZHGHEBC6JQIZ' where id=2; -update noar tt set v0='ZB5UW3UVZ7CPYXZ4TEIXW6BP' where id=2; -update noar ti set v0='ZB5UW3UVZ7CPYXZ4TEIXW6BP' where id=2; -update noar tt set b2='BQYI0XVEATBV1S8V45LZFAZUFV5FF' where id=2; -update noar ti set b2='BQYI0XVEATBV1S8V45LZFAZUFV5FF' where id=2; -update noar tt set v0='QCSNGR51XP22R0PJH5VKLZ61IILWLV' where id=3; -update noar ti set v0='QCSNGR51XP22R0PJH5VKLZ61IILWLV' where id=3; -update noar tt set b0='8BHWG3YMZ9S5Y' where id=3; -update noar ti set b0='8BHWG3YMZ9S5Y' where id=3; -update noar tt set v0='4LJQKTEWJIDBICUEJ4JVMAR' where id=3; -update noar ti set v0='4LJQKTEWJIDBICUEJ4JVMAR' where id=3; -update noar tt set b1='P7X4LP2CPD4M3O' where id=3; -update noar ti set b1='P7X4LP2CPD4M3O' where id=3; -update noar tt set v0='NAJH6NAG93V' where id=3; -update noar ti set v0='NAJH6NAG93V' where id=3; -update noar tt set b2='NM5R9HVG' where id=3; -update noar ti set b2='NM5R9HVG' where id=3; -update noar tt set v0='F0W7KZJLT7W37YWETQRIC7YIOFLFJ' where id=4; -update noar ti set v0='F0W7KZJLT7W37YWETQRIC7YIOFLFJ' where id=4; -update noar tt set b0='V1S' where id=4; -update noar ti set b0='V1S' where id=4; -update noar tt set v0='QG939T0RCTZZOK45OI' where id=4; -update noar ti set v0='QG939T0RCTZZOK45OI' where id=4; -update noar tt set b1='SNNLYMMNJH' where id=4; -update noar ti set b1='SNNLYMMNJH' where id=4; -update noar tt set v0='HJM1CT8RBSCD2VT9A9S1GQY' where id=4; -update noar ti set v0='HJM1CT8RBSCD2VT9A9S1GQY' where id=4; -update noar tt set b2='Z2JQCR43FP91R0PYW0JWFQ6H84N4' where id=4; -update noar ti set b2='Z2JQCR43FP91R0PYW0JWFQ6H84N4' where id=4; -update noar tt set v0='A' where id=5; -update noar ti set v0='A' where id=5; -update noar tt set b0='4A27OKHX0IXYTLXDQTC1JD0V' where id=5; -update noar ti set b0='4A27OKHX0IXYTLXDQTC1JD0V' where id=5; -update noar tt set v0='BDM4L1S9S6PC' where id=5; -update noar ti set v0='BDM4L1S9S6PC' where id=5; -update noar tt set b1='SWM1UC59OEZF99YJ' where id=5; -update noar ti set b1='SWM1UC59OEZF99YJ' where id=5; -update noar tt set v0='LBA8NGT8OS5AG239F' where id=5; -update noar ti set v0='LBA8NGT8OS5AG239F' where id=5; -update noar tt set b2='6K63LDEO5V857YD65CCJPLPIM78NQHYL' where id=5; -update noar ti set b2='6K63LDEO5V857YD65CCJPLPIM78NQHYL' where id=5; -update noar tt set v0='5B' where id=6; -update noar ti set v0='5B' where id=6; -update noar tt set b0='DE1ZCYS7YGC0RIJSOQ4B1R6VTYR6C' where id=6; -update noar ti set b0='DE1ZCYS7YGC0RIJSOQ4B1R6VTYR6C' where id=6; -update noar tt set v0='TNSW6MX2025GN4FAHQV7VO4CP' where id=6; -update noar ti set v0='TNSW6MX2025GN4FAHQV7VO4CP' where id=6; -update noar tt set b1='AVJW' where id=6; -update noar ti set b1='AVJW' where id=6; -update noar tt set v0='170QOOJCSKFNFBDELG9DU38DB75' where id=6; -update noar ti set v0='170QOOJCSKFNFBDELG9DU38DB75' where id=6; -update noar tt set b2='86B4OYLL764FGSPLRTJW3SSAKLE1YFT' where id=6; -update noar ti set b2='86B4OYLL764FGSPLRTJW3SSAKLE1YFT' where id=6; -update noar tt set v0='I' where id=7; -update noar ti set v0='I' where id=7; -update noar tt set b0='L1X29TN9QIECOHR2UFKYB12DMQV0O' where id=7; -update noar ti set b0='L1X29TN9QIECOHR2UFKYB12DMQV0O' where id=7; -update noar tt set v0='EJRE4JFNAOAK847M55GLUWBNWE' where id=7; -update noar ti set v0='EJRE4JFNAOAK847M55GLUWBNWE' where id=7; -update noar tt set b1='UKTH3YBA3W1771A' where id=7; -update noar ti set b1='UKTH3YBA3W1771A' where id=7; -update noar tt set v0='OWCQ6OYM0BXPA3F18K0ZAZIGHKOD' where id=7; -update noar ti set v0='OWCQ6OYM0BXPA3F18K0ZAZIGHKOD' where id=7; -update noar tt set b2='MJMJIHWB6QJNN8RBO67FHA' where id=7; -update noar ti set b2='MJMJIHWB6QJNN8RBO67FHA' where id=7; -update noar tt set v0='UAIS15X33YK46N' where id=8; -update noar ti set v0='UAIS15X33YK46N' where id=8; -update noar tt set b0='7ATDEB4XSSL8MYRN' where id=8; -update noar ti set b0='7ATDEB4XSSL8MYRN' where id=8; -update noar tt set v0='MV5LZ4XYDJ' where id=8; -update noar ti set v0='MV5LZ4XYDJ' where id=8; -update noar tt set b1='5T' where id=8; -update noar ti set b1='5T' where id=8; -update noar tt set v0='NHS2853EAA' where id=8; -update noar ti set v0='NHS2853EAA' where id=8; -update noar tt set b2='H7F8K8NZOFTNW6X1VJ6LAC' where id=8; -update noar ti set b2='H7F8K8NZOFTNW6X1VJ6LAC' where id=8; -update noar tt set v0='0AE69HV' where id=9; -update noar ti set v0='0AE69HV' where id=9; -update noar tt set b0='RSKND4QZZ8U98W80Q' where id=9; -update noar ti set b0='RSKND4QZZ8U98W80Q' where id=9; -update noar tt set v0='417IGVZ8QR8ER9Q2U' where id=9; -update noar ti set v0='417IGVZ8QR8ER9Q2U' where id=9; -update noar tt set b1='ABR1A1MUSQHULUDYEP7NVNC9ZJ5' where id=9; -update noar ti set b1='ABR1A1MUSQHULUDYEP7NVNC9ZJ5' where id=9; -update noar tt set v0='PQRCI081DPZJGQYNV8KZHN' where id=9; -update noar ti set v0='PQRCI081DPZJGQYNV8KZHN' where id=9; -update noar tt set b2='505DPHW1EXFMR' where id=9; -update noar ti set b2='505DPHW1EXFMR' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - f0 int null, - v0 varchar(32) null, - b0 tinyblob null, - b1 blob null, - b2 longblob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='WDHRS33KNLU32YXJP21A768C' where id=1; -update noar ti set v0='WDHRS33KNLU32YXJP21A768C' where id=1; -update noar tt set b0='MT48Z8JVYERY' where id=1; -update noar ti set b0='MT48Z8JVYERY' where id=1; -update noar tt set v0='IBO854VLI1' where id=1; -update noar ti set v0='IBO854VLI1' where id=1; -update noar tt set b1='MOZBITZUWASZ9JYCMX80' where id=1; -update noar ti set b1='MOZBITZUWASZ9JYCMX80' where id=1; -update noar tt set v0='RIF9NKVN88ENLI75WZ2OXDL92EQQWIW' where id=1; -update noar ti set v0='RIF9NKVN88ENLI75WZ2OXDL92EQQWIW' where id=1; -update noar tt set b2='K8SXDWAT7' where id=1; -update noar ti set b2='K8SXDWAT7' where id=1; -update noar tt set v0='X22TLC9EGL16' where id=2; -update noar ti set v0='X22TLC9EGL16' where id=2; -update noar tt set b0='08L4YG2DL6QRHQ0XO9S84GR' where id=2; -update noar ti set b0='08L4YG2DL6QRHQ0XO9S84GR' where id=2; -update noar tt set v0='ILB75339J325GRXFYRFFWWN9WEDA3' where id=2; -update noar ti set v0='ILB75339J325GRXFYRFFWWN9WEDA3' where id=2; -update noar tt set b1='MIYQRPKROHMWFRPBJH8Z9TFC' where id=2; -update noar ti set b1='MIYQRPKROHMWFRPBJH8Z9TFC' where id=2; -update noar tt set v0='VGZMHDKLJD4' where id=2; -update noar ti set v0='VGZMHDKLJD4' where id=2; -update noar tt set b2='1' where id=2; -update noar ti set b2='1' where id=2; -update noar tt set v0='9TJW89D1O' where id=3; -update noar ti set v0='9TJW89D1O' where id=3; -update noar tt set b0='ADJJ0Q417KDF39P96SLWHVTALR1X' where id=3; -update noar ti set b0='ADJJ0Q417KDF39P96SLWHVTALR1X' where id=3; -update noar tt set v0='P2V' where id=3; -update noar ti set v0='P2V' where id=3; -update noar tt set b1='BMQN6LGMA96C381159TO5AP9K' where id=3; -update noar ti set b1='BMQN6LGMA96C381159TO5AP9K' where id=3; -update noar tt set v0='XHA42IO' where id=3; -update noar ti set v0='XHA42IO' where id=3; -update noar tt set b2='P2W54ORD96LT3SNG84F1' where id=3; -update noar ti set b2='P2W54ORD96LT3SNG84F1' where id=3; -update noar tt set v0='NGGBXXO71SJZOTSQXI1NG6UCHCN91' where id=4; -update noar ti set v0='NGGBXXO71SJZOTSQXI1NG6UCHCN91' where id=4; -update noar tt set b0='L1ZPXHQ1JL' where id=4; -update noar ti set b0='L1ZPXHQ1JL' where id=4; -update noar tt set v0='O6BD1XKCK5FBOY6H54ETMMRN6' where id=4; -update noar ti set v0='O6BD1XKCK5FBOY6H54ETMMRN6' where id=4; -update noar tt set b1='UH3BS8VNNKX3ASL9' where id=4; -update noar ti set b1='UH3BS8VNNKX3ASL9' where id=4; -update noar tt set v0='GPBTD6L8RYD5QCIPK6VD3HZ8IGTUGA' where id=4; -update noar ti set v0='GPBTD6L8RYD5QCIPK6VD3HZ8IGTUGA' where id=4; -update noar tt set b2='9AZIG1SYZ9HG' where id=4; -update noar ti set b2='9AZIG1SYZ9HG' where id=4; -update noar tt set v0='NNZLTH' where id=5; -update noar ti set v0='NNZLTH' where id=5; -update noar tt set b0='94BZ3UMM7SWIRCHEDYFII' where id=5; -update noar ti set b0='94BZ3UMM7SWIRCHEDYFII' where id=5; -update noar tt set v0='HY2UPSP89T4BENWNM21FV5FQDLC' where id=5; -update noar ti set v0='HY2UPSP89T4BENWNM21FV5FQDLC' where id=5; -update noar tt set b1='I1TDJM' where id=5; -update noar ti set b1='I1TDJM' where id=5; -update noar tt set v0='CG6EOB89HUB7RA6RI64JK4O' where id=5; -update noar ti set v0='CG6EOB89HUB7RA6RI64JK4O' where id=5; -update noar tt set b2='ALSO4' where id=5; -update noar ti set b2='ALSO4' where id=5; -update noar tt set v0='UAB5AOOZLXNN7BXTEBDB' where id=6; -update noar ti set v0='UAB5AOOZLXNN7BXTEBDB' where id=6; -update noar tt set b0='I7' where id=6; -update noar ti set b0='I7' where id=6; -update noar tt set v0='8AEU5SN6QL4HZ3ZRY52GX2LBJIL' where id=6; -update noar ti set v0='8AEU5SN6QL4HZ3ZRY52GX2LBJIL' where id=6; -update noar tt set b1='UEPO6' where id=6; -update noar ti set b1='UEPO6' where id=6; -update noar tt set v0='CRK9W1DT' where id=6; -update noar ti set v0='CRK9W1DT' where id=6; -update noar tt set b2='P9Y7TLVVIFW8' where id=6; -update noar ti set b2='P9Y7TLVVIFW8' where id=6; -update noar tt set v0='XT5J63Z5H38I3TQWP3WDUO355V1J' where id=7; -update noar ti set v0='XT5J63Z5H38I3TQWP3WDUO355V1J' where id=7; -update noar tt set b0='20YY3GGQH2Z' where id=7; -update noar ti set b0='20YY3GGQH2Z' where id=7; -update noar tt set v0='ZE09IM92WRDK4FLPU73B8MYQ8KEFZB' where id=7; -update noar ti set v0='ZE09IM92WRDK4FLPU73B8MYQ8KEFZB' where id=7; -update noar tt set b1='LQ72X3FWAC2XW5KJDC3IU9PAUJVR4' where id=7; -update noar ti set b1='LQ72X3FWAC2XW5KJDC3IU9PAUJVR4' where id=7; -update noar tt set v0='U' where id=7; -update noar ti set v0='U' where id=7; -update noar tt set b2='2ROGFED5' where id=7; -update noar ti set b2='2ROGFED5' where id=7; -update noar tt set v0='ZONDL0IBOLZDU9H273IVP74YMNOI3BS9' where id=8; -update noar ti set v0='ZONDL0IBOLZDU9H273IVP74YMNOI3BS9' where id=8; -update noar tt set b0='6O25X1RVAIHQ' where id=8; -update noar ti set b0='6O25X1RVAIHQ' where id=8; -update noar tt set v0='6ZD6IJP43TW' where id=8; -update noar ti set v0='6ZD6IJP43TW' where id=8; -update noar tt set b1='6I0S1FVOFA8RB0' where id=8; -update noar ti set b1='6I0S1FVOFA8RB0' where id=8; -update noar tt set v0='RLXHM9HN2LM7T026A05ITRDTV' where id=8; -update noar ti set v0='RLXHM9HN2LM7T026A05ITRDTV' where id=8; -update noar tt set b2='WGT957DVXGCAA7HT' where id=8; -update noar ti set b2='WGT957DVXGCAA7HT' where id=8; -update noar tt set v0='PASDGS5HN57VJM2UMWJ388' where id=9; -update noar ti set v0='PASDGS5HN57VJM2UMWJ388' where id=9; -update noar tt set b0='R3HCKR5HHB7G591NWRUHM0' where id=9; -update noar ti set b0='R3HCKR5HHB7G591NWRUHM0' where id=9; -update noar tt set v0='3Q4UCD7DOJJ1DQFRTEUVZU4IFB' where id=9; -update noar ti set v0='3Q4UCD7DOJJ1DQFRTEUVZU4IFB' where id=9; -update noar tt set b1='SCW0N5NDPKB0NHK9TJ' where id=9; -update noar ti set b1='SCW0N5NDPKB0NHK9TJ' where id=9; -update noar tt set v0='2YAYTWYB2XF3RBQYMSA78X5WRCWS' where id=9; -update noar ti set v0='2YAYTWYB2XF3RBQYMSA78X5WRCWS' where id=9; -update noar tt set b2='U8W5KH07VVXYT4LRTUAFIPCVII7YPS8F' where id=9; -update noar ti set b2='U8W5KH07VVXYT4LRTUAFIPCVII7YPS8F' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - f0 int null, - v0 varchar(256) null, - b0 tinyblob null, - b1 blob null, - b2 longblob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='NTBA40QD64OZI9SOUMH' where id=1; -update noar ti set v0='NTBA40QD64OZI9SOUMH' where id=1; -update noar tt set b0='Q4LM' where id=1; -update noar ti set b0='Q4LM' where id=1; -update noar tt set v0='UD6C9R8TS93UM62PGW51KV78' where id=1; -update noar ti set v0='UD6C9R8TS93UM62PGW51KV78' where id=1; -update noar tt set b1='WTU0GJ3QIS4M' where id=1; -update noar ti set b1='WTU0GJ3QIS4M' where id=1; -update noar tt set v0='0AJU' where id=1; -update noar ti set v0='0AJU' where id=1; -update noar tt set b2='U803RIBS0KKX3VXBW' where id=1; -update noar ti set b2='U803RIBS0KKX3VXBW' where id=1; -update noar tt set v0='XW82C4PGSSYF8A85Z3TB8LTH07GU' where id=2; -update noar ti set v0='XW82C4PGSSYF8A85Z3TB8LTH07GU' where id=2; -update noar tt set b0='6CWV' where id=2; -update noar ti set b0='6CWV' where id=2; -update noar tt set v0='CPE' where id=2; -update noar ti set v0='CPE' where id=2; -update noar tt set b1='09I17I8ZA4O33EXT4ANNMA0Y5' where id=2; -update noar ti set b1='09I17I8ZA4O33EXT4ANNMA0Y5' where id=2; -update noar tt set v0='R' where id=2; -update noar ti set v0='R' where id=2; -update noar tt set b2='OABDSQSZ14' where id=2; -update noar ti set b2='OABDSQSZ14' where id=2; -update noar tt set v0='LKZ7QI0PERNZQY' where id=3; -update noar ti set v0='LKZ7QI0PERNZQY' where id=3; -update noar tt set b0='RUPT58G4NO9KBTDLO2T7AM7T' where id=3; -update noar ti set b0='RUPT58G4NO9KBTDLO2T7AM7T' where id=3; -update noar tt set v0='1E4REOGM52K' where id=3; -update noar ti set v0='1E4REOGM52K' where id=3; -update noar tt set b1='HYO3NDK2' where id=3; -update noar ti set b1='HYO3NDK2' where id=3; -update noar tt set v0='SC1Z' where id=3; -update noar ti set v0='SC1Z' where id=3; -update noar tt set b2='0' where id=3; -update noar ti set b2='0' where id=3; -update noar tt set v0='C' where id=4; -update noar ti set v0='C' where id=4; -update noar tt set b0='ARJMG8ZXXRKLDXZ' where id=4; -update noar ti set b0='ARJMG8ZXXRKLDXZ' where id=4; -update noar tt set v0='ZP1R308EZ87A82Q' where id=4; -update noar ti set v0='ZP1R308EZ87A82Q' where id=4; -update noar tt set b1='GN6BS59HGGAGDO' where id=4; -update noar ti set b1='GN6BS59HGGAGDO' where id=4; -update noar tt set v0='4DXJ8N43JPC57LX1A8T3OSM28KI' where id=4; -update noar ti set v0='4DXJ8N43JPC57LX1A8T3OSM28KI' where id=4; -update noar tt set b2='G8YQXBW25N' where id=4; -update noar ti set b2='G8YQXBW25N' where id=4; -update noar tt set v0='2679RC1V' where id=5; -update noar ti set v0='2679RC1V' where id=5; -update noar tt set b0='BBOF' where id=5; -update noar ti set b0='BBOF' where id=5; -update noar tt set v0='E2HNQTT8I' where id=5; -update noar ti set v0='E2HNQTT8I' where id=5; -update noar tt set b1='1AHUEVCVNZVQYVO7SX2VZE5' where id=5; -update noar ti set b1='1AHUEVCVNZVQYVO7SX2VZE5' where id=5; -update noar tt set v0='PXAWT9OF9D' where id=5; -update noar ti set v0='PXAWT9OF9D' where id=5; -update noar tt set b2='RUAFNTPYGD3JQGOVWLHLBP8KI' where id=5; -update noar ti set b2='RUAFNTPYGD3JQGOVWLHLBP8KI' where id=5; -update noar tt set v0='6QR3JYQHJLY6MCTG3BLZZ3K4TMJVGE6' where id=6; -update noar ti set v0='6QR3JYQHJLY6MCTG3BLZZ3K4TMJVGE6' where id=6; -update noar tt set b0='C80B6B4RRADS9XYF97LD4XOG' where id=6; -update noar ti set b0='C80B6B4RRADS9XYF97LD4XOG' where id=6; -update noar tt set v0='PJKX0YZ4SSIL' where id=6; -update noar ti set v0='PJKX0YZ4SSIL' where id=6; -update noar tt set b1='HWGFOS06UTONKW7MA9GAC1TXDZZM37PJ' where id=6; -update noar ti set b1='HWGFOS06UTONKW7MA9GAC1TXDZZM37PJ' where id=6; -update noar tt set v0='G' where id=6; -update noar ti set v0='G' where id=6; -update noar tt set b2='H3LS006JS4' where id=6; -update noar ti set b2='H3LS006JS4' where id=6; -update noar tt set v0='94KUF' where id=7; -update noar ti set v0='94KUF' where id=7; -update noar tt set b0='MH3ETLZNK4HLK68QAQZRRNO5' where id=7; -update noar ti set b0='MH3ETLZNK4HLK68QAQZRRNO5' where id=7; -update noar tt set v0='SPAFV9SF4ZQTUSGFRFF1A9' where id=7; -update noar ti set v0='SPAFV9SF4ZQTUSGFRFF1A9' where id=7; -update noar tt set b1='2' where id=7; -update noar ti set b1='2' where id=7; -update noar tt set v0='35RV386OX75TTP' where id=7; -update noar ti set v0='35RV386OX75TTP' where id=7; -update noar tt set b2='T3JEQU9QQ6P1XSXK3SJ6I' where id=7; -update noar ti set b2='T3JEQU9QQ6P1XSXK3SJ6I' where id=7; -update noar tt set v0='J8KONOV8F4PE' where id=8; -update noar ti set v0='J8KONOV8F4PE' where id=8; -update noar tt set b0='DA56BXX0MSX6PZDCI3IE' where id=8; -update noar ti set b0='DA56BXX0MSX6PZDCI3IE' where id=8; -update noar tt set v0='LDHS1OLTXTVZA852X' where id=8; -update noar ti set v0='LDHS1OLTXTVZA852X' where id=8; -update noar tt set b1='244JSQ3DWZ4B6ICJO2YUANJPZ' where id=8; -update noar ti set b1='244JSQ3DWZ4B6ICJO2YUANJPZ' where id=8; -update noar tt set v0='93QP6V6E5R21NZFPEN7JC' where id=8; -update noar ti set v0='93QP6V6E5R21NZFPEN7JC' where id=8; -update noar tt set b2='TIQQF5TEZ' where id=8; -update noar ti set b2='TIQQF5TEZ' where id=8; -update noar tt set v0='58JV6TXHDF4W62HWKHEUSZMZ' where id=9; -update noar ti set v0='58JV6TXHDF4W62HWKHEUSZMZ' where id=9; -update noar tt set b0='Y917I60YNKO2V7DERIC0OGE62J9RR' where id=9; -update noar ti set b0='Y917I60YNKO2V7DERIC0OGE62J9RR' where id=9; -update noar tt set v0='0UHU3' where id=9; -update noar ti set v0='0UHU3' where id=9; -update noar tt set b1='Z5U4DA9C8E2FSF2MSG0KJ' where id=9; -update noar ti set b1='Z5U4DA9C8E2FSF2MSG0KJ' where id=9; -update noar tt set v0='7G34N83XULZK89V8MKVKHJEY' where id=9; -update noar ti set v0='7G34N83XULZK89V8MKVKHJEY' where id=9; -update noar tt set b2='708DN748AGPTIB4YK' where id=9; -update noar ti set b2='708DN748AGPTIB4YK' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - f0 int not null, - v0 varchar(32) not null, - b0 tinyblob not null, - b1 blob not null, - b2 longblob not null -) engine=tokudb; -insert into tt values (1,0,'','','',''); -insert into tt values (2,0,'','','',''); -insert into tt values (3,0,'','','',''); -insert into tt values (4,0,'','','',''); -insert into tt values (5,0,'','','',''); -insert into tt values (6,0,'','','',''); -insert into tt values (7,0,'','','',''); -insert into tt values (8,0,'','','',''); -insert into tt values (9,0,'','','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='TU6AGUZJNNAZ7MW2N2UQ' where id=1; -update noar ti set v0='TU6AGUZJNNAZ7MW2N2UQ' where id=1; -update noar tt set b0='FL9RXSX' where id=1; -update noar ti set b0='FL9RXSX' where id=1; -update noar tt set v0='3K58VLTO58QYNOJNLHCV3LNZS' where id=1; -update noar ti set v0='3K58VLTO58QYNOJNLHCV3LNZS' where id=1; -update noar tt set b1='NN19J06QIO0UI8' where id=1; -update noar ti set b1='NN19J06QIO0UI8' where id=1; -update noar tt set v0='0671GVZ45D' where id=1; -update noar ti set v0='0671GVZ45D' where id=1; -update noar tt set b2='VOQLA6NMSO7XKGF6Y4CMS' where id=1; -update noar ti set b2='VOQLA6NMSO7XKGF6Y4CMS' where id=1; -update noar tt set v0='4MQ27LH8MN1F1DC9HZMDIMOKX0P' where id=2; -update noar ti set v0='4MQ27LH8MN1F1DC9HZMDIMOKX0P' where id=2; -update noar tt set b0='DGOOLVFI1' where id=2; -update noar ti set b0='DGOOLVFI1' where id=2; -update noar tt set v0='GJPSHLI' where id=2; -update noar ti set v0='GJPSHLI' where id=2; -update noar tt set b1='BZOXOYVV4BDOERKF4UY' where id=2; -update noar ti set b1='BZOXOYVV4BDOERKF4UY' where id=2; -update noar tt set v0='9BT3K9GY6LUSENS0J6UVDQQ5IGO' where id=2; -update noar ti set v0='9BT3K9GY6LUSENS0J6UVDQQ5IGO' where id=2; -update noar tt set b2='0DFSFATOIB' where id=2; -update noar ti set b2='0DFSFATOIB' where id=2; -update noar tt set v0='2' where id=3; -update noar ti set v0='2' where id=3; -update noar tt set b0='ETKXJ9P0V138UQLZ6' where id=3; -update noar ti set b0='ETKXJ9P0V138UQLZ6' where id=3; -update noar tt set v0='GYE2910FGUIVYQDYI663P4LW2LK3S' where id=3; -update noar ti set v0='GYE2910FGUIVYQDYI663P4LW2LK3S' where id=3; -update noar tt set b1='L' where id=3; -update noar ti set b1='L' where id=3; -update noar tt set v0='VAARRI' where id=3; -update noar ti set v0='VAARRI' where id=3; -update noar tt set b2='A' where id=3; -update noar ti set b2='A' where id=3; -update noar tt set v0='HWUE5JK9PRW27NAZV' where id=4; -update noar ti set v0='HWUE5JK9PRW27NAZV' where id=4; -update noar tt set b0='J5XQ6ISFQGK0MCXS3' where id=4; -update noar ti set b0='J5XQ6ISFQGK0MCXS3' where id=4; -update noar tt set v0='Z5STV9X' where id=4; -update noar ti set v0='Z5STV9X' where id=4; -update noar tt set b1='SEUNDD' where id=4; -update noar ti set b1='SEUNDD' where id=4; -update noar tt set v0='TQ0RW9DNG' where id=4; -update noar ti set v0='TQ0RW9DNG' where id=4; -update noar tt set b2='TPG9ZBD5S38EB' where id=4; -update noar ti set b2='TPG9ZBD5S38EB' where id=4; -update noar tt set v0='Y026IPMF3FPDEVS8DRU' where id=5; -update noar ti set v0='Y026IPMF3FPDEVS8DRU' where id=5; -update noar tt set b0='E4F0GXRULUMQ4CD8X08F50NJ' where id=5; -update noar ti set b0='E4F0GXRULUMQ4CD8X08F50NJ' where id=5; -update noar tt set v0='Q8ITIU8FFQMY8VI8YAIYX9JE473' where id=5; -update noar ti set v0='Q8ITIU8FFQMY8VI8YAIYX9JE473' where id=5; -update noar tt set b1='B85Z57UMWSFJLIIRM18FL4153L3' where id=5; -update noar ti set b1='B85Z57UMWSFJLIIRM18FL4153L3' where id=5; -update noar tt set v0='NE6IRZS' where id=5; -update noar ti set v0='NE6IRZS' where id=5; -update noar tt set b2='GKMVZB26W90COI5NIYXQ4G9IS9H5O1' where id=5; -update noar ti set b2='GKMVZB26W90COI5NIYXQ4G9IS9H5O1' where id=5; -update noar tt set v0='KC41VLR3T0' where id=6; -update noar ti set v0='KC41VLR3T0' where id=6; -update noar tt set b0='FLBLCNSV' where id=6; -update noar ti set b0='FLBLCNSV' where id=6; -update noar tt set v0='5ME6W4JJSG5GPTTPNK2TCURNWP' where id=6; -update noar ti set v0='5ME6W4JJSG5GPTTPNK2TCURNWP' where id=6; -update noar tt set b1='UA11OKFXPVQERX2GT3NQ1ZKF' where id=6; -update noar ti set b1='UA11OKFXPVQERX2GT3NQ1ZKF' where id=6; -update noar tt set v0='4B7FQBLJEU9KMAE7RHCJU8' where id=6; -update noar ti set v0='4B7FQBLJEU9KMAE7RHCJU8' where id=6; -update noar tt set b2='W60F2' where id=6; -update noar ti set b2='W60F2' where id=6; -update noar tt set v0='M' where id=7; -update noar ti set v0='M' where id=7; -update noar tt set b0='4W' where id=7; -update noar ti set b0='4W' where id=7; -update noar tt set v0='6FEVIL132IP5NS' where id=7; -update noar ti set v0='6FEVIL132IP5NS' where id=7; -update noar tt set b1='2PREOOKF7I' where id=7; -update noar ti set b1='2PREOOKF7I' where id=7; -update noar tt set v0='CD3DF9GLUASVAW1H' where id=7; -update noar ti set v0='CD3DF9GLUASVAW1H' where id=7; -update noar tt set b2='CGPUGUIZO7IPE' where id=7; -update noar ti set b2='CGPUGUIZO7IPE' where id=7; -update noar tt set v0='695UXWCGK' where id=8; -update noar ti set v0='695UXWCGK' where id=8; -update noar tt set b0='JOVPMBRAQF' where id=8; -update noar ti set b0='JOVPMBRAQF' where id=8; -update noar tt set v0='FC6NCXPX7TCMV42ODDUFK5UT6F7Q' where id=8; -update noar ti set v0='FC6NCXPX7TCMV42ODDUFK5UT6F7Q' where id=8; -update noar tt set b1='ETOJUFCE2YVPNBX7J' where id=8; -update noar ti set b1='ETOJUFCE2YVPNBX7J' where id=8; -update noar tt set v0='2' where id=8; -update noar ti set v0='2' where id=8; -update noar tt set b2='B7L9C6VIY9H94QVAADP6XXF6NSO' where id=8; -update noar ti set b2='B7L9C6VIY9H94QVAADP6XXF6NSO' where id=8; -update noar tt set v0='6KGBP' where id=9; -update noar ti set v0='6KGBP' where id=9; -update noar tt set b0='MFJNPF81H' where id=9; -update noar ti set b0='MFJNPF81H' where id=9; -update noar tt set v0='QHZ1CW3VWA' where id=9; -update noar ti set v0='QHZ1CW3VWA' where id=9; -update noar tt set b1='60HGFVDQ9' where id=9; -update noar ti set b1='60HGFVDQ9' where id=9; -update noar tt set v0='7JXN5T3AEDJKU2H3MW8' where id=9; -update noar ti set v0='7JXN5T3AEDJKU2H3MW8' where id=9; -update noar tt set b2='A9' where id=9; -update noar ti set b2='A9' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - f0 int not null, - v0 varchar(256) not null, - b0 tinyblob not null, - b1 blob not null, - b2 longblob not null -) engine=tokudb; -insert into tt values (1,0,'','','',''); -insert into tt values (2,0,'','','',''); -insert into tt values (3,0,'','','',''); -insert into tt values (4,0,'','','',''); -insert into tt values (5,0,'','','',''); -insert into tt values (6,0,'','','',''); -insert into tt values (7,0,'','','',''); -insert into tt values (8,0,'','','',''); -insert into tt values (9,0,'','','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='ML14I87M52OI3LOV' where id=1; -update noar ti set v0='ML14I87M52OI3LOV' where id=1; -update noar tt set b0='T2LNXF' where id=1; -update noar ti set b0='T2LNXF' where id=1; -update noar tt set v0='COW30MX' where id=1; -update noar ti set v0='COW30MX' where id=1; -update noar tt set b1='56GS6CYR054HPMAGJ4RH7J' where id=1; -update noar ti set b1='56GS6CYR054HPMAGJ4RH7J' where id=1; -update noar tt set v0='O8V74TFYBTIJY5HBNFZRK' where id=1; -update noar ti set v0='O8V74TFYBTIJY5HBNFZRK' where id=1; -update noar tt set b2='R2HV8TFSBPO9H25DZC4NDJNBKBK' where id=1; -update noar ti set b2='R2HV8TFSBPO9H25DZC4NDJNBKBK' where id=1; -update noar tt set v0='0M945P8TLQCZA5' where id=2; -update noar ti set v0='0M945P8TLQCZA5' where id=2; -update noar tt set b0='TMQSAXK3O6CV2VWUN8EGU' where id=2; -update noar ti set b0='TMQSAXK3O6CV2VWUN8EGU' where id=2; -update noar tt set v0='2BL1YR8ICTX9QJ91Y1P0V0S0FLXCAE' where id=2; -update noar ti set v0='2BL1YR8ICTX9QJ91Y1P0V0S0FLXCAE' where id=2; -update noar tt set b1='CSP8Y9V9E84MJLYWIYPF25JG87L0II' where id=2; -update noar ti set b1='CSP8Y9V9E84MJLYWIYPF25JG87L0II' where id=2; -update noar tt set v0='QNY1AVCIOXDBR0' where id=2; -update noar ti set v0='QNY1AVCIOXDBR0' where id=2; -update noar tt set b2='KP1CKU61O697A01X1EBIHXJ' where id=2; -update noar ti set b2='KP1CKU61O697A01X1EBIHXJ' where id=2; -update noar tt set v0='R95XHB9Z4X' where id=3; -update noar ti set v0='R95XHB9Z4X' where id=3; -update noar tt set b0='W978LDZMI4MB' where id=3; -update noar ti set b0='W978LDZMI4MB' where id=3; -update noar tt set v0='P5F1OZWC0LD38GND4D6I4M4URG3J2R' where id=3; -update noar ti set v0='P5F1OZWC0LD38GND4D6I4M4URG3J2R' where id=3; -update noar tt set b1='QXAQYTQZI' where id=3; -update noar ti set b1='QXAQYTQZI' where id=3; -update noar tt set v0='E7BQ2O7FO169' where id=3; -update noar ti set v0='E7BQ2O7FO169' where id=3; -update noar tt set b2='QE79JY1OL6F8SBI698' where id=3; -update noar ti set b2='QE79JY1OL6F8SBI698' where id=3; -update noar tt set v0='731ZKG3HSTTV5Q3C' where id=4; -update noar ti set v0='731ZKG3HSTTV5Q3C' where id=4; -update noar tt set b0='YQRTSFL4I6VQT9YSPP9ZUX63VVPCJ' where id=4; -update noar ti set b0='YQRTSFL4I6VQT9YSPP9ZUX63VVPCJ' where id=4; -update noar tt set v0='L3HTQW1NYIC0JVIW07' where id=4; -update noar ti set v0='L3HTQW1NYIC0JVIW07' where id=4; -update noar tt set b1='QNQT640' where id=4; -update noar ti set b1='QNQT640' where id=4; -update noar tt set v0='9EN0UFDTMKH9Z8QXMC6GIO' where id=4; -update noar ti set v0='9EN0UFDTMKH9Z8QXMC6GIO' where id=4; -update noar tt set b2='Q2AJ9GTIIEGIP4XYJXGUZGMSU' where id=4; -update noar ti set b2='Q2AJ9GTIIEGIP4XYJXGUZGMSU' where id=4; -update noar tt set v0='MSRAE8U85OQ6DH4GR' where id=5; -update noar ti set v0='MSRAE8U85OQ6DH4GR' where id=5; -update noar tt set b0='WKM' where id=5; -update noar ti set b0='WKM' where id=5; -update noar tt set v0='TC3S69MW6Y' where id=5; -update noar ti set v0='TC3S69MW6Y' where id=5; -update noar tt set b1='VPFE729THU' where id=5; -update noar ti set b1='VPFE729THU' where id=5; -update noar tt set v0='RQPXLU' where id=5; -update noar ti set v0='RQPXLU' where id=5; -update noar tt set b2='DPQ5VOOHOQH991K91M' where id=5; -update noar ti set b2='DPQ5VOOHOQH991K91M' where id=5; -update noar tt set v0='578R66NDCDOTU7K3E6Q' where id=6; -update noar ti set v0='578R66NDCDOTU7K3E6Q' where id=6; -update noar tt set b0='NL3QLUXO30S9YS8U84E23MVDYFIHZI' where id=6; -update noar ti set b0='NL3QLUXO30S9YS8U84E23MVDYFIHZI' where id=6; -update noar tt set v0='UND1DXNIOZ3A3XXBJLP' where id=6; -update noar ti set v0='UND1DXNIOZ3A3XXBJLP' where id=6; -update noar tt set b1='XKRDXYOAD7C7JG12QWG8E' where id=6; -update noar ti set b1='XKRDXYOAD7C7JG12QWG8E' where id=6; -update noar tt set v0='Y0XWR' where id=6; -update noar ti set v0='Y0XWR' where id=6; -update noar tt set b2='CFVG5P6V32N0BQB' where id=6; -update noar ti set b2='CFVG5P6V32N0BQB' where id=6; -update noar tt set v0='A0JJQPEMKG9I0YM8RQ0S0W' where id=7; -update noar ti set v0='A0JJQPEMKG9I0YM8RQ0S0W' where id=7; -update noar tt set b0='J616TJ3PI' where id=7; -update noar ti set b0='J616TJ3PI' where id=7; -update noar tt set v0='TEW3GCB8J7NELIG8BFNO44BU61E4' where id=7; -update noar ti set v0='TEW3GCB8J7NELIG8BFNO44BU61E4' where id=7; -update noar tt set b1='SD7JBTBO4MFD' where id=7; -update noar ti set b1='SD7JBTBO4MFD' where id=7; -update noar tt set v0='0E4S75CQ' where id=7; -update noar ti set v0='0E4S75CQ' where id=7; -update noar tt set b2='TYPD5454GII' where id=7; -update noar ti set b2='TYPD5454GII' where id=7; -update noar tt set v0='7B3DJPI7UW986UWKMNW9SF0MKDEEWT' where id=8; -update noar ti set v0='7B3DJPI7UW986UWKMNW9SF0MKDEEWT' where id=8; -update noar tt set b0='U' where id=8; -update noar ti set b0='U' where id=8; -update noar tt set v0='RRHU3ZNOK3TECPWR8M4PKTGZBN2TQ' where id=8; -update noar ti set v0='RRHU3ZNOK3TECPWR8M4PKTGZBN2TQ' where id=8; -update noar tt set b1='IF5Q7D7386XB5W702' where id=8; -update noar ti set b1='IF5Q7D7386XB5W702' where id=8; -update noar tt set v0='HZOWIY1VLZ2RMP' where id=8; -update noar ti set v0='HZOWIY1VLZ2RMP' where id=8; -update noar tt set b2='2E' where id=8; -update noar ti set b2='2E' where id=8; -update noar tt set v0='D70ZQ2CR172AUAH9' where id=9; -update noar ti set v0='D70ZQ2CR172AUAH9' where id=9; -update noar tt set b0='U84LRLN262APJLEUPBEBDHY' where id=9; -update noar ti set b0='U84LRLN262APJLEUPBEBDHY' where id=9; -update noar tt set v0='RHCMI' where id=9; -update noar ti set v0='RHCMI' where id=9; -update noar tt set b1='MWM' where id=9; -update noar ti set b1='MWM' where id=9; -update noar tt set v0='UFHKTSEXQ67JF8HUYH1DTB' where id=9; -update noar ti set v0='UFHKTSEXQ67JF8HUYH1DTB' where id=9; -update noar tt set b2='MDU8' where id=9; -update noar ti set b2='MDU8' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - f0 int null, - v0 varchar(32) null, - b0 tinyblob null, - b1 mediumblob null, - b2 tinyblob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='1VRMFX4G4AFLE4E5MY80XC5' where id=1; -update noar ti set v0='1VRMFX4G4AFLE4E5MY80XC5' where id=1; -update noar tt set b0='95WWKVA6F9FI8Q' where id=1; -update noar ti set b0='95WWKVA6F9FI8Q' where id=1; -update noar tt set v0='Q92TF1A61BHBRNJS7EXPI2I6' where id=1; -update noar ti set v0='Q92TF1A61BHBRNJS7EXPI2I6' where id=1; -update noar tt set b1='6TQB8PLTSONSD5TSE5NWM' where id=1; -update noar ti set b1='6TQB8PLTSONSD5TSE5NWM' where id=1; -update noar tt set v0='7QEMA86' where id=1; -update noar ti set v0='7QEMA86' where id=1; -update noar tt set b2='45QK8EPONXV' where id=1; -update noar ti set b2='45QK8EPONXV' where id=1; -update noar tt set v0='WZUKY9G5QH1KS4O05TN9QS5HZVJU6FQ' where id=2; -update noar ti set v0='WZUKY9G5QH1KS4O05TN9QS5HZVJU6FQ' where id=2; -update noar tt set b0='Z5OFP9S8' where id=2; -update noar ti set b0='Z5OFP9S8' where id=2; -update noar tt set v0='TU3STU3KUFBCFYIRYWEU' where id=2; -update noar ti set v0='TU3STU3KUFBCFYIRYWEU' where id=2; -update noar tt set b1='BRE0DWJNFEWE9YRH' where id=2; -update noar ti set b1='BRE0DWJNFEWE9YRH' where id=2; -update noar tt set v0='J7IEQE5703' where id=2; -update noar ti set v0='J7IEQE5703' where id=2; -update noar tt set b2='C107VTIDCQ8' where id=2; -update noar ti set b2='C107VTIDCQ8' where id=2; -update noar tt set v0='TCQLXXI8L80Z51K3C52O1P42SK4HD' where id=3; -update noar ti set v0='TCQLXXI8L80Z51K3C52O1P42SK4HD' where id=3; -update noar tt set b0='NSR9322' where id=3; -update noar ti set b0='NSR9322' where id=3; -update noar tt set v0='ZUZPG4LPXP723W5XIP3E6WEPVJAV' where id=3; -update noar ti set v0='ZUZPG4LPXP723W5XIP3E6WEPVJAV' where id=3; -update noar tt set b1='01PAEMGO52JMRX3EQQQPDQJ' where id=3; -update noar ti set b1='01PAEMGO52JMRX3EQQQPDQJ' where id=3; -update noar tt set v0='EK47LGXJP7731RW5V4Y' where id=3; -update noar ti set v0='EK47LGXJP7731RW5V4Y' where id=3; -update noar tt set b2='TEQLRLO0I72QHO1QMBI6DVKX1I' where id=3; -update noar ti set b2='TEQLRLO0I72QHO1QMBI6DVKX1I' where id=3; -update noar tt set v0='93OREX1ON9856K418AN8THCUHBO9VKC' where id=4; -update noar ti set v0='93OREX1ON9856K418AN8THCUHBO9VKC' where id=4; -update noar tt set b0='H21OQD37G4AVZDPEQ' where id=4; -update noar ti set b0='H21OQD37G4AVZDPEQ' where id=4; -update noar tt set v0='01FX4KUTJAN7' where id=4; -update noar ti set v0='01FX4KUTJAN7' where id=4; -update noar tt set b1='S' where id=4; -update noar ti set b1='S' where id=4; -update noar tt set v0='N8W' where id=4; -update noar ti set v0='N8W' where id=4; -update noar tt set b2='C67OG9AQW2XHSX788EC8M7F6QCM' where id=4; -update noar ti set b2='C67OG9AQW2XHSX788EC8M7F6QCM' where id=4; -update noar tt set v0='K6LC3SY0XEENCU4K6ZZ' where id=5; -update noar ti set v0='K6LC3SY0XEENCU4K6ZZ' where id=5; -update noar tt set b0='0974UPAJ3XD891G0' where id=5; -update noar ti set b0='0974UPAJ3XD891G0' where id=5; -update noar tt set v0='5BKCZY9NSXADUMATIWDY' where id=5; -update noar ti set v0='5BKCZY9NSXADUMATIWDY' where id=5; -update noar tt set b1='4T055CZ9LV8JJSWRNQBY379G' where id=5; -update noar ti set b1='4T055CZ9LV8JJSWRNQBY379G' where id=5; -update noar tt set v0='Z8VLTI10CF49ZQWN3' where id=5; -update noar ti set v0='Z8VLTI10CF49ZQWN3' where id=5; -update noar tt set b2='E7KJVJ33LKFN' where id=5; -update noar ti set b2='E7KJVJ33LKFN' where id=5; -update noar tt set v0='TZF1F8LC9NF3XGPMEGYJOP5YA' where id=6; -update noar ti set v0='TZF1F8LC9NF3XGPMEGYJOP5YA' where id=6; -update noar tt set b0='Y1HFKWOK2H7E6FQOIFXM3L3PDH9718J' where id=6; -update noar ti set b0='Y1HFKWOK2H7E6FQOIFXM3L3PDH9718J' where id=6; -update noar tt set v0='X4LTQQIHHNBXYLEUQ89C528Z76' where id=6; -update noar ti set v0='X4LTQQIHHNBXYLEUQ89C528Z76' where id=6; -update noar tt set b1='PSI9VQIR0IGSZ5KYE5QH164X' where id=6; -update noar ti set b1='PSI9VQIR0IGSZ5KYE5QH164X' where id=6; -update noar tt set v0='B8CYNXMT0RY75ZZMJN' where id=6; -update noar ti set v0='B8CYNXMT0RY75ZZMJN' where id=6; -update noar tt set b2='PAO8I6IZL5VGPUMB2TICK86C9UE00' where id=6; -update noar ti set b2='PAO8I6IZL5VGPUMB2TICK86C9UE00' where id=6; -update noar tt set v0='GGHTK97KZU34ISSAS7' where id=7; -update noar ti set v0='GGHTK97KZU34ISSAS7' where id=7; -update noar tt set b0='JRDP0EG' where id=7; -update noar ti set b0='JRDP0EG' where id=7; -update noar tt set v0='AF71GQ22W2Y5GYZT8EU4XKWHVHWBB' where id=7; -update noar ti set v0='AF71GQ22W2Y5GYZT8EU4XKWHVHWBB' where id=7; -update noar tt set b1='L1V93SPN2HITIYAN6P77YC' where id=7; -update noar ti set b1='L1V93SPN2HITIYAN6P77YC' where id=7; -update noar tt set v0='0RAPR9TJY' where id=7; -update noar ti set v0='0RAPR9TJY' where id=7; -update noar tt set b2='UPN14PREIP49OWNVE0' where id=7; -update noar ti set b2='UPN14PREIP49OWNVE0' where id=7; -update noar tt set v0='VQHCIUT0L87M8I5U06PJ' where id=8; -update noar ti set v0='VQHCIUT0L87M8I5U06PJ' where id=8; -update noar tt set b0='L7RBJILG0TX4QL2' where id=8; -update noar ti set b0='L7RBJILG0TX4QL2' where id=8; -update noar tt set v0='Z3ZW2I4VVBS5JD70Z48R6C7' where id=8; -update noar ti set v0='Z3ZW2I4VVBS5JD70Z48R6C7' where id=8; -update noar tt set b1='2DZKW' where id=8; -update noar ti set b1='2DZKW' where id=8; -update noar tt set v0='52KZVFC596F1WJNAKYE9CX25' where id=8; -update noar ti set v0='52KZVFC596F1WJNAKYE9CX25' where id=8; -update noar tt set b2='WEBHH5442FRO7W93AKRFLKP0' where id=8; -update noar ti set b2='WEBHH5442FRO7W93AKRFLKP0' where id=8; -update noar tt set v0='DZX0S0Q' where id=9; -update noar ti set v0='DZX0S0Q' where id=9; -update noar tt set b0='PCI0KO7' where id=9; -update noar ti set b0='PCI0KO7' where id=9; -update noar tt set v0='30RGI' where id=9; -update noar ti set v0='30RGI' where id=9; -update noar tt set b1='40SDA' where id=9; -update noar ti set b1='40SDA' where id=9; -update noar tt set v0='SZ16SPALTGY95V1QK3VWPYJXPZOHM' where id=9; -update noar ti set v0='SZ16SPALTGY95V1QK3VWPYJXPZOHM' where id=9; -update noar tt set b2='AEMV' where id=9; -update noar ti set b2='AEMV' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - f0 int null, - v0 varchar(256) null, - b0 tinyblob null, - b1 mediumblob null, - b2 tinyblob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='2W15VZFAGXO1IC20U6K3SN8' where id=1; -update noar ti set v0='2W15VZFAGXO1IC20U6K3SN8' where id=1; -update noar tt set b0='8EF9STP63WTU0KLDZYIH8UW0675OP7CV' where id=1; -update noar ti set b0='8EF9STP63WTU0KLDZYIH8UW0675OP7CV' where id=1; -update noar tt set v0='9Y1PSK6UUVNV8BYG0YIDEP2Q7BY' where id=1; -update noar ti set v0='9Y1PSK6UUVNV8BYG0YIDEP2Q7BY' where id=1; -update noar tt set b1='2AFZH5L727JLNJ8KZL36F9' where id=1; -update noar ti set b1='2AFZH5L727JLNJ8KZL36F9' where id=1; -update noar tt set v0='BIQB6B7FHO' where id=1; -update noar ti set v0='BIQB6B7FHO' where id=1; -update noar tt set b2='GL6LI1VFUX5IH' where id=1; -update noar ti set b2='GL6LI1VFUX5IH' where id=1; -update noar tt set v0='0PWUOCW9D37V21PQCSVP49FR' where id=2; -update noar ti set v0='0PWUOCW9D37V21PQCSVP49FR' where id=2; -update noar tt set b0='E0KJHOP8OJ0ENAJT' where id=2; -update noar ti set b0='E0KJHOP8OJ0ENAJT' where id=2; -update noar tt set v0='N3DOFVD7SJSY975RY53ZLC2CIZ6W' where id=2; -update noar ti set v0='N3DOFVD7SJSY975RY53ZLC2CIZ6W' where id=2; -update noar tt set b1='1CUKK1JN2WM0NLZ8' where id=2; -update noar ti set b1='1CUKK1JN2WM0NLZ8' where id=2; -update noar tt set v0='7K82' where id=2; -update noar ti set v0='7K82' where id=2; -update noar tt set b2='OOTEM3T1FZPX4D697UOEY5QX' where id=2; -update noar ti set b2='OOTEM3T1FZPX4D697UOEY5QX' where id=2; -update noar tt set v0='62HM5Y6NQTGHLEVYLZGIJ' where id=3; -update noar ti set v0='62HM5Y6NQTGHLEVYLZGIJ' where id=3; -update noar tt set b0='86V67W2YUT' where id=3; -update noar ti set b0='86V67W2YUT' where id=3; -update noar tt set v0='P' where id=3; -update noar ti set v0='P' where id=3; -update noar tt set b1='O5RQZC' where id=3; -update noar ti set b1='O5RQZC' where id=3; -update noar tt set v0='945WIBXTP57Y' where id=3; -update noar ti set v0='945WIBXTP57Y' where id=3; -update noar tt set b2='8SKKNV1X48PYBW' where id=3; -update noar ti set b2='8SKKNV1X48PYBW' where id=3; -update noar tt set v0='O1454YCYQHV4LOE1JYI' where id=4; -update noar ti set v0='O1454YCYQHV4LOE1JYI' where id=4; -update noar tt set b0='VG' where id=4; -update noar ti set b0='VG' where id=4; -update noar tt set v0='3R0ORL518D133GW7RGUD1JU8L' where id=4; -update noar ti set v0='3R0ORL518D133GW7RGUD1JU8L' where id=4; -update noar tt set b1='R1CKQ46TYP66UY8G' where id=4; -update noar ti set b1='R1CKQ46TYP66UY8G' where id=4; -update noar tt set v0='B8J8X695GO46DTG72M4MD0CUCSOXJ7J' where id=4; -update noar ti set v0='B8J8X695GO46DTG72M4MD0CUCSOXJ7J' where id=4; -update noar tt set b2='U4JE' where id=4; -update noar ti set b2='U4JE' where id=4; -update noar tt set v0='DVVZN8SWPMJA51SH69TM' where id=5; -update noar ti set v0='DVVZN8SWPMJA51SH69TM' where id=5; -update noar tt set b0='7WAOKHFI0TTXPMT10T5NFW5' where id=5; -update noar ti set b0='7WAOKHFI0TTXPMT10T5NFW5' where id=5; -update noar tt set v0='85VVXM0YGWDTT051NDPSVR2R6O' where id=5; -update noar ti set v0='85VVXM0YGWDTT051NDPSVR2R6O' where id=5; -update noar tt set b1='2BAZF' where id=5; -update noar ti set b1='2BAZF' where id=5; -update noar tt set v0='A1Z9ULRVF5LIXAYC6NC8J6K0PYM1DPP' where id=5; -update noar ti set v0='A1Z9ULRVF5LIXAYC6NC8J6K0PYM1DPP' where id=5; -update noar tt set b2='FV0L1XNPL8PKXJJ7F' where id=5; -update noar ti set b2='FV0L1XNPL8PKXJJ7F' where id=5; -update noar tt set v0='7MNF3R3DB2I051ETSS1K57' where id=6; -update noar ti set v0='7MNF3R3DB2I051ETSS1K57' where id=6; -update noar tt set b0='PHTK3TVC5DV1KRTKY4AMVY793' where id=6; -update noar ti set b0='PHTK3TVC5DV1KRTKY4AMVY793' where id=6; -update noar tt set v0='Z7QR3SPPNVA7ZWWNCMFYKOC' where id=6; -update noar ti set v0='Z7QR3SPPNVA7ZWWNCMFYKOC' where id=6; -update noar tt set b1='4P8ESDAC4UL' where id=6; -update noar ti set b1='4P8ESDAC4UL' where id=6; -update noar tt set v0='AYHVDJ9Z69E68F8G1I82BZQF' where id=6; -update noar ti set v0='AYHVDJ9Z69E68F8G1I82BZQF' where id=6; -update noar tt set b2='B7G7E9ZZJEO2LK66A' where id=6; -update noar ti set b2='B7G7E9ZZJEO2LK66A' where id=6; -update noar tt set v0='SHS2CK4' where id=7; -update noar ti set v0='SHS2CK4' where id=7; -update noar tt set b0='9FMVEOKOHMDLHXPP' where id=7; -update noar ti set b0='9FMVEOKOHMDLHXPP' where id=7; -update noar tt set v0='EWEL' where id=7; -update noar ti set v0='EWEL' where id=7; -update noar tt set b1='53NGDLL6TPJ' where id=7; -update noar ti set b1='53NGDLL6TPJ' where id=7; -update noar tt set v0='BCJP0' where id=7; -update noar ti set v0='BCJP0' where id=7; -update noar tt set b2='GMEY' where id=7; -update noar ti set b2='GMEY' where id=7; -update noar tt set v0='6DMI660WV9OQ0H7YO7YNRFP8UMOJA8NJ' where id=8; -update noar ti set v0='6DMI660WV9OQ0H7YO7YNRFP8UMOJA8NJ' where id=8; -update noar tt set b0='YZPW8BPV4K25EII9QH72P1' where id=8; -update noar ti set b0='YZPW8BPV4K25EII9QH72P1' where id=8; -update noar tt set v0='JGE0' where id=8; -update noar ti set v0='JGE0' where id=8; -update noar tt set b1='5D5EM68LJM8NOT0APW1VW56MPT' where id=8; -update noar ti set b1='5D5EM68LJM8NOT0APW1VW56MPT' where id=8; -update noar tt set v0='R2I5CBP4OPLTOO9LI3O' where id=8; -update noar ti set v0='R2I5CBP4OPLTOO9LI3O' where id=8; -update noar tt set b2='9RL6EL0WFKYGLGQR26' where id=8; -update noar ti set b2='9RL6EL0WFKYGLGQR26' where id=8; -update noar tt set v0='GBNPRCQ2ZGKE7KWD25D087JLSK1SEG3' where id=9; -update noar ti set v0='GBNPRCQ2ZGKE7KWD25D087JLSK1SEG3' where id=9; -update noar tt set b0='02VBYZ4TEGFVJ6953O7500B5UI13NZ' where id=9; -update noar ti set b0='02VBYZ4TEGFVJ6953O7500B5UI13NZ' where id=9; -update noar tt set v0='ACZS0HW6KVOPED80B' where id=9; -update noar ti set v0='ACZS0HW6KVOPED80B' where id=9; -update noar tt set b1='65L4NEL' where id=9; -update noar ti set b1='65L4NEL' where id=9; -update noar tt set v0='RR93HUL3GKJK4H59F' where id=9; -update noar ti set v0='RR93HUL3GKJK4H59F' where id=9; -update noar tt set b2='KEXJK79LG6Z7SQVON9OGBIFHDH882' where id=9; -update noar ti set b2='KEXJK79LG6Z7SQVON9OGBIFHDH882' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - f0 int not null, - v0 varchar(32) not null, - b0 tinyblob not null, - b1 mediumblob not null, - b2 tinyblob not null -) engine=tokudb; -insert into tt values (1,0,'','','',''); -insert into tt values (2,0,'','','',''); -insert into tt values (3,0,'','','',''); -insert into tt values (4,0,'','','',''); -insert into tt values (5,0,'','','',''); -insert into tt values (6,0,'','','',''); -insert into tt values (7,0,'','','',''); -insert into tt values (8,0,'','','',''); -insert into tt values (9,0,'','','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='KB7NNFEPFGD30AN5' where id=1; -update noar ti set v0='KB7NNFEPFGD30AN5' where id=1; -update noar tt set b0='HM33PSO674GLJB2NSXDY3VYEIRA7C1' where id=1; -update noar ti set b0='HM33PSO674GLJB2NSXDY3VYEIRA7C1' where id=1; -update noar tt set v0='0G1GH0BHIFS2JC62VY6XXPETSNYQI89' where id=1; -update noar ti set v0='0G1GH0BHIFS2JC62VY6XXPETSNYQI89' where id=1; -update noar tt set b1='QTQK1OM2RRCECOB9PJ2KZ' where id=1; -update noar ti set b1='QTQK1OM2RRCECOB9PJ2KZ' where id=1; -update noar tt set v0='0WZ8SVUCDJQFV7E5X6JAQEYFZN5XE' where id=1; -update noar ti set v0='0WZ8SVUCDJQFV7E5X6JAQEYFZN5XE' where id=1; -update noar tt set b2='BPDGHY' where id=1; -update noar ti set b2='BPDGHY' where id=1; -update noar tt set v0='FQUCKXGA' where id=2; -update noar ti set v0='FQUCKXGA' where id=2; -update noar tt set b0='4DWH' where id=2; -update noar ti set b0='4DWH' where id=2; -update noar tt set v0='ZZGNZV' where id=2; -update noar ti set v0='ZZGNZV' where id=2; -update noar tt set b1='Y9C3MRKYGBB9WLADG9' where id=2; -update noar ti set b1='Y9C3MRKYGBB9WLADG9' where id=2; -update noar tt set v0='AWCYQGFU2L92560YWRYH42Z' where id=2; -update noar ti set v0='AWCYQGFU2L92560YWRYH42Z' where id=2; -update noar tt set b2='N4S' where id=2; -update noar ti set b2='N4S' where id=2; -update noar tt set v0='I0DW85196WMNH03Q33PF2L6VQGKV3' where id=3; -update noar ti set v0='I0DW85196WMNH03Q33PF2L6VQGKV3' where id=3; -update noar tt set b0='LNPO' where id=3; -update noar ti set b0='LNPO' where id=3; -update noar tt set v0='QB5OKN4BP8E9' where id=3; -update noar ti set v0='QB5OKN4BP8E9' where id=3; -update noar tt set b1='AN7N10DQ31LVRQF9E5ZMN5TYHRU162W' where id=3; -update noar ti set b1='AN7N10DQ31LVRQF9E5ZMN5TYHRU162W' where id=3; -update noar tt set v0='HOL454K4D4PN' where id=3; -update noar ti set v0='HOL454K4D4PN' where id=3; -update noar tt set b2='8EKNE77L5LIZQ' where id=3; -update noar ti set b2='8EKNE77L5LIZQ' where id=3; -update noar tt set v0='E232C91K3JZSREE1U' where id=4; -update noar ti set v0='E232C91K3JZSREE1U' where id=4; -update noar tt set b0='LHRPTQVPOVMJV3' where id=4; -update noar ti set b0='LHRPTQVPOVMJV3' where id=4; -update noar tt set v0='S1GT6D3Z2IERK1TU88K2CUG30D6A4' where id=4; -update noar ti set v0='S1GT6D3Z2IERK1TU88K2CUG30D6A4' where id=4; -update noar tt set b1='JZ49KQ9FPJWOA45Y' where id=4; -update noar ti set b1='JZ49KQ9FPJWOA45Y' where id=4; -update noar tt set v0='ADD4RRT' where id=4; -update noar ti set v0='ADD4RRT' where id=4; -update noar tt set b2='KJC1YB8A' where id=4; -update noar ti set b2='KJC1YB8A' where id=4; -update noar tt set v0='7BPQZJG8VNYA4LH' where id=5; -update noar ti set v0='7BPQZJG8VNYA4LH' where id=5; -update noar tt set b0='29AN65ZZ6C2TO05YUGM8NREB3YT7I' where id=5; -update noar ti set b0='29AN65ZZ6C2TO05YUGM8NREB3YT7I' where id=5; -update noar tt set v0='K26EJK6SD8Z38E0C' where id=5; -update noar ti set v0='K26EJK6SD8Z38E0C' where id=5; -update noar tt set b1='XRT0QPQK4QJMYQF4MKG58P' where id=5; -update noar ti set b1='XRT0QPQK4QJMYQF4MKG58P' where id=5; -update noar tt set v0='AIZQ7FSGEWH7OPWSFKG2D' where id=5; -update noar ti set v0='AIZQ7FSGEWH7OPWSFKG2D' where id=5; -update noar tt set b2='JKZCGQL6P3IMWUHOY8Z2HARF' where id=5; -update noar ti set b2='JKZCGQL6P3IMWUHOY8Z2HARF' where id=5; -update noar tt set v0='CQ' where id=6; -update noar ti set v0='CQ' where id=6; -update noar tt set b0='58HUYQY8B2MABOG4' where id=6; -update noar ti set b0='58HUYQY8B2MABOG4' where id=6; -update noar tt set v0='PS0HAVDN8RH' where id=6; -update noar ti set v0='PS0HAVDN8RH' where id=6; -update noar tt set b1='N3CP3PP1S8DQWJCZW4EUWJD68Y' where id=6; -update noar ti set b1='N3CP3PP1S8DQWJCZW4EUWJD68Y' where id=6; -update noar tt set v0='02WB2K89S0JD4CFTKMKV' where id=6; -update noar ti set v0='02WB2K89S0JD4CFTKMKV' where id=6; -update noar tt set b2='CHFMR6F387X5LZLH2RMKXNTY0N0XIH' where id=6; -update noar ti set b2='CHFMR6F387X5LZLH2RMKXNTY0N0XIH' where id=6; -update noar tt set v0='HVNT8ORVFHSWZ382K1D7Q8WWIHSVUI' where id=7; -update noar ti set v0='HVNT8ORVFHSWZ382K1D7Q8WWIHSVUI' where id=7; -update noar tt set b0='4820B5WHWAKY' where id=7; -update noar ti set b0='4820B5WHWAKY' where id=7; -update noar tt set v0='QJBZZWA8054FOQENMYA7EM05U' where id=7; -update noar ti set v0='QJBZZWA8054FOQENMYA7EM05U' where id=7; -update noar tt set b1='DBU55XYF' where id=7; -update noar ti set b1='DBU55XYF' where id=7; -update noar tt set v0='FKS68V' where id=7; -update noar ti set v0='FKS68V' where id=7; -update noar tt set b2='HR7ZOPG2AGXHD6EGWGJW8PZT5FZ3' where id=7; -update noar ti set b2='HR7ZOPG2AGXHD6EGWGJW8PZT5FZ3' where id=7; -update noar tt set v0='X8RD' where id=8; -update noar ti set v0='X8RD' where id=8; -update noar tt set b0='ESSZY48XWLJXWBO9914EI0EM7JN' where id=8; -update noar ti set b0='ESSZY48XWLJXWBO9914EI0EM7JN' where id=8; -update noar tt set v0='5KTRQOQER14ZGDSVUFR4J6K4ZZASRO32' where id=8; -update noar ti set v0='5KTRQOQER14ZGDSVUFR4J6K4ZZASRO32' where id=8; -update noar tt set b1='LVC13F6' where id=8; -update noar ti set b1='LVC13F6' where id=8; -update noar tt set v0='PAVVSO76NPBUAZE4QXEF4' where id=8; -update noar ti set v0='PAVVSO76NPBUAZE4QXEF4' where id=8; -update noar tt set b2='QB2RXEPZ7UWINA677EIS3E02B0W3H19A' where id=8; -update noar ti set b2='QB2RXEPZ7UWINA677EIS3E02B0W3H19A' where id=8; -update noar tt set v0='VVVCTAITDEJHR3EQ6Z0M' where id=9; -update noar ti set v0='VVVCTAITDEJHR3EQ6Z0M' where id=9; -update noar tt set b0='7Y2Y21FL1MOZD7OAV580P5I' where id=9; -update noar ti set b0='7Y2Y21FL1MOZD7OAV580P5I' where id=9; -update noar tt set v0='PC7YS2BJ8I8ETJ7K8D647RGVUOAA4T' where id=9; -update noar ti set v0='PC7YS2BJ8I8ETJ7K8D647RGVUOAA4T' where id=9; -update noar tt set b1='6X5SUSZ7J4LIO9TJ31C629ZBZQ5LT' where id=9; -update noar ti set b1='6X5SUSZ7J4LIO9TJ31C629ZBZQ5LT' where id=9; -update noar tt set v0='6OSYYISFEW37TE' where id=9; -update noar ti set v0='6OSYYISFEW37TE' where id=9; -update noar tt set b2='AU4V744OWFIATF00E7WFHT' where id=9; -update noar ti set b2='AU4V744OWFIATF00E7WFHT' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - f0 int not null, - v0 varchar(256) not null, - b0 tinyblob not null, - b1 mediumblob not null, - b2 tinyblob not null -) engine=tokudb; -insert into tt values (1,0,'','','',''); -insert into tt values (2,0,'','','',''); -insert into tt values (3,0,'','','',''); -insert into tt values (4,0,'','','',''); -insert into tt values (5,0,'','','',''); -insert into tt values (6,0,'','','',''); -insert into tt values (7,0,'','','',''); -insert into tt values (8,0,'','','',''); -insert into tt values (9,0,'','','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='5RAQUY' where id=1; -update noar ti set v0='5RAQUY' where id=1; -update noar tt set b0='PDYSWCEONZER' where id=1; -update noar ti set b0='PDYSWCEONZER' where id=1; -update noar tt set v0='RT1W2I6N6L7FE5FN' where id=1; -update noar ti set v0='RT1W2I6N6L7FE5FN' where id=1; -update noar tt set b1='ZE' where id=1; -update noar ti set b1='ZE' where id=1; -update noar tt set v0='LI4EQR4LRI26X5TG06YL9DQ' where id=1; -update noar ti set v0='LI4EQR4LRI26X5TG06YL9DQ' where id=1; -update noar tt set b2='WTBVKL9M8J6LA' where id=1; -update noar ti set b2='WTBVKL9M8J6LA' where id=1; -update noar tt set v0='J13WWK7MCA' where id=2; -update noar ti set v0='J13WWK7MCA' where id=2; -update noar tt set b0='S' where id=2; -update noar ti set b0='S' where id=2; -update noar tt set v0='IUZCTB13WJCPZIL6OK7YRV7QF0XRF090' where id=2; -update noar ti set v0='IUZCTB13WJCPZIL6OK7YRV7QF0XRF090' where id=2; -update noar tt set b1='2UQ2U5BHGQUO0TG5' where id=2; -update noar ti set b1='2UQ2U5BHGQUO0TG5' where id=2; -update noar tt set v0='LI8F3G0SJODO3Y' where id=2; -update noar ti set v0='LI8F3G0SJODO3Y' where id=2; -update noar tt set b2='QNG3Q9AXRNH3IN1T4V' where id=2; -update noar ti set b2='QNG3Q9AXRNH3IN1T4V' where id=2; -update noar tt set v0='7A7VMT3260TBMEEOJ1GKN' where id=3; -update noar ti set v0='7A7VMT3260TBMEEOJ1GKN' where id=3; -update noar tt set b0='Y7' where id=3; -update noar ti set b0='Y7' where id=3; -update noar tt set v0='0LHVCF9EVYL5' where id=3; -update noar ti set v0='0LHVCF9EVYL5' where id=3; -update noar tt set b1='LR4NJ0' where id=3; -update noar ti set b1='LR4NJ0' where id=3; -update noar tt set v0='N784Z87F5EZ8XRQ' where id=3; -update noar ti set v0='N784Z87F5EZ8XRQ' where id=3; -update noar tt set b2='XUQU9JZ789P' where id=3; -update noar ti set b2='XUQU9JZ789P' where id=3; -update noar tt set v0='T5097HTJOUECSV4MA11LNILA47S4' where id=4; -update noar ti set v0='T5097HTJOUECSV4MA11LNILA47S4' where id=4; -update noar tt set b0='BOJIMD1NI78B' where id=4; -update noar ti set b0='BOJIMD1NI78B' where id=4; -update noar tt set v0='5LCKAANXHBAF18B1K' where id=4; -update noar ti set v0='5LCKAANXHBAF18B1K' where id=4; -update noar tt set b1='Q94N8AJHT9' where id=4; -update noar ti set b1='Q94N8AJHT9' where id=4; -update noar tt set v0='DXLTI183PJLSM1DNTPDOV' where id=4; -update noar ti set v0='DXLTI183PJLSM1DNTPDOV' where id=4; -update noar tt set b2='1I1Q7ANREC' where id=4; -update noar ti set b2='1I1Q7ANREC' where id=4; -update noar tt set v0='6KSXNGN5EOREL9' where id=5; -update noar ti set v0='6KSXNGN5EOREL9' where id=5; -update noar tt set b0='6XWD45L6SE0KOQSHQ25ZLSG5Q1' where id=5; -update noar ti set b0='6XWD45L6SE0KOQSHQ25ZLSG5Q1' where id=5; -update noar tt set v0='8Y321P6' where id=5; -update noar ti set v0='8Y321P6' where id=5; -update noar tt set b1='05P' where id=5; -update noar ti set b1='05P' where id=5; -update noar tt set v0='F' where id=5; -update noar ti set v0='F' where id=5; -update noar tt set b2='9LH195JEGW9TY0K9HFO3' where id=5; -update noar ti set b2='9LH195JEGW9TY0K9HFO3' where id=5; -update noar tt set v0='WHQ9P6JPQ6AEUOS661OW187HA757TYNY' where id=6; -update noar ti set v0='WHQ9P6JPQ6AEUOS661OW187HA757TYNY' where id=6; -update noar tt set b0='5YIFUMY9FN7' where id=6; -update noar ti set b0='5YIFUMY9FN7' where id=6; -update noar tt set v0='6F4Z0HU8ZJLEP5MNX0OX' where id=6; -update noar ti set v0='6F4Z0HU8ZJLEP5MNX0OX' where id=6; -update noar tt set b1='17YBZ9N' where id=6; -update noar ti set b1='17YBZ9N' where id=6; -update noar tt set v0='SXBC549EQOCE' where id=6; -update noar ti set v0='SXBC549EQOCE' where id=6; -update noar tt set b2='A6UGNGV4RLTPT6KV4D8W' where id=6; -update noar ti set b2='A6UGNGV4RLTPT6KV4D8W' where id=6; -update noar tt set v0='VQ7SSCUM1A9NRCT9Q' where id=7; -update noar ti set v0='VQ7SSCUM1A9NRCT9Q' where id=7; -update noar tt set b0='XZVPF9XQO6RZPHXAIWYCANXB2YMD' where id=7; -update noar ti set b0='XZVPF9XQO6RZPHXAIWYCANXB2YMD' where id=7; -update noar tt set v0='TPXWN6G2JUKH7K1AFIN3JXVL' where id=7; -update noar ti set v0='TPXWN6G2JUKH7K1AFIN3JXVL' where id=7; -update noar tt set b1='ITXCSQGBCPB4H8964PVM6' where id=7; -update noar ti set b1='ITXCSQGBCPB4H8964PVM6' where id=7; -update noar tt set v0='8N82MIQXQTQRVQ9EZK2FF81OYEIH' where id=7; -update noar ti set v0='8N82MIQXQTQRVQ9EZK2FF81OYEIH' where id=7; -update noar tt set b2='9TU66KR2O411WN' where id=7; -update noar ti set b2='9TU66KR2O411WN' where id=7; -update noar tt set v0='8PZEVNMGRINNDE' where id=8; -update noar ti set v0='8PZEVNMGRINNDE' where id=8; -update noar tt set b0='RP' where id=8; -update noar ti set b0='RP' where id=8; -update noar tt set v0='CPE0M5UJWR0LJNXC' where id=8; -update noar ti set v0='CPE0M5UJWR0LJNXC' where id=8; -update noar tt set b1='4SINDZR9PVFA8EV35HBG7N' where id=8; -update noar ti set b1='4SINDZR9PVFA8EV35HBG7N' where id=8; -update noar tt set v0='0IUD1QG' where id=8; -update noar ti set v0='0IUD1QG' where id=8; -update noar tt set b2='8XB67B5M' where id=8; -update noar ti set b2='8XB67B5M' where id=8; -update noar tt set v0='VALP9O' where id=9; -update noar ti set v0='VALP9O' where id=9; -update noar tt set b0='F0' where id=9; -update noar ti set b0='F0' where id=9; -update noar tt set v0='IJ9EA919X' where id=9; -update noar ti set v0='IJ9EA919X' where id=9; -update noar tt set b1='WB9XJK9L1WG2S3D4CCKADWWSQ0' where id=9; -update noar ti set b1='WB9XJK9L1WG2S3D4CCKADWWSQ0' where id=9; -update noar tt set v0='PB0T1ONB3VMV49VP704KWX0EXO' where id=9; -update noar ti set v0='PB0T1ONB3VMV49VP704KWX0EXO' where id=9; -update noar tt set b2='OT' where id=9; -update noar ti set b2='OT' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - f0 int null, - v0 varchar(32) null, - b0 tinyblob null, - b1 mediumblob null, - b2 blob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='LFO6J9LUCSDMJ9KO6DE6QQA' where id=1; -update noar ti set v0='LFO6J9LUCSDMJ9KO6DE6QQA' where id=1; -update noar tt set b0='HP1UH3I8E921KJQHJPBIRJE1Q0' where id=1; -update noar ti set b0='HP1UH3I8E921KJQHJPBIRJE1Q0' where id=1; -update noar tt set v0='RBGFPQA' where id=1; -update noar ti set v0='RBGFPQA' where id=1; -update noar tt set b1='MW5TZKCIXC8LEH1' where id=1; -update noar ti set b1='MW5TZKCIXC8LEH1' where id=1; -update noar tt set v0='5ZUA5ENER506ZMBIIA66DP91' where id=1; -update noar ti set v0='5ZUA5ENER506ZMBIIA66DP91' where id=1; -update noar tt set b2='A5PK3C44I2E' where id=1; -update noar ti set b2='A5PK3C44I2E' where id=1; -update noar tt set v0='VZKPMUB5ERASO1OZUMHH05DH' where id=2; -update noar ti set v0='VZKPMUB5ERASO1OZUMHH05DH' where id=2; -update noar tt set b0='D0NF45PFAURFIO6QVIAR1V9Y9WJUW' where id=2; -update noar ti set b0='D0NF45PFAURFIO6QVIAR1V9Y9WJUW' where id=2; -update noar tt set v0='W55OHMMA7YGNXDM9Z3YHIX7U4KXU3' where id=2; -update noar ti set v0='W55OHMMA7YGNXDM9Z3YHIX7U4KXU3' where id=2; -update noar tt set b1='D2BV6AT541R3QSPJQLNBQQ7BE31TCTZU' where id=2; -update noar ti set b1='D2BV6AT541R3QSPJQLNBQQ7BE31TCTZU' where id=2; -update noar tt set v0='9SITWNATENASOMPBGTA6' where id=2; -update noar ti set v0='9SITWNATENASOMPBGTA6' where id=2; -update noar tt set b2='U5KN6JV' where id=2; -update noar ti set b2='U5KN6JV' where id=2; -update noar tt set v0='4AZC0LR5YTQDH0780SWTF1G' where id=3; -update noar ti set v0='4AZC0LR5YTQDH0780SWTF1G' where id=3; -update noar tt set b0='J8VHEVVO' where id=3; -update noar ti set b0='J8VHEVVO' where id=3; -update noar tt set v0='7IM' where id=3; -update noar ti set v0='7IM' where id=3; -update noar tt set b1='U816FOYS' where id=3; -update noar ti set b1='U816FOYS' where id=3; -update noar tt set v0='0PTO9VCHOC7' where id=3; -update noar ti set v0='0PTO9VCHOC7' where id=3; -update noar tt set b2='AAQ' where id=3; -update noar ti set b2='AAQ' where id=3; -update noar tt set v0='1VTVFGJ8YDKFSKL41SW9' where id=4; -update noar ti set v0='1VTVFGJ8YDKFSKL41SW9' where id=4; -update noar tt set b0='9WHQZPZVMY5852X' where id=4; -update noar ti set b0='9WHQZPZVMY5852X' where id=4; -update noar tt set v0='3R936A7QG76F29' where id=4; -update noar ti set v0='3R936A7QG76F29' where id=4; -update noar tt set b1='GBOUZUXI00115FAVGV37ZL2RIJIK6I' where id=4; -update noar ti set b1='GBOUZUXI00115FAVGV37ZL2RIJIK6I' where id=4; -update noar tt set v0='LHVZKVLE0' where id=4; -update noar ti set v0='LHVZKVLE0' where id=4; -update noar tt set b2='PVD3A7HFZFZ74IEM3ZV0WL7O7T' where id=4; -update noar ti set b2='PVD3A7HFZFZ74IEM3ZV0WL7O7T' where id=4; -update noar tt set v0='UOMIE5BI4ASD' where id=5; -update noar ti set v0='UOMIE5BI4ASD' where id=5; -update noar tt set b0='GR' where id=5; -update noar ti set b0='GR' where id=5; -update noar tt set v0='6RDPF0C8QIJK7GLJG0WNW7V4LR3UMNK' where id=5; -update noar ti set v0='6RDPF0C8QIJK7GLJG0WNW7V4LR3UMNK' where id=5; -update noar tt set b1='AILNU53' where id=5; -update noar ti set b1='AILNU53' where id=5; -update noar tt set v0='OCUVH5L74DYX7FJKPHE2BVL' where id=5; -update noar ti set v0='OCUVH5L74DYX7FJKPHE2BVL' where id=5; -update noar tt set b2='3S8OJDXQIZX2D6ISY4Z352GCOR2SN' where id=5; -update noar ti set b2='3S8OJDXQIZX2D6ISY4Z352GCOR2SN' where id=5; -update noar tt set v0='1QQGMJYOOU6S067CKX' where id=6; -update noar ti set v0='1QQGMJYOOU6S067CKX' where id=6; -update noar tt set b0='L6KX28HGI3QCN8D8K0COPCL3Y1OO5V7' where id=6; -update noar ti set b0='L6KX28HGI3QCN8D8K0COPCL3Y1OO5V7' where id=6; -update noar tt set v0='OXNGWK0D' where id=6; -update noar ti set v0='OXNGWK0D' where id=6; -update noar tt set b1='L2O8MRM9IQ' where id=6; -update noar ti set b1='L2O8MRM9IQ' where id=6; -update noar tt set v0='KUB6QUNG8HF7' where id=6; -update noar ti set v0='KUB6QUNG8HF7' where id=6; -update noar tt set b2='NH7T9Z2YW9V' where id=6; -update noar ti set b2='NH7T9Z2YW9V' where id=6; -update noar tt set v0='8EUWNWJJBYQ' where id=7; -update noar ti set v0='8EUWNWJJBYQ' where id=7; -update noar tt set b0='EI27UT8EEF4DPTD3PJS9YQ1TQVL' where id=7; -update noar ti set b0='EI27UT8EEF4DPTD3PJS9YQ1TQVL' where id=7; -update noar tt set v0='8T5M2VQL8DRNKE9NPV3' where id=7; -update noar ti set v0='8T5M2VQL8DRNKE9NPV3' where id=7; -update noar tt set b1='BIVGNZ270YUUGWZF' where id=7; -update noar ti set b1='BIVGNZ270YUUGWZF' where id=7; -update noar tt set v0='RBDOR8F27YUR6B' where id=7; -update noar ti set v0='RBDOR8F27YUR6B' where id=7; -update noar tt set b2='T8G0UQV2FFA1J2DMH5TFTJGAG' where id=7; -update noar ti set b2='T8G0UQV2FFA1J2DMH5TFTJGAG' where id=7; -update noar tt set v0='W0Q68WXLP' where id=8; -update noar ti set v0='W0Q68WXLP' where id=8; -update noar tt set b0='PYC' where id=8; -update noar ti set b0='PYC' where id=8; -update noar tt set v0='N9I5SB3KJD6Z87X7GC40UMUEOLMVI' where id=8; -update noar ti set v0='N9I5SB3KJD6Z87X7GC40UMUEOLMVI' where id=8; -update noar tt set b1='WLJAO1WQE6' where id=8; -update noar ti set b1='WLJAO1WQE6' where id=8; -update noar tt set v0='F89YEUYOT3RY413X6Z9RBG0UL05H5Y0' where id=8; -update noar ti set v0='F89YEUYOT3RY413X6Z9RBG0UL05H5Y0' where id=8; -update noar tt set b2='ABXDN951SMBYK1HJIHE2AU5EXB2XCVP2' where id=8; -update noar ti set b2='ABXDN951SMBYK1HJIHE2AU5EXB2XCVP2' where id=8; -update noar tt set v0='232' where id=9; -update noar ti set v0='232' where id=9; -update noar tt set b0='9YX5O1CY26QL63OCD288PJFT6U1' where id=9; -update noar ti set b0='9YX5O1CY26QL63OCD288PJFT6U1' where id=9; -update noar tt set v0='MC68RVH1J96EZK89NAKZBMBJ50WSWY' where id=9; -update noar ti set v0='MC68RVH1J96EZK89NAKZBMBJ50WSWY' where id=9; -update noar tt set b1='28OSL1M5NDHP48VWBF1FYYCR1ZN9O' where id=9; -update noar ti set b1='28OSL1M5NDHP48VWBF1FYYCR1ZN9O' where id=9; -update noar tt set v0='5SYHN8JCZBH5ARMLEI' where id=9; -update noar ti set v0='5SYHN8JCZBH5ARMLEI' where id=9; -update noar tt set b2='CDVZL1LR3UZEHCRR' where id=9; -update noar ti set b2='CDVZL1LR3UZEHCRR' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - f0 int null, - v0 varchar(256) null, - b0 tinyblob null, - b1 mediumblob null, - b2 blob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='0BWP0' where id=1; -update noar ti set v0='0BWP0' where id=1; -update noar tt set b0='SGA' where id=1; -update noar ti set b0='SGA' where id=1; -update noar tt set v0='A8VSWYDJLGTX19M35PMCOSMV1ENIO0' where id=1; -update noar ti set v0='A8VSWYDJLGTX19M35PMCOSMV1ENIO0' where id=1; -update noar tt set b1='H58D9MOWNNZD5QDT' where id=1; -update noar ti set b1='H58D9MOWNNZD5QDT' where id=1; -update noar tt set v0='977V76KUAY4ZP52OOEMR0Q' where id=1; -update noar ti set v0='977V76KUAY4ZP52OOEMR0Q' where id=1; -update noar tt set b2='U5UT8HSNUKLTNG' where id=1; -update noar ti set b2='U5UT8HSNUKLTNG' where id=1; -update noar tt set v0='JR3OTPUDTD6JDW5M9KA22J' where id=2; -update noar ti set v0='JR3OTPUDTD6JDW5M9KA22J' where id=2; -update noar tt set b0='IPS6IJ5UJVQF' where id=2; -update noar ti set b0='IPS6IJ5UJVQF' where id=2; -update noar tt set v0='JYTX' where id=2; -update noar ti set v0='JYTX' where id=2; -update noar tt set b1='D0' where id=2; -update noar ti set b1='D0' where id=2; -update noar tt set v0='BAHUFJ8LWHPITWIHUV7WNL08O50FBA6J' where id=2; -update noar ti set v0='BAHUFJ8LWHPITWIHUV7WNL08O50FBA6J' where id=2; -update noar tt set b2='OXS9M6IHACX0T3E2Y6VG3N5T5UEA7' where id=2; -update noar ti set b2='OXS9M6IHACX0T3E2Y6VG3N5T5UEA7' where id=2; -update noar tt set v0='TB6JGCA1JSUK7GF4RUBBXG' where id=3; -update noar ti set v0='TB6JGCA1JSUK7GF4RUBBXG' where id=3; -update noar tt set b0='PG4AL8PCFDW0S84N' where id=3; -update noar ti set b0='PG4AL8PCFDW0S84N' where id=3; -update noar tt set v0='94TVPUOBVA266HK87ZGSP1M8W1P5GA' where id=3; -update noar ti set v0='94TVPUOBVA266HK87ZGSP1M8W1P5GA' where id=3; -update noar tt set b1='IQWYNVVP' where id=3; -update noar ti set b1='IQWYNVVP' where id=3; -update noar tt set v0='7P4MG6PZK6EE6TMMEVAJEVGCLPOKHSN' where id=3; -update noar ti set v0='7P4MG6PZK6EE6TMMEVAJEVGCLPOKHSN' where id=3; -update noar tt set b2='SRJF0WZPPW4L' where id=3; -update noar ti set b2='SRJF0WZPPW4L' where id=3; -update noar tt set v0='UKMLTWAK0KQJM73W0EO1B' where id=4; -update noar ti set v0='UKMLTWAK0KQJM73W0EO1B' where id=4; -update noar tt set b0='8Q5GOWZVNIT3T' where id=4; -update noar ti set b0='8Q5GOWZVNIT3T' where id=4; -update noar tt set v0='7YE8' where id=4; -update noar ti set v0='7YE8' where id=4; -update noar tt set b1='295AY9U2' where id=4; -update noar ti set b1='295AY9U2' where id=4; -update noar tt set v0='M36S9OMALWBMN' where id=4; -update noar ti set v0='M36S9OMALWBMN' where id=4; -update noar tt set b2='LEA5QF6IZZV8VJ7CBPKIOW8K5' where id=4; -update noar ti set b2='LEA5QF6IZZV8VJ7CBPKIOW8K5' where id=4; -update noar tt set v0='ARHJH1T2YE2EKK0OA69' where id=5; -update noar ti set v0='ARHJH1T2YE2EKK0OA69' where id=5; -update noar tt set b0='9NXOTRT6ZE7ET7N' where id=5; -update noar ti set b0='9NXOTRT6ZE7ET7N' where id=5; -update noar tt set v0='9Y' where id=5; -update noar ti set v0='9Y' where id=5; -update noar tt set b1='U7J9X28TW6C0E8Z62BL455TPX' where id=5; -update noar ti set b1='U7J9X28TW6C0E8Z62BL455TPX' where id=5; -update noar tt set v0='V282' where id=5; -update noar ti set v0='V282' where id=5; -update noar tt set b2='OBRSGLZQSM0UW4J6IK6RY' where id=5; -update noar ti set b2='OBRSGLZQSM0UW4J6IK6RY' where id=5; -update noar tt set v0='P' where id=6; -update noar ti set v0='P' where id=6; -update noar tt set b0='WZSX7DM8MPLD7' where id=6; -update noar ti set b0='WZSX7DM8MPLD7' where id=6; -update noar tt set v0='J1NZ' where id=6; -update noar ti set v0='J1NZ' where id=6; -update noar tt set b1='X' where id=6; -update noar ti set b1='X' where id=6; -update noar tt set v0='PFYED' where id=6; -update noar ti set v0='PFYED' where id=6; -update noar tt set b2='2VBL40UJ8RZXK7K3O8V8K' where id=6; -update noar ti set b2='2VBL40UJ8RZXK7K3O8V8K' where id=6; -update noar tt set v0='BMTT6HKT' where id=7; -update noar ti set v0='BMTT6HKT' where id=7; -update noar tt set b0='Y09GSCNXJ7KVNS' where id=7; -update noar ti set b0='Y09GSCNXJ7KVNS' where id=7; -update noar tt set v0='VRTJL0' where id=7; -update noar ti set v0='VRTJL0' where id=7; -update noar tt set b1='V73BY90FHEWCL7CW' where id=7; -update noar ti set b1='V73BY90FHEWCL7CW' where id=7; -update noar tt set v0='TJX7LSW5X23PUIRLY7UDFVJT2QP' where id=7; -update noar ti set v0='TJX7LSW5X23PUIRLY7UDFVJT2QP' where id=7; -update noar tt set b2='A1L6VGE' where id=7; -update noar ti set b2='A1L6VGE' where id=7; -update noar tt set v0='PORL6H2CVBVDS' where id=8; -update noar ti set v0='PORL6H2CVBVDS' where id=8; -update noar tt set b0='2V6HTENJ' where id=8; -update noar ti set b0='2V6HTENJ' where id=8; -update noar tt set v0='X1ZAQEV0NKO11' where id=8; -update noar ti set v0='X1ZAQEV0NKO11' where id=8; -update noar tt set b1='OO1NEXWRHUGL8IR5E7' where id=8; -update noar ti set b1='OO1NEXWRHUGL8IR5E7' where id=8; -update noar tt set v0='8OTFC9C' where id=8; -update noar ti set v0='8OTFC9C' where id=8; -update noar tt set b2='RAYG7R5179GCEQXWX4M6BF448RY7I' where id=8; -update noar ti set b2='RAYG7R5179GCEQXWX4M6BF448RY7I' where id=8; -update noar tt set v0='EY89HUXM9UKM' where id=9; -update noar ti set v0='EY89HUXM9UKM' where id=9; -update noar tt set b0='R4MD71HZJLPJKYL5' where id=9; -update noar ti set b0='R4MD71HZJLPJKYL5' where id=9; -update noar tt set v0='Y7IPXM05N1' where id=9; -update noar ti set v0='Y7IPXM05N1' where id=9; -update noar tt set b1='GNLY9GZEI7ZKDP05K' where id=9; -update noar ti set b1='GNLY9GZEI7ZKDP05K' where id=9; -update noar tt set v0='63BA8YP1LQQLR8BL2AJ62U' where id=9; -update noar ti set v0='63BA8YP1LQQLR8BL2AJ62U' where id=9; -update noar tt set b2='F93M70Q39H8HR9' where id=9; -update noar ti set b2='F93M70Q39H8HR9' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - f0 int not null, - v0 varchar(32) not null, - b0 tinyblob not null, - b1 mediumblob not null, - b2 blob not null -) engine=tokudb; -insert into tt values (1,0,'','','',''); -insert into tt values (2,0,'','','',''); -insert into tt values (3,0,'','','',''); -insert into tt values (4,0,'','','',''); -insert into tt values (5,0,'','','',''); -insert into tt values (6,0,'','','',''); -insert into tt values (7,0,'','','',''); -insert into tt values (8,0,'','','',''); -insert into tt values (9,0,'','','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='DIXB7DVORSS0YJ6M4KO3LYBKQKEYW' where id=1; -update noar ti set v0='DIXB7DVORSS0YJ6M4KO3LYBKQKEYW' where id=1; -update noar tt set b0='RAOXPW2H0XA60DKRFI985' where id=1; -update noar ti set b0='RAOXPW2H0XA60DKRFI985' where id=1; -update noar tt set v0='E9Q0J7M0ZF0IK1AF2N2FZFS8GZ' where id=1; -update noar ti set v0='E9Q0J7M0ZF0IK1AF2N2FZFS8GZ' where id=1; -update noar tt set b1='L1PKSET9ADDWPC3102' where id=1; -update noar ti set b1='L1PKSET9ADDWPC3102' where id=1; -update noar tt set v0='7WUS' where id=1; -update noar ti set v0='7WUS' where id=1; -update noar tt set b2='P6VLAF7TTL29DU2Q2PJTL13GPB' where id=1; -update noar ti set b2='P6VLAF7TTL29DU2Q2PJTL13GPB' where id=1; -update noar tt set v0='ADHAL' where id=2; -update noar ti set v0='ADHAL' where id=2; -update noar tt set b0='HVKTO64PQW87YILTMJTXGTSMAJ' where id=2; -update noar ti set b0='HVKTO64PQW87YILTMJTXGTSMAJ' where id=2; -update noar tt set v0='JO6NO69OOA29' where id=2; -update noar ti set v0='JO6NO69OOA29' where id=2; -update noar tt set b1='RO28C' where id=2; -update noar ti set b1='RO28C' where id=2; -update noar tt set v0='KO0A0MKPDPKM' where id=2; -update noar ti set v0='KO0A0MKPDPKM' where id=2; -update noar tt set b2='RMN6W3' where id=2; -update noar ti set b2='RMN6W3' where id=2; -update noar tt set v0='Q78ASDJS6ON6A3R9NQ00' where id=3; -update noar ti set v0='Q78ASDJS6ON6A3R9NQ00' where id=3; -update noar tt set b0='YDBM7OZL0QNGSJ' where id=3; -update noar ti set b0='YDBM7OZL0QNGSJ' where id=3; -update noar tt set v0='89K9AFEMUAGQBJ9WI47CMF1QFB065W5C' where id=3; -update noar ti set v0='89K9AFEMUAGQBJ9WI47CMF1QFB065W5C' where id=3; -update noar tt set b1='140AK8AJOWX8EBHJXQR0R8BYOAYUT4' where id=3; -update noar ti set b1='140AK8AJOWX8EBHJXQR0R8BYOAYUT4' where id=3; -update noar tt set v0='Y4R3W1CSM8Y' where id=3; -update noar ti set v0='Y4R3W1CSM8Y' where id=3; -update noar tt set b2='K1' where id=3; -update noar ti set b2='K1' where id=3; -update noar tt set v0='8A1I3X8I3Z6QXNA' where id=4; -update noar ti set v0='8A1I3X8I3Z6QXNA' where id=4; -update noar tt set b0='LIB' where id=4; -update noar ti set b0='LIB' where id=4; -update noar tt set v0='N9BTGQYBJXNEOIHM' where id=4; -update noar ti set v0='N9BTGQYBJXNEOIHM' where id=4; -update noar tt set b1='16H4Y5J8' where id=4; -update noar ti set b1='16H4Y5J8' where id=4; -update noar tt set v0='E' where id=4; -update noar ti set v0='E' where id=4; -update noar tt set b2='AERU7CMEE3QOTK' where id=4; -update noar ti set b2='AERU7CMEE3QOTK' where id=4; -update noar tt set v0='TCBQ' where id=5; -update noar ti set v0='TCBQ' where id=5; -update noar tt set b0='5CAWV3T0BMU66ULL6MJ9X4PUWHYFU' where id=5; -update noar ti set b0='5CAWV3T0BMU66ULL6MJ9X4PUWHYFU' where id=5; -update noar tt set v0='88ZQSJ8I' where id=5; -update noar ti set v0='88ZQSJ8I' where id=5; -update noar tt set b1='5AUFKZTTNFBC8TGSN1QIO' where id=5; -update noar ti set b1='5AUFKZTTNFBC8TGSN1QIO' where id=5; -update noar tt set v0='Q1TRAVTHCUZZPY927L6OASZP0UH2WYIF' where id=5; -update noar ti set v0='Q1TRAVTHCUZZPY927L6OASZP0UH2WYIF' where id=5; -update noar tt set b2='41OQMMNQKF72PCUCTQL897RNUC1TQK' where id=5; -update noar ti set b2='41OQMMNQKF72PCUCTQL897RNUC1TQK' where id=5; -update noar tt set v0='RF' where id=6; -update noar ti set v0='RF' where id=6; -update noar tt set b0='3YIE0OGJAQ2L1P9I94YKB9NIT90O3LZ' where id=6; -update noar ti set b0='3YIE0OGJAQ2L1P9I94YKB9NIT90O3LZ' where id=6; -update noar tt set v0='RP4TD8F5X04312BOD8HU07R553WS' where id=6; -update noar ti set v0='RP4TD8F5X04312BOD8HU07R553WS' where id=6; -update noar tt set b1='U' where id=6; -update noar ti set b1='U' where id=6; -update noar tt set v0='A3O9SE4QRROMO3NKKC07S3H' where id=6; -update noar ti set v0='A3O9SE4QRROMO3NKKC07S3H' where id=6; -update noar tt set b2='9NH68AXM8EHXT72N6BSZT6AELME' where id=6; -update noar ti set b2='9NH68AXM8EHXT72N6BSZT6AELME' where id=6; -update noar tt set v0='V' where id=7; -update noar ti set v0='V' where id=7; -update noar tt set b0='447352BQN1SO5O3ZO7UGJ' where id=7; -update noar ti set b0='447352BQN1SO5O3ZO7UGJ' where id=7; -update noar tt set v0='TF4W75LL5OZTWW8BD86BWDGA88' where id=7; -update noar ti set v0='TF4W75LL5OZTWW8BD86BWDGA88' where id=7; -update noar tt set b1='VSQHZD7SKSQSOXJ' where id=7; -update noar ti set b1='VSQHZD7SKSQSOXJ' where id=7; -update noar tt set v0='3F' where id=7; -update noar ti set v0='3F' where id=7; -update noar tt set b2='BDIT3UNK2D15JL1X8OILFX9T9754MX' where id=7; -update noar ti set b2='BDIT3UNK2D15JL1X8OILFX9T9754MX' where id=7; -update noar tt set v0='4IOV74FCTZ3IS71ZXB6EMRE0J1375GPH' where id=8; -update noar ti set v0='4IOV74FCTZ3IS71ZXB6EMRE0J1375GPH' where id=8; -update noar tt set b0='IJCV7JI0U6HY' where id=8; -update noar ti set b0='IJCV7JI0U6HY' where id=8; -update noar tt set v0='DI9UWF52HRT' where id=8; -update noar ti set v0='DI9UWF52HRT' where id=8; -update noar tt set b1='19SHPH1FM7' where id=8; -update noar ti set b1='19SHPH1FM7' where id=8; -update noar tt set v0='8GPCCD8U6SOISS43KG6CL9GHDD0H' where id=8; -update noar ti set v0='8GPCCD8U6SOISS43KG6CL9GHDD0H' where id=8; -update noar tt set b2='RSYLJ' where id=8; -update noar ti set b2='RSYLJ' where id=8; -update noar tt set v0='D1OQ4U29CZKC6GLL6FCVFKXAKEJ6L' where id=9; -update noar ti set v0='D1OQ4U29CZKC6GLL6FCVFKXAKEJ6L' where id=9; -update noar tt set b0='M0W61AUZK7SKBS0Z1FY' where id=9; -update noar ti set b0='M0W61AUZK7SKBS0Z1FY' where id=9; -update noar tt set v0='L' where id=9; -update noar ti set v0='L' where id=9; -update noar tt set b1='7KYOPIBM99BCQ0LIWVDSQFZW449070' where id=9; -update noar ti set b1='7KYOPIBM99BCQ0LIWVDSQFZW449070' where id=9; -update noar tt set v0='JVSK7PKW6XHNF5WAG3IOLCIFNZ' where id=9; -update noar ti set v0='JVSK7PKW6XHNF5WAG3IOLCIFNZ' where id=9; -update noar tt set b2='BVQ6R7TNV60ODTT1FRDA73ET6QVSZ87' where id=9; -update noar ti set b2='BVQ6R7TNV60ODTT1FRDA73ET6QVSZ87' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - f0 int not null, - v0 varchar(256) not null, - b0 tinyblob not null, - b1 mediumblob not null, - b2 blob not null -) engine=tokudb; -insert into tt values (1,0,'','','',''); -insert into tt values (2,0,'','','',''); -insert into tt values (3,0,'','','',''); -insert into tt values (4,0,'','','',''); -insert into tt values (5,0,'','','',''); -insert into tt values (6,0,'','','',''); -insert into tt values (7,0,'','','',''); -insert into tt values (8,0,'','','',''); -insert into tt values (9,0,'','','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='7I16QVHZR66AL41ZH4FTZHPZ201AC' where id=1; -update noar ti set v0='7I16QVHZR66AL41ZH4FTZHPZ201AC' where id=1; -update noar tt set b0='KKD' where id=1; -update noar ti set b0='KKD' where id=1; -update noar tt set v0='3XPM6HMVDVFTJMEJEJUAR5HSU1' where id=1; -update noar ti set v0='3XPM6HMVDVFTJMEJEJUAR5HSU1' where id=1; -update noar tt set b1='QTDWBVMXDK5KT' where id=1; -update noar ti set b1='QTDWBVMXDK5KT' where id=1; -update noar tt set v0='KVG9MK7S8C3I1JB0ESDJ7DAI' where id=1; -update noar ti set v0='KVG9MK7S8C3I1JB0ESDJ7DAI' where id=1; -update noar tt set b2='7J1P1MMJMA172' where id=1; -update noar ti set b2='7J1P1MMJMA172' where id=1; -update noar tt set v0='RNR6' where id=2; -update noar ti set v0='RNR6' where id=2; -update noar tt set b0='21JTA51SGQ46OYG25PU' where id=2; -update noar ti set b0='21JTA51SGQ46OYG25PU' where id=2; -update noar tt set v0='XC86ZUWD8FWPA26N8ZVGO2COGP' where id=2; -update noar ti set v0='XC86ZUWD8FWPA26N8ZVGO2COGP' where id=2; -update noar tt set b1='94YTJP5ITMAWX4V2YJ1YJSW44IBI' where id=2; -update noar ti set b1='94YTJP5ITMAWX4V2YJ1YJSW44IBI' where id=2; -update noar tt set v0='6WTGLOXR5UFCZEUQ2T3GVR' where id=2; -update noar ti set v0='6WTGLOXR5UFCZEUQ2T3GVR' where id=2; -update noar tt set b2='SK8T3XW9OUPIQDJ' where id=2; -update noar ti set b2='SK8T3XW9OUPIQDJ' where id=2; -update noar tt set v0='BMYNVI' where id=3; -update noar ti set v0='BMYNVI' where id=3; -update noar tt set b0='K11Z908MZVTSK5T3QGCFN5155A' where id=3; -update noar ti set b0='K11Z908MZVTSK5T3QGCFN5155A' where id=3; -update noar tt set v0='UNIUDPNGVDDXMWG' where id=3; -update noar ti set v0='UNIUDPNGVDDXMWG' where id=3; -update noar tt set b1='POVPBA1G1J4IQMX8J2S0G5M8O' where id=3; -update noar ti set b1='POVPBA1G1J4IQMX8J2S0G5M8O' where id=3; -update noar tt set v0='GDHVCKE2LV1N796' where id=3; -update noar ti set v0='GDHVCKE2LV1N796' where id=3; -update noar tt set b2='5YXYVVVP1IW2OG' where id=3; -update noar ti set b2='5YXYVVVP1IW2OG' where id=3; -update noar tt set v0='1DM7APHTV4Y8U4AUYDPU5SE7D9929H' where id=4; -update noar ti set v0='1DM7APHTV4Y8U4AUYDPU5SE7D9929H' where id=4; -update noar tt set b0='BCJSYPO4XS6D4BDP6NHA0QEIUJK6LD' where id=4; -update noar ti set b0='BCJSYPO4XS6D4BDP6NHA0QEIUJK6LD' where id=4; -update noar tt set v0='5WCB04GX2QW5VZAWMN4QB9EBOAK6M9' where id=4; -update noar ti set v0='5WCB04GX2QW5VZAWMN4QB9EBOAK6M9' where id=4; -update noar tt set b1='H' where id=4; -update noar ti set b1='H' where id=4; -update noar tt set v0='DT7945J17KV' where id=4; -update noar ti set v0='DT7945J17KV' where id=4; -update noar tt set b2='OB8KMNU' where id=4; -update noar ti set b2='OB8KMNU' where id=4; -update noar tt set v0='7SPXSUCMJ0JJ1ACSMHTSMXNZZ3VLO34' where id=5; -update noar ti set v0='7SPXSUCMJ0JJ1ACSMHTSMXNZZ3VLO34' where id=5; -update noar tt set b0='CXKK13O8DT7W75JSPRP2G' where id=5; -update noar ti set b0='CXKK13O8DT7W75JSPRP2G' where id=5; -update noar tt set v0='XQFOTKSCBERE1YV9' where id=5; -update noar ti set v0='XQFOTKSCBERE1YV9' where id=5; -update noar tt set b1='BU5UMGDCO6N8T5CWBHI76OAC0NUL2X' where id=5; -update noar ti set b1='BU5UMGDCO6N8T5CWBHI76OAC0NUL2X' where id=5; -update noar tt set v0='A' where id=5; -update noar ti set v0='A' where id=5; -update noar tt set b2='L6UCV41J66P4V5' where id=5; -update noar ti set b2='L6UCV41J66P4V5' where id=5; -update noar tt set v0='VRXJDL118RS' where id=6; -update noar ti set v0='VRXJDL118RS' where id=6; -update noar tt set b0='JXU89PSCQPDOWTJZ54DPTV0GH8RT' where id=6; -update noar ti set b0='JXU89PSCQPDOWTJZ54DPTV0GH8RT' where id=6; -update noar tt set v0='RVX0X9XSRBD05K2OUK' where id=6; -update noar ti set v0='RVX0X9XSRBD05K2OUK' where id=6; -update noar tt set b1='4T8GB3K' where id=6; -update noar ti set b1='4T8GB3K' where id=6; -update noar tt set v0='4GP5MACVYNWWMRC' where id=6; -update noar ti set v0='4GP5MACVYNWWMRC' where id=6; -update noar tt set b2='EE9J56' where id=6; -update noar ti set b2='EE9J56' where id=6; -update noar tt set v0='UA1YFZPY8YG3D4YNV' where id=7; -update noar ti set v0='UA1YFZPY8YG3D4YNV' where id=7; -update noar tt set b0='OEH7V6QFRRYP' where id=7; -update noar ti set b0='OEH7V6QFRRYP' where id=7; -update noar tt set v0='G482J8GK4GOQF' where id=7; -update noar ti set v0='G482J8GK4GOQF' where id=7; -update noar tt set b1='1QAOG3C6H4FPXM1FV0W38223HM205D0M' where id=7; -update noar ti set b1='1QAOG3C6H4FPXM1FV0W38223HM205D0M' where id=7; -update noar tt set v0='D' where id=7; -update noar ti set v0='D' where id=7; -update noar tt set b2='J2PJKPD3IJDWJ2FVG790O1511DZ0' where id=7; -update noar ti set b2='J2PJKPD3IJDWJ2FVG790O1511DZ0' where id=7; -update noar tt set v0='IWF4TMZ3U' where id=8; -update noar ti set v0='IWF4TMZ3U' where id=8; -update noar tt set b0='6SMHHEEM5Y' where id=8; -update noar ti set b0='6SMHHEEM5Y' where id=8; -update noar tt set v0='HAQIPOOEOB8A2Y5GSQUA7XEZF5' where id=8; -update noar ti set v0='HAQIPOOEOB8A2Y5GSQUA7XEZF5' where id=8; -update noar tt set b1='H650P' where id=8; -update noar ti set b1='H650P' where id=8; -update noar tt set v0='OWZIQYDZO' where id=8; -update noar ti set v0='OWZIQYDZO' where id=8; -update noar tt set b2='2KRH0CML7JQQFVAYJG8SSV' where id=8; -update noar ti set b2='2KRH0CML7JQQFVAYJG8SSV' where id=8; -update noar tt set v0='DT06CMEN433K' where id=9; -update noar ti set v0='DT06CMEN433K' where id=9; -update noar tt set b0='J' where id=9; -update noar ti set b0='J' where id=9; -update noar tt set v0='GFEVOXFXTZSUAYX65NSZU389LA6SE' where id=9; -update noar ti set v0='GFEVOXFXTZSUAYX65NSZU389LA6SE' where id=9; -update noar tt set b1='OB' where id=9; -update noar ti set b1='OB' where id=9; -update noar tt set v0='QE8HQV' where id=9; -update noar ti set v0='QE8HQV' where id=9; -update noar tt set b2='PWL00I4' where id=9; -update noar ti set b2='PWL00I4' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - f0 int null, - v0 varchar(32) null, - b0 tinyblob null, - b1 mediumblob null, - b2 mediumblob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='7Z858Y5VZ8NKN5L99R5XT4' where id=1; -update noar ti set v0='7Z858Y5VZ8NKN5L99R5XT4' where id=1; -update noar tt set b0='E9LDR1BDEV8I8X1S5CYQD91PSVL5I' where id=1; -update noar ti set b0='E9LDR1BDEV8I8X1S5CYQD91PSVL5I' where id=1; -update noar tt set v0='KKFUNM9NIBCJSOZEC04T4YYR3RW' where id=1; -update noar ti set v0='KKFUNM9NIBCJSOZEC04T4YYR3RW' where id=1; -update noar tt set b1='S5MD95WOAGVP8TVHKP9VRK8N9' where id=1; -update noar ti set b1='S5MD95WOAGVP8TVHKP9VRK8N9' where id=1; -update noar tt set v0='QW6GROI0CP183Z48ESY2DW366F' where id=1; -update noar ti set v0='QW6GROI0CP183Z48ESY2DW366F' where id=1; -update noar tt set b2='2EJ8VKCNME5O94UXNRMIS3FS' where id=1; -update noar ti set b2='2EJ8VKCNME5O94UXNRMIS3FS' where id=1; -update noar tt set v0='LAG' where id=2; -update noar ti set v0='LAG' where id=2; -update noar tt set b0='YJW9G' where id=2; -update noar ti set b0='YJW9G' where id=2; -update noar tt set v0='3BSFC8SOOBVX5YXHM534D6TMR5KHZKR' where id=2; -update noar ti set v0='3BSFC8SOOBVX5YXHM534D6TMR5KHZKR' where id=2; -update noar tt set b1='0O3IIKEMQ3DQNAIFD2L' where id=2; -update noar ti set b1='0O3IIKEMQ3DQNAIFD2L' where id=2; -update noar tt set v0='K4ZKQTSDAPJXS7HRVZ2UGN885HF' where id=2; -update noar ti set v0='K4ZKQTSDAPJXS7HRVZ2UGN885HF' where id=2; -update noar tt set b2='YRS616TBSWJQZ' where id=2; -update noar ti set b2='YRS616TBSWJQZ' where id=2; -update noar tt set v0='EIHFPEU65' where id=3; -update noar ti set v0='EIHFPEU65' where id=3; -update noar tt set b0='78XU0Y' where id=3; -update noar ti set b0='78XU0Y' where id=3; -update noar tt set v0='L146AC11XZA' where id=3; -update noar ti set v0='L146AC11XZA' where id=3; -update noar tt set b1='3LP149XR4UY2NJ3PJVNZ9X1BIJREG' where id=3; -update noar ti set b1='3LP149XR4UY2NJ3PJVNZ9X1BIJREG' where id=3; -update noar tt set v0='0C9EMH17SJWTEQC45SXTFEFQXCAG' where id=3; -update noar ti set v0='0C9EMH17SJWTEQC45SXTFEFQXCAG' where id=3; -update noar tt set b2='LTE5WKHH77PTEF3SX3S8' where id=3; -update noar ti set b2='LTE5WKHH77PTEF3SX3S8' where id=3; -update noar tt set v0='MZJDL7WLKQH9QXU' where id=4; -update noar ti set v0='MZJDL7WLKQH9QXU' where id=4; -update noar tt set b0='S9TAMM1IXUG8N6EKL' where id=4; -update noar ti set b0='S9TAMM1IXUG8N6EKL' where id=4; -update noar tt set v0='WZ8' where id=4; -update noar ti set v0='WZ8' where id=4; -update noar tt set b1='N1DVAOUGP6IZQ' where id=4; -update noar ti set b1='N1DVAOUGP6IZQ' where id=4; -update noar tt set v0='U8YKS397AIG' where id=4; -update noar ti set v0='U8YKS397AIG' where id=4; -update noar tt set b2='CB2P9CK3TKGGCJAT1GCM5TVHPTL' where id=4; -update noar ti set b2='CB2P9CK3TKGGCJAT1GCM5TVHPTL' where id=4; -update noar tt set v0='A672DWVSQKD8UI9DKFSTE4QO04MVYR' where id=5; -update noar ti set v0='A672DWVSQKD8UI9DKFSTE4QO04MVYR' where id=5; -update noar tt set b0='PZDSXVTKO6X8N8AFHR0I4HT' where id=5; -update noar ti set b0='PZDSXVTKO6X8N8AFHR0I4HT' where id=5; -update noar tt set v0='9XB3PM8WDU12' where id=5; -update noar ti set v0='9XB3PM8WDU12' where id=5; -update noar tt set b1='G5Z20O4X25BYJZXYERMG39WY3RK4KS' where id=5; -update noar ti set b1='G5Z20O4X25BYJZXYERMG39WY3RK4KS' where id=5; -update noar tt set v0='M1TL1CGO3H907GOXFMZ24MEVE48' where id=5; -update noar ti set v0='M1TL1CGO3H907GOXFMZ24MEVE48' where id=5; -update noar tt set b2='2JI1XUJWWSBH8SQ0WF25KOVJVT8QP8V' where id=5; -update noar ti set b2='2JI1XUJWWSBH8SQ0WF25KOVJVT8QP8V' where id=5; -update noar tt set v0='VC9XCXGJI' where id=6; -update noar ti set v0='VC9XCXGJI' where id=6; -update noar tt set b0='G0LI6NX6NXY6N5UH4K' where id=6; -update noar ti set b0='G0LI6NX6NXY6N5UH4K' where id=6; -update noar tt set v0='2WUB3FLDW522V8258FRA4Q' where id=6; -update noar ti set v0='2WUB3FLDW522V8258FRA4Q' where id=6; -update noar tt set b1='NYUOA5ISGOIHQVE4A' where id=6; -update noar ti set b1='NYUOA5ISGOIHQVE4A' where id=6; -update noar tt set v0='BZIHQRIAC64ECGOXMP55XK25L8V15' where id=6; -update noar ti set v0='BZIHQRIAC64ECGOXMP55XK25L8V15' where id=6; -update noar tt set b2='ST1XVS1Y6BRN352WDU0K' where id=6; -update noar ti set b2='ST1XVS1Y6BRN352WDU0K' where id=6; -update noar tt set v0='44UM' where id=7; -update noar ti set v0='44UM' where id=7; -update noar tt set b0='I5CQYP' where id=7; -update noar ti set b0='I5CQYP' where id=7; -update noar tt set v0='TJ343D1B3VWBIGG7NM' where id=7; -update noar ti set v0='TJ343D1B3VWBIGG7NM' where id=7; -update noar tt set b1='BXRYO2WNW36J1LWGYFTSD' where id=7; -update noar ti set b1='BXRYO2WNW36J1LWGYFTSD' where id=7; -update noar tt set v0='1E5D4PGNE4K4PPF5Y7' where id=7; -update noar ti set v0='1E5D4PGNE4K4PPF5Y7' where id=7; -update noar tt set b2='X64IMDG6OY1AXORNE' where id=7; -update noar ti set b2='X64IMDG6OY1AXORNE' where id=7; -update noar tt set v0='C87D6PCJ1CQ7CE9W2G487UM7GR160O' where id=8; -update noar ti set v0='C87D6PCJ1CQ7CE9W2G487UM7GR160O' where id=8; -update noar tt set b0='G' where id=8; -update noar ti set b0='G' where id=8; -update noar tt set v0='6WVA84SF805DAE43GF0LZB77H2D23' where id=8; -update noar ti set v0='6WVA84SF805DAE43GF0LZB77H2D23' where id=8; -update noar tt set b1='RJXO1WV60MHO7QJDMLLS5864KTPIX6' where id=8; -update noar ti set b1='RJXO1WV60MHO7QJDMLLS5864KTPIX6' where id=8; -update noar tt set v0='Y8' where id=8; -update noar ti set v0='Y8' where id=8; -update noar tt set b2='L3F5NGAUCR0O7F9EZB7' where id=8; -update noar ti set b2='L3F5NGAUCR0O7F9EZB7' where id=8; -update noar tt set v0='JTWG7CW' where id=9; -update noar ti set v0='JTWG7CW' where id=9; -update noar tt set b0='1EHDDNDS308FLBSJYSONAN3K1N97' where id=9; -update noar ti set b0='1EHDDNDS308FLBSJYSONAN3K1N97' where id=9; -update noar tt set v0='HXZJJ3Z02TW0RR4NYL9T5MXH2MSM62V' where id=9; -update noar ti set v0='HXZJJ3Z02TW0RR4NYL9T5MXH2MSM62V' where id=9; -update noar tt set b1='53W417XTIZNEAWWCG6K1SY0DO3F5' where id=9; -update noar ti set b1='53W417XTIZNEAWWCG6K1SY0DO3F5' where id=9; -update noar tt set v0='2JS79G5' where id=9; -update noar ti set v0='2JS79G5' where id=9; -update noar tt set b2='M4TTSJFI' where id=9; -update noar ti set b2='M4TTSJFI' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - f0 int null, - v0 varchar(256) null, - b0 tinyblob null, - b1 mediumblob null, - b2 mediumblob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='D68GG5Q9SOQATAJUIA71FZ0LEDUJV' where id=1; -update noar ti set v0='D68GG5Q9SOQATAJUIA71FZ0LEDUJV' where id=1; -update noar tt set b0='M6L7IKRR77JHURU1PAHKKO5' where id=1; -update noar ti set b0='M6L7IKRR77JHURU1PAHKKO5' where id=1; -update noar tt set v0='B32PCJG2QFKW056ZAR' where id=1; -update noar ti set v0='B32PCJG2QFKW056ZAR' where id=1; -update noar tt set b1='N7QS2BWRG3SLC' where id=1; -update noar ti set b1='N7QS2BWRG3SLC' where id=1; -update noar tt set v0='UQ64Y7DPBKG5' where id=1; -update noar ti set v0='UQ64Y7DPBKG5' where id=1; -update noar tt set b2='HD4QCS8BRY5XK5XIEVOFB' where id=1; -update noar ti set b2='HD4QCS8BRY5XK5XIEVOFB' where id=1; -update noar tt set v0='QXX6SFI6IGJTYGB78V9N' where id=2; -update noar ti set v0='QXX6SFI6IGJTYGB78V9N' where id=2; -update noar tt set b0='CE0I08TZ70OMNBVXH' where id=2; -update noar ti set b0='CE0I08TZ70OMNBVXH' where id=2; -update noar tt set v0='X4LAQGDSRN4SUR1GMJMDBUSQX5WWFI4' where id=2; -update noar ti set v0='X4LAQGDSRN4SUR1GMJMDBUSQX5WWFI4' where id=2; -update noar tt set b1='F74' where id=2; -update noar ti set b1='F74' where id=2; -update noar tt set v0='XFKZW' where id=2; -update noar ti set v0='XFKZW' where id=2; -update noar tt set b2='CWOHV9JOST77Z6DRWXBGPVTGWTAE3668' where id=2; -update noar ti set b2='CWOHV9JOST77Z6DRWXBGPVTGWTAE3668' where id=2; -update noar tt set v0='113R56G447OXN' where id=3; -update noar ti set v0='113R56G447OXN' where id=3; -update noar tt set b0='1J4VS2HN0H1GLX' where id=3; -update noar ti set b0='1J4VS2HN0H1GLX' where id=3; -update noar tt set v0='5I8UK79FU3EPV2P01DIL8TVZ5RPQK40' where id=3; -update noar ti set v0='5I8UK79FU3EPV2P01DIL8TVZ5RPQK40' where id=3; -update noar tt set b1='DT6GZG4F7VVXKSODBPXFONXT' where id=3; -update noar ti set b1='DT6GZG4F7VVXKSODBPXFONXT' where id=3; -update noar tt set v0='ZV62DWN8NDA2TZH51GP9' where id=3; -update noar ti set v0='ZV62DWN8NDA2TZH51GP9' where id=3; -update noar tt set b2='HV6VBZEX23A' where id=3; -update noar ti set b2='HV6VBZEX23A' where id=3; -update noar tt set v0='BE' where id=4; -update noar ti set v0='BE' where id=4; -update noar tt set b0='9D2YHOQIKL978QDU7WBGDZ9' where id=4; -update noar ti set b0='9D2YHOQIKL978QDU7WBGDZ9' where id=4; -update noar tt set v0='H8Z0P33VT7Z0R17DA8' where id=4; -update noar ti set v0='H8Z0P33VT7Z0R17DA8' where id=4; -update noar tt set b1='BQ2HZ2WMKRUU76I0PEYLZGB' where id=4; -update noar ti set b1='BQ2HZ2WMKRUU76I0PEYLZGB' where id=4; -update noar tt set v0='MM' where id=4; -update noar ti set v0='MM' where id=4; -update noar tt set b2='OAB3M7JQTU2UT4YPG' where id=4; -update noar ti set b2='OAB3M7JQTU2UT4YPG' where id=4; -update noar tt set v0='ESJHULU968AI45R' where id=5; -update noar ti set v0='ESJHULU968AI45R' where id=5; -update noar tt set b0='4IG69AXMK2PFPGJITJF5VN7H4LC' where id=5; -update noar ti set b0='4IG69AXMK2PFPGJITJF5VN7H4LC' where id=5; -update noar tt set v0='GWO4X' where id=5; -update noar ti set v0='GWO4X' where id=5; -update noar tt set b1='VIPWYMLC' where id=5; -update noar ti set b1='VIPWYMLC' where id=5; -update noar tt set v0='UI7W299N46VA4115O3' where id=5; -update noar ti set v0='UI7W299N46VA4115O3' where id=5; -update noar tt set b2='IRHYWH9112H5AT' where id=5; -update noar ti set b2='IRHYWH9112H5AT' where id=5; -update noar tt set v0='RLPAXD7BR7ZNBE28CVROUTKAI7WA7A9' where id=6; -update noar ti set v0='RLPAXD7BR7ZNBE28CVROUTKAI7WA7A9' where id=6; -update noar tt set b0='Y10NRZSOYNI' where id=6; -update noar ti set b0='Y10NRZSOYNI' where id=6; -update noar tt set v0='5' where id=6; -update noar ti set v0='5' where id=6; -update noar tt set b1='KBVSUGQ46GM' where id=6; -update noar ti set b1='KBVSUGQ46GM' where id=6; -update noar tt set v0='MXBS7CXSSB9ONXTGE55L3GNGW' where id=6; -update noar ti set v0='MXBS7CXSSB9ONXTGE55L3GNGW' where id=6; -update noar tt set b2='7A' where id=6; -update noar ti set b2='7A' where id=6; -update noar tt set v0='W74N269MMSYJ9LRXXA' where id=7; -update noar ti set v0='W74N269MMSYJ9LRXXA' where id=7; -update noar tt set b0='FWDL5' where id=7; -update noar ti set b0='FWDL5' where id=7; -update noar tt set v0='8ULHZH9MCXPG3' where id=7; -update noar ti set v0='8ULHZH9MCXPG3' where id=7; -update noar tt set b1='Y6J2M' where id=7; -update noar ti set b1='Y6J2M' where id=7; -update noar tt set v0='YV51SWJN7W4GULEZ2RKUD12I' where id=7; -update noar ti set v0='YV51SWJN7W4GULEZ2RKUD12I' where id=7; -update noar tt set b2='DE9I19TJR75FQTQDQ0HWZADBY' where id=7; -update noar ti set b2='DE9I19TJR75FQTQDQ0HWZADBY' where id=7; -update noar tt set v0='BLECES8XEXKTB2KY7FK9SQ16WY3JV' where id=8; -update noar ti set v0='BLECES8XEXKTB2KY7FK9SQ16WY3JV' where id=8; -update noar tt set b0='AR' where id=8; -update noar ti set b0='AR' where id=8; -update noar tt set v0='09IRF87DNC' where id=8; -update noar ti set v0='09IRF87DNC' where id=8; -update noar tt set b1='OICBIIUGDPPOAVGSWOSL1UCI2ICEPQ' where id=8; -update noar ti set b1='OICBIIUGDPPOAVGSWOSL1UCI2ICEPQ' where id=8; -update noar tt set v0='S16J2' where id=8; -update noar ti set v0='S16J2' where id=8; -update noar tt set b2='9RY8PFPAA9UAGNVT5UYSB2KNNDGQ1K' where id=8; -update noar ti set b2='9RY8PFPAA9UAGNVT5UYSB2KNNDGQ1K' where id=8; -update noar tt set v0='6D26BW19C2H9E0YB2' where id=9; -update noar ti set v0='6D26BW19C2H9E0YB2' where id=9; -update noar tt set b0='MED6' where id=9; -update noar ti set b0='MED6' where id=9; -update noar tt set v0='M0QWIXGOO068AXGB528E704V8MX' where id=9; -update noar ti set v0='M0QWIXGOO068AXGB528E704V8MX' where id=9; -update noar tt set b1='ZJC4W89KJC2FHJGB' where id=9; -update noar ti set b1='ZJC4W89KJC2FHJGB' where id=9; -update noar tt set v0='HQKDA2Y4S338AX76RUFTW3DTU44N40' where id=9; -update noar ti set v0='HQKDA2Y4S338AX76RUFTW3DTU44N40' where id=9; -update noar tt set b2='QZFMIAIEGLEXXTNT' where id=9; -update noar ti set b2='QZFMIAIEGLEXXTNT' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - f0 int not null, - v0 varchar(32) not null, - b0 tinyblob not null, - b1 mediumblob not null, - b2 mediumblob not null -) engine=tokudb; -insert into tt values (1,0,'','','',''); -insert into tt values (2,0,'','','',''); -insert into tt values (3,0,'','','',''); -insert into tt values (4,0,'','','',''); -insert into tt values (5,0,'','','',''); -insert into tt values (6,0,'','','',''); -insert into tt values (7,0,'','','',''); -insert into tt values (8,0,'','','',''); -insert into tt values (9,0,'','','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='S3F7S9AK0YP' where id=1; -update noar ti set v0='S3F7S9AK0YP' where id=1; -update noar tt set b0='Z5UUTMGMKKZJ' where id=1; -update noar ti set b0='Z5UUTMGMKKZJ' where id=1; -update noar tt set v0='K3L7RJO' where id=1; -update noar ti set v0='K3L7RJO' where id=1; -update noar tt set b1='1622058N4DPL7H55O5OOL4VUR51RBIIV' where id=1; -update noar ti set b1='1622058N4DPL7H55O5OOL4VUR51RBIIV' where id=1; -update noar tt set v0='K31R9YMPUNN98F01KA0FIZ' where id=1; -update noar ti set v0='K31R9YMPUNN98F01KA0FIZ' where id=1; -update noar tt set b2='NFJ72P3VX50PQTU3JREOK7DO77' where id=1; -update noar ti set b2='NFJ72P3VX50PQTU3JREOK7DO77' where id=1; -update noar tt set v0='3W6OXZC779BHQLZ2YDX774J7TULGDCX' where id=2; -update noar ti set v0='3W6OXZC779BHQLZ2YDX774J7TULGDCX' where id=2; -update noar tt set b0='Y2WB054PXLQ0Q2RL40280TYRK7' where id=2; -update noar ti set b0='Y2WB054PXLQ0Q2RL40280TYRK7' where id=2; -update noar tt set v0='IK4' where id=2; -update noar ti set v0='IK4' where id=2; -update noar tt set b1='ETBRSMGLTFRUPHTTP' where id=2; -update noar ti set b1='ETBRSMGLTFRUPHTTP' where id=2; -update noar tt set v0='B79HM6DJD4NWN8' where id=2; -update noar ti set v0='B79HM6DJD4NWN8' where id=2; -update noar tt set b2='V2MKIYITZS0M3L5JCLF3S' where id=2; -update noar ti set b2='V2MKIYITZS0M3L5JCLF3S' where id=2; -update noar tt set v0='2ZB67WCYT37M61OMFBBIAYWP3' where id=3; -update noar ti set v0='2ZB67WCYT37M61OMFBBIAYWP3' where id=3; -update noar tt set b0='EV4WGVR93A8CAG9FUL' where id=3; -update noar ti set b0='EV4WGVR93A8CAG9FUL' where id=3; -update noar tt set v0='IPVFRLP' where id=3; -update noar ti set v0='IPVFRLP' where id=3; -update noar tt set b1='31LU3C' where id=3; -update noar ti set b1='31LU3C' where id=3; -update noar tt set v0='OO7ZU06UD77M1RQZZFY03A' where id=3; -update noar ti set v0='OO7ZU06UD77M1RQZZFY03A' where id=3; -update noar tt set b2='60VHD7B5Y4W' where id=3; -update noar ti set b2='60VHD7B5Y4W' where id=3; -update noar tt set v0='BB94V2JU6ALPIBTLG' where id=4; -update noar ti set v0='BB94V2JU6ALPIBTLG' where id=4; -update noar tt set b0='6IXQYM3N0IV8PTZ2I' where id=4; -update noar ti set b0='6IXQYM3N0IV8PTZ2I' where id=4; -update noar tt set v0='BVHUE64X6' where id=4; -update noar ti set v0='BVHUE64X6' where id=4; -update noar tt set b1='S8TZAY1QNUV8' where id=4; -update noar ti set b1='S8TZAY1QNUV8' where id=4; -update noar tt set v0='YN5PRCVKAX5V4316L2IB' where id=4; -update noar ti set v0='YN5PRCVKAX5V4316L2IB' where id=4; -update noar tt set b2='AFUO' where id=4; -update noar ti set b2='AFUO' where id=4; -update noar tt set v0='OPJDDYQQD1TNGIU7IVLX94E' where id=5; -update noar ti set v0='OPJDDYQQD1TNGIU7IVLX94E' where id=5; -update noar tt set b0='8O2QDIE193WD6M75RXMNO54FPD' where id=5; -update noar ti set b0='8O2QDIE193WD6M75RXMNO54FPD' where id=5; -update noar tt set v0='6FHUDYMHQ' where id=5; -update noar ti set v0='6FHUDYMHQ' where id=5; -update noar tt set b1='961WQOFE' where id=5; -update noar ti set b1='961WQOFE' where id=5; -update noar tt set v0='13BNPH6SG2' where id=5; -update noar ti set v0='13BNPH6SG2' where id=5; -update noar tt set b2='FT7GPE0L3' where id=5; -update noar ti set b2='FT7GPE0L3' where id=5; -update noar tt set v0='CNZOKRHRC9WWZZRCRHPQ1' where id=6; -update noar ti set v0='CNZOKRHRC9WWZZRCRHPQ1' where id=6; -update noar tt set b0='3LO2V4LLBZMRPMGL3QQSDDKM05' where id=6; -update noar ti set b0='3LO2V4LLBZMRPMGL3QQSDDKM05' where id=6; -update noar tt set v0='6APG6HGWLJTIIBDS9' where id=6; -update noar ti set v0='6APG6HGWLJTIIBDS9' where id=6; -update noar tt set b1='XIUSQTJ3KQRAM3BIDUU5STK6Z' where id=6; -update noar ti set b1='XIUSQTJ3KQRAM3BIDUU5STK6Z' where id=6; -update noar tt set v0='WIHRFWOM6RIQT02NNT1' where id=6; -update noar ti set v0='WIHRFWOM6RIQT02NNT1' where id=6; -update noar tt set b2='GLC41' where id=6; -update noar ti set b2='GLC41' where id=6; -update noar tt set v0='HXU2ON7XXF45V07QK1FTHPYZ06VNY24J' where id=7; -update noar ti set v0='HXU2ON7XXF45V07QK1FTHPYZ06VNY24J' where id=7; -update noar tt set b0='B3URBSGX1J' where id=7; -update noar ti set b0='B3URBSGX1J' where id=7; -update noar tt set v0='LL36B' where id=7; -update noar ti set v0='LL36B' where id=7; -update noar tt set b1='8XH7466YFSOORGNOAGIW' where id=7; -update noar ti set b1='8XH7466YFSOORGNOAGIW' where id=7; -update noar tt set v0='1ZSQIMUMTW81HPTQ5BGQQU4KL8OWBD' where id=7; -update noar ti set v0='1ZSQIMUMTW81HPTQ5BGQQU4KL8OWBD' where id=7; -update noar tt set b2='4JSJLNDWQHXVZZ' where id=7; -update noar ti set b2='4JSJLNDWQHXVZZ' where id=7; -update noar tt set v0='RK7PKKVKDH3SYN0GLKQ6VNS' where id=8; -update noar ti set v0='RK7PKKVKDH3SYN0GLKQ6VNS' where id=8; -update noar tt set b0='YL1E91R8B9SNTZZ7K8BDF6JME86CET2' where id=8; -update noar ti set b0='YL1E91R8B9SNTZZ7K8BDF6JME86CET2' where id=8; -update noar tt set v0='EDSER' where id=8; -update noar ti set v0='EDSER' where id=8; -update noar tt set b1='L47ZLG9SZ6LXO2I8VKPZ7G' where id=8; -update noar ti set b1='L47ZLG9SZ6LXO2I8VKPZ7G' where id=8; -update noar tt set v0='U' where id=8; -update noar ti set v0='U' where id=8; -update noar tt set b2='R7U7QIA4BC5ILV' where id=8; -update noar ti set b2='R7U7QIA4BC5ILV' where id=8; -update noar tt set v0='L34A926M4' where id=9; -update noar ti set v0='L34A926M4' where id=9; -update noar tt set b0='V3P35UFHF9B44UGPV' where id=9; -update noar ti set b0='V3P35UFHF9B44UGPV' where id=9; -update noar tt set v0='HK81AJ' where id=9; -update noar ti set v0='HK81AJ' where id=9; -update noar tt set b1='E68MZTQEMU3J6NQY0JD7RBQ7' where id=9; -update noar ti set b1='E68MZTQEMU3J6NQY0JD7RBQ7' where id=9; -update noar tt set v0='87UJ1M' where id=9; -update noar ti set v0='87UJ1M' where id=9; -update noar tt set b2='HEPA59RITMM9FYMS6O1' where id=9; -update noar ti set b2='HEPA59RITMM9FYMS6O1' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - f0 int not null, - v0 varchar(256) not null, - b0 tinyblob not null, - b1 mediumblob not null, - b2 mediumblob not null -) engine=tokudb; -insert into tt values (1,0,'','','',''); -insert into tt values (2,0,'','','',''); -insert into tt values (3,0,'','','',''); -insert into tt values (4,0,'','','',''); -insert into tt values (5,0,'','','',''); -insert into tt values (6,0,'','','',''); -insert into tt values (7,0,'','','',''); -insert into tt values (8,0,'','','',''); -insert into tt values (9,0,'','','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='KR6CD6J84QBMHHZMQPX56F4TH20' where id=1; -update noar ti set v0='KR6CD6J84QBMHHZMQPX56F4TH20' where id=1; -update noar tt set b0='YKLJEKDQMMTVB66Q1Y8RO' where id=1; -update noar ti set b0='YKLJEKDQMMTVB66Q1Y8RO' where id=1; -update noar tt set v0='I87' where id=1; -update noar ti set v0='I87' where id=1; -update noar tt set b1='FIH4E146YD9XAI8WTZ6EI7ZT8E6H' where id=1; -update noar ti set b1='FIH4E146YD9XAI8WTZ6EI7ZT8E6H' where id=1; -update noar tt set v0='7Z4Y2IVOA28OHY0NRCVK9WDV056' where id=1; -update noar ti set v0='7Z4Y2IVOA28OHY0NRCVK9WDV056' where id=1; -update noar tt set b2='9MR583L9POAYT06HVFZU8AMA' where id=1; -update noar ti set b2='9MR583L9POAYT06HVFZU8AMA' where id=1; -update noar tt set v0='ZUI9ETVQ5ML65N' where id=2; -update noar ti set v0='ZUI9ETVQ5ML65N' where id=2; -update noar tt set b0='G96KUMZ' where id=2; -update noar ti set b0='G96KUMZ' where id=2; -update noar tt set v0='VDOV3MDT3' where id=2; -update noar ti set v0='VDOV3MDT3' where id=2; -update noar tt set b1='IH06FHS8' where id=2; -update noar ti set b1='IH06FHS8' where id=2; -update noar tt set v0='PMLW0AO0IO6K8OIS4G353MK6C' where id=2; -update noar ti set v0='PMLW0AO0IO6K8OIS4G353MK6C' where id=2; -update noar tt set b2='DSILZ9VZD3YPV7UKRX3M' where id=2; -update noar ti set b2='DSILZ9VZD3YPV7UKRX3M' where id=2; -update noar tt set v0='TWLJHR0FL' where id=3; -update noar ti set v0='TWLJHR0FL' where id=3; -update noar tt set b0='7488CW' where id=3; -update noar ti set b0='7488CW' where id=3; -update noar tt set v0='U151TG' where id=3; -update noar ti set v0='U151TG' where id=3; -update noar tt set b1='DNCZUGXB9G1OI9WQNM6XEO' where id=3; -update noar ti set b1='DNCZUGXB9G1OI9WQNM6XEO' where id=3; -update noar tt set v0='EPOBTSF40D33J8474BYRVTI85V' where id=3; -update noar ti set v0='EPOBTSF40D33J8474BYRVTI85V' where id=3; -update noar tt set b2='XI' where id=3; -update noar ti set b2='XI' where id=3; -update noar tt set v0='R0W5P3E' where id=4; -update noar ti set v0='R0W5P3E' where id=4; -update noar tt set b0='9HINPQNXGA9XVJ5A3VJIP8JS' where id=4; -update noar ti set b0='9HINPQNXGA9XVJ5A3VJIP8JS' where id=4; -update noar tt set v0='LGXWKJWGM48NZ4D3IN470WGA8B0P5' where id=4; -update noar ti set v0='LGXWKJWGM48NZ4D3IN470WGA8B0P5' where id=4; -update noar tt set b1='TTFV7HNFFF1TZS2TNQQN47IGRE' where id=4; -update noar ti set b1='TTFV7HNFFF1TZS2TNQQN47IGRE' where id=4; -update noar tt set v0='VJ0SQ2LI65VG9V' where id=4; -update noar ti set v0='VJ0SQ2LI65VG9V' where id=4; -update noar tt set b2='OC8G060CPO0T7NV' where id=4; -update noar ti set b2='OC8G060CPO0T7NV' where id=4; -update noar tt set v0='A76VH8AT62PN7X6SO' where id=5; -update noar ti set v0='A76VH8AT62PN7X6SO' where id=5; -update noar tt set b0='HQI' where id=5; -update noar ti set b0='HQI' where id=5; -update noar tt set v0='PPEUE809UU' where id=5; -update noar ti set v0='PPEUE809UU' where id=5; -update noar tt set b1='MBG' where id=5; -update noar ti set b1='MBG' where id=5; -update noar tt set v0='YL0FNAO8K0OD8OX7SQHGPO' where id=5; -update noar ti set v0='YL0FNAO8K0OD8OX7SQHGPO' where id=5; -update noar tt set b2='IW203FVPO0ZC80BQC9' where id=5; -update noar ti set b2='IW203FVPO0ZC80BQC9' where id=5; -update noar tt set v0='9' where id=6; -update noar ti set v0='9' where id=6; -update noar tt set b0='RA173ND740XTMO6TVAF3A121PZEO1' where id=6; -update noar ti set b0='RA173ND740XTMO6TVAF3A121PZEO1' where id=6; -update noar tt set v0='9ZZUQYADGJVNH' where id=6; -update noar ti set v0='9ZZUQYADGJVNH' where id=6; -update noar tt set b1='41LB5CSJ1KKXUA0FHUZ0LFVP0UN1' where id=6; -update noar ti set b1='41LB5CSJ1KKXUA0FHUZ0LFVP0UN1' where id=6; -update noar tt set v0='1MHTHUQFUE7NDVBKGWTLS20P' where id=6; -update noar ti set v0='1MHTHUQFUE7NDVBKGWTLS20P' where id=6; -update noar tt set b2='FZNWI0T7D8HEGGXCDLW5V8' where id=6; -update noar ti set b2='FZNWI0T7D8HEGGXCDLW5V8' where id=6; -update noar tt set v0='PYG168I5HPMQZJ50WTW' where id=7; -update noar ti set v0='PYG168I5HPMQZJ50WTW' where id=7; -update noar tt set b0='AIP4G' where id=7; -update noar ti set b0='AIP4G' where id=7; -update noar tt set v0='RLL56UBNGW9V0H5B1JFTJ8T45' where id=7; -update noar ti set v0='RLL56UBNGW9V0H5B1JFTJ8T45' where id=7; -update noar tt set b1='8R04DYD8WXDL9J8GA9K46' where id=7; -update noar ti set b1='8R04DYD8WXDL9J8GA9K46' where id=7; -update noar tt set v0='1440DQZJA75KEPZ' where id=7; -update noar ti set v0='1440DQZJA75KEPZ' where id=7; -update noar tt set b2='1RRLN29GGT5510H1HGJQRN' where id=7; -update noar ti set b2='1RRLN29GGT5510H1HGJQRN' where id=7; -update noar tt set v0='A7FP' where id=8; -update noar ti set v0='A7FP' where id=8; -update noar tt set b0='ANJCN9' where id=8; -update noar ti set b0='ANJCN9' where id=8; -update noar tt set v0='MOTAOXADB7OLGUA' where id=8; -update noar ti set v0='MOTAOXADB7OLGUA' where id=8; -update noar tt set b1='VKZ6KTY4RY' where id=8; -update noar ti set b1='VKZ6KTY4RY' where id=8; -update noar tt set v0='3UZR27J18RDXFZYM9R9O8YDJ5ZQ' where id=8; -update noar ti set v0='3UZR27J18RDXFZYM9R9O8YDJ5ZQ' where id=8; -update noar tt set b2='4FG0QHESKSZWVQXPYLO94LDQ3EJH' where id=8; -update noar ti set b2='4FG0QHESKSZWVQXPYLO94LDQ3EJH' where id=8; -update noar tt set v0='9QTTIQVM2X5445E1301' where id=9; -update noar ti set v0='9QTTIQVM2X5445E1301' where id=9; -update noar tt set b0='0ZUTGBTKWPV6DNOU368JF9' where id=9; -update noar ti set b0='0ZUTGBTKWPV6DNOU368JF9' where id=9; -update noar tt set v0='EOKS4EH9CAB58NNTO6' where id=9; -update noar ti set v0='EOKS4EH9CAB58NNTO6' where id=9; -update noar tt set b1='QV9JKQS7TFIZEI' where id=9; -update noar ti set b1='QV9JKQS7TFIZEI' where id=9; -update noar tt set v0='523I0MUVJGEERQWURHOKW2XA17U2L' where id=9; -update noar ti set v0='523I0MUVJGEERQWURHOKW2XA17U2L' where id=9; -update noar tt set b2='DJPLTJ3B3ZI5KDSGN3J' where id=9; -update noar ti set b2='DJPLTJ3B3ZI5KDSGN3J' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - f0 int null, - v0 varchar(32) null, - b0 tinyblob null, - b1 mediumblob null, - b2 longblob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='QI1D524Q1F0N1ZCQRQQBJHCO' where id=1; -update noar ti set v0='QI1D524Q1F0N1ZCQRQQBJHCO' where id=1; -update noar tt set b0='PAFV69S' where id=1; -update noar ti set b0='PAFV69S' where id=1; -update noar tt set v0='409ATEAANPGR91AX0A0M' where id=1; -update noar ti set v0='409ATEAANPGR91AX0A0M' where id=1; -update noar tt set b1='LB21FBR33M95CARMU64NI' where id=1; -update noar ti set b1='LB21FBR33M95CARMU64NI' where id=1; -update noar tt set v0='Z6HOGCQD4CD' where id=1; -update noar ti set v0='Z6HOGCQD4CD' where id=1; -update noar tt set b2='VPQZG88' where id=1; -update noar ti set b2='VPQZG88' where id=1; -update noar tt set v0='R9P0OHVUEQS4L63EA0RE93N' where id=2; -update noar ti set v0='R9P0OHVUEQS4L63EA0RE93N' where id=2; -update noar tt set b0='F0' where id=2; -update noar ti set b0='F0' where id=2; -update noar tt set v0='P28R16ZVLNQG03ZLOUQWMW' where id=2; -update noar ti set v0='P28R16ZVLNQG03ZLOUQWMW' where id=2; -update noar tt set b1='QIT57VJ4' where id=2; -update noar ti set b1='QIT57VJ4' where id=2; -update noar tt set v0='VFK7784E8XA1Y78T4KZ9X9F1JC1DW9' where id=2; -update noar ti set v0='VFK7784E8XA1Y78T4KZ9X9F1JC1DW9' where id=2; -update noar tt set b2='Q54H9KI1LH' where id=2; -update noar ti set b2='Q54H9KI1LH' where id=2; -update noar tt set v0='XSG3KHPK3SDS462XWJSDDK' where id=3; -update noar ti set v0='XSG3KHPK3SDS462XWJSDDK' where id=3; -update noar tt set b0='PMFR2O1H9EW9OIP1RHT6LOPF4ZJSQ' where id=3; -update noar ti set b0='PMFR2O1H9EW9OIP1RHT6LOPF4ZJSQ' where id=3; -update noar tt set v0='5HL3KNE693HPYYQ1WAJH' where id=3; -update noar ti set v0='5HL3KNE693HPYYQ1WAJH' where id=3; -update noar tt set b1='CWA86VXD80VCBODCTRZ2KH507K' where id=3; -update noar ti set b1='CWA86VXD80VCBODCTRZ2KH507K' where id=3; -update noar tt set v0='4JXQ0USI6W4NDSZ8SALR0ARP' where id=3; -update noar ti set v0='4JXQ0USI6W4NDSZ8SALR0ARP' where id=3; -update noar tt set b2='OE10V' where id=3; -update noar ti set b2='OE10V' where id=3; -update noar tt set v0='1PDUHI59GTBI3JKOKFW0' where id=4; -update noar ti set v0='1PDUHI59GTBI3JKOKFW0' where id=4; -update noar tt set b0='JDQBUVHWHW56AMEIODVTZVI2B1F' where id=4; -update noar ti set b0='JDQBUVHWHW56AMEIODVTZVI2B1F' where id=4; -update noar tt set v0='E45XB8CQV9ICXLVTEGF' where id=4; -update noar ti set v0='E45XB8CQV9ICXLVTEGF' where id=4; -update noar tt set b1='GQYJ04AD9B' where id=4; -update noar ti set b1='GQYJ04AD9B' where id=4; -update noar tt set v0='C88UGD7EP3W2SY2W' where id=4; -update noar ti set v0='C88UGD7EP3W2SY2W' where id=4; -update noar tt set b2='C6H1EG1PS62NB1NP1LZH7' where id=4; -update noar ti set b2='C6H1EG1PS62NB1NP1LZH7' where id=4; -update noar tt set v0='EGBAY8M07WWQ8FELS7BSO2ZFU' where id=5; -update noar ti set v0='EGBAY8M07WWQ8FELS7BSO2ZFU' where id=5; -update noar tt set b0='ITK60WIK' where id=5; -update noar ti set b0='ITK60WIK' where id=5; -update noar tt set v0='MHCY2LN8RDAS159QSJNNO5XL7ROVA81' where id=5; -update noar ti set v0='MHCY2LN8RDAS159QSJNNO5XL7ROVA81' where id=5; -update noar tt set b1='M3ZE1' where id=5; -update noar ti set b1='M3ZE1' where id=5; -update noar tt set v0='3TQW87CF8R6NRTA3MGSWKL' where id=5; -update noar ti set v0='3TQW87CF8R6NRTA3MGSWKL' where id=5; -update noar tt set b2='XF5EV84RRH46WSU' where id=5; -update noar ti set b2='XF5EV84RRH46WSU' where id=5; -update noar tt set v0='GAQPM9PEZ9J9' where id=6; -update noar ti set v0='GAQPM9PEZ9J9' where id=6; -update noar tt set b0='JNFM9DOS07CX' where id=6; -update noar ti set b0='JNFM9DOS07CX' where id=6; -update noar tt set v0='EKTA2JA' where id=6; -update noar ti set v0='EKTA2JA' where id=6; -update noar tt set b1='9TI64C8W' where id=6; -update noar ti set b1='9TI64C8W' where id=6; -update noar tt set v0='QPQO6L45ERCQ' where id=6; -update noar ti set v0='QPQO6L45ERCQ' where id=6; -update noar tt set b2='YU6O322N84' where id=6; -update noar ti set b2='YU6O322N84' where id=6; -update noar tt set v0='9MOPKEC3YHUC7JCBDE3DNAWYIQ5JGRLJ' where id=7; -update noar ti set v0='9MOPKEC3YHUC7JCBDE3DNAWYIQ5JGRLJ' where id=7; -update noar tt set b0='K1VOH19RCN5M0H9' where id=7; -update noar ti set b0='K1VOH19RCN5M0H9' where id=7; -update noar tt set v0='Z1PEO653XQ' where id=7; -update noar ti set v0='Z1PEO653XQ' where id=7; -update noar tt set b1='E7FTONJM9D5YK4XSC7B232MAHZEQBI' where id=7; -update noar ti set b1='E7FTONJM9D5YK4XSC7B232MAHZEQBI' where id=7; -update noar tt set v0='1CHPH7IBAKB5MJD7CER4ZW' where id=7; -update noar ti set v0='1CHPH7IBAKB5MJD7CER4ZW' where id=7; -update noar tt set b2='H8I2AB424FIW1G0Y06QAVQ' where id=7; -update noar ti set b2='H8I2AB424FIW1G0Y06QAVQ' where id=7; -update noar tt set v0='P9C6M01CH7T3O00LP9FSBMHZM' where id=8; -update noar ti set v0='P9C6M01CH7T3O00LP9FSBMHZM' where id=8; -update noar tt set b0='P1K19RV7VCEZTO7Z93Q1VMT' where id=8; -update noar ti set b0='P1K19RV7VCEZTO7Z93Q1VMT' where id=8; -update noar tt set v0='SYEX0YYSQ2027AF8R662XUHY38' where id=8; -update noar ti set v0='SYEX0YYSQ2027AF8R662XUHY38' where id=8; -update noar tt set b1='Z46W8IVOU102' where id=8; -update noar ti set b1='Z46W8IVOU102' where id=8; -update noar tt set v0='3FC82NFQVXW92HK4TLP4FI8AWWRKJ5' where id=8; -update noar ti set v0='3FC82NFQVXW92HK4TLP4FI8AWWRKJ5' where id=8; -update noar tt set b2='Z1F4CV84KTF' where id=8; -update noar ti set b2='Z1F4CV84KTF' where id=8; -update noar tt set v0='9WJE2BGKD' where id=9; -update noar ti set v0='9WJE2BGKD' where id=9; -update noar tt set b0='XHZX1I8N23X7PYXIZMSGJVTSG9YBPP' where id=9; -update noar ti set b0='XHZX1I8N23X7PYXIZMSGJVTSG9YBPP' where id=9; -update noar tt set v0='3ZC3UYU38PXORS1U5GC997LTW6QU3' where id=9; -update noar ti set v0='3ZC3UYU38PXORS1U5GC997LTW6QU3' where id=9; -update noar tt set b1='4MRXLH' where id=9; -update noar ti set b1='4MRXLH' where id=9; -update noar tt set v0='HX1SEM5J857LF8MG4EDN' where id=9; -update noar ti set v0='HX1SEM5J857LF8MG4EDN' where id=9; -update noar tt set b2='TLHBOX3UVX879TGT3W' where id=9; -update noar ti set b2='TLHBOX3UVX879TGT3W' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - f0 int null, - v0 varchar(256) null, - b0 tinyblob null, - b1 mediumblob null, - b2 longblob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='UGNW0NVR9CGHXEE' where id=1; -update noar ti set v0='UGNW0NVR9CGHXEE' where id=1; -update noar tt set b0='JZP1DF02Q2G08DC4J' where id=1; -update noar ti set b0='JZP1DF02Q2G08DC4J' where id=1; -update noar tt set v0='OUK5P1NMIKTAYB0LUOD' where id=1; -update noar ti set v0='OUK5P1NMIKTAYB0LUOD' where id=1; -update noar tt set b1='3RC0S4F0T9GKAFI3DGEWMYR6E4' where id=1; -update noar ti set b1='3RC0S4F0T9GKAFI3DGEWMYR6E4' where id=1; -update noar tt set v0='RXAQ2ZJKPIEGLGDS6GB6N' where id=1; -update noar ti set v0='RXAQ2ZJKPIEGLGDS6GB6N' where id=1; -update noar tt set b2='6X3Q836J0HJAMIO32I9MQ59PF' where id=1; -update noar ti set b2='6X3Q836J0HJAMIO32I9MQ59PF' where id=1; -update noar tt set v0='J' where id=2; -update noar ti set v0='J' where id=2; -update noar tt set b0='4EE1BFRMWLI12I1M7Y8LIJ7GCLD0' where id=2; -update noar ti set b0='4EE1BFRMWLI12I1M7Y8LIJ7GCLD0' where id=2; -update noar tt set v0='DVCWYO' where id=2; -update noar ti set v0='DVCWYO' where id=2; -update noar tt set b1='AV615JHC8H0YVWUZ8LCT6YEQV' where id=2; -update noar ti set b1='AV615JHC8H0YVWUZ8LCT6YEQV' where id=2; -update noar tt set v0='SQ32WAZI0XC9UCZOW57AK' where id=2; -update noar ti set v0='SQ32WAZI0XC9UCZOW57AK' where id=2; -update noar tt set b2='H8QNRP06IZ98HU' where id=2; -update noar ti set b2='H8QNRP06IZ98HU' where id=2; -update noar tt set v0='GCSIQH4HQGOVW6LOUMIFI3DNLK8PQJ' where id=3; -update noar ti set v0='GCSIQH4HQGOVW6LOUMIFI3DNLK8PQJ' where id=3; -update noar tt set b0='SR5BE2' where id=3; -update noar ti set b0='SR5BE2' where id=3; -update noar tt set v0='FUK4CPT09' where id=3; -update noar ti set v0='FUK4CPT09' where id=3; -update noar tt set b1='FK93J39T' where id=3; -update noar ti set b1='FK93J39T' where id=3; -update noar tt set v0='Y8MPUQX06QU93ISM' where id=3; -update noar ti set v0='Y8MPUQX06QU93ISM' where id=3; -update noar tt set b2='AQOM794MF6' where id=3; -update noar ti set b2='AQOM794MF6' where id=3; -update noar tt set v0='YGNZ37H2EY' where id=4; -update noar ti set v0='YGNZ37H2EY' where id=4; -update noar tt set b0='ISTM731LD2T0VS9GTV1127IZ31D7' where id=4; -update noar ti set b0='ISTM731LD2T0VS9GTV1127IZ31D7' where id=4; -update noar tt set v0='EVMR7QIFIA5ET' where id=4; -update noar ti set v0='EVMR7QIFIA5ET' where id=4; -update noar tt set b1='OEE8YI2NTBI830RQ50EOTJ' where id=4; -update noar ti set b1='OEE8YI2NTBI830RQ50EOTJ' where id=4; -update noar tt set v0='CM340O76' where id=4; -update noar ti set v0='CM340O76' where id=4; -update noar tt set b2='MTVH671' where id=4; -update noar ti set b2='MTVH671' where id=4; -update noar tt set v0='NUXIT7YXBWNU7JSSEG' where id=5; -update noar ti set v0='NUXIT7YXBWNU7JSSEG' where id=5; -update noar tt set b0='5Q2Q6V7687QVIXLKZ' where id=5; -update noar ti set b0='5Q2Q6V7687QVIXLKZ' where id=5; -update noar tt set v0='DRLXXKEFR' where id=5; -update noar ti set v0='DRLXXKEFR' where id=5; -update noar tt set b1='NKU03MBYK' where id=5; -update noar ti set b1='NKU03MBYK' where id=5; -update noar tt set v0='JVR3WRCQDPZRNM' where id=5; -update noar ti set v0='JVR3WRCQDPZRNM' where id=5; -update noar tt set b2='2EEAQS3Z3CAKPH6X5' where id=5; -update noar ti set b2='2EEAQS3Z3CAKPH6X5' where id=5; -update noar tt set v0='5MPNKQWARIS25H67PT69WJGFYFS68393' where id=6; -update noar ti set v0='5MPNKQWARIS25H67PT69WJGFYFS68393' where id=6; -update noar tt set b0='L0WOAUA8WXYQ79E8L' where id=6; -update noar ti set b0='L0WOAUA8WXYQ79E8L' where id=6; -update noar tt set v0='90K71NJ4WWF0T2EAP5' where id=6; -update noar ti set v0='90K71NJ4WWF0T2EAP5' where id=6; -update noar tt set b1='XHAOECLN4YC7LRK8U8CHX0C349' where id=6; -update noar ti set b1='XHAOECLN4YC7LRK8U8CHX0C349' where id=6; -update noar tt set v0='8734P' where id=6; -update noar ti set v0='8734P' where id=6; -update noar tt set b2='C' where id=6; -update noar ti set b2='C' where id=6; -update noar tt set v0='R' where id=7; -update noar ti set v0='R' where id=7; -update noar tt set b0='L3X5DO95UYNEIE48SV2R5' where id=7; -update noar ti set b0='L3X5DO95UYNEIE48SV2R5' where id=7; -update noar tt set v0='9GMTQFPDXZ5RZY6ELJ2UD8BEHIU' where id=7; -update noar ti set v0='9GMTQFPDXZ5RZY6ELJ2UD8BEHIU' where id=7; -update noar tt set b1='48TEU3QD39KNR7223EPV' where id=7; -update noar ti set b1='48TEU3QD39KNR7223EPV' where id=7; -update noar tt set v0='2T92WIU6XOLA5VU' where id=7; -update noar ti set v0='2T92WIU6XOLA5VU' where id=7; -update noar tt set b2='WMA40QRLVM937BKUZVF444M8A81QKX' where id=7; -update noar ti set b2='WMA40QRLVM937BKUZVF444M8A81QKX' where id=7; -update noar tt set v0='BPPUE21RWWR0NXYWDA' where id=8; -update noar ti set v0='BPPUE21RWWR0NXYWDA' where id=8; -update noar tt set b0='ZG9QN48YJM13AYU5YYQVM7BM145HVYOT' where id=8; -update noar ti set b0='ZG9QN48YJM13AYU5YYQVM7BM145HVYOT' where id=8; -update noar tt set v0='W97MQZ' where id=8; -update noar ti set v0='W97MQZ' where id=8; -update noar tt set b1='Q2652ZRV6NHLCVEN0212YE' where id=8; -update noar ti set b1='Q2652ZRV6NHLCVEN0212YE' where id=8; -update noar tt set v0='5TRGJOZFXF64CHGHVTGR6WQ55PU6' where id=8; -update noar ti set v0='5TRGJOZFXF64CHGHVTGR6WQ55PU6' where id=8; -update noar tt set b2='2Z2MHTS9A8M7AYJV' where id=8; -update noar ti set b2='2Z2MHTS9A8M7AYJV' where id=8; -update noar tt set v0='1SRR' where id=9; -update noar ti set v0='1SRR' where id=9; -update noar tt set b0='K0RGO5EAPJ9QXFISR2RBVI6Q1P' where id=9; -update noar ti set b0='K0RGO5EAPJ9QXFISR2RBVI6Q1P' where id=9; -update noar tt set v0='PFVSYT0IF6ZB' where id=9; -update noar ti set v0='PFVSYT0IF6ZB' where id=9; -update noar tt set b1='CE6AP' where id=9; -update noar ti set b1='CE6AP' where id=9; -update noar tt set v0='WSLG7UVT8HD4TT9X0C1' where id=9; -update noar ti set v0='WSLG7UVT8HD4TT9X0C1' where id=9; -update noar tt set b2='P7F7NRQYGF1TFO8ZOGBRJV' where id=9; -update noar ti set b2='P7F7NRQYGF1TFO8ZOGBRJV' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - f0 int not null, - v0 varchar(32) not null, - b0 tinyblob not null, - b1 mediumblob not null, - b2 longblob not null -) engine=tokudb; -insert into tt values (1,0,'','','',''); -insert into tt values (2,0,'','','',''); -insert into tt values (3,0,'','','',''); -insert into tt values (4,0,'','','',''); -insert into tt values (5,0,'','','',''); -insert into tt values (6,0,'','','',''); -insert into tt values (7,0,'','','',''); -insert into tt values (8,0,'','','',''); -insert into tt values (9,0,'','','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='07J9' where id=1; -update noar ti set v0='07J9' where id=1; -update noar tt set b0='DUNKPINS' where id=1; -update noar ti set b0='DUNKPINS' where id=1; -update noar tt set v0='YD9BMR9BDMAZ4LVFCUJG9GVNTM' where id=1; -update noar ti set v0='YD9BMR9BDMAZ4LVFCUJG9GVNTM' where id=1; -update noar tt set b1='T4EWDSW5IX2STVK1TPIL717N5N3VP' where id=1; -update noar ti set b1='T4EWDSW5IX2STVK1TPIL717N5N3VP' where id=1; -update noar tt set v0='3I9WPSAUCBCP9Y' where id=1; -update noar ti set v0='3I9WPSAUCBCP9Y' where id=1; -update noar tt set b2='89KVC0QT2EFKMSO846PA8GLF6FWBOVHS' where id=1; -update noar ti set b2='89KVC0QT2EFKMSO846PA8GLF6FWBOVHS' where id=1; -update noar tt set v0='AUDY6GSLY' where id=2; -update noar ti set v0='AUDY6GSLY' where id=2; -update noar tt set b0='IS3TCTF4X1Y5' where id=2; -update noar ti set b0='IS3TCTF4X1Y5' where id=2; -update noar tt set v0='L7KOQ5B' where id=2; -update noar ti set v0='L7KOQ5B' where id=2; -update noar tt set b1='C4398W6L1EQTAH6' where id=2; -update noar ti set b1='C4398W6L1EQTAH6' where id=2; -update noar tt set v0='1YV3LGXWK9G4JLPSU1YQ9T3IU2EK3GI' where id=2; -update noar ti set v0='1YV3LGXWK9G4JLPSU1YQ9T3IU2EK3GI' where id=2; -update noar tt set b2='8E8HPFSUFTRCF0ZTEJ2BWJB0L3DMB4OK' where id=2; -update noar ti set b2='8E8HPFSUFTRCF0ZTEJ2BWJB0L3DMB4OK' where id=2; -update noar tt set v0='KGDBMO3SQWHJN5F6JU3U70K' where id=3; -update noar ti set v0='KGDBMO3SQWHJN5F6JU3U70K' where id=3; -update noar tt set b0='EK55ZT' where id=3; -update noar ti set b0='EK55ZT' where id=3; -update noar tt set v0='K' where id=3; -update noar ti set v0='K' where id=3; -update noar tt set b1='079DI85RQAQ5ID094U1W9' where id=3; -update noar ti set b1='079DI85RQAQ5ID094U1W9' where id=3; -update noar tt set v0='7UVJRKSQ26BTR1L8H8' where id=3; -update noar ti set v0='7UVJRKSQ26BTR1L8H8' where id=3; -update noar tt set b2='84F' where id=3; -update noar ti set b2='84F' where id=3; -update noar tt set v0='OPQTY9S0013' where id=4; -update noar ti set v0='OPQTY9S0013' where id=4; -update noar tt set b0='3E03NQ5OUYGN7E' where id=4; -update noar ti set b0='3E03NQ5OUYGN7E' where id=4; -update noar tt set v0='IBMJ' where id=4; -update noar ti set v0='IBMJ' where id=4; -update noar tt set b1='GQO72754ZJRHIO1D1WQ' where id=4; -update noar ti set b1='GQO72754ZJRHIO1D1WQ' where id=4; -update noar tt set v0='659P2XRROO0W0IETQNNHPSRB5WIG8MC' where id=4; -update noar ti set v0='659P2XRROO0W0IETQNNHPSRB5WIG8MC' where id=4; -update noar tt set b2='SX8N2G6EG3PJ' where id=4; -update noar ti set b2='SX8N2G6EG3PJ' where id=4; -update noar tt set v0='R5VN14NT4BRCZ3HT79JTHVO2W9H4X' where id=5; -update noar ti set v0='R5VN14NT4BRCZ3HT79JTHVO2W9H4X' where id=5; -update noar tt set b0='Z1KDZ4QEXRFZ1WYE0O81' where id=5; -update noar ti set b0='Z1KDZ4QEXRFZ1WYE0O81' where id=5; -update noar tt set v0='OQ5K08AX2NLXEF0Y7TZ8AWEFOW5UL' where id=5; -update noar ti set v0='OQ5K08AX2NLXEF0Y7TZ8AWEFOW5UL' where id=5; -update noar tt set b1='QY5' where id=5; -update noar ti set b1='QY5' where id=5; -update noar tt set v0='68ABPZVUNIOF' where id=5; -update noar ti set v0='68ABPZVUNIOF' where id=5; -update noar tt set b2='U5MSBBG' where id=5; -update noar ti set b2='U5MSBBG' where id=5; -update noar tt set v0='0M60K' where id=6; -update noar ti set v0='0M60K' where id=6; -update noar tt set b0='CQE8YSG0P8FIEPK' where id=6; -update noar ti set b0='CQE8YSG0P8FIEPK' where id=6; -update noar tt set v0='TCGONP' where id=6; -update noar ti set v0='TCGONP' where id=6; -update noar tt set b1='WTUDN93FH9WR5EIVCC' where id=6; -update noar ti set b1='WTUDN93FH9WR5EIVCC' where id=6; -update noar tt set v0='UDBYJ2NP0L13M67FROEDNJ' where id=6; -update noar ti set v0='UDBYJ2NP0L13M67FROEDNJ' where id=6; -update noar tt set b2='KB7857KMDAE2A4ZP4H872LASYZIKI' where id=6; -update noar ti set b2='KB7857KMDAE2A4ZP4H872LASYZIKI' where id=6; -update noar tt set v0='CJN0Q' where id=7; -update noar ti set v0='CJN0Q' where id=7; -update noar tt set b0='UEX4LLVH' where id=7; -update noar ti set b0='UEX4LLVH' where id=7; -update noar tt set v0='FBDZA4KGFLK9VDBA6YF1BCB' where id=7; -update noar ti set v0='FBDZA4KGFLK9VDBA6YF1BCB' where id=7; -update noar tt set b1='Z' where id=7; -update noar ti set b1='Z' where id=7; -update noar tt set v0='PTHB1U2FB238V5AY8YWNPUD3BZZRWT' where id=7; -update noar ti set v0='PTHB1U2FB238V5AY8YWNPUD3BZZRWT' where id=7; -update noar tt set b2='OWJTW5N6I0MUL7' where id=7; -update noar ti set b2='OWJTW5N6I0MUL7' where id=7; -update noar tt set v0='I5Y0GD5PFS4148N3IX8Y0M' where id=8; -update noar ti set v0='I5Y0GD5PFS4148N3IX8Y0M' where id=8; -update noar tt set b0='JMG6XCLCSOTI7X' where id=8; -update noar ti set b0='JMG6XCLCSOTI7X' where id=8; -update noar tt set v0='7V' where id=8; -update noar ti set v0='7V' where id=8; -update noar tt set b1='L' where id=8; -update noar ti set b1='L' where id=8; -update noar tt set v0='H4F5IV445QI46N30L1A77HX' where id=8; -update noar ti set v0='H4F5IV445QI46N30L1A77HX' where id=8; -update noar tt set b2='CNBLU0YN0TW3TVZA7' where id=8; -update noar ti set b2='CNBLU0YN0TW3TVZA7' where id=8; -update noar tt set v0='A7PUDKEI861Z9JY1YPN0PTTG24SMQV' where id=9; -update noar ti set v0='A7PUDKEI861Z9JY1YPN0PTTG24SMQV' where id=9; -update noar tt set b0='YIHPA9MJ752BQCWTCFS6Z' where id=9; -update noar ti set b0='YIHPA9MJ752BQCWTCFS6Z' where id=9; -update noar tt set v0='UCHJNTO63C2M5HDX0MID5NGZTO82L5X' where id=9; -update noar ti set v0='UCHJNTO63C2M5HDX0MID5NGZTO82L5X' where id=9; -update noar tt set b1='5BQ9J410YDMIQLH5JYAK9JTNMTZ2GPFO' where id=9; -update noar ti set b1='5BQ9J410YDMIQLH5JYAK9JTNMTZ2GPFO' where id=9; -update noar tt set v0='HLUUN5PSG2EBDAER' where id=9; -update noar ti set v0='HLUUN5PSG2EBDAER' where id=9; -update noar tt set b2='HUXWVIJAC91WLWGWZ6Y' where id=9; -update noar ti set b2='HUXWVIJAC91WLWGWZ6Y' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - f0 int not null, - v0 varchar(256) not null, - b0 tinyblob not null, - b1 mediumblob not null, - b2 longblob not null -) engine=tokudb; -insert into tt values (1,0,'','','',''); -insert into tt values (2,0,'','','',''); -insert into tt values (3,0,'','','',''); -insert into tt values (4,0,'','','',''); -insert into tt values (5,0,'','','',''); -insert into tt values (6,0,'','','',''); -insert into tt values (7,0,'','','',''); -insert into tt values (8,0,'','','',''); -insert into tt values (9,0,'','','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='Y1HELL2FKSCKFYWHK81CHJL7TTB3C4JI' where id=1; -update noar ti set v0='Y1HELL2FKSCKFYWHK81CHJL7TTB3C4JI' where id=1; -update noar tt set b0='B1J2G22QAZLVOVP03K' where id=1; -update noar ti set b0='B1J2G22QAZLVOVP03K' where id=1; -update noar tt set v0='32M7T6IAS8' where id=1; -update noar ti set v0='32M7T6IAS8' where id=1; -update noar tt set b1='F41H0X9C4JYJ3' where id=1; -update noar ti set b1='F41H0X9C4JYJ3' where id=1; -update noar tt set v0='9YL7' where id=1; -update noar ti set v0='9YL7' where id=1; -update noar tt set b2='3' where id=1; -update noar ti set b2='3' where id=1; -update noar tt set v0='JF7H5N41N' where id=2; -update noar ti set v0='JF7H5N41N' where id=2; -update noar tt set b0='GORM0ID' where id=2; -update noar ti set b0='GORM0ID' where id=2; -update noar tt set v0='PSYD' where id=2; -update noar ti set v0='PSYD' where id=2; -update noar tt set b1='VWYUNAFKQCS5VJQ1YVM4DGT34' where id=2; -update noar ti set b1='VWYUNAFKQCS5VJQ1YVM4DGT34' where id=2; -update noar tt set v0='FKX75B0' where id=2; -update noar ti set v0='FKX75B0' where id=2; -update noar tt set b2='S' where id=2; -update noar ti set b2='S' where id=2; -update noar tt set v0='GQ3C2VIOTO' where id=3; -update noar ti set v0='GQ3C2VIOTO' where id=3; -update noar tt set b0='U0080HKSK66S1WLDI4' where id=3; -update noar ti set b0='U0080HKSK66S1WLDI4' where id=3; -update noar tt set v0='RIOXR7U1154H6' where id=3; -update noar ti set v0='RIOXR7U1154H6' where id=3; -update noar tt set b1='92OUPM55WJFZ93FVNM599USZRVTI29FD' where id=3; -update noar ti set b1='92OUPM55WJFZ93FVNM599USZRVTI29FD' where id=3; -update noar tt set v0='INSI9L7YES4S6M72OH2SB3BK8L' where id=3; -update noar ti set v0='INSI9L7YES4S6M72OH2SB3BK8L' where id=3; -update noar tt set b2='D0YFA7B23SBA7EZOYVK' where id=3; -update noar ti set b2='D0YFA7B23SBA7EZOYVK' where id=3; -update noar tt set v0='UWFW1YT9TR' where id=4; -update noar ti set v0='UWFW1YT9TR' where id=4; -update noar tt set b0='LC0JKL1H189YWRGASK7' where id=4; -update noar ti set b0='LC0JKL1H189YWRGASK7' where id=4; -update noar tt set v0='RJ0LOLIEIEI0VPYIOCEKSOSL' where id=4; -update noar ti set v0='RJ0LOLIEIEI0VPYIOCEKSOSL' where id=4; -update noar tt set b1='QI1Z6HHW7YL6J1GVMFPC4HE2110' where id=4; -update noar ti set b1='QI1Z6HHW7YL6J1GVMFPC4HE2110' where id=4; -update noar tt set v0='OLB3X9' where id=4; -update noar ti set v0='OLB3X9' where id=4; -update noar tt set b2='FR77ASOFM8DHX4WKEWXZCEQU81' where id=4; -update noar ti set b2='FR77ASOFM8DHX4WKEWXZCEQU81' where id=4; -update noar tt set v0='75EQXYSTLF9L' where id=5; -update noar ti set v0='75EQXYSTLF9L' where id=5; -update noar tt set b0='QLA96AONO9FMTQ1REJ8T9FOASIIP' where id=5; -update noar ti set b0='QLA96AONO9FMTQ1REJ8T9FOASIIP' where id=5; -update noar tt set v0='52F5SOPZCEJHDO85B80ZD9' where id=5; -update noar ti set v0='52F5SOPZCEJHDO85B80ZD9' where id=5; -update noar tt set b1='DX3P56C8RTV' where id=5; -update noar ti set b1='DX3P56C8RTV' where id=5; -update noar tt set v0='5CIRDRFLI46' where id=5; -update noar ti set v0='5CIRDRFLI46' where id=5; -update noar tt set b2='TSFZN780' where id=5; -update noar ti set b2='TSFZN780' where id=5; -update noar tt set v0='LERXY7N33M94X' where id=6; -update noar ti set v0='LERXY7N33M94X' where id=6; -update noar tt set b0='7OTMGUWQGSDQJHIRNE5F4DU7DZHPXHHZ' where id=6; -update noar ti set b0='7OTMGUWQGSDQJHIRNE5F4DU7DZHPXHHZ' where id=6; -update noar tt set v0='DJDFOB26H7LXNTX' where id=6; -update noar ti set v0='DJDFOB26H7LXNTX' where id=6; -update noar tt set b1='M3JBUKUU' where id=6; -update noar ti set b1='M3JBUKUU' where id=6; -update noar tt set v0='E2ARTWETV6PF' where id=6; -update noar ti set v0='E2ARTWETV6PF' where id=6; -update noar tt set b2='DPPCLK1SUW0VUPQ63' where id=6; -update noar ti set b2='DPPCLK1SUW0VUPQ63' where id=6; -update noar tt set v0='0LQ6P493JPNCO7YX5PFPRN8LNPL' where id=7; -update noar ti set v0='0LQ6P493JPNCO7YX5PFPRN8LNPL' where id=7; -update noar tt set b0='1QF5OTOLTC80E' where id=7; -update noar ti set b0='1QF5OTOLTC80E' where id=7; -update noar tt set v0='YKY6' where id=7; -update noar ti set v0='YKY6' where id=7; -update noar tt set b1='QT6R3RUR6BF27B' where id=7; -update noar ti set b1='QT6R3RUR6BF27B' where id=7; -update noar tt set v0='CPS2F8IV6BGIMYZP3GMJVB4I' where id=7; -update noar ti set v0='CPS2F8IV6BGIMYZP3GMJVB4I' where id=7; -update noar tt set b2='RKTFHR1Z1NP0P7VU20Z' where id=7; -update noar ti set b2='RKTFHR1Z1NP0P7VU20Z' where id=7; -update noar tt set v0='W4FR22244IVXF86053WMHMN9A6Y5LBT' where id=8; -update noar ti set v0='W4FR22244IVXF86053WMHMN9A6Y5LBT' where id=8; -update noar tt set b0='Q6K7UJDG9RPA5C1J' where id=8; -update noar ti set b0='Q6K7UJDG9RPA5C1J' where id=8; -update noar tt set v0='5Z5' where id=8; -update noar ti set v0='5Z5' where id=8; -update noar tt set b1='9ZP2C5ZOBGIKIHNG5A1HUN' where id=8; -update noar ti set b1='9ZP2C5ZOBGIKIHNG5A1HUN' where id=8; -update noar tt set v0='95ES6ZYFJS9Z9L9AM95E4YUAZS8J8' where id=8; -update noar ti set v0='95ES6ZYFJS9Z9L9AM95E4YUAZS8J8' where id=8; -update noar tt set b2='5G85BF4ME' where id=8; -update noar ti set b2='5G85BF4ME' where id=8; -update noar tt set v0='PO6I5UU' where id=9; -update noar ti set v0='PO6I5UU' where id=9; -update noar tt set b0='G8UNHO346VDSQY' where id=9; -update noar ti set b0='G8UNHO346VDSQY' where id=9; -update noar tt set v0='RU7' where id=9; -update noar ti set v0='RU7' where id=9; -update noar tt set b1='HZZ9VVU6WZPDGJVFY4CODI8ZH' where id=9; -update noar ti set b1='HZZ9VVU6WZPDGJVFY4CODI8ZH' where id=9; -update noar tt set v0='2L7ZQABVFBPMEA6UZ' where id=9; -update noar ti set v0='2L7ZQABVFBPMEA6UZ' where id=9; -update noar tt set b2='PS0LKOIW4HGSJJ27DFDX7XV5EJ' where id=9; -update noar ti set b2='PS0LKOIW4HGSJJ27DFDX7XV5EJ' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - f0 int null, - v0 varchar(32) null, - b0 tinyblob null, - b1 longblob null, - b2 tinyblob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='O499U2CZ1W0U5UI2Z' where id=1; -update noar ti set v0='O499U2CZ1W0U5UI2Z' where id=1; -update noar tt set b0='HOGQ6ZM7PN9OFRYJ' where id=1; -update noar ti set b0='HOGQ6ZM7PN9OFRYJ' where id=1; -update noar tt set v0='CBNRM20N' where id=1; -update noar ti set v0='CBNRM20N' where id=1; -update noar tt set b1='B1EGGLEC19FD' where id=1; -update noar ti set b1='B1EGGLEC19FD' where id=1; -update noar tt set v0='QH144WL15HL2' where id=1; -update noar ti set v0='QH144WL15HL2' where id=1; -update noar tt set b2='QW' where id=1; -update noar ti set b2='QW' where id=1; -update noar tt set v0='NN4RBU45QV5T' where id=2; -update noar ti set v0='NN4RBU45QV5T' where id=2; -update noar tt set b0='4IRAIOI2DEDW028P2Y0P4I9PW' where id=2; -update noar ti set b0='4IRAIOI2DEDW028P2Y0P4I9PW' where id=2; -update noar tt set v0='UXDZ86EVPLUYKPYG1BLB0P171MWI73' where id=2; -update noar ti set v0='UXDZ86EVPLUYKPYG1BLB0P171MWI73' where id=2; -update noar tt set b1='1CV3KS5OY6PV984WGM1V6J4H65WAWRJ' where id=2; -update noar ti set b1='1CV3KS5OY6PV984WGM1V6J4H65WAWRJ' where id=2; -update noar tt set v0='1GLZUW4P2BME97A9' where id=2; -update noar ti set v0='1GLZUW4P2BME97A9' where id=2; -update noar tt set b2='BA' where id=2; -update noar ti set b2='BA' where id=2; -update noar tt set v0='ABF9F8LHJ2FXCBXA4K12WIJLZCU3ZJ' where id=3; -update noar ti set v0='ABF9F8LHJ2FXCBXA4K12WIJLZCU3ZJ' where id=3; -update noar tt set b0='DW7C9KSN5F4F' where id=3; -update noar ti set b0='DW7C9KSN5F4F' where id=3; -update noar tt set v0='ILZZLX6XAMWY8MXTF8NQ4' where id=3; -update noar ti set v0='ILZZLX6XAMWY8MXTF8NQ4' where id=3; -update noar tt set b1='4EK0FH63EC4224EIEBE' where id=3; -update noar ti set b1='4EK0FH63EC4224EIEBE' where id=3; -update noar tt set v0='N2B6ZXIN2XPGMFXJFEZT7KXZ6R' where id=3; -update noar ti set v0='N2B6ZXIN2XPGMFXJFEZT7KXZ6R' where id=3; -update noar tt set b2='8BZS8XFLDG5NM47F20VL' where id=3; -update noar ti set b2='8BZS8XFLDG5NM47F20VL' where id=3; -update noar tt set v0='CFRL1' where id=4; -update noar ti set v0='CFRL1' where id=4; -update noar tt set b0='D6IHVPTY3E4OEHCVCG2XZI5CTX7' where id=4; -update noar ti set b0='D6IHVPTY3E4OEHCVCG2XZI5CTX7' where id=4; -update noar tt set v0='8XQWCT32XM5GUY' where id=4; -update noar ti set v0='8XQWCT32XM5GUY' where id=4; -update noar tt set b1='XU3B0LMV6' where id=4; -update noar ti set b1='XU3B0LMV6' where id=4; -update noar tt set v0='HNS54CLWPG' where id=4; -update noar ti set v0='HNS54CLWPG' where id=4; -update noar tt set b2='OCN93J' where id=4; -update noar ti set b2='OCN93J' where id=4; -update noar tt set v0='3NC3111G0' where id=5; -update noar ti set v0='3NC3111G0' where id=5; -update noar tt set b0='E7P4G7HSADKZ33JP' where id=5; -update noar ti set b0='E7P4G7HSADKZ33JP' where id=5; -update noar tt set v0='OQJOKYD3ZMO4ULOBOI5U0QE' where id=5; -update noar ti set v0='OQJOKYD3ZMO4ULOBOI5U0QE' where id=5; -update noar tt set b1='FUTBSPFJW9' where id=5; -update noar ti set b1='FUTBSPFJW9' where id=5; -update noar tt set v0='D2B382WPFCJFWUNF6DYWCU1JNRA5ZU7S' where id=5; -update noar ti set v0='D2B382WPFCJFWUNF6DYWCU1JNRA5ZU7S' where id=5; -update noar tt set b2='UGKLD2ZMDAXL8J' where id=5; -update noar ti set b2='UGKLD2ZMDAXL8J' where id=5; -update noar tt set v0='NL0' where id=6; -update noar ti set v0='NL0' where id=6; -update noar tt set b0='AFRT5VNZI6M9HBYGLNXW8S7F2AH4' where id=6; -update noar ti set b0='AFRT5VNZI6M9HBYGLNXW8S7F2AH4' where id=6; -update noar tt set v0='V9BWD3VTY6BJ3AWD1PNR' where id=6; -update noar ti set v0='V9BWD3VTY6BJ3AWD1PNR' where id=6; -update noar tt set b1='6FNDCH8SF5XB429IA5X' where id=6; -update noar ti set b1='6FNDCH8SF5XB429IA5X' where id=6; -update noar tt set v0='IF2ZL2R5MP1K2C4PEQ4SRPFI4CVW' where id=6; -update noar ti set v0='IF2ZL2R5MP1K2C4PEQ4SRPFI4CVW' where id=6; -update noar tt set b2='Z1X' where id=6; -update noar ti set b2='Z1X' where id=6; -update noar tt set v0='JP3L46DYRU57IMQUH6F11V6LD8I5PQFA' where id=7; -update noar ti set v0='JP3L46DYRU57IMQUH6F11V6LD8I5PQFA' where id=7; -update noar tt set b0='W8FEU2QI41UU' where id=7; -update noar ti set b0='W8FEU2QI41UU' where id=7; -update noar tt set v0='DTN5493H62FR4QMPLM0SHNBAY' where id=7; -update noar ti set v0='DTN5493H62FR4QMPLM0SHNBAY' where id=7; -update noar tt set b1='L' where id=7; -update noar ti set b1='L' where id=7; -update noar tt set v0='28N78LGK5681XW2O0ZQ3413N' where id=7; -update noar ti set v0='28N78LGK5681XW2O0ZQ3413N' where id=7; -update noar tt set b2='LB' where id=7; -update noar ti set b2='LB' where id=7; -update noar tt set v0='K0PXWYPVVS6UKSZXDVAD0KRCES18' where id=8; -update noar ti set v0='K0PXWYPVVS6UKSZXDVAD0KRCES18' where id=8; -update noar tt set b0='BE41M2NILQBGIFZKUVWWAXW5V' where id=8; -update noar ti set b0='BE41M2NILQBGIFZKUVWWAXW5V' where id=8; -update noar tt set v0='EA764I8854CN12SM61ZYUOLIM' where id=8; -update noar ti set v0='EA764I8854CN12SM61ZYUOLIM' where id=8; -update noar tt set b1='62C44ERE9T9B6OKFOFMJJ' where id=8; -update noar ti set b1='62C44ERE9T9B6OKFOFMJJ' where id=8; -update noar tt set v0='Z' where id=8; -update noar ti set v0='Z' where id=8; -update noar tt set b2='F' where id=8; -update noar ti set b2='F' where id=8; -update noar tt set v0='D' where id=9; -update noar ti set v0='D' where id=9; -update noar tt set b0='WLJ3G7B27FAP7' where id=9; -update noar ti set b0='WLJ3G7B27FAP7' where id=9; -update noar tt set v0='J4VVG' where id=9; -update noar ti set v0='J4VVG' where id=9; -update noar tt set b1='RW953YD6XQ8ZEYIJOTXF03TB6KX1' where id=9; -update noar ti set b1='RW953YD6XQ8ZEYIJOTXF03TB6KX1' where id=9; -update noar tt set v0='UW3BP' where id=9; -update noar ti set v0='UW3BP' where id=9; -update noar tt set b2='M5KQT1FW5W7U7JP6UU526891R' where id=9; -update noar ti set b2='M5KQT1FW5W7U7JP6UU526891R' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - f0 int null, - v0 varchar(256) null, - b0 tinyblob null, - b1 longblob null, - b2 tinyblob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='XF' where id=1; -update noar ti set v0='XF' where id=1; -update noar tt set b0='3' where id=1; -update noar ti set b0='3' where id=1; -update noar tt set v0='A6QOWZN4S58T5I9O1SYU' where id=1; -update noar ti set v0='A6QOWZN4S58T5I9O1SYU' where id=1; -update noar tt set b1='976UZYZWOTVTRXJXN7HZKE8I85A0K' where id=1; -update noar ti set b1='976UZYZWOTVTRXJXN7HZKE8I85A0K' where id=1; -update noar tt set v0='KASQOJAZYLH7522ZGJR7C0S' where id=1; -update noar ti set v0='KASQOJAZYLH7522ZGJR7C0S' where id=1; -update noar tt set b2='3WZ397NXLG3N' where id=1; -update noar ti set b2='3WZ397NXLG3N' where id=1; -update noar tt set v0='G15ZR759C18GH7ZRUBRMPI6' where id=2; -update noar ti set v0='G15ZR759C18GH7ZRUBRMPI6' where id=2; -update noar tt set b0='L9HOSVU9UFY82J60ER71CEO' where id=2; -update noar ti set b0='L9HOSVU9UFY82J60ER71CEO' where id=2; -update noar tt set v0='QGBSN1SYLXVBZHXF5QSE29GN4AGN' where id=2; -update noar ti set v0='QGBSN1SYLXVBZHXF5QSE29GN4AGN' where id=2; -update noar tt set b1='34LMM06001ZZ1' where id=2; -update noar ti set b1='34LMM06001ZZ1' where id=2; -update noar tt set v0='JOWCDZRHUAJS' where id=2; -update noar ti set v0='JOWCDZRHUAJS' where id=2; -update noar tt set b2='L0YP9JOAI' where id=2; -update noar ti set b2='L0YP9JOAI' where id=2; -update noar tt set v0='WS9OFMFTEA8' where id=3; -update noar ti set v0='WS9OFMFTEA8' where id=3; -update noar tt set b0='FPKZO1OKSF' where id=3; -update noar ti set b0='FPKZO1OKSF' where id=3; -update noar tt set v0='X' where id=3; -update noar ti set v0='X' where id=3; -update noar tt set b1='KTE0LMG' where id=3; -update noar ti set b1='KTE0LMG' where id=3; -update noar tt set v0='NFT97P3N' where id=3; -update noar ti set v0='NFT97P3N' where id=3; -update noar tt set b2='M0BKYAH9LAOAVA8HAFQ8' where id=3; -update noar ti set b2='M0BKYAH9LAOAVA8HAFQ8' where id=3; -update noar tt set v0='VWP5TMV4JPTEC' where id=4; -update noar ti set v0='VWP5TMV4JPTEC' where id=4; -update noar tt set b0='C863YPMAR8FZB14TSR04ILM' where id=4; -update noar ti set b0='C863YPMAR8FZB14TSR04ILM' where id=4; -update noar tt set v0='IFO2Z1JZT256W2ID6M2MPM17SJHJMS' where id=4; -update noar ti set v0='IFO2Z1JZT256W2ID6M2MPM17SJHJMS' where id=4; -update noar tt set b1='NVJGJ4BFA3LCV8G904HXRFVR' where id=4; -update noar ti set b1='NVJGJ4BFA3LCV8G904HXRFVR' where id=4; -update noar tt set v0='0NKJIY3PU9MX631CEARFT7ZSYV7BD' where id=4; -update noar ti set v0='0NKJIY3PU9MX631CEARFT7ZSYV7BD' where id=4; -update noar tt set b2='IXFWSLZ8BPF7SE5PAUO6JQ4JT10KG7FN' where id=4; -update noar ti set b2='IXFWSLZ8BPF7SE5PAUO6JQ4JT10KG7FN' where id=4; -update noar tt set v0='007UEFQYUZTFIC170KBWMHGVZ52DD' where id=5; -update noar ti set v0='007UEFQYUZTFIC170KBWMHGVZ52DD' where id=5; -update noar tt set b0='45R6A9J2WR5WFIY59L27NZCUJR76SF' where id=5; -update noar ti set b0='45R6A9J2WR5WFIY59L27NZCUJR76SF' where id=5; -update noar tt set v0='KXGQKB7M7J9' where id=5; -update noar ti set v0='KXGQKB7M7J9' where id=5; -update noar tt set b1='TTH7CLMJ55BJT90X3NPK2H' where id=5; -update noar ti set b1='TTH7CLMJ55BJT90X3NPK2H' where id=5; -update noar tt set v0='Z0JG' where id=5; -update noar ti set v0='Z0JG' where id=5; -update noar tt set b2='8V12WQ' where id=5; -update noar ti set b2='8V12WQ' where id=5; -update noar tt set v0='T5RDQMTUS4I6GG8A' where id=6; -update noar ti set v0='T5RDQMTUS4I6GG8A' where id=6; -update noar tt set b0='RXCSZUFA' where id=6; -update noar ti set b0='RXCSZUFA' where id=6; -update noar tt set v0='A78GCCEC3DFH3PBYRRJ' where id=6; -update noar ti set v0='A78GCCEC3DFH3PBYRRJ' where id=6; -update noar tt set b1='1WYJKHJ' where id=6; -update noar ti set b1='1WYJKHJ' where id=6; -update noar tt set v0='T8H438' where id=6; -update noar ti set v0='T8H438' where id=6; -update noar tt set b2='0U1C086J0CVWO667TVGWF2NCWR' where id=6; -update noar ti set b2='0U1C086J0CVWO667TVGWF2NCWR' where id=6; -update noar tt set v0='ZV9DD2K' where id=7; -update noar ti set v0='ZV9DD2K' where id=7; -update noar tt set b0='GAZRV51LRM2W7XARPJI96Q2W56JO1S' where id=7; -update noar ti set b0='GAZRV51LRM2W7XARPJI96Q2W56JO1S' where id=7; -update noar tt set v0='5B23WF2AV83ASMM86569CEWSOPD1IO' where id=7; -update noar ti set v0='5B23WF2AV83ASMM86569CEWSOPD1IO' where id=7; -update noar tt set b1='C319BC2GP5VNWH4B7K' where id=7; -update noar ti set b1='C319BC2GP5VNWH4B7K' where id=7; -update noar tt set v0='6' where id=7; -update noar ti set v0='6' where id=7; -update noar tt set b2='Q3SZ2DHXOIVE75P7PYMBD7A1LSLY' where id=7; -update noar ti set b2='Q3SZ2DHXOIVE75P7PYMBD7A1LSLY' where id=7; -update noar tt set v0='AOUSMNYZ1O3NG' where id=8; -update noar ti set v0='AOUSMNYZ1O3NG' where id=8; -update noar tt set b0='T5S15UY76FRGODV8PWRTD' where id=8; -update noar ti set b0='T5S15UY76FRGODV8PWRTD' where id=8; -update noar tt set v0='OHTUWHZ5QGM1IJ1' where id=8; -update noar ti set v0='OHTUWHZ5QGM1IJ1' where id=8; -update noar tt set b1='D5BDQWNSHW48MEC7YYKP7TH9' where id=8; -update noar ti set b1='D5BDQWNSHW48MEC7YYKP7TH9' where id=8; -update noar tt set v0='7GLJRK22AX' where id=8; -update noar ti set v0='7GLJRK22AX' where id=8; -update noar tt set b2='QTP9SXDN9KMZ2XLSCFEYQBN3S40RXZE3' where id=8; -update noar ti set b2='QTP9SXDN9KMZ2XLSCFEYQBN3S40RXZE3' where id=8; -update noar tt set v0='K9GFV5MCVWOGNW02OSARQTXIXD5MJGOA' where id=9; -update noar ti set v0='K9GFV5MCVWOGNW02OSARQTXIXD5MJGOA' where id=9; -update noar tt set b0='HW' where id=9; -update noar ti set b0='HW' where id=9; -update noar tt set v0='SMJKXITBLWIDWXTKHVFO' where id=9; -update noar ti set v0='SMJKXITBLWIDWXTKHVFO' where id=9; -update noar tt set b1='1KKUBT' where id=9; -update noar ti set b1='1KKUBT' where id=9; -update noar tt set v0='YSKSZJ54FUI5M3ZUJMRMB95T2WEOC1X8' where id=9; -update noar ti set v0='YSKSZJ54FUI5M3ZUJMRMB95T2WEOC1X8' where id=9; -update noar tt set b2='2FRG1Z3KBKZAZONJW910UZRZ5S8Z' where id=9; -update noar ti set b2='2FRG1Z3KBKZAZONJW910UZRZ5S8Z' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - f0 int not null, - v0 varchar(32) not null, - b0 tinyblob not null, - b1 longblob not null, - b2 tinyblob not null -) engine=tokudb; -insert into tt values (1,0,'','','',''); -insert into tt values (2,0,'','','',''); -insert into tt values (3,0,'','','',''); -insert into tt values (4,0,'','','',''); -insert into tt values (5,0,'','','',''); -insert into tt values (6,0,'','','',''); -insert into tt values (7,0,'','','',''); -insert into tt values (8,0,'','','',''); -insert into tt values (9,0,'','','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='AGORYO3XICF546JO' where id=1; -update noar ti set v0='AGORYO3XICF546JO' where id=1; -update noar tt set b0='DT4TGFZ02FOEZQ1YZHKUU2PM' where id=1; -update noar ti set b0='DT4TGFZ02FOEZQ1YZHKUU2PM' where id=1; -update noar tt set v0='3N4N9GK1ODC5UR7U03LY7MRTBBR125' where id=1; -update noar ti set v0='3N4N9GK1ODC5UR7U03LY7MRTBBR125' where id=1; -update noar tt set b1='L2NQR' where id=1; -update noar ti set b1='L2NQR' where id=1; -update noar tt set v0='ZF' where id=1; -update noar ti set v0='ZF' where id=1; -update noar tt set b2='5OEALYIG2NUOU1L42IED6ODGLMWVU' where id=1; -update noar ti set b2='5OEALYIG2NUOU1L42IED6ODGLMWVU' where id=1; -update noar tt set v0='VA37BM8OEW' where id=2; -update noar ti set v0='VA37BM8OEW' where id=2; -update noar tt set b0='SU4ER' where id=2; -update noar ti set b0='SU4ER' where id=2; -update noar tt set v0='ZVZ' where id=2; -update noar ti set v0='ZVZ' where id=2; -update noar tt set b1='1N0WILVRGEDP0KWFLHCVJNM' where id=2; -update noar ti set b1='1N0WILVRGEDP0KWFLHCVJNM' where id=2; -update noar tt set v0='V58CNNCU' where id=2; -update noar ti set v0='V58CNNCU' where id=2; -update noar tt set b2='8QIODIN7JXTNFF5ZY11' where id=2; -update noar ti set b2='8QIODIN7JXTNFF5ZY11' where id=2; -update noar tt set v0='WHBVGQWJ9V9' where id=3; -update noar ti set v0='WHBVGQWJ9V9' where id=3; -update noar tt set b0='FRXY4PBPM' where id=3; -update noar ti set b0='FRXY4PBPM' where id=3; -update noar tt set v0='TG4VPGMDOPZ7U0YP3FQKXP' where id=3; -update noar ti set v0='TG4VPGMDOPZ7U0YP3FQKXP' where id=3; -update noar tt set b1='BKKIPWCNZCOM4SFG6I1685' where id=3; -update noar ti set b1='BKKIPWCNZCOM4SFG6I1685' where id=3; -update noar tt set v0='FB51XUOQM8JSVNURD' where id=3; -update noar ti set v0='FB51XUOQM8JSVNURD' where id=3; -update noar tt set b2='JF466JG8VJLUTFA7RYSX' where id=3; -update noar ti set b2='JF466JG8VJLUTFA7RYSX' where id=3; -update noar tt set v0='Y19X8K12I3DJN41CB0M10M' where id=4; -update noar ti set v0='Y19X8K12I3DJN41CB0M10M' where id=4; -update noar tt set b0='G5TKU140GTS2OLMGI5LN6ROLC' where id=4; -update noar ti set b0='G5TKU140GTS2OLMGI5LN6ROLC' where id=4; -update noar tt set v0='00X' where id=4; -update noar ti set v0='00X' where id=4; -update noar tt set b1='UPK0Y' where id=4; -update noar ti set b1='UPK0Y' where id=4; -update noar tt set v0='ARLX6XOGACL8OT0NO16S' where id=4; -update noar ti set v0='ARLX6XOGACL8OT0NO16S' where id=4; -update noar tt set b2='TZNHOLJPYJN2LFQ0' where id=4; -update noar ti set b2='TZNHOLJPYJN2LFQ0' where id=4; -update noar tt set v0='WCVZS5WOX2DKE5WMAHHVHQ9SJ2DC6' where id=5; -update noar ti set v0='WCVZS5WOX2DKE5WMAHHVHQ9SJ2DC6' where id=5; -update noar tt set b0='FDTGFFYFCVKE39XRU4GU2' where id=5; -update noar ti set b0='FDTGFFYFCVKE39XRU4GU2' where id=5; -update noar tt set v0='67JQTYB3669A9ILN2ENV0ABPI3X54AH' where id=5; -update noar ti set v0='67JQTYB3669A9ILN2ENV0ABPI3X54AH' where id=5; -update noar tt set b1='CXRZ7CDSQMXTS03' where id=5; -update noar ti set b1='CXRZ7CDSQMXTS03' where id=5; -update noar tt set v0='Y5ZNL0M1AXRYWDNFPHNO67K86IEJXE0' where id=5; -update noar ti set v0='Y5ZNL0M1AXRYWDNFPHNO67K86IEJXE0' where id=5; -update noar tt set b2='S3IJ6AU434W0NNR' where id=5; -update noar ti set b2='S3IJ6AU434W0NNR' where id=5; -update noar tt set v0='OO' where id=6; -update noar ti set v0='OO' where id=6; -update noar tt set b0='0U' where id=6; -update noar ti set b0='0U' where id=6; -update noar tt set v0='BPRFO7AX' where id=6; -update noar ti set v0='BPRFO7AX' where id=6; -update noar tt set b1='HA43QB11MJGMWHOYM0UXTTZL5CG4XND' where id=6; -update noar ti set b1='HA43QB11MJGMWHOYM0UXTTZL5CG4XND' where id=6; -update noar tt set v0='FKLAWT88071J5FIWK4YPDRN8ZFVGH' where id=6; -update noar ti set v0='FKLAWT88071J5FIWK4YPDRN8ZFVGH' where id=6; -update noar tt set b2='SFDCA0GYJQ2NEKYPD0FCF947ACIAJIQQ' where id=6; -update noar ti set b2='SFDCA0GYJQ2NEKYPD0FCF947ACIAJIQQ' where id=6; -update noar tt set v0='0XOIHMW2VDC6ZV7M' where id=7; -update noar ti set v0='0XOIHMW2VDC6ZV7M' where id=7; -update noar tt set b0='3Q3QHT8UQ' where id=7; -update noar ti set b0='3Q3QHT8UQ' where id=7; -update noar tt set v0='DVPZT' where id=7; -update noar ti set v0='DVPZT' where id=7; -update noar tt set b1='PZJBM894C0ITAPPR1AC1L9YG0FD0' where id=7; -update noar ti set b1='PZJBM894C0ITAPPR1AC1L9YG0FD0' where id=7; -update noar tt set v0='DPO7CDC6JA419135ITNXEZH' where id=7; -update noar ti set v0='DPO7CDC6JA419135ITNXEZH' where id=7; -update noar tt set b2='7JEZQR1JD0O9QP' where id=7; -update noar ti set b2='7JEZQR1JD0O9QP' where id=7; -update noar tt set v0='HW5P3SW7XGW5DPDCLWZE14M3U' where id=8; -update noar ti set v0='HW5P3SW7XGW5DPDCLWZE14M3U' where id=8; -update noar tt set b0='VN1KPJ27EEYGT' where id=8; -update noar ti set b0='VN1KPJ27EEYGT' where id=8; -update noar tt set v0='A5TNYVJ5CE29Q' where id=8; -update noar ti set v0='A5TNYVJ5CE29Q' where id=8; -update noar tt set b1='91DT3KTEDGKG' where id=8; -update noar ti set b1='91DT3KTEDGKG' where id=8; -update noar tt set v0='BWVY' where id=8; -update noar ti set v0='BWVY' where id=8; -update noar tt set b2='NXBDW2864XZ65K3GBTR' where id=8; -update noar ti set b2='NXBDW2864XZ65K3GBTR' where id=8; -update noar tt set v0='C4LJBWGZI' where id=9; -update noar ti set v0='C4LJBWGZI' where id=9; -update noar tt set b0='MMFX1' where id=9; -update noar ti set b0='MMFX1' where id=9; -update noar tt set v0='PQYGKMNLJ6A3PB434R0ZZ3' where id=9; -update noar ti set v0='PQYGKMNLJ6A3PB434R0ZZ3' where id=9; -update noar tt set b1='CXLTIUK5KACD4' where id=9; -update noar ti set b1='CXLTIUK5KACD4' where id=9; -update noar tt set v0='FBC2TMO17MRZ5DP90GCLZVBUX17XE' where id=9; -update noar ti set v0='FBC2TMO17MRZ5DP90GCLZVBUX17XE' where id=9; -update noar tt set b2='6Z56T4PFMITOGQ' where id=9; -update noar ti set b2='6Z56T4PFMITOGQ' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - f0 int not null, - v0 varchar(256) not null, - b0 tinyblob not null, - b1 longblob not null, - b2 tinyblob not null -) engine=tokudb; -insert into tt values (1,0,'','','',''); -insert into tt values (2,0,'','','',''); -insert into tt values (3,0,'','','',''); -insert into tt values (4,0,'','','',''); -insert into tt values (5,0,'','','',''); -insert into tt values (6,0,'','','',''); -insert into tt values (7,0,'','','',''); -insert into tt values (8,0,'','','',''); -insert into tt values (9,0,'','','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='1IN6JSX20VB' where id=1; -update noar ti set v0='1IN6JSX20VB' where id=1; -update noar tt set b0='L9E5CTQTIXE4E8L6Z6EI76PFZHBC' where id=1; -update noar ti set b0='L9E5CTQTIXE4E8L6Z6EI76PFZHBC' where id=1; -update noar tt set v0='VB5' where id=1; -update noar ti set v0='VB5' where id=1; -update noar tt set b1='Z2XH055S871J974MO61IMS' where id=1; -update noar ti set b1='Z2XH055S871J974MO61IMS' where id=1; -update noar tt set v0='AV' where id=1; -update noar ti set v0='AV' where id=1; -update noar tt set b2='6KDRDIMINIHO908M' where id=1; -update noar ti set b2='6KDRDIMINIHO908M' where id=1; -update noar tt set v0='IS64XN3WH8N5OF1J1R' where id=2; -update noar ti set v0='IS64XN3WH8N5OF1J1R' where id=2; -update noar tt set b0='NVU2VCFUQ1B9RHO0M0PISUOG3KTK' where id=2; -update noar ti set b0='NVU2VCFUQ1B9RHO0M0PISUOG3KTK' where id=2; -update noar tt set v0='NCXQ0OXOXHLQNVE9N14V' where id=2; -update noar ti set v0='NCXQ0OXOXHLQNVE9N14V' where id=2; -update noar tt set b1='Q1N7955HTTRMSE4CR' where id=2; -update noar ti set b1='Q1N7955HTTRMSE4CR' where id=2; -update noar tt set v0='M1PHHA' where id=2; -update noar ti set v0='M1PHHA' where id=2; -update noar tt set b2='PBIO8SVVJOYWBDTHS2OJ51' where id=2; -update noar ti set b2='PBIO8SVVJOYWBDTHS2OJ51' where id=2; -update noar tt set v0='R' where id=3; -update noar ti set v0='R' where id=3; -update noar tt set b0='GA' where id=3; -update noar ti set b0='GA' where id=3; -update noar tt set v0='GMG16V2X12GR7TZ5B5F1X3IDQQMS4' where id=3; -update noar ti set v0='GMG16V2X12GR7TZ5B5F1X3IDQQMS4' where id=3; -update noar tt set b1='6IJHJ' where id=3; -update noar ti set b1='6IJHJ' where id=3; -update noar tt set v0='LTE7A9QFCWXBKC20VIMFGAVS9' where id=3; -update noar ti set v0='LTE7A9QFCWXBKC20VIMFGAVS9' where id=3; -update noar tt set b2='LG512WWLSUT8J' where id=3; -update noar ti set b2='LG512WWLSUT8J' where id=3; -update noar tt set v0='4NDWU0GK2I7RRABNP6TXUT1ZHJZZP9' where id=4; -update noar ti set v0='4NDWU0GK2I7RRABNP6TXUT1ZHJZZP9' where id=4; -update noar tt set b0='1BW56UHYXEV63T7SNH3S7AY' where id=4; -update noar ti set b0='1BW56UHYXEV63T7SNH3S7AY' where id=4; -update noar tt set v0='44XHNZ4NKEM3' where id=4; -update noar ti set v0='44XHNZ4NKEM3' where id=4; -update noar tt set b1='HQQMPW2F05HKZ97MEO12DC23TYCG' where id=4; -update noar ti set b1='HQQMPW2F05HKZ97MEO12DC23TYCG' where id=4; -update noar tt set v0='DH67CX5I5R84XPZEPQK' where id=4; -update noar ti set v0='DH67CX5I5R84XPZEPQK' where id=4; -update noar tt set b2='HMY3CDVT3GU0EQC25P' where id=4; -update noar ti set b2='HMY3CDVT3GU0EQC25P' where id=4; -update noar tt set v0='8TVGVRFK8F1STKHB6JCHTAG22D8' where id=5; -update noar ti set v0='8TVGVRFK8F1STKHB6JCHTAG22D8' where id=5; -update noar tt set b0='3AVTASCWQN6DL8QJANECKXNRLQVMFTP' where id=5; -update noar ti set b0='3AVTASCWQN6DL8QJANECKXNRLQVMFTP' where id=5; -update noar tt set v0='1OZF43HR25LIBWHR4' where id=5; -update noar ti set v0='1OZF43HR25LIBWHR4' where id=5; -update noar tt set b1='YUG1X33' where id=5; -update noar ti set b1='YUG1X33' where id=5; -update noar tt set v0='ZDCGL0AEMSJ1H5RIODK8N99DWEE04J9' where id=5; -update noar ti set v0='ZDCGL0AEMSJ1H5RIODK8N99DWEE04J9' where id=5; -update noar tt set b2='BQIF4A94AKY5' where id=5; -update noar ti set b2='BQIF4A94AKY5' where id=5; -update noar tt set v0='Y4XUS33LRKQESG22BJINOYYCW3' where id=6; -update noar ti set v0='Y4XUS33LRKQESG22BJINOYYCW3' where id=6; -update noar tt set b0='PT0250A8HK' where id=6; -update noar ti set b0='PT0250A8HK' where id=6; -update noar tt set v0='KQK1OBS0BCNQA630' where id=6; -update noar ti set v0='KQK1OBS0BCNQA630' where id=6; -update noar tt set b1='76GBXY8UG9VXVDDX5EKK4M' where id=6; -update noar ti set b1='76GBXY8UG9VXVDDX5EKK4M' where id=6; -update noar tt set v0='UXKBIB1BWBEE2VTLNWP4TEX' where id=6; -update noar ti set v0='UXKBIB1BWBEE2VTLNWP4TEX' where id=6; -update noar tt set b2='CZ4M3CIIYMCPTOO06' where id=6; -update noar ti set b2='CZ4M3CIIYMCPTOO06' where id=6; -update noar tt set v0='QAFP51MW' where id=7; -update noar ti set v0='QAFP51MW' where id=7; -update noar tt set b0='828GG2ODI1U' where id=7; -update noar ti set b0='828GG2ODI1U' where id=7; -update noar tt set v0='M2W97A2DI27EZFEA5220TSWGE' where id=7; -update noar ti set v0='M2W97A2DI27EZFEA5220TSWGE' where id=7; -update noar tt set b1='2Q2IAWITM' where id=7; -update noar ti set b1='2Q2IAWITM' where id=7; -update noar tt set v0='K8YU1VEF28VK07LAZSQG5QQLYOU8YI0J' where id=7; -update noar ti set v0='K8YU1VEF28VK07LAZSQG5QQLYOU8YI0J' where id=7; -update noar tt set b2='QS3Q6T' where id=7; -update noar ti set b2='QS3Q6T' where id=7; -update noar tt set v0='65CDRWY8HCF49GDNROB' where id=8; -update noar ti set v0='65CDRWY8HCF49GDNROB' where id=8; -update noar tt set b0='UMYRM4ZVF1O57UTEWBVJ' where id=8; -update noar ti set b0='UMYRM4ZVF1O57UTEWBVJ' where id=8; -update noar tt set v0='SECC406XNGDCQYL' where id=8; -update noar ti set v0='SECC406XNGDCQYL' where id=8; -update noar tt set b1='D391ZS4F9M352RM7LH99MC' where id=8; -update noar ti set b1='D391ZS4F9M352RM7LH99MC' where id=8; -update noar tt set v0='IK46SHTC3T8JM3DJ3' where id=8; -update noar ti set v0='IK46SHTC3T8JM3DJ3' where id=8; -update noar tt set b2='FPRI30GGVK3HKA9AH6OYIKFHPRPQF' where id=8; -update noar ti set b2='FPRI30GGVK3HKA9AH6OYIKFHPRPQF' where id=8; -update noar tt set v0='FP2L49GV21JEOLY3R8' where id=9; -update noar ti set v0='FP2L49GV21JEOLY3R8' where id=9; -update noar tt set b0='1YU0GUNLKUJXXLKX' where id=9; -update noar ti set b0='1YU0GUNLKUJXXLKX' where id=9; -update noar tt set v0='4P4U47' where id=9; -update noar ti set v0='4P4U47' where id=9; -update noar tt set b1='YJNOD22J' where id=9; -update noar ti set b1='YJNOD22J' where id=9; -update noar tt set v0='K0W7B6J3Q82M' where id=9; -update noar ti set v0='K0W7B6J3Q82M' where id=9; -update noar tt set b2='S2V60' where id=9; -update noar ti set b2='S2V60' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - f0 int null, - v0 varchar(32) null, - b0 tinyblob null, - b1 longblob null, - b2 blob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='1K3XH' where id=1; -update noar ti set v0='1K3XH' where id=1; -update noar tt set b0='Q5U7UL4OJZDEQ1UJ4KI' where id=1; -update noar ti set b0='Q5U7UL4OJZDEQ1UJ4KI' where id=1; -update noar tt set v0='GD9SVD3KL9QT6G9DDKFL' where id=1; -update noar ti set v0='GD9SVD3KL9QT6G9DDKFL' where id=1; -update noar tt set b1='AQNDP6H' where id=1; -update noar ti set b1='AQNDP6H' where id=1; -update noar tt set v0='T0MRA5CA30' where id=1; -update noar ti set v0='T0MRA5CA30' where id=1; -update noar tt set b2='NW' where id=1; -update noar ti set b2='NW' where id=1; -update noar tt set v0='EQ2KELGR7HJORF7' where id=2; -update noar ti set v0='EQ2KELGR7HJORF7' where id=2; -update noar tt set b0='O2M1YY' where id=2; -update noar ti set b0='O2M1YY' where id=2; -update noar tt set v0='S60MYWQR1GIB50DV4P6MH' where id=2; -update noar ti set v0='S60MYWQR1GIB50DV4P6MH' where id=2; -update noar tt set b1='CXY746' where id=2; -update noar ti set b1='CXY746' where id=2; -update noar tt set v0='INY09QPW8DOZ3OE6117SAR7P3F7BRZO' where id=2; -update noar ti set v0='INY09QPW8DOZ3OE6117SAR7P3F7BRZO' where id=2; -update noar tt set b2='1JILTTMNZ7HXC' where id=2; -update noar ti set b2='1JILTTMNZ7HXC' where id=2; -update noar tt set v0='UKY0' where id=3; -update noar ti set v0='UKY0' where id=3; -update noar tt set b0='XEZM3L55QWKP1GZGD60OYE2NL0ZRTS' where id=3; -update noar ti set b0='XEZM3L55QWKP1GZGD60OYE2NL0ZRTS' where id=3; -update noar tt set v0='5' where id=3; -update noar ti set v0='5' where id=3; -update noar tt set b1='OPW0WKQKP' where id=3; -update noar ti set b1='OPW0WKQKP' where id=3; -update noar tt set v0='J' where id=3; -update noar ti set v0='J' where id=3; -update noar tt set b2='RDYGAB6NJ3T' where id=3; -update noar ti set b2='RDYGAB6NJ3T' where id=3; -update noar tt set v0='NCRHZZPZA6ROJK8UPE5CR1MSCAHC66WH' where id=4; -update noar ti set v0='NCRHZZPZA6ROJK8UPE5CR1MSCAHC66WH' where id=4; -update noar tt set b0='EZEQ9NGJY' where id=4; -update noar ti set b0='EZEQ9NGJY' where id=4; -update noar tt set v0='CR87QQSP1V8F11S98FN2ZA0FK9BO34D' where id=4; -update noar ti set v0='CR87QQSP1V8F11S98FN2ZA0FK9BO34D' where id=4; -update noar tt set b1='CU8OAFJ0UR8WVPA3KRQ7VBQYCOT' where id=4; -update noar ti set b1='CU8OAFJ0UR8WVPA3KRQ7VBQYCOT' where id=4; -update noar tt set v0='C6SR' where id=4; -update noar ti set v0='C6SR' where id=4; -update noar tt set b2='O4KC2O0Z077GMO' where id=4; -update noar ti set b2='O4KC2O0Z077GMO' where id=4; -update noar tt set v0='WPFSK' where id=5; -update noar ti set v0='WPFSK' where id=5; -update noar tt set b0='AGKZJQAUEWKZN3T' where id=5; -update noar ti set b0='AGKZJQAUEWKZN3T' where id=5; -update noar tt set v0='8TOZML' where id=5; -update noar ti set v0='8TOZML' where id=5; -update noar tt set b1='GXK' where id=5; -update noar ti set b1='GXK' where id=5; -update noar tt set v0='1F2' where id=5; -update noar ti set v0='1F2' where id=5; -update noar tt set b2='WW5K3Y46PTQNZWM4L3LC4S9O' where id=5; -update noar ti set b2='WW5K3Y46PTQNZWM4L3LC4S9O' where id=5; -update noar tt set v0='4R00D4EW2TQELDS0VRM23VBIJ3BG' where id=6; -update noar ti set v0='4R00D4EW2TQELDS0VRM23VBIJ3BG' where id=6; -update noar tt set b0='UXC7ZCMRJV997TH2L' where id=6; -update noar ti set b0='UXC7ZCMRJV997TH2L' where id=6; -update noar tt set v0='A4ZJTONCH8KVRQ5I2OP1J0H0OEG3DHZ1' where id=6; -update noar ti set v0='A4ZJTONCH8KVRQ5I2OP1J0H0OEG3DHZ1' where id=6; -update noar tt set b1='A8TPPHWCFZO9M3OVKU2WSBW' where id=6; -update noar ti set b1='A8TPPHWCFZO9M3OVKU2WSBW' where id=6; -update noar tt set v0='EK' where id=6; -update noar ti set v0='EK' where id=6; -update noar tt set b2='A5C8R19EGHH1EY13X' where id=6; -update noar ti set b2='A5C8R19EGHH1EY13X' where id=6; -update noar tt set v0='84K5KZCH' where id=7; -update noar ti set v0='84K5KZCH' where id=7; -update noar tt set b0='ZRN6I9' where id=7; -update noar ti set b0='ZRN6I9' where id=7; -update noar tt set v0='62C9J9SRW1T5G9' where id=7; -update noar ti set v0='62C9J9SRW1T5G9' where id=7; -update noar tt set b1='C8JZHUY1CSPLFA67W' where id=7; -update noar ti set b1='C8JZHUY1CSPLFA67W' where id=7; -update noar tt set v0='NRV5DNF0P8WVIZGD2FU59' where id=7; -update noar ti set v0='NRV5DNF0P8WVIZGD2FU59' where id=7; -update noar tt set b2='IGQAM71M6XU18' where id=7; -update noar ti set b2='IGQAM71M6XU18' where id=7; -update noar tt set v0='BVW7GMN482797DMHX78' where id=8; -update noar ti set v0='BVW7GMN482797DMHX78' where id=8; -update noar tt set b0='WIYVLKRBP5GOOHQAMHHHRUII' where id=8; -update noar ti set b0='WIYVLKRBP5GOOHQAMHHHRUII' where id=8; -update noar tt set v0='8O8XNMRAAZ554P8WNYXMO' where id=8; -update noar ti set v0='8O8XNMRAAZ554P8WNYXMO' where id=8; -update noar tt set b1='642HII6FZYOKV' where id=8; -update noar ti set b1='642HII6FZYOKV' where id=8; -update noar tt set v0='2KVAEW3HIJZQX' where id=8; -update noar ti set v0='2KVAEW3HIJZQX' where id=8; -update noar tt set b2='JAT4IRM4' where id=8; -update noar ti set b2='JAT4IRM4' where id=8; -update noar tt set v0='VWJMDDHFZV4LLK88' where id=9; -update noar ti set v0='VWJMDDHFZV4LLK88' where id=9; -update noar tt set b0='289MZ3YXSMQ3YCQ7PN' where id=9; -update noar ti set b0='289MZ3YXSMQ3YCQ7PN' where id=9; -update noar tt set v0='INP8LKVJ38CMMVRVVKSZ4XWCAX31P' where id=9; -update noar ti set v0='INP8LKVJ38CMMVRVVKSZ4XWCAX31P' where id=9; -update noar tt set b1='99NJUURHWDZQ1JH' where id=9; -update noar ti set b1='99NJUURHWDZQ1JH' where id=9; -update noar tt set v0='YOE6EQOHL92NVVYUHJ15O' where id=9; -update noar ti set v0='YOE6EQOHL92NVVYUHJ15O' where id=9; -update noar tt set b2='CF9RUGIO' where id=9; -update noar ti set b2='CF9RUGIO' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - f0 int null, - v0 varchar(256) null, - b0 tinyblob null, - b1 longblob null, - b2 blob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='SLN938UF43CAA3ZH69NA16FWNMTF' where id=1; -update noar ti set v0='SLN938UF43CAA3ZH69NA16FWNMTF' where id=1; -update noar tt set b0='89O4V2FOJHTDSYI5T1C3JPSMO8J0RG4' where id=1; -update noar ti set b0='89O4V2FOJHTDSYI5T1C3JPSMO8J0RG4' where id=1; -update noar tt set v0='F9BLE' where id=1; -update noar ti set v0='F9BLE' where id=1; -update noar tt set b1='B6OJ4H6J7SFX6Q4A' where id=1; -update noar ti set b1='B6OJ4H6J7SFX6Q4A' where id=1; -update noar tt set v0='C0M2LB' where id=1; -update noar ti set v0='C0M2LB' where id=1; -update noar tt set b2='0ZREMSTZ3GWTYEY1NMT9ALSVC2T5' where id=1; -update noar ti set b2='0ZREMSTZ3GWTYEY1NMT9ALSVC2T5' where id=1; -update noar tt set v0='HOO0V05EYENEV677X9LWO88' where id=2; -update noar ti set v0='HOO0V05EYENEV677X9LWO88' where id=2; -update noar tt set b0='LXB94SJFEN87YRQGXL3BIC' where id=2; -update noar ti set b0='LXB94SJFEN87YRQGXL3BIC' where id=2; -update noar tt set v0='I4YRZD8Y2SIF66SDBFPKLB1OH4EW' where id=2; -update noar ti set v0='I4YRZD8Y2SIF66SDBFPKLB1OH4EW' where id=2; -update noar tt set b1='NC9BWOVFHD3E' where id=2; -update noar ti set b1='NC9BWOVFHD3E' where id=2; -update noar tt set v0='9XFD6MZLSP3JZOQCDKB0C8YG9H' where id=2; -update noar ti set v0='9XFD6MZLSP3JZOQCDKB0C8YG9H' where id=2; -update noar tt set b2='TOMK' where id=2; -update noar ti set b2='TOMK' where id=2; -update noar tt set v0='R0BK3AC03U8R2FYG7TLJMWG5SMMUM' where id=3; -update noar ti set v0='R0BK3AC03U8R2FYG7TLJMWG5SMMUM' where id=3; -update noar tt set b0='L78JB90Q' where id=3; -update noar ti set b0='L78JB90Q' where id=3; -update noar tt set v0='72SKBQ1KFHQUZEYOLU0' where id=3; -update noar ti set v0='72SKBQ1KFHQUZEYOLU0' where id=3; -update noar tt set b1='1X95L93FRD2BOMW1SKS' where id=3; -update noar ti set b1='1X95L93FRD2BOMW1SKS' where id=3; -update noar tt set v0='1LQ7M5PPXZQQYN1P5SMU6N8UN4' where id=3; -update noar ti set v0='1LQ7M5PPXZQQYN1P5SMU6N8UN4' where id=3; -update noar tt set b2='4A6F5WYDIL3Q220V5HI98G006MLK4IT' where id=3; -update noar ti set b2='4A6F5WYDIL3Q220V5HI98G006MLK4IT' where id=3; -update noar tt set v0='LIB92L6Z1RI8Y' where id=4; -update noar ti set v0='LIB92L6Z1RI8Y' where id=4; -update noar tt set b0='WEZM97NCABEO5SQERN' where id=4; -update noar ti set b0='WEZM97NCABEO5SQERN' where id=4; -update noar tt set v0='VJAHFANOBTHQ5RGQCSM49DNE7NOFXQ7' where id=4; -update noar ti set v0='VJAHFANOBTHQ5RGQCSM49DNE7NOFXQ7' where id=4; -update noar tt set b1='L2' where id=4; -update noar ti set b1='L2' where id=4; -update noar tt set v0='MVZ0O8' where id=4; -update noar ti set v0='MVZ0O8' where id=4; -update noar tt set b2='CRR6TN3HD8H9EKC1' where id=4; -update noar ti set b2='CRR6TN3HD8H9EKC1' where id=4; -update noar tt set v0='KQJ8A6MN6LNI0U42OXS71WVB9B520FY' where id=5; -update noar ti set v0='KQJ8A6MN6LNI0U42OXS71WVB9B520FY' where id=5; -update noar tt set b0='IDA02ZVBTMEBLLIQDE' where id=5; -update noar ti set b0='IDA02ZVBTMEBLLIQDE' where id=5; -update noar tt set v0='SWXDDGE00EXOIIWW' where id=5; -update noar ti set v0='SWXDDGE00EXOIIWW' where id=5; -update noar tt set b1='9ERJ55NSCT314' where id=5; -update noar ti set b1='9ERJ55NSCT314' where id=5; -update noar tt set v0='3TJ2CZNWZRZ' where id=5; -update noar ti set v0='3TJ2CZNWZRZ' where id=5; -update noar tt set b2='YG17' where id=5; -update noar ti set b2='YG17' where id=5; -update noar tt set v0='4SC4CW' where id=6; -update noar ti set v0='4SC4CW' where id=6; -update noar tt set b0='4V65D577IAX81KHQVECWP' where id=6; -update noar ti set b0='4V65D577IAX81KHQVECWP' where id=6; -update noar tt set v0='7Q9764PH4T3H38WB' where id=6; -update noar ti set v0='7Q9764PH4T3H38WB' where id=6; -update noar tt set b1='MBLDT' where id=6; -update noar ti set b1='MBLDT' where id=6; -update noar tt set v0='UK1QCP4I60TX2NAI6L8HLNB50EBT' where id=6; -update noar ti set v0='UK1QCP4I60TX2NAI6L8HLNB50EBT' where id=6; -update noar tt set b2='GWZ39V3CDED0ITA' where id=6; -update noar ti set b2='GWZ39V3CDED0ITA' where id=6; -update noar tt set v0='45JYABDDR9QQK7T' where id=7; -update noar ti set v0='45JYABDDR9QQK7T' where id=7; -update noar tt set b0='DTB3RO1ZFXGIJB' where id=7; -update noar ti set b0='DTB3RO1ZFXGIJB' where id=7; -update noar tt set v0='LZPHTCDNRHPQ8EM5R3OH8QCR3' where id=7; -update noar ti set v0='LZPHTCDNRHPQ8EM5R3OH8QCR3' where id=7; -update noar tt set b1='XH2FAF5QL9BT66CZLKHW97F4K92LP' where id=7; -update noar ti set b1='XH2FAF5QL9BT66CZLKHW97F4K92LP' where id=7; -update noar tt set v0='RG6991DPUJN9ZG3SSWTAXXXLDZ3G1ET' where id=7; -update noar ti set v0='RG6991DPUJN9ZG3SSWTAXXXLDZ3G1ET' where id=7; -update noar tt set b2='JNQEPXX' where id=7; -update noar ti set b2='JNQEPXX' where id=7; -update noar tt set v0='L2HHZ16U76YLMUHI58R5CMMV828' where id=8; -update noar ti set v0='L2HHZ16U76YLMUHI58R5CMMV828' where id=8; -update noar tt set b0='M0KKGLB80XBHUPNX5HS2F8VNO4UE31' where id=8; -update noar ti set b0='M0KKGLB80XBHUPNX5HS2F8VNO4UE31' where id=8; -update noar tt set v0='BVCIG' where id=8; -update noar ti set v0='BVCIG' where id=8; -update noar tt set b1='R' where id=8; -update noar ti set b1='R' where id=8; -update noar tt set v0='BKY3QTZ3QT8Z83YNQ134D' where id=8; -update noar ti set v0='BKY3QTZ3QT8Z83YNQ134D' where id=8; -update noar tt set b2='0E6WF2PBP966OKFLQIC64L5' where id=8; -update noar ti set b2='0E6WF2PBP966OKFLQIC64L5' where id=8; -update noar tt set v0='LTGS1HS06SBG4RUPSL' where id=9; -update noar ti set v0='LTGS1HS06SBG4RUPSL' where id=9; -update noar tt set b0='600YNT1CG9I8II1Q484T7S20' where id=9; -update noar ti set b0='600YNT1CG9I8II1Q484T7S20' where id=9; -update noar tt set v0='FBJ36E57STTYLNMWY7MV7VOEN' where id=9; -update noar ti set v0='FBJ36E57STTYLNMWY7MV7VOEN' where id=9; -update noar tt set b1='8EKRQ6Q7ZVDO44F21D1' where id=9; -update noar ti set b1='8EKRQ6Q7ZVDO44F21D1' where id=9; -update noar tt set v0='U808FK96FC96ZU504UG2FTBRLY3X' where id=9; -update noar ti set v0='U808FK96FC96ZU504UG2FTBRLY3X' where id=9; -update noar tt set b2='K52LZKUW3JEC6NJJPGBL4S2O5TELU81' where id=9; -update noar ti set b2='K52LZKUW3JEC6NJJPGBL4S2O5TELU81' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - f0 int not null, - v0 varchar(32) not null, - b0 tinyblob not null, - b1 longblob not null, - b2 blob not null -) engine=tokudb; -insert into tt values (1,0,'','','',''); -insert into tt values (2,0,'','','',''); -insert into tt values (3,0,'','','',''); -insert into tt values (4,0,'','','',''); -insert into tt values (5,0,'','','',''); -insert into tt values (6,0,'','','',''); -insert into tt values (7,0,'','','',''); -insert into tt values (8,0,'','','',''); -insert into tt values (9,0,'','','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='Z' where id=1; -update noar ti set v0='Z' where id=1; -update noar tt set b0='MWC0GOHOIZ2KSDX44PMNF' where id=1; -update noar ti set b0='MWC0GOHOIZ2KSDX44PMNF' where id=1; -update noar tt set v0='8V3JEWQ4P8KEZDX7K3S1MW8W4LXS' where id=1; -update noar ti set v0='8V3JEWQ4P8KEZDX7K3S1MW8W4LXS' where id=1; -update noar tt set b1='MTXKVRB8DQGQ5C9BO' where id=1; -update noar ti set b1='MTXKVRB8DQGQ5C9BO' where id=1; -update noar tt set v0='HSTZL' where id=1; -update noar ti set v0='HSTZL' where id=1; -update noar tt set b2='H' where id=1; -update noar ti set b2='H' where id=1; -update noar tt set v0='EZ4H0M4CW2S8ONRN7VVN6XJOUJ3Y6' where id=2; -update noar ti set v0='EZ4H0M4CW2S8ONRN7VVN6XJOUJ3Y6' where id=2; -update noar tt set b0='MHDZET29WB0ZCZG' where id=2; -update noar ti set b0='MHDZET29WB0ZCZG' where id=2; -update noar tt set v0='MR' where id=2; -update noar ti set v0='MR' where id=2; -update noar tt set b1='4L92MFYN5WB07LL0RV927K3RWYZV' where id=2; -update noar ti set b1='4L92MFYN5WB07LL0RV927K3RWYZV' where id=2; -update noar tt set v0='55GKF9GTDJUGGS9496' where id=2; -update noar ti set v0='55GKF9GTDJUGGS9496' where id=2; -update noar tt set b2='5TV8A' where id=2; -update noar ti set b2='5TV8A' where id=2; -update noar tt set v0='MIRICDCTY8J5E8' where id=3; -update noar ti set v0='MIRICDCTY8J5E8' where id=3; -update noar tt set b0='V6' where id=3; -update noar ti set b0='V6' where id=3; -update noar tt set v0='JWCA09Y6L6MV38EZVG9RP9UOMX' where id=3; -update noar ti set v0='JWCA09Y6L6MV38EZVG9RP9UOMX' where id=3; -update noar tt set b1='UP8QQ41AK4KLP9WH5B2E04LFRC5' where id=3; -update noar ti set b1='UP8QQ41AK4KLP9WH5B2E04LFRC5' where id=3; -update noar tt set v0='V68' where id=3; -update noar ti set v0='V68' where id=3; -update noar tt set b2='TDZDTU8YFECPDPVL52K5' where id=3; -update noar ti set b2='TDZDTU8YFECPDPVL52K5' where id=3; -update noar tt set v0='EG3U3V50H965OMD9QUNDBE1Y9KZXL9R' where id=4; -update noar ti set v0='EG3U3V50H965OMD9QUNDBE1Y9KZXL9R' where id=4; -update noar tt set b0='SIVPZXBFQOEL' where id=4; -update noar ti set b0='SIVPZXBFQOEL' where id=4; -update noar tt set v0='L88CJ2NJ85SU' where id=4; -update noar ti set v0='L88CJ2NJ85SU' where id=4; -update noar tt set b1='81V74GX0AT66SVTWGCCL' where id=4; -update noar ti set b1='81V74GX0AT66SVTWGCCL' where id=4; -update noar tt set v0='UPSVGRDDU9SRJZ01FRLATCALF1P2' where id=4; -update noar ti set v0='UPSVGRDDU9SRJZ01FRLATCALF1P2' where id=4; -update noar tt set b2='ORFOLCIW' where id=4; -update noar ti set b2='ORFOLCIW' where id=4; -update noar tt set v0='8X' where id=5; -update noar ti set v0='8X' where id=5; -update noar tt set b0='F1X7' where id=5; -update noar ti set b0='F1X7' where id=5; -update noar tt set v0='ALS6T3RQ3A5CG0ZI74I4C4J' where id=5; -update noar ti set v0='ALS6T3RQ3A5CG0ZI74I4C4J' where id=5; -update noar tt set b1='5A1U3PEWESFRAVHPBA' where id=5; -update noar ti set b1='5A1U3PEWESFRAVHPBA' where id=5; -update noar tt set v0='LGY1R7' where id=5; -update noar ti set v0='LGY1R7' where id=5; -update noar tt set b2='CSFWX30MJ' where id=5; -update noar ti set b2='CSFWX30MJ' where id=5; -update noar tt set v0='H2OWF5OLGG6XLG7R8UQRTF' where id=6; -update noar ti set v0='H2OWF5OLGG6XLG7R8UQRTF' where id=6; -update noar tt set b0='W839EDPSSNWA' where id=6; -update noar ti set b0='W839EDPSSNWA' where id=6; -update noar tt set v0='D80GYNUPX2GHWFLLE' where id=6; -update noar ti set v0='D80GYNUPX2GHWFLLE' where id=6; -update noar tt set b1='LY9THUCD8X6IS53HAGJE6B' where id=6; -update noar ti set b1='LY9THUCD8X6IS53HAGJE6B' where id=6; -update noar tt set v0='4YU' where id=6; -update noar ti set v0='4YU' where id=6; -update noar tt set b2='XSRFHTT' where id=6; -update noar ti set b2='XSRFHTT' where id=6; -update noar tt set v0='UX' where id=7; -update noar ti set v0='UX' where id=7; -update noar tt set b0='ACXLW8SH2MVIS7XSVQ' where id=7; -update noar ti set b0='ACXLW8SH2MVIS7XSVQ' where id=7; -update noar tt set v0='IRNCEZSXKV4WVR3CKP3654W2RCNJ5U' where id=7; -update noar ti set v0='IRNCEZSXKV4WVR3CKP3654W2RCNJ5U' where id=7; -update noar tt set b1='88SC6AJQG57A' where id=7; -update noar ti set b1='88SC6AJQG57A' where id=7; -update noar tt set v0='UY4QV4LL491RGY' where id=7; -update noar ti set v0='UY4QV4LL491RGY' where id=7; -update noar tt set b2='I17JTP4YDM56EFP3WJ1BELH053' where id=7; -update noar ti set b2='I17JTP4YDM56EFP3WJ1BELH053' where id=7; -update noar tt set v0='JQBBY5MLRO8HKVADD5LEX368V6NXO2F' where id=8; -update noar ti set v0='JQBBY5MLRO8HKVADD5LEX368V6NXO2F' where id=8; -update noar tt set b0='KZA5M8WAGWY' where id=8; -update noar ti set b0='KZA5M8WAGWY' where id=8; -update noar tt set v0='V6' where id=8; -update noar ti set v0='V6' where id=8; -update noar tt set b1='3PXA0SJ2PYYR9OVQNCZ51Q2XMI6AWXNU' where id=8; -update noar ti set b1='3PXA0SJ2PYYR9OVQNCZ51Q2XMI6AWXNU' where id=8; -update noar tt set v0='C0OQTZ7PPS1JGK5YSVU7OZ84AJ5X' where id=8; -update noar ti set v0='C0OQTZ7PPS1JGK5YSVU7OZ84AJ5X' where id=8; -update noar tt set b2='ZHX07RQ25QI7RO4PUS0V8M8T47X3XOO' where id=8; -update noar ti set b2='ZHX07RQ25QI7RO4PUS0V8M8T47X3XOO' where id=8; -update noar tt set v0='3ET1ZHMW09EJ' where id=9; -update noar ti set v0='3ET1ZHMW09EJ' where id=9; -update noar tt set b0='NKXSINV04QK95AVATWGARD' where id=9; -update noar ti set b0='NKXSINV04QK95AVATWGARD' where id=9; -update noar tt set v0='LXM35YTGNEKVHK65' where id=9; -update noar ti set v0='LXM35YTGNEKVHK65' where id=9; -update noar tt set b1='TQ9JDEX54TAHD2' where id=9; -update noar ti set b1='TQ9JDEX54TAHD2' where id=9; -update noar tt set v0='VDV' where id=9; -update noar ti set v0='VDV' where id=9; -update noar tt set b2='5' where id=9; -update noar ti set b2='5' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - f0 int not null, - v0 varchar(256) not null, - b0 tinyblob not null, - b1 longblob not null, - b2 blob not null -) engine=tokudb; -insert into tt values (1,0,'','','',''); -insert into tt values (2,0,'','','',''); -insert into tt values (3,0,'','','',''); -insert into tt values (4,0,'','','',''); -insert into tt values (5,0,'','','',''); -insert into tt values (6,0,'','','',''); -insert into tt values (7,0,'','','',''); -insert into tt values (8,0,'','','',''); -insert into tt values (9,0,'','','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='Q8IZKFPYW8BP8Q9Y7II8PRW1OWMR' where id=1; -update noar ti set v0='Q8IZKFPYW8BP8Q9Y7II8PRW1OWMR' where id=1; -update noar tt set b0='97DW2HLBA4O52WW5WK55LW524SRIUCF' where id=1; -update noar ti set b0='97DW2HLBA4O52WW5WK55LW524SRIUCF' where id=1; -update noar tt set v0='AXARTAO2RYJ40' where id=1; -update noar ti set v0='AXARTAO2RYJ40' where id=1; -update noar tt set b1='C13RQ' where id=1; -update noar ti set b1='C13RQ' where id=1; -update noar tt set v0='YJTXBC5B635DO8VPCTAC' where id=1; -update noar ti set v0='YJTXBC5B635DO8VPCTAC' where id=1; -update noar tt set b2='W5QZGI4LZYDBY8N' where id=1; -update noar ti set b2='W5QZGI4LZYDBY8N' where id=1; -update noar tt set v0='X3' where id=2; -update noar ti set v0='X3' where id=2; -update noar tt set b0='829' where id=2; -update noar ti set b0='829' where id=2; -update noar tt set v0='RPS6P' where id=2; -update noar ti set v0='RPS6P' where id=2; -update noar tt set b1='8HY84DB' where id=2; -update noar ti set b1='8HY84DB' where id=2; -update noar tt set v0='J7VXIEA6J5SYCEHLK1Y1W5BIQNCW' where id=2; -update noar ti set v0='J7VXIEA6J5SYCEHLK1Y1W5BIQNCW' where id=2; -update noar tt set b2='0RX3S1RMN648ADDVP3C2' where id=2; -update noar ti set b2='0RX3S1RMN648ADDVP3C2' where id=2; -update noar tt set v0='SC000MTAOA4Q6WIFCK9R80UHKC77HJ' where id=3; -update noar ti set v0='SC000MTAOA4Q6WIFCK9R80UHKC77HJ' where id=3; -update noar tt set b0='5T4' where id=3; -update noar ti set b0='5T4' where id=3; -update noar tt set v0='P9SZCCJ73N54DOSPBOM' where id=3; -update noar ti set v0='P9SZCCJ73N54DOSPBOM' where id=3; -update noar tt set b1='K1AMYTXXLXKV8FBPCWWYXEN4OP' where id=3; -update noar ti set b1='K1AMYTXXLXKV8FBPCWWYXEN4OP' where id=3; -update noar tt set v0='TFTNEC8BTU12BVLOERWD0Q7R3RCY' where id=3; -update noar ti set v0='TFTNEC8BTU12BVLOERWD0Q7R3RCY' where id=3; -update noar tt set b2='ZVCI1F43D0' where id=3; -update noar ti set b2='ZVCI1F43D0' where id=3; -update noar tt set v0='INJX9LLZMYWDTISDYW3J7' where id=4; -update noar ti set v0='INJX9LLZMYWDTISDYW3J7' where id=4; -update noar tt set b0='JCV2DU400JNN3SF2IZS00CAX59SCM' where id=4; -update noar ti set b0='JCV2DU400JNN3SF2IZS00CAX59SCM' where id=4; -update noar tt set v0='IRO' where id=4; -update noar ti set v0='IRO' where id=4; -update noar tt set b1='RD' where id=4; -update noar ti set b1='RD' where id=4; -update noar tt set v0='FORC4GNQDHSLW89H0IU08KCO' where id=4; -update noar ti set v0='FORC4GNQDHSLW89H0IU08KCO' where id=4; -update noar tt set b2='5O0P5YAAUE7O8SOOB7DH' where id=4; -update noar ti set b2='5O0P5YAAUE7O8SOOB7DH' where id=4; -update noar tt set v0='KRNKVK767N6I9WDC3T' where id=5; -update noar ti set v0='KRNKVK767N6I9WDC3T' where id=5; -update noar tt set b0='GGARGL' where id=5; -update noar ti set b0='GGARGL' where id=5; -update noar tt set v0='SLAXT7PPBMGGM' where id=5; -update noar ti set v0='SLAXT7PPBMGGM' where id=5; -update noar tt set b1='0H21PROOMP' where id=5; -update noar ti set b1='0H21PROOMP' where id=5; -update noar tt set v0='71BHTI3ZOKO' where id=5; -update noar ti set v0='71BHTI3ZOKO' where id=5; -update noar tt set b2='QUW8ASXOBC6W0QLOQKZP' where id=5; -update noar ti set b2='QUW8ASXOBC6W0QLOQKZP' where id=5; -update noar tt set v0='STTEY' where id=6; -update noar ti set v0='STTEY' where id=6; -update noar tt set b0='YFTA6WN5EFU214PUXNNKYL9J1S' where id=6; -update noar ti set b0='YFTA6WN5EFU214PUXNNKYL9J1S' where id=6; -update noar tt set v0='CLFCX08EPBKVI1XLY6QOE0G5PDWZZT5O' where id=6; -update noar ti set v0='CLFCX08EPBKVI1XLY6QOE0G5PDWZZT5O' where id=6; -update noar tt set b1='A8R8Z2XSAMS48' where id=6; -update noar ti set b1='A8R8Z2XSAMS48' where id=6; -update noar tt set v0='5R984I49V63I80N8FUNAXIDLWJRGE7H' where id=6; -update noar ti set v0='5R984I49V63I80N8FUNAXIDLWJRGE7H' where id=6; -update noar tt set b2='U4RBM4FEJ4B2H1XKRNFBDBTDP6WDP' where id=6; -update noar ti set b2='U4RBM4FEJ4B2H1XKRNFBDBTDP6WDP' where id=6; -update noar tt set v0='0WIKF1SKKAEZ1PM395GVMBMOIKEWJAU3' where id=7; -update noar ti set v0='0WIKF1SKKAEZ1PM395GVMBMOIKEWJAU3' where id=7; -update noar tt set b0='UKP176O557YP6KBEMYIK9POX' where id=7; -update noar ti set b0='UKP176O557YP6KBEMYIK9POX' where id=7; -update noar tt set v0='ASAQVXKLI' where id=7; -update noar ti set v0='ASAQVXKLI' where id=7; -update noar tt set b1='C4WAEUP3M3P8LF4Z08QIUN2ED3YVKP' where id=7; -update noar ti set b1='C4WAEUP3M3P8LF4Z08QIUN2ED3YVKP' where id=7; -update noar tt set v0='ERBWVMV8PZKBNRU' where id=7; -update noar ti set v0='ERBWVMV8PZKBNRU' where id=7; -update noar tt set b2='ICYRTU273A6QYMF1ANM' where id=7; -update noar ti set b2='ICYRTU273A6QYMF1ANM' where id=7; -update noar tt set v0='H62G8Z2D41MNUW34Y0K4' where id=8; -update noar ti set v0='H62G8Z2D41MNUW34Y0K4' where id=8; -update noar tt set b0='RCCGMG7C660YW3YM' where id=8; -update noar ti set b0='RCCGMG7C660YW3YM' where id=8; -update noar tt set v0='NVGVE9OMW4' where id=8; -update noar ti set v0='NVGVE9OMW4' where id=8; -update noar tt set b1='WFEMB92JM0PGU11NWVP911JLL' where id=8; -update noar ti set b1='WFEMB92JM0PGU11NWVP911JLL' where id=8; -update noar tt set v0='EUH4PS' where id=8; -update noar ti set v0='EUH4PS' where id=8; -update noar tt set b2='L0KPVX9TNA8LNRFEPCDOE2' where id=8; -update noar ti set b2='L0KPVX9TNA8LNRFEPCDOE2' where id=8; -update noar tt set v0='ARUSH6QG7Q4F5CHMULLPGU4XYBYHFUUF' where id=9; -update noar ti set v0='ARUSH6QG7Q4F5CHMULLPGU4XYBYHFUUF' where id=9; -update noar tt set b0='CSUNA2WONWB1HI71AY9XIXQ' where id=9; -update noar ti set b0='CSUNA2WONWB1HI71AY9XIXQ' where id=9; -update noar tt set v0='HXIBODJW23HMDFPJXK4LV6N9H1P0VT5' where id=9; -update noar ti set v0='HXIBODJW23HMDFPJXK4LV6N9H1P0VT5' where id=9; -update noar tt set b1='ALFBWLRFVLG' where id=9; -update noar ti set b1='ALFBWLRFVLG' where id=9; -update noar tt set v0='NE38IOVOVJLOFBZVV09VZ' where id=9; -update noar ti set v0='NE38IOVOVJLOFBZVV09VZ' where id=9; -update noar tt set b2='7C4PRT4R1A8769FV5RS0' where id=9; -update noar ti set b2='7C4PRT4R1A8769FV5RS0' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - f0 int null, - v0 varchar(32) null, - b0 tinyblob null, - b1 longblob null, - b2 mediumblob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='Z4OWMSJVX9KRJJLO9' where id=1; -update noar ti set v0='Z4OWMSJVX9KRJJLO9' where id=1; -update noar tt set b0='OXZ9F50W0SN' where id=1; -update noar ti set b0='OXZ9F50W0SN' where id=1; -update noar tt set v0='B19NDVZGJ9MFH' where id=1; -update noar ti set v0='B19NDVZGJ9MFH' where id=1; -update noar tt set b1='A8UHWDIG' where id=1; -update noar ti set b1='A8UHWDIG' where id=1; -update noar tt set v0='4GMZUQ5XGOXH2SU' where id=1; -update noar ti set v0='4GMZUQ5XGOXH2SU' where id=1; -update noar tt set b2='4LN8PYCOB' where id=1; -update noar ti set b2='4LN8PYCOB' where id=1; -update noar tt set v0='0E3Z4OUAWMEVB88II4G3XIH' where id=2; -update noar ti set v0='0E3Z4OUAWMEVB88II4G3XIH' where id=2; -update noar tt set b0='U7KMZF23WVFEPDKA16VHEB9Z' where id=2; -update noar ti set b0='U7KMZF23WVFEPDKA16VHEB9Z' where id=2; -update noar tt set v0='2LH5OJ9O8ZM9O512DKJ0' where id=2; -update noar ti set v0='2LH5OJ9O8ZM9O512DKJ0' where id=2; -update noar tt set b1='HDIG0' where id=2; -update noar ti set b1='HDIG0' where id=2; -update noar tt set v0='SA8Q828YDWOXRGR' where id=2; -update noar ti set v0='SA8Q828YDWOXRGR' where id=2; -update noar tt set b2='U' where id=2; -update noar ti set b2='U' where id=2; -update noar tt set v0='2XV3IJQFPB6U6O00HU66HH' where id=3; -update noar ti set v0='2XV3IJQFPB6U6O00HU66HH' where id=3; -update noar tt set b0='LXV5SYE119AF3VJJV29' where id=3; -update noar ti set b0='LXV5SYE119AF3VJJV29' where id=3; -update noar tt set v0='Y1BSH7OL6JF0GK3DW0SCCCE3CVL' where id=3; -update noar ti set v0='Y1BSH7OL6JF0GK3DW0SCCCE3CVL' where id=3; -update noar tt set b1='PFW1HS5706UVI42' where id=3; -update noar ti set b1='PFW1HS5706UVI42' where id=3; -update noar tt set v0='RW5' where id=3; -update noar ti set v0='RW5' where id=3; -update noar tt set b2='XFVWGA4PZVGGTZDZZQBK8FNIF5VELKTY' where id=3; -update noar ti set b2='XFVWGA4PZVGGTZDZZQBK8FNIF5VELKTY' where id=3; -update noar tt set v0='UQF' where id=4; -update noar ti set v0='UQF' where id=4; -update noar tt set b0='B88LE1L5IUOB0IMB' where id=4; -update noar ti set b0='B88LE1L5IUOB0IMB' where id=4; -update noar tt set v0='PI7RHD03X9QXWBE3B3YCBH' where id=4; -update noar ti set v0='PI7RHD03X9QXWBE3B3YCBH' where id=4; -update noar tt set b1='LRALB8FRE8LH84YTS2UW61' where id=4; -update noar ti set b1='LRALB8FRE8LH84YTS2UW61' where id=4; -update noar tt set v0='J28U8MKQPMFJM51FUR4T71VX5DJ' where id=4; -update noar ti set v0='J28U8MKQPMFJM51FUR4T71VX5DJ' where id=4; -update noar tt set b2='TU7OQK63' where id=4; -update noar ti set b2='TU7OQK63' where id=4; -update noar tt set v0='GM' where id=5; -update noar ti set v0='GM' where id=5; -update noar tt set b0='YX10VFTH4C' where id=5; -update noar ti set b0='YX10VFTH4C' where id=5; -update noar tt set v0='870' where id=5; -update noar ti set v0='870' where id=5; -update noar tt set b1='T0P40G' where id=5; -update noar ti set b1='T0P40G' where id=5; -update noar tt set v0='A5PB4RCW1GD0YN1VSC3BSP8APEIK' where id=5; -update noar ti set v0='A5PB4RCW1GD0YN1VSC3BSP8APEIK' where id=5; -update noar tt set b2='1CT58EU6E6J2DSSQ2' where id=5; -update noar ti set b2='1CT58EU6E6J2DSSQ2' where id=5; -update noar tt set v0='S' where id=6; -update noar ti set v0='S' where id=6; -update noar tt set b0='WYOC32VVE80T6KL5L53GXVLUP48' where id=6; -update noar ti set b0='WYOC32VVE80T6KL5L53GXVLUP48' where id=6; -update noar tt set v0='LR7BOL' where id=6; -update noar ti set v0='LR7BOL' where id=6; -update noar tt set b1='GOUEP9F' where id=6; -update noar ti set b1='GOUEP9F' where id=6; -update noar tt set v0='120MD4F' where id=6; -update noar ti set v0='120MD4F' where id=6; -update noar tt set b2='MRULR4Z133' where id=6; -update noar ti set b2='MRULR4Z133' where id=6; -update noar tt set v0='MNPVYRN0W7S7M0K' where id=7; -update noar ti set v0='MNPVYRN0W7S7M0K' where id=7; -update noar tt set b0='978O6F8PYYAZ5HKNCKQ2YEHBNF6SX' where id=7; -update noar ti set b0='978O6F8PYYAZ5HKNCKQ2YEHBNF6SX' where id=7; -update noar tt set v0='8TEAZN78DE2445UB0FRSE8FPXHM' where id=7; -update noar ti set v0='8TEAZN78DE2445UB0FRSE8FPXHM' where id=7; -update noar tt set b1='6Y8ZKJU3CUA4APVY' where id=7; -update noar ti set b1='6Y8ZKJU3CUA4APVY' where id=7; -update noar tt set v0='78RH586WLY' where id=7; -update noar ti set v0='78RH586WLY' where id=7; -update noar tt set b2='Z0' where id=7; -update noar ti set b2='Z0' where id=7; -update noar tt set v0='7QA3MTJ7B' where id=8; -update noar ti set v0='7QA3MTJ7B' where id=8; -update noar tt set b0='C53LS0W4' where id=8; -update noar ti set b0='C53LS0W4' where id=8; -update noar tt set v0='Z' where id=8; -update noar ti set v0='Z' where id=8; -update noar tt set b1='5C5HZF9AMURYW8860MKXMXLJ1D4' where id=8; -update noar ti set b1='5C5HZF9AMURYW8860MKXMXLJ1D4' where id=8; -update noar tt set v0='2OK6C72SA49D2956Y28FXO6JW57Y5RM6' where id=8; -update noar ti set v0='2OK6C72SA49D2956Y28FXO6JW57Y5RM6' where id=8; -update noar tt set b2='L2' where id=8; -update noar ti set b2='L2' where id=8; -update noar tt set v0='OR0AX8CR32A47VCFYP35F569G7XPH' where id=9; -update noar ti set v0='OR0AX8CR32A47VCFYP35F569G7XPH' where id=9; -update noar tt set b0='DJ66RI8L' where id=9; -update noar ti set b0='DJ66RI8L' where id=9; -update noar tt set v0='WZNUXG82TH5JXKMK1T5GXQT93F6NEA6C' where id=9; -update noar ti set v0='WZNUXG82TH5JXKMK1T5GXQT93F6NEA6C' where id=9; -update noar tt set b1='V9HDF' where id=9; -update noar ti set b1='V9HDF' where id=9; -update noar tt set v0='C1OBESVQ7Z16P1RSVWE5HVPCCR' where id=9; -update noar ti set v0='C1OBESVQ7Z16P1RSVWE5HVPCCR' where id=9; -update noar tt set b2='9LY3OTQNKWO6ZO5V2R6B7TY' where id=9; -update noar ti set b2='9LY3OTQNKWO6ZO5V2R6B7TY' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - f0 int null, - v0 varchar(256) null, - b0 tinyblob null, - b1 longblob null, - b2 mediumblob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='PHR5V7JY1WU073QOJIB56S73IF' where id=1; -update noar ti set v0='PHR5V7JY1WU073QOJIB56S73IF' where id=1; -update noar tt set b0='YDPEE02N29K5MWCWGYB1BTPW' where id=1; -update noar ti set b0='YDPEE02N29K5MWCWGYB1BTPW' where id=1; -update noar tt set v0='N6B' where id=1; -update noar ti set v0='N6B' where id=1; -update noar tt set b1='ZT2GN1XWKX76P886YGOBEG' where id=1; -update noar ti set b1='ZT2GN1XWKX76P886YGOBEG' where id=1; -update noar tt set v0='5J9' where id=1; -update noar ti set v0='5J9' where id=1; -update noar tt set b2='WIW2SI8KC14TTO8RMIR4V92WX4' where id=1; -update noar ti set b2='WIW2SI8KC14TTO8RMIR4V92WX4' where id=1; -update noar tt set v0='PE0MBBHL7MLCEJRXN7R3UJ' where id=2; -update noar ti set v0='PE0MBBHL7MLCEJRXN7R3UJ' where id=2; -update noar tt set b0='R2DC21AAZ6N9ALWARJP1QTNGML1WD' where id=2; -update noar ti set b0='R2DC21AAZ6N9ALWARJP1QTNGML1WD' where id=2; -update noar tt set v0='3WYBJXG52KK58V2BP' where id=2; -update noar ti set v0='3WYBJXG52KK58V2BP' where id=2; -update noar tt set b1='JDG' where id=2; -update noar ti set b1='JDG' where id=2; -update noar tt set v0='I210H2HYGTGKCL' where id=2; -update noar ti set v0='I210H2HYGTGKCL' where id=2; -update noar tt set b2='R1V9KA520TI2M4B' where id=2; -update noar ti set b2='R1V9KA520TI2M4B' where id=2; -update noar tt set v0='7P935LES9682SG' where id=3; -update noar ti set v0='7P935LES9682SG' where id=3; -update noar tt set b0='IWKWJE4' where id=3; -update noar ti set b0='IWKWJE4' where id=3; -update noar tt set v0='VUYA3' where id=3; -update noar ti set v0='VUYA3' where id=3; -update noar tt set b1='VJFQM' where id=3; -update noar ti set b1='VJFQM' where id=3; -update noar tt set v0='96NBM9QT1' where id=3; -update noar ti set v0='96NBM9QT1' where id=3; -update noar tt set b2='SZU' where id=3; -update noar ti set b2='SZU' where id=3; -update noar tt set v0='T9B8YK9CJ7XBG7G6RR2CF4' where id=4; -update noar ti set v0='T9B8YK9CJ7XBG7G6RR2CF4' where id=4; -update noar tt set b0='4QCRVLMJ9IJS50BTP' where id=4; -update noar ti set b0='4QCRVLMJ9IJS50BTP' where id=4; -update noar tt set v0='D96S383WHP6U6PK' where id=4; -update noar ti set v0='D96S383WHP6U6PK' where id=4; -update noar tt set b1='I5QOIHOX2ZA3PE' where id=4; -update noar ti set b1='I5QOIHOX2ZA3PE' where id=4; -update noar tt set v0='SKZJEFY75XN10' where id=4; -update noar ti set v0='SKZJEFY75XN10' where id=4; -update noar tt set b2='U04EZLXCQMYW3V3H4DALLQQMY7Q1KP6' where id=4; -update noar ti set b2='U04EZLXCQMYW3V3H4DALLQQMY7Q1KP6' where id=4; -update noar tt set v0='RMYBX5NQ8IBF6OQ1T08SBL' where id=5; -update noar ti set v0='RMYBX5NQ8IBF6OQ1T08SBL' where id=5; -update noar tt set b0='AD3N27TIWLDLLTSTAR17UIY4UH' where id=5; -update noar ti set b0='AD3N27TIWLDLLTSTAR17UIY4UH' where id=5; -update noar tt set v0='G011RPM26RZ' where id=5; -update noar ti set v0='G011RPM26RZ' where id=5; -update noar tt set b1='BDPPIL44T9VM90MCVMO7O3C' where id=5; -update noar ti set b1='BDPPIL44T9VM90MCVMO7O3C' where id=5; -update noar tt set v0='4C18KYFF0ME' where id=5; -update noar ti set v0='4C18KYFF0ME' where id=5; -update noar tt set b2='H84V0J5G64HOZPJH8IV9ZW' where id=5; -update noar ti set b2='H84V0J5G64HOZPJH8IV9ZW' where id=5; -update noar tt set v0='7MN53ZUSX1UGTHGNM2Q9' where id=6; -update noar ti set v0='7MN53ZUSX1UGTHGNM2Q9' where id=6; -update noar tt set b0='FAO3BUBZPHDUP7YF53599JA64UW1' where id=6; -update noar ti set b0='FAO3BUBZPHDUP7YF53599JA64UW1' where id=6; -update noar tt set v0='RL11BMUJI3RK87KFSRV74' where id=6; -update noar ti set v0='RL11BMUJI3RK87KFSRV74' where id=6; -update noar tt set b1='5I7' where id=6; -update noar ti set b1='5I7' where id=6; -update noar tt set v0='CD3XKD3DHJBRJBACFV24Y53HS2Q76R' where id=6; -update noar ti set v0='CD3XKD3DHJBRJBACFV24Y53HS2Q76R' where id=6; -update noar tt set b2='SP' where id=6; -update noar ti set b2='SP' where id=6; -update noar tt set v0='4VBV1HBP6MK2MGEV' where id=7; -update noar ti set v0='4VBV1HBP6MK2MGEV' where id=7; -update noar tt set b0='PMRNL0S4DFX43CEQ70E92LBO15S63' where id=7; -update noar ti set b0='PMRNL0S4DFX43CEQ70E92LBO15S63' where id=7; -update noar tt set v0='ZZCY1HXTUP629SUD1IPS5Y' where id=7; -update noar ti set v0='ZZCY1HXTUP629SUD1IPS5Y' where id=7; -update noar tt set b1='XBA19L7AOK96ZQRJI8IUCZ5X0' where id=7; -update noar ti set b1='XBA19L7AOK96ZQRJI8IUCZ5X0' where id=7; -update noar tt set v0='P06VTFH86K' where id=7; -update noar ti set v0='P06VTFH86K' where id=7; -update noar tt set b2='AD5PMS2XVLGB' where id=7; -update noar ti set b2='AD5PMS2XVLGB' where id=7; -update noar tt set v0='0QC20FZPXBIKCODRBJONNR0NUXC2SDSY' where id=8; -update noar ti set v0='0QC20FZPXBIKCODRBJONNR0NUXC2SDSY' where id=8; -update noar tt set b0='PZXM5598GDZSPH2RK' where id=8; -update noar ti set b0='PZXM5598GDZSPH2RK' where id=8; -update noar tt set v0='F346V5J05UXC749ALV' where id=8; -update noar ti set v0='F346V5J05UXC749ALV' where id=8; -update noar tt set b1='MNGKLUHW' where id=8; -update noar ti set b1='MNGKLUHW' where id=8; -update noar tt set v0='VF5RQKP6U1JC665EMC' where id=8; -update noar ti set v0='VF5RQKP6U1JC665EMC' where id=8; -update noar tt set b2='KPKFVA52DZQYAM7' where id=8; -update noar ti set b2='KPKFVA52DZQYAM7' where id=8; -update noar tt set v0='9JAUDHG1' where id=9; -update noar ti set v0='9JAUDHG1' where id=9; -update noar tt set b0='TEIH533FXWNAYHS6103XOVRG' where id=9; -update noar ti set b0='TEIH533FXWNAYHS6103XOVRG' where id=9; -update noar tt set v0='3HCG7' where id=9; -update noar ti set v0='3HCG7' where id=9; -update noar tt set b1='R5G5B45OC71VNE0XL' where id=9; -update noar ti set b1='R5G5B45OC71VNE0XL' where id=9; -update noar tt set v0='SHM2S6J5B0TD7E' where id=9; -update noar ti set v0='SHM2S6J5B0TD7E' where id=9; -update noar tt set b2='W75YOSOZM14Q43PVVOA5IS' where id=9; -update noar ti set b2='W75YOSOZM14Q43PVVOA5IS' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - f0 int not null, - v0 varchar(32) not null, - b0 tinyblob not null, - b1 longblob not null, - b2 mediumblob not null -) engine=tokudb; -insert into tt values (1,0,'','','',''); -insert into tt values (2,0,'','','',''); -insert into tt values (3,0,'','','',''); -insert into tt values (4,0,'','','',''); -insert into tt values (5,0,'','','',''); -insert into tt values (6,0,'','','',''); -insert into tt values (7,0,'','','',''); -insert into tt values (8,0,'','','',''); -insert into tt values (9,0,'','','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='WLU26SY' where id=1; -update noar ti set v0='WLU26SY' where id=1; -update noar tt set b0='YZ4TDUAVDJZG8G1YXCGI3DEPA8ZRIO' where id=1; -update noar ti set b0='YZ4TDUAVDJZG8G1YXCGI3DEPA8ZRIO' where id=1; -update noar tt set v0='0BRD64W' where id=1; -update noar ti set v0='0BRD64W' where id=1; -update noar tt set b1='RRM593JN698L1X' where id=1; -update noar ti set b1='RRM593JN698L1X' where id=1; -update noar tt set v0='UM7XVGQ5Z' where id=1; -update noar ti set v0='UM7XVGQ5Z' where id=1; -update noar tt set b2='KZQPGD' where id=1; -update noar ti set b2='KZQPGD' where id=1; -update noar tt set v0='97B7EGPHGKKVT' where id=2; -update noar ti set v0='97B7EGPHGKKVT' where id=2; -update noar tt set b0='CDALQLH7KEZRR342VS0A92C68OH' where id=2; -update noar ti set b0='CDALQLH7KEZRR342VS0A92C68OH' where id=2; -update noar tt set v0='2ETM' where id=2; -update noar ti set v0='2ETM' where id=2; -update noar tt set b1='EFQ11YOD94UJ523TC' where id=2; -update noar ti set b1='EFQ11YOD94UJ523TC' where id=2; -update noar tt set v0='VX39CALAZQIETW0VZQ8A18M9JF3Q65' where id=2; -update noar ti set v0='VX39CALAZQIETW0VZQ8A18M9JF3Q65' where id=2; -update noar tt set b2='EVT' where id=2; -update noar ti set b2='EVT' where id=2; -update noar tt set v0='HS7KQ' where id=3; -update noar ti set v0='HS7KQ' where id=3; -update noar tt set b0='NJ71T813LJVA9D2UB' where id=3; -update noar ti set b0='NJ71T813LJVA9D2UB' where id=3; -update noar tt set v0='6WL8H78VZNK40LSBMTTIGDVXE47' where id=3; -update noar ti set v0='6WL8H78VZNK40LSBMTTIGDVXE47' where id=3; -update noar tt set b1='ISW' where id=3; -update noar ti set b1='ISW' where id=3; -update noar tt set v0='MVNBNIZW619OYAD' where id=3; -update noar ti set v0='MVNBNIZW619OYAD' where id=3; -update noar tt set b2='TJRDN7EIQ16P28RO09RPOXC1PRRI5' where id=3; -update noar ti set b2='TJRDN7EIQ16P28RO09RPOXC1PRRI5' where id=3; -update noar tt set v0='6RA35JCA0GLZKT36IKSMGZE2ZI7A' where id=4; -update noar ti set v0='6RA35JCA0GLZKT36IKSMGZE2ZI7A' where id=4; -update noar tt set b0='ISM0MO' where id=4; -update noar ti set b0='ISM0MO' where id=4; -update noar tt set v0='QHECUZHAGRLIPND8POGCCHL5G4BKLUU' where id=4; -update noar ti set v0='QHECUZHAGRLIPND8POGCCHL5G4BKLUU' where id=4; -update noar tt set b1='RC0VVC355Q9EVQSJP3IIV4' where id=4; -update noar ti set b1='RC0VVC355Q9EVQSJP3IIV4' where id=4; -update noar tt set v0='6EJAXY8U078JRBAQFUFLBU6CP' where id=4; -update noar ti set v0='6EJAXY8U078JRBAQFUFLBU6CP' where id=4; -update noar tt set b2='ZQU0NF5W3' where id=4; -update noar ti set b2='ZQU0NF5W3' where id=4; -update noar tt set v0='LYIB' where id=5; -update noar ti set v0='LYIB' where id=5; -update noar tt set b0='YTTKYT' where id=5; -update noar ti set b0='YTTKYT' where id=5; -update noar tt set v0='Y5J' where id=5; -update noar ti set v0='Y5J' where id=5; -update noar tt set b1='RN3PU8YSC8YFYM1SR4WCOV' where id=5; -update noar ti set b1='RN3PU8YSC8YFYM1SR4WCOV' where id=5; -update noar tt set v0='9CKJ' where id=5; -update noar ti set v0='9CKJ' where id=5; -update noar tt set b2='X88L7YCEJE2K388800Z7FTVC233S4D2' where id=5; -update noar ti set b2='X88L7YCEJE2K388800Z7FTVC233S4D2' where id=5; -update noar tt set v0='S9VXSIGQ0RETGCC1EG3XERMJ9' where id=6; -update noar ti set v0='S9VXSIGQ0RETGCC1EG3XERMJ9' where id=6; -update noar tt set b0='KY43ISWEA2G53V6UNCVAEU' where id=6; -update noar ti set b0='KY43ISWEA2G53V6UNCVAEU' where id=6; -update noar tt set v0='LX39MDR0EP9B7UXACN83CEMWJDFFCXL' where id=6; -update noar ti set v0='LX39MDR0EP9B7UXACN83CEMWJDFFCXL' where id=6; -update noar tt set b1='FJEK0INZ48GXEYOOMFM8UJI4E71329G' where id=6; -update noar ti set b1='FJEK0INZ48GXEYOOMFM8UJI4E71329G' where id=6; -update noar tt set v0='8KXEL4T9OHE20' where id=6; -update noar ti set v0='8KXEL4T9OHE20' where id=6; -update noar tt set b2='XI' where id=6; -update noar ti set b2='XI' where id=6; -update noar tt set v0='1YZRB46JK8MLB7P6L184L4Q63IQ7' where id=7; -update noar ti set v0='1YZRB46JK8MLB7P6L184L4Q63IQ7' where id=7; -update noar tt set b0='EI' where id=7; -update noar ti set b0='EI' where id=7; -update noar tt set v0='0UEQV48I3657S45RI1UP6PBWTJJ6IE' where id=7; -update noar ti set v0='0UEQV48I3657S45RI1UP6PBWTJJ6IE' where id=7; -update noar tt set b1='03J03' where id=7; -update noar ti set b1='03J03' where id=7; -update noar tt set v0='RX5HY5' where id=7; -update noar ti set v0='RX5HY5' where id=7; -update noar tt set b2='57XF2C0DRU6WDN' where id=7; -update noar ti set b2='57XF2C0DRU6WDN' where id=7; -update noar tt set v0='9LG602GNKZHEQ0YB9ZOX' where id=8; -update noar ti set v0='9LG602GNKZHEQ0YB9ZOX' where id=8; -update noar tt set b0='MPHI3ONGH861VF' where id=8; -update noar ti set b0='MPHI3ONGH861VF' where id=8; -update noar tt set v0='5MITBB25PO5OWYPU242HZ' where id=8; -update noar ti set v0='5MITBB25PO5OWYPU242HZ' where id=8; -update noar tt set b1='2XXTYD' where id=8; -update noar ti set b1='2XXTYD' where id=8; -update noar tt set v0='MHFEI2AT1R9KLW0T6MY5U9V3YUUTA5H' where id=8; -update noar ti set v0='MHFEI2AT1R9KLW0T6MY5U9V3YUUTA5H' where id=8; -update noar tt set b2='PAQ0CTDBBQF' where id=8; -update noar ti set b2='PAQ0CTDBBQF' where id=8; -update noar tt set v0='1TG665CKQ5XN58Q' where id=9; -update noar ti set v0='1TG665CKQ5XN58Q' where id=9; -update noar tt set b0='C4TR0D0P' where id=9; -update noar ti set b0='C4TR0D0P' where id=9; -update noar tt set v0='4CI2VEBY60XZEZ44TY16X02CH921X' where id=9; -update noar ti set v0='4CI2VEBY60XZEZ44TY16X02CH921X' where id=9; -update noar tt set b1='UH9VKXEP17E' where id=9; -update noar ti set b1='UH9VKXEP17E' where id=9; -update noar tt set v0='W4SJ5OKSKXRQMUL' where id=9; -update noar ti set v0='W4SJ5OKSKXRQMUL' where id=9; -update noar tt set b2='MNULS18' where id=9; -update noar ti set b2='MNULS18' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - f0 int not null, - v0 varchar(256) not null, - b0 tinyblob not null, - b1 longblob not null, - b2 mediumblob not null -) engine=tokudb; -insert into tt values (1,0,'','','',''); -insert into tt values (2,0,'','','',''); -insert into tt values (3,0,'','','',''); -insert into tt values (4,0,'','','',''); -insert into tt values (5,0,'','','',''); -insert into tt values (6,0,'','','',''); -insert into tt values (7,0,'','','',''); -insert into tt values (8,0,'','','',''); -insert into tt values (9,0,'','','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='2YFR7YFNVBMABVD94CZ' where id=1; -update noar ti set v0='2YFR7YFNVBMABVD94CZ' where id=1; -update noar tt set b0='D1C352ZX6A4NXMJ07K2' where id=1; -update noar ti set b0='D1C352ZX6A4NXMJ07K2' where id=1; -update noar tt set v0='EDNM56X8XKUISQI1GRR2B5BD6CGBXI' where id=1; -update noar ti set v0='EDNM56X8XKUISQI1GRR2B5BD6CGBXI' where id=1; -update noar tt set b1='UWW2IIMZ' where id=1; -update noar ti set b1='UWW2IIMZ' where id=1; -update noar tt set v0='73Z1ME44RLDFYFONGR43' where id=1; -update noar ti set v0='73Z1ME44RLDFYFONGR43' where id=1; -update noar tt set b2='GLTX7S07N4TO3KS4EOCMYCZVO09T9M4' where id=1; -update noar ti set b2='GLTX7S07N4TO3KS4EOCMYCZVO09T9M4' where id=1; -update noar tt set v0='NAHVPZBIZFE9YKW9ETMZTZWQ7C4' where id=2; -update noar ti set v0='NAHVPZBIZFE9YKW9ETMZTZWQ7C4' where id=2; -update noar tt set b0='IU0G6YHBK1J9YS' where id=2; -update noar ti set b0='IU0G6YHBK1J9YS' where id=2; -update noar tt set v0='RGSAN0IW2JZ5V44L5YDP' where id=2; -update noar ti set v0='RGSAN0IW2JZ5V44L5YDP' where id=2; -update noar tt set b1='4CB53D2WRZW' where id=2; -update noar ti set b1='4CB53D2WRZW' where id=2; -update noar tt set v0='ILKAVIJV9WAJEF2PL5KZNSY' where id=2; -update noar ti set v0='ILKAVIJV9WAJEF2PL5KZNSY' where id=2; -update noar tt set b2='U1DD6E096K9BZEWNH' where id=2; -update noar ti set b2='U1DD6E096K9BZEWNH' where id=2; -update noar tt set v0='U7LJ1KK5C13EZOMEXM89QT1P08EZ' where id=3; -update noar ti set v0='U7LJ1KK5C13EZOMEXM89QT1P08EZ' where id=3; -update noar tt set b0='VRHT' where id=3; -update noar ti set b0='VRHT' where id=3; -update noar tt set v0='TY1FS55IE' where id=3; -update noar ti set v0='TY1FS55IE' where id=3; -update noar tt set b1='FNTVRMKQSSQN3Z7QXT' where id=3; -update noar ti set b1='FNTVRMKQSSQN3Z7QXT' where id=3; -update noar tt set v0='5D7G5VB9G2FOZ3VHF' where id=3; -update noar ti set v0='5D7G5VB9G2FOZ3VHF' where id=3; -update noar tt set b2='2KHZG4FU2NSE9CWHO' where id=3; -update noar ti set b2='2KHZG4FU2NSE9CWHO' where id=3; -update noar tt set v0='TAXA8L0K08MNRW6V5' where id=4; -update noar ti set v0='TAXA8L0K08MNRW6V5' where id=4; -update noar tt set b0='U5KJM4G20UPOIRIKR0XZ' where id=4; -update noar ti set b0='U5KJM4G20UPOIRIKR0XZ' where id=4; -update noar tt set v0='FASAEZ1A8E838PIIH6YB9KUO' where id=4; -update noar ti set v0='FASAEZ1A8E838PIIH6YB9KUO' where id=4; -update noar tt set b1='Y4XAX79W20RPOTLPADOKBHGX3AZBD' where id=4; -update noar ti set b1='Y4XAX79W20RPOTLPADOKBHGX3AZBD' where id=4; -update noar tt set v0='BP4TM' where id=4; -update noar ti set v0='BP4TM' where id=4; -update noar tt set b2='L1E8EAJCDCEZJBKDE993OH59WL' where id=4; -update noar ti set b2='L1E8EAJCDCEZJBKDE993OH59WL' where id=4; -update noar tt set v0='FSP6AHI4JKVAEYLP7YWH9BGMD4CH' where id=5; -update noar ti set v0='FSP6AHI4JKVAEYLP7YWH9BGMD4CH' where id=5; -update noar tt set b0='EAUUIB1B06ENPYLTKGW9HP3676Y3RGL' where id=5; -update noar ti set b0='EAUUIB1B06ENPYLTKGW9HP3676Y3RGL' where id=5; -update noar tt set v0='SJ0N28ERRQEO7CEZ6J6CBTIY0XENL7L' where id=5; -update noar ti set v0='SJ0N28ERRQEO7CEZ6J6CBTIY0XENL7L' where id=5; -update noar tt set b1='W0XNGYC' where id=5; -update noar ti set b1='W0XNGYC' where id=5; -update noar tt set v0='U84RKJTWQB9R5NWHWTN2JI6' where id=5; -update noar ti set v0='U84RKJTWQB9R5NWHWTN2JI6' where id=5; -update noar tt set b2='7WI0' where id=5; -update noar ti set b2='7WI0' where id=5; -update noar tt set v0='2ZJVWZ' where id=6; -update noar ti set v0='2ZJVWZ' where id=6; -update noar tt set b0='S6SKLIDK76UNZVFS6ES8OZBGVMS7' where id=6; -update noar ti set b0='S6SKLIDK76UNZVFS6ES8OZBGVMS7' where id=6; -update noar tt set v0='IPJORAM60NQXJI' where id=6; -update noar ti set v0='IPJORAM60NQXJI' where id=6; -update noar tt set b1='2Y0WW1' where id=6; -update noar ti set b1='2Y0WW1' where id=6; -update noar tt set v0='AEZMWB4EQIGWO8G' where id=6; -update noar ti set v0='AEZMWB4EQIGWO8G' where id=6; -update noar tt set b2='AGDY6STMHIKIS23HOJEYRJEWWCK4' where id=6; -update noar ti set b2='AGDY6STMHIKIS23HOJEYRJEWWCK4' where id=6; -update noar tt set v0='9XVL670GR8AVWKSA3662F4LYO' where id=7; -update noar ti set v0='9XVL670GR8AVWKSA3662F4LYO' where id=7; -update noar tt set b0='T' where id=7; -update noar ti set b0='T' where id=7; -update noar tt set v0='D5YVQG5QRNHRQRTP' where id=7; -update noar ti set v0='D5YVQG5QRNHRQRTP' where id=7; -update noar tt set b1='5GULAJQEFO16E7V2JRU8756SRBNWV2P' where id=7; -update noar ti set b1='5GULAJQEFO16E7V2JRU8756SRBNWV2P' where id=7; -update noar tt set v0='CEGHCLZ3Z48YEVB' where id=7; -update noar ti set v0='CEGHCLZ3Z48YEVB' where id=7; -update noar tt set b2='HSQTJAQ0B7BD' where id=7; -update noar ti set b2='HSQTJAQ0B7BD' where id=7; -update noar tt set v0='D73LVLM7' where id=8; -update noar ti set v0='D73LVLM7' where id=8; -update noar tt set b0='OQGJZH8QN8ABAFAP0NQC13P4' where id=8; -update noar ti set b0='OQGJZH8QN8ABAFAP0NQC13P4' where id=8; -update noar tt set v0='0KTTY' where id=8; -update noar ti set v0='0KTTY' where id=8; -update noar tt set b1='980R9UERD1Q' where id=8; -update noar ti set b1='980R9UERD1Q' where id=8; -update noar tt set v0='NHBXX0WNEF207MRLM0O' where id=8; -update noar ti set v0='NHBXX0WNEF207MRLM0O' where id=8; -update noar tt set b2='G9UZG8FZKV6G6187JTKJDCGCEKOZR0WX' where id=8; -update noar ti set b2='G9UZG8FZKV6G6187JTKJDCGCEKOZR0WX' where id=8; -update noar tt set v0='IR4KTP4LZO' where id=9; -update noar ti set v0='IR4KTP4LZO' where id=9; -update noar tt set b0='9OFE64610RU69' where id=9; -update noar ti set b0='9OFE64610RU69' where id=9; -update noar tt set v0='3J5P8KQB0ROFPY' where id=9; -update noar ti set v0='3J5P8KQB0ROFPY' where id=9; -update noar tt set b1='P0I23GYR6UO6NNDUE4VG' where id=9; -update noar ti set b1='P0I23GYR6UO6NNDUE4VG' where id=9; -update noar tt set v0='LV23IQFNKKCLA3RR' where id=9; -update noar ti set v0='LV23IQFNKKCLA3RR' where id=9; -update noar tt set b2='HXJPTZ45LOYP44OK8DPQSE1B1R7' where id=9; -update noar ti set b2='HXJPTZ45LOYP44OK8DPQSE1B1R7' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - f0 int null, - v0 varchar(32) null, - b0 tinyblob null, - b1 longblob null, - b2 longblob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='WKB6QCXEDAX7BKAZ7FBYFMXJ54JIZ4' where id=1; -update noar ti set v0='WKB6QCXEDAX7BKAZ7FBYFMXJ54JIZ4' where id=1; -update noar tt set b0='DAARWNBBKGNY0JBR1CD6W' where id=1; -update noar ti set b0='DAARWNBBKGNY0JBR1CD6W' where id=1; -update noar tt set v0='4YGA2EABOXMSCKOA' where id=1; -update noar ti set v0='4YGA2EABOXMSCKOA' where id=1; -update noar tt set b1='NFFFZVKDVLR' where id=1; -update noar ti set b1='NFFFZVKDVLR' where id=1; -update noar tt set v0='9I6KRK9IAX12CG7I2M7QITVNNNBXIG' where id=1; -update noar ti set v0='9I6KRK9IAX12CG7I2M7QITVNNNBXIG' where id=1; -update noar tt set b2='ETBQGKPB0A9Q2YULI8BHZ' where id=1; -update noar ti set b2='ETBQGKPB0A9Q2YULI8BHZ' where id=1; -update noar tt set v0='7S5KZ52Z2NNIIXV5XZBS' where id=2; -update noar ti set v0='7S5KZ52Z2NNIIXV5XZBS' where id=2; -update noar tt set b0='GDFU' where id=2; -update noar ti set b0='GDFU' where id=2; -update noar tt set v0='IM5YJ456Q7A0OZRTTEK7' where id=2; -update noar ti set v0='IM5YJ456Q7A0OZRTTEK7' where id=2; -update noar tt set b1='4Q4M2ZU4ODH33NYFX1MGDY1O967OE' where id=2; -update noar ti set b1='4Q4M2ZU4ODH33NYFX1MGDY1O967OE' where id=2; -update noar tt set v0='5L' where id=2; -update noar ti set v0='5L' where id=2; -update noar tt set b2='Q8XV5WET3W2ARGFM' where id=2; -update noar ti set b2='Q8XV5WET3W2ARGFM' where id=2; -update noar tt set v0='RRE0FA0' where id=3; -update noar ti set v0='RRE0FA0' where id=3; -update noar tt set b0='77LG4G1XJ1GN58QXHZEK7WF657GLL' where id=3; -update noar ti set b0='77LG4G1XJ1GN58QXHZEK7WF657GLL' where id=3; -update noar tt set v0='JO' where id=3; -update noar ti set v0='JO' where id=3; -update noar tt set b1='O230MX7LSTX8F3MY4R3N1' where id=3; -update noar ti set b1='O230MX7LSTX8F3MY4R3N1' where id=3; -update noar tt set v0='J3JEPDQ028UY4MT9MM' where id=3; -update noar ti set v0='J3JEPDQ028UY4MT9MM' where id=3; -update noar tt set b2='LBKFFTPKEVT760XOGV2' where id=3; -update noar ti set b2='LBKFFTPKEVT760XOGV2' where id=3; -update noar tt set v0='FD5P55NA3IIYPAR9WNOKGN21K' where id=4; -update noar ti set v0='FD5P55NA3IIYPAR9WNOKGN21K' where id=4; -update noar tt set b0='FM1CGVMA25LKCJPW06TM3S11' where id=4; -update noar ti set b0='FM1CGVMA25LKCJPW06TM3S11' where id=4; -update noar tt set v0='N' where id=4; -update noar ti set v0='N' where id=4; -update noar tt set b1='8FGHZT4SDT' where id=4; -update noar ti set b1='8FGHZT4SDT' where id=4; -update noar tt set v0='JGM5NWCYN0OFWKR417AJHODI75D' where id=4; -update noar ti set v0='JGM5NWCYN0OFWKR417AJHODI75D' where id=4; -update noar tt set b2='T7CWNK' where id=4; -update noar ti set b2='T7CWNK' where id=4; -update noar tt set v0='57W4FXI' where id=5; -update noar ti set v0='57W4FXI' where id=5; -update noar tt set b0='0MVW2VNB2FJHNONA' where id=5; -update noar ti set b0='0MVW2VNB2FJHNONA' where id=5; -update noar tt set v0='AHZWOCT' where id=5; -update noar ti set v0='AHZWOCT' where id=5; -update noar tt set b1='1WPFSUBUWOSGNWMSTGTGZ5' where id=5; -update noar ti set b1='1WPFSUBUWOSGNWMSTGTGZ5' where id=5; -update noar tt set v0='V4C6EK' where id=5; -update noar ti set v0='V4C6EK' where id=5; -update noar tt set b2='WFLN792PV0T7SZH1D' where id=5; -update noar ti set b2='WFLN792PV0T7SZH1D' where id=5; -update noar tt set v0='KEE87BO2779WDXH4DFKJJJQ2Z95T' where id=6; -update noar ti set v0='KEE87BO2779WDXH4DFKJJJQ2Z95T' where id=6; -update noar tt set b0='X' where id=6; -update noar ti set b0='X' where id=6; -update noar tt set v0='U7PLXDX4B0EPOGEHSI' where id=6; -update noar ti set v0='U7PLXDX4B0EPOGEHSI' where id=6; -update noar tt set b1='51NY1VUXRQGPYO' where id=6; -update noar ti set b1='51NY1VUXRQGPYO' where id=6; -update noar tt set v0='3GPYI35AKG3018X8BYVL5' where id=6; -update noar ti set v0='3GPYI35AKG3018X8BYVL5' where id=6; -update noar tt set b2='PHVNHICZ1MY39XI0JQV0E' where id=6; -update noar ti set b2='PHVNHICZ1MY39XI0JQV0E' where id=6; -update noar tt set v0='BAPY2FCG8BJ3ZR3DMI1MB' where id=7; -update noar ti set v0='BAPY2FCG8BJ3ZR3DMI1MB' where id=7; -update noar tt set b0='IOJH0GMSX9H2HZT' where id=7; -update noar ti set b0='IOJH0GMSX9H2HZT' where id=7; -update noar tt set v0='LO1908ZMFVVWW1OX3ZJZGJ0TS2J2QH' where id=7; -update noar ti set v0='LO1908ZMFVVWW1OX3ZJZGJ0TS2J2QH' where id=7; -update noar tt set b1='S7XAKSSGSXNIMPWBN7ULY95ETF3U2' where id=7; -update noar ti set b1='S7XAKSSGSXNIMPWBN7ULY95ETF3U2' where id=7; -update noar tt set v0='URKDP2MZNHHA3BLJM' where id=7; -update noar ti set v0='URKDP2MZNHHA3BLJM' where id=7; -update noar tt set b2='OUPA298IPRTHVWA5WUK0IS' where id=7; -update noar ti set b2='OUPA298IPRTHVWA5WUK0IS' where id=7; -update noar tt set v0='I9N2HBC11AYL24SX5M1NOPFD3M' where id=8; -update noar ti set v0='I9N2HBC11AYL24SX5M1NOPFD3M' where id=8; -update noar tt set b0='UUCWYUY0NR1DM8ZJ2WQ5' where id=8; -update noar ti set b0='UUCWYUY0NR1DM8ZJ2WQ5' where id=8; -update noar tt set v0='N7XFLJ' where id=8; -update noar ti set v0='N7XFLJ' where id=8; -update noar tt set b1='3VQY8R26AZ' where id=8; -update noar ti set b1='3VQY8R26AZ' where id=8; -update noar tt set v0='L3GG39QTMJAK3GMA46ZDPU' where id=8; -update noar ti set v0='L3GG39QTMJAK3GMA46ZDPU' where id=8; -update noar tt set b2='NMMCGNOWUTG19E9L266G4YPLKMY5A' where id=8; -update noar ti set b2='NMMCGNOWUTG19E9L266G4YPLKMY5A' where id=8; -update noar tt set v0='C2FQ96XNGUYC84D7HA9' where id=9; -update noar ti set v0='C2FQ96XNGUYC84D7HA9' where id=9; -update noar tt set b0='6U2M544B1UHZ' where id=9; -update noar ti set b0='6U2M544B1UHZ' where id=9; -update noar tt set v0='8JWSNHHEVZJS9PWV8VOW2GYGKRJ' where id=9; -update noar ti set v0='8JWSNHHEVZJS9PWV8VOW2GYGKRJ' where id=9; -update noar tt set b1='KHT6ABJV82' where id=9; -update noar ti set b1='KHT6ABJV82' where id=9; -update noar tt set v0='IDSLWB500SW2' where id=9; -update noar ti set v0='IDSLWB500SW2' where id=9; -update noar tt set b2='V8N7Q3W2' where id=9; -update noar ti set b2='V8N7Q3W2' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - f0 int null, - v0 varchar(256) null, - b0 tinyblob null, - b1 longblob null, - b2 longblob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='ZZQW0' where id=1; -update noar ti set v0='ZZQW0' where id=1; -update noar tt set b0='7W4HXNM2XQK5AH7NK1NP4OTXY85O4' where id=1; -update noar ti set b0='7W4HXNM2XQK5AH7NK1NP4OTXY85O4' where id=1; -update noar tt set v0='B51PLR39FSU741IED7JECCK7I3AFW6X' where id=1; -update noar ti set v0='B51PLR39FSU741IED7JECCK7I3AFW6X' where id=1; -update noar tt set b1='RQXOPJA6BWUOFKRY9VAZ' where id=1; -update noar ti set b1='RQXOPJA6BWUOFKRY9VAZ' where id=1; -update noar tt set v0='47O53I7DQFNDKOE9C91FTL03TES83OY' where id=1; -update noar ti set v0='47O53I7DQFNDKOE9C91FTL03TES83OY' where id=1; -update noar tt set b2='61GNDMNKWG59R5' where id=1; -update noar ti set b2='61GNDMNKWG59R5' where id=1; -update noar tt set v0='XM' where id=2; -update noar ti set v0='XM' where id=2; -update noar tt set b0='8X1WG83G2J' where id=2; -update noar ti set b0='8X1WG83G2J' where id=2; -update noar tt set v0='QAT1XOC' where id=2; -update noar ti set v0='QAT1XOC' where id=2; -update noar tt set b1='E7RZJTH1OUESGS9C7RV' where id=2; -update noar ti set b1='E7RZJTH1OUESGS9C7RV' where id=2; -update noar tt set v0='M8U02EG0' where id=2; -update noar ti set v0='M8U02EG0' where id=2; -update noar tt set b2='34O31HYEZYA6OJ3S9MLMUX' where id=2; -update noar ti set b2='34O31HYEZYA6OJ3S9MLMUX' where id=2; -update noar tt set v0='NOOIGJ1O42AEW7W5' where id=3; -update noar ti set v0='NOOIGJ1O42AEW7W5' where id=3; -update noar tt set b0='CETXM13QUCLHFNKMLWBWFDR' where id=3; -update noar ti set b0='CETXM13QUCLHFNKMLWBWFDR' where id=3; -update noar tt set v0='33GYEI3CBGMM4U5K' where id=3; -update noar ti set v0='33GYEI3CBGMM4U5K' where id=3; -update noar tt set b1='1HCE9MO3N' where id=3; -update noar ti set b1='1HCE9MO3N' where id=3; -update noar tt set v0='V' where id=3; -update noar ti set v0='V' where id=3; -update noar tt set b2='R9YTXMJLWQYR4C3S' where id=3; -update noar ti set b2='R9YTXMJLWQYR4C3S' where id=3; -update noar tt set v0='E81P6G145R87UTORECCZD66' where id=4; -update noar ti set v0='E81P6G145R87UTORECCZD66' where id=4; -update noar tt set b0='UHJDD49RGA3O5' where id=4; -update noar ti set b0='UHJDD49RGA3O5' where id=4; -update noar tt set v0='MJNR' where id=4; -update noar ti set v0='MJNR' where id=4; -update noar tt set b1='U5ZGGNWWXDGNQ2L3KVBUS' where id=4; -update noar ti set b1='U5ZGGNWWXDGNQ2L3KVBUS' where id=4; -update noar tt set v0='9JBZ2V72NV487MCABXNJFAGO88AAOWKZ' where id=4; -update noar ti set v0='9JBZ2V72NV487MCABXNJFAGO88AAOWKZ' where id=4; -update noar tt set b2='988U81QQL4IQ0ADZC7R0X3G0P' where id=4; -update noar ti set b2='988U81QQL4IQ0ADZC7R0X3G0P' where id=4; -update noar tt set v0='P5NDB15L65' where id=5; -update noar ti set v0='P5NDB15L65' where id=5; -update noar tt set b0='6DE6IE9M5I8BMNWEEHD94LFLZTYNYB' where id=5; -update noar ti set b0='6DE6IE9M5I8BMNWEEHD94LFLZTYNYB' where id=5; -update noar tt set v0='JJ78W2LVS1PNB3E7QBQFZH9MF877GV' where id=5; -update noar ti set v0='JJ78W2LVS1PNB3E7QBQFZH9MF877GV' where id=5; -update noar tt set b1='YRJPD7M76CU1G41PTS7ACSW2R30MZK1' where id=5; -update noar ti set b1='YRJPD7M76CU1G41PTS7ACSW2R30MZK1' where id=5; -update noar tt set v0='NLFLSAHM3Z7ST1BUEDUJF9' where id=5; -update noar ti set v0='NLFLSAHM3Z7ST1BUEDUJF9' where id=5; -update noar tt set b2='1DCP49QBNMLDZ507ECDLB7' where id=5; -update noar ti set b2='1DCP49QBNMLDZ507ECDLB7' where id=5; -update noar tt set v0='5OZBK90SEOWDD1E8WMSFCXLM' where id=6; -update noar ti set v0='5OZBK90SEOWDD1E8WMSFCXLM' where id=6; -update noar tt set b0='NUW1486JETPZFX50QPY6MXMMX' where id=6; -update noar ti set b0='NUW1486JETPZFX50QPY6MXMMX' where id=6; -update noar tt set v0='WDW7UDYLT6' where id=6; -update noar ti set v0='WDW7UDYLT6' where id=6; -update noar tt set b1='16205VJ3A0H7AZHA2' where id=6; -update noar ti set b1='16205VJ3A0H7AZHA2' where id=6; -update noar tt set v0='8QDJ' where id=6; -update noar ti set v0='8QDJ' where id=6; -update noar tt set b2='81575WF9W996JIP69N8E7R9CK2GA5PZ' where id=6; -update noar ti set b2='81575WF9W996JIP69N8E7R9CK2GA5PZ' where id=6; -update noar tt set v0='6GX3TE227BR0JBHVOZL5B5XUE8C7HMX' where id=7; -update noar ti set v0='6GX3TE227BR0JBHVOZL5B5XUE8C7HMX' where id=7; -update noar tt set b0='PAZR4B5S0' where id=7; -update noar ti set b0='PAZR4B5S0' where id=7; -update noar tt set v0='WI7OK8UVVDDBOBP5AYOMTKMS' where id=7; -update noar ti set v0='WI7OK8UVVDDBOBP5AYOMTKMS' where id=7; -update noar tt set b1='4' where id=7; -update noar ti set b1='4' where id=7; -update noar tt set v0='799XGAZ' where id=7; -update noar ti set v0='799XGAZ' where id=7; -update noar tt set b2='FZNOA' where id=7; -update noar ti set b2='FZNOA' where id=7; -update noar tt set v0='3FYM7UQLA91GXXIPHLXNPC9DMCCCM' where id=8; -update noar ti set v0='3FYM7UQLA91GXXIPHLXNPC9DMCCCM' where id=8; -update noar tt set b0='VPA5DHCSJLSJXIQDRSNSZMUHAXDW0PV' where id=8; -update noar ti set b0='VPA5DHCSJLSJXIQDRSNSZMUHAXDW0PV' where id=8; -update noar tt set v0='388H8ZC0KXRDBSG0JM58S9BJ29CIC2' where id=8; -update noar ti set v0='388H8ZC0KXRDBSG0JM58S9BJ29CIC2' where id=8; -update noar tt set b1='TIS1BLSO4F5HR1EG6ILDA6' where id=8; -update noar ti set b1='TIS1BLSO4F5HR1EG6ILDA6' where id=8; -update noar tt set v0='WDCJXV7J' where id=8; -update noar ti set v0='WDCJXV7J' where id=8; -update noar tt set b2='1VMSSOHVNHSEC0UC' where id=8; -update noar ti set b2='1VMSSOHVNHSEC0UC' where id=8; -update noar tt set v0='HQW9COPGPDMPTEEYGCVDUGJZAEPP' where id=9; -update noar ti set v0='HQW9COPGPDMPTEEYGCVDUGJZAEPP' where id=9; -update noar tt set b0='OSV32IDKYFMCG9PUGAT' where id=9; -update noar ti set b0='OSV32IDKYFMCG9PUGAT' where id=9; -update noar tt set v0='RNTGZDG3C5RFPE3EJS5N' where id=9; -update noar ti set v0='RNTGZDG3C5RFPE3EJS5N' where id=9; -update noar tt set b1='KKB7D0T3X4K09AE274GUS4PGB7OG6' where id=9; -update noar ti set b1='KKB7D0T3X4K09AE274GUS4PGB7OG6' where id=9; -update noar tt set v0='EGJJMA4IGGHY75QJAT211' where id=9; -update noar ti set v0='EGJJMA4IGGHY75QJAT211' where id=9; -update noar tt set b2='X9MA2TTQ19F50H' where id=9; -update noar ti set b2='X9MA2TTQ19F50H' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - f0 int not null, - v0 varchar(32) not null, - b0 tinyblob not null, - b1 longblob not null, - b2 longblob not null -) engine=tokudb; -insert into tt values (1,0,'','','',''); -insert into tt values (2,0,'','','',''); -insert into tt values (3,0,'','','',''); -insert into tt values (4,0,'','','',''); -insert into tt values (5,0,'','','',''); -insert into tt values (6,0,'','','',''); -insert into tt values (7,0,'','','',''); -insert into tt values (8,0,'','','',''); -insert into tt values (9,0,'','','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='ZBU2S38J3Q' where id=1; -update noar ti set v0='ZBU2S38J3Q' where id=1; -update noar tt set b0='Q2APNIMUSV2BHWZBZN6D8CDV' where id=1; -update noar ti set b0='Q2APNIMUSV2BHWZBZN6D8CDV' where id=1; -update noar tt set v0='DFYL6ZEYN7KA7LUONEJDAYEI0ZZMDWO' where id=1; -update noar ti set v0='DFYL6ZEYN7KA7LUONEJDAYEI0ZZMDWO' where id=1; -update noar tt set b1='M4OMQCR4GF2P60O895UZB' where id=1; -update noar ti set b1='M4OMQCR4GF2P60O895UZB' where id=1; -update noar tt set v0='CDDEHV' where id=1; -update noar ti set v0='CDDEHV' where id=1; -update noar tt set b2='M' where id=1; -update noar ti set b2='M' where id=1; -update noar tt set v0='KJ1S' where id=2; -update noar ti set v0='KJ1S' where id=2; -update noar tt set b0='TCZYCUZHHXKZ9G4JQDE' where id=2; -update noar ti set b0='TCZYCUZHHXKZ9G4JQDE' where id=2; -update noar tt set v0='7A58D22DZGY88D841RTD37OTLTH2R' where id=2; -update noar ti set v0='7A58D22DZGY88D841RTD37OTLTH2R' where id=2; -update noar tt set b1='9JLXP35NVDZ8VVI3H4QHMW' where id=2; -update noar ti set b1='9JLXP35NVDZ8VVI3H4QHMW' where id=2; -update noar tt set v0='AWMYMUIE7R7P59MM7XLCZ6' where id=2; -update noar ti set v0='AWMYMUIE7R7P59MM7XLCZ6' where id=2; -update noar tt set b2='P0U3H2NB0' where id=2; -update noar ti set b2='P0U3H2NB0' where id=2; -update noar tt set v0='WCOGGI5M' where id=3; -update noar ti set v0='WCOGGI5M' where id=3; -update noar tt set b0='TJRGZCN2SK2MMZON' where id=3; -update noar ti set b0='TJRGZCN2SK2MMZON' where id=3; -update noar tt set v0='7Q9' where id=3; -update noar ti set v0='7Q9' where id=3; -update noar tt set b1='IUC1ZAA0ZA6GNXWBBLHSKSBCP0SZ' where id=3; -update noar ti set b1='IUC1ZAA0ZA6GNXWBBLHSKSBCP0SZ' where id=3; -update noar tt set v0='HY1WKSR1H41EK28ZT' where id=3; -update noar ti set v0='HY1WKSR1H41EK28ZT' where id=3; -update noar tt set b2='630P3T988T7BBXM316RYT204' where id=3; -update noar ti set b2='630P3T988T7BBXM316RYT204' where id=3; -update noar tt set v0='6YEHRUFDST3B494335LRIMI9B519GW' where id=4; -update noar ti set v0='6YEHRUFDST3B494335LRIMI9B519GW' where id=4; -update noar tt set b0='BFKSIKTHXNVWFK7BU7CNB' where id=4; -update noar ti set b0='BFKSIKTHXNVWFK7BU7CNB' where id=4; -update noar tt set v0='0UEFCV' where id=4; -update noar ti set v0='0UEFCV' where id=4; -update noar tt set b1='30QD8KKVKXK8RXV597RRSTDKWP' where id=4; -update noar ti set b1='30QD8KKVKXK8RXV597RRSTDKWP' where id=4; -update noar tt set v0='1B8XNQ68X3REHRKV88G' where id=4; -update noar ti set v0='1B8XNQ68X3REHRKV88G' where id=4; -update noar tt set b2='7FELDTKWBV0KDTUR9OVC386L84EOV' where id=4; -update noar ti set b2='7FELDTKWBV0KDTUR9OVC386L84EOV' where id=4; -update noar tt set v0='BTNXKAWFSF9OGPRA5O1W2V32' where id=5; -update noar ti set v0='BTNXKAWFSF9OGPRA5O1W2V32' where id=5; -update noar tt set b0='29DZCELJRA522PU4OBJN6LEAMX5' where id=5; -update noar ti set b0='29DZCELJRA522PU4OBJN6LEAMX5' where id=5; -update noar tt set v0='422P9V03QR5Z3EVXW3KS92UE4' where id=5; -update noar ti set v0='422P9V03QR5Z3EVXW3KS92UE4' where id=5; -update noar tt set b1='MWWS1' where id=5; -update noar ti set b1='MWWS1' where id=5; -update noar tt set v0='DH9ZSREW1GJE0D24N5ERMRN1HZ' where id=5; -update noar ti set v0='DH9ZSREW1GJE0D24N5ERMRN1HZ' where id=5; -update noar tt set b2='7Z5BKGMF8AN1DQVG14A2ZTHW493E3K3C' where id=5; -update noar ti set b2='7Z5BKGMF8AN1DQVG14A2ZTHW493E3K3C' where id=5; -update noar tt set v0='JLB' where id=6; -update noar ti set v0='JLB' where id=6; -update noar tt set b0='AK4LL4Q12KMBV8LZYJ72Y4N0K' where id=6; -update noar ti set b0='AK4LL4Q12KMBV8LZYJ72Y4N0K' where id=6; -update noar tt set v0='YTXSMOJRCPR9W07XF1YMBPNSA9NBPZ' where id=6; -update noar ti set v0='YTXSMOJRCPR9W07XF1YMBPNSA9NBPZ' where id=6; -update noar tt set b1='BSQAMBT0ADXTQ5JUG0D8OXMICJ7C' where id=6; -update noar ti set b1='BSQAMBT0ADXTQ5JUG0D8OXMICJ7C' where id=6; -update noar tt set v0='JKCE76V6TKL2QSVB5' where id=6; -update noar ti set v0='JKCE76V6TKL2QSVB5' where id=6; -update noar tt set b2='XT69OFIKI1K3UVKOFAC2D0FHQ2DK6D2F' where id=6; -update noar ti set b2='XT69OFIKI1K3UVKOFAC2D0FHQ2DK6D2F' where id=6; -update noar tt set v0='HMUV51G' where id=7; -update noar ti set v0='HMUV51G' where id=7; -update noar tt set b0='47L401XYM4' where id=7; -update noar ti set b0='47L401XYM4' where id=7; -update noar tt set v0='VA' where id=7; -update noar ti set v0='VA' where id=7; -update noar tt set b1='3BJCHX32M543VN4J47RT5SB67ZOH' where id=7; -update noar ti set b1='3BJCHX32M543VN4J47RT5SB67ZOH' where id=7; -update noar tt set v0='OLDPGST7KC751HT4WHPPP676KJRWM' where id=7; -update noar ti set v0='OLDPGST7KC751HT4WHPPP676KJRWM' where id=7; -update noar tt set b2='1V1P8CLQYR66I6VDS5W1Z' where id=7; -update noar ti set b2='1V1P8CLQYR66I6VDS5W1Z' where id=7; -update noar tt set v0='5SHE97RIA' where id=8; -update noar ti set v0='5SHE97RIA' where id=8; -update noar tt set b0='MBU3B80UNT8R8VX' where id=8; -update noar ti set b0='MBU3B80UNT8R8VX' where id=8; -update noar tt set v0='6OX7NAC7UZZ' where id=8; -update noar ti set v0='6OX7NAC7UZZ' where id=8; -update noar tt set b1='UTIXFV5NU1SBAL7ETJC5XCCLCQ0OYJ' where id=8; -update noar ti set b1='UTIXFV5NU1SBAL7ETJC5XCCLCQ0OYJ' where id=8; -update noar tt set v0='Y' where id=8; -update noar ti set v0='Y' where id=8; -update noar tt set b2='LQDZFYUJMFOZR1DIJPGP945ZX' where id=8; -update noar ti set b2='LQDZFYUJMFOZR1DIJPGP945ZX' where id=8; -update noar tt set v0='2C408TQ76RR813WZHA3QAU' where id=9; -update noar ti set v0='2C408TQ76RR813WZHA3QAU' where id=9; -update noar tt set b0='YZCMPXZSCQ8219T5UOIW7FRE' where id=9; -update noar ti set b0='YZCMPXZSCQ8219T5UOIW7FRE' where id=9; -update noar tt set v0='L5RUTZ4B7B58J0UTKX1CK933AIYQ0DAI' where id=9; -update noar ti set v0='L5RUTZ4B7B58J0UTKX1CK933AIYQ0DAI' where id=9; -update noar tt set b1='L' where id=9; -update noar ti set b1='L' where id=9; -update noar tt set v0='E6V1T1DC' where id=9; -update noar ti set v0='E6V1T1DC' where id=9; -update noar tt set b2='FWL0BWE9J4KN' where id=9; -update noar ti set b2='FWL0BWE9J4KN' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - f0 int not null, - v0 varchar(256) not null, - b0 tinyblob not null, - b1 longblob not null, - b2 longblob not null -) engine=tokudb; -insert into tt values (1,0,'','','',''); -insert into tt values (2,0,'','','',''); -insert into tt values (3,0,'','','',''); -insert into tt values (4,0,'','','',''); -insert into tt values (5,0,'','','',''); -insert into tt values (6,0,'','','',''); -insert into tt values (7,0,'','','',''); -insert into tt values (8,0,'','','',''); -insert into tt values (9,0,'','','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='I49JXK16Y1VC' where id=1; -update noar ti set v0='I49JXK16Y1VC' where id=1; -update noar tt set b0='K48M' where id=1; -update noar ti set b0='K48M' where id=1; -update noar tt set v0='57JXV2GGDZTCZE7NEMX2' where id=1; -update noar ti set v0='57JXV2GGDZTCZE7NEMX2' where id=1; -update noar tt set b1='6L20A510ET1Y' where id=1; -update noar ti set b1='6L20A510ET1Y' where id=1; -update noar tt set v0='JGPA8GW7T' where id=1; -update noar ti set v0='JGPA8GW7T' where id=1; -update noar tt set b2='7B3GTBR8XCF8VCX0V3ROV0S853VWVQ9N' where id=1; -update noar ti set b2='7B3GTBR8XCF8VCX0V3ROV0S853VWVQ9N' where id=1; -update noar tt set v0='P5R0MD29EBY5KC5IV9PX1C' where id=2; -update noar ti set v0='P5R0MD29EBY5KC5IV9PX1C' where id=2; -update noar tt set b0='7MR1X5VEKVWWOFB84PM8VYQ' where id=2; -update noar ti set b0='7MR1X5VEKVWWOFB84PM8VYQ' where id=2; -update noar tt set v0='7' where id=2; -update noar ti set v0='7' where id=2; -update noar tt set b1='OOKDU' where id=2; -update noar ti set b1='OOKDU' where id=2; -update noar tt set v0='GLKBB4F' where id=2; -update noar ti set v0='GLKBB4F' where id=2; -update noar tt set b2='2DR80FS5SJHQLPMQ866PTWW' where id=2; -update noar ti set b2='2DR80FS5SJHQLPMQ866PTWW' where id=2; -update noar tt set v0='37JGHREY5Q3CXAYWKY5V' where id=3; -update noar ti set v0='37JGHREY5Q3CXAYWKY5V' where id=3; -update noar tt set b0='T5YYF79I6TPQ4B8DMX4WD1WAO9U5G' where id=3; -update noar ti set b0='T5YYF79I6TPQ4B8DMX4WD1WAO9U5G' where id=3; -update noar tt set v0='LAA6CDJQ5HVHGA2TRZ' where id=3; -update noar ti set v0='LAA6CDJQ5HVHGA2TRZ' where id=3; -update noar tt set b1='9QUOEBUNMJ0A4IVL8KYZ' where id=3; -update noar ti set b1='9QUOEBUNMJ0A4IVL8KYZ' where id=3; -update noar tt set v0='5VYYBY2VF96V6' where id=3; -update noar ti set v0='5VYYBY2VF96V6' where id=3; -update noar tt set b2='2JVMSDI15FSGS4HPFO7R8HILXVE' where id=3; -update noar ti set b2='2JVMSDI15FSGS4HPFO7R8HILXVE' where id=3; -update noar tt set v0='JV8KJ0D3PLWHUS7TDGC9V' where id=4; -update noar ti set v0='JV8KJ0D3PLWHUS7TDGC9V' where id=4; -update noar tt set b0='DB0ZTNMP24JG4PF' where id=4; -update noar ti set b0='DB0ZTNMP24JG4PF' where id=4; -update noar tt set v0='SJ46XX5' where id=4; -update noar ti set v0='SJ46XX5' where id=4; -update noar tt set b1='WZ8U' where id=4; -update noar ti set b1='WZ8U' where id=4; -update noar tt set v0='STCYR0T188C0' where id=4; -update noar ti set v0='STCYR0T188C0' where id=4; -update noar tt set b2='6LXB2BJLKDD' where id=4; -update noar ti set b2='6LXB2BJLKDD' where id=4; -update noar tt set v0='51E1IX2FFCJ9H9YAVTN' where id=5; -update noar ti set v0='51E1IX2FFCJ9H9YAVTN' where id=5; -update noar tt set b0='B7P6UM' where id=5; -update noar ti set b0='B7P6UM' where id=5; -update noar tt set v0='4AZD5NOM1' where id=5; -update noar ti set v0='4AZD5NOM1' where id=5; -update noar tt set b1='UPRKWJ3VB84ZRC0CBVLKRF8SCWH' where id=5; -update noar ti set b1='UPRKWJ3VB84ZRC0CBVLKRF8SCWH' where id=5; -update noar tt set v0='NOCBN1A79A2II3B' where id=5; -update noar ti set v0='NOCBN1A79A2II3B' where id=5; -update noar tt set b2='ZS' where id=5; -update noar ti set b2='ZS' where id=5; -update noar tt set v0='CB7IHOBJ4ATUTLQUWN' where id=6; -update noar ti set v0='CB7IHOBJ4ATUTLQUWN' where id=6; -update noar tt set b0='W9IUBJ4NU8YH3QO' where id=6; -update noar ti set b0='W9IUBJ4NU8YH3QO' where id=6; -update noar tt set v0='V7BIZO3MS1U' where id=6; -update noar ti set v0='V7BIZO3MS1U' where id=6; -update noar tt set b1='G4RIHF1818QC6TEQT3AA4' where id=6; -update noar ti set b1='G4RIHF1818QC6TEQT3AA4' where id=6; -update noar tt set v0='E510KMDIJ08JXHXBMJJUMOXF7VS' where id=6; -update noar ti set v0='E510KMDIJ08JXHXBMJJUMOXF7VS' where id=6; -update noar tt set b2='OVJN' where id=6; -update noar ti set b2='OVJN' where id=6; -update noar tt set v0='R25SBGXEV309CW1RBE6890P63KTBU3' where id=7; -update noar ti set v0='R25SBGXEV309CW1RBE6890P63KTBU3' where id=7; -update noar tt set b0='5998KF3KPFL08' where id=7; -update noar ti set b0='5998KF3KPFL08' where id=7; -update noar tt set v0='QHOHI8JYPQI' where id=7; -update noar ti set v0='QHOHI8JYPQI' where id=7; -update noar tt set b1='BUBHPPJXWY2RZHV606VMG5' where id=7; -update noar ti set b1='BUBHPPJXWY2RZHV606VMG5' where id=7; -update noar tt set v0='0FU2249A' where id=7; -update noar ti set v0='0FU2249A' where id=7; -update noar tt set b2='53SK5F83MS5QNW0DM' where id=7; -update noar ti set b2='53SK5F83MS5QNW0DM' where id=7; -update noar tt set v0='9466KNN1G8EVUQ4368' where id=8; -update noar ti set v0='9466KNN1G8EVUQ4368' where id=8; -update noar tt set b0='HI5PC' where id=8; -update noar ti set b0='HI5PC' where id=8; -update noar tt set v0='MOWF74G2NNABGLI2NYMJ57OO2' where id=8; -update noar ti set v0='MOWF74G2NNABGLI2NYMJ57OO2' where id=8; -update noar tt set b1='46WV457IVX5SEAD9' where id=8; -update noar ti set b1='46WV457IVX5SEAD9' where id=8; -update noar tt set v0='DKW6MKAU5PBEWF043CC8' where id=8; -update noar ti set v0='DKW6MKAU5PBEWF043CC8' where id=8; -update noar tt set b2='RVQQHZG' where id=8; -update noar ti set b2='RVQQHZG' where id=8; -update noar tt set v0='1V1IUMS1WRTQRDUIEHF' where id=9; -update noar ti set v0='1V1IUMS1WRTQRDUIEHF' where id=9; -update noar tt set b0='94PL9F5UNSZBRZX3JI5ACF38' where id=9; -update noar ti set b0='94PL9F5UNSZBRZX3JI5ACF38' where id=9; -update noar tt set v0='0OV' where id=9; -update noar ti set v0='0OV' where id=9; -update noar tt set b1='E' where id=9; -update noar ti set b1='E' where id=9; -update noar tt set v0='BHAFL3' where id=9; -update noar ti set v0='BHAFL3' where id=9; -update noar tt set b2='S5VBF9H' where id=9; -update noar ti set b2='S5VBF9H' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - f0 int null, - v0 varchar(32) null, - b0 blob null, - b1 tinyblob null, - b2 tinyblob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='AIP5C6GK1EXDR4VX' where id=1; -update noar ti set v0='AIP5C6GK1EXDR4VX' where id=1; -update noar tt set b0='IVBDVXHA0FE3JDGN2GBH6TEBJ' where id=1; -update noar ti set b0='IVBDVXHA0FE3JDGN2GBH6TEBJ' where id=1; -update noar tt set v0='X3A4XMHNLU' where id=1; -update noar ti set v0='X3A4XMHNLU' where id=1; -update noar tt set b1='8394I5M7P' where id=1; -update noar ti set b1='8394I5M7P' where id=1; -update noar tt set v0='BXNJZCUO5CBF' where id=1; -update noar ti set v0='BXNJZCUO5CBF' where id=1; -update noar tt set b2='X6Y3GJ8' where id=1; -update noar ti set b2='X6Y3GJ8' where id=1; -update noar tt set v0='ROG6OVJ3YA6A1TCOUYW4ZA0R' where id=2; -update noar ti set v0='ROG6OVJ3YA6A1TCOUYW4ZA0R' where id=2; -update noar tt set b0='Z1QVQX0KZ22YD6XVBDX0B8CQWYMA0' where id=2; -update noar ti set b0='Z1QVQX0KZ22YD6XVBDX0B8CQWYMA0' where id=2; -update noar tt set v0='NRT4JCBDDX7QHBH9YR8MRA0757D7' where id=2; -update noar ti set v0='NRT4JCBDDX7QHBH9YR8MRA0757D7' where id=2; -update noar tt set b1='3Z7BEXVVKVPM88DP8JZMAS' where id=2; -update noar ti set b1='3Z7BEXVVKVPM88DP8JZMAS' where id=2; -update noar tt set v0='9VJIEYZC9MDJDDPHKDGO2XS' where id=2; -update noar ti set v0='9VJIEYZC9MDJDDPHKDGO2XS' where id=2; -update noar tt set b2='RLATNT3J5YR4XU8' where id=2; -update noar ti set b2='RLATNT3J5YR4XU8' where id=2; -update noar tt set v0='7Y42XF9DUYYE' where id=3; -update noar ti set v0='7Y42XF9DUYYE' where id=3; -update noar tt set b0='SLULLESINTOCHUT518R3MH18E3QI' where id=3; -update noar ti set b0='SLULLESINTOCHUT518R3MH18E3QI' where id=3; -update noar tt set v0='QCRZX' where id=3; -update noar ti set v0='QCRZX' where id=3; -update noar tt set b1='VZW65' where id=3; -update noar ti set b1='VZW65' where id=3; -update noar tt set v0='MWYZIBW7Q0UL6EXUIDF369' where id=3; -update noar ti set v0='MWYZIBW7Q0UL6EXUIDF369' where id=3; -update noar tt set b2='NVQOPFMD4TJI3V6KYGW21IHOT' where id=3; -update noar ti set b2='NVQOPFMD4TJI3V6KYGW21IHOT' where id=3; -update noar tt set v0='S4L6DON8MM836D8XH0SPMMCHH59K' where id=4; -update noar ti set v0='S4L6DON8MM836D8XH0SPMMCHH59K' where id=4; -update noar tt set b0='THSF98AEOX8AOB9C9H23' where id=4; -update noar ti set b0='THSF98AEOX8AOB9C9H23' where id=4; -update noar tt set v0='R3WT8E31WJ3QVV66E7' where id=4; -update noar ti set v0='R3WT8E31WJ3QVV66E7' where id=4; -update noar tt set b1='DPQVDHE' where id=4; -update noar ti set b1='DPQVDHE' where id=4; -update noar tt set v0='3OMDLXE28A6JLJ1TPROBW8KX5CL9VXO' where id=4; -update noar ti set v0='3OMDLXE28A6JLJ1TPROBW8KX5CL9VXO' where id=4; -update noar tt set b2='D967J0OU' where id=4; -update noar ti set b2='D967J0OU' where id=4; -update noar tt set v0='WLGCRVF8VZEIZYDX0RN9XYUCX5R5' where id=5; -update noar ti set v0='WLGCRVF8VZEIZYDX0RN9XYUCX5R5' where id=5; -update noar tt set b0='7RM6M6RW' where id=5; -update noar ti set b0='7RM6M6RW' where id=5; -update noar tt set v0='W4LIVDNV' where id=5; -update noar ti set v0='W4LIVDNV' where id=5; -update noar tt set b1='O65D4Z' where id=5; -update noar ti set b1='O65D4Z' where id=5; -update noar tt set v0='VNNEBEGAL1PJ238' where id=5; -update noar ti set v0='VNNEBEGAL1PJ238' where id=5; -update noar tt set b2='E4FMJDQC1JF' where id=5; -update noar ti set b2='E4FMJDQC1JF' where id=5; -update noar tt set v0='FCXDF1VBUM3I4GPI0ZEPAG7QI7' where id=6; -update noar ti set v0='FCXDF1VBUM3I4GPI0ZEPAG7QI7' where id=6; -update noar tt set b0='DSYQVFY0BOFU1C5FABY' where id=6; -update noar ti set b0='DSYQVFY0BOFU1C5FABY' where id=6; -update noar tt set v0='7VSCKT9O' where id=6; -update noar ti set v0='7VSCKT9O' where id=6; -update noar tt set b1='ENV60KRC2RFTSP3ON3SNB4QM3W' where id=6; -update noar ti set b1='ENV60KRC2RFTSP3ON3SNB4QM3W' where id=6; -update noar tt set v0='JE7' where id=6; -update noar ti set v0='JE7' where id=6; -update noar tt set b2='U588UPEKEY9YBJSIOPWD7WIHR49' where id=6; -update noar ti set b2='U588UPEKEY9YBJSIOPWD7WIHR49' where id=6; -update noar tt set v0='PQPWMOTLZOU' where id=7; -update noar ti set v0='PQPWMOTLZOU' where id=7; -update noar tt set b0='KMTRBVMCE9LG2ZHYO8B9' where id=7; -update noar ti set b0='KMTRBVMCE9LG2ZHYO8B9' where id=7; -update noar tt set v0='4PWYQ8H1TQ6' where id=7; -update noar ti set v0='4PWYQ8H1TQ6' where id=7; -update noar tt set b1='D' where id=7; -update noar ti set b1='D' where id=7; -update noar tt set v0='QW3GY6QRU92OJX6QOJBTLFZ8ES8EGIGI' where id=7; -update noar ti set v0='QW3GY6QRU92OJX6QOJBTLFZ8ES8EGIGI' where id=7; -update noar tt set b2='8WI1XJJK' where id=7; -update noar ti set b2='8WI1XJJK' where id=7; -update noar tt set v0='ISTV' where id=8; -update noar ti set v0='ISTV' where id=8; -update noar tt set b0='X50QVX0K3FY3B' where id=8; -update noar ti set b0='X50QVX0K3FY3B' where id=8; -update noar tt set v0='5GTPVAA2IOUR03TI2IDBXQQF' where id=8; -update noar ti set v0='5GTPVAA2IOUR03TI2IDBXQQF' where id=8; -update noar tt set b1='7' where id=8; -update noar ti set b1='7' where id=8; -update noar tt set v0='I3MM0MBUXVTQR2GTIKOYWY3' where id=8; -update noar ti set v0='I3MM0MBUXVTQR2GTIKOYWY3' where id=8; -update noar tt set b2='CY907' where id=8; -update noar ti set b2='CY907' where id=8; -update noar tt set v0='XEUK6ZYDRQOCYYLZKBBW' where id=9; -update noar ti set v0='XEUK6ZYDRQOCYYLZKBBW' where id=9; -update noar tt set b0='18PMD' where id=9; -update noar ti set b0='18PMD' where id=9; -update noar tt set v0='ZAQFD' where id=9; -update noar ti set v0='ZAQFD' where id=9; -update noar tt set b1='HRQ' where id=9; -update noar ti set b1='HRQ' where id=9; -update noar tt set v0='2' where id=9; -update noar ti set v0='2' where id=9; -update noar tt set b2='E87IXO4MNDE8INLC3NKSHY' where id=9; -update noar ti set b2='E87IXO4MNDE8INLC3NKSHY' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - f0 int null, - v0 varchar(256) null, - b0 blob null, - b1 tinyblob null, - b2 tinyblob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='M7MUQB5XL' where id=1; -update noar ti set v0='M7MUQB5XL' where id=1; -update noar tt set b0='8RRKI0MIJIVXSWVFLKJDGMOA3EC6F' where id=1; -update noar ti set b0='8RRKI0MIJIVXSWVFLKJDGMOA3EC6F' where id=1; -update noar tt set v0='PDY' where id=1; -update noar ti set v0='PDY' where id=1; -update noar tt set b1='AJVAF0R' where id=1; -update noar ti set b1='AJVAF0R' where id=1; -update noar tt set v0='75GT' where id=1; -update noar ti set v0='75GT' where id=1; -update noar tt set b2='KV6LEQSGJ1KQ4W7VSIU' where id=1; -update noar ti set b2='KV6LEQSGJ1KQ4W7VSIU' where id=1; -update noar tt set v0='U4S83AXPC20ZG1' where id=2; -update noar ti set v0='U4S83AXPC20ZG1' where id=2; -update noar tt set b0='PGZA4LT' where id=2; -update noar ti set b0='PGZA4LT' where id=2; -update noar tt set v0='N1' where id=2; -update noar ti set v0='N1' where id=2; -update noar tt set b1='WI' where id=2; -update noar ti set b1='WI' where id=2; -update noar tt set v0='7Y6DSN6Q6S03QD04SYG6' where id=2; -update noar ti set v0='7Y6DSN6Q6S03QD04SYG6' where id=2; -update noar tt set b2='4KY9BKG36' where id=2; -update noar ti set b2='4KY9BKG36' where id=2; -update noar tt set v0='DYBLV' where id=3; -update noar ti set v0='DYBLV' where id=3; -update noar tt set b0='MPEDLK4AHMCVN9ETRH' where id=3; -update noar ti set b0='MPEDLK4AHMCVN9ETRH' where id=3; -update noar tt set v0='16CGQW78FW8BFSQY9RM' where id=3; -update noar ti set v0='16CGQW78FW8BFSQY9RM' where id=3; -update noar tt set b1='ZTQDP7HFVV7UOX4FAS' where id=3; -update noar ti set b1='ZTQDP7HFVV7UOX4FAS' where id=3; -update noar tt set v0='17BU0L3J' where id=3; -update noar ti set v0='17BU0L3J' where id=3; -update noar tt set b2='V87MKUB5RCASG' where id=3; -update noar ti set b2='V87MKUB5RCASG' where id=3; -update noar tt set v0='WJ2UP' where id=4; -update noar ti set v0='WJ2UP' where id=4; -update noar tt set b0='94T81QNS55HXC1CWNJFU0' where id=4; -update noar ti set b0='94T81QNS55HXC1CWNJFU0' where id=4; -update noar tt set v0='PHLBUEH' where id=4; -update noar ti set v0='PHLBUEH' where id=4; -update noar tt set b1='9PLNQ7WD2AY1CLRV5FD' where id=4; -update noar ti set b1='9PLNQ7WD2AY1CLRV5FD' where id=4; -update noar tt set v0='F' where id=4; -update noar ti set v0='F' where id=4; -update noar tt set b2='5JOYSH3W8H8' where id=4; -update noar ti set b2='5JOYSH3W8H8' where id=4; -update noar tt set v0='S3J8QTBHCLPWG755' where id=5; -update noar ti set v0='S3J8QTBHCLPWG755' where id=5; -update noar tt set b0='9Q00S9AXC4NU7C7RSFJC1U2' where id=5; -update noar ti set b0='9Q00S9AXC4NU7C7RSFJC1U2' where id=5; -update noar tt set v0='4LQ7C40AF49YCRYMCWTZU1O7' where id=5; -update noar ti set v0='4LQ7C40AF49YCRYMCWTZU1O7' where id=5; -update noar tt set b1='34NTH1KQ80DKYWJ' where id=5; -update noar ti set b1='34NTH1KQ80DKYWJ' where id=5; -update noar tt set v0='O' where id=5; -update noar ti set v0='O' where id=5; -update noar tt set b2='ROY5D1P1NTM2KZ' where id=5; -update noar ti set b2='ROY5D1P1NTM2KZ' where id=5; -update noar tt set v0='W7I54ILS7B5SIKDK99' where id=6; -update noar ti set v0='W7I54ILS7B5SIKDK99' where id=6; -update noar tt set b0='4SKRCDT62GMMYSHOFM94S' where id=6; -update noar ti set b0='4SKRCDT62GMMYSHOFM94S' where id=6; -update noar tt set v0='0H75SK7FMLDCGRYPSQBEYXX' where id=6; -update noar ti set v0='0H75SK7FMLDCGRYPSQBEYXX' where id=6; -update noar tt set b1='PTIHXY' where id=6; -update noar ti set b1='PTIHXY' where id=6; -update noar tt set v0='W1WRJIAHLAAPMFDKS' where id=6; -update noar ti set v0='W1WRJIAHLAAPMFDKS' where id=6; -update noar tt set b2='0ZJLUKU44YF8NWP' where id=6; -update noar ti set b2='0ZJLUKU44YF8NWP' where id=6; -update noar tt set v0='7W1WHIRQAZLR3X' where id=7; -update noar ti set v0='7W1WHIRQAZLR3X' where id=7; -update noar tt set b0='95PEAGL06CXI8XQFSA' where id=7; -update noar ti set b0='95PEAGL06CXI8XQFSA' where id=7; -update noar tt set v0='IIP76CEI5FS5B4TKZIQBPR24' where id=7; -update noar ti set v0='IIP76CEI5FS5B4TKZIQBPR24' where id=7; -update noar tt set b1='7QFL2IS8EZW3' where id=7; -update noar ti set b1='7QFL2IS8EZW3' where id=7; -update noar tt set v0='XVSYYHGZCZ4D0RJ49ASRPIVATP88XW0' where id=7; -update noar ti set v0='XVSYYHGZCZ4D0RJ49ASRPIVATP88XW0' where id=7; -update noar tt set b2='MGRU2JL9QW8J0W0HP6P' where id=7; -update noar ti set b2='MGRU2JL9QW8J0W0HP6P' where id=7; -update noar tt set v0='XDK7HERTKA2TVCJBMXB0XJZD' where id=8; -update noar ti set v0='XDK7HERTKA2TVCJBMXB0XJZD' where id=8; -update noar tt set b0='3SB' where id=8; -update noar ti set b0='3SB' where id=8; -update noar tt set v0='DMQCNLC' where id=8; -update noar ti set v0='DMQCNLC' where id=8; -update noar tt set b1='3OABOBW651QRPCXJSDWV' where id=8; -update noar ti set b1='3OABOBW651QRPCXJSDWV' where id=8; -update noar tt set v0='7MWPINXQH6JQTPV' where id=8; -update noar ti set v0='7MWPINXQH6JQTPV' where id=8; -update noar tt set b2='DCB7TW' where id=8; -update noar ti set b2='DCB7TW' where id=8; -update noar tt set v0='OFHRRZ3T' where id=9; -update noar ti set v0='OFHRRZ3T' where id=9; -update noar tt set b0='8ZXQ8PZ30KHP4' where id=9; -update noar ti set b0='8ZXQ8PZ30KHP4' where id=9; -update noar tt set v0='0A3BSZKOPA565O2K2' where id=9; -update noar ti set v0='0A3BSZKOPA565O2K2' where id=9; -update noar tt set b1='4H3O5WCZL1PXNVO87O' where id=9; -update noar ti set b1='4H3O5WCZL1PXNVO87O' where id=9; -update noar tt set v0='RGIOSFSPJN8A75F' where id=9; -update noar ti set v0='RGIOSFSPJN8A75F' where id=9; -update noar tt set b2='75' where id=9; -update noar ti set b2='75' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - f0 int not null, - v0 varchar(32) not null, - b0 blob not null, - b1 tinyblob not null, - b2 tinyblob not null -) engine=tokudb; -insert into tt values (1,0,'','','',''); -insert into tt values (2,0,'','','',''); -insert into tt values (3,0,'','','',''); -insert into tt values (4,0,'','','',''); -insert into tt values (5,0,'','','',''); -insert into tt values (6,0,'','','',''); -insert into tt values (7,0,'','','',''); -insert into tt values (8,0,'','','',''); -insert into tt values (9,0,'','','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='OKXV' where id=1; -update noar ti set v0='OKXV' where id=1; -update noar tt set b0='FUKXRMT3J9L2CZZL' where id=1; -update noar ti set b0='FUKXRMT3J9L2CZZL' where id=1; -update noar tt set v0='BJBMDJPN' where id=1; -update noar ti set v0='BJBMDJPN' where id=1; -update noar tt set b1='1A90D0KQ' where id=1; -update noar ti set b1='1A90D0KQ' where id=1; -update noar tt set v0='M' where id=1; -update noar ti set v0='M' where id=1; -update noar tt set b2='7TGZGXI29CF0SY91' where id=1; -update noar ti set b2='7TGZGXI29CF0SY91' where id=1; -update noar tt set v0='RML45IQYQKDYALTRW70VFX06H9RP' where id=2; -update noar ti set v0='RML45IQYQKDYALTRW70VFX06H9RP' where id=2; -update noar tt set b0='E0RJIW9JCDM9YCLCWWG9' where id=2; -update noar ti set b0='E0RJIW9JCDM9YCLCWWG9' where id=2; -update noar tt set v0='5' where id=2; -update noar ti set v0='5' where id=2; -update noar tt set b1='7A2N7ZMIF6MCYH' where id=2; -update noar ti set b1='7A2N7ZMIF6MCYH' where id=2; -update noar tt set v0='OMR68JHA0KVKW5YGVWNDFYFPQG' where id=2; -update noar ti set v0='OMR68JHA0KVKW5YGVWNDFYFPQG' where id=2; -update noar tt set b2='FC7X1G472Q5JDSKMM4CQJP46LO5W' where id=2; -update noar ti set b2='FC7X1G472Q5JDSKMM4CQJP46LO5W' where id=2; -update noar tt set v0='X5LSB4N2IBWBWM9Y9GVHZM3OE4D0W8' where id=3; -update noar ti set v0='X5LSB4N2IBWBWM9Y9GVHZM3OE4D0W8' where id=3; -update noar tt set b0='AMSVFHFMV0OM4RGF19KOGSMRD2FOMX4O' where id=3; -update noar ti set b0='AMSVFHFMV0OM4RGF19KOGSMRD2FOMX4O' where id=3; -update noar tt set v0='11O38AOC2F671ZJHE7YQD1HW724' where id=3; -update noar ti set v0='11O38AOC2F671ZJHE7YQD1HW724' where id=3; -update noar tt set b1='FD9S7YVCEM6CZ' where id=3; -update noar ti set b1='FD9S7YVCEM6CZ' where id=3; -update noar tt set v0='TGOHYDG4RKY' where id=3; -update noar ti set v0='TGOHYDG4RKY' where id=3; -update noar tt set b2='EI6VW8IZMIE6STV' where id=3; -update noar ti set b2='EI6VW8IZMIE6STV' where id=3; -update noar tt set v0='W' where id=4; -update noar ti set v0='W' where id=4; -update noar tt set b0='USLMDEQQBJ72IJHSU6NN9MF27LTUR' where id=4; -update noar ti set b0='USLMDEQQBJ72IJHSU6NN9MF27LTUR' where id=4; -update noar tt set v0='ZM3DG7C8NXX66S8PP' where id=4; -update noar ti set v0='ZM3DG7C8NXX66S8PP' where id=4; -update noar tt set b1='NCGWGBWT87J30J5ZCD' where id=4; -update noar ti set b1='NCGWGBWT87J30J5ZCD' where id=4; -update noar tt set v0='IGKISGROXONEIFJVHNW91D' where id=4; -update noar ti set v0='IGKISGROXONEIFJVHNW91D' where id=4; -update noar tt set b2='DMX8RSD9XDXTPU4Q1TZFI' where id=4; -update noar ti set b2='DMX8RSD9XDXTPU4Q1TZFI' where id=4; -update noar tt set v0='RULR' where id=5; -update noar ti set v0='RULR' where id=5; -update noar tt set b0='H' where id=5; -update noar ti set b0='H' where id=5; -update noar tt set v0='AV9RJMPNX84FSS' where id=5; -update noar ti set v0='AV9RJMPNX84FSS' where id=5; -update noar tt set b1='GW7AGVJWY13AFZHPCO5' where id=5; -update noar ti set b1='GW7AGVJWY13AFZHPCO5' where id=5; -update noar tt set v0='SZY7MANJ7J02PK' where id=5; -update noar ti set v0='SZY7MANJ7J02PK' where id=5; -update noar tt set b2='77EF6UPM830MUH5KS3R6Y9BD0D' where id=5; -update noar ti set b2='77EF6UPM830MUH5KS3R6Y9BD0D' where id=5; -update noar tt set v0='3I0K7MU758X33' where id=6; -update noar ti set v0='3I0K7MU758X33' where id=6; -update noar tt set b0='7X3KAJAECBTT5ATDFT' where id=6; -update noar ti set b0='7X3KAJAECBTT5ATDFT' where id=6; -update noar tt set v0='WZZ0S18EE78UNPJXDVDJIL4CTNRPY3T' where id=6; -update noar ti set v0='WZZ0S18EE78UNPJXDVDJIL4CTNRPY3T' where id=6; -update noar tt set b1='N4OGX8' where id=6; -update noar ti set b1='N4OGX8' where id=6; -update noar tt set v0='YVUTVNAFZ9PA5M2YXDUG3FICT7JLND' where id=6; -update noar ti set v0='YVUTVNAFZ9PA5M2YXDUG3FICT7JLND' where id=6; -update noar tt set b2='I' where id=6; -update noar ti set b2='I' where id=6; -update noar tt set v0='571OT26XF38KSOH4' where id=7; -update noar ti set v0='571OT26XF38KSOH4' where id=7; -update noar tt set b0='EQ4290L2UV' where id=7; -update noar ti set b0='EQ4290L2UV' where id=7; -update noar tt set v0='PBF10' where id=7; -update noar ti set v0='PBF10' where id=7; -update noar tt set b1='JWT5A' where id=7; -update noar ti set b1='JWT5A' where id=7; -update noar tt set v0='QZN66125ZD0' where id=7; -update noar ti set v0='QZN66125ZD0' where id=7; -update noar tt set b2='8O8RWW2NIXVDJ1TV' where id=7; -update noar ti set b2='8O8RWW2NIXVDJ1TV' where id=7; -update noar tt set v0='8TZCM0VKHMFQXNHZA047T2' where id=8; -update noar ti set v0='8TZCM0VKHMFQXNHZA047T2' where id=8; -update noar tt set b0='MCH' where id=8; -update noar ti set b0='MCH' where id=8; -update noar tt set v0='8CHUGB4Q2Q33O6YD9JCB' where id=8; -update noar ti set v0='8CHUGB4Q2Q33O6YD9JCB' where id=8; -update noar tt set b1='FAFTHFI4DRDXY1NFGIGHIS6L02H42IY' where id=8; -update noar ti set b1='FAFTHFI4DRDXY1NFGIGHIS6L02H42IY' where id=8; -update noar tt set v0='H098LT1TD40' where id=8; -update noar ti set v0='H098LT1TD40' where id=8; -update noar tt set b2='CI0B' where id=8; -update noar ti set b2='CI0B' where id=8; -update noar tt set v0='N1559NH1EOJB' where id=9; -update noar ti set v0='N1559NH1EOJB' where id=9; -update noar tt set b0='8J1VLZB1K' where id=9; -update noar ti set b0='8J1VLZB1K' where id=9; -update noar tt set v0='7CGE6Q04TEPCJ7VW' where id=9; -update noar ti set v0='7CGE6Q04TEPCJ7VW' where id=9; -update noar tt set b1='OLOUA' where id=9; -update noar ti set b1='OLOUA' where id=9; -update noar tt set v0='2FTAIAF90EHM2EYGL13FL7J' where id=9; -update noar ti set v0='2FTAIAF90EHM2EYGL13FL7J' where id=9; -update noar tt set b2='GQ8EA' where id=9; -update noar ti set b2='GQ8EA' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - f0 int not null, - v0 varchar(256) not null, - b0 blob not null, - b1 tinyblob not null, - b2 tinyblob not null -) engine=tokudb; -insert into tt values (1,0,'','','',''); -insert into tt values (2,0,'','','',''); -insert into tt values (3,0,'','','',''); -insert into tt values (4,0,'','','',''); -insert into tt values (5,0,'','','',''); -insert into tt values (6,0,'','','',''); -insert into tt values (7,0,'','','',''); -insert into tt values (8,0,'','','',''); -insert into tt values (9,0,'','','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='ZO7U7D3DNLFTD2MFBGV5P68WK8NY' where id=1; -update noar ti set v0='ZO7U7D3DNLFTD2MFBGV5P68WK8NY' where id=1; -update noar tt set b0='ZZ169AMK3LRNVY4LLEOQKTM5WWTEM' where id=1; -update noar ti set b0='ZZ169AMK3LRNVY4LLEOQKTM5WWTEM' where id=1; -update noar tt set v0='IYUB' where id=1; -update noar ti set v0='IYUB' where id=1; -update noar tt set b1='ZJOQEHT1LA5K5WTDHQ' where id=1; -update noar ti set b1='ZJOQEHT1LA5K5WTDHQ' where id=1; -update noar tt set v0='VLP3VPHCM' where id=1; -update noar ti set v0='VLP3VPHCM' where id=1; -update noar tt set b2='PG36567LNULM3L6' where id=1; -update noar ti set b2='PG36567LNULM3L6' where id=1; -update noar tt set v0='V8HCGT3WT41FJMEH' where id=2; -update noar ti set v0='V8HCGT3WT41FJMEH' where id=2; -update noar tt set b0='5QISCELYU8KDCIHLLN409LY0Y2LFM' where id=2; -update noar ti set b0='5QISCELYU8KDCIHLLN409LY0Y2LFM' where id=2; -update noar tt set v0='HTWZTQ4CD551X00W9I44YSM9E' where id=2; -update noar ti set v0='HTWZTQ4CD551X00W9I44YSM9E' where id=2; -update noar tt set b1='0V9BUYQ40D3BDUL4XLDV7DXV5T0ABD' where id=2; -update noar ti set b1='0V9BUYQ40D3BDUL4XLDV7DXV5T0ABD' where id=2; -update noar tt set v0='YSCA6E0PU' where id=2; -update noar ti set v0='YSCA6E0PU' where id=2; -update noar tt set b2='US6NQ61QWUE' where id=2; -update noar ti set b2='US6NQ61QWUE' where id=2; -update noar tt set v0='YZSKOG' where id=3; -update noar ti set v0='YZSKOG' where id=3; -update noar tt set b0='DUJCBW9IPF' where id=3; -update noar ti set b0='DUJCBW9IPF' where id=3; -update noar tt set v0='STQ05NUV' where id=3; -update noar ti set v0='STQ05NUV' where id=3; -update noar tt set b1='ZG8R2I1J' where id=3; -update noar ti set b1='ZG8R2I1J' where id=3; -update noar tt set v0='UMI2VHBWV304D889A2E85S6YCT27' where id=3; -update noar ti set v0='UMI2VHBWV304D889A2E85S6YCT27' where id=3; -update noar tt set b2='W5QN2MP754SU2EI113QE0WXUYX' where id=3; -update noar ti set b2='W5QN2MP754SU2EI113QE0WXUYX' where id=3; -update noar tt set v0='16DL356E5HE0RHQLVVHA4JIP73H' where id=4; -update noar ti set v0='16DL356E5HE0RHQLVVHA4JIP73H' where id=4; -update noar tt set b0='P91NYVJ' where id=4; -update noar ti set b0='P91NYVJ' where id=4; -update noar tt set v0='ZL2G24XEZJDM1GUZVT5047SD9' where id=4; -update noar ti set v0='ZL2G24XEZJDM1GUZVT5047SD9' where id=4; -update noar tt set b1='F5DXRNVBJ1QI9' where id=4; -update noar ti set b1='F5DXRNVBJ1QI9' where id=4; -update noar tt set v0='E6DKDKT5GH' where id=4; -update noar ti set v0='E6DKDKT5GH' where id=4; -update noar tt set b2='J7A3VSMEUCAXBJV98O3FT6NLUW' where id=4; -update noar ti set b2='J7A3VSMEUCAXBJV98O3FT6NLUW' where id=4; -update noar tt set v0='WBLV' where id=5; -update noar ti set v0='WBLV' where id=5; -update noar tt set b0='I5L6TZIL4NICY' where id=5; -update noar ti set b0='I5L6TZIL4NICY' where id=5; -update noar tt set v0='10TM8VPCA26948BVGPNM7UY5PFXYH' where id=5; -update noar ti set v0='10TM8VPCA26948BVGPNM7UY5PFXYH' where id=5; -update noar tt set b1='DFBDCAN540J5SC' where id=5; -update noar ti set b1='DFBDCAN540J5SC' where id=5; -update noar tt set v0='SCORH6ALK3CPVIIQ' where id=5; -update noar ti set v0='SCORH6ALK3CPVIIQ' where id=5; -update noar tt set b2='9NQ' where id=5; -update noar ti set b2='9NQ' where id=5; -update noar tt set v0='L9FU1YJPDN24JL2PARHTAFX' where id=6; -update noar ti set v0='L9FU1YJPDN24JL2PARHTAFX' where id=6; -update noar tt set b0='LJ82BOTS1LRZ4ZLO23J0JHO6Y878V' where id=6; -update noar ti set b0='LJ82BOTS1LRZ4ZLO23J0JHO6Y878V' where id=6; -update noar tt set v0='KWJMR5QAE3441O7W293V9B9' where id=6; -update noar ti set v0='KWJMR5QAE3441O7W293V9B9' where id=6; -update noar tt set b1='W7KLN4YPSEP' where id=6; -update noar ti set b1='W7KLN4YPSEP' where id=6; -update noar tt set v0='H5USTX' where id=6; -update noar ti set v0='H5USTX' where id=6; -update noar tt set b2='5PA377A2OWQZIJHGPGC4' where id=6; -update noar ti set b2='5PA377A2OWQZIJHGPGC4' where id=6; -update noar tt set v0='CEL4LFVC6UIFGQSWWITGVN' where id=7; -update noar ti set v0='CEL4LFVC6UIFGQSWWITGVN' where id=7; -update noar tt set b0='OY9YJKK28R9UIU2OZBVH7N0ZZLTE4P6' where id=7; -update noar ti set b0='OY9YJKK28R9UIU2OZBVH7N0ZZLTE4P6' where id=7; -update noar tt set v0='HU053GU4X63YLETGZMX91HYS4M4HX' where id=7; -update noar ti set v0='HU053GU4X63YLETGZMX91HYS4M4HX' where id=7; -update noar tt set b1='C8EDJXRWGHCQ7' where id=7; -update noar ti set b1='C8EDJXRWGHCQ7' where id=7; -update noar tt set v0='B9OSOCDT4BO3CF' where id=7; -update noar ti set v0='B9OSOCDT4BO3CF' where id=7; -update noar tt set b2='792MGR8IKDB4M' where id=7; -update noar ti set b2='792MGR8IKDB4M' where id=7; -update noar tt set v0='0ZCT6UEIP7H5S75' where id=8; -update noar ti set v0='0ZCT6UEIP7H5S75' where id=8; -update noar tt set b0='W66J664SQTDF6G' where id=8; -update noar ti set b0='W66J664SQTDF6G' where id=8; -update noar tt set v0='WAH3824ZXNFEIWQ' where id=8; -update noar ti set v0='WAH3824ZXNFEIWQ' where id=8; -update noar tt set b1='RJHS70ITMWVG0S6N4TMPDODPL' where id=8; -update noar ti set b1='RJHS70ITMWVG0S6N4TMPDODPL' where id=8; -update noar tt set v0='1Z4' where id=8; -update noar ti set v0='1Z4' where id=8; -update noar tt set b2='Y' where id=8; -update noar ti set b2='Y' where id=8; -update noar tt set v0='AG2' where id=9; -update noar ti set v0='AG2' where id=9; -update noar tt set b0='L6NZPTLWR0TY8' where id=9; -update noar ti set b0='L6NZPTLWR0TY8' where id=9; -update noar tt set v0='HVKQFH8SJKCTJEYQ1R' where id=9; -update noar ti set v0='HVKQFH8SJKCTJEYQ1R' where id=9; -update noar tt set b1='VXF0WMDS64J65N' where id=9; -update noar ti set b1='VXF0WMDS64J65N' where id=9; -update noar tt set v0='YABL8SFYRJGGEHFS3CW' where id=9; -update noar ti set v0='YABL8SFYRJGGEHFS3CW' where id=9; -update noar tt set b2='63Y1IBC3XEKPXYQV4KH7' where id=9; -update noar ti set b2='63Y1IBC3XEKPXYQV4KH7' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - f0 int null, - v0 varchar(32) null, - b0 blob null, - b1 tinyblob null, - b2 blob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='4V3' where id=1; -update noar ti set v0='4V3' where id=1; -update noar tt set b0='IPYCM' where id=1; -update noar ti set b0='IPYCM' where id=1; -update noar tt set v0='MJD71YVRMFSMTMBSQWF251ZJEKTFXB' where id=1; -update noar ti set v0='MJD71YVRMFSMTMBSQWF251ZJEKTFXB' where id=1; -update noar tt set b1='WZUN0' where id=1; -update noar ti set b1='WZUN0' where id=1; -update noar tt set v0='EATAB' where id=1; -update noar ti set v0='EATAB' where id=1; -update noar tt set b2='3A2XFVKANR0MJYXGT59FBC4KB' where id=1; -update noar ti set b2='3A2XFVKANR0MJYXGT59FBC4KB' where id=1; -update noar tt set v0='Q40MBD' where id=2; -update noar ti set v0='Q40MBD' where id=2; -update noar tt set b0='YQAZCMOUEVDDP6S0ZZI6RVCY' where id=2; -update noar ti set b0='YQAZCMOUEVDDP6S0ZZI6RVCY' where id=2; -update noar tt set v0='580L6YWAWE6TXDIQBHVAQ1HHSGAH8VC' where id=2; -update noar ti set v0='580L6YWAWE6TXDIQBHVAQ1HHSGAH8VC' where id=2; -update noar tt set b1='79F0HCZPAAK2XRCL' where id=2; -update noar ti set b1='79F0HCZPAAK2XRCL' where id=2; -update noar tt set v0='ACY8HN5C11JJ0GDNY' where id=2; -update noar ti set v0='ACY8HN5C11JJ0GDNY' where id=2; -update noar tt set b2='CMSUT' where id=2; -update noar ti set b2='CMSUT' where id=2; -update noar tt set v0='XEFIJ4K2QVKTHHIS7MF1A86JFZPFN7' where id=3; -update noar ti set v0='XEFIJ4K2QVKTHHIS7MF1A86JFZPFN7' where id=3; -update noar tt set b0='3IZGGWII' where id=3; -update noar ti set b0='3IZGGWII' where id=3; -update noar tt set v0='BBOOSJU4Y3J' where id=3; -update noar ti set v0='BBOOSJU4Y3J' where id=3; -update noar tt set b1='KFMQ92VC57EN8YV02MWYAZGQJ4TBVY' where id=3; -update noar ti set b1='KFMQ92VC57EN8YV02MWYAZGQJ4TBVY' where id=3; -update noar tt set v0='EKK0FFP1XFUMQ0UUIBVH2OTJTJRXE80I' where id=3; -update noar ti set v0='EKK0FFP1XFUMQ0UUIBVH2OTJTJRXE80I' where id=3; -update noar tt set b2='1P2NXYCR8I2AI039PC5A' where id=3; -update noar ti set b2='1P2NXYCR8I2AI039PC5A' where id=3; -update noar tt set v0='IO7R' where id=4; -update noar ti set v0='IO7R' where id=4; -update noar tt set b0='W6X' where id=4; -update noar ti set b0='W6X' where id=4; -update noar tt set v0='P9PJ71I2J3VPVBHVPKFCO8K9T01T73TU' where id=4; -update noar ti set v0='P9PJ71I2J3VPVBHVPKFCO8K9T01T73TU' where id=4; -update noar tt set b1='V2XRL80933' where id=4; -update noar ti set b1='V2XRL80933' where id=4; -update noar tt set v0='UJYED2HRLBX4VX99NN3CYTBVZ' where id=4; -update noar ti set v0='UJYED2HRLBX4VX99NN3CYTBVZ' where id=4; -update noar tt set b2='5OHLTABSL40' where id=4; -update noar ti set b2='5OHLTABSL40' where id=4; -update noar tt set v0='YUJGL68DCOF' where id=5; -update noar ti set v0='YUJGL68DCOF' where id=5; -update noar tt set b0='CSWMHVZEFWG18YWXYJ9S4QSQRT' where id=5; -update noar ti set b0='CSWMHVZEFWG18YWXYJ9S4QSQRT' where id=5; -update noar tt set v0='0DPY8BQBSCD5O' where id=5; -update noar ti set v0='0DPY8BQBSCD5O' where id=5; -update noar tt set b1='T65QKAUW4OLYFT8' where id=5; -update noar ti set b1='T65QKAUW4OLYFT8' where id=5; -update noar tt set v0='Q3QA4ATUD' where id=5; -update noar ti set v0='Q3QA4ATUD' where id=5; -update noar tt set b2='G1D8R7C4I2G73KW' where id=5; -update noar ti set b2='G1D8R7C4I2G73KW' where id=5; -update noar tt set v0='L0KR' where id=6; -update noar ti set v0='L0KR' where id=6; -update noar tt set b0='V07U6MPNIVMTR2YHOA580CEFYZ5ZBE' where id=6; -update noar ti set b0='V07U6MPNIVMTR2YHOA580CEFYZ5ZBE' where id=6; -update noar tt set v0='T' where id=6; -update noar ti set v0='T' where id=6; -update noar tt set b1='B' where id=6; -update noar ti set b1='B' where id=6; -update noar tt set v0='7OUJFDFIZ6WN4JOP6L1N3RE6B5X97' where id=6; -update noar ti set v0='7OUJFDFIZ6WN4JOP6L1N3RE6B5X97' where id=6; -update noar tt set b2='N4' where id=6; -update noar ti set b2='N4' where id=6; -update noar tt set v0='JCDE5C81LYQU6N71BD3D0PJDNV95VV' where id=7; -update noar ti set v0='JCDE5C81LYQU6N71BD3D0PJDNV95VV' where id=7; -update noar tt set b0='Z' where id=7; -update noar ti set b0='Z' where id=7; -update noar tt set v0='WCC0XI' where id=7; -update noar ti set v0='WCC0XI' where id=7; -update noar tt set b1='SLD6C' where id=7; -update noar ti set b1='SLD6C' where id=7; -update noar tt set v0='BXA4QJZWCW0259' where id=7; -update noar ti set v0='BXA4QJZWCW0259' where id=7; -update noar tt set b2='HXUFL' where id=7; -update noar ti set b2='HXUFL' where id=7; -update noar tt set v0='U96URWV2KJY7PXDOIHE' where id=8; -update noar ti set v0='U96URWV2KJY7PXDOIHE' where id=8; -update noar tt set b0='NU4BE16QA' where id=8; -update noar ti set b0='NU4BE16QA' where id=8; -update noar tt set v0='1LGOF20CN' where id=8; -update noar ti set v0='1LGOF20CN' where id=8; -update noar tt set b1='RMSAGLSKXX51TIN0SKNQ1XENXZ' where id=8; -update noar ti set b1='RMSAGLSKXX51TIN0SKNQ1XENXZ' where id=8; -update noar tt set v0='QLJL' where id=8; -update noar ti set v0='QLJL' where id=8; -update noar tt set b2='EWIW876964QKSZLTVRXDLRZY4NK6F' where id=8; -update noar ti set b2='EWIW876964QKSZLTVRXDLRZY4NK6F' where id=8; -update noar tt set v0='SV5PMFK697' where id=9; -update noar ti set v0='SV5PMFK697' where id=9; -update noar tt set b0='14QQG7QFB' where id=9; -update noar ti set b0='14QQG7QFB' where id=9; -update noar tt set v0='DDON01WFZ' where id=9; -update noar ti set v0='DDON01WFZ' where id=9; -update noar tt set b1='0MSE3ILJSMC' where id=9; -update noar ti set b1='0MSE3ILJSMC' where id=9; -update noar tt set v0='CKP' where id=9; -update noar ti set v0='CKP' where id=9; -update noar tt set b2='IJQCFGBGPQKI61STIUC2XGBT7' where id=9; -update noar ti set b2='IJQCFGBGPQKI61STIUC2XGBT7' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - f0 int null, - v0 varchar(256) null, - b0 blob null, - b1 tinyblob null, - b2 blob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='9XDFQHRZ' where id=1; -update noar ti set v0='9XDFQHRZ' where id=1; -update noar tt set b0='AEY7FS3YGODFKFOKNDDJF' where id=1; -update noar ti set b0='AEY7FS3YGODFKFOKNDDJF' where id=1; -update noar tt set v0='RUULZNA5ORJSRYXLUOQWXO85VJTJK15N' where id=1; -update noar ti set v0='RUULZNA5ORJSRYXLUOQWXO85VJTJK15N' where id=1; -update noar tt set b1='VPW5EDB97XAMAT5R67ZAVFOW7' where id=1; -update noar ti set b1='VPW5EDB97XAMAT5R67ZAVFOW7' where id=1; -update noar tt set v0='2OC1UQX7' where id=1; -update noar ti set v0='2OC1UQX7' where id=1; -update noar tt set b2='2DKRI' where id=1; -update noar ti set b2='2DKRI' where id=1; -update noar tt set v0='U4WJJ1' where id=2; -update noar ti set v0='U4WJJ1' where id=2; -update noar tt set b0='WEI' where id=2; -update noar ti set b0='WEI' where id=2; -update noar tt set v0='DOC' where id=2; -update noar ti set v0='DOC' where id=2; -update noar tt set b1='3MH8T' where id=2; -update noar ti set b1='3MH8T' where id=2; -update noar tt set v0='2' where id=2; -update noar ti set v0='2' where id=2; -update noar tt set b2='BHADQ1Y9WC2E9RWLCAUB97W2GMS2' where id=2; -update noar ti set b2='BHADQ1Y9WC2E9RWLCAUB97W2GMS2' where id=2; -update noar tt set v0='88VAS8IKNLBXD43R43HOK6' where id=3; -update noar ti set v0='88VAS8IKNLBXD43R43HOK6' where id=3; -update noar tt set b0='83EUI8ZFTT3WQSLEP0VJ' where id=3; -update noar ti set b0='83EUI8ZFTT3WQSLEP0VJ' where id=3; -update noar tt set v0='LMK14CTG9D90JG62SPGHTC' where id=3; -update noar ti set v0='LMK14CTG9D90JG62SPGHTC' where id=3; -update noar tt set b1='SH2K3JUEZ90G2' where id=3; -update noar ti set b1='SH2K3JUEZ90G2' where id=3; -update noar tt set v0='FR6GBB6OD2CMQEPK' where id=3; -update noar ti set v0='FR6GBB6OD2CMQEPK' where id=3; -update noar tt set b2='MP' where id=3; -update noar ti set b2='MP' where id=3; -update noar tt set v0='1W408VSWFUH30W49KRMGA7JSYT7' where id=4; -update noar ti set v0='1W408VSWFUH30W49KRMGA7JSYT7' where id=4; -update noar tt set b0='6L' where id=4; -update noar ti set b0='6L' where id=4; -update noar tt set v0='1PER18ILUB7TD5E1SX' where id=4; -update noar ti set v0='1PER18ILUB7TD5E1SX' where id=4; -update noar tt set b1='926K6RMUXV1HIA4OYK9PTTVKJA06EGM' where id=4; -update noar ti set b1='926K6RMUXV1HIA4OYK9PTTVKJA06EGM' where id=4; -update noar tt set v0='ZALNBXJMGKO' where id=4; -update noar ti set v0='ZALNBXJMGKO' where id=4; -update noar tt set b2='GPURKAN1YXECTLB6LF0UJ9SR5D13ANJ' where id=4; -update noar ti set b2='GPURKAN1YXECTLB6LF0UJ9SR5D13ANJ' where id=4; -update noar tt set v0='IYR' where id=5; -update noar ti set v0='IYR' where id=5; -update noar tt set b0='7L1HYF' where id=5; -update noar ti set b0='7L1HYF' where id=5; -update noar tt set v0='5MRO0E9ZU40IDPRIZO4LC9H8C673' where id=5; -update noar ti set v0='5MRO0E9ZU40IDPRIZO4LC9H8C673' where id=5; -update noar tt set b1='7GOL1TOIYIVVAKOA1MK' where id=5; -update noar ti set b1='7GOL1TOIYIVVAKOA1MK' where id=5; -update noar tt set v0='ZB0Z4B3S5K8' where id=5; -update noar ti set v0='ZB0Z4B3S5K8' where id=5; -update noar tt set b2='GPNONS6AC5BW47UWMMO2BG1CTX' where id=5; -update noar ti set b2='GPNONS6AC5BW47UWMMO2BG1CTX' where id=5; -update noar tt set v0='I0S7IWJX' where id=6; -update noar ti set v0='I0S7IWJX' where id=6; -update noar tt set b0='U9NUFNMZUO' where id=6; -update noar ti set b0='U9NUFNMZUO' where id=6; -update noar tt set v0='YA4Q7DF9HAX' where id=6; -update noar ti set v0='YA4Q7DF9HAX' where id=6; -update noar tt set b1='24RZ77VCJUQDR421R9CFL2BK' where id=6; -update noar ti set b1='24RZ77VCJUQDR421R9CFL2BK' where id=6; -update noar tt set v0='OVMIQQSA466D9V2TXC6GSO756XS' where id=6; -update noar ti set v0='OVMIQQSA466D9V2TXC6GSO756XS' where id=6; -update noar tt set b2='YTRR7P0GK3Y2DV72RE0T9052ZAYZ0Z' where id=6; -update noar ti set b2='YTRR7P0GK3Y2DV72RE0T9052ZAYZ0Z' where id=6; -update noar tt set v0='E41L6VELCJNGSDJGDRNRFD6ZJ2K251LU' where id=7; -update noar ti set v0='E41L6VELCJNGSDJGDRNRFD6ZJ2K251LU' where id=7; -update noar tt set b0='GRVD2LD' where id=7; -update noar ti set b0='GRVD2LD' where id=7; -update noar tt set v0='MOA1LDYHYD1YJMAHWU6V1BY5XFWC' where id=7; -update noar ti set v0='MOA1LDYHYD1YJMAHWU6V1BY5XFWC' where id=7; -update noar tt set b1='G5KK8NSOTNEE' where id=7; -update noar ti set b1='G5KK8NSOTNEE' where id=7; -update noar tt set v0='DWT98IBJOLGJ5PV90VPS8KAFQ8ENX8' where id=7; -update noar ti set v0='DWT98IBJOLGJ5PV90VPS8KAFQ8ENX8' where id=7; -update noar tt set b2='RCK8V6TBBQOLF4HL18G56K8GN6WQF7' where id=7; -update noar ti set b2='RCK8V6TBBQOLF4HL18G56K8GN6WQF7' where id=7; -update noar tt set v0='7KAQKL' where id=8; -update noar ti set v0='7KAQKL' where id=8; -update noar tt set b0='1QK3WK4X7H9ESZLU664' where id=8; -update noar ti set b0='1QK3WK4X7H9ESZLU664' where id=8; -update noar tt set v0='0K8GNCDSCR6HOT6T' where id=8; -update noar ti set v0='0K8GNCDSCR6HOT6T' where id=8; -update noar tt set b1='5FO39K' where id=8; -update noar ti set b1='5FO39K' where id=8; -update noar tt set v0='AMYERIXKF7WF0B3K' where id=8; -update noar ti set v0='AMYERIXKF7WF0B3K' where id=8; -update noar tt set b2='W7Y6K' where id=8; -update noar ti set b2='W7Y6K' where id=8; -update noar tt set v0='05F33BCNFEJLE7C6' where id=9; -update noar ti set v0='05F33BCNFEJLE7C6' where id=9; -update noar tt set b0='BPYFI7GUO7NJ39H22DJAZA575' where id=9; -update noar ti set b0='BPYFI7GUO7NJ39H22DJAZA575' where id=9; -update noar tt set v0='C1HM7JT' where id=9; -update noar ti set v0='C1HM7JT' where id=9; -update noar tt set b1='86NV1CKWSU1H2' where id=9; -update noar ti set b1='86NV1CKWSU1H2' where id=9; -update noar tt set v0='8N8GD' where id=9; -update noar ti set v0='8N8GD' where id=9; -update noar tt set b2='PO' where id=9; -update noar ti set b2='PO' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - f0 int not null, - v0 varchar(32) not null, - b0 blob not null, - b1 tinyblob not null, - b2 blob not null -) engine=tokudb; -insert into tt values (1,0,'','','',''); -insert into tt values (2,0,'','','',''); -insert into tt values (3,0,'','','',''); -insert into tt values (4,0,'','','',''); -insert into tt values (5,0,'','','',''); -insert into tt values (6,0,'','','',''); -insert into tt values (7,0,'','','',''); -insert into tt values (8,0,'','','',''); -insert into tt values (9,0,'','','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='ODV7UPZ7EQHSMLPPJISN7H33KN1DWL' where id=1; -update noar ti set v0='ODV7UPZ7EQHSMLPPJISN7H33KN1DWL' where id=1; -update noar tt set b0='NOMJ14GOTT' where id=1; -update noar ti set b0='NOMJ14GOTT' where id=1; -update noar tt set v0='A4WJYQDLIKP4KE3B2Y' where id=1; -update noar ti set v0='A4WJYQDLIKP4KE3B2Y' where id=1; -update noar tt set b1='3VPZR1RFYV5N3J2GPE' where id=1; -update noar ti set b1='3VPZR1RFYV5N3J2GPE' where id=1; -update noar tt set v0='A41YVCQYFG116I8L5' where id=1; -update noar ti set v0='A41YVCQYFG116I8L5' where id=1; -update noar tt set b2='VXPLF1PRL6ONXYUDMQGU4UZ6CJUX2E' where id=1; -update noar ti set b2='VXPLF1PRL6ONXYUDMQGU4UZ6CJUX2E' where id=1; -update noar tt set v0='F00WR8Y127NFVLB9LPDLSK6QS516O4' where id=2; -update noar ti set v0='F00WR8Y127NFVLB9LPDLSK6QS516O4' where id=2; -update noar tt set b0='GQ2Q' where id=2; -update noar ti set b0='GQ2Q' where id=2; -update noar tt set v0='8Q8UE61TB7C3MBLUAKQA6VDI' where id=2; -update noar ti set v0='8Q8UE61TB7C3MBLUAKQA6VDI' where id=2; -update noar tt set b1='R' where id=2; -update noar ti set b1='R' where id=2; -update noar tt set v0='F8LDN0I' where id=2; -update noar ti set v0='F8LDN0I' where id=2; -update noar tt set b2='PVJTI3VB6BC' where id=2; -update noar ti set b2='PVJTI3VB6BC' where id=2; -update noar tt set v0='ZNRYIVVL05C6KS228393WZ' where id=3; -update noar ti set v0='ZNRYIVVL05C6KS228393WZ' where id=3; -update noar tt set b0='DZL50VC9OUDR8QOP' where id=3; -update noar ti set b0='DZL50VC9OUDR8QOP' where id=3; -update noar tt set v0='VE' where id=3; -update noar ti set v0='VE' where id=3; -update noar tt set b1='SMJQGFR' where id=3; -update noar ti set b1='SMJQGFR' where id=3; -update noar tt set v0='AZ738MJ3ZEFMC4ZMBKDF38Y' where id=3; -update noar ti set v0='AZ738MJ3ZEFMC4ZMBKDF38Y' where id=3; -update noar tt set b2='4ZKQ61RGQ' where id=3; -update noar ti set b2='4ZKQ61RGQ' where id=3; -update noar tt set v0='IXIGZ9FZ' where id=4; -update noar ti set v0='IXIGZ9FZ' where id=4; -update noar tt set b0='QK244O0B0JZ0XAQY98' where id=4; -update noar ti set b0='QK244O0B0JZ0XAQY98' where id=4; -update noar tt set v0='XDVDW8RS54769WL993Q5' where id=4; -update noar ti set v0='XDVDW8RS54769WL993Q5' where id=4; -update noar tt set b1='PR1175' where id=4; -update noar ti set b1='PR1175' where id=4; -update noar tt set v0='29H7DBRF77936UVQUW' where id=4; -update noar ti set v0='29H7DBRF77936UVQUW' where id=4; -update noar tt set b2='BT2GAW54DFR9KYRCTN6517U6CIOW' where id=4; -update noar ti set b2='BT2GAW54DFR9KYRCTN6517U6CIOW' where id=4; -update noar tt set v0='ZE97K91' where id=5; -update noar ti set v0='ZE97K91' where id=5; -update noar tt set b0='6W9MIP3YW' where id=5; -update noar ti set b0='6W9MIP3YW' where id=5; -update noar tt set v0='SZTHASRIIJB6IWKTRKDHG29O3NEVP' where id=5; -update noar ti set v0='SZTHASRIIJB6IWKTRKDHG29O3NEVP' where id=5; -update noar tt set b1='IX0ET6JRLBQAE4U8MHDZVZNF0I8O' where id=5; -update noar ti set b1='IX0ET6JRLBQAE4U8MHDZVZNF0I8O' where id=5; -update noar tt set v0='W7KY2H9W7CK6K9P2BXXB9CYKY9' where id=5; -update noar ti set v0='W7KY2H9W7CK6K9P2BXXB9CYKY9' where id=5; -update noar tt set b2='84' where id=5; -update noar ti set b2='84' where id=5; -update noar tt set v0='RZRDIVG6ODN0SF8UOJX16K04B5X' where id=6; -update noar ti set v0='RZRDIVG6ODN0SF8UOJX16K04B5X' where id=6; -update noar tt set b0='SQFF04JOJ1IJXKG8VQSZB0TINX' where id=6; -update noar ti set b0='SQFF04JOJ1IJXKG8VQSZB0TINX' where id=6; -update noar tt set v0='T12NKR7DAXXQ' where id=6; -update noar ti set v0='T12NKR7DAXXQ' where id=6; -update noar tt set b1='UFLYIJVHAGE0JE5K4H6BZGC5LLYY' where id=6; -update noar ti set b1='UFLYIJVHAGE0JE5K4H6BZGC5LLYY' where id=6; -update noar tt set v0='FK2DCYYAYRR3KK' where id=6; -update noar ti set v0='FK2DCYYAYRR3KK' where id=6; -update noar tt set b2='7J' where id=6; -update noar ti set b2='7J' where id=6; -update noar tt set v0='KIR385LYTO2AK7L91' where id=7; -update noar ti set v0='KIR385LYTO2AK7L91' where id=7; -update noar tt set b0='4RXSJKU6XR8VZHJX10917N2FOFXS4YN' where id=7; -update noar ti set b0='4RXSJKU6XR8VZHJX10917N2FOFXS4YN' where id=7; -update noar tt set v0='PDCQIAUNNHVM7A8O1M0QAFW4IABLWX' where id=7; -update noar ti set v0='PDCQIAUNNHVM7A8O1M0QAFW4IABLWX' where id=7; -update noar tt set b1='FJVN7GTNZFMU46135YV35GH417G1T' where id=7; -update noar ti set b1='FJVN7GTNZFMU46135YV35GH417G1T' where id=7; -update noar tt set v0='S045UNV956NY4XKKLKJZBPGOBJ0J6CH' where id=7; -update noar ti set v0='S045UNV956NY4XKKLKJZBPGOBJ0J6CH' where id=7; -update noar tt set b2='9WMSZHX3WH2I35EG9O1' where id=7; -update noar ti set b2='9WMSZHX3WH2I35EG9O1' where id=7; -update noar tt set v0='1SFRKQD3NA1M48WH4FIXK5QY1BK' where id=8; -update noar ti set v0='1SFRKQD3NA1M48WH4FIXK5QY1BK' where id=8; -update noar tt set b0='LVYZFAB8I77YXFVO3O71WXNWCP0B' where id=8; -update noar ti set b0='LVYZFAB8I77YXFVO3O71WXNWCP0B' where id=8; -update noar tt set v0='XDS2HZ2MLTVU0EBGFB8AVYDX5FRCXK' where id=8; -update noar ti set v0='XDS2HZ2MLTVU0EBGFB8AVYDX5FRCXK' where id=8; -update noar tt set b1='4FS6QG3M8Q' where id=8; -update noar ti set b1='4FS6QG3M8Q' where id=8; -update noar tt set v0='RB5ZSM7NYGHDVSLGWRODNCD8' where id=8; -update noar ti set v0='RB5ZSM7NYGHDVSLGWRODNCD8' where id=8; -update noar tt set b2='O628V85DSK1' where id=8; -update noar ti set b2='O628V85DSK1' where id=8; -update noar tt set v0='7JP47VJLJRBTUI4S4SD8X4TN7GR5FDV' where id=9; -update noar ti set v0='7JP47VJLJRBTUI4S4SD8X4TN7GR5FDV' where id=9; -update noar tt set b0='7IDGS' where id=9; -update noar ti set b0='7IDGS' where id=9; -update noar tt set v0='TGJRIIRWWT4H0UYYH' where id=9; -update noar ti set v0='TGJRIIRWWT4H0UYYH' where id=9; -update noar tt set b1='CWFNXGFKIYSLTVM0AODZNRYH91F' where id=9; -update noar ti set b1='CWFNXGFKIYSLTVM0AODZNRYH91F' where id=9; -update noar tt set v0='D4IFZ9UQ08CA5' where id=9; -update noar ti set v0='D4IFZ9UQ08CA5' where id=9; -update noar tt set b2='ANVVLU062TAZOYGEN8ACB5C' where id=9; -update noar ti set b2='ANVVLU062TAZOYGEN8ACB5C' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - f0 int not null, - v0 varchar(256) not null, - b0 blob not null, - b1 tinyblob not null, - b2 blob not null -) engine=tokudb; -insert into tt values (1,0,'','','',''); -insert into tt values (2,0,'','','',''); -insert into tt values (3,0,'','','',''); -insert into tt values (4,0,'','','',''); -insert into tt values (5,0,'','','',''); -insert into tt values (6,0,'','','',''); -insert into tt values (7,0,'','','',''); -insert into tt values (8,0,'','','',''); -insert into tt values (9,0,'','','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='4M8YLA24RDDDL' where id=1; -update noar ti set v0='4M8YLA24RDDDL' where id=1; -update noar tt set b0='D4TP2IW6' where id=1; -update noar ti set b0='D4TP2IW6' where id=1; -update noar tt set v0='USQLL20Y9WEOOQJP9TE29YON1QB5IIS' where id=1; -update noar ti set v0='USQLL20Y9WEOOQJP9TE29YON1QB5IIS' where id=1; -update noar tt set b1='9CJPKGQ3W' where id=1; -update noar ti set b1='9CJPKGQ3W' where id=1; -update noar tt set v0='X0UP' where id=1; -update noar ti set v0='X0UP' where id=1; -update noar tt set b2='OKWPTR2D' where id=1; -update noar ti set b2='OKWPTR2D' where id=1; -update noar tt set v0='AF4ZO89HLZUL2R69POVU' where id=2; -update noar ti set v0='AF4ZO89HLZUL2R69POVU' where id=2; -update noar tt set b0='OU9P29YYO0' where id=2; -update noar ti set b0='OU9P29YYO0' where id=2; -update noar tt set v0='WRV5NIK57C8HU' where id=2; -update noar ti set v0='WRV5NIK57C8HU' where id=2; -update noar tt set b1='3NDY8RJLSAADPNBQRDDBD4PM333R1B' where id=2; -update noar ti set b1='3NDY8RJLSAADPNBQRDDBD4PM333R1B' where id=2; -update noar tt set v0='LSG95QU89O8GKJ9DDM32S561JXNR3T4B' where id=2; -update noar ti set v0='LSG95QU89O8GKJ9DDM32S561JXNR3T4B' where id=2; -update noar tt set b2='4UJ0BCHI3FUXJVN2H7Z2I7YN' where id=2; -update noar ti set b2='4UJ0BCHI3FUXJVN2H7Z2I7YN' where id=2; -update noar tt set v0='WEBJ' where id=3; -update noar ti set v0='WEBJ' where id=3; -update noar tt set b0='AG62V7OP8YSOGHHTBRDD9NH90M' where id=3; -update noar ti set b0='AG62V7OP8YSOGHHTBRDD9NH90M' where id=3; -update noar tt set v0='I9OFH' where id=3; -update noar ti set v0='I9OFH' where id=3; -update noar tt set b1='70D7UOBABGBCPMYGAL53EBJXWLMT' where id=3; -update noar ti set b1='70D7UOBABGBCPMYGAL53EBJXWLMT' where id=3; -update noar tt set v0='MV0BE2G5T3ZH69PLRH99KH6G4J8' where id=3; -update noar ti set v0='MV0BE2G5T3ZH69PLRH99KH6G4J8' where id=3; -update noar tt set b2='2BHYFO5VOCEO986NH4E6W77ZL6' where id=3; -update noar ti set b2='2BHYFO5VOCEO986NH4E6W77ZL6' where id=3; -update noar tt set v0='EF6DN0FYBD59BGLGQR' where id=4; -update noar ti set v0='EF6DN0FYBD59BGLGQR' where id=4; -update noar tt set b0='DYUOA3M5' where id=4; -update noar ti set b0='DYUOA3M5' where id=4; -update noar tt set v0='VKZ0EFQ4IB2NMUY1PSE43U2Q' where id=4; -update noar ti set v0='VKZ0EFQ4IB2NMUY1PSE43U2Q' where id=4; -update noar tt set b1='9XYPYQZQ360YTCSMHAK1HHNCL20POR' where id=4; -update noar ti set b1='9XYPYQZQ360YTCSMHAK1HHNCL20POR' where id=4; -update noar tt set v0='F372VYQTVDPGYJ6YJEWN1BP7OIMUUI' where id=4; -update noar ti set v0='F372VYQTVDPGYJ6YJEWN1BP7OIMUUI' where id=4; -update noar tt set b2='7ZYPK9Q' where id=4; -update noar ti set b2='7ZYPK9Q' where id=4; -update noar tt set v0='69O5' where id=5; -update noar ti set v0='69O5' where id=5; -update noar tt set b0='KSNF96TJ6HMRC9' where id=5; -update noar ti set b0='KSNF96TJ6HMRC9' where id=5; -update noar tt set v0='P0Q54' where id=5; -update noar ti set v0='P0Q54' where id=5; -update noar tt set b1='Z6' where id=5; -update noar ti set b1='Z6' where id=5; -update noar tt set v0='EOS2HQE0FNIXLRPI' where id=5; -update noar ti set v0='EOS2HQE0FNIXLRPI' where id=5; -update noar tt set b2='OY946LJQ3MQ555ZHHJEGPSO2E7ZTP' where id=5; -update noar ti set b2='OY946LJQ3MQ555ZHHJEGPSO2E7ZTP' where id=5; -update noar tt set v0='3JOTKETQCGE27KEUDNJYXXCKSJVUIA' where id=6; -update noar ti set v0='3JOTKETQCGE27KEUDNJYXXCKSJVUIA' where id=6; -update noar tt set b0='YHQDCVI' where id=6; -update noar ti set b0='YHQDCVI' where id=6; -update noar tt set v0='O2P00KQLPWIS6XCHJN78EFEUPJX7G8ND' where id=6; -update noar ti set v0='O2P00KQLPWIS6XCHJN78EFEUPJX7G8ND' where id=6; -update noar tt set b1='KPECLAOA' where id=6; -update noar ti set b1='KPECLAOA' where id=6; -update noar tt set v0='VGSOA0ZC' where id=6; -update noar ti set v0='VGSOA0ZC' where id=6; -update noar tt set b2='RUPIDL7O5UGPY' where id=6; -update noar ti set b2='RUPIDL7O5UGPY' where id=6; -update noar tt set v0='339AJBNX5BLY4OJ9IAQWQY' where id=7; -update noar ti set v0='339AJBNX5BLY4OJ9IAQWQY' where id=7; -update noar tt set b0='OZZNDH9KJ9NONF322ONYO3R7' where id=7; -update noar ti set b0='OZZNDH9KJ9NONF322ONYO3R7' where id=7; -update noar tt set v0='96' where id=7; -update noar ti set v0='96' where id=7; -update noar tt set b1='5REZ7R8JAZGCKN86H3' where id=7; -update noar ti set b1='5REZ7R8JAZGCKN86H3' where id=7; -update noar tt set v0='Z3FX9XT7MR3JIMCS8' where id=7; -update noar ti set v0='Z3FX9XT7MR3JIMCS8' where id=7; -update noar tt set b2='UJSTK5XOL5ZBFOSLUZX5N' where id=7; -update noar ti set b2='UJSTK5XOL5ZBFOSLUZX5N' where id=7; -update noar tt set v0='CGCYXO2SQ75H8GGE97SIO' where id=8; -update noar ti set v0='CGCYXO2SQ75H8GGE97SIO' where id=8; -update noar tt set b0='TGFIKBRLL' where id=8; -update noar ti set b0='TGFIKBRLL' where id=8; -update noar tt set v0='HRFE9X742SWXI0L1KSK7XUIN' where id=8; -update noar ti set v0='HRFE9X742SWXI0L1KSK7XUIN' where id=8; -update noar tt set b1='9ECT3260X69' where id=8; -update noar ti set b1='9ECT3260X69' where id=8; -update noar tt set v0='EIHZ1DCJ5MRT' where id=8; -update noar ti set v0='EIHZ1DCJ5MRT' where id=8; -update noar tt set b2='S7FMCMBWO' where id=8; -update noar ti set b2='S7FMCMBWO' where id=8; -update noar tt set v0='2NPSJYS8LQ' where id=9; -update noar ti set v0='2NPSJYS8LQ' where id=9; -update noar tt set b0='AHUV6N' where id=9; -update noar ti set b0='AHUV6N' where id=9; -update noar tt set v0='NBSMH39QV6CFZSCTWNTOIC3MGHISMRSJ' where id=9; -update noar ti set v0='NBSMH39QV6CFZSCTWNTOIC3MGHISMRSJ' where id=9; -update noar tt set b1='7VQZ487C6NWN02T6DJ6YI4BF' where id=9; -update noar ti set b1='7VQZ487C6NWN02T6DJ6YI4BF' where id=9; -update noar tt set v0='SAOX07KTBIV040IBBWIID8' where id=9; -update noar ti set v0='SAOX07KTBIV040IBBWIID8' where id=9; -update noar tt set b2='0937' where id=9; -update noar ti set b2='0937' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - f0 int null, - v0 varchar(32) null, - b0 blob null, - b1 tinyblob null, - b2 mediumblob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='JQZKF4OF4I1HY5' where id=1; -update noar ti set v0='JQZKF4OF4I1HY5' where id=1; -update noar tt set b0='QO3A' where id=1; -update noar ti set b0='QO3A' where id=1; -update noar tt set v0='64Q02FVIQJXQ5V' where id=1; -update noar ti set v0='64Q02FVIQJXQ5V' where id=1; -update noar tt set b1='YISKHI6URNRY0C22XGVH997WJ9HJROT' where id=1; -update noar ti set b1='YISKHI6URNRY0C22XGVH997WJ9HJROT' where id=1; -update noar tt set v0='CKKZN' where id=1; -update noar ti set v0='CKKZN' where id=1; -update noar tt set b2='HS' where id=1; -update noar ti set b2='HS' where id=1; -update noar tt set v0='T62APNUZGXYDEDGZW' where id=2; -update noar ti set v0='T62APNUZGXYDEDGZW' where id=2; -update noar tt set b0='S0PZCLTW' where id=2; -update noar ti set b0='S0PZCLTW' where id=2; -update noar tt set v0='6BZDJEJBTOQB1BB8ATW6WTP2' where id=2; -update noar ti set v0='6BZDJEJBTOQB1BB8ATW6WTP2' where id=2; -update noar tt set b1='4KZSC0E8W5VVPG1EK3R9FO8' where id=2; -update noar ti set b1='4KZSC0E8W5VVPG1EK3R9FO8' where id=2; -update noar tt set v0='3APFGA41351E35UKW9GNYR8' where id=2; -update noar ti set v0='3APFGA41351E35UKW9GNYR8' where id=2; -update noar tt set b2='FUN2K93OFXEZWLSCQ46N' where id=2; -update noar ti set b2='FUN2K93OFXEZWLSCQ46N' where id=2; -update noar tt set v0='3RBPJYLTC9Z' where id=3; -update noar ti set v0='3RBPJYLTC9Z' where id=3; -update noar tt set b0='DOYCKN0TFXCL63SG2HTVD3V' where id=3; -update noar ti set b0='DOYCKN0TFXCL63SG2HTVD3V' where id=3; -update noar tt set v0='85KW55IBZ6J2DLA3N5P7' where id=3; -update noar ti set v0='85KW55IBZ6J2DLA3N5P7' where id=3; -update noar tt set b1='DBVAH1A0V21O' where id=3; -update noar ti set b1='DBVAH1A0V21O' where id=3; -update noar tt set v0='HPK4HGY6BR9O5AZMC5HIU' where id=3; -update noar ti set v0='HPK4HGY6BR9O5AZMC5HIU' where id=3; -update noar tt set b2='YIPB2XUE3E42CFP9S8QNMEB8P' where id=3; -update noar ti set b2='YIPB2XUE3E42CFP9S8QNMEB8P' where id=3; -update noar tt set v0='DTU60U3L8B3GS3TVQ1CEKNOPP6' where id=4; -update noar ti set v0='DTU60U3L8B3GS3TVQ1CEKNOPP6' where id=4; -update noar tt set b0='WQFEFIK' where id=4; -update noar ti set b0='WQFEFIK' where id=4; -update noar tt set v0='N' where id=4; -update noar ti set v0='N' where id=4; -update noar tt set b1='G1P' where id=4; -update noar ti set b1='G1P' where id=4; -update noar tt set v0='LVG069PMOYPFNUJJ' where id=4; -update noar ti set v0='LVG069PMOYPFNUJJ' where id=4; -update noar tt set b2='17N4KB5YXDCAFFPN6VR' where id=4; -update noar ti set b2='17N4KB5YXDCAFFPN6VR' where id=4; -update noar tt set v0='NAL2IETRW4AW' where id=5; -update noar ti set v0='NAL2IETRW4AW' where id=5; -update noar tt set b0='27CI4KSS9ARHQVVM5K7' where id=5; -update noar ti set b0='27CI4KSS9ARHQVVM5K7' where id=5; -update noar tt set v0='AQ' where id=5; -update noar ti set v0='AQ' where id=5; -update noar tt set b1='0WWOL64LIXTQAP' where id=5; -update noar ti set b1='0WWOL64LIXTQAP' where id=5; -update noar tt set v0='W9IN034RPM5EEE8616Y3HRMNCRQ' where id=5; -update noar ti set v0='W9IN034RPM5EEE8616Y3HRMNCRQ' where id=5; -update noar tt set b2='9KEK93ZX' where id=5; -update noar ti set b2='9KEK93ZX' where id=5; -update noar tt set v0='PT' where id=6; -update noar ti set v0='PT' where id=6; -update noar tt set b0='HSCGIIQLA7HDBXD8OD76BLBL71NR1V' where id=6; -update noar ti set b0='HSCGIIQLA7HDBXD8OD76BLBL71NR1V' where id=6; -update noar tt set v0='ORYP20BYRK5WZMCT0NLRXM17SQUV' where id=6; -update noar ti set v0='ORYP20BYRK5WZMCT0NLRXM17SQUV' where id=6; -update noar tt set b1='1RC8HR6W8PEX1ESIJKI59' where id=6; -update noar ti set b1='1RC8HR6W8PEX1ESIJKI59' where id=6; -update noar tt set v0='Q3BOBVB4JTSSW9SA' where id=6; -update noar ti set v0='Q3BOBVB4JTSSW9SA' where id=6; -update noar tt set b2='J' where id=6; -update noar ti set b2='J' where id=6; -update noar tt set v0='D1EFQ3' where id=7; -update noar ti set v0='D1EFQ3' where id=7; -update noar tt set b0='BQE81RMMANSTYPPJKMJY' where id=7; -update noar ti set b0='BQE81RMMANSTYPPJKMJY' where id=7; -update noar tt set v0='7D52MJWV22ALOWVGQ21AEQTGOV5' where id=7; -update noar ti set v0='7D52MJWV22ALOWVGQ21AEQTGOV5' where id=7; -update noar tt set b1='MIDSBIHN0PG0Z831SUT5SPAA' where id=7; -update noar ti set b1='MIDSBIHN0PG0Z831SUT5SPAA' where id=7; -update noar tt set v0='UNTWDR' where id=7; -update noar ti set v0='UNTWDR' where id=7; -update noar tt set b2='K' where id=7; -update noar ti set b2='K' where id=7; -update noar tt set v0='AGY8E' where id=8; -update noar ti set v0='AGY8E' where id=8; -update noar tt set b0='TZCZEWYVWF5' where id=8; -update noar ti set b0='TZCZEWYVWF5' where id=8; -update noar tt set v0='YGA1WRO' where id=8; -update noar ti set v0='YGA1WRO' where id=8; -update noar tt set b1='QEZUWVP5Z62YHFHZDK' where id=8; -update noar ti set b1='QEZUWVP5Z62YHFHZDK' where id=8; -update noar tt set v0='86RZ' where id=8; -update noar ti set v0='86RZ' where id=8; -update noar tt set b2='0RWFZ7TPE63V6EEGKUYDHNHKL9VC' where id=8; -update noar ti set b2='0RWFZ7TPE63V6EEGKUYDHNHKL9VC' where id=8; -update noar tt set v0='DJLR7ZN66VHP5SJ52T1SJHXT6FFA' where id=9; -update noar ti set v0='DJLR7ZN66VHP5SJ52T1SJHXT6FFA' where id=9; -update noar tt set b0='ZXE0OG6EKSIR6J7Q1J0O2L5L' where id=9; -update noar ti set b0='ZXE0OG6EKSIR6J7Q1J0O2L5L' where id=9; -update noar tt set v0='F2XC3WBW3HC3RJNH' where id=9; -update noar ti set v0='F2XC3WBW3HC3RJNH' where id=9; -update noar tt set b1='F0I7I9R5XRXEH7WLIV00HC' where id=9; -update noar ti set b1='F0I7I9R5XRXEH7WLIV00HC' where id=9; -update noar tt set v0='T2NMZ9CR6MSWJ1I4D8N0IX8' where id=9; -update noar ti set v0='T2NMZ9CR6MSWJ1I4D8N0IX8' where id=9; -update noar tt set b2='XPFUETP3' where id=9; -update noar ti set b2='XPFUETP3' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - f0 int null, - v0 varchar(256) null, - b0 blob null, - b1 tinyblob null, - b2 mediumblob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='AQKVGZ6XDYVP' where id=1; -update noar ti set v0='AQKVGZ6XDYVP' where id=1; -update noar tt set b0='RBDJUEY5' where id=1; -update noar ti set b0='RBDJUEY5' where id=1; -update noar tt set v0='CQT4S9WM3IQUH3V40V4BW51WM' where id=1; -update noar ti set v0='CQT4S9WM3IQUH3V40V4BW51WM' where id=1; -update noar tt set b1='UQD5Y83TYJAJKZBJHMR171ZLSM' where id=1; -update noar ti set b1='UQD5Y83TYJAJKZBJHMR171ZLSM' where id=1; -update noar tt set v0='52K1R59WZ76P2GNL' where id=1; -update noar ti set v0='52K1R59WZ76P2GNL' where id=1; -update noar tt set b2='28RU6X7TPTCVKG8UMNFF36P' where id=1; -update noar ti set b2='28RU6X7TPTCVKG8UMNFF36P' where id=1; -update noar tt set v0='36AINGN9ZBYYFONO3JMRVXK4' where id=2; -update noar ti set v0='36AINGN9ZBYYFONO3JMRVXK4' where id=2; -update noar tt set b0='YIYS3UU6H' where id=2; -update noar ti set b0='YIYS3UU6H' where id=2; -update noar tt set v0='M1SYAHOU0961UPPGEXP' where id=2; -update noar ti set v0='M1SYAHOU0961UPPGEXP' where id=2; -update noar tt set b1='TJ81E5JY0X7XZJCDIE' where id=2; -update noar ti set b1='TJ81E5JY0X7XZJCDIE' where id=2; -update noar tt set v0='LG0TMT' where id=2; -update noar ti set v0='LG0TMT' where id=2; -update noar tt set b2='07ITRA1Y' where id=2; -update noar ti set b2='07ITRA1Y' where id=2; -update noar tt set v0='68XHZKEH98X4TKD' where id=3; -update noar ti set v0='68XHZKEH98X4TKD' where id=3; -update noar tt set b0='Q1X1SSM4P' where id=3; -update noar ti set b0='Q1X1SSM4P' where id=3; -update noar tt set v0='BHUGLWAG9IM' where id=3; -update noar ti set v0='BHUGLWAG9IM' where id=3; -update noar tt set b1='OR1TW6KTV4R7LM' where id=3; -update noar ti set b1='OR1TW6KTV4R7LM' where id=3; -update noar tt set v0='0361U4' where id=3; -update noar ti set v0='0361U4' where id=3; -update noar tt set b2='IH732A3V2MGGAGU8KKA8W' where id=3; -update noar ti set b2='IH732A3V2MGGAGU8KKA8W' where id=3; -update noar tt set v0='11EH8WAD5X0C6D8L3I3S' where id=4; -update noar ti set v0='11EH8WAD5X0C6D8L3I3S' where id=4; -update noar tt set b0='QVW7DDBC5' where id=4; -update noar ti set b0='QVW7DDBC5' where id=4; -update noar tt set v0='J0VYFHP35ATPVPKTCTJA9T2MQ09SW2' where id=4; -update noar ti set v0='J0VYFHP35ATPVPKTCTJA9T2MQ09SW2' where id=4; -update noar tt set b1='NHRQEPGF65BAAFBM317QIHWZ5T' where id=4; -update noar ti set b1='NHRQEPGF65BAAFBM317QIHWZ5T' where id=4; -update noar tt set v0='G0WOKPSIH2WJM2KP74CNE4VG64DD7MKT' where id=4; -update noar ti set v0='G0WOKPSIH2WJM2KP74CNE4VG64DD7MKT' where id=4; -update noar tt set b2='2UREJR0VTFHVY1Y8BW' where id=4; -update noar ti set b2='2UREJR0VTFHVY1Y8BW' where id=4; -update noar tt set v0='PEIABRO5VVBGRX2L556BFPJCC' where id=5; -update noar ti set v0='PEIABRO5VVBGRX2L556BFPJCC' where id=5; -update noar tt set b0='S0N67UTCBDKPWZLX0' where id=5; -update noar ti set b0='S0N67UTCBDKPWZLX0' where id=5; -update noar tt set v0='6Y6RNTSBC74' where id=5; -update noar ti set v0='6Y6RNTSBC74' where id=5; -update noar tt set b1='2JOF0P' where id=5; -update noar ti set b1='2JOF0P' where id=5; -update noar tt set v0='O9VXISL7JSAS2SA4VVS37CTC' where id=5; -update noar ti set v0='O9VXISL7JSAS2SA4VVS37CTC' where id=5; -update noar tt set b2='IAXLA99RXUBLC266TWBAMA5WHDXAA2ZD' where id=5; -update noar ti set b2='IAXLA99RXUBLC266TWBAMA5WHDXAA2ZD' where id=5; -update noar tt set v0='306AFPW' where id=6; -update noar ti set v0='306AFPW' where id=6; -update noar tt set b0='N5CP6VWDJJ9Y2JEJUPASJECMTXU6AMF' where id=6; -update noar ti set b0='N5CP6VWDJJ9Y2JEJUPASJECMTXU6AMF' where id=6; -update noar tt set v0='K1LM42BJW3EZWKU6' where id=6; -update noar ti set v0='K1LM42BJW3EZWKU6' where id=6; -update noar tt set b1='A3T7DGBY857NX1S' where id=6; -update noar ti set b1='A3T7DGBY857NX1S' where id=6; -update noar tt set v0='2U14QTNCNU2' where id=6; -update noar ti set v0='2U14QTNCNU2' where id=6; -update noar tt set b2='Z5BKVUHN6EDLVIT7UT9TUJK3' where id=6; -update noar ti set b2='Z5BKVUHN6EDLVIT7UT9TUJK3' where id=6; -update noar tt set v0='Q39KXSZKKW6W7ZVV' where id=7; -update noar ti set v0='Q39KXSZKKW6W7ZVV' where id=7; -update noar tt set b0='DY7E0' where id=7; -update noar ti set b0='DY7E0' where id=7; -update noar tt set v0='BP02QLIKA3GSK9IBRM0O4YI1' where id=7; -update noar ti set v0='BP02QLIKA3GSK9IBRM0O4YI1' where id=7; -update noar tt set b1='JZWJW34TDPV4NDSPK59L6' where id=7; -update noar ti set b1='JZWJW34TDPV4NDSPK59L6' where id=7; -update noar tt set v0='AMSO269EUQLFWBS1H6' where id=7; -update noar ti set v0='AMSO269EUQLFWBS1H6' where id=7; -update noar tt set b2='PSOXACLVZFR1LKX4LE7WIUSHWCS6U6R8' where id=7; -update noar ti set b2='PSOXACLVZFR1LKX4LE7WIUSHWCS6U6R8' where id=7; -update noar tt set v0='NF1976' where id=8; -update noar ti set v0='NF1976' where id=8; -update noar tt set b0='L2ADQY8GAIKROUZW74NATT7HE3CW6YC' where id=8; -update noar ti set b0='L2ADQY8GAIKROUZW74NATT7HE3CW6YC' where id=8; -update noar tt set v0='25E7C4AMBKJ6Q' where id=8; -update noar ti set v0='25E7C4AMBKJ6Q' where id=8; -update noar tt set b1='DAX' where id=8; -update noar ti set b1='DAX' where id=8; -update noar tt set v0='2BF186R9DC15VUHUZ4IWAICEQT' where id=8; -update noar ti set v0='2BF186R9DC15VUHUZ4IWAICEQT' where id=8; -update noar tt set b2='IETXCKKXSE81ZDM04A4V5J13PH' where id=8; -update noar ti set b2='IETXCKKXSE81ZDM04A4V5J13PH' where id=8; -update noar tt set v0='LC3OYXYDW26M0QJ8RC2F2' where id=9; -update noar ti set v0='LC3OYXYDW26M0QJ8RC2F2' where id=9; -update noar tt set b0='MOA1WS3U3YSSLT05' where id=9; -update noar ti set b0='MOA1WS3U3YSSLT05' where id=9; -update noar tt set v0='DFO4RL9FOZ9BW6TYMP58GSJJW6' where id=9; -update noar ti set v0='DFO4RL9FOZ9BW6TYMP58GSJJW6' where id=9; -update noar tt set b1='Z5HQE' where id=9; -update noar ti set b1='Z5HQE' where id=9; -update noar tt set v0='AFB3ADFRP7H' where id=9; -update noar ti set v0='AFB3ADFRP7H' where id=9; -update noar tt set b2='YLQTW6457I0M05Y5A4NZG6KE' where id=9; -update noar ti set b2='YLQTW6457I0M05Y5A4NZG6KE' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - f0 int not null, - v0 varchar(32) not null, - b0 blob not null, - b1 tinyblob not null, - b2 mediumblob not null -) engine=tokudb; -insert into tt values (1,0,'','','',''); -insert into tt values (2,0,'','','',''); -insert into tt values (3,0,'','','',''); -insert into tt values (4,0,'','','',''); -insert into tt values (5,0,'','','',''); -insert into tt values (6,0,'','','',''); -insert into tt values (7,0,'','','',''); -insert into tt values (8,0,'','','',''); -insert into tt values (9,0,'','','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='1QFLEOZY95V7GPXG' where id=1; -update noar ti set v0='1QFLEOZY95V7GPXG' where id=1; -update noar tt set b0='5N8T3FBDVP3D54MDD8VDP' where id=1; -update noar ti set b0='5N8T3FBDVP3D54MDD8VDP' where id=1; -update noar tt set v0='ES2HN9AFEBGV' where id=1; -update noar ti set v0='ES2HN9AFEBGV' where id=1; -update noar tt set b1='65WISW1WR30DZZN2OX' where id=1; -update noar ti set b1='65WISW1WR30DZZN2OX' where id=1; -update noar tt set v0='XEQRFC411G4VTSM0' where id=1; -update noar ti set v0='XEQRFC411G4VTSM0' where id=1; -update noar tt set b2='HBCU' where id=1; -update noar ti set b2='HBCU' where id=1; -update noar tt set v0='GEBTNO62' where id=2; -update noar ti set v0='GEBTNO62' where id=2; -update noar tt set b0='VZE9RJMBAWUF81G' where id=2; -update noar ti set b0='VZE9RJMBAWUF81G' where id=2; -update noar tt set v0='H3F3473K1OJG3FJG18' where id=2; -update noar ti set v0='H3F3473K1OJG3FJG18' where id=2; -update noar tt set b1='SNERJMZOPU' where id=2; -update noar ti set b1='SNERJMZOPU' where id=2; -update noar tt set v0='R' where id=2; -update noar ti set v0='R' where id=2; -update noar tt set b2='U6' where id=2; -update noar ti set b2='U6' where id=2; -update noar tt set v0='XXQVK9YR491UB0WIM0A2' where id=3; -update noar ti set v0='XXQVK9YR491UB0WIM0A2' where id=3; -update noar tt set b0='XJYZLCRXTR02LGTY4G' where id=3; -update noar ti set b0='XJYZLCRXTR02LGTY4G' where id=3; -update noar tt set v0='V4NMM9TEVFDH5OQ5C8Q05B' where id=3; -update noar ti set v0='V4NMM9TEVFDH5OQ5C8Q05B' where id=3; -update noar tt set b1='YYSUSK7XQJ' where id=3; -update noar ti set b1='YYSUSK7XQJ' where id=3; -update noar tt set v0='L7ZD' where id=3; -update noar ti set v0='L7ZD' where id=3; -update noar tt set b2='NCDYVN0FZ95CJU2O25H9M433RZYYZ' where id=3; -update noar ti set b2='NCDYVN0FZ95CJU2O25H9M433RZYYZ' where id=3; -update noar tt set v0='O7N' where id=4; -update noar ti set v0='O7N' where id=4; -update noar tt set b0='V68GBFWGO496QSP6TRUVUKQNVC' where id=4; -update noar ti set b0='V68GBFWGO496QSP6TRUVUKQNVC' where id=4; -update noar tt set v0='C55665A2VZVF' where id=4; -update noar ti set v0='C55665A2VZVF' where id=4; -update noar tt set b1='SHNHOWL5ZEAWGT57WH5MC' where id=4; -update noar ti set b1='SHNHOWL5ZEAWGT57WH5MC' where id=4; -update noar tt set v0='ILANGQBVR0U' where id=4; -update noar ti set v0='ILANGQBVR0U' where id=4; -update noar tt set b2='IGIUA0GJ9' where id=4; -update noar ti set b2='IGIUA0GJ9' where id=4; -update noar tt set v0='PM9L27OCD0NDFID' where id=5; -update noar ti set v0='PM9L27OCD0NDFID' where id=5; -update noar tt set b0='W3PD8K8' where id=5; -update noar ti set b0='W3PD8K8' where id=5; -update noar tt set v0='5QKI33GKH9DZVQZ' where id=5; -update noar ti set v0='5QKI33GKH9DZVQZ' where id=5; -update noar tt set b1='AORLPK' where id=5; -update noar ti set b1='AORLPK' where id=5; -update noar tt set v0='8AHJM7ONR1IGKZYSV89NC3WDY86FD1XG' where id=5; -update noar ti set v0='8AHJM7ONR1IGKZYSV89NC3WDY86FD1XG' where id=5; -update noar tt set b2='VGJUULSPU0B2' where id=5; -update noar ti set b2='VGJUULSPU0B2' where id=5; -update noar tt set v0='SOGNKNK0JTPD' where id=6; -update noar ti set v0='SOGNKNK0JTPD' where id=6; -update noar tt set b0='O' where id=6; -update noar ti set b0='O' where id=6; -update noar tt set v0='VGR7K16GHINUZDF97K' where id=6; -update noar ti set v0='VGR7K16GHINUZDF97K' where id=6; -update noar tt set b1='T924XEYY82I00GBQ4PHMY9KT3U188' where id=6; -update noar ti set b1='T924XEYY82I00GBQ4PHMY9KT3U188' where id=6; -update noar tt set v0='R76CM1FLVLG' where id=6; -update noar ti set v0='R76CM1FLVLG' where id=6; -update noar tt set b2='9W2K46LUBPULEUD2JHZNDBP1A39X0W' where id=6; -update noar ti set b2='9W2K46LUBPULEUD2JHZNDBP1A39X0W' where id=6; -update noar tt set v0='7PAW' where id=7; -update noar ti set v0='7PAW' where id=7; -update noar tt set b0='RB7HX7LZ0DO7V2H5RMPI' where id=7; -update noar ti set b0='RB7HX7LZ0DO7V2H5RMPI' where id=7; -update noar tt set v0='N2QDKTNJD6B' where id=7; -update noar ti set v0='N2QDKTNJD6B' where id=7; -update noar tt set b1='JIQB3SIBSFD1FRJZM6MD9IP8WM' where id=7; -update noar ti set b1='JIQB3SIBSFD1FRJZM6MD9IP8WM' where id=7; -update noar tt set v0='7XYRR9DB0P8ROJOQEK40HF' where id=7; -update noar ti set v0='7XYRR9DB0P8ROJOQEK40HF' where id=7; -update noar tt set b2='6UYR1QXWADW9P0V' where id=7; -update noar ti set b2='6UYR1QXWADW9P0V' where id=7; -update noar tt set v0='HX8KNLP6SQTLK8YIAD' where id=8; -update noar ti set v0='HX8KNLP6SQTLK8YIAD' where id=8; -update noar tt set b0='5QF1XQY8EEFN5V4AS7OXBQJREBSL9157' where id=8; -update noar ti set b0='5QF1XQY8EEFN5V4AS7OXBQJREBSL9157' where id=8; -update noar tt set v0='5S3RPTKS8623Q9CCIDTOA3O9JXDQD' where id=8; -update noar ti set v0='5S3RPTKS8623Q9CCIDTOA3O9JXDQD' where id=8; -update noar tt set b1='TCVWWZXMSNRC6B9MPP' where id=8; -update noar ti set b1='TCVWWZXMSNRC6B9MPP' where id=8; -update noar tt set v0='TXXCDN4SCMU79E' where id=8; -update noar ti set v0='TXXCDN4SCMU79E' where id=8; -update noar tt set b2='990E4IXCJKWENKUSTQL1NMFLS0HU4ZMG' where id=8; -update noar ti set b2='990E4IXCJKWENKUSTQL1NMFLS0HU4ZMG' where id=8; -update noar tt set v0='QH3JA7DFIKS8FX3G' where id=9; -update noar ti set v0='QH3JA7DFIKS8FX3G' where id=9; -update noar tt set b0='3UBRY77M38VEDTJJD6CSQ5OIG95T6' where id=9; -update noar ti set b0='3UBRY77M38VEDTJJD6CSQ5OIG95T6' where id=9; -update noar tt set v0='ZHNJMTJJNOGV82IWLWDB19AW9H2OFT0B' where id=9; -update noar ti set v0='ZHNJMTJJNOGV82IWLWDB19AW9H2OFT0B' where id=9; -update noar tt set b1='GO0ONIGKPY267V3UN3IP6S9' where id=9; -update noar ti set b1='GO0ONIGKPY267V3UN3IP6S9' where id=9; -update noar tt set v0='3B5Q7PIB4T2' where id=9; -update noar ti set v0='3B5Q7PIB4T2' where id=9; -update noar tt set b2='ATKB1B' where id=9; -update noar ti set b2='ATKB1B' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - f0 int not null, - v0 varchar(256) not null, - b0 blob not null, - b1 tinyblob not null, - b2 mediumblob not null -) engine=tokudb; -insert into tt values (1,0,'','','',''); -insert into tt values (2,0,'','','',''); -insert into tt values (3,0,'','','',''); -insert into tt values (4,0,'','','',''); -insert into tt values (5,0,'','','',''); -insert into tt values (6,0,'','','',''); -insert into tt values (7,0,'','','',''); -insert into tt values (8,0,'','','',''); -insert into tt values (9,0,'','','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='OI7J12' where id=1; -update noar ti set v0='OI7J12' where id=1; -update noar tt set b0='L2H2X0Q65JS27' where id=1; -update noar ti set b0='L2H2X0Q65JS27' where id=1; -update noar tt set v0='KG' where id=1; -update noar ti set v0='KG' where id=1; -update noar tt set b1='CURZAL8QB5H1I7CVQCMXRW4O' where id=1; -update noar ti set b1='CURZAL8QB5H1I7CVQCMXRW4O' where id=1; -update noar tt set v0='Y8ZTRWBC4711' where id=1; -update noar ti set v0='Y8ZTRWBC4711' where id=1; -update noar tt set b2='MTZ1GXBKO8OT70JR7' where id=1; -update noar ti set b2='MTZ1GXBKO8OT70JR7' where id=1; -update noar tt set v0='9II7AO8CJZ0IK9EH' where id=2; -update noar ti set v0='9II7AO8CJZ0IK9EH' where id=2; -update noar tt set b0='SZUCK76WLQH5Y6VMV546G50KH0251H9B' where id=2; -update noar ti set b0='SZUCK76WLQH5Y6VMV546G50KH0251H9B' where id=2; -update noar tt set v0='1LPE3' where id=2; -update noar ti set v0='1LPE3' where id=2; -update noar tt set b1='SQCT' where id=2; -update noar ti set b1='SQCT' where id=2; -update noar tt set v0='LOHJ0T' where id=2; -update noar ti set v0='LOHJ0T' where id=2; -update noar tt set b2='6VNDAK651XOCRRXG8J8WHXY2' where id=2; -update noar ti set b2='6VNDAK651XOCRRXG8J8WHXY2' where id=2; -update noar tt set v0='O1A9LK789AAVXFTZ2OTM' where id=3; -update noar ti set v0='O1A9LK789AAVXFTZ2OTM' where id=3; -update noar tt set b0='ZAB81UFY4Y62I5L1V' where id=3; -update noar ti set b0='ZAB81UFY4Y62I5L1V' where id=3; -update noar tt set v0='Y4AMEX5NGPS7YYPM8AKV0P3TQJ3U1D' where id=3; -update noar ti set v0='Y4AMEX5NGPS7YYPM8AKV0P3TQJ3U1D' where id=3; -update noar tt set b1='5N4EHOOG7S7MPJI0100TAILLME6' where id=3; -update noar ti set b1='5N4EHOOG7S7MPJI0100TAILLME6' where id=3; -update noar tt set v0='O' where id=3; -update noar ti set v0='O' where id=3; -update noar tt set b2='NA4BCU1Z2' where id=3; -update noar ti set b2='NA4BCU1Z2' where id=3; -update noar tt set v0='AOTVEXN0CF7VRDIDW64TV0H' where id=4; -update noar ti set v0='AOTVEXN0CF7VRDIDW64TV0H' where id=4; -update noar tt set b0='ALA3NK7N8WC7GP2CBRI7CX1V3' where id=4; -update noar ti set b0='ALA3NK7N8WC7GP2CBRI7CX1V3' where id=4; -update noar tt set v0='AR5KO486K' where id=4; -update noar ti set v0='AR5KO486K' where id=4; -update noar tt set b1='RCR3YKANN' where id=4; -update noar ti set b1='RCR3YKANN' where id=4; -update noar tt set v0='TLGJC19GVS6SLFK1O' where id=4; -update noar ti set v0='TLGJC19GVS6SLFK1O' where id=4; -update noar tt set b2='X3J231' where id=4; -update noar ti set b2='X3J231' where id=4; -update noar tt set v0='QMM8LAQS' where id=5; -update noar ti set v0='QMM8LAQS' where id=5; -update noar tt set b0='J2E7NVBTONPU6V425LE' where id=5; -update noar ti set b0='J2E7NVBTONPU6V425LE' where id=5; -update noar tt set v0='3EZNJ2PFM27PC1P26I9VODKBABQ0E9YW' where id=5; -update noar ti set v0='3EZNJ2PFM27PC1P26I9VODKBABQ0E9YW' where id=5; -update noar tt set b1='W2HSFYASIJKDGOUBVXFQMFNZ' where id=5; -update noar ti set b1='W2HSFYASIJKDGOUBVXFQMFNZ' where id=5; -update noar tt set v0='ZQSOMD43GFMFGJJ' where id=5; -update noar ti set v0='ZQSOMD43GFMFGJJ' where id=5; -update noar tt set b2='I6SI6YPOEPLT3GHC9707EM0FGVY' where id=5; -update noar ti set b2='I6SI6YPOEPLT3GHC9707EM0FGVY' where id=5; -update noar tt set v0='8MRACZEDAMCELBDHMVHGOPDR6XNVQXRK' where id=6; -update noar ti set v0='8MRACZEDAMCELBDHMVHGOPDR6XNVQXRK' where id=6; -update noar tt set b0='4ZEO72K7O4V37WKJB3J0QZ' where id=6; -update noar ti set b0='4ZEO72K7O4V37WKJB3J0QZ' where id=6; -update noar tt set v0='2K2LPBHY5XRWRFB64VF3RC7NPU' where id=6; -update noar ti set v0='2K2LPBHY5XRWRFB64VF3RC7NPU' where id=6; -update noar tt set b1='B' where id=6; -update noar ti set b1='B' where id=6; -update noar tt set v0='2RUM' where id=6; -update noar ti set v0='2RUM' where id=6; -update noar tt set b2='8Y' where id=6; -update noar ti set b2='8Y' where id=6; -update noar tt set v0='2AHJ44M79LR' where id=7; -update noar ti set v0='2AHJ44M79LR' where id=7; -update noar tt set b0='B3QRQU6XO' where id=7; -update noar ti set b0='B3QRQU6XO' where id=7; -update noar tt set v0='ZQMAN6W9DQO' where id=7; -update noar ti set v0='ZQMAN6W9DQO' where id=7; -update noar tt set b1='V78MZZW3CQBX0BZY' where id=7; -update noar ti set b1='V78MZZW3CQBX0BZY' where id=7; -update noar tt set v0='LJFDJPSEHKCBR1UQMLJC' where id=7; -update noar ti set v0='LJFDJPSEHKCBR1UQMLJC' where id=7; -update noar tt set b2='Y4DKDBXP7CN1XAH4G' where id=7; -update noar ti set b2='Y4DKDBXP7CN1XAH4G' where id=7; -update noar tt set v0='IK7AZ5XBBROYQ8F4IOC129ZJ' where id=8; -update noar ti set v0='IK7AZ5XBBROYQ8F4IOC129ZJ' where id=8; -update noar tt set b0='XT' where id=8; -update noar ti set b0='XT' where id=8; -update noar tt set v0='CTTTOX4FXK9Y3034TS4E7IDHKC' where id=8; -update noar ti set v0='CTTTOX4FXK9Y3034TS4E7IDHKC' where id=8; -update noar tt set b1='5UIAANG50UDRGFN' where id=8; -update noar ti set b1='5UIAANG50UDRGFN' where id=8; -update noar tt set v0='G' where id=8; -update noar ti set v0='G' where id=8; -update noar tt set b2='B' where id=8; -update noar ti set b2='B' where id=8; -update noar tt set v0='8TG7Z7T1' where id=9; -update noar ti set v0='8TG7Z7T1' where id=9; -update noar tt set b0='RDNYBT9KF8LK3CQ3OSZ' where id=9; -update noar ti set b0='RDNYBT9KF8LK3CQ3OSZ' where id=9; -update noar tt set v0='SAURT414' where id=9; -update noar ti set v0='SAURT414' where id=9; -update noar tt set b1='1UCRL3PWIYG' where id=9; -update noar ti set b1='1UCRL3PWIYG' where id=9; -update noar tt set v0='WJ3DK1' where id=9; -update noar ti set v0='WJ3DK1' where id=9; -update noar tt set b2='NYAZJ5HH60OQ3DS05LEXNKHDA2KH' where id=9; -update noar ti set b2='NYAZJ5HH60OQ3DS05LEXNKHDA2KH' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - f0 int null, - v0 varchar(32) null, - b0 blob null, - b1 tinyblob null, - b2 longblob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='HL08ND7Q6DMT3OHAN0JXSEN' where id=1; -update noar ti set v0='HL08ND7Q6DMT3OHAN0JXSEN' where id=1; -update noar tt set b0='DP58QF' where id=1; -update noar ti set b0='DP58QF' where id=1; -update noar tt set v0='TOBFDTZ' where id=1; -update noar ti set v0='TOBFDTZ' where id=1; -update noar tt set b1='C0T1VR7XJY2I5TZPSAWH6QP5SY5C' where id=1; -update noar ti set b1='C0T1VR7XJY2I5TZPSAWH6QP5SY5C' where id=1; -update noar tt set v0='O6M533' where id=1; -update noar ti set v0='O6M533' where id=1; -update noar tt set b2='J1QCYXJOTCHW2TG6ER49E3I8' where id=1; -update noar ti set b2='J1QCYXJOTCHW2TG6ER49E3I8' where id=1; -update noar tt set v0='1MLG4QUYLS5' where id=2; -update noar ti set v0='1MLG4QUYLS5' where id=2; -update noar tt set b0='JIZF' where id=2; -update noar ti set b0='JIZF' where id=2; -update noar tt set v0='KKZH' where id=2; -update noar ti set v0='KKZH' where id=2; -update noar tt set b1='VTY' where id=2; -update noar ti set b1='VTY' where id=2; -update noar tt set v0='JCIDR0Q' where id=2; -update noar ti set v0='JCIDR0Q' where id=2; -update noar tt set b2='AY783DZSX' where id=2; -update noar ti set b2='AY783DZSX' where id=2; -update noar tt set v0='G77SF9DW3V' where id=3; -update noar ti set v0='G77SF9DW3V' where id=3; -update noar tt set b0='W7AKNMEO8ZQRM2HAUI' where id=3; -update noar ti set b0='W7AKNMEO8ZQRM2HAUI' where id=3; -update noar tt set v0='GP2RCDN95RFE6Q2FORET3BQBUT' where id=3; -update noar ti set v0='GP2RCDN95RFE6Q2FORET3BQBUT' where id=3; -update noar tt set b1='QQ' where id=3; -update noar ti set b1='QQ' where id=3; -update noar tt set v0='DUXLNXEO' where id=3; -update noar ti set v0='DUXLNXEO' where id=3; -update noar tt set b2='IOXMLUCCUWG9190X' where id=3; -update noar ti set b2='IOXMLUCCUWG9190X' where id=3; -update noar tt set v0='2M8TGMTYRAE35B' where id=4; -update noar ti set v0='2M8TGMTYRAE35B' where id=4; -update noar tt set b0='P367R1OG' where id=4; -update noar ti set b0='P367R1OG' where id=4; -update noar tt set v0='DLUXSXJ' where id=4; -update noar ti set v0='DLUXSXJ' where id=4; -update noar tt set b1='A6DTY8XI3DO6K68I8SPJQD8HNL03K1' where id=4; -update noar ti set b1='A6DTY8XI3DO6K68I8SPJQD8HNL03K1' where id=4; -update noar tt set v0='RG49W6MANVB1NFRV1AKRGV3YGPC83' where id=4; -update noar ti set v0='RG49W6MANVB1NFRV1AKRGV3YGPC83' where id=4; -update noar tt set b2='UX7K28G' where id=4; -update noar ti set b2='UX7K28G' where id=4; -update noar tt set v0='R' where id=5; -update noar ti set v0='R' where id=5; -update noar tt set b0='DG27ZCOVM9WQGA' where id=5; -update noar ti set b0='DG27ZCOVM9WQGA' where id=5; -update noar tt set v0='GEBFAD60Z40LU0OB' where id=5; -update noar ti set v0='GEBFAD60Z40LU0OB' where id=5; -update noar tt set b1='0VDD84SRRGSAKPR6ZD3IJUKSG4' where id=5; -update noar ti set b1='0VDD84SRRGSAKPR6ZD3IJUKSG4' where id=5; -update noar tt set v0='V0MW93JK1OBS0OHC1KL' where id=5; -update noar ti set v0='V0MW93JK1OBS0OHC1KL' where id=5; -update noar tt set b2='WGV3M79OBFRIF18PO3STY4AU3T' where id=5; -update noar ti set b2='WGV3M79OBFRIF18PO3STY4AU3T' where id=5; -update noar tt set v0='X3RM6OE32' where id=6; -update noar ti set v0='X3RM6OE32' where id=6; -update noar tt set b0='PTODADEPHDB9D54DN5' where id=6; -update noar ti set b0='PTODADEPHDB9D54DN5' where id=6; -update noar tt set v0='YTUW1SVWSWCLJ143I20FL07EI0B5N' where id=6; -update noar ti set v0='YTUW1SVWSWCLJ143I20FL07EI0B5N' where id=6; -update noar tt set b1='565W558WPQ6KE3RZ5IXDHDPO' where id=6; -update noar ti set b1='565W558WPQ6KE3RZ5IXDHDPO' where id=6; -update noar tt set v0='TYRUWQTWTTN3HXCL1G5XSKK5ZN0H' where id=6; -update noar ti set v0='TYRUWQTWTTN3HXCL1G5XSKK5ZN0H' where id=6; -update noar tt set b2='19K9FVKBRVDPD6ATLMT0' where id=6; -update noar ti set b2='19K9FVKBRVDPD6ATLMT0' where id=6; -update noar tt set v0='LBIF0X8L' where id=7; -update noar ti set v0='LBIF0X8L' where id=7; -update noar tt set b0='R1985DLV' where id=7; -update noar ti set b0='R1985DLV' where id=7; -update noar tt set v0='V' where id=7; -update noar ti set v0='V' where id=7; -update noar tt set b1='FCQB1KVURQYSAFUL62ZDAC9E' where id=7; -update noar ti set b1='FCQB1KVURQYSAFUL62ZDAC9E' where id=7; -update noar tt set v0='L' where id=7; -update noar ti set v0='L' where id=7; -update noar tt set b2='J9POC94SSMTFZEY15Z' where id=7; -update noar ti set b2='J9POC94SSMTFZEY15Z' where id=7; -update noar tt set v0='0' where id=8; -update noar ti set v0='0' where id=8; -update noar tt set b0='4UZ2QBF6D8U5ONNKYS' where id=8; -update noar ti set b0='4UZ2QBF6D8U5ONNKYS' where id=8; -update noar tt set v0='E6POTG7BV3AWLSIYQKE' where id=8; -update noar ti set v0='E6POTG7BV3AWLSIYQKE' where id=8; -update noar tt set b1='6E1CXYETZS2L7' where id=8; -update noar ti set b1='6E1CXYETZS2L7' where id=8; -update noar tt set v0='Z855OK' where id=8; -update noar ti set v0='Z855OK' where id=8; -update noar tt set b2='M5C40FOV3EWMCRAN6O5RCM8P6H8' where id=8; -update noar ti set b2='M5C40FOV3EWMCRAN6O5RCM8P6H8' where id=8; -update noar tt set v0='LG8FIZK5SBLSHGYRXPZBOL96MI' where id=9; -update noar ti set v0='LG8FIZK5SBLSHGYRXPZBOL96MI' where id=9; -update noar tt set b0='Z3OSHXRBIJKE5WE01HGXZV' where id=9; -update noar ti set b0='Z3OSHXRBIJKE5WE01HGXZV' where id=9; -update noar tt set v0='NF2FK5MYMCVES2EAXB5C4D40T' where id=9; -update noar ti set v0='NF2FK5MYMCVES2EAXB5C4D40T' where id=9; -update noar tt set b1='S3ZSV00T' where id=9; -update noar ti set b1='S3ZSV00T' where id=9; -update noar tt set v0='TWVUKPSZ3Y8HF42O' where id=9; -update noar ti set v0='TWVUKPSZ3Y8HF42O' where id=9; -update noar tt set b2='LH02L19SD27935X7SNF' where id=9; -update noar ti set b2='LH02L19SD27935X7SNF' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - f0 int null, - v0 varchar(256) null, - b0 blob null, - b1 tinyblob null, - b2 longblob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='037BSCOD6UAEM5LDNURR' where id=1; -update noar ti set v0='037BSCOD6UAEM5LDNURR' where id=1; -update noar tt set b0='4YW3JEUTBJ1D4VHHA7QT9' where id=1; -update noar ti set b0='4YW3JEUTBJ1D4VHHA7QT9' where id=1; -update noar tt set v0='15Z94IRR19WZMA2NHVX1AULREG5L9J8' where id=1; -update noar ti set v0='15Z94IRR19WZMA2NHVX1AULREG5L9J8' where id=1; -update noar tt set b1='W7Z1RXA3ZTUBXYHNA' where id=1; -update noar ti set b1='W7Z1RXA3ZTUBXYHNA' where id=1; -update noar tt set v0='GZ1WBPP8PO7834SJKRADPAUBUJZ' where id=1; -update noar ti set v0='GZ1WBPP8PO7834SJKRADPAUBUJZ' where id=1; -update noar tt set b2='X9USN1N' where id=1; -update noar ti set b2='X9USN1N' where id=1; -update noar tt set v0='DK3OYIWLRKOX5CKZVFQ2TGE8AD' where id=2; -update noar ti set v0='DK3OYIWLRKOX5CKZVFQ2TGE8AD' where id=2; -update noar tt set b0='R5QHA0UTZKDO99Y2ETN0SQT9Q3' where id=2; -update noar ti set b0='R5QHA0UTZKDO99Y2ETN0SQT9Q3' where id=2; -update noar tt set v0='9OL0HBZOGLM13CZRIRDOJOZ1KU9' where id=2; -update noar ti set v0='9OL0HBZOGLM13CZRIRDOJOZ1KU9' where id=2; -update noar tt set b1='8Y33' where id=2; -update noar ti set b1='8Y33' where id=2; -update noar tt set v0='NK45G6F9KE5BE9C855NZ8S' where id=2; -update noar ti set v0='NK45G6F9KE5BE9C855NZ8S' where id=2; -update noar tt set b2='2IGA' where id=2; -update noar ti set b2='2IGA' where id=2; -update noar tt set v0='B67ULN' where id=3; -update noar ti set v0='B67ULN' where id=3; -update noar tt set b0='AF20HMLSZZFY' where id=3; -update noar ti set b0='AF20HMLSZZFY' where id=3; -update noar tt set v0='EL2LYNNMTGW6Z93QJ9B4C' where id=3; -update noar ti set v0='EL2LYNNMTGW6Z93QJ9B4C' where id=3; -update noar tt set b1='303BQITLZ9XIYWUU4L' where id=3; -update noar ti set b1='303BQITLZ9XIYWUU4L' where id=3; -update noar tt set v0='P9' where id=3; -update noar ti set v0='P9' where id=3; -update noar tt set b2='MO77HNMLFU1Q4SLEOTNH' where id=3; -update noar ti set b2='MO77HNMLFU1Q4SLEOTNH' where id=3; -update noar tt set v0='QSUWI3N' where id=4; -update noar ti set v0='QSUWI3N' where id=4; -update noar tt set b0='NROB647Y21JP6ZG8PS2H0PRA2E5FJJ0' where id=4; -update noar ti set b0='NROB647Y21JP6ZG8PS2H0PRA2E5FJJ0' where id=4; -update noar tt set v0='8J' where id=4; -update noar ti set v0='8J' where id=4; -update noar tt set b1='JBZHI9II7Y6YJE3QGWDOMAWW' where id=4; -update noar ti set b1='JBZHI9II7Y6YJE3QGWDOMAWW' where id=4; -update noar tt set v0='SXFNP56G12R0VV' where id=4; -update noar ti set v0='SXFNP56G12R0VV' where id=4; -update noar tt set b2='0J0FS6GRE5QLSG2CP2D93NNEH6AH' where id=4; -update noar ti set b2='0J0FS6GRE5QLSG2CP2D93NNEH6AH' where id=4; -update noar tt set v0='9PXH' where id=5; -update noar ti set v0='9PXH' where id=5; -update noar tt set b0='QZMT5GN9E' where id=5; -update noar ti set b0='QZMT5GN9E' where id=5; -update noar tt set v0='46G0EW2JW00712HPI' where id=5; -update noar ti set v0='46G0EW2JW00712HPI' where id=5; -update noar tt set b1='2TGWA4XA1LPIHAZ2819IK' where id=5; -update noar ti set b1='2TGWA4XA1LPIHAZ2819IK' where id=5; -update noar tt set v0='M2YNH389JT9C6D' where id=5; -update noar ti set v0='M2YNH389JT9C6D' where id=5; -update noar tt set b2='W' where id=5; -update noar ti set b2='W' where id=5; -update noar tt set v0='A8VH18SOSSTZC1I22OU8JZ6PTLEI3M' where id=6; -update noar ti set v0='A8VH18SOSSTZC1I22OU8JZ6PTLEI3M' where id=6; -update noar tt set b0='LQD9' where id=6; -update noar ti set b0='LQD9' where id=6; -update noar tt set v0='AZLK9SC06349JCTZHOZK1O0RM1ATWSDF' where id=6; -update noar ti set v0='AZLK9SC06349JCTZHOZK1O0RM1ATWSDF' where id=6; -update noar tt set b1='IK' where id=6; -update noar ti set b1='IK' where id=6; -update noar tt set v0='M4O' where id=6; -update noar ti set v0='M4O' where id=6; -update noar tt set b2='ORVTI5FU5YL0CR10PYNB1O' where id=6; -update noar ti set b2='ORVTI5FU5YL0CR10PYNB1O' where id=6; -update noar tt set v0='D8KM4C' where id=7; -update noar ti set v0='D8KM4C' where id=7; -update noar tt set b0='Q0LHBY3KXH' where id=7; -update noar ti set b0='Q0LHBY3KXH' where id=7; -update noar tt set v0='6GNDTR367H6K3N6J4SF1IK8Y' where id=7; -update noar ti set v0='6GNDTR367H6K3N6J4SF1IK8Y' where id=7; -update noar tt set b1='VNN6O2OFAPDZNMXFPZOJ' where id=7; -update noar ti set b1='VNN6O2OFAPDZNMXFPZOJ' where id=7; -update noar tt set v0='M66Z6ZUWVD8Z' where id=7; -update noar ti set v0='M66Z6ZUWVD8Z' where id=7; -update noar tt set b2='R1MUU63KRJCD0WVQ' where id=7; -update noar ti set b2='R1MUU63KRJCD0WVQ' where id=7; -update noar tt set v0='VW' where id=8; -update noar ti set v0='VW' where id=8; -update noar tt set b0='23EXKZTUHGSI2XCZJ6QC5' where id=8; -update noar ti set b0='23EXKZTUHGSI2XCZJ6QC5' where id=8; -update noar tt set v0='VM0IYDTL' where id=8; -update noar ti set v0='VM0IYDTL' where id=8; -update noar tt set b1='GHCI5XAPG83KZEFQDWCA7' where id=8; -update noar ti set b1='GHCI5XAPG83KZEFQDWCA7' where id=8; -update noar tt set v0='6W98FHZJ9VG' where id=8; -update noar ti set v0='6W98FHZJ9VG' where id=8; -update noar tt set b2='JKADCJ7TR1DYO4B9P4I' where id=8; -update noar ti set b2='JKADCJ7TR1DYO4B9P4I' where id=8; -update noar tt set v0='DJHM5O81KQ8' where id=9; -update noar ti set v0='DJHM5O81KQ8' where id=9; -update noar tt set b0='4UEFMIAVF93HL7PWE9FRJEWS3YNZTG' where id=9; -update noar ti set b0='4UEFMIAVF93HL7PWE9FRJEWS3YNZTG' where id=9; -update noar tt set v0='WZQ82KSAFPZXW08560P0NEQK6HHE5GSP' where id=9; -update noar ti set v0='WZQ82KSAFPZXW08560P0NEQK6HHE5GSP' where id=9; -update noar tt set b1='ZUY6KSNP80OXP4L4HZDY' where id=9; -update noar ti set b1='ZUY6KSNP80OXP4L4HZDY' where id=9; -update noar tt set v0='PLNEBEM31RDO2VK9QLN0I7MDZ' where id=9; -update noar ti set v0='PLNEBEM31RDO2VK9QLN0I7MDZ' where id=9; -update noar tt set b2='Q9I731ITHUFZM2INAGWF7' where id=9; -update noar ti set b2='Q9I731ITHUFZM2INAGWF7' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - f0 int not null, - v0 varchar(32) not null, - b0 blob not null, - b1 tinyblob not null, - b2 longblob not null -) engine=tokudb; -insert into tt values (1,0,'','','',''); -insert into tt values (2,0,'','','',''); -insert into tt values (3,0,'','','',''); -insert into tt values (4,0,'','','',''); -insert into tt values (5,0,'','','',''); -insert into tt values (6,0,'','','',''); -insert into tt values (7,0,'','','',''); -insert into tt values (8,0,'','','',''); -insert into tt values (9,0,'','','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='C42GOAGO' where id=1; -update noar ti set v0='C42GOAGO' where id=1; -update noar tt set b0='HN4WLXTY' where id=1; -update noar ti set b0='HN4WLXTY' where id=1; -update noar tt set v0='RH90QRFRIR83WY2C' where id=1; -update noar ti set v0='RH90QRFRIR83WY2C' where id=1; -update noar tt set b1='3B3T5GL6QCLKMR12FV7QJJLO7F' where id=1; -update noar ti set b1='3B3T5GL6QCLKMR12FV7QJJLO7F' where id=1; -update noar tt set v0='R02MJE6VKFBHN' where id=1; -update noar ti set v0='R02MJE6VKFBHN' where id=1; -update noar tt set b2='EVPJ1NGLYQ8MSPRRW0KEE9LQ' where id=1; -update noar ti set b2='EVPJ1NGLYQ8MSPRRW0KEE9LQ' where id=1; -update noar tt set v0='U33E21IEBDSBE26' where id=2; -update noar ti set v0='U33E21IEBDSBE26' where id=2; -update noar tt set b0='T7FN00HFEF7QE6ZNL4MLO9HIXYZHXB' where id=2; -update noar ti set b0='T7FN00HFEF7QE6ZNL4MLO9HIXYZHXB' where id=2; -update noar tt set v0='VFRBHOKTJTZ3FVZUYQI49LEO0KRZKA' where id=2; -update noar ti set v0='VFRBHOKTJTZ3FVZUYQI49LEO0KRZKA' where id=2; -update noar tt set b1='FE5WO0GZ24DV50CQUYH6ER' where id=2; -update noar ti set b1='FE5WO0GZ24DV50CQUYH6ER' where id=2; -update noar tt set v0='1D8H0' where id=2; -update noar ti set v0='1D8H0' where id=2; -update noar tt set b2='2RJ4C' where id=2; -update noar ti set b2='2RJ4C' where id=2; -update noar tt set v0='H6ZSWP2SY6LY7' where id=3; -update noar ti set v0='H6ZSWP2SY6LY7' where id=3; -update noar tt set b0='4L0WJMP0J' where id=3; -update noar ti set b0='4L0WJMP0J' where id=3; -update noar tt set v0='0782FAFVBIYP' where id=3; -update noar ti set v0='0782FAFVBIYP' where id=3; -update noar tt set b1='A' where id=3; -update noar ti set b1='A' where id=3; -update noar tt set v0='4SJ3C724XCY2OO6ZAKL2' where id=3; -update noar ti set v0='4SJ3C724XCY2OO6ZAKL2' where id=3; -update noar tt set b2='AI25R77LVHKWCJ5IT90OHAEGB0HFP' where id=3; -update noar ti set b2='AI25R77LVHKWCJ5IT90OHAEGB0HFP' where id=3; -update noar tt set v0='IP2PHUURA9TG2BYRSIXHN69VCR4' where id=4; -update noar ti set v0='IP2PHUURA9TG2BYRSIXHN69VCR4' where id=4; -update noar tt set b0='7ZKWYQM855KDNU0' where id=4; -update noar ti set b0='7ZKWYQM855KDNU0' where id=4; -update noar tt set v0='8TFKU3MM1UCNXO15' where id=4; -update noar ti set v0='8TFKU3MM1UCNXO15' where id=4; -update noar tt set b1='XOL13FKECZXFKXDTJVSN91MRZT' where id=4; -update noar ti set b1='XOL13FKECZXFKXDTJVSN91MRZT' where id=4; -update noar tt set v0='E' where id=4; -update noar ti set v0='E' where id=4; -update noar tt set b2='VC5PVJIQ0QZBPB4M602' where id=4; -update noar ti set b2='VC5PVJIQ0QZBPB4M602' where id=4; -update noar tt set v0='7IBXIAIYOMS0NEBK5QZSEHHP39J' where id=5; -update noar ti set v0='7IBXIAIYOMS0NEBK5QZSEHHP39J' where id=5; -update noar tt set b0='SSLR2AGMFPWOGIW15HQE' where id=5; -update noar ti set b0='SSLR2AGMFPWOGIW15HQE' where id=5; -update noar tt set v0='PG98BQTP' where id=5; -update noar ti set v0='PG98BQTP' where id=5; -update noar tt set b1='VJG5N8LIIMQ73NVRRU' where id=5; -update noar ti set b1='VJG5N8LIIMQ73NVRRU' where id=5; -update noar tt set v0='SCWX0YJFYQ9RJGWC13IG' where id=5; -update noar ti set v0='SCWX0YJFYQ9RJGWC13IG' where id=5; -update noar tt set b2='0REQYL6GMWRWVDU9GE' where id=5; -update noar ti set b2='0REQYL6GMWRWVDU9GE' where id=5; -update noar tt set v0='0ZOBV9YX' where id=6; -update noar ti set v0='0ZOBV9YX' where id=6; -update noar tt set b0='0MZZ2XV18L' where id=6; -update noar ti set b0='0MZZ2XV18L' where id=6; -update noar tt set v0='TGCUTH6145YS7' where id=6; -update noar ti set v0='TGCUTH6145YS7' where id=6; -update noar tt set b1='0YN7LFXSSES7FEHT4PFVV97Y0QU' where id=6; -update noar ti set b1='0YN7LFXSSES7FEHT4PFVV97Y0QU' where id=6; -update noar tt set v0='LYT0TI8TMD98EL3OCBNBJ774E6CAY51' where id=6; -update noar ti set v0='LYT0TI8TMD98EL3OCBNBJ774E6CAY51' where id=6; -update noar tt set b2='5HV9RBXVH1BPMRVU6ASD8J05ILORL' where id=6; -update noar ti set b2='5HV9RBXVH1BPMRVU6ASD8J05ILORL' where id=6; -update noar tt set v0='W26' where id=7; -update noar ti set v0='W26' where id=7; -update noar tt set b0='WUAVE5EXZ' where id=7; -update noar ti set b0='WUAVE5EXZ' where id=7; -update noar tt set v0='R14ATCQNG2MM8NAW2NM5PDSCOY' where id=7; -update noar ti set v0='R14ATCQNG2MM8NAW2NM5PDSCOY' where id=7; -update noar tt set b1='F08J9BB5D2C7708NZ05I5139R9N' where id=7; -update noar ti set b1='F08J9BB5D2C7708NZ05I5139R9N' where id=7; -update noar tt set v0='48NJAGD6GQMUK6VF3T8VJ' where id=7; -update noar ti set v0='48NJAGD6GQMUK6VF3T8VJ' where id=7; -update noar tt set b2='8SLDH' where id=7; -update noar ti set b2='8SLDH' where id=7; -update noar tt set v0='90WO80HNX4KHRGVLJ3T9' where id=8; -update noar ti set v0='90WO80HNX4KHRGVLJ3T9' where id=8; -update noar tt set b0='30XHF9SZ17MVI35B95ZVJRSLI' where id=8; -update noar ti set b0='30XHF9SZ17MVI35B95ZVJRSLI' where id=8; -update noar tt set v0='ZXOJZJIBRCUSDKQDDVR' where id=8; -update noar ti set v0='ZXOJZJIBRCUSDKQDDVR' where id=8; -update noar tt set b1='IV3M432DY0OK8ICM8P6BSPK' where id=8; -update noar ti set b1='IV3M432DY0OK8ICM8P6BSPK' where id=8; -update noar tt set v0='UXPRYKZRYDP0WQHCTDPBX9DJTD' where id=8; -update noar ti set v0='UXPRYKZRYDP0WQHCTDPBX9DJTD' where id=8; -update noar tt set b2='UMOL55ZDX9P3SMMKIYSFJRGC57C8YCL' where id=8; -update noar ti set b2='UMOL55ZDX9P3SMMKIYSFJRGC57C8YCL' where id=8; -update noar tt set v0='8Y0WO' where id=9; -update noar ti set v0='8Y0WO' where id=9; -update noar tt set b0='JEGB8G10FA01Y1NR2' where id=9; -update noar ti set b0='JEGB8G10FA01Y1NR2' where id=9; -update noar tt set v0='YF6E1B64NLQCTXNBNNXE6LVRLK62GKH8' where id=9; -update noar ti set v0='YF6E1B64NLQCTXNBNNXE6LVRLK62GKH8' where id=9; -update noar tt set b1='6UXFHBXAJ66' where id=9; -update noar ti set b1='6UXFHBXAJ66' where id=9; -update noar tt set v0='1R17PH0MGTJO0Y0IQ4EZW' where id=9; -update noar ti set v0='1R17PH0MGTJO0Y0IQ4EZW' where id=9; -update noar tt set b2='61MNMCQS6KD' where id=9; -update noar ti set b2='61MNMCQS6KD' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - f0 int not null, - v0 varchar(256) not null, - b0 blob not null, - b1 tinyblob not null, - b2 longblob not null -) engine=tokudb; -insert into tt values (1,0,'','','',''); -insert into tt values (2,0,'','','',''); -insert into tt values (3,0,'','','',''); -insert into tt values (4,0,'','','',''); -insert into tt values (5,0,'','','',''); -insert into tt values (6,0,'','','',''); -insert into tt values (7,0,'','','',''); -insert into tt values (8,0,'','','',''); -insert into tt values (9,0,'','','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='9RS28RMI8FV3XJ8ABG' where id=1; -update noar ti set v0='9RS28RMI8FV3XJ8ABG' where id=1; -update noar tt set b0='BZX6RZKXAZHRXW4FGY4L' where id=1; -update noar ti set b0='BZX6RZKXAZHRXW4FGY4L' where id=1; -update noar tt set v0='Q1B7M163EEEXWA7QH51PWXMF55FXM' where id=1; -update noar ti set v0='Q1B7M163EEEXWA7QH51PWXMF55FXM' where id=1; -update noar tt set b1='9LHC55YZ9508WHEGXP4LZ6IHMYKG6KTY' where id=1; -update noar ti set b1='9LHC55YZ9508WHEGXP4LZ6IHMYKG6KTY' where id=1; -update noar tt set v0='ODGERP7Z4RL2I8QNJ9FT5OQK' where id=1; -update noar ti set v0='ODGERP7Z4RL2I8QNJ9FT5OQK' where id=1; -update noar tt set b2='OKG' where id=1; -update noar ti set b2='OKG' where id=1; -update noar tt set v0='SXNPWX7JCVHVDTDGNHP' where id=2; -update noar ti set v0='SXNPWX7JCVHVDTDGNHP' where id=2; -update noar tt set b0='1' where id=2; -update noar ti set b0='1' where id=2; -update noar tt set v0='9' where id=2; -update noar ti set v0='9' where id=2; -update noar tt set b1='PDI0PNQTRKI1T56O8FBQAPZU9B' where id=2; -update noar ti set b1='PDI0PNQTRKI1T56O8FBQAPZU9B' where id=2; -update noar tt set v0='G2KKSDJN70FFTWQ3IQIPD6G8HZYGX' where id=2; -update noar ti set v0='G2KKSDJN70FFTWQ3IQIPD6G8HZYGX' where id=2; -update noar tt set b2='3DYCLBKT780I4D7GTQ5EPS2ZO5G7' where id=2; -update noar ti set b2='3DYCLBKT780I4D7GTQ5EPS2ZO5G7' where id=2; -update noar tt set v0='SCZOV67Y12P3H05HLPXTQWU2V1XC' where id=3; -update noar ti set v0='SCZOV67Y12P3H05HLPXTQWU2V1XC' where id=3; -update noar tt set b0='VFSCFM6UDB20W3C4C3X3H' where id=3; -update noar ti set b0='VFSCFM6UDB20W3C4C3X3H' where id=3; -update noar tt set v0='ZKS8CC0X7569A0IZ4AAKVGTIH3W2' where id=3; -update noar ti set v0='ZKS8CC0X7569A0IZ4AAKVGTIH3W2' where id=3; -update noar tt set b1='R30VRG7J5C4' where id=3; -update noar ti set b1='R30VRG7J5C4' where id=3; -update noar tt set v0='XSKMNRK7CDE8L7TUMG4ZB4IJQ' where id=3; -update noar ti set v0='XSKMNRK7CDE8L7TUMG4ZB4IJQ' where id=3; -update noar tt set b2='CN1IU44OUU4' where id=3; -update noar ti set b2='CN1IU44OUU4' where id=3; -update noar tt set v0='RCXYR8IC6XO9FMKFSHAXGSO6GRU' where id=4; -update noar ti set v0='RCXYR8IC6XO9FMKFSHAXGSO6GRU' where id=4; -update noar tt set b0='QUPEP6FCRTGAB5J2S7STT6K5EP4LRF' where id=4; -update noar ti set b0='QUPEP6FCRTGAB5J2S7STT6K5EP4LRF' where id=4; -update noar tt set v0='JHT9YYT07VE105BB58HCT' where id=4; -update noar ti set v0='JHT9YYT07VE105BB58HCT' where id=4; -update noar tt set b1='8RIYAFXTRB6MPG4ASFCHSWO1E6' where id=4; -update noar ti set b1='8RIYAFXTRB6MPG4ASFCHSWO1E6' where id=4; -update noar tt set v0='YM4WEQ19IMB92L876C6I0M82EGICZ' where id=4; -update noar ti set v0='YM4WEQ19IMB92L876C6I0M82EGICZ' where id=4; -update noar tt set b2='YZ4FUSYJPAXNS0D5SQKHWDBOU8' where id=4; -update noar ti set b2='YZ4FUSYJPAXNS0D5SQKHWDBOU8' where id=4; -update noar tt set v0='3CMWWGZ814VCI1FNGENS14CG' where id=5; -update noar ti set v0='3CMWWGZ814VCI1FNGENS14CG' where id=5; -update noar tt set b0='OH' where id=5; -update noar ti set b0='OH' where id=5; -update noar tt set v0='92LZBFM4CX90FKE4' where id=5; -update noar ti set v0='92LZBFM4CX90FKE4' where id=5; -update noar tt set b1='KX6' where id=5; -update noar ti set b1='KX6' where id=5; -update noar tt set v0='FVE272YWOB4B9V5WQ4E' where id=5; -update noar ti set v0='FVE272YWOB4B9V5WQ4E' where id=5; -update noar tt set b2='0OE' where id=5; -update noar ti set b2='0OE' where id=5; -update noar tt set v0='78IGGTMKJ' where id=6; -update noar ti set v0='78IGGTMKJ' where id=6; -update noar tt set b0='K05EWZ5D8FH' where id=6; -update noar ti set b0='K05EWZ5D8FH' where id=6; -update noar tt set v0='06YMKXNIV2V267E4STPLV5' where id=6; -update noar ti set v0='06YMKXNIV2V267E4STPLV5' where id=6; -update noar tt set b1='J1P507ATNGWP173LGF6B9MDVB0U6B0VC' where id=6; -update noar ti set b1='J1P507ATNGWP173LGF6B9MDVB0U6B0VC' where id=6; -update noar tt set v0='UUMKNRYHYIA0QKROO9Y238S6I' where id=6; -update noar ti set v0='UUMKNRYHYIA0QKROO9Y238S6I' where id=6; -update noar tt set b2='98AQGQKPWEGMCZQ4LZ' where id=6; -update noar ti set b2='98AQGQKPWEGMCZQ4LZ' where id=6; -update noar tt set v0='BGKM5YOE222Z4IN0PZPKZHLBO3GT0V76' where id=7; -update noar ti set v0='BGKM5YOE222Z4IN0PZPKZHLBO3GT0V76' where id=7; -update noar tt set b0='SCP57762NEZA2W16RJV10IX7QG29ME' where id=7; -update noar ti set b0='SCP57762NEZA2W16RJV10IX7QG29ME' where id=7; -update noar tt set v0='VJKJ' where id=7; -update noar ti set v0='VJKJ' where id=7; -update noar tt set b1='0FHCBD20XLCPYL' where id=7; -update noar ti set b1='0FHCBD20XLCPYL' where id=7; -update noar tt set v0='NQCJIQ5C18AFPZCJM5Z' where id=7; -update noar ti set v0='NQCJIQ5C18AFPZCJM5Z' where id=7; -update noar tt set b2='0AGMRCKUS4JU7BPIM5BB83ERIRQLLT' where id=7; -update noar ti set b2='0AGMRCKUS4JU7BPIM5BB83ERIRQLLT' where id=7; -update noar tt set v0='WCCB23VS' where id=8; -update noar ti set v0='WCCB23VS' where id=8; -update noar tt set b0='8FEI66J3P5MM7LAVVZCTKHU' where id=8; -update noar ti set b0='8FEI66J3P5MM7LAVVZCTKHU' where id=8; -update noar tt set v0='LSJPD3FMY6QU4TIQW' where id=8; -update noar ti set v0='LSJPD3FMY6QU4TIQW' where id=8; -update noar tt set b1='E84TBAO4LBA15TKDSUXD8' where id=8; -update noar ti set b1='E84TBAO4LBA15TKDSUXD8' where id=8; -update noar tt set v0='SJQ2FOI81BZY8DF2Y4S' where id=8; -update noar ti set v0='SJQ2FOI81BZY8DF2Y4S' where id=8; -update noar tt set b2='Q4AWTOP19YC1RF2' where id=8; -update noar ti set b2='Q4AWTOP19YC1RF2' where id=8; -update noar tt set v0='F2CMRQXJ7L2OBOARXJJS6FJ7K' where id=9; -update noar ti set v0='F2CMRQXJ7L2OBOARXJJS6FJ7K' where id=9; -update noar tt set b0='UXQ72ZJ1OL3D83U1J1TX30UB' where id=9; -update noar ti set b0='UXQ72ZJ1OL3D83U1J1TX30UB' where id=9; -update noar tt set v0='7D4N1BVA5UMHJLC7Y5ELXUBONSBEV3CI' where id=9; -update noar ti set v0='7D4N1BVA5UMHJLC7Y5ELXUBONSBEV3CI' where id=9; -update noar tt set b1='K7A253B9V9B' where id=9; -update noar ti set b1='K7A253B9V9B' where id=9; -update noar tt set v0='SWHHS1X89YUT4P' where id=9; -update noar ti set v0='SWHHS1X89YUT4P' where id=9; -update noar tt set b2='5LDJHY07T' where id=9; -update noar ti set b2='5LDJHY07T' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - f0 int null, - v0 varchar(32) null, - b0 blob null, - b1 blob null, - b2 tinyblob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='FTSNLX48FPC3Z59GRC00S3IWI8FOW8' where id=1; -update noar ti set v0='FTSNLX48FPC3Z59GRC00S3IWI8FOW8' where id=1; -update noar tt set b0='CBUDFPIL6G97OCZCTSFDPHLY' where id=1; -update noar ti set b0='CBUDFPIL6G97OCZCTSFDPHLY' where id=1; -update noar tt set v0='8VMHYNNDLEIF65WOEO2T' where id=1; -update noar ti set v0='8VMHYNNDLEIF65WOEO2T' where id=1; -update noar tt set b1='NIO9XQ' where id=1; -update noar ti set b1='NIO9XQ' where id=1; -update noar tt set v0='2WOFGZ7JB97UO1GPBYWEDWUYLE97A' where id=1; -update noar ti set v0='2WOFGZ7JB97UO1GPBYWEDWUYLE97A' where id=1; -update noar tt set b2='MX2CD2IYFNDUS5QL3SY1CQ5ZRWJ1BX' where id=1; -update noar ti set b2='MX2CD2IYFNDUS5QL3SY1CQ5ZRWJ1BX' where id=1; -update noar tt set v0='TWYXVR' where id=2; -update noar ti set v0='TWYXVR' where id=2; -update noar tt set b0='3DW7WN0SXKSZIMSVV' where id=2; -update noar ti set b0='3DW7WN0SXKSZIMSVV' where id=2; -update noar tt set v0='WOPYJ5ZTU7GBTV17' where id=2; -update noar ti set v0='WOPYJ5ZTU7GBTV17' where id=2; -update noar tt set b1='73L1459XU3O' where id=2; -update noar ti set b1='73L1459XU3O' where id=2; -update noar tt set v0='5A6EB' where id=2; -update noar ti set v0='5A6EB' where id=2; -update noar tt set b2='KNW8GW9MO644GJXEZVZ66NUO0D' where id=2; -update noar ti set b2='KNW8GW9MO644GJXEZVZ66NUO0D' where id=2; -update noar tt set v0='9X' where id=3; -update noar ti set v0='9X' where id=3; -update noar tt set b0='BR2YZKECOQ1DQ3U4JQSU0H40XGD89HT4' where id=3; -update noar ti set b0='BR2YZKECOQ1DQ3U4JQSU0H40XGD89HT4' where id=3; -update noar tt set v0='E317U' where id=3; -update noar ti set v0='E317U' where id=3; -update noar tt set b1='3SUXST' where id=3; -update noar ti set b1='3SUXST' where id=3; -update noar tt set v0='5JRFR7I9' where id=3; -update noar ti set v0='5JRFR7I9' where id=3; -update noar tt set b2='D8U6CDS' where id=3; -update noar ti set b2='D8U6CDS' where id=3; -update noar tt set v0='ZLTAFG8XKFQXLYXG4UXEFUGCP0L' where id=4; -update noar ti set v0='ZLTAFG8XKFQXLYXG4UXEFUGCP0L' where id=4; -update noar tt set b0='VX1YO3X13EDJX8USCGL9C8' where id=4; -update noar ti set b0='VX1YO3X13EDJX8USCGL9C8' where id=4; -update noar tt set v0='GWWGOFU9BJYVAK2JI9WKB1ODOJ0W5Y1' where id=4; -update noar ti set v0='GWWGOFU9BJYVAK2JI9WKB1ODOJ0W5Y1' where id=4; -update noar tt set b1='VKD6KSPB' where id=4; -update noar ti set b1='VKD6KSPB' where id=4; -update noar tt set v0='8YEQTSKBU2FWTO' where id=4; -update noar ti set v0='8YEQTSKBU2FWTO' where id=4; -update noar tt set b2='BGBHO7HM8U4F1OSBNASQDM2GIKLK3A0U' where id=4; -update noar ti set b2='BGBHO7HM8U4F1OSBNASQDM2GIKLK3A0U' where id=4; -update noar tt set v0='ALG' where id=5; -update noar ti set v0='ALG' where id=5; -update noar tt set b0='F4X' where id=5; -update noar ti set b0='F4X' where id=5; -update noar tt set v0='HGRTD2CA7KC' where id=5; -update noar ti set v0='HGRTD2CA7KC' where id=5; -update noar tt set b1='5M0ML18KQBLF35WRC' where id=5; -update noar ti set b1='5M0ML18KQBLF35WRC' where id=5; -update noar tt set v0='P5RMTMLEQEDBKCQKVP2C20' where id=5; -update noar ti set v0='P5RMTMLEQEDBKCQKVP2C20' where id=5; -update noar tt set b2='HE' where id=5; -update noar ti set b2='HE' where id=5; -update noar tt set v0='3H2WY7SZ65L' where id=6; -update noar ti set v0='3H2WY7SZ65L' where id=6; -update noar tt set b0='IT0M7CAWNCAKWVWOZSM6DYHH3P' where id=6; -update noar ti set b0='IT0M7CAWNCAKWVWOZSM6DYHH3P' where id=6; -update noar tt set v0='RB5HMOK29MILNHN2OSEYLUPPP4H' where id=6; -update noar ti set v0='RB5HMOK29MILNHN2OSEYLUPPP4H' where id=6; -update noar tt set b1='ZDXD5Y5U0LSXDM39KPJ62BSF0MI' where id=6; -update noar ti set b1='ZDXD5Y5U0LSXDM39KPJ62BSF0MI' where id=6; -update noar tt set v0='COT1BBYWGSTDATDQ4F1' where id=6; -update noar ti set v0='COT1BBYWGSTDATDQ4F1' where id=6; -update noar tt set b2='3IAST7R5MWTOR44ZGIF' where id=6; -update noar ti set b2='3IAST7R5MWTOR44ZGIF' where id=6; -update noar tt set v0='M' where id=7; -update noar ti set v0='M' where id=7; -update noar tt set b0='9D' where id=7; -update noar ti set b0='9D' where id=7; -update noar tt set v0='YL2DP77HVMK26RKN' where id=7; -update noar ti set v0='YL2DP77HVMK26RKN' where id=7; -update noar tt set b1='LG4KK022RYACFBWG3ZQH72Y7OG' where id=7; -update noar ti set b1='LG4KK022RYACFBWG3ZQH72Y7OG' where id=7; -update noar tt set v0='U6PVA70E7LPNVWS7FCZDWBDBLGEO' where id=7; -update noar ti set v0='U6PVA70E7LPNVWS7FCZDWBDBLGEO' where id=7; -update noar tt set b2='DXC34V' where id=7; -update noar ti set b2='DXC34V' where id=7; -update noar tt set v0='4NWU5HFSQBMVL0K54XJV4' where id=8; -update noar ti set v0='4NWU5HFSQBMVL0K54XJV4' where id=8; -update noar tt set b0='LXCZAUC2L4RM13NA70PW' where id=8; -update noar ti set b0='LXCZAUC2L4RM13NA70PW' where id=8; -update noar tt set v0='4PRBAPDWA' where id=8; -update noar ti set v0='4PRBAPDWA' where id=8; -update noar tt set b1='UMGIE5XK7MOTSYHEHHZTGJ1' where id=8; -update noar ti set b1='UMGIE5XK7MOTSYHEHHZTGJ1' where id=8; -update noar tt set v0='LFZX38DXDO0NIT' where id=8; -update noar ti set v0='LFZX38DXDO0NIT' where id=8; -update noar tt set b2='M3K4TLSYY5XJKOU6VAQSD55C' where id=8; -update noar ti set b2='M3K4TLSYY5XJKOU6VAQSD55C' where id=8; -update noar tt set v0='UXB1LCVR0U045R8Q1PXHUZKCZMPEJO' where id=9; -update noar ti set v0='UXB1LCVR0U045R8Q1PXHUZKCZMPEJO' where id=9; -update noar tt set b0='BY' where id=9; -update noar ti set b0='BY' where id=9; -update noar tt set v0='B1NMD9UAFP7JVAIEDD' where id=9; -update noar ti set v0='B1NMD9UAFP7JVAIEDD' where id=9; -update noar tt set b1='143KXIY2AV73KDRZP76CD57' where id=9; -update noar ti set b1='143KXIY2AV73KDRZP76CD57' where id=9; -update noar tt set v0='O6YTPMGO8C8T2ZJ6TL4WK3KV0HSFQ' where id=9; -update noar ti set v0='O6YTPMGO8C8T2ZJ6TL4WK3KV0HSFQ' where id=9; -update noar tt set b2='Q6YARMIVCGLZ44BFH9' where id=9; -update noar ti set b2='Q6YARMIVCGLZ44BFH9' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - f0 int null, - v0 varchar(256) null, - b0 blob null, - b1 blob null, - b2 tinyblob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='9EP71TJU73HKT5T30J2ZS8G2YXNAF' where id=1; -update noar ti set v0='9EP71TJU73HKT5T30J2ZS8G2YXNAF' where id=1; -update noar tt set b0='OX4N3QZ' where id=1; -update noar ti set b0='OX4N3QZ' where id=1; -update noar tt set v0='GR5GL4A1P9HOJSSI72XFN7Y43Z' where id=1; -update noar ti set v0='GR5GL4A1P9HOJSSI72XFN7Y43Z' where id=1; -update noar tt set b1='61D7POE3DH44KZRLFBXHX1P55B317EPX' where id=1; -update noar ti set b1='61D7POE3DH44KZRLFBXHX1P55B317EPX' where id=1; -update noar tt set v0='KUOSAQTI4ABBG2G9XCAB0FVAAGQ' where id=1; -update noar ti set v0='KUOSAQTI4ABBG2G9XCAB0FVAAGQ' where id=1; -update noar tt set b2='ORBA85WI0PUKLF00D3Q' where id=1; -update noar ti set b2='ORBA85WI0PUKLF00D3Q' where id=1; -update noar tt set v0='2XJSKST1WXO1Y' where id=2; -update noar ti set v0='2XJSKST1WXO1Y' where id=2; -update noar tt set b0='1CCD5E' where id=2; -update noar ti set b0='1CCD5E' where id=2; -update noar tt set v0='GFRXM5Q' where id=2; -update noar ti set v0='GFRXM5Q' where id=2; -update noar tt set b1='NL6U52NRV8' where id=2; -update noar ti set b1='NL6U52NRV8' where id=2; -update noar tt set v0='Q43S6HH4MNGO2VHWO9YR' where id=2; -update noar ti set v0='Q43S6HH4MNGO2VHWO9YR' where id=2; -update noar tt set b2='7EQWXQFWAZBKN' where id=2; -update noar ti set b2='7EQWXQFWAZBKN' where id=2; -update noar tt set v0='79RFKXOTL' where id=3; -update noar ti set v0='79RFKXOTL' where id=3; -update noar tt set b0='WTIMW24TP7I' where id=3; -update noar ti set b0='WTIMW24TP7I' where id=3; -update noar tt set v0='ELXQDU7CJAATSGK060LTLYQ' where id=3; -update noar ti set v0='ELXQDU7CJAATSGK060LTLYQ' where id=3; -update noar tt set b1='8SPYN6TFKGZ7ZA9XJ' where id=3; -update noar ti set b1='8SPYN6TFKGZ7ZA9XJ' where id=3; -update noar tt set v0='47ZAOIW5T4A42WJA4KISBUA5PL' where id=3; -update noar ti set v0='47ZAOIW5T4A42WJA4KISBUA5PL' where id=3; -update noar tt set b2='5GK3R97EGZKGSZFVA2N' where id=3; -update noar ti set b2='5GK3R97EGZKGSZFVA2N' where id=3; -update noar tt set v0='3OFTVEMAJFPFD84' where id=4; -update noar ti set v0='3OFTVEMAJFPFD84' where id=4; -update noar tt set b0='LD8XBJNMTKYX05' where id=4; -update noar ti set b0='LD8XBJNMTKYX05' where id=4; -update noar tt set v0='9UEGUHFUI4XGU255JCPSJW1VHDMWA' where id=4; -update noar ti set v0='9UEGUHFUI4XGU255JCPSJW1VHDMWA' where id=4; -update noar tt set b1='72U93SWVMQI6Q8K5HKBVB3LSYZMJU9F' where id=4; -update noar ti set b1='72U93SWVMQI6Q8K5HKBVB3LSYZMJU9F' where id=4; -update noar tt set v0='KNM88YL' where id=4; -update noar ti set v0='KNM88YL' where id=4; -update noar tt set b2='OG5IMCGVAXVF0E338CVH3JFGLQ' where id=4; -update noar ti set b2='OG5IMCGVAXVF0E338CVH3JFGLQ' where id=4; -update noar tt set v0='BF3LIFMQS7TD5MQWI7AXQ' where id=5; -update noar ti set v0='BF3LIFMQS7TD5MQWI7AXQ' where id=5; -update noar tt set b0='KT475U6FTQ3XR' where id=5; -update noar ti set b0='KT475U6FTQ3XR' where id=5; -update noar tt set v0='LVAY6YGCJJ0' where id=5; -update noar ti set v0='LVAY6YGCJJ0' where id=5; -update noar tt set b1='3JB476R7U1DUP97R' where id=5; -update noar ti set b1='3JB476R7U1DUP97R' where id=5; -update noar tt set v0='R3CB1GDQKTC6YSE0OSRH12QGJ4HD' where id=5; -update noar ti set v0='R3CB1GDQKTC6YSE0OSRH12QGJ4HD' where id=5; -update noar tt set b2='P4YX' where id=5; -update noar ti set b2='P4YX' where id=5; -update noar tt set v0='51VF6SUAHRQXG4HNUYFL1' where id=6; -update noar ti set v0='51VF6SUAHRQXG4HNUYFL1' where id=6; -update noar tt set b0='MBCKD91X' where id=6; -update noar ti set b0='MBCKD91X' where id=6; -update noar tt set v0='03PEHCGE6UVUI4905IXSR' where id=6; -update noar ti set v0='03PEHCGE6UVUI4905IXSR' where id=6; -update noar tt set b1='R59' where id=6; -update noar ti set b1='R59' where id=6; -update noar tt set v0='EYRVSM7TRBGC' where id=6; -update noar ti set v0='EYRVSM7TRBGC' where id=6; -update noar tt set b2='21FMKLL3QGXMHM3FDG' where id=6; -update noar ti set b2='21FMKLL3QGXMHM3FDG' where id=6; -update noar tt set v0='7AL01Y16PL8XI66ZQH3GKND42QF357' where id=7; -update noar ti set v0='7AL01Y16PL8XI66ZQH3GKND42QF357' where id=7; -update noar tt set b0='4CN7Y4WFF5JHJFCTJHLQ' where id=7; -update noar ti set b0='4CN7Y4WFF5JHJFCTJHLQ' where id=7; -update noar tt set v0='H99GE2OPVIJKUCLD' where id=7; -update noar ti set v0='H99GE2OPVIJKUCLD' where id=7; -update noar tt set b1='1NRK0WK98' where id=7; -update noar ti set b1='1NRK0WK98' where id=7; -update noar tt set v0='UWZTGH2XOT45Q0IUYSCY1' where id=7; -update noar ti set v0='UWZTGH2XOT45Q0IUYSCY1' where id=7; -update noar tt set b2='G4GZ4PBOYK7FS9O181I8F1A' where id=7; -update noar ti set b2='G4GZ4PBOYK7FS9O181I8F1A' where id=7; -update noar tt set v0='89MMK4CRYCK' where id=8; -update noar ti set v0='89MMK4CRYCK' where id=8; -update noar tt set b0='PTN65PFD87EFYCBME7YY0DR7Y2C8F0' where id=8; -update noar ti set b0='PTN65PFD87EFYCBME7YY0DR7Y2C8F0' where id=8; -update noar tt set v0='TZSXY1' where id=8; -update noar ti set v0='TZSXY1' where id=8; -update noar tt set b1='3' where id=8; -update noar ti set b1='3' where id=8; -update noar tt set v0='BTA4UXKGGNH0P54DA5SW2629OTM3' where id=8; -update noar ti set v0='BTA4UXKGGNH0P54DA5SW2629OTM3' where id=8; -update noar tt set b2='MUB1EKPITPMWVOH1QQZ3SR4D' where id=8; -update noar ti set b2='MUB1EKPITPMWVOH1QQZ3SR4D' where id=8; -update noar tt set v0='XP1Y3BIE4L0E' where id=9; -update noar ti set v0='XP1Y3BIE4L0E' where id=9; -update noar tt set b0='UUAHHACS7KK1RVSNWGX0XOJW03N' where id=9; -update noar ti set b0='UUAHHACS7KK1RVSNWGX0XOJW03N' where id=9; -update noar tt set v0='K9H6PGY9HJ' where id=9; -update noar ti set v0='K9H6PGY9HJ' where id=9; -update noar tt set b1='KDHDJTCIV25LY6OW6D4KEXSC' where id=9; -update noar ti set b1='KDHDJTCIV25LY6OW6D4KEXSC' where id=9; -update noar tt set v0='4DXN4LW' where id=9; -update noar ti set v0='4DXN4LW' where id=9; -update noar tt set b2='09IPJ7O62MUZINSQW3X4' where id=9; -update noar ti set b2='09IPJ7O62MUZINSQW3X4' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - f0 int not null, - v0 varchar(32) not null, - b0 blob not null, - b1 blob not null, - b2 tinyblob not null -) engine=tokudb; -insert into tt values (1,0,'','','',''); -insert into tt values (2,0,'','','',''); -insert into tt values (3,0,'','','',''); -insert into tt values (4,0,'','','',''); -insert into tt values (5,0,'','','',''); -insert into tt values (6,0,'','','',''); -insert into tt values (7,0,'','','',''); -insert into tt values (8,0,'','','',''); -insert into tt values (9,0,'','','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='YD' where id=1; -update noar ti set v0='YD' where id=1; -update noar tt set b0='JKKP2PL7WTT4A' where id=1; -update noar ti set b0='JKKP2PL7WTT4A' where id=1; -update noar tt set v0='NDSE90YJG2N2Y' where id=1; -update noar ti set v0='NDSE90YJG2N2Y' where id=1; -update noar tt set b1='EDSVO' where id=1; -update noar ti set b1='EDSVO' where id=1; -update noar tt set v0='LC3RVYFJGOXYE7K' where id=1; -update noar ti set v0='LC3RVYFJGOXYE7K' where id=1; -update noar tt set b2='TD2T' where id=1; -update noar ti set b2='TD2T' where id=1; -update noar tt set v0='NZ8' where id=2; -update noar ti set v0='NZ8' where id=2; -update noar tt set b0='OJ' where id=2; -update noar ti set b0='OJ' where id=2; -update noar tt set v0='KL8573' where id=2; -update noar ti set v0='KL8573' where id=2; -update noar tt set b1='1KF8ONUVJ9QGHESI4F3CH' where id=2; -update noar ti set b1='1KF8ONUVJ9QGHESI4F3CH' where id=2; -update noar tt set v0='LQLXIURUB45BFZUL4L103HQ29VCF2H' where id=2; -update noar ti set v0='LQLXIURUB45BFZUL4L103HQ29VCF2H' where id=2; -update noar tt set b2='0WSUSP6VZTDXP3' where id=2; -update noar ti set b2='0WSUSP6VZTDXP3' where id=2; -update noar tt set v0='6104383MNNBXXQ7G4D4BA5DJ2H' where id=3; -update noar ti set v0='6104383MNNBXXQ7G4D4BA5DJ2H' where id=3; -update noar tt set b0='R3SKHJ0K91VB8BVCDTOU' where id=3; -update noar ti set b0='R3SKHJ0K91VB8BVCDTOU' where id=3; -update noar tt set v0='ZMRU4860W2' where id=3; -update noar ti set v0='ZMRU4860W2' where id=3; -update noar tt set b1='9H0J8S9NNQTVAMWMBV1D' where id=3; -update noar ti set b1='9H0J8S9NNQTVAMWMBV1D' where id=3; -update noar tt set v0='8H' where id=3; -update noar ti set v0='8H' where id=3; -update noar tt set b2='B6BA0OQTNZFBS' where id=3; -update noar ti set b2='B6BA0OQTNZFBS' where id=3; -update noar tt set v0='WVW7D0CXPQKP0NSIECODW5FF16J' where id=4; -update noar ti set v0='WVW7D0CXPQKP0NSIECODW5FF16J' where id=4; -update noar tt set b0='BG9JZ5NLGWSCLR0MT0ORZ1W' where id=4; -update noar ti set b0='BG9JZ5NLGWSCLR0MT0ORZ1W' where id=4; -update noar tt set v0='8D2CUBQKV4' where id=4; -update noar ti set v0='8D2CUBQKV4' where id=4; -update noar tt set b1='KDWYWWWJF8KL' where id=4; -update noar ti set b1='KDWYWWWJF8KL' where id=4; -update noar tt set v0='NTJU5M' where id=4; -update noar ti set v0='NTJU5M' where id=4; -update noar tt set b2='8IKTEHCHCW' where id=4; -update noar ti set b2='8IKTEHCHCW' where id=4; -update noar tt set v0='KRMXQUNAHZE' where id=5; -update noar ti set v0='KRMXQUNAHZE' where id=5; -update noar tt set b0='SD9CD19UAT' where id=5; -update noar ti set b0='SD9CD19UAT' where id=5; -update noar tt set v0='5G77M' where id=5; -update noar ti set v0='5G77M' where id=5; -update noar tt set b1='2SUORZ4NKGK3B4R325XRSRNFTXWU' where id=5; -update noar ti set b1='2SUORZ4NKGK3B4R325XRSRNFTXWU' where id=5; -update noar tt set v0='YNO0RVZ6XRE3' where id=5; -update noar ti set v0='YNO0RVZ6XRE3' where id=5; -update noar tt set b2='X' where id=5; -update noar ti set b2='X' where id=5; -update noar tt set v0='1TYAGCJUWZ1K5IYLZP65SVKYQ' where id=6; -update noar ti set v0='1TYAGCJUWZ1K5IYLZP65SVKYQ' where id=6; -update noar tt set b0='I1BBXO0FDMCF2SQA4H8N00W73SY' where id=6; -update noar ti set b0='I1BBXO0FDMCF2SQA4H8N00W73SY' where id=6; -update noar tt set v0='8E6VZGXF31M' where id=6; -update noar ti set v0='8E6VZGXF31M' where id=6; -update noar tt set b1='AGQT35MHC54PRCUZNV4LS' where id=6; -update noar ti set b1='AGQT35MHC54PRCUZNV4LS' where id=6; -update noar tt set v0='UCHUW3EWIJ' where id=6; -update noar ti set v0='UCHUW3EWIJ' where id=6; -update noar tt set b2='VX5R1OM5FESHQVLQC9JFBRYMFP0ZH3XB' where id=6; -update noar ti set b2='VX5R1OM5FESHQVLQC9JFBRYMFP0ZH3XB' where id=6; -update noar tt set v0='2C0F' where id=7; -update noar ti set v0='2C0F' where id=7; -update noar tt set b0='TH5W7UZ7MTRT52YI1AF0534C1Z7AF' where id=7; -update noar ti set b0='TH5W7UZ7MTRT52YI1AF0534C1Z7AF' where id=7; -update noar tt set v0='VFAWG' where id=7; -update noar ti set v0='VFAWG' where id=7; -update noar tt set b1='P0RXNBWKZHA' where id=7; -update noar ti set b1='P0RXNBWKZHA' where id=7; -update noar tt set v0='2NATG' where id=7; -update noar ti set v0='2NATG' where id=7; -update noar tt set b2='GPCJ2ZBQO1VCB3R' where id=7; -update noar ti set b2='GPCJ2ZBQO1VCB3R' where id=7; -update noar tt set v0='6ZXMM5T' where id=8; -update noar ti set v0='6ZXMM5T' where id=8; -update noar tt set b0='BDK4CIHZ7OD9F7CTV' where id=8; -update noar ti set b0='BDK4CIHZ7OD9F7CTV' where id=8; -update noar tt set v0='9W' where id=8; -update noar ti set v0='9W' where id=8; -update noar tt set b1='PIJIKVA51RYQKB' where id=8; -update noar ti set b1='PIJIKVA51RYQKB' where id=8; -update noar tt set v0='SB9J9HMBEF10UKA' where id=8; -update noar ti set v0='SB9J9HMBEF10UKA' where id=8; -update noar tt set b2='VTRFSXTBYR73UBHUGE1DSPTBAI8HQJ' where id=8; -update noar ti set b2='VTRFSXTBYR73UBHUGE1DSPTBAI8HQJ' where id=8; -update noar tt set v0='SF3ZDLRX0KQX2IXFNRPTH' where id=9; -update noar ti set v0='SF3ZDLRX0KQX2IXFNRPTH' where id=9; -update noar tt set b0='BB0ONZFAF2' where id=9; -update noar ti set b0='BB0ONZFAF2' where id=9; -update noar tt set v0='X9ZIMD9MVPQW' where id=9; -update noar ti set v0='X9ZIMD9MVPQW' where id=9; -update noar tt set b1='B3H7OLTI' where id=9; -update noar ti set b1='B3H7OLTI' where id=9; -update noar tt set v0='WF0SLXFB397F' where id=9; -update noar ti set v0='WF0SLXFB397F' where id=9; -update noar tt set b2='J5TEJYU3M2I5K1V0CLLRN9B' where id=9; -update noar ti set b2='J5TEJYU3M2I5K1V0CLLRN9B' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - f0 int not null, - v0 varchar(256) not null, - b0 blob not null, - b1 blob not null, - b2 tinyblob not null -) engine=tokudb; -insert into tt values (1,0,'','','',''); -insert into tt values (2,0,'','','',''); -insert into tt values (3,0,'','','',''); -insert into tt values (4,0,'','','',''); -insert into tt values (5,0,'','','',''); -insert into tt values (6,0,'','','',''); -insert into tt values (7,0,'','','',''); -insert into tt values (8,0,'','','',''); -insert into tt values (9,0,'','','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='7ZY2N10WJFL3W7O5QE4P7G89UUHHPY' where id=1; -update noar ti set v0='7ZY2N10WJFL3W7O5QE4P7G89UUHHPY' where id=1; -update noar tt set b0='DXU33E2O7DYWD7WWW7965P3V394UH7V' where id=1; -update noar ti set b0='DXU33E2O7DYWD7WWW7965P3V394UH7V' where id=1; -update noar tt set v0='F9IYKKFYVHOQDHB' where id=1; -update noar ti set v0='F9IYKKFYVHOQDHB' where id=1; -update noar tt set b1='FGT40NAVGIG8EEFXD' where id=1; -update noar ti set b1='FGT40NAVGIG8EEFXD' where id=1; -update noar tt set v0='4X9NAY2Q4' where id=1; -update noar ti set v0='4X9NAY2Q4' where id=1; -update noar tt set b2='7TOHMB7' where id=1; -update noar ti set b2='7TOHMB7' where id=1; -update noar tt set v0='RM2O6DRPX3FSKOL031DGXYELDHM' where id=2; -update noar ti set v0='RM2O6DRPX3FSKOL031DGXYELDHM' where id=2; -update noar tt set b0='JZ11GJZDIC8VM24SR6IUJZ0WZO11' where id=2; -update noar ti set b0='JZ11GJZDIC8VM24SR6IUJZ0WZO11' where id=2; -update noar tt set v0='3UDTOQ5Y374TFOPIJIRZNV' where id=2; -update noar ti set v0='3UDTOQ5Y374TFOPIJIRZNV' where id=2; -update noar tt set b1='NL2LU02OF0TNID16A04XWGRG' where id=2; -update noar ti set b1='NL2LU02OF0TNID16A04XWGRG' where id=2; -update noar tt set v0='D7DY7EH2CG553QHJHV5' where id=2; -update noar ti set v0='D7DY7EH2CG553QHJHV5' where id=2; -update noar tt set b2='0S9I52JNFOKSRDORSRI8JC6D1W865CX' where id=2; -update noar ti set b2='0S9I52JNFOKSRDORSRI8JC6D1W865CX' where id=2; -update noar tt set v0='P77FPAAA6F2075P35ZV08B4P' where id=3; -update noar ti set v0='P77FPAAA6F2075P35ZV08B4P' where id=3; -update noar tt set b0='XOX' where id=3; -update noar ti set b0='XOX' where id=3; -update noar tt set v0='EGAGEV7C43CD5Z5U7O' where id=3; -update noar ti set v0='EGAGEV7C43CD5Z5U7O' where id=3; -update noar tt set b1='ZMT' where id=3; -update noar ti set b1='ZMT' where id=3; -update noar tt set v0='YVL5LFTE6YABM256048GZBVMRJ5SK' where id=3; -update noar ti set v0='YVL5LFTE6YABM256048GZBVMRJ5SK' where id=3; -update noar tt set b2='83RFGIGF' where id=3; -update noar ti set b2='83RFGIGF' where id=3; -update noar tt set v0='HYOQUL7INO0GH15GRHWB9XGG5YN' where id=4; -update noar ti set v0='HYOQUL7INO0GH15GRHWB9XGG5YN' where id=4; -update noar tt set b0='DHWDSY9DYCBFJ8UECW2ONLCXJW47' where id=4; -update noar ti set b0='DHWDSY9DYCBFJ8UECW2ONLCXJW47' where id=4; -update noar tt set v0='SFW3LQ0LAFFY79UF4' where id=4; -update noar ti set v0='SFW3LQ0LAFFY79UF4' where id=4; -update noar tt set b1='Q' where id=4; -update noar ti set b1='Q' where id=4; -update noar tt set v0='4MO2IAB5HVTQ16F' where id=4; -update noar ti set v0='4MO2IAB5HVTQ16F' where id=4; -update noar tt set b2='IF4' where id=4; -update noar ti set b2='IF4' where id=4; -update noar tt set v0='W7' where id=5; -update noar ti set v0='W7' where id=5; -update noar tt set b0='Y349Y' where id=5; -update noar ti set b0='Y349Y' where id=5; -update noar tt set v0='W6C63B6WDOKKLN02ZPE384ZOWOGHJ5C' where id=5; -update noar ti set v0='W6C63B6WDOKKLN02ZPE384ZOWOGHJ5C' where id=5; -update noar tt set b1='21BWMO8C47OW8Y9M83FHKBC9COWL7R' where id=5; -update noar ti set b1='21BWMO8C47OW8Y9M83FHKBC9COWL7R' where id=5; -update noar tt set v0='5GL0F5Z9MAMRP0I1HJX' where id=5; -update noar ti set v0='5GL0F5Z9MAMRP0I1HJX' where id=5; -update noar tt set b2='AAR57DP24PV5JAXPVL4U0SAM5V' where id=5; -update noar ti set b2='AAR57DP24PV5JAXPVL4U0SAM5V' where id=5; -update noar tt set v0='WQCMIC4TVW' where id=6; -update noar ti set v0='WQCMIC4TVW' where id=6; -update noar tt set b0='G281WN097XXGNA4NHOMFTTRS13D5' where id=6; -update noar ti set b0='G281WN097XXGNA4NHOMFTTRS13D5' where id=6; -update noar tt set v0='JQPRV1S9K0X6IMIM7JFPIX47HXW' where id=6; -update noar ti set v0='JQPRV1S9K0X6IMIM7JFPIX47HXW' where id=6; -update noar tt set b1='DMMZ' where id=6; -update noar ti set b1='DMMZ' where id=6; -update noar tt set v0='35KVTIA4F1HKC' where id=6; -update noar ti set v0='35KVTIA4F1HKC' where id=6; -update noar tt set b2='F9N1' where id=6; -update noar ti set b2='F9N1' where id=6; -update noar tt set v0='PKVQ4' where id=7; -update noar ti set v0='PKVQ4' where id=7; -update noar tt set b0='01CBOANC05OQ4MRYO719IP687GRZ' where id=7; -update noar ti set b0='01CBOANC05OQ4MRYO719IP687GRZ' where id=7; -update noar tt set v0='PW0X2YDQSM8B6642EGIYY728ETZ6D1' where id=7; -update noar ti set v0='PW0X2YDQSM8B6642EGIYY728ETZ6D1' where id=7; -update noar tt set b1='44OF0D7' where id=7; -update noar ti set b1='44OF0D7' where id=7; -update noar tt set v0='CCV' where id=7; -update noar ti set v0='CCV' where id=7; -update noar tt set b2='JRWZX' where id=7; -update noar ti set b2='JRWZX' where id=7; -update noar tt set v0='ZQ9TFF53XW53AUJ2O1J7BZF3RDI92C' where id=8; -update noar ti set v0='ZQ9TFF53XW53AUJ2O1J7BZF3RDI92C' where id=8; -update noar tt set b0='OO0V1G' where id=8; -update noar ti set b0='OO0V1G' where id=8; -update noar tt set v0='V' where id=8; -update noar ti set v0='V' where id=8; -update noar tt set b1='6RZL7O0QSA' where id=8; -update noar ti set b1='6RZL7O0QSA' where id=8; -update noar tt set v0='IG7SF370IQO' where id=8; -update noar ti set v0='IG7SF370IQO' where id=8; -update noar tt set b2='F4VK' where id=8; -update noar ti set b2='F4VK' where id=8; -update noar tt set v0='AJOOR3YRNX8YB71LGMAAN6MJHV9ID' where id=9; -update noar ti set v0='AJOOR3YRNX8YB71LGMAAN6MJHV9ID' where id=9; -update noar tt set b0='8GAP83BNYJCH85P2' where id=9; -update noar ti set b0='8GAP83BNYJCH85P2' where id=9; -update noar tt set v0='T27BL1YT' where id=9; -update noar ti set v0='T27BL1YT' where id=9; -update noar tt set b1='P4LJ9MBV3AIOQ79' where id=9; -update noar ti set b1='P4LJ9MBV3AIOQ79' where id=9; -update noar tt set v0='8Y1HDDLXFBHR3EP6' where id=9; -update noar ti set v0='8Y1HDDLXFBHR3EP6' where id=9; -update noar tt set b2='PEMLQ7A2CEYAJLG9S' where id=9; -update noar ti set b2='PEMLQ7A2CEYAJLG9S' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - f0 int null, - v0 varchar(32) null, - b0 blob null, - b1 blob null, - b2 blob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='OHILF04F60NXEJRL6F' where id=1; -update noar ti set v0='OHILF04F60NXEJRL6F' where id=1; -update noar tt set b0='C8I3P4ITSKDS8ORHDT0W9G5' where id=1; -update noar ti set b0='C8I3P4ITSKDS8ORHDT0W9G5' where id=1; -update noar tt set v0='XL10OB0' where id=1; -update noar ti set v0='XL10OB0' where id=1; -update noar tt set b1='OGP68635LUQ1KYQ8VV31LO52ISV' where id=1; -update noar ti set b1='OGP68635LUQ1KYQ8VV31LO52ISV' where id=1; -update noar tt set v0='FRU' where id=1; -update noar ti set v0='FRU' where id=1; -update noar tt set b2='JY54DILVUGLQPNSD1VSY6G' where id=1; -update noar ti set b2='JY54DILVUGLQPNSD1VSY6G' where id=1; -update noar tt set v0='4HJ1KMDM9LNE5ZSABV6C' where id=2; -update noar ti set v0='4HJ1KMDM9LNE5ZSABV6C' where id=2; -update noar tt set b0='XVB0SARTERFOSG6NJT5XAGU49V0AV' where id=2; -update noar ti set b0='XVB0SARTERFOSG6NJT5XAGU49V0AV' where id=2; -update noar tt set v0='AGIZS88F8CRH33T9OVH2O0JDRA3Q6' where id=2; -update noar ti set v0='AGIZS88F8CRH33T9OVH2O0JDRA3Q6' where id=2; -update noar tt set b1='XFUZ' where id=2; -update noar ti set b1='XFUZ' where id=2; -update noar tt set v0='WRNNPI53MB1Q5BZVUCJM90IM4M1D' where id=2; -update noar ti set v0='WRNNPI53MB1Q5BZVUCJM90IM4M1D' where id=2; -update noar tt set b2='ZUNFTPAWM8JUPD820CTVY' where id=2; -update noar ti set b2='ZUNFTPAWM8JUPD820CTVY' where id=2; -update noar tt set v0='FS2BT489HS0S2RFWMF67GR00U9IH' where id=3; -update noar ti set v0='FS2BT489HS0S2RFWMF67GR00U9IH' where id=3; -update noar tt set b0='7Z2LUM8K46K8V3AEN74DGKGNWPAE40' where id=3; -update noar ti set b0='7Z2LUM8K46K8V3AEN74DGKGNWPAE40' where id=3; -update noar tt set v0='LSO1AKTYIJJO2IA7' where id=3; -update noar ti set v0='LSO1AKTYIJJO2IA7' where id=3; -update noar tt set b1='JB' where id=3; -update noar ti set b1='JB' where id=3; -update noar tt set v0='41L7PJA1LI73S8JF1KXUE' where id=3; -update noar ti set v0='41L7PJA1LI73S8JF1KXUE' where id=3; -update noar tt set b2='QKGXEY' where id=3; -update noar ti set b2='QKGXEY' where id=3; -update noar tt set v0='3FXQ6VWJ1CSU' where id=4; -update noar ti set v0='3FXQ6VWJ1CSU' where id=4; -update noar tt set b0='R1GZA9AD76DJUBM' where id=4; -update noar ti set b0='R1GZA9AD76DJUBM' where id=4; -update noar tt set v0='RO6PR48BBWTJT' where id=4; -update noar ti set v0='RO6PR48BBWTJT' where id=4; -update noar tt set b1='DD3NLHSN3A8MQ4VKZ3N' where id=4; -update noar ti set b1='DD3NLHSN3A8MQ4VKZ3N' where id=4; -update noar tt set v0='J5C9U04KYK400MO47SA6' where id=4; -update noar ti set v0='J5C9U04KYK400MO47SA6' where id=4; -update noar tt set b2='9' where id=4; -update noar ti set b2='9' where id=4; -update noar tt set v0='LV9YVQ7Q263C26I02318HP69Y3FP2QC' where id=5; -update noar ti set v0='LV9YVQ7Q263C26I02318HP69Y3FP2QC' where id=5; -update noar tt set b0='CCE' where id=5; -update noar ti set b0='CCE' where id=5; -update noar tt set v0='IXKG3KA3GSUXAIEA438P4WBN6ITHJ5' where id=5; -update noar ti set v0='IXKG3KA3GSUXAIEA438P4WBN6ITHJ5' where id=5; -update noar tt set b1='ITV76CAQZVFQFE4VCU1HCSE3DG' where id=5; -update noar ti set b1='ITV76CAQZVFQFE4VCU1HCSE3DG' where id=5; -update noar tt set v0='8KWVNJJTY4Z86' where id=5; -update noar ti set v0='8KWVNJJTY4Z86' where id=5; -update noar tt set b2='WSTT2TG6IPKP7VVNGT' where id=5; -update noar ti set b2='WSTT2TG6IPKP7VVNGT' where id=5; -update noar tt set v0='CM' where id=6; -update noar ti set v0='CM' where id=6; -update noar tt set b0='NXIK5VOBE' where id=6; -update noar ti set b0='NXIK5VOBE' where id=6; -update noar tt set v0='GVNB6' where id=6; -update noar ti set v0='GVNB6' where id=6; -update noar tt set b1='Q99' where id=6; -update noar ti set b1='Q99' where id=6; -update noar tt set v0='AK' where id=6; -update noar ti set v0='AK' where id=6; -update noar tt set b2='DVPR4YH8FCR6YFTBG1B4BDH8IP' where id=6; -update noar ti set b2='DVPR4YH8FCR6YFTBG1B4BDH8IP' where id=6; -update noar tt set v0='EHB6BL3GYLRDONWF' where id=7; -update noar ti set v0='EHB6BL3GYLRDONWF' where id=7; -update noar tt set b0='1VT0U80Y9MD6NQ0QX5JO' where id=7; -update noar ti set b0='1VT0U80Y9MD6NQ0QX5JO' where id=7; -update noar tt set v0='T' where id=7; -update noar ti set v0='T' where id=7; -update noar tt set b1='HYDQGXSWL8' where id=7; -update noar ti set b1='HYDQGXSWL8' where id=7; -update noar tt set v0='16Z1PJZCLZ87W2EAIWJOCL36ML1M' where id=7; -update noar ti set v0='16Z1PJZCLZ87W2EAIWJOCL36ML1M' where id=7; -update noar tt set b2='FB' where id=7; -update noar ti set b2='FB' where id=7; -update noar tt set v0='LVANGGM7YQQ4OKAV0E8MZ' where id=8; -update noar ti set v0='LVANGGM7YQQ4OKAV0E8MZ' where id=8; -update noar tt set b0='FNX2VFNQSRPHLU1CX' where id=8; -update noar ti set b0='FNX2VFNQSRPHLU1CX' where id=8; -update noar tt set v0='ADUVBROBXM' where id=8; -update noar ti set v0='ADUVBROBXM' where id=8; -update noar tt set b1='52AKHOTG3' where id=8; -update noar ti set b1='52AKHOTG3' where id=8; -update noar tt set v0='AUY577K9AA7ZZRG8I94' where id=8; -update noar ti set v0='AUY577K9AA7ZZRG8I94' where id=8; -update noar tt set b2='8C4K90555ZLV1KPGHQ6KJIGAGM9I8J1' where id=8; -update noar ti set b2='8C4K90555ZLV1KPGHQ6KJIGAGM9I8J1' where id=8; -update noar tt set v0='XF04BXXZFNG7L0OLQJ2DWFKPA' where id=9; -update noar ti set v0='XF04BXXZFNG7L0OLQJ2DWFKPA' where id=9; -update noar tt set b0='6VZJQ1WTMMPYW0PQBU673TMCHJ2QQY' where id=9; -update noar ti set b0='6VZJQ1WTMMPYW0PQBU673TMCHJ2QQY' where id=9; -update noar tt set v0='L1SONQIKQPKYGQLK8UIZK851HNT5Q' where id=9; -update noar ti set v0='L1SONQIKQPKYGQLK8UIZK851HNT5Q' where id=9; -update noar tt set b1='EJ0GL9FU3AGQX9TXFJKZ4FQRIKSBB2J' where id=9; -update noar ti set b1='EJ0GL9FU3AGQX9TXFJKZ4FQRIKSBB2J' where id=9; -update noar tt set v0='YLU1JHLC' where id=9; -update noar ti set v0='YLU1JHLC' where id=9; -update noar tt set b2='69YT' where id=9; -update noar ti set b2='69YT' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - f0 int null, - v0 varchar(256) null, - b0 blob null, - b1 blob null, - b2 blob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='VK78QUVI77ZN4BF6D1JOS8UN' where id=1; -update noar ti set v0='VK78QUVI77ZN4BF6D1JOS8UN' where id=1; -update noar tt set b0='YZEFHBAU7VW7QX1LMAVAMZ5AFOW7PPWC' where id=1; -update noar ti set b0='YZEFHBAU7VW7QX1LMAVAMZ5AFOW7PPWC' where id=1; -update noar tt set v0='HVC3ZWEZR45QMEONCRHKW3WR' where id=1; -update noar ti set v0='HVC3ZWEZR45QMEONCRHKW3WR' where id=1; -update noar tt set b1='VMM6XW1NFF863B2ZDJK5LH' where id=1; -update noar ti set b1='VMM6XW1NFF863B2ZDJK5LH' where id=1; -update noar tt set v0='ABECRXSVLXS3OK6A4VMOEPQ' where id=1; -update noar ti set v0='ABECRXSVLXS3OK6A4VMOEPQ' where id=1; -update noar tt set b2='805Y6RS1MLESLG4K8SQWB9' where id=1; -update noar ti set b2='805Y6RS1MLESLG4K8SQWB9' where id=1; -update noar tt set v0='148T7RW05854PEGF3' where id=2; -update noar ti set v0='148T7RW05854PEGF3' where id=2; -update noar tt set b0='3H' where id=2; -update noar ti set b0='3H' where id=2; -update noar tt set v0='9NIFKEGJQRZTUJTRVH7' where id=2; -update noar ti set v0='9NIFKEGJQRZTUJTRVH7' where id=2; -update noar tt set b1='MQR1C' where id=2; -update noar ti set b1='MQR1C' where id=2; -update noar tt set v0='XI0YT5ZMXLZKKAETDAS' where id=2; -update noar ti set v0='XI0YT5ZMXLZKKAETDAS' where id=2; -update noar tt set b2='0JC2RRT9AZYLTTAI' where id=2; -update noar ti set b2='0JC2RRT9AZYLTTAI' where id=2; -update noar tt set v0='T0G0NWX4IS3AF9495ZKDI1K' where id=3; -update noar ti set v0='T0G0NWX4IS3AF9495ZKDI1K' where id=3; -update noar tt set b0='47F60' where id=3; -update noar ti set b0='47F60' where id=3; -update noar tt set v0='371MW2SWY668OLPBBIG' where id=3; -update noar ti set v0='371MW2SWY668OLPBBIG' where id=3; -update noar tt set b1='2W' where id=3; -update noar ti set b1='2W' where id=3; -update noar tt set v0='IQ7' where id=3; -update noar ti set v0='IQ7' where id=3; -update noar tt set b2='5P04YDSA' where id=3; -update noar ti set b2='5P04YDSA' where id=3; -update noar tt set v0='3UW' where id=4; -update noar ti set v0='3UW' where id=4; -update noar tt set b0='SYILSORIIM7FAX8WKDUCV9VENY' where id=4; -update noar ti set b0='SYILSORIIM7FAX8WKDUCV9VENY' where id=4; -update noar tt set v0='AWA7UIJ9F33VV4P3WOKHISAE6' where id=4; -update noar ti set v0='AWA7UIJ9F33VV4P3WOKHISAE6' where id=4; -update noar tt set b1='CD8NI' where id=4; -update noar ti set b1='CD8NI' where id=4; -update noar tt set v0='R6ITDVE394UNGYZROOSHMXBG7LBDD6' where id=4; -update noar ti set v0='R6ITDVE394UNGYZROOSHMXBG7LBDD6' where id=4; -update noar tt set b2='RUG30GRB078XSRE4XQEMLC9AO4GY2R1' where id=4; -update noar ti set b2='RUG30GRB078XSRE4XQEMLC9AO4GY2R1' where id=4; -update noar tt set v0='HST854VB108C' where id=5; -update noar ti set v0='HST854VB108C' where id=5; -update noar tt set b0='D7' where id=5; -update noar ti set b0='D7' where id=5; -update noar tt set v0='KNCWJQT513GRUJIW8LDG9O0RB3DZ1M' where id=5; -update noar ti set v0='KNCWJQT513GRUJIW8LDG9O0RB3DZ1M' where id=5; -update noar tt set b1='EYZ8LC9ZBD4DNILTKGNZE93QNYPS' where id=5; -update noar ti set b1='EYZ8LC9ZBD4DNILTKGNZE93QNYPS' where id=5; -update noar tt set v0='2C2G5PLZU2E3TRY' where id=5; -update noar ti set v0='2C2G5PLZU2E3TRY' where id=5; -update noar tt set b2='16Z3Z4HIPKBBHXHPXNM7TNZUZX48' where id=5; -update noar ti set b2='16Z3Z4HIPKBBHXHPXNM7TNZUZX48' where id=5; -update noar tt set v0='0RHDKGUPVQ8XMC15GW5DAJDF' where id=6; -update noar ti set v0='0RHDKGUPVQ8XMC15GW5DAJDF' where id=6; -update noar tt set b0='GEO5636JY3SWSY1IRJWTNAMP' where id=6; -update noar ti set b0='GEO5636JY3SWSY1IRJWTNAMP' where id=6; -update noar tt set v0='NO1CS3PBA' where id=6; -update noar ti set v0='NO1CS3PBA' where id=6; -update noar tt set b1='RWPFII00Q2NO24PWXEFDW7M00' where id=6; -update noar ti set b1='RWPFII00Q2NO24PWXEFDW7M00' where id=6; -update noar tt set v0='2T8MTSX152AB8THITMTIFD7QQN404' where id=6; -update noar ti set v0='2T8MTSX152AB8THITMTIFD7QQN404' where id=6; -update noar tt set b2='P6IC' where id=6; -update noar ti set b2='P6IC' where id=6; -update noar tt set v0='D2HH5M8CH01W8IC89MT' where id=7; -update noar ti set v0='D2HH5M8CH01W8IC89MT' where id=7; -update noar tt set b0='YIQB0M4KWBZ6YXBY8EYT62EI707BCE' where id=7; -update noar ti set b0='YIQB0M4KWBZ6YXBY8EYT62EI707BCE' where id=7; -update noar tt set v0='6BSXBGQK' where id=7; -update noar ti set v0='6BSXBGQK' where id=7; -update noar tt set b1='YHQW6AU6K913C3GX3EMQCWBQ' where id=7; -update noar ti set b1='YHQW6AU6K913C3GX3EMQCWBQ' where id=7; -update noar tt set v0='BU5VTADN' where id=7; -update noar ti set v0='BU5VTADN' where id=7; -update noar tt set b2='2X6OBIB1EQW6G5OQ7B9ZBT6Y' where id=7; -update noar ti set b2='2X6OBIB1EQW6G5OQ7B9ZBT6Y' where id=7; -update noar tt set v0='H5MIFDOWE3G' where id=8; -update noar ti set v0='H5MIFDOWE3G' where id=8; -update noar tt set b0='JR9R55XL3MU9C14O' where id=8; -update noar ti set b0='JR9R55XL3MU9C14O' where id=8; -update noar tt set v0='757K0OIKSJQDRJ8HGMLX2K2SUYQ' where id=8; -update noar ti set v0='757K0OIKSJQDRJ8HGMLX2K2SUYQ' where id=8; -update noar tt set b1='WY3' where id=8; -update noar ti set b1='WY3' where id=8; -update noar tt set v0='3QVHTO3FQ5YLUA' where id=8; -update noar ti set v0='3QVHTO3FQ5YLUA' where id=8; -update noar tt set b2='3MKUV' where id=8; -update noar ti set b2='3MKUV' where id=8; -update noar tt set v0='PQZ7UCD72P2RRLLOTDR5QPIE0BJ5' where id=9; -update noar ti set v0='PQZ7UCD72P2RRLLOTDR5QPIE0BJ5' where id=9; -update noar tt set b0='1HCMZ4YZ7' where id=9; -update noar ti set b0='1HCMZ4YZ7' where id=9; -update noar tt set v0='KQW7T8CY9ZWP63N00F97' where id=9; -update noar ti set v0='KQW7T8CY9ZWP63N00F97' where id=9; -update noar tt set b1='LIXNRRJC3BLTMWCA0FJMH0BWBFG91YS' where id=9; -update noar ti set b1='LIXNRRJC3BLTMWCA0FJMH0BWBFG91YS' where id=9; -update noar tt set v0='QH156VY8U8ZL89719A6COFXJ2M' where id=9; -update noar ti set v0='QH156VY8U8ZL89719A6COFXJ2M' where id=9; -update noar tt set b2='UCCP3G084WAKSFS9' where id=9; -update noar ti set b2='UCCP3G084WAKSFS9' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - f0 int not null, - v0 varchar(32) not null, - b0 blob not null, - b1 blob not null, - b2 blob not null -) engine=tokudb; -insert into tt values (1,0,'','','',''); -insert into tt values (2,0,'','','',''); -insert into tt values (3,0,'','','',''); -insert into tt values (4,0,'','','',''); -insert into tt values (5,0,'','','',''); -insert into tt values (6,0,'','','',''); -insert into tt values (7,0,'','','',''); -insert into tt values (8,0,'','','',''); -insert into tt values (9,0,'','','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='B5XWHWKNJK1PTAAW3WE2LR2J6HFAJ1KB' where id=1; -update noar ti set v0='B5XWHWKNJK1PTAAW3WE2LR2J6HFAJ1KB' where id=1; -update noar tt set b0='AQK8983Q5PY5B0R7' where id=1; -update noar ti set b0='AQK8983Q5PY5B0R7' where id=1; -update noar tt set v0='IP8OWZPLPHZX08TXADD687XTUE' where id=1; -update noar ti set v0='IP8OWZPLPHZX08TXADD687XTUE' where id=1; -update noar tt set b1='4RLR' where id=1; -update noar ti set b1='4RLR' where id=1; -update noar tt set v0='TTAFDB4FN9JF5C8878TIBJ' where id=1; -update noar ti set v0='TTAFDB4FN9JF5C8878TIBJ' where id=1; -update noar tt set b2='UM91JULKWUQS86JS01ERWEM0HKKFTA2' where id=1; -update noar ti set b2='UM91JULKWUQS86JS01ERWEM0HKKFTA2' where id=1; -update noar tt set v0='V2UXBYWMPOWS06HIIRI3' where id=2; -update noar ti set v0='V2UXBYWMPOWS06HIIRI3' where id=2; -update noar tt set b0='HJHRQ8PV6JHB9DO0L5REVCGSR' where id=2; -update noar ti set b0='HJHRQ8PV6JHB9DO0L5REVCGSR' where id=2; -update noar tt set v0='6ZPN2DJDX5C9RUO' where id=2; -update noar ti set v0='6ZPN2DJDX5C9RUO' where id=2; -update noar tt set b1='B98DODIGBA' where id=2; -update noar ti set b1='B98DODIGBA' where id=2; -update noar tt set v0='KBMTV956BWQYH4IJXTIYJ0Q3O' where id=2; -update noar ti set v0='KBMTV956BWQYH4IJXTIYJ0Q3O' where id=2; -update noar tt set b2='7AN5TAY95NZ' where id=2; -update noar ti set b2='7AN5TAY95NZ' where id=2; -update noar tt set v0='BVLR72H4Z0FASJESJU2DOUKOB6GCMB' where id=3; -update noar ti set v0='BVLR72H4Z0FASJESJU2DOUKOB6GCMB' where id=3; -update noar tt set b0='R23GLO' where id=3; -update noar ti set b0='R23GLO' where id=3; -update noar tt set v0='SWIC1LY6CB222UBSVEA88CKWSHCI73J' where id=3; -update noar ti set v0='SWIC1LY6CB222UBSVEA88CKWSHCI73J' where id=3; -update noar tt set b1='68KKE7M9L7BX2MKZNK9V8CE5UC' where id=3; -update noar ti set b1='68KKE7M9L7BX2MKZNK9V8CE5UC' where id=3; -update noar tt set v0='KFRJRFKWZX9J67QNGE091IEQSQBTR6' where id=3; -update noar ti set v0='KFRJRFKWZX9J67QNGE091IEQSQBTR6' where id=3; -update noar tt set b2='B1LMRJAC7AB7UGP9G1VSYITAFFTF3P2' where id=3; -update noar ti set b2='B1LMRJAC7AB7UGP9G1VSYITAFFTF3P2' where id=3; -update noar tt set v0='MSG8KH2QHKM24IUKFNTQ8' where id=4; -update noar ti set v0='MSG8KH2QHKM24IUKFNTQ8' where id=4; -update noar tt set b0='I7' where id=4; -update noar ti set b0='I7' where id=4; -update noar tt set v0='PYXXJR6FTHTH' where id=4; -update noar ti set v0='PYXXJR6FTHTH' where id=4; -update noar tt set b1='X4P2X' where id=4; -update noar ti set b1='X4P2X' where id=4; -update noar tt set v0='M55060DV5VQIRPHUAWR0F5UKLKH' where id=4; -update noar ti set v0='M55060DV5VQIRPHUAWR0F5UKLKH' where id=4; -update noar tt set b2='56NSLOR' where id=4; -update noar ti set b2='56NSLOR' where id=4; -update noar tt set v0='QH36L2YOAWU06RR48JCSQYG' where id=5; -update noar ti set v0='QH36L2YOAWU06RR48JCSQYG' where id=5; -update noar tt set b0='2LCECGVHIAFWLKMIXTTT3BYU5' where id=5; -update noar ti set b0='2LCECGVHIAFWLKMIXTTT3BYU5' where id=5; -update noar tt set v0='GLKR0M2RG0IUN3IOH' where id=5; -update noar ti set v0='GLKR0M2RG0IUN3IOH' where id=5; -update noar tt set b1='ZCNWUWA14AQ' where id=5; -update noar ti set b1='ZCNWUWA14AQ' where id=5; -update noar tt set v0='ZWRT6V7UMML' where id=5; -update noar ti set v0='ZWRT6V7UMML' where id=5; -update noar tt set b2='DHXQZ16C5P2JJURQTU' where id=5; -update noar ti set b2='DHXQZ16C5P2JJURQTU' where id=5; -update noar tt set v0='RU30IHVPF8JHJGMLZKOU55R6WW20DW' where id=6; -update noar ti set v0='RU30IHVPF8JHJGMLZKOU55R6WW20DW' where id=6; -update noar tt set b0='K7GJAPHJY1ZCZMPZOBR5U' where id=6; -update noar ti set b0='K7GJAPHJY1ZCZMPZOBR5U' where id=6; -update noar tt set v0='IQ' where id=6; -update noar ti set v0='IQ' where id=6; -update noar tt set b1='ZT2H1ROSHU1ODB231F591' where id=6; -update noar ti set b1='ZT2H1ROSHU1ODB231F591' where id=6; -update noar tt set v0='8UTCDLMXU17E' where id=6; -update noar ti set v0='8UTCDLMXU17E' where id=6; -update noar tt set b2='3U5LUDCE6AQK366' where id=6; -update noar ti set b2='3U5LUDCE6AQK366' where id=6; -update noar tt set v0='WYF3G4OSDUYMDMLQ' where id=7; -update noar ti set v0='WYF3G4OSDUYMDMLQ' where id=7; -update noar tt set b0='890M8R8857IUJ70D0R1EO6359' where id=7; -update noar ti set b0='890M8R8857IUJ70D0R1EO6359' where id=7; -update noar tt set v0='GAKJP' where id=7; -update noar ti set v0='GAKJP' where id=7; -update noar tt set b1='XAF' where id=7; -update noar ti set b1='XAF' where id=7; -update noar tt set v0='CO83M' where id=7; -update noar ti set v0='CO83M' where id=7; -update noar tt set b2='371Y58KL7UAFIVULL2UW4R' where id=7; -update noar ti set b2='371Y58KL7UAFIVULL2UW4R' where id=7; -update noar tt set v0='WQBVS64ACCNCTC3D9SV53X8W0WD' where id=8; -update noar ti set v0='WQBVS64ACCNCTC3D9SV53X8W0WD' where id=8; -update noar tt set b0='RNW6XQ2XV1AS9DV0' where id=8; -update noar ti set b0='RNW6XQ2XV1AS9DV0' where id=8; -update noar tt set v0='LCNOX19GU690FN2NIQRA3QKMP9FUNVDZ' where id=8; -update noar ti set v0='LCNOX19GU690FN2NIQRA3QKMP9FUNVDZ' where id=8; -update noar tt set b1='EOMGAJHOPKPSVL99' where id=8; -update noar ti set b1='EOMGAJHOPKPSVL99' where id=8; -update noar tt set v0='VDJG5ZCF3S6PTJOV' where id=8; -update noar ti set v0='VDJG5ZCF3S6PTJOV' where id=8; -update noar tt set b2='Q0HJLIWI2BE553NIPGDXQOOJGJ' where id=8; -update noar ti set b2='Q0HJLIWI2BE553NIPGDXQOOJGJ' where id=8; -update noar tt set v0='UJO9DQD1TU15WJKC' where id=9; -update noar ti set v0='UJO9DQD1TU15WJKC' where id=9; -update noar tt set b0='PGTZGOTNUPLUUDVRJTDCES61UL1' where id=9; -update noar ti set b0='PGTZGOTNUPLUUDVRJTDCES61UL1' where id=9; -update noar tt set v0='4JA99KW3OHT06PG4IRSV' where id=9; -update noar ti set v0='4JA99KW3OHT06PG4IRSV' where id=9; -update noar tt set b1='HSHJIRXKIY2IF1G0KY9P' where id=9; -update noar ti set b1='HSHJIRXKIY2IF1G0KY9P' where id=9; -update noar tt set v0='8MCAYW972R5T' where id=9; -update noar ti set v0='8MCAYW972R5T' where id=9; -update noar tt set b2='2VCOWY8HEVHJSPX5MYW4L7HI' where id=9; -update noar ti set b2='2VCOWY8HEVHJSPX5MYW4L7HI' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - f0 int not null, - v0 varchar(256) not null, - b0 blob not null, - b1 blob not null, - b2 blob not null -) engine=tokudb; -insert into tt values (1,0,'','','',''); -insert into tt values (2,0,'','','',''); -insert into tt values (3,0,'','','',''); -insert into tt values (4,0,'','','',''); -insert into tt values (5,0,'','','',''); -insert into tt values (6,0,'','','',''); -insert into tt values (7,0,'','','',''); -insert into tt values (8,0,'','','',''); -insert into tt values (9,0,'','','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='ENG49' where id=1; -update noar ti set v0='ENG49' where id=1; -update noar tt set b0='CC500FPMVMNWMSGW424KY2TO4M9UM1I' where id=1; -update noar ti set b0='CC500FPMVMNWMSGW424KY2TO4M9UM1I' where id=1; -update noar tt set v0='N35ZIBQB' where id=1; -update noar ti set v0='N35ZIBQB' where id=1; -update noar tt set b1='KBMT6QF7K2S3MWCAVA3' where id=1; -update noar ti set b1='KBMT6QF7K2S3MWCAVA3' where id=1; -update noar tt set v0='9W839TN2URY' where id=1; -update noar ti set v0='9W839TN2URY' where id=1; -update noar tt set b2='P3S0AXGAUQ91SA3VW' where id=1; -update noar ti set b2='P3S0AXGAUQ91SA3VW' where id=1; -update noar tt set v0='Q8QLH334JIMV81KILO7AU06LOC4Z1O1O' where id=2; -update noar ti set v0='Q8QLH334JIMV81KILO7AU06LOC4Z1O1O' where id=2; -update noar tt set b0='5BY3E035HCQQ4L4' where id=2; -update noar ti set b0='5BY3E035HCQQ4L4' where id=2; -update noar tt set v0='M5FEIQEDND1P8UWOVN3P' where id=2; -update noar ti set v0='M5FEIQEDND1P8UWOVN3P' where id=2; -update noar tt set b1='R7EBVNKM3HNZ5L2AFQEON2UI7HD36K9E' where id=2; -update noar ti set b1='R7EBVNKM3HNZ5L2AFQEON2UI7HD36K9E' where id=2; -update noar tt set v0='DHHDQ3CQMQCK' where id=2; -update noar ti set v0='DHHDQ3CQMQCK' where id=2; -update noar tt set b2='CG4GXAPLZKCM24PCDQ1I8A1JLKVMJ6Q' where id=2; -update noar ti set b2='CG4GXAPLZKCM24PCDQ1I8A1JLKVMJ6Q' where id=2; -update noar tt set v0='D20TQ70E2LNLI3QF18LPVXFBDSSCU' where id=3; -update noar ti set v0='D20TQ70E2LNLI3QF18LPVXFBDSSCU' where id=3; -update noar tt set b0='S0F6W6' where id=3; -update noar ti set b0='S0F6W6' where id=3; -update noar tt set v0='8TXFK8J3YQE' where id=3; -update noar ti set v0='8TXFK8J3YQE' where id=3; -update noar tt set b1='L9AZE8OV907G' where id=3; -update noar ti set b1='L9AZE8OV907G' where id=3; -update noar tt set v0='6Z' where id=3; -update noar ti set v0='6Z' where id=3; -update noar tt set b2='HYR' where id=3; -update noar ti set b2='HYR' where id=3; -update noar tt set v0='1IUL5P' where id=4; -update noar ti set v0='1IUL5P' where id=4; -update noar tt set b0='LFU6C4D28N' where id=4; -update noar ti set b0='LFU6C4D28N' where id=4; -update noar tt set v0='ZGT0Q9C8MAV' where id=4; -update noar ti set v0='ZGT0Q9C8MAV' where id=4; -update noar tt set b1='3Q1CIJU2ET0QY2ET4F0M' where id=4; -update noar ti set b1='3Q1CIJU2ET0QY2ET4F0M' where id=4; -update noar tt set v0='L3TPCI2P' where id=4; -update noar ti set v0='L3TPCI2P' where id=4; -update noar tt set b2='BV' where id=4; -update noar ti set b2='BV' where id=4; -update noar tt set v0='OLX65KBZY06B4KDG5FZXOE' where id=5; -update noar ti set v0='OLX65KBZY06B4KDG5FZXOE' where id=5; -update noar tt set b0='5D' where id=5; -update noar ti set b0='5D' where id=5; -update noar tt set v0='DXUJXA204RFEN0IGC2ISZ' where id=5; -update noar ti set v0='DXUJXA204RFEN0IGC2ISZ' where id=5; -update noar tt set b1='T9B8J1J29GAH1GTF24ZRXT' where id=5; -update noar ti set b1='T9B8J1J29GAH1GTF24ZRXT' where id=5; -update noar tt set v0='3EE6K56HE' where id=5; -update noar ti set v0='3EE6K56HE' where id=5; -update noar tt set b2='XNXG479PGDSVM' where id=5; -update noar ti set b2='XNXG479PGDSVM' where id=5; -update noar tt set v0='TU519WQ6YW7X' where id=6; -update noar ti set v0='TU519WQ6YW7X' where id=6; -update noar tt set b0='D80AY6WP' where id=6; -update noar ti set b0='D80AY6WP' where id=6; -update noar tt set v0='OSLSZUUNTMAMBJTKL9P2P8FG1KME9BRZ' where id=6; -update noar ti set v0='OSLSZUUNTMAMBJTKL9P2P8FG1KME9BRZ' where id=6; -update noar tt set b1='YO2I2OY2A' where id=6; -update noar ti set b1='YO2I2OY2A' where id=6; -update noar tt set v0='R0A4ZAK0TNLTO6D1' where id=6; -update noar ti set v0='R0A4ZAK0TNLTO6D1' where id=6; -update noar tt set b2='ORM5UFLVZL' where id=6; -update noar ti set b2='ORM5UFLVZL' where id=6; -update noar tt set v0='TWNRHB4VTSV3TNI' where id=7; -update noar ti set v0='TWNRHB4VTSV3TNI' where id=7; -update noar tt set b0='WLBEJX29J9LH' where id=7; -update noar ti set b0='WLBEJX29J9LH' where id=7; -update noar tt set v0='4SEBSEP726' where id=7; -update noar ti set v0='4SEBSEP726' where id=7; -update noar tt set b1='WQJ4FZ3EN' where id=7; -update noar ti set b1='WQJ4FZ3EN' where id=7; -update noar tt set v0='I2UON3E46X9W1FV9OJ' where id=7; -update noar ti set v0='I2UON3E46X9W1FV9OJ' where id=7; -update noar tt set b2='6FSY81G28EGA82XS4LF52PPSSADGD5K' where id=7; -update noar ti set b2='6FSY81G28EGA82XS4LF52PPSSADGD5K' where id=7; -update noar tt set v0='GBBQ2D31H' where id=8; -update noar ti set v0='GBBQ2D31H' where id=8; -update noar tt set b0='1NQBHYLDY0JE' where id=8; -update noar ti set b0='1NQBHYLDY0JE' where id=8; -update noar tt set v0='ENOVCTT9B3' where id=8; -update noar ti set v0='ENOVCTT9B3' where id=8; -update noar tt set b1='SJH2ZOTLTP9D02' where id=8; -update noar ti set b1='SJH2ZOTLTP9D02' where id=8; -update noar tt set v0='MSCQXU7VJ38WSMX' where id=8; -update noar ti set v0='MSCQXU7VJ38WSMX' where id=8; -update noar tt set b2='FBT7QAYDD2U5S22C1QF9NS7' where id=8; -update noar ti set b2='FBT7QAYDD2U5S22C1QF9NS7' where id=8; -update noar tt set v0='Y0SJA2IOKECPIS5QW2PTYE5' where id=9; -update noar ti set v0='Y0SJA2IOKECPIS5QW2PTYE5' where id=9; -update noar tt set b0='6GLYG' where id=9; -update noar ti set b0='6GLYG' where id=9; -update noar tt set v0='LDP7KC70MWPL3R4686063RI' where id=9; -update noar ti set v0='LDP7KC70MWPL3R4686063RI' where id=9; -update noar tt set b1='S9MLH5GW19JH2HIHQ0YXIZV0Z6CT94E' where id=9; -update noar ti set b1='S9MLH5GW19JH2HIHQ0YXIZV0Z6CT94E' where id=9; -update noar tt set v0='GI52HNS13DFOWW8DKGSYZXD8W5JRDSHZ' where id=9; -update noar ti set v0='GI52HNS13DFOWW8DKGSYZXD8W5JRDSHZ' where id=9; -update noar tt set b2='P0HCZMA4VF' where id=9; -update noar ti set b2='P0HCZMA4VF' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - f0 int null, - v0 varchar(32) null, - b0 blob null, - b1 blob null, - b2 mediumblob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='KZT4TITWSAVW' where id=1; -update noar ti set v0='KZT4TITWSAVW' where id=1; -update noar tt set b0='MS2OUXU7H' where id=1; -update noar ti set b0='MS2OUXU7H' where id=1; -update noar tt set v0='RY' where id=1; -update noar ti set v0='RY' where id=1; -update noar tt set b1='BSHEN5MCKW9CQP29YR167VE7OUDS2A8' where id=1; -update noar ti set b1='BSHEN5MCKW9CQP29YR167VE7OUDS2A8' where id=1; -update noar tt set v0='CGPE5W5TTQ1EC76HOL6MUMFSVEOH1ZY' where id=1; -update noar ti set v0='CGPE5W5TTQ1EC76HOL6MUMFSVEOH1ZY' where id=1; -update noar tt set b2='6PJPF2HUYQNROCDVBG885HGVZAA1' where id=1; -update noar ti set b2='6PJPF2HUYQNROCDVBG885HGVZAA1' where id=1; -update noar tt set v0='19A8GWJU54GNZ4UPXPEV15RAOXN9TB' where id=2; -update noar ti set v0='19A8GWJU54GNZ4UPXPEV15RAOXN9TB' where id=2; -update noar tt set b0='YIKOB' where id=2; -update noar ti set b0='YIKOB' where id=2; -update noar tt set v0='F7AZ48ZE2R07' where id=2; -update noar ti set v0='F7AZ48ZE2R07' where id=2; -update noar tt set b1='HVFXLESGBGUUCNI2O' where id=2; -update noar ti set b1='HVFXLESGBGUUCNI2O' where id=2; -update noar tt set v0='E' where id=2; -update noar ti set v0='E' where id=2; -update noar tt set b2='32NVYGC7UFWUF' where id=2; -update noar ti set b2='32NVYGC7UFWUF' where id=2; -update noar tt set v0='OAWFILZI2' where id=3; -update noar ti set v0='OAWFILZI2' where id=3; -update noar tt set b0='F5MGCCZC3QRC0G7O7DXNV5' where id=3; -update noar ti set b0='F5MGCCZC3QRC0G7O7DXNV5' where id=3; -update noar tt set v0='S4GGFIZV' where id=3; -update noar ti set v0='S4GGFIZV' where id=3; -update noar tt set b1='A05BY29833UWJI' where id=3; -update noar ti set b1='A05BY29833UWJI' where id=3; -update noar tt set v0='A2U5BBM5CO530IDG0L' where id=3; -update noar ti set v0='A2U5BBM5CO530IDG0L' where id=3; -update noar tt set b2='7YUCW7R' where id=3; -update noar ti set b2='7YUCW7R' where id=3; -update noar tt set v0='VUT491Y62VENDE771WY7NLRRNLHAVSR' where id=4; -update noar ti set v0='VUT491Y62VENDE771WY7NLRRNLHAVSR' where id=4; -update noar tt set b0='4DWXPSGTTRKGHF9BFBP' where id=4; -update noar ti set b0='4DWXPSGTTRKGHF9BFBP' where id=4; -update noar tt set v0='ASBOMH781KLEZG0' where id=4; -update noar ti set v0='ASBOMH781KLEZG0' where id=4; -update noar tt set b1='OGREEJZ8RQ09U5JUZ7' where id=4; -update noar ti set b1='OGREEJZ8RQ09U5JUZ7' where id=4; -update noar tt set v0='A7AGXSU' where id=4; -update noar ti set v0='A7AGXSU' where id=4; -update noar tt set b2='LCK4BHD71I43QITRTL8J2RPF7NW' where id=4; -update noar ti set b2='LCK4BHD71I43QITRTL8J2RPF7NW' where id=4; -update noar tt set v0='JAAU91Z614BWAJH62SJ71ACXIWV7963Z' where id=5; -update noar ti set v0='JAAU91Z614BWAJH62SJ71ACXIWV7963Z' where id=5; -update noar tt set b0='LWF1RT6HAO61NQLSX4Q' where id=5; -update noar ti set b0='LWF1RT6HAO61NQLSX4Q' where id=5; -update noar tt set v0='7U7YXPLPZTU0YWTF62GTY' where id=5; -update noar ti set v0='7U7YXPLPZTU0YWTF62GTY' where id=5; -update noar tt set b1='3COYWTUBNXWU7X7TWVK9VMAU1YFB' where id=5; -update noar ti set b1='3COYWTUBNXWU7X7TWVK9VMAU1YFB' where id=5; -update noar tt set v0='6QPMHGUWTKBKH4AN5NOID9F' where id=5; -update noar ti set v0='6QPMHGUWTKBKH4AN5NOID9F' where id=5; -update noar tt set b2='EC9BO0421XEECDWTKT0' where id=5; -update noar ti set b2='EC9BO0421XEECDWTKT0' where id=5; -update noar tt set v0='B16EWXV2LGK4VC7MR' where id=6; -update noar ti set v0='B16EWXV2LGK4VC7MR' where id=6; -update noar tt set b0='21YMLLW5I0751DD0QL8LF2TNZTF5' where id=6; -update noar ti set b0='21YMLLW5I0751DD0QL8LF2TNZTF5' where id=6; -update noar tt set v0='9Y80NY2KR11EOZQVYZEB' where id=6; -update noar ti set v0='9Y80NY2KR11EOZQVYZEB' where id=6; -update noar tt set b1='EDL7NLGZBGIODSCYAC3RLC5407FC' where id=6; -update noar ti set b1='EDL7NLGZBGIODSCYAC3RLC5407FC' where id=6; -update noar tt set v0='S' where id=6; -update noar ti set v0='S' where id=6; -update noar tt set b2='F0D2IUT8' where id=6; -update noar ti set b2='F0D2IUT8' where id=6; -update noar tt set v0='93LTA852LOLF0IESR722O61Y2VK' where id=7; -update noar ti set v0='93LTA852LOLF0IESR722O61Y2VK' where id=7; -update noar tt set b0='OVK9LD' where id=7; -update noar ti set b0='OVK9LD' where id=7; -update noar tt set v0='N4AFLHOQ4FHMG1NK6I9K8XD1816O9MJ0' where id=7; -update noar ti set v0='N4AFLHOQ4FHMG1NK6I9K8XD1816O9MJ0' where id=7; -update noar tt set b1='BPGSSJF0S7L3QETMS2QPI1QJSV8UCXSI' where id=7; -update noar ti set b1='BPGSSJF0S7L3QETMS2QPI1QJSV8UCXSI' where id=7; -update noar tt set v0='4GLFBFZ0GPO0GNAZ5K7UX' where id=7; -update noar ti set v0='4GLFBFZ0GPO0GNAZ5K7UX' where id=7; -update noar tt set b2='WVWQ2LLDE3VBP9P' where id=7; -update noar ti set b2='WVWQ2LLDE3VBP9P' where id=7; -update noar tt set v0='NQ6' where id=8; -update noar ti set v0='NQ6' where id=8; -update noar tt set b0='BOXGC4GCCCRQM6T0LDBPUJF75' where id=8; -update noar ti set b0='BOXGC4GCCCRQM6T0LDBPUJF75' where id=8; -update noar tt set v0='7QLX07FRSBDU38ORE' where id=8; -update noar ti set v0='7QLX07FRSBDU38ORE' where id=8; -update noar tt set b1='1ILLBG9' where id=8; -update noar ti set b1='1ILLBG9' where id=8; -update noar tt set v0='FDGID' where id=8; -update noar ti set v0='FDGID' where id=8; -update noar tt set b2='87ZTUHZWGN0CX0YNEOFHO8IXL' where id=8; -update noar ti set b2='87ZTUHZWGN0CX0YNEOFHO8IXL' where id=8; -update noar tt set v0='NKZR2PECZ' where id=9; -update noar ti set v0='NKZR2PECZ' where id=9; -update noar tt set b0='484DD78SBLNA35RJQBLVGQCVA1QL' where id=9; -update noar ti set b0='484DD78SBLNA35RJQBLVGQCVA1QL' where id=9; -update noar tt set v0='18X4UT9C0J' where id=9; -update noar ti set v0='18X4UT9C0J' where id=9; -update noar tt set b1='E3AYHM3R9W9OKRLVKDRVAGAXA8I' where id=9; -update noar ti set b1='E3AYHM3R9W9OKRLVKDRVAGAXA8I' where id=9; -update noar tt set v0='8N5JKPFXKDYCYKUCCOC' where id=9; -update noar ti set v0='8N5JKPFXKDYCYKUCCOC' where id=9; -update noar tt set b2='SCY40ATF' where id=9; -update noar ti set b2='SCY40ATF' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - f0 int null, - v0 varchar(256) null, - b0 blob null, - b1 blob null, - b2 mediumblob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='4VBEPI09G8SPPCW5FXZHBLP' where id=1; -update noar ti set v0='4VBEPI09G8SPPCW5FXZHBLP' where id=1; -update noar tt set b0='381N4RLRMC0D' where id=1; -update noar ti set b0='381N4RLRMC0D' where id=1; -update noar tt set v0='DHJ7C' where id=1; -update noar ti set v0='DHJ7C' where id=1; -update noar tt set b1='LU07O32FRLKX9HOGTN3C2O' where id=1; -update noar ti set b1='LU07O32FRLKX9HOGTN3C2O' where id=1; -update noar tt set v0='I58R' where id=1; -update noar ti set v0='I58R' where id=1; -update noar tt set b2='H12L' where id=1; -update noar ti set b2='H12L' where id=1; -update noar tt set v0='S4E0LXUEP4TR7' where id=2; -update noar ti set v0='S4E0LXUEP4TR7' where id=2; -update noar tt set b0='LD' where id=2; -update noar ti set b0='LD' where id=2; -update noar tt set v0='13JTXWVY' where id=2; -update noar ti set v0='13JTXWVY' where id=2; -update noar tt set b1='264Z2OB6' where id=2; -update noar ti set b1='264Z2OB6' where id=2; -update noar tt set v0='7GSMC2W1SF05' where id=2; -update noar ti set v0='7GSMC2W1SF05' where id=2; -update noar tt set b2='P2KSDF6IVFF4VJAHV33OOHO8FUXWFV' where id=2; -update noar ti set b2='P2KSDF6IVFF4VJAHV33OOHO8FUXWFV' where id=2; -update noar tt set v0='MQQQQ' where id=3; -update noar ti set v0='MQQQQ' where id=3; -update noar tt set b0='VARZC6C3Y' where id=3; -update noar ti set b0='VARZC6C3Y' where id=3; -update noar tt set v0='94ZHFDNQC5W09VUX8' where id=3; -update noar ti set v0='94ZHFDNQC5W09VUX8' where id=3; -update noar tt set b1='SZFP38YO' where id=3; -update noar ti set b1='SZFP38YO' where id=3; -update noar tt set v0='B3MHLTZF4D4W5M3ZBI47RIL' where id=3; -update noar ti set v0='B3MHLTZF4D4W5M3ZBI47RIL' where id=3; -update noar tt set b2='94CW2MS7OBE27RATU2K' where id=3; -update noar ti set b2='94CW2MS7OBE27RATU2K' where id=3; -update noar tt set v0='3VGGAK2BTYF' where id=4; -update noar ti set v0='3VGGAK2BTYF' where id=4; -update noar tt set b0='TBWDT3KUPZ9EHA0Y3YK2BRL3B149F' where id=4; -update noar ti set b0='TBWDT3KUPZ9EHA0Y3YK2BRL3B149F' where id=4; -update noar tt set v0='JPUAMYXPU' where id=4; -update noar ti set v0='JPUAMYXPU' where id=4; -update noar tt set b1='M5186X143OMHX2Q98B' where id=4; -update noar ti set b1='M5186X143OMHX2Q98B' where id=4; -update noar tt set v0='ZFDZ7' where id=4; -update noar ti set v0='ZFDZ7' where id=4; -update noar tt set b2='NCCKPHFEGEPORMH4V' where id=4; -update noar ti set b2='NCCKPHFEGEPORMH4V' where id=4; -update noar tt set v0='GHQAPQOX6JEV40OEJRPUP' where id=5; -update noar ti set v0='GHQAPQOX6JEV40OEJRPUP' where id=5; -update noar tt set b0='SMGA31AX' where id=5; -update noar ti set b0='SMGA31AX' where id=5; -update noar tt set v0='3A15NHFIOVRW99JYUA7JQ9Y15XGX9LA' where id=5; -update noar ti set v0='3A15NHFIOVRW99JYUA7JQ9Y15XGX9LA' where id=5; -update noar tt set b1='BA' where id=5; -update noar ti set b1='BA' where id=5; -update noar tt set v0='HSCKK0YJLWM2E1ZFYWEK7AR75FKNXHB' where id=5; -update noar ti set v0='HSCKK0YJLWM2E1ZFYWEK7AR75FKNXHB' where id=5; -update noar tt set b2='4IE6YTZW3CTEGXJIEYQALLFLEM0B78Q' where id=5; -update noar ti set b2='4IE6YTZW3CTEGXJIEYQALLFLEM0B78Q' where id=5; -update noar tt set v0='CBCSJHTN2BBEAJ9V4QEIYTZ' where id=6; -update noar ti set v0='CBCSJHTN2BBEAJ9V4QEIYTZ' where id=6; -update noar tt set b0='RKUVTNPX4GR1GAX8BS2IT93U3' where id=6; -update noar ti set b0='RKUVTNPX4GR1GAX8BS2IT93U3' where id=6; -update noar tt set v0='UQXMATR53GSSZMHQKTE4M4N3626E6ZU' where id=6; -update noar ti set v0='UQXMATR53GSSZMHQKTE4M4N3626E6ZU' where id=6; -update noar tt set b1='ZW' where id=6; -update noar ti set b1='ZW' where id=6; -update noar tt set v0='6J9B03ZBROAKM4HQQQ959FGUNOM7V' where id=6; -update noar ti set v0='6J9B03ZBROAKM4HQQQ959FGUNOM7V' where id=6; -update noar tt set b2='07RU3USF09KPQZ7' where id=6; -update noar ti set b2='07RU3USF09KPQZ7' where id=6; -update noar tt set v0='RLL8IP6UB' where id=7; -update noar ti set v0='RLL8IP6UB' where id=7; -update noar tt set b0='P3DQGX3L' where id=7; -update noar ti set b0='P3DQGX3L' where id=7; -update noar tt set v0='95M3L' where id=7; -update noar ti set v0='95M3L' where id=7; -update noar tt set b1='VDCAY' where id=7; -update noar ti set b1='VDCAY' where id=7; -update noar tt set v0='7WR5VZBXN0SVY0DD7UXTPQYHKDC2W' where id=7; -update noar ti set v0='7WR5VZBXN0SVY0DD7UXTPQYHKDC2W' where id=7; -update noar tt set b2='X51HMOWCX' where id=7; -update noar ti set b2='X51HMOWCX' where id=7; -update noar tt set v0='VPTFJZK29D3MMNMD77E0UT0J' where id=8; -update noar ti set v0='VPTFJZK29D3MMNMD77E0UT0J' where id=8; -update noar tt set b0='HB' where id=8; -update noar ti set b0='HB' where id=8; -update noar tt set v0='N3HTNHHNY9BUUM5QQ3MTLMBJSDH' where id=8; -update noar ti set v0='N3HTNHHNY9BUUM5QQ3MTLMBJSDH' where id=8; -update noar tt set b1='MWHWBCVEFHQVYVQBBWF8XZCC3' where id=8; -update noar ti set b1='MWHWBCVEFHQVYVQBBWF8XZCC3' where id=8; -update noar tt set v0='TZO' where id=8; -update noar ti set v0='TZO' where id=8; -update noar tt set b2='6LK6355' where id=8; -update noar ti set b2='6LK6355' where id=8; -update noar tt set v0='D55XI3MV' where id=9; -update noar ti set v0='D55XI3MV' where id=9; -update noar tt set b0='3XNAX8XQ' where id=9; -update noar ti set b0='3XNAX8XQ' where id=9; -update noar tt set v0='623IIHDLWODSZUZ70NCJRD1SW6WD' where id=9; -update noar ti set v0='623IIHDLWODSZUZ70NCJRD1SW6WD' where id=9; -update noar tt set b1='C8MXNIQUVCCV2USUQDALLU7ED0YYMAW' where id=9; -update noar ti set b1='C8MXNIQUVCCV2USUQDALLU7ED0YYMAW' where id=9; -update noar tt set v0='8K8' where id=9; -update noar ti set v0='8K8' where id=9; -update noar tt set b2='HM48O4S280' where id=9; -update noar ti set b2='HM48O4S280' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - f0 int not null, - v0 varchar(32) not null, - b0 blob not null, - b1 blob not null, - b2 mediumblob not null -) engine=tokudb; -insert into tt values (1,0,'','','',''); -insert into tt values (2,0,'','','',''); -insert into tt values (3,0,'','','',''); -insert into tt values (4,0,'','','',''); -insert into tt values (5,0,'','','',''); -insert into tt values (6,0,'','','',''); -insert into tt values (7,0,'','','',''); -insert into tt values (8,0,'','','',''); -insert into tt values (9,0,'','','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='B2JJ0IGT466DD342NIHJ400FPS8S' where id=1; -update noar ti set v0='B2JJ0IGT466DD342NIHJ400FPS8S' where id=1; -update noar tt set b0='FO755' where id=1; -update noar ti set b0='FO755' where id=1; -update noar tt set v0='89' where id=1; -update noar ti set v0='89' where id=1; -update noar tt set b1='7946EO9X7PL581IWEZ3QTRXSK6A11' where id=1; -update noar ti set b1='7946EO9X7PL581IWEZ3QTRXSK6A11' where id=1; -update noar tt set v0='COQN6PNGXOQXES6' where id=1; -update noar ti set v0='COQN6PNGXOQXES6' where id=1; -update noar tt set b2='XG9D3WDSSW5Z21EUEQEJ892RQ' where id=1; -update noar ti set b2='XG9D3WDSSW5Z21EUEQEJ892RQ' where id=1; -update noar tt set v0='V' where id=2; -update noar ti set v0='V' where id=2; -update noar tt set b0='NIN' where id=2; -update noar ti set b0='NIN' where id=2; -update noar tt set v0='Z5ZTHUP' where id=2; -update noar ti set v0='Z5ZTHUP' where id=2; -update noar tt set b1='SHSQU3S' where id=2; -update noar ti set b1='SHSQU3S' where id=2; -update noar tt set v0='ZSTBY' where id=2; -update noar ti set v0='ZSTBY' where id=2; -update noar tt set b2='DNAHKYH' where id=2; -update noar ti set b2='DNAHKYH' where id=2; -update noar tt set v0='1E' where id=3; -update noar ti set v0='1E' where id=3; -update noar tt set b0='9NWJEJLUQ3KAVOGLK' where id=3; -update noar ti set b0='9NWJEJLUQ3KAVOGLK' where id=3; -update noar tt set v0='NOQSB3S67WPMDZM6A036SMYSGU80B' where id=3; -update noar ti set v0='NOQSB3S67WPMDZM6A036SMYSGU80B' where id=3; -update noar tt set b1='8I7YP47E3CQBFANVYEKZOZLJP8' where id=3; -update noar ti set b1='8I7YP47E3CQBFANVYEKZOZLJP8' where id=3; -update noar tt set v0='LZ9ETUNO1IWKIAK0ZRDAB3O96A' where id=3; -update noar ti set v0='LZ9ETUNO1IWKIAK0ZRDAB3O96A' where id=3; -update noar tt set b2='64I3VO6HNCPPA0DE1PX5S' where id=3; -update noar ti set b2='64I3VO6HNCPPA0DE1PX5S' where id=3; -update noar tt set v0='PC' where id=4; -update noar ti set v0='PC' where id=4; -update noar tt set b0='JOCZYPPDR7NFLDAT5IG1' where id=4; -update noar ti set b0='JOCZYPPDR7NFLDAT5IG1' where id=4; -update noar tt set v0='URXU7X4PYID73D97NZ50T86CX4OPJ4' where id=4; -update noar ti set v0='URXU7X4PYID73D97NZ50T86CX4OPJ4' where id=4; -update noar tt set b1='0S7UQTKIGW' where id=4; -update noar ti set b1='0S7UQTKIGW' where id=4; -update noar tt set v0='O5F8E7YXH2D6063EZ20WUQCN2DW' where id=4; -update noar ti set v0='O5F8E7YXH2D6063EZ20WUQCN2DW' where id=4; -update noar tt set b2='K' where id=4; -update noar ti set b2='K' where id=4; -update noar tt set v0='7YHFQU3I4EH17J' where id=5; -update noar ti set v0='7YHFQU3I4EH17J' where id=5; -update noar tt set b0='JAALZOAOZI17GTLPFQTCWR' where id=5; -update noar ti set b0='JAALZOAOZI17GTLPFQTCWR' where id=5; -update noar tt set v0='4U8709VO9FIYKA7T9Z99PS59' where id=5; -update noar ti set v0='4U8709VO9FIYKA7T9Z99PS59' where id=5; -update noar tt set b1='UXW7' where id=5; -update noar ti set b1='UXW7' where id=5; -update noar tt set v0='YVFKHHOIEIMABGM4WZRX1O9' where id=5; -update noar ti set v0='YVFKHHOIEIMABGM4WZRX1O9' where id=5; -update noar tt set b2='3GCA4MWQN128COX' where id=5; -update noar ti set b2='3GCA4MWQN128COX' where id=5; -update noar tt set v0='ZYR9GELTCZP2NWRW5QOTLLS3ZF' where id=6; -update noar ti set v0='ZYR9GELTCZP2NWRW5QOTLLS3ZF' where id=6; -update noar tt set b0='BTMAHZR2EK3MAIUXOX8E7EG' where id=6; -update noar ti set b0='BTMAHZR2EK3MAIUXOX8E7EG' where id=6; -update noar tt set v0='UBVGUXSKIE68E1CG7WOKZRJ1QSBPA252' where id=6; -update noar ti set v0='UBVGUXSKIE68E1CG7WOKZRJ1QSBPA252' where id=6; -update noar tt set b1='KQ7OEZ03N8YPTLINJ7' where id=6; -update noar ti set b1='KQ7OEZ03N8YPTLINJ7' where id=6; -update noar tt set v0='0XMSEDDO7HX8GH1QM6117FJ6YK8VTM' where id=6; -update noar ti set v0='0XMSEDDO7HX8GH1QM6117FJ6YK8VTM' where id=6; -update noar tt set b2='RWAT2ATCZWTNLY9A91RK79C' where id=6; -update noar ti set b2='RWAT2ATCZWTNLY9A91RK79C' where id=6; -update noar tt set v0='4A5G3ZF7L9RXF' where id=7; -update noar ti set v0='4A5G3ZF7L9RXF' where id=7; -update noar tt set b0='FDVTNNXXLTQB3HKOPMA34SFHVRGC' where id=7; -update noar ti set b0='FDVTNNXXLTQB3HKOPMA34SFHVRGC' where id=7; -update noar tt set v0='O545BWFODY258MOQWZ26KP8Y4QPYY7B' where id=7; -update noar ti set v0='O545BWFODY258MOQWZ26KP8Y4QPYY7B' where id=7; -update noar tt set b1='60YVF7NMPB' where id=7; -update noar ti set b1='60YVF7NMPB' where id=7; -update noar tt set v0='OHTHMKDOEGGX9M7VLR64FK4M2DUB' where id=7; -update noar ti set v0='OHTHMKDOEGGX9M7VLR64FK4M2DUB' where id=7; -update noar tt set b2='NLDSV2MQM36K02HEYDSD' where id=7; -update noar ti set b2='NLDSV2MQM36K02HEYDSD' where id=7; -update noar tt set v0='NSVK00ZZHXTIDSF1' where id=8; -update noar ti set v0='NSVK00ZZHXTIDSF1' where id=8; -update noar tt set b0='OZ59JEWF82GC2DJ1' where id=8; -update noar ti set b0='OZ59JEWF82GC2DJ1' where id=8; -update noar tt set v0='6M8' where id=8; -update noar ti set v0='6M8' where id=8; -update noar tt set b1='TU5AVI81UW' where id=8; -update noar ti set b1='TU5AVI81UW' where id=8; -update noar tt set v0='5WHYY1VSTGCA62RV0' where id=8; -update noar ti set v0='5WHYY1VSTGCA62RV0' where id=8; -update noar tt set b2='9PJX6OWQDJLM' where id=8; -update noar ti set b2='9PJX6OWQDJLM' where id=8; -update noar tt set v0='VZ' where id=9; -update noar ti set v0='VZ' where id=9; -update noar tt set b0='P0' where id=9; -update noar ti set b0='P0' where id=9; -update noar tt set v0='L71F' where id=9; -update noar ti set v0='L71F' where id=9; -update noar tt set b1='7GTH98IMQ0U3ARQCD1XHK55RU' where id=9; -update noar ti set b1='7GTH98IMQ0U3ARQCD1XHK55RU' where id=9; -update noar tt set v0='VVQJPK9ZTNHS64JB3ILOAQP' where id=9; -update noar ti set v0='VVQJPK9ZTNHS64JB3ILOAQP' where id=9; -update noar tt set b2='EW05R5GNAKQQNJRGVUY38Y7' where id=9; -update noar ti set b2='EW05R5GNAKQQNJRGVUY38Y7' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - f0 int not null, - v0 varchar(256) not null, - b0 blob not null, - b1 blob not null, - b2 mediumblob not null -) engine=tokudb; -insert into tt values (1,0,'','','',''); -insert into tt values (2,0,'','','',''); -insert into tt values (3,0,'','','',''); -insert into tt values (4,0,'','','',''); -insert into tt values (5,0,'','','',''); -insert into tt values (6,0,'','','',''); -insert into tt values (7,0,'','','',''); -insert into tt values (8,0,'','','',''); -insert into tt values (9,0,'','','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='SA3X4JGOB68SJY9L5HH' where id=1; -update noar ti set v0='SA3X4JGOB68SJY9L5HH' where id=1; -update noar tt set b0='MDBK6YRQI3R883' where id=1; -update noar ti set b0='MDBK6YRQI3R883' where id=1; -update noar tt set v0='QRY6Y5CO8TA' where id=1; -update noar ti set v0='QRY6Y5CO8TA' where id=1; -update noar tt set b1='QLAZUHHET2' where id=1; -update noar ti set b1='QLAZUHHET2' where id=1; -update noar tt set v0='SZ5M12GN5B6DGH3329T884PHFYEMUGH' where id=1; -update noar ti set v0='SZ5M12GN5B6DGH3329T884PHFYEMUGH' where id=1; -update noar tt set b2='HQMX8QA' where id=1; -update noar ti set b2='HQMX8QA' where id=1; -update noar tt set v0='MA7W92O6V4W3KB9JMJVU' where id=2; -update noar ti set v0='MA7W92O6V4W3KB9JMJVU' where id=2; -update noar tt set b0='6RWRVGTSP2SXMPRQMV608NV' where id=2; -update noar ti set b0='6RWRVGTSP2SXMPRQMV608NV' where id=2; -update noar tt set v0='7KHCP15BW5NCCG' where id=2; -update noar ti set v0='7KHCP15BW5NCCG' where id=2; -update noar tt set b1='2H77WGLS' where id=2; -update noar ti set b1='2H77WGLS' where id=2; -update noar tt set v0='6Z2Q2ZVR8G2T9HW0OA0' where id=2; -update noar ti set v0='6Z2Q2ZVR8G2T9HW0OA0' where id=2; -update noar tt set b2='9KM7P452BH00P4S6J' where id=2; -update noar ti set b2='9KM7P452BH00P4S6J' where id=2; -update noar tt set v0='OI' where id=3; -update noar ti set v0='OI' where id=3; -update noar tt set b0='HKHGIYJ9D8OMDHT' where id=3; -update noar ti set b0='HKHGIYJ9D8OMDHT' where id=3; -update noar tt set v0='KXENQHSIISGF2UVUAA1C' where id=3; -update noar ti set v0='KXENQHSIISGF2UVUAA1C' where id=3; -update noar tt set b1='RFEAWVGCKFFWT2FD5' where id=3; -update noar ti set b1='RFEAWVGCKFFWT2FD5' where id=3; -update noar tt set v0='WGOPQYEVF59CN4AC4FYUPH3N' where id=3; -update noar ti set v0='WGOPQYEVF59CN4AC4FYUPH3N' where id=3; -update noar tt set b2='IC9KI8QNHH4YE8DJOW8RFVH' where id=3; -update noar ti set b2='IC9KI8QNHH4YE8DJOW8RFVH' where id=3; -update noar tt set v0='L' where id=4; -update noar ti set v0='L' where id=4; -update noar tt set b0='SZGCK' where id=4; -update noar ti set b0='SZGCK' where id=4; -update noar tt set v0='U3UI6YWDMOF55ONPCYL' where id=4; -update noar ti set v0='U3UI6YWDMOF55ONPCYL' where id=4; -update noar tt set b1='H332P8KJISM69S3VHN3Y' where id=4; -update noar ti set b1='H332P8KJISM69S3VHN3Y' where id=4; -update noar tt set v0='TDEDM0BJUP0VDDQZIU009AZ2CNZDUB' where id=4; -update noar ti set v0='TDEDM0BJUP0VDDQZIU009AZ2CNZDUB' where id=4; -update noar tt set b2='AGF1441A4990UCXPN' where id=4; -update noar ti set b2='AGF1441A4990UCXPN' where id=4; -update noar tt set v0='GIRGT90YQ1VM9JJ3PGCZHKPSN' where id=5; -update noar ti set v0='GIRGT90YQ1VM9JJ3PGCZHKPSN' where id=5; -update noar tt set b0='CDDA4VW6N38CNX2V3MD' where id=5; -update noar ti set b0='CDDA4VW6N38CNX2V3MD' where id=5; -update noar tt set v0='FKGNWPUYDNM5YQPHWD74MCI' where id=5; -update noar ti set v0='FKGNWPUYDNM5YQPHWD74MCI' where id=5; -update noar tt set b1='5ZMOIGPW6JGFRYHEFZVNG9B77QTFZ' where id=5; -update noar ti set b1='5ZMOIGPW6JGFRYHEFZVNG9B77QTFZ' where id=5; -update noar tt set v0='PD0H55' where id=5; -update noar ti set v0='PD0H55' where id=5; -update noar tt set b2='OTW' where id=5; -update noar ti set b2='OTW' where id=5; -update noar tt set v0='OIKN0KUSI7XLZM7M' where id=6; -update noar ti set v0='OIKN0KUSI7XLZM7M' where id=6; -update noar tt set b0='LGG9X8' where id=6; -update noar ti set b0='LGG9X8' where id=6; -update noar tt set v0='JIF0M0ODF9FDON4SE0GRI4E' where id=6; -update noar ti set v0='JIF0M0ODF9FDON4SE0GRI4E' where id=6; -update noar tt set b1='7JW506T2RLP7ITWGWS4LC300C' where id=6; -update noar ti set b1='7JW506T2RLP7ITWGWS4LC300C' where id=6; -update noar tt set v0='8JYGGZ1OXWZWU' where id=6; -update noar ti set v0='8JYGGZ1OXWZWU' where id=6; -update noar tt set b2='XOUNAM288C3N7GTYIG494KGPZJ4O' where id=6; -update noar ti set b2='XOUNAM288C3N7GTYIG494KGPZJ4O' where id=6; -update noar tt set v0='ULCNOU1BOU6L900G15Q3W' where id=7; -update noar ti set v0='ULCNOU1BOU6L900G15Q3W' where id=7; -update noar tt set b0='WRSR0UPPI' where id=7; -update noar ti set b0='WRSR0UPPI' where id=7; -update noar tt set v0='HS6S2L897G2' where id=7; -update noar ti set v0='HS6S2L897G2' where id=7; -update noar tt set b1='469U152024V' where id=7; -update noar ti set b1='469U152024V' where id=7; -update noar tt set v0='I775LNVNL22PT' where id=7; -update noar ti set v0='I775LNVNL22PT' where id=7; -update noar tt set b2='RYNAD77YXGVFD6G' where id=7; -update noar ti set b2='RYNAD77YXGVFD6G' where id=7; -update noar tt set v0='ZVBNJMMKJY4OTM' where id=8; -update noar ti set v0='ZVBNJMMKJY4OTM' where id=8; -update noar tt set b0='4FR8UG043GI5J29TZFM5XI4QFRO0DG2' where id=8; -update noar ti set b0='4FR8UG043GI5J29TZFM5XI4QFRO0DG2' where id=8; -update noar tt set v0='LOV9' where id=8; -update noar ti set v0='LOV9' where id=8; -update noar tt set b1='9TXUMOBU' where id=8; -update noar ti set b1='9TXUMOBU' where id=8; -update noar tt set v0='U8A3Z6S9LPOG5ROV9RS2' where id=8; -update noar ti set v0='U8A3Z6S9LPOG5ROV9RS2' where id=8; -update noar tt set b2='RDT9OVGBGGT8YMKR9XKKD' where id=8; -update noar ti set b2='RDT9OVGBGGT8YMKR9XKKD' where id=8; -update noar tt set v0='T1E45YGYID0C' where id=9; -update noar ti set v0='T1E45YGYID0C' where id=9; -update noar tt set b0='51G51Z38LETUJVGQ4GTB884G5' where id=9; -update noar ti set b0='51G51Z38LETUJVGQ4GTB884G5' where id=9; -update noar tt set v0='N5PR7Y6CEOXCAHZ68XSRFPGR76' where id=9; -update noar ti set v0='N5PR7Y6CEOXCAHZ68XSRFPGR76' where id=9; -update noar tt set b1='59WZ35V8VSGNBMJPTXS0YMD0Z2XUME' where id=9; -update noar ti set b1='59WZ35V8VSGNBMJPTXS0YMD0Z2XUME' where id=9; -update noar tt set v0='OSCI2H1G2BECV97JMQIG2SE88LW89T4M' where id=9; -update noar ti set v0='OSCI2H1G2BECV97JMQIG2SE88LW89T4M' where id=9; -update noar tt set b2='J1' where id=9; -update noar ti set b2='J1' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - f0 int null, - v0 varchar(32) null, - b0 blob null, - b1 blob null, - b2 longblob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='XZSOYQBUV8XCR7DD7S' where id=1; -update noar ti set v0='XZSOYQBUV8XCR7DD7S' where id=1; -update noar tt set b0='XM5A45SR6JKDGOQ7NWLYGXM4BT7WQ5' where id=1; -update noar ti set b0='XM5A45SR6JKDGOQ7NWLYGXM4BT7WQ5' where id=1; -update noar tt set v0='74AV89LKECW3' where id=1; -update noar ti set v0='74AV89LKECW3' where id=1; -update noar tt set b1='UEURZIUTR' where id=1; -update noar ti set b1='UEURZIUTR' where id=1; -update noar tt set v0='35JKMMRB7230OXVD5KDXBLYYSGNP5' where id=1; -update noar ti set v0='35JKMMRB7230OXVD5KDXBLYYSGNP5' where id=1; -update noar tt set b2='KY83QPADSIYWXPL0D5DBHUMH4L4O4' where id=1; -update noar ti set b2='KY83QPADSIYWXPL0D5DBHUMH4L4O4' where id=1; -update noar tt set v0='AEHZWNJ3L' where id=2; -update noar ti set v0='AEHZWNJ3L' where id=2; -update noar tt set b0='BIJ' where id=2; -update noar ti set b0='BIJ' where id=2; -update noar tt set v0='6' where id=2; -update noar ti set v0='6' where id=2; -update noar tt set b1='EQRCHAIQKLLTW3M07DOCFXK1O' where id=2; -update noar ti set b1='EQRCHAIQKLLTW3M07DOCFXK1O' where id=2; -update noar tt set v0='1K' where id=2; -update noar ti set v0='1K' where id=2; -update noar tt set b2='6S2GLXJSGK8' where id=2; -update noar ti set b2='6S2GLXJSGK8' where id=2; -update noar tt set v0='LYMQRDOJ229DZ55YCC9CCGVC' where id=3; -update noar ti set v0='LYMQRDOJ229DZ55YCC9CCGVC' where id=3; -update noar tt set b0='YVX5GXUVV8BGAZ8JSN8S6QD2L519' where id=3; -update noar ti set b0='YVX5GXUVV8BGAZ8JSN8S6QD2L519' where id=3; -update noar tt set v0='46R8WYY8LMLFFF' where id=3; -update noar ti set v0='46R8WYY8LMLFFF' where id=3; -update noar tt set b1='3Z6FBHA2LF8QK8N7XOLTBKZ6P' where id=3; -update noar ti set b1='3Z6FBHA2LF8QK8N7XOLTBKZ6P' where id=3; -update noar tt set v0='O9Q6MNEL7JH8Y3ND9SJYP2ASHXT7BVZ' where id=3; -update noar ti set v0='O9Q6MNEL7JH8Y3ND9SJYP2ASHXT7BVZ' where id=3; -update noar tt set b2='8XV0K6BP' where id=3; -update noar ti set b2='8XV0K6BP' where id=3; -update noar tt set v0='67' where id=4; -update noar ti set v0='67' where id=4; -update noar tt set b0='EZYTLWP8JKROGYM4TYP' where id=4; -update noar ti set b0='EZYTLWP8JKROGYM4TYP' where id=4; -update noar tt set v0='OWYZHKL4RS79SSXKNOTT7G6T4B029' where id=4; -update noar ti set v0='OWYZHKL4RS79SSXKNOTT7G6T4B029' where id=4; -update noar tt set b1='AXCJMJ9I9QAANRQ' where id=4; -update noar ti set b1='AXCJMJ9I9QAANRQ' where id=4; -update noar tt set v0='86ZYTIALIYTFWKL6KX' where id=4; -update noar ti set v0='86ZYTIALIYTFWKL6KX' where id=4; -update noar tt set b2='4' where id=4; -update noar ti set b2='4' where id=4; -update noar tt set v0='OLOJE8RCKL1OEJ' where id=5; -update noar ti set v0='OLOJE8RCKL1OEJ' where id=5; -update noar tt set b0='0ZTDBK1T3XMM' where id=5; -update noar ti set b0='0ZTDBK1T3XMM' where id=5; -update noar tt set v0='KHSIRMYH1FXRWTCWYYOR375U13N38QBL' where id=5; -update noar ti set v0='KHSIRMYH1FXRWTCWYYOR375U13N38QBL' where id=5; -update noar tt set b1='GNG2TMEPDG7847VW' where id=5; -update noar ti set b1='GNG2TMEPDG7847VW' where id=5; -update noar tt set v0='4Y79BZ6' where id=5; -update noar ti set v0='4Y79BZ6' where id=5; -update noar tt set b2='7RPOLXS4GFG8CEVYAD7LEE0FCDZHSNY' where id=5; -update noar ti set b2='7RPOLXS4GFG8CEVYAD7LEE0FCDZHSNY' where id=5; -update noar tt set v0='PMU7301VX' where id=6; -update noar ti set v0='PMU7301VX' where id=6; -update noar tt set b0='ZDNEEOJ9IUU49THGVGEJ8W' where id=6; -update noar ti set b0='ZDNEEOJ9IUU49THGVGEJ8W' where id=6; -update noar tt set v0='KZD' where id=6; -update noar ti set v0='KZD' where id=6; -update noar tt set b1='YWQI579QM13IYIJHQ1KOYHFK8RM9K' where id=6; -update noar ti set b1='YWQI579QM13IYIJHQ1KOYHFK8RM9K' where id=6; -update noar tt set v0='DE16UEYJBYCYQ0F' where id=6; -update noar ti set v0='DE16UEYJBYCYQ0F' where id=6; -update noar tt set b2='AYB1X13P5P397D' where id=6; -update noar ti set b2='AYB1X13P5P397D' where id=6; -update noar tt set v0='VP6I3BWBWZZ8FO0Z' where id=7; -update noar ti set v0='VP6I3BWBWZZ8FO0Z' where id=7; -update noar tt set b0='SWVIGSPVUE0WI82DDFQQ2F4YYAXCRE' where id=7; -update noar ti set b0='SWVIGSPVUE0WI82DDFQQ2F4YYAXCRE' where id=7; -update noar tt set v0='72231WR5LUPEOM7J9UWQKJ6' where id=7; -update noar ti set v0='72231WR5LUPEOM7J9UWQKJ6' where id=7; -update noar tt set b1='ZKLUL7PU16AT2FSY02VJ77UE1BLUTE3' where id=7; -update noar ti set b1='ZKLUL7PU16AT2FSY02VJ77UE1BLUTE3' where id=7; -update noar tt set v0='TQ68D6UR48TA' where id=7; -update noar ti set v0='TQ68D6UR48TA' where id=7; -update noar tt set b2='8K6VCI2ZHYEPGKBC84Q5LR1' where id=7; -update noar ti set b2='8K6VCI2ZHYEPGKBC84Q5LR1' where id=7; -update noar tt set v0='ERW2BHQPAV9UFD4ZNYRXHALG95H1YN' where id=8; -update noar ti set v0='ERW2BHQPAV9UFD4ZNYRXHALG95H1YN' where id=8; -update noar tt set b0='3JX94NKAISVA0W' where id=8; -update noar ti set b0='3JX94NKAISVA0W' where id=8; -update noar tt set v0='RJ4E0UWMPONKU0IHRLW79H7R0KPMZZOY' where id=8; -update noar ti set v0='RJ4E0UWMPONKU0IHRLW79H7R0KPMZZOY' where id=8; -update noar tt set b1='0QHFWBDNQZHKUIPJDHQOH8RV0IR6Y8VA' where id=8; -update noar ti set b1='0QHFWBDNQZHKUIPJDHQOH8RV0IR6Y8VA' where id=8; -update noar tt set v0='RSQNOGQGXU6J89TZEEJYRL4920A6ZJU1' where id=8; -update noar ti set v0='RSQNOGQGXU6J89TZEEJYRL4920A6ZJU1' where id=8; -update noar tt set b2='XCPLKDR5M7J0NYHBI6Z6' where id=8; -update noar ti set b2='XCPLKDR5M7J0NYHBI6Z6' where id=8; -update noar tt set v0='SKIHNALLGOL6K58E70G5SIA6HNEHW' where id=9; -update noar ti set v0='SKIHNALLGOL6K58E70G5SIA6HNEHW' where id=9; -update noar tt set b0='01CPNP6EORHNBG5VQA48KYXJXO2WJ' where id=9; -update noar ti set b0='01CPNP6EORHNBG5VQA48KYXJXO2WJ' where id=9; -update noar tt set v0='0XNX8NBSN' where id=9; -update noar ti set v0='0XNX8NBSN' where id=9; -update noar tt set b1='9HCNW4WI3GFHY0RHCA' where id=9; -update noar ti set b1='9HCNW4WI3GFHY0RHCA' where id=9; -update noar tt set v0='XBU93Q3RFISOBT3283Q9' where id=9; -update noar ti set v0='XBU93Q3RFISOBT3283Q9' where id=9; -update noar tt set b2='PGWTKEJI58S1X3GZL9QW' where id=9; -update noar ti set b2='PGWTKEJI58S1X3GZL9QW' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - f0 int null, - v0 varchar(256) null, - b0 blob null, - b1 blob null, - b2 longblob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='5Z6RPD3X' where id=1; -update noar ti set v0='5Z6RPD3X' where id=1; -update noar tt set b0='UCT91WU' where id=1; -update noar ti set b0='UCT91WU' where id=1; -update noar tt set v0='77HADWM7P6HD2' where id=1; -update noar ti set v0='77HADWM7P6HD2' where id=1; -update noar tt set b1='TYYGFRN0NJWVOR1GXG59VGFST47PEL2J' where id=1; -update noar ti set b1='TYYGFRN0NJWVOR1GXG59VGFST47PEL2J' where id=1; -update noar tt set v0='N7HX0T9W61WDKUBJ7XXH2T8' where id=1; -update noar ti set v0='N7HX0T9W61WDKUBJ7XXH2T8' where id=1; -update noar tt set b2='C7P2IJCXUQ' where id=1; -update noar ti set b2='C7P2IJCXUQ' where id=1; -update noar tt set v0='1GUS2YRG' where id=2; -update noar ti set v0='1GUS2YRG' where id=2; -update noar tt set b0='T3JX3WRU3ZZ' where id=2; -update noar ti set b0='T3JX3WRU3ZZ' where id=2; -update noar tt set v0='1QHPG6' where id=2; -update noar ti set v0='1QHPG6' where id=2; -update noar tt set b1='QYET3NE' where id=2; -update noar ti set b1='QYET3NE' where id=2; -update noar tt set v0='FGB16UNM0EUVAVK0UANCROUTT4X' where id=2; -update noar ti set v0='FGB16UNM0EUVAVK0UANCROUTT4X' where id=2; -update noar tt set b2='L0N0DEAD' where id=2; -update noar ti set b2='L0N0DEAD' where id=2; -update noar tt set v0='RPJA1IVLHM3S0XFR9BOGFO' where id=3; -update noar ti set v0='RPJA1IVLHM3S0XFR9BOGFO' where id=3; -update noar tt set b0='W71K5VTHQAPL921M0ZF0CO23MCDMFXSU' where id=3; -update noar ti set b0='W71K5VTHQAPL921M0ZF0CO23MCDMFXSU' where id=3; -update noar tt set v0='EEOSSHLVQQ67BHT9H6BPMI7CLWXRTBYS' where id=3; -update noar ti set v0='EEOSSHLVQQ67BHT9H6BPMI7CLWXRTBYS' where id=3; -update noar tt set b1='8VYHSBMMEQM2Y' where id=3; -update noar ti set b1='8VYHSBMMEQM2Y' where id=3; -update noar tt set v0='33DIQ1PHA7JI38I4TTP6I1FUUNGQ' where id=3; -update noar ti set v0='33DIQ1PHA7JI38I4TTP6I1FUUNGQ' where id=3; -update noar tt set b2='AH1J86Q7HFPPTLFPVAR2TW8RJO' where id=3; -update noar ti set b2='AH1J86Q7HFPPTLFPVAR2TW8RJO' where id=3; -update noar tt set v0='V8DI4NXOZYJSKNY6ID6GWY00H5V851' where id=4; -update noar ti set v0='V8DI4NXOZYJSKNY6ID6GWY00H5V851' where id=4; -update noar tt set b0='BTM30K' where id=4; -update noar ti set b0='BTM30K' where id=4; -update noar tt set v0='6VL' where id=4; -update noar ti set v0='6VL' where id=4; -update noar tt set b1='DT4VOQ3Y' where id=4; -update noar ti set b1='DT4VOQ3Y' where id=4; -update noar tt set v0='HXNBMVA0' where id=4; -update noar ti set v0='HXNBMVA0' where id=4; -update noar tt set b2='488OR2H88P9WKDSJTJ3NN44XMD' where id=4; -update noar ti set b2='488OR2H88P9WKDSJTJ3NN44XMD' where id=4; -update noar tt set v0='49Y2C9C3FBN' where id=5; -update noar ti set v0='49Y2C9C3FBN' where id=5; -update noar tt set b0='2QLQPVAAIS3NXFEN2W9ELV4XW' where id=5; -update noar ti set b0='2QLQPVAAIS3NXFEN2W9ELV4XW' where id=5; -update noar tt set v0='XS54RZZBV0' where id=5; -update noar ti set v0='XS54RZZBV0' where id=5; -update noar tt set b1='S4A5X0EUT8ENTPUBKB5QP6LW8YOOFS' where id=5; -update noar ti set b1='S4A5X0EUT8ENTPUBKB5QP6LW8YOOFS' where id=5; -update noar tt set v0='ZNW2BYORH' where id=5; -update noar ti set v0='ZNW2BYORH' where id=5; -update noar tt set b2='6FW37Y57' where id=5; -update noar ti set b2='6FW37Y57' where id=5; -update noar tt set v0='9WNPHACK' where id=6; -update noar ti set v0='9WNPHACK' where id=6; -update noar tt set b0='ONDSRYWJL33TL6ZBI5UDCVXSRIJ7PYJ' where id=6; -update noar ti set b0='ONDSRYWJL33TL6ZBI5UDCVXSRIJ7PYJ' where id=6; -update noar tt set v0='4' where id=6; -update noar ti set v0='4' where id=6; -update noar tt set b1='QCHSP4DROBUU3JKEG1D59RZQFKDVM' where id=6; -update noar ti set b1='QCHSP4DROBUU3JKEG1D59RZQFKDVM' where id=6; -update noar tt set v0='P0HSXMTH763OZWWE3THANU4YMHSOC' where id=6; -update noar ti set v0='P0HSXMTH763OZWWE3THANU4YMHSOC' where id=6; -update noar tt set b2='MU9C' where id=6; -update noar ti set b2='MU9C' where id=6; -update noar tt set v0='2IDJ4YVYN71K2JCRIHFR' where id=7; -update noar ti set v0='2IDJ4YVYN71K2JCRIHFR' where id=7; -update noar tt set b0='085XPJMWG4EAVDICW3X2MV6' where id=7; -update noar ti set b0='085XPJMWG4EAVDICW3X2MV6' where id=7; -update noar tt set v0='I3G6' where id=7; -update noar ti set v0='I3G6' where id=7; -update noar tt set b1='03EV0G' where id=7; -update noar ti set b1='03EV0G' where id=7; -update noar tt set v0='ZRA' where id=7; -update noar ti set v0='ZRA' where id=7; -update noar tt set b2='1HO9ESSC7ZNQGMJS2WDUPQLXV' where id=7; -update noar ti set b2='1HO9ESSC7ZNQGMJS2WDUPQLXV' where id=7; -update noar tt set v0='BXCISN1XCRZPD47TEA7NG1Y1Q' where id=8; -update noar ti set v0='BXCISN1XCRZPD47TEA7NG1Y1Q' where id=8; -update noar tt set b0='KA0JJNF2GIK4N3RMMI' where id=8; -update noar ti set b0='KA0JJNF2GIK4N3RMMI' where id=8; -update noar tt set v0='5HJDWSFEXIA' where id=8; -update noar ti set v0='5HJDWSFEXIA' where id=8; -update noar tt set b1='Q2A1AF40HLUPBYF0DCJKNSC4' where id=8; -update noar ti set b1='Q2A1AF40HLUPBYF0DCJKNSC4' where id=8; -update noar tt set v0='UKT' where id=8; -update noar ti set v0='UKT' where id=8; -update noar tt set b2='O86UDDD7C7Z' where id=8; -update noar ti set b2='O86UDDD7C7Z' where id=8; -update noar tt set v0='L7TC' where id=9; -update noar ti set v0='L7TC' where id=9; -update noar tt set b0='3TD99CICLNR5YY2F7SE79REJSBJ6EQ' where id=9; -update noar ti set b0='3TD99CICLNR5YY2F7SE79REJSBJ6EQ' where id=9; -update noar tt set v0='RYM970UI38Z4PBQCDRLCLSXE14M0' where id=9; -update noar ti set v0='RYM970UI38Z4PBQCDRLCLSXE14M0' where id=9; -update noar tt set b1='65QVVVL6' where id=9; -update noar ti set b1='65QVVVL6' where id=9; -update noar tt set v0='MMVW0VMXH9C4EF8QZ' where id=9; -update noar ti set v0='MMVW0VMXH9C4EF8QZ' where id=9; -update noar tt set b2='OGXCDIENDG7HIS4V' where id=9; -update noar ti set b2='OGXCDIENDG7HIS4V' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - f0 int not null, - v0 varchar(32) not null, - b0 blob not null, - b1 blob not null, - b2 longblob not null -) engine=tokudb; -insert into tt values (1,0,'','','',''); -insert into tt values (2,0,'','','',''); -insert into tt values (3,0,'','','',''); -insert into tt values (4,0,'','','',''); -insert into tt values (5,0,'','','',''); -insert into tt values (6,0,'','','',''); -insert into tt values (7,0,'','','',''); -insert into tt values (8,0,'','','',''); -insert into tt values (9,0,'','','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='MRFA4NQEG02TO3MG482KEWAX84CFXQ' where id=1; -update noar ti set v0='MRFA4NQEG02TO3MG482KEWAX84CFXQ' where id=1; -update noar tt set b0='60J3CU4GW0C2UXD6G1G' where id=1; -update noar ti set b0='60J3CU4GW0C2UXD6G1G' where id=1; -update noar tt set v0='HBWJGUX36S5CMNC3159B62M5PA' where id=1; -update noar ti set v0='HBWJGUX36S5CMNC3159B62M5PA' where id=1; -update noar tt set b1='38XV123' where id=1; -update noar ti set b1='38XV123' where id=1; -update noar tt set v0='28LP' where id=1; -update noar ti set v0='28LP' where id=1; -update noar tt set b2='V' where id=1; -update noar ti set b2='V' where id=1; -update noar tt set v0='H2CX0EI0BE5E0500NBVZ52AG0Z045Z' where id=2; -update noar ti set v0='H2CX0EI0BE5E0500NBVZ52AG0Z045Z' where id=2; -update noar tt set b0='TOYY8QRR' where id=2; -update noar ti set b0='TOYY8QRR' where id=2; -update noar tt set v0='BDEGJ8PZHAXUH0IT8J08546E' where id=2; -update noar ti set v0='BDEGJ8PZHAXUH0IT8J08546E' where id=2; -update noar tt set b1='E9425ENC3G8T' where id=2; -update noar ti set b1='E9425ENC3G8T' where id=2; -update noar tt set v0='40ILIJWUC5ZF0U4P8Z6HG1GI6530V' where id=2; -update noar ti set v0='40ILIJWUC5ZF0U4P8Z6HG1GI6530V' where id=2; -update noar tt set b2='79ID' where id=2; -update noar ti set b2='79ID' where id=2; -update noar tt set v0='FK7Q68DSV6VFFGN8ZJFDWGH6BVHVJBAR' where id=3; -update noar ti set v0='FK7Q68DSV6VFFGN8ZJFDWGH6BVHVJBAR' where id=3; -update noar tt set b0='ODKXSQM86X3EVDGD' where id=3; -update noar ti set b0='ODKXSQM86X3EVDGD' where id=3; -update noar tt set v0='3HF4O5KWQCC2U2GA8' where id=3; -update noar ti set v0='3HF4O5KWQCC2U2GA8' where id=3; -update noar tt set b1='9PLRZBE9O3A4KVLJ' where id=3; -update noar ti set b1='9PLRZBE9O3A4KVLJ' where id=3; -update noar tt set v0='RX2QCYKB6WC5YE3ALHKIK' where id=3; -update noar ti set v0='RX2QCYKB6WC5YE3ALHKIK' where id=3; -update noar tt set b2='DQGVF5NS79RI9CHT7SG6J8VS' where id=3; -update noar ti set b2='DQGVF5NS79RI9CHT7SG6J8VS' where id=3; -update noar tt set v0='3VYP5GBPXC2RQZ9YKB4UVY' where id=4; -update noar ti set v0='3VYP5GBPXC2RQZ9YKB4UVY' where id=4; -update noar tt set b0='6W' where id=4; -update noar ti set b0='6W' where id=4; -update noar tt set v0='EXTZWLBKOJASKTSCNYDWV' where id=4; -update noar ti set v0='EXTZWLBKOJASKTSCNYDWV' where id=4; -update noar tt set b1='0VG7XQ2W1' where id=4; -update noar ti set b1='0VG7XQ2W1' where id=4; -update noar tt set v0='TJQ0BYJHKAMQFVZ3YNG1N' where id=4; -update noar ti set v0='TJQ0BYJHKAMQFVZ3YNG1N' where id=4; -update noar tt set b2='RVOBLQ06SNSXEXQ3F2RVIBQ0LVP' where id=4; -update noar ti set b2='RVOBLQ06SNSXEXQ3F2RVIBQ0LVP' where id=4; -update noar tt set v0='Z0MGERB' where id=5; -update noar ti set v0='Z0MGERB' where id=5; -update noar tt set b0='QWX5X6C1J3' where id=5; -update noar ti set b0='QWX5X6C1J3' where id=5; -update noar tt set v0='ILJQY9I5MG53AFYU7I2N' where id=5; -update noar ti set v0='ILJQY9I5MG53AFYU7I2N' where id=5; -update noar tt set b1='KC6BN6TFX7PHU' where id=5; -update noar ti set b1='KC6BN6TFX7PHU' where id=5; -update noar tt set v0='HDWZDH5HEHNM' where id=5; -update noar ti set v0='HDWZDH5HEHNM' where id=5; -update noar tt set b2='63SERHO0YBUJB9PYSYRRTQ61J' where id=5; -update noar ti set b2='63SERHO0YBUJB9PYSYRRTQ61J' where id=5; -update noar tt set v0='87FGO0VZZB42' where id=6; -update noar ti set v0='87FGO0VZZB42' where id=6; -update noar tt set b0='IDLWK6863KXO1D5C5' where id=6; -update noar ti set b0='IDLWK6863KXO1D5C5' where id=6; -update noar tt set v0='0YU9NO' where id=6; -update noar ti set v0='0YU9NO' where id=6; -update noar tt set b1='NPTBKDIVWXRXYKBNT77LBKMLTTWH85RA' where id=6; -update noar ti set b1='NPTBKDIVWXRXYKBNT77LBKMLTTWH85RA' where id=6; -update noar tt set v0='E9QTHKC8EGOV4741EH375LQ43NWV' where id=6; -update noar ti set v0='E9QTHKC8EGOV4741EH375LQ43NWV' where id=6; -update noar tt set b2='JQ13AXVDH2GTN8UGD4' where id=6; -update noar ti set b2='JQ13AXVDH2GTN8UGD4' where id=6; -update noar tt set v0='VTTTDQ' where id=7; -update noar ti set v0='VTTTDQ' where id=7; -update noar tt set b0='UPS7JT5GTW' where id=7; -update noar ti set b0='UPS7JT5GTW' where id=7; -update noar tt set v0='RLKLLWKW5ZXUG3KSXGH' where id=7; -update noar ti set v0='RLKLLWKW5ZXUG3KSXGH' where id=7; -update noar tt set b1='JJC8BWFMC9FXWDDMXRL1URXCEO2' where id=7; -update noar ti set b1='JJC8BWFMC9FXWDDMXRL1URXCEO2' where id=7; -update noar tt set v0='KU6B7A7KTIZJU6LGKR25LHQTYS6M' where id=7; -update noar ti set v0='KU6B7A7KTIZJU6LGKR25LHQTYS6M' where id=7; -update noar tt set b2='LYBVMWSAQ0R630F' where id=7; -update noar ti set b2='LYBVMWSAQ0R630F' where id=7; -update noar tt set v0='YOTXIA2W2VYOY' where id=8; -update noar ti set v0='YOTXIA2W2VYOY' where id=8; -update noar tt set b0='9JIPEW8EDE1YYZZ' where id=8; -update noar ti set b0='9JIPEW8EDE1YYZZ' where id=8; -update noar tt set v0='Z9' where id=8; -update noar ti set v0='Z9' where id=8; -update noar tt set b1='DD8JD0X' where id=8; -update noar ti set b1='DD8JD0X' where id=8; -update noar tt set v0='55NQRT2SEOFG588R' where id=8; -update noar ti set v0='55NQRT2SEOFG588R' where id=8; -update noar tt set b2='VF3DCAM54AWFZNY90I740RM' where id=8; -update noar ti set b2='VF3DCAM54AWFZNY90I740RM' where id=8; -update noar tt set v0='6U0VND' where id=9; -update noar ti set v0='6U0VND' where id=9; -update noar tt set b0='CU9AC7VOWSXIM1TPPDOIZKQMDV47NYH' where id=9; -update noar ti set b0='CU9AC7VOWSXIM1TPPDOIZKQMDV47NYH' where id=9; -update noar tt set v0='DV5SZ3T6GG9D7O8' where id=9; -update noar ti set v0='DV5SZ3T6GG9D7O8' where id=9; -update noar tt set b1='JTK51YZ3MH7EPV38ZA3' where id=9; -update noar ti set b1='JTK51YZ3MH7EPV38ZA3' where id=9; -update noar tt set v0='P82AFYAR1SWYN3HVKU4KNPS5R' where id=9; -update noar ti set v0='P82AFYAR1SWYN3HVKU4KNPS5R' where id=9; -update noar tt set b2='9XJURTXR95AO6UC4SMN' where id=9; -update noar ti set b2='9XJURTXR95AO6UC4SMN' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - f0 int not null, - v0 varchar(256) not null, - b0 blob not null, - b1 blob not null, - b2 longblob not null -) engine=tokudb; -insert into tt values (1,0,'','','',''); -insert into tt values (2,0,'','','',''); -insert into tt values (3,0,'','','',''); -insert into tt values (4,0,'','','',''); -insert into tt values (5,0,'','','',''); -insert into tt values (6,0,'','','',''); -insert into tt values (7,0,'','','',''); -insert into tt values (8,0,'','','',''); -insert into tt values (9,0,'','','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='E4EXF3DQ5EZRK780' where id=1; -update noar ti set v0='E4EXF3DQ5EZRK780' where id=1; -update noar tt set b0='1C9CPGVIUDGPO1LF1ENEDI' where id=1; -update noar ti set b0='1C9CPGVIUDGPO1LF1ENEDI' where id=1; -update noar tt set v0='002Q3NZEQJYRA6696QCXDGM6VF6P' where id=1; -update noar ti set v0='002Q3NZEQJYRA6696QCXDGM6VF6P' where id=1; -update noar tt set b1='V9KP' where id=1; -update noar ti set b1='V9KP' where id=1; -update noar tt set v0='F2A0L606CZEN4IHJ89JXFJW' where id=1; -update noar ti set v0='F2A0L606CZEN4IHJ89JXFJW' where id=1; -update noar tt set b2='75OJNCY' where id=1; -update noar ti set b2='75OJNCY' where id=1; -update noar tt set v0='4GSPODX06S79' where id=2; -update noar ti set v0='4GSPODX06S79' where id=2; -update noar tt set b0='LNIDCUASEW0XACQ7XK5ZMKGE' where id=2; -update noar ti set b0='LNIDCUASEW0XACQ7XK5ZMKGE' where id=2; -update noar tt set v0='O' where id=2; -update noar ti set v0='O' where id=2; -update noar tt set b1='PM' where id=2; -update noar ti set b1='PM' where id=2; -update noar tt set v0='CQJM6AIB' where id=2; -update noar ti set v0='CQJM6AIB' where id=2; -update noar tt set b2='OOK843ZBAQWQOWWKSE7M0C6GE' where id=2; -update noar ti set b2='OOK843ZBAQWQOWWKSE7M0C6GE' where id=2; -update noar tt set v0='C0DRBIBVEQQ' where id=3; -update noar ti set v0='C0DRBIBVEQQ' where id=3; -update noar tt set b0='7TLZ460RY6F3UQ854VDSZCW7UKA8VZC' where id=3; -update noar ti set b0='7TLZ460RY6F3UQ854VDSZCW7UKA8VZC' where id=3; -update noar tt set v0='KESKC9LQP' where id=3; -update noar ti set v0='KESKC9LQP' where id=3; -update noar tt set b1='GWE91K7T6IA3TU3KO34WUK' where id=3; -update noar ti set b1='GWE91K7T6IA3TU3KO34WUK' where id=3; -update noar tt set v0='Z' where id=3; -update noar ti set v0='Z' where id=3; -update noar tt set b2='YP4M0UJPD55M96EY85SCXASV5' where id=3; -update noar ti set b2='YP4M0UJPD55M96EY85SCXASV5' where id=3; -update noar tt set v0='WSHKMHTX45HT40N907ZU6D8' where id=4; -update noar ti set v0='WSHKMHTX45HT40N907ZU6D8' where id=4; -update noar tt set b0='IA8X2PE4V9QDDOCLSK' where id=4; -update noar ti set b0='IA8X2PE4V9QDDOCLSK' where id=4; -update noar tt set v0='EA2ZTC5F5IZL' where id=4; -update noar ti set v0='EA2ZTC5F5IZL' where id=4; -update noar tt set b1='45V9KS2XGKQEW127UZVB5KVNL0DFK6Y4' where id=4; -update noar ti set b1='45V9KS2XGKQEW127UZVB5KVNL0DFK6Y4' where id=4; -update noar tt set v0='1JN6FVFO77UU39NN01OMB' where id=4; -update noar ti set v0='1JN6FVFO77UU39NN01OMB' where id=4; -update noar tt set b2='1LIN9GX6SED2A6ZGQTJVAT5KL' where id=4; -update noar ti set b2='1LIN9GX6SED2A6ZGQTJVAT5KL' where id=4; -update noar tt set v0='06PN8G66U6S' where id=5; -update noar ti set v0='06PN8G66U6S' where id=5; -update noar tt set b0='DQMYC40O2SPY4OUWGPH7W' where id=5; -update noar ti set b0='DQMYC40O2SPY4OUWGPH7W' where id=5; -update noar tt set v0='1CATTVVN3TUR5B2JUXG9IP' where id=5; -update noar ti set v0='1CATTVVN3TUR5B2JUXG9IP' where id=5; -update noar tt set b1='MLFD5HUO' where id=5; -update noar ti set b1='MLFD5HUO' where id=5; -update noar tt set v0='X' where id=5; -update noar ti set v0='X' where id=5; -update noar tt set b2='X4XFUD2H8FP9XX6TN3Y55UO6MCD' where id=5; -update noar ti set b2='X4XFUD2H8FP9XX6TN3Y55UO6MCD' where id=5; -update noar tt set v0='3121FM8PL49' where id=6; -update noar ti set v0='3121FM8PL49' where id=6; -update noar tt set b0='4YKXWSOKD23' where id=6; -update noar ti set b0='4YKXWSOKD23' where id=6; -update noar tt set v0='SIT58PSG071K3R3F9' where id=6; -update noar ti set v0='SIT58PSG071K3R3F9' where id=6; -update noar tt set b1='0CLF64KDZI3F70SJMJAPXAE4' where id=6; -update noar ti set b1='0CLF64KDZI3F70SJMJAPXAE4' where id=6; -update noar tt set v0='JI' where id=6; -update noar ti set v0='JI' where id=6; -update noar tt set b2='4W8EDUIBLU2JGY1XB3IL' where id=6; -update noar ti set b2='4W8EDUIBLU2JGY1XB3IL' where id=6; -update noar tt set v0='FRM83WBO0FJIZU8ZY' where id=7; -update noar ti set v0='FRM83WBO0FJIZU8ZY' where id=7; -update noar tt set b0='R1E1Q6BYNPR76Y6QTUSF' where id=7; -update noar ti set b0='R1E1Q6BYNPR76Y6QTUSF' where id=7; -update noar tt set v0='NT34Y1IK' where id=7; -update noar ti set v0='NT34Y1IK' where id=7; -update noar tt set b1='6IDUJC0L9W8' where id=7; -update noar ti set b1='6IDUJC0L9W8' where id=7; -update noar tt set v0='6A9OV4AA8X2A3RAJ4M' where id=7; -update noar ti set v0='6A9OV4AA8X2A3RAJ4M' where id=7; -update noar tt set b2='LFZX87JR7U2JD8XBYWSA2' where id=7; -update noar ti set b2='LFZX87JR7U2JD8XBYWSA2' where id=7; -update noar tt set v0='39OQP' where id=8; -update noar ti set v0='39OQP' where id=8; -update noar tt set b0='HYOSCL6MQX' where id=8; -update noar ti set b0='HYOSCL6MQX' where id=8; -update noar tt set v0='JK6W9DTRVATP' where id=8; -update noar ti set v0='JK6W9DTRVATP' where id=8; -update noar tt set b1='U' where id=8; -update noar ti set b1='U' where id=8; -update noar tt set v0='6GGV' where id=8; -update noar ti set v0='6GGV' where id=8; -update noar tt set b2='KUHL' where id=8; -update noar ti set b2='KUHL' where id=8; -update noar tt set v0='EHUA546TZ959J9VT' where id=9; -update noar ti set v0='EHUA546TZ959J9VT' where id=9; -update noar tt set b0='C89CQKID907R936YRPZQ4KHSOS81' where id=9; -update noar ti set b0='C89CQKID907R936YRPZQ4KHSOS81' where id=9; -update noar tt set v0='0SXIMJUMZZW38IDV' where id=9; -update noar ti set v0='0SXIMJUMZZW38IDV' where id=9; -update noar tt set b1='8KOTJ8X6MSRVZV' where id=9; -update noar ti set b1='8KOTJ8X6MSRVZV' where id=9; -update noar tt set v0='7ZFRE2CGEQH5I2' where id=9; -update noar ti set v0='7ZFRE2CGEQH5I2' where id=9; -update noar tt set b2='P4FC4FWF2STJZ4ZGBWZS' where id=9; -update noar ti set b2='P4FC4FWF2STJZ4ZGBWZS' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - f0 int null, - v0 varchar(32) null, - b0 blob null, - b1 mediumblob null, - b2 tinyblob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='YHU8CYU5OFONA4UEP4E4KNP99F' where id=1; -update noar ti set v0='YHU8CYU5OFONA4UEP4E4KNP99F' where id=1; -update noar tt set b0='VGFYNO6LMPHIQI0HBTK0EIWT50F9MZ' where id=1; -update noar ti set b0='VGFYNO6LMPHIQI0HBTK0EIWT50F9MZ' where id=1; -update noar tt set v0='EXEMNGGMU62GRIBQ994QVIPH865LEG3' where id=1; -update noar ti set v0='EXEMNGGMU62GRIBQ994QVIPH865LEG3' where id=1; -update noar tt set b1='V5OQNLG5LK9MQBEKKV' where id=1; -update noar ti set b1='V5OQNLG5LK9MQBEKKV' where id=1; -update noar tt set v0='Q914BHJY7G5XWPP94IJT9DYOME8I6JPS' where id=1; -update noar ti set v0='Q914BHJY7G5XWPP94IJT9DYOME8I6JPS' where id=1; -update noar tt set b2='CDS' where id=1; -update noar ti set b2='CDS' where id=1; -update noar tt set v0='LONTOQ8OEUG' where id=2; -update noar ti set v0='LONTOQ8OEUG' where id=2; -update noar tt set b0='5YGQ8UZ7' where id=2; -update noar ti set b0='5YGQ8UZ7' where id=2; -update noar tt set v0='DXYQ02YV' where id=2; -update noar ti set v0='DXYQ02YV' where id=2; -update noar tt set b1='DL' where id=2; -update noar ti set b1='DL' where id=2; -update noar tt set v0='9LIPFVKDFF78NUU95FAY0S' where id=2; -update noar ti set v0='9LIPFVKDFF78NUU95FAY0S' where id=2; -update noar tt set b2='KYWHW6WC' where id=2; -update noar ti set b2='KYWHW6WC' where id=2; -update noar tt set v0='CLW9C' where id=3; -update noar ti set v0='CLW9C' where id=3; -update noar tt set b0='40BMCZXNX' where id=3; -update noar ti set b0='40BMCZXNX' where id=3; -update noar tt set v0='LUW9NWULY36DTK' where id=3; -update noar ti set v0='LUW9NWULY36DTK' where id=3; -update noar tt set b1='P28PVAY24X9798HBJENN' where id=3; -update noar ti set b1='P28PVAY24X9798HBJENN' where id=3; -update noar tt set v0='Z8OF7HXD4LHHE69MPVX1094O' where id=3; -update noar ti set v0='Z8OF7HXD4LHHE69MPVX1094O' where id=3; -update noar tt set b2='OLEE2RX5NS0YEAW50HYY0VKFKQ9B' where id=3; -update noar ti set b2='OLEE2RX5NS0YEAW50HYY0VKFKQ9B' where id=3; -update noar tt set v0='FAKJNV' where id=4; -update noar ti set v0='FAKJNV' where id=4; -update noar tt set b0='FZYOH7OHONINERAV7OVYU0' where id=4; -update noar ti set b0='FZYOH7OHONINERAV7OVYU0' where id=4; -update noar tt set v0='W7EY8OZDI886261DGTK10OJ04XI6' where id=4; -update noar ti set v0='W7EY8OZDI886261DGTK10OJ04XI6' where id=4; -update noar tt set b1='VGW' where id=4; -update noar ti set b1='VGW' where id=4; -update noar tt set v0='LRHKZOU735YTIHGHUJNZ1AD' where id=4; -update noar ti set v0='LRHKZOU735YTIHGHUJNZ1AD' where id=4; -update noar tt set b2='TOKSC7DEMGLW9TU0V6XCR' where id=4; -update noar ti set b2='TOKSC7DEMGLW9TU0V6XCR' where id=4; -update noar tt set v0='BZSQ9HL1SG3KFRHWP' where id=5; -update noar ti set v0='BZSQ9HL1SG3KFRHWP' where id=5; -update noar tt set b0='PAVSZY4' where id=5; -update noar ti set b0='PAVSZY4' where id=5; -update noar tt set v0='9RE' where id=5; -update noar ti set v0='9RE' where id=5; -update noar tt set b1='NCJWIQHW2GAYGVW9RAF5C6RC' where id=5; -update noar ti set b1='NCJWIQHW2GAYGVW9RAF5C6RC' where id=5; -update noar tt set v0='V4AZCZRGD' where id=5; -update noar ti set v0='V4AZCZRGD' where id=5; -update noar tt set b2='F5MO8T0O1THEGRWIJAD' where id=5; -update noar ti set b2='F5MO8T0O1THEGRWIJAD' where id=5; -update noar tt set v0='529' where id=6; -update noar ti set v0='529' where id=6; -update noar tt set b0='ZI3A21TG' where id=6; -update noar ti set b0='ZI3A21TG' where id=6; -update noar tt set v0='7LW67NCE736' where id=6; -update noar ti set v0='7LW67NCE736' where id=6; -update noar tt set b1='SOYRELC04KJ6VO7' where id=6; -update noar ti set b1='SOYRELC04KJ6VO7' where id=6; -update noar tt set v0='YCVNQOOGR05W1S3KDO' where id=6; -update noar ti set v0='YCVNQOOGR05W1S3KDO' where id=6; -update noar tt set b2='0J7U647CCWN7TXTZ6KUUUPZ925PBP' where id=6; -update noar ti set b2='0J7U647CCWN7TXTZ6KUUUPZ925PBP' where id=6; -update noar tt set v0='2V8MSSLQQOSCUWVNCKMD2IE0M' where id=7; -update noar ti set v0='2V8MSSLQQOSCUWVNCKMD2IE0M' where id=7; -update noar tt set b0='5TVUR2ZB4Y' where id=7; -update noar ti set b0='5TVUR2ZB4Y' where id=7; -update noar tt set v0='5DASH0' where id=7; -update noar ti set v0='5DASH0' where id=7; -update noar tt set b1='Y3D46R3CYV4TP4QLU' where id=7; -update noar ti set b1='Y3D46R3CYV4TP4QLU' where id=7; -update noar tt set v0='L0YRTL8EVG3RGFMCD4A' where id=7; -update noar ti set v0='L0YRTL8EVG3RGFMCD4A' where id=7; -update noar tt set b2='QCVHDFCYHVGBAG19EORT0HIPP0O77NJZ' where id=7; -update noar ti set b2='QCVHDFCYHVGBAG19EORT0HIPP0O77NJZ' where id=7; -update noar tt set v0='4HSSP' where id=8; -update noar ti set v0='4HSSP' where id=8; -update noar tt set b0='XUKDKTJ72I8YQDLEX4WFIXU06RK6Q' where id=8; -update noar ti set b0='XUKDKTJ72I8YQDLEX4WFIXU06RK6Q' where id=8; -update noar tt set v0='7SLV9Z1PN0TZL4X29WPLDJYURW' where id=8; -update noar ti set v0='7SLV9Z1PN0TZL4X29WPLDJYURW' where id=8; -update noar tt set b1='IDWOB1JL' where id=8; -update noar ti set b1='IDWOB1JL' where id=8; -update noar tt set v0='C7WB8SH4' where id=8; -update noar ti set v0='C7WB8SH4' where id=8; -update noar tt set b2='9Y' where id=8; -update noar ti set b2='9Y' where id=8; -update noar tt set v0='KHV9VAA2WB0YJT6CJU0G34SIAWYTE' where id=9; -update noar ti set v0='KHV9VAA2WB0YJT6CJU0G34SIAWYTE' where id=9; -update noar tt set b0='G9SKYUJCLMKU2OIG61Q' where id=9; -update noar ti set b0='G9SKYUJCLMKU2OIG61Q' where id=9; -update noar tt set v0='DWM7YOVLTTJ4DMKZ4NNTUISN' where id=9; -update noar ti set v0='DWM7YOVLTTJ4DMKZ4NNTUISN' where id=9; -update noar tt set b1='L12X9YZ6ZGK49GBK9LIUM3ODNGLKBQKK' where id=9; -update noar ti set b1='L12X9YZ6ZGK49GBK9LIUM3ODNGLKBQKK' where id=9; -update noar tt set v0='N8EAWSXZCMZF' where id=9; -update noar ti set v0='N8EAWSXZCMZF' where id=9; -update noar tt set b2='J6Z1NMUWPWV' where id=9; -update noar ti set b2='J6Z1NMUWPWV' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - f0 int null, - v0 varchar(256) null, - b0 blob null, - b1 mediumblob null, - b2 tinyblob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='8GUQR0FCMDI2RGD' where id=1; -update noar ti set v0='8GUQR0FCMDI2RGD' where id=1; -update noar tt set b0='DWJ' where id=1; -update noar ti set b0='DWJ' where id=1; -update noar tt set v0='8AU5Y3GFRRC8D3XCQ1' where id=1; -update noar ti set v0='8AU5Y3GFRRC8D3XCQ1' where id=1; -update noar tt set b1='68UZXR1K53PEKKLRN0Z0' where id=1; -update noar ti set b1='68UZXR1K53PEKKLRN0Z0' where id=1; -update noar tt set v0='3LOHEBRD85U9FVXXCHNBFB9' where id=1; -update noar ti set v0='3LOHEBRD85U9FVXXCHNBFB9' where id=1; -update noar tt set b2='V41' where id=1; -update noar ti set b2='V41' where id=1; -update noar tt set v0='SESYZM8NFW' where id=2; -update noar ti set v0='SESYZM8NFW' where id=2; -update noar tt set b0='8H1FO471WQ9XCT' where id=2; -update noar ti set b0='8H1FO471WQ9XCT' where id=2; -update noar tt set v0='HJY3X0CBPKG1SIXQW7J6' where id=2; -update noar ti set v0='HJY3X0CBPKG1SIXQW7J6' where id=2; -update noar tt set b1='OQ7E682BAOTGSJL0D7UXGLDT' where id=2; -update noar ti set b1='OQ7E682BAOTGSJL0D7UXGLDT' where id=2; -update noar tt set v0='ALI81HA5HJFJPQ9' where id=2; -update noar ti set v0='ALI81HA5HJFJPQ9' where id=2; -update noar tt set b2='88UM590LAJ0JMQYO5561IXXL9RY' where id=2; -update noar ti set b2='88UM590LAJ0JMQYO5561IXXL9RY' where id=2; -update noar tt set v0='I4' where id=3; -update noar ti set v0='I4' where id=3; -update noar tt set b0='ZHYB9SFIF3WMK35XBCILM' where id=3; -update noar ti set b0='ZHYB9SFIF3WMK35XBCILM' where id=3; -update noar tt set v0='OC' where id=3; -update noar ti set v0='OC' where id=3; -update noar tt set b1='9DOENC0JNBEXYYZYSB6ZGK' where id=3; -update noar ti set b1='9DOENC0JNBEXYYZYSB6ZGK' where id=3; -update noar tt set v0='J9FORFWH1RV6Z6B8IEW8Y' where id=3; -update noar ti set v0='J9FORFWH1RV6Z6B8IEW8Y' where id=3; -update noar tt set b2='6CXDR5K0' where id=3; -update noar ti set b2='6CXDR5K0' where id=3; -update noar tt set v0='FWN25C' where id=4; -update noar ti set v0='FWN25C' where id=4; -update noar tt set b0='HSXJ18OLZFYKXAFMTUL23XG8L7LGG' where id=4; -update noar ti set b0='HSXJ18OLZFYKXAFMTUL23XG8L7LGG' where id=4; -update noar tt set v0='RJ25O7CM54CCWYDF47YF79AK2V' where id=4; -update noar ti set v0='RJ25O7CM54CCWYDF47YF79AK2V' where id=4; -update noar tt set b1='LJ14H2H219TXFR54J3' where id=4; -update noar ti set b1='LJ14H2H219TXFR54J3' where id=4; -update noar tt set v0='48RKTO3H8SJW1L' where id=4; -update noar ti set v0='48RKTO3H8SJW1L' where id=4; -update noar tt set b2='1H2Q0KIIX16BW21GR' where id=4; -update noar ti set b2='1H2Q0KIIX16BW21GR' where id=4; -update noar tt set v0='GSX0DYF61NT9FKDMKV9EAR2P35' where id=5; -update noar ti set v0='GSX0DYF61NT9FKDMKV9EAR2P35' where id=5; -update noar tt set b0='YTQIY' where id=5; -update noar ti set b0='YTQIY' where id=5; -update noar tt set v0='2KQ2KY3NRXK3KFYNKHLF' where id=5; -update noar ti set v0='2KQ2KY3NRXK3KFYNKHLF' where id=5; -update noar tt set b1='4PUKW8G' where id=5; -update noar ti set b1='4PUKW8G' where id=5; -update noar tt set v0='36YDO7TSCKND29VOGDOW438SY0' where id=5; -update noar ti set v0='36YDO7TSCKND29VOGDOW438SY0' where id=5; -update noar tt set b2='I0JJEBZT4V95FJHW' where id=5; -update noar ti set b2='I0JJEBZT4V95FJHW' where id=5; -update noar tt set v0='OHXSQJRC6FZ6MRA3MWW5A65B0' where id=6; -update noar ti set v0='OHXSQJRC6FZ6MRA3MWW5A65B0' where id=6; -update noar tt set b0='15PL4CVY3IQOOX2T9M7WWX6CHK' where id=6; -update noar ti set b0='15PL4CVY3IQOOX2T9M7WWX6CHK' where id=6; -update noar tt set v0='4XGG656T0W5NGNEVQHFG' where id=6; -update noar ti set v0='4XGG656T0W5NGNEVQHFG' where id=6; -update noar tt set b1='8P12WV8G1YI7H4T270EL5OPUFF4N' where id=6; -update noar ti set b1='8P12WV8G1YI7H4T270EL5OPUFF4N' where id=6; -update noar tt set v0='VHPNY6WQAAM' where id=6; -update noar ti set v0='VHPNY6WQAAM' where id=6; -update noar tt set b2='C1GXCW7ZJO3YRBGZK43YLC4JRCHHN' where id=6; -update noar ti set b2='C1GXCW7ZJO3YRBGZK43YLC4JRCHHN' where id=6; -update noar tt set v0='KP07N9Z78GZZD3O0R9PCLZQE88E3' where id=7; -update noar ti set v0='KP07N9Z78GZZD3O0R9PCLZQE88E3' where id=7; -update noar tt set b0='E1534PDCYYKEY6HMK8ERQ5FH3DXTN7VC' where id=7; -update noar ti set b0='E1534PDCYYKEY6HMK8ERQ5FH3DXTN7VC' where id=7; -update noar tt set v0='XCON96ZERYB4Y89FGAKS8' where id=7; -update noar ti set v0='XCON96ZERYB4Y89FGAKS8' where id=7; -update noar tt set b1='959VVUQDCGZE36X5KODWM4KK4UKAM2PU' where id=7; -update noar ti set b1='959VVUQDCGZE36X5KODWM4KK4UKAM2PU' where id=7; -update noar tt set v0='TL2HKYMKM3G1PH2H' where id=7; -update noar ti set v0='TL2HKYMKM3G1PH2H' where id=7; -update noar tt set b2='TDUTHXS52LP61BC5IW7YB2V' where id=7; -update noar ti set b2='TDUTHXS52LP61BC5IW7YB2V' where id=7; -update noar tt set v0='C9D1R' where id=8; -update noar ti set v0='C9D1R' where id=8; -update noar tt set b0='ZC64X5FMTIN08K7HRQ90S1BBPWCH1' where id=8; -update noar ti set b0='ZC64X5FMTIN08K7HRQ90S1BBPWCH1' where id=8; -update noar tt set v0='C1' where id=8; -update noar ti set v0='C1' where id=8; -update noar tt set b1='20JRYK6EEXRMQG' where id=8; -update noar ti set b1='20JRYK6EEXRMQG' where id=8; -update noar tt set v0='1H' where id=8; -update noar ti set v0='1H' where id=8; -update noar tt set b2='5HEF65UEGQ8JY4YNG7' where id=8; -update noar ti set b2='5HEF65UEGQ8JY4YNG7' where id=8; -update noar tt set v0='B7LEOT1OTK2BXBS' where id=9; -update noar ti set v0='B7LEOT1OTK2BXBS' where id=9; -update noar tt set b0='JNIJ2N45E03U4ZR30OTAVS1' where id=9; -update noar ti set b0='JNIJ2N45E03U4ZR30OTAVS1' where id=9; -update noar tt set v0='DRU2IPXDFGL7YX50O' where id=9; -update noar ti set v0='DRU2IPXDFGL7YX50O' where id=9; -update noar tt set b1='NKTU6IXVVHFW15IES' where id=9; -update noar ti set b1='NKTU6IXVVHFW15IES' where id=9; -update noar tt set v0='49L35R8HI855WAK' where id=9; -update noar ti set v0='49L35R8HI855WAK' where id=9; -update noar tt set b2='WOVRVP459QYK7YH3NCTUKBWVS7BS0ORL' where id=9; -update noar ti set b2='WOVRVP459QYK7YH3NCTUKBWVS7BS0ORL' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - f0 int not null, - v0 varchar(32) not null, - b0 blob not null, - b1 mediumblob not null, - b2 tinyblob not null -) engine=tokudb; -insert into tt values (1,0,'','','',''); -insert into tt values (2,0,'','','',''); -insert into tt values (3,0,'','','',''); -insert into tt values (4,0,'','','',''); -insert into tt values (5,0,'','','',''); -insert into tt values (6,0,'','','',''); -insert into tt values (7,0,'','','',''); -insert into tt values (8,0,'','','',''); -insert into tt values (9,0,'','','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='LENCHJMQGGCJ303MFPAUJWZ5BJ5EW' where id=1; -update noar ti set v0='LENCHJMQGGCJ303MFPAUJWZ5BJ5EW' where id=1; -update noar tt set b0='F8CE2ZW3PJPUIPTU2E' where id=1; -update noar ti set b0='F8CE2ZW3PJPUIPTU2E' where id=1; -update noar tt set v0='QVO5DP5LH5S57TLRTQ5JEXXXYMWX8G' where id=1; -update noar ti set v0='QVO5DP5LH5S57TLRTQ5JEXXXYMWX8G' where id=1; -update noar tt set b1='BCMZJAYS7EEY9' where id=1; -update noar ti set b1='BCMZJAYS7EEY9' where id=1; -update noar tt set v0='8Z4P1C0HXXB9JHRMGQKDM' where id=1; -update noar ti set v0='8Z4P1C0HXXB9JHRMGQKDM' where id=1; -update noar tt set b2='OEY' where id=1; -update noar ti set b2='OEY' where id=1; -update noar tt set v0='ZOCWCU9OZVY45W4JT' where id=2; -update noar ti set v0='ZOCWCU9OZVY45W4JT' where id=2; -update noar tt set b0='OL9IV' where id=2; -update noar ti set b0='OL9IV' where id=2; -update noar tt set v0='XQJRV2PKCWR2Q1T6STZOP2P7VYJKHG' where id=2; -update noar ti set v0='XQJRV2PKCWR2Q1T6STZOP2P7VYJKHG' where id=2; -update noar tt set b1='2X0KL88GKI2ACT3JIC5H9YNV0' where id=2; -update noar ti set b1='2X0KL88GKI2ACT3JIC5H9YNV0' where id=2; -update noar tt set v0='JO1BQEGX1160ZXTFVW8S75' where id=2; -update noar ti set v0='JO1BQEGX1160ZXTFVW8S75' where id=2; -update noar tt set b2='4EN84QTXSYD6Z' where id=2; -update noar ti set b2='4EN84QTXSYD6Z' where id=2; -update noar tt set v0='8VWIPY3HJBD' where id=3; -update noar ti set v0='8VWIPY3HJBD' where id=3; -update noar tt set b0='JZTMAX12E' where id=3; -update noar ti set b0='JZTMAX12E' where id=3; -update noar tt set v0='2' where id=3; -update noar ti set v0='2' where id=3; -update noar tt set b1='HRZXJOLSTZLJPPL5316EO' where id=3; -update noar ti set b1='HRZXJOLSTZLJPPL5316EO' where id=3; -update noar tt set v0='EM86XP33CAOD6M1ENO7Y' where id=3; -update noar ti set v0='EM86XP33CAOD6M1ENO7Y' where id=3; -update noar tt set b2='OW620YFSMA69YHF' where id=3; -update noar ti set b2='OW620YFSMA69YHF' where id=3; -update noar tt set v0='1637J6' where id=4; -update noar ti set v0='1637J6' where id=4; -update noar tt set b0='MQ1R5OB9ZKUFKYTT20RJ6' where id=4; -update noar ti set b0='MQ1R5OB9ZKUFKYTT20RJ6' where id=4; -update noar tt set v0='UQMF31RVBD12BSFJRYMQIV4C' where id=4; -update noar ti set v0='UQMF31RVBD12BSFJRYMQIV4C' where id=4; -update noar tt set b1='B6XHCI5JPW5POLPWYL46A64M' where id=4; -update noar ti set b1='B6XHCI5JPW5POLPWYL46A64M' where id=4; -update noar tt set v0='2DJB86' where id=4; -update noar ti set v0='2DJB86' where id=4; -update noar tt set b2='6HNL2C' where id=4; -update noar ti set b2='6HNL2C' where id=4; -update noar tt set v0='0UI' where id=5; -update noar ti set v0='0UI' where id=5; -update noar tt set b0='B4' where id=5; -update noar ti set b0='B4' where id=5; -update noar tt set v0='8SDVFDD4LE53VREW5SKEL4Q' where id=5; -update noar ti set v0='8SDVFDD4LE53VREW5SKEL4Q' where id=5; -update noar tt set b1='103KHBOZLLOAXXX6S6M' where id=5; -update noar ti set b1='103KHBOZLLOAXXX6S6M' where id=5; -update noar tt set v0='2RKD4ISGZH22E50208WFO978URY' where id=5; -update noar ti set v0='2RKD4ISGZH22E50208WFO978URY' where id=5; -update noar tt set b2='GE4EIB1TDHL' where id=5; -update noar ti set b2='GE4EIB1TDHL' where id=5; -update noar tt set v0='VQLU' where id=6; -update noar ti set v0='VQLU' where id=6; -update noar tt set b0='9NSR79YXU78F4JPMWL' where id=6; -update noar ti set b0='9NSR79YXU78F4JPMWL' where id=6; -update noar tt set v0='3BJY0SUVRNY5POX' where id=6; -update noar ti set v0='3BJY0SUVRNY5POX' where id=6; -update noar tt set b1='3YFD9U4V5' where id=6; -update noar ti set b1='3YFD9U4V5' where id=6; -update noar tt set v0='SKET5AFRD8YLN3Q717DFLVNVML' where id=6; -update noar ti set v0='SKET5AFRD8YLN3Q717DFLVNVML' where id=6; -update noar tt set b2='0WLWS5E2YQWN' where id=6; -update noar ti set b2='0WLWS5E2YQWN' where id=6; -update noar tt set v0='IM07ZOBJQLSKD' where id=7; -update noar ti set v0='IM07ZOBJQLSKD' where id=7; -update noar tt set b0='N9HCNH6435OB5B' where id=7; -update noar ti set b0='N9HCNH6435OB5B' where id=7; -update noar tt set v0='Y4JH8PSVCG34S0DSX43ENKQ4Z' where id=7; -update noar ti set v0='Y4JH8PSVCG34S0DSX43ENKQ4Z' where id=7; -update noar tt set b1='R3YBDYYBLXOSJZV' where id=7; -update noar ti set b1='R3YBDYYBLXOSJZV' where id=7; -update noar tt set v0='SKSVUX8K27' where id=7; -update noar ti set v0='SKSVUX8K27' where id=7; -update noar tt set b2='1ZIAT4BP9KNQ7ZZLPO95' where id=7; -update noar ti set b2='1ZIAT4BP9KNQ7ZZLPO95' where id=7; -update noar tt set v0='UPVJHEGO8XSSKQ0HIT0TW7PHJM' where id=8; -update noar ti set v0='UPVJHEGO8XSSKQ0HIT0TW7PHJM' where id=8; -update noar tt set b0='8Q2J4SVUB' where id=8; -update noar ti set b0='8Q2J4SVUB' where id=8; -update noar tt set v0='4T5' where id=8; -update noar ti set v0='4T5' where id=8; -update noar tt set b1='LOJCOJMQQVTGQZHQ16AEYH53CZ3OQFTW' where id=8; -update noar ti set b1='LOJCOJMQQVTGQZHQ16AEYH53CZ3OQFTW' where id=8; -update noar tt set v0='46GCM7JYG3A5VMCTR' where id=8; -update noar ti set v0='46GCM7JYG3A5VMCTR' where id=8; -update noar tt set b2='7M3YITAX5NT20RYJKXJWJ18LU87' where id=8; -update noar ti set b2='7M3YITAX5NT20RYJKXJWJ18LU87' where id=8; -update noar tt set v0='VTNEF76C0Q086YPQO7X' where id=9; -update noar ti set v0='VTNEF76C0Q086YPQO7X' where id=9; -update noar tt set b0='JASX0YR' where id=9; -update noar ti set b0='JASX0YR' where id=9; -update noar tt set v0='TE61595SIGRAQV1SGXJ5SZF' where id=9; -update noar ti set v0='TE61595SIGRAQV1SGXJ5SZF' where id=9; -update noar tt set b1='80I8VQNZNEUEG5IV07HF6L1ELJCK' where id=9; -update noar ti set b1='80I8VQNZNEUEG5IV07HF6L1ELJCK' where id=9; -update noar tt set v0='QA99Q6AW' where id=9; -update noar ti set v0='QA99Q6AW' where id=9; -update noar tt set b2='HPRKSGR8K' where id=9; -update noar ti set b2='HPRKSGR8K' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - f0 int not null, - v0 varchar(256) not null, - b0 blob not null, - b1 mediumblob not null, - b2 tinyblob not null -) engine=tokudb; -insert into tt values (1,0,'','','',''); -insert into tt values (2,0,'','','',''); -insert into tt values (3,0,'','','',''); -insert into tt values (4,0,'','','',''); -insert into tt values (5,0,'','','',''); -insert into tt values (6,0,'','','',''); -insert into tt values (7,0,'','','',''); -insert into tt values (8,0,'','','',''); -insert into tt values (9,0,'','','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='7KE3LHTP5IY9' where id=1; -update noar ti set v0='7KE3LHTP5IY9' where id=1; -update noar tt set b0='21I8J2CB' where id=1; -update noar ti set b0='21I8J2CB' where id=1; -update noar tt set v0='APIXTPBM3718M8KQ72ZQZR4TX4' where id=1; -update noar ti set v0='APIXTPBM3718M8KQ72ZQZR4TX4' where id=1; -update noar tt set b1='XIKAH6SSWNAE7JXLOQ3JZV' where id=1; -update noar ti set b1='XIKAH6SSWNAE7JXLOQ3JZV' where id=1; -update noar tt set v0='V7QJGK07FNLEN2E1VL5A9YL' where id=1; -update noar ti set v0='V7QJGK07FNLEN2E1VL5A9YL' where id=1; -update noar tt set b2='GVVDX3X2ZLO6828Q' where id=1; -update noar ti set b2='GVVDX3X2ZLO6828Q' where id=1; -update noar tt set v0='1XZV8X0OUWP9OILZELIHLFKI6B551V' where id=2; -update noar ti set v0='1XZV8X0OUWP9OILZELIHLFKI6B551V' where id=2; -update noar tt set b0='04B9BCVC6UF' where id=2; -update noar ti set b0='04B9BCVC6UF' where id=2; -update noar tt set v0='XACGUK6JZ39S' where id=2; -update noar ti set v0='XACGUK6JZ39S' where id=2; -update noar tt set b1='5TDCAD12HYZ1KK4RZOL37QHHU4F' where id=2; -update noar ti set b1='5TDCAD12HYZ1KK4RZOL37QHHU4F' where id=2; -update noar tt set v0='817G1ZPRB1P9' where id=2; -update noar ti set v0='817G1ZPRB1P9' where id=2; -update noar tt set b2='7G7IQBSRB' where id=2; -update noar ti set b2='7G7IQBSRB' where id=2; -update noar tt set v0='RIKSRC' where id=3; -update noar ti set v0='RIKSRC' where id=3; -update noar tt set b0='ERYPUE9L9E03PG538PHCV5O4HT99I' where id=3; -update noar ti set b0='ERYPUE9L9E03PG538PHCV5O4HT99I' where id=3; -update noar tt set v0='NMOX7V4L' where id=3; -update noar ti set v0='NMOX7V4L' where id=3; -update noar tt set b1='SFI314YVRWT5EC8LFZOBM8Q36L93I' where id=3; -update noar ti set b1='SFI314YVRWT5EC8LFZOBM8Q36L93I' where id=3; -update noar tt set v0='2' where id=3; -update noar ti set v0='2' where id=3; -update noar tt set b2='UC78XHGAYM59XXY2G5GFTQSB46' where id=3; -update noar ti set b2='UC78XHGAYM59XXY2G5GFTQSB46' where id=3; -update noar tt set v0='0E5LWC0QCM' where id=4; -update noar ti set v0='0E5LWC0QCM' where id=4; -update noar tt set b0='P836SEON6ZCG0877253UU28VRT' where id=4; -update noar ti set b0='P836SEON6ZCG0877253UU28VRT' where id=4; -update noar tt set v0='ARP9ZZDBVM1JWICL' where id=4; -update noar ti set v0='ARP9ZZDBVM1JWICL' where id=4; -update noar tt set b1='SU9JTW21GLI' where id=4; -update noar ti set b1='SU9JTW21GLI' where id=4; -update noar tt set v0='BK4CRYAFI7YY1BKAWKR' where id=4; -update noar ti set v0='BK4CRYAFI7YY1BKAWKR' where id=4; -update noar tt set b2='Y9I49WR8XO6XH0OIG6VEOJVOOIBVRQE' where id=4; -update noar ti set b2='Y9I49WR8XO6XH0OIG6VEOJVOOIBVRQE' where id=4; -update noar tt set v0='5BUOI381SO8' where id=5; -update noar ti set v0='5BUOI381SO8' where id=5; -update noar tt set b0='31O58AJ2GTUFR' where id=5; -update noar ti set b0='31O58AJ2GTUFR' where id=5; -update noar tt set v0='IOI2X2W2IQ1G4LDKH7WL' where id=5; -update noar ti set v0='IOI2X2W2IQ1G4LDKH7WL' where id=5; -update noar tt set b1='9S34' where id=5; -update noar ti set b1='9S34' where id=5; -update noar tt set v0='W058N7ZIR8F72K0H9J' where id=5; -update noar ti set v0='W058N7ZIR8F72K0H9J' where id=5; -update noar tt set b2='WLLLPR99ZUFVFA6XU' where id=5; -update noar ti set b2='WLLLPR99ZUFVFA6XU' where id=5; -update noar tt set v0='DBN29FX4B9RMM9OW6EPSDEUMWPL71Y' where id=6; -update noar ti set v0='DBN29FX4B9RMM9OW6EPSDEUMWPL71Y' where id=6; -update noar tt set b0='B547NZRK7B47GNWAPCWRLFRIC7SSRW' where id=6; -update noar ti set b0='B547NZRK7B47GNWAPCWRLFRIC7SSRW' where id=6; -update noar tt set v0='8K4B0I7FVMXWLSYJVBPNA' where id=6; -update noar ti set v0='8K4B0I7FVMXWLSYJVBPNA' where id=6; -update noar tt set b1='2C8DYVNWBTJ5QY3YMOM2WINC' where id=6; -update noar ti set b1='2C8DYVNWBTJ5QY3YMOM2WINC' where id=6; -update noar tt set v0='7VH7LLE4VFMXRZWGGAT99QE534GI57' where id=6; -update noar ti set v0='7VH7LLE4VFMXRZWGGAT99QE534GI57' where id=6; -update noar tt set b2='FCVFYSR' where id=6; -update noar ti set b2='FCVFYSR' where id=6; -update noar tt set v0='I' where id=7; -update noar ti set v0='I' where id=7; -update noar tt set b0='JQ32WTDI8T22UAHTM0W' where id=7; -update noar ti set b0='JQ32WTDI8T22UAHTM0W' where id=7; -update noar tt set v0='NNT16P3VU25BLZHJ2LC67' where id=7; -update noar ti set v0='NNT16P3VU25BLZHJ2LC67' where id=7; -update noar tt set b1='95ZHCB616' where id=7; -update noar ti set b1='95ZHCB616' where id=7; -update noar tt set v0='QYPQTKA0PT52151U552C7RIL0X' where id=7; -update noar ti set v0='QYPQTKA0PT52151U552C7RIL0X' where id=7; -update noar tt set b2='NS78ZGRVCB10FE5YXZCYBBXOJ35G5LB' where id=7; -update noar ti set b2='NS78ZGRVCB10FE5YXZCYBBXOJ35G5LB' where id=7; -update noar tt set v0='DKQ4ROWI42' where id=8; -update noar ti set v0='DKQ4ROWI42' where id=8; -update noar tt set b0='16OZZDQI94RKL1I072N32A' where id=8; -update noar ti set b0='16OZZDQI94RKL1I072N32A' where id=8; -update noar tt set v0='R8NC3U2IGMULREWYQKS6F8N9K7' where id=8; -update noar ti set v0='R8NC3U2IGMULREWYQKS6F8N9K7' where id=8; -update noar tt set b1='LHI3MLYH2LWJBIBVXJC7X6JTURMOXUL' where id=8; -update noar ti set b1='LHI3MLYH2LWJBIBVXJC7X6JTURMOXUL' where id=8; -update noar tt set v0='PEBLZ83Y6MQJ3OA69SBGB2RTXDCTPAXF' where id=8; -update noar ti set v0='PEBLZ83Y6MQJ3OA69SBGB2RTXDCTPAXF' where id=8; -update noar tt set b2='9ZAJYA' where id=8; -update noar ti set b2='9ZAJYA' where id=8; -update noar tt set v0='CGJB4SNM2E5P1JUU2N3CUIE827' where id=9; -update noar ti set v0='CGJB4SNM2E5P1JUU2N3CUIE827' where id=9; -update noar tt set b0='SINX94DOZ3QX308YSXDPO4' where id=9; -update noar ti set b0='SINX94DOZ3QX308YSXDPO4' where id=9; -update noar tt set v0='LR4SUXDK2K6HL' where id=9; -update noar ti set v0='LR4SUXDK2K6HL' where id=9; -update noar tt set b1='9F6Z3M4FV1R79SWU2N4Z' where id=9; -update noar ti set b1='9F6Z3M4FV1R79SWU2N4Z' where id=9; -update noar tt set v0='DA' where id=9; -update noar ti set v0='DA' where id=9; -update noar tt set b2='W5W64F4V2TSZ5MON' where id=9; -update noar ti set b2='W5W64F4V2TSZ5MON' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - f0 int null, - v0 varchar(32) null, - b0 blob null, - b1 mediumblob null, - b2 blob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='ITOG3R3GJXZ8F8X7A9706KE6PP6RI6' where id=1; -update noar ti set v0='ITOG3R3GJXZ8F8X7A9706KE6PP6RI6' where id=1; -update noar tt set b0='1UDVLBTE4BSQODU42ZKHBKXF0L6KFHGO' where id=1; -update noar ti set b0='1UDVLBTE4BSQODU42ZKHBKXF0L6KFHGO' where id=1; -update noar tt set v0='NL54S1X9CBX12MLSOG4P9B5' where id=1; -update noar ti set v0='NL54S1X9CBX12MLSOG4P9B5' where id=1; -update noar tt set b1='8U05N' where id=1; -update noar ti set b1='8U05N' where id=1; -update noar tt set v0='YB6F96FWM1MB6E8YJPRVG6' where id=1; -update noar ti set v0='YB6F96FWM1MB6E8YJPRVG6' where id=1; -update noar tt set b2='Z3WLIR' where id=1; -update noar ti set b2='Z3WLIR' where id=1; -update noar tt set v0='T94CJK2G2GHLXFLL' where id=2; -update noar ti set v0='T94CJK2G2GHLXFLL' where id=2; -update noar tt set b0='Q7KFYALKLHPJXO' where id=2; -update noar ti set b0='Q7KFYALKLHPJXO' where id=2; -update noar tt set v0='58INGAY6W' where id=2; -update noar ti set v0='58INGAY6W' where id=2; -update noar tt set b1='S' where id=2; -update noar ti set b1='S' where id=2; -update noar tt set v0='QRNDPMADAAAJKWHAL2CVQ9MS' where id=2; -update noar ti set v0='QRNDPMADAAAJKWHAL2CVQ9MS' where id=2; -update noar tt set b2='0N2TXCY81M41S' where id=2; -update noar ti set b2='0N2TXCY81M41S' where id=2; -update noar tt set v0='S8FL4WPHM86RI1R4K' where id=3; -update noar ti set v0='S8FL4WPHM86RI1R4K' where id=3; -update noar tt set b0='MG2FV' where id=3; -update noar ti set b0='MG2FV' where id=3; -update noar tt set v0='EJKUC8DHX4PI' where id=3; -update noar ti set v0='EJKUC8DHX4PI' where id=3; -update noar tt set b1='FEGUSYFOI5CTMZMVVYAWE' where id=3; -update noar ti set b1='FEGUSYFOI5CTMZMVVYAWE' where id=3; -update noar tt set v0='KCH8UXZI1R8XPS8509D3X5JQ' where id=3; -update noar ti set v0='KCH8UXZI1R8XPS8509D3X5JQ' where id=3; -update noar tt set b2='9672KLS2' where id=3; -update noar ti set b2='9672KLS2' where id=3; -update noar tt set v0='D2HB7TL852QVJR0' where id=4; -update noar ti set v0='D2HB7TL852QVJR0' where id=4; -update noar tt set b0='BDQ6MIROG1R1PKP8EMQIETZB' where id=4; -update noar ti set b0='BDQ6MIROG1R1PKP8EMQIETZB' where id=4; -update noar tt set v0='DJDM' where id=4; -update noar ti set v0='DJDM' where id=4; -update noar tt set b1='K' where id=4; -update noar ti set b1='K' where id=4; -update noar tt set v0='PQ0W0KDBR9AQ09F' where id=4; -update noar ti set v0='PQ0W0KDBR9AQ09F' where id=4; -update noar tt set b2='69XW7K4HJG0AWKEJ' where id=4; -update noar ti set b2='69XW7K4HJG0AWKEJ' where id=4; -update noar tt set v0='QR15ZOIDRJTJDL6V' where id=5; -update noar ti set v0='QR15ZOIDRJTJDL6V' where id=5; -update noar tt set b0='O45HSTJ8QWWBUMYDVZTNLV9T2EYMV' where id=5; -update noar ti set b0='O45HSTJ8QWWBUMYDVZTNLV9T2EYMV' where id=5; -update noar tt set v0='SNPC1FHWOH0KHXXVJ92' where id=5; -update noar ti set v0='SNPC1FHWOH0KHXXVJ92' where id=5; -update noar tt set b1='C213DZQCL9IOXOB4SH7XYVG' where id=5; -update noar ti set b1='C213DZQCL9IOXOB4SH7XYVG' where id=5; -update noar tt set v0='WO6WWH28S6LPS96Y22BY' where id=5; -update noar ti set v0='WO6WWH28S6LPS96Y22BY' where id=5; -update noar tt set b2='UVMBWD5WY0' where id=5; -update noar ti set b2='UVMBWD5WY0' where id=5; -update noar tt set v0='W1AHLWPMFAS' where id=6; -update noar ti set v0='W1AHLWPMFAS' where id=6; -update noar tt set b0='0IZTDWZMH1C1BU' where id=6; -update noar ti set b0='0IZTDWZMH1C1BU' where id=6; -update noar tt set v0='YSBSYJAF' where id=6; -update noar ti set v0='YSBSYJAF' where id=6; -update noar tt set b1='2' where id=6; -update noar ti set b1='2' where id=6; -update noar tt set v0='XASLZDRI' where id=6; -update noar ti set v0='XASLZDRI' where id=6; -update noar tt set b2='BG' where id=6; -update noar ti set b2='BG' where id=6; -update noar tt set v0='1KIX3X5DS' where id=7; -update noar ti set v0='1KIX3X5DS' where id=7; -update noar tt set b0='BOIH' where id=7; -update noar ti set b0='BOIH' where id=7; -update noar tt set v0='VK' where id=7; -update noar ti set v0='VK' where id=7; -update noar tt set b1='17U86DE' where id=7; -update noar ti set b1='17U86DE' where id=7; -update noar tt set v0='OYS54B7AMPCSDG19O' where id=7; -update noar ti set v0='OYS54B7AMPCSDG19O' where id=7; -update noar tt set b2='5I8HTVOCNAO6XAO8K1JLO84AKMWIB9W5' where id=7; -update noar ti set b2='5I8HTVOCNAO6XAO8K1JLO84AKMWIB9W5' where id=7; -update noar tt set v0='DIYL5GB5FG530' where id=8; -update noar ti set v0='DIYL5GB5FG530' where id=8; -update noar tt set b0='78BMSMAW3UWGE4OF3KS8C2Y740' where id=8; -update noar ti set b0='78BMSMAW3UWGE4OF3KS8C2Y740' where id=8; -update noar tt set v0='KEBWB7FHP2PSEHOO5LHIS' where id=8; -update noar ti set v0='KEBWB7FHP2PSEHOO5LHIS' where id=8; -update noar tt set b1='OCI7ZNYO4G0WT5XXFFWEJKCX' where id=8; -update noar ti set b1='OCI7ZNYO4G0WT5XXFFWEJKCX' where id=8; -update noar tt set v0='X' where id=8; -update noar ti set v0='X' where id=8; -update noar tt set b2='JTWRO3Y52IO' where id=8; -update noar ti set b2='JTWRO3Y52IO' where id=8; -update noar tt set v0='2GTHJS3I3FT610VCWU929' where id=9; -update noar ti set v0='2GTHJS3I3FT610VCWU929' where id=9; -update noar tt set b0='HIC9EZ' where id=9; -update noar ti set b0='HIC9EZ' where id=9; -update noar tt set v0='02M2R965' where id=9; -update noar ti set v0='02M2R965' where id=9; -update noar tt set b1='2OBNUP6QP5CRHZ13F60B05YER4M9' where id=9; -update noar ti set b1='2OBNUP6QP5CRHZ13F60B05YER4M9' where id=9; -update noar tt set v0='N1XNJEB1EPLORB8' where id=9; -update noar ti set v0='N1XNJEB1EPLORB8' where id=9; -update noar tt set b2='CODJ3KO7G94' where id=9; -update noar ti set b2='CODJ3KO7G94' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - f0 int null, - v0 varchar(256) null, - b0 blob null, - b1 mediumblob null, - b2 blob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='59U' where id=1; -update noar ti set v0='59U' where id=1; -update noar tt set b0='OVOSKGHWA0W' where id=1; -update noar ti set b0='OVOSKGHWA0W' where id=1; -update noar tt set v0='6AW' where id=1; -update noar ti set v0='6AW' where id=1; -update noar tt set b1='CPSHR5QXFDQGR63' where id=1; -update noar ti set b1='CPSHR5QXFDQGR63' where id=1; -update noar tt set v0='Z' where id=1; -update noar ti set v0='Z' where id=1; -update noar tt set b2='Y6OPCJCGB9KYZ1XQR9AB323NE8R4Y' where id=1; -update noar ti set b2='Y6OPCJCGB9KYZ1XQR9AB323NE8R4Y' where id=1; -update noar tt set v0='9' where id=2; -update noar ti set v0='9' where id=2; -update noar tt set b0='T6LJ1P99EHE5QCYYF9WLOWC1O' where id=2; -update noar ti set b0='T6LJ1P99EHE5QCYYF9WLOWC1O' where id=2; -update noar tt set v0='PUN2GUFBEJFWKG58SZ0IBKUVVN42HD' where id=2; -update noar ti set v0='PUN2GUFBEJFWKG58SZ0IBKUVVN42HD' where id=2; -update noar tt set b1='VADBHP' where id=2; -update noar ti set b1='VADBHP' where id=2; -update noar tt set v0='LSXUG781WLGC7S2BQ99U3PEIRRGBA' where id=2; -update noar ti set v0='LSXUG781WLGC7S2BQ99U3PEIRRGBA' where id=2; -update noar tt set b2='BKOX26PEZW0VUBW4GZB' where id=2; -update noar ti set b2='BKOX26PEZW0VUBW4GZB' where id=2; -update noar tt set v0='RSQ1CT699EQ4QCV' where id=3; -update noar ti set v0='RSQ1CT699EQ4QCV' where id=3; -update noar tt set b0='8SGM6RHWQ0ZKUQL3145Q2QUI3' where id=3; -update noar ti set b0='8SGM6RHWQ0ZKUQL3145Q2QUI3' where id=3; -update noar tt set v0='A7BKUNKLZMN5RP0VN2V5HEHHB5TX6E28' where id=3; -update noar ti set v0='A7BKUNKLZMN5RP0VN2V5HEHHB5TX6E28' where id=3; -update noar tt set b1='4G61POD3IA3WY3HZDYXU01XFJTT4' where id=3; -update noar ti set b1='4G61POD3IA3WY3HZDYXU01XFJTT4' where id=3; -update noar tt set v0='HJMS65VUXQA617KERLP4Z' where id=3; -update noar ti set v0='HJMS65VUXQA617KERLP4Z' where id=3; -update noar tt set b2='PXDCNY811KVX3A8X' where id=3; -update noar ti set b2='PXDCNY811KVX3A8X' where id=3; -update noar tt set v0='ET9WOOJ72IJWE6G2L4OPOBNW3BL884S' where id=4; -update noar ti set v0='ET9WOOJ72IJWE6G2L4OPOBNW3BL884S' where id=4; -update noar tt set b0='E5U73MKDE0Z' where id=4; -update noar ti set b0='E5U73MKDE0Z' where id=4; -update noar tt set v0='6YXLPCT4LCFXRUHH' where id=4; -update noar ti set v0='6YXLPCT4LCFXRUHH' where id=4; -update noar tt set b1='Z1I9HJTI' where id=4; -update noar ti set b1='Z1I9HJTI' where id=4; -update noar tt set v0='OA2CVH35HBKFMYIE5YIIGV375V5' where id=4; -update noar ti set v0='OA2CVH35HBKFMYIE5YIIGV375V5' where id=4; -update noar tt set b2='QWWTS6AMLM8S8DJ38YNYHFAHHO' where id=4; -update noar ti set b2='QWWTS6AMLM8S8DJ38YNYHFAHHO' where id=4; -update noar tt set v0='M886E0A0IW' where id=5; -update noar ti set v0='M886E0A0IW' where id=5; -update noar tt set b0='D4NWLPMWF4TZSS9X' where id=5; -update noar ti set b0='D4NWLPMWF4TZSS9X' where id=5; -update noar tt set v0='NI3PFYM1' where id=5; -update noar ti set v0='NI3PFYM1' where id=5; -update noar tt set b1='Y1TL9GGE01FKO43' where id=5; -update noar ti set b1='Y1TL9GGE01FKO43' where id=5; -update noar tt set v0='N' where id=5; -update noar ti set v0='N' where id=5; -update noar tt set b2='XM9' where id=5; -update noar ti set b2='XM9' where id=5; -update noar tt set v0='ASACW0Z0UVVUH6CQJ2ZS3F9ORVG0Z' where id=6; -update noar ti set v0='ASACW0Z0UVVUH6CQJ2ZS3F9ORVG0Z' where id=6; -update noar tt set b0='23HG3VOO99BEW2S3C65S8WTRO7FV3AGT' where id=6; -update noar ti set b0='23HG3VOO99BEW2S3C65S8WTRO7FV3AGT' where id=6; -update noar tt set v0='P1NUMMGTINZQ1D4M5CO8GU' where id=6; -update noar ti set v0='P1NUMMGTINZQ1D4M5CO8GU' where id=6; -update noar tt set b1='C0ZE64AMXX222F8CMXB7FPC497G4L5' where id=6; -update noar ti set b1='C0ZE64AMXX222F8CMXB7FPC497G4L5' where id=6; -update noar tt set v0='T6EL2' where id=6; -update noar ti set v0='T6EL2' where id=6; -update noar tt set b2='9W8HCI1K71VQ4CJ9HCXZU8H1A' where id=6; -update noar ti set b2='9W8HCI1K71VQ4CJ9HCXZU8H1A' where id=6; -update noar tt set v0='W9LL4NP3MFHBO01MH2VYN5W5PR4P' where id=7; -update noar ti set v0='W9LL4NP3MFHBO01MH2VYN5W5PR4P' where id=7; -update noar tt set b0='OL2YROBHGOVWY' where id=7; -update noar ti set b0='OL2YROBHGOVWY' where id=7; -update noar tt set v0='GQMOZ4H09WV3MJ' where id=7; -update noar ti set v0='GQMOZ4H09WV3MJ' where id=7; -update noar tt set b1='U4PW0K0XRG8A9DOVKBR0T34RP1QWTHL' where id=7; -update noar ti set b1='U4PW0K0XRG8A9DOVKBR0T34RP1QWTHL' where id=7; -update noar tt set v0='LSYG2AW8' where id=7; -update noar ti set v0='LSYG2AW8' where id=7; -update noar tt set b2='J64ILDEI186574IIPWSN' where id=7; -update noar ti set b2='J64ILDEI186574IIPWSN' where id=7; -update noar tt set v0='UP995JT0UA760VU8CVU69YMQUA3RK85' where id=8; -update noar ti set v0='UP995JT0UA760VU8CVU69YMQUA3RK85' where id=8; -update noar tt set b0='00ZL4MB8LPEKI47IQCRY4PZ0J' where id=8; -update noar ti set b0='00ZL4MB8LPEKI47IQCRY4PZ0J' where id=8; -update noar tt set v0='90YRASU6UNNBG43FYHLKJJY' where id=8; -update noar ti set v0='90YRASU6UNNBG43FYHLKJJY' where id=8; -update noar tt set b1='55GLKAGYF1Y9UCS4' where id=8; -update noar ti set b1='55GLKAGYF1Y9UCS4' where id=8; -update noar tt set v0='K80' where id=8; -update noar ti set v0='K80' where id=8; -update noar tt set b2='C2BFRWRRAUVRW7RD' where id=8; -update noar ti set b2='C2BFRWRRAUVRW7RD' where id=8; -update noar tt set v0='5U3ZZ10VJ2D3GDU0DQP2Q7X5BHBE' where id=9; -update noar ti set v0='5U3ZZ10VJ2D3GDU0DQP2Q7X5BHBE' where id=9; -update noar tt set b0='LT2AZ2VG91XJLFJT2YJDUQ00I2CZ5W5' where id=9; -update noar ti set b0='LT2AZ2VG91XJLFJT2YJDUQ00I2CZ5W5' where id=9; -update noar tt set v0='4F62RVEULDMZH7D80L18AZ54BRL' where id=9; -update noar ti set v0='4F62RVEULDMZH7D80L18AZ54BRL' where id=9; -update noar tt set b1='9906C' where id=9; -update noar ti set b1='9906C' where id=9; -update noar tt set v0='AP1K8SG3P1315FSIE1SHQJ7' where id=9; -update noar ti set v0='AP1K8SG3P1315FSIE1SHQJ7' where id=9; -update noar tt set b2='LRTG' where id=9; -update noar ti set b2='LRTG' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - f0 int not null, - v0 varchar(32) not null, - b0 blob not null, - b1 mediumblob not null, - b2 blob not null -) engine=tokudb; -insert into tt values (1,0,'','','',''); -insert into tt values (2,0,'','','',''); -insert into tt values (3,0,'','','',''); -insert into tt values (4,0,'','','',''); -insert into tt values (5,0,'','','',''); -insert into tt values (6,0,'','','',''); -insert into tt values (7,0,'','','',''); -insert into tt values (8,0,'','','',''); -insert into tt values (9,0,'','','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='MY536V' where id=1; -update noar ti set v0='MY536V' where id=1; -update noar tt set b0='XQAOXVVXMXTHF0QBYFLLQMQBN52DJMVJ' where id=1; -update noar ti set b0='XQAOXVVXMXTHF0QBYFLLQMQBN52DJMVJ' where id=1; -update noar tt set v0='QDD84ZQMV3YO4UH5UJ0LOQNL' where id=1; -update noar ti set v0='QDD84ZQMV3YO4UH5UJ0LOQNL' where id=1; -update noar tt set b1='CN7UKL2EOKGVZ3' where id=1; -update noar ti set b1='CN7UKL2EOKGVZ3' where id=1; -update noar tt set v0='NRMTOG6H4WZBHK' where id=1; -update noar ti set v0='NRMTOG6H4WZBHK' where id=1; -update noar tt set b2='K9518GHCZKVKVHZXY16KGROOO5D' where id=1; -update noar ti set b2='K9518GHCZKVKVHZXY16KGROOO5D' where id=1; -update noar tt set v0='TQ9I4CV2BO7' where id=2; -update noar ti set v0='TQ9I4CV2BO7' where id=2; -update noar tt set b0='SEX6EIVX4C9F0' where id=2; -update noar ti set b0='SEX6EIVX4C9F0' where id=2; -update noar tt set v0='5T06JQ' where id=2; -update noar ti set v0='5T06JQ' where id=2; -update noar tt set b1='Z11OZ' where id=2; -update noar ti set b1='Z11OZ' where id=2; -update noar tt set v0='IJ805IE7TSYAL' where id=2; -update noar ti set v0='IJ805IE7TSYAL' where id=2; -update noar tt set b2='1O6TFXDUBS7YS385N96DCFWQ' where id=2; -update noar ti set b2='1O6TFXDUBS7YS385N96DCFWQ' where id=2; -update noar tt set v0='UCQK3OU3AF5IIEPXBCZGLA62YFOJ' where id=3; -update noar ti set v0='UCQK3OU3AF5IIEPXBCZGLA62YFOJ' where id=3; -update noar tt set b0='H9BW62UMJXU3NO1DSPYBM8X68' where id=3; -update noar ti set b0='H9BW62UMJXU3NO1DSPYBM8X68' where id=3; -update noar tt set v0='QHPRE2OQGPDQSSQLHE8Z34SWKIH9G' where id=3; -update noar ti set v0='QHPRE2OQGPDQSSQLHE8Z34SWKIH9G' where id=3; -update noar tt set b1='LB0RO' where id=3; -update noar ti set b1='LB0RO' where id=3; -update noar tt set v0='TW44BF90VR0WCBE1J0JOXKH2W9E' where id=3; -update noar ti set v0='TW44BF90VR0WCBE1J0JOXKH2W9E' where id=3; -update noar tt set b2='WXGUET' where id=3; -update noar ti set b2='WXGUET' where id=3; -update noar tt set v0='XASQQH6' where id=4; -update noar ti set v0='XASQQH6' where id=4; -update noar tt set b0='Y' where id=4; -update noar ti set b0='Y' where id=4; -update noar tt set v0='KYTV4S9YGW7IH0YSE5MPHJF72' where id=4; -update noar ti set v0='KYTV4S9YGW7IH0YSE5MPHJF72' where id=4; -update noar tt set b1='DOKMBRIXB9MV3EH91C4HG' where id=4; -update noar ti set b1='DOKMBRIXB9MV3EH91C4HG' where id=4; -update noar tt set v0='SPYUWU2ZHQ07FEQMK' where id=4; -update noar ti set v0='SPYUWU2ZHQ07FEQMK' where id=4; -update noar tt set b2='IH5ISXX3VSMBCGYYTILYHOAAMBU' where id=4; -update noar ti set b2='IH5ISXX3VSMBCGYYTILYHOAAMBU' where id=4; -update noar tt set v0='J4' where id=5; -update noar ti set v0='J4' where id=5; -update noar tt set b0='EIX3' where id=5; -update noar ti set b0='EIX3' where id=5; -update noar tt set v0='J2' where id=5; -update noar ti set v0='J2' where id=5; -update noar tt set b1='FG0E1' where id=5; -update noar ti set b1='FG0E1' where id=5; -update noar tt set v0='XTNT961RTWDJ32T0X7' where id=5; -update noar ti set v0='XTNT961RTWDJ32T0X7' where id=5; -update noar tt set b2='VXCTXR7XMSY' where id=5; -update noar ti set b2='VXCTXR7XMSY' where id=5; -update noar tt set v0='HL9AB5FDWTZC0KG8Q54J8BNY0PI7K' where id=6; -update noar ti set v0='HL9AB5FDWTZC0KG8Q54J8BNY0PI7K' where id=6; -update noar tt set b0='0EPNIQOMICMFJBDCVURVLESQUWYEHK9O' where id=6; -update noar ti set b0='0EPNIQOMICMFJBDCVURVLESQUWYEHK9O' where id=6; -update noar tt set v0='HADYSO2P237N8NR821EOX7' where id=6; -update noar ti set v0='HADYSO2P237N8NR821EOX7' where id=6; -update noar tt set b1='AT3PUFU92JYRZSAF9RRX7H365K' where id=6; -update noar ti set b1='AT3PUFU92JYRZSAF9RRX7H365K' where id=6; -update noar tt set v0='3BHHRAI89K17ID4FQO4P2NMF7' where id=6; -update noar ti set v0='3BHHRAI89K17ID4FQO4P2NMF7' where id=6; -update noar tt set b2='SA9P560TS' where id=6; -update noar ti set b2='SA9P560TS' where id=6; -update noar tt set v0='YYDOY5LRUMJYTZW1DTVN0BXZ' where id=7; -update noar ti set v0='YYDOY5LRUMJYTZW1DTVN0BXZ' where id=7; -update noar tt set b0='HFFJ3U' where id=7; -update noar ti set b0='HFFJ3U' where id=7; -update noar tt set v0='BRC5QUDL6NJNKFOWJ4XW9ST5' where id=7; -update noar ti set v0='BRC5QUDL6NJNKFOWJ4XW9ST5' where id=7; -update noar tt set b1='BQXYLD31N617' where id=7; -update noar ti set b1='BQXYLD31N617' where id=7; -update noar tt set v0='V27M4X71O4PMPA46F8REVC553R' where id=7; -update noar ti set v0='V27M4X71O4PMPA46F8REVC553R' where id=7; -update noar tt set b2='2BK' where id=7; -update noar ti set b2='2BK' where id=7; -update noar tt set v0='IX' where id=8; -update noar ti set v0='IX' where id=8; -update noar tt set b0='HNHW' where id=8; -update noar ti set b0='HNHW' where id=8; -update noar tt set v0='9UN8DNWIYR5P7R0' where id=8; -update noar ti set v0='9UN8DNWIYR5P7R0' where id=8; -update noar tt set b1='LYL' where id=8; -update noar ti set b1='LYL' where id=8; -update noar tt set v0='RCVMRAS41NP63HZNGNS1TZOOUMRYG0' where id=8; -update noar ti set v0='RCVMRAS41NP63HZNGNS1TZOOUMRYG0' where id=8; -update noar tt set b2='IIEYS30P0VSFAIII7S8JWV8EIC7FW6' where id=8; -update noar ti set b2='IIEYS30P0VSFAIII7S8JWV8EIC7FW6' where id=8; -update noar tt set v0='NP3MYIX6KYGRVPG0TIH7YX4MXJI59' where id=9; -update noar ti set v0='NP3MYIX6KYGRVPG0TIH7YX4MXJI59' where id=9; -update noar tt set b0='W23EIGBK' where id=9; -update noar ti set b0='W23EIGBK' where id=9; -update noar tt set v0='9M' where id=9; -update noar ti set v0='9M' where id=9; -update noar tt set b1='LFLWK5KQ3NMAFHHO4YDEXSMAXLZJ4ADW' where id=9; -update noar ti set b1='LFLWK5KQ3NMAFHHO4YDEXSMAXLZJ4ADW' where id=9; -update noar tt set v0='OMD4L0EBGB25S86VEKD8A09HFNI6MD' where id=9; -update noar ti set v0='OMD4L0EBGB25S86VEKD8A09HFNI6MD' where id=9; -update noar tt set b2='2TSGHR55W5TB8WBF0HEQEGOHC0DBZO20' where id=9; -update noar ti set b2='2TSGHR55W5TB8WBF0HEQEGOHC0DBZO20' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - f0 int not null, - v0 varchar(256) not null, - b0 blob not null, - b1 mediumblob not null, - b2 blob not null -) engine=tokudb; -insert into tt values (1,0,'','','',''); -insert into tt values (2,0,'','','',''); -insert into tt values (3,0,'','','',''); -insert into tt values (4,0,'','','',''); -insert into tt values (5,0,'','','',''); -insert into tt values (6,0,'','','',''); -insert into tt values (7,0,'','','',''); -insert into tt values (8,0,'','','',''); -insert into tt values (9,0,'','','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='IRV5CW5YBR' where id=1; -update noar ti set v0='IRV5CW5YBR' where id=1; -update noar tt set b0='XVSQJ' where id=1; -update noar ti set b0='XVSQJ' where id=1; -update noar tt set v0='Z1LYOC5JTUF3SPKEL' where id=1; -update noar ti set v0='Z1LYOC5JTUF3SPKEL' where id=1; -update noar tt set b1='EZVPDSJ979XMSMAO' where id=1; -update noar ti set b1='EZVPDSJ979XMSMAO' where id=1; -update noar tt set v0='BN1SJ' where id=1; -update noar ti set v0='BN1SJ' where id=1; -update noar tt set b2='KTC68LPMFS0' where id=1; -update noar ti set b2='KTC68LPMFS0' where id=1; -update noar tt set v0='71P3GWXEQKCD918IIV' where id=2; -update noar ti set v0='71P3GWXEQKCD918IIV' where id=2; -update noar tt set b0='LE9GFFDW0Z4H81352W5E9ISJB3KGKYTP' where id=2; -update noar ti set b0='LE9GFFDW0Z4H81352W5E9ISJB3KGKYTP' where id=2; -update noar tt set v0='Y8NU1CW6KLH6EY7' where id=2; -update noar ti set v0='Y8NU1CW6KLH6EY7' where id=2; -update noar tt set b1='932ZZW83D24GDQS13S' where id=2; -update noar ti set b1='932ZZW83D24GDQS13S' where id=2; -update noar tt set v0='VL675IMIE9LBRG9SJSJ1VSMG' where id=2; -update noar ti set v0='VL675IMIE9LBRG9SJSJ1VSMG' where id=2; -update noar tt set b2='34L9GGYG900581VF' where id=2; -update noar ti set b2='34L9GGYG900581VF' where id=2; -update noar tt set v0='J4946MQM1HZ7453N75BER0867IE4L' where id=3; -update noar ti set v0='J4946MQM1HZ7453N75BER0867IE4L' where id=3; -update noar tt set b0='O8UXHUVTNTD' where id=3; -update noar ti set b0='O8UXHUVTNTD' where id=3; -update noar tt set v0='DOH8' where id=3; -update noar ti set v0='DOH8' where id=3; -update noar tt set b1='KNKTAGHKP2RIN0X7WLE7KO9W' where id=3; -update noar ti set b1='KNKTAGHKP2RIN0X7WLE7KO9W' where id=3; -update noar tt set v0='FZM1JRRQ9B1FZLQBOI149AG' where id=3; -update noar ti set v0='FZM1JRRQ9B1FZLQBOI149AG' where id=3; -update noar tt set b2='4GMCG7OFL2FI9GB1BC1ONAM9' where id=3; -update noar ti set b2='4GMCG7OFL2FI9GB1BC1ONAM9' where id=3; -update noar tt set v0='PC2LW9SMOYE0' where id=4; -update noar ti set v0='PC2LW9SMOYE0' where id=4; -update noar tt set b0='DWID8FBCFAJRIVK6FOIQ2NAI4FI6RQE' where id=4; -update noar ti set b0='DWID8FBCFAJRIVK6FOIQ2NAI4FI6RQE' where id=4; -update noar tt set v0='4FG' where id=4; -update noar ti set v0='4FG' where id=4; -update noar tt set b1='DH3HL4ONMAJX' where id=4; -update noar ti set b1='DH3HL4ONMAJX' where id=4; -update noar tt set v0='WSDZ403' where id=4; -update noar ti set v0='WSDZ403' where id=4; -update noar tt set b2='T43AP9568KY3FQ8G0X36PF5RBIXM1Q' where id=4; -update noar ti set b2='T43AP9568KY3FQ8G0X36PF5RBIXM1Q' where id=4; -update noar tt set v0='P9QRJ5701B4D30VXF9W0WLG5P3OIIO02' where id=5; -update noar ti set v0='P9QRJ5701B4D30VXF9W0WLG5P3OIIO02' where id=5; -update noar tt set b0='OH5GQFHRM8Y7JPSAQQ' where id=5; -update noar ti set b0='OH5GQFHRM8Y7JPSAQQ' where id=5; -update noar tt set v0='F0ZSA5RB44XCL8KW368FKKQL0ZM2' where id=5; -update noar ti set v0='F0ZSA5RB44XCL8KW368FKKQL0ZM2' where id=5; -update noar tt set b1='1MYBRNTIDMYCWK8SELNPX7XJSN0K2T3' where id=5; -update noar ti set b1='1MYBRNTIDMYCWK8SELNPX7XJSN0K2T3' where id=5; -update noar tt set v0='KCLUN9ODJSDJULWYVLEA' where id=5; -update noar ti set v0='KCLUN9ODJSDJULWYVLEA' where id=5; -update noar tt set b2='FSMJM9AFL3QFXGP6YQHIHVMEZ6LI' where id=5; -update noar ti set b2='FSMJM9AFL3QFXGP6YQHIHVMEZ6LI' where id=5; -update noar tt set v0='QMJ3MHMYT9OY4CWYTB8I' where id=6; -update noar ti set v0='QMJ3MHMYT9OY4CWYTB8I' where id=6; -update noar tt set b0='CA1NN9R3EG2BQHPIA' where id=6; -update noar ti set b0='CA1NN9R3EG2BQHPIA' where id=6; -update noar tt set v0='M9CEK4R2IQ5CC6QCC2UP6CBZZK9OSEH' where id=6; -update noar ti set v0='M9CEK4R2IQ5CC6QCC2UP6CBZZK9OSEH' where id=6; -update noar tt set b1='LO61' where id=6; -update noar ti set b1='LO61' where id=6; -update noar tt set v0='VMGKHFCXMOCD0YGYG6RYNF' where id=6; -update noar ti set v0='VMGKHFCXMOCD0YGYG6RYNF' where id=6; -update noar tt set b2='9ZX80L1XM4CAYL0SJJI' where id=6; -update noar ti set b2='9ZX80L1XM4CAYL0SJJI' where id=6; -update noar tt set v0='B9LK2JKCVFZYA' where id=7; -update noar ti set v0='B9LK2JKCVFZYA' where id=7; -update noar tt set b0='ISO8IMFU5PYYHSYQ1LY6MQ6Y' where id=7; -update noar ti set b0='ISO8IMFU5PYYHSYQ1LY6MQ6Y' where id=7; -update noar tt set v0='DOIZXF7D' where id=7; -update noar ti set v0='DOIZXF7D' where id=7; -update noar tt set b1='ZG9X21TM07G9O1YYNAW' where id=7; -update noar ti set b1='ZG9X21TM07G9O1YYNAW' where id=7; -update noar tt set v0='KYR3INXS16NLC99XK7IODNBL' where id=7; -update noar ti set v0='KYR3INXS16NLC99XK7IODNBL' where id=7; -update noar tt set b2='TKOZMA0ZSK7IS1W7DFVZZ72' where id=7; -update noar ti set b2='TKOZMA0ZSK7IS1W7DFVZZ72' where id=7; -update noar tt set v0='NJX' where id=8; -update noar ti set v0='NJX' where id=8; -update noar tt set b0='472' where id=8; -update noar ti set b0='472' where id=8; -update noar tt set v0='401I8DPN0WPVS' where id=8; -update noar ti set v0='401I8DPN0WPVS' where id=8; -update noar tt set b1='1OEM4Z4Q7U4BRQJ56ZX38D6YVE' where id=8; -update noar ti set b1='1OEM4Z4Q7U4BRQJ56ZX38D6YVE' where id=8; -update noar tt set v0='6F6VM1ODPTHEQC861QN2APT3Z4JU0' where id=8; -update noar ti set v0='6F6VM1ODPTHEQC861QN2APT3Z4JU0' where id=8; -update noar tt set b2='BHK220T0ML55B0KVAAVVSTV7EXGYSOY' where id=8; -update noar ti set b2='BHK220T0ML55B0KVAAVVSTV7EXGYSOY' where id=8; -update noar tt set v0='Q97QHWA1Q' where id=9; -update noar ti set v0='Q97QHWA1Q' where id=9; -update noar tt set b0='8LM2W1' where id=9; -update noar ti set b0='8LM2W1' where id=9; -update noar tt set v0='WIZWGFDIWV' where id=9; -update noar ti set v0='WIZWGFDIWV' where id=9; -update noar tt set b1='4LIFZ7YDW17HONV5YLMNQR8T7HI' where id=9; -update noar ti set b1='4LIFZ7YDW17HONV5YLMNQR8T7HI' where id=9; -update noar tt set v0='WCNMCPSQKTHNEAY6UOMLNMJEA63LO' where id=9; -update noar ti set v0='WCNMCPSQKTHNEAY6UOMLNMJEA63LO' where id=9; -update noar tt set b2='9PCXMC44LON4AQTZMWKRXO931BLFTM' where id=9; -update noar ti set b2='9PCXMC44LON4AQTZMWKRXO931BLFTM' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - f0 int null, - v0 varchar(32) null, - b0 blob null, - b1 mediumblob null, - b2 mediumblob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='N5KJMZ1KDS4OJJX71QUYNWYU19HH' where id=1; -update noar ti set v0='N5KJMZ1KDS4OJJX71QUYNWYU19HH' where id=1; -update noar tt set b0='ERIADJNWSBR' where id=1; -update noar ti set b0='ERIADJNWSBR' where id=1; -update noar tt set v0='ORD4TEHMBZD6VWB9ZUPM83' where id=1; -update noar ti set v0='ORD4TEHMBZD6VWB9ZUPM83' where id=1; -update noar tt set b1='CR4QHT2FNSS23' where id=1; -update noar ti set b1='CR4QHT2FNSS23' where id=1; -update noar tt set v0='WP' where id=1; -update noar ti set v0='WP' where id=1; -update noar tt set b2='JCHFLPB1VBB27B' where id=1; -update noar ti set b2='JCHFLPB1VBB27B' where id=1; -update noar tt set v0='A3G' where id=2; -update noar ti set v0='A3G' where id=2; -update noar tt set b0='Z8NQFOH7D6K' where id=2; -update noar ti set b0='Z8NQFOH7D6K' where id=2; -update noar tt set v0='KS72XRPIRXJDEND59O463JY' where id=2; -update noar ti set v0='KS72XRPIRXJDEND59O463JY' where id=2; -update noar tt set b1='KHACXVRCJE5HRB6N5P9ZQ2JTTYHZ8Q9' where id=2; -update noar ti set b1='KHACXVRCJE5HRB6N5P9ZQ2JTTYHZ8Q9' where id=2; -update noar tt set v0='81FGKA05Y7D31P13H' where id=2; -update noar ti set v0='81FGKA05Y7D31P13H' where id=2; -update noar tt set b2='2PZKYZF4MSHAPDPBU3' where id=2; -update noar ti set b2='2PZKYZF4MSHAPDPBU3' where id=2; -update noar tt set v0='F6PA8' where id=3; -update noar ti set v0='F6PA8' where id=3; -update noar tt set b0='GH4J94IV' where id=3; -update noar ti set b0='GH4J94IV' where id=3; -update noar tt set v0='EDU3VNBQSG9CRMDM8S0A1WQYMYJCWII' where id=3; -update noar ti set v0='EDU3VNBQSG9CRMDM8S0A1WQYMYJCWII' where id=3; -update noar tt set b1='1I6S9B' where id=3; -update noar ti set b1='1I6S9B' where id=3; -update noar tt set v0='7Y6NRB96JB97' where id=3; -update noar ti set v0='7Y6NRB96JB97' where id=3; -update noar tt set b2='B33LA4YBDIJ7MOACCDW1Z' where id=3; -update noar ti set b2='B33LA4YBDIJ7MOACCDW1Z' where id=3; -update noar tt set v0='5SL2JK24Z' where id=4; -update noar ti set v0='5SL2JK24Z' where id=4; -update noar tt set b0='JSNCEDBH3P0FO3K4LF1PWG07HR33O' where id=4; -update noar ti set b0='JSNCEDBH3P0FO3K4LF1PWG07HR33O' where id=4; -update noar tt set v0='FTGZ620E59NGNVA1' where id=4; -update noar ti set v0='FTGZ620E59NGNVA1' where id=4; -update noar tt set b1='8E5JR8KU95HZC73IMJSP09HQZ' where id=4; -update noar ti set b1='8E5JR8KU95HZC73IMJSP09HQZ' where id=4; -update noar tt set v0='NAOODGFOOQ8IPIPSDEF2GPGN11U' where id=4; -update noar ti set v0='NAOODGFOOQ8IPIPSDEF2GPGN11U' where id=4; -update noar tt set b2='RY8' where id=4; -update noar ti set b2='RY8' where id=4; -update noar tt set v0='AZ1VPEZU3Z2T5JQIX4Q9DVGFBZEQI21N' where id=5; -update noar ti set v0='AZ1VPEZU3Z2T5JQIX4Q9DVGFBZEQI21N' where id=5; -update noar tt set b0='2BWV68W' where id=5; -update noar ti set b0='2BWV68W' where id=5; -update noar tt set v0='DBC76KL8TMHZV1GVPQ' where id=5; -update noar ti set v0='DBC76KL8TMHZV1GVPQ' where id=5; -update noar tt set b1='HGBHO0BDZ68C88XA03MPAQY9X' where id=5; -update noar ti set b1='HGBHO0BDZ68C88XA03MPAQY9X' where id=5; -update noar tt set v0='R8DBA8L' where id=5; -update noar ti set v0='R8DBA8L' where id=5; -update noar tt set b2='31A4I' where id=5; -update noar ti set b2='31A4I' where id=5; -update noar tt set v0='WA636V15B9GDCI1ITU2G7' where id=6; -update noar ti set v0='WA636V15B9GDCI1ITU2G7' where id=6; -update noar tt set b0='T0F9Y2OK7LSGSJSQWAR' where id=6; -update noar ti set b0='T0F9Y2OK7LSGSJSQWAR' where id=6; -update noar tt set v0='DL9C99TBK48600UA' where id=6; -update noar ti set v0='DL9C99TBK48600UA' where id=6; -update noar tt set b1='VSPXKBDP4LRLNWBX' where id=6; -update noar ti set b1='VSPXKBDP4LRLNWBX' where id=6; -update noar tt set v0='XC6BG2Z82OR1Q2C71CBVNXVIXTUVGDH' where id=6; -update noar ti set v0='XC6BG2Z82OR1Q2C71CBVNXVIXTUVGDH' where id=6; -update noar tt set b2='99PV51V6SRK8LPLFZ4S5V88RE2SC' where id=6; -update noar ti set b2='99PV51V6SRK8LPLFZ4S5V88RE2SC' where id=6; -update noar tt set v0='MJJH0NSVS8ZAN3MB3MG9S8P5KZOMQ' where id=7; -update noar ti set v0='MJJH0NSVS8ZAN3MB3MG9S8P5KZOMQ' where id=7; -update noar tt set b0='HO0CC' where id=7; -update noar ti set b0='HO0CC' where id=7; -update noar tt set v0='5611U' where id=7; -update noar ti set v0='5611U' where id=7; -update noar tt set b1='O' where id=7; -update noar ti set b1='O' where id=7; -update noar tt set v0='17YU2' where id=7; -update noar ti set v0='17YU2' where id=7; -update noar tt set b2='WA4' where id=7; -update noar ti set b2='WA4' where id=7; -update noar tt set v0='402ZOE20KD0GOYHOMNQ' where id=8; -update noar ti set v0='402ZOE20KD0GOYHOMNQ' where id=8; -update noar tt set b0='AKQTYVEO3O51208L74FY1GEMGK6QRA' where id=8; -update noar ti set b0='AKQTYVEO3O51208L74FY1GEMGK6QRA' where id=8; -update noar tt set v0='EHJAQJ' where id=8; -update noar ti set v0='EHJAQJ' where id=8; -update noar tt set b1='WSN7JX9S5SNAX05' where id=8; -update noar ti set b1='WSN7JX9S5SNAX05' where id=8; -update noar tt set v0='KD3C1TUP1481SXP1JNR' where id=8; -update noar ti set v0='KD3C1TUP1481SXP1JNR' where id=8; -update noar tt set b2='5TK1C32O1A' where id=8; -update noar ti set b2='5TK1C32O1A' where id=8; -update noar tt set v0='BQOUTX5LM5OU6JBBMNDFTGS7XY6ZHVEV' where id=9; -update noar ti set v0='BQOUTX5LM5OU6JBBMNDFTGS7XY6ZHVEV' where id=9; -update noar tt set b0='SH' where id=9; -update noar ti set b0='SH' where id=9; -update noar tt set v0='D2V98LQTQD0DWC4C' where id=9; -update noar ti set v0='D2V98LQTQD0DWC4C' where id=9; -update noar tt set b1='FSZ3HRXXNZQ6XY1U4LW7DGKM' where id=9; -update noar ti set b1='FSZ3HRXXNZQ6XY1U4LW7DGKM' where id=9; -update noar tt set v0='8NM652E0VAO4H6FV23IHDKTWY' where id=9; -update noar ti set v0='8NM652E0VAO4H6FV23IHDKTWY' where id=9; -update noar tt set b2='3OC5BFRUE0W1EG0U0N5BCNHG49102N63' where id=9; -update noar ti set b2='3OC5BFRUE0W1EG0U0N5BCNHG49102N63' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - f0 int null, - v0 varchar(256) null, - b0 blob null, - b1 mediumblob null, - b2 mediumblob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='SW2PV7VHXKWNJ23MNV5IX4YGGDY86Z' where id=1; -update noar ti set v0='SW2PV7VHXKWNJ23MNV5IX4YGGDY86Z' where id=1; -update noar tt set b0='F8H2' where id=1; -update noar ti set b0='F8H2' where id=1; -update noar tt set v0='17H7X' where id=1; -update noar ti set v0='17H7X' where id=1; -update noar tt set b1='EZOUM34' where id=1; -update noar ti set b1='EZOUM34' where id=1; -update noar tt set v0='AC10Y6VLZ6JN70CRMC1HY2ZHTGB491' where id=1; -update noar ti set v0='AC10Y6VLZ6JN70CRMC1HY2ZHTGB491' where id=1; -update noar tt set b2='NHAXZIMNOJ0U0SNF' where id=1; -update noar ti set b2='NHAXZIMNOJ0U0SNF' where id=1; -update noar tt set v0='B0KZHQGF6CYR03RY1' where id=2; -update noar ti set v0='B0KZHQGF6CYR03RY1' where id=2; -update noar tt set b0='BL797J4RQ9452NIS1LF' where id=2; -update noar ti set b0='BL797J4RQ9452NIS1LF' where id=2; -update noar tt set v0='YPBYOXK63Y9UG1ITKTRLIJL' where id=2; -update noar ti set v0='YPBYOXK63Y9UG1ITKTRLIJL' where id=2; -update noar tt set b1='4OWQBA84VV' where id=2; -update noar ti set b1='4OWQBA84VV' where id=2; -update noar tt set v0='M3QOBSZY9B9GOKJ' where id=2; -update noar ti set v0='M3QOBSZY9B9GOKJ' where id=2; -update noar tt set b2='LE9462VD99GUBWG03177F' where id=2; -update noar ti set b2='LE9462VD99GUBWG03177F' where id=2; -update noar tt set v0='WIJC872X7EQJY9B7502OKDI' where id=3; -update noar ti set v0='WIJC872X7EQJY9B7502OKDI' where id=3; -update noar tt set b0='6CHA0I7H36CQIQFBGEOR9M76' where id=3; -update noar ti set b0='6CHA0I7H36CQIQFBGEOR9M76' where id=3; -update noar tt set v0='RV94JD6BIAGURU9HE1KO5HY9' where id=3; -update noar ti set v0='RV94JD6BIAGURU9HE1KO5HY9' where id=3; -update noar tt set b1='E13OL5JNLHVRLYXT7V28ZZNHMSJ7' where id=3; -update noar ti set b1='E13OL5JNLHVRLYXT7V28ZZNHMSJ7' where id=3; -update noar tt set v0='DEDP674JVTGL' where id=3; -update noar ti set v0='DEDP674JVTGL' where id=3; -update noar tt set b2='OWXM3KD' where id=3; -update noar ti set b2='OWXM3KD' where id=3; -update noar tt set v0='IHH2ZNP2XT' where id=4; -update noar ti set v0='IHH2ZNP2XT' where id=4; -update noar tt set b0='BQMMFEFAS8AQ' where id=4; -update noar ti set b0='BQMMFEFAS8AQ' where id=4; -update noar tt set v0='0UB1YYL5SJALUI' where id=4; -update noar ti set v0='0UB1YYL5SJALUI' where id=4; -update noar tt set b1='ZNL7NF3V1BX10YGQ3ADPIDE2I4A3O' where id=4; -update noar ti set b1='ZNL7NF3V1BX10YGQ3ADPIDE2I4A3O' where id=4; -update noar tt set v0='WYRXJ25ESZOQ5CUDS1LX' where id=4; -update noar ti set v0='WYRXJ25ESZOQ5CUDS1LX' where id=4; -update noar tt set b2='5ID2J1FTROF2BBYHO9P0M34' where id=4; -update noar ti set b2='5ID2J1FTROF2BBYHO9P0M34' where id=4; -update noar tt set v0='B' where id=5; -update noar ti set v0='B' where id=5; -update noar tt set b0='7V08' where id=5; -update noar ti set b0='7V08' where id=5; -update noar tt set v0='IUU93QFVD2V3IFG' where id=5; -update noar ti set v0='IUU93QFVD2V3IFG' where id=5; -update noar tt set b1='PI4MJIM991QXVXGHXYXNQTTPXSUGUMH' where id=5; -update noar ti set b1='PI4MJIM991QXVXGHXYXNQTTPXSUGUMH' where id=5; -update noar tt set v0='QJUMN7YWH8MRUHNQ39K7U7G0G7ZS' where id=5; -update noar ti set v0='QJUMN7YWH8MRUHNQ39K7U7G0G7ZS' where id=5; -update noar tt set b2='5CBIQ1H9XNHU' where id=5; -update noar ti set b2='5CBIQ1H9XNHU' where id=5; -update noar tt set v0='8XSK4CG' where id=6; -update noar ti set v0='8XSK4CG' where id=6; -update noar tt set b0='QJRXEQPBIAJEFCEAIVFK63DZCIB6Q' where id=6; -update noar ti set b0='QJRXEQPBIAJEFCEAIVFK63DZCIB6Q' where id=6; -update noar tt set v0='4SI2HE185PFQ9F832CUSS064BVFIH9VN' where id=6; -update noar ti set v0='4SI2HE185PFQ9F832CUSS064BVFIH9VN' where id=6; -update noar tt set b1='RIG8HQV1OCET8XRFGOTX8K' where id=6; -update noar ti set b1='RIG8HQV1OCET8XRFGOTX8K' where id=6; -update noar tt set v0='PPZJ1SVAFD45VGRA6T1GTZN6WQ3' where id=6; -update noar ti set v0='PPZJ1SVAFD45VGRA6T1GTZN6WQ3' where id=6; -update noar tt set b2='VORIRPQL6YTQU3' where id=6; -update noar ti set b2='VORIRPQL6YTQU3' where id=6; -update noar tt set v0='4L' where id=7; -update noar ti set v0='4L' where id=7; -update noar tt set b0='1D' where id=7; -update noar ti set b0='1D' where id=7; -update noar tt set v0='X68J2K7YHY44O8KP' where id=7; -update noar ti set v0='X68J2K7YHY44O8KP' where id=7; -update noar tt set b1='B1TFG4RH04TMLGINF6MN7V21PCE' where id=7; -update noar ti set b1='B1TFG4RH04TMLGINF6MN7V21PCE' where id=7; -update noar tt set v0='DAK2H2CANSHHZF' where id=7; -update noar ti set v0='DAK2H2CANSHHZF' where id=7; -update noar tt set b2='MRRWI' where id=7; -update noar ti set b2='MRRWI' where id=7; -update noar tt set v0='47029PLPUXTMO3' where id=8; -update noar ti set v0='47029PLPUXTMO3' where id=8; -update noar tt set b0='PU8RWT88B49Y7JS2MJGN3ZP8IF8ZP' where id=8; -update noar ti set b0='PU8RWT88B49Y7JS2MJGN3ZP8IF8ZP' where id=8; -update noar tt set v0='YLUZAQ3K5187UVSJ2DRNGQHIG09' where id=8; -update noar ti set v0='YLUZAQ3K5187UVSJ2DRNGQHIG09' where id=8; -update noar tt set b1='213NHTTL3XU5CEALLCL9ASL6ZRD' where id=8; -update noar ti set b1='213NHTTL3XU5CEALLCL9ASL6ZRD' where id=8; -update noar tt set v0='1JUWQCLVPCFZ3NWIOL6HFEGDTHAFMJZY' where id=8; -update noar ti set v0='1JUWQCLVPCFZ3NWIOL6HFEGDTHAFMJZY' where id=8; -update noar tt set b2='WVQFOJ2M' where id=8; -update noar ti set b2='WVQFOJ2M' where id=8; -update noar tt set v0='QVB7ZL6KW39JAUAVVIEW' where id=9; -update noar ti set v0='QVB7ZL6KW39JAUAVVIEW' where id=9; -update noar tt set b0='NZC789TBRYH9UEARWEEW29JDB' where id=9; -update noar ti set b0='NZC789TBRYH9UEARWEEW29JDB' where id=9; -update noar tt set v0='V' where id=9; -update noar ti set v0='V' where id=9; -update noar tt set b1='VLNMWZEIS8N' where id=9; -update noar ti set b1='VLNMWZEIS8N' where id=9; -update noar tt set v0='UBRT' where id=9; -update noar ti set v0='UBRT' where id=9; -update noar tt set b2='2KS' where id=9; -update noar ti set b2='2KS' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - f0 int not null, - v0 varchar(32) not null, - b0 blob not null, - b1 mediumblob not null, - b2 mediumblob not null -) engine=tokudb; -insert into tt values (1,0,'','','',''); -insert into tt values (2,0,'','','',''); -insert into tt values (3,0,'','','',''); -insert into tt values (4,0,'','','',''); -insert into tt values (5,0,'','','',''); -insert into tt values (6,0,'','','',''); -insert into tt values (7,0,'','','',''); -insert into tt values (8,0,'','','',''); -insert into tt values (9,0,'','','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='6D' where id=1; -update noar ti set v0='6D' where id=1; -update noar tt set b0='CZJP6U7EQG1VS0M' where id=1; -update noar ti set b0='CZJP6U7EQG1VS0M' where id=1; -update noar tt set v0='TE0M8ZPFM5N1ECJ16V' where id=1; -update noar ti set v0='TE0M8ZPFM5N1ECJ16V' where id=1; -update noar tt set b1='IR3QPVQITLAQZKNP4EURIO9VDD' where id=1; -update noar ti set b1='IR3QPVQITLAQZKNP4EURIO9VDD' where id=1; -update noar tt set v0='XICTDK24N8LCJEKUSV0I9A31FZK' where id=1; -update noar ti set v0='XICTDK24N8LCJEKUSV0I9A31FZK' where id=1; -update noar tt set b2='87XEHIEXPU1ZRXXZ8A1SUON0J6FFE5Z' where id=1; -update noar ti set b2='87XEHIEXPU1ZRXXZ8A1SUON0J6FFE5Z' where id=1; -update noar tt set v0='TSKU5P3DH09' where id=2; -update noar ti set v0='TSKU5P3DH09' where id=2; -update noar tt set b0='8WAKINKY' where id=2; -update noar ti set b0='8WAKINKY' where id=2; -update noar tt set v0='GHAVEO37WC2DVU457H8' where id=2; -update noar ti set v0='GHAVEO37WC2DVU457H8' where id=2; -update noar tt set b1='KZIEEZK6O10DLXXM3VT34OZ740EF54ZS' where id=2; -update noar ti set b1='KZIEEZK6O10DLXXM3VT34OZ740EF54ZS' where id=2; -update noar tt set v0='0X5GW' where id=2; -update noar ti set v0='0X5GW' where id=2; -update noar tt set b2='T1FIJ98O85PRWJKKU81BTM' where id=2; -update noar ti set b2='T1FIJ98O85PRWJKKU81BTM' where id=2; -update noar tt set v0='PT8THOOEEYT' where id=3; -update noar ti set v0='PT8THOOEEYT' where id=3; -update noar tt set b0='0U985NFT6MZ7EQ8BGEIAD' where id=3; -update noar ti set b0='0U985NFT6MZ7EQ8BGEIAD' where id=3; -update noar tt set v0='MZ' where id=3; -update noar ti set v0='MZ' where id=3; -update noar tt set b1='FQI0VEJ' where id=3; -update noar ti set b1='FQI0VEJ' where id=3; -update noar tt set v0='AN4YWWXOUIH7SBVK5XCRRZFG055D611Z' where id=3; -update noar ti set v0='AN4YWWXOUIH7SBVK5XCRRZFG055D611Z' where id=3; -update noar tt set b2='5U' where id=3; -update noar ti set b2='5U' where id=3; -update noar tt set v0='8I' where id=4; -update noar ti set v0='8I' where id=4; -update noar tt set b0='KM8NE8283ULA6DSASU5P4RFX8H6L9V' where id=4; -update noar ti set b0='KM8NE8283ULA6DSASU5P4RFX8H6L9V' where id=4; -update noar tt set v0='ERIS9HADIZWSBCBTSQZOEXQFKI' where id=4; -update noar ti set v0='ERIS9HADIZWSBCBTSQZOEXQFKI' where id=4; -update noar tt set b1='2SZJWI94RJLNS' where id=4; -update noar ti set b1='2SZJWI94RJLNS' where id=4; -update noar tt set v0='USWCFOEDAHHR' where id=4; -update noar ti set v0='USWCFOEDAHHR' where id=4; -update noar tt set b2='PPF3GR12GMF6OJDPGI8E0PPYKZCQ' where id=4; -update noar ti set b2='PPF3GR12GMF6OJDPGI8E0PPYKZCQ' where id=4; -update noar tt set v0='ROCN1XQKX1MBYHZXDUJSSB87UDEY8CR' where id=5; -update noar ti set v0='ROCN1XQKX1MBYHZXDUJSSB87UDEY8CR' where id=5; -update noar tt set b0='NV0GFI' where id=5; -update noar ti set b0='NV0GFI' where id=5; -update noar tt set v0='N8T87BRHF3Q3SQCR0W' where id=5; -update noar ti set v0='N8T87BRHF3Q3SQCR0W' where id=5; -update noar tt set b1='XXJBEY5Z3UMGHOR7X45K8M' where id=5; -update noar ti set b1='XXJBEY5Z3UMGHOR7X45K8M' where id=5; -update noar tt set v0='P98TEYUOP3W60HGNW7V1EC8' where id=5; -update noar ti set v0='P98TEYUOP3W60HGNW7V1EC8' where id=5; -update noar tt set b2='3IYH0F0KMJJKZ621RJAAC6ZLSV' where id=5; -update noar ti set b2='3IYH0F0KMJJKZ621RJAAC6ZLSV' where id=5; -update noar tt set v0='GAAK6QY2S14UAR' where id=6; -update noar ti set v0='GAAK6QY2S14UAR' where id=6; -update noar tt set b0='RMH4M0WQ330UF' where id=6; -update noar ti set b0='RMH4M0WQ330UF' where id=6; -update noar tt set v0='3CA2NADO' where id=6; -update noar ti set v0='3CA2NADO' where id=6; -update noar tt set b1='6TDHSCS7K27JXY88C9P35JO' where id=6; -update noar ti set b1='6TDHSCS7K27JXY88C9P35JO' where id=6; -update noar tt set v0='JS9H6JEL4JUG9EO1YJ' where id=6; -update noar ti set v0='JS9H6JEL4JUG9EO1YJ' where id=6; -update noar tt set b2='7SPM' where id=6; -update noar ti set b2='7SPM' where id=6; -update noar tt set v0='15YPH9FN2MBHPI' where id=7; -update noar ti set v0='15YPH9FN2MBHPI' where id=7; -update noar tt set b0='FU32E5KY4H96Y96J45LMKL' where id=7; -update noar ti set b0='FU32E5KY4H96Y96J45LMKL' where id=7; -update noar tt set v0='UR4ZFQI36WJ' where id=7; -update noar ti set v0='UR4ZFQI36WJ' where id=7; -update noar tt set b1='MIWL503XT51Q1BZOS9JD45JGI2EEJQJ' where id=7; -update noar ti set b1='MIWL503XT51Q1BZOS9JD45JGI2EEJQJ' where id=7; -update noar tt set v0='H1VNR2' where id=7; -update noar ti set v0='H1VNR2' where id=7; -update noar tt set b2='EC' where id=7; -update noar ti set b2='EC' where id=7; -update noar tt set v0='ELEV9QVTWUGZAANIBJUVB6' where id=8; -update noar ti set v0='ELEV9QVTWUGZAANIBJUVB6' where id=8; -update noar tt set b0='1TYUDZGJTV1HFLIBSBNNJX5' where id=8; -update noar ti set b0='1TYUDZGJTV1HFLIBSBNNJX5' where id=8; -update noar tt set v0='PO1U6484WLGTWW' where id=8; -update noar ti set v0='PO1U6484WLGTWW' where id=8; -update noar tt set b1='MPEH9668VLH4Z70DYZ5ICFJUE7RJJM' where id=8; -update noar ti set b1='MPEH9668VLH4Z70DYZ5ICFJUE7RJJM' where id=8; -update noar tt set v0='Q2EBTHWBH9AVBYG27DNEV69' where id=8; -update noar ti set v0='Q2EBTHWBH9AVBYG27DNEV69' where id=8; -update noar tt set b2='BUE1Y8' where id=8; -update noar ti set b2='BUE1Y8' where id=8; -update noar tt set v0='8716G' where id=9; -update noar ti set v0='8716G' where id=9; -update noar tt set b0='7B25VLGCY765O8X8QK1GZ01WP' where id=9; -update noar ti set b0='7B25VLGCY765O8X8QK1GZ01WP' where id=9; -update noar tt set v0='J47OLD' where id=9; -update noar ti set v0='J47OLD' where id=9; -update noar tt set b1='CNC6F3YOZM0ZBJQXNYCN1SK6B' where id=9; -update noar ti set b1='CNC6F3YOZM0ZBJQXNYCN1SK6B' where id=9; -update noar tt set v0='OUPFB1GV82TGS0R' where id=9; -update noar ti set v0='OUPFB1GV82TGS0R' where id=9; -update noar tt set b2='5OV5SO869OHGPBH3EEU1STWA7223TWID' where id=9; -update noar ti set b2='5OV5SO869OHGPBH3EEU1STWA7223TWID' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - f0 int not null, - v0 varchar(256) not null, - b0 blob not null, - b1 mediumblob not null, - b2 mediumblob not null -) engine=tokudb; -insert into tt values (1,0,'','','',''); -insert into tt values (2,0,'','','',''); -insert into tt values (3,0,'','','',''); -insert into tt values (4,0,'','','',''); -insert into tt values (5,0,'','','',''); -insert into tt values (6,0,'','','',''); -insert into tt values (7,0,'','','',''); -insert into tt values (8,0,'','','',''); -insert into tt values (9,0,'','','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='BQIG0V48MQ' where id=1; -update noar ti set v0='BQIG0V48MQ' where id=1; -update noar tt set b0='U' where id=1; -update noar ti set b0='U' where id=1; -update noar tt set v0='KJ70PJMRUE9CG3QVAIWZCHCB94SNP' where id=1; -update noar ti set v0='KJ70PJMRUE9CG3QVAIWZCHCB94SNP' where id=1; -update noar tt set b1='7BVHTXKW0FGX5AH1QBZIRSB4H45CB8D' where id=1; -update noar ti set b1='7BVHTXKW0FGX5AH1QBZIRSB4H45CB8D' where id=1; -update noar tt set v0='UKZOK7WDUMP4CHYTGFA693ISOCQ5SJR' where id=1; -update noar ti set v0='UKZOK7WDUMP4CHYTGFA693ISOCQ5SJR' where id=1; -update noar tt set b2='LSVX4CP3AFZ1MJRPJ1M03345OBN7056S' where id=1; -update noar ti set b2='LSVX4CP3AFZ1MJRPJ1M03345OBN7056S' where id=1; -update noar tt set v0='IY22HYGFBU2J91G4RVA7L' where id=2; -update noar ti set v0='IY22HYGFBU2J91G4RVA7L' where id=2; -update noar tt set b0='96TX' where id=2; -update noar ti set b0='96TX' where id=2; -update noar tt set v0='6F26Y3SF30AORMCLT3P0QBW' where id=2; -update noar ti set v0='6F26Y3SF30AORMCLT3P0QBW' where id=2; -update noar tt set b1='37' where id=2; -update noar ti set b1='37' where id=2; -update noar tt set v0='GM1VUV4IE2Z8TSLDKPIC8O3LEE' where id=2; -update noar ti set v0='GM1VUV4IE2Z8TSLDKPIC8O3LEE' where id=2; -update noar tt set b2='7XTV' where id=2; -update noar ti set b2='7XTV' where id=2; -update noar tt set v0='2OJDOPU4W5U2QAAGQS' where id=3; -update noar ti set v0='2OJDOPU4W5U2QAAGQS' where id=3; -update noar tt set b0='STO31HDZ9' where id=3; -update noar ti set b0='STO31HDZ9' where id=3; -update noar tt set v0='BEV9C295UUTGU6JKSSXP0RTHFM' where id=3; -update noar ti set v0='BEV9C295UUTGU6JKSSXP0RTHFM' where id=3; -update noar tt set b1='3IS6GS' where id=3; -update noar ti set b1='3IS6GS' where id=3; -update noar tt set v0='KXMB3YLGU5Q08Q0K2GRKYX' where id=3; -update noar ti set v0='KXMB3YLGU5Q08Q0K2GRKYX' where id=3; -update noar tt set b2='26PKN10' where id=3; -update noar ti set b2='26PKN10' where id=3; -update noar tt set v0='D429CLUHMO8ZI4HY4NX0QM7BGV11' where id=4; -update noar ti set v0='D429CLUHMO8ZI4HY4NX0QM7BGV11' where id=4; -update noar tt set b0='QBDPZTZU3S3F' where id=4; -update noar ti set b0='QBDPZTZU3S3F' where id=4; -update noar tt set v0='J282VL9NUXXG4VA933TZQ' where id=4; -update noar ti set v0='J282VL9NUXXG4VA933TZQ' where id=4; -update noar tt set b1='MBFGCOZQJGZX2L7E2MEOOR6VZVNJW' where id=4; -update noar ti set b1='MBFGCOZQJGZX2L7E2MEOOR6VZVNJW' where id=4; -update noar tt set v0='ZWXY974S38FMBFV' where id=4; -update noar ti set v0='ZWXY974S38FMBFV' where id=4; -update noar tt set b2='XHU6OPXEQ080X266J04A0KH' where id=4; -update noar ti set b2='XHU6OPXEQ080X266J04A0KH' where id=4; -update noar tt set v0='1M6B87GOIVIPCSZ1F9' where id=5; -update noar ti set v0='1M6B87GOIVIPCSZ1F9' where id=5; -update noar tt set b0='4WLW2SH71KNBDY3QIX2EYPKGW' where id=5; -update noar ti set b0='4WLW2SH71KNBDY3QIX2EYPKGW' where id=5; -update noar tt set v0='R55W4ZB' where id=5; -update noar ti set v0='R55W4ZB' where id=5; -update noar tt set b1='E' where id=5; -update noar ti set b1='E' where id=5; -update noar tt set v0='O5UJTSY' where id=5; -update noar ti set v0='O5UJTSY' where id=5; -update noar tt set b2='ECGI50WCOC6QZ5GIRKRRD9DBZSJK' where id=5; -update noar ti set b2='ECGI50WCOC6QZ5GIRKRRD9DBZSJK' where id=5; -update noar tt set v0='X60PKVKDN7SUFYB' where id=6; -update noar ti set v0='X60PKVKDN7SUFYB' where id=6; -update noar tt set b0='V06T6G9KYONYW7S5YI2' where id=6; -update noar ti set b0='V06T6G9KYONYW7S5YI2' where id=6; -update noar tt set v0='EHTX6L1Q087I8QD13YTLC99F' where id=6; -update noar ti set v0='EHTX6L1Q087I8QD13YTLC99F' where id=6; -update noar tt set b1='G520YS1MHUT7O11WYC' where id=6; -update noar ti set b1='G520YS1MHUT7O11WYC' where id=6; -update noar tt set v0='MPOIMTQBBJGX0RX6RTO1Z0O' where id=6; -update noar ti set v0='MPOIMTQBBJGX0RX6RTO1Z0O' where id=6; -update noar tt set b2='38I' where id=6; -update noar ti set b2='38I' where id=6; -update noar tt set v0='01VEGNGP53I4DT3XWTFO4802RW' where id=7; -update noar ti set v0='01VEGNGP53I4DT3XWTFO4802RW' where id=7; -update noar tt set b0='L5C75GGHCZ9SWIJVTAXTI' where id=7; -update noar ti set b0='L5C75GGHCZ9SWIJVTAXTI' where id=7; -update noar tt set v0='H' where id=7; -update noar ti set v0='H' where id=7; -update noar tt set b1='JRXS4NN4KWTDW3010HQZA2JFS' where id=7; -update noar ti set b1='JRXS4NN4KWTDW3010HQZA2JFS' where id=7; -update noar tt set v0='XKGDKH6AO98944HFOBH' where id=7; -update noar ti set v0='XKGDKH6AO98944HFOBH' where id=7; -update noar tt set b2='NXG04X' where id=7; -update noar ti set b2='NXG04X' where id=7; -update noar tt set v0='8T6K0ZTSNZMZOQVT6QE' where id=8; -update noar ti set v0='8T6K0ZTSNZMZOQVT6QE' where id=8; -update noar tt set b0='EBCF1LXUI3BW7ZG9' where id=8; -update noar ti set b0='EBCF1LXUI3BW7ZG9' where id=8; -update noar tt set v0='4H93DK64' where id=8; -update noar ti set v0='4H93DK64' where id=8; -update noar tt set b1='TY5085JCOHSIURQRINI1' where id=8; -update noar ti set b1='TY5085JCOHSIURQRINI1' where id=8; -update noar tt set v0='EG4DI9M18EIDKLSI3ACB3Y6MW4YYUJ' where id=8; -update noar ti set v0='EG4DI9M18EIDKLSI3ACB3Y6MW4YYUJ' where id=8; -update noar tt set b2='DXKYOVX2P4PF' where id=8; -update noar ti set b2='DXKYOVX2P4PF' where id=8; -update noar tt set v0='5W0' where id=9; -update noar ti set v0='5W0' where id=9; -update noar tt set b0='V002D73J66' where id=9; -update noar ti set b0='V002D73J66' where id=9; -update noar tt set v0='VEX5KQOZYNC1NJ1YJHXEEG92W199ACHS' where id=9; -update noar ti set v0='VEX5KQOZYNC1NJ1YJHXEEG92W199ACHS' where id=9; -update noar tt set b1='QSIBF6VC44RR6J3THXL55QDN9ISGAHX0' where id=9; -update noar ti set b1='QSIBF6VC44RR6J3THXL55QDN9ISGAHX0' where id=9; -update noar tt set v0='AUMWUDDXSX7751FZ292NOZ7GK3C' where id=9; -update noar ti set v0='AUMWUDDXSX7751FZ292NOZ7GK3C' where id=9; -update noar tt set b2='K021K' where id=9; -update noar ti set b2='K021K' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - f0 int null, - v0 varchar(32) null, - b0 blob null, - b1 mediumblob null, - b2 longblob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='0WE13K3D0WQ79RMKLJB94AVWB1' where id=1; -update noar ti set v0='0WE13K3D0WQ79RMKLJB94AVWB1' where id=1; -update noar tt set b0='WTPMT9GNO2SX4L704AO8' where id=1; -update noar ti set b0='WTPMT9GNO2SX4L704AO8' where id=1; -update noar tt set v0='UPP6' where id=1; -update noar ti set v0='UPP6' where id=1; -update noar tt set b1='5SNSUW0D35GFQL4YVJMA5KMXE' where id=1; -update noar ti set b1='5SNSUW0D35GFQL4YVJMA5KMXE' where id=1; -update noar tt set v0='791AWJYXW0OLL9A6BUPDU' where id=1; -update noar ti set v0='791AWJYXW0OLL9A6BUPDU' where id=1; -update noar tt set b2='6N0TMADS' where id=1; -update noar ti set b2='6N0TMADS' where id=1; -update noar tt set v0='0UPUGWCOPUTSO' where id=2; -update noar ti set v0='0UPUGWCOPUTSO' where id=2; -update noar tt set b0='BHW81UO6TMVGGTLB0V8CB56VH' where id=2; -update noar ti set b0='BHW81UO6TMVGGTLB0V8CB56VH' where id=2; -update noar tt set v0='L1Q' where id=2; -update noar ti set v0='L1Q' where id=2; -update noar tt set b1='DKQK78FKYWKL3MNE4WLS' where id=2; -update noar ti set b1='DKQK78FKYWKL3MNE4WLS' where id=2; -update noar tt set v0='ZMZ3ZCRE6DU0LESKX7OFE76CMUS' where id=2; -update noar ti set v0='ZMZ3ZCRE6DU0LESKX7OFE76CMUS' where id=2; -update noar tt set b2='U5YYORW586TJJYAHMSZZ83' where id=2; -update noar ti set b2='U5YYORW586TJJYAHMSZZ83' where id=2; -update noar tt set v0='TK2MS' where id=3; -update noar ti set v0='TK2MS' where id=3; -update noar tt set b0='RT6ZI1IRXFAVG' where id=3; -update noar ti set b0='RT6ZI1IRXFAVG' where id=3; -update noar tt set v0='DNHVUO348NNKBURNBZJ2XTSOTFBG11Q' where id=3; -update noar ti set v0='DNHVUO348NNKBURNBZJ2XTSOTFBG11Q' where id=3; -update noar tt set b1='59OBESBU4ZLIUM9NUU4BXQP' where id=3; -update noar ti set b1='59OBESBU4ZLIUM9NUU4BXQP' where id=3; -update noar tt set v0='MJ5FY2R8BQ2V9WZNEZGE82LJ87JZPWC4' where id=3; -update noar ti set v0='MJ5FY2R8BQ2V9WZNEZGE82LJ87JZPWC4' where id=3; -update noar tt set b2='9CBAXDODBKZCTJLVI2K2' where id=3; -update noar ti set b2='9CBAXDODBKZCTJLVI2K2' where id=3; -update noar tt set v0='LJG7HWD8Z5SM0F8R4O79UPED' where id=4; -update noar ti set v0='LJG7HWD8Z5SM0F8R4O79UPED' where id=4; -update noar tt set b0='XQ3VBWD93A2IDW9' where id=4; -update noar ti set b0='XQ3VBWD93A2IDW9' where id=4; -update noar tt set v0='I5X' where id=4; -update noar ti set v0='I5X' where id=4; -update noar tt set b1='FGT79W7UXB5U35CWY' where id=4; -update noar ti set b1='FGT79W7UXB5U35CWY' where id=4; -update noar tt set v0='5JWPVJDMJI7LEDHPMI1RA5FA6G5EGHEB' where id=4; -update noar ti set v0='5JWPVJDMJI7LEDHPMI1RA5FA6G5EGHEB' where id=4; -update noar tt set b2='GL7SJT' where id=4; -update noar ti set b2='GL7SJT' where id=4; -update noar tt set v0='NDMJXT8BQVZ0GKBD0RJ4E8KZL' where id=5; -update noar ti set v0='NDMJXT8BQVZ0GKBD0RJ4E8KZL' where id=5; -update noar tt set b0='JJHB9BLEFUUJYBNEEZALJQ5R17' where id=5; -update noar ti set b0='JJHB9BLEFUUJYBNEEZALJQ5R17' where id=5; -update noar tt set v0='2BLNFM2N6MNU2T' where id=5; -update noar ti set v0='2BLNFM2N6MNU2T' where id=5; -update noar tt set b1='P6YDETIJZ015' where id=5; -update noar ti set b1='P6YDETIJZ015' where id=5; -update noar tt set v0='7OD1C0FVLAI2J87OBF1TY39H' where id=5; -update noar ti set v0='7OD1C0FVLAI2J87OBF1TY39H' where id=5; -update noar tt set b2='NYMBT1' where id=5; -update noar ti set b2='NYMBT1' where id=5; -update noar tt set v0='T0LQILREIUB0OA9T2U7A' where id=6; -update noar ti set v0='T0LQILREIUB0OA9T2U7A' where id=6; -update noar tt set b0='2' where id=6; -update noar ti set b0='2' where id=6; -update noar tt set v0='QQM4507UPABZ30K7OG' where id=6; -update noar ti set v0='QQM4507UPABZ30K7OG' where id=6; -update noar tt set b1='BQIESDUYAEN' where id=6; -update noar ti set b1='BQIESDUYAEN' where id=6; -update noar tt set v0='Q02BFLEZ23IXYNPX2' where id=6; -update noar ti set v0='Q02BFLEZ23IXYNPX2' where id=6; -update noar tt set b2='HFLGOSNLQ8CUD7ZC4B1RDJG' where id=6; -update noar ti set b2='HFLGOSNLQ8CUD7ZC4B1RDJG' where id=6; -update noar tt set v0='29' where id=7; -update noar ti set v0='29' where id=7; -update noar tt set b0='PM8VWHIOIAQUQHZDOE2E2O0QPCG46W' where id=7; -update noar ti set b0='PM8VWHIOIAQUQHZDOE2E2O0QPCG46W' where id=7; -update noar tt set v0='OW39W1EZXS' where id=7; -update noar ti set v0='OW39W1EZXS' where id=7; -update noar tt set b1='OJOHE7DCQG76ZL61IO4BT1S4G5' where id=7; -update noar ti set b1='OJOHE7DCQG76ZL61IO4BT1S4G5' where id=7; -update noar tt set v0='CO93IP1J4XOLTM2QPU49NGUJRFN1' where id=7; -update noar ti set v0='CO93IP1J4XOLTM2QPU49NGUJRFN1' where id=7; -update noar tt set b2='Y' where id=7; -update noar ti set b2='Y' where id=7; -update noar tt set v0='500ZCJ2RPANJ4OXGA2CU66O7XW9ELZEP' where id=8; -update noar ti set v0='500ZCJ2RPANJ4OXGA2CU66O7XW9ELZEP' where id=8; -update noar tt set b0='OANLK0Y' where id=8; -update noar ti set b0='OANLK0Y' where id=8; -update noar tt set v0='8Z9J6S' where id=8; -update noar ti set v0='8Z9J6S' where id=8; -update noar tt set b1='H1D159L47A0AZRJUHQECXX38DQ4R3' where id=8; -update noar ti set b1='H1D159L47A0AZRJUHQECXX38DQ4R3' where id=8; -update noar tt set v0='KR1UA5IF' where id=8; -update noar ti set v0='KR1UA5IF' where id=8; -update noar tt set b2='QRSQOZJMEA6ABGQUMYN' where id=8; -update noar ti set b2='QRSQOZJMEA6ABGQUMYN' where id=8; -update noar tt set v0='M8LT4DQSM093C5T' where id=9; -update noar ti set v0='M8LT4DQSM093C5T' where id=9; -update noar tt set b0='A05A27K1U2U' where id=9; -update noar ti set b0='A05A27K1U2U' where id=9; -update noar tt set v0='7OJULO' where id=9; -update noar ti set v0='7OJULO' where id=9; -update noar tt set b1='MG1Y3' where id=9; -update noar ti set b1='MG1Y3' where id=9; -update noar tt set v0='5JJMFU06GXV4OQL20O8E1J' where id=9; -update noar ti set v0='5JJMFU06GXV4OQL20O8E1J' where id=9; -update noar tt set b2='3XA5SYLOVMRZUS' where id=9; -update noar ti set b2='3XA5SYLOVMRZUS' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - f0 int null, - v0 varchar(256) null, - b0 blob null, - b1 mediumblob null, - b2 longblob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='97E1XUJ9XDI1W147HASZVGKQ91WCTU1R' where id=1; -update noar ti set v0='97E1XUJ9XDI1W147HASZVGKQ91WCTU1R' where id=1; -update noar tt set b0='KM' where id=1; -update noar ti set b0='KM' where id=1; -update noar tt set v0='0C' where id=1; -update noar ti set v0='0C' where id=1; -update noar tt set b1='IMR' where id=1; -update noar ti set b1='IMR' where id=1; -update noar tt set v0='GR' where id=1; -update noar ti set v0='GR' where id=1; -update noar tt set b2='CUGV1US' where id=1; -update noar ti set b2='CUGV1US' where id=1; -update noar tt set v0='Q8KGM96QGRPDN7QDCKYGKXR' where id=2; -update noar ti set v0='Q8KGM96QGRPDN7QDCKYGKXR' where id=2; -update noar tt set b0='MUZ5WXICBS2WBB1GPR48OEMVJSHN6NRJ' where id=2; -update noar ti set b0='MUZ5WXICBS2WBB1GPR48OEMVJSHN6NRJ' where id=2; -update noar tt set v0='E6FESUB7U988XRFL3XYC' where id=2; -update noar ti set v0='E6FESUB7U988XRFL3XYC' where id=2; -update noar tt set b1='OQMLS9NS5BYY' where id=2; -update noar ti set b1='OQMLS9NS5BYY' where id=2; -update noar tt set v0='MOIC92LMU2QS44ZUFSGC23EH7YAT' where id=2; -update noar ti set v0='MOIC92LMU2QS44ZUFSGC23EH7YAT' where id=2; -update noar tt set b2='R5G0CJO331FI' where id=2; -update noar ti set b2='R5G0CJO331FI' where id=2; -update noar tt set v0='LR8UZMQF5QYGVR6NA62T2' where id=3; -update noar ti set v0='LR8UZMQF5QYGVR6NA62T2' where id=3; -update noar tt set b0='EGCBWS7D1ET1PQL1J' where id=3; -update noar ti set b0='EGCBWS7D1ET1PQL1J' where id=3; -update noar tt set v0='CI2MG09ZO' where id=3; -update noar ti set v0='CI2MG09ZO' where id=3; -update noar tt set b1='LMAF' where id=3; -update noar ti set b1='LMAF' where id=3; -update noar tt set v0='MC0RXWCTJHYR0FDNSN7WBTMXQ4BZ7E' where id=3; -update noar ti set v0='MC0RXWCTJHYR0FDNSN7WBTMXQ4BZ7E' where id=3; -update noar tt set b2='GC8UP' where id=3; -update noar ti set b2='GC8UP' where id=3; -update noar tt set v0='JJ0I4Y48D1S' where id=4; -update noar ti set v0='JJ0I4Y48D1S' where id=4; -update noar tt set b0='X' where id=4; -update noar ti set b0='X' where id=4; -update noar tt set v0='FW' where id=4; -update noar ti set v0='FW' where id=4; -update noar tt set b1='NQYPVRA9ICAVR5CNXU9PUQWOK11' where id=4; -update noar ti set b1='NQYPVRA9ICAVR5CNXU9PUQWOK11' where id=4; -update noar tt set v0='TMYFTZC47R0SL1RLJKGH101QQ9CDILM' where id=4; -update noar ti set v0='TMYFTZC47R0SL1RLJKGH101QQ9CDILM' where id=4; -update noar tt set b2='REDHGMH0J94R05GBYRMV31PP' where id=4; -update noar ti set b2='REDHGMH0J94R05GBYRMV31PP' where id=4; -update noar tt set v0='LCC13I41I2XPNQ6' where id=5; -update noar ti set v0='LCC13I41I2XPNQ6' where id=5; -update noar tt set b0='NMDYFPN4KNCKGY' where id=5; -update noar ti set b0='NMDYFPN4KNCKGY' where id=5; -update noar tt set v0='R85LLOZ1YPPDZNXRGD4PZA19EH9VITR' where id=5; -update noar ti set v0='R85LLOZ1YPPDZNXRGD4PZA19EH9VITR' where id=5; -update noar tt set b1='8XZLATWQBYJN' where id=5; -update noar ti set b1='8XZLATWQBYJN' where id=5; -update noar tt set v0='731YTQFDAV7TG60HL2DTG' where id=5; -update noar ti set v0='731YTQFDAV7TG60HL2DTG' where id=5; -update noar tt set b2='1LR7EA' where id=5; -update noar ti set b2='1LR7EA' where id=5; -update noar tt set v0='WXS3LI82FMETYPW' where id=6; -update noar ti set v0='WXS3LI82FMETYPW' where id=6; -update noar tt set b0='92TQ0TVCY82PO6DZI1HOMDO' where id=6; -update noar ti set b0='92TQ0TVCY82PO6DZI1HOMDO' where id=6; -update noar tt set v0='8U8QE01IQ0' where id=6; -update noar ti set v0='8U8QE01IQ0' where id=6; -update noar tt set b1='4GTENHIUJP6U' where id=6; -update noar ti set b1='4GTENHIUJP6U' where id=6; -update noar tt set v0='DR07ASCBKRZ9U51O9G7' where id=6; -update noar ti set v0='DR07ASCBKRZ9U51O9G7' where id=6; -update noar tt set b2='DHAHWE4' where id=6; -update noar ti set b2='DHAHWE4' where id=6; -update noar tt set v0='Y5N0ERXN7FKT' where id=7; -update noar ti set v0='Y5N0ERXN7FKT' where id=7; -update noar tt set b0='PCXS9N2C1IVE1KS28WD' where id=7; -update noar ti set b0='PCXS9N2C1IVE1KS28WD' where id=7; -update noar tt set v0='71FR6QH1KQD581Y144X51PI8YWHSK' where id=7; -update noar ti set v0='71FR6QH1KQD581Y144X51PI8YWHSK' where id=7; -update noar tt set b1='J429Q3RB3FV' where id=7; -update noar ti set b1='J429Q3RB3FV' where id=7; -update noar tt set v0='271YT7XLN7IW2VBG0C1K9YAR19Z1C' where id=7; -update noar ti set v0='271YT7XLN7IW2VBG0C1K9YAR19Z1C' where id=7; -update noar tt set b2='M77C' where id=7; -update noar ti set b2='M77C' where id=7; -update noar tt set v0='SX1I46X0P3BQ3A1DNZ5URHN08' where id=8; -update noar ti set v0='SX1I46X0P3BQ3A1DNZ5URHN08' where id=8; -update noar tt set b0='LI66Y7W93T' where id=8; -update noar ti set b0='LI66Y7W93T' where id=8; -update noar tt set v0='5DC5GIO5PIWAWOX' where id=8; -update noar ti set v0='5DC5GIO5PIWAWOX' where id=8; -update noar tt set b1='W5DJV7YMJVTZKOEXHI7PRNDRB' where id=8; -update noar ti set b1='W5DJV7YMJVTZKOEXHI7PRNDRB' where id=8; -update noar tt set v0='RM3WVK573' where id=8; -update noar ti set v0='RM3WVK573' where id=8; -update noar tt set b2='1' where id=8; -update noar ti set b2='1' where id=8; -update noar tt set v0='4W2QI5PAA' where id=9; -update noar ti set v0='4W2QI5PAA' where id=9; -update noar tt set b0='BGAWIR' where id=9; -update noar ti set b0='BGAWIR' where id=9; -update noar tt set v0='L0BM2G10OYDC2YIS8CV192VBFWOX93P' where id=9; -update noar ti set v0='L0BM2G10OYDC2YIS8CV192VBFWOX93P' where id=9; -update noar tt set b1='8V3550SQJ6RXO96DUBW8XMMLVSG' where id=9; -update noar ti set b1='8V3550SQJ6RXO96DUBW8XMMLVSG' where id=9; -update noar tt set v0='VHD' where id=9; -update noar ti set v0='VHD' where id=9; -update noar tt set b2='QM0T3O' where id=9; -update noar ti set b2='QM0T3O' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - f0 int not null, - v0 varchar(32) not null, - b0 blob not null, - b1 mediumblob not null, - b2 longblob not null -) engine=tokudb; -insert into tt values (1,0,'','','',''); -insert into tt values (2,0,'','','',''); -insert into tt values (3,0,'','','',''); -insert into tt values (4,0,'','','',''); -insert into tt values (5,0,'','','',''); -insert into tt values (6,0,'','','',''); -insert into tt values (7,0,'','','',''); -insert into tt values (8,0,'','','',''); -insert into tt values (9,0,'','','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='HDMWJEJYITMNNYX1U' where id=1; -update noar ti set v0='HDMWJEJYITMNNYX1U' where id=1; -update noar tt set b0='0CS51LUJW7T19KR9E01PJH' where id=1; -update noar ti set b0='0CS51LUJW7T19KR9E01PJH' where id=1; -update noar tt set v0='A8KX4XZW1DJH751UEJ4HZ1SX' where id=1; -update noar ti set v0='A8KX4XZW1DJH751UEJ4HZ1SX' where id=1; -update noar tt set b1='34KYR48KNOCK4' where id=1; -update noar ti set b1='34KYR48KNOCK4' where id=1; -update noar tt set v0='I1WQ9IZL0OIBEXOB244CVAZE0BKMVO' where id=1; -update noar ti set v0='I1WQ9IZL0OIBEXOB244CVAZE0BKMVO' where id=1; -update noar tt set b2='Y7ATFNYO7' where id=1; -update noar ti set b2='Y7ATFNYO7' where id=1; -update noar tt set v0='J9RS8XGCJQ6' where id=2; -update noar ti set v0='J9RS8XGCJQ6' where id=2; -update noar tt set b0='HXVFI3ST5Z5P3YLH7GE2J3OGHTD0IW1' where id=2; -update noar ti set b0='HXVFI3ST5Z5P3YLH7GE2J3OGHTD0IW1' where id=2; -update noar tt set v0='JABWAPPSQ1V4K7FC68ZLO5JL' where id=2; -update noar ti set v0='JABWAPPSQ1V4K7FC68ZLO5JL' where id=2; -update noar tt set b1='M77MS2' where id=2; -update noar ti set b1='M77MS2' where id=2; -update noar tt set v0='F0QU' where id=2; -update noar ti set v0='F0QU' where id=2; -update noar tt set b2='P88ZN2NN3KLP3OSRR33QJQ9P0SB' where id=2; -update noar ti set b2='P88ZN2NN3KLP3OSRR33QJQ9P0SB' where id=2; -update noar tt set v0='3JLU366FB18V4ZTEK601WB' where id=3; -update noar ti set v0='3JLU366FB18V4ZTEK601WB' where id=3; -update noar tt set b0='5ESQRKIXY8H13ZGCB9Z' where id=3; -update noar ti set b0='5ESQRKIXY8H13ZGCB9Z' where id=3; -update noar tt set v0='A4NE543FUM' where id=3; -update noar ti set v0='A4NE543FUM' where id=3; -update noar tt set b1='Q9AXGAPOHCY' where id=3; -update noar ti set b1='Q9AXGAPOHCY' where id=3; -update noar tt set v0='H1BGXUBT1HR4GSVZDMU2LVVVWT5NKPLU' where id=3; -update noar ti set v0='H1BGXUBT1HR4GSVZDMU2LVVVWT5NKPLU' where id=3; -update noar tt set b2='O7SQ5ML' where id=3; -update noar ti set b2='O7SQ5ML' where id=3; -update noar tt set v0='3AF' where id=4; -update noar ti set v0='3AF' where id=4; -update noar tt set b0='24JPTNJHV4Q1FIPZB7Q' where id=4; -update noar ti set b0='24JPTNJHV4Q1FIPZB7Q' where id=4; -update noar tt set v0='CCNO07GXFY' where id=4; -update noar ti set v0='CCNO07GXFY' where id=4; -update noar tt set b1='7QPS4' where id=4; -update noar ti set b1='7QPS4' where id=4; -update noar tt set v0='MDE24SRIYDSB9ZPH82253JJV' where id=4; -update noar ti set v0='MDE24SRIYDSB9ZPH82253JJV' where id=4; -update noar tt set b2='VFRMUS9P5H27USAPL8BOTXYHBC' where id=4; -update noar ti set b2='VFRMUS9P5H27USAPL8BOTXYHBC' where id=4; -update noar tt set v0='3HGOMKYBF' where id=5; -update noar ti set v0='3HGOMKYBF' where id=5; -update noar tt set b0='K47L33M365G' where id=5; -update noar ti set b0='K47L33M365G' where id=5; -update noar tt set v0='1M9B6O16X' where id=5; -update noar ti set v0='1M9B6O16X' where id=5; -update noar tt set b1='YHGWSUZ7S4' where id=5; -update noar ti set b1='YHGWSUZ7S4' where id=5; -update noar tt set v0='1D20' where id=5; -update noar ti set v0='1D20' where id=5; -update noar tt set b2='3OTDQC8B22SHV9HO1SDOI6VFDZAE' where id=5; -update noar ti set b2='3OTDQC8B22SHV9HO1SDOI6VFDZAE' where id=5; -update noar tt set v0='8GT639GS7HP' where id=6; -update noar ti set v0='8GT639GS7HP' where id=6; -update noar tt set b0='KL1DV74H8' where id=6; -update noar ti set b0='KL1DV74H8' where id=6; -update noar tt set v0='9GSU3G915K9PI5O6VVZ83RMOFHD9U' where id=6; -update noar ti set v0='9GSU3G915K9PI5O6VVZ83RMOFHD9U' where id=6; -update noar tt set b1='9ML6HBFTGEETGA5J5KC7RXOK' where id=6; -update noar ti set b1='9ML6HBFTGEETGA5J5KC7RXOK' where id=6; -update noar tt set v0='L09UQWOTR5K9R526RESABLN' where id=6; -update noar ti set v0='L09UQWOTR5K9R526RESABLN' where id=6; -update noar tt set b2='G46BCWJHCQBUWL6X8NC607N' where id=6; -update noar ti set b2='G46BCWJHCQBUWL6X8NC607N' where id=6; -update noar tt set v0='N1' where id=7; -update noar ti set v0='N1' where id=7; -update noar tt set b0='VEP93ONIHZF02XFHZ' where id=7; -update noar ti set b0='VEP93ONIHZF02XFHZ' where id=7; -update noar tt set v0='RIC7B5NAEHXR' where id=7; -update noar ti set v0='RIC7B5NAEHXR' where id=7; -update noar tt set b1='74MCMDA5RH2QLUWSNJA1NN2H21XP' where id=7; -update noar ti set b1='74MCMDA5RH2QLUWSNJA1NN2H21XP' where id=7; -update noar tt set v0='M72KS5ODPA8MB' where id=7; -update noar ti set v0='M72KS5ODPA8MB' where id=7; -update noar tt set b2='5SGGCFJN7X1' where id=7; -update noar ti set b2='5SGGCFJN7X1' where id=7; -update noar tt set v0='DAZX3NSXB0OBPPQ' where id=8; -update noar ti set v0='DAZX3NSXB0OBPPQ' where id=8; -update noar tt set b0='U61RD7IEXFT7Y7Y6QTRJ' where id=8; -update noar ti set b0='U61RD7IEXFT7Y7Y6QTRJ' where id=8; -update noar tt set v0='FR445O9YLXSF2R0GASN041L7KCRNP' where id=8; -update noar ti set v0='FR445O9YLXSF2R0GASN041L7KCRNP' where id=8; -update noar tt set b1='V18NFTREY61U0D9D93SSDWIE' where id=8; -update noar ti set b1='V18NFTREY61U0D9D93SSDWIE' where id=8; -update noar tt set v0='7OV4IW9A6S7AY7LFNOK3SCNE18G' where id=8; -update noar ti set v0='7OV4IW9A6S7AY7LFNOK3SCNE18G' where id=8; -update noar tt set b2='U9G9JWXJ43QUD5I9' where id=8; -update noar ti set b2='U9G9JWXJ43QUD5I9' where id=8; -update noar tt set v0='6ZGELJ9UVDG9D3L87PWDO' where id=9; -update noar ti set v0='6ZGELJ9UVDG9D3L87PWDO' where id=9; -update noar tt set b0='K2HD65SB2KCR9BEWN1H' where id=9; -update noar ti set b0='K2HD65SB2KCR9BEWN1H' where id=9; -update noar tt set v0='OSC2HAI079QH0RJHEB' where id=9; -update noar ti set v0='OSC2HAI079QH0RJHEB' where id=9; -update noar tt set b1='JJEJM4' where id=9; -update noar ti set b1='JJEJM4' where id=9; -update noar tt set v0='0IA' where id=9; -update noar ti set v0='0IA' where id=9; -update noar tt set b2='ZSGMQ5V2SLVBWMI7C2OY0YV' where id=9; -update noar ti set b2='ZSGMQ5V2SLVBWMI7C2OY0YV' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - f0 int not null, - v0 varchar(256) not null, - b0 blob not null, - b1 mediumblob not null, - b2 longblob not null -) engine=tokudb; -insert into tt values (1,0,'','','',''); -insert into tt values (2,0,'','','',''); -insert into tt values (3,0,'','','',''); -insert into tt values (4,0,'','','',''); -insert into tt values (5,0,'','','',''); -insert into tt values (6,0,'','','',''); -insert into tt values (7,0,'','','',''); -insert into tt values (8,0,'','','',''); -insert into tt values (9,0,'','','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='H2EIRBSKSKXRKA9SQRHZSHO' where id=1; -update noar ti set v0='H2EIRBSKSKXRKA9SQRHZSHO' where id=1; -update noar tt set b0='H' where id=1; -update noar ti set b0='H' where id=1; -update noar tt set v0='CV0YRCOWJVNF7RC5Y58V' where id=1; -update noar ti set v0='CV0YRCOWJVNF7RC5Y58V' where id=1; -update noar tt set b1='4P7XXZZBYOGRSDGDM513I2' where id=1; -update noar ti set b1='4P7XXZZBYOGRSDGDM513I2' where id=1; -update noar tt set v0='QWIZJ' where id=1; -update noar ti set v0='QWIZJ' where id=1; -update noar tt set b2='S6H44KS9ZJ0BWR8LCNPNIUOW53' where id=1; -update noar ti set b2='S6H44KS9ZJ0BWR8LCNPNIUOW53' where id=1; -update noar tt set v0='IDKCNNQ22UU4EF0EC7AS' where id=2; -update noar ti set v0='IDKCNNQ22UU4EF0EC7AS' where id=2; -update noar tt set b0='EXW08T6PWVVKKZVOH' where id=2; -update noar ti set b0='EXW08T6PWVVKKZVOH' where id=2; -update noar tt set v0='CO0C27QLQ' where id=2; -update noar ti set v0='CO0C27QLQ' where id=2; -update noar tt set b1='B2VN22Y4JG5Q' where id=2; -update noar ti set b1='B2VN22Y4JG5Q' where id=2; -update noar tt set v0='9D29IU2CEZ4' where id=2; -update noar ti set v0='9D29IU2CEZ4' where id=2; -update noar tt set b2='F' where id=2; -update noar ti set b2='F' where id=2; -update noar tt set v0='FMT2OIVXT7J90ZY5MCM' where id=3; -update noar ti set v0='FMT2OIVXT7J90ZY5MCM' where id=3; -update noar tt set b0='L9A2UWTTWYNY6SPB1KXZYB9Z9R6HSI6' where id=3; -update noar ti set b0='L9A2UWTTWYNY6SPB1KXZYB9Z9R6HSI6' where id=3; -update noar tt set v0='FQ2N' where id=3; -update noar ti set v0='FQ2N' where id=3; -update noar tt set b1='WPQRVGG1HT8S0Z2Y02QWA217T3' where id=3; -update noar ti set b1='WPQRVGG1HT8S0Z2Y02QWA217T3' where id=3; -update noar tt set v0='AZSSCSR' where id=3; -update noar ti set v0='AZSSCSR' where id=3; -update noar tt set b2='QYHN' where id=3; -update noar ti set b2='QYHN' where id=3; -update noar tt set v0='T1SQFDTWO' where id=4; -update noar ti set v0='T1SQFDTWO' where id=4; -update noar tt set b0='PE5YVFTX9PU504DYZM67TRLKBIS0' where id=4; -update noar ti set b0='PE5YVFTX9PU504DYZM67TRLKBIS0' where id=4; -update noar tt set v0='RY09VV1M0' where id=4; -update noar ti set v0='RY09VV1M0' where id=4; -update noar tt set b1='Z1GXL7Y3SS1VUMB' where id=4; -update noar ti set b1='Z1GXL7Y3SS1VUMB' where id=4; -update noar tt set v0='RP3JS5W5HB8JW1DJA426635I0Y0VL' where id=4; -update noar ti set v0='RP3JS5W5HB8JW1DJA426635I0Y0VL' where id=4; -update noar tt set b2='JC9EYKF3PHEONPH4U' where id=4; -update noar ti set b2='JC9EYKF3PHEONPH4U' where id=4; -update noar tt set v0='L9BU76R32OKWI145AMTUMENCZPIPU' where id=5; -update noar ti set v0='L9BU76R32OKWI145AMTUMENCZPIPU' where id=5; -update noar tt set b0='BWBEEIHFSBDTMLGXWBJSIMZ' where id=5; -update noar ti set b0='BWBEEIHFSBDTMLGXWBJSIMZ' where id=5; -update noar tt set v0='XNIY1IQLB9U513LC7I4OFFGHK9PWS' where id=5; -update noar ti set v0='XNIY1IQLB9U513LC7I4OFFGHK9PWS' where id=5; -update noar tt set b1='SWH' where id=5; -update noar ti set b1='SWH' where id=5; -update noar tt set v0='QD' where id=5; -update noar ti set v0='QD' where id=5; -update noar tt set b2='DBZTO4VYF3' where id=5; -update noar ti set b2='DBZTO4VYF3' where id=5; -update noar tt set v0='UYNJCADJ2D03DRBAEFABUQ8CEWMFUJ' where id=6; -update noar ti set v0='UYNJCADJ2D03DRBAEFABUQ8CEWMFUJ' where id=6; -update noar tt set b0='1OH5KC7V2RCIM9QOYSIF' where id=6; -update noar ti set b0='1OH5KC7V2RCIM9QOYSIF' where id=6; -update noar tt set v0='E' where id=6; -update noar ti set v0='E' where id=6; -update noar tt set b1='9WJFHKSFXB9058XHVNFG06' where id=6; -update noar ti set b1='9WJFHKSFXB9058XHVNFG06' where id=6; -update noar tt set v0='7WG8NT0LTVDQIVSDNKX249RNOZ' where id=6; -update noar ti set v0='7WG8NT0LTVDQIVSDNKX249RNOZ' where id=6; -update noar tt set b2='MDIXJ8G66' where id=6; -update noar ti set b2='MDIXJ8G66' where id=6; -update noar tt set v0='TODOH8LKNYXSOFZULC2NZWJ40J2L8' where id=7; -update noar ti set v0='TODOH8LKNYXSOFZULC2NZWJ40J2L8' where id=7; -update noar tt set b0='T885HND' where id=7; -update noar ti set b0='T885HND' where id=7; -update noar tt set v0='ZP' where id=7; -update noar ti set v0='ZP' where id=7; -update noar tt set b1='82VL5YJC94RTOPB6DY7' where id=7; -update noar ti set b1='82VL5YJC94RTOPB6DY7' where id=7; -update noar tt set v0='ZU' where id=7; -update noar ti set v0='ZU' where id=7; -update noar tt set b2='0' where id=7; -update noar ti set b2='0' where id=7; -update noar tt set v0='PHO63' where id=8; -update noar ti set v0='PHO63' where id=8; -update noar tt set b0='8X6XYAOUAAT6ZV9AB2C8DVDCM8YX6N' where id=8; -update noar ti set b0='8X6XYAOUAAT6ZV9AB2C8DVDCM8YX6N' where id=8; -update noar tt set v0='AXU6EPJ56US0X1WA7N2Q1' where id=8; -update noar ti set v0='AXU6EPJ56US0X1WA7N2Q1' where id=8; -update noar tt set b1='Z0581T7D7PV' where id=8; -update noar ti set b1='Z0581T7D7PV' where id=8; -update noar tt set v0='X6TCA2VEVIIVK' where id=8; -update noar ti set v0='X6TCA2VEVIIVK' where id=8; -update noar tt set b2='DFAH72C18' where id=8; -update noar ti set b2='DFAH72C18' where id=8; -update noar tt set v0='Q2AITF9FSIFZZW1ZIY04AOYSV26' where id=9; -update noar ti set v0='Q2AITF9FSIFZZW1ZIY04AOYSV26' where id=9; -update noar tt set b0='KJFKEYMSX4H8YEKOWUXM' where id=9; -update noar ti set b0='KJFKEYMSX4H8YEKOWUXM' where id=9; -update noar tt set v0='M7QZV2W8' where id=9; -update noar ti set v0='M7QZV2W8' where id=9; -update noar tt set b1='GJJWLMCX7KHXZI' where id=9; -update noar ti set b1='GJJWLMCX7KHXZI' where id=9; -update noar tt set v0='VM0Y4KKC8D8MRTZVSALGRKUKNWQ' where id=9; -update noar ti set v0='VM0Y4KKC8D8MRTZVSALGRKUKNWQ' where id=9; -update noar tt set b2='2' where id=9; -update noar ti set b2='2' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - f0 int null, - v0 varchar(32) null, - b0 blob null, - b1 longblob null, - b2 tinyblob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='8PS5LIM97XCVWW4SN' where id=1; -update noar ti set v0='8PS5LIM97XCVWW4SN' where id=1; -update noar tt set b0='EAPSA49721L' where id=1; -update noar ti set b0='EAPSA49721L' where id=1; -update noar tt set v0='2VN2R0CX' where id=1; -update noar ti set v0='2VN2R0CX' where id=1; -update noar tt set b1='SJ' where id=1; -update noar ti set b1='SJ' where id=1; -update noar tt set v0='KYGQC6ZPX8LEI8' where id=1; -update noar ti set v0='KYGQC6ZPX8LEI8' where id=1; -update noar tt set b2='T915HILYU61P9OC74KEB' where id=1; -update noar ti set b2='T915HILYU61P9OC74KEB' where id=1; -update noar tt set v0='XNHQUSQL5VIE6KB5Y1QS' where id=2; -update noar ti set v0='XNHQUSQL5VIE6KB5Y1QS' where id=2; -update noar tt set b0='B7N3BW0W1LDKY3USEQ0U9EWGUKB' where id=2; -update noar ti set b0='B7N3BW0W1LDKY3USEQ0U9EWGUKB' where id=2; -update noar tt set v0='DAEA418JD95MM1VWO8KI0CS' where id=2; -update noar ti set v0='DAEA418JD95MM1VWO8KI0CS' where id=2; -update noar tt set b1='Q63OHX2EHXSRM17MQOT' where id=2; -update noar ti set b1='Q63OHX2EHXSRM17MQOT' where id=2; -update noar tt set v0='XK4A0R0PH1UMR76PWN8GLANQ0XTSYG' where id=2; -update noar ti set v0='XK4A0R0PH1UMR76PWN8GLANQ0XTSYG' where id=2; -update noar tt set b2='DOXYPOK8UEMGKK2LTZDWA3K9ZWSYOIO' where id=2; -update noar ti set b2='DOXYPOK8UEMGKK2LTZDWA3K9ZWSYOIO' where id=2; -update noar tt set v0='DF0ZFJ' where id=3; -update noar ti set v0='DF0ZFJ' where id=3; -update noar tt set b0='KX76YECE7L2ZYWWXSGO0X1W' where id=3; -update noar ti set b0='KX76YECE7L2ZYWWXSGO0X1W' where id=3; -update noar tt set v0='RZO9VQN8PP5QOBAIKIKJ2J' where id=3; -update noar ti set v0='RZO9VQN8PP5QOBAIKIKJ2J' where id=3; -update noar tt set b1='FYFVU7CMTVP5LFXJO' where id=3; -update noar ti set b1='FYFVU7CMTVP5LFXJO' where id=3; -update noar tt set v0='I6OK' where id=3; -update noar ti set v0='I6OK' where id=3; -update noar tt set b2='QHACU8HI0N5' where id=3; -update noar ti set b2='QHACU8HI0N5' where id=3; -update noar tt set v0='61BGS6Q1W340FGXCBU2V' where id=4; -update noar ti set v0='61BGS6Q1W340FGXCBU2V' where id=4; -update noar tt set b0='MXB91ANCYFM4LJ8MGPFBYP6DD9' where id=4; -update noar ti set b0='MXB91ANCYFM4LJ8MGPFBYP6DD9' where id=4; -update noar tt set v0='0AQK9ICMO7VWI4E' where id=4; -update noar ti set v0='0AQK9ICMO7VWI4E' where id=4; -update noar tt set b1='6L' where id=4; -update noar ti set b1='6L' where id=4; -update noar tt set v0='Q7R9YKWYDPNBRFALA89XXTJNB' where id=4; -update noar ti set v0='Q7R9YKWYDPNBRFALA89XXTJNB' where id=4; -update noar tt set b2='LYOZ8RS2BI567UM2LBUH7K' where id=4; -update noar ti set b2='LYOZ8RS2BI567UM2LBUH7K' where id=4; -update noar tt set v0='U' where id=5; -update noar ti set v0='U' where id=5; -update noar tt set b0='QLFO85GTIAK78WBOX5Y8VUUB4' where id=5; -update noar ti set b0='QLFO85GTIAK78WBOX5Y8VUUB4' where id=5; -update noar tt set v0='0FRNZL62' where id=5; -update noar ti set v0='0FRNZL62' where id=5; -update noar tt set b1='UIVZF5ANZ9ELJ6BMFMF' where id=5; -update noar ti set b1='UIVZF5ANZ9ELJ6BMFMF' where id=5; -update noar tt set v0='M1MD5PKP173' where id=5; -update noar ti set v0='M1MD5PKP173' where id=5; -update noar tt set b2='LMI5KJTU' where id=5; -update noar ti set b2='LMI5KJTU' where id=5; -update noar tt set v0='GD3RYUP6BJ9JAOSW4TO' where id=6; -update noar ti set v0='GD3RYUP6BJ9JAOSW4TO' where id=6; -update noar tt set b0='SR8' where id=6; -update noar ti set b0='SR8' where id=6; -update noar tt set v0='6CNB6VSRXDCJLB7EHC5OADJ4E' where id=6; -update noar ti set v0='6CNB6VSRXDCJLB7EHC5OADJ4E' where id=6; -update noar tt set b1='W9VW779LBHJLSHQK94UAMHWCGAEX3' where id=6; -update noar ti set b1='W9VW779LBHJLSHQK94UAMHWCGAEX3' where id=6; -update noar tt set v0='0B2ILT82R3' where id=6; -update noar ti set v0='0B2ILT82R3' where id=6; -update noar tt set b2='TGI97HZ' where id=6; -update noar ti set b2='TGI97HZ' where id=6; -update noar tt set v0='FAFZ3XL4M4' where id=7; -update noar ti set v0='FAFZ3XL4M4' where id=7; -update noar tt set b0='OCGZ' where id=7; -update noar ti set b0='OCGZ' where id=7; -update noar tt set v0='SDKVIWY6PZ40ZKH3EUR' where id=7; -update noar ti set v0='SDKVIWY6PZ40ZKH3EUR' where id=7; -update noar tt set b1='P261PRNROR6RNUPDMVBN8' where id=7; -update noar ti set b1='P261PRNROR6RNUPDMVBN8' where id=7; -update noar tt set v0='RBFUH' where id=7; -update noar ti set v0='RBFUH' where id=7; -update noar tt set b2='24B7V2NL' where id=7; -update noar ti set b2='24B7V2NL' where id=7; -update noar tt set v0='40Y15OF35FLX4Y90L58U2R2XYL5KQFJ' where id=8; -update noar ti set v0='40Y15OF35FLX4Y90L58U2R2XYL5KQFJ' where id=8; -update noar tt set b0='2TKRA8AMMPVBZLFA6' where id=8; -update noar ti set b0='2TKRA8AMMPVBZLFA6' where id=8; -update noar tt set v0='8EOGL83MPGHUL3LJ' where id=8; -update noar ti set v0='8EOGL83MPGHUL3LJ' where id=8; -update noar tt set b1='4KP252TBDA0XUH905GBOBEE' where id=8; -update noar ti set b1='4KP252TBDA0XUH905GBOBEE' where id=8; -update noar tt set v0='BMFHSF0DF' where id=8; -update noar ti set v0='BMFHSF0DF' where id=8; -update noar tt set b2='PBXCGKQG17PXSPP8414N' where id=8; -update noar ti set b2='PBXCGKQG17PXSPP8414N' where id=8; -update noar tt set v0='WCLX8KXI3TAW1TQ70PXP0' where id=9; -update noar ti set v0='WCLX8KXI3TAW1TQ70PXP0' where id=9; -update noar tt set b0='BFVHGBX3XSTZRMIPC52CGQO5SM2F' where id=9; -update noar ti set b0='BFVHGBX3XSTZRMIPC52CGQO5SM2F' where id=9; -update noar tt set v0='VI33D4FBYY29OPRHB0KX7FFE' where id=9; -update noar ti set v0='VI33D4FBYY29OPRHB0KX7FFE' where id=9; -update noar tt set b1='D2VJFNFHJ1VJ' where id=9; -update noar ti set b1='D2VJFNFHJ1VJ' where id=9; -update noar tt set v0='DAMO' where id=9; -update noar ti set v0='DAMO' where id=9; -update noar tt set b2='HZGDDJC9LOX03Z1T6FV' where id=9; -update noar ti set b2='HZGDDJC9LOX03Z1T6FV' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - f0 int null, - v0 varchar(256) null, - b0 blob null, - b1 longblob null, - b2 tinyblob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='EO35151XGXNWNVBQ' where id=1; -update noar ti set v0='EO35151XGXNWNVBQ' where id=1; -update noar tt set b0='HP24C0IDRAOPS41SMCDLP76ZHXEZ' where id=1; -update noar ti set b0='HP24C0IDRAOPS41SMCDLP76ZHXEZ' where id=1; -update noar tt set v0='59RZ38K1EN8X2TAZHF3R' where id=1; -update noar ti set v0='59RZ38K1EN8X2TAZHF3R' where id=1; -update noar tt set b1='6T2VPG1YK5' where id=1; -update noar ti set b1='6T2VPG1YK5' where id=1; -update noar tt set v0='ZBJIEF9BTW2Q9R1L6PVYBK067GND' where id=1; -update noar ti set v0='ZBJIEF9BTW2Q9R1L6PVYBK067GND' where id=1; -update noar tt set b2='JLIN0B15OLBA0LWA' where id=1; -update noar ti set b2='JLIN0B15OLBA0LWA' where id=1; -update noar tt set v0='PY2Q5I' where id=2; -update noar ti set v0='PY2Q5I' where id=2; -update noar tt set b0='NS' where id=2; -update noar ti set b0='NS' where id=2; -update noar tt set v0='W2DS' where id=2; -update noar ti set v0='W2DS' where id=2; -update noar tt set b1='0GN7SNIJ5H3539L4' where id=2; -update noar ti set b1='0GN7SNIJ5H3539L4' where id=2; -update noar tt set v0='XDE3ETOXZNK29RTXMM591W6CGSKKBZ' where id=2; -update noar ti set v0='XDE3ETOXZNK29RTXMM591W6CGSKKBZ' where id=2; -update noar tt set b2='SV72XPP4' where id=2; -update noar ti set b2='SV72XPP4' where id=2; -update noar tt set v0='JCSKFFSTO98U1S4CWW5WI2ETM' where id=3; -update noar ti set v0='JCSKFFSTO98U1S4CWW5WI2ETM' where id=3; -update noar tt set b0='MPVGTETTY7WSHDTI4DHGEGI' where id=3; -update noar ti set b0='MPVGTETTY7WSHDTI4DHGEGI' where id=3; -update noar tt set v0='TJPJ3H3IRXU0UY3ZDYRQZSD9S' where id=3; -update noar ti set v0='TJPJ3H3IRXU0UY3ZDYRQZSD9S' where id=3; -update noar tt set b1='VTU62' where id=3; -update noar ti set b1='VTU62' where id=3; -update noar tt set v0='AD' where id=3; -update noar ti set v0='AD' where id=3; -update noar tt set b2='F036JBM6EZCJ5W9EBNH2' where id=3; -update noar ti set b2='F036JBM6EZCJ5W9EBNH2' where id=3; -update noar tt set v0='ANCJZOJN4T1FHNRC87521K2I5' where id=4; -update noar ti set v0='ANCJZOJN4T1FHNRC87521K2I5' where id=4; -update noar tt set b0='99YAW8NHFSZIRBNUQZT6Q57AKMB9B7' where id=4; -update noar ti set b0='99YAW8NHFSZIRBNUQZT6Q57AKMB9B7' where id=4; -update noar tt set v0='SJ4PFBUSIVNC96K' where id=4; -update noar ti set v0='SJ4PFBUSIVNC96K' where id=4; -update noar tt set b1='3316AOE23OWPVBP5C' where id=4; -update noar ti set b1='3316AOE23OWPVBP5C' where id=4; -update noar tt set v0='AP5' where id=4; -update noar ti set v0='AP5' where id=4; -update noar tt set b2='GF5AR' where id=4; -update noar ti set b2='GF5AR' where id=4; -update noar tt set v0='7YLDFU952E9EOOL2H0B2KOGXPIX8YAE' where id=5; -update noar ti set v0='7YLDFU952E9EOOL2H0B2KOGXPIX8YAE' where id=5; -update noar tt set b0='G56336ZWCDEO0L81GQRLYGX' where id=5; -update noar ti set b0='G56336ZWCDEO0L81GQRLYGX' where id=5; -update noar tt set v0='HFUAIK2NWGGBDB' where id=5; -update noar ti set v0='HFUAIK2NWGGBDB' where id=5; -update noar tt set b1='SRFMFGZB7D5IN42V2LFA96U860MA' where id=5; -update noar ti set b1='SRFMFGZB7D5IN42V2LFA96U860MA' where id=5; -update noar tt set v0='C25M16UN5OW6NJ2' where id=5; -update noar ti set v0='C25M16UN5OW6NJ2' where id=5; -update noar tt set b2='35WMBZBN449HQHPFEN55ZV' where id=5; -update noar ti set b2='35WMBZBN449HQHPFEN55ZV' where id=5; -update noar tt set v0='DFN6' where id=6; -update noar ti set v0='DFN6' where id=6; -update noar tt set b0='MC8QTALEWA6O' where id=6; -update noar ti set b0='MC8QTALEWA6O' where id=6; -update noar tt set v0='H3R64PPQ3F5SHVRT6YSK7TS' where id=6; -update noar ti set v0='H3R64PPQ3F5SHVRT6YSK7TS' where id=6; -update noar tt set b1='6XRUP' where id=6; -update noar ti set b1='6XRUP' where id=6; -update noar tt set v0='IAS1906LURE5CP21CNWFL' where id=6; -update noar ti set v0='IAS1906LURE5CP21CNWFL' where id=6; -update noar tt set b2='M' where id=6; -update noar ti set b2='M' where id=6; -update noar tt set v0='LC1SGKPUUEWO24V8OBFHV0FGIXD' where id=7; -update noar ti set v0='LC1SGKPUUEWO24V8OBFHV0FGIXD' where id=7; -update noar tt set b0='8F66VWZAL' where id=7; -update noar ti set b0='8F66VWZAL' where id=7; -update noar tt set v0='D5BDQV1ZHCJ5T6F0QU2XM' where id=7; -update noar ti set v0='D5BDQV1ZHCJ5T6F0QU2XM' where id=7; -update noar tt set b1='OMVXBQCLI4' where id=7; -update noar ti set b1='OMVXBQCLI4' where id=7; -update noar tt set v0='ZRTTNABSPS4012QQSU118' where id=7; -update noar ti set v0='ZRTTNABSPS4012QQSU118' where id=7; -update noar tt set b2='5YG47300AA9XRQLEBQSY7RNE' where id=7; -update noar ti set b2='5YG47300AA9XRQLEBQSY7RNE' where id=7; -update noar tt set v0='X' where id=8; -update noar ti set v0='X' where id=8; -update noar tt set b0='DDX1JVXC3UME' where id=8; -update noar ti set b0='DDX1JVXC3UME' where id=8; -update noar tt set v0='6ICFLBOKN' where id=8; -update noar ti set v0='6ICFLBOKN' where id=8; -update noar tt set b1='GULF4ORP4WL19KNDOFD1OEZKAAIE2' where id=8; -update noar ti set b1='GULF4ORP4WL19KNDOFD1OEZKAAIE2' where id=8; -update noar tt set v0='Z7WSTX0RWQ3S03P17TZQ6DH5Q6PT5' where id=8; -update noar ti set v0='Z7WSTX0RWQ3S03P17TZQ6DH5Q6PT5' where id=8; -update noar tt set b2='O' where id=8; -update noar ti set b2='O' where id=8; -update noar tt set v0='U7QNS' where id=9; -update noar ti set v0='U7QNS' where id=9; -update noar tt set b0='H8P7RYPEFKJZ91SKF7KM0IYZJZY' where id=9; -update noar ti set b0='H8P7RYPEFKJZ91SKF7KM0IYZJZY' where id=9; -update noar tt set v0='P7N032KMP7DNVE8CTGWXBLGT3JSQ2Q' where id=9; -update noar ti set v0='P7N032KMP7DNVE8CTGWXBLGT3JSQ2Q' where id=9; -update noar tt set b1='GLQFG8ZVW0ZXM20JHLDQ7I' where id=9; -update noar ti set b1='GLQFG8ZVW0ZXM20JHLDQ7I' where id=9; -update noar tt set v0='90V15OL6OXEPHKHKHZZAFYW5BY5D8D' where id=9; -update noar ti set v0='90V15OL6OXEPHKHKHZZAFYW5BY5D8D' where id=9; -update noar tt set b2='FIHEU9H20H2VLWQ' where id=9; -update noar ti set b2='FIHEU9H20H2VLWQ' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - f0 int not null, - v0 varchar(32) not null, - b0 blob not null, - b1 longblob not null, - b2 tinyblob not null -) engine=tokudb; -insert into tt values (1,0,'','','',''); -insert into tt values (2,0,'','','',''); -insert into tt values (3,0,'','','',''); -insert into tt values (4,0,'','','',''); -insert into tt values (5,0,'','','',''); -insert into tt values (6,0,'','','',''); -insert into tt values (7,0,'','','',''); -insert into tt values (8,0,'','','',''); -insert into tt values (9,0,'','','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='GA7V0GLVX1GV9N26RMWKWI5EOAO3OA00' where id=1; -update noar ti set v0='GA7V0GLVX1GV9N26RMWKWI5EOAO3OA00' where id=1; -update noar tt set b0='5Q' where id=1; -update noar ti set b0='5Q' where id=1; -update noar tt set v0='16HFLSMCC9XYTXXOF' where id=1; -update noar ti set v0='16HFLSMCC9XYTXXOF' where id=1; -update noar tt set b1='VTTXU10D7BP' where id=1; -update noar ti set b1='VTTXU10D7BP' where id=1; -update noar tt set v0='QALVJYSPL9NT3NYDC' where id=1; -update noar ti set v0='QALVJYSPL9NT3NYDC' where id=1; -update noar tt set b2='C0QH2L' where id=1; -update noar ti set b2='C0QH2L' where id=1; -update noar tt set v0='I61UE3V1RIPKSXIVTKMS' where id=2; -update noar ti set v0='I61UE3V1RIPKSXIVTKMS' where id=2; -update noar tt set b0='391P428Y3V1J54' where id=2; -update noar ti set b0='391P428Y3V1J54' where id=2; -update noar tt set v0='5WAJJYDAV6PYFJR4KX2CDS9FT9AGD0HU' where id=2; -update noar ti set v0='5WAJJYDAV6PYFJR4KX2CDS9FT9AGD0HU' where id=2; -update noar tt set b1='BUATSX' where id=2; -update noar ti set b1='BUATSX' where id=2; -update noar tt set v0='GZGPA1PVX2Q50C6D2' where id=2; -update noar ti set v0='GZGPA1PVX2Q50C6D2' where id=2; -update noar tt set b2='TH4MFGV5HE' where id=2; -update noar ti set b2='TH4MFGV5HE' where id=2; -update noar tt set v0='GFX' where id=3; -update noar ti set v0='GFX' where id=3; -update noar tt set b0='3MGY24NBRN46WPKI' where id=3; -update noar ti set b0='3MGY24NBRN46WPKI' where id=3; -update noar tt set v0='FM6PPJUBE9FGEB' where id=3; -update noar ti set v0='FM6PPJUBE9FGEB' where id=3; -update noar tt set b1='T8HTP4A7M34N4MIWP6' where id=3; -update noar ti set b1='T8HTP4A7M34N4MIWP6' where id=3; -update noar tt set v0='53UZH8HAPKV1WX50E3B15' where id=3; -update noar ti set v0='53UZH8HAPKV1WX50E3B15' where id=3; -update noar tt set b2='Y1OG47300PATBI5P5YOMM' where id=3; -update noar ti set b2='Y1OG47300PATBI5P5YOMM' where id=3; -update noar tt set v0='976AQV38MW7NNVGY' where id=4; -update noar ti set v0='976AQV38MW7NNVGY' where id=4; -update noar tt set b0='TDISXZCDNW' where id=4; -update noar ti set b0='TDISXZCDNW' where id=4; -update noar tt set v0='USJJHE0TZM6C9EQ7PYOVF2WE' where id=4; -update noar ti set v0='USJJHE0TZM6C9EQ7PYOVF2WE' where id=4; -update noar tt set b1='OBFIP9IU5MARHUNQR' where id=4; -update noar ti set b1='OBFIP9IU5MARHUNQR' where id=4; -update noar tt set v0='3SDZJQ' where id=4; -update noar ti set v0='3SDZJQ' where id=4; -update noar tt set b2='11IVV' where id=4; -update noar ti set b2='11IVV' where id=4; -update noar tt set v0='LK9G2JFA0T' where id=5; -update noar ti set v0='LK9G2JFA0T' where id=5; -update noar tt set b0='QSGVCBUDBXTLI0RTV7E903JU' where id=5; -update noar ti set b0='QSGVCBUDBXTLI0RTV7E903JU' where id=5; -update noar tt set v0='Q0H' where id=5; -update noar ti set v0='Q0H' where id=5; -update noar tt set b1='MVD5U1JO509POLUF7GISSHSZI3VE11GA' where id=5; -update noar ti set b1='MVD5U1JO509POLUF7GISSHSZI3VE11GA' where id=5; -update noar tt set v0='B1QKH4XHUD1OCA3C3M6UHO5' where id=5; -update noar ti set v0='B1QKH4XHUD1OCA3C3M6UHO5' where id=5; -update noar tt set b2='IIC0X' where id=5; -update noar ti set b2='IIC0X' where id=5; -update noar tt set v0='92XC2H' where id=6; -update noar ti set v0='92XC2H' where id=6; -update noar tt set b0='02MVSPMKNPJFWP' where id=6; -update noar ti set b0='02MVSPMKNPJFWP' where id=6; -update noar tt set v0='H4UXF2SZSLG06ZKVPYG519KZGAQ3ZGT' where id=6; -update noar ti set v0='H4UXF2SZSLG06ZKVPYG519KZGAQ3ZGT' where id=6; -update noar tt set b1='TVEMKEGELF0XQWMZ69ZU4AS3EM' where id=6; -update noar ti set b1='TVEMKEGELF0XQWMZ69ZU4AS3EM' where id=6; -update noar tt set v0='I' where id=6; -update noar ti set v0='I' where id=6; -update noar tt set b2='8PY5YXWWQR0E8BT4850MOT' where id=6; -update noar ti set b2='8PY5YXWWQR0E8BT4850MOT' where id=6; -update noar tt set v0='JG' where id=7; -update noar ti set v0='JG' where id=7; -update noar tt set b0='9B5BVF2' where id=7; -update noar ti set b0='9B5BVF2' where id=7; -update noar tt set v0='EICUIUC1PZ9HBA1Z9CFKRZBP1PX6' where id=7; -update noar ti set v0='EICUIUC1PZ9HBA1Z9CFKRZBP1PX6' where id=7; -update noar tt set b1='SL5AEVL1GPDAMDCZ6O0MNZ512OXQF1' where id=7; -update noar ti set b1='SL5AEVL1GPDAMDCZ6O0MNZ512OXQF1' where id=7; -update noar tt set v0='NBB0Y501BC98UZBNV76GBEJQDGEQ447' where id=7; -update noar ti set v0='NBB0Y501BC98UZBNV76GBEJQDGEQ447' where id=7; -update noar tt set b2='2WQ19E38FZHQRQBIJSSWJIQV3LV1WW' where id=7; -update noar ti set b2='2WQ19E38FZHQRQBIJSSWJIQV3LV1WW' where id=7; -update noar tt set v0='MFPPEGLKB6EUQJPYWASJ' where id=8; -update noar ti set v0='MFPPEGLKB6EUQJPYWASJ' where id=8; -update noar tt set b0='RRLQ' where id=8; -update noar ti set b0='RRLQ' where id=8; -update noar tt set v0='U15QKE7E7CX6F9M1U2PRVE' where id=8; -update noar ti set v0='U15QKE7E7CX6F9M1U2PRVE' where id=8; -update noar tt set b1='HG' where id=8; -update noar ti set b1='HG' where id=8; -update noar tt set v0='D3D' where id=8; -update noar ti set v0='D3D' where id=8; -update noar tt set b2='6I71R60QRS1QEB53W5XCAQA3' where id=8; -update noar ti set b2='6I71R60QRS1QEB53W5XCAQA3' where id=8; -update noar tt set v0='BC2TROQ5J' where id=9; -update noar ti set v0='BC2TROQ5J' where id=9; -update noar tt set b0='DBKL0WVJHLHHZBU158HXCTC' where id=9; -update noar ti set b0='DBKL0WVJHLHHZBU158HXCTC' where id=9; -update noar tt set v0='Q86QF0H' where id=9; -update noar ti set v0='Q86QF0H' where id=9; -update noar tt set b1='DVKXRXENQFY6HUB9BC' where id=9; -update noar ti set b1='DVKXRXENQFY6HUB9BC' where id=9; -update noar tt set v0='Q5GAC9A0MFXD1ISX0A7R4GDOI8XFGZUA' where id=9; -update noar ti set v0='Q5GAC9A0MFXD1ISX0A7R4GDOI8XFGZUA' where id=9; -update noar tt set b2='O3UKR2' where id=9; -update noar ti set b2='O3UKR2' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - f0 int not null, - v0 varchar(256) not null, - b0 blob not null, - b1 longblob not null, - b2 tinyblob not null -) engine=tokudb; -insert into tt values (1,0,'','','',''); -insert into tt values (2,0,'','','',''); -insert into tt values (3,0,'','','',''); -insert into tt values (4,0,'','','',''); -insert into tt values (5,0,'','','',''); -insert into tt values (6,0,'','','',''); -insert into tt values (7,0,'','','',''); -insert into tt values (8,0,'','','',''); -insert into tt values (9,0,'','','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='GT78ZCXRR3SK9A9EPSY7PDVY8K' where id=1; -update noar ti set v0='GT78ZCXRR3SK9A9EPSY7PDVY8K' where id=1; -update noar tt set b0='A' where id=1; -update noar ti set b0='A' where id=1; -update noar tt set v0='WIW0DNI' where id=1; -update noar ti set v0='WIW0DNI' where id=1; -update noar tt set b1='69R2XAL6UYYNSGMJM7H9' where id=1; -update noar ti set b1='69R2XAL6UYYNSGMJM7H9' where id=1; -update noar tt set v0='GN4' where id=1; -update noar ti set v0='GN4' where id=1; -update noar tt set b2='7MQYPD2W9BDBIIWQD' where id=1; -update noar ti set b2='7MQYPD2W9BDBIIWQD' where id=1; -update noar tt set v0='F' where id=2; -update noar ti set v0='F' where id=2; -update noar tt set b0='R3915QKQK9VAVM9A92NHXKWTPX32RT' where id=2; -update noar ti set b0='R3915QKQK9VAVM9A92NHXKWTPX32RT' where id=2; -update noar tt set v0='MG53LSY6HH' where id=2; -update noar ti set v0='MG53LSY6HH' where id=2; -update noar tt set b1='JKTMH876L9YY5LS3O3' where id=2; -update noar ti set b1='JKTMH876L9YY5LS3O3' where id=2; -update noar tt set v0='LQRPM5CU3' where id=2; -update noar ti set v0='LQRPM5CU3' where id=2; -update noar tt set b2='E2JYMUF3WOWBQKKDSAWFXHT7DI5RBXP' where id=2; -update noar ti set b2='E2JYMUF3WOWBQKKDSAWFXHT7DI5RBXP' where id=2; -update noar tt set v0='AY2WR33JL7162Q254BPVNW4M81QUZW' where id=3; -update noar ti set v0='AY2WR33JL7162Q254BPVNW4M81QUZW' where id=3; -update noar tt set b0='YXGHCE2NBRXEDIBRHH5TGO4' where id=3; -update noar ti set b0='YXGHCE2NBRXEDIBRHH5TGO4' where id=3; -update noar tt set v0='K4PL40ZEC5' where id=3; -update noar ti set v0='K4PL40ZEC5' where id=3; -update noar tt set b1='B478WS19IJFHQBFWHGH9VCE' where id=3; -update noar ti set b1='B478WS19IJFHQBFWHGH9VCE' where id=3; -update noar tt set v0='XWDL' where id=3; -update noar ti set v0='XWDL' where id=3; -update noar tt set b2='3QRY2X' where id=3; -update noar ti set b2='3QRY2X' where id=3; -update noar tt set v0='XN7XEWKTET' where id=4; -update noar ti set v0='XN7XEWKTET' where id=4; -update noar tt set b0='N5IK4PK9OUMZ4E0N' where id=4; -update noar ti set b0='N5IK4PK9OUMZ4E0N' where id=4; -update noar tt set v0='F6MLS7F08G1Y7SFGLHZ' where id=4; -update noar ti set v0='F6MLS7F08G1Y7SFGLHZ' where id=4; -update noar tt set b1='OY0MSTB90LJ8XZ8HC0K' where id=4; -update noar ti set b1='OY0MSTB90LJ8XZ8HC0K' where id=4; -update noar tt set v0='9CPZ6KLPA62RVPDNSU3QSE28' where id=4; -update noar ti set v0='9CPZ6KLPA62RVPDNSU3QSE28' where id=4; -update noar tt set b2='09H' where id=4; -update noar ti set b2='09H' where id=4; -update noar tt set v0='0CASECR6AEU9H93GYO' where id=5; -update noar ti set v0='0CASECR6AEU9H93GYO' where id=5; -update noar tt set b0='BOMIRTM6WXSYR4N08K2C74JAZC45' where id=5; -update noar ti set b0='BOMIRTM6WXSYR4N08K2C74JAZC45' where id=5; -update noar tt set v0='UWR075JQW2KXULXYXXU9AVBVWWX7SD' where id=5; -update noar ti set v0='UWR075JQW2KXULXYXXU9AVBVWWX7SD' where id=5; -update noar tt set b1='3Q8M7VVQ63G1P6L067D' where id=5; -update noar ti set b1='3Q8M7VVQ63G1P6L067D' where id=5; -update noar tt set v0='J8OR5YIL1CQXKS99U' where id=5; -update noar ti set v0='J8OR5YIL1CQXKS99U' where id=5; -update noar tt set b2='3FGU0QIE65G9LU' where id=5; -update noar ti set b2='3FGU0QIE65G9LU' where id=5; -update noar tt set v0='18V36V8P5' where id=6; -update noar ti set v0='18V36V8P5' where id=6; -update noar tt set b0='0UAJED77GUAIQTE7ZM2L4ZHVJRIDP8' where id=6; -update noar ti set b0='0UAJED77GUAIQTE7ZM2L4ZHVJRIDP8' where id=6; -update noar tt set v0='FRZGUT0NEEJRZ2KMV4ULIZ' where id=6; -update noar ti set v0='FRZGUT0NEEJRZ2KMV4ULIZ' where id=6; -update noar tt set b1='22HT12J432ZQMWTATX7B3D1JKRC6DG' where id=6; -update noar ti set b1='22HT12J432ZQMWTATX7B3D1JKRC6DG' where id=6; -update noar tt set v0='WTKIR5E' where id=6; -update noar ti set v0='WTKIR5E' where id=6; -update noar tt set b2='6' where id=6; -update noar ti set b2='6' where id=6; -update noar tt set v0='L8DZP8UC2KYA9ZYJO89QJM6JR' where id=7; -update noar ti set v0='L8DZP8UC2KYA9ZYJO89QJM6JR' where id=7; -update noar tt set b0='MRFCSM0VL0XK9SKBWVF38FYGW2UQU' where id=7; -update noar ti set b0='MRFCSM0VL0XK9SKBWVF38FYGW2UQU' where id=7; -update noar tt set v0='6T8BM' where id=7; -update noar ti set v0='6T8BM' where id=7; -update noar tt set b1='OIC607YT9KM5BPX27XZNZ1YRLLPWU' where id=7; -update noar ti set b1='OIC607YT9KM5BPX27XZNZ1YRLLPWU' where id=7; -update noar tt set v0='LUFTRKXOPVCA' where id=7; -update noar ti set v0='LUFTRKXOPVCA' where id=7; -update noar tt set b2='T295EWPNS33SQ1ODAIU' where id=7; -update noar ti set b2='T295EWPNS33SQ1ODAIU' where id=7; -update noar tt set v0='1GEH0CM6583MELPXY0' where id=8; -update noar ti set v0='1GEH0CM6583MELPXY0' where id=8; -update noar tt set b0='7O2VVWLCTZQLC3Z4EPOX72FO' where id=8; -update noar ti set b0='7O2VVWLCTZQLC3Z4EPOX72FO' where id=8; -update noar tt set v0='ITNM5XP3K6FE9H' where id=8; -update noar ti set v0='ITNM5XP3K6FE9H' where id=8; -update noar tt set b1='IT2U6T2VC60CO5W77E' where id=8; -update noar ti set b1='IT2U6T2VC60CO5W77E' where id=8; -update noar tt set v0='R5L3VX0' where id=8; -update noar ti set v0='R5L3VX0' where id=8; -update noar tt set b2='EWZL5PV1NFIPT5GP2AERUC9HOU' where id=8; -update noar ti set b2='EWZL5PV1NFIPT5GP2AERUC9HOU' where id=8; -update noar tt set v0='S4AT689IDOAY4EF' where id=9; -update noar ti set v0='S4AT689IDOAY4EF' where id=9; -update noar tt set b0='E33ICTT04MQNA0H905DTP8' where id=9; -update noar ti set b0='E33ICTT04MQNA0H905DTP8' where id=9; -update noar tt set v0='PWANA7K2W3ST7FOBCH' where id=9; -update noar ti set v0='PWANA7K2W3ST7FOBCH' where id=9; -update noar tt set b1='HNCRVBHT8OP93KA5N' where id=9; -update noar ti set b1='HNCRVBHT8OP93KA5N' where id=9; -update noar tt set v0='HYR66Y8N1CXQS7NVB9PJET41Q1KB0HT3' where id=9; -update noar ti set v0='HYR66Y8N1CXQS7NVB9PJET41Q1KB0HT3' where id=9; -update noar tt set b2='51U0I' where id=9; -update noar ti set b2='51U0I' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - f0 int null, - v0 varchar(32) null, - b0 blob null, - b1 longblob null, - b2 blob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='C36HZUEST1Q8EC2HG5G90QEHF0UEPM' where id=1; -update noar ti set v0='C36HZUEST1Q8EC2HG5G90QEHF0UEPM' where id=1; -update noar tt set b0='36J8JV9H7D5XAT9FT' where id=1; -update noar ti set b0='36J8JV9H7D5XAT9FT' where id=1; -update noar tt set v0='GEE8KPNXHKV4' where id=1; -update noar ti set v0='GEE8KPNXHKV4' where id=1; -update noar tt set b1='CI5FA2O3WT80G' where id=1; -update noar ti set b1='CI5FA2O3WT80G' where id=1; -update noar tt set v0='TO9' where id=1; -update noar ti set v0='TO9' where id=1; -update noar tt set b2='H61E9OWLF53K1LSZ81H6455ZVX5TX0' where id=1; -update noar ti set b2='H61E9OWLF53K1LSZ81H6455ZVX5TX0' where id=1; -update noar tt set v0='L5STQPKFZO3' where id=2; -update noar ti set v0='L5STQPKFZO3' where id=2; -update noar tt set b0='4MPAC26ADRUH' where id=2; -update noar ti set b0='4MPAC26ADRUH' where id=2; -update noar tt set v0='45GNQO833T2YBXQCY' where id=2; -update noar ti set v0='45GNQO833T2YBXQCY' where id=2; -update noar tt set b1='PVHSKPZFXQOPX4S6G0U70XWWC' where id=2; -update noar ti set b1='PVHSKPZFXQOPX4S6G0U70XWWC' where id=2; -update noar tt set v0='94D8D9Z2CCQ' where id=2; -update noar ti set v0='94D8D9Z2CCQ' where id=2; -update noar tt set b2='POU6TEUFEZQTRSCYJ' where id=2; -update noar ti set b2='POU6TEUFEZQTRSCYJ' where id=2; -update noar tt set v0='N2WYWRJXRF4RCYWIZCNZ' where id=3; -update noar ti set v0='N2WYWRJXRF4RCYWIZCNZ' where id=3; -update noar tt set b0='BX05GCHRSVNI6O57N9YLHRENNYT5' where id=3; -update noar ti set b0='BX05GCHRSVNI6O57N9YLHRENNYT5' where id=3; -update noar tt set v0='4AKF9ZHRX4UCAQ6JDW' where id=3; -update noar ti set v0='4AKF9ZHRX4UCAQ6JDW' where id=3; -update noar tt set b1='NDWYANAY0DVBOJYFGCIGJR1MTJ3OQV' where id=3; -update noar ti set b1='NDWYANAY0DVBOJYFGCIGJR1MTJ3OQV' where id=3; -update noar tt set v0='X6I' where id=3; -update noar ti set v0='X6I' where id=3; -update noar tt set b2='DBUDX1WO3' where id=3; -update noar ti set b2='DBUDX1WO3' where id=3; -update noar tt set v0='6SFF' where id=4; -update noar ti set v0='6SFF' where id=4; -update noar tt set b0='NEGS' where id=4; -update noar ti set b0='NEGS' where id=4; -update noar tt set v0='385AH0O2Y7FILZ' where id=4; -update noar ti set v0='385AH0O2Y7FILZ' where id=4; -update noar tt set b1='585' where id=4; -update noar ti set b1='585' where id=4; -update noar tt set v0='KI48I2P9C732XWNYCMBDD5JCN2E' where id=4; -update noar ti set v0='KI48I2P9C732XWNYCMBDD5JCN2E' where id=4; -update noar tt set b2='0Y86B1ER520HP1' where id=4; -update noar ti set b2='0Y86B1ER520HP1' where id=4; -update noar tt set v0='A95PPO36G56FH' where id=5; -update noar ti set v0='A95PPO36G56FH' where id=5; -update noar tt set b0='I55BFWUUMEPTCVFLLONIOWW1' where id=5; -update noar ti set b0='I55BFWUUMEPTCVFLLONIOWW1' where id=5; -update noar tt set v0='DRDVL57LT3XKW6VIWG1QDJF7' where id=5; -update noar ti set v0='DRDVL57LT3XKW6VIWG1QDJF7' where id=5; -update noar tt set b1='IF3UHWP5JMHIY' where id=5; -update noar ti set b1='IF3UHWP5JMHIY' where id=5; -update noar tt set v0='R4OA1UY3M' where id=5; -update noar ti set v0='R4OA1UY3M' where id=5; -update noar tt set b2='CPTRMBQY5N7YCM' where id=5; -update noar ti set b2='CPTRMBQY5N7YCM' where id=5; -update noar tt set v0='81Z' where id=6; -update noar ti set v0='81Z' where id=6; -update noar tt set b0='S5KJGLJIR9' where id=6; -update noar ti set b0='S5KJGLJIR9' where id=6; -update noar tt set v0='NHU' where id=6; -update noar ti set v0='NHU' where id=6; -update noar tt set b1='0EUZV632ERWLB1' where id=6; -update noar ti set b1='0EUZV632ERWLB1' where id=6; -update noar tt set v0='8QP4PM' where id=6; -update noar ti set v0='8QP4PM' where id=6; -update noar tt set b2='EIQGP4WULQLLUCFPCB' where id=6; -update noar ti set b2='EIQGP4WULQLLUCFPCB' where id=6; -update noar tt set v0='P9129VX9AV' where id=7; -update noar ti set v0='P9129VX9AV' where id=7; -update noar tt set b0='OGNDP01FAQVB0U5JIEVVYF4WD9V3' where id=7; -update noar ti set b0='OGNDP01FAQVB0U5JIEVVYF4WD9V3' where id=7; -update noar tt set v0='4NGNQ' where id=7; -update noar ti set v0='4NGNQ' where id=7; -update noar tt set b1='YHJUSH1TW5VTFR3ZJ72H8GIO4JNMR5Z' where id=7; -update noar ti set b1='YHJUSH1TW5VTFR3ZJ72H8GIO4JNMR5Z' where id=7; -update noar tt set v0='U' where id=7; -update noar ti set v0='U' where id=7; -update noar tt set b2='IQILSVHC4XDZ7WC3IYPQXHP2TWUQ' where id=7; -update noar ti set b2='IQILSVHC4XDZ7WC3IYPQXHP2TWUQ' where id=7; -update noar tt set v0='8LUENSHEX9S688SM78A' where id=8; -update noar ti set v0='8LUENSHEX9S688SM78A' where id=8; -update noar tt set b0='XLVG4OJ4ZFUF7ZHE3HPU1D5OER7XRHB' where id=8; -update noar ti set b0='XLVG4OJ4ZFUF7ZHE3HPU1D5OER7XRHB' where id=8; -update noar tt set v0='1LEQX' where id=8; -update noar ti set v0='1LEQX' where id=8; -update noar tt set b1='9JGWRVXLZV' where id=8; -update noar ti set b1='9JGWRVXLZV' where id=8; -update noar tt set v0='PW1HZUORRP39YX9P241NP7TJRCE0' where id=8; -update noar ti set v0='PW1HZUORRP39YX9P241NP7TJRCE0' where id=8; -update noar tt set b2='R88X9PPI' where id=8; -update noar ti set b2='R88X9PPI' where id=8; -update noar tt set v0='WKNZBTGV4UBC97X7U6PNHKBEZF' where id=9; -update noar ti set v0='WKNZBTGV4UBC97X7U6PNHKBEZF' where id=9; -update noar tt set b0='26S02F8E' where id=9; -update noar ti set b0='26S02F8E' where id=9; -update noar tt set v0='R4AV9PCU5A' where id=9; -update noar ti set v0='R4AV9PCU5A' where id=9; -update noar tt set b1='7L' where id=9; -update noar ti set b1='7L' where id=9; -update noar tt set v0='3NOUSJXWDRAAWI48CEDPULQ54Y6CZ' where id=9; -update noar ti set v0='3NOUSJXWDRAAWI48CEDPULQ54Y6CZ' where id=9; -update noar tt set b2='Y' where id=9; -update noar ti set b2='Y' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - f0 int null, - v0 varchar(256) null, - b0 blob null, - b1 longblob null, - b2 blob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='FUPYHDGNF1A06G' where id=1; -update noar ti set v0='FUPYHDGNF1A06G' where id=1; -update noar tt set b0='F43ST7XYO' where id=1; -update noar ti set b0='F43ST7XYO' where id=1; -update noar tt set v0='HLWBWJU3' where id=1; -update noar ti set v0='HLWBWJU3' where id=1; -update noar tt set b1='9DY77CE8KVVVBNTJ4T2QDWU5XZWCQX6Z' where id=1; -update noar ti set b1='9DY77CE8KVVVBNTJ4T2QDWU5XZWCQX6Z' where id=1; -update noar tt set v0='I03CD1MEE1OQUYW56HE8C1R7BIT7FQFJ' where id=1; -update noar ti set v0='I03CD1MEE1OQUYW56HE8C1R7BIT7FQFJ' where id=1; -update noar tt set b2='9V9X35I5XURE' where id=1; -update noar ti set b2='9V9X35I5XURE' where id=1; -update noar tt set v0='9B8X4BB' where id=2; -update noar ti set v0='9B8X4BB' where id=2; -update noar tt set b0='97O' where id=2; -update noar ti set b0='97O' where id=2; -update noar tt set v0='WYFH' where id=2; -update noar ti set v0='WYFH' where id=2; -update noar tt set b1='H1WR5' where id=2; -update noar ti set b1='H1WR5' where id=2; -update noar tt set v0='MDRL1M5SJ8F' where id=2; -update noar ti set v0='MDRL1M5SJ8F' where id=2; -update noar tt set b2='0HZNM33WJQN0' where id=2; -update noar ti set b2='0HZNM33WJQN0' where id=2; -update noar tt set v0='8LT3EP7YEXMAE2I0I7M14D' where id=3; -update noar ti set v0='8LT3EP7YEXMAE2I0I7M14D' where id=3; -update noar tt set b0='7C4I5AKJMUWR9286XQ70SAS2M' where id=3; -update noar ti set b0='7C4I5AKJMUWR9286XQ70SAS2M' where id=3; -update noar tt set v0='MVEG6KJCG2RIC34ODHCMIGY' where id=3; -update noar ti set v0='MVEG6KJCG2RIC34ODHCMIGY' where id=3; -update noar tt set b1='PGOKP785' where id=3; -update noar ti set b1='PGOKP785' where id=3; -update noar tt set v0='CCTK7UWCEFUVB45O9NYOI' where id=3; -update noar ti set v0='CCTK7UWCEFUVB45O9NYOI' where id=3; -update noar tt set b2='T13VC' where id=3; -update noar ti set b2='T13VC' where id=3; -update noar tt set v0='VEI303DC6XMZ0HBYE4SKH' where id=4; -update noar ti set v0='VEI303DC6XMZ0HBYE4SKH' where id=4; -update noar tt set b0='914GUTMT1DOB1OLPE' where id=4; -update noar ti set b0='914GUTMT1DOB1OLPE' where id=4; -update noar tt set v0='7IUU' where id=4; -update noar ti set v0='7IUU' where id=4; -update noar tt set b1='2VN2UWTC4TRE' where id=4; -update noar ti set b1='2VN2UWTC4TRE' where id=4; -update noar tt set v0='O66JHIVO1AGBFCQ4EZQBG0B' where id=4; -update noar ti set v0='O66JHIVO1AGBFCQ4EZQBG0B' where id=4; -update noar tt set b2='C5P8' where id=4; -update noar ti set b2='C5P8' where id=4; -update noar tt set v0='QR05WA5PD' where id=5; -update noar ti set v0='QR05WA5PD' where id=5; -update noar tt set b0='84JTVN8ATF' where id=5; -update noar ti set b0='84JTVN8ATF' where id=5; -update noar tt set v0='JT94DMCHFIMFVLI2RFC5FPVCBXOCP' where id=5; -update noar ti set v0='JT94DMCHFIMFVLI2RFC5FPVCBXOCP' where id=5; -update noar tt set b1='DVYT7VF0VDS2G9' where id=5; -update noar ti set b1='DVYT7VF0VDS2G9' where id=5; -update noar tt set v0='7BX67U528R6ROEAHW0II9ZR9' where id=5; -update noar ti set v0='7BX67U528R6ROEAHW0II9ZR9' where id=5; -update noar tt set b2='G2DCYIM9E5A0XIER438YC' where id=5; -update noar ti set b2='G2DCYIM9E5A0XIER438YC' where id=5; -update noar tt set v0='3L64' where id=6; -update noar ti set v0='3L64' where id=6; -update noar tt set b0='DKDMRE' where id=6; -update noar ti set b0='DKDMRE' where id=6; -update noar tt set v0='LSV1G944Q' where id=6; -update noar ti set v0='LSV1G944Q' where id=6; -update noar tt set b1='OXY68XHZL5GFO3XQ1G182TX' where id=6; -update noar ti set b1='OXY68XHZL5GFO3XQ1G182TX' where id=6; -update noar tt set v0='XNEOTPHKBPLPZ7UFYE9M9E' where id=6; -update noar ti set v0='XNEOTPHKBPLPZ7UFYE9M9E' where id=6; -update noar tt set b2='V9M2EEEO1HG7M1KHP8EBLKHJT8' where id=6; -update noar ti set b2='V9M2EEEO1HG7M1KHP8EBLKHJT8' where id=6; -update noar tt set v0='11SAC4M26X2X9RZJ7K23OK' where id=7; -update noar ti set v0='11SAC4M26X2X9RZJ7K23OK' where id=7; -update noar tt set b0='IK5XR3J130Y3LKRKTG8L1X187NQJ' where id=7; -update noar ti set b0='IK5XR3J130Y3LKRKTG8L1X187NQJ' where id=7; -update noar tt set v0='3D9QRSJ' where id=7; -update noar ti set v0='3D9QRSJ' where id=7; -update noar tt set b1='NTSTZI07ZQI4BDILUXDIKWC7PCLTA' where id=7; -update noar ti set b1='NTSTZI07ZQI4BDILUXDIKWC7PCLTA' where id=7; -update noar tt set v0='H6D1XBTNP8SZDINQXUO4I' where id=7; -update noar ti set v0='H6D1XBTNP8SZDINQXUO4I' where id=7; -update noar tt set b2='8FT' where id=7; -update noar ti set b2='8FT' where id=7; -update noar tt set v0='CLQN8TD9WRT8GOVGA9OMWAN9LTM100' where id=8; -update noar ti set v0='CLQN8TD9WRT8GOVGA9OMWAN9LTM100' where id=8; -update noar tt set b0='4L7LCGMES48M' where id=8; -update noar ti set b0='4L7LCGMES48M' where id=8; -update noar tt set v0='VUJ87D0CMPOFNG' where id=8; -update noar ti set v0='VUJ87D0CMPOFNG' where id=8; -update noar tt set b1='SYB3DUANMPK4IXEJMOZO7MOT' where id=8; -update noar ti set b1='SYB3DUANMPK4IXEJMOZO7MOT' where id=8; -update noar tt set v0='LJ29Y07Q6DJAE30N' where id=8; -update noar ti set v0='LJ29Y07Q6DJAE30N' where id=8; -update noar tt set b2='5AWE6LXUB6FIR' where id=8; -update noar ti set b2='5AWE6LXUB6FIR' where id=8; -update noar tt set v0='473NI0VBUSDFZ23K1AJI' where id=9; -update noar ti set v0='473NI0VBUSDFZ23K1AJI' where id=9; -update noar tt set b0='P51Z' where id=9; -update noar ti set b0='P51Z' where id=9; -update noar tt set v0='FRAA6BL9WJNW41FVYV9QOD' where id=9; -update noar ti set v0='FRAA6BL9WJNW41FVYV9QOD' where id=9; -update noar tt set b1='6' where id=9; -update noar ti set b1='6' where id=9; -update noar tt set v0='1PBUUP4FQ7JM0X7UI74' where id=9; -update noar ti set v0='1PBUUP4FQ7JM0X7UI74' where id=9; -update noar tt set b2='QR0UZI72K5L29M5OLZ4SVRK' where id=9; -update noar ti set b2='QR0UZI72K5L29M5OLZ4SVRK' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - f0 int not null, - v0 varchar(32) not null, - b0 blob not null, - b1 longblob not null, - b2 blob not null -) engine=tokudb; -insert into tt values (1,0,'','','',''); -insert into tt values (2,0,'','','',''); -insert into tt values (3,0,'','','',''); -insert into tt values (4,0,'','','',''); -insert into tt values (5,0,'','','',''); -insert into tt values (6,0,'','','',''); -insert into tt values (7,0,'','','',''); -insert into tt values (8,0,'','','',''); -insert into tt values (9,0,'','','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='AWFE8OQ1E1FO616TR7OA8ZTDT' where id=1; -update noar ti set v0='AWFE8OQ1E1FO616TR7OA8ZTDT' where id=1; -update noar tt set b0='7M102Z0M5R8EXZA4MI' where id=1; -update noar ti set b0='7M102Z0M5R8EXZA4MI' where id=1; -update noar tt set v0='BZG96LW0GOYAO' where id=1; -update noar ti set v0='BZG96LW0GOYAO' where id=1; -update noar tt set b1='T7Z89JTW0OEH13HF' where id=1; -update noar ti set b1='T7Z89JTW0OEH13HF' where id=1; -update noar tt set v0='91320WY5GSJA6N65DXCONIX163S7' where id=1; -update noar ti set v0='91320WY5GSJA6N65DXCONIX163S7' where id=1; -update noar tt set b2='IF0X0DEUDQOP2BIFVD' where id=1; -update noar ti set b2='IF0X0DEUDQOP2BIFVD' where id=1; -update noar tt set v0='Q0TQ9DG5BEENYOCHS03TUWRJG3A' where id=2; -update noar ti set v0='Q0TQ9DG5BEENYOCHS03TUWRJG3A' where id=2; -update noar tt set b0='YE4X5D3SMYWLRW2ZP5' where id=2; -update noar ti set b0='YE4X5D3SMYWLRW2ZP5' where id=2; -update noar tt set v0='SSLVY5' where id=2; -update noar ti set v0='SSLVY5' where id=2; -update noar tt set b1='7WZ18ILWYI5GC61L7VET3' where id=2; -update noar ti set b1='7WZ18ILWYI5GC61L7VET3' where id=2; -update noar tt set v0='J' where id=2; -update noar ti set v0='J' where id=2; -update noar tt set b2='05X1RO4GKWOYUP3K0SKDLA86Z1XX6BT' where id=2; -update noar ti set b2='05X1RO4GKWOYUP3K0SKDLA86Z1XX6BT' where id=2; -update noar tt set v0='M5MQVR' where id=3; -update noar ti set v0='M5MQVR' where id=3; -update noar tt set b0='TIR2UKCSOFMYUGO5472TD5RT' where id=3; -update noar ti set b0='TIR2UKCSOFMYUGO5472TD5RT' where id=3; -update noar tt set v0='FT2LNNOJWJFVG14IW' where id=3; -update noar ti set v0='FT2LNNOJWJFVG14IW' where id=3; -update noar tt set b1='9TOOWAH' where id=3; -update noar ti set b1='9TOOWAH' where id=3; -update noar tt set v0='XJ9K78' where id=3; -update noar ti set v0='XJ9K78' where id=3; -update noar tt set b2='ESBLTK' where id=3; -update noar ti set b2='ESBLTK' where id=3; -update noar tt set v0='7O29PDQQNPO0NFH4DPQXZVVE9F' where id=4; -update noar ti set v0='7O29PDQQNPO0NFH4DPQXZVVE9F' where id=4; -update noar tt set b0='0HBYFECN9ASG0NR4TQDID0ZCM9L' where id=4; -update noar ti set b0='0HBYFECN9ASG0NR4TQDID0ZCM9L' where id=4; -update noar tt set v0='VSPY1QPYTK3YQ9K6JB5H4DM73R' where id=4; -update noar ti set v0='VSPY1QPYTK3YQ9K6JB5H4DM73R' where id=4; -update noar tt set b1='WK7AB8INJZCO3DL' where id=4; -update noar ti set b1='WK7AB8INJZCO3DL' where id=4; -update noar tt set v0='HM8L2S28FSA2HDQS7MINDGT' where id=4; -update noar ti set v0='HM8L2S28FSA2HDQS7MINDGT' where id=4; -update noar tt set b2='ACW' where id=4; -update noar ti set b2='ACW' where id=4; -update noar tt set v0='OAOKG5L8IRQ8OZ18ZI2BRF' where id=5; -update noar ti set v0='OAOKG5L8IRQ8OZ18ZI2BRF' where id=5; -update noar tt set b0='K1' where id=5; -update noar ti set b0='K1' where id=5; -update noar tt set v0='L0Q6TG79RL' where id=5; -update noar ti set v0='L0Q6TG79RL' where id=5; -update noar tt set b1='WDCNMFM31AKKEDRPI3ZIQ16M' where id=5; -update noar ti set b1='WDCNMFM31AKKEDRPI3ZIQ16M' where id=5; -update noar tt set v0='GRB3S6LSLPCLQDNAMLM0DRK9IH' where id=5; -update noar ti set v0='GRB3S6LSLPCLQDNAMLM0DRK9IH' where id=5; -update noar tt set b2='7NNEEXBI0ERDRW23FWRNP2KQRBLEQ' where id=5; -update noar ti set b2='7NNEEXBI0ERDRW23FWRNP2KQRBLEQ' where id=5; -update noar tt set v0='PHZD7ULA1W51VT6PMI739XZS' where id=6; -update noar ti set v0='PHZD7ULA1W51VT6PMI739XZS' where id=6; -update noar tt set b0='3945SX04W11J04Y' where id=6; -update noar ti set b0='3945SX04W11J04Y' where id=6; -update noar tt set v0='WUZ70OI7ZTV0KWOEMI' where id=6; -update noar ti set v0='WUZ70OI7ZTV0KWOEMI' where id=6; -update noar tt set b1='T' where id=6; -update noar ti set b1='T' where id=6; -update noar tt set v0='EZMOHX14Y0FR' where id=6; -update noar ti set v0='EZMOHX14Y0FR' where id=6; -update noar tt set b2='C74Q08PFU7SBTAEG52OAAHCO' where id=6; -update noar ti set b2='C74Q08PFU7SBTAEG52OAAHCO' where id=6; -update noar tt set v0='P' where id=7; -update noar ti set v0='P' where id=7; -update noar tt set b0='R6GJD95LYE46' where id=7; -update noar ti set b0='R6GJD95LYE46' where id=7; -update noar tt set v0='WG1CHOSEPFH36RKB6RY51WS' where id=7; -update noar ti set v0='WG1CHOSEPFH36RKB6RY51WS' where id=7; -update noar tt set b1='7XTOK' where id=7; -update noar ti set b1='7XTOK' where id=7; -update noar tt set v0='06YRMX0QP6SG6QUJJ19NKZXHR6' where id=7; -update noar ti set v0='06YRMX0QP6SG6QUJJ19NKZXHR6' where id=7; -update noar tt set b2='Q2HM9KS8CBTGYVCL3C31X' where id=7; -update noar ti set b2='Q2HM9KS8CBTGYVCL3C31X' where id=7; -update noar tt set v0='327KGVFXPA0316FT1ZA8XIAIX0H' where id=8; -update noar ti set v0='327KGVFXPA0316FT1ZA8XIAIX0H' where id=8; -update noar tt set b0='X3X361PXNR44Q6G5WIN5IRAVFIS5I' where id=8; -update noar ti set b0='X3X361PXNR44Q6G5WIN5IRAVFIS5I' where id=8; -update noar tt set v0='98UZSF9BUM1ROH0OV2' where id=8; -update noar ti set v0='98UZSF9BUM1ROH0OV2' where id=8; -update noar tt set b1='ZNCHZH8NQL' where id=8; -update noar ti set b1='ZNCHZH8NQL' where id=8; -update noar tt set v0='48FBHIG0N5XHHEA' where id=8; -update noar ti set v0='48FBHIG0N5XHHEA' where id=8; -update noar tt set b2='HUQ0S0HOHKD61ZZEOVR1LNV14H' where id=8; -update noar ti set b2='HUQ0S0HOHKD61ZZEOVR1LNV14H' where id=8; -update noar tt set v0='WIHJDOI6ILQLS833AI2R' where id=9; -update noar ti set v0='WIHJDOI6ILQLS833AI2R' where id=9; -update noar tt set b0='0UNZKDPCS' where id=9; -update noar ti set b0='0UNZKDPCS' where id=9; -update noar tt set v0='FZTQKCGIQS7HZGS2WF' where id=9; -update noar ti set v0='FZTQKCGIQS7HZGS2WF' where id=9; -update noar tt set b1='4IGWIHGSWCD96XWQVST4VQF5' where id=9; -update noar ti set b1='4IGWIHGSWCD96XWQVST4VQF5' where id=9; -update noar tt set v0='M9J50DDC5GT8KBKXWT97728CEEJ' where id=9; -update noar ti set v0='M9J50DDC5GT8KBKXWT97728CEEJ' where id=9; -update noar tt set b2='EKL1PKSRVRH40RFY' where id=9; -update noar ti set b2='EKL1PKSRVRH40RFY' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - f0 int not null, - v0 varchar(256) not null, - b0 blob not null, - b1 longblob not null, - b2 blob not null -) engine=tokudb; -insert into tt values (1,0,'','','',''); -insert into tt values (2,0,'','','',''); -insert into tt values (3,0,'','','',''); -insert into tt values (4,0,'','','',''); -insert into tt values (5,0,'','','',''); -insert into tt values (6,0,'','','',''); -insert into tt values (7,0,'','','',''); -insert into tt values (8,0,'','','',''); -insert into tt values (9,0,'','','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='ON34SW6GOI6YEEYHIT4T' where id=1; -update noar ti set v0='ON34SW6GOI6YEEYHIT4T' where id=1; -update noar tt set b0='3EEMUY3P90' where id=1; -update noar ti set b0='3EEMUY3P90' where id=1; -update noar tt set v0='TS' where id=1; -update noar ti set v0='TS' where id=1; -update noar tt set b1='RLHOOZDTBQ' where id=1; -update noar ti set b1='RLHOOZDTBQ' where id=1; -update noar tt set v0='NRWUFVX65P9X8MOWQ5GPFV' where id=1; -update noar ti set v0='NRWUFVX65P9X8MOWQ5GPFV' where id=1; -update noar tt set b2='Q4GQLMZ5BJIMDC' where id=1; -update noar ti set b2='Q4GQLMZ5BJIMDC' where id=1; -update noar tt set v0='K5NIM86I5JB1T2X8L6G8NS6OG6W' where id=2; -update noar ti set v0='K5NIM86I5JB1T2X8L6G8NS6OG6W' where id=2; -update noar tt set b0='FT36QBK4MBMEEM0SPLDRNJ' where id=2; -update noar ti set b0='FT36QBK4MBMEEM0SPLDRNJ' where id=2; -update noar tt set v0='7ZV6MWYKYGTW5BPOFL' where id=2; -update noar ti set v0='7ZV6MWYKYGTW5BPOFL' where id=2; -update noar tt set b1='X0RXBN4YT8MR8GKIGX2ZCCDG5DH' where id=2; -update noar ti set b1='X0RXBN4YT8MR8GKIGX2ZCCDG5DH' where id=2; -update noar tt set v0='G9AKVXO3' where id=2; -update noar ti set v0='G9AKVXO3' where id=2; -update noar tt set b2='OOBQ3OEFKS7E1H0SQYTJVPPJMEN4' where id=2; -update noar ti set b2='OOBQ3OEFKS7E1H0SQYTJVPPJMEN4' where id=2; -update noar tt set v0='4' where id=3; -update noar ti set v0='4' where id=3; -update noar tt set b0='X7IAILF08583IT1IY17V5ZFGIGHDWLX3' where id=3; -update noar ti set b0='X7IAILF08583IT1IY17V5ZFGIGHDWLX3' where id=3; -update noar tt set v0='NWXHVFO9Z' where id=3; -update noar ti set v0='NWXHVFO9Z' where id=3; -update noar tt set b1='XNIIUSPF3GWN2K1AFIEMS41' where id=3; -update noar ti set b1='XNIIUSPF3GWN2K1AFIEMS41' where id=3; -update noar tt set v0='LIGMTF924REBH0J' where id=3; -update noar ti set v0='LIGMTF924REBH0J' where id=3; -update noar tt set b2='RS10M9NA5F1J0GV' where id=3; -update noar ti set b2='RS10M9NA5F1J0GV' where id=3; -update noar tt set v0='LQ0MQIWDN98C408QFP' where id=4; -update noar ti set v0='LQ0MQIWDN98C408QFP' where id=4; -update noar tt set b0='RR9OW' where id=4; -update noar ti set b0='RR9OW' where id=4; -update noar tt set v0='BOYZEYFH2XSTMHCU71XKPZ6FD90QTV9X' where id=4; -update noar ti set v0='BOYZEYFH2XSTMHCU71XKPZ6FD90QTV9X' where id=4; -update noar tt set b1='W2QU4XKNZ511' where id=4; -update noar ti set b1='W2QU4XKNZ511' where id=4; -update noar tt set v0='1RWRMZD0KA5Y0BAU2WYJTP2ZWR' where id=4; -update noar ti set v0='1RWRMZD0KA5Y0BAU2WYJTP2ZWR' where id=4; -update noar tt set b2='7' where id=4; -update noar ti set b2='7' where id=4; -update noar tt set v0='EE' where id=5; -update noar ti set v0='EE' where id=5; -update noar tt set b0='5AL7CE92GT' where id=5; -update noar ti set b0='5AL7CE92GT' where id=5; -update noar tt set v0='BJIS15P17SGQP38FL1QPGZQODUGW4XZS' where id=5; -update noar ti set v0='BJIS15P17SGQP38FL1QPGZQODUGW4XZS' where id=5; -update noar tt set b1='Z1O6X4NWGQDI9I43JMSE4GN' where id=5; -update noar ti set b1='Z1O6X4NWGQDI9I43JMSE4GN' where id=5; -update noar tt set v0='FJTJIDC2ZPM9LXFGGQWRA' where id=5; -update noar ti set v0='FJTJIDC2ZPM9LXFGGQWRA' where id=5; -update noar tt set b2='T77QTT7V5LRZUAVHBVPD0ACV4F' where id=5; -update noar ti set b2='T77QTT7V5LRZUAVHBVPD0ACV4F' where id=5; -update noar tt set v0='GNT4L4J0V3' where id=6; -update noar ti set v0='GNT4L4J0V3' where id=6; -update noar tt set b0='FSGQ40SAQ2PW8G6BQJ3HOM302' where id=6; -update noar ti set b0='FSGQ40SAQ2PW8G6BQJ3HOM302' where id=6; -update noar tt set v0='YQ5' where id=6; -update noar ti set v0='YQ5' where id=6; -update noar tt set b1='XR80YMUF92' where id=6; -update noar ti set b1='XR80YMUF92' where id=6; -update noar tt set v0='PF309N31UIMVFI8EOHJOWQ6LO6NBMB5' where id=6; -update noar ti set v0='PF309N31UIMVFI8EOHJOWQ6LO6NBMB5' where id=6; -update noar tt set b2='VJC6LHQM9UZ3' where id=6; -update noar ti set b2='VJC6LHQM9UZ3' where id=6; -update noar tt set v0='YGQFQJG3Z7ZIBCL5EXT8' where id=7; -update noar ti set v0='YGQFQJG3Z7ZIBCL5EXT8' where id=7; -update noar tt set b0='FTGCCRU' where id=7; -update noar ti set b0='FTGCCRU' where id=7; -update noar tt set v0='WZAKE46509' where id=7; -update noar ti set v0='WZAKE46509' where id=7; -update noar tt set b1='CBUPWWIAHJVE67SCZ9G4TN7P' where id=7; -update noar ti set b1='CBUPWWIAHJVE67SCZ9G4TN7P' where id=7; -update noar tt set v0='RTJ03' where id=7; -update noar ti set v0='RTJ03' where id=7; -update noar tt set b2='VIB' where id=7; -update noar ti set b2='VIB' where id=7; -update noar tt set v0='NUCUQDLQF2TOBMSPFZ' where id=8; -update noar ti set v0='NUCUQDLQF2TOBMSPFZ' where id=8; -update noar tt set b0='5GHZ2PI8TS4L8WY4W' where id=8; -update noar ti set b0='5GHZ2PI8TS4L8WY4W' where id=8; -update noar tt set v0='JU40VR5TNNZKJCHMJ8' where id=8; -update noar ti set v0='JU40VR5TNNZKJCHMJ8' where id=8; -update noar tt set b1='QNG6B2' where id=8; -update noar ti set b1='QNG6B2' where id=8; -update noar tt set v0='CN4JHQQT26FW7AMLMDOCUJ83YB' where id=8; -update noar ti set v0='CN4JHQQT26FW7AMLMDOCUJ83YB' where id=8; -update noar tt set b2='IO6QT9W' where id=8; -update noar ti set b2='IO6QT9W' where id=8; -update noar tt set v0='GLT2IXMGUJKZF0ZO6Y0LIMPUR2RAR' where id=9; -update noar ti set v0='GLT2IXMGUJKZF0ZO6Y0LIMPUR2RAR' where id=9; -update noar tt set b0='GQOZIU419CI8AX' where id=9; -update noar ti set b0='GQOZIU419CI8AX' where id=9; -update noar tt set v0='G1847DTXD5K4TNE4DZKR7LW' where id=9; -update noar ti set v0='G1847DTXD5K4TNE4DZKR7LW' where id=9; -update noar tt set b1='N' where id=9; -update noar ti set b1='N' where id=9; -update noar tt set v0='CMHG24TNY0HE9JCV1K8QC2B3G' where id=9; -update noar ti set v0='CMHG24TNY0HE9JCV1K8QC2B3G' where id=9; -update noar tt set b2='YG759HGELB06KCMH0AGY' where id=9; -update noar ti set b2='YG759HGELB06KCMH0AGY' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - f0 int null, - v0 varchar(32) null, - b0 blob null, - b1 longblob null, - b2 mediumblob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='8Y3' where id=1; -update noar ti set v0='8Y3' where id=1; -update noar tt set b0='C7M20TP5NKK' where id=1; -update noar ti set b0='C7M20TP5NKK' where id=1; -update noar tt set v0='2ISG42PKQUYJ3' where id=1; -update noar ti set v0='2ISG42PKQUYJ3' where id=1; -update noar tt set b1='DJFRKU8X' where id=1; -update noar ti set b1='DJFRKU8X' where id=1; -update noar tt set v0='PEZLQW4KNI8KS99CT2C6AKZ1OK1' where id=1; -update noar ti set v0='PEZLQW4KNI8KS99CT2C6AKZ1OK1' where id=1; -update noar tt set b2='0FCRQVLB5DFDS3K6N26BCA1M1VMB403' where id=1; -update noar ti set b2='0FCRQVLB5DFDS3K6N26BCA1M1VMB403' where id=1; -update noar tt set v0='2U5V9ZSPD2MY3O25XXL2N6ZWB4Q6DWGE' where id=2; -update noar ti set v0='2U5V9ZSPD2MY3O25XXL2N6ZWB4Q6DWGE' where id=2; -update noar tt set b0='60O315' where id=2; -update noar ti set b0='60O315' where id=2; -update noar tt set v0='PFV4BEXLLRRNEEWTITGFSTS6' where id=2; -update noar ti set v0='PFV4BEXLLRRNEEWTITGFSTS6' where id=2; -update noar tt set b1='GFO8M01KOUXFD5A02OU3C4ZTGQZ8O' where id=2; -update noar ti set b1='GFO8M01KOUXFD5A02OU3C4ZTGQZ8O' where id=2; -update noar tt set v0='IZR1' where id=2; -update noar ti set v0='IZR1' where id=2; -update noar tt set b2='F6SCCPN2NFEKZP79N' where id=2; -update noar ti set b2='F6SCCPN2NFEKZP79N' where id=2; -update noar tt set v0='1IYS8D2OL30ZWU' where id=3; -update noar ti set v0='1IYS8D2OL30ZWU' where id=3; -update noar tt set b0='DMPWIBQCEAZ9RTHU' where id=3; -update noar ti set b0='DMPWIBQCEAZ9RTHU' where id=3; -update noar tt set v0='ONDJ7B94EN77IXSXEF23' where id=3; -update noar ti set v0='ONDJ7B94EN77IXSXEF23' where id=3; -update noar tt set b1='UR0WSHTBS4QZ' where id=3; -update noar ti set b1='UR0WSHTBS4QZ' where id=3; -update noar tt set v0='7TXALEXNOTPQFQG1YOTBCC' where id=3; -update noar ti set v0='7TXALEXNOTPQFQG1YOTBCC' where id=3; -update noar tt set b2='Y51ZCWRUE6UNVFLQE8QFGJBUTW7KEEW1' where id=3; -update noar ti set b2='Y51ZCWRUE6UNVFLQE8QFGJBUTW7KEEW1' where id=3; -update noar tt set v0='GQ4J9YUIOHP1XMALJDZG2' where id=4; -update noar ti set v0='GQ4J9YUIOHP1XMALJDZG2' where id=4; -update noar tt set b0='5D77OFM2RCP8K34C4877' where id=4; -update noar ti set b0='5D77OFM2RCP8K34C4877' where id=4; -update noar tt set v0='DPWBEJKK1' where id=4; -update noar ti set v0='DPWBEJKK1' where id=4; -update noar tt set b1='4PY93OUIDUL' where id=4; -update noar ti set b1='4PY93OUIDUL' where id=4; -update noar tt set v0='9B3QUDM74XNPELR4FOJ7YNUA8OAQQ' where id=4; -update noar ti set v0='9B3QUDM74XNPELR4FOJ7YNUA8OAQQ' where id=4; -update noar tt set b2='U2P' where id=4; -update noar ti set b2='U2P' where id=4; -update noar tt set v0='MVLAAO6ZZW0EP54ZHQW2QASI9HHFSSZK' where id=5; -update noar ti set v0='MVLAAO6ZZW0EP54ZHQW2QASI9HHFSSZK' where id=5; -update noar tt set b0='5DEZK0A28PXP9R45E4H' where id=5; -update noar ti set b0='5DEZK0A28PXP9R45E4H' where id=5; -update noar tt set v0='YL2LGG579J7' where id=5; -update noar ti set v0='YL2LGG579J7' where id=5; -update noar tt set b1='0N3U8H04ENSBB0J67AJU517IT81VU7W' where id=5; -update noar ti set b1='0N3U8H04ENSBB0J67AJU517IT81VU7W' where id=5; -update noar tt set v0='GGGSMOO69KWTJGNBRNNWLOG8PA' where id=5; -update noar ti set v0='GGGSMOO69KWTJGNBRNNWLOG8PA' where id=5; -update noar tt set b2='3BUA5Q' where id=5; -update noar ti set b2='3BUA5Q' where id=5; -update noar tt set v0='2AIXGG2USKTI8A' where id=6; -update noar ti set v0='2AIXGG2USKTI8A' where id=6; -update noar tt set b0='511JOA3UVHFJXLI2GYXZOXXL19' where id=6; -update noar ti set b0='511JOA3UVHFJXLI2GYXZOXXL19' where id=6; -update noar tt set v0='YJ8YG420YXZAPER' where id=6; -update noar ti set v0='YJ8YG420YXZAPER' where id=6; -update noar tt set b1='TV52WC6AA7HTQ7RWVVZBUMS0N0H4IU' where id=6; -update noar ti set b1='TV52WC6AA7HTQ7RWVVZBUMS0N0H4IU' where id=6; -update noar tt set v0='9NTD8DMB8PTECD5MXFOEUJ5L87' where id=6; -update noar ti set v0='9NTD8DMB8PTECD5MXFOEUJ5L87' where id=6; -update noar tt set b2='HQXNBEL9KYL2DPIHAVNLEKBAM1' where id=6; -update noar ti set b2='HQXNBEL9KYL2DPIHAVNLEKBAM1' where id=6; -update noar tt set v0='WY3LFGM0OTK3RXC8KO7TX3' where id=7; -update noar ti set v0='WY3LFGM0OTK3RXC8KO7TX3' where id=7; -update noar tt set b0='UYICPWZAKPO1DRVSEJRMFG88' where id=7; -update noar ti set b0='UYICPWZAKPO1DRVSEJRMFG88' where id=7; -update noar tt set v0='H4XGE' where id=7; -update noar ti set v0='H4XGE' where id=7; -update noar tt set b1='HKJEJF6' where id=7; -update noar ti set b1='HKJEJF6' where id=7; -update noar tt set v0='Q713SG03E' where id=7; -update noar ti set v0='Q713SG03E' where id=7; -update noar tt set b2='S4BAN' where id=7; -update noar ti set b2='S4BAN' where id=7; -update noar tt set v0='GC' where id=8; -update noar ti set v0='GC' where id=8; -update noar tt set b0='CR5YQDGXFHQ56V77W4LU1FZSR4GBRC2' where id=8; -update noar ti set b0='CR5YQDGXFHQ56V77W4LU1FZSR4GBRC2' where id=8; -update noar tt set v0='QVRCYS8SH1GYKWKLPQ6' where id=8; -update noar ti set v0='QVRCYS8SH1GYKWKLPQ6' where id=8; -update noar tt set b1='6CNGJHSOMOQSCZAN4' where id=8; -update noar ti set b1='6CNGJHSOMOQSCZAN4' where id=8; -update noar tt set v0='N' where id=8; -update noar ti set v0='N' where id=8; -update noar tt set b2='LF8JOERZ8TANILPUAN3I2O56F7YBBG4G' where id=8; -update noar ti set b2='LF8JOERZ8TANILPUAN3I2O56F7YBBG4G' where id=8; -update noar tt set v0='RZ5TQBROVDMBNWF2F6BE8MNG946' where id=9; -update noar ti set v0='RZ5TQBROVDMBNWF2F6BE8MNG946' where id=9; -update noar tt set b0='OOHO1L' where id=9; -update noar ti set b0='OOHO1L' where id=9; -update noar tt set v0='18VCHBJ7W4KJY6CQDY' where id=9; -update noar ti set v0='18VCHBJ7W4KJY6CQDY' where id=9; -update noar tt set b1='X5BCUCM9VEDYYIAY5FZTNJ5W' where id=9; -update noar ti set b1='X5BCUCM9VEDYYIAY5FZTNJ5W' where id=9; -update noar tt set v0='Y3887D8R2CGZYP7AO4G8TTO7' where id=9; -update noar ti set v0='Y3887D8R2CGZYP7AO4G8TTO7' where id=9; -update noar tt set b2='MEOZ2COU46VAAX4' where id=9; -update noar ti set b2='MEOZ2COU46VAAX4' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - f0 int null, - v0 varchar(256) null, - b0 blob null, - b1 longblob null, - b2 mediumblob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='RP7CWTP0UNYRTSVWJ' where id=1; -update noar ti set v0='RP7CWTP0UNYRTSVWJ' where id=1; -update noar tt set b0='H2' where id=1; -update noar ti set b0='H2' where id=1; -update noar tt set v0='0BYL4R8G9HND4VMWMNEOQYO9' where id=1; -update noar ti set v0='0BYL4R8G9HND4VMWMNEOQYO9' where id=1; -update noar tt set b1='74PLQCVRJCRFHKJ07980K4' where id=1; -update noar ti set b1='74PLQCVRJCRFHKJ07980K4' where id=1; -update noar tt set v0='MK7QYEG8UCHEHAMZ2JQKP' where id=1; -update noar ti set v0='MK7QYEG8UCHEHAMZ2JQKP' where id=1; -update noar tt set b2='VNS6MMZLULKB5SU9' where id=1; -update noar ti set b2='VNS6MMZLULKB5SU9' where id=1; -update noar tt set v0='96EA6JRIE0MHA74K2KZXMWBSBK' where id=2; -update noar ti set v0='96EA6JRIE0MHA74K2KZXMWBSBK' where id=2; -update noar tt set b0='3M1LFR91' where id=2; -update noar ti set b0='3M1LFR91' where id=2; -update noar tt set v0='06YHVUESSO3LYS396W6BT1N5' where id=2; -update noar ti set v0='06YHVUESSO3LYS396W6BT1N5' where id=2; -update noar tt set b1='I90L6' where id=2; -update noar ti set b1='I90L6' where id=2; -update noar tt set v0='QJLNAMAIIDUG' where id=2; -update noar ti set v0='QJLNAMAIIDUG' where id=2; -update noar tt set b2='A171AT8ZDPY2OBR4S9' where id=2; -update noar ti set b2='A171AT8ZDPY2OBR4S9' where id=2; -update noar tt set v0='IKZBS4K2' where id=3; -update noar ti set v0='IKZBS4K2' where id=3; -update noar tt set b0='20LSQ9JLF7U0XTML' where id=3; -update noar ti set b0='20LSQ9JLF7U0XTML' where id=3; -update noar tt set v0='EXFXU7IHYHLM1Q7DSIXH5RKJJICBH6' where id=3; -update noar ti set v0='EXFXU7IHYHLM1Q7DSIXH5RKJJICBH6' where id=3; -update noar tt set b1='TJ8ZKT1NVUS918LZTFZ' where id=3; -update noar ti set b1='TJ8ZKT1NVUS918LZTFZ' where id=3; -update noar tt set v0='E30DI811ATKH5LX37NGY9COGEK' where id=3; -update noar ti set v0='E30DI811ATKH5LX37NGY9COGEK' where id=3; -update noar tt set b2='GEN6IEOKW3R' where id=3; -update noar ti set b2='GEN6IEOKW3R' where id=3; -update noar tt set v0='VLBNSU6647' where id=4; -update noar ti set v0='VLBNSU6647' where id=4; -update noar tt set b0='F7BZVRUAUUJGS2ZIVILP7U' where id=4; -update noar ti set b0='F7BZVRUAUUJGS2ZIVILP7U' where id=4; -update noar tt set v0='6VGCON4QPOA483EDJVG1CS6L03L' where id=4; -update noar ti set v0='6VGCON4QPOA483EDJVG1CS6L03L' where id=4; -update noar tt set b1='6VOAVF' where id=4; -update noar ti set b1='6VOAVF' where id=4; -update noar tt set v0='DHGRTS4E1MLFO' where id=4; -update noar ti set v0='DHGRTS4E1MLFO' where id=4; -update noar tt set b2='VSNUPD' where id=4; -update noar ti set b2='VSNUPD' where id=4; -update noar tt set v0='X6RI4L2Z05NM5K0Y84K6W8R2' where id=5; -update noar ti set v0='X6RI4L2Z05NM5K0Y84K6W8R2' where id=5; -update noar tt set b0='Q3CPKIN7AWZC' where id=5; -update noar ti set b0='Q3CPKIN7AWZC' where id=5; -update noar tt set v0='MP8YMBMBNS' where id=5; -update noar ti set v0='MP8YMBMBNS' where id=5; -update noar tt set b1='A4OPRVH33' where id=5; -update noar ti set b1='A4OPRVH33' where id=5; -update noar tt set v0='ITJG7Y1DTTGHZ9HAXAOOFJVQ01HF4G' where id=5; -update noar ti set v0='ITJG7Y1DTTGHZ9HAXAOOFJVQ01HF4G' where id=5; -update noar tt set b2='5RGR4DZQ43CDXC' where id=5; -update noar ti set b2='5RGR4DZQ43CDXC' where id=5; -update noar tt set v0='D87Y5WN' where id=6; -update noar ti set v0='D87Y5WN' where id=6; -update noar tt set b0='G' where id=6; -update noar ti set b0='G' where id=6; -update noar tt set v0='YQ752CPTFT1WSLNV6' where id=6; -update noar ti set v0='YQ752CPTFT1WSLNV6' where id=6; -update noar tt set b1='RA3HNHL8I52HH9JK' where id=6; -update noar ti set b1='RA3HNHL8I52HH9JK' where id=6; -update noar tt set v0='NX90WCPXSPNQRAB0ATBXRA7UYV2DSE' where id=6; -update noar ti set v0='NX90WCPXSPNQRAB0ATBXRA7UYV2DSE' where id=6; -update noar tt set b2='BBUGZA' where id=6; -update noar ti set b2='BBUGZA' where id=6; -update noar tt set v0='EJBS46I' where id=7; -update noar ti set v0='EJBS46I' where id=7; -update noar tt set b0='ZKBUAPNC4GXPS2M23143M7SQID' where id=7; -update noar ti set b0='ZKBUAPNC4GXPS2M23143M7SQID' where id=7; -update noar tt set v0='53U' where id=7; -update noar ti set v0='53U' where id=7; -update noar tt set b1='30GQ4PWIB6DFFUDL4GSPNEJCLIELT' where id=7; -update noar ti set b1='30GQ4PWIB6DFFUDL4GSPNEJCLIELT' where id=7; -update noar tt set v0='MEN8ZFINIGCU5YBK' where id=7; -update noar ti set v0='MEN8ZFINIGCU5YBK' where id=7; -update noar tt set b2='8TZX5AAU' where id=7; -update noar ti set b2='8TZX5AAU' where id=7; -update noar tt set v0='QQIRMPX87NJUOM7D5YU60G' where id=8; -update noar ti set v0='QQIRMPX87NJUOM7D5YU60G' where id=8; -update noar tt set b0='OPP90DRY9PMJ' where id=8; -update noar ti set b0='OPP90DRY9PMJ' where id=8; -update noar tt set v0='S5SZXMSXGTGAQAN10B3WGRF' where id=8; -update noar ti set v0='S5SZXMSXGTGAQAN10B3WGRF' where id=8; -update noar tt set b1='YQHIORNSVLA9L3' where id=8; -update noar ti set b1='YQHIORNSVLA9L3' where id=8; -update noar tt set v0='LWH7YTTWDTZGOVMB9CV' where id=8; -update noar ti set v0='LWH7YTTWDTZGOVMB9CV' where id=8; -update noar tt set b2='IR85OPJI921MQBRY88DK' where id=8; -update noar ti set b2='IR85OPJI921MQBRY88DK' where id=8; -update noar tt set v0='2BHA6BWS0PIGZCO42TQM38RUD25QD' where id=9; -update noar ti set v0='2BHA6BWS0PIGZCO42TQM38RUD25QD' where id=9; -update noar tt set b0='I6KHR6I' where id=9; -update noar ti set b0='I6KHR6I' where id=9; -update noar tt set v0='10LFBX0LYRDXGF4BJFKZQJNH0H' where id=9; -update noar ti set v0='10LFBX0LYRDXGF4BJFKZQJNH0H' where id=9; -update noar tt set b1='BLLTY4V80DHCX3DKDTMO1W0C66' where id=9; -update noar ti set b1='BLLTY4V80DHCX3DKDTMO1W0C66' where id=9; -update noar tt set v0='Q7JDC3F3C406B5OT10ALKRW64' where id=9; -update noar ti set v0='Q7JDC3F3C406B5OT10ALKRW64' where id=9; -update noar tt set b2='FO9726N1GEAAEUJ8ZVT84A' where id=9; -update noar ti set b2='FO9726N1GEAAEUJ8ZVT84A' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - f0 int not null, - v0 varchar(32) not null, - b0 blob not null, - b1 longblob not null, - b2 mediumblob not null -) engine=tokudb; -insert into tt values (1,0,'','','',''); -insert into tt values (2,0,'','','',''); -insert into tt values (3,0,'','','',''); -insert into tt values (4,0,'','','',''); -insert into tt values (5,0,'','','',''); -insert into tt values (6,0,'','','',''); -insert into tt values (7,0,'','','',''); -insert into tt values (8,0,'','','',''); -insert into tt values (9,0,'','','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='YVHFGA42' where id=1; -update noar ti set v0='YVHFGA42' where id=1; -update noar tt set b0='HPI' where id=1; -update noar ti set b0='HPI' where id=1; -update noar tt set v0='9KCNJW1XEJNCTJ' where id=1; -update noar ti set v0='9KCNJW1XEJNCTJ' where id=1; -update noar tt set b1='5HM7OIWEYRIJSF5YMFLYDPCVC' where id=1; -update noar ti set b1='5HM7OIWEYRIJSF5YMFLYDPCVC' where id=1; -update noar tt set v0='FARLMBQ' where id=1; -update noar ti set v0='FARLMBQ' where id=1; -update noar tt set b2='B0U7' where id=1; -update noar ti set b2='B0U7' where id=1; -update noar tt set v0='8DQNPHJFW9NZ' where id=2; -update noar ti set v0='8DQNPHJFW9NZ' where id=2; -update noar tt set b0='32PJQ7I' where id=2; -update noar ti set b0='32PJQ7I' where id=2; -update noar tt set v0='F3Z80HY0GY5SP54HPQU' where id=2; -update noar ti set v0='F3Z80HY0GY5SP54HPQU' where id=2; -update noar tt set b1='GIVWCKC8KQ4PM0H09D7SDG4' where id=2; -update noar ti set b1='GIVWCKC8KQ4PM0H09D7SDG4' where id=2; -update noar tt set v0='C27ZNH7GEPTN3CO5OPT58TYN83' where id=2; -update noar ti set v0='C27ZNH7GEPTN3CO5OPT58TYN83' where id=2; -update noar tt set b2='0FAX88NDEI52FNB66D064YQW' where id=2; -update noar ti set b2='0FAX88NDEI52FNB66D064YQW' where id=2; -update noar tt set v0='7Z04R5C2FY11XMMR0HA340YMR' where id=3; -update noar ti set v0='7Z04R5C2FY11XMMR0HA340YMR' where id=3; -update noar tt set b0='SHFIZYCW92IFDXA9UH0FDLVUXB' where id=3; -update noar ti set b0='SHFIZYCW92IFDXA9UH0FDLVUXB' where id=3; -update noar tt set v0='FE6TR27YNM1UJXY5HPJ2EU01BD' where id=3; -update noar ti set v0='FE6TR27YNM1UJXY5HPJ2EU01BD' where id=3; -update noar tt set b1='XNLAQ0QDRM502A' where id=3; -update noar ti set b1='XNLAQ0QDRM502A' where id=3; -update noar tt set v0='P8HOG53Z2OAN70M1M' where id=3; -update noar ti set v0='P8HOG53Z2OAN70M1M' where id=3; -update noar tt set b2='M' where id=3; -update noar ti set b2='M' where id=3; -update noar tt set v0='M0B5P0BNTNWKXVZY1SFGAF5TC0W4WT' where id=4; -update noar ti set v0='M0B5P0BNTNWKXVZY1SFGAF5TC0W4WT' where id=4; -update noar tt set b0='Y3Q16O' where id=4; -update noar ti set b0='Y3Q16O' where id=4; -update noar tt set v0='9M24D39D' where id=4; -update noar ti set v0='9M24D39D' where id=4; -update noar tt set b1='AUBI2H1VOR96B6PA4UKU0GLG4D' where id=4; -update noar ti set b1='AUBI2H1VOR96B6PA4UKU0GLG4D' where id=4; -update noar tt set v0='LBXCA1WZQT66K7PH2M1BHZKDWA7KAHH' where id=4; -update noar ti set v0='LBXCA1WZQT66K7PH2M1BHZKDWA7KAHH' where id=4; -update noar tt set b2='0P76Y65Y80Z8DWTM887J1ZD67BITJIK5' where id=4; -update noar ti set b2='0P76Y65Y80Z8DWTM887J1ZD67BITJIK5' where id=4; -update noar tt set v0='MKOA85VC40EUBGFZ08N5B6Y47THV' where id=5; -update noar ti set v0='MKOA85VC40EUBGFZ08N5B6Y47THV' where id=5; -update noar tt set b0='NKSCZJW6YW7O1BQ5FD' where id=5; -update noar ti set b0='NKSCZJW6YW7O1BQ5FD' where id=5; -update noar tt set v0='KG5U7CLTSLBNPASK6J00' where id=5; -update noar ti set v0='KG5U7CLTSLBNPASK6J00' where id=5; -update noar tt set b1='N7WKLPO9F5M6G7NNBQ4PS92O0' where id=5; -update noar ti set b1='N7WKLPO9F5M6G7NNBQ4PS92O0' where id=5; -update noar tt set v0='3GF7X10QAZCAEOJYHR' where id=5; -update noar ti set v0='3GF7X10QAZCAEOJYHR' where id=5; -update noar tt set b2='5E9UZGJVSA961R' where id=5; -update noar ti set b2='5E9UZGJVSA961R' where id=5; -update noar tt set v0='INOMBPQ13' where id=6; -update noar ti set v0='INOMBPQ13' where id=6; -update noar tt set b0='RV0VI8DJOQTFY1VRUBW8GPIQRIM' where id=6; -update noar ti set b0='RV0VI8DJOQTFY1VRUBW8GPIQRIM' where id=6; -update noar tt set v0='SLZYIEH0GSQO9Y976SJM7OY8WCAMC9P' where id=6; -update noar ti set v0='SLZYIEH0GSQO9Y976SJM7OY8WCAMC9P' where id=6; -update noar tt set b1='GQX6P0XBP8' where id=6; -update noar ti set b1='GQX6P0XBP8' where id=6; -update noar tt set v0='V5LX63EOP5E6HS2' where id=6; -update noar ti set v0='V5LX63EOP5E6HS2' where id=6; -update noar tt set b2='6GWMAJ3669T307F' where id=6; -update noar ti set b2='6GWMAJ3669T307F' where id=6; -update noar tt set v0='E9TZWKCMRA044PE' where id=7; -update noar ti set v0='E9TZWKCMRA044PE' where id=7; -update noar tt set b0='CYFARUDS8CWCU9DORMII02N' where id=7; -update noar ti set b0='CYFARUDS8CWCU9DORMII02N' where id=7; -update noar tt set v0='X0CD7MR8FBLJFLQE135KUJ' where id=7; -update noar ti set v0='X0CD7MR8FBLJFLQE135KUJ' where id=7; -update noar tt set b1='874BRIOJU3INV0ZO6RB6SRN8CW' where id=7; -update noar ti set b1='874BRIOJU3INV0ZO6RB6SRN8CW' where id=7; -update noar tt set v0='FCNKRMJ' where id=7; -update noar ti set v0='FCNKRMJ' where id=7; -update noar tt set b2='VIYE91QZ7VLSV65FV' where id=7; -update noar ti set b2='VIYE91QZ7VLSV65FV' where id=7; -update noar tt set v0='LO9ZZY3E49X86LDO7DPJL2' where id=8; -update noar ti set v0='LO9ZZY3E49X86LDO7DPJL2' where id=8; -update noar tt set b0='KEGTD0' where id=8; -update noar ti set b0='KEGTD0' where id=8; -update noar tt set v0='XTDJQZCQUBQJKY0MV7FF2GA8A2' where id=8; -update noar ti set v0='XTDJQZCQUBQJKY0MV7FF2GA8A2' where id=8; -update noar tt set b1='CR6RYHAGWYQCIC6MJXWZTXC75FJA' where id=8; -update noar ti set b1='CR6RYHAGWYQCIC6MJXWZTXC75FJA' where id=8; -update noar tt set v0='59DD448RJKL' where id=8; -update noar ti set v0='59DD448RJKL' where id=8; -update noar tt set b2='TYWB' where id=8; -update noar ti set b2='TYWB' where id=8; -update noar tt set v0='YCZ0R65OSXPKXYY8N' where id=9; -update noar ti set v0='YCZ0R65OSXPKXYY8N' where id=9; -update noar tt set b0='HVQ3C5DNERP4C' where id=9; -update noar ti set b0='HVQ3C5DNERP4C' where id=9; -update noar tt set v0='U4E9M3DB6978B0T' where id=9; -update noar ti set v0='U4E9M3DB6978B0T' where id=9; -update noar tt set b1='VQ2UVBMRQHOHUJ795XYEPJ40J71DX' where id=9; -update noar ti set b1='VQ2UVBMRQHOHUJ795XYEPJ40J71DX' where id=9; -update noar tt set v0='YD46X1R2QUQNP8M6G1LJWNA1WRXP3Y5A' where id=9; -update noar ti set v0='YD46X1R2QUQNP8M6G1LJWNA1WRXP3Y5A' where id=9; -update noar tt set b2='N1IIZHXVX1K4G0' where id=9; -update noar ti set b2='N1IIZHXVX1K4G0' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - f0 int not null, - v0 varchar(256) not null, - b0 blob not null, - b1 longblob not null, - b2 mediumblob not null -) engine=tokudb; -insert into tt values (1,0,'','','',''); -insert into tt values (2,0,'','','',''); -insert into tt values (3,0,'','','',''); -insert into tt values (4,0,'','','',''); -insert into tt values (5,0,'','','',''); -insert into tt values (6,0,'','','',''); -insert into tt values (7,0,'','','',''); -insert into tt values (8,0,'','','',''); -insert into tt values (9,0,'','','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='NZXJ90XMYGTZB0RPJ0SP' where id=1; -update noar ti set v0='NZXJ90XMYGTZB0RPJ0SP' where id=1; -update noar tt set b0='899T3TVG2LTTORAWL0EGI' where id=1; -update noar ti set b0='899T3TVG2LTTORAWL0EGI' where id=1; -update noar tt set v0='5WFSQGFMY56Z1' where id=1; -update noar ti set v0='5WFSQGFMY56Z1' where id=1; -update noar tt set b1='ZL4YN6BLROC' where id=1; -update noar ti set b1='ZL4YN6BLROC' where id=1; -update noar tt set v0='PB824GVF4HHU3Y2UVN' where id=1; -update noar ti set v0='PB824GVF4HHU3Y2UVN' where id=1; -update noar tt set b2='19GG3J899DOC8WC99RNU0RK26' where id=1; -update noar ti set b2='19GG3J899DOC8WC99RNU0RK26' where id=1; -update noar tt set v0='UY7IA5MSI3' where id=2; -update noar ti set v0='UY7IA5MSI3' where id=2; -update noar tt set b0='DAYFUPLX' where id=2; -update noar ti set b0='DAYFUPLX' where id=2; -update noar tt set v0='ST' where id=2; -update noar ti set v0='ST' where id=2; -update noar tt set b1='AJEDD3ZC41' where id=2; -update noar ti set b1='AJEDD3ZC41' where id=2; -update noar tt set v0='4HO1RIGUZBMM' where id=2; -update noar ti set v0='4HO1RIGUZBMM' where id=2; -update noar tt set b2='7MH6L7XZKI6' where id=2; -update noar ti set b2='7MH6L7XZKI6' where id=2; -update noar tt set v0='FYJO84BHH5XUW564WW6590JZC374' where id=3; -update noar ti set v0='FYJO84BHH5XUW564WW6590JZC374' where id=3; -update noar tt set b0='F78S' where id=3; -update noar ti set b0='F78S' where id=3; -update noar tt set v0='04AHZK5P' where id=3; -update noar ti set v0='04AHZK5P' where id=3; -update noar tt set b1='4Q27EG2ZAA470C0Q7CZIQFDQ' where id=3; -update noar ti set b1='4Q27EG2ZAA470C0Q7CZIQFDQ' where id=3; -update noar tt set v0='SE798L3AERBT' where id=3; -update noar ti set v0='SE798L3AERBT' where id=3; -update noar tt set b2='69NY2N5FI7NZSXDHX7WAFO4T2FX3GDJ' where id=3; -update noar ti set b2='69NY2N5FI7NZSXDHX7WAFO4T2FX3GDJ' where id=3; -update noar tt set v0='D1CS' where id=4; -update noar ti set v0='D1CS' where id=4; -update noar tt set b0='YZTDGG649QB218Y' where id=4; -update noar ti set b0='YZTDGG649QB218Y' where id=4; -update noar tt set v0='YYKDWWOPOCWEG' where id=4; -update noar ti set v0='YYKDWWOPOCWEG' where id=4; -update noar tt set b1='BGBJIOYDJ2ERACX1K2M' where id=4; -update noar ti set b1='BGBJIOYDJ2ERACX1K2M' where id=4; -update noar tt set v0='JJDK5' where id=4; -update noar ti set v0='JJDK5' where id=4; -update noar tt set b2='QHOYQLYML19MXXSKS43J59J' where id=4; -update noar ti set b2='QHOYQLYML19MXXSKS43J59J' where id=4; -update noar tt set v0='VCK2G203AHNV7EX891M730A193LV' where id=5; -update noar ti set v0='VCK2G203AHNV7EX891M730A193LV' where id=5; -update noar tt set b0='T2S0' where id=5; -update noar ti set b0='T2S0' where id=5; -update noar tt set v0='8' where id=5; -update noar ti set v0='8' where id=5; -update noar tt set b1='ELNBDW3T2PMKSEAQU' where id=5; -update noar ti set b1='ELNBDW3T2PMKSEAQU' where id=5; -update noar tt set v0='LFQ' where id=5; -update noar ti set v0='LFQ' where id=5; -update noar tt set b2='SJUBUB3UBQWIQA31KPVI9H' where id=5; -update noar ti set b2='SJUBUB3UBQWIQA31KPVI9H' where id=5; -update noar tt set v0='ZP3ZSSQZFF0T7D0YKQXH304XCO' where id=6; -update noar ti set v0='ZP3ZSSQZFF0T7D0YKQXH304XCO' where id=6; -update noar tt set b0='L0I6318E4K78XR0SLC9O17' where id=6; -update noar ti set b0='L0I6318E4K78XR0SLC9O17' where id=6; -update noar tt set v0='92XSYU2J9AKJWFFIK8KCWDC2VDQLU9' where id=6; -update noar ti set v0='92XSYU2J9AKJWFFIK8KCWDC2VDQLU9' where id=6; -update noar tt set b1='S2EH5G24' where id=6; -update noar ti set b1='S2EH5G24' where id=6; -update noar tt set v0='I2AWY65O5PQH64U7NA8Q8VHV8BRB8IBN' where id=6; -update noar ti set v0='I2AWY65O5PQH64U7NA8Q8VHV8BRB8IBN' where id=6; -update noar tt set b2='FRF1CMSYYDWPVO050SGL' where id=6; -update noar ti set b2='FRF1CMSYYDWPVO050SGL' where id=6; -update noar tt set v0='0RJQEC8XWVE' where id=7; -update noar ti set v0='0RJQEC8XWVE' where id=7; -update noar tt set b0='BGYPMLS81YE0UD9O0MQS' where id=7; -update noar ti set b0='BGYPMLS81YE0UD9O0MQS' where id=7; -update noar tt set v0='CTTJCMWL5PRDAHRQJZB' where id=7; -update noar ti set v0='CTTJCMWL5PRDAHRQJZB' where id=7; -update noar tt set b1='AXO03UIKOVM54NNSMY' where id=7; -update noar ti set b1='AXO03UIKOVM54NNSMY' where id=7; -update noar tt set v0='S' where id=7; -update noar ti set v0='S' where id=7; -update noar tt set b2='0FH7H9L93D6M7QQOKU5MBRLL' where id=7; -update noar ti set b2='0FH7H9L93D6M7QQOKU5MBRLL' where id=7; -update noar tt set v0='PABN14PGJECJNR2NVYGBR1IW9FXLH' where id=8; -update noar ti set v0='PABN14PGJECJNR2NVYGBR1IW9FXLH' where id=8; -update noar tt set b0='66ZN5LOOHOQJLVEBVV2MT7ZOS16OD' where id=8; -update noar ti set b0='66ZN5LOOHOQJLVEBVV2MT7ZOS16OD' where id=8; -update noar tt set v0='NDYQOZG3I453DTRYOUJB' where id=8; -update noar ti set v0='NDYQOZG3I453DTRYOUJB' where id=8; -update noar tt set b1='13XJRQY1BLHQOQJ' where id=8; -update noar ti set b1='13XJRQY1BLHQOQJ' where id=8; -update noar tt set v0='YGN19TJZC6WB94WKQAFG52SXDY2AX8O9' where id=8; -update noar ti set v0='YGN19TJZC6WB94WKQAFG52SXDY2AX8O9' where id=8; -update noar tt set b2='DKRRR284ZNLL4H6892' where id=8; -update noar ti set b2='DKRRR284ZNLL4H6892' where id=8; -update noar tt set v0='OJPSA' where id=9; -update noar ti set v0='OJPSA' where id=9; -update noar tt set b0='7ORBM8TWGMI73CHH4ER4' where id=9; -update noar ti set b0='7ORBM8TWGMI73CHH4ER4' where id=9; -update noar tt set v0='4HN7HS70D8UEW5ZQ84YG4T9IY8NDQ' where id=9; -update noar ti set v0='4HN7HS70D8UEW5ZQ84YG4T9IY8NDQ' where id=9; -update noar tt set b1='ZFVVPTZJI' where id=9; -update noar ti set b1='ZFVVPTZJI' where id=9; -update noar tt set v0='CU8YLJVTI98PLG7R7QCGSPAH3' where id=9; -update noar ti set v0='CU8YLJVTI98PLG7R7QCGSPAH3' where id=9; -update noar tt set b2='O9ZCW1UZH396XV0HQ8JWR6OF4V0S9QFV' where id=9; -update noar ti set b2='O9ZCW1UZH396XV0HQ8JWR6OF4V0S9QFV' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - f0 int null, - v0 varchar(32) null, - b0 blob null, - b1 longblob null, - b2 longblob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='36KMNYF5NQKSZRZ8B3NT6BQ5WWLV93Y' where id=1; -update noar ti set v0='36KMNYF5NQKSZRZ8B3NT6BQ5WWLV93Y' where id=1; -update noar tt set b0='VWGRXG0U33O5W4IQKEG0ZULMK' where id=1; -update noar ti set b0='VWGRXG0U33O5W4IQKEG0ZULMK' where id=1; -update noar tt set v0='27MIGXJ3DB00VUCM7PQ0ZFXI84OVCDUJ' where id=1; -update noar ti set v0='27MIGXJ3DB00VUCM7PQ0ZFXI84OVCDUJ' where id=1; -update noar tt set b1='9GK4QDNY7' where id=1; -update noar ti set b1='9GK4QDNY7' where id=1; -update noar tt set v0='220TDAQR0S228' where id=1; -update noar ti set v0='220TDAQR0S228' where id=1; -update noar tt set b2='Q7WA0N66ESPQVU1YUMEK8AMG1538J' where id=1; -update noar ti set b2='Q7WA0N66ESPQVU1YUMEK8AMG1538J' where id=1; -update noar tt set v0='T8PKEN7YQ2DBHUV' where id=2; -update noar ti set v0='T8PKEN7YQ2DBHUV' where id=2; -update noar tt set b0='WL01LKNKI8' where id=2; -update noar ti set b0='WL01LKNKI8' where id=2; -update noar tt set v0='W7RC63VP494IICS1' where id=2; -update noar ti set v0='W7RC63VP494IICS1' where id=2; -update noar tt set b1='8QZDJ6AIXM2G0BHSOTQ0' where id=2; -update noar ti set b1='8QZDJ6AIXM2G0BHSOTQ0' where id=2; -update noar tt set v0='Q9X' where id=2; -update noar ti set v0='Q9X' where id=2; -update noar tt set b2='XWOOLZJTO6PNJWE4S' where id=2; -update noar ti set b2='XWOOLZJTO6PNJWE4S' where id=2; -update noar tt set v0='TGJQV42' where id=3; -update noar ti set v0='TGJQV42' where id=3; -update noar tt set b0='VU0VTJE' where id=3; -update noar ti set b0='VU0VTJE' where id=3; -update noar tt set v0='FTX5462YZHTVU1QR93APBM' where id=3; -update noar ti set v0='FTX5462YZHTVU1QR93APBM' where id=3; -update noar tt set b1='OYJ37WNO7OTI' where id=3; -update noar ti set b1='OYJ37WNO7OTI' where id=3; -update noar tt set v0='L82CWAAF' where id=3; -update noar ti set v0='L82CWAAF' where id=3; -update noar tt set b2='RNEZY454' where id=3; -update noar ti set b2='RNEZY454' where id=3; -update noar tt set v0='RLIQ5GKZCTI07UW9Q' where id=4; -update noar ti set v0='RLIQ5GKZCTI07UW9Q' where id=4; -update noar tt set b0='D5FJAZPUPS8TJ7WY8P1ZY1SUSRHCBW' where id=4; -update noar ti set b0='D5FJAZPUPS8TJ7WY8P1ZY1SUSRHCBW' where id=4; -update noar tt set v0='GS' where id=4; -update noar ti set v0='GS' where id=4; -update noar tt set b1='33JH8B09ERBN1LBNN8H281M5AE' where id=4; -update noar ti set b1='33JH8B09ERBN1LBNN8H281M5AE' where id=4; -update noar tt set v0='GI564DW56VC' where id=4; -update noar ti set v0='GI564DW56VC' where id=4; -update noar tt set b2='TX01EYJTTJX' where id=4; -update noar ti set b2='TX01EYJTTJX' where id=4; -update noar tt set v0='0F8VHUHJ6CUIHQLR9PZT' where id=5; -update noar ti set v0='0F8VHUHJ6CUIHQLR9PZT' where id=5; -update noar tt set b0='Z69YU9VI8ZHM' where id=5; -update noar ti set b0='Z69YU9VI8ZHM' where id=5; -update noar tt set v0='Y35VBO01MV4C10508UFR3OTFTMFWP7' where id=5; -update noar ti set v0='Y35VBO01MV4C10508UFR3OTFTMFWP7' where id=5; -update noar tt set b1='2P6WTYSX3PMUDI187GJJR4' where id=5; -update noar ti set b1='2P6WTYSX3PMUDI187GJJR4' where id=5; -update noar tt set v0='FOMM99M2AK9LMR2SOM557ZK9PR9UAMFV' where id=5; -update noar ti set v0='FOMM99M2AK9LMR2SOM557ZK9PR9UAMFV' where id=5; -update noar tt set b2='D' where id=5; -update noar ti set b2='D' where id=5; -update noar tt set v0='U4GVVIMBZVBJ4HW6B993N8KOYGT3' where id=6; -update noar ti set v0='U4GVVIMBZVBJ4HW6B993N8KOYGT3' where id=6; -update noar tt set b0='LUOLZXIZ30H' where id=6; -update noar ti set b0='LUOLZXIZ30H' where id=6; -update noar tt set v0='TZDUN3455DA96FRNMHSJTKW121' where id=6; -update noar ti set v0='TZDUN3455DA96FRNMHSJTKW121' where id=6; -update noar tt set b1='FU3BZXDWC6GL2D2M0R6EC' where id=6; -update noar ti set b1='FU3BZXDWC6GL2D2M0R6EC' where id=6; -update noar tt set v0='O' where id=6; -update noar ti set v0='O' where id=6; -update noar tt set b2='5Q79G9LOE5A6CJZLIFK9M4M2' where id=6; -update noar ti set b2='5Q79G9LOE5A6CJZLIFK9M4M2' where id=6; -update noar tt set v0='33DS53D2Q8Q4ZTA993KH3DBPG6F' where id=7; -update noar ti set v0='33DS53D2Q8Q4ZTA993KH3DBPG6F' where id=7; -update noar tt set b0='510IELL5TIQ' where id=7; -update noar ti set b0='510IELL5TIQ' where id=7; -update noar tt set v0='LA' where id=7; -update noar ti set v0='LA' where id=7; -update noar tt set b1='NAKPR7XF101' where id=7; -update noar ti set b1='NAKPR7XF101' where id=7; -update noar tt set v0='2I66AU2BE0I4Q2AAH7QUU' where id=7; -update noar ti set v0='2I66AU2BE0I4Q2AAH7QUU' where id=7; -update noar tt set b2='X2UW2JDND' where id=7; -update noar ti set b2='X2UW2JDND' where id=7; -update noar tt set v0='2' where id=8; -update noar ti set v0='2' where id=8; -update noar tt set b0='ZS3ZF156GO6ZAYVJ00Y790DIRY2Q' where id=8; -update noar ti set b0='ZS3ZF156GO6ZAYVJ00Y790DIRY2Q' where id=8; -update noar tt set v0='AK7UEQIXG2MEVJL30USL2AQI15HX' where id=8; -update noar ti set v0='AK7UEQIXG2MEVJL30USL2AQI15HX' where id=8; -update noar tt set b1='Z59OU7MLQBBYG7M2KH7T08QAF' where id=8; -update noar ti set b1='Z59OU7MLQBBYG7M2KH7T08QAF' where id=8; -update noar tt set v0='AHSHR' where id=8; -update noar ti set v0='AHSHR' where id=8; -update noar tt set b2='TA37' where id=8; -update noar ti set b2='TA37' where id=8; -update noar tt set v0='V' where id=9; -update noar ti set v0='V' where id=9; -update noar tt set b0='E5IK99NWBORU2GYA086QGPO95431GYI' where id=9; -update noar ti set b0='E5IK99NWBORU2GYA086QGPO95431GYI' where id=9; -update noar tt set v0='M9VWOEWL017NV1MUF4XD4M28J8ZGKFWB' where id=9; -update noar ti set v0='M9VWOEWL017NV1MUF4XD4M28J8ZGKFWB' where id=9; -update noar tt set b1='OE9AZQG51FA7N' where id=9; -update noar ti set b1='OE9AZQG51FA7N' where id=9; -update noar tt set v0='QBCNTLTYHXJ91NB' where id=9; -update noar ti set v0='QBCNTLTYHXJ91NB' where id=9; -update noar tt set b2='7GNGQJHI1VGP8KAT6NOG3JTS' where id=9; -update noar ti set b2='7GNGQJHI1VGP8KAT6NOG3JTS' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - f0 int null, - v0 varchar(256) null, - b0 blob null, - b1 longblob null, - b2 longblob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='F9SRLA1L6XW8G7I' where id=1; -update noar ti set v0='F9SRLA1L6XW8G7I' where id=1; -update noar tt set b0='1R0FIE9LHUS1E0TJ2J5V' where id=1; -update noar ti set b0='1R0FIE9LHUS1E0TJ2J5V' where id=1; -update noar tt set v0='GFGRMUYF8LFZ4MTH' where id=1; -update noar ti set v0='GFGRMUYF8LFZ4MTH' where id=1; -update noar tt set b1='ZAX573ZJ8BWE9CEHMV2G' where id=1; -update noar ti set b1='ZAX573ZJ8BWE9CEHMV2G' where id=1; -update noar tt set v0='N75WAONFYAW9VNVFZ32F0C969V7J' where id=1; -update noar ti set v0='N75WAONFYAW9VNVFZ32F0C969V7J' where id=1; -update noar tt set b2='VJRFNWXXRVT244W' where id=1; -update noar ti set b2='VJRFNWXXRVT244W' where id=1; -update noar tt set v0='NHHV' where id=2; -update noar ti set v0='NHHV' where id=2; -update noar tt set b0='QRXI3XWRJC178QDPJUCHACA4I' where id=2; -update noar ti set b0='QRXI3XWRJC178QDPJUCHACA4I' where id=2; -update noar tt set v0='4W1RJI4O' where id=2; -update noar ti set v0='4W1RJI4O' where id=2; -update noar tt set b1='6UNKUOUYQ8LOK8493O3XRAP4G' where id=2; -update noar ti set b1='6UNKUOUYQ8LOK8493O3XRAP4G' where id=2; -update noar tt set v0='L8T4NICFI7R0FFJ3E0JTE4HQS7MKAVNQ' where id=2; -update noar ti set v0='L8T4NICFI7R0FFJ3E0JTE4HQS7MKAVNQ' where id=2; -update noar tt set b2='YS0BD73CG' where id=2; -update noar ti set b2='YS0BD73CG' where id=2; -update noar tt set v0='BFA8GU' where id=3; -update noar ti set v0='BFA8GU' where id=3; -update noar tt set b0='3TGDMLX3MVSBD7N' where id=3; -update noar ti set b0='3TGDMLX3MVSBD7N' where id=3; -update noar tt set v0='DDINNLNT6' where id=3; -update noar ti set v0='DDINNLNT6' where id=3; -update noar tt set b1='HFFJNY1SGGMLS1LQE1YE544F5V' where id=3; -update noar ti set b1='HFFJNY1SGGMLS1LQE1YE544F5V' where id=3; -update noar tt set v0='ANCK0PGOZK' where id=3; -update noar ti set v0='ANCK0PGOZK' where id=3; -update noar tt set b2='R2ASFCSZKFXYJBDG2FZRLR5B' where id=3; -update noar ti set b2='R2ASFCSZKFXYJBDG2FZRLR5B' where id=3; -update noar tt set v0='KM3T2BH7R' where id=4; -update noar ti set v0='KM3T2BH7R' where id=4; -update noar tt set b0='9QR92IX522BZ7AIPZZXO1B5AI' where id=4; -update noar ti set b0='9QR92IX522BZ7AIPZZXO1B5AI' where id=4; -update noar tt set v0='7MQYNJ9RQXNHDZ68ETY' where id=4; -update noar ti set v0='7MQYNJ9RQXNHDZ68ETY' where id=4; -update noar tt set b1='0BMRIM' where id=4; -update noar ti set b1='0BMRIM' where id=4; -update noar tt set v0='2TN0H' where id=4; -update noar ti set v0='2TN0H' where id=4; -update noar tt set b2='23HGJ7Y1Z3FX' where id=4; -update noar ti set b2='23HGJ7Y1Z3FX' where id=4; -update noar tt set v0='LH2XL3XT5I47KPX2TVIIQPXZDC3K39GB' where id=5; -update noar ti set v0='LH2XL3XT5I47KPX2TVIIQPXZDC3K39GB' where id=5; -update noar tt set b0='AH5LZY459R' where id=5; -update noar ti set b0='AH5LZY459R' where id=5; -update noar tt set v0='275SHUBF9TBQHCS5Y2VUZLLO4ZO8WB' where id=5; -update noar ti set v0='275SHUBF9TBQHCS5Y2VUZLLO4ZO8WB' where id=5; -update noar tt set b1='1BAZ4G' where id=5; -update noar ti set b1='1BAZ4G' where id=5; -update noar tt set v0='D1T565BLUVDR4SOB8FHYHC4WR7MJ' where id=5; -update noar ti set v0='D1T565BLUVDR4SOB8FHYHC4WR7MJ' where id=5; -update noar tt set b2='LUKV' where id=5; -update noar ti set b2='LUKV' where id=5; -update noar tt set v0='SUQQLE' where id=6; -update noar ti set v0='SUQQLE' where id=6; -update noar tt set b0='8VWUK367J11K' where id=6; -update noar ti set b0='8VWUK367J11K' where id=6; -update noar tt set v0='KKZYFQ8HEXUX5L48RYGP278Y5D0J' where id=6; -update noar ti set v0='KKZYFQ8HEXUX5L48RYGP278Y5D0J' where id=6; -update noar tt set b1='CKP1A21X9AIW' where id=6; -update noar ti set b1='CKP1A21X9AIW' where id=6; -update noar tt set v0='K96G2ALJ44L06PBS5VA0KH9CSM2SB' where id=6; -update noar ti set v0='K96G2ALJ44L06PBS5VA0KH9CSM2SB' where id=6; -update noar tt set b2='0FMYLMDSORQLHY7JT187WLC3WJG' where id=6; -update noar ti set b2='0FMYLMDSORQLHY7JT187WLC3WJG' where id=6; -update noar tt set v0='JST20FUIF8GXL2VD5I0W9AS74ZTJ4Z' where id=7; -update noar ti set v0='JST20FUIF8GXL2VD5I0W9AS74ZTJ4Z' where id=7; -update noar tt set b0='IX4BGOC6G4E6VPV' where id=7; -update noar ti set b0='IX4BGOC6G4E6VPV' where id=7; -update noar tt set v0='J8L0PFWFN97' where id=7; -update noar ti set v0='J8L0PFWFN97' where id=7; -update noar tt set b1='KJNKRUW' where id=7; -update noar ti set b1='KJNKRUW' where id=7; -update noar tt set v0='TMN8DX' where id=7; -update noar ti set v0='TMN8DX' where id=7; -update noar tt set b2='QEFNIA4ERU' where id=7; -update noar ti set b2='QEFNIA4ERU' where id=7; -update noar tt set v0='MY55UD7WQD71PFOJQRD9LM2ILO6D13' where id=8; -update noar ti set v0='MY55UD7WQD71PFOJQRD9LM2ILO6D13' where id=8; -update noar tt set b0='9O168LWC0QCZ9NAOK' where id=8; -update noar ti set b0='9O168LWC0QCZ9NAOK' where id=8; -update noar tt set v0='175I7P3ZZVOXUQDPJ' where id=8; -update noar ti set v0='175I7P3ZZVOXUQDPJ' where id=8; -update noar tt set b1='N1NU66JIEZN50OA033HHMGQBBMQZ' where id=8; -update noar ti set b1='N1NU66JIEZN50OA033HHMGQBBMQZ' where id=8; -update noar tt set v0='O53YWI64GQXZ28PMG' where id=8; -update noar ti set v0='O53YWI64GQXZ28PMG' where id=8; -update noar tt set b2='6M39DYZQFD0NBDO4BT1TIFPU6MA3FZN' where id=8; -update noar ti set b2='6M39DYZQFD0NBDO4BT1TIFPU6MA3FZN' where id=8; -update noar tt set v0='QGS20CI8JOGZ2LN' where id=9; -update noar ti set v0='QGS20CI8JOGZ2LN' where id=9; -update noar tt set b0='KIB8R1IQL40HELLBSAY4' where id=9; -update noar ti set b0='KIB8R1IQL40HELLBSAY4' where id=9; -update noar tt set v0='R1YQ39NFTA5HJ3Q39TOO' where id=9; -update noar ti set v0='R1YQ39NFTA5HJ3Q39TOO' where id=9; -update noar tt set b1='MH9UJ5OOLBNZX23HNO0E3SB' where id=9; -update noar ti set b1='MH9UJ5OOLBNZX23HNO0E3SB' where id=9; -update noar tt set v0='LHF' where id=9; -update noar ti set v0='LHF' where id=9; -update noar tt set b2='DQQGUYRR7FK' where id=9; -update noar ti set b2='DQQGUYRR7FK' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - f0 int not null, - v0 varchar(32) not null, - b0 blob not null, - b1 longblob not null, - b2 longblob not null -) engine=tokudb; -insert into tt values (1,0,'','','',''); -insert into tt values (2,0,'','','',''); -insert into tt values (3,0,'','','',''); -insert into tt values (4,0,'','','',''); -insert into tt values (5,0,'','','',''); -insert into tt values (6,0,'','','',''); -insert into tt values (7,0,'','','',''); -insert into tt values (8,0,'','','',''); -insert into tt values (9,0,'','','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='8GPLQ2H6LCXQQLUCX6H2434S' where id=1; -update noar ti set v0='8GPLQ2H6LCXQQLUCX6H2434S' where id=1; -update noar tt set b0='OWH8WXM0V0G671FPP70N' where id=1; -update noar ti set b0='OWH8WXM0V0G671FPP70N' where id=1; -update noar tt set v0='WKLTCEGNAPP' where id=1; -update noar ti set v0='WKLTCEGNAPP' where id=1; -update noar tt set b1='4LELLB9RSCP01SH92F8B' where id=1; -update noar ti set b1='4LELLB9RSCP01SH92F8B' where id=1; -update noar tt set v0='804B4UA7K8' where id=1; -update noar ti set v0='804B4UA7K8' where id=1; -update noar tt set b2='G422L880BT609WEAFFBUPVZ7GHTA1EA' where id=1; -update noar ti set b2='G422L880BT609WEAFFBUPVZ7GHTA1EA' where id=1; -update noar tt set v0='EF7BZ2K2GIYMQ8EJJDHMDYF' where id=2; -update noar ti set v0='EF7BZ2K2GIYMQ8EJJDHMDYF' where id=2; -update noar tt set b0='019XDLGIAZNU1' where id=2; -update noar ti set b0='019XDLGIAZNU1' where id=2; -update noar tt set v0='D78JVO6AGD0XB2ZGTBE6Q' where id=2; -update noar ti set v0='D78JVO6AGD0XB2ZGTBE6Q' where id=2; -update noar tt set b1='QFKJ29' where id=2; -update noar ti set b1='QFKJ29' where id=2; -update noar tt set v0='KODEDFT5AVALRJE642GBAY53PK0RR9' where id=2; -update noar ti set v0='KODEDFT5AVALRJE642GBAY53PK0RR9' where id=2; -update noar tt set b2='15AP6UCOLW810J1PTG' where id=2; -update noar ti set b2='15AP6UCOLW810J1PTG' where id=2; -update noar tt set v0='XAL' where id=3; -update noar ti set v0='XAL' where id=3; -update noar tt set b0='7J26PRN8C83FX9NTDGA2MTYO' where id=3; -update noar ti set b0='7J26PRN8C83FX9NTDGA2MTYO' where id=3; -update noar tt set v0='9NEEYNNPVW8OYO2MXZ' where id=3; -update noar ti set v0='9NEEYNNPVW8OYO2MXZ' where id=3; -update noar tt set b1='RZYPB09VJK8S0I5DPFTESBDQ9I' where id=3; -update noar ti set b1='RZYPB09VJK8S0I5DPFTESBDQ9I' where id=3; -update noar tt set v0='LA96L307Q927TU' where id=3; -update noar ti set v0='LA96L307Q927TU' where id=3; -update noar tt set b2='ULVU8VA4GEJXXTCGNHPFZC59IOK' where id=3; -update noar ti set b2='ULVU8VA4GEJXXTCGNHPFZC59IOK' where id=3; -update noar tt set v0='L3JDAZ0UVBF4R6VBG2NAY8' where id=4; -update noar ti set v0='L3JDAZ0UVBF4R6VBG2NAY8' where id=4; -update noar tt set b0='RPFSCVC8PI1HJ2780I40ZXYCPDA4D' where id=4; -update noar ti set b0='RPFSCVC8PI1HJ2780I40ZXYCPDA4D' where id=4; -update noar tt set v0='PH6L9IJMI1BORWBE6JUKD814KIL7YGL' where id=4; -update noar ti set v0='PH6L9IJMI1BORWBE6JUKD814KIL7YGL' where id=4; -update noar tt set b1='Y9AZEIZKYP0H0VB' where id=4; -update noar ti set b1='Y9AZEIZKYP0H0VB' where id=4; -update noar tt set v0='D2JE4G1XVQRM16MB0XZNTN6' where id=4; -update noar ti set v0='D2JE4G1XVQRM16MB0XZNTN6' where id=4; -update noar tt set b2='S9NH5SHX' where id=4; -update noar ti set b2='S9NH5SHX' where id=4; -update noar tt set v0='V9F2ZSL37WLS0X0SK6G' where id=5; -update noar ti set v0='V9F2ZSL37WLS0X0SK6G' where id=5; -update noar tt set b0='DX2' where id=5; -update noar ti set b0='DX2' where id=5; -update noar tt set v0='JWO3EVP5FP4KQ4YSQ3G1' where id=5; -update noar ti set v0='JWO3EVP5FP4KQ4YSQ3G1' where id=5; -update noar tt set b1='SBK3GDH7956ACJVK3E4M9J3PSQ7XF4' where id=5; -update noar ti set b1='SBK3GDH7956ACJVK3E4M9J3PSQ7XF4' where id=5; -update noar tt set v0='PCSJTMOGEAB' where id=5; -update noar ti set v0='PCSJTMOGEAB' where id=5; -update noar tt set b2='07C940PPX' where id=5; -update noar ti set b2='07C940PPX' where id=5; -update noar tt set v0='8THA7J0M3BWE5' where id=6; -update noar ti set v0='8THA7J0M3BWE5' where id=6; -update noar tt set b0='WKKLD98GM7JZ2YOQQC6JXWISIYJDIT' where id=6; -update noar ti set b0='WKKLD98GM7JZ2YOQQC6JXWISIYJDIT' where id=6; -update noar tt set v0='L50POLU0VDY3IFU' where id=6; -update noar ti set v0='L50POLU0VDY3IFU' where id=6; -update noar tt set b1='1X3ZIUSKN6EMJA5UU3JWF21F7VT761S' where id=6; -update noar ti set b1='1X3ZIUSKN6EMJA5UU3JWF21F7VT761S' where id=6; -update noar tt set v0='PMS7' where id=6; -update noar ti set v0='PMS7' where id=6; -update noar tt set b2='PJJND65FI1RSKM' where id=6; -update noar ti set b2='PJJND65FI1RSKM' where id=6; -update noar tt set v0='WMRC9AMUZKFOU5NZEGJ6L6' where id=7; -update noar ti set v0='WMRC9AMUZKFOU5NZEGJ6L6' where id=7; -update noar tt set b0='PJC8' where id=7; -update noar ti set b0='PJC8' where id=7; -update noar tt set v0='TIF00BS3S3RQ37N427XB2' where id=7; -update noar ti set v0='TIF00BS3S3RQ37N427XB2' where id=7; -update noar tt set b1='78XD267G1' where id=7; -update noar ti set b1='78XD267G1' where id=7; -update noar tt set v0='1ZN70DJC6' where id=7; -update noar ti set v0='1ZN70DJC6' where id=7; -update noar tt set b2='DP851L3AKBXNIVAF' where id=7; -update noar ti set b2='DP851L3AKBXNIVAF' where id=7; -update noar tt set v0='MESI2ZCXKXYYQXCDZN2L1C0KRD' where id=8; -update noar ti set v0='MESI2ZCXKXYYQXCDZN2L1C0KRD' where id=8; -update noar tt set b0='D6N' where id=8; -update noar ti set b0='D6N' where id=8; -update noar tt set v0='88WP5W36R47SP0QAYZDN11' where id=8; -update noar ti set v0='88WP5W36R47SP0QAYZDN11' where id=8; -update noar tt set b1='ZYGGU58Q3X0N261OA98ALJ4' where id=8; -update noar ti set b1='ZYGGU58Q3X0N261OA98ALJ4' where id=8; -update noar tt set v0='L082YDCPXZXWI' where id=8; -update noar ti set v0='L082YDCPXZXWI' where id=8; -update noar tt set b2='EENU1' where id=8; -update noar ti set b2='EENU1' where id=8; -update noar tt set v0='S5G3N7S9LN' where id=9; -update noar ti set v0='S5G3N7S9LN' where id=9; -update noar tt set b0='X988JCHG8CCJQP87E0QQOCB' where id=9; -update noar ti set b0='X988JCHG8CCJQP87E0QQOCB' where id=9; -update noar tt set v0='B' where id=9; -update noar ti set v0='B' where id=9; -update noar tt set b1='0111U1F9LIVZPDB5QBM6' where id=9; -update noar ti set b1='0111U1F9LIVZPDB5QBM6' where id=9; -update noar tt set v0='4' where id=9; -update noar ti set v0='4' where id=9; -update noar tt set b2='JIUCXC4UYQC0G2TY99LSPE2Y' where id=9; -update noar ti set b2='JIUCXC4UYQC0G2TY99LSPE2Y' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - f0 int not null, - v0 varchar(256) not null, - b0 blob not null, - b1 longblob not null, - b2 longblob not null -) engine=tokudb; -insert into tt values (1,0,'','','',''); -insert into tt values (2,0,'','','',''); -insert into tt values (3,0,'','','',''); -insert into tt values (4,0,'','','',''); -insert into tt values (5,0,'','','',''); -insert into tt values (6,0,'','','',''); -insert into tt values (7,0,'','','',''); -insert into tt values (8,0,'','','',''); -insert into tt values (9,0,'','','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='WZSWH6Y00NEN6LW041Y2X' where id=1; -update noar ti set v0='WZSWH6Y00NEN6LW041Y2X' where id=1; -update noar tt set b0='6Z34AM8J5KEB9L6ZG9BTY421' where id=1; -update noar ti set b0='6Z34AM8J5KEB9L6ZG9BTY421' where id=1; -update noar tt set v0='CJYE3HDWFIT105T5G755UH4BJF5F' where id=1; -update noar ti set v0='CJYE3HDWFIT105T5G755UH4BJF5F' where id=1; -update noar tt set b1='OAJMFRLU76X9' where id=1; -update noar ti set b1='OAJMFRLU76X9' where id=1; -update noar tt set v0='1MNBR3R5PO' where id=1; -update noar ti set v0='1MNBR3R5PO' where id=1; -update noar tt set b2='UAJ0SK7Q2' where id=1; -update noar ti set b2='UAJ0SK7Q2' where id=1; -update noar tt set v0='BHYUFIWO' where id=2; -update noar ti set v0='BHYUFIWO' where id=2; -update noar tt set b0='WDARKHG2KHYJ8SNPGW4CP5MQ6U' where id=2; -update noar ti set b0='WDARKHG2KHYJ8SNPGW4CP5MQ6U' where id=2; -update noar tt set v0='OPGVKNTX6C09DTKID835RMKNMOC' where id=2; -update noar ti set v0='OPGVKNTX6C09DTKID835RMKNMOC' where id=2; -update noar tt set b1='O9QYKCBWEX9I7M9YFMT79L0ZK9DBQ9K' where id=2; -update noar ti set b1='O9QYKCBWEX9I7M9YFMT79L0ZK9DBQ9K' where id=2; -update noar tt set v0='KOMB6YDSB9NN25J0AACL0ZXPAMWUS' where id=2; -update noar ti set v0='KOMB6YDSB9NN25J0AACL0ZXPAMWUS' where id=2; -update noar tt set b2='K8O8Z21YGQ36EGFN3N9ZLMD37CNR' where id=2; -update noar ti set b2='K8O8Z21YGQ36EGFN3N9ZLMD37CNR' where id=2; -update noar tt set v0='4V' where id=3; -update noar ti set v0='4V' where id=3; -update noar tt set b0='QGTAV0H4GYZ5MYRK' where id=3; -update noar ti set b0='QGTAV0H4GYZ5MYRK' where id=3; -update noar tt set v0='NTIH0EZO4UEGW7X' where id=3; -update noar ti set v0='NTIH0EZO4UEGW7X' where id=3; -update noar tt set b1='6' where id=3; -update noar ti set b1='6' where id=3; -update noar tt set v0='56FU430NGWJRUJ98FOV3RJO' where id=3; -update noar ti set v0='56FU430NGWJRUJ98FOV3RJO' where id=3; -update noar tt set b2='CXQ2G9K' where id=3; -update noar ti set b2='CXQ2G9K' where id=3; -update noar tt set v0='VOUUQ' where id=4; -update noar ti set v0='VOUUQ' where id=4; -update noar tt set b0='WXY8ZT0BCLM6R6W' where id=4; -update noar ti set b0='WXY8ZT0BCLM6R6W' where id=4; -update noar tt set v0='U0OCHRKJ1HJHD' where id=4; -update noar ti set v0='U0OCHRKJ1HJHD' where id=4; -update noar tt set b1='B6PXT' where id=4; -update noar ti set b1='B6PXT' where id=4; -update noar tt set v0='52F3' where id=4; -update noar ti set v0='52F3' where id=4; -update noar tt set b2='YLR1YSS8E' where id=4; -update noar ti set b2='YLR1YSS8E' where id=4; -update noar tt set v0='7OOCKIMW0WV7GOZ115YQ' where id=5; -update noar ti set v0='7OOCKIMW0WV7GOZ115YQ' where id=5; -update noar tt set b0='7OU06252VWH6UEVZICURW' where id=5; -update noar ti set b0='7OU06252VWH6UEVZICURW' where id=5; -update noar tt set v0='T1EGP3NK0IDPR272KG5CO3GNRMTNLXHL' where id=5; -update noar ti set v0='T1EGP3NK0IDPR272KG5CO3GNRMTNLXHL' where id=5; -update noar tt set b1='H8W88NALHVHLLHPRIB3RY4VVME' where id=5; -update noar ti set b1='H8W88NALHVHLLHPRIB3RY4VVME' where id=5; -update noar tt set v0='F5GCOHL7KHQ4S' where id=5; -update noar ti set v0='F5GCOHL7KHQ4S' where id=5; -update noar tt set b2='RW7B6C6P' where id=5; -update noar ti set b2='RW7B6C6P' where id=5; -update noar tt set v0='2WQJM2GDHN9Q3UWBPEAIP78WB39O' where id=6; -update noar ti set v0='2WQJM2GDHN9Q3UWBPEAIP78WB39O' where id=6; -update noar tt set b0='87OJCS' where id=6; -update noar ti set b0='87OJCS' where id=6; -update noar tt set v0='472AN273NG5Q' where id=6; -update noar ti set v0='472AN273NG5Q' where id=6; -update noar tt set b1='HNT294IXJ8N4EJYHQKO9YYE255' where id=6; -update noar ti set b1='HNT294IXJ8N4EJYHQKO9YYE255' where id=6; -update noar tt set v0='H0QD5UIMN6UCPXOOXDTG8W4W3P9HBCM' where id=6; -update noar ti set v0='H0QD5UIMN6UCPXOOXDTG8W4W3P9HBCM' where id=6; -update noar tt set b2='F0R9PBV0LPL7N9' where id=6; -update noar ti set b2='F0R9PBV0LPL7N9' where id=6; -update noar tt set v0='XIVVI6VRIFLQ6IMMI2Z63T9XK23' where id=7; -update noar ti set v0='XIVVI6VRIFLQ6IMMI2Z63T9XK23' where id=7; -update noar tt set b0='WRFHS6Q8UI876' where id=7; -update noar ti set b0='WRFHS6Q8UI876' where id=7; -update noar tt set v0='888748F25DODKPN6GWTK2CV' where id=7; -update noar ti set v0='888748F25DODKPN6GWTK2CV' where id=7; -update noar tt set b1='VKGMSYXPVF6ZDHNB60W9N3H' where id=7; -update noar ti set b1='VKGMSYXPVF6ZDHNB60W9N3H' where id=7; -update noar tt set v0='GX74AFF1DT6RN05U6B09Z25EEBQLHVNE' where id=7; -update noar ti set v0='GX74AFF1DT6RN05U6B09Z25EEBQLHVNE' where id=7; -update noar tt set b2='KX3CHWY' where id=7; -update noar ti set b2='KX3CHWY' where id=7; -update noar tt set v0='W26GMIS4TJ8SZ0NTB0' where id=8; -update noar ti set v0='W26GMIS4TJ8SZ0NTB0' where id=8; -update noar tt set b0='PE4M1VGOJHB827SC4OVO6PHOIIS6P' where id=8; -update noar ti set b0='PE4M1VGOJHB827SC4OVO6PHOIIS6P' where id=8; -update noar tt set v0='J2M1J648DI7SEYI' where id=8; -update noar ti set v0='J2M1J648DI7SEYI' where id=8; -update noar tt set b1='OL0DGZV9FUUUMRMFR0IC3T' where id=8; -update noar ti set b1='OL0DGZV9FUUUMRMFR0IC3T' where id=8; -update noar tt set v0='ART112HVZFQJ4WHZQ8O4E58CRJ2HT3CR' where id=8; -update noar ti set v0='ART112HVZFQJ4WHZQ8O4E58CRJ2HT3CR' where id=8; -update noar tt set b2='PMGAH6PHG49M7E17D5VG' where id=8; -update noar ti set b2='PMGAH6PHG49M7E17D5VG' where id=8; -update noar tt set v0='KZCETM9WZ0BRXYLZE0DVJ' where id=9; -update noar ti set v0='KZCETM9WZ0BRXYLZE0DVJ' where id=9; -update noar tt set b0='FLCCW8KG3E52QZ9QEMY1RS9' where id=9; -update noar ti set b0='FLCCW8KG3E52QZ9QEMY1RS9' where id=9; -update noar tt set v0='4SGDM' where id=9; -update noar ti set v0='4SGDM' where id=9; -update noar tt set b1='FZ0EYPWU4MCQXIBM6EXH5' where id=9; -update noar ti set b1='FZ0EYPWU4MCQXIBM6EXH5' where id=9; -update noar tt set v0='JJC0E3MZZM550RW7' where id=9; -update noar ti set v0='JJC0E3MZZM550RW7' where id=9; -update noar tt set b2='YJIWRO3B4K1' where id=9; -update noar ti set b2='YJIWRO3B4K1' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - f0 int null, - v0 varchar(32) null, - b0 mediumblob null, - b1 tinyblob null, - b2 tinyblob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='87OKZU5TLETJ9T' where id=1; -update noar ti set v0='87OKZU5TLETJ9T' where id=1; -update noar tt set b0='JQ3N4CVUKEV191GYDB36' where id=1; -update noar ti set b0='JQ3N4CVUKEV191GYDB36' where id=1; -update noar tt set v0='6H2VA1BO0JDX6D191H' where id=1; -update noar ti set v0='6H2VA1BO0JDX6D191H' where id=1; -update noar tt set b1='Q2O7HQXK5T29DUJUMAXI2DK9Y' where id=1; -update noar ti set b1='Q2O7HQXK5T29DUJUMAXI2DK9Y' where id=1; -update noar tt set v0='P2H5DRX87YA0Z6RE7J45LNOAG4' where id=1; -update noar ti set v0='P2H5DRX87YA0Z6RE7J45LNOAG4' where id=1; -update noar tt set b2='ENZPNC6850Q' where id=1; -update noar ti set b2='ENZPNC6850Q' where id=1; -update noar tt set v0='BSURJH' where id=2; -update noar ti set v0='BSURJH' where id=2; -update noar tt set b0='1GPTGGJZ9DVDZ' where id=2; -update noar ti set b0='1GPTGGJZ9DVDZ' where id=2; -update noar tt set v0='X7590G2SM4C5I9ED6ZU21K' where id=2; -update noar ti set v0='X7590G2SM4C5I9ED6ZU21K' where id=2; -update noar tt set b1='VJ50XM9WA2UJ' where id=2; -update noar ti set b1='VJ50XM9WA2UJ' where id=2; -update noar tt set v0='1LC' where id=2; -update noar ti set v0='1LC' where id=2; -update noar tt set b2='7CWQ1OOI3JNDILNDZ0DS' where id=2; -update noar ti set b2='7CWQ1OOI3JNDILNDZ0DS' where id=2; -update noar tt set v0='JWHWY6A036' where id=3; -update noar ti set v0='JWHWY6A036' where id=3; -update noar tt set b0='V0KAVOMO1LF74M1GMHHWF49B8X698I' where id=3; -update noar ti set b0='V0KAVOMO1LF74M1GMHHWF49B8X698I' where id=3; -update noar tt set v0='L17TX1AB6SHJ7M8HFZSJAFLFT4BE94Q' where id=3; -update noar ti set v0='L17TX1AB6SHJ7M8HFZSJAFLFT4BE94Q' where id=3; -update noar tt set b1='BJIT5VAWNMBSXKLZR4L' where id=3; -update noar ti set b1='BJIT5VAWNMBSXKLZR4L' where id=3; -update noar tt set v0='CI2T0ELF18IQMKK3SSG3998CF08VHY' where id=3; -update noar ti set v0='CI2T0ELF18IQMKK3SSG3998CF08VHY' where id=3; -update noar tt set b2='CNGJ9SOUI919F1F9RVPMORH7KFQI' where id=3; -update noar ti set b2='CNGJ9SOUI919F1F9RVPMORH7KFQI' where id=3; -update noar tt set v0='ZCQVS5L34ZTA1O7' where id=4; -update noar ti set v0='ZCQVS5L34ZTA1O7' where id=4; -update noar tt set b0='DUJ5T13XWFYQPH' where id=4; -update noar ti set b0='DUJ5T13XWFYQPH' where id=4; -update noar tt set v0='P0TI13' where id=4; -update noar ti set v0='P0TI13' where id=4; -update noar tt set b1='EW8VT5JNIA28TOFGL7WF0M' where id=4; -update noar ti set b1='EW8VT5JNIA28TOFGL7WF0M' where id=4; -update noar tt set v0='GRDLZOYORX' where id=4; -update noar ti set v0='GRDLZOYORX' where id=4; -update noar tt set b2='H777G5JWFCWAD7CT' where id=4; -update noar ti set b2='H777G5JWFCWAD7CT' where id=4; -update noar tt set v0='AOZLW58C3TA5WIJC' where id=5; -update noar ti set v0='AOZLW58C3TA5WIJC' where id=5; -update noar tt set b0='H9K1BEKCFP81GKZU7IFLT01HUDMEM' where id=5; -update noar ti set b0='H9K1BEKCFP81GKZU7IFLT01HUDMEM' where id=5; -update noar tt set v0='LEJ2LA26IS7CIER8' where id=5; -update noar ti set v0='LEJ2LA26IS7CIER8' where id=5; -update noar tt set b1='KR2P94MCZWOOHA7PDJC5AVTEC7' where id=5; -update noar ti set b1='KR2P94MCZWOOHA7PDJC5AVTEC7' where id=5; -update noar tt set v0='HAY0ECTW0P4X4W8NEM6WQRBVEERES41' where id=5; -update noar ti set v0='HAY0ECTW0P4X4W8NEM6WQRBVEERES41' where id=5; -update noar tt set b2='AGKM4732V' where id=5; -update noar ti set b2='AGKM4732V' where id=5; -update noar tt set v0='U0O' where id=6; -update noar ti set v0='U0O' where id=6; -update noar tt set b0='WAL3O8CHEENU20HYW9D9J4H8J8' where id=6; -update noar ti set b0='WAL3O8CHEENU20HYW9D9J4H8J8' where id=6; -update noar tt set v0='OQQKKH6C5GYZSMLX55WCSE4819' where id=6; -update noar ti set v0='OQQKKH6C5GYZSMLX55WCSE4819' where id=6; -update noar tt set b1='SUOM5TXOSVKS' where id=6; -update noar ti set b1='SUOM5TXOSVKS' where id=6; -update noar tt set v0='BA1P531' where id=6; -update noar ti set v0='BA1P531' where id=6; -update noar tt set b2='I5KHIU' where id=6; -update noar ti set b2='I5KHIU' where id=6; -update noar tt set v0='H3H77I10D7KRFLLSO' where id=7; -update noar ti set v0='H3H77I10D7KRFLLSO' where id=7; -update noar tt set b0='VXZP4KOH103TP4Z51FMW3M5FMWR7' where id=7; -update noar ti set b0='VXZP4KOH103TP4Z51FMW3M5FMWR7' where id=7; -update noar tt set v0='D4RS0KLDZ' where id=7; -update noar ti set v0='D4RS0KLDZ' where id=7; -update noar tt set b1='7651JKONMR6YVQCI2DQ0OFW' where id=7; -update noar ti set b1='7651JKONMR6YVQCI2DQ0OFW' where id=7; -update noar tt set v0='6F43F5' where id=7; -update noar ti set v0='6F43F5' where id=7; -update noar tt set b2='5' where id=7; -update noar ti set b2='5' where id=7; -update noar tt set v0='DI1D4FLY1Z8' where id=8; -update noar ti set v0='DI1D4FLY1Z8' where id=8; -update noar tt set b0='FB1YJ7E9W798NQL4TW8F74KMMH7R' where id=8; -update noar ti set b0='FB1YJ7E9W798NQL4TW8F74KMMH7R' where id=8; -update noar tt set v0='QC28GGVYIPJM4ZYJHC0W7EJKH' where id=8; -update noar ti set v0='QC28GGVYIPJM4ZYJHC0W7EJKH' where id=8; -update noar tt set b1='N3E0PL' where id=8; -update noar ti set b1='N3E0PL' where id=8; -update noar tt set v0='MOQX7FSSX3QI8' where id=8; -update noar ti set v0='MOQX7FSSX3QI8' where id=8; -update noar tt set b2='5CDFC24QUIYV2FMNGIZJD2J3H' where id=8; -update noar ti set b2='5CDFC24QUIYV2FMNGIZJD2J3H' where id=8; -update noar tt set v0='WPSCP04B3GBJB' where id=9; -update noar ti set v0='WPSCP04B3GBJB' where id=9; -update noar tt set b0='Q1J' where id=9; -update noar ti set b0='Q1J' where id=9; -update noar tt set v0='3JFAM9DDGY90ICTOPP645I1AI1N' where id=9; -update noar ti set v0='3JFAM9DDGY90ICTOPP645I1AI1N' where id=9; -update noar tt set b1='OJTTYWDTQE079C790LB6ZF3NAIOLHF6O' where id=9; -update noar ti set b1='OJTTYWDTQE079C790LB6ZF3NAIOLHF6O' where id=9; -update noar tt set v0='HG0R66VTQS0QK8P49YQ' where id=9; -update noar ti set v0='HG0R66VTQS0QK8P49YQ' where id=9; -update noar tt set b2='39PANN16' where id=9; -update noar ti set b2='39PANN16' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - f0 int null, - v0 varchar(256) null, - b0 mediumblob null, - b1 tinyblob null, - b2 tinyblob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='1SC4OSLOMRIC' where id=1; -update noar ti set v0='1SC4OSLOMRIC' where id=1; -update noar tt set b0='W4IZAY3GJFUTN0PKPKA' where id=1; -update noar ti set b0='W4IZAY3GJFUTN0PKPKA' where id=1; -update noar tt set v0='3J82CFDHJNPM6' where id=1; -update noar ti set v0='3J82CFDHJNPM6' where id=1; -update noar tt set b1='05JNHG0MK6QV' where id=1; -update noar ti set b1='05JNHG0MK6QV' where id=1; -update noar tt set v0='Z1RIZD' where id=1; -update noar ti set v0='Z1RIZD' where id=1; -update noar tt set b2='AMFDBY6BREDVYGVO' where id=1; -update noar ti set b2='AMFDBY6BREDVYGVO' where id=1; -update noar tt set v0='WH' where id=2; -update noar ti set v0='WH' where id=2; -update noar tt set b0='RGCYH72AXAI5VYD6F9LDDU' where id=2; -update noar ti set b0='RGCYH72AXAI5VYD6F9LDDU' where id=2; -update noar tt set v0='HW7NN44BG' where id=2; -update noar ti set v0='HW7NN44BG' where id=2; -update noar tt set b1='ML' where id=2; -update noar ti set b1='ML' where id=2; -update noar tt set v0='KRBSJ8ULZ2FE68Q2GD06K' where id=2; -update noar ti set v0='KRBSJ8ULZ2FE68Q2GD06K' where id=2; -update noar tt set b2='T47' where id=2; -update noar ti set b2='T47' where id=2; -update noar tt set v0='O8PDWBEIIMC3RJK8JX6KSM536' where id=3; -update noar ti set v0='O8PDWBEIIMC3RJK8JX6KSM536' where id=3; -update noar tt set b0='6M0H1FUWM05MX01IF' where id=3; -update noar ti set b0='6M0H1FUWM05MX01IF' where id=3; -update noar tt set v0='86KYXXKKNNEPZB' where id=3; -update noar ti set v0='86KYXXKKNNEPZB' where id=3; -update noar tt set b1='OP5MZRMIEH' where id=3; -update noar ti set b1='OP5MZRMIEH' where id=3; -update noar tt set v0='ZH129JAQNONQF8D9AYTZZNZ6V9BLR' where id=3; -update noar ti set v0='ZH129JAQNONQF8D9AYTZZNZ6V9BLR' where id=3; -update noar tt set b2='X7NC09C2W38OZ' where id=3; -update noar ti set b2='X7NC09C2W38OZ' where id=3; -update noar tt set v0='0LIVJXNT9RXHPU909ETBT75G' where id=4; -update noar ti set v0='0LIVJXNT9RXHPU909ETBT75G' where id=4; -update noar tt set b0='PO89BPI4R0LFEQCGYJ1M8JSYN3N' where id=4; -update noar ti set b0='PO89BPI4R0LFEQCGYJ1M8JSYN3N' where id=4; -update noar tt set v0='L9LLZVTAYZTFKCI452TY' where id=4; -update noar ti set v0='L9LLZVTAYZTFKCI452TY' where id=4; -update noar tt set b1='35' where id=4; -update noar ti set b1='35' where id=4; -update noar tt set v0='Y4PUSRZXTGVSOXPCS7OHOP0R0JL51Z' where id=4; -update noar ti set v0='Y4PUSRZXTGVSOXPCS7OHOP0R0JL51Z' where id=4; -update noar tt set b2='94JHPDLD3STCMOROLB' where id=4; -update noar ti set b2='94JHPDLD3STCMOROLB' where id=4; -update noar tt set v0='CKT1' where id=5; -update noar ti set v0='CKT1' where id=5; -update noar tt set b0='11D9FTIXH7V' where id=5; -update noar ti set b0='11D9FTIXH7V' where id=5; -update noar tt set v0='VO8UZ54U0TSUUD763IMWC9UGT' where id=5; -update noar ti set v0='VO8UZ54U0TSUUD763IMWC9UGT' where id=5; -update noar tt set b1='7P86AOIY7MZJ9JX7' where id=5; -update noar ti set b1='7P86AOIY7MZJ9JX7' where id=5; -update noar tt set v0='0476SFW7S92U3QH8DX9' where id=5; -update noar ti set v0='0476SFW7S92U3QH8DX9' where id=5; -update noar tt set b2='D3BFGXLKSZ55TZ53' where id=5; -update noar ti set b2='D3BFGXLKSZ55TZ53' where id=5; -update noar tt set v0='C7BMNNG2BWPUKRTKHWKY8189D' where id=6; -update noar ti set v0='C7BMNNG2BWPUKRTKHWKY8189D' where id=6; -update noar tt set b0='FR2ZMC5' where id=6; -update noar ti set b0='FR2ZMC5' where id=6; -update noar tt set v0='0EGU' where id=6; -update noar ti set v0='0EGU' where id=6; -update noar tt set b1='5NRSN8T801KDK1CCBPWK32FUZCI' where id=6; -update noar ti set b1='5NRSN8T801KDK1CCBPWK32FUZCI' where id=6; -update noar tt set v0='HAZ8RJS9G1NYB96MYS2ND8' where id=6; -update noar ti set v0='HAZ8RJS9G1NYB96MYS2ND8' where id=6; -update noar tt set b2='67IRM5RI2EL34IK9IYNEDL7CJAYR88J' where id=6; -update noar ti set b2='67IRM5RI2EL34IK9IYNEDL7CJAYR88J' where id=6; -update noar tt set v0='ZQL10LCTJP1BJCQO53YX5RQF0' where id=7; -update noar ti set v0='ZQL10LCTJP1BJCQO53YX5RQF0' where id=7; -update noar tt set b0='RG5SM' where id=7; -update noar ti set b0='RG5SM' where id=7; -update noar tt set v0='IMOZA0B1Y' where id=7; -update noar ti set v0='IMOZA0B1Y' where id=7; -update noar tt set b1='1WNU0S5ETE9ABI3NWWPI1IP7V4AZYP9' where id=7; -update noar ti set b1='1WNU0S5ETE9ABI3NWWPI1IP7V4AZYP9' where id=7; -update noar tt set v0='DCPGQQEIYPHZ37X0F' where id=7; -update noar ti set v0='DCPGQQEIYPHZ37X0F' where id=7; -update noar tt set b2='6TQDJJZ' where id=7; -update noar ti set b2='6TQDJJZ' where id=7; -update noar tt set v0='IKHIFJ7SJ42' where id=8; -update noar ti set v0='IKHIFJ7SJ42' where id=8; -update noar tt set b0='LS9196MG8SXLJDVFXFBI' where id=8; -update noar ti set b0='LS9196MG8SXLJDVFXFBI' where id=8; -update noar tt set v0='6NDVGYGMQKKKSINXS' where id=8; -update noar ti set v0='6NDVGYGMQKKKSINXS' where id=8; -update noar tt set b1='LWGCQZTBWFCTTI2XMA' where id=8; -update noar ti set b1='LWGCQZTBWFCTTI2XMA' where id=8; -update noar tt set v0='GMMJATMW3LMD56CFV7YA4KJXL' where id=8; -update noar ti set v0='GMMJATMW3LMD56CFV7YA4KJXL' where id=8; -update noar tt set b2='PI40S3HHIIPC0UE5DENQ8H' where id=8; -update noar ti set b2='PI40S3HHIIPC0UE5DENQ8H' where id=8; -update noar tt set v0='B8G5H0RSC4NZGG1DP' where id=9; -update noar ti set v0='B8G5H0RSC4NZGG1DP' where id=9; -update noar tt set b0='KE2C6OU262H5J2EPY9VWW2K2V3D4' where id=9; -update noar ti set b0='KE2C6OU262H5J2EPY9VWW2K2V3D4' where id=9; -update noar tt set v0='3H4X' where id=9; -update noar ti set v0='3H4X' where id=9; -update noar tt set b1='RXTM' where id=9; -update noar ti set b1='RXTM' where id=9; -update noar tt set v0='TGMHBYX' where id=9; -update noar ti set v0='TGMHBYX' where id=9; -update noar tt set b2='WHHM9MCZ5CYDTOY' where id=9; -update noar ti set b2='WHHM9MCZ5CYDTOY' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - f0 int not null, - v0 varchar(32) not null, - b0 mediumblob not null, - b1 tinyblob not null, - b2 tinyblob not null -) engine=tokudb; -insert into tt values (1,0,'','','',''); -insert into tt values (2,0,'','','',''); -insert into tt values (3,0,'','','',''); -insert into tt values (4,0,'','','',''); -insert into tt values (5,0,'','','',''); -insert into tt values (6,0,'','','',''); -insert into tt values (7,0,'','','',''); -insert into tt values (8,0,'','','',''); -insert into tt values (9,0,'','','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='HUO79V9G6XHM5008O8JBDWJ6' where id=1; -update noar ti set v0='HUO79V9G6XHM5008O8JBDWJ6' where id=1; -update noar tt set b0='1N844DQVF5GB' where id=1; -update noar ti set b0='1N844DQVF5GB' where id=1; -update noar tt set v0='J877HK48ASEOQHGXKHQPJDDHM08YJ' where id=1; -update noar ti set v0='J877HK48ASEOQHGXKHQPJDDHM08YJ' where id=1; -update noar tt set b1='VPI5TB059X1IEFOQISDA09KEX7Q' where id=1; -update noar ti set b1='VPI5TB059X1IEFOQISDA09KEX7Q' where id=1; -update noar tt set v0='PWUG8S' where id=1; -update noar ti set v0='PWUG8S' where id=1; -update noar tt set b2='ER0E0OV515GXRPIRJN42' where id=1; -update noar ti set b2='ER0E0OV515GXRPIRJN42' where id=1; -update noar tt set v0='UR5KI248ZZTD84X' where id=2; -update noar ti set v0='UR5KI248ZZTD84X' where id=2; -update noar tt set b0='H1MYN52M96HWSCPAE3XWQCBVXX1PK70E' where id=2; -update noar ti set b0='H1MYN52M96HWSCPAE3XWQCBVXX1PK70E' where id=2; -update noar tt set v0='CSNXT5R5BI' where id=2; -update noar ti set v0='CSNXT5R5BI' where id=2; -update noar tt set b1='LJ1U4GXCRTOKI1DZ73MUKEF0DVAR' where id=2; -update noar ti set b1='LJ1U4GXCRTOKI1DZ73MUKEF0DVAR' where id=2; -update noar tt set v0='QBQ2FJKMPKTDTYDQ9BFUZBVOFGYTG4' where id=2; -update noar ti set v0='QBQ2FJKMPKTDTYDQ9BFUZBVOFGYTG4' where id=2; -update noar tt set b2='VE' where id=2; -update noar ti set b2='VE' where id=2; -update noar tt set v0='S1TUW7B4RAR3QRUOLRTR3XX273' where id=3; -update noar ti set v0='S1TUW7B4RAR3QRUOLRTR3XX273' where id=3; -update noar tt set b0='G9AHPIVCCKHMYY7IW' where id=3; -update noar ti set b0='G9AHPIVCCKHMYY7IW' where id=3; -update noar tt set v0='OHH092Y76OOVJ4R' where id=3; -update noar ti set v0='OHH092Y76OOVJ4R' where id=3; -update noar tt set b1='0' where id=3; -update noar ti set b1='0' where id=3; -update noar tt set v0='X87UNEMY6HHSLEQ8L' where id=3; -update noar ti set v0='X87UNEMY6HHSLEQ8L' where id=3; -update noar tt set b2='M9FYLGXQG1TC2IR8ID333J75RWV8' where id=3; -update noar ti set b2='M9FYLGXQG1TC2IR8ID333J75RWV8' where id=3; -update noar tt set v0='8XV4GNN8748FOINVN9' where id=4; -update noar ti set v0='8XV4GNN8748FOINVN9' where id=4; -update noar tt set b0='6WGZV0' where id=4; -update noar ti set b0='6WGZV0' where id=4; -update noar tt set v0='UFVBMBYZ6Y8ARWVED1PZ4L4A92GE4Q' where id=4; -update noar ti set v0='UFVBMBYZ6Y8ARWVED1PZ4L4A92GE4Q' where id=4; -update noar tt set b1='LT33PK4' where id=4; -update noar ti set b1='LT33PK4' where id=4; -update noar tt set v0='JVG17O' where id=4; -update noar ti set v0='JVG17O' where id=4; -update noar tt set b2='SHA4ZUW1PU5C82K57W85Z5FL15UPVG' where id=4; -update noar ti set b2='SHA4ZUW1PU5C82K57W85Z5FL15UPVG' where id=4; -update noar tt set v0='W21X0J71JT' where id=5; -update noar ti set v0='W21X0J71JT' where id=5; -update noar tt set b0='EHQ2K8SM' where id=5; -update noar ti set b0='EHQ2K8SM' where id=5; -update noar tt set v0='J5KTHW9IMWW8UWGIKT68I2049XW0P41T' where id=5; -update noar ti set v0='J5KTHW9IMWW8UWGIKT68I2049XW0P41T' where id=5; -update noar tt set b1='WPJPELW3D8VL3YY0UFE' where id=5; -update noar ti set b1='WPJPELW3D8VL3YY0UFE' where id=5; -update noar tt set v0='B6VQ14U40CG9ZRI94TM94' where id=5; -update noar ti set v0='B6VQ14U40CG9ZRI94TM94' where id=5; -update noar tt set b2='ZAGVLBV4N89JTI' where id=5; -update noar ti set b2='ZAGVLBV4N89JTI' where id=5; -update noar tt set v0='XY' where id=6; -update noar ti set v0='XY' where id=6; -update noar tt set b0='U' where id=6; -update noar ti set b0='U' where id=6; -update noar tt set v0='CMN03HKL3KEYK7WOH0RLVEBZX0CMTPPL' where id=6; -update noar ti set v0='CMN03HKL3KEYK7WOH0RLVEBZX0CMTPPL' where id=6; -update noar tt set b1='5I4HRRDQ6CO68KS8XDL47GO1YG' where id=6; -update noar ti set b1='5I4HRRDQ6CO68KS8XDL47GO1YG' where id=6; -update noar tt set v0='IVXNJYTDPC8K9KFGN2BYBS76R7OZ58PA' where id=6; -update noar ti set v0='IVXNJYTDPC8K9KFGN2BYBS76R7OZ58PA' where id=6; -update noar tt set b2='VSQHTRZ9QV6SM02BZ1HE' where id=6; -update noar ti set b2='VSQHTRZ9QV6SM02BZ1HE' where id=6; -update noar tt set v0='6URRVG' where id=7; -update noar ti set v0='6URRVG' where id=7; -update noar tt set b0='IBOX55CAOW3' where id=7; -update noar ti set b0='IBOX55CAOW3' where id=7; -update noar tt set v0='P02GH' where id=7; -update noar ti set v0='P02GH' where id=7; -update noar tt set b1='2ANUWZINQHN7FRGGLGNA' where id=7; -update noar ti set b1='2ANUWZINQHN7FRGGLGNA' where id=7; -update noar tt set v0='3MUKWM36X2UWDWN' where id=7; -update noar ti set v0='3MUKWM36X2UWDWN' where id=7; -update noar tt set b2='E7VF5JWD009BD4MTC6YUQBMMQHKH3YDQ' where id=7; -update noar ti set b2='E7VF5JWD009BD4MTC6YUQBMMQHKH3YDQ' where id=7; -update noar tt set v0='K9Z7XG10UT02FG4WSF8LJ06Z4OR1H8XV' where id=8; -update noar ti set v0='K9Z7XG10UT02FG4WSF8LJ06Z4OR1H8XV' where id=8; -update noar tt set b0='QME6SVVQ56J80OH2AY45T6F01KSV6X' where id=8; -update noar ti set b0='QME6SVVQ56J80OH2AY45T6F01KSV6X' where id=8; -update noar tt set v0='9IH2RI42ORV0ZNTMA6AJAEQZ98JHVPU' where id=8; -update noar ti set v0='9IH2RI42ORV0ZNTMA6AJAEQZ98JHVPU' where id=8; -update noar tt set b1='7GDL2UJLKHKJISW5' where id=8; -update noar ti set b1='7GDL2UJLKHKJISW5' where id=8; -update noar tt set v0='HAZA9MY1Y9HW1EIE' where id=8; -update noar ti set v0='HAZA9MY1Y9HW1EIE' where id=8; -update noar tt set b2='29TAXOAZVHD3OMKETO' where id=8; -update noar ti set b2='29TAXOAZVHD3OMKETO' where id=8; -update noar tt set v0='PAN' where id=9; -update noar ti set v0='PAN' where id=9; -update noar tt set b0='KJAPU6C4H3YW03PSPV91K' where id=9; -update noar ti set b0='KJAPU6C4H3YW03PSPV91K' where id=9; -update noar tt set v0='47K63WLB7UJUKJ93FA' where id=9; -update noar ti set v0='47K63WLB7UJUKJ93FA' where id=9; -update noar tt set b1='AF2X8BOMV4VERYWXA7JOIFZI3' where id=9; -update noar ti set b1='AF2X8BOMV4VERYWXA7JOIFZI3' where id=9; -update noar tt set v0='4H' where id=9; -update noar ti set v0='4H' where id=9; -update noar tt set b2='A2DLGH05Q3Y6XTL0O4271OBF' where id=9; -update noar ti set b2='A2DLGH05Q3Y6XTL0O4271OBF' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - f0 int not null, - v0 varchar(256) not null, - b0 mediumblob not null, - b1 tinyblob not null, - b2 tinyblob not null -) engine=tokudb; -insert into tt values (1,0,'','','',''); -insert into tt values (2,0,'','','',''); -insert into tt values (3,0,'','','',''); -insert into tt values (4,0,'','','',''); -insert into tt values (5,0,'','','',''); -insert into tt values (6,0,'','','',''); -insert into tt values (7,0,'','','',''); -insert into tt values (8,0,'','','',''); -insert into tt values (9,0,'','','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='ITZV7T' where id=1; -update noar ti set v0='ITZV7T' where id=1; -update noar tt set b0='ON850QZ46IRH51HQJFA6PGIIXPOC8RIM' where id=1; -update noar ti set b0='ON850QZ46IRH51HQJFA6PGIIXPOC8RIM' where id=1; -update noar tt set v0='4PLKPTNKUSL0M0AF7' where id=1; -update noar ti set v0='4PLKPTNKUSL0M0AF7' where id=1; -update noar tt set b1='XGX7OX65W6JUR42TWG0' where id=1; -update noar ti set b1='XGX7OX65W6JUR42TWG0' where id=1; -update noar tt set v0='8IYJJGBDE2TNF7KW' where id=1; -update noar ti set v0='8IYJJGBDE2TNF7KW' where id=1; -update noar tt set b2='5DYP4BWA' where id=1; -update noar ti set b2='5DYP4BWA' where id=1; -update noar tt set v0='EA007E1RYR0HIGH6PAII0MJOARG7' where id=2; -update noar ti set v0='EA007E1RYR0HIGH6PAII0MJOARG7' where id=2; -update noar tt set b0='ZW3V8FA6PX4LK13WRO' where id=2; -update noar ti set b0='ZW3V8FA6PX4LK13WRO' where id=2; -update noar tt set v0='1WQ2G861492YFWCOWPRL7I93Y7ZH7' where id=2; -update noar ti set v0='1WQ2G861492YFWCOWPRL7I93Y7ZH7' where id=2; -update noar tt set b1='FR6DA85JDALGBQ5DBBWUSPECEEL646H' where id=2; -update noar ti set b1='FR6DA85JDALGBQ5DBBWUSPECEEL646H' where id=2; -update noar tt set v0='GM51N1IVE2D8UEWC4W93E2T3R6' where id=2; -update noar ti set v0='GM51N1IVE2D8UEWC4W93E2T3R6' where id=2; -update noar tt set b2='LKALLE4WOJ4Z9XWGN0L9IO9K' where id=2; -update noar ti set b2='LKALLE4WOJ4Z9XWGN0L9IO9K' where id=2; -update noar tt set v0='XAOIA17PZYG7I7O2' where id=3; -update noar ti set v0='XAOIA17PZYG7I7O2' where id=3; -update noar tt set b0='HEOCWGUCQYFJVUT0' where id=3; -update noar ti set b0='HEOCWGUCQYFJVUT0' where id=3; -update noar tt set v0='7A85306HEHF' where id=3; -update noar ti set v0='7A85306HEHF' where id=3; -update noar tt set b1='IOOAC94MPF58H6NR3PRP78D2' where id=3; -update noar ti set b1='IOOAC94MPF58H6NR3PRP78D2' where id=3; -update noar tt set v0='BQHTKVG0J78DABNHLCHC65B4' where id=3; -update noar ti set v0='BQHTKVG0J78DABNHLCHC65B4' where id=3; -update noar tt set b2='8YCQR3' where id=3; -update noar ti set b2='8YCQR3' where id=3; -update noar tt set v0='D9BIK' where id=4; -update noar ti set v0='D9BIK' where id=4; -update noar tt set b0='S2KYY07XA4I8' where id=4; -update noar ti set b0='S2KYY07XA4I8' where id=4; -update noar tt set v0='4M5MTGJ6YKK3T04TV4AH' where id=4; -update noar ti set v0='4M5MTGJ6YKK3T04TV4AH' where id=4; -update noar tt set b1='PDF6XMXQ0TV5T0AX3M8SDD2VMOXCFE' where id=4; -update noar ti set b1='PDF6XMXQ0TV5T0AX3M8SDD2VMOXCFE' where id=4; -update noar tt set v0='NDA6YMNSL3DLRU1BHFY8D2RFJ0X36AGX' where id=4; -update noar ti set v0='NDA6YMNSL3DLRU1BHFY8D2RFJ0X36AGX' where id=4; -update noar tt set b2='LET' where id=4; -update noar ti set b2='LET' where id=4; -update noar tt set v0='JPLAI' where id=5; -update noar ti set v0='JPLAI' where id=5; -update noar tt set b0='6JNJZFU0V42VL5563Y3FR6UBG' where id=5; -update noar ti set b0='6JNJZFU0V42VL5563Y3FR6UBG' where id=5; -update noar tt set v0='376615FHEH784C91UCM0RTC07TM4AI' where id=5; -update noar ti set v0='376615FHEH784C91UCM0RTC07TM4AI' where id=5; -update noar tt set b1='KVX1UZZKLOCXMPB3OIB' where id=5; -update noar ti set b1='KVX1UZZKLOCXMPB3OIB' where id=5; -update noar tt set v0='4HNFR2QGG6DA5IL681IVGNX' where id=5; -update noar ti set v0='4HNFR2QGG6DA5IL681IVGNX' where id=5; -update noar tt set b2='KQI6JR24387IH' where id=5; -update noar ti set b2='KQI6JR24387IH' where id=5; -update noar tt set v0='JKTC94MRJX6R' where id=6; -update noar ti set v0='JKTC94MRJX6R' where id=6; -update noar tt set b0='JGBCTL3Z139UFNWFF56PNAV06YVM7OH' where id=6; -update noar ti set b0='JGBCTL3Z139UFNWFF56PNAV06YVM7OH' where id=6; -update noar tt set v0='GH' where id=6; -update noar ti set v0='GH' where id=6; -update noar tt set b1='QR5C62BWM0QZMWMXAY4IL' where id=6; -update noar ti set b1='QR5C62BWM0QZMWMXAY4IL' where id=6; -update noar tt set v0='IWXHVO8FMLTP5SU8' where id=6; -update noar ti set v0='IWXHVO8FMLTP5SU8' where id=6; -update noar tt set b2='V96ZQR5GSVZ5K9MKECJ133OO2OH6E9' where id=6; -update noar ti set b2='V96ZQR5GSVZ5K9MKECJ133OO2OH6E9' where id=6; -update noar tt set v0='KRB1B8AE7WP7NUTEGMG2EUWI01I5V' where id=7; -update noar ti set v0='KRB1B8AE7WP7NUTEGMG2EUWI01I5V' where id=7; -update noar tt set b0='J0CFBHE1F' where id=7; -update noar ti set b0='J0CFBHE1F' where id=7; -update noar tt set v0='YPN5Y' where id=7; -update noar ti set v0='YPN5Y' where id=7; -update noar tt set b1='FHW' where id=7; -update noar ti set b1='FHW' where id=7; -update noar tt set v0='84FR7714FR78NAFQRKPBQSKODZXNS' where id=7; -update noar ti set v0='84FR7714FR78NAFQRKPBQSKODZXNS' where id=7; -update noar tt set b2='VXA7V7YZXURWDT' where id=7; -update noar ti set b2='VXA7V7YZXURWDT' where id=7; -update noar tt set v0='2Y279KGG4Y3YC3KYQDFDYQUYGHHOP5O' where id=8; -update noar ti set v0='2Y279KGG4Y3YC3KYQDFDYQUYGHHOP5O' where id=8; -update noar tt set b0='KXUMI50M49RBI35RIC' where id=8; -update noar ti set b0='KXUMI50M49RBI35RIC' where id=8; -update noar tt set v0='OYVHVNZ05NW62X4HSMED0PJ7L' where id=8; -update noar ti set v0='OYVHVNZ05NW62X4HSMED0PJ7L' where id=8; -update noar tt set b1='3IYBZCIUMGOBJ0S4GG1ZQ5I9ZGLM9I' where id=8; -update noar ti set b1='3IYBZCIUMGOBJ0S4GG1ZQ5I9ZGLM9I' where id=8; -update noar tt set v0='UOYDRBK' where id=8; -update noar ti set v0='UOYDRBK' where id=8; -update noar tt set b2='7CHZJJDZOJ0GN978Z' where id=8; -update noar ti set b2='7CHZJJDZOJ0GN978Z' where id=8; -update noar tt set v0='6Y7S9ZBMMUKY0ZILT6BR' where id=9; -update noar ti set v0='6Y7S9ZBMMUKY0ZILT6BR' where id=9; -update noar tt set b0='I9X11SW1EODQG98RHHOEXT7IIXXBXOP' where id=9; -update noar ti set b0='I9X11SW1EODQG98RHHOEXT7IIXXBXOP' where id=9; -update noar tt set v0='VA9W3B5T' where id=9; -update noar ti set v0='VA9W3B5T' where id=9; -update noar tt set b1='F6EM4P9ZTZRB4OHTDUP8OKEM' where id=9; -update noar ti set b1='F6EM4P9ZTZRB4OHTDUP8OKEM' where id=9; -update noar tt set v0='B6FE9DDY2CX51O0PU78M14H2JE' where id=9; -update noar ti set v0='B6FE9DDY2CX51O0PU78M14H2JE' where id=9; -update noar tt set b2='R80JMKEGT9LJP1YET4' where id=9; -update noar ti set b2='R80JMKEGT9LJP1YET4' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - f0 int null, - v0 varchar(32) null, - b0 mediumblob null, - b1 tinyblob null, - b2 blob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='F31RGXE0MLWRAO2FIZJ850K2PBBKK9' where id=1; -update noar ti set v0='F31RGXE0MLWRAO2FIZJ850K2PBBKK9' where id=1; -update noar tt set b0='AYB' where id=1; -update noar ti set b0='AYB' where id=1; -update noar tt set v0='UQRRD4R0SF7FTZ4K9W8JOGTWSOFO82' where id=1; -update noar ti set v0='UQRRD4R0SF7FTZ4K9W8JOGTWSOFO82' where id=1; -update noar tt set b1='66PBTAZWWP4UAZR1SMYP2ZZ4H0FYFD' where id=1; -update noar ti set b1='66PBTAZWWP4UAZR1SMYP2ZZ4H0FYFD' where id=1; -update noar tt set v0='GHLAT1APUGZGESDBK9WXF4NJQKS27' where id=1; -update noar ti set v0='GHLAT1APUGZGESDBK9WXF4NJQKS27' where id=1; -update noar tt set b2='XU2MJ8RT03C5SJ5XGC5' where id=1; -update noar ti set b2='XU2MJ8RT03C5SJ5XGC5' where id=1; -update noar tt set v0='HGWGS1TRENA1HWTHMYDHD05NY' where id=2; -update noar ti set v0='HGWGS1TRENA1HWTHMYDHD05NY' where id=2; -update noar tt set b0='1F6DMY0O53385QDOKPEMSO4W' where id=2; -update noar ti set b0='1F6DMY0O53385QDOKPEMSO4W' where id=2; -update noar tt set v0='9LZZ' where id=2; -update noar ti set v0='9LZZ' where id=2; -update noar tt set b1='6TPP760126T7' where id=2; -update noar ti set b1='6TPP760126T7' where id=2; -update noar tt set v0='NIGOG9MOPDJJTK0IPPJSV07TN' where id=2; -update noar ti set v0='NIGOG9MOPDJJTK0IPPJSV07TN' where id=2; -update noar tt set b2='YKYYTR3PBSW8OOXOTNLP27' where id=2; -update noar ti set b2='YKYYTR3PBSW8OOXOTNLP27' where id=2; -update noar tt set v0='UQ9SFQ03' where id=3; -update noar ti set v0='UQ9SFQ03' where id=3; -update noar tt set b0='Y' where id=3; -update noar ti set b0='Y' where id=3; -update noar tt set v0='B5GT' where id=3; -update noar ti set v0='B5GT' where id=3; -update noar tt set b1='6QFZAM' where id=3; -update noar ti set b1='6QFZAM' where id=3; -update noar tt set v0='0PONGRCRT0JCWJN7ER47OOL07LV9WCBA' where id=3; -update noar ti set v0='0PONGRCRT0JCWJN7ER47OOL07LV9WCBA' where id=3; -update noar tt set b2='LJFIPSOJSB40I7OZ4B3EUA8UCJ' where id=3; -update noar ti set b2='LJFIPSOJSB40I7OZ4B3EUA8UCJ' where id=3; -update noar tt set v0='6S57PV63EXYW' where id=4; -update noar ti set v0='6S57PV63EXYW' where id=4; -update noar tt set b0='15SNQWWN219H8JY' where id=4; -update noar ti set b0='15SNQWWN219H8JY' where id=4; -update noar tt set v0='JDQIOHTOYCE' where id=4; -update noar ti set v0='JDQIOHTOYCE' where id=4; -update noar tt set b1='Y' where id=4; -update noar ti set b1='Y' where id=4; -update noar tt set v0='MCKHXA73DR8N' where id=4; -update noar ti set v0='MCKHXA73DR8N' where id=4; -update noar tt set b2='EEJC' where id=4; -update noar ti set b2='EEJC' where id=4; -update noar tt set v0='26UI08CQN9JY97POUWKXW93ISQOQ' where id=5; -update noar ti set v0='26UI08CQN9JY97POUWKXW93ISQOQ' where id=5; -update noar tt set b0='FRCBLSNC' where id=5; -update noar ti set b0='FRCBLSNC' where id=5; -update noar tt set v0='A9ZPAT6' where id=5; -update noar ti set v0='A9ZPAT6' where id=5; -update noar tt set b1='XD9CGHREL' where id=5; -update noar ti set b1='XD9CGHREL' where id=5; -update noar tt set v0='UU0KFX068A4GWA88RA9214B747EY' where id=5; -update noar ti set v0='UU0KFX068A4GWA88RA9214B747EY' where id=5; -update noar tt set b2='J303Y0Y4BR8YXE' where id=5; -update noar ti set b2='J303Y0Y4BR8YXE' where id=5; -update noar tt set v0='GQ809Y4QBFP' where id=6; -update noar ti set v0='GQ809Y4QBFP' where id=6; -update noar tt set b0='VPHF8W7W7QVS' where id=6; -update noar ti set b0='VPHF8W7W7QVS' where id=6; -update noar tt set v0='00IDXVYQMVQX63L6CFB3IEYFPXEQ' where id=6; -update noar ti set v0='00IDXVYQMVQX63L6CFB3IEYFPXEQ' where id=6; -update noar tt set b1='37X4X3' where id=6; -update noar ti set b1='37X4X3' where id=6; -update noar tt set v0='XIRP8TC5L0TF52WLHJVTP5Y' where id=6; -update noar ti set v0='XIRP8TC5L0TF52WLHJVTP5Y' where id=6; -update noar tt set b2='5XXCIRA13RH5VT70PUT8Z4K2ZRS6M' where id=6; -update noar ti set b2='5XXCIRA13RH5VT70PUT8Z4K2ZRS6M' where id=6; -update noar tt set v0='745Z3D41KF8Z' where id=7; -update noar ti set v0='745Z3D41KF8Z' where id=7; -update noar tt set b0='TQTF5X03QYY' where id=7; -update noar ti set b0='TQTF5X03QYY' where id=7; -update noar tt set v0='K06L6R6' where id=7; -update noar ti set v0='K06L6R6' where id=7; -update noar tt set b1='OPC3' where id=7; -update noar ti set b1='OPC3' where id=7; -update noar tt set v0='R61JV3CPNDAL1MGY1' where id=7; -update noar ti set v0='R61JV3CPNDAL1MGY1' where id=7; -update noar tt set b2='L3GM6T2J' where id=7; -update noar ti set b2='L3GM6T2J' where id=7; -update noar tt set v0='CA6VYJIQOWPIBZ7UAS3N1J9Q' where id=8; -update noar ti set v0='CA6VYJIQOWPIBZ7UAS3N1J9Q' where id=8; -update noar tt set b0='D9CA' where id=8; -update noar ti set b0='D9CA' where id=8; -update noar tt set v0='IUAG7AUZ9TRO' where id=8; -update noar ti set v0='IUAG7AUZ9TRO' where id=8; -update noar tt set b1='WLFBZS74UBDLJFFF' where id=8; -update noar ti set b1='WLFBZS74UBDLJFFF' where id=8; -update noar tt set v0='5YLIFGQCFY6ER8YDGUARM85DU64O0D8' where id=8; -update noar ti set v0='5YLIFGQCFY6ER8YDGUARM85DU64O0D8' where id=8; -update noar tt set b2='KIUOUPS4J5E6FC5' where id=8; -update noar ti set b2='KIUOUPS4J5E6FC5' where id=8; -update noar tt set v0='7D8JAA7IWTQNQ2RR8I' where id=9; -update noar ti set v0='7D8JAA7IWTQNQ2RR8I' where id=9; -update noar tt set b0='R2M' where id=9; -update noar ti set b0='R2M' where id=9; -update noar tt set v0='QMO' where id=9; -update noar ti set v0='QMO' where id=9; -update noar tt set b1='QRG5IONJV3GI45PW' where id=9; -update noar ti set b1='QRG5IONJV3GI45PW' where id=9; -update noar tt set v0='6S907LXNKUSGHQPHFR8UHG' where id=9; -update noar ti set v0='6S907LXNKUSGHQPHFR8UHG' where id=9; -update noar tt set b2='T2EYYQR' where id=9; -update noar ti set b2='T2EYYQR' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - f0 int null, - v0 varchar(256) null, - b0 mediumblob null, - b1 tinyblob null, - b2 blob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='SY0OPAECW338K1XNKXFE' where id=1; -update noar ti set v0='SY0OPAECW338K1XNKXFE' where id=1; -update noar tt set b0='L1QASV' where id=1; -update noar ti set b0='L1QASV' where id=1; -update noar tt set v0='YUV' where id=1; -update noar ti set v0='YUV' where id=1; -update noar tt set b1='8ANLEZ1RWE6IQ16VE7BI' where id=1; -update noar ti set b1='8ANLEZ1RWE6IQ16VE7BI' where id=1; -update noar tt set v0='DRVINSKIA0FAIO481IB' where id=1; -update noar ti set v0='DRVINSKIA0FAIO481IB' where id=1; -update noar tt set b2='LPR99FNTUJ8XXU931SPARSXX9QQ' where id=1; -update noar ti set b2='LPR99FNTUJ8XXU931SPARSXX9QQ' where id=1; -update noar tt set v0='X9AY2FBI6OSTRBE' where id=2; -update noar ti set v0='X9AY2FBI6OSTRBE' where id=2; -update noar tt set b0='WK33TOH9INBWUJ696EZM6U0V' where id=2; -update noar ti set b0='WK33TOH9INBWUJ696EZM6U0V' where id=2; -update noar tt set v0='J4WPEAZBLQQWUNJYB3N2J1YUOD61ZQ67' where id=2; -update noar ti set v0='J4WPEAZBLQQWUNJYB3N2J1YUOD61ZQ67' where id=2; -update noar tt set b1='4OJGGIDH8D3NB1M038997V' where id=2; -update noar ti set b1='4OJGGIDH8D3NB1M038997V' where id=2; -update noar tt set v0='8PT4K7LKFPUNENSV2UQ0AXCLF1' where id=2; -update noar ti set v0='8PT4K7LKFPUNENSV2UQ0AXCLF1' where id=2; -update noar tt set b2='N2NLV' where id=2; -update noar ti set b2='N2NLV' where id=2; -update noar tt set v0='5GUX8M7ZB2F' where id=3; -update noar ti set v0='5GUX8M7ZB2F' where id=3; -update noar tt set b0='ZTXXIH8H' where id=3; -update noar ti set b0='ZTXXIH8H' where id=3; -update noar tt set v0='FZ3ZJ258O0J' where id=3; -update noar ti set v0='FZ3ZJ258O0J' where id=3; -update noar tt set b1='JRK8TF9OFW71MWQPNNNRB4YD0UYVGY' where id=3; -update noar ti set b1='JRK8TF9OFW71MWQPNNNRB4YD0UYVGY' where id=3; -update noar tt set v0='RUQJLT89XRUD8KDYZLE15PS6G3' where id=3; -update noar ti set v0='RUQJLT89XRUD8KDYZLE15PS6G3' where id=3; -update noar tt set b2='7ASOO6UQTNUQK9' where id=3; -update noar ti set b2='7ASOO6UQTNUQK9' where id=3; -update noar tt set v0='EP48AAT33SMTSXOO6OAG4BPVFA' where id=4; -update noar ti set v0='EP48AAT33SMTSXOO6OAG4BPVFA' where id=4; -update noar tt set b0='6S9FC8150NDF6YTJVN20QRUXRIQ1' where id=4; -update noar ti set b0='6S9FC8150NDF6YTJVN20QRUXRIQ1' where id=4; -update noar tt set v0='QE87L6EHRF4O55MEEYYOMOPBN' where id=4; -update noar ti set v0='QE87L6EHRF4O55MEEYYOMOPBN' where id=4; -update noar tt set b1='1QO32MJMKK0EYTFG3K6TEWIFQUX' where id=4; -update noar ti set b1='1QO32MJMKK0EYTFG3K6TEWIFQUX' where id=4; -update noar tt set v0='LQWU7' where id=4; -update noar ti set v0='LQWU7' where id=4; -update noar tt set b2='5DLPN0Q9HOJSY7ZZMD6Y70CEZB8K7' where id=4; -update noar ti set b2='5DLPN0Q9HOJSY7ZZMD6Y70CEZB8K7' where id=4; -update noar tt set v0='F5J0W63FVTERMBVLC53Y' where id=5; -update noar ti set v0='F5J0W63FVTERMBVLC53Y' where id=5; -update noar tt set b0='9LZYMVO' where id=5; -update noar ti set b0='9LZYMVO' where id=5; -update noar tt set v0='O' where id=5; -update noar ti set v0='O' where id=5; -update noar tt set b1='B9DCAQVX5IPR6EVE67KNU' where id=5; -update noar ti set b1='B9DCAQVX5IPR6EVE67KNU' where id=5; -update noar tt set v0='V2DZXICDR4PSRG0D8DOJZ' where id=5; -update noar ti set v0='V2DZXICDR4PSRG0D8DOJZ' where id=5; -update noar tt set b2='FGCZ64X2T00' where id=5; -update noar ti set b2='FGCZ64X2T00' where id=5; -update noar tt set v0='OKKOZ2CHPHL9GQ' where id=6; -update noar ti set v0='OKKOZ2CHPHL9GQ' where id=6; -update noar tt set b0='6UVNF9Z8HSJ6GKXHMFYS' where id=6; -update noar ti set b0='6UVNF9Z8HSJ6GKXHMFYS' where id=6; -update noar tt set v0='WNZA3LDNI9C03KT8BQPMQ0PB' where id=6; -update noar ti set v0='WNZA3LDNI9C03KT8BQPMQ0PB' where id=6; -update noar tt set b1='LQHXETX' where id=6; -update noar ti set b1='LQHXETX' where id=6; -update noar tt set v0='PC1N' where id=6; -update noar ti set v0='PC1N' where id=6; -update noar tt set b2='1C757WM190NZV' where id=6; -update noar ti set b2='1C757WM190NZV' where id=6; -update noar tt set v0='6UHRX9DY' where id=7; -update noar ti set v0='6UHRX9DY' where id=7; -update noar tt set b0='5DCC8W12ZVMVVNVEVDZ44D1QQY1S253' where id=7; -update noar ti set b0='5DCC8W12ZVMVVNVEVDZ44D1QQY1S253' where id=7; -update noar tt set v0='V9UT22S9778O3JFERB' where id=7; -update noar ti set v0='V9UT22S9778O3JFERB' where id=7; -update noar tt set b1='184RX3MH1MJKBOLZ35OF68B' where id=7; -update noar ti set b1='184RX3MH1MJKBOLZ35OF68B' where id=7; -update noar tt set v0='VO9IMQNE1Z80ACMEV7KYB3O9' where id=7; -update noar ti set v0='VO9IMQNE1Z80ACMEV7KYB3O9' where id=7; -update noar tt set b2='WD8Q' where id=7; -update noar ti set b2='WD8Q' where id=7; -update noar tt set v0='WMILX6' where id=8; -update noar ti set v0='WMILX6' where id=8; -update noar tt set b0='16SB' where id=8; -update noar ti set b0='16SB' where id=8; -update noar tt set v0='2ONKX0D2L82NPE4FFDR2HI2QXLF6YNB' where id=8; -update noar ti set v0='2ONKX0D2L82NPE4FFDR2HI2QXLF6YNB' where id=8; -update noar tt set b1='RJKALFDDI6FPCGHS' where id=8; -update noar ti set b1='RJKALFDDI6FPCGHS' where id=8; -update noar tt set v0='IL97UQZV7BQ86' where id=8; -update noar ti set v0='IL97UQZV7BQ86' where id=8; -update noar tt set b2='A' where id=8; -update noar ti set b2='A' where id=8; -update noar tt set v0='Q7OLHBQS590OZONM' where id=9; -update noar ti set v0='Q7OLHBQS590OZONM' where id=9; -update noar tt set b0='OOHBCUU5TKSD' where id=9; -update noar ti set b0='OOHBCUU5TKSD' where id=9; -update noar tt set v0='22BQU9' where id=9; -update noar ti set v0='22BQU9' where id=9; -update noar tt set b1='7RG0' where id=9; -update noar ti set b1='7RG0' where id=9; -update noar tt set v0='1H8HFYKMPFAE2O3LFW095UQ2' where id=9; -update noar ti set v0='1H8HFYKMPFAE2O3LFW095UQ2' where id=9; -update noar tt set b2='9AHD0WO4HWHD0EZVRRNIYJ1Z' where id=9; -update noar ti set b2='9AHD0WO4HWHD0EZVRRNIYJ1Z' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - f0 int not null, - v0 varchar(32) not null, - b0 mediumblob not null, - b1 tinyblob not null, - b2 blob not null -) engine=tokudb; -insert into tt values (1,0,'','','',''); -insert into tt values (2,0,'','','',''); -insert into tt values (3,0,'','','',''); -insert into tt values (4,0,'','','',''); -insert into tt values (5,0,'','','',''); -insert into tt values (6,0,'','','',''); -insert into tt values (7,0,'','','',''); -insert into tt values (8,0,'','','',''); -insert into tt values (9,0,'','','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='SIVJHAUK7P' where id=1; -update noar ti set v0='SIVJHAUK7P' where id=1; -update noar tt set b0='EV2X' where id=1; -update noar ti set b0='EV2X' where id=1; -update noar tt set v0='F21KLMSSA9MEC5Y4GHS17Z0I2NUG430' where id=1; -update noar ti set v0='F21KLMSSA9MEC5Y4GHS17Z0I2NUG430' where id=1; -update noar tt set b1='PYR9SM5M261MGJP' where id=1; -update noar ti set b1='PYR9SM5M261MGJP' where id=1; -update noar tt set v0='MU86PYFVX8SAVBZ' where id=1; -update noar ti set v0='MU86PYFVX8SAVBZ' where id=1; -update noar tt set b2='SQRRWZKR93O3N' where id=1; -update noar ti set b2='SQRRWZKR93O3N' where id=1; -update noar tt set v0='4PURI39PXJAWZQO586MXD2DR0C7EDF0' where id=2; -update noar ti set v0='4PURI39PXJAWZQO586MXD2DR0C7EDF0' where id=2; -update noar tt set b0='EWNV1M8DWR799Z4OICLDK96H' where id=2; -update noar ti set b0='EWNV1M8DWR799Z4OICLDK96H' where id=2; -update noar tt set v0='WC1UUNO5Y4' where id=2; -update noar ti set v0='WC1UUNO5Y4' where id=2; -update noar tt set b1='I51S8KYIXFJUOMN633HJ7N' where id=2; -update noar ti set b1='I51S8KYIXFJUOMN633HJ7N' where id=2; -update noar tt set v0='IZDFCQ2LCRQHYF0XQIDTSUAF2R' where id=2; -update noar ti set v0='IZDFCQ2LCRQHYF0XQIDTSUAF2R' where id=2; -update noar tt set b2='3PRI0FSUOQGSB8OR9242E' where id=2; -update noar ti set b2='3PRI0FSUOQGSB8OR9242E' where id=2; -update noar tt set v0='KUR546DX91YCD3A2VDUCSTW2IT' where id=3; -update noar ti set v0='KUR546DX91YCD3A2VDUCSTW2IT' where id=3; -update noar tt set b0='C8P3PPVR5EXZ' where id=3; -update noar ti set b0='C8P3PPVR5EXZ' where id=3; -update noar tt set v0='WFEIFJ3ONX3W8VUPGA' where id=3; -update noar ti set v0='WFEIFJ3ONX3W8VUPGA' where id=3; -update noar tt set b1='0G474G6GJV4' where id=3; -update noar ti set b1='0G474G6GJV4' where id=3; -update noar tt set v0='J4DNHZ1' where id=3; -update noar ti set v0='J4DNHZ1' where id=3; -update noar tt set b2='FIZUCBVDBH3AIQ0IV5QQMJVORL' where id=3; -update noar ti set b2='FIZUCBVDBH3AIQ0IV5QQMJVORL' where id=3; -update noar tt set v0='OU6IZFZ22Q8VVXYEO8E9MH2VS' where id=4; -update noar ti set v0='OU6IZFZ22Q8VVXYEO8E9MH2VS' where id=4; -update noar tt set b0='WGJJ3H3FUN0V9KG7788M283WEP' where id=4; -update noar ti set b0='WGJJ3H3FUN0V9KG7788M283WEP' where id=4; -update noar tt set v0='31DQIR06TS3YVPNODRS0SS806M1' where id=4; -update noar ti set v0='31DQIR06TS3YVPNODRS0SS806M1' where id=4; -update noar tt set b1='AAFPM2UDEWFQV414522M6NU' where id=4; -update noar ti set b1='AAFPM2UDEWFQV414522M6NU' where id=4; -update noar tt set v0='BHOOWY' where id=4; -update noar ti set v0='BHOOWY' where id=4; -update noar tt set b2='PYT' where id=4; -update noar ti set b2='PYT' where id=4; -update noar tt set v0='LMW4K1NGY0BMYO6X91J6IEF1M21I' where id=5; -update noar ti set v0='LMW4K1NGY0BMYO6X91J6IEF1M21I' where id=5; -update noar tt set b0='MSUFZBIC63FZIGHRC45TCRG' where id=5; -update noar ti set b0='MSUFZBIC63FZIGHRC45TCRG' where id=5; -update noar tt set v0='A5DQWZXTRBDR7CJSPU7Y2' where id=5; -update noar ti set v0='A5DQWZXTRBDR7CJSPU7Y2' where id=5; -update noar tt set b1='0WO' where id=5; -update noar ti set b1='0WO' where id=5; -update noar tt set v0='M24YXCB3X' where id=5; -update noar ti set v0='M24YXCB3X' where id=5; -update noar tt set b2='CHTSZY2SWDXR0YOPIAZ67VGSEIZTEZKR' where id=5; -update noar ti set b2='CHTSZY2SWDXR0YOPIAZ67VGSEIZTEZKR' where id=5; -update noar tt set v0='77EGNRM73Q6DZFXBJEC52D213Z' where id=6; -update noar ti set v0='77EGNRM73Q6DZFXBJEC52D213Z' where id=6; -update noar tt set b0='T5680CNGJY' where id=6; -update noar ti set b0='T5680CNGJY' where id=6; -update noar tt set v0='TWLXY1PLHZ52JOU' where id=6; -update noar ti set v0='TWLXY1PLHZ52JOU' where id=6; -update noar tt set b1='3Z7TMCO8F8CWS7I6V90C' where id=6; -update noar ti set b1='3Z7TMCO8F8CWS7I6V90C' where id=6; -update noar tt set v0='VHFKN3IQ' where id=6; -update noar ti set v0='VHFKN3IQ' where id=6; -update noar tt set b2='251I63TA628PO2ZOJKQSPQRL0GPB1RP' where id=6; -update noar ti set b2='251I63TA628PO2ZOJKQSPQRL0GPB1RP' where id=6; -update noar tt set v0='SRS2RZX58ZX1JSMU' where id=7; -update noar ti set v0='SRS2RZX58ZX1JSMU' where id=7; -update noar tt set b0='7KWUNO5PHGZNWAH15EH0Q80YUAVVSP' where id=7; -update noar ti set b0='7KWUNO5PHGZNWAH15EH0Q80YUAVVSP' where id=7; -update noar tt set v0='IO95UWAGBCCAD' where id=7; -update noar ti set v0='IO95UWAGBCCAD' where id=7; -update noar tt set b1='S5GOD79CX' where id=7; -update noar ti set b1='S5GOD79CX' where id=7; -update noar tt set v0='6W4HWAOAC23V7Z01OUDZEYVCDE5238O' where id=7; -update noar ti set v0='6W4HWAOAC23V7Z01OUDZEYVCDE5238O' where id=7; -update noar tt set b2='3JYP1BKFW1D71LEHXCLQFNBGO8' where id=7; -update noar ti set b2='3JYP1BKFW1D71LEHXCLQFNBGO8' where id=7; -update noar tt set v0='35OA6F64XFIRJPDA5YISMR' where id=8; -update noar ti set v0='35OA6F64XFIRJPDA5YISMR' where id=8; -update noar tt set b0='ANK' where id=8; -update noar ti set b0='ANK' where id=8; -update noar tt set v0='6JR3GM8AL73DN4W4DIL6GNS' where id=8; -update noar ti set v0='6JR3GM8AL73DN4W4DIL6GNS' where id=8; -update noar tt set b1='UG' where id=8; -update noar ti set b1='UG' where id=8; -update noar tt set v0='WTUK9EIZ8CS82V0857WII3OX07X4MG5T' where id=8; -update noar ti set v0='WTUK9EIZ8CS82V0857WII3OX07X4MG5T' where id=8; -update noar tt set b2='WIKG54ZG12I02' where id=8; -update noar ti set b2='WIKG54ZG12I02' where id=8; -update noar tt set v0='TOC5QBGYG' where id=9; -update noar ti set v0='TOC5QBGYG' where id=9; -update noar tt set b0='3G9613IVZ7VJ4YPJ8YQU6LJLPMS3B87' where id=9; -update noar ti set b0='3G9613IVZ7VJ4YPJ8YQU6LJLPMS3B87' where id=9; -update noar tt set v0='K7TCPDM03GS0ZJNAYSQEKW5' where id=9; -update noar ti set v0='K7TCPDM03GS0ZJNAYSQEKW5' where id=9; -update noar tt set b1='QIELXT6HBET73' where id=9; -update noar ti set b1='QIELXT6HBET73' where id=9; -update noar tt set v0='W8AK1C6K8HZ' where id=9; -update noar ti set v0='W8AK1C6K8HZ' where id=9; -update noar tt set b2='0A4MFE944U0I6V' where id=9; -update noar ti set b2='0A4MFE944U0I6V' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - f0 int not null, - v0 varchar(256) not null, - b0 mediumblob not null, - b1 tinyblob not null, - b2 blob not null -) engine=tokudb; -insert into tt values (1,0,'','','',''); -insert into tt values (2,0,'','','',''); -insert into tt values (3,0,'','','',''); -insert into tt values (4,0,'','','',''); -insert into tt values (5,0,'','','',''); -insert into tt values (6,0,'','','',''); -insert into tt values (7,0,'','','',''); -insert into tt values (8,0,'','','',''); -insert into tt values (9,0,'','','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='LTHSBR8' where id=1; -update noar ti set v0='LTHSBR8' where id=1; -update noar tt set b0='T' where id=1; -update noar ti set b0='T' where id=1; -update noar tt set v0='4' where id=1; -update noar ti set v0='4' where id=1; -update noar tt set b1='Q2IDNVGZMHDLWXHA8Q7' where id=1; -update noar ti set b1='Q2IDNVGZMHDLWXHA8Q7' where id=1; -update noar tt set v0='QQN' where id=1; -update noar ti set v0='QQN' where id=1; -update noar tt set b2='XVMAK6L1B5GGJBWOMXIXGK' where id=1; -update noar ti set b2='XVMAK6L1B5GGJBWOMXIXGK' where id=1; -update noar tt set v0='ETPY1WJ6UYWW34W3YSRJ1PLK' where id=2; -update noar ti set v0='ETPY1WJ6UYWW34W3YSRJ1PLK' where id=2; -update noar tt set b0='BOEBAHREXS3DM5SLXR4M99FP9B' where id=2; -update noar ti set b0='BOEBAHREXS3DM5SLXR4M99FP9B' where id=2; -update noar tt set v0='ZME2X6HC' where id=2; -update noar ti set v0='ZME2X6HC' where id=2; -update noar tt set b1='JZPJ1OV5WON7SWVWB6HLBNR5' where id=2; -update noar ti set b1='JZPJ1OV5WON7SWVWB6HLBNR5' where id=2; -update noar tt set v0='QSOA' where id=2; -update noar ti set v0='QSOA' where id=2; -update noar tt set b2='G56LST5' where id=2; -update noar ti set b2='G56LST5' where id=2; -update noar tt set v0='RUWST3D1QMOLNS4ZOJSKOL91T9' where id=3; -update noar ti set v0='RUWST3D1QMOLNS4ZOJSKOL91T9' where id=3; -update noar tt set b0='45942MACD3LSGZ7RWC' where id=3; -update noar ti set b0='45942MACD3LSGZ7RWC' where id=3; -update noar tt set v0='5QMJX2C360JAAAEWCT8Y17' where id=3; -update noar ti set v0='5QMJX2C360JAAAEWCT8Y17' where id=3; -update noar tt set b1='SZHW1BGHFXSN0K7SZ83VAM21B' where id=3; -update noar ti set b1='SZHW1BGHFXSN0K7SZ83VAM21B' where id=3; -update noar tt set v0='J905FUTQ' where id=3; -update noar ti set v0='J905FUTQ' where id=3; -update noar tt set b2='W9YCRC7UDZJJNB1XZ3CU5J' where id=3; -update noar ti set b2='W9YCRC7UDZJJNB1XZ3CU5J' where id=3; -update noar tt set v0='IXGR24PS08CNJJD8K8D' where id=4; -update noar ti set v0='IXGR24PS08CNJJD8K8D' where id=4; -update noar tt set b0='DAJLYHP' where id=4; -update noar ti set b0='DAJLYHP' where id=4; -update noar tt set v0='EDMEWL3XAI8C5ZOI8SO9H9B5VJU' where id=4; -update noar ti set v0='EDMEWL3XAI8C5ZOI8SO9H9B5VJU' where id=4; -update noar tt set b1='PEZAD8JNDVOE0Z7IZMD51QLIJ8' where id=4; -update noar ti set b1='PEZAD8JNDVOE0Z7IZMD51QLIJ8' where id=4; -update noar tt set v0='OYTPFN5PQ03ISDPVZ652H4MZ2XEW3C' where id=4; -update noar ti set v0='OYTPFN5PQ03ISDPVZ652H4MZ2XEW3C' where id=4; -update noar tt set b2='O5F8JJ46Y6VJV8TPISGGBD' where id=4; -update noar ti set b2='O5F8JJ46Y6VJV8TPISGGBD' where id=4; -update noar tt set v0='YR48H4C377UKCR5BV2HPEG' where id=5; -update noar ti set v0='YR48H4C377UKCR5BV2HPEG' where id=5; -update noar tt set b0='80I5UVGAM4TVZY825D0Y70NWGQCIB' where id=5; -update noar ti set b0='80I5UVGAM4TVZY825D0Y70NWGQCIB' where id=5; -update noar tt set v0='JKQGPBOEKIVUBONHEPUTQS1' where id=5; -update noar ti set v0='JKQGPBOEKIVUBONHEPUTQS1' where id=5; -update noar tt set b1='J9QMX1YME34LU' where id=5; -update noar ti set b1='J9QMX1YME34LU' where id=5; -update noar tt set v0='4PQJPJ6XYEHYCLN' where id=5; -update noar ti set v0='4PQJPJ6XYEHYCLN' where id=5; -update noar tt set b2='RRLK08F7GAV4SPN1JOIXZY' where id=5; -update noar ti set b2='RRLK08F7GAV4SPN1JOIXZY' where id=5; -update noar tt set v0='YWM9UGC' where id=6; -update noar ti set v0='YWM9UGC' where id=6; -update noar tt set b0='7BLZ60JRV1XZ8WJL79ZH6DM' where id=6; -update noar ti set b0='7BLZ60JRV1XZ8WJL79ZH6DM' where id=6; -update noar tt set v0='K1' where id=6; -update noar ti set v0='K1' where id=6; -update noar tt set b1='UD0QN' where id=6; -update noar ti set b1='UD0QN' where id=6; -update noar tt set v0='H790' where id=6; -update noar ti set v0='H790' where id=6; -update noar tt set b2='02HTOXE8' where id=6; -update noar ti set b2='02HTOXE8' where id=6; -update noar tt set v0='XZBE09N6DDPS3O94KERZSB2Q' where id=7; -update noar ti set v0='XZBE09N6DDPS3O94KERZSB2Q' where id=7; -update noar tt set b0='V0HQI5IWHMZ' where id=7; -update noar ti set b0='V0HQI5IWHMZ' where id=7; -update noar tt set v0='Q2GREC4R7ACG58H' where id=7; -update noar ti set v0='Q2GREC4R7ACG58H' where id=7; -update noar tt set b1='HG0W6FB' where id=7; -update noar ti set b1='HG0W6FB' where id=7; -update noar tt set v0='UVM9NDSZXJ' where id=7; -update noar ti set v0='UVM9NDSZXJ' where id=7; -update noar tt set b2='KAAO386YRDS9ZF0DXW' where id=7; -update noar ti set b2='KAAO386YRDS9ZF0DXW' where id=7; -update noar tt set v0='ERPS' where id=8; -update noar ti set v0='ERPS' where id=8; -update noar tt set b0='B7M' where id=8; -update noar ti set b0='B7M' where id=8; -update noar tt set v0='1XQHWEZ7HCZ' where id=8; -update noar ti set v0='1XQHWEZ7HCZ' where id=8; -update noar tt set b1='7N0AC0ONOTQWVMZJ86' where id=8; -update noar ti set b1='7N0AC0ONOTQWVMZJ86' where id=8; -update noar tt set v0='GC' where id=8; -update noar ti set v0='GC' where id=8; -update noar tt set b2='2ILH6YR07S' where id=8; -update noar ti set b2='2ILH6YR07S' where id=8; -update noar tt set v0='LCRCXKT25DSSYFY80JJ' where id=9; -update noar ti set v0='LCRCXKT25DSSYFY80JJ' where id=9; -update noar tt set b0='3X' where id=9; -update noar ti set b0='3X' where id=9; -update noar tt set v0='DCI2GYN5Z712HZI2QP4MDRO' where id=9; -update noar ti set v0='DCI2GYN5Z712HZI2QP4MDRO' where id=9; -update noar tt set b1='E7LAWRMNPGJLGSBB3N2D5H0SL3AIMB' where id=9; -update noar ti set b1='E7LAWRMNPGJLGSBB3N2D5H0SL3AIMB' where id=9; -update noar tt set v0='2ROT25R3QCUD1S' where id=9; -update noar ti set v0='2ROT25R3QCUD1S' where id=9; -update noar tt set b2='IUNYUI9OAE3' where id=9; -update noar ti set b2='IUNYUI9OAE3' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - f0 int null, - v0 varchar(32) null, - b0 mediumblob null, - b1 tinyblob null, - b2 mediumblob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='O4GVM81UCTZNBS' where id=1; -update noar ti set v0='O4GVM81UCTZNBS' where id=1; -update noar tt set b0='9K' where id=1; -update noar ti set b0='9K' where id=1; -update noar tt set v0='P2JV' where id=1; -update noar ti set v0='P2JV' where id=1; -update noar tt set b1='XBAVC2D8RYRB9ROTHP8AGFAH2' where id=1; -update noar ti set b1='XBAVC2D8RYRB9ROTHP8AGFAH2' where id=1; -update noar tt set v0='R23G0NG9XG' where id=1; -update noar ti set v0='R23G0NG9XG' where id=1; -update noar tt set b2='JRB7KPMBFW98BW18T8' where id=1; -update noar ti set b2='JRB7KPMBFW98BW18T8' where id=1; -update noar tt set v0='5N5' where id=2; -update noar ti set v0='5N5' where id=2; -update noar tt set b0='XLIV0VDVLL1G5NRW4GEAER9Z' where id=2; -update noar ti set b0='XLIV0VDVLL1G5NRW4GEAER9Z' where id=2; -update noar tt set v0='O907FMR99IMCWOTN' where id=2; -update noar ti set v0='O907FMR99IMCWOTN' where id=2; -update noar tt set b1='4FPZ962VXP3JD8R7PN33' where id=2; -update noar ti set b1='4FPZ962VXP3JD8R7PN33' where id=2; -update noar tt set v0='682ZF4PXU9E' where id=2; -update noar ti set v0='682ZF4PXU9E' where id=2; -update noar tt set b2='TGHZMRDNJB1U4I681HWZ9PCJPP' where id=2; -update noar ti set b2='TGHZMRDNJB1U4I681HWZ9PCJPP' where id=2; -update noar tt set v0='JCC1JYTJXUT4FJBHNDZNM3H69OYNF' where id=3; -update noar ti set v0='JCC1JYTJXUT4FJBHNDZNM3H69OYNF' where id=3; -update noar tt set b0='A3PWQD0FD52HO3CS1' where id=3; -update noar ti set b0='A3PWQD0FD52HO3CS1' where id=3; -update noar tt set v0='KLIN79H57E8F5TBMK6TC' where id=3; -update noar ti set v0='KLIN79H57E8F5TBMK6TC' where id=3; -update noar tt set b1='46D02H8JXD3GNBMUX' where id=3; -update noar ti set b1='46D02H8JXD3GNBMUX' where id=3; -update noar tt set v0='13QF' where id=3; -update noar ti set v0='13QF' where id=3; -update noar tt set b2='RPCRYIH5PZZL54F8EYA4FQEN062' where id=3; -update noar ti set b2='RPCRYIH5PZZL54F8EYA4FQEN062' where id=3; -update noar tt set v0='T089OJE05FFC' where id=4; -update noar ti set v0='T089OJE05FFC' where id=4; -update noar tt set b0='I5A4TY2BT262V6IOOMEMO8B3IL1M6VA2' where id=4; -update noar ti set b0='I5A4TY2BT262V6IOOMEMO8B3IL1M6VA2' where id=4; -update noar tt set v0='DFLPZ' where id=4; -update noar ti set v0='DFLPZ' where id=4; -update noar tt set b1='MF3QMJRLYYZJY829Y' where id=4; -update noar ti set b1='MF3QMJRLYYZJY829Y' where id=4; -update noar tt set v0='7EXDTR' where id=4; -update noar ti set v0='7EXDTR' where id=4; -update noar tt set b2='U9099VOC' where id=4; -update noar ti set b2='U9099VOC' where id=4; -update noar tt set v0='X5D9ZZY5ED1' where id=5; -update noar ti set v0='X5D9ZZY5ED1' where id=5; -update noar tt set b0='QUSPOQAPIA01ZBLVB3R8' where id=5; -update noar ti set b0='QUSPOQAPIA01ZBLVB3R8' where id=5; -update noar tt set v0='4VFO7WDD7KMO103N3UEH8SNZ1L6MU' where id=5; -update noar ti set v0='4VFO7WDD7KMO103N3UEH8SNZ1L6MU' where id=5; -update noar tt set b1='X25A10QVYXYOASUJ' where id=5; -update noar ti set b1='X25A10QVYXYOASUJ' where id=5; -update noar tt set v0='7UR' where id=5; -update noar ti set v0='7UR' where id=5; -update noar tt set b2='O0VI' where id=5; -update noar ti set b2='O0VI' where id=5; -update noar tt set v0='IZHOZJITXW79RME1' where id=6; -update noar ti set v0='IZHOZJITXW79RME1' where id=6; -update noar tt set b0='5AGDB4' where id=6; -update noar ti set b0='5AGDB4' where id=6; -update noar tt set v0='JEPUJ4R1XY7UQ' where id=6; -update noar ti set v0='JEPUJ4R1XY7UQ' where id=6; -update noar tt set b1='8O9ZNLCUC1SCDI04PRS1PMFWF23S0RA' where id=6; -update noar ti set b1='8O9ZNLCUC1SCDI04PRS1PMFWF23S0RA' where id=6; -update noar tt set v0='HQKAE0IZSN' where id=6; -update noar ti set v0='HQKAE0IZSN' where id=6; -update noar tt set b2='H63P6PWO7JJFYI32J2V65HWC5' where id=6; -update noar ti set b2='H63P6PWO7JJFYI32J2V65HWC5' where id=6; -update noar tt set v0='SOSSWIQ8' where id=7; -update noar ti set v0='SOSSWIQ8' where id=7; -update noar tt set b0='014EKNDZTZN9I25H' where id=7; -update noar ti set b0='014EKNDZTZN9I25H' where id=7; -update noar tt set v0='P0D3PG1N1EP5CF56' where id=7; -update noar ti set v0='P0D3PG1N1EP5CF56' where id=7; -update noar tt set b1='6YQ8IXU4JNW' where id=7; -update noar ti set b1='6YQ8IXU4JNW' where id=7; -update noar tt set v0='U8KEWEFUJ' where id=7; -update noar ti set v0='U8KEWEFUJ' where id=7; -update noar tt set b2='FK1Y' where id=7; -update noar ti set b2='FK1Y' where id=7; -update noar tt set v0='HXA9OWTUP7GK' where id=8; -update noar ti set v0='HXA9OWTUP7GK' where id=8; -update noar tt set b0='RV9Y4ZEOW37P4JZ0BA75ZLZX0' where id=8; -update noar ti set b0='RV9Y4ZEOW37P4JZ0BA75ZLZX0' where id=8; -update noar tt set v0='2K' where id=8; -update noar ti set v0='2K' where id=8; -update noar tt set b1='XMYON35ZQZCH8D' where id=8; -update noar ti set b1='XMYON35ZQZCH8D' where id=8; -update noar tt set v0='35' where id=8; -update noar ti set v0='35' where id=8; -update noar tt set b2='5F489KFTJ2LG2' where id=8; -update noar ti set b2='5F489KFTJ2LG2' where id=8; -update noar tt set v0='G0G0VLM17EFBU' where id=9; -update noar ti set v0='G0G0VLM17EFBU' where id=9; -update noar tt set b0='KN6XI62R' where id=9; -update noar ti set b0='KN6XI62R' where id=9; -update noar tt set v0='EBXVDUMPWUP53ZRX' where id=9; -update noar ti set v0='EBXVDUMPWUP53ZRX' where id=9; -update noar tt set b1='J' where id=9; -update noar ti set b1='J' where id=9; -update noar tt set v0='X8ZX2S' where id=9; -update noar ti set v0='X8ZX2S' where id=9; -update noar tt set b2='ABNA85AE8H25AY4D83FJONELG1FBU3L7' where id=9; -update noar ti set b2='ABNA85AE8H25AY4D83FJONELG1FBU3L7' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - f0 int null, - v0 varchar(256) null, - b0 mediumblob null, - b1 tinyblob null, - b2 mediumblob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='BRNJ' where id=1; -update noar ti set v0='BRNJ' where id=1; -update noar tt set b0='R0ZEP9T' where id=1; -update noar ti set b0='R0ZEP9T' where id=1; -update noar tt set v0='ADQXWREPB637SILIJQ5N05NBGT' where id=1; -update noar ti set v0='ADQXWREPB637SILIJQ5N05NBGT' where id=1; -update noar tt set b1='2JWOBDTVSVAE6T8RN8QCPXIF1DYDES9' where id=1; -update noar ti set b1='2JWOBDTVSVAE6T8RN8QCPXIF1DYDES9' where id=1; -update noar tt set v0='YISO92KUL2QB35L5S57PI6DWM' where id=1; -update noar ti set v0='YISO92KUL2QB35L5S57PI6DWM' where id=1; -update noar tt set b2='HZ3OVMOBWG3WSAA32' where id=1; -update noar ti set b2='HZ3OVMOBWG3WSAA32' where id=1; -update noar tt set v0='0QY2NKDXBDTCQKS9UEMOQD7' where id=2; -update noar ti set v0='0QY2NKDXBDTCQKS9UEMOQD7' where id=2; -update noar tt set b0='ZEQA9Y8FDD694ZLKY2M8P9H3' where id=2; -update noar ti set b0='ZEQA9Y8FDD694ZLKY2M8P9H3' where id=2; -update noar tt set v0='ITOPJXOYH' where id=2; -update noar ti set v0='ITOPJXOYH' where id=2; -update noar tt set b1='HQGSGMLH0PGPB8' where id=2; -update noar ti set b1='HQGSGMLH0PGPB8' where id=2; -update noar tt set v0='44KJN' where id=2; -update noar ti set v0='44KJN' where id=2; -update noar tt set b2='Q23BYKABZ' where id=2; -update noar ti set b2='Q23BYKABZ' where id=2; -update noar tt set v0='3DLUCW0V529HOY0J' where id=3; -update noar ti set v0='3DLUCW0V529HOY0J' where id=3; -update noar tt set b0='M7OM2WQ' where id=3; -update noar ti set b0='M7OM2WQ' where id=3; -update noar tt set v0='F3C4D0Z0DC25L6XD3C' where id=3; -update noar ti set v0='F3C4D0Z0DC25L6XD3C' where id=3; -update noar tt set b1='WC41P1WQNRMHIFLDGZWY7OT3A783U' where id=3; -update noar ti set b1='WC41P1WQNRMHIFLDGZWY7OT3A783U' where id=3; -update noar tt set v0='N313TH' where id=3; -update noar ti set v0='N313TH' where id=3; -update noar tt set b2='8WGJ2P1P' where id=3; -update noar ti set b2='8WGJ2P1P' where id=3; -update noar tt set v0='PZ47VRUVV0W21MZVZ' where id=4; -update noar ti set v0='PZ47VRUVV0W21MZVZ' where id=4; -update noar tt set b0='U4Z2' where id=4; -update noar ti set b0='U4Z2' where id=4; -update noar tt set v0='6QVYTY3BBX1KJ7SLW9IU2HQ' where id=4; -update noar ti set v0='6QVYTY3BBX1KJ7SLW9IU2HQ' where id=4; -update noar tt set b1='KKO6A2QFSR1INUQ17' where id=4; -update noar ti set b1='KKO6A2QFSR1INUQ17' where id=4; -update noar tt set v0='TTN9F9KHFXV' where id=4; -update noar ti set v0='TTN9F9KHFXV' where id=4; -update noar tt set b2='NQVCQZYGXAO9NIMGHR0TK' where id=4; -update noar ti set b2='NQVCQZYGXAO9NIMGHR0TK' where id=4; -update noar tt set v0='LEGRO7N8Z69VB80L' where id=5; -update noar ti set v0='LEGRO7N8Z69VB80L' where id=5; -update noar tt set b0='8908XTYODQO0' where id=5; -update noar ti set b0='8908XTYODQO0' where id=5; -update noar tt set v0='SR' where id=5; -update noar ti set v0='SR' where id=5; -update noar tt set b1='QF5SXFVPA98' where id=5; -update noar ti set b1='QF5SXFVPA98' where id=5; -update noar tt set v0='5KNUMGRJ8683IZGDJS' where id=5; -update noar ti set v0='5KNUMGRJ8683IZGDJS' where id=5; -update noar tt set b2='F5CIDVNCIJ4WDXG' where id=5; -update noar ti set b2='F5CIDVNCIJ4WDXG' where id=5; -update noar tt set v0='XY9EYTT5WRX2QXTXDG09CDKMOYB' where id=6; -update noar ti set v0='XY9EYTT5WRX2QXTXDG09CDKMOYB' where id=6; -update noar tt set b0='985BSDRIFUAC70MH11TGFCN3P6' where id=6; -update noar ti set b0='985BSDRIFUAC70MH11TGFCN3P6' where id=6; -update noar tt set v0='AW7EIJ4HNW' where id=6; -update noar ti set v0='AW7EIJ4HNW' where id=6; -update noar tt set b1='X6BFNKFP2VS00SAYLMAJOO' where id=6; -update noar ti set b1='X6BFNKFP2VS00SAYLMAJOO' where id=6; -update noar tt set v0='DNO34BG10QBJO54977AI6M3KBA5VYHQ3' where id=6; -update noar ti set v0='DNO34BG10QBJO54977AI6M3KBA5VYHQ3' where id=6; -update noar tt set b2='SVZDG45A3505DQZ' where id=6; -update noar ti set b2='SVZDG45A3505DQZ' where id=6; -update noar tt set v0='UHJNP7T9KPC72M5HR' where id=7; -update noar ti set v0='UHJNP7T9KPC72M5HR' where id=7; -update noar tt set b0='0SOMHBCZV7T8STTP610F33CF5Z8' where id=7; -update noar ti set b0='0SOMHBCZV7T8STTP610F33CF5Z8' where id=7; -update noar tt set v0='GYWMS3LQIXTVLW8CH70' where id=7; -update noar ti set v0='GYWMS3LQIXTVLW8CH70' where id=7; -update noar tt set b1='PH2A949QDC5CB7YSQ041SBHLDV' where id=7; -update noar ti set b1='PH2A949QDC5CB7YSQ041SBHLDV' where id=7; -update noar tt set v0='DIXSDMFQSHD8' where id=7; -update noar ti set v0='DIXSDMFQSHD8' where id=7; -update noar tt set b2='HFIO8EBDF8BZZRPCZ75VC' where id=7; -update noar ti set b2='HFIO8EBDF8BZZRPCZ75VC' where id=7; -update noar tt set v0='8FQHKJ95U' where id=8; -update noar ti set v0='8FQHKJ95U' where id=8; -update noar tt set b0='BI8A545TJ9PU' where id=8; -update noar ti set b0='BI8A545TJ9PU' where id=8; -update noar tt set v0='WDTW2XQ7OW0UFA5CG' where id=8; -update noar ti set v0='WDTW2XQ7OW0UFA5CG' where id=8; -update noar tt set b1='MW843BW73P9EMAMJUD74TZKXJ9R3TW' where id=8; -update noar ti set b1='MW843BW73P9EMAMJUD74TZKXJ9R3TW' where id=8; -update noar tt set v0='QCP0VM2JKA0Z94CMUZXQ9XWBO1VXYY7' where id=8; -update noar ti set v0='QCP0VM2JKA0Z94CMUZXQ9XWBO1VXYY7' where id=8; -update noar tt set b2='ZGZ4LOJ6ULEM8HH8UBOS9EHYZLQ' where id=8; -update noar ti set b2='ZGZ4LOJ6ULEM8HH8UBOS9EHYZLQ' where id=8; -update noar tt set v0='K6' where id=9; -update noar ti set v0='K6' where id=9; -update noar tt set b0='LPZQ2' where id=9; -update noar ti set b0='LPZQ2' where id=9; -update noar tt set v0='WU8NI46FNT' where id=9; -update noar ti set v0='WU8NI46FNT' where id=9; -update noar tt set b1='ONSU5ENQH5AC3GREDTK1YASH' where id=9; -update noar ti set b1='ONSU5ENQH5AC3GREDTK1YASH' where id=9; -update noar tt set v0='UC8ALF0VFUA981K8D0JMA8FP8' where id=9; -update noar ti set v0='UC8ALF0VFUA981K8D0JMA8FP8' where id=9; -update noar tt set b2='CNBZG6GP3IG' where id=9; -update noar ti set b2='CNBZG6GP3IG' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - f0 int not null, - v0 varchar(32) not null, - b0 mediumblob not null, - b1 tinyblob not null, - b2 mediumblob not null -) engine=tokudb; -insert into tt values (1,0,'','','',''); -insert into tt values (2,0,'','','',''); -insert into tt values (3,0,'','','',''); -insert into tt values (4,0,'','','',''); -insert into tt values (5,0,'','','',''); -insert into tt values (6,0,'','','',''); -insert into tt values (7,0,'','','',''); -insert into tt values (8,0,'','','',''); -insert into tt values (9,0,'','','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='TH7UVMIEIKOWKWC6D0HS' where id=1; -update noar ti set v0='TH7UVMIEIKOWKWC6D0HS' where id=1; -update noar tt set b0='8C3Q698B5AZWC69VJ15OBMFDTC' where id=1; -update noar ti set b0='8C3Q698B5AZWC69VJ15OBMFDTC' where id=1; -update noar tt set v0='CS' where id=1; -update noar ti set v0='CS' where id=1; -update noar tt set b1='IM454LYD6X5S2U4XC165Q' where id=1; -update noar ti set b1='IM454LYD6X5S2U4XC165Q' where id=1; -update noar tt set v0='6' where id=1; -update noar ti set v0='6' where id=1; -update noar tt set b2='VYY9WRU623S4B094RHYYW' where id=1; -update noar ti set b2='VYY9WRU623S4B094RHYYW' where id=1; -update noar tt set v0='7D2AA' where id=2; -update noar ti set v0='7D2AA' where id=2; -update noar tt set b0='24UUWTHBBLKGX8OEMYIRTM8S0XGT' where id=2; -update noar ti set b0='24UUWTHBBLKGX8OEMYIRTM8S0XGT' where id=2; -update noar tt set v0='B59P527ZW8R9' where id=2; -update noar ti set v0='B59P527ZW8R9' where id=2; -update noar tt set b1='9UURG9ZUJSQEZ7Z5BSSZYL3OOFB' where id=2; -update noar ti set b1='9UURG9ZUJSQEZ7Z5BSSZYL3OOFB' where id=2; -update noar tt set v0='UDPTMLINC5EE' where id=2; -update noar ti set v0='UDPTMLINC5EE' where id=2; -update noar tt set b2='0WZM2RXM7CXM5NXQ8IG' where id=2; -update noar ti set b2='0WZM2RXM7CXM5NXQ8IG' where id=2; -update noar tt set v0='2' where id=3; -update noar ti set v0='2' where id=3; -update noar tt set b0='XVMVMSX9E' where id=3; -update noar ti set b0='XVMVMSX9E' where id=3; -update noar tt set v0='Q9JPLXDKTN' where id=3; -update noar ti set v0='Q9JPLXDKTN' where id=3; -update noar tt set b1='4CZVQ20XZ1GEP63L4Q8D94VTYAVQ' where id=3; -update noar ti set b1='4CZVQ20XZ1GEP63L4Q8D94VTYAVQ' where id=3; -update noar tt set v0='1SFSJS' where id=3; -update noar ti set v0='1SFSJS' where id=3; -update noar tt set b2='V' where id=3; -update noar ti set b2='V' where id=3; -update noar tt set v0='JN4BJM70W10T15C15EKMVUNGSH' where id=4; -update noar ti set v0='JN4BJM70W10T15C15EKMVUNGSH' where id=4; -update noar tt set b0='LYD6Q1' where id=4; -update noar ti set b0='LYD6Q1' where id=4; -update noar tt set v0='6WJPTLDWMLIX8344U25HMW3XZA' where id=4; -update noar ti set v0='6WJPTLDWMLIX8344U25HMW3XZA' where id=4; -update noar tt set b1='7' where id=4; -update noar ti set b1='7' where id=4; -update noar tt set v0='644EE3PPAXKGXJQ3M8B0XY' where id=4; -update noar ti set v0='644EE3PPAXKGXJQ3M8B0XY' where id=4; -update noar tt set b2='33HIWBVW7ZUN8AM4NVDIA7JCU6OV' where id=4; -update noar ti set b2='33HIWBVW7ZUN8AM4NVDIA7JCU6OV' where id=4; -update noar tt set v0='Y9ETXJCII3MC58' where id=5; -update noar ti set v0='Y9ETXJCII3MC58' where id=5; -update noar tt set b0='0N0HGVJLLBH37CD1VAA8VK5U5TC' where id=5; -update noar ti set b0='0N0HGVJLLBH37CD1VAA8VK5U5TC' where id=5; -update noar tt set v0='AFTZA16CIX1W' where id=5; -update noar ti set v0='AFTZA16CIX1W' where id=5; -update noar tt set b1='4' where id=5; -update noar ti set b1='4' where id=5; -update noar tt set v0='FY75YOMMXG9OLMDD1Z' where id=5; -update noar ti set v0='FY75YOMMXG9OLMDD1Z' where id=5; -update noar tt set b2='4IWO74GU7GZP9PIRRX9US4YW' where id=5; -update noar ti set b2='4IWO74GU7GZP9PIRRX9US4YW' where id=5; -update noar tt set v0='M9A' where id=6; -update noar ti set v0='M9A' where id=6; -update noar tt set b0='U' where id=6; -update noar ti set b0='U' where id=6; -update noar tt set v0='I3A0RXR95B2R5DLSSG5' where id=6; -update noar ti set v0='I3A0RXR95B2R5DLSSG5' where id=6; -update noar tt set b1='W5MTAI14B4O7LJVMP1H' where id=6; -update noar ti set b1='W5MTAI14B4O7LJVMP1H' where id=6; -update noar tt set v0='U' where id=6; -update noar ti set v0='U' where id=6; -update noar tt set b2='81Z1R' where id=6; -update noar ti set b2='81Z1R' where id=6; -update noar tt set v0='Z3HU22K7BN64IBJTE2' where id=7; -update noar ti set v0='Z3HU22K7BN64IBJTE2' where id=7; -update noar tt set b0='2QFGR9DI' where id=7; -update noar ti set b0='2QFGR9DI' where id=7; -update noar tt set v0='W64Y4HRF4XMQ2O' where id=7; -update noar ti set v0='W64Y4HRF4XMQ2O' where id=7; -update noar tt set b1='7NKKHVW9SNPP6OJZH1G' where id=7; -update noar ti set b1='7NKKHVW9SNPP6OJZH1G' where id=7; -update noar tt set v0='U6LF1' where id=7; -update noar ti set v0='U6LF1' where id=7; -update noar tt set b2='X22XVF5SE0NXWLLIII8S9UH79JUMT' where id=7; -update noar ti set b2='X22XVF5SE0NXWLLIII8S9UH79JUMT' where id=7; -update noar tt set v0='TMMVCKDIVAS4P' where id=8; -update noar ti set v0='TMMVCKDIVAS4P' where id=8; -update noar tt set b0='FGX8YR7MD9T68' where id=8; -update noar ti set b0='FGX8YR7MD9T68' where id=8; -update noar tt set v0='7C01B' where id=8; -update noar ti set v0='7C01B' where id=8; -update noar tt set b1='D423L38DIHGBLZWNY71P66VH5BMNOMG' where id=8; -update noar ti set b1='D423L38DIHGBLZWNY71P66VH5BMNOMG' where id=8; -update noar tt set v0='EJGNO9SXMFSG0FMB0VVB' where id=8; -update noar ti set v0='EJGNO9SXMFSG0FMB0VVB' where id=8; -update noar tt set b2='AA32BL9UJBHRJ3T' where id=8; -update noar ti set b2='AA32BL9UJBHRJ3T' where id=8; -update noar tt set v0='4UST1' where id=9; -update noar ti set v0='4UST1' where id=9; -update noar tt set b0='8U6X4AWR4QC7DVRGN5PXIY9E5' where id=9; -update noar ti set b0='8U6X4AWR4QC7DVRGN5PXIY9E5' where id=9; -update noar tt set v0='IK9INHJ4GI46WRT9F89CO56CLJ1' where id=9; -update noar ti set v0='IK9INHJ4GI46WRT9F89CO56CLJ1' where id=9; -update noar tt set b1='J7BM4P3M5UAOWETNSNKM9G6FQAIB' where id=9; -update noar ti set b1='J7BM4P3M5UAOWETNSNKM9G6FQAIB' where id=9; -update noar tt set v0='E8GIZWM0T' where id=9; -update noar ti set v0='E8GIZWM0T' where id=9; -update noar tt set b2='0342DNAD3R3VQ0FSG' where id=9; -update noar ti set b2='0342DNAD3R3VQ0FSG' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - f0 int not null, - v0 varchar(256) not null, - b0 mediumblob not null, - b1 tinyblob not null, - b2 mediumblob not null -) engine=tokudb; -insert into tt values (1,0,'','','',''); -insert into tt values (2,0,'','','',''); -insert into tt values (3,0,'','','',''); -insert into tt values (4,0,'','','',''); -insert into tt values (5,0,'','','',''); -insert into tt values (6,0,'','','',''); -insert into tt values (7,0,'','','',''); -insert into tt values (8,0,'','','',''); -insert into tt values (9,0,'','','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='6KVFIRTZ354LYTPXK2FM6F97F' where id=1; -update noar ti set v0='6KVFIRTZ354LYTPXK2FM6F97F' where id=1; -update noar tt set b0='4LMHLFRN56JGAYHAS0JBO2UZPX72NSA' where id=1; -update noar ti set b0='4LMHLFRN56JGAYHAS0JBO2UZPX72NSA' where id=1; -update noar tt set v0='XRZO7583' where id=1; -update noar ti set v0='XRZO7583' where id=1; -update noar tt set b1='TP97NN39JN5O54' where id=1; -update noar ti set b1='TP97NN39JN5O54' where id=1; -update noar tt set v0='M7NQMI3AKMZLAFMZYCRBUP' where id=1; -update noar ti set v0='M7NQMI3AKMZLAFMZYCRBUP' where id=1; -update noar tt set b2='2JT09K00UUG5Y2' where id=1; -update noar ti set b2='2JT09K00UUG5Y2' where id=1; -update noar tt set v0='QQDS1' where id=2; -update noar ti set v0='QQDS1' where id=2; -update noar tt set b0='14YAZ0UDWUR1PWNWF5AABRS' where id=2; -update noar ti set b0='14YAZ0UDWUR1PWNWF5AABRS' where id=2; -update noar tt set v0='2HPFLNOI' where id=2; -update noar ti set v0='2HPFLNOI' where id=2; -update noar tt set b1='VW' where id=2; -update noar ti set b1='VW' where id=2; -update noar tt set v0='D7EDMNGL5HOJ7QZGUSWKBZ1VQMVKDW' where id=2; -update noar ti set v0='D7EDMNGL5HOJ7QZGUSWKBZ1VQMVKDW' where id=2; -update noar tt set b2='TKQHZBAB7UII22N' where id=2; -update noar ti set b2='TKQHZBAB7UII22N' where id=2; -update noar tt set v0='GATB8QG4K12HS44HIJ54R8W' where id=3; -update noar ti set v0='GATB8QG4K12HS44HIJ54R8W' where id=3; -update noar tt set b0='N8R' where id=3; -update noar ti set b0='N8R' where id=3; -update noar tt set v0='OAZT' where id=3; -update noar ti set v0='OAZT' where id=3; -update noar tt set b1='1V1HVIW6735HX67NZTU' where id=3; -update noar ti set b1='1V1HVIW6735HX67NZTU' where id=3; -update noar tt set v0='A4Q3RW6RG7' where id=3; -update noar ti set v0='A4Q3RW6RG7' where id=3; -update noar tt set b2='X33R0KLS8Z9GG4P25FY7O279GN1Y' where id=3; -update noar ti set b2='X33R0KLS8Z9GG4P25FY7O279GN1Y' where id=3; -update noar tt set v0='CM5TSXRMW1B0ONLI9KYOUGC' where id=4; -update noar ti set v0='CM5TSXRMW1B0ONLI9KYOUGC' where id=4; -update noar tt set b0='GV7U3UZBN8OPMV3ZFQT7CH3RVVHQG' where id=4; -update noar ti set b0='GV7U3UZBN8OPMV3ZFQT7CH3RVVHQG' where id=4; -update noar tt set v0='LOIQWJJ9808COO0NY78QD9OISPK0BW' where id=4; -update noar ti set v0='LOIQWJJ9808COO0NY78QD9OISPK0BW' where id=4; -update noar tt set b1='SQR93' where id=4; -update noar ti set b1='SQR93' where id=4; -update noar tt set v0='QGCI76U34C9FB6' where id=4; -update noar ti set v0='QGCI76U34C9FB6' where id=4; -update noar tt set b2='6KUIT' where id=4; -update noar ti set b2='6KUIT' where id=4; -update noar tt set v0='3QT0K8O' where id=5; -update noar ti set v0='3QT0K8O' where id=5; -update noar tt set b0='SQDLGBEULRU2EFQ440' where id=5; -update noar ti set b0='SQDLGBEULRU2EFQ440' where id=5; -update noar tt set v0='DTD1RKDYV4KC1' where id=5; -update noar ti set v0='DTD1RKDYV4KC1' where id=5; -update noar tt set b1='X0GFUQGAL5WHK' where id=5; -update noar ti set b1='X0GFUQGAL5WHK' where id=5; -update noar tt set v0='B8H6KHRET1P5XKIQ3CCHCTIZTAUA2' where id=5; -update noar ti set v0='B8H6KHRET1P5XKIQ3CCHCTIZTAUA2' where id=5; -update noar tt set b2='VATYHMH8N7A2877NMEU2JFB891U' where id=5; -update noar ti set b2='VATYHMH8N7A2877NMEU2JFB891U' where id=5; -update noar tt set v0='67HUVP3PJU0N' where id=6; -update noar ti set v0='67HUVP3PJU0N' where id=6; -update noar tt set b0='HUPD22HZD' where id=6; -update noar ti set b0='HUPD22HZD' where id=6; -update noar tt set v0='J3P70REANLB2I348DELB20PO' where id=6; -update noar ti set v0='J3P70REANLB2I348DELB20PO' where id=6; -update noar tt set b1='3UFYMMM8RQP530AU08RZEF716TDSH4' where id=6; -update noar ti set b1='3UFYMMM8RQP530AU08RZEF716TDSH4' where id=6; -update noar tt set v0='LD' where id=6; -update noar ti set v0='LD' where id=6; -update noar tt set b2='KJ53P' where id=6; -update noar ti set b2='KJ53P' where id=6; -update noar tt set v0='I' where id=7; -update noar ti set v0='I' where id=7; -update noar tt set b0='RC4COSJJY' where id=7; -update noar ti set b0='RC4COSJJY' where id=7; -update noar tt set v0='QJ3YEZ4BYIVWBN3UCNT3QJ5BUZ3' where id=7; -update noar ti set v0='QJ3YEZ4BYIVWBN3UCNT3QJ5BUZ3' where id=7; -update noar tt set b1='II1L6B1V0MG2B24F4S0H0FDY' where id=7; -update noar ti set b1='II1L6B1V0MG2B24F4S0H0FDY' where id=7; -update noar tt set v0='9713QXUKOK3UME' where id=7; -update noar ti set v0='9713QXUKOK3UME' where id=7; -update noar tt set b2='CTN6M9KSTBDPI3B6QOSFJYQ' where id=7; -update noar ti set b2='CTN6M9KSTBDPI3B6QOSFJYQ' where id=7; -update noar tt set v0='SOU5QQ2PUUR9FV7QCZ' where id=8; -update noar ti set v0='SOU5QQ2PUUR9FV7QCZ' where id=8; -update noar tt set b0='Z6P5' where id=8; -update noar ti set b0='Z6P5' where id=8; -update noar tt set v0='LYFA21YOE9Y1Q484CH6WJK' where id=8; -update noar ti set v0='LYFA21YOE9Y1Q484CH6WJK' where id=8; -update noar tt set b1='ZQJBW970U8KO82' where id=8; -update noar ti set b1='ZQJBW970U8KO82' where id=8; -update noar tt set v0='Z9LKVD62S3B7ZIFL' where id=8; -update noar ti set v0='Z9LKVD62S3B7ZIFL' where id=8; -update noar tt set b2='GPGBBO8B1R2WG5MGSZGC2P28' where id=8; -update noar ti set b2='GPGBBO8B1R2WG5MGSZGC2P28' where id=8; -update noar tt set v0='0949Y6VFL63EZGIGDDZSXE4OUNRUTL0C' where id=9; -update noar ti set v0='0949Y6VFL63EZGIGDDZSXE4OUNRUTL0C' where id=9; -update noar tt set b0='NO' where id=9; -update noar ti set b0='NO' where id=9; -update noar tt set v0='3SXZAU2MA481SH8XBX7O569DFSFX' where id=9; -update noar ti set v0='3SXZAU2MA481SH8XBX7O569DFSFX' where id=9; -update noar tt set b1='Q333A2Q8' where id=9; -update noar ti set b1='Q333A2Q8' where id=9; -update noar tt set v0='NLLGJR235L' where id=9; -update noar ti set v0='NLLGJR235L' where id=9; -update noar tt set b2='4SM7WEFTVMSNRPHZJOBF3BFZ8EYVAO' where id=9; -update noar ti set b2='4SM7WEFTVMSNRPHZJOBF3BFZ8EYVAO' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - f0 int null, - v0 varchar(32) null, - b0 mediumblob null, - b1 tinyblob null, - b2 longblob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='GIAIMRY' where id=1; -update noar ti set v0='GIAIMRY' where id=1; -update noar tt set b0='MQ2R6P6CYS1GOBM0' where id=1; -update noar ti set b0='MQ2R6P6CYS1GOBM0' where id=1; -update noar tt set v0='J6TX9Z74YL3XLT1BVL4QOM2NIU' where id=1; -update noar ti set v0='J6TX9Z74YL3XLT1BVL4QOM2NIU' where id=1; -update noar tt set b1='V8S21JGOUIJD0J66VXD68FM0T3I' where id=1; -update noar ti set b1='V8S21JGOUIJD0J66VXD68FM0T3I' where id=1; -update noar tt set v0='7LPDBCFNA70OE97CT' where id=1; -update noar ti set v0='7LPDBCFNA70OE97CT' where id=1; -update noar tt set b2='ZR69U74BCO' where id=1; -update noar ti set b2='ZR69U74BCO' where id=1; -update noar tt set v0='UOKZD0DDO3E49RAFA8OR3HRKLO8PSRSV' where id=2; -update noar ti set v0='UOKZD0DDO3E49RAFA8OR3HRKLO8PSRSV' where id=2; -update noar tt set b0='F3XBXIPQ48QMUMW8S6JI8JIU5' where id=2; -update noar ti set b0='F3XBXIPQ48QMUMW8S6JI8JIU5' where id=2; -update noar tt set v0='0GEQQBJQ2MQEEBTEPK2' where id=2; -update noar ti set v0='0GEQQBJQ2MQEEBTEPK2' where id=2; -update noar tt set b1='M5JGSJWRAZIVHTZNPXIELWA' where id=2; -update noar ti set b1='M5JGSJWRAZIVHTZNPXIELWA' where id=2; -update noar tt set v0='VWVXBHKJL68XCP0W8BY' where id=2; -update noar ti set v0='VWVXBHKJL68XCP0W8BY' where id=2; -update noar tt set b2='RL4R431VDKQHBN1' where id=2; -update noar ti set b2='RL4R431VDKQHBN1' where id=2; -update noar tt set v0='USCYELR8BY07HI1R6' where id=3; -update noar ti set v0='USCYELR8BY07HI1R6' where id=3; -update noar tt set b0='QRFHDFW' where id=3; -update noar ti set b0='QRFHDFW' where id=3; -update noar tt set v0='I8FDSW3GO5MX76024G1TSNOGV3FXK' where id=3; -update noar ti set v0='I8FDSW3GO5MX76024G1TSNOGV3FXK' where id=3; -update noar tt set b1='U3NLW608YCBIJO6ZO7Y8HO' where id=3; -update noar ti set b1='U3NLW608YCBIJO6ZO7Y8HO' where id=3; -update noar tt set v0='VJQW8B0TRHU' where id=3; -update noar ti set v0='VJQW8B0TRHU' where id=3; -update noar tt set b2='19EL7ZQELWN' where id=3; -update noar ti set b2='19EL7ZQELWN' where id=3; -update noar tt set v0='KQ9WZM60583O3QP' where id=4; -update noar ti set v0='KQ9WZM60583O3QP' where id=4; -update noar tt set b0='XMJSL2ZPKOTM0996LF' where id=4; -update noar ti set b0='XMJSL2ZPKOTM0996LF' where id=4; -update noar tt set v0='4BPGHZWRCAYJBF8' where id=4; -update noar ti set v0='4BPGHZWRCAYJBF8' where id=4; -update noar tt set b1='L5E014TG7U5KZ7F7LC' where id=4; -update noar ti set b1='L5E014TG7U5KZ7F7LC' where id=4; -update noar tt set v0='PXKJIV0140NLLQDCR830INOHTB' where id=4; -update noar ti set v0='PXKJIV0140NLLQDCR830INOHTB' where id=4; -update noar tt set b2='RW4C' where id=4; -update noar ti set b2='RW4C' where id=4; -update noar tt set v0='3RWBK0BJY1PRLOJZZ' where id=5; -update noar ti set v0='3RWBK0BJY1PRLOJZZ' where id=5; -update noar tt set b0='A' where id=5; -update noar ti set b0='A' where id=5; -update noar tt set v0='SK8YEBOP1HU601TMMF5SMOQ9' where id=5; -update noar ti set v0='SK8YEBOP1HU601TMMF5SMOQ9' where id=5; -update noar tt set b1='INR0H0' where id=5; -update noar ti set b1='INR0H0' where id=5; -update noar tt set v0='JRB1J3N0' where id=5; -update noar ti set v0='JRB1J3N0' where id=5; -update noar tt set b2='NBVXYTYWGLIGGJHRA2C0' where id=5; -update noar ti set b2='NBVXYTYWGLIGGJHRA2C0' where id=5; -update noar tt set v0='RQLW' where id=6; -update noar ti set v0='RQLW' where id=6; -update noar tt set b0='SSLIJIZW3I8Z13LC2RM577' where id=6; -update noar ti set b0='SSLIJIZW3I8Z13LC2RM577' where id=6; -update noar tt set v0='2BO5N3W8WI4N6OME2MKD1NC' where id=6; -update noar ti set v0='2BO5N3W8WI4N6OME2MKD1NC' where id=6; -update noar tt set b1='IGAKA851VXVNQNPZH5DWRH65' where id=6; -update noar ti set b1='IGAKA851VXVNQNPZH5DWRH65' where id=6; -update noar tt set v0='NSMUJPVQC' where id=6; -update noar ti set v0='NSMUJPVQC' where id=6; -update noar tt set b2='ID5IN1AB2LDFAEUR2G' where id=6; -update noar ti set b2='ID5IN1AB2LDFAEUR2G' where id=6; -update noar tt set v0='RMO' where id=7; -update noar ti set v0='RMO' where id=7; -update noar tt set b0='5Y3J41T33RPMQ' where id=7; -update noar ti set b0='5Y3J41T33RPMQ' where id=7; -update noar tt set v0='1' where id=7; -update noar ti set v0='1' where id=7; -update noar tt set b1='7UNXD8539M1AQVAKJ2K5XNQ' where id=7; -update noar ti set b1='7UNXD8539M1AQVAKJ2K5XNQ' where id=7; -update noar tt set v0='02UNVRHFT9MLHAY6J8' where id=7; -update noar ti set v0='02UNVRHFT9MLHAY6J8' where id=7; -update noar tt set b2='3Z6EL36QQSE8CDT8' where id=7; -update noar ti set b2='3Z6EL36QQSE8CDT8' where id=7; -update noar tt set v0='SZCHT9NJLJN2A7N7XZYF1RL6' where id=8; -update noar ti set v0='SZCHT9NJLJN2A7N7XZYF1RL6' where id=8; -update noar tt set b0='43LZI9FW6X7VK33RMGFXX56V' where id=8; -update noar ti set b0='43LZI9FW6X7VK33RMGFXX56V' where id=8; -update noar tt set v0='3ZLCOU6F7W7O7S3C5HJPL51QM0H1M' where id=8; -update noar ti set v0='3ZLCOU6F7W7O7S3C5HJPL51QM0H1M' where id=8; -update noar tt set b1='I4YIYKNQBOK8T1OOGR5' where id=8; -update noar ti set b1='I4YIYKNQBOK8T1OOGR5' where id=8; -update noar tt set v0='KCEW67CD9YUS' where id=8; -update noar ti set v0='KCEW67CD9YUS' where id=8; -update noar tt set b2='Q75FX4L9CUPC8B' where id=8; -update noar ti set b2='Q75FX4L9CUPC8B' where id=8; -update noar tt set v0='PWEUDK6CSU7SMTFE8MHRDRI6' where id=9; -update noar ti set v0='PWEUDK6CSU7SMTFE8MHRDRI6' where id=9; -update noar tt set b0='CN46TH3KF31A81KW0Q2BNXGRE5' where id=9; -update noar ti set b0='CN46TH3KF31A81KW0Q2BNXGRE5' where id=9; -update noar tt set v0='6FSSBVOPALV64D' where id=9; -update noar ti set v0='6FSSBVOPALV64D' where id=9; -update noar tt set b1='2BHVYYA53WPZY8R' where id=9; -update noar ti set b1='2BHVYYA53WPZY8R' where id=9; -update noar tt set v0='KN2OPHKMAK3AKEEE1CV0E5B8L' where id=9; -update noar ti set v0='KN2OPHKMAK3AKEEE1CV0E5B8L' where id=9; -update noar tt set b2='I847C7HSS26WCT' where id=9; -update noar ti set b2='I847C7HSS26WCT' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - f0 int null, - v0 varchar(256) null, - b0 mediumblob null, - b1 tinyblob null, - b2 longblob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='QH6K36CVT4MOFWFPT7ASIGBMTQ' where id=1; -update noar ti set v0='QH6K36CVT4MOFWFPT7ASIGBMTQ' where id=1; -update noar tt set b0='KYWWIJPJPJFC740FUSHV13C' where id=1; -update noar ti set b0='KYWWIJPJPJFC740FUSHV13C' where id=1; -update noar tt set v0='BVIR3ZIFIK5LQPP5L8XE94CFQX' where id=1; -update noar ti set v0='BVIR3ZIFIK5LQPP5L8XE94CFQX' where id=1; -update noar tt set b1='BHDWN391SU' where id=1; -update noar ti set b1='BHDWN391SU' where id=1; -update noar tt set v0='YD1V8YJY9FJ0LAO0NGKBLQ67CVWCGW' where id=1; -update noar ti set v0='YD1V8YJY9FJ0LAO0NGKBLQ67CVWCGW' where id=1; -update noar tt set b2='L5QS406J4LPEKBWBD' where id=1; -update noar ti set b2='L5QS406J4LPEKBWBD' where id=1; -update noar tt set v0='1AC0DQ33PWSR' where id=2; -update noar ti set v0='1AC0DQ33PWSR' where id=2; -update noar tt set b0='43Q4CLY7QFSV6G4W84CBHJGX' where id=2; -update noar ti set b0='43Q4CLY7QFSV6G4W84CBHJGX' where id=2; -update noar tt set v0='YL5YNZST4U2HM02KAEL344B' where id=2; -update noar ti set v0='YL5YNZST4U2HM02KAEL344B' where id=2; -update noar tt set b1='J' where id=2; -update noar ti set b1='J' where id=2; -update noar tt set v0='NEWUL' where id=2; -update noar ti set v0='NEWUL' where id=2; -update noar tt set b2='2O' where id=2; -update noar ti set b2='2O' where id=2; -update noar tt set v0='I2OMK9JODMVRJFVXVZ0C82MOWZ8MYS1A' where id=3; -update noar ti set v0='I2OMK9JODMVRJFVXVZ0C82MOWZ8MYS1A' where id=3; -update noar tt set b0='OJRCJGW' where id=3; -update noar ti set b0='OJRCJGW' where id=3; -update noar tt set v0='JEE1YC2ZN0J71DUVEH' where id=3; -update noar ti set v0='JEE1YC2ZN0J71DUVEH' where id=3; -update noar tt set b1='3QYLUDZR3B18RDIH7B7YEBYJ4W8HJ' where id=3; -update noar ti set b1='3QYLUDZR3B18RDIH7B7YEBYJ4W8HJ' where id=3; -update noar tt set v0='S594BSI16QSX4W4G' where id=3; -update noar ti set v0='S594BSI16QSX4W4G' where id=3; -update noar tt set b2='QP6RCNTURLSL' where id=3; -update noar ti set b2='QP6RCNTURLSL' where id=3; -update noar tt set v0='T' where id=4; -update noar ti set v0='T' where id=4; -update noar tt set b0='5' where id=4; -update noar ti set b0='5' where id=4; -update noar tt set v0='OOJ0IIMQ914CNHNC6QG2BG423LEW49' where id=4; -update noar ti set v0='OOJ0IIMQ914CNHNC6QG2BG423LEW49' where id=4; -update noar tt set b1='DAKMMKFRPIENJI2' where id=4; -update noar ti set b1='DAKMMKFRPIENJI2' where id=4; -update noar tt set v0='V17OVNSOEHPEGA81' where id=4; -update noar ti set v0='V17OVNSOEHPEGA81' where id=4; -update noar tt set b2='P6Q0' where id=4; -update noar ti set b2='P6Q0' where id=4; -update noar tt set v0='JDWALEQEYOSUHM' where id=5; -update noar ti set v0='JDWALEQEYOSUHM' where id=5; -update noar tt set b0='8UX4O6B' where id=5; -update noar ti set b0='8UX4O6B' where id=5; -update noar tt set v0='D5IUH8VXUFCD2A3DRXL39' where id=5; -update noar ti set v0='D5IUH8VXUFCD2A3DRXL39' where id=5; -update noar tt set b1='E5GK5A4UOAFU21JAJFMIJ4' where id=5; -update noar ti set b1='E5GK5A4UOAFU21JAJFMIJ4' where id=5; -update noar tt set v0='37G6QITT8UWJAQSPO6W9QMJLHHF74KB3' where id=5; -update noar ti set v0='37G6QITT8UWJAQSPO6W9QMJLHHF74KB3' where id=5; -update noar tt set b2='WXOLDPZBH7O6WE1A54RUJ3QVYKT8E' where id=5; -update noar ti set b2='WXOLDPZBH7O6WE1A54RUJ3QVYKT8E' where id=5; -update noar tt set v0='C8VRMW3LVHOC5S4' where id=6; -update noar ti set v0='C8VRMW3LVHOC5S4' where id=6; -update noar tt set b0='0YV87CFU2XYDSHJV1BM0M160BKF4' where id=6; -update noar ti set b0='0YV87CFU2XYDSHJV1BM0M160BKF4' where id=6; -update noar tt set v0='KO6V0ME4R2PFB0J0W8I5V2X4RL5REZLU' where id=6; -update noar ti set v0='KO6V0ME4R2PFB0J0W8I5V2X4RL5REZLU' where id=6; -update noar tt set b1='XXJ4R8IY69HZFWEP8VT1NNY' where id=6; -update noar ti set b1='XXJ4R8IY69HZFWEP8VT1NNY' where id=6; -update noar tt set v0='TWOV' where id=6; -update noar ti set v0='TWOV' where id=6; -update noar tt set b2='0EMX3IAEC2NFEZP' where id=6; -update noar ti set b2='0EMX3IAEC2NFEZP' where id=6; -update noar tt set v0='C6OJ2A' where id=7; -update noar ti set v0='C6OJ2A' where id=7; -update noar tt set b0='CQSIZ3GYCN3QOEQUC0B558PUM4NRPAG9' where id=7; -update noar ti set b0='CQSIZ3GYCN3QOEQUC0B558PUM4NRPAG9' where id=7; -update noar tt set v0='O0TZ6YK6Y7Y5WL7DGB7BHGAJX0N' where id=7; -update noar ti set v0='O0TZ6YK6Y7Y5WL7DGB7BHGAJX0N' where id=7; -update noar tt set b1='KAKJT3PO15XEAX6H06XYSASU8GY' where id=7; -update noar ti set b1='KAKJT3PO15XEAX6H06XYSASU8GY' where id=7; -update noar tt set v0='BSEVL' where id=7; -update noar ti set v0='BSEVL' where id=7; -update noar tt set b2='8YZUJYMYW' where id=7; -update noar ti set b2='8YZUJYMYW' where id=7; -update noar tt set v0='BSTI1E' where id=8; -update noar ti set v0='BSTI1E' where id=8; -update noar tt set b0='KLN0LA8' where id=8; -update noar ti set b0='KLN0LA8' where id=8; -update noar tt set v0='4EKCYHA04LRFBWGN6Z' where id=8; -update noar ti set v0='4EKCYHA04LRFBWGN6Z' where id=8; -update noar tt set b1='EZZRX914WC5F7V26A6TESEUQD' where id=8; -update noar ti set b1='EZZRX914WC5F7V26A6TESEUQD' where id=8; -update noar tt set v0='3M9BPW5V46K6XHA' where id=8; -update noar ti set v0='3M9BPW5V46K6XHA' where id=8; -update noar tt set b2='TSKCIU5Y5N6KYRPKDRJQ19HBVYS3C' where id=8; -update noar ti set b2='TSKCIU5Y5N6KYRPKDRJQ19HBVYS3C' where id=8; -update noar tt set v0='0LXC71ITYRX7UFGLNUGRWWVHG19B' where id=9; -update noar ti set v0='0LXC71ITYRX7UFGLNUGRWWVHG19B' where id=9; -update noar tt set b0='INH4GNQWU19CZCONEVI2X3BMH4' where id=9; -update noar ti set b0='INH4GNQWU19CZCONEVI2X3BMH4' where id=9; -update noar tt set v0='YEMOKFWHBEO9K' where id=9; -update noar ti set v0='YEMOKFWHBEO9K' where id=9; -update noar tt set b1='2CWV7QJWYPW1VP7SWH3SI3I' where id=9; -update noar ti set b1='2CWV7QJWYPW1VP7SWH3SI3I' where id=9; -update noar tt set v0='R1MN2YW8QMAVWHW1' where id=9; -update noar ti set v0='R1MN2YW8QMAVWHW1' where id=9; -update noar tt set b2='9WUD29' where id=9; -update noar ti set b2='9WUD29' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - f0 int not null, - v0 varchar(32) not null, - b0 mediumblob not null, - b1 tinyblob not null, - b2 longblob not null -) engine=tokudb; -insert into tt values (1,0,'','','',''); -insert into tt values (2,0,'','','',''); -insert into tt values (3,0,'','','',''); -insert into tt values (4,0,'','','',''); -insert into tt values (5,0,'','','',''); -insert into tt values (6,0,'','','',''); -insert into tt values (7,0,'','','',''); -insert into tt values (8,0,'','','',''); -insert into tt values (9,0,'','','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='B5T8' where id=1; -update noar ti set v0='B5T8' where id=1; -update noar tt set b0='CO660TAJODWYREKTIL8MWIW5P2AE87' where id=1; -update noar ti set b0='CO660TAJODWYREKTIL8MWIW5P2AE87' where id=1; -update noar tt set v0='T804NWS769TX4' where id=1; -update noar ti set v0='T804NWS769TX4' where id=1; -update noar tt set b1='MRIT7' where id=1; -update noar ti set b1='MRIT7' where id=1; -update noar tt set v0='P965465JJWB3B0OGMUKJYERD6A9JJQWH' where id=1; -update noar ti set v0='P965465JJWB3B0OGMUKJYERD6A9JJQWH' where id=1; -update noar tt set b2='L3VSL' where id=1; -update noar ti set b2='L3VSL' where id=1; -update noar tt set v0='A0LGKO8Q8K64CBGE41CO3QP0' where id=2; -update noar ti set v0='A0LGKO8Q8K64CBGE41CO3QP0' where id=2; -update noar tt set b0='FOWFJ0K0T2PUQ1RXKBPZFXUK1R2' where id=2; -update noar ti set b0='FOWFJ0K0T2PUQ1RXKBPZFXUK1R2' where id=2; -update noar tt set v0='C9H904Q' where id=2; -update noar ti set v0='C9H904Q' where id=2; -update noar tt set b1='G5VF3NYLN7C1VWF80P348IWXXZD9' where id=2; -update noar ti set b1='G5VF3NYLN7C1VWF80P348IWXXZD9' where id=2; -update noar tt set v0='Q8W5VA3JQ7ITF899ATZUA6304' where id=2; -update noar ti set v0='Q8W5VA3JQ7ITF899ATZUA6304' where id=2; -update noar tt set b2='F' where id=2; -update noar ti set b2='F' where id=2; -update noar tt set v0='PD2ERK4ZXXWISLGO24E18P' where id=3; -update noar ti set v0='PD2ERK4ZXXWISLGO24E18P' where id=3; -update noar tt set b0='LA67KMQ5B65VQYOWE0B' where id=3; -update noar ti set b0='LA67KMQ5B65VQYOWE0B' where id=3; -update noar tt set v0='PWN6NKI9Z4T' where id=3; -update noar ti set v0='PWN6NKI9Z4T' where id=3; -update noar tt set b1='F7Y2IVQB3LHPM23A' where id=3; -update noar ti set b1='F7Y2IVQB3LHPM23A' where id=3; -update noar tt set v0='SVJ' where id=3; -update noar ti set v0='SVJ' where id=3; -update noar tt set b2='UF7DA6ZNGPMGEV3FKZ1BSIYF6EQH5BM' where id=3; -update noar ti set b2='UF7DA6ZNGPMGEV3FKZ1BSIYF6EQH5BM' where id=3; -update noar tt set v0='KIDNWJM4D9' where id=4; -update noar ti set v0='KIDNWJM4D9' where id=4; -update noar tt set b0='E747G3' where id=4; -update noar ti set b0='E747G3' where id=4; -update noar tt set v0='Z4H3CQ0FE1H11JIZAIBDLMFDCJP55G' where id=4; -update noar ti set v0='Z4H3CQ0FE1H11JIZAIBDLMFDCJP55G' where id=4; -update noar tt set b1='524HM3B33V0O69AHSIKA' where id=4; -update noar ti set b1='524HM3B33V0O69AHSIKA' where id=4; -update noar tt set v0='VOL4RLSSP0HVD60WPW894AD34RB9' where id=4; -update noar ti set v0='VOL4RLSSP0HVD60WPW894AD34RB9' where id=4; -update noar tt set b2='4' where id=4; -update noar ti set b2='4' where id=4; -update noar tt set v0='9TE1U5U9NFQMZFHSR1R' where id=5; -update noar ti set v0='9TE1U5U9NFQMZFHSR1R' where id=5; -update noar tt set b0='X7UTGX47OC2A2F' where id=5; -update noar ti set b0='X7UTGX47OC2A2F' where id=5; -update noar tt set v0='S4CAA2KY4ZJJF5KA23R9GNEKK0IOG' where id=5; -update noar ti set v0='S4CAA2KY4ZJJF5KA23R9GNEKK0IOG' where id=5; -update noar tt set b1='94VNW042WE6Q77VSK57PCZTODOHJH' where id=5; -update noar ti set b1='94VNW042WE6Q77VSK57PCZTODOHJH' where id=5; -update noar tt set v0='7QHFHI6RCUBYZV' where id=5; -update noar ti set v0='7QHFHI6RCUBYZV' where id=5; -update noar tt set b2='TMNH1U3HUJYYF3N09S7W24' where id=5; -update noar ti set b2='TMNH1U3HUJYYF3N09S7W24' where id=5; -update noar tt set v0='BTB2NO9491ICN5IP8WZJMSLU6XP' where id=6; -update noar ti set v0='BTB2NO9491ICN5IP8WZJMSLU6XP' where id=6; -update noar tt set b0='76IMRVZPAVNFZ8UMXV' where id=6; -update noar ti set b0='76IMRVZPAVNFZ8UMXV' where id=6; -update noar tt set v0='7SZV42' where id=6; -update noar ti set v0='7SZV42' where id=6; -update noar tt set b1='E7J6TRPPXVE7O0GNXKIJF' where id=6; -update noar ti set b1='E7J6TRPPXVE7O0GNXKIJF' where id=6; -update noar tt set v0='E2O7AJASI' where id=6; -update noar ti set v0='E2O7AJASI' where id=6; -update noar tt set b2='DJXDN1UEJADMCZHZ9ID94YKV63RXITE' where id=6; -update noar ti set b2='DJXDN1UEJADMCZHZ9ID94YKV63RXITE' where id=6; -update noar tt set v0='MLRH7GDXVXLN1OC' where id=7; -update noar ti set v0='MLRH7GDXVXLN1OC' where id=7; -update noar tt set b0='DUACNJ2UV7AF4SK1SIE9PV' where id=7; -update noar ti set b0='DUACNJ2UV7AF4SK1SIE9PV' where id=7; -update noar tt set v0='A4DXTA3SN6ZT2A8B0YR69YKW57DBM' where id=7; -update noar ti set v0='A4DXTA3SN6ZT2A8B0YR69YKW57DBM' where id=7; -update noar tt set b1='EOJR5YXUNWA1R' where id=7; -update noar ti set b1='EOJR5YXUNWA1R' where id=7; -update noar tt set v0='D0LQEI2S' where id=7; -update noar ti set v0='D0LQEI2S' where id=7; -update noar tt set b2='QVNAUUOJESJ9' where id=7; -update noar ti set b2='QVNAUUOJESJ9' where id=7; -update noar tt set v0='L9BL' where id=8; -update noar ti set v0='L9BL' where id=8; -update noar tt set b0='1IN4MACQGCPUZFK5JB' where id=8; -update noar ti set b0='1IN4MACQGCPUZFK5JB' where id=8; -update noar tt set v0='4KS0T9XZOZUR73ZL4DDI4MSZZ' where id=8; -update noar ti set v0='4KS0T9XZOZUR73ZL4DDI4MSZZ' where id=8; -update noar tt set b1='C9QX5Q83QEABX0KA1Z9U' where id=8; -update noar ti set b1='C9QX5Q83QEABX0KA1Z9U' where id=8; -update noar tt set v0='87674KIIE7PMNBVEKFZCCB0Q3' where id=8; -update noar ti set v0='87674KIIE7PMNBVEKFZCCB0Q3' where id=8; -update noar tt set b2='90CJOZW8OSS' where id=8; -update noar ti set b2='90CJOZW8OSS' where id=8; -update noar tt set v0='3RKWDA8MDQLJ4OJFXUEM7KK7EBPTM74F' where id=9; -update noar ti set v0='3RKWDA8MDQLJ4OJFXUEM7KK7EBPTM74F' where id=9; -update noar tt set b0='YKBU49YBLGBEFCE' where id=9; -update noar ti set b0='YKBU49YBLGBEFCE' where id=9; -update noar tt set v0='EWEX6U9JT' where id=9; -update noar ti set v0='EWEX6U9JT' where id=9; -update noar tt set b1='PEYDDLZ4BY3958T5N44F' where id=9; -update noar ti set b1='PEYDDLZ4BY3958T5N44F' where id=9; -update noar tt set v0='UMJGWE19' where id=9; -update noar ti set v0='UMJGWE19' where id=9; -update noar tt set b2='URP014FRP0VT' where id=9; -update noar ti set b2='URP014FRP0VT' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - f0 int not null, - v0 varchar(256) not null, - b0 mediumblob not null, - b1 tinyblob not null, - b2 longblob not null -) engine=tokudb; -insert into tt values (1,0,'','','',''); -insert into tt values (2,0,'','','',''); -insert into tt values (3,0,'','','',''); -insert into tt values (4,0,'','','',''); -insert into tt values (5,0,'','','',''); -insert into tt values (6,0,'','','',''); -insert into tt values (7,0,'','','',''); -insert into tt values (8,0,'','','',''); -insert into tt values (9,0,'','','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='6ICUD1RCNYUXD5G8QH2U' where id=1; -update noar ti set v0='6ICUD1RCNYUXD5G8QH2U' where id=1; -update noar tt set b0='T1' where id=1; -update noar ti set b0='T1' where id=1; -update noar tt set v0='TK6WHZBR7W2AX7GQ9Y6HVN0Z7' where id=1; -update noar ti set v0='TK6WHZBR7W2AX7GQ9Y6HVN0Z7' where id=1; -update noar tt set b1='6018X9W9Z9MCMN3H6' where id=1; -update noar ti set b1='6018X9W9Z9MCMN3H6' where id=1; -update noar tt set v0='O09X4V22OY3' where id=1; -update noar ti set v0='O09X4V22OY3' where id=1; -update noar tt set b2='WV92NADHCLKMYZV' where id=1; -update noar ti set b2='WV92NADHCLKMYZV' where id=1; -update noar tt set v0='I8YHO0RNDEN' where id=2; -update noar ti set v0='I8YHO0RNDEN' where id=2; -update noar tt set b0='L7WIUK5PF1F17IAEMZ6QYZ3VS' where id=2; -update noar ti set b0='L7WIUK5PF1F17IAEMZ6QYZ3VS' where id=2; -update noar tt set v0='IHSJ84PGBL5BTYL54TN2IX' where id=2; -update noar ti set v0='IHSJ84PGBL5BTYL54TN2IX' where id=2; -update noar tt set b1='36YOFM5O' where id=2; -update noar ti set b1='36YOFM5O' where id=2; -update noar tt set v0='HEQL7ODFJE3EO' where id=2; -update noar ti set v0='HEQL7ODFJE3EO' where id=2; -update noar tt set b2='7GPCM6K' where id=2; -update noar ti set b2='7GPCM6K' where id=2; -update noar tt set v0='UIPTAMOL3IC39LAV' where id=3; -update noar ti set v0='UIPTAMOL3IC39LAV' where id=3; -update noar tt set b0='66BOACX' where id=3; -update noar ti set b0='66BOACX' where id=3; -update noar tt set v0='4FS' where id=3; -update noar ti set v0='4FS' where id=3; -update noar tt set b1='GG' where id=3; -update noar ti set b1='GG' where id=3; -update noar tt set v0='2ZVCNCKHBSAOQL' where id=3; -update noar ti set v0='2ZVCNCKHBSAOQL' where id=3; -update noar tt set b2='RPGCLKP5CEC6L2N1TI7FQ0L1I' where id=3; -update noar ti set b2='RPGCLKP5CEC6L2N1TI7FQ0L1I' where id=3; -update noar tt set v0='SCKOIL5H5K8B90YVHJ0MZU00R6H' where id=4; -update noar ti set v0='SCKOIL5H5K8B90YVHJ0MZU00R6H' where id=4; -update noar tt set b0='LR6Z972L5FG' where id=4; -update noar ti set b0='LR6Z972L5FG' where id=4; -update noar tt set v0='BY4CVT' where id=4; -update noar ti set v0='BY4CVT' where id=4; -update noar tt set b1='SDC' where id=4; -update noar ti set b1='SDC' where id=4; -update noar tt set v0='Y352PRISAM7MWMUYZERKSGTIXHPA1OZ' where id=4; -update noar ti set v0='Y352PRISAM7MWMUYZERKSGTIXHPA1OZ' where id=4; -update noar tt set b2='H1B7J070BUNTWK8E' where id=4; -update noar ti set b2='H1B7J070BUNTWK8E' where id=4; -update noar tt set v0='4AQH50' where id=5; -update noar ti set v0='4AQH50' where id=5; -update noar tt set b0='84IVLFZQRRJ9SH1I9J' where id=5; -update noar ti set b0='84IVLFZQRRJ9SH1I9J' where id=5; -update noar tt set v0='837GEMP8JCRPN9D4V5C' where id=5; -update noar ti set v0='837GEMP8JCRPN9D4V5C' where id=5; -update noar tt set b1='O5FKFCJ18SWQA0CKWSEXJTI3OQ4' where id=5; -update noar ti set b1='O5FKFCJ18SWQA0CKWSEXJTI3OQ4' where id=5; -update noar tt set v0='T5P7O7ITWTZAO3LJWJV1BK0' where id=5; -update noar ti set v0='T5P7O7ITWTZAO3LJWJV1BK0' where id=5; -update noar tt set b2='HMTQXKEX' where id=5; -update noar ti set b2='HMTQXKEX' where id=5; -update noar tt set v0='RJXBPTV9XI31S7T1F45F0C7A41' where id=6; -update noar ti set v0='RJXBPTV9XI31S7T1F45F0C7A41' where id=6; -update noar tt set b0='H5VNEK4OM60IZPXQR2' where id=6; -update noar ti set b0='H5VNEK4OM60IZPXQR2' where id=6; -update noar tt set v0='P03NT7AEHRHX4WM6UI2C' where id=6; -update noar ti set v0='P03NT7AEHRHX4WM6UI2C' where id=6; -update noar tt set b1='2UL7' where id=6; -update noar ti set b1='2UL7' where id=6; -update noar tt set v0='KSSES9' where id=6; -update noar ti set v0='KSSES9' where id=6; -update noar tt set b2='0R1CE' where id=6; -update noar ti set b2='0R1CE' where id=6; -update noar tt set v0='004ASRUTRXET8B55A5L2EHS' where id=7; -update noar ti set v0='004ASRUTRXET8B55A5L2EHS' where id=7; -update noar tt set b0='KMCPFG23ITA' where id=7; -update noar ti set b0='KMCPFG23ITA' where id=7; -update noar tt set v0='02Q6RRXZ402OX2D6D9I2KRVDXA4C' where id=7; -update noar ti set v0='02Q6RRXZ402OX2D6D9I2KRVDXA4C' where id=7; -update noar tt set b1='PHMMX' where id=7; -update noar ti set b1='PHMMX' where id=7; -update noar tt set v0='I699IXJ56C1EWL3IR8EASD5' where id=7; -update noar ti set v0='I699IXJ56C1EWL3IR8EASD5' where id=7; -update noar tt set b2='G4ZDG2KLOJLWCTR' where id=7; -update noar ti set b2='G4ZDG2KLOJLWCTR' where id=7; -update noar tt set v0='U48AZW3XYEDI' where id=8; -update noar ti set v0='U48AZW3XYEDI' where id=8; -update noar tt set b0='ZAQBZNMNUVV3WFJML' where id=8; -update noar ti set b0='ZAQBZNMNUVV3WFJML' where id=8; -update noar tt set v0='8B' where id=8; -update noar ti set v0='8B' where id=8; -update noar tt set b1='SH9LRS6WMZWBYYOP' where id=8; -update noar ti set b1='SH9LRS6WMZWBYYOP' where id=8; -update noar tt set v0='RCSLSOK7UM7EV5YC' where id=8; -update noar ti set v0='RCSLSOK7UM7EV5YC' where id=8; -update noar tt set b2='9RFV4DRC2QWZ78ULQFPWX' where id=8; -update noar ti set b2='9RFV4DRC2QWZ78ULQFPWX' where id=8; -update noar tt set v0='3JP8TX9UYXC01HRKUJS4FWWFLP0' where id=9; -update noar ti set v0='3JP8TX9UYXC01HRKUJS4FWWFLP0' where id=9; -update noar tt set b0='2VVWHN4JC486SPQRGB7USS42W6XYC' where id=9; -update noar ti set b0='2VVWHN4JC486SPQRGB7USS42W6XYC' where id=9; -update noar tt set v0='3' where id=9; -update noar ti set v0='3' where id=9; -update noar tt set b1='44IXRD64PHO1BZ6MQJXIR9NNT6X9' where id=9; -update noar ti set b1='44IXRD64PHO1BZ6MQJXIR9NNT6X9' where id=9; -update noar tt set v0='7SQLH7E3EL1MAMTKS9RHQ' where id=9; -update noar ti set v0='7SQLH7E3EL1MAMTKS9RHQ' where id=9; -update noar tt set b2='6F5K8QQMN5ROZ8YJUB8M3UG' where id=9; -update noar ti set b2='6F5K8QQMN5ROZ8YJUB8M3UG' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - f0 int null, - v0 varchar(32) null, - b0 mediumblob null, - b1 blob null, - b2 tinyblob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='R8QC2LK3FJ9TUON4F' where id=1; -update noar ti set v0='R8QC2LK3FJ9TUON4F' where id=1; -update noar tt set b0='XW095Q43CN08D6SWVNGMYTFWFZUY' where id=1; -update noar ti set b0='XW095Q43CN08D6SWVNGMYTFWFZUY' where id=1; -update noar tt set v0='P6IOMB9' where id=1; -update noar ti set v0='P6IOMB9' where id=1; -update noar tt set b1='ZRSNSV45CAK063WFF1EBPIVO2X' where id=1; -update noar ti set b1='ZRSNSV45CAK063WFF1EBPIVO2X' where id=1; -update noar tt set v0='X781BE65UV0H8ODU2890' where id=1; -update noar ti set v0='X781BE65UV0H8ODU2890' where id=1; -update noar tt set b2='9JA9HXZOF4VLLMIC2DMDBMYARQ6ZC45' where id=1; -update noar ti set b2='9JA9HXZOF4VLLMIC2DMDBMYARQ6ZC45' where id=1; -update noar tt set v0='8W0K6RVWR1' where id=2; -update noar ti set v0='8W0K6RVWR1' where id=2; -update noar tt set b0='Z5Q7SQY8TQ052H2ELWVQ' where id=2; -update noar ti set b0='Z5Q7SQY8TQ052H2ELWVQ' where id=2; -update noar tt set v0='CEHVCWEL0B' where id=2; -update noar ti set v0='CEHVCWEL0B' where id=2; -update noar tt set b1='VM6T54E7KMJ' where id=2; -update noar ti set b1='VM6T54E7KMJ' where id=2; -update noar tt set v0='VE22WDZ' where id=2; -update noar ti set v0='VE22WDZ' where id=2; -update noar tt set b2='A9RZQCNNJBKDMB995J1V' where id=2; -update noar ti set b2='A9RZQCNNJBKDMB995J1V' where id=2; -update noar tt set v0='GOYN6CB99Q2KSG' where id=3; -update noar ti set v0='GOYN6CB99Q2KSG' where id=3; -update noar tt set b0='Z3ZLMFUD3M0' where id=3; -update noar ti set b0='Z3ZLMFUD3M0' where id=3; -update noar tt set v0='2T2TKFUYFZSDXBRGRBX9' where id=3; -update noar ti set v0='2T2TKFUYFZSDXBRGRBX9' where id=3; -update noar tt set b1='8X1UYGUVV61YPTHI' where id=3; -update noar ti set b1='8X1UYGUVV61YPTHI' where id=3; -update noar tt set v0='UK9V1XOPRP' where id=3; -update noar ti set v0='UK9V1XOPRP' where id=3; -update noar tt set b2='IIK3I7K1EHBLJ04LO038GRFILXDWPC2I' where id=3; -update noar ti set b2='IIK3I7K1EHBLJ04LO038GRFILXDWPC2I' where id=3; -update noar tt set v0='V6Z5C0' where id=4; -update noar ti set v0='V6Z5C0' where id=4; -update noar tt set b0='OK' where id=4; -update noar ti set b0='OK' where id=4; -update noar tt set v0='SM4CK413M1DQ3I41Y5AQ8KV' where id=4; -update noar ti set v0='SM4CK413M1DQ3I41Y5AQ8KV' where id=4; -update noar tt set b1='KOCCH34SMIW' where id=4; -update noar ti set b1='KOCCH34SMIW' where id=4; -update noar tt set v0='T77UAO0HF4FG' where id=4; -update noar ti set v0='T77UAO0HF4FG' where id=4; -update noar tt set b2='E8L0JOV5ZRCF7IJ1CMB' where id=4; -update noar ti set b2='E8L0JOV5ZRCF7IJ1CMB' where id=4; -update noar tt set v0='TCDIADG65A2GNZ009XE49D' where id=5; -update noar ti set v0='TCDIADG65A2GNZ009XE49D' where id=5; -update noar tt set b0='8MXEFNSR2ZWXB0A4RUTURVKGT' where id=5; -update noar ti set b0='8MXEFNSR2ZWXB0A4RUTURVKGT' where id=5; -update noar tt set v0='R40STLD0E' where id=5; -update noar ti set v0='R40STLD0E' where id=5; -update noar tt set b1='ENSYOB814N3L5DS55' where id=5; -update noar ti set b1='ENSYOB814N3L5DS55' where id=5; -update noar tt set v0='DWL' where id=5; -update noar ti set v0='DWL' where id=5; -update noar tt set b2='O3IKTL' where id=5; -update noar ti set b2='O3IKTL' where id=5; -update noar tt set v0='I625QTG0ZNOSYY6' where id=6; -update noar ti set v0='I625QTG0ZNOSYY6' where id=6; -update noar tt set b0='KJSS' where id=6; -update noar ti set b0='KJSS' where id=6; -update noar tt set v0='MEG' where id=6; -update noar ti set v0='MEG' where id=6; -update noar tt set b1='YAVEXA' where id=6; -update noar ti set b1='YAVEXA' where id=6; -update noar tt set v0='K2HVIJE7XZ2SEQUK6CHR4WNQ521' where id=6; -update noar ti set v0='K2HVIJE7XZ2SEQUK6CHR4WNQ521' where id=6; -update noar tt set b2='3GY9BAIKRSKX7QIX27GQMZQFZIZIA2CV' where id=6; -update noar ti set b2='3GY9BAIKRSKX7QIX27GQMZQFZIZIA2CV' where id=6; -update noar tt set v0='H5KTNKJIU37H4NMK8MA3SB1ZX' where id=7; -update noar ti set v0='H5KTNKJIU37H4NMK8MA3SB1ZX' where id=7; -update noar tt set b0='4DLSCD5A' where id=7; -update noar ti set b0='4DLSCD5A' where id=7; -update noar tt set v0='027' where id=7; -update noar ti set v0='027' where id=7; -update noar tt set b1='R577GJ8DRRXOUOADUDGO' where id=7; -update noar ti set b1='R577GJ8DRRXOUOADUDGO' where id=7; -update noar tt set v0='VMX38I58JTEQ' where id=7; -update noar ti set v0='VMX38I58JTEQ' where id=7; -update noar tt set b2='D' where id=7; -update noar ti set b2='D' where id=7; -update noar tt set v0='0HUB528TLU' where id=8; -update noar ti set v0='0HUB528TLU' where id=8; -update noar tt set b0='SISMFBBG9IJ' where id=8; -update noar ti set b0='SISMFBBG9IJ' where id=8; -update noar tt set v0='SH' where id=8; -update noar ti set v0='SH' where id=8; -update noar tt set b1='5PKBSY13703MGH1RR21OGJ3PGA' where id=8; -update noar ti set b1='5PKBSY13703MGH1RR21OGJ3PGA' where id=8; -update noar tt set v0='06PXG73FRVAYONSA24X' where id=8; -update noar ti set v0='06PXG73FRVAYONSA24X' where id=8; -update noar tt set b2='7OYLAEPV3PU8FTBORQAL8CUF70MKPPG' where id=8; -update noar ti set b2='7OYLAEPV3PU8FTBORQAL8CUF70MKPPG' where id=8; -update noar tt set v0='1M5OC' where id=9; -update noar ti set v0='1M5OC' where id=9; -update noar tt set b0='P4B2KFW3D11ZUI5S08ER3NK' where id=9; -update noar ti set b0='P4B2KFW3D11ZUI5S08ER3NK' where id=9; -update noar tt set v0='B7GKKTX1EDIUQ7QSZ55GP7DXZ6LM4' where id=9; -update noar ti set v0='B7GKKTX1EDIUQ7QSZ55GP7DXZ6LM4' where id=9; -update noar tt set b1='MGLPJ' where id=9; -update noar ti set b1='MGLPJ' where id=9; -update noar tt set v0='0JEJ1C0S' where id=9; -update noar ti set v0='0JEJ1C0S' where id=9; -update noar tt set b2='P13R2' where id=9; -update noar ti set b2='P13R2' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - f0 int null, - v0 varchar(256) null, - b0 mediumblob null, - b1 blob null, - b2 tinyblob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='67BTHJWFWE0HGKZEYMU' where id=1; -update noar ti set v0='67BTHJWFWE0HGKZEYMU' where id=1; -update noar tt set b0='GAP0E1KP8L90MYLFMC6N01LDEC7KOT1' where id=1; -update noar ti set b0='GAP0E1KP8L90MYLFMC6N01LDEC7KOT1' where id=1; -update noar tt set v0='KQ7JCZ6YGQUK' where id=1; -update noar ti set v0='KQ7JCZ6YGQUK' where id=1; -update noar tt set b1='ZE0OUQIZZXN' where id=1; -update noar ti set b1='ZE0OUQIZZXN' where id=1; -update noar tt set v0='ZQLCYPCRT22QNN5GYUEBZXBLOZK48' where id=1; -update noar ti set v0='ZQLCYPCRT22QNN5GYUEBZXBLOZK48' where id=1; -update noar tt set b2='PXC5H5I9K0HPV243NF20IN6JY8' where id=1; -update noar ti set b2='PXC5H5I9K0HPV243NF20IN6JY8' where id=1; -update noar tt set v0='QPA2ZM9B2' where id=2; -update noar ti set v0='QPA2ZM9B2' where id=2; -update noar tt set b0='VNEXOVNAKX526KFG84' where id=2; -update noar ti set b0='VNEXOVNAKX526KFG84' where id=2; -update noar tt set v0='CJ58BVSXDAX02ZGK645N1JDQ' where id=2; -update noar ti set v0='CJ58BVSXDAX02ZGK645N1JDQ' where id=2; -update noar tt set b1='MDHDCKAS59ABXUXMGWPT' where id=2; -update noar ti set b1='MDHDCKAS59ABXUXMGWPT' where id=2; -update noar tt set v0='ALU' where id=2; -update noar ti set v0='ALU' where id=2; -update noar tt set b2='RNJR9E97ZPOL6L6KMU' where id=2; -update noar ti set b2='RNJR9E97ZPOL6L6KMU' where id=2; -update noar tt set v0='I377CVOQZIN8TRT9B7ZRKW27B' where id=3; -update noar ti set v0='I377CVOQZIN8TRT9B7ZRKW27B' where id=3; -update noar tt set b0='AE0VVV7WZLPFC51675YUZ2' where id=3; -update noar ti set b0='AE0VVV7WZLPFC51675YUZ2' where id=3; -update noar tt set v0='CSDAJS86J1590XZP' where id=3; -update noar ti set v0='CSDAJS86J1590XZP' where id=3; -update noar tt set b1='XI815HQWI9RUXNNPSFT05XVM6GLO' where id=3; -update noar ti set b1='XI815HQWI9RUXNNPSFT05XVM6GLO' where id=3; -update noar tt set v0='DVZAGDMMTQEM8OU916DJJET570YUW0T' where id=3; -update noar ti set v0='DVZAGDMMTQEM8OU916DJJET570YUW0T' where id=3; -update noar tt set b2='HCR5OV3FSQC5FP8155RAP' where id=3; -update noar ti set b2='HCR5OV3FSQC5FP8155RAP' where id=3; -update noar tt set v0='QUHWAN4EYATR' where id=4; -update noar ti set v0='QUHWAN4EYATR' where id=4; -update noar tt set b0='34CM0GT6WJOUHH5F4P6MWY97J' where id=4; -update noar ti set b0='34CM0GT6WJOUHH5F4P6MWY97J' where id=4; -update noar tt set v0='XK4Q00TBJNKJUSGVLH' where id=4; -update noar ti set v0='XK4Q00TBJNKJUSGVLH' where id=4; -update noar tt set b1='3WCXG6AA5X1M6JO9YZ' where id=4; -update noar ti set b1='3WCXG6AA5X1M6JO9YZ' where id=4; -update noar tt set v0='DAZ3DJH0ABMB' where id=4; -update noar ti set v0='DAZ3DJH0ABMB' where id=4; -update noar tt set b2='C5VM9LBTMDJT6OQJ8K6QW3GSO4' where id=4; -update noar ti set b2='C5VM9LBTMDJT6OQJ8K6QW3GSO4' where id=4; -update noar tt set v0='1IL299' where id=5; -update noar ti set v0='1IL299' where id=5; -update noar tt set b0='KZOM0QTTBJ90ZB' where id=5; -update noar ti set b0='KZOM0QTTBJ90ZB' where id=5; -update noar tt set v0='EUNJNXOBVA31QN3408LUHOW8B2S6' where id=5; -update noar ti set v0='EUNJNXOBVA31QN3408LUHOW8B2S6' where id=5; -update noar tt set b1='8SXR8JKCFA39FFEO3L1OID8W4DVQP8BP' where id=5; -update noar ti set b1='8SXR8JKCFA39FFEO3L1OID8W4DVQP8BP' where id=5; -update noar tt set v0='IJ6GYZP35IIFATQWH' where id=5; -update noar ti set v0='IJ6GYZP35IIFATQWH' where id=5; -update noar tt set b2='S08HKTK84JDUNPEYBP926B6FL4LDXBED' where id=5; -update noar ti set b2='S08HKTK84JDUNPEYBP926B6FL4LDXBED' where id=5; -update noar tt set v0='NNV29Q20BZ' where id=6; -update noar ti set v0='NNV29Q20BZ' where id=6; -update noar tt set b0='DI79XD7HSQTEXTDWO3A4AKBL' where id=6; -update noar ti set b0='DI79XD7HSQTEXTDWO3A4AKBL' where id=6; -update noar tt set v0='Q' where id=6; -update noar ti set v0='Q' where id=6; -update noar tt set b1='L6YXGO74SG4D6C8N5VN9FP7' where id=6; -update noar ti set b1='L6YXGO74SG4D6C8N5VN9FP7' where id=6; -update noar tt set v0='75UJEYIXOVO1QW6R6FAJ1' where id=6; -update noar ti set v0='75UJEYIXOVO1QW6R6FAJ1' where id=6; -update noar tt set b2='0M' where id=6; -update noar ti set b2='0M' where id=6; -update noar tt set v0='T00L1NMMO3GHS2QP' where id=7; -update noar ti set v0='T00L1NMMO3GHS2QP' where id=7; -update noar tt set b0='MRG1SJXK14E6VXIQ0S' where id=7; -update noar ti set b0='MRG1SJXK14E6VXIQ0S' where id=7; -update noar tt set v0='G5JNUYA44UH' where id=7; -update noar ti set v0='G5JNUYA44UH' where id=7; -update noar tt set b1='JYZ' where id=7; -update noar ti set b1='JYZ' where id=7; -update noar tt set v0='AF4KTNJDOVNZMSB' where id=7; -update noar ti set v0='AF4KTNJDOVNZMSB' where id=7; -update noar tt set b2='AJXGITWFG4JWQIZBR5H' where id=7; -update noar ti set b2='AJXGITWFG4JWQIZBR5H' where id=7; -update noar tt set v0='O50HPL6' where id=8; -update noar ti set v0='O50HPL6' where id=8; -update noar tt set b0='GR8YO1YKJWEELAFIO48G' where id=8; -update noar ti set b0='GR8YO1YKJWEELAFIO48G' where id=8; -update noar tt set v0='3R1X2BQFZKA6P0LNM' where id=8; -update noar ti set v0='3R1X2BQFZKA6P0LNM' where id=8; -update noar tt set b1='KUOVK84V5W75M' where id=8; -update noar ti set b1='KUOVK84V5W75M' where id=8; -update noar tt set v0='HUSA2VJFUP32S5AM1GROM3UR' where id=8; -update noar ti set v0='HUSA2VJFUP32S5AM1GROM3UR' where id=8; -update noar tt set b2='NLMGMJGPGPPFLIG806PCCRG5W' where id=8; -update noar ti set b2='NLMGMJGPGPPFLIG806PCCRG5W' where id=8; -update noar tt set v0='991152K' where id=9; -update noar ti set v0='991152K' where id=9; -update noar tt set b0='3F1258VOJH4DXW' where id=9; -update noar ti set b0='3F1258VOJH4DXW' where id=9; -update noar tt set v0='0VXXFX3UF4H' where id=9; -update noar ti set v0='0VXXFX3UF4H' where id=9; -update noar tt set b1='EYV771VH5QVAO8J6Q' where id=9; -update noar ti set b1='EYV771VH5QVAO8J6Q' where id=9; -update noar tt set v0='6JL311MCJIW' where id=9; -update noar ti set v0='6JL311MCJIW' where id=9; -update noar tt set b2='NOBKY' where id=9; -update noar ti set b2='NOBKY' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - f0 int not null, - v0 varchar(32) not null, - b0 mediumblob not null, - b1 blob not null, - b2 tinyblob not null -) engine=tokudb; -insert into tt values (1,0,'','','',''); -insert into tt values (2,0,'','','',''); -insert into tt values (3,0,'','','',''); -insert into tt values (4,0,'','','',''); -insert into tt values (5,0,'','','',''); -insert into tt values (6,0,'','','',''); -insert into tt values (7,0,'','','',''); -insert into tt values (8,0,'','','',''); -insert into tt values (9,0,'','','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='FQN6G7XJ37Y3YMRZO5A6CNLW60VDB5U' where id=1; -update noar ti set v0='FQN6G7XJ37Y3YMRZO5A6CNLW60VDB5U' where id=1; -update noar tt set b0='M52KWNIGXZ3MQDL6WLRXGUZ9XN9W5URQ' where id=1; -update noar ti set b0='M52KWNIGXZ3MQDL6WLRXGUZ9XN9W5URQ' where id=1; -update noar tt set v0='PR4AUXMX58G2IRMCCGGGA4OY2G' where id=1; -update noar ti set v0='PR4AUXMX58G2IRMCCGGGA4OY2G' where id=1; -update noar tt set b1='YLOEKANQP40LMJZK6HKC' where id=1; -update noar ti set b1='YLOEKANQP40LMJZK6HKC' where id=1; -update noar tt set v0='Y96RZF9X5F7GOH' where id=1; -update noar ti set v0='Y96RZF9X5F7GOH' where id=1; -update noar tt set b2='QMJLIHBXNF5T3FF5O5DS9ZY5A740C' where id=1; -update noar ti set b2='QMJLIHBXNF5T3FF5O5DS9ZY5A740C' where id=1; -update noar tt set v0='IRBK3A6SSL19AVVZK7882CN4GLHTUI' where id=2; -update noar ti set v0='IRBK3A6SSL19AVVZK7882CN4GLHTUI' where id=2; -update noar tt set b0='2650IYQGBQF3EB4407E50SP4DVD' where id=2; -update noar ti set b0='2650IYQGBQF3EB4407E50SP4DVD' where id=2; -update noar tt set v0='H2' where id=2; -update noar ti set v0='H2' where id=2; -update noar tt set b1='MLJC4538GVQOJC1QIZCFA6AD372A7L' where id=2; -update noar ti set b1='MLJC4538GVQOJC1QIZCFA6AD372A7L' where id=2; -update noar tt set v0='RTE19UD32WW93E3T2ZZ' where id=2; -update noar ti set v0='RTE19UD32WW93E3T2ZZ' where id=2; -update noar tt set b2='F' where id=2; -update noar ti set b2='F' where id=2; -update noar tt set v0='0BJYLKRJNX2TB2O47MJJ' where id=3; -update noar ti set v0='0BJYLKRJNX2TB2O47MJJ' where id=3; -update noar tt set b0='WTV1' where id=3; -update noar ti set b0='WTV1' where id=3; -update noar tt set v0='ZWUXOL6' where id=3; -update noar ti set v0='ZWUXOL6' where id=3; -update noar tt set b1='11SUJQO4YFTLMOOVF3LNULU86TT8' where id=3; -update noar ti set b1='11SUJQO4YFTLMOOVF3LNULU86TT8' where id=3; -update noar tt set v0='KXDQWZ16V42ZW32Q5QILJEYJ1SKBLND' where id=3; -update noar ti set v0='KXDQWZ16V42ZW32Q5QILJEYJ1SKBLND' where id=3; -update noar tt set b2='RD35802WDOU28WJ9JHNEAJOP9NS' where id=3; -update noar ti set b2='RD35802WDOU28WJ9JHNEAJOP9NS' where id=3; -update noar tt set v0='Y26QIP7X25UGQPBGVKCSRAM0QLE' where id=4; -update noar ti set v0='Y26QIP7X25UGQPBGVKCSRAM0QLE' where id=4; -update noar tt set b0='22QEXO3717O24F1VCJ889W83405' where id=4; -update noar ti set b0='22QEXO3717O24F1VCJ889W83405' where id=4; -update noar tt set v0='YT1' where id=4; -update noar ti set v0='YT1' where id=4; -update noar tt set b1='NLKP' where id=4; -update noar ti set b1='NLKP' where id=4; -update noar tt set v0='QJGMUBBM1L755499R' where id=4; -update noar ti set v0='QJGMUBBM1L755499R' where id=4; -update noar tt set b2='9LI09Y1GQWU0LZ6OSYU6Z31' where id=4; -update noar ti set b2='9LI09Y1GQWU0LZ6OSYU6Z31' where id=4; -update noar tt set v0='28NT8TAU8' where id=5; -update noar ti set v0='28NT8TAU8' where id=5; -update noar tt set b0='MHKU5RZP0EOMFXZR' where id=5; -update noar ti set b0='MHKU5RZP0EOMFXZR' where id=5; -update noar tt set v0='LBFX92TK76BVIN11V3SZ' where id=5; -update noar ti set v0='LBFX92TK76BVIN11V3SZ' where id=5; -update noar tt set b1='UJK' where id=5; -update noar ti set b1='UJK' where id=5; -update noar tt set v0='ASX6X96L6L5FQF0N1' where id=5; -update noar ti set v0='ASX6X96L6L5FQF0N1' where id=5; -update noar tt set b2='FXDF1YA' where id=5; -update noar ti set b2='FXDF1YA' where id=5; -update noar tt set v0='CSRDWM89AT5WXH9HI5XPTZ66DT8' where id=6; -update noar ti set v0='CSRDWM89AT5WXH9HI5XPTZ66DT8' where id=6; -update noar tt set b0='PKKO6' where id=6; -update noar ti set b0='PKKO6' where id=6; -update noar tt set v0='OXR74IFCKYZ' where id=6; -update noar ti set v0='OXR74IFCKYZ' where id=6; -update noar tt set b1='H4IS5L9ZQJIPMRGUP' where id=6; -update noar ti set b1='H4IS5L9ZQJIPMRGUP' where id=6; -update noar tt set v0='67RFAEBELGL1WQ7FVFO63A16384H9I' where id=6; -update noar ti set v0='67RFAEBELGL1WQ7FVFO63A16384H9I' where id=6; -update noar tt set b2='A4B6XL43IRA1751' where id=6; -update noar ti set b2='A4B6XL43IRA1751' where id=6; -update noar tt set v0='RIZP7PPK6OUP66EIUZS' where id=7; -update noar ti set v0='RIZP7PPK6OUP66EIUZS' where id=7; -update noar tt set b0='KP8M' where id=7; -update noar ti set b0='KP8M' where id=7; -update noar tt set v0='PH50J3BKXTSQ0W8USNS0IQW6' where id=7; -update noar ti set v0='PH50J3BKXTSQ0W8USNS0IQW6' where id=7; -update noar tt set b1='LS44E8TM6H94XBZP1MNHPDBTLJM' where id=7; -update noar ti set b1='LS44E8TM6H94XBZP1MNHPDBTLJM' where id=7; -update noar tt set v0='LJWN3SR3OC8' where id=7; -update noar ti set v0='LJWN3SR3OC8' where id=7; -update noar tt set b2='EQ4IMRHUQ1ANBUAI33JNIYM2J8P8R1' where id=7; -update noar ti set b2='EQ4IMRHUQ1ANBUAI33JNIYM2J8P8R1' where id=7; -update noar tt set v0='1D1IPKY643I7J050MOSRUC5M' where id=8; -update noar ti set v0='1D1IPKY643I7J050MOSRUC5M' where id=8; -update noar tt set b0='HX5G00MH71VBWAHGH4DK0SM' where id=8; -update noar ti set b0='HX5G00MH71VBWAHGH4DK0SM' where id=8; -update noar tt set v0='YHWLKLPWT1YMOS88A64' where id=8; -update noar ti set v0='YHWLKLPWT1YMOS88A64' where id=8; -update noar tt set b1='3P7ZN47QWV' where id=8; -update noar ti set b1='3P7ZN47QWV' where id=8; -update noar tt set v0='HET5NB5YKRUWLYPA4SBULLXE' where id=8; -update noar ti set v0='HET5NB5YKRUWLYPA4SBULLXE' where id=8; -update noar tt set b2='B2YRQAAOSYKOVPN906' where id=8; -update noar ti set b2='B2YRQAAOSYKOVPN906' where id=8; -update noar tt set v0='D7S7ER7RAEI4FCE9' where id=9; -update noar ti set v0='D7S7ER7RAEI4FCE9' where id=9; -update noar tt set b0='3A8CWYTL4PSVB' where id=9; -update noar ti set b0='3A8CWYTL4PSVB' where id=9; -update noar tt set v0='EAUGZ4AJUJG4P8E9X58EI96QZ0L5' where id=9; -update noar ti set v0='EAUGZ4AJUJG4P8E9X58EI96QZ0L5' where id=9; -update noar tt set b1='D8NRDPO7FAPIAFJJB6MIGS' where id=9; -update noar ti set b1='D8NRDPO7FAPIAFJJB6MIGS' where id=9; -update noar tt set v0='OINIE' where id=9; -update noar ti set v0='OINIE' where id=9; -update noar tt set b2='5NVE03D0PPWS0O' where id=9; -update noar ti set b2='5NVE03D0PPWS0O' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - f0 int not null, - v0 varchar(256) not null, - b0 mediumblob not null, - b1 blob not null, - b2 tinyblob not null -) engine=tokudb; -insert into tt values (1,0,'','','',''); -insert into tt values (2,0,'','','',''); -insert into tt values (3,0,'','','',''); -insert into tt values (4,0,'','','',''); -insert into tt values (5,0,'','','',''); -insert into tt values (6,0,'','','',''); -insert into tt values (7,0,'','','',''); -insert into tt values (8,0,'','','',''); -insert into tt values (9,0,'','','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='BZV2Q' where id=1; -update noar ti set v0='BZV2Q' where id=1; -update noar tt set b0='70HPAHMYEBGQ7DAZWPDUIKX4D4DAQU0' where id=1; -update noar ti set b0='70HPAHMYEBGQ7DAZWPDUIKX4D4DAQU0' where id=1; -update noar tt set v0='NPJTHWRK3A5Q7YVYAR4V2RJBKCXSLPR' where id=1; -update noar ti set v0='NPJTHWRK3A5Q7YVYAR4V2RJBKCXSLPR' where id=1; -update noar tt set b1='OLCCW9884V' where id=1; -update noar ti set b1='OLCCW9884V' where id=1; -update noar tt set v0='Y4QFAS4R3Q0UA2QIS1' where id=1; -update noar ti set v0='Y4QFAS4R3Q0UA2QIS1' where id=1; -update noar tt set b2='39PWV6V9' where id=1; -update noar ti set b2='39PWV6V9' where id=1; -update noar tt set v0='XS8N49YFK56H2CPKC' where id=2; -update noar ti set v0='XS8N49YFK56H2CPKC' where id=2; -update noar tt set b0='8F26IUJ3304SI1MJHC9VZN5TI06KW' where id=2; -update noar ti set b0='8F26IUJ3304SI1MJHC9VZN5TI06KW' where id=2; -update noar tt set v0='L1YZIY1AZ8IV' where id=2; -update noar ti set v0='L1YZIY1AZ8IV' where id=2; -update noar tt set b1='9E25QUAW7ZKWVV' where id=2; -update noar ti set b1='9E25QUAW7ZKWVV' where id=2; -update noar tt set v0='XYDESP2FWID57U2KJ0F4E7B' where id=2; -update noar ti set v0='XYDESP2FWID57U2KJ0F4E7B' where id=2; -update noar tt set b2='MZOD78TXP5X9UAL8QGUPEARGVG' where id=2; -update noar ti set b2='MZOD78TXP5X9UAL8QGUPEARGVG' where id=2; -update noar tt set v0='RDO0O4NIIXFLZTF4H4J7PF' where id=3; -update noar ti set v0='RDO0O4NIIXFLZTF4H4J7PF' where id=3; -update noar tt set b0='XRAJSP2D27E59PQ69P' where id=3; -update noar ti set b0='XRAJSP2D27E59PQ69P' where id=3; -update noar tt set v0='RSLUEJ2HYFSXHV2LZDXR5A6' where id=3; -update noar ti set v0='RSLUEJ2HYFSXHV2LZDXR5A6' where id=3; -update noar tt set b1='UCWRU80ERD5VP9I59A5XWA7VF2PQR1DD' where id=3; -update noar ti set b1='UCWRU80ERD5VP9I59A5XWA7VF2PQR1DD' where id=3; -update noar tt set v0='6Q0EVNDWO7SRQ5MHKRZ97N5M55' where id=3; -update noar ti set v0='6Q0EVNDWO7SRQ5MHKRZ97N5M55' where id=3; -update noar tt set b2='UIDKH' where id=3; -update noar ti set b2='UIDKH' where id=3; -update noar tt set v0='771WVJSIQ7LV6070SQ3A0E2WUBOF' where id=4; -update noar ti set v0='771WVJSIQ7LV6070SQ3A0E2WUBOF' where id=4; -update noar tt set b0='QZBPQNJTWVFUW415A9D' where id=4; -update noar ti set b0='QZBPQNJTWVFUW415A9D' where id=4; -update noar tt set v0='XCPT4BZLB64K' where id=4; -update noar ti set v0='XCPT4BZLB64K' where id=4; -update noar tt set b1='19UR7J9MT' where id=4; -update noar ti set b1='19UR7J9MT' where id=4; -update noar tt set v0='VOIN4KBV4X5ELC' where id=4; -update noar ti set v0='VOIN4KBV4X5ELC' where id=4; -update noar tt set b2='B0E9BCE6CX24HQ8JI' where id=4; -update noar ti set b2='B0E9BCE6CX24HQ8JI' where id=4; -update noar tt set v0='CEBPVBLWAKS42NQE6FBIIIYH814' where id=5; -update noar ti set v0='CEBPVBLWAKS42NQE6FBIIIYH814' where id=5; -update noar tt set b0='VZKRPII9Q3EC7S82BU1W2LR' where id=5; -update noar ti set b0='VZKRPII9Q3EC7S82BU1W2LR' where id=5; -update noar tt set v0='YJU85T81LMUJMPVSX4A' where id=5; -update noar ti set v0='YJU85T81LMUJMPVSX4A' where id=5; -update noar tt set b1='OCYV' where id=5; -update noar ti set b1='OCYV' where id=5; -update noar tt set v0='QNTBSI5K9YLYH5845VEV2N7LECABL9Y' where id=5; -update noar ti set v0='QNTBSI5K9YLYH5845VEV2N7LECABL9Y' where id=5; -update noar tt set b2='P65VWA3W7INEXCCFCNKTO9' where id=5; -update noar ti set b2='P65VWA3W7INEXCCFCNKTO9' where id=5; -update noar tt set v0='SU1FIL' where id=6; -update noar ti set v0='SU1FIL' where id=6; -update noar tt set b0='YZHYRTNBVSX1YA85U665VZ6' where id=6; -update noar ti set b0='YZHYRTNBVSX1YA85U665VZ6' where id=6; -update noar tt set v0='YM3VQ6KPLKNUFLHI6324' where id=6; -update noar ti set v0='YM3VQ6KPLKNUFLHI6324' where id=6; -update noar tt set b1='NEOWM' where id=6; -update noar ti set b1='NEOWM' where id=6; -update noar tt set v0='QV8W07IHSM40YC05O8R78C' where id=6; -update noar ti set v0='QV8W07IHSM40YC05O8R78C' where id=6; -update noar tt set b2='X99HHGF84VDAH91LD2M71IU107ERG8L' where id=6; -update noar ti set b2='X99HHGF84VDAH91LD2M71IU107ERG8L' where id=6; -update noar tt set v0='FU30S66VQYDKNJREU6LSPIUKBENQ' where id=7; -update noar ti set v0='FU30S66VQYDKNJREU6LSPIUKBENQ' where id=7; -update noar tt set b0='O31TH' where id=7; -update noar ti set b0='O31TH' where id=7; -update noar tt set v0='A797AJILPK6XYSNDTWZ2YII4456SY' where id=7; -update noar ti set v0='A797AJILPK6XYSNDTWZ2YII4456SY' where id=7; -update noar tt set b1='YXOHM6ECVM' where id=7; -update noar ti set b1='YXOHM6ECVM' where id=7; -update noar tt set v0='7C95XJ2LRIV6' where id=7; -update noar ti set v0='7C95XJ2LRIV6' where id=7; -update noar tt set b2='PQ435VKTYGV7YPPGIXX2SK14X' where id=7; -update noar ti set b2='PQ435VKTYGV7YPPGIXX2SK14X' where id=7; -update noar tt set v0='XGB0Y5T01LJJWBH' where id=8; -update noar ti set v0='XGB0Y5T01LJJWBH' where id=8; -update noar tt set b0='XQT4OVI4' where id=8; -update noar ti set b0='XQT4OVI4' where id=8; -update noar tt set v0='RP0YWBXHY92QPDBD04VADJQPA' where id=8; -update noar ti set v0='RP0YWBXHY92QPDBD04VADJQPA' where id=8; -update noar tt set b1='A5O9RGDGZH2F6AHI7LLW' where id=8; -update noar ti set b1='A5O9RGDGZH2F6AHI7LLW' where id=8; -update noar tt set v0='R4ZG1' where id=8; -update noar ti set v0='R4ZG1' where id=8; -update noar tt set b2='OSA7VEHFHG5U' where id=8; -update noar ti set b2='OSA7VEHFHG5U' where id=8; -update noar tt set v0='N1QKLVG' where id=9; -update noar ti set v0='N1QKLVG' where id=9; -update noar tt set b0='7YPU4WI' where id=9; -update noar ti set b0='7YPU4WI' where id=9; -update noar tt set v0='L1PPQ' where id=9; -update noar ti set v0='L1PPQ' where id=9; -update noar tt set b1='RF7W812XL67EC1CNJ3X98DR5Q' where id=9; -update noar ti set b1='RF7W812XL67EC1CNJ3X98DR5Q' where id=9; -update noar tt set v0='PAZIHGWAOVO96' where id=9; -update noar ti set v0='PAZIHGWAOVO96' where id=9; -update noar tt set b2='RPAFE' where id=9; -update noar ti set b2='RPAFE' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - f0 int null, - v0 varchar(32) null, - b0 mediumblob null, - b1 blob null, - b2 blob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='6PHBSQ7Y4VCUYALN6KYBOV521QF' where id=1; -update noar ti set v0='6PHBSQ7Y4VCUYALN6KYBOV521QF' where id=1; -update noar tt set b0='U7NO' where id=1; -update noar ti set b0='U7NO' where id=1; -update noar tt set v0='ZRC49GNPMY0FUQLO120EHOZSDM5127IR' where id=1; -update noar ti set v0='ZRC49GNPMY0FUQLO120EHOZSDM5127IR' where id=1; -update noar tt set b1='2N86J09RSRSZGE2DI6QBMRM8SVBTHN' where id=1; -update noar ti set b1='2N86J09RSRSZGE2DI6QBMRM8SVBTHN' where id=1; -update noar tt set v0='56CU7CK8YRW6XAS' where id=1; -update noar ti set v0='56CU7CK8YRW6XAS' where id=1; -update noar tt set b2='140HE0B0CTFZODPX' where id=1; -update noar ti set b2='140HE0B0CTFZODPX' where id=1; -update noar tt set v0='XSIBHV2I4BEQWHFBV057H1PMYKJV' where id=2; -update noar ti set v0='XSIBHV2I4BEQWHFBV057H1PMYKJV' where id=2; -update noar tt set b0='EDP8OE6' where id=2; -update noar ti set b0='EDP8OE6' where id=2; -update noar tt set v0='UNW7SHM336OW4M03V1KM' where id=2; -update noar ti set v0='UNW7SHM336OW4M03V1KM' where id=2; -update noar tt set b1='PKZZCG1GVZZCXLDT5' where id=2; -update noar ti set b1='PKZZCG1GVZZCXLDT5' where id=2; -update noar tt set v0='6R21CV7VK0BZ8PATQ' where id=2; -update noar ti set v0='6R21CV7VK0BZ8PATQ' where id=2; -update noar tt set b2='WVRZ37OICTKFJ5PUPSU3' where id=2; -update noar ti set b2='WVRZ37OICTKFJ5PUPSU3' where id=2; -update noar tt set v0='Y2UWX6N8RN9KHGUYIYT' where id=3; -update noar ti set v0='Y2UWX6N8RN9KHGUYIYT' where id=3; -update noar tt set b0='CY7IEJAYPZWD908MQO' where id=3; -update noar ti set b0='CY7IEJAYPZWD908MQO' where id=3; -update noar tt set v0='SC04XJTKFABZB5CFL0LHXVV1N2I5U' where id=3; -update noar ti set v0='SC04XJTKFABZB5CFL0LHXVV1N2I5U' where id=3; -update noar tt set b1='I2ANSGNBNY4TCLOB3' where id=3; -update noar ti set b1='I2ANSGNBNY4TCLOB3' where id=3; -update noar tt set v0='TEFS2EAPKQKA2UTQPEC31' where id=3; -update noar ti set v0='TEFS2EAPKQKA2UTQPEC31' where id=3; -update noar tt set b2='0BTYJPL0EU0YM1DNCD' where id=3; -update noar ti set b2='0BTYJPL0EU0YM1DNCD' where id=3; -update noar tt set v0='AEHJEOJ9J06' where id=4; -update noar ti set v0='AEHJEOJ9J06' where id=4; -update noar tt set b0='UF0468UDNV6' where id=4; -update noar ti set b0='UF0468UDNV6' where id=4; -update noar tt set v0='1ZJ0F8NQ0QQL72VM5ML' where id=4; -update noar ti set v0='1ZJ0F8NQ0QQL72VM5ML' where id=4; -update noar tt set b1='539S5OWUAOJQKJL8ZV7H8E0KJ357' where id=4; -update noar ti set b1='539S5OWUAOJQKJL8ZV7H8E0KJ357' where id=4; -update noar tt set v0='HX86B' where id=4; -update noar ti set v0='HX86B' where id=4; -update noar tt set b2='6KLR0SSIW79DQQUD75WGHG10H5X' where id=4; -update noar ti set b2='6KLR0SSIW79DQQUD75WGHG10H5X' where id=4; -update noar tt set v0='JTMC9WMMI5TAZWD0KXQY' where id=5; -update noar ti set v0='JTMC9WMMI5TAZWD0KXQY' where id=5; -update noar tt set b0='UOXYRCHEQMAPMK' where id=5; -update noar ti set b0='UOXYRCHEQMAPMK' where id=5; -update noar tt set v0='QHQ1B524526G2PIJC0GFWIY' where id=5; -update noar ti set v0='QHQ1B524526G2PIJC0GFWIY' where id=5; -update noar tt set b1='3USO7LM7XHRMYG1B7J0' where id=5; -update noar ti set b1='3USO7LM7XHRMYG1B7J0' where id=5; -update noar tt set v0='OL3GGMER2A3GJVAXK' where id=5; -update noar ti set v0='OL3GGMER2A3GJVAXK' where id=5; -update noar tt set b2='DMSE7U0ACHESDK' where id=5; -update noar ti set b2='DMSE7U0ACHESDK' where id=5; -update noar tt set v0='SR0SQ523IBKW2JE' where id=6; -update noar ti set v0='SR0SQ523IBKW2JE' where id=6; -update noar tt set b0='4359SBJQOHRT9ZFWTG' where id=6; -update noar ti set b0='4359SBJQOHRT9ZFWTG' where id=6; -update noar tt set v0='B0KW0SJ08MW340IP9GHO7IDZDRLUW3G' where id=6; -update noar ti set v0='B0KW0SJ08MW340IP9GHO7IDZDRLUW3G' where id=6; -update noar tt set b1='R7A2OW21XWPAN' where id=6; -update noar ti set b1='R7A2OW21XWPAN' where id=6; -update noar tt set v0='9OSQPO81YR11PLLYE2FD82CIU' where id=6; -update noar ti set v0='9OSQPO81YR11PLLYE2FD82CIU' where id=6; -update noar tt set b2='AKH4F4D58KIFJSBLMHPATP94S62CX' where id=6; -update noar ti set b2='AKH4F4D58KIFJSBLMHPATP94S62CX' where id=6; -update noar tt set v0='R9KO2K6MHY8ZKTTJHO2VD' where id=7; -update noar ti set v0='R9KO2K6MHY8ZKTTJHO2VD' where id=7; -update noar tt set b0='RFMU4U7385YOGELC9YZ40HW55Z81' where id=7; -update noar ti set b0='RFMU4U7385YOGELC9YZ40HW55Z81' where id=7; -update noar tt set v0='X' where id=7; -update noar ti set v0='X' where id=7; -update noar tt set b1='ZVCZVCMTN18OAD' where id=7; -update noar ti set b1='ZVCZVCMTN18OAD' where id=7; -update noar tt set v0='AG6Z6N621BYD' where id=7; -update noar ti set v0='AG6Z6N621BYD' where id=7; -update noar tt set b2='S1R2JVZBXB4SDY2QN8XZ2PQ97EOHR' where id=7; -update noar ti set b2='S1R2JVZBXB4SDY2QN8XZ2PQ97EOHR' where id=7; -update noar tt set v0='HIK5Q3LVC640VF5YFMHYDT7B0' where id=8; -update noar ti set v0='HIK5Q3LVC640VF5YFMHYDT7B0' where id=8; -update noar tt set b0='BZR3VGEQ28WWRL8YQL4QEW9Y' where id=8; -update noar ti set b0='BZR3VGEQ28WWRL8YQL4QEW9Y' where id=8; -update noar tt set v0='Z' where id=8; -update noar ti set v0='Z' where id=8; -update noar tt set b1='RITL86P5LOCCTJRS97PX857VCERWJ1M' where id=8; -update noar ti set b1='RITL86P5LOCCTJRS97PX857VCERWJ1M' where id=8; -update noar tt set v0='CB353NB8P28' where id=8; -update noar ti set v0='CB353NB8P28' where id=8; -update noar tt set b2='KAWXRL0GFD6HO1' where id=8; -update noar ti set b2='KAWXRL0GFD6HO1' where id=8; -update noar tt set v0='W5S7LRXW8U7R88985CVOFWH0' where id=9; -update noar ti set v0='W5S7LRXW8U7R88985CVOFWH0' where id=9; -update noar tt set b0='7XC' where id=9; -update noar ti set b0='7XC' where id=9; -update noar tt set v0='IT' where id=9; -update noar ti set v0='IT' where id=9; -update noar tt set b1='MI6U3DTH' where id=9; -update noar ti set b1='MI6U3DTH' where id=9; -update noar tt set v0='KZH' where id=9; -update noar ti set v0='KZH' where id=9; -update noar tt set b2='R8B05M265W2UKRNGMGPAAZLMROPNPL6' where id=9; -update noar ti set b2='R8B05M265W2UKRNGMGPAAZLMROPNPL6' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - f0 int null, - v0 varchar(256) null, - b0 mediumblob null, - b1 blob null, - b2 blob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='Y4TZBZMBF9G455X' where id=1; -update noar ti set v0='Y4TZBZMBF9G455X' where id=1; -update noar tt set b0='ES984128VENB0O3QE46YSJKTFVPVSDK' where id=1; -update noar ti set b0='ES984128VENB0O3QE46YSJKTFVPVSDK' where id=1; -update noar tt set v0='1XX2SL5AA92HNCL369LI3UFJQZM1ZAU' where id=1; -update noar ti set v0='1XX2SL5AA92HNCL369LI3UFJQZM1ZAU' where id=1; -update noar tt set b1='YR8HB73TGRC' where id=1; -update noar ti set b1='YR8HB73TGRC' where id=1; -update noar tt set v0='HGN' where id=1; -update noar ti set v0='HGN' where id=1; -update noar tt set b2='B0QL4TDP2' where id=1; -update noar ti set b2='B0QL4TDP2' where id=1; -update noar tt set v0='RR2GA9SPHKWJOX9LQK6FW1T4GOAS3CA' where id=2; -update noar ti set v0='RR2GA9SPHKWJOX9LQK6FW1T4GOAS3CA' where id=2; -update noar tt set b0='NQSEROAA6FSF' where id=2; -update noar ti set b0='NQSEROAA6FSF' where id=2; -update noar tt set v0='B35I4BRVSG0KKND7JINAP3DPGG5BAM3' where id=2; -update noar ti set v0='B35I4BRVSG0KKND7JINAP3DPGG5BAM3' where id=2; -update noar tt set b1='6QSJEX0HFNW7FH104T4INL8C' where id=2; -update noar ti set b1='6QSJEX0HFNW7FH104T4INL8C' where id=2; -update noar tt set v0='8PCOHQINEVNHHH64ZJN6QUCM' where id=2; -update noar ti set v0='8PCOHQINEVNHHH64ZJN6QUCM' where id=2; -update noar tt set b2='GL' where id=2; -update noar ti set b2='GL' where id=2; -update noar tt set v0='8Y5A8V98BP7EW2TCPN5R0MXX5CEOM' where id=3; -update noar ti set v0='8Y5A8V98BP7EW2TCPN5R0MXX5CEOM' where id=3; -update noar tt set b0='T2F0EYNFVUJLJ6NQEIAIEJNOFA6' where id=3; -update noar ti set b0='T2F0EYNFVUJLJ6NQEIAIEJNOFA6' where id=3; -update noar tt set v0='IPFSEQAHHX4SDFLSWDAL' where id=3; -update noar ti set v0='IPFSEQAHHX4SDFLSWDAL' where id=3; -update noar tt set b1='V0EFFTRX5VOWYDB2067' where id=3; -update noar ti set b1='V0EFFTRX5VOWYDB2067' where id=3; -update noar tt set v0='PV41I8M1W' where id=3; -update noar ti set v0='PV41I8M1W' where id=3; -update noar tt set b2='JUA25967FMTBO7NJAOZL' where id=3; -update noar ti set b2='JUA25967FMTBO7NJAOZL' where id=3; -update noar tt set v0='CSU9SD2PYH363GU0DJDLFIZ5CFRVBG5E' where id=4; -update noar ti set v0='CSU9SD2PYH363GU0DJDLFIZ5CFRVBG5E' where id=4; -update noar tt set b0='EDK7W3NPMYPBZYMFF8LB9J3YEVNR' where id=4; -update noar ti set b0='EDK7W3NPMYPBZYMFF8LB9J3YEVNR' where id=4; -update noar tt set v0='N0LOA5RZQWY6PUDV5D1G1DHLI8' where id=4; -update noar ti set v0='N0LOA5RZQWY6PUDV5D1G1DHLI8' where id=4; -update noar tt set b1='2UNC3' where id=4; -update noar ti set b1='2UNC3' where id=4; -update noar tt set v0='U0SDKJVX9MWJ7C6G1DD30H5251NO8X' where id=4; -update noar ti set v0='U0SDKJVX9MWJ7C6G1DD30H5251NO8X' where id=4; -update noar tt set b2='34QWF0BX23CJD7O47ICQHKM21EMEK' where id=4; -update noar ti set b2='34QWF0BX23CJD7O47ICQHKM21EMEK' where id=4; -update noar tt set v0='4ZWP6TENOTG4KUO44H7VV2F8QE7P87J' where id=5; -update noar ti set v0='4ZWP6TENOTG4KUO44H7VV2F8QE7P87J' where id=5; -update noar tt set b0='DCEOZ8QWMACAJ8YEDYQOHR5' where id=5; -update noar ti set b0='DCEOZ8QWMACAJ8YEDYQOHR5' where id=5; -update noar tt set v0='20L2FONG4TR6R51A' where id=5; -update noar ti set v0='20L2FONG4TR6R51A' where id=5; -update noar tt set b1='GNYN' where id=5; -update noar ti set b1='GNYN' where id=5; -update noar tt set v0='1CE3NRRDXST3J' where id=5; -update noar ti set v0='1CE3NRRDXST3J' where id=5; -update noar tt set b2='ZL9Z473SC' where id=5; -update noar ti set b2='ZL9Z473SC' where id=5; -update noar tt set v0='CXG89W7K117LAW4PM4' where id=6; -update noar ti set v0='CXG89W7K117LAW4PM4' where id=6; -update noar tt set b0='4HYCL4K5I' where id=6; -update noar ti set b0='4HYCL4K5I' where id=6; -update noar tt set v0='4MUTIM4AVW6EM325PCKKPRBBE' where id=6; -update noar ti set v0='4MUTIM4AVW6EM325PCKKPRBBE' where id=6; -update noar tt set b1='CZMUB7LQDSO8NXPZHFFF0R3E3H5' where id=6; -update noar ti set b1='CZMUB7LQDSO8NXPZHFFF0R3E3H5' where id=6; -update noar tt set v0='22QA6ORL' where id=6; -update noar ti set v0='22QA6ORL' where id=6; -update noar tt set b2='HF3RCHN' where id=6; -update noar ti set b2='HF3RCHN' where id=6; -update noar tt set v0='AO2AK2AJKSJ5SRVZDV4MTAX0TLUY' where id=7; -update noar ti set v0='AO2AK2AJKSJ5SRVZDV4MTAX0TLUY' where id=7; -update noar tt set b0='TXNBPAKFEMVH8074UA3FS' where id=7; -update noar ti set b0='TXNBPAKFEMVH8074UA3FS' where id=7; -update noar tt set v0='36DD99P3KEX8WEFFVF' where id=7; -update noar ti set v0='36DD99P3KEX8WEFFVF' where id=7; -update noar tt set b1='W7ZI2WD' where id=7; -update noar ti set b1='W7ZI2WD' where id=7; -update noar tt set v0='W3EF5RGS' where id=7; -update noar ti set v0='W3EF5RGS' where id=7; -update noar tt set b2='IRPNKBRGTFQMAPB57MYKVD' where id=7; -update noar ti set b2='IRPNKBRGTFQMAPB57MYKVD' where id=7; -update noar tt set v0='NHU93TBBFQ7RJBC4A562GOLNSDZRGFM' where id=8; -update noar ti set v0='NHU93TBBFQ7RJBC4A562GOLNSDZRGFM' where id=8; -update noar tt set b0='MG5ILW6D4BEFDQGVF' where id=8; -update noar ti set b0='MG5ILW6D4BEFDQGVF' where id=8; -update noar tt set v0='C0QA' where id=8; -update noar ti set v0='C0QA' where id=8; -update noar tt set b1='7Q0JVX7VLC' where id=8; -update noar ti set b1='7Q0JVX7VLC' where id=8; -update noar tt set v0='2CIXW0ML6XY71' where id=8; -update noar ti set v0='2CIXW0ML6XY71' where id=8; -update noar tt set b2='3BYHJDKFSJDX1ZH52' where id=8; -update noar ti set b2='3BYHJDKFSJDX1ZH52' where id=8; -update noar tt set v0='XF7NHJ9X25DG9EW' where id=9; -update noar ti set v0='XF7NHJ9X25DG9EW' where id=9; -update noar tt set b0='BMDKZ71VYRXAZ853WHJEF131' where id=9; -update noar ti set b0='BMDKZ71VYRXAZ853WHJEF131' where id=9; -update noar tt set v0='HTOTNKI7' where id=9; -update noar ti set v0='HTOTNKI7' where id=9; -update noar tt set b1='2AAVR46M5AMJM7Z54TNJ' where id=9; -update noar ti set b1='2AAVR46M5AMJM7Z54TNJ' where id=9; -update noar tt set v0='FFNMAEX8F18QQUUQM8K09CSQI4' where id=9; -update noar ti set v0='FFNMAEX8F18QQUUQM8K09CSQI4' where id=9; -update noar tt set b2='SD05IDPKDIOFHK1AD7' where id=9; -update noar ti set b2='SD05IDPKDIOFHK1AD7' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - f0 int not null, - v0 varchar(32) not null, - b0 mediumblob not null, - b1 blob not null, - b2 blob not null -) engine=tokudb; -insert into tt values (1,0,'','','',''); -insert into tt values (2,0,'','','',''); -insert into tt values (3,0,'','','',''); -insert into tt values (4,0,'','','',''); -insert into tt values (5,0,'','','',''); -insert into tt values (6,0,'','','',''); -insert into tt values (7,0,'','','',''); -insert into tt values (8,0,'','','',''); -insert into tt values (9,0,'','','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='TDB0XNEKN6SEIE6J13SCC44P' where id=1; -update noar ti set v0='TDB0XNEKN6SEIE6J13SCC44P' where id=1; -update noar tt set b0='HF1Z1I6DH15D7SC4XZ7NSSBXKFT' where id=1; -update noar ti set b0='HF1Z1I6DH15D7SC4XZ7NSSBXKFT' where id=1; -update noar tt set v0='VL6D1ABM7O0DCTC3B9F6Y2' where id=1; -update noar ti set v0='VL6D1ABM7O0DCTC3B9F6Y2' where id=1; -update noar tt set b1='J6KQC03N9WS5T' where id=1; -update noar ti set b1='J6KQC03N9WS5T' where id=1; -update noar tt set v0='6QDTKE' where id=1; -update noar ti set v0='6QDTKE' where id=1; -update noar tt set b2='9BXKL13NWBW8X427QPWHEWXJS4' where id=1; -update noar ti set b2='9BXKL13NWBW8X427QPWHEWXJS4' where id=1; -update noar tt set v0='YU5UJPEXI1RK9Y30' where id=2; -update noar ti set v0='YU5UJPEXI1RK9Y30' where id=2; -update noar tt set b0='LHS80SHX18' where id=2; -update noar ti set b0='LHS80SHX18' where id=2; -update noar tt set v0='NS3V5N9GAT1NKNNP4KXFH5MPV9I' where id=2; -update noar ti set v0='NS3V5N9GAT1NKNNP4KXFH5MPV9I' where id=2; -update noar tt set b1='WXLEEXPX0W8PRVFSBFRZUB1' where id=2; -update noar ti set b1='WXLEEXPX0W8PRVFSBFRZUB1' where id=2; -update noar tt set v0='BBZG9VV93QW06CEUYKT0ERCSZC4HF' where id=2; -update noar ti set v0='BBZG9VV93QW06CEUYKT0ERCSZC4HF' where id=2; -update noar tt set b2='62DESWXL6R1JXMRC' where id=2; -update noar ti set b2='62DESWXL6R1JXMRC' where id=2; -update noar tt set v0='D3B93X' where id=3; -update noar ti set v0='D3B93X' where id=3; -update noar tt set b0='VMRUKMU0QM0EALZIKKEUEHZJ' where id=3; -update noar ti set b0='VMRUKMU0QM0EALZIKKEUEHZJ' where id=3; -update noar tt set v0='0A86ZGSPK94NZPA' where id=3; -update noar ti set v0='0A86ZGSPK94NZPA' where id=3; -update noar tt set b1='KRH6037' where id=3; -update noar ti set b1='KRH6037' where id=3; -update noar tt set v0='F529R0SW0' where id=3; -update noar ti set v0='F529R0SW0' where id=3; -update noar tt set b2='LE' where id=3; -update noar ti set b2='LE' where id=3; -update noar tt set v0='O51K98R1D53XEHVWLDI8T' where id=4; -update noar ti set v0='O51K98R1D53XEHVWLDI8T' where id=4; -update noar tt set b0='IZ4' where id=4; -update noar ti set b0='IZ4' where id=4; -update noar tt set v0='OP3' where id=4; -update noar ti set v0='OP3' where id=4; -update noar tt set b1='KOO39KB4M40ZTOK5W57E3K' where id=4; -update noar ti set b1='KOO39KB4M40ZTOK5W57E3K' where id=4; -update noar tt set v0='9HNNVU' where id=4; -update noar ti set v0='9HNNVU' where id=4; -update noar tt set b2='BL72X6R33KN7M0MDGUQG1844PEMUK' where id=4; -update noar ti set b2='BL72X6R33KN7M0MDGUQG1844PEMUK' where id=4; -update noar tt set v0='IB8JAVD6B11P1CKNKQ1Z7WE6COA7K' where id=5; -update noar ti set v0='IB8JAVD6B11P1CKNKQ1Z7WE6COA7K' where id=5; -update noar tt set b0='2H2I2B0QK' where id=5; -update noar ti set b0='2H2I2B0QK' where id=5; -update noar tt set v0='KZE88XM8DOPVXGH98H6XJF' where id=5; -update noar ti set v0='KZE88XM8DOPVXGH98H6XJF' where id=5; -update noar tt set b1='U0' where id=5; -update noar ti set b1='U0' where id=5; -update noar tt set v0='PXL4AOB2VX2LZAWOY' where id=5; -update noar ti set v0='PXL4AOB2VX2LZAWOY' where id=5; -update noar tt set b2='DMZPNS6RQ' where id=5; -update noar ti set b2='DMZPNS6RQ' where id=5; -update noar tt set v0='N4J5MQ' where id=6; -update noar ti set v0='N4J5MQ' where id=6; -update noar tt set b0='XTP4Q6DJ1H6NHH1DZ2X7E' where id=6; -update noar ti set b0='XTP4Q6DJ1H6NHH1DZ2X7E' where id=6; -update noar tt set v0='MFFCTTILOEY4II3F58VRQBC7WW6IPH6K' where id=6; -update noar ti set v0='MFFCTTILOEY4II3F58VRQBC7WW6IPH6K' where id=6; -update noar tt set b1='U9BN90SLUZJ' where id=6; -update noar ti set b1='U9BN90SLUZJ' where id=6; -update noar tt set v0='O7205UUWHX55MYYLOEAAEQ5DW' where id=6; -update noar ti set v0='O7205UUWHX55MYYLOEAAEQ5DW' where id=6; -update noar tt set b2='D6EBJ0N3KAQ1DFZRTSY3PH' where id=6; -update noar ti set b2='D6EBJ0N3KAQ1DFZRTSY3PH' where id=6; -update noar tt set v0='H1IEGU70Y8EKE0VQSAY' where id=7; -update noar ti set v0='H1IEGU70Y8EKE0VQSAY' where id=7; -update noar tt set b0='ACHG6DW7QLMIPUO3UOMJ7DYS9CDGPB70' where id=7; -update noar ti set b0='ACHG6DW7QLMIPUO3UOMJ7DYS9CDGPB70' where id=7; -update noar tt set v0='E5ZI' where id=7; -update noar ti set v0='E5ZI' where id=7; -update noar tt set b1='VG34IT6J6C33WOAFK' where id=7; -update noar ti set b1='VG34IT6J6C33WOAFK' where id=7; -update noar tt set v0='4H2' where id=7; -update noar ti set v0='4H2' where id=7; -update noar tt set b2='ZVWYMD' where id=7; -update noar ti set b2='ZVWYMD' where id=7; -update noar tt set v0='OF2T87N0H2TAJ7R87' where id=8; -update noar ti set v0='OF2T87N0H2TAJ7R87' where id=8; -update noar tt set b0='6F70BEJW0WBGZUJEFP3MOO' where id=8; -update noar ti set b0='6F70BEJW0WBGZUJEFP3MOO' where id=8; -update noar tt set v0='5SCFF5' where id=8; -update noar ti set v0='5SCFF5' where id=8; -update noar tt set b1='F9' where id=8; -update noar ti set b1='F9' where id=8; -update noar tt set v0='VCEYC' where id=8; -update noar ti set v0='VCEYC' where id=8; -update noar tt set b2='LYFXXSAX3KF4LCG2WG6' where id=8; -update noar ti set b2='LYFXXSAX3KF4LCG2WG6' where id=8; -update noar tt set v0='Q7HBDAKR3WKUFG8E7J' where id=9; -update noar ti set v0='Q7HBDAKR3WKUFG8E7J' where id=9; -update noar tt set b0='ZS4ZO6M2Y6O07842Y4' where id=9; -update noar ti set b0='ZS4ZO6M2Y6O07842Y4' where id=9; -update noar tt set v0='1YP259TLCFZ' where id=9; -update noar ti set v0='1YP259TLCFZ' where id=9; -update noar tt set b1='Z4I9Q13AZVG65UV8O8XJCIJQNU' where id=9; -update noar ti set b1='Z4I9Q13AZVG65UV8O8XJCIJQNU' where id=9; -update noar tt set v0='Y1CSBR491TD2P7O7PBVX5GZOYTWC6' where id=9; -update noar ti set v0='Y1CSBR491TD2P7O7PBVX5GZOYTWC6' where id=9; -update noar tt set b2='T86II1W97FJ' where id=9; -update noar ti set b2='T86II1W97FJ' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - f0 int not null, - v0 varchar(256) not null, - b0 mediumblob not null, - b1 blob not null, - b2 blob not null -) engine=tokudb; -insert into tt values (1,0,'','','',''); -insert into tt values (2,0,'','','',''); -insert into tt values (3,0,'','','',''); -insert into tt values (4,0,'','','',''); -insert into tt values (5,0,'','','',''); -insert into tt values (6,0,'','','',''); -insert into tt values (7,0,'','','',''); -insert into tt values (8,0,'','','',''); -insert into tt values (9,0,'','','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='IGKFL4WG3' where id=1; -update noar ti set v0='IGKFL4WG3' where id=1; -update noar tt set b0='DVPJCQFD' where id=1; -update noar ti set b0='DVPJCQFD' where id=1; -update noar tt set v0='QF338QJ1VB0D050POMBUHWAXF' where id=1; -update noar ti set v0='QF338QJ1VB0D050POMBUHWAXF' where id=1; -update noar tt set b1='QM8H7W5NXQJ44KV' where id=1; -update noar ti set b1='QM8H7W5NXQJ44KV' where id=1; -update noar tt set v0='XT8ZUPD38WDTQ' where id=1; -update noar ti set v0='XT8ZUPD38WDTQ' where id=1; -update noar tt set b2='BT7CH7FQ53' where id=1; -update noar ti set b2='BT7CH7FQ53' where id=1; -update noar tt set v0='LCF861RM1M8FJAE82PQ' where id=2; -update noar ti set v0='LCF861RM1M8FJAE82PQ' where id=2; -update noar tt set b0='P7PRND4OFZ8GA62MIK96FSB6PX4' where id=2; -update noar ti set b0='P7PRND4OFZ8GA62MIK96FSB6PX4' where id=2; -update noar tt set v0='41LF' where id=2; -update noar ti set v0='41LF' where id=2; -update noar tt set b1='WF1U' where id=2; -update noar ti set b1='WF1U' where id=2; -update noar tt set v0='M' where id=2; -update noar ti set v0='M' where id=2; -update noar tt set b2='GR0VTMZ270BTZ0UPJDHELM1QV7SJ6O' where id=2; -update noar ti set b2='GR0VTMZ270BTZ0UPJDHELM1QV7SJ6O' where id=2; -update noar tt set v0='70ROSZ254I4NTDZLZZRAL0F03F' where id=3; -update noar ti set v0='70ROSZ254I4NTDZLZZRAL0F03F' where id=3; -update noar tt set b0='CVDAN1DN9' where id=3; -update noar ti set b0='CVDAN1DN9' where id=3; -update noar tt set v0='B9' where id=3; -update noar ti set v0='B9' where id=3; -update noar tt set b1='9BNQ' where id=3; -update noar ti set b1='9BNQ' where id=3; -update noar tt set v0='ISDDR7MD2IV7QU' where id=3; -update noar ti set v0='ISDDR7MD2IV7QU' where id=3; -update noar tt set b2='IY37D93XDNFNW' where id=3; -update noar ti set b2='IY37D93XDNFNW' where id=3; -update noar tt set v0='MNAX' where id=4; -update noar ti set v0='MNAX' where id=4; -update noar tt set b0='OJA4P1VJYH7C2VCBDU4EPNF5UAYDXPJ' where id=4; -update noar ti set b0='OJA4P1VJYH7C2VCBDU4EPNF5UAYDXPJ' where id=4; -update noar tt set v0='MU8ZVRAQ1RZKEVPH6NRSAK8X0' where id=4; -update noar ti set v0='MU8ZVRAQ1RZKEVPH6NRSAK8X0' where id=4; -update noar tt set b1='QHXII8ZKIBZF9GA73NZ' where id=4; -update noar ti set b1='QHXII8ZKIBZF9GA73NZ' where id=4; -update noar tt set v0='1SR1KNF7DAWK2J60ZZDMKIE9N0VPGVI' where id=4; -update noar ti set v0='1SR1KNF7DAWK2J60ZZDMKIE9N0VPGVI' where id=4; -update noar tt set b2='NFEUT3ZV6WGU4ZGC3A05NJA29MVJM7J' where id=4; -update noar ti set b2='NFEUT3ZV6WGU4ZGC3A05NJA29MVJM7J' where id=4; -update noar tt set v0='0QVJ8144RLXMSE99' where id=5; -update noar ti set v0='0QVJ8144RLXMSE99' where id=5; -update noar tt set b0='LUH7C7XZOSD8ZHEE2A77XPU1R46ADGL9' where id=5; -update noar ti set b0='LUH7C7XZOSD8ZHEE2A77XPU1R46ADGL9' where id=5; -update noar tt set v0='NCVEQTQ128JHYQ7VCMNC6RG' where id=5; -update noar ti set v0='NCVEQTQ128JHYQ7VCMNC6RG' where id=5; -update noar tt set b1='E3AUDPD5GU4PJIW0XIY6TH4' where id=5; -update noar ti set b1='E3AUDPD5GU4PJIW0XIY6TH4' where id=5; -update noar tt set v0='ALAKKAPWJR9FYXE6VP85LOW' where id=5; -update noar ti set v0='ALAKKAPWJR9FYXE6VP85LOW' where id=5; -update noar tt set b2='MQN' where id=5; -update noar ti set b2='MQN' where id=5; -update noar tt set v0='IWVWJ9ZVXW2JOAYJFG8KYMWXUF' where id=6; -update noar ti set v0='IWVWJ9ZVXW2JOAYJFG8KYMWXUF' where id=6; -update noar tt set b0='P8IW5K5TSW8PMEKGP4ZWGFR671WUQJ' where id=6; -update noar ti set b0='P8IW5K5TSW8PMEKGP4ZWGFR671WUQJ' where id=6; -update noar tt set v0='0' where id=6; -update noar ti set v0='0' where id=6; -update noar tt set b1='DBTIGJ3OL' where id=6; -update noar ti set b1='DBTIGJ3OL' where id=6; -update noar tt set v0='K9TU8ICNYTNOQK678IRSWUHQZSTLT' where id=6; -update noar ti set v0='K9TU8ICNYTNOQK678IRSWUHQZSTLT' where id=6; -update noar tt set b2='G1SPT1' where id=6; -update noar ti set b2='G1SPT1' where id=6; -update noar tt set v0='B6H2FJ0H9SW' where id=7; -update noar ti set v0='B6H2FJ0H9SW' where id=7; -update noar tt set b0='SGO7ZYPAFTA5BRQ4TQH2QT1CF3' where id=7; -update noar ti set b0='SGO7ZYPAFTA5BRQ4TQH2QT1CF3' where id=7; -update noar tt set v0='6GJPV9ERN72T0LB1UBL5YSQXO76I' where id=7; -update noar ti set v0='6GJPV9ERN72T0LB1UBL5YSQXO76I' where id=7; -update noar tt set b1='CO3Y7S0NQNM' where id=7; -update noar ti set b1='CO3Y7S0NQNM' where id=7; -update noar tt set v0='JQ4JAI0DKXGZAF54ZN1WM3TV3MSI' where id=7; -update noar ti set v0='JQ4JAI0DKXGZAF54ZN1WM3TV3MSI' where id=7; -update noar tt set b2='KPZ03UC4Z6CIV07JR2P54AR0R95' where id=7; -update noar ti set b2='KPZ03UC4Z6CIV07JR2P54AR0R95' where id=7; -update noar tt set v0='BICODOUW059Y0PEO4Q4WS' where id=8; -update noar ti set v0='BICODOUW059Y0PEO4Q4WS' where id=8; -update noar tt set b0='J0SCKLLLTZY2MNZS3WUR' where id=8; -update noar ti set b0='J0SCKLLLTZY2MNZS3WUR' where id=8; -update noar tt set v0='27ANXJ26DAL9JL5D6F10867EYI85' where id=8; -update noar ti set v0='27ANXJ26DAL9JL5D6F10867EYI85' where id=8; -update noar tt set b1='WQVV09UCZ3' where id=8; -update noar ti set b1='WQVV09UCZ3' where id=8; -update noar tt set v0='KXI126UJEIBYGEK0UN2M9RA2ZE6' where id=8; -update noar ti set v0='KXI126UJEIBYGEK0UN2M9RA2ZE6' where id=8; -update noar tt set b2='02CWRB6EEJZAHRUWK0QAN5XBCGD5H' where id=8; -update noar ti set b2='02CWRB6EEJZAHRUWK0QAN5XBCGD5H' where id=8; -update noar tt set v0='RUB04G2OPFFPVZLLFB' where id=9; -update noar ti set v0='RUB04G2OPFFPVZLLFB' where id=9; -update noar tt set b0='WIEK856NKM586SBBOY7UKMWXQ8D74LWX' where id=9; -update noar ti set b0='WIEK856NKM586SBBOY7UKMWXQ8D74LWX' where id=9; -update noar tt set v0='HCZEHMFLF' where id=9; -update noar ti set v0='HCZEHMFLF' where id=9; -update noar tt set b1='WP039LEGOIQUESIV4OQU0ECTQH' where id=9; -update noar ti set b1='WP039LEGOIQUESIV4OQU0ECTQH' where id=9; -update noar tt set v0='RFKHKT' where id=9; -update noar ti set v0='RFKHKT' where id=9; -update noar tt set b2='QOXKBTVJPDJU7' where id=9; -update noar ti set b2='QOXKBTVJPDJU7' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - f0 int null, - v0 varchar(32) null, - b0 mediumblob null, - b1 blob null, - b2 mediumblob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='90JH9JCXYSQHPI5XRY02G3S8834ZNRVH' where id=1; -update noar ti set v0='90JH9JCXYSQHPI5XRY02G3S8834ZNRVH' where id=1; -update noar tt set b0='NFS7IENZ933UAA2G7201TFFVKZ' where id=1; -update noar ti set b0='NFS7IENZ933UAA2G7201TFFVKZ' where id=1; -update noar tt set v0='V8BDNVM' where id=1; -update noar ti set v0='V8BDNVM' where id=1; -update noar tt set b1='S33OPPVOY' where id=1; -update noar ti set b1='S33OPPVOY' where id=1; -update noar tt set v0='G45V1J19G0KF3AT' where id=1; -update noar ti set v0='G45V1J19G0KF3AT' where id=1; -update noar tt set b2='D7OKFH4KWB' where id=1; -update noar ti set b2='D7OKFH4KWB' where id=1; -update noar tt set v0='ULE71DP70EUEV3' where id=2; -update noar ti set v0='ULE71DP70EUEV3' where id=2; -update noar tt set b0='KQNMZYVTGAJ' where id=2; -update noar ti set b0='KQNMZYVTGAJ' where id=2; -update noar tt set v0='PB53TL593ZQDB4MUJBHUAKVU39XE2P8' where id=2; -update noar ti set v0='PB53TL593ZQDB4MUJBHUAKVU39XE2P8' where id=2; -update noar tt set b1='AFPDV' where id=2; -update noar ti set b1='AFPDV' where id=2; -update noar tt set v0='8V3DIQB9I9AMHL2WOPC62ZPU' where id=2; -update noar ti set v0='8V3DIQB9I9AMHL2WOPC62ZPU' where id=2; -update noar tt set b2='035LJ8JWYVC4KTMUU' where id=2; -update noar ti set b2='035LJ8JWYVC4KTMUU' where id=2; -update noar tt set v0='TI4W' where id=3; -update noar ti set v0='TI4W' where id=3; -update noar tt set b0='HPHIYCBE3GHQF8FRJRQB4' where id=3; -update noar ti set b0='HPHIYCBE3GHQF8FRJRQB4' where id=3; -update noar tt set v0='5WZOJN4' where id=3; -update noar ti set v0='5WZOJN4' where id=3; -update noar tt set b1='XT2' where id=3; -update noar ti set b1='XT2' where id=3; -update noar tt set v0='260YNAXJ0HTEBQL' where id=3; -update noar ti set v0='260YNAXJ0HTEBQL' where id=3; -update noar tt set b2='KZFE7Z3VZNQBSSA3OPAU' where id=3; -update noar ti set b2='KZFE7Z3VZNQBSSA3OPAU' where id=3; -update noar tt set v0='WZ23GI' where id=4; -update noar ti set v0='WZ23GI' where id=4; -update noar tt set b0='SVTOQ0JEJJKZFHVOYN96NU98ZKK1' where id=4; -update noar ti set b0='SVTOQ0JEJJKZFHVOYN96NU98ZKK1' where id=4; -update noar tt set v0='Q9' where id=4; -update noar ti set v0='Q9' where id=4; -update noar tt set b1='4' where id=4; -update noar ti set b1='4' where id=4; -update noar tt set v0='TW206QEY0AHCEF3R6597V9GYUG62' where id=4; -update noar ti set v0='TW206QEY0AHCEF3R6597V9GYUG62' where id=4; -update noar tt set b2='2Z2XOO650CW6KL79V' where id=4; -update noar ti set b2='2Z2XOO650CW6KL79V' where id=4; -update noar tt set v0='4IRSK87QL41S61MX5IHDE0XRFLC' where id=5; -update noar ti set v0='4IRSK87QL41S61MX5IHDE0XRFLC' where id=5; -update noar tt set b0='IJO' where id=5; -update noar ti set b0='IJO' where id=5; -update noar tt set v0='A7A58GH43OTRJRL' where id=5; -update noar ti set v0='A7A58GH43OTRJRL' where id=5; -update noar tt set b1='K8VS8QQYJHBL5YRS' where id=5; -update noar ti set b1='K8VS8QQYJHBL5YRS' where id=5; -update noar tt set v0='41RFQRYTQLSWYWAU5' where id=5; -update noar ti set v0='41RFQRYTQLSWYWAU5' where id=5; -update noar tt set b2='9I307GJ2RR87G' where id=5; -update noar ti set b2='9I307GJ2RR87G' where id=5; -update noar tt set v0='IJXHXCX416P4L1YITQXJM' where id=6; -update noar ti set v0='IJXHXCX416P4L1YITQXJM' where id=6; -update noar tt set b0='OE3NV57EM9KUJC9BGYQ190DY3IE' where id=6; -update noar ti set b0='OE3NV57EM9KUJC9BGYQ190DY3IE' where id=6; -update noar tt set v0='3TS87BVZDP2KFBY9OSLGBXRE' where id=6; -update noar ti set v0='3TS87BVZDP2KFBY9OSLGBXRE' where id=6; -update noar tt set b1='FMS1EY3RZ5GT8FS' where id=6; -update noar ti set b1='FMS1EY3RZ5GT8FS' where id=6; -update noar tt set v0='MQXQV9X81EUG2WLCZEBWC9R3FKDL' where id=6; -update noar ti set v0='MQXQV9X81EUG2WLCZEBWC9R3FKDL' where id=6; -update noar tt set b2='X3IJJZP37MMKTL' where id=6; -update noar ti set b2='X3IJJZP37MMKTL' where id=6; -update noar tt set v0='X7' where id=7; -update noar ti set v0='X7' where id=7; -update noar tt set b0='CB7KZXWCEAZOGJQQUF' where id=7; -update noar ti set b0='CB7KZXWCEAZOGJQQUF' where id=7; -update noar tt set v0='ZN1EXMEX3I78YNO57WFO8J1' where id=7; -update noar ti set v0='ZN1EXMEX3I78YNO57WFO8J1' where id=7; -update noar tt set b1='PHZ5BT8KXLLCKARPTI61U6AN' where id=7; -update noar ti set b1='PHZ5BT8KXLLCKARPTI61U6AN' where id=7; -update noar tt set v0='49PDZV4AN1TF59OIY0U' where id=7; -update noar ti set v0='49PDZV4AN1TF59OIY0U' where id=7; -update noar tt set b2='NUWZ3EM87ZOQDZP02GA' where id=7; -update noar ti set b2='NUWZ3EM87ZOQDZP02GA' where id=7; -update noar tt set v0='0HQ8ZSP8TF8WXMLN2LAFP3URKT888TT5' where id=8; -update noar ti set v0='0HQ8ZSP8TF8WXMLN2LAFP3URKT888TT5' where id=8; -update noar tt set b0='ZQ4SWQW8GPQW3G4RTBM7WC' where id=8; -update noar ti set b0='ZQ4SWQW8GPQW3G4RTBM7WC' where id=8; -update noar tt set v0='EC9I07HL5JCIKBG107OKZHY3JC' where id=8; -update noar ti set v0='EC9I07HL5JCIKBG107OKZHY3JC' where id=8; -update noar tt set b1='N7IHW8R8758T' where id=8; -update noar ti set b1='N7IHW8R8758T' where id=8; -update noar tt set v0='XQU68C3V8BMY1' where id=8; -update noar ti set v0='XQU68C3V8BMY1' where id=8; -update noar tt set b2='X6SMDBM47TP4SUYWHFLZBSO' where id=8; -update noar ti set b2='X6SMDBM47TP4SUYWHFLZBSO' where id=8; -update noar tt set v0='S7HM16ES' where id=9; -update noar ti set v0='S7HM16ES' where id=9; -update noar tt set b0='EBI6UIYSAKYHSLFHNER6E' where id=9; -update noar ti set b0='EBI6UIYSAKYHSLFHNER6E' where id=9; -update noar tt set v0='1X3AYKJ0H291Z1B' where id=9; -update noar ti set v0='1X3AYKJ0H291Z1B' where id=9; -update noar tt set b1='YW91JJKQ3G27RLB93BO0AH' where id=9; -update noar ti set b1='YW91JJKQ3G27RLB93BO0AH' where id=9; -update noar tt set v0='TS22Q27WI2T' where id=9; -update noar ti set v0='TS22Q27WI2T' where id=9; -update noar tt set b2='7OBW6SE79MTOPZ8Z5XKB0' where id=9; -update noar ti set b2='7OBW6SE79MTOPZ8Z5XKB0' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - f0 int null, - v0 varchar(256) null, - b0 mediumblob null, - b1 blob null, - b2 mediumblob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='G4' where id=1; -update noar ti set v0='G4' where id=1; -update noar tt set b0='XH6LPCWIBGE7U3AR' where id=1; -update noar ti set b0='XH6LPCWIBGE7U3AR' where id=1; -update noar tt set v0='MMKJLE2N6DP8' where id=1; -update noar ti set v0='MMKJLE2N6DP8' where id=1; -update noar tt set b1='AVXULQ6J9FP4MFR8IDCVEM7K8' where id=1; -update noar ti set b1='AVXULQ6J9FP4MFR8IDCVEM7K8' where id=1; -update noar tt set v0='VQJ' where id=1; -update noar ti set v0='VQJ' where id=1; -update noar tt set b2='LDWWWO36CLHH3L5H24QY2' where id=1; -update noar ti set b2='LDWWWO36CLHH3L5H24QY2' where id=1; -update noar tt set v0='03E1MHHYX6R49QGW6H7LYM6NUDKLE6' where id=2; -update noar ti set v0='03E1MHHYX6R49QGW6H7LYM6NUDKLE6' where id=2; -update noar tt set b0='3VN6K5WUEGSWEJY7245' where id=2; -update noar ti set b0='3VN6K5WUEGSWEJY7245' where id=2; -update noar tt set v0='9S7032YS8T4JCKJCUST9XJ5' where id=2; -update noar ti set v0='9S7032YS8T4JCKJCUST9XJ5' where id=2; -update noar tt set b1='6' where id=2; -update noar ti set b1='6' where id=2; -update noar tt set v0='0M7MZB' where id=2; -update noar ti set v0='0M7MZB' where id=2; -update noar tt set b2='28J2KK5LULHTNW' where id=2; -update noar ti set b2='28J2KK5LULHTNW' where id=2; -update noar tt set v0='GEAQPS0MZ3' where id=3; -update noar ti set v0='GEAQPS0MZ3' where id=3; -update noar tt set b0='IO6J' where id=3; -update noar ti set b0='IO6J' where id=3; -update noar tt set v0='4B1HER5' where id=3; -update noar ti set v0='4B1HER5' where id=3; -update noar tt set b1='RCGLKC3DBFLRT4XE5CTVEL3KKDR' where id=3; -update noar ti set b1='RCGLKC3DBFLRT4XE5CTVEL3KKDR' where id=3; -update noar tt set v0='RITASI9U8PUUZ380ERYUD5' where id=3; -update noar ti set v0='RITASI9U8PUUZ380ERYUD5' where id=3; -update noar tt set b2='8XEQG44B8U1K4U5RJ1' where id=3; -update noar ti set b2='8XEQG44B8U1K4U5RJ1' where id=3; -update noar tt set v0='MSS0S0VYE8NUX' where id=4; -update noar ti set v0='MSS0S0VYE8NUX' where id=4; -update noar tt set b0='L' where id=4; -update noar ti set b0='L' where id=4; -update noar tt set v0='1JS3WP30RW08VIPB' where id=4; -update noar ti set v0='1JS3WP30RW08VIPB' where id=4; -update noar tt set b1='VUC7XW6P' where id=4; -update noar ti set b1='VUC7XW6P' where id=4; -update noar tt set v0='J8GKS6C9NINBCJBSKNSP8UR4ODQ63S' where id=4; -update noar ti set v0='J8GKS6C9NINBCJBSKNSP8UR4ODQ63S' where id=4; -update noar tt set b2='MFDJ3WFZL6BIW4N' where id=4; -update noar ti set b2='MFDJ3WFZL6BIW4N' where id=4; -update noar tt set v0='HUPTWNX9D' where id=5; -update noar ti set v0='HUPTWNX9D' where id=5; -update noar tt set b0='0' where id=5; -update noar ti set b0='0' where id=5; -update noar tt set v0='9E1PA6K5TBTO3E' where id=5; -update noar ti set v0='9E1PA6K5TBTO3E' where id=5; -update noar tt set b1='TG5HB6BO0U8SBZUCC' where id=5; -update noar ti set b1='TG5HB6BO0U8SBZUCC' where id=5; -update noar tt set v0='Z0N1Z0TDQ551OX82R04B5CNP' where id=5; -update noar ti set v0='Z0N1Z0TDQ551OX82R04B5CNP' where id=5; -update noar tt set b2='YJW7SAQ' where id=5; -update noar ti set b2='YJW7SAQ' where id=5; -update noar tt set v0='5JN863S' where id=6; -update noar ti set v0='5JN863S' where id=6; -update noar tt set b0='G5419V4S4HPN8I45EOD01' where id=6; -update noar ti set b0='G5419V4S4HPN8I45EOD01' where id=6; -update noar tt set v0='A5JY24D06HBDSVT6CEJI95O4PY7V6' where id=6; -update noar ti set v0='A5JY24D06HBDSVT6CEJI95O4PY7V6' where id=6; -update noar tt set b1='BQH1023SCHEIP7VZ9CL' where id=6; -update noar ti set b1='BQH1023SCHEIP7VZ9CL' where id=6; -update noar tt set v0='4GMD35TKQS3GL5EXZD' where id=6; -update noar ti set v0='4GMD35TKQS3GL5EXZD' where id=6; -update noar tt set b2='U4' where id=6; -update noar ti set b2='U4' where id=6; -update noar tt set v0='YQY91HGT6CZXPZ6FS654PI222M5JN' where id=7; -update noar ti set v0='YQY91HGT6CZXPZ6FS654PI222M5JN' where id=7; -update noar tt set b0='OCS6' where id=7; -update noar ti set b0='OCS6' where id=7; -update noar tt set v0='O9OD4U5EBJ163500XCIGXLY16E0WZ5PG' where id=7; -update noar ti set v0='O9OD4U5EBJ163500XCIGXLY16E0WZ5PG' where id=7; -update noar tt set b1='M5TC854Z3OIMPUH7OY1BFMZZDA' where id=7; -update noar ti set b1='M5TC854Z3OIMPUH7OY1BFMZZDA' where id=7; -update noar tt set v0='XL814W' where id=7; -update noar ti set v0='XL814W' where id=7; -update noar tt set b2='VK0ET6BNDNTEAW2MHXH3EQNM0G' where id=7; -update noar ti set b2='VK0ET6BNDNTEAW2MHXH3EQNM0G' where id=7; -update noar tt set v0='P7F53' where id=8; -update noar ti set v0='P7F53' where id=8; -update noar tt set b0='5RYHDUJ06' where id=8; -update noar ti set b0='5RYHDUJ06' where id=8; -update noar tt set v0='5G4X0PNV1DF5YDXBI80FFIYJAB3T7' where id=8; -update noar ti set v0='5G4X0PNV1DF5YDXBI80FFIYJAB3T7' where id=8; -update noar tt set b1='2WF5UJ0FN150C' where id=8; -update noar ti set b1='2WF5UJ0FN150C' where id=8; -update noar tt set v0='6Q2HOPX09K3ZYJP18LZ5HW4W3HI6' where id=8; -update noar ti set v0='6Q2HOPX09K3ZYJP18LZ5HW4W3HI6' where id=8; -update noar tt set b2='86TITEDXSTRL1EJ7EK76X2Z9L72LI' where id=8; -update noar ti set b2='86TITEDXSTRL1EJ7EK76X2Z9L72LI' where id=8; -update noar tt set v0='4' where id=9; -update noar ti set v0='4' where id=9; -update noar tt set b0='LIZ6X7OOK1GBKH' where id=9; -update noar ti set b0='LIZ6X7OOK1GBKH' where id=9; -update noar tt set v0='9NHM1W' where id=9; -update noar ti set v0='9NHM1W' where id=9; -update noar tt set b1='EUSA3G4DCKIFBC79MHH' where id=9; -update noar ti set b1='EUSA3G4DCKIFBC79MHH' where id=9; -update noar tt set v0='6ZF0OC6RE7' where id=9; -update noar ti set v0='6ZF0OC6RE7' where id=9; -update noar tt set b2='W3CQ5DV9L5IYL5O46PRS7OOH' where id=9; -update noar ti set b2='W3CQ5DV9L5IYL5O46PRS7OOH' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - f0 int not null, - v0 varchar(32) not null, - b0 mediumblob not null, - b1 blob not null, - b2 mediumblob not null -) engine=tokudb; -insert into tt values (1,0,'','','',''); -insert into tt values (2,0,'','','',''); -insert into tt values (3,0,'','','',''); -insert into tt values (4,0,'','','',''); -insert into tt values (5,0,'','','',''); -insert into tt values (6,0,'','','',''); -insert into tt values (7,0,'','','',''); -insert into tt values (8,0,'','','',''); -insert into tt values (9,0,'','','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='7B8FQ73YEJGZHENXAJ43UG3ZWS' where id=1; -update noar ti set v0='7B8FQ73YEJGZHENXAJ43UG3ZWS' where id=1; -update noar tt set b0='C1XZECMEXQQ85MWO702HDNF42II' where id=1; -update noar ti set b0='C1XZECMEXQQ85MWO702HDNF42II' where id=1; -update noar tt set v0='NJ1O4XLSF8AK' where id=1; -update noar ti set v0='NJ1O4XLSF8AK' where id=1; -update noar tt set b1='UB1I471NRUS' where id=1; -update noar ti set b1='UB1I471NRUS' where id=1; -update noar tt set v0='TY2ASUFN9JITJKX673UE' where id=1; -update noar ti set v0='TY2ASUFN9JITJKX673UE' where id=1; -update noar tt set b2='0H2RIMLRBQHRHZK03MYDGDZJTZ' where id=1; -update noar ti set b2='0H2RIMLRBQHRHZK03MYDGDZJTZ' where id=1; -update noar tt set v0='3FGT69LXG0L9XYPA09562K' where id=2; -update noar ti set v0='3FGT69LXG0L9XYPA09562K' where id=2; -update noar tt set b0='24NWM5SYSH99NY6NFQYSMSLDFL4P' where id=2; -update noar ti set b0='24NWM5SYSH99NY6NFQYSMSLDFL4P' where id=2; -update noar tt set v0='SRRX01W2BP76FAXDO' where id=2; -update noar ti set v0='SRRX01W2BP76FAXDO' where id=2; -update noar tt set b1='XRKFA1V97JLR3YLEK9BT37866T7O' where id=2; -update noar ti set b1='XRKFA1V97JLR3YLEK9BT37866T7O' where id=2; -update noar tt set v0='XHBWXK2YDGJL8K34GPC6B2D24Z4H5T91' where id=2; -update noar ti set v0='XHBWXK2YDGJL8K34GPC6B2D24Z4H5T91' where id=2; -update noar tt set b2='V3GBL9VLPU' where id=2; -update noar ti set b2='V3GBL9VLPU' where id=2; -update noar tt set v0='65VU4N4740WRVHVLDHA1I3' where id=3; -update noar ti set v0='65VU4N4740WRVHVLDHA1I3' where id=3; -update noar tt set b0='NIZU7BVBJUWX' where id=3; -update noar ti set b0='NIZU7BVBJUWX' where id=3; -update noar tt set v0='3T8QAATEOX7RYZKGAAVWKGFKB2' where id=3; -update noar ti set v0='3T8QAATEOX7RYZKGAAVWKGFKB2' where id=3; -update noar tt set b1='LKIFY' where id=3; -update noar ti set b1='LKIFY' where id=3; -update noar tt set v0='2VE' where id=3; -update noar ti set v0='2VE' where id=3; -update noar tt set b2='23PKF53QJK07BFDEF0TTV5' where id=3; -update noar ti set b2='23PKF53QJK07BFDEF0TTV5' where id=3; -update noar tt set v0='77' where id=4; -update noar ti set v0='77' where id=4; -update noar tt set b0='XIHVIHJ3L4LF1B6ES3' where id=4; -update noar ti set b0='XIHVIHJ3L4LF1B6ES3' where id=4; -update noar tt set v0='SKAUW22O1639PDHUM1FEZT2TKN44KN6O' where id=4; -update noar ti set v0='SKAUW22O1639PDHUM1FEZT2TKN44KN6O' where id=4; -update noar tt set b1='YI23NFUNCOEW3DGYJ51PPBOX27H' where id=4; -update noar ti set b1='YI23NFUNCOEW3DGYJ51PPBOX27H' where id=4; -update noar tt set v0='CEBPYVVT9DKIFF7YR3X2HVQ9' where id=4; -update noar ti set v0='CEBPYVVT9DKIFF7YR3X2HVQ9' where id=4; -update noar tt set b2='W33XOOJ' where id=4; -update noar ti set b2='W33XOOJ' where id=4; -update noar tt set v0='DYQO4K9X81VBRDEL' where id=5; -update noar ti set v0='DYQO4K9X81VBRDEL' where id=5; -update noar tt set b0='MD1CAIOSPXH1EX3YQGIJ9C' where id=5; -update noar ti set b0='MD1CAIOSPXH1EX3YQGIJ9C' where id=5; -update noar tt set v0='CEYMXL' where id=5; -update noar ti set v0='CEYMXL' where id=5; -update noar tt set b1='1TKM9O70B' where id=5; -update noar ti set b1='1TKM9O70B' where id=5; -update noar tt set v0='D15WZM1ZZAJYEB7E5OCJ' where id=5; -update noar ti set v0='D15WZM1ZZAJYEB7E5OCJ' where id=5; -update noar tt set b2='02' where id=5; -update noar ti set b2='02' where id=5; -update noar tt set v0='ZMGH3HEHNCWOB73J69KS' where id=6; -update noar ti set v0='ZMGH3HEHNCWOB73J69KS' where id=6; -update noar tt set b0='6ZRSRCKXIFVT33H9009L2FVLV' where id=6; -update noar ti set b0='6ZRSRCKXIFVT33H9009L2FVLV' where id=6; -update noar tt set v0='TVMU0MUTHDP71DB9LO' where id=6; -update noar ti set v0='TVMU0MUTHDP71DB9LO' where id=6; -update noar tt set b1='BBQXANP967V1SJL04RFQ32Z5NNG4M1T' where id=6; -update noar ti set b1='BBQXANP967V1SJL04RFQ32Z5NNG4M1T' where id=6; -update noar tt set v0='CNY3METERU7LAQ' where id=6; -update noar ti set v0='CNY3METERU7LAQ' where id=6; -update noar tt set b2='8L7J1EA9I4' where id=6; -update noar ti set b2='8L7J1EA9I4' where id=6; -update noar tt set v0='BZYO0JBFR3C92Z5KTYLZ' where id=7; -update noar ti set v0='BZYO0JBFR3C92Z5KTYLZ' where id=7; -update noar tt set b0='RYA22F622D1NE7JA8Y62A0EK8' where id=7; -update noar ti set b0='RYA22F622D1NE7JA8Y62A0EK8' where id=7; -update noar tt set v0='A3BZKLMK7DDTK4V510NOH1GBRYSE9JJ' where id=7; -update noar ti set v0='A3BZKLMK7DDTK4V510NOH1GBRYSE9JJ' where id=7; -update noar tt set b1='EMVLE7F3J9W3HZRXZQRBRX' where id=7; -update noar ti set b1='EMVLE7F3J9W3HZRXZQRBRX' where id=7; -update noar tt set v0='K' where id=7; -update noar ti set v0='K' where id=7; -update noar tt set b2='LXAVN' where id=7; -update noar ti set b2='LXAVN' where id=7; -update noar tt set v0='K' where id=8; -update noar ti set v0='K' where id=8; -update noar tt set b0='80YAXMS7Z6' where id=8; -update noar ti set b0='80YAXMS7Z6' where id=8; -update noar tt set v0='00HV5QHL7BGDF7KK6' where id=8; -update noar ti set v0='00HV5QHL7BGDF7KK6' where id=8; -update noar tt set b1='94O3H18FPQ2JVDSXQ1FPO8IN7TK' where id=8; -update noar ti set b1='94O3H18FPQ2JVDSXQ1FPO8IN7TK' where id=8; -update noar tt set v0='YRF744QRP1QD1M' where id=8; -update noar ti set v0='YRF744QRP1QD1M' where id=8; -update noar tt set b2='A71EQS4QAL7N' where id=8; -update noar ti set b2='A71EQS4QAL7N' where id=8; -update noar tt set v0='A7OP6WTJTPCW35089J' where id=9; -update noar ti set v0='A7OP6WTJTPCW35089J' where id=9; -update noar tt set b0='T7HJ691SN1T7' where id=9; -update noar ti set b0='T7HJ691SN1T7' where id=9; -update noar tt set v0='XUYEHWRRDKMB00MC4' where id=9; -update noar ti set v0='XUYEHWRRDKMB00MC4' where id=9; -update noar tt set b1='F4BA1MN632ESHVT7NVD4ZIA4' where id=9; -update noar ti set b1='F4BA1MN632ESHVT7NVD4ZIA4' where id=9; -update noar tt set v0='YR4OIB04J3A9E7U2U' where id=9; -update noar ti set v0='YR4OIB04J3A9E7U2U' where id=9; -update noar tt set b2='8' where id=9; -update noar ti set b2='8' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - f0 int not null, - v0 varchar(256) not null, - b0 mediumblob not null, - b1 blob not null, - b2 mediumblob not null -) engine=tokudb; -insert into tt values (1,0,'','','',''); -insert into tt values (2,0,'','','',''); -insert into tt values (3,0,'','','',''); -insert into tt values (4,0,'','','',''); -insert into tt values (5,0,'','','',''); -insert into tt values (6,0,'','','',''); -insert into tt values (7,0,'','','',''); -insert into tt values (8,0,'','','',''); -insert into tt values (9,0,'','','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='7S14B59AS35GC' where id=1; -update noar ti set v0='7S14B59AS35GC' where id=1; -update noar tt set b0='KN8YTWFLVPSGN4JUXHGF9T8YE' where id=1; -update noar ti set b0='KN8YTWFLVPSGN4JUXHGF9T8YE' where id=1; -update noar tt set v0='Z3Z' where id=1; -update noar ti set v0='Z3Z' where id=1; -update noar tt set b1='24S6JMFII5HYNSI' where id=1; -update noar ti set b1='24S6JMFII5HYNSI' where id=1; -update noar tt set v0='WKS' where id=1; -update noar ti set v0='WKS' where id=1; -update noar tt set b2='1DHIDHUA8X1AEXYVAHM6X7Q' where id=1; -update noar ti set b2='1DHIDHUA8X1AEXYVAHM6X7Q' where id=1; -update noar tt set v0='OC9EXECYRG4FQ2V8R2J3WERD' where id=2; -update noar ti set v0='OC9EXECYRG4FQ2V8R2J3WERD' where id=2; -update noar tt set b0='EET6UW7Y3078K3H9J7' where id=2; -update noar ti set b0='EET6UW7Y3078K3H9J7' where id=2; -update noar tt set v0='FA8X2M9M' where id=2; -update noar ti set v0='FA8X2M9M' where id=2; -update noar tt set b1='G' where id=2; -update noar ti set b1='G' where id=2; -update noar tt set v0='7XR4CKJ6IFDD1UM25F7' where id=2; -update noar ti set v0='7XR4CKJ6IFDD1UM25F7' where id=2; -update noar tt set b2='MSL0FLBNQ6NE2PG839WDNLPK6O2ENW' where id=2; -update noar ti set b2='MSL0FLBNQ6NE2PG839WDNLPK6O2ENW' where id=2; -update noar tt set v0='WDJKZXXI4FE' where id=3; -update noar ti set v0='WDJKZXXI4FE' where id=3; -update noar tt set b0='OSXR6QWOSPHFF' where id=3; -update noar ti set b0='OSXR6QWOSPHFF' where id=3; -update noar tt set v0='USU3W' where id=3; -update noar ti set v0='USU3W' where id=3; -update noar tt set b1='VX' where id=3; -update noar ti set b1='VX' where id=3; -update noar tt set v0='ZCQG3VMYJ2CR4LSBUQW44' where id=3; -update noar ti set v0='ZCQG3VMYJ2CR4LSBUQW44' where id=3; -update noar tt set b2='FFVQG21R9JISEKPKADFIJZVZGEO5J3BW' where id=3; -update noar ti set b2='FFVQG21R9JISEKPKADFIJZVZGEO5J3BW' where id=3; -update noar tt set v0='3PGN5LMSE' where id=4; -update noar ti set v0='3PGN5LMSE' where id=4; -update noar tt set b0='F3JGST' where id=4; -update noar ti set b0='F3JGST' where id=4; -update noar tt set v0='6WFBZVU50BEDL5US0AHBR94E3TJ' where id=4; -update noar ti set v0='6WFBZVU50BEDL5US0AHBR94E3TJ' where id=4; -update noar tt set b1='4P9QMI8ND' where id=4; -update noar ti set b1='4P9QMI8ND' where id=4; -update noar tt set v0='QZ8VMGWFLML6MS0KXG6IR8VVIVI' where id=4; -update noar ti set v0='QZ8VMGWFLML6MS0KXG6IR8VVIVI' where id=4; -update noar tt set b2='B0AQGVNEIHKFC8GNLOTW' where id=4; -update noar ti set b2='B0AQGVNEIHKFC8GNLOTW' where id=4; -update noar tt set v0='ULWJ4O4GZPO74SQYVX5R2C' where id=5; -update noar ti set v0='ULWJ4O4GZPO74SQYVX5R2C' where id=5; -update noar tt set b0='B47P87GW7HGNCJ7Q6J1V4R3HAN0Z' where id=5; -update noar ti set b0='B47P87GW7HGNCJ7Q6J1V4R3HAN0Z' where id=5; -update noar tt set v0='SPIOZOFBJ751HYZK4GXY0WW' where id=5; -update noar ti set v0='SPIOZOFBJ751HYZK4GXY0WW' where id=5; -update noar tt set b1='7O0ZNTD787TSZ0S0KI3WMD4VBQ' where id=5; -update noar ti set b1='7O0ZNTD787TSZ0S0KI3WMD4VBQ' where id=5; -update noar tt set v0='3F' where id=5; -update noar ti set v0='3F' where id=5; -update noar tt set b2='MDU46LH5OILXALG4O89A' where id=5; -update noar ti set b2='MDU46LH5OILXALG4O89A' where id=5; -update noar tt set v0='GO87SKZD39NOF2VNSXW54ZRI8HFYLM' where id=6; -update noar ti set v0='GO87SKZD39NOF2VNSXW54ZRI8HFYLM' where id=6; -update noar tt set b0='1B299U729Y5GTU9XYQ6WKP' where id=6; -update noar ti set b0='1B299U729Y5GTU9XYQ6WKP' where id=6; -update noar tt set v0='3QL1SSQ3J8ILZ' where id=6; -update noar ti set v0='3QL1SSQ3J8ILZ' where id=6; -update noar tt set b1='YW5OI10T1UVD6N35JOGCB' where id=6; -update noar ti set b1='YW5OI10T1UVD6N35JOGCB' where id=6; -update noar tt set v0='M81OQ457829G5ODMAV7GP3XJWH' where id=6; -update noar ti set v0='M81OQ457829G5ODMAV7GP3XJWH' where id=6; -update noar tt set b2='207VU3YLGSE9KQ9GT7N14QYB0MWS' where id=6; -update noar ti set b2='207VU3YLGSE9KQ9GT7N14QYB0MWS' where id=6; -update noar tt set v0='3' where id=7; -update noar ti set v0='3' where id=7; -update noar tt set b0='IB' where id=7; -update noar ti set b0='IB' where id=7; -update noar tt set v0='DD58LRPU16LY' where id=7; -update noar ti set v0='DD58LRPU16LY' where id=7; -update noar tt set b1='6VHXF4Q2K7XYGSK' where id=7; -update noar ti set b1='6VHXF4Q2K7XYGSK' where id=7; -update noar tt set v0='IRF1JKPNFPIF0SX0BYB36M' where id=7; -update noar ti set v0='IRF1JKPNFPIF0SX0BYB36M' where id=7; -update noar tt set b2='TC875JYEI4I7ENIOCG' where id=7; -update noar ti set b2='TC875JYEI4I7ENIOCG' where id=7; -update noar tt set v0='V2A6AMVQ8H5EG' where id=8; -update noar ti set v0='V2A6AMVQ8H5EG' where id=8; -update noar tt set b0='D7P56RTHEZ96ERKIAGGNQN5KBFG3TN' where id=8; -update noar ti set b0='D7P56RTHEZ96ERKIAGGNQN5KBFG3TN' where id=8; -update noar tt set v0='XC0Y8RA39VRI418' where id=8; -update noar ti set v0='XC0Y8RA39VRI418' where id=8; -update noar tt set b1='TB2IRT9CGTZSKFLOBHZZXRO0K' where id=8; -update noar ti set b1='TB2IRT9CGTZSKFLOBHZZXRO0K' where id=8; -update noar tt set v0='IGFJQ148M4ORWD' where id=8; -update noar ti set v0='IGFJQ148M4ORWD' where id=8; -update noar tt set b2='EQUEHWHEOUSTB1J0NEZ35MK9Z8NSJUU6' where id=8; -update noar ti set b2='EQUEHWHEOUSTB1J0NEZ35MK9Z8NSJUU6' where id=8; -update noar tt set v0='H8L4A07GPSM3R2TTS5GIQMZ8' where id=9; -update noar ti set v0='H8L4A07GPSM3R2TTS5GIQMZ8' where id=9; -update noar tt set b0='B33HHKKYZ11VOCLB9XKBKZD' where id=9; -update noar ti set b0='B33HHKKYZ11VOCLB9XKBKZD' where id=9; -update noar tt set v0='W0XDM4A9WI9MGZFSMG' where id=9; -update noar ti set v0='W0XDM4A9WI9MGZFSMG' where id=9; -update noar tt set b1='OKMDTPM' where id=9; -update noar ti set b1='OKMDTPM' where id=9; -update noar tt set v0='2FYVQD4MBNK3X1N994' where id=9; -update noar ti set v0='2FYVQD4MBNK3X1N994' where id=9; -update noar tt set b2='6WS7B7Y6QIOZWUML6IG899IWARPWY' where id=9; -update noar ti set b2='6WS7B7Y6QIOZWUML6IG899IWARPWY' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - f0 int null, - v0 varchar(32) null, - b0 mediumblob null, - b1 blob null, - b2 longblob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='8UR9KRLJLDKXKC' where id=1; -update noar ti set v0='8UR9KRLJLDKXKC' where id=1; -update noar tt set b0='IW2PDF5NKZA2S7DBB1Q' where id=1; -update noar ti set b0='IW2PDF5NKZA2S7DBB1Q' where id=1; -update noar tt set v0='80OU09IVF5YC9631JHKUOX4T0' where id=1; -update noar ti set v0='80OU09IVF5YC9631JHKUOX4T0' where id=1; -update noar tt set b1='1E6JDLVULNGIADOIRV2YS7E' where id=1; -update noar ti set b1='1E6JDLVULNGIADOIRV2YS7E' where id=1; -update noar tt set v0='478YRFWB761UFCQ8Q4RC6US3NV1ZG' where id=1; -update noar ti set v0='478YRFWB761UFCQ8Q4RC6US3NV1ZG' where id=1; -update noar tt set b2='L' where id=1; -update noar ti set b2='L' where id=1; -update noar tt set v0='VG7JMSSA40PC8QIRIDFZZE2FPEDHM7' where id=2; -update noar ti set v0='VG7JMSSA40PC8QIRIDFZZE2FPEDHM7' where id=2; -update noar tt set b0='JSWRJFOCTCBQ5KCD1H' where id=2; -update noar ti set b0='JSWRJFOCTCBQ5KCD1H' where id=2; -update noar tt set v0='FCGDWNEQH8JWZAHKBM' where id=2; -update noar ti set v0='FCGDWNEQH8JWZAHKBM' where id=2; -update noar tt set b1='Q48G07O10R8PXLI' where id=2; -update noar ti set b1='Q48G07O10R8PXLI' where id=2; -update noar tt set v0='9MK7ZXQA11TBMX0W73X118YE' where id=2; -update noar ti set v0='9MK7ZXQA11TBMX0W73X118YE' where id=2; -update noar tt set b2='C6941HH7MM7H0K6QFR5Y' where id=2; -update noar ti set b2='C6941HH7MM7H0K6QFR5Y' where id=2; -update noar tt set v0='GKNZ' where id=3; -update noar ti set v0='GKNZ' where id=3; -update noar tt set b0='EV5RZK5WMXJ7MC96C7L' where id=3; -update noar ti set b0='EV5RZK5WMXJ7MC96C7L' where id=3; -update noar tt set v0='6M7NBNE5IXGW981NCUH1THKFVJTXHO' where id=3; -update noar ti set v0='6M7NBNE5IXGW981NCUH1THKFVJTXHO' where id=3; -update noar tt set b1='2G3BXPL43AYT' where id=3; -update noar ti set b1='2G3BXPL43AYT' where id=3; -update noar tt set v0='1C361A31AHEV5SI6QZO47VXDTBKFD03' where id=3; -update noar ti set v0='1C361A31AHEV5SI6QZO47VXDTBKFD03' where id=3; -update noar tt set b2='3NCH' where id=3; -update noar ti set b2='3NCH' where id=3; -update noar tt set v0='497S15D5IBFH1JAOPY4KKFIUEK' where id=4; -update noar ti set v0='497S15D5IBFH1JAOPY4KKFIUEK' where id=4; -update noar tt set b0='FH' where id=4; -update noar ti set b0='FH' where id=4; -update noar tt set v0='WPZASKJ0GKT3R9YRCUM4WLYY2MG' where id=4; -update noar ti set v0='WPZASKJ0GKT3R9YRCUM4WLYY2MG' where id=4; -update noar tt set b1='F31K3A4HQP9AWPSH2Z28XAA7JYUR' where id=4; -update noar ti set b1='F31K3A4HQP9AWPSH2Z28XAA7JYUR' where id=4; -update noar tt set v0='48X3SY' where id=4; -update noar ti set v0='48X3SY' where id=4; -update noar tt set b2='D1W1JDMTTX3YPW96OODLDJK' where id=4; -update noar ti set b2='D1W1JDMTTX3YPW96OODLDJK' where id=4; -update noar tt set v0='CWVELQR6UGSHBWXL9X94R7W54ZIM8D' where id=5; -update noar ti set v0='CWVELQR6UGSHBWXL9X94R7W54ZIM8D' where id=5; -update noar tt set b0='N2NFABMYWYW2U8SHQ7LQ2JQSUFC' where id=5; -update noar ti set b0='N2NFABMYWYW2U8SHQ7LQ2JQSUFC' where id=5; -update noar tt set v0='B1L' where id=5; -update noar ti set v0='B1L' where id=5; -update noar tt set b1='1CS7NV5YO05SWF' where id=5; -update noar ti set b1='1CS7NV5YO05SWF' where id=5; -update noar tt set v0='ZPZIA8HUB8WAKF5LKB1V0KS' where id=5; -update noar ti set v0='ZPZIA8HUB8WAKF5LKB1V0KS' where id=5; -update noar tt set b2='1BM6MLZHYFJC9P7E58WC' where id=5; -update noar ti set b2='1BM6MLZHYFJC9P7E58WC' where id=5; -update noar tt set v0='TUO29W31B8XINLH' where id=6; -update noar ti set v0='TUO29W31B8XINLH' where id=6; -update noar tt set b0='GQ531HW8F82O6' where id=6; -update noar ti set b0='GQ531HW8F82O6' where id=6; -update noar tt set v0='IA' where id=6; -update noar ti set v0='IA' where id=6; -update noar tt set b1='B33DK98SAWJHKFL1YVGFWM' where id=6; -update noar ti set b1='B33DK98SAWJHKFL1YVGFWM' where id=6; -update noar tt set v0='TV4GKDE9H1OBU' where id=6; -update noar ti set v0='TV4GKDE9H1OBU' where id=6; -update noar tt set b2='6AOTB3AERUJC92K2LOKK' where id=6; -update noar ti set b2='6AOTB3AERUJC92K2LOKK' where id=6; -update noar tt set v0='MD6UNO940OBMWIF6NSE2A8V9EL' where id=7; -update noar ti set v0='MD6UNO940OBMWIF6NSE2A8V9EL' where id=7; -update noar tt set b0='QQL13XE45GBT1TQ2MWIAIB' where id=7; -update noar ti set b0='QQL13XE45GBT1TQ2MWIAIB' where id=7; -update noar tt set v0='EI' where id=7; -update noar ti set v0='EI' where id=7; -update noar tt set b1='RNM652MLJZT0' where id=7; -update noar ti set b1='RNM652MLJZT0' where id=7; -update noar tt set v0='FQYKNTX3A9GKZ5SPC19AXYUCPV' where id=7; -update noar ti set v0='FQYKNTX3A9GKZ5SPC19AXYUCPV' where id=7; -update noar tt set b2='JNNOHSDRG64OXE0OB' where id=7; -update noar ti set b2='JNNOHSDRG64OXE0OB' where id=7; -update noar tt set v0='2HZDFN8KN6PM61FR3A2' where id=8; -update noar ti set v0='2HZDFN8KN6PM61FR3A2' where id=8; -update noar tt set b0='2' where id=8; -update noar ti set b0='2' where id=8; -update noar tt set v0='P51974RMYC4L7HHQMQKDKM8JHHQGUP' where id=8; -update noar ti set v0='P51974RMYC4L7HHQMQKDKM8JHHQGUP' where id=8; -update noar tt set b1='M' where id=8; -update noar ti set b1='M' where id=8; -update noar tt set v0='HGOO5962UPC2X3V' where id=8; -update noar ti set v0='HGOO5962UPC2X3V' where id=8; -update noar tt set b2='A52KYQ50PN0' where id=8; -update noar ti set b2='A52KYQ50PN0' where id=8; -update noar tt set v0='J073' where id=9; -update noar ti set v0='J073' where id=9; -update noar tt set b0='N544CFIGEXJSF0TT6M67KERQ69FQNY1' where id=9; -update noar ti set b0='N544CFIGEXJSF0TT6M67KERQ69FQNY1' where id=9; -update noar tt set v0='OIZK769PG' where id=9; -update noar ti set v0='OIZK769PG' where id=9; -update noar tt set b1='KJM0MPAE2BY205YCVEENTT6TNFR1' where id=9; -update noar ti set b1='KJM0MPAE2BY205YCVEENTT6TNFR1' where id=9; -update noar tt set v0='2G6NVTY6AC0U0M9GRVB1NSZ62GC2NK' where id=9; -update noar ti set v0='2G6NVTY6AC0U0M9GRVB1NSZ62GC2NK' where id=9; -update noar tt set b2='79P1V68U0' where id=9; -update noar ti set b2='79P1V68U0' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - f0 int null, - v0 varchar(256) null, - b0 mediumblob null, - b1 blob null, - b2 longblob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='ISR9WXX6PGU' where id=1; -update noar ti set v0='ISR9WXX6PGU' where id=1; -update noar tt set b0='8Z1N0UMH54VIAAKXUQOMQ3' where id=1; -update noar ti set b0='8Z1N0UMH54VIAAKXUQOMQ3' where id=1; -update noar tt set v0='9JYGYBM' where id=1; -update noar ti set v0='9JYGYBM' where id=1; -update noar tt set b1='OGVAZSKD2' where id=1; -update noar ti set b1='OGVAZSKD2' where id=1; -update noar tt set v0='WNJS0UUMDUA7GANHY6HM6OL6C5LZ' where id=1; -update noar ti set v0='WNJS0UUMDUA7GANHY6HM6OL6C5LZ' where id=1; -update noar tt set b2='S32' where id=1; -update noar ti set b2='S32' where id=1; -update noar tt set v0='I2J0STKJAZDOVQH4QZ27PR6T8' where id=2; -update noar ti set v0='I2J0STKJAZDOVQH4QZ27PR6T8' where id=2; -update noar tt set b0='NKVX1YV7F20DRRGY' where id=2; -update noar ti set b0='NKVX1YV7F20DRRGY' where id=2; -update noar tt set v0='92T1NMQ78Q5OAMG9' where id=2; -update noar ti set v0='92T1NMQ78Q5OAMG9' where id=2; -update noar tt set b1='U36L4WFXYIJQRPN7TJ71F1' where id=2; -update noar ti set b1='U36L4WFXYIJQRPN7TJ71F1' where id=2; -update noar tt set v0='VYOZ88ZMKKRABK0VBP0' where id=2; -update noar ti set v0='VYOZ88ZMKKRABK0VBP0' where id=2; -update noar tt set b2='HGJ1H6PW0J24CGMP1DHSZ24BYI49R' where id=2; -update noar ti set b2='HGJ1H6PW0J24CGMP1DHSZ24BYI49R' where id=2; -update noar tt set v0='SS7BOL6H7N0XCR4SFVA2Z94NVP40E' where id=3; -update noar ti set v0='SS7BOL6H7N0XCR4SFVA2Z94NVP40E' where id=3; -update noar tt set b0='4ZE1WNY0JQMNRASFYM4HL6' where id=3; -update noar ti set b0='4ZE1WNY0JQMNRASFYM4HL6' where id=3; -update noar tt set v0='J7QNHGSIAGQFK8MUAKU530FLS5Q47GL' where id=3; -update noar ti set v0='J7QNHGSIAGQFK8MUAKU530FLS5Q47GL' where id=3; -update noar tt set b1='PC6BA9R5LLFR3GUDH' where id=3; -update noar ti set b1='PC6BA9R5LLFR3GUDH' where id=3; -update noar tt set v0='P4926J2FC3PIZPATF9Q8WA8CKB' where id=3; -update noar ti set v0='P4926J2FC3PIZPATF9Q8WA8CKB' where id=3; -update noar tt set b2='S15' where id=3; -update noar ti set b2='S15' where id=3; -update noar tt set v0='L7YR' where id=4; -update noar ti set v0='L7YR' where id=4; -update noar tt set b0='SP35PUJV65' where id=4; -update noar ti set b0='SP35PUJV65' where id=4; -update noar tt set v0='9' where id=4; -update noar ti set v0='9' where id=4; -update noar tt set b1='VH9EZQ4JNE' where id=4; -update noar ti set b1='VH9EZQ4JNE' where id=4; -update noar tt set v0='YFJNI1D' where id=4; -update noar ti set v0='YFJNI1D' where id=4; -update noar tt set b2='L79RVMADYMG3ZB1FYIMM' where id=4; -update noar ti set b2='L79RVMADYMG3ZB1FYIMM' where id=4; -update noar tt set v0='H4QSO5PO546ZL6L' where id=5; -update noar ti set v0='H4QSO5PO546ZL6L' where id=5; -update noar tt set b0='DRWAD8MAYLAOXBTPCMPQZR87' where id=5; -update noar ti set b0='DRWAD8MAYLAOXBTPCMPQZR87' where id=5; -update noar tt set v0='XR0OCXAGQR' where id=5; -update noar ti set v0='XR0OCXAGQR' where id=5; -update noar tt set b1='SDQUEK7CI1DZ8AWS1TW' where id=5; -update noar ti set b1='SDQUEK7CI1DZ8AWS1TW' where id=5; -update noar tt set v0='PJ6D3SK79R8LRTU0' where id=5; -update noar ti set v0='PJ6D3SK79R8LRTU0' where id=5; -update noar tt set b2='RV2AEIERE7' where id=5; -update noar ti set b2='RV2AEIERE7' where id=5; -update noar tt set v0='Y1NB36ESX4AVRM2TW6N' where id=6; -update noar ti set v0='Y1NB36ESX4AVRM2TW6N' where id=6; -update noar tt set b0='FZBOACYRVYUE3P9AAY' where id=6; -update noar ti set b0='FZBOACYRVYUE3P9AAY' where id=6; -update noar tt set v0='IDCAQXXEEDIVD1RNS61G01GYYNNB' where id=6; -update noar ti set v0='IDCAQXXEEDIVD1RNS61G01GYYNNB' where id=6; -update noar tt set b1='4X3OUQ8NFKW45PMYD4' where id=6; -update noar ti set b1='4X3OUQ8NFKW45PMYD4' where id=6; -update noar tt set v0='RTU5J32' where id=6; -update noar ti set v0='RTU5J32' where id=6; -update noar tt set b2='0N' where id=6; -update noar ti set b2='0N' where id=6; -update noar tt set v0='ZZNVIX3IHKY3FOV1LV6AQ' where id=7; -update noar ti set v0='ZZNVIX3IHKY3FOV1LV6AQ' where id=7; -update noar tt set b0='HME4D4PV12W9NAE' where id=7; -update noar ti set b0='HME4D4PV12W9NAE' where id=7; -update noar tt set v0='I40IIF6SJP' where id=7; -update noar ti set v0='I40IIF6SJP' where id=7; -update noar tt set b1='5FDYKBU' where id=7; -update noar ti set b1='5FDYKBU' where id=7; -update noar tt set v0='HMFGH' where id=7; -update noar ti set v0='HMFGH' where id=7; -update noar tt set b2='M2KA7GDORAC' where id=7; -update noar ti set b2='M2KA7GDORAC' where id=7; -update noar tt set v0='43I' where id=8; -update noar ti set v0='43I' where id=8; -update noar tt set b0='LAIWPXQITAO5D4ZJ' where id=8; -update noar ti set b0='LAIWPXQITAO5D4ZJ' where id=8; -update noar tt set v0='RR6W70RXF9H75ILON9NOWNCUQ7H7D2JV' where id=8; -update noar ti set v0='RR6W70RXF9H75ILON9NOWNCUQ7H7D2JV' where id=8; -update noar tt set b1='1R0JD6888CXA2LXO6IQBF0YBODMGKE' where id=8; -update noar ti set b1='1R0JD6888CXA2LXO6IQBF0YBODMGKE' where id=8; -update noar tt set v0='OKI77PW8XCTR' where id=8; -update noar ti set v0='OKI77PW8XCTR' where id=8; -update noar tt set b2='PQJ0CM1LNWYCS27' where id=8; -update noar ti set b2='PQJ0CM1LNWYCS27' where id=8; -update noar tt set v0='JO7I' where id=9; -update noar ti set v0='JO7I' where id=9; -update noar tt set b0='YCQ8SU2E' where id=9; -update noar ti set b0='YCQ8SU2E' where id=9; -update noar tt set v0='PA' where id=9; -update noar ti set v0='PA' where id=9; -update noar tt set b1='NXH2QQTC9XAM' where id=9; -update noar ti set b1='NXH2QQTC9XAM' where id=9; -update noar tt set v0='SCCAESY87D4S3' where id=9; -update noar ti set v0='SCCAESY87D4S3' where id=9; -update noar tt set b2='G' where id=9; -update noar ti set b2='G' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - f0 int not null, - v0 varchar(32) not null, - b0 mediumblob not null, - b1 blob not null, - b2 longblob not null -) engine=tokudb; -insert into tt values (1,0,'','','',''); -insert into tt values (2,0,'','','',''); -insert into tt values (3,0,'','','',''); -insert into tt values (4,0,'','','',''); -insert into tt values (5,0,'','','',''); -insert into tt values (6,0,'','','',''); -insert into tt values (7,0,'','','',''); -insert into tt values (8,0,'','','',''); -insert into tt values (9,0,'','','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='VD7WAWF5C6G' where id=1; -update noar ti set v0='VD7WAWF5C6G' where id=1; -update noar tt set b0='O95PK0VNM' where id=1; -update noar ti set b0='O95PK0VNM' where id=1; -update noar tt set v0='QDPE7AEOVBU6Z' where id=1; -update noar ti set v0='QDPE7AEOVBU6Z' where id=1; -update noar tt set b1='ZQ4FMANLXB5Y855V1AF' where id=1; -update noar ti set b1='ZQ4FMANLXB5Y855V1AF' where id=1; -update noar tt set v0='H3D9RLUKCKYF025WX9' where id=1; -update noar ti set v0='H3D9RLUKCKYF025WX9' where id=1; -update noar tt set b2='ARO6CR3VN014A5GOFL7LHPG' where id=1; -update noar ti set b2='ARO6CR3VN014A5GOFL7LHPG' where id=1; -update noar tt set v0='CJCYJPILO9MZRY50SJUG0U5X58HE7Z' where id=2; -update noar ti set v0='CJCYJPILO9MZRY50SJUG0U5X58HE7Z' where id=2; -update noar tt set b0='1EI48IYTSQJKWDO44NHHCWAZ' where id=2; -update noar ti set b0='1EI48IYTSQJKWDO44NHHCWAZ' where id=2; -update noar tt set v0='YFCS3I8' where id=2; -update noar ti set v0='YFCS3I8' where id=2; -update noar tt set b1='2R2834D4' where id=2; -update noar ti set b1='2R2834D4' where id=2; -update noar tt set v0='0XY6JB8S1OO29KEHS' where id=2; -update noar ti set v0='0XY6JB8S1OO29KEHS' where id=2; -update noar tt set b2='2IWV' where id=2; -update noar ti set b2='2IWV' where id=2; -update noar tt set v0='DR' where id=3; -update noar ti set v0='DR' where id=3; -update noar tt set b0='RJBOW44WMWY0WFW1TUD5IMARS80JF' where id=3; -update noar ti set b0='RJBOW44WMWY0WFW1TUD5IMARS80JF' where id=3; -update noar tt set v0='4CR5FYWLN9CMXRLJKA0' where id=3; -update noar ti set v0='4CR5FYWLN9CMXRLJKA0' where id=3; -update noar tt set b1='3U69SZ0S' where id=3; -update noar ti set b1='3U69SZ0S' where id=3; -update noar tt set v0='7M4Y6EK4SSO7N4AY5U3CR' where id=3; -update noar ti set v0='7M4Y6EK4SSO7N4AY5U3CR' where id=3; -update noar tt set b2='LNHK3' where id=3; -update noar ti set b2='LNHK3' where id=3; -update noar tt set v0='LSP3TLSF6Z37YH2ZF120' where id=4; -update noar ti set v0='LSP3TLSF6Z37YH2ZF120' where id=4; -update noar tt set b0='6FGS1V8NEKK9L39Z' where id=4; -update noar ti set b0='6FGS1V8NEKK9L39Z' where id=4; -update noar tt set v0='AG7MFQ5IN8R222D3LQDNHJY9O32' where id=4; -update noar ti set v0='AG7MFQ5IN8R222D3LQDNHJY9O32' where id=4; -update noar tt set b1='AL746MG0288QOKRB8RW2M7357WC6QYA9' where id=4; -update noar ti set b1='AL746MG0288QOKRB8RW2M7357WC6QYA9' where id=4; -update noar tt set v0='4DMC1NZUB' where id=4; -update noar ti set v0='4DMC1NZUB' where id=4; -update noar tt set b2='ZBDVCHEKYI6VLCHX7ZLGXH' where id=4; -update noar ti set b2='ZBDVCHEKYI6VLCHX7ZLGXH' where id=4; -update noar tt set v0='JEKN0W6GBF59W53' where id=5; -update noar ti set v0='JEKN0W6GBF59W53' where id=5; -update noar tt set b0='4RU0T9T14WSI7S841BV8694YA7' where id=5; -update noar ti set b0='4RU0T9T14WSI7S841BV8694YA7' where id=5; -update noar tt set v0='AQADRD6YU4RGFD4899I7M' where id=5; -update noar ti set v0='AQADRD6YU4RGFD4899I7M' where id=5; -update noar tt set b1='20MBDRFOACOWLIZ' where id=5; -update noar ti set b1='20MBDRFOACOWLIZ' where id=5; -update noar tt set v0='EDGI' where id=5; -update noar ti set v0='EDGI' where id=5; -update noar tt set b2='TA4YTJGKOQN6CIQA49X9FFUY8IXC' where id=5; -update noar ti set b2='TA4YTJGKOQN6CIQA49X9FFUY8IXC' where id=5; -update noar tt set v0='D7CFZ3PP9S8MURGG' where id=6; -update noar ti set v0='D7CFZ3PP9S8MURGG' where id=6; -update noar tt set b0='FY' where id=6; -update noar ti set b0='FY' where id=6; -update noar tt set v0='3X' where id=6; -update noar ti set v0='3X' where id=6; -update noar tt set b1='EX7K7L9Q4LNLT944LDWDWAGCD' where id=6; -update noar ti set b1='EX7K7L9Q4LNLT944LDWDWAGCD' where id=6; -update noar tt set v0='DLFF2' where id=6; -update noar ti set v0='DLFF2' where id=6; -update noar tt set b2='PKMDA5WKSBGGD4CUVVOSVM9JRAOW4BXY' where id=6; -update noar ti set b2='PKMDA5WKSBGGD4CUVVOSVM9JRAOW4BXY' where id=6; -update noar tt set v0='3YDOUK5PQEKI' where id=7; -update noar ti set v0='3YDOUK5PQEKI' where id=7; -update noar tt set b0='F81H5' where id=7; -update noar ti set b0='F81H5' where id=7; -update noar tt set v0='HQH2IT47QD504WDSK' where id=7; -update noar ti set v0='HQH2IT47QD504WDSK' where id=7; -update noar tt set b1='N21JBYFT2IXHNRTJP' where id=7; -update noar ti set b1='N21JBYFT2IXHNRTJP' where id=7; -update noar tt set v0='E45RH1HPDH' where id=7; -update noar ti set v0='E45RH1HPDH' where id=7; -update noar tt set b2='QC51ET4L8' where id=7; -update noar ti set b2='QC51ET4L8' where id=7; -update noar tt set v0='AE9697VORYRR' where id=8; -update noar ti set v0='AE9697VORYRR' where id=8; -update noar tt set b0='6W3B5EMV845MUC' where id=8; -update noar ti set b0='6W3B5EMV845MUC' where id=8; -update noar tt set v0='39LIRV' where id=8; -update noar ti set v0='39LIRV' where id=8; -update noar tt set b1='F2TGHWC9IUTHIL' where id=8; -update noar ti set b1='F2TGHWC9IUTHIL' where id=8; -update noar tt set v0='1OR38' where id=8; -update noar ti set v0='1OR38' where id=8; -update noar tt set b2='7926KICTICTAQ' where id=8; -update noar ti set b2='7926KICTICTAQ' where id=8; -update noar tt set v0='0TF27LTHCH' where id=9; -update noar ti set v0='0TF27LTHCH' where id=9; -update noar tt set b0='0YT1FR6DG1PN' where id=9; -update noar ti set b0='0YT1FR6DG1PN' where id=9; -update noar tt set v0='VFUBV8HGHYSZL' where id=9; -update noar ti set v0='VFUBV8HGHYSZL' where id=9; -update noar tt set b1='UJG27D3FH66WZ4GKUEOJ11Y428IFEA' where id=9; -update noar ti set b1='UJG27D3FH66WZ4GKUEOJ11Y428IFEA' where id=9; -update noar tt set v0='TXSHQ3DV30YXDF' where id=9; -update noar ti set v0='TXSHQ3DV30YXDF' where id=9; -update noar tt set b2='YORRUYO6JI5ZF4UG' where id=9; -update noar ti set b2='YORRUYO6JI5ZF4UG' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - f0 int not null, - v0 varchar(256) not null, - b0 mediumblob not null, - b1 blob not null, - b2 longblob not null -) engine=tokudb; -insert into tt values (1,0,'','','',''); -insert into tt values (2,0,'','','',''); -insert into tt values (3,0,'','','',''); -insert into tt values (4,0,'','','',''); -insert into tt values (5,0,'','','',''); -insert into tt values (6,0,'','','',''); -insert into tt values (7,0,'','','',''); -insert into tt values (8,0,'','','',''); -insert into tt values (9,0,'','','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='19' where id=1; -update noar ti set v0='19' where id=1; -update noar tt set b0='C2QZ683CFXPUROG1HQHO' where id=1; -update noar ti set b0='C2QZ683CFXPUROG1HQHO' where id=1; -update noar tt set v0='KN' where id=1; -update noar ti set v0='KN' where id=1; -update noar tt set b1='8VGPX' where id=1; -update noar ti set b1='8VGPX' where id=1; -update noar tt set v0='43N1QXPY' where id=1; -update noar ti set v0='43N1QXPY' where id=1; -update noar tt set b2='3YIFUB1YGDBS0UA80A3RIC' where id=1; -update noar ti set b2='3YIFUB1YGDBS0UA80A3RIC' where id=1; -update noar tt set v0='R4GK5749SGL8EGKKR4WVB0IL2OBCIN' where id=2; -update noar ti set v0='R4GK5749SGL8EGKKR4WVB0IL2OBCIN' where id=2; -update noar tt set b0='S8LGZE3' where id=2; -update noar ti set b0='S8LGZE3' where id=2; -update noar tt set v0='2JS1K263R0N6HHBDG1Q7T8FHDLL8OG4H' where id=2; -update noar ti set v0='2JS1K263R0N6HHBDG1Q7T8FHDLL8OG4H' where id=2; -update noar tt set b1='59BU1KWHY510' where id=2; -update noar ti set b1='59BU1KWHY510' where id=2; -update noar tt set v0='QMMAY4Q8T5LGSJKYGQ48IY' where id=2; -update noar ti set v0='QMMAY4Q8T5LGSJKYGQ48IY' where id=2; -update noar tt set b2='IZU3RP3LEMKU0CI0ABR4XTI' where id=2; -update noar ti set b2='IZU3RP3LEMKU0CI0ABR4XTI' where id=2; -update noar tt set v0='5PAE9QOX5X7SZ3CA1M' where id=3; -update noar ti set v0='5PAE9QOX5X7SZ3CA1M' where id=3; -update noar tt set b0='YHNAYVGCR3F8Z3CY821SP05ZJHL25QRR' where id=3; -update noar ti set b0='YHNAYVGCR3F8Z3CY821SP05ZJHL25QRR' where id=3; -update noar tt set v0='PW45QZ84VAOEB5' where id=3; -update noar ti set v0='PW45QZ84VAOEB5' where id=3; -update noar tt set b1='E4RQJFBYQ3VFBKUDRCFZBP7FK0IB8SYD' where id=3; -update noar ti set b1='E4RQJFBYQ3VFBKUDRCFZBP7FK0IB8SYD' where id=3; -update noar tt set v0='87ZN2J1T' where id=3; -update noar ti set v0='87ZN2J1T' where id=3; -update noar tt set b2='SCOUDZA80CUGIJQW49XANU3' where id=3; -update noar ti set b2='SCOUDZA80CUGIJQW49XANU3' where id=3; -update noar tt set v0='FUQNGO75RVANVB3O' where id=4; -update noar ti set v0='FUQNGO75RVANVB3O' where id=4; -update noar tt set b0='T4QKEBFD0OS8BFA53K9X6EOPH7B82' where id=4; -update noar ti set b0='T4QKEBFD0OS8BFA53K9X6EOPH7B82' where id=4; -update noar tt set v0='JF6X1U2MR6C6LZ3EP569W0OC21YHA19M' where id=4; -update noar ti set v0='JF6X1U2MR6C6LZ3EP569W0OC21YHA19M' where id=4; -update noar tt set b1='1EJVK328XZ7EAIL4X' where id=4; -update noar ti set b1='1EJVK328XZ7EAIL4X' where id=4; -update noar tt set v0='N4818DGUKV1C3GJC897KQ' where id=4; -update noar ti set v0='N4818DGUKV1C3GJC897KQ' where id=4; -update noar tt set b2='LJR2YPSN' where id=4; -update noar ti set b2='LJR2YPSN' where id=4; -update noar tt set v0='CL0LEIE' where id=5; -update noar ti set v0='CL0LEIE' where id=5; -update noar tt set b0='9G34WG2V70UNP3YBKHA6I8' where id=5; -update noar ti set b0='9G34WG2V70UNP3YBKHA6I8' where id=5; -update noar tt set v0='OWJ20FBL9PX4ZFPEN60EN3MDS2NXCR1' where id=5; -update noar ti set v0='OWJ20FBL9PX4ZFPEN60EN3MDS2NXCR1' where id=5; -update noar tt set b1='MF7DUEU0' where id=5; -update noar ti set b1='MF7DUEU0' where id=5; -update noar tt set v0='VV1UTXQYHZ7R635465K9' where id=5; -update noar ti set v0='VV1UTXQYHZ7R635465K9' where id=5; -update noar tt set b2='O1D35TXQ5YNEAJ7M5ITY3' where id=5; -update noar ti set b2='O1D35TXQ5YNEAJ7M5ITY3' where id=5; -update noar tt set v0='X62KI1TYN' where id=6; -update noar ti set v0='X62KI1TYN' where id=6; -update noar tt set b0='Y1OWRRGO' where id=6; -update noar ti set b0='Y1OWRRGO' where id=6; -update noar tt set v0='W1JJ8LPN0' where id=6; -update noar ti set v0='W1JJ8LPN0' where id=6; -update noar tt set b1='7VHUJINYF0ZARR5E' where id=6; -update noar ti set b1='7VHUJINYF0ZARR5E' where id=6; -update noar tt set v0='J9GI8U4EKMSGF4L' where id=6; -update noar ti set v0='J9GI8U4EKMSGF4L' where id=6; -update noar tt set b2='VMH9TY2NQXWO1LBXP8SWFEG3868KG8CM' where id=6; -update noar ti set b2='VMH9TY2NQXWO1LBXP8SWFEG3868KG8CM' where id=6; -update noar tt set v0='CS5A452FYDFMFIAOGOS4G0VW7L' where id=7; -update noar ti set v0='CS5A452FYDFMFIAOGOS4G0VW7L' where id=7; -update noar tt set b0='QXR' where id=7; -update noar ti set b0='QXR' where id=7; -update noar tt set v0='6WM2FXV9DGRO3A' where id=7; -update noar ti set v0='6WM2FXV9DGRO3A' where id=7; -update noar tt set b1='HVPB41MWF' where id=7; -update noar ti set b1='HVPB41MWF' where id=7; -update noar tt set v0='243B0JW6WZRN26AZXR9098' where id=7; -update noar ti set v0='243B0JW6WZRN26AZXR9098' where id=7; -update noar tt set b2='7MKD' where id=7; -update noar ti set b2='7MKD' where id=7; -update noar tt set v0='P1TZ2G52FG34K547' where id=8; -update noar ti set v0='P1TZ2G52FG34K547' where id=8; -update noar tt set b0='DBG8' where id=8; -update noar ti set b0='DBG8' where id=8; -update noar tt set v0='Q0DFEXW' where id=8; -update noar ti set v0='Q0DFEXW' where id=8; -update noar tt set b1='C2HVBOF2A6MH0L' where id=8; -update noar ti set b1='C2HVBOF2A6MH0L' where id=8; -update noar tt set v0='3B0P9WFYCQ57NH6' where id=8; -update noar ti set v0='3B0P9WFYCQ57NH6' where id=8; -update noar tt set b2='IDQW9R06L368O7QJW' where id=8; -update noar ti set b2='IDQW9R06L368O7QJW' where id=8; -update noar tt set v0='YCPUVZ' where id=9; -update noar ti set v0='YCPUVZ' where id=9; -update noar tt set b0='VXGIJN' where id=9; -update noar ti set b0='VXGIJN' where id=9; -update noar tt set v0='OFOIIUFRFWDYUEFB' where id=9; -update noar ti set v0='OFOIIUFRFWDYUEFB' where id=9; -update noar tt set b1='DC' where id=9; -update noar ti set b1='DC' where id=9; -update noar tt set v0='DS4EPIKJY' where id=9; -update noar ti set v0='DS4EPIKJY' where id=9; -update noar tt set b2='77VW8EHRDHSV3T1U' where id=9; -update noar ti set b2='77VW8EHRDHSV3T1U' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - f0 int null, - v0 varchar(32) null, - b0 mediumblob null, - b1 mediumblob null, - b2 tinyblob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='ESKE40X' where id=1; -update noar ti set v0='ESKE40X' where id=1; -update noar tt set b0='LLL5KKO' where id=1; -update noar ti set b0='LLL5KKO' where id=1; -update noar tt set v0='5PWJCKBL8O4B4O' where id=1; -update noar ti set v0='5PWJCKBL8O4B4O' where id=1; -update noar tt set b1='19' where id=1; -update noar ti set b1='19' where id=1; -update noar tt set v0='IUSFETJGMVYF6FVZ03ALH3PLGL' where id=1; -update noar ti set v0='IUSFETJGMVYF6FVZ03ALH3PLGL' where id=1; -update noar tt set b2='XEU' where id=1; -update noar ti set b2='XEU' where id=1; -update noar tt set v0='RO0O0' where id=2; -update noar ti set v0='RO0O0' where id=2; -update noar tt set b0='9ES5HYCR01U' where id=2; -update noar ti set b0='9ES5HYCR01U' where id=2; -update noar tt set v0='NKK0OM1TUHIGX6V8WQV' where id=2; -update noar ti set v0='NKK0OM1TUHIGX6V8WQV' where id=2; -update noar tt set b1='TH295DA2' where id=2; -update noar ti set b1='TH295DA2' where id=2; -update noar tt set v0='ONQU5XO899' where id=2; -update noar ti set v0='ONQU5XO899' where id=2; -update noar tt set b2='AL6ND8KTPBV5DNX2VRH33PGXBYQ5' where id=2; -update noar ti set b2='AL6ND8KTPBV5DNX2VRH33PGXBYQ5' where id=2; -update noar tt set v0='ZP6IMUG9O8ETCYHF' where id=3; -update noar ti set v0='ZP6IMUG9O8ETCYHF' where id=3; -update noar tt set b0='KJF0NBSI1PWNPQJ7KXCBZ' where id=3; -update noar ti set b0='KJF0NBSI1PWNPQJ7KXCBZ' where id=3; -update noar tt set v0='9MWLLSUW9APVY28Z6RFFU90ZMUSJ07LA' where id=3; -update noar ti set v0='9MWLLSUW9APVY28Z6RFFU90ZMUSJ07LA' where id=3; -update noar tt set b1='9S66I8RUJVCFYJ5HF6' where id=3; -update noar ti set b1='9S66I8RUJVCFYJ5HF6' where id=3; -update noar tt set v0='J6C4S5CCT1E' where id=3; -update noar ti set v0='J6C4S5CCT1E' where id=3; -update noar tt set b2='MFE4' where id=3; -update noar ti set b2='MFE4' where id=3; -update noar tt set v0='5V443W5VTD30GM3FRHYFW9Y6J4W' where id=4; -update noar ti set v0='5V443W5VTD30GM3FRHYFW9Y6J4W' where id=4; -update noar tt set b0='NLZT' where id=4; -update noar ti set b0='NLZT' where id=4; -update noar tt set v0='7GB2EIF4B4JH' where id=4; -update noar ti set v0='7GB2EIF4B4JH' where id=4; -update noar tt set b1='PUMUSF2SWC42IOGXIAU2YUSHXCYOMNXA' where id=4; -update noar ti set b1='PUMUSF2SWC42IOGXIAU2YUSHXCYOMNXA' where id=4; -update noar tt set v0='UZNEZEI2NUG80TWC8BX8O9HKX2GV6' where id=4; -update noar ti set v0='UZNEZEI2NUG80TWC8BX8O9HKX2GV6' where id=4; -update noar tt set b2='Y3' where id=4; -update noar ti set b2='Y3' where id=4; -update noar tt set v0='A00815CH3Y910MNCCUUCQV0F' where id=5; -update noar ti set v0='A00815CH3Y910MNCCUUCQV0F' where id=5; -update noar tt set b0='RXLW11CYWPLA8427ONFI8P6VKAQLTH' where id=5; -update noar ti set b0='RXLW11CYWPLA8427ONFI8P6VKAQLTH' where id=5; -update noar tt set v0='HG8P5MPBS43XHN1CKX2I5ZJUJO6S5' where id=5; -update noar ti set v0='HG8P5MPBS43XHN1CKX2I5ZJUJO6S5' where id=5; -update noar tt set b1='SDGTLX7B30P9O9' where id=5; -update noar ti set b1='SDGTLX7B30P9O9' where id=5; -update noar tt set v0='56' where id=5; -update noar ti set v0='56' where id=5; -update noar tt set b2='3XNWJHNFOO8SO62ADV1FOWBI7' where id=5; -update noar ti set b2='3XNWJHNFOO8SO62ADV1FOWBI7' where id=5; -update noar tt set v0='AU6Q71SSJEUXWE4V3G0LE7VC1' where id=6; -update noar ti set v0='AU6Q71SSJEUXWE4V3G0LE7VC1' where id=6; -update noar tt set b0='8Q6ONZ6H0KH9ST43SI67D' where id=6; -update noar ti set b0='8Q6ONZ6H0KH9ST43SI67D' where id=6; -update noar tt set v0='AR0RLNHG1JO8C' where id=6; -update noar ti set v0='AR0RLNHG1JO8C' where id=6; -update noar tt set b1='PP1J57S6U4BF802Q5P' where id=6; -update noar ti set b1='PP1J57S6U4BF802Q5P' where id=6; -update noar tt set v0='8DIMOP94VVPA94O0RP9IMPBZBSAIU' where id=6; -update noar ti set v0='8DIMOP94VVPA94O0RP9IMPBZBSAIU' where id=6; -update noar tt set b2='XWDI1QSDHZPRDMKGEDUW' where id=6; -update noar ti set b2='XWDI1QSDHZPRDMKGEDUW' where id=6; -update noar tt set v0='EUK0USOF' where id=7; -update noar ti set v0='EUK0USOF' where id=7; -update noar tt set b0='9QR' where id=7; -update noar ti set b0='9QR' where id=7; -update noar tt set v0='ZG3FD2CP2' where id=7; -update noar ti set v0='ZG3FD2CP2' where id=7; -update noar tt set b1='YAB57LLKACRGZB4IVBMN' where id=7; -update noar ti set b1='YAB57LLKACRGZB4IVBMN' where id=7; -update noar tt set v0='K' where id=7; -update noar ti set v0='K' where id=7; -update noar tt set b2='OUL95Y0L3M6GYB0X9PQJP0H9W7UKV3N7' where id=7; -update noar ti set b2='OUL95Y0L3M6GYB0X9PQJP0H9W7UKV3N7' where id=7; -update noar tt set v0='OMQ80INY4OJ3SQSZ2CIMQQ3QPF' where id=8; -update noar ti set v0='OMQ80INY4OJ3SQSZ2CIMQQ3QPF' where id=8; -update noar tt set b0='ZVYO5D1MO07M7AOA3BD9ITTT8XEJ0L' where id=8; -update noar ti set b0='ZVYO5D1MO07M7AOA3BD9ITTT8XEJ0L' where id=8; -update noar tt set v0='I8KNYVW2GHYAV5A98TYPJQOFEZ' where id=8; -update noar ti set v0='I8KNYVW2GHYAV5A98TYPJQOFEZ' where id=8; -update noar tt set b1='FM5JJOVOFGA9U99F' where id=8; -update noar ti set b1='FM5JJOVOFGA9U99F' where id=8; -update noar tt set v0='33W4ZF6ASNEQLBCUHIUF4IZVOQ7' where id=8; -update noar ti set v0='33W4ZF6ASNEQLBCUHIUF4IZVOQ7' where id=8; -update noar tt set b2='RLHE' where id=8; -update noar ti set b2='RLHE' where id=8; -update noar tt set v0='4IS1CL3X8VV0P5FMYOX' where id=9; -update noar ti set v0='4IS1CL3X8VV0P5FMYOX' where id=9; -update noar tt set b0='WW5QRRMSILFKFFSFK7QU' where id=9; -update noar ti set b0='WW5QRRMSILFKFFSFK7QU' where id=9; -update noar tt set v0='DTXVN59DWGE29BA30UNZQPY' where id=9; -update noar ti set v0='DTXVN59DWGE29BA30UNZQPY' where id=9; -update noar tt set b1='PKZ' where id=9; -update noar ti set b1='PKZ' where id=9; -update noar tt set v0='IQKLV9W1770IRK41OODGO7' where id=9; -update noar ti set v0='IQKLV9W1770IRK41OODGO7' where id=9; -update noar tt set b2='1IOAPH' where id=9; -update noar ti set b2='1IOAPH' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - f0 int null, - v0 varchar(256) null, - b0 mediumblob null, - b1 mediumblob null, - b2 tinyblob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='R5OOV9SGLR1AWETR5BAV8NPO' where id=1; -update noar ti set v0='R5OOV9SGLR1AWETR5BAV8NPO' where id=1; -update noar tt set b0='LU7ECFMBSHRIZT8LAOHM8QY5N33ACAV3' where id=1; -update noar ti set b0='LU7ECFMBSHRIZT8LAOHM8QY5N33ACAV3' where id=1; -update noar tt set v0='QVCDH85UHQT5Z' where id=1; -update noar ti set v0='QVCDH85UHQT5Z' where id=1; -update noar tt set b1='HKAXEDOYT3230XGCX' where id=1; -update noar ti set b1='HKAXEDOYT3230XGCX' where id=1; -update noar tt set v0='NMUU9X1OPO6N8GK' where id=1; -update noar ti set v0='NMUU9X1OPO6N8GK' where id=1; -update noar tt set b2='SMUJFLJRTD1X2DLI' where id=1; -update noar ti set b2='SMUJFLJRTD1X2DLI' where id=1; -update noar tt set v0='LFKBOTAR7N8ER7SOPDU2PQKBTG' where id=2; -update noar ti set v0='LFKBOTAR7N8ER7SOPDU2PQKBTG' where id=2; -update noar tt set b0='3AWBQ8H1TGPXMRLHULZ4WM6M7UH' where id=2; -update noar ti set b0='3AWBQ8H1TGPXMRLHULZ4WM6M7UH' where id=2; -update noar tt set v0='22Z1XQGFVHN9TGWDYBI2QIRLYD' where id=2; -update noar ti set v0='22Z1XQGFVHN9TGWDYBI2QIRLYD' where id=2; -update noar tt set b1='AYUEUYMG61QXM8OFPV93VQ8X7K1R8SG9' where id=2; -update noar ti set b1='AYUEUYMG61QXM8OFPV93VQ8X7K1R8SG9' where id=2; -update noar tt set v0='RIJQ6NJ9ND92GK9706UWQXO6KR28Z' where id=2; -update noar ti set v0='RIJQ6NJ9ND92GK9706UWQXO6KR28Z' where id=2; -update noar tt set b2='AGYT2G3WKY57GNYLTUY5GEO' where id=2; -update noar ti set b2='AGYT2G3WKY57GNYLTUY5GEO' where id=2; -update noar tt set v0='4XO5SHLRX4SKLQE6QWP25' where id=3; -update noar ti set v0='4XO5SHLRX4SKLQE6QWP25' where id=3; -update noar tt set b0='MLHD5WMHHC5C00I773S6T' where id=3; -update noar ti set b0='MLHD5WMHHC5C00I773S6T' where id=3; -update noar tt set v0='V6NHRADFXUEYD4TZKJ007KCLAXNV' where id=3; -update noar ti set v0='V6NHRADFXUEYD4TZKJ007KCLAXNV' where id=3; -update noar tt set b1='RTK25YQ' where id=3; -update noar ti set b1='RTK25YQ' where id=3; -update noar tt set v0='F0E2YH8UPCTUVXAWIS0KQPH2TQ1TBHQG' where id=3; -update noar ti set v0='F0E2YH8UPCTUVXAWIS0KQPH2TQ1TBHQG' where id=3; -update noar tt set b2='CJHOIK0CMM1FIEF' where id=3; -update noar ti set b2='CJHOIK0CMM1FIEF' where id=3; -update noar tt set v0='0D39IMT' where id=4; -update noar ti set v0='0D39IMT' where id=4; -update noar tt set b0='7' where id=4; -update noar ti set b0='7' where id=4; -update noar tt set v0='GVQAIDZM17' where id=4; -update noar ti set v0='GVQAIDZM17' where id=4; -update noar tt set b1='9VZ' where id=4; -update noar ti set b1='9VZ' where id=4; -update noar tt set v0='KDISCFUM8SFYGSOXGOCLUGE5KUU5M' where id=4; -update noar ti set v0='KDISCFUM8SFYGSOXGOCLUGE5KUU5M' where id=4; -update noar tt set b2='2WPGSZ8H' where id=4; -update noar ti set b2='2WPGSZ8H' where id=4; -update noar tt set v0='YL7JUB36EY9WQDV4TEX' where id=5; -update noar ti set v0='YL7JUB36EY9WQDV4TEX' where id=5; -update noar tt set b0='SSQLFF9SG2SW64LORD' where id=5; -update noar ti set b0='SSQLFF9SG2SW64LORD' where id=5; -update noar tt set v0='MUTZ8G36YNJE5P1WFN' where id=5; -update noar ti set v0='MUTZ8G36YNJE5P1WFN' where id=5; -update noar tt set b1='Q26FJSQ1VV44S4KEAN5K7L55' where id=5; -update noar ti set b1='Q26FJSQ1VV44S4KEAN5K7L55' where id=5; -update noar tt set v0='NWBF' where id=5; -update noar ti set v0='NWBF' where id=5; -update noar tt set b2='UMVXDA4NCSHAHL' where id=5; -update noar ti set b2='UMVXDA4NCSHAHL' where id=5; -update noar tt set v0='XMMQQ5LMFJPJPHKLUQHYNK' where id=6; -update noar ti set v0='XMMQQ5LMFJPJPHKLUQHYNK' where id=6; -update noar tt set b0='X' where id=6; -update noar ti set b0='X' where id=6; -update noar tt set v0='X03YJP' where id=6; -update noar ti set v0='X03YJP' where id=6; -update noar tt set b1='6MQIRL7LC6' where id=6; -update noar ti set b1='6MQIRL7LC6' where id=6; -update noar tt set v0='PU3HBPFOQL7PEOF99A' where id=6; -update noar ti set v0='PU3HBPFOQL7PEOF99A' where id=6; -update noar tt set b2='KY1OZ5KY' where id=6; -update noar ti set b2='KY1OZ5KY' where id=6; -update noar tt set v0='0XGOCI' where id=7; -update noar ti set v0='0XGOCI' where id=7; -update noar tt set b0='XQY14CT806U0EURARMI9' where id=7; -update noar ti set b0='XQY14CT806U0EURARMI9' where id=7; -update noar tt set v0='O25HUZUAZ6DRAEVLD8NTKXNA' where id=7; -update noar ti set v0='O25HUZUAZ6DRAEVLD8NTKXNA' where id=7; -update noar tt set b1='6VXD2S' where id=7; -update noar ti set b1='6VXD2S' where id=7; -update noar tt set v0='OS4XBYT94QEI4' where id=7; -update noar ti set v0='OS4XBYT94QEI4' where id=7; -update noar tt set b2='Z5UPUBDKF346LK4ODQMCHRLO' where id=7; -update noar ti set b2='Z5UPUBDKF346LK4ODQMCHRLO' where id=7; -update noar tt set v0='WYFF' where id=8; -update noar ti set v0='WYFF' where id=8; -update noar tt set b0='ER3JCL' where id=8; -update noar ti set b0='ER3JCL' where id=8; -update noar tt set v0='QP9UF9ZYCW' where id=8; -update noar ti set v0='QP9UF9ZYCW' where id=8; -update noar tt set b1='35SHDMR0KJPLZB736KC8L6AIZKU47EQ' where id=8; -update noar ti set b1='35SHDMR0KJPLZB736KC8L6AIZKU47EQ' where id=8; -update noar tt set v0='MTP6S' where id=8; -update noar ti set v0='MTP6S' where id=8; -update noar tt set b2='QZH08N732PWIZ09VGVGUS2RPY0VM' where id=8; -update noar ti set b2='QZH08N732PWIZ09VGVGUS2RPY0VM' where id=8; -update noar tt set v0='TV4JLNGWK9' where id=9; -update noar ti set v0='TV4JLNGWK9' where id=9; -update noar tt set b0='8DIOV4U36NOT' where id=9; -update noar ti set b0='8DIOV4U36NOT' where id=9; -update noar tt set v0='CYZ0ISDFX4YLMN3I65GCBO6T1PEW7XAR' where id=9; -update noar ti set v0='CYZ0ISDFX4YLMN3I65GCBO6T1PEW7XAR' where id=9; -update noar tt set b1='6AJAF5LQSLR9IWWKZOX' where id=9; -update noar ti set b1='6AJAF5LQSLR9IWWKZOX' where id=9; -update noar tt set v0='T2KBMGGWH8X3UTW7DAD9HG3XXT' where id=9; -update noar ti set v0='T2KBMGGWH8X3UTW7DAD9HG3XXT' where id=9; -update noar tt set b2='QRPN03UJXMA4CYD6VBIYXD3VOND' where id=9; -update noar ti set b2='QRPN03UJXMA4CYD6VBIYXD3VOND' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - f0 int not null, - v0 varchar(32) not null, - b0 mediumblob not null, - b1 mediumblob not null, - b2 tinyblob not null -) engine=tokudb; -insert into tt values (1,0,'','','',''); -insert into tt values (2,0,'','','',''); -insert into tt values (3,0,'','','',''); -insert into tt values (4,0,'','','',''); -insert into tt values (5,0,'','','',''); -insert into tt values (6,0,'','','',''); -insert into tt values (7,0,'','','',''); -insert into tt values (8,0,'','','',''); -insert into tt values (9,0,'','','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='GDSS1UEFQ8ZLH293SNN0KARC' where id=1; -update noar ti set v0='GDSS1UEFQ8ZLH293SNN0KARC' where id=1; -update noar tt set b0='Y0' where id=1; -update noar ti set b0='Y0' where id=1; -update noar tt set v0='QX9IYANLE' where id=1; -update noar ti set v0='QX9IYANLE' where id=1; -update noar tt set b1='7F9MGHG3T5JOY2O092IWR2JT' where id=1; -update noar ti set b1='7F9MGHG3T5JOY2O092IWR2JT' where id=1; -update noar tt set v0='M2VO91HQKJRHKUEWTR86T5YVN5HDN' where id=1; -update noar ti set v0='M2VO91HQKJRHKUEWTR86T5YVN5HDN' where id=1; -update noar tt set b2='0X1HMJ44PFOW' where id=1; -update noar ti set b2='0X1HMJ44PFOW' where id=1; -update noar tt set v0='SOJREY9' where id=2; -update noar ti set v0='SOJREY9' where id=2; -update noar tt set b0='CQ8WIDML7ML4NZ38UN' where id=2; -update noar ti set b0='CQ8WIDML7ML4NZ38UN' where id=2; -update noar tt set v0='UX56CCRGQ442YJ83BKU5EDJS' where id=2; -update noar ti set v0='UX56CCRGQ442YJ83BKU5EDJS' where id=2; -update noar tt set b1='1N2IP9P0CA955SB61MU4N' where id=2; -update noar ti set b1='1N2IP9P0CA955SB61MU4N' where id=2; -update noar tt set v0='8KNVTMZX22RTR' where id=2; -update noar ti set v0='8KNVTMZX22RTR' where id=2; -update noar tt set b2='YC5H8S8A4NX31P81Z5PCOYE51FYOL9I3' where id=2; -update noar ti set b2='YC5H8S8A4NX31P81Z5PCOYE51FYOL9I3' where id=2; -update noar tt set v0='9OTFK7B6S5PQ7TJR887RZXPVZ' where id=3; -update noar ti set v0='9OTFK7B6S5PQ7TJR887RZXPVZ' where id=3; -update noar tt set b0='GOIEBK4Y9IN3ZM4XW2ROS' where id=3; -update noar ti set b0='GOIEBK4Y9IN3ZM4XW2ROS' where id=3; -update noar tt set v0='KU8' where id=3; -update noar ti set v0='KU8' where id=3; -update noar tt set b1='NZ3C2VS90BUHU48XB5PFT0' where id=3; -update noar ti set b1='NZ3C2VS90BUHU48XB5PFT0' where id=3; -update noar tt set v0='YE16YNZUDH0' where id=3; -update noar ti set v0='YE16YNZUDH0' where id=3; -update noar tt set b2='HLL18OFQ88I7YQ4BZ4PL6DI' where id=3; -update noar ti set b2='HLL18OFQ88I7YQ4BZ4PL6DI' where id=3; -update noar tt set v0='XNSSCA66VJEU0EH0ZDD' where id=4; -update noar ti set v0='XNSSCA66VJEU0EH0ZDD' where id=4; -update noar tt set b0='4W1FJ99CUUKD5YDNI0E4RQRDA1VQC' where id=4; -update noar ti set b0='4W1FJ99CUUKD5YDNI0E4RQRDA1VQC' where id=4; -update noar tt set v0='EOUD4EC36Z65H5WT0MSPV1X4HL9' where id=4; -update noar ti set v0='EOUD4EC36Z65H5WT0MSPV1X4HL9' where id=4; -update noar tt set b1='JKDW8KJF5USOTIQMBZGQPO2EB4' where id=4; -update noar ti set b1='JKDW8KJF5USOTIQMBZGQPO2EB4' where id=4; -update noar tt set v0='WMSC4ZDKQVXFONMD1J' where id=4; -update noar ti set v0='WMSC4ZDKQVXFONMD1J' where id=4; -update noar tt set b2='5FX9USFRQX7XTLTD4LIB' where id=4; -update noar ti set b2='5FX9USFRQX7XTLTD4LIB' where id=4; -update noar tt set v0='3S59D9H0TAKVYZSLD927V' where id=5; -update noar ti set v0='3S59D9H0TAKVYZSLD927V' where id=5; -update noar tt set b0='237XV' where id=5; -update noar ti set b0='237XV' where id=5; -update noar tt set v0='EJYBRW8' where id=5; -update noar ti set v0='EJYBRW8' where id=5; -update noar tt set b1='TNZOOMW' where id=5; -update noar ti set b1='TNZOOMW' where id=5; -update noar tt set v0='AYJYPLAPKMZCP7GG' where id=5; -update noar ti set v0='AYJYPLAPKMZCP7GG' where id=5; -update noar tt set b2='8Q48YQYNI9B3DAKO6BXWULR94Q0AN' where id=5; -update noar ti set b2='8Q48YQYNI9B3DAKO6BXWULR94Q0AN' where id=5; -update noar tt set v0='N2YAP9Q' where id=6; -update noar ti set v0='N2YAP9Q' where id=6; -update noar tt set b0='Q95' where id=6; -update noar ti set b0='Q95' where id=6; -update noar tt set v0='P31LOYKZBP69829DCM6C4' where id=6; -update noar ti set v0='P31LOYKZBP69829DCM6C4' where id=6; -update noar tt set b1='WBA40XN0HKVS' where id=6; -update noar ti set b1='WBA40XN0HKVS' where id=6; -update noar tt set v0='278E194SJC78BHPYY968SP' where id=6; -update noar ti set v0='278E194SJC78BHPYY968SP' where id=6; -update noar tt set b2='3047CLE3XNL89JN9HI4S' where id=6; -update noar ti set b2='3047CLE3XNL89JN9HI4S' where id=6; -update noar tt set v0='FWU5YS2GMEEUR8WN96L' where id=7; -update noar ti set v0='FWU5YS2GMEEUR8WN96L' where id=7; -update noar tt set b0='Y500RXT09RUE8YXD93LNEV0N4Y8OQ' where id=7; -update noar ti set b0='Y500RXT09RUE8YXD93LNEV0N4Y8OQ' where id=7; -update noar tt set v0='8T93W47KBBQLC35IGE' where id=7; -update noar ti set v0='8T93W47KBBQLC35IGE' where id=7; -update noar tt set b1='LGXYSMX0JKHPMBC4GQNWCP' where id=7; -update noar ti set b1='LGXYSMX0JKHPMBC4GQNWCP' where id=7; -update noar tt set v0='ZYOZN9B11ZTS5TGPBS6KDVSI166RFSXO' where id=7; -update noar ti set v0='ZYOZN9B11ZTS5TGPBS6KDVSI166RFSXO' where id=7; -update noar tt set b2='KQ' where id=7; -update noar ti set b2='KQ' where id=7; -update noar tt set v0='P' where id=8; -update noar ti set v0='P' where id=8; -update noar tt set b0='3H1' where id=8; -update noar ti set b0='3H1' where id=8; -update noar tt set v0='E0PCQYO6H89VCG2EVHB60JY3LB' where id=8; -update noar ti set v0='E0PCQYO6H89VCG2EVHB60JY3LB' where id=8; -update noar tt set b1='A2MUO51MBHR25C6V' where id=8; -update noar ti set b1='A2MUO51MBHR25C6V' where id=8; -update noar tt set v0='OYIJU3PUQ7E1D0QJKDZ1YIA8O29G690W' where id=8; -update noar ti set v0='OYIJU3PUQ7E1D0QJKDZ1YIA8O29G690W' where id=8; -update noar tt set b2='6' where id=8; -update noar ti set b2='6' where id=8; -update noar tt set v0='JHUT7E5KSL7S9T9F57UXG' where id=9; -update noar ti set v0='JHUT7E5KSL7S9T9F57UXG' where id=9; -update noar tt set b0='PMPAZVSIAZ8SJB3HLPVQXF' where id=9; -update noar ti set b0='PMPAZVSIAZ8SJB3HLPVQXF' where id=9; -update noar tt set v0='NZO9P' where id=9; -update noar ti set v0='NZO9P' where id=9; -update noar tt set b1='UGINMSFFT1OE84O2SFHZ1B66OOR1Y' where id=9; -update noar ti set b1='UGINMSFFT1OE84O2SFHZ1B66OOR1Y' where id=9; -update noar tt set v0='N6TAZF3GWWRS0YEZ' where id=9; -update noar ti set v0='N6TAZF3GWWRS0YEZ' where id=9; -update noar tt set b2='QKW2ZW3XKZ' where id=9; -update noar ti set b2='QKW2ZW3XKZ' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - f0 int not null, - v0 varchar(256) not null, - b0 mediumblob not null, - b1 mediumblob not null, - b2 tinyblob not null -) engine=tokudb; -insert into tt values (1,0,'','','',''); -insert into tt values (2,0,'','','',''); -insert into tt values (3,0,'','','',''); -insert into tt values (4,0,'','','',''); -insert into tt values (5,0,'','','',''); -insert into tt values (6,0,'','','',''); -insert into tt values (7,0,'','','',''); -insert into tt values (8,0,'','','',''); -insert into tt values (9,0,'','','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='8085H3WKGE3ZSZ80KVBZB82J' where id=1; -update noar ti set v0='8085H3WKGE3ZSZ80KVBZB82J' where id=1; -update noar tt set b0='4M9AQLQITJTM3D02HCSS' where id=1; -update noar ti set b0='4M9AQLQITJTM3D02HCSS' where id=1; -update noar tt set v0='9NZPL44HOVCBHMNK6FH3JX' where id=1; -update noar ti set v0='9NZPL44HOVCBHMNK6FH3JX' where id=1; -update noar tt set b1='CG15I442' where id=1; -update noar ti set b1='CG15I442' where id=1; -update noar tt set v0='RHKTSYDBV05L' where id=1; -update noar ti set v0='RHKTSYDBV05L' where id=1; -update noar tt set b2='HA4ARL2GWP9E' where id=1; -update noar ti set b2='HA4ARL2GWP9E' where id=1; -update noar tt set v0='U7470ME9RH3' where id=2; -update noar ti set v0='U7470ME9RH3' where id=2; -update noar tt set b0='7COSTURH6IZFAI6TLASAJBXUND' where id=2; -update noar ti set b0='7COSTURH6IZFAI6TLASAJBXUND' where id=2; -update noar tt set v0='X8D64HF61R6ANMTFSGMHANEP' where id=2; -update noar ti set v0='X8D64HF61R6ANMTFSGMHANEP' where id=2; -update noar tt set b1='PCKYFQK9QJKFKLODURDINF' where id=2; -update noar ti set b1='PCKYFQK9QJKFKLODURDINF' where id=2; -update noar tt set v0='S7UDILAPODSR98KN8' where id=2; -update noar ti set v0='S7UDILAPODSR98KN8' where id=2; -update noar tt set b2='67V6Q94R' where id=2; -update noar ti set b2='67V6Q94R' where id=2; -update noar tt set v0='X' where id=3; -update noar ti set v0='X' where id=3; -update noar tt set b0='JO3O33' where id=3; -update noar ti set b0='JO3O33' where id=3; -update noar tt set v0='WKLXFGEM630S0FR9REQSGQ' where id=3; -update noar ti set v0='WKLXFGEM630S0FR9REQSGQ' where id=3; -update noar tt set b1='ZJX3S8HRZN69U' where id=3; -update noar ti set b1='ZJX3S8HRZN69U' where id=3; -update noar tt set v0='JW1WRP9S3FSAAS9Q06LBN7' where id=3; -update noar ti set v0='JW1WRP9S3FSAAS9Q06LBN7' where id=3; -update noar tt set b2='414NXGALJ3KK43W62CFBJBQ6P47YR5M' where id=3; -update noar ti set b2='414NXGALJ3KK43W62CFBJBQ6P47YR5M' where id=3; -update noar tt set v0='QEUQ9L0EI0UZNA6KVE824MXRXBWK8ZUN' where id=4; -update noar ti set v0='QEUQ9L0EI0UZNA6KVE824MXRXBWK8ZUN' where id=4; -update noar tt set b0='5GRDYB3R5YEIIH4BX4CUGFVJOZV' where id=4; -update noar ti set b0='5GRDYB3R5YEIIH4BX4CUGFVJOZV' where id=4; -update noar tt set v0='BYITJTGH5E1ZLE' where id=4; -update noar ti set v0='BYITJTGH5E1ZLE' where id=4; -update noar tt set b1='VJFWXCXHSX3O335PTA9Q3R' where id=4; -update noar ti set b1='VJFWXCXHSX3O335PTA9Q3R' where id=4; -update noar tt set v0='Z0I6J1448LRWEOVSJVKRHEAOZ2APBKWB' where id=4; -update noar ti set v0='Z0I6J1448LRWEOVSJVKRHEAOZ2APBKWB' where id=4; -update noar tt set b2='ZLQ89NZF9D08XHSQJAFRCV' where id=4; -update noar ti set b2='ZLQ89NZF9D08XHSQJAFRCV' where id=4; -update noar tt set v0='PXJFN8GSR0T4MF6OZ' where id=5; -update noar ti set v0='PXJFN8GSR0T4MF6OZ' where id=5; -update noar tt set b0='NSFY594582' where id=5; -update noar ti set b0='NSFY594582' where id=5; -update noar tt set v0='E31UGGZR62GTVYJ9KX0' where id=5; -update noar ti set v0='E31UGGZR62GTVYJ9KX0' where id=5; -update noar tt set b1='17KC538KG3GOSXD4C77I' where id=5; -update noar ti set b1='17KC538KG3GOSXD4C77I' where id=5; -update noar tt set v0='3CNYFDLATOJV8VEEIZ0GRID0KTZLY' where id=5; -update noar ti set v0='3CNYFDLATOJV8VEEIZ0GRID0KTZLY' where id=5; -update noar tt set b2='1AEGEW3A4PH3TF5J46KDYYS9SKIXR' where id=5; -update noar ti set b2='1AEGEW3A4PH3TF5J46KDYYS9SKIXR' where id=5; -update noar tt set v0='YR1OG8C5GH75Z5JHINPU' where id=6; -update noar ti set v0='YR1OG8C5GH75Z5JHINPU' where id=6; -update noar tt set b0='OKL5TBL99MY0G6MQQ8ZHI74FRY' where id=6; -update noar ti set b0='OKL5TBL99MY0G6MQQ8ZHI74FRY' where id=6; -update noar tt set v0='CIHNSDTWYH9LHP56FJ2B0FZ8GH' where id=6; -update noar ti set v0='CIHNSDTWYH9LHP56FJ2B0FZ8GH' where id=6; -update noar tt set b1='GI7F' where id=6; -update noar ti set b1='GI7F' where id=6; -update noar tt set v0='S7YTJF2J629F0HAOTQALJ' where id=6; -update noar ti set v0='S7YTJF2J629F0HAOTQALJ' where id=6; -update noar tt set b2='6Y0XKM56FW3ITOZ' where id=6; -update noar ti set b2='6Y0XKM56FW3ITOZ' where id=6; -update noar tt set v0='DBHE91TH' where id=7; -update noar ti set v0='DBHE91TH' where id=7; -update noar tt set b0='HMZ2KQE63VUTX7C3ZKCRZYJY' where id=7; -update noar ti set b0='HMZ2KQE63VUTX7C3ZKCRZYJY' where id=7; -update noar tt set v0='CKWXOZSA306SB6G' where id=7; -update noar ti set v0='CKWXOZSA306SB6G' where id=7; -update noar tt set b1='OB7K9ATROTGJ0OWBAG49C' where id=7; -update noar ti set b1='OB7K9ATROTGJ0OWBAG49C' where id=7; -update noar tt set v0='IYHS4P0GPQ4K' where id=7; -update noar ti set v0='IYHS4P0GPQ4K' where id=7; -update noar tt set b2='M9YFL5LCUM1NG' where id=7; -update noar ti set b2='M9YFL5LCUM1NG' where id=7; -update noar tt set v0='9WA83KFOQY7OWOE5AZPWC' where id=8; -update noar ti set v0='9WA83KFOQY7OWOE5AZPWC' where id=8; -update noar tt set b0='ZQZZ3GTO37AP1PAR1P2LD53GXIFC' where id=8; -update noar ti set b0='ZQZZ3GTO37AP1PAR1P2LD53GXIFC' where id=8; -update noar tt set v0='1GG0BXR967MSXST5' where id=8; -update noar ti set v0='1GG0BXR967MSXST5' where id=8; -update noar tt set b1='FYIJNQCZJTBKCAHIYWT7WLT8MW7' where id=8; -update noar ti set b1='FYIJNQCZJTBKCAHIYWT7WLT8MW7' where id=8; -update noar tt set v0='L50YBS9L8IV3DHCXYMA7TWS879DCPQI1' where id=8; -update noar ti set v0='L50YBS9L8IV3DHCXYMA7TWS879DCPQI1' where id=8; -update noar tt set b2='61H5GFXDQO7JF8U' where id=8; -update noar ti set b2='61H5GFXDQO7JF8U' where id=8; -update noar tt set v0='WG2W60DMI' where id=9; -update noar ti set v0='WG2W60DMI' where id=9; -update noar tt set b0='6YSOK97V9VOJNMEWE9WU8CMN' where id=9; -update noar ti set b0='6YSOK97V9VOJNMEWE9WU8CMN' where id=9; -update noar tt set v0='4RC6UM4WJJHE8KHJU28Y46' where id=9; -update noar ti set v0='4RC6UM4WJJHE8KHJU28Y46' where id=9; -update noar tt set b1='XMM5D2BOQDHGYMRBM' where id=9; -update noar ti set b1='XMM5D2BOQDHGYMRBM' where id=9; -update noar tt set v0='RIHX6GY5EHUT91TK2B9TGDU' where id=9; -update noar ti set v0='RIHX6GY5EHUT91TK2B9TGDU' where id=9; -update noar tt set b2='M040NX2' where id=9; -update noar ti set b2='M040NX2' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - f0 int null, - v0 varchar(32) null, - b0 mediumblob null, - b1 mediumblob null, - b2 blob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='OM9F6DGLJGWD3OWJ0' where id=1; -update noar ti set v0='OM9F6DGLJGWD3OWJ0' where id=1; -update noar tt set b0='WX2Q' where id=1; -update noar ti set b0='WX2Q' where id=1; -update noar tt set v0='KK3X' where id=1; -update noar ti set v0='KK3X' where id=1; -update noar tt set b1='165' where id=1; -update noar ti set b1='165' where id=1; -update noar tt set v0='X1WV45UVU5UDZ8545XS' where id=1; -update noar ti set v0='X1WV45UVU5UDZ8545XS' where id=1; -update noar tt set b2='R' where id=1; -update noar ti set b2='R' where id=1; -update noar tt set v0='6W0' where id=2; -update noar ti set v0='6W0' where id=2; -update noar tt set b0='2UL9TLTPUT6TPAPQ8ZQZMA3FQ' where id=2; -update noar ti set b0='2UL9TLTPUT6TPAPQ8ZQZMA3FQ' where id=2; -update noar tt set v0='I34TEVC82NCGG2F0ZHDI' where id=2; -update noar ti set v0='I34TEVC82NCGG2F0ZHDI' where id=2; -update noar tt set b1='URE9V' where id=2; -update noar ti set b1='URE9V' where id=2; -update noar tt set v0='V354JGXG1EHAY' where id=2; -update noar ti set v0='V354JGXG1EHAY' where id=2; -update noar tt set b2='69GQOP6MLGRP08HGSY9NBIEWUTM8' where id=2; -update noar ti set b2='69GQOP6MLGRP08HGSY9NBIEWUTM8' where id=2; -update noar tt set v0='ZR' where id=3; -update noar ti set v0='ZR' where id=3; -update noar tt set b0='XHD0WD7VIH93' where id=3; -update noar ti set b0='XHD0WD7VIH93' where id=3; -update noar tt set v0='N89UHDMRLLF6' where id=3; -update noar ti set v0='N89UHDMRLLF6' where id=3; -update noar tt set b1='NTUQEEGNZP9EBZ' where id=3; -update noar ti set b1='NTUQEEGNZP9EBZ' where id=3; -update noar tt set v0='TD04E4MMEJYR2U3Y2R' where id=3; -update noar ti set v0='TD04E4MMEJYR2U3Y2R' where id=3; -update noar tt set b2='LX9F0OG3CVT5GYBDK299DAK784SP' where id=3; -update noar ti set b2='LX9F0OG3CVT5GYBDK299DAK784SP' where id=3; -update noar tt set v0='MBP36W3IML' where id=4; -update noar ti set v0='MBP36W3IML' where id=4; -update noar tt set b0='QX7LXSPL0G0KVHN14ACCMCDY7BPQL' where id=4; -update noar ti set b0='QX7LXSPL0G0KVHN14ACCMCDY7BPQL' where id=4; -update noar tt set v0='MPPKJIHXGWF83NOYN' where id=4; -update noar ti set v0='MPPKJIHXGWF83NOYN' where id=4; -update noar tt set b1='DPXSFNFNZPER1KI4DJHR3' where id=4; -update noar ti set b1='DPXSFNFNZPER1KI4DJHR3' where id=4; -update noar tt set v0='URSS' where id=4; -update noar ti set v0='URSS' where id=4; -update noar tt set b2='MX4JZICCQ3K1RQN9' where id=4; -update noar ti set b2='MX4JZICCQ3K1RQN9' where id=4; -update noar tt set v0='KC3VGV0A2X757OC7L73MX2R1' where id=5; -update noar ti set v0='KC3VGV0A2X757OC7L73MX2R1' where id=5; -update noar tt set b0='ZXV5MSXG3RNJ2NR1RZRW6NGZBNOL3WN5' where id=5; -update noar ti set b0='ZXV5MSXG3RNJ2NR1RZRW6NGZBNOL3WN5' where id=5; -update noar tt set v0='34YNPL29DFCIZ2SKU02TS32NS8' where id=5; -update noar ti set v0='34YNPL29DFCIZ2SKU02TS32NS8' where id=5; -update noar tt set b1='9A3P6JWZX92Q6J3T90FHOA1ARI9D' where id=5; -update noar ti set b1='9A3P6JWZX92Q6J3T90FHOA1ARI9D' where id=5; -update noar tt set v0='NU7UZN37ZWLGPGESTQCKDA' where id=5; -update noar ti set v0='NU7UZN37ZWLGPGESTQCKDA' where id=5; -update noar tt set b2='WI6WPD2E' where id=5; -update noar ti set b2='WI6WPD2E' where id=5; -update noar tt set v0='178K6SRB8D0B4RBRHGFB87HF' where id=6; -update noar ti set v0='178K6SRB8D0B4RBRHGFB87HF' where id=6; -update noar tt set b0='NS5IPKY5T4VL' where id=6; -update noar ti set b0='NS5IPKY5T4VL' where id=6; -update noar tt set v0='VOH0MR9VJR6M0QEJQZIOL1RA7XD4RX' where id=6; -update noar ti set v0='VOH0MR9VJR6M0QEJQZIOL1RA7XD4RX' where id=6; -update noar tt set b1='YO4BDZ7CU2WV9AOCF49IIH8' where id=6; -update noar ti set b1='YO4BDZ7CU2WV9AOCF49IIH8' where id=6; -update noar tt set v0='XYQDCYR97CE2LG4J99XA' where id=6; -update noar ti set v0='XYQDCYR97CE2LG4J99XA' where id=6; -update noar tt set b2='IZX4L2ISKJVGV2FJ8W' where id=6; -update noar ti set b2='IZX4L2ISKJVGV2FJ8W' where id=6; -update noar tt set v0='KLKT9AUMZE4SDHD6O8X7FUJUAPX' where id=7; -update noar ti set v0='KLKT9AUMZE4SDHD6O8X7FUJUAPX' where id=7; -update noar tt set b0='ZNEIJHUAJ6GLJ' where id=7; -update noar ti set b0='ZNEIJHUAJ6GLJ' where id=7; -update noar tt set v0='23J1QZRV27FFHPH1BVV' where id=7; -update noar ti set v0='23J1QZRV27FFHPH1BVV' where id=7; -update noar tt set b1='RWHRD2YVW' where id=7; -update noar ti set b1='RWHRD2YVW' where id=7; -update noar tt set v0='IGZ' where id=7; -update noar ti set v0='IGZ' where id=7; -update noar tt set b2='XGRZ98XQ0V5P7HIFFRUO4J8' where id=7; -update noar ti set b2='XGRZ98XQ0V5P7HIFFRUO4J8' where id=7; -update noar tt set v0='MKKIQ4OJT' where id=8; -update noar ti set v0='MKKIQ4OJT' where id=8; -update noar tt set b0='JY' where id=8; -update noar ti set b0='JY' where id=8; -update noar tt set v0='MOGTDQ8ERF7JECXGSHUX3W92TYMKR' where id=8; -update noar ti set v0='MOGTDQ8ERF7JECXGSHUX3W92TYMKR' where id=8; -update noar tt set b1='D61JS2ST6F6FGEC29XOE2DRS27U5BSPP' where id=8; -update noar ti set b1='D61JS2ST6F6FGEC29XOE2DRS27U5BSPP' where id=8; -update noar tt set v0='G6LMY1LUTIFU2DFE89R' where id=8; -update noar ti set v0='G6LMY1LUTIFU2DFE89R' where id=8; -update noar tt set b2='3OJ3VH5BYH99Q8NWP9FTLZHV771CYX' where id=8; -update noar ti set b2='3OJ3VH5BYH99Q8NWP9FTLZHV771CYX' where id=8; -update noar tt set v0='0LD8B63HBY' where id=9; -update noar ti set v0='0LD8B63HBY' where id=9; -update noar tt set b0='GFWWZWRI5DF7I0RZZVSAN5WZVCJA' where id=9; -update noar ti set b0='GFWWZWRI5DF7I0RZZVSAN5WZVCJA' where id=9; -update noar tt set v0='JW8GKXES9ZRT3GI15V1Q' where id=9; -update noar ti set v0='JW8GKXES9ZRT3GI15V1Q' where id=9; -update noar tt set b1='ZN' where id=9; -update noar ti set b1='ZN' where id=9; -update noar tt set v0='TYPZJ6VDMQ' where id=9; -update noar ti set v0='TYPZJ6VDMQ' where id=9; -update noar tt set b2='365FB9MNA3ZTD' where id=9; -update noar ti set b2='365FB9MNA3ZTD' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - f0 int null, - v0 varchar(256) null, - b0 mediumblob null, - b1 mediumblob null, - b2 blob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='5LT' where id=1; -update noar ti set v0='5LT' where id=1; -update noar tt set b0='LNXTCKX' where id=1; -update noar ti set b0='LNXTCKX' where id=1; -update noar tt set v0='UEWTU2JHM' where id=1; -update noar ti set v0='UEWTU2JHM' where id=1; -update noar tt set b1='FD0B2WDPSNR2M' where id=1; -update noar ti set b1='FD0B2WDPSNR2M' where id=1; -update noar tt set v0='7PT7CA8EIPOKESUND9CGTSED8R' where id=1; -update noar ti set v0='7PT7CA8EIPOKESUND9CGTSED8R' where id=1; -update noar tt set b2='0REM82L82' where id=1; -update noar ti set b2='0REM82L82' where id=1; -update noar tt set v0='441X29DK2003SSIY9MLK19M3KI07V' where id=2; -update noar ti set v0='441X29DK2003SSIY9MLK19M3KI07V' where id=2; -update noar tt set b0='VUJ4F8SUTHE78DYTDL68YENPLWG' where id=2; -update noar ti set b0='VUJ4F8SUTHE78DYTDL68YENPLWG' where id=2; -update noar tt set v0='9Q3MZI4P686SDKP9K' where id=2; -update noar ti set v0='9Q3MZI4P686SDKP9K' where id=2; -update noar tt set b1='5' where id=2; -update noar ti set b1='5' where id=2; -update noar tt set v0='BJXRK44RBZ0Y9R1BDG4' where id=2; -update noar ti set v0='BJXRK44RBZ0Y9R1BDG4' where id=2; -update noar tt set b2='MX60I' where id=2; -update noar ti set b2='MX60I' where id=2; -update noar tt set v0='ACCEQTDTGF32KA9CWALURYM' where id=3; -update noar ti set v0='ACCEQTDTGF32KA9CWALURYM' where id=3; -update noar tt set b0='KR8R2' where id=3; -update noar ti set b0='KR8R2' where id=3; -update noar tt set v0='O227LV5IC' where id=3; -update noar ti set v0='O227LV5IC' where id=3; -update noar tt set b1='SMMYEVVNUJZLWRRET4DV6G3V4M0YEWPJ' where id=3; -update noar ti set b1='SMMYEVVNUJZLWRRET4DV6G3V4M0YEWPJ' where id=3; -update noar tt set v0='E0YCM1RDTAXZKA52CJBYMWGV86C' where id=3; -update noar ti set v0='E0YCM1RDTAXZKA52CJBYMWGV86C' where id=3; -update noar tt set b2='YHXJBMUTMPGHD8R9YGE' where id=3; -update noar ti set b2='YHXJBMUTMPGHD8R9YGE' where id=3; -update noar tt set v0='RSMLA8XZJ64CF7J' where id=4; -update noar ti set v0='RSMLA8XZJ64CF7J' where id=4; -update noar tt set b0='95A49B5F' where id=4; -update noar ti set b0='95A49B5F' where id=4; -update noar tt set v0='CUJY5X9' where id=4; -update noar ti set v0='CUJY5X9' where id=4; -update noar tt set b1='4VZ4K3L' where id=4; -update noar ti set b1='4VZ4K3L' where id=4; -update noar tt set v0='DSRUC2' where id=4; -update noar ti set v0='DSRUC2' where id=4; -update noar tt set b2='5JSGWN6K1C8KX7DOLHY' where id=4; -update noar ti set b2='5JSGWN6K1C8KX7DOLHY' where id=4; -update noar tt set v0='X51KLB1OEF' where id=5; -update noar ti set v0='X51KLB1OEF' where id=5; -update noar tt set b0='AYMJUWOZK96GYL4KY337XQXRHAPYC' where id=5; -update noar ti set b0='AYMJUWOZK96GYL4KY337XQXRHAPYC' where id=5; -update noar tt set v0='152K5' where id=5; -update noar ti set v0='152K5' where id=5; -update noar tt set b1='6SEO8JMU8FD' where id=5; -update noar ti set b1='6SEO8JMU8FD' where id=5; -update noar tt set v0='J7XKWW5BI5K6' where id=5; -update noar ti set v0='J7XKWW5BI5K6' where id=5; -update noar tt set b2='VWY0KY7KQF7FYZS1LO3L6LZ4P9WNO8' where id=5; -update noar ti set b2='VWY0KY7KQF7FYZS1LO3L6LZ4P9WNO8' where id=5; -update noar tt set v0='4Q677GFVA' where id=6; -update noar ti set v0='4Q677GFVA' where id=6; -update noar tt set b0='X' where id=6; -update noar ti set b0='X' where id=6; -update noar tt set v0='9ZYSUK' where id=6; -update noar ti set v0='9ZYSUK' where id=6; -update noar tt set b1='JKSJKEF9QZQGEH' where id=6; -update noar ti set b1='JKSJKEF9QZQGEH' where id=6; -update noar tt set v0='ZJOUBF1695NIJDHIMAO384' where id=6; -update noar ti set v0='ZJOUBF1695NIJDHIMAO384' where id=6; -update noar tt set b2='ZW74LM9ZBUANXXE6584WQUU79QI9T' where id=6; -update noar ti set b2='ZW74LM9ZBUANXXE6584WQUU79QI9T' where id=6; -update noar tt set v0='XZR654NKSROEH0BPWM9YI9R' where id=7; -update noar ti set v0='XZR654NKSROEH0BPWM9YI9R' where id=7; -update noar tt set b0='MAGDKKGQH' where id=7; -update noar ti set b0='MAGDKKGQH' where id=7; -update noar tt set v0='0ILPRB4YW2F48EICCZXX47P9JJP' where id=7; -update noar ti set v0='0ILPRB4YW2F48EICCZXX47P9JJP' where id=7; -update noar tt set b1='FQC9RK9G12JXVWV' where id=7; -update noar ti set b1='FQC9RK9G12JXVWV' where id=7; -update noar tt set v0='UWOH3778BPPUF' where id=7; -update noar ti set v0='UWOH3778BPPUF' where id=7; -update noar tt set b2='2' where id=7; -update noar ti set b2='2' where id=7; -update noar tt set v0='OROP4X0XUUKUQEGMDO' where id=8; -update noar ti set v0='OROP4X0XUUKUQEGMDO' where id=8; -update noar tt set b0='9KHZFWINZY22TR7DFR' where id=8; -update noar ti set b0='9KHZFWINZY22TR7DFR' where id=8; -update noar tt set v0='VD5YC1BGL128OG3LX7DK7O6H5CUU' where id=8; -update noar ti set v0='VD5YC1BGL128OG3LX7DK7O6H5CUU' where id=8; -update noar tt set b1='8P5D3NB8NIUX4LVZVLV3J5UANFL4OE2' where id=8; -update noar ti set b1='8P5D3NB8NIUX4LVZVLV3J5UANFL4OE2' where id=8; -update noar tt set v0='W575DZ' where id=8; -update noar ti set v0='W575DZ' where id=8; -update noar tt set b2='6JI0SDRKAW8N04BTJDR7Q' where id=8; -update noar ti set b2='6JI0SDRKAW8N04BTJDR7Q' where id=8; -update noar tt set v0='1M7TXVB4FKNRNSJKY5G1QETEX44V' where id=9; -update noar ti set v0='1M7TXVB4FKNRNSJKY5G1QETEX44V' where id=9; -update noar tt set b0='0MSG9HJDENISRY77JWUELH0E0W8NFO8T' where id=9; -update noar ti set b0='0MSG9HJDENISRY77JWUELH0E0W8NFO8T' where id=9; -update noar tt set v0='3D74L3KEP1HWSTH54FZPHV' where id=9; -update noar ti set v0='3D74L3KEP1HWSTH54FZPHV' where id=9; -update noar tt set b1='YCSV912PEB6BE' where id=9; -update noar ti set b1='YCSV912PEB6BE' where id=9; -update noar tt set v0='27' where id=9; -update noar ti set v0='27' where id=9; -update noar tt set b2='3XG0MVJXZ63XGJJZBA8' where id=9; -update noar ti set b2='3XG0MVJXZ63XGJJZBA8' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - f0 int not null, - v0 varchar(32) not null, - b0 mediumblob not null, - b1 mediumblob not null, - b2 blob not null -) engine=tokudb; -insert into tt values (1,0,'','','',''); -insert into tt values (2,0,'','','',''); -insert into tt values (3,0,'','','',''); -insert into tt values (4,0,'','','',''); -insert into tt values (5,0,'','','',''); -insert into tt values (6,0,'','','',''); -insert into tt values (7,0,'','','',''); -insert into tt values (8,0,'','','',''); -insert into tt values (9,0,'','','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='JGN4QTFHFK' where id=1; -update noar ti set v0='JGN4QTFHFK' where id=1; -update noar tt set b0='DNYP0EE1ES4JDL577TSS00Q' where id=1; -update noar ti set b0='DNYP0EE1ES4JDL577TSS00Q' where id=1; -update noar tt set v0='UPJSWGW4MM6LI0F8K961PASN' where id=1; -update noar ti set v0='UPJSWGW4MM6LI0F8K961PASN' where id=1; -update noar tt set b1='FPG3R88I37FLO5' where id=1; -update noar ti set b1='FPG3R88I37FLO5' where id=1; -update noar tt set v0='BV0BA9' where id=1; -update noar ti set v0='BV0BA9' where id=1; -update noar tt set b2='WMCJM4LEX7DX0W6KPEF08UON' where id=1; -update noar ti set b2='WMCJM4LEX7DX0W6KPEF08UON' where id=1; -update noar tt set v0='G7' where id=2; -update noar ti set v0='G7' where id=2; -update noar tt set b0='TFH' where id=2; -update noar ti set b0='TFH' where id=2; -update noar tt set v0='M7AQAS08TI4B82' where id=2; -update noar ti set v0='M7AQAS08TI4B82' where id=2; -update noar tt set b1='H5LK7PEHOB3Y24G' where id=2; -update noar ti set b1='H5LK7PEHOB3Y24G' where id=2; -update noar tt set v0='5X419VQ4KWPIBM' where id=2; -update noar ti set v0='5X419VQ4KWPIBM' where id=2; -update noar tt set b2='VPBBD' where id=2; -update noar ti set b2='VPBBD' where id=2; -update noar tt set v0='LJXZ91ZOXXTW1HPYB304EC' where id=3; -update noar ti set v0='LJXZ91ZOXXTW1HPYB304EC' where id=3; -update noar tt set b0='E76KK42IV0L2P8Y7O7VOZOO6' where id=3; -update noar ti set b0='E76KK42IV0L2P8Y7O7VOZOO6' where id=3; -update noar tt set v0='B0' where id=3; -update noar ti set v0='B0' where id=3; -update noar tt set b1='UOT5F79' where id=3; -update noar ti set b1='UOT5F79' where id=3; -update noar tt set v0='4270VR8' where id=3; -update noar ti set v0='4270VR8' where id=3; -update noar tt set b2='9I8918KAPITNFZLWIFJ266FOANA' where id=3; -update noar ti set b2='9I8918KAPITNFZLWIFJ266FOANA' where id=3; -update noar tt set v0='5OKW3JXHD6E7435MINJ7M' where id=4; -update noar ti set v0='5OKW3JXHD6E7435MINJ7M' where id=4; -update noar tt set b0='1YBYYBD4B7AY7JHH3U8JSNNB6I1WXG8R' where id=4; -update noar ti set b0='1YBYYBD4B7AY7JHH3U8JSNNB6I1WXG8R' where id=4; -update noar tt set v0='PKWJU4I8IWH6VVQX0K3EW80YNKOZH' where id=4; -update noar ti set v0='PKWJU4I8IWH6VVQX0K3EW80YNKOZH' where id=4; -update noar tt set b1='AJMIJEEV' where id=4; -update noar ti set b1='AJMIJEEV' where id=4; -update noar tt set v0='GCAK54V1BUTU5FI2U' where id=4; -update noar ti set v0='GCAK54V1BUTU5FI2U' where id=4; -update noar tt set b2='QU93GWILSD4O439A49LHE' where id=4; -update noar ti set b2='QU93GWILSD4O439A49LHE' where id=4; -update noar tt set v0='HYREQ9FG9UNRGMAIYX' where id=5; -update noar ti set v0='HYREQ9FG9UNRGMAIYX' where id=5; -update noar tt set b0='3GBT0' where id=5; -update noar ti set b0='3GBT0' where id=5; -update noar tt set v0='S18EQDS' where id=5; -update noar ti set v0='S18EQDS' where id=5; -update noar tt set b1='ACKI84AH8DHCDERB53Z335MBTLKK66F9' where id=5; -update noar ti set b1='ACKI84AH8DHCDERB53Z335MBTLKK66F9' where id=5; -update noar tt set v0='SLO3BUOT5U3IE9' where id=5; -update noar ti set v0='SLO3BUOT5U3IE9' where id=5; -update noar tt set b2='2D91TPELQGJ' where id=5; -update noar ti set b2='2D91TPELQGJ' where id=5; -update noar tt set v0='F6132GVKX24P' where id=6; -update noar ti set v0='F6132GVKX24P' where id=6; -update noar tt set b0='KOPC7I2KY5FP5H815EF9F2QCIEWF' where id=6; -update noar ti set b0='KOPC7I2KY5FP5H815EF9F2QCIEWF' where id=6; -update noar tt set v0='UDKKHE4CR8EVX2Q5LO17BP9LO77' where id=6; -update noar ti set v0='UDKKHE4CR8EVX2Q5LO17BP9LO77' where id=6; -update noar tt set b1='H7P21A' where id=6; -update noar ti set b1='H7P21A' where id=6; -update noar tt set v0='3YIK9FNE5ILY' where id=6; -update noar ti set v0='3YIK9FNE5ILY' where id=6; -update noar tt set b2='063JBL6QOSQ34B5MUKL' where id=6; -update noar ti set b2='063JBL6QOSQ34B5MUKL' where id=6; -update noar tt set v0='WX9WXYIGGR4DZZQMA1MGXIB' where id=7; -update noar ti set v0='WX9WXYIGGR4DZZQMA1MGXIB' where id=7; -update noar tt set b0='1CMHFS9WQILWH' where id=7; -update noar ti set b0='1CMHFS9WQILWH' where id=7; -update noar tt set v0='CZMKT8F' where id=7; -update noar ti set v0='CZMKT8F' where id=7; -update noar tt set b1='YE0YYRN5A5V58T0I' where id=7; -update noar ti set b1='YE0YYRN5A5V58T0I' where id=7; -update noar tt set v0='9D22H8K' where id=7; -update noar ti set v0='9D22H8K' where id=7; -update noar tt set b2='HMNAC11J4S9PLTL8KSKSQTY8' where id=7; -update noar ti set b2='HMNAC11J4S9PLTL8KSKSQTY8' where id=7; -update noar tt set v0='N8RNIJ8R75RVP8OO4G35501BCZH1E5PK' where id=8; -update noar ti set v0='N8RNIJ8R75RVP8OO4G35501BCZH1E5PK' where id=8; -update noar tt set b0='IBPTTO45M40M8W4A5T9QK4779' where id=8; -update noar ti set b0='IBPTTO45M40M8W4A5T9QK4779' where id=8; -update noar tt set v0='TEQKE1C2DJEOCRRT7W8PR' where id=8; -update noar ti set v0='TEQKE1C2DJEOCRRT7W8PR' where id=8; -update noar tt set b1='7D' where id=8; -update noar ti set b1='7D' where id=8; -update noar tt set v0='4FABU203DVBSM4CIVQYA5R8EFIL' where id=8; -update noar ti set v0='4FABU203DVBSM4CIVQYA5R8EFIL' where id=8; -update noar tt set b2='2DGHEUT4H0HCQ19DB' where id=8; -update noar ti set b2='2DGHEUT4H0HCQ19DB' where id=8; -update noar tt set v0='VMZTHZ8WZ4KHWA' where id=9; -update noar ti set v0='VMZTHZ8WZ4KHWA' where id=9; -update noar tt set b0='Q8G4ANO9FWPMBSYSP7EU8TH2G' where id=9; -update noar ti set b0='Q8G4ANO9FWPMBSYSP7EU8TH2G' where id=9; -update noar tt set v0='GA0HBEDG28ISRLMNH6B45Y8P' where id=9; -update noar ti set v0='GA0HBEDG28ISRLMNH6B45Y8P' where id=9; -update noar tt set b1='IHM9GX2SND8MNR7AAF4UE02' where id=9; -update noar ti set b1='IHM9GX2SND8MNR7AAF4UE02' where id=9; -update noar tt set v0='MBJDOXW3LS0RS730WJ175KYZWATGWZQ' where id=9; -update noar ti set v0='MBJDOXW3LS0RS730WJ175KYZWATGWZQ' where id=9; -update noar tt set b2='WB84KK3ES0T' where id=9; -update noar ti set b2='WB84KK3ES0T' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - f0 int not null, - v0 varchar(256) not null, - b0 mediumblob not null, - b1 mediumblob not null, - b2 blob not null -) engine=tokudb; -insert into tt values (1,0,'','','',''); -insert into tt values (2,0,'','','',''); -insert into tt values (3,0,'','','',''); -insert into tt values (4,0,'','','',''); -insert into tt values (5,0,'','','',''); -insert into tt values (6,0,'','','',''); -insert into tt values (7,0,'','','',''); -insert into tt values (8,0,'','','',''); -insert into tt values (9,0,'','','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='QBY6LV' where id=1; -update noar ti set v0='QBY6LV' where id=1; -update noar tt set b0='OVKC107A0Y3ZCY12G43LYBUR' where id=1; -update noar ti set b0='OVKC107A0Y3ZCY12G43LYBUR' where id=1; -update noar tt set v0='K8LJYQ2PFKJDD' where id=1; -update noar ti set v0='K8LJYQ2PFKJDD' where id=1; -update noar tt set b1='GSYQNRKCBJJA' where id=1; -update noar ti set b1='GSYQNRKCBJJA' where id=1; -update noar tt set v0='E1U' where id=1; -update noar ti set v0='E1U' where id=1; -update noar tt set b2='MQQZGAUVAOEENS7AJ2' where id=1; -update noar ti set b2='MQQZGAUVAOEENS7AJ2' where id=1; -update noar tt set v0='S3WZ0YC9V011XSG4EEPPZ6H4MT4D' where id=2; -update noar ti set v0='S3WZ0YC9V011XSG4EEPPZ6H4MT4D' where id=2; -update noar tt set b0='DI83NAA0MNS3QRLM' where id=2; -update noar ti set b0='DI83NAA0MNS3QRLM' where id=2; -update noar tt set v0='JA6SRDWITUO9VV4TKXB7' where id=2; -update noar ti set v0='JA6SRDWITUO9VV4TKXB7' where id=2; -update noar tt set b1='13Z57OG4PEDBVPEFRHBRNPQ0V6' where id=2; -update noar ti set b1='13Z57OG4PEDBVPEFRHBRNPQ0V6' where id=2; -update noar tt set v0='NHJWJ601DZ' where id=2; -update noar ti set v0='NHJWJ601DZ' where id=2; -update noar tt set b2='QL3D8OO67BS' where id=2; -update noar ti set b2='QL3D8OO67BS' where id=2; -update noar tt set v0='FO13D2POSU4TKT366NP' where id=3; -update noar ti set v0='FO13D2POSU4TKT366NP' where id=3; -update noar tt set b0='F3P6CJK2U4KNYIXE' where id=3; -update noar ti set b0='F3P6CJK2U4KNYIXE' where id=3; -update noar tt set v0='EFFCKQKTEZ288' where id=3; -update noar ti set v0='EFFCKQKTEZ288' where id=3; -update noar tt set b1='8ETN5QNUEVH77IU8S0QCDQBTCD' where id=3; -update noar ti set b1='8ETN5QNUEVH77IU8S0QCDQBTCD' where id=3; -update noar tt set v0='W4CZLDZO3CQY0T4ACQH24FD' where id=3; -update noar ti set v0='W4CZLDZO3CQY0T4ACQH24FD' where id=3; -update noar tt set b2='68OQ9XSPWC' where id=3; -update noar ti set b2='68OQ9XSPWC' where id=3; -update noar tt set v0='C4CDQ5M2IABWBS42HAAS' where id=4; -update noar ti set v0='C4CDQ5M2IABWBS42HAAS' where id=4; -update noar tt set b0='5EJRVGKY0XB' where id=4; -update noar ti set b0='5EJRVGKY0XB' where id=4; -update noar tt set v0='F2WNH15FORSUB632R1FFBHY4B' where id=4; -update noar ti set v0='F2WNH15FORSUB632R1FFBHY4B' where id=4; -update noar tt set b1='NDCBEC2CY8G4VPOEQVMZFX8Y' where id=4; -update noar ti set b1='NDCBEC2CY8G4VPOEQVMZFX8Y' where id=4; -update noar tt set v0='BRVH6XJTK3DVSWMQG' where id=4; -update noar ti set v0='BRVH6XJTK3DVSWMQG' where id=4; -update noar tt set b2='8OMQPM95BTW6JLXXX4WSYCH82CJG34K' where id=4; -update noar ti set b2='8OMQPM95BTW6JLXXX4WSYCH82CJG34K' where id=4; -update noar tt set v0='B3EBNE7I32' where id=5; -update noar ti set v0='B3EBNE7I32' where id=5; -update noar tt set b0='P' where id=5; -update noar ti set b0='P' where id=5; -update noar tt set v0='AMZYJPSCET70XVUJMHCTXQBSXX' where id=5; -update noar ti set v0='AMZYJPSCET70XVUJMHCTXQBSXX' where id=5; -update noar tt set b1='RQJJQ' where id=5; -update noar ti set b1='RQJJQ' where id=5; -update noar tt set v0='SI' where id=5; -update noar ti set v0='SI' where id=5; -update noar tt set b2='1Q0W67XJ5R53' where id=5; -update noar ti set b2='1Q0W67XJ5R53' where id=5; -update noar tt set v0='W' where id=6; -update noar ti set v0='W' where id=6; -update noar tt set b0='ZQQZZS2650TVV58' where id=6; -update noar ti set b0='ZQQZZS2650TVV58' where id=6; -update noar tt set v0='FMX6N8SRJPGSUBJZS46S' where id=6; -update noar ti set v0='FMX6N8SRJPGSUBJZS46S' where id=6; -update noar tt set b1='T3VSKTNGPN0OLHGAV9K5Y1I5ERVQ' where id=6; -update noar ti set b1='T3VSKTNGPN0OLHGAV9K5Y1I5ERVQ' where id=6; -update noar tt set v0='ZR5A64D' where id=6; -update noar ti set v0='ZR5A64D' where id=6; -update noar tt set b2='0L98AT5YQK6KGF5' where id=6; -update noar ti set b2='0L98AT5YQK6KGF5' where id=6; -update noar tt set v0='F24NBRI1HGH6HU02SBHZLKL78KFV2W' where id=7; -update noar ti set v0='F24NBRI1HGH6HU02SBHZLKL78KFV2W' where id=7; -update noar tt set b0='3BCZN' where id=7; -update noar ti set b0='3BCZN' where id=7; -update noar tt set v0='NM07MR8SN9L69D0' where id=7; -update noar ti set v0='NM07MR8SN9L69D0' where id=7; -update noar tt set b1='2KFQF9IPL4WMX5Z' where id=7; -update noar ti set b1='2KFQF9IPL4WMX5Z' where id=7; -update noar tt set v0='2PCTBJ' where id=7; -update noar ti set v0='2PCTBJ' where id=7; -update noar tt set b2='QLHI32EKBMNNVQD' where id=7; -update noar ti set b2='QLHI32EKBMNNVQD' where id=7; -update noar tt set v0='S98ROI44IXUYDXQ' where id=8; -update noar ti set v0='S98ROI44IXUYDXQ' where id=8; -update noar tt set b0='NWISI' where id=8; -update noar ti set b0='NWISI' where id=8; -update noar tt set v0='8SG4UK11AXE016YB452' where id=8; -update noar ti set v0='8SG4UK11AXE016YB452' where id=8; -update noar tt set b1='9FGH3A2JVQ3GFF4CJ' where id=8; -update noar ti set b1='9FGH3A2JVQ3GFF4CJ' where id=8; -update noar tt set v0='8E54PD6V905HEA17WB' where id=8; -update noar ti set v0='8E54PD6V905HEA17WB' where id=8; -update noar tt set b2='ZMLRM3O0' where id=8; -update noar ti set b2='ZMLRM3O0' where id=8; -update noar tt set v0='9H2YM2J5E0BS0A8OJB8P24B2H3' where id=9; -update noar ti set v0='9H2YM2J5E0BS0A8OJB8P24B2H3' where id=9; -update noar tt set b0='F4H1' where id=9; -update noar ti set b0='F4H1' where id=9; -update noar tt set v0='U3URAFKJP8TL07NMU03N94JGNO' where id=9; -update noar ti set v0='U3URAFKJP8TL07NMU03N94JGNO' where id=9; -update noar tt set b1='WBKOZUBPFKC' where id=9; -update noar ti set b1='WBKOZUBPFKC' where id=9; -update noar tt set v0='950NBB1L1WJAYF' where id=9; -update noar ti set v0='950NBB1L1WJAYF' where id=9; -update noar tt set b2='3JZE6A0GL6K4055LXF8KEJUBALFGF6F1' where id=9; -update noar ti set b2='3JZE6A0GL6K4055LXF8KEJUBALFGF6F1' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - f0 int null, - v0 varchar(32) null, - b0 mediumblob null, - b1 mediumblob null, - b2 mediumblob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='9877QISJZWDG5TRCA0WOA7QDCQDY3N' where id=1; -update noar ti set v0='9877QISJZWDG5TRCA0WOA7QDCQDY3N' where id=1; -update noar tt set b0='UN1MQMGSL0USVSIKFO' where id=1; -update noar ti set b0='UN1MQMGSL0USVSIKFO' where id=1; -update noar tt set v0='O0N4X' where id=1; -update noar ti set v0='O0N4X' where id=1; -update noar tt set b1='31' where id=1; -update noar ti set b1='31' where id=1; -update noar tt set v0='X9TCNPDK1TY305U72VI6' where id=1; -update noar ti set v0='X9TCNPDK1TY305U72VI6' where id=1; -update noar tt set b2='06R' where id=1; -update noar ti set b2='06R' where id=1; -update noar tt set v0='L0N3UJP51CXLT3Z69XI6NAQ3EWP1GB' where id=2; -update noar ti set v0='L0N3UJP51CXLT3Z69XI6NAQ3EWP1GB' where id=2; -update noar tt set b0='LWH30LLDH2JV6TYUGF' where id=2; -update noar ti set b0='LWH30LLDH2JV6TYUGF' where id=2; -update noar tt set v0='2PI29TFFIO0' where id=2; -update noar ti set v0='2PI29TFFIO0' where id=2; -update noar tt set b1='K5YRI9TSHS67Z77F2A3S9U5U4RQW3C' where id=2; -update noar ti set b1='K5YRI9TSHS67Z77F2A3S9U5U4RQW3C' where id=2; -update noar tt set v0='9QIKKPAYU3XFX4C' where id=2; -update noar ti set v0='9QIKKPAYU3XFX4C' where id=2; -update noar tt set b2='8OCM2CRFW759M0' where id=2; -update noar ti set b2='8OCM2CRFW759M0' where id=2; -update noar tt set v0='ZOUS40IIDM9XTCG2Z7P9MCHS' where id=3; -update noar ti set v0='ZOUS40IIDM9XTCG2Z7P9MCHS' where id=3; -update noar tt set b0='7E3BD5O1' where id=3; -update noar ti set b0='7E3BD5O1' where id=3; -update noar tt set v0='QZ4KN75FEGVF9' where id=3; -update noar ti set v0='QZ4KN75FEGVF9' where id=3; -update noar tt set b1='QF1KX7WTP' where id=3; -update noar ti set b1='QF1KX7WTP' where id=3; -update noar tt set v0='HOPUNF7M30GQNI0Y7JXIU6AKYK3A4EG' where id=3; -update noar ti set v0='HOPUNF7M30GQNI0Y7JXIU6AKYK3A4EG' where id=3; -update noar tt set b2='WPHABIAUXA0U0' where id=3; -update noar ti set b2='WPHABIAUXA0U0' where id=3; -update noar tt set v0='4806XCACSQKO' where id=4; -update noar ti set v0='4806XCACSQKO' where id=4; -update noar tt set b0='JR71U4' where id=4; -update noar ti set b0='JR71U4' where id=4; -update noar tt set v0='6Q8RPDXCTCI75U8W6FV5TG1CE4ZRG' where id=4; -update noar ti set v0='6Q8RPDXCTCI75U8W6FV5TG1CE4ZRG' where id=4; -update noar tt set b1='N3FRK2FP' where id=4; -update noar ti set b1='N3FRK2FP' where id=4; -update noar tt set v0='QEBD6LKNO' where id=4; -update noar ti set v0='QEBD6LKNO' where id=4; -update noar tt set b2='6U63NHFD42RY20S1' where id=4; -update noar ti set b2='6U63NHFD42RY20S1' where id=4; -update noar tt set v0='3MO6O6SHTRK' where id=5; -update noar ti set v0='3MO6O6SHTRK' where id=5; -update noar tt set b0='IE3A9KPQJ7R4KNYF2WPAEEC97A' where id=5; -update noar ti set b0='IE3A9KPQJ7R4KNYF2WPAEEC97A' where id=5; -update noar tt set v0='LD26DWMCPJVL1K7' where id=5; -update noar ti set v0='LD26DWMCPJVL1K7' where id=5; -update noar tt set b1='L26WI76NIFVTSFMZ7GBBU40KKANO8Z6' where id=5; -update noar ti set b1='L26WI76NIFVTSFMZ7GBBU40KKANO8Z6' where id=5; -update noar tt set v0='KLH0JBWPYGSKYGZ8Q7NCG' where id=5; -update noar ti set v0='KLH0JBWPYGSKYGZ8Q7NCG' where id=5; -update noar tt set b2='IKQDOQT694KK' where id=5; -update noar ti set b2='IKQDOQT694KK' where id=5; -update noar tt set v0='KW7OUX2ZGXXIMXVNEP2MG15M13' where id=6; -update noar ti set v0='KW7OUX2ZGXXIMXVNEP2MG15M13' where id=6; -update noar tt set b0='KXRZKKZW7D' where id=6; -update noar ti set b0='KXRZKKZW7D' where id=6; -update noar tt set v0='5XINU22GELE81P0O8HFW2D' where id=6; -update noar ti set v0='5XINU22GELE81P0O8HFW2D' where id=6; -update noar tt set b1='MWM54FOMUB2WR' where id=6; -update noar ti set b1='MWM54FOMUB2WR' where id=6; -update noar tt set v0='1DD2B4KHSMHUW18CSMSPH12OMCH09L65' where id=6; -update noar ti set v0='1DD2B4KHSMHUW18CSMSPH12OMCH09L65' where id=6; -update noar tt set b2='4QRM7CD07XREJXMP2UWT7BK8NV3K' where id=6; -update noar ti set b2='4QRM7CD07XREJXMP2UWT7BK8NV3K' where id=6; -update noar tt set v0='46MBYC4OHHEGFY1K7928BN37LSBE' where id=7; -update noar ti set v0='46MBYC4OHHEGFY1K7928BN37LSBE' where id=7; -update noar tt set b0='5VHGNSJLOZ5IHO0WVQVNJ1WO5VUGHP8Y' where id=7; -update noar ti set b0='5VHGNSJLOZ5IHO0WVQVNJ1WO5VUGHP8Y' where id=7; -update noar tt set v0='7J' where id=7; -update noar ti set v0='7J' where id=7; -update noar tt set b1='FXXY2EWJE8JXKTH' where id=7; -update noar ti set b1='FXXY2EWJE8JXKTH' where id=7; -update noar tt set v0='1DXSFXQ' where id=7; -update noar ti set v0='1DXSFXQ' where id=7; -update noar tt set b2='8898HQDTJF' where id=7; -update noar ti set b2='8898HQDTJF' where id=7; -update noar tt set v0='9F82N2B9FI' where id=8; -update noar ti set v0='9F82N2B9FI' where id=8; -update noar tt set b0='D9P8FY' where id=8; -update noar ti set b0='D9P8FY' where id=8; -update noar tt set v0='0E6LKTH10EG' where id=8; -update noar ti set v0='0E6LKTH10EG' where id=8; -update noar tt set b1='PBB3AQ' where id=8; -update noar ti set b1='PBB3AQ' where id=8; -update noar tt set v0='L99E7LA' where id=8; -update noar ti set v0='L99E7LA' where id=8; -update noar tt set b2='ZW40C5QYC5' where id=8; -update noar ti set b2='ZW40C5QYC5' where id=8; -update noar tt set v0='VKA30BP6ECKRZPY0N3FP' where id=9; -update noar ti set v0='VKA30BP6ECKRZPY0N3FP' where id=9; -update noar tt set b0='O' where id=9; -update noar ti set b0='O' where id=9; -update noar tt set v0='14QD9JUSW4P8AYRHHH607B4V' where id=9; -update noar ti set v0='14QD9JUSW4P8AYRHHH607B4V' where id=9; -update noar tt set b1='8LY6P8ZBRNQM4VUGA9Y8K3PG9NKJR7ZB' where id=9; -update noar ti set b1='8LY6P8ZBRNQM4VUGA9Y8K3PG9NKJR7ZB' where id=9; -update noar tt set v0='PA6GLXJTEX' where id=9; -update noar ti set v0='PA6GLXJTEX' where id=9; -update noar tt set b2='KIEBI52U' where id=9; -update noar ti set b2='KIEBI52U' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - f0 int null, - v0 varchar(256) null, - b0 mediumblob null, - b1 mediumblob null, - b2 mediumblob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='H5HBU6R8BZYCIII1IFV4YLME' where id=1; -update noar ti set v0='H5HBU6R8BZYCIII1IFV4YLME' where id=1; -update noar tt set b0='N24KW0DCPYJQ2EQF0NHLE6FB7JJ' where id=1; -update noar ti set b0='N24KW0DCPYJQ2EQF0NHLE6FB7JJ' where id=1; -update noar tt set v0='14VXM7NSH8JELONFR89PG' where id=1; -update noar ti set v0='14VXM7NSH8JELONFR89PG' where id=1; -update noar tt set b1='BS5GV' where id=1; -update noar ti set b1='BS5GV' where id=1; -update noar tt set v0='RI5DGFRDWTME4' where id=1; -update noar ti set v0='RI5DGFRDWTME4' where id=1; -update noar tt set b2='QVO1VLYYV8QJ4KUSJDF' where id=1; -update noar ti set b2='QVO1VLYYV8QJ4KUSJDF' where id=1; -update noar tt set v0='DCJBP1W73KPH44P9A2F4' where id=2; -update noar ti set v0='DCJBP1W73KPH44P9A2F4' where id=2; -update noar tt set b0='R9SCSZYP2NW8W4MG5L4XPWV6LLUX9L' where id=2; -update noar ti set b0='R9SCSZYP2NW8W4MG5L4XPWV6LLUX9L' where id=2; -update noar tt set v0='B9KMSZ29WFF5IAY9K' where id=2; -update noar ti set v0='B9KMSZ29WFF5IAY9K' where id=2; -update noar tt set b1='G6EANYJD4AOC4R53' where id=2; -update noar ti set b1='G6EANYJD4AOC4R53' where id=2; -update noar tt set v0='QPFLNX' where id=2; -update noar ti set v0='QPFLNX' where id=2; -update noar tt set b2='N' where id=2; -update noar ti set b2='N' where id=2; -update noar tt set v0='KHET61D2' where id=3; -update noar ti set v0='KHET61D2' where id=3; -update noar tt set b0='HO5B1HZTHVILWBW1X9ZYWB63O' where id=3; -update noar ti set b0='HO5B1HZTHVILWBW1X9ZYWB63O' where id=3; -update noar tt set v0='PQDIOQK5LLXYD9GVBOM22P' where id=3; -update noar ti set v0='PQDIOQK5LLXYD9GVBOM22P' where id=3; -update noar tt set b1='EI1DPMO13ZMK5EE87' where id=3; -update noar ti set b1='EI1DPMO13ZMK5EE87' where id=3; -update noar tt set v0='7GDUXQNDOKFXNW9POZ8DDAYY83U7M3' where id=3; -update noar ti set v0='7GDUXQNDOKFXNW9POZ8DDAYY83U7M3' where id=3; -update noar tt set b2='0273OXVZ57ZESOFIFLBCTY4WPVM' where id=3; -update noar ti set b2='0273OXVZ57ZESOFIFLBCTY4WPVM' where id=3; -update noar tt set v0='G01U6X7A43G8Q' where id=4; -update noar ti set v0='G01U6X7A43G8Q' where id=4; -update noar tt set b0='2NIWV8FFS' where id=4; -update noar ti set b0='2NIWV8FFS' where id=4; -update noar tt set v0='9UK0J14GF0DC' where id=4; -update noar ti set v0='9UK0J14GF0DC' where id=4; -update noar tt set b1='B2C6Y4HNDL9QZKP2ZDU4BO5' where id=4; -update noar ti set b1='B2C6Y4HNDL9QZKP2ZDU4BO5' where id=4; -update noar tt set v0='3YLJH4XW0' where id=4; -update noar ti set v0='3YLJH4XW0' where id=4; -update noar tt set b2='AECACJFS' where id=4; -update noar ti set b2='AECACJFS' where id=4; -update noar tt set v0='311H3EHC' where id=5; -update noar ti set v0='311H3EHC' where id=5; -update noar tt set b0='YAHEPPLTBEXW0A4NGLNIOALW7' where id=5; -update noar ti set b0='YAHEPPLTBEXW0A4NGLNIOALW7' where id=5; -update noar tt set v0='0A8L603F5ZNLBXE528SF1KG8R93' where id=5; -update noar ti set v0='0A8L603F5ZNLBXE528SF1KG8R93' where id=5; -update noar tt set b1='4' where id=5; -update noar ti set b1='4' where id=5; -update noar tt set v0='WUBWN34O6QC9UJYYVEQ56BCS' where id=5; -update noar ti set v0='WUBWN34O6QC9UJYYVEQ56BCS' where id=5; -update noar tt set b2='DFVG6J' where id=5; -update noar ti set b2='DFVG6J' where id=5; -update noar tt set v0='WARQW9ICF8U8MQV4ZQBUENP2U3BEHL' where id=6; -update noar ti set v0='WARQW9ICF8U8MQV4ZQBUENP2U3BEHL' where id=6; -update noar tt set b0='NCEALEANHJ5S4YYUV' where id=6; -update noar ti set b0='NCEALEANHJ5S4YYUV' where id=6; -update noar tt set v0='G1NMBSNUER7DSXM0' where id=6; -update noar ti set v0='G1NMBSNUER7DSXM0' where id=6; -update noar tt set b1='HD4UGAIHZ3FS72PHGD5I9LH0S' where id=6; -update noar ti set b1='HD4UGAIHZ3FS72PHGD5I9LH0S' where id=6; -update noar tt set v0='QGNO39Z2T055QG39QV2NPSVI9MPY3J74' where id=6; -update noar ti set v0='QGNO39Z2T055QG39QV2NPSVI9MPY3J74' where id=6; -update noar tt set b2='AZ' where id=6; -update noar ti set b2='AZ' where id=6; -update noar tt set v0='MIR9' where id=7; -update noar ti set v0='MIR9' where id=7; -update noar tt set b0='RSKLUMYAC5LN4JWVT' where id=7; -update noar ti set b0='RSKLUMYAC5LN4JWVT' where id=7; -update noar tt set v0='NSAGD36PD97Q7OFAPSLGZ3Y5' where id=7; -update noar ti set v0='NSAGD36PD97Q7OFAPSLGZ3Y5' where id=7; -update noar tt set b1='G8YRCVXB3J11YVQOYRZDDHJ5Z12' where id=7; -update noar ti set b1='G8YRCVXB3J11YVQOYRZDDHJ5Z12' where id=7; -update noar tt set v0='JYUJ30HLYSNIO40BHKUUS9IMTYNKDD' where id=7; -update noar ti set v0='JYUJ30HLYSNIO40BHKUUS9IMTYNKDD' where id=7; -update noar tt set b2='AA5GR0WPXUI0ETO1HSEO3OZ' where id=7; -update noar ti set b2='AA5GR0WPXUI0ETO1HSEO3OZ' where id=7; -update noar tt set v0='MF5V32X6B9VVCDF' where id=8; -update noar ti set v0='MF5V32X6B9VVCDF' where id=8; -update noar tt set b0='WKAS4XO23A2VIXMW7UX56LGCJHH24T' where id=8; -update noar ti set b0='WKAS4XO23A2VIXMW7UX56LGCJHH24T' where id=8; -update noar tt set v0='40492I' where id=8; -update noar ti set v0='40492I' where id=8; -update noar tt set b1='K2XZKP6YUKJ599MBIULYS' where id=8; -update noar ti set b1='K2XZKP6YUKJ599MBIULYS' where id=8; -update noar tt set v0='AKIQYVM4DN6QAV7HPN905S1LCXZE7' where id=8; -update noar ti set v0='AKIQYVM4DN6QAV7HPN905S1LCXZE7' where id=8; -update noar tt set b2='9W4XY9Y8XCO6I5BWBQG' where id=8; -update noar ti set b2='9W4XY9Y8XCO6I5BWBQG' where id=8; -update noar tt set v0='8ODC8TJ8X32TFC6U6K' where id=9; -update noar ti set v0='8ODC8TJ8X32TFC6U6K' where id=9; -update noar tt set b0='B982RRGEVL02Y91VWCW7' where id=9; -update noar ti set b0='B982RRGEVL02Y91VWCW7' where id=9; -update noar tt set v0='CY' where id=9; -update noar ti set v0='CY' where id=9; -update noar tt set b1='WUS5' where id=9; -update noar ti set b1='WUS5' where id=9; -update noar tt set v0='DB6UV1N9FS9YCN3S' where id=9; -update noar ti set v0='DB6UV1N9FS9YCN3S' where id=9; -update noar tt set b2='2JR32MU3K1L2OY8KW7HU' where id=9; -update noar ti set b2='2JR32MU3K1L2OY8KW7HU' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - f0 int not null, - v0 varchar(32) not null, - b0 mediumblob not null, - b1 mediumblob not null, - b2 mediumblob not null -) engine=tokudb; -insert into tt values (1,0,'','','',''); -insert into tt values (2,0,'','','',''); -insert into tt values (3,0,'','','',''); -insert into tt values (4,0,'','','',''); -insert into tt values (5,0,'','','',''); -insert into tt values (6,0,'','','',''); -insert into tt values (7,0,'','','',''); -insert into tt values (8,0,'','','',''); -insert into tt values (9,0,'','','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='0BAHDVEMAF6TXCHRV8RZ' where id=1; -update noar ti set v0='0BAHDVEMAF6TXCHRV8RZ' where id=1; -update noar tt set b0='6W681RWYE9QLQA1SEJ4WFK' where id=1; -update noar ti set b0='6W681RWYE9QLQA1SEJ4WFK' where id=1; -update noar tt set v0='3P24TYJXMVSW1' where id=1; -update noar ti set v0='3P24TYJXMVSW1' where id=1; -update noar tt set b1='K4F6RIK9WB4LCL7XIFDP2XP8IG8XRCV2' where id=1; -update noar ti set b1='K4F6RIK9WB4LCL7XIFDP2XP8IG8XRCV2' where id=1; -update noar tt set v0='YWF7ZMWX1WUXMVUQXZSFQV70D59' where id=1; -update noar ti set v0='YWF7ZMWX1WUXMVUQXZSFQV70D59' where id=1; -update noar tt set b2='YQJN2J5I9IL' where id=1; -update noar ti set b2='YQJN2J5I9IL' where id=1; -update noar tt set v0='S' where id=2; -update noar ti set v0='S' where id=2; -update noar tt set b0='0VM3S2TQIMV9KGQRHO6042353V' where id=2; -update noar ti set b0='0VM3S2TQIMV9KGQRHO6042353V' where id=2; -update noar tt set v0='MH01K96WWUEY06YQA3AJVXDWPLH57' where id=2; -update noar ti set v0='MH01K96WWUEY06YQA3AJVXDWPLH57' where id=2; -update noar tt set b1='VYC8U14504KR3B7U94QMIG' where id=2; -update noar ti set b1='VYC8U14504KR3B7U94QMIG' where id=2; -update noar tt set v0='TTKPMGOB5J4C8ZDJZ5WJ' where id=2; -update noar ti set v0='TTKPMGOB5J4C8ZDJZ5WJ' where id=2; -update noar tt set b2='ZOH0X84S14SV8NUT513W9' where id=2; -update noar ti set b2='ZOH0X84S14SV8NUT513W9' where id=2; -update noar tt set v0='HXJD18J' where id=3; -update noar ti set v0='HXJD18J' where id=3; -update noar tt set b0='0BX' where id=3; -update noar ti set b0='0BX' where id=3; -update noar tt set v0='1' where id=3; -update noar ti set v0='1' where id=3; -update noar tt set b1='96NGGQAJN' where id=3; -update noar ti set b1='96NGGQAJN' where id=3; -update noar tt set v0='MC6CSVS6K1' where id=3; -update noar ti set v0='MC6CSVS6K1' where id=3; -update noar tt set b2='L0O4RE2TBDVJQ6W3N5S1O97E0P2B' where id=3; -update noar ti set b2='L0O4RE2TBDVJQ6W3N5S1O97E0P2B' where id=3; -update noar tt set v0='QF4JB1HEQD2QBB7V8G3E8O8I' where id=4; -update noar ti set v0='QF4JB1HEQD2QBB7V8G3E8O8I' where id=4; -update noar tt set b0='6I8CIW9S3IDV5NGH15SQK6WG7ZIMZGVU' where id=4; -update noar ti set b0='6I8CIW9S3IDV5NGH15SQK6WG7ZIMZGVU' where id=4; -update noar tt set v0='DCR9KRAGB88R2612GK5I7A0YZ8J4D0VD' where id=4; -update noar ti set v0='DCR9KRAGB88R2612GK5I7A0YZ8J4D0VD' where id=4; -update noar tt set b1='NI2C7ZOLRMSM6YGXBS8HPK1VS91PZ5N' where id=4; -update noar ti set b1='NI2C7ZOLRMSM6YGXBS8HPK1VS91PZ5N' where id=4; -update noar tt set v0='5XUO7VXPWMI' where id=4; -update noar ti set v0='5XUO7VXPWMI' where id=4; -update noar tt set b2='75SPATWCF81WH' where id=4; -update noar ti set b2='75SPATWCF81WH' where id=4; -update noar tt set v0='LO3ZCGWS2SG31I0OJDTQ1V0J7' where id=5; -update noar ti set v0='LO3ZCGWS2SG31I0OJDTQ1V0J7' where id=5; -update noar tt set b0='STKLF0T58SM0TNDE8LQ1SCESW3' where id=5; -update noar ti set b0='STKLF0T58SM0TNDE8LQ1SCESW3' where id=5; -update noar tt set v0='OWTAU1BMK3' where id=5; -update noar ti set v0='OWTAU1BMK3' where id=5; -update noar tt set b1='6ZBEU3POBSYDBCXXI' where id=5; -update noar ti set b1='6ZBEU3POBSYDBCXXI' where id=5; -update noar tt set v0='RZ8LS9TCURZQREHXPJC' where id=5; -update noar ti set v0='RZ8LS9TCURZQREHXPJC' where id=5; -update noar tt set b2='JRB2IC86L908' where id=5; -update noar ti set b2='JRB2IC86L908' where id=5; -update noar tt set v0='TX4Z95BP4ZFBM2P5KWOXWV3328QF' where id=6; -update noar ti set v0='TX4Z95BP4ZFBM2P5KWOXWV3328QF' where id=6; -update noar tt set b0='J7D0KN5E8QTPSXC6TG69YTQBKP0EAHN' where id=6; -update noar ti set b0='J7D0KN5E8QTPSXC6TG69YTQBKP0EAHN' where id=6; -update noar tt set v0='VT425GBDCBJHX0DF' where id=6; -update noar ti set v0='VT425GBDCBJHX0DF' where id=6; -update noar tt set b1='B1JP4IR0TVN5KUGN' where id=6; -update noar ti set b1='B1JP4IR0TVN5KUGN' where id=6; -update noar tt set v0='MRM55C4H2Q7ZH8UBLSONG' where id=6; -update noar ti set v0='MRM55C4H2Q7ZH8UBLSONG' where id=6; -update noar tt set b2='QL36ARLN7RQKK8L' where id=6; -update noar ti set b2='QL36ARLN7RQKK8L' where id=6; -update noar tt set v0='Q99C0OIYH65GU' where id=7; -update noar ti set v0='Q99C0OIYH65GU' where id=7; -update noar tt set b0='XDVX0DGI0CTY89ZM' where id=7; -update noar ti set b0='XDVX0DGI0CTY89ZM' where id=7; -update noar tt set v0='ACHAXOTSM8O8NI99' where id=7; -update noar ti set v0='ACHAXOTSM8O8NI99' where id=7; -update noar tt set b1='3JJMYB9CV3' where id=7; -update noar ti set b1='3JJMYB9CV3' where id=7; -update noar tt set v0='MGI4MN0JK78U6C672AM1UL4KV3G2D' where id=7; -update noar ti set v0='MGI4MN0JK78U6C672AM1UL4KV3G2D' where id=7; -update noar tt set b2='WA1UB0KFK' where id=7; -update noar ti set b2='WA1UB0KFK' where id=7; -update noar tt set v0='QJYN' where id=8; -update noar ti set v0='QJYN' where id=8; -update noar tt set b0='DIG7UHHJCFM2UO7OI4I386' where id=8; -update noar ti set b0='DIG7UHHJCFM2UO7OI4I386' where id=8; -update noar tt set v0='T03WQPBFRY625D8QVKQ0NJ0J' where id=8; -update noar ti set v0='T03WQPBFRY625D8QVKQ0NJ0J' where id=8; -update noar tt set b1='61D' where id=8; -update noar ti set b1='61D' where id=8; -update noar tt set v0='HE2FTABS59W' where id=8; -update noar ti set v0='HE2FTABS59W' where id=8; -update noar tt set b2='I95UH4GBSJIYOECBPWORJS8UENPO6LIE' where id=8; -update noar ti set b2='I95UH4GBSJIYOECBPWORJS8UENPO6LIE' where id=8; -update noar tt set v0='M42AB4VQ2ALSM9ACEITW5S' where id=9; -update noar ti set v0='M42AB4VQ2ALSM9ACEITW5S' where id=9; -update noar tt set b0='XNE8LXH4KCO' where id=9; -update noar ti set b0='XNE8LXH4KCO' where id=9; -update noar tt set v0='DW60C619CFATRZHWWYQ' where id=9; -update noar ti set v0='DW60C619CFATRZHWWYQ' where id=9; -update noar tt set b1='HPZYGB9ROV6YKMRFYMRL' where id=9; -update noar ti set b1='HPZYGB9ROV6YKMRFYMRL' where id=9; -update noar tt set v0='VCSXIF5FXB8JJ4K3A8' where id=9; -update noar ti set v0='VCSXIF5FXB8JJ4K3A8' where id=9; -update noar tt set b2='MWNN5' where id=9; -update noar ti set b2='MWNN5' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - f0 int not null, - v0 varchar(256) not null, - b0 mediumblob not null, - b1 mediumblob not null, - b2 mediumblob not null -) engine=tokudb; -insert into tt values (1,0,'','','',''); -insert into tt values (2,0,'','','',''); -insert into tt values (3,0,'','','',''); -insert into tt values (4,0,'','','',''); -insert into tt values (5,0,'','','',''); -insert into tt values (6,0,'','','',''); -insert into tt values (7,0,'','','',''); -insert into tt values (8,0,'','','',''); -insert into tt values (9,0,'','','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='H3TPN3DRU0XGIKN2FMSS5AWDSLXM' where id=1; -update noar ti set v0='H3TPN3DRU0XGIKN2FMSS5AWDSLXM' where id=1; -update noar tt set b0='XRX4H3LKY7PBHS8JDR4JM5D04I' where id=1; -update noar ti set b0='XRX4H3LKY7PBHS8JDR4JM5D04I' where id=1; -update noar tt set v0='E14IDYSDQPNLKU41DRZNPRMO2' where id=1; -update noar ti set v0='E14IDYSDQPNLKU41DRZNPRMO2' where id=1; -update noar tt set b1='HI2PJJPAS8' where id=1; -update noar ti set b1='HI2PJJPAS8' where id=1; -update noar tt set v0='HLQ9IBJE4ELQURD9B8L77PEAYY0670Q' where id=1; -update noar ti set v0='HLQ9IBJE4ELQURD9B8L77PEAYY0670Q' where id=1; -update noar tt set b2='PJ' where id=1; -update noar ti set b2='PJ' where id=1; -update noar tt set v0='FTDU0OC1GUNA7SDZHXJ7SPDEC7ZO20' where id=2; -update noar ti set v0='FTDU0OC1GUNA7SDZHXJ7SPDEC7ZO20' where id=2; -update noar tt set b0='ZRGVTEBI4KPJY8E06V' where id=2; -update noar ti set b0='ZRGVTEBI4KPJY8E06V' where id=2; -update noar tt set v0='VGU9UVGXAUOAOXCXZW' where id=2; -update noar ti set v0='VGU9UVGXAUOAOXCXZW' where id=2; -update noar tt set b1='65C9K7YS0ZCLWD' where id=2; -update noar ti set b1='65C9K7YS0ZCLWD' where id=2; -update noar tt set v0='LFWR2B61HLW3Q' where id=2; -update noar ti set v0='LFWR2B61HLW3Q' where id=2; -update noar tt set b2='JEA7LIHL8UDSL3' where id=2; -update noar ti set b2='JEA7LIHL8UDSL3' where id=2; -update noar tt set v0='JXELV8Z' where id=3; -update noar ti set v0='JXELV8Z' where id=3; -update noar tt set b0='98RUG' where id=3; -update noar ti set b0='98RUG' where id=3; -update noar tt set v0='ZZQVTZXL4IRGK' where id=3; -update noar ti set v0='ZZQVTZXL4IRGK' where id=3; -update noar tt set b1='LK0R7FFED8' where id=3; -update noar ti set b1='LK0R7FFED8' where id=3; -update noar tt set v0='HRA69F' where id=3; -update noar ti set v0='HRA69F' where id=3; -update noar tt set b2='ETNHVB7G17WDHSWG5SEOEGP8X5' where id=3; -update noar ti set b2='ETNHVB7G17WDHSWG5SEOEGP8X5' where id=3; -update noar tt set v0='SIY0Z6T64C411KAP626OXUDYOJD9IO' where id=4; -update noar ti set v0='SIY0Z6T64C411KAP626OXUDYOJD9IO' where id=4; -update noar tt set b0='YL6LRM' where id=4; -update noar ti set b0='YL6LRM' where id=4; -update noar tt set v0='BFPCF281ON415AEGCNGUWMNEE' where id=4; -update noar ti set v0='BFPCF281ON415AEGCNGUWMNEE' where id=4; -update noar tt set b1='5W7LZTC25UT1C1RGE' where id=4; -update noar ti set b1='5W7LZTC25UT1C1RGE' where id=4; -update noar tt set v0='1P6IZFJ8SB8YWFSKDHLJ1XLIPU1L' where id=4; -update noar ti set v0='1P6IZFJ8SB8YWFSKDHLJ1XLIPU1L' where id=4; -update noar tt set b2='ZT6' where id=4; -update noar ti set b2='ZT6' where id=4; -update noar tt set v0='61SFKGPZ7RI' where id=5; -update noar ti set v0='61SFKGPZ7RI' where id=5; -update noar tt set b0='C13THBYNTEWVXXX' where id=5; -update noar ti set b0='C13THBYNTEWVXXX' where id=5; -update noar tt set v0='NI9OREOUY0XPPP8S86G49Q' where id=5; -update noar ti set v0='NI9OREOUY0XPPP8S86G49Q' where id=5; -update noar tt set b1='Z7XN29W7Y' where id=5; -update noar ti set b1='Z7XN29W7Y' where id=5; -update noar tt set v0='8P3B048Y6X6EGUC6A6C1EN2R9SIARW' where id=5; -update noar ti set v0='8P3B048Y6X6EGUC6A6C1EN2R9SIARW' where id=5; -update noar tt set b2='62KSURH9XUQCN8E5FKTPVY3TUIC56VUW' where id=5; -update noar ti set b2='62KSURH9XUQCN8E5FKTPVY3TUIC56VUW' where id=5; -update noar tt set v0='5HVQIRGO' where id=6; -update noar ti set v0='5HVQIRGO' where id=6; -update noar tt set b0='AN2GWY2ANAVLC0MPS' where id=6; -update noar ti set b0='AN2GWY2ANAVLC0MPS' where id=6; -update noar tt set v0='FX1SAZS7FNLC5SLEU' where id=6; -update noar ti set v0='FX1SAZS7FNLC5SLEU' where id=6; -update noar tt set b1='ZUCS3JKAZ54F8TIBWRD2JFG43VGJ9' where id=6; -update noar ti set b1='ZUCS3JKAZ54F8TIBWRD2JFG43VGJ9' where id=6; -update noar tt set v0='GBNOLS59XYLDBFY8ZIT2ASYMD5MVEJOQ' where id=6; -update noar ti set v0='GBNOLS59XYLDBFY8ZIT2ASYMD5MVEJOQ' where id=6; -update noar tt set b2='K72OXPLKADZMIC5B1APJ8AA4SX' where id=6; -update noar ti set b2='K72OXPLKADZMIC5B1APJ8AA4SX' where id=6; -update noar tt set v0='KQBMDXVJJ0BM3S' where id=7; -update noar ti set v0='KQBMDXVJJ0BM3S' where id=7; -update noar tt set b0='CJLHH932LR1NWIT' where id=7; -update noar ti set b0='CJLHH932LR1NWIT' where id=7; -update noar tt set v0='R0VKSU' where id=7; -update noar ti set v0='R0VKSU' where id=7; -update noar tt set b1='E7WLWME8XHMA' where id=7; -update noar ti set b1='E7WLWME8XHMA' where id=7; -update noar tt set v0='SXK7F33NM5KD09' where id=7; -update noar ti set v0='SXK7F33NM5KD09' where id=7; -update noar tt set b2='K7UQ70V1P7NC7JO05F84' where id=7; -update noar ti set b2='K7UQ70V1P7NC7JO05F84' where id=7; -update noar tt set v0='B51VK1I' where id=8; -update noar ti set v0='B51VK1I' where id=8; -update noar tt set b0='PNO2' where id=8; -update noar ti set b0='PNO2' where id=8; -update noar tt set v0='XGGLAK4D7J89F' where id=8; -update noar ti set v0='XGGLAK4D7J89F' where id=8; -update noar tt set b1='ZTJ4' where id=8; -update noar ti set b1='ZTJ4' where id=8; -update noar tt set v0='8N7YU77T1DQVG6' where id=8; -update noar ti set v0='8N7YU77T1DQVG6' where id=8; -update noar tt set b2='JKJNOK108967KI694YJ3GMXN' where id=8; -update noar ti set b2='JKJNOK108967KI694YJ3GMXN' where id=8; -update noar tt set v0='5VSYNDN' where id=9; -update noar ti set v0='5VSYNDN' where id=9; -update noar tt set b0='97I9SQW6UACXU' where id=9; -update noar ti set b0='97I9SQW6UACXU' where id=9; -update noar tt set v0='6O7SAIM4O7WBH0CRK3VJ3RDIG' where id=9; -update noar ti set v0='6O7SAIM4O7WBH0CRK3VJ3RDIG' where id=9; -update noar tt set b1='GW5ZRV' where id=9; -update noar ti set b1='GW5ZRV' where id=9; -update noar tt set v0='49AEMDJRGYULPQ6H7Z98B2' where id=9; -update noar ti set v0='49AEMDJRGYULPQ6H7Z98B2' where id=9; -update noar tt set b2='S6AV9M95RBLBB6B1HTED9AT5CPLYT406' where id=9; -update noar ti set b2='S6AV9M95RBLBB6B1HTED9AT5CPLYT406' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - f0 int null, - v0 varchar(32) null, - b0 mediumblob null, - b1 mediumblob null, - b2 longblob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='G3JVL6F5LUIGOVJOV7XKIPINF8OTVVQ' where id=1; -update noar ti set v0='G3JVL6F5LUIGOVJOV7XKIPINF8OTVVQ' where id=1; -update noar tt set b0='5DHOY458T59FUCJF477T2EEBT8' where id=1; -update noar ti set b0='5DHOY458T59FUCJF477T2EEBT8' where id=1; -update noar tt set v0='F7J8497T' where id=1; -update noar ti set v0='F7J8497T' where id=1; -update noar tt set b1='6DCRKO' where id=1; -update noar ti set b1='6DCRKO' where id=1; -update noar tt set v0='2IT' where id=1; -update noar ti set v0='2IT' where id=1; -update noar tt set b2='ZMFJR3VBCSRKRNVWK20GDSORC4J' where id=1; -update noar ti set b2='ZMFJR3VBCSRKRNVWK20GDSORC4J' where id=1; -update noar tt set v0='K50NZH9' where id=2; -update noar ti set v0='K50NZH9' where id=2; -update noar tt set b0='5FHTDP' where id=2; -update noar ti set b0='5FHTDP' where id=2; -update noar tt set v0='DB73JMV8GO1JINNN1TJ0QIQC' where id=2; -update noar ti set v0='DB73JMV8GO1JINNN1TJ0QIQC' where id=2; -update noar tt set b1='3VDFPGI6KC2V7411W8R5GK1P8U31' where id=2; -update noar ti set b1='3VDFPGI6KC2V7411W8R5GK1P8U31' where id=2; -update noar tt set v0='S8Z8JGZ8BP8' where id=2; -update noar ti set v0='S8Z8JGZ8BP8' where id=2; -update noar tt set b2='3Q8ZNSY74C1' where id=2; -update noar ti set b2='3Q8ZNSY74C1' where id=2; -update noar tt set v0='3YX9721VVEJDUDA' where id=3; -update noar ti set v0='3YX9721VVEJDUDA' where id=3; -update noar tt set b0='JH8AS' where id=3; -update noar ti set b0='JH8AS' where id=3; -update noar tt set v0='29WHSNKACBSE2JKTQ9FCIVNPSFS6AQ5A' where id=3; -update noar ti set v0='29WHSNKACBSE2JKTQ9FCIVNPSFS6AQ5A' where id=3; -update noar tt set b1='SEKWFEUG96PK' where id=3; -update noar ti set b1='SEKWFEUG96PK' where id=3; -update noar tt set v0='GQS651EF8DJ41CDK2TZAITF' where id=3; -update noar ti set v0='GQS651EF8DJ41CDK2TZAITF' where id=3; -update noar tt set b2='CSEAJ4G5WAKF6JHIWKU' where id=3; -update noar ti set b2='CSEAJ4G5WAKF6JHIWKU' where id=3; -update noar tt set v0='T3JKP' where id=4; -update noar ti set v0='T3JKP' where id=4; -update noar tt set b0='NOHMKZ1WS' where id=4; -update noar ti set b0='NOHMKZ1WS' where id=4; -update noar tt set v0='FADTOTBMZ6' where id=4; -update noar ti set v0='FADTOTBMZ6' where id=4; -update noar tt set b1='X618XFZRZ' where id=4; -update noar ti set b1='X618XFZRZ' where id=4; -update noar tt set v0='7WCT37YR' where id=4; -update noar ti set v0='7WCT37YR' where id=4; -update noar tt set b2='DN8CZ3FLXM' where id=4; -update noar ti set b2='DN8CZ3FLXM' where id=4; -update noar tt set v0='MDC60H' where id=5; -update noar ti set v0='MDC60H' where id=5; -update noar tt set b0='HLBZP30B1F8HXDJ8VM1VV5JN2QM' where id=5; -update noar ti set b0='HLBZP30B1F8HXDJ8VM1VV5JN2QM' where id=5; -update noar tt set v0='4LHRO5LIG9GTI6XWHNM' where id=5; -update noar ti set v0='4LHRO5LIG9GTI6XWHNM' where id=5; -update noar tt set b1='A42N14FN6ZUFJPG25N7' where id=5; -update noar ti set b1='A42N14FN6ZUFJPG25N7' where id=5; -update noar tt set v0='FSTR36P4I756P5AOTMPKMBW77976OOY' where id=5; -update noar ti set v0='FSTR36P4I756P5AOTMPKMBW77976OOY' where id=5; -update noar tt set b2='B26H7JBWQ46WY66JOVMXDB2T4H0E' where id=5; -update noar ti set b2='B26H7JBWQ46WY66JOVMXDB2T4H0E' where id=5; -update noar tt set v0='5ER9SBYR474TI' where id=6; -update noar ti set v0='5ER9SBYR474TI' where id=6; -update noar tt set b0='ELHTM5FH345EH12P07IL0HM7XC8GSBM3' where id=6; -update noar ti set b0='ELHTM5FH345EH12P07IL0HM7XC8GSBM3' where id=6; -update noar tt set v0='6I5N96WQPOJUA26UKYGJYN' where id=6; -update noar ti set v0='6I5N96WQPOJUA26UKYGJYN' where id=6; -update noar tt set b1='B669WKZJ5' where id=6; -update noar ti set b1='B669WKZJ5' where id=6; -update noar tt set v0='PLHRL5ENXYTLELOPPWT' where id=6; -update noar ti set v0='PLHRL5ENXYTLELOPPWT' where id=6; -update noar tt set b2='NUPN5ITY9WVM5KHUSC1R' where id=6; -update noar ti set b2='NUPN5ITY9WVM5KHUSC1R' where id=6; -update noar tt set v0='3VEMKM7M58PWF6TYMXMGGSHC2A' where id=7; -update noar ti set v0='3VEMKM7M58PWF6TYMXMGGSHC2A' where id=7; -update noar tt set b0='OCDOMAN43X9TWS87LT5HAJZF' where id=7; -update noar ti set b0='OCDOMAN43X9TWS87LT5HAJZF' where id=7; -update noar tt set v0='L38LX68UP48MBJO0FN2JZHDEUY' where id=7; -update noar ti set v0='L38LX68UP48MBJO0FN2JZHDEUY' where id=7; -update noar tt set b1='XE845LW8Y' where id=7; -update noar ti set b1='XE845LW8Y' where id=7; -update noar tt set v0='YU4BP3ST769M9ZEP' where id=7; -update noar ti set v0='YU4BP3ST769M9ZEP' where id=7; -update noar tt set b2='GWQJ' where id=7; -update noar ti set b2='GWQJ' where id=7; -update noar tt set v0='LEAT3THR6XNFG' where id=8; -update noar ti set v0='LEAT3THR6XNFG' where id=8; -update noar tt set b0='KEHBDLF75SC4X3KLT' where id=8; -update noar ti set b0='KEHBDLF75SC4X3KLT' where id=8; -update noar tt set v0='G' where id=8; -update noar ti set v0='G' where id=8; -update noar tt set b1='3PTN937' where id=8; -update noar ti set b1='3PTN937' where id=8; -update noar tt set v0='EJYW79RK0GN653T7LD02B3RYRVBS00W' where id=8; -update noar ti set v0='EJYW79RK0GN653T7LD02B3RYRVBS00W' where id=8; -update noar tt set b2='EV79D96U3W' where id=8; -update noar ti set b2='EV79D96U3W' where id=8; -update noar tt set v0='31J2F45RFWPSMUELRIH1KG' where id=9; -update noar ti set v0='31J2F45RFWPSMUELRIH1KG' where id=9; -update noar tt set b0='K56NDM1AELA0TBO1Y' where id=9; -update noar ti set b0='K56NDM1AELA0TBO1Y' where id=9; -update noar tt set v0='P812SBQB6NX6N5H7238C2C' where id=9; -update noar ti set v0='P812SBQB6NX6N5H7238C2C' where id=9; -update noar tt set b1='ZNK04XXCLH7TT414M9TBSUZ7FFQEVXWO' where id=9; -update noar ti set b1='ZNK04XXCLH7TT414M9TBSUZ7FFQEVXWO' where id=9; -update noar tt set v0='M7JE77EBR4ZCJS86WFQM5DZ6XV67' where id=9; -update noar ti set v0='M7JE77EBR4ZCJS86WFQM5DZ6XV67' where id=9; -update noar tt set b2='SE5XDPPMCIFPJRA21NUUUCU45M1B' where id=9; -update noar ti set b2='SE5XDPPMCIFPJRA21NUUUCU45M1B' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - f0 int null, - v0 varchar(256) null, - b0 mediumblob null, - b1 mediumblob null, - b2 longblob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='CK8A595P72N6P0OL4S' where id=1; -update noar ti set v0='CK8A595P72N6P0OL4S' where id=1; -update noar tt set b0='J7O19GQZK52JRH9211' where id=1; -update noar ti set b0='J7O19GQZK52JRH9211' where id=1; -update noar tt set v0='QYPTT3WQBKIL8QF' where id=1; -update noar ti set v0='QYPTT3WQBKIL8QF' where id=1; -update noar tt set b1='HQ9CUW8ZQ96SZCC0E77W' where id=1; -update noar ti set b1='HQ9CUW8ZQ96SZCC0E77W' where id=1; -update noar tt set v0='OO8PDNF7H3GVKL5U0YQO8ETO7N32HP' where id=1; -update noar ti set v0='OO8PDNF7H3GVKL5U0YQO8ETO7N32HP' where id=1; -update noar tt set b2='8I6PRR2IY415NNT5M544QAP60CM7' where id=1; -update noar ti set b2='8I6PRR2IY415NNT5M544QAP60CM7' where id=1; -update noar tt set v0='5YVCJ5AZVA17EFOD0P0P7CZ939P4T' where id=2; -update noar ti set v0='5YVCJ5AZVA17EFOD0P0P7CZ939P4T' where id=2; -update noar tt set b0='H2VH' where id=2; -update noar ti set b0='H2VH' where id=2; -update noar tt set v0='QF017CHXF2CGB6VEDIU7K7NABF2GXX' where id=2; -update noar ti set v0='QF017CHXF2CGB6VEDIU7K7NABF2GXX' where id=2; -update noar tt set b1='L7Z8' where id=2; -update noar ti set b1='L7Z8' where id=2; -update noar tt set v0='Y02JEIX25Q43038ASD0AG4JCKMK62OBV' where id=2; -update noar ti set v0='Y02JEIX25Q43038ASD0AG4JCKMK62OBV' where id=2; -update noar tt set b2='EHON58K2C' where id=2; -update noar ti set b2='EHON58K2C' where id=2; -update noar tt set v0='3XHE45N1F3RXNCNEH2MP' where id=3; -update noar ti set v0='3XHE45N1F3RXNCNEH2MP' where id=3; -update noar tt set b0='4VW8YCBJH0AFCXD' where id=3; -update noar ti set b0='4VW8YCBJH0AFCXD' where id=3; -update noar tt set v0='0FGVW3' where id=3; -update noar ti set v0='0FGVW3' where id=3; -update noar tt set b1='L60ZXJ' where id=3; -update noar ti set b1='L60ZXJ' where id=3; -update noar tt set v0='ZR863418A2MYJRI5SWKECGR85X' where id=3; -update noar ti set v0='ZR863418A2MYJRI5SWKECGR85X' where id=3; -update noar tt set b2='QRXY106JJJXT7BC7' where id=3; -update noar ti set b2='QRXY106JJJXT7BC7' where id=3; -update noar tt set v0='KXTKUTFBHZ6JYXXOVJETN5' where id=4; -update noar ti set v0='KXTKUTFBHZ6JYXXOVJETN5' where id=4; -update noar tt set b0='C' where id=4; -update noar ti set b0='C' where id=4; -update noar tt set v0='PY' where id=4; -update noar ti set v0='PY' where id=4; -update noar tt set b1='43N2' where id=4; -update noar ti set b1='43N2' where id=4; -update noar tt set v0='QKL4P3Q8E00IC9BNL' where id=4; -update noar ti set v0='QKL4P3Q8E00IC9BNL' where id=4; -update noar tt set b2='ZKR2B48NE4' where id=4; -update noar ti set b2='ZKR2B48NE4' where id=4; -update noar tt set v0='7UTT0GWR' where id=5; -update noar ti set v0='7UTT0GWR' where id=5; -update noar tt set b0='GBPSWEUC07S8CEQK6F9F4C901NU' where id=5; -update noar ti set b0='GBPSWEUC07S8CEQK6F9F4C901NU' where id=5; -update noar tt set v0='89UD0Z2ZC9T1TZTGGWHENLYN1D85J' where id=5; -update noar ti set v0='89UD0Z2ZC9T1TZTGGWHENLYN1D85J' where id=5; -update noar tt set b1='5XU3NUX0CTN4DG09ZNH' where id=5; -update noar ti set b1='5XU3NUX0CTN4DG09ZNH' where id=5; -update noar tt set v0='LALQ' where id=5; -update noar ti set v0='LALQ' where id=5; -update noar tt set b2='SH' where id=5; -update noar ti set b2='SH' where id=5; -update noar tt set v0='R6JLQZGKWR81SZ' where id=6; -update noar ti set v0='R6JLQZGKWR81SZ' where id=6; -update noar tt set b0='237UZM1ZBF6FRKWIUBB8NJME' where id=6; -update noar ti set b0='237UZM1ZBF6FRKWIUBB8NJME' where id=6; -update noar tt set v0='26U' where id=6; -update noar ti set v0='26U' where id=6; -update noar tt set b1='I1AR4ITBCZM7156AZT3CWE60XJME' where id=6; -update noar ti set b1='I1AR4ITBCZM7156AZT3CWE60XJME' where id=6; -update noar tt set v0='SAO0AZ6GBN5QSQIFF1A7' where id=6; -update noar ti set v0='SAO0AZ6GBN5QSQIFF1A7' where id=6; -update noar tt set b2='X60FUXSPG9YLJN3DLI9C0E0' where id=6; -update noar ti set b2='X60FUXSPG9YLJN3DLI9C0E0' where id=6; -update noar tt set v0='9A36ANO' where id=7; -update noar ti set v0='9A36ANO' where id=7; -update noar tt set b0='1GMKUTQSGOOHV3R2YXKD9ITUNH5' where id=7; -update noar ti set b0='1GMKUTQSGOOHV3R2YXKD9ITUNH5' where id=7; -update noar tt set v0='FYLAAPTKRR6ZYTPBUCMQI' where id=7; -update noar ti set v0='FYLAAPTKRR6ZYTPBUCMQI' where id=7; -update noar tt set b1='Q1XEWKNBFERKC9' where id=7; -update noar ti set b1='Q1XEWKNBFERKC9' where id=7; -update noar tt set v0='NMOYYKNGCKC52TXEY2EO2WHLBPX9L9' where id=7; -update noar ti set v0='NMOYYKNGCKC52TXEY2EO2WHLBPX9L9' where id=7; -update noar tt set b2='9Z9CFXP2RLDIZX18MHIYODG0N0T7' where id=7; -update noar ti set b2='9Z9CFXP2RLDIZX18MHIYODG0N0T7' where id=7; -update noar tt set v0='VFXDZSP5SV' where id=8; -update noar ti set v0='VFXDZSP5SV' where id=8; -update noar tt set b0='DCFZLAGM7VK0G' where id=8; -update noar ti set b0='DCFZLAGM7VK0G' where id=8; -update noar tt set v0='NZPFG9XUIP7E47FJ0BZO0HCO8KDVZI3' where id=8; -update noar ti set v0='NZPFG9XUIP7E47FJ0BZO0HCO8KDVZI3' where id=8; -update noar tt set b1='HYIUARFCUAQK0LECUQXMI5GZ6ECUO7J' where id=8; -update noar ti set b1='HYIUARFCUAQK0LECUQXMI5GZ6ECUO7J' where id=8; -update noar tt set v0='CM' where id=8; -update noar ti set v0='CM' where id=8; -update noar tt set b2='O8RWVET0PPHFRWEQ3' where id=8; -update noar ti set b2='O8RWVET0PPHFRWEQ3' where id=8; -update noar tt set v0='UV4H4JDL39' where id=9; -update noar ti set v0='UV4H4JDL39' where id=9; -update noar tt set b0='ORYI7OW' where id=9; -update noar ti set b0='ORYI7OW' where id=9; -update noar tt set v0='Z2JRH4QP5Z4LYVM1U0C1' where id=9; -update noar ti set v0='Z2JRH4QP5Z4LYVM1U0C1' where id=9; -update noar tt set b1='51SMCI56FBSZTR1X2EIFCVWZHREK' where id=9; -update noar ti set b1='51SMCI56FBSZTR1X2EIFCVWZHREK' where id=9; -update noar tt set v0='UG2AUGUD6P92US' where id=9; -update noar ti set v0='UG2AUGUD6P92US' where id=9; -update noar tt set b2='KXW83HP0OM4TVPRR3OJKPX2VWZXBL' where id=9; -update noar ti set b2='KXW83HP0OM4TVPRR3OJKPX2VWZXBL' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - f0 int not null, - v0 varchar(32) not null, - b0 mediumblob not null, - b1 mediumblob not null, - b2 longblob not null -) engine=tokudb; -insert into tt values (1,0,'','','',''); -insert into tt values (2,0,'','','',''); -insert into tt values (3,0,'','','',''); -insert into tt values (4,0,'','','',''); -insert into tt values (5,0,'','','',''); -insert into tt values (6,0,'','','',''); -insert into tt values (7,0,'','','',''); -insert into tt values (8,0,'','','',''); -insert into tt values (9,0,'','','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='JKNAQNP4WZ9VV6OASGH5' where id=1; -update noar ti set v0='JKNAQNP4WZ9VV6OASGH5' where id=1; -update noar tt set b0='0Q811XJSVP' where id=1; -update noar ti set b0='0Q811XJSVP' where id=1; -update noar tt set v0='0TJ92Z9GHE5VEFS2IZOIMMR' where id=1; -update noar ti set v0='0TJ92Z9GHE5VEFS2IZOIMMR' where id=1; -update noar tt set b1='DX0EWRZ4W4YCMYXVZ5O7OZE46WAN9YUP' where id=1; -update noar ti set b1='DX0EWRZ4W4YCMYXVZ5O7OZE46WAN9YUP' where id=1; -update noar tt set v0='G7ASUHP0EJGKN5QLO78QR12B' where id=1; -update noar ti set v0='G7ASUHP0EJGKN5QLO78QR12B' where id=1; -update noar tt set b2='UNTAPML9' where id=1; -update noar ti set b2='UNTAPML9' where id=1; -update noar tt set v0='H1G1UZPE15HKKROLKXWIFYE' where id=2; -update noar ti set v0='H1G1UZPE15HKKROLKXWIFYE' where id=2; -update noar tt set b0='L9X48NG' where id=2; -update noar ti set b0='L9X48NG' where id=2; -update noar tt set v0='5UCSZZCCYQ' where id=2; -update noar ti set v0='5UCSZZCCYQ' where id=2; -update noar tt set b1='MB6A2GQSXVR59TCXRCX4' where id=2; -update noar ti set b1='MB6A2GQSXVR59TCXRCX4' where id=2; -update noar tt set v0='M5SAO36OAJM9IIQ37D' where id=2; -update noar ti set v0='M5SAO36OAJM9IIQ37D' where id=2; -update noar tt set b2='Q1HKK3' where id=2; -update noar ti set b2='Q1HKK3' where id=2; -update noar tt set v0='J6MA' where id=3; -update noar ti set v0='J6MA' where id=3; -update noar tt set b0='UZI0FZJX2A0OUUI0V' where id=3; -update noar ti set b0='UZI0FZJX2A0OUUI0V' where id=3; -update noar tt set v0='IAR8ESMFN3Y6UPCCCPHAKFFRYB' where id=3; -update noar ti set v0='IAR8ESMFN3Y6UPCCCPHAKFFRYB' where id=3; -update noar tt set b1='8FFELU8R14UWY8WJEA8EC27W3O15BS9C' where id=3; -update noar ti set b1='8FFELU8R14UWY8WJEA8EC27W3O15BS9C' where id=3; -update noar tt set v0='7ODYWRSK1BZDX1AL66Q3BONXGK5W' where id=3; -update noar ti set v0='7ODYWRSK1BZDX1AL66Q3BONXGK5W' where id=3; -update noar tt set b2='L9A4N5AWUYQV92BS70TV9LRUW71' where id=3; -update noar ti set b2='L9A4N5AWUYQV92BS70TV9LRUW71' where id=3; -update noar tt set v0='OLIBLMY4IN28GHAA2QN' where id=4; -update noar ti set v0='OLIBLMY4IN28GHAA2QN' where id=4; -update noar tt set b0='ROUA8LL7' where id=4; -update noar ti set b0='ROUA8LL7' where id=4; -update noar tt set v0='T033JU8NH1PVSVG9HOJV' where id=4; -update noar ti set v0='T033JU8NH1PVSVG9HOJV' where id=4; -update noar tt set b1='2C6T' where id=4; -update noar ti set b1='2C6T' where id=4; -update noar tt set v0='XXV7025GRIS8' where id=4; -update noar ti set v0='XXV7025GRIS8' where id=4; -update noar tt set b2='40VP9TDL' where id=4; -update noar ti set b2='40VP9TDL' where id=4; -update noar tt set v0='S' where id=5; -update noar ti set v0='S' where id=5; -update noar tt set b0='AA9PFDK3DJWQZP' where id=5; -update noar ti set b0='AA9PFDK3DJWQZP' where id=5; -update noar tt set v0='YK7CCBUDXR' where id=5; -update noar ti set v0='YK7CCBUDXR' where id=5; -update noar tt set b1='FAHYBOK7WST5OH1WGJG053LW9C9' where id=5; -update noar ti set b1='FAHYBOK7WST5OH1WGJG053LW9C9' where id=5; -update noar tt set v0='8SG1MPK9JNAZ90O3KTL' where id=5; -update noar ti set v0='8SG1MPK9JNAZ90O3KTL' where id=5; -update noar tt set b2='JTJ4S5' where id=5; -update noar ti set b2='JTJ4S5' where id=5; -update noar tt set v0='9YXCB' where id=6; -update noar ti set v0='9YXCB' where id=6; -update noar tt set b0='67MBNZG2H83' where id=6; -update noar ti set b0='67MBNZG2H83' where id=6; -update noar tt set v0='5MUB5WMI8O' where id=6; -update noar ti set v0='5MUB5WMI8O' where id=6; -update noar tt set b1='K8501YN77P2PQ' where id=6; -update noar ti set b1='K8501YN77P2PQ' where id=6; -update noar tt set v0='K6IUW4DXQEBY9BSKVO8R4D' where id=6; -update noar ti set v0='K6IUW4DXQEBY9BSKVO8R4D' where id=6; -update noar tt set b2='DBBHQMOIZ4DIWKSE0JRUACSQZOPPUW28' where id=6; -update noar ti set b2='DBBHQMOIZ4DIWKSE0JRUACSQZOPPUW28' where id=6; -update noar tt set v0='C7KLRM1NQYDVU9IJYR' where id=7; -update noar ti set v0='C7KLRM1NQYDVU9IJYR' where id=7; -update noar tt set b0='17B18IBW88F0FCN065LYHAZDS6DFHJ' where id=7; -update noar ti set b0='17B18IBW88F0FCN065LYHAZDS6DFHJ' where id=7; -update noar tt set v0='QPAGZE3ZJTG0D7ANB4FBDGMX' where id=7; -update noar ti set v0='QPAGZE3ZJTG0D7ANB4FBDGMX' where id=7; -update noar tt set b1='XSGF4C3YXBD927GJNUN' where id=7; -update noar ti set b1='XSGF4C3YXBD927GJNUN' where id=7; -update noar tt set v0='Q1JIN8ZT' where id=7; -update noar ti set v0='Q1JIN8ZT' where id=7; -update noar tt set b2='0V72PNGG73CY' where id=7; -update noar ti set b2='0V72PNGG73CY' where id=7; -update noar tt set v0='RHLAQ8SV' where id=8; -update noar ti set v0='RHLAQ8SV' where id=8; -update noar tt set b0='K5C5I2W8AMI9NF9NMWRO' where id=8; -update noar ti set b0='K5C5I2W8AMI9NF9NMWRO' where id=8; -update noar tt set v0='YID3V' where id=8; -update noar ti set v0='YID3V' where id=8; -update noar tt set b1='KWMZJ' where id=8; -update noar ti set b1='KWMZJ' where id=8; -update noar tt set v0='GP4X' where id=8; -update noar ti set v0='GP4X' where id=8; -update noar tt set b2='8PI6RRBDDVIZ342W35RVJBY2' where id=8; -update noar ti set b2='8PI6RRBDDVIZ342W35RVJBY2' where id=8; -update noar tt set v0='06I9GWIQM3NFUJEJ0A9VE0KIYMKA4' where id=9; -update noar ti set v0='06I9GWIQM3NFUJEJ0A9VE0KIYMKA4' where id=9; -update noar tt set b0='F2AUP44P7EOZ10177HOB9T4N' where id=9; -update noar ti set b0='F2AUP44P7EOZ10177HOB9T4N' where id=9; -update noar tt set v0='AXQPXAHFK' where id=9; -update noar ti set v0='AXQPXAHFK' where id=9; -update noar tt set b1='IJP5EZO9JW1KMEJ8PQF' where id=9; -update noar ti set b1='IJP5EZO9JW1KMEJ8PQF' where id=9; -update noar tt set v0='OXPWSD3WP4GXVJ' where id=9; -update noar ti set v0='OXPWSD3WP4GXVJ' where id=9; -update noar tt set b2='E2QYLAU9USSLI4YIGCW3QFYMGVG' where id=9; -update noar ti set b2='E2QYLAU9USSLI4YIGCW3QFYMGVG' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - f0 int not null, - v0 varchar(256) not null, - b0 mediumblob not null, - b1 mediumblob not null, - b2 longblob not null -) engine=tokudb; -insert into tt values (1,0,'','','',''); -insert into tt values (2,0,'','','',''); -insert into tt values (3,0,'','','',''); -insert into tt values (4,0,'','','',''); -insert into tt values (5,0,'','','',''); -insert into tt values (6,0,'','','',''); -insert into tt values (7,0,'','','',''); -insert into tt values (8,0,'','','',''); -insert into tt values (9,0,'','','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='WLBAV4077MELIJ5HWJH70J03' where id=1; -update noar ti set v0='WLBAV4077MELIJ5HWJH70J03' where id=1; -update noar tt set b0='KQS' where id=1; -update noar ti set b0='KQS' where id=1; -update noar tt set v0='YU03X2GVVITELQYT9J1IKYOL6W3VZ' where id=1; -update noar ti set v0='YU03X2GVVITELQYT9J1IKYOL6W3VZ' where id=1; -update noar tt set b1='59B1WBBTEGKNT263OZ4IL9R32A6YDZZ3' where id=1; -update noar ti set b1='59B1WBBTEGKNT263OZ4IL9R32A6YDZZ3' where id=1; -update noar tt set v0='TKG645' where id=1; -update noar ti set v0='TKG645' where id=1; -update noar tt set b2='KOBHB4D2GT28QYBD70T4SGVU' where id=1; -update noar ti set b2='KOBHB4D2GT28QYBD70T4SGVU' where id=1; -update noar tt set v0='A1P9KN' where id=2; -update noar ti set v0='A1P9KN' where id=2; -update noar tt set b0='A7FNK' where id=2; -update noar ti set b0='A7FNK' where id=2; -update noar tt set v0='HQ5FNSCF2772N544PY57GIOL2Q3RWVBY' where id=2; -update noar ti set v0='HQ5FNSCF2772N544PY57GIOL2Q3RWVBY' where id=2; -update noar tt set b1='3C9XJOW6BMZYSEJ0FOGYE2YCZ' where id=2; -update noar ti set b1='3C9XJOW6BMZYSEJ0FOGYE2YCZ' where id=2; -update noar tt set v0='UYWFBTP60GXKJL9OS52PHFM6SS' where id=2; -update noar ti set v0='UYWFBTP60GXKJL9OS52PHFM6SS' where id=2; -update noar tt set b2='PPEAK' where id=2; -update noar ti set b2='PPEAK' where id=2; -update noar tt set v0='INIDZFWSJSG95SVE' where id=3; -update noar ti set v0='INIDZFWSJSG95SVE' where id=3; -update noar tt set b0='EI893KPUOL6VWUA' where id=3; -update noar ti set b0='EI893KPUOL6VWUA' where id=3; -update noar tt set v0='K4P51E7' where id=3; -update noar ti set v0='K4P51E7' where id=3; -update noar tt set b1='0ZYXW7RES' where id=3; -update noar ti set b1='0ZYXW7RES' where id=3; -update noar tt set v0='VUPVR1JZYCR1LOMCKHAHZBRZMGS6L6O8' where id=3; -update noar ti set v0='VUPVR1JZYCR1LOMCKHAHZBRZMGS6L6O8' where id=3; -update noar tt set b2='Q6MR070B4AJD12' where id=3; -update noar ti set b2='Q6MR070B4AJD12' where id=3; -update noar tt set v0='WVDN5W' where id=4; -update noar ti set v0='WVDN5W' where id=4; -update noar tt set b0='8N4JGT2EVQVOGELBN1PNF5NGF55HNNZR' where id=4; -update noar ti set b0='8N4JGT2EVQVOGELBN1PNF5NGF55HNNZR' where id=4; -update noar tt set v0='OF3Q0Q64WV7JSJBJVEJ2104SD1HK' where id=4; -update noar ti set v0='OF3Q0Q64WV7JSJBJVEJ2104SD1HK' where id=4; -update noar tt set b1='K363TWC4' where id=4; -update noar ti set b1='K363TWC4' where id=4; -update noar tt set v0='PAA5JMZPSTM9XS3LI5KRXK2TCP3K6P2S' where id=4; -update noar ti set v0='PAA5JMZPSTM9XS3LI5KRXK2TCP3K6P2S' where id=4; -update noar tt set b2='6JBS4YIV992S69JTTS' where id=4; -update noar ti set b2='6JBS4YIV992S69JTTS' where id=4; -update noar tt set v0='PZJOGPY71EHNFVTQCX619HCAPX' where id=5; -update noar ti set v0='PZJOGPY71EHNFVTQCX619HCAPX' where id=5; -update noar tt set b0='G8C81ZI5DFATD51J77SRMK3C5OXYSH' where id=5; -update noar ti set b0='G8C81ZI5DFATD51J77SRMK3C5OXYSH' where id=5; -update noar tt set v0='TSFSPH15HO918AVUVGDYUOKIXF' where id=5; -update noar ti set v0='TSFSPH15HO918AVUVGDYUOKIXF' where id=5; -update noar tt set b1='3XFPNYCBTAJ' where id=5; -update noar ti set b1='3XFPNYCBTAJ' where id=5; -update noar tt set v0='AN7Q9HAQDQDGBES0HZY2T1SJ23CN1I' where id=5; -update noar ti set v0='AN7Q9HAQDQDGBES0HZY2T1SJ23CN1I' where id=5; -update noar tt set b2='CLFMGOM' where id=5; -update noar ti set b2='CLFMGOM' where id=5; -update noar tt set v0='OXH3FWIQMICPGNA' where id=6; -update noar ti set v0='OXH3FWIQMICPGNA' where id=6; -update noar tt set b0='X' where id=6; -update noar ti set b0='X' where id=6; -update noar tt set v0='X41JEBA' where id=6; -update noar ti set v0='X41JEBA' where id=6; -update noar tt set b1='3P7YN4Z' where id=6; -update noar ti set b1='3P7YN4Z' where id=6; -update noar tt set v0='JJMRWJ9RQTEU8J' where id=6; -update noar ti set v0='JJMRWJ9RQTEU8J' where id=6; -update noar tt set b2='JQFZI9YK1B2ZUNPV3IJ' where id=6; -update noar ti set b2='JQFZI9YK1B2ZUNPV3IJ' where id=6; -update noar tt set v0='N8DKRT7VE7' where id=7; -update noar ti set v0='N8DKRT7VE7' where id=7; -update noar tt set b0='WU8QRNQXXXXI0GQZEP47Z47E83FQS' where id=7; -update noar ti set b0='WU8QRNQXXXXI0GQZEP47Z47E83FQS' where id=7; -update noar tt set v0='JGCT4XA8OX9IOZ3AN42J' where id=7; -update noar ti set v0='JGCT4XA8OX9IOZ3AN42J' where id=7; -update noar tt set b1='LBGEXL1XCNWU3APRT6V1B9MFYJ9768VE' where id=7; -update noar ti set b1='LBGEXL1XCNWU3APRT6V1B9MFYJ9768VE' where id=7; -update noar tt set v0='6WKZ7' where id=7; -update noar ti set v0='6WKZ7' where id=7; -update noar tt set b2='AQM8T' where id=7; -update noar ti set b2='AQM8T' where id=7; -update noar tt set v0='YLY8' where id=8; -update noar ti set v0='YLY8' where id=8; -update noar tt set b0='SXC956LGDQHNHN1A7Q0A34H' where id=8; -update noar ti set b0='SXC956LGDQHNHN1A7Q0A34H' where id=8; -update noar tt set v0='MLJB' where id=8; -update noar ti set v0='MLJB' where id=8; -update noar tt set b1='CENHWRLIF1KFHBRJ32W1RC5ZMPSB36O' where id=8; -update noar ti set b1='CENHWRLIF1KFHBRJ32W1RC5ZMPSB36O' where id=8; -update noar tt set v0='PP380IR' where id=8; -update noar ti set v0='PP380IR' where id=8; -update noar tt set b2='K8FGDEH324GBTAVNB49RWW9' where id=8; -update noar ti set b2='K8FGDEH324GBTAVNB49RWW9' where id=8; -update noar tt set v0='OZTL03EGGAXV8L' where id=9; -update noar ti set v0='OZTL03EGGAXV8L' where id=9; -update noar tt set b0='3VOM4MAX' where id=9; -update noar ti set b0='3VOM4MAX' where id=9; -update noar tt set v0='DD' where id=9; -update noar ti set v0='DD' where id=9; -update noar tt set b1='C7QKTAFQ4T24MF2L1LCMLHCA8JB' where id=9; -update noar ti set b1='C7QKTAFQ4T24MF2L1LCMLHCA8JB' where id=9; -update noar tt set v0='GW0EHX3B3MIAL2UF5T' where id=9; -update noar ti set v0='GW0EHX3B3MIAL2UF5T' where id=9; -update noar tt set b2='7FBEQCLVSRS2538T' where id=9; -update noar ti set b2='7FBEQCLVSRS2538T' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - f0 int null, - v0 varchar(32) null, - b0 mediumblob null, - b1 longblob null, - b2 tinyblob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='95I' where id=1; -update noar ti set v0='95I' where id=1; -update noar tt set b0='NMQVTSSO' where id=1; -update noar ti set b0='NMQVTSSO' where id=1; -update noar tt set v0='3FP1N8EY1TDKSYKVDZCO' where id=1; -update noar ti set v0='3FP1N8EY1TDKSYKVDZCO' where id=1; -update noar tt set b1='FDD8Q' where id=1; -update noar ti set b1='FDD8Q' where id=1; -update noar tt set v0='IBJHK1RVAVDAT' where id=1; -update noar ti set v0='IBJHK1RVAVDAT' where id=1; -update noar tt set b2='333CXXQMTFLHY93MQK' where id=1; -update noar ti set b2='333CXXQMTFLHY93MQK' where id=1; -update noar tt set v0='WUO7MDQ22HW' where id=2; -update noar ti set v0='WUO7MDQ22HW' where id=2; -update noar tt set b0='HBCULRU6GUB4ZAAGBMC9U7CZ72220' where id=2; -update noar ti set b0='HBCULRU6GUB4ZAAGBMC9U7CZ72220' where id=2; -update noar tt set v0='042IMO56MS4T5W2Y8H' where id=2; -update noar ti set v0='042IMO56MS4T5W2Y8H' where id=2; -update noar tt set b1='XC6CM' where id=2; -update noar ti set b1='XC6CM' where id=2; -update noar tt set v0='S' where id=2; -update noar ti set v0='S' where id=2; -update noar tt set b2='G1UMFP7ISB334' where id=2; -update noar ti set b2='G1UMFP7ISB334' where id=2; -update noar tt set v0='PS2FCZVP6' where id=3; -update noar ti set v0='PS2FCZVP6' where id=3; -update noar tt set b0='0DKE' where id=3; -update noar ti set b0='0DKE' where id=3; -update noar tt set v0='V4JM820DI' where id=3; -update noar ti set v0='V4JM820DI' where id=3; -update noar tt set b1='GQYZL5D7U3XSPB' where id=3; -update noar ti set b1='GQYZL5D7U3XSPB' where id=3; -update noar tt set v0='DJH1YMHVFVWJF8Z00GYTWXKN7FJVHZUY' where id=3; -update noar ti set v0='DJH1YMHVFVWJF8Z00GYTWXKN7FJVHZUY' where id=3; -update noar tt set b2='SAGT8WGPRTV' where id=3; -update noar ti set b2='SAGT8WGPRTV' where id=3; -update noar tt set v0='FCJQIX0XMNZEYH4' where id=4; -update noar ti set v0='FCJQIX0XMNZEYH4' where id=4; -update noar tt set b0='O1JG3DN5U8R' where id=4; -update noar ti set b0='O1JG3DN5U8R' where id=4; -update noar tt set v0='F12DDFKE1L' where id=4; -update noar ti set v0='F12DDFKE1L' where id=4; -update noar tt set b1='F4Z9DUPSBX01A' where id=4; -update noar ti set b1='F4Z9DUPSBX01A' where id=4; -update noar tt set v0='AV862HFWU' where id=4; -update noar ti set v0='AV862HFWU' where id=4; -update noar tt set b2='9YQG7TXM0HZPWWJBBWCA36WZX37S7' where id=4; -update noar ti set b2='9YQG7TXM0HZPWWJBBWCA36WZX37S7' where id=4; -update noar tt set v0='T0FV73DQHJ8BOFM66VXJKFXE' where id=5; -update noar ti set v0='T0FV73DQHJ8BOFM66VXJKFXE' where id=5; -update noar tt set b0='NLYWQGLR92IGXQOWD9PPRY' where id=5; -update noar ti set b0='NLYWQGLR92IGXQOWD9PPRY' where id=5; -update noar tt set v0='51E75UY0C9TOYL' where id=5; -update noar ti set v0='51E75UY0C9TOYL' where id=5; -update noar tt set b1='ZQNJWNRCZJ1IZR41AYRZO7' where id=5; -update noar ti set b1='ZQNJWNRCZJ1IZR41AYRZO7' where id=5; -update noar tt set v0='6OHL5J7KKDJF14GTZCG0UDZXCPRVLJA' where id=5; -update noar ti set v0='6OHL5J7KKDJF14GTZCG0UDZXCPRVLJA' where id=5; -update noar tt set b2='EOT' where id=5; -update noar ti set b2='EOT' where id=5; -update noar tt set v0='K21UVNBJ5RL6CUEYG' where id=6; -update noar ti set v0='K21UVNBJ5RL6CUEYG' where id=6; -update noar tt set b0='X6H58EYZAUJ8I8I8RPX4VI8ZBYC5' where id=6; -update noar ti set b0='X6H58EYZAUJ8I8I8RPX4VI8ZBYC5' where id=6; -update noar tt set v0='1G409TIT12G0DDS0D' where id=6; -update noar ti set v0='1G409TIT12G0DDS0D' where id=6; -update noar tt set b1='SOUP3U' where id=6; -update noar ti set b1='SOUP3U' where id=6; -update noar tt set v0='S0LINMQJRR74ML2' where id=6; -update noar ti set v0='S0LINMQJRR74ML2' where id=6; -update noar tt set b2='1PAH' where id=6; -update noar ti set b2='1PAH' where id=6; -update noar tt set v0='T300F2METXIR' where id=7; -update noar ti set v0='T300F2METXIR' where id=7; -update noar tt set b0='M9WYOD7E1FZ' where id=7; -update noar ti set b0='M9WYOD7E1FZ' where id=7; -update noar tt set v0='DOB3Q78HLLYGM0S59' where id=7; -update noar ti set v0='DOB3Q78HLLYGM0S59' where id=7; -update noar tt set b1='SAB' where id=7; -update noar ti set b1='SAB' where id=7; -update noar tt set v0='ZO9CA9L87Z1FSSOEW09EC' where id=7; -update noar ti set v0='ZO9CA9L87Z1FSSOEW09EC' where id=7; -update noar tt set b2='0SNHAGSVF7CTXHY6PXTFN82SRY8S2' where id=7; -update noar ti set b2='0SNHAGSVF7CTXHY6PXTFN82SRY8S2' where id=7; -update noar tt set v0='Z' where id=8; -update noar ti set v0='Z' where id=8; -update noar tt set b0='H0N7E0ASYC9K7KSZHYNSNWTYYH9K' where id=8; -update noar ti set b0='H0N7E0ASYC9K7KSZHYNSNWTYYH9K' where id=8; -update noar tt set v0='IYJ' where id=8; -update noar ti set v0='IYJ' where id=8; -update noar tt set b1='FI61P170Y9S8' where id=8; -update noar ti set b1='FI61P170Y9S8' where id=8; -update noar tt set v0='BBLE7NYD4XIQU199MLI' where id=8; -update noar ti set v0='BBLE7NYD4XIQU199MLI' where id=8; -update noar tt set b2='HFII9CV' where id=8; -update noar ti set b2='HFII9CV' where id=8; -update noar tt set v0='9XJZUR4KNR' where id=9; -update noar ti set v0='9XJZUR4KNR' where id=9; -update noar tt set b0='8FE67ZCTBV4TKT35ZD80' where id=9; -update noar ti set b0='8FE67ZCTBV4TKT35ZD80' where id=9; -update noar tt set v0='N2JSSUL7D' where id=9; -update noar ti set v0='N2JSSUL7D' where id=9; -update noar tt set b1='BB9Z' where id=9; -update noar ti set b1='BB9Z' where id=9; -update noar tt set v0='FOHT2EL637L212F0P1BK' where id=9; -update noar ti set v0='FOHT2EL637L212F0P1BK' where id=9; -update noar tt set b2='53SCTONT71V8B3S6IV1AZR44E14' where id=9; -update noar ti set b2='53SCTONT71V8B3S6IV1AZR44E14' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - f0 int null, - v0 varchar(256) null, - b0 mediumblob null, - b1 longblob null, - b2 tinyblob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='VFG5L2CPECRJNGMJR97Q3ZHJS7MO' where id=1; -update noar ti set v0='VFG5L2CPECRJNGMJR97Q3ZHJS7MO' where id=1; -update noar tt set b0='1LMK8GHOJ19CJ' where id=1; -update noar ti set b0='1LMK8GHOJ19CJ' where id=1; -update noar tt set v0='4PJM764WBGQZTKNUQB2N7' where id=1; -update noar ti set v0='4PJM764WBGQZTKNUQB2N7' where id=1; -update noar tt set b1='S3GZYB' where id=1; -update noar ti set b1='S3GZYB' where id=1; -update noar tt set v0='6M8HQU0IOAQNMAFBYIWNCIL5EKIM64' where id=1; -update noar ti set v0='6M8HQU0IOAQNMAFBYIWNCIL5EKIM64' where id=1; -update noar tt set b2='V2KAXYMUULLPYNPL' where id=1; -update noar ti set b2='V2KAXYMUULLPYNPL' where id=1; -update noar tt set v0='SWOD4A2MKQ5PG8VPSTTHT' where id=2; -update noar ti set v0='SWOD4A2MKQ5PG8VPSTTHT' where id=2; -update noar tt set b0='Z7W18SQNC7JP2PNZG8JCT1' where id=2; -update noar ti set b0='Z7W18SQNC7JP2PNZG8JCT1' where id=2; -update noar tt set v0='N4PIZT5VW1' where id=2; -update noar ti set v0='N4PIZT5VW1' where id=2; -update noar tt set b1='BNXMY4UHG63' where id=2; -update noar ti set b1='BNXMY4UHG63' where id=2; -update noar tt set v0='3H7FDHO5W' where id=2; -update noar ti set v0='3H7FDHO5W' where id=2; -update noar tt set b2='DABZ7M' where id=2; -update noar ti set b2='DABZ7M' where id=2; -update noar tt set v0='GINT5LHEKMIRGC5BI2LIG889NY5HWK2R' where id=3; -update noar ti set v0='GINT5LHEKMIRGC5BI2LIG889NY5HWK2R' where id=3; -update noar tt set b0='HLWLY38VIK72LUFHUROLVQGDRIX' where id=3; -update noar ti set b0='HLWLY38VIK72LUFHUROLVQGDRIX' where id=3; -update noar tt set v0='UKO8WEN0BIXD70ZSP' where id=3; -update noar ti set v0='UKO8WEN0BIXD70ZSP' where id=3; -update noar tt set b1='9P5CPL3GSMW5Z4HV' where id=3; -update noar ti set b1='9P5CPL3GSMW5Z4HV' where id=3; -update noar tt set v0='OS1GLY' where id=3; -update noar ti set v0='OS1GLY' where id=3; -update noar tt set b2='E2SPQGFZQ08P' where id=3; -update noar ti set b2='E2SPQGFZQ08P' where id=3; -update noar tt set v0='0TU289OPBQ12JW3F' where id=4; -update noar ti set v0='0TU289OPBQ12JW3F' where id=4; -update noar tt set b0='PB58BXHFXGHZFIBXL4YEG7P' where id=4; -update noar ti set b0='PB58BXHFXGHZFIBXL4YEG7P' where id=4; -update noar tt set v0='OKIISE018' where id=4; -update noar ti set v0='OKIISE018' where id=4; -update noar tt set b1='W3T' where id=4; -update noar ti set b1='W3T' where id=4; -update noar tt set v0='LGY3Y9QP3OAHX0DSGCKFUA' where id=4; -update noar ti set v0='LGY3Y9QP3OAHX0DSGCKFUA' where id=4; -update noar tt set b2='F95S0PABDVYQYGZZZGCJ75SNEP6C4FX' where id=4; -update noar ti set b2='F95S0PABDVYQYGZZZGCJ75SNEP6C4FX' where id=4; -update noar tt set v0='JQ1V6J4SC99FXGLZQH299T17I977D3' where id=5; -update noar ti set v0='JQ1V6J4SC99FXGLZQH299T17I977D3' where id=5; -update noar tt set b0='FN0YPHLZTW3B8HJ8ENJSUF' where id=5; -update noar ti set b0='FN0YPHLZTW3B8HJ8ENJSUF' where id=5; -update noar tt set v0='YQX165XO7176N4YQ6ZOGPUEZVWPSI' where id=5; -update noar ti set v0='YQX165XO7176N4YQ6ZOGPUEZVWPSI' where id=5; -update noar tt set b1='HPP71S7Y0KRCS70WUJUSBBYE' where id=5; -update noar ti set b1='HPP71S7Y0KRCS70WUJUSBBYE' where id=5; -update noar tt set v0='CR50D0704GO02YB6O66E0OB0MDEXEUM1' where id=5; -update noar ti set v0='CR50D0704GO02YB6O66E0OB0MDEXEUM1' where id=5; -update noar tt set b2='LQKSZ7EEU1WE6HVXVUG' where id=5; -update noar ti set b2='LQKSZ7EEU1WE6HVXVUG' where id=5; -update noar tt set v0='ODHK37YEHW70ZVPCLJODEPQ' where id=6; -update noar ti set v0='ODHK37YEHW70ZVPCLJODEPQ' where id=6; -update noar tt set b0='MTXIKVAMAMUFC7N3TTKDL41' where id=6; -update noar ti set b0='MTXIKVAMAMUFC7N3TTKDL41' where id=6; -update noar tt set v0='W0F8M' where id=6; -update noar ti set v0='W0F8M' where id=6; -update noar tt set b1='SBJRP0V644AMU5KKYPB3SU48IIG' where id=6; -update noar ti set b1='SBJRP0V644AMU5KKYPB3SU48IIG' where id=6; -update noar tt set v0='L1WRXEAE38MZJ38I87X5K9' where id=6; -update noar ti set v0='L1WRXEAE38MZJ38I87X5K9' where id=6; -update noar tt set b2='57VFYAZEUU03IPUE1NPGBMQOOY5SDI' where id=6; -update noar ti set b2='57VFYAZEUU03IPUE1NPGBMQOOY5SDI' where id=6; -update noar tt set v0='85RD3' where id=7; -update noar ti set v0='85RD3' where id=7; -update noar tt set b0='707GBZT04KODU83AV8GG38G8S5' where id=7; -update noar ti set b0='707GBZT04KODU83AV8GG38G8S5' where id=7; -update noar tt set v0='KSLCIRJDQMXR7OI9OZZOGA5' where id=7; -update noar ti set v0='KSLCIRJDQMXR7OI9OZZOGA5' where id=7; -update noar tt set b1='P3QM225FN4F62DNP2QDDY2' where id=7; -update noar ti set b1='P3QM225FN4F62DNP2QDDY2' where id=7; -update noar tt set v0='P58V9XBMAED0XNXLHWKU' where id=7; -update noar ti set v0='P58V9XBMAED0XNXLHWKU' where id=7; -update noar tt set b2='NTMKBN7PGN9X6CGDMK0ZHLE' where id=7; -update noar ti set b2='NTMKBN7PGN9X6CGDMK0ZHLE' where id=7; -update noar tt set v0='LSCBRGMT' where id=8; -update noar ti set v0='LSCBRGMT' where id=8; -update noar tt set b0='J5GXHNA2MHELZKAJYUHK94SFU' where id=8; -update noar ti set b0='J5GXHNA2MHELZKAJYUHK94SFU' where id=8; -update noar tt set v0='UMHHXJYFSHDUM1NRTRKEE' where id=8; -update noar ti set v0='UMHHXJYFSHDUM1NRTRKEE' where id=8; -update noar tt set b1='V7' where id=8; -update noar ti set b1='V7' where id=8; -update noar tt set v0='7QPORD4BTT6VKQ6P1ST5H82BH4KI77' where id=8; -update noar ti set v0='7QPORD4BTT6VKQ6P1ST5H82BH4KI77' where id=8; -update noar tt set b2='GJFMU0UYJVBCGO9KWK1TQ7' where id=8; -update noar ti set b2='GJFMU0UYJVBCGO9KWK1TQ7' where id=8; -update noar tt set v0='W77IE2L763KEMKT4ONIVLMV0AJ' where id=9; -update noar ti set v0='W77IE2L763KEMKT4ONIVLMV0AJ' where id=9; -update noar tt set b0='DYG9DUC5NKEOOW4GM0BO3CLNX9L' where id=9; -update noar ti set b0='DYG9DUC5NKEOOW4GM0BO3CLNX9L' where id=9; -update noar tt set v0='8ANM0B3O6JNHZIAK33B02UN2TM2L' where id=9; -update noar ti set v0='8ANM0B3O6JNHZIAK33B02UN2TM2L' where id=9; -update noar tt set b1='U3VGOZSLQVQWNA4N8SO54Q6HF' where id=9; -update noar ti set b1='U3VGOZSLQVQWNA4N8SO54Q6HF' where id=9; -update noar tt set v0='GIY0CFJKLIWBN' where id=9; -update noar ti set v0='GIY0CFJKLIWBN' where id=9; -update noar tt set b2='72S2LM' where id=9; -update noar ti set b2='72S2LM' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - f0 int not null, - v0 varchar(32) not null, - b0 mediumblob not null, - b1 longblob not null, - b2 tinyblob not null -) engine=tokudb; -insert into tt values (1,0,'','','',''); -insert into tt values (2,0,'','','',''); -insert into tt values (3,0,'','','',''); -insert into tt values (4,0,'','','',''); -insert into tt values (5,0,'','','',''); -insert into tt values (6,0,'','','',''); -insert into tt values (7,0,'','','',''); -insert into tt values (8,0,'','','',''); -insert into tt values (9,0,'','','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='1XDJXG3KL04V2IGTCEULGKM' where id=1; -update noar ti set v0='1XDJXG3KL04V2IGTCEULGKM' where id=1; -update noar tt set b0='C' where id=1; -update noar ti set b0='C' where id=1; -update noar tt set v0='AQH6BPLIU114H6J4NACPDW4' where id=1; -update noar ti set v0='AQH6BPLIU114H6J4NACPDW4' where id=1; -update noar tt set b1='V1HGEC' where id=1; -update noar ti set b1='V1HGEC' where id=1; -update noar tt set v0='M6I35002MJ09CZZNQP' where id=1; -update noar ti set v0='M6I35002MJ09CZZNQP' where id=1; -update noar tt set b2='0ULKUFT8PMZ' where id=1; -update noar ti set b2='0ULKUFT8PMZ' where id=1; -update noar tt set v0='4LW518PD' where id=2; -update noar ti set v0='4LW518PD' where id=2; -update noar tt set b0='R0AZQ7BTVEGI' where id=2; -update noar ti set b0='R0AZQ7BTVEGI' where id=2; -update noar tt set v0='DGRSGDGYLAW10FZI7YWZR3AD' where id=2; -update noar ti set v0='DGRSGDGYLAW10FZI7YWZR3AD' where id=2; -update noar tt set b1='U1T2' where id=2; -update noar ti set b1='U1T2' where id=2; -update noar tt set v0='X73R7TESZAUJQZWQ4OOK40694H0' where id=2; -update noar ti set v0='X73R7TESZAUJQZWQ4OOK40694H0' where id=2; -update noar tt set b2='BP50AFNQRXQQ7' where id=2; -update noar ti set b2='BP50AFNQRXQQ7' where id=2; -update noar tt set v0='1P7TBXW3CU7J23' where id=3; -update noar ti set v0='1P7TBXW3CU7J23' where id=3; -update noar tt set b0='O5X03A28F4OIACSNEWX6JRJIKW' where id=3; -update noar ti set b0='O5X03A28F4OIACSNEWX6JRJIKW' where id=3; -update noar tt set v0='8PBU9RJUOTWQLURFPRQB6V' where id=3; -update noar ti set v0='8PBU9RJUOTWQLURFPRQB6V' where id=3; -update noar tt set b1='BM2' where id=3; -update noar ti set b1='BM2' where id=3; -update noar tt set v0='23OAB8A8D2TEPNEXT2IVF5XTK1IEPM' where id=3; -update noar ti set v0='23OAB8A8D2TEPNEXT2IVF5XTK1IEPM' where id=3; -update noar tt set b2='WTDEB66' where id=3; -update noar ti set b2='WTDEB66' where id=3; -update noar tt set v0='DPKYV3VWKVRPLX82DNMZZUZJ8HRZ4HY' where id=4; -update noar ti set v0='DPKYV3VWKVRPLX82DNMZZUZJ8HRZ4HY' where id=4; -update noar tt set b0='RD8L6H4FJH8OGW1NW' where id=4; -update noar ti set b0='RD8L6H4FJH8OGW1NW' where id=4; -update noar tt set v0='JKOGIJ6FUAP' where id=4; -update noar ti set v0='JKOGIJ6FUAP' where id=4; -update noar tt set b1='6FT7JWGAJSB5RH8XJMP' where id=4; -update noar ti set b1='6FT7JWGAJSB5RH8XJMP' where id=4; -update noar tt set v0='SONO7WAM1MC2PLFO0AWKMDYT8WIMI80Y' where id=4; -update noar ti set v0='SONO7WAM1MC2PLFO0AWKMDYT8WIMI80Y' where id=4; -update noar tt set b2='WH5FJJY1N' where id=4; -update noar ti set b2='WH5FJJY1N' where id=4; -update noar tt set v0='E' where id=5; -update noar ti set v0='E' where id=5; -update noar tt set b0='26VL706C5V0X' where id=5; -update noar ti set b0='26VL706C5V0X' where id=5; -update noar tt set v0='A4OYGZASQI8OZEW' where id=5; -update noar ti set v0='A4OYGZASQI8OZEW' where id=5; -update noar tt set b1='GNHVD4' where id=5; -update noar ti set b1='GNHVD4' where id=5; -update noar tt set v0='1' where id=5; -update noar ti set v0='1' where id=5; -update noar tt set b2='1HIIVKQD2MYVJ0LY7PHE4UO' where id=5; -update noar ti set b2='1HIIVKQD2MYVJ0LY7PHE4UO' where id=5; -update noar tt set v0='8ZX7K2R8FSQ79QAN3MCPAVMGHIB' where id=6; -update noar ti set v0='8ZX7K2R8FSQ79QAN3MCPAVMGHIB' where id=6; -update noar tt set b0='WIM' where id=6; -update noar ti set b0='WIM' where id=6; -update noar tt set v0='MPL5JPFE1KJ' where id=6; -update noar ti set v0='MPL5JPFE1KJ' where id=6; -update noar tt set b1='YI0F681Y1S7NHSAY80' where id=6; -update noar ti set b1='YI0F681Y1S7NHSAY80' where id=6; -update noar tt set v0='38881W4OFXFMKNDKH60WWSZI9' where id=6; -update noar ti set v0='38881W4OFXFMKNDKH60WWSZI9' where id=6; -update noar tt set b2='M5DKPR72UOAG00B2D4MCERUIWGODR' where id=6; -update noar ti set b2='M5DKPR72UOAG00B2D4MCERUIWGODR' where id=6; -update noar tt set v0='7CKQZELK' where id=7; -update noar ti set v0='7CKQZELK' where id=7; -update noar tt set b0='MRBTX7STQW' where id=7; -update noar ti set b0='MRBTX7STQW' where id=7; -update noar tt set v0='DBZ' where id=7; -update noar ti set v0='DBZ' where id=7; -update noar tt set b1='12D2BFU2NPZJNYXV9E1VKQQEKSP' where id=7; -update noar ti set b1='12D2BFU2NPZJNYXV9E1VKQQEKSP' where id=7; -update noar tt set v0='P5SUKF15N916SF2' where id=7; -update noar ti set v0='P5SUKF15N916SF2' where id=7; -update noar tt set b2='335Q78OGASW20RME3' where id=7; -update noar ti set b2='335Q78OGASW20RME3' where id=7; -update noar tt set v0='4SFHPVEVJFT5MPE2A8NCFJM4N2YZOTVY' where id=8; -update noar ti set v0='4SFHPVEVJFT5MPE2A8NCFJM4N2YZOTVY' where id=8; -update noar tt set b0='CR5FYIAKM' where id=8; -update noar ti set b0='CR5FYIAKM' where id=8; -update noar tt set v0='UA11CJTJGIUC2UKSQJA4' where id=8; -update noar ti set v0='UA11CJTJGIUC2UKSQJA4' where id=8; -update noar tt set b1='ULQEQYUYMOR72' where id=8; -update noar ti set b1='ULQEQYUYMOR72' where id=8; -update noar tt set v0='44QUU37ETM' where id=8; -update noar ti set v0='44QUU37ETM' where id=8; -update noar tt set b2='YJNNZ9VNF' where id=8; -update noar ti set b2='YJNNZ9VNF' where id=8; -update noar tt set v0='76QXK7WD21278XXVTR3DF2U4QW7RO8O' where id=9; -update noar ti set v0='76QXK7WD21278XXVTR3DF2U4QW7RO8O' where id=9; -update noar tt set b0='GMZDODSL2J53324IHEMOG7L' where id=9; -update noar ti set b0='GMZDODSL2J53324IHEMOG7L' where id=9; -update noar tt set v0='XXIKG55EII29JBW4U5QGLV1A3RKY4' where id=9; -update noar ti set v0='XXIKG55EII29JBW4U5QGLV1A3RKY4' where id=9; -update noar tt set b1='KXNCTBGFNU5' where id=9; -update noar ti set b1='KXNCTBGFNU5' where id=9; -update noar tt set v0='E59OE4GW5OIN42GROA5Y5L' where id=9; -update noar ti set v0='E59OE4GW5OIN42GROA5Y5L' where id=9; -update noar tt set b2='YGRTKYNBAZWBULWKRJ26276KT7JKO3VZ' where id=9; -update noar ti set b2='YGRTKYNBAZWBULWKRJ26276KT7JKO3VZ' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - f0 int not null, - v0 varchar(256) not null, - b0 mediumblob not null, - b1 longblob not null, - b2 tinyblob not null -) engine=tokudb; -insert into tt values (1,0,'','','',''); -insert into tt values (2,0,'','','',''); -insert into tt values (3,0,'','','',''); -insert into tt values (4,0,'','','',''); -insert into tt values (5,0,'','','',''); -insert into tt values (6,0,'','','',''); -insert into tt values (7,0,'','','',''); -insert into tt values (8,0,'','','',''); -insert into tt values (9,0,'','','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='OPOE' where id=1; -update noar ti set v0='OPOE' where id=1; -update noar tt set b0='37S7WTG5E0DQ9HG90LSD8' where id=1; -update noar ti set b0='37S7WTG5E0DQ9HG90LSD8' where id=1; -update noar tt set v0='0Q32G3JJH5GA00VZ8GG' where id=1; -update noar ti set v0='0Q32G3JJH5GA00VZ8GG' where id=1; -update noar tt set b1='4KHPZO84BVUC7' where id=1; -update noar ti set b1='4KHPZO84BVUC7' where id=1; -update noar tt set v0='Y' where id=1; -update noar ti set v0='Y' where id=1; -update noar tt set b2='WC90BJSWIZ8HWHA6LWSJUOMP3P1IND8I' where id=1; -update noar ti set b2='WC90BJSWIZ8HWHA6LWSJUOMP3P1IND8I' where id=1; -update noar tt set v0='N4N8XSNTQVC3E' where id=2; -update noar ti set v0='N4N8XSNTQVC3E' where id=2; -update noar tt set b0='PLIQCI6AAEJ8QQ23FSPV8DAKKN' where id=2; -update noar ti set b0='PLIQCI6AAEJ8QQ23FSPV8DAKKN' where id=2; -update noar tt set v0='B00JIYJAQYX1W581M4R6' where id=2; -update noar ti set v0='B00JIYJAQYX1W581M4R6' where id=2; -update noar tt set b1='E8K219PT0' where id=2; -update noar ti set b1='E8K219PT0' where id=2; -update noar tt set v0='SJQS406DWOC4KTH463OBZ59' where id=2; -update noar ti set v0='SJQS406DWOC4KTH463OBZ59' where id=2; -update noar tt set b2='EZFJ1KV91U7NNJRWC2UTM' where id=2; -update noar ti set b2='EZFJ1KV91U7NNJRWC2UTM' where id=2; -update noar tt set v0='FWT6VTP5Z87FDO8T' where id=3; -update noar ti set v0='FWT6VTP5Z87FDO8T' where id=3; -update noar tt set b0='H0T5J9UVM54HY' where id=3; -update noar ti set b0='H0T5J9UVM54HY' where id=3; -update noar tt set v0='YUOVJM8SDILW6OHM1E2393H' where id=3; -update noar ti set v0='YUOVJM8SDILW6OHM1E2393H' where id=3; -update noar tt set b1='FN8MR' where id=3; -update noar ti set b1='FN8MR' where id=3; -update noar tt set v0='E10VVYH0OY229H2UIHQ1APEFK1CFD' where id=3; -update noar ti set v0='E10VVYH0OY229H2UIHQ1APEFK1CFD' where id=3; -update noar tt set b2='9TSAFOKJZTH02LOKMEQ' where id=3; -update noar ti set b2='9TSAFOKJZTH02LOKMEQ' where id=3; -update noar tt set v0='S2C7ZVPVA1YBW29N5BUP0V8LNZBN' where id=4; -update noar ti set v0='S2C7ZVPVA1YBW29N5BUP0V8LNZBN' where id=4; -update noar tt set b0='0FAV0PY9DKOUTPL410' where id=4; -update noar ti set b0='0FAV0PY9DKOUTPL410' where id=4; -update noar tt set v0='1SOJM' where id=4; -update noar ti set v0='1SOJM' where id=4; -update noar tt set b1='QGY8E3KAYV06LBUY' where id=4; -update noar ti set b1='QGY8E3KAYV06LBUY' where id=4; -update noar tt set v0='9VL5U2MDRXA' where id=4; -update noar ti set v0='9VL5U2MDRXA' where id=4; -update noar tt set b2='T72CYO00J' where id=4; -update noar ti set b2='T72CYO00J' where id=4; -update noar tt set v0='LYPMJ0R7MGU1F9D1I3D8QY8M9LEEH856' where id=5; -update noar ti set v0='LYPMJ0R7MGU1F9D1I3D8QY8M9LEEH856' where id=5; -update noar tt set b0='19CPT36N2UBDK' where id=5; -update noar ti set b0='19CPT36N2UBDK' where id=5; -update noar tt set v0='D1P8GG5' where id=5; -update noar ti set v0='D1P8GG5' where id=5; -update noar tt set b1='JOXL1' where id=5; -update noar ti set b1='JOXL1' where id=5; -update noar tt set v0='ZDNG173' where id=5; -update noar ti set v0='ZDNG173' where id=5; -update noar tt set b2='UJBY26EDXTMW2DURS0PXFRT' where id=5; -update noar ti set b2='UJBY26EDXTMW2DURS0PXFRT' where id=5; -update noar tt set v0='F615DJMS2U63IBC1YKW63R6HF' where id=6; -update noar ti set v0='F615DJMS2U63IBC1YKW63R6HF' where id=6; -update noar tt set b0='BYFY2S7K2CBGIO' where id=6; -update noar ti set b0='BYFY2S7K2CBGIO' where id=6; -update noar tt set v0='9C0SUD5IJAO29B9' where id=6; -update noar ti set v0='9C0SUD5IJAO29B9' where id=6; -update noar tt set b1='S1S7IPOZLUO' where id=6; -update noar ti set b1='S1S7IPOZLUO' where id=6; -update noar tt set v0='PMRHZQ29' where id=6; -update noar ti set v0='PMRHZQ29' where id=6; -update noar tt set b2='3X1UVSQL12OEU' where id=6; -update noar ti set b2='3X1UVSQL12OEU' where id=6; -update noar tt set v0='8I2BBFPJKJOSV8ZHPD6F6' where id=7; -update noar ti set v0='8I2BBFPJKJOSV8ZHPD6F6' where id=7; -update noar tt set b0='11ZHKVY73' where id=7; -update noar ti set b0='11ZHKVY73' where id=7; -update noar tt set v0='4BIVO2URW5BCQ' where id=7; -update noar ti set v0='4BIVO2URW5BCQ' where id=7; -update noar tt set b1='R56L0HU90EJEC6HWTXQM4GBMYRD' where id=7; -update noar ti set b1='R56L0HU90EJEC6HWTXQM4GBMYRD' where id=7; -update noar tt set v0='WRA7NWDPROPIXF' where id=7; -update noar ti set v0='WRA7NWDPROPIXF' where id=7; -update noar tt set b2='JK7LH71YYXB6AIN9VEPWUOTHHPW1JW' where id=7; -update noar ti set b2='JK7LH71YYXB6AIN9VEPWUOTHHPW1JW' where id=7; -update noar tt set v0='M3P3ANQD5QJRLYT8H2CKVGD' where id=8; -update noar ti set v0='M3P3ANQD5QJRLYT8H2CKVGD' where id=8; -update noar tt set b0='OXVQRRK3UNHKU' where id=8; -update noar ti set b0='OXVQRRK3UNHKU' where id=8; -update noar tt set v0='DHZ8891D44U4BLUTZMQ2VBBU' where id=8; -update noar ti set v0='DHZ8891D44U4BLUTZMQ2VBBU' where id=8; -update noar tt set b1='4EHVPJQ0NXSGQSU4YV47JI39PI7A' where id=8; -update noar ti set b1='4EHVPJQ0NXSGQSU4YV47JI39PI7A' where id=8; -update noar tt set v0='1TNM7D4CUG6CAR4JUKOW1GN4Q5C1' where id=8; -update noar ti set v0='1TNM7D4CUG6CAR4JUKOW1GN4Q5C1' where id=8; -update noar tt set b2='AUP' where id=8; -update noar ti set b2='AUP' where id=8; -update noar tt set v0='EOYBG2AYA7YFOTJJP7M57' where id=9; -update noar ti set v0='EOYBG2AYA7YFOTJJP7M57' where id=9; -update noar tt set b0='Q8TYATVXTHGC7ANFJAK33WWB' where id=9; -update noar ti set b0='Q8TYATVXTHGC7ANFJAK33WWB' where id=9; -update noar tt set v0='89A5647ORACMW64Y2Z7PXIP6' where id=9; -update noar ti set v0='89A5647ORACMW64Y2Z7PXIP6' where id=9; -update noar tt set b1='75HGKA' where id=9; -update noar ti set b1='75HGKA' where id=9; -update noar tt set v0='NKW9GBGVB9QJ2L' where id=9; -update noar ti set v0='NKW9GBGVB9QJ2L' where id=9; -update noar tt set b2='3GYSR3ZEAO0B' where id=9; -update noar ti set b2='3GYSR3ZEAO0B' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - f0 int null, - v0 varchar(32) null, - b0 mediumblob null, - b1 longblob null, - b2 blob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='868M7MOY8GSMM9XXDSGITFSFC6U' where id=1; -update noar ti set v0='868M7MOY8GSMM9XXDSGITFSFC6U' where id=1; -update noar tt set b0='9VXWUW' where id=1; -update noar ti set b0='9VXWUW' where id=1; -update noar tt set v0='HPOPQVBEUA8' where id=1; -update noar ti set v0='HPOPQVBEUA8' where id=1; -update noar tt set b1='U4KXTRR2XKV1' where id=1; -update noar ti set b1='U4KXTRR2XKV1' where id=1; -update noar tt set v0='IISFKUZI3WHYQPQB9C76' where id=1; -update noar ti set v0='IISFKUZI3WHYQPQB9C76' where id=1; -update noar tt set b2='C301SQZEDU8M8U842V0BWL' where id=1; -update noar ti set b2='C301SQZEDU8M8U842V0BWL' where id=1; -update noar tt set v0='CE5DN76GACHA8XXBIK5IUZXWRX7AQ' where id=2; -update noar ti set v0='CE5DN76GACHA8XXBIK5IUZXWRX7AQ' where id=2; -update noar tt set b0='21KM636A9' where id=2; -update noar ti set b0='21KM636A9' where id=2; -update noar tt set v0='6S' where id=2; -update noar ti set v0='6S' where id=2; -update noar tt set b1='TOFL505VRHEM4SSAG9' where id=2; -update noar ti set b1='TOFL505VRHEM4SSAG9' where id=2; -update noar tt set v0='6CT91' where id=2; -update noar ti set v0='6CT91' where id=2; -update noar tt set b2='L0UA' where id=2; -update noar ti set b2='L0UA' where id=2; -update noar tt set v0='5906TXUPHOMNY5XPC2P0RTTD' where id=3; -update noar ti set v0='5906TXUPHOMNY5XPC2P0RTTD' where id=3; -update noar tt set b0='4NREU9YGYIFPGAAWGAZKLC0' where id=3; -update noar ti set b0='4NREU9YGYIFPGAAWGAZKLC0' where id=3; -update noar tt set v0='TIRXY40XEXNUZCN66V1QA' where id=3; -update noar ti set v0='TIRXY40XEXNUZCN66V1QA' where id=3; -update noar tt set b1='U98TVT14B5IQHWAFMRK9X5SBNNI6' where id=3; -update noar ti set b1='U98TVT14B5IQHWAFMRK9X5SBNNI6' where id=3; -update noar tt set v0='37B84' where id=3; -update noar ti set v0='37B84' where id=3; -update noar tt set b2='IP0PO8UNRKNA0SN34EBPU24NDL8624D' where id=3; -update noar ti set b2='IP0PO8UNRKNA0SN34EBPU24NDL8624D' where id=3; -update noar tt set v0='Z8AXKYEUTROS8S734OQ1HOQ8PL' where id=4; -update noar ti set v0='Z8AXKYEUTROS8S734OQ1HOQ8PL' where id=4; -update noar tt set b0='HA4' where id=4; -update noar ti set b0='HA4' where id=4; -update noar tt set v0='LL0EUFOY0Q7LOJ7H8OC0' where id=4; -update noar ti set v0='LL0EUFOY0Q7LOJ7H8OC0' where id=4; -update noar tt set b1='S8ML' where id=4; -update noar ti set b1='S8ML' where id=4; -update noar tt set v0='RB22TEPR7F9JE1ZP59Q1DRBBSBW' where id=4; -update noar ti set v0='RB22TEPR7F9JE1ZP59Q1DRBBSBW' where id=4; -update noar tt set b2='NV3SJPY3CBAVIF2KXM30AWT21RK44CO' where id=4; -update noar ti set b2='NV3SJPY3CBAVIF2KXM30AWT21RK44CO' where id=4; -update noar tt set v0='Y7F7' where id=5; -update noar ti set v0='Y7F7' where id=5; -update noar tt set b0='V' where id=5; -update noar ti set b0='V' where id=5; -update noar tt set v0='C1YL6217XM4LOWNVC4ZJRXM2U4V' where id=5; -update noar ti set v0='C1YL6217XM4LOWNVC4ZJRXM2U4V' where id=5; -update noar tt set b1='K5N1B' where id=5; -update noar ti set b1='K5N1B' where id=5; -update noar tt set v0='ZGD9UTCRDPUY' where id=5; -update noar ti set v0='ZGD9UTCRDPUY' where id=5; -update noar tt set b2='SATRTYJUGH8J7OK6WYFBVCU4B' where id=5; -update noar ti set b2='SATRTYJUGH8J7OK6WYFBVCU4B' where id=5; -update noar tt set v0='AXW32QDT1LRKZ42STBT08HCV31S' where id=6; -update noar ti set v0='AXW32QDT1LRKZ42STBT08HCV31S' where id=6; -update noar tt set b0='BYWLJGBU6' where id=6; -update noar ti set b0='BYWLJGBU6' where id=6; -update noar tt set v0='96S1XXU6224WV5EYSPVY6QH9X17MKHX' where id=6; -update noar ti set v0='96S1XXU6224WV5EYSPVY6QH9X17MKHX' where id=6; -update noar tt set b1='Q33HUHJSWUDN9SR71BH2DNYJXSFP' where id=6; -update noar ti set b1='Q33HUHJSWUDN9SR71BH2DNYJXSFP' where id=6; -update noar tt set v0='K07D838SX16763OZ6AY' where id=6; -update noar ti set v0='K07D838SX16763OZ6AY' where id=6; -update noar tt set b2='0R' where id=6; -update noar ti set b2='0R' where id=6; -update noar tt set v0='KHOUT7WPSTFHFE4VZ' where id=7; -update noar ti set v0='KHOUT7WPSTFHFE4VZ' where id=7; -update noar tt set b0='X8KVKYKV31W8' where id=7; -update noar ti set b0='X8KVKYKV31W8' where id=7; -update noar tt set v0='EDJX88AU9RMI4U4DGUXMK' where id=7; -update noar ti set v0='EDJX88AU9RMI4U4DGUXMK' where id=7; -update noar tt set b1='XF7KPD9P82RY5WR8S8D098' where id=7; -update noar ti set b1='XF7KPD9P82RY5WR8S8D098' where id=7; -update noar tt set v0='E6' where id=7; -update noar ti set v0='E6' where id=7; -update noar tt set b2='GSBEM4UKWO8LXYS3FBXC' where id=7; -update noar ti set b2='GSBEM4UKWO8LXYS3FBXC' where id=7; -update noar tt set v0='GLOL7TEKUMYULQLRKV' where id=8; -update noar ti set v0='GLOL7TEKUMYULQLRKV' where id=8; -update noar tt set b0='1PB823LGOA2GBJRWYFQGN81IA7C0' where id=8; -update noar ti set b0='1PB823LGOA2GBJRWYFQGN81IA7C0' where id=8; -update noar tt set v0='4MM7LCMHALSJW4WYSGSBR1IVV3II8MO' where id=8; -update noar ti set v0='4MM7LCMHALSJW4WYSGSBR1IVV3II8MO' where id=8; -update noar tt set b1='GGM6NEOAD2YY0REFAV' where id=8; -update noar ti set b1='GGM6NEOAD2YY0REFAV' where id=8; -update noar tt set v0='0L448OJZM' where id=8; -update noar ti set v0='0L448OJZM' where id=8; -update noar tt set b2='HSX2K0XZ3GSGSRQYW3XVXV4BYCL44CE' where id=8; -update noar ti set b2='HSX2K0XZ3GSGSRQYW3XVXV4BYCL44CE' where id=8; -update noar tt set v0='T0R1J0F5M7QEC6ODYBJWRB' where id=9; -update noar ti set v0='T0R1J0F5M7QEC6ODYBJWRB' where id=9; -update noar tt set b0='U5L6U9' where id=9; -update noar ti set b0='U5L6U9' where id=9; -update noar tt set v0='U1K7ENH1X3N8P0KX96J5P' where id=9; -update noar ti set v0='U1K7ENH1X3N8P0KX96J5P' where id=9; -update noar tt set b1='OVJYCJA' where id=9; -update noar ti set b1='OVJYCJA' where id=9; -update noar tt set v0='M63IT55ZZBK5OC3C455TID' where id=9; -update noar ti set v0='M63IT55ZZBK5OC3C455TID' where id=9; -update noar tt set b2='DQ286QVQUDVCHXUCLPB' where id=9; -update noar ti set b2='DQ286QVQUDVCHXUCLPB' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - f0 int null, - v0 varchar(256) null, - b0 mediumblob null, - b1 longblob null, - b2 blob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='CQ9W2BFQDWKBBRC9043O8O0D' where id=1; -update noar ti set v0='CQ9W2BFQDWKBBRC9043O8O0D' where id=1; -update noar tt set b0='BE4N6EVTSHELQ4V3J31CVMO56LU' where id=1; -update noar ti set b0='BE4N6EVTSHELQ4V3J31CVMO56LU' where id=1; -update noar tt set v0='C93DIPTTYOVHVQA0RPS6CTNX' where id=1; -update noar ti set v0='C93DIPTTYOVHVQA0RPS6CTNX' where id=1; -update noar tt set b1='FRYU9UAO' where id=1; -update noar ti set b1='FRYU9UAO' where id=1; -update noar tt set v0='0C7LTBI4NVK5XEDTEC6DFIMSX3B0TGV' where id=1; -update noar ti set v0='0C7LTBI4NVK5XEDTEC6DFIMSX3B0TGV' where id=1; -update noar tt set b2='862RE92FD7DT28UVZHGWN8WVH2B' where id=1; -update noar ti set b2='862RE92FD7DT28UVZHGWN8WVH2B' where id=1; -update noar tt set v0='0JPR9J9HOBFVMQIPLEW' where id=2; -update noar ti set v0='0JPR9J9HOBFVMQIPLEW' where id=2; -update noar tt set b0='DJQDSUZFG1PZ5Y8US01VZWBQ0GQMXO' where id=2; -update noar ti set b0='DJQDSUZFG1PZ5Y8US01VZWBQ0GQMXO' where id=2; -update noar tt set v0='A9C5Y3CEG57KT6DUV8BC64ZJ0G' where id=2; -update noar ti set v0='A9C5Y3CEG57KT6DUV8BC64ZJ0G' where id=2; -update noar tt set b1='AIYHQ6' where id=2; -update noar ti set b1='AIYHQ6' where id=2; -update noar tt set v0='SH5' where id=2; -update noar ti set v0='SH5' where id=2; -update noar tt set b2='VYXPBTN1KH9' where id=2; -update noar ti set b2='VYXPBTN1KH9' where id=2; -update noar tt set v0='RM0EMGE1M24NQGPD' where id=3; -update noar ti set v0='RM0EMGE1M24NQGPD' where id=3; -update noar tt set b0='94YRQSVSF3SL4AP36T2T16' where id=3; -update noar ti set b0='94YRQSVSF3SL4AP36T2T16' where id=3; -update noar tt set v0='QPZPOVCNBQ5604' where id=3; -update noar ti set v0='QPZPOVCNBQ5604' where id=3; -update noar tt set b1='BM5G5H' where id=3; -update noar ti set b1='BM5G5H' where id=3; -update noar tt set v0='VLDFR4KBEO9M' where id=3; -update noar ti set v0='VLDFR4KBEO9M' where id=3; -update noar tt set b2='CXRMA95TAT7O4HOXRPTVH5BXWW3NLZ4O' where id=3; -update noar ti set b2='CXRMA95TAT7O4HOXRPTVH5BXWW3NLZ4O' where id=3; -update noar tt set v0='VR' where id=4; -update noar ti set v0='VR' where id=4; -update noar tt set b0='AQG7M0ZLE95CKEX' where id=4; -update noar ti set b0='AQG7M0ZLE95CKEX' where id=4; -update noar tt set v0='Z7DEOAWVBPRDBFMFL' where id=4; -update noar ti set v0='Z7DEOAWVBPRDBFMFL' where id=4; -update noar tt set b1='PA57HMZMK99DIQQ2POFS6LKMKB68P' where id=4; -update noar ti set b1='PA57HMZMK99DIQQ2POFS6LKMKB68P' where id=4; -update noar tt set v0='ZXYKP6SQB54DXX371' where id=4; -update noar ti set v0='ZXYKP6SQB54DXX371' where id=4; -update noar tt set b2='8TE3APDZZZYZ' where id=4; -update noar ti set b2='8TE3APDZZZYZ' where id=4; -update noar tt set v0='4G2C' where id=5; -update noar ti set v0='4G2C' where id=5; -update noar tt set b0='0I2JY2X46CBPZJI' where id=5; -update noar ti set b0='0I2JY2X46CBPZJI' where id=5; -update noar tt set v0='OL9KD4UQGP5XT8MLQQP3YGQXBFFI' where id=5; -update noar ti set v0='OL9KD4UQGP5XT8MLQQP3YGQXBFFI' where id=5; -update noar tt set b1='B20VKDD2VDGU' where id=5; -update noar ti set b1='B20VKDD2VDGU' where id=5; -update noar tt set v0='IP4STFWNQMW836A74VQ' where id=5; -update noar ti set v0='IP4STFWNQMW836A74VQ' where id=5; -update noar tt set b2='04SAVL7342H9OAPP5JL8T7HLYRXK466O' where id=5; -update noar ti set b2='04SAVL7342H9OAPP5JL8T7HLYRXK466O' where id=5; -update noar tt set v0='PSPEL3T84M' where id=6; -update noar ti set v0='PSPEL3T84M' where id=6; -update noar tt set b0='103DCO' where id=6; -update noar ti set b0='103DCO' where id=6; -update noar tt set v0='FDDAJ607NWDWCDG98X9' where id=6; -update noar ti set v0='FDDAJ607NWDWCDG98X9' where id=6; -update noar tt set b1='MFXBLQDIZR4N39N10NCAN980R' where id=6; -update noar ti set b1='MFXBLQDIZR4N39N10NCAN980R' where id=6; -update noar tt set v0='FH815IXX57ORKB5W23LV' where id=6; -update noar ti set v0='FH815IXX57ORKB5W23LV' where id=6; -update noar tt set b2='AARYDA' where id=6; -update noar ti set b2='AARYDA' where id=6; -update noar tt set v0='EHISY2O856GDXUAEYHABUCGR0Y' where id=7; -update noar ti set v0='EHISY2O856GDXUAEYHABUCGR0Y' where id=7; -update noar tt set b0='27P' where id=7; -update noar ti set b0='27P' where id=7; -update noar tt set v0='795IAK4YYMY13CSCBP1267A' where id=7; -update noar ti set v0='795IAK4YYMY13CSCBP1267A' where id=7; -update noar tt set b1='DIUML2QK2DOG45CX1T' where id=7; -update noar ti set b1='DIUML2QK2DOG45CX1T' where id=7; -update noar tt set v0='IIZZG5BEUX2RS2MAS90RI8EOHCZB57H0' where id=7; -update noar ti set v0='IIZZG5BEUX2RS2MAS90RI8EOHCZB57H0' where id=7; -update noar tt set b2='Y3YFJFGCX5V' where id=7; -update noar ti set b2='Y3YFJFGCX5V' where id=7; -update noar tt set v0='KF' where id=8; -update noar ti set v0='KF' where id=8; -update noar tt set b0='KQ5M39W8F' where id=8; -update noar ti set b0='KQ5M39W8F' where id=8; -update noar tt set v0='V0N7KHYJWYB4BU4ODUWBST' where id=8; -update noar ti set v0='V0N7KHYJWYB4BU4ODUWBST' where id=8; -update noar tt set b1='HH6S58YOR45B1FKE' where id=8; -update noar ti set b1='HH6S58YOR45B1FKE' where id=8; -update noar tt set v0='DX32Z' where id=8; -update noar ti set v0='DX32Z' where id=8; -update noar tt set b2='Z1CW' where id=8; -update noar ti set b2='Z1CW' where id=8; -update noar tt set v0='NUI' where id=9; -update noar ti set v0='NUI' where id=9; -update noar tt set b0='7DVKSBYK2Y3X4SSA389RIX7UGAI7IHZ' where id=9; -update noar ti set b0='7DVKSBYK2Y3X4SSA389RIX7UGAI7IHZ' where id=9; -update noar tt set v0='5V69PYQVGU' where id=9; -update noar ti set v0='5V69PYQVGU' where id=9; -update noar tt set b1='WCCK9IHUAKCB5LRMADZQ4THZ' where id=9; -update noar ti set b1='WCCK9IHUAKCB5LRMADZQ4THZ' where id=9; -update noar tt set v0='2SLJIWZZA0ZGQ87XLSKF' where id=9; -update noar ti set v0='2SLJIWZZA0ZGQ87XLSKF' where id=9; -update noar tt set b2='S7XO' where id=9; -update noar ti set b2='S7XO' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - f0 int not null, - v0 varchar(32) not null, - b0 mediumblob not null, - b1 longblob not null, - b2 blob not null -) engine=tokudb; -insert into tt values (1,0,'','','',''); -insert into tt values (2,0,'','','',''); -insert into tt values (3,0,'','','',''); -insert into tt values (4,0,'','','',''); -insert into tt values (5,0,'','','',''); -insert into tt values (6,0,'','','',''); -insert into tt values (7,0,'','','',''); -insert into tt values (8,0,'','','',''); -insert into tt values (9,0,'','','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='OKW0L2RLLUV4J0' where id=1; -update noar ti set v0='OKW0L2RLLUV4J0' where id=1; -update noar tt set b0='WZVWV1I6NEOXYZ2' where id=1; -update noar ti set b0='WZVWV1I6NEOXYZ2' where id=1; -update noar tt set v0='YIE6F371LZVJ71B5WC30X4MDCFIMOB' where id=1; -update noar ti set v0='YIE6F371LZVJ71B5WC30X4MDCFIMOB' where id=1; -update noar tt set b1='NJGZV33OVII3I532831ODDF' where id=1; -update noar ti set b1='NJGZV33OVII3I532831ODDF' where id=1; -update noar tt set v0='UV6ADP8R40FXLL43K' where id=1; -update noar ti set v0='UV6ADP8R40FXLL43K' where id=1; -update noar tt set b2='5K4KE58' where id=1; -update noar ti set b2='5K4KE58' where id=1; -update noar tt set v0='UX28LZOZYET61QCVM9DKSM8' where id=2; -update noar ti set v0='UX28LZOZYET61QCVM9DKSM8' where id=2; -update noar tt set b0='6O9LV98O9A5WR9I97T9CB0TMTOI' where id=2; -update noar ti set b0='6O9LV98O9A5WR9I97T9CB0TMTOI' where id=2; -update noar tt set v0='GZMJTX14ICF1UQ2' where id=2; -update noar ti set v0='GZMJTX14ICF1UQ2' where id=2; -update noar tt set b1='HGMGRRIIDL1' where id=2; -update noar ti set b1='HGMGRRIIDL1' where id=2; -update noar tt set v0='J257RWCEKH33CJRKMM' where id=2; -update noar ti set v0='J257RWCEKH33CJRKMM' where id=2; -update noar tt set b2='BS00J88MLS50FLCY7QM64BKYSB' where id=2; -update noar ti set b2='BS00J88MLS50FLCY7QM64BKYSB' where id=2; -update noar tt set v0='2FFOKRTAC22D2P8VD8SJC07IXE6' where id=3; -update noar ti set v0='2FFOKRTAC22D2P8VD8SJC07IXE6' where id=3; -update noar tt set b0='ERMLDOFAOF9859L1UA' where id=3; -update noar ti set b0='ERMLDOFAOF9859L1UA' where id=3; -update noar tt set v0='HZZ2XVZH95AASFVQDLBDCU0V5BF' where id=3; -update noar ti set v0='HZZ2XVZH95AASFVQDLBDCU0V5BF' where id=3; -update noar tt set b1='2UX2Z1HRALYTXMWDRTL' where id=3; -update noar ti set b1='2UX2Z1HRALYTXMWDRTL' where id=3; -update noar tt set v0='5TH4ZIMC4' where id=3; -update noar ti set v0='5TH4ZIMC4' where id=3; -update noar tt set b2='S0C' where id=3; -update noar ti set b2='S0C' where id=3; -update noar tt set v0='C' where id=4; -update noar ti set v0='C' where id=4; -update noar tt set b0='RFAJBFIVNZQPXPCVDW4KD8L11ZFJM8JT' where id=4; -update noar ti set b0='RFAJBFIVNZQPXPCVDW4KD8L11ZFJM8JT' where id=4; -update noar tt set v0='S35WKQBIPS6C285DS' where id=4; -update noar ti set v0='S35WKQBIPS6C285DS' where id=4; -update noar tt set b1='NPLJBL' where id=4; -update noar ti set b1='NPLJBL' where id=4; -update noar tt set v0='L72XTV1GL083J6V4JLXKNCQ' where id=4; -update noar ti set v0='L72XTV1GL083J6V4JLXKNCQ' where id=4; -update noar tt set b2='RQ6HURJO651EQBQJMER0X18ZKFZ' where id=4; -update noar ti set b2='RQ6HURJO651EQBQJMER0X18ZKFZ' where id=4; -update noar tt set v0='YJ89YJUS9V3YAHS8HR4GM8FV42S' where id=5; -update noar ti set v0='YJ89YJUS9V3YAHS8HR4GM8FV42S' where id=5; -update noar tt set b0='IM2PAQ' where id=5; -update noar ti set b0='IM2PAQ' where id=5; -update noar tt set v0='PQ5PY2V2VXZW0W19BKSYYN73RQ7O8' where id=5; -update noar ti set v0='PQ5PY2V2VXZW0W19BKSYYN73RQ7O8' where id=5; -update noar tt set b1='JF' where id=5; -update noar ti set b1='JF' where id=5; -update noar tt set v0='6WYR5' where id=5; -update noar ti set v0='6WYR5' where id=5; -update noar tt set b2='8TC34ZRWSY4EFCENV9AR31G9' where id=5; -update noar ti set b2='8TC34ZRWSY4EFCENV9AR31G9' where id=5; -update noar tt set v0='YYYN87E7IEA' where id=6; -update noar ti set v0='YYYN87E7IEA' where id=6; -update noar tt set b0='WM4ZRZZ36JHGCX' where id=6; -update noar ti set b0='WM4ZRZZ36JHGCX' where id=6; -update noar tt set v0='O693ZV71' where id=6; -update noar ti set v0='O693ZV71' where id=6; -update noar tt set b1='FYSY91LT' where id=6; -update noar ti set b1='FYSY91LT' where id=6; -update noar tt set v0='HZPKWU7SJR6TXBL' where id=6; -update noar ti set v0='HZPKWU7SJR6TXBL' where id=6; -update noar tt set b2='T83B2Y7GNAOTUNQX1L9VBHLVE6A' where id=6; -update noar ti set b2='T83B2Y7GNAOTUNQX1L9VBHLVE6A' where id=6; -update noar tt set v0='SKU5RRNBM797W3C' where id=7; -update noar ti set v0='SKU5RRNBM797W3C' where id=7; -update noar tt set b0='OC11PJ' where id=7; -update noar ti set b0='OC11PJ' where id=7; -update noar tt set v0='WFKMMADSY3UWBYQBW22GIC0N' where id=7; -update noar ti set v0='WFKMMADSY3UWBYQBW22GIC0N' where id=7; -update noar tt set b1='UTG9M3059BOI23A2B' where id=7; -update noar ti set b1='UTG9M3059BOI23A2B' where id=7; -update noar tt set v0='UH1392IBLDUDJ18SIBY2DA' where id=7; -update noar ti set v0='UH1392IBLDUDJ18SIBY2DA' where id=7; -update noar tt set b2='K2XFEOSQSU666DHJ9GNUPR7WL' where id=7; -update noar ti set b2='K2XFEOSQSU666DHJ9GNUPR7WL' where id=7; -update noar tt set v0='ACGGISOONHW' where id=8; -update noar ti set v0='ACGGISOONHW' where id=8; -update noar tt set b0='N' where id=8; -update noar ti set b0='N' where id=8; -update noar tt set v0='7Y8N' where id=8; -update noar ti set v0='7Y8N' where id=8; -update noar tt set b1='K4EE1EZOA8ZU54SO6WB' where id=8; -update noar ti set b1='K4EE1EZOA8ZU54SO6WB' where id=8; -update noar tt set v0='N90VUUQ5FVVMM' where id=8; -update noar ti set v0='N90VUUQ5FVVMM' where id=8; -update noar tt set b2='SUBATF9KXZBXSDUEGSU9YBD03G' where id=8; -update noar ti set b2='SUBATF9KXZBXSDUEGSU9YBD03G' where id=8; -update noar tt set v0='XZMVYA' where id=9; -update noar ti set v0='XZMVYA' where id=9; -update noar tt set b0='8YIUC3LXL5FBK90GCZTXVR0HXZ4G' where id=9; -update noar ti set b0='8YIUC3LXL5FBK90GCZTXVR0HXZ4G' where id=9; -update noar tt set v0='D4ZTC1YH7IFF2ASVK2X3OAXVN' where id=9; -update noar ti set v0='D4ZTC1YH7IFF2ASVK2X3OAXVN' where id=9; -update noar tt set b1='VQYK59X17' where id=9; -update noar ti set b1='VQYK59X17' where id=9; -update noar tt set v0='EOEBS8ACEQGF' where id=9; -update noar ti set v0='EOEBS8ACEQGF' where id=9; -update noar tt set b2='UJU8LP0HX4EK45FHU5Y47HIBRIR' where id=9; -update noar ti set b2='UJU8LP0HX4EK45FHU5Y47HIBRIR' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - f0 int not null, - v0 varchar(256) not null, - b0 mediumblob not null, - b1 longblob not null, - b2 blob not null -) engine=tokudb; -insert into tt values (1,0,'','','',''); -insert into tt values (2,0,'','','',''); -insert into tt values (3,0,'','','',''); -insert into tt values (4,0,'','','',''); -insert into tt values (5,0,'','','',''); -insert into tt values (6,0,'','','',''); -insert into tt values (7,0,'','','',''); -insert into tt values (8,0,'','','',''); -insert into tt values (9,0,'','','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='1CLWSO1JIYEZ3JQ' where id=1; -update noar ti set v0='1CLWSO1JIYEZ3JQ' where id=1; -update noar tt set b0='UED7YCNFQ9J97URGLNZ8GY' where id=1; -update noar ti set b0='UED7YCNFQ9J97URGLNZ8GY' where id=1; -update noar tt set v0='L5CFN37PY6H2SFQIG' where id=1; -update noar ti set v0='L5CFN37PY6H2SFQIG' where id=1; -update noar tt set b1='O10G02' where id=1; -update noar ti set b1='O10G02' where id=1; -update noar tt set v0='Y2P1VSIB4Q3DX5XMG7K0OMT1OQX6' where id=1; -update noar ti set v0='Y2P1VSIB4Q3DX5XMG7K0OMT1OQX6' where id=1; -update noar tt set b2='T5R18M9RFX78E1H' where id=1; -update noar ti set b2='T5R18M9RFX78E1H' where id=1; -update noar tt set v0='20XPQRC9FY1CN77EI' where id=2; -update noar ti set v0='20XPQRC9FY1CN77EI' where id=2; -update noar tt set b0='D2V8MDORXXJYBALB2EE9X' where id=2; -update noar ti set b0='D2V8MDORXXJYBALB2EE9X' where id=2; -update noar tt set v0='RW' where id=2; -update noar ti set v0='RW' where id=2; -update noar tt set b1='4X' where id=2; -update noar ti set b1='4X' where id=2; -update noar tt set v0='U6AFHTURD5L1A9JW0R8KQ' where id=2; -update noar ti set v0='U6AFHTURD5L1A9JW0R8KQ' where id=2; -update noar tt set b2='J5FM3P4EPHKOJ5I8CFYHQZ8GXUGEKJH' where id=2; -update noar ti set b2='J5FM3P4EPHKOJ5I8CFYHQZ8GXUGEKJH' where id=2; -update noar tt set v0='SUXE4EX3YDEVHZSOJV2Y2666T' where id=3; -update noar ti set v0='SUXE4EX3YDEVHZSOJV2Y2666T' where id=3; -update noar tt set b0='IP3VS9V0DGEF4NTEPK' where id=3; -update noar ti set b0='IP3VS9V0DGEF4NTEPK' where id=3; -update noar tt set v0='0EOZI64QZSVS6HNBI1QJO8OLWEGG' where id=3; -update noar ti set v0='0EOZI64QZSVS6HNBI1QJO8OLWEGG' where id=3; -update noar tt set b1='T' where id=3; -update noar ti set b1='T' where id=3; -update noar tt set v0='OC62B5JF1UXIPA6YOH4K8TYG' where id=3; -update noar ti set v0='OC62B5JF1UXIPA6YOH4K8TYG' where id=3; -update noar tt set b2='TRY9OF7TXBHWT5X8ZSLB' where id=3; -update noar ti set b2='TRY9OF7TXBHWT5X8ZSLB' where id=3; -update noar tt set v0='GT01QAX4X77DJ3JYQLJT' where id=4; -update noar ti set v0='GT01QAX4X77DJ3JYQLJT' where id=4; -update noar tt set b0='E4FLVAWGSGUJQ83EWT0AG3KRU14' where id=4; -update noar ti set b0='E4FLVAWGSGUJQ83EWT0AG3KRU14' where id=4; -update noar tt set v0='JXOXHX83ZPBEYLK9BXY4W3' where id=4; -update noar ti set v0='JXOXHX83ZPBEYLK9BXY4W3' where id=4; -update noar tt set b1='I543WWJYP9LYHDJ0YG1GBBC5US' where id=4; -update noar ti set b1='I543WWJYP9LYHDJ0YG1GBBC5US' where id=4; -update noar tt set v0='YOVGSLMD' where id=4; -update noar ti set v0='YOVGSLMD' where id=4; -update noar tt set b2='MD0PO' where id=4; -update noar ti set b2='MD0PO' where id=4; -update noar tt set v0='YOGBQBY8Y7CCW2CP96V' where id=5; -update noar ti set v0='YOGBQBY8Y7CCW2CP96V' where id=5; -update noar tt set b0='SO10T7T9RFS7MBOJ7LHDO47MY6DT57' where id=5; -update noar ti set b0='SO10T7T9RFS7MBOJ7LHDO47MY6DT57' where id=5; -update noar tt set v0='4NSPPCQO2MUBO09IH3GT1C' where id=5; -update noar ti set v0='4NSPPCQO2MUBO09IH3GT1C' where id=5; -update noar tt set b1='7CPSCVY5HDY0781INS9OHR4PI9W6I3' where id=5; -update noar ti set b1='7CPSCVY5HDY0781INS9OHR4PI9W6I3' where id=5; -update noar tt set v0='EHQ5ME' where id=5; -update noar ti set v0='EHQ5ME' where id=5; -update noar tt set b2='HAADR3OINKE87BBMV' where id=5; -update noar ti set b2='HAADR3OINKE87BBMV' where id=5; -update noar tt set v0='7YP1M' where id=6; -update noar ti set v0='7YP1M' where id=6; -update noar tt set b0='I3N5L5HF' where id=6; -update noar ti set b0='I3N5L5HF' where id=6; -update noar tt set v0='ZSA' where id=6; -update noar ti set v0='ZSA' where id=6; -update noar tt set b1='HLKTPVJ0XHBTXURRBKSU1PTE7P3' where id=6; -update noar ti set b1='HLKTPVJ0XHBTXURRBKSU1PTE7P3' where id=6; -update noar tt set v0='4IL7E8QHZ' where id=6; -update noar ti set v0='4IL7E8QHZ' where id=6; -update noar tt set b2='ZQVYHM33W72AAZD2VBVO34RE03H1TY' where id=6; -update noar ti set b2='ZQVYHM33W72AAZD2VBVO34RE03H1TY' where id=6; -update noar tt set v0='WJQF' where id=7; -update noar ti set v0='WJQF' where id=7; -update noar tt set b0='TQHT6TLPJ7QTJLICK' where id=7; -update noar ti set b0='TQHT6TLPJ7QTJLICK' where id=7; -update noar tt set v0='D7Z8IED45D6ZZUBO1D6U3A7NNKI' where id=7; -update noar ti set v0='D7Z8IED45D6ZZUBO1D6U3A7NNKI' where id=7; -update noar tt set b1='TPO98N9TSGX6BG51XMCHD' where id=7; -update noar ti set b1='TPO98N9TSGX6BG51XMCHD' where id=7; -update noar tt set v0='R' where id=7; -update noar ti set v0='R' where id=7; -update noar tt set b2='LPC0FNP8EFCVHN5' where id=7; -update noar ti set b2='LPC0FNP8EFCVHN5' where id=7; -update noar tt set v0='6ZFTC9B52IRFLZOSC11' where id=8; -update noar ti set v0='6ZFTC9B52IRFLZOSC11' where id=8; -update noar tt set b0='EOR6NMOHKM9MU5KJY58XY70' where id=8; -update noar ti set b0='EOR6NMOHKM9MU5KJY58XY70' where id=8; -update noar tt set v0='YMH0G1EH89OUW7ZQDPX' where id=8; -update noar ti set v0='YMH0G1EH89OUW7ZQDPX' where id=8; -update noar tt set b1='8IY11L1A' where id=8; -update noar ti set b1='8IY11L1A' where id=8; -update noar tt set v0='KL' where id=8; -update noar ti set v0='KL' where id=8; -update noar tt set b2='AJORWIPC02P6WZXQO3' where id=8; -update noar ti set b2='AJORWIPC02P6WZXQO3' where id=8; -update noar tt set v0='N5OMB3JO5OFAHVKCFPUG65KPE6' where id=9; -update noar ti set v0='N5OMB3JO5OFAHVKCFPUG65KPE6' where id=9; -update noar tt set b0='LTCUO5WBXZTPVGCQ' where id=9; -update noar ti set b0='LTCUO5WBXZTPVGCQ' where id=9; -update noar tt set v0='DHZV01HANF1AQ3HHRTT6F72BI' where id=9; -update noar ti set v0='DHZV01HANF1AQ3HHRTT6F72BI' where id=9; -update noar tt set b1='LQIH6' where id=9; -update noar ti set b1='LQIH6' where id=9; -update noar tt set v0='09YV50MZ3L7E0YIM7RPRC0EMTLGLL' where id=9; -update noar ti set v0='09YV50MZ3L7E0YIM7RPRC0EMTLGLL' where id=9; -update noar tt set b2='7437N5EMEVCKHG3628162YTCEL76SM' where id=9; -update noar ti set b2='7437N5EMEVCKHG3628162YTCEL76SM' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - f0 int null, - v0 varchar(32) null, - b0 mediumblob null, - b1 longblob null, - b2 mediumblob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='6ICAQJG3BD2DG9RDYEB' where id=1; -update noar ti set v0='6ICAQJG3BD2DG9RDYEB' where id=1; -update noar tt set b0='KKRAGG8' where id=1; -update noar ti set b0='KKRAGG8' where id=1; -update noar tt set v0='QVQ65UTTGMJ' where id=1; -update noar ti set v0='QVQ65UTTGMJ' where id=1; -update noar tt set b1='2Q4PUE60PW7OC5EBDPCHD' where id=1; -update noar ti set b1='2Q4PUE60PW7OC5EBDPCHD' where id=1; -update noar tt set v0='0HHQQY4B74RZJL6JOOYBS1' where id=1; -update noar ti set v0='0HHQQY4B74RZJL6JOOYBS1' where id=1; -update noar tt set b2='IFTLM2OI0P' where id=1; -update noar ti set b2='IFTLM2OI0P' where id=1; -update noar tt set v0='N066VUM7SXC833ZY3YZA1YZD' where id=2; -update noar ti set v0='N066VUM7SXC833ZY3YZA1YZD' where id=2; -update noar tt set b0='L0T0IJD5HSI8VFC7' where id=2; -update noar ti set b0='L0T0IJD5HSI8VFC7' where id=2; -update noar tt set v0='T1F2AYXQENO2NS' where id=2; -update noar ti set v0='T1F2AYXQENO2NS' where id=2; -update noar tt set b1='GQBLNM6VL5FMJ4XODE37YG4EJEPS' where id=2; -update noar ti set b1='GQBLNM6VL5FMJ4XODE37YG4EJEPS' where id=2; -update noar tt set v0='GQZ6Q' where id=2; -update noar ti set v0='GQZ6Q' where id=2; -update noar tt set b2='WCYLQAMBGYBWAP4RE5O2AM0PNNJKBS' where id=2; -update noar ti set b2='WCYLQAMBGYBWAP4RE5O2AM0PNNJKBS' where id=2; -update noar tt set v0='7LU0JY4SPVX9SWESBU5T0OOJ' where id=3; -update noar ti set v0='7LU0JY4SPVX9SWESBU5T0OOJ' where id=3; -update noar tt set b0='Y4ASNUCLNXM6' where id=3; -update noar ti set b0='Y4ASNUCLNXM6' where id=3; -update noar tt set v0='3TY5MEEZMYIY8IRS' where id=3; -update noar ti set v0='3TY5MEEZMYIY8IRS' where id=3; -update noar tt set b1='1CEJNNX2IR7BV' where id=3; -update noar ti set b1='1CEJNNX2IR7BV' where id=3; -update noar tt set v0='34GERYM7URA7S5PF0Z3OQ122446V0' where id=3; -update noar ti set v0='34GERYM7URA7S5PF0Z3OQ122446V0' where id=3; -update noar tt set b2='6T22' where id=3; -update noar ti set b2='6T22' where id=3; -update noar tt set v0='0S2W9LCYJKTAGCQE4JMS3Q4' where id=4; -update noar ti set v0='0S2W9LCYJKTAGCQE4JMS3Q4' where id=4; -update noar tt set b0='4O8X7BZ3HSN2D97C58FMC41I5DL2Z73B' where id=4; -update noar ti set b0='4O8X7BZ3HSN2D97C58FMC41I5DL2Z73B' where id=4; -update noar tt set v0='WZLJBWT0DUJOHEIYKI19FIANLZEL' where id=4; -update noar ti set v0='WZLJBWT0DUJOHEIYKI19FIANLZEL' where id=4; -update noar tt set b1='BTQZ4VSKD5BB5VY8Y71SX' where id=4; -update noar ti set b1='BTQZ4VSKD5BB5VY8Y71SX' where id=4; -update noar tt set v0='006HJG6KAK5I0D1YEY5XLS1J9K2U7K' where id=4; -update noar ti set v0='006HJG6KAK5I0D1YEY5XLS1J9K2U7K' where id=4; -update noar tt set b2='H1H8JCHNR0U2X275YCXOAQ6AGCK39' where id=4; -update noar ti set b2='H1H8JCHNR0U2X275YCXOAQ6AGCK39' where id=4; -update noar tt set v0='GOP2IOEVXA13W6OAO0Y0O8AVI0P' where id=5; -update noar ti set v0='GOP2IOEVXA13W6OAO0Y0O8AVI0P' where id=5; -update noar tt set b0='LLB3DPHB' where id=5; -update noar ti set b0='LLB3DPHB' where id=5; -update noar tt set v0='FUEAOGMQQASZ0H62' where id=5; -update noar ti set v0='FUEAOGMQQASZ0H62' where id=5; -update noar tt set b1='47KCT0' where id=5; -update noar ti set b1='47KCT0' where id=5; -update noar tt set v0='F' where id=5; -update noar ti set v0='F' where id=5; -update noar tt set b2='USWXXMRSL4WM09S' where id=5; -update noar ti set b2='USWXXMRSL4WM09S' where id=5; -update noar tt set v0='XGA2' where id=6; -update noar ti set v0='XGA2' where id=6; -update noar tt set b0='CXLYUT6XP86UQD' where id=6; -update noar ti set b0='CXLYUT6XP86UQD' where id=6; -update noar tt set v0='EZPO76IXA5EWPR' where id=6; -update noar ti set v0='EZPO76IXA5EWPR' where id=6; -update noar tt set b1='HR1R6X5G28' where id=6; -update noar ti set b1='HR1R6X5G28' where id=6; -update noar tt set v0='85M2Q3Q7NJ0W' where id=6; -update noar ti set v0='85M2Q3Q7NJ0W' where id=6; -update noar tt set b2='UFT4JO6DZKMI8T95HP0TFA' where id=6; -update noar ti set b2='UFT4JO6DZKMI8T95HP0TFA' where id=6; -update noar tt set v0='8ZOP5XVK2NUE29TF7MCJ' where id=7; -update noar ti set v0='8ZOP5XVK2NUE29TF7MCJ' where id=7; -update noar tt set b0='FLF4XLQARQC418NXL' where id=7; -update noar ti set b0='FLF4XLQARQC418NXL' where id=7; -update noar tt set v0='XG0451Q9TG6SOO5V2' where id=7; -update noar ti set v0='XG0451Q9TG6SOO5V2' where id=7; -update noar tt set b1='Y3030NJP3SIFAXX3MNJUUPWCT' where id=7; -update noar ti set b1='Y3030NJP3SIFAXX3MNJUUPWCT' where id=7; -update noar tt set v0='HLWUPQ4KPPTRRFXGXYU6' where id=7; -update noar ti set v0='HLWUPQ4KPPTRRFXGXYU6' where id=7; -update noar tt set b2='TN12L3Z50P3WOTRJ39G8SQGFQ3F0RJWB' where id=7; -update noar ti set b2='TN12L3Z50P3WOTRJ39G8SQGFQ3F0RJWB' where id=7; -update noar tt set v0='7ZN5S' where id=8; -update noar ti set v0='7ZN5S' where id=8; -update noar tt set b0='AI02OF' where id=8; -update noar ti set b0='AI02OF' where id=8; -update noar tt set v0='IV2O71UNNLXEUFD2GS5VM82' where id=8; -update noar ti set v0='IV2O71UNNLXEUFD2GS5VM82' where id=8; -update noar tt set b1='OLPH4T4CR8B' where id=8; -update noar ti set b1='OLPH4T4CR8B' where id=8; -update noar tt set v0='8ZJO671AE0SR850F3H7X' where id=8; -update noar ti set v0='8ZJO671AE0SR850F3H7X' where id=8; -update noar tt set b2='IXV8Z79' where id=8; -update noar ti set b2='IXV8Z79' where id=8; -update noar tt set v0='TPISPCSM75XLQ5GE75X' where id=9; -update noar ti set v0='TPISPCSM75XLQ5GE75X' where id=9; -update noar tt set b0='4OGY4C4AL' where id=9; -update noar ti set b0='4OGY4C4AL' where id=9; -update noar tt set v0='JFBQJODX7F7RY0OCRTMXRLPG25O6815' where id=9; -update noar ti set v0='JFBQJODX7F7RY0OCRTMXRLPG25O6815' where id=9; -update noar tt set b1='GZSA0UZGV2PBFRRKV6116Y90Z3Q1W' where id=9; -update noar ti set b1='GZSA0UZGV2PBFRRKV6116Y90Z3Q1W' where id=9; -update noar tt set v0='AB7HT2DTGYSUYWRVUBMLN' where id=9; -update noar ti set v0='AB7HT2DTGYSUYWRVUBMLN' where id=9; -update noar tt set b2='TKD8M35DT' where id=9; -update noar ti set b2='TKD8M35DT' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - f0 int null, - v0 varchar(256) null, - b0 mediumblob null, - b1 longblob null, - b2 mediumblob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='HL6X65Q8MWKC01' where id=1; -update noar ti set v0='HL6X65Q8MWKC01' where id=1; -update noar tt set b0='QIF7Y4TCS9HAJNLIRM1H9U9EOZ4WN0H' where id=1; -update noar ti set b0='QIF7Y4TCS9HAJNLIRM1H9U9EOZ4WN0H' where id=1; -update noar tt set v0='UN1D2PEQKVKFVT' where id=1; -update noar ti set v0='UN1D2PEQKVKFVT' where id=1; -update noar tt set b1='F9FG66TVH1R6SD57' where id=1; -update noar ti set b1='F9FG66TVH1R6SD57' where id=1; -update noar tt set v0='N6HJHC86S2TUANP1GQNDOX95' where id=1; -update noar ti set v0='N6HJHC86S2TUANP1GQNDOX95' where id=1; -update noar tt set b2='2ZMVL7S1BCVS0K9KAMYGRSO' where id=1; -update noar ti set b2='2ZMVL7S1BCVS0K9KAMYGRSO' where id=1; -update noar tt set v0='93NJ997KQOK0O1N20ZDLHAWL2X60BZGD' where id=2; -update noar ti set v0='93NJ997KQOK0O1N20ZDLHAWL2X60BZGD' where id=2; -update noar tt set b0='P06B8NT660THG2C48M5T2YEK8NJBZ' where id=2; -update noar ti set b0='P06B8NT660THG2C48M5T2YEK8NJBZ' where id=2; -update noar tt set v0='VPK5TRC9CR6W6W9KONU23ZHCR' where id=2; -update noar ti set v0='VPK5TRC9CR6W6W9KONU23ZHCR' where id=2; -update noar tt set b1='PIFGCEU5D2WVWYTS' where id=2; -update noar ti set b1='PIFGCEU5D2WVWYTS' where id=2; -update noar tt set v0='AH090T1NN6QJA' where id=2; -update noar ti set v0='AH090T1NN6QJA' where id=2; -update noar tt set b2='KH8VKK08YLF9SZZE' where id=2; -update noar ti set b2='KH8VKK08YLF9SZZE' where id=2; -update noar tt set v0='NUFISPR718CXL36K01QR2E' where id=3; -update noar ti set v0='NUFISPR718CXL36K01QR2E' where id=3; -update noar tt set b0='CMOEN' where id=3; -update noar ti set b0='CMOEN' where id=3; -update noar tt set v0='QHT5O8PJZXQ2Y4P5W0W' where id=3; -update noar ti set v0='QHT5O8PJZXQ2Y4P5W0W' where id=3; -update noar tt set b1='XDNBYZG47OWS4RQ4JDSYIVMMFO' where id=3; -update noar ti set b1='XDNBYZG47OWS4RQ4JDSYIVMMFO' where id=3; -update noar tt set v0='6QA2R430FYJVX2Q0F2WOMLKU' where id=3; -update noar ti set v0='6QA2R430FYJVX2Q0F2WOMLKU' where id=3; -update noar tt set b2='E0BYPZPA410BKF80WVMMNJQ' where id=3; -update noar ti set b2='E0BYPZPA410BKF80WVMMNJQ' where id=3; -update noar tt set v0='HKEB8U1JPX10XPBX' where id=4; -update noar ti set v0='HKEB8U1JPX10XPBX' where id=4; -update noar tt set b0='0UX1GQBFWAJF9CF95V3D64OKFXPX8' where id=4; -update noar ti set b0='0UX1GQBFWAJF9CF95V3D64OKFXPX8' where id=4; -update noar tt set v0='EKRQUHR6OZRJB0U7E9' where id=4; -update noar ti set v0='EKRQUHR6OZRJB0U7E9' where id=4; -update noar tt set b1='FQPG4O8NED7ZWPFR8R58GQDEHOR4E' where id=4; -update noar ti set b1='FQPG4O8NED7ZWPFR8R58GQDEHOR4E' where id=4; -update noar tt set v0='IXRT3GZ7G66DID5U52BDYUJ1VY3H' where id=4; -update noar ti set v0='IXRT3GZ7G66DID5U52BDYUJ1VY3H' where id=4; -update noar tt set b2='80HWYLXFNG9607NOU3LB9MXA5' where id=4; -update noar ti set b2='80HWYLXFNG9607NOU3LB9MXA5' where id=4; -update noar tt set v0='6HFGFL1TJUX0' where id=5; -update noar ti set v0='6HFGFL1TJUX0' where id=5; -update noar tt set b0='B12D0JCF4K1YEQBA5WN82S8LG0C' where id=5; -update noar ti set b0='B12D0JCF4K1YEQBA5WN82S8LG0C' where id=5; -update noar tt set v0='JHYMC6XM1RND9QBW1YJX6ST6IAVZJW' where id=5; -update noar ti set v0='JHYMC6XM1RND9QBW1YJX6ST6IAVZJW' where id=5; -update noar tt set b1='VTQ1QU' where id=5; -update noar ti set b1='VTQ1QU' where id=5; -update noar tt set v0='635UBV8GAGK9HSU86GWO56IRM0U3Q' where id=5; -update noar ti set v0='635UBV8GAGK9HSU86GWO56IRM0U3Q' where id=5; -update noar tt set b2='0K' where id=5; -update noar ti set b2='0K' where id=5; -update noar tt set v0='FU3Y7X5ES8UAFGSTG49WUK9GELEI' where id=6; -update noar ti set v0='FU3Y7X5ES8UAFGSTG49WUK9GELEI' where id=6; -update noar tt set b0='W2XZ74MD769OWJZ8WRQ35AB8U16JL' where id=6; -update noar ti set b0='W2XZ74MD769OWJZ8WRQ35AB8U16JL' where id=6; -update noar tt set v0='X04MKKS1H6UTHC3SCDGK8UZCXGOU' where id=6; -update noar ti set v0='X04MKKS1H6UTHC3SCDGK8UZCXGOU' where id=6; -update noar tt set b1='5Z8NQLPF0BG75HG5X9O8W82CUC42XYM' where id=6; -update noar ti set b1='5Z8NQLPF0BG75HG5X9O8W82CUC42XYM' where id=6; -update noar tt set v0='K88PEOOTJRS2FKHCP3A87R' where id=6; -update noar ti set v0='K88PEOOTJRS2FKHCP3A87R' where id=6; -update noar tt set b2='YC9CFD' where id=6; -update noar ti set b2='YC9CFD' where id=6; -update noar tt set v0='GDXON6P' where id=7; -update noar ti set v0='GDXON6P' where id=7; -update noar tt set b0='GY6F89HPAZZ1BQ4IY5XU8GAYVL8UDT5' where id=7; -update noar ti set b0='GY6F89HPAZZ1BQ4IY5XU8GAYVL8UDT5' where id=7; -update noar tt set v0='KXUCUE9KFOF27M0B6YFLUN36DH5C6BRB' where id=7; -update noar ti set v0='KXUCUE9KFOF27M0B6YFLUN36DH5C6BRB' where id=7; -update noar tt set b1='8X8B3YNGA35OQ4389GHAWF7Q8' where id=7; -update noar ti set b1='8X8B3YNGA35OQ4389GHAWF7Q8' where id=7; -update noar tt set v0='C2WRU00MGLWUR8BDVY984G39BZH1ZR' where id=7; -update noar ti set v0='C2WRU00MGLWUR8BDVY984G39BZH1ZR' where id=7; -update noar tt set b2='PVZ4AKJ353UB64VE3OSDYPQ3KT8QV' where id=7; -update noar ti set b2='PVZ4AKJ353UB64VE3OSDYPQ3KT8QV' where id=7; -update noar tt set v0='SNR9FVT0Y4P5' where id=8; -update noar ti set v0='SNR9FVT0Y4P5' where id=8; -update noar tt set b0='2DYBASI0QWSF' where id=8; -update noar ti set b0='2DYBASI0QWSF' where id=8; -update noar tt set v0='TPBK10P51C' where id=8; -update noar ti set v0='TPBK10P51C' where id=8; -update noar tt set b1='LNDR52KIKO' where id=8; -update noar ti set b1='LNDR52KIKO' where id=8; -update noar tt set v0='62ZAK0A5AQRO6D1HU948H11IR9L0' where id=8; -update noar ti set v0='62ZAK0A5AQRO6D1HU948H11IR9L0' where id=8; -update noar tt set b2='FGIAKLOB7IW4O2FVAA5' where id=8; -update noar ti set b2='FGIAKLOB7IW4O2FVAA5' where id=8; -update noar tt set v0='B4' where id=9; -update noar ti set v0='B4' where id=9; -update noar tt set b0='QYPEPO8Q6EI' where id=9; -update noar ti set b0='QYPEPO8Q6EI' where id=9; -update noar tt set v0='8YGCDOB6RDZ51P7PJ' where id=9; -update noar ti set v0='8YGCDOB6RDZ51P7PJ' where id=9; -update noar tt set b1='NEBZTEUWFI' where id=9; -update noar ti set b1='NEBZTEUWFI' where id=9; -update noar tt set v0='2TUNBPN' where id=9; -update noar ti set v0='2TUNBPN' where id=9; -update noar tt set b2='8PV615PLHISK770CB4' where id=9; -update noar ti set b2='8PV615PLHISK770CB4' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - f0 int not null, - v0 varchar(32) not null, - b0 mediumblob not null, - b1 longblob not null, - b2 mediumblob not null -) engine=tokudb; -insert into tt values (1,0,'','','',''); -insert into tt values (2,0,'','','',''); -insert into tt values (3,0,'','','',''); -insert into tt values (4,0,'','','',''); -insert into tt values (5,0,'','','',''); -insert into tt values (6,0,'','','',''); -insert into tt values (7,0,'','','',''); -insert into tt values (8,0,'','','',''); -insert into tt values (9,0,'','','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='UP8EUHCYNQW2QQ' where id=1; -update noar ti set v0='UP8EUHCYNQW2QQ' where id=1; -update noar tt set b0='NS9DV' where id=1; -update noar ti set b0='NS9DV' where id=1; -update noar tt set v0='FT2W4T90Y2AOM3Q0Q6KSLXR2' where id=1; -update noar ti set v0='FT2W4T90Y2AOM3Q0Q6KSLXR2' where id=1; -update noar tt set b1='V1CK5H92V93W1KZLY6PWVNSAL14M2I' where id=1; -update noar ti set b1='V1CK5H92V93W1KZLY6PWVNSAL14M2I' where id=1; -update noar tt set v0='XFIZ2HYZSYJYAS0F' where id=1; -update noar ti set v0='XFIZ2HYZSYJYAS0F' where id=1; -update noar tt set b2='MXF72G1QK99R' where id=1; -update noar ti set b2='MXF72G1QK99R' where id=1; -update noar tt set v0='STEBGQH1RQ8C5N1IP9C03' where id=2; -update noar ti set v0='STEBGQH1RQ8C5N1IP9C03' where id=2; -update noar tt set b0='SW0PKDH16OSWHSXOGDI0' where id=2; -update noar ti set b0='SW0PKDH16OSWHSXOGDI0' where id=2; -update noar tt set v0='3F5VJZEDF68' where id=2; -update noar ti set v0='3F5VJZEDF68' where id=2; -update noar tt set b1='CU8OL2KG' where id=2; -update noar ti set b1='CU8OL2KG' where id=2; -update noar tt set v0='L3NWK3TOG7QK9F7ZII9PSECJA1T' where id=2; -update noar ti set v0='L3NWK3TOG7QK9F7ZII9PSECJA1T' where id=2; -update noar tt set b2='YIVKR1LF28FECBNQD0' where id=2; -update noar ti set b2='YIVKR1LF28FECBNQD0' where id=2; -update noar tt set v0='7V4ER' where id=3; -update noar ti set v0='7V4ER' where id=3; -update noar tt set b0='JIGR0F2BTT3Y2RG8320' where id=3; -update noar ti set b0='JIGR0F2BTT3Y2RG8320' where id=3; -update noar tt set v0='PABTE86OA32BMMM' where id=3; -update noar ti set v0='PABTE86OA32BMMM' where id=3; -update noar tt set b1='13S2MP40EV0H0CHAQYU64NBEE' where id=3; -update noar ti set b1='13S2MP40EV0H0CHAQYU64NBEE' where id=3; -update noar tt set v0='LV' where id=3; -update noar ti set v0='LV' where id=3; -update noar tt set b2='WQBU1L11HJYBABJNIWBR8I2BAZTAF' where id=3; -update noar ti set b2='WQBU1L11HJYBABJNIWBR8I2BAZTAF' where id=3; -update noar tt set v0='7I' where id=4; -update noar ti set v0='7I' where id=4; -update noar tt set b0='Z' where id=4; -update noar ti set b0='Z' where id=4; -update noar tt set v0='IDY9XZE5P08EON0MXW1W54' where id=4; -update noar ti set v0='IDY9XZE5P08EON0MXW1W54' where id=4; -update noar tt set b1='E36C050AKNVQE2JHULQEVD4I8' where id=4; -update noar ti set b1='E36C050AKNVQE2JHULQEVD4I8' where id=4; -update noar tt set v0='K1F8CGDB603UCUQ' where id=4; -update noar ti set v0='K1F8CGDB603UCUQ' where id=4; -update noar tt set b2='C9AZGNR42TJ7RAWZOJPV869T' where id=4; -update noar ti set b2='C9AZGNR42TJ7RAWZOJPV869T' where id=4; -update noar tt set v0='AWDXCF' where id=5; -update noar ti set v0='AWDXCF' where id=5; -update noar tt set b0='JPVJIQYQMSN7SE10GFL7QY3SXIN76GE1' where id=5; -update noar ti set b0='JPVJIQYQMSN7SE10GFL7QY3SXIN76GE1' where id=5; -update noar tt set v0='VK2EK4L9S' where id=5; -update noar ti set v0='VK2EK4L9S' where id=5; -update noar tt set b1='W7QUW4IG0UEZR5WC' where id=5; -update noar ti set b1='W7QUW4IG0UEZR5WC' where id=5; -update noar tt set v0='FSXTN4YVUW' where id=5; -update noar ti set v0='FSXTN4YVUW' where id=5; -update noar tt set b2='H' where id=5; -update noar ti set b2='H' where id=5; -update noar tt set v0='E6OSJ04WE7A9FNYDR1AIAY' where id=6; -update noar ti set v0='E6OSJ04WE7A9FNYDR1AIAY' where id=6; -update noar tt set b0='H2IO' where id=6; -update noar ti set b0='H2IO' where id=6; -update noar tt set v0='I3N7DAYDEQ5G6QWE8L33TY77588LFZ' where id=6; -update noar ti set v0='I3N7DAYDEQ5G6QWE8L33TY77588LFZ' where id=6; -update noar tt set b1='FLHZ1U0N0CKEKGARXUBB86IOTQV4SUY' where id=6; -update noar ti set b1='FLHZ1U0N0CKEKGARXUBB86IOTQV4SUY' where id=6; -update noar tt set v0='EKMSWA13UQYHCEUBZ33IQD9QN' where id=6; -update noar ti set v0='EKMSWA13UQYHCEUBZ33IQD9QN' where id=6; -update noar tt set b2='HH82LP' where id=6; -update noar ti set b2='HH82LP' where id=6; -update noar tt set v0='ZQOXCC8AO3Z1XG3MH4MWFJU9AQV195' where id=7; -update noar ti set v0='ZQOXCC8AO3Z1XG3MH4MWFJU9AQV195' where id=7; -update noar tt set b0='TMPEJVA589A7L9KPDDIO' where id=7; -update noar ti set b0='TMPEJVA589A7L9KPDDIO' where id=7; -update noar tt set v0='MWN053JH6WESLL43MQCO5Y79' where id=7; -update noar ti set v0='MWN053JH6WESLL43MQCO5Y79' where id=7; -update noar tt set b1='VO7FN' where id=7; -update noar ti set b1='VO7FN' where id=7; -update noar tt set v0='6XA7H8MZ2Y2IYU273770LTPEO' where id=7; -update noar ti set v0='6XA7H8MZ2Y2IYU273770LTPEO' where id=7; -update noar tt set b2='TDOAX0JYJ7SPYTZD703FFMIZRZ' where id=7; -update noar ti set b2='TDOAX0JYJ7SPYTZD703FFMIZRZ' where id=7; -update noar tt set v0='13BMKR3K3' where id=8; -update noar ti set v0='13BMKR3K3' where id=8; -update noar tt set b0='GUY2PPNARATT9FC7J7RG8BN8PQDZ2W' where id=8; -update noar ti set b0='GUY2PPNARATT9FC7J7RG8BN8PQDZ2W' where id=8; -update noar tt set v0='7KTKO3YH0Z73GZUWDCI' where id=8; -update noar ti set v0='7KTKO3YH0Z73GZUWDCI' where id=8; -update noar tt set b1='L2MB68QRGTK2YIB' where id=8; -update noar ti set b1='L2MB68QRGTK2YIB' where id=8; -update noar tt set v0='R' where id=8; -update noar ti set v0='R' where id=8; -update noar tt set b2='OLUWE5NMPGARAHC9W7UGJWKSW0' where id=8; -update noar ti set b2='OLUWE5NMPGARAHC9W7UGJWKSW0' where id=8; -update noar tt set v0='4J6R9SFFK2JLSR57XOZZC1M5D5LLNW37' where id=9; -update noar ti set v0='4J6R9SFFK2JLSR57XOZZC1M5D5LLNW37' where id=9; -update noar tt set b0='XU19W07I9ZIT2LBCX' where id=9; -update noar ti set b0='XU19W07I9ZIT2LBCX' where id=9; -update noar tt set v0='5UDERDQVLB' where id=9; -update noar ti set v0='5UDERDQVLB' where id=9; -update noar tt set b1='LHYA95WGSUFQTKO2Y4JUQ8B' where id=9; -update noar ti set b1='LHYA95WGSUFQTKO2Y4JUQ8B' where id=9; -update noar tt set v0='WUXLJKIMXT758FZQ9XAJLHHK8BHY' where id=9; -update noar ti set v0='WUXLJKIMXT758FZQ9XAJLHHK8BHY' where id=9; -update noar tt set b2='S3XY8TTBZOJDEQ65ZIRXTA7DXYX' where id=9; -update noar ti set b2='S3XY8TTBZOJDEQ65ZIRXTA7DXYX' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - f0 int not null, - v0 varchar(256) not null, - b0 mediumblob not null, - b1 longblob not null, - b2 mediumblob not null -) engine=tokudb; -insert into tt values (1,0,'','','',''); -insert into tt values (2,0,'','','',''); -insert into tt values (3,0,'','','',''); -insert into tt values (4,0,'','','',''); -insert into tt values (5,0,'','','',''); -insert into tt values (6,0,'','','',''); -insert into tt values (7,0,'','','',''); -insert into tt values (8,0,'','','',''); -insert into tt values (9,0,'','','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='2ILZ' where id=1; -update noar ti set v0='2ILZ' where id=1; -update noar tt set b0='EC2DB40PJPXYCM' where id=1; -update noar ti set b0='EC2DB40PJPXYCM' where id=1; -update noar tt set v0='Q56QK20ZVFFTYIRHT3HRO5LHXX2A' where id=1; -update noar ti set v0='Q56QK20ZVFFTYIRHT3HRO5LHXX2A' where id=1; -update noar tt set b1='35Y4YJ7Q6APBMA3Y6' where id=1; -update noar ti set b1='35Y4YJ7Q6APBMA3Y6' where id=1; -update noar tt set v0='EZ2RY65IWA2AX0DIT0W7UVO1U7FKGDJO' where id=1; -update noar ti set v0='EZ2RY65IWA2AX0DIT0W7UVO1U7FKGDJO' where id=1; -update noar tt set b2='7H' where id=1; -update noar ti set b2='7H' where id=1; -update noar tt set v0='0RAW4EE86K22E5HST5EE7G8' where id=2; -update noar ti set v0='0RAW4EE86K22E5HST5EE7G8' where id=2; -update noar tt set b0='UO49FZ0A16ZILH790RTWQQPK' where id=2; -update noar ti set b0='UO49FZ0A16ZILH790RTWQQPK' where id=2; -update noar tt set v0='JKU23TO8EYKZ' where id=2; -update noar ti set v0='JKU23TO8EYKZ' where id=2; -update noar tt set b1='2H1DMWZSW' where id=2; -update noar ti set b1='2H1DMWZSW' where id=2; -update noar tt set v0='RRMYN3PW74FL7GHYAFZXNEOT' where id=2; -update noar ti set v0='RRMYN3PW74FL7GHYAFZXNEOT' where id=2; -update noar tt set b2='W3NOD0QR75HDT8H3RU7K4T5J6A34O6D' where id=2; -update noar ti set b2='W3NOD0QR75HDT8H3RU7K4T5J6A34O6D' where id=2; -update noar tt set v0='3GJWTO5Z' where id=3; -update noar ti set v0='3GJWTO5Z' where id=3; -update noar tt set b0='CN8QL0OXPCMDXNDRNH' where id=3; -update noar ti set b0='CN8QL0OXPCMDXNDRNH' where id=3; -update noar tt set v0='I5897KCNWE' where id=3; -update noar ti set v0='I5897KCNWE' where id=3; -update noar tt set b1='L8TG6653YGZXH' where id=3; -update noar ti set b1='L8TG6653YGZXH' where id=3; -update noar tt set v0='DSSIQV5QU' where id=3; -update noar ti set v0='DSSIQV5QU' where id=3; -update noar tt set b2='WZG4ZDR140F652LJADP' where id=3; -update noar ti set b2='WZG4ZDR140F652LJADP' where id=3; -update noar tt set v0='DE1JB' where id=4; -update noar ti set v0='DE1JB' where id=4; -update noar tt set b0='TMFQH787LU6MCMUFKCXW3K3U9AX8HC' where id=4; -update noar ti set b0='TMFQH787LU6MCMUFKCXW3K3U9AX8HC' where id=4; -update noar tt set v0='W5BI4AVIQV' where id=4; -update noar ti set v0='W5BI4AVIQV' where id=4; -update noar tt set b1='5T1PGF2CAEU799SHQ' where id=4; -update noar ti set b1='5T1PGF2CAEU799SHQ' where id=4; -update noar tt set v0='E18INA41CSOVI6X0YES' where id=4; -update noar ti set v0='E18INA41CSOVI6X0YES' where id=4; -update noar tt set b2='S1SDYU28WMEB' where id=4; -update noar ti set b2='S1SDYU28WMEB' where id=4; -update noar tt set v0='5FMBX4JJH7BDXXTY' where id=5; -update noar ti set v0='5FMBX4JJH7BDXXTY' where id=5; -update noar tt set b0='U21SWD95UC5D6WK' where id=5; -update noar ti set b0='U21SWD95UC5D6WK' where id=5; -update noar tt set v0='KOA4YF0DIORPY9PH' where id=5; -update noar ti set v0='KOA4YF0DIORPY9PH' where id=5; -update noar tt set b1='G4ZDF1H8W8JKE947F55CDJJSIW' where id=5; -update noar ti set b1='G4ZDF1H8W8JKE947F55CDJJSIW' where id=5; -update noar tt set v0='IA7VJO92RM5PR' where id=5; -update noar ti set v0='IA7VJO92RM5PR' where id=5; -update noar tt set b2='51HGLPS16LBXFZZEJJNAVF6SGQA7ZLB' where id=5; -update noar ti set b2='51HGLPS16LBXFZZEJJNAVF6SGQA7ZLB' where id=5; -update noar tt set v0='OWGPFRKXO85CT3YUE8WC4WN87JOFJ6G1' where id=6; -update noar ti set v0='OWGPFRKXO85CT3YUE8WC4WN87JOFJ6G1' where id=6; -update noar tt set b0='EP6TG4WLY63QOLPXRP4V4OOU2' where id=6; -update noar ti set b0='EP6TG4WLY63QOLPXRP4V4OOU2' where id=6; -update noar tt set v0='E3PFBB4JE8JJ0XW' where id=6; -update noar ti set v0='E3PFBB4JE8JJ0XW' where id=6; -update noar tt set b1='SUBZ6CDLFTS2GM4A753VA' where id=6; -update noar ti set b1='SUBZ6CDLFTS2GM4A753VA' where id=6; -update noar tt set v0='G1XWSSEZGGS0SLY1BISMJ' where id=6; -update noar ti set v0='G1XWSSEZGGS0SLY1BISMJ' where id=6; -update noar tt set b2='UA1FLG0XFXP69QUM' where id=6; -update noar ti set b2='UA1FLG0XFXP69QUM' where id=6; -update noar tt set v0='CD6VOUA0SYMEZ' where id=7; -update noar ti set v0='CD6VOUA0SYMEZ' where id=7; -update noar tt set b0='MGJ2H5AF3MRLD94' where id=7; -update noar ti set b0='MGJ2H5AF3MRLD94' where id=7; -update noar tt set v0='MHUKEY22WIM1U3AM9VP9D4ZU9MAL0O' where id=7; -update noar ti set v0='MHUKEY22WIM1U3AM9VP9D4ZU9MAL0O' where id=7; -update noar tt set b1='Q' where id=7; -update noar ti set b1='Q' where id=7; -update noar tt set v0='RSRFRYHC3NQ23YY1T9Y54' where id=7; -update noar ti set v0='RSRFRYHC3NQ23YY1T9Y54' where id=7; -update noar tt set b2='29UIT2ODNFU0F3IJFJ1Z2K3CTKVYMEM1' where id=7; -update noar ti set b2='29UIT2ODNFU0F3IJFJ1Z2K3CTKVYMEM1' where id=7; -update noar tt set v0='SOR8KWP4L8R00Q7Z3H72AO2' where id=8; -update noar ti set v0='SOR8KWP4L8R00Q7Z3H72AO2' where id=8; -update noar tt set b0='LHAMU6Q0JNQ18EIEOL0MZ8E5' where id=8; -update noar ti set b0='LHAMU6Q0JNQ18EIEOL0MZ8E5' where id=8; -update noar tt set v0='J8Q36JWZULIGIMDEFL0CGJHCMA' where id=8; -update noar ti set v0='J8Q36JWZULIGIMDEFL0CGJHCMA' where id=8; -update noar tt set b1='MLO7AU04JXN8BW4094EVGA25YRQA' where id=8; -update noar ti set b1='MLO7AU04JXN8BW4094EVGA25YRQA' where id=8; -update noar tt set v0='NB' where id=8; -update noar ti set v0='NB' where id=8; -update noar tt set b2='1JLDKBEEYE3L' where id=8; -update noar ti set b2='1JLDKBEEYE3L' where id=8; -update noar tt set v0='TS89N' where id=9; -update noar ti set v0='TS89N' where id=9; -update noar tt set b0='P0VGLFCBH4FW92DZS6H6YZ35M' where id=9; -update noar ti set b0='P0VGLFCBH4FW92DZS6H6YZ35M' where id=9; -update noar tt set v0='H9WMGS' where id=9; -update noar ti set v0='H9WMGS' where id=9; -update noar tt set b1='4GWF7K' where id=9; -update noar ti set b1='4GWF7K' where id=9; -update noar tt set v0='YP8DUVFOGGBWO6P7G12I7TXXT' where id=9; -update noar ti set v0='YP8DUVFOGGBWO6P7G12I7TXXT' where id=9; -update noar tt set b2='YUDEX6B1NMV8GS0QEWDNC' where id=9; -update noar ti set b2='YUDEX6B1NMV8GS0QEWDNC' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - f0 int null, - v0 varchar(32) null, - b0 mediumblob null, - b1 longblob null, - b2 longblob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='AW2OD3GD' where id=1; -update noar ti set v0='AW2OD3GD' where id=1; -update noar tt set b0='LD362B0PY4GL3FP1N2K1ZQO' where id=1; -update noar ti set b0='LD362B0PY4GL3FP1N2K1ZQO' where id=1; -update noar tt set v0='NJUSK' where id=1; -update noar ti set v0='NJUSK' where id=1; -update noar tt set b1='F' where id=1; -update noar ti set b1='F' where id=1; -update noar tt set v0='BJJ9M6P7QKBIQVRWX4HZ2DOBN85CYUX' where id=1; -update noar ti set v0='BJJ9M6P7QKBIQVRWX4HZ2DOBN85CYUX' where id=1; -update noar tt set b2='TYHABQSNJ1K22M09URS41D' where id=1; -update noar ti set b2='TYHABQSNJ1K22M09URS41D' where id=1; -update noar tt set v0='QRK51RMVEC75W2VLPKO8BEAJ2F5Y' where id=2; -update noar ti set v0='QRK51RMVEC75W2VLPKO8BEAJ2F5Y' where id=2; -update noar tt set b0='JPET4IBA84O284OPWW7T' where id=2; -update noar ti set b0='JPET4IBA84O284OPWW7T' where id=2; -update noar tt set v0='XNEREF12QCG6OABO8JDTC39' where id=2; -update noar ti set v0='XNEREF12QCG6OABO8JDTC39' where id=2; -update noar tt set b1='XP1G1POT0LU1PH460E3YCX00KEL2ZYGH' where id=2; -update noar ti set b1='XP1G1POT0LU1PH460E3YCX00KEL2ZYGH' where id=2; -update noar tt set v0='2ECYTOWRO36RH5J2' where id=2; -update noar ti set v0='2ECYTOWRO36RH5J2' where id=2; -update noar tt set b2='28E5SE' where id=2; -update noar ti set b2='28E5SE' where id=2; -update noar tt set v0='14272XVETGR3VA1Z0V3A4PFJRU' where id=3; -update noar ti set v0='14272XVETGR3VA1Z0V3A4PFJRU' where id=3; -update noar tt set b0='31ZJQR5435MQL6KOUNUVGDFFK' where id=3; -update noar ti set b0='31ZJQR5435MQL6KOUNUVGDFFK' where id=3; -update noar tt set v0='WTF4054OEH982JDO00' where id=3; -update noar ti set v0='WTF4054OEH982JDO00' where id=3; -update noar tt set b1='ZSG682327IWQ64PEDQ19' where id=3; -update noar ti set b1='ZSG682327IWQ64PEDQ19' where id=3; -update noar tt set v0='ET2' where id=3; -update noar ti set v0='ET2' where id=3; -update noar tt set b2='BZ5OA' where id=3; -update noar ti set b2='BZ5OA' where id=3; -update noar tt set v0='BZK47' where id=4; -update noar ti set v0='BZK47' where id=4; -update noar tt set b0='VIS0F5Q2M7J' where id=4; -update noar ti set b0='VIS0F5Q2M7J' where id=4; -update noar tt set v0='6GN9JDJUGUJ1RMBA3JI' where id=4; -update noar ti set v0='6GN9JDJUGUJ1RMBA3JI' where id=4; -update noar tt set b1='7KCYUNPOAXVLDI7G8O6QKH' where id=4; -update noar ti set b1='7KCYUNPOAXVLDI7G8O6QKH' where id=4; -update noar tt set v0='N3' where id=4; -update noar ti set v0='N3' where id=4; -update noar tt set b2='FGJIZ58FVIY30WQSE5R5AW' where id=4; -update noar ti set b2='FGJIZ58FVIY30WQSE5R5AW' where id=4; -update noar tt set v0='RLE8P7' where id=5; -update noar ti set v0='RLE8P7' where id=5; -update noar tt set b0='2DCN2T9BYR0PC7QPQP56S' where id=5; -update noar ti set b0='2DCN2T9BYR0PC7QPQP56S' where id=5; -update noar tt set v0='KIMLSNBFAOASH5BEYNF0AN7XYV' where id=5; -update noar ti set v0='KIMLSNBFAOASH5BEYNF0AN7XYV' where id=5; -update noar tt set b1='LGR3R859K5XVPBNXI' where id=5; -update noar ti set b1='LGR3R859K5XVPBNXI' where id=5; -update noar tt set v0='DDK3QTDLKYSBUJ45O6BBWNNHI9J' where id=5; -update noar ti set v0='DDK3QTDLKYSBUJ45O6BBWNNHI9J' where id=5; -update noar tt set b2='0J313M5XGSZ5JGO3FWKGCR8' where id=5; -update noar ti set b2='0J313M5XGSZ5JGO3FWKGCR8' where id=5; -update noar tt set v0='QKHEY31TBVXX9GGTQ' where id=6; -update noar ti set v0='QKHEY31TBVXX9GGTQ' where id=6; -update noar tt set b0='GCA3TNF' where id=6; -update noar ti set b0='GCA3TNF' where id=6; -update noar tt set v0='6R75YFUCHPV6S0ZKO6WZKT5' where id=6; -update noar ti set v0='6R75YFUCHPV6S0ZKO6WZKT5' where id=6; -update noar tt set b1='H8P5MLQ2GMF3EI73W8BOXR0Z5QMMD7' where id=6; -update noar ti set b1='H8P5MLQ2GMF3EI73W8BOXR0Z5QMMD7' where id=6; -update noar tt set v0='5FPFN6VW5EIE9JGM' where id=6; -update noar ti set v0='5FPFN6VW5EIE9JGM' where id=6; -update noar tt set b2='WD2JX194' where id=6; -update noar ti set b2='WD2JX194' where id=6; -update noar tt set v0='IS1XT4LLD46FC5M80QNUE49BR' where id=7; -update noar ti set v0='IS1XT4LLD46FC5M80QNUE49BR' where id=7; -update noar tt set b0='CZI3' where id=7; -update noar ti set b0='CZI3' where id=7; -update noar tt set v0='3XQ0679P67887H8' where id=7; -update noar ti set v0='3XQ0679P67887H8' where id=7; -update noar tt set b1='QLV' where id=7; -update noar ti set b1='QLV' where id=7; -update noar tt set v0='6WMIUUJHCR1' where id=7; -update noar ti set v0='6WMIUUJHCR1' where id=7; -update noar tt set b2='IM9NUCDA' where id=7; -update noar ti set b2='IM9NUCDA' where id=7; -update noar tt set v0='OM9' where id=8; -update noar ti set v0='OM9' where id=8; -update noar tt set b0='4TAL4BXY0L1SNT00MA1E' where id=8; -update noar ti set b0='4TAL4BXY0L1SNT00MA1E' where id=8; -update noar tt set v0='Y09B0WO5XG66YFI9XV48JZ' where id=8; -update noar ti set v0='Y09B0WO5XG66YFI9XV48JZ' where id=8; -update noar tt set b1='6CVSMPHFRZUTYYPK1GVFYVRGASMF9' where id=8; -update noar ti set b1='6CVSMPHFRZUTYYPK1GVFYVRGASMF9' where id=8; -update noar tt set v0='YKHKWB8KAUQUB' where id=8; -update noar ti set v0='YKHKWB8KAUQUB' where id=8; -update noar tt set b2='CXSVD0YIDHDCCG5VYWK847F6' where id=8; -update noar ti set b2='CXSVD0YIDHDCCG5VYWK847F6' where id=8; -update noar tt set v0='STWZ8EFG' where id=9; -update noar ti set v0='STWZ8EFG' where id=9; -update noar tt set b0='L5FN0Q3HRTD2' where id=9; -update noar ti set b0='L5FN0Q3HRTD2' where id=9; -update noar tt set v0='BRXONH' where id=9; -update noar ti set v0='BRXONH' where id=9; -update noar tt set b1='ZXN9DJBZQLCZ20ZN7' where id=9; -update noar ti set b1='ZXN9DJBZQLCZ20ZN7' where id=9; -update noar tt set v0='VI2ACASVXBNGE8GPBK6OU2WXK' where id=9; -update noar ti set v0='VI2ACASVXBNGE8GPBK6OU2WXK' where id=9; -update noar tt set b2='LMPC2ETNA' where id=9; -update noar ti set b2='LMPC2ETNA' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - f0 int null, - v0 varchar(256) null, - b0 mediumblob null, - b1 longblob null, - b2 longblob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='GFVBAQREW06YKPH3ZKO5QGNSXJHJHYP' where id=1; -update noar ti set v0='GFVBAQREW06YKPH3ZKO5QGNSXJHJHYP' where id=1; -update noar tt set b0='IM68GEOZJYF4IWM2Q1AJX1JDS3' where id=1; -update noar ti set b0='IM68GEOZJYF4IWM2Q1AJX1JDS3' where id=1; -update noar tt set v0='797K4URFJYTU4AKXX4T8ZIMBTTREKMEN' where id=1; -update noar ti set v0='797K4URFJYTU4AKXX4T8ZIMBTTREKMEN' where id=1; -update noar tt set b1='TQKGOJ' where id=1; -update noar ti set b1='TQKGOJ' where id=1; -update noar tt set v0='F1YPQRFBIKU527B4C4OTMQ151RZDL4GX' where id=1; -update noar ti set v0='F1YPQRFBIKU527B4C4OTMQ151RZDL4GX' where id=1; -update noar tt set b2='LS6IXQ5IVE31Z52K2JEZU7' where id=1; -update noar ti set b2='LS6IXQ5IVE31Z52K2JEZU7' where id=1; -update noar tt set v0='J4UOLAMN6B8XYNHFQCM6L' where id=2; -update noar ti set v0='J4UOLAMN6B8XYNHFQCM6L' where id=2; -update noar tt set b0='L65GIWZORKTMQVP' where id=2; -update noar ti set b0='L65GIWZORKTMQVP' where id=2; -update noar tt set v0='Q4B93LVPSFJ0' where id=2; -update noar ti set v0='Q4B93LVPSFJ0' where id=2; -update noar tt set b1='BDTLPEH6HZG5T33HEPG' where id=2; -update noar ti set b1='BDTLPEH6HZG5T33HEPG' where id=2; -update noar tt set v0='MZXCDT6' where id=2; -update noar ti set v0='MZXCDT6' where id=2; -update noar tt set b2='NF9RRLPHRE27SPVIVYO1QYM1GQX2C' where id=2; -update noar ti set b2='NF9RRLPHRE27SPVIVYO1QYM1GQX2C' where id=2; -update noar tt set v0='J4BU1W7REMUKXRZL8HNQMQPX' where id=3; -update noar ti set v0='J4BU1W7REMUKXRZL8HNQMQPX' where id=3; -update noar tt set b0='XYOQF1BGUALE93SPMPA3V2M6FD3HVQJ' where id=3; -update noar ti set b0='XYOQF1BGUALE93SPMPA3V2M6FD3HVQJ' where id=3; -update noar tt set v0='KM2CEA871P1NO6H47' where id=3; -update noar ti set v0='KM2CEA871P1NO6H47' where id=3; -update noar tt set b1='94S7HOXCPBEUV5VYF25Z' where id=3; -update noar ti set b1='94S7HOXCPBEUV5VYF25Z' where id=3; -update noar tt set v0='K5B' where id=3; -update noar ti set v0='K5B' where id=3; -update noar tt set b2='03TL80UC7J75ZV8QW655MXCPHD18WQ' where id=3; -update noar ti set b2='03TL80UC7J75ZV8QW655MXCPHD18WQ' where id=3; -update noar tt set v0='8NPRY9QZ5AS8KELE8C' where id=4; -update noar ti set v0='8NPRY9QZ5AS8KELE8C' where id=4; -update noar tt set b0='45J3TDDBV7CNO387HGRGGJC2IS8' where id=4; -update noar ti set b0='45J3TDDBV7CNO387HGRGGJC2IS8' where id=4; -update noar tt set v0='1X9O' where id=4; -update noar ti set v0='1X9O' where id=4; -update noar tt set b1='748TTPZYZO7W4WTIJ' where id=4; -update noar ti set b1='748TTPZYZO7W4WTIJ' where id=4; -update noar tt set v0='EGVA4ZBNYAB2P5F2T' where id=4; -update noar ti set v0='EGVA4ZBNYAB2P5F2T' where id=4; -update noar tt set b2='CM5JF' where id=4; -update noar ti set b2='CM5JF' where id=4; -update noar tt set v0='NA4F40ROMV9RJ90X33RRR9GOMSB79G' where id=5; -update noar ti set v0='NA4F40ROMV9RJ90X33RRR9GOMSB79G' where id=5; -update noar tt set b0='R8XA2S55BRHOYJ5F63O' where id=5; -update noar ti set b0='R8XA2S55BRHOYJ5F63O' where id=5; -update noar tt set v0='BFSK1QVY8QS6P520515' where id=5; -update noar ti set v0='BFSK1QVY8QS6P520515' where id=5; -update noar tt set b1='V82EP3EY21TF0GYJEDJB6TK777V468L' where id=5; -update noar ti set b1='V82EP3EY21TF0GYJEDJB6TK777V468L' where id=5; -update noar tt set v0='ZSKLP21' where id=5; -update noar ti set v0='ZSKLP21' where id=5; -update noar tt set b2='6MRX5I3WNEKK' where id=5; -update noar ti set b2='6MRX5I3WNEKK' where id=5; -update noar tt set v0='EELYQHJUMOXFSOWIACVIX1M98DYLT4' where id=6; -update noar ti set v0='EELYQHJUMOXFSOWIACVIX1M98DYLT4' where id=6; -update noar tt set b0='Y9ZJPJ0QXQ31IN7BRHC7B65MFS' where id=6; -update noar ti set b0='Y9ZJPJ0QXQ31IN7BRHC7B65MFS' where id=6; -update noar tt set v0='82L' where id=6; -update noar ti set v0='82L' where id=6; -update noar tt set b1='6JYV5JRCFFPFK41WR6Q' where id=6; -update noar ti set b1='6JYV5JRCFFPFK41WR6Q' where id=6; -update noar tt set v0='L' where id=6; -update noar ti set v0='L' where id=6; -update noar tt set b2='D8QQ' where id=6; -update noar ti set b2='D8QQ' where id=6; -update noar tt set v0='80H89' where id=7; -update noar ti set v0='80H89' where id=7; -update noar tt set b0='TAFW7RE4REC3LNPX18C0QY' where id=7; -update noar ti set b0='TAFW7RE4REC3LNPX18C0QY' where id=7; -update noar tt set v0='KAGU' where id=7; -update noar ti set v0='KAGU' where id=7; -update noar tt set b1='LZNXX0959H5ED8QHDU6UXQT1WA' where id=7; -update noar ti set b1='LZNXX0959H5ED8QHDU6UXQT1WA' where id=7; -update noar tt set v0='WUU4MI2ET0RZQB' where id=7; -update noar ti set v0='WUU4MI2ET0RZQB' where id=7; -update noar tt set b2='AGK3XHZEBS5' where id=7; -update noar ti set b2='AGK3XHZEBS5' where id=7; -update noar tt set v0='ECA81L0Z58ANQVR63KHKES49ZL6EWW' where id=8; -update noar ti set v0='ECA81L0Z58ANQVR63KHKES49ZL6EWW' where id=8; -update noar tt set b0='JB495VPK' where id=8; -update noar ti set b0='JB495VPK' where id=8; -update noar tt set v0='MFO2' where id=8; -update noar ti set v0='MFO2' where id=8; -update noar tt set b1='MJREI2BSLULVL' where id=8; -update noar ti set b1='MJREI2BSLULVL' where id=8; -update noar tt set v0='Y0SS5UUUT53SJQFDZJI3659BR3K' where id=8; -update noar ti set v0='Y0SS5UUUT53SJQFDZJI3659BR3K' where id=8; -update noar tt set b2='RD' where id=8; -update noar ti set b2='RD' where id=8; -update noar tt set v0='T4DMD5CDZWUAY3Y36' where id=9; -update noar ti set v0='T4DMD5CDZWUAY3Y36' where id=9; -update noar tt set b0='48' where id=9; -update noar ti set b0='48' where id=9; -update noar tt set v0='K' where id=9; -update noar ti set v0='K' where id=9; -update noar tt set b1='9SEYLX2KGLOGJZNXX' where id=9; -update noar ti set b1='9SEYLX2KGLOGJZNXX' where id=9; -update noar tt set v0='VSCF' where id=9; -update noar ti set v0='VSCF' where id=9; -update noar tt set b2='VQBHMDLD0T2XHVBJD5' where id=9; -update noar ti set b2='VQBHMDLD0T2XHVBJD5' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - f0 int not null, - v0 varchar(32) not null, - b0 mediumblob not null, - b1 longblob not null, - b2 longblob not null -) engine=tokudb; -insert into tt values (1,0,'','','',''); -insert into tt values (2,0,'','','',''); -insert into tt values (3,0,'','','',''); -insert into tt values (4,0,'','','',''); -insert into tt values (5,0,'','','',''); -insert into tt values (6,0,'','','',''); -insert into tt values (7,0,'','','',''); -insert into tt values (8,0,'','','',''); -insert into tt values (9,0,'','','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='G' where id=1; -update noar ti set v0='G' where id=1; -update noar tt set b0='VAND2VIP5YLB0PPBZ961VVVF' where id=1; -update noar ti set b0='VAND2VIP5YLB0PPBZ961VVVF' where id=1; -update noar tt set v0='PXMUZSAL35EG5NDGO4' where id=1; -update noar ti set v0='PXMUZSAL35EG5NDGO4' where id=1; -update noar tt set b1='DFM4ER0JQ6NN05XRDBR22H' where id=1; -update noar ti set b1='DFM4ER0JQ6NN05XRDBR22H' where id=1; -update noar tt set v0='DXY' where id=1; -update noar ti set v0='DXY' where id=1; -update noar tt set b2='NS8EHGK3BXBM61FU0HXMG13KWA8936' where id=1; -update noar ti set b2='NS8EHGK3BXBM61FU0HXMG13KWA8936' where id=1; -update noar tt set v0='P72602TGNU' where id=2; -update noar ti set v0='P72602TGNU' where id=2; -update noar tt set b0='P5UHFRNRTJ2SCVWTU' where id=2; -update noar ti set b0='P5UHFRNRTJ2SCVWTU' where id=2; -update noar tt set v0='90EQCZY01DS063Y8RPGEFFPRKB' where id=2; -update noar ti set v0='90EQCZY01DS063Y8RPGEFFPRKB' where id=2; -update noar tt set b1='B9KN3OVZNDVQDR98KAHQGUOA6HRR' where id=2; -update noar ti set b1='B9KN3OVZNDVQDR98KAHQGUOA6HRR' where id=2; -update noar tt set v0='9NIGMQ30WMDMLKJWEKBNIOQ9R8GQH' where id=2; -update noar ti set v0='9NIGMQ30WMDMLKJWEKBNIOQ9R8GQH' where id=2; -update noar tt set b2='2RY63T41FRDOGB1MJ4MNWF7QW6O4VNMU' where id=2; -update noar ti set b2='2RY63T41FRDOGB1MJ4MNWF7QW6O4VNMU' where id=2; -update noar tt set v0='VOBZ9E5HN5PLDZ8WTSGRZ4F' where id=3; -update noar ti set v0='VOBZ9E5HN5PLDZ8WTSGRZ4F' where id=3; -update noar tt set b0='BMFSDJUT2OWQKFG894IAFGPFSY' where id=3; -update noar ti set b0='BMFSDJUT2OWQKFG894IAFGPFSY' where id=3; -update noar tt set v0='NZKF22IJSEM325QAECDAZRMDXFNBDM' where id=3; -update noar ti set v0='NZKF22IJSEM325QAECDAZRMDXFNBDM' where id=3; -update noar tt set b1='1HLTX77QNRUI2FJ3T6F9' where id=3; -update noar ti set b1='1HLTX77QNRUI2FJ3T6F9' where id=3; -update noar tt set v0='FGCMAVX0BW5UJHW73QTZJEPO4' where id=3; -update noar ti set v0='FGCMAVX0BW5UJHW73QTZJEPO4' where id=3; -update noar tt set b2='A6ANELT5R4SOTNQM8D12OJ4K7XTH6' where id=3; -update noar ti set b2='A6ANELT5R4SOTNQM8D12OJ4K7XTH6' where id=3; -update noar tt set v0='IV7U64WM8BJNU' where id=4; -update noar ti set v0='IV7U64WM8BJNU' where id=4; -update noar tt set b0='7NHBKRGA3J9HZGGA98J2KFY' where id=4; -update noar ti set b0='7NHBKRGA3J9HZGGA98J2KFY' where id=4; -update noar tt set v0='KQA778' where id=4; -update noar ti set v0='KQA778' where id=4; -update noar tt set b1='BKCZPSWKTIRJI6H5GH39I3ZFE79L' where id=4; -update noar ti set b1='BKCZPSWKTIRJI6H5GH39I3ZFE79L' where id=4; -update noar tt set v0='09P40844DPQ4AD7YHW5R5W0YA' where id=4; -update noar ti set v0='09P40844DPQ4AD7YHW5R5W0YA' where id=4; -update noar tt set b2='PFTMK7OJ' where id=4; -update noar ti set b2='PFTMK7OJ' where id=4; -update noar tt set v0='B7OCE' where id=5; -update noar ti set v0='B7OCE' where id=5; -update noar tt set b0='P4K6WO9ZGIYWXTALZ4K3WXQ4A8ZBZH' where id=5; -update noar ti set b0='P4K6WO9ZGIYWXTALZ4K3WXQ4A8ZBZH' where id=5; -update noar tt set v0='9J7TEROHHPY99BUCBVLC6LF4PHLRPCRT' where id=5; -update noar ti set v0='9J7TEROHHPY99BUCBVLC6LF4PHLRPCRT' where id=5; -update noar tt set b1='ZR36ZBK86UEEWJI7FSAA59TBE1' where id=5; -update noar ti set b1='ZR36ZBK86UEEWJI7FSAA59TBE1' where id=5; -update noar tt set v0='VCHB' where id=5; -update noar ti set v0='VCHB' where id=5; -update noar tt set b2='VOCE69FAPUN2XOAI96GU5' where id=5; -update noar ti set b2='VOCE69FAPUN2XOAI96GU5' where id=5; -update noar tt set v0='Z' where id=6; -update noar ti set v0='Z' where id=6; -update noar tt set b0='M3Y04D0V12UE20SV1Q9NUU5IPQIVZGBZ' where id=6; -update noar ti set b0='M3Y04D0V12UE20SV1Q9NUU5IPQIVZGBZ' where id=6; -update noar tt set v0='1IJW3F9O7MHN2LN3' where id=6; -update noar ti set v0='1IJW3F9O7MHN2LN3' where id=6; -update noar tt set b1='BEVM5ASK74UL5P8DLYE' where id=6; -update noar ti set b1='BEVM5ASK74UL5P8DLYE' where id=6; -update noar tt set v0='JPGKTZ6S1OZQ3R05G' where id=6; -update noar ti set v0='JPGKTZ6S1OZQ3R05G' where id=6; -update noar tt set b2='8JTQZ7V0OW4GHOMMAWB0QA2JQC383' where id=6; -update noar ti set b2='8JTQZ7V0OW4GHOMMAWB0QA2JQC383' where id=6; -update noar tt set v0='8Q4X8FTS4317' where id=7; -update noar ti set v0='8Q4X8FTS4317' where id=7; -update noar tt set b0='P0762NB0AZO6GTTBXCZ434FM8FG' where id=7; -update noar ti set b0='P0762NB0AZO6GTTBXCZ434FM8FG' where id=7; -update noar tt set v0='DV3' where id=7; -update noar ti set v0='DV3' where id=7; -update noar tt set b1='T0CE' where id=7; -update noar ti set b1='T0CE' where id=7; -update noar tt set v0='QLVY' where id=7; -update noar ti set v0='QLVY' where id=7; -update noar tt set b2='OMEKF' where id=7; -update noar ti set b2='OMEKF' where id=7; -update noar tt set v0='RXWO' where id=8; -update noar ti set v0='RXWO' where id=8; -update noar tt set b0='7Q7SY0D4W3C0TZDGTI5BEJD5' where id=8; -update noar ti set b0='7Q7SY0D4W3C0TZDGTI5BEJD5' where id=8; -update noar tt set v0='JM0D9VG8XLDTN3MSGE6LU' where id=8; -update noar ti set v0='JM0D9VG8XLDTN3MSGE6LU' where id=8; -update noar tt set b1='1XRWW45Q00BAT1FULKP0N' where id=8; -update noar ti set b1='1XRWW45Q00BAT1FULKP0N' where id=8; -update noar tt set v0='G1L5UPGBQWZ4QUR71H6YCH60TWW8OZHB' where id=8; -update noar ti set v0='G1L5UPGBQWZ4QUR71H6YCH60TWW8OZHB' where id=8; -update noar tt set b2='V9OJRMLCDW46D6T5R5LN4FPNURE7TF' where id=8; -update noar ti set b2='V9OJRMLCDW46D6T5R5LN4FPNURE7TF' where id=8; -update noar tt set v0='UEGT03NKE1Q302ZXJ2' where id=9; -update noar ti set v0='UEGT03NKE1Q302ZXJ2' where id=9; -update noar tt set b0='WHK6THY43PBQKOACBT' where id=9; -update noar ti set b0='WHK6THY43PBQKOACBT' where id=9; -update noar tt set v0='MJIHUP814XARHFL2OPZKS' where id=9; -update noar ti set v0='MJIHUP814XARHFL2OPZKS' where id=9; -update noar tt set b1='9ACLHM8MVAZC6CTRXV5GKXQ5DN1' where id=9; -update noar ti set b1='9ACLHM8MVAZC6CTRXV5GKXQ5DN1' where id=9; -update noar tt set v0='GQIQ0WY' where id=9; -update noar ti set v0='GQIQ0WY' where id=9; -update noar tt set b2='O7LJT0NABGE5' where id=9; -update noar ti set b2='O7LJT0NABGE5' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - f0 int not null, - v0 varchar(256) not null, - b0 mediumblob not null, - b1 longblob not null, - b2 longblob not null -) engine=tokudb; -insert into tt values (1,0,'','','',''); -insert into tt values (2,0,'','','',''); -insert into tt values (3,0,'','','',''); -insert into tt values (4,0,'','','',''); -insert into tt values (5,0,'','','',''); -insert into tt values (6,0,'','','',''); -insert into tt values (7,0,'','','',''); -insert into tt values (8,0,'','','',''); -insert into tt values (9,0,'','','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='790RTHC395T6VUA57FX1' where id=1; -update noar ti set v0='790RTHC395T6VUA57FX1' where id=1; -update noar tt set b0='HT628UM42HKNJOBM8YTODY' where id=1; -update noar ti set b0='HT628UM42HKNJOBM8YTODY' where id=1; -update noar tt set v0='52BJ4RVTILA05AUIWWOI707PPPGXM8E' where id=1; -update noar ti set v0='52BJ4RVTILA05AUIWWOI707PPPGXM8E' where id=1; -update noar tt set b1='ONW43OQTL1ODGYH6NBMX' where id=1; -update noar ti set b1='ONW43OQTL1ODGYH6NBMX' where id=1; -update noar tt set v0='LSME4LOU7T4NEFE373VQ55QS' where id=1; -update noar ti set v0='LSME4LOU7T4NEFE373VQ55QS' where id=1; -update noar tt set b2='PN5OM45LA1B8SWRBSHHY6SSI1WSV' where id=1; -update noar ti set b2='PN5OM45LA1B8SWRBSHHY6SSI1WSV' where id=1; -update noar tt set v0='WD' where id=2; -update noar ti set v0='WD' where id=2; -update noar tt set b0='AHX43TEQLHKL1Y7I94A9NAT3T' where id=2; -update noar ti set b0='AHX43TEQLHKL1Y7I94A9NAT3T' where id=2; -update noar tt set v0='L' where id=2; -update noar ti set v0='L' where id=2; -update noar tt set b1='5P7P0XQ7AQ3O' where id=2; -update noar ti set b1='5P7P0XQ7AQ3O' where id=2; -update noar tt set v0='RRA7C2OARDA9XFOEIV' where id=2; -update noar ti set v0='RRA7C2OARDA9XFOEIV' where id=2; -update noar tt set b2='8A4MJ72YHJZ0DHTTJEZ54T912B2P1Z' where id=2; -update noar ti set b2='8A4MJ72YHJZ0DHTTJEZ54T912B2P1Z' where id=2; -update noar tt set v0='01BRERG9FB6N' where id=3; -update noar ti set v0='01BRERG9FB6N' where id=3; -update noar tt set b0='N5' where id=3; -update noar ti set b0='N5' where id=3; -update noar tt set v0='5FV6ZVV9UPI2H4AT9DYDYX82UYJG28K' where id=3; -update noar ti set v0='5FV6ZVV9UPI2H4AT9DYDYX82UYJG28K' where id=3; -update noar tt set b1='KSSUDN39VU' where id=3; -update noar ti set b1='KSSUDN39VU' where id=3; -update noar tt set v0='YFM9TM02KM964YMTYJPPIATLBJWNZ' where id=3; -update noar ti set v0='YFM9TM02KM964YMTYJPPIATLBJWNZ' where id=3; -update noar tt set b2='VXAM0CPF8JY' where id=3; -update noar ti set b2='VXAM0CPF8JY' where id=3; -update noar tt set v0='M' where id=4; -update noar ti set v0='M' where id=4; -update noar tt set b0='E4TNNL7ZTSTDVBIHRCP' where id=4; -update noar ti set b0='E4TNNL7ZTSTDVBIHRCP' where id=4; -update noar tt set v0='4URQ7XB0CREBIDGMU2TPRN24L1YC' where id=4; -update noar ti set v0='4URQ7XB0CREBIDGMU2TPRN24L1YC' where id=4; -update noar tt set b1='XAY2VSX5YVF2M4OK28WNFYG5Z' where id=4; -update noar ti set b1='XAY2VSX5YVF2M4OK28WNFYG5Z' where id=4; -update noar tt set v0='VAURJFSFL63LKHASC0QBSEF7Z0Z8FRG5' where id=4; -update noar ti set v0='VAURJFSFL63LKHASC0QBSEF7Z0Z8FRG5' where id=4; -update noar tt set b2='5BH9HH30AFAZUCVG2ZV0HIQQ1HWN' where id=4; -update noar ti set b2='5BH9HH30AFAZUCVG2ZV0HIQQ1HWN' where id=4; -update noar tt set v0='MN58Y59CF8ZPOA3ZNB6YPSSNF' where id=5; -update noar ti set v0='MN58Y59CF8ZPOA3ZNB6YPSSNF' where id=5; -update noar tt set b0='FAWEUNRX98QGODB' where id=5; -update noar ti set b0='FAWEUNRX98QGODB' where id=5; -update noar tt set v0='G2BEWGS0S476SC02MLAWZSKM67F' where id=5; -update noar ti set v0='G2BEWGS0S476SC02MLAWZSKM67F' where id=5; -update noar tt set b1='JIMPQKSPSU6FDMHN' where id=5; -update noar ti set b1='JIMPQKSPSU6FDMHN' where id=5; -update noar tt set v0='90X8Z18QOII' where id=5; -update noar ti set v0='90X8Z18QOII' where id=5; -update noar tt set b2='E2TZZSWUGHHUB48M' where id=5; -update noar ti set b2='E2TZZSWUGHHUB48M' where id=5; -update noar tt set v0='1W8AR8VKNBWHJVYIPWUNQ6XSV' where id=6; -update noar ti set v0='1W8AR8VKNBWHJVYIPWUNQ6XSV' where id=6; -update noar tt set b0='40XRV7KKCK3YF' where id=6; -update noar ti set b0='40XRV7KKCK3YF' where id=6; -update noar tt set v0='MMLACYF12OLT7QJIGVLO7NN9T5DE' where id=6; -update noar ti set v0='MMLACYF12OLT7QJIGVLO7NN9T5DE' where id=6; -update noar tt set b1='2ATD8' where id=6; -update noar ti set b1='2ATD8' where id=6; -update noar tt set v0='ZQ29ELJKL8FMVFN25YDK7A7A' where id=6; -update noar ti set v0='ZQ29ELJKL8FMVFN25YDK7A7A' where id=6; -update noar tt set b2='7JPC' where id=6; -update noar ti set b2='7JPC' where id=6; -update noar tt set v0='TVZVG42OQXT7W1AAFVGVRA0PQ' where id=7; -update noar ti set v0='TVZVG42OQXT7W1AAFVGVRA0PQ' where id=7; -update noar tt set b0='VC7QWJKY2VA6T' where id=7; -update noar ti set b0='VC7QWJKY2VA6T' where id=7; -update noar tt set v0='ETZWG' where id=7; -update noar ti set v0='ETZWG' where id=7; -update noar tt set b1='YKR7SNOFV7LTHBBARW7QMTHQBOWLJAM4' where id=7; -update noar ti set b1='YKR7SNOFV7LTHBBARW7QMTHQBOWLJAM4' where id=7; -update noar tt set v0='30G4GSXJZ' where id=7; -update noar ti set v0='30G4GSXJZ' where id=7; -update noar tt set b2='ZHOVLIUX4GXYO4BB' where id=7; -update noar ti set b2='ZHOVLIUX4GXYO4BB' where id=7; -update noar tt set v0='KPW7CE5EZP93841EIWR9G' where id=8; -update noar ti set v0='KPW7CE5EZP93841EIWR9G' where id=8; -update noar tt set b0='LL0QMRWAA9PI3T2FPGCZIBFJ3' where id=8; -update noar ti set b0='LL0QMRWAA9PI3T2FPGCZIBFJ3' where id=8; -update noar tt set v0='J1H4HSGZGOW5YQ4AFFEFD3Y4Z3RG1' where id=8; -update noar ti set v0='J1H4HSGZGOW5YQ4AFFEFD3Y4Z3RG1' where id=8; -update noar tt set b1='3D6NSXOSNNFTUN17GPJDPTI39EEJ' where id=8; -update noar ti set b1='3D6NSXOSNNFTUN17GPJDPTI39EEJ' where id=8; -update noar tt set v0='9NO7XV' where id=8; -update noar ti set v0='9NO7XV' where id=8; -update noar tt set b2='UEMTSBBAAEL1T0RYNQJAD7KN5RAI1U' where id=8; -update noar ti set b2='UEMTSBBAAEL1T0RYNQJAD7KN5RAI1U' where id=8; -update noar tt set v0='XMAL5Y4J5I72Z' where id=9; -update noar ti set v0='XMAL5Y4J5I72Z' where id=9; -update noar tt set b0='5Y7LXA9QZPS01' where id=9; -update noar ti set b0='5Y7LXA9QZPS01' where id=9; -update noar tt set v0='4NGEHL5FCVD27B189OU3ELC' where id=9; -update noar ti set v0='4NGEHL5FCVD27B189OU3ELC' where id=9; -update noar tt set b1='UR3JIFC' where id=9; -update noar ti set b1='UR3JIFC' where id=9; -update noar tt set v0='1ICQGUUGU' where id=9; -update noar ti set v0='1ICQGUUGU' where id=9; -update noar tt set b2='53XKIDZT2CRFH38' where id=9; -update noar ti set b2='53XKIDZT2CRFH38' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - f0 int null, - v0 varchar(32) null, - b0 longblob null, - b1 tinyblob null, - b2 tinyblob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='NMSM29H6DK50HWHQISJ' where id=1; -update noar ti set v0='NMSM29H6DK50HWHQISJ' where id=1; -update noar tt set b0='9273AYFX0G9X3Z3CAWJXQ1OL6ARUXYLB' where id=1; -update noar ti set b0='9273AYFX0G9X3Z3CAWJXQ1OL6ARUXYLB' where id=1; -update noar tt set v0='UUU6F8RV7R9' where id=1; -update noar ti set v0='UUU6F8RV7R9' where id=1; -update noar tt set b1='DCM' where id=1; -update noar ti set b1='DCM' where id=1; -update noar tt set v0='JT' where id=1; -update noar ti set v0='JT' where id=1; -update noar tt set b2='PR8QLXBMQX106WM' where id=1; -update noar ti set b2='PR8QLXBMQX106WM' where id=1; -update noar tt set v0='BU0PMEXJ8G6QE5YWF0AAE' where id=2; -update noar ti set v0='BU0PMEXJ8G6QE5YWF0AAE' where id=2; -update noar tt set b0='TBW0SONU8T61JI8AK791KDTXQIN9230' where id=2; -update noar ti set b0='TBW0SONU8T61JI8AK791KDTXQIN9230' where id=2; -update noar tt set v0='DYORRDDP8G2NCYDUMV0IRB' where id=2; -update noar ti set v0='DYORRDDP8G2NCYDUMV0IRB' where id=2; -update noar tt set b1='O3CQMSMY' where id=2; -update noar ti set b1='O3CQMSMY' where id=2; -update noar tt set v0='21FILP' where id=2; -update noar ti set v0='21FILP' where id=2; -update noar tt set b2='R8HN' where id=2; -update noar ti set b2='R8HN' where id=2; -update noar tt set v0='B827Z2WU883Z7I' where id=3; -update noar ti set v0='B827Z2WU883Z7I' where id=3; -update noar tt set b0='UMSUPM8K60RN5ER0NKJIL0N06B' where id=3; -update noar ti set b0='UMSUPM8K60RN5ER0NKJIL0N06B' where id=3; -update noar tt set v0='XDADHODWEUY4G4Q0VL2SIBI7' where id=3; -update noar ti set v0='XDADHODWEUY4G4Q0VL2SIBI7' where id=3; -update noar tt set b1='15' where id=3; -update noar ti set b1='15' where id=3; -update noar tt set v0='TGCHUW4F' where id=3; -update noar ti set v0='TGCHUW4F' where id=3; -update noar tt set b2='RAX5FFKBU3KORZVHQBY' where id=3; -update noar ti set b2='RAX5FFKBU3KORZVHQBY' where id=3; -update noar tt set v0='UWNJM31LCHB4JCADLKRS6EFV' where id=4; -update noar ti set v0='UWNJM31LCHB4JCADLKRS6EFV' where id=4; -update noar tt set b0='2D51W3YI331FLFV' where id=4; -update noar ti set b0='2D51W3YI331FLFV' where id=4; -update noar tt set v0='RQ18XZVGTI8JWOH49H' where id=4; -update noar ti set v0='RQ18XZVGTI8JWOH49H' where id=4; -update noar tt set b1='BHGY2M500JY' where id=4; -update noar ti set b1='BHGY2M500JY' where id=4; -update noar tt set v0='EGPSP' where id=4; -update noar ti set v0='EGPSP' where id=4; -update noar tt set b2='20XCRZ14H6PS8C87MTLYV' where id=4; -update noar ti set b2='20XCRZ14H6PS8C87MTLYV' where id=4; -update noar tt set v0='3KYD4KKDFF6EDGNH2EOQSVN4X1A3' where id=5; -update noar ti set v0='3KYD4KKDFF6EDGNH2EOQSVN4X1A3' where id=5; -update noar tt set b0='3ZXORPJRSI0JYWL7' where id=5; -update noar ti set b0='3ZXORPJRSI0JYWL7' where id=5; -update noar tt set v0='5CBV7YFYESZ8092NS36' where id=5; -update noar ti set v0='5CBV7YFYESZ8092NS36' where id=5; -update noar tt set b1='KMQWEB8OND' where id=5; -update noar ti set b1='KMQWEB8OND' where id=5; -update noar tt set v0='DXFS86XHGCBOAWO28' where id=5; -update noar ti set v0='DXFS86XHGCBOAWO28' where id=5; -update noar tt set b2='3XIP7Z10' where id=5; -update noar ti set b2='3XIP7Z10' where id=5; -update noar tt set v0='F0' where id=6; -update noar ti set v0='F0' where id=6; -update noar tt set b0='6DUFB' where id=6; -update noar ti set b0='6DUFB' where id=6; -update noar tt set v0='83K3AJYJAIGQGJZQ9AEXLZ' where id=6; -update noar ti set v0='83K3AJYJAIGQGJZQ9AEXLZ' where id=6; -update noar tt set b1='ZZ' where id=6; -update noar ti set b1='ZZ' where id=6; -update noar tt set v0='UWHL5SFDGC3U8SY962W' where id=6; -update noar ti set v0='UWHL5SFDGC3U8SY962W' where id=6; -update noar tt set b2='LH46J49812YLMJOP6U4P8' where id=6; -update noar ti set b2='LH46J49812YLMJOP6U4P8' where id=6; -update noar tt set v0='ZPS8905B45PQ4XMJ9671' where id=7; -update noar ti set v0='ZPS8905B45PQ4XMJ9671' where id=7; -update noar tt set b0='F2BUSFY79M6FFF43N9C' where id=7; -update noar ti set b0='F2BUSFY79M6FFF43N9C' where id=7; -update noar tt set v0='KDG' where id=7; -update noar ti set v0='KDG' where id=7; -update noar tt set b1='2C950BVNFZH04Y' where id=7; -update noar ti set b1='2C950BVNFZH04Y' where id=7; -update noar tt set v0='EIV2G4FK' where id=7; -update noar ti set v0='EIV2G4FK' where id=7; -update noar tt set b2='O0TF19PKL7QACHFU9640C' where id=7; -update noar ti set b2='O0TF19PKL7QACHFU9640C' where id=7; -update noar tt set v0='E0SS7QM4J5JAL7KAQPRD0X6PLFF3TS6' where id=8; -update noar ti set v0='E0SS7QM4J5JAL7KAQPRD0X6PLFF3TS6' where id=8; -update noar tt set b0='E9K6EGGQNK0PI0B' where id=8; -update noar ti set b0='E9K6EGGQNK0PI0B' where id=8; -update noar tt set v0='IBZSN9Q7GNG7W1JMSGH4RBIAOVT76' where id=8; -update noar ti set v0='IBZSN9Q7GNG7W1JMSGH4RBIAOVT76' where id=8; -update noar tt set b1='Y1URGPYSED9WI0X7YZKAKK2' where id=8; -update noar ti set b1='Y1URGPYSED9WI0X7YZKAKK2' where id=8; -update noar tt set v0='L0RZESP8QO5YU4CT9DX5A3FTRBQMQ6IL' where id=8; -update noar ti set v0='L0RZESP8QO5YU4CT9DX5A3FTRBQMQ6IL' where id=8; -update noar tt set b2='W7YTTAHB8MZCMK57K7U9W1IWXTZV' where id=8; -update noar ti set b2='W7YTTAHB8MZCMK57K7U9W1IWXTZV' where id=8; -update noar tt set v0='NIDNR4DDEZJX8FX' where id=9; -update noar ti set v0='NIDNR4DDEZJX8FX' where id=9; -update noar tt set b0='K5M7UIX6X4AMVMYBA' where id=9; -update noar ti set b0='K5M7UIX6X4AMVMYBA' where id=9; -update noar tt set v0='JJ7KRBADHMYZZKG970SSYJVB4' where id=9; -update noar ti set v0='JJ7KRBADHMYZZKG970SSYJVB4' where id=9; -update noar tt set b1='WLCM4H0G8N6AEM38DXUE429FBY' where id=9; -update noar ti set b1='WLCM4H0G8N6AEM38DXUE429FBY' where id=9; -update noar tt set v0='PX0O3X2985S93SA5XT1Q86OAP4V' where id=9; -update noar ti set v0='PX0O3X2985S93SA5XT1Q86OAP4V' where id=9; -update noar tt set b2='JUIEMBZASHWHKHA' where id=9; -update noar ti set b2='JUIEMBZASHWHKHA' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - f0 int null, - v0 varchar(256) null, - b0 longblob null, - b1 tinyblob null, - b2 tinyblob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='X93JKKYLNZ1DJX0G662MC81P8' where id=1; -update noar ti set v0='X93JKKYLNZ1DJX0G662MC81P8' where id=1; -update noar tt set b0='70C8Q9' where id=1; -update noar ti set b0='70C8Q9' where id=1; -update noar tt set v0='2WEG3XPJI7H59VB9DOI3IERT' where id=1; -update noar ti set v0='2WEG3XPJI7H59VB9DOI3IERT' where id=1; -update noar tt set b1='ZK1R0YQN' where id=1; -update noar ti set b1='ZK1R0YQN' where id=1; -update noar tt set v0='138UKGR0RAEQ66C00RYE6HAK24YVCZA' where id=1; -update noar ti set v0='138UKGR0RAEQ66C00RYE6HAK24YVCZA' where id=1; -update noar tt set b2='1KDGDZAMW40942M384LW1NWC0OFPBYZR' where id=1; -update noar ti set b2='1KDGDZAMW40942M384LW1NWC0OFPBYZR' where id=1; -update noar tt set v0='0OZI' where id=2; -update noar ti set v0='0OZI' where id=2; -update noar tt set b0='U4SZ8HT04FMI9TDTNABW' where id=2; -update noar ti set b0='U4SZ8HT04FMI9TDTNABW' where id=2; -update noar tt set v0='7JPRGN4WG7QO2K92FI51PDOMOVK' where id=2; -update noar ti set v0='7JPRGN4WG7QO2K92FI51PDOMOVK' where id=2; -update noar tt set b1='VQO5EJHPNTSIHSQI6XCT2KHOIY0GM6XE' where id=2; -update noar ti set b1='VQO5EJHPNTSIHSQI6XCT2KHOIY0GM6XE' where id=2; -update noar tt set v0='5NE8DB' where id=2; -update noar ti set v0='5NE8DB' where id=2; -update noar tt set b2='9LCIF96V518YY9YJHOVTQZ6M' where id=2; -update noar ti set b2='9LCIF96V518YY9YJHOVTQZ6M' where id=2; -update noar tt set v0='T7XLD98FUQO4MR8N8S0DX4' where id=3; -update noar ti set v0='T7XLD98FUQO4MR8N8S0DX4' where id=3; -update noar tt set b0='KK1C12BDZZVDIDJ2G3' where id=3; -update noar ti set b0='KK1C12BDZZVDIDJ2G3' where id=3; -update noar tt set v0='WKT95IMCT2MEGNI5HU03V6RL8DZT' where id=3; -update noar ti set v0='WKT95IMCT2MEGNI5HU03V6RL8DZT' where id=3; -update noar tt set b1='BFE0VWLYNJVGC7UD10E1H0FYV3' where id=3; -update noar ti set b1='BFE0VWLYNJVGC7UD10E1H0FYV3' where id=3; -update noar tt set v0='H7F98OE9DKXDHDIGJ9M0RFANP65BBDGR' where id=3; -update noar ti set v0='H7F98OE9DKXDHDIGJ9M0RFANP65BBDGR' where id=3; -update noar tt set b2='O' where id=3; -update noar ti set b2='O' where id=3; -update noar tt set v0='1MTIRNG48V1T8XYURCNMV' where id=4; -update noar ti set v0='1MTIRNG48V1T8XYURCNMV' where id=4; -update noar tt set b0='IWS9L80PEDJLT11XCK00KIBM0J2DP' where id=4; -update noar ti set b0='IWS9L80PEDJLT11XCK00KIBM0J2DP' where id=4; -update noar tt set v0='C9P3BNL7' where id=4; -update noar ti set v0='C9P3BNL7' where id=4; -update noar tt set b1='6SSW4V' where id=4; -update noar ti set b1='6SSW4V' where id=4; -update noar tt set v0='XOHPQG1TR5B0LDG3EVSWUQPIBI' where id=4; -update noar ti set v0='XOHPQG1TR5B0LDG3EVSWUQPIBI' where id=4; -update noar tt set b2='W1HKDA0N02' where id=4; -update noar ti set b2='W1HKDA0N02' where id=4; -update noar tt set v0='9YE61SC45H4P2RVHD4QE4Z7F4X' where id=5; -update noar ti set v0='9YE61SC45H4P2RVHD4QE4Z7F4X' where id=5; -update noar tt set b0='LJGYR84YLV4YF1S8PUDRR38ZHBZB9O' where id=5; -update noar ti set b0='LJGYR84YLV4YF1S8PUDRR38ZHBZB9O' where id=5; -update noar tt set v0='AZF49VDJ22T4D5FWZ54FZ1H2MUW61US5' where id=5; -update noar ti set v0='AZF49VDJ22T4D5FWZ54FZ1H2MUW61US5' where id=5; -update noar tt set b1='25TCNQZGUOT1EO' where id=5; -update noar ti set b1='25TCNQZGUOT1EO' where id=5; -update noar tt set v0='K789U8YVKFK1ASMU6555XH2UTM2RSG8' where id=5; -update noar ti set v0='K789U8YVKFK1ASMU6555XH2UTM2RSG8' where id=5; -update noar tt set b2='56HBNVGEB5ELTVVBTVKCGHC' where id=5; -update noar ti set b2='56HBNVGEB5ELTVVBTVKCGHC' where id=5; -update noar tt set v0='QUMVG' where id=6; -update noar ti set v0='QUMVG' where id=6; -update noar tt set b0='PLWJR1I8HQ0S9H989S7ZV8VSA' where id=6; -update noar ti set b0='PLWJR1I8HQ0S9H989S7ZV8VSA' where id=6; -update noar tt set v0='E30JWNCI7' where id=6; -update noar ti set v0='E30JWNCI7' where id=6; -update noar tt set b1='V3R631N5HGSP' where id=6; -update noar ti set b1='V3R631N5HGSP' where id=6; -update noar tt set v0='G4UQTEBRLTS1YU6' where id=6; -update noar ti set v0='G4UQTEBRLTS1YU6' where id=6; -update noar tt set b2='Z1MVBHVOIN2V2BJBWOK3O6Z1I9' where id=6; -update noar ti set b2='Z1MVBHVOIN2V2BJBWOK3O6Z1I9' where id=6; -update noar tt set v0='WU7N3HDCILEXQ0G5DAGL1QN86W7Y' where id=7; -update noar ti set v0='WU7N3HDCILEXQ0G5DAGL1QN86W7Y' where id=7; -update noar tt set b0='1N1PCBWQF59IQR3I9KGBCV3B' where id=7; -update noar ti set b0='1N1PCBWQF59IQR3I9KGBCV3B' where id=7; -update noar tt set v0='Q' where id=7; -update noar ti set v0='Q' where id=7; -update noar tt set b1='181PN5GNN4HC8778WIM76JKLUS53HUS' where id=7; -update noar ti set b1='181PN5GNN4HC8778WIM76JKLUS53HUS' where id=7; -update noar tt set v0='T94NEFAUX4YM3AP29KOB8G' where id=7; -update noar ti set v0='T94NEFAUX4YM3AP29KOB8G' where id=7; -update noar tt set b2='4YG9NHJDFV7H76FEZSZ9E0BHCJT' where id=7; -update noar ti set b2='4YG9NHJDFV7H76FEZSZ9E0BHCJT' where id=7; -update noar tt set v0='MDQO' where id=8; -update noar ti set v0='MDQO' where id=8; -update noar tt set b0='PQHWPQ0P35JC34KVQ5N6VXYYM8J2' where id=8; -update noar ti set b0='PQHWPQ0P35JC34KVQ5N6VXYYM8J2' where id=8; -update noar tt set v0='LCKL0K9PBPGVCB8WU' where id=8; -update noar ti set v0='LCKL0K9PBPGVCB8WU' where id=8; -update noar tt set b1='0C47US0RL4' where id=8; -update noar ti set b1='0C47US0RL4' where id=8; -update noar tt set v0='M8UWSLBX7CD0LW4NW2RB' where id=8; -update noar ti set v0='M8UWSLBX7CD0LW4NW2RB' where id=8; -update noar tt set b2='5Z3H8QMP37GM' where id=8; -update noar ti set b2='5Z3H8QMP37GM' where id=8; -update noar tt set v0='GPWTR613HAU5Z2BRH51BRO' where id=9; -update noar ti set v0='GPWTR613HAU5Z2BRH51BRO' where id=9; -update noar tt set b0='LTGHC9O9IPBSBGT01P2F9' where id=9; -update noar ti set b0='LTGHC9O9IPBSBGT01P2F9' where id=9; -update noar tt set v0='YAWN' where id=9; -update noar ti set v0='YAWN' where id=9; -update noar tt set b1='B65HZ3NMYZYVMG9Z7XF' where id=9; -update noar ti set b1='B65HZ3NMYZYVMG9Z7XF' where id=9; -update noar tt set v0='G5VHN1U1PJJECTCRIQ3PNBV' where id=9; -update noar ti set v0='G5VHN1U1PJJECTCRIQ3PNBV' where id=9; -update noar tt set b2='0A134MBZTZVZRPV2R1Y085H' where id=9; -update noar ti set b2='0A134MBZTZVZRPV2R1Y085H' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - f0 int not null, - v0 varchar(32) not null, - b0 longblob not null, - b1 tinyblob not null, - b2 tinyblob not null -) engine=tokudb; -insert into tt values (1,0,'','','',''); -insert into tt values (2,0,'','','',''); -insert into tt values (3,0,'','','',''); -insert into tt values (4,0,'','','',''); -insert into tt values (5,0,'','','',''); -insert into tt values (6,0,'','','',''); -insert into tt values (7,0,'','','',''); -insert into tt values (8,0,'','','',''); -insert into tt values (9,0,'','','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='4JKHGYGKBS0G96RATZ38J' where id=1; -update noar ti set v0='4JKHGYGKBS0G96RATZ38J' where id=1; -update noar tt set b0='WX' where id=1; -update noar ti set b0='WX' where id=1; -update noar tt set v0='EVA9ZA0B073PP7WRNOSJVKHLO' where id=1; -update noar ti set v0='EVA9ZA0B073PP7WRNOSJVKHLO' where id=1; -update noar tt set b1='FV352N8SXI6Q9440H5M6' where id=1; -update noar ti set b1='FV352N8SXI6Q9440H5M6' where id=1; -update noar tt set v0='XQNZGSBUIWJUTR6ZNDV7XIBMFVVZQM5' where id=1; -update noar ti set v0='XQNZGSBUIWJUTR6ZNDV7XIBMFVVZQM5' where id=1; -update noar tt set b2='93NSXKNT76WP1AYJ' where id=1; -update noar ti set b2='93NSXKNT76WP1AYJ' where id=1; -update noar tt set v0='CGB2XFXIR' where id=2; -update noar ti set v0='CGB2XFXIR' where id=2; -update noar tt set b0='IHO327JYV794G0RQH7LA7URIBJWW' where id=2; -update noar ti set b0='IHO327JYV794G0RQH7LA7URIBJWW' where id=2; -update noar tt set v0='UMXMTB98EV60DRZ0JSB' where id=2; -update noar ti set v0='UMXMTB98EV60DRZ0JSB' where id=2; -update noar tt set b1='E9IFJ90331470' where id=2; -update noar ti set b1='E9IFJ90331470' where id=2; -update noar tt set v0='L7IWJAT086QZDQXPF6ECFVH5' where id=2; -update noar ti set v0='L7IWJAT086QZDQXPF6ECFVH5' where id=2; -update noar tt set b2='YQXL29Y5P5JA' where id=2; -update noar ti set b2='YQXL29Y5P5JA' where id=2; -update noar tt set v0='IF3' where id=3; -update noar ti set v0='IF3' where id=3; -update noar tt set b0='Z327MOBIH5UNGT9' where id=3; -update noar ti set b0='Z327MOBIH5UNGT9' where id=3; -update noar tt set v0='ZZEDB552VCCM7I6JM28' where id=3; -update noar ti set v0='ZZEDB552VCCM7I6JM28' where id=3; -update noar tt set b1='9' where id=3; -update noar ti set b1='9' where id=3; -update noar tt set v0='V4PT5595UDSE02CIC94GX4RZZO' where id=3; -update noar ti set v0='V4PT5595UDSE02CIC94GX4RZZO' where id=3; -update noar tt set b2='06NDBSIP6SZOTZ6LBEUP5415HVODSJF4' where id=3; -update noar ti set b2='06NDBSIP6SZOTZ6LBEUP5415HVODSJF4' where id=3; -update noar tt set v0='NPZ2GQHN' where id=4; -update noar ti set v0='NPZ2GQHN' where id=4; -update noar tt set b0='MYQKZXCZR26DP82VWJH0HO3N4GA' where id=4; -update noar ti set b0='MYQKZXCZR26DP82VWJH0HO3N4GA' where id=4; -update noar tt set v0='D5MGNN4Y' where id=4; -update noar ti set v0='D5MGNN4Y' where id=4; -update noar tt set b1='CJ3EQT8H5ZK92SYWQ3U27BS2CNV0I' where id=4; -update noar ti set b1='CJ3EQT8H5ZK92SYWQ3U27BS2CNV0I' where id=4; -update noar tt set v0='J016SR4A1DF2P8X8ZNDV' where id=4; -update noar ti set v0='J016SR4A1DF2P8X8ZNDV' where id=4; -update noar tt set b2='5IANI6G1NQKYF9I46T3' where id=4; -update noar ti set b2='5IANI6G1NQKYF9I46T3' where id=4; -update noar tt set v0='BCIWXNAWRS9M549UQTMSL7PIKXNZH' where id=5; -update noar ti set v0='BCIWXNAWRS9M549UQTMSL7PIKXNZH' where id=5; -update noar tt set b0='Z2ODG96SKB09KIFRJX' where id=5; -update noar ti set b0='Z2ODG96SKB09KIFRJX' where id=5; -update noar tt set v0='IS99EO6VJ66' where id=5; -update noar ti set v0='IS99EO6VJ66' where id=5; -update noar tt set b1='0JRF1RXMGBQMJY0QT6AUVIZ' where id=5; -update noar ti set b1='0JRF1RXMGBQMJY0QT6AUVIZ' where id=5; -update noar tt set v0='LM1FNI62ENHU7AZ865EGKT' where id=5; -update noar ti set v0='LM1FNI62ENHU7AZ865EGKT' where id=5; -update noar tt set b2='9ZT1' where id=5; -update noar ti set b2='9ZT1' where id=5; -update noar tt set v0='L7VFIOX704O6PM51UCBTGC5S8RIC' where id=6; -update noar ti set v0='L7VFIOX704O6PM51UCBTGC5S8RIC' where id=6; -update noar tt set b0='6G4OMQVW5X' where id=6; -update noar ti set b0='6G4OMQVW5X' where id=6; -update noar tt set v0='YZN34MDP466BG55X' where id=6; -update noar ti set v0='YZN34MDP466BG55X' where id=6; -update noar tt set b1='PM8K0Y155ONLXB2W2H9U53ZO' where id=6; -update noar ti set b1='PM8K0Y155ONLXB2W2H9U53ZO' where id=6; -update noar tt set v0='RQVJHLS739VTGG8590HXQ7KI40' where id=6; -update noar ti set v0='RQVJHLS739VTGG8590HXQ7KI40' where id=6; -update noar tt set b2='4' where id=6; -update noar ti set b2='4' where id=6; -update noar tt set v0='8O9' where id=7; -update noar ti set v0='8O9' where id=7; -update noar tt set b0='NFX58YYOUZQD66SJS37JC123LAV5R' where id=7; -update noar ti set b0='NFX58YYOUZQD66SJS37JC123LAV5R' where id=7; -update noar tt set v0='4TBUU' where id=7; -update noar ti set v0='4TBUU' where id=7; -update noar tt set b1='BLUDG' where id=7; -update noar ti set b1='BLUDG' where id=7; -update noar tt set v0='YA2UP7G1I2SS0IWBI1S8IN' where id=7; -update noar ti set v0='YA2UP7G1I2SS0IWBI1S8IN' where id=7; -update noar tt set b2='CJD3WB776' where id=7; -update noar ti set b2='CJD3WB776' where id=7; -update noar tt set v0='COUZVICO6LPT17D8ZSMMRYTXDMM7VFM' where id=8; -update noar ti set v0='COUZVICO6LPT17D8ZSMMRYTXDMM7VFM' where id=8; -update noar tt set b0='E' where id=8; -update noar ti set b0='E' where id=8; -update noar tt set v0='AT' where id=8; -update noar ti set v0='AT' where id=8; -update noar tt set b1='OW597CDINVP6O0' where id=8; -update noar ti set b1='OW597CDINVP6O0' where id=8; -update noar tt set v0='WRM7CFZOUWX4S00HTCOTT5OOAM' where id=8; -update noar ti set v0='WRM7CFZOUWX4S00HTCOTT5OOAM' where id=8; -update noar tt set b2='1WGQ8HBB4EDLR7J5BYQBZ' where id=8; -update noar ti set b2='1WGQ8HBB4EDLR7J5BYQBZ' where id=8; -update noar tt set v0='E7YO7' where id=9; -update noar ti set v0='E7YO7' where id=9; -update noar tt set b0='BAAQSW1W3QQYC' where id=9; -update noar ti set b0='BAAQSW1W3QQYC' where id=9; -update noar tt set v0='6IQDSGGOVZL2H3A5NMVNPECOQEHDNUR' where id=9; -update noar ti set v0='6IQDSGGOVZL2H3A5NMVNPECOQEHDNUR' where id=9; -update noar tt set b1='N3SIY0U25Q4IR4SYI74OJGS' where id=9; -update noar ti set b1='N3SIY0U25Q4IR4SYI74OJGS' where id=9; -update noar tt set v0='R2' where id=9; -update noar ti set v0='R2' where id=9; -update noar tt set b2='JBZC' where id=9; -update noar ti set b2='JBZC' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - f0 int not null, - v0 varchar(256) not null, - b0 longblob not null, - b1 tinyblob not null, - b2 tinyblob not null -) engine=tokudb; -insert into tt values (1,0,'','','',''); -insert into tt values (2,0,'','','',''); -insert into tt values (3,0,'','','',''); -insert into tt values (4,0,'','','',''); -insert into tt values (5,0,'','','',''); -insert into tt values (6,0,'','','',''); -insert into tt values (7,0,'','','',''); -insert into tt values (8,0,'','','',''); -insert into tt values (9,0,'','','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='6T57Z0MJ5HF28YRCCLEK4GC' where id=1; -update noar ti set v0='6T57Z0MJ5HF28YRCCLEK4GC' where id=1; -update noar tt set b0='2' where id=1; -update noar ti set b0='2' where id=1; -update noar tt set v0='SPZPC6T4ML6HA2W78HT' where id=1; -update noar ti set v0='SPZPC6T4ML6HA2W78HT' where id=1; -update noar tt set b1='8E5E0EH77USBWL' where id=1; -update noar ti set b1='8E5E0EH77USBWL' where id=1; -update noar tt set v0='JQEBFMBDE0YWEF83LRI97DS730TBH' where id=1; -update noar ti set v0='JQEBFMBDE0YWEF83LRI97DS730TBH' where id=1; -update noar tt set b2='WC' where id=1; -update noar ti set b2='WC' where id=1; -update noar tt set v0='VHYWOX66ZSZ2DCEFMTBNZSTON5EN0' where id=2; -update noar ti set v0='VHYWOX66ZSZ2DCEFMTBNZSTON5EN0' where id=2; -update noar tt set b0='R414V99Y3EWO1DF0Q6VBHCN0U8TBFH0' where id=2; -update noar ti set b0='R414V99Y3EWO1DF0Q6VBHCN0U8TBFH0' where id=2; -update noar tt set v0='UVNZL21Y67JQTEM6M' where id=2; -update noar ti set v0='UVNZL21Y67JQTEM6M' where id=2; -update noar tt set b1='8CP' where id=2; -update noar ti set b1='8CP' where id=2; -update noar tt set v0='OV1LLSZMEN2' where id=2; -update noar ti set v0='OV1LLSZMEN2' where id=2; -update noar tt set b2='Y' where id=2; -update noar ti set b2='Y' where id=2; -update noar tt set v0='MAD' where id=3; -update noar ti set v0='MAD' where id=3; -update noar tt set b0='4' where id=3; -update noar ti set b0='4' where id=3; -update noar tt set v0='NIG6QCNDBD' where id=3; -update noar ti set v0='NIG6QCNDBD' where id=3; -update noar tt set b1='NUS2MMOL' where id=3; -update noar ti set b1='NUS2MMOL' where id=3; -update noar tt set v0='FWI9485DIK9M7ULG' where id=3; -update noar ti set v0='FWI9485DIK9M7ULG' where id=3; -update noar tt set b2='PDNTVL3PG4QLZ0176TMLDS3M' where id=3; -update noar ti set b2='PDNTVL3PG4QLZ0176TMLDS3M' where id=3; -update noar tt set v0='GK3X5I89EI9IUHQB2L696TWY82UR0ZM' where id=4; -update noar ti set v0='GK3X5I89EI9IUHQB2L696TWY82UR0ZM' where id=4; -update noar tt set b0='94UEBT9MDZ34ILEQ9VDL4BI4YURIKY' where id=4; -update noar ti set b0='94UEBT9MDZ34ILEQ9VDL4BI4YURIKY' where id=4; -update noar tt set v0='9833Y62899920HA' where id=4; -update noar ti set v0='9833Y62899920HA' where id=4; -update noar tt set b1='7EUY4R3NGGIFVI2X4W1OIV4Y' where id=4; -update noar ti set b1='7EUY4R3NGGIFVI2X4W1OIV4Y' where id=4; -update noar tt set v0='BTH8YX7AOUOO0PQE4T1KNNWMKKSR' where id=4; -update noar ti set v0='BTH8YX7AOUOO0PQE4T1KNNWMKKSR' where id=4; -update noar tt set b2='7GQPWLKBNIRFAE1V9VXBIG39X0H24' where id=4; -update noar ti set b2='7GQPWLKBNIRFAE1V9VXBIG39X0H24' where id=4; -update noar tt set v0='F' where id=5; -update noar ti set v0='F' where id=5; -update noar tt set b0='B2' where id=5; -update noar ti set b0='B2' where id=5; -update noar tt set v0='H4KNIR7K2IDD1' where id=5; -update noar ti set v0='H4KNIR7K2IDD1' where id=5; -update noar tt set b1='QYMXMYPGIYX0I1P' where id=5; -update noar ti set b1='QYMXMYPGIYX0I1P' where id=5; -update noar tt set v0='8WF20H' where id=5; -update noar ti set v0='8WF20H' where id=5; -update noar tt set b2='OEN5' where id=5; -update noar ti set b2='OEN5' where id=5; -update noar tt set v0='1U9FCA33VEPAVFZ8' where id=6; -update noar ti set v0='1U9FCA33VEPAVFZ8' where id=6; -update noar tt set b0='PATN3LEKBVQGRY8RNN0GWQDR' where id=6; -update noar ti set b0='PATN3LEKBVQGRY8RNN0GWQDR' where id=6; -update noar tt set v0='MZOWMIURY0OG2CH' where id=6; -update noar ti set v0='MZOWMIURY0OG2CH' where id=6; -update noar tt set b1='NZ31WVLY8CHY8PSDY1' where id=6; -update noar ti set b1='NZ31WVLY8CHY8PSDY1' where id=6; -update noar tt set v0='WQ4YN3PQZSD3TKI5SPMASVY3D3TNP' where id=6; -update noar ti set v0='WQ4YN3PQZSD3TKI5SPMASVY3D3TNP' where id=6; -update noar tt set b2='4CIZ04MZA54QKHZ2' where id=6; -update noar ti set b2='4CIZ04MZA54QKHZ2' where id=6; -update noar tt set v0='TPTLQ1WBIY7G0U9TE190DRYH' where id=7; -update noar ti set v0='TPTLQ1WBIY7G0U9TE190DRYH' where id=7; -update noar tt set b0='RGALWIA38AQRPN' where id=7; -update noar ti set b0='RGALWIA38AQRPN' where id=7; -update noar tt set v0='1ADCW' where id=7; -update noar ti set v0='1ADCW' where id=7; -update noar tt set b1='6' where id=7; -update noar ti set b1='6' where id=7; -update noar tt set v0='XA4U5H3T76306ELD0IOICWK3NO5I5' where id=7; -update noar ti set v0='XA4U5H3T76306ELD0IOICWK3NO5I5' where id=7; -update noar tt set b2='1R735KSH2SM7IU0L4RHTHD9VDCT379FW' where id=7; -update noar ti set b2='1R735KSH2SM7IU0L4RHTHD9VDCT379FW' where id=7; -update noar tt set v0='HQZZ' where id=8; -update noar ti set v0='HQZZ' where id=8; -update noar tt set b0='ZMKGY' where id=8; -update noar ti set b0='ZMKGY' where id=8; -update noar tt set v0='VIS8RFT' where id=8; -update noar ti set v0='VIS8RFT' where id=8; -update noar tt set b1='40FPV46TH38OV846TI0VCBYBNHU' where id=8; -update noar ti set b1='40FPV46TH38OV846TI0VCBYBNHU' where id=8; -update noar tt set v0='B76' where id=8; -update noar ti set v0='B76' where id=8; -update noar tt set b2='B6U9UD8BVWK0PK4PQ9O' where id=8; -update noar ti set b2='B6U9UD8BVWK0PK4PQ9O' where id=8; -update noar tt set v0='23R1YXZGW0FNHLGXDV2YY' where id=9; -update noar ti set v0='23R1YXZGW0FNHLGXDV2YY' where id=9; -update noar tt set b0='CWY1IVH3WPNFILPSU9Z3770WH1' where id=9; -update noar ti set b0='CWY1IVH3WPNFILPSU9Z3770WH1' where id=9; -update noar tt set v0='9VE0PIRV3B' where id=9; -update noar ti set v0='9VE0PIRV3B' where id=9; -update noar tt set b1='KW1TVEE' where id=9; -update noar ti set b1='KW1TVEE' where id=9; -update noar tt set v0='9AY7ZHE2D6U15FBFET9' where id=9; -update noar ti set v0='9AY7ZHE2D6U15FBFET9' where id=9; -update noar tt set b2='AWHDVCOLTLGJ' where id=9; -update noar ti set b2='AWHDVCOLTLGJ' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - f0 int null, - v0 varchar(32) null, - b0 longblob null, - b1 tinyblob null, - b2 blob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='05CWV2GHJXH51UP' where id=1; -update noar ti set v0='05CWV2GHJXH51UP' where id=1; -update noar tt set b0='EHCD' where id=1; -update noar ti set b0='EHCD' where id=1; -update noar tt set v0='W5AN0F0E9SJWKA2F6DTJ6JGS' where id=1; -update noar ti set v0='W5AN0F0E9SJWKA2F6DTJ6JGS' where id=1; -update noar tt set b1='ST7ZYLSTR102S71TCSY3XPQRCG6F8OJR' where id=1; -update noar ti set b1='ST7ZYLSTR102S71TCSY3XPQRCG6F8OJR' where id=1; -update noar tt set v0='A0ZJ' where id=1; -update noar ti set v0='A0ZJ' where id=1; -update noar tt set b2='NJU7BOAI8VM0W0CQM29C' where id=1; -update noar ti set b2='NJU7BOAI8VM0W0CQM29C' where id=1; -update noar tt set v0='0EBR5' where id=2; -update noar ti set v0='0EBR5' where id=2; -update noar tt set b0='5Z5N9WWMKF0ICX9T6PN6ZYAM30IZ' where id=2; -update noar ti set b0='5Z5N9WWMKF0ICX9T6PN6ZYAM30IZ' where id=2; -update noar tt set v0='6TC9G3DYUGS4RG4' where id=2; -update noar ti set v0='6TC9G3DYUGS4RG4' where id=2; -update noar tt set b1='VW3RDWEK1R7' where id=2; -update noar ti set b1='VW3RDWEK1R7' where id=2; -update noar tt set v0='HQYDID8' where id=2; -update noar ti set v0='HQYDID8' where id=2; -update noar tt set b2='MRTVEJ2HQQ' where id=2; -update noar ti set b2='MRTVEJ2HQQ' where id=2; -update noar tt set v0='ALKMVDQ0QYU2BZT' where id=3; -update noar ti set v0='ALKMVDQ0QYU2BZT' where id=3; -update noar tt set b0='E0T9VH0ADK8PX0KIHRZ8CVQRETH' where id=3; -update noar ti set b0='E0T9VH0ADK8PX0KIHRZ8CVQRETH' where id=3; -update noar tt set v0='AU9R17' where id=3; -update noar ti set v0='AU9R17' where id=3; -update noar tt set b1='114VNC2' where id=3; -update noar ti set b1='114VNC2' where id=3; -update noar tt set v0='NZZ' where id=3; -update noar ti set v0='NZZ' where id=3; -update noar tt set b2='OLCES341WKYAB02S5J20TKNOOJ7X9DQY' where id=3; -update noar ti set b2='OLCES341WKYAB02S5J20TKNOOJ7X9DQY' where id=3; -update noar tt set v0='2F8EJZ2UKXEZ' where id=4; -update noar ti set v0='2F8EJZ2UKXEZ' where id=4; -update noar tt set b0='SH09QABX99K63AGBWG1T90FIJQS1Z' where id=4; -update noar ti set b0='SH09QABX99K63AGBWG1T90FIJQS1Z' where id=4; -update noar tt set v0='5H4CMXP60IQJYI3N' where id=4; -update noar ti set v0='5H4CMXP60IQJYI3N' where id=4; -update noar tt set b1='GTE9V8WRNN651CECWGGY2' where id=4; -update noar ti set b1='GTE9V8WRNN651CECWGGY2' where id=4; -update noar tt set v0='75I3ZOKJSQ7E36A9ZLVJ' where id=4; -update noar ti set v0='75I3ZOKJSQ7E36A9ZLVJ' where id=4; -update noar tt set b2='WR7AB' where id=4; -update noar ti set b2='WR7AB' where id=4; -update noar tt set v0='UKS' where id=5; -update noar ti set v0='UKS' where id=5; -update noar tt set b0='F4HYLEFNDMFB41Z6GEP9JK3IF6Q0' where id=5; -update noar ti set b0='F4HYLEFNDMFB41Z6GEP9JK3IF6Q0' where id=5; -update noar tt set v0='SGFCDL7L85' where id=5; -update noar ti set v0='SGFCDL7L85' where id=5; -update noar tt set b1='9IOUZQSVQD846O52N' where id=5; -update noar ti set b1='9IOUZQSVQD846O52N' where id=5; -update noar tt set v0='WZVC9X' where id=5; -update noar ti set v0='WZVC9X' where id=5; -update noar tt set b2='GKMIS4V5KL' where id=5; -update noar ti set b2='GKMIS4V5KL' where id=5; -update noar tt set v0='YZLU5P6JW37HK84HS5PREIW67IN7' where id=6; -update noar ti set v0='YZLU5P6JW37HK84HS5PREIW67IN7' where id=6; -update noar tt set b0='ONPM8OR' where id=6; -update noar ti set b0='ONPM8OR' where id=6; -update noar tt set v0='6VNFHCUH0' where id=6; -update noar ti set v0='6VNFHCUH0' where id=6; -update noar tt set b1='IKZHW5S1DZP8JY6GK4U' where id=6; -update noar ti set b1='IKZHW5S1DZP8JY6GK4U' where id=6; -update noar tt set v0='378AB7WXHPW' where id=6; -update noar ti set v0='378AB7WXHPW' where id=6; -update noar tt set b2='A8HGRZRSQ4JITVGR3E4ZK1ES1' where id=6; -update noar ti set b2='A8HGRZRSQ4JITVGR3E4ZK1ES1' where id=6; -update noar tt set v0='FTAY6H5KIALKS6L' where id=7; -update noar ti set v0='FTAY6H5KIALKS6L' where id=7; -update noar tt set b0='GE4XOCVTI4ZAU35E67U1' where id=7; -update noar ti set b0='GE4XOCVTI4ZAU35E67U1' where id=7; -update noar tt set v0='KBVF76IFMI4IAGDC' where id=7; -update noar ti set v0='KBVF76IFMI4IAGDC' where id=7; -update noar tt set b1='9K7ZN87VSEC5PBR98125430EV' where id=7; -update noar ti set b1='9K7ZN87VSEC5PBR98125430EV' where id=7; -update noar tt set v0='SV7GRLJP0PWX4U3P40HF9HMETT0' where id=7; -update noar ti set v0='SV7GRLJP0PWX4U3P40HF9HMETT0' where id=7; -update noar tt set b2='R2FY6MUAYN43X9ITTPDFCPKG' where id=7; -update noar ti set b2='R2FY6MUAYN43X9ITTPDFCPKG' where id=7; -update noar tt set v0='G1ET1KC' where id=8; -update noar ti set v0='G1ET1KC' where id=8; -update noar tt set b0='47OHVP05PZ' where id=8; -update noar ti set b0='47OHVP05PZ' where id=8; -update noar tt set v0='WORGCZSQ3DV92ZWFWZ' where id=8; -update noar ti set v0='WORGCZSQ3DV92ZWFWZ' where id=8; -update noar tt set b1='KQ6MX9JODAO' where id=8; -update noar ti set b1='KQ6MX9JODAO' where id=8; -update noar tt set v0='OZMM8R5WVIQ8X4GAQ5V6XJ' where id=8; -update noar ti set v0='OZMM8R5WVIQ8X4GAQ5V6XJ' where id=8; -update noar tt set b2='ELI7FK0AT22XBYAARYD3EUZ3' where id=8; -update noar ti set b2='ELI7FK0AT22XBYAARYD3EUZ3' where id=8; -update noar tt set v0='S6XLX4IP' where id=9; -update noar ti set v0='S6XLX4IP' where id=9; -update noar tt set b0='56MM1D70V8C4Y0F2' where id=9; -update noar ti set b0='56MM1D70V8C4Y0F2' where id=9; -update noar tt set v0='EN59XNPMTT9JA' where id=9; -update noar ti set v0='EN59XNPMTT9JA' where id=9; -update noar tt set b1='HEIOWG4Y50N4PD8ZBDMIG8' where id=9; -update noar ti set b1='HEIOWG4Y50N4PD8ZBDMIG8' where id=9; -update noar tt set v0='59L6BZEI9IQ' where id=9; -update noar ti set v0='59L6BZEI9IQ' where id=9; -update noar tt set b2='Z43TH0999N3WJVZ8HCB2' where id=9; -update noar ti set b2='Z43TH0999N3WJVZ8HCB2' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - f0 int null, - v0 varchar(256) null, - b0 longblob null, - b1 tinyblob null, - b2 blob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='KKSH' where id=1; -update noar ti set v0='KKSH' where id=1; -update noar tt set b0='20RENUKZACFQK2TZMGW5' where id=1; -update noar ti set b0='20RENUKZACFQK2TZMGW5' where id=1; -update noar tt set v0='G3NOK' where id=1; -update noar ti set v0='G3NOK' where id=1; -update noar tt set b1='MNT' where id=1; -update noar ti set b1='MNT' where id=1; -update noar tt set v0='MBR08KP' where id=1; -update noar ti set v0='MBR08KP' where id=1; -update noar tt set b2='V85YQ293ZGI2Z' where id=1; -update noar ti set b2='V85YQ293ZGI2Z' where id=1; -update noar tt set v0='U8U' where id=2; -update noar ti set v0='U8U' where id=2; -update noar tt set b0='MDMCX7G1V0FY3TTOLIWCPN8BRQMD' where id=2; -update noar ti set b0='MDMCX7G1V0FY3TTOLIWCPN8BRQMD' where id=2; -update noar tt set v0='PIW9S70EWBH' where id=2; -update noar ti set v0='PIW9S70EWBH' where id=2; -update noar tt set b1='3CJ9SAKJ4I7NDAEIGG3IAMLP0Z3M' where id=2; -update noar ti set b1='3CJ9SAKJ4I7NDAEIGG3IAMLP0Z3M' where id=2; -update noar tt set v0='N' where id=2; -update noar ti set v0='N' where id=2; -update noar tt set b2='AWGZRY1DZAKN797A9MZ' where id=2; -update noar ti set b2='AWGZRY1DZAKN797A9MZ' where id=2; -update noar tt set v0='S0HH' where id=3; -update noar ti set v0='S0HH' where id=3; -update noar tt set b0='8JVAE5N1PL' where id=3; -update noar ti set b0='8JVAE5N1PL' where id=3; -update noar tt set v0='QFBMMTYCMH' where id=3; -update noar ti set v0='QFBMMTYCMH' where id=3; -update noar tt set b1='K5BAGGN' where id=3; -update noar ti set b1='K5BAGGN' where id=3; -update noar tt set v0='WFNL6JXSRV' where id=3; -update noar ti set v0='WFNL6JXSRV' where id=3; -update noar tt set b2='W66T66ZYPTRA' where id=3; -update noar ti set b2='W66T66ZYPTRA' where id=3; -update noar tt set v0='N' where id=4; -update noar ti set v0='N' where id=4; -update noar tt set b0='YLL3JUP' where id=4; -update noar ti set b0='YLL3JUP' where id=4; -update noar tt set v0='CULAOUYY74VFCMWWNR3RP4F9NSOJBE3' where id=4; -update noar ti set v0='CULAOUYY74VFCMWWNR3RP4F9NSOJBE3' where id=4; -update noar tt set b1='JW4RPJY4K8GCZIZJ' where id=4; -update noar ti set b1='JW4RPJY4K8GCZIZJ' where id=4; -update noar tt set v0='GQUTME1NL8ZPNN95HAA808XA' where id=4; -update noar ti set v0='GQUTME1NL8ZPNN95HAA808XA' where id=4; -update noar tt set b2='BSDJ2' where id=4; -update noar ti set b2='BSDJ2' where id=4; -update noar tt set v0='EYOY6Y04IDVFMTNWVL2BYV0' where id=5; -update noar ti set v0='EYOY6Y04IDVFMTNWVL2BYV0' where id=5; -update noar tt set b0='VMD3Z948Q7HOU9QKNMHSO' where id=5; -update noar ti set b0='VMD3Z948Q7HOU9QKNMHSO' where id=5; -update noar tt set v0='LL1VFJPVE1E18D7P' where id=5; -update noar ti set v0='LL1VFJPVE1E18D7P' where id=5; -update noar tt set b1='KPOCZE' where id=5; -update noar ti set b1='KPOCZE' where id=5; -update noar tt set v0='KW057LMWSU7A6JKPEWBO7N6U' where id=5; -update noar ti set v0='KW057LMWSU7A6JKPEWBO7N6U' where id=5; -update noar tt set b2='09FCD3NXHS23TQYKIZ7SINSGT5EQ63' where id=5; -update noar ti set b2='09FCD3NXHS23TQYKIZ7SINSGT5EQ63' where id=5; -update noar tt set v0='LASCQOV7EIV19W8P7J' where id=6; -update noar ti set v0='LASCQOV7EIV19W8P7J' where id=6; -update noar tt set b0='CXRIEOFUSG7O' where id=6; -update noar ti set b0='CXRIEOFUSG7O' where id=6; -update noar tt set v0='B6L2CYW29VR6NZFK4U2JB01O' where id=6; -update noar ti set v0='B6L2CYW29VR6NZFK4U2JB01O' where id=6; -update noar tt set b1='P6QTM59F326L8FPY902I' where id=6; -update noar ti set b1='P6QTM59F326L8FPY902I' where id=6; -update noar tt set v0='24KB7QYB5X8ZDAP1RY1' where id=6; -update noar ti set v0='24KB7QYB5X8ZDAP1RY1' where id=6; -update noar tt set b2='S94QJUQSF8FUDXP31QX0VW' where id=6; -update noar ti set b2='S94QJUQSF8FUDXP31QX0VW' where id=6; -update noar tt set v0='1697HSPIOZSBQJRKG5AWP4K7TF1A6N' where id=7; -update noar ti set v0='1697HSPIOZSBQJRKG5AWP4K7TF1A6N' where id=7; -update noar tt set b0='N4Y6LL9Z11WFX5D4DOCJ' where id=7; -update noar ti set b0='N4Y6LL9Z11WFX5D4DOCJ' where id=7; -update noar tt set v0='N7JM' where id=7; -update noar ti set v0='N7JM' where id=7; -update noar tt set b1='OK4NDKW3724' where id=7; -update noar ti set b1='OK4NDKW3724' where id=7; -update noar tt set v0='RJZS4GL5DLN' where id=7; -update noar ti set v0='RJZS4GL5DLN' where id=7; -update noar tt set b2='ORQD68OU0R' where id=7; -update noar ti set b2='ORQD68OU0R' where id=7; -update noar tt set v0='R75BKW4AL0U2QD66JFDZCO76' where id=8; -update noar ti set v0='R75BKW4AL0U2QD66JFDZCO76' where id=8; -update noar tt set b0='38L' where id=8; -update noar ti set b0='38L' where id=8; -update noar tt set v0='EGNFNW' where id=8; -update noar ti set v0='EGNFNW' where id=8; -update noar tt set b1='49' where id=8; -update noar ti set b1='49' where id=8; -update noar tt set v0='8BFY74JEQSYWCU477CL497ZTN7NJ' where id=8; -update noar ti set v0='8BFY74JEQSYWCU477CL497ZTN7NJ' where id=8; -update noar tt set b2='I3QS' where id=8; -update noar ti set b2='I3QS' where id=8; -update noar tt set v0='ZC6ZHZ4EFIQ7NV5' where id=9; -update noar ti set v0='ZC6ZHZ4EFIQ7NV5' where id=9; -update noar tt set b0='6JAV9F0C' where id=9; -update noar ti set b0='6JAV9F0C' where id=9; -update noar tt set v0='XE7FH2N66T2X2UMSEAL9I7ZTFV' where id=9; -update noar ti set v0='XE7FH2N66T2X2UMSEAL9I7ZTFV' where id=9; -update noar tt set b1='JS6K' where id=9; -update noar ti set b1='JS6K' where id=9; -update noar tt set v0='E8YVB509UQULR' where id=9; -update noar ti set v0='E8YVB509UQULR' where id=9; -update noar tt set b2='HO4NQEWU52AX27Y92GYM6DHTW00' where id=9; -update noar ti set b2='HO4NQEWU52AX27Y92GYM6DHTW00' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - f0 int not null, - v0 varchar(32) not null, - b0 longblob not null, - b1 tinyblob not null, - b2 blob not null -) engine=tokudb; -insert into tt values (1,0,'','','',''); -insert into tt values (2,0,'','','',''); -insert into tt values (3,0,'','','',''); -insert into tt values (4,0,'','','',''); -insert into tt values (5,0,'','','',''); -insert into tt values (6,0,'','','',''); -insert into tt values (7,0,'','','',''); -insert into tt values (8,0,'','','',''); -insert into tt values (9,0,'','','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='730S4BY2LFQ1ROQ6RZ' where id=1; -update noar ti set v0='730S4BY2LFQ1ROQ6RZ' where id=1; -update noar tt set b0='15284GTV59H2JZG847J3HHA9EBK' where id=1; -update noar ti set b0='15284GTV59H2JZG847J3HHA9EBK' where id=1; -update noar tt set v0='I9VJGQYZJBWCLC' where id=1; -update noar ti set v0='I9VJGQYZJBWCLC' where id=1; -update noar tt set b1='95CR1CHKS' where id=1; -update noar ti set b1='95CR1CHKS' where id=1; -update noar tt set v0='JRNCJUP3KMGW94RVQ3UBHSEGDOGV' where id=1; -update noar ti set v0='JRNCJUP3KMGW94RVQ3UBHSEGDOGV' where id=1; -update noar tt set b2='VKQCVL71BUU1' where id=1; -update noar ti set b2='VKQCVL71BUU1' where id=1; -update noar tt set v0='0ZRBDO' where id=2; -update noar ti set v0='0ZRBDO' where id=2; -update noar tt set b0='HAO9Z1KDQEPV4RP2RQUTQ' where id=2; -update noar ti set b0='HAO9Z1KDQEPV4RP2RQUTQ' where id=2; -update noar tt set v0='05JYULBJ49Q38BOVGP2TZ58A' where id=2; -update noar ti set v0='05JYULBJ49Q38BOVGP2TZ58A' where id=2; -update noar tt set b1='R0OQXQOQR' where id=2; -update noar ti set b1='R0OQXQOQR' where id=2; -update noar tt set v0='C3WP5AQV59YJ8GVSJYF' where id=2; -update noar ti set v0='C3WP5AQV59YJ8GVSJYF' where id=2; -update noar tt set b2='FO519T33SP' where id=2; -update noar ti set b2='FO519T33SP' where id=2; -update noar tt set v0='W5U7XIIF9HTF2PXPOTGHMT' where id=3; -update noar ti set v0='W5U7XIIF9HTF2PXPOTGHMT' where id=3; -update noar tt set b0='5LBTK3UEGFWJRGXGVPLT' where id=3; -update noar ti set b0='5LBTK3UEGFWJRGXGVPLT' where id=3; -update noar tt set v0='VXJ3QQ1QSB1698ITA5P4ORECHHIP3DZ' where id=3; -update noar ti set v0='VXJ3QQ1QSB1698ITA5P4ORECHHIP3DZ' where id=3; -update noar tt set b1='UOGVNYUYLM9ALF28MMXCWR2AG26O8VA0' where id=3; -update noar ti set b1='UOGVNYUYLM9ALF28MMXCWR2AG26O8VA0' where id=3; -update noar tt set v0='3DK2H85BRW8LM' where id=3; -update noar ti set v0='3DK2H85BRW8LM' where id=3; -update noar tt set b2='J3E8D6F5V9CURDJR2EW5DYH82RMZNS' where id=3; -update noar ti set b2='J3E8D6F5V9CURDJR2EW5DYH82RMZNS' where id=3; -update noar tt set v0='C2' where id=4; -update noar ti set v0='C2' where id=4; -update noar tt set b0='AAVC7N7RT0G9WHDYV' where id=4; -update noar ti set b0='AAVC7N7RT0G9WHDYV' where id=4; -update noar tt set v0='DOS4Z0EV0QDJ90XY95B11KZ3F0EZ' where id=4; -update noar ti set v0='DOS4Z0EV0QDJ90XY95B11KZ3F0EZ' where id=4; -update noar tt set b1='EWVU6RRB6BC0HU8OQSR67VXHNAL1T2C' where id=4; -update noar ti set b1='EWVU6RRB6BC0HU8OQSR67VXHNAL1T2C' where id=4; -update noar tt set v0='TQICCY1AZX4FOA72NG8L0402A4REK' where id=4; -update noar ti set v0='TQICCY1AZX4FOA72NG8L0402A4REK' where id=4; -update noar tt set b2='YEZNQFTW6BGO1ELWFZY0Z' where id=4; -update noar ti set b2='YEZNQFTW6BGO1ELWFZY0Z' where id=4; -update noar tt set v0='P5L4FKEV5L3S98URRX00UH38XA1P0' where id=5; -update noar ti set v0='P5L4FKEV5L3S98URRX00UH38XA1P0' where id=5; -update noar tt set b0='82W' where id=5; -update noar ti set b0='82W' where id=5; -update noar tt set v0='DSNSQC' where id=5; -update noar ti set v0='DSNSQC' where id=5; -update noar tt set b1='R7EOMNRT6C' where id=5; -update noar ti set b1='R7EOMNRT6C' where id=5; -update noar tt set v0='U6FQ0SA0TAJXE1W' where id=5; -update noar ti set v0='U6FQ0SA0TAJXE1W' where id=5; -update noar tt set b2='DGI6MBQ6OI1JOWJKJ7HW5RNBUWG4N' where id=5; -update noar ti set b2='DGI6MBQ6OI1JOWJKJ7HW5RNBUWG4N' where id=5; -update noar tt set v0='7N2I7E0G8OMF0D9YN22PZ714P1UM3' where id=6; -update noar ti set v0='7N2I7E0G8OMF0D9YN22PZ714P1UM3' where id=6; -update noar tt set b0='6Q8E019EXCBF0FY1E' where id=6; -update noar ti set b0='6Q8E019EXCBF0FY1E' where id=6; -update noar tt set v0='5' where id=6; -update noar ti set v0='5' where id=6; -update noar tt set b1='7R9Z76C2IUAJEZD0LI0Y3T4Q71BSKM' where id=6; -update noar ti set b1='7R9Z76C2IUAJEZD0LI0Y3T4Q71BSKM' where id=6; -update noar tt set v0='8FNO6PICJVNM8F4P' where id=6; -update noar ti set v0='8FNO6PICJVNM8F4P' where id=6; -update noar tt set b2='KGA3FLL' where id=6; -update noar ti set b2='KGA3FLL' where id=6; -update noar tt set v0='FOFOU5SSBEY74' where id=7; -update noar ti set v0='FOFOU5SSBEY74' where id=7; -update noar tt set b0='N5MI1T5J2P' where id=7; -update noar ti set b0='N5MI1T5J2P' where id=7; -update noar tt set v0='6G6B3T6B4607B6HCW' where id=7; -update noar ti set v0='6G6B3T6B4607B6HCW' where id=7; -update noar tt set b1='S4LOH43M5F6' where id=7; -update noar ti set b1='S4LOH43M5F6' where id=7; -update noar tt set v0='DHA034' where id=7; -update noar ti set v0='DHA034' where id=7; -update noar tt set b2='M7T44RG3L34D4T4FQDZ2MK0TH' where id=7; -update noar ti set b2='M7T44RG3L34D4T4FQDZ2MK0TH' where id=7; -update noar tt set v0='P2FZDIK7APOX3DK4Z' where id=8; -update noar ti set v0='P2FZDIK7APOX3DK4Z' where id=8; -update noar tt set b0='EGYD8ZXFKSC4T1XYLL706Z64ORT2WRS' where id=8; -update noar ti set b0='EGYD8ZXFKSC4T1XYLL706Z64ORT2WRS' where id=8; -update noar tt set v0='935X' where id=8; -update noar ti set v0='935X' where id=8; -update noar tt set b1='VLI4SLWTQX78L1AHA1W2UAD9SQ4A8' where id=8; -update noar ti set b1='VLI4SLWTQX78L1AHA1W2UAD9SQ4A8' where id=8; -update noar tt set v0='LVEE855CMT0VPDG9YWPFI629QPO8' where id=8; -update noar ti set v0='LVEE855CMT0VPDG9YWPFI629QPO8' where id=8; -update noar tt set b2='6NIGT1D0MP' where id=8; -update noar ti set b2='6NIGT1D0MP' where id=8; -update noar tt set v0='131K6JLGSPA17809FK7U4ZX' where id=9; -update noar ti set v0='131K6JLGSPA17809FK7U4ZX' where id=9; -update noar tt set b0='OZ6WVU765FF0GBBGLL0EP3SFFDJ3FI94' where id=9; -update noar ti set b0='OZ6WVU765FF0GBBGLL0EP3SFFDJ3FI94' where id=9; -update noar tt set v0='ZRZCEYVHE8SVX5PEM0U3FYRW7R3N3SE' where id=9; -update noar ti set v0='ZRZCEYVHE8SVX5PEM0U3FYRW7R3N3SE' where id=9; -update noar tt set b1='GRV8FZELWL4FOLG' where id=9; -update noar ti set b1='GRV8FZELWL4FOLG' where id=9; -update noar tt set v0='116I2QN' where id=9; -update noar ti set v0='116I2QN' where id=9; -update noar tt set b2='1R6P1BWARP405YJY1058C8HDKL' where id=9; -update noar ti set b2='1R6P1BWARP405YJY1058C8HDKL' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - f0 int not null, - v0 varchar(256) not null, - b0 longblob not null, - b1 tinyblob not null, - b2 blob not null -) engine=tokudb; -insert into tt values (1,0,'','','',''); -insert into tt values (2,0,'','','',''); -insert into tt values (3,0,'','','',''); -insert into tt values (4,0,'','','',''); -insert into tt values (5,0,'','','',''); -insert into tt values (6,0,'','','',''); -insert into tt values (7,0,'','','',''); -insert into tt values (8,0,'','','',''); -insert into tt values (9,0,'','','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='6V0PFHSZ1I4U0GJYMJWWL79BLQD7' where id=1; -update noar ti set v0='6V0PFHSZ1I4U0GJYMJWWL79BLQD7' where id=1; -update noar tt set b0='GFRW4X7XUDD2U2T2PQMO3MYYN0I9F45' where id=1; -update noar ti set b0='GFRW4X7XUDD2U2T2PQMO3MYYN0I9F45' where id=1; -update noar tt set v0='5YMEEJRA0942V1UQPF' where id=1; -update noar ti set v0='5YMEEJRA0942V1UQPF' where id=1; -update noar tt set b1='6CJI4KZQFS36JRRKF8TWX' where id=1; -update noar ti set b1='6CJI4KZQFS36JRRKF8TWX' where id=1; -update noar tt set v0='PVPD4XT6IP9T0KH61MGZ9G1ZI91A' where id=1; -update noar ti set v0='PVPD4XT6IP9T0KH61MGZ9G1ZI91A' where id=1; -update noar tt set b2='MTA7K' where id=1; -update noar ti set b2='MTA7K' where id=1; -update noar tt set v0='DE1J9NYSXH' where id=2; -update noar ti set v0='DE1J9NYSXH' where id=2; -update noar tt set b0='ME' where id=2; -update noar ti set b0='ME' where id=2; -update noar tt set v0='LUMY' where id=2; -update noar ti set v0='LUMY' where id=2; -update noar tt set b1='4MX64BHNUYYBQ5' where id=2; -update noar ti set b1='4MX64BHNUYYBQ5' where id=2; -update noar tt set v0='MHOHJ48ZCG5SMT4E03L' where id=2; -update noar ti set v0='MHOHJ48ZCG5SMT4E03L' where id=2; -update noar tt set b2='HJR9BOT3CK3QODJ' where id=2; -update noar ti set b2='HJR9BOT3CK3QODJ' where id=2; -update noar tt set v0='TNW2K5G2VUZS4U2JETI4XUYSLBBOVJ0' where id=3; -update noar ti set v0='TNW2K5G2VUZS4U2JETI4XUYSLBBOVJ0' where id=3; -update noar tt set b0='B1IFC' where id=3; -update noar ti set b0='B1IFC' where id=3; -update noar tt set v0='DI' where id=3; -update noar ti set v0='DI' where id=3; -update noar tt set b1='24T8Q166CZ9ZMF78MMG1NUTQ9OP4' where id=3; -update noar ti set b1='24T8Q166CZ9ZMF78MMG1NUTQ9OP4' where id=3; -update noar tt set v0='T5PTXNR7XUJHSR7T0N8HUGHUQQKER' where id=3; -update noar ti set v0='T5PTXNR7XUJHSR7T0N8HUGHUQQKER' where id=3; -update noar tt set b2='9MJMHTWGM2UGCD9B56U4ZEWR6VH5Z2' where id=3; -update noar ti set b2='9MJMHTWGM2UGCD9B56U4ZEWR6VH5Z2' where id=3; -update noar tt set v0='YOWG86VZT' where id=4; -update noar ti set v0='YOWG86VZT' where id=4; -update noar tt set b0='AGDF41DN42BRHYU57UIWVYFAYN45AG' where id=4; -update noar ti set b0='AGDF41DN42BRHYU57UIWVYFAYN45AG' where id=4; -update noar tt set v0='HS' where id=4; -update noar ti set v0='HS' where id=4; -update noar tt set b1='1OP3PZDWS02S6ENKIZY4' where id=4; -update noar ti set b1='1OP3PZDWS02S6ENKIZY4' where id=4; -update noar tt set v0='QRLR6P0FP0CZ1BO462UAUPG8NQ6E' where id=4; -update noar ti set v0='QRLR6P0FP0CZ1BO462UAUPG8NQ6E' where id=4; -update noar tt set b2='AVTGL0CGTE9OKPJ30XTFHVXX5' where id=4; -update noar ti set b2='AVTGL0CGTE9OKPJ30XTFHVXX5' where id=4; -update noar tt set v0='NV6FS02' where id=5; -update noar ti set v0='NV6FS02' where id=5; -update noar tt set b0='AY4TZT7SF8NAMBRO0SBB18BAJ3LJNW' where id=5; -update noar ti set b0='AY4TZT7SF8NAMBRO0SBB18BAJ3LJNW' where id=5; -update noar tt set v0='81F4EHR05SMKI' where id=5; -update noar ti set v0='81F4EHR05SMKI' where id=5; -update noar tt set b1='EJJBZ8S05AZBVEQN8KPG3DZLB' where id=5; -update noar ti set b1='EJJBZ8S05AZBVEQN8KPG3DZLB' where id=5; -update noar tt set v0='95B4U0TCG9K856HGXA7RW' where id=5; -update noar ti set v0='95B4U0TCG9K856HGXA7RW' where id=5; -update noar tt set b2='XBB1YZ' where id=5; -update noar ti set b2='XBB1YZ' where id=5; -update noar tt set v0='U7NDZ3BMIDZDUOWVQJMN3JWA' where id=6; -update noar ti set v0='U7NDZ3BMIDZDUOWVQJMN3JWA' where id=6; -update noar tt set b0='Z37FCV' where id=6; -update noar ti set b0='Z37FCV' where id=6; -update noar tt set v0='H3OK99TGZQ5LZ4NELPTOIER1014' where id=6; -update noar ti set v0='H3OK99TGZQ5LZ4NELPTOIER1014' where id=6; -update noar tt set b1='MWMUBQI' where id=6; -update noar ti set b1='MWMUBQI' where id=6; -update noar tt set v0='1R1' where id=6; -update noar ti set v0='1R1' where id=6; -update noar tt set b2='W4AAOWN4VXVG' where id=6; -update noar ti set b2='W4AAOWN4VXVG' where id=6; -update noar tt set v0='G3PACK2JABA3KLRKLI6X79L1KT' where id=7; -update noar ti set v0='G3PACK2JABA3KLRKLI6X79L1KT' where id=7; -update noar tt set b0='CCGVTTTHW0OD' where id=7; -update noar ti set b0='CCGVTTTHW0OD' where id=7; -update noar tt set v0='VMFRW67BCJ2PL1' where id=7; -update noar ti set v0='VMFRW67BCJ2PL1' where id=7; -update noar tt set b1='JSKM0KOTVXK' where id=7; -update noar ti set b1='JSKM0KOTVXK' where id=7; -update noar tt set v0='HDMULHJ5EO8QGR8XE' where id=7; -update noar ti set v0='HDMULHJ5EO8QGR8XE' where id=7; -update noar tt set b2='QTMB871NBPMLAEV0X5DMPOIUGNTL' where id=7; -update noar ti set b2='QTMB871NBPMLAEV0X5DMPOIUGNTL' where id=7; -update noar tt set v0='39' where id=8; -update noar ti set v0='39' where id=8; -update noar tt set b0='IE5EQ279SF81NZN0F9YQB7SZTOXI' where id=8; -update noar ti set b0='IE5EQ279SF81NZN0F9YQB7SZTOXI' where id=8; -update noar tt set v0='YRQ1U3LKY' where id=8; -update noar ti set v0='YRQ1U3LKY' where id=8; -update noar tt set b1='H50O0EBD9HVWVYYSTB0YDN' where id=8; -update noar ti set b1='H50O0EBD9HVWVYYSTB0YDN' where id=8; -update noar tt set v0='XXJTR597GXMVODUXZUQSFVOT7K13UEJ' where id=8; -update noar ti set v0='XXJTR597GXMVODUXZUQSFVOT7K13UEJ' where id=8; -update noar tt set b2='BZU77E' where id=8; -update noar ti set b2='BZU77E' where id=8; -update noar tt set v0='7UCXHJ2BHYMRV438VMEBING0V2' where id=9; -update noar ti set v0='7UCXHJ2BHYMRV438VMEBING0V2' where id=9; -update noar tt set b0='WN' where id=9; -update noar ti set b0='WN' where id=9; -update noar tt set v0='ERJVY' where id=9; -update noar ti set v0='ERJVY' where id=9; -update noar tt set b1='FFOP90Y0MRU5S547XTE' where id=9; -update noar ti set b1='FFOP90Y0MRU5S547XTE' where id=9; -update noar tt set v0='JRQA3B4V81QELFKFV0GNPAB04XVRAK1E' where id=9; -update noar ti set v0='JRQA3B4V81QELFKFV0GNPAB04XVRAK1E' where id=9; -update noar tt set b2='17NMQWC0EVHMHGDHZLGACL99S' where id=9; -update noar ti set b2='17NMQWC0EVHMHGDHZLGACL99S' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - f0 int null, - v0 varchar(32) null, - b0 longblob null, - b1 tinyblob null, - b2 mediumblob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='2N4ROCGAQ9W6C' where id=1; -update noar ti set v0='2N4ROCGAQ9W6C' where id=1; -update noar tt set b0='DGXCWUN0RG6PDFYNATN16XG' where id=1; -update noar ti set b0='DGXCWUN0RG6PDFYNATN16XG' where id=1; -update noar tt set v0='D33MZSIVZJ1AK4ML' where id=1; -update noar ti set v0='D33MZSIVZJ1AK4ML' where id=1; -update noar tt set b1='N5LJR' where id=1; -update noar ti set b1='N5LJR' where id=1; -update noar tt set v0='QHJGF8RQQ2DQZK5XE01XRQORBEY' where id=1; -update noar ti set v0='QHJGF8RQQ2DQZK5XE01XRQORBEY' where id=1; -update noar tt set b2='P0MTJZV' where id=1; -update noar ti set b2='P0MTJZV' where id=1; -update noar tt set v0='PLPRA9V8J4PZWAVPGXH5OKTTQYQ8' where id=2; -update noar ti set v0='PLPRA9V8J4PZWAVPGXH5OKTTQYQ8' where id=2; -update noar tt set b0='A3K0JMOX5W6PHDNQ3BBUNKAY0' where id=2; -update noar ti set b0='A3K0JMOX5W6PHDNQ3BBUNKAY0' where id=2; -update noar tt set v0='Q0LFZDW5Q3NAL5EDM4PA9VGAFTCY' where id=2; -update noar ti set v0='Q0LFZDW5Q3NAL5EDM4PA9VGAFTCY' where id=2; -update noar tt set b1='YOPHXZ5HBHIL6NSAF' where id=2; -update noar ti set b1='YOPHXZ5HBHIL6NSAF' where id=2; -update noar tt set v0='W11FDNBKWTMH1VAE0IK8MAZJUND' where id=2; -update noar ti set v0='W11FDNBKWTMH1VAE0IK8MAZJUND' where id=2; -update noar tt set b2='MINAY2M9UTBNN3F0NTFEJW6823H6' where id=2; -update noar ti set b2='MINAY2M9UTBNN3F0NTFEJW6823H6' where id=2; -update noar tt set v0='0IXVZAA585JQ93YX' where id=3; -update noar ti set v0='0IXVZAA585JQ93YX' where id=3; -update noar tt set b0='RHIA88UBDAEY' where id=3; -update noar ti set b0='RHIA88UBDAEY' where id=3; -update noar tt set v0='FUHCOOVI' where id=3; -update noar ti set v0='FUHCOOVI' where id=3; -update noar tt set b1='2WKSOWXP3O82B7GD5LDRWLT' where id=3; -update noar ti set b1='2WKSOWXP3O82B7GD5LDRWLT' where id=3; -update noar tt set v0='6N0BN1DITVFU7L9FUTT7AMOZ' where id=3; -update noar ti set v0='6N0BN1DITVFU7L9FUTT7AMOZ' where id=3; -update noar tt set b2='XCAEAN067QGVUH2E5PK' where id=3; -update noar ti set b2='XCAEAN067QGVUH2E5PK' where id=3; -update noar tt set v0='UC2XEZBVY18AF06' where id=4; -update noar ti set v0='UC2XEZBVY18AF06' where id=4; -update noar tt set b0='LOQTAWUXG9UZ' where id=4; -update noar ti set b0='LOQTAWUXG9UZ' where id=4; -update noar tt set v0='KFT5NK' where id=4; -update noar ti set v0='KFT5NK' where id=4; -update noar tt set b1='5P60EU13ZYKKNUSS5FIE61' where id=4; -update noar ti set b1='5P60EU13ZYKKNUSS5FIE61' where id=4; -update noar tt set v0='BD869JZAWF8H6LZKQ10A3C7IQCC' where id=4; -update noar ti set v0='BD869JZAWF8H6LZKQ10A3C7IQCC' where id=4; -update noar tt set b2='647AWAJKC1166WN' where id=4; -update noar ti set b2='647AWAJKC1166WN' where id=4; -update noar tt set v0='TVE59UI4IEQC6AUGCHEA01MP4G0' where id=5; -update noar ti set v0='TVE59UI4IEQC6AUGCHEA01MP4G0' where id=5; -update noar tt set b0='KGS5J' where id=5; -update noar ti set b0='KGS5J' where id=5; -update noar tt set v0='G3YEWM' where id=5; -update noar ti set v0='G3YEWM' where id=5; -update noar tt set b1='W7J4ED6QBUDUW6B7YO4ZZ6MWZ8MEDWJU' where id=5; -update noar ti set b1='W7J4ED6QBUDUW6B7YO4ZZ6MWZ8MEDWJU' where id=5; -update noar tt set v0='KZAF8OOIMM28VYTFWASFB' where id=5; -update noar ti set v0='KZAF8OOIMM28VYTFWASFB' where id=5; -update noar tt set b2='TJ' where id=5; -update noar ti set b2='TJ' where id=5; -update noar tt set v0='YM2591GG' where id=6; -update noar ti set v0='YM2591GG' where id=6; -update noar tt set b0='ZXWI1IPN4CSFLBBO0BPE0HHC3K5' where id=6; -update noar ti set b0='ZXWI1IPN4CSFLBBO0BPE0HHC3K5' where id=6; -update noar tt set v0='XB9T5' where id=6; -update noar ti set v0='XB9T5' where id=6; -update noar tt set b1='WATA' where id=6; -update noar ti set b1='WATA' where id=6; -update noar tt set v0='I5YTE45DJR' where id=6; -update noar ti set v0='I5YTE45DJR' where id=6; -update noar tt set b2='U3EWV8' where id=6; -update noar ti set b2='U3EWV8' where id=6; -update noar tt set v0='UJ0OKLPUNNF9P' where id=7; -update noar ti set v0='UJ0OKLPUNNF9P' where id=7; -update noar tt set b0='LGE4PATGU7D' where id=7; -update noar ti set b0='LGE4PATGU7D' where id=7; -update noar tt set v0='OTKP1H5KOU1UXJ' where id=7; -update noar ti set v0='OTKP1H5KOU1UXJ' where id=7; -update noar tt set b1='2UED6I7BZPFHI' where id=7; -update noar ti set b1='2UED6I7BZPFHI' where id=7; -update noar tt set v0='3MG5GWM8TII6U9GI' where id=7; -update noar ti set v0='3MG5GWM8TII6U9GI' where id=7; -update noar tt set b2='R3H' where id=7; -update noar ti set b2='R3H' where id=7; -update noar tt set v0='S5XW9O5FYOR65UVQ6PN' where id=8; -update noar ti set v0='S5XW9O5FYOR65UVQ6PN' where id=8; -update noar tt set b0='QNJOT24A9J0WLGW6XXGE43KS' where id=8; -update noar ti set b0='QNJOT24A9J0WLGW6XXGE43KS' where id=8; -update noar tt set v0='X' where id=8; -update noar ti set v0='X' where id=8; -update noar tt set b1='5JK9LZ' where id=8; -update noar ti set b1='5JK9LZ' where id=8; -update noar tt set v0='IM5OPSJTM22S4ILNLWYLF5IVR1E' where id=8; -update noar ti set v0='IM5OPSJTM22S4ILNLWYLF5IVR1E' where id=8; -update noar tt set b2='7IFQOFLDTABWKHZGMC' where id=8; -update noar ti set b2='7IFQOFLDTABWKHZGMC' where id=8; -update noar tt set v0='Q' where id=9; -update noar ti set v0='Q' where id=9; -update noar tt set b0='55RSJQPQGNK4IIF4WJJE' where id=9; -update noar ti set b0='55RSJQPQGNK4IIF4WJJE' where id=9; -update noar tt set v0='760X865' where id=9; -update noar ti set v0='760X865' where id=9; -update noar tt set b1='BFZDNY31A0G5S5FTCNG' where id=9; -update noar ti set b1='BFZDNY31A0G5S5FTCNG' where id=9; -update noar tt set v0='8SRMHIO8545TQJXTMZ4BCY' where id=9; -update noar ti set v0='8SRMHIO8545TQJXTMZ4BCY' where id=9; -update noar tt set b2='1J6BVHGRWUISD9KGWQD7' where id=9; -update noar ti set b2='1J6BVHGRWUISD9KGWQD7' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - f0 int null, - v0 varchar(256) null, - b0 longblob null, - b1 tinyblob null, - b2 mediumblob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='RD70OX8ODB0NCBAZTVTZEU' where id=1; -update noar ti set v0='RD70OX8ODB0NCBAZTVTZEU' where id=1; -update noar tt set b0='Y92C53L8PL15NOI' where id=1; -update noar ti set b0='Y92C53L8PL15NOI' where id=1; -update noar tt set v0='2XBQ8S7GXIVIL6YGKYCXHK' where id=1; -update noar ti set v0='2XBQ8S7GXIVIL6YGKYCXHK' where id=1; -update noar tt set b1='U8ZBXL1659' where id=1; -update noar ti set b1='U8ZBXL1659' where id=1; -update noar tt set v0='AJG3MMIQRUELS5VDOWNIAPYSH1UDT2' where id=1; -update noar ti set v0='AJG3MMIQRUELS5VDOWNIAPYSH1UDT2' where id=1; -update noar tt set b2='1L7EWWTLXGMQE9J0EEUH' where id=1; -update noar ti set b2='1L7EWWTLXGMQE9J0EEUH' where id=1; -update noar tt set v0='D7SCVRVGBC6FAL1MP3X2M72' where id=2; -update noar ti set v0='D7SCVRVGBC6FAL1MP3X2M72' where id=2; -update noar tt set b0='3MWUX' where id=2; -update noar ti set b0='3MWUX' where id=2; -update noar tt set v0='1UPJVKWX5IGL40RLX' where id=2; -update noar ti set v0='1UPJVKWX5IGL40RLX' where id=2; -update noar tt set b1='PDVOFWH6ZJS86BZH4JV9HPS3PLFL' where id=2; -update noar ti set b1='PDVOFWH6ZJS86BZH4JV9HPS3PLFL' where id=2; -update noar tt set v0='FO6WZC' where id=2; -update noar ti set v0='FO6WZC' where id=2; -update noar tt set b2='TXTDVBB9Q3U6300X3IBYRWN6' where id=2; -update noar ti set b2='TXTDVBB9Q3U6300X3IBYRWN6' where id=2; -update noar tt set v0='O0Y23DMP' where id=3; -update noar ti set v0='O0Y23DMP' where id=3; -update noar tt set b0='7SCQ125WYJHTE2F1D5KLPNLMAGKCM2EQ' where id=3; -update noar ti set b0='7SCQ125WYJHTE2F1D5KLPNLMAGKCM2EQ' where id=3; -update noar tt set v0='ZX' where id=3; -update noar ti set v0='ZX' where id=3; -update noar tt set b1='SJPJ0QKG3NMAE95F74LFA' where id=3; -update noar ti set b1='SJPJ0QKG3NMAE95F74LFA' where id=3; -update noar tt set v0='QCFIRB' where id=3; -update noar ti set v0='QCFIRB' where id=3; -update noar tt set b2='61RNR7TKM0' where id=3; -update noar ti set b2='61RNR7TKM0' where id=3; -update noar tt set v0='MOM2875A' where id=4; -update noar ti set v0='MOM2875A' where id=4; -update noar tt set b0='PVX0W272C790UEEQYI17' where id=4; -update noar ti set b0='PVX0W272C790UEEQYI17' where id=4; -update noar tt set v0='AGRRK8MKRNX' where id=4; -update noar ti set v0='AGRRK8MKRNX' where id=4; -update noar tt set b1='LJBKN4DZF5V5PYPM6PP6GHFQM' where id=4; -update noar ti set b1='LJBKN4DZF5V5PYPM6PP6GHFQM' where id=4; -update noar tt set v0='QVMNIB4R85ORTKVQB10C4' where id=4; -update noar ti set v0='QVMNIB4R85ORTKVQB10C4' where id=4; -update noar tt set b2='VK6YDMZLD368ZB7WT92B538' where id=4; -update noar ti set b2='VK6YDMZLD368ZB7WT92B538' where id=4; -update noar tt set v0='PU4PSZO48T24' where id=5; -update noar ti set v0='PU4PSZO48T24' where id=5; -update noar tt set b0='5HS8HFYCEGQXQED40' where id=5; -update noar ti set b0='5HS8HFYCEGQXQED40' where id=5; -update noar tt set v0='4145GCWLCY8' where id=5; -update noar ti set v0='4145GCWLCY8' where id=5; -update noar tt set b1='XCMUA173L2QRYTTAIEWY43' where id=5; -update noar ti set b1='XCMUA173L2QRYTTAIEWY43' where id=5; -update noar tt set v0='50E4HCA1Z02SIH2MAY' where id=5; -update noar ti set v0='50E4HCA1Z02SIH2MAY' where id=5; -update noar tt set b2='FYBX4UIECOBA3RB493JAA3A1LKTN4FQ' where id=5; -update noar ti set b2='FYBX4UIECOBA3RB493JAA3A1LKTN4FQ' where id=5; -update noar tt set v0='RMG94ZT069YMYFP2Z9DYP' where id=6; -update noar ti set v0='RMG94ZT069YMYFP2Z9DYP' where id=6; -update noar tt set b0='IPVS8JYIRKXPIRFTEIMC' where id=6; -update noar ti set b0='IPVS8JYIRKXPIRFTEIMC' where id=6; -update noar tt set v0='NV6F7C3' where id=6; -update noar ti set v0='NV6F7C3' where id=6; -update noar tt set b1='BZGRAXDER2SCL' where id=6; -update noar ti set b1='BZGRAXDER2SCL' where id=6; -update noar tt set v0='S9MGBTTMWS6L0PF1' where id=6; -update noar ti set v0='S9MGBTTMWS6L0PF1' where id=6; -update noar tt set b2='OAK32A4GZ7XNE4CUWH780ZA16XQDSL' where id=6; -update noar ti set b2='OAK32A4GZ7XNE4CUWH780ZA16XQDSL' where id=6; -update noar tt set v0='8' where id=7; -update noar ti set v0='8' where id=7; -update noar tt set b0='31NFW36WWY8S0E9JV19IRYNWL' where id=7; -update noar ti set b0='31NFW36WWY8S0E9JV19IRYNWL' where id=7; -update noar tt set v0='4' where id=7; -update noar ti set v0='4' where id=7; -update noar tt set b1='H4IF9Z5U' where id=7; -update noar ti set b1='H4IF9Z5U' where id=7; -update noar tt set v0='5O9UGK290V8HLCT2I5GQ' where id=7; -update noar ti set v0='5O9UGK290V8HLCT2I5GQ' where id=7; -update noar tt set b2='QVQSQDOI6XMSDO6EEB1DW' where id=7; -update noar ti set b2='QVQSQDOI6XMSDO6EEB1DW' where id=7; -update noar tt set v0='Q2F16N34HO02TODSGB72LXFAG0S3' where id=8; -update noar ti set v0='Q2F16N34HO02TODSGB72LXFAG0S3' where id=8; -update noar tt set b0='TO9XSLES2I9DXSH3RMD4SO2IOWKF' where id=8; -update noar ti set b0='TO9XSLES2I9DXSH3RMD4SO2IOWKF' where id=8; -update noar tt set v0='64NRTXEHBENL' where id=8; -update noar ti set v0='64NRTXEHBENL' where id=8; -update noar tt set b1='HY1' where id=8; -update noar ti set b1='HY1' where id=8; -update noar tt set v0='K86FP9U3B8BA6FOF' where id=8; -update noar ti set v0='K86FP9U3B8BA6FOF' where id=8; -update noar tt set b2='GNTAL6M8YYJLDZ43YQ5' where id=8; -update noar ti set b2='GNTAL6M8YYJLDZ43YQ5' where id=8; -update noar tt set v0='ZFKK9JVU4I3MKLF1SA79CL7OLUW20' where id=9; -update noar ti set v0='ZFKK9JVU4I3MKLF1SA79CL7OLUW20' where id=9; -update noar tt set b0='83BIKBZ8BYR' where id=9; -update noar ti set b0='83BIKBZ8BYR' where id=9; -update noar tt set v0='JQWIY8YS3T' where id=9; -update noar ti set v0='JQWIY8YS3T' where id=9; -update noar tt set b1='0GBAYKNWFG' where id=9; -update noar ti set b1='0GBAYKNWFG' where id=9; -update noar tt set v0='SF7F653H' where id=9; -update noar ti set v0='SF7F653H' where id=9; -update noar tt set b2='M8WH' where id=9; -update noar ti set b2='M8WH' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - f0 int not null, - v0 varchar(32) not null, - b0 longblob not null, - b1 tinyblob not null, - b2 mediumblob not null -) engine=tokudb; -insert into tt values (1,0,'','','',''); -insert into tt values (2,0,'','','',''); -insert into tt values (3,0,'','','',''); -insert into tt values (4,0,'','','',''); -insert into tt values (5,0,'','','',''); -insert into tt values (6,0,'','','',''); -insert into tt values (7,0,'','','',''); -insert into tt values (8,0,'','','',''); -insert into tt values (9,0,'','','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='FZ7PUE6SXVTPO1F5D2WK8CQVAOFPP9' where id=1; -update noar ti set v0='FZ7PUE6SXVTPO1F5D2WK8CQVAOFPP9' where id=1; -update noar tt set b0='EJQE8R' where id=1; -update noar ti set b0='EJQE8R' where id=1; -update noar tt set v0='QMNR1BUUN1QJJTOJLSMH' where id=1; -update noar ti set v0='QMNR1BUUN1QJJTOJLSMH' where id=1; -update noar tt set b1='IFAL1R2LOWBT7ENH22PRWPLY1TX' where id=1; -update noar ti set b1='IFAL1R2LOWBT7ENH22PRWPLY1TX' where id=1; -update noar tt set v0='K0NU1WJY7MO7X8P08ZD' where id=1; -update noar ti set v0='K0NU1WJY7MO7X8P08ZD' where id=1; -update noar tt set b2='JLLMQ47SCEUHTR' where id=1; -update noar ti set b2='JLLMQ47SCEUHTR' where id=1; -update noar tt set v0='8S' where id=2; -update noar ti set v0='8S' where id=2; -update noar tt set b0='WQJ4' where id=2; -update noar ti set b0='WQJ4' where id=2; -update noar tt set v0='YKRG0479ZPEKL1V6J530LRLOIAUN4G' where id=2; -update noar ti set v0='YKRG0479ZPEKL1V6J530LRLOIAUN4G' where id=2; -update noar tt set b1='TLF3B4JMRHU84DZ2Q6TY6UVKOWXG' where id=2; -update noar ti set b1='TLF3B4JMRHU84DZ2Q6TY6UVKOWXG' where id=2; -update noar tt set v0='FBT3D28A4J5C04F3BNXZ8DO9' where id=2; -update noar ti set v0='FBT3D28A4J5C04F3BNXZ8DO9' where id=2; -update noar tt set b2='MJL35DYL' where id=2; -update noar ti set b2='MJL35DYL' where id=2; -update noar tt set v0='Z9' where id=3; -update noar ti set v0='Z9' where id=3; -update noar tt set b0='GJHRT1W47E6' where id=3; -update noar ti set b0='GJHRT1W47E6' where id=3; -update noar tt set v0='M17PWKLFVSU6AQMX3PS' where id=3; -update noar ti set v0='M17PWKLFVSU6AQMX3PS' where id=3; -update noar tt set b1='G61C3DNJIN' where id=3; -update noar ti set b1='G61C3DNJIN' where id=3; -update noar tt set v0='EILFUTALO4ZKXPVYNT7K4SETPU' where id=3; -update noar ti set v0='EILFUTALO4ZKXPVYNT7K4SETPU' where id=3; -update noar tt set b2='KJNRTM35FLMA8PBF' where id=3; -update noar ti set b2='KJNRTM35FLMA8PBF' where id=3; -update noar tt set v0='B1NAHK1XVQR0RWZ5H9Q1KOX4E5' where id=4; -update noar ti set v0='B1NAHK1XVQR0RWZ5H9Q1KOX4E5' where id=4; -update noar tt set b0='P9A3' where id=4; -update noar ti set b0='P9A3' where id=4; -update noar tt set v0='71G2YNAMD5UB0LJ4TWJPS' where id=4; -update noar ti set v0='71G2YNAMD5UB0LJ4TWJPS' where id=4; -update noar tt set b1='2UOMPTMCWZ' where id=4; -update noar ti set b1='2UOMPTMCWZ' where id=4; -update noar tt set v0='COGVAD7G2Q1X6GAY8MTWBQGEMQXK7' where id=4; -update noar ti set v0='COGVAD7G2Q1X6GAY8MTWBQGEMQXK7' where id=4; -update noar tt set b2='FKYGXFPCB05BE1FL6RJ5' where id=4; -update noar ti set b2='FKYGXFPCB05BE1FL6RJ5' where id=4; -update noar tt set v0='Z8L2KQ' where id=5; -update noar ti set v0='Z8L2KQ' where id=5; -update noar tt set b0='SPBPR58URQJYCXA0' where id=5; -update noar ti set b0='SPBPR58URQJYCXA0' where id=5; -update noar tt set v0='RDM6PM8UZSDP6I9M58IFNZ5EBI' where id=5; -update noar ti set v0='RDM6PM8UZSDP6I9M58IFNZ5EBI' where id=5; -update noar tt set b1='43PPO8K8J118' where id=5; -update noar ti set b1='43PPO8K8J118' where id=5; -update noar tt set v0='A7PR5A4AZPAXQ6O747YNKMKJYR5I' where id=5; -update noar ti set v0='A7PR5A4AZPAXQ6O747YNKMKJYR5I' where id=5; -update noar tt set b2='L5ELRSKPFKEG' where id=5; -update noar ti set b2='L5ELRSKPFKEG' where id=5; -update noar tt set v0='NZRH9I' where id=6; -update noar ti set v0='NZRH9I' where id=6; -update noar tt set b0='UP' where id=6; -update noar ti set b0='UP' where id=6; -update noar tt set v0='S8086K3ZXZJU8' where id=6; -update noar ti set v0='S8086K3ZXZJU8' where id=6; -update noar tt set b1='720NGQSRP' where id=6; -update noar ti set b1='720NGQSRP' where id=6; -update noar tt set v0='VBFXXN2A1IA586XHMQT586E' where id=6; -update noar ti set v0='VBFXXN2A1IA586XHMQT586E' where id=6; -update noar tt set b2='M2G1W8OO' where id=6; -update noar ti set b2='M2G1W8OO' where id=6; -update noar tt set v0='2Q63A4VFY5HYCVS0FVVV60KDB' where id=7; -update noar ti set v0='2Q63A4VFY5HYCVS0FVVV60KDB' where id=7; -update noar tt set b0='GOFNXH1YLGE36L8F6IP24R' where id=7; -update noar ti set b0='GOFNXH1YLGE36L8F6IP24R' where id=7; -update noar tt set v0='HH1V76ESR6I54UH' where id=7; -update noar ti set v0='HH1V76ESR6I54UH' where id=7; -update noar tt set b1='II' where id=7; -update noar ti set b1='II' where id=7; -update noar tt set v0='6N9CDW7RN4O94MR4N9YERGEIP45WX5XD' where id=7; -update noar ti set v0='6N9CDW7RN4O94MR4N9YERGEIP45WX5XD' where id=7; -update noar tt set b2='0SKY532ITRABK3FSQD1' where id=7; -update noar ti set b2='0SKY532ITRABK3FSQD1' where id=7; -update noar tt set v0='MCIGW' where id=8; -update noar ti set v0='MCIGW' where id=8; -update noar tt set b0='VOQJVNS' where id=8; -update noar ti set b0='VOQJVNS' where id=8; -update noar tt set v0='7VQV5KG6YFU5EM6FM3' where id=8; -update noar ti set v0='7VQV5KG6YFU5EM6FM3' where id=8; -update noar tt set b1='LT8WA5J7VKQZ11A1' where id=8; -update noar ti set b1='LT8WA5J7VKQZ11A1' where id=8; -update noar tt set v0='KGEMVKXFLY8BMNUUR45CU' where id=8; -update noar ti set v0='KGEMVKXFLY8BMNUUR45CU' where id=8; -update noar tt set b2='QB99UFZ69F6X8ZAHAX5UKEVXW' where id=8; -update noar ti set b2='QB99UFZ69F6X8ZAHAX5UKEVXW' where id=8; -update noar tt set v0='775A' where id=9; -update noar ti set v0='775A' where id=9; -update noar tt set b0='H9J064UBBH' where id=9; -update noar ti set b0='H9J064UBBH' where id=9; -update noar tt set v0='2SNEAFD6PO891I7HYJB0' where id=9; -update noar ti set v0='2SNEAFD6PO891I7HYJB0' where id=9; -update noar tt set b1='FXPVE61LHENX1' where id=9; -update noar ti set b1='FXPVE61LHENX1' where id=9; -update noar tt set v0='Y9EV63TDO62ARS1G5X09OH9OYJH' where id=9; -update noar ti set v0='Y9EV63TDO62ARS1G5X09OH9OYJH' where id=9; -update noar tt set b2='LNJEFPY' where id=9; -update noar ti set b2='LNJEFPY' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - f0 int not null, - v0 varchar(256) not null, - b0 longblob not null, - b1 tinyblob not null, - b2 mediumblob not null -) engine=tokudb; -insert into tt values (1,0,'','','',''); -insert into tt values (2,0,'','','',''); -insert into tt values (3,0,'','','',''); -insert into tt values (4,0,'','','',''); -insert into tt values (5,0,'','','',''); -insert into tt values (6,0,'','','',''); -insert into tt values (7,0,'','','',''); -insert into tt values (8,0,'','','',''); -insert into tt values (9,0,'','','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='0Q6GF787KRD3' where id=1; -update noar ti set v0='0Q6GF787KRD3' where id=1; -update noar tt set b0='QSK1HG57JS8B866PRTA' where id=1; -update noar ti set b0='QSK1HG57JS8B866PRTA' where id=1; -update noar tt set v0='8STLWRX' where id=1; -update noar ti set v0='8STLWRX' where id=1; -update noar tt set b1='SRULMDFEWMBGNJIYWX7E1IRMOR' where id=1; -update noar ti set b1='SRULMDFEWMBGNJIYWX7E1IRMOR' where id=1; -update noar tt set v0='8GJBMZL' where id=1; -update noar ti set v0='8GJBMZL' where id=1; -update noar tt set b2='AQFC7N6NDHR0FO' where id=1; -update noar ti set b2='AQFC7N6NDHR0FO' where id=1; -update noar tt set v0='5LFX03FH9513APAJ6CTSGMM8KUVD' where id=2; -update noar ti set v0='5LFX03FH9513APAJ6CTSGMM8KUVD' where id=2; -update noar tt set b0='60LSBHXM22AVJN3G9R6DS3SZBXFW9L' where id=2; -update noar ti set b0='60LSBHXM22AVJN3G9R6DS3SZBXFW9L' where id=2; -update noar tt set v0='5JFR050' where id=2; -update noar ti set v0='5JFR050' where id=2; -update noar tt set b1='01HWZ9YF' where id=2; -update noar ti set b1='01HWZ9YF' where id=2; -update noar tt set v0='52VYTJM5H4MVPRE301NS' where id=2; -update noar ti set v0='52VYTJM5H4MVPRE301NS' where id=2; -update noar tt set b2='3VPQ9EKXJFM97' where id=2; -update noar ti set b2='3VPQ9EKXJFM97' where id=2; -update noar tt set v0='KDB11X1496UVI1U' where id=3; -update noar ti set v0='KDB11X1496UVI1U' where id=3; -update noar tt set b0='XGMO9QNRO9ME8TWDJIHKDELMKYZ000UY' where id=3; -update noar ti set b0='XGMO9QNRO9ME8TWDJIHKDELMKYZ000UY' where id=3; -update noar tt set v0='SMLLU79BKTT8TMN2TZ2D74HN' where id=3; -update noar ti set v0='SMLLU79BKTT8TMN2TZ2D74HN' where id=3; -update noar tt set b1='TV' where id=3; -update noar ti set b1='TV' where id=3; -update noar tt set v0='H5KAZCNJQZKBYQ5M318JXL4XHC9K' where id=3; -update noar ti set v0='H5KAZCNJQZKBYQ5M318JXL4XHC9K' where id=3; -update noar tt set b2='RT4M5QLJ5LYT' where id=3; -update noar ti set b2='RT4M5QLJ5LYT' where id=3; -update noar tt set v0='VC8S6OMVW' where id=4; -update noar ti set v0='VC8S6OMVW' where id=4; -update noar tt set b0='9MEZF8V4PLZLW' where id=4; -update noar ti set b0='9MEZF8V4PLZLW' where id=4; -update noar tt set v0='PFB2SCNE22U9BNBGQRNJACHDVV2QI' where id=4; -update noar ti set v0='PFB2SCNE22U9BNBGQRNJACHDVV2QI' where id=4; -update noar tt set b1='MIJHPF5N59NR9EDW0' where id=4; -update noar ti set b1='MIJHPF5N59NR9EDW0' where id=4; -update noar tt set v0='WOWE2C3IODFJFMC9LWS' where id=4; -update noar ti set v0='WOWE2C3IODFJFMC9LWS' where id=4; -update noar tt set b2='H0D5P8Q8IC6GD0DOHZT5K4N0Q6F' where id=4; -update noar ti set b2='H0D5P8Q8IC6GD0DOHZT5K4N0Q6F' where id=4; -update noar tt set v0='2NDGE1Z3P5IXLJJWVZXYOEGA' where id=5; -update noar ti set v0='2NDGE1Z3P5IXLJJWVZXYOEGA' where id=5; -update noar tt set b0='FZNEIU84PJBN3C6YYI' where id=5; -update noar ti set b0='FZNEIU84PJBN3C6YYI' where id=5; -update noar tt set v0='BLP441B5SNKUTP535V2M4ICEPHRG7VTT' where id=5; -update noar ti set v0='BLP441B5SNKUTP535V2M4ICEPHRG7VTT' where id=5; -update noar tt set b1='95YKOE4Q2I8QTUHRRTEWYTX0RFJQ' where id=5; -update noar ti set b1='95YKOE4Q2I8QTUHRRTEWYTX0RFJQ' where id=5; -update noar tt set v0='7ZOVBYLA' where id=5; -update noar ti set v0='7ZOVBYLA' where id=5; -update noar tt set b2='5L1Y55XLRJ27M6V3' where id=5; -update noar ti set b2='5L1Y55XLRJ27M6V3' where id=5; -update noar tt set v0='W08S2MF5WBGL2EGYSKXMP' where id=6; -update noar ti set v0='W08S2MF5WBGL2EGYSKXMP' where id=6; -update noar tt set b0='OIQZP03O4WLDJNX4PIMQ7IX' where id=6; -update noar ti set b0='OIQZP03O4WLDJNX4PIMQ7IX' where id=6; -update noar tt set v0='TGT' where id=6; -update noar ti set v0='TGT' where id=6; -update noar tt set b1='A' where id=6; -update noar ti set b1='A' where id=6; -update noar tt set v0='764RESI3Q' where id=6; -update noar ti set v0='764RESI3Q' where id=6; -update noar tt set b2='6' where id=6; -update noar ti set b2='6' where id=6; -update noar tt set v0='7BAO314HNL61D' where id=7; -update noar ti set v0='7BAO314HNL61D' where id=7; -update noar tt set b0='L8QMLIURK' where id=7; -update noar ti set b0='L8QMLIURK' where id=7; -update noar tt set v0='91ZVZS14NYX' where id=7; -update noar ti set v0='91ZVZS14NYX' where id=7; -update noar tt set b1='EC99D' where id=7; -update noar ti set b1='EC99D' where id=7; -update noar tt set v0='7MWYVKTNC7' where id=7; -update noar ti set v0='7MWYVKTNC7' where id=7; -update noar tt set b2='D139L8F4BICXB2M34' where id=7; -update noar ti set b2='D139L8F4BICXB2M34' where id=7; -update noar tt set v0='U' where id=8; -update noar ti set v0='U' where id=8; -update noar tt set b0='XSY2VZ07AXYUO0NS77ESUHBR' where id=8; -update noar ti set b0='XSY2VZ07AXYUO0NS77ESUHBR' where id=8; -update noar tt set v0='GCR' where id=8; -update noar ti set v0='GCR' where id=8; -update noar tt set b1='7749S6RDRLQV' where id=8; -update noar ti set b1='7749S6RDRLQV' where id=8; -update noar tt set v0='25CYCOGKTM6DEU17' where id=8; -update noar ti set v0='25CYCOGKTM6DEU17' where id=8; -update noar tt set b2='AXJ5W' where id=8; -update noar ti set b2='AXJ5W' where id=8; -update noar tt set v0='4P3MNGQRKFGRP' where id=9; -update noar ti set v0='4P3MNGQRKFGRP' where id=9; -update noar tt set b0='ZOE411' where id=9; -update noar ti set b0='ZOE411' where id=9; -update noar tt set v0='2BWZ0FDLXYLJB' where id=9; -update noar ti set v0='2BWZ0FDLXYLJB' where id=9; -update noar tt set b1='QKOYU80ZTH4JESLZW5T44PKV' where id=9; -update noar ti set b1='QKOYU80ZTH4JESLZW5T44PKV' where id=9; -update noar tt set v0='XYHEEQG3ANCU' where id=9; -update noar ti set v0='XYHEEQG3ANCU' where id=9; -update noar tt set b2='Y' where id=9; -update noar ti set b2='Y' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - f0 int null, - v0 varchar(32) null, - b0 longblob null, - b1 tinyblob null, - b2 longblob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='AMKN518R' where id=1; -update noar ti set v0='AMKN518R' where id=1; -update noar tt set b0='0FXWYX' where id=1; -update noar ti set b0='0FXWYX' where id=1; -update noar tt set v0='DS7H4U6ZVWBNESD40PO' where id=1; -update noar ti set v0='DS7H4U6ZVWBNESD40PO' where id=1; -update noar tt set b1='0MRZJXM80RDB' where id=1; -update noar ti set b1='0MRZJXM80RDB' where id=1; -update noar tt set v0='YGG' where id=1; -update noar ti set v0='YGG' where id=1; -update noar tt set b2='8PDQZGLX0B16C6R4WD0' where id=1; -update noar ti set b2='8PDQZGLX0B16C6R4WD0' where id=1; -update noar tt set v0='AOW238NCU56ABN9AX8SYH24ICP1SGJA' where id=2; -update noar ti set v0='AOW238NCU56ABN9AX8SYH24ICP1SGJA' where id=2; -update noar tt set b0='P271B61YFCH04QI9' where id=2; -update noar ti set b0='P271B61YFCH04QI9' where id=2; -update noar tt set v0='R0AG194' where id=2; -update noar ti set v0='R0AG194' where id=2; -update noar tt set b1='DXM59' where id=2; -update noar ti set b1='DXM59' where id=2; -update noar tt set v0='1GAFD' where id=2; -update noar ti set v0='1GAFD' where id=2; -update noar tt set b2='V08C' where id=2; -update noar ti set b2='V08C' where id=2; -update noar tt set v0='UESSCADYUXHI603Z66AQKPB' where id=3; -update noar ti set v0='UESSCADYUXHI603Z66AQKPB' where id=3; -update noar tt set b0='0OO05YC8NW53LXJQ7K3SU5UH9' where id=3; -update noar ti set b0='0OO05YC8NW53LXJQ7K3SU5UH9' where id=3; -update noar tt set v0='ADE7SQ1MM7UTY1S3044JX' where id=3; -update noar ti set v0='ADE7SQ1MM7UTY1S3044JX' where id=3; -update noar tt set b1='6MZJOLDIY0YN8Q' where id=3; -update noar ti set b1='6MZJOLDIY0YN8Q' where id=3; -update noar tt set v0='WDCN6P3APTUDKJBE8UM9MMPSBZSVM3' where id=3; -update noar ti set v0='WDCN6P3APTUDKJBE8UM9MMPSBZSVM3' where id=3; -update noar tt set b2='XGPXTP5HYBY0GXYUPKSFWQOSCR' where id=3; -update noar ti set b2='XGPXTP5HYBY0GXYUPKSFWQOSCR' where id=3; -update noar tt set v0='IA1M3GZP' where id=4; -update noar ti set v0='IA1M3GZP' where id=4; -update noar tt set b0='XFW9XK8F7V3YWPE72NEXILJOR2X1W' where id=4; -update noar ti set b0='XFW9XK8F7V3YWPE72NEXILJOR2X1W' where id=4; -update noar tt set v0='RJ25GDFJ6FLETIGOLK' where id=4; -update noar ti set v0='RJ25GDFJ6FLETIGOLK' where id=4; -update noar tt set b1='B5CV97LRB29AM0MLYPYXC3S' where id=4; -update noar ti set b1='B5CV97LRB29AM0MLYPYXC3S' where id=4; -update noar tt set v0='3EO' where id=4; -update noar ti set v0='3EO' where id=4; -update noar tt set b2='2GRR0CMCH4DNQL663JRX5' where id=4; -update noar ti set b2='2GRR0CMCH4DNQL663JRX5' where id=4; -update noar tt set v0='F2HM9HI4TDCYSULTE' where id=5; -update noar ti set v0='F2HM9HI4TDCYSULTE' where id=5; -update noar tt set b0='1516QOFM8HYHA' where id=5; -update noar ti set b0='1516QOFM8HYHA' where id=5; -update noar tt set v0='1K3' where id=5; -update noar ti set v0='1K3' where id=5; -update noar tt set b1='H' where id=5; -update noar ti set b1='H' where id=5; -update noar tt set v0='53XP3Q38QT' where id=5; -update noar ti set v0='53XP3Q38QT' where id=5; -update noar tt set b2='A0Y8M7A7BH74LJT63Q8A' where id=5; -update noar ti set b2='A0Y8M7A7BH74LJT63Q8A' where id=5; -update noar tt set v0='NI5ZAZXKLQERKZLZ9RA190EUS' where id=6; -update noar ti set v0='NI5ZAZXKLQERKZLZ9RA190EUS' where id=6; -update noar tt set b0='N749' where id=6; -update noar ti set b0='N749' where id=6; -update noar tt set v0='BJIUELODFXRKSTUT5ZMX9AWFREPTN7' where id=6; -update noar ti set v0='BJIUELODFXRKSTUT5ZMX9AWFREPTN7' where id=6; -update noar tt set b1='CWKMETCRQY588KS' where id=6; -update noar ti set b1='CWKMETCRQY588KS' where id=6; -update noar tt set v0='1P7O51T11A81QLQ8BAQ2IYF' where id=6; -update noar ti set v0='1P7O51T11A81QLQ8BAQ2IYF' where id=6; -update noar tt set b2='5MAFSL7XGACIL46HYXUY' where id=6; -update noar ti set b2='5MAFSL7XGACIL46HYXUY' where id=6; -update noar tt set v0='AXQV94DIW' where id=7; -update noar ti set v0='AXQV94DIW' where id=7; -update noar tt set b0='NQS9SRKTXP9' where id=7; -update noar ti set b0='NQS9SRKTXP9' where id=7; -update noar tt set v0='PFBEWG2NMJ6MN61RD1GJ7ANVSZONP3N8' where id=7; -update noar ti set v0='PFBEWG2NMJ6MN61RD1GJ7ANVSZONP3N8' where id=7; -update noar tt set b1='JV57OKZV6KJU8L5KD3NRQV86' where id=7; -update noar ti set b1='JV57OKZV6KJU8L5KD3NRQV86' where id=7; -update noar tt set v0='FXCIF6H9S7OZ5MRVB' where id=7; -update noar ti set v0='FXCIF6H9S7OZ5MRVB' where id=7; -update noar tt set b2='BYTJIU1IW6SRY' where id=7; -update noar ti set b2='BYTJIU1IW6SRY' where id=7; -update noar tt set v0='ARDKPAQZB62ST2MYFV9DRFY7Y' where id=8; -update noar ti set v0='ARDKPAQZB62ST2MYFV9DRFY7Y' where id=8; -update noar tt set b0='GBBERWWWTH7YJCCSIC6' where id=8; -update noar ti set b0='GBBERWWWTH7YJCCSIC6' where id=8; -update noar tt set v0='IAYJ3L6OPXV1T16WFD04P88SMS6I' where id=8; -update noar ti set v0='IAYJ3L6OPXV1T16WFD04P88SMS6I' where id=8; -update noar tt set b1='G0FE61ARBFKMOVDL81P4WG4CW56' where id=8; -update noar ti set b1='G0FE61ARBFKMOVDL81P4WG4CW56' where id=8; -update noar tt set v0='KL9H6FWKTTNJ8DMCD2LJXFX9YN' where id=8; -update noar ti set v0='KL9H6FWKTTNJ8DMCD2LJXFX9YN' where id=8; -update noar tt set b2='ZGCH2QY2USXDSUULHJTWDLZEGFRZOWI' where id=8; -update noar ti set b2='ZGCH2QY2USXDSUULHJTWDLZEGFRZOWI' where id=8; -update noar tt set v0='RDB0SV' where id=9; -update noar ti set v0='RDB0SV' where id=9; -update noar tt set b0='CP4D3J8INCWF9RDZ9FHN2' where id=9; -update noar ti set b0='CP4D3J8INCWF9RDZ9FHN2' where id=9; -update noar tt set v0='WTTNO' where id=9; -update noar ti set v0='WTTNO' where id=9; -update noar tt set b1='EY5N7RCKWEP9TA8QOQY7' where id=9; -update noar ti set b1='EY5N7RCKWEP9TA8QOQY7' where id=9; -update noar tt set v0='UCSEZ4HAY27S4VPB8EPPMJLQYDR6EY9' where id=9; -update noar ti set v0='UCSEZ4HAY27S4VPB8EPPMJLQYDR6EY9' where id=9; -update noar tt set b2='3L53BEZVT2YKOYV1WOE9MQHCH06CQT' where id=9; -update noar ti set b2='3L53BEZVT2YKOYV1WOE9MQHCH06CQT' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - f0 int null, - v0 varchar(256) null, - b0 longblob null, - b1 tinyblob null, - b2 longblob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='SOWO51D' where id=1; -update noar ti set v0='SOWO51D' where id=1; -update noar tt set b0='CW42JX9F' where id=1; -update noar ti set b0='CW42JX9F' where id=1; -update noar tt set v0='9352UQCNYHHRRX22HL' where id=1; -update noar ti set v0='9352UQCNYHHRRX22HL' where id=1; -update noar tt set b1='L5UR0OGI3WQ2MGI9797A3W087NZ3UZ' where id=1; -update noar ti set b1='L5UR0OGI3WQ2MGI9797A3W087NZ3UZ' where id=1; -update noar tt set v0='KJ0I2YS7XM5L2NA' where id=1; -update noar ti set v0='KJ0I2YS7XM5L2NA' where id=1; -update noar tt set b2='K6OT2MVZJ60BM' where id=1; -update noar ti set b2='K6OT2MVZJ60BM' where id=1; -update noar tt set v0='1R' where id=2; -update noar ti set v0='1R' where id=2; -update noar tt set b0='YNLCQAN6VRAZ5582G4QHZKY' where id=2; -update noar ti set b0='YNLCQAN6VRAZ5582G4QHZKY' where id=2; -update noar tt set v0='CF' where id=2; -update noar ti set v0='CF' where id=2; -update noar tt set b1='LGA0GYM4B' where id=2; -update noar ti set b1='LGA0GYM4B' where id=2; -update noar tt set v0='ZETIV9WPQIXMXO' where id=2; -update noar ti set v0='ZETIV9WPQIXMXO' where id=2; -update noar tt set b2='084R77QBRAE8WR3628C9WWDPZG3OFF82' where id=2; -update noar ti set b2='084R77QBRAE8WR3628C9WWDPZG3OFF82' where id=2; -update noar tt set v0='HHJLNXF0DYJO' where id=3; -update noar ti set v0='HHJLNXF0DYJO' where id=3; -update noar tt set b0='TFGZ6T98E' where id=3; -update noar ti set b0='TFGZ6T98E' where id=3; -update noar tt set v0='Q7WE08LW97RNLVQ2HE2' where id=3; -update noar ti set v0='Q7WE08LW97RNLVQ2HE2' where id=3; -update noar tt set b1='PK27J26DJRNSE8Z5Y3D' where id=3; -update noar ti set b1='PK27J26DJRNSE8Z5Y3D' where id=3; -update noar tt set v0='KS3DE63Z9GCZTFH0Y6S6D6LUFS2Q16' where id=3; -update noar ti set v0='KS3DE63Z9GCZTFH0Y6S6D6LUFS2Q16' where id=3; -update noar tt set b2='Y7H0IDONT9IFRBSRU53PBB3OBEYZP' where id=3; -update noar ti set b2='Y7H0IDONT9IFRBSRU53PBB3OBEYZP' where id=3; -update noar tt set v0='8W2CJVT4WA54UI' where id=4; -update noar ti set v0='8W2CJVT4WA54UI' where id=4; -update noar tt set b0='KR9MOZJ77HSZY1DM6QDYQRMF' where id=4; -update noar ti set b0='KR9MOZJ77HSZY1DM6QDYQRMF' where id=4; -update noar tt set v0='V73' where id=4; -update noar ti set v0='V73' where id=4; -update noar tt set b1='ODYJBLEREP6' where id=4; -update noar ti set b1='ODYJBLEREP6' where id=4; -update noar tt set v0='NZQ4D2' where id=4; -update noar ti set v0='NZQ4D2' where id=4; -update noar tt set b2='PQAZ5' where id=4; -update noar ti set b2='PQAZ5' where id=4; -update noar tt set v0='0RDJOP1076MERNE' where id=5; -update noar ti set v0='0RDJOP1076MERNE' where id=5; -update noar tt set b0='1QDVZPW6WRZSI12' where id=5; -update noar ti set b0='1QDVZPW6WRZSI12' where id=5; -update noar tt set v0='RTYH5GEXL24NL6YUUMZZ0D' where id=5; -update noar ti set v0='RTYH5GEXL24NL6YUUMZZ0D' where id=5; -update noar tt set b1='8ZWA3JYXBJW5MTFW8E1' where id=5; -update noar ti set b1='8ZWA3JYXBJW5MTFW8E1' where id=5; -update noar tt set v0='AQCVQ1AENG3NLEL7R65GAD' where id=5; -update noar ti set v0='AQCVQ1AENG3NLEL7R65GAD' where id=5; -update noar tt set b2='12M9TR' where id=5; -update noar ti set b2='12M9TR' where id=5; -update noar tt set v0='OGWXVFYWBCCHAKOT0F7B600VSES4' where id=6; -update noar ti set v0='OGWXVFYWBCCHAKOT0F7B600VSES4' where id=6; -update noar tt set b0='PFR11' where id=6; -update noar ti set b0='PFR11' where id=6; -update noar tt set v0='NM' where id=6; -update noar ti set v0='NM' where id=6; -update noar tt set b1='YO' where id=6; -update noar ti set b1='YO' where id=6; -update noar tt set v0='08' where id=6; -update noar ti set v0='08' where id=6; -update noar tt set b2='ZAFFIM7JPH5XQ8QMWX' where id=6; -update noar ti set b2='ZAFFIM7JPH5XQ8QMWX' where id=6; -update noar tt set v0='TL3PSNXPZEXVJ9MJJ034' where id=7; -update noar ti set v0='TL3PSNXPZEXVJ9MJJ034' where id=7; -update noar tt set b0='D33GM' where id=7; -update noar ti set b0='D33GM' where id=7; -update noar tt set v0='SWGVJF9M' where id=7; -update noar ti set v0='SWGVJF9M' where id=7; -update noar tt set b1='VXRVHPBENQ50KG65JIHR' where id=7; -update noar ti set b1='VXRVHPBENQ50KG65JIHR' where id=7; -update noar tt set v0='ARKIXE' where id=7; -update noar ti set v0='ARKIXE' where id=7; -update noar tt set b2='QSGER' where id=7; -update noar ti set b2='QSGER' where id=7; -update noar tt set v0='ROIXMP10Q9Y3KN5AVX9GUG' where id=8; -update noar ti set v0='ROIXMP10Q9Y3KN5AVX9GUG' where id=8; -update noar tt set b0='RKGA9Y3U6QZ77YJ5KS00O' where id=8; -update noar ti set b0='RKGA9Y3U6QZ77YJ5KS00O' where id=8; -update noar tt set v0='F7D8ZEV0' where id=8; -update noar ti set v0='F7D8ZEV0' where id=8; -update noar tt set b1='JBKE385POLSW3QALFRCN' where id=8; -update noar ti set b1='JBKE385POLSW3QALFRCN' where id=8; -update noar tt set v0='ORW3Y9T11C8Q' where id=8; -update noar ti set v0='ORW3Y9T11C8Q' where id=8; -update noar tt set b2='LWNNCF8H' where id=8; -update noar ti set b2='LWNNCF8H' where id=8; -update noar tt set v0='FHU92WKHX4KUMNRKHK1K5MJNPCWVGFD' where id=9; -update noar ti set v0='FHU92WKHX4KUMNRKHK1K5MJNPCWVGFD' where id=9; -update noar tt set b0='X96QN56HQU83HKPWEKB' where id=9; -update noar ti set b0='X96QN56HQU83HKPWEKB' where id=9; -update noar tt set v0='ONNW9IYZZ2N6R' where id=9; -update noar ti set v0='ONNW9IYZZ2N6R' where id=9; -update noar tt set b1='KH3TJ' where id=9; -update noar ti set b1='KH3TJ' where id=9; -update noar tt set v0='CTE13H2593J839' where id=9; -update noar ti set v0='CTE13H2593J839' where id=9; -update noar tt set b2='RD7AZ' where id=9; -update noar ti set b2='RD7AZ' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - f0 int not null, - v0 varchar(32) not null, - b0 longblob not null, - b1 tinyblob not null, - b2 longblob not null -) engine=tokudb; -insert into tt values (1,0,'','','',''); -insert into tt values (2,0,'','','',''); -insert into tt values (3,0,'','','',''); -insert into tt values (4,0,'','','',''); -insert into tt values (5,0,'','','',''); -insert into tt values (6,0,'','','',''); -insert into tt values (7,0,'','','',''); -insert into tt values (8,0,'','','',''); -insert into tt values (9,0,'','','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='JYD0' where id=1; -update noar ti set v0='JYD0' where id=1; -update noar tt set b0='F7IB' where id=1; -update noar ti set b0='F7IB' where id=1; -update noar tt set v0='J5' where id=1; -update noar ti set v0='J5' where id=1; -update noar tt set b1='XDODL' where id=1; -update noar ti set b1='XDODL' where id=1; -update noar tt set v0='SKJ1150CIQOO1DWL81E' where id=1; -update noar ti set v0='SKJ1150CIQOO1DWL81E' where id=1; -update noar tt set b2='LX2KWJKX1MWC9ZEPM49DCKY' where id=1; -update noar ti set b2='LX2KWJKX1MWC9ZEPM49DCKY' where id=1; -update noar tt set v0='GVXF2MFZ5H0GTKIJ6D70K1R3PZFR' where id=2; -update noar ti set v0='GVXF2MFZ5H0GTKIJ6D70K1R3PZFR' where id=2; -update noar tt set b0='09DA' where id=2; -update noar ti set b0='09DA' where id=2; -update noar tt set v0='CRJN1TBRKT5T5GOEMVG' where id=2; -update noar ti set v0='CRJN1TBRKT5T5GOEMVG' where id=2; -update noar tt set b1='F0JMXZ7S90' where id=2; -update noar ti set b1='F0JMXZ7S90' where id=2; -update noar tt set v0='LP6A6' where id=2; -update noar ti set v0='LP6A6' where id=2; -update noar tt set b2='UIQD0KP1CHQLUDI3' where id=2; -update noar ti set b2='UIQD0KP1CHQLUDI3' where id=2; -update noar tt set v0='22LYYRZJHDF5NL2UDXUNRB8T5' where id=3; -update noar ti set v0='22LYYRZJHDF5NL2UDXUNRB8T5' where id=3; -update noar tt set b0='JL4E4EX51Y1H9GIH8VZ5ZLYIM8S2EGM9' where id=3; -update noar ti set b0='JL4E4EX51Y1H9GIH8VZ5ZLYIM8S2EGM9' where id=3; -update noar tt set v0='V9EHCQKJZP7BBEWPCYGUMY0' where id=3; -update noar ti set v0='V9EHCQKJZP7BBEWPCYGUMY0' where id=3; -update noar tt set b1='EWV05LVNEISX2' where id=3; -update noar ti set b1='EWV05LVNEISX2' where id=3; -update noar tt set v0='8MDS8' where id=3; -update noar ti set v0='8MDS8' where id=3; -update noar tt set b2='UTDKHY1MRV5GM9LZJ8E8XWK6TV6ZJADW' where id=3; -update noar ti set b2='UTDKHY1MRV5GM9LZJ8E8XWK6TV6ZJADW' where id=3; -update noar tt set v0='VQV6NYXA69FRRCN9ZF' where id=4; -update noar ti set v0='VQV6NYXA69FRRCN9ZF' where id=4; -update noar tt set b0='LGGD3WK09KYHRF40S06JS9XS' where id=4; -update noar ti set b0='LGGD3WK09KYHRF40S06JS9XS' where id=4; -update noar tt set v0='H0L5VK4HARVUKH6LD69QCK4' where id=4; -update noar ti set v0='H0L5VK4HARVUKH6LD69QCK4' where id=4; -update noar tt set b1='96DVSAFX6U5DZYW89SH3R7ALK' where id=4; -update noar ti set b1='96DVSAFX6U5DZYW89SH3R7ALK' where id=4; -update noar tt set v0='3VUSH3BLQ36VWLSED6EHH85R' where id=4; -update noar ti set v0='3VUSH3BLQ36VWLSED6EHH85R' where id=4; -update noar tt set b2='BKGOPGAJZKADFH5KGY6LBPF' where id=4; -update noar ti set b2='BKGOPGAJZKADFH5KGY6LBPF' where id=4; -update noar tt set v0='8ZLDZ8PWMTE1A9XK94RQ7TS' where id=5; -update noar ti set v0='8ZLDZ8PWMTE1A9XK94RQ7TS' where id=5; -update noar tt set b0='YOMCYS3K88OSZ6V2' where id=5; -update noar ti set b0='YOMCYS3K88OSZ6V2' where id=5; -update noar tt set v0='4WGEQV1EISR' where id=5; -update noar ti set v0='4WGEQV1EISR' where id=5; -update noar tt set b1='9LED93E1RDOJ9' where id=5; -update noar ti set b1='9LED93E1RDOJ9' where id=5; -update noar tt set v0='1UGDMIJREX58WFGDWFJYH8IYV308L' where id=5; -update noar ti set v0='1UGDMIJREX58WFGDWFJYH8IYV308L' where id=5; -update noar tt set b2='9M0EZCD' where id=5; -update noar ti set b2='9M0EZCD' where id=5; -update noar tt set v0='5' where id=6; -update noar ti set v0='5' where id=6; -update noar tt set b0='OKT9FZDP9K0CVL0A4V9E' where id=6; -update noar ti set b0='OKT9FZDP9K0CVL0A4V9E' where id=6; -update noar tt set v0='5UEGPRI7PWJC2F1KPFLB' where id=6; -update noar ti set v0='5UEGPRI7PWJC2F1KPFLB' where id=6; -update noar tt set b1='180KB' where id=6; -update noar ti set b1='180KB' where id=6; -update noar tt set v0='GCNA' where id=6; -update noar ti set v0='GCNA' where id=6; -update noar tt set b2='IK83PAN49HVMR' where id=6; -update noar ti set b2='IK83PAN49HVMR' where id=6; -update noar tt set v0='TCMPVZMV122EWAOB4ZVT5TBB' where id=7; -update noar ti set v0='TCMPVZMV122EWAOB4ZVT5TBB' where id=7; -update noar tt set b0='YS7RLIHD6SLTJ' where id=7; -update noar ti set b0='YS7RLIHD6SLTJ' where id=7; -update noar tt set v0='WANRFGN5' where id=7; -update noar ti set v0='WANRFGN5' where id=7; -update noar tt set b1='YTKXXC1XV8QFQLIAYON5LIXE2VWZDZ' where id=7; -update noar ti set b1='YTKXXC1XV8QFQLIAYON5LIXE2VWZDZ' where id=7; -update noar tt set v0='UTW2A2' where id=7; -update noar ti set v0='UTW2A2' where id=7; -update noar tt set b2='C0V' where id=7; -update noar ti set b2='C0V' where id=7; -update noar tt set v0='O0SOVFM9E7YD' where id=8; -update noar ti set v0='O0SOVFM9E7YD' where id=8; -update noar tt set b0='HJRRZ5IGYO1AA6MIDA7LFQQY' where id=8; -update noar ti set b0='HJRRZ5IGYO1AA6MIDA7LFQQY' where id=8; -update noar tt set v0='SZBZALZOODO9ME1ZTUUI26P' where id=8; -update noar ti set v0='SZBZALZOODO9ME1ZTUUI26P' where id=8; -update noar tt set b1='4HSU2L8IQV5H20Y' where id=8; -update noar ti set b1='4HSU2L8IQV5H20Y' where id=8; -update noar tt set v0='L0DPUJENALYJIG2D87N0' where id=8; -update noar ti set v0='L0DPUJENALYJIG2D87N0' where id=8; -update noar tt set b2='74SM' where id=8; -update noar ti set b2='74SM' where id=8; -update noar tt set v0='ASF47OFFZ7Y0DUSXG08T' where id=9; -update noar ti set v0='ASF47OFFZ7Y0DUSXG08T' where id=9; -update noar tt set b0='ZUM' where id=9; -update noar ti set b0='ZUM' where id=9; -update noar tt set v0='U2Q0' where id=9; -update noar ti set v0='U2Q0' where id=9; -update noar tt set b1='8IA2SRMDYD' where id=9; -update noar ti set b1='8IA2SRMDYD' where id=9; -update noar tt set v0='NN69CTRFMB9QYOQ' where id=9; -update noar ti set v0='NN69CTRFMB9QYOQ' where id=9; -update noar tt set b2='ZWMPABBX5CZZJXDOS12GKS' where id=9; -update noar ti set b2='ZWMPABBX5CZZJXDOS12GKS' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - f0 int not null, - v0 varchar(256) not null, - b0 longblob not null, - b1 tinyblob not null, - b2 longblob not null -) engine=tokudb; -insert into tt values (1,0,'','','',''); -insert into tt values (2,0,'','','',''); -insert into tt values (3,0,'','','',''); -insert into tt values (4,0,'','','',''); -insert into tt values (5,0,'','','',''); -insert into tt values (6,0,'','','',''); -insert into tt values (7,0,'','','',''); -insert into tt values (8,0,'','','',''); -insert into tt values (9,0,'','','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='M99S8I2IRCQH5CD46VLA427' where id=1; -update noar ti set v0='M99S8I2IRCQH5CD46VLA427' where id=1; -update noar tt set b0='4E02MII1T7NLO' where id=1; -update noar ti set b0='4E02MII1T7NLO' where id=1; -update noar tt set v0='3J573ZT' where id=1; -update noar ti set v0='3J573ZT' where id=1; -update noar tt set b1='QRF9UIKJ5DLZ2YQCKXP1I' where id=1; -update noar ti set b1='QRF9UIKJ5DLZ2YQCKXP1I' where id=1; -update noar tt set v0='19SDTJ5F9B9QX266FTKW' where id=1; -update noar ti set v0='19SDTJ5F9B9QX266FTKW' where id=1; -update noar tt set b2='SSHDFQ7UTSKK6PV9WSSZ42PLV' where id=1; -update noar ti set b2='SSHDFQ7UTSKK6PV9WSSZ42PLV' where id=1; -update noar tt set v0='PC' where id=2; -update noar ti set v0='PC' where id=2; -update noar tt set b0='8' where id=2; -update noar ti set b0='8' where id=2; -update noar tt set v0='6E4ZRH4NFG188CWEN2' where id=2; -update noar ti set v0='6E4ZRH4NFG188CWEN2' where id=2; -update noar tt set b1='XBUMIMTVN86' where id=2; -update noar ti set b1='XBUMIMTVN86' where id=2; -update noar tt set v0='NHWR4UJ04FKKNC' where id=2; -update noar ti set v0='NHWR4UJ04FKKNC' where id=2; -update noar tt set b2='0XKDA8UWY9K' where id=2; -update noar ti set b2='0XKDA8UWY9K' where id=2; -update noar tt set v0='ZJ5DUZWT175X7OJUWL3ENVU' where id=3; -update noar ti set v0='ZJ5DUZWT175X7OJUWL3ENVU' where id=3; -update noar tt set b0='QUE2HOAPC5OL250AN39QO4HT' where id=3; -update noar ti set b0='QUE2HOAPC5OL250AN39QO4HT' where id=3; -update noar tt set v0='TII50M0DWAHABRACZ' where id=3; -update noar ti set v0='TII50M0DWAHABRACZ' where id=3; -update noar tt set b1='9RPJ3TE7G' where id=3; -update noar ti set b1='9RPJ3TE7G' where id=3; -update noar tt set v0='K' where id=3; -update noar ti set v0='K' where id=3; -update noar tt set b2='PY72N2Y98VISCGZ3Q8ADOURI6CE' where id=3; -update noar ti set b2='PY72N2Y98VISCGZ3Q8ADOURI6CE' where id=3; -update noar tt set v0='B0D033EEHKFT1XHNT' where id=4; -update noar ti set v0='B0D033EEHKFT1XHNT' where id=4; -update noar tt set b0='X' where id=4; -update noar ti set b0='X' where id=4; -update noar tt set v0='P1049NF91FRET2FUMFI' where id=4; -update noar ti set v0='P1049NF91FRET2FUMFI' where id=4; -update noar tt set b1='QALRV6BAVNH36RX171OIEK3F58' where id=4; -update noar ti set b1='QALRV6BAVNH36RX171OIEK3F58' where id=4; -update noar tt set v0='P3UJI0DVU596CVXB672JJXNF1Q4S7' where id=4; -update noar ti set v0='P3UJI0DVU596CVXB672JJXNF1Q4S7' where id=4; -update noar tt set b2='BVH124539SW3IWLJYF58E5QWRWVUQC' where id=4; -update noar ti set b2='BVH124539SW3IWLJYF58E5QWRWVUQC' where id=4; -update noar tt set v0='PG4FFS7E1VI8DC0' where id=5; -update noar ti set v0='PG4FFS7E1VI8DC0' where id=5; -update noar tt set b0='FVFGBLHRA2AEPZ80FBIMYK8' where id=5; -update noar ti set b0='FVFGBLHRA2AEPZ80FBIMYK8' where id=5; -update noar tt set v0='U75IP181HOE0ZN8YWHG8V39WG09O65' where id=5; -update noar ti set v0='U75IP181HOE0ZN8YWHG8V39WG09O65' where id=5; -update noar tt set b1='JYTQFQM3S911GD2N80' where id=5; -update noar ti set b1='JYTQFQM3S911GD2N80' where id=5; -update noar tt set v0='MF6276OYVE3R2934LBEB9QKM5CKO' where id=5; -update noar ti set v0='MF6276OYVE3R2934LBEB9QKM5CKO' where id=5; -update noar tt set b2='TCB20NFDJ8QHO' where id=5; -update noar ti set b2='TCB20NFDJ8QHO' where id=5; -update noar tt set v0='08G6WYWFI0L8S3OXI68GG693DE' where id=6; -update noar ti set v0='08G6WYWFI0L8S3OXI68GG693DE' where id=6; -update noar tt set b0='VXO' where id=6; -update noar ti set b0='VXO' where id=6; -update noar tt set v0='4L8V81BY30LDLGCOCWNJITDCXB' where id=6; -update noar ti set v0='4L8V81BY30LDLGCOCWNJITDCXB' where id=6; -update noar tt set b1='DKXOXHBHWPD' where id=6; -update noar ti set b1='DKXOXHBHWPD' where id=6; -update noar tt set v0='IBESIH8QFN7PA68NJYP1Q3MQQVY16OI0' where id=6; -update noar ti set v0='IBESIH8QFN7PA68NJYP1Q3MQQVY16OI0' where id=6; -update noar tt set b2='GF9O9W' where id=6; -update noar ti set b2='GF9O9W' where id=6; -update noar tt set v0='DUPB' where id=7; -update noar ti set v0='DUPB' where id=7; -update noar tt set b0='0342H1DT' where id=7; -update noar ti set b0='0342H1DT' where id=7; -update noar tt set v0='CCFHHSTSW7R5JFH9OJZGY6' where id=7; -update noar ti set v0='CCFHHSTSW7R5JFH9OJZGY6' where id=7; -update noar tt set b1='IPIH7' where id=7; -update noar ti set b1='IPIH7' where id=7; -update noar tt set v0='CTLXLPUUCKCJ0H7QOLEH7E8' where id=7; -update noar ti set v0='CTLXLPUUCKCJ0H7QOLEH7E8' where id=7; -update noar tt set b2='AUATGUTLUG2UUG5' where id=7; -update noar ti set b2='AUATGUTLUG2UUG5' where id=7; -update noar tt set v0='LQ3KPTKAQL4GMMU0E28XYH' where id=8; -update noar ti set v0='LQ3KPTKAQL4GMMU0E28XYH' where id=8; -update noar tt set b0='O2V' where id=8; -update noar ti set b0='O2V' where id=8; -update noar tt set v0='ZZDDAR0BFVUBKX8JVND1AWZMT' where id=8; -update noar ti set v0='ZZDDAR0BFVUBKX8JVND1AWZMT' where id=8; -update noar tt set b1='YTA1C6K' where id=8; -update noar ti set b1='YTA1C6K' where id=8; -update noar tt set v0='ATJMIRC6E9DPYSBMOYLPG' where id=8; -update noar ti set v0='ATJMIRC6E9DPYSBMOYLPG' where id=8; -update noar tt set b2='OAMZA90FIE4LGI3VO8MF41V' where id=8; -update noar ti set b2='OAMZA90FIE4LGI3VO8MF41V' where id=8; -update noar tt set v0='X4NIW' where id=9; -update noar ti set v0='X4NIW' where id=9; -update noar tt set b0='9N9UOM7OD2Y' where id=9; -update noar ti set b0='9N9UOM7OD2Y' where id=9; -update noar tt set v0='5FTKNURQNRN1L9C5' where id=9; -update noar ti set v0='5FTKNURQNRN1L9C5' where id=9; -update noar tt set b1='PYWNLU2O' where id=9; -update noar ti set b1='PYWNLU2O' where id=9; -update noar tt set v0='CUSL3R0T4ZX13HWHVQZ77FGZ2L' where id=9; -update noar ti set v0='CUSL3R0T4ZX13HWHVQZ77FGZ2L' where id=9; -update noar tt set b2='M00LOB' where id=9; -update noar ti set b2='M00LOB' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - f0 int null, - v0 varchar(32) null, - b0 longblob null, - b1 blob null, - b2 tinyblob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='HP56HAOK' where id=1; -update noar ti set v0='HP56HAOK' where id=1; -update noar tt set b0='G7OLRDEPR5' where id=1; -update noar ti set b0='G7OLRDEPR5' where id=1; -update noar tt set v0='TTIJTJ08I1K5B1GQY8LFP' where id=1; -update noar ti set v0='TTIJTJ08I1K5B1GQY8LFP' where id=1; -update noar tt set b1='6' where id=1; -update noar ti set b1='6' where id=1; -update noar tt set v0='MHGB7T49EQF3M' where id=1; -update noar ti set v0='MHGB7T49EQF3M' where id=1; -update noar tt set b2='6O1ZHDJRLNQM63MO54ODB2WYFBOGPYF9' where id=1; -update noar ti set b2='6O1ZHDJRLNQM63MO54ODB2WYFBOGPYF9' where id=1; -update noar tt set v0='P90QC5LM26OF21JSV6A2136YZ9' where id=2; -update noar ti set v0='P90QC5LM26OF21JSV6A2136YZ9' where id=2; -update noar tt set b0='QECR' where id=2; -update noar ti set b0='QECR' where id=2; -update noar tt set v0='989AOHSSCCMSVGG65' where id=2; -update noar ti set v0='989AOHSSCCMSVGG65' where id=2; -update noar tt set b1='ZQCDRG9FDEWN79E' where id=2; -update noar ti set b1='ZQCDRG9FDEWN79E' where id=2; -update noar tt set v0='WK32FBBR9827K' where id=2; -update noar ti set v0='WK32FBBR9827K' where id=2; -update noar tt set b2='ZT3U0RYHX1H' where id=2; -update noar ti set b2='ZT3U0RYHX1H' where id=2; -update noar tt set v0='G2' where id=3; -update noar ti set v0='G2' where id=3; -update noar tt set b0='0U921ZG' where id=3; -update noar ti set b0='0U921ZG' where id=3; -update noar tt set v0='SJHW7YC8VP1LT4C60XB44OHBYGI6C9' where id=3; -update noar ti set v0='SJHW7YC8VP1LT4C60XB44OHBYGI6C9' where id=3; -update noar tt set b1='GT7CZO' where id=3; -update noar ti set b1='GT7CZO' where id=3; -update noar tt set v0='EMDIIWNNKLPJ8G6HYJIBHP4GO46LP2' where id=3; -update noar ti set v0='EMDIIWNNKLPJ8G6HYJIBHP4GO46LP2' where id=3; -update noar tt set b2='C1MUT9JRB' where id=3; -update noar ti set b2='C1MUT9JRB' where id=3; -update noar tt set v0='84PG8AQZXQ8VK4641GAAXQY1DY' where id=4; -update noar ti set v0='84PG8AQZXQ8VK4641GAAXQY1DY' where id=4; -update noar tt set b0='LJX3BN' where id=4; -update noar ti set b0='LJX3BN' where id=4; -update noar tt set v0='A6XG9' where id=4; -update noar ti set v0='A6XG9' where id=4; -update noar tt set b1='FNTLKKP9MLO81YB11D7EL' where id=4; -update noar ti set b1='FNTLKKP9MLO81YB11D7EL' where id=4; -update noar tt set v0='VX2X33TZ0SWL6LFCL' where id=4; -update noar ti set v0='VX2X33TZ0SWL6LFCL' where id=4; -update noar tt set b2='8DV7LQHXA1M18BGMYOW3R2ZP936AMGS' where id=4; -update noar ti set b2='8DV7LQHXA1M18BGMYOW3R2ZP936AMGS' where id=4; -update noar tt set v0='EB4LMO7AFXFH82QSPA4M' where id=5; -update noar ti set v0='EB4LMO7AFXFH82QSPA4M' where id=5; -update noar tt set b0='UY7V4U2QSC8' where id=5; -update noar ti set b0='UY7V4U2QSC8' where id=5; -update noar tt set v0='JQXOX' where id=5; -update noar ti set v0='JQXOX' where id=5; -update noar tt set b1='5JF27Q2T3T' where id=5; -update noar ti set b1='5JF27Q2T3T' where id=5; -update noar tt set v0='IWGULX' where id=5; -update noar ti set v0='IWGULX' where id=5; -update noar tt set b2='KWCI258S5SZJ7' where id=5; -update noar ti set b2='KWCI258S5SZJ7' where id=5; -update noar tt set v0='YX524FJRZ5LHPU2K1CIQ2FYRR1' where id=6; -update noar ti set v0='YX524FJRZ5LHPU2K1CIQ2FYRR1' where id=6; -update noar tt set b0='6MGQD51' where id=6; -update noar ti set b0='6MGQD51' where id=6; -update noar tt set v0='WDOFFPB' where id=6; -update noar ti set v0='WDOFFPB' where id=6; -update noar tt set b1='ZIYIS33' where id=6; -update noar ti set b1='ZIYIS33' where id=6; -update noar tt set v0='60T0M9TIH0L8C' where id=6; -update noar ti set v0='60T0M9TIH0L8C' where id=6; -update noar tt set b2='AS' where id=6; -update noar ti set b2='AS' where id=6; -update noar tt set v0='JJJM5519IARJY8SND' where id=7; -update noar ti set v0='JJJM5519IARJY8SND' where id=7; -update noar tt set b0='CXG4UTEQD' where id=7; -update noar ti set b0='CXG4UTEQD' where id=7; -update noar tt set v0='J65328RGS0P3O7R02CK6KOQIKZE6D2' where id=7; -update noar ti set v0='J65328RGS0P3O7R02CK6KOQIKZE6D2' where id=7; -update noar tt set b1='DDWYLSBRDEPKWS6JN3H0DCU6TF' where id=7; -update noar ti set b1='DDWYLSBRDEPKWS6JN3H0DCU6TF' where id=7; -update noar tt set v0='YCXHCJT03CLG' where id=7; -update noar ti set v0='YCXHCJT03CLG' where id=7; -update noar tt set b2='UBRWTX0BST0SVF5B3U0WFJ7IDP3CK' where id=7; -update noar ti set b2='UBRWTX0BST0SVF5B3U0WFJ7IDP3CK' where id=7; -update noar tt set v0='OBVOKHC1M7W19J71P3AWL08QA2WY9' where id=8; -update noar ti set v0='OBVOKHC1M7W19J71P3AWL08QA2WY9' where id=8; -update noar tt set b0='4P6LR2YQO97ZUAU25' where id=8; -update noar ti set b0='4P6LR2YQO97ZUAU25' where id=8; -update noar tt set v0='18QYEU7TO2877V7PV7JBZ5YG3O5' where id=8; -update noar ti set v0='18QYEU7TO2877V7PV7JBZ5YG3O5' where id=8; -update noar tt set b1='2ROPMEXK' where id=8; -update noar ti set b1='2ROPMEXK' where id=8; -update noar tt set v0='1' where id=8; -update noar ti set v0='1' where id=8; -update noar tt set b2='1D8WS6RRJUIA8KE22Z0ELO05' where id=8; -update noar ti set b2='1D8WS6RRJUIA8KE22Z0ELO05' where id=8; -update noar tt set v0='KJWIWZ5GU48DQIJK1TWMV2KQGX6SW5' where id=9; -update noar ti set v0='KJWIWZ5GU48DQIJK1TWMV2KQGX6SW5' where id=9; -update noar tt set b0='RJZLE1ODIN6II' where id=9; -update noar ti set b0='RJZLE1ODIN6II' where id=9; -update noar tt set v0='GLT6O4EPVIEX8B4K7R0Z0VGV' where id=9; -update noar ti set v0='GLT6O4EPVIEX8B4K7R0Z0VGV' where id=9; -update noar tt set b1='94DA1ZZN' where id=9; -update noar ti set b1='94DA1ZZN' where id=9; -update noar tt set v0='LMGR9K8KAWEUX' where id=9; -update noar ti set v0='LMGR9K8KAWEUX' where id=9; -update noar tt set b2='NFTKHJX5MTRXV6F2CRT' where id=9; -update noar ti set b2='NFTKHJX5MTRXV6F2CRT' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - f0 int null, - v0 varchar(256) null, - b0 longblob null, - b1 blob null, - b2 tinyblob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='J8HDDAT0LN9KYLOHBC1XRT9V9' where id=1; -update noar ti set v0='J8HDDAT0LN9KYLOHBC1XRT9V9' where id=1; -update noar tt set b0='W1QOJD8JCM9FECU8CQ655' where id=1; -update noar ti set b0='W1QOJD8JCM9FECU8CQ655' where id=1; -update noar tt set v0='L94C1LQE4B451UGJQE5EL5O97MCGR1X6' where id=1; -update noar ti set v0='L94C1LQE4B451UGJQE5EL5O97MCGR1X6' where id=1; -update noar tt set b1='S7H928OA4SD1J98GAB09ODZNVWP21MG3' where id=1; -update noar ti set b1='S7H928OA4SD1J98GAB09ODZNVWP21MG3' where id=1; -update noar tt set v0='DXKWWKDD8YJWUBB4HELE6' where id=1; -update noar ti set v0='DXKWWKDD8YJWUBB4HELE6' where id=1; -update noar tt set b2='H5B1LU9OXOCAO7TXN59GW4AZIU6H' where id=1; -update noar ti set b2='H5B1LU9OXOCAO7TXN59GW4AZIU6H' where id=1; -update noar tt set v0='D5PCCNL' where id=2; -update noar ti set v0='D5PCCNL' where id=2; -update noar tt set b0='WYIM5V289NC31' where id=2; -update noar ti set b0='WYIM5V289NC31' where id=2; -update noar tt set v0='LMSRY6C7PHO31F3OEQONH5KRHW18E' where id=2; -update noar ti set v0='LMSRY6C7PHO31F3OEQONH5KRHW18E' where id=2; -update noar tt set b1='P' where id=2; -update noar ti set b1='P' where id=2; -update noar tt set v0='VTZIN736HITAKZ3' where id=2; -update noar ti set v0='VTZIN736HITAKZ3' where id=2; -update noar tt set b2='BAYX7EZ' where id=2; -update noar ti set b2='BAYX7EZ' where id=2; -update noar tt set v0='9SSDMCAR' where id=3; -update noar ti set v0='9SSDMCAR' where id=3; -update noar tt set b0='7PPU991R8HZGOIX16UG9UMDW9TS9A' where id=3; -update noar ti set b0='7PPU991R8HZGOIX16UG9UMDW9TS9A' where id=3; -update noar tt set v0='QLJRG4AVBDXLFZW2QEJBEWRH1ESE89TV' where id=3; -update noar ti set v0='QLJRG4AVBDXLFZW2QEJBEWRH1ESE89TV' where id=3; -update noar tt set b1='H56B8I5MDLJLH0A15GPDB6F9P3KSJG' where id=3; -update noar ti set b1='H56B8I5MDLJLH0A15GPDB6F9P3KSJG' where id=3; -update noar tt set v0='KNX5OBC' where id=3; -update noar ti set v0='KNX5OBC' where id=3; -update noar tt set b2='9ZQN04AZKMH1VC3JQ' where id=3; -update noar ti set b2='9ZQN04AZKMH1VC3JQ' where id=3; -update noar tt set v0='ZYWZ1P4H' where id=4; -update noar ti set v0='ZYWZ1P4H' where id=4; -update noar tt set b0='42O0JE2XYTYVXN1XQCDZ9R7X' where id=4; -update noar ti set b0='42O0JE2XYTYVXN1XQCDZ9R7X' where id=4; -update noar tt set v0='V14XH3' where id=4; -update noar ti set v0='V14XH3' where id=4; -update noar tt set b1='CXSHF8XXSMQZR962FIKXW809ORTQQO' where id=4; -update noar ti set b1='CXSHF8XXSMQZR962FIKXW809ORTQQO' where id=4; -update noar tt set v0='O2CFTKK667I3M' where id=4; -update noar ti set v0='O2CFTKK667I3M' where id=4; -update noar tt set b2='KJCIZJ7MJP' where id=4; -update noar ti set b2='KJCIZJ7MJP' where id=4; -update noar tt set v0='NYBN7APWVT05L41SI20MM' where id=5; -update noar ti set v0='NYBN7APWVT05L41SI20MM' where id=5; -update noar tt set b0='2FGDIQYVYXOT10UKJOC9D3OCX7FPD8V' where id=5; -update noar ti set b0='2FGDIQYVYXOT10UKJOC9D3OCX7FPD8V' where id=5; -update noar tt set v0='DKP6E5FHHNZFBGA' where id=5; -update noar ti set v0='DKP6E5FHHNZFBGA' where id=5; -update noar tt set b1='VWNGRSAIZ16XJ2GJG2WIY3' where id=5; -update noar ti set b1='VWNGRSAIZ16XJ2GJG2WIY3' where id=5; -update noar tt set v0='HSPLRP64P0V914KX' where id=5; -update noar ti set v0='HSPLRP64P0V914KX' where id=5; -update noar tt set b2='LLM0UUTY6VZUNX' where id=5; -update noar ti set b2='LLM0UUTY6VZUNX' where id=5; -update noar tt set v0='BA6' where id=6; -update noar ti set v0='BA6' where id=6; -update noar tt set b0='OCIB31YBKYQPTC4SA' where id=6; -update noar ti set b0='OCIB31YBKYQPTC4SA' where id=6; -update noar tt set v0='XDPTKWIPLXHKHGOVHE' where id=6; -update noar ti set v0='XDPTKWIPLXHKHGOVHE' where id=6; -update noar tt set b1='WMRL7IPV738' where id=6; -update noar ti set b1='WMRL7IPV738' where id=6; -update noar tt set v0='CWOLZ063TQVSZU5' where id=6; -update noar ti set v0='CWOLZ063TQVSZU5' where id=6; -update noar tt set b2='6C3P7MLWKBMXBNO9Q5Z' where id=6; -update noar ti set b2='6C3P7MLWKBMXBNO9Q5Z' where id=6; -update noar tt set v0='0XGG4CIDTCAKX7KXKZ' where id=7; -update noar ti set v0='0XGG4CIDTCAKX7KXKZ' where id=7; -update noar tt set b0='6JEA2CL7YNEA51TDPLYM9A' where id=7; -update noar ti set b0='6JEA2CL7YNEA51TDPLYM9A' where id=7; -update noar tt set v0='C1B2Q7SBPDK79TFHKYT0C7796RZ8MT' where id=7; -update noar ti set v0='C1B2Q7SBPDK79TFHKYT0C7796RZ8MT' where id=7; -update noar tt set b1='WSTSRGR83WL37RVEKHYPSEF1T' where id=7; -update noar ti set b1='WSTSRGR83WL37RVEKHYPSEF1T' where id=7; -update noar tt set v0='JBRZ9RN8XTKWF' where id=7; -update noar ti set v0='JBRZ9RN8XTKWF' where id=7; -update noar tt set b2='B772S' where id=7; -update noar ti set b2='B772S' where id=7; -update noar tt set v0='EU2VFN23NFBFZK' where id=8; -update noar ti set v0='EU2VFN23NFBFZK' where id=8; -update noar tt set b0='XW0TN' where id=8; -update noar ti set b0='XW0TN' where id=8; -update noar tt set v0='PBHCYP2GSPS7WXZM' where id=8; -update noar ti set v0='PBHCYP2GSPS7WXZM' where id=8; -update noar tt set b1='YLIGT52NNNOOPPAYAECPR9ZQUF' where id=8; -update noar ti set b1='YLIGT52NNNOOPPAYAECPR9ZQUF' where id=8; -update noar tt set v0='1PIW2OPDTXCUSOPGML1' where id=8; -update noar ti set v0='1PIW2OPDTXCUSOPGML1' where id=8; -update noar tt set b2='BSV6Z1' where id=8; -update noar ti set b2='BSV6Z1' where id=8; -update noar tt set v0='CR9CDU75OBQUEA54YLTFMTEZI3I5QGH' where id=9; -update noar ti set v0='CR9CDU75OBQUEA54YLTFMTEZI3I5QGH' where id=9; -update noar tt set b0='UWXHKPP8HC5' where id=9; -update noar ti set b0='UWXHKPP8HC5' where id=9; -update noar tt set v0='WD4ODPZU7172RKH46LH355HF8FWSFN4' where id=9; -update noar ti set v0='WD4ODPZU7172RKH46LH355HF8FWSFN4' where id=9; -update noar tt set b1='A4DV' where id=9; -update noar ti set b1='A4DV' where id=9; -update noar tt set v0='FCKWPCYCVPUPL2ELJ3HU8HX78H8CZH' where id=9; -update noar ti set v0='FCKWPCYCVPUPL2ELJ3HU8HX78H8CZH' where id=9; -update noar tt set b2='1BNRD0KZESJ' where id=9; -update noar ti set b2='1BNRD0KZESJ' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - f0 int not null, - v0 varchar(32) not null, - b0 longblob not null, - b1 blob not null, - b2 tinyblob not null -) engine=tokudb; -insert into tt values (1,0,'','','',''); -insert into tt values (2,0,'','','',''); -insert into tt values (3,0,'','','',''); -insert into tt values (4,0,'','','',''); -insert into tt values (5,0,'','','',''); -insert into tt values (6,0,'','','',''); -insert into tt values (7,0,'','','',''); -insert into tt values (8,0,'','','',''); -insert into tt values (9,0,'','','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='FDMBXMBZHLZ' where id=1; -update noar ti set v0='FDMBXMBZHLZ' where id=1; -update noar tt set b0='IN5' where id=1; -update noar ti set b0='IN5' where id=1; -update noar tt set v0='97RMBKCJ0E0TY7NDLPKCOTE' where id=1; -update noar ti set v0='97RMBKCJ0E0TY7NDLPKCOTE' where id=1; -update noar tt set b1='JC4ICJ1' where id=1; -update noar ti set b1='JC4ICJ1' where id=1; -update noar tt set v0='7LEW2A0GP7LRLR3YXZ7OZ' where id=1; -update noar ti set v0='7LEW2A0GP7LRLR3YXZ7OZ' where id=1; -update noar tt set b2='VV2PJISPDZPI9B1JTU8SYRHTLL3774H' where id=1; -update noar ti set b2='VV2PJISPDZPI9B1JTU8SYRHTLL3774H' where id=1; -update noar tt set v0='9JRHNMIZJYSJ60MNB1HU33KCZAT6' where id=2; -update noar ti set v0='9JRHNMIZJYSJ60MNB1HU33KCZAT6' where id=2; -update noar tt set b0='BDN' where id=2; -update noar ti set b0='BDN' where id=2; -update noar tt set v0='HFKTTJ2P56' where id=2; -update noar ti set v0='HFKTTJ2P56' where id=2; -update noar tt set b1='FQEKIJIAI21LFMVP4VTY9' where id=2; -update noar ti set b1='FQEKIJIAI21LFMVP4VTY9' where id=2; -update noar tt set v0='MTZNEEF9MS7S7' where id=2; -update noar ti set v0='MTZNEEF9MS7S7' where id=2; -update noar tt set b2='OVB2HNAM72VCVORWF' where id=2; -update noar ti set b2='OVB2HNAM72VCVORWF' where id=2; -update noar tt set v0='6YC3' where id=3; -update noar ti set v0='6YC3' where id=3; -update noar tt set b0='Y05G95FY4SE7W3QI6EAMKM6G2' where id=3; -update noar ti set b0='Y05G95FY4SE7W3QI6EAMKM6G2' where id=3; -update noar tt set v0='QIMI8819MFN6FS28I21749AQ5RMQ' where id=3; -update noar ti set v0='QIMI8819MFN6FS28I21749AQ5RMQ' where id=3; -update noar tt set b1='GWKEYWSRSR7Y121Y601DNZQA' where id=3; -update noar ti set b1='GWKEYWSRSR7Y121Y601DNZQA' where id=3; -update noar tt set v0='IVME1J7E4DUFGS8TG' where id=3; -update noar ti set v0='IVME1J7E4DUFGS8TG' where id=3; -update noar tt set b2='KDEIC' where id=3; -update noar ti set b2='KDEIC' where id=3; -update noar tt set v0='H71T' where id=4; -update noar ti set v0='H71T' where id=4; -update noar tt set b0='ULEC8DPS4XVME6L6AX32DY6U7IMJE2F' where id=4; -update noar ti set b0='ULEC8DPS4XVME6L6AX32DY6U7IMJE2F' where id=4; -update noar tt set v0='Y' where id=4; -update noar ti set v0='Y' where id=4; -update noar tt set b1='IBCR8AOPQTK4MFD6OESZ' where id=4; -update noar ti set b1='IBCR8AOPQTK4MFD6OESZ' where id=4; -update noar tt set v0='DTTSM' where id=4; -update noar ti set v0='DTTSM' where id=4; -update noar tt set b2='8JT634KDTKI1ISORGQAXIUS6F8P' where id=4; -update noar ti set b2='8JT634KDTKI1ISORGQAXIUS6F8P' where id=4; -update noar tt set v0='KC1' where id=5; -update noar ti set v0='KC1' where id=5; -update noar tt set b0='IA17F78LYRM838BIY' where id=5; -update noar ti set b0='IA17F78LYRM838BIY' where id=5; -update noar tt set v0='XEY9VFYIBQPCF880Y8DF28VAFMYS51R4' where id=5; -update noar ti set v0='XEY9VFYIBQPCF880Y8DF28VAFMYS51R4' where id=5; -update noar tt set b1='GAR51MMI6D80' where id=5; -update noar ti set b1='GAR51MMI6D80' where id=5; -update noar tt set v0='VVA' where id=5; -update noar ti set v0='VVA' where id=5; -update noar tt set b2='VX86DN8I6DGJWJ2Z4U6F3DMSS6H' where id=5; -update noar ti set b2='VX86DN8I6DGJWJ2Z4U6F3DMSS6H' where id=5; -update noar tt set v0='OF4V1Z3SZPSZ7NICXZE0' where id=6; -update noar ti set v0='OF4V1Z3SZPSZ7NICXZE0' where id=6; -update noar tt set b0='JC681GMG4LY9P2HMW7YJ9Z6Q9QRQF' where id=6; -update noar ti set b0='JC681GMG4LY9P2HMW7YJ9Z6Q9QRQF' where id=6; -update noar tt set v0='3SD1J1IYLFCDD71Z0NMAFXPOSI9YVBQ' where id=6; -update noar ti set v0='3SD1J1IYLFCDD71Z0NMAFXPOSI9YVBQ' where id=6; -update noar tt set b1='ZRNI6TP' where id=6; -update noar ti set b1='ZRNI6TP' where id=6; -update noar tt set v0='Z6R2ZQ014G7I34ZYI2L2W' where id=6; -update noar ti set v0='Z6R2ZQ014G7I34ZYI2L2W' where id=6; -update noar tt set b2='FU69KU5JEDVUP7YP9ECJ4' where id=6; -update noar ti set b2='FU69KU5JEDVUP7YP9ECJ4' where id=6; -update noar tt set v0='OHB6M2CYXQKA7RZ1O' where id=7; -update noar ti set v0='OHB6M2CYXQKA7RZ1O' where id=7; -update noar tt set b0='ZUTA7SWI861CQUECRE38D9A5OI1A' where id=7; -update noar ti set b0='ZUTA7SWI861CQUECRE38D9A5OI1A' where id=7; -update noar tt set v0='2O7SXIVCGXWWRQ12AJJ2P3A' where id=7; -update noar ti set v0='2O7SXIVCGXWWRQ12AJJ2P3A' where id=7; -update noar tt set b1='P261AQYE1NUS5138KQUU072ICEC6RDV' where id=7; -update noar ti set b1='P261AQYE1NUS5138KQUU072ICEC6RDV' where id=7; -update noar tt set v0='W7IY0NVWY784N52IZZ3G0CDFHZQNSWRQ' where id=7; -update noar ti set v0='W7IY0NVWY784N52IZZ3G0CDFHZQNSWRQ' where id=7; -update noar tt set b2='4D8ZX' where id=7; -update noar ti set b2='4D8ZX' where id=7; -update noar tt set v0='LSMG00U26MN2K38' where id=8; -update noar ti set v0='LSMG00U26MN2K38' where id=8; -update noar tt set b0='I0PCB4F1DXL10JI5R28ZIW9I5' where id=8; -update noar ti set b0='I0PCB4F1DXL10JI5R28ZIW9I5' where id=8; -update noar tt set v0='G8FY41LT922HZUT9YJMOFAA' where id=8; -update noar ti set v0='G8FY41LT922HZUT9YJMOFAA' where id=8; -update noar tt set b1='TG27BX3YPYVHVFHJGIIZ' where id=8; -update noar ti set b1='TG27BX3YPYVHVFHJGIIZ' where id=8; -update noar tt set v0='JEVXA' where id=8; -update noar ti set v0='JEVXA' where id=8; -update noar tt set b2='Z9E9YW6GF54ZP' where id=8; -update noar ti set b2='Z9E9YW6GF54ZP' where id=8; -update noar tt set v0='U7IMZ8AZ52GSJMM0IODKASSXNBRUFT' where id=9; -update noar ti set v0='U7IMZ8AZ52GSJMM0IODKASSXNBRUFT' where id=9; -update noar tt set b0='RZPCQSX9B446BLSDNHPH8220IQ4G' where id=9; -update noar ti set b0='RZPCQSX9B446BLSDNHPH8220IQ4G' where id=9; -update noar tt set v0='3A3NVWMQRGGHVL4' where id=9; -update noar ti set v0='3A3NVWMQRGGHVL4' where id=9; -update noar tt set b1='6RDM' where id=9; -update noar ti set b1='6RDM' where id=9; -update noar tt set v0='VW6DCIYMR3R8FV5BEQGF42PRDT' where id=9; -update noar ti set v0='VW6DCIYMR3R8FV5BEQGF42PRDT' where id=9; -update noar tt set b2='2ZTZ4' where id=9; -update noar ti set b2='2ZTZ4' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - f0 int not null, - v0 varchar(256) not null, - b0 longblob not null, - b1 blob not null, - b2 tinyblob not null -) engine=tokudb; -insert into tt values (1,0,'','','',''); -insert into tt values (2,0,'','','',''); -insert into tt values (3,0,'','','',''); -insert into tt values (4,0,'','','',''); -insert into tt values (5,0,'','','',''); -insert into tt values (6,0,'','','',''); -insert into tt values (7,0,'','','',''); -insert into tt values (8,0,'','','',''); -insert into tt values (9,0,'','','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='NK' where id=1; -update noar ti set v0='NK' where id=1; -update noar tt set b0='5YBYPF5S5RU91AWR1R' where id=1; -update noar ti set b0='5YBYPF5S5RU91AWR1R' where id=1; -update noar tt set v0='0UIOY4JXKXHN020SY' where id=1; -update noar ti set v0='0UIOY4JXKXHN020SY' where id=1; -update noar tt set b1='JF4RHRR1W2YX3VZF5QZI1' where id=1; -update noar ti set b1='JF4RHRR1W2YX3VZF5QZI1' where id=1; -update noar tt set v0='ZJOF716TFIJNGO6F7BGP7L' where id=1; -update noar ti set v0='ZJOF716TFIJNGO6F7BGP7L' where id=1; -update noar tt set b2='U9IV' where id=1; -update noar ti set b2='U9IV' where id=1; -update noar tt set v0='WWRKNUY2TJ1GNC35VRZZ0WQ' where id=2; -update noar ti set v0='WWRKNUY2TJ1GNC35VRZZ0WQ' where id=2; -update noar tt set b0='1' where id=2; -update noar ti set b0='1' where id=2; -update noar tt set v0='ZW4615PKVK9' where id=2; -update noar ti set v0='ZW4615PKVK9' where id=2; -update noar tt set b1='WFG47HAX' where id=2; -update noar ti set b1='WFG47HAX' where id=2; -update noar tt set v0='FCYRXWWLLVS858VHO4IFLVO' where id=2; -update noar ti set v0='FCYRXWWLLVS858VHO4IFLVO' where id=2; -update noar tt set b2='QT73T90ZH' where id=2; -update noar ti set b2='QT73T90ZH' where id=2; -update noar tt set v0='WJXPCK19YF8H5BV' where id=3; -update noar ti set v0='WJXPCK19YF8H5BV' where id=3; -update noar tt set b0='PZZ5QG6P69GY9Y56Z5DQB5FC' where id=3; -update noar ti set b0='PZZ5QG6P69GY9Y56Z5DQB5FC' where id=3; -update noar tt set v0='F8KO' where id=3; -update noar ti set v0='F8KO' where id=3; -update noar tt set b1='ZJJPNE' where id=3; -update noar ti set b1='ZJJPNE' where id=3; -update noar tt set v0='M9H3' where id=3; -update noar ti set v0='M9H3' where id=3; -update noar tt set b2='O27R54EKB09GM' where id=3; -update noar ti set b2='O27R54EKB09GM' where id=3; -update noar tt set v0='XV4U9V6PMOO9' where id=4; -update noar ti set v0='XV4U9V6PMOO9' where id=4; -update noar tt set b0='H8XMELGU14DAMBOX3G4' where id=4; -update noar ti set b0='H8XMELGU14DAMBOX3G4' where id=4; -update noar tt set v0='I' where id=4; -update noar ti set v0='I' where id=4; -update noar tt set b1='LOS9JN6AELVWO89FTHMHDQL9QFVZSIA' where id=4; -update noar ti set b1='LOS9JN6AELVWO89FTHMHDQL9QFVZSIA' where id=4; -update noar tt set v0='Q1GYJGEH59S8X9PY8KDB7T' where id=4; -update noar ti set v0='Q1GYJGEH59S8X9PY8KDB7T' where id=4; -update noar tt set b2='55SXRGAVKNZMIAUS75EJQWE9W' where id=4; -update noar ti set b2='55SXRGAVKNZMIAUS75EJQWE9W' where id=4; -update noar tt set v0='NC9G3JGSOW3KL6AU' where id=5; -update noar ti set v0='NC9G3JGSOW3KL6AU' where id=5; -update noar tt set b0='HL7QSN59WQU37AI58S86' where id=5; -update noar ti set b0='HL7QSN59WQU37AI58S86' where id=5; -update noar tt set v0='6NJ' where id=5; -update noar ti set v0='6NJ' where id=5; -update noar tt set b1='E6ZAAGPE3Y0J098YV637ZX962I' where id=5; -update noar ti set b1='E6ZAAGPE3Y0J098YV637ZX962I' where id=5; -update noar tt set v0='ERRPK' where id=5; -update noar ti set v0='ERRPK' where id=5; -update noar tt set b2='69ZWHWL3PS6EQ4UZSB2BV' where id=5; -update noar ti set b2='69ZWHWL3PS6EQ4UZSB2BV' where id=5; -update noar tt set v0='5LQSB8OJ5KBEI9' where id=6; -update noar ti set v0='5LQSB8OJ5KBEI9' where id=6; -update noar tt set b0='KLBOV3YWPGV0AGROTP' where id=6; -update noar ti set b0='KLBOV3YWPGV0AGROTP' where id=6; -update noar tt set v0='7GCDMWD1RGSVDQKV74WLQ36PCOO339T' where id=6; -update noar ti set v0='7GCDMWD1RGSVDQKV74WLQ36PCOO339T' where id=6; -update noar tt set b1='SA7DBBEM03HV3OQF5XWZHKH' where id=6; -update noar ti set b1='SA7DBBEM03HV3OQF5XWZHKH' where id=6; -update noar tt set v0='N8F0O3II8007D1LAE8PPZY4RVXAM0B' where id=6; -update noar ti set v0='N8F0O3II8007D1LAE8PPZY4RVXAM0B' where id=6; -update noar tt set b2='G8TQ7LN4M7V6W9O' where id=6; -update noar ti set b2='G8TQ7LN4M7V6W9O' where id=6; -update noar tt set v0='G5KCL2WEH8T39S0SU5TRTUXQJQQT' where id=7; -update noar ti set v0='G5KCL2WEH8T39S0SU5TRTUXQJQQT' where id=7; -update noar tt set b0='96' where id=7; -update noar ti set b0='96' where id=7; -update noar tt set v0='ZRZJKUDBDF1ZJFRTF2' where id=7; -update noar ti set v0='ZRZJKUDBDF1ZJFRTF2' where id=7; -update noar tt set b1='2LX2DBGEMYYBT' where id=7; -update noar ti set b1='2LX2DBGEMYYBT' where id=7; -update noar tt set v0='QIY4' where id=7; -update noar ti set v0='QIY4' where id=7; -update noar tt set b2='VZ3HD5S57BR1X2CQ9SS2B' where id=7; -update noar ti set b2='VZ3HD5S57BR1X2CQ9SS2B' where id=7; -update noar tt set v0='AY9AXOSF5X2BXE0TXD4F057QT' where id=8; -update noar ti set v0='AY9AXOSF5X2BXE0TXD4F057QT' where id=8; -update noar tt set b0='TR9V7' where id=8; -update noar ti set b0='TR9V7' where id=8; -update noar tt set v0='FAMWRAC2NK5T2EFFLEHYR' where id=8; -update noar ti set v0='FAMWRAC2NK5T2EFFLEHYR' where id=8; -update noar tt set b1='X63PFWT8U4A3VEC04TL66JGAD4GGUDEC' where id=8; -update noar ti set b1='X63PFWT8U4A3VEC04TL66JGAD4GGUDEC' where id=8; -update noar tt set v0='D2W60R' where id=8; -update noar ti set v0='D2W60R' where id=8; -update noar tt set b2='XYX2WR768S0JNN8F3MRH8GO' where id=8; -update noar ti set b2='XYX2WR768S0JNN8F3MRH8GO' where id=8; -update noar tt set v0='V4ISLGA9Z6UP779' where id=9; -update noar ti set v0='V4ISLGA9Z6UP779' where id=9; -update noar tt set b0='M0QVZDDRXZ3T48NTT' where id=9; -update noar ti set b0='M0QVZDDRXZ3T48NTT' where id=9; -update noar tt set v0='YAPOI114LUC0TZ7FKFELBKX6' where id=9; -update noar ti set v0='YAPOI114LUC0TZ7FKFELBKX6' where id=9; -update noar tt set b1='7UA10WXQ0OWFNTX36' where id=9; -update noar ti set b1='7UA10WXQ0OWFNTX36' where id=9; -update noar tt set v0='H24BPAPLR1MW97BRDLZP812' where id=9; -update noar ti set v0='H24BPAPLR1MW97BRDLZP812' where id=9; -update noar tt set b2='0TG1KCTYG8' where id=9; -update noar ti set b2='0TG1KCTYG8' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - f0 int null, - v0 varchar(32) null, - b0 longblob null, - b1 blob null, - b2 blob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='XIMAZBOU80YUH2OQZHQI' where id=1; -update noar ti set v0='XIMAZBOU80YUH2OQZHQI' where id=1; -update noar tt set b0='9H9O410P4G4NA55' where id=1; -update noar ti set b0='9H9O410P4G4NA55' where id=1; -update noar tt set v0='7KAPI2OQG4FRSFSAOB' where id=1; -update noar ti set v0='7KAPI2OQG4FRSFSAOB' where id=1; -update noar tt set b1='HQUY8LR' where id=1; -update noar ti set b1='HQUY8LR' where id=1; -update noar tt set v0='4KC7Q6H15PRGL' where id=1; -update noar ti set v0='4KC7Q6H15PRGL' where id=1; -update noar tt set b2='ZYUXJLYG3LJQXD5QZ3DMEE' where id=1; -update noar ti set b2='ZYUXJLYG3LJQXD5QZ3DMEE' where id=1; -update noar tt set v0='MHWGZ0G3OV4IFHR4PO4F30FNAF' where id=2; -update noar ti set v0='MHWGZ0G3OV4IFHR4PO4F30FNAF' where id=2; -update noar tt set b0='8SI7VOKA' where id=2; -update noar ti set b0='8SI7VOKA' where id=2; -update noar tt set v0='CP8ALTG70GLXRQH1GDGCSCTY9QIN7ML' where id=2; -update noar ti set v0='CP8ALTG70GLXRQH1GDGCSCTY9QIN7ML' where id=2; -update noar tt set b1='6FG5C69J6AB6UE06GU' where id=2; -update noar ti set b1='6FG5C69J6AB6UE06GU' where id=2; -update noar tt set v0='6CQ25HT6JRHB4DA79BAG98IE9KDGPQWY' where id=2; -update noar ti set v0='6CQ25HT6JRHB4DA79BAG98IE9KDGPQWY' where id=2; -update noar tt set b2='YR54MZ7K9' where id=2; -update noar ti set b2='YR54MZ7K9' where id=2; -update noar tt set v0='EDSAD' where id=3; -update noar ti set v0='EDSAD' where id=3; -update noar tt set b0='1HPUTZ73TSO69K' where id=3; -update noar ti set b0='1HPUTZ73TSO69K' where id=3; -update noar tt set v0='QH' where id=3; -update noar ti set v0='QH' where id=3; -update noar tt set b1='HH' where id=3; -update noar ti set b1='HH' where id=3; -update noar tt set v0='WQ2GT9QWSRBPD' where id=3; -update noar ti set v0='WQ2GT9QWSRBPD' where id=3; -update noar tt set b2='BCZU1HB3A0GGW4' where id=3; -update noar ti set b2='BCZU1HB3A0GGW4' where id=3; -update noar tt set v0='MKBZTNJ5VMRWBDRVH8YV2JYB4YDGM4YD' where id=4; -update noar ti set v0='MKBZTNJ5VMRWBDRVH8YV2JYB4YDGM4YD' where id=4; -update noar tt set b0='DWDDVYJR89GF86EF5N1PSETNJDJNN21' where id=4; -update noar ti set b0='DWDDVYJR89GF86EF5N1PSETNJDJNN21' where id=4; -update noar tt set v0='DX5SEFWHLXTOX' where id=4; -update noar ti set v0='DX5SEFWHLXTOX' where id=4; -update noar tt set b1='6AS351N' where id=4; -update noar ti set b1='6AS351N' where id=4; -update noar tt set v0='2WQTUH4QIHG' where id=4; -update noar ti set v0='2WQTUH4QIHG' where id=4; -update noar tt set b2='IUXJNABYS' where id=4; -update noar ti set b2='IUXJNABYS' where id=4; -update noar tt set v0='5X19E59HMI457DP8WOX' where id=5; -update noar ti set v0='5X19E59HMI457DP8WOX' where id=5; -update noar tt set b0='IO' where id=5; -update noar ti set b0='IO' where id=5; -update noar tt set v0='EHF' where id=5; -update noar ti set v0='EHF' where id=5; -update noar tt set b1='IY2IOQURIW0FH2GFEPROFUQJ9T' where id=5; -update noar ti set b1='IY2IOQURIW0FH2GFEPROFUQJ9T' where id=5; -update noar tt set v0='G7ZE2BM21DTN3NJZUZI6YPY' where id=5; -update noar ti set v0='G7ZE2BM21DTN3NJZUZI6YPY' where id=5; -update noar tt set b2='V5TQKW64OIDC2P4' where id=5; -update noar ti set b2='V5TQKW64OIDC2P4' where id=5; -update noar tt set v0='CYIMYZUXG1VVN175LYOS5M3OE0IRJ' where id=6; -update noar ti set v0='CYIMYZUXG1VVN175LYOS5M3OE0IRJ' where id=6; -update noar tt set b0='X95W9JOO8BQDLNZM8SJ3XZTEA' where id=6; -update noar ti set b0='X95W9JOO8BQDLNZM8SJ3XZTEA' where id=6; -update noar tt set v0='08IVW52KJOA5L5XIHM76EW8' where id=6; -update noar ti set v0='08IVW52KJOA5L5XIHM76EW8' where id=6; -update noar tt set b1='DV2Y4ZTEF2KRF9U' where id=6; -update noar ti set b1='DV2Y4ZTEF2KRF9U' where id=6; -update noar tt set v0='PB0E3D062GLQN3ZVWPES729ZL' where id=6; -update noar ti set v0='PB0E3D062GLQN3ZVWPES729ZL' where id=6; -update noar tt set b2='P' where id=6; -update noar ti set b2='P' where id=6; -update noar tt set v0='LZJJZ6A1XDLZV6PMVFG11' where id=7; -update noar ti set v0='LZJJZ6A1XDLZV6PMVFG11' where id=7; -update noar tt set b0='SGVTT8HDR' where id=7; -update noar ti set b0='SGVTT8HDR' where id=7; -update noar tt set v0='J2HF74' where id=7; -update noar ti set v0='J2HF74' where id=7; -update noar tt set b1='P96QZZRO3OCK1D9ZP7B851' where id=7; -update noar ti set b1='P96QZZRO3OCK1D9ZP7B851' where id=7; -update noar tt set v0='RODE3UEF1RFZ9G6YLUV' where id=7; -update noar ti set v0='RODE3UEF1RFZ9G6YLUV' where id=7; -update noar tt set b2='DM0HICD3VL4F21XOUPW' where id=7; -update noar ti set b2='DM0HICD3VL4F21XOUPW' where id=7; -update noar tt set v0='AF' where id=8; -update noar ti set v0='AF' where id=8; -update noar tt set b0='W8FAMBTTVYKVIAYBDO1VEWR' where id=8; -update noar ti set b0='W8FAMBTTVYKVIAYBDO1VEWR' where id=8; -update noar tt set v0='OKML0GZO' where id=8; -update noar ti set v0='OKML0GZO' where id=8; -update noar tt set b1='24PJ60ILWQYYS1EG3TWDLHU' where id=8; -update noar ti set b1='24PJ60ILWQYYS1EG3TWDLHU' where id=8; -update noar tt set v0='JGKL5KU20NMIGSFKKROIJZIJ48KF5NTJ' where id=8; -update noar ti set v0='JGKL5KU20NMIGSFKKROIJZIJ48KF5NTJ' where id=8; -update noar tt set b2='7U4BC' where id=8; -update noar ti set b2='7U4BC' where id=8; -update noar tt set v0='N0G06HDVMA9HP1QPKH0XZ3KP4L' where id=9; -update noar ti set v0='N0G06HDVMA9HP1QPKH0XZ3KP4L' where id=9; -update noar tt set b0='LWFWA74BDCU' where id=9; -update noar ti set b0='LWFWA74BDCU' where id=9; -update noar tt set v0='0JL25MS' where id=9; -update noar ti set v0='0JL25MS' where id=9; -update noar tt set b1='TCJB63E' where id=9; -update noar ti set b1='TCJB63E' where id=9; -update noar tt set v0='GBSUW1X0FV0750OADI9SEBB4ENVTGG' where id=9; -update noar ti set v0='GBSUW1X0FV0750OADI9SEBB4ENVTGG' where id=9; -update noar tt set b2='KY2FK8H3SMZQBQM06FIHOEK6D8Y8' where id=9; -update noar ti set b2='KY2FK8H3SMZQBQM06FIHOEK6D8Y8' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - f0 int null, - v0 varchar(256) null, - b0 longblob null, - b1 blob null, - b2 blob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='IUWBC9Y6QMDXDVYR' where id=1; -update noar ti set v0='IUWBC9Y6QMDXDVYR' where id=1; -update noar tt set b0='3L4O1W6L' where id=1; -update noar ti set b0='3L4O1W6L' where id=1; -update noar tt set v0='L35O' where id=1; -update noar ti set v0='L35O' where id=1; -update noar tt set b1='SGA' where id=1; -update noar ti set b1='SGA' where id=1; -update noar tt set v0='6PJEW3' where id=1; -update noar ti set v0='6PJEW3' where id=1; -update noar tt set b2='ZKJ3' where id=1; -update noar ti set b2='ZKJ3' where id=1; -update noar tt set v0='NEK' where id=2; -update noar ti set v0='NEK' where id=2; -update noar tt set b0='TEYF3TK8AOTDJQ5OE90F57E3H' where id=2; -update noar ti set b0='TEYF3TK8AOTDJQ5OE90F57E3H' where id=2; -update noar tt set v0='8QGW2AB4WQVGWT46YR2YU9R' where id=2; -update noar ti set v0='8QGW2AB4WQVGWT46YR2YU9R' where id=2; -update noar tt set b1='V95RPGER5UOLZWYZTIXQSBS' where id=2; -update noar ti set b1='V95RPGER5UOLZWYZTIXQSBS' where id=2; -update noar tt set v0='T1JE7M' where id=2; -update noar ti set v0='T1JE7M' where id=2; -update noar tt set b2='5TWLNAMCU9H4O9BS40G0L1OB6FB' where id=2; -update noar ti set b2='5TWLNAMCU9H4O9BS40G0L1OB6FB' where id=2; -update noar tt set v0='4JWGCZZW4RNO15YF9CB' where id=3; -update noar ti set v0='4JWGCZZW4RNO15YF9CB' where id=3; -update noar tt set b0='ZY4NSRK9OOZ' where id=3; -update noar ti set b0='ZY4NSRK9OOZ' where id=3; -update noar tt set v0='KZXGF4CQ5TZG7F7NJKO' where id=3; -update noar ti set v0='KZXGF4CQ5TZG7F7NJKO' where id=3; -update noar tt set b1='RSP' where id=3; -update noar ti set b1='RSP' where id=3; -update noar tt set v0='T1ONZ' where id=3; -update noar ti set v0='T1ONZ' where id=3; -update noar tt set b2='28UPM1PV25C1HHNFGP1' where id=3; -update noar ti set b2='28UPM1PV25C1HHNFGP1' where id=3; -update noar tt set v0='R4YKZQORXOYQTS05PWQ' where id=4; -update noar ti set v0='R4YKZQORXOYQTS05PWQ' where id=4; -update noar tt set b0='1R0U' where id=4; -update noar ti set b0='1R0U' where id=4; -update noar tt set v0='YL9FX1GM6XJHJE' where id=4; -update noar ti set v0='YL9FX1GM6XJHJE' where id=4; -update noar tt set b1='FFBSOMJDGFKBV' where id=4; -update noar ti set b1='FFBSOMJDGFKBV' where id=4; -update noar tt set v0='I1H3SFETRWC' where id=4; -update noar ti set v0='I1H3SFETRWC' where id=4; -update noar tt set b2='3YOVBYBZLFTZT5EXVANJ9DN' where id=4; -update noar ti set b2='3YOVBYBZLFTZT5EXVANJ9DN' where id=4; -update noar tt set v0='V' where id=5; -update noar ti set v0='V' where id=5; -update noar tt set b0='ZGWR5KP2LXFIR01TXD5ZPY5' where id=5; -update noar ti set b0='ZGWR5KP2LXFIR01TXD5ZPY5' where id=5; -update noar tt set v0='6SWK1W9S3BK5CZF8DSPNCAM' where id=5; -update noar ti set v0='6SWK1W9S3BK5CZF8DSPNCAM' where id=5; -update noar tt set b1='IXAVX3LYSEV79VRV6MI8FLP' where id=5; -update noar ti set b1='IXAVX3LYSEV79VRV6MI8FLP' where id=5; -update noar tt set v0='21VSAEYY0W' where id=5; -update noar ti set v0='21VSAEYY0W' where id=5; -update noar tt set b2='B6RIHC5GGN0HP1QSLNLH2EJKZR' where id=5; -update noar ti set b2='B6RIHC5GGN0HP1QSLNLH2EJKZR' where id=5; -update noar tt set v0='ISBEVIZ2SMEOSTE67TJ' where id=6; -update noar ti set v0='ISBEVIZ2SMEOSTE67TJ' where id=6; -update noar tt set b0='LXGS6Z82XVIWFJE3JNQD7' where id=6; -update noar ti set b0='LXGS6Z82XVIWFJE3JNQD7' where id=6; -update noar tt set v0='15T30XA0EHLM9Z1BJIVX34NQHCU' where id=6; -update noar ti set v0='15T30XA0EHLM9Z1BJIVX34NQHCU' where id=6; -update noar tt set b1='LNXJQKDJ3X6337S2' where id=6; -update noar ti set b1='LNXJQKDJ3X6337S2' where id=6; -update noar tt set v0='XUHU88Y4J29GADBMDRE' where id=6; -update noar ti set v0='XUHU88Y4J29GADBMDRE' where id=6; -update noar tt set b2='PR7U8X' where id=6; -update noar ti set b2='PR7U8X' where id=6; -update noar tt set v0='B6TBGDHSYG0CCTR' where id=7; -update noar ti set v0='B6TBGDHSYG0CCTR' where id=7; -update noar tt set b0='OHCBQU0FPZNLISDBAXV9VLR6U8P' where id=7; -update noar ti set b0='OHCBQU0FPZNLISDBAXV9VLR6U8P' where id=7; -update noar tt set v0='YU5' where id=7; -update noar ti set v0='YU5' where id=7; -update noar tt set b1='BGMBXSJQMPEFIP6E77KS9N3A37JMJI3' where id=7; -update noar ti set b1='BGMBXSJQMPEFIP6E77KS9N3A37JMJI3' where id=7; -update noar tt set v0='UUMNZ9ZJ23GRRC3PBDXRK5YHEZV' where id=7; -update noar ti set v0='UUMNZ9ZJ23GRRC3PBDXRK5YHEZV' where id=7; -update noar tt set b2='H3X9Q73J53CFAAO45M4A0URJMEPI' where id=7; -update noar ti set b2='H3X9Q73J53CFAAO45M4A0URJMEPI' where id=7; -update noar tt set v0='1' where id=8; -update noar ti set v0='1' where id=8; -update noar tt set b0='V62TI7A1RY3X2GPVGHG9WVHQ5NKUPJ' where id=8; -update noar ti set b0='V62TI7A1RY3X2GPVGHG9WVHQ5NKUPJ' where id=8; -update noar tt set v0='46K37GU404HS0B0U8BLJ445JYNGTW5OF' where id=8; -update noar ti set v0='46K37GU404HS0B0U8BLJ445JYNGTW5OF' where id=8; -update noar tt set b1='A8LJKWUQNRXUQ4J40859X4KH85IT' where id=8; -update noar ti set b1='A8LJKWUQNRXUQ4J40859X4KH85IT' where id=8; -update noar tt set v0='P3CEKKJKZBMQ3OSEE1I' where id=8; -update noar ti set v0='P3CEKKJKZBMQ3OSEE1I' where id=8; -update noar tt set b2='HNCO4R7' where id=8; -update noar ti set b2='HNCO4R7' where id=8; -update noar tt set v0='6SXV0S61XDZJYSZ8NN4RY7D2O76BYY' where id=9; -update noar ti set v0='6SXV0S61XDZJYSZ8NN4RY7D2O76BYY' where id=9; -update noar tt set b0='4D7JHY' where id=9; -update noar ti set b0='4D7JHY' where id=9; -update noar tt set v0='0VOHP79' where id=9; -update noar ti set v0='0VOHP79' where id=9; -update noar tt set b1='1JBM735T9ORWVC5A6BIZWR2Y' where id=9; -update noar ti set b1='1JBM735T9ORWVC5A6BIZWR2Y' where id=9; -update noar tt set v0='GM8IKQPIWI2J8MDTDJVE' where id=9; -update noar ti set v0='GM8IKQPIWI2J8MDTDJVE' where id=9; -update noar tt set b2='ZPM6S7XTS3' where id=9; -update noar ti set b2='ZPM6S7XTS3' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - f0 int not null, - v0 varchar(32) not null, - b0 longblob not null, - b1 blob not null, - b2 blob not null -) engine=tokudb; -insert into tt values (1,0,'','','',''); -insert into tt values (2,0,'','','',''); -insert into tt values (3,0,'','','',''); -insert into tt values (4,0,'','','',''); -insert into tt values (5,0,'','','',''); -insert into tt values (6,0,'','','',''); -insert into tt values (7,0,'','','',''); -insert into tt values (8,0,'','','',''); -insert into tt values (9,0,'','','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='1AF01X3WS227' where id=1; -update noar ti set v0='1AF01X3WS227' where id=1; -update noar tt set b0='1R49AHBWT09IF5HLF5R6KAV' where id=1; -update noar ti set b0='1R49AHBWT09IF5HLF5R6KAV' where id=1; -update noar tt set v0='P0HDP2' where id=1; -update noar ti set v0='P0HDP2' where id=1; -update noar tt set b1='V4ZOBTMDUQSJUIMTX6OGRVV73PK0COX' where id=1; -update noar ti set b1='V4ZOBTMDUQSJUIMTX6OGRVV73PK0COX' where id=1; -update noar tt set v0='BCG9Y1I8X8VGOCNQMH5HH' where id=1; -update noar ti set v0='BCG9Y1I8X8VGOCNQMH5HH' where id=1; -update noar tt set b2='BAL8' where id=1; -update noar ti set b2='BAL8' where id=1; -update noar tt set v0='W6KIP' where id=2; -update noar ti set v0='W6KIP' where id=2; -update noar tt set b0='A1LN2XZW6' where id=2; -update noar ti set b0='A1LN2XZW6' where id=2; -update noar tt set v0='T8OWOMFO8ER645CKXBR4N5J4' where id=2; -update noar ti set v0='T8OWOMFO8ER645CKXBR4N5J4' where id=2; -update noar tt set b1='M65A8F75ZLFATNCGIEJ9BKS' where id=2; -update noar ti set b1='M65A8F75ZLFATNCGIEJ9BKS' where id=2; -update noar tt set v0='2WKZN7' where id=2; -update noar ti set v0='2WKZN7' where id=2; -update noar tt set b2='X2F' where id=2; -update noar ti set b2='X2F' where id=2; -update noar tt set v0='9P13EK0CEVA6SHZQHKV3DN7' where id=3; -update noar ti set v0='9P13EK0CEVA6SHZQHKV3DN7' where id=3; -update noar tt set b0='9W6E78T54GKTFAALZXPH79ONCOYJ' where id=3; -update noar ti set b0='9W6E78T54GKTFAALZXPH79ONCOYJ' where id=3; -update noar tt set v0='LSL8W0AC' where id=3; -update noar ti set v0='LSL8W0AC' where id=3; -update noar tt set b1='XSNNK80QZV5MNFZ2E6623QS' where id=3; -update noar ti set b1='XSNNK80QZV5MNFZ2E6623QS' where id=3; -update noar tt set v0='NHGCAVU9RIWUMN3YC7LQVG' where id=3; -update noar ti set v0='NHGCAVU9RIWUMN3YC7LQVG' where id=3; -update noar tt set b2='L' where id=3; -update noar ti set b2='L' where id=3; -update noar tt set v0='INJGNJQEBMWEIPWVJU0CE8R9B5HXQ' where id=4; -update noar ti set v0='INJGNJQEBMWEIPWVJU0CE8R9B5HXQ' where id=4; -update noar tt set b0='8GI41B8OW7V' where id=4; -update noar ti set b0='8GI41B8OW7V' where id=4; -update noar tt set v0='HHE80S' where id=4; -update noar ti set v0='HHE80S' where id=4; -update noar tt set b1='S' where id=4; -update noar ti set b1='S' where id=4; -update noar tt set v0='IXT6ZVZDZMK0T85YJN45MEG057' where id=4; -update noar ti set v0='IXT6ZVZDZMK0T85YJN45MEG057' where id=4; -update noar tt set b2='R1K2O4FKFMPRJXD6PZCW' where id=4; -update noar ti set b2='R1K2O4FKFMPRJXD6PZCW' where id=4; -update noar tt set v0='8F37QD6Y' where id=5; -update noar ti set v0='8F37QD6Y' where id=5; -update noar tt set b0='XERSA78' where id=5; -update noar ti set b0='XERSA78' where id=5; -update noar tt set v0='J2I1EOVVPK6F7R08H3RVMJ' where id=5; -update noar ti set v0='J2I1EOVVPK6F7R08H3RVMJ' where id=5; -update noar tt set b1='0TJCITGVWSB' where id=5; -update noar ti set b1='0TJCITGVWSB' where id=5; -update noar tt set v0='74FN6VF072SQ2WCCWSLG3PD' where id=5; -update noar ti set v0='74FN6VF072SQ2WCCWSLG3PD' where id=5; -update noar tt set b2='0IKG' where id=5; -update noar ti set b2='0IKG' where id=5; -update noar tt set v0='VA09DG6FN2X61PWLR684YT120V' where id=6; -update noar ti set v0='VA09DG6FN2X61PWLR684YT120V' where id=6; -update noar tt set b0='O10HRJ7R0HXSHN2J7V5' where id=6; -update noar ti set b0='O10HRJ7R0HXSHN2J7V5' where id=6; -update noar tt set v0='4ZRP8BKUT3Q1QEBG' where id=6; -update noar ti set v0='4ZRP8BKUT3Q1QEBG' where id=6; -update noar tt set b1='NLJHW2' where id=6; -update noar ti set b1='NLJHW2' where id=6; -update noar tt set v0='YOCXOS72XX4HO8K7G39UKCE9O' where id=6; -update noar ti set v0='YOCXOS72XX4HO8K7G39UKCE9O' where id=6; -update noar tt set b2='GBV9V4LQSJZ09UMHMEKGLSRJN' where id=6; -update noar ti set b2='GBV9V4LQSJZ09UMHMEKGLSRJN' where id=6; -update noar tt set v0='EVIU5FYHPGJH8WLTPNVFFE1PV' where id=7; -update noar ti set v0='EVIU5FYHPGJH8WLTPNVFFE1PV' where id=7; -update noar tt set b0='LTK177PKH35YPZ9A91' where id=7; -update noar ti set b0='LTK177PKH35YPZ9A91' where id=7; -update noar tt set v0='JMBFPP8Z554VG2VSYENDG' where id=7; -update noar ti set v0='JMBFPP8Z554VG2VSYENDG' where id=7; -update noar tt set b1='HR7JF0B25' where id=7; -update noar ti set b1='HR7JF0B25' where id=7; -update noar tt set v0='DPWFLMRYQHCSD6HDA1IG1UT6SVHU75' where id=7; -update noar ti set v0='DPWFLMRYQHCSD6HDA1IG1UT6SVHU75' where id=7; -update noar tt set b2='VHQ8IUZPUCPHA' where id=7; -update noar ti set b2='VHQ8IUZPUCPHA' where id=7; -update noar tt set v0='6O29JV8UO5HKA6VDNZ1V6Z36X' where id=8; -update noar ti set v0='6O29JV8UO5HKA6VDNZ1V6Z36X' where id=8; -update noar tt set b0='H5LETTK4PYX' where id=8; -update noar ti set b0='H5LETTK4PYX' where id=8; -update noar tt set v0='VYTJ3790LQU8NQYR' where id=8; -update noar ti set v0='VYTJ3790LQU8NQYR' where id=8; -update noar tt set b1='MVSR5HHA4C5AXWQS5GENVVV1B62BWN' where id=8; -update noar ti set b1='MVSR5HHA4C5AXWQS5GENVVV1B62BWN' where id=8; -update noar tt set v0='NKPACDJB' where id=8; -update noar ti set v0='NKPACDJB' where id=8; -update noar tt set b2='YILN1WQ' where id=8; -update noar ti set b2='YILN1WQ' where id=8; -update noar tt set v0='8IJ2AEJQSU1GYNXR9OYSS68X0J1NF' where id=9; -update noar ti set v0='8IJ2AEJQSU1GYNXR9OYSS68X0J1NF' where id=9; -update noar tt set b0='C0YEYJD9CW3CG1UX1EKO470' where id=9; -update noar ti set b0='C0YEYJD9CW3CG1UX1EKO470' where id=9; -update noar tt set v0='7B6SBJ87W5' where id=9; -update noar ti set v0='7B6SBJ87W5' where id=9; -update noar tt set b1='B8FKWM' where id=9; -update noar ti set b1='B8FKWM' where id=9; -update noar tt set v0='V2H3LBB1JLD10C1XPA6T4DHS40NA' where id=9; -update noar ti set v0='V2H3LBB1JLD10C1XPA6T4DHS40NA' where id=9; -update noar tt set b2='G8KDCJRBHAP0AY' where id=9; -update noar ti set b2='G8KDCJRBHAP0AY' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - f0 int not null, - v0 varchar(256) not null, - b0 longblob not null, - b1 blob not null, - b2 blob not null -) engine=tokudb; -insert into tt values (1,0,'','','',''); -insert into tt values (2,0,'','','',''); -insert into tt values (3,0,'','','',''); -insert into tt values (4,0,'','','',''); -insert into tt values (5,0,'','','',''); -insert into tt values (6,0,'','','',''); -insert into tt values (7,0,'','','',''); -insert into tt values (8,0,'','','',''); -insert into tt values (9,0,'','','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='9HIHW2P64KCSIM0' where id=1; -update noar ti set v0='9HIHW2P64KCSIM0' where id=1; -update noar tt set b0='ZGOYY60STTLGSKT9QSZLQ016' where id=1; -update noar ti set b0='ZGOYY60STTLGSKT9QSZLQ016' where id=1; -update noar tt set v0='HSQZ4J2VKO4U' where id=1; -update noar ti set v0='HSQZ4J2VKO4U' where id=1; -update noar tt set b1='O9I191I9DGIXABA' where id=1; -update noar ti set b1='O9I191I9DGIXABA' where id=1; -update noar tt set v0='YTA5XSHN31AE8KDC' where id=1; -update noar ti set v0='YTA5XSHN31AE8KDC' where id=1; -update noar tt set b2='F' where id=1; -update noar ti set b2='F' where id=1; -update noar tt set v0='A3WT1XH4' where id=2; -update noar ti set v0='A3WT1XH4' where id=2; -update noar tt set b0='TOPUAFDME79J8UHW8L9' where id=2; -update noar ti set b0='TOPUAFDME79J8UHW8L9' where id=2; -update noar tt set v0='GEY' where id=2; -update noar ti set v0='GEY' where id=2; -update noar tt set b1='EHK29M241DFY8ZGHCJ4' where id=2; -update noar ti set b1='EHK29M241DFY8ZGHCJ4' where id=2; -update noar tt set v0='91MC94IR9C1JWCQ' where id=2; -update noar ti set v0='91MC94IR9C1JWCQ' where id=2; -update noar tt set b2='99Z186GL74WPV9FFZGF1' where id=2; -update noar ti set b2='99Z186GL74WPV9FFZGF1' where id=2; -update noar tt set v0='I02RJX4AV9XPDDPEGL3Q24' where id=3; -update noar ti set v0='I02RJX4AV9XPDDPEGL3Q24' where id=3; -update noar tt set b0='064766' where id=3; -update noar ti set b0='064766' where id=3; -update noar tt set v0='KO4M0BU57' where id=3; -update noar ti set v0='KO4M0BU57' where id=3; -update noar tt set b1='D7MHSNW' where id=3; -update noar ti set b1='D7MHSNW' where id=3; -update noar tt set v0='5FXAKS9OEW' where id=3; -update noar ti set v0='5FXAKS9OEW' where id=3; -update noar tt set b2='9RXKSRFLL6DK' where id=3; -update noar ti set b2='9RXKSRFLL6DK' where id=3; -update noar tt set v0='5IJ1250RDGKZ8OR' where id=4; -update noar ti set v0='5IJ1250RDGKZ8OR' where id=4; -update noar tt set b0='X6' where id=4; -update noar ti set b0='X6' where id=4; -update noar tt set v0='ABQ28OV1794IZIE8GRIE74SBJP5' where id=4; -update noar ti set v0='ABQ28OV1794IZIE8GRIE74SBJP5' where id=4; -update noar tt set b1='D6FHCAV3A7QJ' where id=4; -update noar ti set b1='D6FHCAV3A7QJ' where id=4; -update noar tt set v0='RVYUOMOXHG3G' where id=4; -update noar ti set v0='RVYUOMOXHG3G' where id=4; -update noar tt set b2='MFJ0N3SHFY' where id=4; -update noar ti set b2='MFJ0N3SHFY' where id=4; -update noar tt set v0='5E9XK8AZJR2QHDW2M217K9UDW4YIMZ93' where id=5; -update noar ti set v0='5E9XK8AZJR2QHDW2M217K9UDW4YIMZ93' where id=5; -update noar tt set b0='3MM1N38' where id=5; -update noar ti set b0='3MM1N38' where id=5; -update noar tt set v0='YIG77DRP1NT7MA70YZNZ' where id=5; -update noar ti set v0='YIG77DRP1NT7MA70YZNZ' where id=5; -update noar tt set b1='HM5VT0VIFMX5' where id=5; -update noar ti set b1='HM5VT0VIFMX5' where id=5; -update noar tt set v0='E44S3M2D7' where id=5; -update noar ti set v0='E44S3M2D7' where id=5; -update noar tt set b2='9KGB9YS547AVWSIW07JVLMT' where id=5; -update noar ti set b2='9KGB9YS547AVWSIW07JVLMT' where id=5; -update noar tt set v0='TFLIRGQORV6S6HMK' where id=6; -update noar ti set v0='TFLIRGQORV6S6HMK' where id=6; -update noar tt set b0='JH0' where id=6; -update noar ti set b0='JH0' where id=6; -update noar tt set v0='SF3TUCQR1JTGU0LXWE1R0DNRHOGTPP8' where id=6; -update noar ti set v0='SF3TUCQR1JTGU0LXWE1R0DNRHOGTPP8' where id=6; -update noar tt set b1='WLUXRR3FE969X574' where id=6; -update noar ti set b1='WLUXRR3FE969X574' where id=6; -update noar tt set v0='AO2' where id=6; -update noar ti set v0='AO2' where id=6; -update noar tt set b2='FK' where id=6; -update noar ti set b2='FK' where id=6; -update noar tt set v0='1O0X7DOSU3CWQXWP5Y74OK7E9MQX' where id=7; -update noar ti set v0='1O0X7DOSU3CWQXWP5Y74OK7E9MQX' where id=7; -update noar tt set b0='RGV6MBE' where id=7; -update noar ti set b0='RGV6MBE' where id=7; -update noar tt set v0='51ZZZA9JI87KLBVKVLQVOQZV9LL8XX62' where id=7; -update noar ti set v0='51ZZZA9JI87KLBVKVLQVOQZV9LL8XX62' where id=7; -update noar tt set b1='LME1J16K3DC0VTDCXM44TW' where id=7; -update noar ti set b1='LME1J16K3DC0VTDCXM44TW' where id=7; -update noar tt set v0='6J4B6ZITB5N6A8YJCJQ1XJPMRSHLI' where id=7; -update noar ti set v0='6J4B6ZITB5N6A8YJCJQ1XJPMRSHLI' where id=7; -update noar tt set b2='GYSIE47ALW8' where id=7; -update noar ti set b2='GYSIE47ALW8' where id=7; -update noar tt set v0='KE' where id=8; -update noar ti set v0='KE' where id=8; -update noar tt set b0='BB8XO8EUNS6GX675FX9GVI' where id=8; -update noar ti set b0='BB8XO8EUNS6GX675FX9GVI' where id=8; -update noar tt set v0='7VZ05FTTP6HMT5BLGOP7LYNXUN4' where id=8; -update noar ti set v0='7VZ05FTTP6HMT5BLGOP7LYNXUN4' where id=8; -update noar tt set b1='K' where id=8; -update noar ti set b1='K' where id=8; -update noar tt set v0='TSFBMY5HR2YHSDT6E559F08J' where id=8; -update noar ti set v0='TSFBMY5HR2YHSDT6E559F08J' where id=8; -update noar tt set b2='HGIQ8168E62PTPD5BFMAIEW' where id=8; -update noar ti set b2='HGIQ8168E62PTPD5BFMAIEW' where id=8; -update noar tt set v0='42XP' where id=9; -update noar ti set v0='42XP' where id=9; -update noar tt set b0='NO4TPSLA6LT' where id=9; -update noar ti set b0='NO4TPSLA6LT' where id=9; -update noar tt set v0='OVJ9MSPPOOA84LA8NUG' where id=9; -update noar ti set v0='OVJ9MSPPOOA84LA8NUG' where id=9; -update noar tt set b1='TE4U' where id=9; -update noar ti set b1='TE4U' where id=9; -update noar tt set v0='PUUGG3UFRZGZ29HMYYY0S7KCQP8LBQ' where id=9; -update noar ti set v0='PUUGG3UFRZGZ29HMYYY0S7KCQP8LBQ' where id=9; -update noar tt set b2='4B5SPQICKSHW93TKJKE8IBB8MJB2YI2S' where id=9; -update noar ti set b2='4B5SPQICKSHW93TKJKE8IBB8MJB2YI2S' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - f0 int null, - v0 varchar(32) null, - b0 longblob null, - b1 blob null, - b2 mediumblob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='GF17L1U1SX3LZMBL72' where id=1; -update noar ti set v0='GF17L1U1SX3LZMBL72' where id=1; -update noar tt set b0='BIXPE4LKQ735CMRFJ8CKEHY0CA8JQ' where id=1; -update noar ti set b0='BIXPE4LKQ735CMRFJ8CKEHY0CA8JQ' where id=1; -update noar tt set v0='VWW0Q' where id=1; -update noar ti set v0='VWW0Q' where id=1; -update noar tt set b1='QHEY4IW47M65KY9' where id=1; -update noar ti set b1='QHEY4IW47M65KY9' where id=1; -update noar tt set v0='2DYGP7345S1BKLKSZRGR9CLCA1DOZE' where id=1; -update noar ti set v0='2DYGP7345S1BKLKSZRGR9CLCA1DOZE' where id=1; -update noar tt set b2='WH5G4TLGEOBCK3X6BZ3CHTFJEZUSHHW' where id=1; -update noar ti set b2='WH5G4TLGEOBCK3X6BZ3CHTFJEZUSHHW' where id=1; -update noar tt set v0='RRGD' where id=2; -update noar ti set v0='RRGD' where id=2; -update noar tt set b0='IM' where id=2; -update noar ti set b0='IM' where id=2; -update noar tt set v0='Y6S1111MTK1NDOZ33RV3OEA1A9' where id=2; -update noar ti set v0='Y6S1111MTK1NDOZ33RV3OEA1A9' where id=2; -update noar tt set b1='T' where id=2; -update noar ti set b1='T' where id=2; -update noar tt set v0='5E3YSZ5D7ZKM2Y8HBTWN20P1F235' where id=2; -update noar ti set v0='5E3YSZ5D7ZKM2Y8HBTWN20P1F235' where id=2; -update noar tt set b2='EAH1Z1NKJFFOSGL4RYQRNARL' where id=2; -update noar ti set b2='EAH1Z1NKJFFOSGL4RYQRNARL' where id=2; -update noar tt set v0='21OE8CJNWI5' where id=3; -update noar ti set v0='21OE8CJNWI5' where id=3; -update noar tt set b0='PDOMXFN73FCT' where id=3; -update noar ti set b0='PDOMXFN73FCT' where id=3; -update noar tt set v0='NZ5TXD3AQDQ' where id=3; -update noar ti set v0='NZ5TXD3AQDQ' where id=3; -update noar tt set b1='ZO0PYX3IF3Q4FP23Z7LGKWNOJNZ3UP8' where id=3; -update noar ti set b1='ZO0PYX3IF3Q4FP23Z7LGKWNOJNZ3UP8' where id=3; -update noar tt set v0='ORJIBHYU9Y238PAKK7C' where id=3; -update noar ti set v0='ORJIBHYU9Y238PAKK7C' where id=3; -update noar tt set b2='H5RD5YWAS8' where id=3; -update noar ti set b2='H5RD5YWAS8' where id=3; -update noar tt set v0='Q19GASNYG9JIAP46IJRBAL1XCW7' where id=4; -update noar ti set v0='Q19GASNYG9JIAP46IJRBAL1XCW7' where id=4; -update noar tt set b0='TWBIUI2Q5BO3LD3RIQC' where id=4; -update noar ti set b0='TWBIUI2Q5BO3LD3RIQC' where id=4; -update noar tt set v0='1SFP' where id=4; -update noar ti set v0='1SFP' where id=4; -update noar tt set b1='X86J3UPKVPZ0PE4W' where id=4; -update noar ti set b1='X86J3UPKVPZ0PE4W' where id=4; -update noar tt set v0='WA890F8YZF968HN' where id=4; -update noar ti set v0='WA890F8YZF968HN' where id=4; -update noar tt set b2='EWS07I9' where id=4; -update noar ti set b2='EWS07I9' where id=4; -update noar tt set v0='169TT2I3RUI7GDBSQT8F48CBI' where id=5; -update noar ti set v0='169TT2I3RUI7GDBSQT8F48CBI' where id=5; -update noar tt set b0='MHWTYHVC8E88QYOY6Z' where id=5; -update noar ti set b0='MHWTYHVC8E88QYOY6Z' where id=5; -update noar tt set v0='V8X1VR71VBZL4U5OGQR6WFHHURAAUF' where id=5; -update noar ti set v0='V8X1VR71VBZL4U5OGQR6WFHHURAAUF' where id=5; -update noar tt set b1='6I3T' where id=5; -update noar ti set b1='6I3T' where id=5; -update noar tt set v0='XN' where id=5; -update noar ti set v0='XN' where id=5; -update noar tt set b2='PZ3NZBKIR0PCSWZWC3VLXU3PTO5AUP' where id=5; -update noar ti set b2='PZ3NZBKIR0PCSWZWC3VLXU3PTO5AUP' where id=5; -update noar tt set v0='DJ2OR7DROVN' where id=6; -update noar ti set v0='DJ2OR7DROVN' where id=6; -update noar tt set b0='I6430XDDKVG627T2CUIX' where id=6; -update noar ti set b0='I6430XDDKVG627T2CUIX' where id=6; -update noar tt set v0='KAAEGP' where id=6; -update noar ti set v0='KAAEGP' where id=6; -update noar tt set b1='5H' where id=6; -update noar ti set b1='5H' where id=6; -update noar tt set v0='VQ14VVOP7U' where id=6; -update noar ti set v0='VQ14VVOP7U' where id=6; -update noar tt set b2='68BW9OMT2WFVC8U0PE77IQCLTSEK5D' where id=6; -update noar ti set b2='68BW9OMT2WFVC8U0PE77IQCLTSEK5D' where id=6; -update noar tt set v0='QMDIF8Z144FMY1J4OUBYBJOEY0ZOY0' where id=7; -update noar ti set v0='QMDIF8Z144FMY1J4OUBYBJOEY0ZOY0' where id=7; -update noar tt set b0='HVW5I3S' where id=7; -update noar ti set b0='HVW5I3S' where id=7; -update noar tt set v0='K9DYRGMR' where id=7; -update noar ti set v0='K9DYRGMR' where id=7; -update noar tt set b1='KP8UAE2WQKDR46SVQ4AVB9O9LXWZSVTB' where id=7; -update noar ti set b1='KP8UAE2WQKDR46SVQ4AVB9O9LXWZSVTB' where id=7; -update noar tt set v0='X' where id=7; -update noar ti set v0='X' where id=7; -update noar tt set b2='OBI72B7V81ADVKN26LVJKWJ6' where id=7; -update noar ti set b2='OBI72B7V81ADVKN26LVJKWJ6' where id=7; -update noar tt set v0='ZDXIBY' where id=8; -update noar ti set v0='ZDXIBY' where id=8; -update noar tt set b0='0LV853A7FHMSQ' where id=8; -update noar ti set b0='0LV853A7FHMSQ' where id=8; -update noar tt set v0='SXSMCIVD9' where id=8; -update noar ti set v0='SXSMCIVD9' where id=8; -update noar tt set b1='6AFPUJCZE7HNH' where id=8; -update noar ti set b1='6AFPUJCZE7HNH' where id=8; -update noar tt set v0='AQIQNPEVRW3BN40DBBSSL9S4PWY9U5N0' where id=8; -update noar ti set v0='AQIQNPEVRW3BN40DBBSSL9S4PWY9U5N0' where id=8; -update noar tt set b2='P06N9D7KMGE9R2CKLFQ8K08H7' where id=8; -update noar ti set b2='P06N9D7KMGE9R2CKLFQ8K08H7' where id=8; -update noar tt set v0='VW23U5K782KC5Y4O9GK552P55C' where id=9; -update noar ti set v0='VW23U5K782KC5Y4O9GK552P55C' where id=9; -update noar tt set b0='ZF' where id=9; -update noar ti set b0='ZF' where id=9; -update noar tt set v0='0KYY7' where id=9; -update noar ti set v0='0KYY7' where id=9; -update noar tt set b1='Q6NKN8TYPGE3FB5265N' where id=9; -update noar ti set b1='Q6NKN8TYPGE3FB5265N' where id=9; -update noar tt set v0='9XR' where id=9; -update noar ti set v0='9XR' where id=9; -update noar tt set b2='Q4RE36AW59CYH' where id=9; -update noar ti set b2='Q4RE36AW59CYH' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - f0 int null, - v0 varchar(256) null, - b0 longblob null, - b1 blob null, - b2 mediumblob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='3S0WWESDHKR4K2WT6QJDUD' where id=1; -update noar ti set v0='3S0WWESDHKR4K2WT6QJDUD' where id=1; -update noar tt set b0='98S345IMCAKXRS78TW57CGSQMV' where id=1; -update noar ti set b0='98S345IMCAKXRS78TW57CGSQMV' where id=1; -update noar tt set v0='LP2B7MV4T39WOGIDDT' where id=1; -update noar ti set v0='LP2B7MV4T39WOGIDDT' where id=1; -update noar tt set b1='T6JI' where id=1; -update noar ti set b1='T6JI' where id=1; -update noar tt set v0='2SQEKQZBACK1C0JCAP12IDTDAGS' where id=1; -update noar ti set v0='2SQEKQZBACK1C0JCAP12IDTDAGS' where id=1; -update noar tt set b2='HBH2TP3YS3X' where id=1; -update noar ti set b2='HBH2TP3YS3X' where id=1; -update noar tt set v0='EFB580L901RLHWFBZFMAD6LDD' where id=2; -update noar ti set v0='EFB580L901RLHWFBZFMAD6LDD' where id=2; -update noar tt set b0='0R' where id=2; -update noar ti set b0='0R' where id=2; -update noar tt set v0='TSLL5J9ABLE5VJ5QWU9DT' where id=2; -update noar ti set v0='TSLL5J9ABLE5VJ5QWU9DT' where id=2; -update noar tt set b1='KSZC3MI418X1X0P4LJRE' where id=2; -update noar ti set b1='KSZC3MI418X1X0P4LJRE' where id=2; -update noar tt set v0='T' where id=2; -update noar ti set v0='T' where id=2; -update noar tt set b2='Q14Z7EY36NPU498XWNSPZZ0RHLJUK' where id=2; -update noar ti set b2='Q14Z7EY36NPU498XWNSPZZ0RHLJUK' where id=2; -update noar tt set v0='2EYU368F9AIF0NHDJIH' where id=3; -update noar ti set v0='2EYU368F9AIF0NHDJIH' where id=3; -update noar tt set b0='R62QJWMOQZGTJ832UVCG25' where id=3; -update noar ti set b0='R62QJWMOQZGTJ832UVCG25' where id=3; -update noar tt set v0='4CQ06TQ' where id=3; -update noar ti set v0='4CQ06TQ' where id=3; -update noar tt set b1='X0H0S121RZCUZOWMM00W' where id=3; -update noar ti set b1='X0H0S121RZCUZOWMM00W' where id=3; -update noar tt set v0='07JPZUIHCF' where id=3; -update noar ti set v0='07JPZUIHCF' where id=3; -update noar tt set b2='O5K2VGGLZ' where id=3; -update noar ti set b2='O5K2VGGLZ' where id=3; -update noar tt set v0='A1PELQZP43WBDFWKYKZCO' where id=4; -update noar ti set v0='A1PELQZP43WBDFWKYKZCO' where id=4; -update noar tt set b0='TT3Q6E3CMRB49183WEDUCX1GUY1JB' where id=4; -update noar ti set b0='TT3Q6E3CMRB49183WEDUCX1GUY1JB' where id=4; -update noar tt set v0='BVZUTKEGUNII55' where id=4; -update noar ti set v0='BVZUTKEGUNII55' where id=4; -update noar tt set b1='QFO7XNDIN3W17DQBKWFELY4SYUTK' where id=4; -update noar ti set b1='QFO7XNDIN3W17DQBKWFELY4SYUTK' where id=4; -update noar tt set v0='GKZGU5XQE70G953153KW' where id=4; -update noar ti set v0='GKZGU5XQE70G953153KW' where id=4; -update noar tt set b2='0UT6VL9YRZ1BQGN2ZDDEND52KCJFIS' where id=4; -update noar ti set b2='0UT6VL9YRZ1BQGN2ZDDEND52KCJFIS' where id=4; -update noar tt set v0='IZ' where id=5; -update noar ti set v0='IZ' where id=5; -update noar tt set b0='PO' where id=5; -update noar ti set b0='PO' where id=5; -update noar tt set v0='IVLTDAOOVSAQ43COLDYYX3DS' where id=5; -update noar ti set v0='IVLTDAOOVSAQ43COLDYYX3DS' where id=5; -update noar tt set b1='LTM2Y7Q' where id=5; -update noar ti set b1='LTM2Y7Q' where id=5; -update noar tt set v0='6ILNNFYIFNPWETFXWWIGBP47X' where id=5; -update noar ti set v0='6ILNNFYIFNPWETFXWWIGBP47X' where id=5; -update noar tt set b2='ZJ9SEVPPPUFS4I' where id=5; -update noar ti set b2='ZJ9SEVPPPUFS4I' where id=5; -update noar tt set v0='3SQ8V1UBKQ78IT1NY6LYU1YUJ376OZWR' where id=6; -update noar ti set v0='3SQ8V1UBKQ78IT1NY6LYU1YUJ376OZWR' where id=6; -update noar tt set b0='BSE6T' where id=6; -update noar ti set b0='BSE6T' where id=6; -update noar tt set v0='SHSX1C95PJQHLU1CZOGSN6UCZLJBJHP' where id=6; -update noar ti set v0='SHSX1C95PJQHLU1CZOGSN6UCZLJBJHP' where id=6; -update noar tt set b1='Y4SSYZOGTV9XROMOTB5' where id=6; -update noar ti set b1='Y4SSYZOGTV9XROMOTB5' where id=6; -update noar tt set v0='F' where id=6; -update noar ti set v0='F' where id=6; -update noar tt set b2='4Z0V' where id=6; -update noar ti set b2='4Z0V' where id=6; -update noar tt set v0='EA8' where id=7; -update noar ti set v0='EA8' where id=7; -update noar tt set b0='02E687JK0K7LGDGAZ8VCQD' where id=7; -update noar ti set b0='02E687JK0K7LGDGAZ8VCQD' where id=7; -update noar tt set v0='2JVD7' where id=7; -update noar ti set v0='2JVD7' where id=7; -update noar tt set b1='829O6NNRJKWVJC3D07MHEWBYSE' where id=7; -update noar ti set b1='829O6NNRJKWVJC3D07MHEWBYSE' where id=7; -update noar tt set v0='CEKZE1U5RFIGD9AI0YW3' where id=7; -update noar ti set v0='CEKZE1U5RFIGD9AI0YW3' where id=7; -update noar tt set b2='EEFYBQ0' where id=7; -update noar ti set b2='EEFYBQ0' where id=7; -update noar tt set v0='6XHZQE03N4ZUCM0VE' where id=8; -update noar ti set v0='6XHZQE03N4ZUCM0VE' where id=8; -update noar tt set b0='YJ95' where id=8; -update noar ti set b0='YJ95' where id=8; -update noar tt set v0='4UEX038RMDJP6MPCHW7' where id=8; -update noar ti set v0='4UEX038RMDJP6MPCHW7' where id=8; -update noar tt set b1='QQ70KCQSVCC1QQUJZ9F6' where id=8; -update noar ti set b1='QQ70KCQSVCC1QQUJZ9F6' where id=8; -update noar tt set v0='NMB2NNIWLG3LVTX' where id=8; -update noar ti set v0='NMB2NNIWLG3LVTX' where id=8; -update noar tt set b2='5IPYW3GJOMUOCT8TPAMYPD' where id=8; -update noar ti set b2='5IPYW3GJOMUOCT8TPAMYPD' where id=8; -update noar tt set v0='56W3KQQQJG19X3MK1FU7693' where id=9; -update noar ti set v0='56W3KQQQJG19X3MK1FU7693' where id=9; -update noar tt set b0='EDJ8VGTE7K6UN0MB7V' where id=9; -update noar ti set b0='EDJ8VGTE7K6UN0MB7V' where id=9; -update noar tt set v0='JIAJQUSNHMO5SFJ9M' where id=9; -update noar ti set v0='JIAJQUSNHMO5SFJ9M' where id=9; -update noar tt set b1='MLV4JJE8VHT6QEAE2BTRD5Z' where id=9; -update noar ti set b1='MLV4JJE8VHT6QEAE2BTRD5Z' where id=9; -update noar tt set v0='IWCFX9FX' where id=9; -update noar ti set v0='IWCFX9FX' where id=9; -update noar tt set b2='OSD77LC4JJWD6RN' where id=9; -update noar ti set b2='OSD77LC4JJWD6RN' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - f0 int not null, - v0 varchar(32) not null, - b0 longblob not null, - b1 blob not null, - b2 mediumblob not null -) engine=tokudb; -insert into tt values (1,0,'','','',''); -insert into tt values (2,0,'','','',''); -insert into tt values (3,0,'','','',''); -insert into tt values (4,0,'','','',''); -insert into tt values (5,0,'','','',''); -insert into tt values (6,0,'','','',''); -insert into tt values (7,0,'','','',''); -insert into tt values (8,0,'','','',''); -insert into tt values (9,0,'','','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='JGKB0Y2UJ' where id=1; -update noar ti set v0='JGKB0Y2UJ' where id=1; -update noar tt set b0='1EJZ4F' where id=1; -update noar ti set b0='1EJZ4F' where id=1; -update noar tt set v0='IPXSVZDVJK' where id=1; -update noar ti set v0='IPXSVZDVJK' where id=1; -update noar tt set b1='X7MGG5VY0C7JM' where id=1; -update noar ti set b1='X7MGG5VY0C7JM' where id=1; -update noar tt set v0='2J4RLDNK09RXS7Q92XUB0CXYUL' where id=1; -update noar ti set v0='2J4RLDNK09RXS7Q92XUB0CXYUL' where id=1; -update noar tt set b2='H0GCJD97' where id=1; -update noar ti set b2='H0GCJD97' where id=1; -update noar tt set v0='DSKHARQ1TPSGP5P2K' where id=2; -update noar ti set v0='DSKHARQ1TPSGP5P2K' where id=2; -update noar tt set b0='UST5EVB0TVB2OU0A8A' where id=2; -update noar ti set b0='UST5EVB0TVB2OU0A8A' where id=2; -update noar tt set v0='H455KF89AVZT' where id=2; -update noar ti set v0='H455KF89AVZT' where id=2; -update noar tt set b1='NBG' where id=2; -update noar ti set b1='NBG' where id=2; -update noar tt set v0='ILZ7WNV9UYBK6VYZDMEM' where id=2; -update noar ti set v0='ILZ7WNV9UYBK6VYZDMEM' where id=2; -update noar tt set b2='YDRIJRSB85QDIN0YMW6ADZ7QQI' where id=2; -update noar ti set b2='YDRIJRSB85QDIN0YMW6ADZ7QQI' where id=2; -update noar tt set v0='SSRBQH' where id=3; -update noar ti set v0='SSRBQH' where id=3; -update noar tt set b0='ZKC6DGD1BV3QC3XJWNJ6F0QFC80' where id=3; -update noar ti set b0='ZKC6DGD1BV3QC3XJWNJ6F0QFC80' where id=3; -update noar tt set v0='TR3E4EOX' where id=3; -update noar ti set v0='TR3E4EOX' where id=3; -update noar tt set b1='UZGN19LO2S50ANQXKJDZODO9' where id=3; -update noar ti set b1='UZGN19LO2S50ANQXKJDZODO9' where id=3; -update noar tt set v0='O3KC3BOJAHY' where id=3; -update noar ti set v0='O3KC3BOJAHY' where id=3; -update noar tt set b2='UEGN7YSGXA6RS842PNGBN9GS502CX' where id=3; -update noar ti set b2='UEGN7YSGXA6RS842PNGBN9GS502CX' where id=3; -update noar tt set v0='H5TPELD' where id=4; -update noar ti set v0='H5TPELD' where id=4; -update noar tt set b0='6B627B1YBSD1M' where id=4; -update noar ti set b0='6B627B1YBSD1M' where id=4; -update noar tt set v0='CXARHVNQD9IYEW9H' where id=4; -update noar ti set v0='CXARHVNQD9IYEW9H' where id=4; -update noar tt set b1='QPP3CFQRY6SI' where id=4; -update noar ti set b1='QPP3CFQRY6SI' where id=4; -update noar tt set v0='82VFOC1N2GK0NFQTTN4WK6' where id=4; -update noar ti set v0='82VFOC1N2GK0NFQTTN4WK6' where id=4; -update noar tt set b2='5VNK' where id=4; -update noar ti set b2='5VNK' where id=4; -update noar tt set v0='WP2CLGWII5KY2NE' where id=5; -update noar ti set v0='WP2CLGWII5KY2NE' where id=5; -update noar tt set b0='3IYOS7L3YJ8323Z1JX3WHCTM0F' where id=5; -update noar ti set b0='3IYOS7L3YJ8323Z1JX3WHCTM0F' where id=5; -update noar tt set v0='C3P4Y6ZT78RPWA72' where id=5; -update noar ti set v0='C3P4Y6ZT78RPWA72' where id=5; -update noar tt set b1='DOI00DZHRR3UX3A63K3Z7GM' where id=5; -update noar ti set b1='DOI00DZHRR3UX3A63K3Z7GM' where id=5; -update noar tt set v0='0C5H4TTNKZHOGJOWR' where id=5; -update noar ti set v0='0C5H4TTNKZHOGJOWR' where id=5; -update noar tt set b2='2HA5DGYHB17G5' where id=5; -update noar ti set b2='2HA5DGYHB17G5' where id=5; -update noar tt set v0='9BWN6Y3' where id=6; -update noar ti set v0='9BWN6Y3' where id=6; -update noar tt set b0='LN9B7A43' where id=6; -update noar ti set b0='LN9B7A43' where id=6; -update noar tt set v0='L7VM8FK1Y7VBEOMO' where id=6; -update noar ti set v0='L7VM8FK1Y7VBEOMO' where id=6; -update noar tt set b1='YUMOW' where id=6; -update noar ti set b1='YUMOW' where id=6; -update noar tt set v0='Z7GK8H7ARENPWJHH83QYRFFB97E6K' where id=6; -update noar ti set v0='Z7GK8H7ARENPWJHH83QYRFFB97E6K' where id=6; -update noar tt set b2='UALSJ' where id=6; -update noar ti set b2='UALSJ' where id=6; -update noar tt set v0='5PJY8KHE4LWLS53YDP' where id=7; -update noar ti set v0='5PJY8KHE4LWLS53YDP' where id=7; -update noar tt set b0='2L50XCEL922NS5AWAJUTLD7NYGUQ' where id=7; -update noar ti set b0='2L50XCEL922NS5AWAJUTLD7NYGUQ' where id=7; -update noar tt set v0='RK0B6DG5E1PN5Q5F3T' where id=7; -update noar ti set v0='RK0B6DG5E1PN5Q5F3T' where id=7; -update noar tt set b1='9XDHHGVUSLEZP' where id=7; -update noar ti set b1='9XDHHGVUSLEZP' where id=7; -update noar tt set v0='NLMCMP5WIC0EQE0GP9AWH45' where id=7; -update noar ti set v0='NLMCMP5WIC0EQE0GP9AWH45' where id=7; -update noar tt set b2='Z0XYU9PX00H1GBUDWE13X' where id=7; -update noar ti set b2='Z0XYU9PX00H1GBUDWE13X' where id=7; -update noar tt set v0='PGMNTSSJW2S8JKRFEKER0V2906JL14L' where id=8; -update noar ti set v0='PGMNTSSJW2S8JKRFEKER0V2906JL14L' where id=8; -update noar tt set b0='6A1Z4H33S' where id=8; -update noar ti set b0='6A1Z4H33S' where id=8; -update noar tt set v0='RJ9CY' where id=8; -update noar ti set v0='RJ9CY' where id=8; -update noar tt set b1='TOZX3PRA38J802U0A3WCEV' where id=8; -update noar ti set b1='TOZX3PRA38J802U0A3WCEV' where id=8; -update noar tt set v0='4UOKAYJ77U7GZJ5FW2HBT0014UB' where id=8; -update noar ti set v0='4UOKAYJ77U7GZJ5FW2HBT0014UB' where id=8; -update noar tt set b2='3YDUVXCHZ3EL9ZRMORV208XUS55' where id=8; -update noar ti set b2='3YDUVXCHZ3EL9ZRMORV208XUS55' where id=8; -update noar tt set v0='ZIF3GSX5DZ2NRQO49G' where id=9; -update noar ti set v0='ZIF3GSX5DZ2NRQO49G' where id=9; -update noar tt set b0='Q32P6M959NECCWAU2CSE' where id=9; -update noar ti set b0='Q32P6M959NECCWAU2CSE' where id=9; -update noar tt set v0='9B8TGX78IC10HEPR1Y24WQOQEL8' where id=9; -update noar ti set v0='9B8TGX78IC10HEPR1Y24WQOQEL8' where id=9; -update noar tt set b1='5F117LFBRUG231EQ' where id=9; -update noar ti set b1='5F117LFBRUG231EQ' where id=9; -update noar tt set v0='4' where id=9; -update noar ti set v0='4' where id=9; -update noar tt set b2='25IKV' where id=9; -update noar ti set b2='25IKV' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - f0 int not null, - v0 varchar(256) not null, - b0 longblob not null, - b1 blob not null, - b2 mediumblob not null -) engine=tokudb; -insert into tt values (1,0,'','','',''); -insert into tt values (2,0,'','','',''); -insert into tt values (3,0,'','','',''); -insert into tt values (4,0,'','','',''); -insert into tt values (5,0,'','','',''); -insert into tt values (6,0,'','','',''); -insert into tt values (7,0,'','','',''); -insert into tt values (8,0,'','','',''); -insert into tt values (9,0,'','','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='FTO2NVMQRDWT7WKZU6LWJDWKKLKTI' where id=1; -update noar ti set v0='FTO2NVMQRDWT7WKZU6LWJDWKKLKTI' where id=1; -update noar tt set b0='RMLALBMZZ1' where id=1; -update noar ti set b0='RMLALBMZZ1' where id=1; -update noar tt set v0='QZ3W00BE07FX82AO58YDQ2C' where id=1; -update noar ti set v0='QZ3W00BE07FX82AO58YDQ2C' where id=1; -update noar tt set b1='D2M4A1KF6RMU4XO9FEM8PXQ21OC5' where id=1; -update noar ti set b1='D2M4A1KF6RMU4XO9FEM8PXQ21OC5' where id=1; -update noar tt set v0='7' where id=1; -update noar ti set v0='7' where id=1; -update noar tt set b2='ZYP4DTZK9UBXKWYKKTA' where id=1; -update noar ti set b2='ZYP4DTZK9UBXKWYKKTA' where id=1; -update noar tt set v0='97OOXX3HDOG23LX1FM0VO' where id=2; -update noar ti set v0='97OOXX3HDOG23LX1FM0VO' where id=2; -update noar tt set b0='R5QX46G5M' where id=2; -update noar ti set b0='R5QX46G5M' where id=2; -update noar tt set v0='VMG79OX2A4HTCO8INP3SDHCR9ZGAL' where id=2; -update noar ti set v0='VMG79OX2A4HTCO8INP3SDHCR9ZGAL' where id=2; -update noar tt set b1='R' where id=2; -update noar ti set b1='R' where id=2; -update noar tt set v0='7DUXG95GKWEPVQMTM' where id=2; -update noar ti set v0='7DUXG95GKWEPVQMTM' where id=2; -update noar tt set b2='XGXKA3OHOTFA2PMHD3Q1HO4KCGNE' where id=2; -update noar ti set b2='XGXKA3OHOTFA2PMHD3Q1HO4KCGNE' where id=2; -update noar tt set v0='7PZ4Z15KA4PQKMWYQ1JHHPNRM1P9' where id=3; -update noar ti set v0='7PZ4Z15KA4PQKMWYQ1JHHPNRM1P9' where id=3; -update noar tt set b0='CYVMM5QZQT4QXOXAHYCZL' where id=3; -update noar ti set b0='CYVMM5QZQT4QXOXAHYCZL' where id=3; -update noar tt set v0='IXXL1Z8AG1H58W1EO03S2SWSRNPJ96' where id=3; -update noar ti set v0='IXXL1Z8AG1H58W1EO03S2SWSRNPJ96' where id=3; -update noar tt set b1='IAZ21JZUZ30GXWFLTKNNX' where id=3; -update noar ti set b1='IAZ21JZUZ30GXWFLTKNNX' where id=3; -update noar tt set v0='FMI' where id=3; -update noar ti set v0='FMI' where id=3; -update noar tt set b2='R4CUILU2BYAKFYMDLV' where id=3; -update noar ti set b2='R4CUILU2BYAKFYMDLV' where id=3; -update noar tt set v0='P1S0APBNU' where id=4; -update noar ti set v0='P1S0APBNU' where id=4; -update noar tt set b0='LGCSDOY6909' where id=4; -update noar ti set b0='LGCSDOY6909' where id=4; -update noar tt set v0='XQQUM2C5UQTA0SFB' where id=4; -update noar ti set v0='XQQUM2C5UQTA0SFB' where id=4; -update noar tt set b1='ZK4XUNF9WQNO' where id=4; -update noar ti set b1='ZK4XUNF9WQNO' where id=4; -update noar tt set v0='FE3E91PYNGTFCDV523H9QECK2UV5R9C' where id=4; -update noar ti set v0='FE3E91PYNGTFCDV523H9QECK2UV5R9C' where id=4; -update noar tt set b2='YR2J0YXK0Q' where id=4; -update noar ti set b2='YR2J0YXK0Q' where id=4; -update noar tt set v0='GIM78IORLAV2CVJ3YKKJPZD6I85' where id=5; -update noar ti set v0='GIM78IORLAV2CVJ3YKKJPZD6I85' where id=5; -update noar tt set b0='2SYOY1GLX3S6QXT1G87ZP' where id=5; -update noar ti set b0='2SYOY1GLX3S6QXT1G87ZP' where id=5; -update noar tt set v0='8BBW5JB0XDFQOSBT7655LOVU' where id=5; -update noar ti set v0='8BBW5JB0XDFQOSBT7655LOVU' where id=5; -update noar tt set b1='OKU84Q1QXHOSHYA' where id=5; -update noar ti set b1='OKU84Q1QXHOSHYA' where id=5; -update noar tt set v0='WUZKBYF0MJF9LY0Z7MW9B1SDTGG' where id=5; -update noar ti set v0='WUZKBYF0MJF9LY0Z7MW9B1SDTGG' where id=5; -update noar tt set b2='972R8P3BIB5G9UYJUQGBFO' where id=5; -update noar ti set b2='972R8P3BIB5G9UYJUQGBFO' where id=5; -update noar tt set v0='8V8V6PC9PAXGYF0Y2' where id=6; -update noar ti set v0='8V8V6PC9PAXGYF0Y2' where id=6; -update noar tt set b0='YENZ2TPH4Q3KSPA' where id=6; -update noar ti set b0='YENZ2TPH4Q3KSPA' where id=6; -update noar tt set v0='UWE' where id=6; -update noar ti set v0='UWE' where id=6; -update noar tt set b1='3EM30LIF4DWVC6PORYPB5EJL7XQ2V0M3' where id=6; -update noar ti set b1='3EM30LIF4DWVC6PORYPB5EJL7XQ2V0M3' where id=6; -update noar tt set v0='2SGNX5XBWKIBTTVH' where id=6; -update noar ti set v0='2SGNX5XBWKIBTTVH' where id=6; -update noar tt set b2='MX9WN14U2CVRTMGV0WHYSU1E' where id=6; -update noar ti set b2='MX9WN14U2CVRTMGV0WHYSU1E' where id=6; -update noar tt set v0='2VCUJMG3RMFRVH1KT22AC8HTD5W5NZ' where id=7; -update noar ti set v0='2VCUJMG3RMFRVH1KT22AC8HTD5W5NZ' where id=7; -update noar tt set b0='JS' where id=7; -update noar ti set b0='JS' where id=7; -update noar tt set v0='B2P267OQ1MAS3WU3U' where id=7; -update noar ti set v0='B2P267OQ1MAS3WU3U' where id=7; -update noar tt set b1='NOTIEHG55AEFI2WMV6JC76EZ' where id=7; -update noar ti set b1='NOTIEHG55AEFI2WMV6JC76EZ' where id=7; -update noar tt set v0='1LPSBB0' where id=7; -update noar ti set v0='1LPSBB0' where id=7; -update noar tt set b2='6TNNQHEHZYRPDWOZANBDHQDFJ3WDK7' where id=7; -update noar ti set b2='6TNNQHEHZYRPDWOZANBDHQDFJ3WDK7' where id=7; -update noar tt set v0='KG0JWNVUQ722399VHTV7YOA' where id=8; -update noar ti set v0='KG0JWNVUQ722399VHTV7YOA' where id=8; -update noar tt set b0='3Q76OP' where id=8; -update noar ti set b0='3Q76OP' where id=8; -update noar tt set v0='RBKDSTAI6' where id=8; -update noar ti set v0='RBKDSTAI6' where id=8; -update noar tt set b1='35PG77PKUUYWNG9GP7JMJD3' where id=8; -update noar ti set b1='35PG77PKUUYWNG9GP7JMJD3' where id=8; -update noar tt set v0='23EYCUMEU0AVHTLVS' where id=8; -update noar ti set v0='23EYCUMEU0AVHTLVS' where id=8; -update noar tt set b2='CW5F' where id=8; -update noar ti set b2='CW5F' where id=8; -update noar tt set v0='IZHLGIXARP' where id=9; -update noar ti set v0='IZHLGIXARP' where id=9; -update noar tt set b0='D6M81TBG0EJYQAECGJJ66FI6OUZMCY0' where id=9; -update noar ti set b0='D6M81TBG0EJYQAECGJJ66FI6OUZMCY0' where id=9; -update noar tt set v0='B1OLWPNGSEKHVF0O29' where id=9; -update noar ti set v0='B1OLWPNGSEKHVF0O29' where id=9; -update noar tt set b1='QQAMNZCS56W1XEY' where id=9; -update noar ti set b1='QQAMNZCS56W1XEY' where id=9; -update noar tt set v0='GSQP8AZFADL1CR0FMFOLB' where id=9; -update noar ti set v0='GSQP8AZFADL1CR0FMFOLB' where id=9; -update noar tt set b2='3LQYU9W5Z61LITFHR' where id=9; -update noar ti set b2='3LQYU9W5Z61LITFHR' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - f0 int null, - v0 varchar(32) null, - b0 longblob null, - b1 blob null, - b2 longblob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='YONYM18' where id=1; -update noar ti set v0='YONYM18' where id=1; -update noar tt set b0='AI0QWE8N05I' where id=1; -update noar ti set b0='AI0QWE8N05I' where id=1; -update noar tt set v0='QLUZKSOOS56V' where id=1; -update noar ti set v0='QLUZKSOOS56V' where id=1; -update noar tt set b1='2U8JCISQB714A7YD11WK' where id=1; -update noar ti set b1='2U8JCISQB714A7YD11WK' where id=1; -update noar tt set v0='CATCGHN' where id=1; -update noar ti set v0='CATCGHN' where id=1; -update noar tt set b2='5KYO69AU9BOFGTUNPGUBALY' where id=1; -update noar ti set b2='5KYO69AU9BOFGTUNPGUBALY' where id=1; -update noar tt set v0='R' where id=2; -update noar ti set v0='R' where id=2; -update noar tt set b0='TGJYF6U40KSAC8UETFEX8H' where id=2; -update noar ti set b0='TGJYF6U40KSAC8UETFEX8H' where id=2; -update noar tt set v0='K7ZY5X8OWZAX' where id=2; -update noar ti set v0='K7ZY5X8OWZAX' where id=2; -update noar tt set b1='4GFVEME5YM4IV1ABHX8O2XS6056Z84' where id=2; -update noar ti set b1='4GFVEME5YM4IV1ABHX8O2XS6056Z84' where id=2; -update noar tt set v0='15XOYTMCQ' where id=2; -update noar ti set v0='15XOYTMCQ' where id=2; -update noar tt set b2='NSLY879L8AIZF2WX' where id=2; -update noar ti set b2='NSLY879L8AIZF2WX' where id=2; -update noar tt set v0='DNVTNZID4' where id=3; -update noar ti set v0='DNVTNZID4' where id=3; -update noar tt set b0='C1ZSLVL0MXY36RA' where id=3; -update noar ti set b0='C1ZSLVL0MXY36RA' where id=3; -update noar tt set v0='1PMFMNMY' where id=3; -update noar ti set v0='1PMFMNMY' where id=3; -update noar tt set b1='SM07010J6QPHP' where id=3; -update noar ti set b1='SM07010J6QPHP' where id=3; -update noar tt set v0='RIVP8IA08FPWSAN1WS' where id=3; -update noar ti set v0='RIVP8IA08FPWSAN1WS' where id=3; -update noar tt set b2='Q9UBZZ6KKNO45' where id=3; -update noar ti set b2='Q9UBZZ6KKNO45' where id=3; -update noar tt set v0='XTRFC869O8BNJKAPA03OK372JB' where id=4; -update noar ti set v0='XTRFC869O8BNJKAPA03OK372JB' where id=4; -update noar tt set b0='A6P23P5KVI1K3PEULJ' where id=4; -update noar ti set b0='A6P23P5KVI1K3PEULJ' where id=4; -update noar tt set v0='D6B28WGE' where id=4; -update noar ti set v0='D6B28WGE' where id=4; -update noar tt set b1='CU42ITSWPX' where id=4; -update noar ti set b1='CU42ITSWPX' where id=4; -update noar tt set v0='27WF9TOUI4FG52WGIXIG' where id=4; -update noar ti set v0='27WF9TOUI4FG52WGIXIG' where id=4; -update noar tt set b2='DUNRJYBKHPJWWX1K4IFMQJ9PM266Y' where id=4; -update noar ti set b2='DUNRJYBKHPJWWX1K4IFMQJ9PM266Y' where id=4; -update noar tt set v0='TDWHWPT1J4JYOI8' where id=5; -update noar ti set v0='TDWHWPT1J4JYOI8' where id=5; -update noar tt set b0='XD9H09BGNV9WTWKV6N4J67HL5' where id=5; -update noar ti set b0='XD9H09BGNV9WTWKV6N4J67HL5' where id=5; -update noar tt set v0='IKP2SJ' where id=5; -update noar ti set v0='IKP2SJ' where id=5; -update noar tt set b1='P52QQ02DYEZ57' where id=5; -update noar ti set b1='P52QQ02DYEZ57' where id=5; -update noar tt set v0='HNKJ1IEV4Y3NHHX2WG' where id=5; -update noar ti set v0='HNKJ1IEV4Y3NHHX2WG' where id=5; -update noar tt set b2='WI4IZFGLWN5QFG3' where id=5; -update noar ti set b2='WI4IZFGLWN5QFG3' where id=5; -update noar tt set v0='M5XVPJ04XXIOJ4S1' where id=6; -update noar ti set v0='M5XVPJ04XXIOJ4S1' where id=6; -update noar tt set b0='3VF5DDS8KPOZR5A85SM49JM1EZRTK8P' where id=6; -update noar ti set b0='3VF5DDS8KPOZR5A85SM49JM1EZRTK8P' where id=6; -update noar tt set v0='5D7JM' where id=6; -update noar ti set v0='5D7JM' where id=6; -update noar tt set b1='AQBXXPX7C110IDEXHH5' where id=6; -update noar ti set b1='AQBXXPX7C110IDEXHH5' where id=6; -update noar tt set v0='39ZLEVXA8HX37FBLIUU' where id=6; -update noar ti set v0='39ZLEVXA8HX37FBLIUU' where id=6; -update noar tt set b2='7KVP4NELFMNOZBUKRRNV3828GVT3' where id=6; -update noar ti set b2='7KVP4NELFMNOZBUKRRNV3828GVT3' where id=6; -update noar tt set v0='Z09T7DRWMGHAICKJJPPN0DIG2GA' where id=7; -update noar ti set v0='Z09T7DRWMGHAICKJJPPN0DIG2GA' where id=7; -update noar tt set b0='S9THXU9UZR14393V3J' where id=7; -update noar ti set b0='S9THXU9UZR14393V3J' where id=7; -update noar tt set v0='7' where id=7; -update noar ti set v0='7' where id=7; -update noar tt set b1='N7A9QKAKI565RW0ECJ85SJKGTN' where id=7; -update noar ti set b1='N7A9QKAKI565RW0ECJ85SJKGTN' where id=7; -update noar tt set v0='CHOSPO4IRCRDVM0LRECY' where id=7; -update noar ti set v0='CHOSPO4IRCRDVM0LRECY' where id=7; -update noar tt set b2='53KJJP4JM6KXQC2RJ1A6' where id=7; -update noar ti set b2='53KJJP4JM6KXQC2RJ1A6' where id=7; -update noar tt set v0='MP7YRS37FMJ1' where id=8; -update noar ti set v0='MP7YRS37FMJ1' where id=8; -update noar tt set b0='K' where id=8; -update noar ti set b0='K' where id=8; -update noar tt set v0='L8WFI1YNJ' where id=8; -update noar ti set v0='L8WFI1YNJ' where id=8; -update noar tt set b1='ZZXY2SD2EZTMZXM8ZPKCW04' where id=8; -update noar ti set b1='ZZXY2SD2EZTMZXM8ZPKCW04' where id=8; -update noar tt set v0='2GBIZMPN86LRDVA3SSHBKZ6B' where id=8; -update noar ti set v0='2GBIZMPN86LRDVA3SSHBKZ6B' where id=8; -update noar tt set b2='PHWAPRHKJHVJFU61VC' where id=8; -update noar ti set b2='PHWAPRHKJHVJFU61VC' where id=8; -update noar tt set v0='J1LR6T4RDXR58D6WJC5UBW4ZXBGN' where id=9; -update noar ti set v0='J1LR6T4RDXR58D6WJC5UBW4ZXBGN' where id=9; -update noar tt set b0='23QDE7DNP9MJX9NER4MAOJX5U5NFQH7B' where id=9; -update noar ti set b0='23QDE7DNP9MJX9NER4MAOJX5U5NFQH7B' where id=9; -update noar tt set v0='HZJAZDYSHQ24O5GARXIFE795ZUTZ6HBC' where id=9; -update noar ti set v0='HZJAZDYSHQ24O5GARXIFE795ZUTZ6HBC' where id=9; -update noar tt set b1='P4FBPYO8ASE6XD6JVZ' where id=9; -update noar ti set b1='P4FBPYO8ASE6XD6JVZ' where id=9; -update noar tt set v0='DPG9BR0RF3768OV1GZVZ8440WH' where id=9; -update noar ti set v0='DPG9BR0RF3768OV1GZVZ8440WH' where id=9; -update noar tt set b2='5NDSYFRC9V1UZV' where id=9; -update noar ti set b2='5NDSYFRC9V1UZV' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - f0 int null, - v0 varchar(256) null, - b0 longblob null, - b1 blob null, - b2 longblob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='Z14GAEOUESAUR3K28KN' where id=1; -update noar ti set v0='Z14GAEOUESAUR3K28KN' where id=1; -update noar tt set b0='B9MAEXFNN2Z' where id=1; -update noar ti set b0='B9MAEXFNN2Z' where id=1; -update noar tt set v0='XI8FG328ASUUDNEL395WH9E' where id=1; -update noar ti set v0='XI8FG328ASUUDNEL395WH9E' where id=1; -update noar tt set b1='KB78MOSXXMHBZURL' where id=1; -update noar ti set b1='KB78MOSXXMHBZURL' where id=1; -update noar tt set v0='MFNTOWT1SNC4X366MZ8OIQ4SM' where id=1; -update noar ti set v0='MFNTOWT1SNC4X366MZ8OIQ4SM' where id=1; -update noar tt set b2='RZ0R8BR90MLLN4BKBB' where id=1; -update noar ti set b2='RZ0R8BR90MLLN4BKBB' where id=1; -update noar tt set v0='N9O01' where id=2; -update noar ti set v0='N9O01' where id=2; -update noar tt set b0='3OPTL2H3HQ8A1URVG07' where id=2; -update noar ti set b0='3OPTL2H3HQ8A1URVG07' where id=2; -update noar tt set v0='EKTHJUE76PWUJSDUZ7DT9Y' where id=2; -update noar ti set v0='EKTHJUE76PWUJSDUZ7DT9Y' where id=2; -update noar tt set b1='01R2TC8H6EGQJ67N5DWG9KQARBYBF4V' where id=2; -update noar ti set b1='01R2TC8H6EGQJ67N5DWG9KQARBYBF4V' where id=2; -update noar tt set v0='Y2MABJNHO4LN0X3GW7RU7VDS' where id=2; -update noar ti set v0='Y2MABJNHO4LN0X3GW7RU7VDS' where id=2; -update noar tt set b2='OF4OHJHNE65TDWC375VO3I' where id=2; -update noar ti set b2='OF4OHJHNE65TDWC375VO3I' where id=2; -update noar tt set v0='Z' where id=3; -update noar ti set v0='Z' where id=3; -update noar tt set b0='FEDDVZHGKKNOT3FUPS' where id=3; -update noar ti set b0='FEDDVZHGKKNOT3FUPS' where id=3; -update noar tt set v0='5CZ7J1B5URMY93CP6M9MO5IDRI4X' where id=3; -update noar ti set v0='5CZ7J1B5URMY93CP6M9MO5IDRI4X' where id=3; -update noar tt set b1='NAMG0TOBWBW2IP38J' where id=3; -update noar ti set b1='NAMG0TOBWBW2IP38J' where id=3; -update noar tt set v0='6OW03S1HJ8VH7L' where id=3; -update noar ti set v0='6OW03S1HJ8VH7L' where id=3; -update noar tt set b2='NT3T2G7HDX828PJUKV2OOSNX0' where id=3; -update noar ti set b2='NT3T2G7HDX828PJUKV2OOSNX0' where id=3; -update noar tt set v0='DAEAH8C0AIKJM4N01LQEUAN87B' where id=4; -update noar ti set v0='DAEAH8C0AIKJM4N01LQEUAN87B' where id=4; -update noar tt set b0='VIF4OQ71GD1C0K3' where id=4; -update noar ti set b0='VIF4OQ71GD1C0K3' where id=4; -update noar tt set v0='1E6NOEWBLQJ0ZXGST' where id=4; -update noar ti set v0='1E6NOEWBLQJ0ZXGST' where id=4; -update noar tt set b1='M1GZUS4KW9CM2P' where id=4; -update noar ti set b1='M1GZUS4KW9CM2P' where id=4; -update noar tt set v0='M4LEX8O8295OL54QJL' where id=4; -update noar ti set v0='M4LEX8O8295OL54QJL' where id=4; -update noar tt set b2='K5GYGGL6YP8J' where id=4; -update noar ti set b2='K5GYGGL6YP8J' where id=4; -update noar tt set v0='5YRVUOR5MF3D9' where id=5; -update noar ti set v0='5YRVUOR5MF3D9' where id=5; -update noar tt set b0='IOL4O' where id=5; -update noar ti set b0='IOL4O' where id=5; -update noar tt set v0='90I99KWXQSJYCGMMO6H7R1CO61NH' where id=5; -update noar ti set v0='90I99KWXQSJYCGMMO6H7R1CO61NH' where id=5; -update noar tt set b1='87YP56QR318G' where id=5; -update noar ti set b1='87YP56QR318G' where id=5; -update noar tt set v0='R0OS4P' where id=5; -update noar ti set v0='R0OS4P' where id=5; -update noar tt set b2='E5KQ15WIC' where id=5; -update noar ti set b2='E5KQ15WIC' where id=5; -update noar tt set v0='Q25B08G3RWCJYDN8' where id=6; -update noar ti set v0='Q25B08G3RWCJYDN8' where id=6; -update noar tt set b0='WFLJOQGPOBQIDJLO60' where id=6; -update noar ti set b0='WFLJOQGPOBQIDJLO60' where id=6; -update noar tt set v0='34ZIYEHGL7BOQXDJMMZALEMZ' where id=6; -update noar ti set v0='34ZIYEHGL7BOQXDJMMZALEMZ' where id=6; -update noar tt set b1='WF39BNL4OELFYLL3S4ATK84MMTG' where id=6; -update noar ti set b1='WF39BNL4OELFYLL3S4ATK84MMTG' where id=6; -update noar tt set v0='PX83216T247D' where id=6; -update noar ti set v0='PX83216T247D' where id=6; -update noar tt set b2='K41D7JT9UK' where id=6; -update noar ti set b2='K41D7JT9UK' where id=6; -update noar tt set v0='6YUD7' where id=7; -update noar ti set v0='6YUD7' where id=7; -update noar tt set b0='9S' where id=7; -update noar ti set b0='9S' where id=7; -update noar tt set v0='5P1N4WXLFAG3WFKFT6FI7BIRTZBPB' where id=7; -update noar ti set v0='5P1N4WXLFAG3WFKFT6FI7BIRTZBPB' where id=7; -update noar tt set b1='8YB7RBOIK' where id=7; -update noar ti set b1='8YB7RBOIK' where id=7; -update noar tt set v0='LMPETMV' where id=7; -update noar ti set v0='LMPETMV' where id=7; -update noar tt set b2='NSS8A54OG88BAJ3MRGHOZW79GC7H' where id=7; -update noar ti set b2='NSS8A54OG88BAJ3MRGHOZW79GC7H' where id=7; -update noar tt set v0='BG8CO4W2E8041' where id=8; -update noar ti set v0='BG8CO4W2E8041' where id=8; -update noar tt set b0='A2KA9KUHAD' where id=8; -update noar ti set b0='A2KA9KUHAD' where id=8; -update noar tt set v0='6KBJS2BW0LTY9K' where id=8; -update noar ti set v0='6KBJS2BW0LTY9K' where id=8; -update noar tt set b1='D7WTF3ZHJWT9OFLODDRE5F5DZ7U52' where id=8; -update noar ti set b1='D7WTF3ZHJWT9OFLODDRE5F5DZ7U52' where id=8; -update noar tt set v0='D648BBX55FIWVDFRPVEUW6WTCZ' where id=8; -update noar ti set v0='D648BBX55FIWVDFRPVEUW6WTCZ' where id=8; -update noar tt set b2='QI092KXNURF0D8SD512' where id=8; -update noar ti set b2='QI092KXNURF0D8SD512' where id=8; -update noar tt set v0='YJBVM9ZR5X7G9GI8Z5A29XZ' where id=9; -update noar ti set v0='YJBVM9ZR5X7G9GI8Z5A29XZ' where id=9; -update noar tt set b0='QBRE3KQURVJBPQYETCQK7T9A' where id=9; -update noar ti set b0='QBRE3KQURVJBPQYETCQK7T9A' where id=9; -update noar tt set v0='2RQONV2' where id=9; -update noar ti set v0='2RQONV2' where id=9; -update noar tt set b1='KXEU5ZHHMYUQRPX5YN2JKLDX1U4SF' where id=9; -update noar ti set b1='KXEU5ZHHMYUQRPX5YN2JKLDX1U4SF' where id=9; -update noar tt set v0='R8GJ54FYQYS7C' where id=9; -update noar ti set v0='R8GJ54FYQYS7C' where id=9; -update noar tt set b2='4KYCJBBB230K6PHESSQ4' where id=9; -update noar ti set b2='4KYCJBBB230K6PHESSQ4' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - f0 int not null, - v0 varchar(32) not null, - b0 longblob not null, - b1 blob not null, - b2 longblob not null -) engine=tokudb; -insert into tt values (1,0,'','','',''); -insert into tt values (2,0,'','','',''); -insert into tt values (3,0,'','','',''); -insert into tt values (4,0,'','','',''); -insert into tt values (5,0,'','','',''); -insert into tt values (6,0,'','','',''); -insert into tt values (7,0,'','','',''); -insert into tt values (8,0,'','','',''); -insert into tt values (9,0,'','','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='DDSVFV8H0GENIFR6EWVXJR3QRB5' where id=1; -update noar ti set v0='DDSVFV8H0GENIFR6EWVXJR3QRB5' where id=1; -update noar tt set b0='7QM43QQ8UZ3' where id=1; -update noar ti set b0='7QM43QQ8UZ3' where id=1; -update noar tt set v0='JPROF4J4G2RKZ' where id=1; -update noar ti set v0='JPROF4J4G2RKZ' where id=1; -update noar tt set b1='ASRD9DD6H' where id=1; -update noar ti set b1='ASRD9DD6H' where id=1; -update noar tt set v0='RAN29HIW' where id=1; -update noar ti set v0='RAN29HIW' where id=1; -update noar tt set b2='YIYZR4KYFCOPK8Y' where id=1; -update noar ti set b2='YIYZR4KYFCOPK8Y' where id=1; -update noar tt set v0='OMSBMGFKOFGVW6' where id=2; -update noar ti set v0='OMSBMGFKOFGVW6' where id=2; -update noar tt set b0='G7FGHHFS9SDXYSMX4UFLGEHII29SX1' where id=2; -update noar ti set b0='G7FGHHFS9SDXYSMX4UFLGEHII29SX1' where id=2; -update noar tt set v0='S9DRXQFLS4S0UHMI96JB82796' where id=2; -update noar ti set v0='S9DRXQFLS4S0UHMI96JB82796' where id=2; -update noar tt set b1='Q6UT929U1JSJYTO' where id=2; -update noar ti set b1='Q6UT929U1JSJYTO' where id=2; -update noar tt set v0='CR4MB70H3ZTETYJDAW05QYWTJVG0' where id=2; -update noar ti set v0='CR4MB70H3ZTETYJDAW05QYWTJVG0' where id=2; -update noar tt set b2='VCS1BQJB8MUU7IXPQG' where id=2; -update noar ti set b2='VCS1BQJB8MUU7IXPQG' where id=2; -update noar tt set v0='7NFAKJE4350LHIG' where id=3; -update noar ti set v0='7NFAKJE4350LHIG' where id=3; -update noar tt set b0='6XFRW4R7JEHRN38QGW78V2DRNSJCM' where id=3; -update noar ti set b0='6XFRW4R7JEHRN38QGW78V2DRNSJCM' where id=3; -update noar tt set v0='RSIG88YV99' where id=3; -update noar ti set v0='RSIG88YV99' where id=3; -update noar tt set b1='W7YII0CZD0NY5LON80PI' where id=3; -update noar ti set b1='W7YII0CZD0NY5LON80PI' where id=3; -update noar tt set v0='UBJ09SVBII8' where id=3; -update noar ti set v0='UBJ09SVBII8' where id=3; -update noar tt set b2='GT3AI' where id=3; -update noar ti set b2='GT3AI' where id=3; -update noar tt set v0='0RV110SPRAZV5LV' where id=4; -update noar ti set v0='0RV110SPRAZV5LV' where id=4; -update noar tt set b0='7J9L3SW1QE8KMA0HWYL7W4QRAVNMI' where id=4; -update noar ti set b0='7J9L3SW1QE8KMA0HWYL7W4QRAVNMI' where id=4; -update noar tt set v0='W9Y98RZYGULDM7854BZT2IQUQ9TVN1' where id=4; -update noar ti set v0='W9Y98RZYGULDM7854BZT2IQUQ9TVN1' where id=4; -update noar tt set b1='7KE1X3HZ8YUS59BCJ8TZODH81AS' where id=4; -update noar ti set b1='7KE1X3HZ8YUS59BCJ8TZODH81AS' where id=4; -update noar tt set v0='5GKSOZ00HPHEDOD3SSLNI' where id=4; -update noar ti set v0='5GKSOZ00HPHEDOD3SSLNI' where id=4; -update noar tt set b2='L6Z8U64ORXR' where id=4; -update noar ti set b2='L6Z8U64ORXR' where id=4; -update noar tt set v0='A' where id=5; -update noar ti set v0='A' where id=5; -update noar tt set b0='MHYML2TCAXUKDD9P60888LM' where id=5; -update noar ti set b0='MHYML2TCAXUKDD9P60888LM' where id=5; -update noar tt set v0='EQ2NCZP' where id=5; -update noar ti set v0='EQ2NCZP' where id=5; -update noar tt set b1='COVK8CP5D7XYHERKBW7DNVU' where id=5; -update noar ti set b1='COVK8CP5D7XYHERKBW7DNVU' where id=5; -update noar tt set v0='YXF4D5QCXUF1ETKT' where id=5; -update noar ti set v0='YXF4D5QCXUF1ETKT' where id=5; -update noar tt set b2='6B0B05GWIUR' where id=5; -update noar ti set b2='6B0B05GWIUR' where id=5; -update noar tt set v0='O0LQI9OTX6TD19UQBL6IXM0D' where id=6; -update noar ti set v0='O0LQI9OTX6TD19UQBL6IXM0D' where id=6; -update noar tt set b0='WK9YH3YK0CCTI5JVNVX5Y1TO' where id=6; -update noar ti set b0='WK9YH3YK0CCTI5JVNVX5Y1TO' where id=6; -update noar tt set v0='SVHLNKOUVOQF7HOE6MRNFO86LND' where id=6; -update noar ti set v0='SVHLNKOUVOQF7HOE6MRNFO86LND' where id=6; -update noar tt set b1='VDFRUC5JSF6881ALDXJ' where id=6; -update noar ti set b1='VDFRUC5JSF6881ALDXJ' where id=6; -update noar tt set v0='OW6DCW7YIL6B265' where id=6; -update noar ti set v0='OW6DCW7YIL6B265' where id=6; -update noar tt set b2='PMG2VH0BY' where id=6; -update noar ti set b2='PMG2VH0BY' where id=6; -update noar tt set v0='NEIBCF43BE2YX6' where id=7; -update noar ti set v0='NEIBCF43BE2YX6' where id=7; -update noar tt set b0='CI' where id=7; -update noar ti set b0='CI' where id=7; -update noar tt set v0='92306LUVG4A22A2DLBMSSWKAP4' where id=7; -update noar ti set v0='92306LUVG4A22A2DLBMSSWKAP4' where id=7; -update noar tt set b1='QN1NNOTXV4CGU6MROHX6P8QBUKR31' where id=7; -update noar ti set b1='QN1NNOTXV4CGU6MROHX6P8QBUKR31' where id=7; -update noar tt set v0='54ZQYHSYM1' where id=7; -update noar ti set v0='54ZQYHSYM1' where id=7; -update noar tt set b2='TO' where id=7; -update noar ti set b2='TO' where id=7; -update noar tt set v0='WWY8ZWJDKBSTSMWKCKMP01MD9' where id=8; -update noar ti set v0='WWY8ZWJDKBSTSMWKCKMP01MD9' where id=8; -update noar tt set b0='A3AI0YAS36ED6YQY4X09DB8QEBF' where id=8; -update noar ti set b0='A3AI0YAS36ED6YQY4X09DB8QEBF' where id=8; -update noar tt set v0='PG17VN1CO6' where id=8; -update noar ti set v0='PG17VN1CO6' where id=8; -update noar tt set b1='RE' where id=8; -update noar ti set b1='RE' where id=8; -update noar tt set v0='54W' where id=8; -update noar ti set v0='54W' where id=8; -update noar tt set b2='RG6G8LKYUO9HNPLTA8GF4LEA2' where id=8; -update noar ti set b2='RG6G8LKYUO9HNPLTA8GF4LEA2' where id=8; -update noar tt set v0='B5V87HLW52NL8HM4K0JJOTZWZ' where id=9; -update noar ti set v0='B5V87HLW52NL8HM4K0JJOTZWZ' where id=9; -update noar tt set b0='I7EFVYGT0GHHPFOPKHQ7SJD0J046F0HP' where id=9; -update noar ti set b0='I7EFVYGT0GHHPFOPKHQ7SJD0J046F0HP' where id=9; -update noar tt set v0='1J34' where id=9; -update noar ti set v0='1J34' where id=9; -update noar tt set b1='C9HSHQ0UC4NPZ2NFRMFL6UHI' where id=9; -update noar ti set b1='C9HSHQ0UC4NPZ2NFRMFL6UHI' where id=9; -update noar tt set v0='E5N4DDJFCAOVK3R20FNQOFY1RXPCCF' where id=9; -update noar ti set v0='E5N4DDJFCAOVK3R20FNQOFY1RXPCCF' where id=9; -update noar tt set b2='NPZLW5YTKBN6MJQZXK6YYAO' where id=9; -update noar ti set b2='NPZLW5YTKBN6MJQZXK6YYAO' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - f0 int not null, - v0 varchar(256) not null, - b0 longblob not null, - b1 blob not null, - b2 longblob not null -) engine=tokudb; -insert into tt values (1,0,'','','',''); -insert into tt values (2,0,'','','',''); -insert into tt values (3,0,'','','',''); -insert into tt values (4,0,'','','',''); -insert into tt values (5,0,'','','',''); -insert into tt values (6,0,'','','',''); -insert into tt values (7,0,'','','',''); -insert into tt values (8,0,'','','',''); -insert into tt values (9,0,'','','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='7RRJK4TZV3H6FJ3UQBRSHD' where id=1; -update noar ti set v0='7RRJK4TZV3H6FJ3UQBRSHD' where id=1; -update noar tt set b0='F5Z6D1ZFQLI51RFAUEOEQX9D6I48VF' where id=1; -update noar ti set b0='F5Z6D1ZFQLI51RFAUEOEQX9D6I48VF' where id=1; -update noar tt set v0='M' where id=1; -update noar ti set v0='M' where id=1; -update noar tt set b1='MQSFGLWER9K18JDS6IDPJW7' where id=1; -update noar ti set b1='MQSFGLWER9K18JDS6IDPJW7' where id=1; -update noar tt set v0='Y5LWOJ1TLVW06ARBP85Q3AHVLLV' where id=1; -update noar ti set v0='Y5LWOJ1TLVW06ARBP85Q3AHVLLV' where id=1; -update noar tt set b2='7J5W' where id=1; -update noar ti set b2='7J5W' where id=1; -update noar tt set v0='76I5PJYIS5' where id=2; -update noar ti set v0='76I5PJYIS5' where id=2; -update noar tt set b0='OX8Y39TCDCU98IT5J6ZZAPM' where id=2; -update noar ti set b0='OX8Y39TCDCU98IT5J6ZZAPM' where id=2; -update noar tt set v0='OI0E84MVEFLOTTRP' where id=2; -update noar ti set v0='OI0E84MVEFLOTTRP' where id=2; -update noar tt set b1='RRQOS' where id=2; -update noar ti set b1='RRQOS' where id=2; -update noar tt set v0='FFV38CZ3GHK9LFKCGODIZN9V' where id=2; -update noar ti set v0='FFV38CZ3GHK9LFKCGODIZN9V' where id=2; -update noar tt set b2='VC6GX3ECGLBQPHPV8FRA' where id=2; -update noar ti set b2='VC6GX3ECGLBQPHPV8FRA' where id=2; -update noar tt set v0='QPOQWY9WV7OV9Q5ABLRIQ73AB' where id=3; -update noar ti set v0='QPOQWY9WV7OV9Q5ABLRIQ73AB' where id=3; -update noar tt set b0='PX2WBY728KK03DB1KW3J' where id=3; -update noar ti set b0='PX2WBY728KK03DB1KW3J' where id=3; -update noar tt set v0='EYTBUGV60NDETLEKT8TMZLCA3PUF6KQZ' where id=3; -update noar ti set v0='EYTBUGV60NDETLEKT8TMZLCA3PUF6KQZ' where id=3; -update noar tt set b1='CMT1IFG44R' where id=3; -update noar ti set b1='CMT1IFG44R' where id=3; -update noar tt set v0='3Z8T9EW8ZT0VIU97S33QNPNLTWC' where id=3; -update noar ti set v0='3Z8T9EW8ZT0VIU97S33QNPNLTWC' where id=3; -update noar tt set b2='8DR8PJX3XFS2UEF' where id=3; -update noar ti set b2='8DR8PJX3XFS2UEF' where id=3; -update noar tt set v0='TFS1Y929M' where id=4; -update noar ti set v0='TFS1Y929M' where id=4; -update noar tt set b0='ASR0UTSTP8S99CAY' where id=4; -update noar ti set b0='ASR0UTSTP8S99CAY' where id=4; -update noar tt set v0='3QDD47CDXYMOME87DZYE' where id=4; -update noar ti set v0='3QDD47CDXYMOME87DZYE' where id=4; -update noar tt set b1='0HKBU09GXP6NW' where id=4; -update noar ti set b1='0HKBU09GXP6NW' where id=4; -update noar tt set v0='8D4' where id=4; -update noar ti set v0='8D4' where id=4; -update noar tt set b2='UXKSQ02' where id=4; -update noar ti set b2='UXKSQ02' where id=4; -update noar tt set v0='1A5L0F9Y5JFQYY3NIFCW3H8UC0KSMZK' where id=5; -update noar ti set v0='1A5L0F9Y5JFQYY3NIFCW3H8UC0KSMZK' where id=5; -update noar tt set b0='7ECFT9UE70Y1NDDY' where id=5; -update noar ti set b0='7ECFT9UE70Y1NDDY' where id=5; -update noar tt set v0='68JBZCC3R2I9YAE5TE2YF9' where id=5; -update noar ti set v0='68JBZCC3R2I9YAE5TE2YF9' where id=5; -update noar tt set b1='PCQPR05FTJBLPA31CR61G' where id=5; -update noar ti set b1='PCQPR05FTJBLPA31CR61G' where id=5; -update noar tt set v0='MH1TCBDS' where id=5; -update noar ti set v0='MH1TCBDS' where id=5; -update noar tt set b2='VUUIPZNRC13P0KY6EOG' where id=5; -update noar ti set b2='VUUIPZNRC13P0KY6EOG' where id=5; -update noar tt set v0='NEVMDPL4YWR4EB79YB25M6F' where id=6; -update noar ti set v0='NEVMDPL4YWR4EB79YB25M6F' where id=6; -update noar tt set b0='C1FZ3T7EC9UV0FY' where id=6; -update noar ti set b0='C1FZ3T7EC9UV0FY' where id=6; -update noar tt set v0='CICVJ9V1E9DURZJUQMP5MWTPWKEH5NT' where id=6; -update noar ti set v0='CICVJ9V1E9DURZJUQMP5MWTPWKEH5NT' where id=6; -update noar tt set b1='TF1G43K8T' where id=6; -update noar ti set b1='TF1G43K8T' where id=6; -update noar tt set v0='D9EQ0NF2VKKG6I9GPSNAOQM' where id=6; -update noar ti set v0='D9EQ0NF2VKKG6I9GPSNAOQM' where id=6; -update noar tt set b2='IRKI97C7ABF' where id=6; -update noar ti set b2='IRKI97C7ABF' where id=6; -update noar tt set v0='1X7FJQ4SHPO50QLDVYN0PMCQ' where id=7; -update noar ti set v0='1X7FJQ4SHPO50QLDVYN0PMCQ' where id=7; -update noar tt set b0='ME1RMXO9C6CKH1LWSQKS3RMEPJCCAO' where id=7; -update noar ti set b0='ME1RMXO9C6CKH1LWSQKS3RMEPJCCAO' where id=7; -update noar tt set v0='V' where id=7; -update noar ti set v0='V' where id=7; -update noar tt set b1='MY37S2NDPR' where id=7; -update noar ti set b1='MY37S2NDPR' where id=7; -update noar tt set v0='IG10I6M' where id=7; -update noar ti set v0='IG10I6M' where id=7; -update noar tt set b2='Y0BV7AUD891EIT48Z5Z7HMSHBM3FBLZD' where id=7; -update noar ti set b2='Y0BV7AUD891EIT48Z5Z7HMSHBM3FBLZD' where id=7; -update noar tt set v0='9OZ' where id=8; -update noar ti set v0='9OZ' where id=8; -update noar tt set b0='QJD5K8Q9HRHRF' where id=8; -update noar ti set b0='QJD5K8Q9HRHRF' where id=8; -update noar tt set v0='FO5UYDQA02GDM2PLVOWGZU' where id=8; -update noar ti set v0='FO5UYDQA02GDM2PLVOWGZU' where id=8; -update noar tt set b1='3K0' where id=8; -update noar ti set b1='3K0' where id=8; -update noar tt set v0='HMD874KV9J9EW6DTZXOWLYKCCIY570B' where id=8; -update noar ti set v0='HMD874KV9J9EW6DTZXOWLYKCCIY570B' where id=8; -update noar tt set b2='CBN1TMGTBEQ6GLDJL9QKON0L37JD6MV' where id=8; -update noar ti set b2='CBN1TMGTBEQ6GLDJL9QKON0L37JD6MV' where id=8; -update noar tt set v0='AAN2QC0JJZ26N310BPEAM1' where id=9; -update noar ti set v0='AAN2QC0JJZ26N310BPEAM1' where id=9; -update noar tt set b0='ABZHC09ZR2CZV3SRBMABYE5L' where id=9; -update noar ti set b0='ABZHC09ZR2CZV3SRBMABYE5L' where id=9; -update noar tt set v0='SP5I6G2BKJGRU' where id=9; -update noar ti set v0='SP5I6G2BKJGRU' where id=9; -update noar tt set b1='LNQNAWKLVS' where id=9; -update noar ti set b1='LNQNAWKLVS' where id=9; -update noar tt set v0='WGDF8SCS648ASOGN0K1L' where id=9; -update noar ti set v0='WGDF8SCS648ASOGN0K1L' where id=9; -update noar tt set b2='8O067WLVCGVKY8CPNM110C2N349N' where id=9; -update noar ti set b2='8O067WLVCGVKY8CPNM110C2N349N' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - f0 int null, - v0 varchar(32) null, - b0 longblob null, - b1 mediumblob null, - b2 tinyblob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='LXB51EVH933IPZ7O' where id=1; -update noar ti set v0='LXB51EVH933IPZ7O' where id=1; -update noar tt set b0='VVWWZ51BFZOEI8S4DTC09XISHW5002' where id=1; -update noar ti set b0='VVWWZ51BFZOEI8S4DTC09XISHW5002' where id=1; -update noar tt set v0='TSILO3GTPADNUYJNZZSTX' where id=1; -update noar ti set v0='TSILO3GTPADNUYJNZZSTX' where id=1; -update noar tt set b1='0Y5THGJXR8MY09' where id=1; -update noar ti set b1='0Y5THGJXR8MY09' where id=1; -update noar tt set v0='ONMKON6E680NVD2I9' where id=1; -update noar ti set v0='ONMKON6E680NVD2I9' where id=1; -update noar tt set b2='NU942F03I' where id=1; -update noar ti set b2='NU942F03I' where id=1; -update noar tt set v0='6HTK85Z1TEI6597H7AC' where id=2; -update noar ti set v0='6HTK85Z1TEI6597H7AC' where id=2; -update noar tt set b0='G7VNB96Z2LDV491' where id=2; -update noar ti set b0='G7VNB96Z2LDV491' where id=2; -update noar tt set v0='F8' where id=2; -update noar ti set v0='F8' where id=2; -update noar tt set b1='WQ5N8SG05PPBAC26YTO3NCE' where id=2; -update noar ti set b1='WQ5N8SG05PPBAC26YTO3NCE' where id=2; -update noar tt set v0='UU01XWY4Y' where id=2; -update noar ti set v0='UU01XWY4Y' where id=2; -update noar tt set b2='AF8A10BTGDI' where id=2; -update noar ti set b2='AF8A10BTGDI' where id=2; -update noar tt set v0='H37MOIAF9' where id=3; -update noar ti set v0='H37MOIAF9' where id=3; -update noar tt set b0='XNJ61TTRPDRZTS3X1WKPIDZB3VB81' where id=3; -update noar ti set b0='XNJ61TTRPDRZTS3X1WKPIDZB3VB81' where id=3; -update noar tt set v0='PEZ088L04Q' where id=3; -update noar ti set v0='PEZ088L04Q' where id=3; -update noar tt set b1='9UJWCTDHDWX7ELWEU0ZXM1AWEAQBD' where id=3; -update noar ti set b1='9UJWCTDHDWX7ELWEU0ZXM1AWEAQBD' where id=3; -update noar tt set v0='3HSJXW7BS0Y9T8B14TQSN69G' where id=3; -update noar ti set v0='3HSJXW7BS0Y9T8B14TQSN69G' where id=3; -update noar tt set b2='G1' where id=3; -update noar ti set b2='G1' where id=3; -update noar tt set v0='QGT280XEDYKPFF9' where id=4; -update noar ti set v0='QGT280XEDYKPFF9' where id=4; -update noar tt set b0='81OS93RR73ATUZB069CLJGA' where id=4; -update noar ti set b0='81OS93RR73ATUZB069CLJGA' where id=4; -update noar tt set v0='8US1FKCAF7BPLPTX3WN4' where id=4; -update noar ti set v0='8US1FKCAF7BPLPTX3WN4' where id=4; -update noar tt set b1='GEOLMX04V8YZ6MZFRIFPBP1DU9C2Y4A' where id=4; -update noar ti set b1='GEOLMX04V8YZ6MZFRIFPBP1DU9C2Y4A' where id=4; -update noar tt set v0='XPNWZEVNKFN6' where id=4; -update noar ti set v0='XPNWZEVNKFN6' where id=4; -update noar tt set b2='OADRS66BV7TBH2CR5IOKMTXK8V2ITN' where id=4; -update noar ti set b2='OADRS66BV7TBH2CR5IOKMTXK8V2ITN' where id=4; -update noar tt set v0='D0SU1SWXO10VHV' where id=5; -update noar ti set v0='D0SU1SWXO10VHV' where id=5; -update noar tt set b0='LQ4DRJ67' where id=5; -update noar ti set b0='LQ4DRJ67' where id=5; -update noar tt set v0='KCXV' where id=5; -update noar ti set v0='KCXV' where id=5; -update noar tt set b1='PCVGLFROKVYGKTUDS6MS' where id=5; -update noar ti set b1='PCVGLFROKVYGKTUDS6MS' where id=5; -update noar tt set v0='X63T5ZEDC7' where id=5; -update noar ti set v0='X63T5ZEDC7' where id=5; -update noar tt set b2='XJ8D7TZY54VUCEIO9GFMA48DO45Q' where id=5; -update noar ti set b2='XJ8D7TZY54VUCEIO9GFMA48DO45Q' where id=5; -update noar tt set v0='FJD4EYFIG47M190MW9GY' where id=6; -update noar ti set v0='FJD4EYFIG47M190MW9GY' where id=6; -update noar tt set b0='HP8M8EPA1N8A' where id=6; -update noar ti set b0='HP8M8EPA1N8A' where id=6; -update noar tt set v0='7DXMHU91JL72A4GAEB1T3PB8739H' where id=6; -update noar ti set v0='7DXMHU91JL72A4GAEB1T3PB8739H' where id=6; -update noar tt set b1='R' where id=6; -update noar ti set b1='R' where id=6; -update noar tt set v0='IZ9ENZKO66P7J5SHXYO0SY0BB7X' where id=6; -update noar ti set v0='IZ9ENZKO66P7J5SHXYO0SY0BB7X' where id=6; -update noar tt set b2='CARDU0M2JXD4U3B32KD1Q25FT2M507HW' where id=6; -update noar ti set b2='CARDU0M2JXD4U3B32KD1Q25FT2M507HW' where id=6; -update noar tt set v0='K8M0ME4QQWLE7J' where id=7; -update noar ti set v0='K8M0ME4QQWLE7J' where id=7; -update noar tt set b0='OXP87CUOH2DIH' where id=7; -update noar ti set b0='OXP87CUOH2DIH' where id=7; -update noar tt set v0='TCXXMB08G0213LLV0AH6AD7MG10GX' where id=7; -update noar ti set v0='TCXXMB08G0213LLV0AH6AD7MG10GX' where id=7; -update noar tt set b1='NSFBPDKH' where id=7; -update noar ti set b1='NSFBPDKH' where id=7; -update noar tt set v0='TDHS2IZLRCGE0' where id=7; -update noar ti set v0='TDHS2IZLRCGE0' where id=7; -update noar tt set b2='CX1QBHUUKZTZZ3EMEBZ91X7AJITF' where id=7; -update noar ti set b2='CX1QBHUUKZTZZ3EMEBZ91X7AJITF' where id=7; -update noar tt set v0='SKY' where id=8; -update noar ti set v0='SKY' where id=8; -update noar tt set b0='WQZ5CD0AR1GW58NPRN420B72EDUT19Y' where id=8; -update noar ti set b0='WQZ5CD0AR1GW58NPRN420B72EDUT19Y' where id=8; -update noar tt set v0='63LVMQB8EPY1C88MFO' where id=8; -update noar ti set v0='63LVMQB8EPY1C88MFO' where id=8; -update noar tt set b1='7JOEOOP7BIYH' where id=8; -update noar ti set b1='7JOEOOP7BIYH' where id=8; -update noar tt set v0='PYXAGS2ZLZVGM9XWHWX9HR' where id=8; -update noar ti set v0='PYXAGS2ZLZVGM9XWHWX9HR' where id=8; -update noar tt set b2='2' where id=8; -update noar ti set b2='2' where id=8; -update noar tt set v0='N5Y07Y8' where id=9; -update noar ti set v0='N5Y07Y8' where id=9; -update noar tt set b0='UZ898T' where id=9; -update noar ti set b0='UZ898T' where id=9; -update noar tt set v0='TGJGUPGGOO60LZN' where id=9; -update noar ti set v0='TGJGUPGGOO60LZN' where id=9; -update noar tt set b1='RHSJT6U9LQ4QCXDHQ7YL19EUNQV' where id=9; -update noar ti set b1='RHSJT6U9LQ4QCXDHQ7YL19EUNQV' where id=9; -update noar tt set v0='YGLESPKD68ILW' where id=9; -update noar ti set v0='YGLESPKD68ILW' where id=9; -update noar tt set b2='0RP733O6O5KTZJ81YWA3FARG' where id=9; -update noar ti set b2='0RP733O6O5KTZJ81YWA3FARG' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - f0 int null, - v0 varchar(256) null, - b0 longblob null, - b1 mediumblob null, - b2 tinyblob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='G1H9ZMYHDU' where id=1; -update noar ti set v0='G1H9ZMYHDU' where id=1; -update noar tt set b0='PABQ4WHRQB90WDGQGPRO1' where id=1; -update noar ti set b0='PABQ4WHRQB90WDGQGPRO1' where id=1; -update noar tt set v0='D96UZ0QVUJA2PBZE31P' where id=1; -update noar ti set v0='D96UZ0QVUJA2PBZE31P' where id=1; -update noar tt set b1='H0KDGY' where id=1; -update noar ti set b1='H0KDGY' where id=1; -update noar tt set v0='DH9MJ3' where id=1; -update noar ti set v0='DH9MJ3' where id=1; -update noar tt set b2='O5EC4WLTRIKHV2T8KSL' where id=1; -update noar ti set b2='O5EC4WLTRIKHV2T8KSL' where id=1; -update noar tt set v0='4PV3LIOE4T3ZSYEBAXEJW930O' where id=2; -update noar ti set v0='4PV3LIOE4T3ZSYEBAXEJW930O' where id=2; -update noar tt set b0='8PI03J1PMTLTXV' where id=2; -update noar ti set b0='8PI03J1PMTLTXV' where id=2; -update noar tt set v0='HFZDGNQZMHH303' where id=2; -update noar ti set v0='HFZDGNQZMHH303' where id=2; -update noar tt set b1='81I9O4QYU1QU' where id=2; -update noar ti set b1='81I9O4QYU1QU' where id=2; -update noar tt set v0='ATXQTWYN0ON6AS3ODR6' where id=2; -update noar ti set v0='ATXQTWYN0ON6AS3ODR6' where id=2; -update noar tt set b2='C' where id=2; -update noar ti set b2='C' where id=2; -update noar tt set v0='OTJ1162L63TWT3KEDDURS09V8HGSN6X' where id=3; -update noar ti set v0='OTJ1162L63TWT3KEDDURS09V8HGSN6X' where id=3; -update noar tt set b0='D7GNPDSSGG1LI' where id=3; -update noar ti set b0='D7GNPDSSGG1LI' where id=3; -update noar tt set v0='4RP86GH31TP8S2E2QL7CYQC6CKVPSNQV' where id=3; -update noar ti set v0='4RP86GH31TP8S2E2QL7CYQC6CKVPSNQV' where id=3; -update noar tt set b1='TYYHOVA35LB80IB59P3MM7' where id=3; -update noar ti set b1='TYYHOVA35LB80IB59P3MM7' where id=3; -update noar tt set v0='N19ALO7' where id=3; -update noar ti set v0='N19ALO7' where id=3; -update noar tt set b2='6EAXNJL9YDRK1RBMDDYJMVJYDEWXBPJ' where id=3; -update noar ti set b2='6EAXNJL9YDRK1RBMDDYJMVJYDEWXBPJ' where id=3; -update noar tt set v0='QSESKOBV35MWO581P6HKH881KP' where id=4; -update noar ti set v0='QSESKOBV35MWO581P6HKH881KP' where id=4; -update noar tt set b0='2W' where id=4; -update noar ti set b0='2W' where id=4; -update noar tt set v0='M2MD3A3XZUT50Q3KJ0ONYM' where id=4; -update noar ti set v0='M2MD3A3XZUT50Q3KJ0ONYM' where id=4; -update noar tt set b1='OC26D68' where id=4; -update noar ti set b1='OC26D68' where id=4; -update noar tt set v0='29VCK73FFCXRMH4Q8GUH1XCKFRVDRTK4' where id=4; -update noar ti set v0='29VCK73FFCXRMH4Q8GUH1XCKFRVDRTK4' where id=4; -update noar tt set b2='JR8G8S6XLMOEHF72DDMQPRKZ92' where id=4; -update noar ti set b2='JR8G8S6XLMOEHF72DDMQPRKZ92' where id=4; -update noar tt set v0='PN' where id=5; -update noar ti set v0='PN' where id=5; -update noar tt set b0='XWEFDCIILCY5' where id=5; -update noar ti set b0='XWEFDCIILCY5' where id=5; -update noar tt set v0='6JA6EKKGEOYJXAE0LONRI2TQJG' where id=5; -update noar ti set v0='6JA6EKKGEOYJXAE0LONRI2TQJG' where id=5; -update noar tt set b1='7SFHYH2T1QK6XGRJ6WW4MI88WRY6G5' where id=5; -update noar ti set b1='7SFHYH2T1QK6XGRJ6WW4MI88WRY6G5' where id=5; -update noar tt set v0='8O399Z0LCJOUDDJROX4SA' where id=5; -update noar ti set v0='8O399Z0LCJOUDDJROX4SA' where id=5; -update noar tt set b2='GFM3' where id=5; -update noar ti set b2='GFM3' where id=5; -update noar tt set v0='VNKH' where id=6; -update noar ti set v0='VNKH' where id=6; -update noar tt set b0='YGYMF3PLA2M3' where id=6; -update noar ti set b0='YGYMF3PLA2M3' where id=6; -update noar tt set v0='4PL5829VMSYNXJZKXLPFSS05YYA2U' where id=6; -update noar ti set v0='4PL5829VMSYNXJZKXLPFSS05YYA2U' where id=6; -update noar tt set b1='YJJ46L89X6M9' where id=6; -update noar ti set b1='YJJ46L89X6M9' where id=6; -update noar tt set v0='WHEZKK2FMOBNNS3X0Q' where id=6; -update noar ti set v0='WHEZKK2FMOBNNS3X0Q' where id=6; -update noar tt set b2='YVXATQDES26FWAK94BRIG' where id=6; -update noar ti set b2='YVXATQDES26FWAK94BRIG' where id=6; -update noar tt set v0='PADT6071U6NP' where id=7; -update noar ti set v0='PADT6071U6NP' where id=7; -update noar tt set b0='S53LPR8NS6V3CIM' where id=7; -update noar ti set b0='S53LPR8NS6V3CIM' where id=7; -update noar tt set v0='E4H7Z5EH5PL4' where id=7; -update noar ti set v0='E4H7Z5EH5PL4' where id=7; -update noar tt set b1='16D7520MJ6' where id=7; -update noar ti set b1='16D7520MJ6' where id=7; -update noar tt set v0='QBVH4MDZU' where id=7; -update noar ti set v0='QBVH4MDZU' where id=7; -update noar tt set b2='S2IX6SWEM69GF9LZ5U9H65EH' where id=7; -update noar ti set b2='S2IX6SWEM69GF9LZ5U9H65EH' where id=7; -update noar tt set v0='T078TFXU0Z' where id=8; -update noar ti set v0='T078TFXU0Z' where id=8; -update noar tt set b0='YFR' where id=8; -update noar ti set b0='YFR' where id=8; -update noar tt set v0='9N3NS4T16OVFT95ZJ80EHU2LQRS7PMEF' where id=8; -update noar ti set v0='9N3NS4T16OVFT95ZJ80EHU2LQRS7PMEF' where id=8; -update noar tt set b1='ZP8ULZRBFF2Z9O9X' where id=8; -update noar ti set b1='ZP8ULZRBFF2Z9O9X' where id=8; -update noar tt set v0='HLYQYQYFV224OY8' where id=8; -update noar ti set v0='HLYQYQYFV224OY8' where id=8; -update noar tt set b2='U462OA4KR4IRMY4CT7BJR9EOK' where id=8; -update noar ti set b2='U462OA4KR4IRMY4CT7BJR9EOK' where id=8; -update noar tt set v0='KJ5LIUOVSG9' where id=9; -update noar ti set v0='KJ5LIUOVSG9' where id=9; -update noar tt set b0='SUJJPR2' where id=9; -update noar ti set b0='SUJJPR2' where id=9; -update noar tt set v0='ICUDHA3SCRBQJQTYG' where id=9; -update noar ti set v0='ICUDHA3SCRBQJQTYG' where id=9; -update noar tt set b1='8I6T9F5J55H5HQ5ZHL2NCG547C' where id=9; -update noar ti set b1='8I6T9F5J55H5HQ5ZHL2NCG547C' where id=9; -update noar tt set v0='OKXC505ZDUC1VWS9' where id=9; -update noar ti set v0='OKXC505ZDUC1VWS9' where id=9; -update noar tt set b2='CPMK94U96ONWWFN7C' where id=9; -update noar ti set b2='CPMK94U96ONWWFN7C' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - f0 int not null, - v0 varchar(32) not null, - b0 longblob not null, - b1 mediumblob not null, - b2 tinyblob not null -) engine=tokudb; -insert into tt values (1,0,'','','',''); -insert into tt values (2,0,'','','',''); -insert into tt values (3,0,'','','',''); -insert into tt values (4,0,'','','',''); -insert into tt values (5,0,'','','',''); -insert into tt values (6,0,'','','',''); -insert into tt values (7,0,'','','',''); -insert into tt values (8,0,'','','',''); -insert into tt values (9,0,'','','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='6K2SJJW66IDTR' where id=1; -update noar ti set v0='6K2SJJW66IDTR' where id=1; -update noar tt set b0='5X2E4JI6FICQBNGU' where id=1; -update noar ti set b0='5X2E4JI6FICQBNGU' where id=1; -update noar tt set v0='U4RYDCKS00KW2OOK2HGEI5DKT' where id=1; -update noar ti set v0='U4RYDCKS00KW2OOK2HGEI5DKT' where id=1; -update noar tt set b1='3N5' where id=1; -update noar ti set b1='3N5' where id=1; -update noar tt set v0='8WQ' where id=1; -update noar ti set v0='8WQ' where id=1; -update noar tt set b2='E' where id=1; -update noar ti set b2='E' where id=1; -update noar tt set v0='IPKF' where id=2; -update noar ti set v0='IPKF' where id=2; -update noar tt set b0='RBSYU1EISEBS2531J2T8' where id=2; -update noar ti set b0='RBSYU1EISEBS2531J2T8' where id=2; -update noar tt set v0='4G97KWNHQV5TPKFQR8Y1YO7USW0DGSE' where id=2; -update noar ti set v0='4G97KWNHQV5TPKFQR8Y1YO7USW0DGSE' where id=2; -update noar tt set b1='ZI4180UK' where id=2; -update noar ti set b1='ZI4180UK' where id=2; -update noar tt set v0='1EMBWCUZMBOGYE3O3VEPA' where id=2; -update noar ti set v0='1EMBWCUZMBOGYE3O3VEPA' where id=2; -update noar tt set b2='8ZJW6BD7JOMEMUWH9CT8HQFID0PNAODZ' where id=2; -update noar ti set b2='8ZJW6BD7JOMEMUWH9CT8HQFID0PNAODZ' where id=2; -update noar tt set v0='BB84RG75BZJYD5HESV95VF9MORW1FK1' where id=3; -update noar ti set v0='BB84RG75BZJYD5HESV95VF9MORW1FK1' where id=3; -update noar tt set b0='ROKAP1N' where id=3; -update noar ti set b0='ROKAP1N' where id=3; -update noar tt set v0='ZR95U5OAG' where id=3; -update noar ti set v0='ZR95U5OAG' where id=3; -update noar tt set b1='KVQOTYY8BIR40GWJNDEX2LIM5C2T3O' where id=3; -update noar ti set b1='KVQOTYY8BIR40GWJNDEX2LIM5C2T3O' where id=3; -update noar tt set v0='4B243U3SQAU05HZ86' where id=3; -update noar ti set v0='4B243U3SQAU05HZ86' where id=3; -update noar tt set b2='ETFU1Q8RCGYGU65GGOTR' where id=3; -update noar ti set b2='ETFU1Q8RCGYGU65GGOTR' where id=3; -update noar tt set v0='ZNXU9CI8DGBIU5NQ' where id=4; -update noar ti set v0='ZNXU9CI8DGBIU5NQ' where id=4; -update noar tt set b0='FIQH1CCS4YBYVA6C8XU4N' where id=4; -update noar ti set b0='FIQH1CCS4YBYVA6C8XU4N' where id=4; -update noar tt set v0='UQMMFNCR21YX0SBZ2WTY64B1T0W8GLIJ' where id=4; -update noar ti set v0='UQMMFNCR21YX0SBZ2WTY64B1T0W8GLIJ' where id=4; -update noar tt set b1='1VR0W62SSPIQRV' where id=4; -update noar ti set b1='1VR0W62SSPIQRV' where id=4; -update noar tt set v0='KSEU60F3N0SOCE57QGO9GP6' where id=4; -update noar ti set v0='KSEU60F3N0SOCE57QGO9GP6' where id=4; -update noar tt set b2='RKRNM' where id=4; -update noar ti set b2='RKRNM' where id=4; -update noar tt set v0='US5EO8Y3KGQ' where id=5; -update noar ti set v0='US5EO8Y3KGQ' where id=5; -update noar tt set b0='LAVSR1GAT' where id=5; -update noar ti set b0='LAVSR1GAT' where id=5; -update noar tt set v0='VV3ZHJKFQ9IWQAZH' where id=5; -update noar ti set v0='VV3ZHJKFQ9IWQAZH' where id=5; -update noar tt set b1='31FCDPNMIAS5UXNLM' where id=5; -update noar ti set b1='31FCDPNMIAS5UXNLM' where id=5; -update noar tt set v0='6VZHU2MHIM2Y4RJC33BP1KA7MZ2DBL' where id=5; -update noar ti set v0='6VZHU2MHIM2Y4RJC33BP1KA7MZ2DBL' where id=5; -update noar tt set b2='7KBE2F' where id=5; -update noar ti set b2='7KBE2F' where id=5; -update noar tt set v0='QA34XR7VUJ8LH1OVXF70R6HF4V' where id=6; -update noar ti set v0='QA34XR7VUJ8LH1OVXF70R6HF4V' where id=6; -update noar tt set b0='PAFY' where id=6; -update noar ti set b0='PAFY' where id=6; -update noar tt set v0='9J' where id=6; -update noar ti set v0='9J' where id=6; -update noar tt set b1='0Y1XAJTYUMCRKLHNPB8Q2SZ06AJ88E' where id=6; -update noar ti set b1='0Y1XAJTYUMCRKLHNPB8Q2SZ06AJ88E' where id=6; -update noar tt set v0='I3SWKJZ' where id=6; -update noar ti set v0='I3SWKJZ' where id=6; -update noar tt set b2='T1MGQH8O28UNLWBF8YTVL1IWKPBGG3' where id=6; -update noar ti set b2='T1MGQH8O28UNLWBF8YTVL1IWKPBGG3' where id=6; -update noar tt set v0='VGN6A' where id=7; -update noar ti set v0='VGN6A' where id=7; -update noar tt set b0='57PCONKI' where id=7; -update noar ti set b0='57PCONKI' where id=7; -update noar tt set v0='X' where id=7; -update noar ti set v0='X' where id=7; -update noar tt set b1='HIL5LCX54AAWSHCL' where id=7; -update noar ti set b1='HIL5LCX54AAWSHCL' where id=7; -update noar tt set v0='8XPG8OF9KTYXXD174DKQ' where id=7; -update noar ti set v0='8XPG8OF9KTYXXD174DKQ' where id=7; -update noar tt set b2='T87J9Y7L7BKG' where id=7; -update noar ti set b2='T87J9Y7L7BKG' where id=7; -update noar tt set v0='PR' where id=8; -update noar ti set v0='PR' where id=8; -update noar tt set b0='C8A7QMQ0EUWAK' where id=8; -update noar ti set b0='C8A7QMQ0EUWAK' where id=8; -update noar tt set v0='RBKPU1JRANU7BZ0' where id=8; -update noar ti set v0='RBKPU1JRANU7BZ0' where id=8; -update noar tt set b1='XZT4DOI3WSU3EH' where id=8; -update noar ti set b1='XZT4DOI3WSU3EH' where id=8; -update noar tt set v0='UN1BDAFIIKY' where id=8; -update noar ti set v0='UN1BDAFIIKY' where id=8; -update noar tt set b2='6ZCDIOYBFTPNXE9FSFBH5XS82IS' where id=8; -update noar ti set b2='6ZCDIOYBFTPNXE9FSFBH5XS82IS' where id=8; -update noar tt set v0='0J50NLVHB97V0B47YH0Q9RZFJ428MNR3' where id=9; -update noar ti set v0='0J50NLVHB97V0B47YH0Q9RZFJ428MNR3' where id=9; -update noar tt set b0='LRK5A56Q1ZDDFV4MA' where id=9; -update noar ti set b0='LRK5A56Q1ZDDFV4MA' where id=9; -update noar tt set v0='BR8TXBWKS5CU1P5J9B07XKLA' where id=9; -update noar ti set v0='BR8TXBWKS5CU1P5J9B07XKLA' where id=9; -update noar tt set b1='9L3E9BSA59AP05EHZTX8G' where id=9; -update noar ti set b1='9L3E9BSA59AP05EHZTX8G' where id=9; -update noar tt set v0='TZEINUV7KPKMF6CXKH401PZ8F' where id=9; -update noar ti set v0='TZEINUV7KPKMF6CXKH401PZ8F' where id=9; -update noar tt set b2='QWYGS2ASPLEN07OS8N' where id=9; -update noar ti set b2='QWYGS2ASPLEN07OS8N' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - f0 int not null, - v0 varchar(256) not null, - b0 longblob not null, - b1 mediumblob not null, - b2 tinyblob not null -) engine=tokudb; -insert into tt values (1,0,'','','',''); -insert into tt values (2,0,'','','',''); -insert into tt values (3,0,'','','',''); -insert into tt values (4,0,'','','',''); -insert into tt values (5,0,'','','',''); -insert into tt values (6,0,'','','',''); -insert into tt values (7,0,'','','',''); -insert into tt values (8,0,'','','',''); -insert into tt values (9,0,'','','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='9TS0MDH3P' where id=1; -update noar ti set v0='9TS0MDH3P' where id=1; -update noar tt set b0='0CMLOH3TTQ2Q1' where id=1; -update noar ti set b0='0CMLOH3TTQ2Q1' where id=1; -update noar tt set v0='T8S756' where id=1; -update noar ti set v0='T8S756' where id=1; -update noar tt set b1='355ARES50AS85AUBYYVP0WL22' where id=1; -update noar ti set b1='355ARES50AS85AUBYYVP0WL22' where id=1; -update noar tt set v0='NYYZ7GE0NMLN4ZEOGZA8L1MJNNJ1S1YJ' where id=1; -update noar ti set v0='NYYZ7GE0NMLN4ZEOGZA8L1MJNNJ1S1YJ' where id=1; -update noar tt set b2='3PN2LXLQMBPKXZXPC48432XO5O' where id=1; -update noar ti set b2='3PN2LXLQMBPKXZXPC48432XO5O' where id=1; -update noar tt set v0='LS6XDT' where id=2; -update noar ti set v0='LS6XDT' where id=2; -update noar tt set b0='RW' where id=2; -update noar ti set b0='RW' where id=2; -update noar tt set v0='QY' where id=2; -update noar ti set v0='QY' where id=2; -update noar tt set b1='4BRIS' where id=2; -update noar ti set b1='4BRIS' where id=2; -update noar tt set v0='N8INEEY5RS' where id=2; -update noar ti set v0='N8INEEY5RS' where id=2; -update noar tt set b2='Y1WV8YLS' where id=2; -update noar ti set b2='Y1WV8YLS' where id=2; -update noar tt set v0='5KQJN0PTESKD59S8IT0TXZZR3R' where id=3; -update noar ti set v0='5KQJN0PTESKD59S8IT0TXZZR3R' where id=3; -update noar tt set b0='7LY8M6FAAUCZW8ZB' where id=3; -update noar ti set b0='7LY8M6FAAUCZW8ZB' where id=3; -update noar tt set v0='2CVN4J9V' where id=3; -update noar ti set v0='2CVN4J9V' where id=3; -update noar tt set b1='OP9GIEYSIB5YY8AK' where id=3; -update noar ti set b1='OP9GIEYSIB5YY8AK' where id=3; -update noar tt set v0='THS1HQ9XQXU3RVDCFQ8L1J' where id=3; -update noar ti set v0='THS1HQ9XQXU3RVDCFQ8L1J' where id=3; -update noar tt set b2='MOB8C53CXLUNG9QBNUNU4HYFOUFYFEOH' where id=3; -update noar ti set b2='MOB8C53CXLUNG9QBNUNU4HYFOUFYFEOH' where id=3; -update noar tt set v0='0V8L9WE7P3Q417Z5' where id=4; -update noar ti set v0='0V8L9WE7P3Q417Z5' where id=4; -update noar tt set b0='RL4YLL6FLGJ6S2J1' where id=4; -update noar ti set b0='RL4YLL6FLGJ6S2J1' where id=4; -update noar tt set v0='QFSKH2H1TS3BCNISDGH0' where id=4; -update noar ti set v0='QFSKH2H1TS3BCNISDGH0' where id=4; -update noar tt set b1='35QLAE3KA7PKEL7O9CGKK0PULE679C' where id=4; -update noar ti set b1='35QLAE3KA7PKEL7O9CGKK0PULE679C' where id=4; -update noar tt set v0='EQII2R355RSR' where id=4; -update noar ti set v0='EQII2R355RSR' where id=4; -update noar tt set b2='P6MDBFRNHDLWGI9OHO' where id=4; -update noar ti set b2='P6MDBFRNHDLWGI9OHO' where id=4; -update noar tt set v0='F3CL46CEH030ET6KW296UDFJ89XSLR' where id=5; -update noar ti set v0='F3CL46CEH030ET6KW296UDFJ89XSLR' where id=5; -update noar tt set b0='MQCEAXFPYQBQFPKC7QCD887X1UA4J' where id=5; -update noar ti set b0='MQCEAXFPYQBQFPKC7QCD887X1UA4J' where id=5; -update noar tt set v0='ZXRE5TYFAG4Z1VJIEZCY' where id=5; -update noar ti set v0='ZXRE5TYFAG4Z1VJIEZCY' where id=5; -update noar tt set b1='E2' where id=5; -update noar ti set b1='E2' where id=5; -update noar tt set v0='UL7EQXI7' where id=5; -update noar ti set v0='UL7EQXI7' where id=5; -update noar tt set b2='I8BC1Z' where id=5; -update noar ti set b2='I8BC1Z' where id=5; -update noar tt set v0='CQS6JNTZUDTERIHXWWTJHB40' where id=6; -update noar ti set v0='CQS6JNTZUDTERIHXWWTJHB40' where id=6; -update noar tt set b0='NQM2QIW' where id=6; -update noar ti set b0='NQM2QIW' where id=6; -update noar tt set v0='OCVQ828X97WN8' where id=6; -update noar ti set v0='OCVQ828X97WN8' where id=6; -update noar tt set b1='EEFEBSCQHC2' where id=6; -update noar ti set b1='EEFEBSCQHC2' where id=6; -update noar tt set v0='WG5YJ3IH3CYIKW17T0GVT' where id=6; -update noar ti set v0='WG5YJ3IH3CYIKW17T0GVT' where id=6; -update noar tt set b2='J8FTISLJ6OY43HSJM8' where id=6; -update noar ti set b2='J8FTISLJ6OY43HSJM8' where id=6; -update noar tt set v0='D63NS3K8GG' where id=7; -update noar ti set v0='D63NS3K8GG' where id=7; -update noar tt set b0='HQV4N0' where id=7; -update noar ti set b0='HQV4N0' where id=7; -update noar tt set v0='NLBFM6UXLAV8C04Q59' where id=7; -update noar ti set v0='NLBFM6UXLAV8C04Q59' where id=7; -update noar tt set b1='NB650R7J' where id=7; -update noar ti set b1='NB650R7J' where id=7; -update noar tt set v0='6UPSO6NOSR2ZW3VN44JQKAIX4Z' where id=7; -update noar ti set v0='6UPSO6NOSR2ZW3VN44JQKAIX4Z' where id=7; -update noar tt set b2='ORNLBCUZFR4VCYB96' where id=7; -update noar ti set b2='ORNLBCUZFR4VCYB96' where id=7; -update noar tt set v0='3RO482PQGYIBMWQ' where id=8; -update noar ti set v0='3RO482PQGYIBMWQ' where id=8; -update noar tt set b0='ZQ' where id=8; -update noar ti set b0='ZQ' where id=8; -update noar tt set v0='NS76MOHY' where id=8; -update noar ti set v0='NS76MOHY' where id=8; -update noar tt set b1='3DJSVFJM4CDFO42OBNML0DD' where id=8; -update noar ti set b1='3DJSVFJM4CDFO42OBNML0DD' where id=8; -update noar tt set v0='F8RF8BD' where id=8; -update noar ti set v0='F8RF8BD' where id=8; -update noar tt set b2='KAUSE91' where id=8; -update noar ti set b2='KAUSE91' where id=8; -update noar tt set v0='JN' where id=9; -update noar ti set v0='JN' where id=9; -update noar tt set b0='Z6KWLR' where id=9; -update noar ti set b0='Z6KWLR' where id=9; -update noar tt set v0='AWGO2VKOGWP79UOC2DH25EUQBL5Q' where id=9; -update noar ti set v0='AWGO2VKOGWP79UOC2DH25EUQBL5Q' where id=9; -update noar tt set b1='K9BO70L4M4BO4CDN4IO9' where id=9; -update noar ti set b1='K9BO70L4M4BO4CDN4IO9' where id=9; -update noar tt set v0='EO34' where id=9; -update noar ti set v0='EO34' where id=9; -update noar tt set b2='5TZWF3U9AEYMQIRS10' where id=9; -update noar ti set b2='5TZWF3U9AEYMQIRS10' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - f0 int null, - v0 varchar(32) null, - b0 longblob null, - b1 mediumblob null, - b2 blob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='NY2V9AYD28KL3MQ7BOU' where id=1; -update noar ti set v0='NY2V9AYD28KL3MQ7BOU' where id=1; -update noar tt set b0='GNAGKPJA6YRNGN4KN' where id=1; -update noar ti set b0='GNAGKPJA6YRNGN4KN' where id=1; -update noar tt set v0='986J0K48ZSZ5DEODKG30W72P' where id=1; -update noar ti set v0='986J0K48ZSZ5DEODKG30W72P' where id=1; -update noar tt set b1='EXI9D2AO0' where id=1; -update noar ti set b1='EXI9D2AO0' where id=1; -update noar tt set v0='PQC8YMO' where id=1; -update noar ti set v0='PQC8YMO' where id=1; -update noar tt set b2='9M1V87WDQ9JL8ZVQVOUVLBMT' where id=1; -update noar ti set b2='9M1V87WDQ9JL8ZVQVOUVLBMT' where id=1; -update noar tt set v0='U7DWK1JFZKOHO0' where id=2; -update noar ti set v0='U7DWK1JFZKOHO0' where id=2; -update noar tt set b0='SD6OSYJQ0UP3H95V9B0YWLH' where id=2; -update noar ti set b0='SD6OSYJQ0UP3H95V9B0YWLH' where id=2; -update noar tt set v0='NBJ304PT4KLMQCAYKWHYZKT9Z7' where id=2; -update noar ti set v0='NBJ304PT4KLMQCAYKWHYZKT9Z7' where id=2; -update noar tt set b1='8RXU115RILP4396UHKAGGS760' where id=2; -update noar ti set b1='8RXU115RILP4396UHKAGGS760' where id=2; -update noar tt set v0='A2SBP34613FAAA0QOI' where id=2; -update noar ti set v0='A2SBP34613FAAA0QOI' where id=2; -update noar tt set b2='MKVCN5DY9CE72K8NX14YW4' where id=2; -update noar ti set b2='MKVCN5DY9CE72K8NX14YW4' where id=2; -update noar tt set v0='T3F2H345ESDXDFRMEAC2ZT3B' where id=3; -update noar ti set v0='T3F2H345ESDXDFRMEAC2ZT3B' where id=3; -update noar tt set b0='GFAG1TKHE34M1' where id=3; -update noar ti set b0='GFAG1TKHE34M1' where id=3; -update noar tt set v0='L68WIMVP65' where id=3; -update noar ti set v0='L68WIMVP65' where id=3; -update noar tt set b1='HA8D9TUD2IV4Z16OB5CP5TUEZHVD5' where id=3; -update noar ti set b1='HA8D9TUD2IV4Z16OB5CP5TUEZHVD5' where id=3; -update noar tt set v0='AN9KA1YD3IF2CN2MMBW' where id=3; -update noar ti set v0='AN9KA1YD3IF2CN2MMBW' where id=3; -update noar tt set b2='JGEIOEXK2KR0GPPDLP0BRIUCKUHQRUQT' where id=3; -update noar ti set b2='JGEIOEXK2KR0GPPDLP0BRIUCKUHQRUQT' where id=3; -update noar tt set v0='8OR' where id=4; -update noar ti set v0='8OR' where id=4; -update noar tt set b0='A0I15NYCO' where id=4; -update noar ti set b0='A0I15NYCO' where id=4; -update noar tt set v0='6MJYG6QADFXS0SBQIGEB' where id=4; -update noar ti set v0='6MJYG6QADFXS0SBQIGEB' where id=4; -update noar tt set b1='8LDJM326VPILF9PO0NX9' where id=4; -update noar ti set b1='8LDJM326VPILF9PO0NX9' where id=4; -update noar tt set v0='9' where id=4; -update noar ti set v0='9' where id=4; -update noar tt set b2='MV7FMC1PWIE20TN30MSYH1Q98P7RJ' where id=4; -update noar ti set b2='MV7FMC1PWIE20TN30MSYH1Q98P7RJ' where id=4; -update noar tt set v0='K66A0FG20A2PR1KKYI7NEMRBODDMC' where id=5; -update noar ti set v0='K66A0FG20A2PR1KKYI7NEMRBODDMC' where id=5; -update noar tt set b0='2AWUIS5FJMD3E5LI33MN8E9CQHNEOVE' where id=5; -update noar ti set b0='2AWUIS5FJMD3E5LI33MN8E9CQHNEOVE' where id=5; -update noar tt set v0='Z7B9VR3B82H8KYIMDBWMNQ6RA8ZU65K' where id=5; -update noar ti set v0='Z7B9VR3B82H8KYIMDBWMNQ6RA8ZU65K' where id=5; -update noar tt set b1='N568K29XYH9ZF3XYDOGM0BS6201WB' where id=5; -update noar ti set b1='N568K29XYH9ZF3XYDOGM0BS6201WB' where id=5; -update noar tt set v0='V6LZL2BUJ' where id=5; -update noar ti set v0='V6LZL2BUJ' where id=5; -update noar tt set b2='SNMJ2R8FDL4BCIKQ5' where id=5; -update noar ti set b2='SNMJ2R8FDL4BCIKQ5' where id=5; -update noar tt set v0='61ZLFTCDMJPM0VIY1G0I5A' where id=6; -update noar ti set v0='61ZLFTCDMJPM0VIY1G0I5A' where id=6; -update noar tt set b0='L3MKS4JOQ0JNJZMNCZ4ZCPC1BW9' where id=6; -update noar ti set b0='L3MKS4JOQ0JNJZMNCZ4ZCPC1BW9' where id=6; -update noar tt set v0='7G2JYXUXWF4' where id=6; -update noar ti set v0='7G2JYXUXWF4' where id=6; -update noar tt set b1='E0E6CCGWJD7FC' where id=6; -update noar ti set b1='E0E6CCGWJD7FC' where id=6; -update noar tt set v0='XGUN6QNIEYNCTOT' where id=6; -update noar ti set v0='XGUN6QNIEYNCTOT' where id=6; -update noar tt set b2='QEU906YOVQ' where id=6; -update noar ti set b2='QEU906YOVQ' where id=6; -update noar tt set v0='UM' where id=7; -update noar ti set v0='UM' where id=7; -update noar tt set b0='OPG20V4XVH7VFHVS' where id=7; -update noar ti set b0='OPG20V4XVH7VFHVS' where id=7; -update noar tt set v0='JGLTG9Z5ND3GIH2ERFK3P4WNYSRC5' where id=7; -update noar ti set v0='JGLTG9Z5ND3GIH2ERFK3P4WNYSRC5' where id=7; -update noar tt set b1='BI4YIZ8TMQ' where id=7; -update noar ti set b1='BI4YIZ8TMQ' where id=7; -update noar tt set v0='CDF' where id=7; -update noar ti set v0='CDF' where id=7; -update noar tt set b2='K1846T0O2Z6PQQP05GKWDC1WZ6' where id=7; -update noar ti set b2='K1846T0O2Z6PQQP05GKWDC1WZ6' where id=7; -update noar tt set v0='WMZE9KY3X87UFEGX3I' where id=8; -update noar ti set v0='WMZE9KY3X87UFEGX3I' where id=8; -update noar tt set b0='TCIAC2BZWIVPQ9Q4ULH168QEHN8' where id=8; -update noar ti set b0='TCIAC2BZWIVPQ9Q4ULH168QEHN8' where id=8; -update noar tt set v0='MFSAHNC01KBVQQ75BC' where id=8; -update noar ti set v0='MFSAHNC01KBVQQ75BC' where id=8; -update noar tt set b1='K05O0BLUTOKTZF6ZJ3F' where id=8; -update noar ti set b1='K05O0BLUTOKTZF6ZJ3F' where id=8; -update noar tt set v0='M' where id=8; -update noar ti set v0='M' where id=8; -update noar tt set b2='EL5' where id=8; -update noar ti set b2='EL5' where id=8; -update noar tt set v0='CBXCGZYCLO0XEPNGVUVA' where id=9; -update noar ti set v0='CBXCGZYCLO0XEPNGVUVA' where id=9; -update noar tt set b0='0NFY2CYIFR' where id=9; -update noar ti set b0='0NFY2CYIFR' where id=9; -update noar tt set v0='EQGYRHPK836AOF' where id=9; -update noar ti set v0='EQGYRHPK836AOF' where id=9; -update noar tt set b1='QUFUPB09US52' where id=9; -update noar ti set b1='QUFUPB09US52' where id=9; -update noar tt set v0='TMT5B' where id=9; -update noar ti set v0='TMT5B' where id=9; -update noar tt set b2='S503WU5RTVN9B27' where id=9; -update noar ti set b2='S503WU5RTVN9B27' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - f0 int null, - v0 varchar(256) null, - b0 longblob null, - b1 mediumblob null, - b2 blob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='PU0243VWIF4B6XH53LHDDZMVRVYE4PJY' where id=1; -update noar ti set v0='PU0243VWIF4B6XH53LHDDZMVRVYE4PJY' where id=1; -update noar tt set b0='TD2Q53X2RUAGDI6A0CK2A9C2OF4VUK' where id=1; -update noar ti set b0='TD2Q53X2RUAGDI6A0CK2A9C2OF4VUK' where id=1; -update noar tt set v0='PG5VSTFS34O31D42A1WE2S' where id=1; -update noar ti set v0='PG5VSTFS34O31D42A1WE2S' where id=1; -update noar tt set b1='58EDT7WQ337DKZ6T016YWOJUHH' where id=1; -update noar ti set b1='58EDT7WQ337DKZ6T016YWOJUHH' where id=1; -update noar tt set v0='IODP3IKTLSW514079080WBTEZ' where id=1; -update noar ti set v0='IODP3IKTLSW514079080WBTEZ' where id=1; -update noar tt set b2='RH6OKNO2JOY2CXNNI5CLQFDZIGNL0Q' where id=1; -update noar ti set b2='RH6OKNO2JOY2CXNNI5CLQFDZIGNL0Q' where id=1; -update noar tt set v0='WXDP6T761RGM68FRZ31UEA11EOA2' where id=2; -update noar ti set v0='WXDP6T761RGM68FRZ31UEA11EOA2' where id=2; -update noar tt set b0='XWJZ67VKOOFBH27HP' where id=2; -update noar ti set b0='XWJZ67VKOOFBH27HP' where id=2; -update noar tt set v0='G1NWW83LA4QOTBL7VQ' where id=2; -update noar ti set v0='G1NWW83LA4QOTBL7VQ' where id=2; -update noar tt set b1='3TR833VN' where id=2; -update noar ti set b1='3TR833VN' where id=2; -update noar tt set v0='XLL1JHVPRABD' where id=2; -update noar ti set v0='XLL1JHVPRABD' where id=2; -update noar tt set b2='KR02VZPISZOX3' where id=2; -update noar ti set b2='KR02VZPISZOX3' where id=2; -update noar tt set v0='CSTJRDS3EDJLGZD' where id=3; -update noar ti set v0='CSTJRDS3EDJLGZD' where id=3; -update noar tt set b0='7U3YADF' where id=3; -update noar ti set b0='7U3YADF' where id=3; -update noar tt set v0='PA33FIMK' where id=3; -update noar ti set v0='PA33FIMK' where id=3; -update noar tt set b1='QLXWHDQL2J4PYPUMK50IZUMZF' where id=3; -update noar ti set b1='QLXWHDQL2J4PYPUMK50IZUMZF' where id=3; -update noar tt set v0='7OSIMBKV3' where id=3; -update noar ti set v0='7OSIMBKV3' where id=3; -update noar tt set b2='9P63D50WO' where id=3; -update noar ti set b2='9P63D50WO' where id=3; -update noar tt set v0='B' where id=4; -update noar ti set v0='B' where id=4; -update noar tt set b0='ZI60CR3YU' where id=4; -update noar ti set b0='ZI60CR3YU' where id=4; -update noar tt set v0='K7BM16E7EEC2SCT488OABNVMF' where id=4; -update noar ti set v0='K7BM16E7EEC2SCT488OABNVMF' where id=4; -update noar tt set b1='DFO4TZ3JI9B4' where id=4; -update noar ti set b1='DFO4TZ3JI9B4' where id=4; -update noar tt set v0='K77XRSWQTJTA12S73I47A739' where id=4; -update noar ti set v0='K77XRSWQTJTA12S73I47A739' where id=4; -update noar tt set b2='EO50VRN' where id=4; -update noar ti set b2='EO50VRN' where id=4; -update noar tt set v0='R38CI5QP6IHTL3RJAV' where id=5; -update noar ti set v0='R38CI5QP6IHTL3RJAV' where id=5; -update noar tt set b0='9JKZMR476BMU5LNH69HDOHV4E' where id=5; -update noar ti set b0='9JKZMR476BMU5LNH69HDOHV4E' where id=5; -update noar tt set v0='WTLOMCY9' where id=5; -update noar ti set v0='WTLOMCY9' where id=5; -update noar tt set b1='7P1' where id=5; -update noar ti set b1='7P1' where id=5; -update noar tt set v0='8JG0' where id=5; -update noar ti set v0='8JG0' where id=5; -update noar tt set b2='DYFL4CUNB' where id=5; -update noar ti set b2='DYFL4CUNB' where id=5; -update noar tt set v0='68WUG89' where id=6; -update noar ti set v0='68WUG89' where id=6; -update noar tt set b0='IJ0U3G585DNTV6KRA8Z7UMQ' where id=6; -update noar ti set b0='IJ0U3G585DNTV6KRA8Z7UMQ' where id=6; -update noar tt set v0='QSCJRC9Y8WVVMU4GSXL' where id=6; -update noar ti set v0='QSCJRC9Y8WVVMU4GSXL' where id=6; -update noar tt set b1='SSUH7EJ86PQC7R1PR' where id=6; -update noar ti set b1='SSUH7EJ86PQC7R1PR' where id=6; -update noar tt set v0='08BVPHGCTOYDJANC08U5U50XT' where id=6; -update noar ti set v0='08BVPHGCTOYDJANC08U5U50XT' where id=6; -update noar tt set b2='H7' where id=6; -update noar ti set b2='H7' where id=6; -update noar tt set v0='G6S8M1820V1XO74S5SQ' where id=7; -update noar ti set v0='G6S8M1820V1XO74S5SQ' where id=7; -update noar tt set b0='3H' where id=7; -update noar ti set b0='3H' where id=7; -update noar tt set v0='H0O9HZHX8XD73DRNW' where id=7; -update noar ti set v0='H0O9HZHX8XD73DRNW' where id=7; -update noar tt set b1='KO712MFU5OXPY6XLRAH4E3E9C' where id=7; -update noar ti set b1='KO712MFU5OXPY6XLRAH4E3E9C' where id=7; -update noar tt set v0='4ME5IJ60RGW8' where id=7; -update noar ti set v0='4ME5IJ60RGW8' where id=7; -update noar tt set b2='6' where id=7; -update noar ti set b2='6' where id=7; -update noar tt set v0='4G1XESX3UU7TX5QUUVDP' where id=8; -update noar ti set v0='4G1XESX3UU7TX5QUUVDP' where id=8; -update noar tt set b0='FQ6Y7AJB5B1KNI3O4WZ' where id=8; -update noar ti set b0='FQ6Y7AJB5B1KNI3O4WZ' where id=8; -update noar tt set v0='L8ADRM5UTXW' where id=8; -update noar ti set v0='L8ADRM5UTXW' where id=8; -update noar tt set b1='I58SCELVBM8ENNR1' where id=8; -update noar ti set b1='I58SCELVBM8ENNR1' where id=8; -update noar tt set v0='P6X02730A51CITJL2B5T1OU4PQFD855R' where id=8; -update noar ti set v0='P6X02730A51CITJL2B5T1OU4PQFD855R' where id=8; -update noar tt set b2='8OA6S0O5XV' where id=8; -update noar ti set b2='8OA6S0O5XV' where id=8; -update noar tt set v0='C' where id=9; -update noar ti set v0='C' where id=9; -update noar tt set b0='DYVA472M3CZIOATJ8' where id=9; -update noar ti set b0='DYVA472M3CZIOATJ8' where id=9; -update noar tt set v0='8L' where id=9; -update noar ti set v0='8L' where id=9; -update noar tt set b1='6E0KPQOR' where id=9; -update noar ti set b1='6E0KPQOR' where id=9; -update noar tt set v0='3Z45SH4X8B6FT07K' where id=9; -update noar ti set v0='3Z45SH4X8B6FT07K' where id=9; -update noar tt set b2='G0RAQNSEACS' where id=9; -update noar ti set b2='G0RAQNSEACS' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - f0 int not null, - v0 varchar(32) not null, - b0 longblob not null, - b1 mediumblob not null, - b2 blob not null -) engine=tokudb; -insert into tt values (1,0,'','','',''); -insert into tt values (2,0,'','','',''); -insert into tt values (3,0,'','','',''); -insert into tt values (4,0,'','','',''); -insert into tt values (5,0,'','','',''); -insert into tt values (6,0,'','','',''); -insert into tt values (7,0,'','','',''); -insert into tt values (8,0,'','','',''); -insert into tt values (9,0,'','','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='13YRU' where id=1; -update noar ti set v0='13YRU' where id=1; -update noar tt set b0='RY2V8YLWEL60PTHJO5GLKBM73AC' where id=1; -update noar ti set b0='RY2V8YLWEL60PTHJO5GLKBM73AC' where id=1; -update noar tt set v0='28CPM4LYE3QYH9JD05HSKWHHAQ9GJ' where id=1; -update noar ti set v0='28CPM4LYE3QYH9JD05HSKWHHAQ9GJ' where id=1; -update noar tt set b1='WFRDECHOEGAUXW71VURN6Q2A8' where id=1; -update noar ti set b1='WFRDECHOEGAUXW71VURN6Q2A8' where id=1; -update noar tt set v0='10S5F9RFU22M60T77Y4Y19RY0CQ7J' where id=1; -update noar ti set v0='10S5F9RFU22M60T77Y4Y19RY0CQ7J' where id=1; -update noar tt set b2='5UHXO' where id=1; -update noar ti set b2='5UHXO' where id=1; -update noar tt set v0='BGLOM0' where id=2; -update noar ti set v0='BGLOM0' where id=2; -update noar tt set b0='57BSMBFFYRTYYHHD7TXG3JVFARFQ' where id=2; -update noar ti set b0='57BSMBFFYRTYYHHD7TXG3JVFARFQ' where id=2; -update noar tt set v0='M6HLEVD9J67KV21PCLEDQXH4N' where id=2; -update noar ti set v0='M6HLEVD9J67KV21PCLEDQXH4N' where id=2; -update noar tt set b1='E1BNI02Z5I6W89Q' where id=2; -update noar ti set b1='E1BNI02Z5I6W89Q' where id=2; -update noar tt set v0='S9U342SAFFBVSV8HBFPGEA57N34X9U' where id=2; -update noar ti set v0='S9U342SAFFBVSV8HBFPGEA57N34X9U' where id=2; -update noar tt set b2='UVL37GGK9WY5P7R053VU503ZUQF61P' where id=2; -update noar ti set b2='UVL37GGK9WY5P7R053VU503ZUQF61P' where id=2; -update noar tt set v0='2ZZOKPMCJYMQG8Q9A2' where id=3; -update noar ti set v0='2ZZOKPMCJYMQG8Q9A2' where id=3; -update noar tt set b0='5X2O0NGRP8O14YCWJ2WPYEXTNGB' where id=3; -update noar ti set b0='5X2O0NGRP8O14YCWJ2WPYEXTNGB' where id=3; -update noar tt set v0='VIS1PZ83SJRLOE30HUJO7K9EPWOOZ' where id=3; -update noar ti set v0='VIS1PZ83SJRLOE30HUJO7K9EPWOOZ' where id=3; -update noar tt set b1='JNI' where id=3; -update noar ti set b1='JNI' where id=3; -update noar tt set v0='I86WBGJ7UO' where id=3; -update noar ti set v0='I86WBGJ7UO' where id=3; -update noar tt set b2='KV9EQ3AO0NCDGY2HKI1' where id=3; -update noar ti set b2='KV9EQ3AO0NCDGY2HKI1' where id=3; -update noar tt set v0='0FR13GFXWT6A' where id=4; -update noar ti set v0='0FR13GFXWT6A' where id=4; -update noar tt set b0='T5PXLME89GEJIQGSFLWH7' where id=4; -update noar ti set b0='T5PXLME89GEJIQGSFLWH7' where id=4; -update noar tt set v0='AXJIMRV4AACRMERBZHWNZYS7' where id=4; -update noar ti set v0='AXJIMRV4AACRMERBZHWNZYS7' where id=4; -update noar tt set b1='X' where id=4; -update noar ti set b1='X' where id=4; -update noar tt set v0='UC4IH59N2KOQWIUZT66DV3818' where id=4; -update noar ti set v0='UC4IH59N2KOQWIUZT66DV3818' where id=4; -update noar tt set b2='NLU8A8UKTK9F648EWNQHQ' where id=4; -update noar ti set b2='NLU8A8UKTK9F648EWNQHQ' where id=4; -update noar tt set v0='WUQRPE' where id=5; -update noar ti set v0='WUQRPE' where id=5; -update noar tt set b0='SSZXOCKA3EIF4FGFIIGC7W' where id=5; -update noar ti set b0='SSZXOCKA3EIF4FGFIIGC7W' where id=5; -update noar tt set v0='RFQ4NIIXYXPQGS6HX0LS6QYKEOT0C' where id=5; -update noar ti set v0='RFQ4NIIXYXPQGS6HX0LS6QYKEOT0C' where id=5; -update noar tt set b1='G0' where id=5; -update noar ti set b1='G0' where id=5; -update noar tt set v0='HSYK' where id=5; -update noar ti set v0='HSYK' where id=5; -update noar tt set b2='1TIS2BSHSFS2' where id=5; -update noar ti set b2='1TIS2BSHSFS2' where id=5; -update noar tt set v0='VJVHOZ0ZJVRYFNWRIOAZZAE1Y4DNU2GL' where id=6; -update noar ti set v0='VJVHOZ0ZJVRYFNWRIOAZZAE1Y4DNU2GL' where id=6; -update noar tt set b0='RX4CW00Z07R60QD04GZ3AA9HPG80P' where id=6; -update noar ti set b0='RX4CW00Z07R60QD04GZ3AA9HPG80P' where id=6; -update noar tt set v0='CKKEMN9HN0PHYCW93TUK680LU836WUQI' where id=6; -update noar ti set v0='CKKEMN9HN0PHYCW93TUK680LU836WUQI' where id=6; -update noar tt set b1='M6J3MW1RN9EDUGEQDBLOXGCK7PUZC39C' where id=6; -update noar ti set b1='M6J3MW1RN9EDUGEQDBLOXGCK7PUZC39C' where id=6; -update noar tt set v0='7HBUD1IX0SYW7P6' where id=6; -update noar ti set v0='7HBUD1IX0SYW7P6' where id=6; -update noar tt set b2='L7SN1I8' where id=6; -update noar ti set b2='L7SN1I8' where id=6; -update noar tt set v0='K827W6QROVQE0ZCAHLLWTWE7' where id=7; -update noar ti set v0='K827W6QROVQE0ZCAHLLWTWE7' where id=7; -update noar tt set b0='ZIRT3HUAYYOGAPBLAYQO03H' where id=7; -update noar ti set b0='ZIRT3HUAYYOGAPBLAYQO03H' where id=7; -update noar tt set v0='VCF0AYOOJ26NMZ4GA7PM' where id=7; -update noar ti set v0='VCF0AYOOJ26NMZ4GA7PM' where id=7; -update noar tt set b1='MRBRCR1PWAC9HR2B2G2' where id=7; -update noar ti set b1='MRBRCR1PWAC9HR2B2G2' where id=7; -update noar tt set v0='XPBWZF2VK' where id=7; -update noar ti set v0='XPBWZF2VK' where id=7; -update noar tt set b2='X82Q2U83BJRBNXW6NT3L' where id=7; -update noar ti set b2='X82Q2U83BJRBNXW6NT3L' where id=7; -update noar tt set v0='53XNMDTGTWELZPEJ9GDNVC0I' where id=8; -update noar ti set v0='53XNMDTGTWELZPEJ9GDNVC0I' where id=8; -update noar tt set b0='53KEDWGVCNC6RJPKK' where id=8; -update noar ti set b0='53KEDWGVCNC6RJPKK' where id=8; -update noar tt set v0='JRTYKPMVJTZZE' where id=8; -update noar ti set v0='JRTYKPMVJTZZE' where id=8; -update noar tt set b1='X1NGRWUSX6' where id=8; -update noar ti set b1='X1NGRWUSX6' where id=8; -update noar tt set v0='RKBR7FOTNDVSO3' where id=8; -update noar ti set v0='RKBR7FOTNDVSO3' where id=8; -update noar tt set b2='GR' where id=8; -update noar ti set b2='GR' where id=8; -update noar tt set v0='WYO' where id=9; -update noar ti set v0='WYO' where id=9; -update noar tt set b0='U08SNEV3U3SUDPE05LITOMR77' where id=9; -update noar ti set b0='U08SNEV3U3SUDPE05LITOMR77' where id=9; -update noar tt set v0='6L3L6FWLZCT' where id=9; -update noar ti set v0='6L3L6FWLZCT' where id=9; -update noar tt set b1='6BC54JOSGZVB' where id=9; -update noar ti set b1='6BC54JOSGZVB' where id=9; -update noar tt set v0='KP6HATGVF' where id=9; -update noar ti set v0='KP6HATGVF' where id=9; -update noar tt set b2='30R0W256SGTR1IGGLT5A0TJUZX' where id=9; -update noar ti set b2='30R0W256SGTR1IGGLT5A0TJUZX' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - f0 int not null, - v0 varchar(256) not null, - b0 longblob not null, - b1 mediumblob not null, - b2 blob not null -) engine=tokudb; -insert into tt values (1,0,'','','',''); -insert into tt values (2,0,'','','',''); -insert into tt values (3,0,'','','',''); -insert into tt values (4,0,'','','',''); -insert into tt values (5,0,'','','',''); -insert into tt values (6,0,'','','',''); -insert into tt values (7,0,'','','',''); -insert into tt values (8,0,'','','',''); -insert into tt values (9,0,'','','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='M91AP06W697DLGNYDQ' where id=1; -update noar ti set v0='M91AP06W697DLGNYDQ' where id=1; -update noar tt set b0='WFDAHZMNCU43Q' where id=1; -update noar ti set b0='WFDAHZMNCU43Q' where id=1; -update noar tt set v0='VP34CV5WT66' where id=1; -update noar ti set v0='VP34CV5WT66' where id=1; -update noar tt set b1='MH46QOYX43FGR1G48H1MQOD' where id=1; -update noar ti set b1='MH46QOYX43FGR1G48H1MQOD' where id=1; -update noar tt set v0='423TAD7T91Y1E94VGC26CVV4W24SM1PT' where id=1; -update noar ti set v0='423TAD7T91Y1E94VGC26CVV4W24SM1PT' where id=1; -update noar tt set b2='N3Q043CNTKV20LNH6X5T' where id=1; -update noar ti set b2='N3Q043CNTKV20LNH6X5T' where id=1; -update noar tt set v0='ZBWF131G0KDB' where id=2; -update noar ti set v0='ZBWF131G0KDB' where id=2; -update noar tt set b0='X84' where id=2; -update noar ti set b0='X84' where id=2; -update noar tt set v0='8ZR4AOD' where id=2; -update noar ti set v0='8ZR4AOD' where id=2; -update noar tt set b1='VGRTFJ48FI0HX8XFKD2CRWS' where id=2; -update noar ti set b1='VGRTFJ48FI0HX8XFKD2CRWS' where id=2; -update noar tt set v0='63JYKWV46HV08HJIV5M1' where id=2; -update noar ti set v0='63JYKWV46HV08HJIV5M1' where id=2; -update noar tt set b2='YUJDIQBKG5QLYE6ZA6AEF6PCDH76K9' where id=2; -update noar ti set b2='YUJDIQBKG5QLYE6ZA6AEF6PCDH76K9' where id=2; -update noar tt set v0='4GJSF' where id=3; -update noar ti set v0='4GJSF' where id=3; -update noar tt set b0='TKTO4JCXSZEKM28WLLA03U9YNEX11LPU' where id=3; -update noar ti set b0='TKTO4JCXSZEKM28WLLA03U9YNEX11LPU' where id=3; -update noar tt set v0='X179U' where id=3; -update noar ti set v0='X179U' where id=3; -update noar tt set b1='YE8QLET' where id=3; -update noar ti set b1='YE8QLET' where id=3; -update noar tt set v0='QXX2EDQ72UR41OFT4RKL' where id=3; -update noar ti set v0='QXX2EDQ72UR41OFT4RKL' where id=3; -update noar tt set b2='9IN4TGJI0M3C28T6K090Z3GJ22M7' where id=3; -update noar ti set b2='9IN4TGJI0M3C28T6K090Z3GJ22M7' where id=3; -update noar tt set v0='R1LR0BU781VQH9YNDR9TC' where id=4; -update noar ti set v0='R1LR0BU781VQH9YNDR9TC' where id=4; -update noar tt set b0='CF20MW0PJEDADAAWX3OVDKLW4OM1EXA8' where id=4; -update noar ti set b0='CF20MW0PJEDADAAWX3OVDKLW4OM1EXA8' where id=4; -update noar tt set v0='Q1QSWRVN' where id=4; -update noar ti set v0='Q1QSWRVN' where id=4; -update noar tt set b1='4ZQPNIXREP3W0ROQ8TMJD8S' where id=4; -update noar ti set b1='4ZQPNIXREP3W0ROQ8TMJD8S' where id=4; -update noar tt set v0='FLHMN92346E' where id=4; -update noar ti set v0='FLHMN92346E' where id=4; -update noar tt set b2='2' where id=4; -update noar ti set b2='2' where id=4; -update noar tt set v0='4BHTTJHCCTV0Q9SH' where id=5; -update noar ti set v0='4BHTTJHCCTV0Q9SH' where id=5; -update noar tt set b0='L2XSM3SNNFZYJ8TWTQH90SEKWJ4WEV' where id=5; -update noar ti set b0='L2XSM3SNNFZYJ8TWTQH90SEKWJ4WEV' where id=5; -update noar tt set v0='4' where id=5; -update noar ti set v0='4' where id=5; -update noar tt set b1='3BIP35NZ091ZGJFHKEZR6AFE' where id=5; -update noar ti set b1='3BIP35NZ091ZGJFHKEZR6AFE' where id=5; -update noar tt set v0='Z0JOVB8YQXYUZCG3' where id=5; -update noar ti set v0='Z0JOVB8YQXYUZCG3' where id=5; -update noar tt set b2='R' where id=5; -update noar ti set b2='R' where id=5; -update noar tt set v0='LRPLON0QPLAXN72LVEIPYV' where id=6; -update noar ti set v0='LRPLON0QPLAXN72LVEIPYV' where id=6; -update noar tt set b0='DHYIKBWWKME2L0SO1HIRT27E0RSEE' where id=6; -update noar ti set b0='DHYIKBWWKME2L0SO1HIRT27E0RSEE' where id=6; -update noar tt set v0='ZBK11UTXJL83E7J0YCWT9B' where id=6; -update noar ti set v0='ZBK11UTXJL83E7J0YCWT9B' where id=6; -update noar tt set b1='BM48FL2S0160X21SQU0M7V0GN8R' where id=6; -update noar ti set b1='BM48FL2S0160X21SQU0M7V0GN8R' where id=6; -update noar tt set v0='R1JQ8EH3P' where id=6; -update noar ti set v0='R1JQ8EH3P' where id=6; -update noar tt set b2='SIIZOUOLMW4' where id=6; -update noar ti set b2='SIIZOUOLMW4' where id=6; -update noar tt set v0='2WOLIFVUIXE10YIKPS8ASZ1URZ5TN1VH' where id=7; -update noar ti set v0='2WOLIFVUIXE10YIKPS8ASZ1URZ5TN1VH' where id=7; -update noar tt set b0='3HH5ZYF' where id=7; -update noar ti set b0='3HH5ZYF' where id=7; -update noar tt set v0='Z9HKX7Q93ZBUWGGG9OJ7' where id=7; -update noar ti set v0='Z9HKX7Q93ZBUWGGG9OJ7' where id=7; -update noar tt set b1='AA1L4NVNZ7PIK431FYKKEIN9PDX' where id=7; -update noar ti set b1='AA1L4NVNZ7PIK431FYKKEIN9PDX' where id=7; -update noar tt set v0='Z31UX09LP8YAORHPKBW5Z14NSZBKXYZ' where id=7; -update noar ti set v0='Z31UX09LP8YAORHPKBW5Z14NSZBKXYZ' where id=7; -update noar tt set b2='6J73A7' where id=7; -update noar ti set b2='6J73A7' where id=7; -update noar tt set v0='XCRDMJGUDH' where id=8; -update noar ti set v0='XCRDMJGUDH' where id=8; -update noar tt set b0='MYU59R5' where id=8; -update noar ti set b0='MYU59R5' where id=8; -update noar tt set v0='2RZ4BZT43FNDPANPPIB4IOE' where id=8; -update noar ti set v0='2RZ4BZT43FNDPANPPIB4IOE' where id=8; -update noar tt set b1='S3XOCZ' where id=8; -update noar ti set b1='S3XOCZ' where id=8; -update noar tt set v0='R6SZLL8Y79M43F6C8WO0VH0DN' where id=8; -update noar ti set v0='R6SZLL8Y79M43F6C8WO0VH0DN' where id=8; -update noar tt set b2='KXFZN4SHRSY2MXZNBPU13RHD' where id=8; -update noar ti set b2='KXFZN4SHRSY2MXZNBPU13RHD' where id=8; -update noar tt set v0='XWRZBI03EZ2ZN3HT' where id=9; -update noar ti set v0='XWRZBI03EZ2ZN3HT' where id=9; -update noar tt set b0='DE360E3PXUJ6' where id=9; -update noar ti set b0='DE360E3PXUJ6' where id=9; -update noar tt set v0='YZE60BFK' where id=9; -update noar ti set v0='YZE60BFK' where id=9; -update noar tt set b1='D5S2S4I9LEN' where id=9; -update noar ti set b1='D5S2S4I9LEN' where id=9; -update noar tt set v0='30C1' where id=9; -update noar ti set v0='30C1' where id=9; -update noar tt set b2='B749A33E4X57LCY7I45' where id=9; -update noar ti set b2='B749A33E4X57LCY7I45' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - f0 int null, - v0 varchar(32) null, - b0 longblob null, - b1 mediumblob null, - b2 mediumblob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='00FB6PZZRH8VF6MKRIPFZQ6PRP6J' where id=1; -update noar ti set v0='00FB6PZZRH8VF6MKRIPFZQ6PRP6J' where id=1; -update noar tt set b0='8R2TBRF3YEE7LGFGR3CICN6A' where id=1; -update noar ti set b0='8R2TBRF3YEE7LGFGR3CICN6A' where id=1; -update noar tt set v0='AAFIWC9KRCEIMPJE6DXCL01' where id=1; -update noar ti set v0='AAFIWC9KRCEIMPJE6DXCL01' where id=1; -update noar tt set b1='BC7I85KLFN0H6MZHP1GDVELNVR' where id=1; -update noar ti set b1='BC7I85KLFN0H6MZHP1GDVELNVR' where id=1; -update noar tt set v0='IXUGHC' where id=1; -update noar ti set v0='IXUGHC' where id=1; -update noar tt set b2='G5AQZZ395G51RNMY7Y5E8D3U' where id=1; -update noar ti set b2='G5AQZZ395G51RNMY7Y5E8D3U' where id=1; -update noar tt set v0='09IH2LSETI1RUWLPR70NJ6HQ' where id=2; -update noar ti set v0='09IH2LSETI1RUWLPR70NJ6HQ' where id=2; -update noar tt set b0='TM9LRQCSIN5N6Q4KUZRB1' where id=2; -update noar ti set b0='TM9LRQCSIN5N6Q4KUZRB1' where id=2; -update noar tt set v0='FT' where id=2; -update noar ti set v0='FT' where id=2; -update noar tt set b1='EJFPN8' where id=2; -update noar ti set b1='EJFPN8' where id=2; -update noar tt set v0='2A0' where id=2; -update noar ti set v0='2A0' where id=2; -update noar tt set b2='GJL709' where id=2; -update noar ti set b2='GJL709' where id=2; -update noar tt set v0='OLX2PSVBXWS0C71JOZJB' where id=3; -update noar ti set v0='OLX2PSVBXWS0C71JOZJB' where id=3; -update noar tt set b0='EMV3BIN2SP' where id=3; -update noar ti set b0='EMV3BIN2SP' where id=3; -update noar tt set v0='UIRC5JL' where id=3; -update noar ti set v0='UIRC5JL' where id=3; -update noar tt set b1='195I3WA6NYCYW1YASG0ZJ700TNONWEUP' where id=3; -update noar ti set b1='195I3WA6NYCYW1YASG0ZJ700TNONWEUP' where id=3; -update noar tt set v0='P9WF2VRNU6TNSF8O6V8H25PITG3CY' where id=3; -update noar ti set v0='P9WF2VRNU6TNSF8O6V8H25PITG3CY' where id=3; -update noar tt set b2='IM1XYJCMAP920EO2LGFQBFCWY3G' where id=3; -update noar ti set b2='IM1XYJCMAP920EO2LGFQBFCWY3G' where id=3; -update noar tt set v0='SBKUH35FAH48UB0YP4EW' where id=4; -update noar ti set v0='SBKUH35FAH48UB0YP4EW' where id=4; -update noar tt set b0='FTC1BVAZQTPWTQ0' where id=4; -update noar ti set b0='FTC1BVAZQTPWTQ0' where id=4; -update noar tt set v0='S3ZX5KB77454KVR06GAYDTS' where id=4; -update noar ti set v0='S3ZX5KB77454KVR06GAYDTS' where id=4; -update noar tt set b1='XL9L5PG9H541R76HFPR' where id=4; -update noar ti set b1='XL9L5PG9H541R76HFPR' where id=4; -update noar tt set v0='LR7MFNWGUI4YVT' where id=4; -update noar ti set v0='LR7MFNWGUI4YVT' where id=4; -update noar tt set b2='96FVYVM9OKZM0' where id=4; -update noar ti set b2='96FVYVM9OKZM0' where id=4; -update noar tt set v0='YL5XWTGFQ4HG95KNG7' where id=5; -update noar ti set v0='YL5XWTGFQ4HG95KNG7' where id=5; -update noar tt set b0='F7RU567MOYILMM0J83GNTC' where id=5; -update noar ti set b0='F7RU567MOYILMM0J83GNTC' where id=5; -update noar tt set v0='M6FX' where id=5; -update noar ti set v0='M6FX' where id=5; -update noar tt set b1='XB0YJTA' where id=5; -update noar ti set b1='XB0YJTA' where id=5; -update noar tt set v0='MN1H1FFV6HQD0LH38831KFSL3VLM' where id=5; -update noar ti set v0='MN1H1FFV6HQD0LH38831KFSL3VLM' where id=5; -update noar tt set b2='CQQ0XD27ASX0OTQ05DO2HGMWHJN2JB' where id=5; -update noar ti set b2='CQQ0XD27ASX0OTQ05DO2HGMWHJN2JB' where id=5; -update noar tt set v0='WJB85SDF7HGXOW4' where id=6; -update noar ti set v0='WJB85SDF7HGXOW4' where id=6; -update noar tt set b0='OWLGVRB2MZVP1U148CP' where id=6; -update noar ti set b0='OWLGVRB2MZVP1U148CP' where id=6; -update noar tt set v0='QZ78KXHAUUGSPXV' where id=6; -update noar ti set v0='QZ78KXHAUUGSPXV' where id=6; -update noar tt set b1='UC0KTMXW5RJF105646Q' where id=6; -update noar ti set b1='UC0KTMXW5RJF105646Q' where id=6; -update noar tt set v0='HGPUOYEL17YEHOJ5PWLKBLKO' where id=6; -update noar ti set v0='HGPUOYEL17YEHOJ5PWLKBLKO' where id=6; -update noar tt set b2='ZZ8QIL06NJW' where id=6; -update noar ti set b2='ZZ8QIL06NJW' where id=6; -update noar tt set v0='HHE4BLRWYL8MW312' where id=7; -update noar ti set v0='HHE4BLRWYL8MW312' where id=7; -update noar tt set b0='6BPQ7F6Y4T03S8U' where id=7; -update noar ti set b0='6BPQ7F6Y4T03S8U' where id=7; -update noar tt set v0='3B' where id=7; -update noar ti set v0='3B' where id=7; -update noar tt set b1='332B9K18TRAW7G2T' where id=7; -update noar ti set b1='332B9K18TRAW7G2T' where id=7; -update noar tt set v0='6S' where id=7; -update noar ti set v0='6S' where id=7; -update noar tt set b2='PGWRUCBGDWJBPQZNC828N4OQN' where id=7; -update noar ti set b2='PGWRUCBGDWJBPQZNC828N4OQN' where id=7; -update noar tt set v0='104IA' where id=8; -update noar ti set v0='104IA' where id=8; -update noar tt set b0='RZCE88WILA8XAQQ6B50WM' where id=8; -update noar ti set b0='RZCE88WILA8XAQQ6B50WM' where id=8; -update noar tt set v0='X8LI' where id=8; -update noar ti set v0='X8LI' where id=8; -update noar tt set b1='8NST28S5DJRV75TRI09M1MU2HDHNI4G' where id=8; -update noar ti set b1='8NST28S5DJRV75TRI09M1MU2HDHNI4G' where id=8; -update noar tt set v0='3' where id=8; -update noar ti set v0='3' where id=8; -update noar tt set b2='OLK72EDBVAK07WA5' where id=8; -update noar ti set b2='OLK72EDBVAK07WA5' where id=8; -update noar tt set v0='GAQ1DY7XOX8O' where id=9; -update noar ti set v0='GAQ1DY7XOX8O' where id=9; -update noar tt set b0='XH75R7N5W1QDBYB5LO9FCRJLF04R' where id=9; -update noar ti set b0='XH75R7N5W1QDBYB5LO9FCRJLF04R' where id=9; -update noar tt set v0='KSL0EQIBOIM5' where id=9; -update noar ti set v0='KSL0EQIBOIM5' where id=9; -update noar tt set b1='8JHI51DRO8DU165WZV61SJ8E5ANSJG' where id=9; -update noar ti set b1='8JHI51DRO8DU165WZV61SJ8E5ANSJG' where id=9; -update noar tt set v0='1WRL7K7T' where id=9; -update noar ti set v0='1WRL7K7T' where id=9; -update noar tt set b2='ZAQ1A4658AI' where id=9; -update noar ti set b2='ZAQ1A4658AI' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - f0 int null, - v0 varchar(256) null, - b0 longblob null, - b1 mediumblob null, - b2 mediumblob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='H7PWUSSI7CLDO' where id=1; -update noar ti set v0='H7PWUSSI7CLDO' where id=1; -update noar tt set b0='QHV9BDB8NJ8H8VL7Q8770ZPHRPDT6' where id=1; -update noar ti set b0='QHV9BDB8NJ8H8VL7Q8770ZPHRPDT6' where id=1; -update noar tt set v0='JD8R9J8GB08J3HIQPZ0C' where id=1; -update noar ti set v0='JD8R9J8GB08J3HIQPZ0C' where id=1; -update noar tt set b1='S9FGA3606KWD03IRGMPT86YR5OK3VV' where id=1; -update noar ti set b1='S9FGA3606KWD03IRGMPT86YR5OK3VV' where id=1; -update noar tt set v0='0Z8SM37F8Z9G2ZF774BMPHHV0C31RD' where id=1; -update noar ti set v0='0Z8SM37F8Z9G2ZF774BMPHHV0C31RD' where id=1; -update noar tt set b2='KTW941MFT4HCM' where id=1; -update noar ti set b2='KTW941MFT4HCM' where id=1; -update noar tt set v0='KWTBDNBNO9PL7M7NY9P' where id=2; -update noar ti set v0='KWTBDNBNO9PL7M7NY9P' where id=2; -update noar tt set b0='BZT64' where id=2; -update noar ti set b0='BZT64' where id=2; -update noar tt set v0='F30VO50IIHERLQHBEZRFMIA3AKH4MRHU' where id=2; -update noar ti set v0='F30VO50IIHERLQHBEZRFMIA3AKH4MRHU' where id=2; -update noar tt set b1='P7G10ZMN6928HUKBP0T' where id=2; -update noar ti set b1='P7G10ZMN6928HUKBP0T' where id=2; -update noar tt set v0='2I3ZAJIFLHA67IE' where id=2; -update noar ti set v0='2I3ZAJIFLHA67IE' where id=2; -update noar tt set b2='4L6PX54NP1VIJ27KYYSXUPYF91LQHC' where id=2; -update noar ti set b2='4L6PX54NP1VIJ27KYYSXUPYF91LQHC' where id=2; -update noar tt set v0='SL9WN43MI9N' where id=3; -update noar ti set v0='SL9WN43MI9N' where id=3; -update noar tt set b0='OZDH5W7BZRIKXVGLERSD' where id=3; -update noar ti set b0='OZDH5W7BZRIKXVGLERSD' where id=3; -update noar tt set v0='8IABTKDP3O35GY5S7MNV' where id=3; -update noar ti set v0='8IABTKDP3O35GY5S7MNV' where id=3; -update noar tt set b1='T8W' where id=3; -update noar ti set b1='T8W' where id=3; -update noar tt set v0='WBV6LIQRKUO1HWZOG0QOI0Z' where id=3; -update noar ti set v0='WBV6LIQRKUO1HWZOG0QOI0Z' where id=3; -update noar tt set b2='YYWKKQTU20ZS15MO6Q63L0D' where id=3; -update noar ti set b2='YYWKKQTU20ZS15MO6Q63L0D' where id=3; -update noar tt set v0='PRDLCXAU4J6UHU90EO1HVWM1NMITR' where id=4; -update noar ti set v0='PRDLCXAU4J6UHU90EO1HVWM1NMITR' where id=4; -update noar tt set b0='7W' where id=4; -update noar ti set b0='7W' where id=4; -update noar tt set v0='AJ17PND6CVNTYB28TAJTHHG1PE' where id=4; -update noar ti set v0='AJ17PND6CVNTYB28TAJTHHG1PE' where id=4; -update noar tt set b1='KXZSFUE5AL099UI0TZXXUO10J' where id=4; -update noar ti set b1='KXZSFUE5AL099UI0TZXXUO10J' where id=4; -update noar tt set v0='X' where id=4; -update noar ti set v0='X' where id=4; -update noar tt set b2='Q3Y9QBJGCE6FAL' where id=4; -update noar ti set b2='Q3Y9QBJGCE6FAL' where id=4; -update noar tt set v0='09H70FKTTM4D34X3TGNQID2' where id=5; -update noar ti set v0='09H70FKTTM4D34X3TGNQID2' where id=5; -update noar tt set b0='TX6A4KP2P7JELQNBMXGN04PDNP' where id=5; -update noar ti set b0='TX6A4KP2P7JELQNBMXGN04PDNP' where id=5; -update noar tt set v0='ZLT57ZRR50CTPLPWEF3DZK' where id=5; -update noar ti set v0='ZLT57ZRR50CTPLPWEF3DZK' where id=5; -update noar tt set b1='NZ09BRYPUX' where id=5; -update noar ti set b1='NZ09BRYPUX' where id=5; -update noar tt set v0='V1EHU2C7QDT2N3L4CHDKA' where id=5; -update noar ti set v0='V1EHU2C7QDT2N3L4CHDKA' where id=5; -update noar tt set b2='638DN7UG5FZ608O7SXHCNC29GJA5PPPC' where id=5; -update noar ti set b2='638DN7UG5FZ608O7SXHCNC29GJA5PPPC' where id=5; -update noar tt set v0='PUTUB8X4BT1T09YL6YQKWENNTB3PX4' where id=6; -update noar ti set v0='PUTUB8X4BT1T09YL6YQKWENNTB3PX4' where id=6; -update noar tt set b0='D58FU7Z9Q' where id=6; -update noar ti set b0='D58FU7Z9Q' where id=6; -update noar tt set v0='ZE03V1UICLY9' where id=6; -update noar ti set v0='ZE03V1UICLY9' where id=6; -update noar tt set b1='G5QERH5OM769V' where id=6; -update noar ti set b1='G5QERH5OM769V' where id=6; -update noar tt set v0='F2N5KW2' where id=6; -update noar ti set v0='F2N5KW2' where id=6; -update noar tt set b2='0XP4E3' where id=6; -update noar ti set b2='0XP4E3' where id=6; -update noar tt set v0='FDEBKIWKZ92BH7939WG4JG8D' where id=7; -update noar ti set v0='FDEBKIWKZ92BH7939WG4JG8D' where id=7; -update noar tt set b0='PNJ4QYU' where id=7; -update noar ti set b0='PNJ4QYU' where id=7; -update noar tt set v0='58B485L2JEFXJASSJ79L4P691EPUO' where id=7; -update noar ti set v0='58B485L2JEFXJASSJ79L4P691EPUO' where id=7; -update noar tt set b1='IWBJ43FLI5L284AC88M8FW' where id=7; -update noar ti set b1='IWBJ43FLI5L284AC88M8FW' where id=7; -update noar tt set v0='D6NG6SSKBMFXWP9XPFMX' where id=7; -update noar ti set v0='D6NG6SSKBMFXWP9XPFMX' where id=7; -update noar tt set b2='92PBWEYRMTIXS25K' where id=7; -update noar ti set b2='92PBWEYRMTIXS25K' where id=7; -update noar tt set v0='RFX3QIFOD7A4H8PYIPZ5AM' where id=8; -update noar ti set v0='RFX3QIFOD7A4H8PYIPZ5AM' where id=8; -update noar tt set b0='HYL1WXSL7VBJ8C' where id=8; -update noar ti set b0='HYL1WXSL7VBJ8C' where id=8; -update noar tt set v0='5HBD3J0DYNU0HQC7OTC6E5GD6OS6' where id=8; -update noar ti set v0='5HBD3J0DYNU0HQC7OTC6E5GD6OS6' where id=8; -update noar tt set b1='I93RGDK2S2IBYSJX683M8XI4TM6F' where id=8; -update noar ti set b1='I93RGDK2S2IBYSJX683M8XI4TM6F' where id=8; -update noar tt set v0='86MYBJHMKEIVUYAUHTX5UJC3F' where id=8; -update noar ti set v0='86MYBJHMKEIVUYAUHTX5UJC3F' where id=8; -update noar tt set b2='ACBVT2NWF5QL' where id=8; -update noar ti set b2='ACBVT2NWF5QL' where id=8; -update noar tt set v0='GVXBOH50YB9CZQZSHPBB41LJL7XFPRSZ' where id=9; -update noar ti set v0='GVXBOH50YB9CZQZSHPBB41LJL7XFPRSZ' where id=9; -update noar tt set b0='82YAEK23VOIVH2B' where id=9; -update noar ti set b0='82YAEK23VOIVH2B' where id=9; -update noar tt set v0='AYZ1' where id=9; -update noar ti set v0='AYZ1' where id=9; -update noar tt set b1='J6TWWGAU7Y3SB1ZC1UPAHBU' where id=9; -update noar ti set b1='J6TWWGAU7Y3SB1ZC1UPAHBU' where id=9; -update noar tt set v0='2G1KBSPXPEDJTI9L' where id=9; -update noar ti set v0='2G1KBSPXPEDJTI9L' where id=9; -update noar tt set b2='D25OPT0JBWKE6MZGX' where id=9; -update noar ti set b2='D25OPT0JBWKE6MZGX' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - f0 int not null, - v0 varchar(32) not null, - b0 longblob not null, - b1 mediumblob not null, - b2 mediumblob not null -) engine=tokudb; -insert into tt values (1,0,'','','',''); -insert into tt values (2,0,'','','',''); -insert into tt values (3,0,'','','',''); -insert into tt values (4,0,'','','',''); -insert into tt values (5,0,'','','',''); -insert into tt values (6,0,'','','',''); -insert into tt values (7,0,'','','',''); -insert into tt values (8,0,'','','',''); -insert into tt values (9,0,'','','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='19WRBYZHOSNVJZTEW4BX5' where id=1; -update noar ti set v0='19WRBYZHOSNVJZTEW4BX5' where id=1; -update noar tt set b0='5NLLUTTYGXEJG' where id=1; -update noar ti set b0='5NLLUTTYGXEJG' where id=1; -update noar tt set v0='UAZKSN883G60G' where id=1; -update noar ti set v0='UAZKSN883G60G' where id=1; -update noar tt set b1='8ZUGO0XKJZFEUJ2ISHVYO' where id=1; -update noar ti set b1='8ZUGO0XKJZFEUJ2ISHVYO' where id=1; -update noar tt set v0='V6AVPVY2' where id=1; -update noar ti set v0='V6AVPVY2' where id=1; -update noar tt set b2='M83SQO5F7FTUIOF5VA7QXFHFHXP0582G' where id=1; -update noar ti set b2='M83SQO5F7FTUIOF5VA7QXFHFHXP0582G' where id=1; -update noar tt set v0='A55' where id=2; -update noar ti set v0='A55' where id=2; -update noar tt set b0='8BIXZ4SLL8Y3BJ' where id=2; -update noar ti set b0='8BIXZ4SLL8Y3BJ' where id=2; -update noar tt set v0='9E5T5ZHNFPXYJA0WMZQ' where id=2; -update noar ti set v0='9E5T5ZHNFPXYJA0WMZQ' where id=2; -update noar tt set b1='JSUL91' where id=2; -update noar ti set b1='JSUL91' where id=2; -update noar tt set v0='LWLQWLO7TJ91' where id=2; -update noar ti set v0='LWLQWLO7TJ91' where id=2; -update noar tt set b2='3BV4PS98UHJN7A4TI3TW7V92593' where id=2; -update noar ti set b2='3BV4PS98UHJN7A4TI3TW7V92593' where id=2; -update noar tt set v0='Y2HLYCMU5KPDMKR2RQW1KKKL9QKRUBE' where id=3; -update noar ti set v0='Y2HLYCMU5KPDMKR2RQW1KKKL9QKRUBE' where id=3; -update noar tt set b0='U3AWTAA7CY5X3RWK2NJNRVASNTZDC3' where id=3; -update noar ti set b0='U3AWTAA7CY5X3RWK2NJNRVASNTZDC3' where id=3; -update noar tt set v0='159GG0L3U8K8WOVX5KS8' where id=3; -update noar ti set v0='159GG0L3U8K8WOVX5KS8' where id=3; -update noar tt set b1='5JJN0WB5W' where id=3; -update noar ti set b1='5JJN0WB5W' where id=3; -update noar tt set v0='TG4XTMQWTF113PMOQXARUP6CNN898D' where id=3; -update noar ti set v0='TG4XTMQWTF113PMOQXARUP6CNN898D' where id=3; -update noar tt set b2='RDIKUPFLJMXEIO6V3LANGO' where id=3; -update noar ti set b2='RDIKUPFLJMXEIO6V3LANGO' where id=3; -update noar tt set v0='GAQCGTP18GHBEAZ9JHNDB2H12EMBA' where id=4; -update noar ti set v0='GAQCGTP18GHBEAZ9JHNDB2H12EMBA' where id=4; -update noar tt set b0='SJ8DBKD97A0NPJ9UFCZQ5XSPDQOHA' where id=4; -update noar ti set b0='SJ8DBKD97A0NPJ9UFCZQ5XSPDQOHA' where id=4; -update noar tt set v0='HNJ4DMWVAREEK8RM1R8RBQ2UC0USLEL' where id=4; -update noar ti set v0='HNJ4DMWVAREEK8RM1R8RBQ2UC0USLEL' where id=4; -update noar tt set b1='VRD5TZ263YVJE741QUHVQH15V0M9F' where id=4; -update noar ti set b1='VRD5TZ263YVJE741QUHVQH15V0M9F' where id=4; -update noar tt set v0='J3QGZUIH4FNEETIOXN' where id=4; -update noar ti set v0='J3QGZUIH4FNEETIOXN' where id=4; -update noar tt set b2='YA9A8ZG0I2EMDRQPZJJ5G9UQUQI' where id=4; -update noar ti set b2='YA9A8ZG0I2EMDRQPZJJ5G9UQUQI' where id=4; -update noar tt set v0='FJS7OTAA05IFMCA8W4TFQSOPCK51JL' where id=5; -update noar ti set v0='FJS7OTAA05IFMCA8W4TFQSOPCK51JL' where id=5; -update noar tt set b0='E1JVFVFNKMLM31ES2TQ8P' where id=5; -update noar ti set b0='E1JVFVFNKMLM31ES2TQ8P' where id=5; -update noar tt set v0='VE028ZUFMNF2E' where id=5; -update noar ti set v0='VE028ZUFMNF2E' where id=5; -update noar tt set b1='Y' where id=5; -update noar ti set b1='Y' where id=5; -update noar tt set v0='LN2IYOLXWKDU864JUK8UB5' where id=5; -update noar ti set v0='LN2IYOLXWKDU864JUK8UB5' where id=5; -update noar tt set b2='VIM983X3O4P2HHKEPCSJ7T0D4EUT' where id=5; -update noar ti set b2='VIM983X3O4P2HHKEPCSJ7T0D4EUT' where id=5; -update noar tt set v0='G0WVNZ' where id=6; -update noar ti set v0='G0WVNZ' where id=6; -update noar tt set b0='X3YSYRK7GA' where id=6; -update noar ti set b0='X3YSYRK7GA' where id=6; -update noar tt set v0='CWH0XWJOUIA9813EIVCJ22N' where id=6; -update noar ti set v0='CWH0XWJOUIA9813EIVCJ22N' where id=6; -update noar tt set b1='BHQ41RGENUD' where id=6; -update noar ti set b1='BHQ41RGENUD' where id=6; -update noar tt set v0='F1UM7L39EOAO6N847IK7QBNA84QCQ' where id=6; -update noar ti set v0='F1UM7L39EOAO6N847IK7QBNA84QCQ' where id=6; -update noar tt set b2='RORZW0DXLOYT5K18H6C7D9Z1WBK0G' where id=6; -update noar ti set b2='RORZW0DXLOYT5K18H6C7D9Z1WBK0G' where id=6; -update noar tt set v0='8H587RNNMIR2FIE7NH01MP7Y2Q1' where id=7; -update noar ti set v0='8H587RNNMIR2FIE7NH01MP7Y2Q1' where id=7; -update noar tt set b0='RFMGAYF089WSL9EA7FLILK85J81UV' where id=7; -update noar ti set b0='RFMGAYF089WSL9EA7FLILK85J81UV' where id=7; -update noar tt set v0='VJSY6JER0HHFP4MUM9LNBAY' where id=7; -update noar ti set v0='VJSY6JER0HHFP4MUM9LNBAY' where id=7; -update noar tt set b1='H63NZISDDG' where id=7; -update noar ti set b1='H63NZISDDG' where id=7; -update noar tt set v0='STR0C39QZ1GU9K5YZLBRL3QTV5PQX3' where id=7; -update noar ti set v0='STR0C39QZ1GU9K5YZLBRL3QTV5PQX3' where id=7; -update noar tt set b2='X8GU0O3JSG0Z3ZNPZ8LPM9KG8ZUUO' where id=7; -update noar ti set b2='X8GU0O3JSG0Z3ZNPZ8LPM9KG8ZUUO' where id=7; -update noar tt set v0='C5UX96BGJAGGFCBV2LLGD6GPW1' where id=8; -update noar ti set v0='C5UX96BGJAGGFCBV2LLGD6GPW1' where id=8; -update noar tt set b0='6PCSJXA2BV0IX6C4Q83167RZAG3U8' where id=8; -update noar ti set b0='6PCSJXA2BV0IX6C4Q83167RZAG3U8' where id=8; -update noar tt set v0='ZAC159HQCC26J3ZEL3LXQ6GF8F' where id=8; -update noar ti set v0='ZAC159HQCC26J3ZEL3LXQ6GF8F' where id=8; -update noar tt set b1='Q2B8HJL07A8ZI3HF0S15S' where id=8; -update noar ti set b1='Q2B8HJL07A8ZI3HF0S15S' where id=8; -update noar tt set v0='C3RAXUVXJHKZAV458GYVJ' where id=8; -update noar ti set v0='C3RAXUVXJHKZAV458GYVJ' where id=8; -update noar tt set b2='FB99J0JUK' where id=8; -update noar ti set b2='FB99J0JUK' where id=8; -update noar tt set v0='RLFAPPNF' where id=9; -update noar ti set v0='RLFAPPNF' where id=9; -update noar tt set b0='NEW3N1VI5LB08NYG38889DBXBC2NS' where id=9; -update noar ti set b0='NEW3N1VI5LB08NYG38889DBXBC2NS' where id=9; -update noar tt set v0='DELZ1' where id=9; -update noar ti set v0='DELZ1' where id=9; -update noar tt set b1='S' where id=9; -update noar ti set b1='S' where id=9; -update noar tt set v0='JU2' where id=9; -update noar ti set v0='JU2' where id=9; -update noar tt set b2='F139IV56DMN20MZG9DR2D' where id=9; -update noar ti set b2='F139IV56DMN20MZG9DR2D' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - f0 int not null, - v0 varchar(256) not null, - b0 longblob not null, - b1 mediumblob not null, - b2 mediumblob not null -) engine=tokudb; -insert into tt values (1,0,'','','',''); -insert into tt values (2,0,'','','',''); -insert into tt values (3,0,'','','',''); -insert into tt values (4,0,'','','',''); -insert into tt values (5,0,'','','',''); -insert into tt values (6,0,'','','',''); -insert into tt values (7,0,'','','',''); -insert into tt values (8,0,'','','',''); -insert into tt values (9,0,'','','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='SV0I' where id=1; -update noar ti set v0='SV0I' where id=1; -update noar tt set b0='KYMCXW37ZZYG9G1WF5ATXZKKKP' where id=1; -update noar ti set b0='KYMCXW37ZZYG9G1WF5ATXZKKKP' where id=1; -update noar tt set v0='MDKL6V' where id=1; -update noar ti set v0='MDKL6V' where id=1; -update noar tt set b1='MD4I9' where id=1; -update noar ti set b1='MD4I9' where id=1; -update noar tt set v0='YRMD9J0S33QTI9IIU0TI' where id=1; -update noar ti set v0='YRMD9J0S33QTI9IIU0TI' where id=1; -update noar tt set b2='K6' where id=1; -update noar ti set b2='K6' where id=1; -update noar tt set v0='6YXAOZDH0MGSQQK7ITJB' where id=2; -update noar ti set v0='6YXAOZDH0MGSQQK7ITJB' where id=2; -update noar tt set b0='KX4604VMO2H8XLHK9991OA' where id=2; -update noar ti set b0='KX4604VMO2H8XLHK9991OA' where id=2; -update noar tt set v0='RWDD74PFGPZU929A69' where id=2; -update noar ti set v0='RWDD74PFGPZU929A69' where id=2; -update noar tt set b1='VEZYHQKCXB79AUNRTN9YHY5P4' where id=2; -update noar ti set b1='VEZYHQKCXB79AUNRTN9YHY5P4' where id=2; -update noar tt set v0='VCCHNOCTD0KD9LNGWARX61ZP37MFEP' where id=2; -update noar ti set v0='VCCHNOCTD0KD9LNGWARX61ZP37MFEP' where id=2; -update noar tt set b2='VC6I970OBZDVQ8FNMS8Q210WSQ' where id=2; -update noar ti set b2='VC6I970OBZDVQ8FNMS8Q210WSQ' where id=2; -update noar tt set v0='NWD' where id=3; -update noar ti set v0='NWD' where id=3; -update noar tt set b0='0VHIDTC5JFAJB9BLX5QRWM7' where id=3; -update noar ti set b0='0VHIDTC5JFAJB9BLX5QRWM7' where id=3; -update noar tt set v0='HITJS54ZP1IHZ68T5AWZV9YPGS6' where id=3; -update noar ti set v0='HITJS54ZP1IHZ68T5AWZV9YPGS6' where id=3; -update noar tt set b1='N9QHQ14Y7' where id=3; -update noar ti set b1='N9QHQ14Y7' where id=3; -update noar tt set v0='E3ZCYHVHJUMRH557COJ9AW66WZL' where id=3; -update noar ti set v0='E3ZCYHVHJUMRH557COJ9AW66WZL' where id=3; -update noar tt set b2='44OU4CUBY8Z8GW7ZEFYYJ' where id=3; -update noar ti set b2='44OU4CUBY8Z8GW7ZEFYYJ' where id=3; -update noar tt set v0='UIA27FV2PWKWD1' where id=4; -update noar ti set v0='UIA27FV2PWKWD1' where id=4; -update noar tt set b0='8QE' where id=4; -update noar ti set b0='8QE' where id=4; -update noar tt set v0='Q' where id=4; -update noar ti set v0='Q' where id=4; -update noar tt set b1='Q2KMULE3' where id=4; -update noar ti set b1='Q2KMULE3' where id=4; -update noar tt set v0='YQ8OSCP9LM9W77YT6LBNZHC' where id=4; -update noar ti set v0='YQ8OSCP9LM9W77YT6LBNZHC' where id=4; -update noar tt set b2='99GLQ19ZZYHHU1WK6GFG' where id=4; -update noar ti set b2='99GLQ19ZZYHHU1WK6GFG' where id=4; -update noar tt set v0='B8IBBYQR3X4V' where id=5; -update noar ti set v0='B8IBBYQR3X4V' where id=5; -update noar tt set b0='F05Z4R0R7CZOBS5' where id=5; -update noar ti set b0='F05Z4R0R7CZOBS5' where id=5; -update noar tt set v0='JMGENIVG' where id=5; -update noar ti set v0='JMGENIVG' where id=5; -update noar tt set b1='FPQFEBR0SNDPFZ10N43BRN' where id=5; -update noar ti set b1='FPQFEBR0SNDPFZ10N43BRN' where id=5; -update noar tt set v0='DWQEAT8R1GU1UP043WW' where id=5; -update noar ti set v0='DWQEAT8R1GU1UP043WW' where id=5; -update noar tt set b2='3249945GFY9EOZR9ZLYQQD65V24' where id=5; -update noar ti set b2='3249945GFY9EOZR9ZLYQQD65V24' where id=5; -update noar tt set v0='48JZTBIWYK5Z' where id=6; -update noar ti set v0='48JZTBIWYK5Z' where id=6; -update noar tt set b0='3H8SVB1P17GET7EPIYG2MQ9ZNJ77Y02O' where id=6; -update noar ti set b0='3H8SVB1P17GET7EPIYG2MQ9ZNJ77Y02O' where id=6; -update noar tt set v0='23K8V7LX0AEOA74U9RQC3RS3GOOD1' where id=6; -update noar ti set v0='23K8V7LX0AEOA74U9RQC3RS3GOOD1' where id=6; -update noar tt set b1='GXADYKHDGDFCQ0N' where id=6; -update noar ti set b1='GXADYKHDGDFCQ0N' where id=6; -update noar tt set v0='DUKD05KLP0VDYFX0MB0JJ3TSG' where id=6; -update noar ti set v0='DUKD05KLP0VDYFX0MB0JJ3TSG' where id=6; -update noar tt set b2='DRP4RVCCMQT577SVE402NZ' where id=6; -update noar ti set b2='DRP4RVCCMQT577SVE402NZ' where id=6; -update noar tt set v0='58RFM0SYRWFARK' where id=7; -update noar ti set v0='58RFM0SYRWFARK' where id=7; -update noar tt set b0='88UZW72BTIRS1' where id=7; -update noar ti set b0='88UZW72BTIRS1' where id=7; -update noar tt set v0='NEQWA2TA40O3' where id=7; -update noar ti set v0='NEQWA2TA40O3' where id=7; -update noar tt set b1='G90ASRGC4BST' where id=7; -update noar ti set b1='G90ASRGC4BST' where id=7; -update noar tt set v0='VOMQ7G7XTVRY' where id=7; -update noar ti set v0='VOMQ7G7XTVRY' where id=7; -update noar tt set b2='96DLBNYMGQMBS' where id=7; -update noar ti set b2='96DLBNYMGQMBS' where id=7; -update noar tt set v0='S' where id=8; -update noar ti set v0='S' where id=8; -update noar tt set b0='J4HL4ATOGX4FJ7MSPDWQLP6Z2D' where id=8; -update noar ti set b0='J4HL4ATOGX4FJ7MSPDWQLP6Z2D' where id=8; -update noar tt set v0='8ZDMVNZSE38MRNPOB' where id=8; -update noar ti set v0='8ZDMVNZSE38MRNPOB' where id=8; -update noar tt set b1='J8VNWGHLWZ4Y6C' where id=8; -update noar ti set b1='J8VNWGHLWZ4Y6C' where id=8; -update noar tt set v0='6KAC16J06245FUPO3I' where id=8; -update noar ti set v0='6KAC16J06245FUPO3I' where id=8; -update noar tt set b2='SGD6M' where id=8; -update noar ti set b2='SGD6M' where id=8; -update noar tt set v0='MYF02N' where id=9; -update noar ti set v0='MYF02N' where id=9; -update noar tt set b0='EMFT87852EDNAY6GCIRU1H5JKKB4' where id=9; -update noar ti set b0='EMFT87852EDNAY6GCIRU1H5JKKB4' where id=9; -update noar tt set v0='LU6IZ9Y4KZ6XYKGEF9YY9' where id=9; -update noar ti set v0='LU6IZ9Y4KZ6XYKGEF9YY9' where id=9; -update noar tt set b1='JY5UGRX' where id=9; -update noar ti set b1='JY5UGRX' where id=9; -update noar tt set v0='3T5PRLJ3MVUN1MU61' where id=9; -update noar ti set v0='3T5PRLJ3MVUN1MU61' where id=9; -update noar tt set b2='295XFAMRT' where id=9; -update noar ti set b2='295XFAMRT' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - f0 int null, - v0 varchar(32) null, - b0 longblob null, - b1 mediumblob null, - b2 longblob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='53GM4O1DEVA23I501' where id=1; -update noar ti set v0='53GM4O1DEVA23I501' where id=1; -update noar tt set b0='TZHNQO02UW2ZI0NDG' where id=1; -update noar ti set b0='TZHNQO02UW2ZI0NDG' where id=1; -update noar tt set v0='BIWM4X0EL13' where id=1; -update noar ti set v0='BIWM4X0EL13' where id=1; -update noar tt set b1='D1Z0Y6X6VS7EEOCE35HM2H7ZBN5O81OF' where id=1; -update noar ti set b1='D1Z0Y6X6VS7EEOCE35HM2H7ZBN5O81OF' where id=1; -update noar tt set v0='0I9TZG9JE6A9LJTUZZMGY9BIAQM' where id=1; -update noar ti set v0='0I9TZG9JE6A9LJTUZZMGY9BIAQM' where id=1; -update noar tt set b2='DTBGWI45DT0JH5VM18' where id=1; -update noar ti set b2='DTBGWI45DT0JH5VM18' where id=1; -update noar tt set v0='R63SJ9WSTG9QXD5JOEO9A' where id=2; -update noar ti set v0='R63SJ9WSTG9QXD5JOEO9A' where id=2; -update noar tt set b0='C8EBOM3KUSK4UPNGKUC07Q67' where id=2; -update noar ti set b0='C8EBOM3KUSK4UPNGKUC07Q67' where id=2; -update noar tt set v0='MKSC' where id=2; -update noar ti set v0='MKSC' where id=2; -update noar tt set b1='RU92ZFBZ8NA2ZYVQ' where id=2; -update noar ti set b1='RU92ZFBZ8NA2ZYVQ' where id=2; -update noar tt set v0='YHZDKHH5L32PMPVH314BVFC' where id=2; -update noar ti set v0='YHZDKHH5L32PMPVH314BVFC' where id=2; -update noar tt set b2='RBXKHMSY' where id=2; -update noar ti set b2='RBXKHMSY' where id=2; -update noar tt set v0='VABOMGJ0ZOA0EP1SB3XC5NRE' where id=3; -update noar ti set v0='VABOMGJ0ZOA0EP1SB3XC5NRE' where id=3; -update noar tt set b0='G2RXB62681' where id=3; -update noar ti set b0='G2RXB62681' where id=3; -update noar tt set v0='10BU6RUQIPRD4DMKOR46MGBIUN8173' where id=3; -update noar ti set v0='10BU6RUQIPRD4DMKOR46MGBIUN8173' where id=3; -update noar tt set b1='8C7H0E' where id=3; -update noar ti set b1='8C7H0E' where id=3; -update noar tt set v0='TH9LIPWC' where id=3; -update noar ti set v0='TH9LIPWC' where id=3; -update noar tt set b2='VGTX4UL3Q34AY9SZK53MMOF' where id=3; -update noar ti set b2='VGTX4UL3Q34AY9SZK53MMOF' where id=3; -update noar tt set v0='YSM04' where id=4; -update noar ti set v0='YSM04' where id=4; -update noar tt set b0='C5' where id=4; -update noar ti set b0='C5' where id=4; -update noar tt set v0='982IFQ8DXI0MMHXTHGDY' where id=4; -update noar ti set v0='982IFQ8DXI0MMHXTHGDY' where id=4; -update noar tt set b1='I8F93LP9BYT6' where id=4; -update noar ti set b1='I8F93LP9BYT6' where id=4; -update noar tt set v0='SN' where id=4; -update noar ti set v0='SN' where id=4; -update noar tt set b2='EES7IGO1FD72CPSMQ2BGP4' where id=4; -update noar ti set b2='EES7IGO1FD72CPSMQ2BGP4' where id=4; -update noar tt set v0='SIRX7721I' where id=5; -update noar ti set v0='SIRX7721I' where id=5; -update noar tt set b0='V5G0EKJ4AD4BXM2N6VQYJ7' where id=5; -update noar ti set b0='V5G0EKJ4AD4BXM2N6VQYJ7' where id=5; -update noar tt set v0='DVT4X6PV7C8PLYXMMZOTY' where id=5; -update noar ti set v0='DVT4X6PV7C8PLYXMMZOTY' where id=5; -update noar tt set b1='SQUGGBCBBSEEYPOZFKARB397K6LRG' where id=5; -update noar ti set b1='SQUGGBCBBSEEYPOZFKARB397K6LRG' where id=5; -update noar tt set v0='DJS0J6GOUY6JB6UPFUK35AT77U4KZ' where id=5; -update noar ti set v0='DJS0J6GOUY6JB6UPFUK35AT77U4KZ' where id=5; -update noar tt set b2='7T8KSWKU49SF0U52S5P05' where id=5; -update noar ti set b2='7T8KSWKU49SF0U52S5P05' where id=5; -update noar tt set v0='8T2UQUX11AKE2U5AQLEY' where id=6; -update noar ti set v0='8T2UQUX11AKE2U5AQLEY' where id=6; -update noar tt set b0='VMNBOUGFTAXLJ3LCO7Q6CO' where id=6; -update noar ti set b0='VMNBOUGFTAXLJ3LCO7Q6CO' where id=6; -update noar tt set v0='9JDVBN2SMHEZS2L069SRBOUD' where id=6; -update noar ti set v0='9JDVBN2SMHEZS2L069SRBOUD' where id=6; -update noar tt set b1='Z3JOHLX39C0RE' where id=6; -update noar ti set b1='Z3JOHLX39C0RE' where id=6; -update noar tt set v0='GCQZLR4JZ871S' where id=6; -update noar ti set v0='GCQZLR4JZ871S' where id=6; -update noar tt set b2='DT3W' where id=6; -update noar ti set b2='DT3W' where id=6; -update noar tt set v0='FFWRTK6ZH0R8628EPGG9MA' where id=7; -update noar ti set v0='FFWRTK6ZH0R8628EPGG9MA' where id=7; -update noar tt set b0='L3O' where id=7; -update noar ti set b0='L3O' where id=7; -update noar tt set v0='LKN7YQETMUGY' where id=7; -update noar ti set v0='LKN7YQETMUGY' where id=7; -update noar tt set b1='POZS4Z75WVQT4DPLQTPAAFIOI1PYN' where id=7; -update noar ti set b1='POZS4Z75WVQT4DPLQTPAAFIOI1PYN' where id=7; -update noar tt set v0='IQ4HHO7A' where id=7; -update noar ti set v0='IQ4HHO7A' where id=7; -update noar tt set b2='P2UA49ZAEK0' where id=7; -update noar ti set b2='P2UA49ZAEK0' where id=7; -update noar tt set v0='EL06087A6ZHWXO73FIFK2M4ZFZVQ9B' where id=8; -update noar ti set v0='EL06087A6ZHWXO73FIFK2M4ZFZVQ9B' where id=8; -update noar tt set b0='OBG8R' where id=8; -update noar ti set b0='OBG8R' where id=8; -update noar tt set v0='NEZ0B6GW20GINB' where id=8; -update noar ti set v0='NEZ0B6GW20GINB' where id=8; -update noar tt set b1='460I5CCIEHK' where id=8; -update noar ti set b1='460I5CCIEHK' where id=8; -update noar tt set v0='RZ' where id=8; -update noar ti set v0='RZ' where id=8; -update noar tt set b2='2CSP' where id=8; -update noar ti set b2='2CSP' where id=8; -update noar tt set v0='SOTUGJT6OK0JDFU0L' where id=9; -update noar ti set v0='SOTUGJT6OK0JDFU0L' where id=9; -update noar tt set b0='NFFOG4527YDL7PH345Z1FCF' where id=9; -update noar ti set b0='NFFOG4527YDL7PH345Z1FCF' where id=9; -update noar tt set v0='DLNRAMVOZMF7H6Q8VO5WITXRLSCFKAT' where id=9; -update noar ti set v0='DLNRAMVOZMF7H6Q8VO5WITXRLSCFKAT' where id=9; -update noar tt set b1='OOD8' where id=9; -update noar ti set b1='OOD8' where id=9; -update noar tt set v0='KLOIJPKGCKZEM' where id=9; -update noar ti set v0='KLOIJPKGCKZEM' where id=9; -update noar tt set b2='GB9BOCGXG70' where id=9; -update noar ti set b2='GB9BOCGXG70' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - f0 int null, - v0 varchar(256) null, - b0 longblob null, - b1 mediumblob null, - b2 longblob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='L4RISOX3VAO1PZB' where id=1; -update noar ti set v0='L4RISOX3VAO1PZB' where id=1; -update noar tt set b0='NDO6MKQJVC5K7' where id=1; -update noar ti set b0='NDO6MKQJVC5K7' where id=1; -update noar tt set v0='G' where id=1; -update noar ti set v0='G' where id=1; -update noar tt set b1='G77HCANFT4MZP033AMIGXIN7Z3UPDEHR' where id=1; -update noar ti set b1='G77HCANFT4MZP033AMIGXIN7Z3UPDEHR' where id=1; -update noar tt set v0='J' where id=1; -update noar ti set v0='J' where id=1; -update noar tt set b2='C9YBTLKJSX1KECNYGT' where id=1; -update noar ti set b2='C9YBTLKJSX1KECNYGT' where id=1; -update noar tt set v0='YUJ' where id=2; -update noar ti set v0='YUJ' where id=2; -update noar tt set b0='Y57T0S2AVVHU5LXPH1ATVYEM56UED4U' where id=2; -update noar ti set b0='Y57T0S2AVVHU5LXPH1ATVYEM56UED4U' where id=2; -update noar tt set v0='BM' where id=2; -update noar ti set v0='BM' where id=2; -update noar tt set b1='H1GGH7V709TWJ' where id=2; -update noar ti set b1='H1GGH7V709TWJ' where id=2; -update noar tt set v0='HZGCQ6L3L8V3YJJ4WHRD2BPLJ' where id=2; -update noar ti set v0='HZGCQ6L3L8V3YJJ4WHRD2BPLJ' where id=2; -update noar tt set b2='Q9CEF81OEU' where id=2; -update noar ti set b2='Q9CEF81OEU' where id=2; -update noar tt set v0='2FVB' where id=3; -update noar ti set v0='2FVB' where id=3; -update noar tt set b0='LBI8DQ6PO3WL5HPA43' where id=3; -update noar ti set b0='LBI8DQ6PO3WL5HPA43' where id=3; -update noar tt set v0='TQ89DWT51' where id=3; -update noar ti set v0='TQ89DWT51' where id=3; -update noar tt set b1='UPTOMLQ4Y' where id=3; -update noar ti set b1='UPTOMLQ4Y' where id=3; -update noar tt set v0='EYBXFY9D9SL4CX31PW2A3K8V' where id=3; -update noar ti set v0='EYBXFY9D9SL4CX31PW2A3K8V' where id=3; -update noar tt set b2='ZQKCUAZBZ' where id=3; -update noar ti set b2='ZQKCUAZBZ' where id=3; -update noar tt set v0='HXRKKFK36YSNQSXZIKCD3X0YWFI5JOI' where id=4; -update noar ti set v0='HXRKKFK36YSNQSXZIKCD3X0YWFI5JOI' where id=4; -update noar tt set b0='B814' where id=4; -update noar ti set b0='B814' where id=4; -update noar tt set v0='H1LFUKRH3W82E92YUVTFUE4' where id=4; -update noar ti set v0='H1LFUKRH3W82E92YUVTFUE4' where id=4; -update noar tt set b1='Y57' where id=4; -update noar ti set b1='Y57' where id=4; -update noar tt set v0='ODXL1WRAR1GWSUZW1WITRU02HI' where id=4; -update noar ti set v0='ODXL1WRAR1GWSUZW1WITRU02HI' where id=4; -update noar tt set b2='SO' where id=4; -update noar ti set b2='SO' where id=4; -update noar tt set v0='DCSHUYWOBZSEO2S7P66IBHE1OD' where id=5; -update noar ti set v0='DCSHUYWOBZSEO2S7P66IBHE1OD' where id=5; -update noar tt set b0='5ZC2A' where id=5; -update noar ti set b0='5ZC2A' where id=5; -update noar tt set v0='0PMNIF34E59R9IXHAWK36H' where id=5; -update noar ti set v0='0PMNIF34E59R9IXHAWK36H' where id=5; -update noar tt set b1='WL3S2DPE' where id=5; -update noar ti set b1='WL3S2DPE' where id=5; -update noar tt set v0='L8RLGVU2P36DB' where id=5; -update noar ti set v0='L8RLGVU2P36DB' where id=5; -update noar tt set b2='4C147CE2O8KNI5MJS3LAZQ' where id=5; -update noar ti set b2='4C147CE2O8KNI5MJS3LAZQ' where id=5; -update noar tt set v0='62SHHUOC0ZAXM' where id=6; -update noar ti set v0='62SHHUOC0ZAXM' where id=6; -update noar tt set b0='XJWYW' where id=6; -update noar ti set b0='XJWYW' where id=6; -update noar tt set v0='8DUOQ90ETELRNHQE' where id=6; -update noar ti set v0='8DUOQ90ETELRNHQE' where id=6; -update noar tt set b1='43E1DS2RG2KKYAYPHMBA' where id=6; -update noar ti set b1='43E1DS2RG2KKYAYPHMBA' where id=6; -update noar tt set v0='436UBFXCZX4OIU' where id=6; -update noar ti set v0='436UBFXCZX4OIU' where id=6; -update noar tt set b2='MP6Y' where id=6; -update noar ti set b2='MP6Y' where id=6; -update noar tt set v0='CZE5EHSLWEZ9RQ' where id=7; -update noar ti set v0='CZE5EHSLWEZ9RQ' where id=7; -update noar tt set b0='APGF951C76TFJBXLRZAOQ71W7Q' where id=7; -update noar ti set b0='APGF951C76TFJBXLRZAOQ71W7Q' where id=7; -update noar tt set v0='WGLT01U8U4AI1X9Y' where id=7; -update noar ti set v0='WGLT01U8U4AI1X9Y' where id=7; -update noar tt set b1='82H3YR9DPUU9KA3KRD5QH5MOUXP553M' where id=7; -update noar ti set b1='82H3YR9DPUU9KA3KRD5QH5MOUXP553M' where id=7; -update noar tt set v0='7PEY8MRS5X7TRM' where id=7; -update noar ti set v0='7PEY8MRS5X7TRM' where id=7; -update noar tt set b2='SVT88RR48B50BSQI0ZK' where id=7; -update noar ti set b2='SVT88RR48B50BSQI0ZK' where id=7; -update noar tt set v0='3H0QUW' where id=8; -update noar ti set v0='3H0QUW' where id=8; -update noar tt set b0='EA5NX7TGDM100VBQUNMDBO27NYLMJ' where id=8; -update noar ti set b0='EA5NX7TGDM100VBQUNMDBO27NYLMJ' where id=8; -update noar tt set v0='XKK9U3Y4W58Y1YXABY' where id=8; -update noar ti set v0='XKK9U3Y4W58Y1YXABY' where id=8; -update noar tt set b1='MMIU4NQ5LV0HPBOB4H3MHAFEL4Q' where id=8; -update noar ti set b1='MMIU4NQ5LV0HPBOB4H3MHAFEL4Q' where id=8; -update noar tt set v0='QZBNALCNAQVYNKO3MSAUQ39RH' where id=8; -update noar ti set v0='QZBNALCNAQVYNKO3MSAUQ39RH' where id=8; -update noar tt set b2='NJ5' where id=8; -update noar ti set b2='NJ5' where id=8; -update noar tt set v0='ZL8IDMBL7TWY' where id=9; -update noar ti set v0='ZL8IDMBL7TWY' where id=9; -update noar tt set b0='9XJARF' where id=9; -update noar ti set b0='9XJARF' where id=9; -update noar tt set v0='GI4T4IFWO4S38BY6YUMU2S6B3NIKG' where id=9; -update noar ti set v0='GI4T4IFWO4S38BY6YUMU2S6B3NIKG' where id=9; -update noar tt set b1='A1OJXJQK5G6AX2IN' where id=9; -update noar ti set b1='A1OJXJQK5G6AX2IN' where id=9; -update noar tt set v0='AEL51' where id=9; -update noar ti set v0='AEL51' where id=9; -update noar tt set b2='POBL1ER37YN7Y5U' where id=9; -update noar ti set b2='POBL1ER37YN7Y5U' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - f0 int not null, - v0 varchar(32) not null, - b0 longblob not null, - b1 mediumblob not null, - b2 longblob not null -) engine=tokudb; -insert into tt values (1,0,'','','',''); -insert into tt values (2,0,'','','',''); -insert into tt values (3,0,'','','',''); -insert into tt values (4,0,'','','',''); -insert into tt values (5,0,'','','',''); -insert into tt values (6,0,'','','',''); -insert into tt values (7,0,'','','',''); -insert into tt values (8,0,'','','',''); -insert into tt values (9,0,'','','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='H9QPY5H2' where id=1; -update noar ti set v0='H9QPY5H2' where id=1; -update noar tt set b0='V63RG8ONNGC7H22GPLNXM4KQUJJ45' where id=1; -update noar ti set b0='V63RG8ONNGC7H22GPLNXM4KQUJJ45' where id=1; -update noar tt set v0='GX' where id=1; -update noar ti set v0='GX' where id=1; -update noar tt set b1='TXG6DGPI8QCPP5E9P495MZZ31WTV5' where id=1; -update noar ti set b1='TXG6DGPI8QCPP5E9P495MZZ31WTV5' where id=1; -update noar tt set v0='AS6VIZXRHXGF5CU5IKO' where id=1; -update noar ti set v0='AS6VIZXRHXGF5CU5IKO' where id=1; -update noar tt set b2='88OECCKK5R3FR32XCG3KWNN0X8DZ7N' where id=1; -update noar ti set b2='88OECCKK5R3FR32XCG3KWNN0X8DZ7N' where id=1; -update noar tt set v0='C2HT0V701JR2O' where id=2; -update noar ti set v0='C2HT0V701JR2O' where id=2; -update noar tt set b0='IJNXOZHVN5USQ28AEO5SQD4Z' where id=2; -update noar ti set b0='IJNXOZHVN5USQ28AEO5SQD4Z' where id=2; -update noar tt set v0='5VJ0KK4PZT083UML4GXEU0BN1' where id=2; -update noar ti set v0='5VJ0KK4PZT083UML4GXEU0BN1' where id=2; -update noar tt set b1='HEMXBGZPJ1J56Z8SK0' where id=2; -update noar ti set b1='HEMXBGZPJ1J56Z8SK0' where id=2; -update noar tt set v0='JIKHKE3WKU4PA04QZOMBPFU' where id=2; -update noar ti set v0='JIKHKE3WKU4PA04QZOMBPFU' where id=2; -update noar tt set b2='8N' where id=2; -update noar ti set b2='8N' where id=2; -update noar tt set v0='CLSINGPZ8C6Y13D36S18S7R' where id=3; -update noar ti set v0='CLSINGPZ8C6Y13D36S18S7R' where id=3; -update noar tt set b0='OODQISFS89FWFTZL5ZSS2RHC8AY' where id=3; -update noar ti set b0='OODQISFS89FWFTZL5ZSS2RHC8AY' where id=3; -update noar tt set v0='V7' where id=3; -update noar ti set v0='V7' where id=3; -update noar tt set b1='KX' where id=3; -update noar ti set b1='KX' where id=3; -update noar tt set v0='ZPR4WFWTT9OY4SYI' where id=3; -update noar ti set v0='ZPR4WFWTT9OY4SYI' where id=3; -update noar tt set b2='4RHWI7EDSPOGMFSMKB6ZEIWDI6XUOFA0' where id=3; -update noar ti set b2='4RHWI7EDSPOGMFSMKB6ZEIWDI6XUOFA0' where id=3; -update noar tt set v0='UUGTGBHO5VKKDS4FPK02MUTFJAA' where id=4; -update noar ti set v0='UUGTGBHO5VKKDS4FPK02MUTFJAA' where id=4; -update noar tt set b0='LHHLWH33C53WE1DSHON' where id=4; -update noar ti set b0='LHHLWH33C53WE1DSHON' where id=4; -update noar tt set v0='OUNKLEXQFOD4OX9413JHJPU7' where id=4; -update noar ti set v0='OUNKLEXQFOD4OX9413JHJPU7' where id=4; -update noar tt set b1='UNAGA5GKZLJE0ZSB710IPCP8RXQ0T' where id=4; -update noar ti set b1='UNAGA5GKZLJE0ZSB710IPCP8RXQ0T' where id=4; -update noar tt set v0='6WU' where id=4; -update noar ti set v0='6WU' where id=4; -update noar tt set b2='DNQ36ZIFDVGLCOWN1NIV' where id=4; -update noar ti set b2='DNQ36ZIFDVGLCOWN1NIV' where id=4; -update noar tt set v0='SFSLP03QKQ0K17DFGB' where id=5; -update noar ti set v0='SFSLP03QKQ0K17DFGB' where id=5; -update noar tt set b0='D323QGG8FK6FN1FZ4S3' where id=5; -update noar ti set b0='D323QGG8FK6FN1FZ4S3' where id=5; -update noar tt set v0='5DH6DVD0JFOS44OHZ8' where id=5; -update noar ti set v0='5DH6DVD0JFOS44OHZ8' where id=5; -update noar tt set b1='7K4OV2' where id=5; -update noar ti set b1='7K4OV2' where id=5; -update noar tt set v0='9BQICLCFA5T6QLZZBSXVG5PGEFBRI6L4' where id=5; -update noar ti set v0='9BQICLCFA5T6QLZZBSXVG5PGEFBRI6L4' where id=5; -update noar tt set b2='38J1RX' where id=5; -update noar ti set b2='38J1RX' where id=5; -update noar tt set v0='PSLRRW8DLIQY' where id=6; -update noar ti set v0='PSLRRW8DLIQY' where id=6; -update noar tt set b0='RCB' where id=6; -update noar ti set b0='RCB' where id=6; -update noar tt set v0='2G1WPRUQ93HVJ' where id=6; -update noar ti set v0='2G1WPRUQ93HVJ' where id=6; -update noar tt set b1='HXCVG' where id=6; -update noar ti set b1='HXCVG' where id=6; -update noar tt set v0='7LWJPRZG1K5B79' where id=6; -update noar ti set v0='7LWJPRZG1K5B79' where id=6; -update noar tt set b2='VD7HW7BWEBA49N47OBJOID4I' where id=6; -update noar ti set b2='VD7HW7BWEBA49N47OBJOID4I' where id=6; -update noar tt set v0='Q7CJZNPSTQUYRC116QWMR2XM6HFKGT' where id=7; -update noar ti set v0='Q7CJZNPSTQUYRC116QWMR2XM6HFKGT' where id=7; -update noar tt set b0='J4B86VXKO9FJVP4LFUSN0' where id=7; -update noar ti set b0='J4B86VXKO9FJVP4LFUSN0' where id=7; -update noar tt set v0='06WSVXH72U' where id=7; -update noar ti set v0='06WSVXH72U' where id=7; -update noar tt set b1='IRO92GHSS2672XRO' where id=7; -update noar ti set b1='IRO92GHSS2672XRO' where id=7; -update noar tt set v0='LRF2G2P8B4AF3JS7D4PZM5B92QA3' where id=7; -update noar ti set v0='LRF2G2P8B4AF3JS7D4PZM5B92QA3' where id=7; -update noar tt set b2='IDJQMHPKEHUORU1XH' where id=7; -update noar ti set b2='IDJQMHPKEHUORU1XH' where id=7; -update noar tt set v0='4CERH4D25I6S1URL3JDXPGX1D18BVDH' where id=8; -update noar ti set v0='4CERH4D25I6S1URL3JDXPGX1D18BVDH' where id=8; -update noar tt set b0='XR30NGMZUMRDS2IXNWY4R' where id=8; -update noar ti set b0='XR30NGMZUMRDS2IXNWY4R' where id=8; -update noar tt set v0='OQC20GU1X5PK' where id=8; -update noar ti set v0='OQC20GU1X5PK' where id=8; -update noar tt set b1='45735S0LT5TME6HYIX6F' where id=8; -update noar ti set b1='45735S0LT5TME6HYIX6F' where id=8; -update noar tt set v0='EIZI4MUW4MJSTN' where id=8; -update noar ti set v0='EIZI4MUW4MJSTN' where id=8; -update noar tt set b2='94Y0H979D2L' where id=8; -update noar ti set b2='94Y0H979D2L' where id=8; -update noar tt set v0='SYNCBWWWWQNF' where id=9; -update noar ti set v0='SYNCBWWWWQNF' where id=9; -update noar tt set b0='6QKFTGROT5RM0B8PD23HEW' where id=9; -update noar ti set b0='6QKFTGROT5RM0B8PD23HEW' where id=9; -update noar tt set v0='OZOHAABVMAIA6KS' where id=9; -update noar ti set v0='OZOHAABVMAIA6KS' where id=9; -update noar tt set b1='FIDV' where id=9; -update noar ti set b1='FIDV' where id=9; -update noar tt set v0='PDXS146I' where id=9; -update noar ti set v0='PDXS146I' where id=9; -update noar tt set b2='O3ICGR' where id=9; -update noar ti set b2='O3ICGR' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - f0 int not null, - v0 varchar(256) not null, - b0 longblob not null, - b1 mediumblob not null, - b2 longblob not null -) engine=tokudb; -insert into tt values (1,0,'','','',''); -insert into tt values (2,0,'','','',''); -insert into tt values (3,0,'','','',''); -insert into tt values (4,0,'','','',''); -insert into tt values (5,0,'','','',''); -insert into tt values (6,0,'','','',''); -insert into tt values (7,0,'','','',''); -insert into tt values (8,0,'','','',''); -insert into tt values (9,0,'','','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='7OUVWO14BXTC2FFE05VV9NT7Z8OGGP' where id=1; -update noar ti set v0='7OUVWO14BXTC2FFE05VV9NT7Z8OGGP' where id=1; -update noar tt set b0='98DN3F7IA8V' where id=1; -update noar ti set b0='98DN3F7IA8V' where id=1; -update noar tt set v0='9W0H4F5SB78AO86U9KQE9' where id=1; -update noar ti set v0='9W0H4F5SB78AO86U9KQE9' where id=1; -update noar tt set b1='7HP8ET9CUISH3C8ZWC2WEUA7MMT0' where id=1; -update noar ti set b1='7HP8ET9CUISH3C8ZWC2WEUA7MMT0' where id=1; -update noar tt set v0='1WJ71HC77768G81' where id=1; -update noar ti set v0='1WJ71HC77768G81' where id=1; -update noar tt set b2='REN32GGSU8R7DM' where id=1; -update noar ti set b2='REN32GGSU8R7DM' where id=1; -update noar tt set v0='A75CFQOLP' where id=2; -update noar ti set v0='A75CFQOLP' where id=2; -update noar tt set b0='22OVT6BS' where id=2; -update noar ti set b0='22OVT6BS' where id=2; -update noar tt set v0='4UFN3RKW9V8HD9XSR9B3B8N' where id=2; -update noar ti set v0='4UFN3RKW9V8HD9XSR9B3B8N' where id=2; -update noar tt set b1='X4PFCPCQS23ODW37' where id=2; -update noar ti set b1='X4PFCPCQS23ODW37' where id=2; -update noar tt set v0='SBWQR2MOXVSUWYP0J' where id=2; -update noar ti set v0='SBWQR2MOXVSUWYP0J' where id=2; -update noar tt set b2='DH9N82RSVXZGWC7W4QENQ7E4FC855L' where id=2; -update noar ti set b2='DH9N82RSVXZGWC7W4QENQ7E4FC855L' where id=2; -update noar tt set v0='V83OL775PG2MZJR31J4DKOUUIEVZNF6B' where id=3; -update noar ti set v0='V83OL775PG2MZJR31J4DKOUUIEVZNF6B' where id=3; -update noar tt set b0='L4T64W1L5VH9D702' where id=3; -update noar ti set b0='L4T64W1L5VH9D702' where id=3; -update noar tt set v0='RRPULLIIC0BVS0O86H6F8ZYKPFV' where id=3; -update noar ti set v0='RRPULLIIC0BVS0O86H6F8ZYKPFV' where id=3; -update noar tt set b1='MHYSND5NPSN5DZT42' where id=3; -update noar ti set b1='MHYSND5NPSN5DZT42' where id=3; -update noar tt set v0='YKO0QGYV4SWYPHHWC5PKNC' where id=3; -update noar ti set v0='YKO0QGYV4SWYPHHWC5PKNC' where id=3; -update noar tt set b2='6WXSDXOTF4UXKRXZG' where id=3; -update noar ti set b2='6WXSDXOTF4UXKRXZG' where id=3; -update noar tt set v0='LOS63PP8QO9IN378CN' where id=4; -update noar ti set v0='LOS63PP8QO9IN378CN' where id=4; -update noar tt set b0='I' where id=4; -update noar ti set b0='I' where id=4; -update noar tt set v0='OO00J' where id=4; -update noar ti set v0='OO00J' where id=4; -update noar tt set b1='A9QUJK6979S' where id=4; -update noar ti set b1='A9QUJK6979S' where id=4; -update noar tt set v0='WHGA8SK4DHEV0EGB0GTL574JGT9' where id=4; -update noar ti set v0='WHGA8SK4DHEV0EGB0GTL574JGT9' where id=4; -update noar tt set b2='U' where id=4; -update noar ti set b2='U' where id=4; -update noar tt set v0='NHBH4K3' where id=5; -update noar ti set v0='NHBH4K3' where id=5; -update noar tt set b0='JVT3FJDFV2L9X3DN' where id=5; -update noar ti set b0='JVT3FJDFV2L9X3DN' where id=5; -update noar tt set v0='9N0BCC2' where id=5; -update noar ti set v0='9N0BCC2' where id=5; -update noar tt set b1='S9KB5Y06UQCWCRVY2CH' where id=5; -update noar ti set b1='S9KB5Y06UQCWCRVY2CH' where id=5; -update noar tt set v0='7Q3EENH3' where id=5; -update noar ti set v0='7Q3EENH3' where id=5; -update noar tt set b2='Y5LJUO0PBZPW4SA0DLD6IBR' where id=5; -update noar ti set b2='Y5LJUO0PBZPW4SA0DLD6IBR' where id=5; -update noar tt set v0='IU' where id=6; -update noar ti set v0='IU' where id=6; -update noar tt set b0='RR0OLRL25ZZ7' where id=6; -update noar ti set b0='RR0OLRL25ZZ7' where id=6; -update noar tt set v0='IETYL45BUYZZXTN2UBLAP9LIGV11XF8G' where id=6; -update noar ti set v0='IETYL45BUYZZXTN2UBLAP9LIGV11XF8G' where id=6; -update noar tt set b1='M' where id=6; -update noar ti set b1='M' where id=6; -update noar tt set v0='0HGZ' where id=6; -update noar ti set v0='0HGZ' where id=6; -update noar tt set b2='YH339TZ' where id=6; -update noar ti set b2='YH339TZ' where id=6; -update noar tt set v0='5IUUJC4S2OZ' where id=7; -update noar ti set v0='5IUUJC4S2OZ' where id=7; -update noar tt set b0='036C3AXTNVVCB8JTD' where id=7; -update noar ti set b0='036C3AXTNVVCB8JTD' where id=7; -update noar tt set v0='V0DGP8HU3R253WW5ZINO9YAFPENSEP' where id=7; -update noar ti set v0='V0DGP8HU3R253WW5ZINO9YAFPENSEP' where id=7; -update noar tt set b1='L56KD9JRAP' where id=7; -update noar ti set b1='L56KD9JRAP' where id=7; -update noar tt set v0='4XMI7IWACR2CMX585GPUQ2Q67EXM2F' where id=7; -update noar ti set v0='4XMI7IWACR2CMX585GPUQ2Q67EXM2F' where id=7; -update noar tt set b2='S3I7OU419YWCYK15J2R2LMH6L' where id=7; -update noar ti set b2='S3I7OU419YWCYK15J2R2LMH6L' where id=7; -update noar tt set v0='C0TRSA9R3' where id=8; -update noar ti set v0='C0TRSA9R3' where id=8; -update noar tt set b0='3888YQI9FRO' where id=8; -update noar ti set b0='3888YQI9FRO' where id=8; -update noar tt set v0='YOT24JL9P2Y68NR41U66GH' where id=8; -update noar ti set v0='YOT24JL9P2Y68NR41U66GH' where id=8; -update noar tt set b1='EKPV81UGDHBMK0ST1OIKYIK' where id=8; -update noar ti set b1='EKPV81UGDHBMK0ST1OIKYIK' where id=8; -update noar tt set v0='KBC' where id=8; -update noar ti set v0='KBC' where id=8; -update noar tt set b2='H9PNFSSCOB2VSJRDNN' where id=8; -update noar ti set b2='H9PNFSSCOB2VSJRDNN' where id=8; -update noar tt set v0='D14D2YHTPYINSH3LWVER8EQHHLDQ9G2G' where id=9; -update noar ti set v0='D14D2YHTPYINSH3LWVER8EQHHLDQ9G2G' where id=9; -update noar tt set b0='QKDPQEWMDFJZWDDXYW1GFFZ' where id=9; -update noar ti set b0='QKDPQEWMDFJZWDDXYW1GFFZ' where id=9; -update noar tt set v0='LPFSM8ITGUS29850' where id=9; -update noar ti set v0='LPFSM8ITGUS29850' where id=9; -update noar tt set b1='1JANQAZQ2XHESQBMIRINRT' where id=9; -update noar ti set b1='1JANQAZQ2XHESQBMIRINRT' where id=9; -update noar tt set v0='FT5SD3OUHVJGTC2CZL' where id=9; -update noar ti set v0='FT5SD3OUHVJGTC2CZL' where id=9; -update noar tt set b2='DMIWDIZVCAQYKQD8IKZ5PUZR8' where id=9; -update noar ti set b2='DMIWDIZVCAQYKQD8IKZ5PUZR8' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - f0 int null, - v0 varchar(32) null, - b0 longblob null, - b1 longblob null, - b2 tinyblob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='M94PP53E' where id=1; -update noar ti set v0='M94PP53E' where id=1; -update noar tt set b0='U' where id=1; -update noar ti set b0='U' where id=1; -update noar tt set v0='NBDQP21L' where id=1; -update noar ti set v0='NBDQP21L' where id=1; -update noar tt set b1='V4VSKNTAOK8KFGS58UQIG3L1BS21R' where id=1; -update noar ti set b1='V4VSKNTAOK8KFGS58UQIG3L1BS21R' where id=1; -update noar tt set v0='O5IP5GUJ5PYMPQO942N' where id=1; -update noar ti set v0='O5IP5GUJ5PYMPQO942N' where id=1; -update noar tt set b2='FJU5NP' where id=1; -update noar ti set b2='FJU5NP' where id=1; -update noar tt set v0='JDU582XDCSNKJIKDEHPQZ6XYG42W' where id=2; -update noar ti set v0='JDU582XDCSNKJIKDEHPQZ6XYG42W' where id=2; -update noar tt set b0='J' where id=2; -update noar ti set b0='J' where id=2; -update noar tt set v0='WUURWEFW93G7B271BX40FY0PMJ7K93' where id=2; -update noar ti set v0='WUURWEFW93G7B271BX40FY0PMJ7K93' where id=2; -update noar tt set b1='6R73AY4Q2ETGHR0' where id=2; -update noar ti set b1='6R73AY4Q2ETGHR0' where id=2; -update noar tt set v0='CU7' where id=2; -update noar ti set v0='CU7' where id=2; -update noar tt set b2='RN4Y19IBZGRQX89S8DLLV6T0EA81BXSB' where id=2; -update noar ti set b2='RN4Y19IBZGRQX89S8DLLV6T0EA81BXSB' where id=2; -update noar tt set v0='JRBUO6S6PDHRZVJ8' where id=3; -update noar ti set v0='JRBUO6S6PDHRZVJ8' where id=3; -update noar tt set b0='YD4I1422ET6A6ABUKL' where id=3; -update noar ti set b0='YD4I1422ET6A6ABUKL' where id=3; -update noar tt set v0='YNIWR64NUS197I' where id=3; -update noar ti set v0='YNIWR64NUS197I' where id=3; -update noar tt set b1='7JRCB2CGUYA5' where id=3; -update noar ti set b1='7JRCB2CGUYA5' where id=3; -update noar tt set v0='T7FI5X9L2WR' where id=3; -update noar ti set v0='T7FI5X9L2WR' where id=3; -update noar tt set b2='UZZ1UDCR148' where id=3; -update noar ti set b2='UZZ1UDCR148' where id=3; -update noar tt set v0='5TZCMG37LETTU' where id=4; -update noar ti set v0='5TZCMG37LETTU' where id=4; -update noar tt set b0='X085TJMND2P8EV1OTDYDFMBQX85' where id=4; -update noar ti set b0='X085TJMND2P8EV1OTDYDFMBQX85' where id=4; -update noar tt set v0='ZYVN78RL8T' where id=4; -update noar ti set v0='ZYVN78RL8T' where id=4; -update noar tt set b1='AQEZW' where id=4; -update noar ti set b1='AQEZW' where id=4; -update noar tt set v0='6R6QEAMCY0TZYP' where id=4; -update noar ti set v0='6R6QEAMCY0TZYP' where id=4; -update noar tt set b2='1WNQQVMJW92CIFW9' where id=4; -update noar ti set b2='1WNQQVMJW92CIFW9' where id=4; -update noar tt set v0='3XJKQ6IXJ4B8D43CPAR4V32MJ' where id=5; -update noar ti set v0='3XJKQ6IXJ4B8D43CPAR4V32MJ' where id=5; -update noar tt set b0='4E7Y5MA8IP' where id=5; -update noar ti set b0='4E7Y5MA8IP' where id=5; -update noar tt set v0='Y69J4HPB7ZXRLML7DDRPT5YCSNPSGKT' where id=5; -update noar ti set v0='Y69J4HPB7ZXRLML7DDRPT5YCSNPSGKT' where id=5; -update noar tt set b1='ZYKXO25V5GK' where id=5; -update noar ti set b1='ZYKXO25V5GK' where id=5; -update noar tt set v0='MB0JAEO4I34IK' where id=5; -update noar ti set v0='MB0JAEO4I34IK' where id=5; -update noar tt set b2='E0WZ8WP' where id=5; -update noar ti set b2='E0WZ8WP' where id=5; -update noar tt set v0='CIMNXD8SZS8KJG04' where id=6; -update noar ti set v0='CIMNXD8SZS8KJG04' where id=6; -update noar tt set b0='UP' where id=6; -update noar ti set b0='UP' where id=6; -update noar tt set v0='TP6' where id=6; -update noar ti set v0='TP6' where id=6; -update noar tt set b1='76OUEUQGJU14C2Y' where id=6; -update noar ti set b1='76OUEUQGJU14C2Y' where id=6; -update noar tt set v0='RSUY34S6LA0L8Z06PSOWMVK1V' where id=6; -update noar ti set v0='RSUY34S6LA0L8Z06PSOWMVK1V' where id=6; -update noar tt set b2='9VRVR2ZZZ' where id=6; -update noar ti set b2='9VRVR2ZZZ' where id=6; -update noar tt set v0='W2H271NI83M4J6BOLE4M2' where id=7; -update noar ti set v0='W2H271NI83M4J6BOLE4M2' where id=7; -update noar tt set b0='XHV5YP2PZ6NRYTIL1' where id=7; -update noar ti set b0='XHV5YP2PZ6NRYTIL1' where id=7; -update noar tt set v0='GC2U99OY' where id=7; -update noar ti set v0='GC2U99OY' where id=7; -update noar tt set b1='ILEMB' where id=7; -update noar ti set b1='ILEMB' where id=7; -update noar tt set v0='UB9GGW8ZRJA9V6LJ5OWS' where id=7; -update noar ti set v0='UB9GGW8ZRJA9V6LJ5OWS' where id=7; -update noar tt set b2='ZHNWPOG4FKJ26JP7F' where id=7; -update noar ti set b2='ZHNWPOG4FKJ26JP7F' where id=7; -update noar tt set v0='PO6CTZ7KW19' where id=8; -update noar ti set v0='PO6CTZ7KW19' where id=8; -update noar tt set b0='QI520YIHI98TQ1N5LBI68D' where id=8; -update noar ti set b0='QI520YIHI98TQ1N5LBI68D' where id=8; -update noar tt set v0='STMKJYF16DQICHEQO4GRII1' where id=8; -update noar ti set v0='STMKJYF16DQICHEQO4GRII1' where id=8; -update noar tt set b1='7PSH4KJKJVAL2CER7MPTZH2QKNF79' where id=8; -update noar ti set b1='7PSH4KJKJVAL2CER7MPTZH2QKNF79' where id=8; -update noar tt set v0='PGR9CDQDZ3' where id=8; -update noar ti set v0='PGR9CDQDZ3' where id=8; -update noar tt set b2='ORRLMZKZA2' where id=8; -update noar ti set b2='ORRLMZKZA2' where id=8; -update noar tt set v0='EK0R7848949LAYLFWEUQGE' where id=9; -update noar ti set v0='EK0R7848949LAYLFWEUQGE' where id=9; -update noar tt set b0='SSVIJFXQH9DZLS6' where id=9; -update noar ti set b0='SSVIJFXQH9DZLS6' where id=9; -update noar tt set v0='NVNNO4Y1BSC1LU6VY1VMK' where id=9; -update noar ti set v0='NVNNO4Y1BSC1LU6VY1VMK' where id=9; -update noar tt set b1='JRS2S3ELCUET9B4FR' where id=9; -update noar ti set b1='JRS2S3ELCUET9B4FR' where id=9; -update noar tt set v0='KAQ7AS72K7QSRXAYCH' where id=9; -update noar ti set v0='KAQ7AS72K7QSRXAYCH' where id=9; -update noar tt set b2='KJ1T1EY0NKK70TXY7ZRAHT' where id=9; -update noar ti set b2='KJ1T1EY0NKK70TXY7ZRAHT' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - f0 int null, - v0 varchar(256) null, - b0 longblob null, - b1 longblob null, - b2 tinyblob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='1L3JD2VY' where id=1; -update noar ti set v0='1L3JD2VY' where id=1; -update noar tt set b0='J63FHEY3TYE' where id=1; -update noar ti set b0='J63FHEY3TYE' where id=1; -update noar tt set v0='J0T1S6EVVKUK2V2SQLI' where id=1; -update noar ti set v0='J0T1S6EVVKUK2V2SQLI' where id=1; -update noar tt set b1='M8EKN39WP0YCKOC07' where id=1; -update noar ti set b1='M8EKN39WP0YCKOC07' where id=1; -update noar tt set v0='00JGZEK9K1SXFJYDHI11' where id=1; -update noar ti set v0='00JGZEK9K1SXFJYDHI11' where id=1; -update noar tt set b2='V0EW5HLMRDU5NF5H5OGLJ94F9HVKJKOC' where id=1; -update noar ti set b2='V0EW5HLMRDU5NF5H5OGLJ94F9HVKJKOC' where id=1; -update noar tt set v0='UTZKBP67QK3J1S41LROR5URPRK9' where id=2; -update noar ti set v0='UTZKBP67QK3J1S41LROR5URPRK9' where id=2; -update noar tt set b0='55ZITT0L6ICEHU' where id=2; -update noar ti set b0='55ZITT0L6ICEHU' where id=2; -update noar tt set v0='7GZF5HQWS218K' where id=2; -update noar ti set v0='7GZF5HQWS218K' where id=2; -update noar tt set b1='TKB' where id=2; -update noar ti set b1='TKB' where id=2; -update noar tt set v0='6SYV0P0SVHDJAVCQRYCZOZ66A0C' where id=2; -update noar ti set v0='6SYV0P0SVHDJAVCQRYCZOZ66A0C' where id=2; -update noar tt set b2='IJ0CX' where id=2; -update noar ti set b2='IJ0CX' where id=2; -update noar tt set v0='MW8GN1C4JCI1SYN7OVRBCX' where id=3; -update noar ti set v0='MW8GN1C4JCI1SYN7OVRBCX' where id=3; -update noar tt set b0='GWJSG5MH9Z02VXJTPHPI' where id=3; -update noar ti set b0='GWJSG5MH9Z02VXJTPHPI' where id=3; -update noar tt set v0='2JQV1F5NYWAVL0CK0TIV8PTUAWN' where id=3; -update noar ti set v0='2JQV1F5NYWAVL0CK0TIV8PTUAWN' where id=3; -update noar tt set b1='MPL5521' where id=3; -update noar ti set b1='MPL5521' where id=3; -update noar tt set v0='J7XJU1UU57M8H5EMY3I7N25USHR' where id=3; -update noar ti set v0='J7XJU1UU57M8H5EMY3I7N25USHR' where id=3; -update noar tt set b2='K7673RNUK0TT9S51Y7K5F959PU' where id=3; -update noar ti set b2='K7673RNUK0TT9S51Y7K5F959PU' where id=3; -update noar tt set v0='7LDNXY9VCK40B474NHE3KAQ11S88E0J' where id=4; -update noar ti set v0='7LDNXY9VCK40B474NHE3KAQ11S88E0J' where id=4; -update noar tt set b0='ZP' where id=4; -update noar ti set b0='ZP' where id=4; -update noar tt set v0='4NY64EYY90YH3SP8O' where id=4; -update noar ti set v0='4NY64EYY90YH3SP8O' where id=4; -update noar tt set b1='KZW4P4WIJTC9J5C062URWJ7JJV' where id=4; -update noar ti set b1='KZW4P4WIJTC9J5C062URWJ7JJV' where id=4; -update noar tt set v0='PPAO' where id=4; -update noar ti set v0='PPAO' where id=4; -update noar tt set b2='BYLQW' where id=4; -update noar ti set b2='BYLQW' where id=4; -update noar tt set v0='RF5GJQCAQUY2XDHC6ODWTDYHGEP93T8R' where id=5; -update noar ti set v0='RF5GJQCAQUY2XDHC6ODWTDYHGEP93T8R' where id=5; -update noar tt set b0='OECWMXC0RC32EE' where id=5; -update noar ti set b0='OECWMXC0RC32EE' where id=5; -update noar tt set v0='8E28C6AR3PXWRI89EH6DDXSF2HY' where id=5; -update noar ti set v0='8E28C6AR3PXWRI89EH6DDXSF2HY' where id=5; -update noar tt set b1='WVUNMT6S4LNXQGEEHD' where id=5; -update noar ti set b1='WVUNMT6S4LNXQGEEHD' where id=5; -update noar tt set v0='WEI8DSRUK6OV8SL2K34L0' where id=5; -update noar ti set v0='WEI8DSRUK6OV8SL2K34L0' where id=5; -update noar tt set b2='SWOC2LRCK9363EEG7DUE4GJSTA' where id=5; -update noar ti set b2='SWOC2LRCK9363EEG7DUE4GJSTA' where id=5; -update noar tt set v0='0MHIDNU8MNQT4DO' where id=6; -update noar ti set v0='0MHIDNU8MNQT4DO' where id=6; -update noar tt set b0='GDV0DO6DLW9ANJWAPNRZ3RYLTR3' where id=6; -update noar ti set b0='GDV0DO6DLW9ANJWAPNRZ3RYLTR3' where id=6; -update noar tt set v0='9G75CWCZS3AD2M8PHI9' where id=6; -update noar ti set v0='9G75CWCZS3AD2M8PHI9' where id=6; -update noar tt set b1='AKDMGXHXNSTN180R80N60' where id=6; -update noar ti set b1='AKDMGXHXNSTN180R80N60' where id=6; -update noar tt set v0='N' where id=6; -update noar ti set v0='N' where id=6; -update noar tt set b2='MUX5CQ7MF6OZW01925CXY7YL03Q' where id=6; -update noar ti set b2='MUX5CQ7MF6OZW01925CXY7YL03Q' where id=6; -update noar tt set v0='AKBO' where id=7; -update noar ti set v0='AKBO' where id=7; -update noar tt set b0='FWZY4IR5QNHRZOI36' where id=7; -update noar ti set b0='FWZY4IR5QNHRZOI36' where id=7; -update noar tt set v0='JRC5GCAF8ITLLL' where id=7; -update noar ti set v0='JRC5GCAF8ITLLL' where id=7; -update noar tt set b1='R2VGE0UTR4S4CR3JDLWUIN' where id=7; -update noar ti set b1='R2VGE0UTR4S4CR3JDLWUIN' where id=7; -update noar tt set v0='7362WX3GF1XRADAX9UBKE' where id=7; -update noar ti set v0='7362WX3GF1XRADAX9UBKE' where id=7; -update noar tt set b2='N1A59W2OJPK8E9N2TRMOXYBAQV06I' where id=7; -update noar ti set b2='N1A59W2OJPK8E9N2TRMOXYBAQV06I' where id=7; -update noar tt set v0='RTEVCC' where id=8; -update noar ti set v0='RTEVCC' where id=8; -update noar tt set b0='ZP7LPXPN5HIV' where id=8; -update noar ti set b0='ZP7LPXPN5HIV' where id=8; -update noar tt set v0='7VGJSXTJDJ9C77HU495GVXAG07CA' where id=8; -update noar ti set v0='7VGJSXTJDJ9C77HU495GVXAG07CA' where id=8; -update noar tt set b1='OXMFEK15KOEE0POD' where id=8; -update noar ti set b1='OXMFEK15KOEE0POD' where id=8; -update noar tt set v0='IJ6Z29ON72W4R7QOSZF5J' where id=8; -update noar ti set v0='IJ6Z29ON72W4R7QOSZF5J' where id=8; -update noar tt set b2='3K2QANRH' where id=8; -update noar ti set b2='3K2QANRH' where id=8; -update noar tt set v0='KRQW683FFJKC11SS6VJKB4V4SG804' where id=9; -update noar ti set v0='KRQW683FFJKC11SS6VJKB4V4SG804' where id=9; -update noar tt set b0='ZN96KNGEM' where id=9; -update noar ti set b0='ZN96KNGEM' where id=9; -update noar tt set v0='PT9UPGQ3N06KG4L4' where id=9; -update noar ti set v0='PT9UPGQ3N06KG4L4' where id=9; -update noar tt set b1='RDHE25CMLNDNBJOQ' where id=9; -update noar ti set b1='RDHE25CMLNDNBJOQ' where id=9; -update noar tt set v0='ZG1UAZ1DT' where id=9; -update noar ti set v0='ZG1UAZ1DT' where id=9; -update noar tt set b2='6HMGD7FA2CB0NHTQKBQ28JQC4IB94VJ' where id=9; -update noar ti set b2='6HMGD7FA2CB0NHTQKBQ28JQC4IB94VJ' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - f0 int not null, - v0 varchar(32) not null, - b0 longblob not null, - b1 longblob not null, - b2 tinyblob not null -) engine=tokudb; -insert into tt values (1,0,'','','',''); -insert into tt values (2,0,'','','',''); -insert into tt values (3,0,'','','',''); -insert into tt values (4,0,'','','',''); -insert into tt values (5,0,'','','',''); -insert into tt values (6,0,'','','',''); -insert into tt values (7,0,'','','',''); -insert into tt values (8,0,'','','',''); -insert into tt values (9,0,'','','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='WPZR' where id=1; -update noar ti set v0='WPZR' where id=1; -update noar tt set b0='G3DM695' where id=1; -update noar ti set b0='G3DM695' where id=1; -update noar tt set v0='H5PXMFUUOQE4S21WLM2I' where id=1; -update noar ti set v0='H5PXMFUUOQE4S21WLM2I' where id=1; -update noar tt set b1='1JDSP964HWWAF' where id=1; -update noar ti set b1='1JDSP964HWWAF' where id=1; -update noar tt set v0='LZP6G776LMNVSGWDHOTLZ4WKC' where id=1; -update noar ti set v0='LZP6G776LMNVSGWDHOTLZ4WKC' where id=1; -update noar tt set b2='H8BFU' where id=1; -update noar ti set b2='H8BFU' where id=1; -update noar tt set v0='LDMXM02I8VLSKY7PWB0EY5NMHP2' where id=2; -update noar ti set v0='LDMXM02I8VLSKY7PWB0EY5NMHP2' where id=2; -update noar tt set b0='51CFRVIT97EBJNIUGXFD9EE0N1ZA' where id=2; -update noar ti set b0='51CFRVIT97EBJNIUGXFD9EE0N1ZA' where id=2; -update noar tt set v0='F7SD3T00DU7' where id=2; -update noar ti set v0='F7SD3T00DU7' where id=2; -update noar tt set b1='H1BS9' where id=2; -update noar ti set b1='H1BS9' where id=2; -update noar tt set v0='PZRYO8EAAJ6YKD' where id=2; -update noar ti set v0='PZRYO8EAAJ6YKD' where id=2; -update noar tt set b2='KQDT9CN6YQF' where id=2; -update noar ti set b2='KQDT9CN6YQF' where id=2; -update noar tt set v0='WO5JXLL73UKVAJN44X0SDNG2S' where id=3; -update noar ti set v0='WO5JXLL73UKVAJN44X0SDNG2S' where id=3; -update noar tt set b0='3HZH745XMUVTNB4VG' where id=3; -update noar ti set b0='3HZH745XMUVTNB4VG' where id=3; -update noar tt set v0='OX2UGT3Y12J' where id=3; -update noar ti set v0='OX2UGT3Y12J' where id=3; -update noar tt set b1='MHSQ4K85IBC' where id=3; -update noar ti set b1='MHSQ4K85IBC' where id=3; -update noar tt set v0='LFQSS8FY9XHPD2VX1RAVWRUSNQ' where id=3; -update noar ti set v0='LFQSS8FY9XHPD2VX1RAVWRUSNQ' where id=3; -update noar tt set b2='OKTNN3YLFN6WE3NGKJKVAW' where id=3; -update noar ti set b2='OKTNN3YLFN6WE3NGKJKVAW' where id=3; -update noar tt set v0='1TW884EQ6JW' where id=4; -update noar ti set v0='1TW884EQ6JW' where id=4; -update noar tt set b0='O9N9S5EY3J8X5MHLY6K5K' where id=4; -update noar ti set b0='O9N9S5EY3J8X5MHLY6K5K' where id=4; -update noar tt set v0='VK6' where id=4; -update noar ti set v0='VK6' where id=4; -update noar tt set b1='B4E71A90GJCH43R84COC' where id=4; -update noar ti set b1='B4E71A90GJCH43R84COC' where id=4; -update noar tt set v0='ZOPPIAAGIOFJ96KPTWM3CW8R' where id=4; -update noar ti set v0='ZOPPIAAGIOFJ96KPTWM3CW8R' where id=4; -update noar tt set b2='9VZX251NDLJPALUTVJB8UU344O6R' where id=4; -update noar ti set b2='9VZX251NDLJPALUTVJB8UU344O6R' where id=4; -update noar tt set v0='FTJ94X' where id=5; -update noar ti set v0='FTJ94X' where id=5; -update noar tt set b0='VG' where id=5; -update noar ti set b0='VG' where id=5; -update noar tt set v0='8V0Z9I1MAVPY7RXM6QWZ' where id=5; -update noar ti set v0='8V0Z9I1MAVPY7RXM6QWZ' where id=5; -update noar tt set b1='MX1Y0FJCJH22AQV' where id=5; -update noar ti set b1='MX1Y0FJCJH22AQV' where id=5; -update noar tt set v0='67IQDE6' where id=5; -update noar ti set v0='67IQDE6' where id=5; -update noar tt set b2='AMEF2FCZ7Q4XUM8D14HCGFDJVWWB' where id=5; -update noar ti set b2='AMEF2FCZ7Q4XUM8D14HCGFDJVWWB' where id=5; -update noar tt set v0='FZ3RV3865BUCJS43DM2' where id=6; -update noar ti set v0='FZ3RV3865BUCJS43DM2' where id=6; -update noar tt set b0='IMBZQL7D01P2TBFN2DD' where id=6; -update noar ti set b0='IMBZQL7D01P2TBFN2DD' where id=6; -update noar tt set v0='QE' where id=6; -update noar ti set v0='QE' where id=6; -update noar tt set b1='J9GRXSSLTE2GU9U4UIZRW1TFKT826TK' where id=6; -update noar ti set b1='J9GRXSSLTE2GU9U4UIZRW1TFKT826TK' where id=6; -update noar tt set v0='3TKLQ3EZQQTLNHGTZJ' where id=6; -update noar ti set v0='3TKLQ3EZQQTLNHGTZJ' where id=6; -update noar tt set b2='TL3D6O75MDQSR59' where id=6; -update noar ti set b2='TL3D6O75MDQSR59' where id=6; -update noar tt set v0='PXCPFNLIFFDM4OVEJFC7B' where id=7; -update noar ti set v0='PXCPFNLIFFDM4OVEJFC7B' where id=7; -update noar tt set b0='3EOP59WHOD83HAFQDA5NALRI6' where id=7; -update noar ti set b0='3EOP59WHOD83HAFQDA5NALRI6' where id=7; -update noar tt set v0='Y75A549BRD4BTP39' where id=7; -update noar ti set v0='Y75A549BRD4BTP39' where id=7; -update noar tt set b1='TX0QXULZRQWO3BSHZMZHL1ZY35JSCO5' where id=7; -update noar ti set b1='TX0QXULZRQWO3BSHZMZHL1ZY35JSCO5' where id=7; -update noar tt set v0='FI995XA46' where id=7; -update noar ti set v0='FI995XA46' where id=7; -update noar tt set b2='86Y83L1OSHKBG91UTZUZNM3H' where id=7; -update noar ti set b2='86Y83L1OSHKBG91UTZUZNM3H' where id=7; -update noar tt set v0='RINVCVCE21B1EP4PLJFZ' where id=8; -update noar ti set v0='RINVCVCE21B1EP4PLJFZ' where id=8; -update noar tt set b0='V3X309FY2K71HXZU0JT' where id=8; -update noar ti set b0='V3X309FY2K71HXZU0JT' where id=8; -update noar tt set v0='EL6QU3YPDWWIOK4D5PLX6' where id=8; -update noar ti set v0='EL6QU3YPDWWIOK4D5PLX6' where id=8; -update noar tt set b1='B6FJ6RGM0H' where id=8; -update noar ti set b1='B6FJ6RGM0H' where id=8; -update noar tt set v0='2H' where id=8; -update noar ti set v0='2H' where id=8; -update noar tt set b2='ESM' where id=8; -update noar ti set b2='ESM' where id=8; -update noar tt set v0='U4RT6NWD0K9MI6YMRRMDV' where id=9; -update noar ti set v0='U4RT6NWD0K9MI6YMRRMDV' where id=9; -update noar tt set b0='IV2V8LCWM' where id=9; -update noar ti set b0='IV2V8LCWM' where id=9; -update noar tt set v0='6W1G7KT5ZHQ9A' where id=9; -update noar ti set v0='6W1G7KT5ZHQ9A' where id=9; -update noar tt set b1='XRBMM2NCWF5OA64APS4FEA5XF74ZF' where id=9; -update noar ti set b1='XRBMM2NCWF5OA64APS4FEA5XF74ZF' where id=9; -update noar tt set v0='IR' where id=9; -update noar ti set v0='IR' where id=9; -update noar tt set b2='FJRKDT7EKKEYUX2S066P53KLIZJH3TP0' where id=9; -update noar ti set b2='FJRKDT7EKKEYUX2S066P53KLIZJH3TP0' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - f0 int not null, - v0 varchar(256) not null, - b0 longblob not null, - b1 longblob not null, - b2 tinyblob not null -) engine=tokudb; -insert into tt values (1,0,'','','',''); -insert into tt values (2,0,'','','',''); -insert into tt values (3,0,'','','',''); -insert into tt values (4,0,'','','',''); -insert into tt values (5,0,'','','',''); -insert into tt values (6,0,'','','',''); -insert into tt values (7,0,'','','',''); -insert into tt values (8,0,'','','',''); -insert into tt values (9,0,'','','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='XGV6B2CN4FUGTLE28OTMFT9NENVBG' where id=1; -update noar ti set v0='XGV6B2CN4FUGTLE28OTMFT9NENVBG' where id=1; -update noar tt set b0='CUYLL78GT4EUHOK' where id=1; -update noar ti set b0='CUYLL78GT4EUHOK' where id=1; -update noar tt set v0='7WWDNDW00GVQW4YWVDT4PWY' where id=1; -update noar ti set v0='7WWDNDW00GVQW4YWVDT4PWY' where id=1; -update noar tt set b1='KWXY61AY1PB' where id=1; -update noar ti set b1='KWXY61AY1PB' where id=1; -update noar tt set v0='V2ZNN5TCST0858HJ68F1' where id=1; -update noar ti set v0='V2ZNN5TCST0858HJ68F1' where id=1; -update noar tt set b2='W45XMBPGLQKJABEP3VK' where id=1; -update noar ti set b2='W45XMBPGLQKJABEP3VK' where id=1; -update noar tt set v0='AF84VXYKP64W33NABCA9AGT4I' where id=2; -update noar ti set v0='AF84VXYKP64W33NABCA9AGT4I' where id=2; -update noar tt set b0='2ILGUHBGV6GQRUJYXXJB' where id=2; -update noar ti set b0='2ILGUHBGV6GQRUJYXXJB' where id=2; -update noar tt set v0='TQNDHYL8BZ3X0IVISYEAXSYL65SZUVX' where id=2; -update noar ti set v0='TQNDHYL8BZ3X0IVISYEAXSYL65SZUVX' where id=2; -update noar tt set b1='D4111SCDP1O5Y7KCNO37' where id=2; -update noar ti set b1='D4111SCDP1O5Y7KCNO37' where id=2; -update noar tt set v0='H8KIAM2KH' where id=2; -update noar ti set v0='H8KIAM2KH' where id=2; -update noar tt set b2='F366PA7' where id=2; -update noar ti set b2='F366PA7' where id=2; -update noar tt set v0='1826MAL2EM0UM0ZXQ3HV' where id=3; -update noar ti set v0='1826MAL2EM0UM0ZXQ3HV' where id=3; -update noar tt set b0='NV3UEGUPA2QD44FL7E5V0XS' where id=3; -update noar ti set b0='NV3UEGUPA2QD44FL7E5V0XS' where id=3; -update noar tt set v0='UPBJI5CH7E0SL50CDCVBLA7J4UPDE' where id=3; -update noar ti set v0='UPBJI5CH7E0SL50CDCVBLA7J4UPDE' where id=3; -update noar tt set b1='ECBYDUZS5I4Z2QNSMKQMR' where id=3; -update noar ti set b1='ECBYDUZS5I4Z2QNSMKQMR' where id=3; -update noar tt set v0='S2YY1MK9HWBUSRRFFN0PROPKO' where id=3; -update noar ti set v0='S2YY1MK9HWBUSRRFFN0PROPKO' where id=3; -update noar tt set b2='ARHSUP5AFRS7E06424N68LBUXYE3X' where id=3; -update noar ti set b2='ARHSUP5AFRS7E06424N68LBUXYE3X' where id=3; -update noar tt set v0='0U03E03PYC4Y2Q52SW6HYF6O6MK9Z8' where id=4; -update noar ti set v0='0U03E03PYC4Y2Q52SW6HYF6O6MK9Z8' where id=4; -update noar tt set b0='ZASFFIH2NEIG28MFXNPURC' where id=4; -update noar ti set b0='ZASFFIH2NEIG28MFXNPURC' where id=4; -update noar tt set v0='0LQNM46E5TWNAZ946SKE305L' where id=4; -update noar ti set v0='0LQNM46E5TWNAZ946SKE305L' where id=4; -update noar tt set b1='C4W0TA9MTPN22VARP53K8Q4WMN' where id=4; -update noar ti set b1='C4W0TA9MTPN22VARP53K8Q4WMN' where id=4; -update noar tt set v0='P1THW093M8SZ6Q6AH7W7PTFEM4JXG' where id=4; -update noar ti set v0='P1THW093M8SZ6Q6AH7W7PTFEM4JXG' where id=4; -update noar tt set b2='EDE445I' where id=4; -update noar ti set b2='EDE445I' where id=4; -update noar tt set v0='7X5LDS8INWJCMVD54AAQB5CS6OI6M' where id=5; -update noar ti set v0='7X5LDS8INWJCMVD54AAQB5CS6OI6M' where id=5; -update noar tt set b0='SMQOVG3YALP' where id=5; -update noar ti set b0='SMQOVG3YALP' where id=5; -update noar tt set v0='6C2EF7MBO6PGPOVZGA9X8LD' where id=5; -update noar ti set v0='6C2EF7MBO6PGPOVZGA9X8LD' where id=5; -update noar tt set b1='GCQ9GPTPK5KT3T8QKI9T6EVPXD9L' where id=5; -update noar ti set b1='GCQ9GPTPK5KT3T8QKI9T6EVPXD9L' where id=5; -update noar tt set v0='2WUSO4MKBBI9ZLQFYS69KC' where id=5; -update noar ti set v0='2WUSO4MKBBI9ZLQFYS69KC' where id=5; -update noar tt set b2='DAN8F10RV' where id=5; -update noar ti set b2='DAN8F10RV' where id=5; -update noar tt set v0='95PE3215C79KFRO5SF' where id=6; -update noar ti set v0='95PE3215C79KFRO5SF' where id=6; -update noar tt set b0='1HR72A5LM' where id=6; -update noar ti set b0='1HR72A5LM' where id=6; -update noar tt set v0='KC7OLKK9I0NIMRXU1B6B' where id=6; -update noar ti set v0='KC7OLKK9I0NIMRXU1B6B' where id=6; -update noar tt set b1='CPAGNKQURE83HTIO7VFFLJXAJQJCJ' where id=6; -update noar ti set b1='CPAGNKQURE83HTIO7VFFLJXAJQJCJ' where id=6; -update noar tt set v0='TN86' where id=6; -update noar ti set v0='TN86' where id=6; -update noar tt set b2='06KF2T8ZZJKFYCPOLYBQYCOY' where id=6; -update noar ti set b2='06KF2T8ZZJKFYCPOLYBQYCOY' where id=6; -update noar tt set v0='6T1G201LY3QO440HTS' where id=7; -update noar ti set v0='6T1G201LY3QO440HTS' where id=7; -update noar tt set b0='CJTEMQMAX58V4' where id=7; -update noar ti set b0='CJTEMQMAX58V4' where id=7; -update noar tt set v0='XIC0CCVY' where id=7; -update noar ti set v0='XIC0CCVY' where id=7; -update noar tt set b1='CVMDDB05QF' where id=7; -update noar ti set b1='CVMDDB05QF' where id=7; -update noar tt set v0='3F17S62' where id=7; -update noar ti set v0='3F17S62' where id=7; -update noar tt set b2='6WO0L' where id=7; -update noar ti set b2='6WO0L' where id=7; -update noar tt set v0='KASOE1EU6ERK2V222O8AT4ZA85W1L' where id=8; -update noar ti set v0='KASOE1EU6ERK2V222O8AT4ZA85W1L' where id=8; -update noar tt set b0='0VVOB2NQ9V' where id=8; -update noar ti set b0='0VVOB2NQ9V' where id=8; -update noar tt set v0='K0DE5AHZ9' where id=8; -update noar ti set v0='K0DE5AHZ9' where id=8; -update noar tt set b1='5TW3W4G5TR0JAG' where id=8; -update noar ti set b1='5TW3W4G5TR0JAG' where id=8; -update noar tt set v0='7YTXOBB424' where id=8; -update noar ti set v0='7YTXOBB424' where id=8; -update noar tt set b2='42DNEUB7I38KRFQZQV0LTRP7VHE5R6D' where id=8; -update noar ti set b2='42DNEUB7I38KRFQZQV0LTRP7VHE5R6D' where id=8; -update noar tt set v0='Z7NFVKW' where id=9; -update noar ti set v0='Z7NFVKW' where id=9; -update noar tt set b0='3YF76E6LFX' where id=9; -update noar ti set b0='3YF76E6LFX' where id=9; -update noar tt set v0='0FLT6Z1' where id=9; -update noar ti set v0='0FLT6Z1' where id=9; -update noar tt set b1='DDL' where id=9; -update noar ti set b1='DDL' where id=9; -update noar tt set v0='UNA71MW4A' where id=9; -update noar ti set v0='UNA71MW4A' where id=9; -update noar tt set b2='R67I38VQDJ0TWU3IYIQYS1Y2FALF' where id=9; -update noar ti set b2='R67I38VQDJ0TWU3IYIQYS1Y2FALF' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - f0 int null, - v0 varchar(32) null, - b0 longblob null, - b1 longblob null, - b2 blob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='RNS4I3W1J3GW' where id=1; -update noar ti set v0='RNS4I3W1J3GW' where id=1; -update noar tt set b0='K' where id=1; -update noar ti set b0='K' where id=1; -update noar tt set v0='PNZSM19UHHVRJDMTVEYAGOMRFG4K' where id=1; -update noar ti set v0='PNZSM19UHHVRJDMTVEYAGOMRFG4K' where id=1; -update noar tt set b1='H' where id=1; -update noar ti set b1='H' where id=1; -update noar tt set v0='XPRN99HQV25HEM' where id=1; -update noar ti set v0='XPRN99HQV25HEM' where id=1; -update noar tt set b2='PD2L19MOTZIRQTQUU86Q6L' where id=1; -update noar ti set b2='PD2L19MOTZIRQTQUU86Q6L' where id=1; -update noar tt set v0='MOFU0RL3M8LBA42WQ6D' where id=2; -update noar ti set v0='MOFU0RL3M8LBA42WQ6D' where id=2; -update noar tt set b0='2KRY3ZIIM5WE0K' where id=2; -update noar ti set b0='2KRY3ZIIM5WE0K' where id=2; -update noar tt set v0='D8FOJTEFDDZKK30CVF5QA' where id=2; -update noar ti set v0='D8FOJTEFDDZKK30CVF5QA' where id=2; -update noar tt set b1='ZK3A2VJ509K0O6RRZCPAXYCP' where id=2; -update noar ti set b1='ZK3A2VJ509K0O6RRZCPAXYCP' where id=2; -update noar tt set v0='P43W25Q' where id=2; -update noar ti set v0='P43W25Q' where id=2; -update noar tt set b2='I8ISXTLW742JLU5IBIHGJJPNDB47G822' where id=2; -update noar ti set b2='I8ISXTLW742JLU5IBIHGJJPNDB47G822' where id=2; -update noar tt set v0='8061F2SI' where id=3; -update noar ti set v0='8061F2SI' where id=3; -update noar tt set b0='8N82V' where id=3; -update noar ti set b0='8N82V' where id=3; -update noar tt set v0='R' where id=3; -update noar ti set v0='R' where id=3; -update noar tt set b1='I2GWXPVWH8G6FLMH63QFXV3FW' where id=3; -update noar ti set b1='I2GWXPVWH8G6FLMH63QFXV3FW' where id=3; -update noar tt set v0='DHP' where id=3; -update noar ti set v0='DHP' where id=3; -update noar tt set b2='RKBU38WQAKMVT7SF3' where id=3; -update noar ti set b2='RKBU38WQAKMVT7SF3' where id=3; -update noar tt set v0='Q6V003VR5OSTD01XG12SJ5B2GNDQ' where id=4; -update noar ti set v0='Q6V003VR5OSTD01XG12SJ5B2GNDQ' where id=4; -update noar tt set b0='82SPMMEBINXV0UH3X3S8G8HE5A1VU7' where id=4; -update noar ti set b0='82SPMMEBINXV0UH3X3S8G8HE5A1VU7' where id=4; -update noar tt set v0='7OU1ISCFBSV3UUKASEPAYUO7OZ' where id=4; -update noar ti set v0='7OU1ISCFBSV3UUKASEPAYUO7OZ' where id=4; -update noar tt set b1='BLHDXIKWF616UAW9QF' where id=4; -update noar ti set b1='BLHDXIKWF616UAW9QF' where id=4; -update noar tt set v0='KJZJ88PZFWNXS0YM7X' where id=4; -update noar ti set v0='KJZJ88PZFWNXS0YM7X' where id=4; -update noar tt set b2='QYPRUTZXNHSU35CZK8HNBG4T22WIFJ' where id=4; -update noar ti set b2='QYPRUTZXNHSU35CZK8HNBG4T22WIFJ' where id=4; -update noar tt set v0='KP' where id=5; -update noar ti set v0='KP' where id=5; -update noar tt set b0='308MJM3KH7BNC32TK61EU0JM7TCDV' where id=5; -update noar ti set b0='308MJM3KH7BNC32TK61EU0JM7TCDV' where id=5; -update noar tt set v0='TH8OHLHYRDTJ' where id=5; -update noar ti set v0='TH8OHLHYRDTJ' where id=5; -update noar tt set b1='M1CI6FPW9Q10N81' where id=5; -update noar ti set b1='M1CI6FPW9Q10N81' where id=5; -update noar tt set v0='JHN4LMRYY3HEJ9HHGSOWZCQKCUN0BJA' where id=5; -update noar ti set v0='JHN4LMRYY3HEJ9HHGSOWZCQKCUN0BJA' where id=5; -update noar tt set b2='UYPQ1W' where id=5; -update noar ti set b2='UYPQ1W' where id=5; -update noar tt set v0='U8SRIU0ZMD83JLGR3X4XD8J4M6JICJ' where id=6; -update noar ti set v0='U8SRIU0ZMD83JLGR3X4XD8J4M6JICJ' where id=6; -update noar tt set b0='2EWPEUWI3QE8R' where id=6; -update noar ti set b0='2EWPEUWI3QE8R' where id=6; -update noar tt set v0='3YECOUP56R171E' where id=6; -update noar ti set v0='3YECOUP56R171E' where id=6; -update noar tt set b1='CR0KSW58SREUV8JCN0RN2' where id=6; -update noar ti set b1='CR0KSW58SREUV8JCN0RN2' where id=6; -update noar tt set v0='BDNP7' where id=6; -update noar ti set v0='BDNP7' where id=6; -update noar tt set b2='IIOW82DK9XM' where id=6; -update noar ti set b2='IIOW82DK9XM' where id=6; -update noar tt set v0='N70R04QVDHH296HDZ06BX' where id=7; -update noar ti set v0='N70R04QVDHH296HDZ06BX' where id=7; -update noar tt set b0='LNTYHYFLWMBXN0G5TVJYQ' where id=7; -update noar ti set b0='LNTYHYFLWMBXN0G5TVJYQ' where id=7; -update noar tt set v0='0N3XXT9G' where id=7; -update noar ti set v0='0N3XXT9G' where id=7; -update noar tt set b1='MYQAF0ONB58LUOECPNR3XSCNJP' where id=7; -update noar ti set b1='MYQAF0ONB58LUOECPNR3XSCNJP' where id=7; -update noar tt set v0='P' where id=7; -update noar ti set v0='P' where id=7; -update noar tt set b2='7R' where id=7; -update noar ti set b2='7R' where id=7; -update noar tt set v0='B10NRY3BTS' where id=8; -update noar ti set v0='B10NRY3BTS' where id=8; -update noar tt set b0='0N5Q7WK9HC5JQNAHZZKT0P64TCQ20' where id=8; -update noar ti set b0='0N5Q7WK9HC5JQNAHZZKT0P64TCQ20' where id=8; -update noar tt set v0='EBAJ' where id=8; -update noar ti set v0='EBAJ' where id=8; -update noar tt set b1='NA4MH' where id=8; -update noar ti set b1='NA4MH' where id=8; -update noar tt set v0='LKV7LSLDUOLF' where id=8; -update noar ti set v0='LKV7LSLDUOLF' where id=8; -update noar tt set b2='KZKAETOA2IOQNHBF3YLO7MCB6MA7KCUN' where id=8; -update noar ti set b2='KZKAETOA2IOQNHBF3YLO7MCB6MA7KCUN' where id=8; -update noar tt set v0='PLO9ZRD' where id=9; -update noar ti set v0='PLO9ZRD' where id=9; -update noar tt set b0='FPYO1H2C' where id=9; -update noar ti set b0='FPYO1H2C' where id=9; -update noar tt set v0='14GSNG9Q' where id=9; -update noar ti set v0='14GSNG9Q' where id=9; -update noar tt set b1='4' where id=9; -update noar ti set b1='4' where id=9; -update noar tt set v0='E3SCJRMQ6G6F6TX6ICW5P' where id=9; -update noar ti set v0='E3SCJRMQ6G6F6TX6ICW5P' where id=9; -update noar tt set b2='68SUYGFTJ5KPL0I9TKYIH7621NDA8P3E' where id=9; -update noar ti set b2='68SUYGFTJ5KPL0I9TKYIH7621NDA8P3E' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - f0 int null, - v0 varchar(256) null, - b0 longblob null, - b1 longblob null, - b2 blob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='CS9Q254KLP' where id=1; -update noar ti set v0='CS9Q254KLP' where id=1; -update noar tt set b0='7WPRXV76R9V1B38LVOBV' where id=1; -update noar ti set b0='7WPRXV76R9V1B38LVOBV' where id=1; -update noar tt set v0='DAIF8SA8J' where id=1; -update noar ti set v0='DAIF8SA8J' where id=1; -update noar tt set b1='DGP5W5CGAM4T8Q7ZDHP9RFMLFM6OHV3' where id=1; -update noar ti set b1='DGP5W5CGAM4T8Q7ZDHP9RFMLFM6OHV3' where id=1; -update noar tt set v0='Y' where id=1; -update noar ti set v0='Y' where id=1; -update noar tt set b2='X1S9MDJXP4WU0CN1TZOM' where id=1; -update noar ti set b2='X1S9MDJXP4WU0CN1TZOM' where id=1; -update noar tt set v0='5HTBOH64WLYI8VTZ2KPY' where id=2; -update noar ti set v0='5HTBOH64WLYI8VTZ2KPY' where id=2; -update noar tt set b0='Q6QHONHJS5ZDDXNDRG2CSMV' where id=2; -update noar ti set b0='Q6QHONHJS5ZDDXNDRG2CSMV' where id=2; -update noar tt set v0='EACY23ORG92C9JSWFMW' where id=2; -update noar ti set v0='EACY23ORG92C9JSWFMW' where id=2; -update noar tt set b1='7' where id=2; -update noar ti set b1='7' where id=2; -update noar tt set v0='R' where id=2; -update noar ti set v0='R' where id=2; -update noar tt set b2='4O4DSK2AE1GPCXUCOUCHW31JI' where id=2; -update noar ti set b2='4O4DSK2AE1GPCXUCOUCHW31JI' where id=2; -update noar tt set v0='25YZM4NXC7CYXBGF07TN' where id=3; -update noar ti set v0='25YZM4NXC7CYXBGF07TN' where id=3; -update noar tt set b0='L6DF4QQ9475Q' where id=3; -update noar ti set b0='L6DF4QQ9475Q' where id=3; -update noar tt set v0='2WB66PK33NENKA1XTOHN2ZLXQKBZT2ZO' where id=3; -update noar ti set v0='2WB66PK33NENKA1XTOHN2ZLXQKBZT2ZO' where id=3; -update noar tt set b1='YRC4C8L4' where id=3; -update noar ti set b1='YRC4C8L4' where id=3; -update noar tt set v0='98KKGSKSIH6HJEK5DB2ZR8SU' where id=3; -update noar ti set v0='98KKGSKSIH6HJEK5DB2ZR8SU' where id=3; -update noar tt set b2='Q1P17AXJS9JAI7P42125FM37O9GU9PTI' where id=3; -update noar ti set b2='Q1P17AXJS9JAI7P42125FM37O9GU9PTI' where id=3; -update noar tt set v0='9EDQ4' where id=4; -update noar ti set v0='9EDQ4' where id=4; -update noar tt set b0='0IN6FZ50PF' where id=4; -update noar ti set b0='0IN6FZ50PF' where id=4; -update noar tt set v0='5UFO' where id=4; -update noar ti set v0='5UFO' where id=4; -update noar tt set b1='FO0JY9MS2US3J' where id=4; -update noar ti set b1='FO0JY9MS2US3J' where id=4; -update noar tt set v0='RC02ULX' where id=4; -update noar ti set v0='RC02ULX' where id=4; -update noar tt set b2='6E6BRKCK0WC81R' where id=4; -update noar ti set b2='6E6BRKCK0WC81R' where id=4; -update noar tt set v0='D6MOP6W9K3SDUI6' where id=5; -update noar ti set v0='D6MOP6W9K3SDUI6' where id=5; -update noar tt set b0='KZFAOQM' where id=5; -update noar ti set b0='KZFAOQM' where id=5; -update noar tt set v0='6SZRRG3IGEK7NUMS' where id=5; -update noar ti set v0='6SZRRG3IGEK7NUMS' where id=5; -update noar tt set b1='EICPN4INYQEZQWITTMGOMBA8R' where id=5; -update noar ti set b1='EICPN4INYQEZQWITTMGOMBA8R' where id=5; -update noar tt set v0='REG15BWE8ZELOHE5W3KBQY73AYPFJVQ' where id=5; -update noar ti set v0='REG15BWE8ZELOHE5W3KBQY73AYPFJVQ' where id=5; -update noar tt set b2='7PD67UF3V' where id=5; -update noar ti set b2='7PD67UF3V' where id=5; -update noar tt set v0='A' where id=6; -update noar ti set v0='A' where id=6; -update noar tt set b0='58UBNRGEJDS' where id=6; -update noar ti set b0='58UBNRGEJDS' where id=6; -update noar tt set v0='MFMGN6M1H' where id=6; -update noar ti set v0='MFMGN6M1H' where id=6; -update noar tt set b1='XLZ5IZECMEN' where id=6; -update noar ti set b1='XLZ5IZECMEN' where id=6; -update noar tt set v0='XS077DOGPLG9' where id=6; -update noar ti set v0='XS077DOGPLG9' where id=6; -update noar tt set b2='TM1IXJZICPYFEKI3ENPOX' where id=6; -update noar ti set b2='TM1IXJZICPYFEKI3ENPOX' where id=6; -update noar tt set v0='9MSMK' where id=7; -update noar ti set v0='9MSMK' where id=7; -update noar tt set b0='GPTNW5L08I6TLTZAY43DO9S40JDLNNP4' where id=7; -update noar ti set b0='GPTNW5L08I6TLTZAY43DO9S40JDLNNP4' where id=7; -update noar tt set v0='4N' where id=7; -update noar ti set v0='4N' where id=7; -update noar tt set b1='PEUHCVD' where id=7; -update noar ti set b1='PEUHCVD' where id=7; -update noar tt set v0='ZVXNPB2L' where id=7; -update noar ti set v0='ZVXNPB2L' where id=7; -update noar tt set b2='HQ5' where id=7; -update noar ti set b2='HQ5' where id=7; -update noar tt set v0='9JAXSTZW8WQL8QGDQJHN2I7' where id=8; -update noar ti set v0='9JAXSTZW8WQL8QGDQJHN2I7' where id=8; -update noar tt set b0='1TBGG6' where id=8; -update noar ti set b0='1TBGG6' where id=8; -update noar tt set v0='2X4PTHT17ACMOF1V9W1T3DR1N9C' where id=8; -update noar ti set v0='2X4PTHT17ACMOF1V9W1T3DR1N9C' where id=8; -update noar tt set b1='VJJSHVFA0HJW6' where id=8; -update noar ti set b1='VJJSHVFA0HJW6' where id=8; -update noar tt set v0='S43ZCA00D4TA' where id=8; -update noar ti set v0='S43ZCA00D4TA' where id=8; -update noar tt set b2='U87Y1ZI79LS81FDZO5M' where id=8; -update noar ti set b2='U87Y1ZI79LS81FDZO5M' where id=8; -update noar tt set v0='H0WWS2402O29YYP66' where id=9; -update noar ti set v0='H0WWS2402O29YYP66' where id=9; -update noar tt set b0='KC11SOA9J2GDP626DDVR8C52V9' where id=9; -update noar ti set b0='KC11SOA9J2GDP626DDVR8C52V9' where id=9; -update noar tt set v0='E6U3TQ958J5' where id=9; -update noar ti set v0='E6U3TQ958J5' where id=9; -update noar tt set b1='5K09D88' where id=9; -update noar ti set b1='5K09D88' where id=9; -update noar tt set v0='HU79FN8GSBNS' where id=9; -update noar ti set v0='HU79FN8GSBNS' where id=9; -update noar tt set b2='F6RY9' where id=9; -update noar ti set b2='F6RY9' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - f0 int not null, - v0 varchar(32) not null, - b0 longblob not null, - b1 longblob not null, - b2 blob not null -) engine=tokudb; -insert into tt values (1,0,'','','',''); -insert into tt values (2,0,'','','',''); -insert into tt values (3,0,'','','',''); -insert into tt values (4,0,'','','',''); -insert into tt values (5,0,'','','',''); -insert into tt values (6,0,'','','',''); -insert into tt values (7,0,'','','',''); -insert into tt values (8,0,'','','',''); -insert into tt values (9,0,'','','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='A6ANV7NSH933E5' where id=1; -update noar ti set v0='A6ANV7NSH933E5' where id=1; -update noar tt set b0='BPKSZP2HZQ6SZW8GMBX4L2B8I3HZ' where id=1; -update noar ti set b0='BPKSZP2HZQ6SZW8GMBX4L2B8I3HZ' where id=1; -update noar tt set v0='OQ7W198AGXBD3IO1DWG62NLYA76XCS4Y' where id=1; -update noar ti set v0='OQ7W198AGXBD3IO1DWG62NLYA76XCS4Y' where id=1; -update noar tt set b1='E7ELAFZXZBQV1XK' where id=1; -update noar ti set b1='E7ELAFZXZBQV1XK' where id=1; -update noar tt set v0='VCV6TJH506G5ZLQ0BW' where id=1; -update noar ti set v0='VCV6TJH506G5ZLQ0BW' where id=1; -update noar tt set b2='7YFAIVW57L7FYSN7GGP5WD74LKRK' where id=1; -update noar ti set b2='7YFAIVW57L7FYSN7GGP5WD74LKRK' where id=1; -update noar tt set v0='98D9SDV4O2SNNII4' where id=2; -update noar ti set v0='98D9SDV4O2SNNII4' where id=2; -update noar tt set b0='DH77Y0GI0JR95NQ' where id=2; -update noar ti set b0='DH77Y0GI0JR95NQ' where id=2; -update noar tt set v0='6FDAGC91F5TISAS7ZZH' where id=2; -update noar ti set v0='6FDAGC91F5TISAS7ZZH' where id=2; -update noar tt set b1='99BNM8V0AOIDQXD8I8OP3QWZTZ' where id=2; -update noar ti set b1='99BNM8V0AOIDQXD8I8OP3QWZTZ' where id=2; -update noar tt set v0='TG0FS6HZMLEBNT2' where id=2; -update noar ti set v0='TG0FS6HZMLEBNT2' where id=2; -update noar tt set b2='BDI4RIXP9GBD4ALELRFRFB3FZYO72AP9' where id=2; -update noar ti set b2='BDI4RIXP9GBD4ALELRFRFB3FZYO72AP9' where id=2; -update noar tt set v0='P392DGUO462HTZOALHL5IF' where id=3; -update noar ti set v0='P392DGUO462HTZOALHL5IF' where id=3; -update noar tt set b0='NKKNCTN5LB2EYS8A6XFBCKIL60TBX3D8' where id=3; -update noar ti set b0='NKKNCTN5LB2EYS8A6XFBCKIL60TBX3D8' where id=3; -update noar tt set v0='FE4S1G028HVD3XAKKH8737Z' where id=3; -update noar ti set v0='FE4S1G028HVD3XAKKH8737Z' where id=3; -update noar tt set b1='3F90' where id=3; -update noar ti set b1='3F90' where id=3; -update noar tt set v0='RNYG6I5DORKGNB9WCMJ' where id=3; -update noar ti set v0='RNYG6I5DORKGNB9WCMJ' where id=3; -update noar tt set b2='FMY7CL5EPQVXP6B9BG2XU618ANN3CAW' where id=3; -update noar ti set b2='FMY7CL5EPQVXP6B9BG2XU618ANN3CAW' where id=3; -update noar tt set v0='WVENPQGA8H9FMF36X0J' where id=4; -update noar ti set v0='WVENPQGA8H9FMF36X0J' where id=4; -update noar tt set b0='HQ0OP' where id=4; -update noar ti set b0='HQ0OP' where id=4; -update noar tt set v0='4LU3AEZE81FUX8Z6MY' where id=4; -update noar ti set v0='4LU3AEZE81FUX8Z6MY' where id=4; -update noar tt set b1='VJ05LIWF8OZQO9JGHW65GGQ8KE29' where id=4; -update noar ti set b1='VJ05LIWF8OZQO9JGHW65GGQ8KE29' where id=4; -update noar tt set v0='PP85AV3O2OEVS156RS93TW22AX' where id=4; -update noar ti set v0='PP85AV3O2OEVS156RS93TW22AX' where id=4; -update noar tt set b2='C1TH' where id=4; -update noar ti set b2='C1TH' where id=4; -update noar tt set v0='800VZ2QP4912P0R' where id=5; -update noar ti set v0='800VZ2QP4912P0R' where id=5; -update noar tt set b0='7NUMQPOL9' where id=5; -update noar ti set b0='7NUMQPOL9' where id=5; -update noar tt set v0='VHDCUTUOG3FMHGZQMG9' where id=5; -update noar ti set v0='VHDCUTUOG3FMHGZQMG9' where id=5; -update noar tt set b1='QWTG38457QTQQLIJ2' where id=5; -update noar ti set b1='QWTG38457QTQQLIJ2' where id=5; -update noar tt set v0='095SQL0' where id=5; -update noar ti set v0='095SQL0' where id=5; -update noar tt set b2='Y' where id=5; -update noar ti set b2='Y' where id=5; -update noar tt set v0='K178IINGDC68SDV7LHE8FVP2XN' where id=6; -update noar ti set v0='K178IINGDC68SDV7LHE8FVP2XN' where id=6; -update noar tt set b0='GZR2QLEZQYQZTY0ZU93EH8N' where id=6; -update noar ti set b0='GZR2QLEZQYQZTY0ZU93EH8N' where id=6; -update noar tt set v0='8DJW8E5PTKT0EGKIW5Q3' where id=6; -update noar ti set v0='8DJW8E5PTKT0EGKIW5Q3' where id=6; -update noar tt set b1='4O2VZFLEGDKNKOC7ETD' where id=6; -update noar ti set b1='4O2VZFLEGDKNKOC7ETD' where id=6; -update noar tt set v0='0K' where id=6; -update noar ti set v0='0K' where id=6; -update noar tt set b2='CJUHF' where id=6; -update noar ti set b2='CJUHF' where id=6; -update noar tt set v0='6K0IDWZF28JFV7NU8J56XU9' where id=7; -update noar ti set v0='6K0IDWZF28JFV7NU8J56XU9' where id=7; -update noar tt set b0='NEVP9MAVQYNGQKNTLEJZB' where id=7; -update noar ti set b0='NEVP9MAVQYNGQKNTLEJZB' where id=7; -update noar tt set v0='P193ISM679CWQAN3YZ1CX' where id=7; -update noar ti set v0='P193ISM679CWQAN3YZ1CX' where id=7; -update noar tt set b1='GR2DGQZ0KVH' where id=7; -update noar ti set b1='GR2DGQZ0KVH' where id=7; -update noar tt set v0='FL0X17THORT5D' where id=7; -update noar ti set v0='FL0X17THORT5D' where id=7; -update noar tt set b2='Q7GWF572WM6L9WVDSF' where id=7; -update noar ti set b2='Q7GWF572WM6L9WVDSF' where id=7; -update noar tt set v0='KPC6UMRJB56' where id=8; -update noar ti set v0='KPC6UMRJB56' where id=8; -update noar tt set b0='TVUWIP75WL4V' where id=8; -update noar ti set b0='TVUWIP75WL4V' where id=8; -update noar tt set v0='OP8I1WB' where id=8; -update noar ti set v0='OP8I1WB' where id=8; -update noar tt set b1='CWBA8RK1EQ99U1V9W5F' where id=8; -update noar ti set b1='CWBA8RK1EQ99U1V9W5F' where id=8; -update noar tt set v0='RFQYJVYOH' where id=8; -update noar ti set v0='RFQYJVYOH' where id=8; -update noar tt set b2='W' where id=8; -update noar ti set b2='W' where id=8; -update noar tt set v0='DW0WCVWTKE3XHPRQ4J3OEMCMS5' where id=9; -update noar ti set v0='DW0WCVWTKE3XHPRQ4J3OEMCMS5' where id=9; -update noar tt set b0='0KHBKIEK7W1JSUM' where id=9; -update noar ti set b0='0KHBKIEK7W1JSUM' where id=9; -update noar tt set v0='ITRMQ974LJ2NE28B02' where id=9; -update noar ti set v0='ITRMQ974LJ2NE28B02' where id=9; -update noar tt set b1='HWUWMDV0' where id=9; -update noar ti set b1='HWUWMDV0' where id=9; -update noar tt set v0='TDWHIGSGUGSYNVSZYX9NTII9FJ4WWDB' where id=9; -update noar ti set v0='TDWHIGSGUGSYNVSZYX9NTII9FJ4WWDB' where id=9; -update noar tt set b2='UTOHP5DRDYBN6Q6899ENS9GOJK0F2E' where id=9; -update noar ti set b2='UTOHP5DRDYBN6Q6899ENS9GOJK0F2E' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - f0 int not null, - v0 varchar(256) not null, - b0 longblob not null, - b1 longblob not null, - b2 blob not null -) engine=tokudb; -insert into tt values (1,0,'','','',''); -insert into tt values (2,0,'','','',''); -insert into tt values (3,0,'','','',''); -insert into tt values (4,0,'','','',''); -insert into tt values (5,0,'','','',''); -insert into tt values (6,0,'','','',''); -insert into tt values (7,0,'','','',''); -insert into tt values (8,0,'','','',''); -insert into tt values (9,0,'','','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='Q40VL7193ODVFE34T0' where id=1; -update noar ti set v0='Q40VL7193ODVFE34T0' where id=1; -update noar tt set b0='V5RV4TSPQX69PELX7KFQ' where id=1; -update noar ti set b0='V5RV4TSPQX69PELX7KFQ' where id=1; -update noar tt set v0='N27OG3J6PDRCD9XHEGOV' where id=1; -update noar ti set v0='N27OG3J6PDRCD9XHEGOV' where id=1; -update noar tt set b1='DPOAV8BV68G65GP17BLB' where id=1; -update noar ti set b1='DPOAV8BV68G65GP17BLB' where id=1; -update noar tt set v0='6VGDZEP5' where id=1; -update noar ti set v0='6VGDZEP5' where id=1; -update noar tt set b2='NOAV4L703NB5SX2PHZCYKHB6T7R' where id=1; -update noar ti set b2='NOAV4L703NB5SX2PHZCYKHB6T7R' where id=1; -update noar tt set v0='5' where id=2; -update noar ti set v0='5' where id=2; -update noar tt set b0='JA5M692FAUPH8YD' where id=2; -update noar ti set b0='JA5M692FAUPH8YD' where id=2; -update noar tt set v0='1ZKDTEB5AQIE1KH2U2XKGNY4X' where id=2; -update noar ti set v0='1ZKDTEB5AQIE1KH2U2XKGNY4X' where id=2; -update noar tt set b1='QBHKWUOHKNWAI7MLPGNE' where id=2; -update noar ti set b1='QBHKWUOHKNWAI7MLPGNE' where id=2; -update noar tt set v0='7TUMK6RPH3PUX00RGQCQMXDADENN9' where id=2; -update noar ti set v0='7TUMK6RPH3PUX00RGQCQMXDADENN9' where id=2; -update noar tt set b2='WA6KO98E3ZVIC7J3ITSDIFRMK' where id=2; -update noar ti set b2='WA6KO98E3ZVIC7J3ITSDIFRMK' where id=2; -update noar tt set v0='5OWI6XJWKNJON16O9ZGTQPC7RRPA' where id=3; -update noar ti set v0='5OWI6XJWKNJON16O9ZGTQPC7RRPA' where id=3; -update noar tt set b0='SR' where id=3; -update noar ti set b0='SR' where id=3; -update noar tt set v0='F1K' where id=3; -update noar ti set v0='F1K' where id=3; -update noar tt set b1='AQ2QJ7XCGIRWMVWXX4CDGLDN4EONK916' where id=3; -update noar ti set b1='AQ2QJ7XCGIRWMVWXX4CDGLDN4EONK916' where id=3; -update noar tt set v0='SOQ0K4503O03ESH' where id=3; -update noar ti set v0='SOQ0K4503O03ESH' where id=3; -update noar tt set b2='4BVCVILSWJYAL5930IHFA5' where id=3; -update noar ti set b2='4BVCVILSWJYAL5930IHFA5' where id=3; -update noar tt set v0='N4SDF' where id=4; -update noar ti set v0='N4SDF' where id=4; -update noar tt set b0='MTA9KCYYXOYLI2FTG4' where id=4; -update noar ti set b0='MTA9KCYYXOYLI2FTG4' where id=4; -update noar tt set v0='V' where id=4; -update noar ti set v0='V' where id=4; -update noar tt set b1='Q6VI4V0S3KDWU288TWPPNUE3TXSTP' where id=4; -update noar ti set b1='Q6VI4V0S3KDWU288TWPPNUE3TXSTP' where id=4; -update noar tt set v0='QZYJJSL6HI042NII36SYYJ7AMKT' where id=4; -update noar ti set v0='QZYJJSL6HI042NII36SYYJ7AMKT' where id=4; -update noar tt set b2='8AQEABPWUV78W5YT2V102MM4' where id=4; -update noar ti set b2='8AQEABPWUV78W5YT2V102MM4' where id=4; -update noar tt set v0='GRHFPPL3IQ4GVYLDNICBCN' where id=5; -update noar ti set v0='GRHFPPL3IQ4GVYLDNICBCN' where id=5; -update noar tt set b0='H5Z5OGF7XANTER6ZOEVXYIPUGFS2O8B' where id=5; -update noar ti set b0='H5Z5OGF7XANTER6ZOEVXYIPUGFS2O8B' where id=5; -update noar tt set v0='LYQ5HW5740I8N1VXQLZGK0A5QIT6M9KN' where id=5; -update noar ti set v0='LYQ5HW5740I8N1VXQLZGK0A5QIT6M9KN' where id=5; -update noar tt set b1='4D3XK3OKDDJ6TT708JSAYVKMIYVSQBB' where id=5; -update noar ti set b1='4D3XK3OKDDJ6TT708JSAYVKMIYVSQBB' where id=5; -update noar tt set v0='C423N11' where id=5; -update noar ti set v0='C423N11' where id=5; -update noar tt set b2='18SAG6I70M0VNUXILFU3DB' where id=5; -update noar ti set b2='18SAG6I70M0VNUXILFU3DB' where id=5; -update noar tt set v0='BY3UG98SS5RW9C26HFU' where id=6; -update noar ti set v0='BY3UG98SS5RW9C26HFU' where id=6; -update noar tt set b0='SE5' where id=6; -update noar ti set b0='SE5' where id=6; -update noar tt set v0='1ERKY7HPB6K0OTUC8HM' where id=6; -update noar ti set v0='1ERKY7HPB6K0OTUC8HM' where id=6; -update noar tt set b1='4E77VC4CBINAZUZNE5BM27222MO' where id=6; -update noar ti set b1='4E77VC4CBINAZUZNE5BM27222MO' where id=6; -update noar tt set v0='DFT0U5FT' where id=6; -update noar ti set v0='DFT0U5FT' where id=6; -update noar tt set b2='QC7JGSHVI7V0C5WSNGK53WHUMOVGKT3' where id=6; -update noar ti set b2='QC7JGSHVI7V0C5WSNGK53WHUMOVGKT3' where id=6; -update noar tt set v0='2Y' where id=7; -update noar ti set v0='2Y' where id=7; -update noar tt set b0='EM32N4XLC5D2MQ02' where id=7; -update noar ti set b0='EM32N4XLC5D2MQ02' where id=7; -update noar tt set v0='QKT599MG06SJB1B5PD' where id=7; -update noar ti set v0='QKT599MG06SJB1B5PD' where id=7; -update noar tt set b1='WQ37RIMMI2HUS3EJC7L5V6ZN' where id=7; -update noar ti set b1='WQ37RIMMI2HUS3EJC7L5V6ZN' where id=7; -update noar tt set v0='2CAMWPI8S0RBBE8ZJDGQT6VS0W8A1C' where id=7; -update noar ti set v0='2CAMWPI8S0RBBE8ZJDGQT6VS0W8A1C' where id=7; -update noar tt set b2='AWAH' where id=7; -update noar ti set b2='AWAH' where id=7; -update noar tt set v0='BV6XAGWTXN5ITRI40AZ371G4KE' where id=8; -update noar ti set v0='BV6XAGWTXN5ITRI40AZ371G4KE' where id=8; -update noar tt set b0='I5ZXYVERHZ' where id=8; -update noar ti set b0='I5ZXYVERHZ' where id=8; -update noar tt set v0='S2VEAZ855XWA' where id=8; -update noar ti set v0='S2VEAZ855XWA' where id=8; -update noar tt set b1='8X7EWHZ0' where id=8; -update noar ti set b1='8X7EWHZ0' where id=8; -update noar tt set v0='4JPJ2CSDDEKUUEB1USG7YFIW7' where id=8; -update noar ti set v0='4JPJ2CSDDEKUUEB1USG7YFIW7' where id=8; -update noar tt set b2='DII' where id=8; -update noar ti set b2='DII' where id=8; -update noar tt set v0='5A75G60KPYCWOOIPVYX53PYYBI' where id=9; -update noar ti set v0='5A75G60KPYCWOOIPVYX53PYYBI' where id=9; -update noar tt set b0='Z3U12JGTDJOGDUVR0T4WO7BL8K8TTOP' where id=9; -update noar ti set b0='Z3U12JGTDJOGDUVR0T4WO7BL8K8TTOP' where id=9; -update noar tt set v0='EBF0CHA3W1A8Z2QTSQZUPZM5WV' where id=9; -update noar ti set v0='EBF0CHA3W1A8Z2QTSQZUPZM5WV' where id=9; -update noar tt set b1='NPF3SKH' where id=9; -update noar ti set b1='NPF3SKH' where id=9; -update noar tt set v0='DJ51X5O799KN1EDNT4' where id=9; -update noar ti set v0='DJ51X5O799KN1EDNT4' where id=9; -update noar tt set b2='H83LWYFZOFYE93FTIE' where id=9; -update noar ti set b2='H83LWYFZOFYE93FTIE' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - f0 int null, - v0 varchar(32) null, - b0 longblob null, - b1 longblob null, - b2 mediumblob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='L216J66DXUFDB6' where id=1; -update noar ti set v0='L216J66DXUFDB6' where id=1; -update noar tt set b0='3JNUGSHGGWC31BA5K1EU9I77T4L' where id=1; -update noar ti set b0='3JNUGSHGGWC31BA5K1EU9I77T4L' where id=1; -update noar tt set v0='PPQ9FYR21W6FFX3KU1X4JPPU' where id=1; -update noar ti set v0='PPQ9FYR21W6FFX3KU1X4JPPU' where id=1; -update noar tt set b1='RE4L8HV2585YPI892R' where id=1; -update noar ti set b1='RE4L8HV2585YPI892R' where id=1; -update noar tt set v0='3Z2DRB5P6HHXLRVONQVQ31KU35UMP' where id=1; -update noar ti set v0='3Z2DRB5P6HHXLRVONQVQ31KU35UMP' where id=1; -update noar tt set b2='OXHDY9R2L7IQ5KR5RWF33CGAR29Y' where id=1; -update noar ti set b2='OXHDY9R2L7IQ5KR5RWF33CGAR29Y' where id=1; -update noar tt set v0='RM9ZO9IFY4E' where id=2; -update noar ti set v0='RM9ZO9IFY4E' where id=2; -update noar tt set b0='JTPNEJ' where id=2; -update noar ti set b0='JTPNEJ' where id=2; -update noar tt set v0='I2N3XAFX5W8CVQ' where id=2; -update noar ti set v0='I2N3XAFX5W8CVQ' where id=2; -update noar tt set b1='Z2EBTZN3I9VYPWJO03' where id=2; -update noar ti set b1='Z2EBTZN3I9VYPWJO03' where id=2; -update noar tt set v0='5T7RB44ZHU4I89UF' where id=2; -update noar ti set v0='5T7RB44ZHU4I89UF' where id=2; -update noar tt set b2='D82GI1XWTUV4VI' where id=2; -update noar ti set b2='D82GI1XWTUV4VI' where id=2; -update noar tt set v0='WV27QB711I60AJO' where id=3; -update noar ti set v0='WV27QB711I60AJO' where id=3; -update noar tt set b0='7CZY1W6K' where id=3; -update noar ti set b0='7CZY1W6K' where id=3; -update noar tt set v0='82AMGMC' where id=3; -update noar ti set v0='82AMGMC' where id=3; -update noar tt set b1='JUT92YANW4G4QUPJ6' where id=3; -update noar ti set b1='JUT92YANW4G4QUPJ6' where id=3; -update noar tt set v0='55UNJDOWWEIL7VV' where id=3; -update noar ti set v0='55UNJDOWWEIL7VV' where id=3; -update noar tt set b2='0UW9' where id=3; -update noar ti set b2='0UW9' where id=3; -update noar tt set v0='BB75FMHPUEPO' where id=4; -update noar ti set v0='BB75FMHPUEPO' where id=4; -update noar tt set b0='K3BQ360V2A526TWDYD' where id=4; -update noar ti set b0='K3BQ360V2A526TWDYD' where id=4; -update noar tt set v0='6J8N' where id=4; -update noar ti set v0='6J8N' where id=4; -update noar tt set b1='AMU5' where id=4; -update noar ti set b1='AMU5' where id=4; -update noar tt set v0='B27R' where id=4; -update noar ti set v0='B27R' where id=4; -update noar tt set b2='O' where id=4; -update noar ti set b2='O' where id=4; -update noar tt set v0='31' where id=5; -update noar ti set v0='31' where id=5; -update noar tt set b0='KDDL7JOZVMSPAUA7BOR' where id=5; -update noar ti set b0='KDDL7JOZVMSPAUA7BOR' where id=5; -update noar tt set v0='HV' where id=5; -update noar ti set v0='HV' where id=5; -update noar tt set b1='TSG40YRD03OJ63PPU4OF6ZGW87RB' where id=5; -update noar ti set b1='TSG40YRD03OJ63PPU4OF6ZGW87RB' where id=5; -update noar tt set v0='UV' where id=5; -update noar ti set v0='UV' where id=5; -update noar tt set b2='49O' where id=5; -update noar ti set b2='49O' where id=5; -update noar tt set v0='G0UGH40M3BR89' where id=6; -update noar ti set v0='G0UGH40M3BR89' where id=6; -update noar tt set b0='8XRKCLUP' where id=6; -update noar ti set b0='8XRKCLUP' where id=6; -update noar tt set v0='4G08NKNGG56U8C0SNGBK' where id=6; -update noar ti set v0='4G08NKNGG56U8C0SNGBK' where id=6; -update noar tt set b1='U5Q1FGOWIUFTTB1' where id=6; -update noar ti set b1='U5Q1FGOWIUFTTB1' where id=6; -update noar tt set v0='5DXSCQPO2C0DTMTC' where id=6; -update noar ti set v0='5DXSCQPO2C0DTMTC' where id=6; -update noar tt set b2='UW2I29J5X6Y9T2KGY' where id=6; -update noar ti set b2='UW2I29J5X6Y9T2KGY' where id=6; -update noar tt set v0='B5MQYIXBK' where id=7; -update noar ti set v0='B5MQYIXBK' where id=7; -update noar tt set b0='PDD50CBPYGLVREJYRQZKYBOLV2HLX5' where id=7; -update noar ti set b0='PDD50CBPYGLVREJYRQZKYBOLV2HLX5' where id=7; -update noar tt set v0='FZMC' where id=7; -update noar ti set v0='FZMC' where id=7; -update noar tt set b1='H' where id=7; -update noar ti set b1='H' where id=7; -update noar tt set v0='1105F5OL' where id=7; -update noar ti set v0='1105F5OL' where id=7; -update noar tt set b2='8WTAS92G8A1JIOBV8LC9HL' where id=7; -update noar ti set b2='8WTAS92G8A1JIOBV8LC9HL' where id=7; -update noar tt set v0='IKTS1RCAWVE6WAN6AG548' where id=8; -update noar ti set v0='IKTS1RCAWVE6WAN6AG548' where id=8; -update noar tt set b0='F7V79OAO' where id=8; -update noar ti set b0='F7V79OAO' where id=8; -update noar tt set v0='N' where id=8; -update noar ti set v0='N' where id=8; -update noar tt set b1='7AL' where id=8; -update noar ti set b1='7AL' where id=8; -update noar tt set v0='5N' where id=8; -update noar ti set v0='5N' where id=8; -update noar tt set b2='SYMCSRP0MIP' where id=8; -update noar ti set b2='SYMCSRP0MIP' where id=8; -update noar tt set v0='0HOU7X8TI958RM4PEDD9FULXK' where id=9; -update noar ti set v0='0HOU7X8TI958RM4PEDD9FULXK' where id=9; -update noar tt set b0='Q2R324PIM' where id=9; -update noar ti set b0='Q2R324PIM' where id=9; -update noar tt set v0='6VZASL7MA5ZCHVAWDV18' where id=9; -update noar ti set v0='6VZASL7MA5ZCHVAWDV18' where id=9; -update noar tt set b1='1FNS0848JEGELV3YS9IC8E3BR' where id=9; -update noar ti set b1='1FNS0848JEGELV3YS9IC8E3BR' where id=9; -update noar tt set v0='BMJWRDRBCBQF9KT6PCERSX' where id=9; -update noar ti set v0='BMJWRDRBCBQF9KT6PCERSX' where id=9; -update noar tt set b2='KFUEK5STYM94I' where id=9; -update noar ti set b2='KFUEK5STYM94I' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - f0 int null, - v0 varchar(256) null, - b0 longblob null, - b1 longblob null, - b2 mediumblob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='2ZJAGF2H06JVV4Y2ZJNQD0GF' where id=1; -update noar ti set v0='2ZJAGF2H06JVV4Y2ZJNQD0GF' where id=1; -update noar tt set b0='7' where id=1; -update noar ti set b0='7' where id=1; -update noar tt set v0='C1MVXJGRTB43I150HUW6D7UFXKB' where id=1; -update noar ti set v0='C1MVXJGRTB43I150HUW6D7UFXKB' where id=1; -update noar tt set b1='E6' where id=1; -update noar ti set b1='E6' where id=1; -update noar tt set v0='XT4IDAUGS53L338TX89' where id=1; -update noar ti set v0='XT4IDAUGS53L338TX89' where id=1; -update noar tt set b2='IUDCY3UHT7Y9W' where id=1; -update noar ti set b2='IUDCY3UHT7Y9W' where id=1; -update noar tt set v0='L88M2' where id=2; -update noar ti set v0='L88M2' where id=2; -update noar tt set b0='BCAWJ80C3Q9BLJUVZTMFD99OZW4C4' where id=2; -update noar ti set b0='BCAWJ80C3Q9BLJUVZTMFD99OZW4C4' where id=2; -update noar tt set v0='MPS' where id=2; -update noar ti set v0='MPS' where id=2; -update noar tt set b1='7N60NEE3MAHIMHIUMWN5WG' where id=2; -update noar ti set b1='7N60NEE3MAHIMHIUMWN5WG' where id=2; -update noar tt set v0='GIZ9GB' where id=2; -update noar ti set v0='GIZ9GB' where id=2; -update noar tt set b2='RVZ' where id=2; -update noar ti set b2='RVZ' where id=2; -update noar tt set v0='L60O11U' where id=3; -update noar ti set v0='L60O11U' where id=3; -update noar tt set b0='KZP4M65M628QHB0RYW' where id=3; -update noar ti set b0='KZP4M65M628QHB0RYW' where id=3; -update noar tt set v0='CUXBJ92HROQOV971UZWU5SVGCG' where id=3; -update noar ti set v0='CUXBJ92HROQOV971UZWU5SVGCG' where id=3; -update noar tt set b1='10VMTK4HEZJAFAEIDBP6U39ZC' where id=3; -update noar ti set b1='10VMTK4HEZJAFAEIDBP6U39ZC' where id=3; -update noar tt set v0='9CNV5JGB3AI85KXEFMFBNURYTS' where id=3; -update noar ti set v0='9CNV5JGB3AI85KXEFMFBNURYTS' where id=3; -update noar tt set b2='684VPUULD43UWPO' where id=3; -update noar ti set b2='684VPUULD43UWPO' where id=3; -update noar tt set v0='UDN8MYPX7XB5XPNDN2PSQV26OJEAEYM' where id=4; -update noar ti set v0='UDN8MYPX7XB5XPNDN2PSQV26OJEAEYM' where id=4; -update noar tt set b0='9WOPXKBQ' where id=4; -update noar ti set b0='9WOPXKBQ' where id=4; -update noar tt set v0='JEN39H2SEXEXNXUG42NMABL1A' where id=4; -update noar ti set v0='JEN39H2SEXEXNXUG42NMABL1A' where id=4; -update noar tt set b1='2UZ1W' where id=4; -update noar ti set b1='2UZ1W' where id=4; -update noar tt set v0='G9ZPRRG5E1TY7F' where id=4; -update noar ti set v0='G9ZPRRG5E1TY7F' where id=4; -update noar tt set b2='FDAH3UGHO' where id=4; -update noar ti set b2='FDAH3UGHO' where id=4; -update noar tt set v0='WOB4FBKF78WUVG9NTW8XFSDWH' where id=5; -update noar ti set v0='WOB4FBKF78WUVG9NTW8XFSDWH' where id=5; -update noar tt set b0='W' where id=5; -update noar ti set b0='W' where id=5; -update noar tt set v0='P6GWJUW3XAL7UZBXVOIS3993' where id=5; -update noar ti set v0='P6GWJUW3XAL7UZBXVOIS3993' where id=5; -update noar tt set b1='KR2NGIJF1MTZ8' where id=5; -update noar ti set b1='KR2NGIJF1MTZ8' where id=5; -update noar tt set v0='WIRUG' where id=5; -update noar ti set v0='WIRUG' where id=5; -update noar tt set b2='HS8W2DE589RPAE250WW' where id=5; -update noar ti set b2='HS8W2DE589RPAE250WW' where id=5; -update noar tt set v0='E39EDBEO9S' where id=6; -update noar ti set v0='E39EDBEO9S' where id=6; -update noar tt set b0='22Z5GXHKLC53NZND1NKM9H0L78K8' where id=6; -update noar ti set b0='22Z5GXHKLC53NZND1NKM9H0L78K8' where id=6; -update noar tt set v0='0IUUGFJO1OVUWJL990DW3HDBX09' where id=6; -update noar ti set v0='0IUUGFJO1OVUWJL990DW3HDBX09' where id=6; -update noar tt set b1='3B2087MV2AY99M7XB1C' where id=6; -update noar ti set b1='3B2087MV2AY99M7XB1C' where id=6; -update noar tt set v0='AB0UC53R' where id=6; -update noar ti set v0='AB0UC53R' where id=6; -update noar tt set b2='QRWUE5CM4F2U' where id=6; -update noar ti set b2='QRWUE5CM4F2U' where id=6; -update noar tt set v0='7YBB0BVQ24OZMZUO7QUD6Z8F3A0KG' where id=7; -update noar ti set v0='7YBB0BVQ24OZMZUO7QUD6Z8F3A0KG' where id=7; -update noar tt set b0='87Y2MYJSYXJ4IF8UGOFFZKMS' where id=7; -update noar ti set b0='87Y2MYJSYXJ4IF8UGOFFZKMS' where id=7; -update noar tt set v0='73LSTH0BXZW36OA6LVJMPKUIWE' where id=7; -update noar ti set v0='73LSTH0BXZW36OA6LVJMPKUIWE' where id=7; -update noar tt set b1='65TPUR989EH09W3O' where id=7; -update noar ti set b1='65TPUR989EH09W3O' where id=7; -update noar tt set v0='G7I6LERBGXSS6BJLP921Q' where id=7; -update noar ti set v0='G7I6LERBGXSS6BJLP921Q' where id=7; -update noar tt set b2='J18GXSZP2GVXBP4ZKLHCYETYWUKN8F6' where id=7; -update noar ti set b2='J18GXSZP2GVXBP4ZKLHCYETYWUKN8F6' where id=7; -update noar tt set v0='9X43MHCEDI8DRYO8H15EZ0GZ6QC2Z2' where id=8; -update noar ti set v0='9X43MHCEDI8DRYO8H15EZ0GZ6QC2Z2' where id=8; -update noar tt set b0='AO' where id=8; -update noar ti set b0='AO' where id=8; -update noar tt set v0='ZJQ5M56YT65VCYZ2JE9YQ4H' where id=8; -update noar ti set v0='ZJQ5M56YT65VCYZ2JE9YQ4H' where id=8; -update noar tt set b1='6RNRART7CFE50XV0RW93NXQ5VBN4V2VO' where id=8; -update noar ti set b1='6RNRART7CFE50XV0RW93NXQ5VBN4V2VO' where id=8; -update noar tt set v0='FTG4DVK1A54X3XZYPEAHV0' where id=8; -update noar ti set v0='FTG4DVK1A54X3XZYPEAHV0' where id=8; -update noar tt set b2='RAWRYFCQQ6HHOXHGP9GKMT2Q' where id=8; -update noar ti set b2='RAWRYFCQQ6HHOXHGP9GKMT2Q' where id=8; -update noar tt set v0='FP7' where id=9; -update noar ti set v0='FP7' where id=9; -update noar tt set b0='ZZB6DKBO' where id=9; -update noar ti set b0='ZZB6DKBO' where id=9; -update noar tt set v0='XWKRYVS' where id=9; -update noar ti set v0='XWKRYVS' where id=9; -update noar tt set b1='IG5805TARFTSG7RNXW0DT5' where id=9; -update noar ti set b1='IG5805TARFTSG7RNXW0DT5' where id=9; -update noar tt set v0='30I4C1L2MDYQOTKLJMG2T3JW' where id=9; -update noar ti set v0='30I4C1L2MDYQOTKLJMG2T3JW' where id=9; -update noar tt set b2='6ZZ3WQVOMUNKSW3QKQ6HV4ELR' where id=9; -update noar ti set b2='6ZZ3WQVOMUNKSW3QKQ6HV4ELR' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - f0 int not null, - v0 varchar(32) not null, - b0 longblob not null, - b1 longblob not null, - b2 mediumblob not null -) engine=tokudb; -insert into tt values (1,0,'','','',''); -insert into tt values (2,0,'','','',''); -insert into tt values (3,0,'','','',''); -insert into tt values (4,0,'','','',''); -insert into tt values (5,0,'','','',''); -insert into tt values (6,0,'','','',''); -insert into tt values (7,0,'','','',''); -insert into tt values (8,0,'','','',''); -insert into tt values (9,0,'','','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='NWHSJHAYMED9LHNQZM5P' where id=1; -update noar ti set v0='NWHSJHAYMED9LHNQZM5P' where id=1; -update noar tt set b0='KN2SZIYVYZYJBWGSMD' where id=1; -update noar ti set b0='KN2SZIYVYZYJBWGSMD' where id=1; -update noar tt set v0='X05D' where id=1; -update noar ti set v0='X05D' where id=1; -update noar tt set b1='T4H9PY559DJA88U2CYKJIJL0S4H27YTE' where id=1; -update noar ti set b1='T4H9PY559DJA88U2CYKJIJL0S4H27YTE' where id=1; -update noar tt set v0='KQK7ZE4SN5OH1A9K31YNBOM60EE3' where id=1; -update noar ti set v0='KQK7ZE4SN5OH1A9K31YNBOM60EE3' where id=1; -update noar tt set b2='C791GBP' where id=1; -update noar ti set b2='C791GBP' where id=1; -update noar tt set v0='3' where id=2; -update noar ti set v0='3' where id=2; -update noar tt set b0='09EU3XY68D172BL7MYJ0NO9' where id=2; -update noar ti set b0='09EU3XY68D172BL7MYJ0NO9' where id=2; -update noar tt set v0='N87PW08T2CZAMKKNKX0K5UKI4VQQ' where id=2; -update noar ti set v0='N87PW08T2CZAMKKNKX0K5UKI4VQQ' where id=2; -update noar tt set b1='LUDSRYIBTIKXVKNTP' where id=2; -update noar ti set b1='LUDSRYIBTIKXVKNTP' where id=2; -update noar tt set v0='A2CGYVFWZJKJP601A5G3S' where id=2; -update noar ti set v0='A2CGYVFWZJKJP601A5G3S' where id=2; -update noar tt set b2='3' where id=2; -update noar ti set b2='3' where id=2; -update noar tt set v0='SK7DCQTR6AOV' where id=3; -update noar ti set v0='SK7DCQTR6AOV' where id=3; -update noar tt set b0='TX044FKN6TVMY7Q8Q9C24' where id=3; -update noar ti set b0='TX044FKN6TVMY7Q8Q9C24' where id=3; -update noar tt set v0='3K7Q27B2CX8UC7SXW' where id=3; -update noar ti set v0='3K7Q27B2CX8UC7SXW' where id=3; -update noar tt set b1='LEXADGPDYKORJA' where id=3; -update noar ti set b1='LEXADGPDYKORJA' where id=3; -update noar tt set v0='L9SQ7WJW7MH4LS6CVM6LF8H7UVDQA4KN' where id=3; -update noar ti set v0='L9SQ7WJW7MH4LS6CVM6LF8H7UVDQA4KN' where id=3; -update noar tt set b2='F613SNE0I' where id=3; -update noar ti set b2='F613SNE0I' where id=3; -update noar tt set v0='4PYXQ382NKFQ0IK4P302NZ0' where id=4; -update noar ti set v0='4PYXQ382NKFQ0IK4P302NZ0' where id=4; -update noar tt set b0='B66OJJ44SST1SYVD38P' where id=4; -update noar ti set b0='B66OJJ44SST1SYVD38P' where id=4; -update noar tt set v0='6OXVVQAPA6' where id=4; -update noar ti set v0='6OXVVQAPA6' where id=4; -update noar tt set b1='L4T43M8L3' where id=4; -update noar ti set b1='L4T43M8L3' where id=4; -update noar tt set v0='UBZIT7HDIA783R8O2' where id=4; -update noar ti set v0='UBZIT7HDIA783R8O2' where id=4; -update noar tt set b2='NEQN3Z5MWI4ZPX8NL' where id=4; -update noar ti set b2='NEQN3Z5MWI4ZPX8NL' where id=4; -update noar tt set v0='HZ2SH0JQ11CMBGBGRPLJH01ZQNKGO2PT' where id=5; -update noar ti set v0='HZ2SH0JQ11CMBGBGRPLJH01ZQNKGO2PT' where id=5; -update noar tt set b0='548PXEBUH5Y25MHBGI' where id=5; -update noar ti set b0='548PXEBUH5Y25MHBGI' where id=5; -update noar tt set v0='RO' where id=5; -update noar ti set v0='RO' where id=5; -update noar tt set b1='2YNKHL05H' where id=5; -update noar ti set b1='2YNKHL05H' where id=5; -update noar tt set v0='BR' where id=5; -update noar ti set v0='BR' where id=5; -update noar tt set b2='VOX0H24KGGL9MZ' where id=5; -update noar ti set b2='VOX0H24KGGL9MZ' where id=5; -update noar tt set v0='F0NLNKPVIYFEZE5M0KALUA8TR8BIOR99' where id=6; -update noar ti set v0='F0NLNKPVIYFEZE5M0KALUA8TR8BIOR99' where id=6; -update noar tt set b0='W8I0B94RUSAH2' where id=6; -update noar ti set b0='W8I0B94RUSAH2' where id=6; -update noar tt set v0='6CFG33' where id=6; -update noar ti set v0='6CFG33' where id=6; -update noar tt set b1='2ZZY6U' where id=6; -update noar ti set b1='2ZZY6U' where id=6; -update noar tt set v0='HK08953CN6BQ4JXBK6661PCX' where id=6; -update noar ti set v0='HK08953CN6BQ4JXBK6661PCX' where id=6; -update noar tt set b2='6A3FMJIP78G6HIT7S' where id=6; -update noar ti set b2='6A3FMJIP78G6HIT7S' where id=6; -update noar tt set v0='9DU2GIVO84MYR7ZMZM9ZECGI0004C' where id=7; -update noar ti set v0='9DU2GIVO84MYR7ZMZM9ZECGI0004C' where id=7; -update noar tt set b0='HN3X0NCPFNCK' where id=7; -update noar ti set b0='HN3X0NCPFNCK' where id=7; -update noar tt set v0='P3HQFY31' where id=7; -update noar ti set v0='P3HQFY31' where id=7; -update noar tt set b1='YG4ZQAVR' where id=7; -update noar ti set b1='YG4ZQAVR' where id=7; -update noar tt set v0='C3QIWL4M8B' where id=7; -update noar ti set v0='C3QIWL4M8B' where id=7; -update noar tt set b2='AC11DOLF2RBNEH7B8' where id=7; -update noar ti set b2='AC11DOLF2RBNEH7B8' where id=7; -update noar tt set v0='9OTLAZ1E4' where id=8; -update noar ti set v0='9OTLAZ1E4' where id=8; -update noar tt set b0='SEEP3OE5L7H51BSWX1CAY6D86IMNZH6' where id=8; -update noar ti set b0='SEEP3OE5L7H51BSWX1CAY6D86IMNZH6' where id=8; -update noar tt set v0='FOWT349K24V8D2XVSBJK' where id=8; -update noar ti set v0='FOWT349K24V8D2XVSBJK' where id=8; -update noar tt set b1='KDCLCSSC3Q9OIY' where id=8; -update noar ti set b1='KDCLCSSC3Q9OIY' where id=8; -update noar tt set v0='RWIXT4BUO7XWPRNS7' where id=8; -update noar ti set v0='RWIXT4BUO7XWPRNS7' where id=8; -update noar tt set b2='CDTY7JAHNH16X39V7KKWSYHO3T3' where id=8; -update noar ti set b2='CDTY7JAHNH16X39V7KKWSYHO3T3' where id=8; -update noar tt set v0='J5PW316XFOGK89MAWP4EIN' where id=9; -update noar ti set v0='J5PW316XFOGK89MAWP4EIN' where id=9; -update noar tt set b0='6TEX1PX15LWBXX63' where id=9; -update noar ti set b0='6TEX1PX15LWBXX63' where id=9; -update noar tt set v0='GCD8ELC2BQ10MDG73RC0J' where id=9; -update noar ti set v0='GCD8ELC2BQ10MDG73RC0J' where id=9; -update noar tt set b1='Y4' where id=9; -update noar ti set b1='Y4' where id=9; -update noar tt set v0='ZQBUVKJ9M5Y4B57SO274HY6GTYTSD85' where id=9; -update noar ti set v0='ZQBUVKJ9M5Y4B57SO274HY6GTYTSD85' where id=9; -update noar tt set b2='G8XH9' where id=9; -update noar ti set b2='G8XH9' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - f0 int not null, - v0 varchar(256) not null, - b0 longblob not null, - b1 longblob not null, - b2 mediumblob not null -) engine=tokudb; -insert into tt values (1,0,'','','',''); -insert into tt values (2,0,'','','',''); -insert into tt values (3,0,'','','',''); -insert into tt values (4,0,'','','',''); -insert into tt values (5,0,'','','',''); -insert into tt values (6,0,'','','',''); -insert into tt values (7,0,'','','',''); -insert into tt values (8,0,'','','',''); -insert into tt values (9,0,'','','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='N5' where id=1; -update noar ti set v0='N5' where id=1; -update noar tt set b0='UACQC7JU4' where id=1; -update noar ti set b0='UACQC7JU4' where id=1; -update noar tt set v0='VTWW08W3FSXPGF67' where id=1; -update noar ti set v0='VTWW08W3FSXPGF67' where id=1; -update noar tt set b1='4Y5M334SHKRNP8UCFNXZA5WXV2BP0TXO' where id=1; -update noar ti set b1='4Y5M334SHKRNP8UCFNXZA5WXV2BP0TXO' where id=1; -update noar tt set v0='VAQI85KWNE' where id=1; -update noar ti set v0='VAQI85KWNE' where id=1; -update noar tt set b2='5W9KAEJF7HUDI' where id=1; -update noar ti set b2='5W9KAEJF7HUDI' where id=1; -update noar tt set v0='QMONG2VN16NTEGIK47THTB1UPB6O2DV' where id=2; -update noar ti set v0='QMONG2VN16NTEGIK47THTB1UPB6O2DV' where id=2; -update noar tt set b0='818O3SR' where id=2; -update noar ti set b0='818O3SR' where id=2; -update noar tt set v0='HSWIABRQ5ZANTAAMSF46K95' where id=2; -update noar ti set v0='HSWIABRQ5ZANTAAMSF46K95' where id=2; -update noar tt set b1='51ORZ5Q1N88HQG6QDUVEPQUHU6' where id=2; -update noar ti set b1='51ORZ5Q1N88HQG6QDUVEPQUHU6' where id=2; -update noar tt set v0='KSCB2C' where id=2; -update noar ti set v0='KSCB2C' where id=2; -update noar tt set b2='W6JXJ' where id=2; -update noar ti set b2='W6JXJ' where id=2; -update noar tt set v0='2A00RJM681W' where id=3; -update noar ti set v0='2A00RJM681W' where id=3; -update noar tt set b0='F1FTH2B' where id=3; -update noar ti set b0='F1FTH2B' where id=3; -update noar tt set v0='V92V83KO0EKHDIWMGBBT0GVHUHSUYIT' where id=3; -update noar ti set v0='V92V83KO0EKHDIWMGBBT0GVHUHSUYIT' where id=3; -update noar tt set b1='D07MLGVC9KFM0RDYHA47IOCVYT2HC' where id=3; -update noar ti set b1='D07MLGVC9KFM0RDYHA47IOCVYT2HC' where id=3; -update noar tt set v0='88MY32OLBEWMMJ' where id=3; -update noar ti set v0='88MY32OLBEWMMJ' where id=3; -update noar tt set b2='T6W69XOCEUGTT96R7E027DIG9F99ZEZO' where id=3; -update noar ti set b2='T6W69XOCEUGTT96R7E027DIG9F99ZEZO' where id=3; -update noar tt set v0='PP5K' where id=4; -update noar ti set v0='PP5K' where id=4; -update noar tt set b0='JSIPCVIE9QHW0GFAGKOU7P0EOTI4' where id=4; -update noar ti set b0='JSIPCVIE9QHW0GFAGKOU7P0EOTI4' where id=4; -update noar tt set v0='HEJOOGM7Q59' where id=4; -update noar ti set v0='HEJOOGM7Q59' where id=4; -update noar tt set b1='SZYPUTDYAG0' where id=4; -update noar ti set b1='SZYPUTDYAG0' where id=4; -update noar tt set v0='OMHECUO0EOE85KKCXMRM48OV7YNWIZRC' where id=4; -update noar ti set v0='OMHECUO0EOE85KKCXMRM48OV7YNWIZRC' where id=4; -update noar tt set b2='W' where id=4; -update noar ti set b2='W' where id=4; -update noar tt set v0='IN09HARX2UCX' where id=5; -update noar ti set v0='IN09HARX2UCX' where id=5; -update noar tt set b0='UK3NY' where id=5; -update noar ti set b0='UK3NY' where id=5; -update noar tt set v0='5L76ER4RDH4LMWHUX9UG7F9FQEIL8VH7' where id=5; -update noar ti set v0='5L76ER4RDH4LMWHUX9UG7F9FQEIL8VH7' where id=5; -update noar tt set b1='VSCKGHWELK9B' where id=5; -update noar ti set b1='VSCKGHWELK9B' where id=5; -update noar tt set v0='O7G6KMB0HTH3ZIRPJN174TOHFTBU7C' where id=5; -update noar ti set v0='O7G6KMB0HTH3ZIRPJN174TOHFTBU7C' where id=5; -update noar tt set b2='8WK9K7QHO0V27OVD0JXBF9U8QFTF' where id=5; -update noar ti set b2='8WK9K7QHO0V27OVD0JXBF9U8QFTF' where id=5; -update noar tt set v0='E3JXX1DOQDJPP' where id=6; -update noar ti set v0='E3JXX1DOQDJPP' where id=6; -update noar tt set b0='TWK' where id=6; -update noar ti set b0='TWK' where id=6; -update noar tt set v0='BQDVLKNRA561W3EIXM' where id=6; -update noar ti set v0='BQDVLKNRA561W3EIXM' where id=6; -update noar tt set b1='5SNUNB0O20LA4WF' where id=6; -update noar ti set b1='5SNUNB0O20LA4WF' where id=6; -update noar tt set v0='37M8XS1TDWOB' where id=6; -update noar ti set v0='37M8XS1TDWOB' where id=6; -update noar tt set b2='LOI6J8' where id=6; -update noar ti set b2='LOI6J8' where id=6; -update noar tt set v0='1J0Y7IJI65BN57OYBP7YBV2CRZN7P' where id=7; -update noar ti set v0='1J0Y7IJI65BN57OYBP7YBV2CRZN7P' where id=7; -update noar tt set b0='0J' where id=7; -update noar ti set b0='0J' where id=7; -update noar tt set v0='15CWG' where id=7; -update noar ti set v0='15CWG' where id=7; -update noar tt set b1='RZFMNIP5WFQ8YGGWFXEWERKDLJ378Q' where id=7; -update noar ti set b1='RZFMNIP5WFQ8YGGWFXEWERKDLJ378Q' where id=7; -update noar tt set v0='BXI2E2KVHU' where id=7; -update noar ti set v0='BXI2E2KVHU' where id=7; -update noar tt set b2='O4DUFHMCA01GEEXQME8ZCW16W421Z4' where id=7; -update noar ti set b2='O4DUFHMCA01GEEXQME8ZCW16W421Z4' where id=7; -update noar tt set v0='BWAI9MJSI7WAJ2YW5QO9397' where id=8; -update noar ti set v0='BWAI9MJSI7WAJ2YW5QO9397' where id=8; -update noar tt set b0='C46PVNIB879PVL5R5F' where id=8; -update noar ti set b0='C46PVNIB879PVL5R5F' where id=8; -update noar tt set v0='QAMIV53TCM3KAVSE' where id=8; -update noar ti set v0='QAMIV53TCM3KAVSE' where id=8; -update noar tt set b1='I1VDETXQGK2XHPG' where id=8; -update noar ti set b1='I1VDETXQGK2XHPG' where id=8; -update noar tt set v0='4CI8WKXD5BK5GI5IH5' where id=8; -update noar ti set v0='4CI8WKXD5BK5GI5IH5' where id=8; -update noar tt set b2='5' where id=8; -update noar ti set b2='5' where id=8; -update noar tt set v0='Z3IUV7VVDH' where id=9; -update noar ti set v0='Z3IUV7VVDH' where id=9; -update noar tt set b0='OI1HI6WQTHBRBA6927K4Y1NBLZ2VP' where id=9; -update noar ti set b0='OI1HI6WQTHBRBA6927K4Y1NBLZ2VP' where id=9; -update noar tt set v0='VXBAMU5ZW2O76ZC1UKPSG5VYEYV3P' where id=9; -update noar ti set v0='VXBAMU5ZW2O76ZC1UKPSG5VYEYV3P' where id=9; -update noar tt set b1='9JCMIUTJ3HAUNB71QJ4J0DY55CEU8H' where id=9; -update noar ti set b1='9JCMIUTJ3HAUNB71QJ4J0DY55CEU8H' where id=9; -update noar tt set v0='RGRU01F9JDGFSN8WKTC4' where id=9; -update noar ti set v0='RGRU01F9JDGFSN8WKTC4' where id=9; -update noar tt set b2='7HY0TERWCQR4QESCHT2Z' where id=9; -update noar ti set b2='7HY0TERWCQR4QESCHT2Z' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - f0 int null, - v0 varchar(32) null, - b0 longblob null, - b1 longblob null, - b2 longblob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='MX92BBA4SWVEMS06OJ' where id=1; -update noar ti set v0='MX92BBA4SWVEMS06OJ' where id=1; -update noar tt set b0='0RLF6RTR6WJESAEBLQPL8VEKKA7W6' where id=1; -update noar ti set b0='0RLF6RTR6WJESAEBLQPL8VEKKA7W6' where id=1; -update noar tt set v0='DVIQ' where id=1; -update noar ti set v0='DVIQ' where id=1; -update noar tt set b1='9EIU2WQMV9264VQH8Q8XIKZS5G' where id=1; -update noar ti set b1='9EIU2WQMV9264VQH8Q8XIKZS5G' where id=1; -update noar tt set v0='XF8VP0DLO1D01LQG' where id=1; -update noar ti set v0='XF8VP0DLO1D01LQG' where id=1; -update noar tt set b2='NKSHQML7FD9G6YGRZDC340AZE9X' where id=1; -update noar ti set b2='NKSHQML7FD9G6YGRZDC340AZE9X' where id=1; -update noar tt set v0='4AZHEXI9YIXWIRX1EDG8H' where id=2; -update noar ti set v0='4AZHEXI9YIXWIRX1EDG8H' where id=2; -update noar tt set b0='UB7CL95OH' where id=2; -update noar ti set b0='UB7CL95OH' where id=2; -update noar tt set v0='IUTX9H' where id=2; -update noar ti set v0='IUTX9H' where id=2; -update noar tt set b1='H70055R7WQ0UQT8MB9JHAPWLCRCV9' where id=2; -update noar ti set b1='H70055R7WQ0UQT8MB9JHAPWLCRCV9' where id=2; -update noar tt set v0='O49BHR7C5VVNIK4J38P7TF' where id=2; -update noar ti set v0='O49BHR7C5VVNIK4J38P7TF' where id=2; -update noar tt set b2='4IBXZJKZYO6G57A1H1H98' where id=2; -update noar ti set b2='4IBXZJKZYO6G57A1H1H98' where id=2; -update noar tt set v0='HXLLCRHBF6CE2' where id=3; -update noar ti set v0='HXLLCRHBF6CE2' where id=3; -update noar tt set b0='PHOBSYXSBO65X' where id=3; -update noar ti set b0='PHOBSYXSBO65X' where id=3; -update noar tt set v0='S29W7O' where id=3; -update noar ti set v0='S29W7O' where id=3; -update noar tt set b1='42RH1STPLQXLQ8W55IALDLWGI' where id=3; -update noar ti set b1='42RH1STPLQXLQ8W55IALDLWGI' where id=3; -update noar tt set v0='K72W05QTUOI87NJ4W07V2' where id=3; -update noar ti set v0='K72W05QTUOI87NJ4W07V2' where id=3; -update noar tt set b2='AYZ4Q58K4' where id=3; -update noar ti set b2='AYZ4Q58K4' where id=3; -update noar tt set v0='O5334BVU25QPGD3CNBGRB6' where id=4; -update noar ti set v0='O5334BVU25QPGD3CNBGRB6' where id=4; -update noar tt set b0='XNOCJZX9W9KD12398MH3JBBS2HEHT' where id=4; -update noar ti set b0='XNOCJZX9W9KD12398MH3JBBS2HEHT' where id=4; -update noar tt set v0='RAOGVEHESP' where id=4; -update noar ti set v0='RAOGVEHESP' where id=4; -update noar tt set b1='7BPBFE' where id=4; -update noar ti set b1='7BPBFE' where id=4; -update noar tt set v0='ST34364EB61ITQUIVWQ1' where id=4; -update noar ti set v0='ST34364EB61ITQUIVWQ1' where id=4; -update noar tt set b2='1WBII279D476PEH3QXBIK2AIT1YA8JEV' where id=4; -update noar ti set b2='1WBII279D476PEH3QXBIK2AIT1YA8JEV' where id=4; -update noar tt set v0='C6B' where id=5; -update noar ti set v0='C6B' where id=5; -update noar tt set b0='K3ZVOFIRDNLUH' where id=5; -update noar ti set b0='K3ZVOFIRDNLUH' where id=5; -update noar tt set v0='SVVWHXHDFQK' where id=5; -update noar ti set v0='SVVWHXHDFQK' where id=5; -update noar tt set b1='TZMAYB88690X' where id=5; -update noar ti set b1='TZMAYB88690X' where id=5; -update noar tt set v0='RKE34C0GINFZH0JELRN' where id=5; -update noar ti set v0='RKE34C0GINFZH0JELRN' where id=5; -update noar tt set b2='USWVYBNPQDUUINZRO2M0JR47O9FV0R' where id=5; -update noar ti set b2='USWVYBNPQDUUINZRO2M0JR47O9FV0R' where id=5; -update noar tt set v0='3ZDK3LB80V3' where id=6; -update noar ti set v0='3ZDK3LB80V3' where id=6; -update noar tt set b0='PBE5K96QI9R8S253AGP859LDPX' where id=6; -update noar ti set b0='PBE5K96QI9R8S253AGP859LDPX' where id=6; -update noar tt set v0='LVNY6LW8KJV6TI8K0' where id=6; -update noar ti set v0='LVNY6LW8KJV6TI8K0' where id=6; -update noar tt set b1='K2SUD0' where id=6; -update noar ti set b1='K2SUD0' where id=6; -update noar tt set v0='9PUG7' where id=6; -update noar ti set v0='9PUG7' where id=6; -update noar tt set b2='DNXGZ4L9VW0NZL8FNSLV7' where id=6; -update noar ti set b2='DNXGZ4L9VW0NZL8FNSLV7' where id=6; -update noar tt set v0='3AX58WOQR5O2EC' where id=7; -update noar ti set v0='3AX58WOQR5O2EC' where id=7; -update noar tt set b0='Q25H' where id=7; -update noar ti set b0='Q25H' where id=7; -update noar tt set v0='5SBTRDOJT3GEZO4VKSL92' where id=7; -update noar ti set v0='5SBTRDOJT3GEZO4VKSL92' where id=7; -update noar tt set b1='PAXCQIZNBUF30E1MN3D72IYAWZR' where id=7; -update noar ti set b1='PAXCQIZNBUF30E1MN3D72IYAWZR' where id=7; -update noar tt set v0='Z3G' where id=7; -update noar ti set v0='Z3G' where id=7; -update noar tt set b2='W9ZS14BS1JL90650K' where id=7; -update noar ti set b2='W9ZS14BS1JL90650K' where id=7; -update noar tt set v0='SMZMKDLPP' where id=8; -update noar ti set v0='SMZMKDLPP' where id=8; -update noar tt set b0='Y2UMT' where id=8; -update noar ti set b0='Y2UMT' where id=8; -update noar tt set v0='QKD49TOY9CPEE3BKTH3GO8HJP' where id=8; -update noar ti set v0='QKD49TOY9CPEE3BKTH3GO8HJP' where id=8; -update noar tt set b1='0Z02Y32' where id=8; -update noar ti set b1='0Z02Y32' where id=8; -update noar tt set v0='NXN6K' where id=8; -update noar ti set v0='NXN6K' where id=8; -update noar tt set b2='BS5LLYNWC' where id=8; -update noar ti set b2='BS5LLYNWC' where id=8; -update noar tt set v0='SGZZ6KFK3FTOXPEM0G15HTIE1QDI531' where id=9; -update noar ti set v0='SGZZ6KFK3FTOXPEM0G15HTIE1QDI531' where id=9; -update noar tt set b0='OB1FSM9CNOULC17SBF67QR98DY' where id=9; -update noar ti set b0='OB1FSM9CNOULC17SBF67QR98DY' where id=9; -update noar tt set v0='31F9WRL9RQ61DG3D7SYLL0P5M' where id=9; -update noar ti set v0='31F9WRL9RQ61DG3D7SYLL0P5M' where id=9; -update noar tt set b1='1Q' where id=9; -update noar ti set b1='1Q' where id=9; -update noar tt set v0='6I7381BY' where id=9; -update noar ti set v0='6I7381BY' where id=9; -update noar tt set b2='GEMR8SGTHQWEM94WAY' where id=9; -update noar ti set b2='GEMR8SGTHQWEM94WAY' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - f0 int null, - v0 varchar(256) null, - b0 longblob null, - b1 longblob null, - b2 longblob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='F' where id=1; -update noar ti set v0='F' where id=1; -update noar tt set b0='STPBM' where id=1; -update noar ti set b0='STPBM' where id=1; -update noar tt set v0='WKUAFH2VN70A19A6XCGJDGW6E0B' where id=1; -update noar ti set v0='WKUAFH2VN70A19A6XCGJDGW6E0B' where id=1; -update noar tt set b1='I6IZ6NYUUMSJGJHMASU8WTRS2' where id=1; -update noar ti set b1='I6IZ6NYUUMSJGJHMASU8WTRS2' where id=1; -update noar tt set v0='D4' where id=1; -update noar ti set v0='D4' where id=1; -update noar tt set b2='KKSMN4LJ5Y7' where id=1; -update noar ti set b2='KKSMN4LJ5Y7' where id=1; -update noar tt set v0='I' where id=2; -update noar ti set v0='I' where id=2; -update noar tt set b0='151OFEVGJYQSZV' where id=2; -update noar ti set b0='151OFEVGJYQSZV' where id=2; -update noar tt set v0='GZKNCEWMC65M2FASI1SBUUJ3U8RU' where id=2; -update noar ti set v0='GZKNCEWMC65M2FASI1SBUUJ3U8RU' where id=2; -update noar tt set b1='0UBKOW2N8OKFJ84RBZCXSJEP037JU2' where id=2; -update noar ti set b1='0UBKOW2N8OKFJ84RBZCXSJEP037JU2' where id=2; -update noar tt set v0='Y5JSPAOPBT69B3OQKQGYOW9FQ' where id=2; -update noar ti set v0='Y5JSPAOPBT69B3OQKQGYOW9FQ' where id=2; -update noar tt set b2='FIZ' where id=2; -update noar ti set b2='FIZ' where id=2; -update noar tt set v0='3QU8' where id=3; -update noar ti set v0='3QU8' where id=3; -update noar tt set b0='R0E4HHC7QRPPC8HRL72LB09' where id=3; -update noar ti set b0='R0E4HHC7QRPPC8HRL72LB09' where id=3; -update noar tt set v0='4H' where id=3; -update noar ti set v0='4H' where id=3; -update noar tt set b1='9WWK01AA3Z4ZJ6PIPCMF7VN2YVKX9A6' where id=3; -update noar ti set b1='9WWK01AA3Z4ZJ6PIPCMF7VN2YVKX9A6' where id=3; -update noar tt set v0='M974YVNIZ1NARF5' where id=3; -update noar ti set v0='M974YVNIZ1NARF5' where id=3; -update noar tt set b2='TSGNSFRDYWC3HNIC753D67' where id=3; -update noar ti set b2='TSGNSFRDYWC3HNIC753D67' where id=3; -update noar tt set v0='MWFJUCTEVMHN36' where id=4; -update noar ti set v0='MWFJUCTEVMHN36' where id=4; -update noar tt set b0='56W9O1S1VSC' where id=4; -update noar ti set b0='56W9O1S1VSC' where id=4; -update noar tt set v0='FJKHA776QLMIR0JO2NAH0HWY' where id=4; -update noar ti set v0='FJKHA776QLMIR0JO2NAH0HWY' where id=4; -update noar tt set b1='J14BK0A3SZSWB' where id=4; -update noar ti set b1='J14BK0A3SZSWB' where id=4; -update noar tt set v0='1LBPB50A0NB2XUR6KWICOIIR2AJJLEE' where id=4; -update noar ti set v0='1LBPB50A0NB2XUR6KWICOIIR2AJJLEE' where id=4; -update noar tt set b2='RH6IC3JVTAQ' where id=4; -update noar ti set b2='RH6IC3JVTAQ' where id=4; -update noar tt set v0='DE31UPJUERRX4LFNB' where id=5; -update noar ti set v0='DE31UPJUERRX4LFNB' where id=5; -update noar tt set b0='411XK6UK7VY0U52R' where id=5; -update noar ti set b0='411XK6UK7VY0U52R' where id=5; -update noar tt set v0='73JGLEH067EY4DO' where id=5; -update noar ti set v0='73JGLEH067EY4DO' where id=5; -update noar tt set b1='4F3RTNEUT8LCRBS87IGM1T4QKHZ0UTD' where id=5; -update noar ti set b1='4F3RTNEUT8LCRBS87IGM1T4QKHZ0UTD' where id=5; -update noar tt set v0='KZCD3' where id=5; -update noar ti set v0='KZCD3' where id=5; -update noar tt set b2='ZV980JBFL7EMUZAJ6PVWSWE' where id=5; -update noar ti set b2='ZV980JBFL7EMUZAJ6PVWSWE' where id=5; -update noar tt set v0='DRDS9ZRMLQ4CDNGA5D09VQ' where id=6; -update noar ti set v0='DRDS9ZRMLQ4CDNGA5D09VQ' where id=6; -update noar tt set b0='T1PW5KLZE5N139R32MYD1TUASSI5' where id=6; -update noar ti set b0='T1PW5KLZE5N139R32MYD1TUASSI5' where id=6; -update noar tt set v0='QRWJHN' where id=6; -update noar ti set v0='QRWJHN' where id=6; -update noar tt set b1='BW683SLS2S6Z' where id=6; -update noar ti set b1='BW683SLS2S6Z' where id=6; -update noar tt set v0='WCXLHZBF8MKMWGATZ21' where id=6; -update noar ti set v0='WCXLHZBF8MKMWGATZ21' where id=6; -update noar tt set b2='RN4EG9A5MYLVX9YN13974R6KZ4J' where id=6; -update noar ti set b2='RN4EG9A5MYLVX9YN13974R6KZ4J' where id=6; -update noar tt set v0='K59ND6QPLAKDI418271' where id=7; -update noar ti set v0='K59ND6QPLAKDI418271' where id=7; -update noar tt set b0='UZ51TYKC23KH5YXD80' where id=7; -update noar ti set b0='UZ51TYKC23KH5YXD80' where id=7; -update noar tt set v0='T0AU7VSJLNVDS3BWJGYQ5NEUCHILJI1P' where id=7; -update noar ti set v0='T0AU7VSJLNVDS3BWJGYQ5NEUCHILJI1P' where id=7; -update noar tt set b1='N9GT3P7L3TS0' where id=7; -update noar ti set b1='N9GT3P7L3TS0' where id=7; -update noar tt set v0='1VWA3ND4TOW14JSWMHGA224AC7E1' where id=7; -update noar ti set v0='1VWA3ND4TOW14JSWMHGA224AC7E1' where id=7; -update noar tt set b2='FWLJ' where id=7; -update noar ti set b2='FWLJ' where id=7; -update noar tt set v0='1ECCPUL88LHV' where id=8; -update noar ti set v0='1ECCPUL88LHV' where id=8; -update noar tt set b0='Z8P05XW7NC' where id=8; -update noar ti set b0='Z8P05XW7NC' where id=8; -update noar tt set v0='YIHBO4PX0052N3ZZEJS8S95R1' where id=8; -update noar ti set v0='YIHBO4PX0052N3ZZEJS8S95R1' where id=8; -update noar tt set b1='S22VABMYDBGJJARTGCWVZGE' where id=8; -update noar ti set b1='S22VABMYDBGJJARTGCWVZGE' where id=8; -update noar tt set v0='04629RAXTQHBBB1JKKJAJ6M52U' where id=8; -update noar ti set v0='04629RAXTQHBBB1JKKJAJ6M52U' where id=8; -update noar tt set b2='907GRRVU33HRB5NFM4UVWCT9CWR9B4' where id=8; -update noar ti set b2='907GRRVU33HRB5NFM4UVWCT9CWR9B4' where id=8; -update noar tt set v0='MHIPLD3' where id=9; -update noar ti set v0='MHIPLD3' where id=9; -update noar tt set b0='O50M3AOG3O' where id=9; -update noar ti set b0='O50M3AOG3O' where id=9; -update noar tt set v0='TLRY7B9YFU' where id=9; -update noar ti set v0='TLRY7B9YFU' where id=9; -update noar tt set b1='N03VLWD4UT' where id=9; -update noar ti set b1='N03VLWD4UT' where id=9; -update noar tt set v0='CDLZYEK3J76E69KKG6CX3W7PM6MY' where id=9; -update noar ti set v0='CDLZYEK3J76E69KKG6CX3W7PM6MY' where id=9; -update noar tt set b2='3DGWJD3MF' where id=9; -update noar ti set b2='3DGWJD3MF' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - f0 int not null, - v0 varchar(32) not null, - b0 longblob not null, - b1 longblob not null, - b2 longblob not null -) engine=tokudb; -insert into tt values (1,0,'','','',''); -insert into tt values (2,0,'','','',''); -insert into tt values (3,0,'','','',''); -insert into tt values (4,0,'','','',''); -insert into tt values (5,0,'','','',''); -insert into tt values (6,0,'','','',''); -insert into tt values (7,0,'','','',''); -insert into tt values (8,0,'','','',''); -insert into tt values (9,0,'','','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='QXCYXIY9HEXZU0X0QW3ZF9V' where id=1; -update noar ti set v0='QXCYXIY9HEXZU0X0QW3ZF9V' where id=1; -update noar tt set b0='GMGK1CXTZ3V4GYUC2M9B91SK91BXLAX' where id=1; -update noar ti set b0='GMGK1CXTZ3V4GYUC2M9B91SK91BXLAX' where id=1; -update noar tt set v0='WAL' where id=1; -update noar ti set v0='WAL' where id=1; -update noar tt set b1='WVRXP5ON76J0FA2ODUFBMOGT6TU2MVBA' where id=1; -update noar ti set b1='WVRXP5ON76J0FA2ODUFBMOGT6TU2MVBA' where id=1; -update noar tt set v0='OUC85N24CR51NG4FNI1VQIEO76QQ1' where id=1; -update noar ti set v0='OUC85N24CR51NG4FNI1VQIEO76QQ1' where id=1; -update noar tt set b2='71RBGJJWLWAMUCYAB7VLG9S' where id=1; -update noar ti set b2='71RBGJJWLWAMUCYAB7VLG9S' where id=1; -update noar tt set v0='4RYEJGWGQHTIYCFBOK' where id=2; -update noar ti set v0='4RYEJGWGQHTIYCFBOK' where id=2; -update noar tt set b0='1HQV9KK28B2T1N24DH' where id=2; -update noar ti set b0='1HQV9KK28B2T1N24DH' where id=2; -update noar tt set v0='NIC3YMFDOHN' where id=2; -update noar ti set v0='NIC3YMFDOHN' where id=2; -update noar tt set b1='NSNUD3W7SODCJ9CSNG9ETAVJLIGPATU' where id=2; -update noar ti set b1='NSNUD3W7SODCJ9CSNG9ETAVJLIGPATU' where id=2; -update noar tt set v0='NRJCC8YIH81MI0G0JC7JTP3EMI' where id=2; -update noar ti set v0='NRJCC8YIH81MI0G0JC7JTP3EMI' where id=2; -update noar tt set b2='FN9' where id=2; -update noar ti set b2='FN9' where id=2; -update noar tt set v0='7ASEMW7' where id=3; -update noar ti set v0='7ASEMW7' where id=3; -update noar tt set b0='DN9RET9G7U99TOZ2RK43DN1G2LAPF' where id=3; -update noar ti set b0='DN9RET9G7U99TOZ2RK43DN1G2LAPF' where id=3; -update noar tt set v0='TAKI6KBV7' where id=3; -update noar ti set v0='TAKI6KBV7' where id=3; -update noar tt set b1='LT4JUNN3QAAV0L' where id=3; -update noar ti set b1='LT4JUNN3QAAV0L' where id=3; -update noar tt set v0='MZ36VLY1FYJ' where id=3; -update noar ti set v0='MZ36VLY1FYJ' where id=3; -update noar tt set b2='IMTACLKITMDX7Z' where id=3; -update noar ti set b2='IMTACLKITMDX7Z' where id=3; -update noar tt set v0='CYU' where id=4; -update noar ti set v0='CYU' where id=4; -update noar tt set b0='MNJ1OH9WNFA' where id=4; -update noar ti set b0='MNJ1OH9WNFA' where id=4; -update noar tt set v0='YIANQRDGU' where id=4; -update noar ti set v0='YIANQRDGU' where id=4; -update noar tt set b1='GBKAC8X6' where id=4; -update noar ti set b1='GBKAC8X6' where id=4; -update noar tt set v0='1D8EQJ5O0HB2CTYKHIE8OVY9NUV' where id=4; -update noar ti set v0='1D8EQJ5O0HB2CTYKHIE8OVY9NUV' where id=4; -update noar tt set b2='P8795LZLOR2YQQ4A3R19A4UO' where id=4; -update noar ti set b2='P8795LZLOR2YQQ4A3R19A4UO' where id=4; -update noar tt set v0='S6AYAN3YW7ZVLRPKK2N' where id=5; -update noar ti set v0='S6AYAN3YW7ZVLRPKK2N' where id=5; -update noar tt set b0='V8NNC1J57FXEJ' where id=5; -update noar ti set b0='V8NNC1J57FXEJ' where id=5; -update noar tt set v0='5YMAYSLLDSJGAN' where id=5; -update noar ti set v0='5YMAYSLLDSJGAN' where id=5; -update noar tt set b1='YQQZRJANDXENUR8KDZ1PUGBRONI71WS' where id=5; -update noar ti set b1='YQQZRJANDXENUR8KDZ1PUGBRONI71WS' where id=5; -update noar tt set v0='9ZHPLXAG6YUMIZL78OQWLZ035' where id=5; -update noar ti set v0='9ZHPLXAG6YUMIZL78OQWLZ035' where id=5; -update noar tt set b2='3' where id=5; -update noar ti set b2='3' where id=5; -update noar tt set v0='9CRW0R8PX92Z8EAW' where id=6; -update noar ti set v0='9CRW0R8PX92Z8EAW' where id=6; -update noar tt set b0='TICEQQ2TGM7L30' where id=6; -update noar ti set b0='TICEQQ2TGM7L30' where id=6; -update noar tt set v0='NA5GS1VIGH3CS37GOKHAVDLF8L387Q' where id=6; -update noar ti set v0='NA5GS1VIGH3CS37GOKHAVDLF8L387Q' where id=6; -update noar tt set b1='BX9DBOL' where id=6; -update noar ti set b1='BX9DBOL' where id=6; -update noar tt set v0='GY0Z8U89TVQ6PUKWY' where id=6; -update noar ti set v0='GY0Z8U89TVQ6PUKWY' where id=6; -update noar tt set b2='GTTXDBDPDGTPIMMS74EFR9DC2' where id=6; -update noar ti set b2='GTTXDBDPDGTPIMMS74EFR9DC2' where id=6; -update noar tt set v0='OHVPKG299C5RH1NM5G8UE' where id=7; -update noar ti set v0='OHVPKG299C5RH1NM5G8UE' where id=7; -update noar tt set b0='FXQAZ8UXV4KGEAMIBRATIGEZ0VXVGEFA' where id=7; -update noar ti set b0='FXQAZ8UXV4KGEAMIBRATIGEZ0VXVGEFA' where id=7; -update noar tt set v0='2L2WBE3H1RBX5FI9IW1NRM3' where id=7; -update noar ti set v0='2L2WBE3H1RBX5FI9IW1NRM3' where id=7; -update noar tt set b1='JOX4OPR4C59SQLMDBS3I' where id=7; -update noar ti set b1='JOX4OPR4C59SQLMDBS3I' where id=7; -update noar tt set v0='8XWQ831085PJYNHZYOU3V' where id=7; -update noar ti set v0='8XWQ831085PJYNHZYOU3V' where id=7; -update noar tt set b2='XNNNALCPSYOESMQQ829NAVV0AN75Y6' where id=7; -update noar ti set b2='XNNNALCPSYOESMQQ829NAVV0AN75Y6' where id=7; -update noar tt set v0='E1BPSL2J9I6VE3XYLKSLLPUVQRPV7BX' where id=8; -update noar ti set v0='E1BPSL2J9I6VE3XYLKSLLPUVQRPV7BX' where id=8; -update noar tt set b0='ABRW3EZ4S1F3SH0OON4VKW529G' where id=8; -update noar ti set b0='ABRW3EZ4S1F3SH0OON4VKW529G' where id=8; -update noar tt set v0='ULQ8SZWPC5MTBV' where id=8; -update noar ti set v0='ULQ8SZWPC5MTBV' where id=8; -update noar tt set b1='SJ2WCOUMB5NQ8PM7X27F446VME4I' where id=8; -update noar ti set b1='SJ2WCOUMB5NQ8PM7X27F446VME4I' where id=8; -update noar tt set v0='2C39Q1T7CI59ZO33T' where id=8; -update noar ti set v0='2C39Q1T7CI59ZO33T' where id=8; -update noar tt set b2='0LODV5VP465' where id=8; -update noar ti set b2='0LODV5VP465' where id=8; -update noar tt set v0='G5COILN' where id=9; -update noar ti set v0='G5COILN' where id=9; -update noar tt set b0='5DGTGB8HEMBC' where id=9; -update noar ti set b0='5DGTGB8HEMBC' where id=9; -update noar tt set v0='1QDBMVO12D8PKNQ3CLAG12ULZ7S4KWJ' where id=9; -update noar ti set v0='1QDBMVO12D8PKNQ3CLAG12ULZ7S4KWJ' where id=9; -update noar tt set b1='PC2FFX8IQRBN' where id=9; -update noar ti set b1='PC2FFX8IQRBN' where id=9; -update noar tt set v0='RLUGBNPPVCIIXAP' where id=9; -update noar ti set v0='RLUGBNPPVCIIXAP' where id=9; -update noar tt set b2='1EF6LTSRFBK2ROBBL' where id=9; -update noar ti set b2='1EF6LTSRFBK2ROBBL' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - f0 int not null, - v0 varchar(256) not null, - b0 longblob not null, - b1 longblob not null, - b2 longblob not null -) engine=tokudb; -insert into tt values (1,0,'','','',''); -insert into tt values (2,0,'','','',''); -insert into tt values (3,0,'','','',''); -insert into tt values (4,0,'','','',''); -insert into tt values (5,0,'','','',''); -insert into tt values (6,0,'','','',''); -insert into tt values (7,0,'','','',''); -insert into tt values (8,0,'','','',''); -insert into tt values (9,0,'','','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='LEEYUTRS34P' where id=1; -update noar ti set v0='LEEYUTRS34P' where id=1; -update noar tt set b0='M99ECXEP4X9N2CIUQXK31QQB4YMJOY' where id=1; -update noar ti set b0='M99ECXEP4X9N2CIUQXK31QQB4YMJOY' where id=1; -update noar tt set v0='UWUDZUWPEQEPJ22XLK' where id=1; -update noar ti set v0='UWUDZUWPEQEPJ22XLK' where id=1; -update noar tt set b1='LASOLRZDKEI8' where id=1; -update noar ti set b1='LASOLRZDKEI8' where id=1; -update noar tt set v0='T' where id=1; -update noar ti set v0='T' where id=1; -update noar tt set b2='Z8KZLNDQ4JIF0L7P78WA' where id=1; -update noar ti set b2='Z8KZLNDQ4JIF0L7P78WA' where id=1; -update noar tt set v0='2GP6DEJ' where id=2; -update noar ti set v0='2GP6DEJ' where id=2; -update noar tt set b0='H0X864HBR3V1RIEJ9ZBXQAIXC' where id=2; -update noar ti set b0='H0X864HBR3V1RIEJ9ZBXQAIXC' where id=2; -update noar tt set v0='UXN0' where id=2; -update noar ti set v0='UXN0' where id=2; -update noar tt set b1='SRZZVJEVO72JAWSSKOK2K4N2BI5QNIUV' where id=2; -update noar ti set b1='SRZZVJEVO72JAWSSKOK2K4N2BI5QNIUV' where id=2; -update noar tt set v0='WMNT8KVHXSWOXRQP3ICE1BPV8AU8W' where id=2; -update noar ti set v0='WMNT8KVHXSWOXRQP3ICE1BPV8AU8W' where id=2; -update noar tt set b2='3IDATCFXH1N' where id=2; -update noar ti set b2='3IDATCFXH1N' where id=2; -update noar tt set v0='2BLL8H' where id=3; -update noar ti set v0='2BLL8H' where id=3; -update noar tt set b0='8I0MR9O73A3ZU' where id=3; -update noar ti set b0='8I0MR9O73A3ZU' where id=3; -update noar tt set v0='F15MBIWGGJTKWMCL' where id=3; -update noar ti set v0='F15MBIWGGJTKWMCL' where id=3; -update noar tt set b1='10UEU09O9PS' where id=3; -update noar ti set b1='10UEU09O9PS' where id=3; -update noar tt set v0='Y69SGR0281ITJKO1DL' where id=3; -update noar ti set v0='Y69SGR0281ITJKO1DL' where id=3; -update noar tt set b2='P8KRKC81XD0GLF0MB75M66PAUWG6M' where id=3; -update noar ti set b2='P8KRKC81XD0GLF0MB75M66PAUWG6M' where id=3; -update noar tt set v0='V05FVC27AK67P8UF' where id=4; -update noar ti set v0='V05FVC27AK67P8UF' where id=4; -update noar tt set b0='96GOVZJ57YF4P' where id=4; -update noar ti set b0='96GOVZJ57YF4P' where id=4; -update noar tt set v0='PCAOE2SHBW179MA06KJ0JMOAKZE37' where id=4; -update noar ti set v0='PCAOE2SHBW179MA06KJ0JMOAKZE37' where id=4; -update noar tt set b1='QZUMP45P813MCN8XJXJU0MH1QVSGKR' where id=4; -update noar ti set b1='QZUMP45P813MCN8XJXJU0MH1QVSGKR' where id=4; -update noar tt set v0='KSBAC3PHT79Y3S4ONZL' where id=4; -update noar ti set v0='KSBAC3PHT79Y3S4ONZL' where id=4; -update noar tt set b2='RQQ75RL8WSBT80S6LF3HI911P9LS' where id=4; -update noar ti set b2='RQQ75RL8WSBT80S6LF3HI911P9LS' where id=4; -update noar tt set v0='S2JS1Z1W6HHE1R6' where id=5; -update noar ti set v0='S2JS1Z1W6HHE1R6' where id=5; -update noar tt set b0='R63EDI' where id=5; -update noar ti set b0='R63EDI' where id=5; -update noar tt set v0='DRYQ9SZR34TREIFDK6HQ' where id=5; -update noar ti set v0='DRYQ9SZR34TREIFDK6HQ' where id=5; -update noar tt set b1='WITFE0XFLPD7DQ05FRQMTGZTWZ4NYV' where id=5; -update noar ti set b1='WITFE0XFLPD7DQ05FRQMTGZTWZ4NYV' where id=5; -update noar tt set v0='I' where id=5; -update noar ti set v0='I' where id=5; -update noar tt set b2='9918LQ72RYXMO' where id=5; -update noar ti set b2='9918LQ72RYXMO' where id=5; -update noar tt set v0='HJVH8W1MPJY255UPCLAQRNN0M' where id=6; -update noar ti set v0='HJVH8W1MPJY255UPCLAQRNN0M' where id=6; -update noar tt set b0='XBO' where id=6; -update noar ti set b0='XBO' where id=6; -update noar tt set v0='WBSGL7V81QVEIFA7ZEDY6PQBBOG0V' where id=6; -update noar ti set v0='WBSGL7V81QVEIFA7ZEDY6PQBBOG0V' where id=6; -update noar tt set b1='EJAZIX23T' where id=6; -update noar ti set b1='EJAZIX23T' where id=6; -update noar tt set v0='RKS6' where id=6; -update noar ti set v0='RKS6' where id=6; -update noar tt set b2='QJB84V43MSQEEQD2' where id=6; -update noar ti set b2='QJB84V43MSQEEQD2' where id=6; -update noar tt set v0='J5CIGFE6PG3HHF4IR99RP0BQWDRFVN' where id=7; -update noar ti set v0='J5CIGFE6PG3HHF4IR99RP0BQWDRFVN' where id=7; -update noar tt set b0='025DD53DH735IIL0KAUXUU' where id=7; -update noar ti set b0='025DD53DH735IIL0KAUXUU' where id=7; -update noar tt set v0='KT8MERXTHITVZTE5YBC4PODA' where id=7; -update noar ti set v0='KT8MERXTHITVZTE5YBC4PODA' where id=7; -update noar tt set b1='BB' where id=7; -update noar ti set b1='BB' where id=7; -update noar tt set v0='9UJQL' where id=7; -update noar ti set v0='9UJQL' where id=7; -update noar tt set b2='E' where id=7; -update noar ti set b2='E' where id=7; -update noar tt set v0='MA2Q7MR' where id=8; -update noar ti set v0='MA2Q7MR' where id=8; -update noar tt set b0='P3' where id=8; -update noar ti set b0='P3' where id=8; -update noar tt set v0='VR1D8WP5LP7P30IHZ' where id=8; -update noar ti set v0='VR1D8WP5LP7P30IHZ' where id=8; -update noar tt set b1='LTR0HBW1FZZCCXOMR6J' where id=8; -update noar ti set b1='LTR0HBW1FZZCCXOMR6J' where id=8; -update noar tt set v0='SKPAMR51C' where id=8; -update noar ti set v0='SKPAMR51C' where id=8; -update noar tt set b2='U7PX143M1' where id=8; -update noar ti set b2='U7PX143M1' where id=8; -update noar tt set v0='7ET84JN35G0Q9QKLQ5DQSCTPY' where id=9; -update noar ti set v0='7ET84JN35G0Q9QKLQ5DQSCTPY' where id=9; -update noar tt set b0='54NUGHTSUN6B48CWGO' where id=9; -update noar ti set b0='54NUGHTSUN6B48CWGO' where id=9; -update noar tt set v0='R1WINZC46' where id=9; -update noar ti set v0='R1WINZC46' where id=9; -update noar tt set b1='ODRI06CHM5QTDPFM900R6J7JWJ8W' where id=9; -update noar ti set b1='ODRI06CHM5QTDPFM900R6J7JWJ8W' where id=9; -update noar tt set v0='HWOZH897A0BVVRO1CH2OQFR' where id=9; -update noar ti set v0='HWOZH897A0BVVRO1CH2OQFR' where id=9; -update noar tt set b2='L' where id=9; -update noar ti set b2='L' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; diff --git a/storage/tokudb/mysql-test/tokudb/t/fast_update_blobs_with_varchar.py b/storage/tokudb/mysql-test/tokudb/t/fast_update_blobs_with_varchar.py deleted file mode 100644 index 6eea11afd7b..00000000000 --- a/storage/tokudb/mysql-test/tokudb/t/fast_update_blobs_with_varchar.py +++ /dev/null @@ -1,62 +0,0 @@ -#!/usr/bin/env python - -import sys -import random -import string - -def main(): - print "# generated by tokudb_fast_update_blobs_with_varchar.py" - print "source include/have_tokudb.inc;" - print "source include/have_innodb.inc;" - print "set default_storage_engine='tokudb';" - print "disable_warnings;" - print "drop table if exists t;" - print "enable_warnings;" - - nrows = 10 - - blob_types = [ 'tinyblob', 'blob', 'mediumblob', 'longblob' ] - for a in blob_types: - for b in blob_types: - for c in blob_types: - for n in [ 'null', 'not null' ]: - for v in [ 'varchar(32)', 'varchar(256)' ]: - test_blobs([ a, b, c ] , v, n, nrows) - return 0 - -def test_blobs(cols, v, n, nrows): - print "create table tt (id bigint unsigned primary key," - print " v0 %s %s," % (v, n) - for i in range(len(cols)): - if i < len(cols)-1: - print " b%d %s %s," % (i, cols[i], n) - else: - print " b%d %s %s" % (i, cols[i], n) - print ") engine=tokudb;" - - for id in range(1,nrows): - if n == 'null': - print "insert into tt (id) values (%d);" % (id) - else: - print "insert into tt values (%d,'','','','');" % (id) - - print "create table ti like tt;" - print "alter table ti engine=innodb;" - print "insert into ti select * from tt;" - - for id in range(1,nrows): - for i in range(3): - long_str = ''.join(random.choice(string.ascii_uppercase + string.digits) for x in range(random.randint(1,32))) - print "update noar tt set v%d='%s' where id=%d;" % (0, long_str, id) - print "update noar ti set v%d='%s' where id=%d;" % (0, long_str, id) - - long_str = ''.join(random.choice(string.ascii_uppercase + string.digits) for x in range(random.randint(1,32))) - print "update noar tt set b%d='%s' where id=%d;" % (i, long_str, id) - print "update noar ti set b%d='%s' where id=%d;" % (i, long_str, id) - - print "let $diff_tables = test.tt, test.ti;" - print "source include/diff_tables.inc;" - - print "drop table tt, ti;" - -sys.exit(main()) diff --git a/storage/tokudb/mysql-test/tokudb/t/fast_update_blobs_with_varchar.test b/storage/tokudb/mysql-test/tokudb/t/fast_update_blobs_with_varchar.test index 0821c0c7a79..15875c47297 100644 --- a/storage/tokudb/mysql-test/tokudb/t/fast_update_blobs_with_varchar.test +++ b/storage/tokudb/mysql-test/tokudb/t/fast_update_blobs_with_varchar.test @@ -1,33031 +1,84 @@ -# generated by tokudb_fast_update_blobs_with_varchar.py -source include/have_tokudb.inc; -source include/have_innodb.inc; -set default_storage_engine='tokudb'; -disable_warnings; -drop table if exists t; -enable_warnings; -create table tt (id bigint unsigned primary key, - v0 varchar(32) null, - b0 tinyblob null, - b1 tinyblob null, - b2 tinyblob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='OORH' where id=1; -update noar ti set v0='OORH' where id=1; -update noar tt set b0='2KX2' where id=1; -update noar ti set b0='2KX2' where id=1; -update noar tt set v0='QJ541BDOS' where id=1; -update noar ti set v0='QJ541BDOS' where id=1; -update noar tt set b1='BSTHXT0AXOL4NYJD04Q5' where id=1; -update noar ti set b1='BSTHXT0AXOL4NYJD04Q5' where id=1; -update noar tt set v0='F8QUEDSYQ8DZ' where id=1; -update noar ti set v0='F8QUEDSYQ8DZ' where id=1; -update noar tt set b2='3S9CVBPMFLX74Q16XHYC3ZWEV' where id=1; -update noar ti set b2='3S9CVBPMFLX74Q16XHYC3ZWEV' where id=1; -update noar tt set v0='03CCYAYAFDEDMH8K0' where id=2; -update noar ti set v0='03CCYAYAFDEDMH8K0' where id=2; -update noar tt set b0='6MA' where id=2; -update noar ti set b0='6MA' where id=2; -update noar tt set v0='5YXS8WIZG40O9ZKBR65OUT' where id=2; -update noar ti set v0='5YXS8WIZG40O9ZKBR65OUT' where id=2; -update noar tt set b1='KU' where id=2; -update noar ti set b1='KU' where id=2; -update noar tt set v0='WC173JZCT89RZX29' where id=2; -update noar ti set v0='WC173JZCT89RZX29' where id=2; -update noar tt set b2='EM5Y0U95XHX1PO6J5FJ' where id=2; -update noar ti set b2='EM5Y0U95XHX1PO6J5FJ' where id=2; -update noar tt set v0='AA' where id=3; -update noar ti set v0='AA' where id=3; -update noar tt set b0='5B8BYWIMT' where id=3; -update noar ti set b0='5B8BYWIMT' where id=3; -update noar tt set v0='2MS56CLNQ911' where id=3; -update noar ti set v0='2MS56CLNQ911' where id=3; -update noar tt set b1='5KJ1' where id=3; -update noar ti set b1='5KJ1' where id=3; -update noar tt set v0='LMHY0D23Y5BZJKJMO1FPJRFU8CF2' where id=3; -update noar ti set v0='LMHY0D23Y5BZJKJMO1FPJRFU8CF2' where id=3; -update noar tt set b2='204EX0GAWYOAWK7BWVQF' where id=3; -update noar ti set b2='204EX0GAWYOAWK7BWVQF' where id=3; -update noar tt set v0='WNELP' where id=4; -update noar ti set v0='WNELP' where id=4; -update noar tt set b0='LDZD' where id=4; -update noar ti set b0='LDZD' where id=4; -update noar tt set v0='COPYTGCQ3QJC2' where id=4; -update noar ti set v0='COPYTGCQ3QJC2' where id=4; -update noar tt set b1='6YCDENC77R12FSE80VRMQUX' where id=4; -update noar ti set b1='6YCDENC77R12FSE80VRMQUX' where id=4; -update noar tt set v0='DUD' where id=4; -update noar ti set v0='DUD' where id=4; -update noar tt set b2='56CV28UU6QQE1VAK5V' where id=4; -update noar ti set b2='56CV28UU6QQE1VAK5V' where id=4; -update noar tt set v0='5U0QNH8D7R8C' where id=5; -update noar ti set v0='5U0QNH8D7R8C' where id=5; -update noar tt set b0='NQSA' where id=5; -update noar ti set b0='NQSA' where id=5; -update noar tt set v0='XNOQCGHYMCG41MOY9TLSMY6WM100' where id=5; -update noar ti set v0='XNOQCGHYMCG41MOY9TLSMY6WM100' where id=5; -update noar tt set b1='K40KK' where id=5; -update noar ti set b1='K40KK' where id=5; -update noar tt set v0='I51G38X' where id=5; -update noar ti set v0='I51G38X' where id=5; -update noar tt set b2='NMMDK5HT4TQCZ223HJMH' where id=5; -update noar ti set b2='NMMDK5HT4TQCZ223HJMH' where id=5; -update noar tt set v0='YJCHF6KH4H3V0X1US786K5GAH1D1F52' where id=6; -update noar ti set v0='YJCHF6KH4H3V0X1US786K5GAH1D1F52' where id=6; -update noar tt set b0='5N2ULTBPEJO0VTVEDQ30WN68BRX' where id=6; -update noar ti set b0='5N2ULTBPEJO0VTVEDQ30WN68BRX' where id=6; -update noar tt set v0='28TK0FK' where id=6; -update noar ti set v0='28TK0FK' where id=6; -update noar tt set b1='10D4UXSXS0B887F' where id=6; -update noar ti set b1='10D4UXSXS0B887F' where id=6; -update noar tt set v0='56' where id=6; -update noar ti set v0='56' where id=6; -update noar tt set b2='26ZD5DIYVIXLRUH00C65PEC5CT0' where id=6; -update noar ti set b2='26ZD5DIYVIXLRUH00C65PEC5CT0' where id=6; -update noar tt set v0='Y' where id=7; -update noar ti set v0='Y' where id=7; -update noar tt set b0='5GXO' where id=7; -update noar ti set b0='5GXO' where id=7; -update noar tt set v0='VYXHF6O2M9DGW' where id=7; -update noar ti set v0='VYXHF6O2M9DGW' where id=7; -update noar tt set b1='FRZSVRQ7S6T7I5COC5AGJNTU' where id=7; -update noar ti set b1='FRZSVRQ7S6T7I5COC5AGJNTU' where id=7; -update noar tt set v0='UZGDBY7Z678RSL0' where id=7; -update noar ti set v0='UZGDBY7Z678RSL0' where id=7; -update noar tt set b2='1WXPQ46G8OI9JCDDHH' where id=7; -update noar ti set b2='1WXPQ46G8OI9JCDDHH' where id=7; -update noar tt set v0='5L8G' where id=8; -update noar ti set v0='5L8G' where id=8; -update noar tt set b0='BFNWF9KEC2H49UHCFMGV8N17F' where id=8; -update noar ti set b0='BFNWF9KEC2H49UHCFMGV8N17F' where id=8; -update noar tt set v0='1GWHOS2XH171' where id=8; -update noar ti set v0='1GWHOS2XH171' where id=8; -update noar tt set b1='02LXB8DY' where id=8; -update noar ti set b1='02LXB8DY' where id=8; -update noar tt set v0='UOYGGAFZ6R6' where id=8; -update noar ti set v0='UOYGGAFZ6R6' where id=8; -update noar tt set b2='8HE71MWTPS1G4JG9SMQPW5GO' where id=8; -update noar ti set b2='8HE71MWTPS1G4JG9SMQPW5GO' where id=8; -update noar tt set v0='7UCQFA39COG98QHE5H1IA52CM14OGGWO' where id=9; -update noar ti set v0='7UCQFA39COG98QHE5H1IA52CM14OGGWO' where id=9; -update noar tt set b0='TQ3QQBZB4ORD6X2LT9CHNHMLXZ74X8RF' where id=9; -update noar ti set b0='TQ3QQBZB4ORD6X2LT9CHNHMLXZ74X8RF' where id=9; -update noar tt set v0='9I12QSHR245FJ4VJEBXT0EXV58YK' where id=9; -update noar ti set v0='9I12QSHR245FJ4VJEBXT0EXV58YK' where id=9; -update noar tt set b1='6OWZ8BSATIWDL414' where id=9; -update noar ti set b1='6OWZ8BSATIWDL414' where id=9; -update noar tt set v0='NAXC' where id=9; -update noar ti set v0='NAXC' where id=9; -update noar tt set b2='GPS5U' where id=9; -update noar ti set b2='GPS5U' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - v0 varchar(256) null, - b0 tinyblob null, - b1 tinyblob null, - b2 tinyblob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='GUA99YRIEYZU77WX3' where id=1; -update noar ti set v0='GUA99YRIEYZU77WX3' where id=1; -update noar tt set b0='E5Z8VH6HTFIAY13A' where id=1; -update noar ti set b0='E5Z8VH6HTFIAY13A' where id=1; -update noar tt set v0='OQ9KH23SWRX0TJX9GLDWRSQ34SI' where id=1; -update noar ti set v0='OQ9KH23SWRX0TJX9GLDWRSQ34SI' where id=1; -update noar tt set b1='FI1AL700DW9QCM8N4SC1BAN3IV' where id=1; -update noar ti set b1='FI1AL700DW9QCM8N4SC1BAN3IV' where id=1; -update noar tt set v0='KHA1NS5XOLNS7U5IDIYN' where id=1; -update noar ti set v0='KHA1NS5XOLNS7U5IDIYN' where id=1; -update noar tt set b2='CQ9O8NN2I7QRR4P1' where id=1; -update noar ti set b2='CQ9O8NN2I7QRR4P1' where id=1; -update noar tt set v0='E0EQ22N3R4IO598UBGE6BPKC8P8RA' where id=2; -update noar ti set v0='E0EQ22N3R4IO598UBGE6BPKC8P8RA' where id=2; -update noar tt set b0='Z6XMK8B1U' where id=2; -update noar ti set b0='Z6XMK8B1U' where id=2; -update noar tt set v0='D3NQLTNMAVRSZMTZK43ASVXVP' where id=2; -update noar ti set v0='D3NQLTNMAVRSZMTZK43ASVXVP' where id=2; -update noar tt set b1='BM2KNC' where id=2; -update noar ti set b1='BM2KNC' where id=2; -update noar tt set v0='CM0UZPQBB3V268YAQU' where id=2; -update noar ti set v0='CM0UZPQBB3V268YAQU' where id=2; -update noar tt set b2='O4L0L27RH52X' where id=2; -update noar ti set b2='O4L0L27RH52X' where id=2; -update noar tt set v0='S5GDFSYE' where id=3; -update noar ti set v0='S5GDFSYE' where id=3; -update noar tt set b0='I3M3S6CAV84NAZ5' where id=3; -update noar ti set b0='I3M3S6CAV84NAZ5' where id=3; -update noar tt set v0='61240QJW72' where id=3; -update noar ti set v0='61240QJW72' where id=3; -update noar tt set b1='Z2BJ9' where id=3; -update noar ti set b1='Z2BJ9' where id=3; -update noar tt set v0='DH1QO' where id=3; -update noar ti set v0='DH1QO' where id=3; -update noar tt set b2='VCDOV18NW' where id=3; -update noar ti set b2='VCDOV18NW' where id=3; -update noar tt set v0='ICZ07JGBI54A21OWP' where id=4; -update noar ti set v0='ICZ07JGBI54A21OWP' where id=4; -update noar tt set b0='22C9JSV2LTPPHOL' where id=4; -update noar ti set b0='22C9JSV2LTPPHOL' where id=4; -update noar tt set v0='J0HN6ATJ' where id=4; -update noar ti set v0='J0HN6ATJ' where id=4; -update noar tt set b1='V4OV7F' where id=4; -update noar ti set b1='V4OV7F' where id=4; -update noar tt set v0='YEFQZKTI8UPIEEPHQKMJKH' where id=4; -update noar ti set v0='YEFQZKTI8UPIEEPHQKMJKH' where id=4; -update noar tt set b2='Z5N6PXGUU15LZ' where id=4; -update noar ti set b2='Z5N6PXGUU15LZ' where id=4; -update noar tt set v0='Y8SZCFNUK4W33LYH735Y8YOGYTQMU' where id=5; -update noar ti set v0='Y8SZCFNUK4W33LYH735Y8YOGYTQMU' where id=5; -update noar tt set b0='BUIVHMNWP73OS6' where id=5; -update noar ti set b0='BUIVHMNWP73OS6' where id=5; -update noar tt set v0='Q7ZZN2EG00YC' where id=5; -update noar ti set v0='Q7ZZN2EG00YC' where id=5; -update noar tt set b1='JE7X8PXFPKYCQ7JJ10K4EZO4SZ4D0J4Q' where id=5; -update noar ti set b1='JE7X8PXFPKYCQ7JJ10K4EZO4SZ4D0J4Q' where id=5; -update noar tt set v0='CP440F' where id=5; -update noar ti set v0='CP440F' where id=5; -update noar tt set b2='MN5GKAV2U8LQ92SNVNPML1B' where id=5; -update noar ti set b2='MN5GKAV2U8LQ92SNVNPML1B' where id=5; -update noar tt set v0='8P4D2473PB' where id=6; -update noar ti set v0='8P4D2473PB' where id=6; -update noar tt set b0='WS8Y' where id=6; -update noar ti set b0='WS8Y' where id=6; -update noar tt set v0='91KF3F45E1XKXDQS4OSMIWEA8IPAN20' where id=6; -update noar ti set v0='91KF3F45E1XKXDQS4OSMIWEA8IPAN20' where id=6; -update noar tt set b1='8' where id=6; -update noar ti set b1='8' where id=6; -update noar tt set v0='26F120T2108GADPHE' where id=6; -update noar ti set v0='26F120T2108GADPHE' where id=6; -update noar tt set b2='JJ' where id=6; -update noar ti set b2='JJ' where id=6; -update noar tt set v0='T' where id=7; -update noar ti set v0='T' where id=7; -update noar tt set b0='5ZTBEX6EBFB' where id=7; -update noar ti set b0='5ZTBEX6EBFB' where id=7; -update noar tt set v0='BUGCY48W5G0050' where id=7; -update noar ti set v0='BUGCY48W5G0050' where id=7; -update noar tt set b1='GGH1E198NDN9WO7TS8CHCGK2O2SJO9Q6' where id=7; -update noar ti set b1='GGH1E198NDN9WO7TS8CHCGK2O2SJO9Q6' where id=7; -update noar tt set v0='YSQAVTQ07AKVLVE' where id=7; -update noar ti set v0='YSQAVTQ07AKVLVE' where id=7; -update noar tt set b2='72Q2J0RGF2RW4YZYNG2RS22N5NSC62' where id=7; -update noar ti set b2='72Q2J0RGF2RW4YZYNG2RS22N5NSC62' where id=7; -update noar tt set v0='72T978DXAG0IB2OXWNMDMB' where id=8; -update noar ti set v0='72T978DXAG0IB2OXWNMDMB' where id=8; -update noar tt set b0='97RM4F4P02YBFNP7IHO2R4Q1Y14' where id=8; -update noar ti set b0='97RM4F4P02YBFNP7IHO2R4Q1Y14' where id=8; -update noar tt set v0='KH5K09RLK3ETRF9VQCG' where id=8; -update noar ti set v0='KH5K09RLK3ETRF9VQCG' where id=8; -update noar tt set b1='TALGG97WNSAMLLWEG8JAL066DJJB' where id=8; -update noar ti set b1='TALGG97WNSAMLLWEG8JAL066DJJB' where id=8; -update noar tt set v0='3FCLFHI2LVSPURWXIY50YEI9XJMYS' where id=8; -update noar ti set v0='3FCLFHI2LVSPURWXIY50YEI9XJMYS' where id=8; -update noar tt set b2='Y46UAO' where id=8; -update noar ti set b2='Y46UAO' where id=8; -update noar tt set v0='5R' where id=9; -update noar ti set v0='5R' where id=9; -update noar tt set b0='U58' where id=9; -update noar ti set b0='U58' where id=9; -update noar tt set v0='BZI' where id=9; -update noar ti set v0='BZI' where id=9; -update noar tt set b1='ICV44HCMSZBPH74Z0M5KJY0FM' where id=9; -update noar ti set b1='ICV44HCMSZBPH74Z0M5KJY0FM' where id=9; -update noar tt set v0='N17OPAA5V1RM5ZOY5774' where id=9; -update noar ti set v0='N17OPAA5V1RM5ZOY5774' where id=9; -update noar tt set b2='S153ADXJF9QJ918EK43VB15MJ' where id=9; -update noar ti set b2='S153ADXJF9QJ918EK43VB15MJ' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - v0 varchar(32) not null, - b0 tinyblob not null, - b1 tinyblob not null, - b2 tinyblob not null -) engine=tokudb; -insert into tt values (1,'','','',''); -insert into tt values (2,'','','',''); -insert into tt values (3,'','','',''); -insert into tt values (4,'','','',''); -insert into tt values (5,'','','',''); -insert into tt values (6,'','','',''); -insert into tt values (7,'','','',''); -insert into tt values (8,'','','',''); -insert into tt values (9,'','','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='O' where id=1; -update noar ti set v0='O' where id=1; -update noar tt set b0='7WFINTFU68KC2MI' where id=1; -update noar ti set b0='7WFINTFU68KC2MI' where id=1; -update noar tt set v0='8Y6G1RMEG6MAUAQNBJVL6B7E54ML472H' where id=1; -update noar ti set v0='8Y6G1RMEG6MAUAQNBJVL6B7E54ML472H' where id=1; -update noar tt set b1='XZ67YVD8I7XNHX' where id=1; -update noar ti set b1='XZ67YVD8I7XNHX' where id=1; -update noar tt set v0='PQHHP59FOSOOAOWZDMDR67XP9P' where id=1; -update noar ti set v0='PQHHP59FOSOOAOWZDMDR67XP9P' where id=1; -update noar tt set b2='4CU4BUBGWOLPI9ZN6SX310F8TFEHK2L' where id=1; -update noar ti set b2='4CU4BUBGWOLPI9ZN6SX310F8TFEHK2L' where id=1; -update noar tt set v0='7G6OGU8JP2H61YHFMEHOV' where id=2; -update noar ti set v0='7G6OGU8JP2H61YHFMEHOV' where id=2; -update noar tt set b0='CP3A1L3H045J21O81H93TG' where id=2; -update noar ti set b0='CP3A1L3H045J21O81H93TG' where id=2; -update noar tt set v0='M88M5W0U4NTYSOP7Y0H' where id=2; -update noar ti set v0='M88M5W0U4NTYSOP7Y0H' where id=2; -update noar tt set b1='F0ZMQ90OIT0EV06WNBGDMTJK44N61THT' where id=2; -update noar ti set b1='F0ZMQ90OIT0EV06WNBGDMTJK44N61THT' where id=2; -update noar tt set v0='X75D7JD7ORSLI3XDQG1O' where id=2; -update noar ti set v0='X75D7JD7ORSLI3XDQG1O' where id=2; -update noar tt set b2='BGH26K278X3TQ22RLGBO38' where id=2; -update noar ti set b2='BGH26K278X3TQ22RLGBO38' where id=2; -update noar tt set v0='5MUNWJ0ECS9ESFZ3MMNHV' where id=3; -update noar ti set v0='5MUNWJ0ECS9ESFZ3MMNHV' where id=3; -update noar tt set b0='TL5TPPAK2JH352HTP7DFXM8J' where id=3; -update noar ti set b0='TL5TPPAK2JH352HTP7DFXM8J' where id=3; -update noar tt set v0='6A3M46OO64CLJ' where id=3; -update noar ti set v0='6A3M46OO64CLJ' where id=3; -update noar tt set b1='OZKDC7IPLVS1ID5LRXU0QBF1F' where id=3; -update noar ti set b1='OZKDC7IPLVS1ID5LRXU0QBF1F' where id=3; -update noar tt set v0='P034MPJ1F0C32' where id=3; -update noar ti set v0='P034MPJ1F0C32' where id=3; -update noar tt set b2='THQJWHVYZIAZN3T2NLQMA4N4PBHP' where id=3; -update noar ti set b2='THQJWHVYZIAZN3T2NLQMA4N4PBHP' where id=3; -update noar tt set v0='OR5' where id=4; -update noar ti set v0='OR5' where id=4; -update noar tt set b0='6MAD20YSIPY4G6EUTYDJJM6' where id=4; -update noar ti set b0='6MAD20YSIPY4G6EUTYDJJM6' where id=4; -update noar tt set v0='CK6IN48FCJB3OLAK46' where id=4; -update noar ti set v0='CK6IN48FCJB3OLAK46' where id=4; -update noar tt set b1='P6OCTFHT00CGUVSJG' where id=4; -update noar ti set b1='P6OCTFHT00CGUVSJG' where id=4; -update noar tt set v0='319PSGWXCTIYMSW6J2VC5U4HHHBE' where id=4; -update noar ti set v0='319PSGWXCTIYMSW6J2VC5U4HHHBE' where id=4; -update noar tt set b2='20LIQVKLWHQ' where id=4; -update noar ti set b2='20LIQVKLWHQ' where id=4; -update noar tt set v0='T3M9334' where id=5; -update noar ti set v0='T3M9334' where id=5; -update noar tt set b0='RWL2Q8I21' where id=5; -update noar ti set b0='RWL2Q8I21' where id=5; -update noar tt set v0='ZOURSSIAMP9P2' where id=5; -update noar ti set v0='ZOURSSIAMP9P2' where id=5; -update noar tt set b1='1QKM7QT6GUJUJ7' where id=5; -update noar ti set b1='1QKM7QT6GUJUJ7' where id=5; -update noar tt set v0='3KC4WWAE' where id=5; -update noar ti set v0='3KC4WWAE' where id=5; -update noar tt set b2='V83H2F1I010Y9S8QJ5XQKAAHTT' where id=5; -update noar ti set b2='V83H2F1I010Y9S8QJ5XQKAAHTT' where id=5; -update noar tt set v0='2CAH2H' where id=6; -update noar ti set v0='2CAH2H' where id=6; -update noar tt set b0='5KN6P62F8T6KI2QZ0J2G' where id=6; -update noar ti set b0='5KN6P62F8T6KI2QZ0J2G' where id=6; -update noar tt set v0='ZN1' where id=6; -update noar ti set v0='ZN1' where id=6; -update noar tt set b1='TD56FIWOOV9T33QLWNH6CL' where id=6; -update noar ti set b1='TD56FIWOOV9T33QLWNH6CL' where id=6; -update noar tt set v0='NQCYZW0Y2IJMDJ' where id=6; -update noar ti set v0='NQCYZW0Y2IJMDJ' where id=6; -update noar tt set b2='8YZP0L26KWP2KWSVX0I52HOWI21L' where id=6; -update noar ti set b2='8YZP0L26KWP2KWSVX0I52HOWI21L' where id=6; -update noar tt set v0='E5XDB8QDVBSLV3U228M9UGR' where id=7; -update noar ti set v0='E5XDB8QDVBSLV3U228M9UGR' where id=7; -update noar tt set b0='XQIABVXMDJZXAPF0FL2' where id=7; -update noar ti set b0='XQIABVXMDJZXAPF0FL2' where id=7; -update noar tt set v0='J8C31VBSKBX0Z46ZS9' where id=7; -update noar ti set v0='J8C31VBSKBX0Z46ZS9' where id=7; -update noar tt set b1='74PSP6PWHHL2O5EKZ18BSLA2DT6NTJ' where id=7; -update noar ti set b1='74PSP6PWHHL2O5EKZ18BSLA2DT6NTJ' where id=7; -update noar tt set v0='XP9LGI4YYTSN16GCDU2I' where id=7; -update noar ti set v0='XP9LGI4YYTSN16GCDU2I' where id=7; -update noar tt set b2='Q0UFFR16PFW40G2XZER' where id=7; -update noar ti set b2='Q0UFFR16PFW40G2XZER' where id=7; -update noar tt set v0='HTGPFECKCM8ZX3W6AQ02E9W2MGJYT' where id=8; -update noar ti set v0='HTGPFECKCM8ZX3W6AQ02E9W2MGJYT' where id=8; -update noar tt set b0='NOGT7Q2A0E5B9NP3TO' where id=8; -update noar ti set b0='NOGT7Q2A0E5B9NP3TO' where id=8; -update noar tt set v0='4MEA5S' where id=8; -update noar ti set v0='4MEA5S' where id=8; -update noar tt set b1='I' where id=8; -update noar ti set b1='I' where id=8; -update noar tt set v0='HJ44ZUF9VIT0VBLUZM6YX' where id=8; -update noar ti set v0='HJ44ZUF9VIT0VBLUZM6YX' where id=8; -update noar tt set b2='NOWQ33NMX08A3BF39' where id=8; -update noar ti set b2='NOWQ33NMX08A3BF39' where id=8; -update noar tt set v0='SB4VBLPCFKNVIBACVHUNVNTJTWBCVGNG' where id=9; -update noar ti set v0='SB4VBLPCFKNVIBACVHUNVNTJTWBCVGNG' where id=9; -update noar tt set b0='BAVK0O8UVSP5LMZKGU3AROG8' where id=9; -update noar ti set b0='BAVK0O8UVSP5LMZKGU3AROG8' where id=9; -update noar tt set v0='WLH8N0Y2BL1BUBGRTZOACXI5F' where id=9; -update noar ti set v0='WLH8N0Y2BL1BUBGRTZOACXI5F' where id=9; -update noar tt set b1='MITR2S8Z9B99U3U6' where id=9; -update noar ti set b1='MITR2S8Z9B99U3U6' where id=9; -update noar tt set v0='J7OUHRAGA7Q64L9I21VX9U6IERGR' where id=9; -update noar ti set v0='J7OUHRAGA7Q64L9I21VX9U6IERGR' where id=9; -update noar tt set b2='H41K62MYEH7YAJ' where id=9; -update noar ti set b2='H41K62MYEH7YAJ' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - v0 varchar(256) not null, - b0 tinyblob not null, - b1 tinyblob not null, - b2 tinyblob not null -) engine=tokudb; -insert into tt values (1,'','','',''); -insert into tt values (2,'','','',''); -insert into tt values (3,'','','',''); -insert into tt values (4,'','','',''); -insert into tt values (5,'','','',''); -insert into tt values (6,'','','',''); -insert into tt values (7,'','','',''); -insert into tt values (8,'','','',''); -insert into tt values (9,'','','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='IZN4AE26FMKIAPVY1GBS' where id=1; -update noar ti set v0='IZN4AE26FMKIAPVY1GBS' where id=1; -update noar tt set b0='KQBOIDHT31' where id=1; -update noar ti set b0='KQBOIDHT31' where id=1; -update noar tt set v0='I' where id=1; -update noar ti set v0='I' where id=1; -update noar tt set b1='IJ2HJ4ZQO2OM4TNM3NGK3VCNCPIJ55Z' where id=1; -update noar ti set b1='IJ2HJ4ZQO2OM4TNM3NGK3VCNCPIJ55Z' where id=1; -update noar tt set v0='LUCH9O846MXFZP6P0S1BHGWP' where id=1; -update noar ti set v0='LUCH9O846MXFZP6P0S1BHGWP' where id=1; -update noar tt set b2='YQ9SWF40' where id=1; -update noar ti set b2='YQ9SWF40' where id=1; -update noar tt set v0='22Y' where id=2; -update noar ti set v0='22Y' where id=2; -update noar tt set b0='4PP3R' where id=2; -update noar ti set b0='4PP3R' where id=2; -update noar tt set v0='VKG379CB24BM3Q0HC97TTGL' where id=2; -update noar ti set v0='VKG379CB24BM3Q0HC97TTGL' where id=2; -update noar tt set b1='XWUXQYTY6L0X9FJAJT2MENFGEFK' where id=2; -update noar ti set b1='XWUXQYTY6L0X9FJAJT2MENFGEFK' where id=2; -update noar tt set v0='UA27HBFM2R8KIJ3G8YG' where id=2; -update noar ti set v0='UA27HBFM2R8KIJ3G8YG' where id=2; -update noar tt set b2='AMB061GZYIH1HODBN1AFSU80Q0UPOJV0' where id=2; -update noar ti set b2='AMB061GZYIH1HODBN1AFSU80Q0UPOJV0' where id=2; -update noar tt set v0='A1UCNEXNHL7GAZBWX9MLA' where id=3; -update noar ti set v0='A1UCNEXNHL7GAZBWX9MLA' where id=3; -update noar tt set b0='5IV1SQ2SHJ15TB6KT0' where id=3; -update noar ti set b0='5IV1SQ2SHJ15TB6KT0' where id=3; -update noar tt set v0='1M8FQQ360XV40' where id=3; -update noar ti set v0='1M8FQQ360XV40' where id=3; -update noar tt set b1='2' where id=3; -update noar ti set b1='2' where id=3; -update noar tt set v0='K7SID54GZ9LCSYD5WZHL0' where id=3; -update noar ti set v0='K7SID54GZ9LCSYD5WZHL0' where id=3; -update noar tt set b2='Z1PFTP91MKG7PFQVXGCCPMK8YZ2T' where id=3; -update noar ti set b2='Z1PFTP91MKG7PFQVXGCCPMK8YZ2T' where id=3; -update noar tt set v0='190QA423L6' where id=4; -update noar ti set v0='190QA423L6' where id=4; -update noar tt set b0='0N4L1A6DBECPSCGROA08ALPWW' where id=4; -update noar ti set b0='0N4L1A6DBECPSCGROA08ALPWW' where id=4; -update noar tt set v0='RV8YXGAFFEW' where id=4; -update noar ti set v0='RV8YXGAFFEW' where id=4; -update noar tt set b1='B' where id=4; -update noar ti set b1='B' where id=4; -update noar tt set v0='JWHU540G27P1NE5GK44' where id=4; -update noar ti set v0='JWHU540G27P1NE5GK44' where id=4; -update noar tt set b2='95LW7P' where id=4; -update noar ti set b2='95LW7P' where id=4; -update noar tt set v0='X6W3Y' where id=5; -update noar ti set v0='X6W3Y' where id=5; -update noar tt set b0='KA3PNL7ZZWYI0KST' where id=5; -update noar ti set b0='KA3PNL7ZZWYI0KST' where id=5; -update noar tt set v0='NW752UMNSAT85AG' where id=5; -update noar ti set v0='NW752UMNSAT85AG' where id=5; -update noar tt set b1='6Y6I3I20EWCRC659SW1D8BJHJ7I' where id=5; -update noar ti set b1='6Y6I3I20EWCRC659SW1D8BJHJ7I' where id=5; -update noar tt set v0='WK80P9WHFP8WCXEVJL4VXMMB' where id=5; -update noar ti set v0='WK80P9WHFP8WCXEVJL4VXMMB' where id=5; -update noar tt set b2='FD91QTIIO36J67JV0UUZZPO4V' where id=5; -update noar ti set b2='FD91QTIIO36J67JV0UUZZPO4V' where id=5; -update noar tt set v0='35B8ISOR6POBVG1YENORJ' where id=6; -update noar ti set v0='35B8ISOR6POBVG1YENORJ' where id=6; -update noar tt set b0='M3AV00MT33WE8CMKQU3CH58H02TAN' where id=6; -update noar ti set b0='M3AV00MT33WE8CMKQU3CH58H02TAN' where id=6; -update noar tt set v0='7590AYRMGET4QQ8ACT' where id=6; -update noar ti set v0='7590AYRMGET4QQ8ACT' where id=6; -update noar tt set b1='EEJT7SFNX7M58C3MJ0MT3UHPVHNHZ' where id=6; -update noar ti set b1='EEJT7SFNX7M58C3MJ0MT3UHPVHNHZ' where id=6; -update noar tt set v0='MUFTF428' where id=6; -update noar ti set v0='MUFTF428' where id=6; -update noar tt set b2='U4AQMT3YXHE9Y4AJ' where id=6; -update noar ti set b2='U4AQMT3YXHE9Y4AJ' where id=6; -update noar tt set v0='W' where id=7; -update noar ti set v0='W' where id=7; -update noar tt set b0='K1FE85KDJ5TCJEW2J39AIY' where id=7; -update noar ti set b0='K1FE85KDJ5TCJEW2J39AIY' where id=7; -update noar tt set v0='H0VFZCKKDVRD' where id=7; -update noar ti set v0='H0VFZCKKDVRD' where id=7; -update noar tt set b1='NR927SNJSVLUSEDEOXP6Y42SO6316' where id=7; -update noar ti set b1='NR927SNJSVLUSEDEOXP6Y42SO6316' where id=7; -update noar tt set v0='4HT5CYXGHTO8R682IB7BW8' where id=7; -update noar ti set v0='4HT5CYXGHTO8R682IB7BW8' where id=7; -update noar tt set b2='A4J1U09SB44' where id=7; -update noar ti set b2='A4J1U09SB44' where id=7; -update noar tt set v0='OVP4QJY83KNWG48C4GLQJ' where id=8; -update noar ti set v0='OVP4QJY83KNWG48C4GLQJ' where id=8; -update noar tt set b0='1TUBS' where id=8; -update noar ti set b0='1TUBS' where id=8; -update noar tt set v0='N6LNMNGSDD8G148JQAI2KVO' where id=8; -update noar ti set v0='N6LNMNGSDD8G148JQAI2KVO' where id=8; -update noar tt set b1='98AZS' where id=8; -update noar ti set b1='98AZS' where id=8; -update noar tt set v0='L' where id=8; -update noar ti set v0='L' where id=8; -update noar tt set b2='QZL5PAOLMIJPVLJ6WK75GG0RR2L7K7G' where id=8; -update noar ti set b2='QZL5PAOLMIJPVLJ6WK75GG0RR2L7K7G' where id=8; -update noar tt set v0='TAHWUXACQRHYJY24' where id=9; -update noar ti set v0='TAHWUXACQRHYJY24' where id=9; -update noar tt set b0='LWGVFJMN17C6' where id=9; -update noar ti set b0='LWGVFJMN17C6' where id=9; -update noar tt set v0='F' where id=9; -update noar ti set v0='F' where id=9; -update noar tt set b1='LP59ERAGE2PQNSVMW1QEZAOJ38ZPMDSA' where id=9; -update noar ti set b1='LP59ERAGE2PQNSVMW1QEZAOJ38ZPMDSA' where id=9; -update noar tt set v0='Q40BUM86DC118LJR' where id=9; -update noar ti set v0='Q40BUM86DC118LJR' where id=9; -update noar tt set b2='LUVZODTSZVB6E42SAOJ5ZV9NBSC00S33' where id=9; -update noar ti set b2='LUVZODTSZVB6E42SAOJ5ZV9NBSC00S33' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - v0 varchar(32) null, - b0 tinyblob null, - b1 tinyblob null, - b2 blob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='04ZQCUB6BKE12K' where id=1; -update noar ti set v0='04ZQCUB6BKE12K' where id=1; -update noar tt set b0='HKPCNPZ2S6Z4KYXKA98ZQHH' where id=1; -update noar ti set b0='HKPCNPZ2S6Z4KYXKA98ZQHH' where id=1; -update noar tt set v0='39NL47XA6NTRW' where id=1; -update noar ti set v0='39NL47XA6NTRW' where id=1; -update noar tt set b1='KDZVPTK934BSLJ6FIVNRCKCZ1QZKQI5B' where id=1; -update noar ti set b1='KDZVPTK934BSLJ6FIVNRCKCZ1QZKQI5B' where id=1; -update noar tt set v0='P' where id=1; -update noar ti set v0='P' where id=1; -update noar tt set b2='MH1IJI242DG8ML6GNTCMS1LDRE' where id=1; -update noar ti set b2='MH1IJI242DG8ML6GNTCMS1LDRE' where id=1; -update noar tt set v0='GUCUV3K' where id=2; -update noar ti set v0='GUCUV3K' where id=2; -update noar tt set b0='I0OB2NXIDVOMUFUEWG778RYAV' where id=2; -update noar ti set b0='I0OB2NXIDVOMUFUEWG778RYAV' where id=2; -update noar tt set v0='PE00LJ6ZMZOZGMK31X' where id=2; -update noar ti set v0='PE00LJ6ZMZOZGMK31X' where id=2; -update noar tt set b1='2H8XU7WKA' where id=2; -update noar ti set b1='2H8XU7WKA' where id=2; -update noar tt set v0='4GR2VSOJLWNJW4FL1NHACDKSSX21Z' where id=2; -update noar ti set v0='4GR2VSOJLWNJW4FL1NHACDKSSX21Z' where id=2; -update noar tt set b2='TOXIW3KYIG7DU72EVPQKDOE' where id=2; -update noar ti set b2='TOXIW3KYIG7DU72EVPQKDOE' where id=2; -update noar tt set v0='CP' where id=3; -update noar ti set v0='CP' where id=3; -update noar tt set b0='8YLC8Y7UUPT6U' where id=3; -update noar ti set b0='8YLC8Y7UUPT6U' where id=3; -update noar tt set v0='RUYO' where id=3; -update noar ti set v0='RUYO' where id=3; -update noar tt set b1='AD0MQ9CN5N9HSFIUE66ZBFZY' where id=3; -update noar ti set b1='AD0MQ9CN5N9HSFIUE66ZBFZY' where id=3; -update noar tt set v0='OQSNGFVVXD82ZGP7M8E30EX7JQ' where id=3; -update noar ti set v0='OQSNGFVVXD82ZGP7M8E30EX7JQ' where id=3; -update noar tt set b2='SJ2S157JO18KTYBITPUB' where id=3; -update noar ti set b2='SJ2S157JO18KTYBITPUB' where id=3; -update noar tt set v0='6BSLT8FMWFU55M9CDLE16' where id=4; -update noar ti set v0='6BSLT8FMWFU55M9CDLE16' where id=4; -update noar tt set b0='A6' where id=4; -update noar ti set b0='A6' where id=4; -update noar tt set v0='LX2T4D2HTX6XHUITHB7ZI9OZ' where id=4; -update noar ti set v0='LX2T4D2HTX6XHUITHB7ZI9OZ' where id=4; -update noar tt set b1='LET5Y65TUD3CZHRQ6WEHGRZWMJX9HS' where id=4; -update noar ti set b1='LET5Y65TUD3CZHRQ6WEHGRZWMJX9HS' where id=4; -update noar tt set v0='Z1MTYBNZLJOR50MH84FXT2IMW8S' where id=4; -update noar ti set v0='Z1MTYBNZLJOR50MH84FXT2IMW8S' where id=4; -update noar tt set b2='X1LF7KW4S1DUBYSHED21GWV2V' where id=4; -update noar ti set b2='X1LF7KW4S1DUBYSHED21GWV2V' where id=4; -update noar tt set v0='YYOW1K' where id=5; -update noar ti set v0='YYOW1K' where id=5; -update noar tt set b0='MUM1E0NFLAGCX1IGOGMZ0G2M9' where id=5; -update noar ti set b0='MUM1E0NFLAGCX1IGOGMZ0G2M9' where id=5; -update noar tt set v0='SLRQDJP6NV15BOC1R' where id=5; -update noar ti set v0='SLRQDJP6NV15BOC1R' where id=5; -update noar tt set b1='GG9523OCJK3W7GPTUVVYR71C' where id=5; -update noar ti set b1='GG9523OCJK3W7GPTUVVYR71C' where id=5; -update noar tt set v0='GMY3INN6W8UPADCLXFCSKQFLCHJ85' where id=5; -update noar ti set v0='GMY3INN6W8UPADCLXFCSKQFLCHJ85' where id=5; -update noar tt set b2='4' where id=5; -update noar ti set b2='4' where id=5; -update noar tt set v0='RHPYNI5C95YRMZKI3UGFZLOT6K5L' where id=6; -update noar ti set v0='RHPYNI5C95YRMZKI3UGFZLOT6K5L' where id=6; -update noar tt set b0='R3MU2F0PW007PN' where id=6; -update noar ti set b0='R3MU2F0PW007PN' where id=6; -update noar tt set v0='0B3O4POU0MFYT8' where id=6; -update noar ti set v0='0B3O4POU0MFYT8' where id=6; -update noar tt set b1='MYDNT1DWITK1I' where id=6; -update noar ti set b1='MYDNT1DWITK1I' where id=6; -update noar tt set v0='0IET0IV730CDS3YP' where id=6; -update noar ti set v0='0IET0IV730CDS3YP' where id=6; -update noar tt set b2='ZNMGR3WP78U43W' where id=6; -update noar ti set b2='ZNMGR3WP78U43W' where id=6; -update noar tt set v0='9K4M9YJ21B3H9L28I' where id=7; -update noar ti set v0='9K4M9YJ21B3H9L28I' where id=7; -update noar tt set b0='ZOCGMA' where id=7; -update noar ti set b0='ZOCGMA' where id=7; -update noar tt set v0='2O8NB6AY5BGN3UPOCFENP' where id=7; -update noar ti set v0='2O8NB6AY5BGN3UPOCFENP' where id=7; -update noar tt set b1='GEEL7K9S50M' where id=7; -update noar ti set b1='GEEL7K9S50M' where id=7; -update noar tt set v0='1NZU1V' where id=7; -update noar ti set v0='1NZU1V' where id=7; -update noar tt set b2='9TOWH0PNZT50G9VOWYEKT4FQOJ' where id=7; -update noar ti set b2='9TOWH0PNZT50G9VOWYEKT4FQOJ' where id=7; -update noar tt set v0='Y8YR18HBNGB626H14D07N81XP' where id=8; -update noar ti set v0='Y8YR18HBNGB626H14D07N81XP' where id=8; -update noar tt set b0='DKUSHBR0W69D1X5A7RZ2FTMQ2WTSXM1' where id=8; -update noar ti set b0='DKUSHBR0W69D1X5A7RZ2FTMQ2WTSXM1' where id=8; -update noar tt set v0='OE9Z8D277PAO' where id=8; -update noar ti set v0='OE9Z8D277PAO' where id=8; -update noar tt set b1='MVL6SN6NA12KDDBENEYF1CTGW3A7' where id=8; -update noar ti set b1='MVL6SN6NA12KDDBENEYF1CTGW3A7' where id=8; -update noar tt set v0='L6AP' where id=8; -update noar ti set v0='L6AP' where id=8; -update noar tt set b2='3HEXQO0MCRG95KHSNHL5' where id=8; -update noar ti set b2='3HEXQO0MCRG95KHSNHL5' where id=8; -update noar tt set v0='5O27VIEO3RFE86KYI9PE23A' where id=9; -update noar ti set v0='5O27VIEO3RFE86KYI9PE23A' where id=9; -update noar tt set b0='KEJN583WTJHZ2UFJNX83YE9E9BG9FA9' where id=9; -update noar ti set b0='KEJN583WTJHZ2UFJNX83YE9E9BG9FA9' where id=9; -update noar tt set v0='MSKU6Y4W5VRH2XYI7T2SY' where id=9; -update noar ti set v0='MSKU6Y4W5VRH2XYI7T2SY' where id=9; -update noar tt set b1='DHE1H05R' where id=9; -update noar ti set b1='DHE1H05R' where id=9; -update noar tt set v0='ZI4VG1QJ' where id=9; -update noar ti set v0='ZI4VG1QJ' where id=9; -update noar tt set b2='BDWVOKE8AQSN' where id=9; -update noar ti set b2='BDWVOKE8AQSN' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - v0 varchar(256) null, - b0 tinyblob null, - b1 tinyblob null, - b2 blob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='S38V6P1S0BNAN' where id=1; -update noar ti set v0='S38V6P1S0BNAN' where id=1; -update noar tt set b0='SNX1PRRGATZDTBZQROZG936XCO35' where id=1; -update noar ti set b0='SNX1PRRGATZDTBZQROZG936XCO35' where id=1; -update noar tt set v0='OE4TZHS4ZS83W4W0H' where id=1; -update noar ti set v0='OE4TZHS4ZS83W4W0H' where id=1; -update noar tt set b1='W0K32SKSG7B96L9H' where id=1; -update noar ti set b1='W0K32SKSG7B96L9H' where id=1; -update noar tt set v0='LBOXALUNT3OWTZLKU5R9' where id=1; -update noar ti set v0='LBOXALUNT3OWTZLKU5R9' where id=1; -update noar tt set b2='0PJW46H' where id=1; -update noar ti set b2='0PJW46H' where id=1; -update noar tt set v0='LX0LP5ZNAK38' where id=2; -update noar ti set v0='LX0LP5ZNAK38' where id=2; -update noar tt set b0='2NSV3B2M9UIH8AJTXXXRDQ' where id=2; -update noar ti set b0='2NSV3B2M9UIH8AJTXXXRDQ' where id=2; -update noar tt set v0='7BVYSTXQ9U7X9Q0ULO89BCZR2S' where id=2; -update noar ti set v0='7BVYSTXQ9U7X9Q0ULO89BCZR2S' where id=2; -update noar tt set b1='U9B4KUSO5HXKLYJKWEMWGGLDA4PV0B' where id=2; -update noar ti set b1='U9B4KUSO5HXKLYJKWEMWGGLDA4PV0B' where id=2; -update noar tt set v0='TH7PT4B3CQIKZX' where id=2; -update noar ti set v0='TH7PT4B3CQIKZX' where id=2; -update noar tt set b2='SXMI1EWOHWD3JVD' where id=2; -update noar ti set b2='SXMI1EWOHWD3JVD' where id=2; -update noar tt set v0='Y0Z' where id=3; -update noar ti set v0='Y0Z' where id=3; -update noar tt set b0='K6XFB5LF110BPTEW' where id=3; -update noar ti set b0='K6XFB5LF110BPTEW' where id=3; -update noar tt set v0='SCQQFA4SM76PN' where id=3; -update noar ti set v0='SCQQFA4SM76PN' where id=3; -update noar tt set b1='Q3ENOXHHLVWONA1W8GUE32E1BWIW613M' where id=3; -update noar ti set b1='Q3ENOXHHLVWONA1W8GUE32E1BWIW613M' where id=3; -update noar tt set v0='WD0JXHA7UTFKIHHBYR40O' where id=3; -update noar ti set v0='WD0JXHA7UTFKIHHBYR40O' where id=3; -update noar tt set b2='P8WQ0SVQ68JDMOUTVQT0V8RSPX' where id=3; -update noar ti set b2='P8WQ0SVQ68JDMOUTVQT0V8RSPX' where id=3; -update noar tt set v0='5P' where id=4; -update noar ti set v0='5P' where id=4; -update noar tt set b0='1SQE34Q' where id=4; -update noar ti set b0='1SQE34Q' where id=4; -update noar tt set v0='6Y402D' where id=4; -update noar ti set v0='6Y402D' where id=4; -update noar tt set b1='LLH' where id=4; -update noar ti set b1='LLH' where id=4; -update noar tt set v0='XRUZRILLPYHCO6WANEGVC7Q' where id=4; -update noar ti set v0='XRUZRILLPYHCO6WANEGVC7Q' where id=4; -update noar tt set b2='KHOJG3ZCT0RIKVCCP78R5OYVJ' where id=4; -update noar ti set b2='KHOJG3ZCT0RIKVCCP78R5OYVJ' where id=4; -update noar tt set v0='Y' where id=5; -update noar ti set v0='Y' where id=5; -update noar tt set b0='BJG6AHGRBQX' where id=5; -update noar ti set b0='BJG6AHGRBQX' where id=5; -update noar tt set v0='MPQZ0QZB62X7Y' where id=5; -update noar ti set v0='MPQZ0QZB62X7Y' where id=5; -update noar tt set b1='WA17DYB4XZ1G8SJ9VILXJ5WBNT3FA14O' where id=5; -update noar ti set b1='WA17DYB4XZ1G8SJ9VILXJ5WBNT3FA14O' where id=5; -update noar tt set v0='RWWTFR3ZK35PYOGCJR0H49I' where id=5; -update noar ti set v0='RWWTFR3ZK35PYOGCJR0H49I' where id=5; -update noar tt set b2='TP' where id=5; -update noar ti set b2='TP' where id=5; -update noar tt set v0='0I94Y0RXY' where id=6; -update noar ti set v0='0I94Y0RXY' where id=6; -update noar tt set b0='LTKIVTQGWUU6TJ50L3' where id=6; -update noar ti set b0='LTKIVTQGWUU6TJ50L3' where id=6; -update noar tt set v0='77' where id=6; -update noar ti set v0='77' where id=6; -update noar tt set b1='57B9' where id=6; -update noar ti set b1='57B9' where id=6; -update noar tt set v0='JPVK' where id=6; -update noar ti set v0='JPVK' where id=6; -update noar tt set b2='7S8UC521SKWPB1YN' where id=6; -update noar ti set b2='7S8UC521SKWPB1YN' where id=6; -update noar tt set v0='S7V1DK2PSEEWLVRJ' where id=7; -update noar ti set v0='S7V1DK2PSEEWLVRJ' where id=7; -update noar tt set b0='M' where id=7; -update noar ti set b0='M' where id=7; -update noar tt set v0='X5SYUQ7G6F33YZT64XINLP2R991U' where id=7; -update noar ti set v0='X5SYUQ7G6F33YZT64XINLP2R991U' where id=7; -update noar tt set b1='WC0JTDYM0WUVRAP6D19PNRKN' where id=7; -update noar ti set b1='WC0JTDYM0WUVRAP6D19PNRKN' where id=7; -update noar tt set v0='DQ5R' where id=7; -update noar ti set v0='DQ5R' where id=7; -update noar tt set b2='L5WL1UCS7D63PK' where id=7; -update noar ti set b2='L5WL1UCS7D63PK' where id=7; -update noar tt set v0='FIV2QZXCI6' where id=8; -update noar ti set v0='FIV2QZXCI6' where id=8; -update noar tt set b0='Z' where id=8; -update noar ti set b0='Z' where id=8; -update noar tt set v0='KYAT0VLE4QGAX' where id=8; -update noar ti set v0='KYAT0VLE4QGAX' where id=8; -update noar tt set b1='XWAQN2Q963SD5LF1MH4MIEBCC28I9' where id=8; -update noar ti set b1='XWAQN2Q963SD5LF1MH4MIEBCC28I9' where id=8; -update noar tt set v0='UP8M2' where id=8; -update noar ti set v0='UP8M2' where id=8; -update noar tt set b2='K' where id=8; -update noar ti set b2='K' where id=8; -update noar tt set v0='4AKDGFH0WMDHUTTSAZHHRXTKHT' where id=9; -update noar ti set v0='4AKDGFH0WMDHUTTSAZHHRXTKHT' where id=9; -update noar tt set b0='EMJO39' where id=9; -update noar ti set b0='EMJO39' where id=9; -update noar tt set v0='R6ZXAJ6IVD761GY15GI4I2SC0256Q' where id=9; -update noar ti set v0='R6ZXAJ6IVD761GY15GI4I2SC0256Q' where id=9; -update noar tt set b1='8V' where id=9; -update noar ti set b1='8V' where id=9; -update noar tt set v0='MRIN8ORER7BV8U' where id=9; -update noar ti set v0='MRIN8ORER7BV8U' where id=9; -update noar tt set b2='AC06BV0K9NCB' where id=9; -update noar ti set b2='AC06BV0K9NCB' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - v0 varchar(32) not null, - b0 tinyblob not null, - b1 tinyblob not null, - b2 blob not null -) engine=tokudb; -insert into tt values (1,'','','',''); -insert into tt values (2,'','','',''); -insert into tt values (3,'','','',''); -insert into tt values (4,'','','',''); -insert into tt values (5,'','','',''); -insert into tt values (6,'','','',''); -insert into tt values (7,'','','',''); -insert into tt values (8,'','','',''); -insert into tt values (9,'','','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='PQA0U8AOMTTN0SU9USUXC385PTAKN3PZ' where id=1; -update noar ti set v0='PQA0U8AOMTTN0SU9USUXC385PTAKN3PZ' where id=1; -update noar tt set b0='LCMBPP' where id=1; -update noar ti set b0='LCMBPP' where id=1; -update noar tt set v0='AH8ZSE' where id=1; -update noar ti set v0='AH8ZSE' where id=1; -update noar tt set b1='9XYULWMAH90JMDUG1VVG2ACJ35Q7A6O' where id=1; -update noar ti set b1='9XYULWMAH90JMDUG1VVG2ACJ35Q7A6O' where id=1; -update noar tt set v0='T6ZQZAIBIGQ' where id=1; -update noar ti set v0='T6ZQZAIBIGQ' where id=1; -update noar tt set b2='26G6B' where id=1; -update noar ti set b2='26G6B' where id=1; -update noar tt set v0='KWVG4RGVCVQUG447HI15B3' where id=2; -update noar ti set v0='KWVG4RGVCVQUG447HI15B3' where id=2; -update noar tt set b0='9S06MYQVTOO8KXX3IN2DRM0ZM0MTLX8C' where id=2; -update noar ti set b0='9S06MYQVTOO8KXX3IN2DRM0ZM0MTLX8C' where id=2; -update noar tt set v0='NYKQVR682WY73LJ46X534' where id=2; -update noar ti set v0='NYKQVR682WY73LJ46X534' where id=2; -update noar tt set b1='JNR7' where id=2; -update noar ti set b1='JNR7' where id=2; -update noar tt set v0='LZGHD' where id=2; -update noar ti set v0='LZGHD' where id=2; -update noar tt set b2='F8I901PSU4HD7CMU9IGK6SVZWB27D' where id=2; -update noar ti set b2='F8I901PSU4HD7CMU9IGK6SVZWB27D' where id=2; -update noar tt set v0='VA7SDXB4FKE9H69ICCNV51JCO9TQJ0VD' where id=3; -update noar ti set v0='VA7SDXB4FKE9H69ICCNV51JCO9TQJ0VD' where id=3; -update noar tt set b0='LBDU1PQOW1FJS1SMMJ34KM0TDXGIY' where id=3; -update noar ti set b0='LBDU1PQOW1FJS1SMMJ34KM0TDXGIY' where id=3; -update noar tt set v0='HGB6LP6SZ87D1CHB5CG2' where id=3; -update noar ti set v0='HGB6LP6SZ87D1CHB5CG2' where id=3; -update noar tt set b1='4OR' where id=3; -update noar ti set b1='4OR' where id=3; -update noar tt set v0='YHEPADHHPLEG7FAB6HLGCR45C7L' where id=3; -update noar ti set v0='YHEPADHHPLEG7FAB6HLGCR45C7L' where id=3; -update noar tt set b2='ZM4YUEG9LQXXFWB41' where id=3; -update noar ti set b2='ZM4YUEG9LQXXFWB41' where id=3; -update noar tt set v0='DI2G8CM3688G76J0CFBM6JA5O9LM6X' where id=4; -update noar ti set v0='DI2G8CM3688G76J0CFBM6JA5O9LM6X' where id=4; -update noar tt set b0='43ENW7LUTWV0R' where id=4; -update noar ti set b0='43ENW7LUTWV0R' where id=4; -update noar tt set v0='N' where id=4; -update noar ti set v0='N' where id=4; -update noar tt set b1='UMBBU6MVYCK42I7ACK' where id=4; -update noar ti set b1='UMBBU6MVYCK42I7ACK' where id=4; -update noar tt set v0='4DFQD' where id=4; -update noar ti set v0='4DFQD' where id=4; -update noar tt set b2='T8GL5FTXYIIR487B9A' where id=4; -update noar ti set b2='T8GL5FTXYIIR487B9A' where id=4; -update noar tt set v0='VC3A0WRGPZ' where id=5; -update noar ti set v0='VC3A0WRGPZ' where id=5; -update noar tt set b0='QG1WQTBLSQ5OX0117EPL' where id=5; -update noar ti set b0='QG1WQTBLSQ5OX0117EPL' where id=5; -update noar tt set v0='LMJ3B63T0RKW1PY6PKA3V3JBP' where id=5; -update noar ti set v0='LMJ3B63T0RKW1PY6PKA3V3JBP' where id=5; -update noar tt set b1='E5Y' where id=5; -update noar ti set b1='E5Y' where id=5; -update noar tt set v0='41I5732CA8FNMWFR9S9' where id=5; -update noar ti set v0='41I5732CA8FNMWFR9S9' where id=5; -update noar tt set b2='RYAIU39QF00IHDN38OGC' where id=5; -update noar ti set b2='RYAIU39QF00IHDN38OGC' where id=5; -update noar tt set v0='I8RJB9RDL8JPYMY8S81N1N' where id=6; -update noar ti set v0='I8RJB9RDL8JPYMY8S81N1N' where id=6; -update noar tt set b0='O80GCRGKEU' where id=6; -update noar ti set b0='O80GCRGKEU' where id=6; -update noar tt set v0='R6XD8JUP4B1H3PRP' where id=6; -update noar ti set v0='R6XD8JUP4B1H3PRP' where id=6; -update noar tt set b1='U2P30RM7JDIXGTG2IA8H33IGEQKA99' where id=6; -update noar ti set b1='U2P30RM7JDIXGTG2IA8H33IGEQKA99' where id=6; -update noar tt set v0='63DKVNZHNN0' where id=6; -update noar ti set v0='63DKVNZHNN0' where id=6; -update noar tt set b2='FSTAA6AUZLYLT3F9' where id=6; -update noar ti set b2='FSTAA6AUZLYLT3F9' where id=6; -update noar tt set v0='X7E9TW3BK' where id=7; -update noar ti set v0='X7E9TW3BK' where id=7; -update noar tt set b0='NQLIZ13XOI7NLODXN' where id=7; -update noar ti set b0='NQLIZ13XOI7NLODXN' where id=7; -update noar tt set v0='9VGQ3IK7222SRVTW7Q6C60O60BGTX' where id=7; -update noar ti set v0='9VGQ3IK7222SRVTW7Q6C60O60BGTX' where id=7; -update noar tt set b1='OV3TRV2LWC16R2Q' where id=7; -update noar ti set b1='OV3TRV2LWC16R2Q' where id=7; -update noar tt set v0='MWKKZJ3GL5KLCTZWV6GX' where id=7; -update noar ti set v0='MWKKZJ3GL5KLCTZWV6GX' where id=7; -update noar tt set b2='T46QEM927MDPU16R' where id=7; -update noar ti set b2='T46QEM927MDPU16R' where id=7; -update noar tt set v0='0RSGX' where id=8; -update noar ti set v0='0RSGX' where id=8; -update noar tt set b0='HT37NEDB1WXQ3855' where id=8; -update noar ti set b0='HT37NEDB1WXQ3855' where id=8; -update noar tt set v0='AHNZ1LK3OX7T7AJCJ4HNNI' where id=8; -update noar ti set v0='AHNZ1LK3OX7T7AJCJ4HNNI' where id=8; -update noar tt set b1='XBNBB2QG5' where id=8; -update noar ti set b1='XBNBB2QG5' where id=8; -update noar tt set v0='95C5HUKGZBLFI5ON4BS42GSH8' where id=8; -update noar ti set v0='95C5HUKGZBLFI5ON4BS42GSH8' where id=8; -update noar tt set b2='V6Q7T5NKSMM2TPD4LM9IJ22QFJRESPY0' where id=8; -update noar ti set b2='V6Q7T5NKSMM2TPD4LM9IJ22QFJRESPY0' where id=8; -update noar tt set v0='JFN0P8CFP8J4SVPUA7EUIC' where id=9; -update noar ti set v0='JFN0P8CFP8J4SVPUA7EUIC' where id=9; -update noar tt set b0='95HOEIDJUK0POO7C0CLNBW9FXXK' where id=9; -update noar ti set b0='95HOEIDJUK0POO7C0CLNBW9FXXK' where id=9; -update noar tt set v0='70IPM' where id=9; -update noar ti set v0='70IPM' where id=9; -update noar tt set b1='8Q' where id=9; -update noar ti set b1='8Q' where id=9; -update noar tt set v0='UYS1XSNQ' where id=9; -update noar ti set v0='UYS1XSNQ' where id=9; -update noar tt set b2='JWKAH0' where id=9; -update noar ti set b2='JWKAH0' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - v0 varchar(256) not null, - b0 tinyblob not null, - b1 tinyblob not null, - b2 blob not null -) engine=tokudb; -insert into tt values (1,'','','',''); -insert into tt values (2,'','','',''); -insert into tt values (3,'','','',''); -insert into tt values (4,'','','',''); -insert into tt values (5,'','','',''); -insert into tt values (6,'','','',''); -insert into tt values (7,'','','',''); -insert into tt values (8,'','','',''); -insert into tt values (9,'','','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='VY8' where id=1; -update noar ti set v0='VY8' where id=1; -update noar tt set b0='X2P0YGHY4R437' where id=1; -update noar ti set b0='X2P0YGHY4R437' where id=1; -update noar tt set v0='4DP0EL8WK0RDZYZ4ICS3V' where id=1; -update noar ti set v0='4DP0EL8WK0RDZYZ4ICS3V' where id=1; -update noar tt set b1='E' where id=1; -update noar ti set b1='E' where id=1; -update noar tt set v0='9NEV08TH95QF' where id=1; -update noar ti set v0='9NEV08TH95QF' where id=1; -update noar tt set b2='0P6FW9QRC66S3WI78VH4L' where id=1; -update noar ti set b2='0P6FW9QRC66S3WI78VH4L' where id=1; -update noar tt set v0='VKCLFL5J8QJ6L931Y4E8' where id=2; -update noar ti set v0='VKCLFL5J8QJ6L931Y4E8' where id=2; -update noar tt set b0='M4YM3DU5X363CCO' where id=2; -update noar ti set b0='M4YM3DU5X363CCO' where id=2; -update noar tt set v0='B208818XS6PVAN8D2DP0NHK73K829Z' where id=2; -update noar ti set v0='B208818XS6PVAN8D2DP0NHK73K829Z' where id=2; -update noar tt set b1='QEE9916C0K2P2LVNIFYW32MTDO5MCL' where id=2; -update noar ti set b1='QEE9916C0K2P2LVNIFYW32MTDO5MCL' where id=2; -update noar tt set v0='5T81QTWD0VP5HN2W7JX5GK' where id=2; -update noar ti set v0='5T81QTWD0VP5HN2W7JX5GK' where id=2; -update noar tt set b2='EMIQD8DJ3PZ67YSJ' where id=2; -update noar ti set b2='EMIQD8DJ3PZ67YSJ' where id=2; -update noar tt set v0='GM0J5TMT5B7OTMDL7UVD' where id=3; -update noar ti set v0='GM0J5TMT5B7OTMDL7UVD' where id=3; -update noar tt set b0='TRGLG5' where id=3; -update noar ti set b0='TRGLG5' where id=3; -update noar tt set v0='6P' where id=3; -update noar ti set v0='6P' where id=3; -update noar tt set b1='8JI5TNDWBE9' where id=3; -update noar ti set b1='8JI5TNDWBE9' where id=3; -update noar tt set v0='2PO3AP0TZKHUJ2' where id=3; -update noar ti set v0='2PO3AP0TZKHUJ2' where id=3; -update noar tt set b2='W5736CY1SH9QY2785CN7IGON1RB' where id=3; -update noar ti set b2='W5736CY1SH9QY2785CN7IGON1RB' where id=3; -update noar tt set v0='K2DHG0' where id=4; -update noar ti set v0='K2DHG0' where id=4; -update noar tt set b0='GSLZ8M9YMTHGXQGY59TCL7' where id=4; -update noar ti set b0='GSLZ8M9YMTHGXQGY59TCL7' where id=4; -update noar tt set v0='ZHAH3O9B1JN1D526JE6PC3XJ6W4HN8KL' where id=4; -update noar ti set v0='ZHAH3O9B1JN1D526JE6PC3XJ6W4HN8KL' where id=4; -update noar tt set b1='M2UMTZD4N68LKNZ' where id=4; -update noar ti set b1='M2UMTZD4N68LKNZ' where id=4; -update noar tt set v0='KQFOM64' where id=4; -update noar ti set v0='KQFOM64' where id=4; -update noar tt set b2='FC2SY3' where id=4; -update noar ti set b2='FC2SY3' where id=4; -update noar tt set v0='ABRFPIUA0PI5OMV8BQ' where id=5; -update noar ti set v0='ABRFPIUA0PI5OMV8BQ' where id=5; -update noar tt set b0='47ESUSFE93S92AEKPL3' where id=5; -update noar ti set b0='47ESUSFE93S92AEKPL3' where id=5; -update noar tt set v0='W6QW2KQVVWEPOHNZ77RMRB27LB9' where id=5; -update noar ti set v0='W6QW2KQVVWEPOHNZ77RMRB27LB9' where id=5; -update noar tt set b1='AUIZY8VJI24KCGKOSNFN3DQBYSQ' where id=5; -update noar ti set b1='AUIZY8VJI24KCGKOSNFN3DQBYSQ' where id=5; -update noar tt set v0='UKWWN8F72MVX2DWKDLBEY3HBSZI9MK' where id=5; -update noar ti set v0='UKWWN8F72MVX2DWKDLBEY3HBSZI9MK' where id=5; -update noar tt set b2='WN4KJXBY2UEV6V6R1LSG4HN' where id=5; -update noar ti set b2='WN4KJXBY2UEV6V6R1LSG4HN' where id=5; -update noar tt set v0='NK4319E7VFJX0PLDPEC7T0PDRX5ECR9R' where id=6; -update noar ti set v0='NK4319E7VFJX0PLDPEC7T0PDRX5ECR9R' where id=6; -update noar tt set b0='QKSISHTBPRBWV712T0UFVN3UOTUJ6L1' where id=6; -update noar ti set b0='QKSISHTBPRBWV712T0UFVN3UOTUJ6L1' where id=6; -update noar tt set v0='UF378DK06HJJP6B8D5LTR9Q68FV' where id=6; -update noar ti set v0='UF378DK06HJJP6B8D5LTR9Q68FV' where id=6; -update noar tt set b1='DRZFMIHB1DJ53BNAG98F' where id=6; -update noar ti set b1='DRZFMIHB1DJ53BNAG98F' where id=6; -update noar tt set v0='R1UZ4QO41WMYL37QSSG9JP0O8O01' where id=6; -update noar ti set v0='R1UZ4QO41WMYL37QSSG9JP0O8O01' where id=6; -update noar tt set b2='GBH55CHC9VJNM5EBW2H1DH9AP1V' where id=6; -update noar ti set b2='GBH55CHC9VJNM5EBW2H1DH9AP1V' where id=6; -update noar tt set v0='EW050M4VTKQDO1' where id=7; -update noar ti set v0='EW050M4VTKQDO1' where id=7; -update noar tt set b0='F8AWRYREIYO8W9OQU' where id=7; -update noar ti set b0='F8AWRYREIYO8W9OQU' where id=7; -update noar tt set v0='T6KSNPYHF9' where id=7; -update noar ti set v0='T6KSNPYHF9' where id=7; -update noar tt set b1='X5XT8NOQBFC7U28QCA' where id=7; -update noar ti set b1='X5XT8NOQBFC7U28QCA' where id=7; -update noar tt set v0='GIDSBSEGU' where id=7; -update noar ti set v0='GIDSBSEGU' where id=7; -update noar tt set b2='7U' where id=7; -update noar ti set b2='7U' where id=7; -update noar tt set v0='1EKP5Y1W5CIW1' where id=8; -update noar ti set v0='1EKP5Y1W5CIW1' where id=8; -update noar tt set b0='EXZ92X5VWX8P6WLLE64BMHM71YPI' where id=8; -update noar ti set b0='EXZ92X5VWX8P6WLLE64BMHM71YPI' where id=8; -update noar tt set v0='XWBX7HF9MSKR6GKWNZ' where id=8; -update noar ti set v0='XWBX7HF9MSKR6GKWNZ' where id=8; -update noar tt set b1='3CXWM0LG' where id=8; -update noar ti set b1='3CXWM0LG' where id=8; -update noar tt set v0='X4CBCX6B' where id=8; -update noar ti set v0='X4CBCX6B' where id=8; -update noar tt set b2='B80QYQFOODWF9MDYBZXP5H7P6OL0OIYL' where id=8; -update noar ti set b2='B80QYQFOODWF9MDYBZXP5H7P6OL0OIYL' where id=8; -update noar tt set v0='DU3XMYOBFH6URS0ZE7P2D2UQ9Q0' where id=9; -update noar ti set v0='DU3XMYOBFH6URS0ZE7P2D2UQ9Q0' where id=9; -update noar tt set b0='H9TWUAX675GZCY3RMK6M2L' where id=9; -update noar ti set b0='H9TWUAX675GZCY3RMK6M2L' where id=9; -update noar tt set v0='0AZ3' where id=9; -update noar ti set v0='0AZ3' where id=9; -update noar tt set b1='1FKK4UEX8LM046B' where id=9; -update noar ti set b1='1FKK4UEX8LM046B' where id=9; -update noar tt set v0='XUL0HW' where id=9; -update noar ti set v0='XUL0HW' where id=9; -update noar tt set b2='62ERQT2YSTVSYXGK5SCDCKKIJ' where id=9; -update noar ti set b2='62ERQT2YSTVSYXGK5SCDCKKIJ' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - v0 varchar(32) null, - b0 tinyblob null, - b1 tinyblob null, - b2 mediumblob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='QLNH00EHACD53HBGH48S1WXQT4I3' where id=1; -update noar ti set v0='QLNH00EHACD53HBGH48S1WXQT4I3' where id=1; -update noar tt set b0='K04JDSV1O1J1SBOYPJ43E7BNNLPGPG2P' where id=1; -update noar ti set b0='K04JDSV1O1J1SBOYPJ43E7BNNLPGPG2P' where id=1; -update noar tt set v0='Q44LT7ABYHY4LGRWUMRM' where id=1; -update noar ti set v0='Q44LT7ABYHY4LGRWUMRM' where id=1; -update noar tt set b1='20KLS720GMVW8L0' where id=1; -update noar ti set b1='20KLS720GMVW8L0' where id=1; -update noar tt set v0='8IGESBH9Z56YGGXON' where id=1; -update noar ti set v0='8IGESBH9Z56YGGXON' where id=1; -update noar tt set b2='OD68NJ4JBCC1I2JN57' where id=1; -update noar ti set b2='OD68NJ4JBCC1I2JN57' where id=1; -update noar tt set v0='UE2NFRIXZ5EJT' where id=2; -update noar ti set v0='UE2NFRIXZ5EJT' where id=2; -update noar tt set b0='4NPR1ZAD7UF' where id=2; -update noar ti set b0='4NPR1ZAD7UF' where id=2; -update noar tt set v0='QBQHJLECGHY2A2VXI' where id=2; -update noar ti set v0='QBQHJLECGHY2A2VXI' where id=2; -update noar tt set b1='UZOF7OUH6FW5LY4IPVI7ZJR9WYHAX8L' where id=2; -update noar ti set b1='UZOF7OUH6FW5LY4IPVI7ZJR9WYHAX8L' where id=2; -update noar tt set v0='9L141WWUD0C2ZV7JMSUGY7S' where id=2; -update noar ti set v0='9L141WWUD0C2ZV7JMSUGY7S' where id=2; -update noar tt set b2='FBQPDF940H02PEMIAI' where id=2; -update noar ti set b2='FBQPDF940H02PEMIAI' where id=2; -update noar tt set v0='1SEV89PAKLVPZLVJUHCJL4RE' where id=3; -update noar ti set v0='1SEV89PAKLVPZLVJUHCJL4RE' where id=3; -update noar tt set b0='H5VTPAY3NLIRQH3G4DK7UJL8IN' where id=3; -update noar ti set b0='H5VTPAY3NLIRQH3G4DK7UJL8IN' where id=3; -update noar tt set v0='4M67PM4KZ25XMZ' where id=3; -update noar ti set v0='4M67PM4KZ25XMZ' where id=3; -update noar tt set b1='7T5JPEM9IL28AIL' where id=3; -update noar ti set b1='7T5JPEM9IL28AIL' where id=3; -update noar tt set v0='G0RCT5YHZGGSQK2MIE3JNC' where id=3; -update noar ti set v0='G0RCT5YHZGGSQK2MIE3JNC' where id=3; -update noar tt set b2='C9JU' where id=3; -update noar ti set b2='C9JU' where id=3; -update noar tt set v0='ZRAG8IP8S3MEDVSMMSBQQCF6OQ8VJAH9' where id=4; -update noar ti set v0='ZRAG8IP8S3MEDVSMMSBQQCF6OQ8VJAH9' where id=4; -update noar tt set b0='PP2CVNVO7GNCKHHKYKUEPW' where id=4; -update noar ti set b0='PP2CVNVO7GNCKHHKYKUEPW' where id=4; -update noar tt set v0='PSFHC1AUFYBEZ7I64V3766RWJ' where id=4; -update noar ti set v0='PSFHC1AUFYBEZ7I64V3766RWJ' where id=4; -update noar tt set b1='AUVBG3YEULUUGVZLMS7JJZ' where id=4; -update noar ti set b1='AUVBG3YEULUUGVZLMS7JJZ' where id=4; -update noar tt set v0='0PAQSL4ST8SBIHYNY0YHCW6H' where id=4; -update noar ti set v0='0PAQSL4ST8SBIHYNY0YHCW6H' where id=4; -update noar tt set b2='AK8PSI77WH1' where id=4; -update noar ti set b2='AK8PSI77WH1' where id=4; -update noar tt set v0='IWEOB12HV1N9ZW6653YDJV' where id=5; -update noar ti set v0='IWEOB12HV1N9ZW6653YDJV' where id=5; -update noar tt set b0='CK0DBGO52T0L0WXZGTEX440VIFFK' where id=5; -update noar ti set b0='CK0DBGO52T0L0WXZGTEX440VIFFK' where id=5; -update noar tt set v0='7Y0SH837Y9LE4O3P41' where id=5; -update noar ti set v0='7Y0SH837Y9LE4O3P41' where id=5; -update noar tt set b1='JHVHRTV3' where id=5; -update noar ti set b1='JHVHRTV3' where id=5; -update noar tt set v0='N76JP' where id=5; -update noar ti set v0='N76JP' where id=5; -update noar tt set b2='NM' where id=5; -update noar ti set b2='NM' where id=5; -update noar tt set v0='RC0INFBHY8E' where id=6; -update noar ti set v0='RC0INFBHY8E' where id=6; -update noar tt set b0='YYIN55CU7F21J5IPDW9V3NU' where id=6; -update noar ti set b0='YYIN55CU7F21J5IPDW9V3NU' where id=6; -update noar tt set v0='SBFY48ZNF5H5DH' where id=6; -update noar ti set v0='SBFY48ZNF5H5DH' where id=6; -update noar tt set b1='L21LI3R625D2YJGAFP' where id=6; -update noar ti set b1='L21LI3R625D2YJGAFP' where id=6; -update noar tt set v0='LMUD0LNEI1MU3M1' where id=6; -update noar ti set v0='LMUD0LNEI1MU3M1' where id=6; -update noar tt set b2='SN23OYXBUAD3GV' where id=6; -update noar ti set b2='SN23OYXBUAD3GV' where id=6; -update noar tt set v0='3JOBCL2CC5NTUGQWZ45MXVD' where id=7; -update noar ti set v0='3JOBCL2CC5NTUGQWZ45MXVD' where id=7; -update noar tt set b0='K134GIICU4LB7XP4V94BCJCVLEF4ZQDY' where id=7; -update noar ti set b0='K134GIICU4LB7XP4V94BCJCVLEF4ZQDY' where id=7; -update noar tt set v0='7U5AE7T8BQ8JDZSGAYO5V' where id=7; -update noar ti set v0='7U5AE7T8BQ8JDZSGAYO5V' where id=7; -update noar tt set b1='DNH2DYGAHWXHDTEJ7D2' where id=7; -update noar ti set b1='DNH2DYGAHWXHDTEJ7D2' where id=7; -update noar tt set v0='S1ALXBHH6UCIBT6OUVUC9Z91AS' where id=7; -update noar ti set v0='S1ALXBHH6UCIBT6OUVUC9Z91AS' where id=7; -update noar tt set b2='Z9GUG6A8O' where id=7; -update noar ti set b2='Z9GUG6A8O' where id=7; -update noar tt set v0='3FA5MX4LGENPB3EWFVFG8G3UFY' where id=8; -update noar ti set v0='3FA5MX4LGENPB3EWFVFG8G3UFY' where id=8; -update noar tt set b0='AL92PTHOTGVKKMFF8QF' where id=8; -update noar ti set b0='AL92PTHOTGVKKMFF8QF' where id=8; -update noar tt set v0='E4IC' where id=8; -update noar ti set v0='E4IC' where id=8; -update noar tt set b1='I4MWW2IRV4OTC9YCS28NQWV07XGE2MY' where id=8; -update noar ti set b1='I4MWW2IRV4OTC9YCS28NQWV07XGE2MY' where id=8; -update noar tt set v0='0RWACQZLJPQLRI3G0K19VLZ' where id=8; -update noar ti set v0='0RWACQZLJPQLRI3G0K19VLZ' where id=8; -update noar tt set b2='W8OA' where id=8; -update noar ti set b2='W8OA' where id=8; -update noar tt set v0='ETZIGE' where id=9; -update noar ti set v0='ETZIGE' where id=9; -update noar tt set b0='4SH3UBYZ6NEYPVKJ0PKCM' where id=9; -update noar ti set b0='4SH3UBYZ6NEYPVKJ0PKCM' where id=9; -update noar tt set v0='AILZHIRDBKOV' where id=9; -update noar ti set v0='AILZHIRDBKOV' where id=9; -update noar tt set b1='D4KDH28I6P4EIVVBB0P15EE24DG6X' where id=9; -update noar ti set b1='D4KDH28I6P4EIVVBB0P15EE24DG6X' where id=9; -update noar tt set v0='S9AXZ6GKNJWCT6GU9T2YFJKAFTF1O3' where id=9; -update noar ti set v0='S9AXZ6GKNJWCT6GU9T2YFJKAFTF1O3' where id=9; -update noar tt set b2='QFJ1MXK4W39DVD77U53IPIFDT1P' where id=9; -update noar ti set b2='QFJ1MXK4W39DVD77U53IPIFDT1P' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - v0 varchar(256) null, - b0 tinyblob null, - b1 tinyblob null, - b2 mediumblob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='QU22E82U77' where id=1; -update noar ti set v0='QU22E82U77' where id=1; -update noar tt set b0='ST3F5ZE5C8KCF1EV' where id=1; -update noar ti set b0='ST3F5ZE5C8KCF1EV' where id=1; -update noar tt set v0='1884Z8G7M5WO78B3B2XHGNRB5VGDV' where id=1; -update noar ti set v0='1884Z8G7M5WO78B3B2XHGNRB5VGDV' where id=1; -update noar tt set b1='YZC' where id=1; -update noar ti set b1='YZC' where id=1; -update noar tt set v0='GX9S71R6LZUZ5UW1FK38BT1L' where id=1; -update noar ti set v0='GX9S71R6LZUZ5UW1FK38BT1L' where id=1; -update noar tt set b2='8IM6W09ATIJVY79O7LCEPV9FCQ67' where id=1; -update noar ti set b2='8IM6W09ATIJVY79O7LCEPV9FCQ67' where id=1; -update noar tt set v0='W3U5T4H3ORGRI6RS44XX2KIM' where id=2; -update noar ti set v0='W3U5T4H3ORGRI6RS44XX2KIM' where id=2; -update noar tt set b0='U8R3TPXZBWZNVOLBRO8TCWR5TE' where id=2; -update noar ti set b0='U8R3TPXZBWZNVOLBRO8TCWR5TE' where id=2; -update noar tt set v0='L9AO05MW638GWS7SX5ID221' where id=2; -update noar ti set v0='L9AO05MW638GWS7SX5ID221' where id=2; -update noar tt set b1='SD99B5' where id=2; -update noar ti set b1='SD99B5' where id=2; -update noar tt set v0='UPMFXV2NDXRPATQ7978Z8LPJOYE3' where id=2; -update noar ti set v0='UPMFXV2NDXRPATQ7978Z8LPJOYE3' where id=2; -update noar tt set b2='HU8TE' where id=2; -update noar ti set b2='HU8TE' where id=2; -update noar tt set v0='ULT0MMPPM7OK9O4624QTS' where id=3; -update noar ti set v0='ULT0MMPPM7OK9O4624QTS' where id=3; -update noar tt set b0='OZMILYDFOMCXPYB' where id=3; -update noar ti set b0='OZMILYDFOMCXPYB' where id=3; -update noar tt set v0='AIATAVCG6GZRMBUEG7GXT2BOFK4USQ1' where id=3; -update noar ti set v0='AIATAVCG6GZRMBUEG7GXT2BOFK4USQ1' where id=3; -update noar tt set b1='02I6F3BHNUC9' where id=3; -update noar ti set b1='02I6F3BHNUC9' where id=3; -update noar tt set v0='D25NC7B' where id=3; -update noar ti set v0='D25NC7B' where id=3; -update noar tt set b2='30LOQD1MD0TOX3D51L6ZBJ' where id=3; -update noar ti set b2='30LOQD1MD0TOX3D51L6ZBJ' where id=3; -update noar tt set v0='RNS0LJROE' where id=4; -update noar ti set v0='RNS0LJROE' where id=4; -update noar tt set b0='I8EZDWMSQZ4Z30ESTE1M' where id=4; -update noar ti set b0='I8EZDWMSQZ4Z30ESTE1M' where id=4; -update noar tt set v0='N8A10WJ1LO0EGJCTOIXAG0OF8QF' where id=4; -update noar ti set v0='N8A10WJ1LO0EGJCTOIXAG0OF8QF' where id=4; -update noar tt set b1='8K' where id=4; -update noar ti set b1='8K' where id=4; -update noar tt set v0='ZSZQ1MHUQNGOISN7T7' where id=4; -update noar ti set v0='ZSZQ1MHUQNGOISN7T7' where id=4; -update noar tt set b2='DN7UYJP8O5N8F8GW9MST7Z' where id=4; -update noar ti set b2='DN7UYJP8O5N8F8GW9MST7Z' where id=4; -update noar tt set v0='23R1AUUMHFSN2R8R44XOSMBLI' where id=5; -update noar ti set v0='23R1AUUMHFSN2R8R44XOSMBLI' where id=5; -update noar tt set b0='VD94PIRUU' where id=5; -update noar ti set b0='VD94PIRUU' where id=5; -update noar tt set v0='166ZU4F0WEXD3HJAJTE2RXXJSOAKI' where id=5; -update noar ti set v0='166ZU4F0WEXD3HJAJTE2RXXJSOAKI' where id=5; -update noar tt set b1='YCW3NVRO' where id=5; -update noar ti set b1='YCW3NVRO' where id=5; -update noar tt set v0='TO54LKA9R42ES8HY2ICDO07' where id=5; -update noar ti set v0='TO54LKA9R42ES8HY2ICDO07' where id=5; -update noar tt set b2='91OLCN23499UQB40L5' where id=5; -update noar ti set b2='91OLCN23499UQB40L5' where id=5; -update noar tt set v0='ZG6QNIWGCANQO630A6AXKLG' where id=6; -update noar ti set v0='ZG6QNIWGCANQO630A6AXKLG' where id=6; -update noar tt set b0='WL4FRF2VDXLC8GC4V6BZ8NC' where id=6; -update noar ti set b0='WL4FRF2VDXLC8GC4V6BZ8NC' where id=6; -update noar tt set v0='TX3MFADKV55E6YH7Z9' where id=6; -update noar ti set v0='TX3MFADKV55E6YH7Z9' where id=6; -update noar tt set b1='LZBR' where id=6; -update noar ti set b1='LZBR' where id=6; -update noar tt set v0='EJ0SJO87NA1' where id=6; -update noar ti set v0='EJ0SJO87NA1' where id=6; -update noar tt set b2='18C4CTA6DT1U2ZVTO' where id=6; -update noar ti set b2='18C4CTA6DT1U2ZVTO' where id=6; -update noar tt set v0='L2LVFZPT0E01F5Y9D' where id=7; -update noar ti set v0='L2LVFZPT0E01F5Y9D' where id=7; -update noar tt set b0='16ZYKJTF' where id=7; -update noar ti set b0='16ZYKJTF' where id=7; -update noar tt set v0='XOWMD8EC3WC' where id=7; -update noar ti set v0='XOWMD8EC3WC' where id=7; -update noar tt set b1='WZHECOX9J8VQ1GXH0S2EO518GR' where id=7; -update noar ti set b1='WZHECOX9J8VQ1GXH0S2EO518GR' where id=7; -update noar tt set v0='QTU2SSON9T8FC' where id=7; -update noar ti set v0='QTU2SSON9T8FC' where id=7; -update noar tt set b2='R0J247T7UOTUU8P' where id=7; -update noar ti set b2='R0J247T7UOTUU8P' where id=7; -update noar tt set v0='DM5R1K7PX7R270HOJR1L00SJHYPLAB3Y' where id=8; -update noar ti set v0='DM5R1K7PX7R270HOJR1L00SJHYPLAB3Y' where id=8; -update noar tt set b0='HTR7Y9MQSFPNXJF5ZQSJ0' where id=8; -update noar ti set b0='HTR7Y9MQSFPNXJF5ZQSJ0' where id=8; -update noar tt set v0='JQBMFJCE37N' where id=8; -update noar ti set v0='JQBMFJCE37N' where id=8; -update noar tt set b1='1U' where id=8; -update noar ti set b1='1U' where id=8; -update noar tt set v0='51SE5CIRX4NUPHLJI9' where id=8; -update noar ti set v0='51SE5CIRX4NUPHLJI9' where id=8; -update noar tt set b2='7Y2MPAN' where id=8; -update noar ti set b2='7Y2MPAN' where id=8; -update noar tt set v0='97DBNRTK0MMBMJM5QIBPG' where id=9; -update noar ti set v0='97DBNRTK0MMBMJM5QIBPG' where id=9; -update noar tt set b0='KEJ3KBMFC9Q387YIG40S' where id=9; -update noar ti set b0='KEJ3KBMFC9Q387YIG40S' where id=9; -update noar tt set v0='KHPAIQAEF4' where id=9; -update noar ti set v0='KHPAIQAEF4' where id=9; -update noar tt set b1='NPH61C' where id=9; -update noar ti set b1='NPH61C' where id=9; -update noar tt set v0='M3EK88D5Z70HXPC' where id=9; -update noar ti set v0='M3EK88D5Z70HXPC' where id=9; -update noar tt set b2='NUACWYEZB35HZBQ4' where id=9; -update noar ti set b2='NUACWYEZB35HZBQ4' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - v0 varchar(32) not null, - b0 tinyblob not null, - b1 tinyblob not null, - b2 mediumblob not null -) engine=tokudb; -insert into tt values (1,'','','',''); -insert into tt values (2,'','','',''); -insert into tt values (3,'','','',''); -insert into tt values (4,'','','',''); -insert into tt values (5,'','','',''); -insert into tt values (6,'','','',''); -insert into tt values (7,'','','',''); -insert into tt values (8,'','','',''); -insert into tt values (9,'','','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='518' where id=1; -update noar ti set v0='518' where id=1; -update noar tt set b0='RQQ9962CCUS46HP' where id=1; -update noar ti set b0='RQQ9962CCUS46HP' where id=1; -update noar tt set v0='X6Q9KPZMBIDCTRABAVMD63JSIJV74RV3' where id=1; -update noar ti set v0='X6Q9KPZMBIDCTRABAVMD63JSIJV74RV3' where id=1; -update noar tt set b1='M648B4FLGLXBFP46D72' where id=1; -update noar ti set b1='M648B4FLGLXBFP46D72' where id=1; -update noar tt set v0='I08J13M8D' where id=1; -update noar ti set v0='I08J13M8D' where id=1; -update noar tt set b2='LDB' where id=1; -update noar ti set b2='LDB' where id=1; -update noar tt set v0='BJHUP61957IHKUUWNF3QDN3EB8K9W' where id=2; -update noar ti set v0='BJHUP61957IHKUUWNF3QDN3EB8K9W' where id=2; -update noar tt set b0='56Y' where id=2; -update noar ti set b0='56Y' where id=2; -update noar tt set v0='581YJ6O5N9MF2APEVE8VL' where id=2; -update noar ti set v0='581YJ6O5N9MF2APEVE8VL' where id=2; -update noar tt set b1='7EY309BU9X4Y5UOU74NI8CN0VJ3GZOZY' where id=2; -update noar ti set b1='7EY309BU9X4Y5UOU74NI8CN0VJ3GZOZY' where id=2; -update noar tt set v0='80A07PE' where id=2; -update noar ti set v0='80A07PE' where id=2; -update noar tt set b2='TWFE29UXN00DE13JHSGB' where id=2; -update noar ti set b2='TWFE29UXN00DE13JHSGB' where id=2; -update noar tt set v0='4' where id=3; -update noar ti set v0='4' where id=3; -update noar tt set b0='NLGJPXPBIUPNYYCOXGZN7141XCBJBKQS' where id=3; -update noar ti set b0='NLGJPXPBIUPNYYCOXGZN7141XCBJBKQS' where id=3; -update noar tt set v0='SW281Y4MB4LLBO0BFJ7SYHC2HMT' where id=3; -update noar ti set v0='SW281Y4MB4LLBO0BFJ7SYHC2HMT' where id=3; -update noar tt set b1='BWH3VF268PP9' where id=3; -update noar ti set b1='BWH3VF268PP9' where id=3; -update noar tt set v0='WQTKM50JKV0AD4LJVALOI' where id=3; -update noar ti set v0='WQTKM50JKV0AD4LJVALOI' where id=3; -update noar tt set b2='VLZCD9DJIXQUQB8IHU' where id=3; -update noar ti set b2='VLZCD9DJIXQUQB8IHU' where id=3; -update noar tt set v0='ZRF2L32JJF2MVFF26GEZ5E6RMCH26KRY' where id=4; -update noar ti set v0='ZRF2L32JJF2MVFF26GEZ5E6RMCH26KRY' where id=4; -update noar tt set b0='T1V15H7QOGXNTN08G4QUYK' where id=4; -update noar ti set b0='T1V15H7QOGXNTN08G4QUYK' where id=4; -update noar tt set v0='3' where id=4; -update noar ti set v0='3' where id=4; -update noar tt set b1='OM' where id=4; -update noar ti set b1='OM' where id=4; -update noar tt set v0='G1GAOWQ5LFA7ECZU0M9JOFLB2CPD' where id=4; -update noar ti set v0='G1GAOWQ5LFA7ECZU0M9JOFLB2CPD' where id=4; -update noar tt set b2='1WA1R' where id=4; -update noar ti set b2='1WA1R' where id=4; -update noar tt set v0='XN8X2MWVMMN' where id=5; -update noar ti set v0='XN8X2MWVMMN' where id=5; -update noar tt set b0='S6' where id=5; -update noar ti set b0='S6' where id=5; -update noar tt set v0='N8BGHSTLQIERFZ3ZN6' where id=5; -update noar ti set v0='N8BGHSTLQIERFZ3ZN6' where id=5; -update noar tt set b1='QQZBHL2X' where id=5; -update noar ti set b1='QQZBHL2X' where id=5; -update noar tt set v0='E4PE1DWIG' where id=5; -update noar ti set v0='E4PE1DWIG' where id=5; -update noar tt set b2='D0TRPD5U6R8LGPI99HJLO' where id=5; -update noar ti set b2='D0TRPD5U6R8LGPI99HJLO' where id=5; -update noar tt set v0='PJO8GX48CGMWHDIYNCIVADLZ3' where id=6; -update noar ti set v0='PJO8GX48CGMWHDIYNCIVADLZ3' where id=6; -update noar tt set b0='DUORPEZ' where id=6; -update noar ti set b0='DUORPEZ' where id=6; -update noar tt set v0='1MF' where id=6; -update noar ti set v0='1MF' where id=6; -update noar tt set b1='PCMBLJ9IP3U' where id=6; -update noar ti set b1='PCMBLJ9IP3U' where id=6; -update noar tt set v0='UHS2GSZRDOD1' where id=6; -update noar ti set v0='UHS2GSZRDOD1' where id=6; -update noar tt set b2='KMT54' where id=6; -update noar ti set b2='KMT54' where id=6; -update noar tt set v0='KSP2MC0KU0E8XEWN8C3BKDTY' where id=7; -update noar ti set v0='KSP2MC0KU0E8XEWN8C3BKDTY' where id=7; -update noar tt set b0='0JODYLCAKROICLOGQU35QS2VLAZD' where id=7; -update noar ti set b0='0JODYLCAKROICLOGQU35QS2VLAZD' where id=7; -update noar tt set v0='AX6PQEXI' where id=7; -update noar ti set v0='AX6PQEXI' where id=7; -update noar tt set b1='ZACOTHOFOXWPNGEZH8GCLL99V4QWQQ' where id=7; -update noar ti set b1='ZACOTHOFOXWPNGEZH8GCLL99V4QWQQ' where id=7; -update noar tt set v0='MV6202' where id=7; -update noar ti set v0='MV6202' where id=7; -update noar tt set b2='6MX7QGQ9ZBR5FAAOIPW' where id=7; -update noar ti set b2='6MX7QGQ9ZBR5FAAOIPW' where id=7; -update noar tt set v0='MS5LUG5UJMW6645IVFRNO5D7' where id=8; -update noar ti set v0='MS5LUG5UJMW6645IVFRNO5D7' where id=8; -update noar tt set b0='DUE20VL4BKCM1DOA' where id=8; -update noar ti set b0='DUE20VL4BKCM1DOA' where id=8; -update noar tt set v0='CFC7LKM2ENK2O9PHEX68S1' where id=8; -update noar ti set v0='CFC7LKM2ENK2O9PHEX68S1' where id=8; -update noar tt set b1='76R8B' where id=8; -update noar ti set b1='76R8B' where id=8; -update noar tt set v0='9' where id=8; -update noar ti set v0='9' where id=8; -update noar tt set b2='ROLL4' where id=8; -update noar ti set b2='ROLL4' where id=8; -update noar tt set v0='PEHLZI62WAT69PSI5WXAC4HV6SL9' where id=9; -update noar ti set v0='PEHLZI62WAT69PSI5WXAC4HV6SL9' where id=9; -update noar tt set b0='LLI97IS2BN12SRQ4P39AMY8AP5HZZ' where id=9; -update noar ti set b0='LLI97IS2BN12SRQ4P39AMY8AP5HZZ' where id=9; -update noar tt set v0='KMNY4J2' where id=9; -update noar ti set v0='KMNY4J2' where id=9; -update noar tt set b1='U' where id=9; -update noar ti set b1='U' where id=9; -update noar tt set v0='XJJFD395S96WW' where id=9; -update noar ti set v0='XJJFD395S96WW' where id=9; -update noar tt set b2='3JB2PRX38M8' where id=9; -update noar ti set b2='3JB2PRX38M8' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - v0 varchar(256) not null, - b0 tinyblob not null, - b1 tinyblob not null, - b2 mediumblob not null -) engine=tokudb; -insert into tt values (1,'','','',''); -insert into tt values (2,'','','',''); -insert into tt values (3,'','','',''); -insert into tt values (4,'','','',''); -insert into tt values (5,'','','',''); -insert into tt values (6,'','','',''); -insert into tt values (7,'','','',''); -insert into tt values (8,'','','',''); -insert into tt values (9,'','','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='PTNQA1IMDZO703XIRJEWM32KI2' where id=1; -update noar ti set v0='PTNQA1IMDZO703XIRJEWM32KI2' where id=1; -update noar tt set b0='CO' where id=1; -update noar ti set b0='CO' where id=1; -update noar tt set v0='CK5OZJ4EG13COOH2VLOP93C' where id=1; -update noar ti set v0='CK5OZJ4EG13COOH2VLOP93C' where id=1; -update noar tt set b1='2D6YAWC2N680EZ2X1HSSI' where id=1; -update noar ti set b1='2D6YAWC2N680EZ2X1HSSI' where id=1; -update noar tt set v0='PGXGLDH6' where id=1; -update noar ti set v0='PGXGLDH6' where id=1; -update noar tt set b2='N7ENXC3CL405VH4ZJAX7GQQ2T' where id=1; -update noar ti set b2='N7ENXC3CL405VH4ZJAX7GQQ2T' where id=1; -update noar tt set v0='EN' where id=2; -update noar ti set v0='EN' where id=2; -update noar tt set b0='40C2D1BHDNZ7YSW9XHM0A' where id=2; -update noar ti set b0='40C2D1BHDNZ7YSW9XHM0A' where id=2; -update noar tt set v0='0C04FJ4QVJSYV7KAQ5BOT59' where id=2; -update noar ti set v0='0C04FJ4QVJSYV7KAQ5BOT59' where id=2; -update noar tt set b1='V8YBAHJVN5PR3899Y5A2Z' where id=2; -update noar ti set b1='V8YBAHJVN5PR3899Y5A2Z' where id=2; -update noar tt set v0='CSGD5O0U' where id=2; -update noar ti set v0='CSGD5O0U' where id=2; -update noar tt set b2='624HB4TEY84KA8FRPY9TK9F52UCUQTQ' where id=2; -update noar ti set b2='624HB4TEY84KA8FRPY9TK9F52UCUQTQ' where id=2; -update noar tt set v0='OJTS9GGB7QSVWY4O94Q4AS' where id=3; -update noar ti set v0='OJTS9GGB7QSVWY4O94Q4AS' where id=3; -update noar tt set b0='5W6AOCZGNT6OXLLL981MS14NOT0VBL' where id=3; -update noar ti set b0='5W6AOCZGNT6OXLLL981MS14NOT0VBL' where id=3; -update noar tt set v0='AEUEDXZZH7YSJ' where id=3; -update noar ti set v0='AEUEDXZZH7YSJ' where id=3; -update noar tt set b1='1MU324K3F8PBIT81N2LBHOA985G6' where id=3; -update noar ti set b1='1MU324K3F8PBIT81N2LBHOA985G6' where id=3; -update noar tt set v0='5AYUCHPGG7FM8H5R22F6YU2SD0AWPK17' where id=3; -update noar ti set v0='5AYUCHPGG7FM8H5R22F6YU2SD0AWPK17' where id=3; -update noar tt set b2='0XN2OWNY' where id=3; -update noar ti set b2='0XN2OWNY' where id=3; -update noar tt set v0='U9FVQ6AWH488LMGO76KJ0CXVGKI4' where id=4; -update noar ti set v0='U9FVQ6AWH488LMGO76KJ0CXVGKI4' where id=4; -update noar tt set b0='G6XIF7E0A1H994KFAN3W8XYE' where id=4; -update noar ti set b0='G6XIF7E0A1H994KFAN3W8XYE' where id=4; -update noar tt set v0='GAJGMKN1L0N3KLBRJJ97E2DHHSCH2' where id=4; -update noar ti set v0='GAJGMKN1L0N3KLBRJJ97E2DHHSCH2' where id=4; -update noar tt set b1='DMDB2AHS9QWRRR45PRKTP766WYMN3KCF' where id=4; -update noar ti set b1='DMDB2AHS9QWRRR45PRKTP766WYMN3KCF' where id=4; -update noar tt set v0='YPR' where id=4; -update noar ti set v0='YPR' where id=4; -update noar tt set b2='RGIGJ4QK2MQYOC' where id=4; -update noar ti set b2='RGIGJ4QK2MQYOC' where id=4; -update noar tt set v0='06ZTWJ731' where id=5; -update noar ti set v0='06ZTWJ731' where id=5; -update noar tt set b0='US8XNVFU31F3IYC41Q6TVWYFGQ' where id=5; -update noar ti set b0='US8XNVFU31F3IYC41Q6TVWYFGQ' where id=5; -update noar tt set v0='2XSXJIVI1HQ76G1M5INKUCSI2XC7JY1' where id=5; -update noar ti set v0='2XSXJIVI1HQ76G1M5INKUCSI2XC7JY1' where id=5; -update noar tt set b1='X3ZU1V4S' where id=5; -update noar ti set b1='X3ZU1V4S' where id=5; -update noar tt set v0='DO' where id=5; -update noar ti set v0='DO' where id=5; -update noar tt set b2='BIF337KCVTFZOUT0HUOBCC' where id=5; -update noar ti set b2='BIF337KCVTFZOUT0HUOBCC' where id=5; -update noar tt set v0='52UPGW2LTPNUDA1RO' where id=6; -update noar ti set v0='52UPGW2LTPNUDA1RO' where id=6; -update noar tt set b0='8YTXBN7' where id=6; -update noar ti set b0='8YTXBN7' where id=6; -update noar tt set v0='Q4BKXWB' where id=6; -update noar ti set v0='Q4BKXWB' where id=6; -update noar tt set b1='WHA0' where id=6; -update noar ti set b1='WHA0' where id=6; -update noar tt set v0='U' where id=6; -update noar ti set v0='U' where id=6; -update noar tt set b2='PJ' where id=6; -update noar ti set b2='PJ' where id=6; -update noar tt set v0='T3JI7SO0XUHSNUVE30ZDQ1SIQU62' where id=7; -update noar ti set v0='T3JI7SO0XUHSNUVE30ZDQ1SIQU62' where id=7; -update noar tt set b0='UJX21AMMV02QV3JN6J6V' where id=7; -update noar ti set b0='UJX21AMMV02QV3JN6J6V' where id=7; -update noar tt set v0='6DHG' where id=7; -update noar ti set v0='6DHG' where id=7; -update noar tt set b1='4K36Y6HSW93DCV2GUOC' where id=7; -update noar ti set b1='4K36Y6HSW93DCV2GUOC' where id=7; -update noar tt set v0='G' where id=7; -update noar ti set v0='G' where id=7; -update noar tt set b2='CQCO2J5IJCUYLALOVW4YT6IEHD' where id=7; -update noar ti set b2='CQCO2J5IJCUYLALOVW4YT6IEHD' where id=7; -update noar tt set v0='CCSGEXYJS9J6' where id=8; -update noar ti set v0='CCSGEXYJS9J6' where id=8; -update noar tt set b0='EU6TW4FZZ8418L2' where id=8; -update noar ti set b0='EU6TW4FZZ8418L2' where id=8; -update noar tt set v0='2H' where id=8; -update noar ti set v0='2H' where id=8; -update noar tt set b1='MJ2QK8HYA2K5J9JD1T601ALIONVE' where id=8; -update noar ti set b1='MJ2QK8HYA2K5J9JD1T601ALIONVE' where id=8; -update noar tt set v0='NLCMGE3927F0GKK5CVT' where id=8; -update noar ti set v0='NLCMGE3927F0GKK5CVT' where id=8; -update noar tt set b2='QDR6RWQ3A4CWFPF66VHOCT' where id=8; -update noar ti set b2='QDR6RWQ3A4CWFPF66VHOCT' where id=8; -update noar tt set v0='ZCP70WPC' where id=9; -update noar ti set v0='ZCP70WPC' where id=9; -update noar tt set b0='VVS47EPKEIC5I2E2X' where id=9; -update noar ti set b0='VVS47EPKEIC5I2E2X' where id=9; -update noar tt set v0='N6H0XFLLP2Y3TK4QP7KQ3FF8NH' where id=9; -update noar ti set v0='N6H0XFLLP2Y3TK4QP7KQ3FF8NH' where id=9; -update noar tt set b1='4' where id=9; -update noar ti set b1='4' where id=9; -update noar tt set v0='GBC7XMED380WX1FKUSXM0A5OC' where id=9; -update noar ti set v0='GBC7XMED380WX1FKUSXM0A5OC' where id=9; -update noar tt set b2='P22STMN6ZZIYW9YJYLLHK3QS' where id=9; -update noar ti set b2='P22STMN6ZZIYW9YJYLLHK3QS' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - v0 varchar(32) null, - b0 tinyblob null, - b1 tinyblob null, - b2 longblob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='PA5HDSL85G26HPH9Z4H7CD9H7IO47' where id=1; -update noar ti set v0='PA5HDSL85G26HPH9Z4H7CD9H7IO47' where id=1; -update noar tt set b0='4E' where id=1; -update noar ti set b0='4E' where id=1; -update noar tt set v0='0C7FT2WFCN6ZU5I6JJOUNC2KJS' where id=1; -update noar ti set v0='0C7FT2WFCN6ZU5I6JJOUNC2KJS' where id=1; -update noar tt set b1='3MKECHHBBV2XE4KC7' where id=1; -update noar ti set b1='3MKECHHBBV2XE4KC7' where id=1; -update noar tt set v0='JSWP5EI7HWUTVDSIOORYKUM1SKR3VE' where id=1; -update noar ti set v0='JSWP5EI7HWUTVDSIOORYKUM1SKR3VE' where id=1; -update noar tt set b2='ZXDH2SQC' where id=1; -update noar ti set b2='ZXDH2SQC' where id=1; -update noar tt set v0='LIR55AI811KBFOT' where id=2; -update noar ti set v0='LIR55AI811KBFOT' where id=2; -update noar tt set b0='V6N3ULOBKQ4OE7RTE9FV5QX2ME' where id=2; -update noar ti set b0='V6N3ULOBKQ4OE7RTE9FV5QX2ME' where id=2; -update noar tt set v0='VY9VF3MVWZHL' where id=2; -update noar ti set v0='VY9VF3MVWZHL' where id=2; -update noar tt set b1='URPT2INKAZC' where id=2; -update noar ti set b1='URPT2INKAZC' where id=2; -update noar tt set v0='4E5F0A7UOIAFQCP7QOXNISWT93P3' where id=2; -update noar ti set v0='4E5F0A7UOIAFQCP7QOXNISWT93P3' where id=2; -update noar tt set b2='KP3CWJRRKM' where id=2; -update noar ti set b2='KP3CWJRRKM' where id=2; -update noar tt set v0='OEEZNDJRSYVWUR044UXUW70JKP7O' where id=3; -update noar ti set v0='OEEZNDJRSYVWUR044UXUW70JKP7O' where id=3; -update noar tt set b0='YXOP3' where id=3; -update noar ti set b0='YXOP3' where id=3; -update noar tt set v0='VYUVROLL2N' where id=3; -update noar ti set v0='VYUVROLL2N' where id=3; -update noar tt set b1='SMCFO14L1JD' where id=3; -update noar ti set b1='SMCFO14L1JD' where id=3; -update noar tt set v0='8TTRLRR8I' where id=3; -update noar ti set v0='8TTRLRR8I' where id=3; -update noar tt set b2='D' where id=3; -update noar ti set b2='D' where id=3; -update noar tt set v0='JY94NO57XOO7NVQ6I0DL8RBXI6EL' where id=4; -update noar ti set v0='JY94NO57XOO7NVQ6I0DL8RBXI6EL' where id=4; -update noar tt set b0='0E7RYLJYFGTT' where id=4; -update noar ti set b0='0E7RYLJYFGTT' where id=4; -update noar tt set v0='83NPVOMAKLM6SQ8ZMFU084DTO8' where id=4; -update noar ti set v0='83NPVOMAKLM6SQ8ZMFU084DTO8' where id=4; -update noar tt set b1='SYXXHBSWKRC5LR7H5AOHFJR9C' where id=4; -update noar ti set b1='SYXXHBSWKRC5LR7H5AOHFJR9C' where id=4; -update noar tt set v0='U5A6416LF4RA1E25EOU17TJ' where id=4; -update noar ti set v0='U5A6416LF4RA1E25EOU17TJ' where id=4; -update noar tt set b2='OGIJS9R640ZGW28N9YBQVYRDUZDPU7F' where id=4; -update noar ti set b2='OGIJS9R640ZGW28N9YBQVYRDUZDPU7F' where id=4; -update noar tt set v0='VSD9834MIY7LV' where id=5; -update noar ti set v0='VSD9834MIY7LV' where id=5; -update noar tt set b0='NLDZJGLZUMIY3' where id=5; -update noar ti set b0='NLDZJGLZUMIY3' where id=5; -update noar tt set v0='DY' where id=5; -update noar ti set v0='DY' where id=5; -update noar tt set b1='2ZLUZ8ZBC9H7PZ8KFIZ' where id=5; -update noar ti set b1='2ZLUZ8ZBC9H7PZ8KFIZ' where id=5; -update noar tt set v0='X808' where id=5; -update noar ti set v0='X808' where id=5; -update noar tt set b2='VXBFZNP6JRVZJ4N0' where id=5; -update noar ti set b2='VXBFZNP6JRVZJ4N0' where id=5; -update noar tt set v0='JGTZ186QPSSOU1GMQNV5MZ8UTRA6RC' where id=6; -update noar ti set v0='JGTZ186QPSSOU1GMQNV5MZ8UTRA6RC' where id=6; -update noar tt set b0='DC' where id=6; -update noar ti set b0='DC' where id=6; -update noar tt set v0='8NWQW3MZGGD7TBDY0HF9PE70LW1TM8T9' where id=6; -update noar ti set v0='8NWQW3MZGGD7TBDY0HF9PE70LW1TM8T9' where id=6; -update noar tt set b1='M' where id=6; -update noar ti set b1='M' where id=6; -update noar tt set v0='H2Y69AOEK' where id=6; -update noar ti set v0='H2Y69AOEK' where id=6; -update noar tt set b2='D1E8BHRQU55S2Y70VM3YGGXXOGU5FJL' where id=6; -update noar ti set b2='D1E8BHRQU55S2Y70VM3YGGXXOGU5FJL' where id=6; -update noar tt set v0='EHLT2111EWVF29Y74N1C' where id=7; -update noar ti set v0='EHLT2111EWVF29Y74N1C' where id=7; -update noar tt set b0='JTDPW0UKFVJ2VWCKWRA9PXQ' where id=7; -update noar ti set b0='JTDPW0UKFVJ2VWCKWRA9PXQ' where id=7; -update noar tt set v0='ZMFMGOBEK8QCDH97LL0PLQ86BU3FG06S' where id=7; -update noar ti set v0='ZMFMGOBEK8QCDH97LL0PLQ86BU3FG06S' where id=7; -update noar tt set b1='6SW7' where id=7; -update noar ti set b1='6SW7' where id=7; -update noar tt set v0='6' where id=7; -update noar ti set v0='6' where id=7; -update noar tt set b2='K1DJQQML2WMCQLO8IGO0' where id=7; -update noar ti set b2='K1DJQQML2WMCQLO8IGO0' where id=7; -update noar tt set v0='CO0FTRTBQUSTKNUCI2284SZTMCNCIN0K' where id=8; -update noar ti set v0='CO0FTRTBQUSTKNUCI2284SZTMCNCIN0K' where id=8; -update noar tt set b0='Z5NJ081B4V8F7G8OL' where id=8; -update noar ti set b0='Z5NJ081B4V8F7G8OL' where id=8; -update noar tt set v0='LSFGEHGIP39Z' where id=8; -update noar ti set v0='LSFGEHGIP39Z' where id=8; -update noar tt set b1='1UYVW0IJBF9WWXKOO97HCTG5WFHBA' where id=8; -update noar ti set b1='1UYVW0IJBF9WWXKOO97HCTG5WFHBA' where id=8; -update noar tt set v0='PIOKCE6G' where id=8; -update noar ti set v0='PIOKCE6G' where id=8; -update noar tt set b2='E224G' where id=8; -update noar ti set b2='E224G' where id=8; -update noar tt set v0='KSG' where id=9; -update noar ti set v0='KSG' where id=9; -update noar tt set b0='5RZOA8UX408MUZIJ71XTY4H2H' where id=9; -update noar ti set b0='5RZOA8UX408MUZIJ71XTY4H2H' where id=9; -update noar tt set v0='623TF4UB5102W89M1LKD9IWAUV7' where id=9; -update noar ti set v0='623TF4UB5102W89M1LKD9IWAUV7' where id=9; -update noar tt set b1='287AV582B2LBT0ZK167WS38' where id=9; -update noar ti set b1='287AV582B2LBT0ZK167WS38' where id=9; -update noar tt set v0='N5VNTD1L2JPP1CNR5Z43WH2TRVB2' where id=9; -update noar ti set v0='N5VNTD1L2JPP1CNR5Z43WH2TRVB2' where id=9; -update noar tt set b2='37KMQ8A030C7U62D9JZA576990' where id=9; -update noar ti set b2='37KMQ8A030C7U62D9JZA576990' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - v0 varchar(256) null, - b0 tinyblob null, - b1 tinyblob null, - b2 longblob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='JQ5H9' where id=1; -update noar ti set v0='JQ5H9' where id=1; -update noar tt set b0='VJPD0YVFG' where id=1; -update noar ti set b0='VJPD0YVFG' where id=1; -update noar tt set v0='TG21O8USE' where id=1; -update noar ti set v0='TG21O8USE' where id=1; -update noar tt set b1='6G8NCFVDGKUKASL088V3' where id=1; -update noar ti set b1='6G8NCFVDGKUKASL088V3' where id=1; -update noar tt set v0='ECY522B2EVTEFA3YWTMQ7IJT1WAN0YZX' where id=1; -update noar ti set v0='ECY522B2EVTEFA3YWTMQ7IJT1WAN0YZX' where id=1; -update noar tt set b2='RGUOOSC9F0U5KG' where id=1; -update noar ti set b2='RGUOOSC9F0U5KG' where id=1; -update noar tt set v0='AGM80' where id=2; -update noar ti set v0='AGM80' where id=2; -update noar tt set b0='3Z2F4H7KGT8COPM' where id=2; -update noar ti set b0='3Z2F4H7KGT8COPM' where id=2; -update noar tt set v0='4SJZW' where id=2; -update noar ti set v0='4SJZW' where id=2; -update noar tt set b1='K18GZ3H8T185BSIJ6F8' where id=2; -update noar ti set b1='K18GZ3H8T185BSIJ6F8' where id=2; -update noar tt set v0='GSAV7U0MXXY3JK2UW6' where id=2; -update noar ti set v0='GSAV7U0MXXY3JK2UW6' where id=2; -update noar tt set b2='2FL4SWZ15Y4VZLD8J0M9X41FS87ZYO' where id=2; -update noar ti set b2='2FL4SWZ15Y4VZLD8J0M9X41FS87ZYO' where id=2; -update noar tt set v0='K1DGS28E' where id=3; -update noar ti set v0='K1DGS28E' where id=3; -update noar tt set b0='X01UMRXH0ZKUP1W11DW' where id=3; -update noar ti set b0='X01UMRXH0ZKUP1W11DW' where id=3; -update noar tt set v0='7R8MH6TTJA03' where id=3; -update noar ti set v0='7R8MH6TTJA03' where id=3; -update noar tt set b1='XOB7YLIV8WJWKX1W' where id=3; -update noar ti set b1='XOB7YLIV8WJWKX1W' where id=3; -update noar tt set v0='HHJY' where id=3; -update noar ti set v0='HHJY' where id=3; -update noar tt set b2='YQQ4S2ZPJAGT8SQT45Z6AHAKFBD' where id=3; -update noar ti set b2='YQQ4S2ZPJAGT8SQT45Z6AHAKFBD' where id=3; -update noar tt set v0='VR3ZLY04Q0Z' where id=4; -update noar ti set v0='VR3ZLY04Q0Z' where id=4; -update noar tt set b0='NFFIOVEB1M7ESNIMYUNYI0AY7R' where id=4; -update noar ti set b0='NFFIOVEB1M7ESNIMYUNYI0AY7R' where id=4; -update noar tt set v0='G73TFDLWFTTP4UU43KOTJT17L2ZHQBO1' where id=4; -update noar ti set v0='G73TFDLWFTTP4UU43KOTJT17L2ZHQBO1' where id=4; -update noar tt set b1='66N5GUY2DRKB7KQ8HKPU5T1JWW4VJMI' where id=4; -update noar ti set b1='66N5GUY2DRKB7KQ8HKPU5T1JWW4VJMI' where id=4; -update noar tt set v0='H1PPXV3OG64MVUT1Z' where id=4; -update noar ti set v0='H1PPXV3OG64MVUT1Z' where id=4; -update noar tt set b2='VVT5D8VX' where id=4; -update noar ti set b2='VVT5D8VX' where id=4; -update noar tt set v0='VLHKW4GFZ2921QC' where id=5; -update noar ti set v0='VLHKW4GFZ2921QC' where id=5; -update noar tt set b0='CA1EO25J5QPFLG6OV00W1UIMK9Y0K74T' where id=5; -update noar ti set b0='CA1EO25J5QPFLG6OV00W1UIMK9Y0K74T' where id=5; -update noar tt set v0='KE8N4FOZX1BEP4IZSLYM7QPHB' where id=5; -update noar ti set v0='KE8N4FOZX1BEP4IZSLYM7QPHB' where id=5; -update noar tt set b1='5KW8W8MRG21D9' where id=5; -update noar ti set b1='5KW8W8MRG21D9' where id=5; -update noar tt set v0='5L9IMI8P' where id=5; -update noar ti set v0='5L9IMI8P' where id=5; -update noar tt set b2='NTQP9YOD4ILXV4M0JX62ZRTTPEXSV' where id=5; -update noar ti set b2='NTQP9YOD4ILXV4M0JX62ZRTTPEXSV' where id=5; -update noar tt set v0='N3IHQ1LFI3IKAKJ5JONX' where id=6; -update noar ti set v0='N3IHQ1LFI3IKAKJ5JONX' where id=6; -update noar tt set b0='4QEAQ0YSIDXO0G0N9X' where id=6; -update noar ti set b0='4QEAQ0YSIDXO0G0N9X' where id=6; -update noar tt set v0='UNKSY9EZAVCY9P' where id=6; -update noar ti set v0='UNKSY9EZAVCY9P' where id=6; -update noar tt set b1='IRBV92X76W9HTGV708EN' where id=6; -update noar ti set b1='IRBV92X76W9HTGV708EN' where id=6; -update noar tt set v0='1C' where id=6; -update noar ti set v0='1C' where id=6; -update noar tt set b2='JMZC6IVL6' where id=6; -update noar ti set b2='JMZC6IVL6' where id=6; -update noar tt set v0='NS5YX6DAGKEA3NCKF5IY33WK' where id=7; -update noar ti set v0='NS5YX6DAGKEA3NCKF5IY33WK' where id=7; -update noar tt set b0='8IHLZWAIV39R0VH34F' where id=7; -update noar ti set b0='8IHLZWAIV39R0VH34F' where id=7; -update noar tt set v0='3SMM9GOIVSZIWHL' where id=7; -update noar ti set v0='3SMM9GOIVSZIWHL' where id=7; -update noar tt set b1='2R10ZK23VDA2' where id=7; -update noar ti set b1='2R10ZK23VDA2' where id=7; -update noar tt set v0='SEU60PG9PS6J75J' where id=7; -update noar ti set v0='SEU60PG9PS6J75J' where id=7; -update noar tt set b2='8Z0CPGVRZXVGNE55BM4RHV4' where id=7; -update noar ti set b2='8Z0CPGVRZXVGNE55BM4RHV4' where id=7; -update noar tt set v0='BZY8XN1ZSJ0RGBZMZAP6M2' where id=8; -update noar ti set v0='BZY8XN1ZSJ0RGBZMZAP6M2' where id=8; -update noar tt set b0='Q' where id=8; -update noar ti set b0='Q' where id=8; -update noar tt set v0='8SEL11YFSI6U' where id=8; -update noar ti set v0='8SEL11YFSI6U' where id=8; -update noar tt set b1='3ZI267XHVDWH0' where id=8; -update noar ti set b1='3ZI267XHVDWH0' where id=8; -update noar tt set v0='OVC6B8M7UVBAG0O6E' where id=8; -update noar ti set v0='OVC6B8M7UVBAG0O6E' where id=8; -update noar tt set b2='TPNBIOVDC' where id=8; -update noar ti set b2='TPNBIOVDC' where id=8; -update noar tt set v0='KDT6Z5NDC888GFUH42FMM56A' where id=9; -update noar ti set v0='KDT6Z5NDC888GFUH42FMM56A' where id=9; -update noar tt set b0='A' where id=9; -update noar ti set b0='A' where id=9; -update noar tt set v0='BT80PH367VLYE447H0SZXE' where id=9; -update noar ti set v0='BT80PH367VLYE447H0SZXE' where id=9; -update noar tt set b1='XIVOTV6QWRN16VZGN39PWXCOY19PYL2' where id=9; -update noar ti set b1='XIVOTV6QWRN16VZGN39PWXCOY19PYL2' where id=9; -update noar tt set v0='S07ZFDJ8M' where id=9; -update noar ti set v0='S07ZFDJ8M' where id=9; -update noar tt set b2='00K8RL' where id=9; -update noar ti set b2='00K8RL' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - v0 varchar(32) not null, - b0 tinyblob not null, - b1 tinyblob not null, - b2 longblob not null -) engine=tokudb; -insert into tt values (1,'','','',''); -insert into tt values (2,'','','',''); -insert into tt values (3,'','','',''); -insert into tt values (4,'','','',''); -insert into tt values (5,'','','',''); -insert into tt values (6,'','','',''); -insert into tt values (7,'','','',''); -insert into tt values (8,'','','',''); -insert into tt values (9,'','','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='MFE0U1AU34A7Q6LXIYXVZ9F' where id=1; -update noar ti set v0='MFE0U1AU34A7Q6LXIYXVZ9F' where id=1; -update noar tt set b0='I9B' where id=1; -update noar ti set b0='I9B' where id=1; -update noar tt set v0='XJ608V0L9RT41XBMPHMHQ2' where id=1; -update noar ti set v0='XJ608V0L9RT41XBMPHMHQ2' where id=1; -update noar tt set b1='4XFWY95F8' where id=1; -update noar ti set b1='4XFWY95F8' where id=1; -update noar tt set v0='QNXPNBW3KX88ML' where id=1; -update noar ti set v0='QNXPNBW3KX88ML' where id=1; -update noar tt set b2='BQJJX0V071AC8K' where id=1; -update noar ti set b2='BQJJX0V071AC8K' where id=1; -update noar tt set v0='LKRKMACP7HLZKBJIMXZD5' where id=2; -update noar ti set v0='LKRKMACP7HLZKBJIMXZD5' where id=2; -update noar tt set b0='U85GFW' where id=2; -update noar ti set b0='U85GFW' where id=2; -update noar tt set v0='E2OU1YDJ257IYFW41G' where id=2; -update noar ti set v0='E2OU1YDJ257IYFW41G' where id=2; -update noar tt set b1='IFUNURYM892' where id=2; -update noar ti set b1='IFUNURYM892' where id=2; -update noar tt set v0='H2SWLM2YA147BQO4F010Q9V' where id=2; -update noar ti set v0='H2SWLM2YA147BQO4F010Q9V' where id=2; -update noar tt set b2='WIQMLLAS3SAWN2TSE1YN' where id=2; -update noar ti set b2='WIQMLLAS3SAWN2TSE1YN' where id=2; -update noar tt set v0='1IJS0H7O4FXRK5OPS33DCHW' where id=3; -update noar ti set v0='1IJS0H7O4FXRK5OPS33DCHW' where id=3; -update noar tt set b0='MJLTP7CCK' where id=3; -update noar ti set b0='MJLTP7CCK' where id=3; -update noar tt set v0='HT0WZ8VBZCFO3JB7OF9XIDJOUFZHUA4' where id=3; -update noar ti set v0='HT0WZ8VBZCFO3JB7OF9XIDJOUFZHUA4' where id=3; -update noar tt set b1='L' where id=3; -update noar ti set b1='L' where id=3; -update noar tt set v0='RB9TQ5E4MOVUXXH3TS5R19MFGYCI7' where id=3; -update noar ti set v0='RB9TQ5E4MOVUXXH3TS5R19MFGYCI7' where id=3; -update noar tt set b2='H602GSGVE11Z3K2S9YJ' where id=3; -update noar ti set b2='H602GSGVE11Z3K2S9YJ' where id=3; -update noar tt set v0='4A2TBMV0DYNQF1SI1LED7Q5' where id=4; -update noar ti set v0='4A2TBMV0DYNQF1SI1LED7Q5' where id=4; -update noar tt set b0='BWOZFPIM7I2WLML23K0XEW85HX39JDW0' where id=4; -update noar ti set b0='BWOZFPIM7I2WLML23K0XEW85HX39JDW0' where id=4; -update noar tt set v0='THZB1B767B1WXPX2SMJGR' where id=4; -update noar ti set v0='THZB1B767B1WXPX2SMJGR' where id=4; -update noar tt set b1='6EFXT6GV9A4EN5RBPTW' where id=4; -update noar ti set b1='6EFXT6GV9A4EN5RBPTW' where id=4; -update noar tt set v0='OH4QKME4A3I1ZWVU' where id=4; -update noar ti set v0='OH4QKME4A3I1ZWVU' where id=4; -update noar tt set b2='6POBQ0XQ4V99HOGF3EX' where id=4; -update noar ti set b2='6POBQ0XQ4V99HOGF3EX' where id=4; -update noar tt set v0='TQLZX22AZ0N5QLI2L4DF70DY6' where id=5; -update noar ti set v0='TQLZX22AZ0N5QLI2L4DF70DY6' where id=5; -update noar tt set b0='H579V6W2NLZ0US' where id=5; -update noar ti set b0='H579V6W2NLZ0US' where id=5; -update noar tt set v0='9H8T6C41BPRR6CEZ' where id=5; -update noar ti set v0='9H8T6C41BPRR6CEZ' where id=5; -update noar tt set b1='XHDDL4RBY' where id=5; -update noar ti set b1='XHDDL4RBY' where id=5; -update noar tt set v0='A9FPDC' where id=5; -update noar ti set v0='A9FPDC' where id=5; -update noar tt set b2='8I6XV1E4I8VYCAVGY3MAEIHOCTZR2' where id=5; -update noar ti set b2='8I6XV1E4I8VYCAVGY3MAEIHOCTZR2' where id=5; -update noar tt set v0='GMP6R0GSZVRZ7XIUH9JW' where id=6; -update noar ti set v0='GMP6R0GSZVRZ7XIUH9JW' where id=6; -update noar tt set b0='DJ6VDI94SZYD1PTRV1Q' where id=6; -update noar ti set b0='DJ6VDI94SZYD1PTRV1Q' where id=6; -update noar tt set v0='6UVE7U7KB3N88QIVHGW5K' where id=6; -update noar ti set v0='6UVE7U7KB3N88QIVHGW5K' where id=6; -update noar tt set b1='DH09NPRRI80X0JET058' where id=6; -update noar ti set b1='DH09NPRRI80X0JET058' where id=6; -update noar tt set v0='J8YL9WHZ' where id=6; -update noar ti set v0='J8YL9WHZ' where id=6; -update noar tt set b2='H086K8' where id=6; -update noar ti set b2='H086K8' where id=6; -update noar tt set v0='W' where id=7; -update noar ti set v0='W' where id=7; -update noar tt set b0='7FEYN21U26Y3N15XPZ8K' where id=7; -update noar ti set b0='7FEYN21U26Y3N15XPZ8K' where id=7; -update noar tt set v0='QRBZ9R4Y4C5ZBF0ZTAPD5VM' where id=7; -update noar ti set v0='QRBZ9R4Y4C5ZBF0ZTAPD5VM' where id=7; -update noar tt set b1='FHV' where id=7; -update noar ti set b1='FHV' where id=7; -update noar tt set v0='8YAR9NYYSH' where id=7; -update noar ti set v0='8YAR9NYYSH' where id=7; -update noar tt set b2='THYEBHUCV' where id=7; -update noar ti set b2='THYEBHUCV' where id=7; -update noar tt set v0='HAWMV4IUFD7CB0IPOSNTU7GDEJWB' where id=8; -update noar ti set v0='HAWMV4IUFD7CB0IPOSNTU7GDEJWB' where id=8; -update noar tt set b0='LDUCB3CG' where id=8; -update noar ti set b0='LDUCB3CG' where id=8; -update noar tt set v0='WJ5' where id=8; -update noar ti set v0='WJ5' where id=8; -update noar tt set b1='0EXXW5UNP5R4KES' where id=8; -update noar ti set b1='0EXXW5UNP5R4KES' where id=8; -update noar tt set v0='IGRNA25M0LDRWF3NBI9EMCEGQY2XV3' where id=8; -update noar ti set v0='IGRNA25M0LDRWF3NBI9EMCEGQY2XV3' where id=8; -update noar tt set b2='UWRL32W' where id=8; -update noar ti set b2='UWRL32W' where id=8; -update noar tt set v0='N8KOKS149ELTEKUB5XD' where id=9; -update noar ti set v0='N8KOKS149ELTEKUB5XD' where id=9; -update noar tt set b0='VE8GYS3SDA9Q79XGUV3W4VD8L9D2TES' where id=9; -update noar ti set b0='VE8GYS3SDA9Q79XGUV3W4VD8L9D2TES' where id=9; -update noar tt set v0='AGU7V0' where id=9; -update noar ti set v0='AGU7V0' where id=9; -update noar tt set b1='2H' where id=9; -update noar ti set b1='2H' where id=9; -update noar tt set v0='LMPMXXNXV8BV0M8WNG7PGEYMB6' where id=9; -update noar ti set v0='LMPMXXNXV8BV0M8WNG7PGEYMB6' where id=9; -update noar tt set b2='0SJDSWLS6WQES66ZRB36N' where id=9; -update noar ti set b2='0SJDSWLS6WQES66ZRB36N' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - v0 varchar(256) not null, - b0 tinyblob not null, - b1 tinyblob not null, - b2 longblob not null -) engine=tokudb; -insert into tt values (1,'','','',''); -insert into tt values (2,'','','',''); -insert into tt values (3,'','','',''); -insert into tt values (4,'','','',''); -insert into tt values (5,'','','',''); -insert into tt values (6,'','','',''); -insert into tt values (7,'','','',''); -insert into tt values (8,'','','',''); -insert into tt values (9,'','','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='F692FKM6I697RNL5RTVXA9U5KKTZ' where id=1; -update noar ti set v0='F692FKM6I697RNL5RTVXA9U5KKTZ' where id=1; -update noar tt set b0='U2V366L' where id=1; -update noar ti set b0='U2V366L' where id=1; -update noar tt set v0='RO8IQ9G6RNZIXXJMNC3MU9TBQQ' where id=1; -update noar ti set v0='RO8IQ9G6RNZIXXJMNC3MU9TBQQ' where id=1; -update noar tt set b1='UVLBQAUHI5457J1XYBBOJ5O6A' where id=1; -update noar ti set b1='UVLBQAUHI5457J1XYBBOJ5O6A' where id=1; -update noar tt set v0='JYJZL0HQ' where id=1; -update noar ti set v0='JYJZL0HQ' where id=1; -update noar tt set b2='ZV5E2Q' where id=1; -update noar ti set b2='ZV5E2Q' where id=1; -update noar tt set v0='6XYY2F3F2H3696EHSKI6LYLKI0U8' where id=2; -update noar ti set v0='6XYY2F3F2H3696EHSKI6LYLKI0U8' where id=2; -update noar tt set b0='2I9MPRXJ0PVE' where id=2; -update noar ti set b0='2I9MPRXJ0PVE' where id=2; -update noar tt set v0='DG7Q8GBEZNAAPD6G2U9E' where id=2; -update noar ti set v0='DG7Q8GBEZNAAPD6G2U9E' where id=2; -update noar tt set b1='VHK5FCLNCPVZ50TSJCYQXMSR' where id=2; -update noar ti set b1='VHK5FCLNCPVZ50TSJCYQXMSR' where id=2; -update noar tt set v0='Q04FYRPM11B7OB' where id=2; -update noar ti set v0='Q04FYRPM11B7OB' where id=2; -update noar tt set b2='L8D2DFDO7RG0I5NYKUJ0' where id=2; -update noar ti set b2='L8D2DFDO7RG0I5NYKUJ0' where id=2; -update noar tt set v0='4OGN013L2P3QNNKF6D8WAADM' where id=3; -update noar ti set v0='4OGN013L2P3QNNKF6D8WAADM' where id=3; -update noar tt set b0='G8NWUK5VM77D' where id=3; -update noar ti set b0='G8NWUK5VM77D' where id=3; -update noar tt set v0='IUF4K1' where id=3; -update noar ti set v0='IUF4K1' where id=3; -update noar tt set b1='Y8NL0QKZKR20FZUMURW82' where id=3; -update noar ti set b1='Y8NL0QKZKR20FZUMURW82' where id=3; -update noar tt set v0='3SILD5JTGORBCZO' where id=3; -update noar ti set v0='3SILD5JTGORBCZO' where id=3; -update noar tt set b2='6QTZW6II8H' where id=3; -update noar ti set b2='6QTZW6II8H' where id=3; -update noar tt set v0='V0ZVQNK' where id=4; -update noar ti set v0='V0ZVQNK' where id=4; -update noar tt set b0='IE2MQ8BA' where id=4; -update noar ti set b0='IE2MQ8BA' where id=4; -update noar tt set v0='9NFVPUUU8Y0226V' where id=4; -update noar ti set v0='9NFVPUUU8Y0226V' where id=4; -update noar tt set b1='TK' where id=4; -update noar ti set b1='TK' where id=4; -update noar tt set v0='13TASNX' where id=4; -update noar ti set v0='13TASNX' where id=4; -update noar tt set b2='53MIYZKCI2DJ28IYJ1HMKS0HR' where id=4; -update noar ti set b2='53MIYZKCI2DJ28IYJ1HMKS0HR' where id=4; -update noar tt set v0='U2R9IHN2UZ' where id=5; -update noar ti set v0='U2R9IHN2UZ' where id=5; -update noar tt set b0='5OQJY293U7ZYJAA2GMC4O8' where id=5; -update noar ti set b0='5OQJY293U7ZYJAA2GMC4O8' where id=5; -update noar tt set v0='PHZ5IGF43L8GWNZB0KE3E5YWZH2W' where id=5; -update noar ti set v0='PHZ5IGF43L8GWNZB0KE3E5YWZH2W' where id=5; -update noar tt set b1='RW38937LA8NQUPWTJDOR2GDP' where id=5; -update noar ti set b1='RW38937LA8NQUPWTJDOR2GDP' where id=5; -update noar tt set v0='S6VVM3KTX6ZXHUHXCVZFZPP' where id=5; -update noar ti set v0='S6VVM3KTX6ZXHUHXCVZFZPP' where id=5; -update noar tt set b2='UHS87PO53UMIW7CNWDKQ' where id=5; -update noar ti set b2='UHS87PO53UMIW7CNWDKQ' where id=5; -update noar tt set v0='WOKE' where id=6; -update noar ti set v0='WOKE' where id=6; -update noar tt set b0='YT5M' where id=6; -update noar ti set b0='YT5M' where id=6; -update noar tt set v0='5SSWY' where id=6; -update noar ti set v0='5SSWY' where id=6; -update noar tt set b1='Y5ILXOA8VE1J1YRIM13PD44S3Z1' where id=6; -update noar ti set b1='Y5ILXOA8VE1J1YRIM13PD44S3Z1' where id=6; -update noar tt set v0='PSLYZIJQJSH70J' where id=6; -update noar ti set v0='PSLYZIJQJSH70J' where id=6; -update noar tt set b2='CA0W9TOM6F48FL' where id=6; -update noar ti set b2='CA0W9TOM6F48FL' where id=6; -update noar tt set v0='2PLYSS9D7S3O0' where id=7; -update noar ti set v0='2PLYSS9D7S3O0' where id=7; -update noar tt set b0='MXCJGQA1BX2XLUI3A29FAV3XPO6Q' where id=7; -update noar ti set b0='MXCJGQA1BX2XLUI3A29FAV3XPO6Q' where id=7; -update noar tt set v0='TFPY09838AXP63Y6KPF9C0XB' where id=7; -update noar ti set v0='TFPY09838AXP63Y6KPF9C0XB' where id=7; -update noar tt set b1='TEU83WTUK9F8Q8LR6GDY' where id=7; -update noar ti set b1='TEU83WTUK9F8Q8LR6GDY' where id=7; -update noar tt set v0='10U' where id=7; -update noar ti set v0='10U' where id=7; -update noar tt set b2='AGNPLF' where id=7; -update noar ti set b2='AGNPLF' where id=7; -update noar tt set v0='02CK2WZCWR7R1L8DS95SZXJ7UID' where id=8; -update noar ti set v0='02CK2WZCWR7R1L8DS95SZXJ7UID' where id=8; -update noar tt set b0='Z3IB04' where id=8; -update noar ti set b0='Z3IB04' where id=8; -update noar tt set v0='9DNP7OU59Q0MUCM0LBY0' where id=8; -update noar ti set v0='9DNP7OU59Q0MUCM0LBY0' where id=8; -update noar tt set b1='QCDCAPLGC2Q6ILNUV80DO4' where id=8; -update noar ti set b1='QCDCAPLGC2Q6ILNUV80DO4' where id=8; -update noar tt set v0='3W1HR34U3KCNCR62ZWDONW52E01W5' where id=8; -update noar ti set v0='3W1HR34U3KCNCR62ZWDONW52E01W5' where id=8; -update noar tt set b2='THLPEVK' where id=8; -update noar ti set b2='THLPEVK' where id=8; -update noar tt set v0='5EYGBI1G87PYKW6' where id=9; -update noar ti set v0='5EYGBI1G87PYKW6' where id=9; -update noar tt set b0='ZN5KD5WYAV' where id=9; -update noar ti set b0='ZN5KD5WYAV' where id=9; -update noar tt set v0='ZXXZ' where id=9; -update noar ti set v0='ZXXZ' where id=9; -update noar tt set b1='DMBUCSC' where id=9; -update noar ti set b1='DMBUCSC' where id=9; -update noar tt set v0='VNH55Q7758O81ROLL' where id=9; -update noar ti set v0='VNH55Q7758O81ROLL' where id=9; -update noar tt set b2='47V1E44NMHHR8NGW3U1U' where id=9; -update noar ti set b2='47V1E44NMHHR8NGW3U1U' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - v0 varchar(32) null, - b0 tinyblob null, - b1 blob null, - b2 tinyblob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='8Y8TFU62EGVSJXPX1889WWZZP1R24SR' where id=1; -update noar ti set v0='8Y8TFU62EGVSJXPX1889WWZZP1R24SR' where id=1; -update noar tt set b0='JLBNRI5' where id=1; -update noar ti set b0='JLBNRI5' where id=1; -update noar tt set v0='657Z9C2VSIS8S0BOUS4GN' where id=1; -update noar ti set v0='657Z9C2VSIS8S0BOUS4GN' where id=1; -update noar tt set b1='17G04YWZ5X83GR3D5ANNYDVXWFRM0J' where id=1; -update noar ti set b1='17G04YWZ5X83GR3D5ANNYDVXWFRM0J' where id=1; -update noar tt set v0='NEFEBI8YKDD2FSYEBTYPMKB5QZ4JT0OA' where id=1; -update noar ti set v0='NEFEBI8YKDD2FSYEBTYPMKB5QZ4JT0OA' where id=1; -update noar tt set b2='Y698MNX25' where id=1; -update noar ti set b2='Y698MNX25' where id=1; -update noar tt set v0='B919JNLCE3Y5TKJH24QC' where id=2; -update noar ti set v0='B919JNLCE3Y5TKJH24QC' where id=2; -update noar tt set b0='WJTMA4LU6R' where id=2; -update noar ti set b0='WJTMA4LU6R' where id=2; -update noar tt set v0='S5Q0H' where id=2; -update noar ti set v0='S5Q0H' where id=2; -update noar tt set b1='RMSMCBZ0HUGNQZQDKLUZ' where id=2; -update noar ti set b1='RMSMCBZ0HUGNQZQDKLUZ' where id=2; -update noar tt set v0='S18' where id=2; -update noar ti set v0='S18' where id=2; -update noar tt set b2='25EU28RZNCXWJ0GLZ27I' where id=2; -update noar ti set b2='25EU28RZNCXWJ0GLZ27I' where id=2; -update noar tt set v0='LRTIUXQWHTJAFIIX7VS' where id=3; -update noar ti set v0='LRTIUXQWHTJAFIIX7VS' where id=3; -update noar tt set b0='Z85WMPL67BVWPXIOQJ7LNJ' where id=3; -update noar ti set b0='Z85WMPL67BVWPXIOQJ7LNJ' where id=3; -update noar tt set v0='6GH65KMSXC9NBH30PCPCD6OFXMG' where id=3; -update noar ti set v0='6GH65KMSXC9NBH30PCPCD6OFXMG' where id=3; -update noar tt set b1='L8RL5IDLMIFY0Q3' where id=3; -update noar ti set b1='L8RL5IDLMIFY0Q3' where id=3; -update noar tt set v0='XY4DVW5XZJ8' where id=3; -update noar ti set v0='XY4DVW5XZJ8' where id=3; -update noar tt set b2='G4L' where id=3; -update noar ti set b2='G4L' where id=3; -update noar tt set v0='AGHDYX17QI3C4FQT8FD' where id=4; -update noar ti set v0='AGHDYX17QI3C4FQT8FD' where id=4; -update noar tt set b0='J305V' where id=4; -update noar ti set b0='J305V' where id=4; -update noar tt set v0='7EG02IGDF2F7PXAAMH5BZCZUR148' where id=4; -update noar ti set v0='7EG02IGDF2F7PXAAMH5BZCZUR148' where id=4; -update noar tt set b1='VAWGMUSVGOY7M549DA' where id=4; -update noar ti set b1='VAWGMUSVGOY7M549DA' where id=4; -update noar tt set v0='4N4L4XHWF3FQAWP0' where id=4; -update noar ti set v0='4N4L4XHWF3FQAWP0' where id=4; -update noar tt set b2='7XP26CHV9UQBDFS0ANMDOEE2VBU835' where id=4; -update noar ti set b2='7XP26CHV9UQBDFS0ANMDOEE2VBU835' where id=4; -update noar tt set v0='B9S8DVX3MZ60M6OS6PPELG8ALIZ' where id=5; -update noar ti set v0='B9S8DVX3MZ60M6OS6PPELG8ALIZ' where id=5; -update noar tt set b0='ZXZOHO389V70KSY' where id=5; -update noar ti set b0='ZXZOHO389V70KSY' where id=5; -update noar tt set v0='RKRL3YI88D' where id=5; -update noar ti set v0='RKRL3YI88D' where id=5; -update noar tt set b1='5KWEKK7XAXS4HCPTJS64FF' where id=5; -update noar ti set b1='5KWEKK7XAXS4HCPTJS64FF' where id=5; -update noar tt set v0='QCWXNGK1782X2RJ5O' where id=5; -update noar ti set v0='QCWXNGK1782X2RJ5O' where id=5; -update noar tt set b2='ONSN' where id=5; -update noar ti set b2='ONSN' where id=5; -update noar tt set v0='HGZ0OHSCTREB2RQE9XN8UR1748SS' where id=6; -update noar ti set v0='HGZ0OHSCTREB2RQE9XN8UR1748SS' where id=6; -update noar tt set b0='KN6' where id=6; -update noar ti set b0='KN6' where id=6; -update noar tt set v0='JJVI8J9IYCXEN4TT' where id=6; -update noar ti set v0='JJVI8J9IYCXEN4TT' where id=6; -update noar tt set b1='XXPHNOYQ5ZP1IQ73A9JKAQ' where id=6; -update noar ti set b1='XXPHNOYQ5ZP1IQ73A9JKAQ' where id=6; -update noar tt set v0='M5A5T5ALDQZ2S' where id=6; -update noar ti set v0='M5A5T5ALDQZ2S' where id=6; -update noar tt set b2='QN7EKYHJ62P66EOFYG1TGHDTKLO1KI5' where id=6; -update noar ti set b2='QN7EKYHJ62P66EOFYG1TGHDTKLO1KI5' where id=6; -update noar tt set v0='711A' where id=7; -update noar ti set v0='711A' where id=7; -update noar tt set b0='0BABH32UO' where id=7; -update noar ti set b0='0BABH32UO' where id=7; -update noar tt set v0='AFF8575R' where id=7; -update noar ti set v0='AFF8575R' where id=7; -update noar tt set b1='06N1VVVIPIZJX2ZXPDDMLVHMRJNB4DVI' where id=7; -update noar ti set b1='06N1VVVIPIZJX2ZXPDDMLVHMRJNB4DVI' where id=7; -update noar tt set v0='BB8' where id=7; -update noar ti set v0='BB8' where id=7; -update noar tt set b2='EN8' where id=7; -update noar ti set b2='EN8' where id=7; -update noar tt set v0='XFAJ3WG6A1RT02Y58S56' where id=8; -update noar ti set v0='XFAJ3WG6A1RT02Y58S56' where id=8; -update noar tt set b0='U2FAHR0OBYTH2TZUUUBR' where id=8; -update noar ti set b0='U2FAHR0OBYTH2TZUUUBR' where id=8; -update noar tt set v0='WP0ZIO09JI5S7KU' where id=8; -update noar ti set v0='WP0ZIO09JI5S7KU' where id=8; -update noar tt set b1='DGTOWH01GRNAQMQJ7E' where id=8; -update noar ti set b1='DGTOWH01GRNAQMQJ7E' where id=8; -update noar tt set v0='ULE1PTHWC4B48WISPLR5ZSFD35CDF2X3' where id=8; -update noar ti set v0='ULE1PTHWC4B48WISPLR5ZSFD35CDF2X3' where id=8; -update noar tt set b2='R2U0F5ADFZVHDIWKIYZE821KS' where id=8; -update noar ti set b2='R2U0F5ADFZVHDIWKIYZE821KS' where id=8; -update noar tt set v0='G5VHVX2PZIT2Z8GTPJIJ50B7T5W6LX' where id=9; -update noar ti set v0='G5VHVX2PZIT2Z8GTPJIJ50B7T5W6LX' where id=9; -update noar tt set b0='1WWYUFG' where id=9; -update noar ti set b0='1WWYUFG' where id=9; -update noar tt set v0='THW92PY4337G9B6J57Y07GPVJ0MMOJR5' where id=9; -update noar ti set v0='THW92PY4337G9B6J57Y07GPVJ0MMOJR5' where id=9; -update noar tt set b1='EEOP' where id=9; -update noar ti set b1='EEOP' where id=9; -update noar tt set v0='EXVRZNXS6308' where id=9; -update noar ti set v0='EXVRZNXS6308' where id=9; -update noar tt set b2='KVNVS6TASTDKU0' where id=9; -update noar ti set b2='KVNVS6TASTDKU0' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - v0 varchar(256) null, - b0 tinyblob null, - b1 blob null, - b2 tinyblob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='5BY2WL' where id=1; -update noar ti set v0='5BY2WL' where id=1; -update noar tt set b0='2LG9OQA' where id=1; -update noar ti set b0='2LG9OQA' where id=1; -update noar tt set v0='8A545MSMWTN02VPVU06CGR4AU9XPMS8G' where id=1; -update noar ti set v0='8A545MSMWTN02VPVU06CGR4AU9XPMS8G' where id=1; -update noar tt set b1='10IQ1YK40X5OYJLVLU10U8UBLAUGUC' where id=1; -update noar ti set b1='10IQ1YK40X5OYJLVLU10U8UBLAUGUC' where id=1; -update noar tt set v0='I9N4' where id=1; -update noar ti set v0='I9N4' where id=1; -update noar tt set b2='9S04H0WXMJGX' where id=1; -update noar ti set b2='9S04H0WXMJGX' where id=1; -update noar tt set v0='C17BARNR0UP55LYOC15Y0LXTWN10J1' where id=2; -update noar ti set v0='C17BARNR0UP55LYOC15Y0LXTWN10J1' where id=2; -update noar tt set b0='HKA2BQ' where id=2; -update noar ti set b0='HKA2BQ' where id=2; -update noar tt set v0='RC9C' where id=2; -update noar ti set v0='RC9C' where id=2; -update noar tt set b1='NNMCXD4IOIDTTA50OYXON' where id=2; -update noar ti set b1='NNMCXD4IOIDTTA50OYXON' where id=2; -update noar tt set v0='KNNYL' where id=2; -update noar ti set v0='KNNYL' where id=2; -update noar tt set b2='LO4QC69RGJP009Y1H9LFEP' where id=2; -update noar ti set b2='LO4QC69RGJP009Y1H9LFEP' where id=2; -update noar tt set v0='MPM75NHQ4IPXT3C8' where id=3; -update noar ti set v0='MPM75NHQ4IPXT3C8' where id=3; -update noar tt set b0='7V03CXP84YGBJ7' where id=3; -update noar ti set b0='7V03CXP84YGBJ7' where id=3; -update noar tt set v0='XDALAKE4F' where id=3; -update noar ti set v0='XDALAKE4F' where id=3; -update noar tt set b1='I93I7' where id=3; -update noar ti set b1='I93I7' where id=3; -update noar tt set v0='3B2TN6DMA4U83TXDFXLS3H1F1G0XUF2' where id=3; -update noar ti set v0='3B2TN6DMA4U83TXDFXLS3H1F1G0XUF2' where id=3; -update noar tt set b2='6QHW9NIPVXL388SD19DH1QT' where id=3; -update noar ti set b2='6QHW9NIPVXL388SD19DH1QT' where id=3; -update noar tt set v0='2UR6MB' where id=4; -update noar ti set v0='2UR6MB' where id=4; -update noar tt set b0='VKT2JWY64A1GH4BRG4VSQJ15J8TT7' where id=4; -update noar ti set b0='VKT2JWY64A1GH4BRG4VSQJ15J8TT7' where id=4; -update noar tt set v0='JHLJN7VR7FNS1JPBMKQO7L' where id=4; -update noar ti set v0='JHLJN7VR7FNS1JPBMKQO7L' where id=4; -update noar tt set b1='ME64QB92EH6DXLKKM7V3OT7ZE23' where id=4; -update noar ti set b1='ME64QB92EH6DXLKKM7V3OT7ZE23' where id=4; -update noar tt set v0='UYN69R6P1S6C6C1VJLEOA' where id=4; -update noar ti set v0='UYN69R6P1S6C6C1VJLEOA' where id=4; -update noar tt set b2='OQRMWCBP47J6FDIMS' where id=4; -update noar ti set b2='OQRMWCBP47J6FDIMS' where id=4; -update noar tt set v0='VHYHXA844B9QO9VWB5C4C64QOXJKPB' where id=5; -update noar ti set v0='VHYHXA844B9QO9VWB5C4C64QOXJKPB' where id=5; -update noar tt set b0='1LPCBNI4G1QCYQU50LHCVXT7TB38' where id=5; -update noar ti set b0='1LPCBNI4G1QCYQU50LHCVXT7TB38' where id=5; -update noar tt set v0='JUG' where id=5; -update noar ti set v0='JUG' where id=5; -update noar tt set b1='Q7V93AJC11' where id=5; -update noar ti set b1='Q7V93AJC11' where id=5; -update noar tt set v0='7D4AP' where id=5; -update noar ti set v0='7D4AP' where id=5; -update noar tt set b2='2SVBGC' where id=5; -update noar ti set b2='2SVBGC' where id=5; -update noar tt set v0='MLVZ' where id=6; -update noar ti set v0='MLVZ' where id=6; -update noar tt set b0='RGKY0TF70FT' where id=6; -update noar ti set b0='RGKY0TF70FT' where id=6; -update noar tt set v0='PL4M' where id=6; -update noar ti set v0='PL4M' where id=6; -update noar tt set b1='RO74V47G9JS2L5' where id=6; -update noar ti set b1='RO74V47G9JS2L5' where id=6; -update noar tt set v0='QYV0H0RJBU2IOOMFK6U8Y0CCFGC00M' where id=6; -update noar ti set v0='QYV0H0RJBU2IOOMFK6U8Y0CCFGC00M' where id=6; -update noar tt set b2='OY5AGV9P44VVI2ET6O8R' where id=6; -update noar ti set b2='OY5AGV9P44VVI2ET6O8R' where id=6; -update noar tt set v0='DQM3MJ1KI8XHMPSLFIOTBXNEY3' where id=7; -update noar ti set v0='DQM3MJ1KI8XHMPSLFIOTBXNEY3' where id=7; -update noar tt set b0='SFEVSIJPQR0ZQ5TDFHA13' where id=7; -update noar ti set b0='SFEVSIJPQR0ZQ5TDFHA13' where id=7; -update noar tt set v0='J' where id=7; -update noar ti set v0='J' where id=7; -update noar tt set b1='I2CUQVOAZV3' where id=7; -update noar ti set b1='I2CUQVOAZV3' where id=7; -update noar tt set v0='K8JQMG4K4I5WQ5TLTZUVKXS2EPMNP7F' where id=7; -update noar ti set v0='K8JQMG4K4I5WQ5TLTZUVKXS2EPMNP7F' where id=7; -update noar tt set b2='34VTBWMG2M' where id=7; -update noar ti set b2='34VTBWMG2M' where id=7; -update noar tt set v0='MS9RX3TVZRRI7SU1B463' where id=8; -update noar ti set v0='MS9RX3TVZRRI7SU1B463' where id=8; -update noar tt set b0='T2S1GA0O' where id=8; -update noar ti set b0='T2S1GA0O' where id=8; -update noar tt set v0='FMOT960EOBTB97J5XNKX5X5WFSF8Q3T' where id=8; -update noar ti set v0='FMOT960EOBTB97J5XNKX5X5WFSF8Q3T' where id=8; -update noar tt set b1='KN' where id=8; -update noar ti set b1='KN' where id=8; -update noar tt set v0='BHKL7AH4LB0GU5H' where id=8; -update noar ti set v0='BHKL7AH4LB0GU5H' where id=8; -update noar tt set b2='E1J9X4DJPFPM' where id=8; -update noar ti set b2='E1J9X4DJPFPM' where id=8; -update noar tt set v0='L' where id=9; -update noar ti set v0='L' where id=9; -update noar tt set b0='2MSHYUC013XQ0KRK' where id=9; -update noar ti set b0='2MSHYUC013XQ0KRK' where id=9; -update noar tt set v0='4PMIPCAB' where id=9; -update noar ti set v0='4PMIPCAB' where id=9; -update noar tt set b1='69Q8DYTVEK4DHLJWNIP3V1IDXBQO' where id=9; -update noar ti set b1='69Q8DYTVEK4DHLJWNIP3V1IDXBQO' where id=9; -update noar tt set v0='V8YM4VCQ5IZ0XN' where id=9; -update noar ti set v0='V8YM4VCQ5IZ0XN' where id=9; -update noar tt set b2='VMAPH031CNMBLCOEFQY8CO0J53' where id=9; -update noar ti set b2='VMAPH031CNMBLCOEFQY8CO0J53' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - v0 varchar(32) not null, - b0 tinyblob not null, - b1 blob not null, - b2 tinyblob not null -) engine=tokudb; -insert into tt values (1,'','','',''); -insert into tt values (2,'','','',''); -insert into tt values (3,'','','',''); -insert into tt values (4,'','','',''); -insert into tt values (5,'','','',''); -insert into tt values (6,'','','',''); -insert into tt values (7,'','','',''); -insert into tt values (8,'','','',''); -insert into tt values (9,'','','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='NUXTEA371UUI1Y' where id=1; -update noar ti set v0='NUXTEA371UUI1Y' where id=1; -update noar tt set b0='16Z77OSIX' where id=1; -update noar ti set b0='16Z77OSIX' where id=1; -update noar tt set v0='3G6JRE3MPHPSEAA3' where id=1; -update noar ti set v0='3G6JRE3MPHPSEAA3' where id=1; -update noar tt set b1='C' where id=1; -update noar ti set b1='C' where id=1; -update noar tt set v0='FSIY84G0PLSNGVE73' where id=1; -update noar ti set v0='FSIY84G0PLSNGVE73' where id=1; -update noar tt set b2='KXJNKTSQ5' where id=1; -update noar ti set b2='KXJNKTSQ5' where id=1; -update noar tt set v0='HZY4KKANDK01GX' where id=2; -update noar ti set v0='HZY4KKANDK01GX' where id=2; -update noar tt set b0='W5VET6VE4G63TLA77GGWD30L0F6' where id=2; -update noar ti set b0='W5VET6VE4G63TLA77GGWD30L0F6' where id=2; -update noar tt set v0='AHMGJFBUGZQP1UC88ZI2S16U7TN1' where id=2; -update noar ti set v0='AHMGJFBUGZQP1UC88ZI2S16U7TN1' where id=2; -update noar tt set b1='YGBBURCJNMLCSGJIC666' where id=2; -update noar ti set b1='YGBBURCJNMLCSGJIC666' where id=2; -update noar tt set v0='WJBID4' where id=2; -update noar ti set v0='WJBID4' where id=2; -update noar tt set b2='OW' where id=2; -update noar ti set b2='OW' where id=2; -update noar tt set v0='8RG8G14QR6PESEG6QRODF7FGU' where id=3; -update noar ti set v0='8RG8G14QR6PESEG6QRODF7FGU' where id=3; -update noar tt set b0='MMZAKYRWQ' where id=3; -update noar ti set b0='MMZAKYRWQ' where id=3; -update noar tt set v0='5KEN4' where id=3; -update noar ti set v0='5KEN4' where id=3; -update noar tt set b1='23VAQ9R7BYX3P107O86LG' where id=3; -update noar ti set b1='23VAQ9R7BYX3P107O86LG' where id=3; -update noar tt set v0='GJOZQ4ZKS1DP' where id=3; -update noar ti set v0='GJOZQ4ZKS1DP' where id=3; -update noar tt set b2='BE96528P2KJA4HMQELHRBT67B' where id=3; -update noar ti set b2='BE96528P2KJA4HMQELHRBT67B' where id=3; -update noar tt set v0='86X7J' where id=4; -update noar ti set v0='86X7J' where id=4; -update noar tt set b0='YLZ23YHWBIE9TRZVHX' where id=4; -update noar ti set b0='YLZ23YHWBIE9TRZVHX' where id=4; -update noar tt set v0='RWL2RXTXEP4G8UJZ26M96A0GQVSX' where id=4; -update noar ti set v0='RWL2RXTXEP4G8UJZ26M96A0GQVSX' where id=4; -update noar tt set b1='D7RT34SZP32Q9NDDWX1N28F6' where id=4; -update noar ti set b1='D7RT34SZP32Q9NDDWX1N28F6' where id=4; -update noar tt set v0='RBOOWYJV0UO6IEF66K2PHJMR8JU' where id=4; -update noar ti set v0='RBOOWYJV0UO6IEF66K2PHJMR8JU' where id=4; -update noar tt set b2='85FZDU3L632EIH9C' where id=4; -update noar ti set b2='85FZDU3L632EIH9C' where id=4; -update noar tt set v0='T9EOANQZ2W5T93NHYKQJFC73I' where id=5; -update noar ti set v0='T9EOANQZ2W5T93NHYKQJFC73I' where id=5; -update noar tt set b0='1FW1O8R5WEDYEBD5P' where id=5; -update noar ti set b0='1FW1O8R5WEDYEBD5P' where id=5; -update noar tt set v0='FSE0XKCJ5WL5T5V9Z' where id=5; -update noar ti set v0='FSE0XKCJ5WL5T5V9Z' where id=5; -update noar tt set b1='EJ43VYZK798F0OVC3AEKUR58' where id=5; -update noar ti set b1='EJ43VYZK798F0OVC3AEKUR58' where id=5; -update noar tt set v0='B7F2RBS4KDC14S3K4YDT9EOHFC5S2C7' where id=5; -update noar ti set v0='B7F2RBS4KDC14S3K4YDT9EOHFC5S2C7' where id=5; -update noar tt set b2='3A4CUB9C3K1BPYOQSC6BQYM' where id=5; -update noar ti set b2='3A4CUB9C3K1BPYOQSC6BQYM' where id=5; -update noar tt set v0='XEYSOH0L53E0ZII4IHCBD49V30LA' where id=6; -update noar ti set v0='XEYSOH0L53E0ZII4IHCBD49V30LA' where id=6; -update noar tt set b0='0LFIO0E64XWEM4MDNT' where id=6; -update noar ti set b0='0LFIO0E64XWEM4MDNT' where id=6; -update noar tt set v0='SISI8E30RFEIPYYB4GOWMNYJ8Y7R32TN' where id=6; -update noar ti set v0='SISI8E30RFEIPYYB4GOWMNYJ8Y7R32TN' where id=6; -update noar tt set b1='7V' where id=6; -update noar ti set b1='7V' where id=6; -update noar tt set v0='2H' where id=6; -update noar ti set v0='2H' where id=6; -update noar tt set b2='H7C4YNHPDQXFW70HLATM' where id=6; -update noar ti set b2='H7C4YNHPDQXFW70HLATM' where id=6; -update noar tt set v0='10Q5O525U9TTL' where id=7; -update noar ti set v0='10Q5O525U9TTL' where id=7; -update noar tt set b0='41VHZGG491TA0K79J7JTM6' where id=7; -update noar ti set b0='41VHZGG491TA0K79J7JTM6' where id=7; -update noar tt set v0='Z17IUD0INSHF47J40KB8J8T9GI' where id=7; -update noar ti set v0='Z17IUD0INSHF47J40KB8J8T9GI' where id=7; -update noar tt set b1='2' where id=7; -update noar ti set b1='2' where id=7; -update noar tt set v0='0BS325FYR2' where id=7; -update noar ti set v0='0BS325FYR2' where id=7; -update noar tt set b2='NUFVIE5W873HNMQJJM' where id=7; -update noar ti set b2='NUFVIE5W873HNMQJJM' where id=7; -update noar tt set v0='AHBC' where id=8; -update noar ti set v0='AHBC' where id=8; -update noar tt set b0='HE5M00J' where id=8; -update noar ti set b0='HE5M00J' where id=8; -update noar tt set v0='HGIR661F6T' where id=8; -update noar ti set v0='HGIR661F6T' where id=8; -update noar tt set b1='0EN1AWPW3F' where id=8; -update noar ti set b1='0EN1AWPW3F' where id=8; -update noar tt set v0='ETKRBQBSS8VLY' where id=8; -update noar ti set v0='ETKRBQBSS8VLY' where id=8; -update noar tt set b2='BCY2NTOER4' where id=8; -update noar ti set b2='BCY2NTOER4' where id=8; -update noar tt set v0='L' where id=9; -update noar ti set v0='L' where id=9; -update noar tt set b0='5QGFUOYRCMVRNJ4FZU0FS4WL' where id=9; -update noar ti set b0='5QGFUOYRCMVRNJ4FZU0FS4WL' where id=9; -update noar tt set v0='9BTNPDXOT02K9CIOEB0YP' where id=9; -update noar ti set v0='9BTNPDXOT02K9CIOEB0YP' where id=9; -update noar tt set b1='TDZXB7BL' where id=9; -update noar ti set b1='TDZXB7BL' where id=9; -update noar tt set v0='KM3IGNRGMYJQ4BXWSX' where id=9; -update noar ti set v0='KM3IGNRGMYJQ4BXWSX' where id=9; -update noar tt set b2='X5' where id=9; -update noar ti set b2='X5' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - v0 varchar(256) not null, - b0 tinyblob not null, - b1 blob not null, - b2 tinyblob not null -) engine=tokudb; -insert into tt values (1,'','','',''); -insert into tt values (2,'','','',''); -insert into tt values (3,'','','',''); -insert into tt values (4,'','','',''); -insert into tt values (5,'','','',''); -insert into tt values (6,'','','',''); -insert into tt values (7,'','','',''); -insert into tt values (8,'','','',''); -insert into tt values (9,'','','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='5TGH918FE' where id=1; -update noar ti set v0='5TGH918FE' where id=1; -update noar tt set b0='DYIIPEVFFMH8D' where id=1; -update noar ti set b0='DYIIPEVFFMH8D' where id=1; -update noar tt set v0='2KQEM9RUGP361U499NHZ97YAO82' where id=1; -update noar ti set v0='2KQEM9RUGP361U499NHZ97YAO82' where id=1; -update noar tt set b1='Y8FMSVM4G5F1' where id=1; -update noar ti set b1='Y8FMSVM4G5F1' where id=1; -update noar tt set v0='3UWXF3K5QB18G6S7Q' where id=1; -update noar ti set v0='3UWXF3K5QB18G6S7Q' where id=1; -update noar tt set b2='M6IOS8B0BAY68N378IJMKX97' where id=1; -update noar ti set b2='M6IOS8B0BAY68N378IJMKX97' where id=1; -update noar tt set v0='ZQ95I7HTDYANBB9CXHFF' where id=2; -update noar ti set v0='ZQ95I7HTDYANBB9CXHFF' where id=2; -update noar tt set b0='FVMGZSRKUOHV12ZVLJNGLNH9' where id=2; -update noar ti set b0='FVMGZSRKUOHV12ZVLJNGLNH9' where id=2; -update noar tt set v0='POVX7' where id=2; -update noar ti set v0='POVX7' where id=2; -update noar tt set b1='TKXC8GB3PE3R8ZA04FX02REK576T3' where id=2; -update noar ti set b1='TKXC8GB3PE3R8ZA04FX02REK576T3' where id=2; -update noar tt set v0='2HZYBF6ZXMQEJ3JE862ZF8N' where id=2; -update noar ti set v0='2HZYBF6ZXMQEJ3JE862ZF8N' where id=2; -update noar tt set b2='FNTMLAGSSJ5ZURXB7HC' where id=2; -update noar ti set b2='FNTMLAGSSJ5ZURXB7HC' where id=2; -update noar tt set v0='3A5TTVIP25IMXQ89TLDS5856E' where id=3; -update noar ti set v0='3A5TTVIP25IMXQ89TLDS5856E' where id=3; -update noar tt set b0='V7FDONMP2IK3JH7BUE2' where id=3; -update noar ti set b0='V7FDONMP2IK3JH7BUE2' where id=3; -update noar tt set v0='4OXKBWQV' where id=3; -update noar ti set v0='4OXKBWQV' where id=3; -update noar tt set b1='OIM47J4XC2' where id=3; -update noar ti set b1='OIM47J4XC2' where id=3; -update noar tt set v0='S83N9' where id=3; -update noar ti set v0='S83N9' where id=3; -update noar tt set b2='AD1GLPXFE' where id=3; -update noar ti set b2='AD1GLPXFE' where id=3; -update noar tt set v0='BYJC7F6ZO9K' where id=4; -update noar ti set v0='BYJC7F6ZO9K' where id=4; -update noar tt set b0='7FV8LMS' where id=4; -update noar ti set b0='7FV8LMS' where id=4; -update noar tt set v0='4ISJJJN30Z' where id=4; -update noar ti set v0='4ISJJJN30Z' where id=4; -update noar tt set b1='2M4XBSVF3GC9CE3' where id=4; -update noar ti set b1='2M4XBSVF3GC9CE3' where id=4; -update noar tt set v0='9VRXVQ' where id=4; -update noar ti set v0='9VRXVQ' where id=4; -update noar tt set b2='4ZM' where id=4; -update noar ti set b2='4ZM' where id=4; -update noar tt set v0='9KSNH' where id=5; -update noar ti set v0='9KSNH' where id=5; -update noar tt set b0='86CAAUHFFSWB' where id=5; -update noar ti set b0='86CAAUHFFSWB' where id=5; -update noar tt set v0='RQVYJ8' where id=5; -update noar ti set v0='RQVYJ8' where id=5; -update noar tt set b1='XZUVE1YYQD' where id=5; -update noar ti set b1='XZUVE1YYQD' where id=5; -update noar tt set v0='X8M1YTDQ' where id=5; -update noar ti set v0='X8M1YTDQ' where id=5; -update noar tt set b2='XYV8QJVY0XVP96OCSHVUY746BXAPN11X' where id=5; -update noar ti set b2='XYV8QJVY0XVP96OCSHVUY746BXAPN11X' where id=5; -update noar tt set v0='AZA822J5YQP0D2B1ICS0P0VD' where id=6; -update noar ti set v0='AZA822J5YQP0D2B1ICS0P0VD' where id=6; -update noar tt set b0='020FSPUSEDFFVZRCEKPMD9WIMXRB' where id=6; -update noar ti set b0='020FSPUSEDFFVZRCEKPMD9WIMXRB' where id=6; -update noar tt set v0='29OXZEY7OA67E16A75KQWDYOCQQ' where id=6; -update noar ti set v0='29OXZEY7OA67E16A75KQWDYOCQQ' where id=6; -update noar tt set b1='4TGU0HYQPEQ5CTJIEHK4RE47NW' where id=6; -update noar ti set b1='4TGU0HYQPEQ5CTJIEHK4RE47NW' where id=6; -update noar tt set v0='8DVXG7OBC9L47KV3B95WMDTL' where id=6; -update noar ti set v0='8DVXG7OBC9L47KV3B95WMDTL' where id=6; -update noar tt set b2='9LJNIZ3CP' where id=6; -update noar ti set b2='9LJNIZ3CP' where id=6; -update noar tt set v0='8N3WUNAJ75E7' where id=7; -update noar ti set v0='8N3WUNAJ75E7' where id=7; -update noar tt set b0='0AGM7NDNWHNB7I' where id=7; -update noar ti set b0='0AGM7NDNWHNB7I' where id=7; -update noar tt set v0='YW0J7WVF0Q3VS3NDB22EM7' where id=7; -update noar ti set v0='YW0J7WVF0Q3VS3NDB22EM7' where id=7; -update noar tt set b1='KMRHUSYPMJEQEMKODLQ8CX4JUTDOR' where id=7; -update noar ti set b1='KMRHUSYPMJEQEMKODLQ8CX4JUTDOR' where id=7; -update noar tt set v0='T1WB9G09BQ91LO2KU39249JHH8C8R2MA' where id=7; -update noar ti set v0='T1WB9G09BQ91LO2KU39249JHH8C8R2MA' where id=7; -update noar tt set b2='NBNHZHOTEX' where id=7; -update noar ti set b2='NBNHZHOTEX' where id=7; -update noar tt set v0='5HUMGT6' where id=8; -update noar ti set v0='5HUMGT6' where id=8; -update noar tt set b0='EY8B4R7UH3RQP2IW4BQE4K590DEGK' where id=8; -update noar ti set b0='EY8B4R7UH3RQP2IW4BQE4K590DEGK' where id=8; -update noar tt set v0='1PS25C28ZSSZTJPSEWX38' where id=8; -update noar ti set v0='1PS25C28ZSSZTJPSEWX38' where id=8; -update noar tt set b1='LWWE2QKT34' where id=8; -update noar ti set b1='LWWE2QKT34' where id=8; -update noar tt set v0='FGPM7' where id=8; -update noar ti set v0='FGPM7' where id=8; -update noar tt set b2='5C6SQ3EIW8XQ62A' where id=8; -update noar ti set b2='5C6SQ3EIW8XQ62A' where id=8; -update noar tt set v0='G9I651J3AVMD9PR' where id=9; -update noar ti set v0='G9I651J3AVMD9PR' where id=9; -update noar tt set b0='UGQ6X69UB03C' where id=9; -update noar ti set b0='UGQ6X69UB03C' where id=9; -update noar tt set v0='16VPMT57FBS8P0YY7CMJF' where id=9; -update noar ti set v0='16VPMT57FBS8P0YY7CMJF' where id=9; -update noar tt set b1='KE0DUX1VW' where id=9; -update noar ti set b1='KE0DUX1VW' where id=9; -update noar tt set v0='KG4SJ3YTPRPK6Z16KJL1HJ0VAS04' where id=9; -update noar ti set v0='KG4SJ3YTPRPK6Z16KJL1HJ0VAS04' where id=9; -update noar tt set b2='BMXO3' where id=9; -update noar ti set b2='BMXO3' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - v0 varchar(32) null, - b0 tinyblob null, - b1 blob null, - b2 blob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='R2XGIXPZIHONX15Q8PJKQ5AB' where id=1; -update noar ti set v0='R2XGIXPZIHONX15Q8PJKQ5AB' where id=1; -update noar tt set b0='F0TQXVIXKJSWTGBM5C' where id=1; -update noar ti set b0='F0TQXVIXKJSWTGBM5C' where id=1; -update noar tt set v0='1H9C8BNKSC' where id=1; -update noar ti set v0='1H9C8BNKSC' where id=1; -update noar tt set b1='TCOKC9Y9P3K2KH4N281PGZZTGV' where id=1; -update noar ti set b1='TCOKC9Y9P3K2KH4N281PGZZTGV' where id=1; -update noar tt set v0='1ZF10NQBEY0U65G4J5L' where id=1; -update noar ti set v0='1ZF10NQBEY0U65G4J5L' where id=1; -update noar tt set b2='7WNH2OS2XPM' where id=1; -update noar ti set b2='7WNH2OS2XPM' where id=1; -update noar tt set v0='D3XMXM7' where id=2; -update noar ti set v0='D3XMXM7' where id=2; -update noar tt set b0='WTNB7Q5' where id=2; -update noar ti set b0='WTNB7Q5' where id=2; -update noar tt set v0='ABO5' where id=2; -update noar ti set v0='ABO5' where id=2; -update noar tt set b1='ZL3968VKQ8JBVKH8QDL8V0FOKVSELOJ5' where id=2; -update noar ti set b1='ZL3968VKQ8JBVKH8QDL8V0FOKVSELOJ5' where id=2; -update noar tt set v0='Z23CM0EBPMLR63WIKUEPTWZ' where id=2; -update noar ti set v0='Z23CM0EBPMLR63WIKUEPTWZ' where id=2; -update noar tt set b2='9XXLMOEPD38WOB63EXANEPML' where id=2; -update noar ti set b2='9XXLMOEPD38WOB63EXANEPML' where id=2; -update noar tt set v0='STH5L7D545HIDZ1R6XZ3NZMBNTHVY' where id=3; -update noar ti set v0='STH5L7D545HIDZ1R6XZ3NZMBNTHVY' where id=3; -update noar tt set b0='TYPUVLV97A2N9' where id=3; -update noar ti set b0='TYPUVLV97A2N9' where id=3; -update noar tt set v0='MHNKFVL009I' where id=3; -update noar ti set v0='MHNKFVL009I' where id=3; -update noar tt set b1='BD7NHBPCBPSMC6BW13' where id=3; -update noar ti set b1='BD7NHBPCBPSMC6BW13' where id=3; -update noar tt set v0='6FR3LX46IVEAK9Q5WKPMHCP0P5S7DN0' where id=3; -update noar ti set v0='6FR3LX46IVEAK9Q5WKPMHCP0P5S7DN0' where id=3; -update noar tt set b2='L0EKEC1' where id=3; -update noar ti set b2='L0EKEC1' where id=3; -update noar tt set v0='483MNNYHGG2XP2DBUNHWOX' where id=4; -update noar ti set v0='483MNNYHGG2XP2DBUNHWOX' where id=4; -update noar tt set b0='XX3V9UE05MFXAGE2PGYJG5DFSLEN' where id=4; -update noar ti set b0='XX3V9UE05MFXAGE2PGYJG5DFSLEN' where id=4; -update noar tt set v0='2SCLTP8I9R7NWHU0YEMUMWIT82K' where id=4; -update noar ti set v0='2SCLTP8I9R7NWHU0YEMUMWIT82K' where id=4; -update noar tt set b1='CQEW7T5A0TG5' where id=4; -update noar ti set b1='CQEW7T5A0TG5' where id=4; -update noar tt set v0='IH2BVFNGS77B1WVZUMNTE3L' where id=4; -update noar ti set v0='IH2BVFNGS77B1WVZUMNTE3L' where id=4; -update noar tt set b2='IGS2E16017LGTLUWQIH' where id=4; -update noar ti set b2='IGS2E16017LGTLUWQIH' where id=4; -update noar tt set v0='F3L7NXAHX' where id=5; -update noar ti set v0='F3L7NXAHX' where id=5; -update noar tt set b0='FO7VS07OYO1P' where id=5; -update noar ti set b0='FO7VS07OYO1P' where id=5; -update noar tt set v0='8Y1KGDOHP3' where id=5; -update noar ti set v0='8Y1KGDOHP3' where id=5; -update noar tt set b1='CPILFN' where id=5; -update noar ti set b1='CPILFN' where id=5; -update noar tt set v0='OYL9TR5VMR8' where id=5; -update noar ti set v0='OYL9TR5VMR8' where id=5; -update noar tt set b2='RDQYG9FLZTPW1' where id=5; -update noar ti set b2='RDQYG9FLZTPW1' where id=5; -update noar tt set v0='UB8Y8YBTYBGYZR7Y' where id=6; -update noar ti set v0='UB8Y8YBTYBGYZR7Y' where id=6; -update noar tt set b0='WXUL1PZN98MLRU' where id=6; -update noar ti set b0='WXUL1PZN98MLRU' where id=6; -update noar tt set v0='NUNHMV' where id=6; -update noar ti set v0='NUNHMV' where id=6; -update noar tt set b1='3DWJ25W' where id=6; -update noar ti set b1='3DWJ25W' where id=6; -update noar tt set v0='OOUYX4G3TE3OZ3K0E5PV5URFLCQ' where id=6; -update noar ti set v0='OOUYX4G3TE3OZ3K0E5PV5URFLCQ' where id=6; -update noar tt set b2='IPEJFX6ZL6KRLXPO51K0KJIZ502' where id=6; -update noar ti set b2='IPEJFX6ZL6KRLXPO51K0KJIZ502' where id=6; -update noar tt set v0='CNV' where id=7; -update noar ti set v0='CNV' where id=7; -update noar tt set b0='M0VSGIL' where id=7; -update noar ti set b0='M0VSGIL' where id=7; -update noar tt set v0='R92B3TNW3' where id=7; -update noar ti set v0='R92B3TNW3' where id=7; -update noar tt set b1='0OT4REN' where id=7; -update noar ti set b1='0OT4REN' where id=7; -update noar tt set v0='CQBG4KTR9YISQLQ0ZNUNV0CFTRTFZXL' where id=7; -update noar ti set v0='CQBG4KTR9YISQLQ0ZNUNV0CFTRTFZXL' where id=7; -update noar tt set b2='ZL95VY321YGZA40T10I2N1TCDLCKL02' where id=7; -update noar ti set b2='ZL95VY321YGZA40T10I2N1TCDLCKL02' where id=7; -update noar tt set v0='WNAH6J4ZQBV' where id=8; -update noar ti set v0='WNAH6J4ZQBV' where id=8; -update noar tt set b0='CMKK254WZ1Y' where id=8; -update noar ti set b0='CMKK254WZ1Y' where id=8; -update noar tt set v0='7ZVR0GI4NXFM' where id=8; -update noar ti set v0='7ZVR0GI4NXFM' where id=8; -update noar tt set b1='TJ3BJ' where id=8; -update noar ti set b1='TJ3BJ' where id=8; -update noar tt set v0='S7YOGPZCMR' where id=8; -update noar ti set v0='S7YOGPZCMR' where id=8; -update noar tt set b2='YJYVTDC7L' where id=8; -update noar ti set b2='YJYVTDC7L' where id=8; -update noar tt set v0='L87Q3SGF3' where id=9; -update noar ti set v0='L87Q3SGF3' where id=9; -update noar tt set b0='7J2R72I7OJ9KFX6MMG43XP0PKLDU8' where id=9; -update noar ti set b0='7J2R72I7OJ9KFX6MMG43XP0PKLDU8' where id=9; -update noar tt set v0='7UZSISTY3N6SVXUW2YMACI1OBS17' where id=9; -update noar ti set v0='7UZSISTY3N6SVXUW2YMACI1OBS17' where id=9; -update noar tt set b1='QUQEFBU0MLAR8O4SVRK7BN40RUYBC' where id=9; -update noar ti set b1='QUQEFBU0MLAR8O4SVRK7BN40RUYBC' where id=9; -update noar tt set v0='MF4TJ3FZLA4LF7L8KT3BI0' where id=9; -update noar ti set v0='MF4TJ3FZLA4LF7L8KT3BI0' where id=9; -update noar tt set b2='2QY18PV' where id=9; -update noar ti set b2='2QY18PV' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - v0 varchar(256) null, - b0 tinyblob null, - b1 blob null, - b2 blob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='RDN1LDPADLY2W' where id=1; -update noar ti set v0='RDN1LDPADLY2W' where id=1; -update noar tt set b0='TN' where id=1; -update noar ti set b0='TN' where id=1; -update noar tt set v0='94JQFG63HHL79LOTLS5MSN' where id=1; -update noar ti set v0='94JQFG63HHL79LOTLS5MSN' where id=1; -update noar tt set b1='B' where id=1; -update noar ti set b1='B' where id=1; -update noar tt set v0='XFFOMZ0VK6' where id=1; -update noar ti set v0='XFFOMZ0VK6' where id=1; -update noar tt set b2='9H685MH3J3WCAMS1JDUWCT' where id=1; -update noar ti set b2='9H685MH3J3WCAMS1JDUWCT' where id=1; -update noar tt set v0='UBFNF46GSMK2' where id=2; -update noar ti set v0='UBFNF46GSMK2' where id=2; -update noar tt set b0='4A4HDRSW3YV9HHPSW2ROTRS52XT' where id=2; -update noar ti set b0='4A4HDRSW3YV9HHPSW2ROTRS52XT' where id=2; -update noar tt set v0='P486AR0LXI51NMOPWQX' where id=2; -update noar ti set v0='P486AR0LXI51NMOPWQX' where id=2; -update noar tt set b1='QZROKQ6WKTJUJOD51RDBIKT98AQ' where id=2; -update noar ti set b1='QZROKQ6WKTJUJOD51RDBIKT98AQ' where id=2; -update noar tt set v0='JCCD' where id=2; -update noar ti set v0='JCCD' where id=2; -update noar tt set b2='YYTM4Z' where id=2; -update noar ti set b2='YYTM4Z' where id=2; -update noar tt set v0='GRMFU6ZODW6D92DQ' where id=3; -update noar ti set v0='GRMFU6ZODW6D92DQ' where id=3; -update noar tt set b0='5EIR9U2MP6B5VYRET0ERFF1VTQC6G' where id=3; -update noar ti set b0='5EIR9U2MP6B5VYRET0ERFF1VTQC6G' where id=3; -update noar tt set v0='U323Y8P41QIJNEB' where id=3; -update noar ti set v0='U323Y8P41QIJNEB' where id=3; -update noar tt set b1='ZR3COMRCTO1AFD411EWU5050ZFFV0' where id=3; -update noar ti set b1='ZR3COMRCTO1AFD411EWU5050ZFFV0' where id=3; -update noar tt set v0='RCK65BO7UK2STYYTEM1DFG8PQ' where id=3; -update noar ti set v0='RCK65BO7UK2STYYTEM1DFG8PQ' where id=3; -update noar tt set b2='OE5Q3IJ5SHSI5LJY09KRRZX2ZM9975' where id=3; -update noar ti set b2='OE5Q3IJ5SHSI5LJY09KRRZX2ZM9975' where id=3; -update noar tt set v0='QXS7A7MDO2X' where id=4; -update noar ti set v0='QXS7A7MDO2X' where id=4; -update noar tt set b0='OSHMCG8IE47QMARYCUOVWGT8RBF' where id=4; -update noar ti set b0='OSHMCG8IE47QMARYCUOVWGT8RBF' where id=4; -update noar tt set v0='KYXCP05FECRY2UQW' where id=4; -update noar ti set v0='KYXCP05FECRY2UQW' where id=4; -update noar tt set b1='T3030EJLR0WJ77H0TXVDJVSWO91R0' where id=4; -update noar ti set b1='T3030EJLR0WJ77H0TXVDJVSWO91R0' where id=4; -update noar tt set v0='T2RJGS8GKFFES7KZNO' where id=4; -update noar ti set v0='T2RJGS8GKFFES7KZNO' where id=4; -update noar tt set b2='P1GZFDM' where id=4; -update noar ti set b2='P1GZFDM' where id=4; -update noar tt set v0='TA4K63DFCOWS45TQCS3WXQ0RHHC' where id=5; -update noar ti set v0='TA4K63DFCOWS45TQCS3WXQ0RHHC' where id=5; -update noar tt set b0='TTA2H9Y5045BF90D8M0NCNDB4S' where id=5; -update noar ti set b0='TTA2H9Y5045BF90D8M0NCNDB4S' where id=5; -update noar tt set v0='CVB1UI27YM0W2VO8BH6AOI' where id=5; -update noar ti set v0='CVB1UI27YM0W2VO8BH6AOI' where id=5; -update noar tt set b1='9ZSAE4E7RW955E62RJVD6E0HPZL3' where id=5; -update noar ti set b1='9ZSAE4E7RW955E62RJVD6E0HPZL3' where id=5; -update noar tt set v0='G3IXYHV3QJF2S5M3NAO2DFRAO0Y0IDWS' where id=5; -update noar ti set v0='G3IXYHV3QJF2S5M3NAO2DFRAO0Y0IDWS' where id=5; -update noar tt set b2='UUPKWLRM758VX55ECP' where id=5; -update noar ti set b2='UUPKWLRM758VX55ECP' where id=5; -update noar tt set v0='J52OAHYW3XA' where id=6; -update noar ti set v0='J52OAHYW3XA' where id=6; -update noar tt set b0='V5L4RCKT5L8UG8OMNNSL0XD55ZIHXLL' where id=6; -update noar ti set b0='V5L4RCKT5L8UG8OMNNSL0XD55ZIHXLL' where id=6; -update noar tt set v0='MGHXMAGPGHBJRMD62IFVL8SD' where id=6; -update noar ti set v0='MGHXMAGPGHBJRMD62IFVL8SD' where id=6; -update noar tt set b1='8NNHVX5A8' where id=6; -update noar ti set b1='8NNHVX5A8' where id=6; -update noar tt set v0='W4TO2I' where id=6; -update noar ti set v0='W4TO2I' where id=6; -update noar tt set b2='LG8XZRO0CCCYF7GVLBK81' where id=6; -update noar ti set b2='LG8XZRO0CCCYF7GVLBK81' where id=6; -update noar tt set v0='D2R5VD6P' where id=7; -update noar ti set v0='D2R5VD6P' where id=7; -update noar tt set b0='GXN1XNP38EWS1T0' where id=7; -update noar ti set b0='GXN1XNP38EWS1T0' where id=7; -update noar tt set v0='OW1YWOP7E2ATOU07TKJJ5BX2E9P55W' where id=7; -update noar ti set v0='OW1YWOP7E2ATOU07TKJJ5BX2E9P55W' where id=7; -update noar tt set b1='EZUTM6BMDS15LXBANEBEG' where id=7; -update noar ti set b1='EZUTM6BMDS15LXBANEBEG' where id=7; -update noar tt set v0='1OD0FGWZM0398YO7261QN8HYK4IVBFY' where id=7; -update noar ti set v0='1OD0FGWZM0398YO7261QN8HYK4IVBFY' where id=7; -update noar tt set b2='9LB1QPXSBRBJBJSIUC4H' where id=7; -update noar ti set b2='9LB1QPXSBRBJBJSIUC4H' where id=7; -update noar tt set v0='YUSN0UNMQ' where id=8; -update noar ti set v0='YUSN0UNMQ' where id=8; -update noar tt set b0='C636LCYT3C7EW9JY1FERJWAZEJXQR3' where id=8; -update noar ti set b0='C636LCYT3C7EW9JY1FERJWAZEJXQR3' where id=8; -update noar tt set v0='QK8FQP857BPQQAP' where id=8; -update noar ti set v0='QK8FQP857BPQQAP' where id=8; -update noar tt set b1='X2R3KPK3RTOT1MQ4G0' where id=8; -update noar ti set b1='X2R3KPK3RTOT1MQ4G0' where id=8; -update noar tt set v0='V' where id=8; -update noar ti set v0='V' where id=8; -update noar tt set b2='9M0WH6C' where id=8; -update noar ti set b2='9M0WH6C' where id=8; -update noar tt set v0='JHY53VRPGYJQRISY4JFSG6UMUUL' where id=9; -update noar ti set v0='JHY53VRPGYJQRISY4JFSG6UMUUL' where id=9; -update noar tt set b0='1R9G1GA2REZXA' where id=9; -update noar ti set b0='1R9G1GA2REZXA' where id=9; -update noar tt set v0='X4E8R20G5L5KV' where id=9; -update noar ti set v0='X4E8R20G5L5KV' where id=9; -update noar tt set b1='EZMHK5ZWEJQUBCD6TY0TUZKJJQKVHYH' where id=9; -update noar ti set b1='EZMHK5ZWEJQUBCD6TY0TUZKJJQKVHYH' where id=9; -update noar tt set v0='A' where id=9; -update noar ti set v0='A' where id=9; -update noar tt set b2='DLR4SONDNKNBV' where id=9; -update noar ti set b2='DLR4SONDNKNBV' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - v0 varchar(32) not null, - b0 tinyblob not null, - b1 blob not null, - b2 blob not null -) engine=tokudb; -insert into tt values (1,'','','',''); -insert into tt values (2,'','','',''); -insert into tt values (3,'','','',''); -insert into tt values (4,'','','',''); -insert into tt values (5,'','','',''); -insert into tt values (6,'','','',''); -insert into tt values (7,'','','',''); -insert into tt values (8,'','','',''); -insert into tt values (9,'','','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='ZZ8D76B8VLFFBMTF8W7RURN7J06NKQL' where id=1; -update noar ti set v0='ZZ8D76B8VLFFBMTF8W7RURN7J06NKQL' where id=1; -update noar tt set b0='6J0OJOB0K2RK9UCXTP' where id=1; -update noar ti set b0='6J0OJOB0K2RK9UCXTP' where id=1; -update noar tt set v0='Y198CUIDA92LXYR4' where id=1; -update noar ti set v0='Y198CUIDA92LXYR4' where id=1; -update noar tt set b1='RPI1K02DQA4QVWMWVTQMP3ZT3K6VW7O' where id=1; -update noar ti set b1='RPI1K02DQA4QVWMWVTQMP3ZT3K6VW7O' where id=1; -update noar tt set v0='4E' where id=1; -update noar ti set v0='4E' where id=1; -update noar tt set b2='BC5DQ2YNCXWTH9P70W2E4PA0WR2LR' where id=1; -update noar ti set b2='BC5DQ2YNCXWTH9P70W2E4PA0WR2LR' where id=1; -update noar tt set v0='H5AODKXM' where id=2; -update noar ti set v0='H5AODKXM' where id=2; -update noar tt set b0='9237HY6G145L' where id=2; -update noar ti set b0='9237HY6G145L' where id=2; -update noar tt set v0='BNIIJO5AR29BY9L3CPGLP2' where id=2; -update noar ti set v0='BNIIJO5AR29BY9L3CPGLP2' where id=2; -update noar tt set b1='Z7K0SRRD06BA' where id=2; -update noar ti set b1='Z7K0SRRD06BA' where id=2; -update noar tt set v0='47858' where id=2; -update noar ti set v0='47858' where id=2; -update noar tt set b2='CBGVTSW8EPR7JOEZF4GOGL' where id=2; -update noar ti set b2='CBGVTSW8EPR7JOEZF4GOGL' where id=2; -update noar tt set v0='FWYWUGEEMCDQT1FQAJF2I0CTJ' where id=3; -update noar ti set v0='FWYWUGEEMCDQT1FQAJF2I0CTJ' where id=3; -update noar tt set b0='RHKKFGGD4BL' where id=3; -update noar ti set b0='RHKKFGGD4BL' where id=3; -update noar tt set v0='JGP3B3NXXYEDURZQMXA4OOK' where id=3; -update noar ti set v0='JGP3B3NXXYEDURZQMXA4OOK' where id=3; -update noar tt set b1='ZQ9MCC2X6DUAT' where id=3; -update noar ti set b1='ZQ9MCC2X6DUAT' where id=3; -update noar tt set v0='AGKOH223XDS2WO' where id=3; -update noar ti set v0='AGKOH223XDS2WO' where id=3; -update noar tt set b2='PRHBD2TULPRGZ4VPEM941UDMQOQYOMY4' where id=3; -update noar ti set b2='PRHBD2TULPRGZ4VPEM941UDMQOQYOMY4' where id=3; -update noar tt set v0='HXGZ688SML7MB51N7PU1QS1CKIVGHU70' where id=4; -update noar ti set v0='HXGZ688SML7MB51N7PU1QS1CKIVGHU70' where id=4; -update noar tt set b0='XOI6VW96LHDK9YMY5UKLY4729' where id=4; -update noar ti set b0='XOI6VW96LHDK9YMY5UKLY4729' where id=4; -update noar tt set v0='XU78695F80KHTO7TEJ8B' where id=4; -update noar ti set v0='XU78695F80KHTO7TEJ8B' where id=4; -update noar tt set b1='VAXTK0LR69LIFBR1' where id=4; -update noar ti set b1='VAXTK0LR69LIFBR1' where id=4; -update noar tt set v0='Q' where id=4; -update noar ti set v0='Q' where id=4; -update noar tt set b2='E7YS30R0KZSWM37CQD0JLPASF6SUMO' where id=4; -update noar ti set b2='E7YS30R0KZSWM37CQD0JLPASF6SUMO' where id=4; -update noar tt set v0='NKTZ' where id=5; -update noar ti set v0='NKTZ' where id=5; -update noar tt set b0='GGUV67DID6TCD4EYR58KG4Q8I7J' where id=5; -update noar ti set b0='GGUV67DID6TCD4EYR58KG4Q8I7J' where id=5; -update noar tt set v0='P7W86CHFJ6HHM6WPB42J5C1E' where id=5; -update noar ti set v0='P7W86CHFJ6HHM6WPB42J5C1E' where id=5; -update noar tt set b1='J0P8DUG3Q06X5JXJ' where id=5; -update noar ti set b1='J0P8DUG3Q06X5JXJ' where id=5; -update noar tt set v0='5T0G486U3P2MGAGMR7WROWJSJ18T1OU4' where id=5; -update noar ti set v0='5T0G486U3P2MGAGMR7WROWJSJ18T1OU4' where id=5; -update noar tt set b2='KWCM' where id=5; -update noar ti set b2='KWCM' where id=5; -update noar tt set v0='S2L6RJGZG837U' where id=6; -update noar ti set v0='S2L6RJGZG837U' where id=6; -update noar tt set b0='9D9FMUS3UOVNAJUYEGKJBOVRLNRDC05D' where id=6; -update noar ti set b0='9D9FMUS3UOVNAJUYEGKJBOVRLNRDC05D' where id=6; -update noar tt set v0='6ZZHECEI52F313T2' where id=6; -update noar ti set v0='6ZZHECEI52F313T2' where id=6; -update noar tt set b1='5GMOCX7SUU' where id=6; -update noar ti set b1='5GMOCX7SUU' where id=6; -update noar tt set v0='FJ8DGZGCPBX4Q01RD2BDA' where id=6; -update noar ti set v0='FJ8DGZGCPBX4Q01RD2BDA' where id=6; -update noar tt set b2='LK96K0V9QNJS1JNSW' where id=6; -update noar ti set b2='LK96K0V9QNJS1JNSW' where id=6; -update noar tt set v0='CQ1WIPZISC188YMKA' where id=7; -update noar ti set v0='CQ1WIPZISC188YMKA' where id=7; -update noar tt set b0='AKBTBDCEVWW7' where id=7; -update noar ti set b0='AKBTBDCEVWW7' where id=7; -update noar tt set v0='511VERZBD22JZ6ETJJ0UXCZB2249TZ9' where id=7; -update noar ti set v0='511VERZBD22JZ6ETJJ0UXCZB2249TZ9' where id=7; -update noar tt set b1='DJJ2HODYS' where id=7; -update noar ti set b1='DJJ2HODYS' where id=7; -update noar tt set v0='JJUVP90KR9FD6' where id=7; -update noar ti set v0='JJUVP90KR9FD6' where id=7; -update noar tt set b2='LBMOOPR8332YZ8SGUQ884YS3P6MVD' where id=7; -update noar ti set b2='LBMOOPR8332YZ8SGUQ884YS3P6MVD' where id=7; -update noar tt set v0='ESN6E0' where id=8; -update noar ti set v0='ESN6E0' where id=8; -update noar tt set b0='BGG8Z' where id=8; -update noar ti set b0='BGG8Z' where id=8; -update noar tt set v0='R3XFXIO7J3VR' where id=8; -update noar ti set v0='R3XFXIO7J3VR' where id=8; -update noar tt set b1='P7IRB' where id=8; -update noar ti set b1='P7IRB' where id=8; -update noar tt set v0='F0R33BXEC87EVTYIZF' where id=8; -update noar ti set v0='F0R33BXEC87EVTYIZF' where id=8; -update noar tt set b2='OEXVB93OKIAX6HCC7K9XH3M9LJL' where id=8; -update noar ti set b2='OEXVB93OKIAX6HCC7K9XH3M9LJL' where id=8; -update noar tt set v0='INLH6' where id=9; -update noar ti set v0='INLH6' where id=9; -update noar tt set b0='TY' where id=9; -update noar ti set b0='TY' where id=9; -update noar tt set v0='G79ENEPDWJTIT57CKVLI' where id=9; -update noar ti set v0='G79ENEPDWJTIT57CKVLI' where id=9; -update noar tt set b1='1OAP4I2VXAVDD2J2SSXE1MKIRPD50AOO' where id=9; -update noar ti set b1='1OAP4I2VXAVDD2J2SSXE1MKIRPD50AOO' where id=9; -update noar tt set v0='TSEM89X' where id=9; -update noar ti set v0='TSEM89X' where id=9; -update noar tt set b2='NUAP4MRQOP0Z46Y0' where id=9; -update noar ti set b2='NUAP4MRQOP0Z46Y0' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - v0 varchar(256) not null, - b0 tinyblob not null, - b1 blob not null, - b2 blob not null -) engine=tokudb; -insert into tt values (1,'','','',''); -insert into tt values (2,'','','',''); -insert into tt values (3,'','','',''); -insert into tt values (4,'','','',''); -insert into tt values (5,'','','',''); -insert into tt values (6,'','','',''); -insert into tt values (7,'','','',''); -insert into tt values (8,'','','',''); -insert into tt values (9,'','','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='2CZ5RH5VV24WM3MWX9E68DSVG10W7Q0' where id=1; -update noar ti set v0='2CZ5RH5VV24WM3MWX9E68DSVG10W7Q0' where id=1; -update noar tt set b0='X1FV2B' where id=1; -update noar ti set b0='X1FV2B' where id=1; -update noar tt set v0='4OL6' where id=1; -update noar ti set v0='4OL6' where id=1; -update noar tt set b1='N9HG8GGYQ7GE0HT29YN0CGFNAXY9' where id=1; -update noar ti set b1='N9HG8GGYQ7GE0HT29YN0CGFNAXY9' where id=1; -update noar tt set v0='K2QX8ZDC5YWU' where id=1; -update noar ti set v0='K2QX8ZDC5YWU' where id=1; -update noar tt set b2='1Y6CGI5ZU6QNVWT' where id=1; -update noar ti set b2='1Y6CGI5ZU6QNVWT' where id=1; -update noar tt set v0='L8NG9D7IOKGBF8WVL0FNCAL9IJOZTNC' where id=2; -update noar ti set v0='L8NG9D7IOKGBF8WVL0FNCAL9IJOZTNC' where id=2; -update noar tt set b0='66Y' where id=2; -update noar ti set b0='66Y' where id=2; -update noar tt set v0='DS2VN4WL0M35A3UUZIBL0X3' where id=2; -update noar ti set v0='DS2VN4WL0M35A3UUZIBL0X3' where id=2; -update noar tt set b1='ZA6VGOH3ANO1849RVMT' where id=2; -update noar ti set b1='ZA6VGOH3ANO1849RVMT' where id=2; -update noar tt set v0='YOTY' where id=2; -update noar ti set v0='YOTY' where id=2; -update noar tt set b2='264E7IB' where id=2; -update noar ti set b2='264E7IB' where id=2; -update noar tt set v0='P' where id=3; -update noar ti set v0='P' where id=3; -update noar tt set b0='BZ' where id=3; -update noar ti set b0='BZ' where id=3; -update noar tt set v0='HEW' where id=3; -update noar ti set v0='HEW' where id=3; -update noar tt set b1='GFM4WVNW8IB68MLE' where id=3; -update noar ti set b1='GFM4WVNW8IB68MLE' where id=3; -update noar tt set v0='5IVJ52WKG7RZ1KTOQYVJTZFBJ3AQVO' where id=3; -update noar ti set v0='5IVJ52WKG7RZ1KTOQYVJTZFBJ3AQVO' where id=3; -update noar tt set b2='0H6QSY6AAC35E' where id=3; -update noar ti set b2='0H6QSY6AAC35E' where id=3; -update noar tt set v0='LRN90EE76VR6A8VUX5JHYRE0' where id=4; -update noar ti set v0='LRN90EE76VR6A8VUX5JHYRE0' where id=4; -update noar tt set b0='K85C7K2DYMTTU5K5JMA' where id=4; -update noar ti set b0='K85C7K2DYMTTU5K5JMA' where id=4; -update noar tt set v0='QP7TCXMYEGH7NIUKNYA8IDIS8ZV0' where id=4; -update noar ti set v0='QP7TCXMYEGH7NIUKNYA8IDIS8ZV0' where id=4; -update noar tt set b1='ECP5SYHQHFMO5' where id=4; -update noar ti set b1='ECP5SYHQHFMO5' where id=4; -update noar tt set v0='BGJCFHKAIY2OU7SWV' where id=4; -update noar ti set v0='BGJCFHKAIY2OU7SWV' where id=4; -update noar tt set b2='W40RECBSDLYEQ499' where id=4; -update noar ti set b2='W40RECBSDLYEQ499' where id=4; -update noar tt set v0='WYC3FTPGBASMDRJCSWQGSA4ETQ' where id=5; -update noar ti set v0='WYC3FTPGBASMDRJCSWQGSA4ETQ' where id=5; -update noar tt set b0='EKWRHT2' where id=5; -update noar ti set b0='EKWRHT2' where id=5; -update noar tt set v0='VH6JW0HNVEZJTLHPEISH6' where id=5; -update noar ti set v0='VH6JW0HNVEZJTLHPEISH6' where id=5; -update noar tt set b1='0C78Y1KXW2DQHUFGKI50CH5GFA2152U' where id=5; -update noar ti set b1='0C78Y1KXW2DQHUFGKI50CH5GFA2152U' where id=5; -update noar tt set v0='N88UGE0' where id=5; -update noar ti set v0='N88UGE0' where id=5; -update noar tt set b2='JAYD1RTVX6ENRE2HKEGEMK9MJ3LT' where id=5; -update noar ti set b2='JAYD1RTVX6ENRE2HKEGEMK9MJ3LT' where id=5; -update noar tt set v0='1DKTMGV8ZIJFY70' where id=6; -update noar ti set v0='1DKTMGV8ZIJFY70' where id=6; -update noar tt set b0='BC07R3' where id=6; -update noar ti set b0='BC07R3' where id=6; -update noar tt set v0='NS09OAMX96XDSJTCXJO29PN4JO0' where id=6; -update noar ti set v0='NS09OAMX96XDSJTCXJO29PN4JO0' where id=6; -update noar tt set b1='WCP5SITMIL29E69EWSAEI3B' where id=6; -update noar ti set b1='WCP5SITMIL29E69EWSAEI3B' where id=6; -update noar tt set v0='IHK7WN8KFMK756IKZLKEP0' where id=6; -update noar ti set v0='IHK7WN8KFMK756IKZLKEP0' where id=6; -update noar tt set b2='WQWBIX31' where id=6; -update noar ti set b2='WQWBIX31' where id=6; -update noar tt set v0='CEDR9V9LA531JSHH6XP0PVD' where id=7; -update noar ti set v0='CEDR9V9LA531JSHH6XP0PVD' where id=7; -update noar tt set b0='CRRISU2K9' where id=7; -update noar ti set b0='CRRISU2K9' where id=7; -update noar tt set v0='4' where id=7; -update noar ti set v0='4' where id=7; -update noar tt set b1='OX' where id=7; -update noar ti set b1='OX' where id=7; -update noar tt set v0='WOS8D9XMOAYXXQKLKZS8U35XUF7X' where id=7; -update noar ti set v0='WOS8D9XMOAYXXQKLKZS8U35XUF7X' where id=7; -update noar tt set b2='PMC2GMSSNRCAK8CS846DC2' where id=7; -update noar ti set b2='PMC2GMSSNRCAK8CS846DC2' where id=7; -update noar tt set v0='41GT' where id=8; -update noar ti set v0='41GT' where id=8; -update noar tt set b0='LA6EA7OJLYS2TEZGJLKVXM' where id=8; -update noar ti set b0='LA6EA7OJLYS2TEZGJLKVXM' where id=8; -update noar tt set v0='T11M0VBTGOTC7' where id=8; -update noar ti set v0='T11M0VBTGOTC7' where id=8; -update noar tt set b1='65YZD8QBVH8NYKLCJ0CSX452B1RANUY7' where id=8; -update noar ti set b1='65YZD8QBVH8NYKLCJ0CSX452B1RANUY7' where id=8; -update noar tt set v0='2FZDE35RKUV3R7BDMHAE' where id=8; -update noar ti set v0='2FZDE35RKUV3R7BDMHAE' where id=8; -update noar tt set b2='F1C9OR2HWIZ1LZVS57B' where id=8; -update noar ti set b2='F1C9OR2HWIZ1LZVS57B' where id=8; -update noar tt set v0='SDMYKH4BPLWPWMWLO8RKXRZYI' where id=9; -update noar ti set v0='SDMYKH4BPLWPWMWLO8RKXRZYI' where id=9; -update noar tt set b0='24PNSZGAS8SXGXTP' where id=9; -update noar ti set b0='24PNSZGAS8SXGXTP' where id=9; -update noar tt set v0='IJIYFZX0QA49' where id=9; -update noar ti set v0='IJIYFZX0QA49' where id=9; -update noar tt set b1='LE12M0LRSYF4I8NN4OZ0EPJBPXVJJF' where id=9; -update noar ti set b1='LE12M0LRSYF4I8NN4OZ0EPJBPXVJJF' where id=9; -update noar tt set v0='LMKGF2YF' where id=9; -update noar ti set v0='LMKGF2YF' where id=9; -update noar tt set b2='DB63DA0HYCQCEAQ7C2BQO29' where id=9; -update noar ti set b2='DB63DA0HYCQCEAQ7C2BQO29' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - v0 varchar(32) null, - b0 tinyblob null, - b1 blob null, - b2 mediumblob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='EVAQN12PBZJE1JVM04C05IIL6GFWS' where id=1; -update noar ti set v0='EVAQN12PBZJE1JVM04C05IIL6GFWS' where id=1; -update noar tt set b0='3IZ5JC5VC32MCUHKMFU6KF46IANYZ' where id=1; -update noar ti set b0='3IZ5JC5VC32MCUHKMFU6KF46IANYZ' where id=1; -update noar tt set v0='EA01' where id=1; -update noar ti set v0='EA01' where id=1; -update noar tt set b1='5LGXTRUYYSQGN8BI1EPQ' where id=1; -update noar ti set b1='5LGXTRUYYSQGN8BI1EPQ' where id=1; -update noar tt set v0='BMWJ2ICLHBUBXQMDFUJHTDZLMSRP' where id=1; -update noar ti set v0='BMWJ2ICLHBUBXQMDFUJHTDZLMSRP' where id=1; -update noar tt set b2='J2JQI8RJ8IOTAZHTND6Y29G2SGJJSXF9' where id=1; -update noar ti set b2='J2JQI8RJ8IOTAZHTND6Y29G2SGJJSXF9' where id=1; -update noar tt set v0='SRAYZ5RBY4SFKH4AMSXRS25J1VMG' where id=2; -update noar ti set v0='SRAYZ5RBY4SFKH4AMSXRS25J1VMG' where id=2; -update noar tt set b0='D94NCPFQQQCPIE1TE2G' where id=2; -update noar ti set b0='D94NCPFQQQCPIE1TE2G' where id=2; -update noar tt set v0='D' where id=2; -update noar ti set v0='D' where id=2; -update noar tt set b1='M6FOQ5IMOH' where id=2; -update noar ti set b1='M6FOQ5IMOH' where id=2; -update noar tt set v0='CV' where id=2; -update noar ti set v0='CV' where id=2; -update noar tt set b2='5GSOB0UCF4XG' where id=2; -update noar ti set b2='5GSOB0UCF4XG' where id=2; -update noar tt set v0='TNRA2XXPBI' where id=3; -update noar ti set v0='TNRA2XXPBI' where id=3; -update noar tt set b0='1LS63JCEJBTLL4KGCQ8N3ZYS2WLN' where id=3; -update noar ti set b0='1LS63JCEJBTLL4KGCQ8N3ZYS2WLN' where id=3; -update noar tt set v0='HVEI2' where id=3; -update noar ti set v0='HVEI2' where id=3; -update noar tt set b1='G20MDR85O0ACKEZT' where id=3; -update noar ti set b1='G20MDR85O0ACKEZT' where id=3; -update noar tt set v0='P7328SD5HM794AMY' where id=3; -update noar ti set v0='P7328SD5HM794AMY' where id=3; -update noar tt set b2='2ROQFG68JQYLCBVCTK9OFP8G' where id=3; -update noar ti set b2='2ROQFG68JQYLCBVCTK9OFP8G' where id=3; -update noar tt set v0='WN3AIRV5ITL' where id=4; -update noar ti set v0='WN3AIRV5ITL' where id=4; -update noar tt set b0='CSC7HBU' where id=4; -update noar ti set b0='CSC7HBU' where id=4; -update noar tt set v0='8L7F7BLUDIP0UXAE2FAMHCVG0BVTFAU8' where id=4; -update noar ti set v0='8L7F7BLUDIP0UXAE2FAMHCVG0BVTFAU8' where id=4; -update noar tt set b1='TS2K1JLQKU7RS7ULFV' where id=4; -update noar ti set b1='TS2K1JLQKU7RS7ULFV' where id=4; -update noar tt set v0='RYUB49CTP9' where id=4; -update noar ti set v0='RYUB49CTP9' where id=4; -update noar tt set b2='7RWPY9O20MYJJXKAYO4XYT0E' where id=4; -update noar ti set b2='7RWPY9O20MYJJXKAYO4XYT0E' where id=4; -update noar tt set v0='C2W4L6F7OLPHEOYBRX89TANBTQD' where id=5; -update noar ti set v0='C2W4L6F7OLPHEOYBRX89TANBTQD' where id=5; -update noar tt set b0='0G6I1NQIOBE' where id=5; -update noar ti set b0='0G6I1NQIOBE' where id=5; -update noar tt set v0='9BMGYUAOBGSSACLSXXXP' where id=5; -update noar ti set v0='9BMGYUAOBGSSACLSXXXP' where id=5; -update noar tt set b1='5AKX5' where id=5; -update noar ti set b1='5AKX5' where id=5; -update noar tt set v0='BMA7HYV' where id=5; -update noar ti set v0='BMA7HYV' where id=5; -update noar tt set b2='TUGY5II9QVVW77L6QZ799NP5TMH' where id=5; -update noar ti set b2='TUGY5II9QVVW77L6QZ799NP5TMH' where id=5; -update noar tt set v0='J2OSPZWSTVY' where id=6; -update noar ti set v0='J2OSPZWSTVY' where id=6; -update noar tt set b0='XW2XUK1JSAI' where id=6; -update noar ti set b0='XW2XUK1JSAI' where id=6; -update noar tt set v0='13B5S7628U3H660R' where id=6; -update noar ti set v0='13B5S7628U3H660R' where id=6; -update noar tt set b1='CL9YZ5499ZWEB6V95LEYCZ8XV' where id=6; -update noar ti set b1='CL9YZ5499ZWEB6V95LEYCZ8XV' where id=6; -update noar tt set v0='8HP01RHF77L7PCMFSS2QFZW3K' where id=6; -update noar ti set v0='8HP01RHF77L7PCMFSS2QFZW3K' where id=6; -update noar tt set b2='L55PAF7DAYW3L' where id=6; -update noar ti set b2='L55PAF7DAYW3L' where id=6; -update noar tt set v0='QRRBU' where id=7; -update noar ti set v0='QRRBU' where id=7; -update noar tt set b0='W71' where id=7; -update noar ti set b0='W71' where id=7; -update noar tt set v0='9V7UOY' where id=7; -update noar ti set v0='9V7UOY' where id=7; -update noar tt set b1='W3882CQ3X3UJN150MQD1M' where id=7; -update noar ti set b1='W3882CQ3X3UJN150MQD1M' where id=7; -update noar tt set v0='UYXHJY2TNCSWXPGGDF8RBGVQ4LM' where id=7; -update noar ti set v0='UYXHJY2TNCSWXPGGDF8RBGVQ4LM' where id=7; -update noar tt set b2='BE9TGMD1B6E9B' where id=7; -update noar ti set b2='BE9TGMD1B6E9B' where id=7; -update noar tt set v0='WONPYSTO5' where id=8; -update noar ti set v0='WONPYSTO5' where id=8; -update noar tt set b0='SD24QLJK4BR1SM3GT2JKLQGLQ65' where id=8; -update noar ti set b0='SD24QLJK4BR1SM3GT2JKLQGLQ65' where id=8; -update noar tt set v0='Z' where id=8; -update noar ti set v0='Z' where id=8; -update noar tt set b1='UW888Q6J' where id=8; -update noar ti set b1='UW888Q6J' where id=8; -update noar tt set v0='0VP7N7N' where id=8; -update noar ti set v0='0VP7N7N' where id=8; -update noar tt set b2='VQ' where id=8; -update noar ti set b2='VQ' where id=8; -update noar tt set v0='M9' where id=9; -update noar ti set v0='M9' where id=9; -update noar tt set b0='JTBH6ZYBQ0K14DUB8ATRH' where id=9; -update noar ti set b0='JTBH6ZYBQ0K14DUB8ATRH' where id=9; -update noar tt set v0='DKWX95RZVA7NMBCAM2SRLLWBA2V' where id=9; -update noar ti set v0='DKWX95RZVA7NMBCAM2SRLLWBA2V' where id=9; -update noar tt set b1='4VT00IPDUKI3' where id=9; -update noar ti set b1='4VT00IPDUKI3' where id=9; -update noar tt set v0='JUDG2P0Q8H15J4FGVYW1KFVEG' where id=9; -update noar ti set v0='JUDG2P0Q8H15J4FGVYW1KFVEG' where id=9; -update noar tt set b2='354467' where id=9; -update noar ti set b2='354467' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - v0 varchar(256) null, - b0 tinyblob null, - b1 blob null, - b2 mediumblob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='BYET' where id=1; -update noar ti set v0='BYET' where id=1; -update noar tt set b0='PXRAQCV856SNE' where id=1; -update noar ti set b0='PXRAQCV856SNE' where id=1; -update noar tt set v0='JWK5RCYMK800H40OUF6G92KG2OJ1LG' where id=1; -update noar ti set v0='JWK5RCYMK800H40OUF6G92KG2OJ1LG' where id=1; -update noar tt set b1='JX8LZI7E9KZN' where id=1; -update noar ti set b1='JX8LZI7E9KZN' where id=1; -update noar tt set v0='P9QJFO5' where id=1; -update noar ti set v0='P9QJFO5' where id=1; -update noar tt set b2='8SKV8S9Z8N0HDDNYQNB3GUF' where id=1; -update noar ti set b2='8SKV8S9Z8N0HDDNYQNB3GUF' where id=1; -update noar tt set v0='KYVSRLP6037JRMDAGQBJMI2' where id=2; -update noar ti set v0='KYVSRLP6037JRMDAGQBJMI2' where id=2; -update noar tt set b0='WATMSCTME30ZTLNGN42JJI2' where id=2; -update noar ti set b0='WATMSCTME30ZTLNGN42JJI2' where id=2; -update noar tt set v0='X18BL7PGFQ1TZHYETTDHB5UVWC8' where id=2; -update noar ti set v0='X18BL7PGFQ1TZHYETTDHB5UVWC8' where id=2; -update noar tt set b1='W2OALQJKHGAFCNW7GVE' where id=2; -update noar ti set b1='W2OALQJKHGAFCNW7GVE' where id=2; -update noar tt set v0='BP4AY2LL6X559KUL9T1OC2VA3XP' where id=2; -update noar ti set v0='BP4AY2LL6X559KUL9T1OC2VA3XP' where id=2; -update noar tt set b2='ZW8EMX88VZJD6EYPH8I92NKEHMNT5OR' where id=2; -update noar ti set b2='ZW8EMX88VZJD6EYPH8I92NKEHMNT5OR' where id=2; -update noar tt set v0='VD' where id=3; -update noar ti set v0='VD' where id=3; -update noar tt set b0='7E4YU3CTFDDGVPGPK68QFEKX2SQ' where id=3; -update noar ti set b0='7E4YU3CTFDDGVPGPK68QFEKX2SQ' where id=3; -update noar tt set v0='3BJ6ISBOADND' where id=3; -update noar ti set v0='3BJ6ISBOADND' where id=3; -update noar tt set b1='TCTWC8UNPER1D7XY5LE8' where id=3; -update noar ti set b1='TCTWC8UNPER1D7XY5LE8' where id=3; -update noar tt set v0='VOE8' where id=3; -update noar ti set v0='VOE8' where id=3; -update noar tt set b2='0ETQ7NULKA' where id=3; -update noar ti set b2='0ETQ7NULKA' where id=3; -update noar tt set v0='4DFNX3BM4QTWEQ8BBDQD495R' where id=4; -update noar ti set v0='4DFNX3BM4QTWEQ8BBDQD495R' where id=4; -update noar tt set b0='C06NB4XODKEO8FIO' where id=4; -update noar ti set b0='C06NB4XODKEO8FIO' where id=4; -update noar tt set v0='4G7OK0XBAPQ798YD1KUQBWSOH' where id=4; -update noar ti set v0='4G7OK0XBAPQ798YD1KUQBWSOH' where id=4; -update noar tt set b1='XI6Z6NM14' where id=4; -update noar ti set b1='XI6Z6NM14' where id=4; -update noar tt set v0='JRKS4P2F7SF47YBB8YC7UWW' where id=4; -update noar ti set v0='JRKS4P2F7SF47YBB8YC7UWW' where id=4; -update noar tt set b2='A1' where id=4; -update noar ti set b2='A1' where id=4; -update noar tt set v0='008MOSMOPNFFI2H3ALVNMGUZ19S8856' where id=5; -update noar ti set v0='008MOSMOPNFFI2H3ALVNMGUZ19S8856' where id=5; -update noar tt set b0='X3IL8YPVXGEGCG4' where id=5; -update noar ti set b0='X3IL8YPVXGEGCG4' where id=5; -update noar tt set v0='5787N40J27E18N7DG7XHVZS' where id=5; -update noar ti set v0='5787N40J27E18N7DG7XHVZS' where id=5; -update noar tt set b1='08ZI' where id=5; -update noar ti set b1='08ZI' where id=5; -update noar tt set v0='BH' where id=5; -update noar ti set v0='BH' where id=5; -update noar tt set b2='7JEQU8UJ40' where id=5; -update noar ti set b2='7JEQU8UJ40' where id=5; -update noar tt set v0='KU1PYWE' where id=6; -update noar ti set v0='KU1PYWE' where id=6; -update noar tt set b0='ZG5I9AM26O' where id=6; -update noar ti set b0='ZG5I9AM26O' where id=6; -update noar tt set v0='QEJ9B5N3YC9QOQ1QPP7ZN' where id=6; -update noar ti set v0='QEJ9B5N3YC9QOQ1QPP7ZN' where id=6; -update noar tt set b1='JZIFRF3Y68RVXOTM2D' where id=6; -update noar ti set b1='JZIFRF3Y68RVXOTM2D' where id=6; -update noar tt set v0='ZXYREEOS1XWLZYDNJLBV188XY' where id=6; -update noar ti set v0='ZXYREEOS1XWLZYDNJLBV188XY' where id=6; -update noar tt set b2='9KW9K0LT61WV3B' where id=6; -update noar ti set b2='9KW9K0LT61WV3B' where id=6; -update noar tt set v0='8YCO64' where id=7; -update noar ti set v0='8YCO64' where id=7; -update noar tt set b0='05OPWMBY7YRHSE974DLKOLIRUKBBOJD1' where id=7; -update noar ti set b0='05OPWMBY7YRHSE974DLKOLIRUKBBOJD1' where id=7; -update noar tt set v0='MB7EICCYEG8W4ZZS8FEHP1U648I7IFQ' where id=7; -update noar ti set v0='MB7EICCYEG8W4ZZS8FEHP1U648I7IFQ' where id=7; -update noar tt set b1='8J59C0' where id=7; -update noar ti set b1='8J59C0' where id=7; -update noar tt set v0='LOCIM2W8CZ377UFF96B9TGSE6F' where id=7; -update noar ti set v0='LOCIM2W8CZ377UFF96B9TGSE6F' where id=7; -update noar tt set b2='TWO4ZOC79BRSFV25Q6RDVT6AN' where id=7; -update noar ti set b2='TWO4ZOC79BRSFV25Q6RDVT6AN' where id=7; -update noar tt set v0='HWF9IDDAZZWOH8MPLP1GM2C8CFU8' where id=8; -update noar ti set v0='HWF9IDDAZZWOH8MPLP1GM2C8CFU8' where id=8; -update noar tt set b0='6GMPQM6ZD' where id=8; -update noar ti set b0='6GMPQM6ZD' where id=8; -update noar tt set v0='DQGA0GCK0U2UW8QYVLVUSH' where id=8; -update noar ti set v0='DQGA0GCK0U2UW8QYVLVUSH' where id=8; -update noar tt set b1='E5WX3ZW1QHVMYEQDR5W9QX4W' where id=8; -update noar ti set b1='E5WX3ZW1QHVMYEQDR5W9QX4W' where id=8; -update noar tt set v0='EB' where id=8; -update noar ti set v0='EB' where id=8; -update noar tt set b2='OROMIZLVZASGGAJ6GR82VAMX' where id=8; -update noar ti set b2='OROMIZLVZASGGAJ6GR82VAMX' where id=8; -update noar tt set v0='EXX2' where id=9; -update noar ti set v0='EXX2' where id=9; -update noar tt set b0='MXZ2HC1L70FFC' where id=9; -update noar ti set b0='MXZ2HC1L70FFC' where id=9; -update noar tt set v0='P8U87WH594NVIJ58KIWL1' where id=9; -update noar ti set v0='P8U87WH594NVIJ58KIWL1' where id=9; -update noar tt set b1='0' where id=9; -update noar ti set b1='0' where id=9; -update noar tt set v0='QGL' where id=9; -update noar ti set v0='QGL' where id=9; -update noar tt set b2='CZ3BR6MT1X' where id=9; -update noar ti set b2='CZ3BR6MT1X' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - v0 varchar(32) not null, - b0 tinyblob not null, - b1 blob not null, - b2 mediumblob not null -) engine=tokudb; -insert into tt values (1,'','','',''); -insert into tt values (2,'','','',''); -insert into tt values (3,'','','',''); -insert into tt values (4,'','','',''); -insert into tt values (5,'','','',''); -insert into tt values (6,'','','',''); -insert into tt values (7,'','','',''); -insert into tt values (8,'','','',''); -insert into tt values (9,'','','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='D0KN24MEJQZC2PR9A' where id=1; -update noar ti set v0='D0KN24MEJQZC2PR9A' where id=1; -update noar tt set b0='2N8Z' where id=1; -update noar ti set b0='2N8Z' where id=1; -update noar tt set v0='65N82EVEWW' where id=1; -update noar ti set v0='65N82EVEWW' where id=1; -update noar tt set b1='UL6KAL1GU8' where id=1; -update noar ti set b1='UL6KAL1GU8' where id=1; -update noar tt set v0='WUUIRYVFVWE6D' where id=1; -update noar ti set v0='WUUIRYVFVWE6D' where id=1; -update noar tt set b2='8WN7R34J9G1HLL2' where id=1; -update noar ti set b2='8WN7R34J9G1HLL2' where id=1; -update noar tt set v0='T1CYE2210XO7YWSIJ9JEP4' where id=2; -update noar ti set v0='T1CYE2210XO7YWSIJ9JEP4' where id=2; -update noar tt set b0='8' where id=2; -update noar ti set b0='8' where id=2; -update noar tt set v0='K9JUEPN8' where id=2; -update noar ti set v0='K9JUEPN8' where id=2; -update noar tt set b1='E4252OX77L0FF8N2E' where id=2; -update noar ti set b1='E4252OX77L0FF8N2E' where id=2; -update noar tt set v0='EH8FKIVDGQVREOYO04NKJDZ3PCFA5' where id=2; -update noar ti set v0='EH8FKIVDGQVREOYO04NKJDZ3PCFA5' where id=2; -update noar tt set b2='052LG5XWEY5B0Z06VP3PI195EO' where id=2; -update noar ti set b2='052LG5XWEY5B0Z06VP3PI195EO' where id=2; -update noar tt set v0='WE0IU25LJBCS7PZEZHUI65FRH6' where id=3; -update noar ti set v0='WE0IU25LJBCS7PZEZHUI65FRH6' where id=3; -update noar tt set b0='T9AU1XYOYU0D2163KYQ' where id=3; -update noar ti set b0='T9AU1XYOYU0D2163KYQ' where id=3; -update noar tt set v0='B5INDB' where id=3; -update noar ti set v0='B5INDB' where id=3; -update noar tt set b1='Z9EQ4WDLPY72R5Y4MGD1MW7K7KL' where id=3; -update noar ti set b1='Z9EQ4WDLPY72R5Y4MGD1MW7K7KL' where id=3; -update noar tt set v0='H7G9PRO1RBR7VMGFQRNH3LR2X9QXE' where id=3; -update noar ti set v0='H7G9PRO1RBR7VMGFQRNH3LR2X9QXE' where id=3; -update noar tt set b2='W3TULW7JR84ZDVLJQW2904TH7PPTIR' where id=3; -update noar ti set b2='W3TULW7JR84ZDVLJQW2904TH7PPTIR' where id=3; -update noar tt set v0='XGWEVHMQN8' where id=4; -update noar ti set v0='XGWEVHMQN8' where id=4; -update noar tt set b0='UOU' where id=4; -update noar ti set b0='UOU' where id=4; -update noar tt set v0='2VH3AL9XARP' where id=4; -update noar ti set v0='2VH3AL9XARP' where id=4; -update noar tt set b1='3I1BDJOX8X1QRM0NSIW' where id=4; -update noar ti set b1='3I1BDJOX8X1QRM0NSIW' where id=4; -update noar tt set v0='W' where id=4; -update noar ti set v0='W' where id=4; -update noar tt set b2='TN90VCQT9KJ0RMH8AF3RF' where id=4; -update noar ti set b2='TN90VCQT9KJ0RMH8AF3RF' where id=4; -update noar tt set v0='AJU3R6P6KUNMX2VB8WZKNYJVZ3IA' where id=5; -update noar ti set v0='AJU3R6P6KUNMX2VB8WZKNYJVZ3IA' where id=5; -update noar tt set b0='7Z' where id=5; -update noar ti set b0='7Z' where id=5; -update noar tt set v0='P8DP9RLR3ECYFA6AL86' where id=5; -update noar ti set v0='P8DP9RLR3ECYFA6AL86' where id=5; -update noar tt set b1='OKZ3' where id=5; -update noar ti set b1='OKZ3' where id=5; -update noar tt set v0='5EZ' where id=5; -update noar ti set v0='5EZ' where id=5; -update noar tt set b2='CTP5K69VS8HE' where id=5; -update noar ti set b2='CTP5K69VS8HE' where id=5; -update noar tt set v0='9QH969YHJYTT3FFDO5' where id=6; -update noar ti set v0='9QH969YHJYTT3FFDO5' where id=6; -update noar tt set b0='OEFSO5LYQVKT2WGKW70L8U' where id=6; -update noar ti set b0='OEFSO5LYQVKT2WGKW70L8U' where id=6; -update noar tt set v0='MO46M12Q27QNQZWA2EXKXPG4FJR' where id=6; -update noar ti set v0='MO46M12Q27QNQZWA2EXKXPG4FJR' where id=6; -update noar tt set b1='0' where id=6; -update noar ti set b1='0' where id=6; -update noar tt set v0='4GQ8Y6DFHJADTOBN9F2WJO0' where id=6; -update noar ti set v0='4GQ8Y6DFHJADTOBN9F2WJO0' where id=6; -update noar tt set b2='Z4EOV1MHPLU' where id=6; -update noar ti set b2='Z4EOV1MHPLU' where id=6; -update noar tt set v0='R5IT2AVSYH4M48MUFV' where id=7; -update noar ti set v0='R5IT2AVSYH4M48MUFV' where id=7; -update noar tt set b0='SB0FAOGB0ORU9' where id=7; -update noar ti set b0='SB0FAOGB0ORU9' where id=7; -update noar tt set v0='0QCC57BCZISAQ' where id=7; -update noar ti set v0='0QCC57BCZISAQ' where id=7; -update noar tt set b1='D92T0HMD4981FXDMOJUN50' where id=7; -update noar ti set b1='D92T0HMD4981FXDMOJUN50' where id=7; -update noar tt set v0='0CJUJ5CDQFOHSW094UU9CA09A' where id=7; -update noar ti set v0='0CJUJ5CDQFOHSW094UU9CA09A' where id=7; -update noar tt set b2='KK8OROB8YCC370CS' where id=7; -update noar ti set b2='KK8OROB8YCC370CS' where id=7; -update noar tt set v0='JEG' where id=8; -update noar ti set v0='JEG' where id=8; -update noar tt set b0='U7E9P6FHLM5EFQ5IUWLZX5M1E5N507B4' where id=8; -update noar ti set b0='U7E9P6FHLM5EFQ5IUWLZX5M1E5N507B4' where id=8; -update noar tt set v0='FO8C' where id=8; -update noar ti set v0='FO8C' where id=8; -update noar tt set b1='ZWQ4' where id=8; -update noar ti set b1='ZWQ4' where id=8; -update noar tt set v0='9XROV2SW3HUS6X6NEEVF4H9LHX0' where id=8; -update noar ti set v0='9XROV2SW3HUS6X6NEEVF4H9LHX0' where id=8; -update noar tt set b2='N5UGM6G7117XM88NGWTLDV18MWWB' where id=8; -update noar ti set b2='N5UGM6G7117XM88NGWTLDV18MWWB' where id=8; -update noar tt set v0='6XE2YRV3YO6E3RWOU83RRILL0AV8QSH' where id=9; -update noar ti set v0='6XE2YRV3YO6E3RWOU83RRILL0AV8QSH' where id=9; -update noar tt set b0='KPKNO6PQPI1ORO0Z856LG4L' where id=9; -update noar ti set b0='KPKNO6PQPI1ORO0Z856LG4L' where id=9; -update noar tt set v0='1CCIFCNOV5A2XZ' where id=9; -update noar ti set v0='1CCIFCNOV5A2XZ' where id=9; -update noar tt set b1='6L8ZD2IO8B3K83OY' where id=9; -update noar ti set b1='6L8ZD2IO8B3K83OY' where id=9; -update noar tt set v0='K4U' where id=9; -update noar ti set v0='K4U' where id=9; -update noar tt set b2='F7G3BZYU0Q97K' where id=9; -update noar ti set b2='F7G3BZYU0Q97K' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - v0 varchar(256) not null, - b0 tinyblob not null, - b1 blob not null, - b2 mediumblob not null -) engine=tokudb; -insert into tt values (1,'','','',''); -insert into tt values (2,'','','',''); -insert into tt values (3,'','','',''); -insert into tt values (4,'','','',''); -insert into tt values (5,'','','',''); -insert into tt values (6,'','','',''); -insert into tt values (7,'','','',''); -insert into tt values (8,'','','',''); -insert into tt values (9,'','','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='Q1' where id=1; -update noar ti set v0='Q1' where id=1; -update noar tt set b0='9VQUXZD4VZ523ZWP5' where id=1; -update noar ti set b0='9VQUXZD4VZ523ZWP5' where id=1; -update noar tt set v0='E48Q' where id=1; -update noar ti set v0='E48Q' where id=1; -update noar tt set b1='U597Z8G1L418ZLQ2P' where id=1; -update noar ti set b1='U597Z8G1L418ZLQ2P' where id=1; -update noar tt set v0='V13D5F06LANSMKAAT1D0CAOFIKH6HL' where id=1; -update noar ti set v0='V13D5F06LANSMKAAT1D0CAOFIKH6HL' where id=1; -update noar tt set b2='QHPACUBFHZZ' where id=1; -update noar ti set b2='QHPACUBFHZZ' where id=1; -update noar tt set v0='2N6O0O7SBSHSM03SD1U' where id=2; -update noar ti set v0='2N6O0O7SBSHSM03SD1U' where id=2; -update noar tt set b0='NBIQ1I6NGSSC4HIN2BDKYYNLUR' where id=2; -update noar ti set b0='NBIQ1I6NGSSC4HIN2BDKYYNLUR' where id=2; -update noar tt set v0='5' where id=2; -update noar ti set v0='5' where id=2; -update noar tt set b1='M1YN6ADRB5EQHW' where id=2; -update noar ti set b1='M1YN6ADRB5EQHW' where id=2; -update noar tt set v0='VYM4FOSZ7XIBMRLYOP' where id=2; -update noar ti set v0='VYM4FOSZ7XIBMRLYOP' where id=2; -update noar tt set b2='RP0BUGIV' where id=2; -update noar ti set b2='RP0BUGIV' where id=2; -update noar tt set v0='B9IQQIAFG087NQ7Y35LJOCY2BBI569L' where id=3; -update noar ti set v0='B9IQQIAFG087NQ7Y35LJOCY2BBI569L' where id=3; -update noar tt set b0='79TBCF95C07GPJ7WZC7RQAYJL' where id=3; -update noar ti set b0='79TBCF95C07GPJ7WZC7RQAYJL' where id=3; -update noar tt set v0='BYGREAH' where id=3; -update noar ti set v0='BYGREAH' where id=3; -update noar tt set b1='E' where id=3; -update noar ti set b1='E' where id=3; -update noar tt set v0='BYHW7P6' where id=3; -update noar ti set v0='BYHW7P6' where id=3; -update noar tt set b2='ZTET0I75AN' where id=3; -update noar ti set b2='ZTET0I75AN' where id=3; -update noar tt set v0='FGPAJFQIJCIYD4SP1' where id=4; -update noar ti set v0='FGPAJFQIJCIYD4SP1' where id=4; -update noar tt set b0='5KCMB' where id=4; -update noar ti set b0='5KCMB' where id=4; -update noar tt set v0='ETFUPDJZX0EFFJ6TAMNQ725' where id=4; -update noar ti set v0='ETFUPDJZX0EFFJ6TAMNQ725' where id=4; -update noar tt set b1='7' where id=4; -update noar ti set b1='7' where id=4; -update noar tt set v0='X0PSMOQLVB3V77D3N' where id=4; -update noar ti set v0='X0PSMOQLVB3V77D3N' where id=4; -update noar tt set b2='3A7GSBROGZTF0DERBRDUIKLEO0HGYA' where id=4; -update noar ti set b2='3A7GSBROGZTF0DERBRDUIKLEO0HGYA' where id=4; -update noar tt set v0='TX9KW6PNGJNVBN' where id=5; -update noar ti set v0='TX9KW6PNGJNVBN' where id=5; -update noar tt set b0='RN602RZG7ZO2JFLBXC8YDR55A' where id=5; -update noar ti set b0='RN602RZG7ZO2JFLBXC8YDR55A' where id=5; -update noar tt set v0='NDVJVJL' where id=5; -update noar ti set v0='NDVJVJL' where id=5; -update noar tt set b1='YBDZ0O3NVOJ1H4NCV072X9PH5N8' where id=5; -update noar ti set b1='YBDZ0O3NVOJ1H4NCV072X9PH5N8' where id=5; -update noar tt set v0='DWD4UR0ZH916C9E7L1BHSNI' where id=5; -update noar ti set v0='DWD4UR0ZH916C9E7L1BHSNI' where id=5; -update noar tt set b2='HZFJ51046UEJ6KDR2W2ZES5K54DNGEG' where id=5; -update noar ti set b2='HZFJ51046UEJ6KDR2W2ZES5K54DNGEG' where id=5; -update noar tt set v0='GXKK' where id=6; -update noar ti set v0='GXKK' where id=6; -update noar tt set b0='8HO' where id=6; -update noar ti set b0='8HO' where id=6; -update noar tt set v0='ZND9KNTDDSQPVE7083Z' where id=6; -update noar ti set v0='ZND9KNTDDSQPVE7083Z' where id=6; -update noar tt set b1='L9T93T8955I8W652DFDH3K' where id=6; -update noar ti set b1='L9T93T8955I8W652DFDH3K' where id=6; -update noar tt set v0='R890OUQEBACJMNLAZ' where id=6; -update noar ti set v0='R890OUQEBACJMNLAZ' where id=6; -update noar tt set b2='J18RS1FYPRWCLFBML8RLM20G' where id=6; -update noar ti set b2='J18RS1FYPRWCLFBML8RLM20G' where id=6; -update noar tt set v0='Q9C0NP8G' where id=7; -update noar ti set v0='Q9C0NP8G' where id=7; -update noar tt set b0='O1KDM982G' where id=7; -update noar ti set b0='O1KDM982G' where id=7; -update noar tt set v0='WMN569SYKVWDE30CA5A1BBS5FNYE' where id=7; -update noar ti set v0='WMN569SYKVWDE30CA5A1BBS5FNYE' where id=7; -update noar tt set b1='W6CZQFW3I9MLC' where id=7; -update noar ti set b1='W6CZQFW3I9MLC' where id=7; -update noar tt set v0='3ZI2NA5DHWS7XC8422ULEGEM6R718J' where id=7; -update noar ti set v0='3ZI2NA5DHWS7XC8422ULEGEM6R718J' where id=7; -update noar tt set b2='RXC7Y3WUE9S9VIUFW92IE' where id=7; -update noar ti set b2='RXC7Y3WUE9S9VIUFW92IE' where id=7; -update noar tt set v0='TRV6JBLN' where id=8; -update noar ti set v0='TRV6JBLN' where id=8; -update noar tt set b0='C18E0M961RH5KJT' where id=8; -update noar ti set b0='C18E0M961RH5KJT' where id=8; -update noar tt set v0='RUC64AA6BLU5DDZ3BASMKW4XCE0Q7' where id=8; -update noar ti set v0='RUC64AA6BLU5DDZ3BASMKW4XCE0Q7' where id=8; -update noar tt set b1='X5OTXW1ZU5UMSBLRFHSNEOM7XOSK' where id=8; -update noar ti set b1='X5OTXW1ZU5UMSBLRFHSNEOM7XOSK' where id=8; -update noar tt set v0='HSUPT30OB36TW3HZ2JOIEOD0YXNE2' where id=8; -update noar ti set v0='HSUPT30OB36TW3HZ2JOIEOD0YXNE2' where id=8; -update noar tt set b2='SDFVZVBSRZLQ4VXPKZZ3' where id=8; -update noar ti set b2='SDFVZVBSRZLQ4VXPKZZ3' where id=8; -update noar tt set v0='TU4VS9BNWJ22EWHQGD6SJ54CTUM7JG' where id=9; -update noar ti set v0='TU4VS9BNWJ22EWHQGD6SJ54CTUM7JG' where id=9; -update noar tt set b0='3R4' where id=9; -update noar ti set b0='3R4' where id=9; -update noar tt set v0='Z2W4IOS' where id=9; -update noar ti set v0='Z2W4IOS' where id=9; -update noar tt set b1='X5JTLZY' where id=9; -update noar ti set b1='X5JTLZY' where id=9; -update noar tt set v0='GJNLF89WINZPO' where id=9; -update noar ti set v0='GJNLF89WINZPO' where id=9; -update noar tt set b2='SSLPPOH4GQQ' where id=9; -update noar ti set b2='SSLPPOH4GQQ' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - v0 varchar(32) null, - b0 tinyblob null, - b1 blob null, - b2 longblob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='HUUBW07QPI19Z7GY' where id=1; -update noar ti set v0='HUUBW07QPI19Z7GY' where id=1; -update noar tt set b0='DWB0N0KRCDTIZ5BIYT' where id=1; -update noar ti set b0='DWB0N0KRCDTIZ5BIYT' where id=1; -update noar tt set v0='KNPWL2XSER0' where id=1; -update noar ti set v0='KNPWL2XSER0' where id=1; -update noar tt set b1='Q' where id=1; -update noar ti set b1='Q' where id=1; -update noar tt set v0='PEDK0PMW3VTPVFFD1JD5' where id=1; -update noar ti set v0='PEDK0PMW3VTPVFFD1JD5' where id=1; -update noar tt set b2='JERA7GGLASUJAMA5A8CV4XVZO04ACEL' where id=1; -update noar ti set b2='JERA7GGLASUJAMA5A8CV4XVZO04ACEL' where id=1; -update noar tt set v0='MY96RKIJT9JVXA3BV2IQXYOCAREB' where id=2; -update noar ti set v0='MY96RKIJT9JVXA3BV2IQXYOCAREB' where id=2; -update noar tt set b0='DVL5QAWLBJPJT4' where id=2; -update noar ti set b0='DVL5QAWLBJPJT4' where id=2; -update noar tt set v0='3' where id=2; -update noar ti set v0='3' where id=2; -update noar tt set b1='ZQAY3QAIXVVC' where id=2; -update noar ti set b1='ZQAY3QAIXVVC' where id=2; -update noar tt set v0='GKUYV9' where id=2; -update noar ti set v0='GKUYV9' where id=2; -update noar tt set b2='3X4QZGBUOGJMAU9KBSC9C' where id=2; -update noar ti set b2='3X4QZGBUOGJMAU9KBSC9C' where id=2; -update noar tt set v0='UUAAQ16QIMA0P8UFBCT' where id=3; -update noar ti set v0='UUAAQ16QIMA0P8UFBCT' where id=3; -update noar tt set b0='NE5F80ACBVSUS5XFXRQY0U' where id=3; -update noar ti set b0='NE5F80ACBVSUS5XFXRQY0U' where id=3; -update noar tt set v0='NLI8SQ3U5' where id=3; -update noar ti set v0='NLI8SQ3U5' where id=3; -update noar tt set b1='A' where id=3; -update noar ti set b1='A' where id=3; -update noar tt set v0='O4CSQ07GJP6SO5RCJ0MN94TUMV04QMY' where id=3; -update noar ti set v0='O4CSQ07GJP6SO5RCJ0MN94TUMV04QMY' where id=3; -update noar tt set b2='A5S51YNYAH2' where id=3; -update noar ti set b2='A5S51YNYAH2' where id=3; -update noar tt set v0='YHZWWBJTMI45NC493TMCY6OVXRE0F' where id=4; -update noar ti set v0='YHZWWBJTMI45NC493TMCY6OVXRE0F' where id=4; -update noar tt set b0='D5ZBMT53IPDHFPUH6V3OSAZSSKZ0O17' where id=4; -update noar ti set b0='D5ZBMT53IPDHFPUH6V3OSAZSSKZ0O17' where id=4; -update noar tt set v0='EYDTO0IAL8H0W' where id=4; -update noar ti set v0='EYDTO0IAL8H0W' where id=4; -update noar tt set b1='R2HM4JKFJJERCO' where id=4; -update noar ti set b1='R2HM4JKFJJERCO' where id=4; -update noar tt set v0='50TVQZ09536WYTEOWL0BTVS764' where id=4; -update noar ti set v0='50TVQZ09536WYTEOWL0BTVS764' where id=4; -update noar tt set b2='WOC222J9M' where id=4; -update noar ti set b2='WOC222J9M' where id=4; -update noar tt set v0='KH1KA' where id=5; -update noar ti set v0='KH1KA' where id=5; -update noar tt set b0='WIQFJYZFG67FENHZQ6S8FMLTU36' where id=5; -update noar ti set b0='WIQFJYZFG67FENHZQ6S8FMLTU36' where id=5; -update noar tt set v0='36MOL10Q7NQSNDLCFLWU' where id=5; -update noar ti set v0='36MOL10Q7NQSNDLCFLWU' where id=5; -update noar tt set b1='R2XT' where id=5; -update noar ti set b1='R2XT' where id=5; -update noar tt set v0='YY991MRRCKDH' where id=5; -update noar ti set v0='YY991MRRCKDH' where id=5; -update noar tt set b2='U9C5QAS6O881SVEVEJTIXVEJ' where id=5; -update noar ti set b2='U9C5QAS6O881SVEVEJTIXVEJ' where id=5; -update noar tt set v0='92BZBW68T' where id=6; -update noar ti set v0='92BZBW68T' where id=6; -update noar tt set b0='OVX8ZKV' where id=6; -update noar ti set b0='OVX8ZKV' where id=6; -update noar tt set v0='RIJIO3ONQFITCVVRESKM1ASBPJX' where id=6; -update noar ti set v0='RIJIO3ONQFITCVVRESKM1ASBPJX' where id=6; -update noar tt set b1='EW8DENP53OAZOXECCG28YJ08APPEG6N' where id=6; -update noar ti set b1='EW8DENP53OAZOXECCG28YJ08APPEG6N' where id=6; -update noar tt set v0='IO9AUF6W' where id=6; -update noar ti set v0='IO9AUF6W' where id=6; -update noar tt set b2='JNBQTLWHEZQ' where id=6; -update noar ti set b2='JNBQTLWHEZQ' where id=6; -update noar tt set v0='63QUY1OUU4S0QPFCJSILTQDR76KF2M6B' where id=7; -update noar ti set v0='63QUY1OUU4S0QPFCJSILTQDR76KF2M6B' where id=7; -update noar tt set b0='F3R7ZJHQFN6KL0LTE' where id=7; -update noar ti set b0='F3R7ZJHQFN6KL0LTE' where id=7; -update noar tt set v0='MEYPOP8052KKJFPTVBOIL75ZAXD' where id=7; -update noar ti set v0='MEYPOP8052KKJFPTVBOIL75ZAXD' where id=7; -update noar tt set b1='GPC9N0AI66TOW72GJO29G4YV' where id=7; -update noar ti set b1='GPC9N0AI66TOW72GJO29G4YV' where id=7; -update noar tt set v0='AKYN29I0441KRBSNWH919C' where id=7; -update noar ti set v0='AKYN29I0441KRBSNWH919C' where id=7; -update noar tt set b2='1L' where id=7; -update noar ti set b2='1L' where id=7; -update noar tt set v0='7EPXFBQK' where id=8; -update noar ti set v0='7EPXFBQK' where id=8; -update noar tt set b0='ZV0A3YMAMRLPZCM9BLG2D4Q' where id=8; -update noar ti set b0='ZV0A3YMAMRLPZCM9BLG2D4Q' where id=8; -update noar tt set v0='IAL666LNCG35LYQ0QQK6O5' where id=8; -update noar ti set v0='IAL666LNCG35LYQ0QQK6O5' where id=8; -update noar tt set b1='EW11N63S2OBD7SFD9VNJLL9' where id=8; -update noar ti set b1='EW11N63S2OBD7SFD9VNJLL9' where id=8; -update noar tt set v0='E6QTX01IY2M21N7H' where id=8; -update noar ti set v0='E6QTX01IY2M21N7H' where id=8; -update noar tt set b2='OH56KOFBNTLC26K' where id=8; -update noar ti set b2='OH56KOFBNTLC26K' where id=8; -update noar tt set v0='EGEGWWJJV21CK83K5NXBQGR0CG1' where id=9; -update noar ti set v0='EGEGWWJJV21CK83K5NXBQGR0CG1' where id=9; -update noar tt set b0='O7H1SNTNK0ESVK9APLB2Z9PM3NR9E09' where id=9; -update noar ti set b0='O7H1SNTNK0ESVK9APLB2Z9PM3NR9E09' where id=9; -update noar tt set v0='Q1DHSP4I2' where id=9; -update noar ti set v0='Q1DHSP4I2' where id=9; -update noar tt set b1='IF5DY803ZWPK28V55ZDX1X3' where id=9; -update noar ti set b1='IF5DY803ZWPK28V55ZDX1X3' where id=9; -update noar tt set v0='DQCA7C1SFL0BU23DPX1RCBFE7WAYF' where id=9; -update noar ti set v0='DQCA7C1SFL0BU23DPX1RCBFE7WAYF' where id=9; -update noar tt set b2='OKYK9I5SPMXPVYJIC3CS5' where id=9; -update noar ti set b2='OKYK9I5SPMXPVYJIC3CS5' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - v0 varchar(256) null, - b0 tinyblob null, - b1 blob null, - b2 longblob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='7X9ZCU5EB1K9UTS8WJ51QCSTPGZ2X' where id=1; -update noar ti set v0='7X9ZCU5EB1K9UTS8WJ51QCSTPGZ2X' where id=1; -update noar tt set b0='YB8NTN82M' where id=1; -update noar ti set b0='YB8NTN82M' where id=1; -update noar tt set v0='LRL32Z5N10JBOF6' where id=1; -update noar ti set v0='LRL32Z5N10JBOF6' where id=1; -update noar tt set b1='SVXTVA7OG59RTB' where id=1; -update noar ti set b1='SVXTVA7OG59RTB' where id=1; -update noar tt set v0='5RQF5QA6JGO' where id=1; -update noar ti set v0='5RQF5QA6JGO' where id=1; -update noar tt set b2='LEOR80S' where id=1; -update noar ti set b2='LEOR80S' where id=1; -update noar tt set v0='YSZTG' where id=2; -update noar ti set v0='YSZTG' where id=2; -update noar tt set b0='UW01H8XU8E41VQJNKIQPY43R37E' where id=2; -update noar ti set b0='UW01H8XU8E41VQJNKIQPY43R37E' where id=2; -update noar tt set v0='4U7JBMZB54FMAZV' where id=2; -update noar ti set v0='4U7JBMZB54FMAZV' where id=2; -update noar tt set b1='7UJ4PJDGKF6WFCXGAJZA81SWT' where id=2; -update noar ti set b1='7UJ4PJDGKF6WFCXGAJZA81SWT' where id=2; -update noar tt set v0='XMT1U' where id=2; -update noar ti set v0='XMT1U' where id=2; -update noar tt set b2='2' where id=2; -update noar ti set b2='2' where id=2; -update noar tt set v0='1GXOXA9B3NSGQHU7NBE' where id=3; -update noar ti set v0='1GXOXA9B3NSGQHU7NBE' where id=3; -update noar tt set b0='Q' where id=3; -update noar ti set b0='Q' where id=3; -update noar tt set v0='SY02UKUCTT5A' where id=3; -update noar ti set v0='SY02UKUCTT5A' where id=3; -update noar tt set b1='OQA4' where id=3; -update noar ti set b1='OQA4' where id=3; -update noar tt set v0='DTPZ3DT8PWK8GMWZV' where id=3; -update noar ti set v0='DTPZ3DT8PWK8GMWZV' where id=3; -update noar tt set b2='BYTZ' where id=3; -update noar ti set b2='BYTZ' where id=3; -update noar tt set v0='15603KRF033QUHOY' where id=4; -update noar ti set v0='15603KRF033QUHOY' where id=4; -update noar tt set b0='S7KDI30VIRK9UTK' where id=4; -update noar ti set b0='S7KDI30VIRK9UTK' where id=4; -update noar tt set v0='K0FER' where id=4; -update noar ti set v0='K0FER' where id=4; -update noar tt set b1='42Z7ZIUCK1QXN7' where id=4; -update noar ti set b1='42Z7ZIUCK1QXN7' where id=4; -update noar tt set v0='YKLGSFX7QZ49D9EMOV1EQ' where id=4; -update noar ti set v0='YKLGSFX7QZ49D9EMOV1EQ' where id=4; -update noar tt set b2='MJTDHCSXUDJGL6QJFH9HDED1D' where id=4; -update noar ti set b2='MJTDHCSXUDJGL6QJFH9HDED1D' where id=4; -update noar tt set v0='Q95TBK8Z5Q45ERZQBAE2SYUC3' where id=5; -update noar ti set v0='Q95TBK8Z5Q45ERZQBAE2SYUC3' where id=5; -update noar tt set b0='O8DH7N2SXU1W4CVIHVYRZGW0TN6V1SDQ' where id=5; -update noar ti set b0='O8DH7N2SXU1W4CVIHVYRZGW0TN6V1SDQ' where id=5; -update noar tt set v0='BGVZXQEI40OKTLREY2DA9M' where id=5; -update noar ti set v0='BGVZXQEI40OKTLREY2DA9M' where id=5; -update noar tt set b1='09H5O6IDB32T31OYK5W29M' where id=5; -update noar ti set b1='09H5O6IDB32T31OYK5W29M' where id=5; -update noar tt set v0='MD4BVS633PCUN2W4I8QII' where id=5; -update noar ti set v0='MD4BVS633PCUN2W4I8QII' where id=5; -update noar tt set b2='BFJKMP6SMV3E' where id=5; -update noar ti set b2='BFJKMP6SMV3E' where id=5; -update noar tt set v0='3C96007Y7766C0665X4E5TSC9I33WROS' where id=6; -update noar ti set v0='3C96007Y7766C0665X4E5TSC9I33WROS' where id=6; -update noar tt set b0='8GX6Q05B7HT' where id=6; -update noar ti set b0='8GX6Q05B7HT' where id=6; -update noar tt set v0='TF8YT7Z7TP7SWJ' where id=6; -update noar ti set v0='TF8YT7Z7TP7SWJ' where id=6; -update noar tt set b1='SD3NF1OXAW0B072C54G3LYED8L' where id=6; -update noar ti set b1='SD3NF1OXAW0B072C54G3LYED8L' where id=6; -update noar tt set v0='DXDZ439TUJKULG59CRB0Y9UZ0IH' where id=6; -update noar ti set v0='DXDZ439TUJKULG59CRB0Y9UZ0IH' where id=6; -update noar tt set b2='DJUY1FZ8T8OA5QFCYP81UKNZ98' where id=6; -update noar ti set b2='DJUY1FZ8T8OA5QFCYP81UKNZ98' where id=6; -update noar tt set v0='I6PH4WVRW9LMMJGJOX8G' where id=7; -update noar ti set v0='I6PH4WVRW9LMMJGJOX8G' where id=7; -update noar tt set b0='O3FXX' where id=7; -update noar ti set b0='O3FXX' where id=7; -update noar tt set v0='BL05AVSKRGE0WIOYD6PE8F24SW' where id=7; -update noar ti set v0='BL05AVSKRGE0WIOYD6PE8F24SW' where id=7; -update noar tt set b1='RVCM' where id=7; -update noar ti set b1='RVCM' where id=7; -update noar tt set v0='YPV9DMLVN60CYJKS4MBMQHW' where id=7; -update noar ti set v0='YPV9DMLVN60CYJKS4MBMQHW' where id=7; -update noar tt set b2='BIQ0IXWC485HTEQLR' where id=7; -update noar ti set b2='BIQ0IXWC485HTEQLR' where id=7; -update noar tt set v0='FCTFC0KKZJ3GEKKSY8F82TQ6' where id=8; -update noar ti set v0='FCTFC0KKZJ3GEKKSY8F82TQ6' where id=8; -update noar tt set b0='40LTMGJRJ' where id=8; -update noar ti set b0='40LTMGJRJ' where id=8; -update noar tt set v0='YAQH37GOJUP91JVO0YKMW0ET' where id=8; -update noar ti set v0='YAQH37GOJUP91JVO0YKMW0ET' where id=8; -update noar tt set b1='IHCRM52VXHCDPDFJ4NBICFAYOOX7' where id=8; -update noar ti set b1='IHCRM52VXHCDPDFJ4NBICFAYOOX7' where id=8; -update noar tt set v0='2J4V4ZSAQYNC70B' where id=8; -update noar ti set v0='2J4V4ZSAQYNC70B' where id=8; -update noar tt set b2='DZZ0' where id=8; -update noar ti set b2='DZZ0' where id=8; -update noar tt set v0='6Y3EE5LFZOJGN88SKQ7P08NRZQTZ1BM' where id=9; -update noar ti set v0='6Y3EE5LFZOJGN88SKQ7P08NRZQTZ1BM' where id=9; -update noar tt set b0='RSZVBVQCPOFXOP20BZDU7' where id=9; -update noar ti set b0='RSZVBVQCPOFXOP20BZDU7' where id=9; -update noar tt set v0='P6QM8EN0RKBV' where id=9; -update noar ti set v0='P6QM8EN0RKBV' where id=9; -update noar tt set b1='6GQNANW4XY' where id=9; -update noar ti set b1='6GQNANW4XY' where id=9; -update noar tt set v0='W6XP1RQSQQYFT0CTGP5K8636FW' where id=9; -update noar ti set v0='W6XP1RQSQQYFT0CTGP5K8636FW' where id=9; -update noar tt set b2='FHKJWR6H7L9T90F' where id=9; -update noar ti set b2='FHKJWR6H7L9T90F' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - v0 varchar(32) not null, - b0 tinyblob not null, - b1 blob not null, - b2 longblob not null -) engine=tokudb; -insert into tt values (1,'','','',''); -insert into tt values (2,'','','',''); -insert into tt values (3,'','','',''); -insert into tt values (4,'','','',''); -insert into tt values (5,'','','',''); -insert into tt values (6,'','','',''); -insert into tt values (7,'','','',''); -insert into tt values (8,'','','',''); -insert into tt values (9,'','','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='EXR4KANRV4NMMQQBLEJHZO2JY' where id=1; -update noar ti set v0='EXR4KANRV4NMMQQBLEJHZO2JY' where id=1; -update noar tt set b0='JENF6SB63H4AYG0' where id=1; -update noar ti set b0='JENF6SB63H4AYG0' where id=1; -update noar tt set v0='5GOEYG587Y6R29AOQ0FDIN1EB6GHI2' where id=1; -update noar ti set v0='5GOEYG587Y6R29AOQ0FDIN1EB6GHI2' where id=1; -update noar tt set b1='NHEDBLGN0PET6ZSL24QB1X8OVMBZFM' where id=1; -update noar ti set b1='NHEDBLGN0PET6ZSL24QB1X8OVMBZFM' where id=1; -update noar tt set v0='MPNAJSBUJKKF74VDUEEUW4YG' where id=1; -update noar ti set v0='MPNAJSBUJKKF74VDUEEUW4YG' where id=1; -update noar tt set b2='51DHPJHOSO37F9J87DRQBOT042ZN' where id=1; -update noar ti set b2='51DHPJHOSO37F9J87DRQBOT042ZN' where id=1; -update noar tt set v0='Y25R' where id=2; -update noar ti set v0='Y25R' where id=2; -update noar tt set b0='H4VK6D' where id=2; -update noar ti set b0='H4VK6D' where id=2; -update noar tt set v0='AWEAEXIEIBCI' where id=2; -update noar ti set v0='AWEAEXIEIBCI' where id=2; -update noar tt set b1='ZWPPE01VM' where id=2; -update noar ti set b1='ZWPPE01VM' where id=2; -update noar tt set v0='NB58' where id=2; -update noar ti set v0='NB58' where id=2; -update noar tt set b2='674AUDAVG38P0RDH22K9LU7DS' where id=2; -update noar ti set b2='674AUDAVG38P0RDH22K9LU7DS' where id=2; -update noar tt set v0='ZSR72DAZ' where id=3; -update noar ti set v0='ZSR72DAZ' where id=3; -update noar tt set b0='XB02MJ4ICXBRV3VV' where id=3; -update noar ti set b0='XB02MJ4ICXBRV3VV' where id=3; -update noar tt set v0='FUECLF2I8' where id=3; -update noar ti set v0='FUECLF2I8' where id=3; -update noar tt set b1='J' where id=3; -update noar ti set b1='J' where id=3; -update noar tt set v0='H6YTR6XT4KTYNJII' where id=3; -update noar ti set v0='H6YTR6XT4KTYNJII' where id=3; -update noar tt set b2='76GPQ2RSIC6QAS74K1Z491W6' where id=3; -update noar ti set b2='76GPQ2RSIC6QAS74K1Z491W6' where id=3; -update noar tt set v0='01JE4D8TM216PN4LKRC6OJ2R4RQ6PWC' where id=4; -update noar ti set v0='01JE4D8TM216PN4LKRC6OJ2R4RQ6PWC' where id=4; -update noar tt set b0='FZ6ROIOL' where id=4; -update noar ti set b0='FZ6ROIOL' where id=4; -update noar tt set v0='SDEGGDYRK7507WI2YMX0H' where id=4; -update noar ti set v0='SDEGGDYRK7507WI2YMX0H' where id=4; -update noar tt set b1='V712HMILEG2H' where id=4; -update noar ti set b1='V712HMILEG2H' where id=4; -update noar tt set v0='XAHGN' where id=4; -update noar ti set v0='XAHGN' where id=4; -update noar tt set b2='RD4MIT78' where id=4; -update noar ti set b2='RD4MIT78' where id=4; -update noar tt set v0='61D9790SJYM01MY' where id=5; -update noar ti set v0='61D9790SJYM01MY' where id=5; -update noar tt set b0='64WWSHKCKQZOF6BXS1Q' where id=5; -update noar ti set b0='64WWSHKCKQZOF6BXS1Q' where id=5; -update noar tt set v0='ZPKXSNHNL3G36FYF3LRLZ7' where id=5; -update noar ti set v0='ZPKXSNHNL3G36FYF3LRLZ7' where id=5; -update noar tt set b1='XODEY' where id=5; -update noar ti set b1='XODEY' where id=5; -update noar tt set v0='Z6Q5JV9RJ' where id=5; -update noar ti set v0='Z6Q5JV9RJ' where id=5; -update noar tt set b2='3F2Y' where id=5; -update noar ti set b2='3F2Y' where id=5; -update noar tt set v0='GKP57TE04U' where id=6; -update noar ti set v0='GKP57TE04U' where id=6; -update noar tt set b0='BN42QNST97TY1IEL67IBQSMR9K8J' where id=6; -update noar ti set b0='BN42QNST97TY1IEL67IBQSMR9K8J' where id=6; -update noar tt set v0='UYJ7H577BH85MWIKC' where id=6; -update noar ti set v0='UYJ7H577BH85MWIKC' where id=6; -update noar tt set b1='NG051CTO4TBVZKI4IMHVDX90DGWQ4NAM' where id=6; -update noar ti set b1='NG051CTO4TBVZKI4IMHVDX90DGWQ4NAM' where id=6; -update noar tt set v0='VTT4CEHEGQWXUJ' where id=6; -update noar ti set v0='VTT4CEHEGQWXUJ' where id=6; -update noar tt set b2='CKK2F' where id=6; -update noar ti set b2='CKK2F' where id=6; -update noar tt set v0='Q' where id=7; -update noar ti set v0='Q' where id=7; -update noar tt set b0='VBDD3FGRLSOJ4XGUZ088R3C' where id=7; -update noar ti set b0='VBDD3FGRLSOJ4XGUZ088R3C' where id=7; -update noar tt set v0='YNVNV1I56VEM2D31E6X2H2' where id=7; -update noar ti set v0='YNVNV1I56VEM2D31E6X2H2' where id=7; -update noar tt set b1='PD8IBJQVWZ098IJD' where id=7; -update noar ti set b1='PD8IBJQVWZ098IJD' where id=7; -update noar tt set v0='A2FYME7YXM5ZSZZANJ1TW3LI27RZ' where id=7; -update noar ti set v0='A2FYME7YXM5ZSZZANJ1TW3LI27RZ' where id=7; -update noar tt set b2='YAQUYE7NZJO0ISVQYZF4ST7LJVOAOD2' where id=7; -update noar ti set b2='YAQUYE7NZJO0ISVQYZF4ST7LJVOAOD2' where id=7; -update noar tt set v0='RHPNSAHA00OBP9O410X1J9MOCMEFEB' where id=8; -update noar ti set v0='RHPNSAHA00OBP9O410X1J9MOCMEFEB' where id=8; -update noar tt set b0='5GNSKEP4QOYWGWB1E9E0X4G6I8ATPQ' where id=8; -update noar ti set b0='5GNSKEP4QOYWGWB1E9E0X4G6I8ATPQ' where id=8; -update noar tt set v0='G12FLSA31' where id=8; -update noar ti set v0='G12FLSA31' where id=8; -update noar tt set b1='VL70WN5HM02I05MUX9BZ33I6AI5QIA' where id=8; -update noar ti set b1='VL70WN5HM02I05MUX9BZ33I6AI5QIA' where id=8; -update noar tt set v0='C8J5WQW' where id=8; -update noar ti set v0='C8J5WQW' where id=8; -update noar tt set b2='ZL58PNX8M4EYFH7MVZJL3GYS73W3' where id=8; -update noar ti set b2='ZL58PNX8M4EYFH7MVZJL3GYS73W3' where id=8; -update noar tt set v0='9BF8O69YBTF7LBL9A' where id=9; -update noar ti set v0='9BF8O69YBTF7LBL9A' where id=9; -update noar tt set b0='L381608G9R6IDQCKP' where id=9; -update noar ti set b0='L381608G9R6IDQCKP' where id=9; -update noar tt set v0='CHIRGZUA' where id=9; -update noar ti set v0='CHIRGZUA' where id=9; -update noar tt set b1='YK5IQS' where id=9; -update noar ti set b1='YK5IQS' where id=9; -update noar tt set v0='VAGEWP3DF1QNWH' where id=9; -update noar ti set v0='VAGEWP3DF1QNWH' where id=9; -update noar tt set b2='EEXAQOWD89IMT47' where id=9; -update noar ti set b2='EEXAQOWD89IMT47' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - v0 varchar(256) not null, - b0 tinyblob not null, - b1 blob not null, - b2 longblob not null -) engine=tokudb; -insert into tt values (1,'','','',''); -insert into tt values (2,'','','',''); -insert into tt values (3,'','','',''); -insert into tt values (4,'','','',''); -insert into tt values (5,'','','',''); -insert into tt values (6,'','','',''); -insert into tt values (7,'','','',''); -insert into tt values (8,'','','',''); -insert into tt values (9,'','','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='0BB' where id=1; -update noar ti set v0='0BB' where id=1; -update noar tt set b0='RAHWAQAPLY' where id=1; -update noar ti set b0='RAHWAQAPLY' where id=1; -update noar tt set v0='Y5Z11UQVE90O73DMDKMDQZ9932OF' where id=1; -update noar ti set v0='Y5Z11UQVE90O73DMDKMDQZ9932OF' where id=1; -update noar tt set b1='QUPOF3KAJQB18OAARBVLNV52VX0R' where id=1; -update noar ti set b1='QUPOF3KAJQB18OAARBVLNV52VX0R' where id=1; -update noar tt set v0='PLF4U2B0ISP' where id=1; -update noar ti set v0='PLF4U2B0ISP' where id=1; -update noar tt set b2='FAYV' where id=1; -update noar ti set b2='FAYV' where id=1; -update noar tt set v0='G8WT62HP' where id=2; -update noar ti set v0='G8WT62HP' where id=2; -update noar tt set b0='7PZG3BXRNKKAIITYMSEBE0' where id=2; -update noar ti set b0='7PZG3BXRNKKAIITYMSEBE0' where id=2; -update noar tt set v0='91QS87M6T0WNUR0E2K2PHM' where id=2; -update noar ti set v0='91QS87M6T0WNUR0E2K2PHM' where id=2; -update noar tt set b1='GP1FH3JDOTH6HREGRS20KXB0L8' where id=2; -update noar ti set b1='GP1FH3JDOTH6HREGRS20KXB0L8' where id=2; -update noar tt set v0='B28RHH69' where id=2; -update noar ti set v0='B28RHH69' where id=2; -update noar tt set b2='7CO8IXI' where id=2; -update noar ti set b2='7CO8IXI' where id=2; -update noar tt set v0='XWZY' where id=3; -update noar ti set v0='XWZY' where id=3; -update noar tt set b0='N1CPEDG83RGBU517ZLCZ2HKRR4SRPE7' where id=3; -update noar ti set b0='N1CPEDG83RGBU517ZLCZ2HKRR4SRPE7' where id=3; -update noar tt set v0='BU4K6E' where id=3; -update noar ti set v0='BU4K6E' where id=3; -update noar tt set b1='PE7DE5GB4SV60A2QN8JOWK9' where id=3; -update noar ti set b1='PE7DE5GB4SV60A2QN8JOWK9' where id=3; -update noar tt set v0='WOSLQIOTD9O5ZSAI174CLI0' where id=3; -update noar ti set v0='WOSLQIOTD9O5ZSAI174CLI0' where id=3; -update noar tt set b2='QUZM4G15GGJBRWV8R' where id=3; -update noar ti set b2='QUZM4G15GGJBRWV8R' where id=3; -update noar tt set v0='3UC521OAT0HPH4GN3ATKW' where id=4; -update noar ti set v0='3UC521OAT0HPH4GN3ATKW' where id=4; -update noar tt set b0='PT8GXTAETOFR7PLG1VGVGHHHEAST7TBL' where id=4; -update noar ti set b0='PT8GXTAETOFR7PLG1VGVGHHHEAST7TBL' where id=4; -update noar tt set v0='8ZWM2GJOHDWHCKBH3' where id=4; -update noar ti set v0='8ZWM2GJOHDWHCKBH3' where id=4; -update noar tt set b1='DC8J' where id=4; -update noar ti set b1='DC8J' where id=4; -update noar tt set v0='Y1H2ODQEN8FGI' where id=4; -update noar ti set v0='Y1H2ODQEN8FGI' where id=4; -update noar tt set b2='O7UF5AZB0N55YEL' where id=4; -update noar ti set b2='O7UF5AZB0N55YEL' where id=4; -update noar tt set v0='893J' where id=5; -update noar ti set v0='893J' where id=5; -update noar tt set b0='NWEB79GK3UI7V4EKQ7DOASKEPN8' where id=5; -update noar ti set b0='NWEB79GK3UI7V4EKQ7DOASKEPN8' where id=5; -update noar tt set v0='AICZWHML3DUWP2JSVJVIRSO2EIRYZ' where id=5; -update noar ti set v0='AICZWHML3DUWP2JSVJVIRSO2EIRYZ' where id=5; -update noar tt set b1='YYTOOYAM6R7GU4CK7OQ3' where id=5; -update noar ti set b1='YYTOOYAM6R7GU4CK7OQ3' where id=5; -update noar tt set v0='H2F3P3ZS0LRVBQJI23IMZQ87YIDJJM2U' where id=5; -update noar ti set v0='H2F3P3ZS0LRVBQJI23IMZQ87YIDJJM2U' where id=5; -update noar tt set b2='46UWSUOQSFJ64PCHG27' where id=5; -update noar ti set b2='46UWSUOQSFJ64PCHG27' where id=5; -update noar tt set v0='KBWZG5UTAYCOO6526' where id=6; -update noar ti set v0='KBWZG5UTAYCOO6526' where id=6; -update noar tt set b0='24JYI5EN047PAI822KWS6NMP2SVA98' where id=6; -update noar ti set b0='24JYI5EN047PAI822KWS6NMP2SVA98' where id=6; -update noar tt set v0='WRXYCV4QUP1SOI295' where id=6; -update noar ti set v0='WRXYCV4QUP1SOI295' where id=6; -update noar tt set b1='4E3U0TRQ1J4ZLOQDQAA0JVHUB' where id=6; -update noar ti set b1='4E3U0TRQ1J4ZLOQDQAA0JVHUB' where id=6; -update noar tt set v0='JWPPIHS35A0J5U2' where id=6; -update noar ti set v0='JWPPIHS35A0J5U2' where id=6; -update noar tt set b2='R' where id=6; -update noar ti set b2='R' where id=6; -update noar tt set v0='RO' where id=7; -update noar ti set v0='RO' where id=7; -update noar tt set b0='3LK3RIXCXOOZ' where id=7; -update noar ti set b0='3LK3RIXCXOOZ' where id=7; -update noar tt set v0='13RE7097I9ANKTNL7HL2GX7TPI' where id=7; -update noar ti set v0='13RE7097I9ANKTNL7HL2GX7TPI' where id=7; -update noar tt set b1='A14PM37J551W618' where id=7; -update noar ti set b1='A14PM37J551W618' where id=7; -update noar tt set v0='W7MC795WIUO7A5UF49QRTTZPOM3C' where id=7; -update noar ti set v0='W7MC795WIUO7A5UF49QRTTZPOM3C' where id=7; -update noar tt set b2='CPBOPLQK8XC' where id=7; -update noar ti set b2='CPBOPLQK8XC' where id=7; -update noar tt set v0='S051FCY2VSI1MHILLJNU5EJ38TR' where id=8; -update noar ti set v0='S051FCY2VSI1MHILLJNU5EJ38TR' where id=8; -update noar tt set b0='MSW' where id=8; -update noar ti set b0='MSW' where id=8; -update noar tt set v0='WDZ5D7EP4NLWKUOKY5SN1DZXXB8E4' where id=8; -update noar ti set v0='WDZ5D7EP4NLWKUOKY5SN1DZXXB8E4' where id=8; -update noar tt set b1='IA' where id=8; -update noar ti set b1='IA' where id=8; -update noar tt set v0='ACBYUD17E6Q5E' where id=8; -update noar ti set v0='ACBYUD17E6Q5E' where id=8; -update noar tt set b2='4M31GTY9G4OZR1YCATFNB' where id=8; -update noar ti set b2='4M31GTY9G4OZR1YCATFNB' where id=8; -update noar tt set v0='BMT3CR6T' where id=9; -update noar ti set v0='BMT3CR6T' where id=9; -update noar tt set b0='HKBPON1MWH' where id=9; -update noar ti set b0='HKBPON1MWH' where id=9; -update noar tt set v0='NWU3' where id=9; -update noar ti set v0='NWU3' where id=9; -update noar tt set b1='EX0LFK3' where id=9; -update noar ti set b1='EX0LFK3' where id=9; -update noar tt set v0='YTHC79D5I4WVO9FH' where id=9; -update noar ti set v0='YTHC79D5I4WVO9FH' where id=9; -update noar tt set b2='U00GJFWOZ2SAYZT4N2' where id=9; -update noar ti set b2='U00GJFWOZ2SAYZT4N2' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - v0 varchar(32) null, - b0 tinyblob null, - b1 mediumblob null, - b2 tinyblob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='HM' where id=1; -update noar ti set v0='HM' where id=1; -update noar tt set b0='8BTHL' where id=1; -update noar ti set b0='8BTHL' where id=1; -update noar tt set v0='8MKDG23NFZLJWTF' where id=1; -update noar ti set v0='8MKDG23NFZLJWTF' where id=1; -update noar tt set b1='KIMS0DA175NQ05ORSYNQ3QRW23G4' where id=1; -update noar ti set b1='KIMS0DA175NQ05ORSYNQ3QRW23G4' where id=1; -update noar tt set v0='ZBTEB4ULU8EOZZPPG9' where id=1; -update noar ti set v0='ZBTEB4ULU8EOZZPPG9' where id=1; -update noar tt set b2='V3RNJPQ' where id=1; -update noar ti set b2='V3RNJPQ' where id=1; -update noar tt set v0='2U3QNSF5ZW5VHE0EP08G8NR2IVS3' where id=2; -update noar ti set v0='2U3QNSF5ZW5VHE0EP08G8NR2IVS3' where id=2; -update noar tt set b0='5CF5WFDWFEFMIHX6KMR3PQR1LZQ' where id=2; -update noar ti set b0='5CF5WFDWFEFMIHX6KMR3PQR1LZQ' where id=2; -update noar tt set v0='NG19R' where id=2; -update noar ti set v0='NG19R' where id=2; -update noar tt set b1='QYE4IM2KIEKLG6KZAZKPF46' where id=2; -update noar ti set b1='QYE4IM2KIEKLG6KZAZKPF46' where id=2; -update noar tt set v0='55114R43T0ERGU93MFTRC9' where id=2; -update noar ti set v0='55114R43T0ERGU93MFTRC9' where id=2; -update noar tt set b2='1LGJ' where id=2; -update noar ti set b2='1LGJ' where id=2; -update noar tt set v0='1RZMQ8X' where id=3; -update noar ti set v0='1RZMQ8X' where id=3; -update noar tt set b0='LCM3QDM77M56YCHKH' where id=3; -update noar ti set b0='LCM3QDM77M56YCHKH' where id=3; -update noar tt set v0='DSYQ2ECLVV5P' where id=3; -update noar ti set v0='DSYQ2ECLVV5P' where id=3; -update noar tt set b1='DNZZAGL1HEUPOUGCDHZ0I7PJQUKX' where id=3; -update noar ti set b1='DNZZAGL1HEUPOUGCDHZ0I7PJQUKX' where id=3; -update noar tt set v0='NEUT73' where id=3; -update noar ti set v0='NEUT73' where id=3; -update noar tt set b2='45TSMC6UZN9FH2NLRES8QJM' where id=3; -update noar ti set b2='45TSMC6UZN9FH2NLRES8QJM' where id=3; -update noar tt set v0='6TTHF46W58QLZVVHODB' where id=4; -update noar ti set v0='6TTHF46W58QLZVVHODB' where id=4; -update noar tt set b0='KWH1KZX0XP5' where id=4; -update noar ti set b0='KWH1KZX0XP5' where id=4; -update noar tt set v0='0PC98G0EA3NA9P5WGPXP' where id=4; -update noar ti set v0='0PC98G0EA3NA9P5WGPXP' where id=4; -update noar tt set b1='BIJULJHMJNM74D0J6IZ0XD33' where id=4; -update noar ti set b1='BIJULJHMJNM74D0J6IZ0XD33' where id=4; -update noar tt set v0='UL9YLYH777C1IS23VK11D2UL7' where id=4; -update noar ti set v0='UL9YLYH777C1IS23VK11D2UL7' where id=4; -update noar tt set b2='6' where id=4; -update noar ti set b2='6' where id=4; -update noar tt set v0='Q26V9LP3493G' where id=5; -update noar ti set v0='Q26V9LP3493G' where id=5; -update noar tt set b0='GQ73ASURRUXH6KE3S3QDT' where id=5; -update noar ti set b0='GQ73ASURRUXH6KE3S3QDT' where id=5; -update noar tt set v0='GV7EOXB4YN6' where id=5; -update noar ti set v0='GV7EOXB4YN6' where id=5; -update noar tt set b1='FCAC31GCZROZ8P4YKU53KO02EGSOBS' where id=5; -update noar ti set b1='FCAC31GCZROZ8P4YKU53KO02EGSOBS' where id=5; -update noar tt set v0='93' where id=5; -update noar ti set v0='93' where id=5; -update noar tt set b2='D2IKRWKYI6UO0TTD0Q4I14KGMY' where id=5; -update noar ti set b2='D2IKRWKYI6UO0TTD0Q4I14KGMY' where id=5; -update noar tt set v0='TX7X08IQOJ3ZS3VZ' where id=6; -update noar ti set v0='TX7X08IQOJ3ZS3VZ' where id=6; -update noar tt set b0='MC9K' where id=6; -update noar ti set b0='MC9K' where id=6; -update noar tt set v0='ZG' where id=6; -update noar ti set v0='ZG' where id=6; -update noar tt set b1='2OFU' where id=6; -update noar ti set b1='2OFU' where id=6; -update noar tt set v0='07ZKU6QIAYFMUEWIR3' where id=6; -update noar ti set v0='07ZKU6QIAYFMUEWIR3' where id=6; -update noar tt set b2='RRPRZDG0LHEF5B5W7IPDCJB' where id=6; -update noar ti set b2='RRPRZDG0LHEF5B5W7IPDCJB' where id=6; -update noar tt set v0='6BN58TNZF9KZXT42QTNVKTJKLZF1J' where id=7; -update noar ti set v0='6BN58TNZF9KZXT42QTNVKTJKLZF1J' where id=7; -update noar tt set b0='5O2YQEK9AI2620ER86CY44CZNTNZM432' where id=7; -update noar ti set b0='5O2YQEK9AI2620ER86CY44CZNTNZM432' where id=7; -update noar tt set v0='ZZO2E' where id=7; -update noar ti set v0='ZZO2E' where id=7; -update noar tt set b1='JYOKZLILZV2CVJG5ETY0W8GQZM4A' where id=7; -update noar ti set b1='JYOKZLILZV2CVJG5ETY0W8GQZM4A' where id=7; -update noar tt set v0='1FE5KOFQH' where id=7; -update noar ti set v0='1FE5KOFQH' where id=7; -update noar tt set b2='KIAFNJQOWN4' where id=7; -update noar ti set b2='KIAFNJQOWN4' where id=7; -update noar tt set v0='KLEB57PH6' where id=8; -update noar ti set v0='KLEB57PH6' where id=8; -update noar tt set b0='UK1624XW6PA19BJRGEXG0EEYOKTBU' where id=8; -update noar ti set b0='UK1624XW6PA19BJRGEXG0EEYOKTBU' where id=8; -update noar tt set v0='OUBBH5KT8IUEACEI19XSKBRZYSCXTBB' where id=8; -update noar ti set v0='OUBBH5KT8IUEACEI19XSKBRZYSCXTBB' where id=8; -update noar tt set b1='Q0QSXIQRRJ9D' where id=8; -update noar ti set b1='Q0QSXIQRRJ9D' where id=8; -update noar tt set v0='HUY5N13QZKGIEXYIFPZQWB8D' where id=8; -update noar ti set v0='HUY5N13QZKGIEXYIFPZQWB8D' where id=8; -update noar tt set b2='Z862C6BE33SV6SK923PFT9EPE6V' where id=8; -update noar ti set b2='Z862C6BE33SV6SK923PFT9EPE6V' where id=8; -update noar tt set v0='SKPQKSXDULQHF6ZAKR6X99PF9FRWQ' where id=9; -update noar ti set v0='SKPQKSXDULQHF6ZAKR6X99PF9FRWQ' where id=9; -update noar tt set b0='9TUB5PX90' where id=9; -update noar ti set b0='9TUB5PX90' where id=9; -update noar tt set v0='XG2KJ2V9QU1Q1ET0T67H06' where id=9; -update noar ti set v0='XG2KJ2V9QU1Q1ET0T67H06' where id=9; -update noar tt set b1='Q865T' where id=9; -update noar ti set b1='Q865T' where id=9; -update noar tt set v0='XYWSGSEDR' where id=9; -update noar ti set v0='XYWSGSEDR' where id=9; -update noar tt set b2='08C5LC3LSYJ44LJRYVF95W' where id=9; -update noar ti set b2='08C5LC3LSYJ44LJRYVF95W' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - v0 varchar(256) null, - b0 tinyblob null, - b1 mediumblob null, - b2 tinyblob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='Z6MC9LT99X1' where id=1; -update noar ti set v0='Z6MC9LT99X1' where id=1; -update noar tt set b0='XH300J6J983' where id=1; -update noar ti set b0='XH300J6J983' where id=1; -update noar tt set v0='88SON644E4G96H7MEEI8NCP06GMD' where id=1; -update noar ti set v0='88SON644E4G96H7MEEI8NCP06GMD' where id=1; -update noar tt set b1='5G3XFS2ECEYA56A7I82L8E9WUQOOF' where id=1; -update noar ti set b1='5G3XFS2ECEYA56A7I82L8E9WUQOOF' where id=1; -update noar tt set v0='8' where id=1; -update noar ti set v0='8' where id=1; -update noar tt set b2='5Z7PQTNT269JKJFY' where id=1; -update noar ti set b2='5Z7PQTNT269JKJFY' where id=1; -update noar tt set v0='PX1BAY' where id=2; -update noar ti set v0='PX1BAY' where id=2; -update noar tt set b0='08KOGS1P' where id=2; -update noar ti set b0='08KOGS1P' where id=2; -update noar tt set v0='QB3R1ZXJNNW69U7TR90FSHR' where id=2; -update noar ti set v0='QB3R1ZXJNNW69U7TR90FSHR' where id=2; -update noar tt set b1='LCQ8H6PHSUHY1V0RD6Y81NP0' where id=2; -update noar ti set b1='LCQ8H6PHSUHY1V0RD6Y81NP0' where id=2; -update noar tt set v0='EBYVS' where id=2; -update noar ti set v0='EBYVS' where id=2; -update noar tt set b2='4' where id=2; -update noar ti set b2='4' where id=2; -update noar tt set v0='XN8LK4RS3KTBU3Y07PZFLAKY744TI' where id=3; -update noar ti set v0='XN8LK4RS3KTBU3Y07PZFLAKY744TI' where id=3; -update noar tt set b0='XRCE' where id=3; -update noar ti set b0='XRCE' where id=3; -update noar tt set v0='9WQ3B9IAH8AD86' where id=3; -update noar ti set v0='9WQ3B9IAH8AD86' where id=3; -update noar tt set b1='RRAQC9JPMHK49UWVUITTPQ1O342XBBT' where id=3; -update noar ti set b1='RRAQC9JPMHK49UWVUITTPQ1O342XBBT' where id=3; -update noar tt set v0='C85XJ0NOL3WR' where id=3; -update noar ti set v0='C85XJ0NOL3WR' where id=3; -update noar tt set b2='7QQL' where id=3; -update noar ti set b2='7QQL' where id=3; -update noar tt set v0='QTLY6SIZF' where id=4; -update noar ti set v0='QTLY6SIZF' where id=4; -update noar tt set b0='D0TOKZ1M16Z7' where id=4; -update noar ti set b0='D0TOKZ1M16Z7' where id=4; -update noar tt set v0='1L5XMGZZ47' where id=4; -update noar ti set v0='1L5XMGZZ47' where id=4; -update noar tt set b1='JDBMWJ0585Q77MK3YPK' where id=4; -update noar ti set b1='JDBMWJ0585Q77MK3YPK' where id=4; -update noar tt set v0='O6' where id=4; -update noar ti set v0='O6' where id=4; -update noar tt set b2='JKE56' where id=4; -update noar ti set b2='JKE56' where id=4; -update noar tt set v0='N9Y' where id=5; -update noar ti set v0='N9Y' where id=5; -update noar tt set b0='RDO23FKPMW15RZ81UYW58Z2EA08VMF1' where id=5; -update noar ti set b0='RDO23FKPMW15RZ81UYW58Z2EA08VMF1' where id=5; -update noar tt set v0='CZMC02JSH2BT' where id=5; -update noar ti set v0='CZMC02JSH2BT' where id=5; -update noar tt set b1='QRX8SF' where id=5; -update noar ti set b1='QRX8SF' where id=5; -update noar tt set v0='05' where id=5; -update noar ti set v0='05' where id=5; -update noar tt set b2='QQ13I1WU5NZUCD4ETTYRTBD02HBXJCL' where id=5; -update noar ti set b2='QQ13I1WU5NZUCD4ETTYRTBD02HBXJCL' where id=5; -update noar tt set v0='YZ17Q07M0GS2KFK0AW84OWMQ14QF70' where id=6; -update noar ti set v0='YZ17Q07M0GS2KFK0AW84OWMQ14QF70' where id=6; -update noar tt set b0='2MWU5XMKQL' where id=6; -update noar ti set b0='2MWU5XMKQL' where id=6; -update noar tt set v0='85JRDBCM0LJQL6JCWZ2' where id=6; -update noar ti set v0='85JRDBCM0LJQL6JCWZ2' where id=6; -update noar tt set b1='QQVP7' where id=6; -update noar ti set b1='QQVP7' where id=6; -update noar tt set v0='EDXRUA6IT09DJ39' where id=6; -update noar ti set v0='EDXRUA6IT09DJ39' where id=6; -update noar tt set b2='CGC1UB1ATAH4VPP4C8FZCGNL0I' where id=6; -update noar ti set b2='CGC1UB1ATAH4VPP4C8FZCGNL0I' where id=6; -update noar tt set v0='GRN82' where id=7; -update noar ti set v0='GRN82' where id=7; -update noar tt set b0='2JHJJXG7F1WY5JVNPD0UT' where id=7; -update noar ti set b0='2JHJJXG7F1WY5JVNPD0UT' where id=7; -update noar tt set v0='Q38P61LQISWWP8LV7' where id=7; -update noar ti set v0='Q38P61LQISWWP8LV7' where id=7; -update noar tt set b1='94INXVGRQH' where id=7; -update noar ti set b1='94INXVGRQH' where id=7; -update noar tt set v0='D8R2GJU0FJAJN4MK4V20RVWK4C9' where id=7; -update noar ti set v0='D8R2GJU0FJAJN4MK4V20RVWK4C9' where id=7; -update noar tt set b2='0VLKQ2' where id=7; -update noar ti set b2='0VLKQ2' where id=7; -update noar tt set v0='G7WKORB811774EKUZNLCC8' where id=8; -update noar ti set v0='G7WKORB811774EKUZNLCC8' where id=8; -update noar tt set b0='E37LJNWMFVSKSW5JOQK4PHY2P' where id=8; -update noar ti set b0='E37LJNWMFVSKSW5JOQK4PHY2P' where id=8; -update noar tt set v0='JHDQ3' where id=8; -update noar ti set v0='JHDQ3' where id=8; -update noar tt set b1='XEXH725N652DIPRV8S2E6' where id=8; -update noar ti set b1='XEXH725N652DIPRV8S2E6' where id=8; -update noar tt set v0='17SSPHKD6' where id=8; -update noar ti set v0='17SSPHKD6' where id=8; -update noar tt set b2='EJ4RS6PTXPELYS3PFPDLWGKC1KYKZ5PM' where id=8; -update noar ti set b2='EJ4RS6PTXPELYS3PFPDLWGKC1KYKZ5PM' where id=8; -update noar tt set v0='R' where id=9; -update noar ti set v0='R' where id=9; -update noar tt set b0='961GDPZS7WIZKYITDUK4HYE6D' where id=9; -update noar ti set b0='961GDPZS7WIZKYITDUK4HYE6D' where id=9; -update noar tt set v0='2R7QAR7R1FCONMD6YUMYIN2OUSQMIFR' where id=9; -update noar ti set v0='2R7QAR7R1FCONMD6YUMYIN2OUSQMIFR' where id=9; -update noar tt set b1='9' where id=9; -update noar ti set b1='9' where id=9; -update noar tt set v0='I' where id=9; -update noar ti set v0='I' where id=9; -update noar tt set b2='N' where id=9; -update noar ti set b2='N' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - v0 varchar(32) not null, - b0 tinyblob not null, - b1 mediumblob not null, - b2 tinyblob not null -) engine=tokudb; -insert into tt values (1,'','','',''); -insert into tt values (2,'','','',''); -insert into tt values (3,'','','',''); -insert into tt values (4,'','','',''); -insert into tt values (5,'','','',''); -insert into tt values (6,'','','',''); -insert into tt values (7,'','','',''); -insert into tt values (8,'','','',''); -insert into tt values (9,'','','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='KTZX79UNGPJHNIIQ9NBU285A3W4KQ7Y' where id=1; -update noar ti set v0='KTZX79UNGPJHNIIQ9NBU285A3W4KQ7Y' where id=1; -update noar tt set b0='L8OV1JXWHLBR7H9576' where id=1; -update noar ti set b0='L8OV1JXWHLBR7H9576' where id=1; -update noar tt set v0='BMTDO6CDG' where id=1; -update noar ti set v0='BMTDO6CDG' where id=1; -update noar tt set b1='G8G9M2ZM4C3WFQD9FHNK66' where id=1; -update noar ti set b1='G8G9M2ZM4C3WFQD9FHNK66' where id=1; -update noar tt set v0='6WJ02TMOVO32R95I' where id=1; -update noar ti set v0='6WJ02TMOVO32R95I' where id=1; -update noar tt set b2='CA4T8CJO3ZMM' where id=1; -update noar ti set b2='CA4T8CJO3ZMM' where id=1; -update noar tt set v0='5DT354L8FC3BFSXKG9169LHKG0YD1I' where id=2; -update noar ti set v0='5DT354L8FC3BFSXKG9169LHKG0YD1I' where id=2; -update noar tt set b0='ZECK6DC4' where id=2; -update noar ti set b0='ZECK6DC4' where id=2; -update noar tt set v0='7GFA42TD4OCU11UO9CGY' where id=2; -update noar ti set v0='7GFA42TD4OCU11UO9CGY' where id=2; -update noar tt set b1='ZM5ZPICCCSBMA3KWU13BI2W9' where id=2; -update noar ti set b1='ZM5ZPICCCSBMA3KWU13BI2W9' where id=2; -update noar tt set v0='UKTDWU3SXB93EO6V6' where id=2; -update noar ti set v0='UKTDWU3SXB93EO6V6' where id=2; -update noar tt set b2='4YHT022F' where id=2; -update noar ti set b2='4YHT022F' where id=2; -update noar tt set v0='F6O793' where id=3; -update noar ti set v0='F6O793' where id=3; -update noar tt set b0='VMG89W04EG' where id=3; -update noar ti set b0='VMG89W04EG' where id=3; -update noar tt set v0='QD3F837L3TVXN1O15DWFOZLGKG9G9SQ3' where id=3; -update noar ti set v0='QD3F837L3TVXN1O15DWFOZLGKG9G9SQ3' where id=3; -update noar tt set b1='QC5XH78HKAO9MPCI' where id=3; -update noar ti set b1='QC5XH78HKAO9MPCI' where id=3; -update noar tt set v0='14QP752GNIIWKY5HS7' where id=3; -update noar ti set v0='14QP752GNIIWKY5HS7' where id=3; -update noar tt set b2='6PK5D4D04TY496F31KB6ZM52BHLY' where id=3; -update noar ti set b2='6PK5D4D04TY496F31KB6ZM52BHLY' where id=3; -update noar tt set v0='E006OJFKG25VG0GJEUO8ZX0SNKFW2M7' where id=4; -update noar ti set v0='E006OJFKG25VG0GJEUO8ZX0SNKFW2M7' where id=4; -update noar tt set b0='A5SAGD2S' where id=4; -update noar ti set b0='A5SAGD2S' where id=4; -update noar tt set v0='ZBPEL52CCNM' where id=4; -update noar ti set v0='ZBPEL52CCNM' where id=4; -update noar tt set b1='4SS9JG9UR325X58OKOHECO8' where id=4; -update noar ti set b1='4SS9JG9UR325X58OKOHECO8' where id=4; -update noar tt set v0='Z5AK5' where id=4; -update noar ti set v0='Z5AK5' where id=4; -update noar tt set b2='CJIDWOHK0Y2GO6CECSZ' where id=4; -update noar ti set b2='CJIDWOHK0Y2GO6CECSZ' where id=4; -update noar tt set v0='1A1H5UE' where id=5; -update noar ti set v0='1A1H5UE' where id=5; -update noar tt set b0='O2UVU2GMCO21CYAM' where id=5; -update noar ti set b0='O2UVU2GMCO21CYAM' where id=5; -update noar tt set v0='666X7Y5VUHBD3AD5U3ZWPVX2H' where id=5; -update noar ti set v0='666X7Y5VUHBD3AD5U3ZWPVX2H' where id=5; -update noar tt set b1='IIM1NKDPK3GSEV7TBO7WTZYK4C9' where id=5; -update noar ti set b1='IIM1NKDPK3GSEV7TBO7WTZYK4C9' where id=5; -update noar tt set v0='NJF06983RRB2PY5GV6O7' where id=5; -update noar ti set v0='NJF06983RRB2PY5GV6O7' where id=5; -update noar tt set b2='6QJF6NRS2YOGCX7Y5IAK31SVKBDTDG' where id=5; -update noar ti set b2='6QJF6NRS2YOGCX7Y5IAK31SVKBDTDG' where id=5; -update noar tt set v0='374FT1FSJBDV' where id=6; -update noar ti set v0='374FT1FSJBDV' where id=6; -update noar tt set b0='AAAHG7SKBXTQQTY2A9DK0WZ4' where id=6; -update noar ti set b0='AAAHG7SKBXTQQTY2A9DK0WZ4' where id=6; -update noar tt set v0='GO5633ADRLSIS1AWT7MMGK' where id=6; -update noar ti set v0='GO5633ADRLSIS1AWT7MMGK' where id=6; -update noar tt set b1='K23CKVW0N0SRYF5ZW066VMXT' where id=6; -update noar ti set b1='K23CKVW0N0SRYF5ZW066VMXT' where id=6; -update noar tt set v0='V1VWDPMOZUILZE1' where id=6; -update noar ti set v0='V1VWDPMOZUILZE1' where id=6; -update noar tt set b2='8JVZFI0KTX' where id=6; -update noar ti set b2='8JVZFI0KTX' where id=6; -update noar tt set v0='IJPPPGATDQ6UKMSZ6Z0EEW7' where id=7; -update noar ti set v0='IJPPPGATDQ6UKMSZ6Z0EEW7' where id=7; -update noar tt set b0='7F5UAY90CRRV7' where id=7; -update noar ti set b0='7F5UAY90CRRV7' where id=7; -update noar tt set v0='LMYWP8RSKQMBR' where id=7; -update noar ti set v0='LMYWP8RSKQMBR' where id=7; -update noar tt set b1='81YYVJGEGLU26XBSSJ49F1G28L0HA' where id=7; -update noar ti set b1='81YYVJGEGLU26XBSSJ49F1G28L0HA' where id=7; -update noar tt set v0='C' where id=7; -update noar ti set v0='C' where id=7; -update noar tt set b2='01DEHIO31S5B9OW1H2T940Z6TWPC9GG' where id=7; -update noar ti set b2='01DEHIO31S5B9OW1H2T940Z6TWPC9GG' where id=7; -update noar tt set v0='UCLCK3VH2INBS75R1F1E8D6DRCT' where id=8; -update noar ti set v0='UCLCK3VH2INBS75R1F1E8D6DRCT' where id=8; -update noar tt set b0='C150BK9GYYUZO870ALT' where id=8; -update noar ti set b0='C150BK9GYYUZO870ALT' where id=8; -update noar tt set v0='JRAA20' where id=8; -update noar ti set v0='JRAA20' where id=8; -update noar tt set b1='FER8Z8XSFGMX' where id=8; -update noar ti set b1='FER8Z8XSFGMX' where id=8; -update noar tt set v0='S40MUZ2NBKUN97CE5B3UU0MCX4W9R22' where id=8; -update noar ti set v0='S40MUZ2NBKUN97CE5B3UU0MCX4W9R22' where id=8; -update noar tt set b2='8' where id=8; -update noar ti set b2='8' where id=8; -update noar tt set v0='24JFCJ1PFNS8QB5PMTH88ACJV0W' where id=9; -update noar ti set v0='24JFCJ1PFNS8QB5PMTH88ACJV0W' where id=9; -update noar tt set b0='8DKBV5L70PQMGFNPJ2RFDZT' where id=9; -update noar ti set b0='8DKBV5L70PQMGFNPJ2RFDZT' where id=9; -update noar tt set v0='AHTWSYB5QRTCR2RZSCF5M' where id=9; -update noar ti set v0='AHTWSYB5QRTCR2RZSCF5M' where id=9; -update noar tt set b1='KCKWGGMMQG578CJCZC3TFXGKM09246Y7' where id=9; -update noar ti set b1='KCKWGGMMQG578CJCZC3TFXGKM09246Y7' where id=9; -update noar tt set v0='UWBS48E3KSC22R' where id=9; -update noar ti set v0='UWBS48E3KSC22R' where id=9; -update noar tt set b2='2H5FQ97DBTT304Q6SS' where id=9; -update noar ti set b2='2H5FQ97DBTT304Q6SS' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - v0 varchar(256) not null, - b0 tinyblob not null, - b1 mediumblob not null, - b2 tinyblob not null -) engine=tokudb; -insert into tt values (1,'','','',''); -insert into tt values (2,'','','',''); -insert into tt values (3,'','','',''); -insert into tt values (4,'','','',''); -insert into tt values (5,'','','',''); -insert into tt values (6,'','','',''); -insert into tt values (7,'','','',''); -insert into tt values (8,'','','',''); -insert into tt values (9,'','','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='IK3O4OZPGR67G8R8' where id=1; -update noar ti set v0='IK3O4OZPGR67G8R8' where id=1; -update noar tt set b0='ZI7HHGFTCEPLVP' where id=1; -update noar ti set b0='ZI7HHGFTCEPLVP' where id=1; -update noar tt set v0='HLBEUE4BXWEHNF53' where id=1; -update noar ti set v0='HLBEUE4BXWEHNF53' where id=1; -update noar tt set b1='UKJ5BRPH03SU' where id=1; -update noar ti set b1='UKJ5BRPH03SU' where id=1; -update noar tt set v0='B2' where id=1; -update noar ti set v0='B2' where id=1; -update noar tt set b2='9BMFN46L962BOZ7RBPMJGJ7R1TEN1' where id=1; -update noar ti set b2='9BMFN46L962BOZ7RBPMJGJ7R1TEN1' where id=1; -update noar tt set v0='4RDXRJKV576C9LY' where id=2; -update noar ti set v0='4RDXRJKV576C9LY' where id=2; -update noar tt set b0='L8IIOXUHR8N3AVSF0ESD97W' where id=2; -update noar ti set b0='L8IIOXUHR8N3AVSF0ESD97W' where id=2; -update noar tt set v0='L45U12VZZ5L4HONYU' where id=2; -update noar ti set v0='L45U12VZZ5L4HONYU' where id=2; -update noar tt set b1='BXLHX1U5AYX2ZU6KHV' where id=2; -update noar ti set b1='BXLHX1U5AYX2ZU6KHV' where id=2; -update noar tt set v0='1U8ZW9O8Q' where id=2; -update noar ti set v0='1U8ZW9O8Q' where id=2; -update noar tt set b2='UR03VNA1FPJZ6' where id=2; -update noar ti set b2='UR03VNA1FPJZ6' where id=2; -update noar tt set v0='KMJDBR2X0S0U0CF3YKCBNN4BLZDI3' where id=3; -update noar ti set v0='KMJDBR2X0S0U0CF3YKCBNN4BLZDI3' where id=3; -update noar tt set b0='TMSD6CWNR1XIJAO4I82W' where id=3; -update noar ti set b0='TMSD6CWNR1XIJAO4I82W' where id=3; -update noar tt set v0='9YMNI9' where id=3; -update noar ti set v0='9YMNI9' where id=3; -update noar tt set b1='2YCWMLAREXU' where id=3; -update noar ti set b1='2YCWMLAREXU' where id=3; -update noar tt set v0='WCVBE3X4J90UW6RHYORRW6Z' where id=3; -update noar ti set v0='WCVBE3X4J90UW6RHYORRW6Z' where id=3; -update noar tt set b2='ZBM1R2V' where id=3; -update noar ti set b2='ZBM1R2V' where id=3; -update noar tt set v0='5J9AR8JULEFFSQS6KW4SL18X64VF900' where id=4; -update noar ti set v0='5J9AR8JULEFFSQS6KW4SL18X64VF900' where id=4; -update noar tt set b0='P26MAU7NKSX4YTH09U2HUHT20H' where id=4; -update noar ti set b0='P26MAU7NKSX4YTH09U2HUHT20H' where id=4; -update noar tt set v0='HN7S0NKLSVTM' where id=4; -update noar ti set v0='HN7S0NKLSVTM' where id=4; -update noar tt set b1='VPQFB' where id=4; -update noar ti set b1='VPQFB' where id=4; -update noar tt set v0='42' where id=4; -update noar ti set v0='42' where id=4; -update noar tt set b2='94PHMFAZ9SV9KFKNYLWSE3AV0D0NXYZ8' where id=4; -update noar ti set b2='94PHMFAZ9SV9KFKNYLWSE3AV0D0NXYZ8' where id=4; -update noar tt set v0='ST4ZELCMLUY' where id=5; -update noar ti set v0='ST4ZELCMLUY' where id=5; -update noar tt set b0='SHWROHBW2HXJU0NG' where id=5; -update noar ti set b0='SHWROHBW2HXJU0NG' where id=5; -update noar tt set v0='83MLF9TJCUD3XYGD90ICFM7' where id=5; -update noar ti set v0='83MLF9TJCUD3XYGD90ICFM7' where id=5; -update noar tt set b1='SUH7MUQAOWG' where id=5; -update noar ti set b1='SUH7MUQAOWG' where id=5; -update noar tt set v0='X40Y2D' where id=5; -update noar ti set v0='X40Y2D' where id=5; -update noar tt set b2='1TCIELI8ZDSFHHCUBDO' where id=5; -update noar ti set b2='1TCIELI8ZDSFHHCUBDO' where id=5; -update noar tt set v0='WFZV5VX92KQ' where id=6; -update noar ti set v0='WFZV5VX92KQ' where id=6; -update noar tt set b0='D5J0SIX2EPIXF' where id=6; -update noar ti set b0='D5J0SIX2EPIXF' where id=6; -update noar tt set v0='EL7T93UUF2DHFZPG503ES0' where id=6; -update noar ti set v0='EL7T93UUF2DHFZPG503ES0' where id=6; -update noar tt set b1='KNAYRD3KPHE1QM1Y713DNGWJP' where id=6; -update noar ti set b1='KNAYRD3KPHE1QM1Y713DNGWJP' where id=6; -update noar tt set v0='VF8GDPT' where id=6; -update noar ti set v0='VF8GDPT' where id=6; -update noar tt set b2='N1EZMSO84UL115J' where id=6; -update noar ti set b2='N1EZMSO84UL115J' where id=6; -update noar tt set v0='N3BTZSWNROL0B75LZDBIQKRKS' where id=7; -update noar ti set v0='N3BTZSWNROL0B75LZDBIQKRKS' where id=7; -update noar tt set b0='7LV5BR' where id=7; -update noar ti set b0='7LV5BR' where id=7; -update noar tt set v0='OM850' where id=7; -update noar ti set v0='OM850' where id=7; -update noar tt set b1='IAGDUCY7FD522GOADVUWB8XGERIII' where id=7; -update noar ti set b1='IAGDUCY7FD522GOADVUWB8XGERIII' where id=7; -update noar tt set v0='MT8U4FFH9DPNN2CH39SZCR9' where id=7; -update noar ti set v0='MT8U4FFH9DPNN2CH39SZCR9' where id=7; -update noar tt set b2='BJPQHQ9N3Y' where id=7; -update noar ti set b2='BJPQHQ9N3Y' where id=7; -update noar tt set v0='SWPISUK0VT11H6GWQM1' where id=8; -update noar ti set v0='SWPISUK0VT11H6GWQM1' where id=8; -update noar tt set b0='3JUL' where id=8; -update noar ti set b0='3JUL' where id=8; -update noar tt set v0='15HA6QF1V3YWR' where id=8; -update noar ti set v0='15HA6QF1V3YWR' where id=8; -update noar tt set b1='H9G80FRHBNBW13DTXR3FZDF5S' where id=8; -update noar ti set b1='H9G80FRHBNBW13DTXR3FZDF5S' where id=8; -update noar tt set v0='RVPMIYTXHJLK084' where id=8; -update noar ti set v0='RVPMIYTXHJLK084' where id=8; -update noar tt set b2='41DS9W79WWPE0D01RSROTEAUHTDU' where id=8; -update noar ti set b2='41DS9W79WWPE0D01RSROTEAUHTDU' where id=8; -update noar tt set v0='MM' where id=9; -update noar ti set v0='MM' where id=9; -update noar tt set b0='YDNFR6V30PZUFKH33EE62ZO72XHYN0NQ' where id=9; -update noar ti set b0='YDNFR6V30PZUFKH33EE62ZO72XHYN0NQ' where id=9; -update noar tt set v0='VN' where id=9; -update noar ti set v0='VN' where id=9; -update noar tt set b1='O483YC2BYFHGL8SH' where id=9; -update noar ti set b1='O483YC2BYFHGL8SH' where id=9; -update noar tt set v0='IB0ILQ9GKHTWYHV8' where id=9; -update noar ti set v0='IB0ILQ9GKHTWYHV8' where id=9; -update noar tt set b2='M9NK' where id=9; -update noar ti set b2='M9NK' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - v0 varchar(32) null, - b0 tinyblob null, - b1 mediumblob null, - b2 blob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='3RNNJJH0A4TYPJJEEJBTIPBOCYDL1' where id=1; -update noar ti set v0='3RNNJJH0A4TYPJJEEJBTIPBOCYDL1' where id=1; -update noar tt set b0='UTMUQYOTEIH8EYTQ1PXGD036KRH7EO' where id=1; -update noar ti set b0='UTMUQYOTEIH8EYTQ1PXGD036KRH7EO' where id=1; -update noar tt set v0='7JN10Z7WSF62' where id=1; -update noar ti set v0='7JN10Z7WSF62' where id=1; -update noar tt set b1='FRPG4OYYL86GK2EQUROVDI76MY' where id=1; -update noar ti set b1='FRPG4OYYL86GK2EQUROVDI76MY' where id=1; -update noar tt set v0='QPF50RIQ' where id=1; -update noar ti set v0='QPF50RIQ' where id=1; -update noar tt set b2='ZUKCLHP1F41NKI8LSDH' where id=1; -update noar ti set b2='ZUKCLHP1F41NKI8LSDH' where id=1; -update noar tt set v0='BRSRC3O907XK' where id=2; -update noar ti set v0='BRSRC3O907XK' where id=2; -update noar tt set b0='JVPKLNR3RVE' where id=2; -update noar ti set b0='JVPKLNR3RVE' where id=2; -update noar tt set v0='SQ3HH4PM' where id=2; -update noar ti set v0='SQ3HH4PM' where id=2; -update noar tt set b1='UUQ4Q' where id=2; -update noar ti set b1='UUQ4Q' where id=2; -update noar tt set v0='BTYXN9ED4AYK27XSTE0E98Y5' where id=2; -update noar ti set v0='BTYXN9ED4AYK27XSTE0E98Y5' where id=2; -update noar tt set b2='R74K11LKR6C' where id=2; -update noar ti set b2='R74K11LKR6C' where id=2; -update noar tt set v0='H53OPQ' where id=3; -update noar ti set v0='H53OPQ' where id=3; -update noar tt set b0='7' where id=3; -update noar ti set b0='7' where id=3; -update noar tt set v0='H77B3NILXJ7DM186' where id=3; -update noar ti set v0='H77B3NILXJ7DM186' where id=3; -update noar tt set b1='Z4PZ8Q72VSV16TJQIE09HW8' where id=3; -update noar ti set b1='Z4PZ8Q72VSV16TJQIE09HW8' where id=3; -update noar tt set v0='9E6V4FNCJ9KZJWBCBX1OJ1OZ' where id=3; -update noar ti set v0='9E6V4FNCJ9KZJWBCBX1OJ1OZ' where id=3; -update noar tt set b2='LUC3I230BND' where id=3; -update noar ti set b2='LUC3I230BND' where id=3; -update noar tt set v0='KT6BJHN0PMU3CV3PI64DAEX7M8PF' where id=4; -update noar ti set v0='KT6BJHN0PMU3CV3PI64DAEX7M8PF' where id=4; -update noar tt set b0='WSVOMU6D' where id=4; -update noar ti set b0='WSVOMU6D' where id=4; -update noar tt set v0='LPQKTTPJTVN990ZVERF6L1Z' where id=4; -update noar ti set v0='LPQKTTPJTVN990ZVERF6L1Z' where id=4; -update noar tt set b1='D8IH0SHPILGH1JSW' where id=4; -update noar ti set b1='D8IH0SHPILGH1JSW' where id=4; -update noar tt set v0='QFL1YESZ90QF6ORD4' where id=4; -update noar ti set v0='QFL1YESZ90QF6ORD4' where id=4; -update noar tt set b2='WEHJRGIFGBMZTX62D07MR5D' where id=4; -update noar ti set b2='WEHJRGIFGBMZTX62D07MR5D' where id=4; -update noar tt set v0='2KEGQWUIQT7CW804ZBORKQKP' where id=5; -update noar ti set v0='2KEGQWUIQT7CW804ZBORKQKP' where id=5; -update noar tt set b0='A5C8N7SNN8RR9M7JSGD' where id=5; -update noar ti set b0='A5C8N7SNN8RR9M7JSGD' where id=5; -update noar tt set v0='M8MUYPIY9' where id=5; -update noar ti set v0='M8MUYPIY9' where id=5; -update noar tt set b1='3BRY9ZOT3A' where id=5; -update noar ti set b1='3BRY9ZOT3A' where id=5; -update noar tt set v0='V827ION0JVZM' where id=5; -update noar ti set v0='V827ION0JVZM' where id=5; -update noar tt set b2='MUOVV2ZFNC4BW' where id=5; -update noar ti set b2='MUOVV2ZFNC4BW' where id=5; -update noar tt set v0='C' where id=6; -update noar ti set v0='C' where id=6; -update noar tt set b0='SOCRBYCOSLN1Q7G5OSCI83' where id=6; -update noar ti set b0='SOCRBYCOSLN1Q7G5OSCI83' where id=6; -update noar tt set v0='8' where id=6; -update noar ti set v0='8' where id=6; -update noar tt set b1='YZZOPHCQONPSMICM3' where id=6; -update noar ti set b1='YZZOPHCQONPSMICM3' where id=6; -update noar tt set v0='XSOZG2X0TEXV21FKWQVBH4B0CI2VVHP' where id=6; -update noar ti set v0='XSOZG2X0TEXV21FKWQVBH4B0CI2VVHP' where id=6; -update noar tt set b2='OY4UV4QDZXIT1TFMI' where id=6; -update noar ti set b2='OY4UV4QDZXIT1TFMI' where id=6; -update noar tt set v0='JSBHCBFRZXVS4E2' where id=7; -update noar ti set v0='JSBHCBFRZXVS4E2' where id=7; -update noar tt set b0='6QBJYEGIGB2RHENT3P' where id=7; -update noar ti set b0='6QBJYEGIGB2RHENT3P' where id=7; -update noar tt set v0='JU9ST' where id=7; -update noar ti set v0='JU9ST' where id=7; -update noar tt set b1='E288M5B8FMDVSGW2D0F4K3T8943PHX' where id=7; -update noar ti set b1='E288M5B8FMDVSGW2D0F4K3T8943PHX' where id=7; -update noar tt set v0='BY66U62V3YD0OV7TV6JGS1XOBWAG' where id=7; -update noar ti set v0='BY66U62V3YD0OV7TV6JGS1XOBWAG' where id=7; -update noar tt set b2='4A4GDK5WQA5IIAA2TJSU8WY1WKZ9W' where id=7; -update noar ti set b2='4A4GDK5WQA5IIAA2TJSU8WY1WKZ9W' where id=7; -update noar tt set v0='G4FLSSDT2OGHX753XWUHLF' where id=8; -update noar ti set v0='G4FLSSDT2OGHX753XWUHLF' where id=8; -update noar tt set b0='34RF' where id=8; -update noar ti set b0='34RF' where id=8; -update noar tt set v0='JJOVK4N4D7398C2' where id=8; -update noar ti set v0='JJOVK4N4D7398C2' where id=8; -update noar tt set b1='34QBK3BBNG9TK4ZD6R55HOKLQ' where id=8; -update noar ti set b1='34QBK3BBNG9TK4ZD6R55HOKLQ' where id=8; -update noar tt set v0='WQSAY37EF5JPGGWCQ' where id=8; -update noar ti set v0='WQSAY37EF5JPGGWCQ' where id=8; -update noar tt set b2='DUWHJEOKZ9ATZH' where id=8; -update noar ti set b2='DUWHJEOKZ9ATZH' where id=8; -update noar tt set v0='L1GL0ZLNZDQ21F8G7IEFLIZ' where id=9; -update noar ti set v0='L1GL0ZLNZDQ21F8G7IEFLIZ' where id=9; -update noar tt set b0='V' where id=9; -update noar ti set b0='V' where id=9; -update noar tt set v0='RND' where id=9; -update noar ti set v0='RND' where id=9; -update noar tt set b1='1VKTMVQGX75U6KH' where id=9; -update noar ti set b1='1VKTMVQGX75U6KH' where id=9; -update noar tt set v0='UFFBJNEZZ0VM5144NP8AJ4FGXZF5ML' where id=9; -update noar ti set v0='UFFBJNEZZ0VM5144NP8AJ4FGXZF5ML' where id=9; -update noar tt set b2='FY1Z6N8' where id=9; -update noar ti set b2='FY1Z6N8' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - v0 varchar(256) null, - b0 tinyblob null, - b1 mediumblob null, - b2 blob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='2R585KTYR61A' where id=1; -update noar ti set v0='2R585KTYR61A' where id=1; -update noar tt set b0='G3MLFCWOZ5ACJTX38EGWA' where id=1; -update noar ti set b0='G3MLFCWOZ5ACJTX38EGWA' where id=1; -update noar tt set v0='XLJ' where id=1; -update noar ti set v0='XLJ' where id=1; -update noar tt set b1='ZBIN95M5VQLQXR9H5J0AGGM2HG19Y87' where id=1; -update noar ti set b1='ZBIN95M5VQLQXR9H5J0AGGM2HG19Y87' where id=1; -update noar tt set v0='B3XNYDQ14OK51MSWC46JV7UWJ8U23' where id=1; -update noar ti set v0='B3XNYDQ14OK51MSWC46JV7UWJ8U23' where id=1; -update noar tt set b2='OF8KUUMTYQQZM10N605SMHQARIQ0GKD' where id=1; -update noar ti set b2='OF8KUUMTYQQZM10N605SMHQARIQ0GKD' where id=1; -update noar tt set v0='1TA8N0IZ' where id=2; -update noar ti set v0='1TA8N0IZ' where id=2; -update noar tt set b0='6A8IA0RDJ744236Z' where id=2; -update noar ti set b0='6A8IA0RDJ744236Z' where id=2; -update noar tt set v0='UZEEU0W6U77HLF' where id=2; -update noar ti set v0='UZEEU0W6U77HLF' where id=2; -update noar tt set b1='OHDCWMQ3' where id=2; -update noar ti set b1='OHDCWMQ3' where id=2; -update noar tt set v0='HUM5MR61PTDIWEZBZRJQ' where id=2; -update noar ti set v0='HUM5MR61PTDIWEZBZRJQ' where id=2; -update noar tt set b2='VCB' where id=2; -update noar ti set b2='VCB' where id=2; -update noar tt set v0='W' where id=3; -update noar ti set v0='W' where id=3; -update noar tt set b0='HFVVK3QLUXM3XVEJYA2JQPP4M' where id=3; -update noar ti set b0='HFVVK3QLUXM3XVEJYA2JQPP4M' where id=3; -update noar tt set v0='5JL7GT9GZHSTC66QUJOD9QDLGU' where id=3; -update noar ti set v0='5JL7GT9GZHSTC66QUJOD9QDLGU' where id=3; -update noar tt set b1='T0UR3OTVRB4V5QZK8UK' where id=3; -update noar ti set b1='T0UR3OTVRB4V5QZK8UK' where id=3; -update noar tt set v0='VGOSM5QHPAF' where id=3; -update noar ti set v0='VGOSM5QHPAF' where id=3; -update noar tt set b2='BW50ZHD20J98UTQAN0DGLZ5KLRW' where id=3; -update noar ti set b2='BW50ZHD20J98UTQAN0DGLZ5KLRW' where id=3; -update noar tt set v0='QMPYN2VOWMG3VJ7XB9SHRWKCMGLTJNMW' where id=4; -update noar ti set v0='QMPYN2VOWMG3VJ7XB9SHRWKCMGLTJNMW' where id=4; -update noar tt set b0='UOJ21YG46EVH5LQN' where id=4; -update noar ti set b0='UOJ21YG46EVH5LQN' where id=4; -update noar tt set v0='1SK3WZ' where id=4; -update noar ti set v0='1SK3WZ' where id=4; -update noar tt set b1='XVKV5V' where id=4; -update noar ti set b1='XVKV5V' where id=4; -update noar tt set v0='RHKR97DLPQJTNU6' where id=4; -update noar ti set v0='RHKR97DLPQJTNU6' where id=4; -update noar tt set b2='C92JZCTLTW1' where id=4; -update noar ti set b2='C92JZCTLTW1' where id=4; -update noar tt set v0='7A5A1GQ5RGCFPQIOID7JMLMZD4O7O' where id=5; -update noar ti set v0='7A5A1GQ5RGCFPQIOID7JMLMZD4O7O' where id=5; -update noar tt set b0='NULO36F6' where id=5; -update noar ti set b0='NULO36F6' where id=5; -update noar tt set v0='ZUPXVSXZWCDY294B0LX1SSCHHE' where id=5; -update noar ti set v0='ZUPXVSXZWCDY294B0LX1SSCHHE' where id=5; -update noar tt set b1='RE71VUMX1ZX1ACUYTM' where id=5; -update noar ti set b1='RE71VUMX1ZX1ACUYTM' where id=5; -update noar tt set v0='ZL6EUU4EXPKL' where id=5; -update noar ti set v0='ZL6EUU4EXPKL' where id=5; -update noar tt set b2='C8Y8W4V3BP4ZSH2' where id=5; -update noar ti set b2='C8Y8W4V3BP4ZSH2' where id=5; -update noar tt set v0='UH7U' where id=6; -update noar ti set v0='UH7U' where id=6; -update noar tt set b0='I92RZFVX1220IYMATRSOAGWH' where id=6; -update noar ti set b0='I92RZFVX1220IYMATRSOAGWH' where id=6; -update noar tt set v0='BNZSHCN3JNZQMB4NR' where id=6; -update noar ti set v0='BNZSHCN3JNZQMB4NR' where id=6; -update noar tt set b1='ERLZ1QHAHUYGHXEH55CNLP2ZNYIP' where id=6; -update noar ti set b1='ERLZ1QHAHUYGHXEH55CNLP2ZNYIP' where id=6; -update noar tt set v0='UD2UDBO3WMMHN195Y4WXMU1D6' where id=6; -update noar ti set v0='UD2UDBO3WMMHN195Y4WXMU1D6' where id=6; -update noar tt set b2='2Z3O3QSJREXG7GSAGAMBS07PWU' where id=6; -update noar ti set b2='2Z3O3QSJREXG7GSAGAMBS07PWU' where id=6; -update noar tt set v0='HIL0W541UEILJ7HZ3HRL5J9KF5W7N34R' where id=7; -update noar ti set v0='HIL0W541UEILJ7HZ3HRL5J9KF5W7N34R' where id=7; -update noar tt set b0='KYWFAN2BTIBFXSH7A6OJDO' where id=7; -update noar ti set b0='KYWFAN2BTIBFXSH7A6OJDO' where id=7; -update noar tt set v0='Z49I8QYOU0NRP3KON' where id=7; -update noar ti set v0='Z49I8QYOU0NRP3KON' where id=7; -update noar tt set b1='MT0USM' where id=7; -update noar ti set b1='MT0USM' where id=7; -update noar tt set v0='4UD83QCJMBMXSHIXG' where id=7; -update noar ti set v0='4UD83QCJMBMXSHIXG' where id=7; -update noar tt set b2='YMKNAWULH2NP29WYAC9WQW76R1' where id=7; -update noar ti set b2='YMKNAWULH2NP29WYAC9WQW76R1' where id=7; -update noar tt set v0='6LM8JVZRTIL0XRF6T3W31H' where id=8; -update noar ti set v0='6LM8JVZRTIL0XRF6T3W31H' where id=8; -update noar tt set b0='OGBCZDEGLCGHOOK27AM3' where id=8; -update noar ti set b0='OGBCZDEGLCGHOOK27AM3' where id=8; -update noar tt set v0='F7GXBSH3CXFESWID3IY2ZN9ZEM3' where id=8; -update noar ti set v0='F7GXBSH3CXFESWID3IY2ZN9ZEM3' where id=8; -update noar tt set b1='1P79ZHCITKST8VJ6R7LATB47ROMPA' where id=8; -update noar ti set b1='1P79ZHCITKST8VJ6R7LATB47ROMPA' where id=8; -update noar tt set v0='VWGDZ2R0MIR4D' where id=8; -update noar ti set v0='VWGDZ2R0MIR4D' where id=8; -update noar tt set b2='O5JR5GMFPN7W9AO' where id=8; -update noar ti set b2='O5JR5GMFPN7W9AO' where id=8; -update noar tt set v0='DAUFCU9NQJNM2MCJLM41FCLB83Y5MIAE' where id=9; -update noar ti set v0='DAUFCU9NQJNM2MCJLM41FCLB83Y5MIAE' where id=9; -update noar tt set b0='NSB8GDXEXD8M8U8UMBG2S0' where id=9; -update noar ti set b0='NSB8GDXEXD8M8U8UMBG2S0' where id=9; -update noar tt set v0='LT5IFUAQJF6C6RYLK6' where id=9; -update noar ti set v0='LT5IFUAQJF6C6RYLK6' where id=9; -update noar tt set b1='ICJM4B3V8' where id=9; -update noar ti set b1='ICJM4B3V8' where id=9; -update noar tt set v0='H7ERG6AT2UC1I' where id=9; -update noar ti set v0='H7ERG6AT2UC1I' where id=9; -update noar tt set b2='5FWALHL5TLWV4ON6BO75ARMR6QE93' where id=9; -update noar ti set b2='5FWALHL5TLWV4ON6BO75ARMR6QE93' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - v0 varchar(32) not null, - b0 tinyblob not null, - b1 mediumblob not null, - b2 blob not null -) engine=tokudb; -insert into tt values (1,'','','',''); -insert into tt values (2,'','','',''); -insert into tt values (3,'','','',''); -insert into tt values (4,'','','',''); -insert into tt values (5,'','','',''); -insert into tt values (6,'','','',''); -insert into tt values (7,'','','',''); -insert into tt values (8,'','','',''); -insert into tt values (9,'','','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='O1A1O2PXT' where id=1; -update noar ti set v0='O1A1O2PXT' where id=1; -update noar tt set b0='MF5AL' where id=1; -update noar ti set b0='MF5AL' where id=1; -update noar tt set v0='JRCIBZTS7F' where id=1; -update noar ti set v0='JRCIBZTS7F' where id=1; -update noar tt set b1='GPCY83CCQW8GC2HC' where id=1; -update noar ti set b1='GPCY83CCQW8GC2HC' where id=1; -update noar tt set v0='ZF0MJ7FVXBU9JSZ2TS4GZE6QMA2' where id=1; -update noar ti set v0='ZF0MJ7FVXBU9JSZ2TS4GZE6QMA2' where id=1; -update noar tt set b2='DBCFLRUYAVWK2FNUW95' where id=1; -update noar ti set b2='DBCFLRUYAVWK2FNUW95' where id=1; -update noar tt set v0='G1OHG' where id=2; -update noar ti set v0='G1OHG' where id=2; -update noar tt set b0='GS3KIAS90OZN82AC9RYD' where id=2; -update noar ti set b0='GS3KIAS90OZN82AC9RYD' where id=2; -update noar tt set v0='EN9' where id=2; -update noar ti set v0='EN9' where id=2; -update noar tt set b1='QP' where id=2; -update noar ti set b1='QP' where id=2; -update noar tt set v0='8NOBJ4I0QAAOGL97EPW' where id=2; -update noar ti set v0='8NOBJ4I0QAAOGL97EPW' where id=2; -update noar tt set b2='ABHCW6SDN6EV2SC7SEIY447G' where id=2; -update noar ti set b2='ABHCW6SDN6EV2SC7SEIY447G' where id=2; -update noar tt set v0='SVAEG7W0XR7TYLRCL' where id=3; -update noar ti set v0='SVAEG7W0XR7TYLRCL' where id=3; -update noar tt set b0='417GW9T6LGLY5KEJGR0QKV6C5NBID' where id=3; -update noar ti set b0='417GW9T6LGLY5KEJGR0QKV6C5NBID' where id=3; -update noar tt set v0='TN63GLN7CQK9K95RON57N83Y0NRIU' where id=3; -update noar ti set v0='TN63GLN7CQK9K95RON57N83Y0NRIU' where id=3; -update noar tt set b1='3B0UBCD2DHX4755L1SUG1TARG4CDNB' where id=3; -update noar ti set b1='3B0UBCD2DHX4755L1SUG1TARG4CDNB' where id=3; -update noar tt set v0='R9OAXCEKMALAKNDBL62LOXBVYMUE' where id=3; -update noar ti set v0='R9OAXCEKMALAKNDBL62LOXBVYMUE' where id=3; -update noar tt set b2='5JG092OA' where id=3; -update noar ti set b2='5JG092OA' where id=3; -update noar tt set v0='A' where id=4; -update noar ti set v0='A' where id=4; -update noar tt set b0='RQO9P512' where id=4; -update noar ti set b0='RQO9P512' where id=4; -update noar tt set v0='SVK15TYQ45PC' where id=4; -update noar ti set v0='SVK15TYQ45PC' where id=4; -update noar tt set b1='FMO8O4TSZ74N' where id=4; -update noar ti set b1='FMO8O4TSZ74N' where id=4; -update noar tt set v0='4YM4V' where id=4; -update noar ti set v0='4YM4V' where id=4; -update noar tt set b2='BC9FI2ZXQEFQZ5' where id=4; -update noar ti set b2='BC9FI2ZXQEFQZ5' where id=4; -update noar tt set v0='2BAH6JT1FW0TR2E7A' where id=5; -update noar ti set v0='2BAH6JT1FW0TR2E7A' where id=5; -update noar tt set b0='YRSTE5XBE' where id=5; -update noar ti set b0='YRSTE5XBE' where id=5; -update noar tt set v0='PM476HEE7SQ9R58EXAY7PI66EH0I' where id=5; -update noar ti set v0='PM476HEE7SQ9R58EXAY7PI66EH0I' where id=5; -update noar tt set b1='SX30XXLYHOST228UMDTEK1ZVK5U4J5DK' where id=5; -update noar ti set b1='SX30XXLYHOST228UMDTEK1ZVK5U4J5DK' where id=5; -update noar tt set v0='DQ0UUL' where id=5; -update noar ti set v0='DQ0UUL' where id=5; -update noar tt set b2='TCYGWW4OQMLVKWJBMCU85M7' where id=5; -update noar ti set b2='TCYGWW4OQMLVKWJBMCU85M7' where id=5; -update noar tt set v0='LHP0S8GD7CZS3MTSXPHDR86A' where id=6; -update noar ti set v0='LHP0S8GD7CZS3MTSXPHDR86A' where id=6; -update noar tt set b0='4AS65EE6OXZAXFQON6O580HBUYL' where id=6; -update noar ti set b0='4AS65EE6OXZAXFQON6O580HBUYL' where id=6; -update noar tt set v0='287LTAG2HN80ZLFR53CR5MCKW' where id=6; -update noar ti set v0='287LTAG2HN80ZLFR53CR5MCKW' where id=6; -update noar tt set b1='D1AJ6XYQ64947YV1548PIY2XVS87' where id=6; -update noar ti set b1='D1AJ6XYQ64947YV1548PIY2XVS87' where id=6; -update noar tt set v0='9WF8' where id=6; -update noar ti set v0='9WF8' where id=6; -update noar tt set b2='HE4CRUBPCCYKEPY2FI' where id=6; -update noar ti set b2='HE4CRUBPCCYKEPY2FI' where id=6; -update noar tt set v0='6DSRCP8J' where id=7; -update noar ti set v0='6DSRCP8J' where id=7; -update noar tt set b0='V8FVFQ' where id=7; -update noar ti set b0='V8FVFQ' where id=7; -update noar tt set v0='T64NCGR2ACG3UEM0M3RY9V4O1' where id=7; -update noar ti set v0='T64NCGR2ACG3UEM0M3RY9V4O1' where id=7; -update noar tt set b1='FCJAO17TBNJQI2' where id=7; -update noar ti set b1='FCJAO17TBNJQI2' where id=7; -update noar tt set v0='M2VRN127QI2KTAICIQ8PUVF' where id=7; -update noar ti set v0='M2VRN127QI2KTAICIQ8PUVF' where id=7; -update noar tt set b2='FUZCTE' where id=7; -update noar ti set b2='FUZCTE' where id=7; -update noar tt set v0='YJXZ2OO0DCXLND3VR971L' where id=8; -update noar ti set v0='YJXZ2OO0DCXLND3VR971L' where id=8; -update noar tt set b0='761VT8D8ZVOVVB' where id=8; -update noar ti set b0='761VT8D8ZVOVVB' where id=8; -update noar tt set v0='VQPHXF3IHY8XWCUEJSQA' where id=8; -update noar ti set v0='VQPHXF3IHY8XWCUEJSQA' where id=8; -update noar tt set b1='KWLB9XQC4G24' where id=8; -update noar ti set b1='KWLB9XQC4G24' where id=8; -update noar tt set v0='7UPTJXBAG3JQETIKMQJJH0XTGMDEF4' where id=8; -update noar ti set v0='7UPTJXBAG3JQETIKMQJJH0XTGMDEF4' where id=8; -update noar tt set b2='DTUN91TE' where id=8; -update noar ti set b2='DTUN91TE' where id=8; -update noar tt set v0='94O78OO94CRWGLM' where id=9; -update noar ti set v0='94O78OO94CRWGLM' where id=9; -update noar tt set b0='4IQ13N8SZ4QM8NADQJ5D6YKC9' where id=9; -update noar ti set b0='4IQ13N8SZ4QM8NADQJ5D6YKC9' where id=9; -update noar tt set v0='WIRTRYJ8B0NMPB8WTD55I4MV1R5' where id=9; -update noar ti set v0='WIRTRYJ8B0NMPB8WTD55I4MV1R5' where id=9; -update noar tt set b1='RGJ3HE9DOBT8Q5BWY' where id=9; -update noar ti set b1='RGJ3HE9DOBT8Q5BWY' where id=9; -update noar tt set v0='ZYZPCMMKJMB6E4OROUN4N2G5JXRR' where id=9; -update noar ti set v0='ZYZPCMMKJMB6E4OROUN4N2G5JXRR' where id=9; -update noar tt set b2='KNVYXA5JJWAPY6NWL' where id=9; -update noar ti set b2='KNVYXA5JJWAPY6NWL' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - v0 varchar(256) not null, - b0 tinyblob not null, - b1 mediumblob not null, - b2 blob not null -) engine=tokudb; -insert into tt values (1,'','','',''); -insert into tt values (2,'','','',''); -insert into tt values (3,'','','',''); -insert into tt values (4,'','','',''); -insert into tt values (5,'','','',''); -insert into tt values (6,'','','',''); -insert into tt values (7,'','','',''); -insert into tt values (8,'','','',''); -insert into tt values (9,'','','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='4A7PLTN2R61TP8V957L1LZIWS2MQT6DD' where id=1; -update noar ti set v0='4A7PLTN2R61TP8V957L1LZIWS2MQT6DD' where id=1; -update noar tt set b0='SZ4S290JRQ1EB405NVJVYA' where id=1; -update noar ti set b0='SZ4S290JRQ1EB405NVJVYA' where id=1; -update noar tt set v0='VF8B69OS' where id=1; -update noar ti set v0='VF8B69OS' where id=1; -update noar tt set b1='SF8VXDGM61U4' where id=1; -update noar ti set b1='SF8VXDGM61U4' where id=1; -update noar tt set v0='8EYMQGIWIBZTSJ3V3CPPR98PX2MBE' where id=1; -update noar ti set v0='8EYMQGIWIBZTSJ3V3CPPR98PX2MBE' where id=1; -update noar tt set b2='IG6Q9JLGGJNPQLNBOS8P6HSM1C' where id=1; -update noar ti set b2='IG6Q9JLGGJNPQLNBOS8P6HSM1C' where id=1; -update noar tt set v0='RE2D6YSYU4DMKVDISKZJXEBG5' where id=2; -update noar ti set v0='RE2D6YSYU4DMKVDISKZJXEBG5' where id=2; -update noar tt set b0='7CJDZ05XVE' where id=2; -update noar ti set b0='7CJDZ05XVE' where id=2; -update noar tt set v0='H4YF052OA84JF' where id=2; -update noar ti set v0='H4YF052OA84JF' where id=2; -update noar tt set b1='HUO20RGN9QCGE5T2DW' where id=2; -update noar ti set b1='HUO20RGN9QCGE5T2DW' where id=2; -update noar tt set v0='PHQIDGUSJXAHFFLEV94CQREXV8CO0' where id=2; -update noar ti set v0='PHQIDGUSJXAHFFLEV94CQREXV8CO0' where id=2; -update noar tt set b2='9G0B9' where id=2; -update noar ti set b2='9G0B9' where id=2; -update noar tt set v0='6Y9J5LS9CCZMBKC' where id=3; -update noar ti set v0='6Y9J5LS9CCZMBKC' where id=3; -update noar tt set b0='K7039U41DBKCV71YCQDMEG' where id=3; -update noar ti set b0='K7039U41DBKCV71YCQDMEG' where id=3; -update noar tt set v0='J84DQPHWNHZ6K6AJTIJ69GUGREDMGR2C' where id=3; -update noar ti set v0='J84DQPHWNHZ6K6AJTIJ69GUGREDMGR2C' where id=3; -update noar tt set b1='URZJPKG64L' where id=3; -update noar ti set b1='URZJPKG64L' where id=3; -update noar tt set v0='YC2IFXQWUOGL2AP' where id=3; -update noar ti set v0='YC2IFXQWUOGL2AP' where id=3; -update noar tt set b2='41USV259' where id=3; -update noar ti set b2='41USV259' where id=3; -update noar tt set v0='X67ZRN1O1K7IBLGC2CUGJOZKZMN6C4' where id=4; -update noar ti set v0='X67ZRN1O1K7IBLGC2CUGJOZKZMN6C4' where id=4; -update noar tt set b0='FFVFBEZV7EZ' where id=4; -update noar ti set b0='FFVFBEZV7EZ' where id=4; -update noar tt set v0='FH81L79' where id=4; -update noar ti set v0='FH81L79' where id=4; -update noar tt set b1='YPKOTFOYYVHVJFYQNP32M' where id=4; -update noar ti set b1='YPKOTFOYYVHVJFYQNP32M' where id=4; -update noar tt set v0='6DJQM7LBVKL68YCT5UH6' where id=4; -update noar ti set v0='6DJQM7LBVKL68YCT5UH6' where id=4; -update noar tt set b2='A37BVEJZZOI1XC02N' where id=4; -update noar ti set b2='A37BVEJZZOI1XC02N' where id=4; -update noar tt set v0='1UVVDYLLRM' where id=5; -update noar ti set v0='1UVVDYLLRM' where id=5; -update noar tt set b0='729ZG1WVN1BELZG53QC' where id=5; -update noar ti set b0='729ZG1WVN1BELZG53QC' where id=5; -update noar tt set v0='IUG6E7PMDZGR0IHE5F3MII0B98' where id=5; -update noar ti set v0='IUG6E7PMDZGR0IHE5F3MII0B98' where id=5; -update noar tt set b1='HDM3IT6V3GZCV83' where id=5; -update noar ti set b1='HDM3IT6V3GZCV83' where id=5; -update noar tt set v0='G8ST0' where id=5; -update noar ti set v0='G8ST0' where id=5; -update noar tt set b2='46P6N' where id=5; -update noar ti set b2='46P6N' where id=5; -update noar tt set v0='52WADJ56O3J' where id=6; -update noar ti set v0='52WADJ56O3J' where id=6; -update noar tt set b0='60OIJY9K5C93B1015CNNT8UP' where id=6; -update noar ti set b0='60OIJY9K5C93B1015CNNT8UP' where id=6; -update noar tt set v0='9XG59G3RK6FY7PZ9LKT212CA1B3JIS' where id=6; -update noar ti set v0='9XG59G3RK6FY7PZ9LKT212CA1B3JIS' where id=6; -update noar tt set b1='VKRFVE4G9MI6PTYS7UAN' where id=6; -update noar ti set b1='VKRFVE4G9MI6PTYS7UAN' where id=6; -update noar tt set v0='3KOQ9H3F149L53R5A4RC84QJ6IW' where id=6; -update noar ti set v0='3KOQ9H3F149L53R5A4RC84QJ6IW' where id=6; -update noar tt set b2='KXQPECWYUWQPI4Y7RJXE47' where id=6; -update noar ti set b2='KXQPECWYUWQPI4Y7RJXE47' where id=6; -update noar tt set v0='M9GNVQH4V4DO6O3A98X0ODPHZPU65GC1' where id=7; -update noar ti set v0='M9GNVQH4V4DO6O3A98X0ODPHZPU65GC1' where id=7; -update noar tt set b0='G45C2MLHMMJS7U9SJR90' where id=7; -update noar ti set b0='G45C2MLHMMJS7U9SJR90' where id=7; -update noar tt set v0='SKHVJID72ULRNWLU48ZQ5LPJBOLPH' where id=7; -update noar ti set v0='SKHVJID72ULRNWLU48ZQ5LPJBOLPH' where id=7; -update noar tt set b1='KYJWCFK6P35VWWKXOK75M3OO' where id=7; -update noar ti set b1='KYJWCFK6P35VWWKXOK75M3OO' where id=7; -update noar tt set v0='Y2RWXQXR5B8GECVM7AUAN7YJB0FS958' where id=7; -update noar ti set v0='Y2RWXQXR5B8GECVM7AUAN7YJB0FS958' where id=7; -update noar tt set b2='AXPFVRQWCM2BZH7BNNY9BDELBEDIRVI' where id=7; -update noar ti set b2='AXPFVRQWCM2BZH7BNNY9BDELBEDIRVI' where id=7; -update noar tt set v0='BXB3IZ7HCTC4339LV3QN' where id=8; -update noar ti set v0='BXB3IZ7HCTC4339LV3QN' where id=8; -update noar tt set b0='PCQI97EI7OB6HD74' where id=8; -update noar ti set b0='PCQI97EI7OB6HD74' where id=8; -update noar tt set v0='66M4K2NART1' where id=8; -update noar ti set v0='66M4K2NART1' where id=8; -update noar tt set b1='LYUPXV67WQYRAKZZYBLIVXGGQ5GAL' where id=8; -update noar ti set b1='LYUPXV67WQYRAKZZYBLIVXGGQ5GAL' where id=8; -update noar tt set v0='MPYKI51OS2LWRGTH' where id=8; -update noar ti set v0='MPYKI51OS2LWRGTH' where id=8; -update noar tt set b2='7UEMPQWI4F' where id=8; -update noar ti set b2='7UEMPQWI4F' where id=8; -update noar tt set v0='4B1RBT1L8O29ZTT' where id=9; -update noar ti set v0='4B1RBT1L8O29ZTT' where id=9; -update noar tt set b0='MDEVA2CEOULTM0AYCXO8MG' where id=9; -update noar ti set b0='MDEVA2CEOULTM0AYCXO8MG' where id=9; -update noar tt set v0='6V24D0' where id=9; -update noar ti set v0='6V24D0' where id=9; -update noar tt set b1='O9SXTJY4SPQI3MVWMAMKX8ISIU9X' where id=9; -update noar ti set b1='O9SXTJY4SPQI3MVWMAMKX8ISIU9X' where id=9; -update noar tt set v0='4EF318TZIG71AL5LWEQQGD' where id=9; -update noar ti set v0='4EF318TZIG71AL5LWEQQGD' where id=9; -update noar tt set b2='BKHJRR4OIKXX8EABIM' where id=9; -update noar ti set b2='BKHJRR4OIKXX8EABIM' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - v0 varchar(32) null, - b0 tinyblob null, - b1 mediumblob null, - b2 mediumblob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='HPZBU3P9GUSTWDKHX7F92M084' where id=1; -update noar ti set v0='HPZBU3P9GUSTWDKHX7F92M084' where id=1; -update noar tt set b0='MJUZ9K47OFMXW6N82QI2E0WJF' where id=1; -update noar ti set b0='MJUZ9K47OFMXW6N82QI2E0WJF' where id=1; -update noar tt set v0='9NBPN152DN55WS3FPQU' where id=1; -update noar ti set v0='9NBPN152DN55WS3FPQU' where id=1; -update noar tt set b1='8WFNIVJETT5K' where id=1; -update noar ti set b1='8WFNIVJETT5K' where id=1; -update noar tt set v0='WJBCQ0X7DQUA0F33617GD7' where id=1; -update noar ti set v0='WJBCQ0X7DQUA0F33617GD7' where id=1; -update noar tt set b2='KMY0AZASEM5I6RH06' where id=1; -update noar ti set b2='KMY0AZASEM5I6RH06' where id=1; -update noar tt set v0='29UXP1U' where id=2; -update noar ti set v0='29UXP1U' where id=2; -update noar tt set b0='AKLIRCX714DI9NCVD5H' where id=2; -update noar ti set b0='AKLIRCX714DI9NCVD5H' where id=2; -update noar tt set v0='9ZJUKEGQET7RVJYZRMC' where id=2; -update noar ti set v0='9ZJUKEGQET7RVJYZRMC' where id=2; -update noar tt set b1='EHGD7KMYJFO0' where id=2; -update noar ti set b1='EHGD7KMYJFO0' where id=2; -update noar tt set v0='SKLKYHD' where id=2; -update noar ti set v0='SKLKYHD' where id=2; -update noar tt set b2='3TQUZQ88PYOGUQ68' where id=2; -update noar ti set b2='3TQUZQ88PYOGUQ68' where id=2; -update noar tt set v0='P6O365U335KD0R5J9IHVS42T3BN' where id=3; -update noar ti set v0='P6O365U335KD0R5J9IHVS42T3BN' where id=3; -update noar tt set b0='PYLKH' where id=3; -update noar ti set b0='PYLKH' where id=3; -update noar tt set v0='FH5CISSDVBGEQ' where id=3; -update noar ti set v0='FH5CISSDVBGEQ' where id=3; -update noar tt set b1='CDOISD8PWDKVXJIGRIDGSKSU32' where id=3; -update noar ti set b1='CDOISD8PWDKVXJIGRIDGSKSU32' where id=3; -update noar tt set v0='9LLIKQQNZKQ5JEI' where id=3; -update noar ti set v0='9LLIKQQNZKQ5JEI' where id=3; -update noar tt set b2='D3ACYO' where id=3; -update noar ti set b2='D3ACYO' where id=3; -update noar tt set v0='3D877U3CPL4EVSPY4I4SKQCXSF' where id=4; -update noar ti set v0='3D877U3CPL4EVSPY4I4SKQCXSF' where id=4; -update noar tt set b0='DAKW5ZUFH45MI3' where id=4; -update noar ti set b0='DAKW5ZUFH45MI3' where id=4; -update noar tt set v0='0YWJPDCE1IDZ17E74K7' where id=4; -update noar ti set v0='0YWJPDCE1IDZ17E74K7' where id=4; -update noar tt set b1='SX7NDB5VYW1NYPYLFESSK' where id=4; -update noar ti set b1='SX7NDB5VYW1NYPYLFESSK' where id=4; -update noar tt set v0='XYO4YLZ3L7TILORLV1UT6EPP5' where id=4; -update noar ti set v0='XYO4YLZ3L7TILORLV1UT6EPP5' where id=4; -update noar tt set b2='7K8Q9M8ALB8LF8KCFIP' where id=4; -update noar ti set b2='7K8Q9M8ALB8LF8KCFIP' where id=4; -update noar tt set v0='VZLL' where id=5; -update noar ti set v0='VZLL' where id=5; -update noar tt set b0='N3Y24AO03' where id=5; -update noar ti set b0='N3Y24AO03' where id=5; -update noar tt set v0='IN2DO3R' where id=5; -update noar ti set v0='IN2DO3R' where id=5; -update noar tt set b1='1Y6ZISDA3DXUMFW9FCK94P5Q' where id=5; -update noar ti set b1='1Y6ZISDA3DXUMFW9FCK94P5Q' where id=5; -update noar tt set v0='9XTRGKBD9VH51CMUTLAWT' where id=5; -update noar ti set v0='9XTRGKBD9VH51CMUTLAWT' where id=5; -update noar tt set b2='CN8A4KH3X84XQ7N81N97FJ4TUD6T' where id=5; -update noar ti set b2='CN8A4KH3X84XQ7N81N97FJ4TUD6T' where id=5; -update noar tt set v0='CM' where id=6; -update noar ti set v0='CM' where id=6; -update noar tt set b0='927MMNI5HRT7YT6T54TRKH' where id=6; -update noar ti set b0='927MMNI5HRT7YT6T54TRKH' where id=6; -update noar tt set v0='11KA5OOYJ8OG' where id=6; -update noar ti set v0='11KA5OOYJ8OG' where id=6; -update noar tt set b1='KMNE7TYKTDT6TNPIENCN3Y5DEDSN' where id=6; -update noar ti set b1='KMNE7TYKTDT6TNPIENCN3Y5DEDSN' where id=6; -update noar tt set v0='3' where id=6; -update noar ti set v0='3' where id=6; -update noar tt set b2='IL648UAUQYO5I9UR4AICCC34X4K3XRSX' where id=6; -update noar ti set b2='IL648UAUQYO5I9UR4AICCC34X4K3XRSX' where id=6; -update noar tt set v0='TBHSQMWHN6VRYQG3YL3CIP69BVD' where id=7; -update noar ti set v0='TBHSQMWHN6VRYQG3YL3CIP69BVD' where id=7; -update noar tt set b0='9X1RIFI8J29VL2UY' where id=7; -update noar ti set b0='9X1RIFI8J29VL2UY' where id=7; -update noar tt set v0='WJOAC6LJKVNXJRWTJT' where id=7; -update noar ti set v0='WJOAC6LJKVNXJRWTJT' where id=7; -update noar tt set b1='KZHBWY6CLM8A8F1M' where id=7; -update noar ti set b1='KZHBWY6CLM8A8F1M' where id=7; -update noar tt set v0='R2UNRD' where id=7; -update noar ti set v0='R2UNRD' where id=7; -update noar tt set b2='1WVM0S09' where id=7; -update noar ti set b2='1WVM0S09' where id=7; -update noar tt set v0='O5U3WT' where id=8; -update noar ti set v0='O5U3WT' where id=8; -update noar tt set b0='Q7GG47GLX68L4A' where id=8; -update noar ti set b0='Q7GG47GLX68L4A' where id=8; -update noar tt set v0='94TVMCXQHIOCTZ8DSN2PP' where id=8; -update noar ti set v0='94TVMCXQHIOCTZ8DSN2PP' where id=8; -update noar tt set b1='JHASN1Z07C73KASSKYKY0' where id=8; -update noar ti set b1='JHASN1Z07C73KASSKYKY0' where id=8; -update noar tt set v0='8KY0FOOQ' where id=8; -update noar ti set v0='8KY0FOOQ' where id=8; -update noar tt set b2='ZW83NFKIL6' where id=8; -update noar ti set b2='ZW83NFKIL6' where id=8; -update noar tt set v0='DULXBV72WCSC9C4K9Q' where id=9; -update noar ti set v0='DULXBV72WCSC9C4K9Q' where id=9; -update noar tt set b0='TEL51M5L55URCC' where id=9; -update noar ti set b0='TEL51M5L55URCC' where id=9; -update noar tt set v0='DPKLQUD6DSSOBJU' where id=9; -update noar ti set v0='DPKLQUD6DSSOBJU' where id=9; -update noar tt set b1='AOD34HPC' where id=9; -update noar ti set b1='AOD34HPC' where id=9; -update noar tt set v0='69RPMNC' where id=9; -update noar ti set v0='69RPMNC' where id=9; -update noar tt set b2='0GTW45XGK0K4ST27YMUSCCH2YIO' where id=9; -update noar ti set b2='0GTW45XGK0K4ST27YMUSCCH2YIO' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - v0 varchar(256) null, - b0 tinyblob null, - b1 mediumblob null, - b2 mediumblob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='POFON5WKPSN7WGYUPYY2VKX' where id=1; -update noar ti set v0='POFON5WKPSN7WGYUPYY2VKX' where id=1; -update noar tt set b0='18ZQLFZWU9S7S39' where id=1; -update noar ti set b0='18ZQLFZWU9S7S39' where id=1; -update noar tt set v0='PGAJAEJGW2TMS5PBRQ9F78V9' where id=1; -update noar ti set v0='PGAJAEJGW2TMS5PBRQ9F78V9' where id=1; -update noar tt set b1='0EPQMQH1FSHT5U' where id=1; -update noar ti set b1='0EPQMQH1FSHT5U' where id=1; -update noar tt set v0='AKKCK1HRPC' where id=1; -update noar ti set v0='AKKCK1HRPC' where id=1; -update noar tt set b2='LB1R4UFSQ65GXPKK4AKE' where id=1; -update noar ti set b2='LB1R4UFSQ65GXPKK4AKE' where id=1; -update noar tt set v0='00UZP7BC' where id=2; -update noar ti set v0='00UZP7BC' where id=2; -update noar tt set b0='8U' where id=2; -update noar ti set b0='8U' where id=2; -update noar tt set v0='6EHFY3FFJOD9D0O9LTCL' where id=2; -update noar ti set v0='6EHFY3FFJOD9D0O9LTCL' where id=2; -update noar tt set b1='OIW8NBMJK8DF7X1FLX5' where id=2; -update noar ti set b1='OIW8NBMJK8DF7X1FLX5' where id=2; -update noar tt set v0='DVV' where id=2; -update noar ti set v0='DVV' where id=2; -update noar tt set b2='IFV' where id=2; -update noar ti set b2='IFV' where id=2; -update noar tt set v0='7WT0V6SW18TVOUT9' where id=3; -update noar ti set v0='7WT0V6SW18TVOUT9' where id=3; -update noar tt set b0='VNP7RKEXKU34' where id=3; -update noar ti set b0='VNP7RKEXKU34' where id=3; -update noar tt set v0='ESL34CBK8' where id=3; -update noar ti set v0='ESL34CBK8' where id=3; -update noar tt set b1='1GDEJIENQ' where id=3; -update noar ti set b1='1GDEJIENQ' where id=3; -update noar tt set v0='X3T8HW29JJSD1XS' where id=3; -update noar ti set v0='X3T8HW29JJSD1XS' where id=3; -update noar tt set b2='BNFVDTA0L43MR6RGDBB4O' where id=3; -update noar ti set b2='BNFVDTA0L43MR6RGDBB4O' where id=3; -update noar tt set v0='49PR' where id=4; -update noar ti set v0='49PR' where id=4; -update noar tt set b0='R' where id=4; -update noar ti set b0='R' where id=4; -update noar tt set v0='TET5OZETWQLGKG8CT562RNSHXM' where id=4; -update noar ti set v0='TET5OZETWQLGKG8CT562RNSHXM' where id=4; -update noar tt set b1='STLBPEQHR9X1D7EZ1FC' where id=4; -update noar ti set b1='STLBPEQHR9X1D7EZ1FC' where id=4; -update noar tt set v0='NIYP0MQB8ZP8IST06NC6YQOXI3DU' where id=4; -update noar ti set v0='NIYP0MQB8ZP8IST06NC6YQOXI3DU' where id=4; -update noar tt set b2='4G6BHU4PY7I2YPFXNWRRY0VH2' where id=4; -update noar ti set b2='4G6BHU4PY7I2YPFXNWRRY0VH2' where id=4; -update noar tt set v0='DH2UDAP542BQXWZU87' where id=5; -update noar ti set v0='DH2UDAP542BQXWZU87' where id=5; -update noar tt set b0='RUHEB80EMAQ3TZX602BEUK' where id=5; -update noar ti set b0='RUHEB80EMAQ3TZX602BEUK' where id=5; -update noar tt set v0='I7CEPMGBML' where id=5; -update noar ti set v0='I7CEPMGBML' where id=5; -update noar tt set b1='DHVLWEQA2NH3' where id=5; -update noar ti set b1='DHVLWEQA2NH3' where id=5; -update noar tt set v0='0KV355DFPAGHQRJ7OY71O5' where id=5; -update noar ti set v0='0KV355DFPAGHQRJ7OY71O5' where id=5; -update noar tt set b2='NJKQE9FDEMMTFH2VLVED6NIQHYR0IQ' where id=5; -update noar ti set b2='NJKQE9FDEMMTFH2VLVED6NIQHYR0IQ' where id=5; -update noar tt set v0='I99NF9NW46SH4C7VD8GYLB9XS1O70W4K' where id=6; -update noar ti set v0='I99NF9NW46SH4C7VD8GYLB9XS1O70W4K' where id=6; -update noar tt set b0='HE62JKORDAOG4B7G063HAF9SJ' where id=6; -update noar ti set b0='HE62JKORDAOG4B7G063HAF9SJ' where id=6; -update noar tt set v0='4079ILLBGYXAEJIZULS64L7H' where id=6; -update noar ti set v0='4079ILLBGYXAEJIZULS64L7H' where id=6; -update noar tt set b1='76AR' where id=6; -update noar ti set b1='76AR' where id=6; -update noar tt set v0='9VHOFPKYNQGR8NTGMFHA5TJ6' where id=6; -update noar ti set v0='9VHOFPKYNQGR8NTGMFHA5TJ6' where id=6; -update noar tt set b2='CS' where id=6; -update noar ti set b2='CS' where id=6; -update noar tt set v0='NJNJO0Y7U1XJ2' where id=7; -update noar ti set v0='NJNJO0Y7U1XJ2' where id=7; -update noar tt set b0='UJBXQTC7SHQC48993FJLIY7G' where id=7; -update noar ti set b0='UJBXQTC7SHQC48993FJLIY7G' where id=7; -update noar tt set v0='5G73BQC4D' where id=7; -update noar ti set v0='5G73BQC4D' where id=7; -update noar tt set b1='S5QEJ47SMMSUFH5X5AE9O' where id=7; -update noar ti set b1='S5QEJ47SMMSUFH5X5AE9O' where id=7; -update noar tt set v0='UVQ0SUXN8S1' where id=7; -update noar ti set v0='UVQ0SUXN8S1' where id=7; -update noar tt set b2='3UOIZ2UMMF7ZK4PQ' where id=7; -update noar ti set b2='3UOIZ2UMMF7ZK4PQ' where id=7; -update noar tt set v0='619E3D7LU' where id=8; -update noar ti set v0='619E3D7LU' where id=8; -update noar tt set b0='WLCZ816UX5BFH0B' where id=8; -update noar ti set b0='WLCZ816UX5BFH0B' where id=8; -update noar tt set v0='O4WA0N7GDOGGOWTR80CFGK6' where id=8; -update noar ti set v0='O4WA0N7GDOGGOWTR80CFGK6' where id=8; -update noar tt set b1='X32865E' where id=8; -update noar ti set b1='X32865E' where id=8; -update noar tt set v0='UNQJB3NFHIJJOL254EIUSP9WUSLTSQ' where id=8; -update noar ti set v0='UNQJB3NFHIJJOL254EIUSP9WUSLTSQ' where id=8; -update noar tt set b2='PQAR64CDPEP2IX7BG22Y0MHRROH' where id=8; -update noar ti set b2='PQAR64CDPEP2IX7BG22Y0MHRROH' where id=8; -update noar tt set v0='XSWJL' where id=9; -update noar ti set v0='XSWJL' where id=9; -update noar tt set b0='PD118O5H6684DAA7NWFDF' where id=9; -update noar ti set b0='PD118O5H6684DAA7NWFDF' where id=9; -update noar tt set v0='VO7K' where id=9; -update noar ti set v0='VO7K' where id=9; -update noar tt set b1='PT2JJDY24NIAV8TG' where id=9; -update noar ti set b1='PT2JJDY24NIAV8TG' where id=9; -update noar tt set v0='K169602Q28' where id=9; -update noar ti set v0='K169602Q28' where id=9; -update noar tt set b2='PHL5HBJ' where id=9; -update noar ti set b2='PHL5HBJ' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - v0 varchar(32) not null, - b0 tinyblob not null, - b1 mediumblob not null, - b2 mediumblob not null -) engine=tokudb; -insert into tt values (1,'','','',''); -insert into tt values (2,'','','',''); -insert into tt values (3,'','','',''); -insert into tt values (4,'','','',''); -insert into tt values (5,'','','',''); -insert into tt values (6,'','','',''); -insert into tt values (7,'','','',''); -insert into tt values (8,'','','',''); -insert into tt values (9,'','','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='N8DGZFT4CXJ35' where id=1; -update noar ti set v0='N8DGZFT4CXJ35' where id=1; -update noar tt set b0='AHVZJIAE' where id=1; -update noar ti set b0='AHVZJIAE' where id=1; -update noar tt set v0='U1YR5GK9' where id=1; -update noar ti set v0='U1YR5GK9' where id=1; -update noar tt set b1='F1SW7DRJZB6O9ZUYPMJH' where id=1; -update noar ti set b1='F1SW7DRJZB6O9ZUYPMJH' where id=1; -update noar tt set v0='CO0IFCFEPWBNITJGJUCQ74UI' where id=1; -update noar ti set v0='CO0IFCFEPWBNITJGJUCQ74UI' where id=1; -update noar tt set b2='VVXGZP' where id=1; -update noar ti set b2='VVXGZP' where id=1; -update noar tt set v0='83679JNR6FV341ET9ZNCAIQU02D6BMQ' where id=2; -update noar ti set v0='83679JNR6FV341ET9ZNCAIQU02D6BMQ' where id=2; -update noar tt set b0='8R' where id=2; -update noar ti set b0='8R' where id=2; -update noar tt set v0='V4CORXB2OYL0W7TZZPCTM4A9VSU' where id=2; -update noar ti set v0='V4CORXB2OYL0W7TZZPCTM4A9VSU' where id=2; -update noar tt set b1='7XXB0E0TO80JW' where id=2; -update noar ti set b1='7XXB0E0TO80JW' where id=2; -update noar tt set v0='3QF' where id=2; -update noar ti set v0='3QF' where id=2; -update noar tt set b2='UJJQ6U34UDEHHMT9ML' where id=2; -update noar ti set b2='UJJQ6U34UDEHHMT9ML' where id=2; -update noar tt set v0='O8E' where id=3; -update noar ti set v0='O8E' where id=3; -update noar tt set b0='0TIB5X2QT' where id=3; -update noar ti set b0='0TIB5X2QT' where id=3; -update noar tt set v0='MR5R0YBUPNMB9YU7YV18JLLYU6WOLO' where id=3; -update noar ti set v0='MR5R0YBUPNMB9YU7YV18JLLYU6WOLO' where id=3; -update noar tt set b1='KWAGR1' where id=3; -update noar ti set b1='KWAGR1' where id=3; -update noar tt set v0='ZYBUMPA6LAELS9RIAV' where id=3; -update noar ti set v0='ZYBUMPA6LAELS9RIAV' where id=3; -update noar tt set b2='A526JIW26' where id=3; -update noar ti set b2='A526JIW26' where id=3; -update noar tt set v0='L86BTKOVBT7P' where id=4; -update noar ti set v0='L86BTKOVBT7P' where id=4; -update noar tt set b0='FW' where id=4; -update noar ti set b0='FW' where id=4; -update noar tt set v0='QNREEE5VLGXUU' where id=4; -update noar ti set v0='QNREEE5VLGXUU' where id=4; -update noar tt set b1='02UDHFXAILMZL1MYJBKZVPXV' where id=4; -update noar ti set b1='02UDHFXAILMZL1MYJBKZVPXV' where id=4; -update noar tt set v0='4A0SIK7MG' where id=4; -update noar ti set v0='4A0SIK7MG' where id=4; -update noar tt set b2='MQQ210DVRYER2KZ0K7N' where id=4; -update noar ti set b2='MQQ210DVRYER2KZ0K7N' where id=4; -update noar tt set v0='FPDWGDBGUZDJ8G8VNVZQSW5CECI85V7' where id=5; -update noar ti set v0='FPDWGDBGUZDJ8G8VNVZQSW5CECI85V7' where id=5; -update noar tt set b0='JSUTYO8OLBVF2D396V4SDK3C7' where id=5; -update noar ti set b0='JSUTYO8OLBVF2D396V4SDK3C7' where id=5; -update noar tt set v0='A7GQ0CNZPOJFABQ2NVCVJB' where id=5; -update noar ti set v0='A7GQ0CNZPOJFABQ2NVCVJB' where id=5; -update noar tt set b1='IN' where id=5; -update noar ti set b1='IN' where id=5; -update noar tt set v0='MCYKQUT3Q5I8' where id=5; -update noar ti set v0='MCYKQUT3Q5I8' where id=5; -update noar tt set b2='B' where id=5; -update noar ti set b2='B' where id=5; -update noar tt set v0='NCLMBO5YMDBMF' where id=6; -update noar ti set v0='NCLMBO5YMDBMF' where id=6; -update noar tt set b0='JDVOKML69' where id=6; -update noar ti set b0='JDVOKML69' where id=6; -update noar tt set v0='CC6HSSMJ0VQQLSCLME5184MQ' where id=6; -update noar ti set v0='CC6HSSMJ0VQQLSCLME5184MQ' where id=6; -update noar tt set b1='07FAJQHY3HTR0CE8X1UJS0FM8W7B' where id=6; -update noar ti set b1='07FAJQHY3HTR0CE8X1UJS0FM8W7B' where id=6; -update noar tt set v0='G5WGBUMSBKJT5UTHCXO9FCS' where id=6; -update noar ti set v0='G5WGBUMSBKJT5UTHCXO9FCS' where id=6; -update noar tt set b2='2IX' where id=6; -update noar ti set b2='2IX' where id=6; -update noar tt set v0='5YVHB5EDS4JJ668M4BGMEX49TKC7' where id=7; -update noar ti set v0='5YVHB5EDS4JJ668M4BGMEX49TKC7' where id=7; -update noar tt set b0='9TE70UGGE8' where id=7; -update noar ti set b0='9TE70UGGE8' where id=7; -update noar tt set v0='G3UE4MPCXE44V' where id=7; -update noar ti set v0='G3UE4MPCXE44V' where id=7; -update noar tt set b1='R6YLVCBHC1G0S6GZWKK6FIG5' where id=7; -update noar ti set b1='R6YLVCBHC1G0S6GZWKK6FIG5' where id=7; -update noar tt set v0='CPZW3IU51718KPGW03' where id=7; -update noar ti set v0='CPZW3IU51718KPGW03' where id=7; -update noar tt set b2='ZTKU' where id=7; -update noar ti set b2='ZTKU' where id=7; -update noar tt set v0='41GIBG3SIVSP3AGBCQ4IAJX' where id=8; -update noar ti set v0='41GIBG3SIVSP3AGBCQ4IAJX' where id=8; -update noar tt set b0='IIT9XHT8XQ23ICG2VDE2UVQ' where id=8; -update noar ti set b0='IIT9XHT8XQ23ICG2VDE2UVQ' where id=8; -update noar tt set v0='6JFT16AA31JN' where id=8; -update noar ti set v0='6JFT16AA31JN' where id=8; -update noar tt set b1='G5AV1ZWE' where id=8; -update noar ti set b1='G5AV1ZWE' where id=8; -update noar tt set v0='V0' where id=8; -update noar ti set v0='V0' where id=8; -update noar tt set b2='7704D2HMQUJLU1EEIDVA1TNGCL0BK1' where id=8; -update noar ti set b2='7704D2HMQUJLU1EEIDVA1TNGCL0BK1' where id=8; -update noar tt set v0='UHZWXWJTXE7AS3053G' where id=9; -update noar ti set v0='UHZWXWJTXE7AS3053G' where id=9; -update noar tt set b0='S9M372YCI' where id=9; -update noar ti set b0='S9M372YCI' where id=9; -update noar tt set v0='VU5' where id=9; -update noar ti set v0='VU5' where id=9; -update noar tt set b1='8' where id=9; -update noar ti set b1='8' where id=9; -update noar tt set v0='8ZU4H3G' where id=9; -update noar ti set v0='8ZU4H3G' where id=9; -update noar tt set b2='VFSU3R4R60' where id=9; -update noar ti set b2='VFSU3R4R60' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - v0 varchar(256) not null, - b0 tinyblob not null, - b1 mediumblob not null, - b2 mediumblob not null -) engine=tokudb; -insert into tt values (1,'','','',''); -insert into tt values (2,'','','',''); -insert into tt values (3,'','','',''); -insert into tt values (4,'','','',''); -insert into tt values (5,'','','',''); -insert into tt values (6,'','','',''); -insert into tt values (7,'','','',''); -insert into tt values (8,'','','',''); -insert into tt values (9,'','','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='NI5E47EG49GOYPVVXO86S1RX65' where id=1; -update noar ti set v0='NI5E47EG49GOYPVVXO86S1RX65' where id=1; -update noar tt set b0='EE63OMQO7W' where id=1; -update noar ti set b0='EE63OMQO7W' where id=1; -update noar tt set v0='ROK' where id=1; -update noar ti set v0='ROK' where id=1; -update noar tt set b1='ITL4BBLNQLDPFN7JI8WQWLD6' where id=1; -update noar ti set b1='ITL4BBLNQLDPFN7JI8WQWLD6' where id=1; -update noar tt set v0='4' where id=1; -update noar ti set v0='4' where id=1; -update noar tt set b2='MI95VJ8R2OQ468Z' where id=1; -update noar ti set b2='MI95VJ8R2OQ468Z' where id=1; -update noar tt set v0='FDNEEYTF9G' where id=2; -update noar ti set v0='FDNEEYTF9G' where id=2; -update noar tt set b0='BRND3H6UWCSK0WO89T9YDD1LMRPDK6Z' where id=2; -update noar ti set b0='BRND3H6UWCSK0WO89T9YDD1LMRPDK6Z' where id=2; -update noar tt set v0='AQBMGF0DZ' where id=2; -update noar ti set v0='AQBMGF0DZ' where id=2; -update noar tt set b1='T2KSOD2FPL188JR5' where id=2; -update noar ti set b1='T2KSOD2FPL188JR5' where id=2; -update noar tt set v0='8KG5' where id=2; -update noar ti set v0='8KG5' where id=2; -update noar tt set b2='G277UED4A5CYR1DYU2WTKQUFV7' where id=2; -update noar ti set b2='G277UED4A5CYR1DYU2WTKQUFV7' where id=2; -update noar tt set v0='XI7EXI9RQCFES7C' where id=3; -update noar ti set v0='XI7EXI9RQCFES7C' where id=3; -update noar tt set b0='GKA9LYUBWWV' where id=3; -update noar ti set b0='GKA9LYUBWWV' where id=3; -update noar tt set v0='RVOB' where id=3; -update noar ti set v0='RVOB' where id=3; -update noar tt set b1='P3N757K' where id=3; -update noar ti set b1='P3N757K' where id=3; -update noar tt set v0='KVAO2DC14R58I' where id=3; -update noar ti set v0='KVAO2DC14R58I' where id=3; -update noar tt set b2='5EAF1YYTW8VV5HUH4E0Z' where id=3; -update noar ti set b2='5EAF1YYTW8VV5HUH4E0Z' where id=3; -update noar tt set v0='G16DMOAQ9VMGI' where id=4; -update noar ti set v0='G16DMOAQ9VMGI' where id=4; -update noar tt set b0='A0SM0CS4U6PON8BNYWZ2XDIQ82' where id=4; -update noar ti set b0='A0SM0CS4U6PON8BNYWZ2XDIQ82' where id=4; -update noar tt set v0='ELOPWADO6ZQY5OEE' where id=4; -update noar ti set v0='ELOPWADO6ZQY5OEE' where id=4; -update noar tt set b1='J' where id=4; -update noar ti set b1='J' where id=4; -update noar tt set v0='SO83QH20SLH0J3W8Q8WNQWEZCM9' where id=4; -update noar ti set v0='SO83QH20SLH0J3W8Q8WNQWEZCM9' where id=4; -update noar tt set b2='TZJXOO2UIZXSV7' where id=4; -update noar ti set b2='TZJXOO2UIZXSV7' where id=4; -update noar tt set v0='4ZE8' where id=5; -update noar ti set v0='4ZE8' where id=5; -update noar tt set b0='FC37ITXEWHTIMW6QC4P2VBDLOWFYQ' where id=5; -update noar ti set b0='FC37ITXEWHTIMW6QC4P2VBDLOWFYQ' where id=5; -update noar tt set v0='4H' where id=5; -update noar ti set v0='4H' where id=5; -update noar tt set b1='DM2B1O6F0DN6UZZ31XSU664' where id=5; -update noar ti set b1='DM2B1O6F0DN6UZZ31XSU664' where id=5; -update noar tt set v0='AQHKPABV7JEH04H5AI2' where id=5; -update noar ti set v0='AQHKPABV7JEH04H5AI2' where id=5; -update noar tt set b2='0BA' where id=5; -update noar ti set b2='0BA' where id=5; -update noar tt set v0='WOXNQ8MD1KV72VMEGYAM5RFW' where id=6; -update noar ti set v0='WOXNQ8MD1KV72VMEGYAM5RFW' where id=6; -update noar tt set b0='NARDX08UT6PANWB58AZFWI' where id=6; -update noar ti set b0='NARDX08UT6PANWB58AZFWI' where id=6; -update noar tt set v0='WPWVVGP4H' where id=6; -update noar ti set v0='WPWVVGP4H' where id=6; -update noar tt set b1='DFKF7G3XBUWFV39FPBAZ8ZTETLI9I3R' where id=6; -update noar ti set b1='DFKF7G3XBUWFV39FPBAZ8ZTETLI9I3R' where id=6; -update noar tt set v0='8F2AE8IWARWJZJDRWNDPSBUB1DF' where id=6; -update noar ti set v0='8F2AE8IWARWJZJDRWNDPSBUB1DF' where id=6; -update noar tt set b2='NY7963I6R7H47W' where id=6; -update noar ti set b2='NY7963I6R7H47W' where id=6; -update noar tt set v0='4JAG5XQWK79WRKN99GGI06NXK4' where id=7; -update noar ti set v0='4JAG5XQWK79WRKN99GGI06NXK4' where id=7; -update noar tt set b0='X56DEW3WPJNL2BT' where id=7; -update noar ti set b0='X56DEW3WPJNL2BT' where id=7; -update noar tt set v0='Z6CEO7C0A9ZTH02CL' where id=7; -update noar ti set v0='Z6CEO7C0A9ZTH02CL' where id=7; -update noar tt set b1='VX3KUWR198TQVELELT21I1O6RBVLUPCW' where id=7; -update noar ti set b1='VX3KUWR198TQVELELT21I1O6RBVLUPCW' where id=7; -update noar tt set v0='QX9821GPAWNPR5KNL02BWPMQFR7AAA9' where id=7; -update noar ti set v0='QX9821GPAWNPR5KNL02BWPMQFR7AAA9' where id=7; -update noar tt set b2='UIQ24R' where id=7; -update noar ti set b2='UIQ24R' where id=7; -update noar tt set v0='DMQ' where id=8; -update noar ti set v0='DMQ' where id=8; -update noar tt set b0='BGQYQJBJDSUHK6NWP8Z' where id=8; -update noar ti set b0='BGQYQJBJDSUHK6NWP8Z' where id=8; -update noar tt set v0='2FCSOLSR1M0XUB9P' where id=8; -update noar ti set v0='2FCSOLSR1M0XUB9P' where id=8; -update noar tt set b1='IORAIXCONSQ5OFW6V60CHCAHD6' where id=8; -update noar ti set b1='IORAIXCONSQ5OFW6V60CHCAHD6' where id=8; -update noar tt set v0='N2UUXZNLPPG10DETSJ987AWJXRITSAQM' where id=8; -update noar ti set v0='N2UUXZNLPPG10DETSJ987AWJXRITSAQM' where id=8; -update noar tt set b2='7' where id=8; -update noar ti set b2='7' where id=8; -update noar tt set v0='1S4W1' where id=9; -update noar ti set v0='1S4W1' where id=9; -update noar tt set b0='YR04WUTRCHXFEDB2UWL' where id=9; -update noar ti set b0='YR04WUTRCHXFEDB2UWL' where id=9; -update noar tt set v0='3TZWCD7RVD9087VUX' where id=9; -update noar ti set v0='3TZWCD7RVD9087VUX' where id=9; -update noar tt set b1='V28XHDSM61IQNR' where id=9; -update noar ti set b1='V28XHDSM61IQNR' where id=9; -update noar tt set v0='EAHDEZMDVHNAP' where id=9; -update noar ti set v0='EAHDEZMDVHNAP' where id=9; -update noar tt set b2='LLI8OEAZ0MAK49E9FV0N63R8QLMJ0S39' where id=9; -update noar ti set b2='LLI8OEAZ0MAK49E9FV0N63R8QLMJ0S39' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - v0 varchar(32) null, - b0 tinyblob null, - b1 mediumblob null, - b2 longblob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='8EBHMYEII' where id=1; -update noar ti set v0='8EBHMYEII' where id=1; -update noar tt set b0='O2YYU4XROKHE' where id=1; -update noar ti set b0='O2YYU4XROKHE' where id=1; -update noar tt set v0='2VKR79BD8S4O0H4M0D9XDOX1YFUNLQ' where id=1; -update noar ti set v0='2VKR79BD8S4O0H4M0D9XDOX1YFUNLQ' where id=1; -update noar tt set b1='1HWQET9' where id=1; -update noar ti set b1='1HWQET9' where id=1; -update noar tt set v0='EA9D9ELSVDCHPZ4ZMX' where id=1; -update noar ti set v0='EA9D9ELSVDCHPZ4ZMX' where id=1; -update noar tt set b2='D' where id=1; -update noar ti set b2='D' where id=1; -update noar tt set v0='HU49AN75KJY18FVVDHKTR19IGX3' where id=2; -update noar ti set v0='HU49AN75KJY18FVVDHKTR19IGX3' where id=2; -update noar tt set b0='HHZPD7TNBU09KHNB1KB7A' where id=2; -update noar ti set b0='HHZPD7TNBU09KHNB1KB7A' where id=2; -update noar tt set v0='UGOV' where id=2; -update noar ti set v0='UGOV' where id=2; -update noar tt set b1='MG7' where id=2; -update noar ti set b1='MG7' where id=2; -update noar tt set v0='0YK1DLBGJYA7F400R010FXER9A9RIT9J' where id=2; -update noar ti set v0='0YK1DLBGJYA7F400R010FXER9A9RIT9J' where id=2; -update noar tt set b2='HOYP1B22VNYU584' where id=2; -update noar ti set b2='HOYP1B22VNYU584' where id=2; -update noar tt set v0='OBRGJ8FG35RHM5DAFG8EA1UO88W' where id=3; -update noar ti set v0='OBRGJ8FG35RHM5DAFG8EA1UO88W' where id=3; -update noar tt set b0='DSK342P7JAG80NUGYEE5IVT' where id=3; -update noar ti set b0='DSK342P7JAG80NUGYEE5IVT' where id=3; -update noar tt set v0='N0M9L42C' where id=3; -update noar ti set v0='N0M9L42C' where id=3; -update noar tt set b1='T4OKXH4QO2Y9DHY7PCD96PE4LIEEXK' where id=3; -update noar ti set b1='T4OKXH4QO2Y9DHY7PCD96PE4LIEEXK' where id=3; -update noar tt set v0='FTWYRXN62DDL7JVXGKHOKHFCTR6I0D' where id=3; -update noar ti set v0='FTWYRXN62DDL7JVXGKHOKHFCTR6I0D' where id=3; -update noar tt set b2='UMY2WBLRW' where id=3; -update noar ti set b2='UMY2WBLRW' where id=3; -update noar tt set v0='K3AO2ALPR8C0V' where id=4; -update noar ti set v0='K3AO2ALPR8C0V' where id=4; -update noar tt set b0='G5F' where id=4; -update noar ti set b0='G5F' where id=4; -update noar tt set v0='C3RAGNUG8SQ5' where id=4; -update noar ti set v0='C3RAGNUG8SQ5' where id=4; -update noar tt set b1='T' where id=4; -update noar ti set b1='T' where id=4; -update noar tt set v0='W7T2EMHSIG5HXZVZ8F' where id=4; -update noar ti set v0='W7T2EMHSIG5HXZVZ8F' where id=4; -update noar tt set b2='68KCAUGGKG' where id=4; -update noar ti set b2='68KCAUGGKG' where id=4; -update noar tt set v0='ZXEDM' where id=5; -update noar ti set v0='ZXEDM' where id=5; -update noar tt set b0='6VPTKWVZA6Y6M3G' where id=5; -update noar ti set b0='6VPTKWVZA6Y6M3G' where id=5; -update noar tt set v0='Y4DF' where id=5; -update noar ti set v0='Y4DF' where id=5; -update noar tt set b1='RBI4VSSXAVKUX4' where id=5; -update noar ti set b1='RBI4VSSXAVKUX4' where id=5; -update noar tt set v0='MUU1LK18X3FSPZ5CGV6' where id=5; -update noar ti set v0='MUU1LK18X3FSPZ5CGV6' where id=5; -update noar tt set b2='J8NH4AP2EFGIYNOY4RH08UBUAPK2C5PK' where id=5; -update noar ti set b2='J8NH4AP2EFGIYNOY4RH08UBUAPK2C5PK' where id=5; -update noar tt set v0='BIOCA3CG1JJK' where id=6; -update noar ti set v0='BIOCA3CG1JJK' where id=6; -update noar tt set b0='W33BRU3D' where id=6; -update noar ti set b0='W33BRU3D' where id=6; -update noar tt set v0='WVC8HIFT3HQYOKNIUNFV' where id=6; -update noar ti set v0='WVC8HIFT3HQYOKNIUNFV' where id=6; -update noar tt set b1='RMGS6CBB11PG8LYAR7Z4OGYAUWMOQH8' where id=6; -update noar ti set b1='RMGS6CBB11PG8LYAR7Z4OGYAUWMOQH8' where id=6; -update noar tt set v0='WDIVE' where id=6; -update noar ti set v0='WDIVE' where id=6; -update noar tt set b2='XGIG9W31' where id=6; -update noar ti set b2='XGIG9W31' where id=6; -update noar tt set v0='M1H4OE2W4' where id=7; -update noar ti set v0='M1H4OE2W4' where id=7; -update noar tt set b0='1WWIMTB83TJJJOPXMYZHMPY9C' where id=7; -update noar ti set b0='1WWIMTB83TJJJOPXMYZHMPY9C' where id=7; -update noar tt set v0='W' where id=7; -update noar ti set v0='W' where id=7; -update noar tt set b1='W7U60EQR4YPVG3UDFBGSFHSG55' where id=7; -update noar ti set b1='W7U60EQR4YPVG3UDFBGSFHSG55' where id=7; -update noar tt set v0='VX6Q8WFWNFBEHV8PLXH3' where id=7; -update noar ti set v0='VX6Q8WFWNFBEHV8PLXH3' where id=7; -update noar tt set b2='M5012IJ' where id=7; -update noar ti set b2='M5012IJ' where id=7; -update noar tt set v0='R61ZUAT0' where id=8; -update noar ti set v0='R61ZUAT0' where id=8; -update noar tt set b0='HAY' where id=8; -update noar ti set b0='HAY' where id=8; -update noar tt set v0='IVN2GNPG0GKIDZEQP15A1ST' where id=8; -update noar ti set v0='IVN2GNPG0GKIDZEQP15A1ST' where id=8; -update noar tt set b1='Y1F2S1Z740K8PBFC3' where id=8; -update noar ti set b1='Y1F2S1Z740K8PBFC3' where id=8; -update noar tt set v0='CW6IHS2N86E70K2B7LZR8G' where id=8; -update noar ti set v0='CW6IHS2N86E70K2B7LZR8G' where id=8; -update noar tt set b2='E0IM0HQA1HMCZWME7PATRIXDZ' where id=8; -update noar ti set b2='E0IM0HQA1HMCZWME7PATRIXDZ' where id=8; -update noar tt set v0='P03QKBG69N0VT' where id=9; -update noar ti set v0='P03QKBG69N0VT' where id=9; -update noar tt set b0='KI' where id=9; -update noar ti set b0='KI' where id=9; -update noar tt set v0='QBZCZZAO8Q0RON29' where id=9; -update noar ti set v0='QBZCZZAO8Q0RON29' where id=9; -update noar tt set b1='MKBTB24VERC9D2HS2PBTEEY' where id=9; -update noar ti set b1='MKBTB24VERC9D2HS2PBTEEY' where id=9; -update noar tt set v0='Y' where id=9; -update noar ti set v0='Y' where id=9; -update noar tt set b2='C5RFEHWOQ69VFFJALJ5M' where id=9; -update noar ti set b2='C5RFEHWOQ69VFFJALJ5M' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - v0 varchar(256) null, - b0 tinyblob null, - b1 mediumblob null, - b2 longblob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='AY' where id=1; -update noar ti set v0='AY' where id=1; -update noar tt set b0='J30' where id=1; -update noar ti set b0='J30' where id=1; -update noar tt set v0='T6VBCSQCXR56O35N41EECZ0' where id=1; -update noar ti set v0='T6VBCSQCXR56O35N41EECZ0' where id=1; -update noar tt set b1='AV5T0YXYBHFUZG9E42Z' where id=1; -update noar ti set b1='AV5T0YXYBHFUZG9E42Z' where id=1; -update noar tt set v0='SIMF9NG9JZLHX3PFNTWQN' where id=1; -update noar ti set v0='SIMF9NG9JZLHX3PFNTWQN' where id=1; -update noar tt set b2='1JN5C55ACD60W4C0DDQF68SE4X8B7E' where id=1; -update noar ti set b2='1JN5C55ACD60W4C0DDQF68SE4X8B7E' where id=1; -update noar tt set v0='IQQ5POGSDAGB' where id=2; -update noar ti set v0='IQQ5POGSDAGB' where id=2; -update noar tt set b0='OZO87E9YAGG673FFZGUTZ5JOIFL' where id=2; -update noar ti set b0='OZO87E9YAGG673FFZGUTZ5JOIFL' where id=2; -update noar tt set v0='EY82XVC7T88H5F' where id=2; -update noar ti set v0='EY82XVC7T88H5F' where id=2; -update noar tt set b1='8BHLKWM09ZGF9GCHY5CJTPZN41D3YH' where id=2; -update noar ti set b1='8BHLKWM09ZGF9GCHY5CJTPZN41D3YH' where id=2; -update noar tt set v0='51R4J2ZRZ6K8VXSBBM8G5' where id=2; -update noar ti set v0='51R4J2ZRZ6K8VXSBBM8G5' where id=2; -update noar tt set b2='GH' where id=2; -update noar ti set b2='GH' where id=2; -update noar tt set v0='V5MVVIVA1Z8L1KFIVV2' where id=3; -update noar ti set v0='V5MVVIVA1Z8L1KFIVV2' where id=3; -update noar tt set b0='H1VOTZZGM6XTRQX' where id=3; -update noar ti set b0='H1VOTZZGM6XTRQX' where id=3; -update noar tt set v0='ZZ7JW' where id=3; -update noar ti set v0='ZZ7JW' where id=3; -update noar tt set b1='5D' where id=3; -update noar ti set b1='5D' where id=3; -update noar tt set v0='GA0K7ZHUYAEXLB4YEGC49264L70TU' where id=3; -update noar ti set v0='GA0K7ZHUYAEXLB4YEGC49264L70TU' where id=3; -update noar tt set b2='BVRV5LRCP6V5JDSN4KINW' where id=3; -update noar ti set b2='BVRV5LRCP6V5JDSN4KINW' where id=3; -update noar tt set v0='KAE544RS6OY8F6CDAP9FR2' where id=4; -update noar ti set v0='KAE544RS6OY8F6CDAP9FR2' where id=4; -update noar tt set b0='J' where id=4; -update noar ti set b0='J' where id=4; -update noar tt set v0='8' where id=4; -update noar ti set v0='8' where id=4; -update noar tt set b1='TWDH6I2KOINUTA93N9' where id=4; -update noar ti set b1='TWDH6I2KOINUTA93N9' where id=4; -update noar tt set v0='H2T2BX' where id=4; -update noar ti set v0='H2T2BX' where id=4; -update noar tt set b2='RBHKPWBOLIO5UCBPB88GHVAQZQQQQK' where id=4; -update noar ti set b2='RBHKPWBOLIO5UCBPB88GHVAQZQQQQK' where id=4; -update noar tt set v0='ZL8WFWM7UDG8OXO6C9' where id=5; -update noar ti set v0='ZL8WFWM7UDG8OXO6C9' where id=5; -update noar tt set b0='FELX8C49B6V5UEU4C1FCGO' where id=5; -update noar ti set b0='FELX8C49B6V5UEU4C1FCGO' where id=5; -update noar tt set v0='U9BZ0AO43JNC67EP5OD03' where id=5; -update noar ti set v0='U9BZ0AO43JNC67EP5OD03' where id=5; -update noar tt set b1='ROFYI4BXQD' where id=5; -update noar ti set b1='ROFYI4BXQD' where id=5; -update noar tt set v0='UMC7PYJ3T8YV' where id=5; -update noar ti set v0='UMC7PYJ3T8YV' where id=5; -update noar tt set b2='PKV63DY0ODA56ZDE8V48YODMJR2' where id=5; -update noar ti set b2='PKV63DY0ODA56ZDE8V48YODMJR2' where id=5; -update noar tt set v0='09YJ133FWZG' where id=6; -update noar ti set v0='09YJ133FWZG' where id=6; -update noar tt set b0='OTDLQ4KWM77S0QF78ZBTM2W2EC0N5M' where id=6; -update noar ti set b0='OTDLQ4KWM77S0QF78ZBTM2W2EC0N5M' where id=6; -update noar tt set v0='Z8T4JSWEDDL159' where id=6; -update noar ti set v0='Z8T4JSWEDDL159' where id=6; -update noar tt set b1='F32TMK228URWQ5LBEIY57T01R' where id=6; -update noar ti set b1='F32TMK228URWQ5LBEIY57T01R' where id=6; -update noar tt set v0='3I5VSG49SET7D5FFC8EPIQKU2JG0P' where id=6; -update noar ti set v0='3I5VSG49SET7D5FFC8EPIQKU2JG0P' where id=6; -update noar tt set b2='H4WI' where id=6; -update noar ti set b2='H4WI' where id=6; -update noar tt set v0='R89CK8XF2DB50O47R0X' where id=7; -update noar ti set v0='R89CK8XF2DB50O47R0X' where id=7; -update noar tt set b0='P2JV7J8PP60103ZM7J50' where id=7; -update noar ti set b0='P2JV7J8PP60103ZM7J50' where id=7; -update noar tt set v0='5WS4WMN' where id=7; -update noar ti set v0='5WS4WMN' where id=7; -update noar tt set b1='QILOIZN9T0FWSPEWKQV' where id=7; -update noar ti set b1='QILOIZN9T0FWSPEWKQV' where id=7; -update noar tt set v0='9ZSS3TVEQ5L46MFAW' where id=7; -update noar ti set v0='9ZSS3TVEQ5L46MFAW' where id=7; -update noar tt set b2='2MWW7NI' where id=7; -update noar ti set b2='2MWW7NI' where id=7; -update noar tt set v0='7M5UK5' where id=8; -update noar ti set v0='7M5UK5' where id=8; -update noar tt set b0='L' where id=8; -update noar ti set b0='L' where id=8; -update noar tt set v0='M7247XEJX74G88Y8H0Q5' where id=8; -update noar ti set v0='M7247XEJX74G88Y8H0Q5' where id=8; -update noar tt set b1='4DSZ' where id=8; -update noar ti set b1='4DSZ' where id=8; -update noar tt set v0='A20Y' where id=8; -update noar ti set v0='A20Y' where id=8; -update noar tt set b2='8SCPPHFIX4UK4GKU7' where id=8; -update noar ti set b2='8SCPPHFIX4UK4GKU7' where id=8; -update noar tt set v0='89SQIW99INS4U78U2AMXUEEFZ' where id=9; -update noar ti set v0='89SQIW99INS4U78U2AMXUEEFZ' where id=9; -update noar tt set b0='DGQNX04SE68OA8YVL13ROFGW' where id=9; -update noar ti set b0='DGQNX04SE68OA8YVL13ROFGW' where id=9; -update noar tt set v0='LCQB' where id=9; -update noar ti set v0='LCQB' where id=9; -update noar tt set b1='RA5J948V80RU1JLDVJXQKVGF1TN' where id=9; -update noar ti set b1='RA5J948V80RU1JLDVJXQKVGF1TN' where id=9; -update noar tt set v0='Q' where id=9; -update noar ti set v0='Q' where id=9; -update noar tt set b2='IEYCDLXA98RP0PQXPJBWVP' where id=9; -update noar ti set b2='IEYCDLXA98RP0PQXPJBWVP' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - v0 varchar(32) not null, - b0 tinyblob not null, - b1 mediumblob not null, - b2 longblob not null -) engine=tokudb; -insert into tt values (1,'','','',''); -insert into tt values (2,'','','',''); -insert into tt values (3,'','','',''); -insert into tt values (4,'','','',''); -insert into tt values (5,'','','',''); -insert into tt values (6,'','','',''); -insert into tt values (7,'','','',''); -insert into tt values (8,'','','',''); -insert into tt values (9,'','','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='0SJCA511KEYYM' where id=1; -update noar ti set v0='0SJCA511KEYYM' where id=1; -update noar tt set b0='W7' where id=1; -update noar ti set b0='W7' where id=1; -update noar tt set v0='VRVME2GSIPXPCYDX1NACGKZT' where id=1; -update noar ti set v0='VRVME2GSIPXPCYDX1NACGKZT' where id=1; -update noar tt set b1='H3E1EQUDJF7M413S2' where id=1; -update noar ti set b1='H3E1EQUDJF7M413S2' where id=1; -update noar tt set v0='JJZS6U91T5FY83UVPOKNWAH' where id=1; -update noar ti set v0='JJZS6U91T5FY83UVPOKNWAH' where id=1; -update noar tt set b2='2Y20R4SGWOS7CTGJ4BWA' where id=1; -update noar ti set b2='2Y20R4SGWOS7CTGJ4BWA' where id=1; -update noar tt set v0='V1HRZDQDJ7Y1P3YDLTE3QPEK92' where id=2; -update noar ti set v0='V1HRZDQDJ7Y1P3YDLTE3QPEK92' where id=2; -update noar tt set b0='BFX7BQW9Y' where id=2; -update noar ti set b0='BFX7BQW9Y' where id=2; -update noar tt set v0='4KX7K5PO' where id=2; -update noar ti set v0='4KX7K5PO' where id=2; -update noar tt set b1='KTWW8A9GFYKXJUP0X9NPDSP5SB7O' where id=2; -update noar ti set b1='KTWW8A9GFYKXJUP0X9NPDSP5SB7O' where id=2; -update noar tt set v0='QYHZD5X53RE0QP8GM' where id=2; -update noar ti set v0='QYHZD5X53RE0QP8GM' where id=2; -update noar tt set b2='IQE1UB2COCEJFFKDDGUZ7' where id=2; -update noar ti set b2='IQE1UB2COCEJFFKDDGUZ7' where id=2; -update noar tt set v0='9AJ3Q8EQFWFWBVOT' where id=3; -update noar ti set v0='9AJ3Q8EQFWFWBVOT' where id=3; -update noar tt set b0='QBDE8JTC2DDX' where id=3; -update noar ti set b0='QBDE8JTC2DDX' where id=3; -update noar tt set v0='96I9H1' where id=3; -update noar ti set v0='96I9H1' where id=3; -update noar tt set b1='HWD9ABGEEQ7UE' where id=3; -update noar ti set b1='HWD9ABGEEQ7UE' where id=3; -update noar tt set v0='JJ6K0MLWS00DDWVG2X' where id=3; -update noar ti set v0='JJ6K0MLWS00DDWVG2X' where id=3; -update noar tt set b2='I8GFU0VFFCMCD1DFJ084XBI8EKTYDJ' where id=3; -update noar ti set b2='I8GFU0VFFCMCD1DFJ084XBI8EKTYDJ' where id=3; -update noar tt set v0='K9QTGG2ISNB5I86D7F0UH' where id=4; -update noar ti set v0='K9QTGG2ISNB5I86D7F0UH' where id=4; -update noar tt set b0='BNSBHTMZRUL' where id=4; -update noar ti set b0='BNSBHTMZRUL' where id=4; -update noar tt set v0='S38FMX' where id=4; -update noar ti set v0='S38FMX' where id=4; -update noar tt set b1='XT8' where id=4; -update noar ti set b1='XT8' where id=4; -update noar tt set v0='F46238UGJVOIVC7CAJ1RAJ6' where id=4; -update noar ti set v0='F46238UGJVOIVC7CAJ1RAJ6' where id=4; -update noar tt set b2='TPIBIYLLZZG8BFI' where id=4; -update noar ti set b2='TPIBIYLLZZG8BFI' where id=4; -update noar tt set v0='FUFPMZL1LK' where id=5; -update noar ti set v0='FUFPMZL1LK' where id=5; -update noar tt set b0='QM8OA2DZ5C' where id=5; -update noar ti set b0='QM8OA2DZ5C' where id=5; -update noar tt set v0='PHS6SOBQTC13N' where id=5; -update noar ti set v0='PHS6SOBQTC13N' where id=5; -update noar tt set b1='C721' where id=5; -update noar ti set b1='C721' where id=5; -update noar tt set v0='IXEN3G' where id=5; -update noar ti set v0='IXEN3G' where id=5; -update noar tt set b2='BI' where id=5; -update noar ti set b2='BI' where id=5; -update noar tt set v0='7PC0' where id=6; -update noar ti set v0='7PC0' where id=6; -update noar tt set b0='W9Q4IW24Y' where id=6; -update noar ti set b0='W9Q4IW24Y' where id=6; -update noar tt set v0='FI1IX6IEMST95OA51GX2FHDOI' where id=6; -update noar ti set v0='FI1IX6IEMST95OA51GX2FHDOI' where id=6; -update noar tt set b1='SREC' where id=6; -update noar ti set b1='SREC' where id=6; -update noar tt set v0='RUT9A46P' where id=6; -update noar ti set v0='RUT9A46P' where id=6; -update noar tt set b2='CP460MW8K20MNDMJJV' where id=6; -update noar ti set b2='CP460MW8K20MNDMJJV' where id=6; -update noar tt set v0='0OIXNLJPF1XE3W' where id=7; -update noar ti set v0='0OIXNLJPF1XE3W' where id=7; -update noar tt set b0='5FXKKR6' where id=7; -update noar ti set b0='5FXKKR6' where id=7; -update noar tt set v0='5ZA8' where id=7; -update noar ti set v0='5ZA8' where id=7; -update noar tt set b1='MEMEMJHPB9VM7N8T16QXR55RLPP6I' where id=7; -update noar ti set b1='MEMEMJHPB9VM7N8T16QXR55RLPP6I' where id=7; -update noar tt set v0='VNKZV582' where id=7; -update noar ti set v0='VNKZV582' where id=7; -update noar tt set b2='D40FG' where id=7; -update noar ti set b2='D40FG' where id=7; -update noar tt set v0='N' where id=8; -update noar ti set v0='N' where id=8; -update noar tt set b0='CKITJ80' where id=8; -update noar ti set b0='CKITJ80' where id=8; -update noar tt set v0='TAG8KP1I70T' where id=8; -update noar ti set v0='TAG8KP1I70T' where id=8; -update noar tt set b1='MUFDAR3MKF7G2' where id=8; -update noar ti set b1='MUFDAR3MKF7G2' where id=8; -update noar tt set v0='DV6OYSYMTSL4J0MZA4BLMR4SS' where id=8; -update noar ti set v0='DV6OYSYMTSL4J0MZA4BLMR4SS' where id=8; -update noar tt set b2='JD9VBD90ISALS28FAZR' where id=8; -update noar ti set b2='JD9VBD90ISALS28FAZR' where id=8; -update noar tt set v0='N9FWVOTP' where id=9; -update noar ti set v0='N9FWVOTP' where id=9; -update noar tt set b0='4CT9STPMHN9SOLOJ8KP8X0EF' where id=9; -update noar ti set b0='4CT9STPMHN9SOLOJ8KP8X0EF' where id=9; -update noar tt set v0='K1KQ1NZL' where id=9; -update noar ti set v0='K1KQ1NZL' where id=9; -update noar tt set b1='JUJ08UIPL' where id=9; -update noar ti set b1='JUJ08UIPL' where id=9; -update noar tt set v0='KXNON0H8NK4ER1X' where id=9; -update noar ti set v0='KXNON0H8NK4ER1X' where id=9; -update noar tt set b2='7DY89UDOPJ9NGZIPHWLEPBR928K' where id=9; -update noar ti set b2='7DY89UDOPJ9NGZIPHWLEPBR928K' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - v0 varchar(256) not null, - b0 tinyblob not null, - b1 mediumblob not null, - b2 longblob not null -) engine=tokudb; -insert into tt values (1,'','','',''); -insert into tt values (2,'','','',''); -insert into tt values (3,'','','',''); -insert into tt values (4,'','','',''); -insert into tt values (5,'','','',''); -insert into tt values (6,'','','',''); -insert into tt values (7,'','','',''); -insert into tt values (8,'','','',''); -insert into tt values (9,'','','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='SVS1CJH9MHOF' where id=1; -update noar ti set v0='SVS1CJH9MHOF' where id=1; -update noar tt set b0='P6VY4DA' where id=1; -update noar ti set b0='P6VY4DA' where id=1; -update noar tt set v0='YXA4PZVFI2SAPLXO2QQK' where id=1; -update noar ti set v0='YXA4PZVFI2SAPLXO2QQK' where id=1; -update noar tt set b1='YSWGMJAJQYQYH52NEFPYL6IOLB47' where id=1; -update noar ti set b1='YSWGMJAJQYQYH52NEFPYL6IOLB47' where id=1; -update noar tt set v0='U34RKJQPULMTCLIQ9O0AHDDJCBU' where id=1; -update noar ti set v0='U34RKJQPULMTCLIQ9O0AHDDJCBU' where id=1; -update noar tt set b2='32GZ9KL715RAV5L156X07TKP27V51' where id=1; -update noar ti set b2='32GZ9KL715RAV5L156X07TKP27V51' where id=1; -update noar tt set v0='HFXPSFWSTAQBLGF' where id=2; -update noar ti set v0='HFXPSFWSTAQBLGF' where id=2; -update noar tt set b0='16799X2JGMRSJKV9JT0E56V4' where id=2; -update noar ti set b0='16799X2JGMRSJKV9JT0E56V4' where id=2; -update noar tt set v0='Q8Y38VBDRAH' where id=2; -update noar ti set v0='Q8Y38VBDRAH' where id=2; -update noar tt set b1='JADHN4OKI9LI' where id=2; -update noar ti set b1='JADHN4OKI9LI' where id=2; -update noar tt set v0='28TF2' where id=2; -update noar ti set v0='28TF2' where id=2; -update noar tt set b2='I7CRDB3S3V' where id=2; -update noar ti set b2='I7CRDB3S3V' where id=2; -update noar tt set v0='C7JR292X2L1WZV94QN' where id=3; -update noar ti set v0='C7JR292X2L1WZV94QN' where id=3; -update noar tt set b0='YF5YOYC5' where id=3; -update noar ti set b0='YF5YOYC5' where id=3; -update noar tt set v0='3' where id=3; -update noar ti set v0='3' where id=3; -update noar tt set b1='JEVTUJ40FDZ0SJ7EXAU8G' where id=3; -update noar ti set b1='JEVTUJ40FDZ0SJ7EXAU8G' where id=3; -update noar tt set v0='FLHB2KV6J4G121' where id=3; -update noar ti set v0='FLHB2KV6J4G121' where id=3; -update noar tt set b2='JT3EX2VT' where id=3; -update noar ti set b2='JT3EX2VT' where id=3; -update noar tt set v0='EE243AO5A96' where id=4; -update noar ti set v0='EE243AO5A96' where id=4; -update noar tt set b0='5HWHG' where id=4; -update noar ti set b0='5HWHG' where id=4; -update noar tt set v0='F4' where id=4; -update noar ti set v0='F4' where id=4; -update noar tt set b1='W55UA' where id=4; -update noar ti set b1='W55UA' where id=4; -update noar tt set v0='VT5GWXF3N3BWL6RJGTL1EM' where id=4; -update noar ti set v0='VT5GWXF3N3BWL6RJGTL1EM' where id=4; -update noar tt set b2='K1WURXKC32P6M942G' where id=4; -update noar ti set b2='K1WURXKC32P6M942G' where id=4; -update noar tt set v0='MVJDMZCEEXMN3NDMDI8PD' where id=5; -update noar ti set v0='MVJDMZCEEXMN3NDMDI8PD' where id=5; -update noar tt set b0='EZEFSR60' where id=5; -update noar ti set b0='EZEFSR60' where id=5; -update noar tt set v0='WUOHULEMUZ6VZEB7V13RTEEZ4O' where id=5; -update noar ti set v0='WUOHULEMUZ6VZEB7V13RTEEZ4O' where id=5; -update noar tt set b1='4MDKTF12OW' where id=5; -update noar ti set b1='4MDKTF12OW' where id=5; -update noar tt set v0='2QBROSWYOZN1UVBY83' where id=5; -update noar ti set v0='2QBROSWYOZN1UVBY83' where id=5; -update noar tt set b2='C5XEL5SD8UGGKK15V2LVL' where id=5; -update noar ti set b2='C5XEL5SD8UGGKK15V2LVL' where id=5; -update noar tt set v0='UMYDN4A9YJIWBTAACWYWPB98K7Y' where id=6; -update noar ti set v0='UMYDN4A9YJIWBTAACWYWPB98K7Y' where id=6; -update noar tt set b0='A7DYUHZ2M6FUEVZPGSORYFHLGWVE6R8' where id=6; -update noar ti set b0='A7DYUHZ2M6FUEVZPGSORYFHLGWVE6R8' where id=6; -update noar tt set v0='1WZB259RAVK7RB4OXP2FMLF8PFN' where id=6; -update noar ti set v0='1WZB259RAVK7RB4OXP2FMLF8PFN' where id=6; -update noar tt set b1='NQ' where id=6; -update noar ti set b1='NQ' where id=6; -update noar tt set v0='5M8SF1VA' where id=6; -update noar ti set v0='5M8SF1VA' where id=6; -update noar tt set b2='WHA1UQ691XYY03Z6BSSYM' where id=6; -update noar ti set b2='WHA1UQ691XYY03Z6BSSYM' where id=6; -update noar tt set v0='QW3RFE7OMBWT' where id=7; -update noar ti set v0='QW3RFE7OMBWT' where id=7; -update noar tt set b0='ZUXQIXF8ET16V9INAGS9RU7NT7VL0YB5' where id=7; -update noar ti set b0='ZUXQIXF8ET16V9INAGS9RU7NT7VL0YB5' where id=7; -update noar tt set v0='NC34Q6U1KKX666K8XF' where id=7; -update noar ti set v0='NC34Q6U1KKX666K8XF' where id=7; -update noar tt set b1='14J4V1B186PIFT7IOGS05OS' where id=7; -update noar ti set b1='14J4V1B186PIFT7IOGS05OS' where id=7; -update noar tt set v0='Q' where id=7; -update noar ti set v0='Q' where id=7; -update noar tt set b2='BMYOOMTZGF9W' where id=7; -update noar ti set b2='BMYOOMTZGF9W' where id=7; -update noar tt set v0='I26IL1UK' where id=8; -update noar ti set v0='I26IL1UK' where id=8; -update noar tt set b0='FJ6EHR' where id=8; -update noar ti set b0='FJ6EHR' where id=8; -update noar tt set v0='98S8AP88WJKA5BW7CA' where id=8; -update noar ti set v0='98S8AP88WJKA5BW7CA' where id=8; -update noar tt set b1='4ELCB1SGHORBKGVTPBV0' where id=8; -update noar ti set b1='4ELCB1SGHORBKGVTPBV0' where id=8; -update noar tt set v0='WCD3ZIUW' where id=8; -update noar ti set v0='WCD3ZIUW' where id=8; -update noar tt set b2='AHG5G' where id=8; -update noar ti set b2='AHG5G' where id=8; -update noar tt set v0='RQ955GUNMT' where id=9; -update noar ti set v0='RQ955GUNMT' where id=9; -update noar tt set b0='BWQGDY2J' where id=9; -update noar ti set b0='BWQGDY2J' where id=9; -update noar tt set v0='E2HHWLPCNR1I0PLZRMAT77' where id=9; -update noar ti set v0='E2HHWLPCNR1I0PLZRMAT77' where id=9; -update noar tt set b1='KPFBY4BJOM121XBCCCC' where id=9; -update noar ti set b1='KPFBY4BJOM121XBCCCC' where id=9; -update noar tt set v0='FEDMAGOB4PM' where id=9; -update noar ti set v0='FEDMAGOB4PM' where id=9; -update noar tt set b2='MBBATGZXRRU2P59YLV857SCUWXWWS8T4' where id=9; -update noar ti set b2='MBBATGZXRRU2P59YLV857SCUWXWWS8T4' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - v0 varchar(32) null, - b0 tinyblob null, - b1 longblob null, - b2 tinyblob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='7NSIRRE7PDO090UO532COPA' where id=1; -update noar ti set v0='7NSIRRE7PDO090UO532COPA' where id=1; -update noar tt set b0='SX1AT' where id=1; -update noar ti set b0='SX1AT' where id=1; -update noar tt set v0='N03ON7YRP8S' where id=1; -update noar ti set v0='N03ON7YRP8S' where id=1; -update noar tt set b1='89HJLL11ASIIQCQURM' where id=1; -update noar ti set b1='89HJLL11ASIIQCQURM' where id=1; -update noar tt set v0='A4AR7' where id=1; -update noar ti set v0='A4AR7' where id=1; -update noar tt set b2='4STMA40VXNVHX21JKMY0U7CRGFV' where id=1; -update noar ti set b2='4STMA40VXNVHX21JKMY0U7CRGFV' where id=1; -update noar tt set v0='CNJPQ8M5OOF43FVR565L9Q' where id=2; -update noar ti set v0='CNJPQ8M5OOF43FVR565L9Q' where id=2; -update noar tt set b0='P4N9VL314ZEE0KPBL6GMRVFOBWYS1Q4' where id=2; -update noar ti set b0='P4N9VL314ZEE0KPBL6GMRVFOBWYS1Q4' where id=2; -update noar tt set v0='FSFE' where id=2; -update noar ti set v0='FSFE' where id=2; -update noar tt set b1='B2TJ8GHM7NWEDNHL9KUUL3MX' where id=2; -update noar ti set b1='B2TJ8GHM7NWEDNHL9KUUL3MX' where id=2; -update noar tt set v0='UUQ5Z5E0CUX6IYJ8LK1NS' where id=2; -update noar ti set v0='UUQ5Z5E0CUX6IYJ8LK1NS' where id=2; -update noar tt set b2='QDH8NG2' where id=2; -update noar ti set b2='QDH8NG2' where id=2; -update noar tt set v0='DLVBH3MJV22GPNKA3K37GDENTRPIYXR4' where id=3; -update noar ti set v0='DLVBH3MJV22GPNKA3K37GDENTRPIYXR4' where id=3; -update noar tt set b0='3C2VSEMVT8XRBJ9XXS7FCDH' where id=3; -update noar ti set b0='3C2VSEMVT8XRBJ9XXS7FCDH' where id=3; -update noar tt set v0='N4LSDCST46CMPHS6QKMYNYUAB4P' where id=3; -update noar ti set v0='N4LSDCST46CMPHS6QKMYNYUAB4P' where id=3; -update noar tt set b1='ZINN5OCLXVKHNPTIQC32MEQRVF' where id=3; -update noar ti set b1='ZINN5OCLXVKHNPTIQC32MEQRVF' where id=3; -update noar tt set v0='5A' where id=3; -update noar ti set v0='5A' where id=3; -update noar tt set b2='MBQZQAJP7GE1BEINRJAX66P5RXLORBJ' where id=3; -update noar ti set b2='MBQZQAJP7GE1BEINRJAX66P5RXLORBJ' where id=3; -update noar tt set v0='5IP4Z' where id=4; -update noar ti set v0='5IP4Z' where id=4; -update noar tt set b0='F0PJ76HZYMDYELDP' where id=4; -update noar ti set b0='F0PJ76HZYMDYELDP' where id=4; -update noar tt set v0='ND3OBZ0QX22Q8T1C3JCUJ7Q970EZB' where id=4; -update noar ti set v0='ND3OBZ0QX22Q8T1C3JCUJ7Q970EZB' where id=4; -update noar tt set b1='K4AAQ02SKB1JEGCGIQHQQ59ONPLO' where id=4; -update noar ti set b1='K4AAQ02SKB1JEGCGIQHQQ59ONPLO' where id=4; -update noar tt set v0='OA4L81CUX' where id=4; -update noar ti set v0='OA4L81CUX' where id=4; -update noar tt set b2='9MH33JRVK3ZAJBAHV820B4EPI' where id=4; -update noar ti set b2='9MH33JRVK3ZAJBAHV820B4EPI' where id=4; -update noar tt set v0='NUCA6QW41U1' where id=5; -update noar ti set v0='NUCA6QW41U1' where id=5; -update noar tt set b0='W7' where id=5; -update noar ti set b0='W7' where id=5; -update noar tt set v0='7CPMRUITWASXS3PY1GRS2GJCL' where id=5; -update noar ti set v0='7CPMRUITWASXS3PY1GRS2GJCL' where id=5; -update noar tt set b1='EYP8B4K5TO5MRYM9W9PNOYSH9BVQC0K' where id=5; -update noar ti set b1='EYP8B4K5TO5MRYM9W9PNOYSH9BVQC0K' where id=5; -update noar tt set v0='9H' where id=5; -update noar ti set v0='9H' where id=5; -update noar tt set b2='VS0M366QSZP3OIJBV7VNVH04' where id=5; -update noar ti set b2='VS0M366QSZP3OIJBV7VNVH04' where id=5; -update noar tt set v0='MP' where id=6; -update noar ti set v0='MP' where id=6; -update noar tt set b0='FWNPZUJD8QQXS8LU7IVDY1SFESSS04C' where id=6; -update noar ti set b0='FWNPZUJD8QQXS8LU7IVDY1SFESSS04C' where id=6; -update noar tt set v0='NIN' where id=6; -update noar ti set v0='NIN' where id=6; -update noar tt set b1='G1VN' where id=6; -update noar ti set b1='G1VN' where id=6; -update noar tt set v0='5X4A8X9G' where id=6; -update noar ti set v0='5X4A8X9G' where id=6; -update noar tt set b2='L4TF1XNRU' where id=6; -update noar ti set b2='L4TF1XNRU' where id=6; -update noar tt set v0='CGW4S3OU4X2HWSIAI' where id=7; -update noar ti set v0='CGW4S3OU4X2HWSIAI' where id=7; -update noar tt set b0='O8DNPYHHPKAXU6UEHLVQ' where id=7; -update noar ti set b0='O8DNPYHHPKAXU6UEHLVQ' where id=7; -update noar tt set v0='RAE20RBAM4QA5NA0IR3G7EJR' where id=7; -update noar ti set v0='RAE20RBAM4QA5NA0IR3G7EJR' where id=7; -update noar tt set b1='7J25YMESJRBJIUEPPMIJFYY5EWH3QOZ' where id=7; -update noar ti set b1='7J25YMESJRBJIUEPPMIJFYY5EWH3QOZ' where id=7; -update noar tt set v0='VXXDJWEH6L0Q37VZH4' where id=7; -update noar ti set v0='VXXDJWEH6L0Q37VZH4' where id=7; -update noar tt set b2='IEAF28JH6ZODZE1RH1ADTRS6P84Q9' where id=7; -update noar ti set b2='IEAF28JH6ZODZE1RH1ADTRS6P84Q9' where id=7; -update noar tt set v0='9FM9F4HES3IDD1' where id=8; -update noar ti set v0='9FM9F4HES3IDD1' where id=8; -update noar tt set b0='1GSA50TRBY1A' where id=8; -update noar ti set b0='1GSA50TRBY1A' where id=8; -update noar tt set v0='GPKEQ6JDN3EJ' where id=8; -update noar ti set v0='GPKEQ6JDN3EJ' where id=8; -update noar tt set b1='HMCACD3NLDLBM' where id=8; -update noar ti set b1='HMCACD3NLDLBM' where id=8; -update noar tt set v0='Z603RQ186GKQSMCEEGWCS91F' where id=8; -update noar ti set v0='Z603RQ186GKQSMCEEGWCS91F' where id=8; -update noar tt set b2='N7LL9Q1GGC44BJ0U' where id=8; -update noar ti set b2='N7LL9Q1GGC44BJ0U' where id=8; -update noar tt set v0='KRQ2CIRE' where id=9; -update noar ti set v0='KRQ2CIRE' where id=9; -update noar tt set b0='0HT9ZF' where id=9; -update noar ti set b0='0HT9ZF' where id=9; -update noar tt set v0='IDM27YTA1K3D9HOGAZ' where id=9; -update noar ti set v0='IDM27YTA1K3D9HOGAZ' where id=9; -update noar tt set b1='NG5LFG7C0IR0J' where id=9; -update noar ti set b1='NG5LFG7C0IR0J' where id=9; -update noar tt set v0='83UF3JY7X03WD4KBHVN4JJA7HU4' where id=9; -update noar ti set v0='83UF3JY7X03WD4KBHVN4JJA7HU4' where id=9; -update noar tt set b2='A7VR9468YV1K7NQ83D4QW' where id=9; -update noar ti set b2='A7VR9468YV1K7NQ83D4QW' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - v0 varchar(256) null, - b0 tinyblob null, - b1 longblob null, - b2 tinyblob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='F2G0ANRRZDXN3D4FFNC' where id=1; -update noar ti set v0='F2G0ANRRZDXN3D4FFNC' where id=1; -update noar tt set b0='RUZV3AR7JIM1O52' where id=1; -update noar ti set b0='RUZV3AR7JIM1O52' where id=1; -update noar tt set v0='59UDFGL51M92PCG8O6804M7B0Z8QQ0' where id=1; -update noar ti set v0='59UDFGL51M92PCG8O6804M7B0Z8QQ0' where id=1; -update noar tt set b1='LUMO2HT0IAWOA59X6X6' where id=1; -update noar ti set b1='LUMO2HT0IAWOA59X6X6' where id=1; -update noar tt set v0='QXKFTUV6ZV4D6BQ' where id=1; -update noar ti set v0='QXKFTUV6ZV4D6BQ' where id=1; -update noar tt set b2='SE8WE0ZRY65IKZ895HX41WXKA' where id=1; -update noar ti set b2='SE8WE0ZRY65IKZ895HX41WXKA' where id=1; -update noar tt set v0='XQ7F80R840L815GP6MFV07OD0U9K1VY' where id=2; -update noar ti set v0='XQ7F80R840L815GP6MFV07OD0U9K1VY' where id=2; -update noar tt set b0='0EVJPQXQTW7Z' where id=2; -update noar ti set b0='0EVJPQXQTW7Z' where id=2; -update noar tt set v0='SH' where id=2; -update noar ti set v0='SH' where id=2; -update noar tt set b1='9E6QCLPTOE7BM' where id=2; -update noar ti set b1='9E6QCLPTOE7BM' where id=2; -update noar tt set v0='V7E1KX6HZKTERI90R9H' where id=2; -update noar ti set v0='V7E1KX6HZKTERI90R9H' where id=2; -update noar tt set b2='4343FP2BN3JCXP8BJOBSFM08RD7W6JH' where id=2; -update noar ti set b2='4343FP2BN3JCXP8BJOBSFM08RD7W6JH' where id=2; -update noar tt set v0='3YT' where id=3; -update noar ti set v0='3YT' where id=3; -update noar tt set b0='J0R9J071UFTZRFQBIV' where id=3; -update noar ti set b0='J0R9J071UFTZRFQBIV' where id=3; -update noar tt set v0='DY7R66U21GBF7H' where id=3; -update noar ti set v0='DY7R66U21GBF7H' where id=3; -update noar tt set b1='21ZAX0DMZ8EYSO8C372P80ULM' where id=3; -update noar ti set b1='21ZAX0DMZ8EYSO8C372P80ULM' where id=3; -update noar tt set v0='JLYNG0GO4GDX' where id=3; -update noar ti set v0='JLYNG0GO4GDX' where id=3; -update noar tt set b2='XSEEWBUBJIT889CWKKT3V' where id=3; -update noar ti set b2='XSEEWBUBJIT889CWKKT3V' where id=3; -update noar tt set v0='MIC2UB2IYTMJIIDM5YR' where id=4; -update noar ti set v0='MIC2UB2IYTMJIIDM5YR' where id=4; -update noar tt set b0='6MO92TRDPABU' where id=4; -update noar ti set b0='6MO92TRDPABU' where id=4; -update noar tt set v0='LUDE4FOMKEMAIAPU25V38WG' where id=4; -update noar ti set v0='LUDE4FOMKEMAIAPU25V38WG' where id=4; -update noar tt set b1='B539UQP1' where id=4; -update noar ti set b1='B539UQP1' where id=4; -update noar tt set v0='W80LXAGKMIIKDMLCA86V374D' where id=4; -update noar ti set v0='W80LXAGKMIIKDMLCA86V374D' where id=4; -update noar tt set b2='U1SC08Z' where id=4; -update noar ti set b2='U1SC08Z' where id=4; -update noar tt set v0='3GUHJWCANWBT7DRLUL0O' where id=5; -update noar ti set v0='3GUHJWCANWBT7DRLUL0O' where id=5; -update noar tt set b0='31FMH4K8' where id=5; -update noar ti set b0='31FMH4K8' where id=5; -update noar tt set v0='EEBKZDI4Z5ZD5EVY4WSG9' where id=5; -update noar ti set v0='EEBKZDI4Z5ZD5EVY4WSG9' where id=5; -update noar tt set b1='WLRJTIWA4U8IWTAIT5DBCAF' where id=5; -update noar ti set b1='WLRJTIWA4U8IWTAIT5DBCAF' where id=5; -update noar tt set v0='U2D1EB4WWYI6XBAFVLXTXF3VD8X0' where id=5; -update noar ti set v0='U2D1EB4WWYI6XBAFVLXTXF3VD8X0' where id=5; -update noar tt set b2='ETUW9U7OIZV04B9X5QR47' where id=5; -update noar ti set b2='ETUW9U7OIZV04B9X5QR47' where id=5; -update noar tt set v0='V9OVZF75BGPQF' where id=6; -update noar ti set v0='V9OVZF75BGPQF' where id=6; -update noar tt set b0='O4USARXBMSLAUMT3Z2' where id=6; -update noar ti set b0='O4USARXBMSLAUMT3Z2' where id=6; -update noar tt set v0='S' where id=6; -update noar ti set v0='S' where id=6; -update noar tt set b1='X1N47' where id=6; -update noar ti set b1='X1N47' where id=6; -update noar tt set v0='ZN3YFSON7Z3TY6SZXH09' where id=6; -update noar ti set v0='ZN3YFSON7Z3TY6SZXH09' where id=6; -update noar tt set b2='X0ILJWFPQ' where id=6; -update noar ti set b2='X0ILJWFPQ' where id=6; -update noar tt set v0='1QLFW9CL7BMT97T6LDW' where id=7; -update noar ti set v0='1QLFW9CL7BMT97T6LDW' where id=7; -update noar tt set b0='W5BW075XNE51' where id=7; -update noar ti set b0='W5BW075XNE51' where id=7; -update noar tt set v0='U79QMV33OU' where id=7; -update noar ti set v0='U79QMV33OU' where id=7; -update noar tt set b1='VQYEN3C9V4WKH158NI9B9XXO' where id=7; -update noar ti set b1='VQYEN3C9V4WKH158NI9B9XXO' where id=7; -update noar tt set v0='QOGJE1JD52Q' where id=7; -update noar ti set v0='QOGJE1JD52Q' where id=7; -update noar tt set b2='AOG6H' where id=7; -update noar ti set b2='AOG6H' where id=7; -update noar tt set v0='EXKDQW53D' where id=8; -update noar ti set v0='EXKDQW53D' where id=8; -update noar tt set b0='8DO6JVYMT6WHBPHEWU' where id=8; -update noar ti set b0='8DO6JVYMT6WHBPHEWU' where id=8; -update noar tt set v0='4MPSGJFPHGLMLJA4O' where id=8; -update noar ti set v0='4MPSGJFPHGLMLJA4O' where id=8; -update noar tt set b1='BF8S1V9QSSY' where id=8; -update noar ti set b1='BF8S1V9QSSY' where id=8; -update noar tt set v0='TK0RXP9B9UX6U2HH5Z' where id=8; -update noar ti set v0='TK0RXP9B9UX6U2HH5Z' where id=8; -update noar tt set b2='H7VMWTB517LSTLC81CQ' where id=8; -update noar ti set b2='H7VMWTB517LSTLC81CQ' where id=8; -update noar tt set v0='DMU3ZIU56SRXS6FPFPK' where id=9; -update noar ti set v0='DMU3ZIU56SRXS6FPFPK' where id=9; -update noar tt set b0='UX7KVYM0N0M95O9PEZEGVUBW' where id=9; -update noar ti set b0='UX7KVYM0N0M95O9PEZEGVUBW' where id=9; -update noar tt set v0='8MW67DCKDMWV7O9LWOZ9XT' where id=9; -update noar ti set v0='8MW67DCKDMWV7O9LWOZ9XT' where id=9; -update noar tt set b1='XPRPASTTAAY42U64R24J47B' where id=9; -update noar ti set b1='XPRPASTTAAY42U64R24J47B' where id=9; -update noar tt set v0='CP6YERJLIPJXMW55SGO31TTO' where id=9; -update noar ti set v0='CP6YERJLIPJXMW55SGO31TTO' where id=9; -update noar tt set b2='U' where id=9; -update noar ti set b2='U' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - v0 varchar(32) not null, - b0 tinyblob not null, - b1 longblob not null, - b2 tinyblob not null -) engine=tokudb; -insert into tt values (1,'','','',''); -insert into tt values (2,'','','',''); -insert into tt values (3,'','','',''); -insert into tt values (4,'','','',''); -insert into tt values (5,'','','',''); -insert into tt values (6,'','','',''); -insert into tt values (7,'','','',''); -insert into tt values (8,'','','',''); -insert into tt values (9,'','','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='GA4XSR9G0Z278E' where id=1; -update noar ti set v0='GA4XSR9G0Z278E' where id=1; -update noar tt set b0='TEMR3FDD' where id=1; -update noar ti set b0='TEMR3FDD' where id=1; -update noar tt set v0='SXZ7LDMEV1V2B3IZ0H37QK1XVKEKLG' where id=1; -update noar ti set v0='SXZ7LDMEV1V2B3IZ0H37QK1XVKEKLG' where id=1; -update noar tt set b1='D06Y0' where id=1; -update noar ti set b1='D06Y0' where id=1; -update noar tt set v0='S' where id=1; -update noar ti set v0='S' where id=1; -update noar tt set b2='20J9T1RKH7RJQVCM16OAVBF' where id=1; -update noar ti set b2='20J9T1RKH7RJQVCM16OAVBF' where id=1; -update noar tt set v0='LTC36CHJHB7KHR1ZDCW0SHY' where id=2; -update noar ti set v0='LTC36CHJHB7KHR1ZDCW0SHY' where id=2; -update noar tt set b0='A14Z7NYHDE14' where id=2; -update noar ti set b0='A14Z7NYHDE14' where id=2; -update noar tt set v0='JL2VIF22GD2CI7A8UN60AVDNE' where id=2; -update noar ti set v0='JL2VIF22GD2CI7A8UN60AVDNE' where id=2; -update noar tt set b1='HO9MK5ALLTQC' where id=2; -update noar ti set b1='HO9MK5ALLTQC' where id=2; -update noar tt set v0='UN68P4J1BF90QK1NUM20LWJFDN4SO' where id=2; -update noar ti set v0='UN68P4J1BF90QK1NUM20LWJFDN4SO' where id=2; -update noar tt set b2='ZGXMKN85YUB05XWMS76C5IY5X' where id=2; -update noar ti set b2='ZGXMKN85YUB05XWMS76C5IY5X' where id=2; -update noar tt set v0='VYX70NNZ' where id=3; -update noar ti set v0='VYX70NNZ' where id=3; -update noar tt set b0='8N4BD6CL49ZP1WM235HXJ49PFN1E' where id=3; -update noar ti set b0='8N4BD6CL49ZP1WM235HXJ49PFN1E' where id=3; -update noar tt set v0='SVHRUJ54CPM9V3VUZ5E2' where id=3; -update noar ti set v0='SVHRUJ54CPM9V3VUZ5E2' where id=3; -update noar tt set b1='E1FLSM' where id=3; -update noar ti set b1='E1FLSM' where id=3; -update noar tt set v0='VGQ1VZCNBLB2N88GZ0OYOO4I9I' where id=3; -update noar ti set v0='VGQ1VZCNBLB2N88GZ0OYOO4I9I' where id=3; -update noar tt set b2='33MZ9BRILUC46PAPTRAJY5UTC2D' where id=3; -update noar ti set b2='33MZ9BRILUC46PAPTRAJY5UTC2D' where id=3; -update noar tt set v0='D5M58L256U4RE2ZJAQUO3LXHY01PQH1G' where id=4; -update noar ti set v0='D5M58L256U4RE2ZJAQUO3LXHY01PQH1G' where id=4; -update noar tt set b0='OACS3LL439BRLI8QIBOC0RAKO' where id=4; -update noar ti set b0='OACS3LL439BRLI8QIBOC0RAKO' where id=4; -update noar tt set v0='XQ0UVE0YG4178G1CODVZFZG6Z' where id=4; -update noar ti set v0='XQ0UVE0YG4178G1CODVZFZG6Z' where id=4; -update noar tt set b1='XBH3M' where id=4; -update noar ti set b1='XBH3M' where id=4; -update noar tt set v0='F0LCQLBN08IM8PTNGP9HLWM28T' where id=4; -update noar ti set v0='F0LCQLBN08IM8PTNGP9HLWM28T' where id=4; -update noar tt set b2='9E0QDDOZ70BV7J4GPWUMTPCXWY' where id=4; -update noar ti set b2='9E0QDDOZ70BV7J4GPWUMTPCXWY' where id=4; -update noar tt set v0='19728D9MCS4' where id=5; -update noar ti set v0='19728D9MCS4' where id=5; -update noar tt set b0='5EHQWZ96F06AO9F2HO9Z6SYYCFC' where id=5; -update noar ti set b0='5EHQWZ96F06AO9F2HO9Z6SYYCFC' where id=5; -update noar tt set v0='RMWZ03T59S5ROOWWL4SO' where id=5; -update noar ti set v0='RMWZ03T59S5ROOWWL4SO' where id=5; -update noar tt set b1='3Z8GHUM0Y69R5UD5E4PWUH8HSD' where id=5; -update noar ti set b1='3Z8GHUM0Y69R5UD5E4PWUH8HSD' where id=5; -update noar tt set v0='E7UYXZ2B1SBHJ5YI5QT1KOK8DF' where id=5; -update noar ti set v0='E7UYXZ2B1SBHJ5YI5QT1KOK8DF' where id=5; -update noar tt set b2='0CDF8CJ76JCIX' where id=5; -update noar ti set b2='0CDF8CJ76JCIX' where id=5; -update noar tt set v0='S047S' where id=6; -update noar ti set v0='S047S' where id=6; -update noar tt set b0='2UAAT5D6ZDM46WZG78ULDC' where id=6; -update noar ti set b0='2UAAT5D6ZDM46WZG78ULDC' where id=6; -update noar tt set v0='DEB4J06NZKCOT8UV' where id=6; -update noar ti set v0='DEB4J06NZKCOT8UV' where id=6; -update noar tt set b1='SZEZR' where id=6; -update noar ti set b1='SZEZR' where id=6; -update noar tt set v0='A0CL8JG7AUL35' where id=6; -update noar ti set v0='A0CL8JG7AUL35' where id=6; -update noar tt set b2='J1' where id=6; -update noar ti set b2='J1' where id=6; -update noar tt set v0='9TA9ASJL9' where id=7; -update noar ti set v0='9TA9ASJL9' where id=7; -update noar tt set b0='03JPTBPKLNB1G54Y3UKFPKSX989Y' where id=7; -update noar ti set b0='03JPTBPKLNB1G54Y3UKFPKSX989Y' where id=7; -update noar tt set v0='MN9SKRX9DBQ2X8SY6B3HGMIFF' where id=7; -update noar ti set v0='MN9SKRX9DBQ2X8SY6B3HGMIFF' where id=7; -update noar tt set b1='9HB6957204TVPI1PJZIBAFHVMTXHG8' where id=7; -update noar ti set b1='9HB6957204TVPI1PJZIBAFHVMTXHG8' where id=7; -update noar tt set v0='TAD6DCQDGFSCOQMND7KFTHQEOO0T3' where id=7; -update noar ti set v0='TAD6DCQDGFSCOQMND7KFTHQEOO0T3' where id=7; -update noar tt set b2='VSD39SUUD' where id=7; -update noar ti set b2='VSD39SUUD' where id=7; -update noar tt set v0='N7DJLUZCRODL6MPDJF5N1U2MF3PPD5D' where id=8; -update noar ti set v0='N7DJLUZCRODL6MPDJF5N1U2MF3PPD5D' where id=8; -update noar tt set b0='GN3AEOJEFP12IT2Q5D786' where id=8; -update noar ti set b0='GN3AEOJEFP12IT2Q5D786' where id=8; -update noar tt set v0='BY0TR3KHUS' where id=8; -update noar ti set v0='BY0TR3KHUS' where id=8; -update noar tt set b1='PTP14D3R2FFALR7' where id=8; -update noar ti set b1='PTP14D3R2FFALR7' where id=8; -update noar tt set v0='L08T52YFXB3KCDBLNJ3PTQ99R1PI' where id=8; -update noar ti set v0='L08T52YFXB3KCDBLNJ3PTQ99R1PI' where id=8; -update noar tt set b2='5ADFE3ZKBHV7' where id=8; -update noar ti set b2='5ADFE3ZKBHV7' where id=8; -update noar tt set v0='DCEEB3ZJBY' where id=9; -update noar ti set v0='DCEEB3ZJBY' where id=9; -update noar tt set b0='N7IUX' where id=9; -update noar ti set b0='N7IUX' where id=9; -update noar tt set v0='VCHGPT' where id=9; -update noar ti set v0='VCHGPT' where id=9; -update noar tt set b1='I45GLXSBV3BX77OWMLZPM2K4GQIE' where id=9; -update noar ti set b1='I45GLXSBV3BX77OWMLZPM2K4GQIE' where id=9; -update noar tt set v0='UKEUMOA2CZBCJQQ1E3XV4R' where id=9; -update noar ti set v0='UKEUMOA2CZBCJQQ1E3XV4R' where id=9; -update noar tt set b2='A74Z0BJGH' where id=9; -update noar ti set b2='A74Z0BJGH' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - v0 varchar(256) not null, - b0 tinyblob not null, - b1 longblob not null, - b2 tinyblob not null -) engine=tokudb; -insert into tt values (1,'','','',''); -insert into tt values (2,'','','',''); -insert into tt values (3,'','','',''); -insert into tt values (4,'','','',''); -insert into tt values (5,'','','',''); -insert into tt values (6,'','','',''); -insert into tt values (7,'','','',''); -insert into tt values (8,'','','',''); -insert into tt values (9,'','','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='RHX6ZSEPWDD180CGDNX2ANY4L6MVRZ2' where id=1; -update noar ti set v0='RHX6ZSEPWDD180CGDNX2ANY4L6MVRZ2' where id=1; -update noar tt set b0='SI7' where id=1; -update noar ti set b0='SI7' where id=1; -update noar tt set v0='Z95A' where id=1; -update noar ti set v0='Z95A' where id=1; -update noar tt set b1='XMMOVC3LW7MB1GHC7FML31A640CG' where id=1; -update noar ti set b1='XMMOVC3LW7MB1GHC7FML31A640CG' where id=1; -update noar tt set v0='F02EU' where id=1; -update noar ti set v0='F02EU' where id=1; -update noar tt set b2='JKWK22SXMSVES6SL311FRL62PRSHWK' where id=1; -update noar ti set b2='JKWK22SXMSVES6SL311FRL62PRSHWK' where id=1; -update noar tt set v0='A0QIZ6RB9BER48PW9XFIN' where id=2; -update noar ti set v0='A0QIZ6RB9BER48PW9XFIN' where id=2; -update noar tt set b0='ZP5UWW' where id=2; -update noar ti set b0='ZP5UWW' where id=2; -update noar tt set v0='7AW12LPSV3PBNK1BWQ8EXJT86' where id=2; -update noar ti set v0='7AW12LPSV3PBNK1BWQ8EXJT86' where id=2; -update noar tt set b1='V2LS' where id=2; -update noar ti set b1='V2LS' where id=2; -update noar tt set v0='1HPC7O56RS' where id=2; -update noar ti set v0='1HPC7O56RS' where id=2; -update noar tt set b2='2PI' where id=2; -update noar ti set b2='2PI' where id=2; -update noar tt set v0='05OYNJDEW43LOKF35I8QQKT1' where id=3; -update noar ti set v0='05OYNJDEW43LOKF35I8QQKT1' where id=3; -update noar tt set b0='AD' where id=3; -update noar ti set b0='AD' where id=3; -update noar tt set v0='HAQ2W' where id=3; -update noar ti set v0='HAQ2W' where id=3; -update noar tt set b1='0L5BOQQDOPLA6RFIQCUF1R9G86BQVH64' where id=3; -update noar ti set b1='0L5BOQQDOPLA6RFIQCUF1R9G86BQVH64' where id=3; -update noar tt set v0='W7YAHULSVIZN' where id=3; -update noar ti set v0='W7YAHULSVIZN' where id=3; -update noar tt set b2='MELO6E1P5A0PRF9E8VIV7DQ9' where id=3; -update noar ti set b2='MELO6E1P5A0PRF9E8VIV7DQ9' where id=3; -update noar tt set v0='8' where id=4; -update noar ti set v0='8' where id=4; -update noar tt set b0='Z35O2JHUSNVD4M9OLS7IKLZ31XIKSZK8' where id=4; -update noar ti set b0='Z35O2JHUSNVD4M9OLS7IKLZ31XIKSZK8' where id=4; -update noar tt set v0='X6PSJ48A1HL' where id=4; -update noar ti set v0='X6PSJ48A1HL' where id=4; -update noar tt set b1='EZNSOAW8EVHWU1MIE' where id=4; -update noar ti set b1='EZNSOAW8EVHWU1MIE' where id=4; -update noar tt set v0='F7S5LV11CKC0U3IM' where id=4; -update noar ti set v0='F7S5LV11CKC0U3IM' where id=4; -update noar tt set b2='3Y8D922DCGB3PH37VOH030VJ56P5IT' where id=4; -update noar ti set b2='3Y8D922DCGB3PH37VOH030VJ56P5IT' where id=4; -update noar tt set v0='ZE1ZSJWS3GCH' where id=5; -update noar ti set v0='ZE1ZSJWS3GCH' where id=5; -update noar tt set b0='PCZDZTQDK430MZCCM3ED4' where id=5; -update noar ti set b0='PCZDZTQDK430MZCCM3ED4' where id=5; -update noar tt set v0='HN2Z9DSE02K9MU2HY42JS0DN' where id=5; -update noar ti set v0='HN2Z9DSE02K9MU2HY42JS0DN' where id=5; -update noar tt set b1='LN30P564TPXKP' where id=5; -update noar ti set b1='LN30P564TPXKP' where id=5; -update noar tt set v0='QS6PSAF6OG0L583UJ' where id=5; -update noar ti set v0='QS6PSAF6OG0L583UJ' where id=5; -update noar tt set b2='MX' where id=5; -update noar ti set b2='MX' where id=5; -update noar tt set v0='72J8TF5LRK6XC8AKD438HXCI4L' where id=6; -update noar ti set v0='72J8TF5LRK6XC8AKD438HXCI4L' where id=6; -update noar tt set b0='Z8TXQHOD' where id=6; -update noar ti set b0='Z8TXQHOD' where id=6; -update noar tt set v0='FAUAR4GWV1M1HHIXYVQ1' where id=6; -update noar ti set v0='FAUAR4GWV1M1HHIXYVQ1' where id=6; -update noar tt set b1='FUX4LNKYFX1' where id=6; -update noar ti set b1='FUX4LNKYFX1' where id=6; -update noar tt set v0='JSZMC2BR1W5EQ3P' where id=6; -update noar ti set v0='JSZMC2BR1W5EQ3P' where id=6; -update noar tt set b2='8LT9TI' where id=6; -update noar ti set b2='8LT9TI' where id=6; -update noar tt set v0='NUERFXT5L7YF9A' where id=7; -update noar ti set v0='NUERFXT5L7YF9A' where id=7; -update noar tt set b0='RHIM46ID550YIE940WF819NFVU6' where id=7; -update noar ti set b0='RHIM46ID550YIE940WF819NFVU6' where id=7; -update noar tt set v0='5QIFBBQ8NXLZPVQRJAIAN7TZ2' where id=7; -update noar ti set v0='5QIFBBQ8NXLZPVQRJAIAN7TZ2' where id=7; -update noar tt set b1='YO9LBZV13IGKDV' where id=7; -update noar ti set b1='YO9LBZV13IGKDV' where id=7; -update noar tt set v0='ZCKKDV' where id=7; -update noar ti set v0='ZCKKDV' where id=7; -update noar tt set b2='PWFQBE96O4SM24UFVMUL70WGQR' where id=7; -update noar ti set b2='PWFQBE96O4SM24UFVMUL70WGQR' where id=7; -update noar tt set v0='PPW0557YUDC1V3JEI' where id=8; -update noar ti set v0='PPW0557YUDC1V3JEI' where id=8; -update noar tt set b0='1GBHWSS8HEAMGQE' where id=8; -update noar ti set b0='1GBHWSS8HEAMGQE' where id=8; -update noar tt set v0='L' where id=8; -update noar ti set v0='L' where id=8; -update noar tt set b1='KNJ64RW2F3D3F5C2VR8453SYJ' where id=8; -update noar ti set b1='KNJ64RW2F3D3F5C2VR8453SYJ' where id=8; -update noar tt set v0='FMUI1JLJ2UOP5JTF7Z' where id=8; -update noar ti set v0='FMUI1JLJ2UOP5JTF7Z' where id=8; -update noar tt set b2='OJMB9J9ASHW408KK7X5KJ7NT5L9KKUW' where id=8; -update noar ti set b2='OJMB9J9ASHW408KK7X5KJ7NT5L9KKUW' where id=8; -update noar tt set v0='5ZAQVJGR0FF9L2KJK' where id=9; -update noar ti set v0='5ZAQVJGR0FF9L2KJK' where id=9; -update noar tt set b0='J1EZ6F00EDN8JHDQ' where id=9; -update noar ti set b0='J1EZ6F00EDN8JHDQ' where id=9; -update noar tt set v0='JHHUV1NTE0GRIULJ1OCTW3R7OWE' where id=9; -update noar ti set v0='JHHUV1NTE0GRIULJ1OCTW3R7OWE' where id=9; -update noar tt set b1='Z' where id=9; -update noar ti set b1='Z' where id=9; -update noar tt set v0='MH6LDXE5053QJY5CP3' where id=9; -update noar ti set v0='MH6LDXE5053QJY5CP3' where id=9; -update noar tt set b2='024K7PZ8XQBVSKCH' where id=9; -update noar ti set b2='024K7PZ8XQBVSKCH' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - v0 varchar(32) null, - b0 tinyblob null, - b1 longblob null, - b2 blob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='3TALMJEYUL3XVZWSI7H4LOG5B8NB9' where id=1; -update noar ti set v0='3TALMJEYUL3XVZWSI7H4LOG5B8NB9' where id=1; -update noar tt set b0='ZD5' where id=1; -update noar ti set b0='ZD5' where id=1; -update noar tt set v0='FC4DBP6K33E5XYCUY5B5IVTYVJ' where id=1; -update noar ti set v0='FC4DBP6K33E5XYCUY5B5IVTYVJ' where id=1; -update noar tt set b1='ZJ0Q56' where id=1; -update noar ti set b1='ZJ0Q56' where id=1; -update noar tt set v0='1PDOQ4MJJPZF2DA5LKYDX' where id=1; -update noar ti set v0='1PDOQ4MJJPZF2DA5LKYDX' where id=1; -update noar tt set b2='6M' where id=1; -update noar ti set b2='6M' where id=1; -update noar tt set v0='NJMF27L482YFB4' where id=2; -update noar ti set v0='NJMF27L482YFB4' where id=2; -update noar tt set b0='Q8X6R56GI5HTNHSOY22485RKT' where id=2; -update noar ti set b0='Q8X6R56GI5HTNHSOY22485RKT' where id=2; -update noar tt set v0='WX2UGT' where id=2; -update noar ti set v0='WX2UGT' where id=2; -update noar tt set b1='MBXN' where id=2; -update noar ti set b1='MBXN' where id=2; -update noar tt set v0='JER6ANLDH74K352P' where id=2; -update noar ti set v0='JER6ANLDH74K352P' where id=2; -update noar tt set b2='89SH17DPU15DWFA8A8M90SFDLS4WC' where id=2; -update noar ti set b2='89SH17DPU15DWFA8A8M90SFDLS4WC' where id=2; -update noar tt set v0='CJOK8J430TWBC' where id=3; -update noar ti set v0='CJOK8J430TWBC' where id=3; -update noar tt set b0='BGJZL25W5BPD3BXNEYKQ7ZJK8KE' where id=3; -update noar ti set b0='BGJZL25W5BPD3BXNEYKQ7ZJK8KE' where id=3; -update noar tt set v0='1LI25' where id=3; -update noar ti set v0='1LI25' where id=3; -update noar tt set b1='PK2SEUOKCJNTQJGL' where id=3; -update noar ti set b1='PK2SEUOKCJNTQJGL' where id=3; -update noar tt set v0='TTRMTRTC' where id=3; -update noar ti set v0='TTRMTRTC' where id=3; -update noar tt set b2='ON6G2O3V07RW777B8VBP' where id=3; -update noar ti set b2='ON6G2O3V07RW777B8VBP' where id=3; -update noar tt set v0='PVYFTZ7M3UZWX44QV8HSXO8AC5EHBK5' where id=4; -update noar ti set v0='PVYFTZ7M3UZWX44QV8HSXO8AC5EHBK5' where id=4; -update noar tt set b0='AICM6Q7EVUXJPPPQGZS' where id=4; -update noar ti set b0='AICM6Q7EVUXJPPPQGZS' where id=4; -update noar tt set v0='S59B8H97M9YHLF3BR0ATIM7RQJSJ2LL' where id=4; -update noar ti set v0='S59B8H97M9YHLF3BR0ATIM7RQJSJ2LL' where id=4; -update noar tt set b1='IJAYTD8WDYPV1B' where id=4; -update noar ti set b1='IJAYTD8WDYPV1B' where id=4; -update noar tt set v0='IX2IS2P9DA9WK872' where id=4; -update noar ti set v0='IX2IS2P9DA9WK872' where id=4; -update noar tt set b2='C' where id=4; -update noar ti set b2='C' where id=4; -update noar tt set v0='CJOCR90MH9JQ8D' where id=5; -update noar ti set v0='CJOCR90MH9JQ8D' where id=5; -update noar tt set b0='M0XN1R6D' where id=5; -update noar ti set b0='M0XN1R6D' where id=5; -update noar tt set v0='A7W3X0Y0QKHU' where id=5; -update noar ti set v0='A7W3X0Y0QKHU' where id=5; -update noar tt set b1='AWTGHB5SWCU4LD' where id=5; -update noar ti set b1='AWTGHB5SWCU4LD' where id=5; -update noar tt set v0='HF3JFPAZEGZ1D' where id=5; -update noar ti set v0='HF3JFPAZEGZ1D' where id=5; -update noar tt set b2='ESW87EBUDE' where id=5; -update noar ti set b2='ESW87EBUDE' where id=5; -update noar tt set v0='M9' where id=6; -update noar ti set v0='M9' where id=6; -update noar tt set b0='01BL1PGPWRO' where id=6; -update noar ti set b0='01BL1PGPWRO' where id=6; -update noar tt set v0='J96OL2QIUN2TW69N4VUOZR' where id=6; -update noar ti set v0='J96OL2QIUN2TW69N4VUOZR' where id=6; -update noar tt set b1='J6NBMDM4L3IR3W3TF1KSAW9WGRX4' where id=6; -update noar ti set b1='J6NBMDM4L3IR3W3TF1KSAW9WGRX4' where id=6; -update noar tt set v0='WEDXHHK9NGV6F2MK4N8O' where id=6; -update noar ti set v0='WEDXHHK9NGV6F2MK4N8O' where id=6; -update noar tt set b2='UI9VZ97888W9U9I1ATYP9ILSYQB' where id=6; -update noar ti set b2='UI9VZ97888W9U9I1ATYP9ILSYQB' where id=6; -update noar tt set v0='UVBH0R7QFXO8Q9DA7AVGW' where id=7; -update noar ti set v0='UVBH0R7QFXO8Q9DA7AVGW' where id=7; -update noar tt set b0='C7G734CC8APAQU19W' where id=7; -update noar ti set b0='C7G734CC8APAQU19W' where id=7; -update noar tt set v0='EG' where id=7; -update noar ti set v0='EG' where id=7; -update noar tt set b1='H344WC1PKOUFI' where id=7; -update noar ti set b1='H344WC1PKOUFI' where id=7; -update noar tt set v0='01Q0UMR8SZ65S3FZCZ6PQL' where id=7; -update noar ti set v0='01Q0UMR8SZ65S3FZCZ6PQL' where id=7; -update noar tt set b2='8A' where id=7; -update noar ti set b2='8A' where id=7; -update noar tt set v0='GSS1TMSTG2UK7D2SJ7MRTBX0VSJ1IT' where id=8; -update noar ti set v0='GSS1TMSTG2UK7D2SJ7MRTBX0VSJ1IT' where id=8; -update noar tt set b0='N0AWR0KUY6C6FZJN00J08YH9UELJBGPY' where id=8; -update noar ti set b0='N0AWR0KUY6C6FZJN00J08YH9UELJBGPY' where id=8; -update noar tt set v0='26A7IIPNZ6030EH336IOI09DIRV' where id=8; -update noar ti set v0='26A7IIPNZ6030EH336IOI09DIRV' where id=8; -update noar tt set b1='AU' where id=8; -update noar ti set b1='AU' where id=8; -update noar tt set v0='YBTE4ZO' where id=8; -update noar ti set v0='YBTE4ZO' where id=8; -update noar tt set b2='H' where id=8; -update noar ti set b2='H' where id=8; -update noar tt set v0='9C5BLT0VXJ79UL' where id=9; -update noar ti set v0='9C5BLT0VXJ79UL' where id=9; -update noar tt set b0='QDRBV6WR9LGS' where id=9; -update noar ti set b0='QDRBV6WR9LGS' where id=9; -update noar tt set v0='R47BDLVJW298YO98WWLFZE6R8P' where id=9; -update noar ti set v0='R47BDLVJW298YO98WWLFZE6R8P' where id=9; -update noar tt set b1='8OBMNVTOYCIVM' where id=9; -update noar ti set b1='8OBMNVTOYCIVM' where id=9; -update noar tt set v0='G8PRUEWJJQ4S4VMVL146KK21F' where id=9; -update noar ti set v0='G8PRUEWJJQ4S4VMVL146KK21F' where id=9; -update noar tt set b2='AP8A8R75IK6X5' where id=9; -update noar ti set b2='AP8A8R75IK6X5' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - v0 varchar(256) null, - b0 tinyblob null, - b1 longblob null, - b2 blob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='ZBR1RZH5RUAB9ZF0E65R' where id=1; -update noar ti set v0='ZBR1RZH5RUAB9ZF0E65R' where id=1; -update noar tt set b0='C2X2' where id=1; -update noar ti set b0='C2X2' where id=1; -update noar tt set v0='A9Y1CUFPYLMJN1K6TGVT3N0SFR3' where id=1; -update noar ti set v0='A9Y1CUFPYLMJN1K6TGVT3N0SFR3' where id=1; -update noar tt set b1='31CY2Y3K6S6CJK' where id=1; -update noar ti set b1='31CY2Y3K6S6CJK' where id=1; -update noar tt set v0='F96F4D0HIC7BE52' where id=1; -update noar ti set v0='F96F4D0HIC7BE52' where id=1; -update noar tt set b2='39OLOE6J36V8AK47L6M2' where id=1; -update noar ti set b2='39OLOE6J36V8AK47L6M2' where id=1; -update noar tt set v0='PBF2LOHM5GG1ZW3X6R8OVHTHDX' where id=2; -update noar ti set v0='PBF2LOHM5GG1ZW3X6R8OVHTHDX' where id=2; -update noar tt set b0='B56' where id=2; -update noar ti set b0='B56' where id=2; -update noar tt set v0='6BH0DT56RVDK0GI2ZJVQDE9T' where id=2; -update noar ti set v0='6BH0DT56RVDK0GI2ZJVQDE9T' where id=2; -update noar tt set b1='F' where id=2; -update noar ti set b1='F' where id=2; -update noar tt set v0='K2JYX5OEGDKV' where id=2; -update noar ti set v0='K2JYX5OEGDKV' where id=2; -update noar tt set b2='Q8JZYWVE' where id=2; -update noar ti set b2='Q8JZYWVE' where id=2; -update noar tt set v0='1C' where id=3; -update noar ti set v0='1C' where id=3; -update noar tt set b0='WPG4H5A79SU0D7DJPEGTU6F7I1FF' where id=3; -update noar ti set b0='WPG4H5A79SU0D7DJPEGTU6F7I1FF' where id=3; -update noar tt set v0='W3BX3H' where id=3; -update noar ti set v0='W3BX3H' where id=3; -update noar tt set b1='34AHS5BO06X7CALPGKG10GB' where id=3; -update noar ti set b1='34AHS5BO06X7CALPGKG10GB' where id=3; -update noar tt set v0='VDR59ZYYFIE3DI9X1U36U5I' where id=3; -update noar ti set v0='VDR59ZYYFIE3DI9X1U36U5I' where id=3; -update noar tt set b2='YCT5173NUTGAEU8WW' where id=3; -update noar ti set b2='YCT5173NUTGAEU8WW' where id=3; -update noar tt set v0='PCT' where id=4; -update noar ti set v0='PCT' where id=4; -update noar tt set b0='RLXM8NM70GJPV' where id=4; -update noar ti set b0='RLXM8NM70GJPV' where id=4; -update noar tt set v0='XC3MVDL' where id=4; -update noar ti set v0='XC3MVDL' where id=4; -update noar tt set b1='NR4' where id=4; -update noar ti set b1='NR4' where id=4; -update noar tt set v0='CF17CTN2KQAONCRP' where id=4; -update noar ti set v0='CF17CTN2KQAONCRP' where id=4; -update noar tt set b2='8BV78G085HMHP5MAEEPA209V1AKXMTI0' where id=4; -update noar ti set b2='8BV78G085HMHP5MAEEPA209V1AKXMTI0' where id=4; -update noar tt set v0='OCSB15Z04JBUEKYEEO7REHTKDOAGP8' where id=5; -update noar ti set v0='OCSB15Z04JBUEKYEEO7REHTKDOAGP8' where id=5; -update noar tt set b0='JPXH5JVYA8O' where id=5; -update noar ti set b0='JPXH5JVYA8O' where id=5; -update noar tt set v0='UBI71D4EER47V7VXJL666V3' where id=5; -update noar ti set v0='UBI71D4EER47V7VXJL666V3' where id=5; -update noar tt set b1='FL1EB8J3ZUZ2AXNYV4U4N' where id=5; -update noar ti set b1='FL1EB8J3ZUZ2AXNYV4U4N' where id=5; -update noar tt set v0='4IBMWD' where id=5; -update noar ti set v0='4IBMWD' where id=5; -update noar tt set b2='IVREG6VT55HW64B7ZJ54CW41I' where id=5; -update noar ti set b2='IVREG6VT55HW64B7ZJ54CW41I' where id=5; -update noar tt set v0='NGACLMQGQ' where id=6; -update noar ti set v0='NGACLMQGQ' where id=6; -update noar tt set b0='HSQ4' where id=6; -update noar ti set b0='HSQ4' where id=6; -update noar tt set v0='5TG8QKKFQZKDJ8' where id=6; -update noar ti set v0='5TG8QKKFQZKDJ8' where id=6; -update noar tt set b1='IYTGSKCO4LIASOV' where id=6; -update noar ti set b1='IYTGSKCO4LIASOV' where id=6; -update noar tt set v0='QB14ZKHM' where id=6; -update noar ti set v0='QB14ZKHM' where id=6; -update noar tt set b2='WJMZ492D75GTRN' where id=6; -update noar ti set b2='WJMZ492D75GTRN' where id=6; -update noar tt set v0='JHOXU6BXOTS' where id=7; -update noar ti set v0='JHOXU6BXOTS' where id=7; -update noar tt set b0='6Y6JSJ85LJ7' where id=7; -update noar ti set b0='6Y6JSJ85LJ7' where id=7; -update noar tt set v0='CI3JTO' where id=7; -update noar ti set v0='CI3JTO' where id=7; -update noar tt set b1='A00CSY95X2Y' where id=7; -update noar ti set b1='A00CSY95X2Y' where id=7; -update noar tt set v0='U6T4' where id=7; -update noar ti set v0='U6T4' where id=7; -update noar tt set b2='L06WPBJJK3L04PYKIVVJ71MZ1XHK4' where id=7; -update noar ti set b2='L06WPBJJK3L04PYKIVVJ71MZ1XHK4' where id=7; -update noar tt set v0='F' where id=8; -update noar ti set v0='F' where id=8; -update noar tt set b0='QNG8KVK97AHEQL3L3WCDKBUA57' where id=8; -update noar ti set b0='QNG8KVK97AHEQL3L3WCDKBUA57' where id=8; -update noar tt set v0='F5I7DC8T96JXREQAY7LD0YY8NI5' where id=8; -update noar ti set v0='F5I7DC8T96JXREQAY7LD0YY8NI5' where id=8; -update noar tt set b1='42' where id=8; -update noar ti set b1='42' where id=8; -update noar tt set v0='SIJKM2IZC24XCSK' where id=8; -update noar ti set v0='SIJKM2IZC24XCSK' where id=8; -update noar tt set b2='WGYIO39KYRMHZGMD3CJGLEO' where id=8; -update noar ti set b2='WGYIO39KYRMHZGMD3CJGLEO' where id=8; -update noar tt set v0='6M6DPA' where id=9; -update noar ti set v0='6M6DPA' where id=9; -update noar tt set b0='ANMLOMQZL47J897PJM0QLF' where id=9; -update noar ti set b0='ANMLOMQZL47J897PJM0QLF' where id=9; -update noar tt set v0='93' where id=9; -update noar ti set v0='93' where id=9; -update noar tt set b1='PF2FBQTEAK4D845ZL851RKUSOKK5044X' where id=9; -update noar ti set b1='PF2FBQTEAK4D845ZL851RKUSOKK5044X' where id=9; -update noar tt set v0='VWACSI' where id=9; -update noar ti set v0='VWACSI' where id=9; -update noar tt set b2='1T99QYQZE8JZWF3XYKYDDQF' where id=9; -update noar ti set b2='1T99QYQZE8JZWF3XYKYDDQF' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - v0 varchar(32) not null, - b0 tinyblob not null, - b1 longblob not null, - b2 blob not null -) engine=tokudb; -insert into tt values (1,'','','',''); -insert into tt values (2,'','','',''); -insert into tt values (3,'','','',''); -insert into tt values (4,'','','',''); -insert into tt values (5,'','','',''); -insert into tt values (6,'','','',''); -insert into tt values (7,'','','',''); -insert into tt values (8,'','','',''); -insert into tt values (9,'','','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='1LMZOTE3XY9U0S' where id=1; -update noar ti set v0='1LMZOTE3XY9U0S' where id=1; -update noar tt set b0='CUPMYGJ' where id=1; -update noar ti set b0='CUPMYGJ' where id=1; -update noar tt set v0='FN9FX81B3UFX2SXR' where id=1; -update noar ti set v0='FN9FX81B3UFX2SXR' where id=1; -update noar tt set b1='KRNP1GQ2JAESAYMXMM7BZ7TOO6A1S' where id=1; -update noar ti set b1='KRNP1GQ2JAESAYMXMM7BZ7TOO6A1S' where id=1; -update noar tt set v0='KGXCKH7NCX6JM8SY52' where id=1; -update noar ti set v0='KGXCKH7NCX6JM8SY52' where id=1; -update noar tt set b2='I' where id=1; -update noar ti set b2='I' where id=1; -update noar tt set v0='PCY9DN7O0DJY94Z3ZJBIBKKDMXA43R3W' where id=2; -update noar ti set v0='PCY9DN7O0DJY94Z3ZJBIBKKDMXA43R3W' where id=2; -update noar tt set b0='B8M46N' where id=2; -update noar ti set b0='B8M46N' where id=2; -update noar tt set v0='IEECMOP0VF8OJRMYRJE' where id=2; -update noar ti set v0='IEECMOP0VF8OJRMYRJE' where id=2; -update noar tt set b1='2IVOQS9' where id=2; -update noar ti set b1='2IVOQS9' where id=2; -update noar tt set v0='T6U6G727MWLCYX7' where id=2; -update noar ti set v0='T6U6G727MWLCYX7' where id=2; -update noar tt set b2='R8RTHQRQHLDEV0SCFCZKD2TV64PX' where id=2; -update noar ti set b2='R8RTHQRQHLDEV0SCFCZKD2TV64PX' where id=2; -update noar tt set v0='726HW8CG3BF39PJN98BEHYXF3' where id=3; -update noar ti set v0='726HW8CG3BF39PJN98BEHYXF3' where id=3; -update noar tt set b0='1LA6L30GVWN7T212HXZVMTGKSRY' where id=3; -update noar ti set b0='1LA6L30GVWN7T212HXZVMTGKSRY' where id=3; -update noar tt set v0='7V3J45UAWACHDD2' where id=3; -update noar ti set v0='7V3J45UAWACHDD2' where id=3; -update noar tt set b1='V5Q9T7XY5M1BKDK' where id=3; -update noar ti set b1='V5Q9T7XY5M1BKDK' where id=3; -update noar tt set v0='D' where id=3; -update noar ti set v0='D' where id=3; -update noar tt set b2='AXDZ1QSJVUI' where id=3; -update noar ti set b2='AXDZ1QSJVUI' where id=3; -update noar tt set v0='V' where id=4; -update noar ti set v0='V' where id=4; -update noar tt set b0='W2DNZAH0O' where id=4; -update noar ti set b0='W2DNZAH0O' where id=4; -update noar tt set v0='ANWLI9YP8Z9L' where id=4; -update noar ti set v0='ANWLI9YP8Z9L' where id=4; -update noar tt set b1='ACYL' where id=4; -update noar ti set b1='ACYL' where id=4; -update noar tt set v0='7W' where id=4; -update noar ti set v0='7W' where id=4; -update noar tt set b2='UK30' where id=4; -update noar ti set b2='UK30' where id=4; -update noar tt set v0='S4K3NEZLQY5IVB0M' where id=5; -update noar ti set v0='S4K3NEZLQY5IVB0M' where id=5; -update noar tt set b0='GOE3J8G2HLU7NO1NC7YTF0ZJB1TJ2V8Y' where id=5; -update noar ti set b0='GOE3J8G2HLU7NO1NC7YTF0ZJB1TJ2V8Y' where id=5; -update noar tt set v0='KUVK8YAEOAGXM20XI' where id=5; -update noar ti set v0='KUVK8YAEOAGXM20XI' where id=5; -update noar tt set b1='NHOU6FTFZJ' where id=5; -update noar ti set b1='NHOU6FTFZJ' where id=5; -update noar tt set v0='CC3TD' where id=5; -update noar ti set v0='CC3TD' where id=5; -update noar tt set b2='R' where id=5; -update noar ti set b2='R' where id=5; -update noar tt set v0='X2DG' where id=6; -update noar ti set v0='X2DG' where id=6; -update noar tt set b0='1XOJRLV68F9SRS5GK0LLAGQC6ZWMDJ2X' where id=6; -update noar ti set b0='1XOJRLV68F9SRS5GK0LLAGQC6ZWMDJ2X' where id=6; -update noar tt set v0='7Z4ZCTYWEK' where id=6; -update noar ti set v0='7Z4ZCTYWEK' where id=6; -update noar tt set b1='ZWG6AIH2SJGSBZELCWXKBXP1SVFKE5' where id=6; -update noar ti set b1='ZWG6AIH2SJGSBZELCWXKBXP1SVFKE5' where id=6; -update noar tt set v0='6AKN4445HHPP' where id=6; -update noar ti set v0='6AKN4445HHPP' where id=6; -update noar tt set b2='CLF95AWIND8GV2KD2FYQF' where id=6; -update noar ti set b2='CLF95AWIND8GV2KD2FYQF' where id=6; -update noar tt set v0='6QSH5C3E50YL0VWP2RXECRE5' where id=7; -update noar ti set v0='6QSH5C3E50YL0VWP2RXECRE5' where id=7; -update noar tt set b0='CWK3PH9G1MZX81VW464JNOU35XWN64MA' where id=7; -update noar ti set b0='CWK3PH9G1MZX81VW464JNOU35XWN64MA' where id=7; -update noar tt set v0='8LUAG8979YKCQ5IDM48NP6SRYYY' where id=7; -update noar ti set v0='8LUAG8979YKCQ5IDM48NP6SRYYY' where id=7; -update noar tt set b1='INB6O5' where id=7; -update noar ti set b1='INB6O5' where id=7; -update noar tt set v0='P7R0PJSA9SG9MHOBQ76J' where id=7; -update noar ti set v0='P7R0PJSA9SG9MHOBQ76J' where id=7; -update noar tt set b2='Z7LGX63MY' where id=7; -update noar ti set b2='Z7LGX63MY' where id=7; -update noar tt set v0='OMLHP4FWS24W0BWIIVI' where id=8; -update noar ti set v0='OMLHP4FWS24W0BWIIVI' where id=8; -update noar tt set b0='948CFC3U' where id=8; -update noar ti set b0='948CFC3U' where id=8; -update noar tt set v0='UEEIQREKSD0MN569VQLBPLGJ' where id=8; -update noar ti set v0='UEEIQREKSD0MN569VQLBPLGJ' where id=8; -update noar tt set b1='6G13H' where id=8; -update noar ti set b1='6G13H' where id=8; -update noar tt set v0='L4HS7I1UCM55GZ7UUP1V7Z98YFWOT8K' where id=8; -update noar ti set v0='L4HS7I1UCM55GZ7UUP1V7Z98YFWOT8K' where id=8; -update noar tt set b2='UNO4F99E' where id=8; -update noar ti set b2='UNO4F99E' where id=8; -update noar tt set v0='OF9XI5OG3QZST5PLJ1' where id=9; -update noar ti set v0='OF9XI5OG3QZST5PLJ1' where id=9; -update noar tt set b0='YVETNAS0YLVN4L' where id=9; -update noar ti set b0='YVETNAS0YLVN4L' where id=9; -update noar tt set v0='PQ51L48FARVZ60JZ8SCUJLTYSXD' where id=9; -update noar ti set v0='PQ51L48FARVZ60JZ8SCUJLTYSXD' where id=9; -update noar tt set b1='C2X17SJLT7HU' where id=9; -update noar ti set b1='C2X17SJLT7HU' where id=9; -update noar tt set v0='B84SU27LLRS29VMYCTDV24Z5ZHS' where id=9; -update noar ti set v0='B84SU27LLRS29VMYCTDV24Z5ZHS' where id=9; -update noar tt set b2='WQ82OA3HKPQ' where id=9; -update noar ti set b2='WQ82OA3HKPQ' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - v0 varchar(256) not null, - b0 tinyblob not null, - b1 longblob not null, - b2 blob not null -) engine=tokudb; -insert into tt values (1,'','','',''); -insert into tt values (2,'','','',''); -insert into tt values (3,'','','',''); -insert into tt values (4,'','','',''); -insert into tt values (5,'','','',''); -insert into tt values (6,'','','',''); -insert into tt values (7,'','','',''); -insert into tt values (8,'','','',''); -insert into tt values (9,'','','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='D' where id=1; -update noar ti set v0='D' where id=1; -update noar tt set b0='ZS8LHKTKFCCQM5XQO40MWK' where id=1; -update noar ti set b0='ZS8LHKTKFCCQM5XQO40MWK' where id=1; -update noar tt set v0='AW6Z46H0P198' where id=1; -update noar ti set v0='AW6Z46H0P198' where id=1; -update noar tt set b1='ETFCJ7AA5HOCYE52I' where id=1; -update noar ti set b1='ETFCJ7AA5HOCYE52I' where id=1; -update noar tt set v0='40HVG1VL1CFW7WUPBTHZMD' where id=1; -update noar ti set v0='40HVG1VL1CFW7WUPBTHZMD' where id=1; -update noar tt set b2='JBB9Z8GP3' where id=1; -update noar ti set b2='JBB9Z8GP3' where id=1; -update noar tt set v0='9TAE66146A35ROEPHKFBVR63HCUOJZ' where id=2; -update noar ti set v0='9TAE66146A35ROEPHKFBVR63HCUOJZ' where id=2; -update noar tt set b0='4AY3AHHIKACY7L8QDBMLSXMWZFAYOTQ' where id=2; -update noar ti set b0='4AY3AHHIKACY7L8QDBMLSXMWZFAYOTQ' where id=2; -update noar tt set v0='JVUG6509WQXQCRAT0FKBP9S' where id=2; -update noar ti set v0='JVUG6509WQXQCRAT0FKBP9S' where id=2; -update noar tt set b1='B6761NAON656YVHC6O' where id=2; -update noar ti set b1='B6761NAON656YVHC6O' where id=2; -update noar tt set v0='OAV7PK4WJHBZ6R26OI3' where id=2; -update noar ti set v0='OAV7PK4WJHBZ6R26OI3' where id=2; -update noar tt set b2='RPPNI307U6F1KJVB35WVKHZ6MTWS' where id=2; -update noar ti set b2='RPPNI307U6F1KJVB35WVKHZ6MTWS' where id=2; -update noar tt set v0='HCQ219NF' where id=3; -update noar ti set v0='HCQ219NF' where id=3; -update noar tt set b0='UBRUADST4RK2LJ13DOM' where id=3; -update noar ti set b0='UBRUADST4RK2LJ13DOM' where id=3; -update noar tt set v0='OXNAXWTO265GWA8BJUIJ' where id=3; -update noar ti set v0='OXNAXWTO265GWA8BJUIJ' where id=3; -update noar tt set b1='P4U' where id=3; -update noar ti set b1='P4U' where id=3; -update noar tt set v0='6QF79F5WZ8AHZ' where id=3; -update noar ti set v0='6QF79F5WZ8AHZ' where id=3; -update noar tt set b2='45OEDP7LV4L87YQ4GRYTU7KOLJ7' where id=3; -update noar ti set b2='45OEDP7LV4L87YQ4GRYTU7KOLJ7' where id=3; -update noar tt set v0='VYM' where id=4; -update noar ti set v0='VYM' where id=4; -update noar tt set b0='6O4NMK2XVH3DC4UC9RQ1W39JCBG' where id=4; -update noar ti set b0='6O4NMK2XVH3DC4UC9RQ1W39JCBG' where id=4; -update noar tt set v0='DCS57LEP3UIEMOVFC' where id=4; -update noar ti set v0='DCS57LEP3UIEMOVFC' where id=4; -update noar tt set b1='OGYTT997DPGUZQT1OY6XL' where id=4; -update noar ti set b1='OGYTT997DPGUZQT1OY6XL' where id=4; -update noar tt set v0='M' where id=4; -update noar ti set v0='M' where id=4; -update noar tt set b2='GF5RWQ0KSTH44RR' where id=4; -update noar ti set b2='GF5RWQ0KSTH44RR' where id=4; -update noar tt set v0='LE8URYJKP7NC56' where id=5; -update noar ti set v0='LE8URYJKP7NC56' where id=5; -update noar tt set b0='YI7NRJRK8V' where id=5; -update noar ti set b0='YI7NRJRK8V' where id=5; -update noar tt set v0='XW11Z6E77V1R7RIJWML' where id=5; -update noar ti set v0='XW11Z6E77V1R7RIJWML' where id=5; -update noar tt set b1='6ZTLENBCF' where id=5; -update noar ti set b1='6ZTLENBCF' where id=5; -update noar tt set v0='A3ZLJ4J' where id=5; -update noar ti set v0='A3ZLJ4J' where id=5; -update noar tt set b2='MHT1AVIJIWRG29PHYJWZDOCJJT9LSRTB' where id=5; -update noar ti set b2='MHT1AVIJIWRG29PHYJWZDOCJJT9LSRTB' where id=5; -update noar tt set v0='MZXPRNYAM' where id=6; -update noar ti set v0='MZXPRNYAM' where id=6; -update noar tt set b0='ZWCT7WGR7GH0N52XLPMIBK' where id=6; -update noar ti set b0='ZWCT7WGR7GH0N52XLPMIBK' where id=6; -update noar tt set v0='Z5RJCOBMLRPMZMWS9VWZNS4IOGQIBIOO' where id=6; -update noar ti set v0='Z5RJCOBMLRPMZMWS9VWZNS4IOGQIBIOO' where id=6; -update noar tt set b1='3WCKTPH0JO843P6D66HF53S4OQMR9DL' where id=6; -update noar ti set b1='3WCKTPH0JO843P6D66HF53S4OQMR9DL' where id=6; -update noar tt set v0='8K7A6Z' where id=6; -update noar ti set v0='8K7A6Z' where id=6; -update noar tt set b2='3VBWYMMEELJPLM48T6U6XIQSUDX6B89Y' where id=6; -update noar ti set b2='3VBWYMMEELJPLM48T6U6XIQSUDX6B89Y' where id=6; -update noar tt set v0='TR66X8K1JPP3' where id=7; -update noar ti set v0='TR66X8K1JPP3' where id=7; -update noar tt set b0='4YNY0MOMC1TLN0U739PAPHZHUDMUTUF' where id=7; -update noar ti set b0='4YNY0MOMC1TLN0U739PAPHZHUDMUTUF' where id=7; -update noar tt set v0='D2JKCJ9I81354O1KH68Y5F10H4QQ' where id=7; -update noar ti set v0='D2JKCJ9I81354O1KH68Y5F10H4QQ' where id=7; -update noar tt set b1='Y52QH6BQ1QQVUG5E9MXX56TW' where id=7; -update noar ti set b1='Y52QH6BQ1QQVUG5E9MXX56TW' where id=7; -update noar tt set v0='5HDGHD8MFR72KK6G028' where id=7; -update noar ti set v0='5HDGHD8MFR72KK6G028' where id=7; -update noar tt set b2='5ZM649Z9S8' where id=7; -update noar ti set b2='5ZM649Z9S8' where id=7; -update noar tt set v0='M4K0GMFGLBAZ5OOS6J' where id=8; -update noar ti set v0='M4K0GMFGLBAZ5OOS6J' where id=8; -update noar tt set b0='CCCVZ30NLQ4U73HGR5G4THRH9BYI11Q' where id=8; -update noar ti set b0='CCCVZ30NLQ4U73HGR5G4THRH9BYI11Q' where id=8; -update noar tt set v0='2M8I2AXOX2FQBBL2HF89198VOHH3' where id=8; -update noar ti set v0='2M8I2AXOX2FQBBL2HF89198VOHH3' where id=8; -update noar tt set b1='IQJX8QANJ1H9' where id=8; -update noar ti set b1='IQJX8QANJ1H9' where id=8; -update noar tt set v0='C9GJO4' where id=8; -update noar ti set v0='C9GJO4' where id=8; -update noar tt set b2='4AX5OPKC49' where id=8; -update noar ti set b2='4AX5OPKC49' where id=8; -update noar tt set v0='99BDP3OBII5T3OZVU' where id=9; -update noar ti set v0='99BDP3OBII5T3OZVU' where id=9; -update noar tt set b0='I343XTTU82SJ51SR7OH5V2B4F0L7K' where id=9; -update noar ti set b0='I343XTTU82SJ51SR7OH5V2B4F0L7K' where id=9; -update noar tt set v0='44' where id=9; -update noar ti set v0='44' where id=9; -update noar tt set b1='2Q28RRNEL4B3L59LTJ4RAPVZ96J9FKT' where id=9; -update noar ti set b1='2Q28RRNEL4B3L59LTJ4RAPVZ96J9FKT' where id=9; -update noar tt set v0='9CFD0COXGJ9EP0DSMK9O2K920ZD4MBI5' where id=9; -update noar ti set v0='9CFD0COXGJ9EP0DSMK9O2K920ZD4MBI5' where id=9; -update noar tt set b2='XNGO2U59AQ' where id=9; -update noar ti set b2='XNGO2U59AQ' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - v0 varchar(32) null, - b0 tinyblob null, - b1 longblob null, - b2 mediumblob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='KL3YO1N1ZIG' where id=1; -update noar ti set v0='KL3YO1N1ZIG' where id=1; -update noar tt set b0='2JLUN' where id=1; -update noar ti set b0='2JLUN' where id=1; -update noar tt set v0='HXBOFRAE439QONDSK40CALVQKMC4' where id=1; -update noar ti set v0='HXBOFRAE439QONDSK40CALVQKMC4' where id=1; -update noar tt set b1='5TZM1DT8O913N7SH9LPH4GJVIB34XGR' where id=1; -update noar ti set b1='5TZM1DT8O913N7SH9LPH4GJVIB34XGR' where id=1; -update noar tt set v0='6PV' where id=1; -update noar ti set v0='6PV' where id=1; -update noar tt set b2='SHIH' where id=1; -update noar ti set b2='SHIH' where id=1; -update noar tt set v0='UX0AKB9HO385YILPHB' where id=2; -update noar ti set v0='UX0AKB9HO385YILPHB' where id=2; -update noar tt set b0='L35E5O4P' where id=2; -update noar ti set b0='L35E5O4P' where id=2; -update noar tt set v0='O3SCDNVFMKI4NKU' where id=2; -update noar ti set v0='O3SCDNVFMKI4NKU' where id=2; -update noar tt set b1='N5LYHUSN47UZ47GNHA2DNCA2GA' where id=2; -update noar ti set b1='N5LYHUSN47UZ47GNHA2DNCA2GA' where id=2; -update noar tt set v0='8S87K1YL3EUVTLJU8A22W7KSO7H76630' where id=2; -update noar ti set v0='8S87K1YL3EUVTLJU8A22W7KSO7H76630' where id=2; -update noar tt set b2='DUNPH7ZD6880UZHNY0U' where id=2; -update noar ti set b2='DUNPH7ZD6880UZHNY0U' where id=2; -update noar tt set v0='OFM9R3WYFCHBFZT92BIQHGL' where id=3; -update noar ti set v0='OFM9R3WYFCHBFZT92BIQHGL' where id=3; -update noar tt set b0='F1QP3ZVLYAXJRW50ZEB6QOS67' where id=3; -update noar ti set b0='F1QP3ZVLYAXJRW50ZEB6QOS67' where id=3; -update noar tt set v0='M286S' where id=3; -update noar ti set v0='M286S' where id=3; -update noar tt set b1='BHT55J' where id=3; -update noar ti set b1='BHT55J' where id=3; -update noar tt set v0='Y2NAB5C' where id=3; -update noar ti set v0='Y2NAB5C' where id=3; -update noar tt set b2='ZJR5557' where id=3; -update noar ti set b2='ZJR5557' where id=3; -update noar tt set v0='E2OYNB' where id=4; -update noar ti set v0='E2OYNB' where id=4; -update noar tt set b0='G4220ULH36UNWDY1MDEMK8L' where id=4; -update noar ti set b0='G4220ULH36UNWDY1MDEMK8L' where id=4; -update noar tt set v0='AQQAR5ISYQXBQOKJU8IHQW5S9T12EN6' where id=4; -update noar ti set v0='AQQAR5ISYQXBQOKJU8IHQW5S9T12EN6' where id=4; -update noar tt set b1='Y25FSLX3314E6SY3R' where id=4; -update noar ti set b1='Y25FSLX3314E6SY3R' where id=4; -update noar tt set v0='RCZBK40UR4UR71FOUKA8VJB1V9ALG5T' where id=4; -update noar ti set v0='RCZBK40UR4UR71FOUKA8VJB1V9ALG5T' where id=4; -update noar tt set b2='76R1V995O8G5CCH44WTAJPP1PMB7WB9N' where id=4; -update noar ti set b2='76R1V995O8G5CCH44WTAJPP1PMB7WB9N' where id=4; -update noar tt set v0='FYWB2K5XJV2BMES7F6PIBK4XFCSYYK' where id=5; -update noar ti set v0='FYWB2K5XJV2BMES7F6PIBK4XFCSYYK' where id=5; -update noar tt set b0='S7' where id=5; -update noar ti set b0='S7' where id=5; -update noar tt set v0='1SPC2LGO3IEPTN4X1YI' where id=5; -update noar ti set v0='1SPC2LGO3IEPTN4X1YI' where id=5; -update noar tt set b1='TV6NUIUR5' where id=5; -update noar ti set b1='TV6NUIUR5' where id=5; -update noar tt set v0='RR' where id=5; -update noar ti set v0='RR' where id=5; -update noar tt set b2='URW76TQ5NRCFOTVFE37ZUMAJ' where id=5; -update noar ti set b2='URW76TQ5NRCFOTVFE37ZUMAJ' where id=5; -update noar tt set v0='ULKBH' where id=6; -update noar ti set v0='ULKBH' where id=6; -update noar tt set b0='QYPSDLGTDN1792AW4KI' where id=6; -update noar ti set b0='QYPSDLGTDN1792AW4KI' where id=6; -update noar tt set v0='EPUTN0MBMOSE5L0W7' where id=6; -update noar ti set v0='EPUTN0MBMOSE5L0W7' where id=6; -update noar tt set b1='IRRATW6X3FRSKQ3AP4DAA' where id=6; -update noar ti set b1='IRRATW6X3FRSKQ3AP4DAA' where id=6; -update noar tt set v0='G' where id=6; -update noar ti set v0='G' where id=6; -update noar tt set b2='4V3FFDJV' where id=6; -update noar ti set b2='4V3FFDJV' where id=6; -update noar tt set v0='7ADENU14Q0BUHENTS5SY3ES5' where id=7; -update noar ti set v0='7ADENU14Q0BUHENTS5SY3ES5' where id=7; -update noar tt set b0='T64ZDLSWWVG0N7R8E26VGMQDU6KJWR' where id=7; -update noar ti set b0='T64ZDLSWWVG0N7R8E26VGMQDU6KJWR' where id=7; -update noar tt set v0='2W8B7GMPA5WCO30C3RGNRAWKVK1WMXM' where id=7; -update noar ti set v0='2W8B7GMPA5WCO30C3RGNRAWKVK1WMXM' where id=7; -update noar tt set b1='T80Y46G3VSTA7GPPYR8G3' where id=7; -update noar ti set b1='T80Y46G3VSTA7GPPYR8G3' where id=7; -update noar tt set v0='KJR2Q7EM0DDBOWHXGOEE' where id=7; -update noar ti set v0='KJR2Q7EM0DDBOWHXGOEE' where id=7; -update noar tt set b2='7VZ6S0RTW8HUUEZ7ZPHC6XKS' where id=7; -update noar ti set b2='7VZ6S0RTW8HUUEZ7ZPHC6XKS' where id=7; -update noar tt set v0='EQWPI8XDYUX79AD' where id=8; -update noar ti set v0='EQWPI8XDYUX79AD' where id=8; -update noar tt set b0='I06RMXEW9' where id=8; -update noar ti set b0='I06RMXEW9' where id=8; -update noar tt set v0='4RESBJ43DAG' where id=8; -update noar ti set v0='4RESBJ43DAG' where id=8; -update noar tt set b1='BYR3RVM' where id=8; -update noar ti set b1='BYR3RVM' where id=8; -update noar tt set v0='4TESOB32JUGEY4PDABC4B5KX9G1Z6LXL' where id=8; -update noar ti set v0='4TESOB32JUGEY4PDABC4B5KX9G1Z6LXL' where id=8; -update noar tt set b2='8RENY9HT9K3C9BIL2WKZGQUL7AS0GMXD' where id=8; -update noar ti set b2='8RENY9HT9K3C9BIL2WKZGQUL7AS0GMXD' where id=8; -update noar tt set v0='HS4UMZG' where id=9; -update noar ti set v0='HS4UMZG' where id=9; -update noar tt set b0='B8PXXD3NGA6AHJR9UY8187D8DAZL' where id=9; -update noar ti set b0='B8PXXD3NGA6AHJR9UY8187D8DAZL' where id=9; -update noar tt set v0='S3QWNGYYJWS8PBM5P7' where id=9; -update noar ti set v0='S3QWNGYYJWS8PBM5P7' where id=9; -update noar tt set b1='4CPY' where id=9; -update noar ti set b1='4CPY' where id=9; -update noar tt set v0='ES0I93G8AJOV' where id=9; -update noar ti set v0='ES0I93G8AJOV' where id=9; -update noar tt set b2='I9BSPXBO7WRR25B' where id=9; -update noar ti set b2='I9BSPXBO7WRR25B' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - v0 varchar(256) null, - b0 tinyblob null, - b1 longblob null, - b2 mediumblob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='WT' where id=1; -update noar ti set v0='WT' where id=1; -update noar tt set b0='JP' where id=1; -update noar ti set b0='JP' where id=1; -update noar tt set v0='TZ8073I46IRKQX847' where id=1; -update noar ti set v0='TZ8073I46IRKQX847' where id=1; -update noar tt set b1='IX7KGDN' where id=1; -update noar ti set b1='IX7KGDN' where id=1; -update noar tt set v0='6JNY3U67EGMV6J6QKCZOQMG0C4G7E80J' where id=1; -update noar ti set v0='6JNY3U67EGMV6J6QKCZOQMG0C4G7E80J' where id=1; -update noar tt set b2='I7U94RRN' where id=1; -update noar ti set b2='I7U94RRN' where id=1; -update noar tt set v0='TJI4XHZ79NZBDBKBFYCL1QRJ01' where id=2; -update noar ti set v0='TJI4XHZ79NZBDBKBFYCL1QRJ01' where id=2; -update noar tt set b0='LV' where id=2; -update noar ti set b0='LV' where id=2; -update noar tt set v0='9F57SC1ULXMC' where id=2; -update noar ti set v0='9F57SC1ULXMC' where id=2; -update noar tt set b1='WQZKJSAY9C70OG3NPFRD6W19K6Q4N3F' where id=2; -update noar ti set b1='WQZKJSAY9C70OG3NPFRD6W19K6Q4N3F' where id=2; -update noar tt set v0='3BL8YCDUYP0K7ZSHKRH5ME5BY9H3LLX' where id=2; -update noar ti set v0='3BL8YCDUYP0K7ZSHKRH5ME5BY9H3LLX' where id=2; -update noar tt set b2='ED3H7PCGJJKBZ2ASYA1HDWRZ' where id=2; -update noar ti set b2='ED3H7PCGJJKBZ2ASYA1HDWRZ' where id=2; -update noar tt set v0='N6SR8G0VJW2RVR7Y2JVN' where id=3; -update noar ti set v0='N6SR8G0VJW2RVR7Y2JVN' where id=3; -update noar tt set b0='B' where id=3; -update noar ti set b0='B' where id=3; -update noar tt set v0='JJE2S04VWOVOE' where id=3; -update noar ti set v0='JJE2S04VWOVOE' where id=3; -update noar tt set b1='5SY9B2P0T' where id=3; -update noar ti set b1='5SY9B2P0T' where id=3; -update noar tt set v0='O2JS9DT385D04WC' where id=3; -update noar ti set v0='O2JS9DT385D04WC' where id=3; -update noar tt set b2='7S390ARWXAAFCGZK' where id=3; -update noar ti set b2='7S390ARWXAAFCGZK' where id=3; -update noar tt set v0='KC6CHYMIDLNRMTH4RPPMVJI4PMRSBAX' where id=4; -update noar ti set v0='KC6CHYMIDLNRMTH4RPPMVJI4PMRSBAX' where id=4; -update noar tt set b0='OXSXD9AWR9FDB2UBAIZ' where id=4; -update noar ti set b0='OXSXD9AWR9FDB2UBAIZ' where id=4; -update noar tt set v0='6VYZ6' where id=4; -update noar ti set v0='6VYZ6' where id=4; -update noar tt set b1='IYECCXG7TC' where id=4; -update noar ti set b1='IYECCXG7TC' where id=4; -update noar tt set v0='AN6' where id=4; -update noar ti set v0='AN6' where id=4; -update noar tt set b2='4JQN5DRS' where id=4; -update noar ti set b2='4JQN5DRS' where id=4; -update noar tt set v0='UWSA' where id=5; -update noar ti set v0='UWSA' where id=5; -update noar tt set b0='9KILI0UVNRRPAREKHDYVD6' where id=5; -update noar ti set b0='9KILI0UVNRRPAREKHDYVD6' where id=5; -update noar tt set v0='PYNXUMVK3A5Z' where id=5; -update noar ti set v0='PYNXUMVK3A5Z' where id=5; -update noar tt set b1='YMEUG8UAUIIPTI0JI16JVTL2V' where id=5; -update noar ti set b1='YMEUG8UAUIIPTI0JI16JVTL2V' where id=5; -update noar tt set v0='5Y' where id=5; -update noar ti set v0='5Y' where id=5; -update noar tt set b2='F4JD5RT9NNO7OBKS0M' where id=5; -update noar ti set b2='F4JD5RT9NNO7OBKS0M' where id=5; -update noar tt set v0='GC5ZK3DMH8E' where id=6; -update noar ti set v0='GC5ZK3DMH8E' where id=6; -update noar tt set b0='AKY' where id=6; -update noar ti set b0='AKY' where id=6; -update noar tt set v0='0MNL29FU9DZ1' where id=6; -update noar ti set v0='0MNL29FU9DZ1' where id=6; -update noar tt set b1='VK961N' where id=6; -update noar ti set b1='VK961N' where id=6; -update noar tt set v0='TYOH7NUCM6' where id=6; -update noar ti set v0='TYOH7NUCM6' where id=6; -update noar tt set b2='6ZNCDT3NT22B' where id=6; -update noar ti set b2='6ZNCDT3NT22B' where id=6; -update noar tt set v0='C0K73UQ9UCL231S' where id=7; -update noar ti set v0='C0K73UQ9UCL231S' where id=7; -update noar tt set b0='F2JA58CXW0K5B4QLRYUGLHM4' where id=7; -update noar ti set b0='F2JA58CXW0K5B4QLRYUGLHM4' where id=7; -update noar tt set v0='DP8R6E3C0G8DFZKJNO93YNOWT5JA' where id=7; -update noar ti set v0='DP8R6E3C0G8DFZKJNO93YNOWT5JA' where id=7; -update noar tt set b1='D1BVSN2Q' where id=7; -update noar ti set b1='D1BVSN2Q' where id=7; -update noar tt set v0='LP8AZNV5Y891ZPA3Y33N4J9' where id=7; -update noar ti set v0='LP8AZNV5Y891ZPA3Y33N4J9' where id=7; -update noar tt set b2='HT6SD531B3R9KPMEL1UJ0O5IMQU6W2VJ' where id=7; -update noar ti set b2='HT6SD531B3R9KPMEL1UJ0O5IMQU6W2VJ' where id=7; -update noar tt set v0='FGLNOA2PJGKVKU' where id=8; -update noar ti set v0='FGLNOA2PJGKVKU' where id=8; -update noar tt set b0='MCP48L29E4S768QWKGQ0FN' where id=8; -update noar ti set b0='MCP48L29E4S768QWKGQ0FN' where id=8; -update noar tt set v0='HVS' where id=8; -update noar ti set v0='HVS' where id=8; -update noar tt set b1='Z' where id=8; -update noar ti set b1='Z' where id=8; -update noar tt set v0='P4QO024KWVI2' where id=8; -update noar ti set v0='P4QO024KWVI2' where id=8; -update noar tt set b2='3O06FEX8W0' where id=8; -update noar ti set b2='3O06FEX8W0' where id=8; -update noar tt set v0='94TS3PDXY4EZUIHSPDXEO' where id=9; -update noar ti set v0='94TS3PDXY4EZUIHSPDXEO' where id=9; -update noar tt set b0='XATF81ZQENQME7YGJ39HOEKP' where id=9; -update noar ti set b0='XATF81ZQENQME7YGJ39HOEKP' where id=9; -update noar tt set v0='DZYNBUMYRDB92' where id=9; -update noar ti set v0='DZYNBUMYRDB92' where id=9; -update noar tt set b1='56F3NYVB1KO3S1S8J' where id=9; -update noar ti set b1='56F3NYVB1KO3S1S8J' where id=9; -update noar tt set v0='N' where id=9; -update noar ti set v0='N' where id=9; -update noar tt set b2='NH0EC2J043WJ' where id=9; -update noar ti set b2='NH0EC2J043WJ' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - v0 varchar(32) not null, - b0 tinyblob not null, - b1 longblob not null, - b2 mediumblob not null -) engine=tokudb; -insert into tt values (1,'','','',''); -insert into tt values (2,'','','',''); -insert into tt values (3,'','','',''); -insert into tt values (4,'','','',''); -insert into tt values (5,'','','',''); -insert into tt values (6,'','','',''); -insert into tt values (7,'','','',''); -insert into tt values (8,'','','',''); -insert into tt values (9,'','','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='OB959OG3ZZWNGLIDZMIDT8LSPS' where id=1; -update noar ti set v0='OB959OG3ZZWNGLIDZMIDT8LSPS' where id=1; -update noar tt set b0='SCMPC3RFIN' where id=1; -update noar ti set b0='SCMPC3RFIN' where id=1; -update noar tt set v0='BUZHWG' where id=1; -update noar ti set v0='BUZHWG' where id=1; -update noar tt set b1='NUHFXWKN6BVDA' where id=1; -update noar ti set b1='NUHFXWKN6BVDA' where id=1; -update noar tt set v0='RFFKPUHD' where id=1; -update noar ti set v0='RFFKPUHD' where id=1; -update noar tt set b2='49CHTO1' where id=1; -update noar ti set b2='49CHTO1' where id=1; -update noar tt set v0='8BYDZ74NH73ZQNBMF69JISAM2O' where id=2; -update noar ti set v0='8BYDZ74NH73ZQNBMF69JISAM2O' where id=2; -update noar tt set b0='AC9MZ8CSKAMGL2J99PWL' where id=2; -update noar ti set b0='AC9MZ8CSKAMGL2J99PWL' where id=2; -update noar tt set v0='ML0Q3UG029LU9L40ZTL' where id=2; -update noar ti set v0='ML0Q3UG029LU9L40ZTL' where id=2; -update noar tt set b1='HH7XWU2Q0HXGQIJ81DAKTMWGFRFOW' where id=2; -update noar ti set b1='HH7XWU2Q0HXGQIJ81DAKTMWGFRFOW' where id=2; -update noar tt set v0='4D907D8BIDRQMQX16M7Q02R5HCIBJQ' where id=2; -update noar ti set v0='4D907D8BIDRQMQX16M7Q02R5HCIBJQ' where id=2; -update noar tt set b2='UJH' where id=2; -update noar ti set b2='UJH' where id=2; -update noar tt set v0='SD4WXO0I1' where id=3; -update noar ti set v0='SD4WXO0I1' where id=3; -update noar tt set b0='MS9UM3ZEU70P' where id=3; -update noar ti set b0='MS9UM3ZEU70P' where id=3; -update noar tt set v0='NE8X6T1MN7AZH8A' where id=3; -update noar ti set v0='NE8X6T1MN7AZH8A' where id=3; -update noar tt set b1='3SFX6FHCI27NR0NNA3B35BNWVBJ' where id=3; -update noar ti set b1='3SFX6FHCI27NR0NNA3B35BNWVBJ' where id=3; -update noar tt set v0='MB9KVPLXIVAYLZGJU' where id=3; -update noar ti set v0='MB9KVPLXIVAYLZGJU' where id=3; -update noar tt set b2='KT3TZCUA1TNYAGMP7ZPH4' where id=3; -update noar ti set b2='KT3TZCUA1TNYAGMP7ZPH4' where id=3; -update noar tt set v0='1JIFOZT5DY6FJ81JH5F3EAYE5O38VF' where id=4; -update noar ti set v0='1JIFOZT5DY6FJ81JH5F3EAYE5O38VF' where id=4; -update noar tt set b0='SIV3XFSJUI' where id=4; -update noar ti set b0='SIV3XFSJUI' where id=4; -update noar tt set v0='F8R8M33TQG' where id=4; -update noar ti set v0='F8R8M33TQG' where id=4; -update noar tt set b1='332DBT81K6ZS3EZL7NNXNNAM0BE2QQEB' where id=4; -update noar ti set b1='332DBT81K6ZS3EZL7NNXNNAM0BE2QQEB' where id=4; -update noar tt set v0='8JLY' where id=4; -update noar ti set v0='8JLY' where id=4; -update noar tt set b2='H6B38DN6HR2RT' where id=4; -update noar ti set b2='H6B38DN6HR2RT' where id=4; -update noar tt set v0='GCDUN8D' where id=5; -update noar ti set v0='GCDUN8D' where id=5; -update noar tt set b0='6G051URWJ2AC24CAYAT4DHB3IKCCWVBI' where id=5; -update noar ti set b0='6G051URWJ2AC24CAYAT4DHB3IKCCWVBI' where id=5; -update noar tt set v0='A2SFKWK2WN716JNNK7787RAM736I' where id=5; -update noar ti set v0='A2SFKWK2WN716JNNK7787RAM736I' where id=5; -update noar tt set b1='CHR4L2NE7MFWP6CVELB1K7J' where id=5; -update noar ti set b1='CHR4L2NE7MFWP6CVELB1K7J' where id=5; -update noar tt set v0='LHUD7F27RPNVCE2F' where id=5; -update noar ti set v0='LHUD7F27RPNVCE2F' where id=5; -update noar tt set b2='G6RFP' where id=5; -update noar ti set b2='G6RFP' where id=5; -update noar tt set v0='BVHKJDC8K7LPWKMA1L6' where id=6; -update noar ti set v0='BVHKJDC8K7LPWKMA1L6' where id=6; -update noar tt set b0='05WD2S517QH3DXN3RXM72GXQ' where id=6; -update noar ti set b0='05WD2S517QH3DXN3RXM72GXQ' where id=6; -update noar tt set v0='Q9TG4R' where id=6; -update noar ti set v0='Q9TG4R' where id=6; -update noar tt set b1='YNFW56I7A6FFPU6V3UV60' where id=6; -update noar ti set b1='YNFW56I7A6FFPU6V3UV60' where id=6; -update noar tt set v0='N6RSC7VBP8UW3KKKZPWQZBMMMDFWC' where id=6; -update noar ti set v0='N6RSC7VBP8UW3KKKZPWQZBMMMDFWC' where id=6; -update noar tt set b2='VSBKTIKOQW6ED6L74TQ' where id=6; -update noar ti set b2='VSBKTIKOQW6ED6L74TQ' where id=6; -update noar tt set v0='GX836WVXXX' where id=7; -update noar ti set v0='GX836WVXXX' where id=7; -update noar tt set b0='XSCO2IYDICMK8' where id=7; -update noar ti set b0='XSCO2IYDICMK8' where id=7; -update noar tt set v0='IRMXCRSWE7NOBF71YUNYCUPP1BDCP' where id=7; -update noar ti set v0='IRMXCRSWE7NOBF71YUNYCUPP1BDCP' where id=7; -update noar tt set b1='6RRAGG1D5R2' where id=7; -update noar ti set b1='6RRAGG1D5R2' where id=7; -update noar tt set v0='5QE0RH2PSYKK9UNS4F6AG6R6U' where id=7; -update noar ti set v0='5QE0RH2PSYKK9UNS4F6AG6R6U' where id=7; -update noar tt set b2='A5M' where id=7; -update noar ti set b2='A5M' where id=7; -update noar tt set v0='N9HQLQHG7G' where id=8; -update noar ti set v0='N9HQLQHG7G' where id=8; -update noar tt set b0='SMVX6JV' where id=8; -update noar ti set b0='SMVX6JV' where id=8; -update noar tt set v0='BNIS5YY8C19UUXVZV2ZIEJH32' where id=8; -update noar ti set v0='BNIS5YY8C19UUXVZV2ZIEJH32' where id=8; -update noar tt set b1='7EBFDZPQRX7MIM1DG6NLAYSXFO36' where id=8; -update noar ti set b1='7EBFDZPQRX7MIM1DG6NLAYSXFO36' where id=8; -update noar tt set v0='E0LP4PINUA' where id=8; -update noar ti set v0='E0LP4PINUA' where id=8; -update noar tt set b2='5D3DQB' where id=8; -update noar ti set b2='5D3DQB' where id=8; -update noar tt set v0='DD093HFS0RKJ9WGXXT2N5DAO6VI0' where id=9; -update noar ti set v0='DD093HFS0RKJ9WGXXT2N5DAO6VI0' where id=9; -update noar tt set b0='C4JKAQ952V' where id=9; -update noar ti set b0='C4JKAQ952V' where id=9; -update noar tt set v0='FLNGUF6XVIA3RVUEAW' where id=9; -update noar ti set v0='FLNGUF6XVIA3RVUEAW' where id=9; -update noar tt set b1='CTUF690DI0L4G0MJSNC2K2FZ' where id=9; -update noar ti set b1='CTUF690DI0L4G0MJSNC2K2FZ' where id=9; -update noar tt set v0='ZE99QS32375OIGH7IJ1Y5G80ICKNM9' where id=9; -update noar ti set v0='ZE99QS32375OIGH7IJ1Y5G80ICKNM9' where id=9; -update noar tt set b2='HH9JTXQJ1KT' where id=9; -update noar ti set b2='HH9JTXQJ1KT' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - v0 varchar(256) not null, - b0 tinyblob not null, - b1 longblob not null, - b2 mediumblob not null -) engine=tokudb; -insert into tt values (1,'','','',''); -insert into tt values (2,'','','',''); -insert into tt values (3,'','','',''); -insert into tt values (4,'','','',''); -insert into tt values (5,'','','',''); -insert into tt values (6,'','','',''); -insert into tt values (7,'','','',''); -insert into tt values (8,'','','',''); -insert into tt values (9,'','','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='0SHED8Q2' where id=1; -update noar ti set v0='0SHED8Q2' where id=1; -update noar tt set b0='ME5JRX3ZQ4B8E0DNCU2P6ZQ8ZKJSQ' where id=1; -update noar ti set b0='ME5JRX3ZQ4B8E0DNCU2P6ZQ8ZKJSQ' where id=1; -update noar tt set v0='2S08FHJADCFP4FC2DXFX' where id=1; -update noar ti set v0='2S08FHJADCFP4FC2DXFX' where id=1; -update noar tt set b1='OWKAKK8HV' where id=1; -update noar ti set b1='OWKAKK8HV' where id=1; -update noar tt set v0='NOESX35JAXWXJXOVIK7UTRES5VB1E' where id=1; -update noar ti set v0='NOESX35JAXWXJXOVIK7UTRES5VB1E' where id=1; -update noar tt set b2='S9HU1MV362YOIP1WSL8' where id=1; -update noar ti set b2='S9HU1MV362YOIP1WSL8' where id=1; -update noar tt set v0='4MRXHJRT5PWPG31K4RWODWVC0A' where id=2; -update noar ti set v0='4MRXHJRT5PWPG31K4RWODWVC0A' where id=2; -update noar tt set b0='PISI5H545T6R1BLBLR0GZ07TWX44G3' where id=2; -update noar ti set b0='PISI5H545T6R1BLBLR0GZ07TWX44G3' where id=2; -update noar tt set v0='A9LN2KOQ04B8PJW7Z4DZY0RGT95339R' where id=2; -update noar ti set v0='A9LN2KOQ04B8PJW7Z4DZY0RGT95339R' where id=2; -update noar tt set b1='QQG2X9BS5U7B2UHP' where id=2; -update noar ti set b1='QQG2X9BS5U7B2UHP' where id=2; -update noar tt set v0='JTK8Y8HRE2VKL5XJT' where id=2; -update noar ti set v0='JTK8Y8HRE2VKL5XJT' where id=2; -update noar tt set b2='FTXOS5MA4N950PQCE3WDXS' where id=2; -update noar ti set b2='FTXOS5MA4N950PQCE3WDXS' where id=2; -update noar tt set v0='9' where id=3; -update noar ti set v0='9' where id=3; -update noar tt set b0='WORUCOXK1JPOGO8H4HTGSJT' where id=3; -update noar ti set b0='WORUCOXK1JPOGO8H4HTGSJT' where id=3; -update noar tt set v0='HCT' where id=3; -update noar ti set v0='HCT' where id=3; -update noar tt set b1='8KT6054LUM4UQKUW6Z5J11H' where id=3; -update noar ti set b1='8KT6054LUM4UQKUW6Z5J11H' where id=3; -update noar tt set v0='H68Y58P7TMC4KG13YQZQ4YEU9Z90MQ5' where id=3; -update noar ti set v0='H68Y58P7TMC4KG13YQZQ4YEU9Z90MQ5' where id=3; -update noar tt set b2='WYP9INETKE4U66UNNWZIDWVZD731LWYB' where id=3; -update noar ti set b2='WYP9INETKE4U66UNNWZIDWVZD731LWYB' where id=3; -update noar tt set v0='T8OITEFYNXB918W3Y9LMNPOHYJSSE' where id=4; -update noar ti set v0='T8OITEFYNXB918W3Y9LMNPOHYJSSE' where id=4; -update noar tt set b0='MPVQLAC' where id=4; -update noar ti set b0='MPVQLAC' where id=4; -update noar tt set v0='KF7Q0TOHR6G' where id=4; -update noar ti set v0='KF7Q0TOHR6G' where id=4; -update noar tt set b1='KAU1TDA1' where id=4; -update noar ti set b1='KAU1TDA1' where id=4; -update noar tt set v0='EUA3' where id=4; -update noar ti set v0='EUA3' where id=4; -update noar tt set b2='XO8J8Q8EWE' where id=4; -update noar ti set b2='XO8J8Q8EWE' where id=4; -update noar tt set v0='T13RKCI3E5HSSQXTFKSSV4S' where id=5; -update noar ti set v0='T13RKCI3E5HSSQXTFKSSV4S' where id=5; -update noar tt set b0='L5TOIR4' where id=5; -update noar ti set b0='L5TOIR4' where id=5; -update noar tt set v0='0V58BZCZ15P40UM4DW' where id=5; -update noar ti set v0='0V58BZCZ15P40UM4DW' where id=5; -update noar tt set b1='OFEVXHM' where id=5; -update noar ti set b1='OFEVXHM' where id=5; -update noar tt set v0='8PFDBMH1R7WD' where id=5; -update noar ti set v0='8PFDBMH1R7WD' where id=5; -update noar tt set b2='3MAE1ESH817' where id=5; -update noar ti set b2='3MAE1ESH817' where id=5; -update noar tt set v0='TEIIUST2W8TZ' where id=6; -update noar ti set v0='TEIIUST2W8TZ' where id=6; -update noar tt set b0='Z5H6JJWHMKOCCH13DIW1MZJLZY4R' where id=6; -update noar ti set b0='Z5H6JJWHMKOCCH13DIW1MZJLZY4R' where id=6; -update noar tt set v0='5W8WR1S3CS4DQ4C7VC' where id=6; -update noar ti set v0='5W8WR1S3CS4DQ4C7VC' where id=6; -update noar tt set b1='VM0B7L738YSHJ4FT489IP1CTBC3C' where id=6; -update noar ti set b1='VM0B7L738YSHJ4FT489IP1CTBC3C' where id=6; -update noar tt set v0='RNLIR1PGJ' where id=6; -update noar ti set v0='RNLIR1PGJ' where id=6; -update noar tt set b2='988MEBR8CITAAJW' where id=6; -update noar ti set b2='988MEBR8CITAAJW' where id=6; -update noar tt set v0='U9' where id=7; -update noar ti set v0='U9' where id=7; -update noar tt set b0='5V4HQ4YJDL8XJWDRND6Y9' where id=7; -update noar ti set b0='5V4HQ4YJDL8XJWDRND6Y9' where id=7; -update noar tt set v0='8RV3QRZQHMFRXBKKXRK' where id=7; -update noar ti set v0='8RV3QRZQHMFRXBKKXRK' where id=7; -update noar tt set b1='BFQ0AAX' where id=7; -update noar ti set b1='BFQ0AAX' where id=7; -update noar tt set v0='S' where id=7; -update noar ti set v0='S' where id=7; -update noar tt set b2='0DIX9RF0PW0BQKNFD' where id=7; -update noar ti set b2='0DIX9RF0PW0BQKNFD' where id=7; -update noar tt set v0='QYET2CDYAB4Y0O29CQJ1CNHJ178' where id=8; -update noar ti set v0='QYET2CDYAB4Y0O29CQJ1CNHJ178' where id=8; -update noar tt set b0='0JQHEA56NXMG' where id=8; -update noar ti set b0='0JQHEA56NXMG' where id=8; -update noar tt set v0='L7PGKHNKASTLAH' where id=8; -update noar ti set v0='L7PGKHNKASTLAH' where id=8; -update noar tt set b1='WNTERESXJVBXEUCABOKKJ6EW787776X' where id=8; -update noar ti set b1='WNTERESXJVBXEUCABOKKJ6EW787776X' where id=8; -update noar tt set v0='Y99P6DD2L1ODN297V8TT52KN7' where id=8; -update noar ti set v0='Y99P6DD2L1ODN297V8TT52KN7' where id=8; -update noar tt set b2='R9X1' where id=8; -update noar ti set b2='R9X1' where id=8; -update noar tt set v0='KL3' where id=9; -update noar ti set v0='KL3' where id=9; -update noar tt set b0='U1RXJHOUIYOUCMHRXTMLANFK' where id=9; -update noar ti set b0='U1RXJHOUIYOUCMHRXTMLANFK' where id=9; -update noar tt set v0='F1B' where id=9; -update noar ti set v0='F1B' where id=9; -update noar tt set b1='Q8' where id=9; -update noar ti set b1='Q8' where id=9; -update noar tt set v0='W4W957ZQFQGC78TTFITFXKGMOINDQOW' where id=9; -update noar ti set v0='W4W957ZQFQGC78TTFITFXKGMOINDQOW' where id=9; -update noar tt set b2='83XQR3O437RY5' where id=9; -update noar ti set b2='83XQR3O437RY5' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - v0 varchar(32) null, - b0 tinyblob null, - b1 longblob null, - b2 longblob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='DJ1MXSKXM' where id=1; -update noar ti set v0='DJ1MXSKXM' where id=1; -update noar tt set b0='MWMI6H2BHD7AMELVJVLWFFEP' where id=1; -update noar ti set b0='MWMI6H2BHD7AMELVJVLWFFEP' where id=1; -update noar tt set v0='6DXB5JOQMHPPDLKCWDWLS5PUHOX8' where id=1; -update noar ti set v0='6DXB5JOQMHPPDLKCWDWLS5PUHOX8' where id=1; -update noar tt set b1='RQU8MD2WPZWZ0UC' where id=1; -update noar ti set b1='RQU8MD2WPZWZ0UC' where id=1; -update noar tt set v0='1EXESFMDG5BT' where id=1; -update noar ti set v0='1EXESFMDG5BT' where id=1; -update noar tt set b2='FJT8LDHBPMOR1KNSBW4UZCTJQX' where id=1; -update noar ti set b2='FJT8LDHBPMOR1KNSBW4UZCTJQX' where id=1; -update noar tt set v0='5Q0N3JQVUVOADI' where id=2; -update noar ti set v0='5Q0N3JQVUVOADI' where id=2; -update noar tt set b0='HU0VDM61BFSEGCMJEMPZHNEJV' where id=2; -update noar ti set b0='HU0VDM61BFSEGCMJEMPZHNEJV' where id=2; -update noar tt set v0='HZZB2G5XVBXDL65O' where id=2; -update noar ti set v0='HZZB2G5XVBXDL65O' where id=2; -update noar tt set b1='L9T7HXAT3EHODS8' where id=2; -update noar ti set b1='L9T7HXAT3EHODS8' where id=2; -update noar tt set v0='DU9DXS' where id=2; -update noar ti set v0='DU9DXS' where id=2; -update noar tt set b2='2CXIEKMTJ0XSC' where id=2; -update noar ti set b2='2CXIEKMTJ0XSC' where id=2; -update noar tt set v0='QNFLUSZYW3WUC52BRJK2BGTF49AH2D' where id=3; -update noar ti set v0='QNFLUSZYW3WUC52BRJK2BGTF49AH2D' where id=3; -update noar tt set b0='IWEJS2CBWDD1P6HC1P3' where id=3; -update noar ti set b0='IWEJS2CBWDD1P6HC1P3' where id=3; -update noar tt set v0='NJNDZYGN94MOM31' where id=3; -update noar ti set v0='NJNDZYGN94MOM31' where id=3; -update noar tt set b1='FOS' where id=3; -update noar ti set b1='FOS' where id=3; -update noar tt set v0='S81S' where id=3; -update noar ti set v0='S81S' where id=3; -update noar tt set b2='WHMALLI5LS002FRGO1A0V8V1VDFIHMVN' where id=3; -update noar ti set b2='WHMALLI5LS002FRGO1A0V8V1VDFIHMVN' where id=3; -update noar tt set v0='V29R3ADUYKU50DY9K1BLBMMP6I6KX3KH' where id=4; -update noar ti set v0='V29R3ADUYKU50DY9K1BLBMMP6I6KX3KH' where id=4; -update noar tt set b0='2SFJ7' where id=4; -update noar ti set b0='2SFJ7' where id=4; -update noar tt set v0='RBMCGI9VC1' where id=4; -update noar ti set v0='RBMCGI9VC1' where id=4; -update noar tt set b1='FRKDUYOP2Y0IS0AFDRMDS' where id=4; -update noar ti set b1='FRKDUYOP2Y0IS0AFDRMDS' where id=4; -update noar tt set v0='9L41QS' where id=4; -update noar ti set v0='9L41QS' where id=4; -update noar tt set b2='G7YT1FLLJHZ2GQ3HWMSG3QRE51DU' where id=4; -update noar ti set b2='G7YT1FLLJHZ2GQ3HWMSG3QRE51DU' where id=4; -update noar tt set v0='S2EKIR5I4MQV682' where id=5; -update noar ti set v0='S2EKIR5I4MQV682' where id=5; -update noar tt set b0='H2ZX7RT' where id=5; -update noar ti set b0='H2ZX7RT' where id=5; -update noar tt set v0='EZT' where id=5; -update noar ti set v0='EZT' where id=5; -update noar tt set b1='B17GX0FPOPJY3W5HFROX' where id=5; -update noar ti set b1='B17GX0FPOPJY3W5HFROX' where id=5; -update noar tt set v0='7P961' where id=5; -update noar ti set v0='7P961' where id=5; -update noar tt set b2='CTE' where id=5; -update noar ti set b2='CTE' where id=5; -update noar tt set v0='B1G2BA3VU8DDM7ONVMW4UIO92' where id=6; -update noar ti set v0='B1G2BA3VU8DDM7ONVMW4UIO92' where id=6; -update noar tt set b0='E5C73PV2A52YTKNOA3PUIG0A2WYG' where id=6; -update noar ti set b0='E5C73PV2A52YTKNOA3PUIG0A2WYG' where id=6; -update noar tt set v0='HTXJBLWNZP0DQMJEU7VTGAYUSL0V6O' where id=6; -update noar ti set v0='HTXJBLWNZP0DQMJEU7VTGAYUSL0V6O' where id=6; -update noar tt set b1='T7K7L6FSMJ4NFIR2VRJIE47KLC6JQ' where id=6; -update noar ti set b1='T7K7L6FSMJ4NFIR2VRJIE47KLC6JQ' where id=6; -update noar tt set v0='X' where id=6; -update noar ti set v0='X' where id=6; -update noar tt set b2='ENHUSCOXDL4T4GBD37' where id=6; -update noar ti set b2='ENHUSCOXDL4T4GBD37' where id=6; -update noar tt set v0='PBXRJ8C76OJ' where id=7; -update noar ti set v0='PBXRJ8C76OJ' where id=7; -update noar tt set b0='JBY8M983' where id=7; -update noar ti set b0='JBY8M983' where id=7; -update noar tt set v0='3H3LZPGFW3QALWN' where id=7; -update noar ti set v0='3H3LZPGFW3QALWN' where id=7; -update noar tt set b1='RLNZR7MXBHOH3QRIBT' where id=7; -update noar ti set b1='RLNZR7MXBHOH3QRIBT' where id=7; -update noar tt set v0='9Z9FVN7RDZORONKPN2Z6CT' where id=7; -update noar ti set v0='9Z9FVN7RDZORONKPN2Z6CT' where id=7; -update noar tt set b2='MDSUXECM9IPO7PI60L4WVZ81FF7FY' where id=7; -update noar ti set b2='MDSUXECM9IPO7PI60L4WVZ81FF7FY' where id=7; -update noar tt set v0='573' where id=8; -update noar ti set v0='573' where id=8; -update noar tt set b0='H2GPG4MINPW5OX6J619E' where id=8; -update noar ti set b0='H2GPG4MINPW5OX6J619E' where id=8; -update noar tt set v0='T77M' where id=8; -update noar ti set v0='T77M' where id=8; -update noar tt set b1='NXO53P69GD29GH8JGCQKECXE5HI' where id=8; -update noar ti set b1='NXO53P69GD29GH8JGCQKECXE5HI' where id=8; -update noar tt set v0='E6QN6A2QCK' where id=8; -update noar ti set v0='E6QN6A2QCK' where id=8; -update noar tt set b2='GSW0VPZZ3SDLLIY7YD' where id=8; -update noar ti set b2='GSW0VPZZ3SDLLIY7YD' where id=8; -update noar tt set v0='LC78UX24JTGK9OSYD6V1US7FXT' where id=9; -update noar ti set v0='LC78UX24JTGK9OSYD6V1US7FXT' where id=9; -update noar tt set b0='H7NVRK1V43J5SU449H61VCHD3CTABV0' where id=9; -update noar ti set b0='H7NVRK1V43J5SU449H61VCHD3CTABV0' where id=9; -update noar tt set v0='NDV' where id=9; -update noar ti set v0='NDV' where id=9; -update noar tt set b1='FSGZSRKKNTUOXX5GK3L768L5WQOV3Z' where id=9; -update noar ti set b1='FSGZSRKKNTUOXX5GK3L768L5WQOV3Z' where id=9; -update noar tt set v0='ES5ZL7LJH9' where id=9; -update noar ti set v0='ES5ZL7LJH9' where id=9; -update noar tt set b2='6B5ZRB0LTQB9IXYHQ3P' where id=9; -update noar ti set b2='6B5ZRB0LTQB9IXYHQ3P' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - v0 varchar(256) null, - b0 tinyblob null, - b1 longblob null, - b2 longblob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='R9XJ' where id=1; -update noar ti set v0='R9XJ' where id=1; -update noar tt set b0='KMRXCZOCM9CCTFQPOYN4NZ5YMZMWM' where id=1; -update noar ti set b0='KMRXCZOCM9CCTFQPOYN4NZ5YMZMWM' where id=1; -update noar tt set v0='KTH6250' where id=1; -update noar ti set v0='KTH6250' where id=1; -update noar tt set b1='H4X6OT3NHPBEMN61N93' where id=1; -update noar ti set b1='H4X6OT3NHPBEMN61N93' where id=1; -update noar tt set v0='7RJAX' where id=1; -update noar ti set v0='7RJAX' where id=1; -update noar tt set b2='T5F3WWAUQ5EENRJLTK0RBPJPC' where id=1; -update noar ti set b2='T5F3WWAUQ5EENRJLTK0RBPJPC' where id=1; -update noar tt set v0='582VBSGHKIYLXAWCGQ' where id=2; -update noar ti set v0='582VBSGHKIYLXAWCGQ' where id=2; -update noar tt set b0='DCOUYG' where id=2; -update noar ti set b0='DCOUYG' where id=2; -update noar tt set v0='KZLPM7N3EQ6IGCOBXRHVYNG2R3F' where id=2; -update noar ti set v0='KZLPM7N3EQ6IGCOBXRHVYNG2R3F' where id=2; -update noar tt set b1='CO4DJ0GL' where id=2; -update noar ti set b1='CO4DJ0GL' where id=2; -update noar tt set v0='WQMQHIB' where id=2; -update noar ti set v0='WQMQHIB' where id=2; -update noar tt set b2='JP4LB602M3VFDAES2SXWQFB1AWP94' where id=2; -update noar ti set b2='JP4LB602M3VFDAES2SXWQFB1AWP94' where id=2; -update noar tt set v0='NTIWNJ2BESJMS0EWO52Z' where id=3; -update noar ti set v0='NTIWNJ2BESJMS0EWO52Z' where id=3; -update noar tt set b0='WTVHFKBQ55OQKT' where id=3; -update noar ti set b0='WTVHFKBQ55OQKT' where id=3; -update noar tt set v0='YOODDDKQMKYSB6O0H6FUE9' where id=3; -update noar ti set v0='YOODDDKQMKYSB6O0H6FUE9' where id=3; -update noar tt set b1='DQM7LK92XMAPWEITZ7P' where id=3; -update noar ti set b1='DQM7LK92XMAPWEITZ7P' where id=3; -update noar tt set v0='DUHUEZNQ8KPKEU2S6X8AA5XL' where id=3; -update noar ti set v0='DUHUEZNQ8KPKEU2S6X8AA5XL' where id=3; -update noar tt set b2='O0A093X6CD3B' where id=3; -update noar ti set b2='O0A093X6CD3B' where id=3; -update noar tt set v0='6Y412YH5' where id=4; -update noar ti set v0='6Y412YH5' where id=4; -update noar tt set b0='OI5R' where id=4; -update noar ti set b0='OI5R' where id=4; -update noar tt set v0='D4KOUWKIFRN5G1UYF4DJ6EQ' where id=4; -update noar ti set v0='D4KOUWKIFRN5G1UYF4DJ6EQ' where id=4; -update noar tt set b1='KV3M8Z' where id=4; -update noar ti set b1='KV3M8Z' where id=4; -update noar tt set v0='MLMDVQTO8' where id=4; -update noar ti set v0='MLMDVQTO8' where id=4; -update noar tt set b2='JOUR2WZYYEYLPZZP9N29SUXSSOL' where id=4; -update noar ti set b2='JOUR2WZYYEYLPZZP9N29SUXSSOL' where id=4; -update noar tt set v0='LQH97ZQD7R27MMN00GC61U3MJF8' where id=5; -update noar ti set v0='LQH97ZQD7R27MMN00GC61U3MJF8' where id=5; -update noar tt set b0='NA' where id=5; -update noar ti set b0='NA' where id=5; -update noar tt set v0='9ONAZCZEA059HWXA1AOEPGBMGV5LWJV' where id=5; -update noar ti set v0='9ONAZCZEA059HWXA1AOEPGBMGV5LWJV' where id=5; -update noar tt set b1='H90T2S7XJ582TWIVRT' where id=5; -update noar ti set b1='H90T2S7XJ582TWIVRT' where id=5; -update noar tt set v0='VJOCXH0DLSJQFZ40LXG72MYOLH2DJ' where id=5; -update noar ti set v0='VJOCXH0DLSJQFZ40LXG72MYOLH2DJ' where id=5; -update noar tt set b2='M376NNX37GMSEK37ZFTZFSA4OOD0IXM7' where id=5; -update noar ti set b2='M376NNX37GMSEK37ZFTZFSA4OOD0IXM7' where id=5; -update noar tt set v0='GE9KK0DHSLDSWJ7HE5AXLE' where id=6; -update noar ti set v0='GE9KK0DHSLDSWJ7HE5AXLE' where id=6; -update noar tt set b0='NIA8K4T3D3SE4VI' where id=6; -update noar ti set b0='NIA8K4T3D3SE4VI' where id=6; -update noar tt set v0='3QND0CO15NPYM99' where id=6; -update noar ti set v0='3QND0CO15NPYM99' where id=6; -update noar tt set b1='IP' where id=6; -update noar ti set b1='IP' where id=6; -update noar tt set v0='QML67BO3LURAFJYLVFU2W4LHSUOU' where id=6; -update noar ti set v0='QML67BO3LURAFJYLVFU2W4LHSUOU' where id=6; -update noar tt set b2='55MAN5UDFZS80WQ0KS6WEJVVPT' where id=6; -update noar ti set b2='55MAN5UDFZS80WQ0KS6WEJVVPT' where id=6; -update noar tt set v0='0Y' where id=7; -update noar ti set v0='0Y' where id=7; -update noar tt set b0='EOQP5FNQO42LR1OXT2TF7OIT33X' where id=7; -update noar ti set b0='EOQP5FNQO42LR1OXT2TF7OIT33X' where id=7; -update noar tt set v0='FGKLRHEABY' where id=7; -update noar ti set v0='FGKLRHEABY' where id=7; -update noar tt set b1='ZP2IHOJ1' where id=7; -update noar ti set b1='ZP2IHOJ1' where id=7; -update noar tt set v0='NHW' where id=7; -update noar ti set v0='NHW' where id=7; -update noar tt set b2='PV13G6' where id=7; -update noar ti set b2='PV13G6' where id=7; -update noar tt set v0='34I0M2RDRP9DPKIJBZQQ8W1SYKEKEYW' where id=8; -update noar ti set v0='34I0M2RDRP9DPKIJBZQQ8W1SYKEKEYW' where id=8; -update noar tt set b0='2S2YNRSHG' where id=8; -update noar ti set b0='2S2YNRSHG' where id=8; -update noar tt set v0='TDED4Y6FQ3G' where id=8; -update noar ti set v0='TDED4Y6FQ3G' where id=8; -update noar tt set b1='CVU3BI1R1EJMDHQHGHHDDRUXM6IBN52V' where id=8; -update noar ti set b1='CVU3BI1R1EJMDHQHGHHDDRUXM6IBN52V' where id=8; -update noar tt set v0='M2I11JZJVBYA1A' where id=8; -update noar ti set v0='M2I11JZJVBYA1A' where id=8; -update noar tt set b2='BVX' where id=8; -update noar ti set b2='BVX' where id=8; -update noar tt set v0='29E75JA4DD4OIWDLM89WY5G3A89MU' where id=9; -update noar ti set v0='29E75JA4DD4OIWDLM89WY5G3A89MU' where id=9; -update noar tt set b0='CJTBX718EQ3KF0HBR349BME5FNVH3W' where id=9; -update noar ti set b0='CJTBX718EQ3KF0HBR349BME5FNVH3W' where id=9; -update noar tt set v0='J3FRX8ALOI3NXDJBQFZQOIBND0O' where id=9; -update noar ti set v0='J3FRX8ALOI3NXDJBQFZQOIBND0O' where id=9; -update noar tt set b1='5UR' where id=9; -update noar ti set b1='5UR' where id=9; -update noar tt set v0='JG' where id=9; -update noar ti set v0='JG' where id=9; -update noar tt set b2='W0HBGNHRNQ2Y1KGZ9' where id=9; -update noar ti set b2='W0HBGNHRNQ2Y1KGZ9' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - v0 varchar(32) not null, - b0 tinyblob not null, - b1 longblob not null, - b2 longblob not null -) engine=tokudb; -insert into tt values (1,'','','',''); -insert into tt values (2,'','','',''); -insert into tt values (3,'','','',''); -insert into tt values (4,'','','',''); -insert into tt values (5,'','','',''); -insert into tt values (6,'','','',''); -insert into tt values (7,'','','',''); -insert into tt values (8,'','','',''); -insert into tt values (9,'','','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='AIF91B8I' where id=1; -update noar ti set v0='AIF91B8I' where id=1; -update noar tt set b0='P2UWJAJ0UED' where id=1; -update noar ti set b0='P2UWJAJ0UED' where id=1; -update noar tt set v0='J6QQ9R' where id=1; -update noar ti set v0='J6QQ9R' where id=1; -update noar tt set b1='YBED' where id=1; -update noar ti set b1='YBED' where id=1; -update noar tt set v0='UEWRT5VCKRF1HM0EBG0JMSQTBG8A0ZI' where id=1; -update noar ti set v0='UEWRT5VCKRF1HM0EBG0JMSQTBG8A0ZI' where id=1; -update noar tt set b2='O5OV2' where id=1; -update noar ti set b2='O5OV2' where id=1; -update noar tt set v0='O1' where id=2; -update noar ti set v0='O1' where id=2; -update noar tt set b0='9U2S7WHR' where id=2; -update noar ti set b0='9U2S7WHR' where id=2; -update noar tt set v0='1FTCQ8GJA4RPYMS4OD4' where id=2; -update noar ti set v0='1FTCQ8GJA4RPYMS4OD4' where id=2; -update noar tt set b1='KJPEE7FZFBOP' where id=2; -update noar ti set b1='KJPEE7FZFBOP' where id=2; -update noar tt set v0='LDG5XLKUOWKVFPJNVMD4LTH' where id=2; -update noar ti set v0='LDG5XLKUOWKVFPJNVMD4LTH' where id=2; -update noar tt set b2='HGVBH7BM7JLHA26OPT1T' where id=2; -update noar ti set b2='HGVBH7BM7JLHA26OPT1T' where id=2; -update noar tt set v0='C22A6R7' where id=3; -update noar ti set v0='C22A6R7' where id=3; -update noar tt set b0='NUR511QMVKB5S06P94O' where id=3; -update noar ti set b0='NUR511QMVKB5S06P94O' where id=3; -update noar tt set v0='JHF01LEAU68T5E8ROL' where id=3; -update noar ti set v0='JHF01LEAU68T5E8ROL' where id=3; -update noar tt set b1='885KWQCUQAVBTJU' where id=3; -update noar ti set b1='885KWQCUQAVBTJU' where id=3; -update noar tt set v0='25YFTYUNIX16VC16' where id=3; -update noar ti set v0='25YFTYUNIX16VC16' where id=3; -update noar tt set b2='FKP' where id=3; -update noar ti set b2='FKP' where id=3; -update noar tt set v0='W5WF3UWG0QH8XE' where id=4; -update noar ti set v0='W5WF3UWG0QH8XE' where id=4; -update noar tt set b0='9ZXNEUHITKC5GV' where id=4; -update noar ti set b0='9ZXNEUHITKC5GV' where id=4; -update noar tt set v0='4U3STH13QWX4KJBH2H4ESLWD16R' where id=4; -update noar ti set v0='4U3STH13QWX4KJBH2H4ESLWD16R' where id=4; -update noar tt set b1='FL3X8OR7FL72ETW68X1WYBXP' where id=4; -update noar ti set b1='FL3X8OR7FL72ETW68X1WYBXP' where id=4; -update noar tt set v0='7YFAM8NB9W2AU7N2ZPKJML860W6' where id=4; -update noar ti set v0='7YFAM8NB9W2AU7N2ZPKJML860W6' where id=4; -update noar tt set b2='WYA3P4NWIZ3OCBD' where id=4; -update noar ti set b2='WYA3P4NWIZ3OCBD' where id=4; -update noar tt set v0='4K76' where id=5; -update noar ti set v0='4K76' where id=5; -update noar tt set b0='SPTB4PQKL4725I' where id=5; -update noar ti set b0='SPTB4PQKL4725I' where id=5; -update noar tt set v0='0D7BH1R5PTEVZEJFKKHG8NQ5WEIG0' where id=5; -update noar ti set v0='0D7BH1R5PTEVZEJFKKHG8NQ5WEIG0' where id=5; -update noar tt set b1='BYL' where id=5; -update noar ti set b1='BYL' where id=5; -update noar tt set v0='1FH05SBTE4GCF8' where id=5; -update noar ti set v0='1FH05SBTE4GCF8' where id=5; -update noar tt set b2='17TQK2XOQJ' where id=5; -update noar ti set b2='17TQK2XOQJ' where id=5; -update noar tt set v0='B0SU9OUYUBL74M2KW3' where id=6; -update noar ti set v0='B0SU9OUYUBL74M2KW3' where id=6; -update noar tt set b0='E90XVMXNKUMC6A7RZ0USPOUQC3KQ8G9K' where id=6; -update noar ti set b0='E90XVMXNKUMC6A7RZ0USPOUQC3KQ8G9K' where id=6; -update noar tt set v0='IJKJCI' where id=6; -update noar ti set v0='IJKJCI' where id=6; -update noar tt set b1='C' where id=6; -update noar ti set b1='C' where id=6; -update noar tt set v0='0E9OBY3RZ3LOZ30S8WSK2HGT' where id=6; -update noar ti set v0='0E9OBY3RZ3LOZ30S8WSK2HGT' where id=6; -update noar tt set b2='5H78U5R' where id=6; -update noar ti set b2='5H78U5R' where id=6; -update noar tt set v0='3YHAD0184TOSB' where id=7; -update noar ti set v0='3YHAD0184TOSB' where id=7; -update noar tt set b0='2T9QEPPNKQYGRML8VG0E6RB82FVX4XTR' where id=7; -update noar ti set b0='2T9QEPPNKQYGRML8VG0E6RB82FVX4XTR' where id=7; -update noar tt set v0='HXV8' where id=7; -update noar ti set v0='HXV8' where id=7; -update noar tt set b1='35TE6T343DPM3QKONCDW' where id=7; -update noar ti set b1='35TE6T343DPM3QKONCDW' where id=7; -update noar tt set v0='AX9QMIZZXIK3TC5E208I' where id=7; -update noar ti set v0='AX9QMIZZXIK3TC5E208I' where id=7; -update noar tt set b2='9TBNOLSB59ACW48L8S' where id=7; -update noar ti set b2='9TBNOLSB59ACW48L8S' where id=7; -update noar tt set v0='CTMXL39WHZ' where id=8; -update noar ti set v0='CTMXL39WHZ' where id=8; -update noar tt set b0='IW9AR7R473ZH6QTD2' where id=8; -update noar ti set b0='IW9AR7R473ZH6QTD2' where id=8; -update noar tt set v0='KY3JNL3GNN0G3T0' where id=8; -update noar ti set v0='KY3JNL3GNN0G3T0' where id=8; -update noar tt set b1='NE0N0NHLYX8ZLZ6YOF6U4' where id=8; -update noar ti set b1='NE0N0NHLYX8ZLZ6YOF6U4' where id=8; -update noar tt set v0='JPBW87M0Q0OVH8C51' where id=8; -update noar ti set v0='JPBW87M0Q0OVH8C51' where id=8; -update noar tt set b2='N857' where id=8; -update noar ti set b2='N857' where id=8; -update noar tt set v0='MGIK8JFIS' where id=9; -update noar ti set v0='MGIK8JFIS' where id=9; -update noar tt set b0='P4CEW8QJQCIHO45L7RXZDXRM' where id=9; -update noar ti set b0='P4CEW8QJQCIHO45L7RXZDXRM' where id=9; -update noar tt set v0='AHBTVPEJ' where id=9; -update noar ti set v0='AHBTVPEJ' where id=9; -update noar tt set b1='DI9SMHZZ02SZ' where id=9; -update noar ti set b1='DI9SMHZZ02SZ' where id=9; -update noar tt set v0='JB67SJHVA6LH' where id=9; -update noar ti set v0='JB67SJHVA6LH' where id=9; -update noar tt set b2='V47N8B3LMR25SSQCVTG3Y9RIH9J' where id=9; -update noar ti set b2='V47N8B3LMR25SSQCVTG3Y9RIH9J' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - v0 varchar(256) not null, - b0 tinyblob not null, - b1 longblob not null, - b2 longblob not null -) engine=tokudb; -insert into tt values (1,'','','',''); -insert into tt values (2,'','','',''); -insert into tt values (3,'','','',''); -insert into tt values (4,'','','',''); -insert into tt values (5,'','','',''); -insert into tt values (6,'','','',''); -insert into tt values (7,'','','',''); -insert into tt values (8,'','','',''); -insert into tt values (9,'','','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='8MO6YNMF4G45RQTC3I' where id=1; -update noar ti set v0='8MO6YNMF4G45RQTC3I' where id=1; -update noar tt set b0='FI' where id=1; -update noar ti set b0='FI' where id=1; -update noar tt set v0='T81M35RVQ1S6AMW1IW' where id=1; -update noar ti set v0='T81M35RVQ1S6AMW1IW' where id=1; -update noar tt set b1='Z2H2H' where id=1; -update noar ti set b1='Z2H2H' where id=1; -update noar tt set v0='JK7Y5OACOH4P88F3' where id=1; -update noar ti set v0='JK7Y5OACOH4P88F3' where id=1; -update noar tt set b2='QVNMR' where id=1; -update noar ti set b2='QVNMR' where id=1; -update noar tt set v0='MAG6J0MKJG' where id=2; -update noar ti set v0='MAG6J0MKJG' where id=2; -update noar tt set b0='QSMS5EFAQD2BBM' where id=2; -update noar ti set b0='QSMS5EFAQD2BBM' where id=2; -update noar tt set v0='Q6Y3B7CDEBESRJRWOKAQX' where id=2; -update noar ti set v0='Q6Y3B7CDEBESRJRWOKAQX' where id=2; -update noar tt set b1='ABMFG5858RP' where id=2; -update noar ti set b1='ABMFG5858RP' where id=2; -update noar tt set v0='JHISSD4RO3YUJS9SZS8ZQZFNO' where id=2; -update noar ti set v0='JHISSD4RO3YUJS9SZS8ZQZFNO' where id=2; -update noar tt set b2='OTH01L' where id=2; -update noar ti set b2='OTH01L' where id=2; -update noar tt set v0='RIQFIC6CJ7OIAU56' where id=3; -update noar ti set v0='RIQFIC6CJ7OIAU56' where id=3; -update noar tt set b0='IRFILLHGK0UQUTHH1BQBNQH9WDFM0' where id=3; -update noar ti set b0='IRFILLHGK0UQUTHH1BQBNQH9WDFM0' where id=3; -update noar tt set v0='37PTZ47CJHT' where id=3; -update noar ti set v0='37PTZ47CJHT' where id=3; -update noar tt set b1='YTS4WCLS68SW3IVZRD588CEIUD' where id=3; -update noar ti set b1='YTS4WCLS68SW3IVZRD588CEIUD' where id=3; -update noar tt set v0='0CAQ3PDNPQI7S3U6ZYVJ76PK23B1UERZ' where id=3; -update noar ti set v0='0CAQ3PDNPQI7S3U6ZYVJ76PK23B1UERZ' where id=3; -update noar tt set b2='64B6J0D112DX0RC7M7' where id=3; -update noar ti set b2='64B6J0D112DX0RC7M7' where id=3; -update noar tt set v0='EOJHMGQD' where id=4; -update noar ti set v0='EOJHMGQD' where id=4; -update noar tt set b0='HP4OXIIEYBHMQW6C3JP' where id=4; -update noar ti set b0='HP4OXIIEYBHMQW6C3JP' where id=4; -update noar tt set v0='G513IT5' where id=4; -update noar ti set v0='G513IT5' where id=4; -update noar tt set b1='GNYDJF5RHXED4A9' where id=4; -update noar ti set b1='GNYDJF5RHXED4A9' where id=4; -update noar tt set v0='M8TQCFMZO' where id=4; -update noar ti set v0='M8TQCFMZO' where id=4; -update noar tt set b2='41A8EPTG' where id=4; -update noar ti set b2='41A8EPTG' where id=4; -update noar tt set v0='J6YEZ2JWQRKARZ' where id=5; -update noar ti set v0='J6YEZ2JWQRKARZ' where id=5; -update noar tt set b0='C25XBXISTIKLN42MIJ21IKZB' where id=5; -update noar ti set b0='C25XBXISTIKLN42MIJ21IKZB' where id=5; -update noar tt set v0='HETVUGVXQVI6L7LCDUR8PPW' where id=5; -update noar ti set v0='HETVUGVXQVI6L7LCDUR8PPW' where id=5; -update noar tt set b1='7X312CKU58' where id=5; -update noar ti set b1='7X312CKU58' where id=5; -update noar tt set v0='ZCMAZBL3BWYQDHS407' where id=5; -update noar ti set v0='ZCMAZBL3BWYQDHS407' where id=5; -update noar tt set b2='F3U' where id=5; -update noar ti set b2='F3U' where id=5; -update noar tt set v0='3JKGKCE9LSRR07VBM3AVB6MVH' where id=6; -update noar ti set v0='3JKGKCE9LSRR07VBM3AVB6MVH' where id=6; -update noar tt set b0='DIIM6B7E3WM97D4Z6GUKTEIB5DPQP' where id=6; -update noar ti set b0='DIIM6B7E3WM97D4Z6GUKTEIB5DPQP' where id=6; -update noar tt set v0='8XZPOHU1NNSKLY8VWSZ6STZQWH82S1' where id=6; -update noar ti set v0='8XZPOHU1NNSKLY8VWSZ6STZQWH82S1' where id=6; -update noar tt set b1='8HNU2OK9ZK7N0' where id=6; -update noar ti set b1='8HNU2OK9ZK7N0' where id=6; -update noar tt set v0='L' where id=6; -update noar ti set v0='L' where id=6; -update noar tt set b2='2JYO0DACMLSG65Q4LX4K88XZ' where id=6; -update noar ti set b2='2JYO0DACMLSG65Q4LX4K88XZ' where id=6; -update noar tt set v0='T0LUWPAJ397GQS6UH2DP' where id=7; -update noar ti set v0='T0LUWPAJ397GQS6UH2DP' where id=7; -update noar tt set b0='TRBO6IQ696KOUWNT7DEEZQV9MU6' where id=7; -update noar ti set b0='TRBO6IQ696KOUWNT7DEEZQV9MU6' where id=7; -update noar tt set v0='VYO6FN9XA' where id=7; -update noar ti set v0='VYO6FN9XA' where id=7; -update noar tt set b1='8AGPAKACVH6XY39IFEE13M8CCLVJEG67' where id=7; -update noar ti set b1='8AGPAKACVH6XY39IFEE13M8CCLVJEG67' where id=7; -update noar tt set v0='2BT' where id=7; -update noar ti set v0='2BT' where id=7; -update noar tt set b2='P78ZDR3UWGSLUMC' where id=7; -update noar ti set b2='P78ZDR3UWGSLUMC' where id=7; -update noar tt set v0='0HBKGK0MYI5YS7TZJP5HN5M8J' where id=8; -update noar ti set v0='0HBKGK0MYI5YS7TZJP5HN5M8J' where id=8; -update noar tt set b0='UQE' where id=8; -update noar ti set b0='UQE' where id=8; -update noar tt set v0='0V16JMLMZKIVGTECUB9AKXRFI45CHG' where id=8; -update noar ti set v0='0V16JMLMZKIVGTECUB9AKXRFI45CHG' where id=8; -update noar tt set b1='MZ1WGZWEE7D1OMVCG5QXY7' where id=8; -update noar ti set b1='MZ1WGZWEE7D1OMVCG5QXY7' where id=8; -update noar tt set v0='HL631EGBYYUZTIOFY1IYMHLXI0M7J5E' where id=8; -update noar ti set v0='HL631EGBYYUZTIOFY1IYMHLXI0M7J5E' where id=8; -update noar tt set b2='34' where id=8; -update noar ti set b2='34' where id=8; -update noar tt set v0='99KKEAX5DK52J6KT85OAN43N5D3E' where id=9; -update noar ti set v0='99KKEAX5DK52J6KT85OAN43N5D3E' where id=9; -update noar tt set b0='Y7FW3MVANGFM741' where id=9; -update noar ti set b0='Y7FW3MVANGFM741' where id=9; -update noar tt set v0='SJ6AE8DTMNQH7PJ97UZ0CEMATX' where id=9; -update noar ti set v0='SJ6AE8DTMNQH7PJ97UZ0CEMATX' where id=9; -update noar tt set b1='OJSZ27FL3SUM4WF2CBS4ZG377INPVFF' where id=9; -update noar ti set b1='OJSZ27FL3SUM4WF2CBS4ZG377INPVFF' where id=9; -update noar tt set v0='2YN5' where id=9; -update noar ti set v0='2YN5' where id=9; -update noar tt set b2='LZBLWUS4PUX20NG26XLUEUJ32BK4W' where id=9; -update noar ti set b2='LZBLWUS4PUX20NG26XLUEUJ32BK4W' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - v0 varchar(32) null, - b0 blob null, - b1 tinyblob null, - b2 tinyblob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='VB9VCSDEOZGB' where id=1; -update noar ti set v0='VB9VCSDEOZGB' where id=1; -update noar tt set b0='HL4UG894D7NH55JN' where id=1; -update noar ti set b0='HL4UG894D7NH55JN' where id=1; -update noar tt set v0='F9FX43JX3U8XOZ5THGMX0J' where id=1; -update noar ti set v0='F9FX43JX3U8XOZ5THGMX0J' where id=1; -update noar tt set b1='4LVOBI4A4' where id=1; -update noar ti set b1='4LVOBI4A4' where id=1; -update noar tt set v0='XI2P3B7014HJASP6Z49VSNQSHDTZ4' where id=1; -update noar ti set v0='XI2P3B7014HJASP6Z49VSNQSHDTZ4' where id=1; -update noar tt set b2='G38ET' where id=1; -update noar ti set b2='G38ET' where id=1; -update noar tt set v0='5G42ONQ4T3GPAP0ZNFK24X76E0BV6VK' where id=2; -update noar ti set v0='5G42ONQ4T3GPAP0ZNFK24X76E0BV6VK' where id=2; -update noar tt set b0='3THMOQ8R6GIAKDJV' where id=2; -update noar ti set b0='3THMOQ8R6GIAKDJV' where id=2; -update noar tt set v0='XQIN0TIQTETOM3UNN6DJ9O4MBP' where id=2; -update noar ti set v0='XQIN0TIQTETOM3UNN6DJ9O4MBP' where id=2; -update noar tt set b1='WYSVDM7DD225L2MU3HSOHR94V6CXYJM' where id=2; -update noar ti set b1='WYSVDM7DD225L2MU3HSOHR94V6CXYJM' where id=2; -update noar tt set v0='LYE1U2C8I4C0O8MPP5038CG3' where id=2; -update noar ti set v0='LYE1U2C8I4C0O8MPP5038CG3' where id=2; -update noar tt set b2='E06O5FLZYKJ' where id=2; -update noar ti set b2='E06O5FLZYKJ' where id=2; -update noar tt set v0='M3YZZ7OFQ0D8V20KSGH' where id=3; -update noar ti set v0='M3YZZ7OFQ0D8V20KSGH' where id=3; -update noar tt set b0='MF48EAYMLRJZN' where id=3; -update noar ti set b0='MF48EAYMLRJZN' where id=3; -update noar tt set v0='H9ZMA950T1G3VET3F' where id=3; -update noar ti set v0='H9ZMA950T1G3VET3F' where id=3; -update noar tt set b1='3E7290K9K' where id=3; -update noar ti set b1='3E7290K9K' where id=3; -update noar tt set v0='YYQIRJUKY1SOVFBY20LNM6542Q' where id=3; -update noar ti set v0='YYQIRJUKY1SOVFBY20LNM6542Q' where id=3; -update noar tt set b2='MXDII1D1GBA' where id=3; -update noar ti set b2='MXDII1D1GBA' where id=3; -update noar tt set v0='8CJ576M0H8QMH' where id=4; -update noar ti set v0='8CJ576M0H8QMH' where id=4; -update noar tt set b0='5IVE3LO3JK0VQ0G89XOIULKC' where id=4; -update noar ti set b0='5IVE3LO3JK0VQ0G89XOIULKC' where id=4; -update noar tt set v0='X1OIUBPNS953C032RGF3SLC0QU0' where id=4; -update noar ti set v0='X1OIUBPNS953C032RGF3SLC0QU0' where id=4; -update noar tt set b1='MP5UM38MPXK2STK' where id=4; -update noar ti set b1='MP5UM38MPXK2STK' where id=4; -update noar tt set v0='MLKHT3MJ2S6BAYDW7MWIL0N' where id=4; -update noar ti set v0='MLKHT3MJ2S6BAYDW7MWIL0N' where id=4; -update noar tt set b2='7IALJFG3XHVNL425L9' where id=4; -update noar ti set b2='7IALJFG3XHVNL425L9' where id=4; -update noar tt set v0='OSB0DLZCQT40J73MKK2UMHERMVZLBY' where id=5; -update noar ti set v0='OSB0DLZCQT40J73MKK2UMHERMVZLBY' where id=5; -update noar tt set b0='NUZ4W' where id=5; -update noar ti set b0='NUZ4W' where id=5; -update noar tt set v0='OZL5HGH' where id=5; -update noar ti set v0='OZL5HGH' where id=5; -update noar tt set b1='921PJH0CYQK2SZVC2GOKX3E2VFSCI' where id=5; -update noar ti set b1='921PJH0CYQK2SZVC2GOKX3E2VFSCI' where id=5; -update noar tt set v0='9E8VH1BSSJFRPCX' where id=5; -update noar ti set v0='9E8VH1BSSJFRPCX' where id=5; -update noar tt set b2='RHXFGC8CU3Q74AGSZV6D6M81TQOE' where id=5; -update noar ti set b2='RHXFGC8CU3Q74AGSZV6D6M81TQOE' where id=5; -update noar tt set v0='CFCTGV0XCINNS3' where id=6; -update noar ti set v0='CFCTGV0XCINNS3' where id=6; -update noar tt set b0='UYWAFGW51ZT6DOV4DGPZY7YEXL3' where id=6; -update noar ti set b0='UYWAFGW51ZT6DOV4DGPZY7YEXL3' where id=6; -update noar tt set v0='31RUMYEKQP8DP6' where id=6; -update noar ti set v0='31RUMYEKQP8DP6' where id=6; -update noar tt set b1='6LQ6ADET6QOFM77P5VY4G7RG5AOTM' where id=6; -update noar ti set b1='6LQ6ADET6QOFM77P5VY4G7RG5AOTM' where id=6; -update noar tt set v0='L' where id=6; -update noar ti set v0='L' where id=6; -update noar tt set b2='MLNOHEW46RD992HUWPJ4M05DTVGPBCF' where id=6; -update noar ti set b2='MLNOHEW46RD992HUWPJ4M05DTVGPBCF' where id=6; -update noar tt set v0='89' where id=7; -update noar ti set v0='89' where id=7; -update noar tt set b0='6PNIO8U5Z5D8HX8MRPY' where id=7; -update noar ti set b0='6PNIO8U5Z5D8HX8MRPY' where id=7; -update noar tt set v0='BEEKBP75ZV' where id=7; -update noar ti set v0='BEEKBP75ZV' where id=7; -update noar tt set b1='KX4KW7ITSMEUI' where id=7; -update noar ti set b1='KX4KW7ITSMEUI' where id=7; -update noar tt set v0='WPKG8AH0E1BC3' where id=7; -update noar ti set v0='WPKG8AH0E1BC3' where id=7; -update noar tt set b2='0ASK8I' where id=7; -update noar ti set b2='0ASK8I' where id=7; -update noar tt set v0='KP5WBAZDYXPWK0ZYIQ8NGW' where id=8; -update noar ti set v0='KP5WBAZDYXPWK0ZYIQ8NGW' where id=8; -update noar tt set b0='JK4YSH' where id=8; -update noar ti set b0='JK4YSH' where id=8; -update noar tt set v0='EP6TMUOZF2G3VHEN1AK73WGCC0O' where id=8; -update noar ti set v0='EP6TMUOZF2G3VHEN1AK73WGCC0O' where id=8; -update noar tt set b1='0CNHFOIMCSAH6N5WC76O' where id=8; -update noar ti set b1='0CNHFOIMCSAH6N5WC76O' where id=8; -update noar tt set v0='COGP2V' where id=8; -update noar ti set v0='COGP2V' where id=8; -update noar tt set b2='1LHL8D0R2' where id=8; -update noar ti set b2='1LHL8D0R2' where id=8; -update noar tt set v0='MG0QN6O9GXKC9U4' where id=9; -update noar ti set v0='MG0QN6O9GXKC9U4' where id=9; -update noar tt set b0='5HMOVA4IOM8KYC93FVVAK' where id=9; -update noar ti set b0='5HMOVA4IOM8KYC93FVVAK' where id=9; -update noar tt set v0='IGIDY4S17H2E713NX8BLYJIKU' where id=9; -update noar ti set v0='IGIDY4S17H2E713NX8BLYJIKU' where id=9; -update noar tt set b1='WGQGMS74E5LTWFH0UK9IQB' where id=9; -update noar ti set b1='WGQGMS74E5LTWFH0UK9IQB' where id=9; -update noar tt set v0='9NPY0F2CE90FDCXQ2' where id=9; -update noar ti set v0='9NPY0F2CE90FDCXQ2' where id=9; -update noar tt set b2='WQ6HZE55JF1U94SLTM1WFG977C9U5' where id=9; -update noar ti set b2='WQ6HZE55JF1U94SLTM1WFG977C9U5' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - v0 varchar(256) null, - b0 blob null, - b1 tinyblob null, - b2 tinyblob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='N7E6COS3EUNQLBY81ZAELA2EPHU' where id=1; -update noar ti set v0='N7E6COS3EUNQLBY81ZAELA2EPHU' where id=1; -update noar tt set b0='76IFCKLZMRFZPE1D18STTXU4PSXZ' where id=1; -update noar ti set b0='76IFCKLZMRFZPE1D18STTXU4PSXZ' where id=1; -update noar tt set v0='RJ79HCDNZ33RI542OQLT' where id=1; -update noar ti set v0='RJ79HCDNZ33RI542OQLT' where id=1; -update noar tt set b1='F7CB6G8WD' where id=1; -update noar ti set b1='F7CB6G8WD' where id=1; -update noar tt set v0='X' where id=1; -update noar ti set v0='X' where id=1; -update noar tt set b2='QI54OISB1OFCREUZJD' where id=1; -update noar ti set b2='QI54OISB1OFCREUZJD' where id=1; -update noar tt set v0='K0FGJY8S074MY' where id=2; -update noar ti set v0='K0FGJY8S074MY' where id=2; -update noar tt set b0='OVFHK' where id=2; -update noar ti set b0='OVFHK' where id=2; -update noar tt set v0='71UW3HFXHM3TYKT767GY7I2EMYSZTBLM' where id=2; -update noar ti set v0='71UW3HFXHM3TYKT767GY7I2EMYSZTBLM' where id=2; -update noar tt set b1='BHTNWKY' where id=2; -update noar ti set b1='BHTNWKY' where id=2; -update noar tt set v0='P6WCXP836TZUHPHWV' where id=2; -update noar ti set v0='P6WCXP836TZUHPHWV' where id=2; -update noar tt set b2='T7GX7I5H67A4GSNWA9R1FQEQWWYC9E' where id=2; -update noar ti set b2='T7GX7I5H67A4GSNWA9R1FQEQWWYC9E' where id=2; -update noar tt set v0='NSTMC02Y5ZV49FTOYM95VEZLAN' where id=3; -update noar ti set v0='NSTMC02Y5ZV49FTOYM95VEZLAN' where id=3; -update noar tt set b0='YMXTW' where id=3; -update noar ti set b0='YMXTW' where id=3; -update noar tt set v0='PYKA2J2T2ZSH7R18TG41P20489P' where id=3; -update noar ti set v0='PYKA2J2T2ZSH7R18TG41P20489P' where id=3; -update noar tt set b1='OP33O737EABX5EL2RWC81EHUDKKSCH08' where id=3; -update noar ti set b1='OP33O737EABX5EL2RWC81EHUDKKSCH08' where id=3; -update noar tt set v0='FEM' where id=3; -update noar ti set v0='FEM' where id=3; -update noar tt set b2='GUJLWW6Y1K2M9U8KD1' where id=3; -update noar ti set b2='GUJLWW6Y1K2M9U8KD1' where id=3; -update noar tt set v0='DQVDBYSPFPPFGSA2V9IZ45KT8P4646N' where id=4; -update noar ti set v0='DQVDBYSPFPPFGSA2V9IZ45KT8P4646N' where id=4; -update noar tt set b0='G1KGJBSO45DSLLRCW10MWPFL3LU' where id=4; -update noar ti set b0='G1KGJBSO45DSLLRCW10MWPFL3LU' where id=4; -update noar tt set v0='2HQFO2AMOW90SBSA75T2H4' where id=4; -update noar ti set v0='2HQFO2AMOW90SBSA75T2H4' where id=4; -update noar tt set b1='HOPQ5J' where id=4; -update noar ti set b1='HOPQ5J' where id=4; -update noar tt set v0='AUQML2Y' where id=4; -update noar ti set v0='AUQML2Y' where id=4; -update noar tt set b2='I' where id=4; -update noar ti set b2='I' where id=4; -update noar tt set v0='MXNQX2W' where id=5; -update noar ti set v0='MXNQX2W' where id=5; -update noar tt set b0='7BFBOVSRJC2H2IESLQUQF' where id=5; -update noar ti set b0='7BFBOVSRJC2H2IESLQUQF' where id=5; -update noar tt set v0='ZG72C7J3LDFLVBDL7AT79EIKRO9RLAN' where id=5; -update noar ti set v0='ZG72C7J3LDFLVBDL7AT79EIKRO9RLAN' where id=5; -update noar tt set b1='NHJ1G4V12GX044STM3NR' where id=5; -update noar ti set b1='NHJ1G4V12GX044STM3NR' where id=5; -update noar tt set v0='QJ' where id=5; -update noar ti set v0='QJ' where id=5; -update noar tt set b2='524GMGU8O84A9C0DVHV4KR2HW' where id=5; -update noar ti set b2='524GMGU8O84A9C0DVHV4KR2HW' where id=5; -update noar tt set v0='LP5D1W' where id=6; -update noar ti set v0='LP5D1W' where id=6; -update noar tt set b0='F9A3UQNPJOPUB4X2SF03' where id=6; -update noar ti set b0='F9A3UQNPJOPUB4X2SF03' where id=6; -update noar tt set v0='1QF66XQX5451SQN8DTSIEIHL8YRY' where id=6; -update noar ti set v0='1QF66XQX5451SQN8DTSIEIHL8YRY' where id=6; -update noar tt set b1='MO' where id=6; -update noar ti set b1='MO' where id=6; -update noar tt set v0='LVOCQCCATPTB' where id=6; -update noar ti set v0='LVOCQCCATPTB' where id=6; -update noar tt set b2='FN284L6E4YQ' where id=6; -update noar ti set b2='FN284L6E4YQ' where id=6; -update noar tt set v0='LKXQ264A3WXZT4TT81NXG5LYJ8VJVX' where id=7; -update noar ti set v0='LKXQ264A3WXZT4TT81NXG5LYJ8VJVX' where id=7; -update noar tt set b0='8GZX15BGW' where id=7; -update noar ti set b0='8GZX15BGW' where id=7; -update noar tt set v0='WX8J2M4HLDWIKZGB9GL1VFWPAGVBE1X' where id=7; -update noar ti set v0='WX8J2M4HLDWIKZGB9GL1VFWPAGVBE1X' where id=7; -update noar tt set b1='M9QQHIDLMPET89CXFMUZ9IO00A' where id=7; -update noar ti set b1='M9QQHIDLMPET89CXFMUZ9IO00A' where id=7; -update noar tt set v0='JZB9KBPXHQOXRB2PS6' where id=7; -update noar ti set v0='JZB9KBPXHQOXRB2PS6' where id=7; -update noar tt set b2='DCTT48' where id=7; -update noar ti set b2='DCTT48' where id=7; -update noar tt set v0='RN8BID43CASG' where id=8; -update noar ti set v0='RN8BID43CASG' where id=8; -update noar tt set b0='J4SK8LAYHUNZS8W703G7LEQEZ518HE' where id=8; -update noar ti set b0='J4SK8LAYHUNZS8W703G7LEQEZ518HE' where id=8; -update noar tt set v0='GAAJ2AG05OH2I3VY2O' where id=8; -update noar ti set v0='GAAJ2AG05OH2I3VY2O' where id=8; -update noar tt set b1='N3G39MG5QWRI5YDZE8AOPDZV' where id=8; -update noar ti set b1='N3G39MG5QWRI5YDZE8AOPDZV' where id=8; -update noar tt set v0='F8' where id=8; -update noar ti set v0='F8' where id=8; -update noar tt set b2='GT8TR3N' where id=8; -update noar ti set b2='GT8TR3N' where id=8; -update noar tt set v0='7KOLAMB5JIR8MZ08QKG1BOMKLJ' where id=9; -update noar ti set v0='7KOLAMB5JIR8MZ08QKG1BOMKLJ' where id=9; -update noar tt set b0='D0L0PLE7' where id=9; -update noar ti set b0='D0L0PLE7' where id=9; -update noar tt set v0='0WNJ6NRCX6JRJ1K0A8G' where id=9; -update noar ti set v0='0WNJ6NRCX6JRJ1K0A8G' where id=9; -update noar tt set b1='AY6JFAPQHA' where id=9; -update noar ti set b1='AY6JFAPQHA' where id=9; -update noar tt set v0='C9JJ1DHB8L7RGOGRVPI' where id=9; -update noar ti set v0='C9JJ1DHB8L7RGOGRVPI' where id=9; -update noar tt set b2='TZ55BT0S1DEX' where id=9; -update noar ti set b2='TZ55BT0S1DEX' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - v0 varchar(32) not null, - b0 blob not null, - b1 tinyblob not null, - b2 tinyblob not null -) engine=tokudb; -insert into tt values (1,'','','',''); -insert into tt values (2,'','','',''); -insert into tt values (3,'','','',''); -insert into tt values (4,'','','',''); -insert into tt values (5,'','','',''); -insert into tt values (6,'','','',''); -insert into tt values (7,'','','',''); -insert into tt values (8,'','','',''); -insert into tt values (9,'','','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='SL185N' where id=1; -update noar ti set v0='SL185N' where id=1; -update noar tt set b0='JZAXQB45ZMBLD6ET8DBRS' where id=1; -update noar ti set b0='JZAXQB45ZMBLD6ET8DBRS' where id=1; -update noar tt set v0='Q2VXXWV6SZPZ90WRD4GI4PKE8EXXTB' where id=1; -update noar ti set v0='Q2VXXWV6SZPZ90WRD4GI4PKE8EXXTB' where id=1; -update noar tt set b1='7GG0CPT' where id=1; -update noar ti set b1='7GG0CPT' where id=1; -update noar tt set v0='5IQFVMNTQAVJTBSRNBV' where id=1; -update noar ti set v0='5IQFVMNTQAVJTBSRNBV' where id=1; -update noar tt set b2='SAY0VWC3AL' where id=1; -update noar ti set b2='SAY0VWC3AL' where id=1; -update noar tt set v0='7WVDLQT8EQPXGAQ0I1HNLT2P' where id=2; -update noar ti set v0='7WVDLQT8EQPXGAQ0I1HNLT2P' where id=2; -update noar tt set b0='00XKM63N1RRRMC' where id=2; -update noar ti set b0='00XKM63N1RRRMC' where id=2; -update noar tt set v0='MPYS06VCS5' where id=2; -update noar ti set v0='MPYS06VCS5' where id=2; -update noar tt set b1='PE1F6H1N694FZH8AZQWGRXG28HLF7R' where id=2; -update noar ti set b1='PE1F6H1N694FZH8AZQWGRXG28HLF7R' where id=2; -update noar tt set v0='Y1XOVQ' where id=2; -update noar ti set v0='Y1XOVQ' where id=2; -update noar tt set b2='ZPJ0GEHUKVSK5FFPUJK03' where id=2; -update noar ti set b2='ZPJ0GEHUKVSK5FFPUJK03' where id=2; -update noar tt set v0='0US' where id=3; -update noar ti set v0='0US' where id=3; -update noar tt set b0='ZRTQMXSF' where id=3; -update noar ti set b0='ZRTQMXSF' where id=3; -update noar tt set v0='J5H51AX' where id=3; -update noar ti set v0='J5H51AX' where id=3; -update noar tt set b1='0N8K2W2IP97NQHIQF' where id=3; -update noar ti set b1='0N8K2W2IP97NQHIQF' where id=3; -update noar tt set v0='8IZID2V8VF26J' where id=3; -update noar ti set v0='8IZID2V8VF26J' where id=3; -update noar tt set b2='PUTT4OYA6CCVHCTME77GYMAFQOY' where id=3; -update noar ti set b2='PUTT4OYA6CCVHCTME77GYMAFQOY' where id=3; -update noar tt set v0='HSLBG' where id=4; -update noar ti set v0='HSLBG' where id=4; -update noar tt set b0='TSTQ6AUVZD6FW03SUO29I3RM61ZJR' where id=4; -update noar ti set b0='TSTQ6AUVZD6FW03SUO29I3RM61ZJR' where id=4; -update noar tt set v0='JXHR8XFSSPNQPD' where id=4; -update noar ti set v0='JXHR8XFSSPNQPD' where id=4; -update noar tt set b1='DBG7QPTMRNNA4' where id=4; -update noar ti set b1='DBG7QPTMRNNA4' where id=4; -update noar tt set v0='E5' where id=4; -update noar ti set v0='E5' where id=4; -update noar tt set b2='ES6L9UP9K9LYVBANIIMCMP3GVWTHU9' where id=4; -update noar ti set b2='ES6L9UP9K9LYVBANIIMCMP3GVWTHU9' where id=4; -update noar tt set v0='ML4Z1G1JWP0DHEMPEPT' where id=5; -update noar ti set v0='ML4Z1G1JWP0DHEMPEPT' where id=5; -update noar tt set b0='23KLGFMPONT3Y7MT2KL9IA' where id=5; -update noar ti set b0='23KLGFMPONT3Y7MT2KL9IA' where id=5; -update noar tt set v0='R6B0QGILF1MS' where id=5; -update noar ti set v0='R6B0QGILF1MS' where id=5; -update noar tt set b1='AP2N5J' where id=5; -update noar ti set b1='AP2N5J' where id=5; -update noar tt set v0='7PXK20QHITD' where id=5; -update noar ti set v0='7PXK20QHITD' where id=5; -update noar tt set b2='HW4GX0YF5J676RDMLVORGVF5U8MWY3C' where id=5; -update noar ti set b2='HW4GX0YF5J676RDMLVORGVF5U8MWY3C' where id=5; -update noar tt set v0='VFAZLK2ER2PCRAV7' where id=6; -update noar ti set v0='VFAZLK2ER2PCRAV7' where id=6; -update noar tt set b0='2KNPWAHB57NU43EKPPGS6GINQ9TN0W' where id=6; -update noar ti set b0='2KNPWAHB57NU43EKPPGS6GINQ9TN0W' where id=6; -update noar tt set v0='11M7JAMV' where id=6; -update noar ti set v0='11M7JAMV' where id=6; -update noar tt set b1='K7GSY8VJTD78QUSC7S1KF2' where id=6; -update noar ti set b1='K7GSY8VJTD78QUSC7S1KF2' where id=6; -update noar tt set v0='MJKJO5HBC15' where id=6; -update noar ti set v0='MJKJO5HBC15' where id=6; -update noar tt set b2='OA' where id=6; -update noar ti set b2='OA' where id=6; -update noar tt set v0='O' where id=7; -update noar ti set v0='O' where id=7; -update noar tt set b0='CIDTBH61S3EDO6IVTWK3' where id=7; -update noar ti set b0='CIDTBH61S3EDO6IVTWK3' where id=7; -update noar tt set v0='MM15F2JGPB2' where id=7; -update noar ti set v0='MM15F2JGPB2' where id=7; -update noar tt set b1='6BFA1U6HFOJ2Q9GTG' where id=7; -update noar ti set b1='6BFA1U6HFOJ2Q9GTG' where id=7; -update noar tt set v0='H6Q5P1980JKG' where id=7; -update noar ti set v0='H6Q5P1980JKG' where id=7; -update noar tt set b2='GXOA1SV9UHWIL' where id=7; -update noar ti set b2='GXOA1SV9UHWIL' where id=7; -update noar tt set v0='ACLU5D8JDSHMFW' where id=8; -update noar ti set v0='ACLU5D8JDSHMFW' where id=8; -update noar tt set b0='ET58YPLALZQSTI8Y0AM' where id=8; -update noar ti set b0='ET58YPLALZQSTI8Y0AM' where id=8; -update noar tt set v0='8XTZ0PHE4' where id=8; -update noar ti set v0='8XTZ0PHE4' where id=8; -update noar tt set b1='AL8NG0FEDRYEXIH' where id=8; -update noar ti set b1='AL8NG0FEDRYEXIH' where id=8; -update noar tt set v0='TBB1X5L' where id=8; -update noar ti set v0='TBB1X5L' where id=8; -update noar tt set b2='CFIPBV36L9FJS4F59SDLKJDQH' where id=8; -update noar ti set b2='CFIPBV36L9FJS4F59SDLKJDQH' where id=8; -update noar tt set v0='0HJROZ9MYJ6IEHNTYG4DMNP6' where id=9; -update noar ti set v0='0HJROZ9MYJ6IEHNTYG4DMNP6' where id=9; -update noar tt set b0='7YG7P1D79F0KPA3AL2VAXS1LX4ZYYEB' where id=9; -update noar ti set b0='7YG7P1D79F0KPA3AL2VAXS1LX4ZYYEB' where id=9; -update noar tt set v0='28M5EF' where id=9; -update noar ti set v0='28M5EF' where id=9; -update noar tt set b1='TO1' where id=9; -update noar ti set b1='TO1' where id=9; -update noar tt set v0='DF' where id=9; -update noar ti set v0='DF' where id=9; -update noar tt set b2='D9OL' where id=9; -update noar ti set b2='D9OL' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - v0 varchar(256) not null, - b0 blob not null, - b1 tinyblob not null, - b2 tinyblob not null -) engine=tokudb; -insert into tt values (1,'','','',''); -insert into tt values (2,'','','',''); -insert into tt values (3,'','','',''); -insert into tt values (4,'','','',''); -insert into tt values (5,'','','',''); -insert into tt values (6,'','','',''); -insert into tt values (7,'','','',''); -insert into tt values (8,'','','',''); -insert into tt values (9,'','','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='5DOA15OSOD9DQZTW4PDGEC1I1HR7W5VU' where id=1; -update noar ti set v0='5DOA15OSOD9DQZTW4PDGEC1I1HR7W5VU' where id=1; -update noar tt set b0='NKY8V0K0W0' where id=1; -update noar ti set b0='NKY8V0K0W0' where id=1; -update noar tt set v0='R4S' where id=1; -update noar ti set v0='R4S' where id=1; -update noar tt set b1='LUFY4NXZ42V1Y2I52' where id=1; -update noar ti set b1='LUFY4NXZ42V1Y2I52' where id=1; -update noar tt set v0='Z809N9FCJRKJQBD' where id=1; -update noar ti set v0='Z809N9FCJRKJQBD' where id=1; -update noar tt set b2='SP2' where id=1; -update noar ti set b2='SP2' where id=1; -update noar tt set v0='DP0BPODNZKVITQ1KGN3M1GVLNEC' where id=2; -update noar ti set v0='DP0BPODNZKVITQ1KGN3M1GVLNEC' where id=2; -update noar tt set b0='E6M3UQV5MK1' where id=2; -update noar ti set b0='E6M3UQV5MK1' where id=2; -update noar tt set v0='0C858G02VNW22CR' where id=2; -update noar ti set v0='0C858G02VNW22CR' where id=2; -update noar tt set b1='RDO86' where id=2; -update noar ti set b1='RDO86' where id=2; -update noar tt set v0='NSIKLEHC' where id=2; -update noar ti set v0='NSIKLEHC' where id=2; -update noar tt set b2='MDK' where id=2; -update noar ti set b2='MDK' where id=2; -update noar tt set v0='CWZEJQ1Q' where id=3; -update noar ti set v0='CWZEJQ1Q' where id=3; -update noar tt set b0='198SH3U1JPRQCA70VEXDTXT' where id=3; -update noar ti set b0='198SH3U1JPRQCA70VEXDTXT' where id=3; -update noar tt set v0='M2A6LO06CE' where id=3; -update noar ti set v0='M2A6LO06CE' where id=3; -update noar tt set b1='ZSDAPLY4XF2JU93' where id=3; -update noar ti set b1='ZSDAPLY4XF2JU93' where id=3; -update noar tt set v0='71GGR7TRM286D7SBGEQ2MW7R4JIW7H' where id=3; -update noar ti set v0='71GGR7TRM286D7SBGEQ2MW7R4JIW7H' where id=3; -update noar tt set b2='LE' where id=3; -update noar ti set b2='LE' where id=3; -update noar tt set v0='1EA72GMDB3RQCLEUAH7XPSDFX' where id=4; -update noar ti set v0='1EA72GMDB3RQCLEUAH7XPSDFX' where id=4; -update noar tt set b0='A' where id=4; -update noar ti set b0='A' where id=4; -update noar tt set v0='SQAASN3ND4PW0VLYY55UWM' where id=4; -update noar ti set v0='SQAASN3ND4PW0VLYY55UWM' where id=4; -update noar tt set b1='2M3YLV873KLL8FGFZLPWU' where id=4; -update noar ti set b1='2M3YLV873KLL8FGFZLPWU' where id=4; -update noar tt set v0='VV9MGGFJEJBIRAHWMX' where id=4; -update noar ti set v0='VV9MGGFJEJBIRAHWMX' where id=4; -update noar tt set b2='UXEXO3WN7L7KQZH6HSDF' where id=4; -update noar ti set b2='UXEXO3WN7L7KQZH6HSDF' where id=4; -update noar tt set v0='O1YWKH3QTI1AXWBQYOBCUMZYYBVCUU' where id=5; -update noar ti set v0='O1YWKH3QTI1AXWBQYOBCUMZYYBVCUU' where id=5; -update noar tt set b0='H942QEAPA' where id=5; -update noar ti set b0='H942QEAPA' where id=5; -update noar tt set v0='4K9GQYZLEP5' where id=5; -update noar ti set v0='4K9GQYZLEP5' where id=5; -update noar tt set b1='AL01TKC1WDZVNG4M' where id=5; -update noar ti set b1='AL01TKC1WDZVNG4M' where id=5; -update noar tt set v0='J5JN8VGJT' where id=5; -update noar ti set v0='J5JN8VGJT' where id=5; -update noar tt set b2='MUI7C7B7E' where id=5; -update noar ti set b2='MUI7C7B7E' where id=5; -update noar tt set v0='MAG36AROYV7O0ECOLLSZVX8A' where id=6; -update noar ti set v0='MAG36AROYV7O0ECOLLSZVX8A' where id=6; -update noar tt set b0='LV6C3T1R8BRI6RQ53OQA53KL' where id=6; -update noar ti set b0='LV6C3T1R8BRI6RQ53OQA53KL' where id=6; -update noar tt set v0='3ZVVPY03L' where id=6; -update noar ti set v0='3ZVVPY03L' where id=6; -update noar tt set b1='3U21I9JX1' where id=6; -update noar ti set b1='3U21I9JX1' where id=6; -update noar tt set v0='EBGQ1TQH0IKSQ' where id=6; -update noar ti set v0='EBGQ1TQH0IKSQ' where id=6; -update noar tt set b2='H9VFRPMY6SVK1' where id=6; -update noar ti set b2='H9VFRPMY6SVK1' where id=6; -update noar tt set v0='VCILMOZWJFTK2HR0COSI22D' where id=7; -update noar ti set v0='VCILMOZWJFTK2HR0COSI22D' where id=7; -update noar tt set b0='9NICEITIMXDWW' where id=7; -update noar ti set b0='9NICEITIMXDWW' where id=7; -update noar tt set v0='SKSPWIW0YURQ' where id=7; -update noar ti set v0='SKSPWIW0YURQ' where id=7; -update noar tt set b1='KSFAQ02GBN0PVQMTG0ZKQ' where id=7; -update noar ti set b1='KSFAQ02GBN0PVQMTG0ZKQ' where id=7; -update noar tt set v0='0D94643Z' where id=7; -update noar ti set v0='0D94643Z' where id=7; -update noar tt set b2='W5DBZ39VVXMELAN4E6QCXQO692X4AK' where id=7; -update noar ti set b2='W5DBZ39VVXMELAN4E6QCXQO692X4AK' where id=7; -update noar tt set v0='K0FDLAHL7OL2IVVNOF1' where id=8; -update noar ti set v0='K0FDLAHL7OL2IVVNOF1' where id=8; -update noar tt set b0='YCHZSCV1VX' where id=8; -update noar ti set b0='YCHZSCV1VX' where id=8; -update noar tt set v0='0YSZ8KT43EGNNGWDAA27U7Y1WSLSB0N' where id=8; -update noar ti set v0='0YSZ8KT43EGNNGWDAA27U7Y1WSLSB0N' where id=8; -update noar tt set b1='F2QE54GTWGXO1Z' where id=8; -update noar ti set b1='F2QE54GTWGXO1Z' where id=8; -update noar tt set v0='GXIHVOAQV' where id=8; -update noar ti set v0='GXIHVOAQV' where id=8; -update noar tt set b2='KEVRRCVM3QV7OBYF8B9WM8' where id=8; -update noar ti set b2='KEVRRCVM3QV7OBYF8B9WM8' where id=8; -update noar tt set v0='ENBWI3GPZBADJK63SI78GPDP' where id=9; -update noar ti set v0='ENBWI3GPZBADJK63SI78GPDP' where id=9; -update noar tt set b0='0NUCN6IX2ZOZRN9O' where id=9; -update noar ti set b0='0NUCN6IX2ZOZRN9O' where id=9; -update noar tt set v0='WPXVA' where id=9; -update noar ti set v0='WPXVA' where id=9; -update noar tt set b1='KQ7HULNUSLXKL01YIQ73OGDH68A' where id=9; -update noar ti set b1='KQ7HULNUSLXKL01YIQ73OGDH68A' where id=9; -update noar tt set v0='TYRBMZ474ICZJX8' where id=9; -update noar ti set v0='TYRBMZ474ICZJX8' where id=9; -update noar tt set b2='7AS7GK6MJG9VYHMP3KIHINVY' where id=9; -update noar ti set b2='7AS7GK6MJG9VYHMP3KIHINVY' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - v0 varchar(32) null, - b0 blob null, - b1 tinyblob null, - b2 blob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='8OFXQ6L5NC67OWGC6Z8FFOVRPQCT245' where id=1; -update noar ti set v0='8OFXQ6L5NC67OWGC6Z8FFOVRPQCT245' where id=1; -update noar tt set b0='S328ECLT3RRUYQCA0V2C' where id=1; -update noar ti set b0='S328ECLT3RRUYQCA0V2C' where id=1; -update noar tt set v0='WVYCVSCUMN1Z2953YMDTVSC2DBOBECT' where id=1; -update noar ti set v0='WVYCVSCUMN1Z2953YMDTVSC2DBOBECT' where id=1; -update noar tt set b1='TLCRQO8XHS1NAP9FDWPUIM' where id=1; -update noar ti set b1='TLCRQO8XHS1NAP9FDWPUIM' where id=1; -update noar tt set v0='T1' where id=1; -update noar ti set v0='T1' where id=1; -update noar tt set b2='GR7B7K3SORSI4VB6D2IWR8ZFVH7' where id=1; -update noar ti set b2='GR7B7K3SORSI4VB6D2IWR8ZFVH7' where id=1; -update noar tt set v0='4HFC330OC1IAP94BY8N44FZZSH' where id=2; -update noar ti set v0='4HFC330OC1IAP94BY8N44FZZSH' where id=2; -update noar tt set b0='Y09D0PZPSFOCS6CFMZLQ6N' where id=2; -update noar ti set b0='Y09D0PZPSFOCS6CFMZLQ6N' where id=2; -update noar tt set v0='80B8949XG' where id=2; -update noar ti set v0='80B8949XG' where id=2; -update noar tt set b1='XWE' where id=2; -update noar ti set b1='XWE' where id=2; -update noar tt set v0='NGXWD1TIDXE1CSRN00RUDMTBE6G5' where id=2; -update noar ti set v0='NGXWD1TIDXE1CSRN00RUDMTBE6G5' where id=2; -update noar tt set b2='QI1QDB1I' where id=2; -update noar ti set b2='QI1QDB1I' where id=2; -update noar tt set v0='QSK' where id=3; -update noar ti set v0='QSK' where id=3; -update noar tt set b0='H2HZJX2OQRP7L10IUB3L3UBTV8T5AQ' where id=3; -update noar ti set b0='H2HZJX2OQRP7L10IUB3L3UBTV8T5AQ' where id=3; -update noar tt set v0='KAR9FGEBD' where id=3; -update noar ti set v0='KAR9FGEBD' where id=3; -update noar tt set b1='HWU9BZEZTNDPH4QJDQKW7QXDQ3PQ' where id=3; -update noar ti set b1='HWU9BZEZTNDPH4QJDQKW7QXDQ3PQ' where id=3; -update noar tt set v0='H4EYLTNXDQ4ZSWH5ZG31KVH4Z18V' where id=3; -update noar ti set v0='H4EYLTNXDQ4ZSWH5ZG31KVH4Z18V' where id=3; -update noar tt set b2='0CYU2G1JL' where id=3; -update noar ti set b2='0CYU2G1JL' where id=3; -update noar tt set v0='HUZYVET6ZO9KNU' where id=4; -update noar ti set v0='HUZYVET6ZO9KNU' where id=4; -update noar tt set b0='J9ZDF8HZZU9KSH78VQDSMEFRPZ6OCT' where id=4; -update noar ti set b0='J9ZDF8HZZU9KSH78VQDSMEFRPZ6OCT' where id=4; -update noar tt set v0='5KC' where id=4; -update noar ti set v0='5KC' where id=4; -update noar tt set b1='4V190RO84MCKMR3ZZVTOV59VGSFLL7' where id=4; -update noar ti set b1='4V190RO84MCKMR3ZZVTOV59VGSFLL7' where id=4; -update noar tt set v0='1FRGAH492177BPCIXWVKR99' where id=4; -update noar ti set v0='1FRGAH492177BPCIXWVKR99' where id=4; -update noar tt set b2='BL2JW3GI0AD7JNBTCLBBA02APEZY' where id=4; -update noar ti set b2='BL2JW3GI0AD7JNBTCLBBA02APEZY' where id=4; -update noar tt set v0='WQU38IVP1984WA557O3LR' where id=5; -update noar ti set v0='WQU38IVP1984WA557O3LR' where id=5; -update noar tt set b0='1G6KPWXWQZYTD4W21HHQOV8389EGJJKS' where id=5; -update noar ti set b0='1G6KPWXWQZYTD4W21HHQOV8389EGJJKS' where id=5; -update noar tt set v0='FXK8' where id=5; -update noar ti set v0='FXK8' where id=5; -update noar tt set b1='OAO8GUS48RX8HO5Q98RRK12PO25' where id=5; -update noar ti set b1='OAO8GUS48RX8HO5Q98RRK12PO25' where id=5; -update noar tt set v0='FMBTPP' where id=5; -update noar ti set v0='FMBTPP' where id=5; -update noar tt set b2='HQU56AWCMMQ3L' where id=5; -update noar ti set b2='HQU56AWCMMQ3L' where id=5; -update noar tt set v0='50VD4T562NTPR1G' where id=6; -update noar ti set v0='50VD4T562NTPR1G' where id=6; -update noar tt set b0='FX4VA' where id=6; -update noar ti set b0='FX4VA' where id=6; -update noar tt set v0='4UPOCOH7B0MV9H3JH5' where id=6; -update noar ti set v0='4UPOCOH7B0MV9H3JH5' where id=6; -update noar tt set b1='4MO3VI5LCR0JQT' where id=6; -update noar ti set b1='4MO3VI5LCR0JQT' where id=6; -update noar tt set v0='FN5' where id=6; -update noar ti set v0='FN5' where id=6; -update noar tt set b2='E6754' where id=6; -update noar ti set b2='E6754' where id=6; -update noar tt set v0='W5DS44UQUW4BK2TMUVHRMY2OS03PN8' where id=7; -update noar ti set v0='W5DS44UQUW4BK2TMUVHRMY2OS03PN8' where id=7; -update noar tt set b0='CK6TVL' where id=7; -update noar ti set b0='CK6TVL' where id=7; -update noar tt set v0='2NSX4SFM7XTP2Z3X4XIG20VI4HJZX' where id=7; -update noar ti set v0='2NSX4SFM7XTP2Z3X4XIG20VI4HJZX' where id=7; -update noar tt set b1='D6VNG23LZPDFNMN5PSFPJ' where id=7; -update noar ti set b1='D6VNG23LZPDFNMN5PSFPJ' where id=7; -update noar tt set v0='SK08F4' where id=7; -update noar ti set v0='SK08F4' where id=7; -update noar tt set b2='YUMII2Y603QNJZEHZ2' where id=7; -update noar ti set b2='YUMII2Y603QNJZEHZ2' where id=7; -update noar tt set v0='GQS1' where id=8; -update noar ti set v0='GQS1' where id=8; -update noar tt set b0='HX' where id=8; -update noar ti set b0='HX' where id=8; -update noar tt set v0='7L3M4D8I4RI' where id=8; -update noar ti set v0='7L3M4D8I4RI' where id=8; -update noar tt set b1='YRSA' where id=8; -update noar ti set b1='YRSA' where id=8; -update noar tt set v0='EPT2GJ9HLW3FK43GPVQLV1KA9SY29' where id=8; -update noar ti set v0='EPT2GJ9HLW3FK43GPVQLV1KA9SY29' where id=8; -update noar tt set b2='U1E5' where id=8; -update noar ti set b2='U1E5' where id=8; -update noar tt set v0='3JT6YE' where id=9; -update noar ti set v0='3JT6YE' where id=9; -update noar tt set b0='48CS9AA1LPXG' where id=9; -update noar ti set b0='48CS9AA1LPXG' where id=9; -update noar tt set v0='M5' where id=9; -update noar ti set v0='M5' where id=9; -update noar tt set b1='XRI2HS37K3TXCIX9G3QXU5BIQ2' where id=9; -update noar ti set b1='XRI2HS37K3TXCIX9G3QXU5BIQ2' where id=9; -update noar tt set v0='4LC07BPK' where id=9; -update noar ti set v0='4LC07BPK' where id=9; -update noar tt set b2='8CR0' where id=9; -update noar ti set b2='8CR0' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - v0 varchar(256) null, - b0 blob null, - b1 tinyblob null, - b2 blob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='VUQPQDYXZXNTCA3JV0UB3QV69' where id=1; -update noar ti set v0='VUQPQDYXZXNTCA3JV0UB3QV69' where id=1; -update noar tt set b0='APBXLU54RTNOKCA759E8UPZ6VOV1ZL' where id=1; -update noar ti set b0='APBXLU54RTNOKCA759E8UPZ6VOV1ZL' where id=1; -update noar tt set v0='DEQ7ZBUHHIC6T4LY8QPNXAS' where id=1; -update noar ti set v0='DEQ7ZBUHHIC6T4LY8QPNXAS' where id=1; -update noar tt set b1='KL88WWG2MIY515LJFDI8TW2EE0' where id=1; -update noar ti set b1='KL88WWG2MIY515LJFDI8TW2EE0' where id=1; -update noar tt set v0='DPBJF4F987I' where id=1; -update noar ti set v0='DPBJF4F987I' where id=1; -update noar tt set b2='D5ISQ06XRY186VUNHAI0RQ' where id=1; -update noar ti set b2='D5ISQ06XRY186VUNHAI0RQ' where id=1; -update noar tt set v0='75850D7P52SMA799HZ' where id=2; -update noar ti set v0='75850D7P52SMA799HZ' where id=2; -update noar tt set b0='Q992DR0ONYEANG0H1W7T' where id=2; -update noar ti set b0='Q992DR0ONYEANG0H1W7T' where id=2; -update noar tt set v0='0NHDR5HW1KL9AT4' where id=2; -update noar ti set v0='0NHDR5HW1KL9AT4' where id=2; -update noar tt set b1='JN05H798V6OG8I3HHZ18JPCAKDDGBE' where id=2; -update noar ti set b1='JN05H798V6OG8I3HHZ18JPCAKDDGBE' where id=2; -update noar tt set v0='F9Y0' where id=2; -update noar ti set v0='F9Y0' where id=2; -update noar tt set b2='O7JEBE777C03YUGF34KAQ4DRPYZPOLI4' where id=2; -update noar ti set b2='O7JEBE777C03YUGF34KAQ4DRPYZPOLI4' where id=2; -update noar tt set v0='RKGS2C08E6KXF' where id=3; -update noar ti set v0='RKGS2C08E6KXF' where id=3; -update noar tt set b0='G6JJ6B0SI8HKRF' where id=3; -update noar ti set b0='G6JJ6B0SI8HKRF' where id=3; -update noar tt set v0='AHGMKZ1LLNN4PPT74G24' where id=3; -update noar ti set v0='AHGMKZ1LLNN4PPT74G24' where id=3; -update noar tt set b1='ATT9ZP2LZO9KGWPP60LDYBDKZ3A' where id=3; -update noar ti set b1='ATT9ZP2LZO9KGWPP60LDYBDKZ3A' where id=3; -update noar tt set v0='7KYOE' where id=3; -update noar ti set v0='7KYOE' where id=3; -update noar tt set b2='WGRVJ3BA3YITX2R4' where id=3; -update noar ti set b2='WGRVJ3BA3YITX2R4' where id=3; -update noar tt set v0='64T1F5D' where id=4; -update noar ti set v0='64T1F5D' where id=4; -update noar tt set b0='XQGN4LO22R0ESCR0Q20GV6JRRAQG' where id=4; -update noar ti set b0='XQGN4LO22R0ESCR0Q20GV6JRRAQG' where id=4; -update noar tt set v0='351ETRMEMKM' where id=4; -update noar ti set v0='351ETRMEMKM' where id=4; -update noar tt set b1='NOHATEZUVX2' where id=4; -update noar ti set b1='NOHATEZUVX2' where id=4; -update noar tt set v0='YUTNSR98UNZGOAS6LYQBP6VTYA' where id=4; -update noar ti set v0='YUTNSR98UNZGOAS6LYQBP6VTYA' where id=4; -update noar tt set b2='PB7A0O461PKE09FBUX7VLKV5S' where id=4; -update noar ti set b2='PB7A0O461PKE09FBUX7VLKV5S' where id=4; -update noar tt set v0='DQ8JHMJA1Q92UP2RGKK' where id=5; -update noar ti set v0='DQ8JHMJA1Q92UP2RGKK' where id=5; -update noar tt set b0='4M' where id=5; -update noar ti set b0='4M' where id=5; -update noar tt set v0='8Z8Z3DHLV12ZSX3NZ53V4QR1' where id=5; -update noar ti set v0='8Z8Z3DHLV12ZSX3NZ53V4QR1' where id=5; -update noar tt set b1='LH1T9F0TYH1981IBHULVYGV6R' where id=5; -update noar ti set b1='LH1T9F0TYH1981IBHULVYGV6R' where id=5; -update noar tt set v0='0ZMXLNHTH6O5IFQQ2IT2TI6D68JE98N' where id=5; -update noar ti set v0='0ZMXLNHTH6O5IFQQ2IT2TI6D68JE98N' where id=5; -update noar tt set b2='6N9E9VM' where id=5; -update noar ti set b2='6N9E9VM' where id=5; -update noar tt set v0='RGQDJQDQQNSPD54T' where id=6; -update noar ti set v0='RGQDJQDQQNSPD54T' where id=6; -update noar tt set b0='B7H8NSGKTRQFO8TTARPWBZBSZO8FX' where id=6; -update noar ti set b0='B7H8NSGKTRQFO8TTARPWBZBSZO8FX' where id=6; -update noar tt set v0='CVQCEWUR8Q' where id=6; -update noar ti set v0='CVQCEWUR8Q' where id=6; -update noar tt set b1='FBGCMN10QO8UTQ57B' where id=6; -update noar ti set b1='FBGCMN10QO8UTQ57B' where id=6; -update noar tt set v0='0NHRRNP8871XWIUFN6O8' where id=6; -update noar ti set v0='0NHRRNP8871XWIUFN6O8' where id=6; -update noar tt set b2='873A1S6GZTF7DM1AMWL4IO1' where id=6; -update noar ti set b2='873A1S6GZTF7DM1AMWL4IO1' where id=6; -update noar tt set v0='G' where id=7; -update noar ti set v0='G' where id=7; -update noar tt set b0='N1O1VD7TSEO7FBFU0A8BMR' where id=7; -update noar ti set b0='N1O1VD7TSEO7FBFU0A8BMR' where id=7; -update noar tt set v0='K26RTCEEW232CNC1LCF' where id=7; -update noar ti set v0='K26RTCEEW232CNC1LCF' where id=7; -update noar tt set b1='OJ958LZXQBJE' where id=7; -update noar ti set b1='OJ958LZXQBJE' where id=7; -update noar tt set v0='VQENBRAW14TRVTWDRKTCJPDFHF9WR' where id=7; -update noar ti set v0='VQENBRAW14TRVTWDRKTCJPDFHF9WR' where id=7; -update noar tt set b2='XDXFWAMMW1N0EDXUE0BRSZ4A9H' where id=7; -update noar ti set b2='XDXFWAMMW1N0EDXUE0BRSZ4A9H' where id=7; -update noar tt set v0='OHDXG9X1939XN8N58FTY' where id=8; -update noar ti set v0='OHDXG9X1939XN8N58FTY' where id=8; -update noar tt set b0='HERZ4IDVYX1AUISAYM1RY9H' where id=8; -update noar ti set b0='HERZ4IDVYX1AUISAYM1RY9H' where id=8; -update noar tt set v0='GPTY' where id=8; -update noar ti set v0='GPTY' where id=8; -update noar tt set b1='UWKAEB9VVHHPZL19IEJLH8NLB2N' where id=8; -update noar ti set b1='UWKAEB9VVHHPZL19IEJLH8NLB2N' where id=8; -update noar tt set v0='MN43PPLPU4L1DW0XDD57PCZGCD5' where id=8; -update noar ti set v0='MN43PPLPU4L1DW0XDD57PCZGCD5' where id=8; -update noar tt set b2='71CF20NDNO6' where id=8; -update noar ti set b2='71CF20NDNO6' where id=8; -update noar tt set v0='AAREJYJ9MHK2SZHPOJVU441RTJSVS' where id=9; -update noar ti set v0='AAREJYJ9MHK2SZHPOJVU441RTJSVS' where id=9; -update noar tt set b0='7F02' where id=9; -update noar ti set b0='7F02' where id=9; -update noar tt set v0='R793TUXUT3LYE6K4IT2' where id=9; -update noar ti set v0='R793TUXUT3LYE6K4IT2' where id=9; -update noar tt set b1='Q6SHP1' where id=9; -update noar ti set b1='Q6SHP1' where id=9; -update noar tt set v0='83GNXN' where id=9; -update noar ti set v0='83GNXN' where id=9; -update noar tt set b2='PTP1DRZJNC8WDHHV' where id=9; -update noar ti set b2='PTP1DRZJNC8WDHHV' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - v0 varchar(32) not null, - b0 blob not null, - b1 tinyblob not null, - b2 blob not null -) engine=tokudb; -insert into tt values (1,'','','',''); -insert into tt values (2,'','','',''); -insert into tt values (3,'','','',''); -insert into tt values (4,'','','',''); -insert into tt values (5,'','','',''); -insert into tt values (6,'','','',''); -insert into tt values (7,'','','',''); -insert into tt values (8,'','','',''); -insert into tt values (9,'','','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='XU3QDNUUUED' where id=1; -update noar ti set v0='XU3QDNUUUED' where id=1; -update noar tt set b0='R73YA41CB6Q3NWOD8VO6S41J0HOADE' where id=1; -update noar ti set b0='R73YA41CB6Q3NWOD8VO6S41J0HOADE' where id=1; -update noar tt set v0='6EGUYIRRDCY' where id=1; -update noar ti set v0='6EGUYIRRDCY' where id=1; -update noar tt set b1='W4KU6SKBEYCGS9B79QJA0NCMFC3J0R' where id=1; -update noar ti set b1='W4KU6SKBEYCGS9B79QJA0NCMFC3J0R' where id=1; -update noar tt set v0='5350D8R3HRWZVKXMPJASPZ0K2EMD' where id=1; -update noar ti set v0='5350D8R3HRWZVKXMPJASPZ0K2EMD' where id=1; -update noar tt set b2='QUJCA01C2SQPDX' where id=1; -update noar ti set b2='QUJCA01C2SQPDX' where id=1; -update noar tt set v0='A82OPJ5V' where id=2; -update noar ti set v0='A82OPJ5V' where id=2; -update noar tt set b0='XIC2HT6THN' where id=2; -update noar ti set b0='XIC2HT6THN' where id=2; -update noar tt set v0='7O4EN4FU5RZ8YWT1ME7S5945RVIRN6' where id=2; -update noar ti set v0='7O4EN4FU5RZ8YWT1ME7S5945RVIRN6' where id=2; -update noar tt set b1='EVFJ1I80W2JDCBJBSBU90AUDNYOMO8' where id=2; -update noar ti set b1='EVFJ1I80W2JDCBJBSBU90AUDNYOMO8' where id=2; -update noar tt set v0='YST3X32WY2' where id=2; -update noar ti set v0='YST3X32WY2' where id=2; -update noar tt set b2='21ZSBY2DSKWOBE769' where id=2; -update noar ti set b2='21ZSBY2DSKWOBE769' where id=2; -update noar tt set v0='Z01M18FDI9H7PSPC4J02SEU2' where id=3; -update noar ti set v0='Z01M18FDI9H7PSPC4J02SEU2' where id=3; -update noar tt set b0='AJ' where id=3; -update noar ti set b0='AJ' where id=3; -update noar tt set v0='P1BTN3GPCLHVJQTGF01FBMA7' where id=3; -update noar ti set v0='P1BTN3GPCLHVJQTGF01FBMA7' where id=3; -update noar tt set b1='WC' where id=3; -update noar ti set b1='WC' where id=3; -update noar tt set v0='KZSJK1SP32NJS92AQ6XDYUI98X' where id=3; -update noar ti set v0='KZSJK1SP32NJS92AQ6XDYUI98X' where id=3; -update noar tt set b2='MSCU2' where id=3; -update noar ti set b2='MSCU2' where id=3; -update noar tt set v0='53W36QISMKU30PH47X0WOS91ZQ4' where id=4; -update noar ti set v0='53W36QISMKU30PH47X0WOS91ZQ4' where id=4; -update noar tt set b0='ICK01X4ZUCAWWND0Q9' where id=4; -update noar ti set b0='ICK01X4ZUCAWWND0Q9' where id=4; -update noar tt set v0='BBB7CY7USQ2LPT' where id=4; -update noar ti set v0='BBB7CY7USQ2LPT' where id=4; -update noar tt set b1='ZF08YH17VUV2' where id=4; -update noar ti set b1='ZF08YH17VUV2' where id=4; -update noar tt set v0='XKR42V' where id=4; -update noar ti set v0='XKR42V' where id=4; -update noar tt set b2='L9IH6' where id=4; -update noar ti set b2='L9IH6' where id=4; -update noar tt set v0='JW2YNWMTYIZATD4NT3SNWA' where id=5; -update noar ti set v0='JW2YNWMTYIZATD4NT3SNWA' where id=5; -update noar tt set b0='7LSOLBM4WI0430159H9JNNUY6UEK835' where id=5; -update noar ti set b0='7LSOLBM4WI0430159H9JNNUY6UEK835' where id=5; -update noar tt set v0='EEAQ9T7XGQGVOY5BJA51' where id=5; -update noar ti set v0='EEAQ9T7XGQGVOY5BJA51' where id=5; -update noar tt set b1='NFIU62OLJ8' where id=5; -update noar ti set b1='NFIU62OLJ8' where id=5; -update noar tt set v0='PW7ICJ9WMEFTB' where id=5; -update noar ti set v0='PW7ICJ9WMEFTB' where id=5; -update noar tt set b2='SG' where id=5; -update noar ti set b2='SG' where id=5; -update noar tt set v0='0PIHZIB3NA2' where id=6; -update noar ti set v0='0PIHZIB3NA2' where id=6; -update noar tt set b0='K2UAETCYF1ZRIUPZWVQ32PNJI' where id=6; -update noar ti set b0='K2UAETCYF1ZRIUPZWVQ32PNJI' where id=6; -update noar tt set v0='BZN443Y8DYHEXBAF2CSRMQWA7NKSXP5I' where id=6; -update noar ti set v0='BZN443Y8DYHEXBAF2CSRMQWA7NKSXP5I' where id=6; -update noar tt set b1='P29U6MKFISL0V85A' where id=6; -update noar ti set b1='P29U6MKFISL0V85A' where id=6; -update noar tt set v0='SSN71F3DAI43QO9K0KWI7ATM4J6' where id=6; -update noar ti set v0='SSN71F3DAI43QO9K0KWI7ATM4J6' where id=6; -update noar tt set b2='ZPTXO' where id=6; -update noar ti set b2='ZPTXO' where id=6; -update noar tt set v0='O6EU2NH9XCIQ20QL3Q0Y202MGFT4YP' where id=7; -update noar ti set v0='O6EU2NH9XCIQ20QL3Q0Y202MGFT4YP' where id=7; -update noar tt set b0='QA366PO6IU82995G00G8D2FX2' where id=7; -update noar ti set b0='QA366PO6IU82995G00G8D2FX2' where id=7; -update noar tt set v0='JMWC9IKLD2AXMNG46HWMJRRK8Y65' where id=7; -update noar ti set v0='JMWC9IKLD2AXMNG46HWMJRRK8Y65' where id=7; -update noar tt set b1='T587BFDUBC6733FBGOG14V' where id=7; -update noar ti set b1='T587BFDUBC6733FBGOG14V' where id=7; -update noar tt set v0='QYK' where id=7; -update noar ti set v0='QYK' where id=7; -update noar tt set b2='U2XOEI4UXQWVPBKMUP82QNZWJLWTN' where id=7; -update noar ti set b2='U2XOEI4UXQWVPBKMUP82QNZWJLWTN' where id=7; -update noar tt set v0='OAUT3IRL' where id=8; -update noar ti set v0='OAUT3IRL' where id=8; -update noar tt set b0='IGDJMCOAV6P1D6JPRLGIHZQ5HIN' where id=8; -update noar ti set b0='IGDJMCOAV6P1D6JPRLGIHZQ5HIN' where id=8; -update noar tt set v0='GERZLX365' where id=8; -update noar ti set v0='GERZLX365' where id=8; -update noar tt set b1='91J5U2MFCRY5A20RSK9' where id=8; -update noar ti set b1='91J5U2MFCRY5A20RSK9' where id=8; -update noar tt set v0='FD6O2TEKP3FB' where id=8; -update noar ti set v0='FD6O2TEKP3FB' where id=8; -update noar tt set b2='UHQK78WYR0FNFGN16IG05DGHMIJ7IQ' where id=8; -update noar ti set b2='UHQK78WYR0FNFGN16IG05DGHMIJ7IQ' where id=8; -update noar tt set v0='U5EXFWMFLW6YQU8SJZ' where id=9; -update noar ti set v0='U5EXFWMFLW6YQU8SJZ' where id=9; -update noar tt set b0='7X8L3B58A7DFNOLF2BTTCCMGHYLFXA' where id=9; -update noar ti set b0='7X8L3B58A7DFNOLF2BTTCCMGHYLFXA' where id=9; -update noar tt set v0='OIH4JC' where id=9; -update noar ti set v0='OIH4JC' where id=9; -update noar tt set b1='X5TK2Z5Q3WPV7B' where id=9; -update noar ti set b1='X5TK2Z5Q3WPV7B' where id=9; -update noar tt set v0='O32I0SKW7G8HJ89FSM9W' where id=9; -update noar ti set v0='O32I0SKW7G8HJ89FSM9W' where id=9; -update noar tt set b2='Q' where id=9; -update noar ti set b2='Q' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - v0 varchar(256) not null, - b0 blob not null, - b1 tinyblob not null, - b2 blob not null -) engine=tokudb; -insert into tt values (1,'','','',''); -insert into tt values (2,'','','',''); -insert into tt values (3,'','','',''); -insert into tt values (4,'','','',''); -insert into tt values (5,'','','',''); -insert into tt values (6,'','','',''); -insert into tt values (7,'','','',''); -insert into tt values (8,'','','',''); -insert into tt values (9,'','','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='A' where id=1; -update noar ti set v0='A' where id=1; -update noar tt set b0='V' where id=1; -update noar ti set b0='V' where id=1; -update noar tt set v0='NDHFNZVNZER0' where id=1; -update noar ti set v0='NDHFNZVNZER0' where id=1; -update noar tt set b1='XOF1T71SN19LPLUUMR8T0V' where id=1; -update noar ti set b1='XOF1T71SN19LPLUUMR8T0V' where id=1; -update noar tt set v0='XGDTM4ULG' where id=1; -update noar ti set v0='XGDTM4ULG' where id=1; -update noar tt set b2='BVPJMZ79OE0VLR0POPJF2COL' where id=1; -update noar ti set b2='BVPJMZ79OE0VLR0POPJF2COL' where id=1; -update noar tt set v0='TDQCD51C6LS50PCSS19' where id=2; -update noar ti set v0='TDQCD51C6LS50PCSS19' where id=2; -update noar tt set b0='2JLOMEVP50CSX5P' where id=2; -update noar ti set b0='2JLOMEVP50CSX5P' where id=2; -update noar tt set v0='W92IZ6W4ZX03GU7HB' where id=2; -update noar ti set v0='W92IZ6W4ZX03GU7HB' where id=2; -update noar tt set b1='NZOFN0P3ANMC9CCNGXYDAMGZIRQ6E' where id=2; -update noar ti set b1='NZOFN0P3ANMC9CCNGXYDAMGZIRQ6E' where id=2; -update noar tt set v0='QK71N118' where id=2; -update noar ti set v0='QK71N118' where id=2; -update noar tt set b2='9218G' where id=2; -update noar ti set b2='9218G' where id=2; -update noar tt set v0='2X' where id=3; -update noar ti set v0='2X' where id=3; -update noar tt set b0='EFN3UHPG090PAMQD5' where id=3; -update noar ti set b0='EFN3UHPG090PAMQD5' where id=3; -update noar tt set v0='U8G0BWY9N83YVKBSHPFRETDNZH9W' where id=3; -update noar ti set v0='U8G0BWY9N83YVKBSHPFRETDNZH9W' where id=3; -update noar tt set b1='U2XEAPDE54CJZCLJL' where id=3; -update noar ti set b1='U2XEAPDE54CJZCLJL' where id=3; -update noar tt set v0='NC4SXFI7MI83I2LTAZ5XZ32VG545V' where id=3; -update noar ti set v0='NC4SXFI7MI83I2LTAZ5XZ32VG545V' where id=3; -update noar tt set b2='JK' where id=3; -update noar ti set b2='JK' where id=3; -update noar tt set v0='RSWUAHUL6' where id=4; -update noar ti set v0='RSWUAHUL6' where id=4; -update noar tt set b0='GRQKU46EDTIGMF' where id=4; -update noar ti set b0='GRQKU46EDTIGMF' where id=4; -update noar tt set v0='BT' where id=4; -update noar ti set v0='BT' where id=4; -update noar tt set b1='X71JQGKDDFX3489U9T7B' where id=4; -update noar ti set b1='X71JQGKDDFX3489U9T7B' where id=4; -update noar tt set v0='57E93K20CL0OC9F1LQI986I' where id=4; -update noar ti set v0='57E93K20CL0OC9F1LQI986I' where id=4; -update noar tt set b2='QF2YZSKIT5YQYRPZ7AAEQGT5T5K2' where id=4; -update noar ti set b2='QF2YZSKIT5YQYRPZ7AAEQGT5T5K2' where id=4; -update noar tt set v0='932WM7HPL6Y2W0DEFD1B' where id=5; -update noar ti set v0='932WM7HPL6Y2W0DEFD1B' where id=5; -update noar tt set b0='3OO66UPVGB3GCD0' where id=5; -update noar ti set b0='3OO66UPVGB3GCD0' where id=5; -update noar tt set v0='82GEP0KY' where id=5; -update noar ti set v0='82GEP0KY' where id=5; -update noar tt set b1='XCZ91DUJ1SATYGR' where id=5; -update noar ti set b1='XCZ91DUJ1SATYGR' where id=5; -update noar tt set v0='J2CZMCT9SRK00YTGWB5P80X' where id=5; -update noar ti set v0='J2CZMCT9SRK00YTGWB5P80X' where id=5; -update noar tt set b2='F8' where id=5; -update noar ti set b2='F8' where id=5; -update noar tt set v0='79TZSK6QXT5QR9F9HN5FRJF1KK8FZY' where id=6; -update noar ti set v0='79TZSK6QXT5QR9F9HN5FRJF1KK8FZY' where id=6; -update noar tt set b0='HMLMF01XNW' where id=6; -update noar ti set b0='HMLMF01XNW' where id=6; -update noar tt set v0='1MKBV34P1BZHNYC20IAISEAZISU' where id=6; -update noar ti set v0='1MKBV34P1BZHNYC20IAISEAZISU' where id=6; -update noar tt set b1='V6Y1597M85UVADSRV' where id=6; -update noar ti set b1='V6Y1597M85UVADSRV' where id=6; -update noar tt set v0='01VB5IWSED' where id=6; -update noar ti set v0='01VB5IWSED' where id=6; -update noar tt set b2='N2WIMKTUKTN96Y' where id=6; -update noar ti set b2='N2WIMKTUKTN96Y' where id=6; -update noar tt set v0='XSFVFOXMR0VTGRXDFSB86CA9HXJTIY7G' where id=7; -update noar ti set v0='XSFVFOXMR0VTGRXDFSB86CA9HXJTIY7G' where id=7; -update noar tt set b0='TLT3' where id=7; -update noar ti set b0='TLT3' where id=7; -update noar tt set v0='96XRMMICUZOBMTW' where id=7; -update noar ti set v0='96XRMMICUZOBMTW' where id=7; -update noar tt set b1='LATU82IPCM65NU120CYY4EJTE2NEGF7L' where id=7; -update noar ti set b1='LATU82IPCM65NU120CYY4EJTE2NEGF7L' where id=7; -update noar tt set v0='HK' where id=7; -update noar ti set v0='HK' where id=7; -update noar tt set b2='F3VYTPKOVD' where id=7; -update noar ti set b2='F3VYTPKOVD' where id=7; -update noar tt set v0='KJBME3Y' where id=8; -update noar ti set v0='KJBME3Y' where id=8; -update noar tt set b0='9X3KW0PCRE545LOCATN70FKIZF' where id=8; -update noar ti set b0='9X3KW0PCRE545LOCATN70FKIZF' where id=8; -update noar tt set v0='2JS7M6NW4A' where id=8; -update noar ti set v0='2JS7M6NW4A' where id=8; -update noar tt set b1='ZEO1PV008CN91AIDPTYJHIY18X961L0' where id=8; -update noar ti set b1='ZEO1PV008CN91AIDPTYJHIY18X961L0' where id=8; -update noar tt set v0='B' where id=8; -update noar ti set v0='B' where id=8; -update noar tt set b2='8HQEAXOZ1A80P0G7A9SP5MQAUZT2KXI' where id=8; -update noar ti set b2='8HQEAXOZ1A80P0G7A9SP5MQAUZT2KXI' where id=8; -update noar tt set v0='TB71OWDBCDPM8021R' where id=9; -update noar ti set v0='TB71OWDBCDPM8021R' where id=9; -update noar tt set b0='9W71QX99B' where id=9; -update noar ti set b0='9W71QX99B' where id=9; -update noar tt set v0='NORAZPZ6K8L5RBX4L0ZELX8' where id=9; -update noar ti set v0='NORAZPZ6K8L5RBX4L0ZELX8' where id=9; -update noar tt set b1='V8ULB' where id=9; -update noar ti set b1='V8ULB' where id=9; -update noar tt set v0='YH' where id=9; -update noar ti set v0='YH' where id=9; -update noar tt set b2='33XO87DZ48YNP1FGU0B9N06' where id=9; -update noar ti set b2='33XO87DZ48YNP1FGU0B9N06' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - v0 varchar(32) null, - b0 blob null, - b1 tinyblob null, - b2 mediumblob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='LIO' where id=1; -update noar ti set v0='LIO' where id=1; -update noar tt set b0='Y3G6XG4' where id=1; -update noar ti set b0='Y3G6XG4' where id=1; -update noar tt set v0='F1TTLJHRNTKD11T0X' where id=1; -update noar ti set v0='F1TTLJHRNTKD11T0X' where id=1; -update noar tt set b1='BQUA0FE5BZH9ID18986P' where id=1; -update noar ti set b1='BQUA0FE5BZH9ID18986P' where id=1; -update noar tt set v0='UNNX6JFFSSHUMN' where id=1; -update noar ti set v0='UNNX6JFFSSHUMN' where id=1; -update noar tt set b2='P' where id=1; -update noar ti set b2='P' where id=1; -update noar tt set v0='DDU4IIUFEABM7KXK2O7THELM' where id=2; -update noar ti set v0='DDU4IIUFEABM7KXK2O7THELM' where id=2; -update noar tt set b0='RTSYOKZYRMV' where id=2; -update noar ti set b0='RTSYOKZYRMV' where id=2; -update noar tt set v0='05I0' where id=2; -update noar ti set v0='05I0' where id=2; -update noar tt set b1='N9J0WU24H943KVVVX' where id=2; -update noar ti set b1='N9J0WU24H943KVVVX' where id=2; -update noar tt set v0='DJU70IQUL6D3K' where id=2; -update noar ti set v0='DJU70IQUL6D3K' where id=2; -update noar tt set b2='BHRWFKXZXV6I7F2BIVQ2M0JW1NX' where id=2; -update noar ti set b2='BHRWFKXZXV6I7F2BIVQ2M0JW1NX' where id=2; -update noar tt set v0='7FUQOVDRP8Q2N5RWI3J9M' where id=3; -update noar ti set v0='7FUQOVDRP8Q2N5RWI3J9M' where id=3; -update noar tt set b0='J8E157H7I00UPVKWCDDXC9O6F96P8D' where id=3; -update noar ti set b0='J8E157H7I00UPVKWCDDXC9O6F96P8D' where id=3; -update noar tt set v0='OMFW2X6OPA63M2MDH0' where id=3; -update noar ti set v0='OMFW2X6OPA63M2MDH0' where id=3; -update noar tt set b1='DYCORSVKDBSIODO' where id=3; -update noar ti set b1='DYCORSVKDBSIODO' where id=3; -update noar tt set v0='00I4XWBVVX3XQ93UAIZ9DXR6YB' where id=3; -update noar ti set v0='00I4XWBVVX3XQ93UAIZ9DXR6YB' where id=3; -update noar tt set b2='YLKWWFI0LSXIRPY' where id=3; -update noar ti set b2='YLKWWFI0LSXIRPY' where id=3; -update noar tt set v0='S4AD6GZOPINU' where id=4; -update noar ti set v0='S4AD6GZOPINU' where id=4; -update noar tt set b0='HKWF6Q5' where id=4; -update noar ti set b0='HKWF6Q5' where id=4; -update noar tt set v0='MN4MZABRRR' where id=4; -update noar ti set v0='MN4MZABRRR' where id=4; -update noar tt set b1='JBG3CX7QIJPG8E4WKOP' where id=4; -update noar ti set b1='JBG3CX7QIJPG8E4WKOP' where id=4; -update noar tt set v0='XV0D7BVKE5PN60PI' where id=4; -update noar ti set v0='XV0D7BVKE5PN60PI' where id=4; -update noar tt set b2='LU' where id=4; -update noar ti set b2='LU' where id=4; -update noar tt set v0='QTRCD6W428RS51AGQDDGK' where id=5; -update noar ti set v0='QTRCD6W428RS51AGQDDGK' where id=5; -update noar tt set b0='9RGU7ICDRQ2BPIGU8' where id=5; -update noar ti set b0='9RGU7ICDRQ2BPIGU8' where id=5; -update noar tt set v0='5CDTGIYK' where id=5; -update noar ti set v0='5CDTGIYK' where id=5; -update noar tt set b1='5DVYO1HEEX3B54I295752L7SG1QO' where id=5; -update noar ti set b1='5DVYO1HEEX3B54I295752L7SG1QO' where id=5; -update noar tt set v0='D4' where id=5; -update noar ti set v0='D4' where id=5; -update noar tt set b2='15D3YAD6XZ' where id=5; -update noar ti set b2='15D3YAD6XZ' where id=5; -update noar tt set v0='1AM2CE6P2QXNZH4KYJM' where id=6; -update noar ti set v0='1AM2CE6P2QXNZH4KYJM' where id=6; -update noar tt set b0='ECB6UMTQGFI97J2OXIE1TVLVYH' where id=6; -update noar ti set b0='ECB6UMTQGFI97J2OXIE1TVLVYH' where id=6; -update noar tt set v0='N7LF7GMG3VBGB0ECODQZGHQU3J3MF9G' where id=6; -update noar ti set v0='N7LF7GMG3VBGB0ECODQZGHQU3J3MF9G' where id=6; -update noar tt set b1='MR74EBF' where id=6; -update noar ti set b1='MR74EBF' where id=6; -update noar tt set v0='IFAJQOVRP3UB0MN65BFZTKI00I1CQ' where id=6; -update noar ti set v0='IFAJQOVRP3UB0MN65BFZTKI00I1CQ' where id=6; -update noar tt set b2='4I5O1UF4P' where id=6; -update noar ti set b2='4I5O1UF4P' where id=6; -update noar tt set v0='JH2BE3I4EJ8038XQKYYUHXKRRZ6' where id=7; -update noar ti set v0='JH2BE3I4EJ8038XQKYYUHXKRRZ6' where id=7; -update noar tt set b0='WVRKN6KQI81P' where id=7; -update noar ti set b0='WVRKN6KQI81P' where id=7; -update noar tt set v0='9YCQ5SM8UGLDKJT109L' where id=7; -update noar ti set v0='9YCQ5SM8UGLDKJT109L' where id=7; -update noar tt set b1='6JU7I4A0CL' where id=7; -update noar ti set b1='6JU7I4A0CL' where id=7; -update noar tt set v0='JKGCOF73Z91ZW7TKRAE' where id=7; -update noar ti set v0='JKGCOF73Z91ZW7TKRAE' where id=7; -update noar tt set b2='U38TDJVLX2VBFCDH80DW' where id=7; -update noar ti set b2='U38TDJVLX2VBFCDH80DW' where id=7; -update noar tt set v0='65KD4FMW1IZUAPJ5O4Y1HUZRQC' where id=8; -update noar ti set v0='65KD4FMW1IZUAPJ5O4Y1HUZRQC' where id=8; -update noar tt set b0='C8V604PVVWW98W50X7R' where id=8; -update noar ti set b0='C8V604PVVWW98W50X7R' where id=8; -update noar tt set v0='Q8A1HTG' where id=8; -update noar ti set v0='Q8A1HTG' where id=8; -update noar tt set b1='8J0PJKK2' where id=8; -update noar ti set b1='8J0PJKK2' where id=8; -update noar tt set v0='83TXLAE0BLSTDEMYA7NI' where id=8; -update noar ti set v0='83TXLAE0BLSTDEMYA7NI' where id=8; -update noar tt set b2='3YOQ' where id=8; -update noar ti set b2='3YOQ' where id=8; -update noar tt set v0='3UBHD4NN1UOAXGBLEID' where id=9; -update noar ti set v0='3UBHD4NN1UOAXGBLEID' where id=9; -update noar tt set b0='34E5ENE2UY9TG0L4BL18O5' where id=9; -update noar ti set b0='34E5ENE2UY9TG0L4BL18O5' where id=9; -update noar tt set v0='PY80H4WWA' where id=9; -update noar ti set v0='PY80H4WWA' where id=9; -update noar tt set b1='WNEKC3QIXU2AR8HAD4KDQYSTU' where id=9; -update noar ti set b1='WNEKC3QIXU2AR8HAD4KDQYSTU' where id=9; -update noar tt set v0='7YBMM6TTD0PU087URN' where id=9; -update noar ti set v0='7YBMM6TTD0PU087URN' where id=9; -update noar tt set b2='W932B20IVW48' where id=9; -update noar ti set b2='W932B20IVW48' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - v0 varchar(256) null, - b0 blob null, - b1 tinyblob null, - b2 mediumblob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='66P36' where id=1; -update noar ti set v0='66P36' where id=1; -update noar tt set b0='MCD37D1R1KER146C' where id=1; -update noar ti set b0='MCD37D1R1KER146C' where id=1; -update noar tt set v0='I1ISD5FF2SRZD6DU8TE72' where id=1; -update noar ti set v0='I1ISD5FF2SRZD6DU8TE72' where id=1; -update noar tt set b1='FOKH5RXCGIDV5' where id=1; -update noar ti set b1='FOKH5RXCGIDV5' where id=1; -update noar tt set v0='JR2Z4Z1YY5NK7G83OCS2BAL37LAJ5TY' where id=1; -update noar ti set v0='JR2Z4Z1YY5NK7G83OCS2BAL37LAJ5TY' where id=1; -update noar tt set b2='8L971501K5EMR3N9N2' where id=1; -update noar ti set b2='8L971501K5EMR3N9N2' where id=1; -update noar tt set v0='DISLIWXU9O2NU5UKD8NF0OIKTNOCN3YF' where id=2; -update noar ti set v0='DISLIWXU9O2NU5UKD8NF0OIKTNOCN3YF' where id=2; -update noar tt set b0='GH' where id=2; -update noar ti set b0='GH' where id=2; -update noar tt set v0='I573FM2MUXCQDSQ6QVCRO1OW2B6BKOT' where id=2; -update noar ti set v0='I573FM2MUXCQDSQ6QVCRO1OW2B6BKOT' where id=2; -update noar tt set b1='883WS4IM7LG1ORUSVV4ATO4CQY71AS' where id=2; -update noar ti set b1='883WS4IM7LG1ORUSVV4ATO4CQY71AS' where id=2; -update noar tt set v0='9BLVXWR70TQ77GBR3357PPS' where id=2; -update noar ti set v0='9BLVXWR70TQ77GBR3357PPS' where id=2; -update noar tt set b2='KAK2QFV8AC9JMZ' where id=2; -update noar ti set b2='KAK2QFV8AC9JMZ' where id=2; -update noar tt set v0='0JAJ10RDO3E' where id=3; -update noar ti set v0='0JAJ10RDO3E' where id=3; -update noar tt set b0='9E6SCXIE51YLGRTB6885W' where id=3; -update noar ti set b0='9E6SCXIE51YLGRTB6885W' where id=3; -update noar tt set v0='XD7' where id=3; -update noar ti set v0='XD7' where id=3; -update noar tt set b1='S1Y2CUR7KXKEC60B' where id=3; -update noar ti set b1='S1Y2CUR7KXKEC60B' where id=3; -update noar tt set v0='KVH56ZNR' where id=3; -update noar ti set v0='KVH56ZNR' where id=3; -update noar tt set b2='L71GF9OKU' where id=3; -update noar ti set b2='L71GF9OKU' where id=3; -update noar tt set v0='8CHNTTOU24ZSWWVCY1A4ADB6ST4QBRX' where id=4; -update noar ti set v0='8CHNTTOU24ZSWWVCY1A4ADB6ST4QBRX' where id=4; -update noar tt set b0='HXAM9OKSZ690M7NTC162' where id=4; -update noar ti set b0='HXAM9OKSZ690M7NTC162' where id=4; -update noar tt set v0='NEJHHDD' where id=4; -update noar ti set v0='NEJHHDD' where id=4; -update noar tt set b1='A568QPAT4XAYNCHP5W7' where id=4; -update noar ti set b1='A568QPAT4XAYNCHP5W7' where id=4; -update noar tt set v0='1FV1' where id=4; -update noar ti set v0='1FV1' where id=4; -update noar tt set b2='L8B6XD4ZBI8YW47WN' where id=4; -update noar ti set b2='L8B6XD4ZBI8YW47WN' where id=4; -update noar tt set v0='KNWS76FFVLNES5QW0FXGCRGZ7G4' where id=5; -update noar ti set v0='KNWS76FFVLNES5QW0FXGCRGZ7G4' where id=5; -update noar tt set b0='YODXM2TJPBSKRA42DJ0N03' where id=5; -update noar ti set b0='YODXM2TJPBSKRA42DJ0N03' where id=5; -update noar tt set v0='SMNSDK41XML66DA4ZVP2R' where id=5; -update noar ti set v0='SMNSDK41XML66DA4ZVP2R' where id=5; -update noar tt set b1='3O8MPVDHCE9RQ7LND2BLJQ2' where id=5; -update noar ti set b1='3O8MPVDHCE9RQ7LND2BLJQ2' where id=5; -update noar tt set v0='JPNFEYTXVCK8SEKUNOBDRQLYZNOZW5PJ' where id=5; -update noar ti set v0='JPNFEYTXVCK8SEKUNOBDRQLYZNOZW5PJ' where id=5; -update noar tt set b2='7TPAJV1I56NEUEEMUCY' where id=5; -update noar ti set b2='7TPAJV1I56NEUEEMUCY' where id=5; -update noar tt set v0='XIM' where id=6; -update noar ti set v0='XIM' where id=6; -update noar tt set b0='6PQ3OFLL3NQE3F1Y' where id=6; -update noar ti set b0='6PQ3OFLL3NQE3F1Y' where id=6; -update noar tt set v0='10ZGXC9H13O30CX' where id=6; -update noar ti set v0='10ZGXC9H13O30CX' where id=6; -update noar tt set b1='76GNA8DZML' where id=6; -update noar ti set b1='76GNA8DZML' where id=6; -update noar tt set v0='O8THJC8LA2ZLU3FSFXU0T8FRBMQ75C1' where id=6; -update noar ti set v0='O8THJC8LA2ZLU3FSFXU0T8FRBMQ75C1' where id=6; -update noar tt set b2='MNWHHPLF0V3W4' where id=6; -update noar ti set b2='MNWHHPLF0V3W4' where id=6; -update noar tt set v0='2NHJWSU' where id=7; -update noar ti set v0='2NHJWSU' where id=7; -update noar tt set b0='CMLY7L9B01Y1PLEA07BBCFVQ0' where id=7; -update noar ti set b0='CMLY7L9B01Y1PLEA07BBCFVQ0' where id=7; -update noar tt set v0='0MWVFT8GACPKZ2ULEACPM' where id=7; -update noar ti set v0='0MWVFT8GACPKZ2ULEACPM' where id=7; -update noar tt set b1='X72JXX5TYVRB4VQUO28S7Z3RUK3T' where id=7; -update noar ti set b1='X72JXX5TYVRB4VQUO28S7Z3RUK3T' where id=7; -update noar tt set v0='MMB7WITNIC' where id=7; -update noar ti set v0='MMB7WITNIC' where id=7; -update noar tt set b2='ELP5PQ38R336W' where id=7; -update noar ti set b2='ELP5PQ38R336W' where id=7; -update noar tt set v0='4IJA' where id=8; -update noar ti set v0='4IJA' where id=8; -update noar tt set b0='A34SH83OUHG3PTEZPCLIHGV0I4F9MXU' where id=8; -update noar ti set b0='A34SH83OUHG3PTEZPCLIHGV0I4F9MXU' where id=8; -update noar tt set v0='9Q2IWCJFJ5PGMQ5DOA9NEJWZBX4' where id=8; -update noar ti set v0='9Q2IWCJFJ5PGMQ5DOA9NEJWZBX4' where id=8; -update noar tt set b1='GLZFTYYCMUI' where id=8; -update noar ti set b1='GLZFTYYCMUI' where id=8; -update noar tt set v0='VHW' where id=8; -update noar ti set v0='VHW' where id=8; -update noar tt set b2='205J91153H2NOGTNW' where id=8; -update noar ti set b2='205J91153H2NOGTNW' where id=8; -update noar tt set v0='XCN' where id=9; -update noar ti set v0='XCN' where id=9; -update noar tt set b0='N36OMXEDRSW' where id=9; -update noar ti set b0='N36OMXEDRSW' where id=9; -update noar tt set v0='P8MQYP05GOWEDGV8AP09ROAHWX' where id=9; -update noar ti set v0='P8MQYP05GOWEDGV8AP09ROAHWX' where id=9; -update noar tt set b1='ODBZE0PZXQF' where id=9; -update noar ti set b1='ODBZE0PZXQF' where id=9; -update noar tt set v0='ZB2EHYQ7ISRFNGJZUUYBNRN1SS7CT0L' where id=9; -update noar ti set v0='ZB2EHYQ7ISRFNGJZUUYBNRN1SS7CT0L' where id=9; -update noar tt set b2='H559PD' where id=9; -update noar ti set b2='H559PD' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - v0 varchar(32) not null, - b0 blob not null, - b1 tinyblob not null, - b2 mediumblob not null -) engine=tokudb; -insert into tt values (1,'','','',''); -insert into tt values (2,'','','',''); -insert into tt values (3,'','','',''); -insert into tt values (4,'','','',''); -insert into tt values (5,'','','',''); -insert into tt values (6,'','','',''); -insert into tt values (7,'','','',''); -insert into tt values (8,'','','',''); -insert into tt values (9,'','','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='WR7DJFSN5UGF203' where id=1; -update noar ti set v0='WR7DJFSN5UGF203' where id=1; -update noar tt set b0='EV' where id=1; -update noar ti set b0='EV' where id=1; -update noar tt set v0='1VUUO1B6L357Z' where id=1; -update noar ti set v0='1VUUO1B6L357Z' where id=1; -update noar tt set b1='22G3VQTOGKVMEE753PIYJ7DY' where id=1; -update noar ti set b1='22G3VQTOGKVMEE753PIYJ7DY' where id=1; -update noar tt set v0='QCDDPRM3' where id=1; -update noar ti set v0='QCDDPRM3' where id=1; -update noar tt set b2='RK57SA2IS9ROA7EYOO4' where id=1; -update noar ti set b2='RK57SA2IS9ROA7EYOO4' where id=1; -update noar tt set v0='H3AEEE8CSC' where id=2; -update noar ti set v0='H3AEEE8CSC' where id=2; -update noar tt set b0='XLVMMDCHOJLG0QSONPSNJ' where id=2; -update noar ti set b0='XLVMMDCHOJLG0QSONPSNJ' where id=2; -update noar tt set v0='34MKP6XSBWURK3NRNFDW' where id=2; -update noar ti set v0='34MKP6XSBWURK3NRNFDW' where id=2; -update noar tt set b1='S0UFBA' where id=2; -update noar ti set b1='S0UFBA' where id=2; -update noar tt set v0='0PAUX919QJILAZ43L92TTE8CP436J3' where id=2; -update noar ti set v0='0PAUX919QJILAZ43L92TTE8CP436J3' where id=2; -update noar tt set b2='T7UBGMD4ITIEQKH8GL0' where id=2; -update noar ti set b2='T7UBGMD4ITIEQKH8GL0' where id=2; -update noar tt set v0='ONRJ4D5ZGSD' where id=3; -update noar ti set v0='ONRJ4D5ZGSD' where id=3; -update noar tt set b0='0ZIOOUCWDYWM' where id=3; -update noar ti set b0='0ZIOOUCWDYWM' where id=3; -update noar tt set v0='EHHKBBXXA4' where id=3; -update noar ti set v0='EHHKBBXXA4' where id=3; -update noar tt set b1='8' where id=3; -update noar ti set b1='8' where id=3; -update noar tt set v0='CO0509YW75U84YV4RIBP4L' where id=3; -update noar ti set v0='CO0509YW75U84YV4RIBP4L' where id=3; -update noar tt set b2='97' where id=3; -update noar ti set b2='97' where id=3; -update noar tt set v0='WYYMGD0YQH21QCRBWBI' where id=4; -update noar ti set v0='WYYMGD0YQH21QCRBWBI' where id=4; -update noar tt set b0='PQ3EH514' where id=4; -update noar ti set b0='PQ3EH514' where id=4; -update noar tt set v0='W' where id=4; -update noar ti set v0='W' where id=4; -update noar tt set b1='BJMRH8FHAL7B88BY' where id=4; -update noar ti set b1='BJMRH8FHAL7B88BY' where id=4; -update noar tt set v0='A3CGOLVBT0H0272NOKV7HW10N4HM' where id=4; -update noar ti set v0='A3CGOLVBT0H0272NOKV7HW10N4HM' where id=4; -update noar tt set b2='30R4CZ07A' where id=4; -update noar ti set b2='30R4CZ07A' where id=4; -update noar tt set v0='VCD3LXJNFBQICHQ651MMFRCJDMLSRYWP' where id=5; -update noar ti set v0='VCD3LXJNFBQICHQ651MMFRCJDMLSRYWP' where id=5; -update noar tt set b0='WUBK8N7CE9Y84LJU84GMYAA8YLRGQR' where id=5; -update noar ti set b0='WUBK8N7CE9Y84LJU84GMYAA8YLRGQR' where id=5; -update noar tt set v0='GAICEJEF1R5LATFGRMI1XWRJECCX8VT' where id=5; -update noar ti set v0='GAICEJEF1R5LATFGRMI1XWRJECCX8VT' where id=5; -update noar tt set b1='L2FAACS2R' where id=5; -update noar ti set b1='L2FAACS2R' where id=5; -update noar tt set v0='5S81UC' where id=5; -update noar ti set v0='5S81UC' where id=5; -update noar tt set b2='6ORJKA8QGG628JLM6WZ81FAD18RSD' where id=5; -update noar ti set b2='6ORJKA8QGG628JLM6WZ81FAD18RSD' where id=5; -update noar tt set v0='9UR7X6DBXII6M' where id=6; -update noar ti set v0='9UR7X6DBXII6M' where id=6; -update noar tt set b0='T47UURFHFDDERX9' where id=6; -update noar ti set b0='T47UURFHFDDERX9' where id=6; -update noar tt set v0='XRMBRITRHUPS1YCICHRE3BC' where id=6; -update noar ti set v0='XRMBRITRHUPS1YCICHRE3BC' where id=6; -update noar tt set b1='DXU1KCSMQH9MZ4X0GIH450NC25FYQ0A' where id=6; -update noar ti set b1='DXU1KCSMQH9MZ4X0GIH450NC25FYQ0A' where id=6; -update noar tt set v0='20B0YH1KL3' where id=6; -update noar ti set v0='20B0YH1KL3' where id=6; -update noar tt set b2='96Z4CVKLB839H7JG6OB29DMD04' where id=6; -update noar ti set b2='96Z4CVKLB839H7JG6OB29DMD04' where id=6; -update noar tt set v0='T' where id=7; -update noar ti set v0='T' where id=7; -update noar tt set b0='6T8DDEHYU' where id=7; -update noar ti set b0='6T8DDEHYU' where id=7; -update noar tt set v0='WZRBYQB' where id=7; -update noar ti set v0='WZRBYQB' where id=7; -update noar tt set b1='C121LRUJAW7' where id=7; -update noar ti set b1='C121LRUJAW7' where id=7; -update noar tt set v0='QSNGTU6KKSJOMJOLSLX5KN' where id=7; -update noar ti set v0='QSNGTU6KKSJOMJOLSLX5KN' where id=7; -update noar tt set b2='RNCBIAQCUBBVYHO1QZL' where id=7; -update noar ti set b2='RNCBIAQCUBBVYHO1QZL' where id=7; -update noar tt set v0='48DFTNYZ51EC5A0R8' where id=8; -update noar ti set v0='48DFTNYZ51EC5A0R8' where id=8; -update noar tt set b0='LTZXKAJS9UTIEX9BYWTLRX' where id=8; -update noar ti set b0='LTZXKAJS9UTIEX9BYWTLRX' where id=8; -update noar tt set v0='C3H6FBJTXH4NLPZXUC7G5QY' where id=8; -update noar ti set v0='C3H6FBJTXH4NLPZXUC7G5QY' where id=8; -update noar tt set b1='MB8O4XMG2XTZ0DP95NWOYE830J3D' where id=8; -update noar ti set b1='MB8O4XMG2XTZ0DP95NWOYE830J3D' where id=8; -update noar tt set v0='BBT67HO8JSHCQ45172V03ZDF876M840I' where id=8; -update noar ti set v0='BBT67HO8JSHCQ45172V03ZDF876M840I' where id=8; -update noar tt set b2='5JW4J6E89GQMJG1PVC714' where id=8; -update noar ti set b2='5JW4J6E89GQMJG1PVC714' where id=8; -update noar tt set v0='XA98R9ABPQEII01YDER24X230ZFOJ' where id=9; -update noar ti set v0='XA98R9ABPQEII01YDER24X230ZFOJ' where id=9; -update noar tt set b0='YW34M3XCXH1' where id=9; -update noar ti set b0='YW34M3XCXH1' where id=9; -update noar tt set v0='97K' where id=9; -update noar ti set v0='97K' where id=9; -update noar tt set b1='7TQBWK7AGI9GW19YJA8' where id=9; -update noar ti set b1='7TQBWK7AGI9GW19YJA8' where id=9; -update noar tt set v0='QVGTS6U49IC' where id=9; -update noar ti set v0='QVGTS6U49IC' where id=9; -update noar tt set b2='I2YICWKYUF6F4OYSC' where id=9; -update noar ti set b2='I2YICWKYUF6F4OYSC' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - v0 varchar(256) not null, - b0 blob not null, - b1 tinyblob not null, - b2 mediumblob not null -) engine=tokudb; -insert into tt values (1,'','','',''); -insert into tt values (2,'','','',''); -insert into tt values (3,'','','',''); -insert into tt values (4,'','','',''); -insert into tt values (5,'','','',''); -insert into tt values (6,'','','',''); -insert into tt values (7,'','','',''); -insert into tt values (8,'','','',''); -insert into tt values (9,'','','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='4BMPA0839HMTXAG9ME9' where id=1; -update noar ti set v0='4BMPA0839HMTXAG9ME9' where id=1; -update noar tt set b0='75NQQ2PEXW9GKWIFYX0RYSHU' where id=1; -update noar ti set b0='75NQQ2PEXW9GKWIFYX0RYSHU' where id=1; -update noar tt set v0='OAQU' where id=1; -update noar ti set v0='OAQU' where id=1; -update noar tt set b1='LL3RXSPP' where id=1; -update noar ti set b1='LL3RXSPP' where id=1; -update noar tt set v0='RY88YGHYMHYF09VQ5UL' where id=1; -update noar ti set v0='RY88YGHYMHYF09VQ5UL' where id=1; -update noar tt set b2='VK6LJ2Q4TJEDO5MYVQPS7OHPE4O9B' where id=1; -update noar ti set b2='VK6LJ2Q4TJEDO5MYVQPS7OHPE4O9B' where id=1; -update noar tt set v0='E8NIALN0VFSJ2BWQQOM' where id=2; -update noar ti set v0='E8NIALN0VFSJ2BWQQOM' where id=2; -update noar tt set b0='SXBENCGGQDZ7UOD' where id=2; -update noar ti set b0='SXBENCGGQDZ7UOD' where id=2; -update noar tt set v0='FJ4SZOOQR3ITVRGE389GON66U2P2' where id=2; -update noar ti set v0='FJ4SZOOQR3ITVRGE389GON66U2P2' where id=2; -update noar tt set b1='6W7JQI' where id=2; -update noar ti set b1='6W7JQI' where id=2; -update noar tt set v0='SBMKBU62US8JD' where id=2; -update noar ti set v0='SBMKBU62US8JD' where id=2; -update noar tt set b2='M1CJRQAM5A57BLVOQBAJLASOU8WN9QC2' where id=2; -update noar ti set b2='M1CJRQAM5A57BLVOQBAJLASOU8WN9QC2' where id=2; -update noar tt set v0='S8OIEBK88Z4KXZPXG091' where id=3; -update noar ti set v0='S8OIEBK88Z4KXZPXG091' where id=3; -update noar tt set b0='P3WVCX809TM860ITFOO' where id=3; -update noar ti set b0='P3WVCX809TM860ITFOO' where id=3; -update noar tt set v0='R4FT1HKOKH4AOL' where id=3; -update noar ti set v0='R4FT1HKOKH4AOL' where id=3; -update noar tt set b1='2QQAMDVB5ZPJNM5W4LPA6C2H77' where id=3; -update noar ti set b1='2QQAMDVB5ZPJNM5W4LPA6C2H77' where id=3; -update noar tt set v0='P25ZB0' where id=3; -update noar ti set v0='P25ZB0' where id=3; -update noar tt set b2='VJJ9W' where id=3; -update noar ti set b2='VJJ9W' where id=3; -update noar tt set v0='G8IW52HR13JY24B1G9DAWXZ1B' where id=4; -update noar ti set v0='G8IW52HR13JY24B1G9DAWXZ1B' where id=4; -update noar tt set b0='530BIS28' where id=4; -update noar ti set b0='530BIS28' where id=4; -update noar tt set v0='D829NKDKO4YSXT3A3XKPGIVBGQLJL' where id=4; -update noar ti set v0='D829NKDKO4YSXT3A3XKPGIVBGQLJL' where id=4; -update noar tt set b1='E8QMTNPL6OHOS2MXOCTBBYJ9N5L' where id=4; -update noar ti set b1='E8QMTNPL6OHOS2MXOCTBBYJ9N5L' where id=4; -update noar tt set v0='XDXQ50' where id=4; -update noar ti set v0='XDXQ50' where id=4; -update noar tt set b2='Y2LYY15VF1NS42J' where id=4; -update noar ti set b2='Y2LYY15VF1NS42J' where id=4; -update noar tt set v0='WFZ28TP9VSEIZ1UFG3QY7UL' where id=5; -update noar ti set v0='WFZ28TP9VSEIZ1UFG3QY7UL' where id=5; -update noar tt set b0='M8OBJKCFYUOP5BVJFH39OW96Z' where id=5; -update noar ti set b0='M8OBJKCFYUOP5BVJFH39OW96Z' where id=5; -update noar tt set v0='GGDKHWXD8W3Z5C5VW' where id=5; -update noar ti set v0='GGDKHWXD8W3Z5C5VW' where id=5; -update noar tt set b1='2H13PFK' where id=5; -update noar ti set b1='2H13PFK' where id=5; -update noar tt set v0='YMPW39D' where id=5; -update noar ti set v0='YMPW39D' where id=5; -update noar tt set b2='UUDE38BOTQN' where id=5; -update noar ti set b2='UUDE38BOTQN' where id=5; -update noar tt set v0='W30U893BRMN52AZWGJPH1LW' where id=6; -update noar ti set v0='W30U893BRMN52AZWGJPH1LW' where id=6; -update noar tt set b0='LF7EIP5KUI93SHMNLBAKR52XAFFJ7XO' where id=6; -update noar ti set b0='LF7EIP5KUI93SHMNLBAKR52XAFFJ7XO' where id=6; -update noar tt set v0='VH1A6JAWGD' where id=6; -update noar ti set v0='VH1A6JAWGD' where id=6; -update noar tt set b1='WN8CNRAP6' where id=6; -update noar ti set b1='WN8CNRAP6' where id=6; -update noar tt set v0='JRTNA7C5ZLQ' where id=6; -update noar ti set v0='JRTNA7C5ZLQ' where id=6; -update noar tt set b2='VL' where id=6; -update noar ti set b2='VL' where id=6; -update noar tt set v0='9BL8' where id=7; -update noar ti set v0='9BL8' where id=7; -update noar tt set b0='5NRVOC45C5GO4F0' where id=7; -update noar ti set b0='5NRVOC45C5GO4F0' where id=7; -update noar tt set v0='XO5VLH981YJ55EK' where id=7; -update noar ti set v0='XO5VLH981YJ55EK' where id=7; -update noar tt set b1='YABWQ96' where id=7; -update noar ti set b1='YABWQ96' where id=7; -update noar tt set v0='NYYG9WXZ6UWXY6P4' where id=7; -update noar ti set v0='NYYG9WXZ6UWXY6P4' where id=7; -update noar tt set b2='7ETM320DY3GHU4YZD5676HLAPF0MBL5' where id=7; -update noar ti set b2='7ETM320DY3GHU4YZD5676HLAPF0MBL5' where id=7; -update noar tt set v0='8MONZCNZQ3RPNYU7' where id=8; -update noar ti set v0='8MONZCNZQ3RPNYU7' where id=8; -update noar tt set b0='D6ZXJEV1IM5PS3O' where id=8; -update noar ti set b0='D6ZXJEV1IM5PS3O' where id=8; -update noar tt set v0='D9TUDNF91JCUTIFJHNLB54R0YDT3J6B' where id=8; -update noar ti set v0='D9TUDNF91JCUTIFJHNLB54R0YDT3J6B' where id=8; -update noar tt set b1='EWIKJU8LTL7KVESF49REB' where id=8; -update noar ti set b1='EWIKJU8LTL7KVESF49REB' where id=8; -update noar tt set v0='MZWB8EYN8Q01HCRQ7ALO3NO' where id=8; -update noar ti set v0='MZWB8EYN8Q01HCRQ7ALO3NO' where id=8; -update noar tt set b2='GUC58YXKP9QJVXHB' where id=8; -update noar ti set b2='GUC58YXKP9QJVXHB' where id=8; -update noar tt set v0='UX' where id=9; -update noar ti set v0='UX' where id=9; -update noar tt set b0='4PG35UP1L7DJDH' where id=9; -update noar ti set b0='4PG35UP1L7DJDH' where id=9; -update noar tt set v0='L43E8G38E4ZHEIV2ZM3998WKZ8RNQW3W' where id=9; -update noar ti set v0='L43E8G38E4ZHEIV2ZM3998WKZ8RNQW3W' where id=9; -update noar tt set b1='XMA24D23EOYOKDELMKFULZ8JOC9' where id=9; -update noar ti set b1='XMA24D23EOYOKDELMKFULZ8JOC9' where id=9; -update noar tt set v0='Z75XPJ8B1CD7J' where id=9; -update noar ti set v0='Z75XPJ8B1CD7J' where id=9; -update noar tt set b2='0GI5E7EMXH5Y08N69H' where id=9; -update noar ti set b2='0GI5E7EMXH5Y08N69H' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - v0 varchar(32) null, - b0 blob null, - b1 tinyblob null, - b2 longblob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='1' where id=1; -update noar ti set v0='1' where id=1; -update noar tt set b0='PE9UBWBA1U146G1B95ZZ' where id=1; -update noar ti set b0='PE9UBWBA1U146G1B95ZZ' where id=1; -update noar tt set v0='FCAMWNQXB0KCFIU9NAA56O37MIFKGI' where id=1; -update noar ti set v0='FCAMWNQXB0KCFIU9NAA56O37MIFKGI' where id=1; -update noar tt set b1='BQI2G6ND4YKE8FNDXB8B' where id=1; -update noar ti set b1='BQI2G6ND4YKE8FNDXB8B' where id=1; -update noar tt set v0='9MT' where id=1; -update noar ti set v0='9MT' where id=1; -update noar tt set b2='P1I13X3PQXQINJR3EBGP0AY7M8U92SU' where id=1; -update noar ti set b2='P1I13X3PQXQINJR3EBGP0AY7M8U92SU' where id=1; -update noar tt set v0='YMGK9UVXIC615FT' where id=2; -update noar ti set v0='YMGK9UVXIC615FT' where id=2; -update noar tt set b0='6V0SZA3II' where id=2; -update noar ti set b0='6V0SZA3II' where id=2; -update noar tt set v0='ZTNIWLDRSH783L8USGALRSM1Z94' where id=2; -update noar ti set v0='ZTNIWLDRSH783L8USGALRSM1Z94' where id=2; -update noar tt set b1='KUHYYS0YN7XEERBVY81J9G4TAYL4' where id=2; -update noar ti set b1='KUHYYS0YN7XEERBVY81J9G4TAYL4' where id=2; -update noar tt set v0='12E53SYUAA85K71QWJP09I3T6X' where id=2; -update noar ti set v0='12E53SYUAA85K71QWJP09I3T6X' where id=2; -update noar tt set b2='B5TXCIUP7IZVUVYCQOL3RQ' where id=2; -update noar ti set b2='B5TXCIUP7IZVUVYCQOL3RQ' where id=2; -update noar tt set v0='U3D7L5IBMVFP48JJXCBSGX4RIYYF' where id=3; -update noar ti set v0='U3D7L5IBMVFP48JJXCBSGX4RIYYF' where id=3; -update noar tt set b0='LLELKM' where id=3; -update noar ti set b0='LLELKM' where id=3; -update noar tt set v0='HL2EY0ZSRE3BPROSWFJ1B' where id=3; -update noar ti set v0='HL2EY0ZSRE3BPROSWFJ1B' where id=3; -update noar tt set b1='3A03S' where id=3; -update noar ti set b1='3A03S' where id=3; -update noar tt set v0='F12YJ2T224ZMWQC3541' where id=3; -update noar ti set v0='F12YJ2T224ZMWQC3541' where id=3; -update noar tt set b2='8QZPHW6MP6PLTRGUR2DOQK0Z3MU6W' where id=3; -update noar ti set b2='8QZPHW6MP6PLTRGUR2DOQK0Z3MU6W' where id=3; -update noar tt set v0='1VJASU73FJ5U6G58MHZHZNKR51YUQ3U9' where id=4; -update noar ti set v0='1VJASU73FJ5U6G58MHZHZNKR51YUQ3U9' where id=4; -update noar tt set b0='7NDVRZV085MIGN7' where id=4; -update noar ti set b0='7NDVRZV085MIGN7' where id=4; -update noar tt set v0='KUQQBIE2Z' where id=4; -update noar ti set v0='KUQQBIE2Z' where id=4; -update noar tt set b1='UEUNG9HB8UHH32I7A2JYN8N62860KGD' where id=4; -update noar ti set b1='UEUNG9HB8UHH32I7A2JYN8N62860KGD' where id=4; -update noar tt set v0='KA6L8DY' where id=4; -update noar ti set v0='KA6L8DY' where id=4; -update noar tt set b2='NCRSQMVR7238GV2IA7' where id=4; -update noar ti set b2='NCRSQMVR7238GV2IA7' where id=4; -update noar tt set v0='F89GGUNPJNWNFNQVFAM67CR' where id=5; -update noar ti set v0='F89GGUNPJNWNFNQVFAM67CR' where id=5; -update noar tt set b0='QGA8973KAGGH4O3' where id=5; -update noar ti set b0='QGA8973KAGGH4O3' where id=5; -update noar tt set v0='4JEOPUBM9QWN6DQWC4Q9X' where id=5; -update noar ti set v0='4JEOPUBM9QWN6DQWC4Q9X' where id=5; -update noar tt set b1='JHIREB0JMNZLW2D57TMVUAU' where id=5; -update noar ti set b1='JHIREB0JMNZLW2D57TMVUAU' where id=5; -update noar tt set v0='10BA4XW8SO73FYT632Q4M0G9KBE' where id=5; -update noar ti set v0='10BA4XW8SO73FYT632Q4M0G9KBE' where id=5; -update noar tt set b2='O1IG3FJV3JJ8AYUGH' where id=5; -update noar ti set b2='O1IG3FJV3JJ8AYUGH' where id=5; -update noar tt set v0='GH7GG9FD9CM2CJJRQZ10' where id=6; -update noar ti set v0='GH7GG9FD9CM2CJJRQZ10' where id=6; -update noar tt set b0='PYWN3UT9DUJ6QBWURSYU0' where id=6; -update noar ti set b0='PYWN3UT9DUJ6QBWURSYU0' where id=6; -update noar tt set v0='O9FPLB8KZEC2WGHB6K' where id=6; -update noar ti set v0='O9FPLB8KZEC2WGHB6K' where id=6; -update noar tt set b1='JCFFI0XLF8Y3XA34KDND8BDJ' where id=6; -update noar ti set b1='JCFFI0XLF8Y3XA34KDND8BDJ' where id=6; -update noar tt set v0='IH2HTYW' where id=6; -update noar ti set v0='IH2HTYW' where id=6; -update noar tt set b2='V4B0A6A' where id=6; -update noar ti set b2='V4B0A6A' where id=6; -update noar tt set v0='ZSCPEU9KWM8CTU3CLYA1W1T56NA' where id=7; -update noar ti set v0='ZSCPEU9KWM8CTU3CLYA1W1T56NA' where id=7; -update noar tt set b0='IGAIC8A6' where id=7; -update noar ti set b0='IGAIC8A6' where id=7; -update noar tt set v0='6D' where id=7; -update noar ti set v0='6D' where id=7; -update noar tt set b1='3RZI9KS0YHPA2YYVLF8B9G' where id=7; -update noar ti set b1='3RZI9KS0YHPA2YYVLF8B9G' where id=7; -update noar tt set v0='A' where id=7; -update noar ti set v0='A' where id=7; -update noar tt set b2='L4QM3R0UKZ6D1OB89UN3O9CQGGR03' where id=7; -update noar ti set b2='L4QM3R0UKZ6D1OB89UN3O9CQGGR03' where id=7; -update noar tt set v0='PDXF7M463KC4GVHSUI4XVSQXM' where id=8; -update noar ti set v0='PDXF7M463KC4GVHSUI4XVSQXM' where id=8; -update noar tt set b0='QF253N6' where id=8; -update noar ti set b0='QF253N6' where id=8; -update noar tt set v0='70WOQL1718CK4O4740WCUQIMHR9' where id=8; -update noar ti set v0='70WOQL1718CK4O4740WCUQIMHR9' where id=8; -update noar tt set b1='11UDK4CPW55UVKC' where id=8; -update noar ti set b1='11UDK4CPW55UVKC' where id=8; -update noar tt set v0='72L5UIOSTSJ94LUK' where id=8; -update noar ti set v0='72L5UIOSTSJ94LUK' where id=8; -update noar tt set b2='Z8UFY0GARQL' where id=8; -update noar ti set b2='Z8UFY0GARQL' where id=8; -update noar tt set v0='82WHSVEFLMMSWCG6OVKUJY21H' where id=9; -update noar ti set v0='82WHSVEFLMMSWCG6OVKUJY21H' where id=9; -update noar tt set b0='F0L7KJGF' where id=9; -update noar ti set b0='F0L7KJGF' where id=9; -update noar tt set v0='ZL0BDNUWONKQ9XMF3' where id=9; -update noar ti set v0='ZL0BDNUWONKQ9XMF3' where id=9; -update noar tt set b1='50ETN5YT368Q1' where id=9; -update noar ti set b1='50ETN5YT368Q1' where id=9; -update noar tt set v0='I76OZ4YXU95NWVJCQ3QUVNL' where id=9; -update noar ti set v0='I76OZ4YXU95NWVJCQ3QUVNL' where id=9; -update noar tt set b2='TDP7B5V6PE8F7OGZQB5WEAK7YWJZEIFD' where id=9; -update noar ti set b2='TDP7B5V6PE8F7OGZQB5WEAK7YWJZEIFD' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - v0 varchar(256) null, - b0 blob null, - b1 tinyblob null, - b2 longblob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='RMF01TT' where id=1; -update noar ti set v0='RMF01TT' where id=1; -update noar tt set b0='Z8OQ6FGL7ZGJQBDO' where id=1; -update noar ti set b0='Z8OQ6FGL7ZGJQBDO' where id=1; -update noar tt set v0='JFDXUR06PRFAS' where id=1; -update noar ti set v0='JFDXUR06PRFAS' where id=1; -update noar tt set b1='L7R41L9TKY2XHHMS4Q85XZUAYAQ2' where id=1; -update noar ti set b1='L7R41L9TKY2XHHMS4Q85XZUAYAQ2' where id=1; -update noar tt set v0='40PL9VPTN' where id=1; -update noar ti set v0='40PL9VPTN' where id=1; -update noar tt set b2='C4ASYIWSIUY856' where id=1; -update noar ti set b2='C4ASYIWSIUY856' where id=1; -update noar tt set v0='2L85OXI7695JJZB2K0RSP5CS894T' where id=2; -update noar ti set v0='2L85OXI7695JJZB2K0RSP5CS894T' where id=2; -update noar tt set b0='W' where id=2; -update noar ti set b0='W' where id=2; -update noar tt set v0='P2XCINSP' where id=2; -update noar ti set v0='P2XCINSP' where id=2; -update noar tt set b1='ACBKGTGY809111HHC' where id=2; -update noar ti set b1='ACBKGTGY809111HHC' where id=2; -update noar tt set v0='ZA500HGL15KG9CQLXV6' where id=2; -update noar ti set v0='ZA500HGL15KG9CQLXV6' where id=2; -update noar tt set b2='1LV2CXKF5ZU4SBJM5FU9B6LHRKT' where id=2; -update noar ti set b2='1LV2CXKF5ZU4SBJM5FU9B6LHRKT' where id=2; -update noar tt set v0='RL' where id=3; -update noar ti set v0='RL' where id=3; -update noar tt set b0='Q3NI0GQN82' where id=3; -update noar ti set b0='Q3NI0GQN82' where id=3; -update noar tt set v0='BEB' where id=3; -update noar ti set v0='BEB' where id=3; -update noar tt set b1='PYIABPV26HWQDLERYO1X1AVWIBTLNJO' where id=3; -update noar ti set b1='PYIABPV26HWQDLERYO1X1AVWIBTLNJO' where id=3; -update noar tt set v0='D9HM6WXLPOZJCEPC5DT1' where id=3; -update noar ti set v0='D9HM6WXLPOZJCEPC5DT1' where id=3; -update noar tt set b2='WKGITDSV2X9WMZY' where id=3; -update noar ti set b2='WKGITDSV2X9WMZY' where id=3; -update noar tt set v0='ABTN091KBQHGB9DYXXAFVVO8XN0VM3H' where id=4; -update noar ti set v0='ABTN091KBQHGB9DYXXAFVVO8XN0VM3H' where id=4; -update noar tt set b0='8' where id=4; -update noar ti set b0='8' where id=4; -update noar tt set v0='KPOF8KL2BJOQVXFMLWCZ0JTCYGWM1' where id=4; -update noar ti set v0='KPOF8KL2BJOQVXFMLWCZ0JTCYGWM1' where id=4; -update noar tt set b1='UIZNBX49OEJH6OXJTDBY2WKGLI' where id=4; -update noar ti set b1='UIZNBX49OEJH6OXJTDBY2WKGLI' where id=4; -update noar tt set v0='VMMXZ256M0KKDW5FS9A71TNO' where id=4; -update noar ti set v0='VMMXZ256M0KKDW5FS9A71TNO' where id=4; -update noar tt set b2='GBL63964UDOJJDMVFUD' where id=4; -update noar ti set b2='GBL63964UDOJJDMVFUD' where id=4; -update noar tt set v0='TZXPACWC4PJ9VPYME6XXFWG8YV0CJCQE' where id=5; -update noar ti set v0='TZXPACWC4PJ9VPYME6XXFWG8YV0CJCQE' where id=5; -update noar tt set b0='QDUYVZK' where id=5; -update noar ti set b0='QDUYVZK' where id=5; -update noar tt set v0='TD7CE0H7H2' where id=5; -update noar ti set v0='TD7CE0H7H2' where id=5; -update noar tt set b1='C3797NMIJRC25FBJTLV8VJZ' where id=5; -update noar ti set b1='C3797NMIJRC25FBJTLV8VJZ' where id=5; -update noar tt set v0='886UI54V' where id=5; -update noar ti set v0='886UI54V' where id=5; -update noar tt set b2='S14OOJECI0MXNAQL0PYFE' where id=5; -update noar ti set b2='S14OOJECI0MXNAQL0PYFE' where id=5; -update noar tt set v0='P4UHO7PLH6OM5' where id=6; -update noar ti set v0='P4UHO7PLH6OM5' where id=6; -update noar tt set b0='YXDKTHI21I0A56IRZOWS6NR5FCR1ZGX' where id=6; -update noar ti set b0='YXDKTHI21I0A56IRZOWS6NR5FCR1ZGX' where id=6; -update noar tt set v0='SWUF5XPW9H3UVK' where id=6; -update noar ti set v0='SWUF5XPW9H3UVK' where id=6; -update noar tt set b1='5WGW3WQPV' where id=6; -update noar ti set b1='5WGW3WQPV' where id=6; -update noar tt set v0='4KPY0RUXA8XPWXWL' where id=6; -update noar ti set v0='4KPY0RUXA8XPWXWL' where id=6; -update noar tt set b2='HZBA7KYQZIJ1OXCXSDPD9Y21KY1ZX' where id=6; -update noar ti set b2='HZBA7KYQZIJ1OXCXSDPD9Y21KY1ZX' where id=6; -update noar tt set v0='1LSGWIUM6ABPQRKLCW5ABG3VRCH' where id=7; -update noar ti set v0='1LSGWIUM6ABPQRKLCW5ABG3VRCH' where id=7; -update noar tt set b0='5NZ0' where id=7; -update noar ti set b0='5NZ0' where id=7; -update noar tt set v0='C5KRRT3T5ST1ZLAQQ' where id=7; -update noar ti set v0='C5KRRT3T5ST1ZLAQQ' where id=7; -update noar tt set b1='I4LHHQIRS2I5ABEVTSS317PNGX' where id=7; -update noar ti set b1='I4LHHQIRS2I5ABEVTSS317PNGX' where id=7; -update noar tt set v0='391NN8Z2KJ2VQB92LMCQ' where id=7; -update noar ti set v0='391NN8Z2KJ2VQB92LMCQ' where id=7; -update noar tt set b2='ONSMZSMKJBTAKQCRV' where id=7; -update noar ti set b2='ONSMZSMKJBTAKQCRV' where id=7; -update noar tt set v0='S0YZ99B' where id=8; -update noar ti set v0='S0YZ99B' where id=8; -update noar tt set b0='ES5BN1BBO4RPW9T' where id=8; -update noar ti set b0='ES5BN1BBO4RPW9T' where id=8; -update noar tt set v0='NYVZV5F' where id=8; -update noar ti set v0='NYVZV5F' where id=8; -update noar tt set b1='XCOC4UC33F6U9ARCQJXZZNMVAD2Z' where id=8; -update noar ti set b1='XCOC4UC33F6U9ARCQJXZZNMVAD2Z' where id=8; -update noar tt set v0='DMHLY4HFO6HHWOW9CQQ' where id=8; -update noar ti set v0='DMHLY4HFO6HHWOW9CQQ' where id=8; -update noar tt set b2='2D' where id=8; -update noar ti set b2='2D' where id=8; -update noar tt set v0='P' where id=9; -update noar ti set v0='P' where id=9; -update noar tt set b0='7IVQ3RPGQWMU7K3GIC2WYSRCC' where id=9; -update noar ti set b0='7IVQ3RPGQWMU7K3GIC2WYSRCC' where id=9; -update noar tt set v0='0L587SDBCAUXX' where id=9; -update noar ti set v0='0L587SDBCAUXX' where id=9; -update noar tt set b1='1E' where id=9; -update noar ti set b1='1E' where id=9; -update noar tt set v0='8TZDYF7Z67ADKV390CF444VOWX' where id=9; -update noar ti set v0='8TZDYF7Z67ADKV390CF444VOWX' where id=9; -update noar tt set b2='JJYXPEYNNWD9WV5I5I8' where id=9; -update noar ti set b2='JJYXPEYNNWD9WV5I5I8' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - v0 varchar(32) not null, - b0 blob not null, - b1 tinyblob not null, - b2 longblob not null -) engine=tokudb; -insert into tt values (1,'','','',''); -insert into tt values (2,'','','',''); -insert into tt values (3,'','','',''); -insert into tt values (4,'','','',''); -insert into tt values (5,'','','',''); -insert into tt values (6,'','','',''); -insert into tt values (7,'','','',''); -insert into tt values (8,'','','',''); -insert into tt values (9,'','','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='U3QXFT7' where id=1; -update noar ti set v0='U3QXFT7' where id=1; -update noar tt set b0='RT1M41Q144JC9YH65' where id=1; -update noar ti set b0='RT1M41Q144JC9YH65' where id=1; -update noar tt set v0='D9H' where id=1; -update noar ti set v0='D9H' where id=1; -update noar tt set b1='98XU74MA2TRJBKOTQO28' where id=1; -update noar ti set b1='98XU74MA2TRJBKOTQO28' where id=1; -update noar tt set v0='DC' where id=1; -update noar ti set v0='DC' where id=1; -update noar tt set b2='FCXDOFTJFUX0DDKX0HC6XF8IFQEBE' where id=1; -update noar ti set b2='FCXDOFTJFUX0DDKX0HC6XF8IFQEBE' where id=1; -update noar tt set v0='OW9JQ5UW6WLFFH8SJC' where id=2; -update noar ti set v0='OW9JQ5UW6WLFFH8SJC' where id=2; -update noar tt set b0='XGL56XP7Q8RV1HYC0Q' where id=2; -update noar ti set b0='XGL56XP7Q8RV1HYC0Q' where id=2; -update noar tt set v0='5R09PJ2A385FM4XL5HT6' where id=2; -update noar ti set v0='5R09PJ2A385FM4XL5HT6' where id=2; -update noar tt set b1='MOC0IW9COPITPFEJXUP5RDOAPM1YIF24' where id=2; -update noar ti set b1='MOC0IW9COPITPFEJXUP5RDOAPM1YIF24' where id=2; -update noar tt set v0='FKGELF025CP41NXGCT7F7RB7AIMPL' where id=2; -update noar ti set v0='FKGELF025CP41NXGCT7F7RB7AIMPL' where id=2; -update noar tt set b2='LBN1S3LDCJ8LZI7ZZN1S8ZQBZYI8' where id=2; -update noar ti set b2='LBN1S3LDCJ8LZI7ZZN1S8ZQBZYI8' where id=2; -update noar tt set v0='H5381XQR4GPX5S864HK0UM6' where id=3; -update noar ti set v0='H5381XQR4GPX5S864HK0UM6' where id=3; -update noar tt set b0='6YPZ' where id=3; -update noar ti set b0='6YPZ' where id=3; -update noar tt set v0='X2KQ7PLIX4JOUX0V875NSK' where id=3; -update noar ti set v0='X2KQ7PLIX4JOUX0V875NSK' where id=3; -update noar tt set b1='MV4G9KSH5' where id=3; -update noar ti set b1='MV4G9KSH5' where id=3; -update noar tt set v0='LN767BM1F73HVV8O68IC9OLJT7QMZ2O' where id=3; -update noar ti set v0='LN767BM1F73HVV8O68IC9OLJT7QMZ2O' where id=3; -update noar tt set b2='N1WW103NIE8MPPKVR' where id=3; -update noar ti set b2='N1WW103NIE8MPPKVR' where id=3; -update noar tt set v0='2NW4OBUV4TBU1TOJDF1PW12AOG3' where id=4; -update noar ti set v0='2NW4OBUV4TBU1TOJDF1PW12AOG3' where id=4; -update noar tt set b0='GA4LV' where id=4; -update noar ti set b0='GA4LV' where id=4; -update noar tt set v0='YAEM48ZNAT4N02NH0Y8TCVLL2BEM' where id=4; -update noar ti set v0='YAEM48ZNAT4N02NH0Y8TCVLL2BEM' where id=4; -update noar tt set b1='ZNJA2BSW8FAG22' where id=4; -update noar ti set b1='ZNJA2BSW8FAG22' where id=4; -update noar tt set v0='E9BX06TVP5X5Q13AIA0DH' where id=4; -update noar ti set v0='E9BX06TVP5X5Q13AIA0DH' where id=4; -update noar tt set b2='WT1TLCXBYIHWI1GD' where id=4; -update noar ti set b2='WT1TLCXBYIHWI1GD' where id=4; -update noar tt set v0='FR4N3PFY2YUL' where id=5; -update noar ti set v0='FR4N3PFY2YUL' where id=5; -update noar tt set b0='OQIYKLJS9WHKAJERG7LS9BKF1YFX0Y5B' where id=5; -update noar ti set b0='OQIYKLJS9WHKAJERG7LS9BKF1YFX0Y5B' where id=5; -update noar tt set v0='GTY5O6RDFYODPLFWKTCOOJ6' where id=5; -update noar ti set v0='GTY5O6RDFYODPLFWKTCOOJ6' where id=5; -update noar tt set b1='3LORD46P63UKU9I' where id=5; -update noar ti set b1='3LORD46P63UKU9I' where id=5; -update noar tt set v0='HYSX4' where id=5; -update noar ti set v0='HYSX4' where id=5; -update noar tt set b2='S0DNS3JOSD3SAP2J' where id=5; -update noar ti set b2='S0DNS3JOSD3SAP2J' where id=5; -update noar tt set v0='9TWBD5YT3307AU4GEHSK3AYBLF' where id=6; -update noar ti set v0='9TWBD5YT3307AU4GEHSK3AYBLF' where id=6; -update noar tt set b0='RU1NL87CQUUJ' where id=6; -update noar ti set b0='RU1NL87CQUUJ' where id=6; -update noar tt set v0='N2W' where id=6; -update noar ti set v0='N2W' where id=6; -update noar tt set b1='ENZYX098BBUN6' where id=6; -update noar ti set b1='ENZYX098BBUN6' where id=6; -update noar tt set v0='G3PACXKI6RSJ4CEZZJ7GHZ73' where id=6; -update noar ti set v0='G3PACXKI6RSJ4CEZZJ7GHZ73' where id=6; -update noar tt set b2='16MIXU5ERSCJI6L4J' where id=6; -update noar ti set b2='16MIXU5ERSCJI6L4J' where id=6; -update noar tt set v0='0VROV7N303VI' where id=7; -update noar ti set v0='0VROV7N303VI' where id=7; -update noar tt set b0='9EAXF7IU64QQZMHZN8KT' where id=7; -update noar ti set b0='9EAXF7IU64QQZMHZN8KT' where id=7; -update noar tt set v0='O7HPFIXEQE3G5MWNQ20VQH16DDSXY2D' where id=7; -update noar ti set v0='O7HPFIXEQE3G5MWNQ20VQH16DDSXY2D' where id=7; -update noar tt set b1='QZ9OGK5QMZN' where id=7; -update noar ti set b1='QZ9OGK5QMZN' where id=7; -update noar tt set v0='FD4ZE6A2QRGZVX0VAVG47ERIS' where id=7; -update noar ti set v0='FD4ZE6A2QRGZVX0VAVG47ERIS' where id=7; -update noar tt set b2='146S6HUJH2JY82DOIV9ZUYQ08YQF' where id=7; -update noar ti set b2='146S6HUJH2JY82DOIV9ZUYQ08YQF' where id=7; -update noar tt set v0='JWBL3AA88DUH9O4MWKKXIVX1Y' where id=8; -update noar ti set v0='JWBL3AA88DUH9O4MWKKXIVX1Y' where id=8; -update noar tt set b0='QMEYKB2ZFJ7CR9C' where id=8; -update noar ti set b0='QMEYKB2ZFJ7CR9C' where id=8; -update noar tt set v0='3YZE6RKQYCLILJTSUNLRWJ' where id=8; -update noar ti set v0='3YZE6RKQYCLILJTSUNLRWJ' where id=8; -update noar tt set b1='MZ88MTYLM91POPWKBL4YR42' where id=8; -update noar ti set b1='MZ88MTYLM91POPWKBL4YR42' where id=8; -update noar tt set v0='E9Z5IV3Q5QGXGSCDHHPPT29PXEVWS10N' where id=8; -update noar ti set v0='E9Z5IV3Q5QGXGSCDHHPPT29PXEVWS10N' where id=8; -update noar tt set b2='8RXXW09' where id=8; -update noar ti set b2='8RXXW09' where id=8; -update noar tt set v0='8G4JFPTVC2' where id=9; -update noar ti set v0='8G4JFPTVC2' where id=9; -update noar tt set b0='V2X8IYO53' where id=9; -update noar ti set b0='V2X8IYO53' where id=9; -update noar tt set v0='C5OOAMFMWAAGIDXN7LCJRMGJGI6LJMK' where id=9; -update noar ti set v0='C5OOAMFMWAAGIDXN7LCJRMGJGI6LJMK' where id=9; -update noar tt set b1='JLY137NGHJ0NWZ4BW2QHIEACBQ57RYGP' where id=9; -update noar ti set b1='JLY137NGHJ0NWZ4BW2QHIEACBQ57RYGP' where id=9; -update noar tt set v0='73DPP8QP733RQD8Q315V8Q3KB1J7CZZ' where id=9; -update noar ti set v0='73DPP8QP733RQD8Q315V8Q3KB1J7CZZ' where id=9; -update noar tt set b2='8962W028V' where id=9; -update noar ti set b2='8962W028V' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - v0 varchar(256) not null, - b0 blob not null, - b1 tinyblob not null, - b2 longblob not null -) engine=tokudb; -insert into tt values (1,'','','',''); -insert into tt values (2,'','','',''); -insert into tt values (3,'','','',''); -insert into tt values (4,'','','',''); -insert into tt values (5,'','','',''); -insert into tt values (6,'','','',''); -insert into tt values (7,'','','',''); -insert into tt values (8,'','','',''); -insert into tt values (9,'','','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='TH15PY73DK' where id=1; -update noar ti set v0='TH15PY73DK' where id=1; -update noar tt set b0='MJ01G5634CJ80KDCFCZ189OEMI4T' where id=1; -update noar ti set b0='MJ01G5634CJ80KDCFCZ189OEMI4T' where id=1; -update noar tt set v0='41Q4BTSQXMESELQOKQGC' where id=1; -update noar ti set v0='41Q4BTSQXMESELQOKQGC' where id=1; -update noar tt set b1='Q76MJEQVKBLOMVCX' where id=1; -update noar ti set b1='Q76MJEQVKBLOMVCX' where id=1; -update noar tt set v0='8CKCF5M5DFJGLN3L9M7SQTS8JZDETEN' where id=1; -update noar ti set v0='8CKCF5M5DFJGLN3L9M7SQTS8JZDETEN' where id=1; -update noar tt set b2='88KK5C7LAZVQL9PBHNOYUF' where id=1; -update noar ti set b2='88KK5C7LAZVQL9PBHNOYUF' where id=1; -update noar tt set v0='RNBMZ9HUPE5K0J0' where id=2; -update noar ti set v0='RNBMZ9HUPE5K0J0' where id=2; -update noar tt set b0='2TIDWLLT1523PJ2D9' where id=2; -update noar ti set b0='2TIDWLLT1523PJ2D9' where id=2; -update noar tt set v0='5QCWUK' where id=2; -update noar ti set v0='5QCWUK' where id=2; -update noar tt set b1='RNN4JR6F47WMUZF5U0' where id=2; -update noar ti set b1='RNN4JR6F47WMUZF5U0' where id=2; -update noar tt set v0='5CIA5BBKHVSZ109' where id=2; -update noar ti set v0='5CIA5BBKHVSZ109' where id=2; -update noar tt set b2='N8LGZV9J6XWEVRWWI455' where id=2; -update noar ti set b2='N8LGZV9J6XWEVRWWI455' where id=2; -update noar tt set v0='CDP21XWGVXVGP3NZ' where id=3; -update noar ti set v0='CDP21XWGVXVGP3NZ' where id=3; -update noar tt set b0='V1STZ854CZA3JHMWS9TC69QBP81BBKL' where id=3; -update noar ti set b0='V1STZ854CZA3JHMWS9TC69QBP81BBKL' where id=3; -update noar tt set v0='BKQZF7ACENRTRCP8Q2H746KRMNL62N' where id=3; -update noar ti set v0='BKQZF7ACENRTRCP8Q2H746KRMNL62N' where id=3; -update noar tt set b1='56P7UPE82CRZB0LY1D' where id=3; -update noar ti set b1='56P7UPE82CRZB0LY1D' where id=3; -update noar tt set v0='SL1WSUNCM3VGQBG928TB59WD9JTQ' where id=3; -update noar ti set v0='SL1WSUNCM3VGQBG928TB59WD9JTQ' where id=3; -update noar tt set b2='WW90XSJYM9IGG9XRTVYQPC' where id=3; -update noar ti set b2='WW90XSJYM9IGG9XRTVYQPC' where id=3; -update noar tt set v0='TM2TL6XYRJBR20LLTMHOSWWC' where id=4; -update noar ti set v0='TM2TL6XYRJBR20LLTMHOSWWC' where id=4; -update noar tt set b0='ES8IFTH0Z0M5EVHZYSWBAVM2IX0CC11' where id=4; -update noar ti set b0='ES8IFTH0Z0M5EVHZYSWBAVM2IX0CC11' where id=4; -update noar tt set v0='EDY85L1BTLM4JHIXXW5' where id=4; -update noar ti set v0='EDY85L1BTLM4JHIXXW5' where id=4; -update noar tt set b1='P06TGX6TCI5VOFUI08VMOREE8WAW3O' where id=4; -update noar ti set b1='P06TGX6TCI5VOFUI08VMOREE8WAW3O' where id=4; -update noar tt set v0='LHI0FOX1JKDHHQVO154HUN8IZHYY1B98' where id=4; -update noar ti set v0='LHI0FOX1JKDHHQVO154HUN8IZHYY1B98' where id=4; -update noar tt set b2='WZJ768O72CD5BDJPW' where id=4; -update noar ti set b2='WZJ768O72CD5BDJPW' where id=4; -update noar tt set v0='UV3MTZUBJ' where id=5; -update noar ti set v0='UV3MTZUBJ' where id=5; -update noar tt set b0='NVZGPUM7K' where id=5; -update noar ti set b0='NVZGPUM7K' where id=5; -update noar tt set v0='EBGKJO901EQM4QDXKZV8' where id=5; -update noar ti set v0='EBGKJO901EQM4QDXKZV8' where id=5; -update noar tt set b1='DZSSW4YCTUE1QJ4US78GSS6X16' where id=5; -update noar ti set b1='DZSSW4YCTUE1QJ4US78GSS6X16' where id=5; -update noar tt set v0='DIK2ICHW' where id=5; -update noar ti set v0='DIK2ICHW' where id=5; -update noar tt set b2='0GN7ZIMMG2' where id=5; -update noar ti set b2='0GN7ZIMMG2' where id=5; -update noar tt set v0='NE0UBZOOVWP7' where id=6; -update noar ti set v0='NE0UBZOOVWP7' where id=6; -update noar tt set b0='SOBQZS6XZ' where id=6; -update noar ti set b0='SOBQZS6XZ' where id=6; -update noar tt set v0='X8' where id=6; -update noar ti set v0='X8' where id=6; -update noar tt set b1='7LJ6OFVK0TQ' where id=6; -update noar ti set b1='7LJ6OFVK0TQ' where id=6; -update noar tt set v0='4IYGUK5' where id=6; -update noar ti set v0='4IYGUK5' where id=6; -update noar tt set b2='VYU8PWLYX98DR4AV4ELCFVRGM7S2' where id=6; -update noar ti set b2='VYU8PWLYX98DR4AV4ELCFVRGM7S2' where id=6; -update noar tt set v0='NF4' where id=7; -update noar ti set v0='NF4' where id=7; -update noar tt set b0='A34NGBXM72SU3TY8SVW1NEVR' where id=7; -update noar ti set b0='A34NGBXM72SU3TY8SVW1NEVR' where id=7; -update noar tt set v0='DJ3ZNIR1Z1WKB0FVQ9RSX3FCQMDHJA' where id=7; -update noar ti set v0='DJ3ZNIR1Z1WKB0FVQ9RSX3FCQMDHJA' where id=7; -update noar tt set b1='0T97W2RMOYJ0F6VW5PRPA1' where id=7; -update noar ti set b1='0T97W2RMOYJ0F6VW5PRPA1' where id=7; -update noar tt set v0='4' where id=7; -update noar ti set v0='4' where id=7; -update noar tt set b2='87L795D2' where id=7; -update noar ti set b2='87L795D2' where id=7; -update noar tt set v0='KVR2H3NSQWJ935897LRBKTYI990' where id=8; -update noar ti set v0='KVR2H3NSQWJ935897LRBKTYI990' where id=8; -update noar tt set b0='L1DCVB' where id=8; -update noar ti set b0='L1DCVB' where id=8; -update noar tt set v0='P1MXBSQD8GC4J7NH5D55OC5' where id=8; -update noar ti set v0='P1MXBSQD8GC4J7NH5D55OC5' where id=8; -update noar tt set b1='MAIHZLIDKDXSTDFP325UXLG' where id=8; -update noar ti set b1='MAIHZLIDKDXSTDFP325UXLG' where id=8; -update noar tt set v0='LK3MG079VW3U2' where id=8; -update noar ti set v0='LK3MG079VW3U2' where id=8; -update noar tt set b2='LNWBMBLQ' where id=8; -update noar ti set b2='LNWBMBLQ' where id=8; -update noar tt set v0='CAPH35G2ZBLK' where id=9; -update noar ti set v0='CAPH35G2ZBLK' where id=9; -update noar tt set b0='49DERRZ6GBRBXN' where id=9; -update noar ti set b0='49DERRZ6GBRBXN' where id=9; -update noar tt set v0='MDGQV7TRBNX3LRECJ34TY' where id=9; -update noar ti set v0='MDGQV7TRBNX3LRECJ34TY' where id=9; -update noar tt set b1='7GZF8WCEAK69HZ3SJWNZD074K' where id=9; -update noar ti set b1='7GZF8WCEAK69HZ3SJWNZD074K' where id=9; -update noar tt set v0='GQTOL8I' where id=9; -update noar ti set v0='GQTOL8I' where id=9; -update noar tt set b2='DNYTUCY49TPRZRYOCRWRW69UH80JGP' where id=9; -update noar ti set b2='DNYTUCY49TPRZRYOCRWRW69UH80JGP' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - v0 varchar(32) null, - b0 blob null, - b1 blob null, - b2 tinyblob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='SA80PG' where id=1; -update noar ti set v0='SA80PG' where id=1; -update noar tt set b0='USS5FE6P4XGPLTBN0EOEOFQB' where id=1; -update noar ti set b0='USS5FE6P4XGPLTBN0EOEOFQB' where id=1; -update noar tt set v0='M7JUWNJODTE4D22I1ZYP64WV' where id=1; -update noar ti set v0='M7JUWNJODTE4D22I1ZYP64WV' where id=1; -update noar tt set b1='9ND3E0DUHRJAOAVOVTFLMMBXHT1A0UQH' where id=1; -update noar ti set b1='9ND3E0DUHRJAOAVOVTFLMMBXHT1A0UQH' where id=1; -update noar tt set v0='T9ZXXD6XZE' where id=1; -update noar ti set v0='T9ZXXD6XZE' where id=1; -update noar tt set b2='DGMPOJ' where id=1; -update noar ti set b2='DGMPOJ' where id=1; -update noar tt set v0='FDM7H7G' where id=2; -update noar ti set v0='FDM7H7G' where id=2; -update noar tt set b0='YUMMS05KO9BRE1CZ4R' where id=2; -update noar ti set b0='YUMMS05KO9BRE1CZ4R' where id=2; -update noar tt set v0='63KFBR6' where id=2; -update noar ti set v0='63KFBR6' where id=2; -update noar tt set b1='N4VW4O8U3D' where id=2; -update noar ti set b1='N4VW4O8U3D' where id=2; -update noar tt set v0='UYB56R8SRKCA8O5O' where id=2; -update noar ti set v0='UYB56R8SRKCA8O5O' where id=2; -update noar tt set b2='3HCEENYOE9HZ0SEP1' where id=2; -update noar ti set b2='3HCEENYOE9HZ0SEP1' where id=2; -update noar tt set v0='GK7YW07HGHV' where id=3; -update noar ti set v0='GK7YW07HGHV' where id=3; -update noar tt set b0='4HHV537SNEGOS3' where id=3; -update noar ti set b0='4HHV537SNEGOS3' where id=3; -update noar tt set v0='UR4U43GFPKQF28AV' where id=3; -update noar ti set v0='UR4U43GFPKQF28AV' where id=3; -update noar tt set b1='BV2WBK2M5EQJ89VGDNC9C' where id=3; -update noar ti set b1='BV2WBK2M5EQJ89VGDNC9C' where id=3; -update noar tt set v0='ZKZ8RO' where id=3; -update noar ti set v0='ZKZ8RO' where id=3; -update noar tt set b2='4SVQWVJ9' where id=3; -update noar ti set b2='4SVQWVJ9' where id=3; -update noar tt set v0='2QKXMN4IFF8Z1GXHNACI81KE1663FQ' where id=4; -update noar ti set v0='2QKXMN4IFF8Z1GXHNACI81KE1663FQ' where id=4; -update noar tt set b0='R3IFSPI0M' where id=4; -update noar ti set b0='R3IFSPI0M' where id=4; -update noar tt set v0='OJMAJMR2A0NHTYEI5W5C8D49' where id=4; -update noar ti set v0='OJMAJMR2A0NHTYEI5W5C8D49' where id=4; -update noar tt set b1='K4W0WDR1JRNRFVWCAQ6XT4WJ4C6XF' where id=4; -update noar ti set b1='K4W0WDR1JRNRFVWCAQ6XT4WJ4C6XF' where id=4; -update noar tt set v0='8768' where id=4; -update noar ti set v0='8768' where id=4; -update noar tt set b2='DVSHBK' where id=4; -update noar ti set b2='DVSHBK' where id=4; -update noar tt set v0='FPT1OM5PPLPB6MWCHQQH3R5Q4Q7VA' where id=5; -update noar ti set v0='FPT1OM5PPLPB6MWCHQQH3R5Q4Q7VA' where id=5; -update noar tt set b0='0NTBNZO0E5DZXHPL4UGL80VL525S2ZFV' where id=5; -update noar ti set b0='0NTBNZO0E5DZXHPL4UGL80VL525S2ZFV' where id=5; -update noar tt set v0='J8XLH1TN4GKWHPLD' where id=5; -update noar ti set v0='J8XLH1TN4GKWHPLD' where id=5; -update noar tt set b1='BIGO8S80J8R4QEQ5C1LZ' where id=5; -update noar ti set b1='BIGO8S80J8R4QEQ5C1LZ' where id=5; -update noar tt set v0='ST' where id=5; -update noar ti set v0='ST' where id=5; -update noar tt set b2='H8F10L06U' where id=5; -update noar ti set b2='H8F10L06U' where id=5; -update noar tt set v0='3VQ1LSWAMUVP' where id=6; -update noar ti set v0='3VQ1LSWAMUVP' where id=6; -update noar tt set b0='0N5RBUGCUXQHGV6DT2HY4P' where id=6; -update noar ti set b0='0N5RBUGCUXQHGV6DT2HY4P' where id=6; -update noar tt set v0='LW' where id=6; -update noar ti set v0='LW' where id=6; -update noar tt set b1='XC7T528FA5G' where id=6; -update noar ti set b1='XC7T528FA5G' where id=6; -update noar tt set v0='HDAVQ5PBEOK6CD108VYAP6SINEVV' where id=6; -update noar ti set v0='HDAVQ5PBEOK6CD108VYAP6SINEVV' where id=6; -update noar tt set b2='M3YKWCQQQWZ4CURX0ONL4TE7' where id=6; -update noar ti set b2='M3YKWCQQQWZ4CURX0ONL4TE7' where id=6; -update noar tt set v0='0IGCIK17N0F9FNQ76IO1H87VN5WKNKKB' where id=7; -update noar ti set v0='0IGCIK17N0F9FNQ76IO1H87VN5WKNKKB' where id=7; -update noar tt set b0='16F1BCE' where id=7; -update noar ti set b0='16F1BCE' where id=7; -update noar tt set v0='F7HYCT5X3V155PQ6KFEAG' where id=7; -update noar ti set v0='F7HYCT5X3V155PQ6KFEAG' where id=7; -update noar tt set b1='BCDI10FVTNMK' where id=7; -update noar ti set b1='BCDI10FVTNMK' where id=7; -update noar tt set v0='MD206ZJRKOC57CS7ISK7' where id=7; -update noar ti set v0='MD206ZJRKOC57CS7ISK7' where id=7; -update noar tt set b2='PNN11WCL2N8NQ36' where id=7; -update noar ti set b2='PNN11WCL2N8NQ36' where id=7; -update noar tt set v0='S' where id=8; -update noar ti set v0='S' where id=8; -update noar tt set b0='AT5I7DO9R1' where id=8; -update noar ti set b0='AT5I7DO9R1' where id=8; -update noar tt set v0='UBTG0KLEG678OMWELQX64M' where id=8; -update noar ti set v0='UBTG0KLEG678OMWELQX64M' where id=8; -update noar tt set b1='YCVZMH' where id=8; -update noar ti set b1='YCVZMH' where id=8; -update noar tt set v0='DIPPRLUPQRAI68V' where id=8; -update noar ti set v0='DIPPRLUPQRAI68V' where id=8; -update noar tt set b2='4TIPR78COMZCS5DOE7HJ5' where id=8; -update noar ti set b2='4TIPR78COMZCS5DOE7HJ5' where id=8; -update noar tt set v0='PN6LWWGIHYE893KE3DTN5AAVKCB81' where id=9; -update noar ti set v0='PN6LWWGIHYE893KE3DTN5AAVKCB81' where id=9; -update noar tt set b0='LUUIEVD0ZWLE8' where id=9; -update noar ti set b0='LUUIEVD0ZWLE8' where id=9; -update noar tt set v0='62Z' where id=9; -update noar ti set v0='62Z' where id=9; -update noar tt set b1='JEEBWUBR1248QKC12IE2' where id=9; -update noar ti set b1='JEEBWUBR1248QKC12IE2' where id=9; -update noar tt set v0='2SWZ' where id=9; -update noar ti set v0='2SWZ' where id=9; -update noar tt set b2='1MPY7LPQWAD6VC0' where id=9; -update noar ti set b2='1MPY7LPQWAD6VC0' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - v0 varchar(256) null, - b0 blob null, - b1 blob null, - b2 tinyblob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='6GJQVFSDL0KDOQ2C8BQ1PMK' where id=1; -update noar ti set v0='6GJQVFSDL0KDOQ2C8BQ1PMK' where id=1; -update noar tt set b0='ESST' where id=1; -update noar ti set b0='ESST' where id=1; -update noar tt set v0='49RXKRGWR' where id=1; -update noar ti set v0='49RXKRGWR' where id=1; -update noar tt set b1='UZNQ' where id=1; -update noar ti set b1='UZNQ' where id=1; -update noar tt set v0='0CX9WFJS90B0LXCNJ0YNU9STLFMZ6JD' where id=1; -update noar ti set v0='0CX9WFJS90B0LXCNJ0YNU9STLFMZ6JD' where id=1; -update noar tt set b2='DJ04THBCA5H6S65QTXIBUH' where id=1; -update noar ti set b2='DJ04THBCA5H6S65QTXIBUH' where id=1; -update noar tt set v0='HIXMG172FLNTZNLXY86XDTPPX33V479J' where id=2; -update noar ti set v0='HIXMG172FLNTZNLXY86XDTPPX33V479J' where id=2; -update noar tt set b0='WPUEM8U2WS99V394FEXX8IM9Q' where id=2; -update noar ti set b0='WPUEM8U2WS99V394FEXX8IM9Q' where id=2; -update noar tt set v0='H2C7KQ6PVFUFM1' where id=2; -update noar ti set v0='H2C7KQ6PVFUFM1' where id=2; -update noar tt set b1='G1JQPO8HAT0DN5UZNY4552LRIC47' where id=2; -update noar ti set b1='G1JQPO8HAT0DN5UZNY4552LRIC47' where id=2; -update noar tt set v0='TR5RC5W2EHZQ8K' where id=2; -update noar ti set v0='TR5RC5W2EHZQ8K' where id=2; -update noar tt set b2='UF1DM123QFUKM0OJ3S1MI0QV41RG' where id=2; -update noar ti set b2='UF1DM123QFUKM0OJ3S1MI0QV41RG' where id=2; -update noar tt set v0='OGCTEWDFCQD0NIAOL6U8' where id=3; -update noar ti set v0='OGCTEWDFCQD0NIAOL6U8' where id=3; -update noar tt set b0='D2EMA' where id=3; -update noar ti set b0='D2EMA' where id=3; -update noar tt set v0='IK2XQAHHCEVO20F5MP' where id=3; -update noar ti set v0='IK2XQAHHCEVO20F5MP' where id=3; -update noar tt set b1='X04490O' where id=3; -update noar ti set b1='X04490O' where id=3; -update noar tt set v0='OGQD9D' where id=3; -update noar ti set v0='OGQD9D' where id=3; -update noar tt set b2='N40NZHVEN8GYN21X2SSMVNC' where id=3; -update noar ti set b2='N40NZHVEN8GYN21X2SSMVNC' where id=3; -update noar tt set v0='5H1X21G16' where id=4; -update noar ti set v0='5H1X21G16' where id=4; -update noar tt set b0='JLS7' where id=4; -update noar ti set b0='JLS7' where id=4; -update noar tt set v0='J' where id=4; -update noar ti set v0='J' where id=4; -update noar tt set b1='6OI4ZIC42RAVBM8M71547ANB' where id=4; -update noar ti set b1='6OI4ZIC42RAVBM8M71547ANB' where id=4; -update noar tt set v0='EM1X6O0EFXVQX' where id=4; -update noar ti set v0='EM1X6O0EFXVQX' where id=4; -update noar tt set b2='09T6GKDW8K37ASUX2MSYTL0I4RN' where id=4; -update noar ti set b2='09T6GKDW8K37ASUX2MSYTL0I4RN' where id=4; -update noar tt set v0='KT1VDKRKID2GIYFPZIBNIR' where id=5; -update noar ti set v0='KT1VDKRKID2GIYFPZIBNIR' where id=5; -update noar tt set b0='SRO76FHS821' where id=5; -update noar ti set b0='SRO76FHS821' where id=5; -update noar tt set v0='LZBN4' where id=5; -update noar ti set v0='LZBN4' where id=5; -update noar tt set b1='CH4V1NSX5MFNL5EKE3' where id=5; -update noar ti set b1='CH4V1NSX5MFNL5EKE3' where id=5; -update noar tt set v0='AHRNJU17953C9QOMAT8M4G' where id=5; -update noar ti set v0='AHRNJU17953C9QOMAT8M4G' where id=5; -update noar tt set b2='1VEF06B8MB0ZPUHL3ZTVO' where id=5; -update noar ti set b2='1VEF06B8MB0ZPUHL3ZTVO' where id=5; -update noar tt set v0='X1CN2P4TZRFU3S59CPVB37O0VSFU2' where id=6; -update noar ti set v0='X1CN2P4TZRFU3S59CPVB37O0VSFU2' where id=6; -update noar tt set b0='MR' where id=6; -update noar ti set b0='MR' where id=6; -update noar tt set v0='JYWJ9E6W7X0LW79HZEN5QBBUSXC' where id=6; -update noar ti set v0='JYWJ9E6W7X0LW79HZEN5QBBUSXC' where id=6; -update noar tt set b1='XQ61ZO1AA1' where id=6; -update noar ti set b1='XQ61ZO1AA1' where id=6; -update noar tt set v0='CY1EDINWIJM6' where id=6; -update noar ti set v0='CY1EDINWIJM6' where id=6; -update noar tt set b2='3HO4T8ZLAXRSS16JF0M5VVK' where id=6; -update noar ti set b2='3HO4T8ZLAXRSS16JF0M5VVK' where id=6; -update noar tt set v0='HFI7E' where id=7; -update noar ti set v0='HFI7E' where id=7; -update noar tt set b0='E03D44VII94OE' where id=7; -update noar ti set b0='E03D44VII94OE' where id=7; -update noar tt set v0='NYTIDO7WO28479GZSMDW57NK4KE' where id=7; -update noar ti set v0='NYTIDO7WO28479GZSMDW57NK4KE' where id=7; -update noar tt set b1='IOD9URKZHINI8ZSSJEOX40GJ' where id=7; -update noar ti set b1='IOD9URKZHINI8ZSSJEOX40GJ' where id=7; -update noar tt set v0='S3Q0QEVQTNMZ' where id=7; -update noar ti set v0='S3Q0QEVQTNMZ' where id=7; -update noar tt set b2='ZK0LEYQPAXVRWGKUAI6SBBALX' where id=7; -update noar ti set b2='ZK0LEYQPAXVRWGKUAI6SBBALX' where id=7; -update noar tt set v0='QL1QUU44' where id=8; -update noar ti set v0='QL1QUU44' where id=8; -update noar tt set b0='NCGAILC2C6ABFG7Q5QATOO5KC16UMQ17' where id=8; -update noar ti set b0='NCGAILC2C6ABFG7Q5QATOO5KC16UMQ17' where id=8; -update noar tt set v0='5LFBKA' where id=8; -update noar ti set v0='5LFBKA' where id=8; -update noar tt set b1='O365AOJKCSIP1IEZB' where id=8; -update noar ti set b1='O365AOJKCSIP1IEZB' where id=8; -update noar tt set v0='VMTEZC0UMZTVVPJ31MQ6R' where id=8; -update noar ti set v0='VMTEZC0UMZTVVPJ31MQ6R' where id=8; -update noar tt set b2='2' where id=8; -update noar ti set b2='2' where id=8; -update noar tt set v0='CHC3WS3NQ8E3' where id=9; -update noar ti set v0='CHC3WS3NQ8E3' where id=9; -update noar tt set b0='7AJCETSRWGD6INIGZ0ETKQ' where id=9; -update noar ti set b0='7AJCETSRWGD6INIGZ0ETKQ' where id=9; -update noar tt set v0='QW1L77S5' where id=9; -update noar ti set v0='QW1L77S5' where id=9; -update noar tt set b1='2ACU3T' where id=9; -update noar ti set b1='2ACU3T' where id=9; -update noar tt set v0='RGT9TSQ50O5MA7FZ9HBPFE0GT6N' where id=9; -update noar ti set v0='RGT9TSQ50O5MA7FZ9HBPFE0GT6N' where id=9; -update noar tt set b2='DXD97YPLYBJ' where id=9; -update noar ti set b2='DXD97YPLYBJ' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - v0 varchar(32) not null, - b0 blob not null, - b1 blob not null, - b2 tinyblob not null -) engine=tokudb; -insert into tt values (1,'','','',''); -insert into tt values (2,'','','',''); -insert into tt values (3,'','','',''); -insert into tt values (4,'','','',''); -insert into tt values (5,'','','',''); -insert into tt values (6,'','','',''); -insert into tt values (7,'','','',''); -insert into tt values (8,'','','',''); -insert into tt values (9,'','','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='YGQ0JB2U5WQP3AOI78TAV1L54F' where id=1; -update noar ti set v0='YGQ0JB2U5WQP3AOI78TAV1L54F' where id=1; -update noar tt set b0='K9Z646ATX1QJR6WKRVREPNSX' where id=1; -update noar ti set b0='K9Z646ATX1QJR6WKRVREPNSX' where id=1; -update noar tt set v0='F15NQZ' where id=1; -update noar ti set v0='F15NQZ' where id=1; -update noar tt set b1='ZH7957RP7K43J' where id=1; -update noar ti set b1='ZH7957RP7K43J' where id=1; -update noar tt set v0='3LR25MEL4' where id=1; -update noar ti set v0='3LR25MEL4' where id=1; -update noar tt set b2='9XN23HFBHAIVKQXQYV7ASFV' where id=1; -update noar ti set b2='9XN23HFBHAIVKQXQYV7ASFV' where id=1; -update noar tt set v0='YIEZTCQT09MP7597Q5JILSFYDDQ8KX' where id=2; -update noar ti set v0='YIEZTCQT09MP7597Q5JILSFYDDQ8KX' where id=2; -update noar tt set b0='RWP06VGLOSO961230YW3XTMTO6AO' where id=2; -update noar ti set b0='RWP06VGLOSO961230YW3XTMTO6AO' where id=2; -update noar tt set v0='FLHB82P5OG6T6LQ' where id=2; -update noar ti set v0='FLHB82P5OG6T6LQ' where id=2; -update noar tt set b1='0H5LMX5FF8VNCM6ACJPIKB' where id=2; -update noar ti set b1='0H5LMX5FF8VNCM6ACJPIKB' where id=2; -update noar tt set v0='CXQA3H1Z3G' where id=2; -update noar ti set v0='CXQA3H1Z3G' where id=2; -update noar tt set b2='A1KB1JFTR6O12F' where id=2; -update noar ti set b2='A1KB1JFTR6O12F' where id=2; -update noar tt set v0='E' where id=3; -update noar ti set v0='E' where id=3; -update noar tt set b0='CF' where id=3; -update noar ti set b0='CF' where id=3; -update noar tt set v0='KWS7WHHSQO584TOY2P7B9WRK9585ALZW' where id=3; -update noar ti set v0='KWS7WHHSQO584TOY2P7B9WRK9585ALZW' where id=3; -update noar tt set b1='ZLVRSZ9XGTP6ZNE3UF22VWW2' where id=3; -update noar ti set b1='ZLVRSZ9XGTP6ZNE3UF22VWW2' where id=3; -update noar tt set v0='5GL5' where id=3; -update noar ti set v0='5GL5' where id=3; -update noar tt set b2='E1JGP9CR98X4G' where id=3; -update noar ti set b2='E1JGP9CR98X4G' where id=3; -update noar tt set v0='LMEU0' where id=4; -update noar ti set v0='LMEU0' where id=4; -update noar tt set b0='QTYV3THLM0ERNESBDQC' where id=4; -update noar ti set b0='QTYV3THLM0ERNESBDQC' where id=4; -update noar tt set v0='4LDB03DGA090H40EF889SPK4EA' where id=4; -update noar ti set v0='4LDB03DGA090H40EF889SPK4EA' where id=4; -update noar tt set b1='9T7KL3YP2I6H0ITFE0QBPX' where id=4; -update noar ti set b1='9T7KL3YP2I6H0ITFE0QBPX' where id=4; -update noar tt set v0='XQAMQP15NHRP' where id=4; -update noar ti set v0='XQAMQP15NHRP' where id=4; -update noar tt set b2='IJZKGPFH1AA8SX2W4S1LLRRU6N' where id=4; -update noar ti set b2='IJZKGPFH1AA8SX2W4S1LLRRU6N' where id=4; -update noar tt set v0='VHLJMC20' where id=5; -update noar ti set v0='VHLJMC20' where id=5; -update noar tt set b0='VRLKYSSI' where id=5; -update noar ti set b0='VRLKYSSI' where id=5; -update noar tt set v0='3ZAF4NUA9ACL1T524EJDKZXUJJE7SE' where id=5; -update noar ti set v0='3ZAF4NUA9ACL1T524EJDKZXUJJE7SE' where id=5; -update noar tt set b1='7GXQ6SS0TSCSTY4E7IYFPX1' where id=5; -update noar ti set b1='7GXQ6SS0TSCSTY4E7IYFPX1' where id=5; -update noar tt set v0='KKOXIJXRR' where id=5; -update noar ti set v0='KKOXIJXRR' where id=5; -update noar tt set b2='T1EAV5PTEGWFZ' where id=5; -update noar ti set b2='T1EAV5PTEGWFZ' where id=5; -update noar tt set v0='F93EJF' where id=6; -update noar ti set v0='F93EJF' where id=6; -update noar tt set b0='7BENK' where id=6; -update noar ti set b0='7BENK' where id=6; -update noar tt set v0='NB6O0J' where id=6; -update noar ti set v0='NB6O0J' where id=6; -update noar tt set b1='S12' where id=6; -update noar ti set b1='S12' where id=6; -update noar tt set v0='LIGUYF8WNQGO7AQ3OCTWZ16CVNDJACCJ' where id=6; -update noar ti set v0='LIGUYF8WNQGO7AQ3OCTWZ16CVNDJACCJ' where id=6; -update noar tt set b2='4MUPNZTJRJNR' where id=6; -update noar ti set b2='4MUPNZTJRJNR' where id=6; -update noar tt set v0='T' where id=7; -update noar ti set v0='T' where id=7; -update noar tt set b0='L5PB8ON8PV3HW6WU967LO' where id=7; -update noar ti set b0='L5PB8ON8PV3HW6WU967LO' where id=7; -update noar tt set v0='R8AABML7ODOJOYVNI' where id=7; -update noar ti set v0='R8AABML7ODOJOYVNI' where id=7; -update noar tt set b1='IQR4KF3CQK' where id=7; -update noar ti set b1='IQR4KF3CQK' where id=7; -update noar tt set v0='8JTV0AA7PEXBY48CG' where id=7; -update noar ti set v0='8JTV0AA7PEXBY48CG' where id=7; -update noar tt set b2='HB49T79' where id=7; -update noar ti set b2='HB49T79' where id=7; -update noar tt set v0='LY5P5T7YJU0SJL13D390H8CHZ601' where id=8; -update noar ti set v0='LY5P5T7YJU0SJL13D390H8CHZ601' where id=8; -update noar tt set b0='AIS2KY6M' where id=8; -update noar ti set b0='AIS2KY6M' where id=8; -update noar tt set v0='WX8PPQ2EH5WMJY3KG08Z5F6X' where id=8; -update noar ti set v0='WX8PPQ2EH5WMJY3KG08Z5F6X' where id=8; -update noar tt set b1='TGAX97F6VW9' where id=8; -update noar ti set b1='TGAX97F6VW9' where id=8; -update noar tt set v0='WT3FTBFX3S7R833T7LZDMOA' where id=8; -update noar ti set v0='WT3FTBFX3S7R833T7LZDMOA' where id=8; -update noar tt set b2='P6MR6U788NSSRLOGQNT8UA3' where id=8; -update noar ti set b2='P6MR6U788NSSRLOGQNT8UA3' where id=8; -update noar tt set v0='P7JBAQDXAS66S7GB1UE9LUJR' where id=9; -update noar ti set v0='P7JBAQDXAS66S7GB1UE9LUJR' where id=9; -update noar tt set b0='DNVC44B0NZSYIU8XFCLF3X8ZYRI' where id=9; -update noar ti set b0='DNVC44B0NZSYIU8XFCLF3X8ZYRI' where id=9; -update noar tt set v0='E03P' where id=9; -update noar ti set v0='E03P' where id=9; -update noar tt set b1='R7SUMSY3KCAMODTJT54' where id=9; -update noar ti set b1='R7SUMSY3KCAMODTJT54' where id=9; -update noar tt set v0='LITW0FBL69AGSICB' where id=9; -update noar ti set v0='LITW0FBL69AGSICB' where id=9; -update noar tt set b2='QZF1CCV15' where id=9; -update noar ti set b2='QZF1CCV15' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - v0 varchar(256) not null, - b0 blob not null, - b1 blob not null, - b2 tinyblob not null -) engine=tokudb; -insert into tt values (1,'','','',''); -insert into tt values (2,'','','',''); -insert into tt values (3,'','','',''); -insert into tt values (4,'','','',''); -insert into tt values (5,'','','',''); -insert into tt values (6,'','','',''); -insert into tt values (7,'','','',''); -insert into tt values (8,'','','',''); -insert into tt values (9,'','','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='WEICMI03B3L98HEG2L' where id=1; -update noar ti set v0='WEICMI03B3L98HEG2L' where id=1; -update noar tt set b0='6DUO87IOTWL987PVGN' where id=1; -update noar ti set b0='6DUO87IOTWL987PVGN' where id=1; -update noar tt set v0='O' where id=1; -update noar ti set v0='O' where id=1; -update noar tt set b1='AFFTHSXH4G44A10XW3ORQC9GSZW2U' where id=1; -update noar ti set b1='AFFTHSXH4G44A10XW3ORQC9GSZW2U' where id=1; -update noar tt set v0='LJBP5E' where id=1; -update noar ti set v0='LJBP5E' where id=1; -update noar tt set b2='LFQPB3FG75R0A89U79BQVZ31L6' where id=1; -update noar ti set b2='LFQPB3FG75R0A89U79BQVZ31L6' where id=1; -update noar tt set v0='H262AYQFXYGGPYW9BNA3TQG' where id=2; -update noar ti set v0='H262AYQFXYGGPYW9BNA3TQG' where id=2; -update noar tt set b0='AKU2N7SPSW5NEIGX2NDQIU8VGHEKMQ' where id=2; -update noar ti set b0='AKU2N7SPSW5NEIGX2NDQIU8VGHEKMQ' where id=2; -update noar tt set v0='N2BU8AR00M9E9N20W4G' where id=2; -update noar ti set v0='N2BU8AR00M9E9N20W4G' where id=2; -update noar tt set b1='B2GZW25XHG4Q32CCDLXF1' where id=2; -update noar ti set b1='B2GZW25XHG4Q32CCDLXF1' where id=2; -update noar tt set v0='2MM6KGL6EPGPXAL1M6' where id=2; -update noar ti set v0='2MM6KGL6EPGPXAL1M6' where id=2; -update noar tt set b2='AIGM3DHPG' where id=2; -update noar ti set b2='AIGM3DHPG' where id=2; -update noar tt set v0='J5AYDH8CYWIZK4' where id=3; -update noar ti set v0='J5AYDH8CYWIZK4' where id=3; -update noar tt set b0='PESZFGHN2OD2243NJ' where id=3; -update noar ti set b0='PESZFGHN2OD2243NJ' where id=3; -update noar tt set v0='DWTK5RGZB5P01THT' where id=3; -update noar ti set v0='DWTK5RGZB5P01THT' where id=3; -update noar tt set b1='UYW2775ZWE' where id=3; -update noar ti set b1='UYW2775ZWE' where id=3; -update noar tt set v0='3LAORLB9SSFKE2M7SQT99P' where id=3; -update noar ti set v0='3LAORLB9SSFKE2M7SQT99P' where id=3; -update noar tt set b2='AK3POI66ZGAX5R0ZFIOZF3B4NKW' where id=3; -update noar ti set b2='AK3POI66ZGAX5R0ZFIOZF3B4NKW' where id=3; -update noar tt set v0='CGQLK3UOOB30HNV3DRWI' where id=4; -update noar ti set v0='CGQLK3UOOB30HNV3DRWI' where id=4; -update noar tt set b0='K1' where id=4; -update noar ti set b0='K1' where id=4; -update noar tt set v0='PJX9HD71S6JTT8F8B77' where id=4; -update noar ti set v0='PJX9HD71S6JTT8F8B77' where id=4; -update noar tt set b1='A3HEWLX' where id=4; -update noar ti set b1='A3HEWLX' where id=4; -update noar tt set v0='YV1KF967659I5VVU8J1SU5MI5' where id=4; -update noar ti set v0='YV1KF967659I5VVU8J1SU5MI5' where id=4; -update noar tt set b2='WXW0B8ABCTL2SOFHOKQ' where id=4; -update noar ti set b2='WXW0B8ABCTL2SOFHOKQ' where id=4; -update noar tt set v0='L2WWV5SC' where id=5; -update noar ti set v0='L2WWV5SC' where id=5; -update noar tt set b0='M4FV' where id=5; -update noar ti set b0='M4FV' where id=5; -update noar tt set v0='9XH7VB9' where id=5; -update noar ti set v0='9XH7VB9' where id=5; -update noar tt set b1='VEVE' where id=5; -update noar ti set b1='VEVE' where id=5; -update noar tt set v0='REIA2RJDX3XP6BTQNG3P6XX5' where id=5; -update noar ti set v0='REIA2RJDX3XP6BTQNG3P6XX5' where id=5; -update noar tt set b2='RK22WIFGCQG9FYJ' where id=5; -update noar ti set b2='RK22WIFGCQG9FYJ' where id=5; -update noar tt set v0='6K' where id=6; -update noar ti set v0='6K' where id=6; -update noar tt set b0='KB6CI88G3IV8B4EP' where id=6; -update noar ti set b0='KB6CI88G3IV8B4EP' where id=6; -update noar tt set v0='0RDYG9FPW05KCZPT7JU' where id=6; -update noar ti set v0='0RDYG9FPW05KCZPT7JU' where id=6; -update noar tt set b1='ZSPAC2N1H3QOIEOVG' where id=6; -update noar ti set b1='ZSPAC2N1H3QOIEOVG' where id=6; -update noar tt set v0='D4BENW98MZEFV' where id=6; -update noar ti set v0='D4BENW98MZEFV' where id=6; -update noar tt set b2='ABKJ21KKF1WK191I' where id=6; -update noar ti set b2='ABKJ21KKF1WK191I' where id=6; -update noar tt set v0='EN3' where id=7; -update noar ti set v0='EN3' where id=7; -update noar tt set b0='FXVSZJXYKB' where id=7; -update noar ti set b0='FXVSZJXYKB' where id=7; -update noar tt set v0='CF918YZ2W0' where id=7; -update noar ti set v0='CF918YZ2W0' where id=7; -update noar tt set b1='94ZRG18SR29B44V69LZU2X77PE8T' where id=7; -update noar ti set b1='94ZRG18SR29B44V69LZU2X77PE8T' where id=7; -update noar tt set v0='7LA68AXM8QMVTMHNKN9G' where id=7; -update noar ti set v0='7LA68AXM8QMVTMHNKN9G' where id=7; -update noar tt set b2='2GHN46O2G0' where id=7; -update noar ti set b2='2GHN46O2G0' where id=7; -update noar tt set v0='KPHU03G4BDOUEWSSZJ7N08K' where id=8; -update noar ti set v0='KPHU03G4BDOUEWSSZJ7N08K' where id=8; -update noar tt set b0='VPDN7E4SXBP5' where id=8; -update noar ti set b0='VPDN7E4SXBP5' where id=8; -update noar tt set v0='6JWITICLBUK1PU0SEU2XOD8538' where id=8; -update noar ti set v0='6JWITICLBUK1PU0SEU2XOD8538' where id=8; -update noar tt set b1='RMMAL69OVAZJUC1QDZ0V82VWC6WNFNE' where id=8; -update noar ti set b1='RMMAL69OVAZJUC1QDZ0V82VWC6WNFNE' where id=8; -update noar tt set v0='Q197C245' where id=8; -update noar ti set v0='Q197C245' where id=8; -update noar tt set b2='K1C2F06PJKN687FQ0LO9W38GQQ' where id=8; -update noar ti set b2='K1C2F06PJKN687FQ0LO9W38GQQ' where id=8; -update noar tt set v0='MW3M6R6SB4U0ZADS02L7E0PNLW5N' where id=9; -update noar ti set v0='MW3M6R6SB4U0ZADS02L7E0PNLW5N' where id=9; -update noar tt set b0='G2V3QF13J88JYTL76MZOC' where id=9; -update noar ti set b0='G2V3QF13J88JYTL76MZOC' where id=9; -update noar tt set v0='FFK755MQG83UXHPPQLZU3F' where id=9; -update noar ti set v0='FFK755MQG83UXHPPQLZU3F' where id=9; -update noar tt set b1='SEPB2RFI9XZZN' where id=9; -update noar ti set b1='SEPB2RFI9XZZN' where id=9; -update noar tt set v0='ISRWP16H8N7O6T9T' where id=9; -update noar ti set v0='ISRWP16H8N7O6T9T' where id=9; -update noar tt set b2='YB4K6JSOUDVCTKXTA9Y23R9GDGHH' where id=9; -update noar ti set b2='YB4K6JSOUDVCTKXTA9Y23R9GDGHH' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - v0 varchar(32) null, - b0 blob null, - b1 blob null, - b2 blob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='20WYF4OVZC3W7ICNW7CMKR571' where id=1; -update noar ti set v0='20WYF4OVZC3W7ICNW7CMKR571' where id=1; -update noar tt set b0='9H2D4OJIYMHTFJAOCI4PS75IZDE0B' where id=1; -update noar ti set b0='9H2D4OJIYMHTFJAOCI4PS75IZDE0B' where id=1; -update noar tt set v0='OH9U48T51CRSUE4ROORVXK5VPTD4' where id=1; -update noar ti set v0='OH9U48T51CRSUE4ROORVXK5VPTD4' where id=1; -update noar tt set b1='QOC3OBIOE3C2RB4LDOSO93RA267UNADV' where id=1; -update noar ti set b1='QOC3OBIOE3C2RB4LDOSO93RA267UNADV' where id=1; -update noar tt set v0='SNOK4' where id=1; -update noar ti set v0='SNOK4' where id=1; -update noar tt set b2='9HQLKNJA8J2D4R61ZQLFBEPDMZUC2H' where id=1; -update noar ti set b2='9HQLKNJA8J2D4R61ZQLFBEPDMZUC2H' where id=1; -update noar tt set v0='4797V' where id=2; -update noar ti set v0='4797V' where id=2; -update noar tt set b0='FRZ1PL9ZEAPB6H7OCGTG657MYW' where id=2; -update noar ti set b0='FRZ1PL9ZEAPB6H7OCGTG657MYW' where id=2; -update noar tt set v0='K052U605V76IRE9YFNKUUQ2HA7P' where id=2; -update noar ti set v0='K052U605V76IRE9YFNKUUQ2HA7P' where id=2; -update noar tt set b1='RZ8WM6EC0ESPB6EL' where id=2; -update noar ti set b1='RZ8WM6EC0ESPB6EL' where id=2; -update noar tt set v0='WUD2BQVLW8TJB6RNRTM59S6QM' where id=2; -update noar ti set v0='WUD2BQVLW8TJB6RNRTM59S6QM' where id=2; -update noar tt set b2='NBXF9I' where id=2; -update noar ti set b2='NBXF9I' where id=2; -update noar tt set v0='M' where id=3; -update noar ti set v0='M' where id=3; -update noar tt set b0='4FC3TGX' where id=3; -update noar ti set b0='4FC3TGX' where id=3; -update noar tt set v0='RNDPDUJ9KY97L2K5QFSI' where id=3; -update noar ti set v0='RNDPDUJ9KY97L2K5QFSI' where id=3; -update noar tt set b1='LQPQIAKV4HSUE4KDZEF8WPAWBYIRAW4B' where id=3; -update noar ti set b1='LQPQIAKV4HSUE4KDZEF8WPAWBYIRAW4B' where id=3; -update noar tt set v0='DRF5NSSJKMHQX8N935J35IF6' where id=3; -update noar ti set v0='DRF5NSSJKMHQX8N935J35IF6' where id=3; -update noar tt set b2='08S89K' where id=3; -update noar ti set b2='08S89K' where id=3; -update noar tt set v0='N2QWTZQIEQ85T0GXCI89G5A530SQ4' where id=4; -update noar ti set v0='N2QWTZQIEQ85T0GXCI89G5A530SQ4' where id=4; -update noar tt set b0='8H1P97YTNKX2BE3V51MN' where id=4; -update noar ti set b0='8H1P97YTNKX2BE3V51MN' where id=4; -update noar tt set v0='Y5Z8A8B3KV1HL8SFA0GLESUM3AI' where id=4; -update noar ti set v0='Y5Z8A8B3KV1HL8SFA0GLESUM3AI' where id=4; -update noar tt set b1='RJ6P24YM8W9G149KTLIT6G9' where id=4; -update noar ti set b1='RJ6P24YM8W9G149KTLIT6G9' where id=4; -update noar tt set v0='Z7MV61DL' where id=4; -update noar ti set v0='Z7MV61DL' where id=4; -update noar tt set b2='MPOP' where id=4; -update noar ti set b2='MPOP' where id=4; -update noar tt set v0='UX4' where id=5; -update noar ti set v0='UX4' where id=5; -update noar tt set b0='HFS772M4M0W4BQL09N115' where id=5; -update noar ti set b0='HFS772M4M0W4BQL09N115' where id=5; -update noar tt set v0='83A2RFH69OWK4YP0T5OA' where id=5; -update noar ti set v0='83A2RFH69OWK4YP0T5OA' where id=5; -update noar tt set b1='P80W' where id=5; -update noar ti set b1='P80W' where id=5; -update noar tt set v0='5H8DBQ8EOU2U' where id=5; -update noar ti set v0='5H8DBQ8EOU2U' where id=5; -update noar tt set b2='YGCZF3VH1WG8' where id=5; -update noar ti set b2='YGCZF3VH1WG8' where id=5; -update noar tt set v0='LC4BVHX8Q25KZ5NUS39E' where id=6; -update noar ti set v0='LC4BVHX8Q25KZ5NUS39E' where id=6; -update noar tt set b0='HMVYQ6VCP95S5G90P01OLIJV' where id=6; -update noar ti set b0='HMVYQ6VCP95S5G90P01OLIJV' where id=6; -update noar tt set v0='R08VF3HA6705NIVD0PHW4S9P' where id=6; -update noar ti set v0='R08VF3HA6705NIVD0PHW4S9P' where id=6; -update noar tt set b1='42PJF0EFA' where id=6; -update noar ti set b1='42PJF0EFA' where id=6; -update noar tt set v0='NY4TGA' where id=6; -update noar ti set v0='NY4TGA' where id=6; -update noar tt set b2='9XNJ5DTCYUHV' where id=6; -update noar ti set b2='9XNJ5DTCYUHV' where id=6; -update noar tt set v0='W2DP003ZW806N3FHLR2K3PQGMM' where id=7; -update noar ti set v0='W2DP003ZW806N3FHLR2K3PQGMM' where id=7; -update noar tt set b0='WUQIBA2I1HGQZEP8AH6H8730Q7UOVW' where id=7; -update noar ti set b0='WUQIBA2I1HGQZEP8AH6H8730Q7UOVW' where id=7; -update noar tt set v0='QU231SYC3FQ' where id=7; -update noar ti set v0='QU231SYC3FQ' where id=7; -update noar tt set b1='5H3FK65AFOKCBL6ZBRTD' where id=7; -update noar ti set b1='5H3FK65AFOKCBL6ZBRTD' where id=7; -update noar tt set v0='U6EO4BTB1CR7IVE71GHAMG' where id=7; -update noar ti set v0='U6EO4BTB1CR7IVE71GHAMG' where id=7; -update noar tt set b2='WI8IT5RG1SHICDNTMZBMTQ29TC9' where id=7; -update noar ti set b2='WI8IT5RG1SHICDNTMZBMTQ29TC9' where id=7; -update noar tt set v0='589UC2IMSBCK' where id=8; -update noar ti set v0='589UC2IMSBCK' where id=8; -update noar tt set b0='O' where id=8; -update noar ti set b0='O' where id=8; -update noar tt set v0='0JNRUU4EVDK7ITO7IJ40UIIJ3JL69KXE' where id=8; -update noar ti set v0='0JNRUU4EVDK7ITO7IJ40UIIJ3JL69KXE' where id=8; -update noar tt set b1='M1HKEE4SEI7N58YR' where id=8; -update noar ti set b1='M1HKEE4SEI7N58YR' where id=8; -update noar tt set v0='FMVRV63WRLKYAQS1C8' where id=8; -update noar ti set v0='FMVRV63WRLKYAQS1C8' where id=8; -update noar tt set b2='8EMABSBI51DRJPM3FIVPG8' where id=8; -update noar ti set b2='8EMABSBI51DRJPM3FIVPG8' where id=8; -update noar tt set v0='XJQ5WO' where id=9; -update noar ti set v0='XJQ5WO' where id=9; -update noar tt set b0='L38YOPYFS1VGX42I3O7X6E1LY05DSZHM' where id=9; -update noar ti set b0='L38YOPYFS1VGX42I3O7X6E1LY05DSZHM' where id=9; -update noar tt set v0='OHSO' where id=9; -update noar ti set v0='OHSO' where id=9; -update noar tt set b1='G2DXHGYBKQDITAYZLLL8YTBC58' where id=9; -update noar ti set b1='G2DXHGYBKQDITAYZLLL8YTBC58' where id=9; -update noar tt set v0='ENWO39QDNPX1HYVK6MQ1ZWJB9OLOO6B' where id=9; -update noar ti set v0='ENWO39QDNPX1HYVK6MQ1ZWJB9OLOO6B' where id=9; -update noar tt set b2='XE0LZXXQQ6VUTA4CSISAOU' where id=9; -update noar ti set b2='XE0LZXXQQ6VUTA4CSISAOU' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - v0 varchar(256) null, - b0 blob null, - b1 blob null, - b2 blob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='ND2PP77ECRKP' where id=1; -update noar ti set v0='ND2PP77ECRKP' where id=1; -update noar tt set b0='AWJGUS5J0RGJ3ABSQ2Q6' where id=1; -update noar ti set b0='AWJGUS5J0RGJ3ABSQ2Q6' where id=1; -update noar tt set v0='M04KC3DFO1PS5N2HFLHHE2DMVPQG' where id=1; -update noar ti set v0='M04KC3DFO1PS5N2HFLHHE2DMVPQG' where id=1; -update noar tt set b1='AITE7EW5422TEV' where id=1; -update noar ti set b1='AITE7EW5422TEV' where id=1; -update noar tt set v0='7KEOTRPA1IEU4FQ9ZTWX6L' where id=1; -update noar ti set v0='7KEOTRPA1IEU4FQ9ZTWX6L' where id=1; -update noar tt set b2='6ORWC6J418DSO6LRBSETEQTF8IPP' where id=1; -update noar ti set b2='6ORWC6J418DSO6LRBSETEQTF8IPP' where id=1; -update noar tt set v0='LDWX6DP5K6YU1TIJYJCGO2EW8K68' where id=2; -update noar ti set v0='LDWX6DP5K6YU1TIJYJCGO2EW8K68' where id=2; -update noar tt set b0='LXFP662OXMYLWX0C2WU9MEG9JXZW4Y' where id=2; -update noar ti set b0='LXFP662OXMYLWX0C2WU9MEG9JXZW4Y' where id=2; -update noar tt set v0='INXDX91X0OTNC7RNG' where id=2; -update noar ti set v0='INXDX91X0OTNC7RNG' where id=2; -update noar tt set b1='5NSNHDB4WERK81J4H' where id=2; -update noar ti set b1='5NSNHDB4WERK81J4H' where id=2; -update noar tt set v0='5R' where id=2; -update noar ti set v0='5R' where id=2; -update noar tt set b2='HW357HOGSMGCFD' where id=2; -update noar ti set b2='HW357HOGSMGCFD' where id=2; -update noar tt set v0='7HZTV' where id=3; -update noar ti set v0='7HZTV' where id=3; -update noar tt set b0='0D8Y5A10XZS5' where id=3; -update noar ti set b0='0D8Y5A10XZS5' where id=3; -update noar tt set v0='7FGKHAYR3VD' where id=3; -update noar ti set v0='7FGKHAYR3VD' where id=3; -update noar tt set b1='SP4P636SC5C5LUB88SEJBL6CGXL2SP' where id=3; -update noar ti set b1='SP4P636SC5C5LUB88SEJBL6CGXL2SP' where id=3; -update noar tt set v0='DDMN6XJ9SU1UWC2G7' where id=3; -update noar ti set v0='DDMN6XJ9SU1UWC2G7' where id=3; -update noar tt set b2='SRUU86A5' where id=3; -update noar ti set b2='SRUU86A5' where id=3; -update noar tt set v0='DF8ALNS0QGSWXU41MSQU5WVL5T0ID3' where id=4; -update noar ti set v0='DF8ALNS0QGSWXU41MSQU5WVL5T0ID3' where id=4; -update noar tt set b0='G' where id=4; -update noar ti set b0='G' where id=4; -update noar tt set v0='PPZD45M9LEUMTA165V5HTQVMBAR8PG16' where id=4; -update noar ti set v0='PPZD45M9LEUMTA165V5HTQVMBAR8PG16' where id=4; -update noar tt set b1='WR80AKGVKC7J925U1N0KTKHTFU' where id=4; -update noar ti set b1='WR80AKGVKC7J925U1N0KTKHTFU' where id=4; -update noar tt set v0='7MR0OY5K7' where id=4; -update noar ti set v0='7MR0OY5K7' where id=4; -update noar tt set b2='PJWOOMHF6BP0' where id=4; -update noar ti set b2='PJWOOMHF6BP0' where id=4; -update noar tt set v0='8ROI54VXJ' where id=5; -update noar ti set v0='8ROI54VXJ' where id=5; -update noar tt set b0='0C8UDPQA5VL6LSZGZNLFL8N6YEMCC' where id=5; -update noar ti set b0='0C8UDPQA5VL6LSZGZNLFL8N6YEMCC' where id=5; -update noar tt set v0='Y725NS0VBPBY' where id=5; -update noar ti set v0='Y725NS0VBPBY' where id=5; -update noar tt set b1='LD5IUFX5L737GGJAZ' where id=5; -update noar ti set b1='LD5IUFX5L737GGJAZ' where id=5; -update noar tt set v0='EQ6QX4ZH4T24HB4SFTG22FS' where id=5; -update noar ti set v0='EQ6QX4ZH4T24HB4SFTG22FS' where id=5; -update noar tt set b2='AJZA7' where id=5; -update noar ti set b2='AJZA7' where id=5; -update noar tt set v0='EFBN461325WFCE2PN6PNRRZPW1VCP' where id=6; -update noar ti set v0='EFBN461325WFCE2PN6PNRRZPW1VCP' where id=6; -update noar tt set b0='S5RI29RT8DN3QSP7WNNIIKBN2YMBQ4K' where id=6; -update noar ti set b0='S5RI29RT8DN3QSP7WNNIIKBN2YMBQ4K' where id=6; -update noar tt set v0='R1673BU9DVZLTM7SQR8W4OP39CD' where id=6; -update noar ti set v0='R1673BU9DVZLTM7SQR8W4OP39CD' where id=6; -update noar tt set b1='P5IPF01TNVJDQQB4ML7W' where id=6; -update noar ti set b1='P5IPF01TNVJDQQB4ML7W' where id=6; -update noar tt set v0='R19TN5' where id=6; -update noar ti set v0='R19TN5' where id=6; -update noar tt set b2='SD' where id=6; -update noar ti set b2='SD' where id=6; -update noar tt set v0='9YGI8PSBUCN0S05Y' where id=7; -update noar ti set v0='9YGI8PSBUCN0S05Y' where id=7; -update noar tt set b0='7' where id=7; -update noar ti set b0='7' where id=7; -update noar tt set v0='AUD2YEM25JORQFIZ98TSWJI' where id=7; -update noar ti set v0='AUD2YEM25JORQFIZ98TSWJI' where id=7; -update noar tt set b1='6FQ' where id=7; -update noar ti set b1='6FQ' where id=7; -update noar tt set v0='4YZ3R6D9P26L199FHJ' where id=7; -update noar ti set v0='4YZ3R6D9P26L199FHJ' where id=7; -update noar tt set b2='SKEEMR1W5HXDVT' where id=7; -update noar ti set b2='SKEEMR1W5HXDVT' where id=7; -update noar tt set v0='UFGAKOCKO1YUMQISY3IM9CZ2FS5UMF' where id=8; -update noar ti set v0='UFGAKOCKO1YUMQISY3IM9CZ2FS5UMF' where id=8; -update noar tt set b0='SF2EAXMCDJLGK27R' where id=8; -update noar ti set b0='SF2EAXMCDJLGK27R' where id=8; -update noar tt set v0='G48Y' where id=8; -update noar ti set v0='G48Y' where id=8; -update noar tt set b1='79615FMJ4CX2LUC6CLKO8I' where id=8; -update noar ti set b1='79615FMJ4CX2LUC6CLKO8I' where id=8; -update noar tt set v0='7WEESB35FNXUWSQPZ366AC03KB9SU' where id=8; -update noar ti set v0='7WEESB35FNXUWSQPZ366AC03KB9SU' where id=8; -update noar tt set b2='QN9Y9BW58HI5FMNQQZ7N9QPLTSS' where id=8; -update noar ti set b2='QN9Y9BW58HI5FMNQQZ7N9QPLTSS' where id=8; -update noar tt set v0='CHYCYP1BCMAM4E6PBCB2R9KQ' where id=9; -update noar ti set v0='CHYCYP1BCMAM4E6PBCB2R9KQ' where id=9; -update noar tt set b0='FEPD1UGN0Y' where id=9; -update noar ti set b0='FEPD1UGN0Y' where id=9; -update noar tt set v0='0BAHVCLWR3NR' where id=9; -update noar ti set v0='0BAHVCLWR3NR' where id=9; -update noar tt set b1='8EZNK8WJMAW' where id=9; -update noar ti set b1='8EZNK8WJMAW' where id=9; -update noar tt set v0='FUB3OLP3CV68U6FA4NX' where id=9; -update noar ti set v0='FUB3OLP3CV68U6FA4NX' where id=9; -update noar tt set b2='0AEBIN4G49NDO' where id=9; -update noar ti set b2='0AEBIN4G49NDO' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - v0 varchar(32) not null, - b0 blob not null, - b1 blob not null, - b2 blob not null -) engine=tokudb; -insert into tt values (1,'','','',''); -insert into tt values (2,'','','',''); -insert into tt values (3,'','','',''); -insert into tt values (4,'','','',''); -insert into tt values (5,'','','',''); -insert into tt values (6,'','','',''); -insert into tt values (7,'','','',''); -insert into tt values (8,'','','',''); -insert into tt values (9,'','','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='Y602IAFU4ZDN78RFKC910' where id=1; -update noar ti set v0='Y602IAFU4ZDN78RFKC910' where id=1; -update noar tt set b0='1WEZPKHBDRDBPGSPUPR' where id=1; -update noar ti set b0='1WEZPKHBDRDBPGSPUPR' where id=1; -update noar tt set v0='26VMS6SDST8YQZTVKXMMHQ7Z6HV' where id=1; -update noar ti set v0='26VMS6SDST8YQZTVKXMMHQ7Z6HV' where id=1; -update noar tt set b1='AGF46JL01951ANG' where id=1; -update noar ti set b1='AGF46JL01951ANG' where id=1; -update noar tt set v0='VV9ITRDQ43CPY81D47P' where id=1; -update noar ti set v0='VV9ITRDQ43CPY81D47P' where id=1; -update noar tt set b2='XXH54NGZK49' where id=1; -update noar ti set b2='XXH54NGZK49' where id=1; -update noar tt set v0='ZMD7XTC' where id=2; -update noar ti set v0='ZMD7XTC' where id=2; -update noar tt set b0='0F61L1IXU' where id=2; -update noar ti set b0='0F61L1IXU' where id=2; -update noar tt set v0='FUACLUGQSAQ0461TRQ9' where id=2; -update noar ti set v0='FUACLUGQSAQ0461TRQ9' where id=2; -update noar tt set b1='PQV2O' where id=2; -update noar ti set b1='PQV2O' where id=2; -update noar tt set v0='H9PBXDDZG' where id=2; -update noar ti set v0='H9PBXDDZG' where id=2; -update noar tt set b2='DGJQSVSGACPE1JEH5SS8GBS6ZO0O7' where id=2; -update noar ti set b2='DGJQSVSGACPE1JEH5SS8GBS6ZO0O7' where id=2; -update noar tt set v0='OM' where id=3; -update noar ti set v0='OM' where id=3; -update noar tt set b0='0' where id=3; -update noar ti set b0='0' where id=3; -update noar tt set v0='VTKANW1WR4P9' where id=3; -update noar ti set v0='VTKANW1WR4P9' where id=3; -update noar tt set b1='KW2J2MJWNBSBLNQ' where id=3; -update noar ti set b1='KW2J2MJWNBSBLNQ' where id=3; -update noar tt set v0='W8CJCJDJNBAUWHFS' where id=3; -update noar ti set v0='W8CJCJDJNBAUWHFS' where id=3; -update noar tt set b2='HWDEO4NV0OQ46E0LT2LJULKBM' where id=3; -update noar ti set b2='HWDEO4NV0OQ46E0LT2LJULKBM' where id=3; -update noar tt set v0='B7OCMXRZTOV2QOBTLDSEULY23' where id=4; -update noar ti set v0='B7OCMXRZTOV2QOBTLDSEULY23' where id=4; -update noar tt set b0='ZC5LORFU6EZZH' where id=4; -update noar ti set b0='ZC5LORFU6EZZH' where id=4; -update noar tt set v0='Q5RGPI7S6OBRR3TLPYF' where id=4; -update noar ti set v0='Q5RGPI7S6OBRR3TLPYF' where id=4; -update noar tt set b1='DR1CIWPF' where id=4; -update noar ti set b1='DR1CIWPF' where id=4; -update noar tt set v0='2SK1C87QMNM5' where id=4; -update noar ti set v0='2SK1C87QMNM5' where id=4; -update noar tt set b2='4UX85IYKL4B5V9ASAY8KJ2WRS5' where id=4; -update noar ti set b2='4UX85IYKL4B5V9ASAY8KJ2WRS5' where id=4; -update noar tt set v0='OBE2ER96KB6GW1YBRKW33PWH894JU' where id=5; -update noar ti set v0='OBE2ER96KB6GW1YBRKW33PWH894JU' where id=5; -update noar tt set b0='QMMXYETWO70KSQ88ZYIQT6IKTMNG3MW' where id=5; -update noar ti set b0='QMMXYETWO70KSQ88ZYIQT6IKTMNG3MW' where id=5; -update noar tt set v0='MSNMKQHF3TED9HLBN42YW628JNBCI4' where id=5; -update noar ti set v0='MSNMKQHF3TED9HLBN42YW628JNBCI4' where id=5; -update noar tt set b1='U3C3ZOM8OOM3VE0G855G' where id=5; -update noar ti set b1='U3C3ZOM8OOM3VE0G855G' where id=5; -update noar tt set v0='EZWMH1SXQU2M0K15HD0VQQMA' where id=5; -update noar ti set v0='EZWMH1SXQU2M0K15HD0VQQMA' where id=5; -update noar tt set b2='HNLDRQ6XQANK' where id=5; -update noar ti set b2='HNLDRQ6XQANK' where id=5; -update noar tt set v0='YERRW4C40' where id=6; -update noar ti set v0='YERRW4C40' where id=6; -update noar tt set b0='JD' where id=6; -update noar ti set b0='JD' where id=6; -update noar tt set v0='2MKYHYMVEGZSEWCMGRX6SQ332' where id=6; -update noar ti set v0='2MKYHYMVEGZSEWCMGRX6SQ332' where id=6; -update noar tt set b1='4DMB6ETH6JRGK' where id=6; -update noar ti set b1='4DMB6ETH6JRGK' where id=6; -update noar tt set v0='U19I' where id=6; -update noar ti set v0='U19I' where id=6; -update noar tt set b2='DMK2D8UL0E8HG166743YVX65' where id=6; -update noar ti set b2='DMK2D8UL0E8HG166743YVX65' where id=6; -update noar tt set v0='EPZXTZLOFL7MJYZHASYJ50D7FQY0D8' where id=7; -update noar ti set v0='EPZXTZLOFL7MJYZHASYJ50D7FQY0D8' where id=7; -update noar tt set b0='1CVRAPLY6DEO1CGHDLI47TL27' where id=7; -update noar ti set b0='1CVRAPLY6DEO1CGHDLI47TL27' where id=7; -update noar tt set v0='LONEE2W' where id=7; -update noar ti set v0='LONEE2W' where id=7; -update noar tt set b1='BDB8IMMBELQQQ3U53CQJ0PQZ1' where id=7; -update noar ti set b1='BDB8IMMBELQQQ3U53CQJ0PQZ1' where id=7; -update noar tt set v0='4Y3VQ9IUUJTLB8K8IXY2W' where id=7; -update noar ti set v0='4Y3VQ9IUUJTLB8K8IXY2W' where id=7; -update noar tt set b2='MO02Y7TMQZTN0E5HJQYMQ77IKM9TRYJA' where id=7; -update noar ti set b2='MO02Y7TMQZTN0E5HJQYMQ77IKM9TRYJA' where id=7; -update noar tt set v0='HLFPC18TE' where id=8; -update noar ti set v0='HLFPC18TE' where id=8; -update noar tt set b0='7B4MBS' where id=8; -update noar ti set b0='7B4MBS' where id=8; -update noar tt set v0='6GEOBRTASR9T3XNICD3E4M3XMFK' where id=8; -update noar ti set v0='6GEOBRTASR9T3XNICD3E4M3XMFK' where id=8; -update noar tt set b1='MM55K8J' where id=8; -update noar ti set b1='MM55K8J' where id=8; -update noar tt set v0='2CJ2VPETM3A64GUYYHGY9Z' where id=8; -update noar ti set v0='2CJ2VPETM3A64GUYYHGY9Z' where id=8; -update noar tt set b2='5YCQKAAXI8RLSAZSFDK612VDCVYXLB' where id=8; -update noar ti set b2='5YCQKAAXI8RLSAZSFDK612VDCVYXLB' where id=8; -update noar tt set v0='LOPMIAGSDUKTNSUJRPFFE3ZKTD2WUA' where id=9; -update noar ti set v0='LOPMIAGSDUKTNSUJRPFFE3ZKTD2WUA' where id=9; -update noar tt set b0='ZU6G05GKVVNCIW9BM87K6B6CVJ6' where id=9; -update noar ti set b0='ZU6G05GKVVNCIW9BM87K6B6CVJ6' where id=9; -update noar tt set v0='K' where id=9; -update noar ti set v0='K' where id=9; -update noar tt set b1='NUZV4K9AOKB' where id=9; -update noar ti set b1='NUZV4K9AOKB' where id=9; -update noar tt set v0='47TOGYQK' where id=9; -update noar ti set v0='47TOGYQK' where id=9; -update noar tt set b2='LMYQM002USXZKSLI466Y68XBFOR' where id=9; -update noar ti set b2='LMYQM002USXZKSLI466Y68XBFOR' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - v0 varchar(256) not null, - b0 blob not null, - b1 blob not null, - b2 blob not null -) engine=tokudb; -insert into tt values (1,'','','',''); -insert into tt values (2,'','','',''); -insert into tt values (3,'','','',''); -insert into tt values (4,'','','',''); -insert into tt values (5,'','','',''); -insert into tt values (6,'','','',''); -insert into tt values (7,'','','',''); -insert into tt values (8,'','','',''); -insert into tt values (9,'','','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='Q2A0INT9CK6QMP6LL3PHNN' where id=1; -update noar ti set v0='Q2A0INT9CK6QMP6LL3PHNN' where id=1; -update noar tt set b0='1NI8FRDSA4V32GG2V0C7877BXOVTPM' where id=1; -update noar ti set b0='1NI8FRDSA4V32GG2V0C7877BXOVTPM' where id=1; -update noar tt set v0='EJ43F8SBKH2OTTPFA' where id=1; -update noar ti set v0='EJ43F8SBKH2OTTPFA' where id=1; -update noar tt set b1='2U3EPQ0WU4PE' where id=1; -update noar ti set b1='2U3EPQ0WU4PE' where id=1; -update noar tt set v0='W1QJBHTGNZLMEAMT2ERYME7XHK1WGG' where id=1; -update noar ti set v0='W1QJBHTGNZLMEAMT2ERYME7XHK1WGG' where id=1; -update noar tt set b2='4GSFWL0H53KY7UMW3EEW66DU1NUS1IKN' where id=1; -update noar ti set b2='4GSFWL0H53KY7UMW3EEW66DU1NUS1IKN' where id=1; -update noar tt set v0='I61GXFOICHK' where id=2; -update noar ti set v0='I61GXFOICHK' where id=2; -update noar tt set b0='6EVWABNCX9XUBJM' where id=2; -update noar ti set b0='6EVWABNCX9XUBJM' where id=2; -update noar tt set v0='2' where id=2; -update noar ti set v0='2' where id=2; -update noar tt set b1='CYJLCXJKKG5JVVTSZC4QJSDON84C' where id=2; -update noar ti set b1='CYJLCXJKKG5JVVTSZC4QJSDON84C' where id=2; -update noar tt set v0='F22' where id=2; -update noar ti set v0='F22' where id=2; -update noar tt set b2='EY4HQ7U1BAY9WQY20' where id=2; -update noar ti set b2='EY4HQ7U1BAY9WQY20' where id=2; -update noar tt set v0='I16BD' where id=3; -update noar ti set v0='I16BD' where id=3; -update noar tt set b0='0UQQKQZ' where id=3; -update noar ti set b0='0UQQKQZ' where id=3; -update noar tt set v0='S0H6I5RQL5AJ6T2E4NT91FPI9' where id=3; -update noar ti set v0='S0H6I5RQL5AJ6T2E4NT91FPI9' where id=3; -update noar tt set b1='X6B51Q130TNRC4LY01HE2VWDMENDNI' where id=3; -update noar ti set b1='X6B51Q130TNRC4LY01HE2VWDMENDNI' where id=3; -update noar tt set v0='JBV' where id=3; -update noar ti set v0='JBV' where id=3; -update noar tt set b2='RIWJ584MDZIL1' where id=3; -update noar ti set b2='RIWJ584MDZIL1' where id=3; -update noar tt set v0='OQTNO5HNDNCQNP39CT' where id=4; -update noar ti set v0='OQTNO5HNDNCQNP39CT' where id=4; -update noar tt set b0='KGMVIO4P9GJ82BRK4QUQXOIVOY' where id=4; -update noar ti set b0='KGMVIO4P9GJ82BRK4QUQXOIVOY' where id=4; -update noar tt set v0='7UWRKN5K' where id=4; -update noar ti set v0='7UWRKN5K' where id=4; -update noar tt set b1='JM1YB057FASEW0YR4UHZSM7264Z' where id=4; -update noar ti set b1='JM1YB057FASEW0YR4UHZSM7264Z' where id=4; -update noar tt set v0='8PTEJZB0IE3DT22O1K9028KBK5Q' where id=4; -update noar ti set v0='8PTEJZB0IE3DT22O1K9028KBK5Q' where id=4; -update noar tt set b2='2WZWSX' where id=4; -update noar ti set b2='2WZWSX' where id=4; -update noar tt set v0='IZDSDTXZCM8V' where id=5; -update noar ti set v0='IZDSDTXZCM8V' where id=5; -update noar tt set b0='1AKEL9386KAYTTNSYU' where id=5; -update noar ti set b0='1AKEL9386KAYTTNSYU' where id=5; -update noar tt set v0='IJWB20DJ039' where id=5; -update noar ti set v0='IJWB20DJ039' where id=5; -update noar tt set b1='Z' where id=5; -update noar ti set b1='Z' where id=5; -update noar tt set v0='4Y8FW1K4GVEO1' where id=5; -update noar ti set v0='4Y8FW1K4GVEO1' where id=5; -update noar tt set b2='93B0P70Q' where id=5; -update noar ti set b2='93B0P70Q' where id=5; -update noar tt set v0='E3V84H3201OJNO0JQCM5' where id=6; -update noar ti set v0='E3V84H3201OJNO0JQCM5' where id=6; -update noar tt set b0='E2XVNNCF7IA' where id=6; -update noar ti set b0='E2XVNNCF7IA' where id=6; -update noar tt set v0='59FGXR' where id=6; -update noar ti set v0='59FGXR' where id=6; -update noar tt set b1='ETE0DQJ' where id=6; -update noar ti set b1='ETE0DQJ' where id=6; -update noar tt set v0='L3JWB' where id=6; -update noar ti set v0='L3JWB' where id=6; -update noar tt set b2='EVMIFKHC1H' where id=6; -update noar ti set b2='EVMIFKHC1H' where id=6; -update noar tt set v0='X7' where id=7; -update noar ti set v0='X7' where id=7; -update noar tt set b0='9HFBPJ90UBLTSABZITKY8BGRMCBL' where id=7; -update noar ti set b0='9HFBPJ90UBLTSABZITKY8BGRMCBL' where id=7; -update noar tt set v0='J9WBVXIMREWNCPYJMSNDYL63OMCQW0' where id=7; -update noar ti set v0='J9WBVXIMREWNCPYJMSNDYL63OMCQW0' where id=7; -update noar tt set b1='5' where id=7; -update noar ti set b1='5' where id=7; -update noar tt set v0='KU6WSI30JE' where id=7; -update noar ti set v0='KU6WSI30JE' where id=7; -update noar tt set b2='ILHPQMHOYDKDZRGYK4IDV' where id=7; -update noar ti set b2='ILHPQMHOYDKDZRGYK4IDV' where id=7; -update noar tt set v0='Q08C6463' where id=8; -update noar ti set v0='Q08C6463' where id=8; -update noar tt set b0='NOF4OK9Q8HX2IH3WBLVLGB6A' where id=8; -update noar ti set b0='NOF4OK9Q8HX2IH3WBLVLGB6A' where id=8; -update noar tt set v0='SJHQUR7O8G72O8V6T91NXH4MJLXA' where id=8; -update noar ti set v0='SJHQUR7O8G72O8V6T91NXH4MJLXA' where id=8; -update noar tt set b1='81JPFC7X9DFK8D7FEXGVFW' where id=8; -update noar ti set b1='81JPFC7X9DFK8D7FEXGVFW' where id=8; -update noar tt set v0='0JGGF2SVE5RL6FPIH7DJ1' where id=8; -update noar ti set v0='0JGGF2SVE5RL6FPIH7DJ1' where id=8; -update noar tt set b2='W' where id=8; -update noar ti set b2='W' where id=8; -update noar tt set v0='RQ081M3YBM9IDU9H' where id=9; -update noar ti set v0='RQ081M3YBM9IDU9H' where id=9; -update noar tt set b0='JAMCD09Q' where id=9; -update noar ti set b0='JAMCD09Q' where id=9; -update noar tt set v0='4NS' where id=9; -update noar ti set v0='4NS' where id=9; -update noar tt set b1='11GEJG373BICU3RXQPUDUG' where id=9; -update noar ti set b1='11GEJG373BICU3RXQPUDUG' where id=9; -update noar tt set v0='VYBXTUFEGH7Y' where id=9; -update noar ti set v0='VYBXTUFEGH7Y' where id=9; -update noar tt set b2='V67B861W3N3BHOJYW' where id=9; -update noar ti set b2='V67B861W3N3BHOJYW' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - v0 varchar(32) null, - b0 blob null, - b1 blob null, - b2 mediumblob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='WX6SD8UP23MQR660NG1PL3S00NAR' where id=1; -update noar ti set v0='WX6SD8UP23MQR660NG1PL3S00NAR' where id=1; -update noar tt set b0='F01HTDCB24YBYSPZIL3LGZ7SHF5' where id=1; -update noar ti set b0='F01HTDCB24YBYSPZIL3LGZ7SHF5' where id=1; -update noar tt set v0='X9Q8DLCWAEFJRQ' where id=1; -update noar ti set v0='X9Q8DLCWAEFJRQ' where id=1; -update noar tt set b1='PZUEYU5H13PF6J' where id=1; -update noar ti set b1='PZUEYU5H13PF6J' where id=1; -update noar tt set v0='4VV8662GPWW08UDR7U41S1ABQMUT1R' where id=1; -update noar ti set v0='4VV8662GPWW08UDR7U41S1ABQMUT1R' where id=1; -update noar tt set b2='WVDLY6NZMVB3AE0ZXH6W62KNOV4P4VB' where id=1; -update noar ti set b2='WVDLY6NZMVB3AE0ZXH6W62KNOV4P4VB' where id=1; -update noar tt set v0='0T' where id=2; -update noar ti set v0='0T' where id=2; -update noar tt set b0='4TNF54Y22LS8R75Y96YHA7MJ' where id=2; -update noar ti set b0='4TNF54Y22LS8R75Y96YHA7MJ' where id=2; -update noar tt set v0='Z6E17BS9FTBZCH9MP3723' where id=2; -update noar ti set v0='Z6E17BS9FTBZCH9MP3723' where id=2; -update noar tt set b1='11B' where id=2; -update noar ti set b1='11B' where id=2; -update noar tt set v0='8P9YDXMORM56L61687XFUPYKUWEI' where id=2; -update noar ti set v0='8P9YDXMORM56L61687XFUPYKUWEI' where id=2; -update noar tt set b2='1X840FPNMWGA93P60D7XTK1A71Q' where id=2; -update noar ti set b2='1X840FPNMWGA93P60D7XTK1A71Q' where id=2; -update noar tt set v0='OK2YHX4KLVQKCLAKBRA5COYPLOT3HOLY' where id=3; -update noar ti set v0='OK2YHX4KLVQKCLAKBRA5COYPLOT3HOLY' where id=3; -update noar tt set b0='GQO48VO6F73M6FPM1EI3CSSK25O7O9YT' where id=3; -update noar ti set b0='GQO48VO6F73M6FPM1EI3CSSK25O7O9YT' where id=3; -update noar tt set v0='8JKDSJFR1G9ZTTAA0710XE36' where id=3; -update noar ti set v0='8JKDSJFR1G9ZTTAA0710XE36' where id=3; -update noar tt set b1='NI2XQQ35PKVZ3C' where id=3; -update noar ti set b1='NI2XQQ35PKVZ3C' where id=3; -update noar tt set v0='LZAEV3A481CXHC7U6CFR' where id=3; -update noar ti set v0='LZAEV3A481CXHC7U6CFR' where id=3; -update noar tt set b2='5IXOBZB0XAS4F' where id=3; -update noar ti set b2='5IXOBZB0XAS4F' where id=3; -update noar tt set v0='HV3HE5SYGJO22CP3RH3R' where id=4; -update noar ti set v0='HV3HE5SYGJO22CP3RH3R' where id=4; -update noar tt set b0='YLN474FQ3HI' where id=4; -update noar ti set b0='YLN474FQ3HI' where id=4; -update noar tt set v0='SLU' where id=4; -update noar ti set v0='SLU' where id=4; -update noar tt set b1='PZJCTIF' where id=4; -update noar ti set b1='PZJCTIF' where id=4; -update noar tt set v0='WECNUP' where id=4; -update noar ti set v0='WECNUP' where id=4; -update noar tt set b2='YCBVO41ZQ' where id=4; -update noar ti set b2='YCBVO41ZQ' where id=4; -update noar tt set v0='UA6WJOM8NFAVLHRONT8OL' where id=5; -update noar ti set v0='UA6WJOM8NFAVLHRONT8OL' where id=5; -update noar tt set b0='BPN2I' where id=5; -update noar ti set b0='BPN2I' where id=5; -update noar tt set v0='8BL3HSDLV7TQ5O7B' where id=5; -update noar ti set v0='8BL3HSDLV7TQ5O7B' where id=5; -update noar tt set b1='PSIVO3K4HOX2S3Z62GZ' where id=5; -update noar ti set b1='PSIVO3K4HOX2S3Z62GZ' where id=5; -update noar tt set v0='FOF1VZYMXR' where id=5; -update noar ti set v0='FOF1VZYMXR' where id=5; -update noar tt set b2='LH2U2G71QM1UNODRNAA8D7' where id=5; -update noar ti set b2='LH2U2G71QM1UNODRNAA8D7' where id=5; -update noar tt set v0='G7KAMMOX8P8RJB3E0MBW' where id=6; -update noar ti set v0='G7KAMMOX8P8RJB3E0MBW' where id=6; -update noar tt set b0='DN4DIJG31DJ82AVBVWAWSO8H3TZ' where id=6; -update noar ti set b0='DN4DIJG31DJ82AVBVWAWSO8H3TZ' where id=6; -update noar tt set v0='AJQW5QNPOMBRE2XKAB35J' where id=6; -update noar ti set v0='AJQW5QNPOMBRE2XKAB35J' where id=6; -update noar tt set b1='RXYLS6W045BIX6CQ7YSDL' where id=6; -update noar ti set b1='RXYLS6W045BIX6CQ7YSDL' where id=6; -update noar tt set v0='UH72ZR9L6G5MEYVZB17C' where id=6; -update noar ti set v0='UH72ZR9L6G5MEYVZB17C' where id=6; -update noar tt set b2='V24H3PGTOHGW3QIP3DAD2R' where id=6; -update noar ti set b2='V24H3PGTOHGW3QIP3DAD2R' where id=6; -update noar tt set v0='95XHVZLKIRUJVALD' where id=7; -update noar ti set v0='95XHVZLKIRUJVALD' where id=7; -update noar tt set b0='SAHGTTP39SJHWTKRY66NVPGVIVL' where id=7; -update noar ti set b0='SAHGTTP39SJHWTKRY66NVPGVIVL' where id=7; -update noar tt set v0='JDVWC5O9' where id=7; -update noar ti set v0='JDVWC5O9' where id=7; -update noar tt set b1='R6D0T3R95H' where id=7; -update noar ti set b1='R6D0T3R95H' where id=7; -update noar tt set v0='7FNX5PNCWP11IR34A4FIZN4' where id=7; -update noar ti set v0='7FNX5PNCWP11IR34A4FIZN4' where id=7; -update noar tt set b2='0H4SDD9GVDM1A8KINANNDJFXTWZVP2S' where id=7; -update noar ti set b2='0H4SDD9GVDM1A8KINANNDJFXTWZVP2S' where id=7; -update noar tt set v0='JZSDW6' where id=8; -update noar ti set v0='JZSDW6' where id=8; -update noar tt set b0='69P4HQ10A1L7KZ6' where id=8; -update noar ti set b0='69P4HQ10A1L7KZ6' where id=8; -update noar tt set v0='6PTPU63BIQDRQYFOG9NZ81KRA' where id=8; -update noar ti set v0='6PTPU63BIQDRQYFOG9NZ81KRA' where id=8; -update noar tt set b1='QGEPCHS4Q2C380X938MROX1' where id=8; -update noar ti set b1='QGEPCHS4Q2C380X938MROX1' where id=8; -update noar tt set v0='VPXFS846SYABYWSNUTAIU7872EKLRWG' where id=8; -update noar ti set v0='VPXFS846SYABYWSNUTAIU7872EKLRWG' where id=8; -update noar tt set b2='FE5HZWN77G1RNGOLS9KACZULD8V' where id=8; -update noar ti set b2='FE5HZWN77G1RNGOLS9KACZULD8V' where id=8; -update noar tt set v0='3JSEO668C9R4NL0YUYS' where id=9; -update noar ti set v0='3JSEO668C9R4NL0YUYS' where id=9; -update noar tt set b0='5T' where id=9; -update noar ti set b0='5T' where id=9; -update noar tt set v0='W7FF5G8XQ' where id=9; -update noar ti set v0='W7FF5G8XQ' where id=9; -update noar tt set b1='JAFFL0YDCFXKZQY7O5OGN5' where id=9; -update noar ti set b1='JAFFL0YDCFXKZQY7O5OGN5' where id=9; -update noar tt set v0='09J9S' where id=9; -update noar ti set v0='09J9S' where id=9; -update noar tt set b2='28OGOEV8PZIK' where id=9; -update noar ti set b2='28OGOEV8PZIK' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - v0 varchar(256) null, - b0 blob null, - b1 blob null, - b2 mediumblob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='LHX2ZB6NK' where id=1; -update noar ti set v0='LHX2ZB6NK' where id=1; -update noar tt set b0='YK0EGYAGVT3QJ78PBDQ1' where id=1; -update noar ti set b0='YK0EGYAGVT3QJ78PBDQ1' where id=1; -update noar tt set v0='9U07HY9' where id=1; -update noar ti set v0='9U07HY9' where id=1; -update noar tt set b1='0J1NSUW24TO1DYZ' where id=1; -update noar ti set b1='0J1NSUW24TO1DYZ' where id=1; -update noar tt set v0='J2BWY2IE1PNESGCKSY1KZ116MI' where id=1; -update noar ti set v0='J2BWY2IE1PNESGCKSY1KZ116MI' where id=1; -update noar tt set b2='UQGZZISD' where id=1; -update noar ti set b2='UQGZZISD' where id=1; -update noar tt set v0='5PL9KC02RJMF7CB7X5Z2WS70' where id=2; -update noar ti set v0='5PL9KC02RJMF7CB7X5Z2WS70' where id=2; -update noar tt set b0='R7SV17FN6HV625O04H46HSV86M320NJY' where id=2; -update noar ti set b0='R7SV17FN6HV625O04H46HSV86M320NJY' where id=2; -update noar tt set v0='50YN' where id=2; -update noar ti set v0='50YN' where id=2; -update noar tt set b1='G70FI' where id=2; -update noar ti set b1='G70FI' where id=2; -update noar tt set v0='0H8WK7R4F1XK79A' where id=2; -update noar ti set v0='0H8WK7R4F1XK79A' where id=2; -update noar tt set b2='D5UYUPE6MM0VFMDX6K16MRS5OS1K' where id=2; -update noar ti set b2='D5UYUPE6MM0VFMDX6K16MRS5OS1K' where id=2; -update noar tt set v0='T20CD2LIB344I2JLLXCSKFZXGB6V' where id=3; -update noar ti set v0='T20CD2LIB344I2JLLXCSKFZXGB6V' where id=3; -update noar tt set b0='3UA' where id=3; -update noar ti set b0='3UA' where id=3; -update noar tt set v0='FKTSPE0A26VMUS' where id=3; -update noar ti set v0='FKTSPE0A26VMUS' where id=3; -update noar tt set b1='RBSLGY4YKY7B7RPWT8BFYYG4' where id=3; -update noar ti set b1='RBSLGY4YKY7B7RPWT8BFYYG4' where id=3; -update noar tt set v0='7BCMMQHK9QSDRO46EOSJFFCQBR' where id=3; -update noar ti set v0='7BCMMQHK9QSDRO46EOSJFFCQBR' where id=3; -update noar tt set b2='QG9YJE1HE9M7OJT0U8C70' where id=3; -update noar ti set b2='QG9YJE1HE9M7OJT0U8C70' where id=3; -update noar tt set v0='TFPDYPL' where id=4; -update noar ti set v0='TFPDYPL' where id=4; -update noar tt set b0='KPEC50J3BINWVJW8F3EN56' where id=4; -update noar ti set b0='KPEC50J3BINWVJW8F3EN56' where id=4; -update noar tt set v0='DJEH5WA29E' where id=4; -update noar ti set v0='DJEH5WA29E' where id=4; -update noar tt set b1='ZQ4CCT3HY' where id=4; -update noar ti set b1='ZQ4CCT3HY' where id=4; -update noar tt set v0='O8UK846M5' where id=4; -update noar ti set v0='O8UK846M5' where id=4; -update noar tt set b2='GRN8WHPRX3ZLTY8UAOB9LYX' where id=4; -update noar ti set b2='GRN8WHPRX3ZLTY8UAOB9LYX' where id=4; -update noar tt set v0='K6GYIE0KQKDKZ7UQX44XFYSJ1DHKBK' where id=5; -update noar ti set v0='K6GYIE0KQKDKZ7UQX44XFYSJ1DHKBK' where id=5; -update noar tt set b0='3ME77J7V' where id=5; -update noar ti set b0='3ME77J7V' where id=5; -update noar tt set v0='F' where id=5; -update noar ti set v0='F' where id=5; -update noar tt set b1='7F3V0Q5HMKDRXIDBJY9Z10SISRBCF' where id=5; -update noar ti set b1='7F3V0Q5HMKDRXIDBJY9Z10SISRBCF' where id=5; -update noar tt set v0='8VE641QJOZ937XFBAJ0KQ8GCII' where id=5; -update noar ti set v0='8VE641QJOZ937XFBAJ0KQ8GCII' where id=5; -update noar tt set b2='WB5TNZ8890' where id=5; -update noar ti set b2='WB5TNZ8890' where id=5; -update noar tt set v0='9JFGGOD9DSQ4RHPIKN12YJG31RX0DZWU' where id=6; -update noar ti set v0='9JFGGOD9DSQ4RHPIKN12YJG31RX0DZWU' where id=6; -update noar tt set b0='I9I' where id=6; -update noar ti set b0='I9I' where id=6; -update noar tt set v0='4' where id=6; -update noar ti set v0='4' where id=6; -update noar tt set b1='8OXP694JRS911ISOM' where id=6; -update noar ti set b1='8OXP694JRS911ISOM' where id=6; -update noar tt set v0='HBZS6K32FVMLQ4LQV1S' where id=6; -update noar ti set v0='HBZS6K32FVMLQ4LQV1S' where id=6; -update noar tt set b2='U9IGC00YG2O3PMB60UTTBF42QRYN' where id=6; -update noar ti set b2='U9IGC00YG2O3PMB60UTTBF42QRYN' where id=6; -update noar tt set v0='V27J877IR1KGSOKR95Z7CSFUW' where id=7; -update noar ti set v0='V27J877IR1KGSOKR95Z7CSFUW' where id=7; -update noar tt set b0='S4M02VYK43ISK1' where id=7; -update noar ti set b0='S4M02VYK43ISK1' where id=7; -update noar tt set v0='G111D74G7WDBKWWIQJPLIEM8TM' where id=7; -update noar ti set v0='G111D74G7WDBKWWIQJPLIEM8TM' where id=7; -update noar tt set b1='7R0BSXH3OU4XYMSFN' where id=7; -update noar ti set b1='7R0BSXH3OU4XYMSFN' where id=7; -update noar tt set v0='X9DNBQQ8M83FXBR5V1KZZJ0DVUIRYS' where id=7; -update noar ti set v0='X9DNBQQ8M83FXBR5V1KZZJ0DVUIRYS' where id=7; -update noar tt set b2='LMPUFNIID83ZHSTGX5ZICA4QQDTFUC' where id=7; -update noar ti set b2='LMPUFNIID83ZHSTGX5ZICA4QQDTFUC' where id=7; -update noar tt set v0='66PSAB4Z9UUPE' where id=8; -update noar ti set v0='66PSAB4Z9UUPE' where id=8; -update noar tt set b0='CGW23CYKLIVHEA2PT11R2AXWROO02YJ' where id=8; -update noar ti set b0='CGW23CYKLIVHEA2PT11R2AXWROO02YJ' where id=8; -update noar tt set v0='2EZ6YXXILZNU78H20DYQWQ7CGY' where id=8; -update noar ti set v0='2EZ6YXXILZNU78H20DYQWQ7CGY' where id=8; -update noar tt set b1='B6IJGX8ZVEQZP0RZLBPHP9QWQL0PKG' where id=8; -update noar ti set b1='B6IJGX8ZVEQZP0RZLBPHP9QWQL0PKG' where id=8; -update noar tt set v0='YRAM0HHAK2' where id=8; -update noar ti set v0='YRAM0HHAK2' where id=8; -update noar tt set b2='812X' where id=8; -update noar ti set b2='812X' where id=8; -update noar tt set v0='X2Y3XMHSABEMBGY6HIHXQNG8BEO6B' where id=9; -update noar ti set v0='X2Y3XMHSABEMBGY6HIHXQNG8BEO6B' where id=9; -update noar tt set b0='WJZKMM6WGBN6C18LN3' where id=9; -update noar ti set b0='WJZKMM6WGBN6C18LN3' where id=9; -update noar tt set v0='5VAWD2CL8ICMYZ042' where id=9; -update noar ti set v0='5VAWD2CL8ICMYZ042' where id=9; -update noar tt set b1='3O1N8KH99ZPUCOUYU' where id=9; -update noar ti set b1='3O1N8KH99ZPUCOUYU' where id=9; -update noar tt set v0='KY10SAI31P70Z3N1MAJMANV4N2' where id=9; -update noar ti set v0='KY10SAI31P70Z3N1MAJMANV4N2' where id=9; -update noar tt set b2='MWZXZTH2FSW1M2V0HQCBA9' where id=9; -update noar ti set b2='MWZXZTH2FSW1M2V0HQCBA9' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - v0 varchar(32) not null, - b0 blob not null, - b1 blob not null, - b2 mediumblob not null -) engine=tokudb; -insert into tt values (1,'','','',''); -insert into tt values (2,'','','',''); -insert into tt values (3,'','','',''); -insert into tt values (4,'','','',''); -insert into tt values (5,'','','',''); -insert into tt values (6,'','','',''); -insert into tt values (7,'','','',''); -insert into tt values (8,'','','',''); -insert into tt values (9,'','','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='AZ3P63WPTNLL7X1NNJ6DV22I3VO944T1' where id=1; -update noar ti set v0='AZ3P63WPTNLL7X1NNJ6DV22I3VO944T1' where id=1; -update noar tt set b0='PO1XLCTDRY7Y9TLBHPA' where id=1; -update noar ti set b0='PO1XLCTDRY7Y9TLBHPA' where id=1; -update noar tt set v0='9EX878EK42G0S2' where id=1; -update noar ti set v0='9EX878EK42G0S2' where id=1; -update noar tt set b1='7U8XXAH8N8UT1UN7APLC703I8TFR2PCI' where id=1; -update noar ti set b1='7U8XXAH8N8UT1UN7APLC703I8TFR2PCI' where id=1; -update noar tt set v0='2A1P42HOH' where id=1; -update noar ti set v0='2A1P42HOH' where id=1; -update noar tt set b2='1ICRJXNNIIF8WO' where id=1; -update noar ti set b2='1ICRJXNNIIF8WO' where id=1; -update noar tt set v0='DERUJ7LLL5N9Q' where id=2; -update noar ti set v0='DERUJ7LLL5N9Q' where id=2; -update noar tt set b0='DQBPTL85J9MVFCV1YOH0U50' where id=2; -update noar ti set b0='DQBPTL85J9MVFCV1YOH0U50' where id=2; -update noar tt set v0='5HHCOO' where id=2; -update noar ti set v0='5HHCOO' where id=2; -update noar tt set b1='YKSRP8W60O9SINZ5B' where id=2; -update noar ti set b1='YKSRP8W60O9SINZ5B' where id=2; -update noar tt set v0='7' where id=2; -update noar ti set v0='7' where id=2; -update noar tt set b2='BVD7PQO8LSLXG' where id=2; -update noar ti set b2='BVD7PQO8LSLXG' where id=2; -update noar tt set v0='9WTOV65' where id=3; -update noar ti set v0='9WTOV65' where id=3; -update noar tt set b0='C1JI' where id=3; -update noar ti set b0='C1JI' where id=3; -update noar tt set v0='7X2P' where id=3; -update noar ti set v0='7X2P' where id=3; -update noar tt set b1='O5ISJ0UOTRD0V' where id=3; -update noar ti set b1='O5ISJ0UOTRD0V' where id=3; -update noar tt set v0='531HV67H0YIMIRZYN5' where id=3; -update noar ti set v0='531HV67H0YIMIRZYN5' where id=3; -update noar tt set b2='H8PWRDEIHS8MYWZKBUD3NH' where id=3; -update noar ti set b2='H8PWRDEIHS8MYWZKBUD3NH' where id=3; -update noar tt set v0='51FF6T23TR1NZVA7' where id=4; -update noar ti set v0='51FF6T23TR1NZVA7' where id=4; -update noar tt set b0='Y05VAK1CNJXHTL8EUZVVAVAZ' where id=4; -update noar ti set b0='Y05VAK1CNJXHTL8EUZVVAVAZ' where id=4; -update noar tt set v0='5V' where id=4; -update noar ti set v0='5V' where id=4; -update noar tt set b1='RDVU68Z6WB1YQWO59X4MVAMP4XPVHQ' where id=4; -update noar ti set b1='RDVU68Z6WB1YQWO59X4MVAMP4XPVHQ' where id=4; -update noar tt set v0='WFUL9R1UJ23M' where id=4; -update noar ti set v0='WFUL9R1UJ23M' where id=4; -update noar tt set b2='UM8J7FI35Z8Z8ZEP6MMEBTX1P4' where id=4; -update noar ti set b2='UM8J7FI35Z8Z8ZEP6MMEBTX1P4' where id=4; -update noar tt set v0='CK0TST4Z36BWT8' where id=5; -update noar ti set v0='CK0TST4Z36BWT8' where id=5; -update noar tt set b0='PF6D6FE9L1PVHL8X0KW17NJ' where id=5; -update noar ti set b0='PF6D6FE9L1PVHL8X0KW17NJ' where id=5; -update noar tt set v0='1DLCHRZ51YNTV74JQ1ZGHW6N' where id=5; -update noar ti set v0='1DLCHRZ51YNTV74JQ1ZGHW6N' where id=5; -update noar tt set b1='OR36QQU00VH1Y0ZOOWAQJ7S0IT8A2VH' where id=5; -update noar ti set b1='OR36QQU00VH1Y0ZOOWAQJ7S0IT8A2VH' where id=5; -update noar tt set v0='69RVKDO' where id=5; -update noar ti set v0='69RVKDO' where id=5; -update noar tt set b2='8XYM39IIRZAKHUG' where id=5; -update noar ti set b2='8XYM39IIRZAKHUG' where id=5; -update noar tt set v0='BVRXK5QXQ0EU9TR' where id=6; -update noar ti set v0='BVRXK5QXQ0EU9TR' where id=6; -update noar tt set b0='J5' where id=6; -update noar ti set b0='J5' where id=6; -update noar tt set v0='YLPJQQ8FZRKHQYQPWT3EU' where id=6; -update noar ti set v0='YLPJQQ8FZRKHQYQPWT3EU' where id=6; -update noar tt set b1='BPJWEXDNXEKUBDY7UFXF' where id=6; -update noar ti set b1='BPJWEXDNXEKUBDY7UFXF' where id=6; -update noar tt set v0='8BP9DNXDF37LP0BL3M8WJV5' where id=6; -update noar ti set v0='8BP9DNXDF37LP0BL3M8WJV5' where id=6; -update noar tt set b2='3CWOZ9C82GDMMIPW' where id=6; -update noar ti set b2='3CWOZ9C82GDMMIPW' where id=6; -update noar tt set v0='I9CV4IWYN9DIG23LIE' where id=7; -update noar ti set v0='I9CV4IWYN9DIG23LIE' where id=7; -update noar tt set b0='O' where id=7; -update noar ti set b0='O' where id=7; -update noar tt set v0='RO' where id=7; -update noar ti set v0='RO' where id=7; -update noar tt set b1='79W8Q835QV0LH6JTCLZ35PC3' where id=7; -update noar ti set b1='79W8Q835QV0LH6JTCLZ35PC3' where id=7; -update noar tt set v0='R33ZHBXIFOURPCGC' where id=7; -update noar ti set v0='R33ZHBXIFOURPCGC' where id=7; -update noar tt set b2='NDN1' where id=7; -update noar ti set b2='NDN1' where id=7; -update noar tt set v0='VC' where id=8; -update noar ti set v0='VC' where id=8; -update noar tt set b0='PMV3OUNE2KK9AK8' where id=8; -update noar ti set b0='PMV3OUNE2KK9AK8' where id=8; -update noar tt set v0='LXP9TPQ3TA0' where id=8; -update noar ti set v0='LXP9TPQ3TA0' where id=8; -update noar tt set b1='4VWDY9X6TTK6VBFP7YO71ZH' where id=8; -update noar ti set b1='4VWDY9X6TTK6VBFP7YO71ZH' where id=8; -update noar tt set v0='6FAHEBFDSBO4GOO0GNJ2P1GDBV1XA' where id=8; -update noar ti set v0='6FAHEBFDSBO4GOO0GNJ2P1GDBV1XA' where id=8; -update noar tt set b2='710X5MULFOIEIJ4QC6KLSRMVBSIPWN' where id=8; -update noar ti set b2='710X5MULFOIEIJ4QC6KLSRMVBSIPWN' where id=8; -update noar tt set v0='6TQJUYVPYI' where id=9; -update noar ti set v0='6TQJUYVPYI' where id=9; -update noar tt set b0='25TEDPJVYDZOHRBFN9LSMW4MV6EJ' where id=9; -update noar ti set b0='25TEDPJVYDZOHRBFN9LSMW4MV6EJ' where id=9; -update noar tt set v0='Y' where id=9; -update noar ti set v0='Y' where id=9; -update noar tt set b1='WO840FIQW0Z8NXIOGV3JCN2' where id=9; -update noar ti set b1='WO840FIQW0Z8NXIOGV3JCN2' where id=9; -update noar tt set v0='5376WRVQ3HNS2B9HAH' where id=9; -update noar ti set v0='5376WRVQ3HNS2B9HAH' where id=9; -update noar tt set b2='XUAYWQ6R525' where id=9; -update noar ti set b2='XUAYWQ6R525' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - v0 varchar(256) not null, - b0 blob not null, - b1 blob not null, - b2 mediumblob not null -) engine=tokudb; -insert into tt values (1,'','','',''); -insert into tt values (2,'','','',''); -insert into tt values (3,'','','',''); -insert into tt values (4,'','','',''); -insert into tt values (5,'','','',''); -insert into tt values (6,'','','',''); -insert into tt values (7,'','','',''); -insert into tt values (8,'','','',''); -insert into tt values (9,'','','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='0YVLXIS380VWLYZ3T' where id=1; -update noar ti set v0='0YVLXIS380VWLYZ3T' where id=1; -update noar tt set b0='Z' where id=1; -update noar ti set b0='Z' where id=1; -update noar tt set v0='5GX044EA36AP1EZU' where id=1; -update noar ti set v0='5GX044EA36AP1EZU' where id=1; -update noar tt set b1='L391466IPPDH72DYJAFPPF49T3YZ3' where id=1; -update noar ti set b1='L391466IPPDH72DYJAFPPF49T3YZ3' where id=1; -update noar tt set v0='YKWPHWKG5' where id=1; -update noar ti set v0='YKWPHWKG5' where id=1; -update noar tt set b2='5KT9JT4VB1DXU27BBVN9EGNPDJ3UL4' where id=1; -update noar ti set b2='5KT9JT4VB1DXU27BBVN9EGNPDJ3UL4' where id=1; -update noar tt set v0='R88NYQ5M63YZ0DK35M' where id=2; -update noar ti set v0='R88NYQ5M63YZ0DK35M' where id=2; -update noar tt set b0='KV0XPQS8E9LGFF1T5Q0U' where id=2; -update noar ti set b0='KV0XPQS8E9LGFF1T5Q0U' where id=2; -update noar tt set v0='PXXRJOQA1OISFZA7W254BVD16' where id=2; -update noar ti set v0='PXXRJOQA1OISFZA7W254BVD16' where id=2; -update noar tt set b1='72USMKIQIQEYL2X50OJZBLQL' where id=2; -update noar ti set b1='72USMKIQIQEYL2X50OJZBLQL' where id=2; -update noar tt set v0='AJR5DLB8AWOO209T' where id=2; -update noar ti set v0='AJR5DLB8AWOO209T' where id=2; -update noar tt set b2='A6HHP' where id=2; -update noar ti set b2='A6HHP' where id=2; -update noar tt set v0='K9DCFOA90R90K59' where id=3; -update noar ti set v0='K9DCFOA90R90K59' where id=3; -update noar tt set b0='8EK66P8JVUD90XPX88EC4NJPSM93H' where id=3; -update noar ti set b0='8EK66P8JVUD90XPX88EC4NJPSM93H' where id=3; -update noar tt set v0='P3IRFC0Z' where id=3; -update noar ti set v0='P3IRFC0Z' where id=3; -update noar tt set b1='Z9YAVRQIW9KT' where id=3; -update noar ti set b1='Z9YAVRQIW9KT' where id=3; -update noar tt set v0='P7MVISGR64LL' where id=3; -update noar ti set v0='P7MVISGR64LL' where id=3; -update noar tt set b2='DVJYV4C' where id=3; -update noar ti set b2='DVJYV4C' where id=3; -update noar tt set v0='VG0AOVVTC56CIU659DDG01DU8' where id=4; -update noar ti set v0='VG0AOVVTC56CIU659DDG01DU8' where id=4; -update noar tt set b0='DCDOLP1884XG7JUVAI1OIMU97KYPGKTU' where id=4; -update noar ti set b0='DCDOLP1884XG7JUVAI1OIMU97KYPGKTU' where id=4; -update noar tt set v0='LKAO30TFXYD2AU' where id=4; -update noar ti set v0='LKAO30TFXYD2AU' where id=4; -update noar tt set b1='PJ7YED5XOR31UBSUOFQ7X0VN977DP' where id=4; -update noar ti set b1='PJ7YED5XOR31UBSUOFQ7X0VN977DP' where id=4; -update noar tt set v0='HG0BVR' where id=4; -update noar ti set v0='HG0BVR' where id=4; -update noar tt set b2='1VR7KMWPMCBBJQMQZS' where id=4; -update noar ti set b2='1VR7KMWPMCBBJQMQZS' where id=4; -update noar tt set v0='8AFIOP9ZMAF94QE5' where id=5; -update noar ti set v0='8AFIOP9ZMAF94QE5' where id=5; -update noar tt set b0='FKHBY19LJYSH9ZQIZT01AK916AO426QE' where id=5; -update noar ti set b0='FKHBY19LJYSH9ZQIZT01AK916AO426QE' where id=5; -update noar tt set v0='MXOCJC8NUWEY' where id=5; -update noar ti set v0='MXOCJC8NUWEY' where id=5; -update noar tt set b1='EJGJ5BND76L8JU37' where id=5; -update noar ti set b1='EJGJ5BND76L8JU37' where id=5; -update noar tt set v0='AY3MJG4KFTII3KXHY68XKG43NB5YF' where id=5; -update noar ti set v0='AY3MJG4KFTII3KXHY68XKG43NB5YF' where id=5; -update noar tt set b2='52KCUMMX2YVZ2NE' where id=5; -update noar ti set b2='52KCUMMX2YVZ2NE' where id=5; -update noar tt set v0='5X0' where id=6; -update noar ti set v0='5X0' where id=6; -update noar tt set b0='K' where id=6; -update noar ti set b0='K' where id=6; -update noar tt set v0='2Q86CNGW1DKTBP3T6GQULKUPAF' where id=6; -update noar ti set v0='2Q86CNGW1DKTBP3T6GQULKUPAF' where id=6; -update noar tt set b1='HAY' where id=6; -update noar ti set b1='HAY' where id=6; -update noar tt set v0='CQKFFKVR31TMN7WMVZL' where id=6; -update noar ti set v0='CQKFFKVR31TMN7WMVZL' where id=6; -update noar tt set b2='JZTQMS2' where id=6; -update noar ti set b2='JZTQMS2' where id=6; -update noar tt set v0='P9AM8MJIHX2DC6PXDQ' where id=7; -update noar ti set v0='P9AM8MJIHX2DC6PXDQ' where id=7; -update noar tt set b0='VDZK2CT6F08RCBW8G' where id=7; -update noar ti set b0='VDZK2CT6F08RCBW8G' where id=7; -update noar tt set v0='P6V0CVPR' where id=7; -update noar ti set v0='P6V0CVPR' where id=7; -update noar tt set b1='YQD762IVWTTZMJYIIQ19963' where id=7; -update noar ti set b1='YQD762IVWTTZMJYIIQ19963' where id=7; -update noar tt set v0='AP' where id=7; -update noar ti set v0='AP' where id=7; -update noar tt set b2='OV91JL626479BQB40GYOOYX' where id=7; -update noar ti set b2='OV91JL626479BQB40GYOOYX' where id=7; -update noar tt set v0='3L1Z3P76WZ3JSTTRFGK6Z' where id=8; -update noar ti set v0='3L1Z3P76WZ3JSTTRFGK6Z' where id=8; -update noar tt set b0='X3BTIIWS1MRWA1NZHS' where id=8; -update noar ti set b0='X3BTIIWS1MRWA1NZHS' where id=8; -update noar tt set v0='9NBFK5DWNB2V0W37L5LCRQH' where id=8; -update noar ti set v0='9NBFK5DWNB2V0W37L5LCRQH' where id=8; -update noar tt set b1='89T8PW6QPWU8M' where id=8; -update noar ti set b1='89T8PW6QPWU8M' where id=8; -update noar tt set v0='0ZZ7ZDDX5JEEADT0HZPZ270NPD1' where id=8; -update noar ti set v0='0ZZ7ZDDX5JEEADT0HZPZ270NPD1' where id=8; -update noar tt set b2='D3LGKX9V70TD509EBF5DM1P13FEJ' where id=8; -update noar ti set b2='D3LGKX9V70TD509EBF5DM1P13FEJ' where id=8; -update noar tt set v0='5O2EIBBM' where id=9; -update noar ti set v0='5O2EIBBM' where id=9; -update noar tt set b0='B994FK071KTRW' where id=9; -update noar ti set b0='B994FK071KTRW' where id=9; -update noar tt set v0='YIWC9RVL6KEBIBL' where id=9; -update noar ti set v0='YIWC9RVL6KEBIBL' where id=9; -update noar tt set b1='W' where id=9; -update noar ti set b1='W' where id=9; -update noar tt set v0='R5PT' where id=9; -update noar ti set v0='R5PT' where id=9; -update noar tt set b2='R52' where id=9; -update noar ti set b2='R52' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - v0 varchar(32) null, - b0 blob null, - b1 blob null, - b2 longblob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='DHSEFFDVR85WJBP7DSRB8Q2KX9K' where id=1; -update noar ti set v0='DHSEFFDVR85WJBP7DSRB8Q2KX9K' where id=1; -update noar tt set b0='Y8KALR7YQ7IS' where id=1; -update noar ti set b0='Y8KALR7YQ7IS' where id=1; -update noar tt set v0='PSH1ZD9A2K4O3ZQKNX7ZBNZC0' where id=1; -update noar ti set v0='PSH1ZD9A2K4O3ZQKNX7ZBNZC0' where id=1; -update noar tt set b1='VKXS5S' where id=1; -update noar ti set b1='VKXS5S' where id=1; -update noar tt set v0='SQ' where id=1; -update noar ti set v0='SQ' where id=1; -update noar tt set b2='SB3Y' where id=1; -update noar ti set b2='SB3Y' where id=1; -update noar tt set v0='2EAJ9B8RMZG9BBG850OQDGLP3E' where id=2; -update noar ti set v0='2EAJ9B8RMZG9BBG850OQDGLP3E' where id=2; -update noar tt set b0='3ZOTR78N9AB97ZZ3B6N9EIOX25DSHJD' where id=2; -update noar ti set b0='3ZOTR78N9AB97ZZ3B6N9EIOX25DSHJD' where id=2; -update noar tt set v0='N55EX6288ADTC' where id=2; -update noar ti set v0='N55EX6288ADTC' where id=2; -update noar tt set b1='XEH6BK5O9C00BWUQF4' where id=2; -update noar ti set b1='XEH6BK5O9C00BWUQF4' where id=2; -update noar tt set v0='QIZEKG5ML1EMXUDTGCBQ8L' where id=2; -update noar ti set v0='QIZEKG5ML1EMXUDTGCBQ8L' where id=2; -update noar tt set b2='47K9ZIQEYU5ZKIR' where id=2; -update noar ti set b2='47K9ZIQEYU5ZKIR' where id=2; -update noar tt set v0='OPZ2QZK5AGAZ7SO9QLTGX0YWYD7' where id=3; -update noar ti set v0='OPZ2QZK5AGAZ7SO9QLTGX0YWYD7' where id=3; -update noar tt set b0='X8SODI4' where id=3; -update noar ti set b0='X8SODI4' where id=3; -update noar tt set v0='IH' where id=3; -update noar ti set v0='IH' where id=3; -update noar tt set b1='A84SWZ' where id=3; -update noar ti set b1='A84SWZ' where id=3; -update noar tt set v0='5MSYZ4U9ROC7Q38R5NBSSASCOUAWGZ' where id=3; -update noar ti set v0='5MSYZ4U9ROC7Q38R5NBSSASCOUAWGZ' where id=3; -update noar tt set b2='W67X0PC' where id=3; -update noar ti set b2='W67X0PC' where id=3; -update noar tt set v0='7AKVP' where id=4; -update noar ti set v0='7AKVP' where id=4; -update noar tt set b0='HZ2QD1I0W2O' where id=4; -update noar ti set b0='HZ2QD1I0W2O' where id=4; -update noar tt set v0='Q3EHWNVO8J3PDZP8QM3DAWOPU' where id=4; -update noar ti set v0='Q3EHWNVO8J3PDZP8QM3DAWOPU' where id=4; -update noar tt set b1='6WL6EM8UOKTYCKXRO9R4B0CG4W65A8I' where id=4; -update noar ti set b1='6WL6EM8UOKTYCKXRO9R4B0CG4W65A8I' where id=4; -update noar tt set v0='NA5ZC4H2JNDSXOM1AO2V9UPC' where id=4; -update noar ti set v0='NA5ZC4H2JNDSXOM1AO2V9UPC' where id=4; -update noar tt set b2='X0DDD' where id=4; -update noar ti set b2='X0DDD' where id=4; -update noar tt set v0='EVZ4AC' where id=5; -update noar ti set v0='EVZ4AC' where id=5; -update noar tt set b0='QN36IYT17QH5XMO3VXWNWK18' where id=5; -update noar ti set b0='QN36IYT17QH5XMO3VXWNWK18' where id=5; -update noar tt set v0='N39R3U6I7QAHR0QEJO697P' where id=5; -update noar ti set v0='N39R3U6I7QAHR0QEJO697P' where id=5; -update noar tt set b1='JYCB30FB3MLTSX3GTVJN6GINTD3M4S' where id=5; -update noar ti set b1='JYCB30FB3MLTSX3GTVJN6GINTD3M4S' where id=5; -update noar tt set v0='S579UFD1V2APOYNMKWRIW42OWYVDZSIT' where id=5; -update noar ti set v0='S579UFD1V2APOYNMKWRIW42OWYVDZSIT' where id=5; -update noar tt set b2='C1BNPBM' where id=5; -update noar ti set b2='C1BNPBM' where id=5; -update noar tt set v0='GPA' where id=6; -update noar ti set v0='GPA' where id=6; -update noar tt set b0='MZKBTND6UZN7ITHCZFVB4JLR2JP' where id=6; -update noar ti set b0='MZKBTND6UZN7ITHCZFVB4JLR2JP' where id=6; -update noar tt set v0='2751UQC7IYJSACH6GYZ33BOOJOYJG46A' where id=6; -update noar ti set v0='2751UQC7IYJSACH6GYZ33BOOJOYJG46A' where id=6; -update noar tt set b1='HSW6NPWYVGKNLURML860Z' where id=6; -update noar ti set b1='HSW6NPWYVGKNLURML860Z' where id=6; -update noar tt set v0='91OW6FNV' where id=6; -update noar ti set v0='91OW6FNV' where id=6; -update noar tt set b2='1JJO06ZD8D36AL6E13DUFCSPAH2A4V' where id=6; -update noar ti set b2='1JJO06ZD8D36AL6E13DUFCSPAH2A4V' where id=6; -update noar tt set v0='LHSPLQILJ7RFZ' where id=7; -update noar ti set v0='LHSPLQILJ7RFZ' where id=7; -update noar tt set b0='9BY5J41KU37CB09' where id=7; -update noar ti set b0='9BY5J41KU37CB09' where id=7; -update noar tt set v0='VGW5TLVO9AZL1LKCIWS6JNT5IY0JHI' where id=7; -update noar ti set v0='VGW5TLVO9AZL1LKCIWS6JNT5IY0JHI' where id=7; -update noar tt set b1='L8VST77SA70YPOPOGHQF2F0QC' where id=7; -update noar ti set b1='L8VST77SA70YPOPOGHQF2F0QC' where id=7; -update noar tt set v0='A4PDPB2AQEPS8NF6VBZZMH6O' where id=7; -update noar ti set v0='A4PDPB2AQEPS8NF6VBZZMH6O' where id=7; -update noar tt set b2='4N38USQQVQWW6FJB038GPE9R' where id=7; -update noar ti set b2='4N38USQQVQWW6FJB038GPE9R' where id=7; -update noar tt set v0='NCZBTSFGIA4CILGO' where id=8; -update noar ti set v0='NCZBTSFGIA4CILGO' where id=8; -update noar tt set b0='6ECHZ9JQLMBP0Q07Z6TGTP1G9Q79' where id=8; -update noar ti set b0='6ECHZ9JQLMBP0Q07Z6TGTP1G9Q79' where id=8; -update noar tt set v0='XKPRZVNHAPCE73J2GLXQZ7WH219H' where id=8; -update noar ti set v0='XKPRZVNHAPCE73J2GLXQZ7WH219H' where id=8; -update noar tt set b1='2QPRM9AZ5ZEPQ7QQA' where id=8; -update noar ti set b1='2QPRM9AZ5ZEPQ7QQA' where id=8; -update noar tt set v0='SGEO0WZIE53I2KAW68OHDYL' where id=8; -update noar ti set v0='SGEO0WZIE53I2KAW68OHDYL' where id=8; -update noar tt set b2='Y' where id=8; -update noar ti set b2='Y' where id=8; -update noar tt set v0='IFCABDOXG8NQMJQ0A503K' where id=9; -update noar ti set v0='IFCABDOXG8NQMJQ0A503K' where id=9; -update noar tt set b0='ASOD2014280C95II5KHU8PHJYUU77J3' where id=9; -update noar ti set b0='ASOD2014280C95II5KHU8PHJYUU77J3' where id=9; -update noar tt set v0='NV0' where id=9; -update noar ti set v0='NV0' where id=9; -update noar tt set b1='EVQQG' where id=9; -update noar ti set b1='EVQQG' where id=9; -update noar tt set v0='NGWDUBAYT8BR98GYWTRS0AT5Y004ZNA' where id=9; -update noar ti set v0='NGWDUBAYT8BR98GYWTRS0AT5Y004ZNA' where id=9; -update noar tt set b2='TVER2ZAQRH45' where id=9; -update noar ti set b2='TVER2ZAQRH45' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - v0 varchar(256) null, - b0 blob null, - b1 blob null, - b2 longblob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='L2ZPKEQKNXWN2YYU49MGO35CPABMDJK' where id=1; -update noar ti set v0='L2ZPKEQKNXWN2YYU49MGO35CPABMDJK' where id=1; -update noar tt set b0='9SJ6M' where id=1; -update noar ti set b0='9SJ6M' where id=1; -update noar tt set v0='GC' where id=1; -update noar ti set v0='GC' where id=1; -update noar tt set b1='090AVDSF1YXO' where id=1; -update noar ti set b1='090AVDSF1YXO' where id=1; -update noar tt set v0='ZY9HND214J94ADANQ7WPVCTLELPU9N' where id=1; -update noar ti set v0='ZY9HND214J94ADANQ7WPVCTLELPU9N' where id=1; -update noar tt set b2='KARZJ0N57U1K4YWBSERGXFUFU9OO' where id=1; -update noar ti set b2='KARZJ0N57U1K4YWBSERGXFUFU9OO' where id=1; -update noar tt set v0='8Q0D6Q866FAOY1LEJMCFEH584PY7L' where id=2; -update noar ti set v0='8Q0D6Q866FAOY1LEJMCFEH584PY7L' where id=2; -update noar tt set b0='OF4350YI5CP49D40Q7APJTVO4QJT' where id=2; -update noar ti set b0='OF4350YI5CP49D40Q7APJTVO4QJT' where id=2; -update noar tt set v0='CUGBMN4XM43L' where id=2; -update noar ti set v0='CUGBMN4XM43L' where id=2; -update noar tt set b1='RLLJXFN1XAYJ69VX8ATRWOUQ5SMC' where id=2; -update noar ti set b1='RLLJXFN1XAYJ69VX8ATRWOUQ5SMC' where id=2; -update noar tt set v0='PGPROYIZFLKE9811J0J1J0BVLGVTTI2' where id=2; -update noar ti set v0='PGPROYIZFLKE9811J0J1J0BVLGVTTI2' where id=2; -update noar tt set b2='RLDWAFS8BDVYBC8MH3G3JBXBB6A' where id=2; -update noar ti set b2='RLDWAFS8BDVYBC8MH3G3JBXBB6A' where id=2; -update noar tt set v0='DIX3L3TSFV925' where id=3; -update noar ti set v0='DIX3L3TSFV925' where id=3; -update noar tt set b0='0ZF6GGVPU' where id=3; -update noar ti set b0='0ZF6GGVPU' where id=3; -update noar tt set v0='3ZNO90IM46DTX' where id=3; -update noar ti set v0='3ZNO90IM46DTX' where id=3; -update noar tt set b1='QA' where id=3; -update noar ti set b1='QA' where id=3; -update noar tt set v0='FMWICQ3XX70DQ6P7BMX4292' where id=3; -update noar ti set v0='FMWICQ3XX70DQ6P7BMX4292' where id=3; -update noar tt set b2='KDHPE430N34S' where id=3; -update noar ti set b2='KDHPE430N34S' where id=3; -update noar tt set v0='R' where id=4; -update noar ti set v0='R' where id=4; -update noar tt set b0='3E6BB41RH22' where id=4; -update noar ti set b0='3E6BB41RH22' where id=4; -update noar tt set v0='6HSMF2ZYUYT7' where id=4; -update noar ti set v0='6HSMF2ZYUYT7' where id=4; -update noar tt set b1='VNUXLSWLMXFSOO9NUWR8PYZQD8I31ID' where id=4; -update noar ti set b1='VNUXLSWLMXFSOO9NUWR8PYZQD8I31ID' where id=4; -update noar tt set v0='AGEEPPRHFMIWN4B5ZZL2' where id=4; -update noar ti set v0='AGEEPPRHFMIWN4B5ZZL2' where id=4; -update noar tt set b2='9E31S6R' where id=4; -update noar ti set b2='9E31S6R' where id=4; -update noar tt set v0='K9NSDLS2COGGZ' where id=5; -update noar ti set v0='K9NSDLS2COGGZ' where id=5; -update noar tt set b0='RM3E04A92DBAO' where id=5; -update noar ti set b0='RM3E04A92DBAO' where id=5; -update noar tt set v0='6176Y9C71JPWN0KX9DE312XVB9' where id=5; -update noar ti set v0='6176Y9C71JPWN0KX9DE312XVB9' where id=5; -update noar tt set b1='LI2CEA50ALSLIPEPR64KST5C' where id=5; -update noar ti set b1='LI2CEA50ALSLIPEPR64KST5C' where id=5; -update noar tt set v0='C1S' where id=5; -update noar ti set v0='C1S' where id=5; -update noar tt set b2='CXY5V1CAD' where id=5; -update noar ti set b2='CXY5V1CAD' where id=5; -update noar tt set v0='ULF80LFO1YGYY0MTG3X5GCRF6MFT' where id=6; -update noar ti set v0='ULF80LFO1YGYY0MTG3X5GCRF6MFT' where id=6; -update noar tt set b0='X2V' where id=6; -update noar ti set b0='X2V' where id=6; -update noar tt set v0='02L92JX' where id=6; -update noar ti set v0='02L92JX' where id=6; -update noar tt set b1='6P028OR1C6VDFI8IHI1FTJXUADSH' where id=6; -update noar ti set b1='6P028OR1C6VDFI8IHI1FTJXUADSH' where id=6; -update noar tt set v0='2AKADNLLS3RV2' where id=6; -update noar ti set v0='2AKADNLLS3RV2' where id=6; -update noar tt set b2='WEL7Y1OFVVIVCTBYUU9ZK4WM' where id=6; -update noar ti set b2='WEL7Y1OFVVIVCTBYUU9ZK4WM' where id=6; -update noar tt set v0='W7BJFKDA63SGDAYH4X3U8L8CZ' where id=7; -update noar ti set v0='W7BJFKDA63SGDAYH4X3U8L8CZ' where id=7; -update noar tt set b0='FKIEVDENRSI9Q' where id=7; -update noar ti set b0='FKIEVDENRSI9Q' where id=7; -update noar tt set v0='2ZQ' where id=7; -update noar ti set v0='2ZQ' where id=7; -update noar tt set b1='2J078YEGG264HAC258XGVW5Q' where id=7; -update noar ti set b1='2J078YEGG264HAC258XGVW5Q' where id=7; -update noar tt set v0='MJ0HJWGLWIQX3T8VJ5UQWXFDB' where id=7; -update noar ti set v0='MJ0HJWGLWIQX3T8VJ5UQWXFDB' where id=7; -update noar tt set b2='MREZSUJ9TLYQMOV9CAVB1PMXPL' where id=7; -update noar ti set b2='MREZSUJ9TLYQMOV9CAVB1PMXPL' where id=7; -update noar tt set v0='BVZU7L' where id=8; -update noar ti set v0='BVZU7L' where id=8; -update noar tt set b0='MAADW2QEH0947XESB66WA86S' where id=8; -update noar ti set b0='MAADW2QEH0947XESB66WA86S' where id=8; -update noar tt set v0='4201B0DPODXITSFMM7JM' where id=8; -update noar ti set v0='4201B0DPODXITSFMM7JM' where id=8; -update noar tt set b1='2EGMSB4FFMCP4SEG3Q52OAJ' where id=8; -update noar ti set b1='2EGMSB4FFMCP4SEG3Q52OAJ' where id=8; -update noar tt set v0='ZP0FLZ0BOKO2UJYM10KZ2UAGEAA' where id=8; -update noar ti set v0='ZP0FLZ0BOKO2UJYM10KZ2UAGEAA' where id=8; -update noar tt set b2='C' where id=8; -update noar ti set b2='C' where id=8; -update noar tt set v0='XE97FCQRRW' where id=9; -update noar ti set v0='XE97FCQRRW' where id=9; -update noar tt set b0='5CFPJ50NIUK1FTW' where id=9; -update noar ti set b0='5CFPJ50NIUK1FTW' where id=9; -update noar tt set v0='P2S6GQLZWYPGZZPXHOKO4SW1DQJ5MQ' where id=9; -update noar ti set v0='P2S6GQLZWYPGZZPXHOKO4SW1DQJ5MQ' where id=9; -update noar tt set b1='P27ISRBKTI4IEYPR3ECA2CXGCT' where id=9; -update noar ti set b1='P27ISRBKTI4IEYPR3ECA2CXGCT' where id=9; -update noar tt set v0='946' where id=9; -update noar ti set v0='946' where id=9; -update noar tt set b2='R6D7AV01Z2X26Y5IH0IR1I4M40' where id=9; -update noar ti set b2='R6D7AV01Z2X26Y5IH0IR1I4M40' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - v0 varchar(32) not null, - b0 blob not null, - b1 blob not null, - b2 longblob not null -) engine=tokudb; -insert into tt values (1,'','','',''); -insert into tt values (2,'','','',''); -insert into tt values (3,'','','',''); -insert into tt values (4,'','','',''); -insert into tt values (5,'','','',''); -insert into tt values (6,'','','',''); -insert into tt values (7,'','','',''); -insert into tt values (8,'','','',''); -insert into tt values (9,'','','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='F90EPQQQZ69622JU5K' where id=1; -update noar ti set v0='F90EPQQQZ69622JU5K' where id=1; -update noar tt set b0='ALYESR1' where id=1; -update noar ti set b0='ALYESR1' where id=1; -update noar tt set v0='4OOS0Q' where id=1; -update noar ti set v0='4OOS0Q' where id=1; -update noar tt set b1='188K91WKCXVDXIXZH' where id=1; -update noar ti set b1='188K91WKCXVDXIXZH' where id=1; -update noar tt set v0='R3V' where id=1; -update noar ti set v0='R3V' where id=1; -update noar tt set b2='7IU' where id=1; -update noar ti set b2='7IU' where id=1; -update noar tt set v0='10Z1B8CEAM6A69CXYT5BL2PW990ZC4G' where id=2; -update noar ti set v0='10Z1B8CEAM6A69CXYT5BL2PW990ZC4G' where id=2; -update noar tt set b0='1V5TVQGPZASY657S6' where id=2; -update noar ti set b0='1V5TVQGPZASY657S6' where id=2; -update noar tt set v0='ZSHAT9M' where id=2; -update noar ti set v0='ZSHAT9M' where id=2; -update noar tt set b1='EAE6SVCWIOJT8C8U43X2DT6V' where id=2; -update noar ti set b1='EAE6SVCWIOJT8C8U43X2DT6V' where id=2; -update noar tt set v0='YPR6RR0CA' where id=2; -update noar ti set v0='YPR6RR0CA' where id=2; -update noar tt set b2='WWKE17RDEHPNUDPGV8R6J' where id=2; -update noar ti set b2='WWKE17RDEHPNUDPGV8R6J' where id=2; -update noar tt set v0='VQ8672N6Q2E6K5P0Z38KDPO3K' where id=3; -update noar ti set v0='VQ8672N6Q2E6K5P0Z38KDPO3K' where id=3; -update noar tt set b0='UZN8NJ' where id=3; -update noar ti set b0='UZN8NJ' where id=3; -update noar tt set v0='AD7GISADA0HDWNMY09CC517YT0KYV' where id=3; -update noar ti set v0='AD7GISADA0HDWNMY09CC517YT0KYV' where id=3; -update noar tt set b1='I6MVIOGHRIJGK' where id=3; -update noar ti set b1='I6MVIOGHRIJGK' where id=3; -update noar tt set v0='T4QZHBCWUMLGGJ42VK3' where id=3; -update noar ti set v0='T4QZHBCWUMLGGJ42VK3' where id=3; -update noar tt set b2='RYCVEA2MWSD3V' where id=3; -update noar ti set b2='RYCVEA2MWSD3V' where id=3; -update noar tt set v0='CGV7BB3KDF9XN3AEHCHF18UEDZAP' where id=4; -update noar ti set v0='CGV7BB3KDF9XN3AEHCHF18UEDZAP' where id=4; -update noar tt set b0='ZP69NTPUU6XO' where id=4; -update noar ti set b0='ZP69NTPUU6XO' where id=4; -update noar tt set v0='R36VIVOPJI9DJVL15SN' where id=4; -update noar ti set v0='R36VIVOPJI9DJVL15SN' where id=4; -update noar tt set b1='W28XU1ETMUIZ0A8292PN6OIZKKC5EZL6' where id=4; -update noar ti set b1='W28XU1ETMUIZ0A8292PN6OIZKKC5EZL6' where id=4; -update noar tt set v0='J8' where id=4; -update noar ti set v0='J8' where id=4; -update noar tt set b2='PLZZWYV8525FIVKX0KZ9048DP' where id=4; -update noar ti set b2='PLZZWYV8525FIVKX0KZ9048DP' where id=4; -update noar tt set v0='VBBWU4PL9BRV5A8PA990K6V3HGITB5' where id=5; -update noar ti set v0='VBBWU4PL9BRV5A8PA990K6V3HGITB5' where id=5; -update noar tt set b0='2MQSNZSILV4NPB1Z' where id=5; -update noar ti set b0='2MQSNZSILV4NPB1Z' where id=5; -update noar tt set v0='S89RMBJJYKDLEO8OWA' where id=5; -update noar ti set v0='S89RMBJJYKDLEO8OWA' where id=5; -update noar tt set b1='C5031XJOHTYMFAJXITS3VHNXLA' where id=5; -update noar ti set b1='C5031XJOHTYMFAJXITS3VHNXLA' where id=5; -update noar tt set v0='6VVIYV8FE27V96TRLKMNQHXIPRNWF7' where id=5; -update noar ti set v0='6VVIYV8FE27V96TRLKMNQHXIPRNWF7' where id=5; -update noar tt set b2='VSCDKI4MSMCUMZSCL6WBRPWCTMK337' where id=5; -update noar ti set b2='VSCDKI4MSMCUMZSCL6WBRPWCTMK337' where id=5; -update noar tt set v0='54V' where id=6; -update noar ti set v0='54V' where id=6; -update noar tt set b0='82QBXJKUKKR' where id=6; -update noar ti set b0='82QBXJKUKKR' where id=6; -update noar tt set v0='T84S8S2REYUQK' where id=6; -update noar ti set v0='T84S8S2REYUQK' where id=6; -update noar tt set b1='YCJAMV8M8' where id=6; -update noar ti set b1='YCJAMV8M8' where id=6; -update noar tt set v0='AQM9L3GW44L16QUMUZ8DF0HB' where id=6; -update noar ti set v0='AQM9L3GW44L16QUMUZ8DF0HB' where id=6; -update noar tt set b2='B96PEPUPI3MR1M7SMC1VPHSSTF4' where id=6; -update noar ti set b2='B96PEPUPI3MR1M7SMC1VPHSSTF4' where id=6; -update noar tt set v0='3TUO8C' where id=7; -update noar ti set v0='3TUO8C' where id=7; -update noar tt set b0='NZSR' where id=7; -update noar ti set b0='NZSR' where id=7; -update noar tt set v0='P7RJLZFVFDSJ7TJ01HN6WDI' where id=7; -update noar ti set v0='P7RJLZFVFDSJ7TJ01HN6WDI' where id=7; -update noar tt set b1='KYQGSX5XXV2IAOXMNM5CA4S' where id=7; -update noar ti set b1='KYQGSX5XXV2IAOXMNM5CA4S' where id=7; -update noar tt set v0='TS7E29UW' where id=7; -update noar ti set v0='TS7E29UW' where id=7; -update noar tt set b2='ZJVN43FK4GY9BMH' where id=7; -update noar ti set b2='ZJVN43FK4GY9BMH' where id=7; -update noar tt set v0='QDNOCG9I9MQFJ3AUKL5E7QV6Z' where id=8; -update noar ti set v0='QDNOCG9I9MQFJ3AUKL5E7QV6Z' where id=8; -update noar tt set b0='QQD38ZSIIKI54E5D6FYQ1M2MK' where id=8; -update noar ti set b0='QQD38ZSIIKI54E5D6FYQ1M2MK' where id=8; -update noar tt set v0='ERXI0FS4DT' where id=8; -update noar ti set v0='ERXI0FS4DT' where id=8; -update noar tt set b1='YIZZMA7A1GMT78S3DTOAFW' where id=8; -update noar ti set b1='YIZZMA7A1GMT78S3DTOAFW' where id=8; -update noar tt set v0='TU8BX9WGFPGD8DLSU1ZPUP2C9' where id=8; -update noar ti set v0='TU8BX9WGFPGD8DLSU1ZPUP2C9' where id=8; -update noar tt set b2='76ZM51PQ0WQQO0' where id=8; -update noar ti set b2='76ZM51PQ0WQQO0' where id=8; -update noar tt set v0='UHVZNM72K1PYH3KPOOU4BDQOG68F' where id=9; -update noar ti set v0='UHVZNM72K1PYH3KPOOU4BDQOG68F' where id=9; -update noar tt set b0='Q6HVTBCDE4OW3JUIXFZ4LHGR' where id=9; -update noar ti set b0='Q6HVTBCDE4OW3JUIXFZ4LHGR' where id=9; -update noar tt set v0='N344L1Z2ZLE60WG4KEINUYV' where id=9; -update noar ti set v0='N344L1Z2ZLE60WG4KEINUYV' where id=9; -update noar tt set b1='0' where id=9; -update noar ti set b1='0' where id=9; -update noar tt set v0='PKNF5CZGEO3GB6UW0MTH2ATDJF1J' where id=9; -update noar ti set v0='PKNF5CZGEO3GB6UW0MTH2ATDJF1J' where id=9; -update noar tt set b2='US98NPJZDKNEH2BS95J9T4ZNOH2O5O3' where id=9; -update noar ti set b2='US98NPJZDKNEH2BS95J9T4ZNOH2O5O3' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - v0 varchar(256) not null, - b0 blob not null, - b1 blob not null, - b2 longblob not null -) engine=tokudb; -insert into tt values (1,'','','',''); -insert into tt values (2,'','','',''); -insert into tt values (3,'','','',''); -insert into tt values (4,'','','',''); -insert into tt values (5,'','','',''); -insert into tt values (6,'','','',''); -insert into tt values (7,'','','',''); -insert into tt values (8,'','','',''); -insert into tt values (9,'','','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='PIK848930V5K7JTC0GJVJ3O4AMC' where id=1; -update noar ti set v0='PIK848930V5K7JTC0GJVJ3O4AMC' where id=1; -update noar tt set b0='DKZ6ZNLD4' where id=1; -update noar ti set b0='DKZ6ZNLD4' where id=1; -update noar tt set v0='NXSQT' where id=1; -update noar ti set v0='NXSQT' where id=1; -update noar tt set b1='2ORHQ83GDJNQ' where id=1; -update noar ti set b1='2ORHQ83GDJNQ' where id=1; -update noar tt set v0='CGLKOQ7GRQQLVI102R' where id=1; -update noar ti set v0='CGLKOQ7GRQQLVI102R' where id=1; -update noar tt set b2='L7VA' where id=1; -update noar ti set b2='L7VA' where id=1; -update noar tt set v0='L664J9DEOPHH93N8GMPXCKZH6H' where id=2; -update noar ti set v0='L664J9DEOPHH93N8GMPXCKZH6H' where id=2; -update noar tt set b0='V3X8JKCJ3UPIFJC3UOZUO443PADM0' where id=2; -update noar ti set b0='V3X8JKCJ3UPIFJC3UOZUO443PADM0' where id=2; -update noar tt set v0='SWGC0IKH8RUCLA5R32JTT5' where id=2; -update noar ti set v0='SWGC0IKH8RUCLA5R32JTT5' where id=2; -update noar tt set b1='5I175TSKW' where id=2; -update noar ti set b1='5I175TSKW' where id=2; -update noar tt set v0='65E2SPUIMZES192Z2YC' where id=2; -update noar ti set v0='65E2SPUIMZES192Z2YC' where id=2; -update noar tt set b2='TMQU7' where id=2; -update noar ti set b2='TMQU7' where id=2; -update noar tt set v0='K' where id=3; -update noar ti set v0='K' where id=3; -update noar tt set b0='IJOXWKF' where id=3; -update noar ti set b0='IJOXWKF' where id=3; -update noar tt set v0='1A9DQ' where id=3; -update noar ti set v0='1A9DQ' where id=3; -update noar tt set b1='8KNR1HXJUQQOAEU156TY' where id=3; -update noar ti set b1='8KNR1HXJUQQOAEU156TY' where id=3; -update noar tt set v0='P7WF4I04306KUMO2N' where id=3; -update noar ti set v0='P7WF4I04306KUMO2N' where id=3; -update noar tt set b2='PFMWGFO' where id=3; -update noar ti set b2='PFMWGFO' where id=3; -update noar tt set v0='IGS4JU' where id=4; -update noar ti set v0='IGS4JU' where id=4; -update noar tt set b0='8FY6ADN8TQNM' where id=4; -update noar ti set b0='8FY6ADN8TQNM' where id=4; -update noar tt set v0='1PICAVU8PDEL2MNY50N' where id=4; -update noar ti set v0='1PICAVU8PDEL2MNY50N' where id=4; -update noar tt set b1='WYV844CXF477KNUZ9REITKH1IJE' where id=4; -update noar ti set b1='WYV844CXF477KNUZ9REITKH1IJE' where id=4; -update noar tt set v0='VBLEEPOO2W56K94S4C600' where id=4; -update noar ti set v0='VBLEEPOO2W56K94S4C600' where id=4; -update noar tt set b2='F5NX90U' where id=4; -update noar ti set b2='F5NX90U' where id=4; -update noar tt set v0='XDP5IN8CETC6RW2' where id=5; -update noar ti set v0='XDP5IN8CETC6RW2' where id=5; -update noar tt set b0='NNB9K32YJ478Q2KOW7UOI2EQY3' where id=5; -update noar ti set b0='NNB9K32YJ478Q2KOW7UOI2EQY3' where id=5; -update noar tt set v0='W952HWFPD6KLAUSU1BL0X7M75' where id=5; -update noar ti set v0='W952HWFPD6KLAUSU1BL0X7M75' where id=5; -update noar tt set b1='8CVGF8YQ4PYIS8ZLM8DAXZPP4' where id=5; -update noar ti set b1='8CVGF8YQ4PYIS8ZLM8DAXZPP4' where id=5; -update noar tt set v0='5ICJ' where id=5; -update noar ti set v0='5ICJ' where id=5; -update noar tt set b2='MNUT8R1DVJ1KDL9K1' where id=5; -update noar ti set b2='MNUT8R1DVJ1KDL9K1' where id=5; -update noar tt set v0='9CO0E7RU1U0KVQ8S92FWCFY4JDQ55' where id=6; -update noar ti set v0='9CO0E7RU1U0KVQ8S92FWCFY4JDQ55' where id=6; -update noar tt set b0='KVPBH' where id=6; -update noar ti set b0='KVPBH' where id=6; -update noar tt set v0='TX' where id=6; -update noar ti set v0='TX' where id=6; -update noar tt set b1='NALHFFULK' where id=6; -update noar ti set b1='NALHFFULK' where id=6; -update noar tt set v0='RXWND4E243CHD2584ZCQ7' where id=6; -update noar ti set v0='RXWND4E243CHD2584ZCQ7' where id=6; -update noar tt set b2='F4TO6METCLEVAL2VBPZJ8TOAWD' where id=6; -update noar ti set b2='F4TO6METCLEVAL2VBPZJ8TOAWD' where id=6; -update noar tt set v0='AN7CQKR80HTNYYHRN5E9MV' where id=7; -update noar ti set v0='AN7CQKR80HTNYYHRN5E9MV' where id=7; -update noar tt set b0='JZTOSN4131P5ABLZ' where id=7; -update noar ti set b0='JZTOSN4131P5ABLZ' where id=7; -update noar tt set v0='GPOOAJKUI64C' where id=7; -update noar ti set v0='GPOOAJKUI64C' where id=7; -update noar tt set b1='42MFK7ZM7' where id=7; -update noar ti set b1='42MFK7ZM7' where id=7; -update noar tt set v0='RUOHSPKTCP1ZWPC72JEUC7AEGS' where id=7; -update noar ti set v0='RUOHSPKTCP1ZWPC72JEUC7AEGS' where id=7; -update noar tt set b2='BUU2CLFLHMTQL' where id=7; -update noar ti set b2='BUU2CLFLHMTQL' where id=7; -update noar tt set v0='2X6EJP92K892R8XTYJP67TOB8' where id=8; -update noar ti set v0='2X6EJP92K892R8XTYJP67TOB8' where id=8; -update noar tt set b0='TBSM2JLP3T7ULLWS75BUPK' where id=8; -update noar ti set b0='TBSM2JLP3T7ULLWS75BUPK' where id=8; -update noar tt set v0='HKJO6VSPOX3' where id=8; -update noar ti set v0='HKJO6VSPOX3' where id=8; -update noar tt set b1='VEYEYI6Z24671KDA0KV4KWDC4C52N' where id=8; -update noar ti set b1='VEYEYI6Z24671KDA0KV4KWDC4C52N' where id=8; -update noar tt set v0='UW9VSXQY5BYSYMOMWXJJKVCW' where id=8; -update noar ti set v0='UW9VSXQY5BYSYMOMWXJJKVCW' where id=8; -update noar tt set b2='5VKVCN1NU12T' where id=8; -update noar ti set b2='5VKVCN1NU12T' where id=8; -update noar tt set v0='IR4THFPYL8NL4WY8' where id=9; -update noar ti set v0='IR4THFPYL8NL4WY8' where id=9; -update noar tt set b0='JIPCBM9NYFTJ4NJ6HIWZR' where id=9; -update noar ti set b0='JIPCBM9NYFTJ4NJ6HIWZR' where id=9; -update noar tt set v0='1JVC7DEKL9EEY56RPOL23PH' where id=9; -update noar ti set v0='1JVC7DEKL9EEY56RPOL23PH' where id=9; -update noar tt set b1='KCWZ3OA6YZZ' where id=9; -update noar ti set b1='KCWZ3OA6YZZ' where id=9; -update noar tt set v0='JYITTD5TBMUEWTG6BJR2UA6PL6FR1' where id=9; -update noar ti set v0='JYITTD5TBMUEWTG6BJR2UA6PL6FR1' where id=9; -update noar tt set b2='8DNARRGW8XT9YTSJUQBJDOAJ9X5G5N5' where id=9; -update noar ti set b2='8DNARRGW8XT9YTSJUQBJDOAJ9X5G5N5' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - v0 varchar(32) null, - b0 blob null, - b1 mediumblob null, - b2 tinyblob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='VASH4CFHPXPECA2G20IB66E' where id=1; -update noar ti set v0='VASH4CFHPXPECA2G20IB66E' where id=1; -update noar tt set b0='8220R2SWHAQBF' where id=1; -update noar ti set b0='8220R2SWHAQBF' where id=1; -update noar tt set v0='JFMOWJ8NJAGXB5VPFQ4QEJA6KHUH' where id=1; -update noar ti set v0='JFMOWJ8NJAGXB5VPFQ4QEJA6KHUH' where id=1; -update noar tt set b1='8LWY6AR8G7SM23OW7G4AQO' where id=1; -update noar ti set b1='8LWY6AR8G7SM23OW7G4AQO' where id=1; -update noar tt set v0='VJQZKV5O63RQ2E5KGPVC' where id=1; -update noar ti set v0='VJQZKV5O63RQ2E5KGPVC' where id=1; -update noar tt set b2='LC6' where id=1; -update noar ti set b2='LC6' where id=1; -update noar tt set v0='3O0SALEHAY7D32IPGAPP2CKJCD' where id=2; -update noar ti set v0='3O0SALEHAY7D32IPGAPP2CKJCD' where id=2; -update noar tt set b0='CVBL40Z2IAQHZ9' where id=2; -update noar ti set b0='CVBL40Z2IAQHZ9' where id=2; -update noar tt set v0='ZQJ4T0J3EQ6EH01S059HQ3QPWRSKFTKM' where id=2; -update noar ti set v0='ZQJ4T0J3EQ6EH01S059HQ3QPWRSKFTKM' where id=2; -update noar tt set b1='36U2OH3X2ZCLSAEQJEM3UO' where id=2; -update noar ti set b1='36U2OH3X2ZCLSAEQJEM3UO' where id=2; -update noar tt set v0='QELXOIF044KO6DB' where id=2; -update noar ti set v0='QELXOIF044KO6DB' where id=2; -update noar tt set b2='LR' where id=2; -update noar ti set b2='LR' where id=2; -update noar tt set v0='DFLUV' where id=3; -update noar ti set v0='DFLUV' where id=3; -update noar tt set b0='11R' where id=3; -update noar ti set b0='11R' where id=3; -update noar tt set v0='ZEKBCRHFB59701D04P8RF5A9G0U' where id=3; -update noar ti set v0='ZEKBCRHFB59701D04P8RF5A9G0U' where id=3; -update noar tt set b1='9XG1RX32GSAFXIOBNPWRYRCVRME' where id=3; -update noar ti set b1='9XG1RX32GSAFXIOBNPWRYRCVRME' where id=3; -update noar tt set v0='N9AEUSNSNQB25QGPQC49SRV' where id=3; -update noar ti set v0='N9AEUSNSNQB25QGPQC49SRV' where id=3; -update noar tt set b2='XI6M' where id=3; -update noar ti set b2='XI6M' where id=3; -update noar tt set v0='XB82QW78JJJG' where id=4; -update noar ti set v0='XB82QW78JJJG' where id=4; -update noar tt set b0='QH8AJ9R8E7LXD2E6Y9MHFTJSB9DJD8Y' where id=4; -update noar ti set b0='QH8AJ9R8E7LXD2E6Y9MHFTJSB9DJD8Y' where id=4; -update noar tt set v0='9CQN0CQG26DK' where id=4; -update noar ti set v0='9CQN0CQG26DK' where id=4; -update noar tt set b1='FGRJ9V3WT0VG9A' where id=4; -update noar ti set b1='FGRJ9V3WT0VG9A' where id=4; -update noar tt set v0='OH2TDKG6' where id=4; -update noar ti set v0='OH2TDKG6' where id=4; -update noar tt set b2='70OHIX9R16' where id=4; -update noar ti set b2='70OHIX9R16' where id=4; -update noar tt set v0='G7JPAZY3B23KMDEY7U8R' where id=5; -update noar ti set v0='G7JPAZY3B23KMDEY7U8R' where id=5; -update noar tt set b0='K2FKHCLSGYEPKU1LG4G5JRTA9MCGC5HR' where id=5; -update noar ti set b0='K2FKHCLSGYEPKU1LG4G5JRTA9MCGC5HR' where id=5; -update noar tt set v0='57YIL2J9W510T7FHY70AB0F2WTD3' where id=5; -update noar ti set v0='57YIL2J9W510T7FHY70AB0F2WTD3' where id=5; -update noar tt set b1='O' where id=5; -update noar ti set b1='O' where id=5; -update noar tt set v0='BE' where id=5; -update noar ti set v0='BE' where id=5; -update noar tt set b2='P9IGX0UVUJMF42389S8' where id=5; -update noar ti set b2='P9IGX0UVUJMF42389S8' where id=5; -update noar tt set v0='4AGJH9HHNAFT8F6YC4PSQHASE7' where id=6; -update noar ti set v0='4AGJH9HHNAFT8F6YC4PSQHASE7' where id=6; -update noar tt set b0='Y0DZX2E3LV4U0QW6V' where id=6; -update noar ti set b0='Y0DZX2E3LV4U0QW6V' where id=6; -update noar tt set v0='H6PV3VFUD0514PY' where id=6; -update noar ti set v0='H6PV3VFUD0514PY' where id=6; -update noar tt set b1='NAHBN4CN58CM4NS9W9TX' where id=6; -update noar ti set b1='NAHBN4CN58CM4NS9W9TX' where id=6; -update noar tt set v0='S6066LV8EMUGGOE5SL2XQ' where id=6; -update noar ti set v0='S6066LV8EMUGGOE5SL2XQ' where id=6; -update noar tt set b2='PZ2W' where id=6; -update noar ti set b2='PZ2W' where id=6; -update noar tt set v0='2RFIXZT6B1S0DO4U' where id=7; -update noar ti set v0='2RFIXZT6B1S0DO4U' where id=7; -update noar tt set b0='32ET70UQ85YX5EA2' where id=7; -update noar ti set b0='32ET70UQ85YX5EA2' where id=7; -update noar tt set v0='K0JQU6VFAYE2ZHT2WFCLLO53F6K' where id=7; -update noar ti set v0='K0JQU6VFAYE2ZHT2WFCLLO53F6K' where id=7; -update noar tt set b1='I5' where id=7; -update noar ti set b1='I5' where id=7; -update noar tt set v0='YK00JL1KCSZ0BOS1XU' where id=7; -update noar ti set v0='YK00JL1KCSZ0BOS1XU' where id=7; -update noar tt set b2='N4JJS1II' where id=7; -update noar ti set b2='N4JJS1II' where id=7; -update noar tt set v0='LSH2ZQ6AZPOIKWPSFAQM63A0' where id=8; -update noar ti set v0='LSH2ZQ6AZPOIKWPSFAQM63A0' where id=8; -update noar tt set b0='PCE19F85UZRBDSZQ77XPOWIY5N87OJ4J' where id=8; -update noar ti set b0='PCE19F85UZRBDSZQ77XPOWIY5N87OJ4J' where id=8; -update noar tt set v0='IS' where id=8; -update noar ti set v0='IS' where id=8; -update noar tt set b1='BG32D18NHVGVLWA9' where id=8; -update noar ti set b1='BG32D18NHVGVLWA9' where id=8; -update noar tt set v0='UOZ' where id=8; -update noar ti set v0='UOZ' where id=8; -update noar tt set b2='KJ29EHTRB9DPTHNAKGKE8CMT4XKEXSO' where id=8; -update noar ti set b2='KJ29EHTRB9DPTHNAKGKE8CMT4XKEXSO' where id=8; -update noar tt set v0='N0GP3' where id=9; -update noar ti set v0='N0GP3' where id=9; -update noar tt set b0='14W38Z82UWJLU' where id=9; -update noar ti set b0='14W38Z82UWJLU' where id=9; -update noar tt set v0='QW1GS4PGNPZ063LF0' where id=9; -update noar ti set v0='QW1GS4PGNPZ063LF0' where id=9; -update noar tt set b1='A' where id=9; -update noar ti set b1='A' where id=9; -update noar tt set v0='4IZHBRVS36RJ8EZ4N5M4ME1EB9A' where id=9; -update noar ti set v0='4IZHBRVS36RJ8EZ4N5M4ME1EB9A' where id=9; -update noar tt set b2='03JTWKN4QIFBCZDY9D' where id=9; -update noar ti set b2='03JTWKN4QIFBCZDY9D' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - v0 varchar(256) null, - b0 blob null, - b1 mediumblob null, - b2 tinyblob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='S5XYTFIBIRL682CLNPN4VV' where id=1; -update noar ti set v0='S5XYTFIBIRL682CLNPN4VV' where id=1; -update noar tt set b0='GHLR29Z9D' where id=1; -update noar ti set b0='GHLR29Z9D' where id=1; -update noar tt set v0='B6TSLV2HDAT228QL8' where id=1; -update noar ti set v0='B6TSLV2HDAT228QL8' where id=1; -update noar tt set b1='HSL' where id=1; -update noar ti set b1='HSL' where id=1; -update noar tt set v0='OR57BP5ICHGJU8FK' where id=1; -update noar ti set v0='OR57BP5ICHGJU8FK' where id=1; -update noar tt set b2='UMI1FKXU6GVPQ1W5Q4CIP0DOV22' where id=1; -update noar ti set b2='UMI1FKXU6GVPQ1W5Q4CIP0DOV22' where id=1; -update noar tt set v0='ZPX3GM3827' where id=2; -update noar ti set v0='ZPX3GM3827' where id=2; -update noar tt set b0='1' where id=2; -update noar ti set b0='1' where id=2; -update noar tt set v0='5RU36NXKUX4' where id=2; -update noar ti set v0='5RU36NXKUX4' where id=2; -update noar tt set b1='K6UQUM4ERPKMXQ7HFXIFDDL5O99JO' where id=2; -update noar ti set b1='K6UQUM4ERPKMXQ7HFXIFDDL5O99JO' where id=2; -update noar tt set v0='TMJ7Y9S94HEKO5LL7HLG53JZWP' where id=2; -update noar ti set v0='TMJ7Y9S94HEKO5LL7HLG53JZWP' where id=2; -update noar tt set b2='1JCI1R8VZ2785HGWAP2FIHLQM73UOOQJ' where id=2; -update noar ti set b2='1JCI1R8VZ2785HGWAP2FIHLQM73UOOQJ' where id=2; -update noar tt set v0='YUT' where id=3; -update noar ti set v0='YUT' where id=3; -update noar tt set b0='CMSUE' where id=3; -update noar ti set b0='CMSUE' where id=3; -update noar tt set v0='RTM' where id=3; -update noar ti set v0='RTM' where id=3; -update noar tt set b1='MP' where id=3; -update noar ti set b1='MP' where id=3; -update noar tt set v0='2GM2B0AIJ0Q5FERKDI6GEP1YTR4K5R' where id=3; -update noar ti set v0='2GM2B0AIJ0Q5FERKDI6GEP1YTR4K5R' where id=3; -update noar tt set b2='HAVEEIAYLPKWAZLCR264QZO79' where id=3; -update noar ti set b2='HAVEEIAYLPKWAZLCR264QZO79' where id=3; -update noar tt set v0='0J7U341QLIDZ30GKVO47V8PI49E7B8I' where id=4; -update noar ti set v0='0J7U341QLIDZ30GKVO47V8PI49E7B8I' where id=4; -update noar tt set b0='TRXI4SQ4HO29AM' where id=4; -update noar ti set b0='TRXI4SQ4HO29AM' where id=4; -update noar tt set v0='93140JN' where id=4; -update noar ti set v0='93140JN' where id=4; -update noar tt set b1='V25RFLTKPDUD' where id=4; -update noar ti set b1='V25RFLTKPDUD' where id=4; -update noar tt set v0='DH5B3IYTYZQLNW3PXBQA0FE' where id=4; -update noar ti set v0='DH5B3IYTYZQLNW3PXBQA0FE' where id=4; -update noar tt set b2='J7FV' where id=4; -update noar ti set b2='J7FV' where id=4; -update noar tt set v0='8XYTUZWE6HIF74QE7AYOHWCAGF' where id=5; -update noar ti set v0='8XYTUZWE6HIF74QE7AYOHWCAGF' where id=5; -update noar tt set b0='591ERV2E03QA5TPS7L7R60TJH' where id=5; -update noar ti set b0='591ERV2E03QA5TPS7L7R60TJH' where id=5; -update noar tt set v0='O2I8I690I2JENJIANLA1H90DMK' where id=5; -update noar ti set v0='O2I8I690I2JENJIANLA1H90DMK' where id=5; -update noar tt set b1='3HLWRN7J84QJU6' where id=5; -update noar ti set b1='3HLWRN7J84QJU6' where id=5; -update noar tt set v0='X3Q9DOEP6T5UECW' where id=5; -update noar ti set v0='X3Q9DOEP6T5UECW' where id=5; -update noar tt set b2='AUXBGX63JR8J9' where id=5; -update noar ti set b2='AUXBGX63JR8J9' where id=5; -update noar tt set v0='HBB00KXSZ7XYOHQJFDY7VN5S3' where id=6; -update noar ti set v0='HBB00KXSZ7XYOHQJFDY7VN5S3' where id=6; -update noar tt set b0='UZGCCJZT' where id=6; -update noar ti set b0='UZGCCJZT' where id=6; -update noar tt set v0='3G2LOTNOZCGERF0UVZL1CP7' where id=6; -update noar ti set v0='3G2LOTNOZCGERF0UVZL1CP7' where id=6; -update noar tt set b1='XZFNXV8JI7' where id=6; -update noar ti set b1='XZFNXV8JI7' where id=6; -update noar tt set v0='J0' where id=6; -update noar ti set v0='J0' where id=6; -update noar tt set b2='TYJ' where id=6; -update noar ti set b2='TYJ' where id=6; -update noar tt set v0='PTS3' where id=7; -update noar ti set v0='PTS3' where id=7; -update noar tt set b0='4UYA7948LW684ND' where id=7; -update noar ti set b0='4UYA7948LW684ND' where id=7; -update noar tt set v0='C406K1WBS4CE2' where id=7; -update noar ti set v0='C406K1WBS4CE2' where id=7; -update noar tt set b1='SIY5JAEYXQ8SCBNFQBX0EBN7ZTK07' where id=7; -update noar ti set b1='SIY5JAEYXQ8SCBNFQBX0EBN7ZTK07' where id=7; -update noar tt set v0='AVT7' where id=7; -update noar ti set v0='AVT7' where id=7; -update noar tt set b2='E4GS6LCPPX29SW22UZZNSMT' where id=7; -update noar ti set b2='E4GS6LCPPX29SW22UZZNSMT' where id=7; -update noar tt set v0='WQCTS2K' where id=8; -update noar ti set v0='WQCTS2K' where id=8; -update noar tt set b0='Y82WBEIYBD' where id=8; -update noar ti set b0='Y82WBEIYBD' where id=8; -update noar tt set v0='JQM' where id=8; -update noar ti set v0='JQM' where id=8; -update noar tt set b1='BCHUH4PK4C7U4X9JBWTMKT6TX' where id=8; -update noar ti set b1='BCHUH4PK4C7U4X9JBWTMKT6TX' where id=8; -update noar tt set v0='SKMQI2JEG3A2UIOSQCW259BWAYV' where id=8; -update noar ti set v0='SKMQI2JEG3A2UIOSQCW259BWAYV' where id=8; -update noar tt set b2='Q1X4WY148VU2NMEHKEQBK6ZPY6' where id=8; -update noar ti set b2='Q1X4WY148VU2NMEHKEQBK6ZPY6' where id=8; -update noar tt set v0='RYE' where id=9; -update noar ti set v0='RYE' where id=9; -update noar tt set b0='M656YPEDHKI1FEZYM5PD22481YQSPDNM' where id=9; -update noar ti set b0='M656YPEDHKI1FEZYM5PD22481YQSPDNM' where id=9; -update noar tt set v0='TKNLFV9Z6QRXCY0IV5NNPSHXLAWBCTVQ' where id=9; -update noar ti set v0='TKNLFV9Z6QRXCY0IV5NNPSHXLAWBCTVQ' where id=9; -update noar tt set b1='XNNLVS4BBBUXYGLN53M0' where id=9; -update noar ti set b1='XNNLVS4BBBUXYGLN53M0' where id=9; -update noar tt set v0='DDV4QXQ8Y661YU6YUIZYTZKAKCVWMP0' where id=9; -update noar ti set v0='DDV4QXQ8Y661YU6YUIZYTZKAKCVWMP0' where id=9; -update noar tt set b2='QPWJ3HPR03BDMIV9B4' where id=9; -update noar ti set b2='QPWJ3HPR03BDMIV9B4' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - v0 varchar(32) not null, - b0 blob not null, - b1 mediumblob not null, - b2 tinyblob not null -) engine=tokudb; -insert into tt values (1,'','','',''); -insert into tt values (2,'','','',''); -insert into tt values (3,'','','',''); -insert into tt values (4,'','','',''); -insert into tt values (5,'','','',''); -insert into tt values (6,'','','',''); -insert into tt values (7,'','','',''); -insert into tt values (8,'','','',''); -insert into tt values (9,'','','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='V5J9BZKDV73VULOTIMBCRY7WESI5' where id=1; -update noar ti set v0='V5J9BZKDV73VULOTIMBCRY7WESI5' where id=1; -update noar tt set b0='97' where id=1; -update noar ti set b0='97' where id=1; -update noar tt set v0='TBB25V4H1NHYYMH83WT7K8GFMN' where id=1; -update noar ti set v0='TBB25V4H1NHYYMH83WT7K8GFMN' where id=1; -update noar tt set b1='MNSEU4QMVLPW' where id=1; -update noar ti set b1='MNSEU4QMVLPW' where id=1; -update noar tt set v0='GF6L9YYC93K4WIB' where id=1; -update noar ti set v0='GF6L9YYC93K4WIB' where id=1; -update noar tt set b2='P487KQKNU8295BQZG7P10DKMT' where id=1; -update noar ti set b2='P487KQKNU8295BQZG7P10DKMT' where id=1; -update noar tt set v0='57ZX2UFGXOH3E76WRA4SXVQ7XJFPZV1' where id=2; -update noar ti set v0='57ZX2UFGXOH3E76WRA4SXVQ7XJFPZV1' where id=2; -update noar tt set b0='KVORMV0MAQLB56QLTUPPN0U1IC' where id=2; -update noar ti set b0='KVORMV0MAQLB56QLTUPPN0U1IC' where id=2; -update noar tt set v0='GTTYH7R6EXRK' where id=2; -update noar ti set v0='GTTYH7R6EXRK' where id=2; -update noar tt set b1='DADK3BK8C423W' where id=2; -update noar ti set b1='DADK3BK8C423W' where id=2; -update noar tt set v0='ECA' where id=2; -update noar ti set v0='ECA' where id=2; -update noar tt set b2='W0A36DNEBJ7JZIENX47' where id=2; -update noar ti set b2='W0A36DNEBJ7JZIENX47' where id=2; -update noar tt set v0='97N990O6FS7GMC2' where id=3; -update noar ti set v0='97N990O6FS7GMC2' where id=3; -update noar tt set b0='XYE3Q' where id=3; -update noar ti set b0='XYE3Q' where id=3; -update noar tt set v0='6692' where id=3; -update noar ti set v0='6692' where id=3; -update noar tt set b1='XZFR9W3NH' where id=3; -update noar ti set b1='XZFR9W3NH' where id=3; -update noar tt set v0='2A0E' where id=3; -update noar ti set v0='2A0E' where id=3; -update noar tt set b2='KH6CNOT0D561XJ5Z913PKHOEBEKBO' where id=3; -update noar ti set b2='KH6CNOT0D561XJ5Z913PKHOEBEKBO' where id=3; -update noar tt set v0='W7ETQO' where id=4; -update noar ti set v0='W7ETQO' where id=4; -update noar tt set b0='2U2NYCND795FXC1' where id=4; -update noar ti set b0='2U2NYCND795FXC1' where id=4; -update noar tt set v0='56QE0Z9A08H7TH3F0MA9XV' where id=4; -update noar ti set v0='56QE0Z9A08H7TH3F0MA9XV' where id=4; -update noar tt set b1='DZNXE5A9NFTJRAY1XWHC' where id=4; -update noar ti set b1='DZNXE5A9NFTJRAY1XWHC' where id=4; -update noar tt set v0='TN5CE56JT28BDBN0BH65UP9S2E132IDC' where id=4; -update noar ti set v0='TN5CE56JT28BDBN0BH65UP9S2E132IDC' where id=4; -update noar tt set b2='CF2ZQFNS' where id=4; -update noar ti set b2='CF2ZQFNS' where id=4; -update noar tt set v0='BSEYQPDI6K' where id=5; -update noar ti set v0='BSEYQPDI6K' where id=5; -update noar tt set b0='O42XW16A2OOR49I1' where id=5; -update noar ti set b0='O42XW16A2OOR49I1' where id=5; -update noar tt set v0='FCMVWLR89X4XRYN55P2P' where id=5; -update noar ti set v0='FCMVWLR89X4XRYN55P2P' where id=5; -update noar tt set b1='CYJWKRAR10WKKNH1' where id=5; -update noar ti set b1='CYJWKRAR10WKKNH1' where id=5; -update noar tt set v0='96848K86' where id=5; -update noar ti set v0='96848K86' where id=5; -update noar tt set b2='18XFMNE92YQTVVY62K' where id=5; -update noar ti set b2='18XFMNE92YQTVVY62K' where id=5; -update noar tt set v0='6X28FJ0AR91T6GI4' where id=6; -update noar ti set v0='6X28FJ0AR91T6GI4' where id=6; -update noar tt set b0='ZA55JV' where id=6; -update noar ti set b0='ZA55JV' where id=6; -update noar tt set v0='WR12Q8PX9O' where id=6; -update noar ti set v0='WR12Q8PX9O' where id=6; -update noar tt set b1='KH444CFXOK2' where id=6; -update noar ti set b1='KH444CFXOK2' where id=6; -update noar tt set v0='XA807K3DY7E2KPMTIIC6SEQQQ737' where id=6; -update noar ti set v0='XA807K3DY7E2KPMTIIC6SEQQQ737' where id=6; -update noar tt set b2='TE2' where id=6; -update noar ti set b2='TE2' where id=6; -update noar tt set v0='58' where id=7; -update noar ti set v0='58' where id=7; -update noar tt set b0='7Y0LL1VS4LRW1671QGU' where id=7; -update noar ti set b0='7Y0LL1VS4LRW1671QGU' where id=7; -update noar tt set v0='CN0DUMB4ZH0FYRCBCUFAU288QMF' where id=7; -update noar ti set v0='CN0DUMB4ZH0FYRCBCUFAU288QMF' where id=7; -update noar tt set b1='TZCM2KR104Z3L4NYOI' where id=7; -update noar ti set b1='TZCM2KR104Z3L4NYOI' where id=7; -update noar tt set v0='5BK2KBK4' where id=7; -update noar ti set v0='5BK2KBK4' where id=7; -update noar tt set b2='R6BO38TUGY1XJPXZ' where id=7; -update noar ti set b2='R6BO38TUGY1XJPXZ' where id=7; -update noar tt set v0='GKFHJCP9WJ4TM7RD7OGK60ZH' where id=8; -update noar ti set v0='GKFHJCP9WJ4TM7RD7OGK60ZH' where id=8; -update noar tt set b0='R4' where id=8; -update noar ti set b0='R4' where id=8; -update noar tt set v0='UD6TH59NTL66XNAKL' where id=8; -update noar ti set v0='UD6TH59NTL66XNAKL' where id=8; -update noar tt set b1='6HF247PXA2880ODXVCPP' where id=8; -update noar ti set b1='6HF247PXA2880ODXVCPP' where id=8; -update noar tt set v0='K0POXNHX' where id=8; -update noar ti set v0='K0POXNHX' where id=8; -update noar tt set b2='QI4N0HYUIFXHMWWRZEBJU' where id=8; -update noar ti set b2='QI4N0HYUIFXHMWWRZEBJU' where id=8; -update noar tt set v0='EE1FYWU' where id=9; -update noar ti set v0='EE1FYWU' where id=9; -update noar tt set b0='LU9' where id=9; -update noar ti set b0='LU9' where id=9; -update noar tt set v0='61SDLBOH2Z0URC5DUDGD' where id=9; -update noar ti set v0='61SDLBOH2Z0URC5DUDGD' where id=9; -update noar tt set b1='CHK319K0' where id=9; -update noar ti set b1='CHK319K0' where id=9; -update noar tt set v0='LL4Z1GL2PVH1RQKEJWFPRZ072EZFP2Q' where id=9; -update noar ti set v0='LL4Z1GL2PVH1RQKEJWFPRZ072EZFP2Q' where id=9; -update noar tt set b2='I2OEFB8LPV8' where id=9; -update noar ti set b2='I2OEFB8LPV8' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - v0 varchar(256) not null, - b0 blob not null, - b1 mediumblob not null, - b2 tinyblob not null -) engine=tokudb; -insert into tt values (1,'','','',''); -insert into tt values (2,'','','',''); -insert into tt values (3,'','','',''); -insert into tt values (4,'','','',''); -insert into tt values (5,'','','',''); -insert into tt values (6,'','','',''); -insert into tt values (7,'','','',''); -insert into tt values (8,'','','',''); -insert into tt values (9,'','','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='UH1QOV' where id=1; -update noar ti set v0='UH1QOV' where id=1; -update noar tt set b0='OCO0' where id=1; -update noar ti set b0='OCO0' where id=1; -update noar tt set v0='CUA8VV6DON' where id=1; -update noar ti set v0='CUA8VV6DON' where id=1; -update noar tt set b1='GYG3GND4JATRQGYIO6GY1' where id=1; -update noar ti set b1='GYG3GND4JATRQGYIO6GY1' where id=1; -update noar tt set v0='5DFKBSOVPS3JS5LTTDT3' where id=1; -update noar ti set v0='5DFKBSOVPS3JS5LTTDT3' where id=1; -update noar tt set b2='8ULDHFEMAZ3HL1R4RZTZX5Q0YS' where id=1; -update noar ti set b2='8ULDHFEMAZ3HL1R4RZTZX5Q0YS' where id=1; -update noar tt set v0='V7ZKV9X' where id=2; -update noar ti set v0='V7ZKV9X' where id=2; -update noar tt set b0='CI6VWYQDBYZ4PWEMGBQXU' where id=2; -update noar ti set b0='CI6VWYQDBYZ4PWEMGBQXU' where id=2; -update noar tt set v0='PC' where id=2; -update noar ti set v0='PC' where id=2; -update noar tt set b1='DQRBT5OFC' where id=2; -update noar ti set b1='DQRBT5OFC' where id=2; -update noar tt set v0='N9TL8BEYKCGYZZMP1QZFW' where id=2; -update noar ti set v0='N9TL8BEYKCGYZZMP1QZFW' where id=2; -update noar tt set b2='EQHBBW2C7SEP8VAT' where id=2; -update noar ti set b2='EQHBBW2C7SEP8VAT' where id=2; -update noar tt set v0='V7BRD9R3Z' where id=3; -update noar ti set v0='V7BRD9R3Z' where id=3; -update noar tt set b0='1W0' where id=3; -update noar ti set b0='1W0' where id=3; -update noar tt set v0='N1G10DIA1BL' where id=3; -update noar ti set v0='N1G10DIA1BL' where id=3; -update noar tt set b1='C7J3M31O4I3JIR5AMEXGUX0BVPIB76OQ' where id=3; -update noar ti set b1='C7J3M31O4I3JIR5AMEXGUX0BVPIB76OQ' where id=3; -update noar tt set v0='GA5E4KI4TAN5LLSYC5XRJZNMBM' where id=3; -update noar ti set v0='GA5E4KI4TAN5LLSYC5XRJZNMBM' where id=3; -update noar tt set b2='8WZ1U2EXOWRP3ARVSQGDKINE' where id=3; -update noar ti set b2='8WZ1U2EXOWRP3ARVSQGDKINE' where id=3; -update noar tt set v0='S5LZC' where id=4; -update noar ti set v0='S5LZC' where id=4; -update noar tt set b0='KVKT64MZ1VHP2QK4EXTH80' where id=4; -update noar ti set b0='KVKT64MZ1VHP2QK4EXTH80' where id=4; -update noar tt set v0='F46PG' where id=4; -update noar ti set v0='F46PG' where id=4; -update noar tt set b1='XNZJBLT95NPJCSM' where id=4; -update noar ti set b1='XNZJBLT95NPJCSM' where id=4; -update noar tt set v0='6309VV9O0QGWUH45L8JNSD0AXN0' where id=4; -update noar ti set v0='6309VV9O0QGWUH45L8JNSD0AXN0' where id=4; -update noar tt set b2='G3V0SZ0ZM3TKEJNQKV0NL' where id=4; -update noar ti set b2='G3V0SZ0ZM3TKEJNQKV0NL' where id=4; -update noar tt set v0='G3C8P8X' where id=5; -update noar ti set v0='G3C8P8X' where id=5; -update noar tt set b0='PERKCFJB83EQVS4MA58V3LUDW80ZJP' where id=5; -update noar ti set b0='PERKCFJB83EQVS4MA58V3LUDW80ZJP' where id=5; -update noar tt set v0='X5FS9R8D' where id=5; -update noar ti set v0='X5FS9R8D' where id=5; -update noar tt set b1='Q4B71CBDI9ULSZW' where id=5; -update noar ti set b1='Q4B71CBDI9ULSZW' where id=5; -update noar tt set v0='AI83WYK748CLVQJQK58ISPGE39ESRAQW' where id=5; -update noar ti set v0='AI83WYK748CLVQJQK58ISPGE39ESRAQW' where id=5; -update noar tt set b2='OZL17X4V0Z' where id=5; -update noar ti set b2='OZL17X4V0Z' where id=5; -update noar tt set v0='B5OIZN7DY8827F5JW53E94QV' where id=6; -update noar ti set v0='B5OIZN7DY8827F5JW53E94QV' where id=6; -update noar tt set b0='M1' where id=6; -update noar ti set b0='M1' where id=6; -update noar tt set v0='AAOXJC979PR4MGNF' where id=6; -update noar ti set v0='AAOXJC979PR4MGNF' where id=6; -update noar tt set b1='4L8G220187' where id=6; -update noar ti set b1='4L8G220187' where id=6; -update noar tt set v0='WXPFLYC9Z7GEBFJLHDIY9YU' where id=6; -update noar ti set v0='WXPFLYC9Z7GEBFJLHDIY9YU' where id=6; -update noar tt set b2='7C1DVTR0DVQ1M6SSQA8XMCQVZXSVB3' where id=6; -update noar ti set b2='7C1DVTR0DVQ1M6SSQA8XMCQVZXSVB3' where id=6; -update noar tt set v0='7WTIOJ80Q6S0E24GUPGJFQ5FMMT7TUQ4' where id=7; -update noar ti set v0='7WTIOJ80Q6S0E24GUPGJFQ5FMMT7TUQ4' where id=7; -update noar tt set b0='92Z5WVFEQUFP604FKQLLPPXTNH' where id=7; -update noar ti set b0='92Z5WVFEQUFP604FKQLLPPXTNH' where id=7; -update noar tt set v0='QC6EOS4G68ZAKJ0H' where id=7; -update noar ti set v0='QC6EOS4G68ZAKJ0H' where id=7; -update noar tt set b1='VR42Q3HFR3IWNIQUCT9ZC1T' where id=7; -update noar ti set b1='VR42Q3HFR3IWNIQUCT9ZC1T' where id=7; -update noar tt set v0='E0QKA7HKS2SS9IVQUH5FJGS8XZIIN3' where id=7; -update noar ti set v0='E0QKA7HKS2SS9IVQUH5FJGS8XZIIN3' where id=7; -update noar tt set b2='X8SUBOUD0KFSRS69JP6REWXGMQ' where id=7; -update noar ti set b2='X8SUBOUD0KFSRS69JP6REWXGMQ' where id=7; -update noar tt set v0='PLWDFTFCFN31K' where id=8; -update noar ti set v0='PLWDFTFCFN31K' where id=8; -update noar tt set b0='MS9T7T77CUC1LAFV7ELP5C7221K7NAK' where id=8; -update noar ti set b0='MS9T7T77CUC1LAFV7ELP5C7221K7NAK' where id=8; -update noar tt set v0='VLG4IFJ9UW1JOB2' where id=8; -update noar ti set v0='VLG4IFJ9UW1JOB2' where id=8; -update noar tt set b1='U0E9XMHIK02A7XYRH7R4O2N' where id=8; -update noar ti set b1='U0E9XMHIK02A7XYRH7R4O2N' where id=8; -update noar tt set v0='5KV0' where id=8; -update noar ti set v0='5KV0' where id=8; -update noar tt set b2='7BJLOT' where id=8; -update noar ti set b2='7BJLOT' where id=8; -update noar tt set v0='8G2NAHJ3QZZSKBRA' where id=9; -update noar ti set v0='8G2NAHJ3QZZSKBRA' where id=9; -update noar tt set b0='EF35Y' where id=9; -update noar ti set b0='EF35Y' where id=9; -update noar tt set v0='ACLX6WJEGEVCB9ZZ2YQJPVGDEZ' where id=9; -update noar ti set v0='ACLX6WJEGEVCB9ZZ2YQJPVGDEZ' where id=9; -update noar tt set b1='A2F6MX9TMWCHJB219C4KIGM6PQ' where id=9; -update noar ti set b1='A2F6MX9TMWCHJB219C4KIGM6PQ' where id=9; -update noar tt set v0='8SL62CO2IBOLYQYVL1LM8AEMFUN9' where id=9; -update noar ti set v0='8SL62CO2IBOLYQYVL1LM8AEMFUN9' where id=9; -update noar tt set b2='N1W3ZHRP478ERLRI3HXUD5TTX7' where id=9; -update noar ti set b2='N1W3ZHRP478ERLRI3HXUD5TTX7' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - v0 varchar(32) null, - b0 blob null, - b1 mediumblob null, - b2 blob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='888MNXBYIY385I8I3H1WRY9L7UMP' where id=1; -update noar ti set v0='888MNXBYIY385I8I3H1WRY9L7UMP' where id=1; -update noar tt set b0='29' where id=1; -update noar ti set b0='29' where id=1; -update noar tt set v0='QGXK1EM2MW' where id=1; -update noar ti set v0='QGXK1EM2MW' where id=1; -update noar tt set b1='5I1LIG' where id=1; -update noar ti set b1='5I1LIG' where id=1; -update noar tt set v0='2NJEG6KHZ30BTFUFCHDD7EYMLTO3YT' where id=1; -update noar ti set v0='2NJEG6KHZ30BTFUFCHDD7EYMLTO3YT' where id=1; -update noar tt set b2='X1' where id=1; -update noar ti set b2='X1' where id=1; -update noar tt set v0='ZOAFGR5' where id=2; -update noar ti set v0='ZOAFGR5' where id=2; -update noar tt set b0='KX1DDSM7P' where id=2; -update noar ti set b0='KX1DDSM7P' where id=2; -update noar tt set v0='N78MXSRPMGK8O7RS' where id=2; -update noar ti set v0='N78MXSRPMGK8O7RS' where id=2; -update noar tt set b1='DUQ5MHFTN82' where id=2; -update noar ti set b1='DUQ5MHFTN82' where id=2; -update noar tt set v0='MWIN5A4DB9JVNPS92QMRXWP0GCU49M' where id=2; -update noar ti set v0='MWIN5A4DB9JVNPS92QMRXWP0GCU49M' where id=2; -update noar tt set b2='HT4NHOFZN1C1EJ' where id=2; -update noar ti set b2='HT4NHOFZN1C1EJ' where id=2; -update noar tt set v0='RBLT0OH868AMI82AE6Q19Y' where id=3; -update noar ti set v0='RBLT0OH868AMI82AE6Q19Y' where id=3; -update noar tt set b0='IC' where id=3; -update noar ti set b0='IC' where id=3; -update noar tt set v0='ZI41G' where id=3; -update noar ti set v0='ZI41G' where id=3; -update noar tt set b1='AIA4SRGCGMH3PNZA' where id=3; -update noar ti set b1='AIA4SRGCGMH3PNZA' where id=3; -update noar tt set v0='ET8DSTKS7SHX22QSFLBOH6NA' where id=3; -update noar ti set v0='ET8DSTKS7SHX22QSFLBOH6NA' where id=3; -update noar tt set b2='B1FM8QT6U2E2QH6VG' where id=3; -update noar ti set b2='B1FM8QT6U2E2QH6VG' where id=3; -update noar tt set v0='ZKFFH' where id=4; -update noar ti set v0='ZKFFH' where id=4; -update noar tt set b0='JMYXBD' where id=4; -update noar ti set b0='JMYXBD' where id=4; -update noar tt set v0='3E06094U1' where id=4; -update noar ti set v0='3E06094U1' where id=4; -update noar tt set b1='CU9FVZ36JY1UPOV' where id=4; -update noar ti set b1='CU9FVZ36JY1UPOV' where id=4; -update noar tt set v0='1YHNG52GDYCJGL9' where id=4; -update noar ti set v0='1YHNG52GDYCJGL9' where id=4; -update noar tt set b2='GN0CFKGX0PBGP4' where id=4; -update noar ti set b2='GN0CFKGX0PBGP4' where id=4; -update noar tt set v0='6T0NHGG8O7NT3BHWB' where id=5; -update noar ti set v0='6T0NHGG8O7NT3BHWB' where id=5; -update noar tt set b0='CGV8C4OFPMBOIDIBYBBG2NJW68WTTP1' where id=5; -update noar ti set b0='CGV8C4OFPMBOIDIBYBBG2NJW68WTTP1' where id=5; -update noar tt set v0='UHRVOWIA0RH2GXOGVHZIX' where id=5; -update noar ti set v0='UHRVOWIA0RH2GXOGVHZIX' where id=5; -update noar tt set b1='4O' where id=5; -update noar ti set b1='4O' where id=5; -update noar tt set v0='F8AST' where id=5; -update noar ti set v0='F8AST' where id=5; -update noar tt set b2='JO3SRJAJ94P95BESG' where id=5; -update noar ti set b2='JO3SRJAJ94P95BESG' where id=5; -update noar tt set v0='BA1PB5JL8U3S8' where id=6; -update noar ti set v0='BA1PB5JL8U3S8' where id=6; -update noar tt set b0='ROAP3E6ULD' where id=6; -update noar ti set b0='ROAP3E6ULD' where id=6; -update noar tt set v0='HZU' where id=6; -update noar ti set v0='HZU' where id=6; -update noar tt set b1='QW3REK12XXS8ZGSJKT4OYXNGR8LQG' where id=6; -update noar ti set b1='QW3REK12XXS8ZGSJKT4OYXNGR8LQG' where id=6; -update noar tt set v0='BJ2R8' where id=6; -update noar ti set v0='BJ2R8' where id=6; -update noar tt set b2='LHNI69FR' where id=6; -update noar ti set b2='LHNI69FR' where id=6; -update noar tt set v0='H' where id=7; -update noar ti set v0='H' where id=7; -update noar tt set b0='EW5WT5AO7L5U3' where id=7; -update noar ti set b0='EW5WT5AO7L5U3' where id=7; -update noar tt set v0='JHBYWFDND0VVNVINS15I' where id=7; -update noar ti set v0='JHBYWFDND0VVNVINS15I' where id=7; -update noar tt set b1='0MNTNBIRLJGK0IV4Q47GU' where id=7; -update noar ti set b1='0MNTNBIRLJGK0IV4Q47GU' where id=7; -update noar tt set v0='4J55NBIK65URUHVPZ0J3BKAK3R6TF52' where id=7; -update noar ti set v0='4J55NBIK65URUHVPZ0J3BKAK3R6TF52' where id=7; -update noar tt set b2='Z' where id=7; -update noar ti set b2='Z' where id=7; -update noar tt set v0='WD2WPT109JTIRDSZSVPNOEO7S' where id=8; -update noar ti set v0='WD2WPT109JTIRDSZSVPNOEO7S' where id=8; -update noar tt set b0='HMSG6R5C6VUJXWI8JYZAIM4CM0' where id=8; -update noar ti set b0='HMSG6R5C6VUJXWI8JYZAIM4CM0' where id=8; -update noar tt set v0='B41ED0UJ2HKS5EX07IMF' where id=8; -update noar ti set v0='B41ED0UJ2HKS5EX07IMF' where id=8; -update noar tt set b1='GJEA2TGEZDIRI3D' where id=8; -update noar ti set b1='GJEA2TGEZDIRI3D' where id=8; -update noar tt set v0='1E17XO1ZM2825X5A' where id=8; -update noar ti set v0='1E17XO1ZM2825X5A' where id=8; -update noar tt set b2='CTK2VQRLGYP6C3RXSPZWUI1FPIE30R2A' where id=8; -update noar ti set b2='CTK2VQRLGYP6C3RXSPZWUI1FPIE30R2A' where id=8; -update noar tt set v0='V1CXC8BHU8TMDVG63DXTSXCEQ' where id=9; -update noar ti set v0='V1CXC8BHU8TMDVG63DXTSXCEQ' where id=9; -update noar tt set b0='VQ8NJMERAUN507Q7KZ8G3OVU8F5' where id=9; -update noar ti set b0='VQ8NJMERAUN507Q7KZ8G3OVU8F5' where id=9; -update noar tt set v0='NF3Q5OYSSNIW9GVVMR0VI' where id=9; -update noar ti set v0='NF3Q5OYSSNIW9GVVMR0VI' where id=9; -update noar tt set b1='JRAJ' where id=9; -update noar ti set b1='JRAJ' where id=9; -update noar tt set v0='FAWJ7W7QOAG95EMF' where id=9; -update noar ti set v0='FAWJ7W7QOAG95EMF' where id=9; -update noar tt set b2='OG6MYKZ9ITKZL4PFMN9' where id=9; -update noar ti set b2='OG6MYKZ9ITKZL4PFMN9' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - v0 varchar(256) null, - b0 blob null, - b1 mediumblob null, - b2 blob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='0GSWUJSJV9R4QUUANH1ENF0QWEVQD' where id=1; -update noar ti set v0='0GSWUJSJV9R4QUUANH1ENF0QWEVQD' where id=1; -update noar tt set b0='1PK59L2YBM1' where id=1; -update noar ti set b0='1PK59L2YBM1' where id=1; -update noar tt set v0='UVT81TMYQ7' where id=1; -update noar ti set v0='UVT81TMYQ7' where id=1; -update noar tt set b1='A5K75JUUIUPR58' where id=1; -update noar ti set b1='A5K75JUUIUPR58' where id=1; -update noar tt set v0='XB32XI7GSQR' where id=1; -update noar ti set v0='XB32XI7GSQR' where id=1; -update noar tt set b2='13ZT7AW0IZSQNSL' where id=1; -update noar ti set b2='13ZT7AW0IZSQNSL' where id=1; -update noar tt set v0='25YG' where id=2; -update noar ti set v0='25YG' where id=2; -update noar tt set b0='C2GSBBLKK' where id=2; -update noar ti set b0='C2GSBBLKK' where id=2; -update noar tt set v0='BI4RNAOHYLN66FX6N' where id=2; -update noar ti set v0='BI4RNAOHYLN66FX6N' where id=2; -update noar tt set b1='1J3B' where id=2; -update noar ti set b1='1J3B' where id=2; -update noar tt set v0='KJ1ED6C27BI68' where id=2; -update noar ti set v0='KJ1ED6C27BI68' where id=2; -update noar tt set b2='PEKOMQXZ190MRABZJ2Z3LDEHLRIZ8W' where id=2; -update noar ti set b2='PEKOMQXZ190MRABZJ2Z3LDEHLRIZ8W' where id=2; -update noar tt set v0='K' where id=3; -update noar ti set v0='K' where id=3; -update noar tt set b0='FLGV5IFDBSOMAF3G' where id=3; -update noar ti set b0='FLGV5IFDBSOMAF3G' where id=3; -update noar tt set v0='RG18L68M2CLLBZ' where id=3; -update noar ti set v0='RG18L68M2CLLBZ' where id=3; -update noar tt set b1='EGUO8WV7J2JZLINWG53WXIHSQ' where id=3; -update noar ti set b1='EGUO8WV7J2JZLINWG53WXIHSQ' where id=3; -update noar tt set v0='BY90ICPPG8IX' where id=3; -update noar ti set v0='BY90ICPPG8IX' where id=3; -update noar tt set b2='2ZLXDOF' where id=3; -update noar ti set b2='2ZLXDOF' where id=3; -update noar tt set v0='NMQTFR2' where id=4; -update noar ti set v0='NMQTFR2' where id=4; -update noar tt set b0='5M1KUJILOHQVSQTXN' where id=4; -update noar ti set b0='5M1KUJILOHQVSQTXN' where id=4; -update noar tt set v0='ENHI3BUPFC1I241GOWHDI' where id=4; -update noar ti set v0='ENHI3BUPFC1I241GOWHDI' where id=4; -update noar tt set b1='3QNXCDLT' where id=4; -update noar ti set b1='3QNXCDLT' where id=4; -update noar tt set v0='DH5HTJH9ECJYMI' where id=4; -update noar ti set v0='DH5HTJH9ECJYMI' where id=4; -update noar tt set b2='77R64E3OSALE5T8XHL' where id=4; -update noar ti set b2='77R64E3OSALE5T8XHL' where id=4; -update noar tt set v0='YGDRNKO0KA184BEFM1SF277Z7ZAFWJ2' where id=5; -update noar ti set v0='YGDRNKO0KA184BEFM1SF277Z7ZAFWJ2' where id=5; -update noar tt set b0='427HGY' where id=5; -update noar ti set b0='427HGY' where id=5; -update noar tt set v0='IUX0P' where id=5; -update noar ti set v0='IUX0P' where id=5; -update noar tt set b1='ACM4SDATWHSPZM' where id=5; -update noar ti set b1='ACM4SDATWHSPZM' where id=5; -update noar tt set v0='LJ9G6UNAO9LHBAZCKAHZP1Z2E2' where id=5; -update noar ti set v0='LJ9G6UNAO9LHBAZCKAHZP1Z2E2' where id=5; -update noar tt set b2='P3NJ61QZ4FM431ZTMQ7Q0' where id=5; -update noar ti set b2='P3NJ61QZ4FM431ZTMQ7Q0' where id=5; -update noar tt set v0='LR' where id=6; -update noar ti set v0='LR' where id=6; -update noar tt set b0='CLD33KYSDI1IPRINB9XD5YC' where id=6; -update noar ti set b0='CLD33KYSDI1IPRINB9XD5YC' where id=6; -update noar tt set v0='OYD90VT6' where id=6; -update noar ti set v0='OYD90VT6' where id=6; -update noar tt set b1='V9893TNTKBPRFYMP5X' where id=6; -update noar ti set b1='V9893TNTKBPRFYMP5X' where id=6; -update noar tt set v0='949ZXB8LED0ZMCG9292M7HYHQ' where id=6; -update noar ti set v0='949ZXB8LED0ZMCG9292M7HYHQ' where id=6; -update noar tt set b2='4F8BPJZ34TMW4V19GE' where id=6; -update noar ti set b2='4F8BPJZ34TMW4V19GE' where id=6; -update noar tt set v0='VGFV3JF8JWTLH52QU6' where id=7; -update noar ti set v0='VGFV3JF8JWTLH52QU6' where id=7; -update noar tt set b0='ZV' where id=7; -update noar ti set b0='ZV' where id=7; -update noar tt set v0='7AP06IB7AZSN86RQX4K70EU1FV' where id=7; -update noar ti set v0='7AP06IB7AZSN86RQX4K70EU1FV' where id=7; -update noar tt set b1='3LYEEEBBNBTE754AYGWR' where id=7; -update noar ti set b1='3LYEEEBBNBTE754AYGWR' where id=7; -update noar tt set v0='6PQ4V7GQZPMEXJ9DG4LXPZHETQ2B' where id=7; -update noar ti set v0='6PQ4V7GQZPMEXJ9DG4LXPZHETQ2B' where id=7; -update noar tt set b2='9LSGRUNDDD1' where id=7; -update noar ti set b2='9LSGRUNDDD1' where id=7; -update noar tt set v0='73HOIR3XX6QUQZ6Y8C8LZ232B5MZ0OP' where id=8; -update noar ti set v0='73HOIR3XX6QUQZ6Y8C8LZ232B5MZ0OP' where id=8; -update noar tt set b0='40ZK7OLV972SCCJAUXY' where id=8; -update noar ti set b0='40ZK7OLV972SCCJAUXY' where id=8; -update noar tt set v0='2JOEMDBX0VZFFWZMQVC7' where id=8; -update noar ti set v0='2JOEMDBX0VZFFWZMQVC7' where id=8; -update noar tt set b1='KM5ORFB55VH0TYAVHYMDF80UXSS2242' where id=8; -update noar ti set b1='KM5ORFB55VH0TYAVHYMDF80UXSS2242' where id=8; -update noar tt set v0='VYQJCGG55U0E' where id=8; -update noar ti set v0='VYQJCGG55U0E' where id=8; -update noar tt set b2='MYC' where id=8; -update noar ti set b2='MYC' where id=8; -update noar tt set v0='SLTN2YHMYHPHR0U0Z8KXEC7LJWZIS' where id=9; -update noar ti set v0='SLTN2YHMYHPHR0U0Z8KXEC7LJWZIS' where id=9; -update noar tt set b0='Z7OFRREHFROZ9H3HS' where id=9; -update noar ti set b0='Z7OFRREHFROZ9H3HS' where id=9; -update noar tt set v0='TF3KO' where id=9; -update noar ti set v0='TF3KO' where id=9; -update noar tt set b1='YJ2SR8DHMYQ6AHW' where id=9; -update noar ti set b1='YJ2SR8DHMYQ6AHW' where id=9; -update noar tt set v0='P68PQ3MXMQ3QE3GE02OXE8CJ9' where id=9; -update noar ti set v0='P68PQ3MXMQ3QE3GE02OXE8CJ9' where id=9; -update noar tt set b2='3U' where id=9; -update noar ti set b2='3U' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - v0 varchar(32) not null, - b0 blob not null, - b1 mediumblob not null, - b2 blob not null -) engine=tokudb; -insert into tt values (1,'','','',''); -insert into tt values (2,'','','',''); -insert into tt values (3,'','','',''); -insert into tt values (4,'','','',''); -insert into tt values (5,'','','',''); -insert into tt values (6,'','','',''); -insert into tt values (7,'','','',''); -insert into tt values (8,'','','',''); -insert into tt values (9,'','','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='ATQH74JNA3KVF5PR6E' where id=1; -update noar ti set v0='ATQH74JNA3KVF5PR6E' where id=1; -update noar tt set b0='LVB9CT4TVSC9R1ITCB31H2U3O1U1' where id=1; -update noar ti set b0='LVB9CT4TVSC9R1ITCB31H2U3O1U1' where id=1; -update noar tt set v0='UCG371VBODM48GIFB6ZF1MGBZQ' where id=1; -update noar ti set v0='UCG371VBODM48GIFB6ZF1MGBZQ' where id=1; -update noar tt set b1='5HJ5DXTC529' where id=1; -update noar ti set b1='5HJ5DXTC529' where id=1; -update noar tt set v0='PYU3DS7H4' where id=1; -update noar ti set v0='PYU3DS7H4' where id=1; -update noar tt set b2='3H1L7YUI8AP1' where id=1; -update noar ti set b2='3H1L7YUI8AP1' where id=1; -update noar tt set v0='XBG57EQXIPFY3QOJKPRU' where id=2; -update noar ti set v0='XBG57EQXIPFY3QOJKPRU' where id=2; -update noar tt set b0='345UV875NMBVV7QS30C7VWP1' where id=2; -update noar ti set b0='345UV875NMBVV7QS30C7VWP1' where id=2; -update noar tt set v0='C3Q2V4NAWY65CKSU55GOUZSJSWISZ3D' where id=2; -update noar ti set v0='C3Q2V4NAWY65CKSU55GOUZSJSWISZ3D' where id=2; -update noar tt set b1='7Y5KY18WQQ45HXCTV8' where id=2; -update noar ti set b1='7Y5KY18WQQ45HXCTV8' where id=2; -update noar tt set v0='ZEQKLT2OJG14E1U4F9OI' where id=2; -update noar ti set v0='ZEQKLT2OJG14E1U4F9OI' where id=2; -update noar tt set b2='F56H6FMCHIQV5K65BIJZZG8JOKWH' where id=2; -update noar ti set b2='F56H6FMCHIQV5K65BIJZZG8JOKWH' where id=2; -update noar tt set v0='VVUJ' where id=3; -update noar ti set v0='VVUJ' where id=3; -update noar tt set b0='ONRM1' where id=3; -update noar ti set b0='ONRM1' where id=3; -update noar tt set v0='YYJD889CP6PEN' where id=3; -update noar ti set v0='YYJD889CP6PEN' where id=3; -update noar tt set b1='UB6DFKMWWPN4PV36BVLEV34NPU' where id=3; -update noar ti set b1='UB6DFKMWWPN4PV36BVLEV34NPU' where id=3; -update noar tt set v0='XXQENMA8N2QQPT' where id=3; -update noar ti set v0='XXQENMA8N2QQPT' where id=3; -update noar tt set b2='P9WDCHELW0W4U79LJ67' where id=3; -update noar ti set b2='P9WDCHELW0W4U79LJ67' where id=3; -update noar tt set v0='4VV38ASWIT8NR6NFDEG8BIEL' where id=4; -update noar ti set v0='4VV38ASWIT8NR6NFDEG8BIEL' where id=4; -update noar tt set b0='ITNNYGWA3PCF7QN4N2UOFAIFZ0J' where id=4; -update noar ti set b0='ITNNYGWA3PCF7QN4N2UOFAIFZ0J' where id=4; -update noar tt set v0='T9C2TBZG9JWWSE5NCX38PB7Z05N' where id=4; -update noar ti set v0='T9C2TBZG9JWWSE5NCX38PB7Z05N' where id=4; -update noar tt set b1='V2VJY0R' where id=4; -update noar ti set b1='V2VJY0R' where id=4; -update noar tt set v0='KONK06MZFLSFQSYRHE3PQMT7ZK0' where id=4; -update noar ti set v0='KONK06MZFLSFQSYRHE3PQMT7ZK0' where id=4; -update noar tt set b2='S0' where id=4; -update noar ti set b2='S0' where id=4; -update noar tt set v0='YQ1V51GCNVN1ENKZFR5BZJTJ' where id=5; -update noar ti set v0='YQ1V51GCNVN1ENKZFR5BZJTJ' where id=5; -update noar tt set b0='8YJF1VW6CMG9X5II5ZXE' where id=5; -update noar ti set b0='8YJF1VW6CMG9X5II5ZXE' where id=5; -update noar tt set v0='DU44GXFC4ISNQ8ZD1VLBL' where id=5; -update noar ti set v0='DU44GXFC4ISNQ8ZD1VLBL' where id=5; -update noar tt set b1='HYULM9NK6ENB0F9F0YU0WBK' where id=5; -update noar ti set b1='HYULM9NK6ENB0F9F0YU0WBK' where id=5; -update noar tt set v0='AE71G810G3MJX129B0OFPW' where id=5; -update noar ti set v0='AE71G810G3MJX129B0OFPW' where id=5; -update noar tt set b2='ROSD4H4JYC44W9HNQ48KH5Z' where id=5; -update noar ti set b2='ROSD4H4JYC44W9HNQ48KH5Z' where id=5; -update noar tt set v0='TE3R94O' where id=6; -update noar ti set v0='TE3R94O' where id=6; -update noar tt set b0='898JBDNKZVMZK44BG71NT3NW81T51J0' where id=6; -update noar ti set b0='898JBDNKZVMZK44BG71NT3NW81T51J0' where id=6; -update noar tt set v0='3T6NEFSM0WBNBRFT0UQQM1' where id=6; -update noar ti set v0='3T6NEFSM0WBNBRFT0UQQM1' where id=6; -update noar tt set b1='NTJUIIUWVJ79XYOKMAGL8YJS' where id=6; -update noar ti set b1='NTJUIIUWVJ79XYOKMAGL8YJS' where id=6; -update noar tt set v0='1K' where id=6; -update noar ti set v0='1K' where id=6; -update noar tt set b2='1MT83JS2QCJBVQOROMRKHXJR' where id=6; -update noar ti set b2='1MT83JS2QCJBVQOROMRKHXJR' where id=6; -update noar tt set v0='0NI0MU70SMQ' where id=7; -update noar ti set v0='0NI0MU70SMQ' where id=7; -update noar tt set b0='WP8XV7B6XWDRCZ7O1B5I' where id=7; -update noar ti set b0='WP8XV7B6XWDRCZ7O1B5I' where id=7; -update noar tt set v0='XX62GT0ENXKVM2P93PCZEN42GJC7HYW' where id=7; -update noar ti set v0='XX62GT0ENXKVM2P93PCZEN42GJC7HYW' where id=7; -update noar tt set b1='IIE4JLEFCBN2HPX0' where id=7; -update noar ti set b1='IIE4JLEFCBN2HPX0' where id=7; -update noar tt set v0='0OWWRVVQAXFOXOV1J' where id=7; -update noar ti set v0='0OWWRVVQAXFOXOV1J' where id=7; -update noar tt set b2='52LRBFM3O7M' where id=7; -update noar ti set b2='52LRBFM3O7M' where id=7; -update noar tt set v0='SI5K90GJOAR8T4Q8IG12GQ96' where id=8; -update noar ti set v0='SI5K90GJOAR8T4Q8IG12GQ96' where id=8; -update noar tt set b0='HKASYPBP7R6TPO31C7JUT6QD9ZQWIQE' where id=8; -update noar ti set b0='HKASYPBP7R6TPO31C7JUT6QD9ZQWIQE' where id=8; -update noar tt set v0='IS56SUHZ7GACCZBN8IKD1JUEFT32I6C' where id=8; -update noar ti set v0='IS56SUHZ7GACCZBN8IKD1JUEFT32I6C' where id=8; -update noar tt set b1='1SZITB53OOW17NYVOR2Z130Q8QF' where id=8; -update noar ti set b1='1SZITB53OOW17NYVOR2Z130Q8QF' where id=8; -update noar tt set v0='9T6UD3SS4V4RHJK24USUBFBQD' where id=8; -update noar ti set v0='9T6UD3SS4V4RHJK24USUBFBQD' where id=8; -update noar tt set b2='E9X' where id=8; -update noar ti set b2='E9X' where id=8; -update noar tt set v0='TH' where id=9; -update noar ti set v0='TH' where id=9; -update noar tt set b0='BXLIPQ0IZL44F9' where id=9; -update noar ti set b0='BXLIPQ0IZL44F9' where id=9; -update noar tt set v0='WNTE0CAO4MZM5MIBUPFAHG873SO' where id=9; -update noar ti set v0='WNTE0CAO4MZM5MIBUPFAHG873SO' where id=9; -update noar tt set b1='EKDQMBFWHCORYY1SVP3ZLUOPXCFB' where id=9; -update noar ti set b1='EKDQMBFWHCORYY1SVP3ZLUOPXCFB' where id=9; -update noar tt set v0='2Y5YTEZWJ9CZEV1SWGBAL4UYS6JNMCNG' where id=9; -update noar ti set v0='2Y5YTEZWJ9CZEV1SWGBAL4UYS6JNMCNG' where id=9; -update noar tt set b2='G0IGPL' where id=9; -update noar ti set b2='G0IGPL' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - v0 varchar(256) not null, - b0 blob not null, - b1 mediumblob not null, - b2 blob not null -) engine=tokudb; -insert into tt values (1,'','','',''); -insert into tt values (2,'','','',''); -insert into tt values (3,'','','',''); -insert into tt values (4,'','','',''); -insert into tt values (5,'','','',''); -insert into tt values (6,'','','',''); -insert into tt values (7,'','','',''); -insert into tt values (8,'','','',''); -insert into tt values (9,'','','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='K4K0VB2PMY483' where id=1; -update noar ti set v0='K4K0VB2PMY483' where id=1; -update noar tt set b0='8EN61LAMNYMYVAAY8GNRETLSZU4BAX' where id=1; -update noar ti set b0='8EN61LAMNYMYVAAY8GNRETLSZU4BAX' where id=1; -update noar tt set v0='ZGZ5MYOFOLX52S4E5' where id=1; -update noar ti set v0='ZGZ5MYOFOLX52S4E5' where id=1; -update noar tt set b1='YPDWYN05B0XOOIP5OVR4V1Z' where id=1; -update noar ti set b1='YPDWYN05B0XOOIP5OVR4V1Z' where id=1; -update noar tt set v0='0AC42CBEPTI5QMFQZ2G8255FB1A' where id=1; -update noar ti set v0='0AC42CBEPTI5QMFQZ2G8255FB1A' where id=1; -update noar tt set b2='C688ZHZSFN904Z0DHING4U3' where id=1; -update noar ti set b2='C688ZHZSFN904Z0DHING4U3' where id=1; -update noar tt set v0='YWY' where id=2; -update noar ti set v0='YWY' where id=2; -update noar tt set b0='C0NGA8SUSURIBGN80CKAU4' where id=2; -update noar ti set b0='C0NGA8SUSURIBGN80CKAU4' where id=2; -update noar tt set v0='ZGZ0HDOW5E2IIEB1HO38MX8KQM8C' where id=2; -update noar ti set v0='ZGZ0HDOW5E2IIEB1HO38MX8KQM8C' where id=2; -update noar tt set b1='FTOA6RY4GURZBRC0KLG411E8QH2' where id=2; -update noar ti set b1='FTOA6RY4GURZBRC0KLG411E8QH2' where id=2; -update noar tt set v0='GASWIJCZ2A2B8Y8I1A' where id=2; -update noar ti set v0='GASWIJCZ2A2B8Y8I1A' where id=2; -update noar tt set b2='D' where id=2; -update noar ti set b2='D' where id=2; -update noar tt set v0='OP6RSKX795B3O368UOZ0EUL' where id=3; -update noar ti set v0='OP6RSKX795B3O368UOZ0EUL' where id=3; -update noar tt set b0='ORE5EFAVV2Q5V3' where id=3; -update noar ti set b0='ORE5EFAVV2Q5V3' where id=3; -update noar tt set v0='8VXVFTCA8P' where id=3; -update noar ti set v0='8VXVFTCA8P' where id=3; -update noar tt set b1='6FKJ' where id=3; -update noar ti set b1='6FKJ' where id=3; -update noar tt set v0='T1AP91UZZWN' where id=3; -update noar ti set v0='T1AP91UZZWN' where id=3; -update noar tt set b2='ASF71I3R9VGYIKLODO' where id=3; -update noar ti set b2='ASF71I3R9VGYIKLODO' where id=3; -update noar tt set v0='Q' where id=4; -update noar ti set v0='Q' where id=4; -update noar tt set b0='HQ1' where id=4; -update noar ti set b0='HQ1' where id=4; -update noar tt set v0='KO4TCQDILA3UUMT3NV6R77' where id=4; -update noar ti set v0='KO4TCQDILA3UUMT3NV6R77' where id=4; -update noar tt set b1='02HHJIA4HZLQEG7APPUXOX245CPS' where id=4; -update noar ti set b1='02HHJIA4HZLQEG7APPUXOX245CPS' where id=4; -update noar tt set v0='LI0934Y17KESMS71K4PSQBGQNQ8RH40S' where id=4; -update noar ti set v0='LI0934Y17KESMS71K4PSQBGQNQ8RH40S' where id=4; -update noar tt set b2='74' where id=4; -update noar ti set b2='74' where id=4; -update noar tt set v0='81FVNDAQHCUUNQ2HG15S17KJBI' where id=5; -update noar ti set v0='81FVNDAQHCUUNQ2HG15S17KJBI' where id=5; -update noar tt set b0='O1BTP' where id=5; -update noar ti set b0='O1BTP' where id=5; -update noar tt set v0='WBMC34EENE9TP83' where id=5; -update noar ti set v0='WBMC34EENE9TP83' where id=5; -update noar tt set b1='EFYMTD' where id=5; -update noar ti set b1='EFYMTD' where id=5; -update noar tt set v0='0NZ9B' where id=5; -update noar ti set v0='0NZ9B' where id=5; -update noar tt set b2='XJL5GIVALX6KDRW' where id=5; -update noar ti set b2='XJL5GIVALX6KDRW' where id=5; -update noar tt set v0='4GX5VQ9' where id=6; -update noar ti set v0='4GX5VQ9' where id=6; -update noar tt set b0='ECY71J1J3HVMYG8WLAE070YBXKUM6FIS' where id=6; -update noar ti set b0='ECY71J1J3HVMYG8WLAE070YBXKUM6FIS' where id=6; -update noar tt set v0='L9TGTGV8J20K5EPRU6KVV0R' where id=6; -update noar ti set v0='L9TGTGV8J20K5EPRU6KVV0R' where id=6; -update noar tt set b1='5QUD9BM0XMM7DAPOOZAPU1JF' where id=6; -update noar ti set b1='5QUD9BM0XMM7DAPOOZAPU1JF' where id=6; -update noar tt set v0='8KZZEVEWBSDTDA56C15CWNVOTMKQDV2' where id=6; -update noar ti set v0='8KZZEVEWBSDTDA56C15CWNVOTMKQDV2' where id=6; -update noar tt set b2='4CC5S9IYCXFF3ASFEQWF89O4' where id=6; -update noar ti set b2='4CC5S9IYCXFF3ASFEQWF89O4' where id=6; -update noar tt set v0='31FF7MR0PLYB6PYY67PMYPYQM2' where id=7; -update noar ti set v0='31FF7MR0PLYB6PYY67PMYPYQM2' where id=7; -update noar tt set b0='94WMM1DO6N3CX6GIPN' where id=7; -update noar ti set b0='94WMM1DO6N3CX6GIPN' where id=7; -update noar tt set v0='005XU1TZDLCDQ5829A8Z0' where id=7; -update noar ti set v0='005XU1TZDLCDQ5829A8Z0' where id=7; -update noar tt set b1='NKLQQJAJ8XZTBK7RLCROM4U' where id=7; -update noar ti set b1='NKLQQJAJ8XZTBK7RLCROM4U' where id=7; -update noar tt set v0='X2CPFMGQUCXVLU' where id=7; -update noar ti set v0='X2CPFMGQUCXVLU' where id=7; -update noar tt set b2='DZCI0U39V6ULZIIAL3BXYWEU4' where id=7; -update noar ti set b2='DZCI0U39V6ULZIIAL3BXYWEU4' where id=7; -update noar tt set v0='5C0G66M6AA66A55Y5ONHKCPF' where id=8; -update noar ti set v0='5C0G66M6AA66A55Y5ONHKCPF' where id=8; -update noar tt set b0='AF3I7FBLFV4K48AAOW45CY89SLO16JB' where id=8; -update noar ti set b0='AF3I7FBLFV4K48AAOW45CY89SLO16JB' where id=8; -update noar tt set v0='VLQR' where id=8; -update noar ti set v0='VLQR' where id=8; -update noar tt set b1='DWCJBMJMV' where id=8; -update noar ti set b1='DWCJBMJMV' where id=8; -update noar tt set v0='3XCAM3ZY55OU0' where id=8; -update noar ti set v0='3XCAM3ZY55OU0' where id=8; -update noar tt set b2='39J9JMRB6XVDQRUVM7HBOMZ1K0W' where id=8; -update noar ti set b2='39J9JMRB6XVDQRUVM7HBOMZ1K0W' where id=8; -update noar tt set v0='8' where id=9; -update noar ti set v0='8' where id=9; -update noar tt set b0='YT0SSUTLYOX4OIYY49EWYSR60G' where id=9; -update noar ti set b0='YT0SSUTLYOX4OIYY49EWYSR60G' where id=9; -update noar tt set v0='2ANB7SH1PNC' where id=9; -update noar ti set v0='2ANB7SH1PNC' where id=9; -update noar tt set b1='G4T' where id=9; -update noar ti set b1='G4T' where id=9; -update noar tt set v0='XJAPFXTIVLPL5A39EBR9F' where id=9; -update noar ti set v0='XJAPFXTIVLPL5A39EBR9F' where id=9; -update noar tt set b2='4D' where id=9; -update noar ti set b2='4D' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - v0 varchar(32) null, - b0 blob null, - b1 mediumblob null, - b2 mediumblob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='V4U42S' where id=1; -update noar ti set v0='V4U42S' where id=1; -update noar tt set b0='H4J' where id=1; -update noar ti set b0='H4J' where id=1; -update noar tt set v0='0Q6RJI9JQJ1AB1' where id=1; -update noar ti set v0='0Q6RJI9JQJ1AB1' where id=1; -update noar tt set b1='E4GT3366FYYATPPM3KT0YS14R' where id=1; -update noar ti set b1='E4GT3366FYYATPPM3KT0YS14R' where id=1; -update noar tt set v0='6XCTAXZZZB6MI330BJOJTSKIW8LTLNNN' where id=1; -update noar ti set v0='6XCTAXZZZB6MI330BJOJTSKIW8LTLNNN' where id=1; -update noar tt set b2='5HJN6MZFI3N5UEIE8AHOUG54C80D' where id=1; -update noar ti set b2='5HJN6MZFI3N5UEIE8AHOUG54C80D' where id=1; -update noar tt set v0='0H7MTVT7T7UO5AU64KIXF' where id=2; -update noar ti set v0='0H7MTVT7T7UO5AU64KIXF' where id=2; -update noar tt set b0='KCS6JOGT8PDKOJ16O5UFYXFBHU1D' where id=2; -update noar ti set b0='KCS6JOGT8PDKOJ16O5UFYXFBHU1D' where id=2; -update noar tt set v0='F1YXJBHYUUEZSPKXEFZ8L1' where id=2; -update noar ti set v0='F1YXJBHYUUEZSPKXEFZ8L1' where id=2; -update noar tt set b1='072E3QCHF2HBR2N2D29RKT' where id=2; -update noar ti set b1='072E3QCHF2HBR2N2D29RKT' where id=2; -update noar tt set v0='3MPNJ552DSHLPO296DLS0GI' where id=2; -update noar ti set v0='3MPNJ552DSHLPO296DLS0GI' where id=2; -update noar tt set b2='KMFTY3B0RVL06C9VBXO' where id=2; -update noar ti set b2='KMFTY3B0RVL06C9VBXO' where id=2; -update noar tt set v0='I60E4' where id=3; -update noar ti set v0='I60E4' where id=3; -update noar tt set b0='Q4U8B8Y5QMOIR61C7Q2CRS8DGCIBO0A2' where id=3; -update noar ti set b0='Q4U8B8Y5QMOIR61C7Q2CRS8DGCIBO0A2' where id=3; -update noar tt set v0='GS93J6YLBRSR9MCPN33BC' where id=3; -update noar ti set v0='GS93J6YLBRSR9MCPN33BC' where id=3; -update noar tt set b1='EQ2YDY4XWPBA6JUXY04C4N8GCB' where id=3; -update noar ti set b1='EQ2YDY4XWPBA6JUXY04C4N8GCB' where id=3; -update noar tt set v0='5K8XG' where id=3; -update noar ti set v0='5K8XG' where id=3; -update noar tt set b2='5N24QX5QD3' where id=3; -update noar ti set b2='5N24QX5QD3' where id=3; -update noar tt set v0='7YEVQH5M79Q06P' where id=4; -update noar ti set v0='7YEVQH5M79Q06P' where id=4; -update noar tt set b0='OKR252ZEIIK4W031X' where id=4; -update noar ti set b0='OKR252ZEIIK4W031X' where id=4; -update noar tt set v0='RCTUNEGEM9HHSW' where id=4; -update noar ti set v0='RCTUNEGEM9HHSW' where id=4; -update noar tt set b1='32PCUK2826GG' where id=4; -update noar ti set b1='32PCUK2826GG' where id=4; -update noar tt set v0='9ME65ODSRFPDE73Z3' where id=4; -update noar ti set v0='9ME65ODSRFPDE73Z3' where id=4; -update noar tt set b2='VW63MKBAY4I3K9X' where id=4; -update noar ti set b2='VW63MKBAY4I3K9X' where id=4; -update noar tt set v0='UDA' where id=5; -update noar ti set v0='UDA' where id=5; -update noar tt set b0='EJ6D5VW3ZO20F6HUWK4DD84NC6Y' where id=5; -update noar ti set b0='EJ6D5VW3ZO20F6HUWK4DD84NC6Y' where id=5; -update noar tt set v0='F8D1OBTM65ZTRSN1QWEMGHH' where id=5; -update noar ti set v0='F8D1OBTM65ZTRSN1QWEMGHH' where id=5; -update noar tt set b1='YJSXEU25P95G' where id=5; -update noar ti set b1='YJSXEU25P95G' where id=5; -update noar tt set v0='YZ9SJI5FFLW1' where id=5; -update noar ti set v0='YZ9SJI5FFLW1' where id=5; -update noar tt set b2='6VCXQT97L0AYRIYLSUDEEPB' where id=5; -update noar ti set b2='6VCXQT97L0AYRIYLSUDEEPB' where id=5; -update noar tt set v0='B3KZ0EZTUGFZUD9TZ8NDCTCXJOUQA7VW' where id=6; -update noar ti set v0='B3KZ0EZTUGFZUD9TZ8NDCTCXJOUQA7VW' where id=6; -update noar tt set b0='YZH1V4U6SK52EBIGL6' where id=6; -update noar ti set b0='YZH1V4U6SK52EBIGL6' where id=6; -update noar tt set v0='YULBVM1' where id=6; -update noar ti set v0='YULBVM1' where id=6; -update noar tt set b1='GIQX8GUBCMBX7DE6PL0' where id=6; -update noar ti set b1='GIQX8GUBCMBX7DE6PL0' where id=6; -update noar tt set v0='VBQZ07ZY4YFT7' where id=6; -update noar ti set v0='VBQZ07ZY4YFT7' where id=6; -update noar tt set b2='AYS0I804EKVOUCAJET01GEYFBN3YH1HJ' where id=6; -update noar ti set b2='AYS0I804EKVOUCAJET01GEYFBN3YH1HJ' where id=6; -update noar tt set v0='YP91PTVZ8IQ5YWS7CNFKNO' where id=7; -update noar ti set v0='YP91PTVZ8IQ5YWS7CNFKNO' where id=7; -update noar tt set b0='GLOILK015BVL72VZUGFOOA' where id=7; -update noar ti set b0='GLOILK015BVL72VZUGFOOA' where id=7; -update noar tt set v0='RASARM4A9BKFQFGBGCMPJTG' where id=7; -update noar ti set v0='RASARM4A9BKFQFGBGCMPJTG' where id=7; -update noar tt set b1='K' where id=7; -update noar ti set b1='K' where id=7; -update noar tt set v0='H9RPID4JZBX655PFIFJMNJNJI' where id=7; -update noar ti set v0='H9RPID4JZBX655PFIFJMNJNJI' where id=7; -update noar tt set b2='9P5LV7PQ22C' where id=7; -update noar ti set b2='9P5LV7PQ22C' where id=7; -update noar tt set v0='0XTU6QYKXN9JI4RADPS' where id=8; -update noar ti set v0='0XTU6QYKXN9JI4RADPS' where id=8; -update noar tt set b0='HR1N216X32E8DZU4T8BD' where id=8; -update noar ti set b0='HR1N216X32E8DZU4T8BD' where id=8; -update noar tt set v0='3U6L6KDBFI6EZL' where id=8; -update noar ti set v0='3U6L6KDBFI6EZL' where id=8; -update noar tt set b1='9AB3UOB3QPAG' where id=8; -update noar ti set b1='9AB3UOB3QPAG' where id=8; -update noar tt set v0='5BEPSZDGWEY2UUS3GPSXUCZUJJ1EDY' where id=8; -update noar ti set v0='5BEPSZDGWEY2UUS3GPSXUCZUJJ1EDY' where id=8; -update noar tt set b2='O4J4PTYRGZUSNG9QW5SA6KHDTXUQ' where id=8; -update noar ti set b2='O4J4PTYRGZUSNG9QW5SA6KHDTXUQ' where id=8; -update noar tt set v0='69T242S86LZCDCJG4P' where id=9; -update noar ti set v0='69T242S86LZCDCJG4P' where id=9; -update noar tt set b0='CZB568J5' where id=9; -update noar ti set b0='CZB568J5' where id=9; -update noar tt set v0='WTQKSNNL7SFBK9UK' where id=9; -update noar ti set v0='WTQKSNNL7SFBK9UK' where id=9; -update noar tt set b1='6IR75N' where id=9; -update noar ti set b1='6IR75N' where id=9; -update noar tt set v0='15LQ68J3MS1LUWU6WYGS68TFZAVXZ9' where id=9; -update noar ti set v0='15LQ68J3MS1LUWU6WYGS68TFZAVXZ9' where id=9; -update noar tt set b2='SUK1SPW7SXO198S0GM3XMF' where id=9; -update noar ti set b2='SUK1SPW7SXO198S0GM3XMF' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - v0 varchar(256) null, - b0 blob null, - b1 mediumblob null, - b2 mediumblob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='L23JVO0UHDHBSR5JYDB7W' where id=1; -update noar ti set v0='L23JVO0UHDHBSR5JYDB7W' where id=1; -update noar tt set b0='MKPTI3J043PRY2BP' where id=1; -update noar ti set b0='MKPTI3J043PRY2BP' where id=1; -update noar tt set v0='DZUSDSK1063WV' where id=1; -update noar ti set v0='DZUSDSK1063WV' where id=1; -update noar tt set b1='8F5YPE1J71PB3F6WOI3QP8X4U2Z' where id=1; -update noar ti set b1='8F5YPE1J71PB3F6WOI3QP8X4U2Z' where id=1; -update noar tt set v0='G6W739LBYFWYVQ' where id=1; -update noar ti set v0='G6W739LBYFWYVQ' where id=1; -update noar tt set b2='CEB2AIP' where id=1; -update noar ti set b2='CEB2AIP' where id=1; -update noar tt set v0='UXQMN46WT92ISPAEMOW' where id=2; -update noar ti set v0='UXQMN46WT92ISPAEMOW' where id=2; -update noar tt set b0='NKB9PC3HGIBZHSEA53RECEZOO2ZTC' where id=2; -update noar ti set b0='NKB9PC3HGIBZHSEA53RECEZOO2ZTC' where id=2; -update noar tt set v0='X22' where id=2; -update noar ti set v0='X22' where id=2; -update noar tt set b1='R259RG2V8G968RMOGYN2' where id=2; -update noar ti set b1='R259RG2V8G968RMOGYN2' where id=2; -update noar tt set v0='G1QMTV' where id=2; -update noar ti set v0='G1QMTV' where id=2; -update noar tt set b2='RWJKOG6ZR3TI2T0WLAQACCNZFHD6A8' where id=2; -update noar ti set b2='RWJKOG6ZR3TI2T0WLAQACCNZFHD6A8' where id=2; -update noar tt set v0='76HXO72TSYEEI9' where id=3; -update noar ti set v0='76HXO72TSYEEI9' where id=3; -update noar tt set b0='TXABT5AVF1MBWA7U' where id=3; -update noar ti set b0='TXABT5AVF1MBWA7U' where id=3; -update noar tt set v0='9KC9D0592I0SQRK49P5JJ23J0Z' where id=3; -update noar ti set v0='9KC9D0592I0SQRK49P5JJ23J0Z' where id=3; -update noar tt set b1='RR7XHD7MMJN3ZSEDS2R9PSSK' where id=3; -update noar ti set b1='RR7XHD7MMJN3ZSEDS2R9PSSK' where id=3; -update noar tt set v0='CDXOBTBHJ' where id=3; -update noar ti set v0='CDXOBTBHJ' where id=3; -update noar tt set b2='3QFH6LK51HFAQCK0DR4I22NM26C' where id=3; -update noar ti set b2='3QFH6LK51HFAQCK0DR4I22NM26C' where id=3; -update noar tt set v0='NXFEIUECQT13JE78SSQN2HWZHGGE' where id=4; -update noar ti set v0='NXFEIUECQT13JE78SSQN2HWZHGGE' where id=4; -update noar tt set b0='KY9B62SBKFMZ9HF5AH' where id=4; -update noar ti set b0='KY9B62SBKFMZ9HF5AH' where id=4; -update noar tt set v0='6Z73Z89' where id=4; -update noar ti set v0='6Z73Z89' where id=4; -update noar tt set b1='U1TRVLQCBI1X7' where id=4; -update noar ti set b1='U1TRVLQCBI1X7' where id=4; -update noar tt set v0='P7F86F1TIWW' where id=4; -update noar ti set v0='P7F86F1TIWW' where id=4; -update noar tt set b2='00FLJI' where id=4; -update noar ti set b2='00FLJI' where id=4; -update noar tt set v0='MWRTHB3RLJ' where id=5; -update noar ti set v0='MWRTHB3RLJ' where id=5; -update noar tt set b0='2O7GJDXGRVQE90H1AK4OJ4KA9' where id=5; -update noar ti set b0='2O7GJDXGRVQE90H1AK4OJ4KA9' where id=5; -update noar tt set v0='NMUWM2FKI0RSXCOZS' where id=5; -update noar ti set v0='NMUWM2FKI0RSXCOZS' where id=5; -update noar tt set b1='2X89' where id=5; -update noar ti set b1='2X89' where id=5; -update noar tt set v0='XAWYR86T0G9DOMSF3VVXL' where id=5; -update noar ti set v0='XAWYR86T0G9DOMSF3VVXL' where id=5; -update noar tt set b2='H6ZY6HCSQ7NESTD247C' where id=5; -update noar ti set b2='H6ZY6HCSQ7NESTD247C' where id=5; -update noar tt set v0='EFHKQRVHCB6LXJ1ZBOS' where id=6; -update noar ti set v0='EFHKQRVHCB6LXJ1ZBOS' where id=6; -update noar tt set b0='XF' where id=6; -update noar ti set b0='XF' where id=6; -update noar tt set v0='88' where id=6; -update noar ti set v0='88' where id=6; -update noar tt set b1='BZER014Y791XS3OX3Y8GYNBTI3WC' where id=6; -update noar ti set b1='BZER014Y791XS3OX3Y8GYNBTI3WC' where id=6; -update noar tt set v0='WIHDAVU' where id=6; -update noar ti set v0='WIHDAVU' where id=6; -update noar tt set b2='NYJG0QPZCCIRBIDDL' where id=6; -update noar ti set b2='NYJG0QPZCCIRBIDDL' where id=6; -update noar tt set v0='KASW3I0EVTBEV8BR9GX4VD724ODZY' where id=7; -update noar ti set v0='KASW3I0EVTBEV8BR9GX4VD724ODZY' where id=7; -update noar tt set b0='GCXH6X5JE6U0TDEX5PX18D' where id=7; -update noar ti set b0='GCXH6X5JE6U0TDEX5PX18D' where id=7; -update noar tt set v0='R0IF0T0XHQHE7' where id=7; -update noar ti set v0='R0IF0T0XHQHE7' where id=7; -update noar tt set b1='64H32X' where id=7; -update noar ti set b1='64H32X' where id=7; -update noar tt set v0='Q72AO9876' where id=7; -update noar ti set v0='Q72AO9876' where id=7; -update noar tt set b2='2' where id=7; -update noar ti set b2='2' where id=7; -update noar tt set v0='06K8SZ46D' where id=8; -update noar ti set v0='06K8SZ46D' where id=8; -update noar tt set b0='EM1WWEREDTE4AJARNKC' where id=8; -update noar ti set b0='EM1WWEREDTE4AJARNKC' where id=8; -update noar tt set v0='DCUP2AWKDWUP630HCQHA' where id=8; -update noar ti set v0='DCUP2AWKDWUP630HCQHA' where id=8; -update noar tt set b1='W8OJTVT9Q09QMB6M70EY9MZ25H' where id=8; -update noar ti set b1='W8OJTVT9Q09QMB6M70EY9MZ25H' where id=8; -update noar tt set v0='HZN48T' where id=8; -update noar ti set v0='HZN48T' where id=8; -update noar tt set b2='KB19D9UTK' where id=8; -update noar ti set b2='KB19D9UTK' where id=8; -update noar tt set v0='W' where id=9; -update noar ti set v0='W' where id=9; -update noar tt set b0='2TSQQQHHLS6GKQ0KZMV1HA77RJJKXY' where id=9; -update noar ti set b0='2TSQQQHHLS6GKQ0KZMV1HA77RJJKXY' where id=9; -update noar tt set v0='8IS5ZCQOXGYLHI9C81KGTI55UZ3ISEWT' where id=9; -update noar ti set v0='8IS5ZCQOXGYLHI9C81KGTI55UZ3ISEWT' where id=9; -update noar tt set b1='N' where id=9; -update noar ti set b1='N' where id=9; -update noar tt set v0='RNDUXEOH16N7SK2R6P0SXK814GJCM' where id=9; -update noar ti set v0='RNDUXEOH16N7SK2R6P0SXK814GJCM' where id=9; -update noar tt set b2='YXWJ30BF6XUE84P3U' where id=9; -update noar ti set b2='YXWJ30BF6XUE84P3U' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - v0 varchar(32) not null, - b0 blob not null, - b1 mediumblob not null, - b2 mediumblob not null -) engine=tokudb; -insert into tt values (1,'','','',''); -insert into tt values (2,'','','',''); -insert into tt values (3,'','','',''); -insert into tt values (4,'','','',''); -insert into tt values (5,'','','',''); -insert into tt values (6,'','','',''); -insert into tt values (7,'','','',''); -insert into tt values (8,'','','',''); -insert into tt values (9,'','','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='ZER3B2TB' where id=1; -update noar ti set v0='ZER3B2TB' where id=1; -update noar tt set b0='OM3NIZCJASAZIK0T7VQV53D9WZM9TU' where id=1; -update noar ti set b0='OM3NIZCJASAZIK0T7VQV53D9WZM9TU' where id=1; -update noar tt set v0='BJJT72' where id=1; -update noar ti set v0='BJJT72' where id=1; -update noar tt set b1='2YQ41M89C0PMEL241QNVZCIPP6S7SWR' where id=1; -update noar ti set b1='2YQ41M89C0PMEL241QNVZCIPP6S7SWR' where id=1; -update noar tt set v0='GZHONEIXEE' where id=1; -update noar ti set v0='GZHONEIXEE' where id=1; -update noar tt set b2='B' where id=1; -update noar ti set b2='B' where id=1; -update noar tt set v0='Y1F1JSFXMMBYY8KUPEZHMXMP866' where id=2; -update noar ti set v0='Y1F1JSFXMMBYY8KUPEZHMXMP866' where id=2; -update noar tt set b0='6CAMSKV' where id=2; -update noar ti set b0='6CAMSKV' where id=2; -update noar tt set v0='9G9TWJ3T8UYGQ4CZNXJC3NG11' where id=2; -update noar ti set v0='9G9TWJ3T8UYGQ4CZNXJC3NG11' where id=2; -update noar tt set b1='RM7KCXC8FKHU7YY6HUP1DELLR74' where id=2; -update noar ti set b1='RM7KCXC8FKHU7YY6HUP1DELLR74' where id=2; -update noar tt set v0='YFTQOOJUC7LJ5H' where id=2; -update noar ti set v0='YFTQOOJUC7LJ5H' where id=2; -update noar tt set b2='5L0BWCR4PL25' where id=2; -update noar ti set b2='5L0BWCR4PL25' where id=2; -update noar tt set v0='12ZH4BYR7IA51KI0H3QPZ61J' where id=3; -update noar ti set v0='12ZH4BYR7IA51KI0H3QPZ61J' where id=3; -update noar tt set b0='NF0N3M91UHYHVTCJ4X58RDAPD0QT13' where id=3; -update noar ti set b0='NF0N3M91UHYHVTCJ4X58RDAPD0QT13' where id=3; -update noar tt set v0='3PX5CPKSDHLKDX5DB' where id=3; -update noar ti set v0='3PX5CPKSDHLKDX5DB' where id=3; -update noar tt set b1='V2IVULHBCZEISR9ASTF81AIV' where id=3; -update noar ti set b1='V2IVULHBCZEISR9ASTF81AIV' where id=3; -update noar tt set v0='J1D98GFRQ' where id=3; -update noar ti set v0='J1D98GFRQ' where id=3; -update noar tt set b2='O79MR8LFTGWRHYCI7FP3' where id=3; -update noar ti set b2='O79MR8LFTGWRHYCI7FP3' where id=3; -update noar tt set v0='AOJLLR4RIKNLY166PIN1XBMFR' where id=4; -update noar ti set v0='AOJLLR4RIKNLY166PIN1XBMFR' where id=4; -update noar tt set b0='0QLH' where id=4; -update noar ti set b0='0QLH' where id=4; -update noar tt set v0='ZEMNBKSMEL825FSHG9U' where id=4; -update noar ti set v0='ZEMNBKSMEL825FSHG9U' where id=4; -update noar tt set b1='30R7LQ861ZU535IKTNQ' where id=4; -update noar ti set b1='30R7LQ861ZU535IKTNQ' where id=4; -update noar tt set v0='VSS177UTQCQ3EXFFIV35KWPP' where id=4; -update noar ti set v0='VSS177UTQCQ3EXFFIV35KWPP' where id=4; -update noar tt set b2='RJ3B1O2B9JLKLIX3VEO' where id=4; -update noar ti set b2='RJ3B1O2B9JLKLIX3VEO' where id=4; -update noar tt set v0='VJ2GJ9UHEOKUCHCQO2ZR' where id=5; -update noar ti set v0='VJ2GJ9UHEOKUCHCQO2ZR' where id=5; -update noar tt set b0='Z8J38QRMD6U4Q8R4WRUWNZAA78DP8' where id=5; -update noar ti set b0='Z8J38QRMD6U4Q8R4WRUWNZAA78DP8' where id=5; -update noar tt set v0='H86ESHCEPJ' where id=5; -update noar ti set v0='H86ESHCEPJ' where id=5; -update noar tt set b1='7PBBSVC0KSXACSEKKWAABY28O3' where id=5; -update noar ti set b1='7PBBSVC0KSXACSEKKWAABY28O3' where id=5; -update noar tt set v0='8IR3IHD5LAR36X7UE0R' where id=5; -update noar ti set v0='8IR3IHD5LAR36X7UE0R' where id=5; -update noar tt set b2='I2V7XPDJVWEA' where id=5; -update noar ti set b2='I2V7XPDJVWEA' where id=5; -update noar tt set v0='D' where id=6; -update noar ti set v0='D' where id=6; -update noar tt set b0='NIQ2XFMXO22' where id=6; -update noar ti set b0='NIQ2XFMXO22' where id=6; -update noar tt set v0='LA1VGDAVEDESQ7B5' where id=6; -update noar ti set v0='LA1VGDAVEDESQ7B5' where id=6; -update noar tt set b1='0ESWKMPYO2S8NAA' where id=6; -update noar ti set b1='0ESWKMPYO2S8NAA' where id=6; -update noar tt set v0='UJFWZCBDXW4G99' where id=6; -update noar ti set v0='UJFWZCBDXW4G99' where id=6; -update noar tt set b2='6O5X47SSSH3ZEZ6RLLT70Y86ARHF998' where id=6; -update noar ti set b2='6O5X47SSSH3ZEZ6RLLT70Y86ARHF998' where id=6; -update noar tt set v0='R' where id=7; -update noar ti set v0='R' where id=7; -update noar tt set b0='8IBIP4YPWZJO90JULIBMFX8SW' where id=7; -update noar ti set b0='8IBIP4YPWZJO90JULIBMFX8SW' where id=7; -update noar tt set v0='9US3WWSD54WU5BPYBXT8I8N5F8' where id=7; -update noar ti set v0='9US3WWSD54WU5BPYBXT8I8N5F8' where id=7; -update noar tt set b1='E2DJZ7YNJJMLE96' where id=7; -update noar ti set b1='E2DJZ7YNJJMLE96' where id=7; -update noar tt set v0='9UFXX5IWV68YADBT99YR8X2JES78' where id=7; -update noar ti set v0='9UFXX5IWV68YADBT99YR8X2JES78' where id=7; -update noar tt set b2='38E6IQJ6' where id=7; -update noar ti set b2='38E6IQJ6' where id=7; -update noar tt set v0='4P8Q713F5' where id=8; -update noar ti set v0='4P8Q713F5' where id=8; -update noar tt set b0='L3G5OSJ07WU8TXJYSV939G8' where id=8; -update noar ti set b0='L3G5OSJ07WU8TXJYSV939G8' where id=8; -update noar tt set v0='4Z28GWV0WI9DK' where id=8; -update noar ti set v0='4Z28GWV0WI9DK' where id=8; -update noar tt set b1='YNGBR14' where id=8; -update noar ti set b1='YNGBR14' where id=8; -update noar tt set v0='KNJ1OR1I06RCB5EU5HW3NRNFXE5BBMQ' where id=8; -update noar ti set v0='KNJ1OR1I06RCB5EU5HW3NRNFXE5BBMQ' where id=8; -update noar tt set b2='0U4B4NEA8KZTNWC8MI' where id=8; -update noar ti set b2='0U4B4NEA8KZTNWC8MI' where id=8; -update noar tt set v0='CSGHKZSBAHBDO3I4D653ST18QX' where id=9; -update noar ti set v0='CSGHKZSBAHBDO3I4D653ST18QX' where id=9; -update noar tt set b0='UZ' where id=9; -update noar ti set b0='UZ' where id=9; -update noar tt set v0='21T1PSG8YVT3RR383YNM0' where id=9; -update noar ti set v0='21T1PSG8YVT3RR383YNM0' where id=9; -update noar tt set b1='QYV96LKUZ' where id=9; -update noar ti set b1='QYV96LKUZ' where id=9; -update noar tt set v0='BWURG0KM06RKWPZ53H2EXC9PYA8ND4U5' where id=9; -update noar ti set v0='BWURG0KM06RKWPZ53H2EXC9PYA8ND4U5' where id=9; -update noar tt set b2='WGDVLBDEZ56O45GNFND' where id=9; -update noar ti set b2='WGDVLBDEZ56O45GNFND' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - v0 varchar(256) not null, - b0 blob not null, - b1 mediumblob not null, - b2 mediumblob not null -) engine=tokudb; -insert into tt values (1,'','','',''); -insert into tt values (2,'','','',''); -insert into tt values (3,'','','',''); -insert into tt values (4,'','','',''); -insert into tt values (5,'','','',''); -insert into tt values (6,'','','',''); -insert into tt values (7,'','','',''); -insert into tt values (8,'','','',''); -insert into tt values (9,'','','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='CCK0JJHK7TK0BSFL2S1HM2' where id=1; -update noar ti set v0='CCK0JJHK7TK0BSFL2S1HM2' where id=1; -update noar tt set b0='VL18TR2DNYDC25ZG' where id=1; -update noar ti set b0='VL18TR2DNYDC25ZG' where id=1; -update noar tt set v0='B8AKFZDJ4HKCMSFNEC8WUHI8S0ZH3L6T' where id=1; -update noar ti set v0='B8AKFZDJ4HKCMSFNEC8WUHI8S0ZH3L6T' where id=1; -update noar tt set b1='4FYM92FEMWKSBPP1LW' where id=1; -update noar ti set b1='4FYM92FEMWKSBPP1LW' where id=1; -update noar tt set v0='JC' where id=1; -update noar ti set v0='JC' where id=1; -update noar tt set b2='2H' where id=1; -update noar ti set b2='2H' where id=1; -update noar tt set v0='UU1BRNR99FG59BXQQLUJ8KYFIOLJ38G' where id=2; -update noar ti set v0='UU1BRNR99FG59BXQQLUJ8KYFIOLJ38G' where id=2; -update noar tt set b0='KGSP7ES2YO3UH2LQR' where id=2; -update noar ti set b0='KGSP7ES2YO3UH2LQR' where id=2; -update noar tt set v0='USG' where id=2; -update noar ti set v0='USG' where id=2; -update noar tt set b1='2964GQ' where id=2; -update noar ti set b1='2964GQ' where id=2; -update noar tt set v0='37B' where id=2; -update noar ti set v0='37B' where id=2; -update noar tt set b2='DE4Y61ZGKWVQCN1DJXY2UGGW4BC1' where id=2; -update noar ti set b2='DE4Y61ZGKWVQCN1DJXY2UGGW4BC1' where id=2; -update noar tt set v0='YQM7CNRCYIS82JLNP9ABP9MMW6QSB' where id=3; -update noar ti set v0='YQM7CNRCYIS82JLNP9ABP9MMW6QSB' where id=3; -update noar tt set b0='KMIXKI5GZAB8V5TCFRE5' where id=3; -update noar ti set b0='KMIXKI5GZAB8V5TCFRE5' where id=3; -update noar tt set v0='PO9RSR13T' where id=3; -update noar ti set v0='PO9RSR13T' where id=3; -update noar tt set b1='GUGA8H5PAXBQQ7MYER0D' where id=3; -update noar ti set b1='GUGA8H5PAXBQQ7MYER0D' where id=3; -update noar tt set v0='VF3QKSSOV78CX7MA0A2N' where id=3; -update noar ti set v0='VF3QKSSOV78CX7MA0A2N' where id=3; -update noar tt set b2='IK6Y' where id=3; -update noar ti set b2='IK6Y' where id=3; -update noar tt set v0='QPY891R3QSBMEG3A01AMUMG' where id=4; -update noar ti set v0='QPY891R3QSBMEG3A01AMUMG' where id=4; -update noar tt set b0='MGGM9' where id=4; -update noar ti set b0='MGGM9' where id=4; -update noar tt set v0='IERH' where id=4; -update noar ti set v0='IERH' where id=4; -update noar tt set b1='3OBWCFUP7GIRV9' where id=4; -update noar ti set b1='3OBWCFUP7GIRV9' where id=4; -update noar tt set v0='IXV' where id=4; -update noar ti set v0='IXV' where id=4; -update noar tt set b2='APXIHLJ580D7J5B71' where id=4; -update noar ti set b2='APXIHLJ580D7J5B71' where id=4; -update noar tt set v0='U2IL4JG33NT24NE8LY' where id=5; -update noar ti set v0='U2IL4JG33NT24NE8LY' where id=5; -update noar tt set b0='DLI4DXN' where id=5; -update noar ti set b0='DLI4DXN' where id=5; -update noar tt set v0='8ORFOQ73YOIH3' where id=5; -update noar ti set v0='8ORFOQ73YOIH3' where id=5; -update noar tt set b1='KL6EE66XTKR59ZSPS6W714IK' where id=5; -update noar ti set b1='KL6EE66XTKR59ZSPS6W714IK' where id=5; -update noar tt set v0='JQZ5X92O2MSUW7ZGFF2JJIOHMYZRMN1' where id=5; -update noar ti set v0='JQZ5X92O2MSUW7ZGFF2JJIOHMYZRMN1' where id=5; -update noar tt set b2='VCMIP73NF3HJM5QQDAECK' where id=5; -update noar ti set b2='VCMIP73NF3HJM5QQDAECK' where id=5; -update noar tt set v0='XF2B' where id=6; -update noar ti set v0='XF2B' where id=6; -update noar tt set b0='1RJZTW7LCZA0KRG0FE4VLKX2' where id=6; -update noar ti set b0='1RJZTW7LCZA0KRG0FE4VLKX2' where id=6; -update noar tt set v0='GSK501DWXYLPS13LU' where id=6; -update noar ti set v0='GSK501DWXYLPS13LU' where id=6; -update noar tt set b1='GNCK3I7MPEGODCWB62SSIFATXI' where id=6; -update noar ti set b1='GNCK3I7MPEGODCWB62SSIFATXI' where id=6; -update noar tt set v0='K60R5UCOK2E' where id=6; -update noar ti set v0='K60R5UCOK2E' where id=6; -update noar tt set b2='XU5GVMZCYA5GS18' where id=6; -update noar ti set b2='XU5GVMZCYA5GS18' where id=6; -update noar tt set v0='FJXCHJU2XCJF0XLM8N1G8VA44EW421QO' where id=7; -update noar ti set v0='FJXCHJU2XCJF0XLM8N1G8VA44EW421QO' where id=7; -update noar tt set b0='CN73PX7SFGUVX' where id=7; -update noar ti set b0='CN73PX7SFGUVX' where id=7; -update noar tt set v0='UK9QL' where id=7; -update noar ti set v0='UK9QL' where id=7; -update noar tt set b1='Y3H98RLLVX5FTUXP2HY252J92B2WDL' where id=7; -update noar ti set b1='Y3H98RLLVX5FTUXP2HY252J92B2WDL' where id=7; -update noar tt set v0='34HPE' where id=7; -update noar ti set v0='34HPE' where id=7; -update noar tt set b2='JUPPB4RDTY2OZ2XMXOR' where id=7; -update noar ti set b2='JUPPB4RDTY2OZ2XMXOR' where id=7; -update noar tt set v0='TMJV7PIHDU4O09GLRR5DZ2J' where id=8; -update noar ti set v0='TMJV7PIHDU4O09GLRR5DZ2J' where id=8; -update noar tt set b0='TNZK2E0KUKJBZ' where id=8; -update noar ti set b0='TNZK2E0KUKJBZ' where id=8; -update noar tt set v0='C' where id=8; -update noar ti set v0='C' where id=8; -update noar tt set b1='74O2NJ39WIUJ9BHT08GJNE' where id=8; -update noar ti set b1='74O2NJ39WIUJ9BHT08GJNE' where id=8; -update noar tt set v0='KB7QSJSUPRGALK' where id=8; -update noar ti set v0='KB7QSJSUPRGALK' where id=8; -update noar tt set b2='UP4DW' where id=8; -update noar ti set b2='UP4DW' where id=8; -update noar tt set v0='D2XC722DSEZHLEAG5V' where id=9; -update noar ti set v0='D2XC722DSEZHLEAG5V' where id=9; -update noar tt set b0='C8FCTDCLFUJOVIL' where id=9; -update noar ti set b0='C8FCTDCLFUJOVIL' where id=9; -update noar tt set v0='ASX1JM3TRVHLI5' where id=9; -update noar ti set v0='ASX1JM3TRVHLI5' where id=9; -update noar tt set b1='LJCX8EEK2RZALC3PTVJFM' where id=9; -update noar ti set b1='LJCX8EEK2RZALC3PTVJFM' where id=9; -update noar tt set v0='Y7BB0428G8RCGVT6QSYDAIYGM' where id=9; -update noar ti set v0='Y7BB0428G8RCGVT6QSYDAIYGM' where id=9; -update noar tt set b2='FC0OHEY' where id=9; -update noar ti set b2='FC0OHEY' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - v0 varchar(32) null, - b0 blob null, - b1 mediumblob null, - b2 longblob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='68WFG9DJ0F5SPGNLS9Y3VBGQW' where id=1; -update noar ti set v0='68WFG9DJ0F5SPGNLS9Y3VBGQW' where id=1; -update noar tt set b0='GJJQDWXFVVW9W1C1V3IGUY0H73C0Z' where id=1; -update noar ti set b0='GJJQDWXFVVW9W1C1V3IGUY0H73C0Z' where id=1; -update noar tt set v0='HZLH' where id=1; -update noar ti set v0='HZLH' where id=1; -update noar tt set b1='TAMNEBRZIYWZMMAXXC' where id=1; -update noar ti set b1='TAMNEBRZIYWZMMAXXC' where id=1; -update noar tt set v0='1GN9L6YQDOW5B2D7QNP2KWHJZAN7UM5X' where id=1; -update noar ti set v0='1GN9L6YQDOW5B2D7QNP2KWHJZAN7UM5X' where id=1; -update noar tt set b2='MCBWMPAKB0LF58N70EG2X7C8JE76W4DY' where id=1; -update noar ti set b2='MCBWMPAKB0LF58N70EG2X7C8JE76W4DY' where id=1; -update noar tt set v0='HSFTWCOI3WKZPYIW1ZAEZT2EXG6KQ6UM' where id=2; -update noar ti set v0='HSFTWCOI3WKZPYIW1ZAEZT2EXG6KQ6UM' where id=2; -update noar tt set b0='36PUJW3R3SRCZANOLG42OKQG0WW' where id=2; -update noar ti set b0='36PUJW3R3SRCZANOLG42OKQG0WW' where id=2; -update noar tt set v0='EHT6WQDXJ0KCVWENEJD4I9EEKREG' where id=2; -update noar ti set v0='EHT6WQDXJ0KCVWENEJD4I9EEKREG' where id=2; -update noar tt set b1='FI0P8USQIS1HAR' where id=2; -update noar ti set b1='FI0P8USQIS1HAR' where id=2; -update noar tt set v0='NABZ2R0EE4KRD4HB0KNQW' where id=2; -update noar ti set v0='NABZ2R0EE4KRD4HB0KNQW' where id=2; -update noar tt set b2='MHJO9XHLPB9P441LYDSSBXBS26O0' where id=2; -update noar ti set b2='MHJO9XHLPB9P441LYDSSBXBS26O0' where id=2; -update noar tt set v0='EYM93FJNGMY4GH71C6X4D7LG7O' where id=3; -update noar ti set v0='EYM93FJNGMY4GH71C6X4D7LG7O' where id=3; -update noar tt set b0='4WE5X4268' where id=3; -update noar ti set b0='4WE5X4268' where id=3; -update noar tt set v0='RZ8AQRCT57EFYIVQK3' where id=3; -update noar ti set v0='RZ8AQRCT57EFYIVQK3' where id=3; -update noar tt set b1='6Z3G17UE1T6DWAKCPOT' where id=3; -update noar ti set b1='6Z3G17UE1T6DWAKCPOT' where id=3; -update noar tt set v0='TNW6Z5BJMUULNM3E5HDZW98DYXXLAHE' where id=3; -update noar ti set v0='TNW6Z5BJMUULNM3E5HDZW98DYXXLAHE' where id=3; -update noar tt set b2='V736194IVASEFXV9QE71NTETX8HMPK' where id=3; -update noar ti set b2='V736194IVASEFXV9QE71NTETX8HMPK' where id=3; -update noar tt set v0='Q' where id=4; -update noar ti set v0='Q' where id=4; -update noar tt set b0='790AQ3FR1XAKQ7J96O' where id=4; -update noar ti set b0='790AQ3FR1XAKQ7J96O' where id=4; -update noar tt set v0='RNC0NJXG' where id=4; -update noar ti set v0='RNC0NJXG' where id=4; -update noar tt set b1='BS8MUZSWDI02YLPNBXKZ' where id=4; -update noar ti set b1='BS8MUZSWDI02YLPNBXKZ' where id=4; -update noar tt set v0='HLIM16A3WWMFST257RS7E1R8ZOAL' where id=4; -update noar ti set v0='HLIM16A3WWMFST257RS7E1R8ZOAL' where id=4; -update noar tt set b2='716E9B94DMOQRWBDXLLTE81' where id=4; -update noar ti set b2='716E9B94DMOQRWBDXLLTE81' where id=4; -update noar tt set v0='LTPTMWH7' where id=5; -update noar ti set v0='LTPTMWH7' where id=5; -update noar tt set b0='6DLTZPWJXHA57OL7O' where id=5; -update noar ti set b0='6DLTZPWJXHA57OL7O' where id=5; -update noar tt set v0='JC4HUNG4OL5XTXRKBKL59PBO' where id=5; -update noar ti set v0='JC4HUNG4OL5XTXRKBKL59PBO' where id=5; -update noar tt set b1='OWET5SAJY93XXWY6Q' where id=5; -update noar ti set b1='OWET5SAJY93XXWY6Q' where id=5; -update noar tt set v0='LUCQN1UX8AODTLE7X8HGPITBI12NQ' where id=5; -update noar ti set v0='LUCQN1UX8AODTLE7X8HGPITBI12NQ' where id=5; -update noar tt set b2='LIC9K2G7' where id=5; -update noar ti set b2='LIC9K2G7' where id=5; -update noar tt set v0='9X4I118ATM6XW2CP3' where id=6; -update noar ti set v0='9X4I118ATM6XW2CP3' where id=6; -update noar tt set b0='UWE8MRPUXVGIOLBYZPP2N9' where id=6; -update noar ti set b0='UWE8MRPUXVGIOLBYZPP2N9' where id=6; -update noar tt set v0='V' where id=6; -update noar ti set v0='V' where id=6; -update noar tt set b1='JKQE0YCBT0139G' where id=6; -update noar ti set b1='JKQE0YCBT0139G' where id=6; -update noar tt set v0='YK81UBKGIJ6LSIB7J4' where id=6; -update noar ti set v0='YK81UBKGIJ6LSIB7J4' where id=6; -update noar tt set b2='DRJONJWOM2EVZ90YO3C3CWPPK8ZZ' where id=6; -update noar ti set b2='DRJONJWOM2EVZ90YO3C3CWPPK8ZZ' where id=6; -update noar tt set v0='KGVBOBAQ74UFG26PG4F7CMYGIFQX6Z' where id=7; -update noar ti set v0='KGVBOBAQ74UFG26PG4F7CMYGIFQX6Z' where id=7; -update noar tt set b0='ROZ88VBKH1PQTULLA4TTH1FEXW' where id=7; -update noar ti set b0='ROZ88VBKH1PQTULLA4TTH1FEXW' where id=7; -update noar tt set v0='TMIBLKFKNNQ5ID7HYNK0KNZKQ8' where id=7; -update noar ti set v0='TMIBLKFKNNQ5ID7HYNK0KNZKQ8' where id=7; -update noar tt set b1='LU9GMFQ5XC026GHOMM40A4VS31N' where id=7; -update noar ti set b1='LU9GMFQ5XC026GHOMM40A4VS31N' where id=7; -update noar tt set v0='MJNSE4RU0' where id=7; -update noar ti set v0='MJNSE4RU0' where id=7; -update noar tt set b2='L7YVQU7FC099COPF2HVRH9' where id=7; -update noar ti set b2='L7YVQU7FC099COPF2HVRH9' where id=7; -update noar tt set v0='JNR0EEWR3VQ9LN7GJX9TJTQVN' where id=8; -update noar ti set v0='JNR0EEWR3VQ9LN7GJX9TJTQVN' where id=8; -update noar tt set b0='QK2HW51U16IAQXEMQDLEM' where id=8; -update noar ti set b0='QK2HW51U16IAQXEMQDLEM' where id=8; -update noar tt set v0='6YHWAIS3P7' where id=8; -update noar ti set v0='6YHWAIS3P7' where id=8; -update noar tt set b1='DVTRZJ41A6SL4CYI43J' where id=8; -update noar ti set b1='DVTRZJ41A6SL4CYI43J' where id=8; -update noar tt set v0='PYGO8HY' where id=8; -update noar ti set v0='PYGO8HY' where id=8; -update noar tt set b2='6' where id=8; -update noar ti set b2='6' where id=8; -update noar tt set v0='YVF7G0RPZK8GH0W4L5U' where id=9; -update noar ti set v0='YVF7G0RPZK8GH0W4L5U' where id=9; -update noar tt set b0='ZVW0D' where id=9; -update noar ti set b0='ZVW0D' where id=9; -update noar tt set v0='WRBRJR0PUWNQXLWK' where id=9; -update noar ti set v0='WRBRJR0PUWNQXLWK' where id=9; -update noar tt set b1='MF36U4O' where id=9; -update noar ti set b1='MF36U4O' where id=9; -update noar tt set v0='76LSI1ZY1YW3DGEU87GNOUZL' where id=9; -update noar ti set v0='76LSI1ZY1YW3DGEU87GNOUZL' where id=9; -update noar tt set b2='BKIWO5A0M1X96BQLKZS' where id=9; -update noar ti set b2='BKIWO5A0M1X96BQLKZS' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - v0 varchar(256) null, - b0 blob null, - b1 mediumblob null, - b2 longblob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='MO3D30LM8B0Q8OBR' where id=1; -update noar ti set v0='MO3D30LM8B0Q8OBR' where id=1; -update noar tt set b0='37UJPMVM20AZA1MCKSN9A8N5OY' where id=1; -update noar ti set b0='37UJPMVM20AZA1MCKSN9A8N5OY' where id=1; -update noar tt set v0='DA85PD9SU6HV2R' where id=1; -update noar ti set v0='DA85PD9SU6HV2R' where id=1; -update noar tt set b1='4' where id=1; -update noar ti set b1='4' where id=1; -update noar tt set v0='U0XSXPLOVC0MIUTXDNR8B' where id=1; -update noar ti set v0='U0XSXPLOVC0MIUTXDNR8B' where id=1; -update noar tt set b2='9N5BJO7SU3JBSEHNM9DKWI8796Z' where id=1; -update noar ti set b2='9N5BJO7SU3JBSEHNM9DKWI8796Z' where id=1; -update noar tt set v0='2RVYVSG054HQH7DCBCGAV' where id=2; -update noar ti set v0='2RVYVSG054HQH7DCBCGAV' where id=2; -update noar tt set b0='Z' where id=2; -update noar ti set b0='Z' where id=2; -update noar tt set v0='0IV3OCI9CC059E68MGHJ' where id=2; -update noar ti set v0='0IV3OCI9CC059E68MGHJ' where id=2; -update noar tt set b1='BCNDHCCPJDXD27KA8L' where id=2; -update noar ti set b1='BCNDHCCPJDXD27KA8L' where id=2; -update noar tt set v0='XO' where id=2; -update noar ti set v0='XO' where id=2; -update noar tt set b2='MHQ43XP8IY2Q0TFZVUS' where id=2; -update noar ti set b2='MHQ43XP8IY2Q0TFZVUS' where id=2; -update noar tt set v0='O1RIQFCMTEDOERWIS8L5BV52RN7OF75' where id=3; -update noar ti set v0='O1RIQFCMTEDOERWIS8L5BV52RN7OF75' where id=3; -update noar tt set b0='6CXKYU6MGWCYNT' where id=3; -update noar ti set b0='6CXKYU6MGWCYNT' where id=3; -update noar tt set v0='OPRAL68V3W3F' where id=3; -update noar ti set v0='OPRAL68V3W3F' where id=3; -update noar tt set b1='6CR23K' where id=3; -update noar ti set b1='6CR23K' where id=3; -update noar tt set v0='PEU' where id=3; -update noar ti set v0='PEU' where id=3; -update noar tt set b2='O6Y0GD' where id=3; -update noar ti set b2='O6Y0GD' where id=3; -update noar tt set v0='NBCJ4ENSSJVK7284DDBH' where id=4; -update noar ti set v0='NBCJ4ENSSJVK7284DDBH' where id=4; -update noar tt set b0='MNXVJ8G8A040JG4' where id=4; -update noar ti set b0='MNXVJ8G8A040JG4' where id=4; -update noar tt set v0='HWUP083X6QYO78Z85BEU0AJI3I2SS5QG' where id=4; -update noar ti set v0='HWUP083X6QYO78Z85BEU0AJI3I2SS5QG' where id=4; -update noar tt set b1='F18NE22E2NWXRCSC' where id=4; -update noar ti set b1='F18NE22E2NWXRCSC' where id=4; -update noar tt set v0='XMMFLCB38E' where id=4; -update noar ti set v0='XMMFLCB38E' where id=4; -update noar tt set b2='4S6L18AMFFHZVQXN' where id=4; -update noar ti set b2='4S6L18AMFFHZVQXN' where id=4; -update noar tt set v0='1HT699BJXLWF7PHV81P' where id=5; -update noar ti set v0='1HT699BJXLWF7PHV81P' where id=5; -update noar tt set b0='C7' where id=5; -update noar ti set b0='C7' where id=5; -update noar tt set v0='LKT0J02L5' where id=5; -update noar ti set v0='LKT0J02L5' where id=5; -update noar tt set b1='SSXRD4QSOL1MBF7RMZB6POOCJHR1B' where id=5; -update noar ti set b1='SSXRD4QSOL1MBF7RMZB6POOCJHR1B' where id=5; -update noar tt set v0='P0YFEV2JSP94FQULY2NNVGR7E1AT8PM' where id=5; -update noar ti set v0='P0YFEV2JSP94FQULY2NNVGR7E1AT8PM' where id=5; -update noar tt set b2='3S4GS23F93JGACHMR8QZKC1P5' where id=5; -update noar ti set b2='3S4GS23F93JGACHMR8QZKC1P5' where id=5; -update noar tt set v0='G3B9IOQ7I6HI3K' where id=6; -update noar ti set v0='G3B9IOQ7I6HI3K' where id=6; -update noar tt set b0='F734M595W6TN6VZ559JMJF7T' where id=6; -update noar ti set b0='F734M595W6TN6VZ559JMJF7T' where id=6; -update noar tt set v0='T2GNQ' where id=6; -update noar ti set v0='T2GNQ' where id=6; -update noar tt set b1='2PY84OQAHQ0BUQYELHO66XS8IZ4' where id=6; -update noar ti set b1='2PY84OQAHQ0BUQYELHO66XS8IZ4' where id=6; -update noar tt set v0='BQB7OXKA1INZPV323KLTVGZKU5D' where id=6; -update noar ti set v0='BQB7OXKA1INZPV323KLTVGZKU5D' where id=6; -update noar tt set b2='CZ' where id=6; -update noar ti set b2='CZ' where id=6; -update noar tt set v0='5BR2' where id=7; -update noar ti set v0='5BR2' where id=7; -update noar tt set b0='MRDP8' where id=7; -update noar ti set b0='MRDP8' where id=7; -update noar tt set v0='E2CMAUAAJKWJ87MFQYJRG' where id=7; -update noar ti set v0='E2CMAUAAJKWJ87MFQYJRG' where id=7; -update noar tt set b1='K93B0836WE1ONXPH1XJH3ZB9BN0VC' where id=7; -update noar ti set b1='K93B0836WE1ONXPH1XJH3ZB9BN0VC' where id=7; -update noar tt set v0='0KDY' where id=7; -update noar ti set v0='0KDY' where id=7; -update noar tt set b2='40UTQWSB9S3Y93Q' where id=7; -update noar ti set b2='40UTQWSB9S3Y93Q' where id=7; -update noar tt set v0='YJMBZ4WFEX' where id=8; -update noar ti set v0='YJMBZ4WFEX' where id=8; -update noar tt set b0='JAVOYR63YPS9Z765PEAW54TIKXOD8WGU' where id=8; -update noar ti set b0='JAVOYR63YPS9Z765PEAW54TIKXOD8WGU' where id=8; -update noar tt set v0='D78D' where id=8; -update noar ti set v0='D78D' where id=8; -update noar tt set b1='KG5' where id=8; -update noar ti set b1='KG5' where id=8; -update noar tt set v0='N7SSPSGX3UMDUC5IASOARJTJV0GUGQ' where id=8; -update noar ti set v0='N7SSPSGX3UMDUC5IASOARJTJV0GUGQ' where id=8; -update noar tt set b2='94W3RGPR9J7UC4' where id=8; -update noar ti set b2='94W3RGPR9J7UC4' where id=8; -update noar tt set v0='ZSAQ9T6KNRSVK9V2I3M9PWH9Z' where id=9; -update noar ti set v0='ZSAQ9T6KNRSVK9V2I3M9PWH9Z' where id=9; -update noar tt set b0='93M7' where id=9; -update noar ti set b0='93M7' where id=9; -update noar tt set v0='M5JERVPVEPT6PBJ86YW5NZTP' where id=9; -update noar ti set v0='M5JERVPVEPT6PBJ86YW5NZTP' where id=9; -update noar tt set b1='BTH8H9PTV2REDR2H' where id=9; -update noar ti set b1='BTH8H9PTV2REDR2H' where id=9; -update noar tt set v0='0C2Q7HB4C5E5' where id=9; -update noar ti set v0='0C2Q7HB4C5E5' where id=9; -update noar tt set b2='ZGFQQZ98M623FHPTBEYPTJZHW' where id=9; -update noar ti set b2='ZGFQQZ98M623FHPTBEYPTJZHW' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - v0 varchar(32) not null, - b0 blob not null, - b1 mediumblob not null, - b2 longblob not null -) engine=tokudb; -insert into tt values (1,'','','',''); -insert into tt values (2,'','','',''); -insert into tt values (3,'','','',''); -insert into tt values (4,'','','',''); -insert into tt values (5,'','','',''); -insert into tt values (6,'','','',''); -insert into tt values (7,'','','',''); -insert into tt values (8,'','','',''); -insert into tt values (9,'','','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='ITD57JUS8PZW804021UG414R' where id=1; -update noar ti set v0='ITD57JUS8PZW804021UG414R' where id=1; -update noar tt set b0='WUY2LGBUTQP7251GT' where id=1; -update noar ti set b0='WUY2LGBUTQP7251GT' where id=1; -update noar tt set v0='QMPF8MITENB3ZDK' where id=1; -update noar ti set v0='QMPF8MITENB3ZDK' where id=1; -update noar tt set b1='CZ2V4' where id=1; -update noar ti set b1='CZ2V4' where id=1; -update noar tt set v0='PJVFPR6P2' where id=1; -update noar ti set v0='PJVFPR6P2' where id=1; -update noar tt set b2='CKV1XVN7LQQM5' where id=1; -update noar ti set b2='CKV1XVN7LQQM5' where id=1; -update noar tt set v0='2' where id=2; -update noar ti set v0='2' where id=2; -update noar tt set b0='U4X6YP4MVATBDL5VUNYH4PR8Q8OZNM' where id=2; -update noar ti set b0='U4X6YP4MVATBDL5VUNYH4PR8Q8OZNM' where id=2; -update noar tt set v0='YY7B4R8P9PH5ZE0OK6BUN3ZHZQ2XL' where id=2; -update noar ti set v0='YY7B4R8P9PH5ZE0OK6BUN3ZHZQ2XL' where id=2; -update noar tt set b1='4QXSFZ15ED1G2J63UAGHD29X61R' where id=2; -update noar ti set b1='4QXSFZ15ED1G2J63UAGHD29X61R' where id=2; -update noar tt set v0='5ZYFDLUVUV13' where id=2; -update noar ti set v0='5ZYFDLUVUV13' where id=2; -update noar tt set b2='WAJ30H8WVKORHVFK3' where id=2; -update noar ti set b2='WAJ30H8WVKORHVFK3' where id=2; -update noar tt set v0='O' where id=3; -update noar ti set v0='O' where id=3; -update noar tt set b0='Q2SI' where id=3; -update noar ti set b0='Q2SI' where id=3; -update noar tt set v0='V5GVSEJACVA0YDUL3UH4YU5IER1AUH' where id=3; -update noar ti set v0='V5GVSEJACVA0YDUL3UH4YU5IER1AUH' where id=3; -update noar tt set b1='HLKB8RCE5X9QT7E57I5' where id=3; -update noar ti set b1='HLKB8RCE5X9QT7E57I5' where id=3; -update noar tt set v0='4T89MBSQX4Y1XAXIR5K' where id=3; -update noar ti set v0='4T89MBSQX4Y1XAXIR5K' where id=3; -update noar tt set b2='G0UODU6X2' where id=3; -update noar ti set b2='G0UODU6X2' where id=3; -update noar tt set v0='V1E892GQM7C' where id=4; -update noar ti set v0='V1E892GQM7C' where id=4; -update noar tt set b0='9JXWQ23T12LV19QR4FSR05NJUG7Z1' where id=4; -update noar ti set b0='9JXWQ23T12LV19QR4FSR05NJUG7Z1' where id=4; -update noar tt set v0='ON20R8CQRHNQZ77FB8EFU7' where id=4; -update noar ti set v0='ON20R8CQRHNQZ77FB8EFU7' where id=4; -update noar tt set b1='WKCILNMWE' where id=4; -update noar ti set b1='WKCILNMWE' where id=4; -update noar tt set v0='CAG79E0VZSTYT8FV4L57QBZW254VQC' where id=4; -update noar ti set v0='CAG79E0VZSTYT8FV4L57QBZW254VQC' where id=4; -update noar tt set b2='ZZES' where id=4; -update noar ti set b2='ZZES' where id=4; -update noar tt set v0='5177KRLJE8A88Y' where id=5; -update noar ti set v0='5177KRLJE8A88Y' where id=5; -update noar tt set b0='IBQOC6IEUZOG9XSE0O' where id=5; -update noar ti set b0='IBQOC6IEUZOG9XSE0O' where id=5; -update noar tt set v0='HSQFU67S8' where id=5; -update noar ti set v0='HSQFU67S8' where id=5; -update noar tt set b1='I2A1Q407V035WOO5QMROCG4WX36' where id=5; -update noar ti set b1='I2A1Q407V035WOO5QMROCG4WX36' where id=5; -update noar tt set v0='Z6NG1V' where id=5; -update noar ti set v0='Z6NG1V' where id=5; -update noar tt set b2='IY' where id=5; -update noar ti set b2='IY' where id=5; -update noar tt set v0='PLBB4761ZE7LKWWB9OJB0PE8LL2' where id=6; -update noar ti set v0='PLBB4761ZE7LKWWB9OJB0PE8LL2' where id=6; -update noar tt set b0='U5SF53IXVDSGP8DHZEQJS3TXDK6P6WT' where id=6; -update noar ti set b0='U5SF53IXVDSGP8DHZEQJS3TXDK6P6WT' where id=6; -update noar tt set v0='NW0S3C80CMUUZM' where id=6; -update noar ti set v0='NW0S3C80CMUUZM' where id=6; -update noar tt set b1='DLUV6C4WIM975V0MLRPO48AS823' where id=6; -update noar ti set b1='DLUV6C4WIM975V0MLRPO48AS823' where id=6; -update noar tt set v0='1QBC8O' where id=6; -update noar ti set v0='1QBC8O' where id=6; -update noar tt set b2='0FZ' where id=6; -update noar ti set b2='0FZ' where id=6; -update noar tt set v0='9LE15NXZI10678H8L6THV7KNR7D8' where id=7; -update noar ti set v0='9LE15NXZI10678H8L6THV7KNR7D8' where id=7; -update noar tt set b0='O85BM8AS9SCT30PN692IKLM5TXWC5' where id=7; -update noar ti set b0='O85BM8AS9SCT30PN692IKLM5TXWC5' where id=7; -update noar tt set v0='PJCU1IE1TVVOUUT6EGK915ESWBZ8T72C' where id=7; -update noar ti set v0='PJCU1IE1TVVOUUT6EGK915ESWBZ8T72C' where id=7; -update noar tt set b1='WDYAF2QLMI8N4PRE2Y9Z5ID' where id=7; -update noar ti set b1='WDYAF2QLMI8N4PRE2Y9Z5ID' where id=7; -update noar tt set v0='EQOHMW92S' where id=7; -update noar ti set v0='EQOHMW92S' where id=7; -update noar tt set b2='9' where id=7; -update noar ti set b2='9' where id=7; -update noar tt set v0='62OH6UO4VUEW' where id=8; -update noar ti set v0='62OH6UO4VUEW' where id=8; -update noar tt set b0='L35XMXLPG7ZHIJYHT' where id=8; -update noar ti set b0='L35XMXLPG7ZHIJYHT' where id=8; -update noar tt set v0='TYIUK6QWJDUGL2Z8SPV9' where id=8; -update noar ti set v0='TYIUK6QWJDUGL2Z8SPV9' where id=8; -update noar tt set b1='LTA3GALWTJY' where id=8; -update noar ti set b1='LTA3GALWTJY' where id=8; -update noar tt set v0='9X1U8QM2IBGPXWDZT8' where id=8; -update noar ti set v0='9X1U8QM2IBGPXWDZT8' where id=8; -update noar tt set b2='93JXB6XEK28V84C6AYG' where id=8; -update noar ti set b2='93JXB6XEK28V84C6AYG' where id=8; -update noar tt set v0='PL4OJKK0LRZB6T' where id=9; -update noar ti set v0='PL4OJKK0LRZB6T' where id=9; -update noar tt set b0='T3' where id=9; -update noar ti set b0='T3' where id=9; -update noar tt set v0='SLAD3CQNTN' where id=9; -update noar ti set v0='SLAD3CQNTN' where id=9; -update noar tt set b1='U1A6UKP2DBFBEJ' where id=9; -update noar ti set b1='U1A6UKP2DBFBEJ' where id=9; -update noar tt set v0='M' where id=9; -update noar ti set v0='M' where id=9; -update noar tt set b2='VMPGNADCAKOAFDZV0JG3' where id=9; -update noar ti set b2='VMPGNADCAKOAFDZV0JG3' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - v0 varchar(256) not null, - b0 blob not null, - b1 mediumblob not null, - b2 longblob not null -) engine=tokudb; -insert into tt values (1,'','','',''); -insert into tt values (2,'','','',''); -insert into tt values (3,'','','',''); -insert into tt values (4,'','','',''); -insert into tt values (5,'','','',''); -insert into tt values (6,'','','',''); -insert into tt values (7,'','','',''); -insert into tt values (8,'','','',''); -insert into tt values (9,'','','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='D4STS4Y22S6OSYQC41785C2QVEKPYZ1' where id=1; -update noar ti set v0='D4STS4Y22S6OSYQC41785C2QVEKPYZ1' where id=1; -update noar tt set b0='4SY57CZZ919S8' where id=1; -update noar ti set b0='4SY57CZZ919S8' where id=1; -update noar tt set v0='FYGV7TTNG89MA3' where id=1; -update noar ti set v0='FYGV7TTNG89MA3' where id=1; -update noar tt set b1='99Q6LWKXGAUEIVKIQD' where id=1; -update noar ti set b1='99Q6LWKXGAUEIVKIQD' where id=1; -update noar tt set v0='GFQBZVQAA8' where id=1; -update noar ti set v0='GFQBZVQAA8' where id=1; -update noar tt set b2='71MKMYGPUXXVRQ5EBSZAK9UW74N11S' where id=1; -update noar ti set b2='71MKMYGPUXXVRQ5EBSZAK9UW74N11S' where id=1; -update noar tt set v0='EN3M9MLFKSB4GBD73CFODHSWTF0389V' where id=2; -update noar ti set v0='EN3M9MLFKSB4GBD73CFODHSWTF0389V' where id=2; -update noar tt set b0='L8BLUP7QNSHKQI1453VA7LFC' where id=2; -update noar ti set b0='L8BLUP7QNSHKQI1453VA7LFC' where id=2; -update noar tt set v0='1R588Z32TGHHVCAP5FS7' where id=2; -update noar ti set v0='1R588Z32TGHHVCAP5FS7' where id=2; -update noar tt set b1='SYOP93XOTWW78135' where id=2; -update noar ti set b1='SYOP93XOTWW78135' where id=2; -update noar tt set v0='O3UVEPGTAD904ZO9B1ZWMSU7TMS' where id=2; -update noar ti set v0='O3UVEPGTAD904ZO9B1ZWMSU7TMS' where id=2; -update noar tt set b2='R8ER' where id=2; -update noar ti set b2='R8ER' where id=2; -update noar tt set v0='N7SWDTOCBSEE37ZMC4AZJUXIY46J' where id=3; -update noar ti set v0='N7SWDTOCBSEE37ZMC4AZJUXIY46J' where id=3; -update noar tt set b0='XAPAUQN26W4FPKARN4GGI8' where id=3; -update noar ti set b0='XAPAUQN26W4FPKARN4GGI8' where id=3; -update noar tt set v0='1DHU0TR' where id=3; -update noar ti set v0='1DHU0TR' where id=3; -update noar tt set b1='Y4K' where id=3; -update noar ti set b1='Y4K' where id=3; -update noar tt set v0='5GU5RMJ96AL9CE8C4P4RQGFJ6SW5D' where id=3; -update noar ti set v0='5GU5RMJ96AL9CE8C4P4RQGFJ6SW5D' where id=3; -update noar tt set b2='QMLMDLLRLH03PLA2OS5ESUJ' where id=3; -update noar ti set b2='QMLMDLLRLH03PLA2OS5ESUJ' where id=3; -update noar tt set v0='W590ZYAPRPVYBMM2LW' where id=4; -update noar ti set v0='W590ZYAPRPVYBMM2LW' where id=4; -update noar tt set b0='R54VXUSTNPYPE2HZRR3HDMF' where id=4; -update noar ti set b0='R54VXUSTNPYPE2HZRR3HDMF' where id=4; -update noar tt set v0='0W4D' where id=4; -update noar ti set v0='0W4D' where id=4; -update noar tt set b1='DAAVXWG4NNKB7NTJCQUR79U8' where id=4; -update noar ti set b1='DAAVXWG4NNKB7NTJCQUR79U8' where id=4; -update noar tt set v0='4RG1K3RZ8RFEXD4DLVPH5T' where id=4; -update noar ti set v0='4RG1K3RZ8RFEXD4DLVPH5T' where id=4; -update noar tt set b2='6' where id=4; -update noar ti set b2='6' where id=4; -update noar tt set v0='40X12J923KO56NXU0T0' where id=5; -update noar ti set v0='40X12J923KO56NXU0T0' where id=5; -update noar tt set b0='DCODQP23MTI8YXLHBAI2T9RHM0Q' where id=5; -update noar ti set b0='DCODQP23MTI8YXLHBAI2T9RHM0Q' where id=5; -update noar tt set v0='FPE7A' where id=5; -update noar ti set v0='FPE7A' where id=5; -update noar tt set b1='XBE4X' where id=5; -update noar ti set b1='XBE4X' where id=5; -update noar tt set v0='KY65MW6D5XG53FSSUP' where id=5; -update noar ti set v0='KY65MW6D5XG53FSSUP' where id=5; -update noar tt set b2='MXESE8WMUTTJFL' where id=5; -update noar ti set b2='MXESE8WMUTTJFL' where id=5; -update noar tt set v0='S0VDZKMDF8N9FY5W978PB1UE170KQ7' where id=6; -update noar ti set v0='S0VDZKMDF8N9FY5W978PB1UE170KQ7' where id=6; -update noar tt set b0='7ORGOKVV2NT04TEZOGK0' where id=6; -update noar ti set b0='7ORGOKVV2NT04TEZOGK0' where id=6; -update noar tt set v0='5AKK7SVKK3L0KEX2DIUB86DRVZZ' where id=6; -update noar ti set v0='5AKK7SVKK3L0KEX2DIUB86DRVZZ' where id=6; -update noar tt set b1='5HC5QBGE904QY3BBAQ7VPSJ6IJ02' where id=6; -update noar ti set b1='5HC5QBGE904QY3BBAQ7VPSJ6IJ02' where id=6; -update noar tt set v0='R' where id=6; -update noar ti set v0='R' where id=6; -update noar tt set b2='YS6VKGTB7' where id=6; -update noar ti set b2='YS6VKGTB7' where id=6; -update noar tt set v0='T70NA4UCDVU4DDSRO4HQHYHF25D7V7T' where id=7; -update noar ti set v0='T70NA4UCDVU4DDSRO4HQHYHF25D7V7T' where id=7; -update noar tt set b0='1UDPXO93HC9' where id=7; -update noar ti set b0='1UDPXO93HC9' where id=7; -update noar tt set v0='JYTX1E7V7LYKT19FGSAM9GJ002D0U6R' where id=7; -update noar ti set v0='JYTX1E7V7LYKT19FGSAM9GJ002D0U6R' where id=7; -update noar tt set b1='G1RM1UN07Z0N1PQHSZAJX' where id=7; -update noar ti set b1='G1RM1UN07Z0N1PQHSZAJX' where id=7; -update noar tt set v0='7QWYFDXB021BDE8BSLNE' where id=7; -update noar ti set v0='7QWYFDXB021BDE8BSLNE' where id=7; -update noar tt set b2='KU3T9K2I2YZ58' where id=7; -update noar ti set b2='KU3T9K2I2YZ58' where id=7; -update noar tt set v0='VG62AB9BGU50JRB6A5R3C464' where id=8; -update noar ti set v0='VG62AB9BGU50JRB6A5R3C464' where id=8; -update noar tt set b0='RCO0EA59FPU30VC2' where id=8; -update noar ti set b0='RCO0EA59FPU30VC2' where id=8; -update noar tt set v0='X8SUP8E2WZJO3' where id=8; -update noar ti set v0='X8SUP8E2WZJO3' where id=8; -update noar tt set b1='P1W2OJAT662F5255HI7UAZVMWUNQ' where id=8; -update noar ti set b1='P1W2OJAT662F5255HI7UAZVMWUNQ' where id=8; -update noar tt set v0='KCSS48BU9' where id=8; -update noar ti set v0='KCSS48BU9' where id=8; -update noar tt set b2='ZT' where id=8; -update noar ti set b2='ZT' where id=8; -update noar tt set v0='TCPKI958Q6QI6U6' where id=9; -update noar ti set v0='TCPKI958Q6QI6U6' where id=9; -update noar tt set b0='IZZQZTSHCYDH9Y5ESAG' where id=9; -update noar ti set b0='IZZQZTSHCYDH9Y5ESAG' where id=9; -update noar tt set v0='OF51YVXAL11ZZ9SEZKQ' where id=9; -update noar ti set v0='OF51YVXAL11ZZ9SEZKQ' where id=9; -update noar tt set b1='O0YBO6NQA6VJTYK3X0BJY' where id=9; -update noar ti set b1='O0YBO6NQA6VJTYK3X0BJY' where id=9; -update noar tt set v0='G9M5NYCUZVL7S1KPGTO9J' where id=9; -update noar ti set v0='G9M5NYCUZVL7S1KPGTO9J' where id=9; -update noar tt set b2='YOI0MS8I0XG8XXPSL' where id=9; -update noar ti set b2='YOI0MS8I0XG8XXPSL' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - v0 varchar(32) null, - b0 blob null, - b1 longblob null, - b2 tinyblob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='W3D1' where id=1; -update noar ti set v0='W3D1' where id=1; -update noar tt set b0='NW4UR2' where id=1; -update noar ti set b0='NW4UR2' where id=1; -update noar tt set v0='7BDA9R8SXP9EVSY3I3HUQUCSYH0W9J2' where id=1; -update noar ti set v0='7BDA9R8SXP9EVSY3I3HUQUCSYH0W9J2' where id=1; -update noar tt set b1='P80BRBLSVBXL8ZS1O' where id=1; -update noar ti set b1='P80BRBLSVBXL8ZS1O' where id=1; -update noar tt set v0='WB6GQSIN0E6IBPKM9JXO38' where id=1; -update noar ti set v0='WB6GQSIN0E6IBPKM9JXO38' where id=1; -update noar tt set b2='N18KZ895FSVRKJGVRNGOL5' where id=1; -update noar ti set b2='N18KZ895FSVRKJGVRNGOL5' where id=1; -update noar tt set v0='Y1APWUU4HMWTRJYZ5HE2Q6' where id=2; -update noar ti set v0='Y1APWUU4HMWTRJYZ5HE2Q6' where id=2; -update noar tt set b0='V' where id=2; -update noar ti set b0='V' where id=2; -update noar tt set v0='5UJRNA7DFS' where id=2; -update noar ti set v0='5UJRNA7DFS' where id=2; -update noar tt set b1='EM27SOMM28VMLWYU' where id=2; -update noar ti set b1='EM27SOMM28VMLWYU' where id=2; -update noar tt set v0='7KSN1PHCSD' where id=2; -update noar ti set v0='7KSN1PHCSD' where id=2; -update noar tt set b2='4TN6UMXDT1QX2' where id=2; -update noar ti set b2='4TN6UMXDT1QX2' where id=2; -update noar tt set v0='097X4G7M6RVHVMYW4K45YTYIVY' where id=3; -update noar ti set v0='097X4G7M6RVHVMYW4K45YTYIVY' where id=3; -update noar tt set b0='0KUFS61FOX3XMDQX649S2' where id=3; -update noar ti set b0='0KUFS61FOX3XMDQX649S2' where id=3; -update noar tt set v0='JMKIKZCCVS5' where id=3; -update noar ti set v0='JMKIKZCCVS5' where id=3; -update noar tt set b1='6EZS0XBVBQN16C6C0PVUC6D' where id=3; -update noar ti set b1='6EZS0XBVBQN16C6C0PVUC6D' where id=3; -update noar tt set v0='1VYA7XMQDAUEUBD5D1ECNWD' where id=3; -update noar ti set v0='1VYA7XMQDAUEUBD5D1ECNWD' where id=3; -update noar tt set b2='LI0AA6RKLGC8OBBPDLI8QQ99Q0M' where id=3; -update noar ti set b2='LI0AA6RKLGC8OBBPDLI8QQ99Q0M' where id=3; -update noar tt set v0='IA6Q3N9CINOCAVEF2YFH33EFQGN' where id=4; -update noar ti set v0='IA6Q3N9CINOCAVEF2YFH33EFQGN' where id=4; -update noar tt set b0='SJ503SX5X1JQ0L' where id=4; -update noar ti set b0='SJ503SX5X1JQ0L' where id=4; -update noar tt set v0='1JOWFC8D0JO534XYOW1I1UL' where id=4; -update noar ti set v0='1JOWFC8D0JO534XYOW1I1UL' where id=4; -update noar tt set b1='5L40LVPW1KB313G8PJLR' where id=4; -update noar ti set b1='5L40LVPW1KB313G8PJLR' where id=4; -update noar tt set v0='GEJ1' where id=4; -update noar ti set v0='GEJ1' where id=4; -update noar tt set b2='IBNNZ62T3RF' where id=4; -update noar ti set b2='IBNNZ62T3RF' where id=4; -update noar tt set v0='SSRSP14L4MNKCGNIKKPCVH' where id=5; -update noar ti set v0='SSRSP14L4MNKCGNIKKPCVH' where id=5; -update noar tt set b0='0W699XI0368CDW5NCRIR' where id=5; -update noar ti set b0='0W699XI0368CDW5NCRIR' where id=5; -update noar tt set v0='DX9QNU3B5CLFX' where id=5; -update noar ti set v0='DX9QNU3B5CLFX' where id=5; -update noar tt set b1='CLS6I' where id=5; -update noar ti set b1='CLS6I' where id=5; -update noar tt set v0='Z6YAS7L0RCB2' where id=5; -update noar ti set v0='Z6YAS7L0RCB2' where id=5; -update noar tt set b2='9IL' where id=5; -update noar ti set b2='9IL' where id=5; -update noar tt set v0='LLOY0XHJFYB35' where id=6; -update noar ti set v0='LLOY0XHJFYB35' where id=6; -update noar tt set b0='6FUHFYTH8ZG8UIBP5L' where id=6; -update noar ti set b0='6FUHFYTH8ZG8UIBP5L' where id=6; -update noar tt set v0='EY9VVC7KVAW' where id=6; -update noar ti set v0='EY9VVC7KVAW' where id=6; -update noar tt set b1='7YWRQ0CFYB' where id=6; -update noar ti set b1='7YWRQ0CFYB' where id=6; -update noar tt set v0='XG4FGAX6HCLSS87YSKIW' where id=6; -update noar ti set v0='XG4FGAX6HCLSS87YSKIW' where id=6; -update noar tt set b2='N5VRJHXH37Q6E941O8CNTA' where id=6; -update noar ti set b2='N5VRJHXH37Q6E941O8CNTA' where id=6; -update noar tt set v0='M0RXIQ4FRB' where id=7; -update noar ti set v0='M0RXIQ4FRB' where id=7; -update noar tt set b0='MOYBU9678MWW8MXKIAVSM27' where id=7; -update noar ti set b0='MOYBU9678MWW8MXKIAVSM27' where id=7; -update noar tt set v0='R1MCR' where id=7; -update noar ti set v0='R1MCR' where id=7; -update noar tt set b1='JERUHLL069YF1RDPYZ91K0' where id=7; -update noar ti set b1='JERUHLL069YF1RDPYZ91K0' where id=7; -update noar tt set v0='6MAG1KCJ9B2UCBDJWHDGSVQK9X' where id=7; -update noar ti set v0='6MAG1KCJ9B2UCBDJWHDGSVQK9X' where id=7; -update noar tt set b2='B1QH7OVT76QXWLYKP34LHA2TZ84Q5' where id=7; -update noar ti set b2='B1QH7OVT76QXWLYKP34LHA2TZ84Q5' where id=7; -update noar tt set v0='SMELCFPT2798867DMXG' where id=8; -update noar ti set v0='SMELCFPT2798867DMXG' where id=8; -update noar tt set b0='E43X8I2HALLCB7BYPZXE08K1XJA' where id=8; -update noar ti set b0='E43X8I2HALLCB7BYPZXE08K1XJA' where id=8; -update noar tt set v0='3AN4R4IV3NQ8NWD7RS3KD5GDLRZQ72V' where id=8; -update noar ti set v0='3AN4R4IV3NQ8NWD7RS3KD5GDLRZQ72V' where id=8; -update noar tt set b1='ROWAUYQHDW8T6XJQ3' where id=8; -update noar ti set b1='ROWAUYQHDW8T6XJQ3' where id=8; -update noar tt set v0='WIRKB86IJC8' where id=8; -update noar ti set v0='WIRKB86IJC8' where id=8; -update noar tt set b2='Z35FP' where id=8; -update noar ti set b2='Z35FP' where id=8; -update noar tt set v0='D15WVM2' where id=9; -update noar ti set v0='D15WVM2' where id=9; -update noar tt set b0='ECZ3DIL1J8T65A3JW78T5TTC9VQY2R' where id=9; -update noar ti set b0='ECZ3DIL1J8T65A3JW78T5TTC9VQY2R' where id=9; -update noar tt set v0='189ZNQIKHXX6BALO6' where id=9; -update noar ti set v0='189ZNQIKHXX6BALO6' where id=9; -update noar tt set b1='WCHR8091EGNW8BTBD3NK0V' where id=9; -update noar ti set b1='WCHR8091EGNW8BTBD3NK0V' where id=9; -update noar tt set v0='W' where id=9; -update noar ti set v0='W' where id=9; -update noar tt set b2='VAZ5YWRGXYHEFPUU0' where id=9; -update noar ti set b2='VAZ5YWRGXYHEFPUU0' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - v0 varchar(256) null, - b0 blob null, - b1 longblob null, - b2 tinyblob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='YH64NY9U' where id=1; -update noar ti set v0='YH64NY9U' where id=1; -update noar tt set b0='RR38BT' where id=1; -update noar ti set b0='RR38BT' where id=1; -update noar tt set v0='NKX6CPE163GGGVJRJSEDHS4YM0258' where id=1; -update noar ti set v0='NKX6CPE163GGGVJRJSEDHS4YM0258' where id=1; -update noar tt set b1='EU' where id=1; -update noar ti set b1='EU' where id=1; -update noar tt set v0='HLC3HNO2IKJ1UV8W' where id=1; -update noar ti set v0='HLC3HNO2IKJ1UV8W' where id=1; -update noar tt set b2='0HM1VTUJ12P4J4CTNKA6SY2' where id=1; -update noar ti set b2='0HM1VTUJ12P4J4CTNKA6SY2' where id=1; -update noar tt set v0='18ETIZ3E6F93FU84W51VHGYM6NS' where id=2; -update noar ti set v0='18ETIZ3E6F93FU84W51VHGYM6NS' where id=2; -update noar tt set b0='BILQMTVKEQ9CRPKHWMGMUEWVGLQ' where id=2; -update noar ti set b0='BILQMTVKEQ9CRPKHWMGMUEWVGLQ' where id=2; -update noar tt set v0='88A4ODH' where id=2; -update noar ti set v0='88A4ODH' where id=2; -update noar tt set b1='94MTRTJJVTC' where id=2; -update noar ti set b1='94MTRTJJVTC' where id=2; -update noar tt set v0='JFDTQMBHNLEJ42ZOGGPZ5R3HRGK3Y' where id=2; -update noar ti set v0='JFDTQMBHNLEJ42ZOGGPZ5R3HRGK3Y' where id=2; -update noar tt set b2='DURD5KT0W8H5M49VWDF2UCHZVX33LOQD' where id=2; -update noar ti set b2='DURD5KT0W8H5M49VWDF2UCHZVX33LOQD' where id=2; -update noar tt set v0='9' where id=3; -update noar ti set v0='9' where id=3; -update noar tt set b0='KBLNGYHVHAU2YLFQAN980Y' where id=3; -update noar ti set b0='KBLNGYHVHAU2YLFQAN980Y' where id=3; -update noar tt set v0='W7W6LJPCCB' where id=3; -update noar ti set v0='W7W6LJPCCB' where id=3; -update noar tt set b1='K45M1DUF0JY5R6OD' where id=3; -update noar ti set b1='K45M1DUF0JY5R6OD' where id=3; -update noar tt set v0='R5O9TPZFVTSE0YCRLG3ZND' where id=3; -update noar ti set v0='R5O9TPZFVTSE0YCRLG3ZND' where id=3; -update noar tt set b2='C' where id=3; -update noar ti set b2='C' where id=3; -update noar tt set v0='SNON9BJKO0FVNWZPL48T' where id=4; -update noar ti set v0='SNON9BJKO0FVNWZPL48T' where id=4; -update noar tt set b0='XCVG7WYCBJONSOWW4XUNFTYUW50VFBZ' where id=4; -update noar ti set b0='XCVG7WYCBJONSOWW4XUNFTYUW50VFBZ' where id=4; -update noar tt set v0='HBBQW53XQ1RR' where id=4; -update noar ti set v0='HBBQW53XQ1RR' where id=4; -update noar tt set b1='DQB8E49P1W6H9QIK' where id=4; -update noar ti set b1='DQB8E49P1W6H9QIK' where id=4; -update noar tt set v0='9Y6H2HO7YYT5QF2X8F5WR04BBSD01E' where id=4; -update noar ti set v0='9Y6H2HO7YYT5QF2X8F5WR04BBSD01E' where id=4; -update noar tt set b2='7KY5FMYCP15NQUQBP0XIOCU6SV7HK7' where id=4; -update noar ti set b2='7KY5FMYCP15NQUQBP0XIOCU6SV7HK7' where id=4; -update noar tt set v0='BBTODGJ' where id=5; -update noar ti set v0='BBTODGJ' where id=5; -update noar tt set b0='VMDK086MGTLYAOMCE' where id=5; -update noar ti set b0='VMDK086MGTLYAOMCE' where id=5; -update noar tt set v0='L7GYHHMF4R9FZ9KFIRIDZM' where id=5; -update noar ti set v0='L7GYHHMF4R9FZ9KFIRIDZM' where id=5; -update noar tt set b1='2P88KOIGR7MY' where id=5; -update noar ti set b1='2P88KOIGR7MY' where id=5; -update noar tt set v0='5O20RQK1PINZB6J' where id=5; -update noar ti set v0='5O20RQK1PINZB6J' where id=5; -update noar tt set b2='U2R9M0LSUE7DNB5MC75CS1JUJLLHAW' where id=5; -update noar ti set b2='U2R9M0LSUE7DNB5MC75CS1JUJLLHAW' where id=5; -update noar tt set v0='L58AJTUVD60C96X' where id=6; -update noar ti set v0='L58AJTUVD60C96X' where id=6; -update noar tt set b0='H10Q841WMLAFAKZ4SGETZWS131PNR' where id=6; -update noar ti set b0='H10Q841WMLAFAKZ4SGETZWS131PNR' where id=6; -update noar tt set v0='AZ5M' where id=6; -update noar ti set v0='AZ5M' where id=6; -update noar tt set b1='ENY89A15IMOFBYYSJ' where id=6; -update noar ti set b1='ENY89A15IMOFBYYSJ' where id=6; -update noar tt set v0='Z06N0WPDNNVOPI4UFOAD5D46C1TZFEJ0' where id=6; -update noar ti set v0='Z06N0WPDNNVOPI4UFOAD5D46C1TZFEJ0' where id=6; -update noar tt set b2='GT1JSITR' where id=6; -update noar ti set b2='GT1JSITR' where id=6; -update noar tt set v0='U2YUCZLNDR2YAMZSNNMUINV6S' where id=7; -update noar ti set v0='U2YUCZLNDR2YAMZSNNMUINV6S' where id=7; -update noar tt set b0='U06GT692Z346ACL' where id=7; -update noar ti set b0='U06GT692Z346ACL' where id=7; -update noar tt set v0='P42SNGTI79NF2XS2VJ196RW' where id=7; -update noar ti set v0='P42SNGTI79NF2XS2VJ196RW' where id=7; -update noar tt set b1='2K80FM' where id=7; -update noar ti set b1='2K80FM' where id=7; -update noar tt set v0='QH2JLVUJMZ6J4CTRE3SLZ2FFXZS9' where id=7; -update noar ti set v0='QH2JLVUJMZ6J4CTRE3SLZ2FFXZS9' where id=7; -update noar tt set b2='C1NSCK7HGCFX24JEXYY415ALP2IY614' where id=7; -update noar ti set b2='C1NSCK7HGCFX24JEXYY415ALP2IY614' where id=7; -update noar tt set v0='ZPV5U0HHTWT7CZJ2I92MJW6WMW35NOD' where id=8; -update noar ti set v0='ZPV5U0HHTWT7CZJ2I92MJW6WMW35NOD' where id=8; -update noar tt set b0='QWCJ' where id=8; -update noar ti set b0='QWCJ' where id=8; -update noar tt set v0='LNP5V07PTG7VIB2HOW' where id=8; -update noar ti set v0='LNP5V07PTG7VIB2HOW' where id=8; -update noar tt set b1='ZRBVWSI60R' where id=8; -update noar ti set b1='ZRBVWSI60R' where id=8; -update noar tt set v0='QMX2A4KSPQI7' where id=8; -update noar ti set v0='QMX2A4KSPQI7' where id=8; -update noar tt set b2='TQU36XQQUZHUG4JCIN9URC5KHMTQFBU' where id=8; -update noar ti set b2='TQU36XQQUZHUG4JCIN9URC5KHMTQFBU' where id=8; -update noar tt set v0='F6UHBY' where id=9; -update noar ti set v0='F6UHBY' where id=9; -update noar tt set b0='SB7' where id=9; -update noar ti set b0='SB7' where id=9; -update noar tt set v0='9' where id=9; -update noar ti set v0='9' where id=9; -update noar tt set b1='UD6QKFLGWZNM' where id=9; -update noar ti set b1='UD6QKFLGWZNM' where id=9; -update noar tt set v0='8FUULV1WBLAHJLMEXQXX3EO1L' where id=9; -update noar ti set v0='8FUULV1WBLAHJLMEXQXX3EO1L' where id=9; -update noar tt set b2='1THJ07X0RGYY6AUA2OG' where id=9; -update noar ti set b2='1THJ07X0RGYY6AUA2OG' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - v0 varchar(32) not null, - b0 blob not null, - b1 longblob not null, - b2 tinyblob not null -) engine=tokudb; -insert into tt values (1,'','','',''); -insert into tt values (2,'','','',''); -insert into tt values (3,'','','',''); -insert into tt values (4,'','','',''); -insert into tt values (5,'','','',''); -insert into tt values (6,'','','',''); -insert into tt values (7,'','','',''); -insert into tt values (8,'','','',''); -insert into tt values (9,'','','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='986XRLWGCM1D1BL5ARMAH610IJYX' where id=1; -update noar ti set v0='986XRLWGCM1D1BL5ARMAH610IJYX' where id=1; -update noar tt set b0='94YFTUE5N2' where id=1; -update noar ti set b0='94YFTUE5N2' where id=1; -update noar tt set v0='EY0W1H85X8ATC5GCXT' where id=1; -update noar ti set v0='EY0W1H85X8ATC5GCXT' where id=1; -update noar tt set b1='581CZZJVJ8FWX0K9KP4UHRUU' where id=1; -update noar ti set b1='581CZZJVJ8FWX0K9KP4UHRUU' where id=1; -update noar tt set v0='V69X0H76WYYW7J66AZSRJ5H4AJSDP' where id=1; -update noar ti set v0='V69X0H76WYYW7J66AZSRJ5H4AJSDP' where id=1; -update noar tt set b2='Z2F0L81QOCQWX3VXQEYQ7P97OBXCKUYN' where id=1; -update noar ti set b2='Z2F0L81QOCQWX3VXQEYQ7P97OBXCKUYN' where id=1; -update noar tt set v0='7FKHVA' where id=2; -update noar ti set v0='7FKHVA' where id=2; -update noar tt set b0='5GLF78' where id=2; -update noar ti set b0='5GLF78' where id=2; -update noar tt set v0='9TC676IJKGLAT' where id=2; -update noar ti set v0='9TC676IJKGLAT' where id=2; -update noar tt set b1='R1RZVZ8TFI0I83ELZ' where id=2; -update noar ti set b1='R1RZVZ8TFI0I83ELZ' where id=2; -update noar tt set v0='F88OJO4O4ZBWB4KD0L58ERS' where id=2; -update noar ti set v0='F88OJO4O4ZBWB4KD0L58ERS' where id=2; -update noar tt set b2='E41IAT6E6LF4' where id=2; -update noar ti set b2='E41IAT6E6LF4' where id=2; -update noar tt set v0='OPNXA' where id=3; -update noar ti set v0='OPNXA' where id=3; -update noar tt set b0='Z3SY941D3RL50F4U1S0PF8A6O7DZM' where id=3; -update noar ti set b0='Z3SY941D3RL50F4U1S0PF8A6O7DZM' where id=3; -update noar tt set v0='CJB9UP7T5GGN8' where id=3; -update noar ti set v0='CJB9UP7T5GGN8' where id=3; -update noar tt set b1='NM65Q5B' where id=3; -update noar ti set b1='NM65Q5B' where id=3; -update noar tt set v0='KCZJIBBRCB4PH67N6YOEBHQCK6Z045' where id=3; -update noar ti set v0='KCZJIBBRCB4PH67N6YOEBHQCK6Z045' where id=3; -update noar tt set b2='5KN7AH7L5V8UXMXNWPI5ML842E23E6N' where id=3; -update noar ti set b2='5KN7AH7L5V8UXMXNWPI5ML842E23E6N' where id=3; -update noar tt set v0='N7IO' where id=4; -update noar ti set v0='N7IO' where id=4; -update noar tt set b0='48VSL095DE50O9D17C9SZ' where id=4; -update noar ti set b0='48VSL095DE50O9D17C9SZ' where id=4; -update noar tt set v0='5IQZ11C15I5CNSU3R4TJ4V0N' where id=4; -update noar ti set v0='5IQZ11C15I5CNSU3R4TJ4V0N' where id=4; -update noar tt set b1='18V7R4BW21EQYS32A' where id=4; -update noar ti set b1='18V7R4BW21EQYS32A' where id=4; -update noar tt set v0='UZAT3GVSL39' where id=4; -update noar ti set v0='UZAT3GVSL39' where id=4; -update noar tt set b2='6L' where id=4; -update noar ti set b2='6L' where id=4; -update noar tt set v0='LLNGSB0QYM93HY4AT8UVLM1MWRNQGQZI' where id=5; -update noar ti set v0='LLNGSB0QYM93HY4AT8UVLM1MWRNQGQZI' where id=5; -update noar tt set b0='GLSNRVFRSRQXYVLKE1T8' where id=5; -update noar ti set b0='GLSNRVFRSRQXYVLKE1T8' where id=5; -update noar tt set v0='GRJNION06' where id=5; -update noar ti set v0='GRJNION06' where id=5; -update noar tt set b1='KE5ALKTNQ9A0CXGSLEYU81FHZ3JOPW' where id=5; -update noar ti set b1='KE5ALKTNQ9A0CXGSLEYU81FHZ3JOPW' where id=5; -update noar tt set v0='Q01OTS0PVFH9HIHQSJZQZ8' where id=5; -update noar ti set v0='Q01OTS0PVFH9HIHQSJZQZ8' where id=5; -update noar tt set b2='F26QVU1341F48MK9LYKLBFG8PSJLI' where id=5; -update noar ti set b2='F26QVU1341F48MK9LYKLBFG8PSJLI' where id=5; -update noar tt set v0='Y06YWYB3CXL' where id=6; -update noar ti set v0='Y06YWYB3CXL' where id=6; -update noar tt set b0='FSECC0IH4D29CR2TOOTPAA0AZ' where id=6; -update noar ti set b0='FSECC0IH4D29CR2TOOTPAA0AZ' where id=6; -update noar tt set v0='HTFHH265A1Q8T2XNQIVOCG9EWR' where id=6; -update noar ti set v0='HTFHH265A1Q8T2XNQIVOCG9EWR' where id=6; -update noar tt set b1='KPBI0Z' where id=6; -update noar ti set b1='KPBI0Z' where id=6; -update noar tt set v0='ST3' where id=6; -update noar ti set v0='ST3' where id=6; -update noar tt set b2='A43CB6HD82ECZFGW2BTY' where id=6; -update noar ti set b2='A43CB6HD82ECZFGW2BTY' where id=6; -update noar tt set v0='U747P33BX7' where id=7; -update noar ti set v0='U747P33BX7' where id=7; -update noar tt set b0='0DCO0MD03LPHGEZC' where id=7; -update noar ti set b0='0DCO0MD03LPHGEZC' where id=7; -update noar tt set v0='80IP1S6N5Q' where id=7; -update noar ti set v0='80IP1S6N5Q' where id=7; -update noar tt set b1='AASZOHBMBV3AV7QDC91CNR6JA6MAM' where id=7; -update noar ti set b1='AASZOHBMBV3AV7QDC91CNR6JA6MAM' where id=7; -update noar tt set v0='A2Q9E84ZH8TJPI9Y8RXD' where id=7; -update noar ti set v0='A2Q9E84ZH8TJPI9Y8RXD' where id=7; -update noar tt set b2='7W' where id=7; -update noar ti set b2='7W' where id=7; -update noar tt set v0='JW70XNS3WACV1DEN1YV' where id=8; -update noar ti set v0='JW70XNS3WACV1DEN1YV' where id=8; -update noar tt set b0='HRQU5OFHAR3DBTUF8P7X93QIPXCJ' where id=8; -update noar ti set b0='HRQU5OFHAR3DBTUF8P7X93QIPXCJ' where id=8; -update noar tt set v0='GOYJO1A2NUHTNS4MBK5FYNR' where id=8; -update noar ti set v0='GOYJO1A2NUHTNS4MBK5FYNR' where id=8; -update noar tt set b1='SJPT61WVH' where id=8; -update noar ti set b1='SJPT61WVH' where id=8; -update noar tt set v0='A6V8' where id=8; -update noar ti set v0='A6V8' where id=8; -update noar tt set b2='DM' where id=8; -update noar ti set b2='DM' where id=8; -update noar tt set v0='LLWPL' where id=9; -update noar ti set v0='LLWPL' where id=9; -update noar tt set b0='V' where id=9; -update noar ti set b0='V' where id=9; -update noar tt set v0='BRBICN7ST9C9UW3' where id=9; -update noar ti set v0='BRBICN7ST9C9UW3' where id=9; -update noar tt set b1='8XB198WG6THPO9' where id=9; -update noar ti set b1='8XB198WG6THPO9' where id=9; -update noar tt set v0='TV5FLWI261SAN9D4TBMFPQX' where id=9; -update noar ti set v0='TV5FLWI261SAN9D4TBMFPQX' where id=9; -update noar tt set b2='CIXKO76YX68RI2SZ73RF33' where id=9; -update noar ti set b2='CIXKO76YX68RI2SZ73RF33' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - v0 varchar(256) not null, - b0 blob not null, - b1 longblob not null, - b2 tinyblob not null -) engine=tokudb; -insert into tt values (1,'','','',''); -insert into tt values (2,'','','',''); -insert into tt values (3,'','','',''); -insert into tt values (4,'','','',''); -insert into tt values (5,'','','',''); -insert into tt values (6,'','','',''); -insert into tt values (7,'','','',''); -insert into tt values (8,'','','',''); -insert into tt values (9,'','','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='NF14KYZASFOQDEPBI3GP' where id=1; -update noar ti set v0='NF14KYZASFOQDEPBI3GP' where id=1; -update noar tt set b0='PMRRK6N3SOOJ9CJ9HDXJ5H1LDTLKJ0' where id=1; -update noar ti set b0='PMRRK6N3SOOJ9CJ9HDXJ5H1LDTLKJ0' where id=1; -update noar tt set v0='MPZIB5XF7RSN' where id=1; -update noar ti set v0='MPZIB5XF7RSN' where id=1; -update noar tt set b1='ORX2M3L1' where id=1; -update noar ti set b1='ORX2M3L1' where id=1; -update noar tt set v0='MLYP43DDF2SFHAWUC7XF73ZNVHWFDV' where id=1; -update noar ti set v0='MLYP43DDF2SFHAWUC7XF73ZNVHWFDV' where id=1; -update noar tt set b2='1SQOK28T7K4ALP440E8' where id=1; -update noar ti set b2='1SQOK28T7K4ALP440E8' where id=1; -update noar tt set v0='5E6WJRQT070BJ' where id=2; -update noar ti set v0='5E6WJRQT070BJ' where id=2; -update noar tt set b0='UMT6119EMTCMJ543017BNUC' where id=2; -update noar ti set b0='UMT6119EMTCMJ543017BNUC' where id=2; -update noar tt set v0='VSR1' where id=2; -update noar ti set v0='VSR1' where id=2; -update noar tt set b1='EWCBRHITKUFVAFYY1XQBF7PL50' where id=2; -update noar ti set b1='EWCBRHITKUFVAFYY1XQBF7PL50' where id=2; -update noar tt set v0='KWZC7B0V54ZG8LMZ7CG3WRMKKI6HLIY' where id=2; -update noar ti set v0='KWZC7B0V54ZG8LMZ7CG3WRMKKI6HLIY' where id=2; -update noar tt set b2='H6TM4KZ7KC2JF7ZRII66' where id=2; -update noar ti set b2='H6TM4KZ7KC2JF7ZRII66' where id=2; -update noar tt set v0='RGFKPI867BCFYV7GBXMULV60' where id=3; -update noar ti set v0='RGFKPI867BCFYV7GBXMULV60' where id=3; -update noar tt set b0='OZLV4KMXVIAVIRFK1AEM6' where id=3; -update noar ti set b0='OZLV4KMXVIAVIRFK1AEM6' where id=3; -update noar tt set v0='Q5' where id=3; -update noar ti set v0='Q5' where id=3; -update noar tt set b1='2KQR' where id=3; -update noar ti set b1='2KQR' where id=3; -update noar tt set v0='FB' where id=3; -update noar ti set v0='FB' where id=3; -update noar tt set b2='LEJ1Q9D8GBNJQCP3KZJMEELON9' where id=3; -update noar ti set b2='LEJ1Q9D8GBNJQCP3KZJMEELON9' where id=3; -update noar tt set v0='40' where id=4; -update noar ti set v0='40' where id=4; -update noar tt set b0='OTE' where id=4; -update noar ti set b0='OTE' where id=4; -update noar tt set v0='W6168IS' where id=4; -update noar ti set v0='W6168IS' where id=4; -update noar tt set b1='SRNZQ6' where id=4; -update noar ti set b1='SRNZQ6' where id=4; -update noar tt set v0='U29DYKN3G3ORH117R' where id=4; -update noar ti set v0='U29DYKN3G3ORH117R' where id=4; -update noar tt set b2='68AO3EQUGKQNI5NZF' where id=4; -update noar ti set b2='68AO3EQUGKQNI5NZF' where id=4; -update noar tt set v0='PAY2M9QY779U8PJ77VUBR6L4ZDX' where id=5; -update noar ti set v0='PAY2M9QY779U8PJ77VUBR6L4ZDX' where id=5; -update noar tt set b0='4MXBY5PMSU27EVP3AYAU5C' where id=5; -update noar ti set b0='4MXBY5PMSU27EVP3AYAU5C' where id=5; -update noar tt set v0='2B3F569G60IPIGZZ' where id=5; -update noar ti set v0='2B3F569G60IPIGZZ' where id=5; -update noar tt set b1='R808AHMGY278OQT87DTV97U3PNR' where id=5; -update noar ti set b1='R808AHMGY278OQT87DTV97U3PNR' where id=5; -update noar tt set v0='NXX19CEDDR5NWD6P2YN1H6G' where id=5; -update noar ti set v0='NXX19CEDDR5NWD6P2YN1H6G' where id=5; -update noar tt set b2='FISCIQ4V1TTHQ9V' where id=5; -update noar ti set b2='FISCIQ4V1TTHQ9V' where id=5; -update noar tt set v0='77U0QMWNPVQRNMKO954D' where id=6; -update noar ti set v0='77U0QMWNPVQRNMKO954D' where id=6; -update noar tt set b0='QVGAE64L' where id=6; -update noar ti set b0='QVGAE64L' where id=6; -update noar tt set v0='RORCU7BQMYBXPKFRFAF4SD0AIYQ2A9' where id=6; -update noar ti set v0='RORCU7BQMYBXPKFRFAF4SD0AIYQ2A9' where id=6; -update noar tt set b1='5DUZ2KLQ4G0D9AXJ226' where id=6; -update noar ti set b1='5DUZ2KLQ4G0D9AXJ226' where id=6; -update noar tt set v0='N5A' where id=6; -update noar ti set v0='N5A' where id=6; -update noar tt set b2='1CQ' where id=6; -update noar ti set b2='1CQ' where id=6; -update noar tt set v0='TG0YYIIUKEE1JF' where id=7; -update noar ti set v0='TG0YYIIUKEE1JF' where id=7; -update noar tt set b0='I7HZ3ITRFK6QBREAJQEAE4URCUH6' where id=7; -update noar ti set b0='I7HZ3ITRFK6QBREAJQEAE4URCUH6' where id=7; -update noar tt set v0='OS8' where id=7; -update noar ti set v0='OS8' where id=7; -update noar tt set b1='BQHYVB9PMVKKTQK0EHPVZ8A9B6P1' where id=7; -update noar ti set b1='BQHYVB9PMVKKTQK0EHPVZ8A9B6P1' where id=7; -update noar tt set v0='2QG46UC03CEZM26ONK' where id=7; -update noar ti set v0='2QG46UC03CEZM26ONK' where id=7; -update noar tt set b2='VH2NE0IC' where id=7; -update noar ti set b2='VH2NE0IC' where id=7; -update noar tt set v0='MRK95MXZRLGE9' where id=8; -update noar ti set v0='MRK95MXZRLGE9' where id=8; -update noar tt set b0='DDAP8765B9K' where id=8; -update noar ti set b0='DDAP8765B9K' where id=8; -update noar tt set v0='UORH' where id=8; -update noar ti set v0='UORH' where id=8; -update noar tt set b1='TZJZE' where id=8; -update noar ti set b1='TZJZE' where id=8; -update noar tt set v0='TM9BOE12FKT1HUVW1WCANYC6R' where id=8; -update noar ti set v0='TM9BOE12FKT1HUVW1WCANYC6R' where id=8; -update noar tt set b2='LOCVON4BRFRYHBZSGRQMVYK' where id=8; -update noar ti set b2='LOCVON4BRFRYHBZSGRQMVYK' where id=8; -update noar tt set v0='IS52FC2R8A5SRF9P3MCAP9ZZ4R15KZ6' where id=9; -update noar ti set v0='IS52FC2R8A5SRF9P3MCAP9ZZ4R15KZ6' where id=9; -update noar tt set b0='C49RXQZNGV41K1P8' where id=9; -update noar ti set b0='C49RXQZNGV41K1P8' where id=9; -update noar tt set v0='H9M83V1' where id=9; -update noar ti set v0='H9M83V1' where id=9; -update noar tt set b1='F8VYBZBZOYVRJDOV6' where id=9; -update noar ti set b1='F8VYBZBZOYVRJDOV6' where id=9; -update noar tt set v0='MNHP' where id=9; -update noar ti set v0='MNHP' where id=9; -update noar tt set b2='FZ950SFLY7LPVIF' where id=9; -update noar ti set b2='FZ950SFLY7LPVIF' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - v0 varchar(32) null, - b0 blob null, - b1 longblob null, - b2 blob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='UZ1CVBHQCR0DQ2CBR3Y3CL2RK95' where id=1; -update noar ti set v0='UZ1CVBHQCR0DQ2CBR3Y3CL2RK95' where id=1; -update noar tt set b0='UDWGQTED08Y9A7KDY3HIC' where id=1; -update noar ti set b0='UDWGQTED08Y9A7KDY3HIC' where id=1; -update noar tt set v0='DZR' where id=1; -update noar ti set v0='DZR' where id=1; -update noar tt set b1='80V3D' where id=1; -update noar ti set b1='80V3D' where id=1; -update noar tt set v0='YHZMGFJDP5Y2HJFKEMF3UARQVO2U' where id=1; -update noar ti set v0='YHZMGFJDP5Y2HJFKEMF3UARQVO2U' where id=1; -update noar tt set b2='4MXTW6U' where id=1; -update noar ti set b2='4MXTW6U' where id=1; -update noar tt set v0='C87DYG6XW3VF2GJJPEII8K1GH9IDMWW' where id=2; -update noar ti set v0='C87DYG6XW3VF2GJJPEII8K1GH9IDMWW' where id=2; -update noar tt set b0='HUIX9W8X75FOFTZ8W' where id=2; -update noar ti set b0='HUIX9W8X75FOFTZ8W' where id=2; -update noar tt set v0='VPRKVU4ME26BLRNHDYAVFKBUGXRTEH' where id=2; -update noar ti set v0='VPRKVU4ME26BLRNHDYAVFKBUGXRTEH' where id=2; -update noar tt set b1='OP0GPDHVEM3PIKBLG' where id=2; -update noar ti set b1='OP0GPDHVEM3PIKBLG' where id=2; -update noar tt set v0='ON' where id=2; -update noar ti set v0='ON' where id=2; -update noar tt set b2='FO4YRBQ4F9ZLT' where id=2; -update noar ti set b2='FO4YRBQ4F9ZLT' where id=2; -update noar tt set v0='88PC1PAAN40Z3500OEKYV' where id=3; -update noar ti set v0='88PC1PAAN40Z3500OEKYV' where id=3; -update noar tt set b0='RA50' where id=3; -update noar ti set b0='RA50' where id=3; -update noar tt set v0='FJ' where id=3; -update noar ti set v0='FJ' where id=3; -update noar tt set b1='XV2FU8MVWX1V427CB2C1PIA5NXJKLU5' where id=3; -update noar ti set b1='XV2FU8MVWX1V427CB2C1PIA5NXJKLU5' where id=3; -update noar tt set v0='TG' where id=3; -update noar ti set v0='TG' where id=3; -update noar tt set b2='3ID2846HXPE2PFYCGOY' where id=3; -update noar ti set b2='3ID2846HXPE2PFYCGOY' where id=3; -update noar tt set v0='QDJ2BB8PB4SAGJW4ZIXSIN1XNI3F6H' where id=4; -update noar ti set v0='QDJ2BB8PB4SAGJW4ZIXSIN1XNI3F6H' where id=4; -update noar tt set b0='H3JD5OH2NLRIJR' where id=4; -update noar ti set b0='H3JD5OH2NLRIJR' where id=4; -update noar tt set v0='CMO93ZLCMJOGMJWSHWO4E6IBXRQYHS' where id=4; -update noar ti set v0='CMO93ZLCMJOGMJWSHWO4E6IBXRQYHS' where id=4; -update noar tt set b1='FXSU3K6UJDGS' where id=4; -update noar ti set b1='FXSU3K6UJDGS' where id=4; -update noar tt set v0='P20IVA4UJIVUO3A2VEV963L1O' where id=4; -update noar ti set v0='P20IVA4UJIVUO3A2VEV963L1O' where id=4; -update noar tt set b2='1AEP2D7TTQ8IM0HNEI7CJ5X' where id=4; -update noar ti set b2='1AEP2D7TTQ8IM0HNEI7CJ5X' where id=4; -update noar tt set v0='OODOYH1J6JJJ' where id=5; -update noar ti set v0='OODOYH1J6JJJ' where id=5; -update noar tt set b0='34ECPVJHSZ1' where id=5; -update noar ti set b0='34ECPVJHSZ1' where id=5; -update noar tt set v0='PFPETC7II' where id=5; -update noar ti set v0='PFPETC7II' where id=5; -update noar tt set b1='A' where id=5; -update noar ti set b1='A' where id=5; -update noar tt set v0='IF9' where id=5; -update noar ti set v0='IF9' where id=5; -update noar tt set b2='W17NGDA8U54OW67WMQ7' where id=5; -update noar ti set b2='W17NGDA8U54OW67WMQ7' where id=5; -update noar tt set v0='VXMMNZ18K8AVPZUJJS2R9' where id=6; -update noar ti set v0='VXMMNZ18K8AVPZUJJS2R9' where id=6; -update noar tt set b0='3VRLHATW4C7YKWX' where id=6; -update noar ti set b0='3VRLHATW4C7YKWX' where id=6; -update noar tt set v0='00ZED43JYABT7TQ9KHJ2OQ9H46' where id=6; -update noar ti set v0='00ZED43JYABT7TQ9KHJ2OQ9H46' where id=6; -update noar tt set b1='PWZK77CBRLQ' where id=6; -update noar ti set b1='PWZK77CBRLQ' where id=6; -update noar tt set v0='NI2BLSHKSL88CMHTVZ7Y0V7QU0FCLO' where id=6; -update noar ti set v0='NI2BLSHKSL88CMHTVZ7Y0V7QU0FCLO' where id=6; -update noar tt set b2='7TKILZ03PXUFGBL22V7XV4UVSECK' where id=6; -update noar ti set b2='7TKILZ03PXUFGBL22V7XV4UVSECK' where id=6; -update noar tt set v0='EC8BXXSPAE4FVMFP6FMZL5EQ693' where id=7; -update noar ti set v0='EC8BXXSPAE4FVMFP6FMZL5EQ693' where id=7; -update noar tt set b0='NUD22EOW7' where id=7; -update noar ti set b0='NUD22EOW7' where id=7; -update noar tt set v0='NR8V4ZWO8UGWM9BP2C6NP4BW85HT06' where id=7; -update noar ti set v0='NR8V4ZWO8UGWM9BP2C6NP4BW85HT06' where id=7; -update noar tt set b1='YJW7Z28E1UM56D1E4J16GOI89' where id=7; -update noar ti set b1='YJW7Z28E1UM56D1E4J16GOI89' where id=7; -update noar tt set v0='4IYVS2QFA63ORI7EOJRA8JKZ' where id=7; -update noar ti set v0='4IYVS2QFA63ORI7EOJRA8JKZ' where id=7; -update noar tt set b2='4VJO' where id=7; -update noar ti set b2='4VJO' where id=7; -update noar tt set v0='B9ISV' where id=8; -update noar ti set v0='B9ISV' where id=8; -update noar tt set b0='WUP152F0E8SVXPNZVXALJ1GG6L' where id=8; -update noar ti set b0='WUP152F0E8SVXPNZVXALJ1GG6L' where id=8; -update noar tt set v0='4YO2AP' where id=8; -update noar ti set v0='4YO2AP' where id=8; -update noar tt set b1='9CHK2M1KX7ZITS' where id=8; -update noar ti set b1='9CHK2M1KX7ZITS' where id=8; -update noar tt set v0='QXTPBHB5VRO7IPNSI3R6QZZPV' where id=8; -update noar ti set v0='QXTPBHB5VRO7IPNSI3R6QZZPV' where id=8; -update noar tt set b2='PR0B7VTPNTFD' where id=8; -update noar ti set b2='PR0B7VTPNTFD' where id=8; -update noar tt set v0='16QSW0UOQX5FOOEW93ACEK' where id=9; -update noar ti set v0='16QSW0UOQX5FOOEW93ACEK' where id=9; -update noar tt set b0='Q26VLWZF5I8GFKK1X7Q7JOF0CX' where id=9; -update noar ti set b0='Q26VLWZF5I8GFKK1X7Q7JOF0CX' where id=9; -update noar tt set v0='QV15ZUHFXN' where id=9; -update noar ti set v0='QV15ZUHFXN' where id=9; -update noar tt set b1='9F0RKNDWAWM2USCYDBSX6R7S0E2GYE' where id=9; -update noar ti set b1='9F0RKNDWAWM2USCYDBSX6R7S0E2GYE' where id=9; -update noar tt set v0='T7IDSPSL4V6B3GP95KTV' where id=9; -update noar ti set v0='T7IDSPSL4V6B3GP95KTV' where id=9; -update noar tt set b2='73XOD2SOBDKRO' where id=9; -update noar ti set b2='73XOD2SOBDKRO' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - v0 varchar(256) null, - b0 blob null, - b1 longblob null, - b2 blob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='7B5M' where id=1; -update noar ti set v0='7B5M' where id=1; -update noar tt set b0='O3VMLM1IOLKRXHB6YR' where id=1; -update noar ti set b0='O3VMLM1IOLKRXHB6YR' where id=1; -update noar tt set v0='7' where id=1; -update noar ti set v0='7' where id=1; -update noar tt set b1='H5YOI42039L' where id=1; -update noar ti set b1='H5YOI42039L' where id=1; -update noar tt set v0='Q0KCY3V5PZKXLE3ABP2XYGBMB3G2' where id=1; -update noar ti set v0='Q0KCY3V5PZKXLE3ABP2XYGBMB3G2' where id=1; -update noar tt set b2='LII19QR4QVIXCRM6Y68QNW' where id=1; -update noar ti set b2='LII19QR4QVIXCRM6Y68QNW' where id=1; -update noar tt set v0='IB4VQQ5IHZ1PZG0TF5' where id=2; -update noar ti set v0='IB4VQQ5IHZ1PZG0TF5' where id=2; -update noar tt set b0='T48X5PGD66V9FFYFND40' where id=2; -update noar ti set b0='T48X5PGD66V9FFYFND40' where id=2; -update noar tt set v0='LY5JEFNJ' where id=2; -update noar ti set v0='LY5JEFNJ' where id=2; -update noar tt set b1='WRH7HD4W' where id=2; -update noar ti set b1='WRH7HD4W' where id=2; -update noar tt set v0='9E5DFALSVPOLCX0TFP0NNP4H1D' where id=2; -update noar ti set v0='9E5DFALSVPOLCX0TFP0NNP4H1D' where id=2; -update noar tt set b2='EPC1R3NW84GHX' where id=2; -update noar ti set b2='EPC1R3NW84GHX' where id=2; -update noar tt set v0='K6F' where id=3; -update noar ti set v0='K6F' where id=3; -update noar tt set b0='2RF1AIYPTHYOF' where id=3; -update noar ti set b0='2RF1AIYPTHYOF' where id=3; -update noar tt set v0='Q9XBSFD4V6UUB0SXYOT6UD92BV55SAT' where id=3; -update noar ti set v0='Q9XBSFD4V6UUB0SXYOT6UD92BV55SAT' where id=3; -update noar tt set b1='SLQGDAOHNBAU1ZBBO1V6B3OS5' where id=3; -update noar ti set b1='SLQGDAOHNBAU1ZBBO1V6B3OS5' where id=3; -update noar tt set v0='8UKOKCAOY14S3G' where id=3; -update noar ti set v0='8UKOKCAOY14S3G' where id=3; -update noar tt set b2='1T' where id=3; -update noar ti set b2='1T' where id=3; -update noar tt set v0='M4HZBQBYVJO4C50LOL589FQHDQC8' where id=4; -update noar ti set v0='M4HZBQBYVJO4C50LOL589FQHDQC8' where id=4; -update noar tt set b0='VRVK48N0ANA7UFKT3HCII' where id=4; -update noar ti set b0='VRVK48N0ANA7UFKT3HCII' where id=4; -update noar tt set v0='95M1KDITRLP7A' where id=4; -update noar ti set v0='95M1KDITRLP7A' where id=4; -update noar tt set b1='G48AFM62I1' where id=4; -update noar ti set b1='G48AFM62I1' where id=4; -update noar tt set v0='U6HX9XAIMD' where id=4; -update noar ti set v0='U6HX9XAIMD' where id=4; -update noar tt set b2='O7PIPJG8XDTO3YVE4EPCAX6W' where id=4; -update noar ti set b2='O7PIPJG8XDTO3YVE4EPCAX6W' where id=4; -update noar tt set v0='48ID6' where id=5; -update noar ti set v0='48ID6' where id=5; -update noar tt set b0='COR' where id=5; -update noar ti set b0='COR' where id=5; -update noar tt set v0='8HU6F72OMO05' where id=5; -update noar ti set v0='8HU6F72OMO05' where id=5; -update noar tt set b1='FLGUJQK9ASFC' where id=5; -update noar ti set b1='FLGUJQK9ASFC' where id=5; -update noar tt set v0='40P86CUT189CP7TE' where id=5; -update noar ti set v0='40P86CUT189CP7TE' where id=5; -update noar tt set b2='LGFNZAIR8LJIS7LC37DMIHKZ80' where id=5; -update noar ti set b2='LGFNZAIR8LJIS7LC37DMIHKZ80' where id=5; -update noar tt set v0='V7C7NTC4W0BC' where id=6; -update noar ti set v0='V7C7NTC4W0BC' where id=6; -update noar tt set b0='OYKSVO9NEWFJ26W8U8QLFX5C46372' where id=6; -update noar ti set b0='OYKSVO9NEWFJ26W8U8QLFX5C46372' where id=6; -update noar tt set v0='COPWZREUYZQ' where id=6; -update noar ti set v0='COPWZREUYZQ' where id=6; -update noar tt set b1='1HW44' where id=6; -update noar ti set b1='1HW44' where id=6; -update noar tt set v0='ZFC' where id=6; -update noar ti set v0='ZFC' where id=6; -update noar tt set b2='W4FM32AKO5TCZNCZF9AUIEK0K2GR93Z6' where id=6; -update noar ti set b2='W4FM32AKO5TCZNCZF9AUIEK0K2GR93Z6' where id=6; -update noar tt set v0='O6P' where id=7; -update noar ti set v0='O6P' where id=7; -update noar tt set b0='2P87YJFWGBFNO' where id=7; -update noar ti set b0='2P87YJFWGBFNO' where id=7; -update noar tt set v0='5TCOQ6' where id=7; -update noar ti set v0='5TCOQ6' where id=7; -update noar tt set b1='EQGN6KQ7LB32244S9IRH2B' where id=7; -update noar ti set b1='EQGN6KQ7LB32244S9IRH2B' where id=7; -update noar tt set v0='8F9D3HNKKNTF1A01KLF' where id=7; -update noar ti set v0='8F9D3HNKKNTF1A01KLF' where id=7; -update noar tt set b2='H2UVXZG2BIDUCO0SPR2GC3X02F' where id=7; -update noar ti set b2='H2UVXZG2BIDUCO0SPR2GC3X02F' where id=7; -update noar tt set v0='B9MGWQ07VMW' where id=8; -update noar ti set v0='B9MGWQ07VMW' where id=8; -update noar tt set b0='GTAW7WT4MUB3X2GM88P1ONXK' where id=8; -update noar ti set b0='GTAW7WT4MUB3X2GM88P1ONXK' where id=8; -update noar tt set v0='GSZM' where id=8; -update noar ti set v0='GSZM' where id=8; -update noar tt set b1='5AMUAGW913HUXKV' where id=8; -update noar ti set b1='5AMUAGW913HUXKV' where id=8; -update noar tt set v0='GDNWZHPWE1QAK' where id=8; -update noar ti set v0='GDNWZHPWE1QAK' where id=8; -update noar tt set b2='R494CL4' where id=8; -update noar ti set b2='R494CL4' where id=8; -update noar tt set v0='A6CELHPA' where id=9; -update noar ti set v0='A6CELHPA' where id=9; -update noar tt set b0='55Y2X' where id=9; -update noar ti set b0='55Y2X' where id=9; -update noar tt set v0='NMJCIE8BLY0FPQPZ' where id=9; -update noar ti set v0='NMJCIE8BLY0FPQPZ' where id=9; -update noar tt set b1='9SVDGNAE' where id=9; -update noar ti set b1='9SVDGNAE' where id=9; -update noar tt set v0='K0F7PCPNNEP1J52TM7Z9DG55VIWU' where id=9; -update noar ti set v0='K0F7PCPNNEP1J52TM7Z9DG55VIWU' where id=9; -update noar tt set b2='85Y' where id=9; -update noar ti set b2='85Y' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - v0 varchar(32) not null, - b0 blob not null, - b1 longblob not null, - b2 blob not null -) engine=tokudb; -insert into tt values (1,'','','',''); -insert into tt values (2,'','','',''); -insert into tt values (3,'','','',''); -insert into tt values (4,'','','',''); -insert into tt values (5,'','','',''); -insert into tt values (6,'','','',''); -insert into tt values (7,'','','',''); -insert into tt values (8,'','','',''); -insert into tt values (9,'','','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='86YH72RKNJYSA6ML9YGT5Q0U06O' where id=1; -update noar ti set v0='86YH72RKNJYSA6ML9YGT5Q0U06O' where id=1; -update noar tt set b0='AH91L768A5KKMNMJ4CK67DWN' where id=1; -update noar ti set b0='AH91L768A5KKMNMJ4CK67DWN' where id=1; -update noar tt set v0='D66UE788RIII2W0542AI1UY48IR94P' where id=1; -update noar ti set v0='D66UE788RIII2W0542AI1UY48IR94P' where id=1; -update noar tt set b1='XQGICMLKNHPQ' where id=1; -update noar ti set b1='XQGICMLKNHPQ' where id=1; -update noar tt set v0='LXUWX3KBD5CDR64WJ6TDYUVFZ4CY7D15' where id=1; -update noar ti set v0='LXUWX3KBD5CDR64WJ6TDYUVFZ4CY7D15' where id=1; -update noar tt set b2='WCYRC0XPTXEM3FEASSD7BHM7L' where id=1; -update noar ti set b2='WCYRC0XPTXEM3FEASSD7BHM7L' where id=1; -update noar tt set v0='270E7AP7YX9W1SH6C8V60WS2Q1' where id=2; -update noar ti set v0='270E7AP7YX9W1SH6C8V60WS2Q1' where id=2; -update noar tt set b0='WM11FNV6OTLZVGCHO5R0D9L' where id=2; -update noar ti set b0='WM11FNV6OTLZVGCHO5R0D9L' where id=2; -update noar tt set v0='C21MCP7ARXRTLA8S' where id=2; -update noar ti set v0='C21MCP7ARXRTLA8S' where id=2; -update noar tt set b1='E3O0' where id=2; -update noar ti set b1='E3O0' where id=2; -update noar tt set v0='76XWRWI04VKDH2TOGZ9' where id=2; -update noar ti set v0='76XWRWI04VKDH2TOGZ9' where id=2; -update noar tt set b2='DFZ3GCUWRSHNLQD3' where id=2; -update noar ti set b2='DFZ3GCUWRSHNLQD3' where id=2; -update noar tt set v0='M9XZL1XRHKE1AZ913A' where id=3; -update noar ti set v0='M9XZL1XRHKE1AZ913A' where id=3; -update noar tt set b0='19GJPEUNNO' where id=3; -update noar ti set b0='19GJPEUNNO' where id=3; -update noar tt set v0='RIVRRSEKSTRQZU7VGK3265KBNETD' where id=3; -update noar ti set v0='RIVRRSEKSTRQZU7VGK3265KBNETD' where id=3; -update noar tt set b1='11F6FOODKFNNMMBE8BOZFUM6F' where id=3; -update noar ti set b1='11F6FOODKFNNMMBE8BOZFUM6F' where id=3; -update noar tt set v0='VRBMZ6APJJ4U2HY' where id=3; -update noar ti set v0='VRBMZ6APJJ4U2HY' where id=3; -update noar tt set b2='7' where id=3; -update noar ti set b2='7' where id=3; -update noar tt set v0='N2PAFJ2MZ7RHO81YW9804SPAB3XX' where id=4; -update noar ti set v0='N2PAFJ2MZ7RHO81YW9804SPAB3XX' where id=4; -update noar tt set b0='PDY8SKSEN1XEC2K96' where id=4; -update noar ti set b0='PDY8SKSEN1XEC2K96' where id=4; -update noar tt set v0='P3TKDD4HRXQ4VC0EWJC5' where id=4; -update noar ti set v0='P3TKDD4HRXQ4VC0EWJC5' where id=4; -update noar tt set b1='QGO9O' where id=4; -update noar ti set b1='QGO9O' where id=4; -update noar tt set v0='ETX98A2ZCD' where id=4; -update noar ti set v0='ETX98A2ZCD' where id=4; -update noar tt set b2='JE3VVV20VHTQ' where id=4; -update noar ti set b2='JE3VVV20VHTQ' where id=4; -update noar tt set v0='6L9' where id=5; -update noar ti set v0='6L9' where id=5; -update noar tt set b0='1B9HKLBZ7AW4' where id=5; -update noar ti set b0='1B9HKLBZ7AW4' where id=5; -update noar tt set v0='XVGYLFLR22NQ98LRALD5PXPZ8' where id=5; -update noar ti set v0='XVGYLFLR22NQ98LRALD5PXPZ8' where id=5; -update noar tt set b1='4L47QY' where id=5; -update noar ti set b1='4L47QY' where id=5; -update noar tt set v0='BOMR8S' where id=5; -update noar ti set v0='BOMR8S' where id=5; -update noar tt set b2='F0IZUPH5JMTB7M4H44WT' where id=5; -update noar ti set b2='F0IZUPH5JMTB7M4H44WT' where id=5; -update noar tt set v0='3XV4BLXT1ASGXFS0IR14' where id=6; -update noar ti set v0='3XV4BLXT1ASGXFS0IR14' where id=6; -update noar tt set b0='NQKNL94JUMLJ' where id=6; -update noar ti set b0='NQKNL94JUMLJ' where id=6; -update noar tt set v0='BRQ4F0HF5E83DX9Y80PO0V2CY' where id=6; -update noar ti set v0='BRQ4F0HF5E83DX9Y80PO0V2CY' where id=6; -update noar tt set b1='GMFXSRRA1TKLLP' where id=6; -update noar ti set b1='GMFXSRRA1TKLLP' where id=6; -update noar tt set v0='CP2BGCGWZKMYY88RIOOY' where id=6; -update noar ti set v0='CP2BGCGWZKMYY88RIOOY' where id=6; -update noar tt set b2='X31H0BB0' where id=6; -update noar ti set b2='X31H0BB0' where id=6; -update noar tt set v0='YXZB6G9AFBQNAOSSFYQIZRYTK' where id=7; -update noar ti set v0='YXZB6G9AFBQNAOSSFYQIZRYTK' where id=7; -update noar tt set b0='3PL2CPH0T27UNUC986KT0F5B' where id=7; -update noar ti set b0='3PL2CPH0T27UNUC986KT0F5B' where id=7; -update noar tt set v0='EJ550841' where id=7; -update noar ti set v0='EJ550841' where id=7; -update noar tt set b1='AV4TF5M3NQYKV0I31L7V0' where id=7; -update noar ti set b1='AV4TF5M3NQYKV0I31L7V0' where id=7; -update noar tt set v0='W2APVHF6CJZEVW0N7ZW9ARZTDO1ES' where id=7; -update noar ti set v0='W2APVHF6CJZEVW0N7ZW9ARZTDO1ES' where id=7; -update noar tt set b2='PMGD7UWY' where id=7; -update noar ti set b2='PMGD7UWY' where id=7; -update noar tt set v0='FV4EGB1BQQHU8X5SIOPEMKURI' where id=8; -update noar ti set v0='FV4EGB1BQQHU8X5SIOPEMKURI' where id=8; -update noar tt set b0='LZ1QP2OQJ3U4BLDI09' where id=8; -update noar ti set b0='LZ1QP2OQJ3U4BLDI09' where id=8; -update noar tt set v0='73HMUGCDZHYS4OBY3ZC7DEK2R7ZM' where id=8; -update noar ti set v0='73HMUGCDZHYS4OBY3ZC7DEK2R7ZM' where id=8; -update noar tt set b1='8NVXJ1TORGCO' where id=8; -update noar ti set b1='8NVXJ1TORGCO' where id=8; -update noar tt set v0='WXKFM7H' where id=8; -update noar ti set v0='WXKFM7H' where id=8; -update noar tt set b2='2GBZE5Q7V5O4LP66M5AN' where id=8; -update noar ti set b2='2GBZE5Q7V5O4LP66M5AN' where id=8; -update noar tt set v0='Y2242KN9THL2KV0ALATKBAWBKKB' where id=9; -update noar ti set v0='Y2242KN9THL2KV0ALATKBAWBKKB' where id=9; -update noar tt set b0='G8QEN2EJ5LWKHXF36JQ9PC9G' where id=9; -update noar ti set b0='G8QEN2EJ5LWKHXF36JQ9PC9G' where id=9; -update noar tt set v0='5UFCMRM0IJ2OTDXFVEDJ5HNH6NTU' where id=9; -update noar ti set v0='5UFCMRM0IJ2OTDXFVEDJ5HNH6NTU' where id=9; -update noar tt set b1='LFN9H1HDL4JA9OI2PHBSM2M0DRX' where id=9; -update noar ti set b1='LFN9H1HDL4JA9OI2PHBSM2M0DRX' where id=9; -update noar tt set v0='T7FKCFNSJ3GLTXM5' where id=9; -update noar ti set v0='T7FKCFNSJ3GLTXM5' where id=9; -update noar tt set b2='6IE9YDK6IH15L1' where id=9; -update noar ti set b2='6IE9YDK6IH15L1' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - v0 varchar(256) not null, - b0 blob not null, - b1 longblob not null, - b2 blob not null -) engine=tokudb; -insert into tt values (1,'','','',''); -insert into tt values (2,'','','',''); -insert into tt values (3,'','','',''); -insert into tt values (4,'','','',''); -insert into tt values (5,'','','',''); -insert into tt values (6,'','','',''); -insert into tt values (7,'','','',''); -insert into tt values (8,'','','',''); -insert into tt values (9,'','','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='KZSXHZ71NWO' where id=1; -update noar ti set v0='KZSXHZ71NWO' where id=1; -update noar tt set b0='O4Q3CNNWCHYKFK7' where id=1; -update noar ti set b0='O4Q3CNNWCHYKFK7' where id=1; -update noar tt set v0='XFJ14XGHYGXTDELKGS' where id=1; -update noar ti set v0='XFJ14XGHYGXTDELKGS' where id=1; -update noar tt set b1='1WID9SLJIPBX8JWY7QNC2D5' where id=1; -update noar ti set b1='1WID9SLJIPBX8JWY7QNC2D5' where id=1; -update noar tt set v0='G7IANSTI86HBBDTK29C' where id=1; -update noar ti set v0='G7IANSTI86HBBDTK29C' where id=1; -update noar tt set b2='5EU63CHMBDC2OGA9GLJNA78UKJB9U6VS' where id=1; -update noar ti set b2='5EU63CHMBDC2OGA9GLJNA78UKJB9U6VS' where id=1; -update noar tt set v0='WP4VXHSTQCVO6D2KQ' where id=2; -update noar ti set v0='WP4VXHSTQCVO6D2KQ' where id=2; -update noar tt set b0='KOK4P4NXT78PDP' where id=2; -update noar ti set b0='KOK4P4NXT78PDP' where id=2; -update noar tt set v0='9H77ENRPFIWWM' where id=2; -update noar ti set v0='9H77ENRPFIWWM' where id=2; -update noar tt set b1='I1109OT3OUN' where id=2; -update noar ti set b1='I1109OT3OUN' where id=2; -update noar tt set v0='HBE3X7PJCDMV' where id=2; -update noar ti set v0='HBE3X7PJCDMV' where id=2; -update noar tt set b2='WO4UMOUUBZAKMLE3EC' where id=2; -update noar ti set b2='WO4UMOUUBZAKMLE3EC' where id=2; -update noar tt set v0='60L6XL1VCJ7GG84FJDU3K0X86F' where id=3; -update noar ti set v0='60L6XL1VCJ7GG84FJDU3K0X86F' where id=3; -update noar tt set b0='5OBVORTZSQOS3D' where id=3; -update noar ti set b0='5OBVORTZSQOS3D' where id=3; -update noar tt set v0='2W' where id=3; -update noar ti set v0='2W' where id=3; -update noar tt set b1='NHWIZ8JH00NNJSLE74BYN34GAOU2VY' where id=3; -update noar ti set b1='NHWIZ8JH00NNJSLE74BYN34GAOU2VY' where id=3; -update noar tt set v0='737M61PEL6RD9ZWPQNI8V563T59OL1' where id=3; -update noar ti set v0='737M61PEL6RD9ZWPQNI8V563T59OL1' where id=3; -update noar tt set b2='SSB5DKUXWFXYP28ENXEY9Y1XCB' where id=3; -update noar ti set b2='SSB5DKUXWFXYP28ENXEY9Y1XCB' where id=3; -update noar tt set v0='U' where id=4; -update noar ti set v0='U' where id=4; -update noar tt set b0='2P46UM' where id=4; -update noar ti set b0='2P46UM' where id=4; -update noar tt set v0='ISAD2KT39J84IBV40KIUFXG7SIXWDDSO' where id=4; -update noar ti set v0='ISAD2KT39J84IBV40KIUFXG7SIXWDDSO' where id=4; -update noar tt set b1='4EQ3ZK9QO5T7Z4GD9I7' where id=4; -update noar ti set b1='4EQ3ZK9QO5T7Z4GD9I7' where id=4; -update noar tt set v0='9EKLBE01TYW9D7O36TYA' where id=4; -update noar ti set v0='9EKLBE01TYW9D7O36TYA' where id=4; -update noar tt set b2='M3B38YGM4IZ4VOLNG8UTPJ6PEGZ' where id=4; -update noar ti set b2='M3B38YGM4IZ4VOLNG8UTPJ6PEGZ' where id=4; -update noar tt set v0='9SAO240F7KVUS' where id=5; -update noar ti set v0='9SAO240F7KVUS' where id=5; -update noar tt set b0='GQS81M5Y37V8RHN92U39EFAWECOZ' where id=5; -update noar ti set b0='GQS81M5Y37V8RHN92U39EFAWECOZ' where id=5; -update noar tt set v0='K5OQ2UTDPAYCU9O11OEPOP0D96K0DPC' where id=5; -update noar ti set v0='K5OQ2UTDPAYCU9O11OEPOP0D96K0DPC' where id=5; -update noar tt set b1='YQ' where id=5; -update noar ti set b1='YQ' where id=5; -update noar tt set v0='H21IGF1VYH42GSB2Y' where id=5; -update noar ti set v0='H21IGF1VYH42GSB2Y' where id=5; -update noar tt set b2='FR0D2X8463N' where id=5; -update noar ti set b2='FR0D2X8463N' where id=5; -update noar tt set v0='0VD69QUB1FCA1E8MVIY9G4QMIP7' where id=6; -update noar ti set v0='0VD69QUB1FCA1E8MVIY9G4QMIP7' where id=6; -update noar tt set b0='FZT5HEJPJ3RUXVCUA5QE' where id=6; -update noar ti set b0='FZT5HEJPJ3RUXVCUA5QE' where id=6; -update noar tt set v0='KOZ4A0K5LHD5TSRE' where id=6; -update noar ti set v0='KOZ4A0K5LHD5TSRE' where id=6; -update noar tt set b1='6QRH1ULSTN3M3SI99' where id=6; -update noar ti set b1='6QRH1ULSTN3M3SI99' where id=6; -update noar tt set v0='UBQQDQV1YII74F3CYCGOH913SE' where id=6; -update noar ti set v0='UBQQDQV1YII74F3CYCGOH913SE' where id=6; -update noar tt set b2='XX5NITXUHRLQNF' where id=6; -update noar ti set b2='XX5NITXUHRLQNF' where id=6; -update noar tt set v0='V6MG34TI9SZ6526OZGGM7SFKLKH' where id=7; -update noar ti set v0='V6MG34TI9SZ6526OZGGM7SFKLKH' where id=7; -update noar tt set b0='7VNIN2F26FCS67L85DCBRY1QK89K' where id=7; -update noar ti set b0='7VNIN2F26FCS67L85DCBRY1QK89K' where id=7; -update noar tt set v0='JICMLWLDU44NLYHS82S8WE47TI' where id=7; -update noar ti set v0='JICMLWLDU44NLYHS82S8WE47TI' where id=7; -update noar tt set b1='30ZFKKDIAGF' where id=7; -update noar ti set b1='30ZFKKDIAGF' where id=7; -update noar tt set v0='C95F7H251FS' where id=7; -update noar ti set v0='C95F7H251FS' where id=7; -update noar tt set b2='ARSJRXM0WJBE4U9E7YJTGD' where id=7; -update noar ti set b2='ARSJRXM0WJBE4U9E7YJTGD' where id=7; -update noar tt set v0='0GCMNRT9' where id=8; -update noar ti set v0='0GCMNRT9' where id=8; -update noar tt set b0='UR9HJ72DEAZ' where id=8; -update noar ti set b0='UR9HJ72DEAZ' where id=8; -update noar tt set v0='9F81SUFATO80' where id=8; -update noar ti set v0='9F81SUFATO80' where id=8; -update noar tt set b1='0HY01VHG' where id=8; -update noar ti set b1='0HY01VHG' where id=8; -update noar tt set v0='EKM' where id=8; -update noar ti set v0='EKM' where id=8; -update noar tt set b2='ZY' where id=8; -update noar ti set b2='ZY' where id=8; -update noar tt set v0='E5V8XS74LUB3VU' where id=9; -update noar ti set v0='E5V8XS74LUB3VU' where id=9; -update noar tt set b0='HQVPDBMP62J7B1Y4SFUGSS' where id=9; -update noar ti set b0='HQVPDBMP62J7B1Y4SFUGSS' where id=9; -update noar tt set v0='W8F7S4275SEI843RSSGINC5C2XTU5AP4' where id=9; -update noar ti set v0='W8F7S4275SEI843RSSGINC5C2XTU5AP4' where id=9; -update noar tt set b1='7JQOUNL3TRVQS1' where id=9; -update noar ti set b1='7JQOUNL3TRVQS1' where id=9; -update noar tt set v0='QFSFALZLQO83RKM' where id=9; -update noar ti set v0='QFSFALZLQO83RKM' where id=9; -update noar tt set b2='TU1365Z1PBHUI4K70DH0Y0' where id=9; -update noar ti set b2='TU1365Z1PBHUI4K70DH0Y0' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - v0 varchar(32) null, - b0 blob null, - b1 longblob null, - b2 mediumblob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='KJ6MKP049PDG' where id=1; -update noar ti set v0='KJ6MKP049PDG' where id=1; -update noar tt set b0='69E1' where id=1; -update noar ti set b0='69E1' where id=1; -update noar tt set v0='DV6D9' where id=1; -update noar ti set v0='DV6D9' where id=1; -update noar tt set b1='A7R18OFT4719POYYKW' where id=1; -update noar ti set b1='A7R18OFT4719POYYKW' where id=1; -update noar tt set v0='YMEJKYXVKIRY1A' where id=1; -update noar ti set v0='YMEJKYXVKIRY1A' where id=1; -update noar tt set b2='K7FMF' where id=1; -update noar ti set b2='K7FMF' where id=1; -update noar tt set v0='JPXGG54S' where id=2; -update noar ti set v0='JPXGG54S' where id=2; -update noar tt set b0='WCAKXTLZ7624V' where id=2; -update noar ti set b0='WCAKXTLZ7624V' where id=2; -update noar tt set v0='SXQMLSI2N05N460U8NU84U80VVBK' where id=2; -update noar ti set v0='SXQMLSI2N05N460U8NU84U80VVBK' where id=2; -update noar tt set b1='MI7CCMVG2V4IBQZEPEAAKY' where id=2; -update noar ti set b1='MI7CCMVG2V4IBQZEPEAAKY' where id=2; -update noar tt set v0='S7YRJFHRZ63FTZ0UZ783NGWJ0Q0Q0' where id=2; -update noar ti set v0='S7YRJFHRZ63FTZ0UZ783NGWJ0Q0Q0' where id=2; -update noar tt set b2='UZRX94PCNHOR' where id=2; -update noar ti set b2='UZRX94PCNHOR' where id=2; -update noar tt set v0='O3K8E2KKBO22MJRM4' where id=3; -update noar ti set v0='O3K8E2KKBO22MJRM4' where id=3; -update noar tt set b0='TD3' where id=3; -update noar ti set b0='TD3' where id=3; -update noar tt set v0='N5GZATTF8VZBWVJ' where id=3; -update noar ti set v0='N5GZATTF8VZBWVJ' where id=3; -update noar tt set b1='LN2GBCLZEUN' where id=3; -update noar ti set b1='LN2GBCLZEUN' where id=3; -update noar tt set v0='3ZGAWSEZANCV4ZJ8ZAOU4428KAC2P' where id=3; -update noar ti set v0='3ZGAWSEZANCV4ZJ8ZAOU4428KAC2P' where id=3; -update noar tt set b2='LUR7M75DNR5ER4DNVBTAO8TDCAMHHT' where id=3; -update noar ti set b2='LUR7M75DNR5ER4DNVBTAO8TDCAMHHT' where id=3; -update noar tt set v0='V3WN4JUFIS4YMZT' where id=4; -update noar ti set v0='V3WN4JUFIS4YMZT' where id=4; -update noar tt set b0='Y37CSDSCBCMPM0RU5Y0MZUFRIQAN5V7P' where id=4; -update noar ti set b0='Y37CSDSCBCMPM0RU5Y0MZUFRIQAN5V7P' where id=4; -update noar tt set v0='JBIX2PLJAED9KBHWUUV9P3XP' where id=4; -update noar ti set v0='JBIX2PLJAED9KBHWUUV9P3XP' where id=4; -update noar tt set b1='P5GI' where id=4; -update noar ti set b1='P5GI' where id=4; -update noar tt set v0='WTKW7E45N2I0IMRBRNYQ9CK' where id=4; -update noar ti set v0='WTKW7E45N2I0IMRBRNYQ9CK' where id=4; -update noar tt set b2='CFBBHF' where id=4; -update noar ti set b2='CFBBHF' where id=4; -update noar tt set v0='GBN9OHZHHTLSAD4LMVVX5Y' where id=5; -update noar ti set v0='GBN9OHZHHTLSAD4LMVVX5Y' where id=5; -update noar tt set b0='K' where id=5; -update noar ti set b0='K' where id=5; -update noar tt set v0='47MBG75Q6GPW' where id=5; -update noar ti set v0='47MBG75Q6GPW' where id=5; -update noar tt set b1='PLNZFEXBT1' where id=5; -update noar ti set b1='PLNZFEXBT1' where id=5; -update noar tt set v0='6VW2EPWR8I' where id=5; -update noar ti set v0='6VW2EPWR8I' where id=5; -update noar tt set b2='9AGKTT6LR5QZ5X904PBGC85JMPU' where id=5; -update noar ti set b2='9AGKTT6LR5QZ5X904PBGC85JMPU' where id=5; -update noar tt set v0='YOJH0FLKQD9R' where id=6; -update noar ti set v0='YOJH0FLKQD9R' where id=6; -update noar tt set b0='O194CF9VIOHO3Q0I77ZE3J7FP' where id=6; -update noar ti set b0='O194CF9VIOHO3Q0I77ZE3J7FP' where id=6; -update noar tt set v0='4IFEK' where id=6; -update noar ti set v0='4IFEK' where id=6; -update noar tt set b1='OS2PDRO36I4ILQ' where id=6; -update noar ti set b1='OS2PDRO36I4ILQ' where id=6; -update noar tt set v0='HPB0H' where id=6; -update noar ti set v0='HPB0H' where id=6; -update noar tt set b2='PNITSXSGGIN' where id=6; -update noar ti set b2='PNITSXSGGIN' where id=6; -update noar tt set v0='J6WDDAP8UQBMPRPPB6AZRYJFM2' where id=7; -update noar ti set v0='J6WDDAP8UQBMPRPPB6AZRYJFM2' where id=7; -update noar tt set b0='2O25QBVE05XVIWGLE2QTR2536RWDA7OZ' where id=7; -update noar ti set b0='2O25QBVE05XVIWGLE2QTR2536RWDA7OZ' where id=7; -update noar tt set v0='0PZ0UK' where id=7; -update noar ti set v0='0PZ0UK' where id=7; -update noar tt set b1='6FK9XGEIP42YHUT2UF5QAE1F387U' where id=7; -update noar ti set b1='6FK9XGEIP42YHUT2UF5QAE1F387U' where id=7; -update noar tt set v0='EJCASXYO2JUCUAKROAG068LW04910HSQ' where id=7; -update noar ti set v0='EJCASXYO2JUCUAKROAG068LW04910HSQ' where id=7; -update noar tt set b2='NH096JE59N1PA1K8INC8D0370B6I' where id=7; -update noar ti set b2='NH096JE59N1PA1K8INC8D0370B6I' where id=7; -update noar tt set v0='K3EKNTGDBRA2OQ4OQRRVMHLW3UC7V2C' where id=8; -update noar ti set v0='K3EKNTGDBRA2OQ4OQRRVMHLW3UC7V2C' where id=8; -update noar tt set b0='ESL93' where id=8; -update noar ti set b0='ESL93' where id=8; -update noar tt set v0='ZKNB1221LBQ7X05NJPMY44VCHASW' where id=8; -update noar ti set v0='ZKNB1221LBQ7X05NJPMY44VCHASW' where id=8; -update noar tt set b1='G' where id=8; -update noar ti set b1='G' where id=8; -update noar tt set v0='H0D1UL1806J9QRNDVNB84XXP2600IQ' where id=8; -update noar ti set v0='H0D1UL1806J9QRNDVNB84XXP2600IQ' where id=8; -update noar tt set b2='8MUF' where id=8; -update noar ti set b2='8MUF' where id=8; -update noar tt set v0='W19KL15S2QHVW280KXP0' where id=9; -update noar ti set v0='W19KL15S2QHVW280KXP0' where id=9; -update noar tt set b0='0ET2YLFPVAMTVLAQ4EWT8QLQWT7DHEF' where id=9; -update noar ti set b0='0ET2YLFPVAMTVLAQ4EWT8QLQWT7DHEF' where id=9; -update noar tt set v0='KFLNKTMFCJAUPEHWDRZT' where id=9; -update noar ti set v0='KFLNKTMFCJAUPEHWDRZT' where id=9; -update noar tt set b1='8A9K' where id=9; -update noar ti set b1='8A9K' where id=9; -update noar tt set v0='89YIIRVZ241T2KIMYFV422AS5JW3' where id=9; -update noar ti set v0='89YIIRVZ241T2KIMYFV422AS5JW3' where id=9; -update noar tt set b2='I2W9N7WP7FEH' where id=9; -update noar ti set b2='I2W9N7WP7FEH' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - v0 varchar(256) null, - b0 blob null, - b1 longblob null, - b2 mediumblob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='ITO' where id=1; -update noar ti set v0='ITO' where id=1; -update noar tt set b0='9BP' where id=1; -update noar ti set b0='9BP' where id=1; -update noar tt set v0='MB4R269GI0573NGI4QADOC6F9TDN3' where id=1; -update noar ti set v0='MB4R269GI0573NGI4QADOC6F9TDN3' where id=1; -update noar tt set b1='8BI9TK0' where id=1; -update noar ti set b1='8BI9TK0' where id=1; -update noar tt set v0='SW1R1ZJ23K6RP3OUV4CTHT' where id=1; -update noar ti set v0='SW1R1ZJ23K6RP3OUV4CTHT' where id=1; -update noar tt set b2='TTKLVH6ABGT8' where id=1; -update noar ti set b2='TTKLVH6ABGT8' where id=1; -update noar tt set v0='RUW83BI5QOF9EQ2H7F0G' where id=2; -update noar ti set v0='RUW83BI5QOF9EQ2H7F0G' where id=2; -update noar tt set b0='LG5EBGS6DPOXBWH7MK0Z2ZN4' where id=2; -update noar ti set b0='LG5EBGS6DPOXBWH7MK0Z2ZN4' where id=2; -update noar tt set v0='EN9ZXMYC' where id=2; -update noar ti set v0='EN9ZXMYC' where id=2; -update noar tt set b1='8488T5G82EB59QH6' where id=2; -update noar ti set b1='8488T5G82EB59QH6' where id=2; -update noar tt set v0='BSZ0895XG' where id=2; -update noar ti set v0='BSZ0895XG' where id=2; -update noar tt set b2='HAEQ7TZ2GL0C' where id=2; -update noar ti set b2='HAEQ7TZ2GL0C' where id=2; -update noar tt set v0='VD20G96JY68XKVM3KX49ET3NK6' where id=3; -update noar ti set v0='VD20G96JY68XKVM3KX49ET3NK6' where id=3; -update noar tt set b0='SWF4F624MVDSM8H0OA' where id=3; -update noar ti set b0='SWF4F624MVDSM8H0OA' where id=3; -update noar tt set v0='YROHDKQYDFGP0JH5FWPGKE02W' where id=3; -update noar ti set v0='YROHDKQYDFGP0JH5FWPGKE02W' where id=3; -update noar tt set b1='8ZXJ34RTK995TK' where id=3; -update noar ti set b1='8ZXJ34RTK995TK' where id=3; -update noar tt set v0='ZS4EH099NBP53P3SNZYZZG8V1IOIH' where id=3; -update noar ti set v0='ZS4EH099NBP53P3SNZYZZG8V1IOIH' where id=3; -update noar tt set b2='R7CYSNEVJ3D' where id=3; -update noar ti set b2='R7CYSNEVJ3D' where id=3; -update noar tt set v0='JK7IGN97' where id=4; -update noar ti set v0='JK7IGN97' where id=4; -update noar tt set b0='YZFDMVIBS7FU3MQ11MJ7S' where id=4; -update noar ti set b0='YZFDMVIBS7FU3MQ11MJ7S' where id=4; -update noar tt set v0='F063BPTT4UF2JO' where id=4; -update noar ti set v0='F063BPTT4UF2JO' where id=4; -update noar tt set b1='U9A35HW6MO5VIG79M01LELB' where id=4; -update noar ti set b1='U9A35HW6MO5VIG79M01LELB' where id=4; -update noar tt set v0='D28GTGR7HCKIBJW1ILZM' where id=4; -update noar ti set v0='D28GTGR7HCKIBJW1ILZM' where id=4; -update noar tt set b2='CQWH0W' where id=4; -update noar ti set b2='CQWH0W' where id=4; -update noar tt set v0='8KNCJML44FP6K13VYHKFPXLOQWCNYAY' where id=5; -update noar ti set v0='8KNCJML44FP6K13VYHKFPXLOQWCNYAY' where id=5; -update noar tt set b0='8VN1QDSICJTI8ZV82Z' where id=5; -update noar ti set b0='8VN1QDSICJTI8ZV82Z' where id=5; -update noar tt set v0='6F4NC9M7OA0KH41KFTZ' where id=5; -update noar ti set v0='6F4NC9M7OA0KH41KFTZ' where id=5; -update noar tt set b1='B931DFW' where id=5; -update noar ti set b1='B931DFW' where id=5; -update noar tt set v0='U' where id=5; -update noar ti set v0='U' where id=5; -update noar tt set b2='U34BAYBBB7RQ135QT9BXOWI' where id=5; -update noar ti set b2='U34BAYBBB7RQ135QT9BXOWI' where id=5; -update noar tt set v0='FJ0VFJ041Y6FZ3F6EKCG4497' where id=6; -update noar ti set v0='FJ0VFJ041Y6FZ3F6EKCG4497' where id=6; -update noar tt set b0='2YRAK04HQ4BXW84R1ZXEII5SD05BS0' where id=6; -update noar ti set b0='2YRAK04HQ4BXW84R1ZXEII5SD05BS0' where id=6; -update noar tt set v0='D1VWA61L2NCMUSQ9595LYU20M4H7' where id=6; -update noar ti set v0='D1VWA61L2NCMUSQ9595LYU20M4H7' where id=6; -update noar tt set b1='5LRBSCLHRSIEZZ12ZDG09ZTK6S3V9F' where id=6; -update noar ti set b1='5LRBSCLHRSIEZZ12ZDG09ZTK6S3V9F' where id=6; -update noar tt set v0='845QXJ0IC6COX' where id=6; -update noar ti set v0='845QXJ0IC6COX' where id=6; -update noar tt set b2='4JWH5WI4J73LH3IAIBND1S' where id=6; -update noar ti set b2='4JWH5WI4J73LH3IAIBND1S' where id=6; -update noar tt set v0='YWC3JJ3SDLISFJBR9U2IRC32FI2D' where id=7; -update noar ti set v0='YWC3JJ3SDLISFJBR9U2IRC32FI2D' where id=7; -update noar tt set b0='7DEVU7RA4P5CHEMGP5JX1B7UHP89P39' where id=7; -update noar ti set b0='7DEVU7RA4P5CHEMGP5JX1B7UHP89P39' where id=7; -update noar tt set v0='V4SRVJAOCJ69' where id=7; -update noar ti set v0='V4SRVJAOCJ69' where id=7; -update noar tt set b1='I77SO2B8M7I51' where id=7; -update noar ti set b1='I77SO2B8M7I51' where id=7; -update noar tt set v0='WKQ4F33J16DZSV3HQFTS' where id=7; -update noar ti set v0='WKQ4F33J16DZSV3HQFTS' where id=7; -update noar tt set b2='HP22Y62C9LZSQDBWP8SJRZ6LY' where id=7; -update noar ti set b2='HP22Y62C9LZSQDBWP8SJRZ6LY' where id=7; -update noar tt set v0='MUZGIV8K81FZFE3YPLL155HW3M' where id=8; -update noar ti set v0='MUZGIV8K81FZFE3YPLL155HW3M' where id=8; -update noar tt set b0='VVQA' where id=8; -update noar ti set b0='VVQA' where id=8; -update noar tt set v0='W0QBLTI0H1MR' where id=8; -update noar ti set v0='W0QBLTI0H1MR' where id=8; -update noar tt set b1='4DY3M9KOQO60C2AEIMWP4RCBPVIIX14B' where id=8; -update noar ti set b1='4DY3M9KOQO60C2AEIMWP4RCBPVIIX14B' where id=8; -update noar tt set v0='F7DPBVSLGTU1YL009S' where id=8; -update noar ti set v0='F7DPBVSLGTU1YL009S' where id=8; -update noar tt set b2='9JVFALJV78AGGJNW07UMS' where id=8; -update noar ti set b2='9JVFALJV78AGGJNW07UMS' where id=8; -update noar tt set v0='FUS026C7I5S3UKFK1CATTD2R7P' where id=9; -update noar ti set v0='FUS026C7I5S3UKFK1CATTD2R7P' where id=9; -update noar tt set b0='NPZS3' where id=9; -update noar ti set b0='NPZS3' where id=9; -update noar tt set v0='R9FCY75S47KUMB8M1GW3RUMJ' where id=9; -update noar ti set v0='R9FCY75S47KUMB8M1GW3RUMJ' where id=9; -update noar tt set b1='NW96JBMM62X5LAB25EG17MRUXTULC' where id=9; -update noar ti set b1='NW96JBMM62X5LAB25EG17MRUXTULC' where id=9; -update noar tt set v0='LKSTEKPKMYGATFBJT2IK7CCQW' where id=9; -update noar ti set v0='LKSTEKPKMYGATFBJT2IK7CCQW' where id=9; -update noar tt set b2='QTB' where id=9; -update noar ti set b2='QTB' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - v0 varchar(32) not null, - b0 blob not null, - b1 longblob not null, - b2 mediumblob not null -) engine=tokudb; -insert into tt values (1,'','','',''); -insert into tt values (2,'','','',''); -insert into tt values (3,'','','',''); -insert into tt values (4,'','','',''); -insert into tt values (5,'','','',''); -insert into tt values (6,'','','',''); -insert into tt values (7,'','','',''); -insert into tt values (8,'','','',''); -insert into tt values (9,'','','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='U' where id=1; -update noar ti set v0='U' where id=1; -update noar tt set b0='MF3BLQ' where id=1; -update noar ti set b0='MF3BLQ' where id=1; -update noar tt set v0='JWT2OX' where id=1; -update noar ti set v0='JWT2OX' where id=1; -update noar tt set b1='P5K5QTRYV1237KMOAL7E1W1' where id=1; -update noar ti set b1='P5K5QTRYV1237KMOAL7E1W1' where id=1; -update noar tt set v0='2' where id=1; -update noar ti set v0='2' where id=1; -update noar tt set b2='X7P5EQWGF2QRWJ' where id=1; -update noar ti set b2='X7P5EQWGF2QRWJ' where id=1; -update noar tt set v0='3J3R13MW2L8KRX93UYO3' where id=2; -update noar ti set v0='3J3R13MW2L8KRX93UYO3' where id=2; -update noar tt set b0='EVVVE6QL6F6PYN0NR5U1KF' where id=2; -update noar ti set b0='EVVVE6QL6F6PYN0NR5U1KF' where id=2; -update noar tt set v0='BIR8QY7YS9RG38846YKR7' where id=2; -update noar ti set v0='BIR8QY7YS9RG38846YKR7' where id=2; -update noar tt set b1='G6PV5ZVNKLPJ2T7IN5XCM' where id=2; -update noar ti set b1='G6PV5ZVNKLPJ2T7IN5XCM' where id=2; -update noar tt set v0='G3N7JHA25VY4DQEIY4G' where id=2; -update noar ti set v0='G3N7JHA25VY4DQEIY4G' where id=2; -update noar tt set b2='3ODMSDN0EFH5T080' where id=2; -update noar ti set b2='3ODMSDN0EFH5T080' where id=2; -update noar tt set v0='8ADM6SBIDBQD5LY2YFI8PU43GG2B' where id=3; -update noar ti set v0='8ADM6SBIDBQD5LY2YFI8PU43GG2B' where id=3; -update noar tt set b0='W' where id=3; -update noar ti set b0='W' where id=3; -update noar tt set v0='S5G90H3E1V2AT24XL2IMCK08AQC48W' where id=3; -update noar ti set v0='S5G90H3E1V2AT24XL2IMCK08AQC48W' where id=3; -update noar tt set b1='JLED5SW6YJZL97' where id=3; -update noar ti set b1='JLED5SW6YJZL97' where id=3; -update noar tt set v0='WL7E77ZWPWMKKM9L4G' where id=3; -update noar ti set v0='WL7E77ZWPWMKKM9L4G' where id=3; -update noar tt set b2='RIL3LWRO7U851QCHZHFUMASGOUOGQ' where id=3; -update noar ti set b2='RIL3LWRO7U851QCHZHFUMASGOUOGQ' where id=3; -update noar tt set v0='9EQY3QU1' where id=4; -update noar ti set v0='9EQY3QU1' where id=4; -update noar tt set b0='H9OSPWTQKIA1PDC96' where id=4; -update noar ti set b0='H9OSPWTQKIA1PDC96' where id=4; -update noar tt set v0='U8KU66FHTYBNFOF3' where id=4; -update noar ti set v0='U8KU66FHTYBNFOF3' where id=4; -update noar tt set b1='Y52LWJP' where id=4; -update noar ti set b1='Y52LWJP' where id=4; -update noar tt set v0='CN' where id=4; -update noar ti set v0='CN' where id=4; -update noar tt set b2='JFYBRI1UTWBEM344C6TY4172' where id=4; -update noar ti set b2='JFYBRI1UTWBEM344C6TY4172' where id=4; -update noar tt set v0='GPNOZCYQ5Q0' where id=5; -update noar ti set v0='GPNOZCYQ5Q0' where id=5; -update noar tt set b0='P2EKX' where id=5; -update noar ti set b0='P2EKX' where id=5; -update noar tt set v0='4L90NIQ7D364VV21JXSEPHOE' where id=5; -update noar ti set v0='4L90NIQ7D364VV21JXSEPHOE' where id=5; -update noar tt set b1='XZDFIGCCN0CO6ABW6BY8J5DUS7F4B' where id=5; -update noar ti set b1='XZDFIGCCN0CO6ABW6BY8J5DUS7F4B' where id=5; -update noar tt set v0='K62ZQCPLYBRSQ7QOG71H' where id=5; -update noar ti set v0='K62ZQCPLYBRSQ7QOG71H' where id=5; -update noar tt set b2='AWI' where id=5; -update noar ti set b2='AWI' where id=5; -update noar tt set v0='8457IMW1E4BP0H4WC52SECB1BATN61' where id=6; -update noar ti set v0='8457IMW1E4BP0H4WC52SECB1BATN61' where id=6; -update noar tt set b0='PI5YYKCQE3HBP70BJIXNE8ZZDTP6F' where id=6; -update noar ti set b0='PI5YYKCQE3HBP70BJIXNE8ZZDTP6F' where id=6; -update noar tt set v0='BXMLD0HEBZC3T' where id=6; -update noar ti set v0='BXMLD0HEBZC3T' where id=6; -update noar tt set b1='PSL98PMQ2W1RW2KCHW43GDFG7ST' where id=6; -update noar ti set b1='PSL98PMQ2W1RW2KCHW43GDFG7ST' where id=6; -update noar tt set v0='LC83UXCADG6MLMLXM9SKH5P' where id=6; -update noar ti set v0='LC83UXCADG6MLMLXM9SKH5P' where id=6; -update noar tt set b2='BHXS0HL90GQG22Y9HND16MAN9PO7ZZE2' where id=6; -update noar ti set b2='BHXS0HL90GQG22Y9HND16MAN9PO7ZZE2' where id=6; -update noar tt set v0='P3OKH912FY11UDU12' where id=7; -update noar ti set v0='P3OKH912FY11UDU12' where id=7; -update noar tt set b0='OCETZULD1T6U158J2W8JFN' where id=7; -update noar ti set b0='OCETZULD1T6U158J2W8JFN' where id=7; -update noar tt set v0='E5NI0FUGU' where id=7; -update noar ti set v0='E5NI0FUGU' where id=7; -update noar tt set b1='LVE8KFLUX3PZZ7PD6LOQFFACP61X1QL1' where id=7; -update noar ti set b1='LVE8KFLUX3PZZ7PD6LOQFFACP61X1QL1' where id=7; -update noar tt set v0='I0D5Z7I0F7206QTT7AEGMODTJQ' where id=7; -update noar ti set v0='I0D5Z7I0F7206QTT7AEGMODTJQ' where id=7; -update noar tt set b2='0MD' where id=7; -update noar ti set b2='0MD' where id=7; -update noar tt set v0='ZN' where id=8; -update noar ti set v0='ZN' where id=8; -update noar tt set b0='RD0D9ITUK1' where id=8; -update noar ti set b0='RD0D9ITUK1' where id=8; -update noar tt set v0='EX5C2HATSE86' where id=8; -update noar ti set v0='EX5C2HATSE86' where id=8; -update noar tt set b1='C80UATLXF' where id=8; -update noar ti set b1='C80UATLXF' where id=8; -update noar tt set v0='5' where id=8; -update noar ti set v0='5' where id=8; -update noar tt set b2='A0SRJ89IN43O6OGGL0BDJWY7TM4' where id=8; -update noar ti set b2='A0SRJ89IN43O6OGGL0BDJWY7TM4' where id=8; -update noar tt set v0='KZ8H5583AL' where id=9; -update noar ti set v0='KZ8H5583AL' where id=9; -update noar tt set b0='FU7WY7JUN' where id=9; -update noar ti set b0='FU7WY7JUN' where id=9; -update noar tt set v0='IZXZOPQK9MWBTF5' where id=9; -update noar ti set v0='IZXZOPQK9MWBTF5' where id=9; -update noar tt set b1='DR7HY0KTDLO' where id=9; -update noar ti set b1='DR7HY0KTDLO' where id=9; -update noar tt set v0='0I9VUGMMTV' where id=9; -update noar ti set v0='0I9VUGMMTV' where id=9; -update noar tt set b2='MIEU' where id=9; -update noar ti set b2='MIEU' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - v0 varchar(256) not null, - b0 blob not null, - b1 longblob not null, - b2 mediumblob not null -) engine=tokudb; -insert into tt values (1,'','','',''); -insert into tt values (2,'','','',''); -insert into tt values (3,'','','',''); -insert into tt values (4,'','','',''); -insert into tt values (5,'','','',''); -insert into tt values (6,'','','',''); -insert into tt values (7,'','','',''); -insert into tt values (8,'','','',''); -insert into tt values (9,'','','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='OGF8S4CV8UIBRJK' where id=1; -update noar ti set v0='OGF8S4CV8UIBRJK' where id=1; -update noar tt set b0='T75D7OOZ' where id=1; -update noar ti set b0='T75D7OOZ' where id=1; -update noar tt set v0='0' where id=1; -update noar ti set v0='0' where id=1; -update noar tt set b1='54MVG5ZSZ47TNF1VKZP6PFJY' where id=1; -update noar ti set b1='54MVG5ZSZ47TNF1VKZP6PFJY' where id=1; -update noar tt set v0='LKGMQHR701SPB' where id=1; -update noar ti set v0='LKGMQHR701SPB' where id=1; -update noar tt set b2='UOMNKV4466VEG' where id=1; -update noar ti set b2='UOMNKV4466VEG' where id=1; -update noar tt set v0='4D7XOLA' where id=2; -update noar ti set v0='4D7XOLA' where id=2; -update noar tt set b0='4H3JTB8R7ZXTI9XRH9KIC77I' where id=2; -update noar ti set b0='4H3JTB8R7ZXTI9XRH9KIC77I' where id=2; -update noar tt set v0='QQP9ELND7B1R7FH64GBV6K34' where id=2; -update noar ti set v0='QQP9ELND7B1R7FH64GBV6K34' where id=2; -update noar tt set b1='SU6YJ9QL1R' where id=2; -update noar ti set b1='SU6YJ9QL1R' where id=2; -update noar tt set v0='20LT58RSVJPTNZ9L2QNLT38057' where id=2; -update noar ti set v0='20LT58RSVJPTNZ9L2QNLT38057' where id=2; -update noar tt set b2='KCDW11AHUJU99' where id=2; -update noar ti set b2='KCDW11AHUJU99' where id=2; -update noar tt set v0='B76FR2JXLI90MXGMA6UE0VL4U1Y621MA' where id=3; -update noar ti set v0='B76FR2JXLI90MXGMA6UE0VL4U1Y621MA' where id=3; -update noar tt set b0='7YV1RQ849H' where id=3; -update noar ti set b0='7YV1RQ849H' where id=3; -update noar tt set v0='UI49S' where id=3; -update noar ti set v0='UI49S' where id=3; -update noar tt set b1='YC5QVA2F6T5' where id=3; -update noar ti set b1='YC5QVA2F6T5' where id=3; -update noar tt set v0='NC8C7AX2H4ZAYGBX3JUWUSV3L' where id=3; -update noar ti set v0='NC8C7AX2H4ZAYGBX3JUWUSV3L' where id=3; -update noar tt set b2='J5YO511MXMXB4SRVPW' where id=3; -update noar ti set b2='J5YO511MXMXB4SRVPW' where id=3; -update noar tt set v0='4ZCHSIJ2' where id=4; -update noar ti set v0='4ZCHSIJ2' where id=4; -update noar tt set b0='MD8OP1AW8ZZ3HO1UHB' where id=4; -update noar ti set b0='MD8OP1AW8ZZ3HO1UHB' where id=4; -update noar tt set v0='BKY9CV22I4UCFXJRITOV' where id=4; -update noar ti set v0='BKY9CV22I4UCFXJRITOV' where id=4; -update noar tt set b1='L' where id=4; -update noar ti set b1='L' where id=4; -update noar tt set v0='HBSTXGNYOQY3EVXM63' where id=4; -update noar ti set v0='HBSTXGNYOQY3EVXM63' where id=4; -update noar tt set b2='YUBMWEXZAPSUGY6X12' where id=4; -update noar ti set b2='YUBMWEXZAPSUGY6X12' where id=4; -update noar tt set v0='ZB0D47VRUH5VCAD76HD48TB2AMHI76' where id=5; -update noar ti set v0='ZB0D47VRUH5VCAD76HD48TB2AMHI76' where id=5; -update noar tt set b0='HAPDHQP179B1G5D4H1CYQ' where id=5; -update noar ti set b0='HAPDHQP179B1G5D4H1CYQ' where id=5; -update noar tt set v0='JB8D1I22C178MZ0G0UIM958N3K0G1P1O' where id=5; -update noar ti set v0='JB8D1I22C178MZ0G0UIM958N3K0G1P1O' where id=5; -update noar tt set b1='T' where id=5; -update noar ti set b1='T' where id=5; -update noar tt set v0='6EKFPRM8M9BFVRAW2UG850' where id=5; -update noar ti set v0='6EKFPRM8M9BFVRAW2UG850' where id=5; -update noar tt set b2='XO0RKEEC2194N48B88UV0SHF' where id=5; -update noar ti set b2='XO0RKEEC2194N48B88UV0SHF' where id=5; -update noar tt set v0='TZADOULMPNJ3JHANPBZFH140SXPGE' where id=6; -update noar ti set v0='TZADOULMPNJ3JHANPBZFH140SXPGE' where id=6; -update noar tt set b0='GWA04JMONGKEFW6VAQPXM8CR2XAJ5' where id=6; -update noar ti set b0='GWA04JMONGKEFW6VAQPXM8CR2XAJ5' where id=6; -update noar tt set v0='V777PS2EAODUP2EF7DCUJTS1HJ0IE' where id=6; -update noar ti set v0='V777PS2EAODUP2EF7DCUJTS1HJ0IE' where id=6; -update noar tt set b1='ZD5OA2VP' where id=6; -update noar ti set b1='ZD5OA2VP' where id=6; -update noar tt set v0='7J3IUXJUV9MFO62ZB6B3SNEPJ' where id=6; -update noar ti set v0='7J3IUXJUV9MFO62ZB6B3SNEPJ' where id=6; -update noar tt set b2='1LOSMXMR6BA9LQOJ1CM92DQO' where id=6; -update noar ti set b2='1LOSMXMR6BA9LQOJ1CM92DQO' where id=6; -update noar tt set v0='BUFAD8RDVAR0FO59LTE9DCUSP0WX5' where id=7; -update noar ti set v0='BUFAD8RDVAR0FO59LTE9DCUSP0WX5' where id=7; -update noar tt set b0='ISJCA21RVKMIK7' where id=7; -update noar ti set b0='ISJCA21RVKMIK7' where id=7; -update noar tt set v0='LKX7T6EOL47TSXMLU' where id=7; -update noar ti set v0='LKX7T6EOL47TSXMLU' where id=7; -update noar tt set b1='CNWSS0YLD72AHOXZT3O5LQNU' where id=7; -update noar ti set b1='CNWSS0YLD72AHOXZT3O5LQNU' where id=7; -update noar tt set v0='O5AP3YS' where id=7; -update noar ti set v0='O5AP3YS' where id=7; -update noar tt set b2='6RIZ71MVLAMRKLIF2RB6H' where id=7; -update noar ti set b2='6RIZ71MVLAMRKLIF2RB6H' where id=7; -update noar tt set v0='CFUNXTGHZDYB0G7PCFLEFTXS5N4R8O8V' where id=8; -update noar ti set v0='CFUNXTGHZDYB0G7PCFLEFTXS5N4R8O8V' where id=8; -update noar tt set b0='6HCL' where id=8; -update noar ti set b0='6HCL' where id=8; -update noar tt set v0='NUMG46G4WTUBB3P9HCUHP8GNL8XXG' where id=8; -update noar ti set v0='NUMG46G4WTUBB3P9HCUHP8GNL8XXG' where id=8; -update noar tt set b1='ZPM9N1IV4WTNOS282QCRSF' where id=8; -update noar ti set b1='ZPM9N1IV4WTNOS282QCRSF' where id=8; -update noar tt set v0='5BLXWZSJOT2AKBETM8EW1FS' where id=8; -update noar ti set v0='5BLXWZSJOT2AKBETM8EW1FS' where id=8; -update noar tt set b2='RMHV8S61' where id=8; -update noar ti set b2='RMHV8S61' where id=8; -update noar tt set v0='JH8XGGF60CPEFHLXSCN1MTWK2TMONWN6' where id=9; -update noar ti set v0='JH8XGGF60CPEFHLXSCN1MTWK2TMONWN6' where id=9; -update noar tt set b0='5BXCHY1RZN2NB5ITHP63ZCKRWUZ77K' where id=9; -update noar ti set b0='5BXCHY1RZN2NB5ITHP63ZCKRWUZ77K' where id=9; -update noar tt set v0='0YY1UJT64QAY6CCR1XP5L' where id=9; -update noar ti set v0='0YY1UJT64QAY6CCR1XP5L' where id=9; -update noar tt set b1='K60G2FL9BID4XERZD9' where id=9; -update noar ti set b1='K60G2FL9BID4XERZD9' where id=9; -update noar tt set v0='P2YZQZ5PK4' where id=9; -update noar ti set v0='P2YZQZ5PK4' where id=9; -update noar tt set b2='2R5M9BAC' where id=9; -update noar ti set b2='2R5M9BAC' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - v0 varchar(32) null, - b0 blob null, - b1 longblob null, - b2 longblob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='E9X1ZQFL2' where id=1; -update noar ti set v0='E9X1ZQFL2' where id=1; -update noar tt set b0='K13V8XFTH67JPBHZHA1JZ4S70' where id=1; -update noar ti set b0='K13V8XFTH67JPBHZHA1JZ4S70' where id=1; -update noar tt set v0='BC2TSN3ZLQGRNQ89' where id=1; -update noar ti set v0='BC2TSN3ZLQGRNQ89' where id=1; -update noar tt set b1='MV1WVXUZ4' where id=1; -update noar ti set b1='MV1WVXUZ4' where id=1; -update noar tt set v0='8S7SPB0UZ6E7O8J97P1' where id=1; -update noar ti set v0='8S7SPB0UZ6E7O8J97P1' where id=1; -update noar tt set b2='U2B4FY7YHF9B8Z9LETFI3VWPNKI' where id=1; -update noar ti set b2='U2B4FY7YHF9B8Z9LETFI3VWPNKI' where id=1; -update noar tt set v0='8RFOEHPEAE3HKABL49Z' where id=2; -update noar ti set v0='8RFOEHPEAE3HKABL49Z' where id=2; -update noar tt set b0='OZC6BF4U6' where id=2; -update noar ti set b0='OZC6BF4U6' where id=2; -update noar tt set v0='X3' where id=2; -update noar ti set v0='X3' where id=2; -update noar tt set b1='RQ3' where id=2; -update noar ti set b1='RQ3' where id=2; -update noar tt set v0='KAEM91UTZXD' where id=2; -update noar ti set v0='KAEM91UTZXD' where id=2; -update noar tt set b2='I3KX1PRUPRHPC0K8L4YMS4P' where id=2; -update noar ti set b2='I3KX1PRUPRHPC0K8L4YMS4P' where id=2; -update noar tt set v0='XEB7BGPTDDG1QSXC' where id=3; -update noar ti set v0='XEB7BGPTDDG1QSXC' where id=3; -update noar tt set b0='M1D' where id=3; -update noar ti set b0='M1D' where id=3; -update noar tt set v0='SRY2GIS7X8Y' where id=3; -update noar ti set v0='SRY2GIS7X8Y' where id=3; -update noar tt set b1='FLVIO6Q9WGWIV3RSZEXIXMZM8JB3IX' where id=3; -update noar ti set b1='FLVIO6Q9WGWIV3RSZEXIXMZM8JB3IX' where id=3; -update noar tt set v0='7C2PA3SU6W' where id=3; -update noar ti set v0='7C2PA3SU6W' where id=3; -update noar tt set b2='49A3HWOHHXIR2ZWGNAR8B' where id=3; -update noar ti set b2='49A3HWOHHXIR2ZWGNAR8B' where id=3; -update noar tt set v0='8Y0E7HVQD9Y5GBAZ9MC96EQMEUD3EI0P' where id=4; -update noar ti set v0='8Y0E7HVQD9Y5GBAZ9MC96EQMEUD3EI0P' where id=4; -update noar tt set b0='JUDRBMNXN' where id=4; -update noar ti set b0='JUDRBMNXN' where id=4; -update noar tt set v0='91JERZ0R3D6XTIZ7ALYF225X4' where id=4; -update noar ti set v0='91JERZ0R3D6XTIZ7ALYF225X4' where id=4; -update noar tt set b1='T1FOP' where id=4; -update noar ti set b1='T1FOP' where id=4; -update noar tt set v0='ZAU14NLPWR6NZ3JB58UO61Y' where id=4; -update noar ti set v0='ZAU14NLPWR6NZ3JB58UO61Y' where id=4; -update noar tt set b2='YRMD384H78IH85G7ARJOYGB69F5I4' where id=4; -update noar ti set b2='YRMD384H78IH85G7ARJOYGB69F5I4' where id=4; -update noar tt set v0='LAKZ9TGOI88Q81AYJMN3LBJMX0EBG' where id=5; -update noar ti set v0='LAKZ9TGOI88Q81AYJMN3LBJMX0EBG' where id=5; -update noar tt set b0='2WLZ0RW1JUJ' where id=5; -update noar ti set b0='2WLZ0RW1JUJ' where id=5; -update noar tt set v0='AT4FECL92TKPAG6V' where id=5; -update noar ti set v0='AT4FECL92TKPAG6V' where id=5; -update noar tt set b1='Z' where id=5; -update noar ti set b1='Z' where id=5; -update noar tt set v0='T7W76QACTXQ' where id=5; -update noar ti set v0='T7W76QACTXQ' where id=5; -update noar tt set b2='RY46816SDX7FWQO5L4VG' where id=5; -update noar ti set b2='RY46816SDX7FWQO5L4VG' where id=5; -update noar tt set v0='9XSQZ1SDT8EU1G91' where id=6; -update noar ti set v0='9XSQZ1SDT8EU1G91' where id=6; -update noar tt set b0='0QY' where id=6; -update noar ti set b0='0QY' where id=6; -update noar tt set v0='J17FR0PTJ3GKCHFGGSGDJ' where id=6; -update noar ti set v0='J17FR0PTJ3GKCHFGGSGDJ' where id=6; -update noar tt set b1='J4XJJAV6I0ARM4A7FTWKD6LM1RVZRU' where id=6; -update noar ti set b1='J4XJJAV6I0ARM4A7FTWKD6LM1RVZRU' where id=6; -update noar tt set v0='FDWQ8MAM2V3RSHVBK2S7' where id=6; -update noar ti set v0='FDWQ8MAM2V3RSHVBK2S7' where id=6; -update noar tt set b2='VEYC7DH9CERWMKEE6PQLUC8SH6GZE' where id=6; -update noar ti set b2='VEYC7DH9CERWMKEE6PQLUC8SH6GZE' where id=6; -update noar tt set v0='CB431YJL5LGPYE1MWMLKCE3PR27QF8CI' where id=7; -update noar ti set v0='CB431YJL5LGPYE1MWMLKCE3PR27QF8CI' where id=7; -update noar tt set b0='OKDSCH277STM4' where id=7; -update noar ti set b0='OKDSCH277STM4' where id=7; -update noar tt set v0='ZE6AEHLU9EFAZSD' where id=7; -update noar ti set v0='ZE6AEHLU9EFAZSD' where id=7; -update noar tt set b1='D8AOOGBV' where id=7; -update noar ti set b1='D8AOOGBV' where id=7; -update noar tt set v0='ZMJP' where id=7; -update noar ti set v0='ZMJP' where id=7; -update noar tt set b2='C8QY8GALNS8Q7ZL1' where id=7; -update noar ti set b2='C8QY8GALNS8Q7ZL1' where id=7; -update noar tt set v0='ZXEQE9' where id=8; -update noar ti set v0='ZXEQE9' where id=8; -update noar tt set b0='T5OEYUDWJ6D5RVWEIOPY' where id=8; -update noar ti set b0='T5OEYUDWJ6D5RVWEIOPY' where id=8; -update noar tt set v0='BKOYQQBWMXEUV' where id=8; -update noar ti set v0='BKOYQQBWMXEUV' where id=8; -update noar tt set b1='H2' where id=8; -update noar ti set b1='H2' where id=8; -update noar tt set v0='AXHD6459QSE6GS25N' where id=8; -update noar ti set v0='AXHD6459QSE6GS25N' where id=8; -update noar tt set b2='IF21AE5KO8UK' where id=8; -update noar ti set b2='IF21AE5KO8UK' where id=8; -update noar tt set v0='DLF9A7AEMET1SDX9RSCF0ZTDYMU1' where id=9; -update noar ti set v0='DLF9A7AEMET1SDX9RSCF0ZTDYMU1' where id=9; -update noar tt set b0='W' where id=9; -update noar ti set b0='W' where id=9; -update noar tt set v0='JL' where id=9; -update noar ti set v0='JL' where id=9; -update noar tt set b1='1XEQ1KLE6O3QPFV' where id=9; -update noar ti set b1='1XEQ1KLE6O3QPFV' where id=9; -update noar tt set v0='ETWY5VUTTJKFXVVO4' where id=9; -update noar ti set v0='ETWY5VUTTJKFXVVO4' where id=9; -update noar tt set b2='KSSX637' where id=9; -update noar ti set b2='KSSX637' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - v0 varchar(256) null, - b0 blob null, - b1 longblob null, - b2 longblob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='EGDA2KDOIQ' where id=1; -update noar ti set v0='EGDA2KDOIQ' where id=1; -update noar tt set b0='V2KCA84AYWGABRL9JGASZ3SW3VIF1' where id=1; -update noar ti set b0='V2KCA84AYWGABRL9JGASZ3SW3VIF1' where id=1; -update noar tt set v0='KX9PPE8F377DTF7O1MT40SVSP7' where id=1; -update noar ti set v0='KX9PPE8F377DTF7O1MT40SVSP7' where id=1; -update noar tt set b1='DCHU2GD0WY7W6427J02Z8B130' where id=1; -update noar ti set b1='DCHU2GD0WY7W6427J02Z8B130' where id=1; -update noar tt set v0='0NRM5JSTS5' where id=1; -update noar ti set v0='0NRM5JSTS5' where id=1; -update noar tt set b2='VA66JSY9BYP43' where id=1; -update noar ti set b2='VA66JSY9BYP43' where id=1; -update noar tt set v0='8NMJ2YMT5QCJX19W6KUSRC1JN1GB6Y1' where id=2; -update noar ti set v0='8NMJ2YMT5QCJX19W6KUSRC1JN1GB6Y1' where id=2; -update noar tt set b0='YMF8DP1G8LVCSWO9JCPV1HOL2YT2M' where id=2; -update noar ti set b0='YMF8DP1G8LVCSWO9JCPV1HOL2YT2M' where id=2; -update noar tt set v0='KOPR6' where id=2; -update noar ti set v0='KOPR6' where id=2; -update noar tt set b1='L0TQQV0JLYK3TLBQF' where id=2; -update noar ti set b1='L0TQQV0JLYK3TLBQF' where id=2; -update noar tt set v0='SBP4498QNZMVROFWL5' where id=2; -update noar ti set v0='SBP4498QNZMVROFWL5' where id=2; -update noar tt set b2='BFVLJGODNP68PZMKX4CLLV4RFI7' where id=2; -update noar ti set b2='BFVLJGODNP68PZMKX4CLLV4RFI7' where id=2; -update noar tt set v0='DOEWDWUR4I0NXLPX04FXL4R0O' where id=3; -update noar ti set v0='DOEWDWUR4I0NXLPX04FXL4R0O' where id=3; -update noar tt set b0='V8ZPN052WMFAKKLRULY3HQOFSIGI' where id=3; -update noar ti set b0='V8ZPN052WMFAKKLRULY3HQOFSIGI' where id=3; -update noar tt set v0='YHTOOUL' where id=3; -update noar ti set v0='YHTOOUL' where id=3; -update noar tt set b1='YLPT9R5H1R5696LA8SQRFM03BY6U6IM' where id=3; -update noar ti set b1='YLPT9R5H1R5696LA8SQRFM03BY6U6IM' where id=3; -update noar tt set v0='4VNUT3D4XRA96' where id=3; -update noar ti set v0='4VNUT3D4XRA96' where id=3; -update noar tt set b2='QEA40Z7SHSHEIYRV' where id=3; -update noar ti set b2='QEA40Z7SHSHEIYRV' where id=3; -update noar tt set v0='CL2ZHJ818MBN' where id=4; -update noar ti set v0='CL2ZHJ818MBN' where id=4; -update noar tt set b0='O' where id=4; -update noar ti set b0='O' where id=4; -update noar tt set v0='3RMZTE70ZWHU' where id=4; -update noar ti set v0='3RMZTE70ZWHU' where id=4; -update noar tt set b1='03FEYLTVYQ4KDX1E5MYUMTOJD0OVO02I' where id=4; -update noar ti set b1='03FEYLTVYQ4KDX1E5MYUMTOJD0OVO02I' where id=4; -update noar tt set v0='EOJFSQ6LW1VK1BEDMLVN3YX8GF6G21GE' where id=4; -update noar ti set v0='EOJFSQ6LW1VK1BEDMLVN3YX8GF6G21GE' where id=4; -update noar tt set b2='KQ9S30UUFLUFQP4R' where id=4; -update noar ti set b2='KQ9S30UUFLUFQP4R' where id=4; -update noar tt set v0='8TI0D' where id=5; -update noar ti set v0='8TI0D' where id=5; -update noar tt set b0='IFK' where id=5; -update noar ti set b0='IFK' where id=5; -update noar tt set v0='E4IPU5EXR1JRYHPUDIMA76UX9GZOV' where id=5; -update noar ti set v0='E4IPU5EXR1JRYHPUDIMA76UX9GZOV' where id=5; -update noar tt set b1='DQVRYY4VYEKRVHNLIWV9MNFJI2L7' where id=5; -update noar ti set b1='DQVRYY4VYEKRVHNLIWV9MNFJI2L7' where id=5; -update noar tt set v0='R3BI37AB7RI52V' where id=5; -update noar ti set v0='R3BI37AB7RI52V' where id=5; -update noar tt set b2='MRGO5UKDJZ2OPSY7YU7KO' where id=5; -update noar ti set b2='MRGO5UKDJZ2OPSY7YU7KO' where id=5; -update noar tt set v0='0J' where id=6; -update noar ti set v0='0J' where id=6; -update noar tt set b0='YINVG' where id=6; -update noar ti set b0='YINVG' where id=6; -update noar tt set v0='QCBSRBO4X9' where id=6; -update noar ti set v0='QCBSRBO4X9' where id=6; -update noar tt set b1='PZSYLPCIHUGURUBCAC4OTS' where id=6; -update noar ti set b1='PZSYLPCIHUGURUBCAC4OTS' where id=6; -update noar tt set v0='OTLMLV51TIZJLTICSAGXIY2' where id=6; -update noar ti set v0='OTLMLV51TIZJLTICSAGXIY2' where id=6; -update noar tt set b2='TZWI30K3CXK5HLYBG' where id=6; -update noar ti set b2='TZWI30K3CXK5HLYBG' where id=6; -update noar tt set v0='CQVGQ4F6DFZ5FQS4BVPUPOO9Q' where id=7; -update noar ti set v0='CQVGQ4F6DFZ5FQS4BVPUPOO9Q' where id=7; -update noar tt set b0='5' where id=7; -update noar ti set b0='5' where id=7; -update noar tt set v0='YFSH71DW4Q5MEWNQVFE2S7P4MU' where id=7; -update noar ti set v0='YFSH71DW4Q5MEWNQVFE2S7P4MU' where id=7; -update noar tt set b1='RID5EBZCYZH7AJVF' where id=7; -update noar ti set b1='RID5EBZCYZH7AJVF' where id=7; -update noar tt set v0='F43' where id=7; -update noar ti set v0='F43' where id=7; -update noar tt set b2='F1TM0VMO' where id=7; -update noar ti set b2='F1TM0VMO' where id=7; -update noar tt set v0='T69KIQ5X9KKJBGDN6NZU4G' where id=8; -update noar ti set v0='T69KIQ5X9KKJBGDN6NZU4G' where id=8; -update noar tt set b0='K86QIKP4SQXL3AK5YTZB74NSD2BKOM9L' where id=8; -update noar ti set b0='K86QIKP4SQXL3AK5YTZB74NSD2BKOM9L' where id=8; -update noar tt set v0='OWLEKG41A2B' where id=8; -update noar ti set v0='OWLEKG41A2B' where id=8; -update noar tt set b1='SHRNZMSUOBIGNVQE2KHB0LUZPS8MGG3' where id=8; -update noar ti set b1='SHRNZMSUOBIGNVQE2KHB0LUZPS8MGG3' where id=8; -update noar tt set v0='5CFHV3OCRL3WAMBPY6JQY6YZKGJ7SR' where id=8; -update noar ti set v0='5CFHV3OCRL3WAMBPY6JQY6YZKGJ7SR' where id=8; -update noar tt set b2='8UB40GWKDGG9GA0SJ08M91' where id=8; -update noar ti set b2='8UB40GWKDGG9GA0SJ08M91' where id=8; -update noar tt set v0='MWPJ2Y1X5JEKXWDQBD3S2O2CERX' where id=9; -update noar ti set v0='MWPJ2Y1X5JEKXWDQBD3S2O2CERX' where id=9; -update noar tt set b0='DPMSNBAWMODY8N0GNGMKMKJ' where id=9; -update noar ti set b0='DPMSNBAWMODY8N0GNGMKMKJ' where id=9; -update noar tt set v0='PTT5DA2T0AQX61FUOTUZRC' where id=9; -update noar ti set v0='PTT5DA2T0AQX61FUOTUZRC' where id=9; -update noar tt set b1='PYT1EZGI5' where id=9; -update noar ti set b1='PYT1EZGI5' where id=9; -update noar tt set v0='QF6NCX49Z3TCAFARJG6HTR25VEOAWB' where id=9; -update noar ti set v0='QF6NCX49Z3TCAFARJG6HTR25VEOAWB' where id=9; -update noar tt set b2='XE5L6NUD9ILXL' where id=9; -update noar ti set b2='XE5L6NUD9ILXL' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - v0 varchar(32) not null, - b0 blob not null, - b1 longblob not null, - b2 longblob not null -) engine=tokudb; -insert into tt values (1,'','','',''); -insert into tt values (2,'','','',''); -insert into tt values (3,'','','',''); -insert into tt values (4,'','','',''); -insert into tt values (5,'','','',''); -insert into tt values (6,'','','',''); -insert into tt values (7,'','','',''); -insert into tt values (8,'','','',''); -insert into tt values (9,'','','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='VWO3A712ZVZBUDH08CF' where id=1; -update noar ti set v0='VWO3A712ZVZBUDH08CF' where id=1; -update noar tt set b0='ZIATHD6HSU3TKLIUK75K8VD6ZO2QWIO' where id=1; -update noar ti set b0='ZIATHD6HSU3TKLIUK75K8VD6ZO2QWIO' where id=1; -update noar tt set v0='KP5UUHUKL69QWLSXBXQ' where id=1; -update noar ti set v0='KP5UUHUKL69QWLSXBXQ' where id=1; -update noar tt set b1='CZL44K6Y8F78X9' where id=1; -update noar ti set b1='CZL44K6Y8F78X9' where id=1; -update noar tt set v0='HDZUXV3R8UYONE4RFJRUMFTZ' where id=1; -update noar ti set v0='HDZUXV3R8UYONE4RFJRUMFTZ' where id=1; -update noar tt set b2='CLC7U' where id=1; -update noar ti set b2='CLC7U' where id=1; -update noar tt set v0='FC' where id=2; -update noar ti set v0='FC' where id=2; -update noar tt set b0='5DHVWRZY4VL12E92V132RO2PE' where id=2; -update noar ti set b0='5DHVWRZY4VL12E92V132RO2PE' where id=2; -update noar tt set v0='14' where id=2; -update noar ti set v0='14' where id=2; -update noar tt set b1='LILAHSEV' where id=2; -update noar ti set b1='LILAHSEV' where id=2; -update noar tt set v0='5H0D' where id=2; -update noar ti set v0='5H0D' where id=2; -update noar tt set b2='T4G4R6YC2037R' where id=2; -update noar ti set b2='T4G4R6YC2037R' where id=2; -update noar tt set v0='Z71HR4ETZM8FKKH7KTKD0V3NRI' where id=3; -update noar ti set v0='Z71HR4ETZM8FKKH7KTKD0V3NRI' where id=3; -update noar tt set b0='G25ZNGIDWQBZR4AY2DVDG3I' where id=3; -update noar ti set b0='G25ZNGIDWQBZR4AY2DVDG3I' where id=3; -update noar tt set v0='YPKR2MTJJJ18G56' where id=3; -update noar ti set v0='YPKR2MTJJJ18G56' where id=3; -update noar tt set b1='0CPGGZA57RCQESQKN0A5WF' where id=3; -update noar ti set b1='0CPGGZA57RCQESQKN0A5WF' where id=3; -update noar tt set v0='UFX3UDFBDDB8Q2TMTX6TIUGJ4KOSIJMS' where id=3; -update noar ti set v0='UFX3UDFBDDB8Q2TMTX6TIUGJ4KOSIJMS' where id=3; -update noar tt set b2='GCQ922U90MSND5JYGRYXB9LO' where id=3; -update noar ti set b2='GCQ922U90MSND5JYGRYXB9LO' where id=3; -update noar tt set v0='ZJ' where id=4; -update noar ti set v0='ZJ' where id=4; -update noar tt set b0='M941P3L1H' where id=4; -update noar ti set b0='M941P3L1H' where id=4; -update noar tt set v0='3XIQSMAP12VZEHK04TN2MGRGOX0L12' where id=4; -update noar ti set v0='3XIQSMAP12VZEHK04TN2MGRGOX0L12' where id=4; -update noar tt set b1='7EKKE2MKYBMGYZB' where id=4; -update noar ti set b1='7EKKE2MKYBMGYZB' where id=4; -update noar tt set v0='VCUMP6EC29MLWWAY7C5IC' where id=4; -update noar ti set v0='VCUMP6EC29MLWWAY7C5IC' where id=4; -update noar tt set b2='UNY49XCPVB7MHEUEP9N' where id=4; -update noar ti set b2='UNY49XCPVB7MHEUEP9N' where id=4; -update noar tt set v0='CP0T9CXVZ8YBSKC70JDWUOX7I8BZV' where id=5; -update noar ti set v0='CP0T9CXVZ8YBSKC70JDWUOX7I8BZV' where id=5; -update noar tt set b0='F6MQI' where id=5; -update noar ti set b0='F6MQI' where id=5; -update noar tt set v0='LS3TOVNHO7YJCQ8UCKKXH2DO60G6KHY' where id=5; -update noar ti set v0='LS3TOVNHO7YJCQ8UCKKXH2DO60G6KHY' where id=5; -update noar tt set b1='F8QFN99W5AUGQKF4NOPQLQHH0' where id=5; -update noar ti set b1='F8QFN99W5AUGQKF4NOPQLQHH0' where id=5; -update noar tt set v0='9' where id=5; -update noar ti set v0='9' where id=5; -update noar tt set b2='JOS43IZ' where id=5; -update noar ti set b2='JOS43IZ' where id=5; -update noar tt set v0='ZYK7HW' where id=6; -update noar ti set v0='ZYK7HW' where id=6; -update noar tt set b0='7TO4Q7UYVT9JCJQM98OXVUCUJ3DRGJS' where id=6; -update noar ti set b0='7TO4Q7UYVT9JCJQM98OXVUCUJ3DRGJS' where id=6; -update noar tt set v0='DJFP76V21' where id=6; -update noar ti set v0='DJFP76V21' where id=6; -update noar tt set b1='0D65C9XPN1UEYLT5P1VAYDYA50Z4DM' where id=6; -update noar ti set b1='0D65C9XPN1UEYLT5P1VAYDYA50Z4DM' where id=6; -update noar tt set v0='JXBTOQCXPF2FSKMVQAGW' where id=6; -update noar ti set v0='JXBTOQCXPF2FSKMVQAGW' where id=6; -update noar tt set b2='MJVY8F7Z9K' where id=6; -update noar ti set b2='MJVY8F7Z9K' where id=6; -update noar tt set v0='V1DYXM4A0R1RWV7KI4ZWHTLQ' where id=7; -update noar ti set v0='V1DYXM4A0R1RWV7KI4ZWHTLQ' where id=7; -update noar tt set b0='RKD' where id=7; -update noar ti set b0='RKD' where id=7; -update noar tt set v0='HFVCMUV8WK69OB' where id=7; -update noar ti set v0='HFVCMUV8WK69OB' where id=7; -update noar tt set b1='2Z7MMK4W42T6SF8KYMJHZAAM52DVPA' where id=7; -update noar ti set b1='2Z7MMK4W42T6SF8KYMJHZAAM52DVPA' where id=7; -update noar tt set v0='5ZT71ABYR2S2B8MFZMLSY7ECS83Q3SSI' where id=7; -update noar ti set v0='5ZT71ABYR2S2B8MFZMLSY7ECS83Q3SSI' where id=7; -update noar tt set b2='PB9ZWRPZQFJJ' where id=7; -update noar ti set b2='PB9ZWRPZQFJJ' where id=7; -update noar tt set v0='WJY1Q4AX5JOI4KZZFC92WFJ' where id=8; -update noar ti set v0='WJY1Q4AX5JOI4KZZFC92WFJ' where id=8; -update noar tt set b0='QP6FVY1W2B6OMK0CMB9RC76M66BKO7' where id=8; -update noar ti set b0='QP6FVY1W2B6OMK0CMB9RC76M66BKO7' where id=8; -update noar tt set v0='TAZQ958I1WQTXYVW' where id=8; -update noar ti set v0='TAZQ958I1WQTXYVW' where id=8; -update noar tt set b1='8TXO2S49383RAXPFC0MYG' where id=8; -update noar ti set b1='8TXO2S49383RAXPFC0MYG' where id=8; -update noar tt set v0='A9FC5GF4N9KYENFXNPNJBO7SGAP1RUE' where id=8; -update noar ti set v0='A9FC5GF4N9KYENFXNPNJBO7SGAP1RUE' where id=8; -update noar tt set b2='O42' where id=8; -update noar ti set b2='O42' where id=8; -update noar tt set v0='YP9SI2' where id=9; -update noar ti set v0='YP9SI2' where id=9; -update noar tt set b0='DJXRKXCTUW83AHPOBVUEF' where id=9; -update noar ti set b0='DJXRKXCTUW83AHPOBVUEF' where id=9; -update noar tt set v0='0HVNY2PVXWUENCOLF5RE0SVO2XZ7RSVU' where id=9; -update noar ti set v0='0HVNY2PVXWUENCOLF5RE0SVO2XZ7RSVU' where id=9; -update noar tt set b1='XW264A8VRDLQH52TY0I3YA96KHDUIKR' where id=9; -update noar ti set b1='XW264A8VRDLQH52TY0I3YA96KHDUIKR' where id=9; -update noar tt set v0='QS7E25L9FVQJCKN17M3QX' where id=9; -update noar ti set v0='QS7E25L9FVQJCKN17M3QX' where id=9; -update noar tt set b2='1RGRLE46EK2E1I95QL3T9GY02JWQDK' where id=9; -update noar ti set b2='1RGRLE46EK2E1I95QL3T9GY02JWQDK' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - v0 varchar(256) not null, - b0 blob not null, - b1 longblob not null, - b2 longblob not null -) engine=tokudb; -insert into tt values (1,'','','',''); -insert into tt values (2,'','','',''); -insert into tt values (3,'','','',''); -insert into tt values (4,'','','',''); -insert into tt values (5,'','','',''); -insert into tt values (6,'','','',''); -insert into tt values (7,'','','',''); -insert into tt values (8,'','','',''); -insert into tt values (9,'','','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='3E5YX5Z5773UPSE2' where id=1; -update noar ti set v0='3E5YX5Z5773UPSE2' where id=1; -update noar tt set b0='KDCK' where id=1; -update noar ti set b0='KDCK' where id=1; -update noar tt set v0='SD6FJW' where id=1; -update noar ti set v0='SD6FJW' where id=1; -update noar tt set b1='F1ATBZF2P7E' where id=1; -update noar ti set b1='F1ATBZF2P7E' where id=1; -update noar tt set v0='Q5NLU1KY0MQBT78MGBLDX0FZZMTST' where id=1; -update noar ti set v0='Q5NLU1KY0MQBT78MGBLDX0FZZMTST' where id=1; -update noar tt set b2='19KGDFSPVFF7DZRDMDIWE035GQNDYQ' where id=1; -update noar ti set b2='19KGDFSPVFF7DZRDMDIWE035GQNDYQ' where id=1; -update noar tt set v0='VDQX8XDJEH' where id=2; -update noar ti set v0='VDQX8XDJEH' where id=2; -update noar tt set b0='T1WQXDT80RCFVTA3TKOB3' where id=2; -update noar ti set b0='T1WQXDT80RCFVTA3TKOB3' where id=2; -update noar tt set v0='JUO2' where id=2; -update noar ti set v0='JUO2' where id=2; -update noar tt set b1='KEAA53ZM' where id=2; -update noar ti set b1='KEAA53ZM' where id=2; -update noar tt set v0='HT132K73J99A7Q8V1M8C' where id=2; -update noar ti set v0='HT132K73J99A7Q8V1M8C' where id=2; -update noar tt set b2='Z1U9DF3RUL' where id=2; -update noar ti set b2='Z1U9DF3RUL' where id=2; -update noar tt set v0='AZD58D4PA4OR4' where id=3; -update noar ti set v0='AZD58D4PA4OR4' where id=3; -update noar tt set b0='V0MOA67KZF5' where id=3; -update noar ti set b0='V0MOA67KZF5' where id=3; -update noar tt set v0='VKL2WW1TGML6U3N' where id=3; -update noar ti set v0='VKL2WW1TGML6U3N' where id=3; -update noar tt set b1='ZTEFUWY8F4HUKG6FRBAX8' where id=3; -update noar ti set b1='ZTEFUWY8F4HUKG6FRBAX8' where id=3; -update noar tt set v0='PYDIIRM2YJ0H36GH7J8RGOOKCSXGK' where id=3; -update noar ti set v0='PYDIIRM2YJ0H36GH7J8RGOOKCSXGK' where id=3; -update noar tt set b2='5Z3RKX9OFQFDSHSRO8' where id=3; -update noar ti set b2='5Z3RKX9OFQFDSHSRO8' where id=3; -update noar tt set v0='PCMJD' where id=4; -update noar ti set v0='PCMJD' where id=4; -update noar tt set b0='NYBZ' where id=4; -update noar ti set b0='NYBZ' where id=4; -update noar tt set v0='HEMA2IXZH7U' where id=4; -update noar ti set v0='HEMA2IXZH7U' where id=4; -update noar tt set b1='ZWNGNO65U70CLAIMSQZTH' where id=4; -update noar ti set b1='ZWNGNO65U70CLAIMSQZTH' where id=4; -update noar tt set v0='LTBTK34ZMP8EC8NGJN2U8S7MOF' where id=4; -update noar ti set v0='LTBTK34ZMP8EC8NGJN2U8S7MOF' where id=4; -update noar tt set b2='Z60LZ30G2RAQ35QC4XSUFH8A' where id=4; -update noar ti set b2='Z60LZ30G2RAQ35QC4XSUFH8A' where id=4; -update noar tt set v0='6NNN2UR5TOY2Y13X9LPR' where id=5; -update noar ti set v0='6NNN2UR5TOY2Y13X9LPR' where id=5; -update noar tt set b0='34UZRLX' where id=5; -update noar ti set b0='34UZRLX' where id=5; -update noar tt set v0='Y81CMO1FJ8YHP' where id=5; -update noar ti set v0='Y81CMO1FJ8YHP' where id=5; -update noar tt set b1='DG95LTJ2R5OLRMKW51V1OAY4QF2EDKE' where id=5; -update noar ti set b1='DG95LTJ2R5OLRMKW51V1OAY4QF2EDKE' where id=5; -update noar tt set v0='WE' where id=5; -update noar ti set v0='WE' where id=5; -update noar tt set b2='IKY1LND0' where id=5; -update noar ti set b2='IKY1LND0' where id=5; -update noar tt set v0='BTBM37AYQ5HJZ0P1' where id=6; -update noar ti set v0='BTBM37AYQ5HJZ0P1' where id=6; -update noar tt set b0='RZ7IXYJ8LQ5PJ5FPZK3DKA2' where id=6; -update noar ti set b0='RZ7IXYJ8LQ5PJ5FPZK3DKA2' where id=6; -update noar tt set v0='2DE80SDS4TST8' where id=6; -update noar ti set v0='2DE80SDS4TST8' where id=6; -update noar tt set b1='GF' where id=6; -update noar ti set b1='GF' where id=6; -update noar tt set v0='2M69PA5W7V' where id=6; -update noar ti set v0='2M69PA5W7V' where id=6; -update noar tt set b2='SWJOGR2AKBSA' where id=6; -update noar ti set b2='SWJOGR2AKBSA' where id=6; -update noar tt set v0='5ASHPRGS1G88TB2LTMYR' where id=7; -update noar ti set v0='5ASHPRGS1G88TB2LTMYR' where id=7; -update noar tt set b0='O' where id=7; -update noar ti set b0='O' where id=7; -update noar tt set v0='93WKA537DAWGUP4I3A1C9IVMLJJOXT' where id=7; -update noar ti set v0='93WKA537DAWGUP4I3A1C9IVMLJJOXT' where id=7; -update noar tt set b1='HR4H1KFC6R59JS8R0905EH' where id=7; -update noar ti set b1='HR4H1KFC6R59JS8R0905EH' where id=7; -update noar tt set v0='IPPWN2G38QGFWYD9U1O2ZQDS0DG8E' where id=7; -update noar ti set v0='IPPWN2G38QGFWYD9U1O2ZQDS0DG8E' where id=7; -update noar tt set b2='WG2A3' where id=7; -update noar ti set b2='WG2A3' where id=7; -update noar tt set v0='MC2Z6ZTPMYQNX5HV' where id=8; -update noar ti set v0='MC2Z6ZTPMYQNX5HV' where id=8; -update noar tt set b0='ZAXGR' where id=8; -update noar ti set b0='ZAXGR' where id=8; -update noar tt set v0='X4KXXXSDZZWD' where id=8; -update noar ti set v0='X4KXXXSDZZWD' where id=8; -update noar tt set b1='NLH77745U3KLMUG6FN7KNDAUKSN3Y' where id=8; -update noar ti set b1='NLH77745U3KLMUG6FN7KNDAUKSN3Y' where id=8; -update noar tt set v0='87G679F9P' where id=8; -update noar ti set v0='87G679F9P' where id=8; -update noar tt set b2='P2A' where id=8; -update noar ti set b2='P2A' where id=8; -update noar tt set v0='GTQI549SI' where id=9; -update noar ti set v0='GTQI549SI' where id=9; -update noar tt set b0='SMYM4HK1WUSCFXXUW0YKKYD8SBDDIT6P' where id=9; -update noar ti set b0='SMYM4HK1WUSCFXXUW0YKKYD8SBDDIT6P' where id=9; -update noar tt set v0='V2E1VUGQ7OQ1RWCNKE8A' where id=9; -update noar ti set v0='V2E1VUGQ7OQ1RWCNKE8A' where id=9; -update noar tt set b1='F83DXDEXBSQXI272ZT2J6D1GWJW' where id=9; -update noar ti set b1='F83DXDEXBSQXI272ZT2J6D1GWJW' where id=9; -update noar tt set v0='KMGBS8LL' where id=9; -update noar ti set v0='KMGBS8LL' where id=9; -update noar tt set b2='3XOBIJIR8Q4JUCCC4WKKS' where id=9; -update noar ti set b2='3XOBIJIR8Q4JUCCC4WKKS' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - v0 varchar(32) null, - b0 mediumblob null, - b1 tinyblob null, - b2 tinyblob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='M3HMHEMY1I' where id=1; -update noar ti set v0='M3HMHEMY1I' where id=1; -update noar tt set b0='4OKEO80D4JQV18' where id=1; -update noar ti set b0='4OKEO80D4JQV18' where id=1; -update noar tt set v0='UY' where id=1; -update noar ti set v0='UY' where id=1; -update noar tt set b1='V1GEEKHM' where id=1; -update noar ti set b1='V1GEEKHM' where id=1; -update noar tt set v0='WYNIBVMHCZZ' where id=1; -update noar ti set v0='WYNIBVMHCZZ' where id=1; -update noar tt set b2='8FI09VBHFPZAIFSZO4A' where id=1; -update noar ti set b2='8FI09VBHFPZAIFSZO4A' where id=1; -update noar tt set v0='2UP2XT816OGCKGBLFTZJ5A93TQ3VVWE' where id=2; -update noar ti set v0='2UP2XT816OGCKGBLFTZJ5A93TQ3VVWE' where id=2; -update noar tt set b0='SRPWQ7PGD6ZJ757GQEM5' where id=2; -update noar ti set b0='SRPWQ7PGD6ZJ757GQEM5' where id=2; -update noar tt set v0='WNIT7ZDSPO4M48T43LX' where id=2; -update noar ti set v0='WNIT7ZDSPO4M48T43LX' where id=2; -update noar tt set b1='LQCXLQDY7SUDG0MLB8DVDSL14YY3DBWB' where id=2; -update noar ti set b1='LQCXLQDY7SUDG0MLB8DVDSL14YY3DBWB' where id=2; -update noar tt set v0='L2BDMY0P0FFPBQYPS8' where id=2; -update noar ti set v0='L2BDMY0P0FFPBQYPS8' where id=2; -update noar tt set b2='BDZ7S1DVCHEDVN8TNPU5A' where id=2; -update noar ti set b2='BDZ7S1DVCHEDVN8TNPU5A' where id=2; -update noar tt set v0='32Q2U77VPEPJXRKK9TUFV66SCLBIRSO' where id=3; -update noar ti set v0='32Q2U77VPEPJXRKK9TUFV66SCLBIRSO' where id=3; -update noar tt set b0='0C4OJ3SR37Z6JW23QVGECT9AMZGODF3K' where id=3; -update noar ti set b0='0C4OJ3SR37Z6JW23QVGECT9AMZGODF3K' where id=3; -update noar tt set v0='F354VCIO6IFKAZ' where id=3; -update noar ti set v0='F354VCIO6IFKAZ' where id=3; -update noar tt set b1='8ENNVRR' where id=3; -update noar ti set b1='8ENNVRR' where id=3; -update noar tt set v0='1NU7MK0OXPIXA44DFYZPS6MF' where id=3; -update noar ti set v0='1NU7MK0OXPIXA44DFYZPS6MF' where id=3; -update noar tt set b2='0V81MMPL92410' where id=3; -update noar ti set b2='0V81MMPL92410' where id=3; -update noar tt set v0='R0J' where id=4; -update noar ti set v0='R0J' where id=4; -update noar tt set b0='Z8Z41S9P4502PX7E' where id=4; -update noar ti set b0='Z8Z41S9P4502PX7E' where id=4; -update noar tt set v0='C9C9I4SMMHNL50QTB0M73QRZ' where id=4; -update noar ti set v0='C9C9I4SMMHNL50QTB0M73QRZ' where id=4; -update noar tt set b1='0FP2V71YFMH0' where id=4; -update noar ti set b1='0FP2V71YFMH0' where id=4; -update noar tt set v0='CYB6CIV' where id=4; -update noar ti set v0='CYB6CIV' where id=4; -update noar tt set b2='T2JSX33MB' where id=4; -update noar ti set b2='T2JSX33MB' where id=4; -update noar tt set v0='I' where id=5; -update noar ti set v0='I' where id=5; -update noar tt set b0='PDMQ2RC55R182H7UO6PQ8TS03948O5J0' where id=5; -update noar ti set b0='PDMQ2RC55R182H7UO6PQ8TS03948O5J0' where id=5; -update noar tt set v0='970RHROEK5KJF' where id=5; -update noar ti set v0='970RHROEK5KJF' where id=5; -update noar tt set b1='9BMJ57Y47X2586P89C4AJZ8BADB7X9' where id=5; -update noar ti set b1='9BMJ57Y47X2586P89C4AJZ8BADB7X9' where id=5; -update noar tt set v0='0N5' where id=5; -update noar ti set v0='0N5' where id=5; -update noar tt set b2='U1SQIBM1HDNO5OP3HV7EZ1X' where id=5; -update noar ti set b2='U1SQIBM1HDNO5OP3HV7EZ1X' where id=5; -update noar tt set v0='5EGLM1FM0P8AJOZBK64E64GM67VLAA3P' where id=6; -update noar ti set v0='5EGLM1FM0P8AJOZBK64E64GM67VLAA3P' where id=6; -update noar tt set b0='MQ9GSG9WZL72DGFQL8NHNQZY60GQRJ4H' where id=6; -update noar ti set b0='MQ9GSG9WZL72DGFQL8NHNQZY60GQRJ4H' where id=6; -update noar tt set v0='TM2WS0TBFNTU' where id=6; -update noar ti set v0='TM2WS0TBFNTU' where id=6; -update noar tt set b1='WI0EX1IVIFFMWI' where id=6; -update noar ti set b1='WI0EX1IVIFFMWI' where id=6; -update noar tt set v0='ER4ZL2PXZH8WUUQI' where id=6; -update noar ti set v0='ER4ZL2PXZH8WUUQI' where id=6; -update noar tt set b2='CVA6QJ4YPL198U83P2J1MB7CVG' where id=6; -update noar ti set b2='CVA6QJ4YPL198U83P2J1MB7CVG' where id=6; -update noar tt set v0='6V8O2WN16AQUU' where id=7; -update noar ti set v0='6V8O2WN16AQUU' where id=7; -update noar tt set b0='MACEL4FL9JT7O84X' where id=7; -update noar ti set b0='MACEL4FL9JT7O84X' where id=7; -update noar tt set v0='5TJFLBBGYAPSDOCL92QDXZAGZ9' where id=7; -update noar ti set v0='5TJFLBBGYAPSDOCL92QDXZAGZ9' where id=7; -update noar tt set b1='XTZHPZC2O88U' where id=7; -update noar ti set b1='XTZHPZC2O88U' where id=7; -update noar tt set v0='3PIPL8GQSZR2391A0049JF' where id=7; -update noar ti set v0='3PIPL8GQSZR2391A0049JF' where id=7; -update noar tt set b2='BMBYZL7TZAND2T' where id=7; -update noar ti set b2='BMBYZL7TZAND2T' where id=7; -update noar tt set v0='KXXDMTFMHZIOXKEJNX8YAB8CBJQNSQ3F' where id=8; -update noar ti set v0='KXXDMTFMHZIOXKEJNX8YAB8CBJQNSQ3F' where id=8; -update noar tt set b0='4OEF2LTQFCFCC0G4V8BEI9R78XUZ41' where id=8; -update noar ti set b0='4OEF2LTQFCFCC0G4V8BEI9R78XUZ41' where id=8; -update noar tt set v0='VEVDIQ4HZACMU4HAE9' where id=8; -update noar ti set v0='VEVDIQ4HZACMU4HAE9' where id=8; -update noar tt set b1='PW38656' where id=8; -update noar ti set b1='PW38656' where id=8; -update noar tt set v0='KYI9F' where id=8; -update noar ti set v0='KYI9F' where id=8; -update noar tt set b2='008UXBXNF' where id=8; -update noar ti set b2='008UXBXNF' where id=8; -update noar tt set v0='NL7K2R' where id=9; -update noar ti set v0='NL7K2R' where id=9; -update noar tt set b0='KJK8UOJM60NE9VG7AZR9N3YHUGUJNPE' where id=9; -update noar ti set b0='KJK8UOJM60NE9VG7AZR9N3YHUGUJNPE' where id=9; -update noar tt set v0='49AGM3MFSWZ' where id=9; -update noar ti set v0='49AGM3MFSWZ' where id=9; -update noar tt set b1='WXU6YVQ986L' where id=9; -update noar ti set b1='WXU6YVQ986L' where id=9; -update noar tt set v0='0OP0GYN85D2GFW705BEM1LY5F8Y3616M' where id=9; -update noar ti set v0='0OP0GYN85D2GFW705BEM1LY5F8Y3616M' where id=9; -update noar tt set b2='LV8NJ1DJPOT3BWZ9II2VWVT57ZZH' where id=9; -update noar ti set b2='LV8NJ1DJPOT3BWZ9II2VWVT57ZZH' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - v0 varchar(256) null, - b0 mediumblob null, - b1 tinyblob null, - b2 tinyblob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='NBLHVNIGW6N4UTIJQ' where id=1; -update noar ti set v0='NBLHVNIGW6N4UTIJQ' where id=1; -update noar tt set b0='450UIBJ6WIFU2QEZ6MC4B12DZE2FG4DA' where id=1; -update noar ti set b0='450UIBJ6WIFU2QEZ6MC4B12DZE2FG4DA' where id=1; -update noar tt set v0='QCABKO1JS4TCO6X1ZK3M23' where id=1; -update noar ti set v0='QCABKO1JS4TCO6X1ZK3M23' where id=1; -update noar tt set b1='INE8V66HLQ5U8QOYHGSY90KFV' where id=1; -update noar ti set b1='INE8V66HLQ5U8QOYHGSY90KFV' where id=1; -update noar tt set v0='N7' where id=1; -update noar ti set v0='N7' where id=1; -update noar tt set b2='5LTMITIDLTLTI8P83K' where id=1; -update noar ti set b2='5LTMITIDLTLTI8P83K' where id=1; -update noar tt set v0='8XXQ50ATQPK985Y3XISXQ' where id=2; -update noar ti set v0='8XXQ50ATQPK985Y3XISXQ' where id=2; -update noar tt set b0='W0BZFZQNJFD0CGGY4HPRG5XQMWW' where id=2; -update noar ti set b0='W0BZFZQNJFD0CGGY4HPRG5XQMWW' where id=2; -update noar tt set v0='8TOPBS934O4UOVHCXK1NZDELDC' where id=2; -update noar ti set v0='8TOPBS934O4UOVHCXK1NZDELDC' where id=2; -update noar tt set b1='C6GKG8LYBVEXU4' where id=2; -update noar ti set b1='C6GKG8LYBVEXU4' where id=2; -update noar tt set v0='AQDNY' where id=2; -update noar ti set v0='AQDNY' where id=2; -update noar tt set b2='Q4QS1EQ9UFZNGCGBP5K277Q' where id=2; -update noar ti set b2='Q4QS1EQ9UFZNGCGBP5K277Q' where id=2; -update noar tt set v0='6942JGLD92507Z97DZWARCRI61IFQZ2' where id=3; -update noar ti set v0='6942JGLD92507Z97DZWARCRI61IFQZ2' where id=3; -update noar tt set b0='2T6IT7V4DV5T7Z3R5BUQ90VL' where id=3; -update noar ti set b0='2T6IT7V4DV5T7Z3R5BUQ90VL' where id=3; -update noar tt set v0='7NO' where id=3; -update noar ti set v0='7NO' where id=3; -update noar tt set b1='VNVNQQ7TEA8LLG28WYF7J' where id=3; -update noar ti set b1='VNVNQQ7TEA8LLG28WYF7J' where id=3; -update noar tt set v0='H7JWZSL3HZL6TX826Y' where id=3; -update noar ti set v0='H7JWZSL3HZL6TX826Y' where id=3; -update noar tt set b2='TD7G6S1GTVE9TNAH1JY90ZPZE1' where id=3; -update noar ti set b2='TD7G6S1GTVE9TNAH1JY90ZPZE1' where id=3; -update noar tt set v0='7LWAIUZVMFP8RWUJFMKNIKE' where id=4; -update noar ti set v0='7LWAIUZVMFP8RWUJFMKNIKE' where id=4; -update noar tt set b0='73' where id=4; -update noar ti set b0='73' where id=4; -update noar tt set v0='9X0H' where id=4; -update noar ti set v0='9X0H' where id=4; -update noar tt set b1='F7JVZK' where id=4; -update noar ti set b1='F7JVZK' where id=4; -update noar tt set v0='HKG' where id=4; -update noar ti set v0='HKG' where id=4; -update noar tt set b2='1M6JGTNMZIHJAXAB1PQY1WRCDJ9B' where id=4; -update noar ti set b2='1M6JGTNMZIHJAXAB1PQY1WRCDJ9B' where id=4; -update noar tt set v0='W951DR4G' where id=5; -update noar ti set v0='W951DR4G' where id=5; -update noar tt set b0='I44TCJ' where id=5; -update noar ti set b0='I44TCJ' where id=5; -update noar tt set v0='EOVZZLQD' where id=5; -update noar ti set v0='EOVZZLQD' where id=5; -update noar tt set b1='3DI4TFPU6V4G1DXVFWTWLZ6' where id=5; -update noar ti set b1='3DI4TFPU6V4G1DXVFWTWLZ6' where id=5; -update noar tt set v0='GDRI2HPD6W9WRVVMZSB2R09NPYY26EPA' where id=5; -update noar ti set v0='GDRI2HPD6W9WRVVMZSB2R09NPYY26EPA' where id=5; -update noar tt set b2='9DIA049U95XTK3R45PC1OY8Q3PA' where id=5; -update noar ti set b2='9DIA049U95XTK3R45PC1OY8Q3PA' where id=5; -update noar tt set v0='AOB1' where id=6; -update noar ti set v0='AOB1' where id=6; -update noar tt set b0='JDQIHQU5GUB9E1R24DX' where id=6; -update noar ti set b0='JDQIHQU5GUB9E1R24DX' where id=6; -update noar tt set v0='HZZLE76Q4ZI143K' where id=6; -update noar ti set v0='HZZLE76Q4ZI143K' where id=6; -update noar tt set b1='3PSUWS0M4CK8T' where id=6; -update noar ti set b1='3PSUWS0M4CK8T' where id=6; -update noar tt set v0='DN87K9PUPZVQPZH9TBE591' where id=6; -update noar ti set v0='DN87K9PUPZVQPZH9TBE591' where id=6; -update noar tt set b2='G' where id=6; -update noar ti set b2='G' where id=6; -update noar tt set v0='U4977UVH0OHU1GUZ62BOEW2JCCY2' where id=7; -update noar ti set v0='U4977UVH0OHU1GUZ62BOEW2JCCY2' where id=7; -update noar tt set b0='KLWEG7W2MYVWILUSWL8MS98' where id=7; -update noar ti set b0='KLWEG7W2MYVWILUSWL8MS98' where id=7; -update noar tt set v0='WX00E8V4M3O' where id=7; -update noar ti set v0='WX00E8V4M3O' where id=7; -update noar tt set b1='U2R4F' where id=7; -update noar ti set b1='U2R4F' where id=7; -update noar tt set v0='YRU4' where id=7; -update noar ti set v0='YRU4' where id=7; -update noar tt set b2='JRRJE957BKKJ7Y3PKVSR7UJ3CH3' where id=7; -update noar ti set b2='JRRJE957BKKJ7Y3PKVSR7UJ3CH3' where id=7; -update noar tt set v0='SGVES5PU2B03T0ZX9NA44Z4' where id=8; -update noar ti set v0='SGVES5PU2B03T0ZX9NA44Z4' where id=8; -update noar tt set b0='MY46YEN04YHA1RU3LLDCUKC6Y80NIJ71' where id=8; -update noar ti set b0='MY46YEN04YHA1RU3LLDCUKC6Y80NIJ71' where id=8; -update noar tt set v0='77GGW17L' where id=8; -update noar ti set v0='77GGW17L' where id=8; -update noar tt set b1='UA' where id=8; -update noar ti set b1='UA' where id=8; -update noar tt set v0='DHVARYXL18D2Q3CATMLCAJDQVTNMW6Z' where id=8; -update noar ti set v0='DHVARYXL18D2Q3CATMLCAJDQVTNMW6Z' where id=8; -update noar tt set b2='YUP21X5NKNA9SFQF29NTX9' where id=8; -update noar ti set b2='YUP21X5NKNA9SFQF29NTX9' where id=8; -update noar tt set v0='TAXEB23WQFJC1TQDU06AHA9J' where id=9; -update noar ti set v0='TAXEB23WQFJC1TQDU06AHA9J' where id=9; -update noar tt set b0='YL' where id=9; -update noar ti set b0='YL' where id=9; -update noar tt set v0='6S' where id=9; -update noar ti set v0='6S' where id=9; -update noar tt set b1='32Q1BUX5NBCSW7XS30V' where id=9; -update noar ti set b1='32Q1BUX5NBCSW7XS30V' where id=9; -update noar tt set v0='JYGGHPVLI9682HQQ0VVA831H03F8O' where id=9; -update noar ti set v0='JYGGHPVLI9682HQQ0VVA831H03F8O' where id=9; -update noar tt set b2='RARWFDHMRV947XD' where id=9; -update noar ti set b2='RARWFDHMRV947XD' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - v0 varchar(32) not null, - b0 mediumblob not null, - b1 tinyblob not null, - b2 tinyblob not null -) engine=tokudb; -insert into tt values (1,'','','',''); -insert into tt values (2,'','','',''); -insert into tt values (3,'','','',''); -insert into tt values (4,'','','',''); -insert into tt values (5,'','','',''); -insert into tt values (6,'','','',''); -insert into tt values (7,'','','',''); -insert into tt values (8,'','','',''); -insert into tt values (9,'','','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='ZK9XLA2IEZ1WJIHM57VUXR' where id=1; -update noar ti set v0='ZK9XLA2IEZ1WJIHM57VUXR' where id=1; -update noar tt set b0='W3SSTL2559S0Y7UIK' where id=1; -update noar ti set b0='W3SSTL2559S0Y7UIK' where id=1; -update noar tt set v0='6YZ' where id=1; -update noar ti set v0='6YZ' where id=1; -update noar tt set b1='GTB9CE4QM' where id=1; -update noar ti set b1='GTB9CE4QM' where id=1; -update noar tt set v0='PW59UHVDG69ZERC1' where id=1; -update noar ti set v0='PW59UHVDG69ZERC1' where id=1; -update noar tt set b2='QNA3FIZJ3BLHIVZPVLBCFREGD' where id=1; -update noar ti set b2='QNA3FIZJ3BLHIVZPVLBCFREGD' where id=1; -update noar tt set v0='DACACE21ZZQM0BNA00F2M8ALM8L1' where id=2; -update noar ti set v0='DACACE21ZZQM0BNA00F2M8ALM8L1' where id=2; -update noar tt set b0='BQYSACORFXSLTON' where id=2; -update noar ti set b0='BQYSACORFXSLTON' where id=2; -update noar tt set v0='8UDD148VIGOM98I9X61LNS1TS3UCXEZ' where id=2; -update noar ti set v0='8UDD148VIGOM98I9X61LNS1TS3UCXEZ' where id=2; -update noar tt set b1='4UPQB8Y862NLMM2299O' where id=2; -update noar ti set b1='4UPQB8Y862NLMM2299O' where id=2; -update noar tt set v0='WR' where id=2; -update noar ti set v0='WR' where id=2; -update noar tt set b2='AKWMDQO0A9QQ5H4' where id=2; -update noar ti set b2='AKWMDQO0A9QQ5H4' where id=2; -update noar tt set v0='GZS4PDI' where id=3; -update noar ti set v0='GZS4PDI' where id=3; -update noar tt set b0='DHCH6W9284Z3RNLP4' where id=3; -update noar ti set b0='DHCH6W9284Z3RNLP4' where id=3; -update noar tt set v0='F4APV0Y2PX7XO6JJS2HK' where id=3; -update noar ti set v0='F4APV0Y2PX7XO6JJS2HK' where id=3; -update noar tt set b1='EL3UA5IDIWH' where id=3; -update noar ti set b1='EL3UA5IDIWH' where id=3; -update noar tt set v0='MWSLQBF8FXB60B3CO' where id=3; -update noar ti set v0='MWSLQBF8FXB60B3CO' where id=3; -update noar tt set b2='LJJ8GPQ8TCG4DAAI538IBJRVPUMDUNB' where id=3; -update noar ti set b2='LJJ8GPQ8TCG4DAAI538IBJRVPUMDUNB' where id=3; -update noar tt set v0='CHT0GEUF5DO7' where id=4; -update noar ti set v0='CHT0GEUF5DO7' where id=4; -update noar tt set b0='RYVM6' where id=4; -update noar ti set b0='RYVM6' where id=4; -update noar tt set v0='P9PBLR5X77X9U0ILLH0EWNDQE1K' where id=4; -update noar ti set v0='P9PBLR5X77X9U0ILLH0EWNDQE1K' where id=4; -update noar tt set b1='Y37S5R5IKY3J2B998AAHWVAWAHFOY2G' where id=4; -update noar ti set b1='Y37S5R5IKY3J2B998AAHWVAWAHFOY2G' where id=4; -update noar tt set v0='QV6Q41CLJJ8TC555HTCSEDAZ5IAO' where id=4; -update noar ti set v0='QV6Q41CLJJ8TC555HTCSEDAZ5IAO' where id=4; -update noar tt set b2='2QJG1J06JJ6QZCHZDRE8' where id=4; -update noar ti set b2='2QJG1J06JJ6QZCHZDRE8' where id=4; -update noar tt set v0='8X2P713' where id=5; -update noar ti set v0='8X2P713' where id=5; -update noar tt set b0='DG3SFS3XY' where id=5; -update noar ti set b0='DG3SFS3XY' where id=5; -update noar tt set v0='UZPIC8NP6AXXGFYB50YN03FMXTU1W14' where id=5; -update noar ti set v0='UZPIC8NP6AXXGFYB50YN03FMXTU1W14' where id=5; -update noar tt set b1='G75FPLWTELLXK1N0JT7GW' where id=5; -update noar ti set b1='G75FPLWTELLXK1N0JT7GW' where id=5; -update noar tt set v0='XSTDMCNA8UL8EUAA54N3Y' where id=5; -update noar ti set v0='XSTDMCNA8UL8EUAA54N3Y' where id=5; -update noar tt set b2='LSRZCLJBFY05RHE2I3' where id=5; -update noar ti set b2='LSRZCLJBFY05RHE2I3' where id=5; -update noar tt set v0='PCNTTLPH3CWYK8IIDUI293' where id=6; -update noar ti set v0='PCNTTLPH3CWYK8IIDUI293' where id=6; -update noar tt set b0='7TMR80EL4TM8ULVN4DYECOR68ENW2D9X' where id=6; -update noar ti set b0='7TMR80EL4TM8ULVN4DYECOR68ENW2D9X' where id=6; -update noar tt set v0='S5T6I4YG' where id=6; -update noar ti set v0='S5T6I4YG' where id=6; -update noar tt set b1='V2OQ6O8SDMIRG9J8U43PSCAP8PEULU' where id=6; -update noar ti set b1='V2OQ6O8SDMIRG9J8U43PSCAP8PEULU' where id=6; -update noar tt set v0='FND2O' where id=6; -update noar ti set v0='FND2O' where id=6; -update noar tt set b2='92PWAT76' where id=6; -update noar ti set b2='92PWAT76' where id=6; -update noar tt set v0='46WSX4BLGMALAL91WTHPI' where id=7; -update noar ti set v0='46WSX4BLGMALAL91WTHPI' where id=7; -update noar tt set b0='KZA6NQCL5WFXUQYEJ5GZ7OXKXN3JECNN' where id=7; -update noar ti set b0='KZA6NQCL5WFXUQYEJ5GZ7OXKXN3JECNN' where id=7; -update noar tt set v0='LAN4K46VCXTOVSF4' where id=7; -update noar ti set v0='LAN4K46VCXTOVSF4' where id=7; -update noar tt set b1='1B19DLSYQTTS52KG1AWVLYO8HKQO' where id=7; -update noar ti set b1='1B19DLSYQTTS52KG1AWVLYO8HKQO' where id=7; -update noar tt set v0='PG8MLBWDMBIUOY2C2YZVT0' where id=7; -update noar ti set v0='PG8MLBWDMBIUOY2C2YZVT0' where id=7; -update noar tt set b2='NADC8KKBGPVCF4LL1CE7GA3EK57E9YXW' where id=7; -update noar ti set b2='NADC8KKBGPVCF4LL1CE7GA3EK57E9YXW' where id=7; -update noar tt set v0='FUW6WIX' where id=8; -update noar ti set v0='FUW6WIX' where id=8; -update noar tt set b0='H8VRSCX1WVZYF' where id=8; -update noar ti set b0='H8VRSCX1WVZYF' where id=8; -update noar tt set v0='UNAL2NHBXNCR35S1YFB20I4' where id=8; -update noar ti set v0='UNAL2NHBXNCR35S1YFB20I4' where id=8; -update noar tt set b1='I6HP7WPT4MA79TY4GB9OSPGI5BRT' where id=8; -update noar ti set b1='I6HP7WPT4MA79TY4GB9OSPGI5BRT' where id=8; -update noar tt set v0='A7PAMWP9XUOM0YKNQYQJHPIG1' where id=8; -update noar ti set v0='A7PAMWP9XUOM0YKNQYQJHPIG1' where id=8; -update noar tt set b2='Q39' where id=8; -update noar ti set b2='Q39' where id=8; -update noar tt set v0='46MAB4BS5LJX' where id=9; -update noar ti set v0='46MAB4BS5LJX' where id=9; -update noar tt set b0='1MA85EZZ6BKKLVA1E' where id=9; -update noar ti set b0='1MA85EZZ6BKKLVA1E' where id=9; -update noar tt set v0='R7L37HWO3RQSSLIE75B' where id=9; -update noar ti set v0='R7L37HWO3RQSSLIE75B' where id=9; -update noar tt set b1='E6EKMS4MBVHBHS' where id=9; -update noar ti set b1='E6EKMS4MBVHBHS' where id=9; -update noar tt set v0='ALX9L42TRUA' where id=9; -update noar ti set v0='ALX9L42TRUA' where id=9; -update noar tt set b2='MNW5PAT1A64ODMAPE6WIAYHZUYS5Y5Y5' where id=9; -update noar ti set b2='MNW5PAT1A64ODMAPE6WIAYHZUYS5Y5Y5' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - v0 varchar(256) not null, - b0 mediumblob not null, - b1 tinyblob not null, - b2 tinyblob not null -) engine=tokudb; -insert into tt values (1,'','','',''); -insert into tt values (2,'','','',''); -insert into tt values (3,'','','',''); -insert into tt values (4,'','','',''); -insert into tt values (5,'','','',''); -insert into tt values (6,'','','',''); -insert into tt values (7,'','','',''); -insert into tt values (8,'','','',''); -insert into tt values (9,'','','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='KLGE0BG7GWKR4P' where id=1; -update noar ti set v0='KLGE0BG7GWKR4P' where id=1; -update noar tt set b0='BLJ1O9EZEZ2GZADV0Z72OHNG0' where id=1; -update noar ti set b0='BLJ1O9EZEZ2GZADV0Z72OHNG0' where id=1; -update noar tt set v0='Q1SJNXU7G153XSRY8' where id=1; -update noar ti set v0='Q1SJNXU7G153XSRY8' where id=1; -update noar tt set b1='8' where id=1; -update noar ti set b1='8' where id=1; -update noar tt set v0='FR' where id=1; -update noar ti set v0='FR' where id=1; -update noar tt set b2='RIYPQ5VFY' where id=1; -update noar ti set b2='RIYPQ5VFY' where id=1; -update noar tt set v0='237G' where id=2; -update noar ti set v0='237G' where id=2; -update noar tt set b0='XMDY7LW' where id=2; -update noar ti set b0='XMDY7LW' where id=2; -update noar tt set v0='KNPAXKN9XG5MVX8' where id=2; -update noar ti set v0='KNPAXKN9XG5MVX8' where id=2; -update noar tt set b1='Y7JNKK97HQVNVVUURW' where id=2; -update noar ti set b1='Y7JNKK97HQVNVVUURW' where id=2; -update noar tt set v0='M0SCYZSSUKLQTPN' where id=2; -update noar ti set v0='M0SCYZSSUKLQTPN' where id=2; -update noar tt set b2='5VGR7' where id=2; -update noar ti set b2='5VGR7' where id=2; -update noar tt set v0='EESXJO4F6CQS5W0WUY8GO6UVVNCPO' where id=3; -update noar ti set v0='EESXJO4F6CQS5W0WUY8GO6UVVNCPO' where id=3; -update noar tt set b0='BQQW7Y' where id=3; -update noar ti set b0='BQQW7Y' where id=3; -update noar tt set v0='332B5E41D0TL27WPC32YKOUIK9VXXBK' where id=3; -update noar ti set v0='332B5E41D0TL27WPC32YKOUIK9VXXBK' where id=3; -update noar tt set b1='YEPVCUALXL2' where id=3; -update noar ti set b1='YEPVCUALXL2' where id=3; -update noar tt set v0='IKCWWIE0QO' where id=3; -update noar ti set v0='IKCWWIE0QO' where id=3; -update noar tt set b2='F31IGIYI' where id=3; -update noar ti set b2='F31IGIYI' where id=3; -update noar tt set v0='JIZ5FPVLA3X36TNV4MXWDEWFDW6I7S' where id=4; -update noar ti set v0='JIZ5FPVLA3X36TNV4MXWDEWFDW6I7S' where id=4; -update noar tt set b0='EWOCGB26DM8YF7MXCT3' where id=4; -update noar ti set b0='EWOCGB26DM8YF7MXCT3' where id=4; -update noar tt set v0='Y24O6Z57HEYAMRUR6WAZY2P' where id=4; -update noar ti set v0='Y24O6Z57HEYAMRUR6WAZY2P' where id=4; -update noar tt set b1='Y0THT5KAZ8UHEOOV1E8' where id=4; -update noar ti set b1='Y0THT5KAZ8UHEOOV1E8' where id=4; -update noar tt set v0='1HBUNVLNAQIGYMDYGG9T41K867R5653' where id=4; -update noar ti set v0='1HBUNVLNAQIGYMDYGG9T41K867R5653' where id=4; -update noar tt set b2='KIQHHS0KOJQ3SQKALUG' where id=4; -update noar ti set b2='KIQHHS0KOJQ3SQKALUG' where id=4; -update noar tt set v0='HXHNY8C9BOTK0H6FWNUQIQCSHXX70WI' where id=5; -update noar ti set v0='HXHNY8C9BOTK0H6FWNUQIQCSHXX70WI' where id=5; -update noar tt set b0='5Q' where id=5; -update noar ti set b0='5Q' where id=5; -update noar tt set v0='K1CJT8GQD1UHA63F0N' where id=5; -update noar ti set v0='K1CJT8GQD1UHA63F0N' where id=5; -update noar tt set b1='WR95HCF6HLDZHG9UURXOL2VBPOJ4K5WL' where id=5; -update noar ti set b1='WR95HCF6HLDZHG9UURXOL2VBPOJ4K5WL' where id=5; -update noar tt set v0='W52UW6TBQAWHAPBSWZNRN' where id=5; -update noar ti set v0='W52UW6TBQAWHAPBSWZNRN' where id=5; -update noar tt set b2='LZT4AZN8PS63EIIOSLES0I5' where id=5; -update noar ti set b2='LZT4AZN8PS63EIIOSLES0I5' where id=5; -update noar tt set v0='HEQVS' where id=6; -update noar ti set v0='HEQVS' where id=6; -update noar tt set b0='H3ZETYUG5Y0N' where id=6; -update noar ti set b0='H3ZETYUG5Y0N' where id=6; -update noar tt set v0='3ZT5A07KT7NERJGHY' where id=6; -update noar ti set v0='3ZT5A07KT7NERJGHY' where id=6; -update noar tt set b1='F3OZQNNAH69UF8Q5AK4C3YSKBU' where id=6; -update noar ti set b1='F3OZQNNAH69UF8Q5AK4C3YSKBU' where id=6; -update noar tt set v0='SWOWN1JZHL38W1P7P5S07CMB4SHI2' where id=6; -update noar ti set v0='SWOWN1JZHL38W1P7P5S07CMB4SHI2' where id=6; -update noar tt set b2='JAVGZR72FC' where id=6; -update noar ti set b2='JAVGZR72FC' where id=6; -update noar tt set v0='SER7TJTYZRIATEQTSIHF9H9806' where id=7; -update noar ti set v0='SER7TJTYZRIATEQTSIHF9H9806' where id=7; -update noar tt set b0='PQXT8I1N64G' where id=7; -update noar ti set b0='PQXT8I1N64G' where id=7; -update noar tt set v0='S6T2RI2L4XNLKENHPZFHBMPIN' where id=7; -update noar ti set v0='S6T2RI2L4XNLKENHPZFHBMPIN' where id=7; -update noar tt set b1='EFS' where id=7; -update noar ti set b1='EFS' where id=7; -update noar tt set v0='0RZ666C7PDJXUYO6CTD3J0R' where id=7; -update noar ti set v0='0RZ666C7PDJXUYO6CTD3J0R' where id=7; -update noar tt set b2='L9SBW' where id=7; -update noar ti set b2='L9SBW' where id=7; -update noar tt set v0='7VNXQADY57ECUG2ED2C3U' where id=8; -update noar ti set v0='7VNXQADY57ECUG2ED2C3U' where id=8; -update noar tt set b0='DW7WRRQI' where id=8; -update noar ti set b0='DW7WRRQI' where id=8; -update noar tt set v0='0A9ELQNQS2R0GTV9V2HB' where id=8; -update noar ti set v0='0A9ELQNQS2R0GTV9V2HB' where id=8; -update noar tt set b1='MMJF62JE8PAN4Q2UZ' where id=8; -update noar ti set b1='MMJF62JE8PAN4Q2UZ' where id=8; -update noar tt set v0='JIY7E' where id=8; -update noar ti set v0='JIY7E' where id=8; -update noar tt set b2='YQJ7WDQU' where id=8; -update noar ti set b2='YQJ7WDQU' where id=8; -update noar tt set v0='VWC4731W82R4OZKKI8JQPZP03W' where id=9; -update noar ti set v0='VWC4731W82R4OZKKI8JQPZP03W' where id=9; -update noar tt set b0='KW08QEZJ4ZGHDA486J' where id=9; -update noar ti set b0='KW08QEZJ4ZGHDA486J' where id=9; -update noar tt set v0='ST0TH03' where id=9; -update noar ti set v0='ST0TH03' where id=9; -update noar tt set b1='K5EF' where id=9; -update noar ti set b1='K5EF' where id=9; -update noar tt set v0='4TPV0RNCWLXV75U5FK7MJ3X86C74' where id=9; -update noar ti set v0='4TPV0RNCWLXV75U5FK7MJ3X86C74' where id=9; -update noar tt set b2='H4G7' where id=9; -update noar ti set b2='H4G7' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - v0 varchar(32) null, - b0 mediumblob null, - b1 tinyblob null, - b2 blob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='J9REEBMPRETAQ5CONMO4J8N' where id=1; -update noar ti set v0='J9REEBMPRETAQ5CONMO4J8N' where id=1; -update noar tt set b0='93UVSGIVGT42ADLDT3NK' where id=1; -update noar ti set b0='93UVSGIVGT42ADLDT3NK' where id=1; -update noar tt set v0='WL4TDVC84YCAY7QYOBPV9V0Z25PB1U05' where id=1; -update noar ti set v0='WL4TDVC84YCAY7QYOBPV9V0Z25PB1U05' where id=1; -update noar tt set b1='YEM4' where id=1; -update noar ti set b1='YEM4' where id=1; -update noar tt set v0='ATIKHSJSXX3720ISOVEMIW4M' where id=1; -update noar ti set v0='ATIKHSJSXX3720ISOVEMIW4M' where id=1; -update noar tt set b2='0TPJWGS1ZPIYLTKK5RSPJABLTAS5W' where id=1; -update noar ti set b2='0TPJWGS1ZPIYLTKK5RSPJABLTAS5W' where id=1; -update noar tt set v0='KCFH382CADV7BCUP5' where id=2; -update noar ti set v0='KCFH382CADV7BCUP5' where id=2; -update noar tt set b0='4V1K' where id=2; -update noar ti set b0='4V1K' where id=2; -update noar tt set v0='XYQY38CB73U23WNHBOQWVDXWKBLU' where id=2; -update noar ti set v0='XYQY38CB73U23WNHBOQWVDXWKBLU' where id=2; -update noar tt set b1='S6SCH0N9QR165WKECE86TY318R' where id=2; -update noar ti set b1='S6SCH0N9QR165WKECE86TY318R' where id=2; -update noar tt set v0='F6' where id=2; -update noar ti set v0='F6' where id=2; -update noar tt set b2='Q72KHSLF2AZ32KUQCL6VETN5QWQ4OPHX' where id=2; -update noar ti set b2='Q72KHSLF2AZ32KUQCL6VETN5QWQ4OPHX' where id=2; -update noar tt set v0='U05SSGF3Q' where id=3; -update noar ti set v0='U05SSGF3Q' where id=3; -update noar tt set b0='2YLSV16THLRB8RRM0XTEW5GN' where id=3; -update noar ti set b0='2YLSV16THLRB8RRM0XTEW5GN' where id=3; -update noar tt set v0='0I53F7N2KQ6RK5EWE0G' where id=3; -update noar ti set v0='0I53F7N2KQ6RK5EWE0G' where id=3; -update noar tt set b1='LG8M' where id=3; -update noar ti set b1='LG8M' where id=3; -update noar tt set v0='6Y' where id=3; -update noar ti set v0='6Y' where id=3; -update noar tt set b2='OB1ZN9DZ2' where id=3; -update noar ti set b2='OB1ZN9DZ2' where id=3; -update noar tt set v0='8YXZ9NUR8YO53CTBN4LPAB56D3E5KU1' where id=4; -update noar ti set v0='8YXZ9NUR8YO53CTBN4LPAB56D3E5KU1' where id=4; -update noar tt set b0='F653BK' where id=4; -update noar ti set b0='F653BK' where id=4; -update noar tt set v0='I7S2U0PKETL2X0H3LP9AY9CESZRD9T' where id=4; -update noar ti set v0='I7S2U0PKETL2X0H3LP9AY9CESZRD9T' where id=4; -update noar tt set b1='CJDV9DO5FNDLRZBYXEYGT7FDFW2622KP' where id=4; -update noar ti set b1='CJDV9DO5FNDLRZBYXEYGT7FDFW2622KP' where id=4; -update noar tt set v0='HWFV21CM0EKOEI6MGHBZBAMV' where id=4; -update noar ti set v0='HWFV21CM0EKOEI6MGHBZBAMV' where id=4; -update noar tt set b2='VO35OQ2UKT8YZ5NDZQ5A' where id=4; -update noar ti set b2='VO35OQ2UKT8YZ5NDZQ5A' where id=4; -update noar tt set v0='6RG8BSDUBAAXTUT' where id=5; -update noar ti set v0='6RG8BSDUBAAXTUT' where id=5; -update noar tt set b0='JFZ86SIA1BRLAB2KE7G827WHS' where id=5; -update noar ti set b0='JFZ86SIA1BRLAB2KE7G827WHS' where id=5; -update noar tt set v0='6RYV2XZ6HV' where id=5; -update noar ti set v0='6RYV2XZ6HV' where id=5; -update noar tt set b1='C3LE5CEWZBLW443BA5Q' where id=5; -update noar ti set b1='C3LE5CEWZBLW443BA5Q' where id=5; -update noar tt set v0='QAL99WWP5Z2XCPIJR5S48H' where id=5; -update noar ti set v0='QAL99WWP5Z2XCPIJR5S48H' where id=5; -update noar tt set b2='X5ZZVU1FRZ4PWLA5VW5BZC' where id=5; -update noar ti set b2='X5ZZVU1FRZ4PWLA5VW5BZC' where id=5; -update noar tt set v0='DR0O8WZW6AFNK' where id=6; -update noar ti set v0='DR0O8WZW6AFNK' where id=6; -update noar tt set b0='4XR4VNNFZU' where id=6; -update noar ti set b0='4XR4VNNFZU' where id=6; -update noar tt set v0='0GPD46WHNONL02OXLIW1GYBMW5DEI' where id=6; -update noar ti set v0='0GPD46WHNONL02OXLIW1GYBMW5DEI' where id=6; -update noar tt set b1='ARVDJUKONFYSWXXJLG25VZZAKGR7TR' where id=6; -update noar ti set b1='ARVDJUKONFYSWXXJLG25VZZAKGR7TR' where id=6; -update noar tt set v0='D' where id=6; -update noar ti set v0='D' where id=6; -update noar tt set b2='OOY63370OI4J' where id=6; -update noar ti set b2='OOY63370OI4J' where id=6; -update noar tt set v0='MJQLUEB9L315BHQLAKXUQDEDHSLU7' where id=7; -update noar ti set v0='MJQLUEB9L315BHQLAKXUQDEDHSLU7' where id=7; -update noar tt set b0='C9FUDV7C6CCJ13CI' where id=7; -update noar ti set b0='C9FUDV7C6CCJ13CI' where id=7; -update noar tt set v0='3U1JDTD3HA' where id=7; -update noar ti set v0='3U1JDTD3HA' where id=7; -update noar tt set b1='K9BY0GLPVJ6WEZ1OY84UEB4ET' where id=7; -update noar ti set b1='K9BY0GLPVJ6WEZ1OY84UEB4ET' where id=7; -update noar tt set v0='1ZGE4IRWW1MAN' where id=7; -update noar ti set v0='1ZGE4IRWW1MAN' where id=7; -update noar tt set b2='KDWZHUVAAVUKVY14URSBPNWZQXC' where id=7; -update noar ti set b2='KDWZHUVAAVUKVY14URSBPNWZQXC' where id=7; -update noar tt set v0='CYE53QBP5MEWX0UYB8D2M' where id=8; -update noar ti set v0='CYE53QBP5MEWX0UYB8D2M' where id=8; -update noar tt set b0='MO0GUW56J4MNKJ4R611M0RU' where id=8; -update noar ti set b0='MO0GUW56J4MNKJ4R611M0RU' where id=8; -update noar tt set v0='PH1PZGX8UYUX5614F2HYBRNXROMV' where id=8; -update noar ti set v0='PH1PZGX8UYUX5614F2HYBRNXROMV' where id=8; -update noar tt set b1='C57TXEZCYA6V' where id=8; -update noar ti set b1='C57TXEZCYA6V' where id=8; -update noar tt set v0='ZE' where id=8; -update noar ti set v0='ZE' where id=8; -update noar tt set b2='G2B67SGW4' where id=8; -update noar ti set b2='G2B67SGW4' where id=8; -update noar tt set v0='JYY09FG2DJWI0FXS5V' where id=9; -update noar ti set v0='JYY09FG2DJWI0FXS5V' where id=9; -update noar tt set b0='BW71ETJ0WTIEEW0' where id=9; -update noar ti set b0='BW71ETJ0WTIEEW0' where id=9; -update noar tt set v0='MDS1PX2A' where id=9; -update noar ti set v0='MDS1PX2A' where id=9; -update noar tt set b1='R96ODXV' where id=9; -update noar ti set b1='R96ODXV' where id=9; -update noar tt set v0='FIX2TS4ME60JF863SQBM' where id=9; -update noar ti set v0='FIX2TS4ME60JF863SQBM' where id=9; -update noar tt set b2='05N115LPDHX2MX7FM9K9CNG' where id=9; -update noar ti set b2='05N115LPDHX2MX7FM9K9CNG' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - v0 varchar(256) null, - b0 mediumblob null, - b1 tinyblob null, - b2 blob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='C8AVVU3YZ3QQZEQG7Q5BLY2IPKPG' where id=1; -update noar ti set v0='C8AVVU3YZ3QQZEQG7Q5BLY2IPKPG' where id=1; -update noar tt set b0='2LRGW9RUEYNKU2OQOZYZOHLSL7YNCQXA' where id=1; -update noar ti set b0='2LRGW9RUEYNKU2OQOZYZOHLSL7YNCQXA' where id=1; -update noar tt set v0='M' where id=1; -update noar ti set v0='M' where id=1; -update noar tt set b1='LD407W9AAO2CCSV' where id=1; -update noar ti set b1='LD407W9AAO2CCSV' where id=1; -update noar tt set v0='P' where id=1; -update noar ti set v0='P' where id=1; -update noar tt set b2='336YN54X0HJMTEG' where id=1; -update noar ti set b2='336YN54X0HJMTEG' where id=1; -update noar tt set v0='A34N0MTKXF6HO6DCO7DZXG' where id=2; -update noar ti set v0='A34N0MTKXF6HO6DCO7DZXG' where id=2; -update noar tt set b0='I14HKE9VOC9SYS7K6PS8GONN46B' where id=2; -update noar ti set b0='I14HKE9VOC9SYS7K6PS8GONN46B' where id=2; -update noar tt set v0='SD5XJNJGOEOUOB0U2UQ0' where id=2; -update noar ti set v0='SD5XJNJGOEOUOB0U2UQ0' where id=2; -update noar tt set b1='L1WQBU4' where id=2; -update noar ti set b1='L1WQBU4' where id=2; -update noar tt set v0='JHZMA' where id=2; -update noar ti set v0='JHZMA' where id=2; -update noar tt set b2='IPZ1PVKZM2B8A66Q21XUY8HFQL8NEARS' where id=2; -update noar ti set b2='IPZ1PVKZM2B8A66Q21XUY8HFQL8NEARS' where id=2; -update noar tt set v0='8VMXFJ614TAO2KR1' where id=3; -update noar ti set v0='8VMXFJ614TAO2KR1' where id=3; -update noar tt set b0='3G2E6W7D0DY4GEE' where id=3; -update noar ti set b0='3G2E6W7D0DY4GEE' where id=3; -update noar tt set v0='QO42CBU3WA098CACF' where id=3; -update noar ti set v0='QO42CBU3WA098CACF' where id=3; -update noar tt set b1='J462SNFA2OQC96VK830NDN7IPREC0GY' where id=3; -update noar ti set b1='J462SNFA2OQC96VK830NDN7IPREC0GY' where id=3; -update noar tt set v0='IXR3ORU5ZE' where id=3; -update noar ti set v0='IXR3ORU5ZE' where id=3; -update noar tt set b2='HE' where id=3; -update noar ti set b2='HE' where id=3; -update noar tt set v0='A1GCOSBOTOAK87J8C6E5L44' where id=4; -update noar ti set v0='A1GCOSBOTOAK87J8C6E5L44' where id=4; -update noar tt set b0='C9GJYOYXBJM8K3O446MXGHLC' where id=4; -update noar ti set b0='C9GJYOYXBJM8K3O446MXGHLC' where id=4; -update noar tt set v0='NKTFZ5CIDGOAQG' where id=4; -update noar ti set v0='NKTFZ5CIDGOAQG' where id=4; -update noar tt set b1='4I7QEP' where id=4; -update noar ti set b1='4I7QEP' where id=4; -update noar tt set v0='JXW0ZGKPU2880XKI' where id=4; -update noar ti set v0='JXW0ZGKPU2880XKI' where id=4; -update noar tt set b2='4JIYJI' where id=4; -update noar ti set b2='4JIYJI' where id=4; -update noar tt set v0='2827S8JC1AQQD0K4D9RGTR914' where id=5; -update noar ti set v0='2827S8JC1AQQD0K4D9RGTR914' where id=5; -update noar tt set b0='7MZBUNA' where id=5; -update noar ti set b0='7MZBUNA' where id=5; -update noar tt set v0='KWZFDFH4WMCAWJPD7' where id=5; -update noar ti set v0='KWZFDFH4WMCAWJPD7' where id=5; -update noar tt set b1='MTWJCGQM4P2BU' where id=5; -update noar ti set b1='MTWJCGQM4P2BU' where id=5; -update noar tt set v0='MV98QWGBLXPYUQ' where id=5; -update noar ti set v0='MV98QWGBLXPYUQ' where id=5; -update noar tt set b2='UDMCF0CC0OGWHNRT95QYTAQKBGB' where id=5; -update noar ti set b2='UDMCF0CC0OGWHNRT95QYTAQKBGB' where id=5; -update noar tt set v0='LBHBCQC07BFAMTYSEEXU5J' where id=6; -update noar ti set v0='LBHBCQC07BFAMTYSEEXU5J' where id=6; -update noar tt set b0='2XKH9L' where id=6; -update noar ti set b0='2XKH9L' where id=6; -update noar tt set v0='TF' where id=6; -update noar ti set v0='TF' where id=6; -update noar tt set b1='O9YD3BF' where id=6; -update noar ti set b1='O9YD3BF' where id=6; -update noar tt set v0='HKIZIRFOQC' where id=6; -update noar ti set v0='HKIZIRFOQC' where id=6; -update noar tt set b2='0I0BRNHZ02J6JPJCIZQ2RQ9' where id=6; -update noar ti set b2='0I0BRNHZ02J6JPJCIZQ2RQ9' where id=6; -update noar tt set v0='9AL1RRIHNI8Z4OZP85ZAJWLN4F46FKA' where id=7; -update noar ti set v0='9AL1RRIHNI8Z4OZP85ZAJWLN4F46FKA' where id=7; -update noar tt set b0='6IO5DIEN55YFFLHMMJB64O4G' where id=7; -update noar ti set b0='6IO5DIEN55YFFLHMMJB64O4G' where id=7; -update noar tt set v0='U68VEVJS35X4HPUIQ1XN' where id=7; -update noar ti set v0='U68VEVJS35X4HPUIQ1XN' where id=7; -update noar tt set b1='QB70Q4KTKST9IE2' where id=7; -update noar ti set b1='QB70Q4KTKST9IE2' where id=7; -update noar tt set v0='EZH541YPJZRRZ6DUDVUU5L' where id=7; -update noar ti set v0='EZH541YPJZRRZ6DUDVUU5L' where id=7; -update noar tt set b2='1BFYY05IWUR0FY4YWRH5G' where id=7; -update noar ti set b2='1BFYY05IWUR0FY4YWRH5G' where id=7; -update noar tt set v0='HE2RTXDKYLB' where id=8; -update noar ti set v0='HE2RTXDKYLB' where id=8; -update noar tt set b0='H8QTFZBS6ETYUODHQPSHKH8NX' where id=8; -update noar ti set b0='H8QTFZBS6ETYUODHQPSHKH8NX' where id=8; -update noar tt set v0='KC8QDE5N8DLDMPOQHO2' where id=8; -update noar ti set v0='KC8QDE5N8DLDMPOQHO2' where id=8; -update noar tt set b1='CU0Y2UUFC3DHBWJAV8S1AB0' where id=8; -update noar ti set b1='CU0Y2UUFC3DHBWJAV8S1AB0' where id=8; -update noar tt set v0='2LXG6CREDZKIQD' where id=8; -update noar ti set v0='2LXG6CREDZKIQD' where id=8; -update noar tt set b2='X' where id=8; -update noar ti set b2='X' where id=8; -update noar tt set v0='6' where id=9; -update noar ti set v0='6' where id=9; -update noar tt set b0='1M4EB0VTBQ1FYQQR8J5' where id=9; -update noar ti set b0='1M4EB0VTBQ1FYQQR8J5' where id=9; -update noar tt set v0='60PTRWJG5X7XCUOX' where id=9; -update noar ti set v0='60PTRWJG5X7XCUOX' where id=9; -update noar tt set b1='JQ9KAN418N7N7LXN88N84EVH' where id=9; -update noar ti set b1='JQ9KAN418N7N7LXN88N84EVH' where id=9; -update noar tt set v0='X77FOJINSWXEPW' where id=9; -update noar ti set v0='X77FOJINSWXEPW' where id=9; -update noar tt set b2='I4Z0LC' where id=9; -update noar ti set b2='I4Z0LC' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - v0 varchar(32) not null, - b0 mediumblob not null, - b1 tinyblob not null, - b2 blob not null -) engine=tokudb; -insert into tt values (1,'','','',''); -insert into tt values (2,'','','',''); -insert into tt values (3,'','','',''); -insert into tt values (4,'','','',''); -insert into tt values (5,'','','',''); -insert into tt values (6,'','','',''); -insert into tt values (7,'','','',''); -insert into tt values (8,'','','',''); -insert into tt values (9,'','','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='17XW' where id=1; -update noar ti set v0='17XW' where id=1; -update noar tt set b0='OGZ' where id=1; -update noar ti set b0='OGZ' where id=1; -update noar tt set v0='XSVDXTHMV4KKHHCUKUE' where id=1; -update noar ti set v0='XSVDXTHMV4KKHHCUKUE' where id=1; -update noar tt set b1='9ZYEQP6UZWWO8MAEJ3TRO0AWPBC5MN' where id=1; -update noar ti set b1='9ZYEQP6UZWWO8MAEJ3TRO0AWPBC5MN' where id=1; -update noar tt set v0='K09COWECDCM6G1KK5L' where id=1; -update noar ti set v0='K09COWECDCM6G1KK5L' where id=1; -update noar tt set b2='22U50ZPB' where id=1; -update noar ti set b2='22U50ZPB' where id=1; -update noar tt set v0='BF6VSD4W6R258AGZS6HTH' where id=2; -update noar ti set v0='BF6VSD4W6R258AGZS6HTH' where id=2; -update noar tt set b0='IDE5YAXZOU40I' where id=2; -update noar ti set b0='IDE5YAXZOU40I' where id=2; -update noar tt set v0='TT0G1WAW0323S6LR6P9U8E2OSXD37Q' where id=2; -update noar ti set v0='TT0G1WAW0323S6LR6P9U8E2OSXD37Q' where id=2; -update noar tt set b1='C43MAKTB0IHL36UVF8X3IJ8X3D' where id=2; -update noar ti set b1='C43MAKTB0IHL36UVF8X3IJ8X3D' where id=2; -update noar tt set v0='EYTUME7QTT7Q10WYISERBBDR' where id=2; -update noar ti set v0='EYTUME7QTT7Q10WYISERBBDR' where id=2; -update noar tt set b2='SOBU4VG6R791UNM' where id=2; -update noar ti set b2='SOBU4VG6R791UNM' where id=2; -update noar tt set v0='P2VL4MEOOQQKHSFQJ8' where id=3; -update noar ti set v0='P2VL4MEOOQQKHSFQJ8' where id=3; -update noar tt set b0='S' where id=3; -update noar ti set b0='S' where id=3; -update noar tt set v0='PXSW5H35H0M6JUHLQ8EYMSZ6' where id=3; -update noar ti set v0='PXSW5H35H0M6JUHLQ8EYMSZ6' where id=3; -update noar tt set b1='Y1X' where id=3; -update noar ti set b1='Y1X' where id=3; -update noar tt set v0='E5IORNATZ9A9ZZW' where id=3; -update noar ti set v0='E5IORNATZ9A9ZZW' where id=3; -update noar tt set b2='8G9TV6GNBG2MT' where id=3; -update noar ti set b2='8G9TV6GNBG2MT' where id=3; -update noar tt set v0='IX0TTYZ42IN4UXLFV4DAEIOPMUFD' where id=4; -update noar ti set v0='IX0TTYZ42IN4UXLFV4DAEIOPMUFD' where id=4; -update noar tt set b0='P5572WN57VHX0CGN73PKIHSOWZGFJ7' where id=4; -update noar ti set b0='P5572WN57VHX0CGN73PKIHSOWZGFJ7' where id=4; -update noar tt set v0='4WU63F4PTPFJPZ4S7W7FRPVK7VK' where id=4; -update noar ti set v0='4WU63F4PTPFJPZ4S7W7FRPVK7VK' where id=4; -update noar tt set b1='GCFDECVIP0FZX8QTKD5H71' where id=4; -update noar ti set b1='GCFDECVIP0FZX8QTKD5H71' where id=4; -update noar tt set v0='AT126111KT' where id=4; -update noar ti set v0='AT126111KT' where id=4; -update noar tt set b2='C2ZSEGBWSYDE' where id=4; -update noar ti set b2='C2ZSEGBWSYDE' where id=4; -update noar tt set v0='0EA7QDPMS9EZP5EBV' where id=5; -update noar ti set v0='0EA7QDPMS9EZP5EBV' where id=5; -update noar tt set b0='O1U9K7MJPG5IKCGG6EJBQ0YCPM' where id=5; -update noar ti set b0='O1U9K7MJPG5IKCGG6EJBQ0YCPM' where id=5; -update noar tt set v0='71SGU26Z78S4A4X' where id=5; -update noar ti set v0='71SGU26Z78S4A4X' where id=5; -update noar tt set b1='1O3M9RQES' where id=5; -update noar ti set b1='1O3M9RQES' where id=5; -update noar tt set v0='4S26QD4BGJXH' where id=5; -update noar ti set v0='4S26QD4BGJXH' where id=5; -update noar tt set b2='CZQ9DJLU85E' where id=5; -update noar ti set b2='CZQ9DJLU85E' where id=5; -update noar tt set v0='TTME' where id=6; -update noar ti set v0='TTME' where id=6; -update noar tt set b0='S1PH4AODP9W' where id=6; -update noar ti set b0='S1PH4AODP9W' where id=6; -update noar tt set v0='UQ88N1SYLB5FLESZQY84' where id=6; -update noar ti set v0='UQ88N1SYLB5FLESZQY84' where id=6; -update noar tt set b1='6G34Z94VFXGBTSP' where id=6; -update noar ti set b1='6G34Z94VFXGBTSP' where id=6; -update noar tt set v0='PIA2TD38I4IFQ640DC54G8S5BJSZKL' where id=6; -update noar ti set v0='PIA2TD38I4IFQ640DC54G8S5BJSZKL' where id=6; -update noar tt set b2='907SEJ91BSE6J98LHCK8X' where id=6; -update noar ti set b2='907SEJ91BSE6J98LHCK8X' where id=6; -update noar tt set v0='6EBNR3DIYZA4Q9IBYCSOYTGBR' where id=7; -update noar ti set v0='6EBNR3DIYZA4Q9IBYCSOYTGBR' where id=7; -update noar tt set b0='LU0ULWC9BC9DLGWYZLY4LQFVUN4OOB' where id=7; -update noar ti set b0='LU0ULWC9BC9DLGWYZLY4LQFVUN4OOB' where id=7; -update noar tt set v0='7CUOXQOYDQSP' where id=7; -update noar ti set v0='7CUOXQOYDQSP' where id=7; -update noar tt set b1='L7WX5QTBE2EX2ULGOQ3WWWZDCQVD' where id=7; -update noar ti set b1='L7WX5QTBE2EX2ULGOQ3WWWZDCQVD' where id=7; -update noar tt set v0='YJ9DUUN' where id=7; -update noar ti set v0='YJ9DUUN' where id=7; -update noar tt set b2='VC3RBPJJST7SO14P61OL7U' where id=7; -update noar ti set b2='VC3RBPJJST7SO14P61OL7U' where id=7; -update noar tt set v0='LDNU1ZFW68FOSN64D32XLPRQ2OVUNPT3' where id=8; -update noar ti set v0='LDNU1ZFW68FOSN64D32XLPRQ2OVUNPT3' where id=8; -update noar tt set b0='469' where id=8; -update noar ti set b0='469' where id=8; -update noar tt set v0='C6B7RDY7ARAVYU6G1QBKYROF65YWEX' where id=8; -update noar ti set v0='C6B7RDY7ARAVYU6G1QBKYROF65YWEX' where id=8; -update noar tt set b1='H3TM3RBV8R7XEQYUH6A0OKKGX' where id=8; -update noar ti set b1='H3TM3RBV8R7XEQYUH6A0OKKGX' where id=8; -update noar tt set v0='QT2TOT5BWUK3O' where id=8; -update noar ti set v0='QT2TOT5BWUK3O' where id=8; -update noar tt set b2='442' where id=8; -update noar ti set b2='442' where id=8; -update noar tt set v0='BY8YQHNJ' where id=9; -update noar ti set v0='BY8YQHNJ' where id=9; -update noar tt set b0='ULAYW3ZNW3RSK7L8VI4JA0L0Y4Y2R3U' where id=9; -update noar ti set b0='ULAYW3ZNW3RSK7L8VI4JA0L0Y4Y2R3U' where id=9; -update noar tt set v0='WT7V3VQKGD1LDL83QH0' where id=9; -update noar ti set v0='WT7V3VQKGD1LDL83QH0' where id=9; -update noar tt set b1='IVNA2V4GI6YE2X6DG150YH25FP' where id=9; -update noar ti set b1='IVNA2V4GI6YE2X6DG150YH25FP' where id=9; -update noar tt set v0='PCBB88Q5' where id=9; -update noar ti set v0='PCBB88Q5' where id=9; -update noar tt set b2='0LTSCEZUVG03T2TKLJ7' where id=9; -update noar ti set b2='0LTSCEZUVG03T2TKLJ7' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - v0 varchar(256) not null, - b0 mediumblob not null, - b1 tinyblob not null, - b2 blob not null -) engine=tokudb; -insert into tt values (1,'','','',''); -insert into tt values (2,'','','',''); -insert into tt values (3,'','','',''); -insert into tt values (4,'','','',''); -insert into tt values (5,'','','',''); -insert into tt values (6,'','','',''); -insert into tt values (7,'','','',''); -insert into tt values (8,'','','',''); -insert into tt values (9,'','','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='9F2UUEOR5EC0YD' where id=1; -update noar ti set v0='9F2UUEOR5EC0YD' where id=1; -update noar tt set b0='MH1FXFZZCZ4HDGMIAHPKJU9019TBWIY' where id=1; -update noar ti set b0='MH1FXFZZCZ4HDGMIAHPKJU9019TBWIY' where id=1; -update noar tt set v0='ZQT0V2616NTEI3HJZ9E9I6PBSWYUY' where id=1; -update noar ti set v0='ZQT0V2616NTEI3HJZ9E9I6PBSWYUY' where id=1; -update noar tt set b1='JXZ6GE0E8UNUATT2XKSJIYWODDT' where id=1; -update noar ti set b1='JXZ6GE0E8UNUATT2XKSJIYWODDT' where id=1; -update noar tt set v0='O1H6LD4EOEJ22SRRG6J2Z7N4GVW5F' where id=1; -update noar ti set v0='O1H6LD4EOEJ22SRRG6J2Z7N4GVW5F' where id=1; -update noar tt set b2='ZEDD87VDST9JWQ' where id=1; -update noar ti set b2='ZEDD87VDST9JWQ' where id=1; -update noar tt set v0='5CHAU3S25AQY8SN6EY' where id=2; -update noar ti set v0='5CHAU3S25AQY8SN6EY' where id=2; -update noar tt set b0='4GD' where id=2; -update noar ti set b0='4GD' where id=2; -update noar tt set v0='ID' where id=2; -update noar ti set v0='ID' where id=2; -update noar tt set b1='ABX51353GW74' where id=2; -update noar ti set b1='ABX51353GW74' where id=2; -update noar tt set v0='4OL46YHHX53CLRX6CRHOO1KP' where id=2; -update noar ti set v0='4OL46YHHX53CLRX6CRHOO1KP' where id=2; -update noar tt set b2='K6TE7H' where id=2; -update noar ti set b2='K6TE7H' where id=2; -update noar tt set v0='6P81VTSAAOD8CQHNGKZOE9T4LLFBM' where id=3; -update noar ti set v0='6P81VTSAAOD8CQHNGKZOE9T4LLFBM' where id=3; -update noar tt set b0='AKY82LUNMQLV8EZA7HQ0JQL5ZE0' where id=3; -update noar ti set b0='AKY82LUNMQLV8EZA7HQ0JQL5ZE0' where id=3; -update noar tt set v0='C52MMWSJJVDF5LFFTX4X' where id=3; -update noar ti set v0='C52MMWSJJVDF5LFFTX4X' where id=3; -update noar tt set b1='6NLAW6DZBAH1EZKX4KGIZBB8EJQHSGI' where id=3; -update noar ti set b1='6NLAW6DZBAH1EZKX4KGIZBB8EJQHSGI' where id=3; -update noar tt set v0='MDPRSO17N2M6F73' where id=3; -update noar ti set v0='MDPRSO17N2M6F73' where id=3; -update noar tt set b2='JGTCWBMCTTJZKFUUB9BSFY56' where id=3; -update noar ti set b2='JGTCWBMCTTJZKFUUB9BSFY56' where id=3; -update noar tt set v0='AC1F2LW6NACBU7J5PGQAJS9M' where id=4; -update noar ti set v0='AC1F2LW6NACBU7J5PGQAJS9M' where id=4; -update noar tt set b0='REEOS' where id=4; -update noar ti set b0='REEOS' where id=4; -update noar tt set v0='LL3H6A9N7CO1O1WJMR8SLFKGP1' where id=4; -update noar ti set v0='LL3H6A9N7CO1O1WJMR8SLFKGP1' where id=4; -update noar tt set b1='7' where id=4; -update noar ti set b1='7' where id=4; -update noar tt set v0='ASL84DR76KZU7M' where id=4; -update noar ti set v0='ASL84DR76KZU7M' where id=4; -update noar tt set b2='LEIX3YR91SYHP51DWFJGC9EZA0BA0PNA' where id=4; -update noar ti set b2='LEIX3YR91SYHP51DWFJGC9EZA0BA0PNA' where id=4; -update noar tt set v0='02HZ1E10ZE1' where id=5; -update noar ti set v0='02HZ1E10ZE1' where id=5; -update noar tt set b0='YJZE7ADA5BL2PCI4YO4OIH4Y0NRC1' where id=5; -update noar ti set b0='YJZE7ADA5BL2PCI4YO4OIH4Y0NRC1' where id=5; -update noar tt set v0='S8TYW9Q0J0FGJ' where id=5; -update noar ti set v0='S8TYW9Q0J0FGJ' where id=5; -update noar tt set b1='5IGK07FMJ8DWVMS6LEGT6Z0JUF588FQ' where id=5; -update noar ti set b1='5IGK07FMJ8DWVMS6LEGT6Z0JUF588FQ' where id=5; -update noar tt set v0='KR12ZOKEQJG65EBE9PV5PF' where id=5; -update noar ti set v0='KR12ZOKEQJG65EBE9PV5PF' where id=5; -update noar tt set b2='95O3DT' where id=5; -update noar ti set b2='95O3DT' where id=5; -update noar tt set v0='5BDWTVAASDLHR3LGSXS' where id=6; -update noar ti set v0='5BDWTVAASDLHR3LGSXS' where id=6; -update noar tt set b0='OUUPVAO5RXQMVR8E4US50P' where id=6; -update noar ti set b0='OUUPVAO5RXQMVR8E4US50P' where id=6; -update noar tt set v0='Y7BZZU4SK' where id=6; -update noar ti set v0='Y7BZZU4SK' where id=6; -update noar tt set b1='KBHOK4HSQA3PZTZK5VVXJOJ87X9YUVX' where id=6; -update noar ti set b1='KBHOK4HSQA3PZTZK5VVXJOJ87X9YUVX' where id=6; -update noar tt set v0='5KXY9TM50HIYD' where id=6; -update noar ti set v0='5KXY9TM50HIYD' where id=6; -update noar tt set b2='FFIYZA0A1FDQ9YJR471JUDWDEJGL9R' where id=6; -update noar ti set b2='FFIYZA0A1FDQ9YJR471JUDWDEJGL9R' where id=6; -update noar tt set v0='G09YGJ2MHVSNH9S44B5GAN' where id=7; -update noar ti set v0='G09YGJ2MHVSNH9S44B5GAN' where id=7; -update noar tt set b0='C' where id=7; -update noar ti set b0='C' where id=7; -update noar tt set v0='NO9M9ITFS42A' where id=7; -update noar ti set v0='NO9M9ITFS42A' where id=7; -update noar tt set b1='SUM8A946P6RJCE7DYQ' where id=7; -update noar ti set b1='SUM8A946P6RJCE7DYQ' where id=7; -update noar tt set v0='YC1ZA79C2IJKL' where id=7; -update noar ti set v0='YC1ZA79C2IJKL' where id=7; -update noar tt set b2='3BLZFQ6A' where id=7; -update noar ti set b2='3BLZFQ6A' where id=7; -update noar tt set v0='3IIXY1GTYISDJ276Y3' where id=8; -update noar ti set v0='3IIXY1GTYISDJ276Y3' where id=8; -update noar tt set b0='DUY5P4LN7DFX7M7U9HO' where id=8; -update noar ti set b0='DUY5P4LN7DFX7M7U9HO' where id=8; -update noar tt set v0='U36ECOKVIBROSDID9' where id=8; -update noar ti set v0='U36ECOKVIBROSDID9' where id=8; -update noar tt set b1='S2HT6JC8QN1PZFV9QKSXCUDA6O0XNK36' where id=8; -update noar ti set b1='S2HT6JC8QN1PZFV9QKSXCUDA6O0XNK36' where id=8; -update noar tt set v0='GV6CE' where id=8; -update noar ti set v0='GV6CE' where id=8; -update noar tt set b2='J7VFYOPJEE3SK' where id=8; -update noar ti set b2='J7VFYOPJEE3SK' where id=8; -update noar tt set v0='Q5UO' where id=9; -update noar ti set v0='Q5UO' where id=9; -update noar tt set b0='PFHFVJ0TM' where id=9; -update noar ti set b0='PFHFVJ0TM' where id=9; -update noar tt set v0='WVIDAGJ9IP' where id=9; -update noar ti set v0='WVIDAGJ9IP' where id=9; -update noar tt set b1='XS25A2C42I5NNMENIKUM0XX7IY' where id=9; -update noar ti set b1='XS25A2C42I5NNMENIKUM0XX7IY' where id=9; -update noar tt set v0='STL20D7YMU' where id=9; -update noar ti set v0='STL20D7YMU' where id=9; -update noar tt set b2='WIOXFUQVC85X30M' where id=9; -update noar ti set b2='WIOXFUQVC85X30M' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - v0 varchar(32) null, - b0 mediumblob null, - b1 tinyblob null, - b2 mediumblob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='W157IUEO7WCM7LQVFUSHUQDU467' where id=1; -update noar ti set v0='W157IUEO7WCM7LQVFUSHUQDU467' where id=1; -update noar tt set b0='TSZWEEQWZ0B5GPUPS07RWEK5RG4UABD' where id=1; -update noar ti set b0='TSZWEEQWZ0B5GPUPS07RWEK5RG4UABD' where id=1; -update noar tt set v0='EGS51EG5SJIBCWN' where id=1; -update noar ti set v0='EGS51EG5SJIBCWN' where id=1; -update noar tt set b1='RT6CKA' where id=1; -update noar ti set b1='RT6CKA' where id=1; -update noar tt set v0='MKDBQ' where id=1; -update noar ti set v0='MKDBQ' where id=1; -update noar tt set b2='5J9BAFUHHFKACUMVWRV65NFOR74X' where id=1; -update noar ti set b2='5J9BAFUHHFKACUMVWRV65NFOR74X' where id=1; -update noar tt set v0='56XURDVW9' where id=2; -update noar ti set v0='56XURDVW9' where id=2; -update noar tt set b0='Z488EKIIKBV6QTW7KD' where id=2; -update noar ti set b0='Z488EKIIKBV6QTW7KD' where id=2; -update noar tt set v0='1098026SFEESCBGSLKJJKB093P' where id=2; -update noar ti set v0='1098026SFEESCBGSLKJJKB093P' where id=2; -update noar tt set b1='IDAHK2DRDGAJJKYO48' where id=2; -update noar ti set b1='IDAHK2DRDGAJJKYO48' where id=2; -update noar tt set v0='YABVGL24Z' where id=2; -update noar ti set v0='YABVGL24Z' where id=2; -update noar tt set b2='58PTBM67QPHIADXCP0O8TFRXSE' where id=2; -update noar ti set b2='58PTBM67QPHIADXCP0O8TFRXSE' where id=2; -update noar tt set v0='C4WK617Q6G3J6FLDRFNJ7OX2HMTGBYHU' where id=3; -update noar ti set v0='C4WK617Q6G3J6FLDRFNJ7OX2HMTGBYHU' where id=3; -update noar tt set b0='MBX1RN' where id=3; -update noar ti set b0='MBX1RN' where id=3; -update noar tt set v0='X2RPORBB1282PAKY4356TAC7' where id=3; -update noar ti set v0='X2RPORBB1282PAKY4356TAC7' where id=3; -update noar tt set b1='7XDBAAEIIW' where id=3; -update noar ti set b1='7XDBAAEIIW' where id=3; -update noar tt set v0='HVU0X2SDFW' where id=3; -update noar ti set v0='HVU0X2SDFW' where id=3; -update noar tt set b2='FU7IV5QTRRGDJIL21DINITLLP' where id=3; -update noar ti set b2='FU7IV5QTRRGDJIL21DINITLLP' where id=3; -update noar tt set v0='HRDG8HBV1ED3EO3VHTEVZ' where id=4; -update noar ti set v0='HRDG8HBV1ED3EO3VHTEVZ' where id=4; -update noar tt set b0='B' where id=4; -update noar ti set b0='B' where id=4; -update noar tt set v0='MP' where id=4; -update noar ti set v0='MP' where id=4; -update noar tt set b1='E7GEVUBQ1M' where id=4; -update noar ti set b1='E7GEVUBQ1M' where id=4; -update noar tt set v0='A1EGBNZ49BU9G3K2' where id=4; -update noar ti set v0='A1EGBNZ49BU9G3K2' where id=4; -update noar tt set b2='VNCTYBJV0G' where id=4; -update noar ti set b2='VNCTYBJV0G' where id=4; -update noar tt set v0='AH1WZFGX768YE8' where id=5; -update noar ti set v0='AH1WZFGX768YE8' where id=5; -update noar tt set b0='PI16IMFKEH2RJ9RXF8GUFH6SCU' where id=5; -update noar ti set b0='PI16IMFKEH2RJ9RXF8GUFH6SCU' where id=5; -update noar tt set v0='SLO7VCDGYETCWA20' where id=5; -update noar ti set v0='SLO7VCDGYETCWA20' where id=5; -update noar tt set b1='HIZJYKU9ZDET40EJB7H1G91H' where id=5; -update noar ti set b1='HIZJYKU9ZDET40EJB7H1G91H' where id=5; -update noar tt set v0='ZQYY51Y3OXUWI0752B9' where id=5; -update noar ti set v0='ZQYY51Y3OXUWI0752B9' where id=5; -update noar tt set b2='C' where id=5; -update noar ti set b2='C' where id=5; -update noar tt set v0='0NQW2B' where id=6; -update noar ti set v0='0NQW2B' where id=6; -update noar tt set b0='33MD91RAEZ' where id=6; -update noar ti set b0='33MD91RAEZ' where id=6; -update noar tt set v0='NP1OA916LHWGLLWSREF' where id=6; -update noar ti set v0='NP1OA916LHWGLLWSREF' where id=6; -update noar tt set b1='2LI6GZ14IMUJ7JFUN' where id=6; -update noar ti set b1='2LI6GZ14IMUJ7JFUN' where id=6; -update noar tt set v0='42896820IB7RI' where id=6; -update noar ti set v0='42896820IB7RI' where id=6; -update noar tt set b2='6E7CRPO8TGJERL57Y9AL4' where id=6; -update noar ti set b2='6E7CRPO8TGJERL57Y9AL4' where id=6; -update noar tt set v0='Y2DN9ITV' where id=7; -update noar ti set v0='Y2DN9ITV' where id=7; -update noar tt set b0='ZLGPSJGGRW77QKI9Z22VLYIIK8HMB' where id=7; -update noar ti set b0='ZLGPSJGGRW77QKI9Z22VLYIIK8HMB' where id=7; -update noar tt set v0='VTQISZV0EVNJTPQBLKE66OSDGGOTJA' where id=7; -update noar ti set v0='VTQISZV0EVNJTPQBLKE66OSDGGOTJA' where id=7; -update noar tt set b1='6L5XIGHXWANSEF2OWLL' where id=7; -update noar ti set b1='6L5XIGHXWANSEF2OWLL' where id=7; -update noar tt set v0='J5MI' where id=7; -update noar ti set v0='J5MI' where id=7; -update noar tt set b2='EG4PZZH25K' where id=7; -update noar ti set b2='EG4PZZH25K' where id=7; -update noar tt set v0='CX' where id=8; -update noar ti set v0='CX' where id=8; -update noar tt set b0='XMTQ0GG76YQMRNJJZFFI5D22V0HQG' where id=8; -update noar ti set b0='XMTQ0GG76YQMRNJJZFFI5D22V0HQG' where id=8; -update noar tt set v0='CEPOU4IEL6KZE2ZYHY7WR' where id=8; -update noar ti set v0='CEPOU4IEL6KZE2ZYHY7WR' where id=8; -update noar tt set b1='WH9E' where id=8; -update noar ti set b1='WH9E' where id=8; -update noar tt set v0='UBA36IC1BJZ360DDYVMAUS' where id=8; -update noar ti set v0='UBA36IC1BJZ360DDYVMAUS' where id=8; -update noar tt set b2='6UY7UBFUUSG75B76Z2BBUL51H1IL2UE' where id=8; -update noar ti set b2='6UY7UBFUUSG75B76Z2BBUL51H1IL2UE' where id=8; -update noar tt set v0='NHRP7TL8OSUL' where id=9; -update noar ti set v0='NHRP7TL8OSUL' where id=9; -update noar tt set b0='237OM' where id=9; -update noar ti set b0='237OM' where id=9; -update noar tt set v0='9FR1HH' where id=9; -update noar ti set v0='9FR1HH' where id=9; -update noar tt set b1='HKMHMNX5QDL0MJP333VXOAG9VP' where id=9; -update noar ti set b1='HKMHMNX5QDL0MJP333VXOAG9VP' where id=9; -update noar tt set v0='5U5' where id=9; -update noar ti set v0='5U5' where id=9; -update noar tt set b2='NI95R4YHI0FCK76B9QCQB7HXX9HJHV' where id=9; -update noar ti set b2='NI95R4YHI0FCK76B9QCQB7HXX9HJHV' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - v0 varchar(256) null, - b0 mediumblob null, - b1 tinyblob null, - b2 mediumblob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='1BO1DNNP1E' where id=1; -update noar ti set v0='1BO1DNNP1E' where id=1; -update noar tt set b0='JKQ9TB1420A2A2XD6MOYTYQHDL' where id=1; -update noar ti set b0='JKQ9TB1420A2A2XD6MOYTYQHDL' where id=1; -update noar tt set v0='ZJ0PNKBMJBVIQD' where id=1; -update noar ti set v0='ZJ0PNKBMJBVIQD' where id=1; -update noar tt set b1='T' where id=1; -update noar ti set b1='T' where id=1; -update noar tt set v0='7L6Q6YLVIL6M0WUJAYOP' where id=1; -update noar ti set v0='7L6Q6YLVIL6M0WUJAYOP' where id=1; -update noar tt set b2='E613RECVZ471P4M3D0BU52' where id=1; -update noar ti set b2='E613RECVZ471P4M3D0BU52' where id=1; -update noar tt set v0='TCJZTUVLMGBAUK2EYQ8GQSH5MVJ' where id=2; -update noar ti set v0='TCJZTUVLMGBAUK2EYQ8GQSH5MVJ' where id=2; -update noar tt set b0='VWA9CZ2U07R9U' where id=2; -update noar ti set b0='VWA9CZ2U07R9U' where id=2; -update noar tt set v0='IZ485Z5O4W87TXUDKIQDM' where id=2; -update noar ti set v0='IZ485Z5O4W87TXUDKIQDM' where id=2; -update noar tt set b1='97H9MR' where id=2; -update noar ti set b1='97H9MR' where id=2; -update noar tt set v0='ZTQ4WAZA796DE7FW2RE8' where id=2; -update noar ti set v0='ZTQ4WAZA796DE7FW2RE8' where id=2; -update noar tt set b2='L7NA3RQ0NYUM887B3P3F0ERUIMQN' where id=2; -update noar ti set b2='L7NA3RQ0NYUM887B3P3F0ERUIMQN' where id=2; -update noar tt set v0='YLY4LQWGZ9R2U' where id=3; -update noar ti set v0='YLY4LQWGZ9R2U' where id=3; -update noar tt set b0='5A3F511Q' where id=3; -update noar ti set b0='5A3F511Q' where id=3; -update noar tt set v0='XNZWD29955QU5Z5VRXN6UN83' where id=3; -update noar ti set v0='XNZWD29955QU5Z5VRXN6UN83' where id=3; -update noar tt set b1='P6IORZWT6WY5J724D2O4G43PFMP10' where id=3; -update noar ti set b1='P6IORZWT6WY5J724D2O4G43PFMP10' where id=3; -update noar tt set v0='5RQXK' where id=3; -update noar ti set v0='5RQXK' where id=3; -update noar tt set b2='PMJ0Y2DUHE4' where id=3; -update noar ti set b2='PMJ0Y2DUHE4' where id=3; -update noar tt set v0='QHV78B9I8D3WOE' where id=4; -update noar ti set v0='QHV78B9I8D3WOE' where id=4; -update noar tt set b0='W4T3L8UKPE' where id=4; -update noar ti set b0='W4T3L8UKPE' where id=4; -update noar tt set v0='JYILDD' where id=4; -update noar ti set v0='JYILDD' where id=4; -update noar tt set b1='PM69E66IDALFHEGIXDINKD4SYR6M' where id=4; -update noar ti set b1='PM69E66IDALFHEGIXDINKD4SYR6M' where id=4; -update noar tt set v0='AY9V72MI82953VDAX1QZ8' where id=4; -update noar ti set v0='AY9V72MI82953VDAX1QZ8' where id=4; -update noar tt set b2='CSMCP8PJP556FRVFN6F3R3' where id=4; -update noar ti set b2='CSMCP8PJP556FRVFN6F3R3' where id=4; -update noar tt set v0='8ZCCTAUZI' where id=5; -update noar ti set v0='8ZCCTAUZI' where id=5; -update noar tt set b0='2O74R7TCE6HF5' where id=5; -update noar ti set b0='2O74R7TCE6HF5' where id=5; -update noar tt set v0='S' where id=5; -update noar ti set v0='S' where id=5; -update noar tt set b1='5WGXUS' where id=5; -update noar ti set b1='5WGXUS' where id=5; -update noar tt set v0='648JW68HGYL151YWKVQ7HR0BBCU' where id=5; -update noar ti set v0='648JW68HGYL151YWKVQ7HR0BBCU' where id=5; -update noar tt set b2='OGBX' where id=5; -update noar ti set b2='OGBX' where id=5; -update noar tt set v0='LNIACFCW0RJBBG01U' where id=6; -update noar ti set v0='LNIACFCW0RJBBG01U' where id=6; -update noar tt set b0='NYTCEPMJWJ' where id=6; -update noar ti set b0='NYTCEPMJWJ' where id=6; -update noar tt set v0='PA' where id=6; -update noar ti set v0='PA' where id=6; -update noar tt set b1='FZU9' where id=6; -update noar ti set b1='FZU9' where id=6; -update noar tt set v0='US7B749ROL8' where id=6; -update noar ti set v0='US7B749ROL8' where id=6; -update noar tt set b2='QFQ6PQO539RXNZ81H68LI2NU6RQ' where id=6; -update noar ti set b2='QFQ6PQO539RXNZ81H68LI2NU6RQ' where id=6; -update noar tt set v0='94ZUPABBW5C6TQH6VCQHZ031' where id=7; -update noar ti set v0='94ZUPABBW5C6TQH6VCQHZ031' where id=7; -update noar tt set b0='WCLYSOL83NAQ8FQ5' where id=7; -update noar ti set b0='WCLYSOL83NAQ8FQ5' where id=7; -update noar tt set v0='JGGHO' where id=7; -update noar ti set v0='JGGHO' where id=7; -update noar tt set b1='0QRRTAG1I2WK4HP4RKHS36BF8NCB' where id=7; -update noar ti set b1='0QRRTAG1I2WK4HP4RKHS36BF8NCB' where id=7; -update noar tt set v0='XR5S0ZUO2C1XI8QFHEKDQRAMJZ1' where id=7; -update noar ti set v0='XR5S0ZUO2C1XI8QFHEKDQRAMJZ1' where id=7; -update noar tt set b2='1E3BX30VGMBIAPF0LRJQ4NS5B58N8' where id=7; -update noar ti set b2='1E3BX30VGMBIAPF0LRJQ4NS5B58N8' where id=7; -update noar tt set v0='5WSYKYP9ERPVJ6FA3MIPLV' where id=8; -update noar ti set v0='5WSYKYP9ERPVJ6FA3MIPLV' where id=8; -update noar tt set b0='LCWFYGE0STUI' where id=8; -update noar ti set b0='LCWFYGE0STUI' where id=8; -update noar tt set v0='GO226N1Q295DKRVD' where id=8; -update noar ti set v0='GO226N1Q295DKRVD' where id=8; -update noar tt set b1='ETLTFA1FN2RMPE8N4ZWJ2751WU4NGP0V' where id=8; -update noar ti set b1='ETLTFA1FN2RMPE8N4ZWJ2751WU4NGP0V' where id=8; -update noar tt set v0='FOJ78559PBBV7VDDII0Q4UZQGL9TS' where id=8; -update noar ti set v0='FOJ78559PBBV7VDDII0Q4UZQGL9TS' where id=8; -update noar tt set b2='7BIQ7R2R0WNHRMTE9UO' where id=8; -update noar ti set b2='7BIQ7R2R0WNHRMTE9UO' where id=8; -update noar tt set v0='78UA7UZ8UTXCZARVYT4' where id=9; -update noar ti set v0='78UA7UZ8UTXCZARVYT4' where id=9; -update noar tt set b0='NNGL7UG0G8UJOMI8QTJP82PP' where id=9; -update noar ti set b0='NNGL7UG0G8UJOMI8QTJP82PP' where id=9; -update noar tt set v0='1SMS8S8GF0FO6ZJIQJSODBI80XJ' where id=9; -update noar ti set v0='1SMS8S8GF0FO6ZJIQJSODBI80XJ' where id=9; -update noar tt set b1='UW9FXM0' where id=9; -update noar ti set b1='UW9FXM0' where id=9; -update noar tt set v0='MJ5Z108TVNJR5X9S' where id=9; -update noar ti set v0='MJ5Z108TVNJR5X9S' where id=9; -update noar tt set b2='XVCIOCNQN5XFH818OM0TL3NL8' where id=9; -update noar ti set b2='XVCIOCNQN5XFH818OM0TL3NL8' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - v0 varchar(32) not null, - b0 mediumblob not null, - b1 tinyblob not null, - b2 mediumblob not null -) engine=tokudb; -insert into tt values (1,'','','',''); -insert into tt values (2,'','','',''); -insert into tt values (3,'','','',''); -insert into tt values (4,'','','',''); -insert into tt values (5,'','','',''); -insert into tt values (6,'','','',''); -insert into tt values (7,'','','',''); -insert into tt values (8,'','','',''); -insert into tt values (9,'','','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='PTGKA67MQ' where id=1; -update noar ti set v0='PTGKA67MQ' where id=1; -update noar tt set b0='0D0RNA0ETEE696AOKL0UFT4S' where id=1; -update noar ti set b0='0D0RNA0ETEE696AOKL0UFT4S' where id=1; -update noar tt set v0='4T3QICKQ' where id=1; -update noar ti set v0='4T3QICKQ' where id=1; -update noar tt set b1='Q8F82F5SJZXFSUTD9L094YYHHCB' where id=1; -update noar ti set b1='Q8F82F5SJZXFSUTD9L094YYHHCB' where id=1; -update noar tt set v0='1HI00E6U2ORLOY7BARCPIIU' where id=1; -update noar ti set v0='1HI00E6U2ORLOY7BARCPIIU' where id=1; -update noar tt set b2='98BQCNT0GBA3OJXVF' where id=1; -update noar ti set b2='98BQCNT0GBA3OJXVF' where id=1; -update noar tt set v0='TUIEG35EHKJ3AXBE0RUT76WZHZRGXRJ' where id=2; -update noar ti set v0='TUIEG35EHKJ3AXBE0RUT76WZHZRGXRJ' where id=2; -update noar tt set b0='WQMJB' where id=2; -update noar ti set b0='WQMJB' where id=2; -update noar tt set v0='N1JU16FYP58ZBN7QXWVP' where id=2; -update noar ti set v0='N1JU16FYP58ZBN7QXWVP' where id=2; -update noar tt set b1='X9YXP9DSUPMN17D' where id=2; -update noar ti set b1='X9YXP9DSUPMN17D' where id=2; -update noar tt set v0='YJ0W1MRM3WC1FB8B4OSUNFD3HKRQ3D' where id=2; -update noar ti set v0='YJ0W1MRM3WC1FB8B4OSUNFD3HKRQ3D' where id=2; -update noar tt set b2='B6AO2L2W116OWBX9BEC9WLXUAX2' where id=2; -update noar ti set b2='B6AO2L2W116OWBX9BEC9WLXUAX2' where id=2; -update noar tt set v0='1R9SFJW8Z9NU83' where id=3; -update noar ti set v0='1R9SFJW8Z9NU83' where id=3; -update noar tt set b0='P28' where id=3; -update noar ti set b0='P28' where id=3; -update noar tt set v0='KQYOF1CEVWXBS2IENU85THA' where id=3; -update noar ti set v0='KQYOF1CEVWXBS2IENU85THA' where id=3; -update noar tt set b1='FVDTPJXJGZZQRQM0RV3W12G9M' where id=3; -update noar ti set b1='FVDTPJXJGZZQRQM0RV3W12G9M' where id=3; -update noar tt set v0='IOQ53JN52I5S3SCKAHCFMEL0F' where id=3; -update noar ti set v0='IOQ53JN52I5S3SCKAHCFMEL0F' where id=3; -update noar tt set b2='D' where id=3; -update noar ti set b2='D' where id=3; -update noar tt set v0='CHN3KRD3WP1YTW4PR3ZZQKFTM' where id=4; -update noar ti set v0='CHN3KRD3WP1YTW4PR3ZZQKFTM' where id=4; -update noar tt set b0='4T65Z9' where id=4; -update noar ti set b0='4T65Z9' where id=4; -update noar tt set v0='KRP0O32NIN2NVLFRJ3ZI' where id=4; -update noar ti set v0='KRP0O32NIN2NVLFRJ3ZI' where id=4; -update noar tt set b1='T5FRQXT0IT61OIPJRXTOC6S49' where id=4; -update noar ti set b1='T5FRQXT0IT61OIPJRXTOC6S49' where id=4; -update noar tt set v0='OCZSSF95DXRVTP783BPH6AQL' where id=4; -update noar ti set v0='OCZSSF95DXRVTP783BPH6AQL' where id=4; -update noar tt set b2='95RSMZ53729RYJ4AB1E8KPUBK' where id=4; -update noar ti set b2='95RSMZ53729RYJ4AB1E8KPUBK' where id=4; -update noar tt set v0='IAYFC7Q5RQ9L6G24FD4UCNYP' where id=5; -update noar ti set v0='IAYFC7Q5RQ9L6G24FD4UCNYP' where id=5; -update noar tt set b0='OA3FYFCJLC0D6T' where id=5; -update noar ti set b0='OA3FYFCJLC0D6T' where id=5; -update noar tt set v0='71247J8C' where id=5; -update noar ti set v0='71247J8C' where id=5; -update noar tt set b1='3TU6XTNG1' where id=5; -update noar ti set b1='3TU6XTNG1' where id=5; -update noar tt set v0='FG' where id=5; -update noar ti set v0='FG' where id=5; -update noar tt set b2='E84' where id=5; -update noar ti set b2='E84' where id=5; -update noar tt set v0='6WHJ8LB6CKJRXP2Y8RFE5XGV' where id=6; -update noar ti set v0='6WHJ8LB6CKJRXP2Y8RFE5XGV' where id=6; -update noar tt set b0='XXNGTMANVO' where id=6; -update noar ti set b0='XXNGTMANVO' where id=6; -update noar tt set v0='Y7DLDIS7VZR' where id=6; -update noar ti set v0='Y7DLDIS7VZR' where id=6; -update noar tt set b1='X4M7ZAXEF65KO5ZKX' where id=6; -update noar ti set b1='X4M7ZAXEF65KO5ZKX' where id=6; -update noar tt set v0='45JOTHEYLO0CAR60JVZYQ8PBJ' where id=6; -update noar ti set v0='45JOTHEYLO0CAR60JVZYQ8PBJ' where id=6; -update noar tt set b2='G043OIEM83ID' where id=6; -update noar ti set b2='G043OIEM83ID' where id=6; -update noar tt set v0='IHVB7ER2' where id=7; -update noar ti set v0='IHVB7ER2' where id=7; -update noar tt set b0='LOIUO4E01ZRXK1O' where id=7; -update noar ti set b0='LOIUO4E01ZRXK1O' where id=7; -update noar tt set v0='37M4S6GN98OG' where id=7; -update noar ti set v0='37M4S6GN98OG' where id=7; -update noar tt set b1='R3E6XJ2TC8DOYXE' where id=7; -update noar ti set b1='R3E6XJ2TC8DOYXE' where id=7; -update noar tt set v0='JLVUT524TZUE' where id=7; -update noar ti set v0='JLVUT524TZUE' where id=7; -update noar tt set b2='NK95KSOVU4Z' where id=7; -update noar ti set b2='NK95KSOVU4Z' where id=7; -update noar tt set v0='UOW1PHY00J7KXBHJF68' where id=8; -update noar ti set v0='UOW1PHY00J7KXBHJF68' where id=8; -update noar tt set b0='Q90RSEZBOJWO4098IALDLFQJ' where id=8; -update noar ti set b0='Q90RSEZBOJWO4098IALDLFQJ' where id=8; -update noar tt set v0='2XW1YFPN' where id=8; -update noar ti set v0='2XW1YFPN' where id=8; -update noar tt set b1='QZA' where id=8; -update noar ti set b1='QZA' where id=8; -update noar tt set v0='JCHE7A2F2NI8XXF9APFWPGSNQ2' where id=8; -update noar ti set v0='JCHE7A2F2NI8XXF9APFWPGSNQ2' where id=8; -update noar tt set b2='P2YSYWS9H8F5UA3GGPDN' where id=8; -update noar ti set b2='P2YSYWS9H8F5UA3GGPDN' where id=8; -update noar tt set v0='PI0IKNTCB5DJ48D2S4BN6ON2' where id=9; -update noar ti set v0='PI0IKNTCB5DJ48D2S4BN6ON2' where id=9; -update noar tt set b0='4Y23GZ7RMUQM7J362X' where id=9; -update noar ti set b0='4Y23GZ7RMUQM7J362X' where id=9; -update noar tt set v0='SSKFB1YB40PKXXYF3JCD4XDT0Z' where id=9; -update noar ti set v0='SSKFB1YB40PKXXYF3JCD4XDT0Z' where id=9; -update noar tt set b1='R7PATZX8GY2PRJSB45S5A' where id=9; -update noar ti set b1='R7PATZX8GY2PRJSB45S5A' where id=9; -update noar tt set v0='V3IURG' where id=9; -update noar ti set v0='V3IURG' where id=9; -update noar tt set b2='CUEZ63J1YT7MUNZF9T22YOKE' where id=9; -update noar ti set b2='CUEZ63J1YT7MUNZF9T22YOKE' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - v0 varchar(256) not null, - b0 mediumblob not null, - b1 tinyblob not null, - b2 mediumblob not null -) engine=tokudb; -insert into tt values (1,'','','',''); -insert into tt values (2,'','','',''); -insert into tt values (3,'','','',''); -insert into tt values (4,'','','',''); -insert into tt values (5,'','','',''); -insert into tt values (6,'','','',''); -insert into tt values (7,'','','',''); -insert into tt values (8,'','','',''); -insert into tt values (9,'','','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='CVQT6QBFJPXKKS3C2' where id=1; -update noar ti set v0='CVQT6QBFJPXKKS3C2' where id=1; -update noar tt set b0='KD9WJVZJFWVUCIEKKGG23JZD80K1S2' where id=1; -update noar ti set b0='KD9WJVZJFWVUCIEKKGG23JZD80K1S2' where id=1; -update noar tt set v0='KRSRZ5GS4BHVQZ' where id=1; -update noar ti set v0='KRSRZ5GS4BHVQZ' where id=1; -update noar tt set b1='JXTCPQ3R' where id=1; -update noar ti set b1='JXTCPQ3R' where id=1; -update noar tt set v0='22LCQF7ELOJZJGU' where id=1; -update noar ti set v0='22LCQF7ELOJZJGU' where id=1; -update noar tt set b2='ECPSQY4G9NBC5DWVQV495S' where id=1; -update noar ti set b2='ECPSQY4G9NBC5DWVQV495S' where id=1; -update noar tt set v0='JSIBYTVS01I6BKDRSX0NL8' where id=2; -update noar ti set v0='JSIBYTVS01I6BKDRSX0NL8' where id=2; -update noar tt set b0='2NUYN7O7YA47YNL' where id=2; -update noar ti set b0='2NUYN7O7YA47YNL' where id=2; -update noar tt set v0='FK6Q0YPV9K3FUJSP23H6GGPDRFVB5RG1' where id=2; -update noar ti set v0='FK6Q0YPV9K3FUJSP23H6GGPDRFVB5RG1' where id=2; -update noar tt set b1='890G17EVQQVQSEWC9IU3RWVLA2R3PC89' where id=2; -update noar ti set b1='890G17EVQQVQSEWC9IU3RWVLA2R3PC89' where id=2; -update noar tt set v0='KZQ74QHN9AW96FR2H4OXX01UHL7' where id=2; -update noar ti set v0='KZQ74QHN9AW96FR2H4OXX01UHL7' where id=2; -update noar tt set b2='ZJMC88A5VZLE7' where id=2; -update noar ti set b2='ZJMC88A5VZLE7' where id=2; -update noar tt set v0='B88FQW7KGY9NVZ1' where id=3; -update noar ti set v0='B88FQW7KGY9NVZ1' where id=3; -update noar tt set b0='MT9QU7VDPWY9T1668OF1V5KGH9UTE2G0' where id=3; -update noar ti set b0='MT9QU7VDPWY9T1668OF1V5KGH9UTE2G0' where id=3; -update noar tt set v0='K1KK0IO5CNAFAIY7K2JBTDDFAPC' where id=3; -update noar ti set v0='K1KK0IO5CNAFAIY7K2JBTDDFAPC' where id=3; -update noar tt set b1='H6IYS6UVG' where id=3; -update noar ti set b1='H6IYS6UVG' where id=3; -update noar tt set v0='GAK7BP56UOLPNY28GX9IAY9I' where id=3; -update noar ti set v0='GAK7BP56UOLPNY28GX9IAY9I' where id=3; -update noar tt set b2='UWN' where id=3; -update noar ti set b2='UWN' where id=3; -update noar tt set v0='HANVSS2K3CZY0CENQ' where id=4; -update noar ti set v0='HANVSS2K3CZY0CENQ' where id=4; -update noar tt set b0='DWOJ4708T351YK7Y5X4134ETRXO' where id=4; -update noar ti set b0='DWOJ4708T351YK7Y5X4134ETRXO' where id=4; -update noar tt set v0='OZYDIQO055EY' where id=4; -update noar ti set v0='OZYDIQO055EY' where id=4; -update noar tt set b1='Z4Q9Z' where id=4; -update noar ti set b1='Z4Q9Z' where id=4; -update noar tt set v0='J9D19VZIBLMUV1V79V' where id=4; -update noar ti set v0='J9D19VZIBLMUV1V79V' where id=4; -update noar tt set b2='NXD2YRXQIYIE9TM6K' where id=4; -update noar ti set b2='NXD2YRXQIYIE9TM6K' where id=4; -update noar tt set v0='OKCBOO51D4JM3TX9I1X' where id=5; -update noar ti set v0='OKCBOO51D4JM3TX9I1X' where id=5; -update noar tt set b0='V' where id=5; -update noar ti set b0='V' where id=5; -update noar tt set v0='FAKX0KXCLTS5LNVCX8I' where id=5; -update noar ti set v0='FAKX0KXCLTS5LNVCX8I' where id=5; -update noar tt set b1='GHNS1P5T84UN6R' where id=5; -update noar ti set b1='GHNS1P5T84UN6R' where id=5; -update noar tt set v0='SN1TIQLLGHO6SIELT3F6CR8EOZRBDF' where id=5; -update noar ti set v0='SN1TIQLLGHO6SIELT3F6CR8EOZRBDF' where id=5; -update noar tt set b2='GLW177V2OMO2OUHHIWBKQW53' where id=5; -update noar ti set b2='GLW177V2OMO2OUHHIWBKQW53' where id=5; -update noar tt set v0='Q6HHGU' where id=6; -update noar ti set v0='Q6HHGU' where id=6; -update noar tt set b0='9H1O0DW8GMGW8U617SFX' where id=6; -update noar ti set b0='9H1O0DW8GMGW8U617SFX' where id=6; -update noar tt set v0='BE6SKIRYEZLEPIK54G94R3S438QM' where id=6; -update noar ti set v0='BE6SKIRYEZLEPIK54G94R3S438QM' where id=6; -update noar tt set b1='OWPKMLGFUY9SYHPE8HE' where id=6; -update noar ti set b1='OWPKMLGFUY9SYHPE8HE' where id=6; -update noar tt set v0='ZCE35A1JS9MNT' where id=6; -update noar ti set v0='ZCE35A1JS9MNT' where id=6; -update noar tt set b2='NCG2PXQBB6OM7MSREXWZOG80EELLU' where id=6; -update noar ti set b2='NCG2PXQBB6OM7MSREXWZOG80EELLU' where id=6; -update noar tt set v0='M5EJ32ASHRY66CH4CST' where id=7; -update noar ti set v0='M5EJ32ASHRY66CH4CST' where id=7; -update noar tt set b0='D56MR' where id=7; -update noar ti set b0='D56MR' where id=7; -update noar tt set v0='LOR4V8EUFIQLQ41KKOTGV8X6' where id=7; -update noar ti set v0='LOR4V8EUFIQLQ41KKOTGV8X6' where id=7; -update noar tt set b1='86JX62U76TZ1' where id=7; -update noar ti set b1='86JX62U76TZ1' where id=7; -update noar tt set v0='7787RQK215BYT3BPJ44V' where id=7; -update noar ti set v0='7787RQK215BYT3BPJ44V' where id=7; -update noar tt set b2='HW2XDS4G129N7OL40VIAY4Q' where id=7; -update noar ti set b2='HW2XDS4G129N7OL40VIAY4Q' where id=7; -update noar tt set v0='8A5D8G51UFF61AZ1P6ZAG52' where id=8; -update noar ti set v0='8A5D8G51UFF61AZ1P6ZAG52' where id=8; -update noar tt set b0='DNUQ4B11G4UHWIIRF' where id=8; -update noar ti set b0='DNUQ4B11G4UHWIIRF' where id=8; -update noar tt set v0='T7S0T7EJKZKM3QXXKEJ2A2B8J6C7IP' where id=8; -update noar ti set v0='T7S0T7EJKZKM3QXXKEJ2A2B8J6C7IP' where id=8; -update noar tt set b1='I0WCTO2SO5INLDQWBZCUFO9NZ9BN1' where id=8; -update noar ti set b1='I0WCTO2SO5INLDQWBZCUFO9NZ9BN1' where id=8; -update noar tt set v0='FTJL6767C8R4ZZ7YB8B10QUUK' where id=8; -update noar ti set v0='FTJL6767C8R4ZZ7YB8B10QUUK' where id=8; -update noar tt set b2='VL36TG8RJOGEUH67R' where id=8; -update noar ti set b2='VL36TG8RJOGEUH67R' where id=8; -update noar tt set v0='4IXKPPYG9BVTEZRFVOGLCBZ' where id=9; -update noar ti set v0='4IXKPPYG9BVTEZRFVOGLCBZ' where id=9; -update noar tt set b0='AGJY7T1U5KT0FXTBL4FEQK75P3S6' where id=9; -update noar ti set b0='AGJY7T1U5KT0FXTBL4FEQK75P3S6' where id=9; -update noar tt set v0='2LWI00ARFL' where id=9; -update noar ti set v0='2LWI00ARFL' where id=9; -update noar tt set b1='QOPM5O11WXRTTF6WVZPTV8O851RHO4Q' where id=9; -update noar ti set b1='QOPM5O11WXRTTF6WVZPTV8O851RHO4Q' where id=9; -update noar tt set v0='RL0P' where id=9; -update noar ti set v0='RL0P' where id=9; -update noar tt set b2='CPP63Q2IOXWDD4' where id=9; -update noar ti set b2='CPP63Q2IOXWDD4' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - v0 varchar(32) null, - b0 mediumblob null, - b1 tinyblob null, - b2 longblob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='21OJJYNQB6DXC3DU9' where id=1; -update noar ti set v0='21OJJYNQB6DXC3DU9' where id=1; -update noar tt set b0='61GHSABART' where id=1; -update noar ti set b0='61GHSABART' where id=1; -update noar tt set v0='964OS' where id=1; -update noar ti set v0='964OS' where id=1; -update noar tt set b1='ZRQ1104R0LCUXR1N' where id=1; -update noar ti set b1='ZRQ1104R0LCUXR1N' where id=1; -update noar tt set v0='GD0I3Z3EL' where id=1; -update noar ti set v0='GD0I3Z3EL' where id=1; -update noar tt set b2='NEX4Y4S' where id=1; -update noar ti set b2='NEX4Y4S' where id=1; -update noar tt set v0='J7G5COJ9O4MZL03C8F3LTNQ9J4M0BG' where id=2; -update noar ti set v0='J7G5COJ9O4MZL03C8F3LTNQ9J4M0BG' where id=2; -update noar tt set b0='KCT7H4I42XOUNF0' where id=2; -update noar ti set b0='KCT7H4I42XOUNF0' where id=2; -update noar tt set v0='VE26XO4P6GIXQGD8X6KOW3Q8WSV1CR' where id=2; -update noar ti set v0='VE26XO4P6GIXQGD8X6KOW3Q8WSV1CR' where id=2; -update noar tt set b1='QQL6EUAYQ9G3ROZPOBT7HOW9FZXUTRI0' where id=2; -update noar ti set b1='QQL6EUAYQ9G3ROZPOBT7HOW9FZXUTRI0' where id=2; -update noar tt set v0='N0GAUEJ60X' where id=2; -update noar ti set v0='N0GAUEJ60X' where id=2; -update noar tt set b2='Q3QP1HZ27QKYGBH6QTE8US9Z' where id=2; -update noar ti set b2='Q3QP1HZ27QKYGBH6QTE8US9Z' where id=2; -update noar tt set v0='TSMVX05CRK8793J' where id=3; -update noar ti set v0='TSMVX05CRK8793J' where id=3; -update noar tt set b0='5517O941L6K11RFH' where id=3; -update noar ti set b0='5517O941L6K11RFH' where id=3; -update noar tt set v0='7UGN' where id=3; -update noar ti set v0='7UGN' where id=3; -update noar tt set b1='H8EY1Y0LTUD88KL710KDZOTR6Z9BW' where id=3; -update noar ti set b1='H8EY1Y0LTUD88KL710KDZOTR6Z9BW' where id=3; -update noar tt set v0='FZ7WPJZ1' where id=3; -update noar ti set v0='FZ7WPJZ1' where id=3; -update noar tt set b2='S3265J2X2V' where id=3; -update noar ti set b2='S3265J2X2V' where id=3; -update noar tt set v0='OH96WT3IS1JHNLYASXCVKSS0UP35' where id=4; -update noar ti set v0='OH96WT3IS1JHNLYASXCVKSS0UP35' where id=4; -update noar tt set b0='29JN14HZZRKFYZK6O4DC8DWPBVZ86D' where id=4; -update noar ti set b0='29JN14HZZRKFYZK6O4DC8DWPBVZ86D' where id=4; -update noar tt set v0='RF2' where id=4; -update noar ti set v0='RF2' where id=4; -update noar tt set b1='YWSDXLGHWDBR5WS8V' where id=4; -update noar ti set b1='YWSDXLGHWDBR5WS8V' where id=4; -update noar tt set v0='6' where id=4; -update noar ti set v0='6' where id=4; -update noar tt set b2='ZKW39A368' where id=4; -update noar ti set b2='ZKW39A368' where id=4; -update noar tt set v0='5VIC7O1ULHW8CM' where id=5; -update noar ti set v0='5VIC7O1ULHW8CM' where id=5; -update noar tt set b0='3LVZF5EBOCDFTW8' where id=5; -update noar ti set b0='3LVZF5EBOCDFTW8' where id=5; -update noar tt set v0='E2DXLBA17' where id=5; -update noar ti set v0='E2DXLBA17' where id=5; -update noar tt set b1='ZH' where id=5; -update noar ti set b1='ZH' where id=5; -update noar tt set v0='NLXA3S' where id=5; -update noar ti set v0='NLXA3S' where id=5; -update noar tt set b2='4LGHNT4Q85I4O7ULVFQQLRUNGZ5' where id=5; -update noar ti set b2='4LGHNT4Q85I4O7ULVFQQLRUNGZ5' where id=5; -update noar tt set v0='U43I4FYRABBHNY9U' where id=6; -update noar ti set v0='U43I4FYRABBHNY9U' where id=6; -update noar tt set b0='FZ' where id=6; -update noar ti set b0='FZ' where id=6; -update noar tt set v0='2TUNSXX5YJHX8F6SABLT' where id=6; -update noar ti set v0='2TUNSXX5YJHX8F6SABLT' where id=6; -update noar tt set b1='48ZP479' where id=6; -update noar ti set b1='48ZP479' where id=6; -update noar tt set v0='EEL7VO4WJHNI' where id=6; -update noar ti set v0='EEL7VO4WJHNI' where id=6; -update noar tt set b2='AM7K5GT1L0NTY1ZNQ0' where id=6; -update noar ti set b2='AM7K5GT1L0NTY1ZNQ0' where id=6; -update noar tt set v0='FVW85RANM6T35BDIO' where id=7; -update noar ti set v0='FVW85RANM6T35BDIO' where id=7; -update noar tt set b0='RJBNVO6QKVKU7P' where id=7; -update noar ti set b0='RJBNVO6QKVKU7P' where id=7; -update noar tt set v0='2UP94M17BJ485Y' where id=7; -update noar ti set v0='2UP94M17BJ485Y' where id=7; -update noar tt set b1='QMUSTOPA2' where id=7; -update noar ti set b1='QMUSTOPA2' where id=7; -update noar tt set v0='V' where id=7; -update noar ti set v0='V' where id=7; -update noar tt set b2='ZNKIGBSS' where id=7; -update noar ti set b2='ZNKIGBSS' where id=7; -update noar tt set v0='HGS9I3I62ELHRQXIW' where id=8; -update noar ti set v0='HGS9I3I62ELHRQXIW' where id=8; -update noar tt set b0='8E6GOZWVA50USLU' where id=8; -update noar ti set b0='8E6GOZWVA50USLU' where id=8; -update noar tt set v0='TQLEVN4' where id=8; -update noar ti set v0='TQLEVN4' where id=8; -update noar tt set b1='EBF9KXB0P4WW6O5JN9MKA' where id=8; -update noar ti set b1='EBF9KXB0P4WW6O5JN9MKA' where id=8; -update noar tt set v0='FXBLG2MD' where id=8; -update noar ti set v0='FXBLG2MD' where id=8; -update noar tt set b2='3S' where id=8; -update noar ti set b2='3S' where id=8; -update noar tt set v0='IJ8PGQ90RT0G64Q7' where id=9; -update noar ti set v0='IJ8PGQ90RT0G64Q7' where id=9; -update noar tt set b0='GLZ5FTW8V2DGJDNZ91IAUT' where id=9; -update noar ti set b0='GLZ5FTW8V2DGJDNZ91IAUT' where id=9; -update noar tt set v0='KBIC3ZWUKB6024XJ2Q9JJ7QX953L' where id=9; -update noar ti set v0='KBIC3ZWUKB6024XJ2Q9JJ7QX953L' where id=9; -update noar tt set b1='A' where id=9; -update noar ti set b1='A' where id=9; -update noar tt set v0='P0R1L09S6AH5I52OHLPO9KCQ' where id=9; -update noar ti set v0='P0R1L09S6AH5I52OHLPO9KCQ' where id=9; -update noar tt set b2='R0F' where id=9; -update noar ti set b2='R0F' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - v0 varchar(256) null, - b0 mediumblob null, - b1 tinyblob null, - b2 longblob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='HL1RD2FWCWOD4TPKVWY3' where id=1; -update noar ti set v0='HL1RD2FWCWOD4TPKVWY3' where id=1; -update noar tt set b0='GUKWFY7CPO67USXO7PL' where id=1; -update noar ti set b0='GUKWFY7CPO67USXO7PL' where id=1; -update noar tt set v0='VB8LBUVC' where id=1; -update noar ti set v0='VB8LBUVC' where id=1; -update noar tt set b1='4DX4NT96ZZD' where id=1; -update noar ti set b1='4DX4NT96ZZD' where id=1; -update noar tt set v0='X2724PXIMMDDIFPRNG2' where id=1; -update noar ti set v0='X2724PXIMMDDIFPRNG2' where id=1; -update noar tt set b2='V8A2PMQ4YJKNDI' where id=1; -update noar ti set b2='V8A2PMQ4YJKNDI' where id=1; -update noar tt set v0='7HFLNHBQ' where id=2; -update noar ti set v0='7HFLNHBQ' where id=2; -update noar tt set b0='C1OH562IFS14PO9VJ' where id=2; -update noar ti set b0='C1OH562IFS14PO9VJ' where id=2; -update noar tt set v0='1K' where id=2; -update noar ti set v0='1K' where id=2; -update noar tt set b1='Q4HPM4N2IUAZTT' where id=2; -update noar ti set b1='Q4HPM4N2IUAZTT' where id=2; -update noar tt set v0='QBVCL' where id=2; -update noar ti set v0='QBVCL' where id=2; -update noar tt set b2='AFJ7YI0D3RZEF1NH5USXXE2Z' where id=2; -update noar ti set b2='AFJ7YI0D3RZEF1NH5USXXE2Z' where id=2; -update noar tt set v0='6TJQDY0VOX9ZFTNNBV58P35VN' where id=3; -update noar ti set v0='6TJQDY0VOX9ZFTNNBV58P35VN' where id=3; -update noar tt set b0='JP5W9QVIITSZGKMHP' where id=3; -update noar ti set b0='JP5W9QVIITSZGKMHP' where id=3; -update noar tt set v0='BB7D18JDANP' where id=3; -update noar ti set v0='BB7D18JDANP' where id=3; -update noar tt set b1='VOYP4GZ250RG6Y' where id=3; -update noar ti set b1='VOYP4GZ250RG6Y' where id=3; -update noar tt set v0='D' where id=3; -update noar ti set v0='D' where id=3; -update noar tt set b2='XZKWF6T3L34' where id=3; -update noar ti set b2='XZKWF6T3L34' where id=3; -update noar tt set v0='FL9YY5Y' where id=4; -update noar ti set v0='FL9YY5Y' where id=4; -update noar tt set b0='2ZAYPJ7S8ETB1WMZFCDBPMT' where id=4; -update noar ti set b0='2ZAYPJ7S8ETB1WMZFCDBPMT' where id=4; -update noar tt set v0='2XYMN595X4221C60V2JUREDT' where id=4; -update noar ti set v0='2XYMN595X4221C60V2JUREDT' where id=4; -update noar tt set b1='FWWUMNSB5Y6I61ETVSE' where id=4; -update noar ti set b1='FWWUMNSB5Y6I61ETVSE' where id=4; -update noar tt set v0='CTXJTU7HOW2LCF45410QDFTR2' where id=4; -update noar ti set v0='CTXJTU7HOW2LCF45410QDFTR2' where id=4; -update noar tt set b2='6BCKTKY34QPMOZ' where id=4; -update noar ti set b2='6BCKTKY34QPMOZ' where id=4; -update noar tt set v0='3SZ3Y9HOS6PV5KXCOUPFKB' where id=5; -update noar ti set v0='3SZ3Y9HOS6PV5KXCOUPFKB' where id=5; -update noar tt set b0='1LL' where id=5; -update noar ti set b0='1LL' where id=5; -update noar tt set v0='06T19ZH7UK1590GPD4Q' where id=5; -update noar ti set v0='06T19ZH7UK1590GPD4Q' where id=5; -update noar tt set b1='BI8' where id=5; -update noar ti set b1='BI8' where id=5; -update noar tt set v0='QVGXLF' where id=5; -update noar ti set v0='QVGXLF' where id=5; -update noar tt set b2='E1TEACSKGPHJX3MEXRAOOC8LRN' where id=5; -update noar ti set b2='E1TEACSKGPHJX3MEXRAOOC8LRN' where id=5; -update noar tt set v0='VQWUVKPU1NFIHRJV5JE7HLLUI6YW3TC2' where id=6; -update noar ti set v0='VQWUVKPU1NFIHRJV5JE7HLLUI6YW3TC2' where id=6; -update noar tt set b0='UTJO18N5VD7RSM2DV6BU66MZ' where id=6; -update noar ti set b0='UTJO18N5VD7RSM2DV6BU66MZ' where id=6; -update noar tt set v0='JNU' where id=6; -update noar ti set v0='JNU' where id=6; -update noar tt set b1='7TMRYOTWM5' where id=6; -update noar ti set b1='7TMRYOTWM5' where id=6; -update noar tt set v0='V5B3UO1DNOGJF0IJWLYJ0' where id=6; -update noar ti set v0='V5B3UO1DNOGJF0IJWLYJ0' where id=6; -update noar tt set b2='BV' where id=6; -update noar ti set b2='BV' where id=6; -update noar tt set v0='RD19WOMFOHP1NS6B4RDRAJ' where id=7; -update noar ti set v0='RD19WOMFOHP1NS6B4RDRAJ' where id=7; -update noar tt set b0='G0UK0XTO9V4QJWM25FM2' where id=7; -update noar ti set b0='G0UK0XTO9V4QJWM25FM2' where id=7; -update noar tt set v0='NNRAG27BONARLR9B' where id=7; -update noar ti set v0='NNRAG27BONARLR9B' where id=7; -update noar tt set b1='42NGZEDM' where id=7; -update noar ti set b1='42NGZEDM' where id=7; -update noar tt set v0='Y29RHMH22A7Q8CNEDR5WA1Z32DTQ' where id=7; -update noar ti set v0='Y29RHMH22A7Q8CNEDR5WA1Z32DTQ' where id=7; -update noar tt set b2='94RUT3UYSN8UZV390BR6ZJ0QDLVPORGL' where id=7; -update noar ti set b2='94RUT3UYSN8UZV390BR6ZJ0QDLVPORGL' where id=7; -update noar tt set v0='5U1JR31LDT5E418MHIE0RO81EK93T' where id=8; -update noar ti set v0='5U1JR31LDT5E418MHIE0RO81EK93T' where id=8; -update noar tt set b0='069PFK2GC' where id=8; -update noar ti set b0='069PFK2GC' where id=8; -update noar tt set v0='ZXI19RYQ2ERCRAEM02' where id=8; -update noar ti set v0='ZXI19RYQ2ERCRAEM02' where id=8; -update noar tt set b1='JJQHY2KHYJU5XRJ95NTX4SYFFGAP' where id=8; -update noar ti set b1='JJQHY2KHYJU5XRJ95NTX4SYFFGAP' where id=8; -update noar tt set v0='XBQS2DWSR0036PSS7CDBMOMU859' where id=8; -update noar ti set v0='XBQS2DWSR0036PSS7CDBMOMU859' where id=8; -update noar tt set b2='V4T4GEVUZ4Q21Q0S5CZSLDO' where id=8; -update noar ti set b2='V4T4GEVUZ4Q21Q0S5CZSLDO' where id=8; -update noar tt set v0='4DCD6O32EFXIHM548S' where id=9; -update noar ti set v0='4DCD6O32EFXIHM548S' where id=9; -update noar tt set b0='1XPL50ZSNGCBIIMOE' where id=9; -update noar ti set b0='1XPL50ZSNGCBIIMOE' where id=9; -update noar tt set v0='JTHEBALS7W51UD' where id=9; -update noar ti set v0='JTHEBALS7W51UD' where id=9; -update noar tt set b1='7Z75FTH7MPSEEBU8BGCGVAC' where id=9; -update noar ti set b1='7Z75FTH7MPSEEBU8BGCGVAC' where id=9; -update noar tt set v0='506P0VY7JEZTBFFJ7ZQ7OC1ZKY3AIG' where id=9; -update noar ti set v0='506P0VY7JEZTBFFJ7ZQ7OC1ZKY3AIG' where id=9; -update noar tt set b2='4O' where id=9; -update noar ti set b2='4O' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - v0 varchar(32) not null, - b0 mediumblob not null, - b1 tinyblob not null, - b2 longblob not null -) engine=tokudb; -insert into tt values (1,'','','',''); -insert into tt values (2,'','','',''); -insert into tt values (3,'','','',''); -insert into tt values (4,'','','',''); -insert into tt values (5,'','','',''); -insert into tt values (6,'','','',''); -insert into tt values (7,'','','',''); -insert into tt values (8,'','','',''); -insert into tt values (9,'','','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='CSWHY390L8CWLFRKRMSRIE1G' where id=1; -update noar ti set v0='CSWHY390L8CWLFRKRMSRIE1G' where id=1; -update noar tt set b0='XS4YW8N0' where id=1; -update noar ti set b0='XS4YW8N0' where id=1; -update noar tt set v0='OOZLH556CM1CMKL8VRGH89Q' where id=1; -update noar ti set v0='OOZLH556CM1CMKL8VRGH89Q' where id=1; -update noar tt set b1='UOY7XP9Q3I' where id=1; -update noar ti set b1='UOY7XP9Q3I' where id=1; -update noar tt set v0='BB1OQYVROCIIZ6020URF0AV6CYT' where id=1; -update noar ti set v0='BB1OQYVROCIIZ6020URF0AV6CYT' where id=1; -update noar tt set b2='1NJT7HN7O6WKFSVEYEAJYYJEV1S6D0X' where id=1; -update noar ti set b2='1NJT7HN7O6WKFSVEYEAJYYJEV1S6D0X' where id=1; -update noar tt set v0='WJ8MP1V761L92RBLWX5QJSS' where id=2; -update noar ti set v0='WJ8MP1V761L92RBLWX5QJSS' where id=2; -update noar tt set b0='YS' where id=2; -update noar ti set b0='YS' where id=2; -update noar tt set v0='2MQ' where id=2; -update noar ti set v0='2MQ' where id=2; -update noar tt set b1='6H' where id=2; -update noar ti set b1='6H' where id=2; -update noar tt set v0='8TXQAJG1TJOD8OWU84QQXMB' where id=2; -update noar ti set v0='8TXQAJG1TJOD8OWU84QQXMB' where id=2; -update noar tt set b2='SU4Q525Q8SF1LULLX1FJ8D0J4UOZJ' where id=2; -update noar ti set b2='SU4Q525Q8SF1LULLX1FJ8D0J4UOZJ' where id=2; -update noar tt set v0='ZSZJCRHSDTASOKP' where id=3; -update noar ti set v0='ZSZJCRHSDTASOKP' where id=3; -update noar tt set b0='PFEGVSPDPNL0RB64PWHLBP5W3' where id=3; -update noar ti set b0='PFEGVSPDPNL0RB64PWHLBP5W3' where id=3; -update noar tt set v0='DJAYWIET5A2' where id=3; -update noar ti set v0='DJAYWIET5A2' where id=3; -update noar tt set b1='XWSG1JZ82J4JVD0' where id=3; -update noar ti set b1='XWSG1JZ82J4JVD0' where id=3; -update noar tt set v0='W9GL4WA4I12BVYFHNV19CA0CZA' where id=3; -update noar ti set v0='W9GL4WA4I12BVYFHNV19CA0CZA' where id=3; -update noar tt set b2='E9O5CCAAZJXOVN4XJAVV' where id=3; -update noar ti set b2='E9O5CCAAZJXOVN4XJAVV' where id=3; -update noar tt set v0='T0FCMLHKT' where id=4; -update noar ti set v0='T0FCMLHKT' where id=4; -update noar tt set b0='5A' where id=4; -update noar ti set b0='5A' where id=4; -update noar tt set v0='G05M' where id=4; -update noar ti set v0='G05M' where id=4; -update noar tt set b1='BH4TOSLM0LA8B2WVF1C0WJGGUJ8DN' where id=4; -update noar ti set b1='BH4TOSLM0LA8B2WVF1C0WJGGUJ8DN' where id=4; -update noar tt set v0='1878E2FQ' where id=4; -update noar ti set v0='1878E2FQ' where id=4; -update noar tt set b2='KI' where id=4; -update noar ti set b2='KI' where id=4; -update noar tt set v0='H39LGTIKPR93ZSUR50YC0RTZE' where id=5; -update noar ti set v0='H39LGTIKPR93ZSUR50YC0RTZE' where id=5; -update noar tt set b0='IL0XN03E38173DN20XVVJFNYST' where id=5; -update noar ti set b0='IL0XN03E38173DN20XVVJFNYST' where id=5; -update noar tt set v0='WCOQXVSP6' where id=5; -update noar ti set v0='WCOQXVSP6' where id=5; -update noar tt set b1='FWTQY8I13RAC88OE' where id=5; -update noar ti set b1='FWTQY8I13RAC88OE' where id=5; -update noar tt set v0='DT5JQ7JD7DR309L7MAF4U7KQ4R1G' where id=5; -update noar ti set v0='DT5JQ7JD7DR309L7MAF4U7KQ4R1G' where id=5; -update noar tt set b2='38QYWYEEHY9J8TD8OJNYPIXMP8K2' where id=5; -update noar ti set b2='38QYWYEEHY9J8TD8OJNYPIXMP8K2' where id=5; -update noar tt set v0='V5SZ071DCH2SBX0JWCAAU0G' where id=6; -update noar ti set v0='V5SZ071DCH2SBX0JWCAAU0G' where id=6; -update noar tt set b0='3RP2KUVAJU' where id=6; -update noar ti set b0='3RP2KUVAJU' where id=6; -update noar tt set v0='TF5ULM69909MG1F4XWE' where id=6; -update noar ti set v0='TF5ULM69909MG1F4XWE' where id=6; -update noar tt set b1='TOC1UUVPJ5ZMQMN7XZQG0POSHXIAW90T' where id=6; -update noar ti set b1='TOC1UUVPJ5ZMQMN7XZQG0POSHXIAW90T' where id=6; -update noar tt set v0='P' where id=6; -update noar ti set v0='P' where id=6; -update noar tt set b2='Z9C25Z' where id=6; -update noar ti set b2='Z9C25Z' where id=6; -update noar tt set v0='CD275S' where id=7; -update noar ti set v0='CD275S' where id=7; -update noar tt set b0='QY1BSI0UIHP9XNDBM7RKR1PM' where id=7; -update noar ti set b0='QY1BSI0UIHP9XNDBM7RKR1PM' where id=7; -update noar tt set v0='J2S9I1CSEFIVF8K' where id=7; -update noar ti set v0='J2S9I1CSEFIVF8K' where id=7; -update noar tt set b1='6OGLSTEL3E7IQ10QIW' where id=7; -update noar ti set b1='6OGLSTEL3E7IQ10QIW' where id=7; -update noar tt set v0='HWMBEYSC91FWM14NAXYRSDQB' where id=7; -update noar ti set v0='HWMBEYSC91FWM14NAXYRSDQB' where id=7; -update noar tt set b2='12A8WOF6J8RSY7H111BFD229TE7SGYC' where id=7; -update noar ti set b2='12A8WOF6J8RSY7H111BFD229TE7SGYC' where id=7; -update noar tt set v0='9Z4IZW04452H1' where id=8; -update noar ti set v0='9Z4IZW04452H1' where id=8; -update noar tt set b0='RTXOE8C6PJ4IV5NIF2NMF5B2Y' where id=8; -update noar ti set b0='RTXOE8C6PJ4IV5NIF2NMF5B2Y' where id=8; -update noar tt set v0='T86CCN' where id=8; -update noar ti set v0='T86CCN' where id=8; -update noar tt set b1='7OJFX9JQ8ZG1B6VW3G8LFBOEGKNLB' where id=8; -update noar ti set b1='7OJFX9JQ8ZG1B6VW3G8LFBOEGKNLB' where id=8; -update noar tt set v0='5' where id=8; -update noar ti set v0='5' where id=8; -update noar tt set b2='7O5RD2JDBFS8BDKN8TJ14' where id=8; -update noar ti set b2='7O5RD2JDBFS8BDKN8TJ14' where id=8; -update noar tt set v0='B52CAJI96TQK5B975' where id=9; -update noar ti set v0='B52CAJI96TQK5B975' where id=9; -update noar tt set b0='KMPC5DOVZIS0Y' where id=9; -update noar ti set b0='KMPC5DOVZIS0Y' where id=9; -update noar tt set v0='4W4GKTWP3E' where id=9; -update noar ti set v0='4W4GKTWP3E' where id=9; -update noar tt set b1='UBVHJA' where id=9; -update noar ti set b1='UBVHJA' where id=9; -update noar tt set v0='5HCU1KJB2F9A147GBIZSUML45MKS3LVV' where id=9; -update noar ti set v0='5HCU1KJB2F9A147GBIZSUML45MKS3LVV' where id=9; -update noar tt set b2='YD47DNMEJREBVGOXPIYG' where id=9; -update noar ti set b2='YD47DNMEJREBVGOXPIYG' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - v0 varchar(256) not null, - b0 mediumblob not null, - b1 tinyblob not null, - b2 longblob not null -) engine=tokudb; -insert into tt values (1,'','','',''); -insert into tt values (2,'','','',''); -insert into tt values (3,'','','',''); -insert into tt values (4,'','','',''); -insert into tt values (5,'','','',''); -insert into tt values (6,'','','',''); -insert into tt values (7,'','','',''); -insert into tt values (8,'','','',''); -insert into tt values (9,'','','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='3YGSCOZWC4194UN5VLNJNO0PTZ' where id=1; -update noar ti set v0='3YGSCOZWC4194UN5VLNJNO0PTZ' where id=1; -update noar tt set b0='RLLVE0MLL4' where id=1; -update noar ti set b0='RLLVE0MLL4' where id=1; -update noar tt set v0='WM6WT7538RRAD9JENUCZS69V6B' where id=1; -update noar ti set v0='WM6WT7538RRAD9JENUCZS69V6B' where id=1; -update noar tt set b1='QLSPSUAHG0ITB1M0JF00FKF' where id=1; -update noar ti set b1='QLSPSUAHG0ITB1M0JF00FKF' where id=1; -update noar tt set v0='4J8RD4ZUXU28PBIFTYTJ876013' where id=1; -update noar ti set v0='4J8RD4ZUXU28PBIFTYTJ876013' where id=1; -update noar tt set b2='Y7DMSACCPS' where id=1; -update noar ti set b2='Y7DMSACCPS' where id=1; -update noar tt set v0='EMTHMD92N6FXIDBT82Q78Y' where id=2; -update noar ti set v0='EMTHMD92N6FXIDBT82Q78Y' where id=2; -update noar tt set b0='4BF' where id=2; -update noar ti set b0='4BF' where id=2; -update noar tt set v0='IETIONXKU877UO4YJX64ORT9SMM6B01' where id=2; -update noar ti set v0='IETIONXKU877UO4YJX64ORT9SMM6B01' where id=2; -update noar tt set b1='Q9RCTU5OS00KYALGTX1MGY3JK' where id=2; -update noar ti set b1='Q9RCTU5OS00KYALGTX1MGY3JK' where id=2; -update noar tt set v0='46X' where id=2; -update noar ti set v0='46X' where id=2; -update noar tt set b2='6P76O29FUK' where id=2; -update noar ti set b2='6P76O29FUK' where id=2; -update noar tt set v0='KNK5LP785Z9EJFL2PYE9PGXWN' where id=3; -update noar ti set v0='KNK5LP785Z9EJFL2PYE9PGXWN' where id=3; -update noar tt set b0='CX9DX2G5ZW1AF83XWU3POKQXJLC7' where id=3; -update noar ti set b0='CX9DX2G5ZW1AF83XWU3POKQXJLC7' where id=3; -update noar tt set v0='PKO68AA992J9LZW' where id=3; -update noar ti set v0='PKO68AA992J9LZW' where id=3; -update noar tt set b1='R1OXBZRHZHUUJ8HBVSPJ' where id=3; -update noar ti set b1='R1OXBZRHZHUUJ8HBVSPJ' where id=3; -update noar tt set v0='ZFLCFTSQ2KMFXBYDRXAVBFM' where id=3; -update noar ti set v0='ZFLCFTSQ2KMFXBYDRXAVBFM' where id=3; -update noar tt set b2='B4' where id=3; -update noar ti set b2='B4' where id=3; -update noar tt set v0='C5DL21QOX' where id=4; -update noar ti set v0='C5DL21QOX' where id=4; -update noar tt set b0='L7V2LYRMO54PWBYRUMEYLW66K09PEQ' where id=4; -update noar ti set b0='L7V2LYRMO54PWBYRUMEYLW66K09PEQ' where id=4; -update noar tt set v0='AHNHK5E' where id=4; -update noar ti set v0='AHNHK5E' where id=4; -update noar tt set b1='QLL2GEQ98LHF11FMET6Q4R4YCGA' where id=4; -update noar ti set b1='QLL2GEQ98LHF11FMET6Q4R4YCGA' where id=4; -update noar tt set v0='F45F9' where id=4; -update noar ti set v0='F45F9' where id=4; -update noar tt set b2='KY2K70FKYGBEQP1H7K7LHKNV42DU74N' where id=4; -update noar ti set b2='KY2K70FKYGBEQP1H7K7LHKNV42DU74N' where id=4; -update noar tt set v0='K1MGDJ09245C3' where id=5; -update noar ti set v0='K1MGDJ09245C3' where id=5; -update noar tt set b0='RT27SVYKHM7K8QIL8EWMDHSZV' where id=5; -update noar ti set b0='RT27SVYKHM7K8QIL8EWMDHSZV' where id=5; -update noar tt set v0='A0FTUZG2RS8V66' where id=5; -update noar ti set v0='A0FTUZG2RS8V66' where id=5; -update noar tt set b1='AOUKDUT2L87LJNC40XY' where id=5; -update noar ti set b1='AOUKDUT2L87LJNC40XY' where id=5; -update noar tt set v0='4LLGLE23FSVI6PM0YW9CL7AIO2' where id=5; -update noar ti set v0='4LLGLE23FSVI6PM0YW9CL7AIO2' where id=5; -update noar tt set b2='2ID80FL1J' where id=5; -update noar ti set b2='2ID80FL1J' where id=5; -update noar tt set v0='5XCXWCPUJ5RFQ5CQ36BQGIPWLWS' where id=6; -update noar ti set v0='5XCXWCPUJ5RFQ5CQ36BQGIPWLWS' where id=6; -update noar tt set b0='IKVATZQ3DT6DGO7P3Y' where id=6; -update noar ti set b0='IKVATZQ3DT6DGO7P3Y' where id=6; -update noar tt set v0='CKAU5ELPA7E0' where id=6; -update noar ti set v0='CKAU5ELPA7E0' where id=6; -update noar tt set b1='MYJJ6SDQ0ARW03RK3J8ZXGVGF3TEKV' where id=6; -update noar ti set b1='MYJJ6SDQ0ARW03RK3J8ZXGVGF3TEKV' where id=6; -update noar tt set v0='UW2GAW98TW4PVN09SKS7I0LYX6Z' where id=6; -update noar ti set v0='UW2GAW98TW4PVN09SKS7I0LYX6Z' where id=6; -update noar tt set b2='4Z0LFG5M12C74TFQODACECPSXTA' where id=6; -update noar ti set b2='4Z0LFG5M12C74TFQODACECPSXTA' where id=6; -update noar tt set v0='A54L0IZUO00M3S6IKOVR' where id=7; -update noar ti set v0='A54L0IZUO00M3S6IKOVR' where id=7; -update noar tt set b0='77LE8LAX8E80VBZ' where id=7; -update noar ti set b0='77LE8LAX8E80VBZ' where id=7; -update noar tt set v0='ESD10HZONAA' where id=7; -update noar ti set v0='ESD10HZONAA' where id=7; -update noar tt set b1='457RXVL6' where id=7; -update noar ti set b1='457RXVL6' where id=7; -update noar tt set v0='K3GB1CMRX' where id=7; -update noar ti set v0='K3GB1CMRX' where id=7; -update noar tt set b2='G0PO81R' where id=7; -update noar ti set b2='G0PO81R' where id=7; -update noar tt set v0='K21V4YJBT3ZFXEZJ0SXS' where id=8; -update noar ti set v0='K21V4YJBT3ZFXEZJ0SXS' where id=8; -update noar tt set b0='G8GR4K' where id=8; -update noar ti set b0='G8GR4K' where id=8; -update noar tt set v0='EBCN' where id=8; -update noar ti set v0='EBCN' where id=8; -update noar tt set b1='XDDJST0I9CWK904C3IWIMMJ5FPVLK' where id=8; -update noar ti set b1='XDDJST0I9CWK904C3IWIMMJ5FPVLK' where id=8; -update noar tt set v0='1FT' where id=8; -update noar ti set v0='1FT' where id=8; -update noar tt set b2='MR' where id=8; -update noar ti set b2='MR' where id=8; -update noar tt set v0='P' where id=9; -update noar ti set v0='P' where id=9; -update noar tt set b0='XAQHI1JW82OAH6PDMD749H8' where id=9; -update noar ti set b0='XAQHI1JW82OAH6PDMD749H8' where id=9; -update noar tt set v0='UBJBHR0XXVYZ1JIP8SL96255U7' where id=9; -update noar ti set v0='UBJBHR0XXVYZ1JIP8SL96255U7' where id=9; -update noar tt set b1='6VVB2HJPGGPQDLXUF0GGZS8P' where id=9; -update noar ti set b1='6VVB2HJPGGPQDLXUF0GGZS8P' where id=9; -update noar tt set v0='OTB90UD93G6MFYD4J17ZPHXGVG1' where id=9; -update noar ti set v0='OTB90UD93G6MFYD4J17ZPHXGVG1' where id=9; -update noar tt set b2='ABLHPE8D6321TJA2K7X78G3YV' where id=9; -update noar ti set b2='ABLHPE8D6321TJA2K7X78G3YV' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - v0 varchar(32) null, - b0 mediumblob null, - b1 blob null, - b2 tinyblob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='Q' where id=1; -update noar ti set v0='Q' where id=1; -update noar tt set b0='QF6QYXNCNRA' where id=1; -update noar ti set b0='QF6QYXNCNRA' where id=1; -update noar tt set v0='GPHGIOU' where id=1; -update noar ti set v0='GPHGIOU' where id=1; -update noar tt set b1='EWT1PVYCPN0O73MOXJFW3NTD' where id=1; -update noar ti set b1='EWT1PVYCPN0O73MOXJFW3NTD' where id=1; -update noar tt set v0='BYFU44IZ7Y' where id=1; -update noar ti set v0='BYFU44IZ7Y' where id=1; -update noar tt set b2='AVTD6LLI' where id=1; -update noar ti set b2='AVTD6LLI' where id=1; -update noar tt set v0='ECUPN3WQRSN1MRRYIESR51VVKUMT' where id=2; -update noar ti set v0='ECUPN3WQRSN1MRRYIESR51VVKUMT' where id=2; -update noar tt set b0='8NRUDSOK3N' where id=2; -update noar ti set b0='8NRUDSOK3N' where id=2; -update noar tt set v0='7N5ROF' where id=2; -update noar ti set v0='7N5ROF' where id=2; -update noar tt set b1='IJSJZBU6SBCI' where id=2; -update noar ti set b1='IJSJZBU6SBCI' where id=2; -update noar tt set v0='XGSRV' where id=2; -update noar ti set v0='XGSRV' where id=2; -update noar tt set b2='TX7WNEUYS0PP8U6HZKWQZR400YUHRJYK' where id=2; -update noar ti set b2='TX7WNEUYS0PP8U6HZKWQZR400YUHRJYK' where id=2; -update noar tt set v0='SW' where id=3; -update noar ti set v0='SW' where id=3; -update noar tt set b0='D0ERQQE7UWE3EQ' where id=3; -update noar ti set b0='D0ERQQE7UWE3EQ' where id=3; -update noar tt set v0='BTK1SCTP609T0N6LZX7PMB6CZ6XACJL' where id=3; -update noar ti set v0='BTK1SCTP609T0N6LZX7PMB6CZ6XACJL' where id=3; -update noar tt set b1='U55Z4C2V' where id=3; -update noar ti set b1='U55Z4C2V' where id=3; -update noar tt set v0='7OLHVM8M8LQGCX34X287S' where id=3; -update noar ti set v0='7OLHVM8M8LQGCX34X287S' where id=3; -update noar tt set b2='2KHEWFRZR343CN54GO89OV8VIDHDPW' where id=3; -update noar ti set b2='2KHEWFRZR343CN54GO89OV8VIDHDPW' where id=3; -update noar tt set v0='MCTD80HA6YBEZBP5KW0FU4' where id=4; -update noar ti set v0='MCTD80HA6YBEZBP5KW0FU4' where id=4; -update noar tt set b0='8PXX4HM' where id=4; -update noar ti set b0='8PXX4HM' where id=4; -update noar tt set v0='7EDT6RR3J8' where id=4; -update noar ti set v0='7EDT6RR3J8' where id=4; -update noar tt set b1='ABYHAUSDNK' where id=4; -update noar ti set b1='ABYHAUSDNK' where id=4; -update noar tt set v0='YFV8I8' where id=4; -update noar ti set v0='YFV8I8' where id=4; -update noar tt set b2='N6NDGXA3URTL355' where id=4; -update noar ti set b2='N6NDGXA3URTL355' where id=4; -update noar tt set v0='ZF' where id=5; -update noar ti set v0='ZF' where id=5; -update noar tt set b0='3WS6WJCL24' where id=5; -update noar ti set b0='3WS6WJCL24' where id=5; -update noar tt set v0='92T7NPCBODHJT750R9C7KBZZQY79' where id=5; -update noar ti set v0='92T7NPCBODHJT750R9C7KBZZQY79' where id=5; -update noar tt set b1='VW2ALM9G6N1M9SHJV6AYJ1SEFVHL3' where id=5; -update noar ti set b1='VW2ALM9G6N1M9SHJV6AYJ1SEFVHL3' where id=5; -update noar tt set v0='V97FM86HPSNVTC6U7FFA3LWPHTC61LS4' where id=5; -update noar ti set v0='V97FM86HPSNVTC6U7FFA3LWPHTC61LS4' where id=5; -update noar tt set b2='JDDZMKV89XRKFJID0L4F41' where id=5; -update noar ti set b2='JDDZMKV89XRKFJID0L4F41' where id=5; -update noar tt set v0='OEE8T' where id=6; -update noar ti set v0='OEE8T' where id=6; -update noar tt set b0='EX7' where id=6; -update noar ti set b0='EX7' where id=6; -update noar tt set v0='7GMGBMBI' where id=6; -update noar ti set v0='7GMGBMBI' where id=6; -update noar tt set b1='8UAD34JETQCE' where id=6; -update noar ti set b1='8UAD34JETQCE' where id=6; -update noar tt set v0='CGZ7AQYM5GACY5O9OM6H5JS' where id=6; -update noar ti set v0='CGZ7AQYM5GACY5O9OM6H5JS' where id=6; -update noar tt set b2='HCJU096DGIYZYB3Z9KEJ0O64YC' where id=6; -update noar ti set b2='HCJU096DGIYZYB3Z9KEJ0O64YC' where id=6; -update noar tt set v0='RP' where id=7; -update noar ti set v0='RP' where id=7; -update noar tt set b0='GKGHPBWZE' where id=7; -update noar ti set b0='GKGHPBWZE' where id=7; -update noar tt set v0='9FMWXHDJ00YF5923W' where id=7; -update noar ti set v0='9FMWXHDJ00YF5923W' where id=7; -update noar tt set b1='QD4' where id=7; -update noar ti set b1='QD4' where id=7; -update noar tt set v0='DIPTXOWFRRNBELFY' where id=7; -update noar ti set v0='DIPTXOWFRRNBELFY' where id=7; -update noar tt set b2='BPRWG3CLLIU' where id=7; -update noar ti set b2='BPRWG3CLLIU' where id=7; -update noar tt set v0='UYQ' where id=8; -update noar ti set v0='UYQ' where id=8; -update noar tt set b0='M4GQ5CDULHQFMAQ0' where id=8; -update noar ti set b0='M4GQ5CDULHQFMAQ0' where id=8; -update noar tt set v0='NMOZTXTI4TKY' where id=8; -update noar ti set v0='NMOZTXTI4TKY' where id=8; -update noar tt set b1='7' where id=8; -update noar ti set b1='7' where id=8; -update noar tt set v0='MBB' where id=8; -update noar ti set v0='MBB' where id=8; -update noar tt set b2='ZNZP4Y23FNFN5V8M704IYBA9Q0DHTMZK' where id=8; -update noar ti set b2='ZNZP4Y23FNFN5V8M704IYBA9Q0DHTMZK' where id=8; -update noar tt set v0='0DFXPNYAHJ0M5G2GRZVEMBEQ3' where id=9; -update noar ti set v0='0DFXPNYAHJ0M5G2GRZVEMBEQ3' where id=9; -update noar tt set b0='T1E9V1D4HTYFOSWCTDYSEA541EU4D' where id=9; -update noar ti set b0='T1E9V1D4HTYFOSWCTDYSEA541EU4D' where id=9; -update noar tt set v0='EMUT16' where id=9; -update noar ti set v0='EMUT16' where id=9; -update noar tt set b1='GQNKZ8M' where id=9; -update noar ti set b1='GQNKZ8M' where id=9; -update noar tt set v0='O40BP' where id=9; -update noar ti set v0='O40BP' where id=9; -update noar tt set b2='SINGGHTR9MS5J' where id=9; -update noar ti set b2='SINGGHTR9MS5J' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - v0 varchar(256) null, - b0 mediumblob null, - b1 blob null, - b2 tinyblob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='C6I524804P4S2BCUPBGK24QJZJVEID' where id=1; -update noar ti set v0='C6I524804P4S2BCUPBGK24QJZJVEID' where id=1; -update noar tt set b0='GODPXG0KVZUBUML74GOAQQJAT' where id=1; -update noar ti set b0='GODPXG0KVZUBUML74GOAQQJAT' where id=1; -update noar tt set v0='IL36WANFZC' where id=1; -update noar ti set v0='IL36WANFZC' where id=1; -update noar tt set b1='718SKGB08T8F2JNH' where id=1; -update noar ti set b1='718SKGB08T8F2JNH' where id=1; -update noar tt set v0='6QQS20G7XG' where id=1; -update noar ti set v0='6QQS20G7XG' where id=1; -update noar tt set b2='936DSFV' where id=1; -update noar ti set b2='936DSFV' where id=1; -update noar tt set v0='HCP6V4IGG1S9N1153' where id=2; -update noar ti set v0='HCP6V4IGG1S9N1153' where id=2; -update noar tt set b0='76XSNU7QUCWWXH5YJY5ID328' where id=2; -update noar ti set b0='76XSNU7QUCWWXH5YJY5ID328' where id=2; -update noar tt set v0='3BZZT5KBVVD0T6GFT5ZDXP1MB' where id=2; -update noar ti set v0='3BZZT5KBVVD0T6GFT5ZDXP1MB' where id=2; -update noar tt set b1='GO6S03BI7B' where id=2; -update noar ti set b1='GO6S03BI7B' where id=2; -update noar tt set v0='3Y1L5KZFWL8' where id=2; -update noar ti set v0='3Y1L5KZFWL8' where id=2; -update noar tt set b2='0SAVNFXS' where id=2; -update noar ti set b2='0SAVNFXS' where id=2; -update noar tt set v0='ORJ7IA0SITJDG' where id=3; -update noar ti set v0='ORJ7IA0SITJDG' where id=3; -update noar tt set b0='I8VTVVG0SJ9NJ' where id=3; -update noar ti set b0='I8VTVVG0SJ9NJ' where id=3; -update noar tt set v0='W1DXHCGPUQ4WAP15WE2NTT' where id=3; -update noar ti set v0='W1DXHCGPUQ4WAP15WE2NTT' where id=3; -update noar tt set b1='KIQ25ORK9XF1HXLR8NYL38V0PXM1' where id=3; -update noar ti set b1='KIQ25ORK9XF1HXLR8NYL38V0PXM1' where id=3; -update noar tt set v0='8V2692RPN' where id=3; -update noar ti set v0='8V2692RPN' where id=3; -update noar tt set b2='MRUK27B216ND2VY7LU' where id=3; -update noar ti set b2='MRUK27B216ND2VY7LU' where id=3; -update noar tt set v0='9JDGBG1FQM2ZC' where id=4; -update noar ti set v0='9JDGBG1FQM2ZC' where id=4; -update noar tt set b0='JF91RAHW8EYTVMFFVVOZN5C8OXY' where id=4; -update noar ti set b0='JF91RAHW8EYTVMFFVVOZN5C8OXY' where id=4; -update noar tt set v0='7VT1Q0S7K9IXB67DI4V38G' where id=4; -update noar ti set v0='7VT1Q0S7K9IXB67DI4V38G' where id=4; -update noar tt set b1='VULZMFMGV790' where id=4; -update noar ti set b1='VULZMFMGV790' where id=4; -update noar tt set v0='B0JJ6UUV8FZZO9' where id=4; -update noar ti set v0='B0JJ6UUV8FZZO9' where id=4; -update noar tt set b2='ZSRXYK66R0TPVJV9A' where id=4; -update noar ti set b2='ZSRXYK66R0TPVJV9A' where id=4; -update noar tt set v0='0MD30BSTL64ZZ3IZ7WPRUUU8H8LKLVS' where id=5; -update noar ti set v0='0MD30BSTL64ZZ3IZ7WPRUUU8H8LKLVS' where id=5; -update noar tt set b0='C32JNFWQZ' where id=5; -update noar ti set b0='C32JNFWQZ' where id=5; -update noar tt set v0='5W8S' where id=5; -update noar ti set v0='5W8S' where id=5; -update noar tt set b1='ZJTKDSFHNYGPRQNO2LJ3' where id=5; -update noar ti set b1='ZJTKDSFHNYGPRQNO2LJ3' where id=5; -update noar tt set v0='5D8LBSCUJB9PL9VC9X95WWONY12' where id=5; -update noar ti set v0='5D8LBSCUJB9PL9VC9X95WWONY12' where id=5; -update noar tt set b2='7P2G' where id=5; -update noar ti set b2='7P2G' where id=5; -update noar tt set v0='0CBM31M1W' where id=6; -update noar ti set v0='0CBM31M1W' where id=6; -update noar tt set b0='RT629VIM3YR5H0FPCGLYBO' where id=6; -update noar ti set b0='RT629VIM3YR5H0FPCGLYBO' where id=6; -update noar tt set v0='1VFUOEF2GR4D9H1UYT82M1' where id=6; -update noar ti set v0='1VFUOEF2GR4D9H1UYT82M1' where id=6; -update noar tt set b1='9J73GRC1' where id=6; -update noar ti set b1='9J73GRC1' where id=6; -update noar tt set v0='HQ0M0PFDVJYZC' where id=6; -update noar ti set v0='HQ0M0PFDVJYZC' where id=6; -update noar tt set b2='QPOOQJII' where id=6; -update noar ti set b2='QPOOQJII' where id=6; -update noar tt set v0='K' where id=7; -update noar ti set v0='K' where id=7; -update noar tt set b0='OP' where id=7; -update noar ti set b0='OP' where id=7; -update noar tt set v0='AVZ8V38TC3XNIMJ4P5DXYT5T' where id=7; -update noar ti set v0='AVZ8V38TC3XNIMJ4P5DXYT5T' where id=7; -update noar tt set b1='DSIY7JZH8Y7EA2QDDDKJP6N' where id=7; -update noar ti set b1='DSIY7JZH8Y7EA2QDDDKJP6N' where id=7; -update noar tt set v0='9' where id=7; -update noar ti set v0='9' where id=7; -update noar tt set b2='ND7XNU83TBT57CG1B5WPRY2WR' where id=7; -update noar ti set b2='ND7XNU83TBT57CG1B5WPRY2WR' where id=7; -update noar tt set v0='A0XEKZJWIEXVFJB' where id=8; -update noar ti set v0='A0XEKZJWIEXVFJB' where id=8; -update noar tt set b0='N6F8ZMJYQV528UXBA2AI7N' where id=8; -update noar ti set b0='N6F8ZMJYQV528UXBA2AI7N' where id=8; -update noar tt set v0='OTT' where id=8; -update noar ti set v0='OTT' where id=8; -update noar tt set b1='6T1193XK5VDPV1JGCJHPRLV' where id=8; -update noar ti set b1='6T1193XK5VDPV1JGCJHPRLV' where id=8; -update noar tt set v0='MFT7XV8NHPFDU2KPXTH6JO0791WC' where id=8; -update noar ti set v0='MFT7XV8NHPFDU2KPXTH6JO0791WC' where id=8; -update noar tt set b2='XU8A8IT1PW458V3FTWJV' where id=8; -update noar ti set b2='XU8A8IT1PW458V3FTWJV' where id=8; -update noar tt set v0='VMZ7RG692N4' where id=9; -update noar ti set v0='VMZ7RG692N4' where id=9; -update noar tt set b0='Z2HZYGM4J2BBTP0G' where id=9; -update noar ti set b0='Z2HZYGM4J2BBTP0G' where id=9; -update noar tt set v0='09TJH6J7MWI4GTYBLL629K1M' where id=9; -update noar ti set v0='09TJH6J7MWI4GTYBLL629K1M' where id=9; -update noar tt set b1='2QZ6VCT01CICI4' where id=9; -update noar ti set b1='2QZ6VCT01CICI4' where id=9; -update noar tt set v0='CTRZIFP' where id=9; -update noar ti set v0='CTRZIFP' where id=9; -update noar tt set b2='6S4N60D4I92PEIVXTGZ2QB' where id=9; -update noar ti set b2='6S4N60D4I92PEIVXTGZ2QB' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - v0 varchar(32) not null, - b0 mediumblob not null, - b1 blob not null, - b2 tinyblob not null -) engine=tokudb; -insert into tt values (1,'','','',''); -insert into tt values (2,'','','',''); -insert into tt values (3,'','','',''); -insert into tt values (4,'','','',''); -insert into tt values (5,'','','',''); -insert into tt values (6,'','','',''); -insert into tt values (7,'','','',''); -insert into tt values (8,'','','',''); -insert into tt values (9,'','','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='NE5EMU54MBBMGRYZ7STDLKSTWC' where id=1; -update noar ti set v0='NE5EMU54MBBMGRYZ7STDLKSTWC' where id=1; -update noar tt set b0='P8FC1ARO2HP6Q26Y' where id=1; -update noar ti set b0='P8FC1ARO2HP6Q26Y' where id=1; -update noar tt set v0='FU9SWKGIK8ZCY7NY9SAPH' where id=1; -update noar ti set v0='FU9SWKGIK8ZCY7NY9SAPH' where id=1; -update noar tt set b1='LOU4OKP1BL' where id=1; -update noar ti set b1='LOU4OKP1BL' where id=1; -update noar tt set v0='8VFW77O' where id=1; -update noar ti set v0='8VFW77O' where id=1; -update noar tt set b2='SWHTVHNT0YWRXH8EW' where id=1; -update noar ti set b2='SWHTVHNT0YWRXH8EW' where id=1; -update noar tt set v0='IX4UMYR2' where id=2; -update noar ti set v0='IX4UMYR2' where id=2; -update noar tt set b0='TV' where id=2; -update noar ti set b0='TV' where id=2; -update noar tt set v0='SHP1MZLNLQ9Z6ET01Z4VXPHB7' where id=2; -update noar ti set v0='SHP1MZLNLQ9Z6ET01Z4VXPHB7' where id=2; -update noar tt set b1='MC' where id=2; -update noar ti set b1='MC' where id=2; -update noar tt set v0='AUO97HV5ZV3SNY9WX13RWY' where id=2; -update noar ti set v0='AUO97HV5ZV3SNY9WX13RWY' where id=2; -update noar tt set b2='D0VNKR9TZ39UZF8252QOH' where id=2; -update noar ti set b2='D0VNKR9TZ39UZF8252QOH' where id=2; -update noar tt set v0='QSECL3T36HGUFOCC4ZYOW' where id=3; -update noar ti set v0='QSECL3T36HGUFOCC4ZYOW' where id=3; -update noar tt set b0='H' where id=3; -update noar ti set b0='H' where id=3; -update noar tt set v0='PB403RABLD37I0W2QP' where id=3; -update noar ti set v0='PB403RABLD37I0W2QP' where id=3; -update noar tt set b1='UX' where id=3; -update noar ti set b1='UX' where id=3; -update noar tt set v0='A5' where id=3; -update noar ti set v0='A5' where id=3; -update noar tt set b2='HRM9QXKVPCGYVT303FK66' where id=3; -update noar ti set b2='HRM9QXKVPCGYVT303FK66' where id=3; -update noar tt set v0='W' where id=4; -update noar ti set v0='W' where id=4; -update noar tt set b0='BSKVQXP54HLRTCR9' where id=4; -update noar ti set b0='BSKVQXP54HLRTCR9' where id=4; -update noar tt set v0='DX7JYDJCWG5SZ931U9RCM' where id=4; -update noar ti set v0='DX7JYDJCWG5SZ931U9RCM' where id=4; -update noar tt set b1='HI4A9255HXASTZSC2YGAZ5JY4' where id=4; -update noar ti set b1='HI4A9255HXASTZSC2YGAZ5JY4' where id=4; -update noar tt set v0='9DTSKYN1AMJZOQKVHUWFAR0JT' where id=4; -update noar ti set v0='9DTSKYN1AMJZOQKVHUWFAR0JT' where id=4; -update noar tt set b2='R7BNJ3EMZY9ZGMVH' where id=4; -update noar ti set b2='R7BNJ3EMZY9ZGMVH' where id=4; -update noar tt set v0='SFIHR' where id=5; -update noar ti set v0='SFIHR' where id=5; -update noar tt set b0='14ED1DCK4CRD4SV5NJBZQXM70MR5H' where id=5; -update noar ti set b0='14ED1DCK4CRD4SV5NJBZQXM70MR5H' where id=5; -update noar tt set v0='SSRIA' where id=5; -update noar ti set v0='SSRIA' where id=5; -update noar tt set b1='BSUB1WOW' where id=5; -update noar ti set b1='BSUB1WOW' where id=5; -update noar tt set v0='QLUNYKC' where id=5; -update noar ti set v0='QLUNYKC' where id=5; -update noar tt set b2='PDSOWNO6P4CDGKB3TGK1RHW' where id=5; -update noar ti set b2='PDSOWNO6P4CDGKB3TGK1RHW' where id=5; -update noar tt set v0='ZWA0TM82UMEPDINGVBBQ6HPP' where id=6; -update noar ti set v0='ZWA0TM82UMEPDINGVBBQ6HPP' where id=6; -update noar tt set b0='CEN56OIJO40HJBAJPD2DAK67MOGAUN' where id=6; -update noar ti set b0='CEN56OIJO40HJBAJPD2DAK67MOGAUN' where id=6; -update noar tt set v0='1' where id=6; -update noar ti set v0='1' where id=6; -update noar tt set b1='QLFY2XHV9HGHPJ' where id=6; -update noar ti set b1='QLFY2XHV9HGHPJ' where id=6; -update noar tt set v0='KX5NV' where id=6; -update noar ti set v0='KX5NV' where id=6; -update noar tt set b2='U1IAW9W' where id=6; -update noar ti set b2='U1IAW9W' where id=6; -update noar tt set v0='10JDK' where id=7; -update noar ti set v0='10JDK' where id=7; -update noar tt set b0='C10W76E7R' where id=7; -update noar ti set b0='C10W76E7R' where id=7; -update noar tt set v0='E' where id=7; -update noar ti set v0='E' where id=7; -update noar tt set b1='PYW304GJF0KFL4J8WS' where id=7; -update noar ti set b1='PYW304GJF0KFL4J8WS' where id=7; -update noar tt set v0='E29EOK6RLDPGNIWTUWC8P' where id=7; -update noar ti set v0='E29EOK6RLDPGNIWTUWC8P' where id=7; -update noar tt set b2='ZJ28NDE9YO8T5MZNUE43AY5CBQIYW' where id=7; -update noar ti set b2='ZJ28NDE9YO8T5MZNUE43AY5CBQIYW' where id=7; -update noar tt set v0='KI2D7K0W6C3NW6NI6RACYL84Q' where id=8; -update noar ti set v0='KI2D7K0W6C3NW6NI6RACYL84Q' where id=8; -update noar tt set b0='2FI' where id=8; -update noar ti set b0='2FI' where id=8; -update noar tt set v0='VG64DCDIN21X77EH4N7ELVD' where id=8; -update noar ti set v0='VG64DCDIN21X77EH4N7ELVD' where id=8; -update noar tt set b1='71HR9E8HHQUA0O1VVLR1' where id=8; -update noar ti set b1='71HR9E8HHQUA0O1VVLR1' where id=8; -update noar tt set v0='F2YS0AMVIO0P54' where id=8; -update noar ti set v0='F2YS0AMVIO0P54' where id=8; -update noar tt set b2='XTJK17K9DS7O2WI66AT1SEK' where id=8; -update noar ti set b2='XTJK17K9DS7O2WI66AT1SEK' where id=8; -update noar tt set v0='L0QON805KNY573W0LKDXH1DPUM86G4E' where id=9; -update noar ti set v0='L0QON805KNY573W0LKDXH1DPUM86G4E' where id=9; -update noar tt set b0='3S1WCM' where id=9; -update noar ti set b0='3S1WCM' where id=9; -update noar tt set v0='2MR5M8CVXKXG97TD2FRWCCMM19KL' where id=9; -update noar ti set v0='2MR5M8CVXKXG97TD2FRWCCMM19KL' where id=9; -update noar tt set b1='L' where id=9; -update noar ti set b1='L' where id=9; -update noar tt set v0='950Z8NSDX3ETQVF23G' where id=9; -update noar ti set v0='950Z8NSDX3ETQVF23G' where id=9; -update noar tt set b2='2FLI4IJKLQ86T43F8VWYA9CMB0TX' where id=9; -update noar ti set b2='2FLI4IJKLQ86T43F8VWYA9CMB0TX' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - v0 varchar(256) not null, - b0 mediumblob not null, - b1 blob not null, - b2 tinyblob not null -) engine=tokudb; -insert into tt values (1,'','','',''); -insert into tt values (2,'','','',''); -insert into tt values (3,'','','',''); -insert into tt values (4,'','','',''); -insert into tt values (5,'','','',''); -insert into tt values (6,'','','',''); -insert into tt values (7,'','','',''); -insert into tt values (8,'','','',''); -insert into tt values (9,'','','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='V4THDEBWR4QM3J' where id=1; -update noar ti set v0='V4THDEBWR4QM3J' where id=1; -update noar tt set b0='EKCTXW5S4ZCLAWTEF' where id=1; -update noar ti set b0='EKCTXW5S4ZCLAWTEF' where id=1; -update noar tt set v0='CZIH6J' where id=1; -update noar ti set v0='CZIH6J' where id=1; -update noar tt set b1='Y8EIS3O7H' where id=1; -update noar ti set b1='Y8EIS3O7H' where id=1; -update noar tt set v0='Q4NV0F7WIXLZXTIW0R6ZV223U7' where id=1; -update noar ti set v0='Q4NV0F7WIXLZXTIW0R6ZV223U7' where id=1; -update noar tt set b2='HUPX6W6WP1R2BWTYA0RPO1HCQ52FG' where id=1; -update noar ti set b2='HUPX6W6WP1R2BWTYA0RPO1HCQ52FG' where id=1; -update noar tt set v0='DWP2W7KAIJJ79XC2IQ1QX1B' where id=2; -update noar ti set v0='DWP2W7KAIJJ79XC2IQ1QX1B' where id=2; -update noar tt set b0='76SM4BQURN4SH' where id=2; -update noar ti set b0='76SM4BQURN4SH' where id=2; -update noar tt set v0='ND2NWNT' where id=2; -update noar ti set v0='ND2NWNT' where id=2; -update noar tt set b1='O7XW033WZ2TF0M' where id=2; -update noar ti set b1='O7XW033WZ2TF0M' where id=2; -update noar tt set v0='01KXQRFL75M24G4G' where id=2; -update noar ti set v0='01KXQRFL75M24G4G' where id=2; -update noar tt set b2='KK' where id=2; -update noar ti set b2='KK' where id=2; -update noar tt set v0='L4PWHJNVAMOPEN' where id=3; -update noar ti set v0='L4PWHJNVAMOPEN' where id=3; -update noar tt set b0='BVSLVLV0ZYWBB7WZNCD6H' where id=3; -update noar ti set b0='BVSLVLV0ZYWBB7WZNCD6H' where id=3; -update noar tt set v0='DFK0AJYRV6U29FOVPE034PO' where id=3; -update noar ti set v0='DFK0AJYRV6U29FOVPE034PO' where id=3; -update noar tt set b1='MYX' where id=3; -update noar ti set b1='MYX' where id=3; -update noar tt set v0='17M' where id=3; -update noar ti set v0='17M' where id=3; -update noar tt set b2='VBPTK1MKYPKEZTECP3PVMC87QYZKG1G' where id=3; -update noar ti set b2='VBPTK1MKYPKEZTECP3PVMC87QYZKG1G' where id=3; -update noar tt set v0='QTUAPDYYBDK7GAD6XT6OOHQ4BAUF5TV' where id=4; -update noar ti set v0='QTUAPDYYBDK7GAD6XT6OOHQ4BAUF5TV' where id=4; -update noar tt set b0='BWOWBBQWFP3W3HWBSTMSK1ZJ0W' where id=4; -update noar ti set b0='BWOWBBQWFP3W3HWBSTMSK1ZJ0W' where id=4; -update noar tt set v0='4JGD5VISZ3CEM36' where id=4; -update noar ti set v0='4JGD5VISZ3CEM36' where id=4; -update noar tt set b1='FYQ4XFFR761' where id=4; -update noar ti set b1='FYQ4XFFR761' where id=4; -update noar tt set v0='BRFJ1Z2OKJUIDBMHVA6M5' where id=4; -update noar ti set v0='BRFJ1Z2OKJUIDBMHVA6M5' where id=4; -update noar tt set b2='HY0D7' where id=4; -update noar ti set b2='HY0D7' where id=4; -update noar tt set v0='PRCOAKN5NJRJWKNE8QUZ1VCG' where id=5; -update noar ti set v0='PRCOAKN5NJRJWKNE8QUZ1VCG' where id=5; -update noar tt set b0='EMH1N90RK40R3982HVEFWI9GT7MCHUW' where id=5; -update noar ti set b0='EMH1N90RK40R3982HVEFWI9GT7MCHUW' where id=5; -update noar tt set v0='K5DA1UZM4VQ5' where id=5; -update noar ti set v0='K5DA1UZM4VQ5' where id=5; -update noar tt set b1='G43TF4GQYISB66734WDE' where id=5; -update noar ti set b1='G43TF4GQYISB66734WDE' where id=5; -update noar tt set v0='KRZ3LXH4' where id=5; -update noar ti set v0='KRZ3LXH4' where id=5; -update noar tt set b2='RW1P0U660I7YW5C38DP0T' where id=5; -update noar ti set b2='RW1P0U660I7YW5C38DP0T' where id=5; -update noar tt set v0='FB1S' where id=6; -update noar ti set v0='FB1S' where id=6; -update noar tt set b0='QM07H2G4Y4Y35' where id=6; -update noar ti set b0='QM07H2G4Y4Y35' where id=6; -update noar tt set v0='EK0IKX5GQWLWSM95QK5AAYADG36FGHLV' where id=6; -update noar ti set v0='EK0IKX5GQWLWSM95QK5AAYADG36FGHLV' where id=6; -update noar tt set b1='A' where id=6; -update noar ti set b1='A' where id=6; -update noar tt set v0='RG50T3F6GBMAX1X' where id=6; -update noar ti set v0='RG50T3F6GBMAX1X' where id=6; -update noar tt set b2='AQPUTMVZ96IA' where id=6; -update noar ti set b2='AQPUTMVZ96IA' where id=6; -update noar tt set v0='8HEMBQXQVV2KN6P7S' where id=7; -update noar ti set v0='8HEMBQXQVV2KN6P7S' where id=7; -update noar tt set b0='AFQ6' where id=7; -update noar ti set b0='AFQ6' where id=7; -update noar tt set v0='BUF3AVQU1DYUW0QN34GH0' where id=7; -update noar ti set v0='BUF3AVQU1DYUW0QN34GH0' where id=7; -update noar tt set b1='JCM9MT1NQRFLLKO343Y' where id=7; -update noar ti set b1='JCM9MT1NQRFLLKO343Y' where id=7; -update noar tt set v0='RERYI' where id=7; -update noar ti set v0='RERYI' where id=7; -update noar tt set b2='DMGEQL89MFJJBVJ4L8EDSTUC16JERVRU' where id=7; -update noar ti set b2='DMGEQL89MFJJBVJ4L8EDSTUC16JERVRU' where id=7; -update noar tt set v0='575YE4HY7U3I' where id=8; -update noar ti set v0='575YE4HY7U3I' where id=8; -update noar tt set b0='PVGQ6S' where id=8; -update noar ti set b0='PVGQ6S' where id=8; -update noar tt set v0='DZPL4JIAVKYUADTP5CWKG0MEZT0P427' where id=8; -update noar ti set v0='DZPL4JIAVKYUADTP5CWKG0MEZT0P427' where id=8; -update noar tt set b1='NDCC5H97399M' where id=8; -update noar ti set b1='NDCC5H97399M' where id=8; -update noar tt set v0='FSSGHDCVOU2HHDB3QYX88' where id=8; -update noar ti set v0='FSSGHDCVOU2HHDB3QYX88' where id=8; -update noar tt set b2='P206ON3SV2SC30KTVFO4EKKOIH5WJGDS' where id=8; -update noar ti set b2='P206ON3SV2SC30KTVFO4EKKOIH5WJGDS' where id=8; -update noar tt set v0='AMLAJN' where id=9; -update noar ti set v0='AMLAJN' where id=9; -update noar tt set b0='RWB' where id=9; -update noar ti set b0='RWB' where id=9; -update noar tt set v0='LJ0NOMFSQCSCS' where id=9; -update noar ti set v0='LJ0NOMFSQCSCS' where id=9; -update noar tt set b1='L1D' where id=9; -update noar ti set b1='L1D' where id=9; -update noar tt set v0='HMBDH40LHFIZJNOQCWR310O5' where id=9; -update noar ti set v0='HMBDH40LHFIZJNOQCWR310O5' where id=9; -update noar tt set b2='904U6CHXLE3GJD5WXSHBIAZNV' where id=9; -update noar ti set b2='904U6CHXLE3GJD5WXSHBIAZNV' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - v0 varchar(32) null, - b0 mediumblob null, - b1 blob null, - b2 blob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='84KMRKXTIC1YC2' where id=1; -update noar ti set v0='84KMRKXTIC1YC2' where id=1; -update noar tt set b0='MVBCD4VR7ENQ0M1OAEVYBVQEA' where id=1; -update noar ti set b0='MVBCD4VR7ENQ0M1OAEVYBVQEA' where id=1; -update noar tt set v0='L5C7Z4OWN4P395FUQ3HI' where id=1; -update noar ti set v0='L5C7Z4OWN4P395FUQ3HI' where id=1; -update noar tt set b1='WM1VXZ87JBB1' where id=1; -update noar ti set b1='WM1VXZ87JBB1' where id=1; -update noar tt set v0='JGUZ13EBM1DXYCHS' where id=1; -update noar ti set v0='JGUZ13EBM1DXYCHS' where id=1; -update noar tt set b2='3E2IHJIWQUKGNGKAZZW0MNI' where id=1; -update noar ti set b2='3E2IHJIWQUKGNGKAZZW0MNI' where id=1; -update noar tt set v0='JDOW' where id=2; -update noar ti set v0='JDOW' where id=2; -update noar tt set b0='1U192K4DAUI' where id=2; -update noar ti set b0='1U192K4DAUI' where id=2; -update noar tt set v0='4OERL68FY12XRI6WE' where id=2; -update noar ti set v0='4OERL68FY12XRI6WE' where id=2; -update noar tt set b1='Q580ZY9PQQW599DT26N4W' where id=2; -update noar ti set b1='Q580ZY9PQQW599DT26N4W' where id=2; -update noar tt set v0='1EFOXRD49Y45LLTGE8LA7W9YHFKCIQA' where id=2; -update noar ti set v0='1EFOXRD49Y45LLTGE8LA7W9YHFKCIQA' where id=2; -update noar tt set b2='WYQLFEBWR7' where id=2; -update noar ti set b2='WYQLFEBWR7' where id=2; -update noar tt set v0='850HEBXJGVF4A9LB0G6' where id=3; -update noar ti set v0='850HEBXJGVF4A9LB0G6' where id=3; -update noar tt set b0='WMZWXQZ0UM8FUQ3SMKB7F' where id=3; -update noar ti set b0='WMZWXQZ0UM8FUQ3SMKB7F' where id=3; -update noar tt set v0='WIJE7CVXLA2B8HLISM8J26B0I9PW' where id=3; -update noar ti set v0='WIJE7CVXLA2B8HLISM8J26B0I9PW' where id=3; -update noar tt set b1='3PWXBYQP57B533B6WSPWR70DMW' where id=3; -update noar ti set b1='3PWXBYQP57B533B6WSPWR70DMW' where id=3; -update noar tt set v0='BUH0PSQPL' where id=3; -update noar ti set v0='BUH0PSQPL' where id=3; -update noar tt set b2='WETZ7Q181K3ENUORLJOVC' where id=3; -update noar ti set b2='WETZ7Q181K3ENUORLJOVC' where id=3; -update noar tt set v0='O4PKRC37CF431E514TPL4NPCMQZOMKCP' where id=4; -update noar ti set v0='O4PKRC37CF431E514TPL4NPCMQZOMKCP' where id=4; -update noar tt set b0='5VYIHZ43X6HNR' where id=4; -update noar ti set b0='5VYIHZ43X6HNR' where id=4; -update noar tt set v0='B2DO6072DREXUAD6AVEMFUUL' where id=4; -update noar ti set v0='B2DO6072DREXUAD6AVEMFUUL' where id=4; -update noar tt set b1='2L4DZOX6FQPV' where id=4; -update noar ti set b1='2L4DZOX6FQPV' where id=4; -update noar tt set v0='CP6JBLEG2X9U6D' where id=4; -update noar ti set v0='CP6JBLEG2X9U6D' where id=4; -update noar tt set b2='MPPAQF17XWJELS28DWW' where id=4; -update noar ti set b2='MPPAQF17XWJELS28DWW' where id=4; -update noar tt set v0='EEM1UR9ZSKXDG62IGZKW9' where id=5; -update noar ti set v0='EEM1UR9ZSKXDG62IGZKW9' where id=5; -update noar tt set b0='NW4UJJ1WLQA6K26H' where id=5; -update noar ti set b0='NW4UJJ1WLQA6K26H' where id=5; -update noar tt set v0='MB' where id=5; -update noar ti set v0='MB' where id=5; -update noar tt set b1='IY1FXA53BAQUCDFGIP9JT8FW2OWUH' where id=5; -update noar ti set b1='IY1FXA53BAQUCDFGIP9JT8FW2OWUH' where id=5; -update noar tt set v0='Z64' where id=5; -update noar ti set v0='Z64' where id=5; -update noar tt set b2='SBSTUFUWC5EMBCJPJSKAK54MM6O2QX' where id=5; -update noar ti set b2='SBSTUFUWC5EMBCJPJSKAK54MM6O2QX' where id=5; -update noar tt set v0='AVRRXO5CQYXHPDCW0' where id=6; -update noar ti set v0='AVRRXO5CQYXHPDCW0' where id=6; -update noar tt set b0='O' where id=6; -update noar ti set b0='O' where id=6; -update noar tt set v0='N8S1XG4BS504J68ZQKFO' where id=6; -update noar ti set v0='N8S1XG4BS504J68ZQKFO' where id=6; -update noar tt set b1='F2R4518ZYEQI3G26M743SB9H89AYA2IA' where id=6; -update noar ti set b1='F2R4518ZYEQI3G26M743SB9H89AYA2IA' where id=6; -update noar tt set v0='9SA' where id=6; -update noar ti set v0='9SA' where id=6; -update noar tt set b2='CLB5J' where id=6; -update noar ti set b2='CLB5J' where id=6; -update noar tt set v0='P0SQ1OJPERM40RMCEQ9QPIBSVU5ZU' where id=7; -update noar ti set v0='P0SQ1OJPERM40RMCEQ9QPIBSVU5ZU' where id=7; -update noar tt set b0='TY223YMGNY' where id=7; -update noar ti set b0='TY223YMGNY' where id=7; -update noar tt set v0='G0FE40C5F3QEA7K441RQAX7RT' where id=7; -update noar ti set v0='G0FE40C5F3QEA7K441RQAX7RT' where id=7; -update noar tt set b1='CWZ' where id=7; -update noar ti set b1='CWZ' where id=7; -update noar tt set v0='7V44477KO' where id=7; -update noar ti set v0='7V44477KO' where id=7; -update noar tt set b2='7DRUW7HAKJILRTAOJGS7QS2W1IH2JX' where id=7; -update noar ti set b2='7DRUW7HAKJILRTAOJGS7QS2W1IH2JX' where id=7; -update noar tt set v0='K3NXH4' where id=8; -update noar ti set v0='K3NXH4' where id=8; -update noar tt set b0='CT5UF3ZFBG1K' where id=8; -update noar ti set b0='CT5UF3ZFBG1K' where id=8; -update noar tt set v0='IUGLVO7UHOZKVDH6A' where id=8; -update noar ti set v0='IUGLVO7UHOZKVDH6A' where id=8; -update noar tt set b1='V8YEO7AG8UHO' where id=8; -update noar ti set b1='V8YEO7AG8UHO' where id=8; -update noar tt set v0='AI756EXP89J9WFCW57' where id=8; -update noar ti set v0='AI756EXP89J9WFCW57' where id=8; -update noar tt set b2='2M7S680ETYZKU5CX' where id=8; -update noar ti set b2='2M7S680ETYZKU5CX' where id=8; -update noar tt set v0='KPTGNP2655HOUDCV' where id=9; -update noar ti set v0='KPTGNP2655HOUDCV' where id=9; -update noar tt set b0='4T9VTU0F82G671S7' where id=9; -update noar ti set b0='4T9VTU0F82G671S7' where id=9; -update noar tt set v0='XJNFVR6VMAL7O58RQ3BEU2V3W' where id=9; -update noar ti set v0='XJNFVR6VMAL7O58RQ3BEU2V3W' where id=9; -update noar tt set b1='ZJ812PLQ7HY6GRLBNC8RPWJUV' where id=9; -update noar ti set b1='ZJ812PLQ7HY6GRLBNC8RPWJUV' where id=9; -update noar tt set v0='7YN4ONAP7' where id=9; -update noar ti set v0='7YN4ONAP7' where id=9; -update noar tt set b2='4R0E4GIQT9O' where id=9; -update noar ti set b2='4R0E4GIQT9O' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - v0 varchar(256) null, - b0 mediumblob null, - b1 blob null, - b2 blob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='PGPR9X9YJUTCFF' where id=1; -update noar ti set v0='PGPR9X9YJUTCFF' where id=1; -update noar tt set b0='GJ72EVTAPCAUDR8907G9LLJH' where id=1; -update noar ti set b0='GJ72EVTAPCAUDR8907G9LLJH' where id=1; -update noar tt set v0='BKCH' where id=1; -update noar ti set v0='BKCH' where id=1; -update noar tt set b1='EYNSYJQ3P985PSD' where id=1; -update noar ti set b1='EYNSYJQ3P985PSD' where id=1; -update noar tt set v0='NIWYIVKATSKTW99I2JEX0IKG' where id=1; -update noar ti set v0='NIWYIVKATSKTW99I2JEX0IKG' where id=1; -update noar tt set b2='9M761U25' where id=1; -update noar ti set b2='9M761U25' where id=1; -update noar tt set v0='F7PMRFSYNJL2P84C4EJ' where id=2; -update noar ti set v0='F7PMRFSYNJL2P84C4EJ' where id=2; -update noar tt set b0='SZQ6A06PT131BWJ8JV8L5BDLG8' where id=2; -update noar ti set b0='SZQ6A06PT131BWJ8JV8L5BDLG8' where id=2; -update noar tt set v0='3CX9TFLV9BZ2RXL8N' where id=2; -update noar ti set v0='3CX9TFLV9BZ2RXL8N' where id=2; -update noar tt set b1='KEUMZBWUBN65AJ' where id=2; -update noar ti set b1='KEUMZBWUBN65AJ' where id=2; -update noar tt set v0='M7L4' where id=2; -update noar ti set v0='M7L4' where id=2; -update noar tt set b2='5QDJ0L13ZGNHUR2YID9131BG' where id=2; -update noar ti set b2='5QDJ0L13ZGNHUR2YID9131BG' where id=2; -update noar tt set v0='5' where id=3; -update noar ti set v0='5' where id=3; -update noar tt set b0='5PO5HAL5' where id=3; -update noar ti set b0='5PO5HAL5' where id=3; -update noar tt set v0='0' where id=3; -update noar ti set v0='0' where id=3; -update noar tt set b1='YX4NQFQD3V423DD1HE8X62' where id=3; -update noar ti set b1='YX4NQFQD3V423DD1HE8X62' where id=3; -update noar tt set v0='2YRGKJNVNI' where id=3; -update noar ti set v0='2YRGKJNVNI' where id=3; -update noar tt set b2='SB8I77XDMKLUE52PMR5X' where id=3; -update noar ti set b2='SB8I77XDMKLUE52PMR5X' where id=3; -update noar tt set v0='HQDIN9CRJZ' where id=4; -update noar ti set v0='HQDIN9CRJZ' where id=4; -update noar tt set b0='5TT0NEGCLMIW' where id=4; -update noar ti set b0='5TT0NEGCLMIW' where id=4; -update noar tt set v0='MRQS93GDRK' where id=4; -update noar ti set v0='MRQS93GDRK' where id=4; -update noar tt set b1='IB0SPJJN' where id=4; -update noar ti set b1='IB0SPJJN' where id=4; -update noar tt set v0='BTG' where id=4; -update noar ti set v0='BTG' where id=4; -update noar tt set b2='5UXQITX5DMCJMN9SV0LJY' where id=4; -update noar ti set b2='5UXQITX5DMCJMN9SV0LJY' where id=4; -update noar tt set v0='4' where id=5; -update noar ti set v0='4' where id=5; -update noar tt set b0='THXVJ63P' where id=5; -update noar ti set b0='THXVJ63P' where id=5; -update noar tt set v0='TVX59QX25AU1J355FN' where id=5; -update noar ti set v0='TVX59QX25AU1J355FN' where id=5; -update noar tt set b1='S43RXDC7QDLMIMR2J87YNYEFXB4D' where id=5; -update noar ti set b1='S43RXDC7QDLMIMR2J87YNYEFXB4D' where id=5; -update noar tt set v0='HL1MDNVIYQ45B8KN' where id=5; -update noar ti set v0='HL1MDNVIYQ45B8KN' where id=5; -update noar tt set b2='G9QZTTOOI2US6' where id=5; -update noar ti set b2='G9QZTTOOI2US6' where id=5; -update noar tt set v0='8BN191' where id=6; -update noar ti set v0='8BN191' where id=6; -update noar tt set b0='79E6XKBZH' where id=6; -update noar ti set b0='79E6XKBZH' where id=6; -update noar tt set v0='VC4JKA3SAOU0N7OFNEO5HI2LRP' where id=6; -update noar ti set v0='VC4JKA3SAOU0N7OFNEO5HI2LRP' where id=6; -update noar tt set b1='85G2WABE44HMT06QFBHFZSRNKZUT' where id=6; -update noar ti set b1='85G2WABE44HMT06QFBHFZSRNKZUT' where id=6; -update noar tt set v0='HRTKC' where id=6; -update noar ti set v0='HRTKC' where id=6; -update noar tt set b2='YP02J3' where id=6; -update noar ti set b2='YP02J3' where id=6; -update noar tt set v0='32QY8MJF9DEW9N6GTJIZTK' where id=7; -update noar ti set v0='32QY8MJF9DEW9N6GTJIZTK' where id=7; -update noar tt set b0='RF8O62' where id=7; -update noar ti set b0='RF8O62' where id=7; -update noar tt set v0='WZUPL6918F4' where id=7; -update noar ti set v0='WZUPL6918F4' where id=7; -update noar tt set b1='C2AELA42F' where id=7; -update noar ti set b1='C2AELA42F' where id=7; -update noar tt set v0='DAA47S2LTGV3G0HFBHGDR0PIL' where id=7; -update noar ti set v0='DAA47S2LTGV3G0HFBHGDR0PIL' where id=7; -update noar tt set b2='BT14UFVXFOKIATLCYDWMENP2' where id=7; -update noar ti set b2='BT14UFVXFOKIATLCYDWMENP2' where id=7; -update noar tt set v0='NV5ERN2H9JOQZ43G9AMAL4W' where id=8; -update noar ti set v0='NV5ERN2H9JOQZ43G9AMAL4W' where id=8; -update noar tt set b0='87Z0NO' where id=8; -update noar ti set b0='87Z0NO' where id=8; -update noar tt set v0='48UKQ18CU89HY1PJB' where id=8; -update noar ti set v0='48UKQ18CU89HY1PJB' where id=8; -update noar tt set b1='LCR9OTZHBTCTI5HGJPP0' where id=8; -update noar ti set b1='LCR9OTZHBTCTI5HGJPP0' where id=8; -update noar tt set v0='1Z3L0TMEF5Y1NIX52NIK5V7ZQ7R' where id=8; -update noar ti set v0='1Z3L0TMEF5Y1NIX52NIK5V7ZQ7R' where id=8; -update noar tt set b2='ODXXXF5YUTF2SA3JPXLY' where id=8; -update noar ti set b2='ODXXXF5YUTF2SA3JPXLY' where id=8; -update noar tt set v0='TE' where id=9; -update noar ti set v0='TE' where id=9; -update noar tt set b0='CS0RDZQD' where id=9; -update noar ti set b0='CS0RDZQD' where id=9; -update noar tt set v0='QBCSZ4GUHP5B6BMW9LOP2VAH7M' where id=9; -update noar ti set v0='QBCSZ4GUHP5B6BMW9LOP2VAH7M' where id=9; -update noar tt set b1='5HH2LTH3L2VYH8Q' where id=9; -update noar ti set b1='5HH2LTH3L2VYH8Q' where id=9; -update noar tt set v0='2LGZ6YXANFZMLO' where id=9; -update noar ti set v0='2LGZ6YXANFZMLO' where id=9; -update noar tt set b2='SPH3IZWCYQX2NEKRCQ76EP5JH' where id=9; -update noar ti set b2='SPH3IZWCYQX2NEKRCQ76EP5JH' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - v0 varchar(32) not null, - b0 mediumblob not null, - b1 blob not null, - b2 blob not null -) engine=tokudb; -insert into tt values (1,'','','',''); -insert into tt values (2,'','','',''); -insert into tt values (3,'','','',''); -insert into tt values (4,'','','',''); -insert into tt values (5,'','','',''); -insert into tt values (6,'','','',''); -insert into tt values (7,'','','',''); -insert into tt values (8,'','','',''); -insert into tt values (9,'','','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='K9DCBE7U6CHU1L4LXB8NUTATAZ' where id=1; -update noar ti set v0='K9DCBE7U6CHU1L4LXB8NUTATAZ' where id=1; -update noar tt set b0='QP9TCZ5AYIW' where id=1; -update noar ti set b0='QP9TCZ5AYIW' where id=1; -update noar tt set v0='FODV' where id=1; -update noar ti set v0='FODV' where id=1; -update noar tt set b1='ZNU2SC8U8HYHGYUT' where id=1; -update noar ti set b1='ZNU2SC8U8HYHGYUT' where id=1; -update noar tt set v0='FJJDGHK35OJQQWM7PG' where id=1; -update noar ti set v0='FJJDGHK35OJQQWM7PG' where id=1; -update noar tt set b2='GAMAODV6ZL4' where id=1; -update noar ti set b2='GAMAODV6ZL4' where id=1; -update noar tt set v0='QY72N53U4MPHGHQZGJJFZ9NKMJIF' where id=2; -update noar ti set v0='QY72N53U4MPHGHQZGJJFZ9NKMJIF' where id=2; -update noar tt set b0='FW987LIWOQV3BW' where id=2; -update noar ti set b0='FW987LIWOQV3BW' where id=2; -update noar tt set v0='IPWIKJ9F6E9YPQ25EJQDW4K6JF' where id=2; -update noar ti set v0='IPWIKJ9F6E9YPQ25EJQDW4K6JF' where id=2; -update noar tt set b1='PKP' where id=2; -update noar ti set b1='PKP' where id=2; -update noar tt set v0='XY7DREX55RRR8FW5PMFEPXJC' where id=2; -update noar ti set v0='XY7DREX55RRR8FW5PMFEPXJC' where id=2; -update noar tt set b2='CJZ280B9QO83W9ZRIT0KK9REB2' where id=2; -update noar ti set b2='CJZ280B9QO83W9ZRIT0KK9REB2' where id=2; -update noar tt set v0='U6MBM' where id=3; -update noar ti set v0='U6MBM' where id=3; -update noar tt set b0='Z620N2WNPPZGYCTGV5K' where id=3; -update noar ti set b0='Z620N2WNPPZGYCTGV5K' where id=3; -update noar tt set v0='2JLTFVM1' where id=3; -update noar ti set v0='2JLTFVM1' where id=3; -update noar tt set b1='3JVU' where id=3; -update noar ti set b1='3JVU' where id=3; -update noar tt set v0='QN2J5YEZW2X5SXJQT4RIHF2WMBKWM' where id=3; -update noar ti set v0='QN2J5YEZW2X5SXJQT4RIHF2WMBKWM' where id=3; -update noar tt set b2='3FL0NJY6L6UHVZ0VJI59GP6VVB7JREP' where id=3; -update noar ti set b2='3FL0NJY6L6UHVZ0VJI59GP6VVB7JREP' where id=3; -update noar tt set v0='I6JYY' where id=4; -update noar ti set v0='I6JYY' where id=4; -update noar tt set b0='FTHB4MFRE0QKE' where id=4; -update noar ti set b0='FTHB4MFRE0QKE' where id=4; -update noar tt set v0='KM7C34NN23' where id=4; -update noar ti set v0='KM7C34NN23' where id=4; -update noar tt set b1='HC5ALQ183SOX' where id=4; -update noar ti set b1='HC5ALQ183SOX' where id=4; -update noar tt set v0='T' where id=4; -update noar ti set v0='T' where id=4; -update noar tt set b2='8LJV9IBHD6H7RR' where id=4; -update noar ti set b2='8LJV9IBHD6H7RR' where id=4; -update noar tt set v0='D76DZE05MOEXJI3QVJSLSH79AT5H' where id=5; -update noar ti set v0='D76DZE05MOEXJI3QVJSLSH79AT5H' where id=5; -update noar tt set b0='AV3YVQMM3MI2J' where id=5; -update noar ti set b0='AV3YVQMM3MI2J' where id=5; -update noar tt set v0='YS2EYARD1VPNYVMQJ3O2HJFXKF9X7G' where id=5; -update noar ti set v0='YS2EYARD1VPNYVMQJ3O2HJFXKF9X7G' where id=5; -update noar tt set b1='RRYPE7V3P' where id=5; -update noar ti set b1='RRYPE7V3P' where id=5; -update noar tt set v0='WU13VPVSMKE0J2O8X' where id=5; -update noar ti set v0='WU13VPVSMKE0J2O8X' where id=5; -update noar tt set b2='K' where id=5; -update noar ti set b2='K' where id=5; -update noar tt set v0='859YF' where id=6; -update noar ti set v0='859YF' where id=6; -update noar tt set b0='7A9FOFGVVMS1JWO4KE3' where id=6; -update noar ti set b0='7A9FOFGVVMS1JWO4KE3' where id=6; -update noar tt set v0='HU770U0MW46XKK1' where id=6; -update noar ti set v0='HU770U0MW46XKK1' where id=6; -update noar tt set b1='H7Z6YSIVS945I0' where id=6; -update noar ti set b1='H7Z6YSIVS945I0' where id=6; -update noar tt set v0='FTTHL0XVXENZB40ISH0' where id=6; -update noar ti set v0='FTTHL0XVXENZB40ISH0' where id=6; -update noar tt set b2='V7ZTXUAXQLJP8XRNOUB8ZLVGY' where id=6; -update noar ti set b2='V7ZTXUAXQLJP8XRNOUB8ZLVGY' where id=6; -update noar tt set v0='GK7J8K6SA122DV8V04GKXDYHXU5DWQB' where id=7; -update noar ti set v0='GK7J8K6SA122DV8V04GKXDYHXU5DWQB' where id=7; -update noar tt set b0='AWOYNE4HYW9B4ULK3ILS' where id=7; -update noar ti set b0='AWOYNE4HYW9B4ULK3ILS' where id=7; -update noar tt set v0='MMUI' where id=7; -update noar ti set v0='MMUI' where id=7; -update noar tt set b1='HS2XHNESK' where id=7; -update noar ti set b1='HS2XHNESK' where id=7; -update noar tt set v0='J66G1P8LK1' where id=7; -update noar ti set v0='J66G1P8LK1' where id=7; -update noar tt set b2='1PWQ6QD5RUKRE966I60AUN3YYZUPDVY9' where id=7; -update noar ti set b2='1PWQ6QD5RUKRE966I60AUN3YYZUPDVY9' where id=7; -update noar tt set v0='AYT8728RQM2EU91LHLMHCVT0PZ3QNBJW' where id=8; -update noar ti set v0='AYT8728RQM2EU91LHLMHCVT0PZ3QNBJW' where id=8; -update noar tt set b0='JNXK473GZQHOFVN5DB9OKP' where id=8; -update noar ti set b0='JNXK473GZQHOFVN5DB9OKP' where id=8; -update noar tt set v0='MK9FHGRO0JJC51GTDJIJKDQ1WT8I' where id=8; -update noar ti set v0='MK9FHGRO0JJC51GTDJIJKDQ1WT8I' where id=8; -update noar tt set b1='TY6UHCGWXAV' where id=8; -update noar ti set b1='TY6UHCGWXAV' where id=8; -update noar tt set v0='FUNJO59UL05U' where id=8; -update noar ti set v0='FUNJO59UL05U' where id=8; -update noar tt set b2='W9ZB1XT3LL84M7ER39TZIDC8RZM' where id=8; -update noar ti set b2='W9ZB1XT3LL84M7ER39TZIDC8RZM' where id=8; -update noar tt set v0='HUJS0R4' where id=9; -update noar ti set v0='HUJS0R4' where id=9; -update noar tt set b0='GZIX7EHKMVR4EKKT9YP6X9RSRNG8NNS' where id=9; -update noar ti set b0='GZIX7EHKMVR4EKKT9YP6X9RSRNG8NNS' where id=9; -update noar tt set v0='SI2R8ML45IR' where id=9; -update noar ti set v0='SI2R8ML45IR' where id=9; -update noar tt set b1='CXPTEU9S6C6700B' where id=9; -update noar ti set b1='CXPTEU9S6C6700B' where id=9; -update noar tt set v0='T4T' where id=9; -update noar ti set v0='T4T' where id=9; -update noar tt set b2='PA4HCMSD3IOIGYM9E74EGE015WZBY' where id=9; -update noar ti set b2='PA4HCMSD3IOIGYM9E74EGE015WZBY' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - v0 varchar(256) not null, - b0 mediumblob not null, - b1 blob not null, - b2 blob not null -) engine=tokudb; -insert into tt values (1,'','','',''); -insert into tt values (2,'','','',''); -insert into tt values (3,'','','',''); -insert into tt values (4,'','','',''); -insert into tt values (5,'','','',''); -insert into tt values (6,'','','',''); -insert into tt values (7,'','','',''); -insert into tt values (8,'','','',''); -insert into tt values (9,'','','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='9PQEZ4VJSOX0' where id=1; -update noar ti set v0='9PQEZ4VJSOX0' where id=1; -update noar tt set b0='O8E' where id=1; -update noar ti set b0='O8E' where id=1; -update noar tt set v0='86KVIYA03KMOQ2EHC33P1140F' where id=1; -update noar ti set v0='86KVIYA03KMOQ2EHC33P1140F' where id=1; -update noar tt set b1='98FVN3OO1E1S' where id=1; -update noar ti set b1='98FVN3OO1E1S' where id=1; -update noar tt set v0='YZWIW6OM9QVWB42L76' where id=1; -update noar ti set v0='YZWIW6OM9QVWB42L76' where id=1; -update noar tt set b2='MGGJM5U4SUJAOTJ5P34HOMA9Z2' where id=1; -update noar ti set b2='MGGJM5U4SUJAOTJ5P34HOMA9Z2' where id=1; -update noar tt set v0='BSN60NF' where id=2; -update noar ti set v0='BSN60NF' where id=2; -update noar tt set b0='FMYGOJLUS3Q0NELVY' where id=2; -update noar ti set b0='FMYGOJLUS3Q0NELVY' where id=2; -update noar tt set v0='457X7ZN2NU63AHHQHFE73TCGBESE' where id=2; -update noar ti set v0='457X7ZN2NU63AHHQHFE73TCGBESE' where id=2; -update noar tt set b1='3Z0' where id=2; -update noar ti set b1='3Z0' where id=2; -update noar tt set v0='23TB3E5CZYI3WAJ3XHO' where id=2; -update noar ti set v0='23TB3E5CZYI3WAJ3XHO' where id=2; -update noar tt set b2='RYU1ST9P5ODKY5321V0KVLN6XO2NNU' where id=2; -update noar ti set b2='RYU1ST9P5ODKY5321V0KVLN6XO2NNU' where id=2; -update noar tt set v0='388MBT4SFV4O49' where id=3; -update noar ti set v0='388MBT4SFV4O49' where id=3; -update noar tt set b0='WUWOBKZ78C6GAHYPUTEXT437WU6L' where id=3; -update noar ti set b0='WUWOBKZ78C6GAHYPUTEXT437WU6L' where id=3; -update noar tt set v0='MKMCCGY4V8BC1F0UBHWMG' where id=3; -update noar ti set v0='MKMCCGY4V8BC1F0UBHWMG' where id=3; -update noar tt set b1='XFDL6DDDCKXECE9JZJKER8OZSH' where id=3; -update noar ti set b1='XFDL6DDDCKXECE9JZJKER8OZSH' where id=3; -update noar tt set v0='FECMTITEA9S82Z3' where id=3; -update noar ti set v0='FECMTITEA9S82Z3' where id=3; -update noar tt set b2='E5149OSO3AUSQE3C71E2' where id=3; -update noar ti set b2='E5149OSO3AUSQE3C71E2' where id=3; -update noar tt set v0='DVFAFK062JB3P' where id=4; -update noar ti set v0='DVFAFK062JB3P' where id=4; -update noar tt set b0='LFQM77I' where id=4; -update noar ti set b0='LFQM77I' where id=4; -update noar tt set v0='CNZR2ALYZ7LF3PBSULJO' where id=4; -update noar ti set v0='CNZR2ALYZ7LF3PBSULJO' where id=4; -update noar tt set b1='F65923044KY943EQBXO0WC5SNHS4FA' where id=4; -update noar ti set b1='F65923044KY943EQBXO0WC5SNHS4FA' where id=4; -update noar tt set v0='0W' where id=4; -update noar ti set v0='0W' where id=4; -update noar tt set b2='ZYB32YAV13' where id=4; -update noar ti set b2='ZYB32YAV13' where id=4; -update noar tt set v0='MO37JFHJAWAPURNOU' where id=5; -update noar ti set v0='MO37JFHJAWAPURNOU' where id=5; -update noar tt set b0='HGGQNFVI50K4388U7Q8PWKEGII2GL1F' where id=5; -update noar ti set b0='HGGQNFVI50K4388U7Q8PWKEGII2GL1F' where id=5; -update noar tt set v0='5V7VC96F0' where id=5; -update noar ti set v0='5V7VC96F0' where id=5; -update noar tt set b1='8C82TJZJNWBXCRLFEUL2FP0Z7GGYPP' where id=5; -update noar ti set b1='8C82TJZJNWBXCRLFEUL2FP0Z7GGYPP' where id=5; -update noar tt set v0='5XYYC50ADP7GJVVS' where id=5; -update noar ti set v0='5XYYC50ADP7GJVVS' where id=5; -update noar tt set b2='81W3O7' where id=5; -update noar ti set b2='81W3O7' where id=5; -update noar tt set v0='7OPKD47JGBWDL0KRFQJOD0XERPCFB' where id=6; -update noar ti set v0='7OPKD47JGBWDL0KRFQJOD0XERPCFB' where id=6; -update noar tt set b0='JULOTLY6RVNPM' where id=6; -update noar ti set b0='JULOTLY6RVNPM' where id=6; -update noar tt set v0='OOZI87MGYZ1DHU3601' where id=6; -update noar ti set v0='OOZI87MGYZ1DHU3601' where id=6; -update noar tt set b1='42' where id=6; -update noar ti set b1='42' where id=6; -update noar tt set v0='86O6' where id=6; -update noar ti set v0='86O6' where id=6; -update noar tt set b2='BF5' where id=6; -update noar ti set b2='BF5' where id=6; -update noar tt set v0='AC4BZELC6FQ' where id=7; -update noar ti set v0='AC4BZELC6FQ' where id=7; -update noar tt set b0='KAW6SDQ' where id=7; -update noar ti set b0='KAW6SDQ' where id=7; -update noar tt set v0='M4OZFK5XCUGJDZHSQLO' where id=7; -update noar ti set v0='M4OZFK5XCUGJDZHSQLO' where id=7; -update noar tt set b1='PTICZPMKF2UPMVY' where id=7; -update noar ti set b1='PTICZPMKF2UPMVY' where id=7; -update noar tt set v0='HFYW51AA412EYYM7OJ3YUEBYT' where id=7; -update noar ti set v0='HFYW51AA412EYYM7OJ3YUEBYT' where id=7; -update noar tt set b2='WU3LBW7' where id=7; -update noar ti set b2='WU3LBW7' where id=7; -update noar tt set v0='PV889WHHUOQXREI' where id=8; -update noar ti set v0='PV889WHHUOQXREI' where id=8; -update noar tt set b0='AVQRSQU41GS50J2UTBPK3UUK3E' where id=8; -update noar ti set b0='AVQRSQU41GS50J2UTBPK3UUK3E' where id=8; -update noar tt set v0='BQIINCEDNA460022I2X8NP' where id=8; -update noar ti set v0='BQIINCEDNA460022I2X8NP' where id=8; -update noar tt set b1='9365Y28JR6E7DFCZW9' where id=8; -update noar ti set b1='9365Y28JR6E7DFCZW9' where id=8; -update noar tt set v0='0YG8YZ1HM9BC2CNQ5YUZNIHVMD1QT6N' where id=8; -update noar ti set v0='0YG8YZ1HM9BC2CNQ5YUZNIHVMD1QT6N' where id=8; -update noar tt set b2='GCS0O23L54X72R4R2M3ZRX4I' where id=8; -update noar ti set b2='GCS0O23L54X72R4R2M3ZRX4I' where id=8; -update noar tt set v0='Y' where id=9; -update noar ti set v0='Y' where id=9; -update noar tt set b0='4NWWMJGC891H4DSOQAC49Z8VY4' where id=9; -update noar ti set b0='4NWWMJGC891H4DSOQAC49Z8VY4' where id=9; -update noar tt set v0='LVGX0UGSSRJX' where id=9; -update noar ti set v0='LVGX0UGSSRJX' where id=9; -update noar tt set b1='2TRFSXFHWZSPEIBYW8U3PITEL' where id=9; -update noar ti set b1='2TRFSXFHWZSPEIBYW8U3PITEL' where id=9; -update noar tt set v0='G38E6TUQX9VPN0GRDUZ2F6RUQ1N4PK' where id=9; -update noar ti set v0='G38E6TUQX9VPN0GRDUZ2F6RUQ1N4PK' where id=9; -update noar tt set b2='NSX4ZQQEJTGYPEP' where id=9; -update noar ti set b2='NSX4ZQQEJTGYPEP' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - v0 varchar(32) null, - b0 mediumblob null, - b1 blob null, - b2 mediumblob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='NG8MXG' where id=1; -update noar ti set v0='NG8MXG' where id=1; -update noar tt set b0='C8TRHI1CEUJMCLWJ5' where id=1; -update noar ti set b0='C8TRHI1CEUJMCLWJ5' where id=1; -update noar tt set v0='HZ82XNE8XORPS0S5CNEM6HH86M9' where id=1; -update noar ti set v0='HZ82XNE8XORPS0S5CNEM6HH86M9' where id=1; -update noar tt set b1='X8KKMGTEKSK42EN970W2GL' where id=1; -update noar ti set b1='X8KKMGTEKSK42EN970W2GL' where id=1; -update noar tt set v0='BP1D1MRV0UJGB523DH5' where id=1; -update noar ti set v0='BP1D1MRV0UJGB523DH5' where id=1; -update noar tt set b2='OERA4H0VQGFOAA4TX9FI' where id=1; -update noar ti set b2='OERA4H0VQGFOAA4TX9FI' where id=1; -update noar tt set v0='Z9GVZANQ0LAXZYQTX' where id=2; -update noar ti set v0='Z9GVZANQ0LAXZYQTX' where id=2; -update noar tt set b0='BC7DNEVBXCOALJKSDH' where id=2; -update noar ti set b0='BC7DNEVBXCOALJKSDH' where id=2; -update noar tt set v0='ENY4IW1J0S8SQ3X2VP469IYL' where id=2; -update noar ti set v0='ENY4IW1J0S8SQ3X2VP469IYL' where id=2; -update noar tt set b1='XK3SDYK3PIJKJG' where id=2; -update noar ti set b1='XK3SDYK3PIJKJG' where id=2; -update noar tt set v0='V3NUO1MOV21MVTJ4VVDR' where id=2; -update noar ti set v0='V3NUO1MOV21MVTJ4VVDR' where id=2; -update noar tt set b2='ENHFTC78Q2ATFJSM8RJKGWMD8ATDZ' where id=2; -update noar ti set b2='ENHFTC78Q2ATFJSM8RJKGWMD8ATDZ' where id=2; -update noar tt set v0='QL2XJNG3MZMUEXZP7H' where id=3; -update noar ti set v0='QL2XJNG3MZMUEXZP7H' where id=3; -update noar tt set b0='IH52NP349L0OXB4ITZP4Q0NB83M' where id=3; -update noar ti set b0='IH52NP349L0OXB4ITZP4Q0NB83M' where id=3; -update noar tt set v0='93Z1PRL4K2DSX8G6C10M2UCV6L' where id=3; -update noar ti set v0='93Z1PRL4K2DSX8G6C10M2UCV6L' where id=3; -update noar tt set b1='TPLLSXAV87BAZFOO' where id=3; -update noar ti set b1='TPLLSXAV87BAZFOO' where id=3; -update noar tt set v0='60F9D49S7MPPSYKDWWQBL3' where id=3; -update noar ti set v0='60F9D49S7MPPSYKDWWQBL3' where id=3; -update noar tt set b2='TTCF3N1MBFGER6I2' where id=3; -update noar ti set b2='TTCF3N1MBFGER6I2' where id=3; -update noar tt set v0='H9O' where id=4; -update noar ti set v0='H9O' where id=4; -update noar tt set b0='SSJ0VOAU' where id=4; -update noar ti set b0='SSJ0VOAU' where id=4; -update noar tt set v0='1AKZTYIW7O3866AGV6HQ5WI5RRCV' where id=4; -update noar ti set v0='1AKZTYIW7O3866AGV6HQ5WI5RRCV' where id=4; -update noar tt set b1='QO5WX6NX9FYTZ' where id=4; -update noar ti set b1='QO5WX6NX9FYTZ' where id=4; -update noar tt set v0='FBUZ7KKB51LL6QL2E9ENFZ23O8BS' where id=4; -update noar ti set v0='FBUZ7KKB51LL6QL2E9ENFZ23O8BS' where id=4; -update noar tt set b2='EEJEILTHUOL2WI' where id=4; -update noar ti set b2='EEJEILTHUOL2WI' where id=4; -update noar tt set v0='VNPFB' where id=5; -update noar ti set v0='VNPFB' where id=5; -update noar tt set b0='URNVXJRKA8KAEPP2X0K9R' where id=5; -update noar ti set b0='URNVXJRKA8KAEPP2X0K9R' where id=5; -update noar tt set v0='OF' where id=5; -update noar ti set v0='OF' where id=5; -update noar tt set b1='P34MVO' where id=5; -update noar ti set b1='P34MVO' where id=5; -update noar tt set v0='IHR14N5QIU5UNXE2YNS' where id=5; -update noar ti set v0='IHR14N5QIU5UNXE2YNS' where id=5; -update noar tt set b2='1I8QG7N2O1YAV0L0NOUYCO2' where id=5; -update noar ti set b2='1I8QG7N2O1YAV0L0NOUYCO2' where id=5; -update noar tt set v0='V88HEHV8UP3LL31VTL0M' where id=6; -update noar ti set v0='V88HEHV8UP3LL31VTL0M' where id=6; -update noar tt set b0='D4ZVY0Y6K9G3QF6PMEQC639NBV7XRFY' where id=6; -update noar ti set b0='D4ZVY0Y6K9G3QF6PMEQC639NBV7XRFY' where id=6; -update noar tt set v0='4HSE7EFM8DINVD93YATM' where id=6; -update noar ti set v0='4HSE7EFM8DINVD93YATM' where id=6; -update noar tt set b1='NL3W8' where id=6; -update noar ti set b1='NL3W8' where id=6; -update noar tt set v0='4HZGP' where id=6; -update noar ti set v0='4HZGP' where id=6; -update noar tt set b2='JGY2EM0SMCMG59TNFXR' where id=6; -update noar ti set b2='JGY2EM0SMCMG59TNFXR' where id=6; -update noar tt set v0='9JX73DBU0ER2GCEI4CXYPH' where id=7; -update noar ti set v0='9JX73DBU0ER2GCEI4CXYPH' where id=7; -update noar tt set b0='UCSAA9BH1FF2ICDLUZKL6VLNHNV' where id=7; -update noar ti set b0='UCSAA9BH1FF2ICDLUZKL6VLNHNV' where id=7; -update noar tt set v0='6N7KLLM8SLHFA16K7PO' where id=7; -update noar ti set v0='6N7KLLM8SLHFA16K7PO' where id=7; -update noar tt set b1='D7IQYIS90JED52PBBCRFKA9OLU' where id=7; -update noar ti set b1='D7IQYIS90JED52PBBCRFKA9OLU' where id=7; -update noar tt set v0='B' where id=7; -update noar ti set v0='B' where id=7; -update noar tt set b2='ORKN7JGQCPJVOEZKF2K7G9OYOTXGKZ45' where id=7; -update noar ti set b2='ORKN7JGQCPJVOEZKF2K7G9OYOTXGKZ45' where id=7; -update noar tt set v0='0W0G8LAB0HP4TMK0FDX6' where id=8; -update noar ti set v0='0W0G8LAB0HP4TMK0FDX6' where id=8; -update noar tt set b0='6IECLLZNFQYUWZWFL8' where id=8; -update noar ti set b0='6IECLLZNFQYUWZWFL8' where id=8; -update noar tt set v0='Q3A69N4' where id=8; -update noar ti set v0='Q3A69N4' where id=8; -update noar tt set b1='P9X2F68TYAHJT56514AH1QEO7L' where id=8; -update noar ti set b1='P9X2F68TYAHJT56514AH1QEO7L' where id=8; -update noar tt set v0='VY4H38W9' where id=8; -update noar ti set v0='VY4H38W9' where id=8; -update noar tt set b2='CKM' where id=8; -update noar ti set b2='CKM' where id=8; -update noar tt set v0='34Z' where id=9; -update noar ti set v0='34Z' where id=9; -update noar tt set b0='6ECOUUG3IBP3HSFGAV2YZQ1Q' where id=9; -update noar ti set b0='6ECOUUG3IBP3HSFGAV2YZQ1Q' where id=9; -update noar tt set v0='L' where id=9; -update noar ti set v0='L' where id=9; -update noar tt set b1='WYZ' where id=9; -update noar ti set b1='WYZ' where id=9; -update noar tt set v0='ZMG22NTVH' where id=9; -update noar ti set v0='ZMG22NTVH' where id=9; -update noar tt set b2='7TP0HP1' where id=9; -update noar ti set b2='7TP0HP1' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - v0 varchar(256) null, - b0 mediumblob null, - b1 blob null, - b2 mediumblob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='F1PBQUEBCE2SOIF8MTAL3OA' where id=1; -update noar ti set v0='F1PBQUEBCE2SOIF8MTAL3OA' where id=1; -update noar tt set b0='Q2A8RUAZW' where id=1; -update noar ti set b0='Q2A8RUAZW' where id=1; -update noar tt set v0='Y2EYT6F95DDTLSXC4VUGKDA' where id=1; -update noar ti set v0='Y2EYT6F95DDTLSXC4VUGKDA' where id=1; -update noar tt set b1='Z149291IXGO' where id=1; -update noar ti set b1='Z149291IXGO' where id=1; -update noar tt set v0='5U46MWCXK045R3WATPSI' where id=1; -update noar ti set v0='5U46MWCXK045R3WATPSI' where id=1; -update noar tt set b2='HZHJCZ1W0ENNTK8T3THTFH8GLX' where id=1; -update noar ti set b2='HZHJCZ1W0ENNTK8T3THTFH8GLX' where id=1; -update noar tt set v0='1TE3Z3Y2ES' where id=2; -update noar ti set v0='1TE3Z3Y2ES' where id=2; -update noar tt set b0='GYVBCAERQLNK56GAJXGIQT' where id=2; -update noar ti set b0='GYVBCAERQLNK56GAJXGIQT' where id=2; -update noar tt set v0='O9TEV0FLVUJGE' where id=2; -update noar ti set v0='O9TEV0FLVUJGE' where id=2; -update noar tt set b1='5R' where id=2; -update noar ti set b1='5R' where id=2; -update noar tt set v0='JD4Z6104U6OCND5EZ1ZR3BKKV3M' where id=2; -update noar ti set v0='JD4Z6104U6OCND5EZ1ZR3BKKV3M' where id=2; -update noar tt set b2='M5SB21MY4A06HO4PJK' where id=2; -update noar ti set b2='M5SB21MY4A06HO4PJK' where id=2; -update noar tt set v0='KQP6XOKXV2G05HCJ9V3ZXJD464G04OI' where id=3; -update noar ti set v0='KQP6XOKXV2G05HCJ9V3ZXJD464G04OI' where id=3; -update noar tt set b0='S35MPSS5YHRSPS842U69HTVLUY6IN0' where id=3; -update noar ti set b0='S35MPSS5YHRSPS842U69HTVLUY6IN0' where id=3; -update noar tt set v0='9A' where id=3; -update noar ti set v0='9A' where id=3; -update noar tt set b1='F5BS' where id=3; -update noar ti set b1='F5BS' where id=3; -update noar tt set v0='W15UAASOM2143M77EIN51P0EOBABFQW1' where id=3; -update noar ti set v0='W15UAASOM2143M77EIN51P0EOBABFQW1' where id=3; -update noar tt set b2='5DW7' where id=3; -update noar ti set b2='5DW7' where id=3; -update noar tt set v0='18X1DYBNW1OKN796VN7290Z4SKWE' where id=4; -update noar ti set v0='18X1DYBNW1OKN796VN7290Z4SKWE' where id=4; -update noar tt set b0='ILM6P1V' where id=4; -update noar ti set b0='ILM6P1V' where id=4; -update noar tt set v0='R755QIYZLK1CN09G572' where id=4; -update noar ti set v0='R755QIYZLK1CN09G572' where id=4; -update noar tt set b1='6F' where id=4; -update noar ti set b1='6F' where id=4; -update noar tt set v0='E' where id=4; -update noar ti set v0='E' where id=4; -update noar tt set b2='DCVUWKGBDQJFSSGBP' where id=4; -update noar ti set b2='DCVUWKGBDQJFSSGBP' where id=4; -update noar tt set v0='PC5H51' where id=5; -update noar ti set v0='PC5H51' where id=5; -update noar tt set b0='Q' where id=5; -update noar ti set b0='Q' where id=5; -update noar tt set v0='ETN' where id=5; -update noar ti set v0='ETN' where id=5; -update noar tt set b1='5MD4SQIPDPV4QOTPWTAHNN62EE5JEJAO' where id=5; -update noar ti set b1='5MD4SQIPDPV4QOTPWTAHNN62EE5JEJAO' where id=5; -update noar tt set v0='AH4L4' where id=5; -update noar ti set v0='AH4L4' where id=5; -update noar tt set b2='X1PTYLFKYL0' where id=5; -update noar ti set b2='X1PTYLFKYL0' where id=5; -update noar tt set v0='URRG7BE0USKJS0KS80V35TJM' where id=6; -update noar ti set v0='URRG7BE0USKJS0KS80V35TJM' where id=6; -update noar tt set b0='59QP2LEWOK4UJLU7879KDVWZYB' where id=6; -update noar ti set b0='59QP2LEWOK4UJLU7879KDVWZYB' where id=6; -update noar tt set v0='W3VN' where id=6; -update noar ti set v0='W3VN' where id=6; -update noar tt set b1='AI8A09Y' where id=6; -update noar ti set b1='AI8A09Y' where id=6; -update noar tt set v0='7FK2BF' where id=6; -update noar ti set v0='7FK2BF' where id=6; -update noar tt set b2='XBMXD8W8KVFR5EYOQFWXE' where id=6; -update noar ti set b2='XBMXD8W8KVFR5EYOQFWXE' where id=6; -update noar tt set v0='16H861Z8OYSQ4HAKPHPC5RPPCHAU' where id=7; -update noar ti set v0='16H861Z8OYSQ4HAKPHPC5RPPCHAU' where id=7; -update noar tt set b0='7CSMB993KJB8' where id=7; -update noar ti set b0='7CSMB993KJB8' where id=7; -update noar tt set v0='86W2ROZ7MOWO6YUWS82E' where id=7; -update noar ti set v0='86W2ROZ7MOWO6YUWS82E' where id=7; -update noar tt set b1='H5LZP06DZGB9J7O' where id=7; -update noar ti set b1='H5LZP06DZGB9J7O' where id=7; -update noar tt set v0='EFV72O9IN7X8A79B95UD2C77LIFCH' where id=7; -update noar ti set v0='EFV72O9IN7X8A79B95UD2C77LIFCH' where id=7; -update noar tt set b2='N21TAZPP1G' where id=7; -update noar ti set b2='N21TAZPP1G' where id=7; -update noar tt set v0='OC1Q2H7T0TRB97OVM6' where id=8; -update noar ti set v0='OC1Q2H7T0TRB97OVM6' where id=8; -update noar tt set b0='W8DOSD6X5CR' where id=8; -update noar ti set b0='W8DOSD6X5CR' where id=8; -update noar tt set v0='XXEW1VDAXP0A6WELG5RZO5ITIJD6' where id=8; -update noar ti set v0='XXEW1VDAXP0A6WELG5RZO5ITIJD6' where id=8; -update noar tt set b1='WG3PC00JI6AO69I3ABWOW4C80JHIPL6X' where id=8; -update noar ti set b1='WG3PC00JI6AO69I3ABWOW4C80JHIPL6X' where id=8; -update noar tt set v0='WIEJE8ULP7KB8JVIYQ6BBWDJ5LNJHW' where id=8; -update noar ti set v0='WIEJE8ULP7KB8JVIYQ6BBWDJ5LNJHW' where id=8; -update noar tt set b2='RPFVCK3MGEQ' where id=8; -update noar ti set b2='RPFVCK3MGEQ' where id=8; -update noar tt set v0='T05KTFLZIK8Q2RX67XFB3' where id=9; -update noar ti set v0='T05KTFLZIK8Q2RX67XFB3' where id=9; -update noar tt set b0='VDKLOT3SFEJKU9LJ3BKPIC6U1JK8YUIB' where id=9; -update noar ti set b0='VDKLOT3SFEJKU9LJ3BKPIC6U1JK8YUIB' where id=9; -update noar tt set v0='V9BV08UTPQ2BF4BB49AMAP23B' where id=9; -update noar ti set v0='V9BV08UTPQ2BF4BB49AMAP23B' where id=9; -update noar tt set b1='PA24CEW9VI5V60A6JS9EP' where id=9; -update noar ti set b1='PA24CEW9VI5V60A6JS9EP' where id=9; -update noar tt set v0='U9A4Q8K84X2S2TIRGBPHM0AQXQOK2EK3' where id=9; -update noar ti set v0='U9A4Q8K84X2S2TIRGBPHM0AQXQOK2EK3' where id=9; -update noar tt set b2='O7Q7KOEW26B918A34F' where id=9; -update noar ti set b2='O7Q7KOEW26B918A34F' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - v0 varchar(32) not null, - b0 mediumblob not null, - b1 blob not null, - b2 mediumblob not null -) engine=tokudb; -insert into tt values (1,'','','',''); -insert into tt values (2,'','','',''); -insert into tt values (3,'','','',''); -insert into tt values (4,'','','',''); -insert into tt values (5,'','','',''); -insert into tt values (6,'','','',''); -insert into tt values (7,'','','',''); -insert into tt values (8,'','','',''); -insert into tt values (9,'','','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='2ZP4G' where id=1; -update noar ti set v0='2ZP4G' where id=1; -update noar tt set b0='01LEI6LGA79NN3J' where id=1; -update noar ti set b0='01LEI6LGA79NN3J' where id=1; -update noar tt set v0='N4V' where id=1; -update noar ti set v0='N4V' where id=1; -update noar tt set b1='4X2I4E' where id=1; -update noar ti set b1='4X2I4E' where id=1; -update noar tt set v0='QDIXK' where id=1; -update noar ti set v0='QDIXK' where id=1; -update noar tt set b2='HDJUDDIWR' where id=1; -update noar ti set b2='HDJUDDIWR' where id=1; -update noar tt set v0='OEF' where id=2; -update noar ti set v0='OEF' where id=2; -update noar tt set b0='JQI5PPZEQY4PIUOLJZS3M' where id=2; -update noar ti set b0='JQI5PPZEQY4PIUOLJZS3M' where id=2; -update noar tt set v0='PCN' where id=2; -update noar ti set v0='PCN' where id=2; -update noar tt set b1='450700GHCWQ' where id=2; -update noar ti set b1='450700GHCWQ' where id=2; -update noar tt set v0='44TJVJLBEWOXUED1CQGDGFNHZ' where id=2; -update noar ti set v0='44TJVJLBEWOXUED1CQGDGFNHZ' where id=2; -update noar tt set b2='2HOR702CXVMDI0' where id=2; -update noar ti set b2='2HOR702CXVMDI0' where id=2; -update noar tt set v0='XT9JKQUF1JK36H8LEOL31648J2L0CK' where id=3; -update noar ti set v0='XT9JKQUF1JK36H8LEOL31648J2L0CK' where id=3; -update noar tt set b0='C08AJVG8ZC' where id=3; -update noar ti set b0='C08AJVG8ZC' where id=3; -update noar tt set v0='C28U2XGQAAYG44' where id=3; -update noar ti set v0='C28U2XGQAAYG44' where id=3; -update noar tt set b1='K4YPM7C' where id=3; -update noar ti set b1='K4YPM7C' where id=3; -update noar tt set v0='RWZTH8H1D8CRIPQOVSTJ9X3K' where id=3; -update noar ti set v0='RWZTH8H1D8CRIPQOVSTJ9X3K' where id=3; -update noar tt set b2='9B8FBRLA7A28R2' where id=3; -update noar ti set b2='9B8FBRLA7A28R2' where id=3; -update noar tt set v0='OAL' where id=4; -update noar ti set v0='OAL' where id=4; -update noar tt set b0='QELOWD2WX22J1SKCMECI78QUDH' where id=4; -update noar ti set b0='QELOWD2WX22J1SKCMECI78QUDH' where id=4; -update noar tt set v0='SZT0J' where id=4; -update noar ti set v0='SZT0J' where id=4; -update noar tt set b1='J' where id=4; -update noar ti set b1='J' where id=4; -update noar tt set v0='4D' where id=4; -update noar ti set v0='4D' where id=4; -update noar tt set b2='T2BBZBIFJAKOSUV8U' where id=4; -update noar ti set b2='T2BBZBIFJAKOSUV8U' where id=4; -update noar tt set v0='NF0ROOLY' where id=5; -update noar ti set v0='NF0ROOLY' where id=5; -update noar tt set b0='6K3O61HYF498PKS9F60PWM7' where id=5; -update noar ti set b0='6K3O61HYF498PKS9F60PWM7' where id=5; -update noar tt set v0='2BGVY1DTPU4GV6A41Y2DME372DWE' where id=5; -update noar ti set v0='2BGVY1DTPU4GV6A41Y2DME372DWE' where id=5; -update noar tt set b1='ERNZAAZU2AV4DV4DYBZOZOL5H' where id=5; -update noar ti set b1='ERNZAAZU2AV4DV4DYBZOZOL5H' where id=5; -update noar tt set v0='VWT3TWDOW0F7MINAF5QR80DBK' where id=5; -update noar ti set v0='VWT3TWDOW0F7MINAF5QR80DBK' where id=5; -update noar tt set b2='G13E5OPP2V4' where id=5; -update noar ti set b2='G13E5OPP2V4' where id=5; -update noar tt set v0='GWBNI7E8QVL' where id=6; -update noar ti set v0='GWBNI7E8QVL' where id=6; -update noar tt set b0='GCAE' where id=6; -update noar ti set b0='GCAE' where id=6; -update noar tt set v0='42Z5B17W' where id=6; -update noar ti set v0='42Z5B17W' where id=6; -update noar tt set b1='D0DN9' where id=6; -update noar ti set b1='D0DN9' where id=6; -update noar tt set v0='97IAVIVA01ZVGU' where id=6; -update noar ti set v0='97IAVIVA01ZVGU' where id=6; -update noar tt set b2='GRJO5HU7HSA9PB' where id=6; -update noar ti set b2='GRJO5HU7HSA9PB' where id=6; -update noar tt set v0='OH' where id=7; -update noar ti set v0='OH' where id=7; -update noar tt set b0='6BY82J9L2HZCWY0FY0W' where id=7; -update noar ti set b0='6BY82J9L2HZCWY0FY0W' where id=7; -update noar tt set v0='5JH5BYC4MMM3RHC8R9X0A' where id=7; -update noar ti set v0='5JH5BYC4MMM3RHC8R9X0A' where id=7; -update noar tt set b1='UQ7KK3FAJ7LSSPWA75SWCAZJCTRX' where id=7; -update noar ti set b1='UQ7KK3FAJ7LSSPWA75SWCAZJCTRX' where id=7; -update noar tt set v0='64LV25LIJWBDCT3Y0JLQG04MV' where id=7; -update noar ti set v0='64LV25LIJWBDCT3Y0JLQG04MV' where id=7; -update noar tt set b2='EQ960JVNXC2K' where id=7; -update noar ti set b2='EQ960JVNXC2K' where id=7; -update noar tt set v0='QP' where id=8; -update noar ti set v0='QP' where id=8; -update noar tt set b0='50H5F34V0JX2AHRNCX0O5K79' where id=8; -update noar ti set b0='50H5F34V0JX2AHRNCX0O5K79' where id=8; -update noar tt set v0='G8YSYAKL6JV' where id=8; -update noar ti set v0='G8YSYAKL6JV' where id=8; -update noar tt set b1='2M3EV01GIG2BDBBZNWD3E1RYS6T' where id=8; -update noar ti set b1='2M3EV01GIG2BDBBZNWD3E1RYS6T' where id=8; -update noar tt set v0='5DHUHZE3' where id=8; -update noar ti set v0='5DHUHZE3' where id=8; -update noar tt set b2='CXK5HHVF2LVUIFVHA5' where id=8; -update noar ti set b2='CXK5HHVF2LVUIFVHA5' where id=8; -update noar tt set v0='E3BMKSHIKWSGNHCWP' where id=9; -update noar ti set v0='E3BMKSHIKWSGNHCWP' where id=9; -update noar tt set b0='0UQFIJSPHTHVMT3AMCTJ4XWE56' where id=9; -update noar ti set b0='0UQFIJSPHTHVMT3AMCTJ4XWE56' where id=9; -update noar tt set v0='C60S' where id=9; -update noar ti set v0='C60S' where id=9; -update noar tt set b1='C' where id=9; -update noar ti set b1='C' where id=9; -update noar tt set v0='7PNMBG6D39OPYB00OJPOBI1' where id=9; -update noar ti set v0='7PNMBG6D39OPYB00OJPOBI1' where id=9; -update noar tt set b2='3ONR5C7MAO1X5X9N6RKEIEB87RWPPQBT' where id=9; -update noar ti set b2='3ONR5C7MAO1X5X9N6RKEIEB87RWPPQBT' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - v0 varchar(256) not null, - b0 mediumblob not null, - b1 blob not null, - b2 mediumblob not null -) engine=tokudb; -insert into tt values (1,'','','',''); -insert into tt values (2,'','','',''); -insert into tt values (3,'','','',''); -insert into tt values (4,'','','',''); -insert into tt values (5,'','','',''); -insert into tt values (6,'','','',''); -insert into tt values (7,'','','',''); -insert into tt values (8,'','','',''); -insert into tt values (9,'','','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='A4AA3FXYV4DTPJKHYAKUOJW3ZK' where id=1; -update noar ti set v0='A4AA3FXYV4DTPJKHYAKUOJW3ZK' where id=1; -update noar tt set b0='R8IEW' where id=1; -update noar ti set b0='R8IEW' where id=1; -update noar tt set v0='OR0M4TX' where id=1; -update noar ti set v0='OR0M4TX' where id=1; -update noar tt set b1='QJTLO20R' where id=1; -update noar ti set b1='QJTLO20R' where id=1; -update noar tt set v0='NGDQHAI7148MQ22026DJ41EK9FN2Y' where id=1; -update noar ti set v0='NGDQHAI7148MQ22026DJ41EK9FN2Y' where id=1; -update noar tt set b2='S65QS2IL3MMOY08HRFHON2DPBPZDL' where id=1; -update noar ti set b2='S65QS2IL3MMOY08HRFHON2DPBPZDL' where id=1; -update noar tt set v0='FF3XO7' where id=2; -update noar ti set v0='FF3XO7' where id=2; -update noar tt set b0='CGTC' where id=2; -update noar ti set b0='CGTC' where id=2; -update noar tt set v0='DT6WS7GJTLADMRGUQ7V8EZDRWB' where id=2; -update noar ti set v0='DT6WS7GJTLADMRGUQ7V8EZDRWB' where id=2; -update noar tt set b1='UQ55G3FP095A77' where id=2; -update noar ti set b1='UQ55G3FP095A77' where id=2; -update noar tt set v0='QR3HB1SPVQWL80876SMPMESCKY0YI5' where id=2; -update noar ti set v0='QR3HB1SPVQWL80876SMPMESCKY0YI5' where id=2; -update noar tt set b2='WIYEY4CVM4ND' where id=2; -update noar ti set b2='WIYEY4CVM4ND' where id=2; -update noar tt set v0='87F' where id=3; -update noar ti set v0='87F' where id=3; -update noar tt set b0='V73VPVY' where id=3; -update noar ti set b0='V73VPVY' where id=3; -update noar tt set v0='21XNY8' where id=3; -update noar ti set v0='21XNY8' where id=3; -update noar tt set b1='REH5S' where id=3; -update noar ti set b1='REH5S' where id=3; -update noar tt set v0='GOOB18DFUSH8U17V6G0' where id=3; -update noar ti set v0='GOOB18DFUSH8U17V6G0' where id=3; -update noar tt set b2='GA4NUOMAEMEARS3BJ923K' where id=3; -update noar ti set b2='GA4NUOMAEMEARS3BJ923K' where id=3; -update noar tt set v0='6S137V9YMPXJ3Q0I6WC5K' where id=4; -update noar ti set v0='6S137V9YMPXJ3Q0I6WC5K' where id=4; -update noar tt set b0='8IQA1OY3AV9RLCJHKW' where id=4; -update noar ti set b0='8IQA1OY3AV9RLCJHKW' where id=4; -update noar tt set v0='M2ND1' where id=4; -update noar ti set v0='M2ND1' where id=4; -update noar tt set b1='UXZV2GF5FYPEOPKOBPNN4F75HOFL' where id=4; -update noar ti set b1='UXZV2GF5FYPEOPKOBPNN4F75HOFL' where id=4; -update noar tt set v0='HCBTC1UI7VEE6OO' where id=4; -update noar ti set v0='HCBTC1UI7VEE6OO' where id=4; -update noar tt set b2='EUVNBYY9' where id=4; -update noar ti set b2='EUVNBYY9' where id=4; -update noar tt set v0='O78QJ7K7HAR0FZR6K' where id=5; -update noar ti set v0='O78QJ7K7HAR0FZR6K' where id=5; -update noar tt set b0='10OKAVKT2JDOUVUCTRERCY2VR' where id=5; -update noar ti set b0='10OKAVKT2JDOUVUCTRERCY2VR' where id=5; -update noar tt set v0='FAWT4QEK7II0Z6JF' where id=5; -update noar ti set v0='FAWT4QEK7II0Z6JF' where id=5; -update noar tt set b1='3Z3U30DUZ7KZTAZWAHGY' where id=5; -update noar ti set b1='3Z3U30DUZ7KZTAZWAHGY' where id=5; -update noar tt set v0='S4MQ8C3EW9A5R' where id=5; -update noar ti set v0='S4MQ8C3EW9A5R' where id=5; -update noar tt set b2='26Z' where id=5; -update noar ti set b2='26Z' where id=5; -update noar tt set v0='8GB2DBT8V' where id=6; -update noar ti set v0='8GB2DBT8V' where id=6; -update noar tt set b0='OFAUM4J3OQS1NYTNFEZJE2LTRP5BRS' where id=6; -update noar ti set b0='OFAUM4J3OQS1NYTNFEZJE2LTRP5BRS' where id=6; -update noar tt set v0='5YXZVC5A9EWVZ9HGGNP9DX0NJD' where id=6; -update noar ti set v0='5YXZVC5A9EWVZ9HGGNP9DX0NJD' where id=6; -update noar tt set b1='R99BWONGOT0' where id=6; -update noar ti set b1='R99BWONGOT0' where id=6; -update noar tt set v0='LL0VX2VA74DZIE' where id=6; -update noar ti set v0='LL0VX2VA74DZIE' where id=6; -update noar tt set b2='ULDWVM1N7QQZ2B6UM5OUN8NVJDAS003' where id=6; -update noar ti set b2='ULDWVM1N7QQZ2B6UM5OUN8NVJDAS003' where id=6; -update noar tt set v0='WWF9QN8Z6S05PUAE972300L26' where id=7; -update noar ti set v0='WWF9QN8Z6S05PUAE972300L26' where id=7; -update noar tt set b0='BMS3TM3HIKLE0JPJYCPDXZQ9U4O1GPYE' where id=7; -update noar ti set b0='BMS3TM3HIKLE0JPJYCPDXZQ9U4O1GPYE' where id=7; -update noar tt set v0='CWEGE0JEGGJKE5EDY2GGTM' where id=7; -update noar ti set v0='CWEGE0JEGGJKE5EDY2GGTM' where id=7; -update noar tt set b1='QR4GBJ5GQYR88N7E4L9K1ZP' where id=7; -update noar ti set b1='QR4GBJ5GQYR88N7E4L9K1ZP' where id=7; -update noar tt set v0='H3PMCSEU9MPSH' where id=7; -update noar ti set v0='H3PMCSEU9MPSH' where id=7; -update noar tt set b2='RRFISX4EEFU3JBUDRB1KRIVR04FW34' where id=7; -update noar ti set b2='RRFISX4EEFU3JBUDRB1KRIVR04FW34' where id=7; -update noar tt set v0='GPY' where id=8; -update noar ti set v0='GPY' where id=8; -update noar tt set b0='28ISLOSD81EN6YD3ACSXDF' where id=8; -update noar ti set b0='28ISLOSD81EN6YD3ACSXDF' where id=8; -update noar tt set v0='QQT6CN6OD1UWQ' where id=8; -update noar ti set v0='QQT6CN6OD1UWQ' where id=8; -update noar tt set b1='2HVGRSDZDGITT05MQ4IPIOER' where id=8; -update noar ti set b1='2HVGRSDZDGITT05MQ4IPIOER' where id=8; -update noar tt set v0='1SIVJG4CFLL1407AAALM0PZEXB7A65E' where id=8; -update noar ti set v0='1SIVJG4CFLL1407AAALM0PZEXB7A65E' where id=8; -update noar tt set b2='2MTZ4PJR' where id=8; -update noar ti set b2='2MTZ4PJR' where id=8; -update noar tt set v0='667GOGOD0WCETW1TWMT' where id=9; -update noar ti set v0='667GOGOD0WCETW1TWMT' where id=9; -update noar tt set b0='O8J29YPW92CJF2' where id=9; -update noar ti set b0='O8J29YPW92CJF2' where id=9; -update noar tt set v0='PCAMFQ6JRUKDMQ68ICC4KLF' where id=9; -update noar ti set v0='PCAMFQ6JRUKDMQ68ICC4KLF' where id=9; -update noar tt set b1='UGVTRDPGYBFIJTNF2S2INWO0' where id=9; -update noar ti set b1='UGVTRDPGYBFIJTNF2S2INWO0' where id=9; -update noar tt set v0='V4X1JPMZHKF2EMF' where id=9; -update noar ti set v0='V4X1JPMZHKF2EMF' where id=9; -update noar tt set b2='KDZWNS' where id=9; -update noar ti set b2='KDZWNS' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - v0 varchar(32) null, - b0 mediumblob null, - b1 blob null, - b2 longblob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='8MQ2YCFR' where id=1; -update noar ti set v0='8MQ2YCFR' where id=1; -update noar tt set b0='PFA1F6QG4LY21FC8K2' where id=1; -update noar ti set b0='PFA1F6QG4LY21FC8K2' where id=1; -update noar tt set v0='F3SLC6TRE8IUOR2FCVKE4FAX' where id=1; -update noar ti set v0='F3SLC6TRE8IUOR2FCVKE4FAX' where id=1; -update noar tt set b1='BHASSA7NM0XCN21MIEQL5SLCONQS' where id=1; -update noar ti set b1='BHASSA7NM0XCN21MIEQL5SLCONQS' where id=1; -update noar tt set v0='2GRSWH' where id=1; -update noar ti set v0='2GRSWH' where id=1; -update noar tt set b2='4CZ4F15ZHEYG821PQ' where id=1; -update noar ti set b2='4CZ4F15ZHEYG821PQ' where id=1; -update noar tt set v0='9Y4LOWTMNOUCV3IX' where id=2; -update noar ti set v0='9Y4LOWTMNOUCV3IX' where id=2; -update noar tt set b0='8HIDXNK9S4P0EI70I7XGFBA2VWCF' where id=2; -update noar ti set b0='8HIDXNK9S4P0EI70I7XGFBA2VWCF' where id=2; -update noar tt set v0='P0KQ2W3EJZEGAC3' where id=2; -update noar ti set v0='P0KQ2W3EJZEGAC3' where id=2; -update noar tt set b1='21MKQLUHZUGUM2G1VL6JTJGS6X' where id=2; -update noar ti set b1='21MKQLUHZUGUM2G1VL6JTJGS6X' where id=2; -update noar tt set v0='R751A3HRK' where id=2; -update noar ti set v0='R751A3HRK' where id=2; -update noar tt set b2='F33JMZA4E2CSSLW' where id=2; -update noar ti set b2='F33JMZA4E2CSSLW' where id=2; -update noar tt set v0='YVD3GCINTKF070B6FRL6179O4TP' where id=3; -update noar ti set v0='YVD3GCINTKF070B6FRL6179O4TP' where id=3; -update noar tt set b0='TPIKHORNGPZDZY21WP8MVWRPTJTL1H5P' where id=3; -update noar ti set b0='TPIKHORNGPZDZY21WP8MVWRPTJTL1H5P' where id=3; -update noar tt set v0='F6I3WEVWK8AXJW9Q6UC8' where id=3; -update noar ti set v0='F6I3WEVWK8AXJW9Q6UC8' where id=3; -update noar tt set b1='PQOD' where id=3; -update noar ti set b1='PQOD' where id=3; -update noar tt set v0='EA7VW5SB3CNWQ' where id=3; -update noar ti set v0='EA7VW5SB3CNWQ' where id=3; -update noar tt set b2='VVY56UFFFIL' where id=3; -update noar ti set b2='VVY56UFFFIL' where id=3; -update noar tt set v0='ZPGZBU401P2AD' where id=4; -update noar ti set v0='ZPGZBU401P2AD' where id=4; -update noar tt set b0='39HK9KC76BC82HS89Y4CY1H00' where id=4; -update noar ti set b0='39HK9KC76BC82HS89Y4CY1H00' where id=4; -update noar tt set v0='0PMR3ZHSP14HU2VKT9CK676ZP' where id=4; -update noar ti set v0='0PMR3ZHSP14HU2VKT9CK676ZP' where id=4; -update noar tt set b1='4WEWY619KNDBWI16V59YJLU' where id=4; -update noar ti set b1='4WEWY619KNDBWI16V59YJLU' where id=4; -update noar tt set v0='RRYCBO' where id=4; -update noar ti set v0='RRYCBO' where id=4; -update noar tt set b2='VZQS1YIGKJWVWGOKKPXI' where id=4; -update noar ti set b2='VZQS1YIGKJWVWGOKKPXI' where id=4; -update noar tt set v0='UUEADOXZ5QVMST' where id=5; -update noar ti set v0='UUEADOXZ5QVMST' where id=5; -update noar tt set b0='CYTF' where id=5; -update noar ti set b0='CYTF' where id=5; -update noar tt set v0='7GR08064UUKL5P6' where id=5; -update noar ti set v0='7GR08064UUKL5P6' where id=5; -update noar tt set b1='AOCAZYOH4MDQGT4SQA' where id=5; -update noar ti set b1='AOCAZYOH4MDQGT4SQA' where id=5; -update noar tt set v0='HXH6KF7XL9Y5FR1KMU3DAGXSX8PY' where id=5; -update noar ti set v0='HXH6KF7XL9Y5FR1KMU3DAGXSX8PY' where id=5; -update noar tt set b2='DNTOSGXA' where id=5; -update noar ti set b2='DNTOSGXA' where id=5; -update noar tt set v0='D3WALG84SDKPU3WMS5V27' where id=6; -update noar ti set v0='D3WALG84SDKPU3WMS5V27' where id=6; -update noar tt set b0='GZMNXGYTBMLQUQZKM4SEDI6R' where id=6; -update noar ti set b0='GZMNXGYTBMLQUQZKM4SEDI6R' where id=6; -update noar tt set v0='8R7AZY6DYH7MT0E' where id=6; -update noar ti set v0='8R7AZY6DYH7MT0E' where id=6; -update noar tt set b1='0YXI' where id=6; -update noar ti set b1='0YXI' where id=6; -update noar tt set v0='A1BSGA' where id=6; -update noar ti set v0='A1BSGA' where id=6; -update noar tt set b2='V0WEKR22REQAN3UKDGZ4RY2QY' where id=6; -update noar ti set b2='V0WEKR22REQAN3UKDGZ4RY2QY' where id=6; -update noar tt set v0='768FII33UN54Q68P100PT4LBPUYTLBS3' where id=7; -update noar ti set v0='768FII33UN54Q68P100PT4LBPUYTLBS3' where id=7; -update noar tt set b0='0VKHPU2A4C1MH6WIWR4O5FNDRPC2N' where id=7; -update noar ti set b0='0VKHPU2A4C1MH6WIWR4O5FNDRPC2N' where id=7; -update noar tt set v0='ZOMFQ7WUNK124IFFFCAJ1JY3Y07' where id=7; -update noar ti set v0='ZOMFQ7WUNK124IFFFCAJ1JY3Y07' where id=7; -update noar tt set b1='JUQPOXD6' where id=7; -update noar ti set b1='JUQPOXD6' where id=7; -update noar tt set v0='QM4I0FKR76JR8N14PKECY' where id=7; -update noar ti set v0='QM4I0FKR76JR8N14PKECY' where id=7; -update noar tt set b2='HBNIMG00FV3J0SKV1HTOP' where id=7; -update noar ti set b2='HBNIMG00FV3J0SKV1HTOP' where id=7; -update noar tt set v0='K8Z8FUVYPBFT2' where id=8; -update noar ti set v0='K8Z8FUVYPBFT2' where id=8; -update noar tt set b0='T40VI2Z32AHGT' where id=8; -update noar ti set b0='T40VI2Z32AHGT' where id=8; -update noar tt set v0='1BA2D926WT1ZVF164HK7L5UNDJQ7W2XM' where id=8; -update noar ti set v0='1BA2D926WT1ZVF164HK7L5UNDJQ7W2XM' where id=8; -update noar tt set b1='E2MT8HYQJZEXEFH' where id=8; -update noar ti set b1='E2MT8HYQJZEXEFH' where id=8; -update noar tt set v0='EPCDJD9J9VD7UOJ1YIFE5JKR7' where id=8; -update noar ti set v0='EPCDJD9J9VD7UOJ1YIFE5JKR7' where id=8; -update noar tt set b2='FQWKFD83775Q9O3TYP42QA' where id=8; -update noar ti set b2='FQWKFD83775Q9O3TYP42QA' where id=8; -update noar tt set v0='3K207KSNHM4' where id=9; -update noar ti set v0='3K207KSNHM4' where id=9; -update noar tt set b0='LE6GI1B' where id=9; -update noar ti set b0='LE6GI1B' where id=9; -update noar tt set v0='2WCQTY2N7YJM4C7GPGP2NTQN' where id=9; -update noar ti set v0='2WCQTY2N7YJM4C7GPGP2NTQN' where id=9; -update noar tt set b1='6XIVK5RVY1IY66GQEJZXISGVNOM381' where id=9; -update noar ti set b1='6XIVK5RVY1IY66GQEJZXISGVNOM381' where id=9; -update noar tt set v0='Z0SVHJCDXRU71XM7R' where id=9; -update noar ti set v0='Z0SVHJCDXRU71XM7R' where id=9; -update noar tt set b2='F2XXINS0OIMAVLT9W' where id=9; -update noar ti set b2='F2XXINS0OIMAVLT9W' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - v0 varchar(256) null, - b0 mediumblob null, - b1 blob null, - b2 longblob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='ZXAHA9KCIDO7MYN6JF0' where id=1; -update noar ti set v0='ZXAHA9KCIDO7MYN6JF0' where id=1; -update noar tt set b0='HZXGWHMW4T7PBHPS' where id=1; -update noar ti set b0='HZXGWHMW4T7PBHPS' where id=1; -update noar tt set v0='GI' where id=1; -update noar ti set v0='GI' where id=1; -update noar tt set b1='DSVNHETNPM9LOBBO07' where id=1; -update noar ti set b1='DSVNHETNPM9LOBBO07' where id=1; -update noar tt set v0='469GMG3PALC2TXC2RVVICWOYF' where id=1; -update noar ti set v0='469GMG3PALC2TXC2RVVICWOYF' where id=1; -update noar tt set b2='638HJQ2K13SM5TFTS3' where id=1; -update noar ti set b2='638HJQ2K13SM5TFTS3' where id=1; -update noar tt set v0='31LMF83CF9KRQC0LP2VHITBSU9U' where id=2; -update noar ti set v0='31LMF83CF9KRQC0LP2VHITBSU9U' where id=2; -update noar tt set b0='G87LXRXL' where id=2; -update noar ti set b0='G87LXRXL' where id=2; -update noar tt set v0='ZIUGLK2VB390NZ' where id=2; -update noar ti set v0='ZIUGLK2VB390NZ' where id=2; -update noar tt set b1='2Z8YQM' where id=2; -update noar ti set b1='2Z8YQM' where id=2; -update noar tt set v0='WD418INXDHJA' where id=2; -update noar ti set v0='WD418INXDHJA' where id=2; -update noar tt set b2='6OXKD5KV38KEBF0NZ1K' where id=2; -update noar ti set b2='6OXKD5KV38KEBF0NZ1K' where id=2; -update noar tt set v0='CYMIUCERBXVP4CJ' where id=3; -update noar ti set v0='CYMIUCERBXVP4CJ' where id=3; -update noar tt set b0='6147G0H77U' where id=3; -update noar ti set b0='6147G0H77U' where id=3; -update noar tt set v0='F06IDV8O2LBYHT5IR6HDMHIQZ6V7' where id=3; -update noar ti set v0='F06IDV8O2LBYHT5IR6HDMHIQZ6V7' where id=3; -update noar tt set b1='DUGSUM4M8U' where id=3; -update noar ti set b1='DUGSUM4M8U' where id=3; -update noar tt set v0='ROVO1UK' where id=3; -update noar ti set v0='ROVO1UK' where id=3; -update noar tt set b2='24CYUW51G0' where id=3; -update noar ti set b2='24CYUW51G0' where id=3; -update noar tt set v0='HCJU' where id=4; -update noar ti set v0='HCJU' where id=4; -update noar tt set b0='PQJBTRWYFKQPXIW0B8YFS1' where id=4; -update noar ti set b0='PQJBTRWYFKQPXIW0B8YFS1' where id=4; -update noar tt set v0='ZMAYPO6ER' where id=4; -update noar ti set v0='ZMAYPO6ER' where id=4; -update noar tt set b1='GXAWFK7GQNYAMDTGH97391ZUC6' where id=4; -update noar ti set b1='GXAWFK7GQNYAMDTGH97391ZUC6' where id=4; -update noar tt set v0='4GYMUYNFHJLUCIPYK5' where id=4; -update noar ti set v0='4GYMUYNFHJLUCIPYK5' where id=4; -update noar tt set b2='W6A1XHZA9DEQZIP442' where id=4; -update noar ti set b2='W6A1XHZA9DEQZIP442' where id=4; -update noar tt set v0='JL5DIB1ZG68IL' where id=5; -update noar ti set v0='JL5DIB1ZG68IL' where id=5; -update noar tt set b0='VURREKC3D03KRDADXTC715RXPNVM3' where id=5; -update noar ti set b0='VURREKC3D03KRDADXTC715RXPNVM3' where id=5; -update noar tt set v0='XP07RSPJ299IIU1Y6E8' where id=5; -update noar ti set v0='XP07RSPJ299IIU1Y6E8' where id=5; -update noar tt set b1='L9O3F8JS15FX6XG2WNKTX1SY1H6U' where id=5; -update noar ti set b1='L9O3F8JS15FX6XG2WNKTX1SY1H6U' where id=5; -update noar tt set v0='MM6B' where id=5; -update noar ti set v0='MM6B' where id=5; -update noar tt set b2='HVM6HVBVI0HX' where id=5; -update noar ti set b2='HVM6HVBVI0HX' where id=5; -update noar tt set v0='OS2PNDORQ8I86YN1KM4OC' where id=6; -update noar ti set v0='OS2PNDORQ8I86YN1KM4OC' where id=6; -update noar tt set b0='AV8VY2WLQU10M6NDTM59GRU8EHCLQR' where id=6; -update noar ti set b0='AV8VY2WLQU10M6NDTM59GRU8EHCLQR' where id=6; -update noar tt set v0='4JJNP148OUHMJ3EGIOHOA' where id=6; -update noar ti set v0='4JJNP148OUHMJ3EGIOHOA' where id=6; -update noar tt set b1='C' where id=6; -update noar ti set b1='C' where id=6; -update noar tt set v0='JSJTKGT3U9ZLMTH5AKR4U5SHMQ' where id=6; -update noar ti set v0='JSJTKGT3U9ZLMTH5AKR4U5SHMQ' where id=6; -update noar tt set b2='15A4BMDBV1X64' where id=6; -update noar ti set b2='15A4BMDBV1X64' where id=6; -update noar tt set v0='OVT5FZH3YI1FBYQVCXK1OR' where id=7; -update noar ti set v0='OVT5FZH3YI1FBYQVCXK1OR' where id=7; -update noar tt set b0='YRY5WJD9HEAC2Q0XL' where id=7; -update noar ti set b0='YRY5WJD9HEAC2Q0XL' where id=7; -update noar tt set v0='P5V009NA8OG6MYEZP8VKM2R8K15' where id=7; -update noar ti set v0='P5V009NA8OG6MYEZP8VKM2R8K15' where id=7; -update noar tt set b1='Z7PR7B2AE6' where id=7; -update noar ti set b1='Z7PR7B2AE6' where id=7; -update noar tt set v0='28SMM2OFCE83W9PZN' where id=7; -update noar ti set v0='28SMM2OFCE83W9PZN' where id=7; -update noar tt set b2='RMVZ2FZ5JB' where id=7; -update noar ti set b2='RMVZ2FZ5JB' where id=7; -update noar tt set v0='FP' where id=8; -update noar ti set v0='FP' where id=8; -update noar tt set b0='Q4NWQ' where id=8; -update noar ti set b0='Q4NWQ' where id=8; -update noar tt set v0='PC59FLLRHOH1XY9GL3F' where id=8; -update noar ti set v0='PC59FLLRHOH1XY9GL3F' where id=8; -update noar tt set b1='CB3E25TWUFO5LQBGR350ZK50VLCV' where id=8; -update noar ti set b1='CB3E25TWUFO5LQBGR350ZK50VLCV' where id=8; -update noar tt set v0='87W71S3TD2IB9NL0LIXJ5D2LWOA' where id=8; -update noar ti set v0='87W71S3TD2IB9NL0LIXJ5D2LWOA' where id=8; -update noar tt set b2='XW7M' where id=8; -update noar ti set b2='XW7M' where id=8; -update noar tt set v0='5RG9BBYLBV' where id=9; -update noar ti set v0='5RG9BBYLBV' where id=9; -update noar tt set b0='YH0MD718RL' where id=9; -update noar ti set b0='YH0MD718RL' where id=9; -update noar tt set v0='355O3IB' where id=9; -update noar ti set v0='355O3IB' where id=9; -update noar tt set b1='DMKSG9UV9E0BVPC74Y3W6' where id=9; -update noar ti set b1='DMKSG9UV9E0BVPC74Y3W6' where id=9; -update noar tt set v0='8IYOIY86E' where id=9; -update noar ti set v0='8IYOIY86E' where id=9; -update noar tt set b2='JWBWUD2UOVL665XG9O2' where id=9; -update noar ti set b2='JWBWUD2UOVL665XG9O2' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - v0 varchar(32) not null, - b0 mediumblob not null, - b1 blob not null, - b2 longblob not null -) engine=tokudb; -insert into tt values (1,'','','',''); -insert into tt values (2,'','','',''); -insert into tt values (3,'','','',''); -insert into tt values (4,'','','',''); -insert into tt values (5,'','','',''); -insert into tt values (6,'','','',''); -insert into tt values (7,'','','',''); -insert into tt values (8,'','','',''); -insert into tt values (9,'','','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='53NJXRWODZ00H0P' where id=1; -update noar ti set v0='53NJXRWODZ00H0P' where id=1; -update noar tt set b0='Q' where id=1; -update noar ti set b0='Q' where id=1; -update noar tt set v0='LFXBBYJM' where id=1; -update noar ti set v0='LFXBBYJM' where id=1; -update noar tt set b1='FQDNKXWV87BCK792UTT2GVTMOOAX7' where id=1; -update noar ti set b1='FQDNKXWV87BCK792UTT2GVTMOOAX7' where id=1; -update noar tt set v0='SYL32JY5KP3J6G2Y' where id=1; -update noar ti set v0='SYL32JY5KP3J6G2Y' where id=1; -update noar tt set b2='U4YF' where id=1; -update noar ti set b2='U4YF' where id=1; -update noar tt set v0='VI0D2S5341KY2Q36JHTR' where id=2; -update noar ti set v0='VI0D2S5341KY2Q36JHTR' where id=2; -update noar tt set b0='4IOP2NA7T03LPQXEPCMIKZB1IRED0' where id=2; -update noar ti set b0='4IOP2NA7T03LPQXEPCMIKZB1IRED0' where id=2; -update noar tt set v0='NZWKB2VXFNU3AVA5QZSZQ3N' where id=2; -update noar ti set v0='NZWKB2VXFNU3AVA5QZSZQ3N' where id=2; -update noar tt set b1='A2L' where id=2; -update noar ti set b1='A2L' where id=2; -update noar tt set v0='SKYND9HJ6NK9YZ0T1' where id=2; -update noar ti set v0='SKYND9HJ6NK9YZ0T1' where id=2; -update noar tt set b2='WU1AXK74NQZLIU20RCTM3P8BKV' where id=2; -update noar ti set b2='WU1AXK74NQZLIU20RCTM3P8BKV' where id=2; -update noar tt set v0='DKN88' where id=3; -update noar ti set v0='DKN88' where id=3; -update noar tt set b0='ZC525KRA6SE7G3US5MUQLGE86G87D' where id=3; -update noar ti set b0='ZC525KRA6SE7G3US5MUQLGE86G87D' where id=3; -update noar tt set v0='CZWWUFQGS93NNS4' where id=3; -update noar ti set v0='CZWWUFQGS93NNS4' where id=3; -update noar tt set b1='35K55I1M7DTG4VEOR2B9PNS24OILM' where id=3; -update noar ti set b1='35K55I1M7DTG4VEOR2B9PNS24OILM' where id=3; -update noar tt set v0='EDDIP9IYAFXMUXWNY' where id=3; -update noar ti set v0='EDDIP9IYAFXMUXWNY' where id=3; -update noar tt set b2='513UJZQEGYUJN' where id=3; -update noar ti set b2='513UJZQEGYUJN' where id=3; -update noar tt set v0='2EM25ILRC41Q' where id=4; -update noar ti set v0='2EM25ILRC41Q' where id=4; -update noar tt set b0='YB8862QIDIQLX' where id=4; -update noar ti set b0='YB8862QIDIQLX' where id=4; -update noar tt set v0='A64ZQAV6H1XFFHI7WKN5PDR71X79' where id=4; -update noar ti set v0='A64ZQAV6H1XFFHI7WKN5PDR71X79' where id=4; -update noar tt set b1='E602RTBF4YLY' where id=4; -update noar ti set b1='E602RTBF4YLY' where id=4; -update noar tt set v0='GK55ETJQT954' where id=4; -update noar ti set v0='GK55ETJQT954' where id=4; -update noar tt set b2='K' where id=4; -update noar ti set b2='K' where id=4; -update noar tt set v0='IFR65JDTP9AUL7XP57X01' where id=5; -update noar ti set v0='IFR65JDTP9AUL7XP57X01' where id=5; -update noar tt set b0='XRPGQ5IPQIPJDR3FF5' where id=5; -update noar ti set b0='XRPGQ5IPQIPJDR3FF5' where id=5; -update noar tt set v0='90ABFY4EH0BMNQX079B' where id=5; -update noar ti set v0='90ABFY4EH0BMNQX079B' where id=5; -update noar tt set b1='IPBPSCH359J72HHM8R' where id=5; -update noar ti set b1='IPBPSCH359J72HHM8R' where id=5; -update noar tt set v0='WDOIIDSM8UDFSTXQMO' where id=5; -update noar ti set v0='WDOIIDSM8UDFSTXQMO' where id=5; -update noar tt set b2='C1SYUE0DSMSS72MPJMRE' where id=5; -update noar ti set b2='C1SYUE0DSMSS72MPJMRE' where id=5; -update noar tt set v0='D71MRM1Q7WS4DAW6EBI1KK8JT7AYMW' where id=6; -update noar ti set v0='D71MRM1Q7WS4DAW6EBI1KK8JT7AYMW' where id=6; -update noar tt set b0='QGDBNCWW054I5X0A' where id=6; -update noar ti set b0='QGDBNCWW054I5X0A' where id=6; -update noar tt set v0='2KNG' where id=6; -update noar ti set v0='2KNG' where id=6; -update noar tt set b1='M6PWKQAOIK4GQVFM' where id=6; -update noar ti set b1='M6PWKQAOIK4GQVFM' where id=6; -update noar tt set v0='V0FEYSZTJ3QSGST7M9WX57ERK' where id=6; -update noar ti set v0='V0FEYSZTJ3QSGST7M9WX57ERK' where id=6; -update noar tt set b2='QVQLMJ7T0RW2O1D7UCO6C6CO9' where id=6; -update noar ti set b2='QVQLMJ7T0RW2O1D7UCO6C6CO9' where id=6; -update noar tt set v0='S9UBSPA2LOX' where id=7; -update noar ti set v0='S9UBSPA2LOX' where id=7; -update noar tt set b0='SED4OQN4PKDSPWBIU1QY53K7P' where id=7; -update noar ti set b0='SED4OQN4PKDSPWBIU1QY53K7P' where id=7; -update noar tt set v0='F' where id=7; -update noar ti set v0='F' where id=7; -update noar tt set b1='JJ1EYCB81DGM1DTFE' where id=7; -update noar ti set b1='JJ1EYCB81DGM1DTFE' where id=7; -update noar tt set v0='SEKYO08VM4KQEZINA8QMQGFY6EE3M' where id=7; -update noar ti set v0='SEKYO08VM4KQEZINA8QMQGFY6EE3M' where id=7; -update noar tt set b2='OYHQPDC7UL5DZSWK3C6228TPQIFB4' where id=7; -update noar ti set b2='OYHQPDC7UL5DZSWK3C6228TPQIFB4' where id=7; -update noar tt set v0='QKQW9I6L7C' where id=8; -update noar ti set v0='QKQW9I6L7C' where id=8; -update noar tt set b0='EPFNTG7M3AR29CT' where id=8; -update noar ti set b0='EPFNTG7M3AR29CT' where id=8; -update noar tt set v0='AXUCJGLQI20UKEWGS98Y7SJWX' where id=8; -update noar ti set v0='AXUCJGLQI20UKEWGS98Y7SJWX' where id=8; -update noar tt set b1='IN12HEJL5VRZV8HMS2E3JR475Y2' where id=8; -update noar ti set b1='IN12HEJL5VRZV8HMS2E3JR475Y2' where id=8; -update noar tt set v0='XFJMZSZMQJF' where id=8; -update noar ti set v0='XFJMZSZMQJF' where id=8; -update noar tt set b2='TN439ONA2C577G9RLWS5FKWII1JA5' where id=8; -update noar ti set b2='TN439ONA2C577G9RLWS5FKWII1JA5' where id=8; -update noar tt set v0='W5UYO' where id=9; -update noar ti set v0='W5UYO' where id=9; -update noar tt set b0='1VXO4SO1VJBFUYPQJ0Z' where id=9; -update noar ti set b0='1VXO4SO1VJBFUYPQJ0Z' where id=9; -update noar tt set v0='F8EYU5O7VUBNPA3ZSE40LMPUG5M46' where id=9; -update noar ti set v0='F8EYU5O7VUBNPA3ZSE40LMPUG5M46' where id=9; -update noar tt set b1='VSCC1APBTFJHNXAD96UVQOQM8G58YUW' where id=9; -update noar ti set b1='VSCC1APBTFJHNXAD96UVQOQM8G58YUW' where id=9; -update noar tt set v0='OLPM6C' where id=9; -update noar ti set v0='OLPM6C' where id=9; -update noar tt set b2='61ERRVAM' where id=9; -update noar ti set b2='61ERRVAM' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - v0 varchar(256) not null, - b0 mediumblob not null, - b1 blob not null, - b2 longblob not null -) engine=tokudb; -insert into tt values (1,'','','',''); -insert into tt values (2,'','','',''); -insert into tt values (3,'','','',''); -insert into tt values (4,'','','',''); -insert into tt values (5,'','','',''); -insert into tt values (6,'','','',''); -insert into tt values (7,'','','',''); -insert into tt values (8,'','','',''); -insert into tt values (9,'','','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='NSHLIY1U423Y2HQSJDRE6PZI7B1' where id=1; -update noar ti set v0='NSHLIY1U423Y2HQSJDRE6PZI7B1' where id=1; -update noar tt set b0='VABL6HL9UUB5' where id=1; -update noar ti set b0='VABL6HL9UUB5' where id=1; -update noar tt set v0='0QSQTRBA6WIK5RX8TTESB1' where id=1; -update noar ti set v0='0QSQTRBA6WIK5RX8TTESB1' where id=1; -update noar tt set b1='LALW8OY22L' where id=1; -update noar ti set b1='LALW8OY22L' where id=1; -update noar tt set v0='ZI0BXLLJL3' where id=1; -update noar ti set v0='ZI0BXLLJL3' where id=1; -update noar tt set b2='S9HHJYL3OPWFBC0HRPEL0G7RFB8' where id=1; -update noar ti set b2='S9HHJYL3OPWFBC0HRPEL0G7RFB8' where id=1; -update noar tt set v0='YOJJRWZHJYRMZ' where id=2; -update noar ti set v0='YOJJRWZHJYRMZ' where id=2; -update noar tt set b0='GX8QW9X' where id=2; -update noar ti set b0='GX8QW9X' where id=2; -update noar tt set v0='ZTZ9YYL061BQFTMS0ZAJJT' where id=2; -update noar ti set v0='ZTZ9YYL061BQFTMS0ZAJJT' where id=2; -update noar tt set b1='MLJNCCSF7V9XDYDT69X7SIYSO' where id=2; -update noar ti set b1='MLJNCCSF7V9XDYDT69X7SIYSO' where id=2; -update noar tt set v0='7BDEXA74YEBZVAQP70' where id=2; -update noar ti set v0='7BDEXA74YEBZVAQP70' where id=2; -update noar tt set b2='YOZ1ZFC7O' where id=2; -update noar ti set b2='YOZ1ZFC7O' where id=2; -update noar tt set v0='LK4B9LW' where id=3; -update noar ti set v0='LK4B9LW' where id=3; -update noar tt set b0='GJNADVGYW17TZ8PRKPGC2Y2VXTYU5SFO' where id=3; -update noar ti set b0='GJNADVGYW17TZ8PRKPGC2Y2VXTYU5SFO' where id=3; -update noar tt set v0='C09MSQYBKFTTT14' where id=3; -update noar ti set v0='C09MSQYBKFTTT14' where id=3; -update noar tt set b1='C5P6PHI3DS1RN9Z6GKBVFIVRRLXAPN10' where id=3; -update noar ti set b1='C5P6PHI3DS1RN9Z6GKBVFIVRRLXAPN10' where id=3; -update noar tt set v0='NQFX9CKKWL2BLIN7' where id=3; -update noar ti set v0='NQFX9CKKWL2BLIN7' where id=3; -update noar tt set b2='ZITORHH66JSN1HLMKZFSRIZZ' where id=3; -update noar ti set b2='ZITORHH66JSN1HLMKZFSRIZZ' where id=3; -update noar tt set v0='DOUN60SVXDJ9ALD6B95NOTKUSE7VJTAO' where id=4; -update noar ti set v0='DOUN60SVXDJ9ALD6B95NOTKUSE7VJTAO' where id=4; -update noar tt set b0='B1Y2JFRQ38GDAFOTT592KQKC3MVT' where id=4; -update noar ti set b0='B1Y2JFRQ38GDAFOTT592KQKC3MVT' where id=4; -update noar tt set v0='DIBG0XDOUXE9KA2OLXVWWYZNCTRX1' where id=4; -update noar ti set v0='DIBG0XDOUXE9KA2OLXVWWYZNCTRX1' where id=4; -update noar tt set b1='RAKX3HNE42MT0LEU5VN84KK7' where id=4; -update noar ti set b1='RAKX3HNE42MT0LEU5VN84KK7' where id=4; -update noar tt set v0='J8F1SQAE8YIKZ8GAKMKYMRQWFLE' where id=4; -update noar ti set v0='J8F1SQAE8YIKZ8GAKMKYMRQWFLE' where id=4; -update noar tt set b2='3FSV8Z4ZEAG8FWWSD' where id=4; -update noar ti set b2='3FSV8Z4ZEAG8FWWSD' where id=4; -update noar tt set v0='PS5G9KCN9Z7D6MZGY' where id=5; -update noar ti set v0='PS5G9KCN9Z7D6MZGY' where id=5; -update noar tt set b0='25VFXPCQKWZE6I1JK' where id=5; -update noar ti set b0='25VFXPCQKWZE6I1JK' where id=5; -update noar tt set v0='WWTKFAP11TY47JAD' where id=5; -update noar ti set v0='WWTKFAP11TY47JAD' where id=5; -update noar tt set b1='NSC9NG5E4U87' where id=5; -update noar ti set b1='NSC9NG5E4U87' where id=5; -update noar tt set v0='Q6EA8DQR04ZHO6JUMK9R5CSO' where id=5; -update noar ti set v0='Q6EA8DQR04ZHO6JUMK9R5CSO' where id=5; -update noar tt set b2='OBRWATVWS4X7EEZLW0ZUS5YMF' where id=5; -update noar ti set b2='OBRWATVWS4X7EEZLW0ZUS5YMF' where id=5; -update noar tt set v0='Y' where id=6; -update noar ti set v0='Y' where id=6; -update noar tt set b0='GTM9MDR94T39' where id=6; -update noar ti set b0='GTM9MDR94T39' where id=6; -update noar tt set v0='MSFRV01L9P' where id=6; -update noar ti set v0='MSFRV01L9P' where id=6; -update noar tt set b1='ED2IAIAQ3M8QNB7E3CP' where id=6; -update noar ti set b1='ED2IAIAQ3M8QNB7E3CP' where id=6; -update noar tt set v0='X9TU3OOOGO7GSXKPMJ5O' where id=6; -update noar ti set v0='X9TU3OOOGO7GSXKPMJ5O' where id=6; -update noar tt set b2='M4LLW5HUSMA60L1O218Z7KWXT3F8L' where id=6; -update noar ti set b2='M4LLW5HUSMA60L1O218Z7KWXT3F8L' where id=6; -update noar tt set v0='RJB' where id=7; -update noar ti set v0='RJB' where id=7; -update noar tt set b0='153SQWKJCOZKQANGE' where id=7; -update noar ti set b0='153SQWKJCOZKQANGE' where id=7; -update noar tt set v0='2FQFTXN9CR82P1' where id=7; -update noar ti set v0='2FQFTXN9CR82P1' where id=7; -update noar tt set b1='MFY' where id=7; -update noar ti set b1='MFY' where id=7; -update noar tt set v0='SKWK78N0JRVQFQSNK1MOWAEBR' where id=7; -update noar ti set v0='SKWK78N0JRVQFQSNK1MOWAEBR' where id=7; -update noar tt set b2='2P1IBF7T27LVEVMZHRFSYUM11' where id=7; -update noar ti set b2='2P1IBF7T27LVEVMZHRFSYUM11' where id=7; -update noar tt set v0='4QX' where id=8; -update noar ti set v0='4QX' where id=8; -update noar tt set b0='NGHBI3GWHK86Z2U4GAMDI3YHE' where id=8; -update noar ti set b0='NGHBI3GWHK86Z2U4GAMDI3YHE' where id=8; -update noar tt set v0='4441XKWYCAOD4YOEOR831WIYMH9MTT' where id=8; -update noar ti set v0='4441XKWYCAOD4YOEOR831WIYMH9MTT' where id=8; -update noar tt set b1='A2ORVUD' where id=8; -update noar ti set b1='A2ORVUD' where id=8; -update noar tt set v0='E092CX2NKC256BPH1RNHJAGOW391BMY1' where id=8; -update noar ti set v0='E092CX2NKC256BPH1RNHJAGOW391BMY1' where id=8; -update noar tt set b2='K3BJR3PDKTNH52PPJJIUD9JLRXNMY2K9' where id=8; -update noar ti set b2='K3BJR3PDKTNH52PPJJIUD9JLRXNMY2K9' where id=8; -update noar tt set v0='VW7MM6XU4ZF0LSL6531WTJ5A' where id=9; -update noar ti set v0='VW7MM6XU4ZF0LSL6531WTJ5A' where id=9; -update noar tt set b0='Q30O1UHU' where id=9; -update noar ti set b0='Q30O1UHU' where id=9; -update noar tt set v0='DD9MBAFXKXMORAPO03FEEBFIS0OLPSJ' where id=9; -update noar ti set v0='DD9MBAFXKXMORAPO03FEEBFIS0OLPSJ' where id=9; -update noar tt set b1='UDNI50X1714QESXPJAEG6KFWN3T' where id=9; -update noar ti set b1='UDNI50X1714QESXPJAEG6KFWN3T' where id=9; -update noar tt set v0='0' where id=9; -update noar ti set v0='0' where id=9; -update noar tt set b2='O6H29BGGYZ1M5KLR2DR35' where id=9; -update noar ti set b2='O6H29BGGYZ1M5KLR2DR35' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - v0 varchar(32) null, - b0 mediumblob null, - b1 mediumblob null, - b2 tinyblob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='02WIPE8AS' where id=1; -update noar ti set v0='02WIPE8AS' where id=1; -update noar tt set b0='Q' where id=1; -update noar ti set b0='Q' where id=1; -update noar tt set v0='U6A4NPVVNTG81KRLEV0BBFNNVTFUBO' where id=1; -update noar ti set v0='U6A4NPVVNTG81KRLEV0BBFNNVTFUBO' where id=1; -update noar tt set b1='WDB8' where id=1; -update noar ti set b1='WDB8' where id=1; -update noar tt set v0='5LBGKCZX9UJRDB' where id=1; -update noar ti set v0='5LBGKCZX9UJRDB' where id=1; -update noar tt set b2='NN6A1IZSA6MNPR35CFL8UPQ' where id=1; -update noar ti set b2='NN6A1IZSA6MNPR35CFL8UPQ' where id=1; -update noar tt set v0='K8G55IME4GZ4' where id=2; -update noar ti set v0='K8G55IME4GZ4' where id=2; -update noar tt set b0='GAIYM36GR0TWRALL61E' where id=2; -update noar ti set b0='GAIYM36GR0TWRALL61E' where id=2; -update noar tt set v0='NCY1UXKF2ZWP9PGFS3PBMPOP90' where id=2; -update noar ti set v0='NCY1UXKF2ZWP9PGFS3PBMPOP90' where id=2; -update noar tt set b1='2TG' where id=2; -update noar ti set b1='2TG' where id=2; -update noar tt set v0='2AFJFY8285A' where id=2; -update noar ti set v0='2AFJFY8285A' where id=2; -update noar tt set b2='W49R8E96BAX' where id=2; -update noar ti set b2='W49R8E96BAX' where id=2; -update noar tt set v0='VQU48DKJGWZSG27HH51' where id=3; -update noar ti set v0='VQU48DKJGWZSG27HH51' where id=3; -update noar tt set b0='WVJIRIOSB1MC1' where id=3; -update noar ti set b0='WVJIRIOSB1MC1' where id=3; -update noar tt set v0='46YG' where id=3; -update noar ti set v0='46YG' where id=3; -update noar tt set b1='W80I94C6C1570ALIW2R0AXSRMCGEAOC' where id=3; -update noar ti set b1='W80I94C6C1570ALIW2R0AXSRMCGEAOC' where id=3; -update noar tt set v0='58TSIDW74PPMGI5K9FTV8' where id=3; -update noar ti set v0='58TSIDW74PPMGI5K9FTV8' where id=3; -update noar tt set b2='8T45DBQ3HF4OLW6ULR9GXTB' where id=3; -update noar ti set b2='8T45DBQ3HF4OLW6ULR9GXTB' where id=3; -update noar tt set v0='XXCQ9' where id=4; -update noar ti set v0='XXCQ9' where id=4; -update noar tt set b0='FJG3W74BGRD962QMEY' where id=4; -update noar ti set b0='FJG3W74BGRD962QMEY' where id=4; -update noar tt set v0='6SO83PIRN05YQ9GP6Z7I' where id=4; -update noar ti set v0='6SO83PIRN05YQ9GP6Z7I' where id=4; -update noar tt set b1='UCXDQ4CURUTIA3I11' where id=4; -update noar ti set b1='UCXDQ4CURUTIA3I11' where id=4; -update noar tt set v0='08NZ521CJI7AOU1129JIE8T2A' where id=4; -update noar ti set v0='08NZ521CJI7AOU1129JIE8T2A' where id=4; -update noar tt set b2='GVVOERSLMYRKZXAULJPY' where id=4; -update noar ti set b2='GVVOERSLMYRKZXAULJPY' where id=4; -update noar tt set v0='LU40357O1R7K9R47J12MLTGW' where id=5; -update noar ti set v0='LU40357O1R7K9R47J12MLTGW' where id=5; -update noar tt set b0='3YNMDV' where id=5; -update noar ti set b0='3YNMDV' where id=5; -update noar tt set v0='WOJ9HOG8M6K0' where id=5; -update noar ti set v0='WOJ9HOG8M6K0' where id=5; -update noar tt set b1='79VJWEYV0FIIQ3DC13ACNRX' where id=5; -update noar ti set b1='79VJWEYV0FIIQ3DC13ACNRX' where id=5; -update noar tt set v0='XONPQPN7JE0CHPE9J' where id=5; -update noar ti set v0='XONPQPN7JE0CHPE9J' where id=5; -update noar tt set b2='CSDKN30HKF0C3QL6LBOR' where id=5; -update noar ti set b2='CSDKN30HKF0C3QL6LBOR' where id=5; -update noar tt set v0='69OA8LI92713GE4KP0E0' where id=6; -update noar ti set v0='69OA8LI92713GE4KP0E0' where id=6; -update noar tt set b0='7QEMQ4CH3IITCJWB7QX0IYRK1AY' where id=6; -update noar ti set b0='7QEMQ4CH3IITCJWB7QX0IYRK1AY' where id=6; -update noar tt set v0='GV1Z7LE3F8OUAOZA1H0UN' where id=6; -update noar ti set v0='GV1Z7LE3F8OUAOZA1H0UN' where id=6; -update noar tt set b1='J7PY49GXXTCRO17GJ7N9X5M91' where id=6; -update noar ti set b1='J7PY49GXXTCRO17GJ7N9X5M91' where id=6; -update noar tt set v0='VUVDAUEP6EO8251NTG' where id=6; -update noar ti set v0='VUVDAUEP6EO8251NTG' where id=6; -update noar tt set b2='NBQ2PI7R2AWFHGSZ' where id=6; -update noar ti set b2='NBQ2PI7R2AWFHGSZ' where id=6; -update noar tt set v0='WFYEB3Y8' where id=7; -update noar ti set v0='WFYEB3Y8' where id=7; -update noar tt set b0='VCB' where id=7; -update noar ti set b0='VCB' where id=7; -update noar tt set v0='UPNTU26I12D9R66ZIIXJOHQKB9SL4JH' where id=7; -update noar ti set v0='UPNTU26I12D9R66ZIIXJOHQKB9SL4JH' where id=7; -update noar tt set b1='878YJCZ3ULDFFMEZ2KGUL' where id=7; -update noar ti set b1='878YJCZ3ULDFFMEZ2KGUL' where id=7; -update noar tt set v0='09VUJW2G' where id=7; -update noar ti set v0='09VUJW2G' where id=7; -update noar tt set b2='MR9N8Z830NEMC6UPYLHQFJV' where id=7; -update noar ti set b2='MR9N8Z830NEMC6UPYLHQFJV' where id=7; -update noar tt set v0='YODS7Z6BS' where id=8; -update noar ti set v0='YODS7Z6BS' where id=8; -update noar tt set b0='L1PW5ZU' where id=8; -update noar ti set b0='L1PW5ZU' where id=8; -update noar tt set v0='MRWX4U' where id=8; -update noar ti set v0='MRWX4U' where id=8; -update noar tt set b1='PDDX89RIJL8LOLW7C3KXZ19' where id=8; -update noar ti set b1='PDDX89RIJL8LOLW7C3KXZ19' where id=8; -update noar tt set v0='LEUL3VHWJNBW5L5PG' where id=8; -update noar ti set v0='LEUL3VHWJNBW5L5PG' where id=8; -update noar tt set b2='GPOZMI0B3MB8KNGW293GG59ZO0' where id=8; -update noar ti set b2='GPOZMI0B3MB8KNGW293GG59ZO0' where id=8; -update noar tt set v0='6F6FAICK47' where id=9; -update noar ti set v0='6F6FAICK47' where id=9; -update noar tt set b0='BER1' where id=9; -update noar ti set b0='BER1' where id=9; -update noar tt set v0='GFJTRNY0ZP9XJ' where id=9; -update noar ti set v0='GFJTRNY0ZP9XJ' where id=9; -update noar tt set b1='68H6GUGSBV824J6IHHEV' where id=9; -update noar ti set b1='68H6GUGSBV824J6IHHEV' where id=9; -update noar tt set v0='8HWA5FP01CKG725UD6ZQ' where id=9; -update noar ti set v0='8HWA5FP01CKG725UD6ZQ' where id=9; -update noar tt set b2='71RT' where id=9; -update noar ti set b2='71RT' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - v0 varchar(256) null, - b0 mediumblob null, - b1 mediumblob null, - b2 tinyblob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='YUDNVRAONWSHFR' where id=1; -update noar ti set v0='YUDNVRAONWSHFR' where id=1; -update noar tt set b0='O' where id=1; -update noar ti set b0='O' where id=1; -update noar tt set v0='9CXVFBIAO3YSGYSO3W1LQV0PTM49IX6P' where id=1; -update noar ti set v0='9CXVFBIAO3YSGYSO3W1LQV0PTM49IX6P' where id=1; -update noar tt set b1='JHZX300HA1OBOUM72HG8ASQP8BEW9W' where id=1; -update noar ti set b1='JHZX300HA1OBOUM72HG8ASQP8BEW9W' where id=1; -update noar tt set v0='2A3GY' where id=1; -update noar ti set v0='2A3GY' where id=1; -update noar tt set b2='ZJPEUDXJC351YY6' where id=1; -update noar ti set b2='ZJPEUDXJC351YY6' where id=1; -update noar tt set v0='OBBRACP4Z7VDWO3TS' where id=2; -update noar ti set v0='OBBRACP4Z7VDWO3TS' where id=2; -update noar tt set b0='VC0M3PQLFYC3' where id=2; -update noar ti set b0='VC0M3PQLFYC3' where id=2; -update noar tt set v0='MB639G5' where id=2; -update noar ti set v0='MB639G5' where id=2; -update noar tt set b1='MS1OFAOGAUET3' where id=2; -update noar ti set b1='MS1OFAOGAUET3' where id=2; -update noar tt set v0='23END4W0YLIHP8H36ZUDB9UB7GCHPEOO' where id=2; -update noar ti set v0='23END4W0YLIHP8H36ZUDB9UB7GCHPEOO' where id=2; -update noar tt set b2='ZOUDZQTLVMOAECTAA79Z2L9WH02C' where id=2; -update noar ti set b2='ZOUDZQTLVMOAECTAA79Z2L9WH02C' where id=2; -update noar tt set v0='FCGQBJ4KXVSMWD' where id=3; -update noar ti set v0='FCGQBJ4KXVSMWD' where id=3; -update noar tt set b0='J1LP3V6AXUMKDKS8AMAW20SQ' where id=3; -update noar ti set b0='J1LP3V6AXUMKDKS8AMAW20SQ' where id=3; -update noar tt set v0='L7ODF5P2' where id=3; -update noar ti set v0='L7ODF5P2' where id=3; -update noar tt set b1='SOEJ9FO5M4NI9' where id=3; -update noar ti set b1='SOEJ9FO5M4NI9' where id=3; -update noar tt set v0='1601THUIO' where id=3; -update noar ti set v0='1601THUIO' where id=3; -update noar tt set b2='KHDX60P5' where id=3; -update noar ti set b2='KHDX60P5' where id=3; -update noar tt set v0='MJOKUBL1EJX3SO7' where id=4; -update noar ti set v0='MJOKUBL1EJX3SO7' where id=4; -update noar tt set b0='6KW7BFMJC9BNU1BP2FE0MKM64CK5' where id=4; -update noar ti set b0='6KW7BFMJC9BNU1BP2FE0MKM64CK5' where id=4; -update noar tt set v0='3JDS23' where id=4; -update noar ti set v0='3JDS23' where id=4; -update noar tt set b1='8ZNI6NJ0' where id=4; -update noar ti set b1='8ZNI6NJ0' where id=4; -update noar tt set v0='0KF2SRKTMT1DO4G17' where id=4; -update noar ti set v0='0KF2SRKTMT1DO4G17' where id=4; -update noar tt set b2='PYN1C1T2CXZ759' where id=4; -update noar ti set b2='PYN1C1T2CXZ759' where id=4; -update noar tt set v0='RNW17GMR08EN4X1REN7YBPOPW3' where id=5; -update noar ti set v0='RNW17GMR08EN4X1REN7YBPOPW3' where id=5; -update noar tt set b0='NRHC1QLAMZV3UGNUIUPR7PIG837QLP' where id=5; -update noar ti set b0='NRHC1QLAMZV3UGNUIUPR7PIG837QLP' where id=5; -update noar tt set v0='G6LBL6UFZE' where id=5; -update noar ti set v0='G6LBL6UFZE' where id=5; -update noar tt set b1='813B0G' where id=5; -update noar ti set b1='813B0G' where id=5; -update noar tt set v0='3K8F7DW5AOXT0O4MKAUKKVKZ9T' where id=5; -update noar ti set v0='3K8F7DW5AOXT0O4MKAUKKVKZ9T' where id=5; -update noar tt set b2='81' where id=5; -update noar ti set b2='81' where id=5; -update noar tt set v0='USVOJFIS3ABD' where id=6; -update noar ti set v0='USVOJFIS3ABD' where id=6; -update noar tt set b0='22DK7EG96R2EQF01ZM6IB98' where id=6; -update noar ti set b0='22DK7EG96R2EQF01ZM6IB98' where id=6; -update noar tt set v0='UROH5QS678HX3BRTEYWSE6' where id=6; -update noar ti set v0='UROH5QS678HX3BRTEYWSE6' where id=6; -update noar tt set b1='IIP3COV6HMZZ9GF26JU4UDMOI' where id=6; -update noar ti set b1='IIP3COV6HMZZ9GF26JU4UDMOI' where id=6; -update noar tt set v0='J66LWVNTEIC750RO8AZAXP89Q3JWVIE' where id=6; -update noar ti set v0='J66LWVNTEIC750RO8AZAXP89Q3JWVIE' where id=6; -update noar tt set b2='GGRBQRQUFV07G' where id=6; -update noar ti set b2='GGRBQRQUFV07G' where id=6; -update noar tt set v0='ZXGEJ2OE4ROBE' where id=7; -update noar ti set v0='ZXGEJ2OE4ROBE' where id=7; -update noar tt set b0='ZNWD2HTGCLW393WWSN' where id=7; -update noar ti set b0='ZNWD2HTGCLW393WWSN' where id=7; -update noar tt set v0='ADX3OW' where id=7; -update noar ti set v0='ADX3OW' where id=7; -update noar tt set b1='9UZ0OWKZY1HRZ9DUU0V30MY5R7YFP' where id=7; -update noar ti set b1='9UZ0OWKZY1HRZ9DUU0V30MY5R7YFP' where id=7; -update noar tt set v0='SD8' where id=7; -update noar ti set v0='SD8' where id=7; -update noar tt set b2='WPXYYL947OYQ9ECXEU76UVV' where id=7; -update noar ti set b2='WPXYYL947OYQ9ECXEU76UVV' where id=7; -update noar tt set v0='41AA1926WNX7PS9T668BYXB4RTWAOY' where id=8; -update noar ti set v0='41AA1926WNX7PS9T668BYXB4RTWAOY' where id=8; -update noar tt set b0='QYTHGM9XT7VN2XJFLTR' where id=8; -update noar ti set b0='QYTHGM9XT7VN2XJFLTR' where id=8; -update noar tt set v0='3TVE9EQSR3L1FD0N46I' where id=8; -update noar ti set v0='3TVE9EQSR3L1FD0N46I' where id=8; -update noar tt set b1='FZJFUQJP0RSRBLAA1WQ55CTL2A6A' where id=8; -update noar ti set b1='FZJFUQJP0RSRBLAA1WQ55CTL2A6A' where id=8; -update noar tt set v0='H9A1N6ONMP' where id=8; -update noar ti set v0='H9A1N6ONMP' where id=8; -update noar tt set b2='IQORF2ZI4KVSYKU8GS4BZ5J3JNWMIJHD' where id=8; -update noar ti set b2='IQORF2ZI4KVSYKU8GS4BZ5J3JNWMIJHD' where id=8; -update noar tt set v0='NC47DFISGAGN3F09' where id=9; -update noar ti set v0='NC47DFISGAGN3F09' where id=9; -update noar tt set b0='Y0TKV' where id=9; -update noar ti set b0='Y0TKV' where id=9; -update noar tt set v0='NUK4BLOS' where id=9; -update noar ti set v0='NUK4BLOS' where id=9; -update noar tt set b1='3O44Q' where id=9; -update noar ti set b1='3O44Q' where id=9; -update noar tt set v0='RB99V3VE9AE5VDA84JYCVHTJCT' where id=9; -update noar ti set v0='RB99V3VE9AE5VDA84JYCVHTJCT' where id=9; -update noar tt set b2='4Q8EYB5L3OY3D8KE14MN' where id=9; -update noar ti set b2='4Q8EYB5L3OY3D8KE14MN' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - v0 varchar(32) not null, - b0 mediumblob not null, - b1 mediumblob not null, - b2 tinyblob not null -) engine=tokudb; -insert into tt values (1,'','','',''); -insert into tt values (2,'','','',''); -insert into tt values (3,'','','',''); -insert into tt values (4,'','','',''); -insert into tt values (5,'','','',''); -insert into tt values (6,'','','',''); -insert into tt values (7,'','','',''); -insert into tt values (8,'','','',''); -insert into tt values (9,'','','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='N' where id=1; -update noar ti set v0='N' where id=1; -update noar tt set b0='YDMB752UI8RHOEANYSMUB0F1AFMCI' where id=1; -update noar ti set b0='YDMB752UI8RHOEANYSMUB0F1AFMCI' where id=1; -update noar tt set v0='JKU8VXN7D' where id=1; -update noar ti set v0='JKU8VXN7D' where id=1; -update noar tt set b1='YDFNDR9TG6GC0HA' where id=1; -update noar ti set b1='YDFNDR9TG6GC0HA' where id=1; -update noar tt set v0='5DSPGEIHHVKWT9Z' where id=1; -update noar ti set v0='5DSPGEIHHVKWT9Z' where id=1; -update noar tt set b2='NCT5R56' where id=1; -update noar ti set b2='NCT5R56' where id=1; -update noar tt set v0='DP4SOY7HBT88OHAZU6SGHJ1D0' where id=2; -update noar ti set v0='DP4SOY7HBT88OHAZU6SGHJ1D0' where id=2; -update noar tt set b0='H0VSX1ZTU16D2D81CNNVVKJ' where id=2; -update noar ti set b0='H0VSX1ZTU16D2D81CNNVVKJ' where id=2; -update noar tt set v0='P' where id=2; -update noar ti set v0='P' where id=2; -update noar tt set b1='5URUZW0' where id=2; -update noar ti set b1='5URUZW0' where id=2; -update noar tt set v0='6OYJPP6HKE4O2U6LO62KHS6HO' where id=2; -update noar ti set v0='6OYJPP6HKE4O2U6LO62KHS6HO' where id=2; -update noar tt set b2='5WHQAX33V0XJU' where id=2; -update noar ti set b2='5WHQAX33V0XJU' where id=2; -update noar tt set v0='78FSJUXZLFOOZH3U7UXO' where id=3; -update noar ti set v0='78FSJUXZLFOOZH3U7UXO' where id=3; -update noar tt set b0='3YSXHIU' where id=3; -update noar ti set b0='3YSXHIU' where id=3; -update noar tt set v0='9SK22IKZDCRXO5SHXL3A5SYP' where id=3; -update noar ti set v0='9SK22IKZDCRXO5SHXL3A5SYP' where id=3; -update noar tt set b1='3WZFQUYWW' where id=3; -update noar ti set b1='3WZFQUYWW' where id=3; -update noar tt set v0='UPMUMHMUXJAVWFM5M72HM' where id=3; -update noar ti set v0='UPMUMHMUXJAVWFM5M72HM' where id=3; -update noar tt set b2='7QS6KNMN0DZUM39Q8FLBZ2K9POZBPU3X' where id=3; -update noar ti set b2='7QS6KNMN0DZUM39Q8FLBZ2K9POZBPU3X' where id=3; -update noar tt set v0='3GYYCXAFWDCZ6ISS5BMA25MJFAQTZ1GZ' where id=4; -update noar ti set v0='3GYYCXAFWDCZ6ISS5BMA25MJFAQTZ1GZ' where id=4; -update noar tt set b0='V3UX3HL8Y' where id=4; -update noar ti set b0='V3UX3HL8Y' where id=4; -update noar tt set v0='F9XY00HELK7I5ZM44BG6B850BF2' where id=4; -update noar ti set v0='F9XY00HELK7I5ZM44BG6B850BF2' where id=4; -update noar tt set b1='MKZ533PZXGNTTJVHDNAISKQOMMV' where id=4; -update noar ti set b1='MKZ533PZXGNTTJVHDNAISKQOMMV' where id=4; -update noar tt set v0='4PC5M167NADGXQZDDV' where id=4; -update noar ti set v0='4PC5M167NADGXQZDDV' where id=4; -update noar tt set b2='9SD5GKYRBW1' where id=4; -update noar ti set b2='9SD5GKYRBW1' where id=4; -update noar tt set v0='TN47W0I8Y54JRLHJAOZH2FUCRH39R2H3' where id=5; -update noar ti set v0='TN47W0I8Y54JRLHJAOZH2FUCRH39R2H3' where id=5; -update noar tt set b0='3W5' where id=5; -update noar ti set b0='3W5' where id=5; -update noar tt set v0='WSJ0X77XS63H4M7259ZD1T' where id=5; -update noar ti set v0='WSJ0X77XS63H4M7259ZD1T' where id=5; -update noar tt set b1='G8VAWEV0B' where id=5; -update noar ti set b1='G8VAWEV0B' where id=5; -update noar tt set v0='CGCOB332F6F3PS9QNTKR5213J4DOCM' where id=5; -update noar ti set v0='CGCOB332F6F3PS9QNTKR5213J4DOCM' where id=5; -update noar tt set b2='LEB90RZ' where id=5; -update noar ti set b2='LEB90RZ' where id=5; -update noar tt set v0='NHSVG' where id=6; -update noar ti set v0='NHSVG' where id=6; -update noar tt set b0='FG' where id=6; -update noar ti set b0='FG' where id=6; -update noar tt set v0='P8O67MEN8U' where id=6; -update noar ti set v0='P8O67MEN8U' where id=6; -update noar tt set b1='2OB6DSDRD8YQ6P7WXWZPEW3IHUXZE' where id=6; -update noar ti set b1='2OB6DSDRD8YQ6P7WXWZPEW3IHUXZE' where id=6; -update noar tt set v0='HQFW09RXAHQ5WBYZIX88C1IAJ' where id=6; -update noar ti set v0='HQFW09RXAHQ5WBYZIX88C1IAJ' where id=6; -update noar tt set b2='0KM1E06RPBBYZ6WEKE' where id=6; -update noar ti set b2='0KM1E06RPBBYZ6WEKE' where id=6; -update noar tt set v0='DK4R00FQKZVH' where id=7; -update noar ti set v0='DK4R00FQKZVH' where id=7; -update noar tt set b0='NCRHUVJIKGDSABVR6PZH1XKXAR7DF' where id=7; -update noar ti set b0='NCRHUVJIKGDSABVR6PZH1XKXAR7DF' where id=7; -update noar tt set v0='JXVE9GUJ6GK6IZ7KC3N2C0K' where id=7; -update noar ti set v0='JXVE9GUJ6GK6IZ7KC3N2C0K' where id=7; -update noar tt set b1='XEXVMKWGSTYDSQOVULK1X7Y' where id=7; -update noar ti set b1='XEXVMKWGSTYDSQOVULK1X7Y' where id=7; -update noar tt set v0='T6T5WBRY6' where id=7; -update noar ti set v0='T6T5WBRY6' where id=7; -update noar tt set b2='QDODTULSK1RN0WDX1EL9NHKCA' where id=7; -update noar ti set b2='QDODTULSK1RN0WDX1EL9NHKCA' where id=7; -update noar tt set v0='2NZJNPN5Q81DZIQXNKUYGBIVL2O0M8JZ' where id=8; -update noar ti set v0='2NZJNPN5Q81DZIQXNKUYGBIVL2O0M8JZ' where id=8; -update noar tt set b0='DSIMV4K676JCPA4YQE' where id=8; -update noar ti set b0='DSIMV4K676JCPA4YQE' where id=8; -update noar tt set v0='UM9H01M831' where id=8; -update noar ti set v0='UM9H01M831' where id=8; -update noar tt set b1='AYPNH6KXSU68LKWCSE79EXFI' where id=8; -update noar ti set b1='AYPNH6KXSU68LKWCSE79EXFI' where id=8; -update noar tt set v0='KAWEV173PLQ3CUYRAR3YFVV' where id=8; -update noar ti set v0='KAWEV173PLQ3CUYRAR3YFVV' where id=8; -update noar tt set b2='NBAT91HZYRDZRSXBDP' where id=8; -update noar ti set b2='NBAT91HZYRDZRSXBDP' where id=8; -update noar tt set v0='GK4OP0FSQJKJ0DT' where id=9; -update noar ti set v0='GK4OP0FSQJKJ0DT' where id=9; -update noar tt set b0='AZTOVLOW2YFNUYF2R9LO80KKUL0B7I8' where id=9; -update noar ti set b0='AZTOVLOW2YFNUYF2R9LO80KKUL0B7I8' where id=9; -update noar tt set v0='CY3728MNXNSG351HF2JPH23KP7' where id=9; -update noar ti set v0='CY3728MNXNSG351HF2JPH23KP7' where id=9; -update noar tt set b1='CO7TSC1080CUM6IUVY0QRE76GLGSP7' where id=9; -update noar ti set b1='CO7TSC1080CUM6IUVY0QRE76GLGSP7' where id=9; -update noar tt set v0='CWGLRYMYXSU' where id=9; -update noar ti set v0='CWGLRYMYXSU' where id=9; -update noar tt set b2='FP3VFIDZY' where id=9; -update noar ti set b2='FP3VFIDZY' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - v0 varchar(256) not null, - b0 mediumblob not null, - b1 mediumblob not null, - b2 tinyblob not null -) engine=tokudb; -insert into tt values (1,'','','',''); -insert into tt values (2,'','','',''); -insert into tt values (3,'','','',''); -insert into tt values (4,'','','',''); -insert into tt values (5,'','','',''); -insert into tt values (6,'','','',''); -insert into tt values (7,'','','',''); -insert into tt values (8,'','','',''); -insert into tt values (9,'','','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='LLFBG8VBB2I' where id=1; -update noar ti set v0='LLFBG8VBB2I' where id=1; -update noar tt set b0='E64YVGC5NQJ8TTIRU9VMC56I7U1CJUS' where id=1; -update noar ti set b0='E64YVGC5NQJ8TTIRU9VMC56I7U1CJUS' where id=1; -update noar tt set v0='439NQPBBYPJ38' where id=1; -update noar ti set v0='439NQPBBYPJ38' where id=1; -update noar tt set b1='T9NQK7250QMBJ6G3TZED5C' where id=1; -update noar ti set b1='T9NQK7250QMBJ6G3TZED5C' where id=1; -update noar tt set v0='S' where id=1; -update noar ti set v0='S' where id=1; -update noar tt set b2='7STB' where id=1; -update noar ti set b2='7STB' where id=1; -update noar tt set v0='COH8TVC777MHK1' where id=2; -update noar ti set v0='COH8TVC777MHK1' where id=2; -update noar tt set b0='B6JDVH3' where id=2; -update noar ti set b0='B6JDVH3' where id=2; -update noar tt set v0='OY8AUBIZHYUY3YBS7GRLB9' where id=2; -update noar ti set v0='OY8AUBIZHYUY3YBS7GRLB9' where id=2; -update noar tt set b1='Y0TO' where id=2; -update noar ti set b1='Y0TO' where id=2; -update noar tt set v0='OU9OWWS416ZIXI1660R' where id=2; -update noar ti set v0='OU9OWWS416ZIXI1660R' where id=2; -update noar tt set b2='AFUDORACFV46H3V4DBRJ' where id=2; -update noar ti set b2='AFUDORACFV46H3V4DBRJ' where id=2; -update noar tt set v0='CS58ZYR5OSJ04TD3WWHM7R55I3' where id=3; -update noar ti set v0='CS58ZYR5OSJ04TD3WWHM7R55I3' where id=3; -update noar tt set b0='PTNN5ABS4OQPRWR4NWKAIXRDIO5FK1' where id=3; -update noar ti set b0='PTNN5ABS4OQPRWR4NWKAIXRDIO5FK1' where id=3; -update noar tt set v0='REKHPM6IRDE2V2PWE8Z4XF8' where id=3; -update noar ti set v0='REKHPM6IRDE2V2PWE8Z4XF8' where id=3; -update noar tt set b1='YY4UFQGSWKKM8TVYJB9' where id=3; -update noar ti set b1='YY4UFQGSWKKM8TVYJB9' where id=3; -update noar tt set v0='3RHB1MQW2793637Z' where id=3; -update noar ti set v0='3RHB1MQW2793637Z' where id=3; -update noar tt set b2='1IXZVWXRJ2LL8NYBJMXAWIAH6EE' where id=3; -update noar ti set b2='1IXZVWXRJ2LL8NYBJMXAWIAH6EE' where id=3; -update noar tt set v0='VACJ89JOLRN3HI0P8ERA' where id=4; -update noar ti set v0='VACJ89JOLRN3HI0P8ERA' where id=4; -update noar tt set b0='2JKZJFW1EB6G2AR8QK' where id=4; -update noar ti set b0='2JKZJFW1EB6G2AR8QK' where id=4; -update noar tt set v0='QDIAQ6T52RMFGX71YZ37S9C08ELYF' where id=4; -update noar ti set v0='QDIAQ6T52RMFGX71YZ37S9C08ELYF' where id=4; -update noar tt set b1='02GKU71LWW7Q4908ONBA1' where id=4; -update noar ti set b1='02GKU71LWW7Q4908ONBA1' where id=4; -update noar tt set v0='YH10LSS0G4H8X9QZVG7T66O48TJMTUM' where id=4; -update noar ti set v0='YH10LSS0G4H8X9QZVG7T66O48TJMTUM' where id=4; -update noar tt set b2='D7YLH4JPV6OQD9O3NNLK' where id=4; -update noar ti set b2='D7YLH4JPV6OQD9O3NNLK' where id=4; -update noar tt set v0='JYSN770Q8IPMRBSBSR46WG53UJPI5S0' where id=5; -update noar ti set v0='JYSN770Q8IPMRBSBSR46WG53UJPI5S0' where id=5; -update noar tt set b0='KSW1NAQR2DBNK5WWGI8M36QAU8' where id=5; -update noar ti set b0='KSW1NAQR2DBNK5WWGI8M36QAU8' where id=5; -update noar tt set v0='6BXHZ4V' where id=5; -update noar ti set v0='6BXHZ4V' where id=5; -update noar tt set b1='D' where id=5; -update noar ti set b1='D' where id=5; -update noar tt set v0='SK9SG' where id=5; -update noar ti set v0='SK9SG' where id=5; -update noar tt set b2='5RF6IY0R' where id=5; -update noar ti set b2='5RF6IY0R' where id=5; -update noar tt set v0='DX' where id=6; -update noar ti set v0='DX' where id=6; -update noar tt set b0='YW5AHY98EZSKKLXWUDW4EF34KMBV' where id=6; -update noar ti set b0='YW5AHY98EZSKKLXWUDW4EF34KMBV' where id=6; -update noar tt set v0='WYD9EK' where id=6; -update noar ti set v0='WYD9EK' where id=6; -update noar tt set b1='USL82FEUNMEEE4TTCIZVW' where id=6; -update noar ti set b1='USL82FEUNMEEE4TTCIZVW' where id=6; -update noar tt set v0='ZY635G47X855R7OB4DSPUOFMW3Z44O' where id=6; -update noar ti set v0='ZY635G47X855R7OB4DSPUOFMW3Z44O' where id=6; -update noar tt set b2='3TK8' where id=6; -update noar ti set b2='3TK8' where id=6; -update noar tt set v0='DXYPX1TQVAAQYY26SDIFBXP1788ME17A' where id=7; -update noar ti set v0='DXYPX1TQVAAQYY26SDIFBXP1788ME17A' where id=7; -update noar tt set b0='71FKVG7HE8M8DU80GARHZWNIU' where id=7; -update noar ti set b0='71FKVG7HE8M8DU80GARHZWNIU' where id=7; -update noar tt set v0='DUO' where id=7; -update noar ti set v0='DUO' where id=7; -update noar tt set b1='AQVMGL2C7Z42DZMCZ3LLNX3B' where id=7; -update noar ti set b1='AQVMGL2C7Z42DZMCZ3LLNX3B' where id=7; -update noar tt set v0='SP61Y' where id=7; -update noar ti set v0='SP61Y' where id=7; -update noar tt set b2='GNB1WPKT5XJVR' where id=7; -update noar ti set b2='GNB1WPKT5XJVR' where id=7; -update noar tt set v0='BSCD' where id=8; -update noar ti set v0='BSCD' where id=8; -update noar tt set b0='9RWIRQOSZH8BZJQX3SGXZ' where id=8; -update noar ti set b0='9RWIRQOSZH8BZJQX3SGXZ' where id=8; -update noar tt set v0='GNSYJ62FETS' where id=8; -update noar ti set v0='GNSYJ62FETS' where id=8; -update noar tt set b1='R5UHHK50CBGFJ8R49HOD2NBERWKEG05' where id=8; -update noar ti set b1='R5UHHK50CBGFJ8R49HOD2NBERWKEG05' where id=8; -update noar tt set v0='NFR5JIP7ISSN2PICY476KQ' where id=8; -update noar ti set v0='NFR5JIP7ISSN2PICY476KQ' where id=8; -update noar tt set b2='F96I73FDASH9K9O9QVJ7' where id=8; -update noar ti set b2='F96I73FDASH9K9O9QVJ7' where id=8; -update noar tt set v0='KH6IM5DP4CRU' where id=9; -update noar ti set v0='KH6IM5DP4CRU' where id=9; -update noar tt set b0='MG' where id=9; -update noar ti set b0='MG' where id=9; -update noar tt set v0='HQVOE57D9QLW' where id=9; -update noar ti set v0='HQVOE57D9QLW' where id=9; -update noar tt set b1='UWZEKF5SRFWTKV' where id=9; -update noar ti set b1='UWZEKF5SRFWTKV' where id=9; -update noar tt set v0='NCTTH4LR' where id=9; -update noar ti set v0='NCTTH4LR' where id=9; -update noar tt set b2='YE8TWCW29FVX87LG' where id=9; -update noar ti set b2='YE8TWCW29FVX87LG' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - v0 varchar(32) null, - b0 mediumblob null, - b1 mediumblob null, - b2 blob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='04PIU0CKKINXJLH41' where id=1; -update noar ti set v0='04PIU0CKKINXJLH41' where id=1; -update noar tt set b0='M6QWWV' where id=1; -update noar ti set b0='M6QWWV' where id=1; -update noar tt set v0='2Y0O8PQ91CAI7PH6D6' where id=1; -update noar ti set v0='2Y0O8PQ91CAI7PH6D6' where id=1; -update noar tt set b1='W0XHJDPTUFG287T1VZZJXVJZX' where id=1; -update noar ti set b1='W0XHJDPTUFG287T1VZZJXVJZX' where id=1; -update noar tt set v0='NTJAOCZNVTFDBKA4IA96ZW9G' where id=1; -update noar ti set v0='NTJAOCZNVTFDBKA4IA96ZW9G' where id=1; -update noar tt set b2='BED5PXB80GBH1B8G2JQBBT' where id=1; -update noar ti set b2='BED5PXB80GBH1B8G2JQBBT' where id=1; -update noar tt set v0='HVYJ1ZX' where id=2; -update noar ti set v0='HVYJ1ZX' where id=2; -update noar tt set b0='ARUE' where id=2; -update noar ti set b0='ARUE' where id=2; -update noar tt set v0='NSQXA7PCT2SG56UN' where id=2; -update noar ti set v0='NSQXA7PCT2SG56UN' where id=2; -update noar tt set b1='53' where id=2; -update noar ti set b1='53' where id=2; -update noar tt set v0='L8I3O6B8HJH4OUIWBIH11GCI4CFQI059' where id=2; -update noar ti set v0='L8I3O6B8HJH4OUIWBIH11GCI4CFQI059' where id=2; -update noar tt set b2='ICGL7UW03KN5PT7NK23ODH6D5ZI03' where id=2; -update noar ti set b2='ICGL7UW03KN5PT7NK23ODH6D5ZI03' where id=2; -update noar tt set v0='YVCLXLU032ERAZUWXHQ' where id=3; -update noar ti set v0='YVCLXLU032ERAZUWXHQ' where id=3; -update noar tt set b0='9GHVX4JS9C67JU' where id=3; -update noar ti set b0='9GHVX4JS9C67JU' where id=3; -update noar tt set v0='CNE' where id=3; -update noar ti set v0='CNE' where id=3; -update noar tt set b1='QEVA42Z6LOTKJ172UWPDXV89QZYMM' where id=3; -update noar ti set b1='QEVA42Z6LOTKJ172UWPDXV89QZYMM' where id=3; -update noar tt set v0='1PHPPWFUDLE' where id=3; -update noar ti set v0='1PHPPWFUDLE' where id=3; -update noar tt set b2='RQ0A3' where id=3; -update noar ti set b2='RQ0A3' where id=3; -update noar tt set v0='MT89D74JVGWCNRGISW4TPQ8' where id=4; -update noar ti set v0='MT89D74JVGWCNRGISW4TPQ8' where id=4; -update noar tt set b0='TBDA8MZ912QDM0GLPQRPXMJCB32HC' where id=4; -update noar ti set b0='TBDA8MZ912QDM0GLPQRPXMJCB32HC' where id=4; -update noar tt set v0='8PIKO4UFEV9W3' where id=4; -update noar ti set v0='8PIKO4UFEV9W3' where id=4; -update noar tt set b1='G884SW0' where id=4; -update noar ti set b1='G884SW0' where id=4; -update noar tt set v0='PD7UEA1E9DN5FI4WSR' where id=4; -update noar ti set v0='PD7UEA1E9DN5FI4WSR' where id=4; -update noar tt set b2='A' where id=4; -update noar ti set b2='A' where id=4; -update noar tt set v0='3SUCBJK5PMUUI' where id=5; -update noar ti set v0='3SUCBJK5PMUUI' where id=5; -update noar tt set b0='IHKV7D4VTTBTLHEUI78I' where id=5; -update noar ti set b0='IHKV7D4VTTBTLHEUI78I' where id=5; -update noar tt set v0='C4BEACU9PGM3AR3KJFSS5' where id=5; -update noar ti set v0='C4BEACU9PGM3AR3KJFSS5' where id=5; -update noar tt set b1='042HA' where id=5; -update noar ti set b1='042HA' where id=5; -update noar tt set v0='HXOT' where id=5; -update noar ti set v0='HXOT' where id=5; -update noar tt set b2='IHJ3T95D7RQLRICLO6OHFYP' where id=5; -update noar ti set b2='IHJ3T95D7RQLRICLO6OHFYP' where id=5; -update noar tt set v0='UFLT8KV6A' where id=6; -update noar ti set v0='UFLT8KV6A' where id=6; -update noar tt set b0='9ISM9KQYQTLN16FWGLN1TAMZJE' where id=6; -update noar ti set b0='9ISM9KQYQTLN16FWGLN1TAMZJE' where id=6; -update noar tt set v0='QURU19YE9WJMXHCWYZFSGITY8X7VGUA' where id=6; -update noar ti set v0='QURU19YE9WJMXHCWYZFSGITY8X7VGUA' where id=6; -update noar tt set b1='5J0WVQBB12CADUEKJW28PPCEI6VZ' where id=6; -update noar ti set b1='5J0WVQBB12CADUEKJW28PPCEI6VZ' where id=6; -update noar tt set v0='GB1YCN3ZN8CEA7159O790F8QSA1DCYT' where id=6; -update noar ti set v0='GB1YCN3ZN8CEA7159O790F8QSA1DCYT' where id=6; -update noar tt set b2='RGMU7R6242MBNK4H7TI44A5LG4' where id=6; -update noar ti set b2='RGMU7R6242MBNK4H7TI44A5LG4' where id=6; -update noar tt set v0='33X4U91FHQL6I6TY0GKWVK3WFK' where id=7; -update noar ti set v0='33X4U91FHQL6I6TY0GKWVK3WFK' where id=7; -update noar tt set b0='NUBOG6EO0FQ2RSVH79V' where id=7; -update noar ti set b0='NUBOG6EO0FQ2RSVH79V' where id=7; -update noar tt set v0='E8KKF2DEKO11' where id=7; -update noar ti set v0='E8KKF2DEKO11' where id=7; -update noar tt set b1='1BCMTILG12L7DR9RY3Y6' where id=7; -update noar ti set b1='1BCMTILG12L7DR9RY3Y6' where id=7; -update noar tt set v0='FAZS7OZEDWLVACH2MN67XONMI' where id=7; -update noar ti set v0='FAZS7OZEDWLVACH2MN67XONMI' where id=7; -update noar tt set b2='XW7TWY9JDOAN' where id=7; -update noar ti set b2='XW7TWY9JDOAN' where id=7; -update noar tt set v0='1CAR5BV5' where id=8; -update noar ti set v0='1CAR5BV5' where id=8; -update noar tt set b0='4HQC2SZIU4E5YHTR15EHGH8W' where id=8; -update noar ti set b0='4HQC2SZIU4E5YHTR15EHGH8W' where id=8; -update noar tt set v0='MAKQ12A0KHZWUWM' where id=8; -update noar ti set v0='MAKQ12A0KHZWUWM' where id=8; -update noar tt set b1='AWEEFJGHNS0' where id=8; -update noar ti set b1='AWEEFJGHNS0' where id=8; -update noar tt set v0='RC4SCVOU908CI9O' where id=8; -update noar ti set v0='RC4SCVOU908CI9O' where id=8; -update noar tt set b2='DTJAHRJIY860W' where id=8; -update noar ti set b2='DTJAHRJIY860W' where id=8; -update noar tt set v0='GDVAL' where id=9; -update noar ti set v0='GDVAL' where id=9; -update noar tt set b0='63MDZN0E1QGLFPQY3WA21ZJXBD4O' where id=9; -update noar ti set b0='63MDZN0E1QGLFPQY3WA21ZJXBD4O' where id=9; -update noar tt set v0='BRB2T2EU23UAIOH2EST6POR8OTNNN' where id=9; -update noar ti set v0='BRB2T2EU23UAIOH2EST6POR8OTNNN' where id=9; -update noar tt set b1='Z9ZZDLYENX6S3GD006R1XF267GY' where id=9; -update noar ti set b1='Z9ZZDLYENX6S3GD006R1XF267GY' where id=9; -update noar tt set v0='YUKYQZ1QHNLGX3FEN7MMXH3W1BWQB6KC' where id=9; -update noar ti set v0='YUKYQZ1QHNLGX3FEN7MMXH3W1BWQB6KC' where id=9; -update noar tt set b2='OAGL44IW81102HG0GB8HY3737AK51BZ' where id=9; -update noar ti set b2='OAGL44IW81102HG0GB8HY3737AK51BZ' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - v0 varchar(256) null, - b0 mediumblob null, - b1 mediumblob null, - b2 blob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='17A5T7Z0WFVX58XEVKHLN2CKLDNJ991' where id=1; -update noar ti set v0='17A5T7Z0WFVX58XEVKHLN2CKLDNJ991' where id=1; -update noar tt set b0='RW8F3WW26' where id=1; -update noar ti set b0='RW8F3WW26' where id=1; -update noar tt set v0='OD37H8N0U92V7S0S8CTDXL0MC' where id=1; -update noar ti set v0='OD37H8N0U92V7S0S8CTDXL0MC' where id=1; -update noar tt set b1='2WJ4IJ0B7A33INI0B5N0JUE8' where id=1; -update noar ti set b1='2WJ4IJ0B7A33INI0B5N0JUE8' where id=1; -update noar tt set v0='AGUVP0RIS' where id=1; -update noar ti set v0='AGUVP0RIS' where id=1; -update noar tt set b2='K63DRD1AZ2VUCFGEC' where id=1; -update noar ti set b2='K63DRD1AZ2VUCFGEC' where id=1; -update noar tt set v0='QDOH273EW2DPFL' where id=2; -update noar ti set v0='QDOH273EW2DPFL' where id=2; -update noar tt set b0='7GEG9LNWUOAVUA0X530S4AIVY' where id=2; -update noar ti set b0='7GEG9LNWUOAVUA0X530S4AIVY' where id=2; -update noar tt set v0='QVEMZ4ETY8E2LTTRA7V4PS4LLPBW' where id=2; -update noar ti set v0='QVEMZ4ETY8E2LTTRA7V4PS4LLPBW' where id=2; -update noar tt set b1='DEIAYQWFCE3VYT0JGC' where id=2; -update noar ti set b1='DEIAYQWFCE3VYT0JGC' where id=2; -update noar tt set v0='5PLIAAL9GV' where id=2; -update noar ti set v0='5PLIAAL9GV' where id=2; -update noar tt set b2='IC6KEXV0HZ9POF0A2Z69SLVWMKUKT4' where id=2; -update noar ti set b2='IC6KEXV0HZ9POF0A2Z69SLVWMKUKT4' where id=2; -update noar tt set v0='C2' where id=3; -update noar ti set v0='C2' where id=3; -update noar tt set b0='OFL2RLO5X6XJTUZ9C' where id=3; -update noar ti set b0='OFL2RLO5X6XJTUZ9C' where id=3; -update noar tt set v0='7TQCJY6CLMRJLW4Q6XYGDK9X0Q' where id=3; -update noar ti set v0='7TQCJY6CLMRJLW4Q6XYGDK9X0Q' where id=3; -update noar tt set b1='C0P5UA2NZF' where id=3; -update noar ti set b1='C0P5UA2NZF' where id=3; -update noar tt set v0='O7' where id=3; -update noar ti set v0='O7' where id=3; -update noar tt set b2='ZDA80T5NXP5DL' where id=3; -update noar ti set b2='ZDA80T5NXP5DL' where id=3; -update noar tt set v0='ISOJ0ZDAD0N' where id=4; -update noar ti set v0='ISOJ0ZDAD0N' where id=4; -update noar tt set b0='TEBY' where id=4; -update noar ti set b0='TEBY' where id=4; -update noar tt set v0='YFD4Q6MMORW8OIO' where id=4; -update noar ti set v0='YFD4Q6MMORW8OIO' where id=4; -update noar tt set b1='6J4X1L16Z9URL8Q' where id=4; -update noar ti set b1='6J4X1L16Z9URL8Q' where id=4; -update noar tt set v0='M0QLMM2KZ0E3GFYIIUBGLT08ULH5ST' where id=4; -update noar ti set v0='M0QLMM2KZ0E3GFYIIUBGLT08ULH5ST' where id=4; -update noar tt set b2='F9O1Y' where id=4; -update noar ti set b2='F9O1Y' where id=4; -update noar tt set v0='V2SKH99JJIOMS2AA8HGL363S3TUFPAZV' where id=5; -update noar ti set v0='V2SKH99JJIOMS2AA8HGL363S3TUFPAZV' where id=5; -update noar tt set b0='7LH3XHI6ZY8VIP2MCH82NLAM' where id=5; -update noar ti set b0='7LH3XHI6ZY8VIP2MCH82NLAM' where id=5; -update noar tt set v0='FLCM73' where id=5; -update noar ti set v0='FLCM73' where id=5; -update noar tt set b1='NWP0ZJUR' where id=5; -update noar ti set b1='NWP0ZJUR' where id=5; -update noar tt set v0='SRZQ' where id=5; -update noar ti set v0='SRZQ' where id=5; -update noar tt set b2='5SNWARRJQIVRO94W5XD0UJLXIKNSI' where id=5; -update noar ti set b2='5SNWARRJQIVRO94W5XD0UJLXIKNSI' where id=5; -update noar tt set v0='4' where id=6; -update noar ti set v0='4' where id=6; -update noar tt set b0='X1ZU9ICQTLCYV7M6A44HGWT7QDF' where id=6; -update noar ti set b0='X1ZU9ICQTLCYV7M6A44HGWT7QDF' where id=6; -update noar tt set v0='YPG9SAAVQCZC1H9' where id=6; -update noar ti set v0='YPG9SAAVQCZC1H9' where id=6; -update noar tt set b1='P74J5MEVF823AHSIU26VZ4PM0MNLF' where id=6; -update noar ti set b1='P74J5MEVF823AHSIU26VZ4PM0MNLF' where id=6; -update noar tt set v0='VIHBZCIBK' where id=6; -update noar ti set v0='VIHBZCIBK' where id=6; -update noar tt set b2='4V52L0RO3CP1FWN4GQTCBTM39' where id=6; -update noar ti set b2='4V52L0RO3CP1FWN4GQTCBTM39' where id=6; -update noar tt set v0='NKVU0JBVPG970BQF4T2' where id=7; -update noar ti set v0='NKVU0JBVPG970BQF4T2' where id=7; -update noar tt set b0='9E6RXCGCTIEB17TPA0K8T' where id=7; -update noar ti set b0='9E6RXCGCTIEB17TPA0K8T' where id=7; -update noar tt set v0='RPF8' where id=7; -update noar ti set v0='RPF8' where id=7; -update noar tt set b1='W8' where id=7; -update noar ti set b1='W8' where id=7; -update noar tt set v0='9GKGU' where id=7; -update noar ti set v0='9GKGU' where id=7; -update noar tt set b2='0RH8DCPBKR' where id=7; -update noar ti set b2='0RH8DCPBKR' where id=7; -update noar tt set v0='G5ES2EE' where id=8; -update noar ti set v0='G5ES2EE' where id=8; -update noar tt set b0='38K' where id=8; -update noar ti set b0='38K' where id=8; -update noar tt set v0='X8CI62NX4LXCC' where id=8; -update noar ti set v0='X8CI62NX4LXCC' where id=8; -update noar tt set b1='YD7E005F8L1967YIAKDZQT3M' where id=8; -update noar ti set b1='YD7E005F8L1967YIAKDZQT3M' where id=8; -update noar tt set v0='WWP52' where id=8; -update noar ti set v0='WWP52' where id=8; -update noar tt set b2='PN' where id=8; -update noar ti set b2='PN' where id=8; -update noar tt set v0='X1ER8HIJ7N9JQJ4RFHUWK6HFSVE6L' where id=9; -update noar ti set v0='X1ER8HIJ7N9JQJ4RFHUWK6HFSVE6L' where id=9; -update noar tt set b0='U15GP5VF4Q6MMNWW2V6OOTDNF3VD8' where id=9; -update noar ti set b0='U15GP5VF4Q6MMNWW2V6OOTDNF3VD8' where id=9; -update noar tt set v0='50OK' where id=9; -update noar ti set v0='50OK' where id=9; -update noar tt set b1='HT521Q6PPTD1VLA0BD8UXSK' where id=9; -update noar ti set b1='HT521Q6PPTD1VLA0BD8UXSK' where id=9; -update noar tt set v0='1EL3E4VT71JIARQ5IUZ5N' where id=9; -update noar ti set v0='1EL3E4VT71JIARQ5IUZ5N' where id=9; -update noar tt set b2='7QEBODAYSILCF9Z7UY2W9597' where id=9; -update noar ti set b2='7QEBODAYSILCF9Z7UY2W9597' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - v0 varchar(32) not null, - b0 mediumblob not null, - b1 mediumblob not null, - b2 blob not null -) engine=tokudb; -insert into tt values (1,'','','',''); -insert into tt values (2,'','','',''); -insert into tt values (3,'','','',''); -insert into tt values (4,'','','',''); -insert into tt values (5,'','','',''); -insert into tt values (6,'','','',''); -insert into tt values (7,'','','',''); -insert into tt values (8,'','','',''); -insert into tt values (9,'','','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='I8C5Q9X07R' where id=1; -update noar ti set v0='I8C5Q9X07R' where id=1; -update noar tt set b0='3WLOOV9QMRVO1' where id=1; -update noar ti set b0='3WLOOV9QMRVO1' where id=1; -update noar tt set v0='PS7TBY1KIQLYL5D0MGQG' where id=1; -update noar ti set v0='PS7TBY1KIQLYL5D0MGQG' where id=1; -update noar tt set b1='UO61B6VPRK7LRSOZBUJV4B6G0ZES1RO' where id=1; -update noar ti set b1='UO61B6VPRK7LRSOZBUJV4B6G0ZES1RO' where id=1; -update noar tt set v0='ALOMZYO1J' where id=1; -update noar ti set v0='ALOMZYO1J' where id=1; -update noar tt set b2='3LYGVNI53FYT6FI93TOW0' where id=1; -update noar ti set b2='3LYGVNI53FYT6FI93TOW0' where id=1; -update noar tt set v0='RPT90BSEX2S' where id=2; -update noar ti set v0='RPT90BSEX2S' where id=2; -update noar tt set b0='W5JWH4MCP4TQL5HPUJEKQIYG4599C' where id=2; -update noar ti set b0='W5JWH4MCP4TQL5HPUJEKQIYG4599C' where id=2; -update noar tt set v0='4QHZG' where id=2; -update noar ti set v0='4QHZG' where id=2; -update noar tt set b1='3J28T2UY0CHWJUWD15R6Q4TWMNG2TS' where id=2; -update noar ti set b1='3J28T2UY0CHWJUWD15R6Q4TWMNG2TS' where id=2; -update noar tt set v0='MM9PAK2RV6JMH3FKUEH2RHGM' where id=2; -update noar ti set v0='MM9PAK2RV6JMH3FKUEH2RHGM' where id=2; -update noar tt set b2='QCP697HDPJF732' where id=2; -update noar ti set b2='QCP697HDPJF732' where id=2; -update noar tt set v0='XRIM2465' where id=3; -update noar ti set v0='XRIM2465' where id=3; -update noar tt set b0='CVCCQDG4QMF0MFXBO854C4LTJLM1L3OM' where id=3; -update noar ti set b0='CVCCQDG4QMF0MFXBO854C4LTJLM1L3OM' where id=3; -update noar tt set v0='GS40Z5Z0IDJRJEK90' where id=3; -update noar ti set v0='GS40Z5Z0IDJRJEK90' where id=3; -update noar tt set b1='PYAPTT7' where id=3; -update noar ti set b1='PYAPTT7' where id=3; -update noar tt set v0='8RCU1PJR8Q8CX2K5TN36FWLW' where id=3; -update noar ti set v0='8RCU1PJR8Q8CX2K5TN36FWLW' where id=3; -update noar tt set b2='2H8E9NLEL' where id=3; -update noar ti set b2='2H8E9NLEL' where id=3; -update noar tt set v0='QENNTFGI1WOVMXF' where id=4; -update noar ti set v0='QENNTFGI1WOVMXF' where id=4; -update noar tt set b0='1O81ZC97BBH52ICI5HUKSS2V2ELD40MR' where id=4; -update noar ti set b0='1O81ZC97BBH52ICI5HUKSS2V2ELD40MR' where id=4; -update noar tt set v0='JD1L53AOTZ30FISIYPSLE0' where id=4; -update noar ti set v0='JD1L53AOTZ30FISIYPSLE0' where id=4; -update noar tt set b1='1L' where id=4; -update noar ti set b1='1L' where id=4; -update noar tt set v0='B8FS583VHNZ5' where id=4; -update noar ti set v0='B8FS583VHNZ5' where id=4; -update noar tt set b2='RZMBJX3' where id=4; -update noar ti set b2='RZMBJX3' where id=4; -update noar tt set v0='Y7VCTRKWIJT3315LN3F' where id=5; -update noar ti set v0='Y7VCTRKWIJT3315LN3F' where id=5; -update noar tt set b0='H5QOHKC' where id=5; -update noar ti set b0='H5QOHKC' where id=5; -update noar tt set v0='73KA5B3O' where id=5; -update noar ti set v0='73KA5B3O' where id=5; -update noar tt set b1='W9WD8452BZXR9NIQ1EJQQW14OK50AUS' where id=5; -update noar ti set b1='W9WD8452BZXR9NIQ1EJQQW14OK50AUS' where id=5; -update noar tt set v0='SHAQWOLRFH4RM7' where id=5; -update noar ti set v0='SHAQWOLRFH4RM7' where id=5; -update noar tt set b2='XH5Y4N0OR3C4QI51PS1R7H6QC4N' where id=5; -update noar ti set b2='XH5Y4N0OR3C4QI51PS1R7H6QC4N' where id=5; -update noar tt set v0='ZOO4BDTW3AH9I' where id=6; -update noar ti set v0='ZOO4BDTW3AH9I' where id=6; -update noar tt set b0='AAMHEGJQ0ZYVUVAOZ9TNACDRE8WVW' where id=6; -update noar ti set b0='AAMHEGJQ0ZYVUVAOZ9TNACDRE8WVW' where id=6; -update noar tt set v0='R52T84V24YCJJW2WLRV2O5MOJI' where id=6; -update noar ti set v0='R52T84V24YCJJW2WLRV2O5MOJI' where id=6; -update noar tt set b1='LH935YUZ8PII2H7H2LH90FSI4BB' where id=6; -update noar ti set b1='LH935YUZ8PII2H7H2LH90FSI4BB' where id=6; -update noar tt set v0='C4AT' where id=6; -update noar ti set v0='C4AT' where id=6; -update noar tt set b2='P406SCU8XOATXCN8O' where id=6; -update noar ti set b2='P406SCU8XOATXCN8O' where id=6; -update noar tt set v0='5F5B1S0CP5GE' where id=7; -update noar ti set v0='5F5B1S0CP5GE' where id=7; -update noar tt set b0='9QIWS5JX4WFZVJNVH93NTZZ5' where id=7; -update noar ti set b0='9QIWS5JX4WFZVJNVH93NTZZ5' where id=7; -update noar tt set v0='NV' where id=7; -update noar ti set v0='NV' where id=7; -update noar tt set b1='U9M0YTYLZ9NEUWZ47YQ6I' where id=7; -update noar ti set b1='U9M0YTYLZ9NEUWZ47YQ6I' where id=7; -update noar tt set v0='8CC54CZQQRGPJFTYJ21QC' where id=7; -update noar ti set v0='8CC54CZQQRGPJFTYJ21QC' where id=7; -update noar tt set b2='BYQ2CWL86510' where id=7; -update noar ti set b2='BYQ2CWL86510' where id=7; -update noar tt set v0='OTL25OSNLWOZ26V2N' where id=8; -update noar ti set v0='OTL25OSNLWOZ26V2N' where id=8; -update noar tt set b0='P6' where id=8; -update noar ti set b0='P6' where id=8; -update noar tt set v0='JLQYI8EMZVNTRTRKW54' where id=8; -update noar ti set v0='JLQYI8EMZVNTRTRKW54' where id=8; -update noar tt set b1='C9X00BVX7MS6O3WAJS92' where id=8; -update noar ti set b1='C9X00BVX7MS6O3WAJS92' where id=8; -update noar tt set v0='BSPJHY26S' where id=8; -update noar ti set v0='BSPJHY26S' where id=8; -update noar tt set b2='PN5BZJYC' where id=8; -update noar ti set b2='PN5BZJYC' where id=8; -update noar tt set v0='4NOHVZ7UAZ4N' where id=9; -update noar ti set v0='4NOHVZ7UAZ4N' where id=9; -update noar tt set b0='IYDJFZXSF39' where id=9; -update noar ti set b0='IYDJFZXSF39' where id=9; -update noar tt set v0='U3' where id=9; -update noar ti set v0='U3' where id=9; -update noar tt set b1='BG' where id=9; -update noar ti set b1='BG' where id=9; -update noar tt set v0='3D16YEHZOQB7GJ8' where id=9; -update noar ti set v0='3D16YEHZOQB7GJ8' where id=9; -update noar tt set b2='ZH' where id=9; -update noar ti set b2='ZH' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - v0 varchar(256) not null, - b0 mediumblob not null, - b1 mediumblob not null, - b2 blob not null -) engine=tokudb; -insert into tt values (1,'','','',''); -insert into tt values (2,'','','',''); -insert into tt values (3,'','','',''); -insert into tt values (4,'','','',''); -insert into tt values (5,'','','',''); -insert into tt values (6,'','','',''); -insert into tt values (7,'','','',''); -insert into tt values (8,'','','',''); -insert into tt values (9,'','','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='4RPAVR0FMHYMREJVAON4L' where id=1; -update noar ti set v0='4RPAVR0FMHYMREJVAON4L' where id=1; -update noar tt set b0='CA6BMZ8E840WMSGYYFE1DL' where id=1; -update noar ti set b0='CA6BMZ8E840WMSGYYFE1DL' where id=1; -update noar tt set v0='ZCJL1A' where id=1; -update noar ti set v0='ZCJL1A' where id=1; -update noar tt set b1='2DTOYOWARVXXYA3F32AHZWIFY69HM0K7' where id=1; -update noar ti set b1='2DTOYOWARVXXYA3F32AHZWIFY69HM0K7' where id=1; -update noar tt set v0='X0EYAAO99OEPK86VOQLQ' where id=1; -update noar ti set v0='X0EYAAO99OEPK86VOQLQ' where id=1; -update noar tt set b2='VTUFUV2H9GZZX8K2QC' where id=1; -update noar ti set b2='VTUFUV2H9GZZX8K2QC' where id=1; -update noar tt set v0='HLUVOQHA1U6T5U' where id=2; -update noar ti set v0='HLUVOQHA1U6T5U' where id=2; -update noar tt set b0='H16I610GH8PCWFR2SS' where id=2; -update noar ti set b0='H16I610GH8PCWFR2SS' where id=2; -update noar tt set v0='WIW02T3K3IQ6LUBFE19SYZ' where id=2; -update noar ti set v0='WIW02T3K3IQ6LUBFE19SYZ' where id=2; -update noar tt set b1='JZFZ8EHE2IB' where id=2; -update noar ti set b1='JZFZ8EHE2IB' where id=2; -update noar tt set v0='P45GOG51AQYX1NQ00L6Z' where id=2; -update noar ti set v0='P45GOG51AQYX1NQ00L6Z' where id=2; -update noar tt set b2='K15TS36JEE4U' where id=2; -update noar ti set b2='K15TS36JEE4U' where id=2; -update noar tt set v0='AGLV63JNR3L' where id=3; -update noar ti set v0='AGLV63JNR3L' where id=3; -update noar tt set b0='LIRFP5M34XV5TRKO8' where id=3; -update noar ti set b0='LIRFP5M34XV5TRKO8' where id=3; -update noar tt set v0='TKEZAKO805' where id=3; -update noar ti set v0='TKEZAKO805' where id=3; -update noar tt set b1='ZWZ3IOGQR8WKWU4N8CB8' where id=3; -update noar ti set b1='ZWZ3IOGQR8WKWU4N8CB8' where id=3; -update noar tt set v0='I' where id=3; -update noar ti set v0='I' where id=3; -update noar tt set b2='332F9WR7P12O8IFZGFCCSIG' where id=3; -update noar ti set b2='332F9WR7P12O8IFZGFCCSIG' where id=3; -update noar tt set v0='Z' where id=4; -update noar ti set v0='Z' where id=4; -update noar tt set b0='98T3KPG0G7J104QYZMOKZ32SG' where id=4; -update noar ti set b0='98T3KPG0G7J104QYZMOKZ32SG' where id=4; -update noar tt set v0='GM0UHIBYN6K01' where id=4; -update noar ti set v0='GM0UHIBYN6K01' where id=4; -update noar tt set b1='RIS' where id=4; -update noar ti set b1='RIS' where id=4; -update noar tt set v0='S1J3WN9KCZMSMPW5ZXJYU0' where id=4; -update noar ti set v0='S1J3WN9KCZMSMPW5ZXJYU0' where id=4; -update noar tt set b2='Z5TGVAJKCZ9YVI4MJMWHJJC6OSSCEYD' where id=4; -update noar ti set b2='Z5TGVAJKCZ9YVI4MJMWHJJC6OSSCEYD' where id=4; -update noar tt set v0='G' where id=5; -update noar ti set v0='G' where id=5; -update noar tt set b0='676HVKVA' where id=5; -update noar ti set b0='676HVKVA' where id=5; -update noar tt set v0='7U5VAOLKMZZ1746FHYTW3HMN49VH' where id=5; -update noar ti set v0='7U5VAOLKMZZ1746FHYTW3HMN49VH' where id=5; -update noar tt set b1='VSB4WD7QNZUYJAS' where id=5; -update noar ti set b1='VSB4WD7QNZUYJAS' where id=5; -update noar tt set v0='LZ8MOUWL' where id=5; -update noar ti set v0='LZ8MOUWL' where id=5; -update noar tt set b2='HLDOW0QZXNEDUNVK7FFO8W86' where id=5; -update noar ti set b2='HLDOW0QZXNEDUNVK7FFO8W86' where id=5; -update noar tt set v0='7IB26U9JDY' where id=6; -update noar ti set v0='7IB26U9JDY' where id=6; -update noar tt set b0='WCQV6FR88X29W37VO8GV56INCQM1' where id=6; -update noar ti set b0='WCQV6FR88X29W37VO8GV56INCQM1' where id=6; -update noar tt set v0='4AGNHTU' where id=6; -update noar ti set v0='4AGNHTU' where id=6; -update noar tt set b1='ZUH25CF0F2QHV3AX90QUMY3GMWRE1Y' where id=6; -update noar ti set b1='ZUH25CF0F2QHV3AX90QUMY3GMWRE1Y' where id=6; -update noar tt set v0='0QQGT2JM' where id=6; -update noar ti set v0='0QQGT2JM' where id=6; -update noar tt set b2='A5F3GWAS7K' where id=6; -update noar ti set b2='A5F3GWAS7K' where id=6; -update noar tt set v0='AAZZMTPO3Z2C987DD4XU5APZO6' where id=7; -update noar ti set v0='AAZZMTPO3Z2C987DD4XU5APZO6' where id=7; -update noar tt set b0='67W2Y3J2QBLZN7M0SGCQAUKTB9K5ERV' where id=7; -update noar ti set b0='67W2Y3J2QBLZN7M0SGCQAUKTB9K5ERV' where id=7; -update noar tt set v0='6BCMV8IBJSDV26562XEKW' where id=7; -update noar ti set v0='6BCMV8IBJSDV26562XEKW' where id=7; -update noar tt set b1='CQL6S08YU02R2V1I0K8WHR07' where id=7; -update noar ti set b1='CQL6S08YU02R2V1I0K8WHR07' where id=7; -update noar tt set v0='O9XY485TJ12VW5RZ54P0LA' where id=7; -update noar ti set v0='O9XY485TJ12VW5RZ54P0LA' where id=7; -update noar tt set b2='7PVMHNZZ0YFGIXGERGLNTGYGSZC1CAXM' where id=7; -update noar ti set b2='7PVMHNZZ0YFGIXGERGLNTGYGSZC1CAXM' where id=7; -update noar tt set v0='GLMK6ZVA9FX4J0D15OEAIFUJJUTG5V' where id=8; -update noar ti set v0='GLMK6ZVA9FX4J0D15OEAIFUJJUTG5V' where id=8; -update noar tt set b0='BEUI81HXKS' where id=8; -update noar ti set b0='BEUI81HXKS' where id=8; -update noar tt set v0='J6HMUJM0VIS1RZ4S096QUP85J' where id=8; -update noar ti set v0='J6HMUJM0VIS1RZ4S096QUP85J' where id=8; -update noar tt set b1='P' where id=8; -update noar ti set b1='P' where id=8; -update noar tt set v0='DPNH' where id=8; -update noar ti set v0='DPNH' where id=8; -update noar tt set b2='SI7TE1Z9RT2UHYFHGL05Q' where id=8; -update noar ti set b2='SI7TE1Z9RT2UHYFHGL05Q' where id=8; -update noar tt set v0='G3H9' where id=9; -update noar ti set v0='G3H9' where id=9; -update noar tt set b0='NDY1UHTP' where id=9; -update noar ti set b0='NDY1UHTP' where id=9; -update noar tt set v0='O50DUVWCA07' where id=9; -update noar ti set v0='O50DUVWCA07' where id=9; -update noar tt set b1='26A7JP4BNC0FNFPTUGTP0QQP9J904Q6I' where id=9; -update noar ti set b1='26A7JP4BNC0FNFPTUGTP0QQP9J904Q6I' where id=9; -update noar tt set v0='5QIF9DZU8HUQLX5P2MZM0' where id=9; -update noar ti set v0='5QIF9DZU8HUQLX5P2MZM0' where id=9; -update noar tt set b2='F1M0W35E5QTBQW' where id=9; -update noar ti set b2='F1M0W35E5QTBQW' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - v0 varchar(32) null, - b0 mediumblob null, - b1 mediumblob null, - b2 mediumblob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='90UKDML184EOEE49SHC9EW748F873NOV' where id=1; -update noar ti set v0='90UKDML184EOEE49SHC9EW748F873NOV' where id=1; -update noar tt set b0='4JB1XZR6GGHO53ZR281F' where id=1; -update noar ti set b0='4JB1XZR6GGHO53ZR281F' where id=1; -update noar tt set v0='JWRNW' where id=1; -update noar ti set v0='JWRNW' where id=1; -update noar tt set b1='HWRYPANQ52XSUH7BE5MHU33VFAIANPR' where id=1; -update noar ti set b1='HWRYPANQ52XSUH7BE5MHU33VFAIANPR' where id=1; -update noar tt set v0='N29EM7SG' where id=1; -update noar ti set v0='N29EM7SG' where id=1; -update noar tt set b2='R4GPI9Q4SJYE3SAVZPQHM4CH8KP' where id=1; -update noar ti set b2='R4GPI9Q4SJYE3SAVZPQHM4CH8KP' where id=1; -update noar tt set v0='SWK1Z76KDXSPH85NFFKYZG3JF7W' where id=2; -update noar ti set v0='SWK1Z76KDXSPH85NFFKYZG3JF7W' where id=2; -update noar tt set b0='0XDBSJQ37C1B1' where id=2; -update noar ti set b0='0XDBSJQ37C1B1' where id=2; -update noar tt set v0='VB3JYG02RJ8E6IDSKDQ3RMGSJ' where id=2; -update noar ti set v0='VB3JYG02RJ8E6IDSKDQ3RMGSJ' where id=2; -update noar tt set b1='D2AJJ28OJAYTNHO6TV4Q9J1VC96EJVM3' where id=2; -update noar ti set b1='D2AJJ28OJAYTNHO6TV4Q9J1VC96EJVM3' where id=2; -update noar tt set v0='MX1S97WB11QS6GCW0KY353CSO84LMI' where id=2; -update noar ti set v0='MX1S97WB11QS6GCW0KY353CSO84LMI' where id=2; -update noar tt set b2='8Q53SEJ02L' where id=2; -update noar ti set b2='8Q53SEJ02L' where id=2; -update noar tt set v0='8ET40P6O8VS62ZDKGGB0BCF42A5M1' where id=3; -update noar ti set v0='8ET40P6O8VS62ZDKGGB0BCF42A5M1' where id=3; -update noar tt set b0='GSIU' where id=3; -update noar ti set b0='GSIU' where id=3; -update noar tt set v0='Y1' where id=3; -update noar ti set v0='Y1' where id=3; -update noar tt set b1='T68PIO' where id=3; -update noar ti set b1='T68PIO' where id=3; -update noar tt set v0='K6NEEP5R4ATOBJJ9IH990' where id=3; -update noar ti set v0='K6NEEP5R4ATOBJJ9IH990' where id=3; -update noar tt set b2='K5W7IM6LWGZZ3M0' where id=3; -update noar ti set b2='K5W7IM6LWGZZ3M0' where id=3; -update noar tt set v0='P49ZS' where id=4; -update noar ti set v0='P49ZS' where id=4; -update noar tt set b0='KDP' where id=4; -update noar ti set b0='KDP' where id=4; -update noar tt set v0='I6JSNI6VKA106P2DLH3U06FLTIC' where id=4; -update noar ti set v0='I6JSNI6VKA106P2DLH3U06FLTIC' where id=4; -update noar tt set b1='5E8QJL8K5P7UT4' where id=4; -update noar ti set b1='5E8QJL8K5P7UT4' where id=4; -update noar tt set v0='FNH8200Q2VSF4SLJXHACPRYCE59D' where id=4; -update noar ti set v0='FNH8200Q2VSF4SLJXHACPRYCE59D' where id=4; -update noar tt set b2='1' where id=4; -update noar ti set b2='1' where id=4; -update noar tt set v0='L9IM6QM82EJY0QM8DF1HN9L' where id=5; -update noar ti set v0='L9IM6QM82EJY0QM8DF1HN9L' where id=5; -update noar tt set b0='YSOKXCCVIFPNE503BJ' where id=5; -update noar ti set b0='YSOKXCCVIFPNE503BJ' where id=5; -update noar tt set v0='77RQMOAWWQ0WCCKOCIDF3RWR1UB' where id=5; -update noar ti set v0='77RQMOAWWQ0WCCKOCIDF3RWR1UB' where id=5; -update noar tt set b1='OYEDEKH3FKZFIRXGPD9C3M1AIOJS' where id=5; -update noar ti set b1='OYEDEKH3FKZFIRXGPD9C3M1AIOJS' where id=5; -update noar tt set v0='XHAE0O9UVJ6RGJ84XB6GP7SU4F6' where id=5; -update noar ti set v0='XHAE0O9UVJ6RGJ84XB6GP7SU4F6' where id=5; -update noar tt set b2='0A78JP672GGOL1EPEZ2FL3' where id=5; -update noar ti set b2='0A78JP672GGOL1EPEZ2FL3' where id=5; -update noar tt set v0='KD' where id=6; -update noar ti set v0='KD' where id=6; -update noar tt set b0='1QQWGJWNDGDP56Y8KP1Q16BVF7OMYE7J' where id=6; -update noar ti set b0='1QQWGJWNDGDP56Y8KP1Q16BVF7OMYE7J' where id=6; -update noar tt set v0='IWRP' where id=6; -update noar ti set v0='IWRP' where id=6; -update noar tt set b1='OFF94CSWJROSA21895' where id=6; -update noar ti set b1='OFF94CSWJROSA21895' where id=6; -update noar tt set v0='VSS3UFBK9WK1FJHECF7BY' where id=6; -update noar ti set v0='VSS3UFBK9WK1FJHECF7BY' where id=6; -update noar tt set b2='K09ZEN03ZESE0SNQUDT8M78N5HPI2D' where id=6; -update noar ti set b2='K09ZEN03ZESE0SNQUDT8M78N5HPI2D' where id=6; -update noar tt set v0='383CEKGJLRUZ5LNDRPXFI0OHDFUIC' where id=7; -update noar ti set v0='383CEKGJLRUZ5LNDRPXFI0OHDFUIC' where id=7; -update noar tt set b0='2WBF9WB999SJ6QLA9YLC90BNWY2J' where id=7; -update noar ti set b0='2WBF9WB999SJ6QLA9YLC90BNWY2J' where id=7; -update noar tt set v0='MNE5FOBSGFRYEDHVDH' where id=7; -update noar ti set v0='MNE5FOBSGFRYEDHVDH' where id=7; -update noar tt set b1='NWRSX' where id=7; -update noar ti set b1='NWRSX' where id=7; -update noar tt set v0='PEEX1XTC97SKEC5TPVEF8NDD8XYHOQK' where id=7; -update noar ti set v0='PEEX1XTC97SKEC5TPVEF8NDD8XYHOQK' where id=7; -update noar tt set b2='QQPRH7ZR32V' where id=7; -update noar ti set b2='QQPRH7ZR32V' where id=7; -update noar tt set v0='4I9UBAA9QYT' where id=8; -update noar ti set v0='4I9UBAA9QYT' where id=8; -update noar tt set b0='5W7' where id=8; -update noar ti set b0='5W7' where id=8; -update noar tt set v0='B9OY5AQA4Q' where id=8; -update noar ti set v0='B9OY5AQA4Q' where id=8; -update noar tt set b1='LJAAXNXP115K7KM1VP' where id=8; -update noar ti set b1='LJAAXNXP115K7KM1VP' where id=8; -update noar tt set v0='DV4RPJBFVTIDKBC7OBF' where id=8; -update noar ti set v0='DV4RPJBFVTIDKBC7OBF' where id=8; -update noar tt set b2='31VBHA0WYNFMM0ND1U3HA' where id=8; -update noar ti set b2='31VBHA0WYNFMM0ND1U3HA' where id=8; -update noar tt set v0='Q4WQ7401MZ24PGXAC3OHA5M95U24K5' where id=9; -update noar ti set v0='Q4WQ7401MZ24PGXAC3OHA5M95U24K5' where id=9; -update noar tt set b0='CCYD2J6VRZ8IJZ8LVQMUF0740B6' where id=9; -update noar ti set b0='CCYD2J6VRZ8IJZ8LVQMUF0740B6' where id=9; -update noar tt set v0='UC9C4E0GIFIGUYP' where id=9; -update noar ti set v0='UC9C4E0GIFIGUYP' where id=9; -update noar tt set b1='A3' where id=9; -update noar ti set b1='A3' where id=9; -update noar tt set v0='10P3FW1DBL1FZNSA8YDZ2AP6D3O' where id=9; -update noar ti set v0='10P3FW1DBL1FZNSA8YDZ2AP6D3O' where id=9; -update noar tt set b2='D1W4JN1FXC42K1VHTKH0E9189' where id=9; -update noar ti set b2='D1W4JN1FXC42K1VHTKH0E9189' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - v0 varchar(256) null, - b0 mediumblob null, - b1 mediumblob null, - b2 mediumblob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='924DMLHUZX5E1Y19A7U7N00' where id=1; -update noar ti set v0='924DMLHUZX5E1Y19A7U7N00' where id=1; -update noar tt set b0='JP8DZFA' where id=1; -update noar ti set b0='JP8DZFA' where id=1; -update noar tt set v0='3FP51JAYA91UO2ZDE5O10FDOHYV34OL6' where id=1; -update noar ti set v0='3FP51JAYA91UO2ZDE5O10FDOHYV34OL6' where id=1; -update noar tt set b1='9VLRHCPDWO0C4K' where id=1; -update noar ti set b1='9VLRHCPDWO0C4K' where id=1; -update noar tt set v0='3MSN1U5RD7EP1DUM8C5SN1' where id=1; -update noar ti set v0='3MSN1U5RD7EP1DUM8C5SN1' where id=1; -update noar tt set b2='E9ZJ11IDFLF58P0EXXN1HLOL' where id=1; -update noar ti set b2='E9ZJ11IDFLF58P0EXXN1HLOL' where id=1; -update noar tt set v0='GBN11VA7O1ALPWFGF52YW' where id=2; -update noar ti set v0='GBN11VA7O1ALPWFGF52YW' where id=2; -update noar tt set b0='F1WQIPUA04D3SKKS21AG1X7Y' where id=2; -update noar ti set b0='F1WQIPUA04D3SKKS21AG1X7Y' where id=2; -update noar tt set v0='JLAQ0KAECQ44HIXDL' where id=2; -update noar ti set v0='JLAQ0KAECQ44HIXDL' where id=2; -update noar tt set b1='MOCI6K7R99AWNUUY41PR' where id=2; -update noar ti set b1='MOCI6K7R99AWNUUY41PR' where id=2; -update noar tt set v0='VAAT8W7W' where id=2; -update noar ti set v0='VAAT8W7W' where id=2; -update noar tt set b2='4JSEXQ6S' where id=2; -update noar ti set b2='4JSEXQ6S' where id=2; -update noar tt set v0='ZHBHDC' where id=3; -update noar ti set v0='ZHBHDC' where id=3; -update noar tt set b0='5TGZ8GVN8CL16U3X8' where id=3; -update noar ti set b0='5TGZ8GVN8CL16U3X8' where id=3; -update noar tt set v0='TU23OZIPA8UGBI' where id=3; -update noar ti set v0='TU23OZIPA8UGBI' where id=3; -update noar tt set b1='346JR8GAKLXM33M2K2JTXV8G4ATS' where id=3; -update noar ti set b1='346JR8GAKLXM33M2K2JTXV8G4ATS' where id=3; -update noar tt set v0='4C73OMK8H1DCENPECENX9A' where id=3; -update noar ti set v0='4C73OMK8H1DCENPECENX9A' where id=3; -update noar tt set b2='INLDUPR0LZDEP0RZTGQGN' where id=3; -update noar ti set b2='INLDUPR0LZDEP0RZTGQGN' where id=3; -update noar tt set v0='YT7A' where id=4; -update noar ti set v0='YT7A' where id=4; -update noar tt set b0='0FDN1G9PMPQZ3AR' where id=4; -update noar ti set b0='0FDN1G9PMPQZ3AR' where id=4; -update noar tt set v0='Y4NSKJ0ECCB1811XFX6V395Z6JOU7E' where id=4; -update noar ti set v0='Y4NSKJ0ECCB1811XFX6V395Z6JOU7E' where id=4; -update noar tt set b1='TS1KIWDC11NU' where id=4; -update noar ti set b1='TS1KIWDC11NU' where id=4; -update noar tt set v0='MSOK978ZD6RHCAA54PZK' where id=4; -update noar ti set v0='MSOK978ZD6RHCAA54PZK' where id=4; -update noar tt set b2='6ODSCOI97HKWV6XBS' where id=4; -update noar ti set b2='6ODSCOI97HKWV6XBS' where id=4; -update noar tt set v0='WOHVUAJC0J' where id=5; -update noar ti set v0='WOHVUAJC0J' where id=5; -update noar tt set b0='M8FU0I4A' where id=5; -update noar ti set b0='M8FU0I4A' where id=5; -update noar tt set v0='WTRCHAKQH0Q7' where id=5; -update noar ti set v0='WTRCHAKQH0Q7' where id=5; -update noar tt set b1='AJ2AOKL3WOO0O2MFUBQAKRRPFK0ZC' where id=5; -update noar ti set b1='AJ2AOKL3WOO0O2MFUBQAKRRPFK0ZC' where id=5; -update noar tt set v0='4B2HHDWGINKTA1DZ7SV' where id=5; -update noar ti set v0='4B2HHDWGINKTA1DZ7SV' where id=5; -update noar tt set b2='B6U2C5HAUQRG86JD' where id=5; -update noar ti set b2='B6U2C5HAUQRG86JD' where id=5; -update noar tt set v0='TSO5YX' where id=6; -update noar ti set v0='TSO5YX' where id=6; -update noar tt set b0='6Z' where id=6; -update noar ti set b0='6Z' where id=6; -update noar tt set v0='LJTSFVDF32CM9OQTRASPTZJ' where id=6; -update noar ti set v0='LJTSFVDF32CM9OQTRASPTZJ' where id=6; -update noar tt set b1='WOMS5DM' where id=6; -update noar ti set b1='WOMS5DM' where id=6; -update noar tt set v0='WC6TYFYM4' where id=6; -update noar ti set v0='WC6TYFYM4' where id=6; -update noar tt set b2='TVVGTIBZR' where id=6; -update noar ti set b2='TVVGTIBZR' where id=6; -update noar tt set v0='WGCS9V7O6OFGL2SAUTY7I' where id=7; -update noar ti set v0='WGCS9V7O6OFGL2SAUTY7I' where id=7; -update noar tt set b0='2' where id=7; -update noar ti set b0='2' where id=7; -update noar tt set v0='SA0N50XSZOX' where id=7; -update noar ti set v0='SA0N50XSZOX' where id=7; -update noar tt set b1='1361TR9CM8MLP9KE2UTD7EMT' where id=7; -update noar ti set b1='1361TR9CM8MLP9KE2UTD7EMT' where id=7; -update noar tt set v0='IN5N' where id=7; -update noar ti set v0='IN5N' where id=7; -update noar tt set b2='C65GYPRJZ7S4V8D53UF5ZJ' where id=7; -update noar ti set b2='C65GYPRJZ7S4V8D53UF5ZJ' where id=7; -update noar tt set v0='HBMGILPW70USWKO' where id=8; -update noar ti set v0='HBMGILPW70USWKO' where id=8; -update noar tt set b0='208RB6CBMXVB53KPANMN4EE' where id=8; -update noar ti set b0='208RB6CBMXVB53KPANMN4EE' where id=8; -update noar tt set v0='PM591F8MB5DCB9IBGFF0ONPZ7XEY0QW9' where id=8; -update noar ti set v0='PM591F8MB5DCB9IBGFF0ONPZ7XEY0QW9' where id=8; -update noar tt set b1='VOL66R8SNXATYYT6UZKS3RS' where id=8; -update noar ti set b1='VOL66R8SNXATYYT6UZKS3RS' where id=8; -update noar tt set v0='N6ZN051UYD077Y387' where id=8; -update noar ti set v0='N6ZN051UYD077Y387' where id=8; -update noar tt set b2='JPR6S6LDP719XB' where id=8; -update noar ti set b2='JPR6S6LDP719XB' where id=8; -update noar tt set v0='BWTN29E6C5CQGXS5LH7HFGRPXHLCRU' where id=9; -update noar ti set v0='BWTN29E6C5CQGXS5LH7HFGRPXHLCRU' where id=9; -update noar tt set b0='7G7ZVU4S9B3KWOZAONRU' where id=9; -update noar ti set b0='7G7ZVU4S9B3KWOZAONRU' where id=9; -update noar tt set v0='VO' where id=9; -update noar ti set v0='VO' where id=9; -update noar tt set b1='WIL0ZP5I27' where id=9; -update noar ti set b1='WIL0ZP5I27' where id=9; -update noar tt set v0='EZ4LVF8VSTKFNYNN8' where id=9; -update noar ti set v0='EZ4LVF8VSTKFNYNN8' where id=9; -update noar tt set b2='RKVSQY' where id=9; -update noar ti set b2='RKVSQY' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - v0 varchar(32) not null, - b0 mediumblob not null, - b1 mediumblob not null, - b2 mediumblob not null -) engine=tokudb; -insert into tt values (1,'','','',''); -insert into tt values (2,'','','',''); -insert into tt values (3,'','','',''); -insert into tt values (4,'','','',''); -insert into tt values (5,'','','',''); -insert into tt values (6,'','','',''); -insert into tt values (7,'','','',''); -insert into tt values (8,'','','',''); -insert into tt values (9,'','','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='RX' where id=1; -update noar ti set v0='RX' where id=1; -update noar tt set b0='2WCIMKBCKFK7PGH' where id=1; -update noar ti set b0='2WCIMKBCKFK7PGH' where id=1; -update noar tt set v0='706PK' where id=1; -update noar ti set v0='706PK' where id=1; -update noar tt set b1='6E' where id=1; -update noar ti set b1='6E' where id=1; -update noar tt set v0='1ORZ2X5I49' where id=1; -update noar ti set v0='1ORZ2X5I49' where id=1; -update noar tt set b2='T6VKX' where id=1; -update noar ti set b2='T6VKX' where id=1; -update noar tt set v0='03' where id=2; -update noar ti set v0='03' where id=2; -update noar tt set b0='I8E6KN6YTPV9XDN7VML4EXHTS4FROVW' where id=2; -update noar ti set b0='I8E6KN6YTPV9XDN7VML4EXHTS4FROVW' where id=2; -update noar tt set v0='UQ3SS' where id=2; -update noar ti set v0='UQ3SS' where id=2; -update noar tt set b1='5HNIC6VAZ3UUF4LUSHJ6GN1ERO9CBW2W' where id=2; -update noar ti set b1='5HNIC6VAZ3UUF4LUSHJ6GN1ERO9CBW2W' where id=2; -update noar tt set v0='78M7YTPAQAYTB64XCV00ZF' where id=2; -update noar ti set v0='78M7YTPAQAYTB64XCV00ZF' where id=2; -update noar tt set b2='16G' where id=2; -update noar ti set b2='16G' where id=2; -update noar tt set v0='0JIQT30HOJRN0TR8D7YWPA5WOR' where id=3; -update noar ti set v0='0JIQT30HOJRN0TR8D7YWPA5WOR' where id=3; -update noar tt set b0='WEL6DTZCHTYUL7KZHABDO' where id=3; -update noar ti set b0='WEL6DTZCHTYUL7KZHABDO' where id=3; -update noar tt set v0='MIKXSUXLEMVJ43RVGFB' where id=3; -update noar ti set v0='MIKXSUXLEMVJ43RVGFB' where id=3; -update noar tt set b1='0IHM2JLXMH2ZB' where id=3; -update noar ti set b1='0IHM2JLXMH2ZB' where id=3; -update noar tt set v0='UVOG2TS516' where id=3; -update noar ti set v0='UVOG2TS516' where id=3; -update noar tt set b2='IQSM8OM' where id=3; -update noar ti set b2='IQSM8OM' where id=3; -update noar tt set v0='YUSNVJJMY5BWXLZE86' where id=4; -update noar ti set v0='YUSNVJJMY5BWXLZE86' where id=4; -update noar tt set b0='X2' where id=4; -update noar ti set b0='X2' where id=4; -update noar tt set v0='7HB0QKR67NM' where id=4; -update noar ti set v0='7HB0QKR67NM' where id=4; -update noar tt set b1='XG' where id=4; -update noar ti set b1='XG' where id=4; -update noar tt set v0='Y0JQPUGEOPQI0EK7XNT1G3' where id=4; -update noar ti set v0='Y0JQPUGEOPQI0EK7XNT1G3' where id=4; -update noar tt set b2='HO749TUPMSMB7VLMDFER4' where id=4; -update noar ti set b2='HO749TUPMSMB7VLMDFER4' where id=4; -update noar tt set v0='7UUD0C' where id=5; -update noar ti set v0='7UUD0C' where id=5; -update noar tt set b0='JVY3ARWMV' where id=5; -update noar ti set b0='JVY3ARWMV' where id=5; -update noar tt set v0='7L' where id=5; -update noar ti set v0='7L' where id=5; -update noar tt set b1='QA29N6YZ8FH17Z2PNCBK6HR6' where id=5; -update noar ti set b1='QA29N6YZ8FH17Z2PNCBK6HR6' where id=5; -update noar tt set v0='DB46BRMV41GEHUHHBWF2DE0' where id=5; -update noar ti set v0='DB46BRMV41GEHUHHBWF2DE0' where id=5; -update noar tt set b2='JEUV1' where id=5; -update noar ti set b2='JEUV1' where id=5; -update noar tt set v0='R65BOTHCZ' where id=6; -update noar ti set v0='R65BOTHCZ' where id=6; -update noar tt set b0='CBJ' where id=6; -update noar ti set b0='CBJ' where id=6; -update noar tt set v0='77DZEK4T' where id=6; -update noar ti set v0='77DZEK4T' where id=6; -update noar tt set b1='LSRJKJGL36P9S57649G320Z' where id=6; -update noar ti set b1='LSRJKJGL36P9S57649G320Z' where id=6; -update noar tt set v0='9BMF4BKIOD7XVDUNI35PG2' where id=6; -update noar ti set v0='9BMF4BKIOD7XVDUNI35PG2' where id=6; -update noar tt set b2='JZBV6WWM2FVYN4E19J' where id=6; -update noar ti set b2='JZBV6WWM2FVYN4E19J' where id=6; -update noar tt set v0='F43ZUIDPHZ4AVK3' where id=7; -update noar ti set v0='F43ZUIDPHZ4AVK3' where id=7; -update noar tt set b0='N4FA8K89K3KJ4XISQ8V' where id=7; -update noar ti set b0='N4FA8K89K3KJ4XISQ8V' where id=7; -update noar tt set v0='Q1343X9C6MLSTV' where id=7; -update noar ti set v0='Q1343X9C6MLSTV' where id=7; -update noar tt set b1='UYRSGXXC' where id=7; -update noar ti set b1='UYRSGXXC' where id=7; -update noar tt set v0='5EI5LREEYV0QINGGU' where id=7; -update noar ti set v0='5EI5LREEYV0QINGGU' where id=7; -update noar tt set b2='2XHXN8BJ6LRT9IACSXQXGV70WLQXYQ' where id=7; -update noar ti set b2='2XHXN8BJ6LRT9IACSXQXGV70WLQXYQ' where id=7; -update noar tt set v0='FH1YCOSPJZF6R3RHK6Z5AI3' where id=8; -update noar ti set v0='FH1YCOSPJZF6R3RHK6Z5AI3' where id=8; -update noar tt set b0='2MCJUZ5V291MY' where id=8; -update noar ti set b0='2MCJUZ5V291MY' where id=8; -update noar tt set v0='9M3GJC0B' where id=8; -update noar ti set v0='9M3GJC0B' where id=8; -update noar tt set b1='BYHHYHHUNAEQUJM6W' where id=8; -update noar ti set b1='BYHHYHHUNAEQUJM6W' where id=8; -update noar tt set v0='B5N' where id=8; -update noar ti set v0='B5N' where id=8; -update noar tt set b2='RKU2PO8ZTD3O0ZO3LRDZ5TVZ26QA7G' where id=8; -update noar ti set b2='RKU2PO8ZTD3O0ZO3LRDZ5TVZ26QA7G' where id=8; -update noar tt set v0='OGBGY3ZREMY193Q9F' where id=9; -update noar ti set v0='OGBGY3ZREMY193Q9F' where id=9; -update noar tt set b0='CH0XSWBC2P' where id=9; -update noar ti set b0='CH0XSWBC2P' where id=9; -update noar tt set v0='KK3FY02GXPPSJE15SFKWL4UR' where id=9; -update noar ti set v0='KK3FY02GXPPSJE15SFKWL4UR' where id=9; -update noar tt set b1='AXCLAER11W651LFG' where id=9; -update noar ti set b1='AXCLAER11W651LFG' where id=9; -update noar tt set v0='JE3BLVVQNPLHWMM' where id=9; -update noar ti set v0='JE3BLVVQNPLHWMM' where id=9; -update noar tt set b2='ITIF' where id=9; -update noar ti set b2='ITIF' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - v0 varchar(256) not null, - b0 mediumblob not null, - b1 mediumblob not null, - b2 mediumblob not null -) engine=tokudb; -insert into tt values (1,'','','',''); -insert into tt values (2,'','','',''); -insert into tt values (3,'','','',''); -insert into tt values (4,'','','',''); -insert into tt values (5,'','','',''); -insert into tt values (6,'','','',''); -insert into tt values (7,'','','',''); -insert into tt values (8,'','','',''); -insert into tt values (9,'','','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='7' where id=1; -update noar ti set v0='7' where id=1; -update noar tt set b0='XB69E018X678RTWFNPBOH8W6Z' where id=1; -update noar ti set b0='XB69E018X678RTWFNPBOH8W6Z' where id=1; -update noar tt set v0='KKEDB67B7JJ1NIJCXCYV5EVQEVE' where id=1; -update noar ti set v0='KKEDB67B7JJ1NIJCXCYV5EVQEVE' where id=1; -update noar tt set b1='VLDXMXBKYLHWY' where id=1; -update noar ti set b1='VLDXMXBKYLHWY' where id=1; -update noar tt set v0='H7H7P0LLQ6BK5SXAS2FRSEIR77T1RLZ' where id=1; -update noar ti set v0='H7H7P0LLQ6BK5SXAS2FRSEIR77T1RLZ' where id=1; -update noar tt set b2='RXYF95Q' where id=1; -update noar ti set b2='RXYF95Q' where id=1; -update noar tt set v0='05' where id=2; -update noar ti set v0='05' where id=2; -update noar tt set b0='ZB1DFZM' where id=2; -update noar ti set b0='ZB1DFZM' where id=2; -update noar tt set v0='HKG3PDFVE5' where id=2; -update noar ti set v0='HKG3PDFVE5' where id=2; -update noar tt set b1='A7SMDWGJM7BXX99' where id=2; -update noar ti set b1='A7SMDWGJM7BXX99' where id=2; -update noar tt set v0='09KYTXMNP3B9JT' where id=2; -update noar ti set v0='09KYTXMNP3B9JT' where id=2; -update noar tt set b2='6I36X22EZW0A9B' where id=2; -update noar ti set b2='6I36X22EZW0A9B' where id=2; -update noar tt set v0='LS6AL05UQLTVSIHGW9U69GCB3A' where id=3; -update noar ti set v0='LS6AL05UQLTVSIHGW9U69GCB3A' where id=3; -update noar tt set b0='SUPSJAV22BA9ZSBDS8Q5KTZ0QR' where id=3; -update noar ti set b0='SUPSJAV22BA9ZSBDS8Q5KTZ0QR' where id=3; -update noar tt set v0='PSDFUNRWD3DE7T973DE' where id=3; -update noar ti set v0='PSDFUNRWD3DE7T973DE' where id=3; -update noar tt set b1='W7FL5IIMK1Z' where id=3; -update noar ti set b1='W7FL5IIMK1Z' where id=3; -update noar tt set v0='7HVRYZKHWX9S0L54UGF5AMS8DTMB' where id=3; -update noar ti set v0='7HVRYZKHWX9S0L54UGF5AMS8DTMB' where id=3; -update noar tt set b2='76WUV4E03OP8IC7XANZDRT1' where id=3; -update noar ti set b2='76WUV4E03OP8IC7XANZDRT1' where id=3; -update noar tt set v0='SSNGY' where id=4; -update noar ti set v0='SSNGY' where id=4; -update noar tt set b0='8O8GHEQCYIFTG02G17DPCNHYJ5ZYTWL' where id=4; -update noar ti set b0='8O8GHEQCYIFTG02G17DPCNHYJ5ZYTWL' where id=4; -update noar tt set v0='IVRBC79VODTM5ESR5' where id=4; -update noar ti set v0='IVRBC79VODTM5ESR5' where id=4; -update noar tt set b1='A5' where id=4; -update noar ti set b1='A5' where id=4; -update noar tt set v0='NZLWCKXZPYQBLG2315A9TCWPEK17' where id=4; -update noar ti set v0='NZLWCKXZPYQBLG2315A9TCWPEK17' where id=4; -update noar tt set b2='HGWVIJPSN0GFXZ' where id=4; -update noar ti set b2='HGWVIJPSN0GFXZ' where id=4; -update noar tt set v0='N27FQ1OHGWUYQSO2P36VHTG1N' where id=5; -update noar ti set v0='N27FQ1OHGWUYQSO2P36VHTG1N' where id=5; -update noar tt set b0='6EX94' where id=5; -update noar ti set b0='6EX94' where id=5; -update noar tt set v0='5QA780MPCBH12AG76Q6DCL' where id=5; -update noar ti set v0='5QA780MPCBH12AG76Q6DCL' where id=5; -update noar tt set b1='2XRCU69NFWZF7XDFNR' where id=5; -update noar ti set b1='2XRCU69NFWZF7XDFNR' where id=5; -update noar tt set v0='LRVEXWM4468MWAS8' where id=5; -update noar ti set v0='LRVEXWM4468MWAS8' where id=5; -update noar tt set b2='55M1LI6OOO0ZSD6OG0AYH4' where id=5; -update noar ti set b2='55M1LI6OOO0ZSD6OG0AYH4' where id=5; -update noar tt set v0='K9' where id=6; -update noar ti set v0='K9' where id=6; -update noar tt set b0='TS1VF5B9QKAP31QTG' where id=6; -update noar ti set b0='TS1VF5B9QKAP31QTG' where id=6; -update noar tt set v0='6FP81YSFF0BBMZGX8J0TDBJNIHS60XG' where id=6; -update noar ti set v0='6FP81YSFF0BBMZGX8J0TDBJNIHS60XG' where id=6; -update noar tt set b1='CMQ5JZKPNE8G1UZU30JQZWEW' where id=6; -update noar ti set b1='CMQ5JZKPNE8G1UZU30JQZWEW' where id=6; -update noar tt set v0='CYCBT' where id=6; -update noar ti set v0='CYCBT' where id=6; -update noar tt set b2='7NSLPYVX1TQNRH0WX4ACGSXATH7GKFAS' where id=6; -update noar ti set b2='7NSLPYVX1TQNRH0WX4ACGSXATH7GKFAS' where id=6; -update noar tt set v0='CBZF6X7INO4ZHUM2G1' where id=7; -update noar ti set v0='CBZF6X7INO4ZHUM2G1' where id=7; -update noar tt set b0='ZUE226DQC65JWJD9FIHRW40DAP2R' where id=7; -update noar ti set b0='ZUE226DQC65JWJD9FIHRW40DAP2R' where id=7; -update noar tt set v0='W18N5FE2S4OHWQ7X' where id=7; -update noar ti set v0='W18N5FE2S4OHWQ7X' where id=7; -update noar tt set b1='J45XTK0VD03QD23KTB9CFUX8QTOH' where id=7; -update noar ti set b1='J45XTK0VD03QD23KTB9CFUX8QTOH' where id=7; -update noar tt set v0='0CU' where id=7; -update noar ti set v0='0CU' where id=7; -update noar tt set b2='57OPJB9725UTU7H' where id=7; -update noar ti set b2='57OPJB9725UTU7H' where id=7; -update noar tt set v0='I9H685OG5WIGKTI3733' where id=8; -update noar ti set v0='I9H685OG5WIGKTI3733' where id=8; -update noar tt set b0='N0QLZ27FYU' where id=8; -update noar ti set b0='N0QLZ27FYU' where id=8; -update noar tt set v0='WIJRXFY' where id=8; -update noar ti set v0='WIJRXFY' where id=8; -update noar tt set b1='HLX2BV5FZ5IM047NC' where id=8; -update noar ti set b1='HLX2BV5FZ5IM047NC' where id=8; -update noar tt set v0='5' where id=8; -update noar ti set v0='5' where id=8; -update noar tt set b2='7RTVAR3LTZ2JOHFFQVK1Z' where id=8; -update noar ti set b2='7RTVAR3LTZ2JOHFFQVK1Z' where id=8; -update noar tt set v0='4XZ3ISOBVA9IEZI9ND' where id=9; -update noar ti set v0='4XZ3ISOBVA9IEZI9ND' where id=9; -update noar tt set b0='RZHK868VDX9XSQUN0X5IYKCHJR208PH' where id=9; -update noar ti set b0='RZHK868VDX9XSQUN0X5IYKCHJR208PH' where id=9; -update noar tt set v0='OF' where id=9; -update noar ti set v0='OF' where id=9; -update noar tt set b1='ZQEIMTX7MNTG' where id=9; -update noar ti set b1='ZQEIMTX7MNTG' where id=9; -update noar tt set v0='OL1ST5QPQ743W2EJMI4YR' where id=9; -update noar ti set v0='OL1ST5QPQ743W2EJMI4YR' where id=9; -update noar tt set b2='86J6JEVBKRD2VOC2REPQ4DAJ5' where id=9; -update noar ti set b2='86J6JEVBKRD2VOC2REPQ4DAJ5' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - v0 varchar(32) null, - b0 mediumblob null, - b1 mediumblob null, - b2 longblob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='VG' where id=1; -update noar ti set v0='VG' where id=1; -update noar tt set b0='FJN3XA968HN9GHXM2APSKL' where id=1; -update noar ti set b0='FJN3XA968HN9GHXM2APSKL' where id=1; -update noar tt set v0='YDIZSA59WFXQC1OOSIWBSOEK3F1H1W' where id=1; -update noar ti set v0='YDIZSA59WFXQC1OOSIWBSOEK3F1H1W' where id=1; -update noar tt set b1='H1G3' where id=1; -update noar ti set b1='H1G3' where id=1; -update noar tt set v0='NBD14WRQR0XZP2SG7WNG5Q0Q209YTAHY' where id=1; -update noar ti set v0='NBD14WRQR0XZP2SG7WNG5Q0Q209YTAHY' where id=1; -update noar tt set b2='QJOFOW1SGBID86VK7296EWSZGG9J7X' where id=1; -update noar ti set b2='QJOFOW1SGBID86VK7296EWSZGG9J7X' where id=1; -update noar tt set v0='YCV4YB8X8MIYIYDSAPD' where id=2; -update noar ti set v0='YCV4YB8X8MIYIYDSAPD' where id=2; -update noar tt set b0='YE8DN4ZG5OO01GEMYI5CLXSTV' where id=2; -update noar ti set b0='YE8DN4ZG5OO01GEMYI5CLXSTV' where id=2; -update noar tt set v0='F5WDA5H09RI' where id=2; -update noar ti set v0='F5WDA5H09RI' where id=2; -update noar tt set b1='DVLYDGB9UAVRDQ160SF6' where id=2; -update noar ti set b1='DVLYDGB9UAVRDQ160SF6' where id=2; -update noar tt set v0='PZ1LPO8WDF04JS2' where id=2; -update noar ti set v0='PZ1LPO8WDF04JS2' where id=2; -update noar tt set b2='L9HGD8ZI4WKVC7T2' where id=2; -update noar ti set b2='L9HGD8ZI4WKVC7T2' where id=2; -update noar tt set v0='Y6E0C0SOYHI' where id=3; -update noar ti set v0='Y6E0C0SOYHI' where id=3; -update noar tt set b0='PNCSIUC' where id=3; -update noar ti set b0='PNCSIUC' where id=3; -update noar tt set v0='5QKUG4AENZJWRD' where id=3; -update noar ti set v0='5QKUG4AENZJWRD' where id=3; -update noar tt set b1='OSHU5P5' where id=3; -update noar ti set b1='OSHU5P5' where id=3; -update noar tt set v0='962Q7' where id=3; -update noar ti set v0='962Q7' where id=3; -update noar tt set b2='L1IT8QRRQT0BWQSQIHUH9Z8KM4U' where id=3; -update noar ti set b2='L1IT8QRRQT0BWQSQIHUH9Z8KM4U' where id=3; -update noar tt set v0='XK5GGNXZPPZ6KKPPRRM2YDNICKWZ3ZJ' where id=4; -update noar ti set v0='XK5GGNXZPPZ6KKPPRRM2YDNICKWZ3ZJ' where id=4; -update noar tt set b0='GURSCLP' where id=4; -update noar ti set b0='GURSCLP' where id=4; -update noar tt set v0='V2FN6E1TUKV9341PNOEEI' where id=4; -update noar ti set v0='V2FN6E1TUKV9341PNOEEI' where id=4; -update noar tt set b1='H5KLD5TAR3248MKYBEQ8OXNSBOPE' where id=4; -update noar ti set b1='H5KLD5TAR3248MKYBEQ8OXNSBOPE' where id=4; -update noar tt set v0='GL5QUK8KUS427DRNM0UIMSCF63M' where id=4; -update noar ti set v0='GL5QUK8KUS427DRNM0UIMSCF63M' where id=4; -update noar tt set b2='WVV2D762GU1TKFJD' where id=4; -update noar ti set b2='WVV2D762GU1TKFJD' where id=4; -update noar tt set v0='KN45QZJC4V72WP0XIC5PO8XFH6F' where id=5; -update noar ti set v0='KN45QZJC4V72WP0XIC5PO8XFH6F' where id=5; -update noar tt set b0='B327PUI3MYCEI8XP96' where id=5; -update noar ti set b0='B327PUI3MYCEI8XP96' where id=5; -update noar tt set v0='DA7DXNGKX7' where id=5; -update noar ti set v0='DA7DXNGKX7' where id=5; -update noar tt set b1='KB1G9K7XE09SF6LGY5I47' where id=5; -update noar ti set b1='KB1G9K7XE09SF6LGY5I47' where id=5; -update noar tt set v0='E570M6JXEA4JBZJFPHFT' where id=5; -update noar ti set v0='E570M6JXEA4JBZJFPHFT' where id=5; -update noar tt set b2='W3L' where id=5; -update noar ti set b2='W3L' where id=5; -update noar tt set v0='DSR1XNMKT0AZ' where id=6; -update noar ti set v0='DSR1XNMKT0AZ' where id=6; -update noar tt set b0='18X' where id=6; -update noar ti set b0='18X' where id=6; -update noar tt set v0='6RGPJ2DOCSP5AJWZR2FLHIZVGNW7' where id=6; -update noar ti set v0='6RGPJ2DOCSP5AJWZR2FLHIZVGNW7' where id=6; -update noar tt set b1='M6YYVTWBYDTQBG7CI0B5L9V7025WVLC' where id=6; -update noar ti set b1='M6YYVTWBYDTQBG7CI0B5L9V7025WVLC' where id=6; -update noar tt set v0='6W0Y' where id=6; -update noar ti set v0='6W0Y' where id=6; -update noar tt set b2='KIMUPFZ' where id=6; -update noar ti set b2='KIMUPFZ' where id=6; -update noar tt set v0='AH' where id=7; -update noar ti set v0='AH' where id=7; -update noar tt set b0='LC1C52G7BB7MO7PT44KJGZIKTU5K4LC' where id=7; -update noar ti set b0='LC1C52G7BB7MO7PT44KJGZIKTU5K4LC' where id=7; -update noar tt set v0='48NXU97IQYAGCJYQ3B' where id=7; -update noar ti set v0='48NXU97IQYAGCJYQ3B' where id=7; -update noar tt set b1='6U9M2184W42V515NLBDAOSKTWKK6XM' where id=7; -update noar ti set b1='6U9M2184W42V515NLBDAOSKTWKK6XM' where id=7; -update noar tt set v0='5ZR6VB9CEAWA4ZSD4J' where id=7; -update noar ti set v0='5ZR6VB9CEAWA4ZSD4J' where id=7; -update noar tt set b2='90MNRLNR4UU1F5RXKP6VWLIKB' where id=7; -update noar ti set b2='90MNRLNR4UU1F5RXKP6VWLIKB' where id=7; -update noar tt set v0='ARRFXWW4LY05R2U5P5' where id=8; -update noar ti set v0='ARRFXWW4LY05R2U5P5' where id=8; -update noar tt set b0='OEVDKE117AD88ZTXFAZ' where id=8; -update noar ti set b0='OEVDKE117AD88ZTXFAZ' where id=8; -update noar tt set v0='S0NR1IPLMU5Z07H0R21BRAU4I982IQB8' where id=8; -update noar ti set v0='S0NR1IPLMU5Z07H0R21BRAU4I982IQB8' where id=8; -update noar tt set b1='NOI76XV' where id=8; -update noar ti set b1='NOI76XV' where id=8; -update noar tt set v0='WXUDSLXIHL42WFJXTBZ0DD1Y' where id=8; -update noar ti set v0='WXUDSLXIHL42WFJXTBZ0DD1Y' where id=8; -update noar tt set b2='7PYL9NZFGE9OYKORR' where id=8; -update noar ti set b2='7PYL9NZFGE9OYKORR' where id=8; -update noar tt set v0='I7' where id=9; -update noar ti set v0='I7' where id=9; -update noar tt set b0='PF' where id=9; -update noar ti set b0='PF' where id=9; -update noar tt set v0='HYMII189T4C575LFE1M7BF8YNDI8' where id=9; -update noar ti set v0='HYMII189T4C575LFE1M7BF8YNDI8' where id=9; -update noar tt set b1='XUXJH2NAYAUW4N57Q60Y8ZNSUXFHLM6' where id=9; -update noar ti set b1='XUXJH2NAYAUW4N57Q60Y8ZNSUXFHLM6' where id=9; -update noar tt set v0='2T2RWCL0Y4' where id=9; -update noar ti set v0='2T2RWCL0Y4' where id=9; -update noar tt set b2='1OGXMOK8SAJ87DUVY2AUHSQ' where id=9; -update noar ti set b2='1OGXMOK8SAJ87DUVY2AUHSQ' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - v0 varchar(256) null, - b0 mediumblob null, - b1 mediumblob null, - b2 longblob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='IW6Y0QH0HNFJKJM3' where id=1; -update noar ti set v0='IW6Y0QH0HNFJKJM3' where id=1; -update noar tt set b0='73OJM' where id=1; -update noar ti set b0='73OJM' where id=1; -update noar tt set v0='SJI5ZFVKS' where id=1; -update noar ti set v0='SJI5ZFVKS' where id=1; -update noar tt set b1='P6OAIR0BIQZB0JWRFE1DYZVX6S' where id=1; -update noar ti set b1='P6OAIR0BIQZB0JWRFE1DYZVX6S' where id=1; -update noar tt set v0='B9GXKK4BPJYDYWV2XWYU8XAKA25L' where id=1; -update noar ti set v0='B9GXKK4BPJYDYWV2XWYU8XAKA25L' where id=1; -update noar tt set b2='V7UN' where id=1; -update noar ti set b2='V7UN' where id=1; -update noar tt set v0='D6CQ2AYNS0P3E9335X1KCIQT5W' where id=2; -update noar ti set v0='D6CQ2AYNS0P3E9335X1KCIQT5W' where id=2; -update noar tt set b0='FUHPUJ8IP10UF1MZPDY9ELRZ3' where id=2; -update noar ti set b0='FUHPUJ8IP10UF1MZPDY9ELRZ3' where id=2; -update noar tt set v0='8WM21ZZLR1Y7Q' where id=2; -update noar ti set v0='8WM21ZZLR1Y7Q' where id=2; -update noar tt set b1='K5TAXYWANDG4M68P87O2RJMV04XH70' where id=2; -update noar ti set b1='K5TAXYWANDG4M68P87O2RJMV04XH70' where id=2; -update noar tt set v0='7OA0XU52P9HRE8PYRFKC6YW3CJDRP' where id=2; -update noar ti set v0='7OA0XU52P9HRE8PYRFKC6YW3CJDRP' where id=2; -update noar tt set b2='QI01UKL4J6EU0W7TL3B5Z6NFGQJT6V0' where id=2; -update noar ti set b2='QI01UKL4J6EU0W7TL3B5Z6NFGQJT6V0' where id=2; -update noar tt set v0='LK1XQODE31ALGYF3WBABAW6' where id=3; -update noar ti set v0='LK1XQODE31ALGYF3WBABAW6' where id=3; -update noar tt set b0='312HEGO0J4GC00YOCF' where id=3; -update noar ti set b0='312HEGO0J4GC00YOCF' where id=3; -update noar tt set v0='7PC' where id=3; -update noar ti set v0='7PC' where id=3; -update noar tt set b1='KF57DS0HMKIFTONTVMP0LUYVNOLF' where id=3; -update noar ti set b1='KF57DS0HMKIFTONTVMP0LUYVNOLF' where id=3; -update noar tt set v0='AKV6P2UY' where id=3; -update noar ti set v0='AKV6P2UY' where id=3; -update noar tt set b2='A9UFBJRKOH479FPRKTS3U4JNX' where id=3; -update noar ti set b2='A9UFBJRKOH479FPRKTS3U4JNX' where id=3; -update noar tt set v0='1OHUNAICUT8XP4O66UC' where id=4; -update noar ti set v0='1OHUNAICUT8XP4O66UC' where id=4; -update noar tt set b0='TZ9NLOPICFE' where id=4; -update noar ti set b0='TZ9NLOPICFE' where id=4; -update noar tt set v0='3VCJE3Q2BSI8ZUAVVL27APDAXBJ' where id=4; -update noar ti set v0='3VCJE3Q2BSI8ZUAVVL27APDAXBJ' where id=4; -update noar tt set b1='O9HU0YGH' where id=4; -update noar ti set b1='O9HU0YGH' where id=4; -update noar tt set v0='8J' where id=4; -update noar ti set v0='8J' where id=4; -update noar tt set b2='3OEEX9SCL3XSV2IMCV8WA804DTWNZXH' where id=4; -update noar ti set b2='3OEEX9SCL3XSV2IMCV8WA804DTWNZXH' where id=4; -update noar tt set v0='QYA938NA' where id=5; -update noar ti set v0='QYA938NA' where id=5; -update noar tt set b0='30XT95LYU4V06OTXDP4VNM' where id=5; -update noar ti set b0='30XT95LYU4V06OTXDP4VNM' where id=5; -update noar tt set v0='8S9K5D2LHGAVDR9LYVH' where id=5; -update noar ti set v0='8S9K5D2LHGAVDR9LYVH' where id=5; -update noar tt set b1='4QKM31OZ2K00XUAHX4G3VOW' where id=5; -update noar ti set b1='4QKM31OZ2K00XUAHX4G3VOW' where id=5; -update noar tt set v0='5C' where id=5; -update noar ti set v0='5C' where id=5; -update noar tt set b2='E5DNMQW0DNEV3XZG881N6' where id=5; -update noar ti set b2='E5DNMQW0DNEV3XZG881N6' where id=5; -update noar tt set v0='JKTGTP' where id=6; -update noar ti set v0='JKTGTP' where id=6; -update noar tt set b0='8YWA1' where id=6; -update noar ti set b0='8YWA1' where id=6; -update noar tt set v0='KE1WTCQWP1SRBSARCBP5HCBL6M' where id=6; -update noar ti set v0='KE1WTCQWP1SRBSARCBP5HCBL6M' where id=6; -update noar tt set b1='ZK5C01FTEOGRYX33PG5IQ9UF0F7PN2' where id=6; -update noar ti set b1='ZK5C01FTEOGRYX33PG5IQ9UF0F7PN2' where id=6; -update noar tt set v0='E5ZPX8R24XY78TPHAU3YQT26' where id=6; -update noar ti set v0='E5ZPX8R24XY78TPHAU3YQT26' where id=6; -update noar tt set b2='GE' where id=6; -update noar ti set b2='GE' where id=6; -update noar tt set v0='0XOJYDX8PEHRJYS57XM6B34T3IJPN' where id=7; -update noar ti set v0='0XOJYDX8PEHRJYS57XM6B34T3IJPN' where id=7; -update noar tt set b0='PJ6CMI7C' where id=7; -update noar ti set b0='PJ6CMI7C' where id=7; -update noar tt set v0='BW1FVWMHL4G5' where id=7; -update noar ti set v0='BW1FVWMHL4G5' where id=7; -update noar tt set b1='AM9PTG21' where id=7; -update noar ti set b1='AM9PTG21' where id=7; -update noar tt set v0='OJXW7YO' where id=7; -update noar ti set v0='OJXW7YO' where id=7; -update noar tt set b2='IYBAI4Z2A' where id=7; -update noar ti set b2='IYBAI4Z2A' where id=7; -update noar tt set v0='ADSI8OELHE0ZZEA3Z' where id=8; -update noar ti set v0='ADSI8OELHE0ZZEA3Z' where id=8; -update noar tt set b0='F9DRCG5NCCTY1NAYHKV6W' where id=8; -update noar ti set b0='F9DRCG5NCCTY1NAYHKV6W' where id=8; -update noar tt set v0='90DG6AA' where id=8; -update noar ti set v0='90DG6AA' where id=8; -update noar tt set b1='S4' where id=8; -update noar ti set b1='S4' where id=8; -update noar tt set v0='KRKT17T019AUOG6API6OI0G8' where id=8; -update noar ti set v0='KRKT17T019AUOG6API6OI0G8' where id=8; -update noar tt set b2='SKLLY80VXK' where id=8; -update noar ti set b2='SKLLY80VXK' where id=8; -update noar tt set v0='P9QLBX' where id=9; -update noar ti set v0='P9QLBX' where id=9; -update noar tt set b0='1R3CPMX0OWEWT' where id=9; -update noar ti set b0='1R3CPMX0OWEWT' where id=9; -update noar tt set v0='IF0RM8UN9F6W09SC6B' where id=9; -update noar ti set v0='IF0RM8UN9F6W09SC6B' where id=9; -update noar tt set b1='ZKF5F092H183FKWWS9TP' where id=9; -update noar ti set b1='ZKF5F092H183FKWWS9TP' where id=9; -update noar tt set v0='MZR4BSRH7WV8DQ0' where id=9; -update noar ti set v0='MZR4BSRH7WV8DQ0' where id=9; -update noar tt set b2='FEDLU4D2MJ' where id=9; -update noar ti set b2='FEDLU4D2MJ' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - v0 varchar(32) not null, - b0 mediumblob not null, - b1 mediumblob not null, - b2 longblob not null -) engine=tokudb; -insert into tt values (1,'','','',''); -insert into tt values (2,'','','',''); -insert into tt values (3,'','','',''); -insert into tt values (4,'','','',''); -insert into tt values (5,'','','',''); -insert into tt values (6,'','','',''); -insert into tt values (7,'','','',''); -insert into tt values (8,'','','',''); -insert into tt values (9,'','','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='L3786MH907' where id=1; -update noar ti set v0='L3786MH907' where id=1; -update noar tt set b0='ELM3TRETS5A3WB51' where id=1; -update noar ti set b0='ELM3TRETS5A3WB51' where id=1; -update noar tt set v0='FLL1KAJZCYTD8OXO4V36H' where id=1; -update noar ti set v0='FLL1KAJZCYTD8OXO4V36H' where id=1; -update noar tt set b1='ITRUL57EP0F1YKXG2' where id=1; -update noar ti set b1='ITRUL57EP0F1YKXG2' where id=1; -update noar tt set v0='JTKPMPBR892ATZPJDO4OMWFT5W73' where id=1; -update noar ti set v0='JTKPMPBR892ATZPJDO4OMWFT5W73' where id=1; -update noar tt set b2='ZMJB82G8NDDHADDKU0LXQ2G8LJ5FDLYD' where id=1; -update noar ti set b2='ZMJB82G8NDDHADDKU0LXQ2G8LJ5FDLYD' where id=1; -update noar tt set v0='O' where id=2; -update noar ti set v0='O' where id=2; -update noar tt set b0='HCC6S' where id=2; -update noar ti set b0='HCC6S' where id=2; -update noar tt set v0='68GFRE9UBAUQRD916IKNDTZJMSSWO' where id=2; -update noar ti set v0='68GFRE9UBAUQRD916IKNDTZJMSSWO' where id=2; -update noar tt set b1='JHOL81FW3UIBEP97I78BZJ8WCAPI2P' where id=2; -update noar ti set b1='JHOL81FW3UIBEP97I78BZJ8WCAPI2P' where id=2; -update noar tt set v0='1JOA0R7LQJWD16TA' where id=2; -update noar ti set v0='1JOA0R7LQJWD16TA' where id=2; -update noar tt set b2='L' where id=2; -update noar ti set b2='L' where id=2; -update noar tt set v0='CEO0C0ONVN7Y4R2H07C4WKOZ' where id=3; -update noar ti set v0='CEO0C0ONVN7Y4R2H07C4WKOZ' where id=3; -update noar tt set b0='L6ZFC55BTWBSSDI2ZJ7LPJ1NO' where id=3; -update noar ti set b0='L6ZFC55BTWBSSDI2ZJ7LPJ1NO' where id=3; -update noar tt set v0='384WA1Z' where id=3; -update noar ti set v0='384WA1Z' where id=3; -update noar tt set b1='D9DOWXS4GXUX' where id=3; -update noar ti set b1='D9DOWXS4GXUX' where id=3; -update noar tt set v0='FGDTBLBH01EFII9OHGY' where id=3; -update noar ti set v0='FGDTBLBH01EFII9OHGY' where id=3; -update noar tt set b2='YZKYP33HYHXCOD' where id=3; -update noar ti set b2='YZKYP33HYHXCOD' where id=3; -update noar tt set v0='CU25C0' where id=4; -update noar ti set v0='CU25C0' where id=4; -update noar tt set b0='S7W3' where id=4; -update noar ti set b0='S7W3' where id=4; -update noar tt set v0='D' where id=4; -update noar ti set v0='D' where id=4; -update noar tt set b1='TYXENYDW6AVV7D7J' where id=4; -update noar ti set b1='TYXENYDW6AVV7D7J' where id=4; -update noar tt set v0='1HXHMOE25536SM7ML5H90795M3R' where id=4; -update noar ti set v0='1HXHMOE25536SM7ML5H90795M3R' where id=4; -update noar tt set b2='CLC0UPD' where id=4; -update noar ti set b2='CLC0UPD' where id=4; -update noar tt set v0='3X3I49A' where id=5; -update noar ti set v0='3X3I49A' where id=5; -update noar tt set b0='182KDM1W7YFBMFX9OMQW5PVS44IJP' where id=5; -update noar ti set b0='182KDM1W7YFBMFX9OMQW5PVS44IJP' where id=5; -update noar tt set v0='ZRIFAY71HPNDJGEFCQ2R4B9K' where id=5; -update noar ti set v0='ZRIFAY71HPNDJGEFCQ2R4B9K' where id=5; -update noar tt set b1='CJ' where id=5; -update noar ti set b1='CJ' where id=5; -update noar tt set v0='6GXY89738LQVIPB' where id=5; -update noar ti set v0='6GXY89738LQVIPB' where id=5; -update noar tt set b2='YT8TARP0SO3I9PRJS5OM4T7' where id=5; -update noar ti set b2='YT8TARP0SO3I9PRJS5OM4T7' where id=5; -update noar tt set v0='GEVUT9EVTCUHZI5BFJGWA' where id=6; -update noar ti set v0='GEVUT9EVTCUHZI5BFJGWA' where id=6; -update noar tt set b0='ZQ8S0KDGFKNT0ZNOJF' where id=6; -update noar ti set b0='ZQ8S0KDGFKNT0ZNOJF' where id=6; -update noar tt set v0='4P2ZDD9HXE1AECQB58G9HCW1KPKDMR' where id=6; -update noar ti set v0='4P2ZDD9HXE1AECQB58G9HCW1KPKDMR' where id=6; -update noar tt set b1='WBCZFSOJRG' where id=6; -update noar ti set b1='WBCZFSOJRG' where id=6; -update noar tt set v0='2ZZ' where id=6; -update noar ti set v0='2ZZ' where id=6; -update noar tt set b2='XSWQTGNK0SWMOOIBYQA1BJ' where id=6; -update noar ti set b2='XSWQTGNK0SWMOOIBYQA1BJ' where id=6; -update noar tt set v0='LRBQWRQHDY' where id=7; -update noar ti set v0='LRBQWRQHDY' where id=7; -update noar tt set b0='EBK6PH6RTVLGLTXFEMI' where id=7; -update noar ti set b0='EBK6PH6RTVLGLTXFEMI' where id=7; -update noar tt set v0='XPP5MOW6BHOK6' where id=7; -update noar ti set v0='XPP5MOW6BHOK6' where id=7; -update noar tt set b1='ZERGFQPI8QLUZ4QT3OI' where id=7; -update noar ti set b1='ZERGFQPI8QLUZ4QT3OI' where id=7; -update noar tt set v0='HHTTJCFXF9LRKK427LR15CHNFIGG4ST9' where id=7; -update noar ti set v0='HHTTJCFXF9LRKK427LR15CHNFIGG4ST9' where id=7; -update noar tt set b2='BX7I' where id=7; -update noar ti set b2='BX7I' where id=7; -update noar tt set v0='3KD' where id=8; -update noar ti set v0='3KD' where id=8; -update noar tt set b0='NE' where id=8; -update noar ti set b0='NE' where id=8; -update noar tt set v0='V2XUXEHY0RDT' where id=8; -update noar ti set v0='V2XUXEHY0RDT' where id=8; -update noar tt set b1='45AU94G24WIBAOZ094' where id=8; -update noar ti set b1='45AU94G24WIBAOZ094' where id=8; -update noar tt set v0='7S2NUS' where id=8; -update noar ti set v0='7S2NUS' where id=8; -update noar tt set b2='L0PUWZ6D7MQYI8C' where id=8; -update noar ti set b2='L0PUWZ6D7MQYI8C' where id=8; -update noar tt set v0='JKBZIFRJVD' where id=9; -update noar ti set v0='JKBZIFRJVD' where id=9; -update noar tt set b0='XCO3MNFHZV9FY1B88T2TG9M24' where id=9; -update noar ti set b0='XCO3MNFHZV9FY1B88T2TG9M24' where id=9; -update noar tt set v0='CPP0L5Z4DUABBHQ3BLH062D8U09VL7VY' where id=9; -update noar ti set v0='CPP0L5Z4DUABBHQ3BLH062D8U09VL7VY' where id=9; -update noar tt set b1='ZFQOVAF0JCJCX258O3T9OJM5KLOG4' where id=9; -update noar ti set b1='ZFQOVAF0JCJCX258O3T9OJM5KLOG4' where id=9; -update noar tt set v0='A7YP9BPP8G4B7CSSBWLB5CSS3JW' where id=9; -update noar ti set v0='A7YP9BPP8G4B7CSSBWLB5CSS3JW' where id=9; -update noar tt set b2='2UI7LHK6M7DMW' where id=9; -update noar ti set b2='2UI7LHK6M7DMW' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - v0 varchar(256) not null, - b0 mediumblob not null, - b1 mediumblob not null, - b2 longblob not null -) engine=tokudb; -insert into tt values (1,'','','',''); -insert into tt values (2,'','','',''); -insert into tt values (3,'','','',''); -insert into tt values (4,'','','',''); -insert into tt values (5,'','','',''); -insert into tt values (6,'','','',''); -insert into tt values (7,'','','',''); -insert into tt values (8,'','','',''); -insert into tt values (9,'','','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='7UI8H45MAL' where id=1; -update noar ti set v0='7UI8H45MAL' where id=1; -update noar tt set b0='G4PAQOVFVMEL4ML0YPJACR' where id=1; -update noar ti set b0='G4PAQOVFVMEL4ML0YPJACR' where id=1; -update noar tt set v0='QZMRKBIXXHBUSTIMAB4R' where id=1; -update noar ti set v0='QZMRKBIXXHBUSTIMAB4R' where id=1; -update noar tt set b1='2Q3YFFK9IO9PUM3OZW7UPQFTFAO' where id=1; -update noar ti set b1='2Q3YFFK9IO9PUM3OZW7UPQFTFAO' where id=1; -update noar tt set v0='O3WKCFM97Q2KUR3KW' where id=1; -update noar ti set v0='O3WKCFM97Q2KUR3KW' where id=1; -update noar tt set b2='NJEQ588SH2' where id=1; -update noar ti set b2='NJEQ588SH2' where id=1; -update noar tt set v0='U8' where id=2; -update noar ti set v0='U8' where id=2; -update noar tt set b0='P' where id=2; -update noar ti set b0='P' where id=2; -update noar tt set v0='0FV4X6UJUEC8M2O7K97MO5IWZAEHJ5RP' where id=2; -update noar ti set v0='0FV4X6UJUEC8M2O7K97MO5IWZAEHJ5RP' where id=2; -update noar tt set b1='EE3JI8AB0XMPRHL2C379KINBNKK42' where id=2; -update noar ti set b1='EE3JI8AB0XMPRHL2C379KINBNKK42' where id=2; -update noar tt set v0='PE1I1GLH' where id=2; -update noar ti set v0='PE1I1GLH' where id=2; -update noar tt set b2='C7FLW6QEWSG3OZLR4AQCFH5' where id=2; -update noar ti set b2='C7FLW6QEWSG3OZLR4AQCFH5' where id=2; -update noar tt set v0='5JLCCYX5A8A9VMV5UOJSYC1CHZY91JJ' where id=3; -update noar ti set v0='5JLCCYX5A8A9VMV5UOJSYC1CHZY91JJ' where id=3; -update noar tt set b0='XA90N1LVOBLSB4QK8V8B3B0KYC' where id=3; -update noar ti set b0='XA90N1LVOBLSB4QK8V8B3B0KYC' where id=3; -update noar tt set v0='YN90JBF8ILLG0B9ZN8OUM9YK9C' where id=3; -update noar ti set v0='YN90JBF8ILLG0B9ZN8OUM9YK9C' where id=3; -update noar tt set b1='4CESH6YP0Q1XYPIRDIF5CT' where id=3; -update noar ti set b1='4CESH6YP0Q1XYPIRDIF5CT' where id=3; -update noar tt set v0='JU' where id=3; -update noar ti set v0='JU' where id=3; -update noar tt set b2='KD2Q2RA8P61VD0' where id=3; -update noar ti set b2='KD2Q2RA8P61VD0' where id=3; -update noar tt set v0='5I6TPP3QDZ073' where id=4; -update noar ti set v0='5I6TPP3QDZ073' where id=4; -update noar tt set b0='YHQV33RT' where id=4; -update noar ti set b0='YHQV33RT' where id=4; -update noar tt set v0='SBHQEHGXWKEP27SJ9YHEABY2Z7B4LD' where id=4; -update noar ti set v0='SBHQEHGXWKEP27SJ9YHEABY2Z7B4LD' where id=4; -update noar tt set b1='GXNDFSV704RLWWNMX' where id=4; -update noar ti set b1='GXNDFSV704RLWWNMX' where id=4; -update noar tt set v0='QRD3A8RF2WMVE6OGFSPVV3' where id=4; -update noar ti set v0='QRD3A8RF2WMVE6OGFSPVV3' where id=4; -update noar tt set b2='OU4BEL6503YEHP9ZXHGSFFM2R' where id=4; -update noar ti set b2='OU4BEL6503YEHP9ZXHGSFFM2R' where id=4; -update noar tt set v0='DGR4JEFCGTYBINPY6YER1FU4CNXH4R28' where id=5; -update noar ti set v0='DGR4JEFCGTYBINPY6YER1FU4CNXH4R28' where id=5; -update noar tt set b0='65STS' where id=5; -update noar ti set b0='65STS' where id=5; -update noar tt set v0='OI12XC' where id=5; -update noar ti set v0='OI12XC' where id=5; -update noar tt set b1='BJ0GGPQ1YR4RLM2WYH3MM' where id=5; -update noar ti set b1='BJ0GGPQ1YR4RLM2WYH3MM' where id=5; -update noar tt set v0='J15HK0J' where id=5; -update noar ti set v0='J15HK0J' where id=5; -update noar tt set b2='X444IUUYL20KVSFNF59KSJ7' where id=5; -update noar ti set b2='X444IUUYL20KVSFNF59KSJ7' where id=5; -update noar tt set v0='0FU57N2HAZ9PBBH95Y' where id=6; -update noar ti set v0='0FU57N2HAZ9PBBH95Y' where id=6; -update noar tt set b0='BSURJ' where id=6; -update noar ti set b0='BSURJ' where id=6; -update noar tt set v0='UXCOXLDA228F57LOXRJROIMPD0T' where id=6; -update noar ti set v0='UXCOXLDA228F57LOXRJROIMPD0T' where id=6; -update noar tt set b1='YAO7U2CE509TYQ6' where id=6; -update noar ti set b1='YAO7U2CE509TYQ6' where id=6; -update noar tt set v0='E20M43XH587DZP50RJ3RW9X8ZR' where id=6; -update noar ti set v0='E20M43XH587DZP50RJ3RW9X8ZR' where id=6; -update noar tt set b2='FVTWUXIDKTR' where id=6; -update noar ti set b2='FVTWUXIDKTR' where id=6; -update noar tt set v0='E8IGQ5MJNTOAL3K9W' where id=7; -update noar ti set v0='E8IGQ5MJNTOAL3K9W' where id=7; -update noar tt set b0='79OY0PO2IDUFV1A1ONIYZ' where id=7; -update noar ti set b0='79OY0PO2IDUFV1A1ONIYZ' where id=7; -update noar tt set v0='L56LU4N9HT6Y8ZSADTELH' where id=7; -update noar ti set v0='L56LU4N9HT6Y8ZSADTELH' where id=7; -update noar tt set b1='5GR3SWUP7FAGZ19' where id=7; -update noar ti set b1='5GR3SWUP7FAGZ19' where id=7; -update noar tt set v0='ZD6O7257J4YV9I2WXZJBI9UN5RR4MLDA' where id=7; -update noar ti set v0='ZD6O7257J4YV9I2WXZJBI9UN5RR4MLDA' where id=7; -update noar tt set b2='TL4D0' where id=7; -update noar ti set b2='TL4D0' where id=7; -update noar tt set v0='LM1XXEO9G4K3X' where id=8; -update noar ti set v0='LM1XXEO9G4K3X' where id=8; -update noar tt set b0='SOQCLCWYKOR816LKAXUF' where id=8; -update noar ti set b0='SOQCLCWYKOR816LKAXUF' where id=8; -update noar tt set v0='UQF34P681HP8U' where id=8; -update noar ti set v0='UQF34P681HP8U' where id=8; -update noar tt set b1='R85VS7GPW43Q5UA' where id=8; -update noar ti set b1='R85VS7GPW43Q5UA' where id=8; -update noar tt set v0='Y3KUWQSIKOB03N2ZP' where id=8; -update noar ti set v0='Y3KUWQSIKOB03N2ZP' where id=8; -update noar tt set b2='5EUYI' where id=8; -update noar ti set b2='5EUYI' where id=8; -update noar tt set v0='JSMVXK14H76UFBI6EYB' where id=9; -update noar ti set v0='JSMVXK14H76UFBI6EYB' where id=9; -update noar tt set b0='K4WMX2VEUG6ABQRHYPOB8JAB14CVTGTI' where id=9; -update noar ti set b0='K4WMX2VEUG6ABQRHYPOB8JAB14CVTGTI' where id=9; -update noar tt set v0='M12IP' where id=9; -update noar ti set v0='M12IP' where id=9; -update noar tt set b1='69KI7EBRU07OBB4' where id=9; -update noar ti set b1='69KI7EBRU07OBB4' where id=9; -update noar tt set v0='MSLVNY1P' where id=9; -update noar ti set v0='MSLVNY1P' where id=9; -update noar tt set b2='DF0G6147Q' where id=9; -update noar ti set b2='DF0G6147Q' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - v0 varchar(32) null, - b0 mediumblob null, - b1 longblob null, - b2 tinyblob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='JP5IX5RT' where id=1; -update noar ti set v0='JP5IX5RT' where id=1; -update noar tt set b0='GL2KM353S3JM' where id=1; -update noar ti set b0='GL2KM353S3JM' where id=1; -update noar tt set v0='LP6V6829A7DQBCN54FVDOTUU4FOT' where id=1; -update noar ti set v0='LP6V6829A7DQBCN54FVDOTUU4FOT' where id=1; -update noar tt set b1='2C9CTSB848Y28Q' where id=1; -update noar ti set b1='2C9CTSB848Y28Q' where id=1; -update noar tt set v0='MBWR' where id=1; -update noar ti set v0='MBWR' where id=1; -update noar tt set b2='2H55I6A96NKWRLOEWPJDD3D1DWQZ245A' where id=1; -update noar ti set b2='2H55I6A96NKWRLOEWPJDD3D1DWQZ245A' where id=1; -update noar tt set v0='LDLHJHS5CHSHJRK1RX6X6FO18RNH9' where id=2; -update noar ti set v0='LDLHJHS5CHSHJRK1RX6X6FO18RNH9' where id=2; -update noar tt set b0='FHQJ9GG3XU3' where id=2; -update noar ti set b0='FHQJ9GG3XU3' where id=2; -update noar tt set v0='VJH8RULNDDF8410M63CM' where id=2; -update noar ti set v0='VJH8RULNDDF8410M63CM' where id=2; -update noar tt set b1='J000R67' where id=2; -update noar ti set b1='J000R67' where id=2; -update noar tt set v0='1LDUF7QE0G3NWKPXEE7M1VETTFD2HQG3' where id=2; -update noar ti set v0='1LDUF7QE0G3NWKPXEE7M1VETTFD2HQG3' where id=2; -update noar tt set b2='QCQBC5V2' where id=2; -update noar ti set b2='QCQBC5V2' where id=2; -update noar tt set v0='Z4NKOQ93XNOO' where id=3; -update noar ti set v0='Z4NKOQ93XNOO' where id=3; -update noar tt set b0='XRO0KWQG4MKMIH7K18RJSPO5' where id=3; -update noar ti set b0='XRO0KWQG4MKMIH7K18RJSPO5' where id=3; -update noar tt set v0='88ASAHP5T69QZDZ7NUMI2S1BAC5' where id=3; -update noar ti set v0='88ASAHP5T69QZDZ7NUMI2S1BAC5' where id=3; -update noar tt set b1='EG0ANJ' where id=3; -update noar ti set b1='EG0ANJ' where id=3; -update noar tt set v0='1Q3DW' where id=3; -update noar ti set v0='1Q3DW' where id=3; -update noar tt set b2='BOEAQ55' where id=3; -update noar ti set b2='BOEAQ55' where id=3; -update noar tt set v0='6Z9D80JJP6PQ3YID3SMT6FN' where id=4; -update noar ti set v0='6Z9D80JJP6PQ3YID3SMT6FN' where id=4; -update noar tt set b0='T4KF02MKP9B9HG78WWSY' where id=4; -update noar ti set b0='T4KF02MKP9B9HG78WWSY' where id=4; -update noar tt set v0='QLETB3KLFX3YXUQ435YZEV08P' where id=4; -update noar ti set v0='QLETB3KLFX3YXUQ435YZEV08P' where id=4; -update noar tt set b1='FQVJ' where id=4; -update noar ti set b1='FQVJ' where id=4; -update noar tt set v0='V50EOPCIDXB173KR1Y4B04' where id=4; -update noar ti set v0='V50EOPCIDXB173KR1Y4B04' where id=4; -update noar tt set b2='UWK6GIHO' where id=4; -update noar ti set b2='UWK6GIHO' where id=4; -update noar tt set v0='8F2YGNC2VT09C205IQHZ' where id=5; -update noar ti set v0='8F2YGNC2VT09C205IQHZ' where id=5; -update noar tt set b0='14UU385CBB5J5WNHCKFW9T57' where id=5; -update noar ti set b0='14UU385CBB5J5WNHCKFW9T57' where id=5; -update noar tt set v0='5G2G4JFJ5' where id=5; -update noar ti set v0='5G2G4JFJ5' where id=5; -update noar tt set b1='WKKGXC1BSCKEFLFM798' where id=5; -update noar ti set b1='WKKGXC1BSCKEFLFM798' where id=5; -update noar tt set v0='A6U4YOJGG502FDQWKDW79UR6ACUO9' where id=5; -update noar ti set v0='A6U4YOJGG502FDQWKDW79UR6ACUO9' where id=5; -update noar tt set b2='0ME' where id=5; -update noar ti set b2='0ME' where id=5; -update noar tt set v0='G8VSPSLFMMP' where id=6; -update noar ti set v0='G8VSPSLFMMP' where id=6; -update noar tt set b0='K4VSH7AYZW2LZD5IOUWLA' where id=6; -update noar ti set b0='K4VSH7AYZW2LZD5IOUWLA' where id=6; -update noar tt set v0='I' where id=6; -update noar ti set v0='I' where id=6; -update noar tt set b1='4ET' where id=6; -update noar ti set b1='4ET' where id=6; -update noar tt set v0='D9X3P0F' where id=6; -update noar ti set v0='D9X3P0F' where id=6; -update noar tt set b2='2DONXTISK6Q9JMZQJEK' where id=6; -update noar ti set b2='2DONXTISK6Q9JMZQJEK' where id=6; -update noar tt set v0='WMOOA1T17C' where id=7; -update noar ti set v0='WMOOA1T17C' where id=7; -update noar tt set b0='RJ7VQM2XHRH5GGSZ14X' where id=7; -update noar ti set b0='RJ7VQM2XHRH5GGSZ14X' where id=7; -update noar tt set v0='LUP2EGMAQN7N6L10DWPW9U1F1C30LHTX' where id=7; -update noar ti set v0='LUP2EGMAQN7N6L10DWPW9U1F1C30LHTX' where id=7; -update noar tt set b1='BQ761IADLQ' where id=7; -update noar ti set b1='BQ761IADLQ' where id=7; -update noar tt set v0='77V5O02406SVD6WZNVD3BAU7Q5TKJWI' where id=7; -update noar ti set v0='77V5O02406SVD6WZNVD3BAU7Q5TKJWI' where id=7; -update noar tt set b2='FOZ98Q8MV24SMIBFJXKHPT6OBDG6M' where id=7; -update noar ti set b2='FOZ98Q8MV24SMIBFJXKHPT6OBDG6M' where id=7; -update noar tt set v0='51BD5QBO1UMR66KETIJUNZJ18B6' where id=8; -update noar ti set v0='51BD5QBO1UMR66KETIJUNZJ18B6' where id=8; -update noar tt set b0='98Q7U1ONG45AX64TDW' where id=8; -update noar ti set b0='98Q7U1ONG45AX64TDW' where id=8; -update noar tt set v0='S6MZ2BEI1DJ07KX0I99OXSVKP' where id=8; -update noar ti set v0='S6MZ2BEI1DJ07KX0I99OXSVKP' where id=8; -update noar tt set b1='VD7Q66H5J' where id=8; -update noar ti set b1='VD7Q66H5J' where id=8; -update noar tt set v0='IHA0PY656CXUZIKY89P2L' where id=8; -update noar ti set v0='IHA0PY656CXUZIKY89P2L' where id=8; -update noar tt set b2='J28Q2XKHVH8FV' where id=8; -update noar ti set b2='J28Q2XKHVH8FV' where id=8; -update noar tt set v0='LEYNEDV76' where id=9; -update noar ti set v0='LEYNEDV76' where id=9; -update noar tt set b0='XU7Z69QFAVTNWZZLFGZMQSANXL8YCO4K' where id=9; -update noar ti set b0='XU7Z69QFAVTNWZZLFGZMQSANXL8YCO4K' where id=9; -update noar tt set v0='A5B2X92O7HZZJDF6R1CM' where id=9; -update noar ti set v0='A5B2X92O7HZZJDF6R1CM' where id=9; -update noar tt set b1='0PLM3L77B0U' where id=9; -update noar ti set b1='0PLM3L77B0U' where id=9; -update noar tt set v0='0GH8Q1OWIAEXFMB' where id=9; -update noar ti set v0='0GH8Q1OWIAEXFMB' where id=9; -update noar tt set b2='HWGRL1' where id=9; -update noar ti set b2='HWGRL1' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - v0 varchar(256) null, - b0 mediumblob null, - b1 longblob null, - b2 tinyblob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='0TURS17FE5HOHL0910GJNK0BXRF43' where id=1; -update noar ti set v0='0TURS17FE5HOHL0910GJNK0BXRF43' where id=1; -update noar tt set b0='KQ3FO2WGG' where id=1; -update noar ti set b0='KQ3FO2WGG' where id=1; -update noar tt set v0='XAD0' where id=1; -update noar ti set v0='XAD0' where id=1; -update noar tt set b1='RKMCRDYXH4I' where id=1; -update noar ti set b1='RKMCRDYXH4I' where id=1; -update noar tt set v0='6FVVD15FDZOGYR' where id=1; -update noar ti set v0='6FVVD15FDZOGYR' where id=1; -update noar tt set b2='D6O5GODMWS2YH5' where id=1; -update noar ti set b2='D6O5GODMWS2YH5' where id=1; -update noar tt set v0='WEAI5QA340HL4ACQS9NU2OS4KZH3B' where id=2; -update noar ti set v0='WEAI5QA340HL4ACQS9NU2OS4KZH3B' where id=2; -update noar tt set b0='HNKI' where id=2; -update noar ti set b0='HNKI' where id=2; -update noar tt set v0='JYFVMPCCHQ2VQ4US25KHCFE67RVS' where id=2; -update noar ti set v0='JYFVMPCCHQ2VQ4US25KHCFE67RVS' where id=2; -update noar tt set b1='G3DH0L8WM5N7O6JS8DK6WD2' where id=2; -update noar ti set b1='G3DH0L8WM5N7O6JS8DK6WD2' where id=2; -update noar tt set v0='0PZ2OD2TL' where id=2; -update noar ti set v0='0PZ2OD2TL' where id=2; -update noar tt set b2='ZID7IEW694L2MLNJW7FIK' where id=2; -update noar ti set b2='ZID7IEW694L2MLNJW7FIK' where id=2; -update noar tt set v0='HEKPIJAUY05TLI8' where id=3; -update noar ti set v0='HEKPIJAUY05TLI8' where id=3; -update noar tt set b0='U2O8HDHI6XX2X' where id=3; -update noar ti set b0='U2O8HDHI6XX2X' where id=3; -update noar tt set v0='3S81VCBDLYO2LRBIQIV' where id=3; -update noar ti set v0='3S81VCBDLYO2LRBIQIV' where id=3; -update noar tt set b1='QF8PB' where id=3; -update noar ti set b1='QF8PB' where id=3; -update noar tt set v0='QYOPPHVBO2N4YMLI7GL3Y0S' where id=3; -update noar ti set v0='QYOPPHVBO2N4YMLI7GL3Y0S' where id=3; -update noar tt set b2='0WMAJ2ND2V6EPRUPHUMLYE9V84A1' where id=3; -update noar ti set b2='0WMAJ2ND2V6EPRUPHUMLYE9V84A1' where id=3; -update noar tt set v0='8FB98OQOE03L79WMB8NTOOFYXVVKXM' where id=4; -update noar ti set v0='8FB98OQOE03L79WMB8NTOOFYXVVKXM' where id=4; -update noar tt set b0='71BIBM6' where id=4; -update noar ti set b0='71BIBM6' where id=4; -update noar tt set v0='7VUXS6DXVCQZVN' where id=4; -update noar ti set v0='7VUXS6DXVCQZVN' where id=4; -update noar tt set b1='3S' where id=4; -update noar ti set b1='3S' where id=4; -update noar tt set v0='LEX9UT9ADQ30' where id=4; -update noar ti set v0='LEX9UT9ADQ30' where id=4; -update noar tt set b2='GPTAG3WZKCN2TE68G4CGRQK1' where id=4; -update noar ti set b2='GPTAG3WZKCN2TE68G4CGRQK1' where id=4; -update noar tt set v0='7AO2KDM9JGJXNN6QKXG6M0927CKZ' where id=5; -update noar ti set v0='7AO2KDM9JGJXNN6QKXG6M0927CKZ' where id=5; -update noar tt set b0='NKCL6M1M1JA1MSU9W' where id=5; -update noar ti set b0='NKCL6M1M1JA1MSU9W' where id=5; -update noar tt set v0='2MZ4Q2D2F62T8963DY' where id=5; -update noar ti set v0='2MZ4Q2D2F62T8963DY' where id=5; -update noar tt set b1='ERPYPX8Q1I0ZEPUV6BPOPRD' where id=5; -update noar ti set b1='ERPYPX8Q1I0ZEPUV6BPOPRD' where id=5; -update noar tt set v0='CL' where id=5; -update noar ti set v0='CL' where id=5; -update noar tt set b2='B3XQZTMGA4OFNQKQDX' where id=5; -update noar ti set b2='B3XQZTMGA4OFNQKQDX' where id=5; -update noar tt set v0='K6A' where id=6; -update noar ti set v0='K6A' where id=6; -update noar tt set b0='F8UYPZBG6SQNU7H' where id=6; -update noar ti set b0='F8UYPZBG6SQNU7H' where id=6; -update noar tt set v0='OFE5UOY7FNGWCFU' where id=6; -update noar ti set v0='OFE5UOY7FNGWCFU' where id=6; -update noar tt set b1='EEXRH7UA6HHUGL362M18955SAQG' where id=6; -update noar ti set b1='EEXRH7UA6HHUGL362M18955SAQG' where id=6; -update noar tt set v0='20KKMOSA95B0PWJ2LZJ3M1' where id=6; -update noar ti set v0='20KKMOSA95B0PWJ2LZJ3M1' where id=6; -update noar tt set b2='2' where id=6; -update noar ti set b2='2' where id=6; -update noar tt set v0='4HCH4C' where id=7; -update noar ti set v0='4HCH4C' where id=7; -update noar tt set b0='E9O2UHBK9T26' where id=7; -update noar ti set b0='E9O2UHBK9T26' where id=7; -update noar tt set v0='84UEIK0BXP88TXOWK7A6PXR06KK045' where id=7; -update noar ti set v0='84UEIK0BXP88TXOWK7A6PXR06KK045' where id=7; -update noar tt set b1='TS9XWJ' where id=7; -update noar ti set b1='TS9XWJ' where id=7; -update noar tt set v0='BQAO' where id=7; -update noar ti set v0='BQAO' where id=7; -update noar tt set b2='905814Z5HRXZTMH7' where id=7; -update noar ti set b2='905814Z5HRXZTMH7' where id=7; -update noar tt set v0='AIU5F' where id=8; -update noar ti set v0='AIU5F' where id=8; -update noar tt set b0='VDIV03TLS6XT4YHCNH' where id=8; -update noar ti set b0='VDIV03TLS6XT4YHCNH' where id=8; -update noar tt set v0='M7NBRZDJOYC6' where id=8; -update noar ti set v0='M7NBRZDJOYC6' where id=8; -update noar tt set b1='05WN5YTXG0MZCT1F0H1S' where id=8; -update noar ti set b1='05WN5YTXG0MZCT1F0H1S' where id=8; -update noar tt set v0='0W5R' where id=8; -update noar ti set v0='0W5R' where id=8; -update noar tt set b2='ZBQOHJDSBPMU8C' where id=8; -update noar ti set b2='ZBQOHJDSBPMU8C' where id=8; -update noar tt set v0='Q5XTRDH1VY8NWWWQQ0EN' where id=9; -update noar ti set v0='Q5XTRDH1VY8NWWWQQ0EN' where id=9; -update noar tt set b0='JTLU5TWH6EZSMDCAGT714S2VEYOG' where id=9; -update noar ti set b0='JTLU5TWH6EZSMDCAGT714S2VEYOG' where id=9; -update noar tt set v0='4DPR38ZC3RZL0PVYS8VI0' where id=9; -update noar ti set v0='4DPR38ZC3RZL0PVYS8VI0' where id=9; -update noar tt set b1='215W02YRZ2ROUSYHJIJA8L7P69X3QT' where id=9; -update noar ti set b1='215W02YRZ2ROUSYHJIJA8L7P69X3QT' where id=9; -update noar tt set v0='BRPX6FDQOG2ZOP' where id=9; -update noar ti set v0='BRPX6FDQOG2ZOP' where id=9; -update noar tt set b2='22QVEES0BNXQM2OSMR5W' where id=9; -update noar ti set b2='22QVEES0BNXQM2OSMR5W' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - v0 varchar(32) not null, - b0 mediumblob not null, - b1 longblob not null, - b2 tinyblob not null -) engine=tokudb; -insert into tt values (1,'','','',''); -insert into tt values (2,'','','',''); -insert into tt values (3,'','','',''); -insert into tt values (4,'','','',''); -insert into tt values (5,'','','',''); -insert into tt values (6,'','','',''); -insert into tt values (7,'','','',''); -insert into tt values (8,'','','',''); -insert into tt values (9,'','','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='ZYERXU6INJW20WFA62VN' where id=1; -update noar ti set v0='ZYERXU6INJW20WFA62VN' where id=1; -update noar tt set b0='RV7KGDD9S2M2IGK8F' where id=1; -update noar ti set b0='RV7KGDD9S2M2IGK8F' where id=1; -update noar tt set v0='CO4G2H8LMZQR7OKTU' where id=1; -update noar ti set v0='CO4G2H8LMZQR7OKTU' where id=1; -update noar tt set b1='MA5V8S' where id=1; -update noar ti set b1='MA5V8S' where id=1; -update noar tt set v0='BPSN98AFN8KNO102Q0JHZVKVY' where id=1; -update noar ti set v0='BPSN98AFN8KNO102Q0JHZVKVY' where id=1; -update noar tt set b2='V1IR2WXBATIESLZ4YXEB4' where id=1; -update noar ti set b2='V1IR2WXBATIESLZ4YXEB4' where id=1; -update noar tt set v0='67NYKR0HOJWDVK36XJZYYFWKLD' where id=2; -update noar ti set v0='67NYKR0HOJWDVK36XJZYYFWKLD' where id=2; -update noar tt set b0='8D3E10QXTG7ZOVEWKOUQ' where id=2; -update noar ti set b0='8D3E10QXTG7ZOVEWKOUQ' where id=2; -update noar tt set v0='GHRB86F0LVXW36P5K0UYKUW6WCC3EZ' where id=2; -update noar ti set v0='GHRB86F0LVXW36P5K0UYKUW6WCC3EZ' where id=2; -update noar tt set b1='BZ7EDAML309TQHYKJ9UN9RCB3KW' where id=2; -update noar ti set b1='BZ7EDAML309TQHYKJ9UN9RCB3KW' where id=2; -update noar tt set v0='SUV258PB59VYM1TI0X7LTLT' where id=2; -update noar ti set v0='SUV258PB59VYM1TI0X7LTLT' where id=2; -update noar tt set b2='FPIWS8J27ZALNI2WWTMJCZKG0ADYVHN' where id=2; -update noar ti set b2='FPIWS8J27ZALNI2WWTMJCZKG0ADYVHN' where id=2; -update noar tt set v0='RJJFJD' where id=3; -update noar ti set v0='RJJFJD' where id=3; -update noar tt set b0='9ZL18ZR9' where id=3; -update noar ti set b0='9ZL18ZR9' where id=3; -update noar tt set v0='A0NZTU7R9UBQ92YFVC6IT2WN' where id=3; -update noar ti set v0='A0NZTU7R9UBQ92YFVC6IT2WN' where id=3; -update noar tt set b1='G9T3T0LX8GF94O2BY944BL' where id=3; -update noar ti set b1='G9T3T0LX8GF94O2BY944BL' where id=3; -update noar tt set v0='HC5CUZ1GUF87O7QW79H' where id=3; -update noar ti set v0='HC5CUZ1GUF87O7QW79H' where id=3; -update noar tt set b2='SQT0PNNG8CMB4CAE' where id=3; -update noar ti set b2='SQT0PNNG8CMB4CAE' where id=3; -update noar tt set v0='KVZ799K6XJWUE3PJA9PNIBBY3DCPIJ' where id=4; -update noar ti set v0='KVZ799K6XJWUE3PJA9PNIBBY3DCPIJ' where id=4; -update noar tt set b0='5ML8O07L6A07MVAJJX7' where id=4; -update noar ti set b0='5ML8O07L6A07MVAJJX7' where id=4; -update noar tt set v0='8J5RI9X' where id=4; -update noar ti set v0='8J5RI9X' where id=4; -update noar tt set b1='X7P0JXIJUO2L5N' where id=4; -update noar ti set b1='X7P0JXIJUO2L5N' where id=4; -update noar tt set v0='TFMGYUI212MOEKKNY2S' where id=4; -update noar ti set v0='TFMGYUI212MOEKKNY2S' where id=4; -update noar tt set b2='BB5QN' where id=4; -update noar ti set b2='BB5QN' where id=4; -update noar tt set v0='JZ4COG8NAV1NGC4IY7BH7P92I3VOV75' where id=5; -update noar ti set v0='JZ4COG8NAV1NGC4IY7BH7P92I3VOV75' where id=5; -update noar tt set b0='34O3E87MHHEOOSTUOY1U49' where id=5; -update noar ti set b0='34O3E87MHHEOOSTUOY1U49' where id=5; -update noar tt set v0='9TVSNPTQ3ZA' where id=5; -update noar ti set v0='9TVSNPTQ3ZA' where id=5; -update noar tt set b1='502C8M555G9OSA5WEF3SG1YX' where id=5; -update noar ti set b1='502C8M555G9OSA5WEF3SG1YX' where id=5; -update noar tt set v0='V' where id=5; -update noar ti set v0='V' where id=5; -update noar tt set b2='G9IYEZ2SHXZ3' where id=5; -update noar ti set b2='G9IYEZ2SHXZ3' where id=5; -update noar tt set v0='S4YT2BOP' where id=6; -update noar ti set v0='S4YT2BOP' where id=6; -update noar tt set b0='MJHBD8OR3J' where id=6; -update noar ti set b0='MJHBD8OR3J' where id=6; -update noar tt set v0='TI79XH' where id=6; -update noar ti set v0='TI79XH' where id=6; -update noar tt set b1='72YWT90FD73TYJJ' where id=6; -update noar ti set b1='72YWT90FD73TYJJ' where id=6; -update noar tt set v0='EZ6FELBMYKF9UMI' where id=6; -update noar ti set v0='EZ6FELBMYKF9UMI' where id=6; -update noar tt set b2='7BB1KDGZF4U2NH9FKQI' where id=6; -update noar ti set b2='7BB1KDGZF4U2NH9FKQI' where id=6; -update noar tt set v0='1D0CKBOHZXTWL1L42R43BWOKFD6' where id=7; -update noar ti set v0='1D0CKBOHZXTWL1L42R43BWOKFD6' where id=7; -update noar tt set b0='NDLQ0AORDTB4COKB66QM5F' where id=7; -update noar ti set b0='NDLQ0AORDTB4COKB66QM5F' where id=7; -update noar tt set v0='DJT' where id=7; -update noar ti set v0='DJT' where id=7; -update noar tt set b1='469UGLLMYEXMF9RJBE43N1KVQL1' where id=7; -update noar ti set b1='469UGLLMYEXMF9RJBE43N1KVQL1' where id=7; -update noar tt set v0='MM5KATCWGLHUGOFTSFGB3R5DM087NXL' where id=7; -update noar ti set v0='MM5KATCWGLHUGOFTSFGB3R5DM087NXL' where id=7; -update noar tt set b2='C1AYYX4Y5O7VI' where id=7; -update noar ti set b2='C1AYYX4Y5O7VI' where id=7; -update noar tt set v0='PDB4OMSUJZ6HCUEYY89' where id=8; -update noar ti set v0='PDB4OMSUJZ6HCUEYY89' where id=8; -update noar tt set b0='RYL8V67U7YXTX41' where id=8; -update noar ti set b0='RYL8V67U7YXTX41' where id=8; -update noar tt set v0='RB13F' where id=8; -update noar ti set v0='RB13F' where id=8; -update noar tt set b1='P' where id=8; -update noar ti set b1='P' where id=8; -update noar tt set v0='TD3KOODUFA' where id=8; -update noar ti set v0='TD3KOODUFA' where id=8; -update noar tt set b2='95KAYL21DU1PPLHKA5GNAS' where id=8; -update noar ti set b2='95KAYL21DU1PPLHKA5GNAS' where id=8; -update noar tt set v0='BXQIYUMD2VI0IAPCFK7M' where id=9; -update noar ti set v0='BXQIYUMD2VI0IAPCFK7M' where id=9; -update noar tt set b0='U9LDRGGW50J2RJ' where id=9; -update noar ti set b0='U9LDRGGW50J2RJ' where id=9; -update noar tt set v0='DP8Q0' where id=9; -update noar ti set v0='DP8Q0' where id=9; -update noar tt set b1='WZYTKVY6HGEG' where id=9; -update noar ti set b1='WZYTKVY6HGEG' where id=9; -update noar tt set v0='YBOA86D' where id=9; -update noar ti set v0='YBOA86D' where id=9; -update noar tt set b2='8YJZ88W1KCCWZ' where id=9; -update noar ti set b2='8YJZ88W1KCCWZ' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - v0 varchar(256) not null, - b0 mediumblob not null, - b1 longblob not null, - b2 tinyblob not null -) engine=tokudb; -insert into tt values (1,'','','',''); -insert into tt values (2,'','','',''); -insert into tt values (3,'','','',''); -insert into tt values (4,'','','',''); -insert into tt values (5,'','','',''); -insert into tt values (6,'','','',''); -insert into tt values (7,'','','',''); -insert into tt values (8,'','','',''); -insert into tt values (9,'','','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='XPBFVE2J5K5VIWRK8Y4' where id=1; -update noar ti set v0='XPBFVE2J5K5VIWRK8Y4' where id=1; -update noar tt set b0='N884NQ45BFOGGPU76014' where id=1; -update noar ti set b0='N884NQ45BFOGGPU76014' where id=1; -update noar tt set v0='YFX62UX6WJJK3XS83C' where id=1; -update noar ti set v0='YFX62UX6WJJK3XS83C' where id=1; -update noar tt set b1='RLF1X650Q' where id=1; -update noar ti set b1='RLF1X650Q' where id=1; -update noar tt set v0='7G1JNG2H1400MS0KVFB1OPBE2WTT7P3H' where id=1; -update noar ti set v0='7G1JNG2H1400MS0KVFB1OPBE2WTT7P3H' where id=1; -update noar tt set b2='BKGVAG2CCQTF4TN0S1E94UTHTWV' where id=1; -update noar ti set b2='BKGVAG2CCQTF4TN0S1E94UTHTWV' where id=1; -update noar tt set v0='IP5KO3PJDNIZ4MGK' where id=2; -update noar ti set v0='IP5KO3PJDNIZ4MGK' where id=2; -update noar tt set b0='N' where id=2; -update noar ti set b0='N' where id=2; -update noar tt set v0='SB19QLB0CERD' where id=2; -update noar ti set v0='SB19QLB0CERD' where id=2; -update noar tt set b1='PTEY2LECD33SMPZYE' where id=2; -update noar ti set b1='PTEY2LECD33SMPZYE' where id=2; -update noar tt set v0='KMBNXEETQDH3EYN73OYNCVQWEQRU' where id=2; -update noar ti set v0='KMBNXEETQDH3EYN73OYNCVQWEQRU' where id=2; -update noar tt set b2='ECSVUJ0RNYFGX5FIYC844K62E96B' where id=2; -update noar ti set b2='ECSVUJ0RNYFGX5FIYC844K62E96B' where id=2; -update noar tt set v0='TXARXVDIOH3' where id=3; -update noar ti set v0='TXARXVDIOH3' where id=3; -update noar tt set b0='ZYH4XMDFTB8W3XW45' where id=3; -update noar ti set b0='ZYH4XMDFTB8W3XW45' where id=3; -update noar tt set v0='ZRJV5P42YJMS4UNYVXGTQAO194' where id=3; -update noar ti set v0='ZRJV5P42YJMS4UNYVXGTQAO194' where id=3; -update noar tt set b1='UBWNX4AQT8SMTCKR89LNYIL3NSLPUMS' where id=3; -update noar ti set b1='UBWNX4AQT8SMTCKR89LNYIL3NSLPUMS' where id=3; -update noar tt set v0='QELDRSGUXXDM0VDM77J0' where id=3; -update noar ti set v0='QELDRSGUXXDM0VDM77J0' where id=3; -update noar tt set b2='NZ7OB0C7A7A4F1327U407OGI4L' where id=3; -update noar ti set b2='NZ7OB0C7A7A4F1327U407OGI4L' where id=3; -update noar tt set v0='RU10G' where id=4; -update noar ti set v0='RU10G' where id=4; -update noar tt set b0='CYB5OC8O389' where id=4; -update noar ti set b0='CYB5OC8O389' where id=4; -update noar tt set v0='8AUT' where id=4; -update noar ti set v0='8AUT' where id=4; -update noar tt set b1='7F4' where id=4; -update noar ti set b1='7F4' where id=4; -update noar tt set v0='BK4GAEHWCSBHE0HNZVVUD6B1TPAW' where id=4; -update noar ti set v0='BK4GAEHWCSBHE0HNZVVUD6B1TPAW' where id=4; -update noar tt set b2='4EP9FBNG460A59WCZ2TN76U9JLHGMP' where id=4; -update noar ti set b2='4EP9FBNG460A59WCZ2TN76U9JLHGMP' where id=4; -update noar tt set v0='MRNGXR8U7553' where id=5; -update noar ti set v0='MRNGXR8U7553' where id=5; -update noar tt set b0='S3GVN2QW7DOFFODAL' where id=5; -update noar ti set b0='S3GVN2QW7DOFFODAL' where id=5; -update noar tt set v0='H4CIYCSQ4BE4H93' where id=5; -update noar ti set v0='H4CIYCSQ4BE4H93' where id=5; -update noar tt set b1='92H15VK63D54DSQYWT7GFHXD71' where id=5; -update noar ti set b1='92H15VK63D54DSQYWT7GFHXD71' where id=5; -update noar tt set v0='C8Z9S1P7VDFDXJYGHO5HP6P0Z8MNSDY' where id=5; -update noar ti set v0='C8Z9S1P7VDFDXJYGHO5HP6P0Z8MNSDY' where id=5; -update noar tt set b2='SBCXRAK3HR' where id=5; -update noar ti set b2='SBCXRAK3HR' where id=5; -update noar tt set v0='7D4PPC4DBY3PWHOCH' where id=6; -update noar ti set v0='7D4PPC4DBY3PWHOCH' where id=6; -update noar tt set b0='J4EWJZ9UC8' where id=6; -update noar ti set b0='J4EWJZ9UC8' where id=6; -update noar tt set v0='5YSDW8WQLLNMOR59D1A8UE8VMUX' where id=6; -update noar ti set v0='5YSDW8WQLLNMOR59D1A8UE8VMUX' where id=6; -update noar tt set b1='Q3XK2VMOJFTM69FQT9' where id=6; -update noar ti set b1='Q3XK2VMOJFTM69FQT9' where id=6; -update noar tt set v0='5HIR90R2QZZL' where id=6; -update noar ti set v0='5HIR90R2QZZL' where id=6; -update noar tt set b2='2B2QP7KBDQ' where id=6; -update noar ti set b2='2B2QP7KBDQ' where id=6; -update noar tt set v0='LPEHSCY1KU1GZB' where id=7; -update noar ti set v0='LPEHSCY1KU1GZB' where id=7; -update noar tt set b0='WQYIH3OL20FINXC3A3XHME0DSP8H' where id=7; -update noar ti set b0='WQYIH3OL20FINXC3A3XHME0DSP8H' where id=7; -update noar tt set v0='2HDVCF4TMZZYJ93C4TICVWC6' where id=7; -update noar ti set v0='2HDVCF4TMZZYJ93C4TICVWC6' where id=7; -update noar tt set b1='ZEMHJD3Z' where id=7; -update noar ti set b1='ZEMHJD3Z' where id=7; -update noar tt set v0='XOQ82O827EYAS2ZUS4VXHRA17KU' where id=7; -update noar ti set v0='XOQ82O827EYAS2ZUS4VXHRA17KU' where id=7; -update noar tt set b2='JA7X11TDRZFYYENVP9GFY' where id=7; -update noar ti set b2='JA7X11TDRZFYYENVP9GFY' where id=7; -update noar tt set v0='FTE09F6BDURE' where id=8; -update noar ti set v0='FTE09F6BDURE' where id=8; -update noar tt set b0='W0T696OU' where id=8; -update noar ti set b0='W0T696OU' where id=8; -update noar tt set v0='XPZ5S1N2TPL5HR1MJE3031UQXA6' where id=8; -update noar ti set v0='XPZ5S1N2TPL5HR1MJE3031UQXA6' where id=8; -update noar tt set b1='8N1IXUL8XLJ6NY9UNLELM2G4XEF9ID' where id=8; -update noar ti set b1='8N1IXUL8XLJ6NY9UNLELM2G4XEF9ID' where id=8; -update noar tt set v0='LW041SWAM03NW8FWT7RV5GIBO' where id=8; -update noar ti set v0='LW041SWAM03NW8FWT7RV5GIBO' where id=8; -update noar tt set b2='YCVB7SRDQLYNXN002N' where id=8; -update noar ti set b2='YCVB7SRDQLYNXN002N' where id=8; -update noar tt set v0='KQN82IILP3JK' where id=9; -update noar ti set v0='KQN82IILP3JK' where id=9; -update noar tt set b0='F9YM8EY9U8W0XT92U6YJTHJLGYF4NK9F' where id=9; -update noar ti set b0='F9YM8EY9U8W0XT92U6YJTHJLGYF4NK9F' where id=9; -update noar tt set v0='MDD1EV6JTLX43QINPK428Z62PE4N34S' where id=9; -update noar ti set v0='MDD1EV6JTLX43QINPK428Z62PE4N34S' where id=9; -update noar tt set b1='0PUCMC' where id=9; -update noar ti set b1='0PUCMC' where id=9; -update noar tt set v0='QL7Q63SYC5JS2SB0QW' where id=9; -update noar ti set v0='QL7Q63SYC5JS2SB0QW' where id=9; -update noar tt set b2='BWPBJYJ67E0SIG3CKSZKXBL0MOKT' where id=9; -update noar ti set b2='BWPBJYJ67E0SIG3CKSZKXBL0MOKT' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - v0 varchar(32) null, - b0 mediumblob null, - b1 longblob null, - b2 blob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='Z104694OJFA' where id=1; -update noar ti set v0='Z104694OJFA' where id=1; -update noar tt set b0='RPG0I43KU4AVCULXN3MD2XXXWC4GUTU' where id=1; -update noar ti set b0='RPG0I43KU4AVCULXN3MD2XXXWC4GUTU' where id=1; -update noar tt set v0='GCG9RIPJUOG5YY' where id=1; -update noar ti set v0='GCG9RIPJUOG5YY' where id=1; -update noar tt set b1='JDPM61NY3TKJ' where id=1; -update noar ti set b1='JDPM61NY3TKJ' where id=1; -update noar tt set v0='D8JESE7' where id=1; -update noar ti set v0='D8JESE7' where id=1; -update noar tt set b2='HEEE1Q3OLR22EWKDDMTE9SZ9NS' where id=1; -update noar ti set b2='HEEE1Q3OLR22EWKDDMTE9SZ9NS' where id=1; -update noar tt set v0='N9OJY26GINEFLG4S' where id=2; -update noar ti set v0='N9OJY26GINEFLG4S' where id=2; -update noar tt set b0='K0UQMIL7EV1RXYF' where id=2; -update noar ti set b0='K0UQMIL7EV1RXYF' where id=2; -update noar tt set v0='UJLKP3A04AAIKNYI66J60W' where id=2; -update noar ti set v0='UJLKP3A04AAIKNYI66J60W' where id=2; -update noar tt set b1='MHT1XDZ5S8O4DMFURETLGK4HQ' where id=2; -update noar ti set b1='MHT1XDZ5S8O4DMFURETLGK4HQ' where id=2; -update noar tt set v0='6UZRF4L79IEA' where id=2; -update noar ti set v0='6UZRF4L79IEA' where id=2; -update noar tt set b2='A988H0T01T28V1VQA' where id=2; -update noar ti set b2='A988H0T01T28V1VQA' where id=2; -update noar tt set v0='9JV' where id=3; -update noar ti set v0='9JV' where id=3; -update noar tt set b0='YG8DC08IY536' where id=3; -update noar ti set b0='YG8DC08IY536' where id=3; -update noar tt set v0='3FUEF' where id=3; -update noar ti set v0='3FUEF' where id=3; -update noar tt set b1='HRSAQND8C85PX' where id=3; -update noar ti set b1='HRSAQND8C85PX' where id=3; -update noar tt set v0='P3LH16WDFVHFBPBCQXCU5B0OCSY07' where id=3; -update noar ti set v0='P3LH16WDFVHFBPBCQXCU5B0OCSY07' where id=3; -update noar tt set b2='LH5F0' where id=3; -update noar ti set b2='LH5F0' where id=3; -update noar tt set v0='KN7GC8T9J2RZQ3CH6M1ZZGER83FAY1X' where id=4; -update noar ti set v0='KN7GC8T9J2RZQ3CH6M1ZZGER83FAY1X' where id=4; -update noar tt set b0='H' where id=4; -update noar ti set b0='H' where id=4; -update noar tt set v0='BT79' where id=4; -update noar ti set v0='BT79' where id=4; -update noar tt set b1='EF24AI' where id=4; -update noar ti set b1='EF24AI' where id=4; -update noar tt set v0='MY' where id=4; -update noar ti set v0='MY' where id=4; -update noar tt set b2='ZGLZB5P' where id=4; -update noar ti set b2='ZGLZB5P' where id=4; -update noar tt set v0='8' where id=5; -update noar ti set v0='8' where id=5; -update noar tt set b0='HZTBR6' where id=5; -update noar ti set b0='HZTBR6' where id=5; -update noar tt set v0='0JG3CURUM2I2M3Y9ZJ' where id=5; -update noar ti set v0='0JG3CURUM2I2M3Y9ZJ' where id=5; -update noar tt set b1='A98P8HM8F4P7PSGHE7' where id=5; -update noar ti set b1='A98P8HM8F4P7PSGHE7' where id=5; -update noar tt set v0='65ZRDAZRIWO9PAR0T6MA0EA8' where id=5; -update noar ti set v0='65ZRDAZRIWO9PAR0T6MA0EA8' where id=5; -update noar tt set b2='D2K9423' where id=5; -update noar ti set b2='D2K9423' where id=5; -update noar tt set v0='W8T9QUSNMD5A7X34PJOC3NYA0' where id=6; -update noar ti set v0='W8T9QUSNMD5A7X34PJOC3NYA0' where id=6; -update noar tt set b0='4Z1ES5VG' where id=6; -update noar ti set b0='4Z1ES5VG' where id=6; -update noar tt set v0='88' where id=6; -update noar ti set v0='88' where id=6; -update noar tt set b1='ADJ92F3K8MI401JOYTMGD' where id=6; -update noar ti set b1='ADJ92F3K8MI401JOYTMGD' where id=6; -update noar tt set v0='QBLQLB8K85HTLE6RJ4BNRBF2X' where id=6; -update noar ti set v0='QBLQLB8K85HTLE6RJ4BNRBF2X' where id=6; -update noar tt set b2='0EENMWAJK698IWTLAJV82C6CZR4RW' where id=6; -update noar ti set b2='0EENMWAJK698IWTLAJV82C6CZR4RW' where id=6; -update noar tt set v0='N6QCJL4T16NK1DRIJ7Q3710MXNWJFA6Y' where id=7; -update noar ti set v0='N6QCJL4T16NK1DRIJ7Q3710MXNWJFA6Y' where id=7; -update noar tt set b0='NLRJ8VMTXKLGKGBD' where id=7; -update noar ti set b0='NLRJ8VMTXKLGKGBD' where id=7; -update noar tt set v0='1BT1CUJ49G9SHZUSNDOML732TPZB' where id=7; -update noar ti set v0='1BT1CUJ49G9SHZUSNDOML732TPZB' where id=7; -update noar tt set b1='315ZRCT3X3ZG69N9GTS9X152H113C4VY' where id=7; -update noar ti set b1='315ZRCT3X3ZG69N9GTS9X152H113C4VY' where id=7; -update noar tt set v0='EVTLPJHBKIJUD7HO00TU' where id=7; -update noar ti set v0='EVTLPJHBKIJUD7HO00TU' where id=7; -update noar tt set b2='OR472GINOYWB' where id=7; -update noar ti set b2='OR472GINOYWB' where id=7; -update noar tt set v0='VW7Q2Q' where id=8; -update noar ti set v0='VW7Q2Q' where id=8; -update noar tt set b0='0HPMBR62' where id=8; -update noar ti set b0='0HPMBR62' where id=8; -update noar tt set v0='GIL8' where id=8; -update noar ti set v0='GIL8' where id=8; -update noar tt set b1='TMJXG7HP' where id=8; -update noar ti set b1='TMJXG7HP' where id=8; -update noar tt set v0='N30LDJ2G9ESFQPTCKOIMBEQC' where id=8; -update noar ti set v0='N30LDJ2G9ESFQPTCKOIMBEQC' where id=8; -update noar tt set b2='6HM02YPNV9' where id=8; -update noar ti set b2='6HM02YPNV9' where id=8; -update noar tt set v0='TBHHU5WCVZ17ABTHU0TZ' where id=9; -update noar ti set v0='TBHHU5WCVZ17ABTHU0TZ' where id=9; -update noar tt set b0='OI5E3M8J0LFZB0NJFC9W' where id=9; -update noar ti set b0='OI5E3M8J0LFZB0NJFC9W' where id=9; -update noar tt set v0='C7Q9' where id=9; -update noar ti set v0='C7Q9' where id=9; -update noar tt set b1='PA4S7GR0YLZGFKDA4I8WV4449JH4I' where id=9; -update noar ti set b1='PA4S7GR0YLZGFKDA4I8WV4449JH4I' where id=9; -update noar tt set v0='OKTAUX5EWPAEAWP809JN2P0B' where id=9; -update noar ti set v0='OKTAUX5EWPAEAWP809JN2P0B' where id=9; -update noar tt set b2='K' where id=9; -update noar ti set b2='K' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - v0 varchar(256) null, - b0 mediumblob null, - b1 longblob null, - b2 blob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='42XRBOMG3KC19ICCQZG20F785P' where id=1; -update noar ti set v0='42XRBOMG3KC19ICCQZG20F785P' where id=1; -update noar tt set b0='VT6C40X6R3KXKATEA' where id=1; -update noar ti set b0='VT6C40X6R3KXKATEA' where id=1; -update noar tt set v0='3ZHP3U319UVUQ34' where id=1; -update noar ti set v0='3ZHP3U319UVUQ34' where id=1; -update noar tt set b1='IFFK5DIDR36DQ1HG7U9IWV48WQZ8' where id=1; -update noar ti set b1='IFFK5DIDR36DQ1HG7U9IWV48WQZ8' where id=1; -update noar tt set v0='200Q' where id=1; -update noar ti set v0='200Q' where id=1; -update noar tt set b2='XE8Y528DXOEFK2YCIAPYH' where id=1; -update noar ti set b2='XE8Y528DXOEFK2YCIAPYH' where id=1; -update noar tt set v0='1DNYC' where id=2; -update noar ti set v0='1DNYC' where id=2; -update noar tt set b0='CS38OK2MOMA' where id=2; -update noar ti set b0='CS38OK2MOMA' where id=2; -update noar tt set v0='KBECZLRCWB4KY2PV04JHCETWNLS1Z3' where id=2; -update noar ti set v0='KBECZLRCWB4KY2PV04JHCETWNLS1Z3' where id=2; -update noar tt set b1='O6NU' where id=2; -update noar ti set b1='O6NU' where id=2; -update noar tt set v0='4CWDGN1S9O692FN5G6R92XN8GH2OU' where id=2; -update noar ti set v0='4CWDGN1S9O692FN5G6R92XN8GH2OU' where id=2; -update noar tt set b2='2NYZDCWZWLVFXUI6ZIOG8JI7027' where id=2; -update noar ti set b2='2NYZDCWZWLVFXUI6ZIOG8JI7027' where id=2; -update noar tt set v0='W5XKM60U80BEMX7OTU0RD8ID65FNNYF' where id=3; -update noar ti set v0='W5XKM60U80BEMX7OTU0RD8ID65FNNYF' where id=3; -update noar tt set b0='YLRJPC0Q' where id=3; -update noar ti set b0='YLRJPC0Q' where id=3; -update noar tt set v0='HV3' where id=3; -update noar ti set v0='HV3' where id=3; -update noar tt set b1='TY' where id=3; -update noar ti set b1='TY' where id=3; -update noar tt set v0='3BZ4R' where id=3; -update noar ti set v0='3BZ4R' where id=3; -update noar tt set b2='SWX42SMYGD3XT' where id=3; -update noar ti set b2='SWX42SMYGD3XT' where id=3; -update noar tt set v0='8' where id=4; -update noar ti set v0='8' where id=4; -update noar tt set b0='5OPOJFZ4DR7NU' where id=4; -update noar ti set b0='5OPOJFZ4DR7NU' where id=4; -update noar tt set v0='Q487J5R36GI' where id=4; -update noar ti set v0='Q487J5R36GI' where id=4; -update noar tt set b1='IY9DNBQ77DMW48OMD' where id=4; -update noar ti set b1='IY9DNBQ77DMW48OMD' where id=4; -update noar tt set v0='I2KQF9H6YYNIITVNTX' where id=4; -update noar ti set v0='I2KQF9H6YYNIITVNTX' where id=4; -update noar tt set b2='ZK' where id=4; -update noar ti set b2='ZK' where id=4; -update noar tt set v0='60TPJ6CJSTVX7X0FHEJ864LBGTJKBB25' where id=5; -update noar ti set v0='60TPJ6CJSTVX7X0FHEJ864LBGTJKBB25' where id=5; -update noar tt set b0='WQUI7A9IZZ' where id=5; -update noar ti set b0='WQUI7A9IZZ' where id=5; -update noar tt set v0='W7DSP2MFS1LN2OAKN36B0Q3T407A' where id=5; -update noar ti set v0='W7DSP2MFS1LN2OAKN36B0Q3T407A' where id=5; -update noar tt set b1='Q5' where id=5; -update noar ti set b1='Q5' where id=5; -update noar tt set v0='61DS1' where id=5; -update noar ti set v0='61DS1' where id=5; -update noar tt set b2='GTWQB44XRH7USTUE2Q3EYI8AZXF' where id=5; -update noar ti set b2='GTWQB44XRH7USTUE2Q3EYI8AZXF' where id=5; -update noar tt set v0='7XKGH17THVCPSI' where id=6; -update noar ti set v0='7XKGH17THVCPSI' where id=6; -update noar tt set b0='4B0GHZJOA7ZYRF66ISMBLCPZNA2' where id=6; -update noar ti set b0='4B0GHZJOA7ZYRF66ISMBLCPZNA2' where id=6; -update noar tt set v0='UPPMBQZJ' where id=6; -update noar ti set v0='UPPMBQZJ' where id=6; -update noar tt set b1='1RZNIXTHU2N58' where id=6; -update noar ti set b1='1RZNIXTHU2N58' where id=6; -update noar tt set v0='F6R0TIGX4XNTPME14HRTED1CT' where id=6; -update noar ti set v0='F6R0TIGX4XNTPME14HRTED1CT' where id=6; -update noar tt set b2='2LPYO6TO8QIVHJP1KAP9PWOW1' where id=6; -update noar ti set b2='2LPYO6TO8QIVHJP1KAP9PWOW1' where id=6; -update noar tt set v0='0RE' where id=7; -update noar ti set v0='0RE' where id=7; -update noar tt set b0='Z2WBNJYHIP4YY1HQTCK' where id=7; -update noar ti set b0='Z2WBNJYHIP4YY1HQTCK' where id=7; -update noar tt set v0='0GCZCELXI' where id=7; -update noar ti set v0='0GCZCELXI' where id=7; -update noar tt set b1='6' where id=7; -update noar ti set b1='6' where id=7; -update noar tt set v0='5Z1Q2D1P1CWBOJ66I0FI8MO3463FB' where id=7; -update noar ti set v0='5Z1Q2D1P1CWBOJ66I0FI8MO3463FB' where id=7; -update noar tt set b2='RGQVQ7S594' where id=7; -update noar ti set b2='RGQVQ7S594' where id=7; -update noar tt set v0='H30R' where id=8; -update noar ti set v0='H30R' where id=8; -update noar tt set b0='B9NU' where id=8; -update noar ti set b0='B9NU' where id=8; -update noar tt set v0='R' where id=8; -update noar ti set v0='R' where id=8; -update noar tt set b1='AIWTE5L7VXU9S0AY4GYVXWD7' where id=8; -update noar ti set b1='AIWTE5L7VXU9S0AY4GYVXWD7' where id=8; -update noar tt set v0='LFQMIGNS7ZUPS8E5JXWOLZU314' where id=8; -update noar ti set v0='LFQMIGNS7ZUPS8E5JXWOLZU314' where id=8; -update noar tt set b2='TOHPIW6Y3QSFRQVJQ4M6FPELPJ0U7SD' where id=8; -update noar ti set b2='TOHPIW6Y3QSFRQVJQ4M6FPELPJ0U7SD' where id=8; -update noar tt set v0='2GP4PLTH3UKK9H3AX31OGFD9' where id=9; -update noar ti set v0='2GP4PLTH3UKK9H3AX31OGFD9' where id=9; -update noar tt set b0='ACQSK9NVBGKGCXBLL4UOMROFAA5Y9CZS' where id=9; -update noar ti set b0='ACQSK9NVBGKGCXBLL4UOMROFAA5Y9CZS' where id=9; -update noar tt set v0='YNOEV0RPCOVSIWI08A' where id=9; -update noar ti set v0='YNOEV0RPCOVSIWI08A' where id=9; -update noar tt set b1='7' where id=9; -update noar ti set b1='7' where id=9; -update noar tt set v0='52896H3LM2BORSSL6' where id=9; -update noar ti set v0='52896H3LM2BORSSL6' where id=9; -update noar tt set b2='DXMZGE' where id=9; -update noar ti set b2='DXMZGE' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - v0 varchar(32) not null, - b0 mediumblob not null, - b1 longblob not null, - b2 blob not null -) engine=tokudb; -insert into tt values (1,'','','',''); -insert into tt values (2,'','','',''); -insert into tt values (3,'','','',''); -insert into tt values (4,'','','',''); -insert into tt values (5,'','','',''); -insert into tt values (6,'','','',''); -insert into tt values (7,'','','',''); -insert into tt values (8,'','','',''); -insert into tt values (9,'','','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='80K1T1DG' where id=1; -update noar ti set v0='80K1T1DG' where id=1; -update noar tt set b0='HBX9PLDXOB6KNKZHJX6C' where id=1; -update noar ti set b0='HBX9PLDXOB6KNKZHJX6C' where id=1; -update noar tt set v0='ZR024SSYS9O05Q4' where id=1; -update noar ti set v0='ZR024SSYS9O05Q4' where id=1; -update noar tt set b1='87199C69QG' where id=1; -update noar ti set b1='87199C69QG' where id=1; -update noar tt set v0='8PXK7KI7RJPJK1LQWOAAGD9GBE' where id=1; -update noar ti set v0='8PXK7KI7RJPJK1LQWOAAGD9GBE' where id=1; -update noar tt set b2='QPA5AB5LJJ' where id=1; -update noar ti set b2='QPA5AB5LJJ' where id=1; -update noar tt set v0='7NHOH2ON5WKWUH24NPQ5UFQ' where id=2; -update noar ti set v0='7NHOH2ON5WKWUH24NPQ5UFQ' where id=2; -update noar tt set b0='4M5OS7SHQSAEGN0UK589K' where id=2; -update noar ti set b0='4M5OS7SHQSAEGN0UK589K' where id=2; -update noar tt set v0='02R26YGLZQIJO8EA9ZFW6K9DW5N3CY' where id=2; -update noar ti set v0='02R26YGLZQIJO8EA9ZFW6K9DW5N3CY' where id=2; -update noar tt set b1='T8' where id=2; -update noar ti set b1='T8' where id=2; -update noar tt set v0='XOID16HS0QS90TVDG9NIYLJJ' where id=2; -update noar ti set v0='XOID16HS0QS90TVDG9NIYLJJ' where id=2; -update noar tt set b2='Y382S3VVV2HR3' where id=2; -update noar ti set b2='Y382S3VVV2HR3' where id=2; -update noar tt set v0='93QMMILBC7BP01GPU4' where id=3; -update noar ti set v0='93QMMILBC7BP01GPU4' where id=3; -update noar tt set b0='DORFHEW7V430A05KCH6OH2M09VM4Z2U' where id=3; -update noar ti set b0='DORFHEW7V430A05KCH6OH2M09VM4Z2U' where id=3; -update noar tt set v0='JEG71' where id=3; -update noar ti set v0='JEG71' where id=3; -update noar tt set b1='9ULCEX2XZ5KP73SPQTR32FSZCL4' where id=3; -update noar ti set b1='9ULCEX2XZ5KP73SPQTR32FSZCL4' where id=3; -update noar tt set v0='KC36VT2CIDR8FXV' where id=3; -update noar ti set v0='KC36VT2CIDR8FXV' where id=3; -update noar tt set b2='I9YA0SCIJ34HEOPS5111L0D' where id=3; -update noar ti set b2='I9YA0SCIJ34HEOPS5111L0D' where id=3; -update noar tt set v0='O67YLVNUWAH5NEKTB30D2TPN8X4FOP4D' where id=4; -update noar ti set v0='O67YLVNUWAH5NEKTB30D2TPN8X4FOP4D' where id=4; -update noar tt set b0='NK' where id=4; -update noar ti set b0='NK' where id=4; -update noar tt set v0='VLKYVN' where id=4; -update noar ti set v0='VLKYVN' where id=4; -update noar tt set b1='IJ' where id=4; -update noar ti set b1='IJ' where id=4; -update noar tt set v0='CT99GM7ILWOTCW97Z' where id=4; -update noar ti set v0='CT99GM7ILWOTCW97Z' where id=4; -update noar tt set b2='PUD7Z8YBGTG4WK1U84XYOH1I5' where id=4; -update noar ti set b2='PUD7Z8YBGTG4WK1U84XYOH1I5' where id=4; -update noar tt set v0='Q4FTV7U0QP00679ON8352BU0X0YS' where id=5; -update noar ti set v0='Q4FTV7U0QP00679ON8352BU0X0YS' where id=5; -update noar tt set b0='FW4I2' where id=5; -update noar ti set b0='FW4I2' where id=5; -update noar tt set v0='SR7YWKOJF45I1' where id=5; -update noar ti set v0='SR7YWKOJF45I1' where id=5; -update noar tt set b1='Y8I3I200H034LJTBAAK' where id=5; -update noar ti set b1='Y8I3I200H034LJTBAAK' where id=5; -update noar tt set v0='384TWQL739P440MA4' where id=5; -update noar ti set v0='384TWQL739P440MA4' where id=5; -update noar tt set b2='PGI85TB1DA8FO8' where id=5; -update noar ti set b2='PGI85TB1DA8FO8' where id=5; -update noar tt set v0='IRI7NYFWLCQNBGM4PNW9EDRLU07' where id=6; -update noar ti set v0='IRI7NYFWLCQNBGM4PNW9EDRLU07' where id=6; -update noar tt set b0='1IRJ' where id=6; -update noar ti set b0='1IRJ' where id=6; -update noar tt set v0='QR08NEK1SWDK43GKDEDDAIMV' where id=6; -update noar ti set v0='QR08NEK1SWDK43GKDEDDAIMV' where id=6; -update noar tt set b1='FLUAGBM' where id=6; -update noar ti set b1='FLUAGBM' where id=6; -update noar tt set v0='PSWBQSK86IE4Q7TSCG9DZBED3BP' where id=6; -update noar ti set v0='PSWBQSK86IE4Q7TSCG9DZBED3BP' where id=6; -update noar tt set b2='0REGOXSGZ8UYFXFTBC2ZFMORZ2' where id=6; -update noar ti set b2='0REGOXSGZ8UYFXFTBC2ZFMORZ2' where id=6; -update noar tt set v0='C' where id=7; -update noar ti set v0='C' where id=7; -update noar tt set b0='R' where id=7; -update noar ti set b0='R' where id=7; -update noar tt set v0='7C0Q313266KJISX6ER60HQYUEY' where id=7; -update noar ti set v0='7C0Q313266KJISX6ER60HQYUEY' where id=7; -update noar tt set b1='M4C7EV' where id=7; -update noar ti set b1='M4C7EV' where id=7; -update noar tt set v0='NNJK' where id=7; -update noar ti set v0='NNJK' where id=7; -update noar tt set b2='GHN5HV2ZV61GBO1MPA0RA9SAW61F' where id=7; -update noar ti set b2='GHN5HV2ZV61GBO1MPA0RA9SAW61F' where id=7; -update noar tt set v0='5' where id=8; -update noar ti set v0='5' where id=8; -update noar tt set b0='7C81N' where id=8; -update noar ti set b0='7C81N' where id=8; -update noar tt set v0='COR37X28U51YQHLOG' where id=8; -update noar ti set v0='COR37X28U51YQHLOG' where id=8; -update noar tt set b1='CB0J5X9E7758A' where id=8; -update noar ti set b1='CB0J5X9E7758A' where id=8; -update noar tt set v0='95NKZ' where id=8; -update noar ti set v0='95NKZ' where id=8; -update noar tt set b2='QCF7RYDWXVUOWLJQ22WUGIGVJ8HXPRR' where id=8; -update noar ti set b2='QCF7RYDWXVUOWLJQ22WUGIGVJ8HXPRR' where id=8; -update noar tt set v0='95FUZXMX68GFPRB844WUBJ0UKQNX' where id=9; -update noar ti set v0='95FUZXMX68GFPRB844WUBJ0UKQNX' where id=9; -update noar tt set b0='5NF8BYY5NO03' where id=9; -update noar ti set b0='5NF8BYY5NO03' where id=9; -update noar tt set v0='8AI' where id=9; -update noar ti set v0='8AI' where id=9; -update noar tt set b1='T5CPVMUV1OZMTDPM' where id=9; -update noar ti set b1='T5CPVMUV1OZMTDPM' where id=9; -update noar tt set v0='88DP' where id=9; -update noar ti set v0='88DP' where id=9; -update noar tt set b2='ZCZIN0VVO68R0QJODEVP4WZ381' where id=9; -update noar ti set b2='ZCZIN0VVO68R0QJODEVP4WZ381' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - v0 varchar(256) not null, - b0 mediumblob not null, - b1 longblob not null, - b2 blob not null -) engine=tokudb; -insert into tt values (1,'','','',''); -insert into tt values (2,'','','',''); -insert into tt values (3,'','','',''); -insert into tt values (4,'','','',''); -insert into tt values (5,'','','',''); -insert into tt values (6,'','','',''); -insert into tt values (7,'','','',''); -insert into tt values (8,'','','',''); -insert into tt values (9,'','','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='V7ZWG4AZN' where id=1; -update noar ti set v0='V7ZWG4AZN' where id=1; -update noar tt set b0='TATBDD2ZM99M313' where id=1; -update noar ti set b0='TATBDD2ZM99M313' where id=1; -update noar tt set v0='03LC2CBJJ0BL74IK4ISJY' where id=1; -update noar ti set v0='03LC2CBJJ0BL74IK4ISJY' where id=1; -update noar tt set b1='AJAKRSLCG2GB53F5HN96' where id=1; -update noar ti set b1='AJAKRSLCG2GB53F5HN96' where id=1; -update noar tt set v0='5PM2W' where id=1; -update noar ti set v0='5PM2W' where id=1; -update noar tt set b2='UU5KAQ0CLOX84U016VEDS' where id=1; -update noar ti set b2='UU5KAQ0CLOX84U016VEDS' where id=1; -update noar tt set v0='210ZEO5YTH9U4' where id=2; -update noar ti set v0='210ZEO5YTH9U4' where id=2; -update noar tt set b0='RPS5LC05P2636TZP11ZHC4TKA9EGDD' where id=2; -update noar ti set b0='RPS5LC05P2636TZP11ZHC4TKA9EGDD' where id=2; -update noar tt set v0='CIUKVTTPFWQ4GJX1JICRFDHE' where id=2; -update noar ti set v0='CIUKVTTPFWQ4GJX1JICRFDHE' where id=2; -update noar tt set b1='5LUQKEQ0JI9SSXBQGD9P43232W' where id=2; -update noar ti set b1='5LUQKEQ0JI9SSXBQGD9P43232W' where id=2; -update noar tt set v0='9I0CLSUIA47H9ME' where id=2; -update noar ti set v0='9I0CLSUIA47H9ME' where id=2; -update noar tt set b2='DRK53ATV11Y3DDQLR7Q7R' where id=2; -update noar ti set b2='DRK53ATV11Y3DDQLR7Q7R' where id=2; -update noar tt set v0='PB0XVODYOWXTF84Q8OX6SD21' where id=3; -update noar ti set v0='PB0XVODYOWXTF84Q8OX6SD21' where id=3; -update noar tt set b0='HJZ9E7Q044US50K9VTSXDM' where id=3; -update noar ti set b0='HJZ9E7Q044US50K9VTSXDM' where id=3; -update noar tt set v0='5TMMHP3DQTDU7IFW8KCIK96YPDCU' where id=3; -update noar ti set v0='5TMMHP3DQTDU7IFW8KCIK96YPDCU' where id=3; -update noar tt set b1='OPYEFP5EXI0N' where id=3; -update noar ti set b1='OPYEFP5EXI0N' where id=3; -update noar tt set v0='HMSL2S' where id=3; -update noar ti set v0='HMSL2S' where id=3; -update noar tt set b2='JJFG1F0RC' where id=3; -update noar ti set b2='JJFG1F0RC' where id=3; -update noar tt set v0='5RE63AKKYUL16QBPQ929IW5NB9' where id=4; -update noar ti set v0='5RE63AKKYUL16QBPQ929IW5NB9' where id=4; -update noar tt set b0='4F91R01XDIYTY7PUS8DX' where id=4; -update noar ti set b0='4F91R01XDIYTY7PUS8DX' where id=4; -update noar tt set v0='XM2LWTBVF6WNNR1Y' where id=4; -update noar ti set v0='XM2LWTBVF6WNNR1Y' where id=4; -update noar tt set b1='FKZ7RP1ZW8YO49BZOUNJGZWL9XA47HZZ' where id=4; -update noar ti set b1='FKZ7RP1ZW8YO49BZOUNJGZWL9XA47HZZ' where id=4; -update noar tt set v0='Y1EDT095QEUGSC80O9QXH2YPA' where id=4; -update noar ti set v0='Y1EDT095QEUGSC80O9QXH2YPA' where id=4; -update noar tt set b2='7U0W7OCG8' where id=4; -update noar ti set b2='7U0W7OCG8' where id=4; -update noar tt set v0='3XVPGMXMQLK70U3' where id=5; -update noar ti set v0='3XVPGMXMQLK70U3' where id=5; -update noar tt set b0='Y4QWDP12JWF36SF1' where id=5; -update noar ti set b0='Y4QWDP12JWF36SF1' where id=5; -update noar tt set v0='D2H16PRZVJV320S5IJ' where id=5; -update noar ti set v0='D2H16PRZVJV320S5IJ' where id=5; -update noar tt set b1='H0HEHKKSFQZGIS' where id=5; -update noar ti set b1='H0HEHKKSFQZGIS' where id=5; -update noar tt set v0='1LK5USMV06RCN7UW6QNAUKN6' where id=5; -update noar ti set v0='1LK5USMV06RCN7UW6QNAUKN6' where id=5; -update noar tt set b2='S8UCVUCJUTL7SX2UW0O5H3PJ' where id=5; -update noar ti set b2='S8UCVUCJUTL7SX2UW0O5H3PJ' where id=5; -update noar tt set v0='2WFOQNFRK7RG1LHKM69YAX3DU' where id=6; -update noar ti set v0='2WFOQNFRK7RG1LHKM69YAX3DU' where id=6; -update noar tt set b0='MOXEFXE7O86GBF149569NE83BRULB' where id=6; -update noar ti set b0='MOXEFXE7O86GBF149569NE83BRULB' where id=6; -update noar tt set v0='W381UCX' where id=6; -update noar ti set v0='W381UCX' where id=6; -update noar tt set b1='J75YLBPR6MQ' where id=6; -update noar ti set b1='J75YLBPR6MQ' where id=6; -update noar tt set v0='W7AOOR8I9455' where id=6; -update noar ti set v0='W7AOOR8I9455' where id=6; -update noar tt set b2='P26M' where id=6; -update noar ti set b2='P26M' where id=6; -update noar tt set v0='CL3WQ1K115R' where id=7; -update noar ti set v0='CL3WQ1K115R' where id=7; -update noar tt set b0='HNAN9AVT0AOT2OFX6QK1279S' where id=7; -update noar ti set b0='HNAN9AVT0AOT2OFX6QK1279S' where id=7; -update noar tt set v0='BNU3MYAPQ86OOQI8K2XJ0X' where id=7; -update noar ti set v0='BNU3MYAPQ86OOQI8K2XJ0X' where id=7; -update noar tt set b1='3SB8DB8XRHCJQ2M9YE0H9BS1T51' where id=7; -update noar ti set b1='3SB8DB8XRHCJQ2M9YE0H9BS1T51' where id=7; -update noar tt set v0='IH390HHQZUMM67V2U8ETY' where id=7; -update noar ti set v0='IH390HHQZUMM67V2U8ETY' where id=7; -update noar tt set b2='HWMGCETHG' where id=7; -update noar ti set b2='HWMGCETHG' where id=7; -update noar tt set v0='ZPD0QKTZY8GGA' where id=8; -update noar ti set v0='ZPD0QKTZY8GGA' where id=8; -update noar tt set b0='SPPEFGAI' where id=8; -update noar ti set b0='SPPEFGAI' where id=8; -update noar tt set v0='RTFOKFTU2KIMD' where id=8; -update noar ti set v0='RTFOKFTU2KIMD' where id=8; -update noar tt set b1='58' where id=8; -update noar ti set b1='58' where id=8; -update noar tt set v0='DUIYVWOW' where id=8; -update noar ti set v0='DUIYVWOW' where id=8; -update noar tt set b2='ZL0M4SSJ488QF1RRW9' where id=8; -update noar ti set b2='ZL0M4SSJ488QF1RRW9' where id=8; -update noar tt set v0='IMBQX11WXDZD23' where id=9; -update noar ti set v0='IMBQX11WXDZD23' where id=9; -update noar tt set b0='LR95KY4LF9LBODKVVYP6VNQB5A97V' where id=9; -update noar ti set b0='LR95KY4LF9LBODKVVYP6VNQB5A97V' where id=9; -update noar tt set v0='9G2XMTYWQ9DZHC6R2SZFMHM7FIN2FXNE' where id=9; -update noar ti set v0='9G2XMTYWQ9DZHC6R2SZFMHM7FIN2FXNE' where id=9; -update noar tt set b1='YJBADF389CUS9CZBY9K3T07ICL4' where id=9; -update noar ti set b1='YJBADF389CUS9CZBY9K3T07ICL4' where id=9; -update noar tt set v0='GLDLMJP3SGKJ1IIAJPJ' where id=9; -update noar ti set v0='GLDLMJP3SGKJ1IIAJPJ' where id=9; -update noar tt set b2='Y5SXJBOJP7OU8I251M29ZNEAWF98Z' where id=9; -update noar ti set b2='Y5SXJBOJP7OU8I251M29ZNEAWF98Z' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - v0 varchar(32) null, - b0 mediumblob null, - b1 longblob null, - b2 mediumblob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='HEMYCHEGMT4Y1B9' where id=1; -update noar ti set v0='HEMYCHEGMT4Y1B9' where id=1; -update noar tt set b0='FFNXWDY2QWMMI8GC' where id=1; -update noar ti set b0='FFNXWDY2QWMMI8GC' where id=1; -update noar tt set v0='RE6A13N6VX4X7WRFBDODLPKG38MTP' where id=1; -update noar ti set v0='RE6A13N6VX4X7WRFBDODLPKG38MTP' where id=1; -update noar tt set b1='N' where id=1; -update noar ti set b1='N' where id=1; -update noar tt set v0='ZUEDPH7OKOEK2A' where id=1; -update noar ti set v0='ZUEDPH7OKOEK2A' where id=1; -update noar tt set b2='PZKKNBCMF7HFB2Z622Y' where id=1; -update noar ti set b2='PZKKNBCMF7HFB2Z622Y' where id=1; -update noar tt set v0='O326QBS9C' where id=2; -update noar ti set v0='O326QBS9C' where id=2; -update noar tt set b0='83XA2ZJWA6FIV8IE2L6PMYV460RF7J' where id=2; -update noar ti set b0='83XA2ZJWA6FIV8IE2L6PMYV460RF7J' where id=2; -update noar tt set v0='IVBTK11YVL' where id=2; -update noar ti set v0='IVBTK11YVL' where id=2; -update noar tt set b1='62LZS7HF1Y151FFD09AZC70WUBBRE5FC' where id=2; -update noar ti set b1='62LZS7HF1Y151FFD09AZC70WUBBRE5FC' where id=2; -update noar tt set v0='UKT9TGCHU2IQOT2BM3TEPMIOKTJJ3LWE' where id=2; -update noar ti set v0='UKT9TGCHU2IQOT2BM3TEPMIOKTJJ3LWE' where id=2; -update noar tt set b2='OFCOACO' where id=2; -update noar ti set b2='OFCOACO' where id=2; -update noar tt set v0='3UD24CUV4J837VZZMOOZ14DMGR7CL' where id=3; -update noar ti set v0='3UD24CUV4J837VZZMOOZ14DMGR7CL' where id=3; -update noar tt set b0='H118W0CPF67WCLB0H' where id=3; -update noar ti set b0='H118W0CPF67WCLB0H' where id=3; -update noar tt set v0='YEEL8JQUQA081O7FHKEKG0UFHWCF' where id=3; -update noar ti set v0='YEEL8JQUQA081O7FHKEKG0UFHWCF' where id=3; -update noar tt set b1='AR2AHT9YYH5BGWNEFV2HJ5F8ZPN2X1' where id=3; -update noar ti set b1='AR2AHT9YYH5BGWNEFV2HJ5F8ZPN2X1' where id=3; -update noar tt set v0='VR6HMN8I7XJ7B' where id=3; -update noar ti set v0='VR6HMN8I7XJ7B' where id=3; -update noar tt set b2='TZSEX34FFOQXBTS36BP2DIW8SDTS' where id=3; -update noar ti set b2='TZSEX34FFOQXBTS36BP2DIW8SDTS' where id=3; -update noar tt set v0='GJ5O8KZWHXT9NRAET8U2OH9NA7GNXEYO' where id=4; -update noar ti set v0='GJ5O8KZWHXT9NRAET8U2OH9NA7GNXEYO' where id=4; -update noar tt set b0='WKERUZFBWX2TK2RU4NYGFT' where id=4; -update noar ti set b0='WKERUZFBWX2TK2RU4NYGFT' where id=4; -update noar tt set v0='IKLNC2XN0LRFTWDOLYA4P' where id=4; -update noar ti set v0='IKLNC2XN0LRFTWDOLYA4P' where id=4; -update noar tt set b1='5C6' where id=4; -update noar ti set b1='5C6' where id=4; -update noar tt set v0='0HP0DQ87N0UUZXUVBSD' where id=4; -update noar ti set v0='0HP0DQ87N0UUZXUVBSD' where id=4; -update noar tt set b2='PCB45590USUWTZTZJZAB4YG1E8' where id=4; -update noar ti set b2='PCB45590USUWTZTZJZAB4YG1E8' where id=4; -update noar tt set v0='WI' where id=5; -update noar ti set v0='WI' where id=5; -update noar tt set b0='B6G' where id=5; -update noar ti set b0='B6G' where id=5; -update noar tt set v0='0NEJKWGH3E6RQM2EO2G4M31B' where id=5; -update noar ti set v0='0NEJKWGH3E6RQM2EO2G4M31B' where id=5; -update noar tt set b1='VTA' where id=5; -update noar ti set b1='VTA' where id=5; -update noar tt set v0='FHN7PZUPR0K5MZBZC7UQKY57I' where id=5; -update noar ti set v0='FHN7PZUPR0K5MZBZC7UQKY57I' where id=5; -update noar tt set b2='JWC437U603LHDVC6' where id=5; -update noar ti set b2='JWC437U603LHDVC6' where id=5; -update noar tt set v0='W95HR' where id=6; -update noar ti set v0='W95HR' where id=6; -update noar tt set b0='KW1L' where id=6; -update noar ti set b0='KW1L' where id=6; -update noar tt set v0='W3PKX3RMYXH0VO4S0X03ZCOG4EP' where id=6; -update noar ti set v0='W3PKX3RMYXH0VO4S0X03ZCOG4EP' where id=6; -update noar tt set b1='3M' where id=6; -update noar ti set b1='3M' where id=6; -update noar tt set v0='58SYRP3KAZWEZCW0KCKL0P6C1OP3' where id=6; -update noar ti set v0='58SYRP3KAZWEZCW0KCKL0P6C1OP3' where id=6; -update noar tt set b2='G' where id=6; -update noar ti set b2='G' where id=6; -update noar tt set v0='1V69FB47T49HMDZJ6WXV7HYNXY4S' where id=7; -update noar ti set v0='1V69FB47T49HMDZJ6WXV7HYNXY4S' where id=7; -update noar tt set b0='S4WKPRVBAQWOJHPQ84PBX8PC2BZR' where id=7; -update noar ti set b0='S4WKPRVBAQWOJHPQ84PBX8PC2BZR' where id=7; -update noar tt set v0='U9ZG9I7RFDV1J4H9MCP1IBXCIW' where id=7; -update noar ti set v0='U9ZG9I7RFDV1J4H9MCP1IBXCIW' where id=7; -update noar tt set b1='Z6VEJCBCNSM7BM2G' where id=7; -update noar ti set b1='Z6VEJCBCNSM7BM2G' where id=7; -update noar tt set v0='CHW4AYEMTEZ0Y84HJBTPD40TR03XZ' where id=7; -update noar ti set v0='CHW4AYEMTEZ0Y84HJBTPD40TR03XZ' where id=7; -update noar tt set b2='WICZLVZ1DA6PMSMQ1JPA2' where id=7; -update noar ti set b2='WICZLVZ1DA6PMSMQ1JPA2' where id=7; -update noar tt set v0='JBCKL91QVNSC' where id=8; -update noar ti set v0='JBCKL91QVNSC' where id=8; -update noar tt set b0='VU' where id=8; -update noar ti set b0='VU' where id=8; -update noar tt set v0='TKRV0AGLFXH9' where id=8; -update noar ti set v0='TKRV0AGLFXH9' where id=8; -update noar tt set b1='FYZTUUXIDOM2JC7D5UDTFNVEXNKC67V' where id=8; -update noar ti set b1='FYZTUUXIDOM2JC7D5UDTFNVEXNKC67V' where id=8; -update noar tt set v0='ZASLCM7TE29EMVXOLZ4' where id=8; -update noar ti set v0='ZASLCM7TE29EMVXOLZ4' where id=8; -update noar tt set b2='385MA3E0O1D2K0ANMSJX6I32B' where id=8; -update noar ti set b2='385MA3E0O1D2K0ANMSJX6I32B' where id=8; -update noar tt set v0='R9QS4' where id=9; -update noar ti set v0='R9QS4' where id=9; -update noar tt set b0='01XPT9N4' where id=9; -update noar ti set b0='01XPT9N4' where id=9; -update noar tt set v0='O4Z' where id=9; -update noar ti set v0='O4Z' where id=9; -update noar tt set b1='NF5VSD2PZT5W57FER4VY8Z2DQ8I1LNJ' where id=9; -update noar ti set b1='NF5VSD2PZT5W57FER4VY8Z2DQ8I1LNJ' where id=9; -update noar tt set v0='5SVC884CFGCG77UER3NUZ95KY5M4Q' where id=9; -update noar ti set v0='5SVC884CFGCG77UER3NUZ95KY5M4Q' where id=9; -update noar tt set b2='8B' where id=9; -update noar ti set b2='8B' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - v0 varchar(256) null, - b0 mediumblob null, - b1 longblob null, - b2 mediumblob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='VBNLXDWCY8P0D827ZS' where id=1; -update noar ti set v0='VBNLXDWCY8P0D827ZS' where id=1; -update noar tt set b0='HGOQ86QPAJELJY' where id=1; -update noar ti set b0='HGOQ86QPAJELJY' where id=1; -update noar tt set v0='D11ZZAFZDELOMBJ9F4' where id=1; -update noar ti set v0='D11ZZAFZDELOMBJ9F4' where id=1; -update noar tt set b1='W1HW4' where id=1; -update noar ti set b1='W1HW4' where id=1; -update noar tt set v0='JG8L8NA067' where id=1; -update noar ti set v0='JG8L8NA067' where id=1; -update noar tt set b2='I' where id=1; -update noar ti set b2='I' where id=1; -update noar tt set v0='WU6IU' where id=2; -update noar ti set v0='WU6IU' where id=2; -update noar tt set b0='2DL5F2ZV0' where id=2; -update noar ti set b0='2DL5F2ZV0' where id=2; -update noar tt set v0='GOUMQ5RXP5IF0S64UXY5UX' where id=2; -update noar ti set v0='GOUMQ5RXP5IF0S64UXY5UX' where id=2; -update noar tt set b1='9Q4XP7Z3O2DC5010C4L2JA' where id=2; -update noar ti set b1='9Q4XP7Z3O2DC5010C4L2JA' where id=2; -update noar tt set v0='6I2SHG3IOPRDKOI9UYJN6' where id=2; -update noar ti set v0='6I2SHG3IOPRDKOI9UYJN6' where id=2; -update noar tt set b2='6WSWK5E9EBJVXBKVD7IJWFP57VNY' where id=2; -update noar ti set b2='6WSWK5E9EBJVXBKVD7IJWFP57VNY' where id=2; -update noar tt set v0='3K43ZFVV8Y8' where id=3; -update noar ti set v0='3K43ZFVV8Y8' where id=3; -update noar tt set b0='X18B2' where id=3; -update noar ti set b0='X18B2' where id=3; -update noar tt set v0='1AS08QZHPYLM99KTAS58' where id=3; -update noar ti set v0='1AS08QZHPYLM99KTAS58' where id=3; -update noar tt set b1='Q9ANGZ' where id=3; -update noar ti set b1='Q9ANGZ' where id=3; -update noar tt set v0='70QIT25GLE' where id=3; -update noar ti set v0='70QIT25GLE' where id=3; -update noar tt set b2='PPJLC0N1IFY4K6KJ' where id=3; -update noar ti set b2='PPJLC0N1IFY4K6KJ' where id=3; -update noar tt set v0='TN4GIH4YSG411YD3' where id=4; -update noar ti set v0='TN4GIH4YSG411YD3' where id=4; -update noar tt set b0='YQZYG98APFB9HZ360L7WN9GCXDSHC6' where id=4; -update noar ti set b0='YQZYG98APFB9HZ360L7WN9GCXDSHC6' where id=4; -update noar tt set v0='BW00HBMU4U' where id=4; -update noar ti set v0='BW00HBMU4U' where id=4; -update noar tt set b1='7144MN0RURPUP4UZGQEVGRGG8A4CY4W' where id=4; -update noar ti set b1='7144MN0RURPUP4UZGQEVGRGG8A4CY4W' where id=4; -update noar tt set v0='ZMWJ2SULYN8RGNJZ863LNJB0AFCGWU' where id=4; -update noar ti set v0='ZMWJ2SULYN8RGNJZ863LNJB0AFCGWU' where id=4; -update noar tt set b2='1SC2' where id=4; -update noar ti set b2='1SC2' where id=4; -update noar tt set v0='O7' where id=5; -update noar ti set v0='O7' where id=5; -update noar tt set b0='2X54APC5PR3DS4KH04VGE' where id=5; -update noar ti set b0='2X54APC5PR3DS4KH04VGE' where id=5; -update noar tt set v0='HVY5EKT1ZXCRJ' where id=5; -update noar ti set v0='HVY5EKT1ZXCRJ' where id=5; -update noar tt set b1='WTPTUF' where id=5; -update noar ti set b1='WTPTUF' where id=5; -update noar tt set v0='KHD78EKF9P5HSYN0KDYAUGC9' where id=5; -update noar ti set v0='KHD78EKF9P5HSYN0KDYAUGC9' where id=5; -update noar tt set b2='J477EQG00AHOH3WA9' where id=5; -update noar ti set b2='J477EQG00AHOH3WA9' where id=5; -update noar tt set v0='LCFGNS92EOU6YKAF' where id=6; -update noar ti set v0='LCFGNS92EOU6YKAF' where id=6; -update noar tt set b0='O3U1RW1BOJYOP3J' where id=6; -update noar ti set b0='O3U1RW1BOJYOP3J' where id=6; -update noar tt set v0='LA17XKMM6XURUMQXMSW38' where id=6; -update noar ti set v0='LA17XKMM6XURUMQXMSW38' where id=6; -update noar tt set b1='N' where id=6; -update noar ti set b1='N' where id=6; -update noar tt set v0='MTFL4RSOQ98VKT1' where id=6; -update noar ti set v0='MTFL4RSOQ98VKT1' where id=6; -update noar tt set b2='CTSJ5TE2Z85Y4SHXSG' where id=6; -update noar ti set b2='CTSJ5TE2Z85Y4SHXSG' where id=6; -update noar tt set v0='LEM2DK4XYJGAMQL' where id=7; -update noar ti set v0='LEM2DK4XYJGAMQL' where id=7; -update noar tt set b0='CNHPI6OQPRBMR' where id=7; -update noar ti set b0='CNHPI6OQPRBMR' where id=7; -update noar tt set v0='0T31' where id=7; -update noar ti set v0='0T31' where id=7; -update noar tt set b1='KWTYAN3JHT7RVQGOMMC8Z' where id=7; -update noar ti set b1='KWTYAN3JHT7RVQGOMMC8Z' where id=7; -update noar tt set v0='DT2AYTM1RYB5ELQKU3B2' where id=7; -update noar ti set v0='DT2AYTM1RYB5ELQKU3B2' where id=7; -update noar tt set b2='2H5XXD4MLKVUKKLHM6' where id=7; -update noar ti set b2='2H5XXD4MLKVUKKLHM6' where id=7; -update noar tt set v0='XII6KEUC23X' where id=8; -update noar ti set v0='XII6KEUC23X' where id=8; -update noar tt set b0='KM9J386EX9MJLD79POMU4' where id=8; -update noar ti set b0='KM9J386EX9MJLD79POMU4' where id=8; -update noar tt set v0='0JLFR7G9QWSUO' where id=8; -update noar ti set v0='0JLFR7G9QWSUO' where id=8; -update noar tt set b1='DLAAOUBXYGC87UIV88LM9' where id=8; -update noar ti set b1='DLAAOUBXYGC87UIV88LM9' where id=8; -update noar tt set v0='JKVYZY6K0RCCLRMEX0E' where id=8; -update noar ti set v0='JKVYZY6K0RCCLRMEX0E' where id=8; -update noar tt set b2='EW5AG' where id=8; -update noar ti set b2='EW5AG' where id=8; -update noar tt set v0='BJ3I5IB' where id=9; -update noar ti set v0='BJ3I5IB' where id=9; -update noar tt set b0='5QNVTA0D23UQ' where id=9; -update noar ti set b0='5QNVTA0D23UQ' where id=9; -update noar tt set v0='LLROIM1QK2YUBGD2SCAAGEE90Y' where id=9; -update noar ti set v0='LLROIM1QK2YUBGD2SCAAGEE90Y' where id=9; -update noar tt set b1='BLBPU6CTR3FZH71YP8WEYRGS1LE33EP' where id=9; -update noar ti set b1='BLBPU6CTR3FZH71YP8WEYRGS1LE33EP' where id=9; -update noar tt set v0='W6YY3MSY6OGNZL5YDGJ95' where id=9; -update noar ti set v0='W6YY3MSY6OGNZL5YDGJ95' where id=9; -update noar tt set b2='1ES1IN7ZEVXSNP9G2T' where id=9; -update noar ti set b2='1ES1IN7ZEVXSNP9G2T' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - v0 varchar(32) not null, - b0 mediumblob not null, - b1 longblob not null, - b2 mediumblob not null -) engine=tokudb; -insert into tt values (1,'','','',''); -insert into tt values (2,'','','',''); -insert into tt values (3,'','','',''); -insert into tt values (4,'','','',''); -insert into tt values (5,'','','',''); -insert into tt values (6,'','','',''); -insert into tt values (7,'','','',''); -insert into tt values (8,'','','',''); -insert into tt values (9,'','','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='NNCHWZG' where id=1; -update noar ti set v0='NNCHWZG' where id=1; -update noar tt set b0='V62LJQQ1N8Z' where id=1; -update noar ti set b0='V62LJQQ1N8Z' where id=1; -update noar tt set v0='UP6JH766TL8DIPJW26GG' where id=1; -update noar ti set v0='UP6JH766TL8DIPJW26GG' where id=1; -update noar tt set b1='972' where id=1; -update noar ti set b1='972' where id=1; -update noar tt set v0='V76YTXYWIB5CQE3JP7WH31' where id=1; -update noar ti set v0='V76YTXYWIB5CQE3JP7WH31' where id=1; -update noar tt set b2='UOQ975H6L3E2L761L978SIFX' where id=1; -update noar ti set b2='UOQ975H6L3E2L761L978SIFX' where id=1; -update noar tt set v0='6V8F8IBA24O20SELD' where id=2; -update noar ti set v0='6V8F8IBA24O20SELD' where id=2; -update noar tt set b0='C7UHQE5LRMP6GCS9LJHP3PJ3' where id=2; -update noar ti set b0='C7UHQE5LRMP6GCS9LJHP3PJ3' where id=2; -update noar tt set v0='I8KDINPV3HQDCOFVSTOI' where id=2; -update noar ti set v0='I8KDINPV3HQDCOFVSTOI' where id=2; -update noar tt set b1='GNHXYR7U8X' where id=2; -update noar ti set b1='GNHXYR7U8X' where id=2; -update noar tt set v0='IL8' where id=2; -update noar ti set v0='IL8' where id=2; -update noar tt set b2='V9NL7V5CEW4EOUIML3PGE0YA2' where id=2; -update noar ti set b2='V9NL7V5CEW4EOUIML3PGE0YA2' where id=2; -update noar tt set v0='S63FMJ' where id=3; -update noar ti set v0='S63FMJ' where id=3; -update noar tt set b0='VRLARBNL5LFZZXO' where id=3; -update noar ti set b0='VRLARBNL5LFZZXO' where id=3; -update noar tt set v0='9HBT0A45DHHLBMNK6DOEZYI' where id=3; -update noar ti set v0='9HBT0A45DHHLBMNK6DOEZYI' where id=3; -update noar tt set b1='QLXOSRJSFXFOMJUXSBYHU' where id=3; -update noar ti set b1='QLXOSRJSFXFOMJUXSBYHU' where id=3; -update noar tt set v0='8KDWYIM24DDZD8GBGZ' where id=3; -update noar ti set v0='8KDWYIM24DDZD8GBGZ' where id=3; -update noar tt set b2='W0M52DI0AXF3ITN9FA68MFZDHL1AO7A' where id=3; -update noar ti set b2='W0M52DI0AXF3ITN9FA68MFZDHL1AO7A' where id=3; -update noar tt set v0='816JGL6G79SMB' where id=4; -update noar ti set v0='816JGL6G79SMB' where id=4; -update noar tt set b0='172JZ8EV6BG5E4BS' where id=4; -update noar ti set b0='172JZ8EV6BG5E4BS' where id=4; -update noar tt set v0='6CA538UKIEPYDC7MA2BLT0' where id=4; -update noar ti set v0='6CA538UKIEPYDC7MA2BLT0' where id=4; -update noar tt set b1='2S25DBO8AGY7QYZ9RX9' where id=4; -update noar ti set b1='2S25DBO8AGY7QYZ9RX9' where id=4; -update noar tt set v0='VBHPTZFVTJUHGGE71L2O' where id=4; -update noar ti set v0='VBHPTZFVTJUHGGE71L2O' where id=4; -update noar tt set b2='1ZBLWOA2SI93MVUVNBE82WXY71SQHQ' where id=4; -update noar ti set b2='1ZBLWOA2SI93MVUVNBE82WXY71SQHQ' where id=4; -update noar tt set v0='FW7643Z' where id=5; -update noar ti set v0='FW7643Z' where id=5; -update noar tt set b0='ZN813I0S8998E31Q1QFMHHBU' where id=5; -update noar ti set b0='ZN813I0S8998E31Q1QFMHHBU' where id=5; -update noar tt set v0='KS9LRDYKYKJEUA8VT887' where id=5; -update noar ti set v0='KS9LRDYKYKJEUA8VT887' where id=5; -update noar tt set b1='CXN90DC77STQC8FZBC31' where id=5; -update noar ti set b1='CXN90DC77STQC8FZBC31' where id=5; -update noar tt set v0='HZSW3GC2GD5F1U8SYG16TNIN' where id=5; -update noar ti set v0='HZSW3GC2GD5F1U8SYG16TNIN' where id=5; -update noar tt set b2='PAHYVJY6K5EAMHW2R674' where id=5; -update noar ti set b2='PAHYVJY6K5EAMHW2R674' where id=5; -update noar tt set v0='KYQ2YM4SP8T52EDP7' where id=6; -update noar ti set v0='KYQ2YM4SP8T52EDP7' where id=6; -update noar tt set b0='QGAJ4I' where id=6; -update noar ti set b0='QGAJ4I' where id=6; -update noar tt set v0='HVBHKHZQ1JK4H1QHHQ3TT' where id=6; -update noar ti set v0='HVBHKHZQ1JK4H1QHHQ3TT' where id=6; -update noar tt set b1='6W9U8TSLOW1BGPJRO3LLA7KMACW9' where id=6; -update noar ti set b1='6W9U8TSLOW1BGPJRO3LLA7KMACW9' where id=6; -update noar tt set v0='W14WY3M9SSHZ39C7P54RN1WPJ9YZAB0' where id=6; -update noar ti set v0='W14WY3M9SSHZ39C7P54RN1WPJ9YZAB0' where id=6; -update noar tt set b2='10LWIW6DZJAC' where id=6; -update noar ti set b2='10LWIW6DZJAC' where id=6; -update noar tt set v0='AZJVV74K5E60TAP0R7BXR8N0BL' where id=7; -update noar ti set v0='AZJVV74K5E60TAP0R7BXR8N0BL' where id=7; -update noar tt set b0='HTRBI14ZEVI' where id=7; -update noar ti set b0='HTRBI14ZEVI' where id=7; -update noar tt set v0='YPZDK29RF' where id=7; -update noar ti set v0='YPZDK29RF' where id=7; -update noar tt set b1='IF42WK3QIJDZ2U8Z5PVS53' where id=7; -update noar ti set b1='IF42WK3QIJDZ2U8Z5PVS53' where id=7; -update noar tt set v0='EQ6Q8EY87BHUD9BH762SKD1EYY8' where id=7; -update noar ti set v0='EQ6Q8EY87BHUD9BH762SKD1EYY8' where id=7; -update noar tt set b2='BKC0IGEBLGMXCBK873X0UG4TCO9' where id=7; -update noar ti set b2='BKC0IGEBLGMXCBK873X0UG4TCO9' where id=7; -update noar tt set v0='GVOYN7JMCCC' where id=8; -update noar ti set v0='GVOYN7JMCCC' where id=8; -update noar tt set b0='R22TS1O1GEY34' where id=8; -update noar ti set b0='R22TS1O1GEY34' where id=8; -update noar tt set v0='4RN0AJO7WY30RWALO30QQ2401' where id=8; -update noar ti set v0='4RN0AJO7WY30RWALO30QQ2401' where id=8; -update noar tt set b1='35EU66WGWFFKL64MH2NVQJ9ZCDK' where id=8; -update noar ti set b1='35EU66WGWFFKL64MH2NVQJ9ZCDK' where id=8; -update noar tt set v0='Y8' where id=8; -update noar ti set v0='Y8' where id=8; -update noar tt set b2='QLTZBSKPUFAMX1ZAC' where id=8; -update noar ti set b2='QLTZBSKPUFAMX1ZAC' where id=8; -update noar tt set v0='CECRHPZC3MFG155D' where id=9; -update noar ti set v0='CECRHPZC3MFG155D' where id=9; -update noar tt set b0='8GR46T3GF5TN' where id=9; -update noar ti set b0='8GR46T3GF5TN' where id=9; -update noar tt set v0='W2TCPWFKBPA' where id=9; -update noar ti set v0='W2TCPWFKBPA' where id=9; -update noar tt set b1='ZS20088B3OEEY8X1YRHC8BORTB0TSMEW' where id=9; -update noar ti set b1='ZS20088B3OEEY8X1YRHC8BORTB0TSMEW' where id=9; -update noar tt set v0='FWBPYW42JN3FSCW00' where id=9; -update noar ti set v0='FWBPYW42JN3FSCW00' where id=9; -update noar tt set b2='AM9E34IYOFC' where id=9; -update noar ti set b2='AM9E34IYOFC' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - v0 varchar(256) not null, - b0 mediumblob not null, - b1 longblob not null, - b2 mediumblob not null -) engine=tokudb; -insert into tt values (1,'','','',''); -insert into tt values (2,'','','',''); -insert into tt values (3,'','','',''); -insert into tt values (4,'','','',''); -insert into tt values (5,'','','',''); -insert into tt values (6,'','','',''); -insert into tt values (7,'','','',''); -insert into tt values (8,'','','',''); -insert into tt values (9,'','','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='PS8276JENLW25W7AWMZB3LN5KF' where id=1; -update noar ti set v0='PS8276JENLW25W7AWMZB3LN5KF' where id=1; -update noar tt set b0='FQ62XXOGQPK14KWKHKDT' where id=1; -update noar ti set b0='FQ62XXOGQPK14KWKHKDT' where id=1; -update noar tt set v0='593GWDBUDFVYIHVW2QYM0KUFWL694M' where id=1; -update noar ti set v0='593GWDBUDFVYIHVW2QYM0KUFWL694M' where id=1; -update noar tt set b1='RW0' where id=1; -update noar ti set b1='RW0' where id=1; -update noar tt set v0='ZW71DEKRQHWI2HX7K2' where id=1; -update noar ti set v0='ZW71DEKRQHWI2HX7K2' where id=1; -update noar tt set b2='TIRRRSO01XQ24MGKG' where id=1; -update noar ti set b2='TIRRRSO01XQ24MGKG' where id=1; -update noar tt set v0='AW6GICB7IOEUDJXTPPZQX' where id=2; -update noar ti set v0='AW6GICB7IOEUDJXTPPZQX' where id=2; -update noar tt set b0='EP5HNJD059W00PXYSDH' where id=2; -update noar ti set b0='EP5HNJD059W00PXYSDH' where id=2; -update noar tt set v0='Z4C4ULL7Q20C5S3IILVZCZRPY3E' where id=2; -update noar ti set v0='Z4C4ULL7Q20C5S3IILVZCZRPY3E' where id=2; -update noar tt set b1='7VBK' where id=2; -update noar ti set b1='7VBK' where id=2; -update noar tt set v0='38L418T35CUX91R4Y8HR9DW' where id=2; -update noar ti set v0='38L418T35CUX91R4Y8HR9DW' where id=2; -update noar tt set b2='7AKF9CTL528AXDYY2G9B31JO6O' where id=2; -update noar ti set b2='7AKF9CTL528AXDYY2G9B31JO6O' where id=2; -update noar tt set v0='JRI0NYXJET2O52DNLHA2' where id=3; -update noar ti set v0='JRI0NYXJET2O52DNLHA2' where id=3; -update noar tt set b0='ERIVS2PFP' where id=3; -update noar ti set b0='ERIVS2PFP' where id=3; -update noar tt set v0='E1VHJS7OPQK5PI' where id=3; -update noar ti set v0='E1VHJS7OPQK5PI' where id=3; -update noar tt set b1='ZJPITF0GVESBKINVI5P1QNPKJVVE' where id=3; -update noar ti set b1='ZJPITF0GVESBKINVI5P1QNPKJVVE' where id=3; -update noar tt set v0='R08MVVJ8NONN9S2KCU063XAUTGLBAZ' where id=3; -update noar ti set v0='R08MVVJ8NONN9S2KCU063XAUTGLBAZ' where id=3; -update noar tt set b2='I52ES10M7L4TXORS' where id=3; -update noar ti set b2='I52ES10M7L4TXORS' where id=3; -update noar tt set v0='223U0E7F2EXKOMFI2E' where id=4; -update noar ti set v0='223U0E7F2EXKOMFI2E' where id=4; -update noar tt set b0='ZF641A' where id=4; -update noar ti set b0='ZF641A' where id=4; -update noar tt set v0='P8DQ1M0W5ONK2' where id=4; -update noar ti set v0='P8DQ1M0W5ONK2' where id=4; -update noar tt set b1='RDMQ3Q7YJW13CD' where id=4; -update noar ti set b1='RDMQ3Q7YJW13CD' where id=4; -update noar tt set v0='XW9LZLLRA8XVUN' where id=4; -update noar ti set v0='XW9LZLLRA8XVUN' where id=4; -update noar tt set b2='OJFYL' where id=4; -update noar ti set b2='OJFYL' where id=4; -update noar tt set v0='MZGAQ08ADA8898CLLQKRKRH8KT9O6' where id=5; -update noar ti set v0='MZGAQ08ADA8898CLLQKRKRH8KT9O6' where id=5; -update noar tt set b0='V5L442FIMKA7U8' where id=5; -update noar ti set b0='V5L442FIMKA7U8' where id=5; -update noar tt set v0='2J4CSIV3GI415AHC' where id=5; -update noar ti set v0='2J4CSIV3GI415AHC' where id=5; -update noar tt set b1='ID0BB5P5XM5GWRKR' where id=5; -update noar ti set b1='ID0BB5P5XM5GWRKR' where id=5; -update noar tt set v0='PP18FE7JX3OITBTC7X7' where id=5; -update noar ti set v0='PP18FE7JX3OITBTC7X7' where id=5; -update noar tt set b2='0W6QFAA9MPB4M2A90O2H58A' where id=5; -update noar ti set b2='0W6QFAA9MPB4M2A90O2H58A' where id=5; -update noar tt set v0='LWRKR8J' where id=6; -update noar ti set v0='LWRKR8J' where id=6; -update noar tt set b0='AHZTRCOTKJO0E' where id=6; -update noar ti set b0='AHZTRCOTKJO0E' where id=6; -update noar tt set v0='H5WHHBYH350Q3' where id=6; -update noar ti set v0='H5WHHBYH350Q3' where id=6; -update noar tt set b1='1EEIEPCDY5OCB7CO622UN' where id=6; -update noar ti set b1='1EEIEPCDY5OCB7CO622UN' where id=6; -update noar tt set v0='A98DPKO' where id=6; -update noar ti set v0='A98DPKO' where id=6; -update noar tt set b2='BJAFLN7RY7E3QB2Q' where id=6; -update noar ti set b2='BJAFLN7RY7E3QB2Q' where id=6; -update noar tt set v0='3QBNUE4ONWQHXJ8NTHER' where id=7; -update noar ti set v0='3QBNUE4ONWQHXJ8NTHER' where id=7; -update noar tt set b0='HFW09CGB1L4EZA2E76KDE9G0SCF' where id=7; -update noar ti set b0='HFW09CGB1L4EZA2E76KDE9G0SCF' where id=7; -update noar tt set v0='HLEK8UNBAD3D4W6VT7QZXQFZ1JI' where id=7; -update noar ti set v0='HLEK8UNBAD3D4W6VT7QZXQFZ1JI' where id=7; -update noar tt set b1='UVN3' where id=7; -update noar ti set b1='UVN3' where id=7; -update noar tt set v0='MU' where id=7; -update noar ti set v0='MU' where id=7; -update noar tt set b2='SPHNA52UAJEGA6AY22VHH0EUS0O' where id=7; -update noar ti set b2='SPHNA52UAJEGA6AY22VHH0EUS0O' where id=7; -update noar tt set v0='ZXUMZ2T3Y' where id=8; -update noar ti set v0='ZXUMZ2T3Y' where id=8; -update noar tt set b0='JYHP9LSMJO0U7KX' where id=8; -update noar ti set b0='JYHP9LSMJO0U7KX' where id=8; -update noar tt set v0='SFQS3F7E873MQ' where id=8; -update noar ti set v0='SFQS3F7E873MQ' where id=8; -update noar tt set b1='E9A5231B2K1EIWDRBLJ3Y7ZZEP2' where id=8; -update noar ti set b1='E9A5231B2K1EIWDRBLJ3Y7ZZEP2' where id=8; -update noar tt set v0='EI95FML8RIXJ43CNELEI1S4X39' where id=8; -update noar ti set v0='EI95FML8RIXJ43CNELEI1S4X39' where id=8; -update noar tt set b2='HD1VYYTYGQHE1ZRRW5CN' where id=8; -update noar ti set b2='HD1VYYTYGQHE1ZRRW5CN' where id=8; -update noar tt set v0='AUA57HQBP5GGDQ' where id=9; -update noar ti set v0='AUA57HQBP5GGDQ' where id=9; -update noar tt set b0='HWZFNCTUMFQGO816CM95ZUOFQ' where id=9; -update noar ti set b0='HWZFNCTUMFQGO816CM95ZUOFQ' where id=9; -update noar tt set v0='GXRANG' where id=9; -update noar ti set v0='GXRANG' where id=9; -update noar tt set b1='6F66DRUTYRLQWS7F9N' where id=9; -update noar ti set b1='6F66DRUTYRLQWS7F9N' where id=9; -update noar tt set v0='65JAXOFRP8VJGA078GKVCB2MMJQXB699' where id=9; -update noar ti set v0='65JAXOFRP8VJGA078GKVCB2MMJQXB699' where id=9; -update noar tt set b2='T5R0EJCJ8159HT9JATA1SU' where id=9; -update noar ti set b2='T5R0EJCJ8159HT9JATA1SU' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - v0 varchar(32) null, - b0 mediumblob null, - b1 longblob null, - b2 longblob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='XRYHJO6E2DFBIYWBFQUA9' where id=1; -update noar ti set v0='XRYHJO6E2DFBIYWBFQUA9' where id=1; -update noar tt set b0='R3XBQA7TPBCBUJ9OV4NUBQGXE8JS0MX' where id=1; -update noar ti set b0='R3XBQA7TPBCBUJ9OV4NUBQGXE8JS0MX' where id=1; -update noar tt set v0='0JH205WDY4' where id=1; -update noar ti set v0='0JH205WDY4' where id=1; -update noar tt set b1='XPJLGAM5G5MBMOYL8' where id=1; -update noar ti set b1='XPJLGAM5G5MBMOYL8' where id=1; -update noar tt set v0='5Z4ZTNXUH2OFO8AYIEU' where id=1; -update noar ti set v0='5Z4ZTNXUH2OFO8AYIEU' where id=1; -update noar tt set b2='T6L1A41RFVS5XPOZUW0ZF' where id=1; -update noar ti set b2='T6L1A41RFVS5XPOZUW0ZF' where id=1; -update noar tt set v0='H4ZV7BVH18JJJCL' where id=2; -update noar ti set v0='H4ZV7BVH18JJJCL' where id=2; -update noar tt set b0='UUJ896ZTCDUXHP' where id=2; -update noar ti set b0='UUJ896ZTCDUXHP' where id=2; -update noar tt set v0='QSXKD8WSFV94FN9NXC7FLXOW' where id=2; -update noar ti set v0='QSXKD8WSFV94FN9NXC7FLXOW' where id=2; -update noar tt set b1='I8N6W3K21XI2IQ9BYX2LVPO' where id=2; -update noar ti set b1='I8N6W3K21XI2IQ9BYX2LVPO' where id=2; -update noar tt set v0='Q7TPGAEMO4PGSWXUT4O06PHQ2QH9' where id=2; -update noar ti set v0='Q7TPGAEMO4PGSWXUT4O06PHQ2QH9' where id=2; -update noar tt set b2='APWOW9YW6HUWF9M3RMQUD4I' where id=2; -update noar ti set b2='APWOW9YW6HUWF9M3RMQUD4I' where id=2; -update noar tt set v0='FC0Q71ZFT3KL0LGJRXQUORTYCM917Z' where id=3; -update noar ti set v0='FC0Q71ZFT3KL0LGJRXQUORTYCM917Z' where id=3; -update noar tt set b0='1' where id=3; -update noar ti set b0='1' where id=3; -update noar tt set v0='I7E' where id=3; -update noar ti set v0='I7E' where id=3; -update noar tt set b1='3FDG83' where id=3; -update noar ti set b1='3FDG83' where id=3; -update noar tt set v0='4ORPNPK' where id=3; -update noar ti set v0='4ORPNPK' where id=3; -update noar tt set b2='2ULS9K' where id=3; -update noar ti set b2='2ULS9K' where id=3; -update noar tt set v0='O1PMBHY075U16X935JJMK08S' where id=4; -update noar ti set v0='O1PMBHY075U16X935JJMK08S' where id=4; -update noar tt set b0='K' where id=4; -update noar ti set b0='K' where id=4; -update noar tt set v0='7R9KQ82H4G50ZJ3LMWBAXQNY46NM3X' where id=4; -update noar ti set v0='7R9KQ82H4G50ZJ3LMWBAXQNY46NM3X' where id=4; -update noar tt set b1='EEPNPN8V7SKDXQ7RS2JUIU2D3UZ9DE' where id=4; -update noar ti set b1='EEPNPN8V7SKDXQ7RS2JUIU2D3UZ9DE' where id=4; -update noar tt set v0='0YAIGU3LQJN5DGBEYTYN7NGPMUD' where id=4; -update noar ti set v0='0YAIGU3LQJN5DGBEYTYN7NGPMUD' where id=4; -update noar tt set b2='OR3MRXDHIE4CF8NTR10N' where id=4; -update noar ti set b2='OR3MRXDHIE4CF8NTR10N' where id=4; -update noar tt set v0='4EZSHZKP6BQIPO8US8H1VKVMU1ZT4E' where id=5; -update noar ti set v0='4EZSHZKP6BQIPO8US8H1VKVMU1ZT4E' where id=5; -update noar tt set b0='3H' where id=5; -update noar ti set b0='3H' where id=5; -update noar tt set v0='QMWPWW1CXB' where id=5; -update noar ti set v0='QMWPWW1CXB' where id=5; -update noar tt set b1='AX5RLDPA' where id=5; -update noar ti set b1='AX5RLDPA' where id=5; -update noar tt set v0='4ROM60I2Z33' where id=5; -update noar ti set v0='4ROM60I2Z33' where id=5; -update noar tt set b2='90ZSZJFO0' where id=5; -update noar ti set b2='90ZSZJFO0' where id=5; -update noar tt set v0='DQEVQS4J' where id=6; -update noar ti set v0='DQEVQS4J' where id=6; -update noar tt set b0='YM5MYGDHFWM9GNSG' where id=6; -update noar ti set b0='YM5MYGDHFWM9GNSG' where id=6; -update noar tt set v0='KUT48NZFM7IY' where id=6; -update noar ti set v0='KUT48NZFM7IY' where id=6; -update noar tt set b1='Y2A0EHDBB5UZ4GYFP9WO' where id=6; -update noar ti set b1='Y2A0EHDBB5UZ4GYFP9WO' where id=6; -update noar tt set v0='MJ92HTW2XUQ02JPJ421LUIYLDQ1' where id=6; -update noar ti set v0='MJ92HTW2XUQ02JPJ421LUIYLDQ1' where id=6; -update noar tt set b2='7AMJCK45ASCK4OUB' where id=6; -update noar ti set b2='7AMJCK45ASCK4OUB' where id=6; -update noar tt set v0='Z6UJT8M6Z4KC5E0THQ' where id=7; -update noar ti set v0='Z6UJT8M6Z4KC5E0THQ' where id=7; -update noar tt set b0='W334K2AZZA' where id=7; -update noar ti set b0='W334K2AZZA' where id=7; -update noar tt set v0='5WKZ8O2O89GXP9MC6A6HOQ4OG' where id=7; -update noar ti set v0='5WKZ8O2O89GXP9MC6A6HOQ4OG' where id=7; -update noar tt set b1='OK0W67ORO' where id=7; -update noar ti set b1='OK0W67ORO' where id=7; -update noar tt set v0='AD8234RVE9D88NZQ' where id=7; -update noar ti set v0='AD8234RVE9D88NZQ' where id=7; -update noar tt set b2='NCI9L5L' where id=7; -update noar ti set b2='NCI9L5L' where id=7; -update noar tt set v0='7OH8BLDL' where id=8; -update noar ti set v0='7OH8BLDL' where id=8; -update noar tt set b0='C4RH' where id=8; -update noar ti set b0='C4RH' where id=8; -update noar tt set v0='KHLQ5K9K28ULKKHU6KEV' where id=8; -update noar ti set v0='KHLQ5K9K28ULKKHU6KEV' where id=8; -update noar tt set b1='XJWIA4AF20PZDVQ6H' where id=8; -update noar ti set b1='XJWIA4AF20PZDVQ6H' where id=8; -update noar tt set v0='VAN6D2ZK7ZBR4JRHQUU5' where id=8; -update noar ti set v0='VAN6D2ZK7ZBR4JRHQUU5' where id=8; -update noar tt set b2='84XOQYON69B29PJF1K410X5VGNI5X' where id=8; -update noar ti set b2='84XOQYON69B29PJF1K410X5VGNI5X' where id=8; -update noar tt set v0='X6M2XK1HFG2' where id=9; -update noar ti set v0='X6M2XK1HFG2' where id=9; -update noar tt set b0='K63E' where id=9; -update noar ti set b0='K63E' where id=9; -update noar tt set v0='J82ASN9450NFQBR30S2' where id=9; -update noar ti set v0='J82ASN9450NFQBR30S2' where id=9; -update noar tt set b1='SN2T8P1CCWIBYCRFGXDFJO8B' where id=9; -update noar ti set b1='SN2T8P1CCWIBYCRFGXDFJO8B' where id=9; -update noar tt set v0='5625AQU4J5MNRI65A' where id=9; -update noar ti set v0='5625AQU4J5MNRI65A' where id=9; -update noar tt set b2='I4D5VW0LEQ3PABO' where id=9; -update noar ti set b2='I4D5VW0LEQ3PABO' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - v0 varchar(256) null, - b0 mediumblob null, - b1 longblob null, - b2 longblob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='0BPTF92ADUFGK8NPZGP' where id=1; -update noar ti set v0='0BPTF92ADUFGK8NPZGP' where id=1; -update noar tt set b0='A4TC8QLOP7ZMTHRQ88DC7E04AQK5YT' where id=1; -update noar ti set b0='A4TC8QLOP7ZMTHRQ88DC7E04AQK5YT' where id=1; -update noar tt set v0='AVEXP37LCH6NUYO' where id=1; -update noar ti set v0='AVEXP37LCH6NUYO' where id=1; -update noar tt set b1='LZIIS4V6XZV1UO3K99' where id=1; -update noar ti set b1='LZIIS4V6XZV1UO3K99' where id=1; -update noar tt set v0='WI21TIKKAAFGPNFWWMY7NE7U1QM' where id=1; -update noar ti set v0='WI21TIKKAAFGPNFWWMY7NE7U1QM' where id=1; -update noar tt set b2='CRLUDYC9IY8RAZN92VNV' where id=1; -update noar ti set b2='CRLUDYC9IY8RAZN92VNV' where id=1; -update noar tt set v0='AZPAWHEZIVRCI' where id=2; -update noar ti set v0='AZPAWHEZIVRCI' where id=2; -update noar tt set b0='GPHBYSOBEO8338JF8JRMSFRH3' where id=2; -update noar ti set b0='GPHBYSOBEO8338JF8JRMSFRH3' where id=2; -update noar tt set v0='PRX4G3CGU33QXL4D8GMZK4QRTL6' where id=2; -update noar ti set v0='PRX4G3CGU33QXL4D8GMZK4QRTL6' where id=2; -update noar tt set b1='771QV07PW9H6DHVT8NTGJ' where id=2; -update noar ti set b1='771QV07PW9H6DHVT8NTGJ' where id=2; -update noar tt set v0='HMN' where id=2; -update noar ti set v0='HMN' where id=2; -update noar tt set b2='H' where id=2; -update noar ti set b2='H' where id=2; -update noar tt set v0='QT8AHVEEUY4YE3QP' where id=3; -update noar ti set v0='QT8AHVEEUY4YE3QP' where id=3; -update noar tt set b0='G2K48C04S83TCEKYVOV33JVRBGP9AH' where id=3; -update noar ti set b0='G2K48C04S83TCEKYVOV33JVRBGP9AH' where id=3; -update noar tt set v0='K28L41LNI3UNDERFG6F' where id=3; -update noar ti set v0='K28L41LNI3UNDERFG6F' where id=3; -update noar tt set b1='OMTGMTL6BAPFNJM7165SRWZ4A5QIWZM' where id=3; -update noar ti set b1='OMTGMTL6BAPFNJM7165SRWZ4A5QIWZM' where id=3; -update noar tt set v0='ZW9Y8TJU554E32P' where id=3; -update noar ti set v0='ZW9Y8TJU554E32P' where id=3; -update noar tt set b2='V1GVNA2OS8Q2OVJ8CCA6VS5ROQIQ' where id=3; -update noar ti set b2='V1GVNA2OS8Q2OVJ8CCA6VS5ROQIQ' where id=3; -update noar tt set v0='ECN55GSELF1JY' where id=4; -update noar ti set v0='ECN55GSELF1JY' where id=4; -update noar tt set b0='S1' where id=4; -update noar ti set b0='S1' where id=4; -update noar tt set v0='SDK17N5IEDSK8ZNJ5W6D' where id=4; -update noar ti set v0='SDK17N5IEDSK8ZNJ5W6D' where id=4; -update noar tt set b1='WZPKFLC302AROII0' where id=4; -update noar ti set b1='WZPKFLC302AROII0' where id=4; -update noar tt set v0='UOET36' where id=4; -update noar ti set v0='UOET36' where id=4; -update noar tt set b2='TZGTB267C9XCOUM32REXAZE' where id=4; -update noar ti set b2='TZGTB267C9XCOUM32REXAZE' where id=4; -update noar tt set v0='6F9RNV2E6OZ2RJZOX4GRM0JM21HSBGZR' where id=5; -update noar ti set v0='6F9RNV2E6OZ2RJZOX4GRM0JM21HSBGZR' where id=5; -update noar tt set b0='BYMXMSQO5T71VS317HR3T' where id=5; -update noar ti set b0='BYMXMSQO5T71VS317HR3T' where id=5; -update noar tt set v0='9YTTI1EMLUHC0VFC01' where id=5; -update noar ti set v0='9YTTI1EMLUHC0VFC01' where id=5; -update noar tt set b1='B767P9QSSTG3XZPYHM77DB6BXECBRHLK' where id=5; -update noar ti set b1='B767P9QSSTG3XZPYHM77DB6BXECBRHLK' where id=5; -update noar tt set v0='O7KGCHNOX9N' where id=5; -update noar ti set v0='O7KGCHNOX9N' where id=5; -update noar tt set b2='PU8' where id=5; -update noar ti set b2='PU8' where id=5; -update noar tt set v0='HYSOHU' where id=6; -update noar ti set v0='HYSOHU' where id=6; -update noar tt set b0='4OIVYTCHV' where id=6; -update noar ti set b0='4OIVYTCHV' where id=6; -update noar tt set v0='VC8RXP3MN15O10QZ4VZOHUN3PNO' where id=6; -update noar ti set v0='VC8RXP3MN15O10QZ4VZOHUN3PNO' where id=6; -update noar tt set b1='HS9TLI0SS4GLH9HJE3MBBWRCFO1' where id=6; -update noar ti set b1='HS9TLI0SS4GLH9HJE3MBBWRCFO1' where id=6; -update noar tt set v0='T6570PPLMITPCPD' where id=6; -update noar ti set v0='T6570PPLMITPCPD' where id=6; -update noar tt set b2='D76S0N5AI7XIID6T1ASG8NTWP92S' where id=6; -update noar ti set b2='D76S0N5AI7XIID6T1ASG8NTWP92S' where id=6; -update noar tt set v0='IANCRZHUB31M4R4VGA' where id=7; -update noar ti set v0='IANCRZHUB31M4R4VGA' where id=7; -update noar tt set b0='961A1S' where id=7; -update noar ti set b0='961A1S' where id=7; -update noar tt set v0='MU21O5VHGYC4RL3MJ8EZ' where id=7; -update noar ti set v0='MU21O5VHGYC4RL3MJ8EZ' where id=7; -update noar tt set b1='OS7M7QJLG5TUQ4MOMBJ' where id=7; -update noar ti set b1='OS7M7QJLG5TUQ4MOMBJ' where id=7; -update noar tt set v0='UY' where id=7; -update noar ti set v0='UY' where id=7; -update noar tt set b2='JRK9MJ752JTPUKMZZQPF6' where id=7; -update noar ti set b2='JRK9MJ752JTPUKMZZQPF6' where id=7; -update noar tt set v0='D0KT' where id=8; -update noar ti set v0='D0KT' where id=8; -update noar tt set b0='A7LAQ6U07Q92OP0UTB2HSZ84F50R' where id=8; -update noar ti set b0='A7LAQ6U07Q92OP0UTB2HSZ84F50R' where id=8; -update noar tt set v0='CV5OY830BXQQXL95JDX3' where id=8; -update noar ti set v0='CV5OY830BXQQXL95JDX3' where id=8; -update noar tt set b1='1ZNFCTS3C2M' where id=8; -update noar ti set b1='1ZNFCTS3C2M' where id=8; -update noar tt set v0='2M5XH8SUK' where id=8; -update noar ti set v0='2M5XH8SUK' where id=8; -update noar tt set b2='5B335GUE2CA65AO8' where id=8; -update noar ti set b2='5B335GUE2CA65AO8' where id=8; -update noar tt set v0='UKR7HGQ' where id=9; -update noar ti set v0='UKR7HGQ' where id=9; -update noar tt set b0='VQH8ONUT7REUY2UF4RZT2HE3IZ5OXS94' where id=9; -update noar ti set b0='VQH8ONUT7REUY2UF4RZT2HE3IZ5OXS94' where id=9; -update noar tt set v0='1ZGID7OWPXRUNPMTLAVB' where id=9; -update noar ti set v0='1ZGID7OWPXRUNPMTLAVB' where id=9; -update noar tt set b1='3736ZBEFFYM1VB4ONERO' where id=9; -update noar ti set b1='3736ZBEFFYM1VB4ONERO' where id=9; -update noar tt set v0='DM41BH75U' where id=9; -update noar ti set v0='DM41BH75U' where id=9; -update noar tt set b2='Y4KONN4LCCDPL6TO8D20ZIPQ8OXBNFZ' where id=9; -update noar ti set b2='Y4KONN4LCCDPL6TO8D20ZIPQ8OXBNFZ' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - v0 varchar(32) not null, - b0 mediumblob not null, - b1 longblob not null, - b2 longblob not null -) engine=tokudb; -insert into tt values (1,'','','',''); -insert into tt values (2,'','','',''); -insert into tt values (3,'','','',''); -insert into tt values (4,'','','',''); -insert into tt values (5,'','','',''); -insert into tt values (6,'','','',''); -insert into tt values (7,'','','',''); -insert into tt values (8,'','','',''); -insert into tt values (9,'','','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='P9754ISX9ROQI08URN1' where id=1; -update noar ti set v0='P9754ISX9ROQI08URN1' where id=1; -update noar tt set b0='4BBTZ86HNXI6XSDIN2L' where id=1; -update noar ti set b0='4BBTZ86HNXI6XSDIN2L' where id=1; -update noar tt set v0='0RAT02RZ4IKOB3' where id=1; -update noar ti set v0='0RAT02RZ4IKOB3' where id=1; -update noar tt set b1='16XK' where id=1; -update noar ti set b1='16XK' where id=1; -update noar tt set v0='N3FG8WXXK6N17UHB8ZM285U' where id=1; -update noar ti set v0='N3FG8WXXK6N17UHB8ZM285U' where id=1; -update noar tt set b2='RMYJW6GIOKWPWN4UAEIDC' where id=1; -update noar ti set b2='RMYJW6GIOKWPWN4UAEIDC' where id=1; -update noar tt set v0='PX91W0OI4F' where id=2; -update noar ti set v0='PX91W0OI4F' where id=2; -update noar tt set b0='A78080RH6BZE5X1J8QU9H49YHAZV' where id=2; -update noar ti set b0='A78080RH6BZE5X1J8QU9H49YHAZV' where id=2; -update noar tt set v0='JOPIZFWL0ZLP7FC2RL1013B0' where id=2; -update noar ti set v0='JOPIZFWL0ZLP7FC2RL1013B0' where id=2; -update noar tt set b1='VAGWTRWGIL2' where id=2; -update noar ti set b1='VAGWTRWGIL2' where id=2; -update noar tt set v0='M2XRI5T8YS4Q0TX0YG' where id=2; -update noar ti set v0='M2XRI5T8YS4Q0TX0YG' where id=2; -update noar tt set b2='YSPL89LJE0PAFXNTZZJ5W6T7O' where id=2; -update noar ti set b2='YSPL89LJE0PAFXNTZZJ5W6T7O' where id=2; -update noar tt set v0='12MMIH2CKX1UBVRQ6DEQBIB7FYTSV' where id=3; -update noar ti set v0='12MMIH2CKX1UBVRQ6DEQBIB7FYTSV' where id=3; -update noar tt set b0='CZG1U8EELR1Y6' where id=3; -update noar ti set b0='CZG1U8EELR1Y6' where id=3; -update noar tt set v0='MU0D0R9BZPUNTILNCLIN2M700H0XM' where id=3; -update noar ti set v0='MU0D0R9BZPUNTILNCLIN2M700H0XM' where id=3; -update noar tt set b1='F3QL0ELJ7MER7TT8O4YZ8H' where id=3; -update noar ti set b1='F3QL0ELJ7MER7TT8O4YZ8H' where id=3; -update noar tt set v0='QXPFZV' where id=3; -update noar ti set v0='QXPFZV' where id=3; -update noar tt set b2='AC59PD1PD15SH' where id=3; -update noar ti set b2='AC59PD1PD15SH' where id=3; -update noar tt set v0='YGOAL6EI4F92QMOXSEF4FANMVAKW' where id=4; -update noar ti set v0='YGOAL6EI4F92QMOXSEF4FANMVAKW' where id=4; -update noar tt set b0='3XQDDPCX2WB0MI5KSMK1N7CR3ZA2' where id=4; -update noar ti set b0='3XQDDPCX2WB0MI5KSMK1N7CR3ZA2' where id=4; -update noar tt set v0='GRSIW0UA9UNZ6XW28VYOIVWLS' where id=4; -update noar ti set v0='GRSIW0UA9UNZ6XW28VYOIVWLS' where id=4; -update noar tt set b1='4CWUPLJD9JIO8HN' where id=4; -update noar ti set b1='4CWUPLJD9JIO8HN' where id=4; -update noar tt set v0='H4OD1RGACNC5LBU6ULY0PGPGBCZ' where id=4; -update noar ti set v0='H4OD1RGACNC5LBU6ULY0PGPGBCZ' where id=4; -update noar tt set b2='HRE87PTZXG' where id=4; -update noar ti set b2='HRE87PTZXG' where id=4; -update noar tt set v0='0258P3I2M5' where id=5; -update noar ti set v0='0258P3I2M5' where id=5; -update noar tt set b0='1DKFW0MKOBZY30ACA6192' where id=5; -update noar ti set b0='1DKFW0MKOBZY30ACA6192' where id=5; -update noar tt set v0='VM6BPD8GNB18FUCM1C0F6KORQSA5' where id=5; -update noar ti set v0='VM6BPD8GNB18FUCM1C0F6KORQSA5' where id=5; -update noar tt set b1='QS2ZSLW5NJJ799HX8' where id=5; -update noar ti set b1='QS2ZSLW5NJJ799HX8' where id=5; -update noar tt set v0='PV52H6MO' where id=5; -update noar ti set v0='PV52H6MO' where id=5; -update noar tt set b2='SR7G9PX66DF3LIZBY69CWT9B0MXAE' where id=5; -update noar ti set b2='SR7G9PX66DF3LIZBY69CWT9B0MXAE' where id=5; -update noar tt set v0='M3BJN377JMRFQS5AY' where id=6; -update noar ti set v0='M3BJN377JMRFQS5AY' where id=6; -update noar tt set b0='GSZB' where id=6; -update noar ti set b0='GSZB' where id=6; -update noar tt set v0='IRUI2NWN1RDT171EA4' where id=6; -update noar ti set v0='IRUI2NWN1RDT171EA4' where id=6; -update noar tt set b1='OFVG79YD4PYDE3T' where id=6; -update noar ti set b1='OFVG79YD4PYDE3T' where id=6; -update noar tt set v0='EDZCEV5MSY1J' where id=6; -update noar ti set v0='EDZCEV5MSY1J' where id=6; -update noar tt set b2='2J6DCPASNBWD3TC7A12ZK022CIZ8A' where id=6; -update noar ti set b2='2J6DCPASNBWD3TC7A12ZK022CIZ8A' where id=6; -update noar tt set v0='79XDYIF9M49T4S25PQ6RBDSQ8' where id=7; -update noar ti set v0='79XDYIF9M49T4S25PQ6RBDSQ8' where id=7; -update noar tt set b0='Y7D49VAUV8' where id=7; -update noar ti set b0='Y7D49VAUV8' where id=7; -update noar tt set v0='CNQBLJAIRXCF37D4ZJ2VYRK1L' where id=7; -update noar ti set v0='CNQBLJAIRXCF37D4ZJ2VYRK1L' where id=7; -update noar tt set b1='8LQ2' where id=7; -update noar ti set b1='8LQ2' where id=7; -update noar tt set v0='CSHU3BW8EAH3B' where id=7; -update noar ti set v0='CSHU3BW8EAH3B' where id=7; -update noar tt set b2='XSLTUBDNBOPI5TLHVC8N1R9ALD22' where id=7; -update noar ti set b2='XSLTUBDNBOPI5TLHVC8N1R9ALD22' where id=7; -update noar tt set v0='7GX' where id=8; -update noar ti set v0='7GX' where id=8; -update noar tt set b0='GX20R0WSGFZLWVHJNTZK61QF8CUH4XXL' where id=8; -update noar ti set b0='GX20R0WSGFZLWVHJNTZK61QF8CUH4XXL' where id=8; -update noar tt set v0='6RFA36W' where id=8; -update noar ti set v0='6RFA36W' where id=8; -update noar tt set b1='DWEGGV3R14Q9NB3ZFJO9CQS2OKWI' where id=8; -update noar ti set b1='DWEGGV3R14Q9NB3ZFJO9CQS2OKWI' where id=8; -update noar tt set v0='BFPY09E4SPIBG09GDUPR7EI1FMM' where id=8; -update noar ti set v0='BFPY09E4SPIBG09GDUPR7EI1FMM' where id=8; -update noar tt set b2='YA8ODNAS2PQ6KE6TTBW65B' where id=8; -update noar ti set b2='YA8ODNAS2PQ6KE6TTBW65B' where id=8; -update noar tt set v0='YX77DNRPZ6ZSIZVFKM' where id=9; -update noar ti set v0='YX77DNRPZ6ZSIZVFKM' where id=9; -update noar tt set b0='IAOV80TPE' where id=9; -update noar ti set b0='IAOV80TPE' where id=9; -update noar tt set v0='VVI4660KTG2O8LX7IVON3SABIW4NMS' where id=9; -update noar ti set v0='VVI4660KTG2O8LX7IVON3SABIW4NMS' where id=9; -update noar tt set b1='SEDK8F56J9UAP3X0LTSCIVUK' where id=9; -update noar ti set b1='SEDK8F56J9UAP3X0LTSCIVUK' where id=9; -update noar tt set v0='P04MRK1G7' where id=9; -update noar ti set v0='P04MRK1G7' where id=9; -update noar tt set b2='TKGH91K6OT2AE9M9TLL3GLR7BF' where id=9; -update noar ti set b2='TKGH91K6OT2AE9M9TLL3GLR7BF' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - v0 varchar(256) not null, - b0 mediumblob not null, - b1 longblob not null, - b2 longblob not null -) engine=tokudb; -insert into tt values (1,'','','',''); -insert into tt values (2,'','','',''); -insert into tt values (3,'','','',''); -insert into tt values (4,'','','',''); -insert into tt values (5,'','','',''); -insert into tt values (6,'','','',''); -insert into tt values (7,'','','',''); -insert into tt values (8,'','','',''); -insert into tt values (9,'','','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='T1274APIHBBP4B2U2L21ZU2XXZA' where id=1; -update noar ti set v0='T1274APIHBBP4B2U2L21ZU2XXZA' where id=1; -update noar tt set b0='R6BNDO36V0ZVP1I831RG24MHUVWMC' where id=1; -update noar ti set b0='R6BNDO36V0ZVP1I831RG24MHUVWMC' where id=1; -update noar tt set v0='WNYH9PHZ02C9D9UM' where id=1; -update noar ti set v0='WNYH9PHZ02C9D9UM' where id=1; -update noar tt set b1='YFF' where id=1; -update noar ti set b1='YFF' where id=1; -update noar tt set v0='Y4XZ5P3G0PLCD3LEA87A28LTLN1E' where id=1; -update noar ti set v0='Y4XZ5P3G0PLCD3LEA87A28LTLN1E' where id=1; -update noar tt set b2='5JTLME485' where id=1; -update noar ti set b2='5JTLME485' where id=1; -update noar tt set v0='F4RJXJX7WIE5Y3' where id=2; -update noar ti set v0='F4RJXJX7WIE5Y3' where id=2; -update noar tt set b0='7NFHZU1NN' where id=2; -update noar ti set b0='7NFHZU1NN' where id=2; -update noar tt set v0='NTIE5DW1F28WSMZ7D30W' where id=2; -update noar ti set v0='NTIE5DW1F28WSMZ7D30W' where id=2; -update noar tt set b1='QMPFBZASME' where id=2; -update noar ti set b1='QMPFBZASME' where id=2; -update noar tt set v0='NG' where id=2; -update noar ti set v0='NG' where id=2; -update noar tt set b2='AGVRQ4GV38JE1' where id=2; -update noar ti set b2='AGVRQ4GV38JE1' where id=2; -update noar tt set v0='39UE1TEX2BA442N' where id=3; -update noar ti set v0='39UE1TEX2BA442N' where id=3; -update noar tt set b0='BE5GLXPCCAY81DFMFC06J4CFYC6VZK8W' where id=3; -update noar ti set b0='BE5GLXPCCAY81DFMFC06J4CFYC6VZK8W' where id=3; -update noar tt set v0='IKC944DZARP9DH' where id=3; -update noar ti set v0='IKC944DZARP9DH' where id=3; -update noar tt set b1='SQ5USLL10UIV14OZUJ3A8VBZN12Q3DS' where id=3; -update noar ti set b1='SQ5USLL10UIV14OZUJ3A8VBZN12Q3DS' where id=3; -update noar tt set v0='I0T6NPLXDMGWZJVS' where id=3; -update noar ti set v0='I0T6NPLXDMGWZJVS' where id=3; -update noar tt set b2='EE7O0QXJ' where id=3; -update noar ti set b2='EE7O0QXJ' where id=3; -update noar tt set v0='LDBP8T5IE3XVV8QV402F9TK0O' where id=4; -update noar ti set v0='LDBP8T5IE3XVV8QV402F9TK0O' where id=4; -update noar tt set b0='HCJXTNPL0UTX' where id=4; -update noar ti set b0='HCJXTNPL0UTX' where id=4; -update noar tt set v0='LX4O8' where id=4; -update noar ti set v0='LX4O8' where id=4; -update noar tt set b1='55Z2H7JJ' where id=4; -update noar ti set b1='55Z2H7JJ' where id=4; -update noar tt set v0='KABNXA8VZTK1OF4R8TWOM6IWX7A26CU' where id=4; -update noar ti set v0='KABNXA8VZTK1OF4R8TWOM6IWX7A26CU' where id=4; -update noar tt set b2='7QF43' where id=4; -update noar ti set b2='7QF43' where id=4; -update noar tt set v0='1M0EUUZ8S3ET2' where id=5; -update noar ti set v0='1M0EUUZ8S3ET2' where id=5; -update noar tt set b0='SQWBIH0E90M43R' where id=5; -update noar ti set b0='SQWBIH0E90M43R' where id=5; -update noar tt set v0='J1597GUSZZWOPU6D3RCIO' where id=5; -update noar ti set v0='J1597GUSZZWOPU6D3RCIO' where id=5; -update noar tt set b1='C' where id=5; -update noar ti set b1='C' where id=5; -update noar tt set v0='8UPD193X9P12KGKN179' where id=5; -update noar ti set v0='8UPD193X9P12KGKN179' where id=5; -update noar tt set b2='BQLC431LDK4GTLN93' where id=5; -update noar ti set b2='BQLC431LDK4GTLN93' where id=5; -update noar tt set v0='FKIRPWPEAGN0XNHINS9' where id=6; -update noar ti set v0='FKIRPWPEAGN0XNHINS9' where id=6; -update noar tt set b0='W' where id=6; -update noar ti set b0='W' where id=6; -update noar tt set v0='C26NC9B0X68XYH' where id=6; -update noar ti set v0='C26NC9B0X68XYH' where id=6; -update noar tt set b1='PBV8MRYF3DX5P' where id=6; -update noar ti set b1='PBV8MRYF3DX5P' where id=6; -update noar tt set v0='IZ9RL24Z9631QT7KJJHYMM1S6LB8' where id=6; -update noar ti set v0='IZ9RL24Z9631QT7KJJHYMM1S6LB8' where id=6; -update noar tt set b2='95UQDOGLDG2O6I8SF2' where id=6; -update noar ti set b2='95UQDOGLDG2O6I8SF2' where id=6; -update noar tt set v0='MAOMFDRT' where id=7; -update noar ti set v0='MAOMFDRT' where id=7; -update noar tt set b0='1LPNHX3MNGOWKAML0OKK63IBV6M0' where id=7; -update noar ti set b0='1LPNHX3MNGOWKAML0OKK63IBV6M0' where id=7; -update noar tt set v0='HEAT2I13KB6PGO4090CRT0MA0DOIXZ' where id=7; -update noar ti set v0='HEAT2I13KB6PGO4090CRT0MA0DOIXZ' where id=7; -update noar tt set b1='9H9VRMA0NPBOZ' where id=7; -update noar ti set b1='9H9VRMA0NPBOZ' where id=7; -update noar tt set v0='T' where id=7; -update noar ti set v0='T' where id=7; -update noar tt set b2='SD6EPVYZIXSBI5EMCTZQK060ZMF' where id=7; -update noar ti set b2='SD6EPVYZIXSBI5EMCTZQK060ZMF' where id=7; -update noar tt set v0='3FS8KW7FSUW' where id=8; -update noar ti set v0='3FS8KW7FSUW' where id=8; -update noar tt set b0='CHDAHU0DRI6' where id=8; -update noar ti set b0='CHDAHU0DRI6' where id=8; -update noar tt set v0='12R217A2EXCSOD9UA' where id=8; -update noar ti set v0='12R217A2EXCSOD9UA' where id=8; -update noar tt set b1='57U9SRYFJ3J0258A1Q4BEELYQX9' where id=8; -update noar ti set b1='57U9SRYFJ3J0258A1Q4BEELYQX9' where id=8; -update noar tt set v0='7' where id=8; -update noar ti set v0='7' where id=8; -update noar tt set b2='0T055ZOMZ5QJ5' where id=8; -update noar ti set b2='0T055ZOMZ5QJ5' where id=8; -update noar tt set v0='UAH0JHN6PG0RJ3' where id=9; -update noar ti set v0='UAH0JHN6PG0RJ3' where id=9; -update noar tt set b0='S3' where id=9; -update noar ti set b0='S3' where id=9; -update noar tt set v0='2C0F5F1ZHPV1' where id=9; -update noar ti set v0='2C0F5F1ZHPV1' where id=9; -update noar tt set b1='A1GVONA281EGWFOJP2UB' where id=9; -update noar ti set b1='A1GVONA281EGWFOJP2UB' where id=9; -update noar tt set v0='0VQOMMO9' where id=9; -update noar ti set v0='0VQOMMO9' where id=9; -update noar tt set b2='IXITT8D1SLMKFJYPGD3ZXTD4B5G' where id=9; -update noar ti set b2='IXITT8D1SLMKFJYPGD3ZXTD4B5G' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - v0 varchar(32) null, - b0 longblob null, - b1 tinyblob null, - b2 tinyblob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='CR1XGA' where id=1; -update noar ti set v0='CR1XGA' where id=1; -update noar tt set b0='E8' where id=1; -update noar ti set b0='E8' where id=1; -update noar tt set v0='L1NASIKWECW0CCXXCW5HTIE5FL' where id=1; -update noar ti set v0='L1NASIKWECW0CCXXCW5HTIE5FL' where id=1; -update noar tt set b1='WP66DCCBAFZGOXMV8JMSUUVC3TK' where id=1; -update noar ti set b1='WP66DCCBAFZGOXMV8JMSUUVC3TK' where id=1; -update noar tt set v0='EIDQ6N74ADVELZPASLV0I07LN' where id=1; -update noar ti set v0='EIDQ6N74ADVELZPASLV0I07LN' where id=1; -update noar tt set b2='5IK7YPSDFZWNU' where id=1; -update noar ti set b2='5IK7YPSDFZWNU' where id=1; -update noar tt set v0='HJUNFY' where id=2; -update noar ti set v0='HJUNFY' where id=2; -update noar tt set b0='2III2HXL24GFAOFU8BU' where id=2; -update noar ti set b0='2III2HXL24GFAOFU8BU' where id=2; -update noar tt set v0='5X7O6USCXDLGP889HBX5ZR6' where id=2; -update noar ti set v0='5X7O6USCXDLGP889HBX5ZR6' where id=2; -update noar tt set b1='9YN' where id=2; -update noar ti set b1='9YN' where id=2; -update noar tt set v0='ZAQ3FXYRY2REPXK9UL90F' where id=2; -update noar ti set v0='ZAQ3FXYRY2REPXK9UL90F' where id=2; -update noar tt set b2='JB088Y0DUU' where id=2; -update noar ti set b2='JB088Y0DUU' where id=2; -update noar tt set v0='O2BFIR1CB5K2OPX7NYFBYS14' where id=3; -update noar ti set v0='O2BFIR1CB5K2OPX7NYFBYS14' where id=3; -update noar tt set b0='TAX0AS3BOFYRPZXQR7M7C0C3' where id=3; -update noar ti set b0='TAX0AS3BOFYRPZXQR7M7C0C3' where id=3; -update noar tt set v0='JTBORLWDTO36AQL' where id=3; -update noar ti set v0='JTBORLWDTO36AQL' where id=3; -update noar tt set b1='R72OPFWSIBYXJYBKTVKVSG1UVVV0' where id=3; -update noar ti set b1='R72OPFWSIBYXJYBKTVKVSG1UVVV0' where id=3; -update noar tt set v0='QB9VYA8BV6NOMEJAYN36B' where id=3; -update noar ti set v0='QB9VYA8BV6NOMEJAYN36B' where id=3; -update noar tt set b2='KTL0HUCN0M' where id=3; -update noar ti set b2='KTL0HUCN0M' where id=3; -update noar tt set v0='AH1Q0TTRBLLKSHIIGHM2UC' where id=4; -update noar ti set v0='AH1Q0TTRBLLKSHIIGHM2UC' where id=4; -update noar tt set b0='Z259P259Z9UV' where id=4; -update noar ti set b0='Z259P259Z9UV' where id=4; -update noar tt set v0='CSN6QCX27GZHGJ111TR6G0FU4EM' where id=4; -update noar ti set v0='CSN6QCX27GZHGJ111TR6G0FU4EM' where id=4; -update noar tt set b1='7' where id=4; -update noar ti set b1='7' where id=4; -update noar tt set v0='4H3J8TO' where id=4; -update noar ti set v0='4H3J8TO' where id=4; -update noar tt set b2='XY8BF07UKW773O' where id=4; -update noar ti set b2='XY8BF07UKW773O' where id=4; -update noar tt set v0='MYD7B92M4U5PJ5F2XR8LEASE062MSB91' where id=5; -update noar ti set v0='MYD7B92M4U5PJ5F2XR8LEASE062MSB91' where id=5; -update noar tt set b0='R' where id=5; -update noar ti set b0='R' where id=5; -update noar tt set v0='GY1MJUTPI8B71YQK45QXA1' where id=5; -update noar ti set v0='GY1MJUTPI8B71YQK45QXA1' where id=5; -update noar tt set b1='7WP725AY1O147HHK372S61B' where id=5; -update noar ti set b1='7WP725AY1O147HHK372S61B' where id=5; -update noar tt set v0='RIHTML9TVADI6KCUL4U7DRW' where id=5; -update noar ti set v0='RIHTML9TVADI6KCUL4U7DRW' where id=5; -update noar tt set b2='O2HSARPHHL4' where id=5; -update noar ti set b2='O2HSARPHHL4' where id=5; -update noar tt set v0='RGU6JH5' where id=6; -update noar ti set v0='RGU6JH5' where id=6; -update noar tt set b0='ESRK7RRGVRJTXMJE78AHPTLE4WP62DM' where id=6; -update noar ti set b0='ESRK7RRGVRJTXMJE78AHPTLE4WP62DM' where id=6; -update noar tt set v0='O7GOV5G5SHGFWMNNHDC0JVQ2IT1L7' where id=6; -update noar ti set v0='O7GOV5G5SHGFWMNNHDC0JVQ2IT1L7' where id=6; -update noar tt set b1='SMKZZS0I504FDLODZTHTZMCJDR9XP1' where id=6; -update noar ti set b1='SMKZZS0I504FDLODZTHTZMCJDR9XP1' where id=6; -update noar tt set v0='G7ZSSFMBDVU8EOYSEHKBY' where id=6; -update noar ti set v0='G7ZSSFMBDVU8EOYSEHKBY' where id=6; -update noar tt set b2='LNJJO33NMF9I9Z65NPKZC1NCHIEI38' where id=6; -update noar ti set b2='LNJJO33NMF9I9Z65NPKZC1NCHIEI38' where id=6; -update noar tt set v0='CA3L4IG8' where id=7; -update noar ti set v0='CA3L4IG8' where id=7; -update noar tt set b0='7AZ' where id=7; -update noar ti set b0='7AZ' where id=7; -update noar tt set v0='C49AL32LNCVW' where id=7; -update noar ti set v0='C49AL32LNCVW' where id=7; -update noar tt set b1='XAC495IV7WSC2CBIYYYOG0' where id=7; -update noar ti set b1='XAC495IV7WSC2CBIYYYOG0' where id=7; -update noar tt set v0='UC6RTUBJMLOF2IZ' where id=7; -update noar ti set v0='UC6RTUBJMLOF2IZ' where id=7; -update noar tt set b2='MJJUH66554ZN6N3B18PU4XOZX9ETF2M' where id=7; -update noar ti set b2='MJJUH66554ZN6N3B18PU4XOZX9ETF2M' where id=7; -update noar tt set v0='92W81S36LCQ' where id=8; -update noar ti set v0='92W81S36LCQ' where id=8; -update noar tt set b0='QUHA43D9RK73B0N7JSYZ6WDWGZLK' where id=8; -update noar ti set b0='QUHA43D9RK73B0N7JSYZ6WDWGZLK' where id=8; -update noar tt set v0='CDCMSQ' where id=8; -update noar ti set v0='CDCMSQ' where id=8; -update noar tt set b1='FW1S1MMI' where id=8; -update noar ti set b1='FW1S1MMI' where id=8; -update noar tt set v0='9IY1JC' where id=8; -update noar ti set v0='9IY1JC' where id=8; -update noar tt set b2='D3YYVPJW7ATCDEVU2NAXWLRFOY7N' where id=8; -update noar ti set b2='D3YYVPJW7ATCDEVU2NAXWLRFOY7N' where id=8; -update noar tt set v0='7XDSX8FVQHCYZ7LF4DNFKRXJK3CY71US' where id=9; -update noar ti set v0='7XDSX8FVQHCYZ7LF4DNFKRXJK3CY71US' where id=9; -update noar tt set b0='GN9OJF' where id=9; -update noar ti set b0='GN9OJF' where id=9; -update noar tt set v0='I5UAABASIYUD53OHBD2CMT' where id=9; -update noar ti set v0='I5UAABASIYUD53OHBD2CMT' where id=9; -update noar tt set b1='3XE6IIEHMCI89BXWUPWZTF' where id=9; -update noar ti set b1='3XE6IIEHMCI89BXWUPWZTF' where id=9; -update noar tt set v0='PU37BK87C2F433FH697TA' where id=9; -update noar ti set v0='PU37BK87C2F433FH697TA' where id=9; -update noar tt set b2='3NAXFO3RIYZO77AJP1BM3W5FFAJM3C' where id=9; -update noar ti set b2='3NAXFO3RIYZO77AJP1BM3W5FFAJM3C' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - v0 varchar(256) null, - b0 longblob null, - b1 tinyblob null, - b2 tinyblob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='RTMTUTG8' where id=1; -update noar ti set v0='RTMTUTG8' where id=1; -update noar tt set b0='X7VE' where id=1; -update noar ti set b0='X7VE' where id=1; -update noar tt set v0='5SX0TV5E725' where id=1; -update noar ti set v0='5SX0TV5E725' where id=1; -update noar tt set b1='SBDCGTM5JXWJNPDVOGD9YRS' where id=1; -update noar ti set b1='SBDCGTM5JXWJNPDVOGD9YRS' where id=1; -update noar tt set v0='26KIJZIGNWIX7N26VYQNPX4KY1BJT' where id=1; -update noar ti set v0='26KIJZIGNWIX7N26VYQNPX4KY1BJT' where id=1; -update noar tt set b2='BU3QL18B5PTSX3G7ZY7K4QM' where id=1; -update noar ti set b2='BU3QL18B5PTSX3G7ZY7K4QM' where id=1; -update noar tt set v0='Z6M4I1H0MJJOPKP6SVHR1R93PTZQJW9' where id=2; -update noar ti set v0='Z6M4I1H0MJJOPKP6SVHR1R93PTZQJW9' where id=2; -update noar tt set b0='SXAD1J5K2MAVN9TERSE' where id=2; -update noar ti set b0='SXAD1J5K2MAVN9TERSE' where id=2; -update noar tt set v0='WZ7Q48Y4P' where id=2; -update noar ti set v0='WZ7Q48Y4P' where id=2; -update noar tt set b1='LPV8WVT6F63F6X1XQ13YA' where id=2; -update noar ti set b1='LPV8WVT6F63F6X1XQ13YA' where id=2; -update noar tt set v0='TA2X5W60R03HU2SCR1RPAJ41249C14E5' where id=2; -update noar ti set v0='TA2X5W60R03HU2SCR1RPAJ41249C14E5' where id=2; -update noar tt set b2='3Q6KCQO4QYANCNQG8SACQ7DR2' where id=2; -update noar ti set b2='3Q6KCQO4QYANCNQG8SACQ7DR2' where id=2; -update noar tt set v0='8' where id=3; -update noar ti set v0='8' where id=3; -update noar tt set b0='5Z1SST1CFQHJC76KNF9U1YIL9' where id=3; -update noar ti set b0='5Z1SST1CFQHJC76KNF9U1YIL9' where id=3; -update noar tt set v0='BXF8' where id=3; -update noar ti set v0='BXF8' where id=3; -update noar tt set b1='DT8CMO7WWANCVCLW0WSX7TDCHN99GP84' where id=3; -update noar ti set b1='DT8CMO7WWANCVCLW0WSX7TDCHN99GP84' where id=3; -update noar tt set v0='WDPU' where id=3; -update noar ti set v0='WDPU' where id=3; -update noar tt set b2='FB2LQXNAPVP6U8LHJDER' where id=3; -update noar ti set b2='FB2LQXNAPVP6U8LHJDER' where id=3; -update noar tt set v0='SK3PO1RAD' where id=4; -update noar ti set v0='SK3PO1RAD' where id=4; -update noar tt set b0='WGBK47FR56TAE758UOC8' where id=4; -update noar ti set b0='WGBK47FR56TAE758UOC8' where id=4; -update noar tt set v0='NV' where id=4; -update noar ti set v0='NV' where id=4; -update noar tt set b1='TY589HFE91KG' where id=4; -update noar ti set b1='TY589HFE91KG' where id=4; -update noar tt set v0='HYDK69ZP8TIW31LPWE7WL1N7SCPN' where id=4; -update noar ti set v0='HYDK69ZP8TIW31LPWE7WL1N7SCPN' where id=4; -update noar tt set b2='W' where id=4; -update noar ti set b2='W' where id=4; -update noar tt set v0='2O42O63C4TVZGN1VGYZQDA' where id=5; -update noar ti set v0='2O42O63C4TVZGN1VGYZQDA' where id=5; -update noar tt set b0='WTL4DSC6HHHAQJ504VFWXD9B' where id=5; -update noar ti set b0='WTL4DSC6HHHAQJ504VFWXD9B' where id=5; -update noar tt set v0='3TCWGRJR7RA4M951K93XK80E' where id=5; -update noar ti set v0='3TCWGRJR7RA4M951K93XK80E' where id=5; -update noar tt set b1='DHBXPUGDSVD4' where id=5; -update noar ti set b1='DHBXPUGDSVD4' where id=5; -update noar tt set v0='9W1F67VS4U3EMA7LP2IXUNYMW53WG' where id=5; -update noar ti set v0='9W1F67VS4U3EMA7LP2IXUNYMW53WG' where id=5; -update noar tt set b2='3VPY3IZ68J' where id=5; -update noar ti set b2='3VPY3IZ68J' where id=5; -update noar tt set v0='MF8SUTEEUHCF3MOH79PFV' where id=6; -update noar ti set v0='MF8SUTEEUHCF3MOH79PFV' where id=6; -update noar tt set b0='M9G887ULQV0XU' where id=6; -update noar ti set b0='M9G887ULQV0XU' where id=6; -update noar tt set v0='E5YXO1FFW5LTWWMHC3L' where id=6; -update noar ti set v0='E5YXO1FFW5LTWWMHC3L' where id=6; -update noar tt set b1='3MEXXTITVPX5R7IPZDDI' where id=6; -update noar ti set b1='3MEXXTITVPX5R7IPZDDI' where id=6; -update noar tt set v0='K5N' where id=6; -update noar ti set v0='K5N' where id=6; -update noar tt set b2='SCJBLZC3YGBKPK2GIYNQ4' where id=6; -update noar ti set b2='SCJBLZC3YGBKPK2GIYNQ4' where id=6; -update noar tt set v0='RQ0XBRUZTGWG5SPCXKJ2T7XR92' where id=7; -update noar ti set v0='RQ0XBRUZTGWG5SPCXKJ2T7XR92' where id=7; -update noar tt set b0='H2H2K5YIQZX9KP24EE8ENNPKU17WY' where id=7; -update noar ti set b0='H2H2K5YIQZX9KP24EE8ENNPKU17WY' where id=7; -update noar tt set v0='I3XNMPSMIM2LCMC' where id=7; -update noar ti set v0='I3XNMPSMIM2LCMC' where id=7; -update noar tt set b1='SBL2' where id=7; -update noar ti set b1='SBL2' where id=7; -update noar tt set v0='WDE6C9UGCJD' where id=7; -update noar ti set v0='WDE6C9UGCJD' where id=7; -update noar tt set b2='J8Q1C5BWYB7XAMVPX497Z5HCN91Y' where id=7; -update noar ti set b2='J8Q1C5BWYB7XAMVPX497Z5HCN91Y' where id=7; -update noar tt set v0='LTLKN6CVZEK1IKHAHYDMYNE6620ZPW5' where id=8; -update noar ti set v0='LTLKN6CVZEK1IKHAHYDMYNE6620ZPW5' where id=8; -update noar tt set b0='GI6KMXXT1JY54PN7M58AW2PN5JK6G' where id=8; -update noar ti set b0='GI6KMXXT1JY54PN7M58AW2PN5JK6G' where id=8; -update noar tt set v0='5X2N' where id=8; -update noar ti set v0='5X2N' where id=8; -update noar tt set b1='NHFYK9V8TZNPSTOPLHU98' where id=8; -update noar ti set b1='NHFYK9V8TZNPSTOPLHU98' where id=8; -update noar tt set v0='BQWXTLN620N7BY4VCM' where id=8; -update noar ti set v0='BQWXTLN620N7BY4VCM' where id=8; -update noar tt set b2='VYGGUA0EOP' where id=8; -update noar ti set b2='VYGGUA0EOP' where id=8; -update noar tt set v0='CDYYKNWYLSY1F9N0EDDJ6RS63ETV' where id=9; -update noar ti set v0='CDYYKNWYLSY1F9N0EDDJ6RS63ETV' where id=9; -update noar tt set b0='ZGPLEIP8X8YT4HQJCV4Y6JWLWYHD0S2S' where id=9; -update noar ti set b0='ZGPLEIP8X8YT4HQJCV4Y6JWLWYHD0S2S' where id=9; -update noar tt set v0='CT608GR265F4R91LJOQUXJY2A1OB2' where id=9; -update noar ti set v0='CT608GR265F4R91LJOQUXJY2A1OB2' where id=9; -update noar tt set b1='9AIYYZQ2W5VP2HB8FTAOIPGECU4CCS' where id=9; -update noar ti set b1='9AIYYZQ2W5VP2HB8FTAOIPGECU4CCS' where id=9; -update noar tt set v0='ET' where id=9; -update noar ti set v0='ET' where id=9; -update noar tt set b2='T8HOBUPHXNDI6T6QR2WKSE0DMUOE' where id=9; -update noar ti set b2='T8HOBUPHXNDI6T6QR2WKSE0DMUOE' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - v0 varchar(32) not null, - b0 longblob not null, - b1 tinyblob not null, - b2 tinyblob not null -) engine=tokudb; -insert into tt values (1,'','','',''); -insert into tt values (2,'','','',''); -insert into tt values (3,'','','',''); -insert into tt values (4,'','','',''); -insert into tt values (5,'','','',''); -insert into tt values (6,'','','',''); -insert into tt values (7,'','','',''); -insert into tt values (8,'','','',''); -insert into tt values (9,'','','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='JDZTWT75GK' where id=1; -update noar ti set v0='JDZTWT75GK' where id=1; -update noar tt set b0='JAN6LMJO9FYXI5WAGRN8KKXT' where id=1; -update noar ti set b0='JAN6LMJO9FYXI5WAGRN8KKXT' where id=1; -update noar tt set v0='EMG430PG6EH9PNRLV0RXW' where id=1; -update noar ti set v0='EMG430PG6EH9PNRLV0RXW' where id=1; -update noar tt set b1='DKZ9TYWDVXCT4J97T7L' where id=1; -update noar ti set b1='DKZ9TYWDVXCT4J97T7L' where id=1; -update noar tt set v0='8N94K60XISURNM49HE6' where id=1; -update noar ti set v0='8N94K60XISURNM49HE6' where id=1; -update noar tt set b2='8IGRG23FVMSLBMVDQKZ2LQCE' where id=1; -update noar ti set b2='8IGRG23FVMSLBMVDQKZ2LQCE' where id=1; -update noar tt set v0='ZSPMQAAPH89NCZU9BFW118MO0M' where id=2; -update noar ti set v0='ZSPMQAAPH89NCZU9BFW118MO0M' where id=2; -update noar tt set b0='UT' where id=2; -update noar ti set b0='UT' where id=2; -update noar tt set v0='BUX76QV0U6S0TKN0X75DJ' where id=2; -update noar ti set v0='BUX76QV0U6S0TKN0X75DJ' where id=2; -update noar tt set b1='SPC' where id=2; -update noar ti set b1='SPC' where id=2; -update noar tt set v0='VLK0JQYJ1WSZW3' where id=2; -update noar ti set v0='VLK0JQYJ1WSZW3' where id=2; -update noar tt set b2='JINEEUSGSR61P08RVB2ILZ0' where id=2; -update noar ti set b2='JINEEUSGSR61P08RVB2ILZ0' where id=2; -update noar tt set v0='1CXDB3DF4KXPDYSUGGOJXMNK7TNKHIE' where id=3; -update noar ti set v0='1CXDB3DF4KXPDYSUGGOJXMNK7TNKHIE' where id=3; -update noar tt set b0='WXJ5LSF4PQXP17K6XRGJ' where id=3; -update noar ti set b0='WXJ5LSF4PQXP17K6XRGJ' where id=3; -update noar tt set v0='NL55D8511QCFO0HSMAUKCHZ0CVG' where id=3; -update noar ti set v0='NL55D8511QCFO0HSMAUKCHZ0CVG' where id=3; -update noar tt set b1='M07QGB3AYF' where id=3; -update noar ti set b1='M07QGB3AYF' where id=3; -update noar tt set v0='I9Q5EZDTI3H2L8FLWTLUJ7SVXBS59N9' where id=3; -update noar ti set v0='I9Q5EZDTI3H2L8FLWTLUJ7SVXBS59N9' where id=3; -update noar tt set b2='2VQGZMRVFARPEJFKHI' where id=3; -update noar ti set b2='2VQGZMRVFARPEJFKHI' where id=3; -update noar tt set v0='ZLREW5MJM64' where id=4; -update noar ti set v0='ZLREW5MJM64' where id=4; -update noar tt set b0='XWAGF' where id=4; -update noar ti set b0='XWAGF' where id=4; -update noar tt set v0='8QSQO9369AC4' where id=4; -update noar ti set v0='8QSQO9369AC4' where id=4; -update noar tt set b1='LJGH2B5XK316GS5LO8UCXZSN07V9LW9X' where id=4; -update noar ti set b1='LJGH2B5XK316GS5LO8UCXZSN07V9LW9X' where id=4; -update noar tt set v0='WNS04K7Y4A93Y39J' where id=4; -update noar ti set v0='WNS04K7Y4A93Y39J' where id=4; -update noar tt set b2='3MB2F7LE4IVIAPWHQT0BVIR468J7T1NY' where id=4; -update noar ti set b2='3MB2F7LE4IVIAPWHQT0BVIR468J7T1NY' where id=4; -update noar tt set v0='JH8FPOKV5X8JMCAY' where id=5; -update noar ti set v0='JH8FPOKV5X8JMCAY' where id=5; -update noar tt set b0='SO4B3TBLXFPWM5RSTF9LOAO8U7DGIGDW' where id=5; -update noar ti set b0='SO4B3TBLXFPWM5RSTF9LOAO8U7DGIGDW' where id=5; -update noar tt set v0='L2GLQ9LDDFTQLXARKISRE3' where id=5; -update noar ti set v0='L2GLQ9LDDFTQLXARKISRE3' where id=5; -update noar tt set b1='EPPR17' where id=5; -update noar ti set b1='EPPR17' where id=5; -update noar tt set v0='BDZFW5LMD1FI4KVOS3' where id=5; -update noar ti set v0='BDZFW5LMD1FI4KVOS3' where id=5; -update noar tt set b2='WJD0PUENGA9H0' where id=5; -update noar ti set b2='WJD0PUENGA9H0' where id=5; -update noar tt set v0='TIJM7AJP' where id=6; -update noar ti set v0='TIJM7AJP' where id=6; -update noar tt set b0='JIBSVOPPL7XTFZBHNA' where id=6; -update noar ti set b0='JIBSVOPPL7XTFZBHNA' where id=6; -update noar tt set v0='53KEIE9064KHPLBFX939' where id=6; -update noar ti set v0='53KEIE9064KHPLBFX939' where id=6; -update noar tt set b1='G9JJ4JGJJLCY48NMAMWQRJ372V0N0' where id=6; -update noar ti set b1='G9JJ4JGJJLCY48NMAMWQRJ372V0N0' where id=6; -update noar tt set v0='XT6BU32Z' where id=6; -update noar ti set v0='XT6BU32Z' where id=6; -update noar tt set b2='08VCFYRT6VWA6LT' where id=6; -update noar ti set b2='08VCFYRT6VWA6LT' where id=6; -update noar tt set v0='E6W8FCMHOTFVA' where id=7; -update noar ti set v0='E6W8FCMHOTFVA' where id=7; -update noar tt set b0='NAX' where id=7; -update noar ti set b0='NAX' where id=7; -update noar tt set v0='V5RSUKWZZVGYU77QK7M4O2M' where id=7; -update noar ti set v0='V5RSUKWZZVGYU77QK7M4O2M' where id=7; -update noar tt set b1='1E' where id=7; -update noar ti set b1='1E' where id=7; -update noar tt set v0='WU5US9BV2161QYVAVIR8SOX4' where id=7; -update noar ti set v0='WU5US9BV2161QYVAVIR8SOX4' where id=7; -update noar tt set b2='547' where id=7; -update noar ti set b2='547' where id=7; -update noar tt set v0='DBPYKFTAI7ZOZFX24GGGULHKIHXCCEHZ' where id=8; -update noar ti set v0='DBPYKFTAI7ZOZFX24GGGULHKIHXCCEHZ' where id=8; -update noar tt set b0='9P22MJWBRALIQM34A5NPVG' where id=8; -update noar ti set b0='9P22MJWBRALIQM34A5NPVG' where id=8; -update noar tt set v0='IXNPII71VQ' where id=8; -update noar ti set v0='IXNPII71VQ' where id=8; -update noar tt set b1='10M7W6HBY0WOWSP6TZUROEDG0P5P' where id=8; -update noar ti set b1='10M7W6HBY0WOWSP6TZUROEDG0P5P' where id=8; -update noar tt set v0='R9H5XNWJMBZ' where id=8; -update noar ti set v0='R9H5XNWJMBZ' where id=8; -update noar tt set b2='D5BJV2Q9U1XNREU3Z8ENZW6G3Y4' where id=8; -update noar ti set b2='D5BJV2Q9U1XNREU3Z8ENZW6G3Y4' where id=8; -update noar tt set v0='F6QDB9GGTX5F11VGHUKZI' where id=9; -update noar ti set v0='F6QDB9GGTX5F11VGHUKZI' where id=9; -update noar tt set b0='C9JG9WQ9A15S4' where id=9; -update noar ti set b0='C9JG9WQ9A15S4' where id=9; -update noar tt set v0='JJ2JN7S5' where id=9; -update noar ti set v0='JJ2JN7S5' where id=9; -update noar tt set b1='UTBD5J5TZ0' where id=9; -update noar ti set b1='UTBD5J5TZ0' where id=9; -update noar tt set v0='Z696FKBSCT4N' where id=9; -update noar ti set v0='Z696FKBSCT4N' where id=9; -update noar tt set b2='X02OHHSTWDB' where id=9; -update noar ti set b2='X02OHHSTWDB' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - v0 varchar(256) not null, - b0 longblob not null, - b1 tinyblob not null, - b2 tinyblob not null -) engine=tokudb; -insert into tt values (1,'','','',''); -insert into tt values (2,'','','',''); -insert into tt values (3,'','','',''); -insert into tt values (4,'','','',''); -insert into tt values (5,'','','',''); -insert into tt values (6,'','','',''); -insert into tt values (7,'','','',''); -insert into tt values (8,'','','',''); -insert into tt values (9,'','','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='V8ET1B6MD0V383' where id=1; -update noar ti set v0='V8ET1B6MD0V383' where id=1; -update noar tt set b0='C63Q2NL3TX' where id=1; -update noar ti set b0='C63Q2NL3TX' where id=1; -update noar tt set v0='HBM69BKQFXB7WI4VDLV6K8MBND8RU' where id=1; -update noar ti set v0='HBM69BKQFXB7WI4VDLV6K8MBND8RU' where id=1; -update noar tt set b1='3N' where id=1; -update noar ti set b1='3N' where id=1; -update noar tt set v0='GRMMJT3PN2JWE9QZOA8D8' where id=1; -update noar ti set v0='GRMMJT3PN2JWE9QZOA8D8' where id=1; -update noar tt set b2='R9I9GZIZQ3YH0O8X' where id=1; -update noar ti set b2='R9I9GZIZQ3YH0O8X' where id=1; -update noar tt set v0='ZHP22TVL4HZWLMLDDLR7KAK3W0NF45W' where id=2; -update noar ti set v0='ZHP22TVL4HZWLMLDDLR7KAK3W0NF45W' where id=2; -update noar tt set b0='XGB0O43GM55EO9IW4' where id=2; -update noar ti set b0='XGB0O43GM55EO9IW4' where id=2; -update noar tt set v0='XHA1PKD29B1I90O6EWS9C' where id=2; -update noar ti set v0='XHA1PKD29B1I90O6EWS9C' where id=2; -update noar tt set b1='6UZM7NZCRON0J1PIVBUVSLNQQJ' where id=2; -update noar ti set b1='6UZM7NZCRON0J1PIVBUVSLNQQJ' where id=2; -update noar tt set v0='YPGMIW1IUBERGCXJP58EPIIF' where id=2; -update noar ti set v0='YPGMIW1IUBERGCXJP58EPIIF' where id=2; -update noar tt set b2='FHR3BL30LGDQEXN' where id=2; -update noar ti set b2='FHR3BL30LGDQEXN' where id=2; -update noar tt set v0='XCX2XPKN6TRU0WNLISGIER39PB' where id=3; -update noar ti set v0='XCX2XPKN6TRU0WNLISGIER39PB' where id=3; -update noar tt set b0='3COZNPSBT9SWK3' where id=3; -update noar ti set b0='3COZNPSBT9SWK3' where id=3; -update noar tt set v0='8GA22CP2UJGR22RYO8' where id=3; -update noar ti set v0='8GA22CP2UJGR22RYO8' where id=3; -update noar tt set b1='Q3U2XVKP' where id=3; -update noar ti set b1='Q3U2XVKP' where id=3; -update noar tt set v0='2KQJWE5XR4JJFQDM58Q5Z9QGFV96YHX' where id=3; -update noar ti set v0='2KQJWE5XR4JJFQDM58Q5Z9QGFV96YHX' where id=3; -update noar tt set b2='702' where id=3; -update noar ti set b2='702' where id=3; -update noar tt set v0='ZC0GRJUJBIOSANCAPDED2FEH8OQS' where id=4; -update noar ti set v0='ZC0GRJUJBIOSANCAPDED2FEH8OQS' where id=4; -update noar tt set b0='9LBI9' where id=4; -update noar ti set b0='9LBI9' where id=4; -update noar tt set v0='YZEISY903PWBWS200L' where id=4; -update noar ti set v0='YZEISY903PWBWS200L' where id=4; -update noar tt set b1='D' where id=4; -update noar ti set b1='D' where id=4; -update noar tt set v0='A00YQ0JYM2HVARHX1I2I1K06' where id=4; -update noar ti set v0='A00YQ0JYM2HVARHX1I2I1K06' where id=4; -update noar tt set b2='9T1XICJFE5E1ACKB17VSDNKJHOK1' where id=4; -update noar ti set b2='9T1XICJFE5E1ACKB17VSDNKJHOK1' where id=4; -update noar tt set v0='U75DI3FMZIHS' where id=5; -update noar ti set v0='U75DI3FMZIHS' where id=5; -update noar tt set b0='X2OFOMJ8X5DSD75C0UOYS2HH' where id=5; -update noar ti set b0='X2OFOMJ8X5DSD75C0UOYS2HH' where id=5; -update noar tt set v0='NU77J5H6Y1' where id=5; -update noar ti set v0='NU77J5H6Y1' where id=5; -update noar tt set b1='WBW' where id=5; -update noar ti set b1='WBW' where id=5; -update noar tt set v0='3C6EWF8' where id=5; -update noar ti set v0='3C6EWF8' where id=5; -update noar tt set b2='GK3SWJG4KAIF4' where id=5; -update noar ti set b2='GK3SWJG4KAIF4' where id=5; -update noar tt set v0='C3X68CP7DV7A1WWCUD4F' where id=6; -update noar ti set v0='C3X68CP7DV7A1WWCUD4F' where id=6; -update noar tt set b0='HVF0WS' where id=6; -update noar ti set b0='HVF0WS' where id=6; -update noar tt set v0='T63GM2' where id=6; -update noar ti set v0='T63GM2' where id=6; -update noar tt set b1='XN23KY' where id=6; -update noar ti set b1='XN23KY' where id=6; -update noar tt set v0='ZB0G' where id=6; -update noar ti set v0='ZB0G' where id=6; -update noar tt set b2='KA74QT1I2N4FBHT95A' where id=6; -update noar ti set b2='KA74QT1I2N4FBHT95A' where id=6; -update noar tt set v0='WMZQZFE5QQBKHSZAUR9H5TMW15HS' where id=7; -update noar ti set v0='WMZQZFE5QQBKHSZAUR9H5TMW15HS' where id=7; -update noar tt set b0='XF7OOBW7A9W84' where id=7; -update noar ti set b0='XF7OOBW7A9W84' where id=7; -update noar tt set v0='C5QNBG40LB' where id=7; -update noar ti set v0='C5QNBG40LB' where id=7; -update noar tt set b1='B5ABZ78' where id=7; -update noar ti set b1='B5ABZ78' where id=7; -update noar tt set v0='UJP' where id=7; -update noar ti set v0='UJP' where id=7; -update noar tt set b2='SM5VVQLM4GNXDDWZWO5NFZ5TUOUECB2U' where id=7; -update noar ti set b2='SM5VVQLM4GNXDDWZWO5NFZ5TUOUECB2U' where id=7; -update noar tt set v0='GG9I8JP4499CHGYEESY0' where id=8; -update noar ti set v0='GG9I8JP4499CHGYEESY0' where id=8; -update noar tt set b0='SJSEH6KYWRWEFEH89BB652A5BK911N4E' where id=8; -update noar ti set b0='SJSEH6KYWRWEFEH89BB652A5BK911N4E' where id=8; -update noar tt set v0='EVRT6T82RJSF5LY96E0QEPT1XH5H' where id=8; -update noar ti set v0='EVRT6T82RJSF5LY96E0QEPT1XH5H' where id=8; -update noar tt set b1='N' where id=8; -update noar ti set b1='N' where id=8; -update noar tt set v0='RZQOGVX4Q' where id=8; -update noar ti set v0='RZQOGVX4Q' where id=8; -update noar tt set b2='V91DL9J' where id=8; -update noar ti set b2='V91DL9J' where id=8; -update noar tt set v0='W0F' where id=9; -update noar ti set v0='W0F' where id=9; -update noar tt set b0='3' where id=9; -update noar ti set b0='3' where id=9; -update noar tt set v0='7W3UCZM696JOB4D2' where id=9; -update noar ti set v0='7W3UCZM696JOB4D2' where id=9; -update noar tt set b1='FLAX9FH851YA1B0Q8S6PUCU8U9R2FH' where id=9; -update noar ti set b1='FLAX9FH851YA1B0Q8S6PUCU8U9R2FH' where id=9; -update noar tt set v0='F' where id=9; -update noar ti set v0='F' where id=9; -update noar tt set b2='S9MC06HV7MP64K4WFYPFEJ6WW7F42L' where id=9; -update noar ti set b2='S9MC06HV7MP64K4WFYPFEJ6WW7F42L' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - v0 varchar(32) null, - b0 longblob null, - b1 tinyblob null, - b2 blob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='Y0TZFAFPO' where id=1; -update noar ti set v0='Y0TZFAFPO' where id=1; -update noar tt set b0='2AJED9GAEV3L134X2X1FQSTDGH' where id=1; -update noar ti set b0='2AJED9GAEV3L134X2X1FQSTDGH' where id=1; -update noar tt set v0='GUBD7S0WD86QA8HGF' where id=1; -update noar ti set v0='GUBD7S0WD86QA8HGF' where id=1; -update noar tt set b1='2V7D7S6PR4X1AKWC' where id=1; -update noar ti set b1='2V7D7S6PR4X1AKWC' where id=1; -update noar tt set v0='BAE7FM27LJ3KI9TS68KL0Y25K3' where id=1; -update noar ti set v0='BAE7FM27LJ3KI9TS68KL0Y25K3' where id=1; -update noar tt set b2='W6A3JEVTJX24R' where id=1; -update noar ti set b2='W6A3JEVTJX24R' where id=1; -update noar tt set v0='UBWEBIPMQ2NXM43X6EURRZHG79Q3TJI' where id=2; -update noar ti set v0='UBWEBIPMQ2NXM43X6EURRZHG79Q3TJI' where id=2; -update noar tt set b0='8YXEKMBBYQLMC64A6TRYAA' where id=2; -update noar ti set b0='8YXEKMBBYQLMC64A6TRYAA' where id=2; -update noar tt set v0='HU44Z6YHY5R311J' where id=2; -update noar ti set v0='HU44Z6YHY5R311J' where id=2; -update noar tt set b1='AXX672PN0EKWJYWN1F99IB90P' where id=2; -update noar ti set b1='AXX672PN0EKWJYWN1F99IB90P' where id=2; -update noar tt set v0='RUSPN4JRC74C3LSGS' where id=2; -update noar ti set v0='RUSPN4JRC74C3LSGS' where id=2; -update noar tt set b2='SQQBG7T6I7ZULI1FZK0KTGCAF' where id=2; -update noar ti set b2='SQQBG7T6I7ZULI1FZK0KTGCAF' where id=2; -update noar tt set v0='X2N1NAH504TXGFKYENFL3ES0OTF' where id=3; -update noar ti set v0='X2N1NAH504TXGFKYENFL3ES0OTF' where id=3; -update noar tt set b0='N6CQXE66GXE4TQV0O97PO1UFK3MGI6D' where id=3; -update noar ti set b0='N6CQXE66GXE4TQV0O97PO1UFK3MGI6D' where id=3; -update noar tt set v0='GIR0FXNUJOIGGSQ4XV8FCMJLPZ4FD36' where id=3; -update noar ti set v0='GIR0FXNUJOIGGSQ4XV8FCMJLPZ4FD36' where id=3; -update noar tt set b1='UDPP' where id=3; -update noar ti set b1='UDPP' where id=3; -update noar tt set v0='HEVV0XFYYOI4HN677NT775ODYYJZM' where id=3; -update noar ti set v0='HEVV0XFYYOI4HN677NT775ODYYJZM' where id=3; -update noar tt set b2='5471SQJNYHOKVC2HVO8OQ5FJA6T7P' where id=3; -update noar ti set b2='5471SQJNYHOKVC2HVO8OQ5FJA6T7P' where id=3; -update noar tt set v0='I4' where id=4; -update noar ti set v0='I4' where id=4; -update noar tt set b0='4SZQEWI7WP' where id=4; -update noar ti set b0='4SZQEWI7WP' where id=4; -update noar tt set v0='GRF1XVBVD' where id=4; -update noar ti set v0='GRF1XVBVD' where id=4; -update noar tt set b1='NQY3WWU' where id=4; -update noar ti set b1='NQY3WWU' where id=4; -update noar tt set v0='0UI5SRLRGOMI' where id=4; -update noar ti set v0='0UI5SRLRGOMI' where id=4; -update noar tt set b2='I1IO3HUIDWU9CK2GPG6OH' where id=4; -update noar ti set b2='I1IO3HUIDWU9CK2GPG6OH' where id=4; -update noar tt set v0='ZYIOVR4I9VHKUBA3JV0A5' where id=5; -update noar ti set v0='ZYIOVR4I9VHKUBA3JV0A5' where id=5; -update noar tt set b0='GN061QFF0DTCSSIHFNC3I' where id=5; -update noar ti set b0='GN061QFF0DTCSSIHFNC3I' where id=5; -update noar tt set v0='LFB91L6WVCNIV1XUQ88B9KBJGIRH1KTA' where id=5; -update noar ti set v0='LFB91L6WVCNIV1XUQ88B9KBJGIRH1KTA' where id=5; -update noar tt set b1='SF6LHC5Y8VIJVI6HYU8' where id=5; -update noar ti set b1='SF6LHC5Y8VIJVI6HYU8' where id=5; -update noar tt set v0='H61ML8BKE22A1U' where id=5; -update noar ti set v0='H61ML8BKE22A1U' where id=5; -update noar tt set b2='2ZSJ89CRFJ4CSR7H9D9ABDCJS9' where id=5; -update noar ti set b2='2ZSJ89CRFJ4CSR7H9D9ABDCJS9' where id=5; -update noar tt set v0='6ZRR5WMP6LK41K8PWY5SBJ' where id=6; -update noar ti set v0='6ZRR5WMP6LK41K8PWY5SBJ' where id=6; -update noar tt set b0='UIM4YDBTUKZ4KA9E1OJJDH0IPPDWJ6YR' where id=6; -update noar ti set b0='UIM4YDBTUKZ4KA9E1OJJDH0IPPDWJ6YR' where id=6; -update noar tt set v0='UL774WMW2' where id=6; -update noar ti set v0='UL774WMW2' where id=6; -update noar tt set b1='LDYP0LXVSR7V6CFST0' where id=6; -update noar ti set b1='LDYP0LXVSR7V6CFST0' where id=6; -update noar tt set v0='CY5O25XWQHOHVMJ02' where id=6; -update noar ti set v0='CY5O25XWQHOHVMJ02' where id=6; -update noar tt set b2='BIMCIIDQT1JD1' where id=6; -update noar ti set b2='BIMCIIDQT1JD1' where id=6; -update noar tt set v0='K6' where id=7; -update noar ti set v0='K6' where id=7; -update noar tt set b0='A7CSST68SL' where id=7; -update noar ti set b0='A7CSST68SL' where id=7; -update noar tt set v0='99RUPK8PHGC' where id=7; -update noar ti set v0='99RUPK8PHGC' where id=7; -update noar tt set b1='F27B43FXYVNCBEBKH7X2F3MNDGBC0GG' where id=7; -update noar ti set b1='F27B43FXYVNCBEBKH7X2F3MNDGBC0GG' where id=7; -update noar tt set v0='V153NO' where id=7; -update noar ti set v0='V153NO' where id=7; -update noar tt set b2='9D0JW6FJV0J91PN4M1RRUR2M' where id=7; -update noar ti set b2='9D0JW6FJV0J91PN4M1RRUR2M' where id=7; -update noar tt set v0='4FAWYLHXETBPGUI0M0963BL' where id=8; -update noar ti set v0='4FAWYLHXETBPGUI0M0963BL' where id=8; -update noar tt set b0='0NR021OY5XIQX' where id=8; -update noar ti set b0='0NR021OY5XIQX' where id=8; -update noar tt set v0='EUEIQDO4MCV59K2DSAQHZ' where id=8; -update noar ti set v0='EUEIQDO4MCV59K2DSAQHZ' where id=8; -update noar tt set b1='24GNKUXK' where id=8; -update noar ti set b1='24GNKUXK' where id=8; -update noar tt set v0='JIQNYN5SW974MY9GI1YCN5K3X' where id=8; -update noar ti set v0='JIQNYN5SW974MY9GI1YCN5K3X' where id=8; -update noar tt set b2='9OGVXHP498Q882IHV' where id=8; -update noar ti set b2='9OGVXHP498Q882IHV' where id=8; -update noar tt set v0='YIRUN7D9HELPIFI04P1P9NHD' where id=9; -update noar ti set v0='YIRUN7D9HELPIFI04P1P9NHD' where id=9; -update noar tt set b0='KE048PRIXCQETE' where id=9; -update noar ti set b0='KE048PRIXCQETE' where id=9; -update noar tt set v0='UKWHY5NIA' where id=9; -update noar ti set v0='UKWHY5NIA' where id=9; -update noar tt set b1='1IMO1WU3MONAXGZE' where id=9; -update noar ti set b1='1IMO1WU3MONAXGZE' where id=9; -update noar tt set v0='W23HUU7DNUB7M4VGQ38C668' where id=9; -update noar ti set v0='W23HUU7DNUB7M4VGQ38C668' where id=9; -update noar tt set b2='PECRR4P2K93AARS3D' where id=9; -update noar ti set b2='PECRR4P2K93AARS3D' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - v0 varchar(256) null, - b0 longblob null, - b1 tinyblob null, - b2 blob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='B1IGO7DV20L56324S8' where id=1; -update noar ti set v0='B1IGO7DV20L56324S8' where id=1; -update noar tt set b0='MJ8CQD0' where id=1; -update noar ti set b0='MJ8CQD0' where id=1; -update noar tt set v0='S1LA5VV5G9QGH8' where id=1; -update noar ti set v0='S1LA5VV5G9QGH8' where id=1; -update noar tt set b1='J9OY0V' where id=1; -update noar ti set b1='J9OY0V' where id=1; -update noar tt set v0='5EFRNODWQ792HNH3ZJTP7DK3KWU4' where id=1; -update noar ti set v0='5EFRNODWQ792HNH3ZJTP7DK3KWU4' where id=1; -update noar tt set b2='4RG9SMNZC0J' where id=1; -update noar ti set b2='4RG9SMNZC0J' where id=1; -update noar tt set v0='YXA6MMZP' where id=2; -update noar ti set v0='YXA6MMZP' where id=2; -update noar tt set b0='FH3XKR97ETX8BDCLAJBBWL33CADU' where id=2; -update noar ti set b0='FH3XKR97ETX8BDCLAJBBWL33CADU' where id=2; -update noar tt set v0='GGOUD' where id=2; -update noar ti set v0='GGOUD' where id=2; -update noar tt set b1='5B4Y734Q6BSBR5BN35GBGOZ' where id=2; -update noar ti set b1='5B4Y734Q6BSBR5BN35GBGOZ' where id=2; -update noar tt set v0='L7E6RO53E' where id=2; -update noar ti set v0='L7E6RO53E' where id=2; -update noar tt set b2='SE678Z1A7OIGGALRFUCXV2TD9' where id=2; -update noar ti set b2='SE678Z1A7OIGGALRFUCXV2TD9' where id=2; -update noar tt set v0='H0D91Q3RT7H5OJZR' where id=3; -update noar ti set v0='H0D91Q3RT7H5OJZR' where id=3; -update noar tt set b0='XZM16WP9FF4JDBB8AG2M' where id=3; -update noar ti set b0='XZM16WP9FF4JDBB8AG2M' where id=3; -update noar tt set v0='7FFUQ2VU9ZPM0XJVA1OSB' where id=3; -update noar ti set v0='7FFUQ2VU9ZPM0XJVA1OSB' where id=3; -update noar tt set b1='IR7QINVXUYRH7' where id=3; -update noar ti set b1='IR7QINVXUYRH7' where id=3; -update noar tt set v0='9Q4CFI4YXX7VSXV' where id=3; -update noar ti set v0='9Q4CFI4YXX7VSXV' where id=3; -update noar tt set b2='AR02Q3OY9K37ZFUPZG' where id=3; -update noar ti set b2='AR02Q3OY9K37ZFUPZG' where id=3; -update noar tt set v0='2YHV63R51IIK0B2' where id=4; -update noar ti set v0='2YHV63R51IIK0B2' where id=4; -update noar tt set b0='5VXJZZSJLFCEYVBKJ9410Z9FY1KWR4' where id=4; -update noar ti set b0='5VXJZZSJLFCEYVBKJ9410Z9FY1KWR4' where id=4; -update noar tt set v0='M8KJFKIU9' where id=4; -update noar ti set v0='M8KJFKIU9' where id=4; -update noar tt set b1='3GKFA1VK0G7FWFNFCMH6FWDR22S' where id=4; -update noar ti set b1='3GKFA1VK0G7FWFNFCMH6FWDR22S' where id=4; -update noar tt set v0='M5K2XHQ9S5I5701R2IP3V94HOFYDK' where id=4; -update noar ti set v0='M5K2XHQ9S5I5701R2IP3V94HOFYDK' where id=4; -update noar tt set b2='MITK5L82OVS1ZKKSKHFXPQ0IGSYYRT' where id=4; -update noar ti set b2='MITK5L82OVS1ZKKSKHFXPQ0IGSYYRT' where id=4; -update noar tt set v0='146B6' where id=5; -update noar ti set v0='146B6' where id=5; -update noar tt set b0='NIV9UQ0YMCPFQYEX8EH7AO264M33Q4S9' where id=5; -update noar ti set b0='NIV9UQ0YMCPFQYEX8EH7AO264M33Q4S9' where id=5; -update noar tt set v0='53K6LDH3A47JZDCYYF0NA4XY49' where id=5; -update noar ti set v0='53K6LDH3A47JZDCYYF0NA4XY49' where id=5; -update noar tt set b1='KOXNN77WBW40GPFOBMAYP38LQJ' where id=5; -update noar ti set b1='KOXNN77WBW40GPFOBMAYP38LQJ' where id=5; -update noar tt set v0='6CD20XU7YBKQBX7XWBW4GZ2APQZ848' where id=5; -update noar ti set v0='6CD20XU7YBKQBX7XWBW4GZ2APQZ848' where id=5; -update noar tt set b2='FY3M1K67FYR2BZHKH9ZHX0AH6UYA' where id=5; -update noar ti set b2='FY3M1K67FYR2BZHKH9ZHX0AH6UYA' where id=5; -update noar tt set v0='5M1D0YRXIUVAOBIOM1NN' where id=6; -update noar ti set v0='5M1D0YRXIUVAOBIOM1NN' where id=6; -update noar tt set b0='81OULN2Z5U3ZR2F' where id=6; -update noar ti set b0='81OULN2Z5U3ZR2F' where id=6; -update noar tt set v0='NDDE8SHV1T1F10M90N' where id=6; -update noar ti set v0='NDDE8SHV1T1F10M90N' where id=6; -update noar tt set b1='8LCC5RHZ9ID5T366BFOT57HGJSI8J' where id=6; -update noar ti set b1='8LCC5RHZ9ID5T366BFOT57HGJSI8J' where id=6; -update noar tt set v0='78I0ODYN5' where id=6; -update noar ti set v0='78I0ODYN5' where id=6; -update noar tt set b2='6KZVJUE97U4T' where id=6; -update noar ti set b2='6KZVJUE97U4T' where id=6; -update noar tt set v0='65TLN8GCF022' where id=7; -update noar ti set v0='65TLN8GCF022' where id=7; -update noar tt set b0='I' where id=7; -update noar ti set b0='I' where id=7; -update noar tt set v0='NKPCBWKX983O0G65RZTDSPF5113AT' where id=7; -update noar ti set v0='NKPCBWKX983O0G65RZTDSPF5113AT' where id=7; -update noar tt set b1='J1VGQHTJX1TVILO2I1XKH8KV70OCFA9' where id=7; -update noar ti set b1='J1VGQHTJX1TVILO2I1XKH8KV70OCFA9' where id=7; -update noar tt set v0='CR9ZJPVFPBXF994JKXTASXYCEF' where id=7; -update noar ti set v0='CR9ZJPVFPBXF994JKXTASXYCEF' where id=7; -update noar tt set b2='1CDYV630DYAJNVY' where id=7; -update noar ti set b2='1CDYV630DYAJNVY' where id=7; -update noar tt set v0='N9OOB6PD2AORDA' where id=8; -update noar ti set v0='N9OOB6PD2AORDA' where id=8; -update noar tt set b0='47U7FAS5G0796N5YQM' where id=8; -update noar ti set b0='47U7FAS5G0796N5YQM' where id=8; -update noar tt set v0='4' where id=8; -update noar ti set v0='4' where id=8; -update noar tt set b1='Z030' where id=8; -update noar ti set b1='Z030' where id=8; -update noar tt set v0='3ZESS79005ZT9' where id=8; -update noar ti set v0='3ZESS79005ZT9' where id=8; -update noar tt set b2='R6MX2YE81IMI4VP2DYN1S2' where id=8; -update noar ti set b2='R6MX2YE81IMI4VP2DYN1S2' where id=8; -update noar tt set v0='XW1OL1IHPMVWF1GXNGT0CDXQHKE' where id=9; -update noar ti set v0='XW1OL1IHPMVWF1GXNGT0CDXQHKE' where id=9; -update noar tt set b0='KZXRYUP19AX0KFTQ5M' where id=9; -update noar ti set b0='KZXRYUP19AX0KFTQ5M' where id=9; -update noar tt set v0='9ICCVNAFM0JY5OQ8UUWW3' where id=9; -update noar ti set v0='9ICCVNAFM0JY5OQ8UUWW3' where id=9; -update noar tt set b1='0KPET4QKC' where id=9; -update noar ti set b1='0KPET4QKC' where id=9; -update noar tt set v0='C4LZ68' where id=9; -update noar ti set v0='C4LZ68' where id=9; -update noar tt set b2='AAV9VEMA009IHYOJ6SGM7E' where id=9; -update noar ti set b2='AAV9VEMA009IHYOJ6SGM7E' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - v0 varchar(32) not null, - b0 longblob not null, - b1 tinyblob not null, - b2 blob not null -) engine=tokudb; -insert into tt values (1,'','','',''); -insert into tt values (2,'','','',''); -insert into tt values (3,'','','',''); -insert into tt values (4,'','','',''); -insert into tt values (5,'','','',''); -insert into tt values (6,'','','',''); -insert into tt values (7,'','','',''); -insert into tt values (8,'','','',''); -insert into tt values (9,'','','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='L' where id=1; -update noar ti set v0='L' where id=1; -update noar tt set b0='IF69NY3BXJ' where id=1; -update noar ti set b0='IF69NY3BXJ' where id=1; -update noar tt set v0='1ZL' where id=1; -update noar ti set v0='1ZL' where id=1; -update noar tt set b1='XNALR03RRD0ZJKE3R478YN' where id=1; -update noar ti set b1='XNALR03RRD0ZJKE3R478YN' where id=1; -update noar tt set v0='126V8KE3LTM8SJ9VWVT2GKE9NM73V4OI' where id=1; -update noar ti set v0='126V8KE3LTM8SJ9VWVT2GKE9NM73V4OI' where id=1; -update noar tt set b2='6R1CV9QU6BBS0F2TYNBJCJ4DJS' where id=1; -update noar ti set b2='6R1CV9QU6BBS0F2TYNBJCJ4DJS' where id=1; -update noar tt set v0='FKNVSHDGTBANHPFQHF3BRG8ZOS' where id=2; -update noar ti set v0='FKNVSHDGTBANHPFQHF3BRG8ZOS' where id=2; -update noar tt set b0='GNMO31UCLY0MQS8J2FOFNDKVUX' where id=2; -update noar ti set b0='GNMO31UCLY0MQS8J2FOFNDKVUX' where id=2; -update noar tt set v0='H07SAQWVECS74XHRYQ' where id=2; -update noar ti set v0='H07SAQWVECS74XHRYQ' where id=2; -update noar tt set b1='EQLHGZCJVAQXH' where id=2; -update noar ti set b1='EQLHGZCJVAQXH' where id=2; -update noar tt set v0='1H45UEOJWEIU' where id=2; -update noar ti set v0='1H45UEOJWEIU' where id=2; -update noar tt set b2='1UTY5NL' where id=2; -update noar ti set b2='1UTY5NL' where id=2; -update noar tt set v0='BWL3TTLP9JRLJ' where id=3; -update noar ti set v0='BWL3TTLP9JRLJ' where id=3; -update noar tt set b0='HL9JXI94MQB1PO9CVDHQYKKT5D' where id=3; -update noar ti set b0='HL9JXI94MQB1PO9CVDHQYKKT5D' where id=3; -update noar tt set v0='O32AJI62PH1QOV' where id=3; -update noar ti set v0='O32AJI62PH1QOV' where id=3; -update noar tt set b1='A1DCBV2E54EH001Q56HUS' where id=3; -update noar ti set b1='A1DCBV2E54EH001Q56HUS' where id=3; -update noar tt set v0='H6I6Q5EPZLY1QFYT048XMW79GAJX4UFM' where id=3; -update noar ti set v0='H6I6Q5EPZLY1QFYT048XMW79GAJX4UFM' where id=3; -update noar tt set b2='6' where id=3; -update noar ti set b2='6' where id=3; -update noar tt set v0='DCB88P1BS5L4WWTRJJD' where id=4; -update noar ti set v0='DCB88P1BS5L4WWTRJJD' where id=4; -update noar tt set b0='NZ6LCR5WOA2XRU5TD8' where id=4; -update noar ti set b0='NZ6LCR5WOA2XRU5TD8' where id=4; -update noar tt set v0='GP2WH0P74UL3W' where id=4; -update noar ti set v0='GP2WH0P74UL3W' where id=4; -update noar tt set b1='Z8FFCOGQE9D3IDX0' where id=4; -update noar ti set b1='Z8FFCOGQE9D3IDX0' where id=4; -update noar tt set v0='1WPRL8' where id=4; -update noar ti set v0='1WPRL8' where id=4; -update noar tt set b2='1AYFH7ATPPCD7TQEHROSSYXZQ' where id=4; -update noar ti set b2='1AYFH7ATPPCD7TQEHROSSYXZQ' where id=4; -update noar tt set v0='A224B86H08EE0QXF' where id=5; -update noar ti set v0='A224B86H08EE0QXF' where id=5; -update noar tt set b0='ZPS8HCUDPA5HYJJC6KJ51EQ0XP' where id=5; -update noar ti set b0='ZPS8HCUDPA5HYJJC6KJ51EQ0XP' where id=5; -update noar tt set v0='UYDH5NXIL71TQ241LLUN2PPPOY4FX' where id=5; -update noar ti set v0='UYDH5NXIL71TQ241LLUN2PPPOY4FX' where id=5; -update noar tt set b1='NR29' where id=5; -update noar ti set b1='NR29' where id=5; -update noar tt set v0='DLE2' where id=5; -update noar ti set v0='DLE2' where id=5; -update noar tt set b2='75GYXANI2URDQNHH2A0G' where id=5; -update noar ti set b2='75GYXANI2URDQNHH2A0G' where id=5; -update noar tt set v0='UNBC' where id=6; -update noar ti set v0='UNBC' where id=6; -update noar tt set b0='AU5RH' where id=6; -update noar ti set b0='AU5RH' where id=6; -update noar tt set v0='IWW2358XZECDI3JX3' where id=6; -update noar ti set v0='IWW2358XZECDI3JX3' where id=6; -update noar tt set b1='4WC' where id=6; -update noar ti set b1='4WC' where id=6; -update noar tt set v0='AX41AV2FD791OIQ8' where id=6; -update noar ti set v0='AX41AV2FD791OIQ8' where id=6; -update noar tt set b2='N1MVMBKI94HV7KWT5GXPZKC69' where id=6; -update noar ti set b2='N1MVMBKI94HV7KWT5GXPZKC69' where id=6; -update noar tt set v0='JCE827LMW' where id=7; -update noar ti set v0='JCE827LMW' where id=7; -update noar tt set b0='C0CRF0GRC4' where id=7; -update noar ti set b0='C0CRF0GRC4' where id=7; -update noar tt set v0='WM2' where id=7; -update noar ti set v0='WM2' where id=7; -update noar tt set b1='NPLL8QOKHBGII' where id=7; -update noar ti set b1='NPLL8QOKHBGII' where id=7; -update noar tt set v0='E' where id=7; -update noar ti set v0='E' where id=7; -update noar tt set b2='GVI3F9WU1CK2QCL2HNWP64CZQ84OBWTP' where id=7; -update noar ti set b2='GVI3F9WU1CK2QCL2HNWP64CZQ84OBWTP' where id=7; -update noar tt set v0='ICA' where id=8; -update noar ti set v0='ICA' where id=8; -update noar tt set b0='V9CXIG1Y' where id=8; -update noar ti set b0='V9CXIG1Y' where id=8; -update noar tt set v0='GGOEI1JJ37H9UR7SNGA2L6PTZOT' where id=8; -update noar ti set v0='GGOEI1JJ37H9UR7SNGA2L6PTZOT' where id=8; -update noar tt set b1='WXAZQ9B4UXHPS8CLTIY8O' where id=8; -update noar ti set b1='WXAZQ9B4UXHPS8CLTIY8O' where id=8; -update noar tt set v0='GYU0O' where id=8; -update noar ti set v0='GYU0O' where id=8; -update noar tt set b2='0LNX7N8HJKRR613LJOL' where id=8; -update noar ti set b2='0LNX7N8HJKRR613LJOL' where id=8; -update noar tt set v0='60TZIU6G6Q5DE60BF0DVQVL9G' where id=9; -update noar ti set v0='60TZIU6G6Q5DE60BF0DVQVL9G' where id=9; -update noar tt set b0='VJL5PQEICASWGELCQ4CABIL4PN3ME' where id=9; -update noar ti set b0='VJL5PQEICASWGELCQ4CABIL4PN3ME' where id=9; -update noar tt set v0='P1TIS1TKAT' where id=9; -update noar ti set v0='P1TIS1TKAT' where id=9; -update noar tt set b1='6AO7DZDS68' where id=9; -update noar ti set b1='6AO7DZDS68' where id=9; -update noar tt set v0='BFJGZH00LXF9FQ39MK' where id=9; -update noar ti set v0='BFJGZH00LXF9FQ39MK' where id=9; -update noar tt set b2='97F59UKP' where id=9; -update noar ti set b2='97F59UKP' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - v0 varchar(256) not null, - b0 longblob not null, - b1 tinyblob not null, - b2 blob not null -) engine=tokudb; -insert into tt values (1,'','','',''); -insert into tt values (2,'','','',''); -insert into tt values (3,'','','',''); -insert into tt values (4,'','','',''); -insert into tt values (5,'','','',''); -insert into tt values (6,'','','',''); -insert into tt values (7,'','','',''); -insert into tt values (8,'','','',''); -insert into tt values (9,'','','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='ZOCDEKMHB2QN11NE51' where id=1; -update noar ti set v0='ZOCDEKMHB2QN11NE51' where id=1; -update noar tt set b0='CAR6T8HPC5PCL' where id=1; -update noar ti set b0='CAR6T8HPC5PCL' where id=1; -update noar tt set v0='M7W67XGCP293DKXJTQ3XE' where id=1; -update noar ti set v0='M7W67XGCP293DKXJTQ3XE' where id=1; -update noar tt set b1='A8ZNUZK4WN' where id=1; -update noar ti set b1='A8ZNUZK4WN' where id=1; -update noar tt set v0='0T7R81XZSE4D4L9' where id=1; -update noar ti set v0='0T7R81XZSE4D4L9' where id=1; -update noar tt set b2='EPSTA' where id=1; -update noar ti set b2='EPSTA' where id=1; -update noar tt set v0='QVNL9ORWZ4GHG' where id=2; -update noar ti set v0='QVNL9ORWZ4GHG' where id=2; -update noar tt set b0='V9DVQLQ5FTXF' where id=2; -update noar ti set b0='V9DVQLQ5FTXF' where id=2; -update noar tt set v0='TD' where id=2; -update noar ti set v0='TD' where id=2; -update noar tt set b1='UBT1RRT5DYN' where id=2; -update noar ti set b1='UBT1RRT5DYN' where id=2; -update noar tt set v0='7NGC4AD0YOE38CEXI0J5' where id=2; -update noar ti set v0='7NGC4AD0YOE38CEXI0J5' where id=2; -update noar tt set b2='S6H0OB82UFW0V3' where id=2; -update noar ti set b2='S6H0OB82UFW0V3' where id=2; -update noar tt set v0='28EGQHQAHLNM7J61U9EWJ1L' where id=3; -update noar ti set v0='28EGQHQAHLNM7J61U9EWJ1L' where id=3; -update noar tt set b0='2L' where id=3; -update noar ti set b0='2L' where id=3; -update noar tt set v0='HL36AT3QC41UURQ18O7SG32GVLO' where id=3; -update noar ti set v0='HL36AT3QC41UURQ18O7SG32GVLO' where id=3; -update noar tt set b1='DC' where id=3; -update noar ti set b1='DC' where id=3; -update noar tt set v0='VNU4E5UU4ECBEW5OUJ9R3W5ALDN' where id=3; -update noar ti set v0='VNU4E5UU4ECBEW5OUJ9R3W5ALDN' where id=3; -update noar tt set b2='4792LM8T8CIYKBVICLQKQZHJJ207C' where id=3; -update noar ti set b2='4792LM8T8CIYKBVICLQKQZHJJ207C' where id=3; -update noar tt set v0='4' where id=4; -update noar ti set v0='4' where id=4; -update noar tt set b0='OHOPZLCK9' where id=4; -update noar ti set b0='OHOPZLCK9' where id=4; -update noar tt set v0='T7HZEBG5INMYYMBEYYWQLU1' where id=4; -update noar ti set v0='T7HZEBG5INMYYMBEYYWQLU1' where id=4; -update noar tt set b1='BV1JHRA9V' where id=4; -update noar ti set b1='BV1JHRA9V' where id=4; -update noar tt set v0='K1RH2UNXR75EDOJDF4GNH' where id=4; -update noar ti set v0='K1RH2UNXR75EDOJDF4GNH' where id=4; -update noar tt set b2='R1QXWG18EM58E86GOO2GXXP' where id=4; -update noar ti set b2='R1QXWG18EM58E86GOO2GXXP' where id=4; -update noar tt set v0='J9GEQ25I0947YIK70H8Z' where id=5; -update noar ti set v0='J9GEQ25I0947YIK70H8Z' where id=5; -update noar tt set b0='W7VGX4GBRWP7B91HCZ4RJY8J' where id=5; -update noar ti set b0='W7VGX4GBRWP7B91HCZ4RJY8J' where id=5; -update noar tt set v0='INBTWALEA02PU6TTOI0HDQFJ' where id=5; -update noar ti set v0='INBTWALEA02PU6TTOI0HDQFJ' where id=5; -update noar tt set b1='43T04NNJQ2Q7YQGPLE5UVNYE' where id=5; -update noar ti set b1='43T04NNJQ2Q7YQGPLE5UVNYE' where id=5; -update noar tt set v0='ML7' where id=5; -update noar ti set v0='ML7' where id=5; -update noar tt set b2='4MZ99F' where id=5; -update noar ti set b2='4MZ99F' where id=5; -update noar tt set v0='JSYE9U6YDF9Y83DBT6JCT06Q' where id=6; -update noar ti set v0='JSYE9U6YDF9Y83DBT6JCT06Q' where id=6; -update noar tt set b0='9PUCB9SDDFZI1F39' where id=6; -update noar ti set b0='9PUCB9SDDFZI1F39' where id=6; -update noar tt set v0='ZXF8VNJQ5CKM4N0LHVCJX9ELZKOAW6' where id=6; -update noar ti set v0='ZXF8VNJQ5CKM4N0LHVCJX9ELZKOAW6' where id=6; -update noar tt set b1='EOPRC5ZCA02SQOSLDVTKW' where id=6; -update noar ti set b1='EOPRC5ZCA02SQOSLDVTKW' where id=6; -update noar tt set v0='3ZA7LXSSFQ9ETSN7AT8R8AE' where id=6; -update noar ti set v0='3ZA7LXSSFQ9ETSN7AT8R8AE' where id=6; -update noar tt set b2='414BF7SBPRW3DCT5A5ME7IWK' where id=6; -update noar ti set b2='414BF7SBPRW3DCT5A5ME7IWK' where id=6; -update noar tt set v0='V7GKO7XGBPF986HVCIYCW7WS9HYC2' where id=7; -update noar ti set v0='V7GKO7XGBPF986HVCIYCW7WS9HYC2' where id=7; -update noar tt set b0='SPUUTRMS' where id=7; -update noar ti set b0='SPUUTRMS' where id=7; -update noar tt set v0='DGNM362PAALAC' where id=7; -update noar ti set v0='DGNM362PAALAC' where id=7; -update noar tt set b1='MN7RXYQ1ID5R1K4C' where id=7; -update noar ti set b1='MN7RXYQ1ID5R1K4C' where id=7; -update noar tt set v0='TMO9NDT1UJRC3HSRQ9K7UXVAE3P1O' where id=7; -update noar ti set v0='TMO9NDT1UJRC3HSRQ9K7UXVAE3P1O' where id=7; -update noar tt set b2='7JRP2HY' where id=7; -update noar ti set b2='7JRP2HY' where id=7; -update noar tt set v0='JAE9LUZV6T7ZJYD0D42B' where id=8; -update noar ti set v0='JAE9LUZV6T7ZJYD0D42B' where id=8; -update noar tt set b0='B' where id=8; -update noar ti set b0='B' where id=8; -update noar tt set v0='OW1AECDWD820HL0WQRVZ94' where id=8; -update noar ti set v0='OW1AECDWD820HL0WQRVZ94' where id=8; -update noar tt set b1='LHIISZ7Y6CG70ZFD6' where id=8; -update noar ti set b1='LHIISZ7Y6CG70ZFD6' where id=8; -update noar tt set v0='PAMD08IADUBO' where id=8; -update noar ti set v0='PAMD08IADUBO' where id=8; -update noar tt set b2='ZMJSZBQIPHR9H74P75DYIWDN8' where id=8; -update noar ti set b2='ZMJSZBQIPHR9H74P75DYIWDN8' where id=8; -update noar tt set v0='6B5DOVQDSMP7T2HK1G' where id=9; -update noar ti set v0='6B5DOVQDSMP7T2HK1G' where id=9; -update noar tt set b0='CNFE1MUZFMNH8HNUCHLKF3A4QUL' where id=9; -update noar ti set b0='CNFE1MUZFMNH8HNUCHLKF3A4QUL' where id=9; -update noar tt set v0='CZBB1JOJ5HZJZJB9QLXV86Q5TL1' where id=9; -update noar ti set v0='CZBB1JOJ5HZJZJB9QLXV86Q5TL1' where id=9; -update noar tt set b1='S0RYYTTDT1SKPYWPRUBJ' where id=9; -update noar ti set b1='S0RYYTTDT1SKPYWPRUBJ' where id=9; -update noar tt set v0='BPPVJ1QZK42' where id=9; -update noar ti set v0='BPPVJ1QZK42' where id=9; -update noar tt set b2='01F0KRLBVONW' where id=9; -update noar ti set b2='01F0KRLBVONW' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - v0 varchar(32) null, - b0 longblob null, - b1 tinyblob null, - b2 mediumblob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='ULS8LOZYQY7ZN73UMV8ZBPJA' where id=1; -update noar ti set v0='ULS8LOZYQY7ZN73UMV8ZBPJA' where id=1; -update noar tt set b0='TICZNHX6SMBRVN' where id=1; -update noar ti set b0='TICZNHX6SMBRVN' where id=1; -update noar tt set v0='3' where id=1; -update noar ti set v0='3' where id=1; -update noar tt set b1='E' where id=1; -update noar ti set b1='E' where id=1; -update noar tt set v0='HAHL7PP' where id=1; -update noar ti set v0='HAHL7PP' where id=1; -update noar tt set b2='DE1DCSY2SS9PA3' where id=1; -update noar ti set b2='DE1DCSY2SS9PA3' where id=1; -update noar tt set v0='SA2EBYISV883BAF' where id=2; -update noar ti set v0='SA2EBYISV883BAF' where id=2; -update noar tt set b0='P0' where id=2; -update noar ti set b0='P0' where id=2; -update noar tt set v0='BRLQDV0VX6WY5V42TIQ3CEAS' where id=2; -update noar ti set v0='BRLQDV0VX6WY5V42TIQ3CEAS' where id=2; -update noar tt set b1='G' where id=2; -update noar ti set b1='G' where id=2; -update noar tt set v0='YW87EGUCTJB9XUY9Z5' where id=2; -update noar ti set v0='YW87EGUCTJB9XUY9Z5' where id=2; -update noar tt set b2='OLF6D7Y0DJ5QKXYYXQ6I34HNUO0GM4YJ' where id=2; -update noar ti set b2='OLF6D7Y0DJ5QKXYYXQ6I34HNUO0GM4YJ' where id=2; -update noar tt set v0='M3ZJUW12WKFM0KXPNVGE' where id=3; -update noar ti set v0='M3ZJUW12WKFM0KXPNVGE' where id=3; -update noar tt set b0='ECSUVUKU2YJ4WOM' where id=3; -update noar ti set b0='ECSUVUKU2YJ4WOM' where id=3; -update noar tt set v0='67SBC0QSVQXW8W77JFPTFQ36Q6SBR3V5' where id=3; -update noar ti set v0='67SBC0QSVQXW8W77JFPTFQ36Q6SBR3V5' where id=3; -update noar tt set b1='2M74HBMZOZCAD8P2' where id=3; -update noar ti set b1='2M74HBMZOZCAD8P2' where id=3; -update noar tt set v0='168' where id=3; -update noar ti set v0='168' where id=3; -update noar tt set b2='T3PIJT7PZ4S' where id=3; -update noar ti set b2='T3PIJT7PZ4S' where id=3; -update noar tt set v0='I1QPO05HPCKYFJLVRQ4' where id=4; -update noar ti set v0='I1QPO05HPCKYFJLVRQ4' where id=4; -update noar tt set b0='NQKU2GUCKPHJ8BP15M1B2O6VBF29' where id=4; -update noar ti set b0='NQKU2GUCKPHJ8BP15M1B2O6VBF29' where id=4; -update noar tt set v0='VEPYIS3XNWF' where id=4; -update noar ti set v0='VEPYIS3XNWF' where id=4; -update noar tt set b1='A6MSVJZF9BPUS2MRZVYR61LG3' where id=4; -update noar ti set b1='A6MSVJZF9BPUS2MRZVYR61LG3' where id=4; -update noar tt set v0='DAESI1GVZV5I8E7Y7A4LW8E0OV' where id=4; -update noar ti set v0='DAESI1GVZV5I8E7Y7A4LW8E0OV' where id=4; -update noar tt set b2='6ORP9' where id=4; -update noar ti set b2='6ORP9' where id=4; -update noar tt set v0='KQK00LMBM42A' where id=5; -update noar ti set v0='KQK00LMBM42A' where id=5; -update noar tt set b0='XEVYZCWFKT4TSOTXVE3O3VL7B' where id=5; -update noar ti set b0='XEVYZCWFKT4TSOTXVE3O3VL7B' where id=5; -update noar tt set v0='VSG14N0REDW' where id=5; -update noar ti set v0='VSG14N0REDW' where id=5; -update noar tt set b1='I29HIB0L8TMPU8YKQ146' where id=5; -update noar ti set b1='I29HIB0L8TMPU8YKQ146' where id=5; -update noar tt set v0='0CUA7XOPXVJ66ZHFL43SQ8BITRBG8' where id=5; -update noar ti set v0='0CUA7XOPXVJ66ZHFL43SQ8BITRBG8' where id=5; -update noar tt set b2='QDQBGT' where id=5; -update noar ti set b2='QDQBGT' where id=5; -update noar tt set v0='AXUJ' where id=6; -update noar ti set v0='AXUJ' where id=6; -update noar tt set b0='6KVRFRJ9ZD1647' where id=6; -update noar ti set b0='6KVRFRJ9ZD1647' where id=6; -update noar tt set v0='VYVOYKY' where id=6; -update noar ti set v0='VYVOYKY' where id=6; -update noar tt set b1='K0SK' where id=6; -update noar ti set b1='K0SK' where id=6; -update noar tt set v0='70040D81WJSOUYQAJDZ5Q1VPXCGG' where id=6; -update noar ti set v0='70040D81WJSOUYQAJDZ5Q1VPXCGG' where id=6; -update noar tt set b2='HZ' where id=6; -update noar ti set b2='HZ' where id=6; -update noar tt set v0='NTYB9VB9QWY0QPW0HLWA38' where id=7; -update noar ti set v0='NTYB9VB9QWY0QPW0HLWA38' where id=7; -update noar tt set b0='SE8G7OYYORSJXZ' where id=7; -update noar ti set b0='SE8G7OYYORSJXZ' where id=7; -update noar tt set v0='QMLE6CXXCLSVB' where id=7; -update noar ti set v0='QMLE6CXXCLSVB' where id=7; -update noar tt set b1='CHP77LJWJQB1I076U4DWXX4M' where id=7; -update noar ti set b1='CHP77LJWJQB1I076U4DWXX4M' where id=7; -update noar tt set v0='OU1OE5' where id=7; -update noar ti set v0='OU1OE5' where id=7; -update noar tt set b2='6ICDHU6MBIBOVRIPH9EHZRXERBNS' where id=7; -update noar ti set b2='6ICDHU6MBIBOVRIPH9EHZRXERBNS' where id=7; -update noar tt set v0='QB' where id=8; -update noar ti set v0='QB' where id=8; -update noar tt set b0='40PP83' where id=8; -update noar ti set b0='40PP83' where id=8; -update noar tt set v0='0DJVHDFWUDQUH6G' where id=8; -update noar ti set v0='0DJVHDFWUDQUH6G' where id=8; -update noar tt set b1='N02XUW50C9UZG3Y24ZECG0T67NMG0C' where id=8; -update noar ti set b1='N02XUW50C9UZG3Y24ZECG0T67NMG0C' where id=8; -update noar tt set v0='I4W1' where id=8; -update noar ti set v0='I4W1' where id=8; -update noar tt set b2='CP2R41KJPHKBACPNZ' where id=8; -update noar ti set b2='CP2R41KJPHKBACPNZ' where id=8; -update noar tt set v0='DFH1J14EYHYHMNPL8UX1Q4SRYNVXBRY' where id=9; -update noar ti set v0='DFH1J14EYHYHMNPL8UX1Q4SRYNVXBRY' where id=9; -update noar tt set b0='33J76D63WVJ' where id=9; -update noar ti set b0='33J76D63WVJ' where id=9; -update noar tt set v0='3N41WDAVWDN24SJD94X' where id=9; -update noar ti set v0='3N41WDAVWDN24SJD94X' where id=9; -update noar tt set b1='X5LXGCJ5FMN4GC26E737SWDDSWDU4H87' where id=9; -update noar ti set b1='X5LXGCJ5FMN4GC26E737SWDDSWDU4H87' where id=9; -update noar tt set v0='RCDMKUG' where id=9; -update noar ti set v0='RCDMKUG' where id=9; -update noar tt set b2='ZUQE6NCO53NUAMCI79J2V' where id=9; -update noar ti set b2='ZUQE6NCO53NUAMCI79J2V' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - v0 varchar(256) null, - b0 longblob null, - b1 tinyblob null, - b2 mediumblob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='IGMFUYDB0UD218GSMIUTY1H' where id=1; -update noar ti set v0='IGMFUYDB0UD218GSMIUTY1H' where id=1; -update noar tt set b0='NAKSD4AHH17MNU4C0R1G5LWHDHP' where id=1; -update noar ti set b0='NAKSD4AHH17MNU4C0R1G5LWHDHP' where id=1; -update noar tt set v0='LODP6R' where id=1; -update noar ti set v0='LODP6R' where id=1; -update noar tt set b1='S97PHH46QPU9SSAENQLUSCJHAX6ME' where id=1; -update noar ti set b1='S97PHH46QPU9SSAENQLUSCJHAX6ME' where id=1; -update noar tt set v0='KGLZL2SDLF' where id=1; -update noar ti set v0='KGLZL2SDLF' where id=1; -update noar tt set b2='LQOR5V8WNGV907Q7CUW51' where id=1; -update noar ti set b2='LQOR5V8WNGV907Q7CUW51' where id=1; -update noar tt set v0='YSRDR' where id=2; -update noar ti set v0='YSRDR' where id=2; -update noar tt set b0='EC1IY3VJPV5BT6S9RHLPR3RIK0P9T' where id=2; -update noar ti set b0='EC1IY3VJPV5BT6S9RHLPR3RIK0P9T' where id=2; -update noar tt set v0='5TQIAH62TOYG98O9AAXS73B10YGQMMG' where id=2; -update noar ti set v0='5TQIAH62TOYG98O9AAXS73B10YGQMMG' where id=2; -update noar tt set b1='CVGSJMQQ10A9XTYZOLTF75' where id=2; -update noar ti set b1='CVGSJMQQ10A9XTYZOLTF75' where id=2; -update noar tt set v0='UG61G1IU02DC' where id=2; -update noar ti set v0='UG61G1IU02DC' where id=2; -update noar tt set b2='IRJ627EIQNXIE2OO152N41H' where id=2; -update noar ti set b2='IRJ627EIQNXIE2OO152N41H' where id=2; -update noar tt set v0='RUAXU0MH' where id=3; -update noar ti set v0='RUAXU0MH' where id=3; -update noar tt set b0='DYQAB9S08O' where id=3; -update noar ti set b0='DYQAB9S08O' where id=3; -update noar tt set v0='79T1MC1AM8LWSS4JPLTM' where id=3; -update noar ti set v0='79T1MC1AM8LWSS4JPLTM' where id=3; -update noar tt set b1='0K838MO2IQ89' where id=3; -update noar ti set b1='0K838MO2IQ89' where id=3; -update noar tt set v0='U2RHCV8SD4VYMN8JXYXV9' where id=3; -update noar ti set v0='U2RHCV8SD4VYMN8JXYXV9' where id=3; -update noar tt set b2='BDVP168J' where id=3; -update noar ti set b2='BDVP168J' where id=3; -update noar tt set v0='NO8T26I920P6WHW2' where id=4; -update noar ti set v0='NO8T26I920P6WHW2' where id=4; -update noar tt set b0='ZB81ZCBMCEQW0QWL0UDSXQ' where id=4; -update noar ti set b0='ZB81ZCBMCEQW0QWL0UDSXQ' where id=4; -update noar tt set v0='923X' where id=4; -update noar ti set v0='923X' where id=4; -update noar tt set b1='EVV' where id=4; -update noar ti set b1='EVV' where id=4; -update noar tt set v0='J26PMGW0GE9O5' where id=4; -update noar ti set v0='J26PMGW0GE9O5' where id=4; -update noar tt set b2='EM' where id=4; -update noar ti set b2='EM' where id=4; -update noar tt set v0='2VVNYN6UAR7XGIVAYN3TXDRCXI' where id=5; -update noar ti set v0='2VVNYN6UAR7XGIVAYN3TXDRCXI' where id=5; -update noar tt set b0='28FI0Y8MXCU2CC6' where id=5; -update noar ti set b0='28FI0Y8MXCU2CC6' where id=5; -update noar tt set v0='BZJ42JC' where id=5; -update noar ti set v0='BZJ42JC' where id=5; -update noar tt set b1='Q' where id=5; -update noar ti set b1='Q' where id=5; -update noar tt set v0='UGY2B9' where id=5; -update noar ti set v0='UGY2B9' where id=5; -update noar tt set b2='ZZBK9NNA630N9FWDNV8VCC' where id=5; -update noar ti set b2='ZZBK9NNA630N9FWDNV8VCC' where id=5; -update noar tt set v0='60PYFUZ2KZ0U9EL2' where id=6; -update noar ti set v0='60PYFUZ2KZ0U9EL2' where id=6; -update noar tt set b0='E0GPNXK7PRX9XHBXCJDAD' where id=6; -update noar ti set b0='E0GPNXK7PRX9XHBXCJDAD' where id=6; -update noar tt set v0='M1X5T' where id=6; -update noar ti set v0='M1X5T' where id=6; -update noar tt set b1='JJV5SDS' where id=6; -update noar ti set b1='JJV5SDS' where id=6; -update noar tt set v0='29' where id=6; -update noar ti set v0='29' where id=6; -update noar tt set b2='9HHBDWFG1IU' where id=6; -update noar ti set b2='9HHBDWFG1IU' where id=6; -update noar tt set v0='UEY1BXVS41D2T3QM' where id=7; -update noar ti set v0='UEY1BXVS41D2T3QM' where id=7; -update noar tt set b0='Y54UF5X58AAPJJX0P6KIQFVNKNVK' where id=7; -update noar ti set b0='Y54UF5X58AAPJJX0P6KIQFVNKNVK' where id=7; -update noar tt set v0='IFNRKG8PG6HAX42HM7' where id=7; -update noar ti set v0='IFNRKG8PG6HAX42HM7' where id=7; -update noar tt set b1='6L22HQB9YGS3YQVZO' where id=7; -update noar ti set b1='6L22HQB9YGS3YQVZO' where id=7; -update noar tt set v0='TN5DVBFBXYSPTBS4D4RDDVMB67BIG' where id=7; -update noar ti set v0='TN5DVBFBXYSPTBS4D4RDDVMB67BIG' where id=7; -update noar tt set b2='85SHVJ96H5FWDMXWP' where id=7; -update noar ti set b2='85SHVJ96H5FWDMXWP' where id=7; -update noar tt set v0='Z5B' where id=8; -update noar ti set v0='Z5B' where id=8; -update noar tt set b0='XGWL9B7KW9631CD6WFTJZND7UQXAV' where id=8; -update noar ti set b0='XGWL9B7KW9631CD6WFTJZND7UQXAV' where id=8; -update noar tt set v0='CWLWGPLK8CXPFGPI7EB' where id=8; -update noar ti set v0='CWLWGPLK8CXPFGPI7EB' where id=8; -update noar tt set b1='H' where id=8; -update noar ti set b1='H' where id=8; -update noar tt set v0='F0DV13Q4LBKEUAKPC3NGO3ZT' where id=8; -update noar ti set v0='F0DV13Q4LBKEUAKPC3NGO3ZT' where id=8; -update noar tt set b2='47DOY1MIKDJTA' where id=8; -update noar ti set b2='47DOY1MIKDJTA' where id=8; -update noar tt set v0='IPIDSS1GA0TSF6OST3IEWEH205TS1' where id=9; -update noar ti set v0='IPIDSS1GA0TSF6OST3IEWEH205TS1' where id=9; -update noar tt set b0='8' where id=9; -update noar ti set b0='8' where id=9; -update noar tt set v0='L1YFD04D2YP9OKQ00K' where id=9; -update noar ti set v0='L1YFD04D2YP9OKQ00K' where id=9; -update noar tt set b1='JA58' where id=9; -update noar ti set b1='JA58' where id=9; -update noar tt set v0='H40W5JV3HKCXQGMF' where id=9; -update noar ti set v0='H40W5JV3HKCXQGMF' where id=9; -update noar tt set b2='OICEWOXTGPQLL5SBZI3COVK0' where id=9; -update noar ti set b2='OICEWOXTGPQLL5SBZI3COVK0' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - v0 varchar(32) not null, - b0 longblob not null, - b1 tinyblob not null, - b2 mediumblob not null -) engine=tokudb; -insert into tt values (1,'','','',''); -insert into tt values (2,'','','',''); -insert into tt values (3,'','','',''); -insert into tt values (4,'','','',''); -insert into tt values (5,'','','',''); -insert into tt values (6,'','','',''); -insert into tt values (7,'','','',''); -insert into tt values (8,'','','',''); -insert into tt values (9,'','','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='PU3EM78KC13EOL243T9K4019IPRWIPT9' where id=1; -update noar ti set v0='PU3EM78KC13EOL243T9K4019IPRWIPT9' where id=1; -update noar tt set b0='O1EL4FXXE6HL6UB4JLDZ9GDCE0M' where id=1; -update noar ti set b0='O1EL4FXXE6HL6UB4JLDZ9GDCE0M' where id=1; -update noar tt set v0='ZS' where id=1; -update noar ti set v0='ZS' where id=1; -update noar tt set b1='5DOON491BMLHG2ESO' where id=1; -update noar ti set b1='5DOON491BMLHG2ESO' where id=1; -update noar tt set v0='W9MI90OM' where id=1; -update noar ti set v0='W9MI90OM' where id=1; -update noar tt set b2='JA9KNJ1N12K57LK54N37FPI' where id=1; -update noar ti set b2='JA9KNJ1N12K57LK54N37FPI' where id=1; -update noar tt set v0='K5WL57F6S2QB6UH6RDIP2VTQD1' where id=2; -update noar ti set v0='K5WL57F6S2QB6UH6RDIP2VTQD1' where id=2; -update noar tt set b0='YOMA9VC5QZHSWW' where id=2; -update noar ti set b0='YOMA9VC5QZHSWW' where id=2; -update noar tt set v0='BNBIY5QEV9ZVAQXI' where id=2; -update noar ti set v0='BNBIY5QEV9ZVAQXI' where id=2; -update noar tt set b1='TO9B82GFVV1SB40A88C0VL' where id=2; -update noar ti set b1='TO9B82GFVV1SB40A88C0VL' where id=2; -update noar tt set v0='6H3893SDBQ41MW' where id=2; -update noar ti set v0='6H3893SDBQ41MW' where id=2; -update noar tt set b2='3WF2LSAZ29BLJP4P5IE' where id=2; -update noar ti set b2='3WF2LSAZ29BLJP4P5IE' where id=2; -update noar tt set v0='FGC5A0Q9XQTOQEXFD2J' where id=3; -update noar ti set v0='FGC5A0Q9XQTOQEXFD2J' where id=3; -update noar tt set b0='MR4ETFEZ9MKTEM9443UDZ9MGOLL1' where id=3; -update noar ti set b0='MR4ETFEZ9MKTEM9443UDZ9MGOLL1' where id=3; -update noar tt set v0='EHJ3SIELU89Q' where id=3; -update noar ti set v0='EHJ3SIELU89Q' where id=3; -update noar tt set b1='CWHXGMDBX3' where id=3; -update noar ti set b1='CWHXGMDBX3' where id=3; -update noar tt set v0='3TF3QDOHS' where id=3; -update noar ti set v0='3TF3QDOHS' where id=3; -update noar tt set b2='M3YKPTO5H4C6PP6X0TXF5Q' where id=3; -update noar ti set b2='M3YKPTO5H4C6PP6X0TXF5Q' where id=3; -update noar tt set v0='CWHXBTFQJHNCPCM8DXIPFP' where id=4; -update noar ti set v0='CWHXBTFQJHNCPCM8DXIPFP' where id=4; -update noar tt set b0='NQ4G3ZC6HGAETFG7KKI0SLWXA642' where id=4; -update noar ti set b0='NQ4G3ZC6HGAETFG7KKI0SLWXA642' where id=4; -update noar tt set v0='NZS92FP4JBZF' where id=4; -update noar ti set v0='NZS92FP4JBZF' where id=4; -update noar tt set b1='P88E' where id=4; -update noar ti set b1='P88E' where id=4; -update noar tt set v0='TKSX7PY30C4U0XMU3L6W5YE4UVL' where id=4; -update noar ti set v0='TKSX7PY30C4U0XMU3L6W5YE4UVL' where id=4; -update noar tt set b2='MFEKKPG' where id=4; -update noar ti set b2='MFEKKPG' where id=4; -update noar tt set v0='C6URJHA60YKGW1I7KURHMPN9004LCL' where id=5; -update noar ti set v0='C6URJHA60YKGW1I7KURHMPN9004LCL' where id=5; -update noar tt set b0='Q8R3IJUM02Y2WEDL6UY61N5K02EZJRTA' where id=5; -update noar ti set b0='Q8R3IJUM02Y2WEDL6UY61N5K02EZJRTA' where id=5; -update noar tt set v0='94T3FOLJCXXWGM' where id=5; -update noar ti set v0='94T3FOLJCXXWGM' where id=5; -update noar tt set b1='LKO3' where id=5; -update noar ti set b1='LKO3' where id=5; -update noar tt set v0='IML7U3CCMJWATB' where id=5; -update noar ti set v0='IML7U3CCMJWATB' where id=5; -update noar tt set b2='IRZGRE' where id=5; -update noar ti set b2='IRZGRE' where id=5; -update noar tt set v0='SCAS7O8V7XQER' where id=6; -update noar ti set v0='SCAS7O8V7XQER' where id=6; -update noar tt set b0='GYWPLARQZ19TWMKKPV9RXXRRIX' where id=6; -update noar ti set b0='GYWPLARQZ19TWMKKPV9RXXRRIX' where id=6; -update noar tt set v0='M744VJHSRQVPSB6Z8M46TGMDOMH2LMT8' where id=6; -update noar ti set v0='M744VJHSRQVPSB6Z8M46TGMDOMH2LMT8' where id=6; -update noar tt set b1='M7HADTIAYFFZ2CZA3JRW48GI6' where id=6; -update noar ti set b1='M7HADTIAYFFZ2CZA3JRW48GI6' where id=6; -update noar tt set v0='L2NBU13U2JUQNSFTR2L' where id=6; -update noar ti set v0='L2NBU13U2JUQNSFTR2L' where id=6; -update noar tt set b2='DE1246A53PW4EF0K3VMIL5G' where id=6; -update noar ti set b2='DE1246A53PW4EF0K3VMIL5G' where id=6; -update noar tt set v0='9J79ZA0WS33TSPQ7BUJCABZ' where id=7; -update noar ti set v0='9J79ZA0WS33TSPQ7BUJCABZ' where id=7; -update noar tt set b0='P3' where id=7; -update noar ti set b0='P3' where id=7; -update noar tt set v0='BPBPYRZ5557DD3SUD' where id=7; -update noar ti set v0='BPBPYRZ5557DD3SUD' where id=7; -update noar tt set b1='P60SQ1UJO40J00TP' where id=7; -update noar ti set b1='P60SQ1UJO40J00TP' where id=7; -update noar tt set v0='LC1RB9ENHEKJ4' where id=7; -update noar ti set v0='LC1RB9ENHEKJ4' where id=7; -update noar tt set b2='K287TBFS03Q6SSEEC42LTZNHR' where id=7; -update noar ti set b2='K287TBFS03Q6SSEEC42LTZNHR' where id=7; -update noar tt set v0='ZTL4RJDSV5UU8D4YTLF38825PVFH42' where id=8; -update noar ti set v0='ZTL4RJDSV5UU8D4YTLF38825PVFH42' where id=8; -update noar tt set b0='BAMXRTMNSY3F4SWXQYZVZQO83DVZVXD0' where id=8; -update noar ti set b0='BAMXRTMNSY3F4SWXQYZVZQO83DVZVXD0' where id=8; -update noar tt set v0='U5JFGIIHE8T7OYRYECDB6SOZRDZ1R' where id=8; -update noar ti set v0='U5JFGIIHE8T7OYRYECDB6SOZRDZ1R' where id=8; -update noar tt set b1='ZCCJCA6ADQJTB09W0I8W3HNME' where id=8; -update noar ti set b1='ZCCJCA6ADQJTB09W0I8W3HNME' where id=8; -update noar tt set v0='7QAXCDCJSRBWTS7LHFC2ZH' where id=8; -update noar ti set v0='7QAXCDCJSRBWTS7LHFC2ZH' where id=8; -update noar tt set b2='99N2UPRFUGZ0DH' where id=8; -update noar ti set b2='99N2UPRFUGZ0DH' where id=8; -update noar tt set v0='IYK6UQA' where id=9; -update noar ti set v0='IYK6UQA' where id=9; -update noar tt set b0='EPQ51VE7P4H9T721Q89XFI8NRHL7S3M' where id=9; -update noar ti set b0='EPQ51VE7P4H9T721Q89XFI8NRHL7S3M' where id=9; -update noar tt set v0='OXWX5PWC7R0ZWJKZKTDROF' where id=9; -update noar ti set v0='OXWX5PWC7R0ZWJKZKTDROF' where id=9; -update noar tt set b1='SAAXXBPEISOGETTZWTCL' where id=9; -update noar ti set b1='SAAXXBPEISOGETTZWTCL' where id=9; -update noar tt set v0='A0FTT95ECJ9A7M9CBVXDURG' where id=9; -update noar ti set v0='A0FTT95ECJ9A7M9CBVXDURG' where id=9; -update noar tt set b2='TJ42' where id=9; -update noar ti set b2='TJ42' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - v0 varchar(256) not null, - b0 longblob not null, - b1 tinyblob not null, - b2 mediumblob not null -) engine=tokudb; -insert into tt values (1,'','','',''); -insert into tt values (2,'','','',''); -insert into tt values (3,'','','',''); -insert into tt values (4,'','','',''); -insert into tt values (5,'','','',''); -insert into tt values (6,'','','',''); -insert into tt values (7,'','','',''); -insert into tt values (8,'','','',''); -insert into tt values (9,'','','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='EDGZ' where id=1; -update noar ti set v0='EDGZ' where id=1; -update noar tt set b0='LY1ZQXGR5VZCG' where id=1; -update noar ti set b0='LY1ZQXGR5VZCG' where id=1; -update noar tt set v0='1WCOIK6IX1' where id=1; -update noar ti set v0='1WCOIK6IX1' where id=1; -update noar tt set b1='UXML1V' where id=1; -update noar ti set b1='UXML1V' where id=1; -update noar tt set v0='Q58HLME7JQQR7Q09S' where id=1; -update noar ti set v0='Q58HLME7JQQR7Q09S' where id=1; -update noar tt set b2='J19SCMYZXROWONP5' where id=1; -update noar ti set b2='J19SCMYZXROWONP5' where id=1; -update noar tt set v0='Q3WCQBSGBGPO7' where id=2; -update noar ti set v0='Q3WCQBSGBGPO7' where id=2; -update noar tt set b0='EXOLCMZSGKVB1MH8VFZ08528CQXUWFN' where id=2; -update noar ti set b0='EXOLCMZSGKVB1MH8VFZ08528CQXUWFN' where id=2; -update noar tt set v0='4PT' where id=2; -update noar ti set v0='4PT' where id=2; -update noar tt set b1='TI4ND0PN5C' where id=2; -update noar ti set b1='TI4ND0PN5C' where id=2; -update noar tt set v0='DZXS' where id=2; -update noar ti set v0='DZXS' where id=2; -update noar tt set b2='G7OUN4L43' where id=2; -update noar ti set b2='G7OUN4L43' where id=2; -update noar tt set v0='URLY1C4ACI5GCXO4CXX' where id=3; -update noar ti set v0='URLY1C4ACI5GCXO4CXX' where id=3; -update noar tt set b0='8VEB2' where id=3; -update noar ti set b0='8VEB2' where id=3; -update noar tt set v0='77IY79DQ78MPKS2XZ5ZHI2D32O6GC' where id=3; -update noar ti set v0='77IY79DQ78MPKS2XZ5ZHI2D32O6GC' where id=3; -update noar tt set b1='PMWL2CZXV17YH1OOFVOGZ5OUH331' where id=3; -update noar ti set b1='PMWL2CZXV17YH1OOFVOGZ5OUH331' where id=3; -update noar tt set v0='3LXWSFYZLAH3MR8PDIBX3MX' where id=3; -update noar ti set v0='3LXWSFYZLAH3MR8PDIBX3MX' where id=3; -update noar tt set b2='X3S7GUZJ1' where id=3; -update noar ti set b2='X3S7GUZJ1' where id=3; -update noar tt set v0='1W9S8' where id=4; -update noar ti set v0='1W9S8' where id=4; -update noar tt set b0='USZE17MLNOXAJE0FFZ8EVTUCTTZYJ9XH' where id=4; -update noar ti set b0='USZE17MLNOXAJE0FFZ8EVTUCTTZYJ9XH' where id=4; -update noar tt set v0='N0U8QCM0EN8HRO34HEYNHW4Z' where id=4; -update noar ti set v0='N0U8QCM0EN8HRO34HEYNHW4Z' where id=4; -update noar tt set b1='7RXWG4BW36Y54041ZZXA7IIP4GMCDJFA' where id=4; -update noar ti set b1='7RXWG4BW36Y54041ZZXA7IIP4GMCDJFA' where id=4; -update noar tt set v0='EKPT46X2S7VOX1ONCVEGFEL5BWUL' where id=4; -update noar ti set v0='EKPT46X2S7VOX1ONCVEGFEL5BWUL' where id=4; -update noar tt set b2='GZ04H5FE0HRQT38XBQVVR4RD2L7A' where id=4; -update noar ti set b2='GZ04H5FE0HRQT38XBQVVR4RD2L7A' where id=4; -update noar tt set v0='9EWYHRP0D8' where id=5; -update noar ti set v0='9EWYHRP0D8' where id=5; -update noar tt set b0='LPGD' where id=5; -update noar ti set b0='LPGD' where id=5; -update noar tt set v0='XG7BF8KE' where id=5; -update noar ti set v0='XG7BF8KE' where id=5; -update noar tt set b1='U5GPP2BCJO9N1WYP30' where id=5; -update noar ti set b1='U5GPP2BCJO9N1WYP30' where id=5; -update noar tt set v0='UV5XL42YUWWXG' where id=5; -update noar ti set v0='UV5XL42YUWWXG' where id=5; -update noar tt set b2='7MN5NZD36Q96W9E' where id=5; -update noar ti set b2='7MN5NZD36Q96W9E' where id=5; -update noar tt set v0='AGCT3IRDSD3PWB5AL3WJMPW6K2W0' where id=6; -update noar ti set v0='AGCT3IRDSD3PWB5AL3WJMPW6K2W0' where id=6; -update noar tt set b0='VO' where id=6; -update noar ti set b0='VO' where id=6; -update noar tt set v0='Y6' where id=6; -update noar ti set v0='Y6' where id=6; -update noar tt set b1='9CFEKCL301KCECC0BIN6JZ5ODKKXVT9R' where id=6; -update noar ti set b1='9CFEKCL301KCECC0BIN6JZ5ODKKXVT9R' where id=6; -update noar tt set v0='S5FKO2KP' where id=6; -update noar ti set v0='S5FKO2KP' where id=6; -update noar tt set b2='R' where id=6; -update noar ti set b2='R' where id=6; -update noar tt set v0='87TAH6H3QYRC99KJV2KRK469F' where id=7; -update noar ti set v0='87TAH6H3QYRC99KJV2KRK469F' where id=7; -update noar tt set b0='FSPDL686DJ' where id=7; -update noar ti set b0='FSPDL686DJ' where id=7; -update noar tt set v0='C3FP17RHYLQJ04BMRK8' where id=7; -update noar ti set v0='C3FP17RHYLQJ04BMRK8' where id=7; -update noar tt set b1='J4RDQJY7MXR8Q9D' where id=7; -update noar ti set b1='J4RDQJY7MXR8Q9D' where id=7; -update noar tt set v0='DEV' where id=7; -update noar ti set v0='DEV' where id=7; -update noar tt set b2='5TTD5X7LUE9F1GAO32P1CSUCJ' where id=7; -update noar ti set b2='5TTD5X7LUE9F1GAO32P1CSUCJ' where id=7; -update noar tt set v0='A4PHIJ1GOWESVUQURKMR' where id=8; -update noar ti set v0='A4PHIJ1GOWESVUQURKMR' where id=8; -update noar tt set b0='5VU3ZUUBTIF8TLU3SNZ35FWATBR96' where id=8; -update noar ti set b0='5VU3ZUUBTIF8TLU3SNZ35FWATBR96' where id=8; -update noar tt set v0='12VJKL4HGDCWWNHD' where id=8; -update noar ti set v0='12VJKL4HGDCWWNHD' where id=8; -update noar tt set b1='7YI' where id=8; -update noar ti set b1='7YI' where id=8; -update noar tt set v0='KIJG51BVAVB' where id=8; -update noar ti set v0='KIJG51BVAVB' where id=8; -update noar tt set b2='I0ED9S52N7BGL' where id=8; -update noar ti set b2='I0ED9S52N7BGL' where id=8; -update noar tt set v0='XXARA4LJ' where id=9; -update noar ti set v0='XXARA4LJ' where id=9; -update noar tt set b0='PAOK10M2KCW47HL5LP41TYEH3KSEGBQ' where id=9; -update noar ti set b0='PAOK10M2KCW47HL5LP41TYEH3KSEGBQ' where id=9; -update noar tt set v0='7' where id=9; -update noar ti set v0='7' where id=9; -update noar tt set b1='2OPAV4T6YIFJ0A5IURKFCLSH6' where id=9; -update noar ti set b1='2OPAV4T6YIFJ0A5IURKFCLSH6' where id=9; -update noar tt set v0='SM3KD9E1499042WLSJL' where id=9; -update noar ti set v0='SM3KD9E1499042WLSJL' where id=9; -update noar tt set b2='ZYZRERVCZYTT07BHP9YAIDG' where id=9; -update noar ti set b2='ZYZRERVCZYTT07BHP9YAIDG' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - v0 varchar(32) null, - b0 longblob null, - b1 tinyblob null, - b2 longblob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='RPULX62LW9PWNL1BBV' where id=1; -update noar ti set v0='RPULX62LW9PWNL1BBV' where id=1; -update noar tt set b0='EBN6H433WR' where id=1; -update noar ti set b0='EBN6H433WR' where id=1; -update noar tt set v0='60NROLQQ' where id=1; -update noar ti set v0='60NROLQQ' where id=1; -update noar tt set b1='GWKLRG9MUHC75DF0XL1JPC1N' where id=1; -update noar ti set b1='GWKLRG9MUHC75DF0XL1JPC1N' where id=1; -update noar tt set v0='LCT' where id=1; -update noar ti set v0='LCT' where id=1; -update noar tt set b2='GI5KZZ99EBI40COB8MF' where id=1; -update noar ti set b2='GI5KZZ99EBI40COB8MF' where id=1; -update noar tt set v0='5KIKJIPI2O' where id=2; -update noar ti set v0='5KIKJIPI2O' where id=2; -update noar tt set b0='6FPOWKKA7T453RNKFDZEA' where id=2; -update noar ti set b0='6FPOWKKA7T453RNKFDZEA' where id=2; -update noar tt set v0='9P8EWPCORITZOW120GXQKB120UO2Y5C' where id=2; -update noar ti set v0='9P8EWPCORITZOW120GXQKB120UO2Y5C' where id=2; -update noar tt set b1='U1EG0N56F8B9LPK6NY' where id=2; -update noar ti set b1='U1EG0N56F8B9LPK6NY' where id=2; -update noar tt set v0='VAI' where id=2; -update noar ti set v0='VAI' where id=2; -update noar tt set b2='JERVQIXJAIW0MO7112GW' where id=2; -update noar ti set b2='JERVQIXJAIW0MO7112GW' where id=2; -update noar tt set v0='U6Z' where id=3; -update noar ti set v0='U6Z' where id=3; -update noar tt set b0='DKV6A4' where id=3; -update noar ti set b0='DKV6A4' where id=3; -update noar tt set v0='G1PU5MW3D1VNOIW4' where id=3; -update noar ti set v0='G1PU5MW3D1VNOIW4' where id=3; -update noar tt set b1='KMEQVKZN8PS9J1HIG8WTJGV' where id=3; -update noar ti set b1='KMEQVKZN8PS9J1HIG8WTJGV' where id=3; -update noar tt set v0='G19NBCB' where id=3; -update noar ti set v0='G19NBCB' where id=3; -update noar tt set b2='X4O' where id=3; -update noar ti set b2='X4O' where id=3; -update noar tt set v0='HYZ66QZUP4616J63S3HI7PADW1XF' where id=4; -update noar ti set v0='HYZ66QZUP4616J63S3HI7PADW1XF' where id=4; -update noar tt set b0='A69A2R5RHBQW4G8DOYPD325N9E2O' where id=4; -update noar ti set b0='A69A2R5RHBQW4G8DOYPD325N9E2O' where id=4; -update noar tt set v0='3W6WSQHAV3UQ3KNIKGVCJKSU6859ECV' where id=4; -update noar ti set v0='3W6WSQHAV3UQ3KNIKGVCJKSU6859ECV' where id=4; -update noar tt set b1='ARGOPXPZ9ZZRNMKVJ4E1J5Y49' where id=4; -update noar ti set b1='ARGOPXPZ9ZZRNMKVJ4E1J5Y49' where id=4; -update noar tt set v0='SWL9BUMAZOWZQPOTVJWH' where id=4; -update noar ti set v0='SWL9BUMAZOWZQPOTVJWH' where id=4; -update noar tt set b2='JC0JMDLMA' where id=4; -update noar ti set b2='JC0JMDLMA' where id=4; -update noar tt set v0='OWM2KBXJKS033BE4MS17IX' where id=5; -update noar ti set v0='OWM2KBXJKS033BE4MS17IX' where id=5; -update noar tt set b0='XSWV23J92G16F' where id=5; -update noar ti set b0='XSWV23J92G16F' where id=5; -update noar tt set v0='BE5ZN0HOB5XRA8N8780V1JXI0' where id=5; -update noar ti set v0='BE5ZN0HOB5XRA8N8780V1JXI0' where id=5; -update noar tt set b1='OYL1R79EVXBUNHOF3DMA0UIQV94' where id=5; -update noar ti set b1='OYL1R79EVXBUNHOF3DMA0UIQV94' where id=5; -update noar tt set v0='CWB06LM81LYJO9P1MJMLY743OVA0D8P' where id=5; -update noar ti set v0='CWB06LM81LYJO9P1MJMLY743OVA0D8P' where id=5; -update noar tt set b2='T8VO7Z72AVLOIHFH' where id=5; -update noar ti set b2='T8VO7Z72AVLOIHFH' where id=5; -update noar tt set v0='JIJ' where id=6; -update noar ti set v0='JIJ' where id=6; -update noar tt set b0='V382QTI0XDOHNMBHASS' where id=6; -update noar ti set b0='V382QTI0XDOHNMBHASS' where id=6; -update noar tt set v0='PHDU8W5R9WSBVV' where id=6; -update noar ti set v0='PHDU8W5R9WSBVV' where id=6; -update noar tt set b1='C0' where id=6; -update noar ti set b1='C0' where id=6; -update noar tt set v0='HMZSR5CLHHRPXC67' where id=6; -update noar ti set v0='HMZSR5CLHHRPXC67' where id=6; -update noar tt set b2='2LEXRJ' where id=6; -update noar ti set b2='2LEXRJ' where id=6; -update noar tt set v0='C5UEJCZ44ZSKWASGCHOCZS5XPI' where id=7; -update noar ti set v0='C5UEJCZ44ZSKWASGCHOCZS5XPI' where id=7; -update noar tt set b0='NSJ32ESFTEURC8Q1QUISI3Q' where id=7; -update noar ti set b0='NSJ32ESFTEURC8Q1QUISI3Q' where id=7; -update noar tt set v0='U9A6JGW3F1QERDQKC' where id=7; -update noar ti set v0='U9A6JGW3F1QERDQKC' where id=7; -update noar tt set b1='A4QS9VL' where id=7; -update noar ti set b1='A4QS9VL' where id=7; -update noar tt set v0='T90E75CMRO2MLLSQ0A736U2RQYZH' where id=7; -update noar ti set v0='T90E75CMRO2MLLSQ0A736U2RQYZH' where id=7; -update noar tt set b2='JEY07ZTACQSBJ5EMAP8N' where id=7; -update noar ti set b2='JEY07ZTACQSBJ5EMAP8N' where id=7; -update noar tt set v0='107OUA94OD61MYZKSWWED5HZ13H9U5' where id=8; -update noar ti set v0='107OUA94OD61MYZKSWWED5HZ13H9U5' where id=8; -update noar tt set b0='2TTWCMPE38E' where id=8; -update noar ti set b0='2TTWCMPE38E' where id=8; -update noar tt set v0='YTY0086ZWN3MLYD9' where id=8; -update noar ti set v0='YTY0086ZWN3MLYD9' where id=8; -update noar tt set b1='SVV9MHT0T11KZHMW1MD2LSY37JI' where id=8; -update noar ti set b1='SVV9MHT0T11KZHMW1MD2LSY37JI' where id=8; -update noar tt set v0='4K6QCBNS3MBNPHI1XD1ZCIC8J47B18UD' where id=8; -update noar ti set v0='4K6QCBNS3MBNPHI1XD1ZCIC8J47B18UD' where id=8; -update noar tt set b2='8J9DMSY8YQUT28SJUIVLD' where id=8; -update noar ti set b2='8J9DMSY8YQUT28SJUIVLD' where id=8; -update noar tt set v0='9AG61GUQBY8XNS' where id=9; -update noar ti set v0='9AG61GUQBY8XNS' where id=9; -update noar tt set b0='2FOE7XGXRRXZ0CP2CB1XF7Y' where id=9; -update noar ti set b0='2FOE7XGXRRXZ0CP2CB1XF7Y' where id=9; -update noar tt set v0='ATK4K28K' where id=9; -update noar ti set v0='ATK4K28K' where id=9; -update noar tt set b1='KENHIFIEMDMC' where id=9; -update noar ti set b1='KENHIFIEMDMC' where id=9; -update noar tt set v0='QETX6P2KHF77839KVZEUZFX6MRV' where id=9; -update noar ti set v0='QETX6P2KHF77839KVZEUZFX6MRV' where id=9; -update noar tt set b2='GWPCEJ7Z3477H9QRG' where id=9; -update noar ti set b2='GWPCEJ7Z3477H9QRG' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - v0 varchar(256) null, - b0 longblob null, - b1 tinyblob null, - b2 longblob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='58BLDTUHYA3L9SSP455H1' where id=1; -update noar ti set v0='58BLDTUHYA3L9SSP455H1' where id=1; -update noar tt set b0='5AAQ6W7ZXBB25WA2HH4' where id=1; -update noar ti set b0='5AAQ6W7ZXBB25WA2HH4' where id=1; -update noar tt set v0='Y4IMF' where id=1; -update noar ti set v0='Y4IMF' where id=1; -update noar tt set b1='NM72EQ9ONP' where id=1; -update noar ti set b1='NM72EQ9ONP' where id=1; -update noar tt set v0='M6' where id=1; -update noar ti set v0='M6' where id=1; -update noar tt set b2='Z48P1N9PHFQX3' where id=1; -update noar ti set b2='Z48P1N9PHFQX3' where id=1; -update noar tt set v0='4EUQXPC3FPCGGT3' where id=2; -update noar ti set v0='4EUQXPC3FPCGGT3' where id=2; -update noar tt set b0='91SLTZYN3' where id=2; -update noar ti set b0='91SLTZYN3' where id=2; -update noar tt set v0='WAEH1BDR9' where id=2; -update noar ti set v0='WAEH1BDR9' where id=2; -update noar tt set b1='G5LYTOO3BUPN2YMPCOOG224VHFDV5B' where id=2; -update noar ti set b1='G5LYTOO3BUPN2YMPCOOG224VHFDV5B' where id=2; -update noar tt set v0='3Q9OTAOFAEUKMTNXGAAR' where id=2; -update noar ti set v0='3Q9OTAOFAEUKMTNXGAAR' where id=2; -update noar tt set b2='SOZXB0T23OOJ' where id=2; -update noar ti set b2='SOZXB0T23OOJ' where id=2; -update noar tt set v0='VBTA34YD' where id=3; -update noar ti set v0='VBTA34YD' where id=3; -update noar tt set b0='MWN05PD8' where id=3; -update noar ti set b0='MWN05PD8' where id=3; -update noar tt set v0='L62NDWVIUX5ZX1ACNC3SIAT1' where id=3; -update noar ti set v0='L62NDWVIUX5ZX1ACNC3SIAT1' where id=3; -update noar tt set b1='ECEI' where id=3; -update noar ti set b1='ECEI' where id=3; -update noar tt set v0='C6' where id=3; -update noar ti set v0='C6' where id=3; -update noar tt set b2='8P5H68F' where id=3; -update noar ti set b2='8P5H68F' where id=3; -update noar tt set v0='3FICLOL8BJTD7SXE' where id=4; -update noar ti set v0='3FICLOL8BJTD7SXE' where id=4; -update noar tt set b0='Y7KL5NS9LEXDQ2KKTT2DHL4816' where id=4; -update noar ti set b0='Y7KL5NS9LEXDQ2KKTT2DHL4816' where id=4; -update noar tt set v0='U26ZCEPQJ5OFB' where id=4; -update noar ti set v0='U26ZCEPQJ5OFB' where id=4; -update noar tt set b1='YFM8S' where id=4; -update noar ti set b1='YFM8S' where id=4; -update noar tt set v0='W7Y1Q9F0J0T6SS9IGL012WT' where id=4; -update noar ti set v0='W7Y1Q9F0J0T6SS9IGL012WT' where id=4; -update noar tt set b2='PPK' where id=4; -update noar ti set b2='PPK' where id=4; -update noar tt set v0='Z5RSICBC2X5B2ACKDR193O56' where id=5; -update noar ti set v0='Z5RSICBC2X5B2ACKDR193O56' where id=5; -update noar tt set b0='RE213' where id=5; -update noar ti set b0='RE213' where id=5; -update noar tt set v0='TZ' where id=5; -update noar ti set v0='TZ' where id=5; -update noar tt set b1='J6' where id=5; -update noar ti set b1='J6' where id=5; -update noar tt set v0='OL1VSJ51WE9V1P7' where id=5; -update noar ti set v0='OL1VSJ51WE9V1P7' where id=5; -update noar tt set b2='S' where id=5; -update noar ti set b2='S' where id=5; -update noar tt set v0='4X7OIPGWT9966Y7UMWEFGPEU3JS' where id=6; -update noar ti set v0='4X7OIPGWT9966Y7UMWEFGPEU3JS' where id=6; -update noar tt set b0='BB7SVEU7Z5LDJ9DLM5' where id=6; -update noar ti set b0='BB7SVEU7Z5LDJ9DLM5' where id=6; -update noar tt set v0='CMPL5ODE8KGFYMX4X' where id=6; -update noar ti set v0='CMPL5ODE8KGFYMX4X' where id=6; -update noar tt set b1='A8LT6A2389RXW8TWZV711R2LFBHPYZ' where id=6; -update noar ti set b1='A8LT6A2389RXW8TWZV711R2LFBHPYZ' where id=6; -update noar tt set v0='W0E6GTBF' where id=6; -update noar ti set v0='W0E6GTBF' where id=6; -update noar tt set b2='R8MP28VSR5A8F2FBQ4OT5RJZ2F27OLK' where id=6; -update noar ti set b2='R8MP28VSR5A8F2FBQ4OT5RJZ2F27OLK' where id=6; -update noar tt set v0='6D3U9MM3K6QXQM3QFT7YBNSMY145TS' where id=7; -update noar ti set v0='6D3U9MM3K6QXQM3QFT7YBNSMY145TS' where id=7; -update noar tt set b0='O1A00MQB10MI8' where id=7; -update noar ti set b0='O1A00MQB10MI8' where id=7; -update noar tt set v0='DQMRXZY1QLUXO0SAJLE8B' where id=7; -update noar ti set v0='DQMRXZY1QLUXO0SAJLE8B' where id=7; -update noar tt set b1='QL59' where id=7; -update noar ti set b1='QL59' where id=7; -update noar tt set v0='FR1IISP7H0EZE1BKUM8OC' where id=7; -update noar ti set v0='FR1IISP7H0EZE1BKUM8OC' where id=7; -update noar tt set b2='5DLR63GH6D1HNTR1GH' where id=7; -update noar ti set b2='5DLR63GH6D1HNTR1GH' where id=7; -update noar tt set v0='B6HLS9E2I63HRS62BQ5' where id=8; -update noar ti set v0='B6HLS9E2I63HRS62BQ5' where id=8; -update noar tt set b0='M9B7QL297VR9RG9SZGT0MNEO' where id=8; -update noar ti set b0='M9B7QL297VR9RG9SZGT0MNEO' where id=8; -update noar tt set v0='0PFH3UIO4S4MF1VPG4ODF51Y5HVZ0WS' where id=8; -update noar ti set v0='0PFH3UIO4S4MF1VPG4ODF51Y5HVZ0WS' where id=8; -update noar tt set b1='3G9R3JMB194T3UBMOS0GI5KY' where id=8; -update noar ti set b1='3G9R3JMB194T3UBMOS0GI5KY' where id=8; -update noar tt set v0='TGBG4QLZO18CL9XF6LCD2' where id=8; -update noar ti set v0='TGBG4QLZO18CL9XF6LCD2' where id=8; -update noar tt set b2='7M3XU0L4PD1Y8ABNLZLR3OS' where id=8; -update noar ti set b2='7M3XU0L4PD1Y8ABNLZLR3OS' where id=8; -update noar tt set v0='31OMU1T13401V5NUK' where id=9; -update noar ti set v0='31OMU1T13401V5NUK' where id=9; -update noar tt set b0='PQ3HSSEWF4O164ZAT' where id=9; -update noar ti set b0='PQ3HSSEWF4O164ZAT' where id=9; -update noar tt set v0='AFAUHUC' where id=9; -update noar ti set v0='AFAUHUC' where id=9; -update noar tt set b1='5VDUXHIGXINJAX2BPJLQH4U5SV5' where id=9; -update noar ti set b1='5VDUXHIGXINJAX2BPJLQH4U5SV5' where id=9; -update noar tt set v0='YP' where id=9; -update noar ti set v0='YP' where id=9; -update noar tt set b2='4U5F6DOHHLIXCSJCWIK5ZILOY63Y5' where id=9; -update noar ti set b2='4U5F6DOHHLIXCSJCWIK5ZILOY63Y5' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - v0 varchar(32) not null, - b0 longblob not null, - b1 tinyblob not null, - b2 longblob not null -) engine=tokudb; -insert into tt values (1,'','','',''); -insert into tt values (2,'','','',''); -insert into tt values (3,'','','',''); -insert into tt values (4,'','','',''); -insert into tt values (5,'','','',''); -insert into tt values (6,'','','',''); -insert into tt values (7,'','','',''); -insert into tt values (8,'','','',''); -insert into tt values (9,'','','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='PFZI1ZDQWRW79BR' where id=1; -update noar ti set v0='PFZI1ZDQWRW79BR' where id=1; -update noar tt set b0='ZY4' where id=1; -update noar ti set b0='ZY4' where id=1; -update noar tt set v0='NCWVA3LUVESHQ046HQI1VLHRAU38YA0' where id=1; -update noar ti set v0='NCWVA3LUVESHQ046HQI1VLHRAU38YA0' where id=1; -update noar tt set b1='DBW5MIYOW66JF' where id=1; -update noar ti set b1='DBW5MIYOW66JF' where id=1; -update noar tt set v0='BTJ8P0F7Z9A55BG17QMGH0URYIN' where id=1; -update noar ti set v0='BTJ8P0F7Z9A55BG17QMGH0URYIN' where id=1; -update noar tt set b2='LCUB' where id=1; -update noar ti set b2='LCUB' where id=1; -update noar tt set v0='1Q3G' where id=2; -update noar ti set v0='1Q3G' where id=2; -update noar tt set b0='6V7DPI' where id=2; -update noar ti set b0='6V7DPI' where id=2; -update noar tt set v0='Q2EEOCM7TZKRM9DM' where id=2; -update noar ti set v0='Q2EEOCM7TZKRM9DM' where id=2; -update noar tt set b1='19RO1G' where id=2; -update noar ti set b1='19RO1G' where id=2; -update noar tt set v0='GK4ERLUA2VYO' where id=2; -update noar ti set v0='GK4ERLUA2VYO' where id=2; -update noar tt set b2='LR8F35OLYZZZ5CULEQTJ' where id=2; -update noar ti set b2='LR8F35OLYZZZ5CULEQTJ' where id=2; -update noar tt set v0='FJTVQ' where id=3; -update noar ti set v0='FJTVQ' where id=3; -update noar tt set b0='L6MH3B8YISILMLWQMEZYQ5B1UVLWOE' where id=3; -update noar ti set b0='L6MH3B8YISILMLWQMEZYQ5B1UVLWOE' where id=3; -update noar tt set v0='YSUUP05OQI53S1AVZSSY048WOYID04' where id=3; -update noar ti set v0='YSUUP05OQI53S1AVZSSY048WOYID04' where id=3; -update noar tt set b1='KFA75OEBW4MJW9N2GW' where id=3; -update noar ti set b1='KFA75OEBW4MJW9N2GW' where id=3; -update noar tt set v0='F68IZ0374' where id=3; -update noar ti set v0='F68IZ0374' where id=3; -update noar tt set b2='ZXS8XWVM35DBD' where id=3; -update noar ti set b2='ZXS8XWVM35DBD' where id=3; -update noar tt set v0='O57L' where id=4; -update noar ti set v0='O57L' where id=4; -update noar tt set b0='7X4BT8LV' where id=4; -update noar ti set b0='7X4BT8LV' where id=4; -update noar tt set v0='CN9YUBSTBQGUIDFM05UKAF' where id=4; -update noar ti set v0='CN9YUBSTBQGUIDFM05UKAF' where id=4; -update noar tt set b1='IT742DH35MG0ZZL59FD3' where id=4; -update noar ti set b1='IT742DH35MG0ZZL59FD3' where id=4; -update noar tt set v0='TCNJYKTBL33MLG10' where id=4; -update noar ti set v0='TCNJYKTBL33MLG10' where id=4; -update noar tt set b2='HZ5CHOJ7K6CB7LD15N62TO4YEM7BG3' where id=4; -update noar ti set b2='HZ5CHOJ7K6CB7LD15N62TO4YEM7BG3' where id=4; -update noar tt set v0='AGW0EZFKVV' where id=5; -update noar ti set v0='AGW0EZFKVV' where id=5; -update noar tt set b0='3I5X9D' where id=5; -update noar ti set b0='3I5X9D' where id=5; -update noar tt set v0='SYTLOCLUI3PQIY2WEAO442O3' where id=5; -update noar ti set v0='SYTLOCLUI3PQIY2WEAO442O3' where id=5; -update noar tt set b1='HY5VK58ER70PZASX4' where id=5; -update noar ti set b1='HY5VK58ER70PZASX4' where id=5; -update noar tt set v0='EVCKXHJJNSCKB48XT' where id=5; -update noar ti set v0='EVCKXHJJNSCKB48XT' where id=5; -update noar tt set b2='5T26V6C47MOUDCXLHB9Z8N' where id=5; -update noar ti set b2='5T26V6C47MOUDCXLHB9Z8N' where id=5; -update noar tt set v0='A065D7RN1JT56EJQV' where id=6; -update noar ti set v0='A065D7RN1JT56EJQV' where id=6; -update noar tt set b0='R9KWS0UEOUZ394' where id=6; -update noar ti set b0='R9KWS0UEOUZ394' where id=6; -update noar tt set v0='S55FYWZQVX' where id=6; -update noar ti set v0='S55FYWZQVX' where id=6; -update noar tt set b1='OTMPKHQNZFJNI' where id=6; -update noar ti set b1='OTMPKHQNZFJNI' where id=6; -update noar tt set v0='E4P3B' where id=6; -update noar ti set v0='E4P3B' where id=6; -update noar tt set b2='OKQWF8P0C4S6TR05BTF1' where id=6; -update noar ti set b2='OKQWF8P0C4S6TR05BTF1' where id=6; -update noar tt set v0='VB6L3HT40EEOEUZ8ADDHD9YDW7LMRIH0' where id=7; -update noar ti set v0='VB6L3HT40EEOEUZ8ADDHD9YDW7LMRIH0' where id=7; -update noar tt set b0='GRVCDP53ZVKTH05V' where id=7; -update noar ti set b0='GRVCDP53ZVKTH05V' where id=7; -update noar tt set v0='BDLOGIPIRIS' where id=7; -update noar ti set v0='BDLOGIPIRIS' where id=7; -update noar tt set b1='7HSQVQC01PPQ' where id=7; -update noar ti set b1='7HSQVQC01PPQ' where id=7; -update noar tt set v0='84AX4UFWW' where id=7; -update noar ti set v0='84AX4UFWW' where id=7; -update noar tt set b2='IAIU' where id=7; -update noar ti set b2='IAIU' where id=7; -update noar tt set v0='FW3H1K4TJ9TINYXVPYZ9' where id=8; -update noar ti set v0='FW3H1K4TJ9TINYXVPYZ9' where id=8; -update noar tt set b0='7ZI1B' where id=8; -update noar ti set b0='7ZI1B' where id=8; -update noar tt set v0='CFGJD7O' where id=8; -update noar ti set v0='CFGJD7O' where id=8; -update noar tt set b1='XNEOK0CD5UAZO3PE631R825L7IXE' where id=8; -update noar ti set b1='XNEOK0CD5UAZO3PE631R825L7IXE' where id=8; -update noar tt set v0='N8498UCGW8O8ZDHXI11' where id=8; -update noar ti set v0='N8498UCGW8O8ZDHXI11' where id=8; -update noar tt set b2='CMOL' where id=8; -update noar ti set b2='CMOL' where id=8; -update noar tt set v0='003' where id=9; -update noar ti set v0='003' where id=9; -update noar tt set b0='8RS' where id=9; -update noar ti set b0='8RS' where id=9; -update noar tt set v0='OH85JETPP' where id=9; -update noar ti set v0='OH85JETPP' where id=9; -update noar tt set b1='GYUQAX51UEX2V' where id=9; -update noar ti set b1='GYUQAX51UEX2V' where id=9; -update noar tt set v0='UM2XY' where id=9; -update noar ti set v0='UM2XY' where id=9; -update noar tt set b2='SFGJ8CMU5B4XL35M9EVPO85LQ9RFN33' where id=9; -update noar ti set b2='SFGJ8CMU5B4XL35M9EVPO85LQ9RFN33' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - v0 varchar(256) not null, - b0 longblob not null, - b1 tinyblob not null, - b2 longblob not null -) engine=tokudb; -insert into tt values (1,'','','',''); -insert into tt values (2,'','','',''); -insert into tt values (3,'','','',''); -insert into tt values (4,'','','',''); -insert into tt values (5,'','','',''); -insert into tt values (6,'','','',''); -insert into tt values (7,'','','',''); -insert into tt values (8,'','','',''); -insert into tt values (9,'','','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='K7XOCEWHIK6N4' where id=1; -update noar ti set v0='K7XOCEWHIK6N4' where id=1; -update noar tt set b0='VK8NMQYX7UQE6XYPALQOXQWK5I2S61' where id=1; -update noar ti set b0='VK8NMQYX7UQE6XYPALQOXQWK5I2S61' where id=1; -update noar tt set v0='VNU2BOQLXYGFWKTIMJ2OVJNYPTZHEX' where id=1; -update noar ti set v0='VNU2BOQLXYGFWKTIMJ2OVJNYPTZHEX' where id=1; -update noar tt set b1='KU2DL1ZB414TU0XZ5I' where id=1; -update noar ti set b1='KU2DL1ZB414TU0XZ5I' where id=1; -update noar tt set v0='ZQXND1RKI36X' where id=1; -update noar ti set v0='ZQXND1RKI36X' where id=1; -update noar tt set b2='U' where id=1; -update noar ti set b2='U' where id=1; -update noar tt set v0='GLVWB4O63MR' where id=2; -update noar ti set v0='GLVWB4O63MR' where id=2; -update noar tt set b0='905J2XXRBGMF08JF5AF7KA2CS46' where id=2; -update noar ti set b0='905J2XXRBGMF08JF5AF7KA2CS46' where id=2; -update noar tt set v0='ASSXRUYQBX7GB' where id=2; -update noar ti set v0='ASSXRUYQBX7GB' where id=2; -update noar tt set b1='Z98E' where id=2; -update noar ti set b1='Z98E' where id=2; -update noar tt set v0='FVGE24ML' where id=2; -update noar ti set v0='FVGE24ML' where id=2; -update noar tt set b2='G37NBLBNJU' where id=2; -update noar ti set b2='G37NBLBNJU' where id=2; -update noar tt set v0='2QNCL' where id=3; -update noar ti set v0='2QNCL' where id=3; -update noar tt set b0='JMQ27CLX4L9NGIK1IRLKT8J3KFNHA' where id=3; -update noar ti set b0='JMQ27CLX4L9NGIK1IRLKT8J3KFNHA' where id=3; -update noar tt set v0='UFH7J' where id=3; -update noar ti set v0='UFH7J' where id=3; -update noar tt set b1='WRAD9B1D1YG2GEPA8N05B' where id=3; -update noar ti set b1='WRAD9B1D1YG2GEPA8N05B' where id=3; -update noar tt set v0='QE2KNNEA2N9H8M0YJT5BJ19UOOWKZH' where id=3; -update noar ti set v0='QE2KNNEA2N9H8M0YJT5BJ19UOOWKZH' where id=3; -update noar tt set b2='TYKL2R4LAYRU0K4' where id=3; -update noar ti set b2='TYKL2R4LAYRU0K4' where id=3; -update noar tt set v0='OT8V2O5A2NKCQ71' where id=4; -update noar ti set v0='OT8V2O5A2NKCQ71' where id=4; -update noar tt set b0='5PDA9I' where id=4; -update noar ti set b0='5PDA9I' where id=4; -update noar tt set v0='QXBTYZ1Q0UB0JMO64SK0B' where id=4; -update noar ti set v0='QXBTYZ1Q0UB0JMO64SK0B' where id=4; -update noar tt set b1='STTW7WR7GHIUCYF08DXXC' where id=4; -update noar ti set b1='STTW7WR7GHIUCYF08DXXC' where id=4; -update noar tt set v0='R70CZSXFAA0LF02QGSNAWKQL' where id=4; -update noar ti set v0='R70CZSXFAA0LF02QGSNAWKQL' where id=4; -update noar tt set b2='SKFJD2IXD4LY' where id=4; -update noar ti set b2='SKFJD2IXD4LY' where id=4; -update noar tt set v0='VSA4F624UJE' where id=5; -update noar ti set v0='VSA4F624UJE' where id=5; -update noar tt set b0='W' where id=5; -update noar ti set b0='W' where id=5; -update noar tt set v0='6Y6EVQTPWNI6G0V8R5UARD' where id=5; -update noar ti set v0='6Y6EVQTPWNI6G0V8R5UARD' where id=5; -update noar tt set b1='1NBU' where id=5; -update noar ti set b1='1NBU' where id=5; -update noar tt set v0='KFPXT4QUGB28OOEAHU06B' where id=5; -update noar ti set v0='KFPXT4QUGB28OOEAHU06B' where id=5; -update noar tt set b2='YOOKE6BR' where id=5; -update noar ti set b2='YOOKE6BR' where id=5; -update noar tt set v0='ILUOUWS5LJ' where id=6; -update noar ti set v0='ILUOUWS5LJ' where id=6; -update noar tt set b0='RKXV8F56U7JZLE' where id=6; -update noar ti set b0='RKXV8F56U7JZLE' where id=6; -update noar tt set v0='2XN21YLQS5' where id=6; -update noar ti set v0='2XN21YLQS5' where id=6; -update noar tt set b1='QL' where id=6; -update noar ti set b1='QL' where id=6; -update noar tt set v0='9HTHQEQ9UFG7GBLIB' where id=6; -update noar ti set v0='9HTHQEQ9UFG7GBLIB' where id=6; -update noar tt set b2='U6RH' where id=6; -update noar ti set b2='U6RH' where id=6; -update noar tt set v0='7VWXERGUPBLLXGLTEX6' where id=7; -update noar ti set v0='7VWXERGUPBLLXGLTEX6' where id=7; -update noar tt set b0='MZPX0PUJAR3C1L9AAQV18O' where id=7; -update noar ti set b0='MZPX0PUJAR3C1L9AAQV18O' where id=7; -update noar tt set v0='6IZGPGBAQ3RXM' where id=7; -update noar ti set v0='6IZGPGBAQ3RXM' where id=7; -update noar tt set b1='ZTQUOXDQCR' where id=7; -update noar ti set b1='ZTQUOXDQCR' where id=7; -update noar tt set v0='WMT5NH' where id=7; -update noar ti set v0='WMT5NH' where id=7; -update noar tt set b2='9LG5DRG8QBT2' where id=7; -update noar ti set b2='9LG5DRG8QBT2' where id=7; -update noar tt set v0='0FSV9LF7HN' where id=8; -update noar ti set v0='0FSV9LF7HN' where id=8; -update noar tt set b0='2LTUA' where id=8; -update noar ti set b0='2LTUA' where id=8; -update noar tt set v0='OA7R2IYQ4A3NYE0WR7N7PCJ' where id=8; -update noar ti set v0='OA7R2IYQ4A3NYE0WR7N7PCJ' where id=8; -update noar tt set b1='QDQ8J6CVSR0DAZ11B' where id=8; -update noar ti set b1='QDQ8J6CVSR0DAZ11B' where id=8; -update noar tt set v0='QQIEK3SWCIF1A9372A3' where id=8; -update noar ti set v0='QQIEK3SWCIF1A9372A3' where id=8; -update noar tt set b2='JP2RIQR162VE5W8TX' where id=8; -update noar ti set b2='JP2RIQR162VE5W8TX' where id=8; -update noar tt set v0='MCCED6Z4M' where id=9; -update noar ti set v0='MCCED6Z4M' where id=9; -update noar tt set b0='NQ8UOIM0P7H' where id=9; -update noar ti set b0='NQ8UOIM0P7H' where id=9; -update noar tt set v0='YC34H379KF' where id=9; -update noar ti set v0='YC34H379KF' where id=9; -update noar tt set b1='KI' where id=9; -update noar ti set b1='KI' where id=9; -update noar tt set v0='2XOR8' where id=9; -update noar ti set v0='2XOR8' where id=9; -update noar tt set b2='J5K5YTVFQ9HVZTDJKY' where id=9; -update noar ti set b2='J5K5YTVFQ9HVZTDJKY' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - v0 varchar(32) null, - b0 longblob null, - b1 blob null, - b2 tinyblob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='XXZRVK2LX' where id=1; -update noar ti set v0='XXZRVK2LX' where id=1; -update noar tt set b0='OCH53MO2OKGD2' where id=1; -update noar ti set b0='OCH53MO2OKGD2' where id=1; -update noar tt set v0='H2Z' where id=1; -update noar ti set v0='H2Z' where id=1; -update noar tt set b1='FZSRXCRM8F' where id=1; -update noar ti set b1='FZSRXCRM8F' where id=1; -update noar tt set v0='QHJI4' where id=1; -update noar ti set v0='QHJI4' where id=1; -update noar tt set b2='7JSKNMZEP06X2FNVTRCXOL' where id=1; -update noar ti set b2='7JSKNMZEP06X2FNVTRCXOL' where id=1; -update noar tt set v0='BWVRJJKHOWFZ960CX' where id=2; -update noar ti set v0='BWVRJJKHOWFZ960CX' where id=2; -update noar tt set b0='NT1438HIJ257H5WYXZ9LB6' where id=2; -update noar ti set b0='NT1438HIJ257H5WYXZ9LB6' where id=2; -update noar tt set v0='NEWE' where id=2; -update noar ti set v0='NEWE' where id=2; -update noar tt set b1='2RJGJ2A7GQB1HPH4558D2NJ109WEL' where id=2; -update noar ti set b1='2RJGJ2A7GQB1HPH4558D2NJ109WEL' where id=2; -update noar tt set v0='K9Y8IS72OW0UW0HRNSEJB' where id=2; -update noar ti set v0='K9Y8IS72OW0UW0HRNSEJB' where id=2; -update noar tt set b2='34NG7W6B86XFMFOR6' where id=2; -update noar ti set b2='34NG7W6B86XFMFOR6' where id=2; -update noar tt set v0='TX3LAJWBE4' where id=3; -update noar ti set v0='TX3LAJWBE4' where id=3; -update noar tt set b0='SA' where id=3; -update noar ti set b0='SA' where id=3; -update noar tt set v0='U0GP9ZVUEGWERA18A6' where id=3; -update noar ti set v0='U0GP9ZVUEGWERA18A6' where id=3; -update noar tt set b1='WWL99RHWMO005TRG9EI1XZPFYIW6' where id=3; -update noar ti set b1='WWL99RHWMO005TRG9EI1XZPFYIW6' where id=3; -update noar tt set v0='JUE9OH' where id=3; -update noar ti set v0='JUE9OH' where id=3; -update noar tt set b2='BPOLUVX9TPIM08BM3' where id=3; -update noar ti set b2='BPOLUVX9TPIM08BM3' where id=3; -update noar tt set v0='NNNFCYWJK3M21LLFZJRV' where id=4; -update noar ti set v0='NNNFCYWJK3M21LLFZJRV' where id=4; -update noar tt set b0='VF75HXBL43KB0YOGJXQF2Y9W13' where id=4; -update noar ti set b0='VF75HXBL43KB0YOGJXQF2Y9W13' where id=4; -update noar tt set v0='0WQVBGWN39HUQ3V' where id=4; -update noar ti set v0='0WQVBGWN39HUQ3V' where id=4; -update noar tt set b1='P8P8SCTSQ3KKPCW0B7CJZGHLLJ' where id=4; -update noar ti set b1='P8P8SCTSQ3KKPCW0B7CJZGHLLJ' where id=4; -update noar tt set v0='2VBNB6HU98S6A9Y3CJI5CPOU9' where id=4; -update noar ti set v0='2VBNB6HU98S6A9Y3CJI5CPOU9' where id=4; -update noar tt set b2='6HCOT9U6BABUW2D' where id=4; -update noar ti set b2='6HCOT9U6BABUW2D' where id=4; -update noar tt set v0='Q' where id=5; -update noar ti set v0='Q' where id=5; -update noar tt set b0='IXNX70ALXFO365UWMZVZF7I0L' where id=5; -update noar ti set b0='IXNX70ALXFO365UWMZVZF7I0L' where id=5; -update noar tt set v0='NP36V0U2ZLP0NL' where id=5; -update noar ti set v0='NP36V0U2ZLP0NL' where id=5; -update noar tt set b1='NSG4' where id=5; -update noar ti set b1='NSG4' where id=5; -update noar tt set v0='L3BWRRDPGF9BVFB7PMB05J1K' where id=5; -update noar ti set v0='L3BWRRDPGF9BVFB7PMB05J1K' where id=5; -update noar tt set b2='MK1Y8IU7BC2IUY' where id=5; -update noar ti set b2='MK1Y8IU7BC2IUY' where id=5; -update noar tt set v0='PG' where id=6; -update noar ti set v0='PG' where id=6; -update noar tt set b0='9G3IIZKS55DO3VJCRGOSLCEESS5CA' where id=6; -update noar ti set b0='9G3IIZKS55DO3VJCRGOSLCEESS5CA' where id=6; -update noar tt set v0='QS5WG' where id=6; -update noar ti set v0='QS5WG' where id=6; -update noar tt set b1='QR2OAV95RJBTHCM2SD' where id=6; -update noar ti set b1='QR2OAV95RJBTHCM2SD' where id=6; -update noar tt set v0='2AWVDGBP2YIK4FUFRVO70W' where id=6; -update noar ti set v0='2AWVDGBP2YIK4FUFRVO70W' where id=6; -update noar tt set b2='V83ZMLV' where id=6; -update noar ti set b2='V83ZMLV' where id=6; -update noar tt set v0='0JMYXS19X7195QA2H96F2C22RBLM' where id=7; -update noar ti set v0='0JMYXS19X7195QA2H96F2C22RBLM' where id=7; -update noar tt set b0='ZKO6X' where id=7; -update noar ti set b0='ZKO6X' where id=7; -update noar tt set v0='I0IZ08A8JOPO3LRCUTR47HFU' where id=7; -update noar ti set v0='I0IZ08A8JOPO3LRCUTR47HFU' where id=7; -update noar tt set b1='AU1YSN3RW5NDMSSQ8H' where id=7; -update noar ti set b1='AU1YSN3RW5NDMSSQ8H' where id=7; -update noar tt set v0='ZP8YB' where id=7; -update noar ti set v0='ZP8YB' where id=7; -update noar tt set b2='7JHX61OHCWL3JADI62XL6AVMXXBRL' where id=7; -update noar ti set b2='7JHX61OHCWL3JADI62XL6AVMXXBRL' where id=7; -update noar tt set v0='1VOD4' where id=8; -update noar ti set v0='1VOD4' where id=8; -update noar tt set b0='QKTK6B6M4HH64H8YAL2DY91226O4B' where id=8; -update noar ti set b0='QKTK6B6M4HH64H8YAL2DY91226O4B' where id=8; -update noar tt set v0='TRYAUJ4NYSY0' where id=8; -update noar ti set v0='TRYAUJ4NYSY0' where id=8; -update noar tt set b1='PO5DLN' where id=8; -update noar ti set b1='PO5DLN' where id=8; -update noar tt set v0='TGU0GG4VVWAPOSPQT' where id=8; -update noar ti set v0='TGU0GG4VVWAPOSPQT' where id=8; -update noar tt set b2='60' where id=8; -update noar ti set b2='60' where id=8; -update noar tt set v0='CD9KLYG2YR0RI8F' where id=9; -update noar ti set v0='CD9KLYG2YR0RI8F' where id=9; -update noar tt set b0='6RUQIWVBR99VWPL4' where id=9; -update noar ti set b0='6RUQIWVBR99VWPL4' where id=9; -update noar tt set v0='WY5S8XA5LDQXNNFNPOHGH' where id=9; -update noar ti set v0='WY5S8XA5LDQXNNFNPOHGH' where id=9; -update noar tt set b1='Z2X2' where id=9; -update noar ti set b1='Z2X2' where id=9; -update noar tt set v0='DPITK' where id=9; -update noar ti set v0='DPITK' where id=9; -update noar tt set b2='37M' where id=9; -update noar ti set b2='37M' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - v0 varchar(256) null, - b0 longblob null, - b1 blob null, - b2 tinyblob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='XB7HWL6Z612TDX16ZOMFVIJDQ' where id=1; -update noar ti set v0='XB7HWL6Z612TDX16ZOMFVIJDQ' where id=1; -update noar tt set b0='G4GS2A7T015PH' where id=1; -update noar ti set b0='G4GS2A7T015PH' where id=1; -update noar tt set v0='8DSJ1KX1LUIW' where id=1; -update noar ti set v0='8DSJ1KX1LUIW' where id=1; -update noar tt set b1='XNEUE1B9RFCVFIHN419KF1RYR4' where id=1; -update noar ti set b1='XNEUE1B9RFCVFIHN419KF1RYR4' where id=1; -update noar tt set v0='6RK84CG8ED1LC9RFF0968NPMTJQJ8AU' where id=1; -update noar ti set v0='6RK84CG8ED1LC9RFF0968NPMTJQJ8AU' where id=1; -update noar tt set b2='BPOY7999PI769JY9SQ69XYA2' where id=1; -update noar ti set b2='BPOY7999PI769JY9SQ69XYA2' where id=1; -update noar tt set v0='A8EQ7ZSAGDLA85JUHGRXI79KJJ8Z' where id=2; -update noar ti set v0='A8EQ7ZSAGDLA85JUHGRXI79KJJ8Z' where id=2; -update noar tt set b0='8AVX3WZQC111M940V' where id=2; -update noar ti set b0='8AVX3WZQC111M940V' where id=2; -update noar tt set v0='LXD8' where id=2; -update noar ti set v0='LXD8' where id=2; -update noar tt set b1='HU0CIH4' where id=2; -update noar ti set b1='HU0CIH4' where id=2; -update noar tt set v0='R' where id=2; -update noar ti set v0='R' where id=2; -update noar tt set b2='AHYYQU' where id=2; -update noar ti set b2='AHYYQU' where id=2; -update noar tt set v0='YI0YBXN676MSZG6GQHM84C' where id=3; -update noar ti set v0='YI0YBXN676MSZG6GQHM84C' where id=3; -update noar tt set b0='GJ6CG8OORJ0S761ZOFTEW86P6AYXTNO' where id=3; -update noar ti set b0='GJ6CG8OORJ0S761ZOFTEW86P6AYXTNO' where id=3; -update noar tt set v0='GSS2GNYNI0EX97BIGT5ZW0QU8GK3A' where id=3; -update noar ti set v0='GSS2GNYNI0EX97BIGT5ZW0QU8GK3A' where id=3; -update noar tt set b1='II1KSE5UD' where id=3; -update noar ti set b1='II1KSE5UD' where id=3; -update noar tt set v0='W5Z3' where id=3; -update noar ti set v0='W5Z3' where id=3; -update noar tt set b2='AQTAT8Y089147A12' where id=3; -update noar ti set b2='AQTAT8Y089147A12' where id=3; -update noar tt set v0='G6757GORF9OMXPT8DPJRW5TO' where id=4; -update noar ti set v0='G6757GORF9OMXPT8DPJRW5TO' where id=4; -update noar tt set b0='WQS9H9DP1DH7JNYRIP' where id=4; -update noar ti set b0='WQS9H9DP1DH7JNYRIP' where id=4; -update noar tt set v0='J4X3CVQSWNXTBPKLRSJOSJR' where id=4; -update noar ti set v0='J4X3CVQSWNXTBPKLRSJOSJR' where id=4; -update noar tt set b1='BYMUD0DD1QU6BZ1' where id=4; -update noar ti set b1='BYMUD0DD1QU6BZ1' where id=4; -update noar tt set v0='EQLIIP1LW5QQE7D5BUS98RDU' where id=4; -update noar ti set v0='EQLIIP1LW5QQE7D5BUS98RDU' where id=4; -update noar tt set b2='Y5BHOQTL0VXLLP55HH5ON3POJC' where id=4; -update noar ti set b2='Y5BHOQTL0VXLLP55HH5ON3POJC' where id=4; -update noar tt set v0='MVQBXP4O6KOI2' where id=5; -update noar ti set v0='MVQBXP4O6KOI2' where id=5; -update noar tt set b0='BLNJDAUNF' where id=5; -update noar ti set b0='BLNJDAUNF' where id=5; -update noar tt set v0='SLRBQAH2G2STSCPAAOBNQCXUVJ' where id=5; -update noar ti set v0='SLRBQAH2G2STSCPAAOBNQCXUVJ' where id=5; -update noar tt set b1='57WQ6XZIZ9TXZCS65F696HOR' where id=5; -update noar ti set b1='57WQ6XZIZ9TXZCS65F696HOR' where id=5; -update noar tt set v0='H5B1W8GVTZQZKW9M4KPTWIMIS9' where id=5; -update noar ti set v0='H5B1W8GVTZQZKW9M4KPTWIMIS9' where id=5; -update noar tt set b2='MDV64GUBR4F9TV' where id=5; -update noar ti set b2='MDV64GUBR4F9TV' where id=5; -update noar tt set v0='A3S3UVKSPLT0RZT089PUZ6ID3' where id=6; -update noar ti set v0='A3S3UVKSPLT0RZT089PUZ6ID3' where id=6; -update noar tt set b0='QHKCUHAMQVU5HXJRO5RN6HEH8TNDOIVX' where id=6; -update noar ti set b0='QHKCUHAMQVU5HXJRO5RN6HEH8TNDOIVX' where id=6; -update noar tt set v0='7KG0U9Y6TFWI2CXEZFGWDJLGXNBY' where id=6; -update noar ti set v0='7KG0U9Y6TFWI2CXEZFGWDJLGXNBY' where id=6; -update noar tt set b1='N502CN01R0E5E3ZN0I0VNLH2S' where id=6; -update noar ti set b1='N502CN01R0E5E3ZN0I0VNLH2S' where id=6; -update noar tt set v0='QN3RW00QL1I9D8T82KAVOR5A2MS' where id=6; -update noar ti set v0='QN3RW00QL1I9D8T82KAVOR5A2MS' where id=6; -update noar tt set b2='1BFE4ZCHCA8A28F71R4XLPWQM' where id=6; -update noar ti set b2='1BFE4ZCHCA8A28F71R4XLPWQM' where id=6; -update noar tt set v0='MCVVCZC6S436F207CLDLBSMRNI' where id=7; -update noar ti set v0='MCVVCZC6S436F207CLDLBSMRNI' where id=7; -update noar tt set b0='6AGUIR3MRAK7VFT9I3' where id=7; -update noar ti set b0='6AGUIR3MRAK7VFT9I3' where id=7; -update noar tt set v0='WU55SUYRYR6GPL8A4KFCW2XGWQY' where id=7; -update noar ti set v0='WU55SUYRYR6GPL8A4KFCW2XGWQY' where id=7; -update noar tt set b1='F16EIO0YQB2PJ4S3URMWRLV5NFX55M8N' where id=7; -update noar ti set b1='F16EIO0YQB2PJ4S3URMWRLV5NFX55M8N' where id=7; -update noar tt set v0='9HIC5MAC71UMW6UZ2DX' where id=7; -update noar ti set v0='9HIC5MAC71UMW6UZ2DX' where id=7; -update noar tt set b2='4CQ8' where id=7; -update noar ti set b2='4CQ8' where id=7; -update noar tt set v0='T5T4NFXJ2F8NMZ5VTS3DARVOFYY' where id=8; -update noar ti set v0='T5T4NFXJ2F8NMZ5VTS3DARVOFYY' where id=8; -update noar tt set b0='TZ' where id=8; -update noar ti set b0='TZ' where id=8; -update noar tt set v0='QMTHHSZBFB06M6E7JZTOCO1' where id=8; -update noar ti set v0='QMTHHSZBFB06M6E7JZTOCO1' where id=8; -update noar tt set b1='7HHOZ3YF5T5CFPH' where id=8; -update noar ti set b1='7HHOZ3YF5T5CFPH' where id=8; -update noar tt set v0='3' where id=8; -update noar ti set v0='3' where id=8; -update noar tt set b2='34Q5EMYYUZY8' where id=8; -update noar ti set b2='34Q5EMYYUZY8' where id=8; -update noar tt set v0='X6ZA' where id=9; -update noar ti set v0='X6ZA' where id=9; -update noar tt set b0='8' where id=9; -update noar ti set b0='8' where id=9; -update noar tt set v0='FMX05GOH826ACCM' where id=9; -update noar ti set v0='FMX05GOH826ACCM' where id=9; -update noar tt set b1='NVCOX3' where id=9; -update noar ti set b1='NVCOX3' where id=9; -update noar tt set v0='SPNUJBWY3V' where id=9; -update noar ti set v0='SPNUJBWY3V' where id=9; -update noar tt set b2='IMMRRH2FFBQ8OKIS' where id=9; -update noar ti set b2='IMMRRH2FFBQ8OKIS' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - v0 varchar(32) not null, - b0 longblob not null, - b1 blob not null, - b2 tinyblob not null -) engine=tokudb; -insert into tt values (1,'','','',''); -insert into tt values (2,'','','',''); -insert into tt values (3,'','','',''); -insert into tt values (4,'','','',''); -insert into tt values (5,'','','',''); -insert into tt values (6,'','','',''); -insert into tt values (7,'','','',''); -insert into tt values (8,'','','',''); -insert into tt values (9,'','','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='RWWEOX7M4YUGNG7QYUL1BOT' where id=1; -update noar ti set v0='RWWEOX7M4YUGNG7QYUL1BOT' where id=1; -update noar tt set b0='1U8B33OAI3R7FIT6OVFBZT0HXAXSM' where id=1; -update noar ti set b0='1U8B33OAI3R7FIT6OVFBZT0HXAXSM' where id=1; -update noar tt set v0='TQXSXWKG4HE61EQ4QWNMNO6SS' where id=1; -update noar ti set v0='TQXSXWKG4HE61EQ4QWNMNO6SS' where id=1; -update noar tt set b1='G490QRKXEQW4' where id=1; -update noar ti set b1='G490QRKXEQW4' where id=1; -update noar tt set v0='UB5NL0POVFPUTBS8AAKLNQQHEM4ZNJ' where id=1; -update noar ti set v0='UB5NL0POVFPUTBS8AAKLNQQHEM4ZNJ' where id=1; -update noar tt set b2='CE12HXKWT6IIFPGI2' where id=1; -update noar ti set b2='CE12HXKWT6IIFPGI2' where id=1; -update noar tt set v0='WC5BV5SZYAOS3FK' where id=2; -update noar ti set v0='WC5BV5SZYAOS3FK' where id=2; -update noar tt set b0='V6HPB1JTAXGBXHT' where id=2; -update noar ti set b0='V6HPB1JTAXGBXHT' where id=2; -update noar tt set v0='MJX2WP' where id=2; -update noar ti set v0='MJX2WP' where id=2; -update noar tt set b1='CZGE90Z4HFE5F' where id=2; -update noar ti set b1='CZGE90Z4HFE5F' where id=2; -update noar tt set v0='XKB47MXHIJKO2Y' where id=2; -update noar ti set v0='XKB47MXHIJKO2Y' where id=2; -update noar tt set b2='B1N1HM25MMRSEB' where id=2; -update noar ti set b2='B1N1HM25MMRSEB' where id=2; -update noar tt set v0='YZD4DP2SVZFJ4QLUDEFD31NE' where id=3; -update noar ti set v0='YZD4DP2SVZFJ4QLUDEFD31NE' where id=3; -update noar tt set b0='7C2NFFZ21CHNR' where id=3; -update noar ti set b0='7C2NFFZ21CHNR' where id=3; -update noar tt set v0='TKI79L3SJZNMUEE87WC7D5CWSJ4ISIEI' where id=3; -update noar ti set v0='TKI79L3SJZNMUEE87WC7D5CWSJ4ISIEI' where id=3; -update noar tt set b1='6R2QTRAIN' where id=3; -update noar ti set b1='6R2QTRAIN' where id=3; -update noar tt set v0='IIENO12LVHWKGV0Z2D20VZ' where id=3; -update noar ti set v0='IIENO12LVHWKGV0Z2D20VZ' where id=3; -update noar tt set b2='MFY' where id=3; -update noar ti set b2='MFY' where id=3; -update noar tt set v0='KPF5V32AK8IFN5H8A43A7H' where id=4; -update noar ti set v0='KPF5V32AK8IFN5H8A43A7H' where id=4; -update noar tt set b0='5GIW9LP90EV2HA3T2V3H84HUJ' where id=4; -update noar ti set b0='5GIW9LP90EV2HA3T2V3H84HUJ' where id=4; -update noar tt set v0='GV4IVQBPIB20M2IXNYNU' where id=4; -update noar ti set v0='GV4IVQBPIB20M2IXNYNU' where id=4; -update noar tt set b1='5OCFIE' where id=4; -update noar ti set b1='5OCFIE' where id=4; -update noar tt set v0='573GA9L3' where id=4; -update noar ti set v0='573GA9L3' where id=4; -update noar tt set b2='D2H3AGMYRCXMFIZ9LKX' where id=4; -update noar ti set b2='D2H3AGMYRCXMFIZ9LKX' where id=4; -update noar tt set v0='G3CQI6NNS' where id=5; -update noar ti set v0='G3CQI6NNS' where id=5; -update noar tt set b0='ICJ629Z6Z1G' where id=5; -update noar ti set b0='ICJ629Z6Z1G' where id=5; -update noar tt set v0='MEPUUC13THR15U7UAJR' where id=5; -update noar ti set v0='MEPUUC13THR15U7UAJR' where id=5; -update noar tt set b1='UFNZRE63HCEYVQF278ZB' where id=5; -update noar ti set b1='UFNZRE63HCEYVQF278ZB' where id=5; -update noar tt set v0='UJRZZ5YROICF9MMG3' where id=5; -update noar ti set v0='UJRZZ5YROICF9MMG3' where id=5; -update noar tt set b2='2ZOYW3DDS40JAMSFHDUTIAQVAF10DX' where id=5; -update noar ti set b2='2ZOYW3DDS40JAMSFHDUTIAQVAF10DX' where id=5; -update noar tt set v0='CWOJVA01' where id=6; -update noar ti set v0='CWOJVA01' where id=6; -update noar tt set b0='VIU28ZUWB513YLV1Z0RPZ' where id=6; -update noar ti set b0='VIU28ZUWB513YLV1Z0RPZ' where id=6; -update noar tt set v0='UYGHA4V0' where id=6; -update noar ti set v0='UYGHA4V0' where id=6; -update noar tt set b1='2VZZZZ2GJX5PBFNKFK' where id=6; -update noar ti set b1='2VZZZZ2GJX5PBFNKFK' where id=6; -update noar tt set v0='COWFEC3H498X' where id=6; -update noar ti set v0='COWFEC3H498X' where id=6; -update noar tt set b2='V81V0ZAGMO' where id=6; -update noar ti set b2='V81V0ZAGMO' where id=6; -update noar tt set v0='46' where id=7; -update noar ti set v0='46' where id=7; -update noar tt set b0='HPDP180T0' where id=7; -update noar ti set b0='HPDP180T0' where id=7; -update noar tt set v0='KOHD9G6AW579YUFJB' where id=7; -update noar ti set v0='KOHD9G6AW579YUFJB' where id=7; -update noar tt set b1='KFYQREWEKWTJUC8KJ452OSVNTDVIF' where id=7; -update noar ti set b1='KFYQREWEKWTJUC8KJ452OSVNTDVIF' where id=7; -update noar tt set v0='9TS4YJQM16XK44QGK' where id=7; -update noar ti set v0='9TS4YJQM16XK44QGK' where id=7; -update noar tt set b2='N2XOQWYW7JWKV8DBZC1Q6' where id=7; -update noar ti set b2='N2XOQWYW7JWKV8DBZC1Q6' where id=7; -update noar tt set v0='AZJ9YU8' where id=8; -update noar ti set v0='AZJ9YU8' where id=8; -update noar tt set b0='87H2I43CB' where id=8; -update noar ti set b0='87H2I43CB' where id=8; -update noar tt set v0='J4X' where id=8; -update noar ti set v0='J4X' where id=8; -update noar tt set b1='QQZKJWZLI19XC8FWTA57V2UUK9N1IMLD' where id=8; -update noar ti set b1='QQZKJWZLI19XC8FWTA57V2UUK9N1IMLD' where id=8; -update noar tt set v0='VYIR1JCLJT5BMJJ0S8NQVKBXHB' where id=8; -update noar ti set v0='VYIR1JCLJT5BMJJ0S8NQVKBXHB' where id=8; -update noar tt set b2='VC0BUEPZQCBJGH' where id=8; -update noar ti set b2='VC0BUEPZQCBJGH' where id=8; -update noar tt set v0='DGVXNJWAPWQS3733QOSG470L9D8' where id=9; -update noar ti set v0='DGVXNJWAPWQS3733QOSG470L9D8' where id=9; -update noar tt set b0='UX3LPFAMCMSNTQLT1WA6D5QDER2RFTSQ' where id=9; -update noar ti set b0='UX3LPFAMCMSNTQLT1WA6D5QDER2RFTSQ' where id=9; -update noar tt set v0='TR5BUF2E98TDRUK2P540HBO5O' where id=9; -update noar ti set v0='TR5BUF2E98TDRUK2P540HBO5O' where id=9; -update noar tt set b1='WT2WQGBZA5NDTIMHA' where id=9; -update noar ti set b1='WT2WQGBZA5NDTIMHA' where id=9; -update noar tt set v0='S43OB3JP' where id=9; -update noar ti set v0='S43OB3JP' where id=9; -update noar tt set b2='167K9PC4OQ' where id=9; -update noar ti set b2='167K9PC4OQ' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - v0 varchar(256) not null, - b0 longblob not null, - b1 blob not null, - b2 tinyblob not null -) engine=tokudb; -insert into tt values (1,'','','',''); -insert into tt values (2,'','','',''); -insert into tt values (3,'','','',''); -insert into tt values (4,'','','',''); -insert into tt values (5,'','','',''); -insert into tt values (6,'','','',''); -insert into tt values (7,'','','',''); -insert into tt values (8,'','','',''); -insert into tt values (9,'','','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='50RCO9JLZ2PCP5' where id=1; -update noar ti set v0='50RCO9JLZ2PCP5' where id=1; -update noar tt set b0='KS8KMZ5U4QUF6ZGQFZUKLI89MEWC' where id=1; -update noar ti set b0='KS8KMZ5U4QUF6ZGQFZUKLI89MEWC' where id=1; -update noar tt set v0='O8Y7J4HPNZQU8AIJ2' where id=1; -update noar ti set v0='O8Y7J4HPNZQU8AIJ2' where id=1; -update noar tt set b1='IUDWG6LGU5Q3Y6LG2D0RWL' where id=1; -update noar ti set b1='IUDWG6LGU5Q3Y6LG2D0RWL' where id=1; -update noar tt set v0='J5EI5W' where id=1; -update noar ti set v0='J5EI5W' where id=1; -update noar tt set b2='KL25N5PYDHHULJZ' where id=1; -update noar ti set b2='KL25N5PYDHHULJZ' where id=1; -update noar tt set v0='B4HSII' where id=2; -update noar ti set v0='B4HSII' where id=2; -update noar tt set b0='OYP' where id=2; -update noar ti set b0='OYP' where id=2; -update noar tt set v0='NEMJH6BW1ZMXJ3ZD75UV' where id=2; -update noar ti set v0='NEMJH6BW1ZMXJ3ZD75UV' where id=2; -update noar tt set b1='W3FP8UD8RGDJGLGE6LVOQQIVZAVO' where id=2; -update noar ti set b1='W3FP8UD8RGDJGLGE6LVOQQIVZAVO' where id=2; -update noar tt set v0='HQLO0LUVQMOJBJA' where id=2; -update noar ti set v0='HQLO0LUVQMOJBJA' where id=2; -update noar tt set b2='ITTO1E1O0TJ7ZZ75WC' where id=2; -update noar ti set b2='ITTO1E1O0TJ7ZZ75WC' where id=2; -update noar tt set v0='CX5SD1MCI5KR49MYHGR5CBE2C5JDAJ' where id=3; -update noar ti set v0='CX5SD1MCI5KR49MYHGR5CBE2C5JDAJ' where id=3; -update noar tt set b0='FFOVOYO3RLVVYLKXWPUG2Q' where id=3; -update noar ti set b0='FFOVOYO3RLVVYLKXWPUG2Q' where id=3; -update noar tt set v0='BINCGEUSIDFRKX0AD5YRDWL8MEYZE' where id=3; -update noar ti set v0='BINCGEUSIDFRKX0AD5YRDWL8MEYZE' where id=3; -update noar tt set b1='TAT2G0EROEFBIDTOR8S71HZ4' where id=3; -update noar ti set b1='TAT2G0EROEFBIDTOR8S71HZ4' where id=3; -update noar tt set v0='FP73YLU30Q3JEFL7SZ98JVT6' where id=3; -update noar ti set v0='FP73YLU30Q3JEFL7SZ98JVT6' where id=3; -update noar tt set b2='MK44' where id=3; -update noar ti set b2='MK44' where id=3; -update noar tt set v0='48Z45CTL4TGL9SSG38UZB4' where id=4; -update noar ti set v0='48Z45CTL4TGL9SSG38UZB4' where id=4; -update noar tt set b0='U6ASIAI04VUA4CJG75O3' where id=4; -update noar ti set b0='U6ASIAI04VUA4CJG75O3' where id=4; -update noar tt set v0='R0U253LVWU9R8AHVZY05Q32SM7K' where id=4; -update noar ti set v0='R0U253LVWU9R8AHVZY05Q32SM7K' where id=4; -update noar tt set b1='I5EV4MO2AS9UF9015YRM6W0' where id=4; -update noar ti set b1='I5EV4MO2AS9UF9015YRM6W0' where id=4; -update noar tt set v0='HVEH529JYF5D8QHPGPDUIJO4U9DHAI' where id=4; -update noar ti set v0='HVEH529JYF5D8QHPGPDUIJO4U9DHAI' where id=4; -update noar tt set b2='SOIAP3WDE74SBBDP0M7YJYKMIJO' where id=4; -update noar ti set b2='SOIAP3WDE74SBBDP0M7YJYKMIJO' where id=4; -update noar tt set v0='JXYOGUA3RSQOY0PTRZ2RWT' where id=5; -update noar ti set v0='JXYOGUA3RSQOY0PTRZ2RWT' where id=5; -update noar tt set b0='603N9FOX3CWPSWOCOR0UEI3XE' where id=5; -update noar ti set b0='603N9FOX3CWPSWOCOR0UEI3XE' where id=5; -update noar tt set v0='IO0SBG7G5TFJM4' where id=5; -update noar ti set v0='IO0SBG7G5TFJM4' where id=5; -update noar tt set b1='6YUNRCIFC5JKT' where id=5; -update noar ti set b1='6YUNRCIFC5JKT' where id=5; -update noar tt set v0='Y92DCBMQ' where id=5; -update noar ti set v0='Y92DCBMQ' where id=5; -update noar tt set b2='V4U1BLCKMFATATOEWBSF' where id=5; -update noar ti set b2='V4U1BLCKMFATATOEWBSF' where id=5; -update noar tt set v0='D1EI1' where id=6; -update noar ti set v0='D1EI1' where id=6; -update noar tt set b0='YF18KWDFWBTBFWXOOY4CRKMV' where id=6; -update noar ti set b0='YF18KWDFWBTBFWXOOY4CRKMV' where id=6; -update noar tt set v0='892KGP26627GMGXOV1S4Z0' where id=6; -update noar ti set v0='892KGP26627GMGXOV1S4Z0' where id=6; -update noar tt set b1='YEI0SQB4HM0EDMETPCYHDIZYO32' where id=6; -update noar ti set b1='YEI0SQB4HM0EDMETPCYHDIZYO32' where id=6; -update noar tt set v0='9ZYRWKX3' where id=6; -update noar ti set v0='9ZYRWKX3' where id=6; -update noar tt set b2='OD8D63R9QGAX32OYNI' where id=6; -update noar ti set b2='OD8D63R9QGAX32OYNI' where id=6; -update noar tt set v0='R8UXPSCDZ508S8U8' where id=7; -update noar ti set v0='R8UXPSCDZ508S8U8' where id=7; -update noar tt set b0='VMNXZE2F7TJQMMTUR6IF' where id=7; -update noar ti set b0='VMNXZE2F7TJQMMTUR6IF' where id=7; -update noar tt set v0='5H3HUTEX45H13U99AKZ2WC8FFFTZKN1' where id=7; -update noar ti set v0='5H3HUTEX45H13U99AKZ2WC8FFFTZKN1' where id=7; -update noar tt set b1='HIFJ27HSYHCYZQJSWDVALX4' where id=7; -update noar ti set b1='HIFJ27HSYHCYZQJSWDVALX4' where id=7; -update noar tt set v0='87E8HH7L' where id=7; -update noar ti set v0='87E8HH7L' where id=7; -update noar tt set b2='Z6' where id=7; -update noar ti set b2='Z6' where id=7; -update noar tt set v0='DSSQ' where id=8; -update noar ti set v0='DSSQ' where id=8; -update noar tt set b0='3JN1YB3VL7CD4ZVYKBZWXKYJS3UE' where id=8; -update noar ti set b0='3JN1YB3VL7CD4ZVYKBZWXKYJS3UE' where id=8; -update noar tt set v0='SHX6JGANSBC4TQEVNSY0' where id=8; -update noar ti set v0='SHX6JGANSBC4TQEVNSY0' where id=8; -update noar tt set b1='V5D5SAJZTB7R70ZDGOZK5S' where id=8; -update noar ti set b1='V5D5SAJZTB7R70ZDGOZK5S' where id=8; -update noar tt set v0='96JKDFJOO' where id=8; -update noar ti set v0='96JKDFJOO' where id=8; -update noar tt set b2='3Z0OG8LM8I0UYFII4ACKK2T' where id=8; -update noar ti set b2='3Z0OG8LM8I0UYFII4ACKK2T' where id=8; -update noar tt set v0='O3SEA36FRTCM8P63ER5JNO0957IZ7E' where id=9; -update noar ti set v0='O3SEA36FRTCM8P63ER5JNO0957IZ7E' where id=9; -update noar tt set b0='CQAHXE6SG772H3U2ALA' where id=9; -update noar ti set b0='CQAHXE6SG772H3U2ALA' where id=9; -update noar tt set v0='7WM3HWM38OFTG7XVCRZTE9M1AM' where id=9; -update noar ti set v0='7WM3HWM38OFTG7XVCRZTE9M1AM' where id=9; -update noar tt set b1='JUEO7UGL' where id=9; -update noar ti set b1='JUEO7UGL' where id=9; -update noar tt set v0='K2M2NQYB374ADJDQDA0H9IMPVNDJKTT' where id=9; -update noar ti set v0='K2M2NQYB374ADJDQDA0H9IMPVNDJKTT' where id=9; -update noar tt set b2='5QIIZ789T4' where id=9; -update noar ti set b2='5QIIZ789T4' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - v0 varchar(32) null, - b0 longblob null, - b1 blob null, - b2 blob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='WD0W8C2F8QAZBDWHEZOYQWJH7AGV1IB' where id=1; -update noar ti set v0='WD0W8C2F8QAZBDWHEZOYQWJH7AGV1IB' where id=1; -update noar tt set b0='57DCEZQ' where id=1; -update noar ti set b0='57DCEZQ' where id=1; -update noar tt set v0='X7T6E0FAE64U9NHSRUSUCLXVYM' where id=1; -update noar ti set v0='X7T6E0FAE64U9NHSRUSUCLXVYM' where id=1; -update noar tt set b1='96Z868HIDSN7U0AIM9BGQ5' where id=1; -update noar ti set b1='96Z868HIDSN7U0AIM9BGQ5' where id=1; -update noar tt set v0='NW01RNLPB1XGYJVAD3' where id=1; -update noar ti set v0='NW01RNLPB1XGYJVAD3' where id=1; -update noar tt set b2='IMW74MIZ9136TCZTAWEPSB30SPC8' where id=1; -update noar ti set b2='IMW74MIZ9136TCZTAWEPSB30SPC8' where id=1; -update noar tt set v0='B3RM59WT0BGDEK74K903CO92LIF2YR' where id=2; -update noar ti set v0='B3RM59WT0BGDEK74K903CO92LIF2YR' where id=2; -update noar tt set b0='Q7PXFZN82E2KN1JDQI9A2' where id=2; -update noar ti set b0='Q7PXFZN82E2KN1JDQI9A2' where id=2; -update noar tt set v0='OCP66CMFR0Z8S69W34O' where id=2; -update noar ti set v0='OCP66CMFR0Z8S69W34O' where id=2; -update noar tt set b1='OTFJF' where id=2; -update noar ti set b1='OTFJF' where id=2; -update noar tt set v0='C95HU32AO9Z' where id=2; -update noar ti set v0='C95HU32AO9Z' where id=2; -update noar tt set b2='JE0S6U7KR3H940OMEB8BA69LCLG' where id=2; -update noar ti set b2='JE0S6U7KR3H940OMEB8BA69LCLG' where id=2; -update noar tt set v0='8QFBMSNLI7JR74DCWYH5' where id=3; -update noar ti set v0='8QFBMSNLI7JR74DCWYH5' where id=3; -update noar tt set b0='FS9L70DUN2L199XHFMGMZRO2ITOE0SLV' where id=3; -update noar ti set b0='FS9L70DUN2L199XHFMGMZRO2ITOE0SLV' where id=3; -update noar tt set v0='WLIW1HSSYOIVQAIR1J74G4T' where id=3; -update noar ti set v0='WLIW1HSSYOIVQAIR1J74G4T' where id=3; -update noar tt set b1='270XASA7JJZROBB7O6M' where id=3; -update noar ti set b1='270XASA7JJZROBB7O6M' where id=3; -update noar tt set v0='N1H1AMZOH7OXFRB4J9Q4G' where id=3; -update noar ti set v0='N1H1AMZOH7OXFRB4J9Q4G' where id=3; -update noar tt set b2='KMZEXA3A9FGOM63RL1DU' where id=3; -update noar ti set b2='KMZEXA3A9FGOM63RL1DU' where id=3; -update noar tt set v0='O4MJW6JRWNPRQ2Z5K6IMNF9' where id=4; -update noar ti set v0='O4MJW6JRWNPRQ2Z5K6IMNF9' where id=4; -update noar tt set b0='FRLZIIP0F48GW8VU4VXZI' where id=4; -update noar ti set b0='FRLZIIP0F48GW8VU4VXZI' where id=4; -update noar tt set v0='XOCRJJPVLVR9BCTYOF3A2' where id=4; -update noar ti set v0='XOCRJJPVLVR9BCTYOF3A2' where id=4; -update noar tt set b1='WEB9UPJRX3PZK1ANRER0OR57SFC6DTU' where id=4; -update noar ti set b1='WEB9UPJRX3PZK1ANRER0OR57SFC6DTU' where id=4; -update noar tt set v0='QE4IHUVFGZRGNF' where id=4; -update noar ti set v0='QE4IHUVFGZRGNF' where id=4; -update noar tt set b2='P' where id=4; -update noar ti set b2='P' where id=4; -update noar tt set v0='DJNCX5SQTK' where id=5; -update noar ti set v0='DJNCX5SQTK' where id=5; -update noar tt set b0='ANFUSL236IWH3RE71T71ZPYPHU87' where id=5; -update noar ti set b0='ANFUSL236IWH3RE71T71ZPYPHU87' where id=5; -update noar tt set v0='8GVL4NPZ' where id=5; -update noar ti set v0='8GVL4NPZ' where id=5; -update noar tt set b1='LW0F7ZPM2' where id=5; -update noar ti set b1='LW0F7ZPM2' where id=5; -update noar tt set v0='BPLK0LD' where id=5; -update noar ti set v0='BPLK0LD' where id=5; -update noar tt set b2='D4S' where id=5; -update noar ti set b2='D4S' where id=5; -update noar tt set v0='JKYGMPPXAW6' where id=6; -update noar ti set v0='JKYGMPPXAW6' where id=6; -update noar tt set b0='NL7ABMQ' where id=6; -update noar ti set b0='NL7ABMQ' where id=6; -update noar tt set v0='WDG7L1QJZESZ9V7OEBH4CNE77JW' where id=6; -update noar ti set v0='WDG7L1QJZESZ9V7OEBH4CNE77JW' where id=6; -update noar tt set b1='BM2CHLWIC6DZNS' where id=6; -update noar ti set b1='BM2CHLWIC6DZNS' where id=6; -update noar tt set v0='J88PI3GFJNCCCEER4350' where id=6; -update noar ti set v0='J88PI3GFJNCCCEER4350' where id=6; -update noar tt set b2='PV3EH83BPH7K9KBH' where id=6; -update noar ti set b2='PV3EH83BPH7K9KBH' where id=6; -update noar tt set v0='EW' where id=7; -update noar ti set v0='EW' where id=7; -update noar tt set b0='RSKH1TA2C2S8KG9E8' where id=7; -update noar ti set b0='RSKH1TA2C2S8KG9E8' where id=7; -update noar tt set v0='4CN5OXWS' where id=7; -update noar ti set v0='4CN5OXWS' where id=7; -update noar tt set b1='UI1J1X' where id=7; -update noar ti set b1='UI1J1X' where id=7; -update noar tt set v0='TUV' where id=7; -update noar ti set v0='TUV' where id=7; -update noar tt set b2='EKKFDTL' where id=7; -update noar ti set b2='EKKFDTL' where id=7; -update noar tt set v0='ZU9' where id=8; -update noar ti set v0='ZU9' where id=8; -update noar tt set b0='IE' where id=8; -update noar ti set b0='IE' where id=8; -update noar tt set v0='HV' where id=8; -update noar ti set v0='HV' where id=8; -update noar tt set b1='F5AVF' where id=8; -update noar ti set b1='F5AVF' where id=8; -update noar tt set v0='00BZDX4JTRHD0YYL5DT7HQX2LOW' where id=8; -update noar ti set v0='00BZDX4JTRHD0YYL5DT7HQX2LOW' where id=8; -update noar tt set b2='9DQH' where id=8; -update noar ti set b2='9DQH' where id=8; -update noar tt set v0='U1IAVIXIZ4G0TLMDQ131SV02AJG' where id=9; -update noar ti set v0='U1IAVIXIZ4G0TLMDQ131SV02AJG' where id=9; -update noar tt set b0='CUNUCWH' where id=9; -update noar ti set b0='CUNUCWH' where id=9; -update noar tt set v0='9K85Z30MX05KX0' where id=9; -update noar ti set v0='9K85Z30MX05KX0' where id=9; -update noar tt set b1='ET3WJTI' where id=9; -update noar ti set b1='ET3WJTI' where id=9; -update noar tt set v0='K5DRRM1MGPHQLYZMJUG6JTC7H7WRFQ' where id=9; -update noar ti set v0='K5DRRM1MGPHQLYZMJUG6JTC7H7WRFQ' where id=9; -update noar tt set b2='CNF2VVL0GK' where id=9; -update noar ti set b2='CNF2VVL0GK' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - v0 varchar(256) null, - b0 longblob null, - b1 blob null, - b2 blob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='RE0A5K9RVR0E98NPYY1G6ZHF9' where id=1; -update noar ti set v0='RE0A5K9RVR0E98NPYY1G6ZHF9' where id=1; -update noar tt set b0='SD0DCNISM6T' where id=1; -update noar ti set b0='SD0DCNISM6T' where id=1; -update noar tt set v0='EX' where id=1; -update noar ti set v0='EX' where id=1; -update noar tt set b1='JAYYOBCVDKILTQ4ZFB5M9R8T88YFQXW' where id=1; -update noar ti set b1='JAYYOBCVDKILTQ4ZFB5M9R8T88YFQXW' where id=1; -update noar tt set v0='LZF12I3940AUCYJL3' where id=1; -update noar ti set v0='LZF12I3940AUCYJL3' where id=1; -update noar tt set b2='9' where id=1; -update noar ti set b2='9' where id=1; -update noar tt set v0='F9U2J5FA03K1Z5KX20OF1908A' where id=2; -update noar ti set v0='F9U2J5FA03K1Z5KX20OF1908A' where id=2; -update noar tt set b0='OB7TXGILE0XJKRXN9CY83VBKB' where id=2; -update noar ti set b0='OB7TXGILE0XJKRXN9CY83VBKB' where id=2; -update noar tt set v0='RYL5YFPD24DMF8PTZ9ONCY0Z1CNKU5UR' where id=2; -update noar ti set v0='RYL5YFPD24DMF8PTZ9ONCY0Z1CNKU5UR' where id=2; -update noar tt set b1='W7KIGZHH29POEJF' where id=2; -update noar ti set b1='W7KIGZHH29POEJF' where id=2; -update noar tt set v0='4OVO3AYB0VQ2EEBND7R' where id=2; -update noar ti set v0='4OVO3AYB0VQ2EEBND7R' where id=2; -update noar tt set b2='UI9WQUJPYA' where id=2; -update noar ti set b2='UI9WQUJPYA' where id=2; -update noar tt set v0='6FZBGYYJRL5QL8OHGIPT6NC' where id=3; -update noar ti set v0='6FZBGYYJRL5QL8OHGIPT6NC' where id=3; -update noar tt set b0='M' where id=3; -update noar ti set b0='M' where id=3; -update noar tt set v0='E9RBS24LQE9LMLDTD8B52X8XG9AR' where id=3; -update noar ti set v0='E9RBS24LQE9LMLDTD8B52X8XG9AR' where id=3; -update noar tt set b1='3M9ZAY6KCMCEVT55PB' where id=3; -update noar ti set b1='3M9ZAY6KCMCEVT55PB' where id=3; -update noar tt set v0='XKQ4OSRTOQ92XYDXXZD4J' where id=3; -update noar ti set v0='XKQ4OSRTOQ92XYDXXZD4J' where id=3; -update noar tt set b2='0CBCS87WTG3CRG0Z46UCXLU78N00CT' where id=3; -update noar ti set b2='0CBCS87WTG3CRG0Z46UCXLU78N00CT' where id=3; -update noar tt set v0='7YZ1GVXYQAZ7M' where id=4; -update noar ti set v0='7YZ1GVXYQAZ7M' where id=4; -update noar tt set b0='I3RFY9' where id=4; -update noar ti set b0='I3RFY9' where id=4; -update noar tt set v0='2M4SR0PYAEH' where id=4; -update noar ti set v0='2M4SR0PYAEH' where id=4; -update noar tt set b1='2SEC6MBYRK7BDG2H3TQ' where id=4; -update noar ti set b1='2SEC6MBYRK7BDG2H3TQ' where id=4; -update noar tt set v0='SA90Q3W0UMKM6C5VWGL4KIYMHI' where id=4; -update noar ti set v0='SA90Q3W0UMKM6C5VWGL4KIYMHI' where id=4; -update noar tt set b2='D7WDO8F' where id=4; -update noar ti set b2='D7WDO8F' where id=4; -update noar tt set v0='2WVL5LP5DGWAMYGGKZLQFI27' where id=5; -update noar ti set v0='2WVL5LP5DGWAMYGGKZLQFI27' where id=5; -update noar tt set b0='JFXH0MHEEXI3ZILHK2EZ27Y2HKD' where id=5; -update noar ti set b0='JFXH0MHEEXI3ZILHK2EZ27Y2HKD' where id=5; -update noar tt set v0='SFH8LF1M1UR' where id=5; -update noar ti set v0='SFH8LF1M1UR' where id=5; -update noar tt set b1='2Z0Q4XTYCDAWJUR' where id=5; -update noar ti set b1='2Z0Q4XTYCDAWJUR' where id=5; -update noar tt set v0='ZO0GTH70INU3WGVX3H8I12KZ4W1' where id=5; -update noar ti set v0='ZO0GTH70INU3WGVX3H8I12KZ4W1' where id=5; -update noar tt set b2='2GVG5TDZ0W1U8PNWZ2Z5VQ' where id=5; -update noar ti set b2='2GVG5TDZ0W1U8PNWZ2Z5VQ' where id=5; -update noar tt set v0='TU79F08N50UI4L1O' where id=6; -update noar ti set v0='TU79F08N50UI4L1O' where id=6; -update noar tt set b0='XOBI8I4' where id=6; -update noar ti set b0='XOBI8I4' where id=6; -update noar tt set v0='7B63CCS09SZHOQ' where id=6; -update noar ti set v0='7B63CCS09SZHOQ' where id=6; -update noar tt set b1='AWP2FPSJQ0EB6A25M6' where id=6; -update noar ti set b1='AWP2FPSJQ0EB6A25M6' where id=6; -update noar tt set v0='2Z2M6YTE4N0NGB6J60HAD1CB0DA' where id=6; -update noar ti set v0='2Z2M6YTE4N0NGB6J60HAD1CB0DA' where id=6; -update noar tt set b2='CHWA5PFG0JK6X42OT3TBQKRWA7IY2O8' where id=6; -update noar ti set b2='CHWA5PFG0JK6X42OT3TBQKRWA7IY2O8' where id=6; -update noar tt set v0='7C9YTG3PXX' where id=7; -update noar ti set v0='7C9YTG3PXX' where id=7; -update noar tt set b0='EI93' where id=7; -update noar ti set b0='EI93' where id=7; -update noar tt set v0='2X1GI8U3CD4P2IJ9ZCVEB0YQH3MINYX' where id=7; -update noar ti set v0='2X1GI8U3CD4P2IJ9ZCVEB0YQH3MINYX' where id=7; -update noar tt set b1='C0EMNJO' where id=7; -update noar ti set b1='C0EMNJO' where id=7; -update noar tt set v0='MLQNW1XP19FF3BPQ5' where id=7; -update noar ti set v0='MLQNW1XP19FF3BPQ5' where id=7; -update noar tt set b2='BYJ6W' where id=7; -update noar ti set b2='BYJ6W' where id=7; -update noar tt set v0='T61PTORAJRPLCOXPUDHJ6Z' where id=8; -update noar ti set v0='T61PTORAJRPLCOXPUDHJ6Z' where id=8; -update noar tt set b0='P8OEM' where id=8; -update noar ti set b0='P8OEM' where id=8; -update noar tt set v0='3D5GYH1QPWP7BPB6LPWX5' where id=8; -update noar ti set v0='3D5GYH1QPWP7BPB6LPWX5' where id=8; -update noar tt set b1='C4ZYBOR31BS9' where id=8; -update noar ti set b1='C4ZYBOR31BS9' where id=8; -update noar tt set v0='I332AIMZO2VL485' where id=8; -update noar ti set v0='I332AIMZO2VL485' where id=8; -update noar tt set b2='7IAW6ZPPAQ2E735RD8A3B0CVH21' where id=8; -update noar ti set b2='7IAW6ZPPAQ2E735RD8A3B0CVH21' where id=8; -update noar tt set v0='CZHHJ' where id=9; -update noar ti set v0='CZHHJ' where id=9; -update noar tt set b0='5' where id=9; -update noar ti set b0='5' where id=9; -update noar tt set v0='X99Z9UB6DI86UD5P' where id=9; -update noar ti set v0='X99Z9UB6DI86UD5P' where id=9; -update noar tt set b1='82EW183M55IPL9QVGAJ77CN4U5E74M' where id=9; -update noar ti set b1='82EW183M55IPL9QVGAJ77CN4U5E74M' where id=9; -update noar tt set v0='Y06SNYH3' where id=9; -update noar ti set v0='Y06SNYH3' where id=9; -update noar tt set b2='MWNSAEZ2P' where id=9; -update noar ti set b2='MWNSAEZ2P' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - v0 varchar(32) not null, - b0 longblob not null, - b1 blob not null, - b2 blob not null -) engine=tokudb; -insert into tt values (1,'','','',''); -insert into tt values (2,'','','',''); -insert into tt values (3,'','','',''); -insert into tt values (4,'','','',''); -insert into tt values (5,'','','',''); -insert into tt values (6,'','','',''); -insert into tt values (7,'','','',''); -insert into tt values (8,'','','',''); -insert into tt values (9,'','','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='T' where id=1; -update noar ti set v0='T' where id=1; -update noar tt set b0='SIU9ULYKC' where id=1; -update noar ti set b0='SIU9ULYKC' where id=1; -update noar tt set v0='ZFZH3PB7ED' where id=1; -update noar ti set v0='ZFZH3PB7ED' where id=1; -update noar tt set b1='ZU' where id=1; -update noar ti set b1='ZU' where id=1; -update noar tt set v0='EOTFHZ5EWJ1AYOFD' where id=1; -update noar ti set v0='EOTFHZ5EWJ1AYOFD' where id=1; -update noar tt set b2='WAQGZA2CHZI5OCRFAP7OFANP6' where id=1; -update noar ti set b2='WAQGZA2CHZI5OCRFAP7OFANP6' where id=1; -update noar tt set v0='H5DW9A' where id=2; -update noar ti set v0='H5DW9A' where id=2; -update noar tt set b0='639001SULAZG18U7AU4YRVA' where id=2; -update noar ti set b0='639001SULAZG18U7AU4YRVA' where id=2; -update noar tt set v0='S4WNQI8IPNVQOPGOJ9MHBMZIRXOBFMD' where id=2; -update noar ti set v0='S4WNQI8IPNVQOPGOJ9MHBMZIRXOBFMD' where id=2; -update noar tt set b1='MS6STQRV4GAXOC9C' where id=2; -update noar ti set b1='MS6STQRV4GAXOC9C' where id=2; -update noar tt set v0='F01CPGHT4JLKXH3I6W7' where id=2; -update noar ti set v0='F01CPGHT4JLKXH3I6W7' where id=2; -update noar tt set b2='IO06VG' where id=2; -update noar ti set b2='IO06VG' where id=2; -update noar tt set v0='AGJ' where id=3; -update noar ti set v0='AGJ' where id=3; -update noar tt set b0='RB' where id=3; -update noar ti set b0='RB' where id=3; -update noar tt set v0='2UWLYEU2BGADY' where id=3; -update noar ti set v0='2UWLYEU2BGADY' where id=3; -update noar tt set b1='9752DUQ93LK42Z115J60XPNV' where id=3; -update noar ti set b1='9752DUQ93LK42Z115J60XPNV' where id=3; -update noar tt set v0='MPMSFRQI' where id=3; -update noar ti set v0='MPMSFRQI' where id=3; -update noar tt set b2='B' where id=3; -update noar ti set b2='B' where id=3; -update noar tt set v0='SXZUTXNDNMXVO5JMBVVU18I7' where id=4; -update noar ti set v0='SXZUTXNDNMXVO5JMBVVU18I7' where id=4; -update noar tt set b0='IO3TUEWZ43P6R1Y60MXD5' where id=4; -update noar ti set b0='IO3TUEWZ43P6R1Y60MXD5' where id=4; -update noar tt set v0='UA0MARBHHZSIP3FZZ9C7XJ9' where id=4; -update noar ti set v0='UA0MARBHHZSIP3FZZ9C7XJ9' where id=4; -update noar tt set b1='F2LU0ODAH3DU5TLRSWYLDS9' where id=4; -update noar ti set b1='F2LU0ODAH3DU5TLRSWYLDS9' where id=4; -update noar tt set v0='JZ2O19P3' where id=4; -update noar ti set v0='JZ2O19P3' where id=4; -update noar tt set b2='E8CRIRAT7S' where id=4; -update noar ti set b2='E8CRIRAT7S' where id=4; -update noar tt set v0='DLMRMIERFYJED8GMDEJ4G7G' where id=5; -update noar ti set v0='DLMRMIERFYJED8GMDEJ4G7G' where id=5; -update noar tt set b0='CAA2O' where id=5; -update noar ti set b0='CAA2O' where id=5; -update noar tt set v0='7A8JKQYS2AQCAC1S7JFOEIEFT' where id=5; -update noar ti set v0='7A8JKQYS2AQCAC1S7JFOEIEFT' where id=5; -update noar tt set b1='QVPYAC9LFB7G' where id=5; -update noar ti set b1='QVPYAC9LFB7G' where id=5; -update noar tt set v0='TYBZYCODHQ8QRU' where id=5; -update noar ti set v0='TYBZYCODHQ8QRU' where id=5; -update noar tt set b2='GW0BWV8FJ077RHJR' where id=5; -update noar ti set b2='GW0BWV8FJ077RHJR' where id=5; -update noar tt set v0='N94BACIP6HE6XA4NW0Y' where id=6; -update noar ti set v0='N94BACIP6HE6XA4NW0Y' where id=6; -update noar tt set b0='BS3D4UOMP1JWL3AOEJK3PH5N8CNI' where id=6; -update noar ti set b0='BS3D4UOMP1JWL3AOEJK3PH5N8CNI' where id=6; -update noar tt set v0='BIZ8JOG0AHVBCFG5SQ75N' where id=6; -update noar ti set v0='BIZ8JOG0AHVBCFG5SQ75N' where id=6; -update noar tt set b1='F58CMPMY' where id=6; -update noar ti set b1='F58CMPMY' where id=6; -update noar tt set v0='S66TOKO2LGXOXN5OM8' where id=6; -update noar ti set v0='S66TOKO2LGXOXN5OM8' where id=6; -update noar tt set b2='8B6OD13T38XMR' where id=6; -update noar ti set b2='8B6OD13T38XMR' where id=6; -update noar tt set v0='1' where id=7; -update noar ti set v0='1' where id=7; -update noar tt set b0='RK6044JV54ACAVDVSIJN23XTIVWE' where id=7; -update noar ti set b0='RK6044JV54ACAVDVSIJN23XTIVWE' where id=7; -update noar tt set v0='H5IW6MO7E3GNAL9YSA6EA6' where id=7; -update noar ti set v0='H5IW6MO7E3GNAL9YSA6EA6' where id=7; -update noar tt set b1='BU148FKQ100F7D' where id=7; -update noar ti set b1='BU148FKQ100F7D' where id=7; -update noar tt set v0='QU2TL69T0ML49545YVQL98' where id=7; -update noar ti set v0='QU2TL69T0ML49545YVQL98' where id=7; -update noar tt set b2='ZF0NSBRPM7GAO9AYUCVEECZ1ENYF' where id=7; -update noar ti set b2='ZF0NSBRPM7GAO9AYUCVEECZ1ENYF' where id=7; -update noar tt set v0='7IY55JZBJ1OYXEC41P33W2XWZYI2N6CY' where id=8; -update noar ti set v0='7IY55JZBJ1OYXEC41P33W2XWZYI2N6CY' where id=8; -update noar tt set b0='FJK1' where id=8; -update noar ti set b0='FJK1' where id=8; -update noar tt set v0='TE5GSCMLV5PKNJ3B13WGF8RK05W7W8' where id=8; -update noar ti set v0='TE5GSCMLV5PKNJ3B13WGF8RK05W7W8' where id=8; -update noar tt set b1='2B73K2TKEKVKMHWY792Y9CMA1BBD2' where id=8; -update noar ti set b1='2B73K2TKEKVKMHWY792Y9CMA1BBD2' where id=8; -update noar tt set v0='39PVX0HHATHKDLJ7BV3D75' where id=8; -update noar ti set v0='39PVX0HHATHKDLJ7BV3D75' where id=8; -update noar tt set b2='YENGFU8QCGABF37P6YQ' where id=8; -update noar ti set b2='YENGFU8QCGABF37P6YQ' where id=8; -update noar tt set v0='4J49JA6L5KPL9R' where id=9; -update noar ti set v0='4J49JA6L5KPL9R' where id=9; -update noar tt set b0='DGRUSPJ6A4KYKJG06U6PRTCGUXFCPB' where id=9; -update noar ti set b0='DGRUSPJ6A4KYKJG06U6PRTCGUXFCPB' where id=9; -update noar tt set v0='4LQNA9H5Q3L9' where id=9; -update noar ti set v0='4LQNA9H5Q3L9' where id=9; -update noar tt set b1='66Q' where id=9; -update noar ti set b1='66Q' where id=9; -update noar tt set v0='XUOSFGAY3OVRM9OTN23RMN8Y414JD4O' where id=9; -update noar ti set v0='XUOSFGAY3OVRM9OTN23RMN8Y414JD4O' where id=9; -update noar tt set b2='OJWREDX80X5SJIF6V5YMH1NS8JYE' where id=9; -update noar ti set b2='OJWREDX80X5SJIF6V5YMH1NS8JYE' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - v0 varchar(256) not null, - b0 longblob not null, - b1 blob not null, - b2 blob not null -) engine=tokudb; -insert into tt values (1,'','','',''); -insert into tt values (2,'','','',''); -insert into tt values (3,'','','',''); -insert into tt values (4,'','','',''); -insert into tt values (5,'','','',''); -insert into tt values (6,'','','',''); -insert into tt values (7,'','','',''); -insert into tt values (8,'','','',''); -insert into tt values (9,'','','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='U8SIJCI4YPN' where id=1; -update noar ti set v0='U8SIJCI4YPN' where id=1; -update noar tt set b0='LUUD2PD3YOV3R94BS5W1DO9K12W5RDKV' where id=1; -update noar ti set b0='LUUD2PD3YOV3R94BS5W1DO9K12W5RDKV' where id=1; -update noar tt set v0='0OO' where id=1; -update noar ti set v0='0OO' where id=1; -update noar tt set b1='8S7HWXRE3UJ' where id=1; -update noar ti set b1='8S7HWXRE3UJ' where id=1; -update noar tt set v0='F69OSZO1FRATRYPHY' where id=1; -update noar ti set v0='F69OSZO1FRATRYPHY' where id=1; -update noar tt set b2='3OJKVJMBXNAP5REGHZ0DLQWD' where id=1; -update noar ti set b2='3OJKVJMBXNAP5REGHZ0DLQWD' where id=1; -update noar tt set v0='LNT4C43E05EMHJF5SQL' where id=2; -update noar ti set v0='LNT4C43E05EMHJF5SQL' where id=2; -update noar tt set b0='8D8TJ5S6GOSVBJGVTQ2A63W8IPM' where id=2; -update noar ti set b0='8D8TJ5S6GOSVBJGVTQ2A63W8IPM' where id=2; -update noar tt set v0='G3H3MNG8J323QA2YHF' where id=2; -update noar ti set v0='G3H3MNG8J323QA2YHF' where id=2; -update noar tt set b1='54GZX2XF609LF0SABF8Q' where id=2; -update noar ti set b1='54GZX2XF609LF0SABF8Q' where id=2; -update noar tt set v0='ZUIWP20Y7GQ5T2SM4' where id=2; -update noar ti set v0='ZUIWP20Y7GQ5T2SM4' where id=2; -update noar tt set b2='7V3L5A6' where id=2; -update noar ti set b2='7V3L5A6' where id=2; -update noar tt set v0='XMA0JT04TAN3QHZT' where id=3; -update noar ti set v0='XMA0JT04TAN3QHZT' where id=3; -update noar tt set b0='44V9O8FYYD3SVVLT0IM2K7TQ1DNI1QU' where id=3; -update noar ti set b0='44V9O8FYYD3SVVLT0IM2K7TQ1DNI1QU' where id=3; -update noar tt set v0='1XUTKRMRDOZLIQC3A' where id=3; -update noar ti set v0='1XUTKRMRDOZLIQC3A' where id=3; -update noar tt set b1='F9FQ6VL0QL3KVD3AO1IF' where id=3; -update noar ti set b1='F9FQ6VL0QL3KVD3AO1IF' where id=3; -update noar tt set v0='FSHR80K' where id=3; -update noar ti set v0='FSHR80K' where id=3; -update noar tt set b2='7TO2YG04OPGWF62IOJ81VUM' where id=3; -update noar ti set b2='7TO2YG04OPGWF62IOJ81VUM' where id=3; -update noar tt set v0='9QY2JTEJBS5M0TSC3O' where id=4; -update noar ti set v0='9QY2JTEJBS5M0TSC3O' where id=4; -update noar tt set b0='6N4D0L4CY' where id=4; -update noar ti set b0='6N4D0L4CY' where id=4; -update noar tt set v0='WF8HQI7QUD44JRD3LQ3B2IL' where id=4; -update noar ti set v0='WF8HQI7QUD44JRD3LQ3B2IL' where id=4; -update noar tt set b1='ZO8RGJ0YX2JJLWUMCGEXXKLA98' where id=4; -update noar ti set b1='ZO8RGJ0YX2JJLWUMCGEXXKLA98' where id=4; -update noar tt set v0='5ISQS21S9' where id=4; -update noar ti set v0='5ISQS21S9' where id=4; -update noar tt set b2='NCHX55606AEWAK0P1TUUG34VKJ' where id=4; -update noar ti set b2='NCHX55606AEWAK0P1TUUG34VKJ' where id=4; -update noar tt set v0='JX4C84CT' where id=5; -update noar ti set v0='JX4C84CT' where id=5; -update noar tt set b0='OPCLKHTRB35DAZIV4RC7Q' where id=5; -update noar ti set b0='OPCLKHTRB35DAZIV4RC7Q' where id=5; -update noar tt set v0='ZAO9' where id=5; -update noar ti set v0='ZAO9' where id=5; -update noar tt set b1='6CK27' where id=5; -update noar ti set b1='6CK27' where id=5; -update noar tt set v0='HZTQ1M' where id=5; -update noar ti set v0='HZTQ1M' where id=5; -update noar tt set b2='LQOPPSUAE0MEZMCR4J1X9ADRQJQZ4UA3' where id=5; -update noar ti set b2='LQOPPSUAE0MEZMCR4J1X9ADRQJQZ4UA3' where id=5; -update noar tt set v0='4VA3JP' where id=6; -update noar ti set v0='4VA3JP' where id=6; -update noar tt set b0='HEW7B3VU83PUET' where id=6; -update noar ti set b0='HEW7B3VU83PUET' where id=6; -update noar tt set v0='1CMVTZVX3A51D95P4HGURCLTKIAZQ2' where id=6; -update noar ti set v0='1CMVTZVX3A51D95P4HGURCLTKIAZQ2' where id=6; -update noar tt set b1='GCGDIH86ZJK351PYI' where id=6; -update noar ti set b1='GCGDIH86ZJK351PYI' where id=6; -update noar tt set v0='JCLYLMSAE' where id=6; -update noar ti set v0='JCLYLMSAE' where id=6; -update noar tt set b2='ESGORQWV' where id=6; -update noar ti set b2='ESGORQWV' where id=6; -update noar tt set v0='LTDNZ4ZY1NR4' where id=7; -update noar ti set v0='LTDNZ4ZY1NR4' where id=7; -update noar tt set b0='9UVL785DID8OZY589FLBIEZYVQANK' where id=7; -update noar ti set b0='9UVL785DID8OZY589FLBIEZYVQANK' where id=7; -update noar tt set v0='YT3SR0TMOP' where id=7; -update noar ti set v0='YT3SR0TMOP' where id=7; -update noar tt set b1='7' where id=7; -update noar ti set b1='7' where id=7; -update noar tt set v0='57HM20P752U1U9CMZ' where id=7; -update noar ti set v0='57HM20P752U1U9CMZ' where id=7; -update noar tt set b2='Z89K24K9MVO9I3G6YG1OYPS' where id=7; -update noar ti set b2='Z89K24K9MVO9I3G6YG1OYPS' where id=7; -update noar tt set v0='ZJVSLN2SL6XTEN6' where id=8; -update noar ti set v0='ZJVSLN2SL6XTEN6' where id=8; -update noar tt set b0='QLX75HLH3SIM1TXF4F2OF' where id=8; -update noar ti set b0='QLX75HLH3SIM1TXF4F2OF' where id=8; -update noar tt set v0='Z' where id=8; -update noar ti set v0='Z' where id=8; -update noar tt set b1='Y9IPFE3BXTAC0UT9HC21ESA1FEX' where id=8; -update noar ti set b1='Y9IPFE3BXTAC0UT9HC21ESA1FEX' where id=8; -update noar tt set v0='F' where id=8; -update noar ti set v0='F' where id=8; -update noar tt set b2='DIYHEXW9PDMCSTXDNR0J95EYOO' where id=8; -update noar ti set b2='DIYHEXW9PDMCSTXDNR0J95EYOO' where id=8; -update noar tt set v0='41PZHYVX' where id=9; -update noar ti set v0='41PZHYVX' where id=9; -update noar tt set b0='K3TX52Z' where id=9; -update noar ti set b0='K3TX52Z' where id=9; -update noar tt set v0='C6' where id=9; -update noar ti set v0='C6' where id=9; -update noar tt set b1='4SM7Y7EPR76ALSJ0MY5RUZIF' where id=9; -update noar ti set b1='4SM7Y7EPR76ALSJ0MY5RUZIF' where id=9; -update noar tt set v0='TXJ5L77OC94B5N6DB7TWE7EV8VSK7' where id=9; -update noar ti set v0='TXJ5L77OC94B5N6DB7TWE7EV8VSK7' where id=9; -update noar tt set b2='MZ4F8BQ8A392YM8ARUV96Q6FKGAAJQH' where id=9; -update noar ti set b2='MZ4F8BQ8A392YM8ARUV96Q6FKGAAJQH' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - v0 varchar(32) null, - b0 longblob null, - b1 blob null, - b2 mediumblob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='TBBF7PNIEY0' where id=1; -update noar ti set v0='TBBF7PNIEY0' where id=1; -update noar tt set b0='LIZNCB0CTAXNQSD93GJ7' where id=1; -update noar ti set b0='LIZNCB0CTAXNQSD93GJ7' where id=1; -update noar tt set v0='K4I1C1C' where id=1; -update noar ti set v0='K4I1C1C' where id=1; -update noar tt set b1='VKP9NE2M88912BMV83E85RKX0' where id=1; -update noar ti set b1='VKP9NE2M88912BMV83E85RKX0' where id=1; -update noar tt set v0='XYPIXPOQCVNTJ' where id=1; -update noar ti set v0='XYPIXPOQCVNTJ' where id=1; -update noar tt set b2='T8ZJH' where id=1; -update noar ti set b2='T8ZJH' where id=1; -update noar tt set v0='YE8WYESMIBLBHOPKDIUIGAPROYKH' where id=2; -update noar ti set v0='YE8WYESMIBLBHOPKDIUIGAPROYKH' where id=2; -update noar tt set b0='2KFS6VVW6KVUQYOZ' where id=2; -update noar ti set b0='2KFS6VVW6KVUQYOZ' where id=2; -update noar tt set v0='6GC1XAWF6HIR2XJ1A4XU70TWWRBVXP' where id=2; -update noar ti set v0='6GC1XAWF6HIR2XJ1A4XU70TWWRBVXP' where id=2; -update noar tt set b1='QC' where id=2; -update noar ti set b1='QC' where id=2; -update noar tt set v0='IP05NF9I79DN9H43C2Y2J9X2' where id=2; -update noar ti set v0='IP05NF9I79DN9H43C2Y2J9X2' where id=2; -update noar tt set b2='AK55K44396UYZA58SF6' where id=2; -update noar ti set b2='AK55K44396UYZA58SF6' where id=2; -update noar tt set v0='BVXN6HK9' where id=3; -update noar ti set v0='BVXN6HK9' where id=3; -update noar tt set b0='JA7WALKHAQOBQFLYSMUZVEZLDVQ' where id=3; -update noar ti set b0='JA7WALKHAQOBQFLYSMUZVEZLDVQ' where id=3; -update noar tt set v0='S2NHOKLWQYMGGKDOZU1BJL' where id=3; -update noar ti set v0='S2NHOKLWQYMGGKDOZU1BJL' where id=3; -update noar tt set b1='E' where id=3; -update noar ti set b1='E' where id=3; -update noar tt set v0='7Z7OVC5XYY9HIRENZ9TR' where id=3; -update noar ti set v0='7Z7OVC5XYY9HIRENZ9TR' where id=3; -update noar tt set b2='M12B16' where id=3; -update noar ti set b2='M12B16' where id=3; -update noar tt set v0='JJ7NM' where id=4; -update noar ti set v0='JJ7NM' where id=4; -update noar tt set b0='5Z1QWAHPXTIZH' where id=4; -update noar ti set b0='5Z1QWAHPXTIZH' where id=4; -update noar tt set v0='5ASWU915ZHUJ6ZAX3' where id=4; -update noar ti set v0='5ASWU915ZHUJ6ZAX3' where id=4; -update noar tt set b1='M' where id=4; -update noar ti set b1='M' where id=4; -update noar tt set v0='35WL482ODFSP' where id=4; -update noar ti set v0='35WL482ODFSP' where id=4; -update noar tt set b2='YKWKLIHSBIDNV1W2W2454M0V4U4' where id=4; -update noar ti set b2='YKWKLIHSBIDNV1W2W2454M0V4U4' where id=4; -update noar tt set v0='49QN' where id=5; -update noar ti set v0='49QN' where id=5; -update noar tt set b0='FSBF' where id=5; -update noar ti set b0='FSBF' where id=5; -update noar tt set v0='M5SHHM4BVPJGHBP2V3WLBH24' where id=5; -update noar ti set v0='M5SHHM4BVPJGHBP2V3WLBH24' where id=5; -update noar tt set b1='XREMAVV3V' where id=5; -update noar ti set b1='XREMAVV3V' where id=5; -update noar tt set v0='Q3JQA1OGH6Z2FT8JMTXLD14HWTHP5Y1K' where id=5; -update noar ti set v0='Q3JQA1OGH6Z2FT8JMTXLD14HWTHP5Y1K' where id=5; -update noar tt set b2='ZLH0PSC738953AXM3' where id=5; -update noar ti set b2='ZLH0PSC738953AXM3' where id=5; -update noar tt set v0='6JEIEWSW5I4U3RBNRPZZIZ' where id=6; -update noar ti set v0='6JEIEWSW5I4U3RBNRPZZIZ' where id=6; -update noar tt set b0='TV6AFZN19FM' where id=6; -update noar ti set b0='TV6AFZN19FM' where id=6; -update noar tt set v0='3WYRVJB726G0' where id=6; -update noar ti set v0='3WYRVJB726G0' where id=6; -update noar tt set b1='BV4LMOJ8J3BMTNX01EYBCKWVXFT' where id=6; -update noar ti set b1='BV4LMOJ8J3BMTNX01EYBCKWVXFT' where id=6; -update noar tt set v0='E104FGTKY7H8SZDGHTNPNF092D1U' where id=6; -update noar ti set v0='E104FGTKY7H8SZDGHTNPNF092D1U' where id=6; -update noar tt set b2='1SCYP805068' where id=6; -update noar ti set b2='1SCYP805068' where id=6; -update noar tt set v0='DJUBO3DUJVAN' where id=7; -update noar ti set v0='DJUBO3DUJVAN' where id=7; -update noar tt set b0='Y8KMOF2FA55NBO0FYWT5O6' where id=7; -update noar ti set b0='Y8KMOF2FA55NBO0FYWT5O6' where id=7; -update noar tt set v0='CTRS5FX94HLNNDS2ICS' where id=7; -update noar ti set v0='CTRS5FX94HLNNDS2ICS' where id=7; -update noar tt set b1='FVHURWB1WUVU0Z9AD' where id=7; -update noar ti set b1='FVHURWB1WUVU0Z9AD' where id=7; -update noar tt set v0='AY' where id=7; -update noar ti set v0='AY' where id=7; -update noar tt set b2='3YMPHT51' where id=7; -update noar ti set b2='3YMPHT51' where id=7; -update noar tt set v0='Y2N8IHBQANWG9IL091D5Q7V2' where id=8; -update noar ti set v0='Y2N8IHBQANWG9IL091D5Q7V2' where id=8; -update noar tt set b0='561GQ1WTR5JUT4' where id=8; -update noar ti set b0='561GQ1WTR5JUT4' where id=8; -update noar tt set v0='CRDDPT6' where id=8; -update noar ti set v0='CRDDPT6' where id=8; -update noar tt set b1='CVI35ZHTANAXT9H0PX75BSACUJXW2Y' where id=8; -update noar ti set b1='CVI35ZHTANAXT9H0PX75BSACUJXW2Y' where id=8; -update noar tt set v0='E83T4C3AGAUEE8CA' where id=8; -update noar ti set v0='E83T4C3AGAUEE8CA' where id=8; -update noar tt set b2='PQEKJUKB6BG46N' where id=8; -update noar ti set b2='PQEKJUKB6BG46N' where id=8; -update noar tt set v0='QQLMPUZ48F2MKG57Y' where id=9; -update noar ti set v0='QQLMPUZ48F2MKG57Y' where id=9; -update noar tt set b0='57KJMENX6Q' where id=9; -update noar ti set b0='57KJMENX6Q' where id=9; -update noar tt set v0='DAVGGNCD6JCDDOGEERRU4540YEOABUQ' where id=9; -update noar ti set v0='DAVGGNCD6JCDDOGEERRU4540YEOABUQ' where id=9; -update noar tt set b1='7' where id=9; -update noar ti set b1='7' where id=9; -update noar tt set v0='E4' where id=9; -update noar ti set v0='E4' where id=9; -update noar tt set b2='VKGRLTTFLDRFU9YEF6HCINXBIKZY75O' where id=9; -update noar ti set b2='VKGRLTTFLDRFU9YEF6HCINXBIKZY75O' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - v0 varchar(256) null, - b0 longblob null, - b1 blob null, - b2 mediumblob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='2E' where id=1; -update noar ti set v0='2E' where id=1; -update noar tt set b0='53TK1A4LL' where id=1; -update noar ti set b0='53TK1A4LL' where id=1; -update noar tt set v0='9M5M4WWJUM' where id=1; -update noar ti set v0='9M5M4WWJUM' where id=1; -update noar tt set b1='SI6NYL' where id=1; -update noar ti set b1='SI6NYL' where id=1; -update noar tt set v0='73CKDYI3UC8I0GCN48UT9DEH3GOY6C37' where id=1; -update noar ti set v0='73CKDYI3UC8I0GCN48UT9DEH3GOY6C37' where id=1; -update noar tt set b2='87CERJODG11T5I7XLZ67' where id=1; -update noar ti set b2='87CERJODG11T5I7XLZ67' where id=1; -update noar tt set v0='325DYXA87X2WCVXI8RQBA8' where id=2; -update noar ti set v0='325DYXA87X2WCVXI8RQBA8' where id=2; -update noar tt set b0='9DB4O5F174YRU70V3' where id=2; -update noar ti set b0='9DB4O5F174YRU70V3' where id=2; -update noar tt set v0='Y7UVP66MTMRMDDQTOFOQG7BG7HV' where id=2; -update noar ti set v0='Y7UVP66MTMRMDDQTOFOQG7BG7HV' where id=2; -update noar tt set b1='D8D6D8ZJANJ3DOUMUXC6SKX1EF' where id=2; -update noar ti set b1='D8D6D8ZJANJ3DOUMUXC6SKX1EF' where id=2; -update noar tt set v0='W5I' where id=2; -update noar ti set v0='W5I' where id=2; -update noar tt set b2='C' where id=2; -update noar ti set b2='C' where id=2; -update noar tt set v0='0CRRFIUSG5FX' where id=3; -update noar ti set v0='0CRRFIUSG5FX' where id=3; -update noar tt set b0='IHB' where id=3; -update noar ti set b0='IHB' where id=3; -update noar tt set v0='CSBDFFO4K26WX6A1O497YZCG1IFYM0H' where id=3; -update noar ti set v0='CSBDFFO4K26WX6A1O497YZCG1IFYM0H' where id=3; -update noar tt set b1='0WDTQ8990ONKBIZX90XL7Z85BFUHGO' where id=3; -update noar ti set b1='0WDTQ8990ONKBIZX90XL7Z85BFUHGO' where id=3; -update noar tt set v0='18AJ7I5ERYTH' where id=3; -update noar ti set v0='18AJ7I5ERYTH' where id=3; -update noar tt set b2='8DQ9V' where id=3; -update noar ti set b2='8DQ9V' where id=3; -update noar tt set v0='7EMJX7JTXN3NKZG6Q1LV9VM6Q87' where id=4; -update noar ti set v0='7EMJX7JTXN3NKZG6Q1LV9VM6Q87' where id=4; -update noar tt set b0='BFBZOC5JPDFE' where id=4; -update noar ti set b0='BFBZOC5JPDFE' where id=4; -update noar tt set v0='LKCVPSETW2YZ8GG6BTZC' where id=4; -update noar ti set v0='LKCVPSETW2YZ8GG6BTZC' where id=4; -update noar tt set b1='M' where id=4; -update noar ti set b1='M' where id=4; -update noar tt set v0='PHQTBXBOD0M14DII' where id=4; -update noar ti set v0='PHQTBXBOD0M14DII' where id=4; -update noar tt set b2='OHQHP6YE' where id=4; -update noar ti set b2='OHQHP6YE' where id=4; -update noar tt set v0='J6S2OAVLBQXOF2' where id=5; -update noar ti set v0='J6S2OAVLBQXOF2' where id=5; -update noar tt set b0='LF8KZHUOLIMPORVU' where id=5; -update noar ti set b0='LF8KZHUOLIMPORVU' where id=5; -update noar tt set v0='FAP2FZOKQPPUB2J' where id=5; -update noar ti set v0='FAP2FZOKQPPUB2J' where id=5; -update noar tt set b1='R3GYXMU' where id=5; -update noar ti set b1='R3GYXMU' where id=5; -update noar tt set v0='1DMYKJB5SUQHGBKI5QCMM' where id=5; -update noar ti set v0='1DMYKJB5SUQHGBKI5QCMM' where id=5; -update noar tt set b2='1C7TCKJTE73L' where id=5; -update noar ti set b2='1C7TCKJTE73L' where id=5; -update noar tt set v0='QXY' where id=6; -update noar ti set v0='QXY' where id=6; -update noar tt set b0='N3P9Y60LA' where id=6; -update noar ti set b0='N3P9Y60LA' where id=6; -update noar tt set v0='KQ9AMGGCUE5PHY75I2' where id=6; -update noar ti set v0='KQ9AMGGCUE5PHY75I2' where id=6; -update noar tt set b1='KQUWJOYEDPXBQ8GR2LMP0LYTHGCB888' where id=6; -update noar ti set b1='KQUWJOYEDPXBQ8GR2LMP0LYTHGCB888' where id=6; -update noar tt set v0='HJX8KQMJKE47VFJ8Q6' where id=6; -update noar ti set v0='HJX8KQMJKE47VFJ8Q6' where id=6; -update noar tt set b2='ITLB5314ATXDPQL4LXS1C' where id=6; -update noar ti set b2='ITLB5314ATXDPQL4LXS1C' where id=6; -update noar tt set v0='IZKXBGF0M6MVF8WZE3HN0GZSOFW' where id=7; -update noar ti set v0='IZKXBGF0M6MVF8WZE3HN0GZSOFW' where id=7; -update noar tt set b0='M1S8GMO1YFTVKBHV3CH0Q6D5J84' where id=7; -update noar ti set b0='M1S8GMO1YFTVKBHV3CH0Q6D5J84' where id=7; -update noar tt set v0='HYBDR079M0RJPBL9V0TNXSJ3MW8' where id=7; -update noar ti set v0='HYBDR079M0RJPBL9V0TNXSJ3MW8' where id=7; -update noar tt set b1='7GOV921001P3QIW4GKG1QDMS2U40XSU0' where id=7; -update noar ti set b1='7GOV921001P3QIW4GKG1QDMS2U40XSU0' where id=7; -update noar tt set v0='I71R32RCD40GV' where id=7; -update noar ti set v0='I71R32RCD40GV' where id=7; -update noar tt set b2='TQ0K1D5CJ4LU5Z3SN1U47MBUTEDVO' where id=7; -update noar ti set b2='TQ0K1D5CJ4LU5Z3SN1U47MBUTEDVO' where id=7; -update noar tt set v0='W3JKQCMP1OGINQY2VO00MXBS0GHKNUX' where id=8; -update noar ti set v0='W3JKQCMP1OGINQY2VO00MXBS0GHKNUX' where id=8; -update noar tt set b0='ZBNA0TCRCEB' where id=8; -update noar ti set b0='ZBNA0TCRCEB' where id=8; -update noar tt set v0='JDJZEAESVWDVDTYRH2XB0' where id=8; -update noar ti set v0='JDJZEAESVWDVDTYRH2XB0' where id=8; -update noar tt set b1='LVF' where id=8; -update noar ti set b1='LVF' where id=8; -update noar tt set v0='1EKMZOSGE12VJB2ZR3SUJ649X6' where id=8; -update noar ti set v0='1EKMZOSGE12VJB2ZR3SUJ649X6' where id=8; -update noar tt set b2='5LJSMNV0P571P2N' where id=8; -update noar ti set b2='5LJSMNV0P571P2N' where id=8; -update noar tt set v0='3IC11MXCFUN4O5OVS51KUMWF' where id=9; -update noar ti set v0='3IC11MXCFUN4O5OVS51KUMWF' where id=9; -update noar tt set b0='A5O3IP3Y' where id=9; -update noar ti set b0='A5O3IP3Y' where id=9; -update noar tt set v0='BDS' where id=9; -update noar ti set v0='BDS' where id=9; -update noar tt set b1='YVK2RYAMSYJICH85Q0L5KLT' where id=9; -update noar ti set b1='YVK2RYAMSYJICH85Q0L5KLT' where id=9; -update noar tt set v0='GZ31I1069A' where id=9; -update noar ti set v0='GZ31I1069A' where id=9; -update noar tt set b2='1JP3' where id=9; -update noar ti set b2='1JP3' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - v0 varchar(32) not null, - b0 longblob not null, - b1 blob not null, - b2 mediumblob not null -) engine=tokudb; -insert into tt values (1,'','','',''); -insert into tt values (2,'','','',''); -insert into tt values (3,'','','',''); -insert into tt values (4,'','','',''); -insert into tt values (5,'','','',''); -insert into tt values (6,'','','',''); -insert into tt values (7,'','','',''); -insert into tt values (8,'','','',''); -insert into tt values (9,'','','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='UKIJ7HPB54D2N1KW50' where id=1; -update noar ti set v0='UKIJ7HPB54D2N1KW50' where id=1; -update noar tt set b0='KW' where id=1; -update noar ti set b0='KW' where id=1; -update noar tt set v0='NJ5WRQXR2LNP5ZGBPUKODQ4L4RE' where id=1; -update noar ti set v0='NJ5WRQXR2LNP5ZGBPUKODQ4L4RE' where id=1; -update noar tt set b1='KRZT54RUHIIOGBRAZ7Q0' where id=1; -update noar ti set b1='KRZT54RUHIIOGBRAZ7Q0' where id=1; -update noar tt set v0='G9UB9LVW5C' where id=1; -update noar ti set v0='G9UB9LVW5C' where id=1; -update noar tt set b2='594RGPUQ6738NEZAGTG5ZEMBKY9' where id=1; -update noar ti set b2='594RGPUQ6738NEZAGTG5ZEMBKY9' where id=1; -update noar tt set v0='V2C' where id=2; -update noar ti set v0='V2C' where id=2; -update noar tt set b0='DZC6NFZW023RZPJEF8K9VBHN98FAV5O' where id=2; -update noar ti set b0='DZC6NFZW023RZPJEF8K9VBHN98FAV5O' where id=2; -update noar tt set v0='UOOBPBV53' where id=2; -update noar ti set v0='UOOBPBV53' where id=2; -update noar tt set b1='BW41MYTU2E4BGDJN6Z' where id=2; -update noar ti set b1='BW41MYTU2E4BGDJN6Z' where id=2; -update noar tt set v0='WN43Z4AAZ80W' where id=2; -update noar ti set v0='WN43Z4AAZ80W' where id=2; -update noar tt set b2='JTTYK3QVHHBGWYAIGC504FOZS1XJ5' where id=2; -update noar ti set b2='JTTYK3QVHHBGWYAIGC504FOZS1XJ5' where id=2; -update noar tt set v0='MI1KT' where id=3; -update noar ti set v0='MI1KT' where id=3; -update noar tt set b0='T1TJOALQQWM' where id=3; -update noar ti set b0='T1TJOALQQWM' where id=3; -update noar tt set v0='AIH6PR41ICGZ0BAE0SA77EL7NBC' where id=3; -update noar ti set v0='AIH6PR41ICGZ0BAE0SA77EL7NBC' where id=3; -update noar tt set b1='NVK6IIORGFBKG0WXRBCYR6H7R' where id=3; -update noar ti set b1='NVK6IIORGFBKG0WXRBCYR6H7R' where id=3; -update noar tt set v0='RMYFIPHXLDMHHILLDGR0PXLZVR' where id=3; -update noar ti set v0='RMYFIPHXLDMHHILLDGR0PXLZVR' where id=3; -update noar tt set b2='C5F6RJ4WPUT6FQOSS2GNJNSR78G9PAL' where id=3; -update noar ti set b2='C5F6RJ4WPUT6FQOSS2GNJNSR78G9PAL' where id=3; -update noar tt set v0='U8WK8TM6IN9TVFWFZG' where id=4; -update noar ti set v0='U8WK8TM6IN9TVFWFZG' where id=4; -update noar tt set b0='9MRBJDYNZVMB4J11DAKEPPNP' where id=4; -update noar ti set b0='9MRBJDYNZVMB4J11DAKEPPNP' where id=4; -update noar tt set v0='IV64YL7ONEJKS10H58UTIOJL' where id=4; -update noar ti set v0='IV64YL7ONEJKS10H58UTIOJL' where id=4; -update noar tt set b1='DMCKOREFOHPURS2JQ9AV4OL81QU8' where id=4; -update noar ti set b1='DMCKOREFOHPURS2JQ9AV4OL81QU8' where id=4; -update noar tt set v0='NDQVS4VMYAKX4NIX6AXBUQ0' where id=4; -update noar ti set v0='NDQVS4VMYAKX4NIX6AXBUQ0' where id=4; -update noar tt set b2='ZFL89395OILU1ENGJAAM' where id=4; -update noar ti set b2='ZFL89395OILU1ENGJAAM' where id=4; -update noar tt set v0='9KP9F90F8VOV' where id=5; -update noar ti set v0='9KP9F90F8VOV' where id=5; -update noar tt set b0='QAD1TZ3G4VR7E' where id=5; -update noar ti set b0='QAD1TZ3G4VR7E' where id=5; -update noar tt set v0='8EI150DNY1QNF7SX1384HTPF3IAHG' where id=5; -update noar ti set v0='8EI150DNY1QNF7SX1384HTPF3IAHG' where id=5; -update noar tt set b1='7AG7O3IW9SNK3CDRARU' where id=5; -update noar ti set b1='7AG7O3IW9SNK3CDRARU' where id=5; -update noar tt set v0='93DY8PIEHIYBNW5N78HC' where id=5; -update noar ti set v0='93DY8PIEHIYBNW5N78HC' where id=5; -update noar tt set b2='VTTT398NHC5TFATK5SUJ63EJYTJU2' where id=5; -update noar ti set b2='VTTT398NHC5TFATK5SUJ63EJYTJU2' where id=5; -update noar tt set v0='9V6CUWYXLJZJF44AEC0XCRWD512TWK0I' where id=6; -update noar ti set v0='9V6CUWYXLJZJF44AEC0XCRWD512TWK0I' where id=6; -update noar tt set b0='FB37HKBDAKD23ZZZP4Z3' where id=6; -update noar ti set b0='FB37HKBDAKD23ZZZP4Z3' where id=6; -update noar tt set v0='TP2MLYK14IH5S1D' where id=6; -update noar ti set v0='TP2MLYK14IH5S1D' where id=6; -update noar tt set b1='ZVINAO1EA36KB46D5YXHJ0' where id=6; -update noar ti set b1='ZVINAO1EA36KB46D5YXHJ0' where id=6; -update noar tt set v0='MZVUTNW246M40QX3XD5FSJPUO8N9WKAV' where id=6; -update noar ti set v0='MZVUTNW246M40QX3XD5FSJPUO8N9WKAV' where id=6; -update noar tt set b2='SMKR3N' where id=6; -update noar ti set b2='SMKR3N' where id=6; -update noar tt set v0='X8W4YF0191NKRO2AFAU' where id=7; -update noar ti set v0='X8W4YF0191NKRO2AFAU' where id=7; -update noar tt set b0='INQYC21Z2TF58QRQ3A89GSB5' where id=7; -update noar ti set b0='INQYC21Z2TF58QRQ3A89GSB5' where id=7; -update noar tt set v0='KXUIANCEXBWSL3FP4SGU' where id=7; -update noar ti set v0='KXUIANCEXBWSL3FP4SGU' where id=7; -update noar tt set b1='8RQKOE8FYOHIWA8WB' where id=7; -update noar ti set b1='8RQKOE8FYOHIWA8WB' where id=7; -update noar tt set v0='7QMZAYZ36FVC5F87' where id=7; -update noar ti set v0='7QMZAYZ36FVC5F87' where id=7; -update noar tt set b2='OIIPOOKV7ZZKR7HURPAL1MUL9PCZW40' where id=7; -update noar ti set b2='OIIPOOKV7ZZKR7HURPAL1MUL9PCZW40' where id=7; -update noar tt set v0='RZQQHZW1DQMN0JWXX8U4CFXZR9B89Q' where id=8; -update noar ti set v0='RZQQHZW1DQMN0JWXX8U4CFXZR9B89Q' where id=8; -update noar tt set b0='UC4N0WU3TCLB74I30FOWNMJQPPMUF50C' where id=8; -update noar ti set b0='UC4N0WU3TCLB74I30FOWNMJQPPMUF50C' where id=8; -update noar tt set v0='K1ZTD89TLKK103E09C8Q7' where id=8; -update noar ti set v0='K1ZTD89TLKK103E09C8Q7' where id=8; -update noar tt set b1='12NDKZ9HL' where id=8; -update noar ti set b1='12NDKZ9HL' where id=8; -update noar tt set v0='A442U8OULC7M2T5UB7416KL' where id=8; -update noar ti set v0='A442U8OULC7M2T5UB7416KL' where id=8; -update noar tt set b2='7ZJE82EX9XK7DL6L' where id=8; -update noar ti set b2='7ZJE82EX9XK7DL6L' where id=8; -update noar tt set v0='VOSU04MMOBI3009UXCM5' where id=9; -update noar ti set v0='VOSU04MMOBI3009UXCM5' where id=9; -update noar tt set b0='PRKEEUBGOTXA3' where id=9; -update noar ti set b0='PRKEEUBGOTXA3' where id=9; -update noar tt set v0='E32NQOLSN3KUSOTNNQ' where id=9; -update noar ti set v0='E32NQOLSN3KUSOTNNQ' where id=9; -update noar tt set b1='345AT8LGSTZVN4HTUJ2LM' where id=9; -update noar ti set b1='345AT8LGSTZVN4HTUJ2LM' where id=9; -update noar tt set v0='3IORRAI29CW97PMBOGPPDM29WOOD7' where id=9; -update noar ti set v0='3IORRAI29CW97PMBOGPPDM29WOOD7' where id=9; -update noar tt set b2='161CVACR' where id=9; -update noar ti set b2='161CVACR' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - v0 varchar(256) not null, - b0 longblob not null, - b1 blob not null, - b2 mediumblob not null -) engine=tokudb; -insert into tt values (1,'','','',''); -insert into tt values (2,'','','',''); -insert into tt values (3,'','','',''); -insert into tt values (4,'','','',''); -insert into tt values (5,'','','',''); -insert into tt values (6,'','','',''); -insert into tt values (7,'','','',''); -insert into tt values (8,'','','',''); -insert into tt values (9,'','','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='S3WGRYWS1JL87K' where id=1; -update noar ti set v0='S3WGRYWS1JL87K' where id=1; -update noar tt set b0='ANUIZ2NNTQBUDA0T88L2RYZ44Q' where id=1; -update noar ti set b0='ANUIZ2NNTQBUDA0T88L2RYZ44Q' where id=1; -update noar tt set v0='E7KQ4DM76T29VJKJM' where id=1; -update noar ti set v0='E7KQ4DM76T29VJKJM' where id=1; -update noar tt set b1='RWPL' where id=1; -update noar ti set b1='RWPL' where id=1; -update noar tt set v0='L2ZEPTEO5LZID0SQTCPXODL6CB1RU' where id=1; -update noar ti set v0='L2ZEPTEO5LZID0SQTCPXODL6CB1RU' where id=1; -update noar tt set b2='M' where id=1; -update noar ti set b2='M' where id=1; -update noar tt set v0='605452XQRHQ' where id=2; -update noar ti set v0='605452XQRHQ' where id=2; -update noar tt set b0='S2Y1GNILERW5BX' where id=2; -update noar ti set b0='S2Y1GNILERW5BX' where id=2; -update noar tt set v0='322C' where id=2; -update noar ti set v0='322C' where id=2; -update noar tt set b1='F2TJ6BN8LP9D2KM8' where id=2; -update noar ti set b1='F2TJ6BN8LP9D2KM8' where id=2; -update noar tt set v0='JWR0IFLLBS' where id=2; -update noar ti set v0='JWR0IFLLBS' where id=2; -update noar tt set b2='6SLGPDR64QH1ZXQZQCX0EK564TH8SA' where id=2; -update noar ti set b2='6SLGPDR64QH1ZXQZQCX0EK564TH8SA' where id=2; -update noar tt set v0='6W' where id=3; -update noar ti set v0='6W' where id=3; -update noar tt set b0='Q3RL2U' where id=3; -update noar ti set b0='Q3RL2U' where id=3; -update noar tt set v0='LPGJ8XWM69B14YMLR' where id=3; -update noar ti set v0='LPGJ8XWM69B14YMLR' where id=3; -update noar tt set b1='GHQS7QEWEO9XE91UI4CB' where id=3; -update noar ti set b1='GHQS7QEWEO9XE91UI4CB' where id=3; -update noar tt set v0='H98TAFAKTIEGX' where id=3; -update noar ti set v0='H98TAFAKTIEGX' where id=3; -update noar tt set b2='1ET6ADIAABFH4L6B2AMYKYXWDQJROJ' where id=3; -update noar ti set b2='1ET6ADIAABFH4L6B2AMYKYXWDQJROJ' where id=3; -update noar tt set v0='U59L' where id=4; -update noar ti set v0='U59L' where id=4; -update noar tt set b0='0Y4JKSE8450D8SFL0' where id=4; -update noar ti set b0='0Y4JKSE8450D8SFL0' where id=4; -update noar tt set v0='29JZ7IN87653YDI9N0EVHEM' where id=4; -update noar ti set v0='29JZ7IN87653YDI9N0EVHEM' where id=4; -update noar tt set b1='QEBZE2HC3NP9U' where id=4; -update noar ti set b1='QEBZE2HC3NP9U' where id=4; -update noar tt set v0='4ED1URIBWQ9W1QQNGCDI' where id=4; -update noar ti set v0='4ED1URIBWQ9W1QQNGCDI' where id=4; -update noar tt set b2='X64F2F9E3JJ73VG68PAF5610O9VG' where id=4; -update noar ti set b2='X64F2F9E3JJ73VG68PAF5610O9VG' where id=4; -update noar tt set v0='TEHPUQ8383CZ6OJFP5CWAMJOFUD2Y47' where id=5; -update noar ti set v0='TEHPUQ8383CZ6OJFP5CWAMJOFUD2Y47' where id=5; -update noar tt set b0='3N1CRKKJVI5298D9PJEVLM8KGBY4N0' where id=5; -update noar ti set b0='3N1CRKKJVI5298D9PJEVLM8KGBY4N0' where id=5; -update noar tt set v0='54CE1XHYTI2ESZW398QWQAMFWDPCVR8' where id=5; -update noar ti set v0='54CE1XHYTI2ESZW398QWQAMFWDPCVR8' where id=5; -update noar tt set b1='2TCB3SDEGTPC4PLVO7J' where id=5; -update noar ti set b1='2TCB3SDEGTPC4PLVO7J' where id=5; -update noar tt set v0='XDVTJAWMK0YE3XZ6XT' where id=5; -update noar ti set v0='XDVTJAWMK0YE3XZ6XT' where id=5; -update noar tt set b2='5UB' where id=5; -update noar ti set b2='5UB' where id=5; -update noar tt set v0='P6WMWYCTZP8YC4S8FQ507W8R0GB' where id=6; -update noar ti set v0='P6WMWYCTZP8YC4S8FQ507W8R0GB' where id=6; -update noar tt set b0='XZU1SQ8YNN5JQBUK8PBDBRD9JDECQ' where id=6; -update noar ti set b0='XZU1SQ8YNN5JQBUK8PBDBRD9JDECQ' where id=6; -update noar tt set v0='JPQKP7HBTIRYC' where id=6; -update noar ti set v0='JPQKP7HBTIRYC' where id=6; -update noar tt set b1='HFTW8L0K' where id=6; -update noar ti set b1='HFTW8L0K' where id=6; -update noar tt set v0='9P79B8HRRW3IUKCP5G99YSUQ4BP2' where id=6; -update noar ti set v0='9P79B8HRRW3IUKCP5G99YSUQ4BP2' where id=6; -update noar tt set b2='Z8EI0HHMDU6M3176YYAWE89GFZ67ILN' where id=6; -update noar ti set b2='Z8EI0HHMDU6M3176YYAWE89GFZ67ILN' where id=6; -update noar tt set v0='R598N0WNNKZZ81MBQRR24WNEA83O' where id=7; -update noar ti set v0='R598N0WNNKZZ81MBQRR24WNEA83O' where id=7; -update noar tt set b0='2AFH2XG7BBE7Y6IMX' where id=7; -update noar ti set b0='2AFH2XG7BBE7Y6IMX' where id=7; -update noar tt set v0='GVL4L966AQCP39HH' where id=7; -update noar ti set v0='GVL4L966AQCP39HH' where id=7; -update noar tt set b1='3J2E90GHY1I' where id=7; -update noar ti set b1='3J2E90GHY1I' where id=7; -update noar tt set v0='3X4DERQ' where id=7; -update noar ti set v0='3X4DERQ' where id=7; -update noar tt set b2='MM7GCW7Z' where id=7; -update noar ti set b2='MM7GCW7Z' where id=7; -update noar tt set v0='2PRWPXXB29I5SFMRK6TZGMFUO6A' where id=8; -update noar ti set v0='2PRWPXXB29I5SFMRK6TZGMFUO6A' where id=8; -update noar tt set b0='RBRB9N9AK3LIWEJ9GVC7J1YIM' where id=8; -update noar ti set b0='RBRB9N9AK3LIWEJ9GVC7J1YIM' where id=8; -update noar tt set v0='W7THSP2D4K54RG8HJQNT12C' where id=8; -update noar ti set v0='W7THSP2D4K54RG8HJQNT12C' where id=8; -update noar tt set b1='GCH5CYW' where id=8; -update noar ti set b1='GCH5CYW' where id=8; -update noar tt set v0='F167WCWWYOFOPQH' where id=8; -update noar ti set v0='F167WCWWYOFOPQH' where id=8; -update noar tt set b2='29TW1DGZW3FNCA93VWNZBHOO5JP2Y' where id=8; -update noar ti set b2='29TW1DGZW3FNCA93VWNZBHOO5JP2Y' where id=8; -update noar tt set v0='O' where id=9; -update noar ti set v0='O' where id=9; -update noar tt set b0='OG8ZGD0CPFLSP' where id=9; -update noar ti set b0='OG8ZGD0CPFLSP' where id=9; -update noar tt set v0='FDP6R52NMT' where id=9; -update noar ti set v0='FDP6R52NMT' where id=9; -update noar tt set b1='2JRMGMPX3AYRI' where id=9; -update noar ti set b1='2JRMGMPX3AYRI' where id=9; -update noar tt set v0='DRFZVY2L5Y203E1S7S0VJSMVTXQUZGD' where id=9; -update noar ti set v0='DRFZVY2L5Y203E1S7S0VJSMVTXQUZGD' where id=9; -update noar tt set b2='KDVOG4LMBEQ3032BXUC7AYZD7GUHVGD' where id=9; -update noar ti set b2='KDVOG4LMBEQ3032BXUC7AYZD7GUHVGD' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - v0 varchar(32) null, - b0 longblob null, - b1 blob null, - b2 longblob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='FSW75BDDV1PMV3X986QWXKR7AAV5' where id=1; -update noar ti set v0='FSW75BDDV1PMV3X986QWXKR7AAV5' where id=1; -update noar tt set b0='JC' where id=1; -update noar ti set b0='JC' where id=1; -update noar tt set v0='ZM8X0DQAI5MOT7AYWG' where id=1; -update noar ti set v0='ZM8X0DQAI5MOT7AYWG' where id=1; -update noar tt set b1='BIAGAZJAG9T3IZME688IXY' where id=1; -update noar ti set b1='BIAGAZJAG9T3IZME688IXY' where id=1; -update noar tt set v0='RBWDFY62NS8ESMSRWIHEKNU32W10W5A0' where id=1; -update noar ti set v0='RBWDFY62NS8ESMSRWIHEKNU32W10W5A0' where id=1; -update noar tt set b2='YU4VQ3N1069EAP3IV' where id=1; -update noar ti set b2='YU4VQ3N1069EAP3IV' where id=1; -update noar tt set v0='JLGE7GCYFIRI3S2UWXFQ9VGKX9QUXIKM' where id=2; -update noar ti set v0='JLGE7GCYFIRI3S2UWXFQ9VGKX9QUXIKM' where id=2; -update noar tt set b0='YWG77Z4Y8HG7NBJ7WMR9O419X' where id=2; -update noar ti set b0='YWG77Z4Y8HG7NBJ7WMR9O419X' where id=2; -update noar tt set v0='T6DOCH0A0TRCYV' where id=2; -update noar ti set v0='T6DOCH0A0TRCYV' where id=2; -update noar tt set b1='ZHNETGL9ZN' where id=2; -update noar ti set b1='ZHNETGL9ZN' where id=2; -update noar tt set v0='L' where id=2; -update noar ti set v0='L' where id=2; -update noar tt set b2='GAPSO5HXJGKYSKKIEUMWV7ZZ9219' where id=2; -update noar ti set b2='GAPSO5HXJGKYSKKIEUMWV7ZZ9219' where id=2; -update noar tt set v0='ZZYZSKSWF50Z9WZS2IAOGBI5EN3' where id=3; -update noar ti set v0='ZZYZSKSWF50Z9WZS2IAOGBI5EN3' where id=3; -update noar tt set b0='CEVM974G1P0718EJ' where id=3; -update noar ti set b0='CEVM974G1P0718EJ' where id=3; -update noar tt set v0='H5S2ATW7C98DF9RPMMWL' where id=3; -update noar ti set v0='H5S2ATW7C98DF9RPMMWL' where id=3; -update noar tt set b1='X3JXFAX2M7COBCK9U4CCKD99ECDP' where id=3; -update noar ti set b1='X3JXFAX2M7COBCK9U4CCKD99ECDP' where id=3; -update noar tt set v0='MQYJ1XKFJ3PFPX9PGOL0E36W2L' where id=3; -update noar ti set v0='MQYJ1XKFJ3PFPX9PGOL0E36W2L' where id=3; -update noar tt set b2='R11FH6OGNN1AHWZQPMTIK' where id=3; -update noar ti set b2='R11FH6OGNN1AHWZQPMTIK' where id=3; -update noar tt set v0='GSQYPZWE4L5TG49FU0DM' where id=4; -update noar ti set v0='GSQYPZWE4L5TG49FU0DM' where id=4; -update noar tt set b0='Q9DU6YVORIO1Y7CLLZ4GSWQNYK' where id=4; -update noar ti set b0='Q9DU6YVORIO1Y7CLLZ4GSWQNYK' where id=4; -update noar tt set v0='A9GWMMIWZTFMXTENV05FGQ8SPVHOKL' where id=4; -update noar ti set v0='A9GWMMIWZTFMXTENV05FGQ8SPVHOKL' where id=4; -update noar tt set b1='SLG1MM87DROCQHN6PNHLLJIURHVQ0' where id=4; -update noar ti set b1='SLG1MM87DROCQHN6PNHLLJIURHVQ0' where id=4; -update noar tt set v0='N3Z42UT2SOFRQDGMC' where id=4; -update noar ti set v0='N3Z42UT2SOFRQDGMC' where id=4; -update noar tt set b2='FLMV1FQD64ILB3I0YELHQSPDAI9P4D5L' where id=4; -update noar ti set b2='FLMV1FQD64ILB3I0YELHQSPDAI9P4D5L' where id=4; -update noar tt set v0='ICLDS9J7TVOZ1' where id=5; -update noar ti set v0='ICLDS9J7TVOZ1' where id=5; -update noar tt set b0='2YGR189L95XJ6TVVLK6MSNI2YYGRL' where id=5; -update noar ti set b0='2YGR189L95XJ6TVVLK6MSNI2YYGRL' where id=5; -update noar tt set v0='YNA9KWNBVFV9I82Q' where id=5; -update noar ti set v0='YNA9KWNBVFV9I82Q' where id=5; -update noar tt set b1='GNOO' where id=5; -update noar ti set b1='GNOO' where id=5; -update noar tt set v0='3PTH' where id=5; -update noar ti set v0='3PTH' where id=5; -update noar tt set b2='NKLRJ6VASBQ' where id=5; -update noar ti set b2='NKLRJ6VASBQ' where id=5; -update noar tt set v0='SX5SX5NVWBO3J380IGRLVCOROGBI4WW' where id=6; -update noar ti set v0='SX5SX5NVWBO3J380IGRLVCOROGBI4WW' where id=6; -update noar tt set b0='B3R0UO2Q2E01PMDF7HZWAU6DKA4' where id=6; -update noar ti set b0='B3R0UO2Q2E01PMDF7HZWAU6DKA4' where id=6; -update noar tt set v0='CR04P4R36D5BQM' where id=6; -update noar ti set v0='CR04P4R36D5BQM' where id=6; -update noar tt set b1='GGIP0U' where id=6; -update noar ti set b1='GGIP0U' where id=6; -update noar tt set v0='CH4HDIAT4GTDC64MQ' where id=6; -update noar ti set v0='CH4HDIAT4GTDC64MQ' where id=6; -update noar tt set b2='FNIBYL9I1S9OXKBFVDO5CXNFEHMC' where id=6; -update noar ti set b2='FNIBYL9I1S9OXKBFVDO5CXNFEHMC' where id=6; -update noar tt set v0='02H' where id=7; -update noar ti set v0='02H' where id=7; -update noar tt set b0='C9E7H5C2EQOT1M' where id=7; -update noar ti set b0='C9E7H5C2EQOT1M' where id=7; -update noar tt set v0='DGFGS07K6DNCPC3MS3R' where id=7; -update noar ti set v0='DGFGS07K6DNCPC3MS3R' where id=7; -update noar tt set b1='Q0XONI3W9' where id=7; -update noar ti set b1='Q0XONI3W9' where id=7; -update noar tt set v0='JLA' where id=7; -update noar ti set v0='JLA' where id=7; -update noar tt set b2='QUTND2Z40XVU6I1374Y7DY4' where id=7; -update noar ti set b2='QUTND2Z40XVU6I1374Y7DY4' where id=7; -update noar tt set v0='8HF' where id=8; -update noar ti set v0='8HF' where id=8; -update noar tt set b0='WORURWAPBVPPGN0NLSM3EL' where id=8; -update noar ti set b0='WORURWAPBVPPGN0NLSM3EL' where id=8; -update noar tt set v0='R39N7LGH4WS7RS9ZUU41JG3' where id=8; -update noar ti set v0='R39N7LGH4WS7RS9ZUU41JG3' where id=8; -update noar tt set b1='WSLC6MIHAXWDH6XOOX1' where id=8; -update noar ti set b1='WSLC6MIHAXWDH6XOOX1' where id=8; -update noar tt set v0='UIVXW' where id=8; -update noar ti set v0='UIVXW' where id=8; -update noar tt set b2='0AS2JR3U946QVNOF9CHDSH1FE7VH' where id=8; -update noar ti set b2='0AS2JR3U946QVNOF9CHDSH1FE7VH' where id=8; -update noar tt set v0='MB75XVQOMALVJ' where id=9; -update noar ti set v0='MB75XVQOMALVJ' where id=9; -update noar tt set b0='2ABLE4QR49JE5JGSOYKXLLH45W' where id=9; -update noar ti set b0='2ABLE4QR49JE5JGSOYKXLLH45W' where id=9; -update noar tt set v0='ICGZHLQCZME9WGX2IEG1J' where id=9; -update noar ti set v0='ICGZHLQCZME9WGX2IEG1J' where id=9; -update noar tt set b1='NHKE4FV419DKF0LRP' where id=9; -update noar ti set b1='NHKE4FV419DKF0LRP' where id=9; -update noar tt set v0='Y276HO0ONEXAVTY' where id=9; -update noar ti set v0='Y276HO0ONEXAVTY' where id=9; -update noar tt set b2='8P6JLX4FO9THEXEKUFG6UUMFWDJZ7DZ8' where id=9; -update noar ti set b2='8P6JLX4FO9THEXEKUFG6UUMFWDJZ7DZ8' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - v0 varchar(256) null, - b0 longblob null, - b1 blob null, - b2 longblob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='L' where id=1; -update noar ti set v0='L' where id=1; -update noar tt set b0='IZDGVD23VNETNGY5XTLCHSPOCD' where id=1; -update noar ti set b0='IZDGVD23VNETNGY5XTLCHSPOCD' where id=1; -update noar tt set v0='UAX9SHXL53IFTHBOF11NIU7VFTQGFLFG' where id=1; -update noar ti set v0='UAX9SHXL53IFTHBOF11NIU7VFTQGFLFG' where id=1; -update noar tt set b1='B8J18ASUR15OQ4T' where id=1; -update noar ti set b1='B8J18ASUR15OQ4T' where id=1; -update noar tt set v0='5RUR2QM26SI' where id=1; -update noar ti set v0='5RUR2QM26SI' where id=1; -update noar tt set b2='8E0EP9Q61EHI5MYY3TJKDG' where id=1; -update noar ti set b2='8E0EP9Q61EHI5MYY3TJKDG' where id=1; -update noar tt set v0='QZYWCD' where id=2; -update noar ti set v0='QZYWCD' where id=2; -update noar tt set b0='BINEM1YJTSUNDCC876' where id=2; -update noar ti set b0='BINEM1YJTSUNDCC876' where id=2; -update noar tt set v0='P' where id=2; -update noar ti set v0='P' where id=2; -update noar tt set b1='7YUUSBRW7A6AT4PW1LX7B03FQ' where id=2; -update noar ti set b1='7YUUSBRW7A6AT4PW1LX7B03FQ' where id=2; -update noar tt set v0='A298' where id=2; -update noar ti set v0='A298' where id=2; -update noar tt set b2='GZYHSDQJQHYALX71VU93L' where id=2; -update noar ti set b2='GZYHSDQJQHYALX71VU93L' where id=2; -update noar tt set v0='D85O7I' where id=3; -update noar ti set v0='D85O7I' where id=3; -update noar tt set b0='CPA8QF9H9UX12KA81' where id=3; -update noar ti set b0='CPA8QF9H9UX12KA81' where id=3; -update noar tt set v0='FICQ84LZJFIP7PYL' where id=3; -update noar ti set v0='FICQ84LZJFIP7PYL' where id=3; -update noar tt set b1='IX3GC' where id=3; -update noar ti set b1='IX3GC' where id=3; -update noar tt set v0='F8BYMYYZK' where id=3; -update noar ti set v0='F8BYMYYZK' where id=3; -update noar tt set b2='DTY2J15TDF6QJ4ASDFHV' where id=3; -update noar ti set b2='DTY2J15TDF6QJ4ASDFHV' where id=3; -update noar tt set v0='JSFK' where id=4; -update noar ti set v0='JSFK' where id=4; -update noar tt set b0='PSGKQCI247AWJF4TYZOCYP2' where id=4; -update noar ti set b0='PSGKQCI247AWJF4TYZOCYP2' where id=4; -update noar tt set v0='CINJSK' where id=4; -update noar ti set v0='CINJSK' where id=4; -update noar tt set b1='71YNP5SHY3ACZ' where id=4; -update noar ti set b1='71YNP5SHY3ACZ' where id=4; -update noar tt set v0='WJ6FJ8ZS0731AKJR6X12SDJY' where id=4; -update noar ti set v0='WJ6FJ8ZS0731AKJR6X12SDJY' where id=4; -update noar tt set b2='RBNY60W2NIO401AZF0JABJS' where id=4; -update noar ti set b2='RBNY60W2NIO401AZF0JABJS' where id=4; -update noar tt set v0='41RSKPVDMZ9TJ2X0Y' where id=5; -update noar ti set v0='41RSKPVDMZ9TJ2X0Y' where id=5; -update noar tt set b0='RST9GQUA12JLRJWYT8SG03' where id=5; -update noar ti set b0='RST9GQUA12JLRJWYT8SG03' where id=5; -update noar tt set v0='SM9M2WFG2UFUPGKQ0BHK28PAVOPMMEDK' where id=5; -update noar ti set v0='SM9M2WFG2UFUPGKQ0BHK28PAVOPMMEDK' where id=5; -update noar tt set b1='JL7D3A5W6DTOSOJT387' where id=5; -update noar ti set b1='JL7D3A5W6DTOSOJT387' where id=5; -update noar tt set v0='G3GRW4A7T7NXYECN9S8' where id=5; -update noar ti set v0='G3GRW4A7T7NXYECN9S8' where id=5; -update noar tt set b2='JP3AP2RV3CHL6NLKH44W' where id=5; -update noar ti set b2='JP3AP2RV3CHL6NLKH44W' where id=5; -update noar tt set v0='HNEGO' where id=6; -update noar ti set v0='HNEGO' where id=6; -update noar tt set b0='U12549GNVN' where id=6; -update noar ti set b0='U12549GNVN' where id=6; -update noar tt set v0='DDL4V8N5D10UKHGOUAU' where id=6; -update noar ti set v0='DDL4V8N5D10UKHGOUAU' where id=6; -update noar tt set b1='B' where id=6; -update noar ti set b1='B' where id=6; -update noar tt set v0='B16NOL74LUGBL13JE9TXN79P64G' where id=6; -update noar ti set v0='B16NOL74LUGBL13JE9TXN79P64G' where id=6; -update noar tt set b2='BBSMZ5LNW9Y01F45U4Y3B3Z1SET8W' where id=6; -update noar ti set b2='BBSMZ5LNW9Y01F45U4Y3B3Z1SET8W' where id=6; -update noar tt set v0='P' where id=7; -update noar ti set v0='P' where id=7; -update noar tt set b0='KB5F87UYEMELU1TV8M6URR' where id=7; -update noar ti set b0='KB5F87UYEMELU1TV8M6URR' where id=7; -update noar tt set v0='VHY5G' where id=7; -update noar ti set v0='VHY5G' where id=7; -update noar tt set b1='XLIK3Q9BEC5CVUVKQEF0' where id=7; -update noar ti set b1='XLIK3Q9BEC5CVUVKQEF0' where id=7; -update noar tt set v0='PGFJOT537HSAX83GK63EIQWD7AFB' where id=7; -update noar ti set v0='PGFJOT537HSAX83GK63EIQWD7AFB' where id=7; -update noar tt set b2='ZGA' where id=7; -update noar ti set b2='ZGA' where id=7; -update noar tt set v0='6FY31V0YF8S9XUBBHQY' where id=8; -update noar ti set v0='6FY31V0YF8S9XUBBHQY' where id=8; -update noar tt set b0='2H6ICYISC3QGBMRQQIDU2Z' where id=8; -update noar ti set b0='2H6ICYISC3QGBMRQQIDU2Z' where id=8; -update noar tt set v0='UMI4K' where id=8; -update noar ti set v0='UMI4K' where id=8; -update noar tt set b1='CF9FSN7IOJ87XMIBTL3E1FQ38Q' where id=8; -update noar ti set b1='CF9FSN7IOJ87XMIBTL3E1FQ38Q' where id=8; -update noar tt set v0='T0IC0011NB' where id=8; -update noar ti set v0='T0IC0011NB' where id=8; -update noar tt set b2='2CLAVM6ICGB6C5GTRN9AHO' where id=8; -update noar ti set b2='2CLAVM6ICGB6C5GTRN9AHO' where id=8; -update noar tt set v0='44YSU3K9RQFOCJO9HDEWVVNA5Z' where id=9; -update noar ti set v0='44YSU3K9RQFOCJO9HDEWVVNA5Z' where id=9; -update noar tt set b0='7Q6D64RGUK3PUY' where id=9; -update noar ti set b0='7Q6D64RGUK3PUY' where id=9; -update noar tt set v0='NZ9IZYIWTQT8XX7EQTGTLO5Z' where id=9; -update noar ti set v0='NZ9IZYIWTQT8XX7EQTGTLO5Z' where id=9; -update noar tt set b1='4' where id=9; -update noar ti set b1='4' where id=9; -update noar tt set v0='QEH2B8FJFGMO4MKY6NL' where id=9; -update noar ti set v0='QEH2B8FJFGMO4MKY6NL' where id=9; -update noar tt set b2='ZU58H9' where id=9; -update noar ti set b2='ZU58H9' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - v0 varchar(32) not null, - b0 longblob not null, - b1 blob not null, - b2 longblob not null -) engine=tokudb; -insert into tt values (1,'','','',''); -insert into tt values (2,'','','',''); -insert into tt values (3,'','','',''); -insert into tt values (4,'','','',''); -insert into tt values (5,'','','',''); -insert into tt values (6,'','','',''); -insert into tt values (7,'','','',''); -insert into tt values (8,'','','',''); -insert into tt values (9,'','','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='DTMX31LT49' where id=1; -update noar ti set v0='DTMX31LT49' where id=1; -update noar tt set b0='PAIW5VX' where id=1; -update noar ti set b0='PAIW5VX' where id=1; -update noar tt set v0='PQ1P3WOVPOAQ09BNOV6' where id=1; -update noar ti set v0='PQ1P3WOVPOAQ09BNOV6' where id=1; -update noar tt set b1='ZNMM2QH8D3' where id=1; -update noar ti set b1='ZNMM2QH8D3' where id=1; -update noar tt set v0='9' where id=1; -update noar ti set v0='9' where id=1; -update noar tt set b2='21EP4CDRGDO3P4GBDYWQEL' where id=1; -update noar ti set b2='21EP4CDRGDO3P4GBDYWQEL' where id=1; -update noar tt set v0='242U6W' where id=2; -update noar ti set v0='242U6W' where id=2; -update noar tt set b0='QY1GS8DC6G4W4TT4EMY3RP8' where id=2; -update noar ti set b0='QY1GS8DC6G4W4TT4EMY3RP8' where id=2; -update noar tt set v0='UHJMZKTNQYM07TR' where id=2; -update noar ti set v0='UHJMZKTNQYM07TR' where id=2; -update noar tt set b1='M' where id=2; -update noar ti set b1='M' where id=2; -update noar tt set v0='XX7JU2EWQCU' where id=2; -update noar ti set v0='XX7JU2EWQCU' where id=2; -update noar tt set b2='W' where id=2; -update noar ti set b2='W' where id=2; -update noar tt set v0='KK2GTOD6G' where id=3; -update noar ti set v0='KK2GTOD6G' where id=3; -update noar tt set b0='JUDSP5NKRSK57OQBR' where id=3; -update noar ti set b0='JUDSP5NKRSK57OQBR' where id=3; -update noar tt set v0='W66TIBKUX60QL3HOBI0AIFL17NW' where id=3; -update noar ti set v0='W66TIBKUX60QL3HOBI0AIFL17NW' where id=3; -update noar tt set b1='LC6D3Z' where id=3; -update noar ti set b1='LC6D3Z' where id=3; -update noar tt set v0='S708Z4E' where id=3; -update noar ti set v0='S708Z4E' where id=3; -update noar tt set b2='2FFK5' where id=3; -update noar ti set b2='2FFK5' where id=3; -update noar tt set v0='PT22MSDN13S6GE' where id=4; -update noar ti set v0='PT22MSDN13S6GE' where id=4; -update noar tt set b0='4H9DYO3EVGG0ERP5CJZDE91F8UU' where id=4; -update noar ti set b0='4H9DYO3EVGG0ERP5CJZDE91F8UU' where id=4; -update noar tt set v0='26AXFZS49ZF004BMLOGMB4PYNEWHA' where id=4; -update noar ti set v0='26AXFZS49ZF004BMLOGMB4PYNEWHA' where id=4; -update noar tt set b1='OBYGYWZJONTEX8GTDKC' where id=4; -update noar ti set b1='OBYGYWZJONTEX8GTDKC' where id=4; -update noar tt set v0='G9ZLLSPV3YKDQZ1X' where id=4; -update noar ti set v0='G9ZLLSPV3YKDQZ1X' where id=4; -update noar tt set b2='F5P74FRS78K4T1L' where id=4; -update noar ti set b2='F5P74FRS78K4T1L' where id=4; -update noar tt set v0='4T5R' where id=5; -update noar ti set v0='4T5R' where id=5; -update noar tt set b0='E9VY137EVTW8VSAKEENN0K1IPR6N' where id=5; -update noar ti set b0='E9VY137EVTW8VSAKEENN0K1IPR6N' where id=5; -update noar tt set v0='IR24U' where id=5; -update noar ti set v0='IR24U' where id=5; -update noar tt set b1='IFQNUF4Q' where id=5; -update noar ti set b1='IFQNUF4Q' where id=5; -update noar tt set v0='QUJBTXTAUP0YHF5C052RYEY4IN9' where id=5; -update noar ti set v0='QUJBTXTAUP0YHF5C052RYEY4IN9' where id=5; -update noar tt set b2='HHL2R52IHN3JS6FU7LKHB7QOB' where id=5; -update noar ti set b2='HHL2R52IHN3JS6FU7LKHB7QOB' where id=5; -update noar tt set v0='VGR1KV1OMROQ65YSRQYHT6ZVW' where id=6; -update noar ti set v0='VGR1KV1OMROQ65YSRQYHT6ZVW' where id=6; -update noar tt set b0='01O9NBGUVH9WNB4S025B1TZ9I' where id=6; -update noar ti set b0='01O9NBGUVH9WNB4S025B1TZ9I' where id=6; -update noar tt set v0='NU1VRWH1BY3XHQ' where id=6; -update noar ti set v0='NU1VRWH1BY3XHQ' where id=6; -update noar tt set b1='P1PBGYABXMC' where id=6; -update noar ti set b1='P1PBGYABXMC' where id=6; -update noar tt set v0='CDENN3JWMIVNF' where id=6; -update noar ti set v0='CDENN3JWMIVNF' where id=6; -update noar tt set b2='K5CPN6ZZMCF52D13G90' where id=6; -update noar ti set b2='K5CPN6ZZMCF52D13G90' where id=6; -update noar tt set v0='J0U5KLDWT20DX9BW3C1OJ0' where id=7; -update noar ti set v0='J0U5KLDWT20DX9BW3C1OJ0' where id=7; -update noar tt set b0='YVLF' where id=7; -update noar ti set b0='YVLF' where id=7; -update noar tt set v0='OBP0EPIUE8WZLG328CTIL' where id=7; -update noar ti set v0='OBP0EPIUE8WZLG328CTIL' where id=7; -update noar tt set b1='DZZ9MJ2CFU8YOH6FMX1' where id=7; -update noar ti set b1='DZZ9MJ2CFU8YOH6FMX1' where id=7; -update noar tt set v0='B1UU9' where id=7; -update noar ti set v0='B1UU9' where id=7; -update noar tt set b2='JGOJ1O5ESXBEN7QQNWK3K1N0JH' where id=7; -update noar ti set b2='JGOJ1O5ESXBEN7QQNWK3K1N0JH' where id=7; -update noar tt set v0='OOBQJZFN72H9C564B3MH' where id=8; -update noar ti set v0='OOBQJZFN72H9C564B3MH' where id=8; -update noar tt set b0='NZ0GGLHXVCZSCKY660KWQ5' where id=8; -update noar ti set b0='NZ0GGLHXVCZSCKY660KWQ5' where id=8; -update noar tt set v0='PW5E5EGXSO7QD30APF69HG' where id=8; -update noar ti set v0='PW5E5EGXSO7QD30APF69HG' where id=8; -update noar tt set b1='9UEC06C49JBF2399K7WE96UAKHKA' where id=8; -update noar ti set b1='9UEC06C49JBF2399K7WE96UAKHKA' where id=8; -update noar tt set v0='NJ' where id=8; -update noar ti set v0='NJ' where id=8; -update noar tt set b2='N0D1X57S5D38EKVICEQ' where id=8; -update noar ti set b2='N0D1X57S5D38EKVICEQ' where id=8; -update noar tt set v0='QYGRDIB1OK5KQYQL3NMZICWT54MVE645' where id=9; -update noar ti set v0='QYGRDIB1OK5KQYQL3NMZICWT54MVE645' where id=9; -update noar tt set b0='66P8RS0J2' where id=9; -update noar ti set b0='66P8RS0J2' where id=9; -update noar tt set v0='96UZN0ODBV1YIR2YFQUL9EL' where id=9; -update noar ti set v0='96UZN0ODBV1YIR2YFQUL9EL' where id=9; -update noar tt set b1='APCV460NQRTF' where id=9; -update noar ti set b1='APCV460NQRTF' where id=9; -update noar tt set v0='VOA55UOV17DCYAT' where id=9; -update noar ti set v0='VOA55UOV17DCYAT' where id=9; -update noar tt set b2='JCT7W515BQHB7SX9Q2DLDH7310HU' where id=9; -update noar ti set b2='JCT7W515BQHB7SX9Q2DLDH7310HU' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - v0 varchar(256) not null, - b0 longblob not null, - b1 blob not null, - b2 longblob not null -) engine=tokudb; -insert into tt values (1,'','','',''); -insert into tt values (2,'','','',''); -insert into tt values (3,'','','',''); -insert into tt values (4,'','','',''); -insert into tt values (5,'','','',''); -insert into tt values (6,'','','',''); -insert into tt values (7,'','','',''); -insert into tt values (8,'','','',''); -insert into tt values (9,'','','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='IFHBN69C2W9IH8Q1I5' where id=1; -update noar ti set v0='IFHBN69C2W9IH8Q1I5' where id=1; -update noar tt set b0='K2EZPJMULWBD1Q9HMP' where id=1; -update noar ti set b0='K2EZPJMULWBD1Q9HMP' where id=1; -update noar tt set v0='V0Y' where id=1; -update noar ti set v0='V0Y' where id=1; -update noar tt set b1='FW' where id=1; -update noar ti set b1='FW' where id=1; -update noar tt set v0='1EQFFX4S7WO89IFGGFGTLGL' where id=1; -update noar ti set v0='1EQFFX4S7WO89IFGGFGTLGL' where id=1; -update noar tt set b2='H4P4VTTZZST92I7MAIUOLEFN' where id=1; -update noar ti set b2='H4P4VTTZZST92I7MAIUOLEFN' where id=1; -update noar tt set v0='7J0R6O6D4COSHLQOXTOL' where id=2; -update noar ti set v0='7J0R6O6D4COSHLQOXTOL' where id=2; -update noar tt set b0='756Y' where id=2; -update noar ti set b0='756Y' where id=2; -update noar tt set v0='MWJE44Z' where id=2; -update noar ti set v0='MWJE44Z' where id=2; -update noar tt set b1='RYSNYV4FA96AU' where id=2; -update noar ti set b1='RYSNYV4FA96AU' where id=2; -update noar tt set v0='3HVY' where id=2; -update noar ti set v0='3HVY' where id=2; -update noar tt set b2='54LHL' where id=2; -update noar ti set b2='54LHL' where id=2; -update noar tt set v0='6SUIYDNFL1WLYMEIDOBDXJHX8' where id=3; -update noar ti set v0='6SUIYDNFL1WLYMEIDOBDXJHX8' where id=3; -update noar tt set b0='TQQZ1NG4TZUYPQ4O99TGZGZUV' where id=3; -update noar ti set b0='TQQZ1NG4TZUYPQ4O99TGZGZUV' where id=3; -update noar tt set v0='T2K5EBKLKUMLNNGS' where id=3; -update noar ti set v0='T2K5EBKLKUMLNNGS' where id=3; -update noar tt set b1='6LFQMYZ3I2X' where id=3; -update noar ti set b1='6LFQMYZ3I2X' where id=3; -update noar tt set v0='V7RIZMDYL8UT6731QDD' where id=3; -update noar ti set v0='V7RIZMDYL8UT6731QDD' where id=3; -update noar tt set b2='I' where id=3; -update noar ti set b2='I' where id=3; -update noar tt set v0='7UYA84RHSB7XYZG' where id=4; -update noar ti set v0='7UYA84RHSB7XYZG' where id=4; -update noar tt set b0='IY' where id=4; -update noar ti set b0='IY' where id=4; -update noar tt set v0='FDFY6B' where id=4; -update noar ti set v0='FDFY6B' where id=4; -update noar tt set b1='K4A1DR46UCEKTQD83OILDY' where id=4; -update noar ti set b1='K4A1DR46UCEKTQD83OILDY' where id=4; -update noar tt set v0='0LYV0Y65VWVGJ9EW' where id=4; -update noar ti set v0='0LYV0Y65VWVGJ9EW' where id=4; -update noar tt set b2='BHC6AABZIM' where id=4; -update noar ti set b2='BHC6AABZIM' where id=4; -update noar tt set v0='YUZOM62M3ZD1DKS7YS' where id=5; -update noar ti set v0='YUZOM62M3ZD1DKS7YS' where id=5; -update noar tt set b0='MWKGIRKGIGJHJ6ZEQ0E1Z1GM0' where id=5; -update noar ti set b0='MWKGIRKGIGJHJ6ZEQ0E1Z1GM0' where id=5; -update noar tt set v0='AMG85TBX5SNXT' where id=5; -update noar ti set v0='AMG85TBX5SNXT' where id=5; -update noar tt set b1='LXTBW' where id=5; -update noar ti set b1='LXTBW' where id=5; -update noar tt set v0='PNNQ48WUL9D921YV51XLKDCWN42UYXUD' where id=5; -update noar ti set v0='PNNQ48WUL9D921YV51XLKDCWN42UYXUD' where id=5; -update noar tt set b2='WNXM0XP8NCVBV' where id=5; -update noar ti set b2='WNXM0XP8NCVBV' where id=5; -update noar tt set v0='7P3SMXKNRDE6B43PAZ2QYDY' where id=6; -update noar ti set v0='7P3SMXKNRDE6B43PAZ2QYDY' where id=6; -update noar tt set b0='S3S0BKWUVSVAY55AYVWF9T3D8Y8BGG' where id=6; -update noar ti set b0='S3S0BKWUVSVAY55AYVWF9T3D8Y8BGG' where id=6; -update noar tt set v0='U6L4233IRRA3J2W9GM8NH75KCZ' where id=6; -update noar ti set v0='U6L4233IRRA3J2W9GM8NH75KCZ' where id=6; -update noar tt set b1='6KZ5V5CV3PK3QH6JZO8QVGV59BP' where id=6; -update noar ti set b1='6KZ5V5CV3PK3QH6JZO8QVGV59BP' where id=6; -update noar tt set v0='JSOG8BT7Z7A' where id=6; -update noar ti set v0='JSOG8BT7Z7A' where id=6; -update noar tt set b2='7AXL8J9L411W4W' where id=6; -update noar ti set b2='7AXL8J9L411W4W' where id=6; -update noar tt set v0='VXRGTZGXFOQSGM6WCDUMR3' where id=7; -update noar ti set v0='VXRGTZGXFOQSGM6WCDUMR3' where id=7; -update noar tt set b0='E6N1DZ0HCJN7TWR57ZKUZ29341IEQ' where id=7; -update noar ti set b0='E6N1DZ0HCJN7TWR57ZKUZ29341IEQ' where id=7; -update noar tt set v0='EMNHTOWOPS4RM8KIKV5TQ4LA7U9RDOP9' where id=7; -update noar ti set v0='EMNHTOWOPS4RM8KIKV5TQ4LA7U9RDOP9' where id=7; -update noar tt set b1='Q2CKSPZGM02UOITDSHLFNGZN' where id=7; -update noar ti set b1='Q2CKSPZGM02UOITDSHLFNGZN' where id=7; -update noar tt set v0='5IYW' where id=7; -update noar ti set v0='5IYW' where id=7; -update noar tt set b2='I8OXFV24GB6G' where id=7; -update noar ti set b2='I8OXFV24GB6G' where id=7; -update noar tt set v0='3S60974J' where id=8; -update noar ti set v0='3S60974J' where id=8; -update noar tt set b0='0PII0CSKGOUX9SZ1N319' where id=8; -update noar ti set b0='0PII0CSKGOUX9SZ1N319' where id=8; -update noar tt set v0='Z7TYZQUWV9' where id=8; -update noar ti set v0='Z7TYZQUWV9' where id=8; -update noar tt set b1='P40KW6Y4EGGC0V' where id=8; -update noar ti set b1='P40KW6Y4EGGC0V' where id=8; -update noar tt set v0='2S' where id=8; -update noar ti set v0='2S' where id=8; -update noar tt set b2='HZ8R527GG7982M63' where id=8; -update noar ti set b2='HZ8R527GG7982M63' where id=8; -update noar tt set v0='B16XUAD5I' where id=9; -update noar ti set v0='B16XUAD5I' where id=9; -update noar tt set b0='R' where id=9; -update noar ti set b0='R' where id=9; -update noar tt set v0='CPWNEW3ST3D2' where id=9; -update noar ti set v0='CPWNEW3ST3D2' where id=9; -update noar tt set b1='U0YF3J7V4EM6DL85C3' where id=9; -update noar ti set b1='U0YF3J7V4EM6DL85C3' where id=9; -update noar tt set v0='HX01FHNZ1901HRG49X' where id=9; -update noar ti set v0='HX01FHNZ1901HRG49X' where id=9; -update noar tt set b2='7F9GOYGBGTP031UO19RHET1UFUC1L' where id=9; -update noar ti set b2='7F9GOYGBGTP031UO19RHET1UFUC1L' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - v0 varchar(32) null, - b0 longblob null, - b1 mediumblob null, - b2 tinyblob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='KKG71HYAK6VH4' where id=1; -update noar ti set v0='KKG71HYAK6VH4' where id=1; -update noar tt set b0='7NL8U' where id=1; -update noar ti set b0='7NL8U' where id=1; -update noar tt set v0='K6NK3340PXQHMIGCI66' where id=1; -update noar ti set v0='K6NK3340PXQHMIGCI66' where id=1; -update noar tt set b1='X0E2E7DJ9DU4D084BRA00F9PO3Z9TS' where id=1; -update noar ti set b1='X0E2E7DJ9DU4D084BRA00F9PO3Z9TS' where id=1; -update noar tt set v0='EPNZ8F5KYZQXVTMA' where id=1; -update noar ti set v0='EPNZ8F5KYZQXVTMA' where id=1; -update noar tt set b2='JU91' where id=1; -update noar ti set b2='JU91' where id=1; -update noar tt set v0='1CZK' where id=2; -update noar ti set v0='1CZK' where id=2; -update noar tt set b0='1U4HOMCUNG7FECITNRBWEV049JHEE' where id=2; -update noar ti set b0='1U4HOMCUNG7FECITNRBWEV049JHEE' where id=2; -update noar tt set v0='LONF7ZLFZ11I9I42WBLVEFI09R2I' where id=2; -update noar ti set v0='LONF7ZLFZ11I9I42WBLVEFI09R2I' where id=2; -update noar tt set b1='CT9UF0XFJXDU5HYFG5JK9M' where id=2; -update noar ti set b1='CT9UF0XFJXDU5HYFG5JK9M' where id=2; -update noar tt set v0='04SEPXRP2KX0OJBX5R08W789FH75R' where id=2; -update noar ti set v0='04SEPXRP2KX0OJBX5R08W789FH75R' where id=2; -update noar tt set b2='QRYYAZO4ODLRHL0YKJ' where id=2; -update noar ti set b2='QRYYAZO4ODLRHL0YKJ' where id=2; -update noar tt set v0='C15Q13TVWFIMUCJ3QP122G241OT' where id=3; -update noar ti set v0='C15Q13TVWFIMUCJ3QP122G241OT' where id=3; -update noar tt set b0='BE5YU6UTBNMU' where id=3; -update noar ti set b0='BE5YU6UTBNMU' where id=3; -update noar tt set v0='ZVJEMU6EZN9S0VQINI02J1M1BRE2EPDK' where id=3; -update noar ti set v0='ZVJEMU6EZN9S0VQINI02J1M1BRE2EPDK' where id=3; -update noar tt set b1='TB1RUWW1YNZ6CEMMKM04254EMF14B' where id=3; -update noar ti set b1='TB1RUWW1YNZ6CEMMKM04254EMF14B' where id=3; -update noar tt set v0='LCO31M3M3N588RBRR7BKP0ADLX2U' where id=3; -update noar ti set v0='LCO31M3M3N588RBRR7BKP0ADLX2U' where id=3; -update noar tt set b2='OEZQAOA9VQZ384NH2PM9KH9XHNF' where id=3; -update noar ti set b2='OEZQAOA9VQZ384NH2PM9KH9XHNF' where id=3; -update noar tt set v0='IXAGO2SGMFQBKGK6UMCTRNTFKCCJ8' where id=4; -update noar ti set v0='IXAGO2SGMFQBKGK6UMCTRNTFKCCJ8' where id=4; -update noar tt set b0='GYHL1BJU34B4WE6JR8M7M' where id=4; -update noar ti set b0='GYHL1BJU34B4WE6JR8M7M' where id=4; -update noar tt set v0='AKXGGKICASNTJEZ' where id=4; -update noar ti set v0='AKXGGKICASNTJEZ' where id=4; -update noar tt set b1='8B5JNCBCM2O59V69OV18DNGMP9' where id=4; -update noar ti set b1='8B5JNCBCM2O59V69OV18DNGMP9' where id=4; -update noar tt set v0='J8Q6TD1C7RP2U107XA5' where id=4; -update noar ti set v0='J8Q6TD1C7RP2U107XA5' where id=4; -update noar tt set b2='4H7RUEITVZJHVBLGVXCSOMO53F7LLG' where id=4; -update noar ti set b2='4H7RUEITVZJHVBLGVXCSOMO53F7LLG' where id=4; -update noar tt set v0='8TRLGUPWI3' where id=5; -update noar ti set v0='8TRLGUPWI3' where id=5; -update noar tt set b0='MWS8G1Y2' where id=5; -update noar ti set b0='MWS8G1Y2' where id=5; -update noar tt set v0='W4FFGSYVW45WYPSWEZIUE4PZ7IFGN' where id=5; -update noar ti set v0='W4FFGSYVW45WYPSWEZIUE4PZ7IFGN' where id=5; -update noar tt set b1='W217SSVSLM2R1MRU50MJOPTI6OQ' where id=5; -update noar ti set b1='W217SSVSLM2R1MRU50MJOPTI6OQ' where id=5; -update noar tt set v0='YC00FBB0JF66CCCXX5V8L7OR1' where id=5; -update noar ti set v0='YC00FBB0JF66CCCXX5V8L7OR1' where id=5; -update noar tt set b2='557MUWJP0O83PMQU' where id=5; -update noar ti set b2='557MUWJP0O83PMQU' where id=5; -update noar tt set v0='6AZBII' where id=6; -update noar ti set v0='6AZBII' where id=6; -update noar tt set b0='CH' where id=6; -update noar ti set b0='CH' where id=6; -update noar tt set v0='TDNXQ3XSJRNZMHAIEC6UPMWBRLE05U' where id=6; -update noar ti set v0='TDNXQ3XSJRNZMHAIEC6UPMWBRLE05U' where id=6; -update noar tt set b1='O38TW8PN97HD' where id=6; -update noar ti set b1='O38TW8PN97HD' where id=6; -update noar tt set v0='1M0XYF8A912WNXOKUTMK2G1GM1J' where id=6; -update noar ti set v0='1M0XYF8A912WNXOKUTMK2G1GM1J' where id=6; -update noar tt set b2='VSYZYABAT89SLCDSELCYN8' where id=6; -update noar ti set b2='VSYZYABAT89SLCDSELCYN8' where id=6; -update noar tt set v0='8' where id=7; -update noar ti set v0='8' where id=7; -update noar tt set b0='WF35' where id=7; -update noar ti set b0='WF35' where id=7; -update noar tt set v0='3RN2C3KSOA4EPYYIFIX' where id=7; -update noar ti set v0='3RN2C3KSOA4EPYYIFIX' where id=7; -update noar tt set b1='ZTP75F0LLL3DS57Q8RC9EON' where id=7; -update noar ti set b1='ZTP75F0LLL3DS57Q8RC9EON' where id=7; -update noar tt set v0='HVPK4RS5JD3T49' where id=7; -update noar ti set v0='HVPK4RS5JD3T49' where id=7; -update noar tt set b2='S51AMSCGIVVAYITZUHFPAKT10FA' where id=7; -update noar ti set b2='S51AMSCGIVVAYITZUHFPAKT10FA' where id=7; -update noar tt set v0='E1RNRITTQ5YSTRBG7V78L' where id=8; -update noar ti set v0='E1RNRITTQ5YSTRBG7V78L' where id=8; -update noar tt set b0='LA7' where id=8; -update noar ti set b0='LA7' where id=8; -update noar tt set v0='1BEH' where id=8; -update noar ti set v0='1BEH' where id=8; -update noar tt set b1='UCK8ZHJDJL74ZUKTYLS5' where id=8; -update noar ti set b1='UCK8ZHJDJL74ZUKTYLS5' where id=8; -update noar tt set v0='QQPM3U' where id=8; -update noar ti set v0='QQPM3U' where id=8; -update noar tt set b2='4TCJ' where id=8; -update noar ti set b2='4TCJ' where id=8; -update noar tt set v0='PMGHI89V66IJ' where id=9; -update noar ti set v0='PMGHI89V66IJ' where id=9; -update noar tt set b0='PO35OJSKFGBZMOZH' where id=9; -update noar ti set b0='PO35OJSKFGBZMOZH' where id=9; -update noar tt set v0='2HBC0KY622IQYGZP8ALS3PRRX' where id=9; -update noar ti set v0='2HBC0KY622IQYGZP8ALS3PRRX' where id=9; -update noar tt set b1='ZWYQG68SMETHER41VGT41H9E468YIVN' where id=9; -update noar ti set b1='ZWYQG68SMETHER41VGT41H9E468YIVN' where id=9; -update noar tt set v0='M' where id=9; -update noar ti set v0='M' where id=9; -update noar tt set b2='NP5FWUCRIMC4DNH7RPB4GTCL03PLU5UW' where id=9; -update noar ti set b2='NP5FWUCRIMC4DNH7RPB4GTCL03PLU5UW' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - v0 varchar(256) null, - b0 longblob null, - b1 mediumblob null, - b2 tinyblob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='5HJABLX3Y7MQMAPU2OWCGN8GFTEEYM' where id=1; -update noar ti set v0='5HJABLX3Y7MQMAPU2OWCGN8GFTEEYM' where id=1; -update noar tt set b0='15LBEF35' where id=1; -update noar ti set b0='15LBEF35' where id=1; -update noar tt set v0='ULVX' where id=1; -update noar ti set v0='ULVX' where id=1; -update noar tt set b1='C0PO' where id=1; -update noar ti set b1='C0PO' where id=1; -update noar tt set v0='3' where id=1; -update noar ti set v0='3' where id=1; -update noar tt set b2='681J7U6IQSZ2UPRY' where id=1; -update noar ti set b2='681J7U6IQSZ2UPRY' where id=1; -update noar tt set v0='AISOC' where id=2; -update noar ti set v0='AISOC' where id=2; -update noar tt set b0='GWUH8008KDKY668UAL7XADPA' where id=2; -update noar ti set b0='GWUH8008KDKY668UAL7XADPA' where id=2; -update noar tt set v0='1RN0I8A1XXRDZTPAQD5PK5G76U7J3TZV' where id=2; -update noar ti set v0='1RN0I8A1XXRDZTPAQD5PK5G76U7J3TZV' where id=2; -update noar tt set b1='QFFST3U6W4M7W8CHWE' where id=2; -update noar ti set b1='QFFST3U6W4M7W8CHWE' where id=2; -update noar tt set v0='O9HDG3BFOH' where id=2; -update noar ti set v0='O9HDG3BFOH' where id=2; -update noar tt set b2='B1COOU87L5M55BFKMPE4PDZNEFW5P' where id=2; -update noar ti set b2='B1COOU87L5M55BFKMPE4PDZNEFW5P' where id=2; -update noar tt set v0='M4YWI9TLG2HVBUYJBBGYO' where id=3; -update noar ti set v0='M4YWI9TLG2HVBUYJBBGYO' where id=3; -update noar tt set b0='62BZ4UKSX9' where id=3; -update noar ti set b0='62BZ4UKSX9' where id=3; -update noar tt set v0='1ZNSRP6FMQNYHFV8P' where id=3; -update noar ti set v0='1ZNSRP6FMQNYHFV8P' where id=3; -update noar tt set b1='VK424ARYYBMHWJK0EV8JKRMQ6T2YU8' where id=3; -update noar ti set b1='VK424ARYYBMHWJK0EV8JKRMQ6T2YU8' where id=3; -update noar tt set v0='6ZT2WWXD8MGDTHEE' where id=3; -update noar ti set v0='6ZT2WWXD8MGDTHEE' where id=3; -update noar tt set b2='HWHVNHMQAL54B4FLGZAXWN5THG' where id=3; -update noar ti set b2='HWHVNHMQAL54B4FLGZAXWN5THG' where id=3; -update noar tt set v0='9NQBVBGBHAN090' where id=4; -update noar ti set v0='9NQBVBGBHAN090' where id=4; -update noar tt set b0='PN27FCP2YN7BD5ZIRBZ45SS' where id=4; -update noar ti set b0='PN27FCP2YN7BD5ZIRBZ45SS' where id=4; -update noar tt set v0='OTA' where id=4; -update noar ti set v0='OTA' where id=4; -update noar tt set b1='TU70S6R3M6IDHRHCORFTS6' where id=4; -update noar ti set b1='TU70S6R3M6IDHRHCORFTS6' where id=4; -update noar tt set v0='TQMVKV9OP3AFS5NO8709KUZ1EJ' where id=4; -update noar ti set v0='TQMVKV9OP3AFS5NO8709KUZ1EJ' where id=4; -update noar tt set b2='4HV' where id=4; -update noar ti set b2='4HV' where id=4; -update noar tt set v0='HV33UANAE3KR8EZI460WD2' where id=5; -update noar ti set v0='HV33UANAE3KR8EZI460WD2' where id=5; -update noar tt set b0='GQVKLO6VQG42CD47LL68SLQSXOX60UR' where id=5; -update noar ti set b0='GQVKLO6VQG42CD47LL68SLQSXOX60UR' where id=5; -update noar tt set v0='40K5QSJ' where id=5; -update noar ti set v0='40K5QSJ' where id=5; -update noar tt set b1='JL3WX8LEGQ1ONZT69QIHDLQ5LL' where id=5; -update noar ti set b1='JL3WX8LEGQ1ONZT69QIHDLQ5LL' where id=5; -update noar tt set v0='0LSTCMFPGM51' where id=5; -update noar ti set v0='0LSTCMFPGM51' where id=5; -update noar tt set b2='MX0BFS7BA' where id=5; -update noar ti set b2='MX0BFS7BA' where id=5; -update noar tt set v0='YCG5Z904G9PEEEE' where id=6; -update noar ti set v0='YCG5Z904G9PEEEE' where id=6; -update noar tt set b0='FK8' where id=6; -update noar ti set b0='FK8' where id=6; -update noar tt set v0='1W2IAM53X' where id=6; -update noar ti set v0='1W2IAM53X' where id=6; -update noar tt set b1='5PUKX7ELP2ZA0T11N1AZ6QD7' where id=6; -update noar ti set b1='5PUKX7ELP2ZA0T11N1AZ6QD7' where id=6; -update noar tt set v0='449S1CG59A89YMYXFSHXF6KUGFMV8' where id=6; -update noar ti set v0='449S1CG59A89YMYXFSHXF6KUGFMV8' where id=6; -update noar tt set b2='FVAUG17IK4F5DV0HYLSRD2' where id=6; -update noar ti set b2='FVAUG17IK4F5DV0HYLSRD2' where id=6; -update noar tt set v0='GR7DFFQUPUQGKQ6EXQ8P5VVOFR49NK9O' where id=7; -update noar ti set v0='GR7DFFQUPUQGKQ6EXQ8P5VVOFR49NK9O' where id=7; -update noar tt set b0='PAUXCKPS9BP8SLG39UI8C5' where id=7; -update noar ti set b0='PAUXCKPS9BP8SLG39UI8C5' where id=7; -update noar tt set v0='KV1ADBOZJ13DJQKUMAO3' where id=7; -update noar ti set v0='KV1ADBOZJ13DJQKUMAO3' where id=7; -update noar tt set b1='6X2WO0' where id=7; -update noar ti set b1='6X2WO0' where id=7; -update noar tt set v0='6WNKIIPT89M29CG' where id=7; -update noar ti set v0='6WNKIIPT89M29CG' where id=7; -update noar tt set b2='VHU4MTJIUERQ9Y' where id=7; -update noar ti set b2='VHU4MTJIUERQ9Y' where id=7; -update noar tt set v0='WJIJRUOO5C9616IXN90Y6K0FHKH57H' where id=8; -update noar ti set v0='WJIJRUOO5C9616IXN90Y6K0FHKH57H' where id=8; -update noar tt set b0='2OEFAFFMRP1TWXZWU6L2X7ZHJDIIGFQ' where id=8; -update noar ti set b0='2OEFAFFMRP1TWXZWU6L2X7ZHJDIIGFQ' where id=8; -update noar tt set v0='DNDBTWE9DYO3ZIBH9YIN' where id=8; -update noar ti set v0='DNDBTWE9DYO3ZIBH9YIN' where id=8; -update noar tt set b1='V2B1WA' where id=8; -update noar ti set b1='V2B1WA' where id=8; -update noar tt set v0='8Y7AHSDA2F' where id=8; -update noar ti set v0='8Y7AHSDA2F' where id=8; -update noar tt set b2='BTIIE2VHX43Q7TK5YWER247XXNQ' where id=8; -update noar ti set b2='BTIIE2VHX43Q7TK5YWER247XXNQ' where id=8; -update noar tt set v0='PLDT1PNNR8RJH1HXQVQSJ' where id=9; -update noar ti set v0='PLDT1PNNR8RJH1HXQVQSJ' where id=9; -update noar tt set b0='8FJOI6XSW121Q56SV02HE8L2XEX' where id=9; -update noar ti set b0='8FJOI6XSW121Q56SV02HE8L2XEX' where id=9; -update noar tt set v0='R4MDOOMPUVWFSM2PDSB4AOJVZR7Y' where id=9; -update noar ti set v0='R4MDOOMPUVWFSM2PDSB4AOJVZR7Y' where id=9; -update noar tt set b1='PBTAUBEYQ4J4PCXZQTVA9LAZV19DP3T' where id=9; -update noar ti set b1='PBTAUBEYQ4J4PCXZQTVA9LAZV19DP3T' where id=9; -update noar tt set v0='A3F5ZW201WYLZ1UFFF6KSBJ1C' where id=9; -update noar ti set v0='A3F5ZW201WYLZ1UFFF6KSBJ1C' where id=9; -update noar tt set b2='NMNOLAVSYOIFTUSEIQBWSAOKKAI2R7' where id=9; -update noar ti set b2='NMNOLAVSYOIFTUSEIQBWSAOKKAI2R7' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - v0 varchar(32) not null, - b0 longblob not null, - b1 mediumblob not null, - b2 tinyblob not null -) engine=tokudb; -insert into tt values (1,'','','',''); -insert into tt values (2,'','','',''); -insert into tt values (3,'','','',''); -insert into tt values (4,'','','',''); -insert into tt values (5,'','','',''); -insert into tt values (6,'','','',''); -insert into tt values (7,'','','',''); -insert into tt values (8,'','','',''); -insert into tt values (9,'','','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='8K7' where id=1; -update noar ti set v0='8K7' where id=1; -update noar tt set b0='YHTFQ5CNLDJ' where id=1; -update noar ti set b0='YHTFQ5CNLDJ' where id=1; -update noar tt set v0='4TQD' where id=1; -update noar ti set v0='4TQD' where id=1; -update noar tt set b1='LPVX1U2IX8JZYAZ6J0DR52BSN6D0' where id=1; -update noar ti set b1='LPVX1U2IX8JZYAZ6J0DR52BSN6D0' where id=1; -update noar tt set v0='PZEDC2A7OCSHSSVWWMJ68X' where id=1; -update noar ti set v0='PZEDC2A7OCSHSSVWWMJ68X' where id=1; -update noar tt set b2='6JXGU' where id=1; -update noar ti set b2='6JXGU' where id=1; -update noar tt set v0='FMY45C6R' where id=2; -update noar ti set v0='FMY45C6R' where id=2; -update noar tt set b0='DZPNU7UOJMRZ32' where id=2; -update noar ti set b0='DZPNU7UOJMRZ32' where id=2; -update noar tt set v0='6O8RKDQ037LS21J2RI0251W3POML' where id=2; -update noar ti set v0='6O8RKDQ037LS21J2RI0251W3POML' where id=2; -update noar tt set b1='2EE7HQ7M0HNS5544HRA' where id=2; -update noar ti set b1='2EE7HQ7M0HNS5544HRA' where id=2; -update noar tt set v0='REX08ZX' where id=2; -update noar ti set v0='REX08ZX' where id=2; -update noar tt set b2='30Y9U53YHCQ3AT2W9RCFZHDZ19W9LL9' where id=2; -update noar ti set b2='30Y9U53YHCQ3AT2W9RCFZHDZ19W9LL9' where id=2; -update noar tt set v0='8N5B0SJ' where id=3; -update noar ti set v0='8N5B0SJ' where id=3; -update noar tt set b0='VFA0U16AIWNPR5QV95CU9UTZ0R4IO7' where id=3; -update noar ti set b0='VFA0U16AIWNPR5QV95CU9UTZ0R4IO7' where id=3; -update noar tt set v0='9J77DG0' where id=3; -update noar ti set v0='9J77DG0' where id=3; -update noar tt set b1='TF2NVS7GN18EZ5OWAIM3APUK7MB' where id=3; -update noar ti set b1='TF2NVS7GN18EZ5OWAIM3APUK7MB' where id=3; -update noar tt set v0='E6EL9QY' where id=3; -update noar ti set v0='E6EL9QY' where id=3; -update noar tt set b2='5L6M2D' where id=3; -update noar ti set b2='5L6M2D' where id=3; -update noar tt set v0='ENJTUAV1MMFBL' where id=4; -update noar ti set v0='ENJTUAV1MMFBL' where id=4; -update noar tt set b0='C8AWSZ7ZXP8KLT9LW' where id=4; -update noar ti set b0='C8AWSZ7ZXP8KLT9LW' where id=4; -update noar tt set v0='2QIPFZ5R8PTEIWJKQZTVLANR6617F' where id=4; -update noar ti set v0='2QIPFZ5R8PTEIWJKQZTVLANR6617F' where id=4; -update noar tt set b1='UKCCS6TX8LHKVKOP' where id=4; -update noar ti set b1='UKCCS6TX8LHKVKOP' where id=4; -update noar tt set v0='4HP1TA9VI4EFFI6YIO' where id=4; -update noar ti set v0='4HP1TA9VI4EFFI6YIO' where id=4; -update noar tt set b2='7PLPI2NWS94829G1RRFCY1BZJ' where id=4; -update noar ti set b2='7PLPI2NWS94829G1RRFCY1BZJ' where id=4; -update noar tt set v0='H2H5FRLZGF70985BKZUWGZ1O' where id=5; -update noar ti set v0='H2H5FRLZGF70985BKZUWGZ1O' where id=5; -update noar tt set b0='LCSXXVOYGW8C6LJDCFV9USHTYAK3' where id=5; -update noar ti set b0='LCSXXVOYGW8C6LJDCFV9USHTYAK3' where id=5; -update noar tt set v0='VSFP3X7QQHR' where id=5; -update noar ti set v0='VSFP3X7QQHR' where id=5; -update noar tt set b1='4YHFHDXFIC6WTY922XM4RJ30Q5' where id=5; -update noar ti set b1='4YHFHDXFIC6WTY922XM4RJ30Q5' where id=5; -update noar tt set v0='SBW8YSE7ZRDVK9RB82' where id=5; -update noar ti set v0='SBW8YSE7ZRDVK9RB82' where id=5; -update noar tt set b2='7D22' where id=5; -update noar ti set b2='7D22' where id=5; -update noar tt set v0='WQ81QM' where id=6; -update noar ti set v0='WQ81QM' where id=6; -update noar tt set b0='K9UK6KJFZFH3PCB' where id=6; -update noar ti set b0='K9UK6KJFZFH3PCB' where id=6; -update noar tt set v0='NVDT6Q9OZ3RK4GNUKO9BPH29ECI' where id=6; -update noar ti set v0='NVDT6Q9OZ3RK4GNUKO9BPH29ECI' where id=6; -update noar tt set b1='9VCDUX8AWVC7H68KNTSB' where id=6; -update noar ti set b1='9VCDUX8AWVC7H68KNTSB' where id=6; -update noar tt set v0='X4JFJIBQL3ADRRF1XT8YATEG9G3A' where id=6; -update noar ti set v0='X4JFJIBQL3ADRRF1XT8YATEG9G3A' where id=6; -update noar tt set b2='LV0A37F8E7UL8F5W' where id=6; -update noar ti set b2='LV0A37F8E7UL8F5W' where id=6; -update noar tt set v0='MBO7HCNVNZ0VE90UOKRRH5Y99DZNAH' where id=7; -update noar ti set v0='MBO7HCNVNZ0VE90UOKRRH5Y99DZNAH' where id=7; -update noar tt set b0='HPTTSUCMR4Z6PIJXFGR4BORBEA' where id=7; -update noar ti set b0='HPTTSUCMR4Z6PIJXFGR4BORBEA' where id=7; -update noar tt set v0='IN8OAYIF999IR9D7GB0B7PFWKE2K' where id=7; -update noar ti set v0='IN8OAYIF999IR9D7GB0B7PFWKE2K' where id=7; -update noar tt set b1='A321KGGFXWBBMBPSU66Y4ZJR5' where id=7; -update noar ti set b1='A321KGGFXWBBMBPSU66Y4ZJR5' where id=7; -update noar tt set v0='RD5RXL7ODA562LG85' where id=7; -update noar ti set v0='RD5RXL7ODA562LG85' where id=7; -update noar tt set b2='TZPS2M4MCY4RB093QLR' where id=7; -update noar ti set b2='TZPS2M4MCY4RB093QLR' where id=7; -update noar tt set v0='AXASNN0FLXEJ5MLG5YNR' where id=8; -update noar ti set v0='AXASNN0FLXEJ5MLG5YNR' where id=8; -update noar tt set b0='59WF0PW7Z5DUB0YTTE' where id=8; -update noar ti set b0='59WF0PW7Z5DUB0YTTE' where id=8; -update noar tt set v0='SYSOURNST5XPY3DSUYCI13Z8UL' where id=8; -update noar ti set v0='SYSOURNST5XPY3DSUYCI13Z8UL' where id=8; -update noar tt set b1='RHRPX9AKWNPYWDV000GCXT3FH' where id=8; -update noar ti set b1='RHRPX9AKWNPYWDV000GCXT3FH' where id=8; -update noar tt set v0='WX1WM9LKY5EETUZQ346W4FLEQK' where id=8; -update noar ti set v0='WX1WM9LKY5EETUZQ346W4FLEQK' where id=8; -update noar tt set b2='4T6PACN' where id=8; -update noar ti set b2='4T6PACN' where id=8; -update noar tt set v0='RDLQO3OBKRW51MPFILQ025QMCL2' where id=9; -update noar ti set v0='RDLQO3OBKRW51MPFILQ025QMCL2' where id=9; -update noar tt set b0='2FZAIMNXGUETJEJNF2VACRW47MDYFCDI' where id=9; -update noar ti set b0='2FZAIMNXGUETJEJNF2VACRW47MDYFCDI' where id=9; -update noar tt set v0='XKTYZ3' where id=9; -update noar ti set v0='XKTYZ3' where id=9; -update noar tt set b1='UQWQQYQ8CIORII8BFNXC' where id=9; -update noar ti set b1='UQWQQYQ8CIORII8BFNXC' where id=9; -update noar tt set v0='H351JDZO1E64OJ1BHJ5268' where id=9; -update noar ti set v0='H351JDZO1E64OJ1BHJ5268' where id=9; -update noar tt set b2='832RSIP315L3HA8' where id=9; -update noar ti set b2='832RSIP315L3HA8' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - v0 varchar(256) not null, - b0 longblob not null, - b1 mediumblob not null, - b2 tinyblob not null -) engine=tokudb; -insert into tt values (1,'','','',''); -insert into tt values (2,'','','',''); -insert into tt values (3,'','','',''); -insert into tt values (4,'','','',''); -insert into tt values (5,'','','',''); -insert into tt values (6,'','','',''); -insert into tt values (7,'','','',''); -insert into tt values (8,'','','',''); -insert into tt values (9,'','','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='QKEGN3A' where id=1; -update noar ti set v0='QKEGN3A' where id=1; -update noar tt set b0='P8S2QR330UZ1NLL' where id=1; -update noar ti set b0='P8S2QR330UZ1NLL' where id=1; -update noar tt set v0='GQZ55V84' where id=1; -update noar ti set v0='GQZ55V84' where id=1; -update noar tt set b1='WBXM6MDUSOXZDS' where id=1; -update noar ti set b1='WBXM6MDUSOXZDS' where id=1; -update noar tt set v0='1VM3B9ZB1D7GXHP9T8' where id=1; -update noar ti set v0='1VM3B9ZB1D7GXHP9T8' where id=1; -update noar tt set b2='FQYKK87HX' where id=1; -update noar ti set b2='FQYKK87HX' where id=1; -update noar tt set v0='RNUGJXGNGEQ47OPEWZ5JTHAFR8NB9' where id=2; -update noar ti set v0='RNUGJXGNGEQ47OPEWZ5JTHAFR8NB9' where id=2; -update noar tt set b0='YJ2VXB5QI4CI5B9VFZZBTNECJ9HR' where id=2; -update noar ti set b0='YJ2VXB5QI4CI5B9VFZZBTNECJ9HR' where id=2; -update noar tt set v0='971VENWHO77XZ1SXJU8FJI90JB6EN8' where id=2; -update noar ti set v0='971VENWHO77XZ1SXJU8FJI90JB6EN8' where id=2; -update noar tt set b1='OP2A50UYKG0DC3DWVAGPGABL3HF' where id=2; -update noar ti set b1='OP2A50UYKG0DC3DWVAGPGABL3HF' where id=2; -update noar tt set v0='6L83JY7CL1' where id=2; -update noar ti set v0='6L83JY7CL1' where id=2; -update noar tt set b2='CAPR5LBGQ6GR3Q4PMPFU2M' where id=2; -update noar ti set b2='CAPR5LBGQ6GR3Q4PMPFU2M' where id=2; -update noar tt set v0='ZN3XTBLOKGQH6ZSOYMWKIO5HK6ZFHTL' where id=3; -update noar ti set v0='ZN3XTBLOKGQH6ZSOYMWKIO5HK6ZFHTL' where id=3; -update noar tt set b0='E1DRBM7' where id=3; -update noar ti set b0='E1DRBM7' where id=3; -update noar tt set v0='G0WB61PS5Q9ABRG73Y1Q5K01QYMQR3L' where id=3; -update noar ti set v0='G0WB61PS5Q9ABRG73Y1Q5K01QYMQR3L' where id=3; -update noar tt set b1='NVCPKUJEN6EWLNFH56DYG8K477B1LVR5' where id=3; -update noar ti set b1='NVCPKUJEN6EWLNFH56DYG8K477B1LVR5' where id=3; -update noar tt set v0='8NAGYOQ0XMG1YCDUK5T6' where id=3; -update noar ti set v0='8NAGYOQ0XMG1YCDUK5T6' where id=3; -update noar tt set b2='JWTW5FO04EGC2SPB34JP937' where id=3; -update noar ti set b2='JWTW5FO04EGC2SPB34JP937' where id=3; -update noar tt set v0='R4QP0055' where id=4; -update noar ti set v0='R4QP0055' where id=4; -update noar tt set b0='CN5HDFZVI5GYSJPG' where id=4; -update noar ti set b0='CN5HDFZVI5GYSJPG' where id=4; -update noar tt set v0='1UKDNSUCV8Y6RP1BHDYLD' where id=4; -update noar ti set v0='1UKDNSUCV8Y6RP1BHDYLD' where id=4; -update noar tt set b1='PJE2D5WM4' where id=4; -update noar ti set b1='PJE2D5WM4' where id=4; -update noar tt set v0='YHUMXRU0E8MKF28CQLQTQ7JT0552' where id=4; -update noar ti set v0='YHUMXRU0E8MKF28CQLQTQ7JT0552' where id=4; -update noar tt set b2='GQNKU8Z7FYEA9G4N8GOQC8' where id=4; -update noar ti set b2='GQNKU8Z7FYEA9G4N8GOQC8' where id=4; -update noar tt set v0='EXV5K5055PGDE' where id=5; -update noar ti set v0='EXV5K5055PGDE' where id=5; -update noar tt set b0='5X92ZD445CCBCTDZ0WJOGYB8Q6P9KLKX' where id=5; -update noar ti set b0='5X92ZD445CCBCTDZ0WJOGYB8Q6P9KLKX' where id=5; -update noar tt set v0='5IXO279N52YXDZPLJQI4VXFJQKV' where id=5; -update noar ti set v0='5IXO279N52YXDZPLJQI4VXFJQKV' where id=5; -update noar tt set b1='FDIQKTX2G4ZY' where id=5; -update noar ti set b1='FDIQKTX2G4ZY' where id=5; -update noar tt set v0='VUYONOVGKHKRAPSYRLHH' where id=5; -update noar ti set v0='VUYONOVGKHKRAPSYRLHH' where id=5; -update noar tt set b2='RSIFG7AFR' where id=5; -update noar ti set b2='RSIFG7AFR' where id=5; -update noar tt set v0='61S8SGOJLUCS0EOMAWW' where id=6; -update noar ti set v0='61S8SGOJLUCS0EOMAWW' where id=6; -update noar tt set b0='ESG9BM1JTCGRT7091S8OH5' where id=6; -update noar ti set b0='ESG9BM1JTCGRT7091S8OH5' where id=6; -update noar tt set v0='VWJUD7426TAVMH' where id=6; -update noar ti set v0='VWJUD7426TAVMH' where id=6; -update noar tt set b1='HW6JLYDHRCPG2BDVU4Y' where id=6; -update noar ti set b1='HW6JLYDHRCPG2BDVU4Y' where id=6; -update noar tt set v0='264LW3NFCBJ8HCG' where id=6; -update noar ti set v0='264LW3NFCBJ8HCG' where id=6; -update noar tt set b2='57AV' where id=6; -update noar ti set b2='57AV' where id=6; -update noar tt set v0='KLLIBS' where id=7; -update noar ti set v0='KLLIBS' where id=7; -update noar tt set b0='LL7J2W' where id=7; -update noar ti set b0='LL7J2W' where id=7; -update noar tt set v0='B' where id=7; -update noar ti set v0='B' where id=7; -update noar tt set b1='SG0TI8SN9JYJZSSPO' where id=7; -update noar ti set b1='SG0TI8SN9JYJZSSPO' where id=7; -update noar tt set v0='ADFHGID2EXVAJE28ISTDWYEMTK' where id=7; -update noar ti set v0='ADFHGID2EXVAJE28ISTDWYEMTK' where id=7; -update noar tt set b2='1Z5Y' where id=7; -update noar ti set b2='1Z5Y' where id=7; -update noar tt set v0='W' where id=8; -update noar ti set v0='W' where id=8; -update noar tt set b0='T' where id=8; -update noar ti set b0='T' where id=8; -update noar tt set v0='W8BHHA88M80T9' where id=8; -update noar ti set v0='W8BHHA88M80T9' where id=8; -update noar tt set b1='T4XUC7Q9Z7PWBFD61DWMK' where id=8; -update noar ti set b1='T4XUC7Q9Z7PWBFD61DWMK' where id=8; -update noar tt set v0='P5R6S15AJJZ4G' where id=8; -update noar ti set v0='P5R6S15AJJZ4G' where id=8; -update noar tt set b2='4B47OTCK5BX0FQ' where id=8; -update noar ti set b2='4B47OTCK5BX0FQ' where id=8; -update noar tt set v0='R1JA4IW8770G3XN' where id=9; -update noar ti set v0='R1JA4IW8770G3XN' where id=9; -update noar tt set b0='U0E198M5MQYGBDRQFCDJW5KTI0' where id=9; -update noar ti set b0='U0E198M5MQYGBDRQFCDJW5KTI0' where id=9; -update noar tt set v0='KX59YQO5130RP' where id=9; -update noar ti set v0='KX59YQO5130RP' where id=9; -update noar tt set b1='CSBG6JYS' where id=9; -update noar ti set b1='CSBG6JYS' where id=9; -update noar tt set v0='3B7RTVA2VXRR' where id=9; -update noar ti set v0='3B7RTVA2VXRR' where id=9; -update noar tt set b2='6T' where id=9; -update noar ti set b2='6T' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - v0 varchar(32) null, - b0 longblob null, - b1 mediumblob null, - b2 blob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='FT8' where id=1; -update noar ti set v0='FT8' where id=1; -update noar tt set b0='VAENZXPK6O' where id=1; -update noar ti set b0='VAENZXPK6O' where id=1; -update noar tt set v0='POZ88ANNZ2D' where id=1; -update noar ti set v0='POZ88ANNZ2D' where id=1; -update noar tt set b1='NVAZQZOL3FCLFTH7P' where id=1; -update noar ti set b1='NVAZQZOL3FCLFTH7P' where id=1; -update noar tt set v0='Q0PDJQ55ORMBZSGXYHJRGDXL' where id=1; -update noar ti set v0='Q0PDJQ55ORMBZSGXYHJRGDXL' where id=1; -update noar tt set b2='I6W45LDM0593NT' where id=1; -update noar ti set b2='I6W45LDM0593NT' where id=1; -update noar tt set v0='WULPLIRCJQQJYMT' where id=2; -update noar ti set v0='WULPLIRCJQQJYMT' where id=2; -update noar tt set b0='DG' where id=2; -update noar ti set b0='DG' where id=2; -update noar tt set v0='39LEIGUBHIFF2B8IEVDVL5CBVQHWA' where id=2; -update noar ti set v0='39LEIGUBHIFF2B8IEVDVL5CBVQHWA' where id=2; -update noar tt set b1='NWSA44U51BEFY0OAUOFNQH' where id=2; -update noar ti set b1='NWSA44U51BEFY0OAUOFNQH' where id=2; -update noar tt set v0='3OQ02' where id=2; -update noar ti set v0='3OQ02' where id=2; -update noar tt set b2='BKSPK46ZD80J6PJABFHGUY3SSJQ' where id=2; -update noar ti set b2='BKSPK46ZD80J6PJABFHGUY3SSJQ' where id=2; -update noar tt set v0='HVAPLR7RCME647MBTX09MRFI' where id=3; -update noar ti set v0='HVAPLR7RCME647MBTX09MRFI' where id=3; -update noar tt set b0='82F' where id=3; -update noar ti set b0='82F' where id=3; -update noar tt set v0='0FSAXVVNPC95SQPC5V9VBCKLVLLOCX' where id=3; -update noar ti set v0='0FSAXVVNPC95SQPC5V9VBCKLVLLOCX' where id=3; -update noar tt set b1='I0F2EVAPI8LHOL' where id=3; -update noar ti set b1='I0F2EVAPI8LHOL' where id=3; -update noar tt set v0='UDK' where id=3; -update noar ti set v0='UDK' where id=3; -update noar tt set b2='RE4YV8L5Q6QKF0S' where id=3; -update noar ti set b2='RE4YV8L5Q6QKF0S' where id=3; -update noar tt set v0='J' where id=4; -update noar ti set v0='J' where id=4; -update noar tt set b0='U9GTNHFP8D9HPJHVVJCJ57PBA' where id=4; -update noar ti set b0='U9GTNHFP8D9HPJHVVJCJ57PBA' where id=4; -update noar tt set v0='5F7K1UKGLI' where id=4; -update noar ti set v0='5F7K1UKGLI' where id=4; -update noar tt set b1='WQG6RZ946ZB0' where id=4; -update noar ti set b1='WQG6RZ946ZB0' where id=4; -update noar tt set v0='QMSUCJ7LZOTRCW75AYV2' where id=4; -update noar ti set v0='QMSUCJ7LZOTRCW75AYV2' where id=4; -update noar tt set b2='Q0DJAQ608RYJF05Q2TLV0Q6YW7BFU' where id=4; -update noar ti set b2='Q0DJAQ608RYJF05Q2TLV0Q6YW7BFU' where id=4; -update noar tt set v0='G' where id=5; -update noar ti set v0='G' where id=5; -update noar tt set b0='5KU994BHZ5H0G1BS42HR' where id=5; -update noar ti set b0='5KU994BHZ5H0G1BS42HR' where id=5; -update noar tt set v0='4T920MU0HN4O5O8NFQAZOMN2Y' where id=5; -update noar ti set v0='4T920MU0HN4O5O8NFQAZOMN2Y' where id=5; -update noar tt set b1='Z2OURVX9' where id=5; -update noar ti set b1='Z2OURVX9' where id=5; -update noar tt set v0='2V6J2G0N1N6ZQV45TT04PYJDRTV7UEC' where id=5; -update noar ti set v0='2V6J2G0N1N6ZQV45TT04PYJDRTV7UEC' where id=5; -update noar tt set b2='CKO74TCU' where id=5; -update noar ti set b2='CKO74TCU' where id=5; -update noar tt set v0='6IZ0L3J14L866E7GFUSJWFLSJQTROI' where id=6; -update noar ti set v0='6IZ0L3J14L866E7GFUSJWFLSJQTROI' where id=6; -update noar tt set b0='S7CCMHX5X' where id=6; -update noar ti set b0='S7CCMHX5X' where id=6; -update noar tt set v0='T8X0JS3W9OILAZ4G7V8WJEF1QXNZJX' where id=6; -update noar ti set v0='T8X0JS3W9OILAZ4G7V8WJEF1QXNZJX' where id=6; -update noar tt set b1='NBKKR6' where id=6; -update noar ti set b1='NBKKR6' where id=6; -update noar tt set v0='GJ0R78ES7G0ZEZ44D4' where id=6; -update noar ti set v0='GJ0R78ES7G0ZEZ44D4' where id=6; -update noar tt set b2='FVUK89WOO7T3N3C5GK7AK4V133' where id=6; -update noar ti set b2='FVUK89WOO7T3N3C5GK7AK4V133' where id=6; -update noar tt set v0='1RSH3XPQP0TYTVJ2N92YUOTEIK2QOB' where id=7; -update noar ti set v0='1RSH3XPQP0TYTVJ2N92YUOTEIK2QOB' where id=7; -update noar tt set b0='R11ZT3B2' where id=7; -update noar ti set b0='R11ZT3B2' where id=7; -update noar tt set v0='VCOBT9ECGMQNNUWS6S' where id=7; -update noar ti set v0='VCOBT9ECGMQNNUWS6S' where id=7; -update noar tt set b1='9NXOAVIAI0U7OT' where id=7; -update noar ti set b1='9NXOAVIAI0U7OT' where id=7; -update noar tt set v0='DTGTWZTK1GMNYH4EB6X8SMSWP28EFUKG' where id=7; -update noar ti set v0='DTGTWZTK1GMNYH4EB6X8SMSWP28EFUKG' where id=7; -update noar tt set b2='U' where id=7; -update noar ti set b2='U' where id=7; -update noar tt set v0='5XZ6FWRJ5P43EMLMD6' where id=8; -update noar ti set v0='5XZ6FWRJ5P43EMLMD6' where id=8; -update noar tt set b0='X' where id=8; -update noar ti set b0='X' where id=8; -update noar tt set v0='DMHVL7SHYJADINV' where id=8; -update noar ti set v0='DMHVL7SHYJADINV' where id=8; -update noar tt set b1='LGBH1UZBRYWYZWV5U8YGO' where id=8; -update noar ti set b1='LGBH1UZBRYWYZWV5U8YGO' where id=8; -update noar tt set v0='6XPNWI4MTS31HCW1FQWHI1S05YSD' where id=8; -update noar ti set v0='6XPNWI4MTS31HCW1FQWHI1S05YSD' where id=8; -update noar tt set b2='4O6W1246AHR3ZJSYSTE25YML3CS7W635' where id=8; -update noar ti set b2='4O6W1246AHR3ZJSYSTE25YML3CS7W635' where id=8; -update noar tt set v0='JCL6BMQ96LMYV5' where id=9; -update noar ti set v0='JCL6BMQ96LMYV5' where id=9; -update noar tt set b0='H0G31IKJRM7ZAWQEIXD' where id=9; -update noar ti set b0='H0G31IKJRM7ZAWQEIXD' where id=9; -update noar tt set v0='EF89U9AM4NSCDYN' where id=9; -update noar ti set v0='EF89U9AM4NSCDYN' where id=9; -update noar tt set b1='97K4W4SVM86MJ60X' where id=9; -update noar ti set b1='97K4W4SVM86MJ60X' where id=9; -update noar tt set v0='XVKM0Q9' where id=9; -update noar ti set v0='XVKM0Q9' where id=9; -update noar tt set b2='FLYYHT23YJ4S236I5V5RNQXR' where id=9; -update noar ti set b2='FLYYHT23YJ4S236I5V5RNQXR' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - v0 varchar(256) null, - b0 longblob null, - b1 mediumblob null, - b2 blob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='DPBVHLPKWMWULUJG' where id=1; -update noar ti set v0='DPBVHLPKWMWULUJG' where id=1; -update noar tt set b0='JLRR6KMZKYE14QLM3C' where id=1; -update noar ti set b0='JLRR6KMZKYE14QLM3C' where id=1; -update noar tt set v0='J9ZHH2M3RDH7RPATB0BQQSS1D10L' where id=1; -update noar ti set v0='J9ZHH2M3RDH7RPATB0BQQSS1D10L' where id=1; -update noar tt set b1='BE643WDQVTNJ05CZTK4' where id=1; -update noar ti set b1='BE643WDQVTNJ05CZTK4' where id=1; -update noar tt set v0='OGR24I' where id=1; -update noar ti set v0='OGR24I' where id=1; -update noar tt set b2='ASHKPG' where id=1; -update noar ti set b2='ASHKPG' where id=1; -update noar tt set v0='PY' where id=2; -update noar ti set v0='PY' where id=2; -update noar tt set b0='VZO6ZU3COBPXOLQG2VJIEG' where id=2; -update noar ti set b0='VZO6ZU3COBPXOLQG2VJIEG' where id=2; -update noar tt set v0='AF' where id=2; -update noar ti set v0='AF' where id=2; -update noar tt set b1='YP' where id=2; -update noar ti set b1='YP' where id=2; -update noar tt set v0='S1' where id=2; -update noar ti set v0='S1' where id=2; -update noar tt set b2='KRNT33UF877E8D66TU02NNRXY' where id=2; -update noar ti set b2='KRNT33UF877E8D66TU02NNRXY' where id=2; -update noar tt set v0='VSJGHLTY8' where id=3; -update noar ti set v0='VSJGHLTY8' where id=3; -update noar tt set b0='T07R29PLQL5MMX' where id=3; -update noar ti set b0='T07R29PLQL5MMX' where id=3; -update noar tt set v0='MEMFPA6F3U56FIAO' where id=3; -update noar ti set v0='MEMFPA6F3U56FIAO' where id=3; -update noar tt set b1='PER5TPZHMPF2UYTHFQ5AR0JX7HNBXKW4' where id=3; -update noar ti set b1='PER5TPZHMPF2UYTHFQ5AR0JX7HNBXKW4' where id=3; -update noar tt set v0='5R' where id=3; -update noar ti set v0='5R' where id=3; -update noar tt set b2='ZZ05G9JJ5M3HOGOEVJZOYW2' where id=3; -update noar ti set b2='ZZ05G9JJ5M3HOGOEVJZOYW2' where id=3; -update noar tt set v0='NH0XB' where id=4; -update noar ti set v0='NH0XB' where id=4; -update noar tt set b0='YZX9AKNHMTFL0JVYL3V4R' where id=4; -update noar ti set b0='YZX9AKNHMTFL0JVYL3V4R' where id=4; -update noar tt set v0='9P9RKH2Y85FEVODV10D727F' where id=4; -update noar ti set v0='9P9RKH2Y85FEVODV10D727F' where id=4; -update noar tt set b1='ZJTGIRV9OTBWW8A430TNJM9XOUF' where id=4; -update noar ti set b1='ZJTGIRV9OTBWW8A430TNJM9XOUF' where id=4; -update noar tt set v0='70U3RQ49YBC1Z' where id=4; -update noar ti set v0='70U3RQ49YBC1Z' where id=4; -update noar tt set b2='CQ9FB0VF6K1AIAUIX6YKFR9' where id=4; -update noar ti set b2='CQ9FB0VF6K1AIAUIX6YKFR9' where id=4; -update noar tt set v0='VJIZQR' where id=5; -update noar ti set v0='VJIZQR' where id=5; -update noar tt set b0='29TMBR5JL0OY77U6NY2K1IJ6SGU' where id=5; -update noar ti set b0='29TMBR5JL0OY77U6NY2K1IJ6SGU' where id=5; -update noar tt set v0='47F8XGW8YJD0EQC1KFG4NFZ9IECNWJ' where id=5; -update noar ti set v0='47F8XGW8YJD0EQC1KFG4NFZ9IECNWJ' where id=5; -update noar tt set b1='8WW3AAJD04B3BXCG' where id=5; -update noar ti set b1='8WW3AAJD04B3BXCG' where id=5; -update noar tt set v0='DZO5UHVKBCY2YX' where id=5; -update noar ti set v0='DZO5UHVKBCY2YX' where id=5; -update noar tt set b2='JPVKJM4JQ36621PSV2PLSYTL9' where id=5; -update noar ti set b2='JPVKJM4JQ36621PSV2PLSYTL9' where id=5; -update noar tt set v0='IWU4TOJT3HJYXSX5TE3DPOM401E' where id=6; -update noar ti set v0='IWU4TOJT3HJYXSX5TE3DPOM401E' where id=6; -update noar tt set b0='V8AYYCP2B8D658V5BQY2XIDI6' where id=6; -update noar ti set b0='V8AYYCP2B8D658V5BQY2XIDI6' where id=6; -update noar tt set v0='KZ2' where id=6; -update noar ti set v0='KZ2' where id=6; -update noar tt set b1='Q38Q533JRLU12BMG73V6NP' where id=6; -update noar ti set b1='Q38Q533JRLU12BMG73V6NP' where id=6; -update noar tt set v0='MIP3EAAH4' where id=6; -update noar ti set v0='MIP3EAAH4' where id=6; -update noar tt set b2='3RO9JWRVN140L' where id=6; -update noar ti set b2='3RO9JWRVN140L' where id=6; -update noar tt set v0='M06FWZ7NCZSFI' where id=7; -update noar ti set v0='M06FWZ7NCZSFI' where id=7; -update noar tt set b0='I1' where id=7; -update noar ti set b0='I1' where id=7; -update noar tt set v0='KKD8J8QG' where id=7; -update noar ti set v0='KKD8J8QG' where id=7; -update noar tt set b1='BRI0QXX5BJYO6LT9D0TFX2VZDPZ4QD' where id=7; -update noar ti set b1='BRI0QXX5BJYO6LT9D0TFX2VZDPZ4QD' where id=7; -update noar tt set v0='GI4ULG5OX0UMGQ89W7ZTFPRLWGVT3' where id=7; -update noar ti set v0='GI4ULG5OX0UMGQ89W7ZTFPRLWGVT3' where id=7; -update noar tt set b2='6MSCEY7O2KVI8RAU09QQVG7HWFT' where id=7; -update noar ti set b2='6MSCEY7O2KVI8RAU09QQVG7HWFT' where id=7; -update noar tt set v0='UFN199EXA4BGPML' where id=8; -update noar ti set v0='UFN199EXA4BGPML' where id=8; -update noar tt set b0='DGI7MQXFOAZJARDUC2EFT' where id=8; -update noar ti set b0='DGI7MQXFOAZJARDUC2EFT' where id=8; -update noar tt set v0='BGU' where id=8; -update noar ti set v0='BGU' where id=8; -update noar tt set b1='KKW8BEMYDAQBP1JCN' where id=8; -update noar ti set b1='KKW8BEMYDAQBP1JCN' where id=8; -update noar tt set v0='YNG3VJZUJCA' where id=8; -update noar ti set v0='YNG3VJZUJCA' where id=8; -update noar tt set b2='L' where id=8; -update noar ti set b2='L' where id=8; -update noar tt set v0='MINRP' where id=9; -update noar ti set v0='MINRP' where id=9; -update noar tt set b0='506LVCZ' where id=9; -update noar ti set b0='506LVCZ' where id=9; -update noar tt set v0='MMXHLKXDM' where id=9; -update noar ti set v0='MMXHLKXDM' where id=9; -update noar tt set b1='QDHBE755V3W9A73TVKE' where id=9; -update noar ti set b1='QDHBE755V3W9A73TVKE' where id=9; -update noar tt set v0='VWVR8L3ZF1JMADSDUF2' where id=9; -update noar ti set v0='VWVR8L3ZF1JMADSDUF2' where id=9; -update noar tt set b2='6AICB3TQLAHVJ' where id=9; -update noar ti set b2='6AICB3TQLAHVJ' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - v0 varchar(32) not null, - b0 longblob not null, - b1 mediumblob not null, - b2 blob not null -) engine=tokudb; -insert into tt values (1,'','','',''); -insert into tt values (2,'','','',''); -insert into tt values (3,'','','',''); -insert into tt values (4,'','','',''); -insert into tt values (5,'','','',''); -insert into tt values (6,'','','',''); -insert into tt values (7,'','','',''); -insert into tt values (8,'','','',''); -insert into tt values (9,'','','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='0AL83Q2S5J81R' where id=1; -update noar ti set v0='0AL83Q2S5J81R' where id=1; -update noar tt set b0='TIFCWHGSX' where id=1; -update noar ti set b0='TIFCWHGSX' where id=1; -update noar tt set v0='X3' where id=1; -update noar ti set v0='X3' where id=1; -update noar tt set b1='LMWQ5YYOXY1JG6D4JUPHKI9JAEXPFGK' where id=1; -update noar ti set b1='LMWQ5YYOXY1JG6D4JUPHKI9JAEXPFGK' where id=1; -update noar tt set v0='UWR' where id=1; -update noar ti set v0='UWR' where id=1; -update noar tt set b2='S2F78TIABEB8F4F92' where id=1; -update noar ti set b2='S2F78TIABEB8F4F92' where id=1; -update noar tt set v0='2KDUHNXJRUY2' where id=2; -update noar ti set v0='2KDUHNXJRUY2' where id=2; -update noar tt set b0='GI00LGX32WB' where id=2; -update noar ti set b0='GI00LGX32WB' where id=2; -update noar tt set v0='8IJPQB5QY62V30QNP' where id=2; -update noar ti set v0='8IJPQB5QY62V30QNP' where id=2; -update noar tt set b1='YBPBGZQRFF1R0VLQTN6FO0' where id=2; -update noar ti set b1='YBPBGZQRFF1R0VLQTN6FO0' where id=2; -update noar tt set v0='GT2NMHWCMJA1SPK1R2OBX9' where id=2; -update noar ti set v0='GT2NMHWCMJA1SPK1R2OBX9' where id=2; -update noar tt set b2='CBUJW6RBNX8BWYCCE75ZSDP7TC8NFKB' where id=2; -update noar ti set b2='CBUJW6RBNX8BWYCCE75ZSDP7TC8NFKB' where id=2; -update noar tt set v0='6VQ3MVYTKB1POM8ELRA983LI' where id=3; -update noar ti set v0='6VQ3MVYTKB1POM8ELRA983LI' where id=3; -update noar tt set b0='ERI1I5Z8ZEF2BPD8VDETD9NN28BX' where id=3; -update noar ti set b0='ERI1I5Z8ZEF2BPD8VDETD9NN28BX' where id=3; -update noar tt set v0='D2CTCQV' where id=3; -update noar ti set v0='D2CTCQV' where id=3; -update noar tt set b1='0YVH37BRDL74OFXJL4CGQYYJI6I2' where id=3; -update noar ti set b1='0YVH37BRDL74OFXJL4CGQYYJI6I2' where id=3; -update noar tt set v0='UFPM3BZ1L39KCUV4EMEU' where id=3; -update noar ti set v0='UFPM3BZ1L39KCUV4EMEU' where id=3; -update noar tt set b2='WRCP9DBQKMGQZSE2PV5A5UN19UHXL' where id=3; -update noar ti set b2='WRCP9DBQKMGQZSE2PV5A5UN19UHXL' where id=3; -update noar tt set v0='YW9Y2' where id=4; -update noar ti set v0='YW9Y2' where id=4; -update noar tt set b0='S66AEROOH4IV9' where id=4; -update noar ti set b0='S66AEROOH4IV9' where id=4; -update noar tt set v0='DXEXU3A3GBUBLBKLQKUPFLSOY8AKBKVV' where id=4; -update noar ti set v0='DXEXU3A3GBUBLBKLQKUPFLSOY8AKBKVV' where id=4; -update noar tt set b1='366U66S2T9JNP' where id=4; -update noar ti set b1='366U66S2T9JNP' where id=4; -update noar tt set v0='HCR64N1CT12T8XUPGETMYTPOPLB' where id=4; -update noar ti set v0='HCR64N1CT12T8XUPGETMYTPOPLB' where id=4; -update noar tt set b2='O5BJD1RXAE7YC03T5' where id=4; -update noar ti set b2='O5BJD1RXAE7YC03T5' where id=4; -update noar tt set v0='Q4XSM6EDTJC' where id=5; -update noar ti set v0='Q4XSM6EDTJC' where id=5; -update noar tt set b0='IT72' where id=5; -update noar ti set b0='IT72' where id=5; -update noar tt set v0='N7AS66FIASORGQW3DSYZF4M9ZZVO4' where id=5; -update noar ti set v0='N7AS66FIASORGQW3DSYZF4M9ZZVO4' where id=5; -update noar tt set b1='SR0RDFEJYDVJ36X047H5ML' where id=5; -update noar ti set b1='SR0RDFEJYDVJ36X047H5ML' where id=5; -update noar tt set v0='38G7' where id=5; -update noar ti set v0='38G7' where id=5; -update noar tt set b2='F8IC8EKXZVVGG3WBDXP' where id=5; -update noar ti set b2='F8IC8EKXZVVGG3WBDXP' where id=5; -update noar tt set v0='CTK5UK51O' where id=6; -update noar ti set v0='CTK5UK51O' where id=6; -update noar tt set b0='L1P6AYNNZ8FJ' where id=6; -update noar ti set b0='L1P6AYNNZ8FJ' where id=6; -update noar tt set v0='8P1C8AYNRHQRYCGV06CA9GH64X53F' where id=6; -update noar ti set v0='8P1C8AYNRHQRYCGV06CA9GH64X53F' where id=6; -update noar tt set b1='FPHV49XBPAUG' where id=6; -update noar ti set b1='FPHV49XBPAUG' where id=6; -update noar tt set v0='EV6MQJQCP' where id=6; -update noar ti set v0='EV6MQJQCP' where id=6; -update noar tt set b2='TCD7BHFAEX3V8ULH0I' where id=6; -update noar ti set b2='TCD7BHFAEX3V8ULH0I' where id=6; -update noar tt set v0='8SBDXZHEIZXXZWRODV' where id=7; -update noar ti set v0='8SBDXZHEIZXXZWRODV' where id=7; -update noar tt set b0='DNEDD7U3J8E2' where id=7; -update noar ti set b0='DNEDD7U3J8E2' where id=7; -update noar tt set v0='QLM0PKRSHEWD97V4W0980N0' where id=7; -update noar ti set v0='QLM0PKRSHEWD97V4W0980N0' where id=7; -update noar tt set b1='M12ABZP9XTESDPLMP4C3EJH6' where id=7; -update noar ti set b1='M12ABZP9XTESDPLMP4C3EJH6' where id=7; -update noar tt set v0='TJG7FYG2' where id=7; -update noar ti set v0='TJG7FYG2' where id=7; -update noar tt set b2='XJ77US2RX27X13UP2XNVQ9' where id=7; -update noar ti set b2='XJ77US2RX27X13UP2XNVQ9' where id=7; -update noar tt set v0='09WEKFIFA4A89NT5G6CS5BMNXYDP61B' where id=8; -update noar ti set v0='09WEKFIFA4A89NT5G6CS5BMNXYDP61B' where id=8; -update noar tt set b0='SFSJ7OK0IDVR929EN6ARE1OZ66GZRR8M' where id=8; -update noar ti set b0='SFSJ7OK0IDVR929EN6ARE1OZ66GZRR8M' where id=8; -update noar tt set v0='TP3VBDMNWLHIB4L9JRGDZ4DIDF9S' where id=8; -update noar ti set v0='TP3VBDMNWLHIB4L9JRGDZ4DIDF9S' where id=8; -update noar tt set b1='B584ISQ609ZZT0XOESRNZY985J' where id=8; -update noar ti set b1='B584ISQ609ZZT0XOESRNZY985J' where id=8; -update noar tt set v0='2A7JLBC66U7M2XKQH' where id=8; -update noar ti set v0='2A7JLBC66U7M2XKQH' where id=8; -update noar tt set b2='68ZZQ' where id=8; -update noar ti set b2='68ZZQ' where id=8; -update noar tt set v0='ZG2AUMEYP84C10E84JLRHMI7YCOZO7FK' where id=9; -update noar ti set v0='ZG2AUMEYP84C10E84JLRHMI7YCOZO7FK' where id=9; -update noar tt set b0='PUJFIX793HCU' where id=9; -update noar ti set b0='PUJFIX793HCU' where id=9; -update noar tt set v0='F621WRGT4TP49E9YKVFCRG85UMJ0F' where id=9; -update noar ti set v0='F621WRGT4TP49E9YKVFCRG85UMJ0F' where id=9; -update noar tt set b1='V516HJNAMD0I42VD0AUN0H7VSDPLWZU6' where id=9; -update noar ti set b1='V516HJNAMD0I42VD0AUN0H7VSDPLWZU6' where id=9; -update noar tt set v0='IQD' where id=9; -update noar ti set v0='IQD' where id=9; -update noar tt set b2='8NUK3TXA846PXVBDF8Q9I5NWEEJ' where id=9; -update noar ti set b2='8NUK3TXA846PXVBDF8Q9I5NWEEJ' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - v0 varchar(256) not null, - b0 longblob not null, - b1 mediumblob not null, - b2 blob not null -) engine=tokudb; -insert into tt values (1,'','','',''); -insert into tt values (2,'','','',''); -insert into tt values (3,'','','',''); -insert into tt values (4,'','','',''); -insert into tt values (5,'','','',''); -insert into tt values (6,'','','',''); -insert into tt values (7,'','','',''); -insert into tt values (8,'','','',''); -insert into tt values (9,'','','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='FME77XFX8HT' where id=1; -update noar ti set v0='FME77XFX8HT' where id=1; -update noar tt set b0='7YDHKFEIYB5CB24KV9PXDIRU9WCDZ9CQ' where id=1; -update noar ti set b0='7YDHKFEIYB5CB24KV9PXDIRU9WCDZ9CQ' where id=1; -update noar tt set v0='M3LZN8GQH98FM' where id=1; -update noar ti set v0='M3LZN8GQH98FM' where id=1; -update noar tt set b1='4P9VBC31GLFT' where id=1; -update noar ti set b1='4P9VBC31GLFT' where id=1; -update noar tt set v0='DEUK' where id=1; -update noar ti set v0='DEUK' where id=1; -update noar tt set b2='FNLX15HDQK' where id=1; -update noar ti set b2='FNLX15HDQK' where id=1; -update noar tt set v0='30A8KSEINAA9K' where id=2; -update noar ti set v0='30A8KSEINAA9K' where id=2; -update noar tt set b0='19Y4BUYPQORPRY36' where id=2; -update noar ti set b0='19Y4BUYPQORPRY36' where id=2; -update noar tt set v0='ANLTWPN5J4YHSA26MRYUCCTZ90DV' where id=2; -update noar ti set v0='ANLTWPN5J4YHSA26MRYUCCTZ90DV' where id=2; -update noar tt set b1='N87HND4V6Q4' where id=2; -update noar ti set b1='N87HND4V6Q4' where id=2; -update noar tt set v0='R7PYFPMJJ5G66E4Z2' where id=2; -update noar ti set v0='R7PYFPMJJ5G66E4Z2' where id=2; -update noar tt set b2='EGNRYF5AEZ0YDD' where id=2; -update noar ti set b2='EGNRYF5AEZ0YDD' where id=2; -update noar tt set v0='TVTV64N350LF5MPMIXNVEJ75' where id=3; -update noar ti set v0='TVTV64N350LF5MPMIXNVEJ75' where id=3; -update noar tt set b0='H4CBMCNTU' where id=3; -update noar ti set b0='H4CBMCNTU' where id=3; -update noar tt set v0='NN' where id=3; -update noar ti set v0='NN' where id=3; -update noar tt set b1='0GX2XQL4SHH' where id=3; -update noar ti set b1='0GX2XQL4SHH' where id=3; -update noar tt set v0='WSZR2498E3MCXLGVLAHME5QC0T1' where id=3; -update noar ti set v0='WSZR2498E3MCXLGVLAHME5QC0T1' where id=3; -update noar tt set b2='0GSN12RLPSONISN1U' where id=3; -update noar ti set b2='0GSN12RLPSONISN1U' where id=3; -update noar tt set v0='SNNDVAJT2CMC009OSE' where id=4; -update noar ti set v0='SNNDVAJT2CMC009OSE' where id=4; -update noar tt set b0='QZIQNF6XMO9B7GBHDC39Y77' where id=4; -update noar ti set b0='QZIQNF6XMO9B7GBHDC39Y77' where id=4; -update noar tt set v0='7VFGU17XSOYWXOKODDD8C3KXAF1' where id=4; -update noar ti set v0='7VFGU17XSOYWXOKODDD8C3KXAF1' where id=4; -update noar tt set b1='GTK3HFPND' where id=4; -update noar ti set b1='GTK3HFPND' where id=4; -update noar tt set v0='C8L65XAHG' where id=4; -update noar ti set v0='C8L65XAHG' where id=4; -update noar tt set b2='LJS387EZC1YMQV1FYMYA4XUK0HWGAAKR' where id=4; -update noar ti set b2='LJS387EZC1YMQV1FYMYA4XUK0HWGAAKR' where id=4; -update noar tt set v0='J' where id=5; -update noar ti set v0='J' where id=5; -update noar tt set b0='PEEAU5N47WR' where id=5; -update noar ti set b0='PEEAU5N47WR' where id=5; -update noar tt set v0='1Z738TO6E7' where id=5; -update noar ti set v0='1Z738TO6E7' where id=5; -update noar tt set b1='S74DYHAUSA97NWRXM5T2JLANLJT7GMS' where id=5; -update noar ti set b1='S74DYHAUSA97NWRXM5T2JLANLJT7GMS' where id=5; -update noar tt set v0='SEBBBYRQKOJ49O5WH' where id=5; -update noar ti set v0='SEBBBYRQKOJ49O5WH' where id=5; -update noar tt set b2='2OTVKSVF322JN' where id=5; -update noar ti set b2='2OTVKSVF322JN' where id=5; -update noar tt set v0='91K2WCPVHJEBNOOTMII85P149J5RU' where id=6; -update noar ti set v0='91K2WCPVHJEBNOOTMII85P149J5RU' where id=6; -update noar tt set b0='K58DLLPGH2X9I7USC15VVC' where id=6; -update noar ti set b0='K58DLLPGH2X9I7USC15VVC' where id=6; -update noar tt set v0='HU6ZB1HYH73YHL' where id=6; -update noar ti set v0='HU6ZB1HYH73YHL' where id=6; -update noar tt set b1='S5K5X0G3DA99IPS5HDWUHO5CUBFDZV' where id=6; -update noar ti set b1='S5K5X0G3DA99IPS5HDWUHO5CUBFDZV' where id=6; -update noar tt set v0='MV3OLMODIPFIVUSJVBQG' where id=6; -update noar ti set v0='MV3OLMODIPFIVUSJVBQG' where id=6; -update noar tt set b2='EZQ9GRFZUJP67GJ1SS8VXQGQO64' where id=6; -update noar ti set b2='EZQ9GRFZUJP67GJ1SS8VXQGQO64' where id=6; -update noar tt set v0='K3KMHHZEQS9HN1' where id=7; -update noar ti set v0='K3KMHHZEQS9HN1' where id=7; -update noar tt set b0='K251SWEDZDSL79' where id=7; -update noar ti set b0='K251SWEDZDSL79' where id=7; -update noar tt set v0='XO7M' where id=7; -update noar ti set v0='XO7M' where id=7; -update noar tt set b1='UMBDSPYMBHVHB3EI3' where id=7; -update noar ti set b1='UMBDSPYMBHVHB3EI3' where id=7; -update noar tt set v0='ZPWUCVI7VIT' where id=7; -update noar ti set v0='ZPWUCVI7VIT' where id=7; -update noar tt set b2='RKEU' where id=7; -update noar ti set b2='RKEU' where id=7; -update noar tt set v0='GJ1GV1DF' where id=8; -update noar ti set v0='GJ1GV1DF' where id=8; -update noar tt set b0='G8TT460BFZ6C3OZ0QAZH7PIS5J4V' where id=8; -update noar ti set b0='G8TT460BFZ6C3OZ0QAZH7PIS5J4V' where id=8; -update noar tt set v0='41MJM605CH4EWX373399TOA272CP' where id=8; -update noar ti set v0='41MJM605CH4EWX373399TOA272CP' where id=8; -update noar tt set b1='1RHPS5FOUBYVPAEC79D' where id=8; -update noar ti set b1='1RHPS5FOUBYVPAEC79D' where id=8; -update noar tt set v0='TGJZQ8CTPAER55BHD2S' where id=8; -update noar ti set v0='TGJZQ8CTPAER55BHD2S' where id=8; -update noar tt set b2='MFZA7IQPA4KGWU972E' where id=8; -update noar ti set b2='MFZA7IQPA4KGWU972E' where id=8; -update noar tt set v0='JTO1Y630JQHY2J9ATLR8LR8FOOC4LN9' where id=9; -update noar ti set v0='JTO1Y630JQHY2J9ATLR8LR8FOOC4LN9' where id=9; -update noar tt set b0='UCBC95REM4' where id=9; -update noar ti set b0='UCBC95REM4' where id=9; -update noar tt set v0='H8VW26' where id=9; -update noar ti set v0='H8VW26' where id=9; -update noar tt set b1='IW5X02RZ9NWCL3KLIQ0T9H' where id=9; -update noar ti set b1='IW5X02RZ9NWCL3KLIQ0T9H' where id=9; -update noar tt set v0='9V1MX0SZ00QXS' where id=9; -update noar ti set v0='9V1MX0SZ00QXS' where id=9; -update noar tt set b2='D9E15RPWMKOPTMQC' where id=9; -update noar ti set b2='D9E15RPWMKOPTMQC' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - v0 varchar(32) null, - b0 longblob null, - b1 mediumblob null, - b2 mediumblob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='SJBTJFBY' where id=1; -update noar ti set v0='SJBTJFBY' where id=1; -update noar tt set b0='2P0BD7V89' where id=1; -update noar ti set b0='2P0BD7V89' where id=1; -update noar tt set v0='6DK7PVS' where id=1; -update noar ti set v0='6DK7PVS' where id=1; -update noar tt set b1='3EDI' where id=1; -update noar ti set b1='3EDI' where id=1; -update noar tt set v0='8RF' where id=1; -update noar ti set v0='8RF' where id=1; -update noar tt set b2='WPD24ZNHA55SRT93AD066DBNW' where id=1; -update noar ti set b2='WPD24ZNHA55SRT93AD066DBNW' where id=1; -update noar tt set v0='HJ798U3XK' where id=2; -update noar ti set v0='HJ798U3XK' where id=2; -update noar tt set b0='YHHQZ' where id=2; -update noar ti set b0='YHHQZ' where id=2; -update noar tt set v0='PCKJJU7F7Z9C5AI7P9EG6I8' where id=2; -update noar ti set v0='PCKJJU7F7Z9C5AI7P9EG6I8' where id=2; -update noar tt set b1='RF0M9S27M2UCOM3NXZ907QMU' where id=2; -update noar ti set b1='RF0M9S27M2UCOM3NXZ907QMU' where id=2; -update noar tt set v0='AW4SWOMZ1FTBFKI4HB1MWQ' where id=2; -update noar ti set v0='AW4SWOMZ1FTBFKI4HB1MWQ' where id=2; -update noar tt set b2='2H2S7N43OGN2FB1S7RMNQQDE4Q0JU' where id=2; -update noar ti set b2='2H2S7N43OGN2FB1S7RMNQQDE4Q0JU' where id=2; -update noar tt set v0='X3JSOWS7KOB9NV3V' where id=3; -update noar ti set v0='X3JSOWS7KOB9NV3V' where id=3; -update noar tt set b0='NO' where id=3; -update noar ti set b0='NO' where id=3; -update noar tt set v0='KXJZU0Z0K2RMGU9' where id=3; -update noar ti set v0='KXJZU0Z0K2RMGU9' where id=3; -update noar tt set b1='XS8ORTD7FLQG1E0' where id=3; -update noar ti set b1='XS8ORTD7FLQG1E0' where id=3; -update noar tt set v0='MUELL5VZ941O5BCGP2BO92JJFO4C3XG' where id=3; -update noar ti set v0='MUELL5VZ941O5BCGP2BO92JJFO4C3XG' where id=3; -update noar tt set b2='LPUO39GEGZ' where id=3; -update noar ti set b2='LPUO39GEGZ' where id=3; -update noar tt set v0='GEXJ5RTDCE' where id=4; -update noar ti set v0='GEXJ5RTDCE' where id=4; -update noar tt set b0='JNL8JLYKPKX31CPHHHCPN9P556XTDX3' where id=4; -update noar ti set b0='JNL8JLYKPKX31CPHHHCPN9P556XTDX3' where id=4; -update noar tt set v0='LP' where id=4; -update noar ti set v0='LP' where id=4; -update noar tt set b1='UZWKA6A2AE5D8FMP0BKKT7AL4VO36GM' where id=4; -update noar ti set b1='UZWKA6A2AE5D8FMP0BKKT7AL4VO36GM' where id=4; -update noar tt set v0='SF574' where id=4; -update noar ti set v0='SF574' where id=4; -update noar tt set b2='8PWGL3C' where id=4; -update noar ti set b2='8PWGL3C' where id=4; -update noar tt set v0='FW0TYH58E8UC1JD26J5LI' where id=5; -update noar ti set v0='FW0TYH58E8UC1JD26J5LI' where id=5; -update noar tt set b0='056' where id=5; -update noar ti set b0='056' where id=5; -update noar tt set v0='038PYFJHGH6MID0S77HP8RJQAH' where id=5; -update noar ti set v0='038PYFJHGH6MID0S77HP8RJQAH' where id=5; -update noar tt set b1='TRJ' where id=5; -update noar ti set b1='TRJ' where id=5; -update noar tt set v0='E77DGQIBFSDCLX0CFMR3CXTIM' where id=5; -update noar ti set v0='E77DGQIBFSDCLX0CFMR3CXTIM' where id=5; -update noar tt set b2='ADG2SMIWRR' where id=5; -update noar ti set b2='ADG2SMIWRR' where id=5; -update noar tt set v0='3WD8W4VMJ0235ND4M1843RZY492S' where id=6; -update noar ti set v0='3WD8W4VMJ0235ND4M1843RZY492S' where id=6; -update noar tt set b0='8ETYMSQO' where id=6; -update noar ti set b0='8ETYMSQO' where id=6; -update noar tt set v0='XDX17PMRJT4GT' where id=6; -update noar ti set v0='XDX17PMRJT4GT' where id=6; -update noar tt set b1='O3K9ZTZ9PO867' where id=6; -update noar ti set b1='O3K9ZTZ9PO867' where id=6; -update noar tt set v0='0' where id=6; -update noar ti set v0='0' where id=6; -update noar tt set b2='OAQJQ0' where id=6; -update noar ti set b2='OAQJQ0' where id=6; -update noar tt set v0='D1RD' where id=7; -update noar ti set v0='D1RD' where id=7; -update noar tt set b0='7JRBYJQ2ILXUQDEGSS2YH' where id=7; -update noar ti set b0='7JRBYJQ2ILXUQDEGSS2YH' where id=7; -update noar tt set v0='Y6PJ' where id=7; -update noar ti set v0='Y6PJ' where id=7; -update noar tt set b1='99SOGZBAHF' where id=7; -update noar ti set b1='99SOGZBAHF' where id=7; -update noar tt set v0='OG38T' where id=7; -update noar ti set v0='OG38T' where id=7; -update noar tt set b2='BR5SXFGS7SY7AODMDVGBBF02GM8LS4' where id=7; -update noar ti set b2='BR5SXFGS7SY7AODMDVGBBF02GM8LS4' where id=7; -update noar tt set v0='MQXX0R6UY1O' where id=8; -update noar ti set v0='MQXX0R6UY1O' where id=8; -update noar tt set b0='SCXVZJB2GXCGMMATGT0J6DG' where id=8; -update noar ti set b0='SCXVZJB2GXCGMMATGT0J6DG' where id=8; -update noar tt set v0='F96K5MZ6OYLK' where id=8; -update noar ti set v0='F96K5MZ6OYLK' where id=8; -update noar tt set b1='XXP79A9TH5E1NL1X3WZ' where id=8; -update noar ti set b1='XXP79A9TH5E1NL1X3WZ' where id=8; -update noar tt set v0='A' where id=8; -update noar ti set v0='A' where id=8; -update noar tt set b2='OCT0W2941UU0XWFMG29' where id=8; -update noar ti set b2='OCT0W2941UU0XWFMG29' where id=8; -update noar tt set v0='EQHZFJ2WQ92YCH8P01UEOTBF' where id=9; -update noar ti set v0='EQHZFJ2WQ92YCH8P01UEOTBF' where id=9; -update noar tt set b0='6' where id=9; -update noar ti set b0='6' where id=9; -update noar tt set v0='OF3UCX5SKADQ4KIF' where id=9; -update noar ti set v0='OF3UCX5SKADQ4KIF' where id=9; -update noar tt set b1='BYTQG9EQJVQTJIIC8' where id=9; -update noar ti set b1='BYTQG9EQJVQTJIIC8' where id=9; -update noar tt set v0='JSN3NW5EJJU4C540BZJZHK' where id=9; -update noar ti set v0='JSN3NW5EJJU4C540BZJZHK' where id=9; -update noar tt set b2='GMLCNHJVOODY62BVXNS544F91MO' where id=9; -update noar ti set b2='GMLCNHJVOODY62BVXNS544F91MO' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - v0 varchar(256) null, - b0 longblob null, - b1 mediumblob null, - b2 mediumblob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='AEGMDK8EYV80LO5N0F714KACBJ5XMV' where id=1; -update noar ti set v0='AEGMDK8EYV80LO5N0F714KACBJ5XMV' where id=1; -update noar tt set b0='5ZUR86QBTVDP93LIQ' where id=1; -update noar ti set b0='5ZUR86QBTVDP93LIQ' where id=1; -update noar tt set v0='5GNLQ' where id=1; -update noar ti set v0='5GNLQ' where id=1; -update noar tt set b1='IE0XF8HDL3PTSEFLVWM33T1U' where id=1; -update noar ti set b1='IE0XF8HDL3PTSEFLVWM33T1U' where id=1; -update noar tt set v0='XLA22WGK9SMP06N7RD0RDCVRXG' where id=1; -update noar ti set v0='XLA22WGK9SMP06N7RD0RDCVRXG' where id=1; -update noar tt set b2='QOA2PY6H1OP16DVOD1PC4' where id=1; -update noar ti set b2='QOA2PY6H1OP16DVOD1PC4' where id=1; -update noar tt set v0='4MDHHB7JKV8ZMLJT5W1BPZY' where id=2; -update noar ti set v0='4MDHHB7JKV8ZMLJT5W1BPZY' where id=2; -update noar tt set b0='FOPAO85BB78ZCT5U18M9JD' where id=2; -update noar ti set b0='FOPAO85BB78ZCT5U18M9JD' where id=2; -update noar tt set v0='TAFV3R39DWJTL5EHAAALI1CJY' where id=2; -update noar ti set v0='TAFV3R39DWJTL5EHAAALI1CJY' where id=2; -update noar tt set b1='TEY962JR9OE' where id=2; -update noar ti set b1='TEY962JR9OE' where id=2; -update noar tt set v0='CPFZ4IO' where id=2; -update noar ti set v0='CPFZ4IO' where id=2; -update noar tt set b2='HKSDHDHLX9P' where id=2; -update noar ti set b2='HKSDHDHLX9P' where id=2; -update noar tt set v0='QHXL2WU17IT' where id=3; -update noar ti set v0='QHXL2WU17IT' where id=3; -update noar tt set b0='I06H1EKO1NIMYJXF2O5C' where id=3; -update noar ti set b0='I06H1EKO1NIMYJXF2O5C' where id=3; -update noar tt set v0='UPT67K6K7FC8Z2' where id=3; -update noar ti set v0='UPT67K6K7FC8Z2' where id=3; -update noar tt set b1='X1M1EG132P4BL17XWE7XBN1B2GKUI' where id=3; -update noar ti set b1='X1M1EG132P4BL17XWE7XBN1B2GKUI' where id=3; -update noar tt set v0='A2SJT6C0IWQKM9I3' where id=3; -update noar ti set v0='A2SJT6C0IWQKM9I3' where id=3; -update noar tt set b2='I5YEITB973H84PFGQZ3XG3J' where id=3; -update noar ti set b2='I5YEITB973H84PFGQZ3XG3J' where id=3; -update noar tt set v0='RW7' where id=4; -update noar ti set v0='RW7' where id=4; -update noar tt set b0='UJQ3Z4N5C3NS3832A' where id=4; -update noar ti set b0='UJQ3Z4N5C3NS3832A' where id=4; -update noar tt set v0='N00IXPQCHO3TB0P671' where id=4; -update noar ti set v0='N00IXPQCHO3TB0P671' where id=4; -update noar tt set b1='P7TP9H4FA' where id=4; -update noar ti set b1='P7TP9H4FA' where id=4; -update noar tt set v0='VG24O291JX0EYG5UY' where id=4; -update noar ti set v0='VG24O291JX0EYG5UY' where id=4; -update noar tt set b2='CIZ3EYAITJANDCXSMKWID' where id=4; -update noar ti set b2='CIZ3EYAITJANDCXSMKWID' where id=4; -update noar tt set v0='PSN1WAALUNSAT' where id=5; -update noar ti set v0='PSN1WAALUNSAT' where id=5; -update noar tt set b0='WE2T801L006YN9J' where id=5; -update noar ti set b0='WE2T801L006YN9J' where id=5; -update noar tt set v0='724HJ9HCTL6I2G6A1TIOH2HDOKN' where id=5; -update noar ti set v0='724HJ9HCTL6I2G6A1TIOH2HDOKN' where id=5; -update noar tt set b1='DJA7' where id=5; -update noar ti set b1='DJA7' where id=5; -update noar tt set v0='04OUGOZ0MK1' where id=5; -update noar ti set v0='04OUGOZ0MK1' where id=5; -update noar tt set b2='UFS' where id=5; -update noar ti set b2='UFS' where id=5; -update noar tt set v0='B57M3DC4Y5FBHAFQUN8BZKWMJZ63CZ4' where id=6; -update noar ti set v0='B57M3DC4Y5FBHAFQUN8BZKWMJZ63CZ4' where id=6; -update noar tt set b0='6J6NPSZ67C2QRTFWV2PZN2W3QIMUG' where id=6; -update noar ti set b0='6J6NPSZ67C2QRTFWV2PZN2W3QIMUG' where id=6; -update noar tt set v0='6CSD7SPG4L936VTONHLQYNP196K063X' where id=6; -update noar ti set v0='6CSD7SPG4L936VTONHLQYNP196K063X' where id=6; -update noar tt set b1='US3CK8X8J8WQWHX5AFJ45AP6FIPKAM' where id=6; -update noar ti set b1='US3CK8X8J8WQWHX5AFJ45AP6FIPKAM' where id=6; -update noar tt set v0='MJUI09VTZ6QAAHLKXRNCV23B3Z7O' where id=6; -update noar ti set v0='MJUI09VTZ6QAAHLKXRNCV23B3Z7O' where id=6; -update noar tt set b2='MPTIN3UP2VYEFDUURAVLXWP24GH6U56' where id=6; -update noar ti set b2='MPTIN3UP2VYEFDUURAVLXWP24GH6U56' where id=6; -update noar tt set v0='OTVKMTCQ1QUQ3SKH5967SE' where id=7; -update noar ti set v0='OTVKMTCQ1QUQ3SKH5967SE' where id=7; -update noar tt set b0='96LBU3UD38V1517X4X0' where id=7; -update noar ti set b0='96LBU3UD38V1517X4X0' where id=7; -update noar tt set v0='2IT7WZJWAIT0I' where id=7; -update noar ti set v0='2IT7WZJWAIT0I' where id=7; -update noar tt set b1='V3C4JW70IOP97RJWDMCSSX' where id=7; -update noar ti set b1='V3C4JW70IOP97RJWDMCSSX' where id=7; -update noar tt set v0='L9G3' where id=7; -update noar ti set v0='L9G3' where id=7; -update noar tt set b2='LRLO45QI6A6SCLFV7NOI13QLW' where id=7; -update noar ti set b2='LRLO45QI6A6SCLFV7NOI13QLW' where id=7; -update noar tt set v0='42NLOT4UQFS' where id=8; -update noar ti set v0='42NLOT4UQFS' where id=8; -update noar tt set b0='S62B8XDFSSQ0' where id=8; -update noar ti set b0='S62B8XDFSSQ0' where id=8; -update noar tt set v0='X76ZFPSI6' where id=8; -update noar ti set v0='X76ZFPSI6' where id=8; -update noar tt set b1='FXK' where id=8; -update noar ti set b1='FXK' where id=8; -update noar tt set v0='MSNUUCHC4D' where id=8; -update noar ti set v0='MSNUUCHC4D' where id=8; -update noar tt set b2='T0XXZ3DB' where id=8; -update noar ti set b2='T0XXZ3DB' where id=8; -update noar tt set v0='I8IWTMSE' where id=9; -update noar ti set v0='I8IWTMSE' where id=9; -update noar tt set b0='1UO' where id=9; -update noar ti set b0='1UO' where id=9; -update noar tt set v0='JT' where id=9; -update noar ti set v0='JT' where id=9; -update noar tt set b1='XF7YZLXM8TS7V44I1OBBLAYCLMTDMJE' where id=9; -update noar ti set b1='XF7YZLXM8TS7V44I1OBBLAYCLMTDMJE' where id=9; -update noar tt set v0='TH5E9Z' where id=9; -update noar ti set v0='TH5E9Z' where id=9; -update noar tt set b2='222NO4NTFXSOM57' where id=9; -update noar ti set b2='222NO4NTFXSOM57' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - v0 varchar(32) not null, - b0 longblob not null, - b1 mediumblob not null, - b2 mediumblob not null -) engine=tokudb; -insert into tt values (1,'','','',''); -insert into tt values (2,'','','',''); -insert into tt values (3,'','','',''); -insert into tt values (4,'','','',''); -insert into tt values (5,'','','',''); -insert into tt values (6,'','','',''); -insert into tt values (7,'','','',''); -insert into tt values (8,'','','',''); -insert into tt values (9,'','','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='5YIBB5UNICW9845FJBUCTO' where id=1; -update noar ti set v0='5YIBB5UNICW9845FJBUCTO' where id=1; -update noar tt set b0='MXN7' where id=1; -update noar ti set b0='MXN7' where id=1; -update noar tt set v0='KUJVXXVC7JOR5DQP' where id=1; -update noar ti set v0='KUJVXXVC7JOR5DQP' where id=1; -update noar tt set b1='6D15RMD9AP1PJLXG2X0PETP24JC' where id=1; -update noar ti set b1='6D15RMD9AP1PJLXG2X0PETP24JC' where id=1; -update noar tt set v0='Y5EQSR52HVK98VLCMCUBPMW4HZH4D' where id=1; -update noar ti set v0='Y5EQSR52HVK98VLCMCUBPMW4HZH4D' where id=1; -update noar tt set b2='NPZQWM6' where id=1; -update noar ti set b2='NPZQWM6' where id=1; -update noar tt set v0='7IIYB8' where id=2; -update noar ti set v0='7IIYB8' where id=2; -update noar tt set b0='3XA8WDH4ILAZXZ3MYN' where id=2; -update noar ti set b0='3XA8WDH4ILAZXZ3MYN' where id=2; -update noar tt set v0='T3QGJ9J7NRHJI6K1D' where id=2; -update noar ti set v0='T3QGJ9J7NRHJI6K1D' where id=2; -update noar tt set b1='HY' where id=2; -update noar ti set b1='HY' where id=2; -update noar tt set v0='YDV2S0YCTQ8RASJJ2HS' where id=2; -update noar ti set v0='YDV2S0YCTQ8RASJJ2HS' where id=2; -update noar tt set b2='0JNS9N9BRIUGHIGJUTVZLYVE887' where id=2; -update noar ti set b2='0JNS9N9BRIUGHIGJUTVZLYVE887' where id=2; -update noar tt set v0='1UDERKW4U60UYANPN7XZ9S8N' where id=3; -update noar ti set v0='1UDERKW4U60UYANPN7XZ9S8N' where id=3; -update noar tt set b0='E8DE7XU' where id=3; -update noar ti set b0='E8DE7XU' where id=3; -update noar tt set v0='GRAD2LTLER' where id=3; -update noar ti set v0='GRAD2LTLER' where id=3; -update noar tt set b1='CPKQOCLGYDOP18' where id=3; -update noar ti set b1='CPKQOCLGYDOP18' where id=3; -update noar tt set v0='9I7HF5S6JFDGQRJAYK5QT5VV4' where id=3; -update noar ti set v0='9I7HF5S6JFDGQRJAYK5QT5VV4' where id=3; -update noar tt set b2='YI' where id=3; -update noar ti set b2='YI' where id=3; -update noar tt set v0='H' where id=4; -update noar ti set v0='H' where id=4; -update noar tt set b0='VNFPJJKXK91C' where id=4; -update noar ti set b0='VNFPJJKXK91C' where id=4; -update noar tt set v0='BXK6KLIBNT8OPMDP1DKBONRP6BBB5ZVD' where id=4; -update noar ti set v0='BXK6KLIBNT8OPMDP1DKBONRP6BBB5ZVD' where id=4; -update noar tt set b1='LVRAWWTLD79J77P705WWWSZ1W34DZRB' where id=4; -update noar ti set b1='LVRAWWTLD79J77P705WWWSZ1W34DZRB' where id=4; -update noar tt set v0='V' where id=4; -update noar ti set v0='V' where id=4; -update noar tt set b2='00Z6QQ' where id=4; -update noar ti set b2='00Z6QQ' where id=4; -update noar tt set v0='53C8BD8' where id=5; -update noar ti set v0='53C8BD8' where id=5; -update noar tt set b0='6LM17NK1' where id=5; -update noar ti set b0='6LM17NK1' where id=5; -update noar tt set v0='Y0TUAR0QU0QO8U' where id=5; -update noar ti set v0='Y0TUAR0QU0QO8U' where id=5; -update noar tt set b1='0CPIUW' where id=5; -update noar ti set b1='0CPIUW' where id=5; -update noar tt set v0='TXX80PRDST6ZKF' where id=5; -update noar ti set v0='TXX80PRDST6ZKF' where id=5; -update noar tt set b2='ANHBGV8GFJM' where id=5; -update noar ti set b2='ANHBGV8GFJM' where id=5; -update noar tt set v0='7AMA7A2G7I4YRGQK2JZ2YPLRRRSYI' where id=6; -update noar ti set v0='7AMA7A2G7I4YRGQK2JZ2YPLRRRSYI' where id=6; -update noar tt set b0='K0OHWH6TGS3XN' where id=6; -update noar ti set b0='K0OHWH6TGS3XN' where id=6; -update noar tt set v0='S8MK5XH9C7ERQKQCT0239TY8XJ7' where id=6; -update noar ti set v0='S8MK5XH9C7ERQKQCT0239TY8XJ7' where id=6; -update noar tt set b1='5' where id=6; -update noar ti set b1='5' where id=6; -update noar tt set v0='5KA8V1OMWDB2Z9UDYQK' where id=6; -update noar ti set v0='5KA8V1OMWDB2Z9UDYQK' where id=6; -update noar tt set b2='817L591' where id=6; -update noar ti set b2='817L591' where id=6; -update noar tt set v0='I58CWEWAOBC0HHXHDJSA0NAKAUIXF' where id=7; -update noar ti set v0='I58CWEWAOBC0HHXHDJSA0NAKAUIXF' where id=7; -update noar tt set b0='QFRXQ3NOOX1RKXLQBO9G5K' where id=7; -update noar ti set b0='QFRXQ3NOOX1RKXLQBO9G5K' where id=7; -update noar tt set v0='H54KHZJB5' where id=7; -update noar ti set v0='H54KHZJB5' where id=7; -update noar tt set b1='PLBFN5IDR9S0DV4IIUYV63H0GISSHN' where id=7; -update noar ti set b1='PLBFN5IDR9S0DV4IIUYV63H0GISSHN' where id=7; -update noar tt set v0='4UF9' where id=7; -update noar ti set v0='4UF9' where id=7; -update noar tt set b2='CBD6U6MUZHWS4RY1W5' where id=7; -update noar ti set b2='CBD6U6MUZHWS4RY1W5' where id=7; -update noar tt set v0='V4VEFIGTJ5S67Z6MVQZ' where id=8; -update noar ti set v0='V4VEFIGTJ5S67Z6MVQZ' where id=8; -update noar tt set b0='CFIF77FGMJ4BUJG5V3ZB5XW3D' where id=8; -update noar ti set b0='CFIF77FGMJ4BUJG5V3ZB5XW3D' where id=8; -update noar tt set v0='4' where id=8; -update noar ti set v0='4' where id=8; -update noar tt set b1='SSR74TAPELE03RMYQAFT' where id=8; -update noar ti set b1='SSR74TAPELE03RMYQAFT' where id=8; -update noar tt set v0='07GYC0C26KXP37NWZE1MO' where id=8; -update noar ti set v0='07GYC0C26KXP37NWZE1MO' where id=8; -update noar tt set b2='KUTT43527FXLKUMRRZ2JVMYUQUI' where id=8; -update noar ti set b2='KUTT43527FXLKUMRRZ2JVMYUQUI' where id=8; -update noar tt set v0='PVQ50MWWW' where id=9; -update noar ti set v0='PVQ50MWWW' where id=9; -update noar tt set b0='L0O9FP02FNGD6BY00WCSUSASAQZ' where id=9; -update noar ti set b0='L0O9FP02FNGD6BY00WCSUSASAQZ' where id=9; -update noar tt set v0='08943H3VSMOBTTP7L9CPKFEAG3' where id=9; -update noar ti set v0='08943H3VSMOBTTP7L9CPKFEAG3' where id=9; -update noar tt set b1='7RUY5OQDD8' where id=9; -update noar ti set b1='7RUY5OQDD8' where id=9; -update noar tt set v0='MY8OYZTR0UNYNZO59ZW23KZTJLNUUV2' where id=9; -update noar ti set v0='MY8OYZTR0UNYNZO59ZW23KZTJLNUUV2' where id=9; -update noar tt set b2='FVEE4VTIENXXZUK8PV4W5NJ' where id=9; -update noar ti set b2='FVEE4VTIENXXZUK8PV4W5NJ' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - v0 varchar(256) not null, - b0 longblob not null, - b1 mediumblob not null, - b2 mediumblob not null -) engine=tokudb; -insert into tt values (1,'','','',''); -insert into tt values (2,'','','',''); -insert into tt values (3,'','','',''); -insert into tt values (4,'','','',''); -insert into tt values (5,'','','',''); -insert into tt values (6,'','','',''); -insert into tt values (7,'','','',''); -insert into tt values (8,'','','',''); -insert into tt values (9,'','','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='S3WOBYMKV629I7E1XUJCG163' where id=1; -update noar ti set v0='S3WOBYMKV629I7E1XUJCG163' where id=1; -update noar tt set b0='7GSYV' where id=1; -update noar ti set b0='7GSYV' where id=1; -update noar tt set v0='JMP59E0SBEI5UKS2CF1' where id=1; -update noar ti set v0='JMP59E0SBEI5UKS2CF1' where id=1; -update noar tt set b1='BR44HNYO9JJV9NNPMVST' where id=1; -update noar ti set b1='BR44HNYO9JJV9NNPMVST' where id=1; -update noar tt set v0='R4NKM8LXH2' where id=1; -update noar ti set v0='R4NKM8LXH2' where id=1; -update noar tt set b2='VE2LB0DFDES1CB97V' where id=1; -update noar ti set b2='VE2LB0DFDES1CB97V' where id=1; -update noar tt set v0='NWWCS9HVGWBNEBIMCZA23' where id=2; -update noar ti set v0='NWWCS9HVGWBNEBIMCZA23' where id=2; -update noar tt set b0='QOGKOYP2RWVRJJXHJ9M91R5LN3U' where id=2; -update noar ti set b0='QOGKOYP2RWVRJJXHJ9M91R5LN3U' where id=2; -update noar tt set v0='YUAQ3E' where id=2; -update noar ti set v0='YUAQ3E' where id=2; -update noar tt set b1='1DCYTJTC2KJT9JZEQPDNI9N0JODU' where id=2; -update noar ti set b1='1DCYTJTC2KJT9JZEQPDNI9N0JODU' where id=2; -update noar tt set v0='MJMLFBB' where id=2; -update noar ti set v0='MJMLFBB' where id=2; -update noar tt set b2='UT0ZYO6DKRZIG54C772MDG' where id=2; -update noar ti set b2='UT0ZYO6DKRZIG54C772MDG' where id=2; -update noar tt set v0='BWTS5XCE563B61T3CP4DMO' where id=3; -update noar ti set v0='BWTS5XCE563B61T3CP4DMO' where id=3; -update noar tt set b0='EIW7WSKT0MEGBJJMEO' where id=3; -update noar ti set b0='EIW7WSKT0MEGBJJMEO' where id=3; -update noar tt set v0='EPICL7Z14LG9' where id=3; -update noar ti set v0='EPICL7Z14LG9' where id=3; -update noar tt set b1='8B0DOJL2JE7K10LACH2ERDOBUQDB0F' where id=3; -update noar ti set b1='8B0DOJL2JE7K10LACH2ERDOBUQDB0F' where id=3; -update noar tt set v0='JKW946I5U2676TEFELJC0I3DSOMKCKRB' where id=3; -update noar ti set v0='JKW946I5U2676TEFELJC0I3DSOMKCKRB' where id=3; -update noar tt set b2='IALFJJ7K40IXNQU8' where id=3; -update noar ti set b2='IALFJJ7K40IXNQU8' where id=3; -update noar tt set v0='ORHEIO52QFHWJ4A3' where id=4; -update noar ti set v0='ORHEIO52QFHWJ4A3' where id=4; -update noar tt set b0='GRYJN4R2AHE' where id=4; -update noar ti set b0='GRYJN4R2AHE' where id=4; -update noar tt set v0='V37WORKOR9O' where id=4; -update noar ti set v0='V37WORKOR9O' where id=4; -update noar tt set b1='FDBVAG' where id=4; -update noar ti set b1='FDBVAG' where id=4; -update noar tt set v0='UZBFL9UHEPE7OTV04GETP' where id=4; -update noar ti set v0='UZBFL9UHEPE7OTV04GETP' where id=4; -update noar tt set b2='CM8EMC1YNNS7UEF4GP4M18KMBXJRGN' where id=4; -update noar ti set b2='CM8EMC1YNNS7UEF4GP4M18KMBXJRGN' where id=4; -update noar tt set v0='KADFFXAAU5QLA9T5BLPL583' where id=5; -update noar ti set v0='KADFFXAAU5QLA9T5BLPL583' where id=5; -update noar tt set b0='36S59X86VT' where id=5; -update noar ti set b0='36S59X86VT' where id=5; -update noar tt set v0='FX5EHG28EHYWCRLL6' where id=5; -update noar ti set v0='FX5EHG28EHYWCRLL6' where id=5; -update noar tt set b1='RVWERPBBNP58QPJHQEFL6KGXB08PY' where id=5; -update noar ti set b1='RVWERPBBNP58QPJHQEFL6KGXB08PY' where id=5; -update noar tt set v0='QTYVPED8KKZ5S5QU601VDVXBLM8' where id=5; -update noar ti set v0='QTYVPED8KKZ5S5QU601VDVXBLM8' where id=5; -update noar tt set b2='GNPJ8Q48R10OUHK347Q2D240ZRPSV' where id=5; -update noar ti set b2='GNPJ8Q48R10OUHK347Q2D240ZRPSV' where id=5; -update noar tt set v0='FK0DK4SCUA4G3REDN5HOTM4IKDVAI2BB' where id=6; -update noar ti set v0='FK0DK4SCUA4G3REDN5HOTM4IKDVAI2BB' where id=6; -update noar tt set b0='QD97N3TTIL3' where id=6; -update noar ti set b0='QD97N3TTIL3' where id=6; -update noar tt set v0='4NF378ECWJ' where id=6; -update noar ti set v0='4NF378ECWJ' where id=6; -update noar tt set b1='LAAW46MQHWT6A' where id=6; -update noar ti set b1='LAAW46MQHWT6A' where id=6; -update noar tt set v0='2FTO3NIS' where id=6; -update noar ti set v0='2FTO3NIS' where id=6; -update noar tt set b2='WEB38FB8YMHHLCPV' where id=6; -update noar ti set b2='WEB38FB8YMHHLCPV' where id=6; -update noar tt set v0='ZNXXVVB' where id=7; -update noar ti set v0='ZNXXVVB' where id=7; -update noar tt set b0='UF5P19DYI3' where id=7; -update noar ti set b0='UF5P19DYI3' where id=7; -update noar tt set v0='1UBGXLDMB' where id=7; -update noar ti set v0='1UBGXLDMB' where id=7; -update noar tt set b1='PVL9NH95K4NEQXDQLNWQ4B' where id=7; -update noar ti set b1='PVL9NH95K4NEQXDQLNWQ4B' where id=7; -update noar tt set v0='EUB8FA6TBQT1HNWQGIC75SIZ889' where id=7; -update noar ti set v0='EUB8FA6TBQT1HNWQGIC75SIZ889' where id=7; -update noar tt set b2='8YQR2W5UP50MTPW690WQUC0RZNL8' where id=7; -update noar ti set b2='8YQR2W5UP50MTPW690WQUC0RZNL8' where id=7; -update noar tt set v0='LUWLJORIA7POZCB' where id=8; -update noar ti set v0='LUWLJORIA7POZCB' where id=8; -update noar tt set b0='2TVGNOR' where id=8; -update noar ti set b0='2TVGNOR' where id=8; -update noar tt set v0='BPM4GRLCJGT7QCAR6V5R3Z64W' where id=8; -update noar ti set v0='BPM4GRLCJGT7QCAR6V5R3Z64W' where id=8; -update noar tt set b1='O170TG' where id=8; -update noar ti set b1='O170TG' where id=8; -update noar tt set v0='GIYB3SKHI1YHZFV' where id=8; -update noar ti set v0='GIYB3SKHI1YHZFV' where id=8; -update noar tt set b2='XBJEJ7IZNL22RHKA' where id=8; -update noar ti set b2='XBJEJ7IZNL22RHKA' where id=8; -update noar tt set v0='3KFAL' where id=9; -update noar ti set v0='3KFAL' where id=9; -update noar tt set b0='LPHWJCBIQ4JNNBDZKENL5RT3AWVUDHVE' where id=9; -update noar ti set b0='LPHWJCBIQ4JNNBDZKENL5RT3AWVUDHVE' where id=9; -update noar tt set v0='J4WP' where id=9; -update noar ti set v0='J4WP' where id=9; -update noar tt set b1='E9C4DU0LWIR0052208LIZDWUX3' where id=9; -update noar ti set b1='E9C4DU0LWIR0052208LIZDWUX3' where id=9; -update noar tt set v0='KU' where id=9; -update noar ti set v0='KU' where id=9; -update noar tt set b2='E8T' where id=9; -update noar ti set b2='E8T' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - v0 varchar(32) null, - b0 longblob null, - b1 mediumblob null, - b2 longblob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='R3K75JPZ7DBNDLWGKZWUN7JFQ0LVVNKD' where id=1; -update noar ti set v0='R3K75JPZ7DBNDLWGKZWUN7JFQ0LVVNKD' where id=1; -update noar tt set b0='CEXAX0IX02SS6E7AKO1H8US' where id=1; -update noar ti set b0='CEXAX0IX02SS6E7AKO1H8US' where id=1; -update noar tt set v0='0FPUB1ABYX7L7DQW5EWTFCYN0' where id=1; -update noar ti set v0='0FPUB1ABYX7L7DQW5EWTFCYN0' where id=1; -update noar tt set b1='MUYE4FEQZ5' where id=1; -update noar ti set b1='MUYE4FEQZ5' where id=1; -update noar tt set v0='CJVU7TTVU9Z708FZH059JLWRSP' where id=1; -update noar ti set v0='CJVU7TTVU9Z708FZH059JLWRSP' where id=1; -update noar tt set b2='TWCPR' where id=1; -update noar ti set b2='TWCPR' where id=1; -update noar tt set v0='MTEZE8LTCJPIDKSJWXE' where id=2; -update noar ti set v0='MTEZE8LTCJPIDKSJWXE' where id=2; -update noar tt set b0='QIAIZUVDN8YM' where id=2; -update noar ti set b0='QIAIZUVDN8YM' where id=2; -update noar tt set v0='TFGRNU2QU' where id=2; -update noar ti set v0='TFGRNU2QU' where id=2; -update noar tt set b1='7BCLZC2NE52505OKEYE6HCM5I' where id=2; -update noar ti set b1='7BCLZC2NE52505OKEYE6HCM5I' where id=2; -update noar tt set v0='JE' where id=2; -update noar ti set v0='JE' where id=2; -update noar tt set b2='3QYP8R05V8ST' where id=2; -update noar ti set b2='3QYP8R05V8ST' where id=2; -update noar tt set v0='312J4UC0M6MSUYYKHTN4SL5JYG' where id=3; -update noar ti set v0='312J4UC0M6MSUYYKHTN4SL5JYG' where id=3; -update noar tt set b0='PA7IDPT95SW2OW5' where id=3; -update noar ti set b0='PA7IDPT95SW2OW5' where id=3; -update noar tt set v0='2X6H0H' where id=3; -update noar ti set v0='2X6H0H' where id=3; -update noar tt set b1='8BQHCICPE' where id=3; -update noar ti set b1='8BQHCICPE' where id=3; -update noar tt set v0='WFVTH1Q9O4BP5A14957VS' where id=3; -update noar ti set v0='WFVTH1Q9O4BP5A14957VS' where id=3; -update noar tt set b2='DRZ3JOLF9BE' where id=3; -update noar ti set b2='DRZ3JOLF9BE' where id=3; -update noar tt set v0='39W8FXHK14GYLKHCUS' where id=4; -update noar ti set v0='39W8FXHK14GYLKHCUS' where id=4; -update noar tt set b0='PY20H353UIANN3I8G8O9AKY' where id=4; -update noar ti set b0='PY20H353UIANN3I8G8O9AKY' where id=4; -update noar tt set v0='KGJB3HFFKRE72JXWMET2DPIW90P' where id=4; -update noar ti set v0='KGJB3HFFKRE72JXWMET2DPIW90P' where id=4; -update noar tt set b1='J1GRMTVT746A63V3BKHD3U' where id=4; -update noar ti set b1='J1GRMTVT746A63V3BKHD3U' where id=4; -update noar tt set v0='IXUJPWUTCL4MXPMUBITCC14NOIQP4Y' where id=4; -update noar ti set v0='IXUJPWUTCL4MXPMUBITCC14NOIQP4Y' where id=4; -update noar tt set b2='X6VKEIHA' where id=4; -update noar ti set b2='X6VKEIHA' where id=4; -update noar tt set v0='2HM74' where id=5; -update noar ti set v0='2HM74' where id=5; -update noar tt set b0='Q1MZZHM7C7AQELLNCBV2YV' where id=5; -update noar ti set b0='Q1MZZHM7C7AQELLNCBV2YV' where id=5; -update noar tt set v0='YNDEJGCQ29SOCEILQ2CEZU' where id=5; -update noar ti set v0='YNDEJGCQ29SOCEILQ2CEZU' where id=5; -update noar tt set b1='VLRF4G3T7NTTMBQX6CY4Y7HJG5N' where id=5; -update noar ti set b1='VLRF4G3T7NTTMBQX6CY4Y7HJG5N' where id=5; -update noar tt set v0='6PT4RS2L' where id=5; -update noar ti set v0='6PT4RS2L' where id=5; -update noar tt set b2='NRH' where id=5; -update noar ti set b2='NRH' where id=5; -update noar tt set v0='AO9REU3AKJ2HN' where id=6; -update noar ti set v0='AO9REU3AKJ2HN' where id=6; -update noar tt set b0='344IMAFNYWN1VPNIO8G3QP' where id=6; -update noar ti set b0='344IMAFNYWN1VPNIO8G3QP' where id=6; -update noar tt set v0='ROFZG3WP4CCJQV4FXX3YXG4MFWV17ZGA' where id=6; -update noar ti set v0='ROFZG3WP4CCJQV4FXX3YXG4MFWV17ZGA' where id=6; -update noar tt set b1='3OR3MJA0AAXGXJEHZUSROQ249J' where id=6; -update noar ti set b1='3OR3MJA0AAXGXJEHZUSROQ249J' where id=6; -update noar tt set v0='ZAWIH0Z032M68' where id=6; -update noar ti set v0='ZAWIH0Z032M68' where id=6; -update noar tt set b2='DQ41UB' where id=6; -update noar ti set b2='DQ41UB' where id=6; -update noar tt set v0='YMFQS5' where id=7; -update noar ti set v0='YMFQS5' where id=7; -update noar tt set b0='5EWX' where id=7; -update noar ti set b0='5EWX' where id=7; -update noar tt set v0='24CYCJWWTW5Y3S9CITJPZJKY' where id=7; -update noar ti set v0='24CYCJWWTW5Y3S9CITJPZJKY' where id=7; -update noar tt set b1='0PGUONFQBMKD' where id=7; -update noar ti set b1='0PGUONFQBMKD' where id=7; -update noar tt set v0='UNOLJ35TQJVFXZCV' where id=7; -update noar ti set v0='UNOLJ35TQJVFXZCV' where id=7; -update noar tt set b2='1J3L' where id=7; -update noar ti set b2='1J3L' where id=7; -update noar tt set v0='R0492MGGPP1EQKYVMM18VEVC' where id=8; -update noar ti set v0='R0492MGGPP1EQKYVMM18VEVC' where id=8; -update noar tt set b0='0IY0' where id=8; -update noar ti set b0='0IY0' where id=8; -update noar tt set v0='6L1B8FLDQE7M1HCLY0GG' where id=8; -update noar ti set v0='6L1B8FLDQE7M1HCLY0GG' where id=8; -update noar tt set b1='IX5LTS7AV3G7JJX5GMHXR3DFRNXK3' where id=8; -update noar ti set b1='IX5LTS7AV3G7JJX5GMHXR3DFRNXK3' where id=8; -update noar tt set v0='IP' where id=8; -update noar ti set v0='IP' where id=8; -update noar tt set b2='7' where id=8; -update noar ti set b2='7' where id=8; -update noar tt set v0='SX9KI0TPRDN3FC2VB1YLCRO01VX2AS' where id=9; -update noar ti set v0='SX9KI0TPRDN3FC2VB1YLCRO01VX2AS' where id=9; -update noar tt set b0='YPPN52C7IPNUK' where id=9; -update noar ti set b0='YPPN52C7IPNUK' where id=9; -update noar tt set v0='XEDMBXRTD253UJ' where id=9; -update noar ti set v0='XEDMBXRTD253UJ' where id=9; -update noar tt set b1='RBTR77M2XYIQJXW73NLQQQG8A4' where id=9; -update noar ti set b1='RBTR77M2XYIQJXW73NLQQQG8A4' where id=9; -update noar tt set v0='J' where id=9; -update noar ti set v0='J' where id=9; -update noar tt set b2='DP7RSS29NH6W' where id=9; -update noar ti set b2='DP7RSS29NH6W' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - v0 varchar(256) null, - b0 longblob null, - b1 mediumblob null, - b2 longblob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='D9' where id=1; -update noar ti set v0='D9' where id=1; -update noar tt set b0='4KY26BDHRD3J5IC4TCAQW1RJATC' where id=1; -update noar ti set b0='4KY26BDHRD3J5IC4TCAQW1RJATC' where id=1; -update noar tt set v0='QR0EKGQ5YUDOT57D3T5' where id=1; -update noar ti set v0='QR0EKGQ5YUDOT57D3T5' where id=1; -update noar tt set b1='EE2R5' where id=1; -update noar ti set b1='EE2R5' where id=1; -update noar tt set v0='HL2F1D8CBB' where id=1; -update noar ti set v0='HL2F1D8CBB' where id=1; -update noar tt set b2='UGDNBKQ2YT5WAMJX9RRGVC' where id=1; -update noar ti set b2='UGDNBKQ2YT5WAMJX9RRGVC' where id=1; -update noar tt set v0='IFOG7SJDQLWHQ7S9H5S47M6N20U84L' where id=2; -update noar ti set v0='IFOG7SJDQLWHQ7S9H5S47M6N20U84L' where id=2; -update noar tt set b0='JFHS' where id=2; -update noar ti set b0='JFHS' where id=2; -update noar tt set v0='1JRI1UYSQRCCMIINOA4XTRZXGVR2' where id=2; -update noar ti set v0='1JRI1UYSQRCCMIINOA4XTRZXGVR2' where id=2; -update noar tt set b1='PM4IS8CHAS4' where id=2; -update noar ti set b1='PM4IS8CHAS4' where id=2; -update noar tt set v0='92BQAV8NM5BZQY94Q' where id=2; -update noar ti set v0='92BQAV8NM5BZQY94Q' where id=2; -update noar tt set b2='HOPYGDCR8Q' where id=2; -update noar ti set b2='HOPYGDCR8Q' where id=2; -update noar tt set v0='9K1UIZBEAJKXRM0C15XVRV1N4OF' where id=3; -update noar ti set v0='9K1UIZBEAJKXRM0C15XVRV1N4OF' where id=3; -update noar tt set b0='MXNUGECQVV10FM' where id=3; -update noar ti set b0='MXNUGECQVV10FM' where id=3; -update noar tt set v0='DJKJCMDTS5XITVSQJCRA60YVOGPVI' where id=3; -update noar ti set v0='DJKJCMDTS5XITVSQJCRA60YVOGPVI' where id=3; -update noar tt set b1='6IF' where id=3; -update noar ti set b1='6IF' where id=3; -update noar tt set v0='JCIKPZFLSWSR' where id=3; -update noar ti set v0='JCIKPZFLSWSR' where id=3; -update noar tt set b2='WK2U8Z3LHRIOT50AB295CWWU6XH29E' where id=3; -update noar ti set b2='WK2U8Z3LHRIOT50AB295CWWU6XH29E' where id=3; -update noar tt set v0='11WIUBVQ0GNTY8WXXYH6GE1HXE' where id=4; -update noar ti set v0='11WIUBVQ0GNTY8WXXYH6GE1HXE' where id=4; -update noar tt set b0='3027K0E8VM7ZFUGKSFKH6' where id=4; -update noar ti set b0='3027K0E8VM7ZFUGKSFKH6' where id=4; -update noar tt set v0='UBQBM1AVW1Z48KF3' where id=4; -update noar ti set v0='UBQBM1AVW1Z48KF3' where id=4; -update noar tt set b1='EZPPFKYZP7BF9YSVNK972CU8VOLNZ75' where id=4; -update noar ti set b1='EZPPFKYZP7BF9YSVNK972CU8VOLNZ75' where id=4; -update noar tt set v0='SCLTUZ76N03DLZYQ' where id=4; -update noar ti set v0='SCLTUZ76N03DLZYQ' where id=4; -update noar tt set b2='LDC21J8P32AT8SUF14LT4IZ9WVFT0' where id=4; -update noar ti set b2='LDC21J8P32AT8SUF14LT4IZ9WVFT0' where id=4; -update noar tt set v0='MEQX9LYC85VJPI00FJB35C9TNW4QH' where id=5; -update noar ti set v0='MEQX9LYC85VJPI00FJB35C9TNW4QH' where id=5; -update noar tt set b0='I7X0FRJA666B65WR' where id=5; -update noar ti set b0='I7X0FRJA666B65WR' where id=5; -update noar tt set v0='RM36BXLHOBCP59BAXLPCXSZ' where id=5; -update noar ti set v0='RM36BXLHOBCP59BAXLPCXSZ' where id=5; -update noar tt set b1='OUG3JM1LGMK7ZSQY78WE3HZ5CKEL5P' where id=5; -update noar ti set b1='OUG3JM1LGMK7ZSQY78WE3HZ5CKEL5P' where id=5; -update noar tt set v0='BNHP3ORJD224TI9' where id=5; -update noar ti set v0='BNHP3ORJD224TI9' where id=5; -update noar tt set b2='DA2' where id=5; -update noar ti set b2='DA2' where id=5; -update noar tt set v0='2IRR7ENDLBQV9D839S7Y9134GZ2G0SZO' where id=6; -update noar ti set v0='2IRR7ENDLBQV9D839S7Y9134GZ2G0SZO' where id=6; -update noar tt set b0='ICTA580809' where id=6; -update noar ti set b0='ICTA580809' where id=6; -update noar tt set v0='6FPBLTQZME' where id=6; -update noar ti set v0='6FPBLTQZME' where id=6; -update noar tt set b1='KVS0SR22V84J' where id=6; -update noar ti set b1='KVS0SR22V84J' where id=6; -update noar tt set v0='NZUHCUHEVFY015AWH0II' where id=6; -update noar ti set v0='NZUHCUHEVFY015AWH0II' where id=6; -update noar tt set b2='5LKMNFT7BYX13RNN3D2' where id=6; -update noar ti set b2='5LKMNFT7BYX13RNN3D2' where id=6; -update noar tt set v0='8OJF7ATX' where id=7; -update noar ti set v0='8OJF7ATX' where id=7; -update noar tt set b0='HY' where id=7; -update noar ti set b0='HY' where id=7; -update noar tt set v0='BAZYWPNOLLEYZ1SHHM19JLCO' where id=7; -update noar ti set v0='BAZYWPNOLLEYZ1SHHM19JLCO' where id=7; -update noar tt set b1='S390CJJD' where id=7; -update noar ti set b1='S390CJJD' where id=7; -update noar tt set v0='Q4B9OTOG95V5511GTKUFZAOOG1SR' where id=7; -update noar ti set v0='Q4B9OTOG95V5511GTKUFZAOOG1SR' where id=7; -update noar tt set b2='N953HL01BEHB6W2UO0KHIU1RBBUR7' where id=7; -update noar ti set b2='N953HL01BEHB6W2UO0KHIU1RBBUR7' where id=7; -update noar tt set v0='QQMPZ0OHR28D79' where id=8; -update noar ti set v0='QQMPZ0OHR28D79' where id=8; -update noar tt set b0='ZKA08H4VSV78' where id=8; -update noar ti set b0='ZKA08H4VSV78' where id=8; -update noar tt set v0='JX3TMT' where id=8; -update noar ti set v0='JX3TMT' where id=8; -update noar tt set b1='PKBFYE7GHSXVXQ0YF3UO1UFGT1R75' where id=8; -update noar ti set b1='PKBFYE7GHSXVXQ0YF3UO1UFGT1R75' where id=8; -update noar tt set v0='0JIHXPB96SZQ44SQSWTA4L260' where id=8; -update noar ti set v0='0JIHXPB96SZQ44SQSWTA4L260' where id=8; -update noar tt set b2='5F4HV' where id=8; -update noar ti set b2='5F4HV' where id=8; -update noar tt set v0='PIXO' where id=9; -update noar ti set v0='PIXO' where id=9; -update noar tt set b0='YYRAVC33GKFL8FWX3L7W356' where id=9; -update noar ti set b0='YYRAVC33GKFL8FWX3L7W356' where id=9; -update noar tt set v0='4V0B0LXK7UXJ52R2N8ZE5Y3MG1R' where id=9; -update noar ti set v0='4V0B0LXK7UXJ52R2N8ZE5Y3MG1R' where id=9; -update noar tt set b1='991XDMGDFUY' where id=9; -update noar ti set b1='991XDMGDFUY' where id=9; -update noar tt set v0='EVB07' where id=9; -update noar ti set v0='EVB07' where id=9; -update noar tt set b2='2TEUEW2UPEGM8TTC' where id=9; -update noar ti set b2='2TEUEW2UPEGM8TTC' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - v0 varchar(32) not null, - b0 longblob not null, - b1 mediumblob not null, - b2 longblob not null -) engine=tokudb; -insert into tt values (1,'','','',''); -insert into tt values (2,'','','',''); -insert into tt values (3,'','','',''); -insert into tt values (4,'','','',''); -insert into tt values (5,'','','',''); -insert into tt values (6,'','','',''); -insert into tt values (7,'','','',''); -insert into tt values (8,'','','',''); -insert into tt values (9,'','','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='CNE69R3TSTJTJ9A3GJ6U9V658E' where id=1; -update noar ti set v0='CNE69R3TSTJTJ9A3GJ6U9V658E' where id=1; -update noar tt set b0='65AYFMENZSIIE1AU9GQH0' where id=1; -update noar ti set b0='65AYFMENZSIIE1AU9GQH0' where id=1; -update noar tt set v0='EMZ0FRE4' where id=1; -update noar ti set v0='EMZ0FRE4' where id=1; -update noar tt set b1='MDA1YSS46DFWOH2OLRAOQT2' where id=1; -update noar ti set b1='MDA1YSS46DFWOH2OLRAOQT2' where id=1; -update noar tt set v0='J8CZQVDQVHIL0JK' where id=1; -update noar ti set v0='J8CZQVDQVHIL0JK' where id=1; -update noar tt set b2='D' where id=1; -update noar ti set b2='D' where id=1; -update noar tt set v0='P21FAHOJO0CP1Q82C9999SYL' where id=2; -update noar ti set v0='P21FAHOJO0CP1Q82C9999SYL' where id=2; -update noar tt set b0='KLOIV3M1S7Y6ZA4JU7649FF8EXL4N' where id=2; -update noar ti set b0='KLOIV3M1S7Y6ZA4JU7649FF8EXL4N' where id=2; -update noar tt set v0='ZE9N2MAVGKMTFGSV26LMLEXZFQ8T' where id=2; -update noar ti set v0='ZE9N2MAVGKMTFGSV26LMLEXZFQ8T' where id=2; -update noar tt set b1='XNUO087QXE2DW2S2RN' where id=2; -update noar ti set b1='XNUO087QXE2DW2S2RN' where id=2; -update noar tt set v0='WXBLHR5O9S26KJ' where id=2; -update noar ti set v0='WXBLHR5O9S26KJ' where id=2; -update noar tt set b2='FBZ2G4EC1TL0Z' where id=2; -update noar ti set b2='FBZ2G4EC1TL0Z' where id=2; -update noar tt set v0='G5MTX6MM' where id=3; -update noar ti set v0='G5MTX6MM' where id=3; -update noar tt set b0='MJ90DEZCR89NDZEM1YFVF5O3X' where id=3; -update noar ti set b0='MJ90DEZCR89NDZEM1YFVF5O3X' where id=3; -update noar tt set v0='EPVJTJWUX2J5WJ8POC0' where id=3; -update noar ti set v0='EPVJTJWUX2J5WJ8POC0' where id=3; -update noar tt set b1='XZK8ONZZB38V6XFB4RQY' where id=3; -update noar ti set b1='XZK8ONZZB38V6XFB4RQY' where id=3; -update noar tt set v0='1JVN3HYNHN8VSWLKIDB6JJVH7R4D' where id=3; -update noar ti set v0='1JVN3HYNHN8VSWLKIDB6JJVH7R4D' where id=3; -update noar tt set b2='6BCT9YG7Q' where id=3; -update noar ti set b2='6BCT9YG7Q' where id=3; -update noar tt set v0='KZCKIHDO68' where id=4; -update noar ti set v0='KZCKIHDO68' where id=4; -update noar tt set b0='3ZBSXY8HC6V0V' where id=4; -update noar ti set b0='3ZBSXY8HC6V0V' where id=4; -update noar tt set v0='MDQ0NC6DUQ8RHHMLCTWRNEYJDA61R' where id=4; -update noar ti set v0='MDQ0NC6DUQ8RHHMLCTWRNEYJDA61R' where id=4; -update noar tt set b1='IUR6XIDPH3S53428KL62E' where id=4; -update noar ti set b1='IUR6XIDPH3S53428KL62E' where id=4; -update noar tt set v0='UGG5Q22T71' where id=4; -update noar ti set v0='UGG5Q22T71' where id=4; -update noar tt set b2='I84P493V' where id=4; -update noar ti set b2='I84P493V' where id=4; -update noar tt set v0='3SKVU9U' where id=5; -update noar ti set v0='3SKVU9U' where id=5; -update noar tt set b0='Z8UN8Y6ONX3OVNF9HJ' where id=5; -update noar ti set b0='Z8UN8Y6ONX3OVNF9HJ' where id=5; -update noar tt set v0='ZKN87Y91E92' where id=5; -update noar ti set v0='ZKN87Y91E92' where id=5; -update noar tt set b1='ORNCL32BWWCE0Y7K8H' where id=5; -update noar ti set b1='ORNCL32BWWCE0Y7K8H' where id=5; -update noar tt set v0='1' where id=5; -update noar ti set v0='1' where id=5; -update noar tt set b2='LUZMB9L7EOBP9ECU2JQIL7' where id=5; -update noar ti set b2='LUZMB9L7EOBP9ECU2JQIL7' where id=5; -update noar tt set v0='E6RZC5A1VJ7UNHDZSS806C8Z' where id=6; -update noar ti set v0='E6RZC5A1VJ7UNHDZSS806C8Z' where id=6; -update noar tt set b0='P3IST8MDNY' where id=6; -update noar ti set b0='P3IST8MDNY' where id=6; -update noar tt set v0='XQ5' where id=6; -update noar ti set v0='XQ5' where id=6; -update noar tt set b1='YEYC0C43E6CRC19QASY4VISNRHQZ2C' where id=6; -update noar ti set b1='YEYC0C43E6CRC19QASY4VISNRHQZ2C' where id=6; -update noar tt set v0='OBY0G0PUUJRBQBINB04KOFAI261FIX0' where id=6; -update noar ti set v0='OBY0G0PUUJRBQBINB04KOFAI261FIX0' where id=6; -update noar tt set b2='IHQ7RRK2HRFMT3Y3F22UD' where id=6; -update noar ti set b2='IHQ7RRK2HRFMT3Y3F22UD' where id=6; -update noar tt set v0='MBNPX9BQGA7HQCG6TFJW0CB' where id=7; -update noar ti set v0='MBNPX9BQGA7HQCG6TFJW0CB' where id=7; -update noar tt set b0='LOP4D' where id=7; -update noar ti set b0='LOP4D' where id=7; -update noar tt set v0='YQ6J3XV79NKRAPOWVK4CP7R8Q1ZNIHJ' where id=7; -update noar ti set v0='YQ6J3XV79NKRAPOWVK4CP7R8Q1ZNIHJ' where id=7; -update noar tt set b1='SYPK32' where id=7; -update noar ti set b1='SYPK32' where id=7; -update noar tt set v0='LD' where id=7; -update noar ti set v0='LD' where id=7; -update noar tt set b2='C6AH3YQ7FY5O1SV300TCOA2HRBCRJ8' where id=7; -update noar ti set b2='C6AH3YQ7FY5O1SV300TCOA2HRBCRJ8' where id=7; -update noar tt set v0='SQ0IIA75ERHFB1' where id=8; -update noar ti set v0='SQ0IIA75ERHFB1' where id=8; -update noar tt set b0='M10NQVJL21TE1VR6DV' where id=8; -update noar ti set b0='M10NQVJL21TE1VR6DV' where id=8; -update noar tt set v0='GZKT2DLPN6WW9T499E' where id=8; -update noar ti set v0='GZKT2DLPN6WW9T499E' where id=8; -update noar tt set b1='VE599MSD5X' where id=8; -update noar ti set b1='VE599MSD5X' where id=8; -update noar tt set v0='OVGL29VY68UL038ZGMX0OACD19' where id=8; -update noar ti set v0='OVGL29VY68UL038ZGMX0OACD19' where id=8; -update noar tt set b2='O8GBPNTCFFBS26BMTRPZ729P0PD' where id=8; -update noar ti set b2='O8GBPNTCFFBS26BMTRPZ729P0PD' where id=8; -update noar tt set v0='AJBQCQ0FKGVM3H5ZMW9HFORKK7' where id=9; -update noar ti set v0='AJBQCQ0FKGVM3H5ZMW9HFORKK7' where id=9; -update noar tt set b0='KXTSIXGF' where id=9; -update noar ti set b0='KXTSIXGF' where id=9; -update noar tt set v0='9IVFLPZ2' where id=9; -update noar ti set v0='9IVFLPZ2' where id=9; -update noar tt set b1='AW8YKSIQOKO2DW68K8KAODZB1OVAER6' where id=9; -update noar ti set b1='AW8YKSIQOKO2DW68K8KAODZB1OVAER6' where id=9; -update noar tt set v0='WK8VFMLB16ME5MHHUFY3ZISFDE' where id=9; -update noar ti set v0='WK8VFMLB16ME5MHHUFY3ZISFDE' where id=9; -update noar tt set b2='CRIKIZKM3J025XCCCX1MXO' where id=9; -update noar ti set b2='CRIKIZKM3J025XCCCX1MXO' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - v0 varchar(256) not null, - b0 longblob not null, - b1 mediumblob not null, - b2 longblob not null -) engine=tokudb; -insert into tt values (1,'','','',''); -insert into tt values (2,'','','',''); -insert into tt values (3,'','','',''); -insert into tt values (4,'','','',''); -insert into tt values (5,'','','',''); -insert into tt values (6,'','','',''); -insert into tt values (7,'','','',''); -insert into tt values (8,'','','',''); -insert into tt values (9,'','','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='ZH1TFZ81TLN11R595U8V7X407JGQ68' where id=1; -update noar ti set v0='ZH1TFZ81TLN11R595U8V7X407JGQ68' where id=1; -update noar tt set b0='72LS2M4YJDXD' where id=1; -update noar ti set b0='72LS2M4YJDXD' where id=1; -update noar tt set v0='UWVM8Q6345VJAMSF6T06SYTXZX' where id=1; -update noar ti set v0='UWVM8Q6345VJAMSF6T06SYTXZX' where id=1; -update noar tt set b1='LCYPKWBO8YE6H7GDVQZVCYPDY0A6Y14' where id=1; -update noar ti set b1='LCYPKWBO8YE6H7GDVQZVCYPDY0A6Y14' where id=1; -update noar tt set v0='ZHG308' where id=1; -update noar ti set v0='ZHG308' where id=1; -update noar tt set b2='M0CEW9C' where id=1; -update noar ti set b2='M0CEW9C' where id=1; -update noar tt set v0='VKTY2ZMT4AYDUNHMYK' where id=2; -update noar ti set v0='VKTY2ZMT4AYDUNHMYK' where id=2; -update noar tt set b0='U4R7GFY0VPJSTBLC8W1T1RI7ZI8' where id=2; -update noar ti set b0='U4R7GFY0VPJSTBLC8W1T1RI7ZI8' where id=2; -update noar tt set v0='6XP0J5V' where id=2; -update noar ti set v0='6XP0J5V' where id=2; -update noar tt set b1='2UO54AUG1RFKZ' where id=2; -update noar ti set b1='2UO54AUG1RFKZ' where id=2; -update noar tt set v0='FLMK2O3O7XW1LZVYXSDUVRXACQZRIR' where id=2; -update noar ti set v0='FLMK2O3O7XW1LZVYXSDUVRXACQZRIR' where id=2; -update noar tt set b2='R1XTLNTXROFKYPF40A0Y5K1' where id=2; -update noar ti set b2='R1XTLNTXROFKYPF40A0Y5K1' where id=2; -update noar tt set v0='MHNPHHW7' where id=3; -update noar ti set v0='MHNPHHW7' where id=3; -update noar tt set b0='FS9LSQRKPF77QRDMO4' where id=3; -update noar ti set b0='FS9LSQRKPF77QRDMO4' where id=3; -update noar tt set v0='O9BI0WGMD6YT7R6MPWXX32IH' where id=3; -update noar ti set v0='O9BI0WGMD6YT7R6MPWXX32IH' where id=3; -update noar tt set b1='BGE6F42ZE922TU4SD36VPLJ' where id=3; -update noar ti set b1='BGE6F42ZE922TU4SD36VPLJ' where id=3; -update noar tt set v0='NIEMYE13POB2VIK86Z2EBN5' where id=3; -update noar ti set v0='NIEMYE13POB2VIK86Z2EBN5' where id=3; -update noar tt set b2='3' where id=3; -update noar ti set b2='3' where id=3; -update noar tt set v0='V17V33W179' where id=4; -update noar ti set v0='V17V33W179' where id=4; -update noar tt set b0='KOCJSJYVH0MZ5M19Y8VW' where id=4; -update noar ti set b0='KOCJSJYVH0MZ5M19Y8VW' where id=4; -update noar tt set v0='QZ7X' where id=4; -update noar ti set v0='QZ7X' where id=4; -update noar tt set b1='7IG' where id=4; -update noar ti set b1='7IG' where id=4; -update noar tt set v0='8XRY8VV4' where id=4; -update noar ti set v0='8XRY8VV4' where id=4; -update noar tt set b2='F9KCRAMOX' where id=4; -update noar ti set b2='F9KCRAMOX' where id=4; -update noar tt set v0='BTA69' where id=5; -update noar ti set v0='BTA69' where id=5; -update noar tt set b0='AUSE5LIB1D8J1RUI7CMKD9' where id=5; -update noar ti set b0='AUSE5LIB1D8J1RUI7CMKD9' where id=5; -update noar tt set v0='5RH2LJHDGKEE6OREV4UILWQA' where id=5; -update noar ti set v0='5RH2LJHDGKEE6OREV4UILWQA' where id=5; -update noar tt set b1='3AN82BKB715CQXR6EDY5I5KQ1SR6RQ8J' where id=5; -update noar ti set b1='3AN82BKB715CQXR6EDY5I5KQ1SR6RQ8J' where id=5; -update noar tt set v0='W28OJ9X3C1RLQ3L7KOOP2F7YM' where id=5; -update noar ti set v0='W28OJ9X3C1RLQ3L7KOOP2F7YM' where id=5; -update noar tt set b2='H1PFDRF7WP29AFRHMJZOG5IX0LSVVZ' where id=5; -update noar ti set b2='H1PFDRF7WP29AFRHMJZOG5IX0LSVVZ' where id=5; -update noar tt set v0='RPW5T8FYOPM2TN1JNVZEMA3QXVR5' where id=6; -update noar ti set v0='RPW5T8FYOPM2TN1JNVZEMA3QXVR5' where id=6; -update noar tt set b0='D2EL72ESP446YH' where id=6; -update noar ti set b0='D2EL72ESP446YH' where id=6; -update noar tt set v0='DDOB0SN5HM0FQG4MM70L4BATFQ65TEP' where id=6; -update noar ti set v0='DDOB0SN5HM0FQG4MM70L4BATFQ65TEP' where id=6; -update noar tt set b1='8099L' where id=6; -update noar ti set b1='8099L' where id=6; -update noar tt set v0='20SHNTYE2VMGG9GIXK' where id=6; -update noar ti set v0='20SHNTYE2VMGG9GIXK' where id=6; -update noar tt set b2='KGLOVNR3R5OC6KYSYQZT9Q' where id=6; -update noar ti set b2='KGLOVNR3R5OC6KYSYQZT9Q' where id=6; -update noar tt set v0='HK82FN' where id=7; -update noar ti set v0='HK82FN' where id=7; -update noar tt set b0='I10FAXAQK1EBKFHRZUBZ' where id=7; -update noar ti set b0='I10FAXAQK1EBKFHRZUBZ' where id=7; -update noar tt set v0='BU03' where id=7; -update noar ti set v0='BU03' where id=7; -update noar tt set b1='ZR7XX7HQ0HUCMU851983W275VKM5LQCR' where id=7; -update noar ti set b1='ZR7XX7HQ0HUCMU851983W275VKM5LQCR' where id=7; -update noar tt set v0='PBQVNAGNWP678UAQWV2ONXSBU' where id=7; -update noar ti set v0='PBQVNAGNWP678UAQWV2ONXSBU' where id=7; -update noar tt set b2='TODWD481ZJC2JZ' where id=7; -update noar ti set b2='TODWD481ZJC2JZ' where id=7; -update noar tt set v0='5' where id=8; -update noar ti set v0='5' where id=8; -update noar tt set b0='HQ6J28DAFS64264HEOJUJN0VY' where id=8; -update noar ti set b0='HQ6J28DAFS64264HEOJUJN0VY' where id=8; -update noar tt set v0='MEOTLCQHRL60BPTXT' where id=8; -update noar ti set v0='MEOTLCQHRL60BPTXT' where id=8; -update noar tt set b1='HAXDD6AKW0D1IPY' where id=8; -update noar ti set b1='HAXDD6AKW0D1IPY' where id=8; -update noar tt set v0='NG0MA83UE' where id=8; -update noar ti set v0='NG0MA83UE' where id=8; -update noar tt set b2='WOLTOVV62CCIYYMW1N1D' where id=8; -update noar ti set b2='WOLTOVV62CCIYYMW1N1D' where id=8; -update noar tt set v0='NHL8D5' where id=9; -update noar ti set v0='NHL8D5' where id=9; -update noar tt set b0='T3SPV0RLXMZ5MCYNYW9V' where id=9; -update noar ti set b0='T3SPV0RLXMZ5MCYNYW9V' where id=9; -update noar tt set v0='GVZULKGGT' where id=9; -update noar ti set v0='GVZULKGGT' where id=9; -update noar tt set b1='ZVKGLZN' where id=9; -update noar ti set b1='ZVKGLZN' where id=9; -update noar tt set v0='7838230IEEWPJYQ19Q2XG' where id=9; -update noar ti set v0='7838230IEEWPJYQ19Q2XG' where id=9; -update noar tt set b2='PMVF1TZRSE1JZVSPT7Q41XCT' where id=9; -update noar ti set b2='PMVF1TZRSE1JZVSPT7Q41XCT' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - v0 varchar(32) null, - b0 longblob null, - b1 longblob null, - b2 tinyblob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='LE77E' where id=1; -update noar ti set v0='LE77E' where id=1; -update noar tt set b0='DBLRKONL' where id=1; -update noar ti set b0='DBLRKONL' where id=1; -update noar tt set v0='QWI9VG1K2W5' where id=1; -update noar ti set v0='QWI9VG1K2W5' where id=1; -update noar tt set b1='JIXJDHN6H6SYB0S07QWA58M14WP6' where id=1; -update noar ti set b1='JIXJDHN6H6SYB0S07QWA58M14WP6' where id=1; -update noar tt set v0='TA5IGNDGFGD39RNKCQZQ1S' where id=1; -update noar ti set v0='TA5IGNDGFGD39RNKCQZQ1S' where id=1; -update noar tt set b2='JFRXOZ3TJO4UXEF0T09VSV3' where id=1; -update noar ti set b2='JFRXOZ3TJO4UXEF0T09VSV3' where id=1; -update noar tt set v0='ZYEZJ8K' where id=2; -update noar ti set v0='ZYEZJ8K' where id=2; -update noar tt set b0='WBVUH62MOPZECYHI5559' where id=2; -update noar ti set b0='WBVUH62MOPZECYHI5559' where id=2; -update noar tt set v0='RW56J' where id=2; -update noar ti set v0='RW56J' where id=2; -update noar tt set b1='PRWW5QOHUI20X07RINST1UNJ8V5CJ' where id=2; -update noar ti set b1='PRWW5QOHUI20X07RINST1UNJ8V5CJ' where id=2; -update noar tt set v0='VHGN3IGBLZN' where id=2; -update noar ti set v0='VHGN3IGBLZN' where id=2; -update noar tt set b2='B1RFAYWRDZ3COH8BIBRNZJ1RTMJF8U' where id=2; -update noar ti set b2='B1RFAYWRDZ3COH8BIBRNZJ1RTMJF8U' where id=2; -update noar tt set v0='GJJ3' where id=3; -update noar ti set v0='GJJ3' where id=3; -update noar tt set b0='VNX4VJOINCEV3AALGU90LYDV6B99REE' where id=3; -update noar ti set b0='VNX4VJOINCEV3AALGU90LYDV6B99REE' where id=3; -update noar tt set v0='FRRHASR4A7GADCJWGXMTPBEXS' where id=3; -update noar ti set v0='FRRHASR4A7GADCJWGXMTPBEXS' where id=3; -update noar tt set b1='ZPA8PX60WDY2XKGC2VC9Q6XHJEH' where id=3; -update noar ti set b1='ZPA8PX60WDY2XKGC2VC9Q6XHJEH' where id=3; -update noar tt set v0='WW7W' where id=3; -update noar ti set v0='WW7W' where id=3; -update noar tt set b2='W3MP' where id=3; -update noar ti set b2='W3MP' where id=3; -update noar tt set v0='8NIB1GCG86BDGZZS1FQ3MKNI77RP' where id=4; -update noar ti set v0='8NIB1GCG86BDGZZS1FQ3MKNI77RP' where id=4; -update noar tt set b0='3425PRNQ8SXL1F7YO' where id=4; -update noar ti set b0='3425PRNQ8SXL1F7YO' where id=4; -update noar tt set v0='WTRXLPM7XWJI2OR' where id=4; -update noar ti set v0='WTRXLPM7XWJI2OR' where id=4; -update noar tt set b1='RNP8GVFPPPWG609847B' where id=4; -update noar ti set b1='RNP8GVFPPPWG609847B' where id=4; -update noar tt set v0='8G' where id=4; -update noar ti set v0='8G' where id=4; -update noar tt set b2='X' where id=4; -update noar ti set b2='X' where id=4; -update noar tt set v0='5DK7EGZI9Y' where id=5; -update noar ti set v0='5DK7EGZI9Y' where id=5; -update noar tt set b0='GRGKXIMMHJO94CYJ9MAKE0FK4' where id=5; -update noar ti set b0='GRGKXIMMHJO94CYJ9MAKE0FK4' where id=5; -update noar tt set v0='OR4PX1WF2G' where id=5; -update noar ti set v0='OR4PX1WF2G' where id=5; -update noar tt set b1='POO8IY' where id=5; -update noar ti set b1='POO8IY' where id=5; -update noar tt set v0='89C2MZWNO4926BA7ENZI2ORAQ1IOOI' where id=5; -update noar ti set v0='89C2MZWNO4926BA7ENZI2ORAQ1IOOI' where id=5; -update noar tt set b2='FOKG' where id=5; -update noar ti set b2='FOKG' where id=5; -update noar tt set v0='NY0W0L4K2HJGD81C2X8OCF' where id=6; -update noar ti set v0='NY0W0L4K2HJGD81C2X8OCF' where id=6; -update noar tt set b0='4DUST3OJQ8J3UXKXWPZNYUSDME51PSQ' where id=6; -update noar ti set b0='4DUST3OJQ8J3UXKXWPZNYUSDME51PSQ' where id=6; -update noar tt set v0='1JYIPB1FF5VSXFSGKWB5HP' where id=6; -update noar ti set v0='1JYIPB1FF5VSXFSGKWB5HP' where id=6; -update noar tt set b1='19KHDEA1J25JSYNKJ8DB3MICQ' where id=6; -update noar ti set b1='19KHDEA1J25JSYNKJ8DB3MICQ' where id=6; -update noar tt set v0='ILCEOH1F85WFFQPN' where id=6; -update noar ti set v0='ILCEOH1F85WFFQPN' where id=6; -update noar tt set b2='BDH5PGE1K6R' where id=6; -update noar ti set b2='BDH5PGE1K6R' where id=6; -update noar tt set v0='T5' where id=7; -update noar ti set v0='T5' where id=7; -update noar tt set b0='JRPH' where id=7; -update noar ti set b0='JRPH' where id=7; -update noar tt set v0='X83G5NATI1WK2ACTAVJWJDEVVR5F1' where id=7; -update noar ti set v0='X83G5NATI1WK2ACTAVJWJDEVVR5F1' where id=7; -update noar tt set b1='TOU8LL26' where id=7; -update noar ti set b1='TOU8LL26' where id=7; -update noar tt set v0='O' where id=7; -update noar ti set v0='O' where id=7; -update noar tt set b2='0' where id=7; -update noar ti set b2='0' where id=7; -update noar tt set v0='1S6QQV39EM80' where id=8; -update noar ti set v0='1S6QQV39EM80' where id=8; -update noar tt set b0='0F12G0Z9M7J1RA9UTE2A' where id=8; -update noar ti set b0='0F12G0Z9M7J1RA9UTE2A' where id=8; -update noar tt set v0='STFID1XJJTZUT6RC8X6OMF' where id=8; -update noar ti set v0='STFID1XJJTZUT6RC8X6OMF' where id=8; -update noar tt set b1='51F' where id=8; -update noar ti set b1='51F' where id=8; -update noar tt set v0='O4Z421BB16A6ROXPQKYYWYDY7BHHNUO' where id=8; -update noar ti set v0='O4Z421BB16A6ROXPQKYYWYDY7BHHNUO' where id=8; -update noar tt set b2='7Z6' where id=8; -update noar ti set b2='7Z6' where id=8; -update noar tt set v0='ZYSI' where id=9; -update noar ti set v0='ZYSI' where id=9; -update noar tt set b0='3YEINTO537GEUG03K000RZAYH5Z' where id=9; -update noar ti set b0='3YEINTO537GEUG03K000RZAYH5Z' where id=9; -update noar tt set v0='LSUOEYIHZP2PTA' where id=9; -update noar ti set v0='LSUOEYIHZP2PTA' where id=9; -update noar tt set b1='QDV3MRPS' where id=9; -update noar ti set b1='QDV3MRPS' where id=9; -update noar tt set v0='H50G3PABPMQ6I94LAQAB3N8Y9MA6BVO' where id=9; -update noar ti set v0='H50G3PABPMQ6I94LAQAB3N8Y9MA6BVO' where id=9; -update noar tt set b2='JPGM3T05Z6VFU29585DR' where id=9; -update noar ti set b2='JPGM3T05Z6VFU29585DR' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - v0 varchar(256) null, - b0 longblob null, - b1 longblob null, - b2 tinyblob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='6' where id=1; -update noar ti set v0='6' where id=1; -update noar tt set b0='US4ATMUKEBZM' where id=1; -update noar ti set b0='US4ATMUKEBZM' where id=1; -update noar tt set v0='PO671AYD4PNRQM' where id=1; -update noar ti set v0='PO671AYD4PNRQM' where id=1; -update noar tt set b1='6' where id=1; -update noar ti set b1='6' where id=1; -update noar tt set v0='Y0YKCBOJQ0SPEX0IV6' where id=1; -update noar ti set v0='Y0YKCBOJQ0SPEX0IV6' where id=1; -update noar tt set b2='90E9F' where id=1; -update noar ti set b2='90E9F' where id=1; -update noar tt set v0='WGN4E92CYV4LE3P59S' where id=2; -update noar ti set v0='WGN4E92CYV4LE3P59S' where id=2; -update noar tt set b0='3XJPS7CAN4WRL6527MULO9H8MJ' where id=2; -update noar ti set b0='3XJPS7CAN4WRL6527MULO9H8MJ' where id=2; -update noar tt set v0='KC067CC836LE9C40X7IY6HXPPT' where id=2; -update noar ti set v0='KC067CC836LE9C40X7IY6HXPPT' where id=2; -update noar tt set b1='9238' where id=2; -update noar ti set b1='9238' where id=2; -update noar tt set v0='4KHWURCRKU0ULXCBPIFQEC' where id=2; -update noar ti set v0='4KHWURCRKU0ULXCBPIFQEC' where id=2; -update noar tt set b2='G' where id=2; -update noar ti set b2='G' where id=2; -update noar tt set v0='1NJ7LM61CXS9NQFE7' where id=3; -update noar ti set v0='1NJ7LM61CXS9NQFE7' where id=3; -update noar tt set b0='IX8U1Q3NTKH79B4GSIFT63RK' where id=3; -update noar ti set b0='IX8U1Q3NTKH79B4GSIFT63RK' where id=3; -update noar tt set v0='ZQ685LDAPNZ0MEXGNE9JZ' where id=3; -update noar ti set v0='ZQ685LDAPNZ0MEXGNE9JZ' where id=3; -update noar tt set b1='ZISHL16ER9XK84O4NCKGSC97D4' where id=3; -update noar ti set b1='ZISHL16ER9XK84O4NCKGSC97D4' where id=3; -update noar tt set v0='8' where id=3; -update noar ti set v0='8' where id=3; -update noar tt set b2='RL6JWGO77OXZKLZTHJCE1' where id=3; -update noar ti set b2='RL6JWGO77OXZKLZTHJCE1' where id=3; -update noar tt set v0='KFCF4Y6KMBUIF' where id=4; -update noar ti set v0='KFCF4Y6KMBUIF' where id=4; -update noar tt set b0='4ZT4VCBLOKZH2ETNQQNTP5KV0Y' where id=4; -update noar ti set b0='4ZT4VCBLOKZH2ETNQQNTP5KV0Y' where id=4; -update noar tt set v0='DDOG' where id=4; -update noar ti set v0='DDOG' where id=4; -update noar tt set b1='2UVOD1LZXJGNYDMB' where id=4; -update noar ti set b1='2UVOD1LZXJGNYDMB' where id=4; -update noar tt set v0='SI4REPI8A3JVD21S8JX4HV3YZG1PY3VP' where id=4; -update noar ti set v0='SI4REPI8A3JVD21S8JX4HV3YZG1PY3VP' where id=4; -update noar tt set b2='ZEJ2TRU6LNKLCAHHMAA' where id=4; -update noar ti set b2='ZEJ2TRU6LNKLCAHHMAA' where id=4; -update noar tt set v0='RD42DBX0M0HN5KTZ4BUR6' where id=5; -update noar ti set v0='RD42DBX0M0HN5KTZ4BUR6' where id=5; -update noar tt set b0='Z9E520' where id=5; -update noar ti set b0='Z9E520' where id=5; -update noar tt set v0='0OYSU4Q' where id=5; -update noar ti set v0='0OYSU4Q' where id=5; -update noar tt set b1='7MKYBQJHOO8WC' where id=5; -update noar ti set b1='7MKYBQJHOO8WC' where id=5; -update noar tt set v0='8T6JWTZ6B' where id=5; -update noar ti set v0='8T6JWTZ6B' where id=5; -update noar tt set b2='83H80G45GR3' where id=5; -update noar ti set b2='83H80G45GR3' where id=5; -update noar tt set v0='5DJEHJ4JTX58WUTE' where id=6; -update noar ti set v0='5DJEHJ4JTX58WUTE' where id=6; -update noar tt set b0='JGZT2QS37N9ZEE2SCHI66NGBGNQG87' where id=6; -update noar ti set b0='JGZT2QS37N9ZEE2SCHI66NGBGNQG87' where id=6; -update noar tt set v0='S2UH3F6TXP' where id=6; -update noar ti set v0='S2UH3F6TXP' where id=6; -update noar tt set b1='WQUCJVWWZ14KF' where id=6; -update noar ti set b1='WQUCJVWWZ14KF' where id=6; -update noar tt set v0='UMQ2PJ' where id=6; -update noar ti set v0='UMQ2PJ' where id=6; -update noar tt set b2='CS9M' where id=6; -update noar ti set b2='CS9M' where id=6; -update noar tt set v0='M0Y6KKWGSPE' where id=7; -update noar ti set v0='M0Y6KKWGSPE' where id=7; -update noar tt set b0='4DA5MTAB4N' where id=7; -update noar ti set b0='4DA5MTAB4N' where id=7; -update noar tt set v0='2ARPR017U' where id=7; -update noar ti set v0='2ARPR017U' where id=7; -update noar tt set b1='WB' where id=7; -update noar ti set b1='WB' where id=7; -update noar tt set v0='P0NJ8KPKEFXRR3GCWWY' where id=7; -update noar ti set v0='P0NJ8KPKEFXRR3GCWWY' where id=7; -update noar tt set b2='7GA3' where id=7; -update noar ti set b2='7GA3' where id=7; -update noar tt set v0='18XC4VQW6' where id=8; -update noar ti set v0='18XC4VQW6' where id=8; -update noar tt set b0='V7A4EM87' where id=8; -update noar ti set b0='V7A4EM87' where id=8; -update noar tt set v0='GSDWAGS2XMRFUVKS8Y5NQWLWM5IM4S1B' where id=8; -update noar ti set v0='GSDWAGS2XMRFUVKS8Y5NQWLWM5IM4S1B' where id=8; -update noar tt set b1='CFFZDJSJJQ3C32XVOE9HQ4T' where id=8; -update noar ti set b1='CFFZDJSJJQ3C32XVOE9HQ4T' where id=8; -update noar tt set v0='DZK8O9BTTIWEU7XN84YDESY61' where id=8; -update noar ti set v0='DZK8O9BTTIWEU7XN84YDESY61' where id=8; -update noar tt set b2='3XR7V98QU8SKOPGKXY' where id=8; -update noar ti set b2='3XR7V98QU8SKOPGKXY' where id=8; -update noar tt set v0='FYMG57DSX4PKN60AF7KFIEFZK5XBUG2' where id=9; -update noar ti set v0='FYMG57DSX4PKN60AF7KFIEFZK5XBUG2' where id=9; -update noar tt set b0='3KF' where id=9; -update noar ti set b0='3KF' where id=9; -update noar tt set v0='QJ4' where id=9; -update noar ti set v0='QJ4' where id=9; -update noar tt set b1='7H752FL6HSZ6QCYPPKB8X9Q3MSD' where id=9; -update noar ti set b1='7H752FL6HSZ6QCYPPKB8X9Q3MSD' where id=9; -update noar tt set v0='01H2432K4ELT78BCC5T43VN' where id=9; -update noar ti set v0='01H2432K4ELT78BCC5T43VN' where id=9; -update noar tt set b2='CSN100AKXU2UTC0SKPUHT6D7Q5DOX' where id=9; -update noar ti set b2='CSN100AKXU2UTC0SKPUHT6D7Q5DOX' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - v0 varchar(32) not null, - b0 longblob not null, - b1 longblob not null, - b2 tinyblob not null -) engine=tokudb; -insert into tt values (1,'','','',''); -insert into tt values (2,'','','',''); -insert into tt values (3,'','','',''); -insert into tt values (4,'','','',''); -insert into tt values (5,'','','',''); -insert into tt values (6,'','','',''); -insert into tt values (7,'','','',''); -insert into tt values (8,'','','',''); -insert into tt values (9,'','','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='F3R16IWBI1' where id=1; -update noar ti set v0='F3R16IWBI1' where id=1; -update noar tt set b0='0BNGO0FHP' where id=1; -update noar ti set b0='0BNGO0FHP' where id=1; -update noar tt set v0='GRTFJROM63ED8P8C8QXV98' where id=1; -update noar ti set v0='GRTFJROM63ED8P8C8QXV98' where id=1; -update noar tt set b1='NE7EGR10V3AEJPHMOKOPJAU17N5K' where id=1; -update noar ti set b1='NE7EGR10V3AEJPHMOKOPJAU17N5K' where id=1; -update noar tt set v0='BD4AHS' where id=1; -update noar ti set v0='BD4AHS' where id=1; -update noar tt set b2='R23B3AF19AC9YE' where id=1; -update noar ti set b2='R23B3AF19AC9YE' where id=1; -update noar tt set v0='3XLCF7QRZCAW1K8F90' where id=2; -update noar ti set v0='3XLCF7QRZCAW1K8F90' where id=2; -update noar tt set b0='IBA8CC5BQCVCSGVZG' where id=2; -update noar ti set b0='IBA8CC5BQCVCSGVZG' where id=2; -update noar tt set v0='UR1UEW9X58ZK3LB4KE2AQ' where id=2; -update noar ti set v0='UR1UEW9X58ZK3LB4KE2AQ' where id=2; -update noar tt set b1='U41DLMCW8' where id=2; -update noar ti set b1='U41DLMCW8' where id=2; -update noar tt set v0='0E703N2IH3ZBEKNR7R3J' where id=2; -update noar ti set v0='0E703N2IH3ZBEKNR7R3J' where id=2; -update noar tt set b2='OZ5PX8VJGD1L3094FKJDOZOW1D2' where id=2; -update noar ti set b2='OZ5PX8VJGD1L3094FKJDOZOW1D2' where id=2; -update noar tt set v0='7ZG2WNP5K5Z3HH7T6U8LJT91' where id=3; -update noar ti set v0='7ZG2WNP5K5Z3HH7T6U8LJT91' where id=3; -update noar tt set b0='HG4DF0D4BP15FNBIVIQ2KCWLMFQI' where id=3; -update noar ti set b0='HG4DF0D4BP15FNBIVIQ2KCWLMFQI' where id=3; -update noar tt set v0='TV3E8S9' where id=3; -update noar ti set v0='TV3E8S9' where id=3; -update noar tt set b1='XO037GKYSAGDK26NTX2JIYVR6' where id=3; -update noar ti set b1='XO037GKYSAGDK26NTX2JIYVR6' where id=3; -update noar tt set v0='UGFO65AWN0EJZUT3COQPLSEHN6' where id=3; -update noar ti set v0='UGFO65AWN0EJZUT3COQPLSEHN6' where id=3; -update noar tt set b2='PD46IS543T' where id=3; -update noar ti set b2='PD46IS543T' where id=3; -update noar tt set v0='S6JUY3V9' where id=4; -update noar ti set v0='S6JUY3V9' where id=4; -update noar tt set b0='FBRYCZ06YHTNN1YDLYACW7SSR5EHEQS' where id=4; -update noar ti set b0='FBRYCZ06YHTNN1YDLYACW7SSR5EHEQS' where id=4; -update noar tt set v0='EE7X2LFKGKW' where id=4; -update noar ti set v0='EE7X2LFKGKW' where id=4; -update noar tt set b1='7' where id=4; -update noar ti set b1='7' where id=4; -update noar tt set v0='5A9' where id=4; -update noar ti set v0='5A9' where id=4; -update noar tt set b2='IYZ2Q6VZREMCZRO4SAS4DOUJ7QGTNVP' where id=4; -update noar ti set b2='IYZ2Q6VZREMCZRO4SAS4DOUJ7QGTNVP' where id=4; -update noar tt set v0='B0CHY56DVWKWY8F8IC7TTTZMSOP1' where id=5; -update noar ti set v0='B0CHY56DVWKWY8F8IC7TTTZMSOP1' where id=5; -update noar tt set b0='2SASR7' where id=5; -update noar ti set b0='2SASR7' where id=5; -update noar tt set v0='XKISCEET6LG' where id=5; -update noar ti set v0='XKISCEET6LG' where id=5; -update noar tt set b1='DR9GPRNQH9KEV0LYG3F3' where id=5; -update noar ti set b1='DR9GPRNQH9KEV0LYG3F3' where id=5; -update noar tt set v0='II7LOD36CAR2HNTGBENX' where id=5; -update noar ti set v0='II7LOD36CAR2HNTGBENX' where id=5; -update noar tt set b2='MBY5RCYSH' where id=5; -update noar ti set b2='MBY5RCYSH' where id=5; -update noar tt set v0='GVJWR7KC9TCY2KIR4I5YW' where id=6; -update noar ti set v0='GVJWR7KC9TCY2KIR4I5YW' where id=6; -update noar tt set b0='L0570NIN17TQ0VKC' where id=6; -update noar ti set b0='L0570NIN17TQ0VKC' where id=6; -update noar tt set v0='7O7JSUFYHN0S4WRCDIRD' where id=6; -update noar ti set v0='7O7JSUFYHN0S4WRCDIRD' where id=6; -update noar tt set b1='NFSIFRK126XXUNAG38MMX6Q5QOEZ0W' where id=6; -update noar ti set b1='NFSIFRK126XXUNAG38MMX6Q5QOEZ0W' where id=6; -update noar tt set v0='NSP' where id=6; -update noar ti set v0='NSP' where id=6; -update noar tt set b2='IYI1B13P3D0B7JJCN' where id=6; -update noar ti set b2='IYI1B13P3D0B7JJCN' where id=6; -update noar tt set v0='JXC4' where id=7; -update noar ti set v0='JXC4' where id=7; -update noar tt set b0='XPQTVJGJ8TNR3YT0D' where id=7; -update noar ti set b0='XPQTVJGJ8TNR3YT0D' where id=7; -update noar tt set v0='CUN4NTDZKRXWS5Q9M7CER' where id=7; -update noar ti set v0='CUN4NTDZKRXWS5Q9M7CER' where id=7; -update noar tt set b1='G8DHXTSGNXUW' where id=7; -update noar ti set b1='G8DHXTSGNXUW' where id=7; -update noar tt set v0='SUPO4N75K8' where id=7; -update noar ti set v0='SUPO4N75K8' where id=7; -update noar tt set b2='MRHFYKI' where id=7; -update noar ti set b2='MRHFYKI' where id=7; -update noar tt set v0='MTC5F1VCOEHNDPRY' where id=8; -update noar ti set v0='MTC5F1VCOEHNDPRY' where id=8; -update noar tt set b0='Z2551V8D2' where id=8; -update noar ti set b0='Z2551V8D2' where id=8; -update noar tt set v0='C034Y5CZBZ28RLGCK3XUO' where id=8; -update noar ti set v0='C034Y5CZBZ28RLGCK3XUO' where id=8; -update noar tt set b1='FXDRZE82LX' where id=8; -update noar ti set b1='FXDRZE82LX' where id=8; -update noar tt set v0='MHSJFLU' where id=8; -update noar ti set v0='MHSJFLU' where id=8; -update noar tt set b2='G6YUGUA83DX3X7F2YMO5P4L5' where id=8; -update noar ti set b2='G6YUGUA83DX3X7F2YMO5P4L5' where id=8; -update noar tt set v0='4RSFIHB7O0' where id=9; -update noar ti set v0='4RSFIHB7O0' where id=9; -update noar tt set b0='9TA' where id=9; -update noar ti set b0='9TA' where id=9; -update noar tt set v0='4XPAK' where id=9; -update noar ti set v0='4XPAK' where id=9; -update noar tt set b1='VFP2O' where id=9; -update noar ti set b1='VFP2O' where id=9; -update noar tt set v0='YSZFP4XUUNYF7HLHH9RR' where id=9; -update noar ti set v0='YSZFP4XUUNYF7HLHH9RR' where id=9; -update noar tt set b2='OZ92E63NCPEC9J2' where id=9; -update noar ti set b2='OZ92E63NCPEC9J2' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - v0 varchar(256) not null, - b0 longblob not null, - b1 longblob not null, - b2 tinyblob not null -) engine=tokudb; -insert into tt values (1,'','','',''); -insert into tt values (2,'','','',''); -insert into tt values (3,'','','',''); -insert into tt values (4,'','','',''); -insert into tt values (5,'','','',''); -insert into tt values (6,'','','',''); -insert into tt values (7,'','','',''); -insert into tt values (8,'','','',''); -insert into tt values (9,'','','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='NP4IKXAT99YOZVHRFT' where id=1; -update noar ti set v0='NP4IKXAT99YOZVHRFT' where id=1; -update noar tt set b0='Y7SYCX8W3' where id=1; -update noar ti set b0='Y7SYCX8W3' where id=1; -update noar tt set v0='C3H85HL2VOQ7KOPFHVW' where id=1; -update noar ti set v0='C3H85HL2VOQ7KOPFHVW' where id=1; -update noar tt set b1='ZBRD2' where id=1; -update noar ti set b1='ZBRD2' where id=1; -update noar tt set v0='D94' where id=1; -update noar ti set v0='D94' where id=1; -update noar tt set b2='Q45AV1HPLZZXZCIJQNC75IW9AVQ500JP' where id=1; -update noar ti set b2='Q45AV1HPLZZXZCIJQNC75IW9AVQ500JP' where id=1; -update noar tt set v0='0TQX0E5QUPPJEWPA075R3XZW2XNA' where id=2; -update noar ti set v0='0TQX0E5QUPPJEWPA075R3XZW2XNA' where id=2; -update noar tt set b0='4IRR5MMCRE9EHZV9TC7Z6CAPQNC1DD5H' where id=2; -update noar ti set b0='4IRR5MMCRE9EHZV9TC7Z6CAPQNC1DD5H' where id=2; -update noar tt set v0='BMYDWE8N65CZUXJMUJLQSRZO8YBF' where id=2; -update noar ti set v0='BMYDWE8N65CZUXJMUJLQSRZO8YBF' where id=2; -update noar tt set b1='QJZ' where id=2; -update noar ti set b1='QJZ' where id=2; -update noar tt set v0='I0KEDT2TTTC9WC4E0X2V3ZQOMMK' where id=2; -update noar ti set v0='I0KEDT2TTTC9WC4E0X2V3ZQOMMK' where id=2; -update noar tt set b2='B96X7N' where id=2; -update noar ti set b2='B96X7N' where id=2; -update noar tt set v0='9OA0JWUY9NYTZRO37SSYS49GJI7E14JU' where id=3; -update noar ti set v0='9OA0JWUY9NYTZRO37SSYS49GJI7E14JU' where id=3; -update noar tt set b0='T' where id=3; -update noar ti set b0='T' where id=3; -update noar tt set v0='Q6PD5P39JFEDMLL8TQTYAH1Y' where id=3; -update noar ti set v0='Q6PD5P39JFEDMLL8TQTYAH1Y' where id=3; -update noar tt set b1='SEQL908JJ3' where id=3; -update noar ti set b1='SEQL908JJ3' where id=3; -update noar tt set v0='94DWF5EFS2GAA6XADVR2Y' where id=3; -update noar ti set v0='94DWF5EFS2GAA6XADVR2Y' where id=3; -update noar tt set b2='6KW' where id=3; -update noar ti set b2='6KW' where id=3; -update noar tt set v0='DYAW77E3ZXD6N6PDS0HLFPUKQH4' where id=4; -update noar ti set v0='DYAW77E3ZXD6N6PDS0HLFPUKQH4' where id=4; -update noar tt set b0='97CC0OR4GU5YW34O9G3WE' where id=4; -update noar ti set b0='97CC0OR4GU5YW34O9G3WE' where id=4; -update noar tt set v0='G4C05B3MZO2QV00LI54DTFWFTJ77N652' where id=4; -update noar ti set v0='G4C05B3MZO2QV00LI54DTFWFTJ77N652' where id=4; -update noar tt set b1='2I04' where id=4; -update noar ti set b1='2I04' where id=4; -update noar tt set v0='XB7YSPC1' where id=4; -update noar ti set v0='XB7YSPC1' where id=4; -update noar tt set b2='ZI' where id=4; -update noar ti set b2='ZI' where id=4; -update noar tt set v0='4ORML134L4E7OV1' where id=5; -update noar ti set v0='4ORML134L4E7OV1' where id=5; -update noar tt set b0='0JQN0BUBFCF3LVNHIULT80SJMA1OB9A8' where id=5; -update noar ti set b0='0JQN0BUBFCF3LVNHIULT80SJMA1OB9A8' where id=5; -update noar tt set v0='6WNA1' where id=5; -update noar ti set v0='6WNA1' where id=5; -update noar tt set b1='KH2N21FZBVVNXT' where id=5; -update noar ti set b1='KH2N21FZBVVNXT' where id=5; -update noar tt set v0='71NU42PJCX40QBX' where id=5; -update noar ti set v0='71NU42PJCX40QBX' where id=5; -update noar tt set b2='OKT389OSLS8FGB4QWOHEJMKZQI751P' where id=5; -update noar ti set b2='OKT389OSLS8FGB4QWOHEJMKZQI751P' where id=5; -update noar tt set v0='DAFL6DFK' where id=6; -update noar ti set v0='DAFL6DFK' where id=6; -update noar tt set b0='TC0Y' where id=6; -update noar ti set b0='TC0Y' where id=6; -update noar tt set v0='PAP5Q5FU41ZKMAYUOU0Q50NOXKTQI' where id=6; -update noar ti set v0='PAP5Q5FU41ZKMAYUOU0Q50NOXKTQI' where id=6; -update noar tt set b1='5LPAKVBZ6H9QA24' where id=6; -update noar ti set b1='5LPAKVBZ6H9QA24' where id=6; -update noar tt set v0='ZITMKAM5BP9YCF0K' where id=6; -update noar ti set v0='ZITMKAM5BP9YCF0K' where id=6; -update noar tt set b2='KV6I8KFCOK' where id=6; -update noar ti set b2='KV6I8KFCOK' where id=6; -update noar tt set v0='3E559JVFAS' where id=7; -update noar ti set v0='3E559JVFAS' where id=7; -update noar tt set b0='3KSY9DVQRV95BIS5C7QNRXPB6' where id=7; -update noar ti set b0='3KSY9DVQRV95BIS5C7QNRXPB6' where id=7; -update noar tt set v0='WWJL5UQ' where id=7; -update noar ti set v0='WWJL5UQ' where id=7; -update noar tt set b1='KWL1BKB1L07N797' where id=7; -update noar ti set b1='KWL1BKB1L07N797' where id=7; -update noar tt set v0='4HFM5SHP3WNPI9J51JNBQPYBVR' where id=7; -update noar ti set v0='4HFM5SHP3WNPI9J51JNBQPYBVR' where id=7; -update noar tt set b2='GUI7C' where id=7; -update noar ti set b2='GUI7C' where id=7; -update noar tt set v0='249V3Y78FFR2WB6UYWTY' where id=8; -update noar ti set v0='249V3Y78FFR2WB6UYWTY' where id=8; -update noar tt set b0='HY5ECNKUT2FI' where id=8; -update noar ti set b0='HY5ECNKUT2FI' where id=8; -update noar tt set v0='4HU4W7R10OMZSZO21X2' where id=8; -update noar ti set v0='4HU4W7R10OMZSZO21X2' where id=8; -update noar tt set b1='D67TG1' where id=8; -update noar ti set b1='D67TG1' where id=8; -update noar tt set v0='4ZN6MOOH3K4UAA55MK7PLQ1MPE' where id=8; -update noar ti set v0='4ZN6MOOH3K4UAA55MK7PLQ1MPE' where id=8; -update noar tt set b2='3151T5O' where id=8; -update noar ti set b2='3151T5O' where id=8; -update noar tt set v0='6HFX' where id=9; -update noar ti set v0='6HFX' where id=9; -update noar tt set b0='FUNLX89' where id=9; -update noar ti set b0='FUNLX89' where id=9; -update noar tt set v0='0JQV4OSSB6VPP9TJDUO1IUHAO8FEXU' where id=9; -update noar ti set v0='0JQV4OSSB6VPP9TJDUO1IUHAO8FEXU' where id=9; -update noar tt set b1='O87L8MBFS6SRJ2J4U9K' where id=9; -update noar ti set b1='O87L8MBFS6SRJ2J4U9K' where id=9; -update noar tt set v0='NLKEWRS0SKVW2KJF7M1EJTF0Y' where id=9; -update noar ti set v0='NLKEWRS0SKVW2KJF7M1EJTF0Y' where id=9; -update noar tt set b2='R7PGHEL' where id=9; -update noar ti set b2='R7PGHEL' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - v0 varchar(32) null, - b0 longblob null, - b1 longblob null, - b2 blob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='F72NWFY051JONVM1E4N4' where id=1; -update noar ti set v0='F72NWFY051JONVM1E4N4' where id=1; -update noar tt set b0='YKE1' where id=1; -update noar ti set b0='YKE1' where id=1; -update noar tt set v0='CXGL1OZJ5' where id=1; -update noar ti set v0='CXGL1OZJ5' where id=1; -update noar tt set b1='SOERUCNZTM1NTX1OASE7EI2L' where id=1; -update noar ti set b1='SOERUCNZTM1NTX1OASE7EI2L' where id=1; -update noar tt set v0='62DTN052LY5T7DKUG22YHGM' where id=1; -update noar ti set v0='62DTN052LY5T7DKUG22YHGM' where id=1; -update noar tt set b2='YFDP5VKSGP3QA3B' where id=1; -update noar ti set b2='YFDP5VKSGP3QA3B' where id=1; -update noar tt set v0='YH06LB1JEHMHO3U4EULLC69LK' where id=2; -update noar ti set v0='YH06LB1JEHMHO3U4EULLC69LK' where id=2; -update noar tt set b0='MQZBZP' where id=2; -update noar ti set b0='MQZBZP' where id=2; -update noar tt set v0='JFYGTWN40CT45B7GGYUTR' where id=2; -update noar ti set v0='JFYGTWN40CT45B7GGYUTR' where id=2; -update noar tt set b1='A8IAETVWRULGUMQX2E' where id=2; -update noar ti set b1='A8IAETVWRULGUMQX2E' where id=2; -update noar tt set v0='LJM4LCIEQ4WA61CL' where id=2; -update noar ti set v0='LJM4LCIEQ4WA61CL' where id=2; -update noar tt set b2='AJNR9KA606I0WEINCS1RLZ0M8208K' where id=2; -update noar ti set b2='AJNR9KA606I0WEINCS1RLZ0M8208K' where id=2; -update noar tt set v0='GUFJ' where id=3; -update noar ti set v0='GUFJ' where id=3; -update noar tt set b0='FMZ7LUVCL' where id=3; -update noar ti set b0='FMZ7LUVCL' where id=3; -update noar tt set v0='IGZA3P9YU6BLG44' where id=3; -update noar ti set v0='IGZA3P9YU6BLG44' where id=3; -update noar tt set b1='0AHRCNFSY928W' where id=3; -update noar ti set b1='0AHRCNFSY928W' where id=3; -update noar tt set v0='1LBZ3F4M' where id=3; -update noar ti set v0='1LBZ3F4M' where id=3; -update noar tt set b2='NM6YBTZN8WTGGAL4ZE' where id=3; -update noar ti set b2='NM6YBTZN8WTGGAL4ZE' where id=3; -update noar tt set v0='WSK' where id=4; -update noar ti set v0='WSK' where id=4; -update noar tt set b0='4IMKPEC354BD' where id=4; -update noar ti set b0='4IMKPEC354BD' where id=4; -update noar tt set v0='9KEY9LRGNX45UJ4MVAB5Y629B5VCJCH' where id=4; -update noar ti set v0='9KEY9LRGNX45UJ4MVAB5Y629B5VCJCH' where id=4; -update noar tt set b1='O8QEPCSCVG4TN8RE0P00M' where id=4; -update noar ti set b1='O8QEPCSCVG4TN8RE0P00M' where id=4; -update noar tt set v0='CDHA8OVJSBNV2' where id=4; -update noar ti set v0='CDHA8OVJSBNV2' where id=4; -update noar tt set b2='83TIOFSKYE89SBDFE7PPIC3IN1KQULT' where id=4; -update noar ti set b2='83TIOFSKYE89SBDFE7PPIC3IN1KQULT' where id=4; -update noar tt set v0='PDNQREAX4YAFDZST4' where id=5; -update noar ti set v0='PDNQREAX4YAFDZST4' where id=5; -update noar tt set b0='D3' where id=5; -update noar ti set b0='D3' where id=5; -update noar tt set v0='2WQ3NXOXYKC63AGL9JPA6H9FJP0P' where id=5; -update noar ti set v0='2WQ3NXOXYKC63AGL9JPA6H9FJP0P' where id=5; -update noar tt set b1='ONWN6' where id=5; -update noar ti set b1='ONWN6' where id=5; -update noar tt set v0='Z63OYWP1' where id=5; -update noar ti set v0='Z63OYWP1' where id=5; -update noar tt set b2='08GFNMGE2CN569GFG0ZO4IOCIEJRQ6E' where id=5; -update noar ti set b2='08GFNMGE2CN569GFG0ZO4IOCIEJRQ6E' where id=5; -update noar tt set v0='F11EJ73DUP397PSBXDZEJ7Z' where id=6; -update noar ti set v0='F11EJ73DUP397PSBXDZEJ7Z' where id=6; -update noar tt set b0='68ITH8MZV5VM3FGPKJ5EK1PGCO3MA' where id=6; -update noar ti set b0='68ITH8MZV5VM3FGPKJ5EK1PGCO3MA' where id=6; -update noar tt set v0='KNEK' where id=6; -update noar ti set v0='KNEK' where id=6; -update noar tt set b1='EBLGZXZL362MTG38JZGQU8JQ' where id=6; -update noar ti set b1='EBLGZXZL362MTG38JZGQU8JQ' where id=6; -update noar tt set v0='21DPG0O26YEMF722QXIOHI' where id=6; -update noar ti set v0='21DPG0O26YEMF722QXIOHI' where id=6; -update noar tt set b2='U9LV8NADTRY35NL17HWW137' where id=6; -update noar ti set b2='U9LV8NADTRY35NL17HWW137' where id=6; -update noar tt set v0='UAC629SBMJLSN1QR1M' where id=7; -update noar ti set v0='UAC629SBMJLSN1QR1M' where id=7; -update noar tt set b0='LWIQ3DHPERZ8GW9YCL644FS7L53T' where id=7; -update noar ti set b0='LWIQ3DHPERZ8GW9YCL644FS7L53T' where id=7; -update noar tt set v0='KHDNXO0YUBC' where id=7; -update noar ti set v0='KHDNXO0YUBC' where id=7; -update noar tt set b1='1DYRKIZMDUTKHR009JNJ0TSKYUSVQCT' where id=7; -update noar ti set b1='1DYRKIZMDUTKHR009JNJ0TSKYUSVQCT' where id=7; -update noar tt set v0='1TP2B6JG4GHVDR05QNTVFFIBV2YT' where id=7; -update noar ti set v0='1TP2B6JG4GHVDR05QNTVFFIBV2YT' where id=7; -update noar tt set b2='1N' where id=7; -update noar ti set b2='1N' where id=7; -update noar tt set v0='EPHKTPAMZSO9VD' where id=8; -update noar ti set v0='EPHKTPAMZSO9VD' where id=8; -update noar tt set b0='UCTP1PB4S37LMC11O4SG' where id=8; -update noar ti set b0='UCTP1PB4S37LMC11O4SG' where id=8; -update noar tt set v0='Z72ZKRJ80GXAKD9XC' where id=8; -update noar ti set v0='Z72ZKRJ80GXAKD9XC' where id=8; -update noar tt set b1='424GFORQPN7IFY9WXF75' where id=8; -update noar ti set b1='424GFORQPN7IFY9WXF75' where id=8; -update noar tt set v0='DXL2TJAZ76S' where id=8; -update noar ti set v0='DXL2TJAZ76S' where id=8; -update noar tt set b2='7VMAGJF9654ODDIF6Y' where id=8; -update noar ti set b2='7VMAGJF9654ODDIF6Y' where id=8; -update noar tt set v0='PE2LA6KP2AQ3XYZ16XVL4GFE' where id=9; -update noar ti set v0='PE2LA6KP2AQ3XYZ16XVL4GFE' where id=9; -update noar tt set b0='Q620B3726' where id=9; -update noar ti set b0='Q620B3726' where id=9; -update noar tt set v0='LSZK5M0CR46TQM7J7202' where id=9; -update noar ti set v0='LSZK5M0CR46TQM7J7202' where id=9; -update noar tt set b1='PN1AEX4113G2MWG6T2TE749' where id=9; -update noar ti set b1='PN1AEX4113G2MWG6T2TE749' where id=9; -update noar tt set v0='05CRYOREIPFEI2TTFVQ4SD4GLU7EL9' where id=9; -update noar ti set v0='05CRYOREIPFEI2TTFVQ4SD4GLU7EL9' where id=9; -update noar tt set b2='9AMN88PAHTXOJT780AOVYR4' where id=9; -update noar ti set b2='9AMN88PAHTXOJT780AOVYR4' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - v0 varchar(256) null, - b0 longblob null, - b1 longblob null, - b2 blob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='APLZI' where id=1; -update noar ti set v0='APLZI' where id=1; -update noar tt set b0='S9MZ4WBPJ1ELTXHYXU6751NX165H9K' where id=1; -update noar ti set b0='S9MZ4WBPJ1ELTXHYXU6751NX165H9K' where id=1; -update noar tt set v0='I4V63LCSQ' where id=1; -update noar ti set v0='I4V63LCSQ' where id=1; -update noar tt set b1='MHQJC9NV7C8Y0XM' where id=1; -update noar ti set b1='MHQJC9NV7C8Y0XM' where id=1; -update noar tt set v0='R0Q5TLCM4E' where id=1; -update noar ti set v0='R0Q5TLCM4E' where id=1; -update noar tt set b2='01W3U47FLDXU' where id=1; -update noar ti set b2='01W3U47FLDXU' where id=1; -update noar tt set v0='A4U7B4LAI3FDVAT7UG25TZATDXYT' where id=2; -update noar ti set v0='A4U7B4LAI3FDVAT7UG25TZATDXYT' where id=2; -update noar tt set b0='H19OVWEIZV0L4ZPU' where id=2; -update noar ti set b0='H19OVWEIZV0L4ZPU' where id=2; -update noar tt set v0='8QXDGL1YI17WMRX2X8' where id=2; -update noar ti set v0='8QXDGL1YI17WMRX2X8' where id=2; -update noar tt set b1='SNSJ1OA' where id=2; -update noar ti set b1='SNSJ1OA' where id=2; -update noar tt set v0='ACAKCLR0Z' where id=2; -update noar ti set v0='ACAKCLR0Z' where id=2; -update noar tt set b2='GKW8' where id=2; -update noar ti set b2='GKW8' where id=2; -update noar tt set v0='GORMU1E6O4SZF5N' where id=3; -update noar ti set v0='GORMU1E6O4SZF5N' where id=3; -update noar tt set b0='0B1QFQWK4QIYQUD9YLN6' where id=3; -update noar ti set b0='0B1QFQWK4QIYQUD9YLN6' where id=3; -update noar tt set v0='M4F2ZS8S5ED6' where id=3; -update noar ti set v0='M4F2ZS8S5ED6' where id=3; -update noar tt set b1='19PJZNZ7XSTA4F218O204ZI1R4' where id=3; -update noar ti set b1='19PJZNZ7XSTA4F218O204ZI1R4' where id=3; -update noar tt set v0='AR8GF7OXRV3VYBOG8ECQLP64S7' where id=3; -update noar ti set v0='AR8GF7OXRV3VYBOG8ECQLP64S7' where id=3; -update noar tt set b2='JXRWRAFA0XCIEC6HIW9HG27C' where id=3; -update noar ti set b2='JXRWRAFA0XCIEC6HIW9HG27C' where id=3; -update noar tt set v0='Z3XLULRTTIJYE86ZZ1LFLU3Z' where id=4; -update noar ti set v0='Z3XLULRTTIJYE86ZZ1LFLU3Z' where id=4; -update noar tt set b0='1' where id=4; -update noar ti set b0='1' where id=4; -update noar tt set v0='225NUVBNSANXY8FXQ' where id=4; -update noar ti set v0='225NUVBNSANXY8FXQ' where id=4; -update noar tt set b1='40CCS0V14AQYGU3HUV0' where id=4; -update noar ti set b1='40CCS0V14AQYGU3HUV0' where id=4; -update noar tt set v0='XE9IQE9RG5F0F' where id=4; -update noar ti set v0='XE9IQE9RG5F0F' where id=4; -update noar tt set b2='YU5YRK0M3JA5U4FHN1XJUMVFGW' where id=4; -update noar ti set b2='YU5YRK0M3JA5U4FHN1XJUMVFGW' where id=4; -update noar tt set v0='THQDSFZFBIRX1QA0I2QLMDO5ZCCGPLRI' where id=5; -update noar ti set v0='THQDSFZFBIRX1QA0I2QLMDO5ZCCGPLRI' where id=5; -update noar tt set b0='157GH41KBMXQ1NB86SI8' where id=5; -update noar ti set b0='157GH41KBMXQ1NB86SI8' where id=5; -update noar tt set v0='E69RBLXP6GE3SZ7NA1Y8' where id=5; -update noar ti set v0='E69RBLXP6GE3SZ7NA1Y8' where id=5; -update noar tt set b1='CJI5CKES00ZEUFRDICA67' where id=5; -update noar ti set b1='CJI5CKES00ZEUFRDICA67' where id=5; -update noar tt set v0='I0P6UW01XIQ3WUNIR' where id=5; -update noar ti set v0='I0P6UW01XIQ3WUNIR' where id=5; -update noar tt set b2='E7' where id=5; -update noar ti set b2='E7' where id=5; -update noar tt set v0='5CWTITYB30POBA565D17PZGT1TFT311' where id=6; -update noar ti set v0='5CWTITYB30POBA565D17PZGT1TFT311' where id=6; -update noar tt set b0='O1HKAN2KDVFHRWKVV' where id=6; -update noar ti set b0='O1HKAN2KDVFHRWKVV' where id=6; -update noar tt set v0='P1U732XALDLCKC4VGJCBWSL2TEJ4ISD1' where id=6; -update noar ti set v0='P1U732XALDLCKC4VGJCBWSL2TEJ4ISD1' where id=6; -update noar tt set b1='45XI' where id=6; -update noar ti set b1='45XI' where id=6; -update noar tt set v0='ZE08WAVCCXIMXEKIYVJQ3Q0' where id=6; -update noar ti set v0='ZE08WAVCCXIMXEKIYVJQ3Q0' where id=6; -update noar tt set b2='TFH0198RJO7L' where id=6; -update noar ti set b2='TFH0198RJO7L' where id=6; -update noar tt set v0='3Z' where id=7; -update noar ti set v0='3Z' where id=7; -update noar tt set b0='XJA96B06L9AP97TX' where id=7; -update noar ti set b0='XJA96B06L9AP97TX' where id=7; -update noar tt set v0='64TJ2GMIHOYE' where id=7; -update noar ti set v0='64TJ2GMIHOYE' where id=7; -update noar tt set b1='5CDAHJ' where id=7; -update noar ti set b1='5CDAHJ' where id=7; -update noar tt set v0='5EPYCKMEP5OQYXZ67' where id=7; -update noar ti set v0='5EPYCKMEP5OQYXZ67' where id=7; -update noar tt set b2='1KW5SQH3O1C9MVVNGLA92EOQ15HAB8IY' where id=7; -update noar ti set b2='1KW5SQH3O1C9MVVNGLA92EOQ15HAB8IY' where id=7; -update noar tt set v0='1YDMMK99RLONRIEHZC8JUS' where id=8; -update noar ti set v0='1YDMMK99RLONRIEHZC8JUS' where id=8; -update noar tt set b0='0HE327ETWP8ZYGQ8DXS' where id=8; -update noar ti set b0='0HE327ETWP8ZYGQ8DXS' where id=8; -update noar tt set v0='AQ852028Z1Y9FYITIHTM' where id=8; -update noar ti set v0='AQ852028Z1Y9FYITIHTM' where id=8; -update noar tt set b1='3DXVPJW8Y8' where id=8; -update noar ti set b1='3DXVPJW8Y8' where id=8; -update noar tt set v0='IN' where id=8; -update noar ti set v0='IN' where id=8; -update noar tt set b2='SOI73ZNUPWHTSW' where id=8; -update noar ti set b2='SOI73ZNUPWHTSW' where id=8; -update noar tt set v0='83868FRCEWWI' where id=9; -update noar ti set v0='83868FRCEWWI' where id=9; -update noar tt set b0='8N76N1ZG6KIHHUVUB73GDVZGN738A' where id=9; -update noar ti set b0='8N76N1ZG6KIHHUVUB73GDVZGN738A' where id=9; -update noar tt set v0='E8YAGGTRWYS' where id=9; -update noar ti set v0='E8YAGGTRWYS' where id=9; -update noar tt set b1='SGEATI51WWWYV6BDT' where id=9; -update noar ti set b1='SGEATI51WWWYV6BDT' where id=9; -update noar tt set v0='2' where id=9; -update noar ti set v0='2' where id=9; -update noar tt set b2='6' where id=9; -update noar ti set b2='6' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - v0 varchar(32) not null, - b0 longblob not null, - b1 longblob not null, - b2 blob not null -) engine=tokudb; -insert into tt values (1,'','','',''); -insert into tt values (2,'','','',''); -insert into tt values (3,'','','',''); -insert into tt values (4,'','','',''); -insert into tt values (5,'','','',''); -insert into tt values (6,'','','',''); -insert into tt values (7,'','','',''); -insert into tt values (8,'','','',''); -insert into tt values (9,'','','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='6ZBNVKOG3W6NX4RB' where id=1; -update noar ti set v0='6ZBNVKOG3W6NX4RB' where id=1; -update noar tt set b0='QX8O7MA5URA98KP94' where id=1; -update noar ti set b0='QX8O7MA5URA98KP94' where id=1; -update noar tt set v0='G1RI' where id=1; -update noar ti set v0='G1RI' where id=1; -update noar tt set b1='AMIUUG4FC5JLMTQTFNQOM' where id=1; -update noar ti set b1='AMIUUG4FC5JLMTQTFNQOM' where id=1; -update noar tt set v0='5SOZSZ9ORSJFQ3DB661DEI5R' where id=1; -update noar ti set v0='5SOZSZ9ORSJFQ3DB661DEI5R' where id=1; -update noar tt set b2='1GT4K11JD1UC8HFVDD5Q3TYPGC' where id=1; -update noar ti set b2='1GT4K11JD1UC8HFVDD5Q3TYPGC' where id=1; -update noar tt set v0='1270IA7FZOOF3' where id=2; -update noar ti set v0='1270IA7FZOOF3' where id=2; -update noar tt set b0='94VPNXSEYWLZU8GRM08XFAIFQ' where id=2; -update noar ti set b0='94VPNXSEYWLZU8GRM08XFAIFQ' where id=2; -update noar tt set v0='3N309BC1X29YOJLKIH0T610VNQ' where id=2; -update noar ti set v0='3N309BC1X29YOJLKIH0T610VNQ' where id=2; -update noar tt set b1='TI1UBV' where id=2; -update noar ti set b1='TI1UBV' where id=2; -update noar tt set v0='7Y7Y6KQGY654GH99E8ULTEYST9P' where id=2; -update noar ti set v0='7Y7Y6KQGY654GH99E8ULTEYST9P' where id=2; -update noar tt set b2='4J1' where id=2; -update noar ti set b2='4J1' where id=2; -update noar tt set v0='YINZ3QJL3BD3Q6YPY67Y07VBHR' where id=3; -update noar ti set v0='YINZ3QJL3BD3Q6YPY67Y07VBHR' where id=3; -update noar tt set b0='BDIGSLA111X85PNCA748Q9VFW95D9' where id=3; -update noar ti set b0='BDIGSLA111X85PNCA748Q9VFW95D9' where id=3; -update noar tt set v0='K2A2LFVTVSKSGXHNO80BFCV0VD' where id=3; -update noar ti set v0='K2A2LFVTVSKSGXHNO80BFCV0VD' where id=3; -update noar tt set b1='FS8IKIEFRHJCOG0WU0OZ5W6UMW8QHYN' where id=3; -update noar ti set b1='FS8IKIEFRHJCOG0WU0OZ5W6UMW8QHYN' where id=3; -update noar tt set v0='0N' where id=3; -update noar ti set v0='0N' where id=3; -update noar tt set b2='Y8CMUCOD' where id=3; -update noar ti set b2='Y8CMUCOD' where id=3; -update noar tt set v0='X' where id=4; -update noar ti set v0='X' where id=4; -update noar tt set b0='X' where id=4; -update noar ti set b0='X' where id=4; -update noar tt set v0='7R2JXVMPCVQGIMVHH6S3A' where id=4; -update noar ti set v0='7R2JXVMPCVQGIMVHH6S3A' where id=4; -update noar tt set b1='YK40PK165PPS' where id=4; -update noar ti set b1='YK40PK165PPS' where id=4; -update noar tt set v0='0F79BGF63EHJKH6OHB49LLGJ' where id=4; -update noar ti set v0='0F79BGF63EHJKH6OHB49LLGJ' where id=4; -update noar tt set b2='DA3NEDNCW9NUF87' where id=4; -update noar ti set b2='DA3NEDNCW9NUF87' where id=4; -update noar tt set v0='UN6NUVXDYV68AZT8T65XJW2VMJF' where id=5; -update noar ti set v0='UN6NUVXDYV68AZT8T65XJW2VMJF' where id=5; -update noar tt set b0='Y3CP1FCN93' where id=5; -update noar ti set b0='Y3CP1FCN93' where id=5; -update noar tt set v0='AR9JVNGCRIJ' where id=5; -update noar ti set v0='AR9JVNGCRIJ' where id=5; -update noar tt set b1='5MU6N' where id=5; -update noar ti set b1='5MU6N' where id=5; -update noar tt set v0='SW9A7073QK8IFU5P' where id=5; -update noar ti set v0='SW9A7073QK8IFU5P' where id=5; -update noar tt set b2='NY3EY' where id=5; -update noar ti set b2='NY3EY' where id=5; -update noar tt set v0='GKUH3JWD1Q7MV' where id=6; -update noar ti set v0='GKUH3JWD1Q7MV' where id=6; -update noar tt set b0='SAW4QX2J9UUA4QICOWMVO3Y' where id=6; -update noar ti set b0='SAW4QX2J9UUA4QICOWMVO3Y' where id=6; -update noar tt set v0='O9JR149YTD5AC74D' where id=6; -update noar ti set v0='O9JR149YTD5AC74D' where id=6; -update noar tt set b1='HP2' where id=6; -update noar ti set b1='HP2' where id=6; -update noar tt set v0='G8C00B9YWE8RM9I3JASP7C58CAF4S' where id=6; -update noar ti set v0='G8C00B9YWE8RM9I3JASP7C58CAF4S' where id=6; -update noar tt set b2='JGGTNH1Q4D11DL5QSBXZQD5RR4M530' where id=6; -update noar ti set b2='JGGTNH1Q4D11DL5QSBXZQD5RR4M530' where id=6; -update noar tt set v0='S75Z2E0HLQLOPKOL672WJQ' where id=7; -update noar ti set v0='S75Z2E0HLQLOPKOL672WJQ' where id=7; -update noar tt set b0='638SVMZ1HDZ' where id=7; -update noar ti set b0='638SVMZ1HDZ' where id=7; -update noar tt set v0='5K' where id=7; -update noar ti set v0='5K' where id=7; -update noar tt set b1='3XC' where id=7; -update noar ti set b1='3XC' where id=7; -update noar tt set v0='V5NIFIE57BNHT9GC8' where id=7; -update noar ti set v0='V5NIFIE57BNHT9GC8' where id=7; -update noar tt set b2='K5YFJQLVCESN9A' where id=7; -update noar ti set b2='K5YFJQLVCESN9A' where id=7; -update noar tt set v0='ZHZWH4OFS91HN22GJWK3G' where id=8; -update noar ti set v0='ZHZWH4OFS91HN22GJWK3G' where id=8; -update noar tt set b0='22ZU078V' where id=8; -update noar ti set b0='22ZU078V' where id=8; -update noar tt set v0='PGNQOOW733ZWZ2AIG9WMBX6X71QCDC2' where id=8; -update noar ti set v0='PGNQOOW733ZWZ2AIG9WMBX6X71QCDC2' where id=8; -update noar tt set b1='CHQWB5G7TB7R6F' where id=8; -update noar ti set b1='CHQWB5G7TB7R6F' where id=8; -update noar tt set v0='MCNXLAYKR1MER4R1U0UUQ5YCZ27Q16G' where id=8; -update noar ti set v0='MCNXLAYKR1MER4R1U0UUQ5YCZ27Q16G' where id=8; -update noar tt set b2='N3Y0' where id=8; -update noar ti set b2='N3Y0' where id=8; -update noar tt set v0='GY7Y73QRKBYO9H0856DT34' where id=9; -update noar ti set v0='GY7Y73QRKBYO9H0856DT34' where id=9; -update noar tt set b0='D5OGS' where id=9; -update noar ti set b0='D5OGS' where id=9; -update noar tt set v0='VLI69Y0IGG9X2G9ZJV0XU671TQXDQ4L' where id=9; -update noar ti set v0='VLI69Y0IGG9X2G9ZJV0XU671TQXDQ4L' where id=9; -update noar tt set b1='ESTISXLS27HP2TSFS8IQ' where id=9; -update noar ti set b1='ESTISXLS27HP2TSFS8IQ' where id=9; -update noar tt set v0='OWHJZDT3YWSAG2U' where id=9; -update noar ti set v0='OWHJZDT3YWSAG2U' where id=9; -update noar tt set b2='B0Z' where id=9; -update noar ti set b2='B0Z' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - v0 varchar(256) not null, - b0 longblob not null, - b1 longblob not null, - b2 blob not null -) engine=tokudb; -insert into tt values (1,'','','',''); -insert into tt values (2,'','','',''); -insert into tt values (3,'','','',''); -insert into tt values (4,'','','',''); -insert into tt values (5,'','','',''); -insert into tt values (6,'','','',''); -insert into tt values (7,'','','',''); -insert into tt values (8,'','','',''); -insert into tt values (9,'','','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='ONFF44G2302R' where id=1; -update noar ti set v0='ONFF44G2302R' where id=1; -update noar tt set b0='UC5R9GZTZ3GL4WG' where id=1; -update noar ti set b0='UC5R9GZTZ3GL4WG' where id=1; -update noar tt set v0='V' where id=1; -update noar ti set v0='V' where id=1; -update noar tt set b1='9PF80X3LPB9ZYO6VF19IA8' where id=1; -update noar ti set b1='9PF80X3LPB9ZYO6VF19IA8' where id=1; -update noar tt set v0='XSCJ6ER4CAI' where id=1; -update noar ti set v0='XSCJ6ER4CAI' where id=1; -update noar tt set b2='EP15TLUDWYZGFC' where id=1; -update noar ti set b2='EP15TLUDWYZGFC' where id=1; -update noar tt set v0='ZOBJM6BIB58SYN' where id=2; -update noar ti set v0='ZOBJM6BIB58SYN' where id=2; -update noar tt set b0='JEV0KHG' where id=2; -update noar ti set b0='JEV0KHG' where id=2; -update noar tt set v0='QQVJ0' where id=2; -update noar ti set v0='QQVJ0' where id=2; -update noar tt set b1='VVBKWCNX0S43N3A0NBT8KPQOT78P4NGD' where id=2; -update noar ti set b1='VVBKWCNX0S43N3A0NBT8KPQOT78P4NGD' where id=2; -update noar tt set v0='2NTRQQYTSWC1R5KQ44D283Z9U412W2A' where id=2; -update noar ti set v0='2NTRQQYTSWC1R5KQ44D283Z9U412W2A' where id=2; -update noar tt set b2='RPSC5L8' where id=2; -update noar ti set b2='RPSC5L8' where id=2; -update noar tt set v0='TQZHRXXTV3TF964F2JM1LUNOEL35RU' where id=3; -update noar ti set v0='TQZHRXXTV3TF964F2JM1LUNOEL35RU' where id=3; -update noar tt set b0='JLBNDOU9UND27' where id=3; -update noar ti set b0='JLBNDOU9UND27' where id=3; -update noar tt set v0='BGI68Q06' where id=3; -update noar ti set v0='BGI68Q06' where id=3; -update noar tt set b1='NZZC3V2E5O3SSH8T5' where id=3; -update noar ti set b1='NZZC3V2E5O3SSH8T5' where id=3; -update noar tt set v0='JGKQUMGQ7G07XZ8GI' where id=3; -update noar ti set v0='JGKQUMGQ7G07XZ8GI' where id=3; -update noar tt set b2='1QXL' where id=3; -update noar ti set b2='1QXL' where id=3; -update noar tt set v0='3OT0Z8' where id=4; -update noar ti set v0='3OT0Z8' where id=4; -update noar tt set b0='5R0ZEF' where id=4; -update noar ti set b0='5R0ZEF' where id=4; -update noar tt set v0='9PZFZJ6ENDTNTOSRL' where id=4; -update noar ti set v0='9PZFZJ6ENDTNTOSRL' where id=4; -update noar tt set b1='CKPULBG8ZMEOGBH713IHHKTKLF' where id=4; -update noar ti set b1='CKPULBG8ZMEOGBH713IHHKTKLF' where id=4; -update noar tt set v0='P0XEWHUE19J0ICFPLHSEGW' where id=4; -update noar ti set v0='P0XEWHUE19J0ICFPLHSEGW' where id=4; -update noar tt set b2='9YF1NI30R1ZP8FESQCR' where id=4; -update noar ti set b2='9YF1NI30R1ZP8FESQCR' where id=4; -update noar tt set v0='WT6E0O93I89T8UB59LM78WRNNKA2N1FF' where id=5; -update noar ti set v0='WT6E0O93I89T8UB59LM78WRNNKA2N1FF' where id=5; -update noar tt set b0='4BWWN467RNC1M5CRZQ' where id=5; -update noar ti set b0='4BWWN467RNC1M5CRZQ' where id=5; -update noar tt set v0='V5I916LT9G4YWHRFUZVS92' where id=5; -update noar ti set v0='V5I916LT9G4YWHRFUZVS92' where id=5; -update noar tt set b1='YKTLN36YOE2C87PMY2O2Q4MYRQR0' where id=5; -update noar ti set b1='YKTLN36YOE2C87PMY2O2Q4MYRQR0' where id=5; -update noar tt set v0='RDQ1PCR' where id=5; -update noar ti set v0='RDQ1PCR' where id=5; -update noar tt set b2='P9ZZEQ79YMBLG3Q80JC1PF' where id=5; -update noar ti set b2='P9ZZEQ79YMBLG3Q80JC1PF' where id=5; -update noar tt set v0='TSQ7SMNE2UK57' where id=6; -update noar ti set v0='TSQ7SMNE2UK57' where id=6; -update noar tt set b0='96G9QADI0NURQB8SR8AW3Z' where id=6; -update noar ti set b0='96G9QADI0NURQB8SR8AW3Z' where id=6; -update noar tt set v0='LSGP724UKNHA86OZO' where id=6; -update noar ti set v0='LSGP724UKNHA86OZO' where id=6; -update noar tt set b1='W5PPE5Q6' where id=6; -update noar ti set b1='W5PPE5Q6' where id=6; -update noar tt set v0='KJ5R' where id=6; -update noar ti set v0='KJ5R' where id=6; -update noar tt set b2='44V3F' where id=6; -update noar ti set b2='44V3F' where id=6; -update noar tt set v0='8F41FKG835LCEE9HBQ' where id=7; -update noar ti set v0='8F41FKG835LCEE9HBQ' where id=7; -update noar tt set b0='KA72MDBST2VEN2RUXSZS1KEEEI3J271' where id=7; -update noar ti set b0='KA72MDBST2VEN2RUXSZS1KEEEI3J271' where id=7; -update noar tt set v0='3I4KFFXPOMX' where id=7; -update noar ti set v0='3I4KFFXPOMX' where id=7; -update noar tt set b1='BGDG' where id=7; -update noar ti set b1='BGDG' where id=7; -update noar tt set v0='INYS5F0A7YMJZHPAMY0YJLP0P99160' where id=7; -update noar ti set v0='INYS5F0A7YMJZHPAMY0YJLP0P99160' where id=7; -update noar tt set b2='75AGVP4YUIJQ3USI9LTK8M' where id=7; -update noar ti set b2='75AGVP4YUIJQ3USI9LTK8M' where id=7; -update noar tt set v0='QPFVBY5OMJN' where id=8; -update noar ti set v0='QPFVBY5OMJN' where id=8; -update noar tt set b0='FHOWUG2M30B0SCM4FBIA' where id=8; -update noar ti set b0='FHOWUG2M30B0SCM4FBIA' where id=8; -update noar tt set v0='LTNSHQ3' where id=8; -update noar ti set v0='LTNSHQ3' where id=8; -update noar tt set b1='D2TI8X28OV4FT0P6867HZA2TVJAX0L' where id=8; -update noar ti set b1='D2TI8X28OV4FT0P6867HZA2TVJAX0L' where id=8; -update noar tt set v0='4' where id=8; -update noar ti set v0='4' where id=8; -update noar tt set b2='B50OD0' where id=8; -update noar ti set b2='B50OD0' where id=8; -update noar tt set v0='G' where id=9; -update noar ti set v0='G' where id=9; -update noar tt set b0='9ZKNYBO5C' where id=9; -update noar ti set b0='9ZKNYBO5C' where id=9; -update noar tt set v0='3V1ZXCECFE458612Z20AL' where id=9; -update noar ti set v0='3V1ZXCECFE458612Z20AL' where id=9; -update noar tt set b1='S8L' where id=9; -update noar ti set b1='S8L' where id=9; -update noar tt set v0='4NFAK0P40' where id=9; -update noar ti set v0='4NFAK0P40' where id=9; -update noar tt set b2='TVC5WGNVIKZQAZOU2Q' where id=9; -update noar ti set b2='TVC5WGNVIKZQAZOU2Q' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - v0 varchar(32) null, - b0 longblob null, - b1 longblob null, - b2 mediumblob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='GBAK2BFJAOAQZSAE1' where id=1; -update noar ti set v0='GBAK2BFJAOAQZSAE1' where id=1; -update noar tt set b0='68SKPCL6Q1T11H43QMNDZARIW7C' where id=1; -update noar ti set b0='68SKPCL6Q1T11H43QMNDZARIW7C' where id=1; -update noar tt set v0='PYUIY91OPGDQTNJ9ICXJRVWGACSVI4' where id=1; -update noar ti set v0='PYUIY91OPGDQTNJ9ICXJRVWGACSVI4' where id=1; -update noar tt set b1='75' where id=1; -update noar ti set b1='75' where id=1; -update noar tt set v0='6L3C5H' where id=1; -update noar ti set v0='6L3C5H' where id=1; -update noar tt set b2='R4HZOO7UMCKCLR7NEV5C' where id=1; -update noar ti set b2='R4HZOO7UMCKCLR7NEV5C' where id=1; -update noar tt set v0='MF9CRTJ0SO5JUEZSP04L471MT27V9W' where id=2; -update noar ti set v0='MF9CRTJ0SO5JUEZSP04L471MT27V9W' where id=2; -update noar tt set b0='WQ5SMJW4YB32YW5R8KTMEMLSSKH49AU' where id=2; -update noar ti set b0='WQ5SMJW4YB32YW5R8KTMEMLSSKH49AU' where id=2; -update noar tt set v0='CEBLSXHJFZM8PZH' where id=2; -update noar ti set v0='CEBLSXHJFZM8PZH' where id=2; -update noar tt set b1='LZMVYM8' where id=2; -update noar ti set b1='LZMVYM8' where id=2; -update noar tt set v0='9K91PKWQCGXUVBFM9ZYIJLZOIYPP' where id=2; -update noar ti set v0='9K91PKWQCGXUVBFM9ZYIJLZOIYPP' where id=2; -update noar tt set b2='3G7C5EFVZNVHH' where id=2; -update noar ti set b2='3G7C5EFVZNVHH' where id=2; -update noar tt set v0='RG3HEJVRQ1NZ' where id=3; -update noar ti set v0='RG3HEJVRQ1NZ' where id=3; -update noar tt set b0='80ZRCXXZB6JMYCPUC5IOE3E9L' where id=3; -update noar ti set b0='80ZRCXXZB6JMYCPUC5IOE3E9L' where id=3; -update noar tt set v0='Z09I' where id=3; -update noar ti set v0='Z09I' where id=3; -update noar tt set b1='ZGI0798ASCB9LBTUP1NIA5ANZ' where id=3; -update noar ti set b1='ZGI0798ASCB9LBTUP1NIA5ANZ' where id=3; -update noar tt set v0='I' where id=3; -update noar ti set v0='I' where id=3; -update noar tt set b2='CA4I0PRT3GTU7TB07MRR1EAG1GFVD' where id=3; -update noar ti set b2='CA4I0PRT3GTU7TB07MRR1EAG1GFVD' where id=3; -update noar tt set v0='P17KDT11RZTM7NJFHAY7S' where id=4; -update noar ti set v0='P17KDT11RZTM7NJFHAY7S' where id=4; -update noar tt set b0='3' where id=4; -update noar ti set b0='3' where id=4; -update noar tt set v0='RM' where id=4; -update noar ti set v0='RM' where id=4; -update noar tt set b1='G0LSI2ZRCTHNTWKMR4BAKTDKT7AC9Y' where id=4; -update noar ti set b1='G0LSI2ZRCTHNTWKMR4BAKTDKT7AC9Y' where id=4; -update noar tt set v0='U76' where id=4; -update noar ti set v0='U76' where id=4; -update noar tt set b2='ZYKG98BP' where id=4; -update noar ti set b2='ZYKG98BP' where id=4; -update noar tt set v0='OJTAQG1TZMB7IIGAIQCEFYWL' where id=5; -update noar ti set v0='OJTAQG1TZMB7IIGAIQCEFYWL' where id=5; -update noar tt set b0='WZ6UW2AXNVHZZR3S213H' where id=5; -update noar ti set b0='WZ6UW2AXNVHZZR3S213H' where id=5; -update noar tt set v0='2QDB4AXJCRQ8CQRPHMXO298' where id=5; -update noar ti set v0='2QDB4AXJCRQ8CQRPHMXO298' where id=5; -update noar tt set b1='V3HOG6WVDD81L0IRYXX' where id=5; -update noar ti set b1='V3HOG6WVDD81L0IRYXX' where id=5; -update noar tt set v0='WCES569KHVDNK8AL2WEWXWLJO963OP3' where id=5; -update noar ti set v0='WCES569KHVDNK8AL2WEWXWLJO963OP3' where id=5; -update noar tt set b2='3TEB7F6M8GDF' where id=5; -update noar ti set b2='3TEB7F6M8GDF' where id=5; -update noar tt set v0='J5A74PPDI7DOHN7ONV3WNO8' where id=6; -update noar ti set v0='J5A74PPDI7DOHN7ONV3WNO8' where id=6; -update noar tt set b0='V07KWAZ0CZ4NGOL' where id=6; -update noar ti set b0='V07KWAZ0CZ4NGOL' where id=6; -update noar tt set v0='Z2M0IN0E2CJUW56N1XC' where id=6; -update noar ti set v0='Z2M0IN0E2CJUW56N1XC' where id=6; -update noar tt set b1='N5A' where id=6; -update noar ti set b1='N5A' where id=6; -update noar tt set v0='WFAGYXW8RY' where id=6; -update noar ti set v0='WFAGYXW8RY' where id=6; -update noar tt set b2='DQVMF' where id=6; -update noar ti set b2='DQVMF' where id=6; -update noar tt set v0='ODYUYEZLTQWHFXP7HO' where id=7; -update noar ti set v0='ODYUYEZLTQWHFXP7HO' where id=7; -update noar tt set b0='42' where id=7; -update noar ti set b0='42' where id=7; -update noar tt set v0='JW06A2SCBZJ0UBF' where id=7; -update noar ti set v0='JW06A2SCBZJ0UBF' where id=7; -update noar tt set b1='T' where id=7; -update noar ti set b1='T' where id=7; -update noar tt set v0='Q1' where id=7; -update noar ti set v0='Q1' where id=7; -update noar tt set b2='LU5V96HNDFV3II9DG' where id=7; -update noar ti set b2='LU5V96HNDFV3II9DG' where id=7; -update noar tt set v0='9CDZSGIQYZ1' where id=8; -update noar ti set v0='9CDZSGIQYZ1' where id=8; -update noar tt set b0='QZAF36' where id=8; -update noar ti set b0='QZAF36' where id=8; -update noar tt set v0='O1E0E4EGX80N7FREU2GCX7NFRP' where id=8; -update noar ti set v0='O1E0E4EGX80N7FREU2GCX7NFRP' where id=8; -update noar tt set b1='5' where id=8; -update noar ti set b1='5' where id=8; -update noar tt set v0='8N528105NZKSFCEME9Y05AW92YD7XW' where id=8; -update noar ti set v0='8N528105NZKSFCEME9Y05AW92YD7XW' where id=8; -update noar tt set b2='0F2LTWHBA7CMPDMT' where id=8; -update noar ti set b2='0F2LTWHBA7CMPDMT' where id=8; -update noar tt set v0='BVFQFLWV37YE9' where id=9; -update noar ti set v0='BVFQFLWV37YE9' where id=9; -update noar tt set b0='FO7AVDCBHBQD85C2XIB' where id=9; -update noar ti set b0='FO7AVDCBHBQD85C2XIB' where id=9; -update noar tt set v0='5MI' where id=9; -update noar ti set v0='5MI' where id=9; -update noar tt set b1='MBFUVC7' where id=9; -update noar ti set b1='MBFUVC7' where id=9; -update noar tt set v0='7HGQN' where id=9; -update noar ti set v0='7HGQN' where id=9; -update noar tt set b2='6UN2QPBM7F' where id=9; -update noar ti set b2='6UN2QPBM7F' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - v0 varchar(256) null, - b0 longblob null, - b1 longblob null, - b2 mediumblob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='KPZVYO9AB4TBWV79HS42AEPOZ52AP' where id=1; -update noar ti set v0='KPZVYO9AB4TBWV79HS42AEPOZ52AP' where id=1; -update noar tt set b0='UUKC7TM3' where id=1; -update noar ti set b0='UUKC7TM3' where id=1; -update noar tt set v0='GPY8QITUR6O6W97FY' where id=1; -update noar ti set v0='GPY8QITUR6O6W97FY' where id=1; -update noar tt set b1='874KU4JDVZ3Z59' where id=1; -update noar ti set b1='874KU4JDVZ3Z59' where id=1; -update noar tt set v0='T1031PZ5PLO' where id=1; -update noar ti set v0='T1031PZ5PLO' where id=1; -update noar tt set b2='O6FUIATIUWU236FX2NAZEJWEHW' where id=1; -update noar ti set b2='O6FUIATIUWU236FX2NAZEJWEHW' where id=1; -update noar tt set v0='FMR2LZWWMDV59E631JR5H4PXWTMD6C' where id=2; -update noar ti set v0='FMR2LZWWMDV59E631JR5H4PXWTMD6C' where id=2; -update noar tt set b0='20V7TMPFEZA' where id=2; -update noar ti set b0='20V7TMPFEZA' where id=2; -update noar tt set v0='4THRSY' where id=2; -update noar ti set v0='4THRSY' where id=2; -update noar tt set b1='G0KBHF9' where id=2; -update noar ti set b1='G0KBHF9' where id=2; -update noar tt set v0='VLDX3O6195RL635BPB3Z0M6O1YCDZK9' where id=2; -update noar ti set v0='VLDX3O6195RL635BPB3Z0M6O1YCDZK9' where id=2; -update noar tt set b2='ND61J5O61IBF4' where id=2; -update noar ti set b2='ND61J5O61IBF4' where id=2; -update noar tt set v0='QPGFY0NDS' where id=3; -update noar ti set v0='QPGFY0NDS' where id=3; -update noar tt set b0='GH4DBL7P38V' where id=3; -update noar ti set b0='GH4DBL7P38V' where id=3; -update noar tt set v0='OJH31QNF7DZPDJ52A77E37V9JZCI' where id=3; -update noar ti set v0='OJH31QNF7DZPDJ52A77E37V9JZCI' where id=3; -update noar tt set b1='6XJ5O' where id=3; -update noar ti set b1='6XJ5O' where id=3; -update noar tt set v0='FM4KL1VOV' where id=3; -update noar ti set v0='FM4KL1VOV' where id=3; -update noar tt set b2='RTBMSJHJFGTJZTNI297ZV7PV1' where id=3; -update noar ti set b2='RTBMSJHJFGTJZTNI297ZV7PV1' where id=3; -update noar tt set v0='33FHSUNH06SQJFKHLMR8H' where id=4; -update noar ti set v0='33FHSUNH06SQJFKHLMR8H' where id=4; -update noar tt set b0='RLS5N6WH9UMCD1BYWIASVVNFYFB' where id=4; -update noar ti set b0='RLS5N6WH9UMCD1BYWIASVVNFYFB' where id=4; -update noar tt set v0='PNLN4U5M99YQ07' where id=4; -update noar ti set v0='PNLN4U5M99YQ07' where id=4; -update noar tt set b1='E89Z86PGWXWWGBC5187IDODXUZALMO' where id=4; -update noar ti set b1='E89Z86PGWXWWGBC5187IDODXUZALMO' where id=4; -update noar tt set v0='OSYAFEMYQA25U5WQ12LWAJN' where id=4; -update noar ti set v0='OSYAFEMYQA25U5WQ12LWAJN' where id=4; -update noar tt set b2='WNRJLQ692KBXTNZPQCZ5VF5M' where id=4; -update noar ti set b2='WNRJLQ692KBXTNZPQCZ5VF5M' where id=4; -update noar tt set v0='9NBE2Z216D9HRQ92NRHXXNH8H' where id=5; -update noar ti set v0='9NBE2Z216D9HRQ92NRHXXNH8H' where id=5; -update noar tt set b0='3NJADGOFN2SNGSJJJH7YDLLEOEM2TVHA' where id=5; -update noar ti set b0='3NJADGOFN2SNGSJJJH7YDLLEOEM2TVHA' where id=5; -update noar tt set v0='8M2ME99C9QF73PJ9E6' where id=5; -update noar ti set v0='8M2ME99C9QF73PJ9E6' where id=5; -update noar tt set b1='T9XFS1B7PH97XJN1KNLYI976ZKY' where id=5; -update noar ti set b1='T9XFS1B7PH97XJN1KNLYI976ZKY' where id=5; -update noar tt set v0='YC2U7QDBRWM4MGQGAC9IBC450KPJU6IX' where id=5; -update noar ti set v0='YC2U7QDBRWM4MGQGAC9IBC450KPJU6IX' where id=5; -update noar tt set b2='GTNYW0OMB' where id=5; -update noar ti set b2='GTNYW0OMB' where id=5; -update noar tt set v0='Z3NOBOH76EHC8PK2YX7' where id=6; -update noar ti set v0='Z3NOBOH76EHC8PK2YX7' where id=6; -update noar tt set b0='YQTQG1M' where id=6; -update noar ti set b0='YQTQG1M' where id=6; -update noar tt set v0='M9R4' where id=6; -update noar ti set v0='M9R4' where id=6; -update noar tt set b1='NGDCUMKSZYXFDSQIUBIUD2EOW2T' where id=6; -update noar ti set b1='NGDCUMKSZYXFDSQIUBIUD2EOW2T' where id=6; -update noar tt set v0='JOIL8GVR04LJ5LAY8UBUF87' where id=6; -update noar ti set v0='JOIL8GVR04LJ5LAY8UBUF87' where id=6; -update noar tt set b2='68TK0AQPJYGVF0X8K5CP' where id=6; -update noar ti set b2='68TK0AQPJYGVF0X8K5CP' where id=6; -update noar tt set v0='057MIGJB7DW83GD3TD5LY' where id=7; -update noar ti set v0='057MIGJB7DW83GD3TD5LY' where id=7; -update noar tt set b0='3I9DUBDTHRK1AWPP' where id=7; -update noar ti set b0='3I9DUBDTHRK1AWPP' where id=7; -update noar tt set v0='H5UTRAI3DT13VIW' where id=7; -update noar ti set v0='H5UTRAI3DT13VIW' where id=7; -update noar tt set b1='23WQ0U' where id=7; -update noar ti set b1='23WQ0U' where id=7; -update noar tt set v0='B2' where id=7; -update noar ti set v0='B2' where id=7; -update noar tt set b2='5O2JVOBF' where id=7; -update noar ti set b2='5O2JVOBF' where id=7; -update noar tt set v0='KV6QLNCBC72PUY9' where id=8; -update noar ti set v0='KV6QLNCBC72PUY9' where id=8; -update noar tt set b0='6JLF2XNR7OYVM8EHZ20XSZ2G' where id=8; -update noar ti set b0='6JLF2XNR7OYVM8EHZ20XSZ2G' where id=8; -update noar tt set v0='I8DXY2G2FA1D' where id=8; -update noar ti set v0='I8DXY2G2FA1D' where id=8; -update noar tt set b1='IS2N19XIFUVAQV' where id=8; -update noar ti set b1='IS2N19XIFUVAQV' where id=8; -update noar tt set v0='7B8UE7EMWCRMXULNJ6' where id=8; -update noar ti set v0='7B8UE7EMWCRMXULNJ6' where id=8; -update noar tt set b2='D717SK65NCUTOG2SWS1N8YF4ZHSUOSV' where id=8; -update noar ti set b2='D717SK65NCUTOG2SWS1N8YF4ZHSUOSV' where id=8; -update noar tt set v0='TYHWK6S2LJR22IIKQBLOYXYY07Q4FQH' where id=9; -update noar ti set v0='TYHWK6S2LJR22IIKQBLOYXYY07Q4FQH' where id=9; -update noar tt set b0='F6QH9E7C5Z8CCFN44RQ50FJC8R6B6A95' where id=9; -update noar ti set b0='F6QH9E7C5Z8CCFN44RQ50FJC8R6B6A95' where id=9; -update noar tt set v0='HW7FT' where id=9; -update noar ti set v0='HW7FT' where id=9; -update noar tt set b1='B4JZCYMR5SINH9' where id=9; -update noar ti set b1='B4JZCYMR5SINH9' where id=9; -update noar tt set v0='72P5QAGDQS6YI3UKHCQ' where id=9; -update noar ti set v0='72P5QAGDQS6YI3UKHCQ' where id=9; -update noar tt set b2='T7' where id=9; -update noar ti set b2='T7' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - v0 varchar(32) not null, - b0 longblob not null, - b1 longblob not null, - b2 mediumblob not null -) engine=tokudb; -insert into tt values (1,'','','',''); -insert into tt values (2,'','','',''); -insert into tt values (3,'','','',''); -insert into tt values (4,'','','',''); -insert into tt values (5,'','','',''); -insert into tt values (6,'','','',''); -insert into tt values (7,'','','',''); -insert into tt values (8,'','','',''); -insert into tt values (9,'','','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='JJVGPI9KJV8LR0BTDX0ZV7SNCIY' where id=1; -update noar ti set v0='JJVGPI9KJV8LR0BTDX0ZV7SNCIY' where id=1; -update noar tt set b0='JDRTTEDJEKYZ' where id=1; -update noar ti set b0='JDRTTEDJEKYZ' where id=1; -update noar tt set v0='5WURRXDOPD6N6T2ZQIXH4HOROS6E01BL' where id=1; -update noar ti set v0='5WURRXDOPD6N6T2ZQIXH4HOROS6E01BL' where id=1; -update noar tt set b1='KI7TCZ' where id=1; -update noar ti set b1='KI7TCZ' where id=1; -update noar tt set v0='RN6WUSGIWZ' where id=1; -update noar ti set v0='RN6WUSGIWZ' where id=1; -update noar tt set b2='5GCA9ZHZA' where id=1; -update noar ti set b2='5GCA9ZHZA' where id=1; -update noar tt set v0='58CVOYOJY2EBO381YTJ9KV2A3Q' where id=2; -update noar ti set v0='58CVOYOJY2EBO381YTJ9KV2A3Q' where id=2; -update noar tt set b0='LMXM7LYS2CYSDPJB36FY8HBW218T4' where id=2; -update noar ti set b0='LMXM7LYS2CYSDPJB36FY8HBW218T4' where id=2; -update noar tt set v0='3ZM3FY' where id=2; -update noar ti set v0='3ZM3FY' where id=2; -update noar tt set b1='NE8YKPIMT8X' where id=2; -update noar ti set b1='NE8YKPIMT8X' where id=2; -update noar tt set v0='5PGF96I4NUD' where id=2; -update noar ti set v0='5PGF96I4NUD' where id=2; -update noar tt set b2='7ZZFPAXGSE6HUJ6LIPPIOCMWWC' where id=2; -update noar ti set b2='7ZZFPAXGSE6HUJ6LIPPIOCMWWC' where id=2; -update noar tt set v0='G0YYPCREI3VN1Y90O' where id=3; -update noar ti set v0='G0YYPCREI3VN1Y90O' where id=3; -update noar tt set b0='61GSYL8K72E5M0VUASOW3XE5VA' where id=3; -update noar ti set b0='61GSYL8K72E5M0VUASOW3XE5VA' where id=3; -update noar tt set v0='B' where id=3; -update noar ti set v0='B' where id=3; -update noar tt set b1='37' where id=3; -update noar ti set b1='37' where id=3; -update noar tt set v0='HIY4NHE4J4P' where id=3; -update noar ti set v0='HIY4NHE4J4P' where id=3; -update noar tt set b2='36O2V3O9LPUE3G0OUPW59QBJGTPHF' where id=3; -update noar ti set b2='36O2V3O9LPUE3G0OUPW59QBJGTPHF' where id=3; -update noar tt set v0='ZIW2NTL' where id=4; -update noar ti set v0='ZIW2NTL' where id=4; -update noar tt set b0='63SIVCFFPDHY' where id=4; -update noar ti set b0='63SIVCFFPDHY' where id=4; -update noar tt set v0='JSF9OSHJTCEXRNUBOXR2Q3XNLU' where id=4; -update noar ti set v0='JSF9OSHJTCEXRNUBOXR2Q3XNLU' where id=4; -update noar tt set b1='1LPCZ7O' where id=4; -update noar ti set b1='1LPCZ7O' where id=4; -update noar tt set v0='38FQ3EM429F1JYNUBFIK753B2' where id=4; -update noar ti set v0='38FQ3EM429F1JYNUBFIK753B2' where id=4; -update noar tt set b2='LJXF860PG2VTG9AN5LQEZYPGFN' where id=4; -update noar ti set b2='LJXF860PG2VTG9AN5LQEZYPGFN' where id=4; -update noar tt set v0='RODZ3450' where id=5; -update noar ti set v0='RODZ3450' where id=5; -update noar tt set b0='DZ87GBUNF00SF813AFMXUF40' where id=5; -update noar ti set b0='DZ87GBUNF00SF813AFMXUF40' where id=5; -update noar tt set v0='XY' where id=5; -update noar ti set v0='XY' where id=5; -update noar tt set b1='4A8D98LCKOIQZXHMP20LFU4RDAW5' where id=5; -update noar ti set b1='4A8D98LCKOIQZXHMP20LFU4RDAW5' where id=5; -update noar tt set v0='8E5USDZ4TM0T2YG6KCUV' where id=5; -update noar ti set v0='8E5USDZ4TM0T2YG6KCUV' where id=5; -update noar tt set b2='DES9M7F2DHTK55TUWQNT' where id=5; -update noar ti set b2='DES9M7F2DHTK55TUWQNT' where id=5; -update noar tt set v0='FGV' where id=6; -update noar ti set v0='FGV' where id=6; -update noar tt set b0='OW4PGJ11' where id=6; -update noar ti set b0='OW4PGJ11' where id=6; -update noar tt set v0='CMDTIGRQ1' where id=6; -update noar ti set v0='CMDTIGRQ1' where id=6; -update noar tt set b1='JN0WE9' where id=6; -update noar ti set b1='JN0WE9' where id=6; -update noar tt set v0='EN' where id=6; -update noar ti set v0='EN' where id=6; -update noar tt set b2='1X4BGE' where id=6; -update noar ti set b2='1X4BGE' where id=6; -update noar tt set v0='C7RWJQS' where id=7; -update noar ti set v0='C7RWJQS' where id=7; -update noar tt set b0='2IUMU5TN7SI7JA9' where id=7; -update noar ti set b0='2IUMU5TN7SI7JA9' where id=7; -update noar tt set v0='UDDH2N38ZAWJ' where id=7; -update noar ti set v0='UDDH2N38ZAWJ' where id=7; -update noar tt set b1='ESPYVR27U' where id=7; -update noar ti set b1='ESPYVR27U' where id=7; -update noar tt set v0='V8TN202EO8DNY4' where id=7; -update noar ti set v0='V8TN202EO8DNY4' where id=7; -update noar tt set b2='BJ' where id=7; -update noar ti set b2='BJ' where id=7; -update noar tt set v0='AEO4L7' where id=8; -update noar ti set v0='AEO4L7' where id=8; -update noar tt set b0='E32MVCZSP4Z9ECXICSC8U' where id=8; -update noar ti set b0='E32MVCZSP4Z9ECXICSC8U' where id=8; -update noar tt set v0='K13K7VHGK4' where id=8; -update noar ti set v0='K13K7VHGK4' where id=8; -update noar tt set b1='3KYHZ47ZL744FUUD9K6O105' where id=8; -update noar ti set b1='3KYHZ47ZL744FUUD9K6O105' where id=8; -update noar tt set v0='A06' where id=8; -update noar ti set v0='A06' where id=8; -update noar tt set b2='4095SLA5PF' where id=8; -update noar ti set b2='4095SLA5PF' where id=8; -update noar tt set v0='EV5V9U' where id=9; -update noar ti set v0='EV5V9U' where id=9; -update noar tt set b0='9N5MAD6AB0VF' where id=9; -update noar ti set b0='9N5MAD6AB0VF' where id=9; -update noar tt set v0='Q790BQ5UMM0CJ3O9KT' where id=9; -update noar ti set v0='Q790BQ5UMM0CJ3O9KT' where id=9; -update noar tt set b1='H23FNIKQK3OLRK0A2GWPLRY1QG5' where id=9; -update noar ti set b1='H23FNIKQK3OLRK0A2GWPLRY1QG5' where id=9; -update noar tt set v0='XXS2RE7B7E1QAO' where id=9; -update noar ti set v0='XXS2RE7B7E1QAO' where id=9; -update noar tt set b2='OMF9SH' where id=9; -update noar ti set b2='OMF9SH' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - v0 varchar(256) not null, - b0 longblob not null, - b1 longblob not null, - b2 mediumblob not null -) engine=tokudb; -insert into tt values (1,'','','',''); -insert into tt values (2,'','','',''); -insert into tt values (3,'','','',''); -insert into tt values (4,'','','',''); -insert into tt values (5,'','','',''); -insert into tt values (6,'','','',''); -insert into tt values (7,'','','',''); -insert into tt values (8,'','','',''); -insert into tt values (9,'','','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='EASP4KR9E69XOA3' where id=1; -update noar ti set v0='EASP4KR9E69XOA3' where id=1; -update noar tt set b0='HQ0WT' where id=1; -update noar ti set b0='HQ0WT' where id=1; -update noar tt set v0='X76F6NXHRJL60R8Q' where id=1; -update noar ti set v0='X76F6NXHRJL60R8Q' where id=1; -update noar tt set b1='OFRR37QE397AG2SCCB' where id=1; -update noar ti set b1='OFRR37QE397AG2SCCB' where id=1; -update noar tt set v0='3SHED8VNMD7N5S5VKG7H6249Q6MU' where id=1; -update noar ti set v0='3SHED8VNMD7N5S5VKG7H6249Q6MU' where id=1; -update noar tt set b2='A2N3V7JC' where id=1; -update noar ti set b2='A2N3V7JC' where id=1; -update noar tt set v0='53' where id=2; -update noar ti set v0='53' where id=2; -update noar tt set b0='RFJV9ZOBHM0K1ST9RHD' where id=2; -update noar ti set b0='RFJV9ZOBHM0K1ST9RHD' where id=2; -update noar tt set v0='ITFVEBR3' where id=2; -update noar ti set v0='ITFVEBR3' where id=2; -update noar tt set b1='EYUFH5QVJDKQ1RGVWZ' where id=2; -update noar ti set b1='EYUFH5QVJDKQ1RGVWZ' where id=2; -update noar tt set v0='C2DO1VFDH0KIQARYW7OB' where id=2; -update noar ti set v0='C2DO1VFDH0KIQARYW7OB' where id=2; -update noar tt set b2='33ZCZUJ1KR1OR56J4STBVVS341' where id=2; -update noar ti set b2='33ZCZUJ1KR1OR56J4STBVVS341' where id=2; -update noar tt set v0='V3YGITPMKWIJTRGSDHM8' where id=3; -update noar ti set v0='V3YGITPMKWIJTRGSDHM8' where id=3; -update noar tt set b0='XZAGC' where id=3; -update noar ti set b0='XZAGC' where id=3; -update noar tt set v0='KJBBA' where id=3; -update noar ti set v0='KJBBA' where id=3; -update noar tt set b1='U8PGDXINHRV2BQYHSY0' where id=3; -update noar ti set b1='U8PGDXINHRV2BQYHSY0' where id=3; -update noar tt set v0='RWBEEYXP7YE6DGBIOUP9' where id=3; -update noar ti set v0='RWBEEYXP7YE6DGBIOUP9' where id=3; -update noar tt set b2='LRU5AOSMZH1VS3ZVASGFBNAB56272Y' where id=3; -update noar ti set b2='LRU5AOSMZH1VS3ZVASGFBNAB56272Y' where id=3; -update noar tt set v0='L7YDOAC8UA9XH9F4INR' where id=4; -update noar ti set v0='L7YDOAC8UA9XH9F4INR' where id=4; -update noar tt set b0='UN6OCULNFQU6ZW1JOH9J79' where id=4; -update noar ti set b0='UN6OCULNFQU6ZW1JOH9J79' where id=4; -update noar tt set v0='D2CST1UNS4SEPXW' where id=4; -update noar ti set v0='D2CST1UNS4SEPXW' where id=4; -update noar tt set b1='6R9PGBHQUQTL2F4J' where id=4; -update noar ti set b1='6R9PGBHQUQTL2F4J' where id=4; -update noar tt set v0='DC6BL2WA' where id=4; -update noar ti set v0='DC6BL2WA' where id=4; -update noar tt set b2='JXXP0D85VFPN433W4U80YRXT7DJ' where id=4; -update noar ti set b2='JXXP0D85VFPN433W4U80YRXT7DJ' where id=4; -update noar tt set v0='1' where id=5; -update noar ti set v0='1' where id=5; -update noar tt set b0='CG26XP421DTNU' where id=5; -update noar ti set b0='CG26XP421DTNU' where id=5; -update noar tt set v0='CSWICUXWZWB7HWJHH08L4GR71I4' where id=5; -update noar ti set v0='CSWICUXWZWB7HWJHH08L4GR71I4' where id=5; -update noar tt set b1='R4IS8O3JIEI3FRQUVH90L4U7OMT1A' where id=5; -update noar ti set b1='R4IS8O3JIEI3FRQUVH90L4U7OMT1A' where id=5; -update noar tt set v0='783USG44U1VU324J05' where id=5; -update noar ti set v0='783USG44U1VU324J05' where id=5; -update noar tt set b2='U' where id=5; -update noar ti set b2='U' where id=5; -update noar tt set v0='TATCLUSFNJ0WJ6FJLD8W0DXBMXRSY' where id=6; -update noar ti set v0='TATCLUSFNJ0WJ6FJLD8W0DXBMXRSY' where id=6; -update noar tt set b0='059YG6LM' where id=6; -update noar ti set b0='059YG6LM' where id=6; -update noar tt set v0='0FXRR0AD6YL7CL2' where id=6; -update noar ti set v0='0FXRR0AD6YL7CL2' where id=6; -update noar tt set b1='1N3SK0AXTS8M' where id=6; -update noar ti set b1='1N3SK0AXTS8M' where id=6; -update noar tt set v0='Q6IMW9S5GE3H7XHM8G0O' where id=6; -update noar ti set v0='Q6IMW9S5GE3H7XHM8G0O' where id=6; -update noar tt set b2='LFEKMN8SMAXS2H1D1WXUUTFT6MVZQLVX' where id=6; -update noar ti set b2='LFEKMN8SMAXS2H1D1WXUUTFT6MVZQLVX' where id=6; -update noar tt set v0='Y6VD622ZXQROOBF2' where id=7; -update noar ti set v0='Y6VD622ZXQROOBF2' where id=7; -update noar tt set b0='Y7SZVU36I0JD7R1' where id=7; -update noar ti set b0='Y7SZVU36I0JD7R1' where id=7; -update noar tt set v0='OQ3QMBPNLG8UWAE2M4' where id=7; -update noar ti set v0='OQ3QMBPNLG8UWAE2M4' where id=7; -update noar tt set b1='RHFNUN7M5B0J7X3XN6DFXO' where id=7; -update noar ti set b1='RHFNUN7M5B0J7X3XN6DFXO' where id=7; -update noar tt set v0='XP9NI93XL1QD' where id=7; -update noar ti set v0='XP9NI93XL1QD' where id=7; -update noar tt set b2='SCXPXKOT5' where id=7; -update noar ti set b2='SCXPXKOT5' where id=7; -update noar tt set v0='S8GSRA9U1ASKUZSHWYZZAQNTI' where id=8; -update noar ti set v0='S8GSRA9U1ASKUZSHWYZZAQNTI' where id=8; -update noar tt set b0='FONEUY5F6BUDUDJUM1905JRCTFYD8TVX' where id=8; -update noar ti set b0='FONEUY5F6BUDUDJUM1905JRCTFYD8TVX' where id=8; -update noar tt set v0='M6ILSDL7MOGD' where id=8; -update noar ti set v0='M6ILSDL7MOGD' where id=8; -update noar tt set b1='OGFM45Q87JO6I10SLIN3CQT8OWR' where id=8; -update noar ti set b1='OGFM45Q87JO6I10SLIN3CQT8OWR' where id=8; -update noar tt set v0='EKKNG44WKU9XM6KJ6C0J' where id=8; -update noar ti set v0='EKKNG44WKU9XM6KJ6C0J' where id=8; -update noar tt set b2='VLUJA3LMPY90WE8ISR1QH3IZG' where id=8; -update noar ti set b2='VLUJA3LMPY90WE8ISR1QH3IZG' where id=8; -update noar tt set v0='M8MC2B062QJE2YMBK1UQ1GD' where id=9; -update noar ti set v0='M8MC2B062QJE2YMBK1UQ1GD' where id=9; -update noar tt set b0='1VEA173H2SQPTMWD' where id=9; -update noar ti set b0='1VEA173H2SQPTMWD' where id=9; -update noar tt set v0='0CRKH4OOE774HGW' where id=9; -update noar ti set v0='0CRKH4OOE774HGW' where id=9; -update noar tt set b1='AZP9R0MEPRIG' where id=9; -update noar ti set b1='AZP9R0MEPRIG' where id=9; -update noar tt set v0='1E' where id=9; -update noar ti set v0='1E' where id=9; -update noar tt set b2='PZFZR3DXM7LKPINHAZ' where id=9; -update noar ti set b2='PZFZR3DXM7LKPINHAZ' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - v0 varchar(32) null, - b0 longblob null, - b1 longblob null, - b2 longblob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='C' where id=1; -update noar ti set v0='C' where id=1; -update noar tt set b0='WABX9VUZ4C1R2JTHGL4OQ8R7IBC' where id=1; -update noar ti set b0='WABX9VUZ4C1R2JTHGL4OQ8R7IBC' where id=1; -update noar tt set v0='YZO' where id=1; -update noar ti set v0='YZO' where id=1; -update noar tt set b1='Y22P5303H4U' where id=1; -update noar ti set b1='Y22P5303H4U' where id=1; -update noar tt set v0='E5RIB4Q5412VGPE3K' where id=1; -update noar ti set v0='E5RIB4Q5412VGPE3K' where id=1; -update noar tt set b2='J5N5RPMG' where id=1; -update noar ti set b2='J5N5RPMG' where id=1; -update noar tt set v0='YBTFTC5VKD8OIN4BKUFFA1' where id=2; -update noar ti set v0='YBTFTC5VKD8OIN4BKUFFA1' where id=2; -update noar tt set b0='11SUB6PE2AIXKX9268WKKU76' where id=2; -update noar ti set b0='11SUB6PE2AIXKX9268WKKU76' where id=2; -update noar tt set v0='BBEYMDR3UME59L9N1Q3UBITJY8RBEE4G' where id=2; -update noar ti set v0='BBEYMDR3UME59L9N1Q3UBITJY8RBEE4G' where id=2; -update noar tt set b1='AE46G94ISVEWG00K6SSE' where id=2; -update noar ti set b1='AE46G94ISVEWG00K6SSE' where id=2; -update noar tt set v0='8HW8DRBTUNP36Y3923632JCZL' where id=2; -update noar ti set v0='8HW8DRBTUNP36Y3923632JCZL' where id=2; -update noar tt set b2='GWBOWNVV3LTAKY' where id=2; -update noar ti set b2='GWBOWNVV3LTAKY' where id=2; -update noar tt set v0='PONCREBTLQ3M8DBT4WVYD4KDTRJ5P5T' where id=3; -update noar ti set v0='PONCREBTLQ3M8DBT4WVYD4KDTRJ5P5T' where id=3; -update noar tt set b0='FC2MME72H3HTL48ZI52CBP' where id=3; -update noar ti set b0='FC2MME72H3HTL48ZI52CBP' where id=3; -update noar tt set v0='5IBK' where id=3; -update noar ti set v0='5IBK' where id=3; -update noar tt set b1='OKITB1P28Y79AWZF1UPD' where id=3; -update noar ti set b1='OKITB1P28Y79AWZF1UPD' where id=3; -update noar tt set v0='XA6HK6VWV1PKVCS5J2EKIWF9E6' where id=3; -update noar ti set v0='XA6HK6VWV1PKVCS5J2EKIWF9E6' where id=3; -update noar tt set b2='NGY5BH11JZWDGRQXZADQ20QPF0425GKX' where id=3; -update noar ti set b2='NGY5BH11JZWDGRQXZADQ20QPF0425GKX' where id=3; -update noar tt set v0='QJVE9D9H0HH04FQW8ZNMY1KK' where id=4; -update noar ti set v0='QJVE9D9H0HH04FQW8ZNMY1KK' where id=4; -update noar tt set b0='QGUW' where id=4; -update noar ti set b0='QGUW' where id=4; -update noar tt set v0='QA6OJ33FCLZK94B' where id=4; -update noar ti set v0='QA6OJ33FCLZK94B' where id=4; -update noar tt set b1='RLEX268D1Q1VYP6EN4JRMVSEDLAML' where id=4; -update noar ti set b1='RLEX268D1Q1VYP6EN4JRMVSEDLAML' where id=4; -update noar tt set v0='AJS7WSEE1YICVR0KYP0Q0450V35X' where id=4; -update noar ti set v0='AJS7WSEE1YICVR0KYP0Q0450V35X' where id=4; -update noar tt set b2='BQ5SYMGB5' where id=4; -update noar ti set b2='BQ5SYMGB5' where id=4; -update noar tt set v0='RIWJNW8ZZRG5ARGX9RYG9LF' where id=5; -update noar ti set v0='RIWJNW8ZZRG5ARGX9RYG9LF' where id=5; -update noar tt set b0='3BD2XJAPE6173BIR' where id=5; -update noar ti set b0='3BD2XJAPE6173BIR' where id=5; -update noar tt set v0='HPGT362VXNS635U6OD0FN6G1YP0' where id=5; -update noar ti set v0='HPGT362VXNS635U6OD0FN6G1YP0' where id=5; -update noar tt set b1='2QYBF1BGC4534BDJNOEJ17J' where id=5; -update noar ti set b1='2QYBF1BGC4534BDJNOEJ17J' where id=5; -update noar tt set v0='2YD9V0HDQW9OHHOBXPT6OYYHZ' where id=5; -update noar ti set v0='2YD9V0HDQW9OHHOBXPT6OYYHZ' where id=5; -update noar tt set b2='QX9RKTHZ65PYI6NL4YODE8' where id=5; -update noar ti set b2='QX9RKTHZ65PYI6NL4YODE8' where id=5; -update noar tt set v0='5' where id=6; -update noar ti set v0='5' where id=6; -update noar tt set b0='6HU9TVMCAKVUDV8Q' where id=6; -update noar ti set b0='6HU9TVMCAKVUDV8Q' where id=6; -update noar tt set v0='A0UUG8V1W4814K08MGN' where id=6; -update noar ti set v0='A0UUG8V1W4814K08MGN' where id=6; -update noar tt set b1='I2' where id=6; -update noar ti set b1='I2' where id=6; -update noar tt set v0='2BZDAWFGFKEFQLFT9LWLQK7' where id=6; -update noar ti set v0='2BZDAWFGFKEFQLFT9LWLQK7' where id=6; -update noar tt set b2='G7LEFLNKHX4EAIEM' where id=6; -update noar ti set b2='G7LEFLNKHX4EAIEM' where id=6; -update noar tt set v0='9N4CTBFJKN7I9Z6S03JU5' where id=7; -update noar ti set v0='9N4CTBFJKN7I9Z6S03JU5' where id=7; -update noar tt set b0='GBGKAWP992' where id=7; -update noar ti set b0='GBGKAWP992' where id=7; -update noar tt set v0='SWLDBUJTUFJQLU1OVYG32I6K' where id=7; -update noar ti set v0='SWLDBUJTUFJQLU1OVYG32I6K' where id=7; -update noar tt set b1='AUTYZAFELJX' where id=7; -update noar ti set b1='AUTYZAFELJX' where id=7; -update noar tt set v0='NQM9SIC6CIYFQUIE' where id=7; -update noar ti set v0='NQM9SIC6CIYFQUIE' where id=7; -update noar tt set b2='CFJUZFR5WNR0VTVXVHXSK8VD4L' where id=7; -update noar ti set b2='CFJUZFR5WNR0VTVXVHXSK8VD4L' where id=7; -update noar tt set v0='UWQ454ISEYGIEB2K3GHS' where id=8; -update noar ti set v0='UWQ454ISEYGIEB2K3GHS' where id=8; -update noar tt set b0='8L12CJHUYCBASKOQ' where id=8; -update noar ti set b0='8L12CJHUYCBASKOQ' where id=8; -update noar tt set v0='XDIZWDQ4J6M0L5E8V86TZ27X4XQZ' where id=8; -update noar ti set v0='XDIZWDQ4J6M0L5E8V86TZ27X4XQZ' where id=8; -update noar tt set b1='29Q4PXC1K' where id=8; -update noar ti set b1='29Q4PXC1K' where id=8; -update noar tt set v0='R7B5B3S32W' where id=8; -update noar ti set v0='R7B5B3S32W' where id=8; -update noar tt set b2='0RXY3JWX7S7XXQNM' where id=8; -update noar ti set b2='0RXY3JWX7S7XXQNM' where id=8; -update noar tt set v0='MOI5XW3B0QYEEJYLQQIWU34GTL54KZ' where id=9; -update noar ti set v0='MOI5XW3B0QYEEJYLQQIWU34GTL54KZ' where id=9; -update noar tt set b0='M9N7P7N3IBCJUPDGGH56D3VGZ' where id=9; -update noar ti set b0='M9N7P7N3IBCJUPDGGH56D3VGZ' where id=9; -update noar tt set v0='WIYPO515Z78RTW7B8H21M0IGCD' where id=9; -update noar ti set v0='WIYPO515Z78RTW7B8H21M0IGCD' where id=9; -update noar tt set b1='V3AL' where id=9; -update noar ti set b1='V3AL' where id=9; -update noar tt set v0='30' where id=9; -update noar ti set v0='30' where id=9; -update noar tt set b2='BWSTM87GEI8A07V88ZEY4' where id=9; -update noar ti set b2='BWSTM87GEI8A07V88ZEY4' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - v0 varchar(256) null, - b0 longblob null, - b1 longblob null, - b2 longblob null -) engine=tokudb; -insert into tt (id) values (1); -insert into tt (id) values (2); -insert into tt (id) values (3); -insert into tt (id) values (4); -insert into tt (id) values (5); -insert into tt (id) values (6); -insert into tt (id) values (7); -insert into tt (id) values (8); -insert into tt (id) values (9); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='59VIS6' where id=1; -update noar ti set v0='59VIS6' where id=1; -update noar tt set b0='Y16FUVRDYANKU0F4DQ' where id=1; -update noar ti set b0='Y16FUVRDYANKU0F4DQ' where id=1; -update noar tt set v0='MN3NQ9WZC6LT6LJ74' where id=1; -update noar ti set v0='MN3NQ9WZC6LT6LJ74' where id=1; -update noar tt set b1='Z2QGMCQQT7LT15FBR1FAF' where id=1; -update noar ti set b1='Z2QGMCQQT7LT15FBR1FAF' where id=1; -update noar tt set v0='640H' where id=1; -update noar ti set v0='640H' where id=1; -update noar tt set b2='ENTGKH3UUCY6GRYQYI48HJVG9DUPWEA' where id=1; -update noar ti set b2='ENTGKH3UUCY6GRYQYI48HJVG9DUPWEA' where id=1; -update noar tt set v0='MRG388CO9ZJX' where id=2; -update noar ti set v0='MRG388CO9ZJX' where id=2; -update noar tt set b0='08O1C17PJSO0NSVYY583ABSPWFHGX' where id=2; -update noar ti set b0='08O1C17PJSO0NSVYY583ABSPWFHGX' where id=2; -update noar tt set v0='1M8HIXRKVT0DGA05TRVW20YA' where id=2; -update noar ti set v0='1M8HIXRKVT0DGA05TRVW20YA' where id=2; -update noar tt set b1='NZL5GJRNCNTCF2EB' where id=2; -update noar ti set b1='NZL5GJRNCNTCF2EB' where id=2; -update noar tt set v0='MHQLGNY' where id=2; -update noar ti set v0='MHQLGNY' where id=2; -update noar tt set b2='SSGH3O8YFLQU' where id=2; -update noar ti set b2='SSGH3O8YFLQU' where id=2; -update noar tt set v0='TIEKUG3' where id=3; -update noar ti set v0='TIEKUG3' where id=3; -update noar tt set b0='8' where id=3; -update noar ti set b0='8' where id=3; -update noar tt set v0='PMSXC24' where id=3; -update noar ti set v0='PMSXC24' where id=3; -update noar tt set b1='ES8UVFPUJEY71VIYU42IRT1A' where id=3; -update noar ti set b1='ES8UVFPUJEY71VIYU42IRT1A' where id=3; -update noar tt set v0='9' where id=3; -update noar ti set v0='9' where id=3; -update noar tt set b2='B5WIE4JC79KEI5DBYPCJVGKZQIUORI4Q' where id=3; -update noar ti set b2='B5WIE4JC79KEI5DBYPCJVGKZQIUORI4Q' where id=3; -update noar tt set v0='GJ0QKFH8G2FJJKVPEQK' where id=4; -update noar ti set v0='GJ0QKFH8G2FJJKVPEQK' where id=4; -update noar tt set b0='5D5OKOZ37565D7N2UC09M0V3HN' where id=4; -update noar ti set b0='5D5OKOZ37565D7N2UC09M0V3HN' where id=4; -update noar tt set v0='4OO3' where id=4; -update noar ti set v0='4OO3' where id=4; -update noar tt set b1='EKV7VUEF8Q7YRQGA560' where id=4; -update noar ti set b1='EKV7VUEF8Q7YRQGA560' where id=4; -update noar tt set v0='I1J7T9AAHPRK1K27M' where id=4; -update noar ti set v0='I1J7T9AAHPRK1K27M' where id=4; -update noar tt set b2='ZSYEHYPIC9G17U1JWYV27M2JCZ1R3' where id=4; -update noar ti set b2='ZSYEHYPIC9G17U1JWYV27M2JCZ1R3' where id=4; -update noar tt set v0='ZO1ZAMQKC2CHHCPGHUDR3' where id=5; -update noar ti set v0='ZO1ZAMQKC2CHHCPGHUDR3' where id=5; -update noar tt set b0='99MYQIQFLPOO2' where id=5; -update noar ti set b0='99MYQIQFLPOO2' where id=5; -update noar tt set v0='L3H89KWKVRAXFB7N723RYGFSFMXIP869' where id=5; -update noar ti set v0='L3H89KWKVRAXFB7N723RYGFSFMXIP869' where id=5; -update noar tt set b1='BYJRZ3K4RMWSWKDNUKUU' where id=5; -update noar ti set b1='BYJRZ3K4RMWSWKDNUKUU' where id=5; -update noar tt set v0='117MQSB1W' where id=5; -update noar ti set v0='117MQSB1W' where id=5; -update noar tt set b2='7' where id=5; -update noar ti set b2='7' where id=5; -update noar tt set v0='2B8K4H11FKPU54U6ZU4TH2QE' where id=6; -update noar ti set v0='2B8K4H11FKPU54U6ZU4TH2QE' where id=6; -update noar tt set b0='KDAXYY2ZKGQ' where id=6; -update noar ti set b0='KDAXYY2ZKGQ' where id=6; -update noar tt set v0='4IRV4' where id=6; -update noar ti set v0='4IRV4' where id=6; -update noar tt set b1='YIW8GEGX7W6XF2HCB2RXEF5PSVSVE' where id=6; -update noar ti set b1='YIW8GEGX7W6XF2HCB2RXEF5PSVSVE' where id=6; -update noar tt set v0='IL1B4LWKHPG9' where id=6; -update noar ti set v0='IL1B4LWKHPG9' where id=6; -update noar tt set b2='RZKG3Z0MGB20YRIK' where id=6; -update noar ti set b2='RZKG3Z0MGB20YRIK' where id=6; -update noar tt set v0='1QXMQT9' where id=7; -update noar ti set v0='1QXMQT9' where id=7; -update noar tt set b0='OHQMEALR2KYKLK5H1SE2WIQY7P' where id=7; -update noar ti set b0='OHQMEALR2KYKLK5H1SE2WIQY7P' where id=7; -update noar tt set v0='21YP6W' where id=7; -update noar ti set v0='21YP6W' where id=7; -update noar tt set b1='UFKGNPGCDLP8SUMG22FQD1RY6KJZ' where id=7; -update noar ti set b1='UFKGNPGCDLP8SUMG22FQD1RY6KJZ' where id=7; -update noar tt set v0='VY8ODP1Y4EWU28O42318FU98I1X3MAQ' where id=7; -update noar ti set v0='VY8ODP1Y4EWU28O42318FU98I1X3MAQ' where id=7; -update noar tt set b2='XC' where id=7; -update noar ti set b2='XC' where id=7; -update noar tt set v0='ZEJDHDB4545FX32R27E1RDTBF5' where id=8; -update noar ti set v0='ZEJDHDB4545FX32R27E1RDTBF5' where id=8; -update noar tt set b0='YKL29KZ2AWI9' where id=8; -update noar ti set b0='YKL29KZ2AWI9' where id=8; -update noar tt set v0='OR' where id=8; -update noar ti set v0='OR' where id=8; -update noar tt set b1='KBPNRBL0B1WNRVBEXVP16EU3U2NN3' where id=8; -update noar ti set b1='KBPNRBL0B1WNRVBEXVP16EU3U2NN3' where id=8; -update noar tt set v0='UEI6QQPEKLOVS4Q7' where id=8; -update noar ti set v0='UEI6QQPEKLOVS4Q7' where id=8; -update noar tt set b2='TFWGLAOD' where id=8; -update noar ti set b2='TFWGLAOD' where id=8; -update noar tt set v0='61E4GG41WNY575' where id=9; -update noar ti set v0='61E4GG41WNY575' where id=9; -update noar tt set b0='SCQEWNAKJR51B285WBC' where id=9; -update noar ti set b0='SCQEWNAKJR51B285WBC' where id=9; -update noar tt set v0='PB6QMSD3U9I2M' where id=9; -update noar ti set v0='PB6QMSD3U9I2M' where id=9; -update noar tt set b1='IYBZ' where id=9; -update noar ti set b1='IYBZ' where id=9; -update noar tt set v0='91XMZFO9C' where id=9; -update noar ti set v0='91XMZFO9C' where id=9; -update noar tt set b2='CJKUY1JFUFG5MDZ16KLOD' where id=9; -update noar ti set b2='CJKUY1JFUFG5MDZ16KLOD' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - v0 varchar(32) not null, - b0 longblob not null, - b1 longblob not null, - b2 longblob not null -) engine=tokudb; -insert into tt values (1,'','','',''); -insert into tt values (2,'','','',''); -insert into tt values (3,'','','',''); -insert into tt values (4,'','','',''); -insert into tt values (5,'','','',''); -insert into tt values (6,'','','',''); -insert into tt values (7,'','','',''); -insert into tt values (8,'','','',''); -insert into tt values (9,'','','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='C8MZ88QX53XHDM0IAF6H8OBA6YBY' where id=1; -update noar ti set v0='C8MZ88QX53XHDM0IAF6H8OBA6YBY' where id=1; -update noar tt set b0='N0O88B2D6' where id=1; -update noar ti set b0='N0O88B2D6' where id=1; -update noar tt set v0='N1AOZKRMOSYXN9L79IZCC1SV' where id=1; -update noar ti set v0='N1AOZKRMOSYXN9L79IZCC1SV' where id=1; -update noar tt set b1='37XGQ95OSFFT5X42Q9W' where id=1; -update noar ti set b1='37XGQ95OSFFT5X42Q9W' where id=1; -update noar tt set v0='PR3N6SAZ' where id=1; -update noar ti set v0='PR3N6SAZ' where id=1; -update noar tt set b2='8I4A' where id=1; -update noar ti set b2='8I4A' where id=1; -update noar tt set v0='UBOZN' where id=2; -update noar ti set v0='UBOZN' where id=2; -update noar tt set b0='R1MVCFGWM1O9A0' where id=2; -update noar ti set b0='R1MVCFGWM1O9A0' where id=2; -update noar tt set v0='9ZTLN8UL83IFEII4N8TYNL9UO8E' where id=2; -update noar ti set v0='9ZTLN8UL83IFEII4N8TYNL9UO8E' where id=2; -update noar tt set b1='VHZMMIG5TB8S5YP5LBHR2MQ2WVFG' where id=2; -update noar ti set b1='VHZMMIG5TB8S5YP5LBHR2MQ2WVFG' where id=2; -update noar tt set v0='K9IOAEJHNQA9' where id=2; -update noar ti set v0='K9IOAEJHNQA9' where id=2; -update noar tt set b2='FVIM7GEJ27X' where id=2; -update noar ti set b2='FVIM7GEJ27X' where id=2; -update noar tt set v0='OU0QW7UVXY6XK06CE7Y91DBEH' where id=3; -update noar ti set v0='OU0QW7UVXY6XK06CE7Y91DBEH' where id=3; -update noar tt set b0='1OP916G1RF7QHC497' where id=3; -update noar ti set b0='1OP916G1RF7QHC497' where id=3; -update noar tt set v0='RDEPUJNC4J4141I5E8ZDC8JOCOI' where id=3; -update noar ti set v0='RDEPUJNC4J4141I5E8ZDC8JOCOI' where id=3; -update noar tt set b1='VHJ0H59W77U0PCZG88OGSPQ4QCPP1' where id=3; -update noar ti set b1='VHJ0H59W77U0PCZG88OGSPQ4QCPP1' where id=3; -update noar tt set v0='P4NY' where id=3; -update noar ti set v0='P4NY' where id=3; -update noar tt set b2='PEQ2A' where id=3; -update noar ti set b2='PEQ2A' where id=3; -update noar tt set v0='GP9PDZX09EFJ12NSPR70ISR98' where id=4; -update noar ti set v0='GP9PDZX09EFJ12NSPR70ISR98' where id=4; -update noar tt set b0='TFG25A1' where id=4; -update noar ti set b0='TFG25A1' where id=4; -update noar tt set v0='8H' where id=4; -update noar ti set v0='8H' where id=4; -update noar tt set b1='73U769BQS6Q0RHR9L1EN6G8O7BGHPJ2' where id=4; -update noar ti set b1='73U769BQS6Q0RHR9L1EN6G8O7BGHPJ2' where id=4; -update noar tt set v0='4DEAOUPR5RSLHBRF6MI3CU' where id=4; -update noar ti set v0='4DEAOUPR5RSLHBRF6MI3CU' where id=4; -update noar tt set b2='B22KOZSJD1DP0UI78HW9Y0GD0VMQH4' where id=4; -update noar ti set b2='B22KOZSJD1DP0UI78HW9Y0GD0VMQH4' where id=4; -update noar tt set v0='SRNVJNY0Z' where id=5; -update noar ti set v0='SRNVJNY0Z' where id=5; -update noar tt set b0='P' where id=5; -update noar ti set b0='P' where id=5; -update noar tt set v0='UBQZIO6U0' where id=5; -update noar ti set v0='UBQZIO6U0' where id=5; -update noar tt set b1='U54L8PRPOMM7VC31E' where id=5; -update noar ti set b1='U54L8PRPOMM7VC31E' where id=5; -update noar tt set v0='5WRETF45UVC1709ED0GV2DXHW' where id=5; -update noar ti set v0='5WRETF45UVC1709ED0GV2DXHW' where id=5; -update noar tt set b2='2UWBK5EU73X7IJRR57T2WZMCF59BB' where id=5; -update noar ti set b2='2UWBK5EU73X7IJRR57T2WZMCF59BB' where id=5; -update noar tt set v0='55AKSTWK3CKK7BV' where id=6; -update noar ti set v0='55AKSTWK3CKK7BV' where id=6; -update noar tt set b0='KY7Z' where id=6; -update noar ti set b0='KY7Z' where id=6; -update noar tt set v0='EBRTUD5C6Z5YPH8HUXJ' where id=6; -update noar ti set v0='EBRTUD5C6Z5YPH8HUXJ' where id=6; -update noar tt set b1='X3' where id=6; -update noar ti set b1='X3' where id=6; -update noar tt set v0='F57Y0R1Y8ORVP9C88YJR3ABTLWDVK6' where id=6; -update noar ti set v0='F57Y0R1Y8ORVP9C88YJR3ABTLWDVK6' where id=6; -update noar tt set b2='0OXI2SG154UCHMGQM' where id=6; -update noar ti set b2='0OXI2SG154UCHMGQM' where id=6; -update noar tt set v0='LM12BDBTUXZ' where id=7; -update noar ti set v0='LM12BDBTUXZ' where id=7; -update noar tt set b0='32AYRCYIRJRLE697I' where id=7; -update noar ti set b0='32AYRCYIRJRLE697I' where id=7; -update noar tt set v0='0' where id=7; -update noar ti set v0='0' where id=7; -update noar tt set b1='O8NY1N1JI6NE53ULNV6OXU3' where id=7; -update noar ti set b1='O8NY1N1JI6NE53ULNV6OXU3' where id=7; -update noar tt set v0='6RTRMOE31H17VNZG5DSNY0' where id=7; -update noar ti set v0='6RTRMOE31H17VNZG5DSNY0' where id=7; -update noar tt set b2='PQ2W0Q38ENFQ8QRRV' where id=7; -update noar ti set b2='PQ2W0Q38ENFQ8QRRV' where id=7; -update noar tt set v0='IT5MMMPRSDYRS276VR4V4QE' where id=8; -update noar ti set v0='IT5MMMPRSDYRS276VR4V4QE' where id=8; -update noar tt set b0='NS9PULEDOQZVAPOW6U' where id=8; -update noar ti set b0='NS9PULEDOQZVAPOW6U' where id=8; -update noar tt set v0='9FIW5ZD3RJR530ARUHJF' where id=8; -update noar ti set v0='9FIW5ZD3RJR530ARUHJF' where id=8; -update noar tt set b1='PKNK5' where id=8; -update noar ti set b1='PKNK5' where id=8; -update noar tt set v0='739F8P4' where id=8; -update noar ti set v0='739F8P4' where id=8; -update noar tt set b2='GOYURBF7P45JLITZ27VK1ZTIARKX94' where id=8; -update noar ti set b2='GOYURBF7P45JLITZ27VK1ZTIARKX94' where id=8; -update noar tt set v0='RN6PH' where id=9; -update noar ti set v0='RN6PH' where id=9; -update noar tt set b0='GP1S6HTYE0GX083U' where id=9; -update noar ti set b0='GP1S6HTYE0GX083U' where id=9; -update noar tt set v0='JEZPISDJ1KY5GJ' where id=9; -update noar ti set v0='JEZPISDJ1KY5GJ' where id=9; -update noar tt set b1='5IPR43G9OCJH9' where id=9; -update noar ti set b1='5IPR43G9OCJH9' where id=9; -update noar tt set v0='O47MVT09F9' where id=9; -update noar ti set v0='O47MVT09F9' where id=9; -update noar tt set b2='B4KOCBIM8RNDS6G23XDLIMSANJKGM' where id=9; -update noar ti set b2='B4KOCBIM8RNDS6G23XDLIMSANJKGM' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - v0 varchar(256) not null, - b0 longblob not null, - b1 longblob not null, - b2 longblob not null -) engine=tokudb; -insert into tt values (1,'','','',''); -insert into tt values (2,'','','',''); -insert into tt values (3,'','','',''); -insert into tt values (4,'','','',''); -insert into tt values (5,'','','',''); -insert into tt values (6,'','','',''); -insert into tt values (7,'','','',''); -insert into tt values (8,'','','',''); -insert into tt values (9,'','','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='I6JZOVD0Q3VKPQV0F16FUI' where id=1; -update noar ti set v0='I6JZOVD0Q3VKPQV0F16FUI' where id=1; -update noar tt set b0='LMA' where id=1; -update noar ti set b0='LMA' where id=1; -update noar tt set v0='QES8729V3ZKS4FZRL' where id=1; -update noar ti set v0='QES8729V3ZKS4FZRL' where id=1; -update noar tt set b1='NDM04IPLD6KNEE1DUYZ739ST3VD0VX' where id=1; -update noar ti set b1='NDM04IPLD6KNEE1DUYZ739ST3VD0VX' where id=1; -update noar tt set v0='9DT3BFV1OKC3FP8ANCB6MOO8UI2Q' where id=1; -update noar ti set v0='9DT3BFV1OKC3FP8ANCB6MOO8UI2Q' where id=1; -update noar tt set b2='3HSO5XNEJ59' where id=1; -update noar ti set b2='3HSO5XNEJ59' where id=1; -update noar tt set v0='785EI1QQNEG1ZW7L' where id=2; -update noar ti set v0='785EI1QQNEG1ZW7L' where id=2; -update noar tt set b0='8X133OT' where id=2; -update noar ti set b0='8X133OT' where id=2; -update noar tt set v0='ZE' where id=2; -update noar ti set v0='ZE' where id=2; -update noar tt set b1='5MWOR8' where id=2; -update noar ti set b1='5MWOR8' where id=2; -update noar tt set v0='JZLR2M' where id=2; -update noar ti set v0='JZLR2M' where id=2; -update noar tt set b2='WGUMKCTYWSMWK6LT2XV7ZX5K7NQ' where id=2; -update noar ti set b2='WGUMKCTYWSMWK6LT2XV7ZX5K7NQ' where id=2; -update noar tt set v0='5JRK06C9QZL0X' where id=3; -update noar ti set v0='5JRK06C9QZL0X' where id=3; -update noar tt set b0='2XK5UFJAC2C86O0BL75PTA1DKRS3' where id=3; -update noar ti set b0='2XK5UFJAC2C86O0BL75PTA1DKRS3' where id=3; -update noar tt set v0='R88GRBCKRR4GOJCJCV0V' where id=3; -update noar ti set v0='R88GRBCKRR4GOJCJCV0V' where id=3; -update noar tt set b1='3ZMX9HD0A37PB8JP8FBF6WIX1IF1D7OD' where id=3; -update noar ti set b1='3ZMX9HD0A37PB8JP8FBF6WIX1IF1D7OD' where id=3; -update noar tt set v0='J2W9YJ1F37BQ0RVU0TE1PD1WK1Q0MOY' where id=3; -update noar ti set v0='J2W9YJ1F37BQ0RVU0TE1PD1WK1Q0MOY' where id=3; -update noar tt set b2='W1VTVX64P881E1C0LEF9' where id=3; -update noar ti set b2='W1VTVX64P881E1C0LEF9' where id=3; -update noar tt set v0='JUQC4PQSW1FH0JBJPF' where id=4; -update noar ti set v0='JUQC4PQSW1FH0JBJPF' where id=4; -update noar tt set b0='MC6Q3JQR88' where id=4; -update noar ti set b0='MC6Q3JQR88' where id=4; -update noar tt set v0='0T5OSG00PW6YWPXEDT1WC0A0ZBVEPM' where id=4; -update noar ti set v0='0T5OSG00PW6YWPXEDT1WC0A0ZBVEPM' where id=4; -update noar tt set b1='7BF7EI1' where id=4; -update noar ti set b1='7BF7EI1' where id=4; -update noar tt set v0='DPV7D8B2VZU9V4JJSZ2N7U1UBQ' where id=4; -update noar ti set v0='DPV7D8B2VZU9V4JJSZ2N7U1UBQ' where id=4; -update noar tt set b2='2FCJ8TFM3N0ICBDMMUM0' where id=4; -update noar ti set b2='2FCJ8TFM3N0ICBDMMUM0' where id=4; -update noar tt set v0='HJQC0OCESWPGF14VOVKT' where id=5; -update noar ti set v0='HJQC0OCESWPGF14VOVKT' where id=5; -update noar tt set b0='8O9UCSXDF7GU' where id=5; -update noar ti set b0='8O9UCSXDF7GU' where id=5; -update noar tt set v0='OYVZDAC0QB1OBB' where id=5; -update noar ti set v0='OYVZDAC0QB1OBB' where id=5; -update noar tt set b1='HHH50' where id=5; -update noar ti set b1='HHH50' where id=5; -update noar tt set v0='Z8MVSR60GOHWRX72QM0UQEN985' where id=5; -update noar ti set v0='Z8MVSR60GOHWRX72QM0UQEN985' where id=5; -update noar tt set b2='K779NJDMFEOA' where id=5; -update noar ti set b2='K779NJDMFEOA' where id=5; -update noar tt set v0='OVXT1X' where id=6; -update noar ti set v0='OVXT1X' where id=6; -update noar tt set b0='63V2OXBQNKL2LD710' where id=6; -update noar ti set b0='63V2OXBQNKL2LD710' where id=6; -update noar tt set v0='IWWAXFNG84G6MTUOB35EB9GKDKYM' where id=6; -update noar ti set v0='IWWAXFNG84G6MTUOB35EB9GKDKYM' where id=6; -update noar tt set b1='7HW3YATS3WGVZWQ8B24C74' where id=6; -update noar ti set b1='7HW3YATS3WGVZWQ8B24C74' where id=6; -update noar tt set v0='GBERGIH8' where id=6; -update noar ti set v0='GBERGIH8' where id=6; -update noar tt set b2='YR3LN' where id=6; -update noar ti set b2='YR3LN' where id=6; -update noar tt set v0='ZXVUWNSHXVNHGDEOWWBF6YBND1C0R3A7' where id=7; -update noar ti set v0='ZXVUWNSHXVNHGDEOWWBF6YBND1C0R3A7' where id=7; -update noar tt set b0='63U2P4E7NJPGC8J0K6Q6KIBTD39OLJ' where id=7; -update noar ti set b0='63U2P4E7NJPGC8J0K6Q6KIBTD39OLJ' where id=7; -update noar tt set v0='Y5MCY5697GHDWMX2LJGZMIN' where id=7; -update noar ti set v0='Y5MCY5697GHDWMX2LJGZMIN' where id=7; -update noar tt set b1='1U09FXSSIYL16M6JEA8H606P' where id=7; -update noar ti set b1='1U09FXSSIYL16M6JEA8H606P' where id=7; -update noar tt set v0='1W0B1V5X9BARERXRDTPS424M0FTS87' where id=7; -update noar ti set v0='1W0B1V5X9BARERXRDTPS424M0FTS87' where id=7; -update noar tt set b2='32BGBT50IT015AQWF11CYXO0RV348V' where id=7; -update noar ti set b2='32BGBT50IT015AQWF11CYXO0RV348V' where id=7; -update noar tt set v0='PQ8FXWADPE5OGKA9W' where id=8; -update noar ti set v0='PQ8FXWADPE5OGKA9W' where id=8; -update noar tt set b0='21YP85HIA8WEFUC8TNX3M50' where id=8; -update noar ti set b0='21YP85HIA8WEFUC8TNX3M50' where id=8; -update noar tt set v0='4VZFL6K01OGTFH2IID1E1' where id=8; -update noar ti set v0='4VZFL6K01OGTFH2IID1E1' where id=8; -update noar tt set b1='JUJISIJ60YBM2GHE9W6M' where id=8; -update noar ti set b1='JUJISIJ60YBM2GHE9W6M' where id=8; -update noar tt set v0='JYQ9EFJDF94MD' where id=8; -update noar ti set v0='JYQ9EFJDF94MD' where id=8; -update noar tt set b2='PHIC3GT1SEJL04' where id=8; -update noar ti set b2='PHIC3GT1SEJL04' where id=8; -update noar tt set v0='9UOB0KDAE96FO' where id=9; -update noar ti set v0='9UOB0KDAE96FO' where id=9; -update noar tt set b0='JX' where id=9; -update noar ti set b0='JX' where id=9; -update noar tt set v0='0Y08GKSNFS62O' where id=9; -update noar ti set v0='0Y08GKSNFS62O' where id=9; -update noar tt set b1='7Q0D2MQDBWV0BOILC56E3E5' where id=9; -update noar ti set b1='7Q0D2MQDBWV0BOILC56E3E5' where id=9; -update noar tt set v0='3ZVTPSW891ZZ9ZW1Q3IIO53SWTAWC22H' where id=9; -update noar ti set v0='3ZVTPSW891ZZ9ZW1Q3IIO53SWTAWC22H' where id=9; -update noar tt set b2='SFUW878IH9VJ0K59RAPU4R9T2' where id=9; -update noar ti set b2='SFUW878IH9VJ0K59RAPU4R9T2' where id=9; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; +--source ../include/fast_update_gen_header.inc + +--let GENERATED=$MYSQL_TMP_DIR/generated_fast_update_blobs_with_varchar.inc + +--perl + + my $nrows = 10; + open(FILE, '>', "$ENV{GENERATED}") or die; + my @blob_types = ('tinyblob', 'blob', 'mediumblob', 'longblob'); + foreach my $i (0, 1) { + foreach my $a (@blob_types) { + foreach my $b (@blob_types) { + foreach my $c (@blob_types) { + foreach my $n ('null', 'not null') { + foreach my $v ('varchar(32)', 'varchar(256)') { + test_blobs([$a, $b, $c], $v, $n, $i, $nrows); + } + } + } + } + } + } + close FILE; + + sub test_blobs { + my $cols = shift; + my $v = shift; + my $n = shift; + my $need_fixed_int = shift; + my $nrows = shift; + + print FILE "create table tt (id bigint unsigned primary key,\n"; + print FILE " f0 int $n,\n" if ($need_fixed_int); + print FILE " v0 $v $n,\n"; + foreach my $i (0 .. $#{$cols}) { + if ($i < $#{$cols}) { + print FILE " b$i $cols->[$i] $n,\n"; + } + else { + print FILE " b$i $cols->[$i] $n\n"; + } + } + print FILE ") engine=tokudb;\n"; + + foreach my $id (1 .. ($nrows - 1)) { + if ($n eq 'null') { + print FILE "insert into tt (id) values ($id);\n"; + } + else { + if ($need_fixed_int) { + print FILE "insert into tt values ($id, 0, '', '', '', '');\n"; + } + else { + print FILE "insert into tt values ($id, '', '', '', '');\n"; + } + } + } + + print FILE "create table ti like tt;\n"; + print FILE "alter table ti engine=innodb;\n"; + print FILE "insert into ti select * from tt;\n"; + + foreach my $id (1 .. ($nrows - 1)) { + foreach my $i (0 .. 2) { + my $long_str = rnd_str((rand(32) + 1), ("A" .. "Z", 0 .. 9)); + print FILE "update tt set v0='$long_str' where id=$id;\n"; + print FILE "update ti set v0='$long_str' where id=$id;\n"; + + $long_str = rnd_str((rand(32) + 1), ("A" .. "Z", 0 .. 9)); + print FILE "update tt set b$i='$long_str' where id=$id;\n"; + print FILE "update ti set b$i='$long_str' where id=$id;\n"; + } + } + + print FILE '--let $diff_tables = test.tt, test.ti'."\n"; + print FILE "--source include/diff_tables.inc\n"; + print FILE "drop table tt, ti;\n"; + } + + sub rnd_str { join '', @_[ map{ rand @_ } 1 .. shift ] } + +EOF + +--source ../include/fast_update_gen_footer_silent.inc diff --git a/storage/tokudb/mysql-test/tokudb/t/fast_update_char.test b/storage/tokudb/mysql-test/tokudb/t/fast_update_char.test index 2ee6fbd79ee..17364845942 100644 --- a/storage/tokudb/mysql-test/tokudb/t/fast_update_char.test +++ b/storage/tokudb/mysql-test/tokudb/t/fast_update_char.test @@ -4,94 +4,96 @@ source include/have_tokudb.inc; source include/have_innodb.inc; -set default_storage_engine='tokudb'; +set tokudb_enable_fast_update=1; +source ../include/setup_fast_update_upsert.inc; -disable_warnings; -drop table if exists tt, ti; -enable_warnings; - -set tokudb_disable_slow_update=1; - -create table tt (id int primary key, c char(32), b binary(32)); +create table tt (id int primary key, c char(32), b binary(32)) engine = tokudb; create table ti like tt; alter table ti engine=innodb; insert into tt values (1,null,null); insert into ti values (1,null,null); -update noar tt set c='hi' where id=1; -update noar ti set c='hi' where id=1; +update tt set c='hi' where id=1; +update ti set c='hi' where id=1; let $diff_tables = test.tt, test.ti; source include/diff_tables.inc; -update noar tt set c='there' where id=1; -update noar ti set c='there' where id=1; +update tt set c='there' where id=1; +update ti set c='there' where id=1; let $diff_tables = test.tt, test.ti; source include/diff_tables.inc; drop table tt, ti; -create table tt (id char(8) primary key, c char(32), b binary(32)); +create table tt (id char(8) primary key, + c char(32), + b binary(32)) engine = tokudb; create table ti like tt; alter table ti engine=innodb; insert into tt values ('1',null,null); insert into ti values ('1',null,null); -update noar tt set c='hi' where id='1'; -update noar ti set c='hi' where id='1'; +update tt set c='hi' where id='1'; +update ti set c='hi' where id='1'; let $diff_tables = test.tt, test.ti; source include/diff_tables.inc; -update noar tt set c='there' where id='1'; -update noar ti set c='there' where id='1'; +update tt set c='there' where id='1'; +update ti set c='there' where id='1'; let $diff_tables = test.tt, test.ti; source include/diff_tables.inc; drop table tt, ti; -create table tt (id varchar(8) primary key, a int, b char(32), c char(32), d binary(32)); +create table tt (id varchar(8) primary key, + a int, + b char(32), + c char(32), + d binary(32)) engine = tokudb; create table ti like tt; alter table ti engine=innodb; insert into tt values ('1',null,null,null,null); insert into ti values ('1',null,null,null,null); -update noar tt set b='hi' where id='1'; -update noar ti set b='hi' where id='1'; +update tt set b='hi' where id='1'; +update ti set b='hi' where id='1'; let $diff_tables = test.tt, test.ti; source include/diff_tables.inc; -update noar tt set c='there' where id='1'; -update noar ti set c='there' where id='1'; +update tt set c='there' where id='1'; +update ti set c='there' where id='1'; let $diff_tables = test.tt, test.ti; source include/diff_tables.inc; drop table tt, ti; -create table tt (id varchar(8) primary key, a int, b char(32), c char(32), d binary(32)); +create table tt (id varchar(8) primary key, + a int, + b char(32), + c char(32), + d binary(32)) engine = tokudb; create table ti like tt; alter table ti engine=innodb; insert into tt values ('1',null,null,null,null); insert into ti values ('1',null,null,null,null); -update noar tt set b='123' where id='1'; -update noar ti set b='123' where id='1'; +update tt set b='123' where id='1'; +update ti set b='123' where id='1'; let $diff_tables = test.tt, test.ti; source include/diff_tables.inc; -update noar tt set c=456 where id='1'; -update noar ti set c=456 where id='1'; +update tt set c=456 where id='1'; +update ti set c=456 where id='1'; let $diff_tables = test.tt, test.ti; source include/diff_tables.inc; -update noar tt set c=789 where id=1; -update noar ti set c=789 where id=1; +update tt set c=789 where id=1; +update ti set c=789 where id=1; let $diff_tables = test.tt, test.ti; source include/diff_tables.inc; drop table tt, ti; - - - diff --git a/storage/tokudb/mysql-test/tokudb/t/fast_update_deadlock.test b/storage/tokudb/mysql-test/tokudb/t/fast_update_deadlock.test index 24221f85f75..380f28d6a79 100644 --- a/storage/tokudb/mysql-test/tokudb/t/fast_update_deadlock.test +++ b/storage/tokudb/mysql-test/tokudb/t/fast_update_deadlock.test @@ -1,31 +1,31 @@ source include/have_tokudb.inc; -disable_warnings; -drop table if exists t; -enable_warnings; +set tokudb_enable_fast_update=1; +source ../include/setup_fast_update_upsert.inc; -set default_storage_engine='tokudb'; - -create table t (id bigint primary key, b bigint not null default 0); +create table t (id bigint primary key, + b bigint not null default 0) engine = tokudb; insert into t (id) values (1),(2); connect (conn1,localhost,root,,); +set tokudb_enable_fast_update=1; +source ../include/setup_fast_update_upsert.inc; connection default; begin; -update noar t set b=b+1 where id=1; +update t set b=b+1 where id=1; connection conn1; begin; -update noar t set b=b-1 where id=2; +update t set b=b-1 where id=2; connection default; -send update noar t set b=b+1 where id=2; +send update t set b=b+1 where id=2; connection conn1; sleep 1; error 1205,1213; -update noar t set b=b-1 where id=1; +update t set b=b-1 where id=1; rollback; connection default; @@ -38,4 +38,3 @@ disconnect conn1; select * from t; drop table t; - diff --git a/storage/tokudb/mysql-test/tokudb/t/fast_update_decr_floor.py b/storage/tokudb/mysql-test/tokudb/t/fast_update_decr_floor.py deleted file mode 100644 index 430d4c4f365..00000000000 --- a/storage/tokudb/mysql-test/tokudb/t/fast_update_decr_floor.py +++ /dev/null @@ -1,58 +0,0 @@ -#!/usr/bin/env python - -import sys - -def main(): - print "# generated by tokudb_update_decr_floor.py" - print "source include/have_tokudb.inc;" - print "source include/have_innodb.inc;" - print "set default_storage_engine='tokudb';" - print "disable_warnings;" - print "drop table if exists t;" - print "enable_warnings;" - - print "set tokudb_disable_slow_update=1;" - - for t in [ 'tinyint', 'smallint', 'mediumint', 'int', 'bigint' ]: - for u in [ '', 'unsigned' ]: - for n in [ 'null', 'not null' ]: - test_int(t, u, n) - return 0 - -def test_int(t, u, n): - print "create table tt (" - print " id %s %s %s primary key," % (t, u, n) - print " x %s %s %s" % (t, u, n) - print ");" - - print "insert into tt values (1,4);" - print "create table ti like tt;" - print "alter table ti engine=innodb;" - print "insert into ti select * from tt;" - - if u == 'unsigned': - print "update noar tt set x=if(x=0,0,x-1) where id=1;" - print "update noar ti set x=if(x=0,0,x-1) where id=1;" - - print "update noar tt set x=if(x=0,0,x-1) where id=1;" - print "update noar ti set x=if(x=0,0,x-1) where id=1;" - - print "update noar tt set x=if(x=0,0,x-1) where id=1;" - print "update noar ti set x=if(x=0,0,x-1) where id=1;" - - print "update noar tt set x=if(x=0,0,x-1) where id=1;" - print "update noar ti set x=if(x=0,0,x-1) where id=1;" - - print "# try to decrement when x=0" - print "update noar tt set x=if(x=0,0,x-1) where id=1;" - print "update noar ti set x=if(x=0,0,x-1) where id=1;" - print "let $diff_tables = test.tt, test.ti;" - print "source include/diff_tables.inc;" - else: - print "replace_regex /MariaDB/XYZ/ /MySQL/XYZ/;" - print "error ER_UNSUPPORTED_EXTENSION;" - print "update noar tt set x=if(x=0,0,x-1) where id=1;" - - print "drop table tt, ti;" - -sys.exit(main()) diff --git a/storage/tokudb/mysql-test/tokudb/t/fast_update_decr_floor.test b/storage/tokudb/mysql-test/tokudb/t/fast_update_decr_floor.test index 133331d3578..109e39d0e0a 100644 --- a/storage/tokudb/mysql-test/tokudb/t/fast_update_decr_floor.test +++ b/storage/tokudb/mysql-test/tokudb/t/fast_update_decr_floor.test @@ -1,348 +1,61 @@ -# generated by tokudb_update_decr_floor.py -source include/have_tokudb.inc; -source include/have_innodb.inc; -set default_storage_engine='tokudb'; -disable_warnings; -drop table if exists t; -enable_warnings; -set tokudb_disable_slow_update=1; -create table tt ( - id tinyint null primary key, - x tinyint null -); -insert into tt values (1,4); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -replace_regex /MariaDB/XYZ/ /MySQL/XYZ/; -error ER_UNSUPPORTED_EXTENSION; -update noar tt set x=if(x=0,0,x-1) where id=1; -drop table tt, ti; -create table tt ( - id tinyint not null primary key, - x tinyint not null -); -insert into tt values (1,4); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -replace_regex /MariaDB/XYZ/ /MySQL/XYZ/; -error ER_UNSUPPORTED_EXTENSION; -update noar tt set x=if(x=0,0,x-1) where id=1; -drop table tt, ti; -create table tt ( - id tinyint unsigned null primary key, - x tinyint unsigned null -); -insert into tt values (1,4); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set x=if(x=0,0,x-1) where id=1; -update noar ti set x=if(x=0,0,x-1) where id=1; -update noar tt set x=if(x=0,0,x-1) where id=1; -update noar ti set x=if(x=0,0,x-1) where id=1; -update noar tt set x=if(x=0,0,x-1) where id=1; -update noar ti set x=if(x=0,0,x-1) where id=1; -update noar tt set x=if(x=0,0,x-1) where id=1; -update noar ti set x=if(x=0,0,x-1) where id=1; -# try to decrement when x=0 -update noar tt set x=if(x=0,0,x-1) where id=1; -update noar ti set x=if(x=0,0,x-1) where id=1; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt ( - id tinyint unsigned not null primary key, - x tinyint unsigned not null -); -insert into tt values (1,4); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set x=if(x=0,0,x-1) where id=1; -update noar ti set x=if(x=0,0,x-1) where id=1; -update noar tt set x=if(x=0,0,x-1) where id=1; -update noar ti set x=if(x=0,0,x-1) where id=1; -update noar tt set x=if(x=0,0,x-1) where id=1; -update noar ti set x=if(x=0,0,x-1) where id=1; -update noar tt set x=if(x=0,0,x-1) where id=1; -update noar ti set x=if(x=0,0,x-1) where id=1; -# try to decrement when x=0 -update noar tt set x=if(x=0,0,x-1) where id=1; -update noar ti set x=if(x=0,0,x-1) where id=1; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt ( - id smallint null primary key, - x smallint null -); -insert into tt values (1,4); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -replace_regex /MariaDB/XYZ/ /MySQL/XYZ/; -error ER_UNSUPPORTED_EXTENSION; -update noar tt set x=if(x=0,0,x-1) where id=1; -drop table tt, ti; -create table tt ( - id smallint not null primary key, - x smallint not null -); -insert into tt values (1,4); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -replace_regex /MariaDB/XYZ/ /MySQL/XYZ/; -error ER_UNSUPPORTED_EXTENSION; -update noar tt set x=if(x=0,0,x-1) where id=1; -drop table tt, ti; -create table tt ( - id smallint unsigned null primary key, - x smallint unsigned null -); -insert into tt values (1,4); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set x=if(x=0,0,x-1) where id=1; -update noar ti set x=if(x=0,0,x-1) where id=1; -update noar tt set x=if(x=0,0,x-1) where id=1; -update noar ti set x=if(x=0,0,x-1) where id=1; -update noar tt set x=if(x=0,0,x-1) where id=1; -update noar ti set x=if(x=0,0,x-1) where id=1; -update noar tt set x=if(x=0,0,x-1) where id=1; -update noar ti set x=if(x=0,0,x-1) where id=1; -# try to decrement when x=0 -update noar tt set x=if(x=0,0,x-1) where id=1; -update noar ti set x=if(x=0,0,x-1) where id=1; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt ( - id smallint unsigned not null primary key, - x smallint unsigned not null -); -insert into tt values (1,4); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set x=if(x=0,0,x-1) where id=1; -update noar ti set x=if(x=0,0,x-1) where id=1; -update noar tt set x=if(x=0,0,x-1) where id=1; -update noar ti set x=if(x=0,0,x-1) where id=1; -update noar tt set x=if(x=0,0,x-1) where id=1; -update noar ti set x=if(x=0,0,x-1) where id=1; -update noar tt set x=if(x=0,0,x-1) where id=1; -update noar ti set x=if(x=0,0,x-1) where id=1; -# try to decrement when x=0 -update noar tt set x=if(x=0,0,x-1) where id=1; -update noar ti set x=if(x=0,0,x-1) where id=1; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt ( - id mediumint null primary key, - x mediumint null -); -insert into tt values (1,4); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -replace_regex /MariaDB/XYZ/ /MySQL/XYZ/; -error ER_UNSUPPORTED_EXTENSION; -update noar tt set x=if(x=0,0,x-1) where id=1; -drop table tt, ti; -create table tt ( - id mediumint not null primary key, - x mediumint not null -); -insert into tt values (1,4); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -replace_regex /MariaDB/XYZ/ /MySQL/XYZ/; -error ER_UNSUPPORTED_EXTENSION; -update noar tt set x=if(x=0,0,x-1) where id=1; -drop table tt, ti; -create table tt ( - id mediumint unsigned null primary key, - x mediumint unsigned null -); -insert into tt values (1,4); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set x=if(x=0,0,x-1) where id=1; -update noar ti set x=if(x=0,0,x-1) where id=1; -update noar tt set x=if(x=0,0,x-1) where id=1; -update noar ti set x=if(x=0,0,x-1) where id=1; -update noar tt set x=if(x=0,0,x-1) where id=1; -update noar ti set x=if(x=0,0,x-1) where id=1; -update noar tt set x=if(x=0,0,x-1) where id=1; -update noar ti set x=if(x=0,0,x-1) where id=1; -# try to decrement when x=0 -update noar tt set x=if(x=0,0,x-1) where id=1; -update noar ti set x=if(x=0,0,x-1) where id=1; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt ( - id mediumint unsigned not null primary key, - x mediumint unsigned not null -); -insert into tt values (1,4); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set x=if(x=0,0,x-1) where id=1; -update noar ti set x=if(x=0,0,x-1) where id=1; -update noar tt set x=if(x=0,0,x-1) where id=1; -update noar ti set x=if(x=0,0,x-1) where id=1; -update noar tt set x=if(x=0,0,x-1) where id=1; -update noar ti set x=if(x=0,0,x-1) where id=1; -update noar tt set x=if(x=0,0,x-1) where id=1; -update noar ti set x=if(x=0,0,x-1) where id=1; -# try to decrement when x=0 -update noar tt set x=if(x=0,0,x-1) where id=1; -update noar ti set x=if(x=0,0,x-1) where id=1; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt ( - id int null primary key, - x int null -); -insert into tt values (1,4); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -replace_regex /MariaDB/XYZ/ /MySQL/XYZ/; -error ER_UNSUPPORTED_EXTENSION; -update noar tt set x=if(x=0,0,x-1) where id=1; -drop table tt, ti; -create table tt ( - id int not null primary key, - x int not null -); -insert into tt values (1,4); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -replace_regex /MariaDB/XYZ/ /MySQL/XYZ/; -error ER_UNSUPPORTED_EXTENSION; -update noar tt set x=if(x=0,0,x-1) where id=1; -drop table tt, ti; -create table tt ( - id int unsigned null primary key, - x int unsigned null -); -insert into tt values (1,4); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set x=if(x=0,0,x-1) where id=1; -update noar ti set x=if(x=0,0,x-1) where id=1; -update noar tt set x=if(x=0,0,x-1) where id=1; -update noar ti set x=if(x=0,0,x-1) where id=1; -update noar tt set x=if(x=0,0,x-1) where id=1; -update noar ti set x=if(x=0,0,x-1) where id=1; -update noar tt set x=if(x=0,0,x-1) where id=1; -update noar ti set x=if(x=0,0,x-1) where id=1; -# try to decrement when x=0 -update noar tt set x=if(x=0,0,x-1) where id=1; -update noar ti set x=if(x=0,0,x-1) where id=1; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt ( - id int unsigned not null primary key, - x int unsigned not null -); -insert into tt values (1,4); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set x=if(x=0,0,x-1) where id=1; -update noar ti set x=if(x=0,0,x-1) where id=1; -update noar tt set x=if(x=0,0,x-1) where id=1; -update noar ti set x=if(x=0,0,x-1) where id=1; -update noar tt set x=if(x=0,0,x-1) where id=1; -update noar ti set x=if(x=0,0,x-1) where id=1; -update noar tt set x=if(x=0,0,x-1) where id=1; -update noar ti set x=if(x=0,0,x-1) where id=1; -# try to decrement when x=0 -update noar tt set x=if(x=0,0,x-1) where id=1; -update noar ti set x=if(x=0,0,x-1) where id=1; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt ( - id bigint null primary key, - x bigint null -); -insert into tt values (1,4); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -replace_regex /MariaDB/XYZ/ /MySQL/XYZ/; -error ER_UNSUPPORTED_EXTENSION; -update noar tt set x=if(x=0,0,x-1) where id=1; -drop table tt, ti; -create table tt ( - id bigint not null primary key, - x bigint not null -); -insert into tt values (1,4); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -replace_regex /MariaDB/XYZ/ /MySQL/XYZ/; -error ER_UNSUPPORTED_EXTENSION; -update noar tt set x=if(x=0,0,x-1) where id=1; -drop table tt, ti; -create table tt ( - id bigint unsigned null primary key, - x bigint unsigned null -); -insert into tt values (1,4); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set x=if(x=0,0,x-1) where id=1; -update noar ti set x=if(x=0,0,x-1) where id=1; -update noar tt set x=if(x=0,0,x-1) where id=1; -update noar ti set x=if(x=0,0,x-1) where id=1; -update noar tt set x=if(x=0,0,x-1) where id=1; -update noar ti set x=if(x=0,0,x-1) where id=1; -update noar tt set x=if(x=0,0,x-1) where id=1; -update noar ti set x=if(x=0,0,x-1) where id=1; -# try to decrement when x=0 -update noar tt set x=if(x=0,0,x-1) where id=1; -update noar ti set x=if(x=0,0,x-1) where id=1; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt ( - id bigint unsigned not null primary key, - x bigint unsigned not null -); -insert into tt values (1,4); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set x=if(x=0,0,x-1) where id=1; -update noar ti set x=if(x=0,0,x-1) where id=1; -update noar tt set x=if(x=0,0,x-1) where id=1; -update noar ti set x=if(x=0,0,x-1) where id=1; -update noar tt set x=if(x=0,0,x-1) where id=1; -update noar ti set x=if(x=0,0,x-1) where id=1; -update noar tt set x=if(x=0,0,x-1) where id=1; -update noar ti set x=if(x=0,0,x-1) where id=1; -# try to decrement when x=0 -update noar tt set x=if(x=0,0,x-1) where id=1; -update noar ti set x=if(x=0,0,x-1) where id=1; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; +--source ../include/fast_update_gen_header.inc + +--let GENERATED=$MYSQL_TMP_DIR/generated_fast_update_decr_floor.inc + +--perl + open(FILE, '>', "$ENV{GENERATED}") or die; + foreach my $t ('tinyint', 'smallint', 'mediumint', 'int', 'bigint') { + foreach my $u ('', 'unsigned') { + foreach my $n ('null', 'not null') { + test_int($t, $u, $n); + } + } + } + close FILE; + + sub test_int { + my $t = shift; + my $u = shift; + my $n = shift; + + print FILE "create table tt (\n"; + print FILE " id $t $u primary key,\n"; + print FILE " x $t $u $n\n"; + print FILE ") engine = tokudb;\n"; + + print FILE "insert into tt values (1,4);\n"; + print FILE "create table ti like tt;\n"; + print FILE "alter table ti engine=innodb;\n"; + print FILE "insert into ti select * from tt;\n"; + + if ($u eq 'unsigned') { + print FILE "update tt set x = if(x = 0, 0, x - 1) where id = 1;\n"; + print FILE "update ti set x = if(x = 0, 0, x - 1) where id = 1;\n"; + + print FILE "update tt set x = if(x = 0, 0, x - 1) where id = 1;\n"; + print FILE "update ti set x = if(x = 0, 0, x - 1) where id = 1;\n"; + + print FILE "update tt set x = if(x = 0, 0, x - 1) where id = 1;\n"; + print FILE "update ti set x = if(x = 0, 0, x - 1) where id = 1;\n"; + + print FILE "update tt set x = if(x = 0, 0, x - 1) where id = 1;\n"; + print FILE "update ti set x = if(x = 0, 0, x - 1) where id = 1;\n"; + + print FILE "# try to decrement when x=0\n"; + print FILE "update tt set x = if(x = 0, 0, x - 1) where id = 1;\n"; + print FILE "update ti set x = if(x = 0, 0, x - 1) where id = 1;\n"; + print FILE '--let $diff_tables = test.tt, test.ti'."\n"; + print FILE "--source include/diff_tables.inc\n"; + } + else { + print FILE "--replace_regex /MariaDB/XYZ/ /MySQL/XYZ/\n"; + print FILE "--error ER_UNSUPPORTED_EXTENSION\n"; + print FILE "update tt set x = if(x = 0, 0, x - 1) where id = 1;\n"; + } + + print FILE "drop table tt, ti;\n"; + } + +EOF + +--source ../include/fast_update_gen_footer_silent.inc diff --git a/storage/tokudb/mysql-test/tokudb/t/fast_update_disable_slow_update.test b/storage/tokudb/mysql-test/tokudb/t/fast_update_disable_slow_update.test deleted file mode 100644 index 3fdca0a6edd..00000000000 --- a/storage/tokudb/mysql-test/tokudb/t/fast_update_disable_slow_update.test +++ /dev/null @@ -1,17 +0,0 @@ ---source include/have_tokudb.inc - -set default_storage_engine='tokudb'; - ---disable_warnings -drop table if exists t; ---enable_warnings - -create table t (id int primary key, b int, key(b)); - -set tokudb_disable_slow_update=1; - -replace_regex /MariaDB/XYZ/ /MySQL/XYZ/; ---error ER_UNSUPPORTED_EXTENSION -update noar t set b=b+1 where id=42; - -drop table t; diff --git a/storage/tokudb/mysql-test/tokudb/t/fast_update_error.test b/storage/tokudb/mysql-test/tokudb/t/fast_update_error.test index dc7c4d277dc..51fde25a5f2 100644 --- a/storage/tokudb/mysql-test/tokudb/t/fast_update_error.test +++ b/storage/tokudb/mysql-test/tokudb/t/fast_update_error.test @@ -1,25 +1,19 @@ # test that char field updates are fast # test that char field primary keys are fast - source include/have_tokudb.inc; -set default_storage_engine='tokudb'; +set tokudb_enable_fast_update=1; +source ../include/setup_fast_update_upsert.inc; -disable_warnings; -drop table if exists tt; -enable_warnings; - -set tokudb_disable_slow_update=1; - -create table tt (id int primary key, x int); +create table tt (id int primary key, x int) engine = tokudb; replace_regex /MariaDB/XYZ/ /MySQL/XYZ/; error ER_UNSUPPORTED_EXTENSION; -update noar tt set x=1 where id='abc'; +update tt set x=1 where id='abc'; replace_regex /MariaDB/XYZ/ /MySQL/XYZ/; error ER_UNSUPPORTED_EXTENSION; -update noar tt set x='abc' where id=1; +update tt set x='abc' where id=1; drop table tt; diff --git a/storage/tokudb/mysql-test/tokudb/t/fast_update_int.py b/storage/tokudb/mysql-test/tokudb/t/fast_update_int.py deleted file mode 100644 index f6414f0ec5b..00000000000 --- a/storage/tokudb/mysql-test/tokudb/t/fast_update_int.py +++ /dev/null @@ -1,77 +0,0 @@ -#!/usr/bin/env python - -import sys - -def main(): - print "# generated by tokudb_fast_update_int.py" - print "source include/have_tokudb.inc;" - print "source include/have_innodb.inc;" - print "set default_storage_engine='tokudb';" - print "disable_warnings;" - print "drop table if exists t;" - print "enable_warnings;" - - for t in [ 'tinyint', 'smallint', 'mediumint', 'int', 'bigint' ]: - for u in [ '', 'unsigned' ]: - for n in [ 'null', 'not null' ]: - test_int(t, u, n) - return 0 - -def test_int(t, u, n): - print "create table t (" - print " id %s %s %s primary key," % (t, u, n) - print " x %s %s %s" % (t, u, n) - print ");" - - print "insert into t values (1,0),(2,0),(3,0);" - print "select * from t;" - - print "set tokudb_disable_slow_update=1;" - - # set is fast - print "update noar t set x=100 where id=2;" - print "select * from t;" - - # increment is fast - print "update noar t set x=x+1 where id=3;" - print "select * from t;" - - # decrement is fast - print "update noar t set x=x-1 where id=3;" - print "select * from t;" - - # field=field+constant is fast - print "update noar t set x=x+100 where id=3;" - print "select * from t;" - - # field=field-constant is fast - print "update noar t set x=x-100 where id=3;" - print "select * from t;" - - # field=constant+field is not yet fast - print "replace_regex /MariaDB/XYZ/ /MySQL/XYZ/;" - print "error ER_UNSUPPORTED_EXTENSION;" - print "update noar t set x=1+x where id=1;" - - # field=-field is not yet fast - print "replace_regex /MariaDB/XYZ/ /MySQL/XYZ/;" - print "error ER_UNSUPPORTED_EXTENSION;" - print "update noar t set x=-x where id=1;" - - # yes, we can update a field in a non-existent row and the row is not inserted - print "update noar t set x=x+1 where id=100;" - print "select * from t;" - - # range updates are not yet fast - print "replace_regex /MariaDB/XYZ/ /MySQL/XYZ/;" - print "error ER_UNSUPPORTED_EXTENSION;" - print "update noar t set x=x+1 where 1 <= id and id < 100;" - - # full table updates are not yet fast - print "replace_regex /MariaDB/XYZ/ /MySQL/XYZ/;" - print "error ER_UNSUPPORTED_EXTENSION;" - print "update noar t set x=x+1;" - - print "drop table t;" - -sys.exit(main()) diff --git a/storage/tokudb/mysql-test/tokudb/t/fast_update_int.test b/storage/tokudb/mysql-test/tokudb/t/fast_update_int.test index e663cbfb8fd..699fc9dacba 100644 --- a/storage/tokudb/mysql-test/tokudb/t/fast_update_int.test +++ b/storage/tokudb/mysql-test/tokudb/t/fast_update_int.test @@ -1,647 +1,35 @@ -# generated by tokudb_fast_update_int.py -source include/have_tokudb.inc; -source include/have_innodb.inc; -set default_storage_engine='tokudb'; -disable_warnings; -drop table if exists t; -enable_warnings; -create table t ( - id tinyint null primary key, - x tinyint null -); -insert into t values (1,0),(2,0),(3,0); -select * from t; -set tokudb_disable_slow_update=1; -update noar t set x=100 where id=2; -select * from t; -update noar t set x=x+1 where id=3; -select * from t; -update noar t set x=x-1 where id=3; -select * from t; -update noar t set x=x+100 where id=3; -select * from t; -update noar t set x=x-100 where id=3; -select * from t; -replace_regex /MariaDB/XYZ/ /MySQL/XYZ/; -error ER_UNSUPPORTED_EXTENSION; -update noar t set x=1+x where id=1; -replace_regex /MariaDB/XYZ/ /MySQL/XYZ/; -error ER_UNSUPPORTED_EXTENSION; -update noar t set x=-x where id=1; -update noar t set x=x+1 where id=100; -select * from t; -replace_regex /MariaDB/XYZ/ /MySQL/XYZ/; -error ER_UNSUPPORTED_EXTENSION; -update noar t set x=x+1 where 1 <= id and id < 100; -replace_regex /MariaDB/XYZ/ /MySQL/XYZ/; -error ER_UNSUPPORTED_EXTENSION; -update noar t set x=x+1; -drop table t; -create table t ( - id tinyint not null primary key, - x tinyint not null -); -insert into t values (1,0),(2,0),(3,0); -select * from t; -set tokudb_disable_slow_update=1; -update noar t set x=100 where id=2; -select * from t; -update noar t set x=x+1 where id=3; -select * from t; -update noar t set x=x-1 where id=3; -select * from t; -update noar t set x=x+100 where id=3; -select * from t; -update noar t set x=x-100 where id=3; -select * from t; -replace_regex /MariaDB/XYZ/ /MySQL/XYZ/; -error ER_UNSUPPORTED_EXTENSION; -update noar t set x=1+x where id=1; -replace_regex /MariaDB/XYZ/ /MySQL/XYZ/; -error ER_UNSUPPORTED_EXTENSION; -update noar t set x=-x where id=1; -update noar t set x=x+1 where id=100; -select * from t; -replace_regex /MariaDB/XYZ/ /MySQL/XYZ/; -error ER_UNSUPPORTED_EXTENSION; -update noar t set x=x+1 where 1 <= id and id < 100; -replace_regex /MariaDB/XYZ/ /MySQL/XYZ/; -error ER_UNSUPPORTED_EXTENSION; -update noar t set x=x+1; -drop table t; -create table t ( - id tinyint unsigned null primary key, - x tinyint unsigned null -); -insert into t values (1,0),(2,0),(3,0); -select * from t; -set tokudb_disable_slow_update=1; -update noar t set x=100 where id=2; -select * from t; -update noar t set x=x+1 where id=3; -select * from t; -update noar t set x=x-1 where id=3; -select * from t; -update noar t set x=x+100 where id=3; -select * from t; -update noar t set x=x-100 where id=3; -select * from t; -replace_regex /MariaDB/XYZ/ /MySQL/XYZ/; -error ER_UNSUPPORTED_EXTENSION; -update noar t set x=1+x where id=1; -replace_regex /MariaDB/XYZ/ /MySQL/XYZ/; -error ER_UNSUPPORTED_EXTENSION; -update noar t set x=-x where id=1; -update noar t set x=x+1 where id=100; -select * from t; -replace_regex /MariaDB/XYZ/ /MySQL/XYZ/; -error ER_UNSUPPORTED_EXTENSION; -update noar t set x=x+1 where 1 <= id and id < 100; -replace_regex /MariaDB/XYZ/ /MySQL/XYZ/; -error ER_UNSUPPORTED_EXTENSION; -update noar t set x=x+1; -drop table t; -create table t ( - id tinyint unsigned not null primary key, - x tinyint unsigned not null -); -insert into t values (1,0),(2,0),(3,0); -select * from t; -set tokudb_disable_slow_update=1; -update noar t set x=100 where id=2; -select * from t; -update noar t set x=x+1 where id=3; -select * from t; -update noar t set x=x-1 where id=3; -select * from t; -update noar t set x=x+100 where id=3; -select * from t; -update noar t set x=x-100 where id=3; -select * from t; -replace_regex /MariaDB/XYZ/ /MySQL/XYZ/; -error ER_UNSUPPORTED_EXTENSION; -update noar t set x=1+x where id=1; -replace_regex /MariaDB/XYZ/ /MySQL/XYZ/; -error ER_UNSUPPORTED_EXTENSION; -update noar t set x=-x where id=1; -update noar t set x=x+1 where id=100; -select * from t; -replace_regex /MariaDB/XYZ/ /MySQL/XYZ/; -error ER_UNSUPPORTED_EXTENSION; -update noar t set x=x+1 where 1 <= id and id < 100; -replace_regex /MariaDB/XYZ/ /MySQL/XYZ/; -error ER_UNSUPPORTED_EXTENSION; -update noar t set x=x+1; -drop table t; -create table t ( - id smallint null primary key, - x smallint null -); -insert into t values (1,0),(2,0),(3,0); -select * from t; -set tokudb_disable_slow_update=1; -update noar t set x=100 where id=2; -select * from t; -update noar t set x=x+1 where id=3; -select * from t; -update noar t set x=x-1 where id=3; -select * from t; -update noar t set x=x+100 where id=3; -select * from t; -update noar t set x=x-100 where id=3; -select * from t; -replace_regex /MariaDB/XYZ/ /MySQL/XYZ/; -error ER_UNSUPPORTED_EXTENSION; -update noar t set x=1+x where id=1; -replace_regex /MariaDB/XYZ/ /MySQL/XYZ/; -error ER_UNSUPPORTED_EXTENSION; -update noar t set x=-x where id=1; -update noar t set x=x+1 where id=100; -select * from t; -replace_regex /MariaDB/XYZ/ /MySQL/XYZ/; -error ER_UNSUPPORTED_EXTENSION; -update noar t set x=x+1 where 1 <= id and id < 100; -replace_regex /MariaDB/XYZ/ /MySQL/XYZ/; -error ER_UNSUPPORTED_EXTENSION; -update noar t set x=x+1; -drop table t; -create table t ( - id smallint not null primary key, - x smallint not null -); -insert into t values (1,0),(2,0),(3,0); -select * from t; -set tokudb_disable_slow_update=1; -update noar t set x=100 where id=2; -select * from t; -update noar t set x=x+1 where id=3; -select * from t; -update noar t set x=x-1 where id=3; -select * from t; -update noar t set x=x+100 where id=3; -select * from t; -update noar t set x=x-100 where id=3; -select * from t; -replace_regex /MariaDB/XYZ/ /MySQL/XYZ/; -error ER_UNSUPPORTED_EXTENSION; -update noar t set x=1+x where id=1; -replace_regex /MariaDB/XYZ/ /MySQL/XYZ/; -error ER_UNSUPPORTED_EXTENSION; -update noar t set x=-x where id=1; -update noar t set x=x+1 where id=100; -select * from t; -replace_regex /MariaDB/XYZ/ /MySQL/XYZ/; -error ER_UNSUPPORTED_EXTENSION; -update noar t set x=x+1 where 1 <= id and id < 100; -replace_regex /MariaDB/XYZ/ /MySQL/XYZ/; -error ER_UNSUPPORTED_EXTENSION; -update noar t set x=x+1; -drop table t; -create table t ( - id smallint unsigned null primary key, - x smallint unsigned null -); -insert into t values (1,0),(2,0),(3,0); -select * from t; -set tokudb_disable_slow_update=1; -update noar t set x=100 where id=2; -select * from t; -update noar t set x=x+1 where id=3; -select * from t; -update noar t set x=x-1 where id=3; -select * from t; -update noar t set x=x+100 where id=3; -select * from t; -update noar t set x=x-100 where id=3; -select * from t; -replace_regex /MariaDB/XYZ/ /MySQL/XYZ/; -error ER_UNSUPPORTED_EXTENSION; -update noar t set x=1+x where id=1; -replace_regex /MariaDB/XYZ/ /MySQL/XYZ/; -error ER_UNSUPPORTED_EXTENSION; -update noar t set x=-x where id=1; -update noar t set x=x+1 where id=100; -select * from t; -replace_regex /MariaDB/XYZ/ /MySQL/XYZ/; -error ER_UNSUPPORTED_EXTENSION; -update noar t set x=x+1 where 1 <= id and id < 100; -replace_regex /MariaDB/XYZ/ /MySQL/XYZ/; -error ER_UNSUPPORTED_EXTENSION; -update noar t set x=x+1; -drop table t; -create table t ( - id smallint unsigned not null primary key, - x smallint unsigned not null -); -insert into t values (1,0),(2,0),(3,0); -select * from t; -set tokudb_disable_slow_update=1; -update noar t set x=100 where id=2; -select * from t; -update noar t set x=x+1 where id=3; -select * from t; -update noar t set x=x-1 where id=3; -select * from t; -update noar t set x=x+100 where id=3; -select * from t; -update noar t set x=x-100 where id=3; -select * from t; -replace_regex /MariaDB/XYZ/ /MySQL/XYZ/; -error ER_UNSUPPORTED_EXTENSION; -update noar t set x=1+x where id=1; -replace_regex /MariaDB/XYZ/ /MySQL/XYZ/; -error ER_UNSUPPORTED_EXTENSION; -update noar t set x=-x where id=1; -update noar t set x=x+1 where id=100; -select * from t; -replace_regex /MariaDB/XYZ/ /MySQL/XYZ/; -error ER_UNSUPPORTED_EXTENSION; -update noar t set x=x+1 where 1 <= id and id < 100; -replace_regex /MariaDB/XYZ/ /MySQL/XYZ/; -error ER_UNSUPPORTED_EXTENSION; -update noar t set x=x+1; -drop table t; -create table t ( - id mediumint null primary key, - x mediumint null -); -insert into t values (1,0),(2,0),(3,0); -select * from t; -set tokudb_disable_slow_update=1; -update noar t set x=100 where id=2; -select * from t; -update noar t set x=x+1 where id=3; -select * from t; -update noar t set x=x-1 where id=3; -select * from t; -update noar t set x=x+100 where id=3; -select * from t; -update noar t set x=x-100 where id=3; -select * from t; -replace_regex /MariaDB/XYZ/ /MySQL/XYZ/; -error ER_UNSUPPORTED_EXTENSION; -update noar t set x=1+x where id=1; -replace_regex /MariaDB/XYZ/ /MySQL/XYZ/; -error ER_UNSUPPORTED_EXTENSION; -update noar t set x=-x where id=1; -update noar t set x=x+1 where id=100; -select * from t; -replace_regex /MariaDB/XYZ/ /MySQL/XYZ/; -error ER_UNSUPPORTED_EXTENSION; -update noar t set x=x+1 where 1 <= id and id < 100; -replace_regex /MariaDB/XYZ/ /MySQL/XYZ/; -error ER_UNSUPPORTED_EXTENSION; -update noar t set x=x+1; -drop table t; -create table t ( - id mediumint not null primary key, - x mediumint not null -); -insert into t values (1,0),(2,0),(3,0); -select * from t; -set tokudb_disable_slow_update=1; -update noar t set x=100 where id=2; -select * from t; -update noar t set x=x+1 where id=3; -select * from t; -update noar t set x=x-1 where id=3; -select * from t; -update noar t set x=x+100 where id=3; -select * from t; -update noar t set x=x-100 where id=3; -select * from t; -replace_regex /MariaDB/XYZ/ /MySQL/XYZ/; -error ER_UNSUPPORTED_EXTENSION; -update noar t set x=1+x where id=1; -replace_regex /MariaDB/XYZ/ /MySQL/XYZ/; -error ER_UNSUPPORTED_EXTENSION; -update noar t set x=-x where id=1; -update noar t set x=x+1 where id=100; -select * from t; -replace_regex /MariaDB/XYZ/ /MySQL/XYZ/; -error ER_UNSUPPORTED_EXTENSION; -update noar t set x=x+1 where 1 <= id and id < 100; -replace_regex /MariaDB/XYZ/ /MySQL/XYZ/; -error ER_UNSUPPORTED_EXTENSION; -update noar t set x=x+1; -drop table t; -create table t ( - id mediumint unsigned null primary key, - x mediumint unsigned null -); -insert into t values (1,0),(2,0),(3,0); -select * from t; -set tokudb_disable_slow_update=1; -update noar t set x=100 where id=2; -select * from t; -update noar t set x=x+1 where id=3; -select * from t; -update noar t set x=x-1 where id=3; -select * from t; -update noar t set x=x+100 where id=3; -select * from t; -update noar t set x=x-100 where id=3; -select * from t; -replace_regex /MariaDB/XYZ/ /MySQL/XYZ/; -error ER_UNSUPPORTED_EXTENSION; -update noar t set x=1+x where id=1; -replace_regex /MariaDB/XYZ/ /MySQL/XYZ/; -error ER_UNSUPPORTED_EXTENSION; -update noar t set x=-x where id=1; -update noar t set x=x+1 where id=100; -select * from t; -replace_regex /MariaDB/XYZ/ /MySQL/XYZ/; -error ER_UNSUPPORTED_EXTENSION; -update noar t set x=x+1 where 1 <= id and id < 100; -replace_regex /MariaDB/XYZ/ /MySQL/XYZ/; -error ER_UNSUPPORTED_EXTENSION; -update noar t set x=x+1; -drop table t; -create table t ( - id mediumint unsigned not null primary key, - x mediumint unsigned not null -); -insert into t values (1,0),(2,0),(3,0); -select * from t; -set tokudb_disable_slow_update=1; -update noar t set x=100 where id=2; -select * from t; -update noar t set x=x+1 where id=3; -select * from t; -update noar t set x=x-1 where id=3; -select * from t; -update noar t set x=x+100 where id=3; -select * from t; -update noar t set x=x-100 where id=3; -select * from t; -replace_regex /MariaDB/XYZ/ /MySQL/XYZ/; -error ER_UNSUPPORTED_EXTENSION; -update noar t set x=1+x where id=1; -replace_regex /MariaDB/XYZ/ /MySQL/XYZ/; -error ER_UNSUPPORTED_EXTENSION; -update noar t set x=-x where id=1; -update noar t set x=x+1 where id=100; -select * from t; -replace_regex /MariaDB/XYZ/ /MySQL/XYZ/; -error ER_UNSUPPORTED_EXTENSION; -update noar t set x=x+1 where 1 <= id and id < 100; -replace_regex /MariaDB/XYZ/ /MySQL/XYZ/; -error ER_UNSUPPORTED_EXTENSION; -update noar t set x=x+1; -drop table t; -create table t ( - id int null primary key, - x int null -); -insert into t values (1,0),(2,0),(3,0); -select * from t; -set tokudb_disable_slow_update=1; -update noar t set x=100 where id=2; -select * from t; -update noar t set x=x+1 where id=3; -select * from t; -update noar t set x=x-1 where id=3; -select * from t; -update noar t set x=x+100 where id=3; -select * from t; -update noar t set x=x-100 where id=3; -select * from t; -replace_regex /MariaDB/XYZ/ /MySQL/XYZ/; -error ER_UNSUPPORTED_EXTENSION; -update noar t set x=1+x where id=1; -replace_regex /MariaDB/XYZ/ /MySQL/XYZ/; -error ER_UNSUPPORTED_EXTENSION; -update noar t set x=-x where id=1; -update noar t set x=x+1 where id=100; -select * from t; -replace_regex /MariaDB/XYZ/ /MySQL/XYZ/; -error ER_UNSUPPORTED_EXTENSION; -update noar t set x=x+1 where 1 <= id and id < 100; -replace_regex /MariaDB/XYZ/ /MySQL/XYZ/; -error ER_UNSUPPORTED_EXTENSION; -update noar t set x=x+1; -drop table t; -create table t ( - id int not null primary key, - x int not null -); -insert into t values (1,0),(2,0),(3,0); -select * from t; -set tokudb_disable_slow_update=1; -update noar t set x=100 where id=2; -select * from t; -update noar t set x=x+1 where id=3; -select * from t; -update noar t set x=x-1 where id=3; -select * from t; -update noar t set x=x+100 where id=3; -select * from t; -update noar t set x=x-100 where id=3; -select * from t; -replace_regex /MariaDB/XYZ/ /MySQL/XYZ/; -error ER_UNSUPPORTED_EXTENSION; -update noar t set x=1+x where id=1; -replace_regex /MariaDB/XYZ/ /MySQL/XYZ/; -error ER_UNSUPPORTED_EXTENSION; -update noar t set x=-x where id=1; -update noar t set x=x+1 where id=100; -select * from t; -replace_regex /MariaDB/XYZ/ /MySQL/XYZ/; -error ER_UNSUPPORTED_EXTENSION; -update noar t set x=x+1 where 1 <= id and id < 100; -replace_regex /MariaDB/XYZ/ /MySQL/XYZ/; -error ER_UNSUPPORTED_EXTENSION; -update noar t set x=x+1; -drop table t; -create table t ( - id int unsigned null primary key, - x int unsigned null -); -insert into t values (1,0),(2,0),(3,0); -select * from t; -set tokudb_disable_slow_update=1; -update noar t set x=100 where id=2; -select * from t; -update noar t set x=x+1 where id=3; -select * from t; -update noar t set x=x-1 where id=3; -select * from t; -update noar t set x=x+100 where id=3; -select * from t; -update noar t set x=x-100 where id=3; -select * from t; -replace_regex /MariaDB/XYZ/ /MySQL/XYZ/; -error ER_UNSUPPORTED_EXTENSION; -update noar t set x=1+x where id=1; -replace_regex /MariaDB/XYZ/ /MySQL/XYZ/; -error ER_UNSUPPORTED_EXTENSION; -update noar t set x=-x where id=1; -update noar t set x=x+1 where id=100; -select * from t; -replace_regex /MariaDB/XYZ/ /MySQL/XYZ/; -error ER_UNSUPPORTED_EXTENSION; -update noar t set x=x+1 where 1 <= id and id < 100; -replace_regex /MariaDB/XYZ/ /MySQL/XYZ/; -error ER_UNSUPPORTED_EXTENSION; -update noar t set x=x+1; -drop table t; -create table t ( - id int unsigned not null primary key, - x int unsigned not null -); -insert into t values (1,0),(2,0),(3,0); -select * from t; -set tokudb_disable_slow_update=1; -update noar t set x=100 where id=2; -select * from t; -update noar t set x=x+1 where id=3; -select * from t; -update noar t set x=x-1 where id=3; -select * from t; -update noar t set x=x+100 where id=3; -select * from t; -update noar t set x=x-100 where id=3; -select * from t; -replace_regex /MariaDB/XYZ/ /MySQL/XYZ/; -error ER_UNSUPPORTED_EXTENSION; -update noar t set x=1+x where id=1; -replace_regex /MariaDB/XYZ/ /MySQL/XYZ/; -error ER_UNSUPPORTED_EXTENSION; -update noar t set x=-x where id=1; -update noar t set x=x+1 where id=100; -select * from t; -replace_regex /MariaDB/XYZ/ /MySQL/XYZ/; -error ER_UNSUPPORTED_EXTENSION; -update noar t set x=x+1 where 1 <= id and id < 100; -replace_regex /MariaDB/XYZ/ /MySQL/XYZ/; -error ER_UNSUPPORTED_EXTENSION; -update noar t set x=x+1; -drop table t; -create table t ( - id bigint null primary key, - x bigint null -); -insert into t values (1,0),(2,0),(3,0); -select * from t; -set tokudb_disable_slow_update=1; -update noar t set x=100 where id=2; -select * from t; -update noar t set x=x+1 where id=3; -select * from t; -update noar t set x=x-1 where id=3; -select * from t; -update noar t set x=x+100 where id=3; -select * from t; -update noar t set x=x-100 where id=3; -select * from t; -replace_regex /MariaDB/XYZ/ /MySQL/XYZ/; -error ER_UNSUPPORTED_EXTENSION; -update noar t set x=1+x where id=1; -replace_regex /MariaDB/XYZ/ /MySQL/XYZ/; -error ER_UNSUPPORTED_EXTENSION; -update noar t set x=-x where id=1; -update noar t set x=x+1 where id=100; -select * from t; -replace_regex /MariaDB/XYZ/ /MySQL/XYZ/; -error ER_UNSUPPORTED_EXTENSION; -update noar t set x=x+1 where 1 <= id and id < 100; -replace_regex /MariaDB/XYZ/ /MySQL/XYZ/; -error ER_UNSUPPORTED_EXTENSION; -update noar t set x=x+1; -drop table t; -create table t ( - id bigint not null primary key, - x bigint not null -); -insert into t values (1,0),(2,0),(3,0); -select * from t; -set tokudb_disable_slow_update=1; -update noar t set x=100 where id=2; -select * from t; -update noar t set x=x+1 where id=3; -select * from t; -update noar t set x=x-1 where id=3; -select * from t; -update noar t set x=x+100 where id=3; -select * from t; -update noar t set x=x-100 where id=3; -select * from t; -replace_regex /MariaDB/XYZ/ /MySQL/XYZ/; -error ER_UNSUPPORTED_EXTENSION; -update noar t set x=1+x where id=1; -replace_regex /MariaDB/XYZ/ /MySQL/XYZ/; -error ER_UNSUPPORTED_EXTENSION; -update noar t set x=-x where id=1; -update noar t set x=x+1 where id=100; -select * from t; -replace_regex /MariaDB/XYZ/ /MySQL/XYZ/; -error ER_UNSUPPORTED_EXTENSION; -update noar t set x=x+1 where 1 <= id and id < 100; -replace_regex /MariaDB/XYZ/ /MySQL/XYZ/; -error ER_UNSUPPORTED_EXTENSION; -update noar t set x=x+1; -drop table t; -create table t ( - id bigint unsigned null primary key, - x bigint unsigned null -); -insert into t values (1,0),(2,0),(3,0); -select * from t; -set tokudb_disable_slow_update=1; -update noar t set x=100 where id=2; -select * from t; -update noar t set x=x+1 where id=3; -select * from t; -update noar t set x=x-1 where id=3; -select * from t; -update noar t set x=x+100 where id=3; -select * from t; -update noar t set x=x-100 where id=3; -select * from t; -replace_regex /MariaDB/XYZ/ /MySQL/XYZ/; -error ER_UNSUPPORTED_EXTENSION; -update noar t set x=1+x where id=1; -replace_regex /MariaDB/XYZ/ /MySQL/XYZ/; -error ER_UNSUPPORTED_EXTENSION; -update noar t set x=-x where id=1; -update noar t set x=x+1 where id=100; -select * from t; -replace_regex /MariaDB/XYZ/ /MySQL/XYZ/; -error ER_UNSUPPORTED_EXTENSION; -update noar t set x=x+1 where 1 <= id and id < 100; -replace_regex /MariaDB/XYZ/ /MySQL/XYZ/; -error ER_UNSUPPORTED_EXTENSION; -update noar t set x=x+1; -drop table t; -create table t ( - id bigint unsigned not null primary key, - x bigint unsigned not null -); -insert into t values (1,0),(2,0),(3,0); -select * from t; -set tokudb_disable_slow_update=1; -update noar t set x=100 where id=2; -select * from t; -update noar t set x=x+1 where id=3; -select * from t; -update noar t set x=x-1 where id=3; -select * from t; -update noar t set x=x+100 where id=3; -select * from t; -update noar t set x=x-100 where id=3; -select * from t; -replace_regex /MariaDB/XYZ/ /MySQL/XYZ/; -error ER_UNSUPPORTED_EXTENSION; -update noar t set x=1+x where id=1; -replace_regex /MariaDB/XYZ/ /MySQL/XYZ/; -error ER_UNSUPPORTED_EXTENSION; -update noar t set x=-x where id=1; -update noar t set x=x+1 where id=100; -select * from t; -replace_regex /MariaDB/XYZ/ /MySQL/XYZ/; -error ER_UNSUPPORTED_EXTENSION; -update noar t set x=x+1 where 1 <= id and id < 100; -replace_regex /MariaDB/XYZ/ /MySQL/XYZ/; -error ER_UNSUPPORTED_EXTENSION; -update noar t set x=x+1; -drop table t; +--source ../include/fast_update_gen_header.inc + +--let GENERATED=$MYSQL_TMP_DIR/generated_fast_update_int.inc + +--perl + + my $mysql_current_test_dir = $ENV{MYSQL_CURRENT_TEST_DIR}; + open(FILE, '>', "$ENV{GENERATED}") or die; + foreach my $t ('tinyint', 'smallint', 'mediumint', 'int', 'bigint') { + foreach my $u ('', 'unsigned') { + foreach my $n ('null', 'not null') { + print FILE "--echo ### Test int for: $t, $u, $n\n"; + test_int($t, $u, $n); + } + } + } + close FILE; + + sub test_int { + my $t = shift; + my $u = shift; + my $n = shift; + + print FILE "create table t (\n"; + print FILE " id $t $u primary key,\n"; + print FILE " x $t $u $n\n"; + print FILE ") engine = tokudb;\n"; + + print FILE "--source $ENV{MYSQL_CURRENT_TEST_DIR}/../include/". + "fast_update_int.inc\n\n"; + } + +EOF + +--source ../include/fast_update_gen_footer.inc diff --git a/storage/tokudb/mysql-test/tokudb/t/fast_update_int_bounds.test b/storage/tokudb/mysql-test/tokudb/t/fast_update_int_bounds.test index cf354243236..cefeb1ff1f5 100644 --- a/storage/tokudb/mysql-test/tokudb/t/fast_update_int_bounds.test +++ b/storage/tokudb/mysql-test/tokudb/t/fast_update_int_bounds.test @@ -1,82 +1,77 @@ source include/have_tokudb.inc; source include/have_innodb.inc; -set default_storage_engine='tokudb'; - -disable_warnings; -drop table if exists t; -enable_warnings; - -create table tt (id int primary key, x int); +create table tt (id int primary key, x int) engine = tokudb; insert into tt values (1,0),(2,-pow(2,31)),(3,pow(2,31)-1); create table ti like tt; alter table ti engine=innodb; insert into ti select * from tt; -set tokudb_disable_slow_update=1; +set tokudb_enable_fast_update=1; +source ../include/setup_fast_update_upsert.inc; -update noar tt set x=x+1 where id=1; -update noar ti set x=x+1 where id=1; +update tt set x=x+1 where id=1; +update ti set x=x+1 where id=1; let $diff_tables = test.tt, test.ti; source include/diff_tables.inc; -update noar tt set x=x-2 where id=1; -update noar ti set x=x-2 where id=1; +update tt set x=x-2 where id=1; +update ti set x=x-2 where id=1; let $diff_tables = test.tt, test.ti; source include/diff_tables.inc; -update noar tt set x=x+1 where id=1; -update noar ti set x=x+1 where id=1; +update tt set x=x+1 where id=1; +update ti set x=x+1 where id=1; let $diff_tables = test.tt, test.ti; source include/diff_tables.inc; -update noar tt set x=x-1 where id=2; -update noar ti set x=x-1 where id=2; +update tt set x=x-1 where id=2; +update ti set x=x-1 where id=2; let $diff_tables = test.tt, test.ti; source include/diff_tables.inc; -update noar tt set x=x+1 where id=2; -update noar ti set x=x+1 where id=2; +update tt set x=x+1 where id=2; +update ti set x=x+1 where id=2; let $diff_tables = test.tt, test.ti; source include/diff_tables.inc; -update noar tt set x=x+1 where id=3; -update noar ti set x=x+1 where id=3; +update tt set x=x+1 where id=3; +update ti set x=x+1 where id=3; let $diff_tables = test.tt, test.ti; source include/diff_tables.inc; -update noar tt set x=x-1 where id=3; -update noar ti set x=x-1 where id=3; +update tt set x=x-1 where id=3; +update ti set x=x-1 where id=3; let $diff_tables = test.tt, test.ti; source include/diff_tables.inc; # test clip at maximum insert into tt values (4,pow(2,31)-10); insert into ti values (4,pow(2,31)-10); -update noar tt set x=x+20 where id=4; -update noar ti set x=x+20 where id=4; +update tt set x=x+20 where id=4; +update ti set x=x+20 where id=4; let $diff_tables = test.tt, test.ti; source include/diff_tables.inc; insert into tt values (5,pow(2,31)-10); insert into ti values (5,pow(2,31)-10); -update noar tt set x=x - -20 where id=5; -update noar ti set x=x - -20 where id=5; +update tt set x=x - -20 where id=5; +update ti set x=x - -20 where id=5; let $diff_tables = test.tt, test.ti; source include/diff_tables.inc; # test clip at minimum insert into tt values (6,-pow(2,31)+10); insert into ti values (6,-pow(2,31)+10); -update noar tt set x=x-20 where id=6; -update noar ti set x=x-20 where id=6; +update tt set x=x-20 where id=6; +update ti set x=x-20 where id=6; let $diff_tables = test.tt, test.ti; source include/diff_tables.inc; insert into tt values (7,-pow(2,31)+10); insert into ti values (7,-pow(2,31)+10); -update noar tt set x=x + -20 where id=7; -update noar ti set x=x + -20 where id=7; +update tt set x=x + -20 where id=7; +update ti set x=x + -20 where id=7; let $diff_tables = test.tt, test.ti; source include/diff_tables.inc; diff --git a/storage/tokudb/mysql-test/tokudb/t/fast_update_key.test b/storage/tokudb/mysql-test/tokudb/t/fast_update_key.test index 21f3cbf999a..6ff74d191af 100644 --- a/storage/tokudb/mysql-test/tokudb/t/fast_update_key.test +++ b/storage/tokudb/mysql-test/tokudb/t/fast_update_key.test @@ -1,71 +1,78 @@ source include/have_tokudb.inc; -set default_storage_engine='tokudb'; - -disable_warnings; -drop table if exists t; -enable_warnings; - -set tokudb_disable_slow_update=1; +set tokudb_enable_fast_update=1; +source ../include/setup_fast_update_upsert.inc; # must have primary key -create table t (ida int not null, idb bigint not null, idc tinyint unsigned not null, x bigint); +create table t (ida int not null, + idb bigint not null, + idc tinyint unsigned not null, + x bigint) engine = tokudb; replace_regex /MariaDB/XYZ/ /MySQL/XYZ/; error ER_UNSUPPORTED_EXTENSION; -update noar t set x=x+1 where ida=1; +update t set x=x+1 where ida=1; drop table t; # must have no clustering keys -create table t (ida int not null, idb bigint not null, idc tinyint unsigned not null, x bigint, clustering key(ida,idb,idc)); +create table t (ida int not null, + idb bigint not null, + idc tinyint unsigned not null, + x bigint, + clustering key(ida,idb,idc)) engine = tokudb; replace_regex /MariaDB/XYZ/ /MySQL/XYZ/; error ER_UNSUPPORTED_EXTENSION; -update noar t set x=x+1 where ida=1; +update t set x=x+1 where ida=1; drop table t; -# update noar field must not be part of any key -create table t (ida int not null, idb bigint not null, idc tinyint unsigned not null, x bigint, primary key(ida,idb,idc), key(x)); +# update field must not be part of any key +create table t (ida int not null, + idb bigint not null, + idc tinyint unsigned not null, + x bigint, + primary key(ida,idb,idc), + key(x)) engine = tokudb; replace_regex /MariaDB/XYZ/ /MySQL/XYZ/; error ER_UNSUPPORTED_EXTENSION; -update noar t set x=x+1 where ida=1; +update t set x=x+1 where ida=1; drop table t; # must have no pk prefixed -create table t (id char(32), x bigint, primary key(id(1))); +create table t (id char(32), x bigint, primary key(id(1))) engine = tokudb; replace_regex /MariaDB/XYZ/ /MySQL/XYZ/; error ER_UNSUPPORTED_EXTENSION; -update noar t set x=x+1 where id='hi'; +update t set x=x+1 where id='hi'; drop table t; -create table t (id varchar(32), x bigint, primary key(id(1))); +create table t (id varchar(32), x bigint, primary key(id(1))) engine = tokudb; replace_regex /MariaDB/XYZ/ /MySQL/XYZ/; error ER_UNSUPPORTED_EXTENSION; -update noar t set x=x+1 where id='hi'; +update t set x=x+1 where id='hi'; drop table t; # test for point updates on compound keys -create table t (ida int not null, idb bigint not null, idc tinyint unsigned not null, x bigint, primary key(ida,idb,idc)); +create table t (ida int not null, + idb bigint not null, + idc tinyint unsigned not null, + x bigint, + primary key(ida,idb,idc)) engine = tokudb; insert into t values (1,2,3,0); replace_regex /MariaDB/XYZ/ /MySQL/XYZ/; error ER_UNSUPPORTED_EXTENSION; -update noar t set x=x+1 where ida=1; +update t set x=x+1 where ida=1; replace_regex /MariaDB/XYZ/ /MySQL/XYZ/; error ER_UNSUPPORTED_EXTENSION; -update noar t set x=x+1 where ida=1 and idb=2; +update t set x=x+1 where ida=1 and idb=2; replace_regex /MariaDB/XYZ/ /MySQL/XYZ/; error ER_UNSUPPORTED_EXTENSION; -update noar t set x=x+1 where ida=1 and idb=2 or idc=3; +update t set x=x+1 where ida=1 and idb=2 or idc=3; -update noar t set x=x+1 where ida=1 and idb=2 and idc=3; +update t set x=x+1 where ida=1 and idb=2 and idc=3; select * from t; -update noar t set x=x+1 where idc=3 and ida=1 and idb=2; +update t set x=x+1 where idc=3 and ida=1 and idb=2; select * from t; drop table t; - - - - diff --git a/storage/tokudb/mysql-test/tokudb/t/fast_update_sqlmode.test b/storage/tokudb/mysql-test/tokudb/t/fast_update_sqlmode.test index 9eb7721b538..2740cd6c316 100644 --- a/storage/tokudb/mysql-test/tokudb/t/fast_update_sqlmode.test +++ b/storage/tokudb/mysql-test/tokudb/t/fast_update_sqlmode.test @@ -1,36 +1,29 @@ source include/have_tokudb.inc; -set default_storage_engine='tokudb'; - -disable_warnings; -drop table if exists t; -enable_warnings; - -set tokudb_disable_slow_update=1; +set tokudb_enable_fast_update=1; +source ../include/setup_fast_update_upsert.inc; let $default_sql_mode = `select @@session.sql_mode`; -create table t (id int primary key, x int not null); +create table t (id int primary key, x int not null) engine = tokudb; insert into t values (1,0); -update noar t set x=42 where id=1; -update noar t set x=x+1 where id=1; -update noar t set x=x-1 where id=1; +update t set x=42 where id=1; +update t set x=x+1 where id=1; +update t set x=x-1 where id=1; eval set session sql_mode="$default_sql_mode,traditional"; replace_regex /MariaDB/XYZ/ /MySQL/XYZ/; error ER_UNSUPPORTED_EXTENSION; -update noar t set x=42 where id=1; +update t set x=42 where id=1; replace_regex /MariaDB/XYZ/ /MySQL/XYZ/; error ER_UNSUPPORTED_EXTENSION; -update noar t set x=x+1 where id=1; +update t set x=x+1 where id=1; replace_regex /MariaDB/XYZ/ /MySQL/XYZ/; error ER_UNSUPPORTED_EXTENSION; -update noar t set x=x-1 where id=1; - -eval set session sql_mode="$default_sql_mode"; +update t set x=x-1 where id=1; drop table t; diff --git a/storage/tokudb/mysql-test/tokudb/t/fast_update_uint_bounds.test b/storage/tokudb/mysql-test/tokudb/t/fast_update_uint_bounds.test index f4f43d60e31..a35658cba18 100644 --- a/storage/tokudb/mysql-test/tokudb/t/fast_update_uint_bounds.test +++ b/storage/tokudb/mysql-test/tokudb/t/fast_update_uint_bounds.test @@ -1,62 +1,54 @@ source include/have_tokudb.inc; source include/have_innodb.inc; -set default_storage_engine='tokudb'; - -disable_warnings; -drop table if exists t; -enable_warnings; - -create table tt (id int primary key, x int unsigned); +create table tt (id int primary key, x int unsigned) engine = tokudb; insert into tt values (1,0),(2,pow(2,32)-1); create table ti like tt; alter table ti engine=innodb; insert into ti select * from tt; -set tokudb_disable_slow_update=1; +set tokudb_enable_fast_update=1; +source ../include/setup_fast_update_upsert.inc; -update noar tt set x=x+1 where id=1; -update noar ti set x=x+1 where id=1; +update tt set x=x+1 where id=1; +update ti set x=x+1 where id=1; let $diff_tables = test.tt, test.ti; source include/diff_tables.inc; -update noar tt set x=x-2 where id=1; -update noar ti set x=if(x<2,0,x-2) where id=1; +update tt set x=x-2 where id=1; +update ti set x=if(x<2,0,x-2) where id=1; let $diff_tables = test.tt, test.ti; source include/diff_tables.inc; -update noar tt set x=x+1 where id=1; -update noar ti set x=x+1 where id=1; +update tt set x=x+1 where id=1; +update ti set x=x+1 where id=1; let $diff_tables = test.tt, test.ti; source include/diff_tables.inc; -update noar tt set x=x-1 where id=2; -update noar ti set x=x-1 where id=2; +update tt set x=x-1 where id=2; +update ti set x=x-1 where id=2; let $diff_tables = test.tt, test.ti; source include/diff_tables.inc; -update noar tt set x=x+1 where id=2; -update noar ti set x=x+1 where id=2; +update tt set x=x+1 where id=2; +update ti set x=x+1 where id=2; let $diff_tables = test.tt, test.ti; source include/diff_tables.inc; # test clip at maximum insert into tt values (4,pow(2,32)-10); insert into ti values (4,pow(2,32)-10); -update noar tt set x=x+20 where id=4; -update noar ti set x=x+20 where id=4; +update tt set x=x+20 where id=4; +update ti set x=x+20 where id=4; let $diff_tables = test.tt, test.ti; source include/diff_tables.inc; # test clip at minimum insert into tt values (5,10); insert into ti values (5,10); -update noar tt set x=x-20 where id=5; -update noar ti set x=if(x<20,0,x-20) where id=5; +update tt set x=x-20 where id=5; +update ti set x=if(x<20,0,x-20) where id=5; let $diff_tables = test.tt, test.ti; source include/diff_tables.inc; drop table tt, ti; - - - diff --git a/storage/tokudb/mysql-test/tokudb/t/fast_update_varchar.py b/storage/tokudb/mysql-test/tokudb/t/fast_update_varchar.py deleted file mode 100644 index 54cc0050ee3..00000000000 --- a/storage/tokudb/mysql-test/tokudb/t/fast_update_varchar.py +++ /dev/null @@ -1,63 +0,0 @@ -#!/usr/bin/env python - -import sys -import random -import string - -def main(): - print "# generated by tokudb_fast_update_varchar.py" - print "source include/have_tokudb.inc;" - print "source include/have_innodb.inc;" - print "set default_storage_engine='tokudb';" - print "disable_warnings;" - print "drop table if exists t;" - print "enable_warnings;" - - nrows = 100 - - for t in [ 'varchar', 'varbinary' ]: - for l in [ 32, 256 ]: - for n in [ 'null', 'not null' ]: - test_varchar(t, l, n, nrows) - return 0 - -def test_varchar(t, l, n, nrows): - print "create table tt (id bigint unsigned primary key," - print " f0 int %s," % (n) - for i in range(4): - print " v%d %s(%d) %s," % (i, t, l, n) - print " b0 text %s" % (n) - print ") engine=tokudb;" - - if n == 'null': - print "insert into tt (id) values (0);" - print "insert into tt values (1,2,'a','b','c','d','e');" - for i in range(2,nrows): - print "insert into tt values (%d,%d,'','','','','');" % (i,i+1) - - print "create table ti like tt;" - print "alter table ti engine=innodb;" - print "insert into ti select * from tt;" - - nulltest = [ 'null this', 'null is', 'null a', 'null test' ] - for i in range(4): - print "update noar tt set v%d='%s %s' where id=0;" % (i, nulltest[i], str(i)) - print "update noar ti set v%d='%s %s' where id=0;" % (i, nulltest[i], str(i)) - - test = [ 'this' ,'is', 'another', 'test'] - for i in range(4): - print "update noar tt set v%d='%s %s' where id=1;" % (i, test[i], str(i)) - print "update noar ti set v%d='%s %s' where id=1;" % (i, test[i], str(i)) - - for id in range(2,nrows): - for i in range(4): - long_str = ''.join(random.choice(string.ascii_uppercase + string.digits) for x in range(l+1)) - print "update noar tt set v%d='%s' where id=%d;" % (i, long_str, id) - print "update noar ti set v%d='%s' where id=%d;" % (i, long_str, id) - - print "let $diff_tables = test.tt, test.ti;" - print "source include/diff_tables.inc;" - - print "drop table tt, ti;" - -sys.exit(main()) diff --git a/storage/tokudb/mysql-test/tokudb/t/fast_update_varchar.test b/storage/tokudb/mysql-test/tokudb/t/fast_update_varchar.test index b407f416a3b..66e5c977d1f 100644 --- a/storage/tokudb/mysql-test/tokudb/t/fast_update_varchar.test +++ b/storage/tokudb/mysql-test/tokudb/t/fast_update_varchar.test @@ -1,7315 +1,75 @@ -# generated by tokudb_fast_update_varchar.py -source include/have_tokudb.inc; -source include/have_innodb.inc; -set default_storage_engine='tokudb'; -disable_warnings; -drop table if exists t; -enable_warnings; -create table tt (id bigint unsigned primary key, - f0 int null, - v0 varchar(32) null, - v1 varchar(32) null, - v2 varchar(32) null, - v3 varchar(32) null, - b0 text null -) engine=tokudb; -insert into tt (id) values (0); -insert into tt values (1,2,'a','b','c','d','e'); -insert into tt values (2,3,'','','','',''); -insert into tt values (3,4,'','','','',''); -insert into tt values (4,5,'','','','',''); -insert into tt values (5,6,'','','','',''); -insert into tt values (6,7,'','','','',''); -insert into tt values (7,8,'','','','',''); -insert into tt values (8,9,'','','','',''); -insert into tt values (9,10,'','','','',''); -insert into tt values (10,11,'','','','',''); -insert into tt values (11,12,'','','','',''); -insert into tt values (12,13,'','','','',''); -insert into tt values (13,14,'','','','',''); -insert into tt values (14,15,'','','','',''); -insert into tt values (15,16,'','','','',''); -insert into tt values (16,17,'','','','',''); -insert into tt values (17,18,'','','','',''); -insert into tt values (18,19,'','','','',''); -insert into tt values (19,20,'','','','',''); -insert into tt values (20,21,'','','','',''); -insert into tt values (21,22,'','','','',''); -insert into tt values (22,23,'','','','',''); -insert into tt values (23,24,'','','','',''); -insert into tt values (24,25,'','','','',''); -insert into tt values (25,26,'','','','',''); -insert into tt values (26,27,'','','','',''); -insert into tt values (27,28,'','','','',''); -insert into tt values (28,29,'','','','',''); -insert into tt values (29,30,'','','','',''); -insert into tt values (30,31,'','','','',''); -insert into tt values (31,32,'','','','',''); -insert into tt values (32,33,'','','','',''); -insert into tt values (33,34,'','','','',''); -insert into tt values (34,35,'','','','',''); -insert into tt values (35,36,'','','','',''); -insert into tt values (36,37,'','','','',''); -insert into tt values (37,38,'','','','',''); -insert into tt values (38,39,'','','','',''); -insert into tt values (39,40,'','','','',''); -insert into tt values (40,41,'','','','',''); -insert into tt values (41,42,'','','','',''); -insert into tt values (42,43,'','','','',''); -insert into tt values (43,44,'','','','',''); -insert into tt values (44,45,'','','','',''); -insert into tt values (45,46,'','','','',''); -insert into tt values (46,47,'','','','',''); -insert into tt values (47,48,'','','','',''); -insert into tt values (48,49,'','','','',''); -insert into tt values (49,50,'','','','',''); -insert into tt values (50,51,'','','','',''); -insert into tt values (51,52,'','','','',''); -insert into tt values (52,53,'','','','',''); -insert into tt values (53,54,'','','','',''); -insert into tt values (54,55,'','','','',''); -insert into tt values (55,56,'','','','',''); -insert into tt values (56,57,'','','','',''); -insert into tt values (57,58,'','','','',''); -insert into tt values (58,59,'','','','',''); -insert into tt values (59,60,'','','','',''); -insert into tt values (60,61,'','','','',''); -insert into tt values (61,62,'','','','',''); -insert into tt values (62,63,'','','','',''); -insert into tt values (63,64,'','','','',''); -insert into tt values (64,65,'','','','',''); -insert into tt values (65,66,'','','','',''); -insert into tt values (66,67,'','','','',''); -insert into tt values (67,68,'','','','',''); -insert into tt values (68,69,'','','','',''); -insert into tt values (69,70,'','','','',''); -insert into tt values (70,71,'','','','',''); -insert into tt values (71,72,'','','','',''); -insert into tt values (72,73,'','','','',''); -insert into tt values (73,74,'','','','',''); -insert into tt values (74,75,'','','','',''); -insert into tt values (75,76,'','','','',''); -insert into tt values (76,77,'','','','',''); -insert into tt values (77,78,'','','','',''); -insert into tt values (78,79,'','','','',''); -insert into tt values (79,80,'','','','',''); -insert into tt values (80,81,'','','','',''); -insert into tt values (81,82,'','','','',''); -insert into tt values (82,83,'','','','',''); -insert into tt values (83,84,'','','','',''); -insert into tt values (84,85,'','','','',''); -insert into tt values (85,86,'','','','',''); -insert into tt values (86,87,'','','','',''); -insert into tt values (87,88,'','','','',''); -insert into tt values (88,89,'','','','',''); -insert into tt values (89,90,'','','','',''); -insert into tt values (90,91,'','','','',''); -insert into tt values (91,92,'','','','',''); -insert into tt values (92,93,'','','','',''); -insert into tt values (93,94,'','','','',''); -insert into tt values (94,95,'','','','',''); -insert into tt values (95,96,'','','','',''); -insert into tt values (96,97,'','','','',''); -insert into tt values (97,98,'','','','',''); -insert into tt values (98,99,'','','','',''); -insert into tt values (99,100,'','','','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='null this 0' where id=0; -update noar ti set v0='null this 0' where id=0; -update noar tt set v1='null is 1' where id=0; -update noar ti set v1='null is 1' where id=0; -update noar tt set v2='null a 2' where id=0; -update noar ti set v2='null a 2' where id=0; -update noar tt set v3='null test 3' where id=0; -update noar ti set v3='null test 3' where id=0; -update noar tt set v0='this 0' where id=1; -update noar ti set v0='this 0' where id=1; -update noar tt set v1='is 1' where id=1; -update noar ti set v1='is 1' where id=1; -update noar tt set v2='another 2' where id=1; -update noar ti set v2='another 2' where id=1; -update noar tt set v3='test 3' where id=1; -update noar ti set v3='test 3' where id=1; -update noar tt set v0='C6P5MJKRJ430AM9T012TSRGW76CFGSHQL' where id=2; -update noar ti set v0='C6P5MJKRJ430AM9T012TSRGW76CFGSHQL' where id=2; -update noar tt set v1='FQ3TW0TRJWER0OSIO33UTIFSBT7PTGO9A' where id=2; -update noar ti set v1='FQ3TW0TRJWER0OSIO33UTIFSBT7PTGO9A' where id=2; -update noar tt set v2='XAXU3S3K4PYXB4IB4HH5ANUUOGC1KD3JX' where id=2; -update noar ti set v2='XAXU3S3K4PYXB4IB4HH5ANUUOGC1KD3JX' where id=2; -update noar tt set v3='879I2MV65FUY0WFCFS09C74IN1VAISIEG' where id=2; -update noar ti set v3='879I2MV65FUY0WFCFS09C74IN1VAISIEG' where id=2; -update noar tt set v0='QAPUD5QIQINRVEPEYVDYJ6N9UI0GFZHRV' where id=3; -update noar ti set v0='QAPUD5QIQINRVEPEYVDYJ6N9UI0GFZHRV' where id=3; -update noar tt set v1='M6ME86RQIYBCUDNTD125MIV92IT6CKU15' where id=3; -update noar ti set v1='M6ME86RQIYBCUDNTD125MIV92IT6CKU15' where id=3; -update noar tt set v2='KSZGNMKS7PTH611GW21K59DD2R7KY4JAO' where id=3; -update noar ti set v2='KSZGNMKS7PTH611GW21K59DD2R7KY4JAO' where id=3; -update noar tt set v3='OSZTEY9AS1ZSXGBMVQ13ST2RB5UX4G7O2' where id=3; -update noar ti set v3='OSZTEY9AS1ZSXGBMVQ13ST2RB5UX4G7O2' where id=3; -update noar tt set v0='C67XB2ZDJCMF7MATMIZ7UKCOCXM6LX4IB' where id=4; -update noar ti set v0='C67XB2ZDJCMF7MATMIZ7UKCOCXM6LX4IB' where id=4; -update noar tt set v1='S0LRECBVNG2PF4USXXGK5HQBXNMGR0PV6' where id=4; -update noar ti set v1='S0LRECBVNG2PF4USXXGK5HQBXNMGR0PV6' where id=4; -update noar tt set v2='MYYF7M19VXCDAZYIZ0WLCDHPAA5D33BS1' where id=4; -update noar ti set v2='MYYF7M19VXCDAZYIZ0WLCDHPAA5D33BS1' where id=4; -update noar tt set v3='4KJDY3HCYE207SAY3ULNRAWO9E0ST1DBJ' where id=4; -update noar ti set v3='4KJDY3HCYE207SAY3ULNRAWO9E0ST1DBJ' where id=4; -update noar tt set v0='ZEHYFMX8YWZ0OQRFIWDF06KZSZRTWITWJ' where id=5; -update noar ti set v0='ZEHYFMX8YWZ0OQRFIWDF06KZSZRTWITWJ' where id=5; -update noar tt set v1='VB77NEBRKD15EYCTJMD5VFKUV82J77U0V' where id=5; -update noar ti set v1='VB77NEBRKD15EYCTJMD5VFKUV82J77U0V' where id=5; -update noar tt set v2='SPES6400D3NGGXUOR58GB4L6HVDUSXC8P' where id=5; -update noar ti set v2='SPES6400D3NGGXUOR58GB4L6HVDUSXC8P' where id=5; -update noar tt set v3='O8DK85ADX9I2AXO33NRKUXM4H70IQDVKR' where id=5; -update noar ti set v3='O8DK85ADX9I2AXO33NRKUXM4H70IQDVKR' where id=5; -update noar tt set v0='XG699LK06ZH0GP0MY8P2XM1W8IC31RY6M' where id=6; -update noar ti set v0='XG699LK06ZH0GP0MY8P2XM1W8IC31RY6M' where id=6; -update noar tt set v1='RR0ZPFCBNNDDO66XALOIV0M2WC2RFPWBS' where id=6; -update noar ti set v1='RR0ZPFCBNNDDO66XALOIV0M2WC2RFPWBS' where id=6; -update noar tt set v2='Z2MCQCRYBBGIAS7KKIR27SL3UBTF3KQ03' where id=6; -update noar ti set v2='Z2MCQCRYBBGIAS7KKIR27SL3UBTF3KQ03' where id=6; -update noar tt set v3='WYLCHBCNJA7T0IWFKTBZ5UBBOEUE3U9SU' where id=6; -update noar ti set v3='WYLCHBCNJA7T0IWFKTBZ5UBBOEUE3U9SU' where id=6; -update noar tt set v0='FNTPDPCBPGIND8BEXG3IFATRTOR880BQP' where id=7; -update noar ti set v0='FNTPDPCBPGIND8BEXG3IFATRTOR880BQP' where id=7; -update noar tt set v1='Y3FUDUS2RG0YODAEUX24KMI7STMMTVZWI' where id=7; -update noar ti set v1='Y3FUDUS2RG0YODAEUX24KMI7STMMTVZWI' where id=7; -update noar tt set v2='EUFYQFY3UIUWXAI2MZUSAYWINYCMPTRGZ' where id=7; -update noar ti set v2='EUFYQFY3UIUWXAI2MZUSAYWINYCMPTRGZ' where id=7; -update noar tt set v3='0VKBUX3MRYOE43HZ8G5U0MDOLG7SSXNNN' where id=7; -update noar ti set v3='0VKBUX3MRYOE43HZ8G5U0MDOLG7SSXNNN' where id=7; -update noar tt set v0='IE1Z9DPV3DFMCSETQ264T61V783D676YN' where id=8; -update noar ti set v0='IE1Z9DPV3DFMCSETQ264T61V783D676YN' where id=8; -update noar tt set v1='4ZEW2NAEC433N7TBWAI4GQWJ7LK5Q4RZ4' where id=8; -update noar ti set v1='4ZEW2NAEC433N7TBWAI4GQWJ7LK5Q4RZ4' where id=8; -update noar tt set v2='1AKQ41LJFMF1OOQMZO7QPL2ZVZYPU21DO' where id=8; -update noar ti set v2='1AKQ41LJFMF1OOQMZO7QPL2ZVZYPU21DO' where id=8; -update noar tt set v3='H8IXFC4QIDAWFHF8WUFUBPAMPKP59A4GE' where id=8; -update noar ti set v3='H8IXFC4QIDAWFHF8WUFUBPAMPKP59A4GE' where id=8; -update noar tt set v0='X52UNAQHTIRRLCHDP5UXFU6T1W92U00QM' where id=9; -update noar ti set v0='X52UNAQHTIRRLCHDP5UXFU6T1W92U00QM' where id=9; -update noar tt set v1='BMMKIH7Q87O155JXO8U6DNZX14JK7PV4Q' where id=9; -update noar ti set v1='BMMKIH7Q87O155JXO8U6DNZX14JK7PV4Q' where id=9; -update noar tt set v2='KU8TVA6SW62YC74DGYSYSDUKWQDF0AS93' where id=9; -update noar ti set v2='KU8TVA6SW62YC74DGYSYSDUKWQDF0AS93' where id=9; -update noar tt set v3='X2SX9JJP3STQ275JROOJ7PH47L1QCANI1' where id=9; -update noar ti set v3='X2SX9JJP3STQ275JROOJ7PH47L1QCANI1' where id=9; -update noar tt set v0='ETF1T11GAD3PQ1P6MNIYKOCOASRR935DN' where id=10; -update noar ti set v0='ETF1T11GAD3PQ1P6MNIYKOCOASRR935DN' where id=10; -update noar tt set v1='JAY008V1UNCFN77B872P7VBW06IM8ZULL' where id=10; -update noar ti set v1='JAY008V1UNCFN77B872P7VBW06IM8ZULL' where id=10; -update noar tt set v2='QK8M39DNPHE6PMIAUW8XP45NXJQICY8FX' where id=10; -update noar ti set v2='QK8M39DNPHE6PMIAUW8XP45NXJQICY8FX' where id=10; -update noar tt set v3='NJH9VF4CGS75EELNRM6DM8BOASPQOJ1YF' where id=10; -update noar ti set v3='NJH9VF4CGS75EELNRM6DM8BOASPQOJ1YF' where id=10; -update noar tt set v0='YPHFJEX1D9EP9OJKD711P1HDWC218HYDQ' where id=11; -update noar ti set v0='YPHFJEX1D9EP9OJKD711P1HDWC218HYDQ' where id=11; -update noar tt set v1='1C59XHWYXDJ0CH93KBID1H0FLLZW6OV4Q' where id=11; -update noar ti set v1='1C59XHWYXDJ0CH93KBID1H0FLLZW6OV4Q' where id=11; -update noar tt set v2='KCC2KKBFWCZ0TEQYF37CHNIU28PDH4G4B' where id=11; -update noar ti set v2='KCC2KKBFWCZ0TEQYF37CHNIU28PDH4G4B' where id=11; -update noar tt set v3='E9DRCXC8PRS1577KJJ0MUKCSCIQ5ULM8L' where id=11; -update noar ti set v3='E9DRCXC8PRS1577KJJ0MUKCSCIQ5ULM8L' where id=11; -update noar tt set v0='CAY0BJBX055RDS035VBFOAJYR1HV48F6L' where id=12; -update noar ti set v0='CAY0BJBX055RDS035VBFOAJYR1HV48F6L' where id=12; -update noar tt set v1='2E8R0YCLEB4KSSXAZ52SJT5Z7RHZPFUZ2' where id=12; -update noar ti set v1='2E8R0YCLEB4KSSXAZ52SJT5Z7RHZPFUZ2' where id=12; -update noar tt set v2='J7M9UEU8HY09D3P14DAZRYK48QDEEF2XU' where id=12; -update noar ti set v2='J7M9UEU8HY09D3P14DAZRYK48QDEEF2XU' where id=12; -update noar tt set v3='1FLHE73K0AJSAXRHNV18N1PIV8SSXZ4LT' where id=12; -update noar ti set v3='1FLHE73K0AJSAXRHNV18N1PIV8SSXZ4LT' where id=12; -update noar tt set v0='Z5S4BCN44TJCY6TXJN1I9NF8P2SUCD43A' where id=13; -update noar ti set v0='Z5S4BCN44TJCY6TXJN1I9NF8P2SUCD43A' where id=13; -update noar tt set v1='PGIKAGQ4A8JJDWW5W5NGXKEHG85ZXFQIZ' where id=13; -update noar ti set v1='PGIKAGQ4A8JJDWW5W5NGXKEHG85ZXFQIZ' where id=13; -update noar tt set v2='5GYNMV2KG45CU5PZ5DR7IAGOU2FXGGYRY' where id=13; -update noar ti set v2='5GYNMV2KG45CU5PZ5DR7IAGOU2FXGGYRY' where id=13; -update noar tt set v3='8YWN60PRVBV5P3XT39UK4WCZXIKNV3OMU' where id=13; -update noar ti set v3='8YWN60PRVBV5P3XT39UK4WCZXIKNV3OMU' where id=13; -update noar tt set v0='5PN29VPJJZC4X1RSDFY8CBF2LDDDU2CK3' where id=14; -update noar ti set v0='5PN29VPJJZC4X1RSDFY8CBF2LDDDU2CK3' where id=14; -update noar tt set v1='5SXHKMF44USM4OM0KUQSOAUDH74460FAO' where id=14; -update noar ti set v1='5SXHKMF44USM4OM0KUQSOAUDH74460FAO' where id=14; -update noar tt set v2='T37K7U6RHE7I8E16NBU06WAXWPQIIKRIT' where id=14; -update noar ti set v2='T37K7U6RHE7I8E16NBU06WAXWPQIIKRIT' where id=14; -update noar tt set v3='284CTENU9U8YL9B1OTG0Q8SXZZZ7M5I6U' where id=14; -update noar ti set v3='284CTENU9U8YL9B1OTG0Q8SXZZZ7M5I6U' where id=14; -update noar tt set v0='ETZNDEYEUZXLKM8HTLEBSEYP692A2WVEC' where id=15; -update noar ti set v0='ETZNDEYEUZXLKM8HTLEBSEYP692A2WVEC' where id=15; -update noar tt set v1='TOP0E92F9FWDEWEC4YPE80MH7DRSBUKIB' where id=15; -update noar ti set v1='TOP0E92F9FWDEWEC4YPE80MH7DRSBUKIB' where id=15; -update noar tt set v2='OYEI596E9HVPLAGZGBQYSFAWKZG41BCVM' where id=15; -update noar ti set v2='OYEI596E9HVPLAGZGBQYSFAWKZG41BCVM' where id=15; -update noar tt set v3='51HLJN8D2X7DIFFNY4IQBP48WODL1YG3E' where id=15; -update noar ti set v3='51HLJN8D2X7DIFFNY4IQBP48WODL1YG3E' where id=15; -update noar tt set v0='XONA19S58DXOWIKZUOIJNT8CWF3N4RVVM' where id=16; -update noar ti set v0='XONA19S58DXOWIKZUOIJNT8CWF3N4RVVM' where id=16; -update noar tt set v1='943ENEWA3RYCJRDUVOM2F8UKTR391IDL3' where id=16; -update noar ti set v1='943ENEWA3RYCJRDUVOM2F8UKTR391IDL3' where id=16; -update noar tt set v2='CB4MQIO2UXYFSCOSQACFE96L9W4LTH9UC' where id=16; -update noar ti set v2='CB4MQIO2UXYFSCOSQACFE96L9W4LTH9UC' where id=16; -update noar tt set v3='C3M7ZLL5KVPPD8YKEP7UTFN5O9BJAWRQY' where id=16; -update noar ti set v3='C3M7ZLL5KVPPD8YKEP7UTFN5O9BJAWRQY' where id=16; -update noar tt set v0='Q5SH1O4QPLTMXTL5Z6JHLNT0SVFBYOOXU' where id=17; -update noar ti set v0='Q5SH1O4QPLTMXTL5Z6JHLNT0SVFBYOOXU' where id=17; -update noar tt set v1='52FCXSRGM2N12OI10IYNRUGLVV1AUMTE7' where id=17; -update noar ti set v1='52FCXSRGM2N12OI10IYNRUGLVV1AUMTE7' where id=17; -update noar tt set v2='GYHFZZROG27CYF5ERW711U8EQ9FDS6H2T' where id=17; -update noar ti set v2='GYHFZZROG27CYF5ERW711U8EQ9FDS6H2T' where id=17; -update noar tt set v3='B2M72KUXJLTTCJ1RC47E2QNOAMH5BMX7K' where id=17; -update noar ti set v3='B2M72KUXJLTTCJ1RC47E2QNOAMH5BMX7K' where id=17; -update noar tt set v0='NAJYNURN3M8WTQI61PDF4JWAPVT6PLRGH' where id=18; -update noar ti set v0='NAJYNURN3M8WTQI61PDF4JWAPVT6PLRGH' where id=18; -update noar tt set v1='4IJQ7MVQPR795Z9IQXVHR0HMTTRN7KTES' where id=18; -update noar ti set v1='4IJQ7MVQPR795Z9IQXVHR0HMTTRN7KTES' where id=18; -update noar tt set v2='E2ZS9OQGKIRZ4V4TH1Y89HTIN4OMC2XRW' where id=18; -update noar ti set v2='E2ZS9OQGKIRZ4V4TH1Y89HTIN4OMC2XRW' where id=18; -update noar tt set v3='FL672KMTP7X2LQ2Z3X0V3JQY61XZT1LV4' where id=18; -update noar ti set v3='FL672KMTP7X2LQ2Z3X0V3JQY61XZT1LV4' where id=18; -update noar tt set v0='91MVJ862UD5B8CALA6XIPUERX6M0EZI9U' where id=19; -update noar ti set v0='91MVJ862UD5B8CALA6XIPUERX6M0EZI9U' where id=19; -update noar tt set v1='3PMLFZZSY1ILDOPUEA9V9JL6CREQXZFLI' where id=19; -update noar ti set v1='3PMLFZZSY1ILDOPUEA9V9JL6CREQXZFLI' where id=19; -update noar tt set v2='GQ9TSV4W2FAPQVICDG8H5L1LWBKX7H2G8' where id=19; -update noar ti set v2='GQ9TSV4W2FAPQVICDG8H5L1LWBKX7H2G8' where id=19; -update noar tt set v3='KQQVF17YK17KYX2N6HHWBJ5CYX0BLC3TP' where id=19; -update noar ti set v3='KQQVF17YK17KYX2N6HHWBJ5CYX0BLC3TP' where id=19; -update noar tt set v0='BQ2C26F41R16F9IT6CHBS5SPWHX44U665' where id=20; -update noar ti set v0='BQ2C26F41R16F9IT6CHBS5SPWHX44U665' where id=20; -update noar tt set v1='BQLHGIX1QDX1FTDBELFBLKHMG4EGK3JUX' where id=20; -update noar ti set v1='BQLHGIX1QDX1FTDBELFBLKHMG4EGK3JUX' where id=20; -update noar tt set v2='8D8MWG0B0O5P3L4QHU7MAZ2FG7P1WXTDH' where id=20; -update noar ti set v2='8D8MWG0B0O5P3L4QHU7MAZ2FG7P1WXTDH' where id=20; -update noar tt set v3='A8BGZNDJPECVJXRC33OIZOMDMPPUXFMUR' where id=20; -update noar ti set v3='A8BGZNDJPECVJXRC33OIZOMDMPPUXFMUR' where id=20; -update noar tt set v0='P2ZCHS22PAQE5HP6TJ6GA9G6CYJDS8Y62' where id=21; -update noar ti set v0='P2ZCHS22PAQE5HP6TJ6GA9G6CYJDS8Y62' where id=21; -update noar tt set v1='HJ76W65BKZASJ0D5MVZOTT65E9JWCSQCG' where id=21; -update noar ti set v1='HJ76W65BKZASJ0D5MVZOTT65E9JWCSQCG' where id=21; -update noar tt set v2='HXN3H4N2716EPCF7SK5TJTCBMFHC1APFB' where id=21; -update noar ti set v2='HXN3H4N2716EPCF7SK5TJTCBMFHC1APFB' where id=21; -update noar tt set v3='MH0EOVWCAIQBG9Q6ASDCR5ADU3VVACATF' where id=21; -update noar ti set v3='MH0EOVWCAIQBG9Q6ASDCR5ADU3VVACATF' where id=21; -update noar tt set v0='107DEIHQ3GDC2NDS2Q07EDVFGWSO0J7SH' where id=22; -update noar ti set v0='107DEIHQ3GDC2NDS2Q07EDVFGWSO0J7SH' where id=22; -update noar tt set v1='FP7GFDM5MIX0U2QPXRRLNS5LF4I47TCNI' where id=22; -update noar ti set v1='FP7GFDM5MIX0U2QPXRRLNS5LF4I47TCNI' where id=22; -update noar tt set v2='IW8AA65FH5KWY484BCUEC2ZG2HWCLJ524' where id=22; -update noar ti set v2='IW8AA65FH5KWY484BCUEC2ZG2HWCLJ524' where id=22; -update noar tt set v3='J753JLU9JBWL0PTD9UM79MTK8MN7O57P5' where id=22; -update noar ti set v3='J753JLU9JBWL0PTD9UM79MTK8MN7O57P5' where id=22; -update noar tt set v0='9QF74QJJ49U6GQUVDCUFZ9C37H29KK1UY' where id=23; -update noar ti set v0='9QF74QJJ49U6GQUVDCUFZ9C37H29KK1UY' where id=23; -update noar tt set v1='IHA7PGIUNHGGWSXMW36C5WKYBF4K751AL' where id=23; -update noar ti set v1='IHA7PGIUNHGGWSXMW36C5WKYBF4K751AL' where id=23; -update noar tt set v2='YH1VL0ACEOES4HMPVH0WG2S9M0HX3FTWV' where id=23; -update noar ti set v2='YH1VL0ACEOES4HMPVH0WG2S9M0HX3FTWV' where id=23; -update noar tt set v3='XUCZC7D538MJST1GT6PVVHGZFYO64SW9O' where id=23; -update noar ti set v3='XUCZC7D538MJST1GT6PVVHGZFYO64SW9O' where id=23; -update noar tt set v0='8PH7LGKOHB54MDLK7RAPQTA9WFJ16TSJO' where id=24; -update noar ti set v0='8PH7LGKOHB54MDLK7RAPQTA9WFJ16TSJO' where id=24; -update noar tt set v1='BI1N1R8MP2R1Q9J8DICC5MXUCJREWV4SN' where id=24; -update noar ti set v1='BI1N1R8MP2R1Q9J8DICC5MXUCJREWV4SN' where id=24; -update noar tt set v2='JNDECEQE4UUXAOHS5QFG0922VTF09F674' where id=24; -update noar ti set v2='JNDECEQE4UUXAOHS5QFG0922VTF09F674' where id=24; -update noar tt set v3='N8H46WLI7LDXI6RKCXN559WMGERULO3KE' where id=24; -update noar ti set v3='N8H46WLI7LDXI6RKCXN559WMGERULO3KE' where id=24; -update noar tt set v0='0WI2SGQAPLGKEMTT89MJK3NQ1TRF57OR4' where id=25; -update noar ti set v0='0WI2SGQAPLGKEMTT89MJK3NQ1TRF57OR4' where id=25; -update noar tt set v1='VDNWTAZJI1RFJT3124UQYF8DYW5OGG0K3' where id=25; -update noar ti set v1='VDNWTAZJI1RFJT3124UQYF8DYW5OGG0K3' where id=25; -update noar tt set v2='VVWCC2BHB28RTN4QFLMPKGB6VIPQS9W3E' where id=25; -update noar ti set v2='VVWCC2BHB28RTN4QFLMPKGB6VIPQS9W3E' where id=25; -update noar tt set v3='6VN2LQ5BU505V7XXF1MSOJUDMPL8JOKYS' where id=25; -update noar ti set v3='6VN2LQ5BU505V7XXF1MSOJUDMPL8JOKYS' where id=25; -update noar tt set v0='WJQFASTDWGPKZU42IU4V5YFWY1VSDE3WJ' where id=26; -update noar ti set v0='WJQFASTDWGPKZU42IU4V5YFWY1VSDE3WJ' where id=26; -update noar tt set v1='OSDG1E7D6JY0THUCU9KCZQOCV0CWUDW68' where id=26; -update noar ti set v1='OSDG1E7D6JY0THUCU9KCZQOCV0CWUDW68' where id=26; -update noar tt set v2='10MB7PZUJQ05HXB7JM5PIH17N3UR9VGKQ' where id=26; -update noar ti set v2='10MB7PZUJQ05HXB7JM5PIH17N3UR9VGKQ' where id=26; -update noar tt set v3='FFZ23U1FOVCKI2WU8MCYHK5I6YDPRGQ7M' where id=26; -update noar ti set v3='FFZ23U1FOVCKI2WU8MCYHK5I6YDPRGQ7M' where id=26; -update noar tt set v0='XZF7INM5CEMFE64IPWUMNF4CF616KP96Y' where id=27; -update noar ti set v0='XZF7INM5CEMFE64IPWUMNF4CF616KP96Y' where id=27; -update noar tt set v1='5K5SQQUIXQ0J6G4NG2H073TLMUR4JBRHR' where id=27; -update noar ti set v1='5K5SQQUIXQ0J6G4NG2H073TLMUR4JBRHR' where id=27; -update noar tt set v2='4XIOGA6AU0ZE4RNRLGXMM174169A7FJ8O' where id=27; -update noar ti set v2='4XIOGA6AU0ZE4RNRLGXMM174169A7FJ8O' where id=27; -update noar tt set v3='OQJ9J76C3G1V8YC3I3LVRP15MCY8CFNC2' where id=27; -update noar ti set v3='OQJ9J76C3G1V8YC3I3LVRP15MCY8CFNC2' where id=27; -update noar tt set v0='GEJ9PDRMCVLOG03AR7GE2KUU06MDZTYER' where id=28; -update noar ti set v0='GEJ9PDRMCVLOG03AR7GE2KUU06MDZTYER' where id=28; -update noar tt set v1='1M7LYV783XMZEH73YCQ0GDPAZR3H33QNM' where id=28; -update noar ti set v1='1M7LYV783XMZEH73YCQ0GDPAZR3H33QNM' where id=28; -update noar tt set v2='5YTZ0UGTGHUR2E4L8NSR9YVY11S370HBA' where id=28; -update noar ti set v2='5YTZ0UGTGHUR2E4L8NSR9YVY11S370HBA' where id=28; -update noar tt set v3='0EB9NBJKQNDEJ2TSBPDBF6XE0WAETK7Y6' where id=28; -update noar ti set v3='0EB9NBJKQNDEJ2TSBPDBF6XE0WAETK7Y6' where id=28; -update noar tt set v0='SPRV1BGKMGD2G168A6NTPXRVUZAEB9TNL' where id=29; -update noar ti set v0='SPRV1BGKMGD2G168A6NTPXRVUZAEB9TNL' where id=29; -update noar tt set v1='07PHHJMEP9LIY6G7ISABOP3Y9DC2CEAGR' where id=29; -update noar ti set v1='07PHHJMEP9LIY6G7ISABOP3Y9DC2CEAGR' where id=29; -update noar tt set v2='GHSF6KNPA6KU20RRTU1KX5VF2V7ES6LBF' where id=29; -update noar ti set v2='GHSF6KNPA6KU20RRTU1KX5VF2V7ES6LBF' where id=29; -update noar tt set v3='DRMTKXYG6OHUUP0HMQ63YIQ1QVM0RHEU8' where id=29; -update noar ti set v3='DRMTKXYG6OHUUP0HMQ63YIQ1QVM0RHEU8' where id=29; -update noar tt set v0='8B98SDALI4I18REJFK4IWTM2PXCCUC55Z' where id=30; -update noar ti set v0='8B98SDALI4I18REJFK4IWTM2PXCCUC55Z' where id=30; -update noar tt set v1='82ZUIOLY0RXD9YOSCJ6TM50OBAXDIDR0B' where id=30; -update noar ti set v1='82ZUIOLY0RXD9YOSCJ6TM50OBAXDIDR0B' where id=30; -update noar tt set v2='EUS9RJRQ3H4F0C2G53U83SFS7I8UGMDFZ' where id=30; -update noar ti set v2='EUS9RJRQ3H4F0C2G53U83SFS7I8UGMDFZ' where id=30; -update noar tt set v3='A3G2TYACCQ7FLM83FHBQOWCVGOQIBEA34' where id=30; -update noar ti set v3='A3G2TYACCQ7FLM83FHBQOWCVGOQIBEA34' where id=30; -update noar tt set v0='URCNNZR6413MRLALGAAVA8TBYBSIJ8DFE' where id=31; -update noar ti set v0='URCNNZR6413MRLALGAAVA8TBYBSIJ8DFE' where id=31; -update noar tt set v1='QW6IRTPK76HZFID8EB4CFZSVW04E4MNJD' where id=31; -update noar ti set v1='QW6IRTPK76HZFID8EB4CFZSVW04E4MNJD' where id=31; -update noar tt set v2='Q09KRN14VAE8LU961P5DUEXFFF0UN5H0B' where id=31; -update noar ti set v2='Q09KRN14VAE8LU961P5DUEXFFF0UN5H0B' where id=31; -update noar tt set v3='Z3WJ30H2J28NATJVWOVJZSZQ15CRMR8IQ' where id=31; -update noar ti set v3='Z3WJ30H2J28NATJVWOVJZSZQ15CRMR8IQ' where id=31; -update noar tt set v0='18CAZA6MKOP3NY31ZJGX7JY1RD9H7MSB6' where id=32; -update noar ti set v0='18CAZA6MKOP3NY31ZJGX7JY1RD9H7MSB6' where id=32; -update noar tt set v1='FLY9WZ1FJ2074AA92R56673E5VNVKBZ0U' where id=32; -update noar ti set v1='FLY9WZ1FJ2074AA92R56673E5VNVKBZ0U' where id=32; -update noar tt set v2='YKJS5WNZ21VBZMTC1IK75DKJDH88NOIJC' where id=32; -update noar ti set v2='YKJS5WNZ21VBZMTC1IK75DKJDH88NOIJC' where id=32; -update noar tt set v3='Z0TBKW3I880W08Z5R82GGQV7LFF3N31G7' where id=32; -update noar ti set v3='Z0TBKW3I880W08Z5R82GGQV7LFF3N31G7' where id=32; -update noar tt set v0='K7B49HGXRR2UYZ7U1AHA7Q6RV76VE5EI5' where id=33; -update noar ti set v0='K7B49HGXRR2UYZ7U1AHA7Q6RV76VE5EI5' where id=33; -update noar tt set v1='G0COXPS7X6FJLIJQERQ3DFD13YWEBQWDG' where id=33; -update noar ti set v1='G0COXPS7X6FJLIJQERQ3DFD13YWEBQWDG' where id=33; -update noar tt set v2='5MD1ZS25BSXQQTILR08ZAM2AX47SJ67LJ' where id=33; -update noar ti set v2='5MD1ZS25BSXQQTILR08ZAM2AX47SJ67LJ' where id=33; -update noar tt set v3='P236IWTBHCTU9Z1SVB4SPZ7EU1Q6PQ7UG' where id=33; -update noar ti set v3='P236IWTBHCTU9Z1SVB4SPZ7EU1Q6PQ7UG' where id=33; -update noar tt set v0='KRVYBE4GVL382458JLRALHF1Z5LOXSG36' where id=34; -update noar ti set v0='KRVYBE4GVL382458JLRALHF1Z5LOXSG36' where id=34; -update noar tt set v1='5GKY08ZLHY2CK1TW4W9MH8JO5X3MMZ6UA' where id=34; -update noar ti set v1='5GKY08ZLHY2CK1TW4W9MH8JO5X3MMZ6UA' where id=34; -update noar tt set v2='ZFTESHXZWSGUE1PO05DJJ4NTHC4BXNTJM' where id=34; -update noar ti set v2='ZFTESHXZWSGUE1PO05DJJ4NTHC4BXNTJM' where id=34; -update noar tt set v3='5139ZWEPLT9R59F4Q9OWO9N2N7BOUNISC' where id=34; -update noar ti set v3='5139ZWEPLT9R59F4Q9OWO9N2N7BOUNISC' where id=34; -update noar tt set v0='2Y03O5MO2DWECZAH5ZPSU6JV7ZN5CFT8G' where id=35; -update noar ti set v0='2Y03O5MO2DWECZAH5ZPSU6JV7ZN5CFT8G' where id=35; -update noar tt set v1='FWUZZYUM3HPEIAMSOYPR9LVPTHPI9UAKB' where id=35; -update noar ti set v1='FWUZZYUM3HPEIAMSOYPR9LVPTHPI9UAKB' where id=35; -update noar tt set v2='8XKKEWLGB9YBVZS6MMFXOC0R0HYT72IRI' where id=35; -update noar ti set v2='8XKKEWLGB9YBVZS6MMFXOC0R0HYT72IRI' where id=35; -update noar tt set v3='Z53R1BXHRG9O8JY4CTYVX7V04G2YL12QR' where id=35; -update noar ti set v3='Z53R1BXHRG9O8JY4CTYVX7V04G2YL12QR' where id=35; -update noar tt set v0='OUV8RMH3A8GSSV58YWWQRK0Z9PRY83AAB' where id=36; -update noar ti set v0='OUV8RMH3A8GSSV58YWWQRK0Z9PRY83AAB' where id=36; -update noar tt set v1='NZUL5BS463AGH7WMFVTGD93X5QSXLDZUR' where id=36; -update noar ti set v1='NZUL5BS463AGH7WMFVTGD93X5QSXLDZUR' where id=36; -update noar tt set v2='RLMYSEWOA5T24CERMFHDPDQHB5BVG5X1O' where id=36; -update noar ti set v2='RLMYSEWOA5T24CERMFHDPDQHB5BVG5X1O' where id=36; -update noar tt set v3='1D5MBR0R2QSYZBXOVBK0V6CJ9WMWL32TT' where id=36; -update noar ti set v3='1D5MBR0R2QSYZBXOVBK0V6CJ9WMWL32TT' where id=36; -update noar tt set v0='KOSY5HJLZEZ0N03M22KDQAFAODJ09JWUG' where id=37; -update noar ti set v0='KOSY5HJLZEZ0N03M22KDQAFAODJ09JWUG' where id=37; -update noar tt set v1='7UIFAU5VQEKE49JYQ063Y77UGCVI77O8R' where id=37; -update noar ti set v1='7UIFAU5VQEKE49JYQ063Y77UGCVI77O8R' where id=37; -update noar tt set v2='GJDCD5PGW82BYOOETKYMBWGH9208OCWYY' where id=37; -update noar ti set v2='GJDCD5PGW82BYOOETKYMBWGH9208OCWYY' where id=37; -update noar tt set v3='MU0GRMGW78R93POY2YCXXRUN5BT15VSVC' where id=37; -update noar ti set v3='MU0GRMGW78R93POY2YCXXRUN5BT15VSVC' where id=37; -update noar tt set v0='SWVVSTD1XV3KFGV6EOJLF6GVGV19R6JVG' where id=38; -update noar ti set v0='SWVVSTD1XV3KFGV6EOJLF6GVGV19R6JVG' where id=38; -update noar tt set v1='Z5377X1FRJG6ZSHVFPJFABBY2NEKAA7LZ' where id=38; -update noar ti set v1='Z5377X1FRJG6ZSHVFPJFABBY2NEKAA7LZ' where id=38; -update noar tt set v2='QTG2C52LEYE4U9BUK52MMMMRJTWT3LWSM' where id=38; -update noar ti set v2='QTG2C52LEYE4U9BUK52MMMMRJTWT3LWSM' where id=38; -update noar tt set v3='9Q8C3QT414MF8ELA72ECGELEXLB17265A' where id=38; -update noar ti set v3='9Q8C3QT414MF8ELA72ECGELEXLB17265A' where id=38; -update noar tt set v0='229ERUNFC7UUA02YUVCXYFXN2BNFMVPXB' where id=39; -update noar ti set v0='229ERUNFC7UUA02YUVCXYFXN2BNFMVPXB' where id=39; -update noar tt set v1='Q4EPIZ79FXI1BWVRW29OITU2EB2UM6NH1' where id=39; -update noar ti set v1='Q4EPIZ79FXI1BWVRW29OITU2EB2UM6NH1' where id=39; -update noar tt set v2='N5E531AI6LAYDX9OYUHXVFIKQBUYCG3BN' where id=39; -update noar ti set v2='N5E531AI6LAYDX9OYUHXVFIKQBUYCG3BN' where id=39; -update noar tt set v3='V7LEWEU5DH4NHBJ9F2KS7OATJOM48A1QV' where id=39; -update noar ti set v3='V7LEWEU5DH4NHBJ9F2KS7OATJOM48A1QV' where id=39; -update noar tt set v0='2BO42FSK5BN8K0C84LYRJSOCSOQYGUKE6' where id=40; -update noar ti set v0='2BO42FSK5BN8K0C84LYRJSOCSOQYGUKE6' where id=40; -update noar tt set v1='DBQ3SK9METFRULPA9JR3J2HENT7VBLCV8' where id=40; -update noar ti set v1='DBQ3SK9METFRULPA9JR3J2HENT7VBLCV8' where id=40; -update noar tt set v2='OHKT0HS2AJKRETD80BJBF891IKNHGTULE' where id=40; -update noar ti set v2='OHKT0HS2AJKRETD80BJBF891IKNHGTULE' where id=40; -update noar tt set v3='2CO8NXQIFWKAL4Y1G2F4H0SBG43H5D987' where id=40; -update noar ti set v3='2CO8NXQIFWKAL4Y1G2F4H0SBG43H5D987' where id=40; -update noar tt set v0='T06FV780MYOO8M5MBIN0AQ4E04LTVEE34' where id=41; -update noar ti set v0='T06FV780MYOO8M5MBIN0AQ4E04LTVEE34' where id=41; -update noar tt set v1='ST4VM9I20H6M5G8MN1VBM3SD3GE8LTL5Q' where id=41; -update noar ti set v1='ST4VM9I20H6M5G8MN1VBM3SD3GE8LTL5Q' where id=41; -update noar tt set v2='Y1QH92Q281DGR9OCMQEE0TG8IQMR7E55Q' where id=41; -update noar ti set v2='Y1QH92Q281DGR9OCMQEE0TG8IQMR7E55Q' where id=41; -update noar tt set v3='7MLHS7VHC7XZ2UE5C5J1ITNQ3HTKMT0M4' where id=41; -update noar ti set v3='7MLHS7VHC7XZ2UE5C5J1ITNQ3HTKMT0M4' where id=41; -update noar tt set v0='EUES4TNVQUHST6XYUKUNZRYDE00H9E3ET' where id=42; -update noar ti set v0='EUES4TNVQUHST6XYUKUNZRYDE00H9E3ET' where id=42; -update noar tt set v1='YRHWRPMBBHD144YCNXFT1PQIV5IJGCC86' where id=42; -update noar ti set v1='YRHWRPMBBHD144YCNXFT1PQIV5IJGCC86' where id=42; -update noar tt set v2='9M765V1YX537R8I03AO706NCMA99KCLE7' where id=42; -update noar ti set v2='9M765V1YX537R8I03AO706NCMA99KCLE7' where id=42; -update noar tt set v3='6W0ESIUQKA1KJWXE1SAEUSOO1UDPA32IP' where id=42; -update noar ti set v3='6W0ESIUQKA1KJWXE1SAEUSOO1UDPA32IP' where id=42; -update noar tt set v0='GHO01XGSMT12P8K8YUWW4822F2TB2A1WY' where id=43; -update noar ti set v0='GHO01XGSMT12P8K8YUWW4822F2TB2A1WY' where id=43; -update noar tt set v1='DMGU1UMBGB9NN4EOIC0J55TW9X5MXD54M' where id=43; -update noar ti set v1='DMGU1UMBGB9NN4EOIC0J55TW9X5MXD54M' where id=43; -update noar tt set v2='PPUGMRL5JQPIZ4OU5T3BNWO2UU01M5ZTD' where id=43; -update noar ti set v2='PPUGMRL5JQPIZ4OU5T3BNWO2UU01M5ZTD' where id=43; -update noar tt set v3='DR3UTBMFJKPHCGUDHRQAAWVC1YL24BMMN' where id=43; -update noar ti set v3='DR3UTBMFJKPHCGUDHRQAAWVC1YL24BMMN' where id=43; -update noar tt set v0='MQBQQJTIUOMW2EF464QUDTPPNX533YJZR' where id=44; -update noar ti set v0='MQBQQJTIUOMW2EF464QUDTPPNX533YJZR' where id=44; -update noar tt set v1='J53YVRKD7KWR60599IXY4M9K67GV9NLPH' where id=44; -update noar ti set v1='J53YVRKD7KWR60599IXY4M9K67GV9NLPH' where id=44; -update noar tt set v2='30SOHZPPZIKPY52Y3IK0AGZWLWWPGA7DR' where id=44; -update noar ti set v2='30SOHZPPZIKPY52Y3IK0AGZWLWWPGA7DR' where id=44; -update noar tt set v3='WJUQXAOQQ87OKE6KQ5P33Z33K00POIMV1' where id=44; -update noar ti set v3='WJUQXAOQQ87OKE6KQ5P33Z33K00POIMV1' where id=44; -update noar tt set v0='H9L307FD360CBDLITL0176G6ETWRG9RN3' where id=45; -update noar ti set v0='H9L307FD360CBDLITL0176G6ETWRG9RN3' where id=45; -update noar tt set v1='PAH82M79MPSSQCUUNOXFRXATRZ7SC0BAB' where id=45; -update noar ti set v1='PAH82M79MPSSQCUUNOXFRXATRZ7SC0BAB' where id=45; -update noar tt set v2='97I78JVD1MVPLZPZALUZNPANWFMWBHTF1' where id=45; -update noar ti set v2='97I78JVD1MVPLZPZALUZNPANWFMWBHTF1' where id=45; -update noar tt set v3='TXUJEWCI2MD8JMXWXRA7YFYVOXP2QTKOA' where id=45; -update noar ti set v3='TXUJEWCI2MD8JMXWXRA7YFYVOXP2QTKOA' where id=45; -update noar tt set v0='BG1RKJ1VBUB22VGT7L45ZYJDQ6TGZ7500' where id=46; -update noar ti set v0='BG1RKJ1VBUB22VGT7L45ZYJDQ6TGZ7500' where id=46; -update noar tt set v1='TVR985R8I8H14C1XKJL3DFJ7WFCKJG7IY' where id=46; -update noar ti set v1='TVR985R8I8H14C1XKJL3DFJ7WFCKJG7IY' where id=46; -update noar tt set v2='PQFIXIEDB7XVWRDYHCQCYEALXAGTMJT8C' where id=46; -update noar ti set v2='PQFIXIEDB7XVWRDYHCQCYEALXAGTMJT8C' where id=46; -update noar tt set v3='KWLNFQECG32YF9JLQ5WCVXRPNMH7QT5CP' where id=46; -update noar ti set v3='KWLNFQECG32YF9JLQ5WCVXRPNMH7QT5CP' where id=46; -update noar tt set v0='P05HAGUVHF2BY8A117PQB4LXKP2WWMY42' where id=47; -update noar ti set v0='P05HAGUVHF2BY8A117PQB4LXKP2WWMY42' where id=47; -update noar tt set v1='VS6KV97CEAXBBQOGETK6X0YJG6OT77V31' where id=47; -update noar ti set v1='VS6KV97CEAXBBQOGETK6X0YJG6OT77V31' where id=47; -update noar tt set v2='7Q7W0GV5G356XPDMHBH2RJZ4G9U43AUEX' where id=47; -update noar ti set v2='7Q7W0GV5G356XPDMHBH2RJZ4G9U43AUEX' where id=47; -update noar tt set v3='641AVJHYGZBGY3SS4V7CZX1D9D1PL82AA' where id=47; -update noar ti set v3='641AVJHYGZBGY3SS4V7CZX1D9D1PL82AA' where id=47; -update noar tt set v0='H76MQY3XZEMY41JDREB1U3PQGROCZJ32O' where id=48; -update noar ti set v0='H76MQY3XZEMY41JDREB1U3PQGROCZJ32O' where id=48; -update noar tt set v1='UDELV3TMJKN971SC67V04IJV0ZZ9NT957' where id=48; -update noar ti set v1='UDELV3TMJKN971SC67V04IJV0ZZ9NT957' where id=48; -update noar tt set v2='5DEU5BI2HWI7BD1E28KGU5FRFLRXTJ393' where id=48; -update noar ti set v2='5DEU5BI2HWI7BD1E28KGU5FRFLRXTJ393' where id=48; -update noar tt set v3='651U16ZE6EX7BNYFOCQQU26Y0X5S76OZI' where id=48; -update noar ti set v3='651U16ZE6EX7BNYFOCQQU26Y0X5S76OZI' where id=48; -update noar tt set v0='S3KKMZJ9TAHIG1SJMU2Q1PONODEDSM7T0' where id=49; -update noar ti set v0='S3KKMZJ9TAHIG1SJMU2Q1PONODEDSM7T0' where id=49; -update noar tt set v1='0G192ZBDTGJUMGQ0CMME00F8X1F7UKK3Q' where id=49; -update noar ti set v1='0G192ZBDTGJUMGQ0CMME00F8X1F7UKK3Q' where id=49; -update noar tt set v2='24RTDTONPHWS1H3FCA2LO8I2YP588RGJB' where id=49; -update noar ti set v2='24RTDTONPHWS1H3FCA2LO8I2YP588RGJB' where id=49; -update noar tt set v3='M8QZ39EZNBNMHS4NXEN9QOMMMAOUHW002' where id=49; -update noar ti set v3='M8QZ39EZNBNMHS4NXEN9QOMMMAOUHW002' where id=49; -update noar tt set v0='A6IZG7ZEZQTCZICP7OB1K17VF7ZGPF0RP' where id=50; -update noar ti set v0='A6IZG7ZEZQTCZICP7OB1K17VF7ZGPF0RP' where id=50; -update noar tt set v1='NEMY8UFM78ML661P6147SXCDP6J02RQEA' where id=50; -update noar ti set v1='NEMY8UFM78ML661P6147SXCDP6J02RQEA' where id=50; -update noar tt set v2='RGW6669TULDTCI6AEGFLI30M0BNJU4X91' where id=50; -update noar ti set v2='RGW6669TULDTCI6AEGFLI30M0BNJU4X91' where id=50; -update noar tt set v3='T5BB49AUMIPRA78A5NN71VHQHWCA12T4W' where id=50; -update noar ti set v3='T5BB49AUMIPRA78A5NN71VHQHWCA12T4W' where id=50; -update noar tt set v0='LXSNRNC3J6O8KPFCMD8SYV621VISQPEWE' where id=51; -update noar ti set v0='LXSNRNC3J6O8KPFCMD8SYV621VISQPEWE' where id=51; -update noar tt set v1='UWDWY1GR92F74CT5TSD6T6XGBPZ5H8SF7' where id=51; -update noar ti set v1='UWDWY1GR92F74CT5TSD6T6XGBPZ5H8SF7' where id=51; -update noar tt set v2='QJ9IP4S6WWGF0KX80D8XTAOF5HL4UQVPT' where id=51; -update noar ti set v2='QJ9IP4S6WWGF0KX80D8XTAOF5HL4UQVPT' where id=51; -update noar tt set v3='ZM7P24RT3BCVDM2ICWF07OC5OSJSFIDVL' where id=51; -update noar ti set v3='ZM7P24RT3BCVDM2ICWF07OC5OSJSFIDVL' where id=51; -update noar tt set v0='BJK46ALUVTQE8RUU97LP5E043KVMJD70D' where id=52; -update noar ti set v0='BJK46ALUVTQE8RUU97LP5E043KVMJD70D' where id=52; -update noar tt set v1='BFDIN2FDON0CU2CLKEB4MC9Z5X3JN0SK4' where id=52; -update noar ti set v1='BFDIN2FDON0CU2CLKEB4MC9Z5X3JN0SK4' where id=52; -update noar tt set v2='VNAUIIRJCOVS0KJU253HJ368GVKR11KDI' where id=52; -update noar ti set v2='VNAUIIRJCOVS0KJU253HJ368GVKR11KDI' where id=52; -update noar tt set v3='VC2YTAA7CH1X8C69MG1PC7V9ZEOTNQ4UF' where id=52; -update noar ti set v3='VC2YTAA7CH1X8C69MG1PC7V9ZEOTNQ4UF' where id=52; -update noar tt set v0='TQ8Y5T19I5IBFL0XG66X20Y7W7OQTQX5O' where id=53; -update noar ti set v0='TQ8Y5T19I5IBFL0XG66X20Y7W7OQTQX5O' where id=53; -update noar tt set v1='4SOFHDU9AZBUCTWWKUJJG30IDACHX458Y' where id=53; -update noar ti set v1='4SOFHDU9AZBUCTWWKUJJG30IDACHX458Y' where id=53; -update noar tt set v2='LC298ZARGDWN2SQC8KQ99TC0XDK0J3HNY' where id=53; -update noar ti set v2='LC298ZARGDWN2SQC8KQ99TC0XDK0J3HNY' where id=53; -update noar tt set v3='JKTZGV4VOVAOCI3M1E4PX7FZP3YYAIV9X' where id=53; -update noar ti set v3='JKTZGV4VOVAOCI3M1E4PX7FZP3YYAIV9X' where id=53; -update noar tt set v0='BU4HHSK0CDGWDZKOYOIXQHTF74DP95NFK' where id=54; -update noar ti set v0='BU4HHSK0CDGWDZKOYOIXQHTF74DP95NFK' where id=54; -update noar tt set v1='6JZYFTSSCTGO9WF9BFNLUA0NBMMF2N8XE' where id=54; -update noar ti set v1='6JZYFTSSCTGO9WF9BFNLUA0NBMMF2N8XE' where id=54; -update noar tt set v2='OU0NT3U4AIEQ0WXBG8WH5NCK96W8ZEPPE' where id=54; -update noar ti set v2='OU0NT3U4AIEQ0WXBG8WH5NCK96W8ZEPPE' where id=54; -update noar tt set v3='N7PV3KCTRBT0I1Z7R44WEBSB6OLCYFO8J' where id=54; -update noar ti set v3='N7PV3KCTRBT0I1Z7R44WEBSB6OLCYFO8J' where id=54; -update noar tt set v0='6MWP2FE7BPLOBTS1DMQ71HD2UNOMR0CKX' where id=55; -update noar ti set v0='6MWP2FE7BPLOBTS1DMQ71HD2UNOMR0CKX' where id=55; -update noar tt set v1='3IBBZHYPZUG5N4C0MZQ858DGRB3QVU8UL' where id=55; -update noar ti set v1='3IBBZHYPZUG5N4C0MZQ858DGRB3QVU8UL' where id=55; -update noar tt set v2='050LJRF8Z661PFZFFJI4PUY5HC6FZ4XAZ' where id=55; -update noar ti set v2='050LJRF8Z661PFZFFJI4PUY5HC6FZ4XAZ' where id=55; -update noar tt set v3='3N4YM08A7GF6NY4WKIZJYB812CB69M1TM' where id=55; -update noar ti set v3='3N4YM08A7GF6NY4WKIZJYB812CB69M1TM' where id=55; -update noar tt set v0='11366LNF4LLZJS8Y0PTI84JBHS00YSTU8' where id=56; -update noar ti set v0='11366LNF4LLZJS8Y0PTI84JBHS00YSTU8' where id=56; -update noar tt set v1='OR5YXKS53YP6XHGIPZ296G6AQIOET6R03' where id=56; -update noar ti set v1='OR5YXKS53YP6XHGIPZ296G6AQIOET6R03' where id=56; -update noar tt set v2='YWJ31G85YR5HHNVEODM3JKOH15OP90Q2F' where id=56; -update noar ti set v2='YWJ31G85YR5HHNVEODM3JKOH15OP90Q2F' where id=56; -update noar tt set v3='ZX8KYZ3EQSDX25XGXMZBANP2AT8UEUGQD' where id=56; -update noar ti set v3='ZX8KYZ3EQSDX25XGXMZBANP2AT8UEUGQD' where id=56; -update noar tt set v0='WIL66TSKLO1QDQ9SHC8TPYTENWK094IQL' where id=57; -update noar ti set v0='WIL66TSKLO1QDQ9SHC8TPYTENWK094IQL' where id=57; -update noar tt set v1='IZST9BLY30O1OI6GOLNSHYKW2PJ4L7PQ5' where id=57; -update noar ti set v1='IZST9BLY30O1OI6GOLNSHYKW2PJ4L7PQ5' where id=57; -update noar tt set v2='LR1LDYMEN07AFFSLXMSLMI2CRQHWW0NLJ' where id=57; -update noar ti set v2='LR1LDYMEN07AFFSLXMSLMI2CRQHWW0NLJ' where id=57; -update noar tt set v3='49FQ5TLVYGKN8ERX3UV4KBK9RDDS2FJ94' where id=57; -update noar ti set v3='49FQ5TLVYGKN8ERX3UV4KBK9RDDS2FJ94' where id=57; -update noar tt set v0='TCRDTTNMB5C482EBDU1DLJ03Q3SUJS1DN' where id=58; -update noar ti set v0='TCRDTTNMB5C482EBDU1DLJ03Q3SUJS1DN' where id=58; -update noar tt set v1='YIKSGR2NEZ614TL0PTJ51X8B1L64ZBDI7' where id=58; -update noar ti set v1='YIKSGR2NEZ614TL0PTJ51X8B1L64ZBDI7' where id=58; -update noar tt set v2='SB70C6U9232ELJNALDDGK2FMGH3TNG7DG' where id=58; -update noar ti set v2='SB70C6U9232ELJNALDDGK2FMGH3TNG7DG' where id=58; -update noar tt set v3='RTYBZM0KZMBKBQA3NP5DG61BHPHILZCPD' where id=58; -update noar ti set v3='RTYBZM0KZMBKBQA3NP5DG61BHPHILZCPD' where id=58; -update noar tt set v0='NMF2XQ4OS8UHPBS2L41G3Y3NMSQIK9L9T' where id=59; -update noar ti set v0='NMF2XQ4OS8UHPBS2L41G3Y3NMSQIK9L9T' where id=59; -update noar tt set v1='WCVNB26Z87VXGXFMQ0CDWAU3F1KRRZWFY' where id=59; -update noar ti set v1='WCVNB26Z87VXGXFMQ0CDWAU3F1KRRZWFY' where id=59; -update noar tt set v2='XU6QL3KQ6HDG5FPE1COTEVANDNK0N79AT' where id=59; -update noar ti set v2='XU6QL3KQ6HDG5FPE1COTEVANDNK0N79AT' where id=59; -update noar tt set v3='1ZUQRU4LD7QCGT0WJYWNJKJW1XFL9OQ4C' where id=59; -update noar ti set v3='1ZUQRU4LD7QCGT0WJYWNJKJW1XFL9OQ4C' where id=59; -update noar tt set v0='VM06I5MPUPJN55OXYHJ14T9OURYRW001B' where id=60; -update noar ti set v0='VM06I5MPUPJN55OXYHJ14T9OURYRW001B' where id=60; -update noar tt set v1='76ATR77K16EY7AD3L8ZGQN3UXO8C8LHJW' where id=60; -update noar ti set v1='76ATR77K16EY7AD3L8ZGQN3UXO8C8LHJW' where id=60; -update noar tt set v2='SYFSBI4ABGH7CKOIMJWL7RV551NBNB4WM' where id=60; -update noar ti set v2='SYFSBI4ABGH7CKOIMJWL7RV551NBNB4WM' where id=60; -update noar tt set v3='1VGRTZQKX8T4Q58WYGP6GQGQ3PLNBBV89' where id=60; -update noar ti set v3='1VGRTZQKX8T4Q58WYGP6GQGQ3PLNBBV89' where id=60; -update noar tt set v0='VLJU7DG5MGME7XQMV9UC6OCCABFEP2DML' where id=61; -update noar ti set v0='VLJU7DG5MGME7XQMV9UC6OCCABFEP2DML' where id=61; -update noar tt set v1='U66MIZ9X814XSSWFALZAYCTIA87M243J5' where id=61; -update noar ti set v1='U66MIZ9X814XSSWFALZAYCTIA87M243J5' where id=61; -update noar tt set v2='PZ2JMGVY0UA0NMJI5TXPN9DTUEPXD64ZJ' where id=61; -update noar ti set v2='PZ2JMGVY0UA0NMJI5TXPN9DTUEPXD64ZJ' where id=61; -update noar tt set v3='CD0C0X8WS18IBF8BOJ2B4NQX8ZE0WC6E9' where id=61; -update noar ti set v3='CD0C0X8WS18IBF8BOJ2B4NQX8ZE0WC6E9' where id=61; -update noar tt set v0='A5S44N1TMX88VG6SDHDVYQTTD70GUXWEK' where id=62; -update noar ti set v0='A5S44N1TMX88VG6SDHDVYQTTD70GUXWEK' where id=62; -update noar tt set v1='SHQW6Y2ZGOCTNYRLE1MVL53I8UV4P2HP7' where id=62; -update noar ti set v1='SHQW6Y2ZGOCTNYRLE1MVL53I8UV4P2HP7' where id=62; -update noar tt set v2='TZJYK2PK5C8DZ6POOETAXPV2H0RQ6X8QH' where id=62; -update noar ti set v2='TZJYK2PK5C8DZ6POOETAXPV2H0RQ6X8QH' where id=62; -update noar tt set v3='P5YTFZJWGPMZWGJZPO6BULJLOCF07Z9LF' where id=62; -update noar ti set v3='P5YTFZJWGPMZWGJZPO6BULJLOCF07Z9LF' where id=62; -update noar tt set v0='DXIUJPJIGCKXE8KYU4X15XQOFQ4KXU6LL' where id=63; -update noar ti set v0='DXIUJPJIGCKXE8KYU4X15XQOFQ4KXU6LL' where id=63; -update noar tt set v1='W6Q9E97RFAFETEM2IORNUUNC5GZG6TZUO' where id=63; -update noar ti set v1='W6Q9E97RFAFETEM2IORNUUNC5GZG6TZUO' where id=63; -update noar tt set v2='OQRGLG7YZZNRD1YQALS0JO6O6ZLEK1QVP' where id=63; -update noar ti set v2='OQRGLG7YZZNRD1YQALS0JO6O6ZLEK1QVP' where id=63; -update noar tt set v3='OVI0WCUGVDSVH7ZOO4TD9XV0IYQQ12VNY' where id=63; -update noar ti set v3='OVI0WCUGVDSVH7ZOO4TD9XV0IYQQ12VNY' where id=63; -update noar tt set v0='J5Q3VFO0ZA4DF8QHCTXZ4YUN7SDW3CBY2' where id=64; -update noar ti set v0='J5Q3VFO0ZA4DF8QHCTXZ4YUN7SDW3CBY2' where id=64; -update noar tt set v1='3WQ6YQKV13E7UMVSZR92EYP91I1WIBA55' where id=64; -update noar ti set v1='3WQ6YQKV13E7UMVSZR92EYP91I1WIBA55' where id=64; -update noar tt set v2='TG3O9OM8TTPPB60233M822MVF6DTMJ1GY' where id=64; -update noar ti set v2='TG3O9OM8TTPPB60233M822MVF6DTMJ1GY' where id=64; -update noar tt set v3='PECH6S66TNU0T7E2AV4G7I0ICY9J5HYMT' where id=64; -update noar ti set v3='PECH6S66TNU0T7E2AV4G7I0ICY9J5HYMT' where id=64; -update noar tt set v0='P9V026YRE4E6N27H8W0FE9RD9ID4H0KHP' where id=65; -update noar ti set v0='P9V026YRE4E6N27H8W0FE9RD9ID4H0KHP' where id=65; -update noar tt set v1='GR5V92X8VME7QHTLZRDYDNYU4XDY27WK8' where id=65; -update noar ti set v1='GR5V92X8VME7QHTLZRDYDNYU4XDY27WK8' where id=65; -update noar tt set v2='ZHTIM8XBIIKT1ZUANZI28GNAJ6WIA6VSA' where id=65; -update noar ti set v2='ZHTIM8XBIIKT1ZUANZI28GNAJ6WIA6VSA' where id=65; -update noar tt set v3='52Y1LAL6S07WFRHRMYGM703S4BNXQXFWI' where id=65; -update noar ti set v3='52Y1LAL6S07WFRHRMYGM703S4BNXQXFWI' where id=65; -update noar tt set v0='HQBYRGQY7H3EZN9NTQKO0ZV64VF211XBQ' where id=66; -update noar ti set v0='HQBYRGQY7H3EZN9NTQKO0ZV64VF211XBQ' where id=66; -update noar tt set v1='V6YGXLISICT0K8K792R7Z9FKORGIYYM3W' where id=66; -update noar ti set v1='V6YGXLISICT0K8K792R7Z9FKORGIYYM3W' where id=66; -update noar tt set v2='A9SF2TOIUJ06VKQZGFIGG4AFAMYA03I8L' where id=66; -update noar ti set v2='A9SF2TOIUJ06VKQZGFIGG4AFAMYA03I8L' where id=66; -update noar tt set v3='8DRMIRHJKHA0JUCRYG6GYK3ACZI889F5G' where id=66; -update noar ti set v3='8DRMIRHJKHA0JUCRYG6GYK3ACZI889F5G' where id=66; -update noar tt set v0='U7IRM1W59O9W71HVONRKHK63WA7APZR80' where id=67; -update noar ti set v0='U7IRM1W59O9W71HVONRKHK63WA7APZR80' where id=67; -update noar tt set v1='EW9RSVANN4GXFDHNJEUYVKTTQ1M1H6EC4' where id=67; -update noar ti set v1='EW9RSVANN4GXFDHNJEUYVKTTQ1M1H6EC4' where id=67; -update noar tt set v2='RBZLXMMNGSIH2Z0ZKTMODQR9AHUOBZGG6' where id=67; -update noar ti set v2='RBZLXMMNGSIH2Z0ZKTMODQR9AHUOBZGG6' where id=67; -update noar tt set v3='91KMBJ1JJ3EO9MFXTM2GWL9KBG2B0VUQ3' where id=67; -update noar ti set v3='91KMBJ1JJ3EO9MFXTM2GWL9KBG2B0VUQ3' where id=67; -update noar tt set v0='4VDHEZIWXIWFA9UN3UY9C0P5R5Z8J5WXJ' where id=68; -update noar ti set v0='4VDHEZIWXIWFA9UN3UY9C0P5R5Z8J5WXJ' where id=68; -update noar tt set v1='SPYS7HLQ9OAX7KOGWVTWXHD0MAP474K59' where id=68; -update noar ti set v1='SPYS7HLQ9OAX7KOGWVTWXHD0MAP474K59' where id=68; -update noar tt set v2='TN58DN9GB8OE3TKX3QXJP1D56Q0WT1WMK' where id=68; -update noar ti set v2='TN58DN9GB8OE3TKX3QXJP1D56Q0WT1WMK' where id=68; -update noar tt set v3='T7P8DXVVUCAJPU7SZIF1UH5THFSRAJBOA' where id=68; -update noar ti set v3='T7P8DXVVUCAJPU7SZIF1UH5THFSRAJBOA' where id=68; -update noar tt set v0='RBAFLFIAP39ZJPEB45CMYIJNL4O69NHJA' where id=69; -update noar ti set v0='RBAFLFIAP39ZJPEB45CMYIJNL4O69NHJA' where id=69; -update noar tt set v1='A8UO00Q0QGUITMRJYGIEJ6J3VOORX3V2X' where id=69; -update noar ti set v1='A8UO00Q0QGUITMRJYGIEJ6J3VOORX3V2X' where id=69; -update noar tt set v2='4C8OI3LBJ9BEU1UL6PSL4EUX3VI5AXZVC' where id=69; -update noar ti set v2='4C8OI3LBJ9BEU1UL6PSL4EUX3VI5AXZVC' where id=69; -update noar tt set v3='YBI1CCKRD7HH53NL2Z38J58BJUPSWD3B8' where id=69; -update noar ti set v3='YBI1CCKRD7HH53NL2Z38J58BJUPSWD3B8' where id=69; -update noar tt set v0='0R6EPZDWXP8REHTE4QAHQRR1TCR2PES1M' where id=70; -update noar ti set v0='0R6EPZDWXP8REHTE4QAHQRR1TCR2PES1M' where id=70; -update noar tt set v1='AUUJPYXXC4KFMJK48FJ8722FR9BAKX0KY' where id=70; -update noar ti set v1='AUUJPYXXC4KFMJK48FJ8722FR9BAKX0KY' where id=70; -update noar tt set v2='0Z9S1U27VH738JD5Z175A1J3YPB2N025M' where id=70; -update noar ti set v2='0Z9S1U27VH738JD5Z175A1J3YPB2N025M' where id=70; -update noar tt set v3='N1CKHUX8C5MMJLBYGQEBL6BPNBV9J11IW' where id=70; -update noar ti set v3='N1CKHUX8C5MMJLBYGQEBL6BPNBV9J11IW' where id=70; -update noar tt set v0='E53K6FCNE8296B77TTNO8FTKYDV15DHFE' where id=71; -update noar ti set v0='E53K6FCNE8296B77TTNO8FTKYDV15DHFE' where id=71; -update noar tt set v1='J70EEQVMHMLKOFVPPKGPP33WCDRD4LHHN' where id=71; -update noar ti set v1='J70EEQVMHMLKOFVPPKGPP33WCDRD4LHHN' where id=71; -update noar tt set v2='UG7ILDDTK2AFZU9YU6DQ0DYLZN430MUM9' where id=71; -update noar ti set v2='UG7ILDDTK2AFZU9YU6DQ0DYLZN430MUM9' where id=71; -update noar tt set v3='GHCMT694ZNB7UW5VTMDGLTD68F3AR46GW' where id=71; -update noar ti set v3='GHCMT694ZNB7UW5VTMDGLTD68F3AR46GW' where id=71; -update noar tt set v0='CLJZXA12D8IYJEZDB1R4E7GRMV8N72RT9' where id=72; -update noar ti set v0='CLJZXA12D8IYJEZDB1R4E7GRMV8N72RT9' where id=72; -update noar tt set v1='OSHBB5ZRF7RLE6CHZMKR56QZH0ISXB4CK' where id=72; -update noar ti set v1='OSHBB5ZRF7RLE6CHZMKR56QZH0ISXB4CK' where id=72; -update noar tt set v2='1VFD6E9NXSITTRRMLYXW93N450TU3RJ4T' where id=72; -update noar ti set v2='1VFD6E9NXSITTRRMLYXW93N450TU3RJ4T' where id=72; -update noar tt set v3='0V0KHIZHYM3FRMXLFODZSA97R7H7RDGEH' where id=72; -update noar ti set v3='0V0KHIZHYM3FRMXLFODZSA97R7H7RDGEH' where id=72; -update noar tt set v0='OZVGOUL95XCUZW1FCTFPDMXGU29RCGAFW' where id=73; -update noar ti set v0='OZVGOUL95XCUZW1FCTFPDMXGU29RCGAFW' where id=73; -update noar tt set v1='96OUR5V5JBHNI7ZFSSYCJ0H7WE4YT283N' where id=73; -update noar ti set v1='96OUR5V5JBHNI7ZFSSYCJ0H7WE4YT283N' where id=73; -update noar tt set v2='IYCI1S7HOLM7P4IC0OIEOCL953EI8G19T' where id=73; -update noar ti set v2='IYCI1S7HOLM7P4IC0OIEOCL953EI8G19T' where id=73; -update noar tt set v3='GWJW0RFJJB80X5T880J9CYGPXX0J6ZDWE' where id=73; -update noar ti set v3='GWJW0RFJJB80X5T880J9CYGPXX0J6ZDWE' where id=73; -update noar tt set v0='DZKR232DCPAICDL3DH921CM82LM0J2KCP' where id=74; -update noar ti set v0='DZKR232DCPAICDL3DH921CM82LM0J2KCP' where id=74; -update noar tt set v1='R2ZZFSGBVIX329YJGWA2NA1KNYXFICHML' where id=74; -update noar ti set v1='R2ZZFSGBVIX329YJGWA2NA1KNYXFICHML' where id=74; -update noar tt set v2='H3O2GLFUQXEAV6MONOE4NYCUUHH89IWSP' where id=74; -update noar ti set v2='H3O2GLFUQXEAV6MONOE4NYCUUHH89IWSP' where id=74; -update noar tt set v3='DN2WPI8C0V14DOIDC8HOCXL1MH36X8P1Q' where id=74; -update noar ti set v3='DN2WPI8C0V14DOIDC8HOCXL1MH36X8P1Q' where id=74; -update noar tt set v0='KKAU7NVQJIDYC5J4PSKO2B9NFQZCNZNAM' where id=75; -update noar ti set v0='KKAU7NVQJIDYC5J4PSKO2B9NFQZCNZNAM' where id=75; -update noar tt set v1='5KTQ2LYODHTNDBTPWP7O39G18YKS1F3JF' where id=75; -update noar ti set v1='5KTQ2LYODHTNDBTPWP7O39G18YKS1F3JF' where id=75; -update noar tt set v2='LSR05H81093YIS2VI9K42MF90NKAV6YBB' where id=75; -update noar ti set v2='LSR05H81093YIS2VI9K42MF90NKAV6YBB' where id=75; -update noar tt set v3='8Q6YN8ACEGSRW6J792TQRJZXL2CRM6F8R' where id=75; -update noar ti set v3='8Q6YN8ACEGSRW6J792TQRJZXL2CRM6F8R' where id=75; -update noar tt set v0='MELD8O9P7RWKK94A3N9XQEG11OX85JEBG' where id=76; -update noar ti set v0='MELD8O9P7RWKK94A3N9XQEG11OX85JEBG' where id=76; -update noar tt set v1='7MJK9CPHQ90RZKKWHG3R4NZ5BDTXP5AGV' where id=76; -update noar ti set v1='7MJK9CPHQ90RZKKWHG3R4NZ5BDTXP5AGV' where id=76; -update noar tt set v2='BVFAEOYPQQWIVH9QVEMD1B6J3U9UKB6I9' where id=76; -update noar ti set v2='BVFAEOYPQQWIVH9QVEMD1B6J3U9UKB6I9' where id=76; -update noar tt set v3='65WMWMYPC9566T2IG53KGTVILG4FAWFFR' where id=76; -update noar ti set v3='65WMWMYPC9566T2IG53KGTVILG4FAWFFR' where id=76; -update noar tt set v0='I2P6PFQJXFXRX21THQ8W3X0N90J9Z54RK' where id=77; -update noar ti set v0='I2P6PFQJXFXRX21THQ8W3X0N90J9Z54RK' where id=77; -update noar tt set v1='46L8DSTTPJTKB3PMHWKGBG5U632P4S9VH' where id=77; -update noar ti set v1='46L8DSTTPJTKB3PMHWKGBG5U632P4S9VH' where id=77; -update noar tt set v2='QHCHD1TSI870RBHOPS3X1A2TXDR3TYIOR' where id=77; -update noar ti set v2='QHCHD1TSI870RBHOPS3X1A2TXDR3TYIOR' where id=77; -update noar tt set v3='QCOE17ASDZR7CP4NF06B3RD41F09TTFBP' where id=77; -update noar ti set v3='QCOE17ASDZR7CP4NF06B3RD41F09TTFBP' where id=77; -update noar tt set v0='ZDMHLYKTPA6UJ2HOUPF2NZ29YCBS0LPB1' where id=78; -update noar ti set v0='ZDMHLYKTPA6UJ2HOUPF2NZ29YCBS0LPB1' where id=78; -update noar tt set v1='6K9DP0RUZUCQSJVYDVO3IGAP6SBDV9WK2' where id=78; -update noar ti set v1='6K9DP0RUZUCQSJVYDVO3IGAP6SBDV9WK2' where id=78; -update noar tt set v2='W968MKNIHCPENL5EU0OQYHEE736JRBDO5' where id=78; -update noar ti set v2='W968MKNIHCPENL5EU0OQYHEE736JRBDO5' where id=78; -update noar tt set v3='C1P5NN3CLAOACWO6GC8CHW2XBXTOTBQ9R' where id=78; -update noar ti set v3='C1P5NN3CLAOACWO6GC8CHW2XBXTOTBQ9R' where id=78; -update noar tt set v0='VVKCPGTI9ZP4RGQ2RE426UCHSVG5WERM2' where id=79; -update noar ti set v0='VVKCPGTI9ZP4RGQ2RE426UCHSVG5WERM2' where id=79; -update noar tt set v1='9ALQ6SFBH1BH1BSWX9ZW2QUHFIOHJNN2P' where id=79; -update noar ti set v1='9ALQ6SFBH1BH1BSWX9ZW2QUHFIOHJNN2P' where id=79; -update noar tt set v2='F1OMWTAX0TKMXLGDNRPXK2H1XMTV4U35U' where id=79; -update noar ti set v2='F1OMWTAX0TKMXLGDNRPXK2H1XMTV4U35U' where id=79; -update noar tt set v3='BBHGSD8QTJYUMMKBNO9ZXFEFN1DC4H96O' where id=79; -update noar ti set v3='BBHGSD8QTJYUMMKBNO9ZXFEFN1DC4H96O' where id=79; -update noar tt set v0='M2QRLC1L0PT4QMP0SQZOMSJ3NPO51GVVP' where id=80; -update noar ti set v0='M2QRLC1L0PT4QMP0SQZOMSJ3NPO51GVVP' where id=80; -update noar tt set v1='8CUN3B6L2QK65VPPX6KEUGK0GCCRKDWXY' where id=80; -update noar ti set v1='8CUN3B6L2QK65VPPX6KEUGK0GCCRKDWXY' where id=80; -update noar tt set v2='FPBXGU1CSXX8MJ9QI07LL3OQJNFZ26BJ6' where id=80; -update noar ti set v2='FPBXGU1CSXX8MJ9QI07LL3OQJNFZ26BJ6' where id=80; -update noar tt set v3='46F7JMV2CUHK73NN43IDQDJ3IGD3HONK1' where id=80; -update noar ti set v3='46F7JMV2CUHK73NN43IDQDJ3IGD3HONK1' where id=80; -update noar tt set v0='A0ZN1UOWXZNNHMPZQYJ7DBBTNNFNXZEMZ' where id=81; -update noar ti set v0='A0ZN1UOWXZNNHMPZQYJ7DBBTNNFNXZEMZ' where id=81; -update noar tt set v1='ORHZ2BWY8BTXPZI1L8UGPNPQDWZ82MI9F' where id=81; -update noar ti set v1='ORHZ2BWY8BTXPZI1L8UGPNPQDWZ82MI9F' where id=81; -update noar tt set v2='4SCC68CXZKXW1MSH38YPWFHHNCR1LLLPX' where id=81; -update noar ti set v2='4SCC68CXZKXW1MSH38YPWFHHNCR1LLLPX' where id=81; -update noar tt set v3='Q3UV3XI9P0K1Z0500D09ELUNF9T6HUG74' where id=81; -update noar ti set v3='Q3UV3XI9P0K1Z0500D09ELUNF9T6HUG74' where id=81; -update noar tt set v0='HMKFAE5NRNU6RH1YPE05J01N99MA2VE49' where id=82; -update noar ti set v0='HMKFAE5NRNU6RH1YPE05J01N99MA2VE49' where id=82; -update noar tt set v1='3IRSQZM5VULR93W6646I8GA84KST7OS5N' where id=82; -update noar ti set v1='3IRSQZM5VULR93W6646I8GA84KST7OS5N' where id=82; -update noar tt set v2='Y9JNPJ2LBEX0RPZJ9YVM9228DAGXNH4JW' where id=82; -update noar ti set v2='Y9JNPJ2LBEX0RPZJ9YVM9228DAGXNH4JW' where id=82; -update noar tt set v3='RS6C2HAFDTOO9543IDMN6UXTDFW1QETP1' where id=82; -update noar ti set v3='RS6C2HAFDTOO9543IDMN6UXTDFW1QETP1' where id=82; -update noar tt set v0='N4KAN5KDW8AJA5W15B4LGKU0O3I01WNRJ' where id=83; -update noar ti set v0='N4KAN5KDW8AJA5W15B4LGKU0O3I01WNRJ' where id=83; -update noar tt set v1='LVRX9LKT4XG5JRRXIQB7NBKEIWE5G1Z0F' where id=83; -update noar ti set v1='LVRX9LKT4XG5JRRXIQB7NBKEIWE5G1Z0F' where id=83; -update noar tt set v2='7V5MZJ3S5CLDNEGNN742S3AB4EF2U24AW' where id=83; -update noar ti set v2='7V5MZJ3S5CLDNEGNN742S3AB4EF2U24AW' where id=83; -update noar tt set v3='8I2GEFBSHQW0QLRJULT7HRHVK0Y2R6ES2' where id=83; -update noar ti set v3='8I2GEFBSHQW0QLRJULT7HRHVK0Y2R6ES2' where id=83; -update noar tt set v0='G562B5W18EY13A325QPBQ8NCB86402DU3' where id=84; -update noar ti set v0='G562B5W18EY13A325QPBQ8NCB86402DU3' where id=84; -update noar tt set v1='GF9MO8PYMC5QQ4L43YSECUUUT86PT5YXG' where id=84; -update noar ti set v1='GF9MO8PYMC5QQ4L43YSECUUUT86PT5YXG' where id=84; -update noar tt set v2='3YBHFTJZX6XA4VDHC3ZSAUIUJY8XZCOCG' where id=84; -update noar ti set v2='3YBHFTJZX6XA4VDHC3ZSAUIUJY8XZCOCG' where id=84; -update noar tt set v3='DQPOWJCK6AXIIMMTOL3IKCWFLNLI1NCUY' where id=84; -update noar ti set v3='DQPOWJCK6AXIIMMTOL3IKCWFLNLI1NCUY' where id=84; -update noar tt set v0='0CCAKASQ5XAATMWANI4X4ZA0O2ANTH8GW' where id=85; -update noar ti set v0='0CCAKASQ5XAATMWANI4X4ZA0O2ANTH8GW' where id=85; -update noar tt set v1='03VKPN0A8P1FCWYRG60XGG4FCOFV7RV0K' where id=85; -update noar ti set v1='03VKPN0A8P1FCWYRG60XGG4FCOFV7RV0K' where id=85; -update noar tt set v2='VZNWPKE0C0NU97GVW871PDTKLEI0JK2C5' where id=85; -update noar ti set v2='VZNWPKE0C0NU97GVW871PDTKLEI0JK2C5' where id=85; -update noar tt set v3='3ROAED83IVX2TI5V9XQ8JJTC6PM2C0BKO' where id=85; -update noar ti set v3='3ROAED83IVX2TI5V9XQ8JJTC6PM2C0BKO' where id=85; -update noar tt set v0='HFP49S7VKG4MZOW206CCV65GYXA8RTBEU' where id=86; -update noar ti set v0='HFP49S7VKG4MZOW206CCV65GYXA8RTBEU' where id=86; -update noar tt set v1='ZGO9G3JQ62QX259SX49B4KCE5J0Z13KTQ' where id=86; -update noar ti set v1='ZGO9G3JQ62QX259SX49B4KCE5J0Z13KTQ' where id=86; -update noar tt set v2='MF6BS4LYEE77RVU0XZCXG8DLPP2SI2JN7' where id=86; -update noar ti set v2='MF6BS4LYEE77RVU0XZCXG8DLPP2SI2JN7' where id=86; -update noar tt set v3='DSMSM4C5TJ1SLWSUORHARNIPFJ1BTLSRB' where id=86; -update noar ti set v3='DSMSM4C5TJ1SLWSUORHARNIPFJ1BTLSRB' where id=86; -update noar tt set v0='12J0WFG2QMZI5B9AE73EFPST3YNHKJXXI' where id=87; -update noar ti set v0='12J0WFG2QMZI5B9AE73EFPST3YNHKJXXI' where id=87; -update noar tt set v1='SE17BN62U6TY2WZUL3GE5RMT3WDX077UT' where id=87; -update noar ti set v1='SE17BN62U6TY2WZUL3GE5RMT3WDX077UT' where id=87; -update noar tt set v2='TQ2BF114DVI2JRRQUX66BSNDHQ1KF6HVH' where id=87; -update noar ti set v2='TQ2BF114DVI2JRRQUX66BSNDHQ1KF6HVH' where id=87; -update noar tt set v3='FWOVRM7J7I4NIHXNM8MGO40TY0IYA35GJ' where id=87; -update noar ti set v3='FWOVRM7J7I4NIHXNM8MGO40TY0IYA35GJ' where id=87; -update noar tt set v0='OWCTJVROTLMNGUAEBNQWVJR5MJUNIX1H4' where id=88; -update noar ti set v0='OWCTJVROTLMNGUAEBNQWVJR5MJUNIX1H4' where id=88; -update noar tt set v1='CBE9DQ9177C8HEEMKX4UP1ADNNBCGJNWQ' where id=88; -update noar ti set v1='CBE9DQ9177C8HEEMKX4UP1ADNNBCGJNWQ' where id=88; -update noar tt set v2='Y0TFC8VCPYK33W7WMQ4MYYFTAEN4I3L2W' where id=88; -update noar ti set v2='Y0TFC8VCPYK33W7WMQ4MYYFTAEN4I3L2W' where id=88; -update noar tt set v3='471X5RZT3OQ7RI5DFWIW3CKAEMSZ8SZAC' where id=88; -update noar ti set v3='471X5RZT3OQ7RI5DFWIW3CKAEMSZ8SZAC' where id=88; -update noar tt set v0='YBVOTSDFGJEIW5HKIU3TC6QNDT6DVIXY9' where id=89; -update noar ti set v0='YBVOTSDFGJEIW5HKIU3TC6QNDT6DVIXY9' where id=89; -update noar tt set v1='M93848BGHLYG3MKIMBZOPCMXS0BVM54U4' where id=89; -update noar ti set v1='M93848BGHLYG3MKIMBZOPCMXS0BVM54U4' where id=89; -update noar tt set v2='SG5JALK95ZK2BM6BFAKXWK4ZTPN2TF13G' where id=89; -update noar ti set v2='SG5JALK95ZK2BM6BFAKXWK4ZTPN2TF13G' where id=89; -update noar tt set v3='WGFAAAPCAQUODIKZR4EYP37GH23UYZRM5' where id=89; -update noar ti set v3='WGFAAAPCAQUODIKZR4EYP37GH23UYZRM5' where id=89; -update noar tt set v0='4OQ0UW7A1DMJ6TF0PN5DCRYOQPZNEC6HW' where id=90; -update noar ti set v0='4OQ0UW7A1DMJ6TF0PN5DCRYOQPZNEC6HW' where id=90; -update noar tt set v1='KDWRZM4Q2XB467W1NE7MKTCYLDDSR7FPJ' where id=90; -update noar ti set v1='KDWRZM4Q2XB467W1NE7MKTCYLDDSR7FPJ' where id=90; -update noar tt set v2='90KUWNZ9LZ8IF2U5N75FS8F5CTHR88MOX' where id=90; -update noar ti set v2='90KUWNZ9LZ8IF2U5N75FS8F5CTHR88MOX' where id=90; -update noar tt set v3='A5VA60QNXIX9VTJAPI7F7KTMCIUWXNPM2' where id=90; -update noar ti set v3='A5VA60QNXIX9VTJAPI7F7KTMCIUWXNPM2' where id=90; -update noar tt set v0='4IUUBR2FWGA4M737O3ZHRVATI1L2JJIZ3' where id=91; -update noar ti set v0='4IUUBR2FWGA4M737O3ZHRVATI1L2JJIZ3' where id=91; -update noar tt set v1='3959L09WO5RWOG8U384R6I52P4RL7UXZ7' where id=91; -update noar ti set v1='3959L09WO5RWOG8U384R6I52P4RL7UXZ7' where id=91; -update noar tt set v2='SS541JIFI2E1SVQNZXDOC4EM1S5QWWH20' where id=91; -update noar ti set v2='SS541JIFI2E1SVQNZXDOC4EM1S5QWWH20' where id=91; -update noar tt set v3='M5UVDOOASTWWNVU3TZ6O2PZ43KBU02B90' where id=91; -update noar ti set v3='M5UVDOOASTWWNVU3TZ6O2PZ43KBU02B90' where id=91; -update noar tt set v0='VKATQCCEAT6BQWHEBG25UFI7KSMCZI6H2' where id=92; -update noar ti set v0='VKATQCCEAT6BQWHEBG25UFI7KSMCZI6H2' where id=92; -update noar tt set v1='7E6MDARNTLKDCM8RU5QQADD9TDIMKMEJ6' where id=92; -update noar ti set v1='7E6MDARNTLKDCM8RU5QQADD9TDIMKMEJ6' where id=92; -update noar tt set v2='53D30F1FZN1IZD1GU6KK62FLT99XASARB' where id=92; -update noar ti set v2='53D30F1FZN1IZD1GU6KK62FLT99XASARB' where id=92; -update noar tt set v3='OXT8TH15Y1DYBRZSRJNUC3I475NNEY18R' where id=92; -update noar ti set v3='OXT8TH15Y1DYBRZSRJNUC3I475NNEY18R' where id=92; -update noar tt set v0='60OLGDJNS27L2MT3E2095PN8I2211H2MH' where id=93; -update noar ti set v0='60OLGDJNS27L2MT3E2095PN8I2211H2MH' where id=93; -update noar tt set v1='5UR3YYZWWR3ND41MCLZ6F0DBBHEOOMTLF' where id=93; -update noar ti set v1='5UR3YYZWWR3ND41MCLZ6F0DBBHEOOMTLF' where id=93; -update noar tt set v2='3SQYLKIZQYJ0IY5M8ETNA2B7XOMDNCKKX' where id=93; -update noar ti set v2='3SQYLKIZQYJ0IY5M8ETNA2B7XOMDNCKKX' where id=93; -update noar tt set v3='6OTAKG45GOXEZ3MPS13A6SZX55YVATFTM' where id=93; -update noar ti set v3='6OTAKG45GOXEZ3MPS13A6SZX55YVATFTM' where id=93; -update noar tt set v0='5FVK04MKT5OB6H8TXDUANZEP2L7F4DNXZ' where id=94; -update noar ti set v0='5FVK04MKT5OB6H8TXDUANZEP2L7F4DNXZ' where id=94; -update noar tt set v1='05SWHSWJ2OBNGU0WEDA8H0K44GUR5M11Q' where id=94; -update noar ti set v1='05SWHSWJ2OBNGU0WEDA8H0K44GUR5M11Q' where id=94; -update noar tt set v2='SXGX92BX5DS2X2NRVYK35UUJMR87LUCGU' where id=94; -update noar ti set v2='SXGX92BX5DS2X2NRVYK35UUJMR87LUCGU' where id=94; -update noar tt set v3='HNAHFBZ9NRJSYM04MGJZK81BPZ5VU50SV' where id=94; -update noar ti set v3='HNAHFBZ9NRJSYM04MGJZK81BPZ5VU50SV' where id=94; -update noar tt set v0='TDSORSBT9LYYA30HGJKNBKBDBXMZGVFDJ' where id=95; -update noar ti set v0='TDSORSBT9LYYA30HGJKNBKBDBXMZGVFDJ' where id=95; -update noar tt set v1='RVWREG0I181IDF6K3BTFY09Y2J8XSSHX9' where id=95; -update noar ti set v1='RVWREG0I181IDF6K3BTFY09Y2J8XSSHX9' where id=95; -update noar tt set v2='LBF10KKVT07EB492RYU4ULNY50G4TGDX9' where id=95; -update noar ti set v2='LBF10KKVT07EB492RYU4ULNY50G4TGDX9' where id=95; -update noar tt set v3='WQAD9AFW7LH5MV11HRKO792E2MU6PJ8V5' where id=95; -update noar ti set v3='WQAD9AFW7LH5MV11HRKO792E2MU6PJ8V5' where id=95; -update noar tt set v0='3PYBHQSOSTJZGH9DTHZLK1I7VUS96C0BR' where id=96; -update noar ti set v0='3PYBHQSOSTJZGH9DTHZLK1I7VUS96C0BR' where id=96; -update noar tt set v1='3EARLA2YM5BKMVRH2VPMNHIBPIOEQY9DM' where id=96; -update noar ti set v1='3EARLA2YM5BKMVRH2VPMNHIBPIOEQY9DM' where id=96; -update noar tt set v2='L3R0TD206KTHNIM90Q7ASMEWZFGXG0GVN' where id=96; -update noar ti set v2='L3R0TD206KTHNIM90Q7ASMEWZFGXG0GVN' where id=96; -update noar tt set v3='7RE2E3LGRTOP4MTOUEMNXEWKZJIQQ1VL4' where id=96; -update noar ti set v3='7RE2E3LGRTOP4MTOUEMNXEWKZJIQQ1VL4' where id=96; -update noar tt set v0='K568I90I55F9K8BCA069APVII0RTL908C' where id=97; -update noar ti set v0='K568I90I55F9K8BCA069APVII0RTL908C' where id=97; -update noar tt set v1='RDTRDI2GG3FMAQGXLH3FTXQEP59TC0TT3' where id=97; -update noar ti set v1='RDTRDI2GG3FMAQGXLH3FTXQEP59TC0TT3' where id=97; -update noar tt set v2='BY7R7WR4LMU70ASFV6BXPY4M3ABDIRZ26' where id=97; -update noar ti set v2='BY7R7WR4LMU70ASFV6BXPY4M3ABDIRZ26' where id=97; -update noar tt set v3='ZCBP8EQUE8UCM9BW9RMJ4GJVRZFUFG47S' where id=97; -update noar ti set v3='ZCBP8EQUE8UCM9BW9RMJ4GJVRZFUFG47S' where id=97; -update noar tt set v0='SED9J1MSSDCVAXD59O79U5RWLUL97SNH5' where id=98; -update noar ti set v0='SED9J1MSSDCVAXD59O79U5RWLUL97SNH5' where id=98; -update noar tt set v1='J3IKNGK7VOKMBEJZVWG6U3VDH895L97MN' where id=98; -update noar ti set v1='J3IKNGK7VOKMBEJZVWG6U3VDH895L97MN' where id=98; -update noar tt set v2='J3YC5CQSSIQ39DJSPA8NWV7K26X3NAJFS' where id=98; -update noar ti set v2='J3YC5CQSSIQ39DJSPA8NWV7K26X3NAJFS' where id=98; -update noar tt set v3='78AU510THUYPI35U4R32XLPJRTTN27O0Z' where id=98; -update noar ti set v3='78AU510THUYPI35U4R32XLPJRTTN27O0Z' where id=98; -update noar tt set v0='6XHBZNO1XU18061ZF5U6UQ4MC0FS0I90U' where id=99; -update noar ti set v0='6XHBZNO1XU18061ZF5U6UQ4MC0FS0I90U' where id=99; -update noar tt set v1='MSZI7IF6MAJE3QS5NMZ41OXBJ07D9UJRN' where id=99; -update noar ti set v1='MSZI7IF6MAJE3QS5NMZ41OXBJ07D9UJRN' where id=99; -update noar tt set v2='ACZUSBYPBA6NM2PPVAF1ZWAH0897G5F6G' where id=99; -update noar ti set v2='ACZUSBYPBA6NM2PPVAF1ZWAH0897G5F6G' where id=99; -update noar tt set v3='RFWF0WUA0CBD62C3IVV9SI3SW5PU8NWC3' where id=99; -update noar ti set v3='RFWF0WUA0CBD62C3IVV9SI3SW5PU8NWC3' where id=99; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - f0 int not null, - v0 varchar(32) not null, - v1 varchar(32) not null, - v2 varchar(32) not null, - v3 varchar(32) not null, - b0 text not null -) engine=tokudb; -insert into tt values (1,2,'a','b','c','d','e'); -insert into tt values (2,3,'','','','',''); -insert into tt values (3,4,'','','','',''); -insert into tt values (4,5,'','','','',''); -insert into tt values (5,6,'','','','',''); -insert into tt values (6,7,'','','','',''); -insert into tt values (7,8,'','','','',''); -insert into tt values (8,9,'','','','',''); -insert into tt values (9,10,'','','','',''); -insert into tt values (10,11,'','','','',''); -insert into tt values (11,12,'','','','',''); -insert into tt values (12,13,'','','','',''); -insert into tt values (13,14,'','','','',''); -insert into tt values (14,15,'','','','',''); -insert into tt values (15,16,'','','','',''); -insert into tt values (16,17,'','','','',''); -insert into tt values (17,18,'','','','',''); -insert into tt values (18,19,'','','','',''); -insert into tt values (19,20,'','','','',''); -insert into tt values (20,21,'','','','',''); -insert into tt values (21,22,'','','','',''); -insert into tt values (22,23,'','','','',''); -insert into tt values (23,24,'','','','',''); -insert into tt values (24,25,'','','','',''); -insert into tt values (25,26,'','','','',''); -insert into tt values (26,27,'','','','',''); -insert into tt values (27,28,'','','','',''); -insert into tt values (28,29,'','','','',''); -insert into tt values (29,30,'','','','',''); -insert into tt values (30,31,'','','','',''); -insert into tt values (31,32,'','','','',''); -insert into tt values (32,33,'','','','',''); -insert into tt values (33,34,'','','','',''); -insert into tt values (34,35,'','','','',''); -insert into tt values (35,36,'','','','',''); -insert into tt values (36,37,'','','','',''); -insert into tt values (37,38,'','','','',''); -insert into tt values (38,39,'','','','',''); -insert into tt values (39,40,'','','','',''); -insert into tt values (40,41,'','','','',''); -insert into tt values (41,42,'','','','',''); -insert into tt values (42,43,'','','','',''); -insert into tt values (43,44,'','','','',''); -insert into tt values (44,45,'','','','',''); -insert into tt values (45,46,'','','','',''); -insert into tt values (46,47,'','','','',''); -insert into tt values (47,48,'','','','',''); -insert into tt values (48,49,'','','','',''); -insert into tt values (49,50,'','','','',''); -insert into tt values (50,51,'','','','',''); -insert into tt values (51,52,'','','','',''); -insert into tt values (52,53,'','','','',''); -insert into tt values (53,54,'','','','',''); -insert into tt values (54,55,'','','','',''); -insert into tt values (55,56,'','','','',''); -insert into tt values (56,57,'','','','',''); -insert into tt values (57,58,'','','','',''); -insert into tt values (58,59,'','','','',''); -insert into tt values (59,60,'','','','',''); -insert into tt values (60,61,'','','','',''); -insert into tt values (61,62,'','','','',''); -insert into tt values (62,63,'','','','',''); -insert into tt values (63,64,'','','','',''); -insert into tt values (64,65,'','','','',''); -insert into tt values (65,66,'','','','',''); -insert into tt values (66,67,'','','','',''); -insert into tt values (67,68,'','','','',''); -insert into tt values (68,69,'','','','',''); -insert into tt values (69,70,'','','','',''); -insert into tt values (70,71,'','','','',''); -insert into tt values (71,72,'','','','',''); -insert into tt values (72,73,'','','','',''); -insert into tt values (73,74,'','','','',''); -insert into tt values (74,75,'','','','',''); -insert into tt values (75,76,'','','','',''); -insert into tt values (76,77,'','','','',''); -insert into tt values (77,78,'','','','',''); -insert into tt values (78,79,'','','','',''); -insert into tt values (79,80,'','','','',''); -insert into tt values (80,81,'','','','',''); -insert into tt values (81,82,'','','','',''); -insert into tt values (82,83,'','','','',''); -insert into tt values (83,84,'','','','',''); -insert into tt values (84,85,'','','','',''); -insert into tt values (85,86,'','','','',''); -insert into tt values (86,87,'','','','',''); -insert into tt values (87,88,'','','','',''); -insert into tt values (88,89,'','','','',''); -insert into tt values (89,90,'','','','',''); -insert into tt values (90,91,'','','','',''); -insert into tt values (91,92,'','','','',''); -insert into tt values (92,93,'','','','',''); -insert into tt values (93,94,'','','','',''); -insert into tt values (94,95,'','','','',''); -insert into tt values (95,96,'','','','',''); -insert into tt values (96,97,'','','','',''); -insert into tt values (97,98,'','','','',''); -insert into tt values (98,99,'','','','',''); -insert into tt values (99,100,'','','','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='null this 0' where id=0; -update noar ti set v0='null this 0' where id=0; -update noar tt set v1='null is 1' where id=0; -update noar ti set v1='null is 1' where id=0; -update noar tt set v2='null a 2' where id=0; -update noar ti set v2='null a 2' where id=0; -update noar tt set v3='null test 3' where id=0; -update noar ti set v3='null test 3' where id=0; -update noar tt set v0='this 0' where id=1; -update noar ti set v0='this 0' where id=1; -update noar tt set v1='is 1' where id=1; -update noar ti set v1='is 1' where id=1; -update noar tt set v2='another 2' where id=1; -update noar ti set v2='another 2' where id=1; -update noar tt set v3='test 3' where id=1; -update noar ti set v3='test 3' where id=1; -update noar tt set v0='IC5XO2HY0SNAHR1O9UT9DAISFBFW9GTL9' where id=2; -update noar ti set v0='IC5XO2HY0SNAHR1O9UT9DAISFBFW9GTL9' where id=2; -update noar tt set v1='Q0PDDCYZMRX73GMZNM7JWE1A0UGF7B31B' where id=2; -update noar ti set v1='Q0PDDCYZMRX73GMZNM7JWE1A0UGF7B31B' where id=2; -update noar tt set v2='ZOTP4VITR9E1QSA3OXLGF83HPLVW5KJM0' where id=2; -update noar ti set v2='ZOTP4VITR9E1QSA3OXLGF83HPLVW5KJM0' where id=2; -update noar tt set v3='AWXKUXS098Z5LMTQXXIN55OMZZ63CYGMP' where id=2; -update noar ti set v3='AWXKUXS098Z5LMTQXXIN55OMZZ63CYGMP' where id=2; -update noar tt set v0='4FSEIEP6GOUA7GQ8FGJ4FBRGH4BT4BTJC' where id=3; -update noar ti set v0='4FSEIEP6GOUA7GQ8FGJ4FBRGH4BT4BTJC' where id=3; -update noar tt set v1='2RSDZ9QLEIWX7P7QA25ZNSINU5V1EK85T' where id=3; -update noar ti set v1='2RSDZ9QLEIWX7P7QA25ZNSINU5V1EK85T' where id=3; -update noar tt set v2='8V8QR8UT1C81UA151W3Q92C0XKHX402RF' where id=3; -update noar ti set v2='8V8QR8UT1C81UA151W3Q92C0XKHX402RF' where id=3; -update noar tt set v3='A4Q3XWFULLJ1AVQJUCSXWO66SYH9G5DU0' where id=3; -update noar ti set v3='A4Q3XWFULLJ1AVQJUCSXWO66SYH9G5DU0' where id=3; -update noar tt set v0='NHCZBZQKG5I0X2WJVRJ4SSYQN2RYCYMCH' where id=4; -update noar ti set v0='NHCZBZQKG5I0X2WJVRJ4SSYQN2RYCYMCH' where id=4; -update noar tt set v1='N6DQGNNR1IJM8T9E3OXR8J981D02Z7NBA' where id=4; -update noar ti set v1='N6DQGNNR1IJM8T9E3OXR8J981D02Z7NBA' where id=4; -update noar tt set v2='DMAB0DQA1KA5PMA4EGOX8TEFKHV3D9IZK' where id=4; -update noar ti set v2='DMAB0DQA1KA5PMA4EGOX8TEFKHV3D9IZK' where id=4; -update noar tt set v3='DWEEZJCE69GD1YUVLMWFFB459SEGR5XPG' where id=4; -update noar ti set v3='DWEEZJCE69GD1YUVLMWFFB459SEGR5XPG' where id=4; -update noar tt set v0='POLT15DV510BZFUP1NR6RFWEPD0PXET9J' where id=5; -update noar ti set v0='POLT15DV510BZFUP1NR6RFWEPD0PXET9J' where id=5; -update noar tt set v1='5TALX42LEWH68AKJV33EJCEZF4W3LBFG5' where id=5; -update noar ti set v1='5TALX42LEWH68AKJV33EJCEZF4W3LBFG5' where id=5; -update noar tt set v2='ZZM5S7W6OHF5SZ5WFU9RKWUM9YBYZFIB8' where id=5; -update noar ti set v2='ZZM5S7W6OHF5SZ5WFU9RKWUM9YBYZFIB8' where id=5; -update noar tt set v3='4JZFKJR24A5SGQDMAXH3RSXOJ3SVWLZ0M' where id=5; -update noar ti set v3='4JZFKJR24A5SGQDMAXH3RSXOJ3SVWLZ0M' where id=5; -update noar tt set v0='USNXDKICO9BMNWKR24S48RVS8K7S8SKK9' where id=6; -update noar ti set v0='USNXDKICO9BMNWKR24S48RVS8K7S8SKK9' where id=6; -update noar tt set v1='67EEX1BOWG7H82527UDYZ0VJDQHOW029V' where id=6; -update noar ti set v1='67EEX1BOWG7H82527UDYZ0VJDQHOW029V' where id=6; -update noar tt set v2='UWFTI4U2BQ4OIWGZDMCVW7XE1XN20EO8P' where id=6; -update noar ti set v2='UWFTI4U2BQ4OIWGZDMCVW7XE1XN20EO8P' where id=6; -update noar tt set v3='9UXD7FNN7U6N0BM4QAUQCMW1CHTNEBYB0' where id=6; -update noar ti set v3='9UXD7FNN7U6N0BM4QAUQCMW1CHTNEBYB0' where id=6; -update noar tt set v0='0OBEZ3NAQYDQS7QD1KTR9VZSHP6M8CXI7' where id=7; -update noar ti set v0='0OBEZ3NAQYDQS7QD1KTR9VZSHP6M8CXI7' where id=7; -update noar tt set v1='0MRH2NPTSNSRAU8VKXW39HF2HS6T4RC0I' where id=7; -update noar ti set v1='0MRH2NPTSNSRAU8VKXW39HF2HS6T4RC0I' where id=7; -update noar tt set v2='NK9M6P6IOVZGA5HI4MHWY4AYK5I2RUASJ' where id=7; -update noar ti set v2='NK9M6P6IOVZGA5HI4MHWY4AYK5I2RUASJ' where id=7; -update noar tt set v3='ON8SN347RNPG97ODV5EI0J603UFI76718' where id=7; -update noar ti set v3='ON8SN347RNPG97ODV5EI0J603UFI76718' where id=7; -update noar tt set v0='N46Q5EM8SE02AHFIX0Z3VYT50MDUJVF26' where id=8; -update noar ti set v0='N46Q5EM8SE02AHFIX0Z3VYT50MDUJVF26' where id=8; -update noar tt set v1='OVYOQYYDBL5VW9P1O178P84WV6BT61ZFB' where id=8; -update noar ti set v1='OVYOQYYDBL5VW9P1O178P84WV6BT61ZFB' where id=8; -update noar tt set v2='WO40KLPQ3NUW7W41UO8AU649BLKPRRO8N' where id=8; -update noar ti set v2='WO40KLPQ3NUW7W41UO8AU649BLKPRRO8N' where id=8; -update noar tt set v3='E484JGWQJ29GHH2JVWXTQWGMA4CN2EV24' where id=8; -update noar ti set v3='E484JGWQJ29GHH2JVWXTQWGMA4CN2EV24' where id=8; -update noar tt set v0='MXXSJ5F5LL5N69CMDGWZRD5AK7IL9KCB1' where id=9; -update noar ti set v0='MXXSJ5F5LL5N69CMDGWZRD5AK7IL9KCB1' where id=9; -update noar tt set v1='73R73QXHPLHVQPCOU45H5BQRDQ0Z1NMOM' where id=9; -update noar ti set v1='73R73QXHPLHVQPCOU45H5BQRDQ0Z1NMOM' where id=9; -update noar tt set v2='97YU1WRG43ZR6ZIZ96WB4PLAMLPGKKAJX' where id=9; -update noar ti set v2='97YU1WRG43ZR6ZIZ96WB4PLAMLPGKKAJX' where id=9; -update noar tt set v3='PEE7XA7EHIDF51GC1ZYFNZBHKJ89ZKMLH' where id=9; -update noar ti set v3='PEE7XA7EHIDF51GC1ZYFNZBHKJ89ZKMLH' where id=9; -update noar tt set v0='S2B68U5VZ8OVWV8Q3J37HV58OE6GOXW0A' where id=10; -update noar ti set v0='S2B68U5VZ8OVWV8Q3J37HV58OE6GOXW0A' where id=10; -update noar tt set v1='GP3Y0W0P4BS0EZ7H6FE16FOKX3DJWRMLY' where id=10; -update noar ti set v1='GP3Y0W0P4BS0EZ7H6FE16FOKX3DJWRMLY' where id=10; -update noar tt set v2='3JV9560T6SJ4LJ0SFJKLLGGRFID1MNTKK' where id=10; -update noar ti set v2='3JV9560T6SJ4LJ0SFJKLLGGRFID1MNTKK' where id=10; -update noar tt set v3='9EV800RY0AITX5QFRU6ZNY17UUK73N2SC' where id=10; -update noar ti set v3='9EV800RY0AITX5QFRU6ZNY17UUK73N2SC' where id=10; -update noar tt set v0='EYBDRKCTPFMGCDZVO2YS3IY5EIY9BG42B' where id=11; -update noar ti set v0='EYBDRKCTPFMGCDZVO2YS3IY5EIY9BG42B' where id=11; -update noar tt set v1='DV27FZMQFUD649W2J8E1DW4NFEK6SROD6' where id=11; -update noar ti set v1='DV27FZMQFUD649W2J8E1DW4NFEK6SROD6' where id=11; -update noar tt set v2='PPZP92XQXICUBXKELDGCQ876W2RFSQVT5' where id=11; -update noar ti set v2='PPZP92XQXICUBXKELDGCQ876W2RFSQVT5' where id=11; -update noar tt set v3='UWCL4J2FBX582CUS2I55SVQJ58IBCJ86R' where id=11; -update noar ti set v3='UWCL4J2FBX582CUS2I55SVQJ58IBCJ86R' where id=11; -update noar tt set v0='1WXM0LVSZME86D22IW98WJUUECSDROVOM' where id=12; -update noar ti set v0='1WXM0LVSZME86D22IW98WJUUECSDROVOM' where id=12; -update noar tt set v1='VLI1TPGF2NESX1HQMOADI8VGRZ48J4K4C' where id=12; -update noar ti set v1='VLI1TPGF2NESX1HQMOADI8VGRZ48J4K4C' where id=12; -update noar tt set v2='6Q7LNCN40HHPCVVHZGSD5NXJBMW02M24A' where id=12; -update noar ti set v2='6Q7LNCN40HHPCVVHZGSD5NXJBMW02M24A' where id=12; -update noar tt set v3='PFE8GLBMI79N2W13J05171NKI7Q00Y9LT' where id=12; -update noar ti set v3='PFE8GLBMI79N2W13J05171NKI7Q00Y9LT' where id=12; -update noar tt set v0='N2XJE761M372KF2RR9Z2P1UTC366LCJ3J' where id=13; -update noar ti set v0='N2XJE761M372KF2RR9Z2P1UTC366LCJ3J' where id=13; -update noar tt set v1='GN6E0I6YTSI26BO48J0CK23DTD2B17SUQ' where id=13; -update noar ti set v1='GN6E0I6YTSI26BO48J0CK23DTD2B17SUQ' where id=13; -update noar tt set v2='ARPFNK3XAK3RVXRYX89G9Y4HJ2RXRB5H4' where id=13; -update noar ti set v2='ARPFNK3XAK3RVXRYX89G9Y4HJ2RXRB5H4' where id=13; -update noar tt set v3='NBBHLV3YQB5D5ZJYOGOC0H8K5XESK5XF2' where id=13; -update noar ti set v3='NBBHLV3YQB5D5ZJYOGOC0H8K5XESK5XF2' where id=13; -update noar tt set v0='RH3FVYGUKGXSSCHZPZRBR71SF4MQSPBLP' where id=14; -update noar ti set v0='RH3FVYGUKGXSSCHZPZRBR71SF4MQSPBLP' where id=14; -update noar tt set v1='8BZQD8O0S0X3CTIXK4B1R3QAWNUJZWL8E' where id=14; -update noar ti set v1='8BZQD8O0S0X3CTIXK4B1R3QAWNUJZWL8E' where id=14; -update noar tt set v2='TO8OJNYUK4UDMBJ217893S818K3VXRP76' where id=14; -update noar ti set v2='TO8OJNYUK4UDMBJ217893S818K3VXRP76' where id=14; -update noar tt set v3='AIP2RSZ7BM6J8W6HOBTWGKN4UXAUFVHDO' where id=14; -update noar ti set v3='AIP2RSZ7BM6J8W6HOBTWGKN4UXAUFVHDO' where id=14; -update noar tt set v0='DDR470GJVTIJXBMKR1UYTPWE98RA8X99X' where id=15; -update noar ti set v0='DDR470GJVTIJXBMKR1UYTPWE98RA8X99X' where id=15; -update noar tt set v1='GPSAJ70ZQDYTMUBZ85HHREVYSYFUYBUBB' where id=15; -update noar ti set v1='GPSAJ70ZQDYTMUBZ85HHREVYSYFUYBUBB' where id=15; -update noar tt set v2='V617AYHE1PSVO3SB6SINQJ8JWEZV14MBE' where id=15; -update noar ti set v2='V617AYHE1PSVO3SB6SINQJ8JWEZV14MBE' where id=15; -update noar tt set v3='I1WMQKDSS40M8Y59YDCYF80FZ3AUUZIXP' where id=15; -update noar ti set v3='I1WMQKDSS40M8Y59YDCYF80FZ3AUUZIXP' where id=15; -update noar tt set v0='MG4LKIVDTV26501IOAWX2LPOWWYXUM3BA' where id=16; -update noar ti set v0='MG4LKIVDTV26501IOAWX2LPOWWYXUM3BA' where id=16; -update noar tt set v1='GC4XSGQ7R9YRGWW05LDJZDFJ00D2Z5ANZ' where id=16; -update noar ti set v1='GC4XSGQ7R9YRGWW05LDJZDFJ00D2Z5ANZ' where id=16; -update noar tt set v2='OPFIIFO3L4492C6BPB8BKGQXZBILAO3ER' where id=16; -update noar ti set v2='OPFIIFO3L4492C6BPB8BKGQXZBILAO3ER' where id=16; -update noar tt set v3='97AOS93FGU3NRP8GQDBDX8TGK4F8YB6NG' where id=16; -update noar ti set v3='97AOS93FGU3NRP8GQDBDX8TGK4F8YB6NG' where id=16; -update noar tt set v0='WXNFNF2VBEFQMR1UZG9QPI06BJVIPLOZN' where id=17; -update noar ti set v0='WXNFNF2VBEFQMR1UZG9QPI06BJVIPLOZN' where id=17; -update noar tt set v1='2L1O8ETO2PJB0YZMIQUGA1PFXFRKS95O7' where id=17; -update noar ti set v1='2L1O8ETO2PJB0YZMIQUGA1PFXFRKS95O7' where id=17; -update noar tt set v2='S9ECH1HUYNSFSL30V8W5D4OE26HLNUFAQ' where id=17; -update noar ti set v2='S9ECH1HUYNSFSL30V8W5D4OE26HLNUFAQ' where id=17; -update noar tt set v3='DZANTZKACCGAASTTXK0FJIVHXOWH4AGNB' where id=17; -update noar ti set v3='DZANTZKACCGAASTTXK0FJIVHXOWH4AGNB' where id=17; -update noar tt set v0='IEG3RW11RLW5TGA4YFW9ZK8T4RTA9CVME' where id=18; -update noar ti set v0='IEG3RW11RLW5TGA4YFW9ZK8T4RTA9CVME' where id=18; -update noar tt set v1='R9EU9GRHHQG3P47YCRXN55RMM5V90T2ZY' where id=18; -update noar ti set v1='R9EU9GRHHQG3P47YCRXN55RMM5V90T2ZY' where id=18; -update noar tt set v2='EKILZ01W3LBC1NUWRRMSBKP1BD17IVDC9' where id=18; -update noar ti set v2='EKILZ01W3LBC1NUWRRMSBKP1BD17IVDC9' where id=18; -update noar tt set v3='GFDKSWC5YC4SOGIS640IPXBP9MYDIMWHE' where id=18; -update noar ti set v3='GFDKSWC5YC4SOGIS640IPXBP9MYDIMWHE' where id=18; -update noar tt set v0='W77FM5AWKG4DF3T8FPTP38NLUZWREVXYE' where id=19; -update noar ti set v0='W77FM5AWKG4DF3T8FPTP38NLUZWREVXYE' where id=19; -update noar tt set v1='I9JYBB78EUW30IUQXIXKNPV9PPNO57ZXD' where id=19; -update noar ti set v1='I9JYBB78EUW30IUQXIXKNPV9PPNO57ZXD' where id=19; -update noar tt set v2='7VL9TOKT6HAR9687A61PGBLIMWTA6DFIW' where id=19; -update noar ti set v2='7VL9TOKT6HAR9687A61PGBLIMWTA6DFIW' where id=19; -update noar tt set v3='0JF5PXKJLKAMGA7E9X8EWSXNWK2MUPVUT' where id=19; -update noar ti set v3='0JF5PXKJLKAMGA7E9X8EWSXNWK2MUPVUT' where id=19; -update noar tt set v0='HEFACTG7YYF1Z1JGMXV669FGJF0I2P0BF' where id=20; -update noar ti set v0='HEFACTG7YYF1Z1JGMXV669FGJF0I2P0BF' where id=20; -update noar tt set v1='OO7UJU0KTNQNNUQM4BPHXJUJNAKKSBS2T' where id=20; -update noar ti set v1='OO7UJU0KTNQNNUQM4BPHXJUJNAKKSBS2T' where id=20; -update noar tt set v2='4NQF6FLJH4YMYLRA1HY3HMC52USSIVTY7' where id=20; -update noar ti set v2='4NQF6FLJH4YMYLRA1HY3HMC52USSIVTY7' where id=20; -update noar tt set v3='DWQVRTFYPOB8ZTPBEKQ8J3YR130VZ2ZLW' where id=20; -update noar ti set v3='DWQVRTFYPOB8ZTPBEKQ8J3YR130VZ2ZLW' where id=20; -update noar tt set v0='5W456K1N1MDUTNUXVYGTMOSM7F4OM4OMS' where id=21; -update noar ti set v0='5W456K1N1MDUTNUXVYGTMOSM7F4OM4OMS' where id=21; -update noar tt set v1='47T3ULSER9YHQR18PVVBGQ9UEJV5CK47V' where id=21; -update noar ti set v1='47T3ULSER9YHQR18PVVBGQ9UEJV5CK47V' where id=21; -update noar tt set v2='MHF1OT9LL8DYO4MIH4TET9JZVUSSYOV34' where id=21; -update noar ti set v2='MHF1OT9LL8DYO4MIH4TET9JZVUSSYOV34' where id=21; -update noar tt set v3='MI47BUFMW8RE0UUK84CNU0ST2NBSMYNU8' where id=21; -update noar ti set v3='MI47BUFMW8RE0UUK84CNU0ST2NBSMYNU8' where id=21; -update noar tt set v0='CK794DCXV3DJ807LN5MRA69RDSEGISSWH' where id=22; -update noar ti set v0='CK794DCXV3DJ807LN5MRA69RDSEGISSWH' where id=22; -update noar tt set v1='S14ZD8B01EAB5PHS6LV3DIPXD6RFLPAHO' where id=22; -update noar ti set v1='S14ZD8B01EAB5PHS6LV3DIPXD6RFLPAHO' where id=22; -update noar tt set v2='LHDMH1H8G4S1WW2HSOD1JFGDV8KFBPYE0' where id=22; -update noar ti set v2='LHDMH1H8G4S1WW2HSOD1JFGDV8KFBPYE0' where id=22; -update noar tt set v3='PGXO0ZDSYAIJMKHNX7O1O30HID1JSTIZ7' where id=22; -update noar ti set v3='PGXO0ZDSYAIJMKHNX7O1O30HID1JSTIZ7' where id=22; -update noar tt set v0='WVLICYCYR4S9ZULQ83EENNL4YGWC73HYF' where id=23; -update noar ti set v0='WVLICYCYR4S9ZULQ83EENNL4YGWC73HYF' where id=23; -update noar tt set v1='CB70NXN6B2QHKYOWDXJ2U5LL0UD1WWVNZ' where id=23; -update noar ti set v1='CB70NXN6B2QHKYOWDXJ2U5LL0UD1WWVNZ' where id=23; -update noar tt set v2='HPKTN3F4P62UENMPQDUMS9C2TMW2Y0AV2' where id=23; -update noar ti set v2='HPKTN3F4P62UENMPQDUMS9C2TMW2Y0AV2' where id=23; -update noar tt set v3='036NGPDY8WTTM5M35C2PSWAK1XL2J4O7V' where id=23; -update noar ti set v3='036NGPDY8WTTM5M35C2PSWAK1XL2J4O7V' where id=23; -update noar tt set v0='CFSKBV9QMMYMH5D1MI3BKXUYVDDGLG98E' where id=24; -update noar ti set v0='CFSKBV9QMMYMH5D1MI3BKXUYVDDGLG98E' where id=24; -update noar tt set v1='4CCX1OCX0CE3T8XZ96HA6VX6FGKPGPY96' where id=24; -update noar ti set v1='4CCX1OCX0CE3T8XZ96HA6VX6FGKPGPY96' where id=24; -update noar tt set v2='SIYRIZQX5AXVNRMVX5F0W3L6832E0K6H4' where id=24; -update noar ti set v2='SIYRIZQX5AXVNRMVX5F0W3L6832E0K6H4' where id=24; -update noar tt set v3='FX62E6T8XI4GDS00N6L79TXAY0F2BCF4S' where id=24; -update noar ti set v3='FX62E6T8XI4GDS00N6L79TXAY0F2BCF4S' where id=24; -update noar tt set v0='ST5L6MEOLSDA060YFHTP47S0I87QQB6L3' where id=25; -update noar ti set v0='ST5L6MEOLSDA060YFHTP47S0I87QQB6L3' where id=25; -update noar tt set v1='A091Z1Q9QJL4E5D2FLS27MYW8UUABCLF9' where id=25; -update noar ti set v1='A091Z1Q9QJL4E5D2FLS27MYW8UUABCLF9' where id=25; -update noar tt set v2='HYBQ7XV6HV0HYI3QCZYT4CUX38ZCN8S70' where id=25; -update noar ti set v2='HYBQ7XV6HV0HYI3QCZYT4CUX38ZCN8S70' where id=25; -update noar tt set v3='JNOLKOLVV4R72PCMLORCWWU7M1BG7BIZR' where id=25; -update noar ti set v3='JNOLKOLVV4R72PCMLORCWWU7M1BG7BIZR' where id=25; -update noar tt set v0='MD4DSLDI07LPA90H1XQNSV3TGM9LBXPWJ' where id=26; -update noar ti set v0='MD4DSLDI07LPA90H1XQNSV3TGM9LBXPWJ' where id=26; -update noar tt set v1='J3LCONXH4O9HQLI7DWYAAZ9GOGMZIO3P5' where id=26; -update noar ti set v1='J3LCONXH4O9HQLI7DWYAAZ9GOGMZIO3P5' where id=26; -update noar tt set v2='155FN4UEQD5QXM0ZWDHCVYWO1L4T7LYBE' where id=26; -update noar ti set v2='155FN4UEQD5QXM0ZWDHCVYWO1L4T7LYBE' where id=26; -update noar tt set v3='DJJ2DRL31ZAEFNQ1Q4MYUORS9X3OVLO2X' where id=26; -update noar ti set v3='DJJ2DRL31ZAEFNQ1Q4MYUORS9X3OVLO2X' where id=26; -update noar tt set v0='ESDC76FIG5DPRG0IJ97PGKB6K87U9WIWK' where id=27; -update noar ti set v0='ESDC76FIG5DPRG0IJ97PGKB6K87U9WIWK' where id=27; -update noar tt set v1='ELWR3BV7Y78Y61B2HVHPFO1K56H0RW866' where id=27; -update noar ti set v1='ELWR3BV7Y78Y61B2HVHPFO1K56H0RW866' where id=27; -update noar tt set v2='2ZJQRVPGMU71SAKDCOCU405S8QHI21O8T' where id=27; -update noar ti set v2='2ZJQRVPGMU71SAKDCOCU405S8QHI21O8T' where id=27; -update noar tt set v3='GKX9LBORKVFG9BL7IIKGPH4GOWZFXXCLE' where id=27; -update noar ti set v3='GKX9LBORKVFG9BL7IIKGPH4GOWZFXXCLE' where id=27; -update noar tt set v0='NX882U918NUAYDJRLLQF4WDCWPSEI23XK' where id=28; -update noar ti set v0='NX882U918NUAYDJRLLQF4WDCWPSEI23XK' where id=28; -update noar tt set v1='55IH4Q3ZA6SGR0UMVZITJHXN4N3BW92W0' where id=28; -update noar ti set v1='55IH4Q3ZA6SGR0UMVZITJHXN4N3BW92W0' where id=28; -update noar tt set v2='PBKRHDGVRKON2Z8JO7DD4C81BNG569KQ4' where id=28; -update noar ti set v2='PBKRHDGVRKON2Z8JO7DD4C81BNG569KQ4' where id=28; -update noar tt set v3='A1Y2OLPE36VRI9U678V7OCCSV75IEPQFL' where id=28; -update noar ti set v3='A1Y2OLPE36VRI9U678V7OCCSV75IEPQFL' where id=28; -update noar tt set v0='RGU4YM87704N645N1I0ME54LNJ9XOVS3X' where id=29; -update noar ti set v0='RGU4YM87704N645N1I0ME54LNJ9XOVS3X' where id=29; -update noar tt set v1='HNA2T6A8VWXR6WRJ9MY6YLSCVAQQXY3M7' where id=29; -update noar ti set v1='HNA2T6A8VWXR6WRJ9MY6YLSCVAQQXY3M7' where id=29; -update noar tt set v2='9ZES4AMD4RX4ZR6QR7OFG0BSGHMBH8883' where id=29; -update noar ti set v2='9ZES4AMD4RX4ZR6QR7OFG0BSGHMBH8883' where id=29; -update noar tt set v3='AEG2C7QKLAN9V1FGFXBDK3VHHQG20NOWJ' where id=29; -update noar ti set v3='AEG2C7QKLAN9V1FGFXBDK3VHHQG20NOWJ' where id=29; -update noar tt set v0='N1WGIZC6RP2DPM8HU5VCZD56JVGSCT4X1' where id=30; -update noar ti set v0='N1WGIZC6RP2DPM8HU5VCZD56JVGSCT4X1' where id=30; -update noar tt set v1='9RHMWTVFDF6NN44UTAQETOOOUAQ7LN65Q' where id=30; -update noar ti set v1='9RHMWTVFDF6NN44UTAQETOOOUAQ7LN65Q' where id=30; -update noar tt set v2='1C5XLYIPYJVT2K0GJH8I3GHWAKHURD193' where id=30; -update noar ti set v2='1C5XLYIPYJVT2K0GJH8I3GHWAKHURD193' where id=30; -update noar tt set v3='73YSFPFLAMB492LE0G12WGKWYILPZA9BS' where id=30; -update noar ti set v3='73YSFPFLAMB492LE0G12WGKWYILPZA9BS' where id=30; -update noar tt set v0='SXB26E99E82FGNP6Y7EIDN3PIDXEMQSLO' where id=31; -update noar ti set v0='SXB26E99E82FGNP6Y7EIDN3PIDXEMQSLO' where id=31; -update noar tt set v1='UR9A8MO1JR4HRQC3ILU47FI2RBGHSHJSA' where id=31; -update noar ti set v1='UR9A8MO1JR4HRQC3ILU47FI2RBGHSHJSA' where id=31; -update noar tt set v2='H6QL8DDX982E9ITL50L00XYTBGM0A77JC' where id=31; -update noar ti set v2='H6QL8DDX982E9ITL50L00XYTBGM0A77JC' where id=31; -update noar tt set v3='4GNP22WVLSQ4XWGZ5C9WEJ6XQ17O7FVFB' where id=31; -update noar ti set v3='4GNP22WVLSQ4XWGZ5C9WEJ6XQ17O7FVFB' where id=31; -update noar tt set v0='DRK4DE6NEW3L64L9IPJFWPMYS1UK4OTZW' where id=32; -update noar ti set v0='DRK4DE6NEW3L64L9IPJFWPMYS1UK4OTZW' where id=32; -update noar tt set v1='4390UJUYHQ3L8ZF61IQCJQCMD9749L5JI' where id=32; -update noar ti set v1='4390UJUYHQ3L8ZF61IQCJQCMD9749L5JI' where id=32; -update noar tt set v2='KZHVCPKBY0VKE4VL64LHEDUU6HZ7ZMQVT' where id=32; -update noar ti set v2='KZHVCPKBY0VKE4VL64LHEDUU6HZ7ZMQVT' where id=32; -update noar tt set v3='2RBUEST1JBBCSGRRA747QGH0SEWEYMT0U' where id=32; -update noar ti set v3='2RBUEST1JBBCSGRRA747QGH0SEWEYMT0U' where id=32; -update noar tt set v0='7RCZP79131SPLJCZWTELLCSM2D06HH4HS' where id=33; -update noar ti set v0='7RCZP79131SPLJCZWTELLCSM2D06HH4HS' where id=33; -update noar tt set v1='B6CK2P0D4Q356BAC43DWHSK5OJ8Y3HQZN' where id=33; -update noar ti set v1='B6CK2P0D4Q356BAC43DWHSK5OJ8Y3HQZN' where id=33; -update noar tt set v2='2F6RG5KMIUP336XER6IDE2AWEZ1FNH1T6' where id=33; -update noar ti set v2='2F6RG5KMIUP336XER6IDE2AWEZ1FNH1T6' where id=33; -update noar tt set v3='KRPW7E7Z1C7SZP1UN9IFVXFBKHF85YK53' where id=33; -update noar ti set v3='KRPW7E7Z1C7SZP1UN9IFVXFBKHF85YK53' where id=33; -update noar tt set v0='QNUNJBUZ1FK4MCZ23HHGAXOSEAXT0KR9W' where id=34; -update noar ti set v0='QNUNJBUZ1FK4MCZ23HHGAXOSEAXT0KR9W' where id=34; -update noar tt set v1='UY513WZ30POA6498F5LN1SF72OP5QFUUL' where id=34; -update noar ti set v1='UY513WZ30POA6498F5LN1SF72OP5QFUUL' where id=34; -update noar tt set v2='DKEFMEFDK98VY4S4RO0N5LNFWRN9FSZUV' where id=34; -update noar ti set v2='DKEFMEFDK98VY4S4RO0N5LNFWRN9FSZUV' where id=34; -update noar tt set v3='1JIMNYCI3DIYDUNAE3PGYRYDUNCKVPTBT' where id=34; -update noar ti set v3='1JIMNYCI3DIYDUNAE3PGYRYDUNCKVPTBT' where id=34; -update noar tt set v0='9ZR89KBUA2FOKG6TS070CCPVFTZIJN1I0' where id=35; -update noar ti set v0='9ZR89KBUA2FOKG6TS070CCPVFTZIJN1I0' where id=35; -update noar tt set v1='7D59AS2WW3XDXFGT47GIP697J8TVA743S' where id=35; -update noar ti set v1='7D59AS2WW3XDXFGT47GIP697J8TVA743S' where id=35; -update noar tt set v2='OQXN5LBC4DV58KNIVU921B8WSAOW451GI' where id=35; -update noar ti set v2='OQXN5LBC4DV58KNIVU921B8WSAOW451GI' where id=35; -update noar tt set v3='WGNH9I1TF7KKJ9O82PVHVAC5M98BQI8OG' where id=35; -update noar ti set v3='WGNH9I1TF7KKJ9O82PVHVAC5M98BQI8OG' where id=35; -update noar tt set v0='V2K6M004XBVTSTHX9C0GXFNY90FP3AF4W' where id=36; -update noar ti set v0='V2K6M004XBVTSTHX9C0GXFNY90FP3AF4W' where id=36; -update noar tt set v1='AHS1XOZXG81WIDW5D6ZZRML5Y1DLMYH2A' where id=36; -update noar ti set v1='AHS1XOZXG81WIDW5D6ZZRML5Y1DLMYH2A' where id=36; -update noar tt set v2='RYNTCSYP7WAYT02H9OMJ5JBOBETQEKVOK' where id=36; -update noar ti set v2='RYNTCSYP7WAYT02H9OMJ5JBOBETQEKVOK' where id=36; -update noar tt set v3='ZPZCJZQN6PMG5ZS5QN69OBVMTLFXRR8ZL' where id=36; -update noar ti set v3='ZPZCJZQN6PMG5ZS5QN69OBVMTLFXRR8ZL' where id=36; -update noar tt set v0='8IVANXGSTLQ3YTV1GIRDUR5HOVS1SEX9O' where id=37; -update noar ti set v0='8IVANXGSTLQ3YTV1GIRDUR5HOVS1SEX9O' where id=37; -update noar tt set v1='ONT0M1R9TLBHE6PAZ6FQQG5C32PS3T51G' where id=37; -update noar ti set v1='ONT0M1R9TLBHE6PAZ6FQQG5C32PS3T51G' where id=37; -update noar tt set v2='HT3WH7N2MAX6Q7TE3FGB42LFRYFQBGSAC' where id=37; -update noar ti set v2='HT3WH7N2MAX6Q7TE3FGB42LFRYFQBGSAC' where id=37; -update noar tt set v3='C8UIWZCW2LUS4S2TXLLDAE1N46OQZLETC' where id=37; -update noar ti set v3='C8UIWZCW2LUS4S2TXLLDAE1N46OQZLETC' where id=37; -update noar tt set v0='HSJ4DRGWMSRJ9ELKF8MTEO0JUOCTJFXJY' where id=38; -update noar ti set v0='HSJ4DRGWMSRJ9ELKF8MTEO0JUOCTJFXJY' where id=38; -update noar tt set v1='2T5AKG48718GP6082Y6DJLOPJ50QES0PN' where id=38; -update noar ti set v1='2T5AKG48718GP6082Y6DJLOPJ50QES0PN' where id=38; -update noar tt set v2='VAVBE7XGCPILUWCU6S5B2K0MEUHJTKEWO' where id=38; -update noar ti set v2='VAVBE7XGCPILUWCU6S5B2K0MEUHJTKEWO' where id=38; -update noar tt set v3='ZTJ0R4TK4L95TVAQXAPMR78PXDFMEB07E' where id=38; -update noar ti set v3='ZTJ0R4TK4L95TVAQXAPMR78PXDFMEB07E' where id=38; -update noar tt set v0='WGTN6HRVCAFU7WME0EQJE4RDX9TG8MI2N' where id=39; -update noar ti set v0='WGTN6HRVCAFU7WME0EQJE4RDX9TG8MI2N' where id=39; -update noar tt set v1='4GMDL9HSBRIJC9N73NSN4NHKMIKOPGFI1' where id=39; -update noar ti set v1='4GMDL9HSBRIJC9N73NSN4NHKMIKOPGFI1' where id=39; -update noar tt set v2='NAY0H6O3OZWM38GYA56N55SCWFC4VW4HG' where id=39; -update noar ti set v2='NAY0H6O3OZWM38GYA56N55SCWFC4VW4HG' where id=39; -update noar tt set v3='EAS4VE6TVICZN935H74PV87TSH89BZXCE' where id=39; -update noar ti set v3='EAS4VE6TVICZN935H74PV87TSH89BZXCE' where id=39; -update noar tt set v0='QX726B4678INQ678FWVTGX9WQUIC48QKK' where id=40; -update noar ti set v0='QX726B4678INQ678FWVTGX9WQUIC48QKK' where id=40; -update noar tt set v1='9459TT7K7N1MPKDFBYSIN0PAT1S9VWTFQ' where id=40; -update noar ti set v1='9459TT7K7N1MPKDFBYSIN0PAT1S9VWTFQ' where id=40; -update noar tt set v2='Q7W3AYPPLMMAX0DWWD8PR9DCM624DJSRV' where id=40; -update noar ti set v2='Q7W3AYPPLMMAX0DWWD8PR9DCM624DJSRV' where id=40; -update noar tt set v3='YQ5RFJ2ROQYRY7ARLGZ1RN5WHMBJOIG7S' where id=40; -update noar ti set v3='YQ5RFJ2ROQYRY7ARLGZ1RN5WHMBJOIG7S' where id=40; -update noar tt set v0='4LWS3REU2R5V12F63N5WE4MCP5SB0NPQA' where id=41; -update noar ti set v0='4LWS3REU2R5V12F63N5WE4MCP5SB0NPQA' where id=41; -update noar tt set v1='37DM7X8YVGETVCCLFVS6TL6SL33ZUYK6N' where id=41; -update noar ti set v1='37DM7X8YVGETVCCLFVS6TL6SL33ZUYK6N' where id=41; -update noar tt set v2='DFF00QDEEF22SQK0XA5A9G21F6GE0DKAT' where id=41; -update noar ti set v2='DFF00QDEEF22SQK0XA5A9G21F6GE0DKAT' where id=41; -update noar tt set v3='TI1H7LFTTWUBBTF9L62SS5SDTNHKRIMGV' where id=41; -update noar ti set v3='TI1H7LFTTWUBBTF9L62SS5SDTNHKRIMGV' where id=41; -update noar tt set v0='KPG0UO65554LAFUSSIFQ30ICFOQ06PXPA' where id=42; -update noar ti set v0='KPG0UO65554LAFUSSIFQ30ICFOQ06PXPA' where id=42; -update noar tt set v1='TEZFDX8D6EVATEZXY5RUP8TKZRADQK0GW' where id=42; -update noar ti set v1='TEZFDX8D6EVATEZXY5RUP8TKZRADQK0GW' where id=42; -update noar tt set v2='GQFCTJS98GHV3F26G7GK2PT5NSMMAA6CH' where id=42; -update noar ti set v2='GQFCTJS98GHV3F26G7GK2PT5NSMMAA6CH' where id=42; -update noar tt set v3='OC2W4Q38SZ65NJ6STUODVNZ2C02B3CSLD' where id=42; -update noar ti set v3='OC2W4Q38SZ65NJ6STUODVNZ2C02B3CSLD' where id=42; -update noar tt set v0='T27I57X77K6YCLUDI73JW7USXKFBJKA0F' where id=43; -update noar ti set v0='T27I57X77K6YCLUDI73JW7USXKFBJKA0F' where id=43; -update noar tt set v1='VA9YRPYO4GF4RXLWSLZ5JOXDJ5HGHMBKK' where id=43; -update noar ti set v1='VA9YRPYO4GF4RXLWSLZ5JOXDJ5HGHMBKK' where id=43; -update noar tt set v2='5LHZ7A46PJ8IABOPK3UVKTOHVMZA7J2EY' where id=43; -update noar ti set v2='5LHZ7A46PJ8IABOPK3UVKTOHVMZA7J2EY' where id=43; -update noar tt set v3='COLCOM6R1SETG64BKZ3B95SHB32DU8TRN' where id=43; -update noar ti set v3='COLCOM6R1SETG64BKZ3B95SHB32DU8TRN' where id=43; -update noar tt set v0='NSKD5FY2WQZG8YD8ZT5LKVRLCXYMFDBT8' where id=44; -update noar ti set v0='NSKD5FY2WQZG8YD8ZT5LKVRLCXYMFDBT8' where id=44; -update noar tt set v1='E8RN2RYRTDGG5FOWPR5CBJHXLQUUR157Y' where id=44; -update noar ti set v1='E8RN2RYRTDGG5FOWPR5CBJHXLQUUR157Y' where id=44; -update noar tt set v2='EPRU7R48RJWR6Y7DVA9WZMCTI0HVT9ORH' where id=44; -update noar ti set v2='EPRU7R48RJWR6Y7DVA9WZMCTI0HVT9ORH' where id=44; -update noar tt set v3='1812OQ1ATY0MJLNQQU3QMPKI7G4MJNSUS' where id=44; -update noar ti set v3='1812OQ1ATY0MJLNQQU3QMPKI7G4MJNSUS' where id=44; -update noar tt set v0='ZTDTZADNHTWY7BH2AGHAILRVYYE1R3H39' where id=45; -update noar ti set v0='ZTDTZADNHTWY7BH2AGHAILRVYYE1R3H39' where id=45; -update noar tt set v1='X1BCYWXUWODHYBPOAERYOQT1ARJ6RSD02' where id=45; -update noar ti set v1='X1BCYWXUWODHYBPOAERYOQT1ARJ6RSD02' where id=45; -update noar tt set v2='Y7UV22XZ7ZP5961REQUIT3JTOVHVLI0OD' where id=45; -update noar ti set v2='Y7UV22XZ7ZP5961REQUIT3JTOVHVLI0OD' where id=45; -update noar tt set v3='G7DY4RERWJDSAYOL521JZOCXSQDLEEOI0' where id=45; -update noar ti set v3='G7DY4RERWJDSAYOL521JZOCXSQDLEEOI0' where id=45; -update noar tt set v0='NA21FUNZ92D94NXIB5Z5Q3BK55YH59R04' where id=46; -update noar ti set v0='NA21FUNZ92D94NXIB5Z5Q3BK55YH59R04' where id=46; -update noar tt set v1='9TO9ABF3KTVGDLB1I0H7OPNY8JQDX5T7F' where id=46; -update noar ti set v1='9TO9ABF3KTVGDLB1I0H7OPNY8JQDX5T7F' where id=46; -update noar tt set v2='6V811OH844BBI7VG00FRSRNZNRBMGYWC7' where id=46; -update noar ti set v2='6V811OH844BBI7VG00FRSRNZNRBMGYWC7' where id=46; -update noar tt set v3='225PMJV2D2MIYEPR26A46N5NCN8RFBN5L' where id=46; -update noar ti set v3='225PMJV2D2MIYEPR26A46N5NCN8RFBN5L' where id=46; -update noar tt set v0='1SO0B8ZRX54P19QDN20SGPVNMACDFYV3K' where id=47; -update noar ti set v0='1SO0B8ZRX54P19QDN20SGPVNMACDFYV3K' where id=47; -update noar tt set v1='741RH13OZT17CH11BD2QLD8RCQDOCOCK6' where id=47; -update noar ti set v1='741RH13OZT17CH11BD2QLD8RCQDOCOCK6' where id=47; -update noar tt set v2='I2V0N77TSE742033A7AQK5Y8PYL82W6YE' where id=47; -update noar ti set v2='I2V0N77TSE742033A7AQK5Y8PYL82W6YE' where id=47; -update noar tt set v3='8YFXJH16U493FMJCSEPGNWN0FKQD0T7PQ' where id=47; -update noar ti set v3='8YFXJH16U493FMJCSEPGNWN0FKQD0T7PQ' where id=47; -update noar tt set v0='YBKAK07ZWAXOK8I8ZXORSASJH2V3HNIVY' where id=48; -update noar ti set v0='YBKAK07ZWAXOK8I8ZXORSASJH2V3HNIVY' where id=48; -update noar tt set v1='RBMVMXEXCT1P67PMTTH5VF1JT4W7DALMS' where id=48; -update noar ti set v1='RBMVMXEXCT1P67PMTTH5VF1JT4W7DALMS' where id=48; -update noar tt set v2='PWU2S2SW67CKD97SD5OQ3FFW4RBO9RSLN' where id=48; -update noar ti set v2='PWU2S2SW67CKD97SD5OQ3FFW4RBO9RSLN' where id=48; -update noar tt set v3='A0O0ZK57IQ6RKFGR2DB38QONLZ9H97FCH' where id=48; -update noar ti set v3='A0O0ZK57IQ6RKFGR2DB38QONLZ9H97FCH' where id=48; -update noar tt set v0='UD5E38ESCEKY62OO2S0T9BBYNYKSP6S1T' where id=49; -update noar ti set v0='UD5E38ESCEKY62OO2S0T9BBYNYKSP6S1T' where id=49; -update noar tt set v1='U6N91XTYZRKYEDEGCKRT2N54JNGTBWO3M' where id=49; -update noar ti set v1='U6N91XTYZRKYEDEGCKRT2N54JNGTBWO3M' where id=49; -update noar tt set v2='VKJMTDP90CZSYSRKX4P76Q5PZV4H9UMNV' where id=49; -update noar ti set v2='VKJMTDP90CZSYSRKX4P76Q5PZV4H9UMNV' where id=49; -update noar tt set v3='CNOFFG1MH0OU8AVJM10SIT87NXKW5H59N' where id=49; -update noar ti set v3='CNOFFG1MH0OU8AVJM10SIT87NXKW5H59N' where id=49; -update noar tt set v0='P812RC62SIBWQXGBCS605N9S6E18NRGV4' where id=50; -update noar ti set v0='P812RC62SIBWQXGBCS605N9S6E18NRGV4' where id=50; -update noar tt set v1='QHC8S5VT9AVA5YGTUAW3VLRKUGZVXGNVA' where id=50; -update noar ti set v1='QHC8S5VT9AVA5YGTUAW3VLRKUGZVXGNVA' where id=50; -update noar tt set v2='CJGT889VWMRR3VWAHHX3I9BQ883302YUV' where id=50; -update noar ti set v2='CJGT889VWMRR3VWAHHX3I9BQ883302YUV' where id=50; -update noar tt set v3='00O79WCJKM9P95GRHM83WO18PKZZ7ZL5D' where id=50; -update noar ti set v3='00O79WCJKM9P95GRHM83WO18PKZZ7ZL5D' where id=50; -update noar tt set v0='28OB8OSV18E0UPVBFBZKI42E2LY7EAVLF' where id=51; -update noar ti set v0='28OB8OSV18E0UPVBFBZKI42E2LY7EAVLF' where id=51; -update noar tt set v1='S8FSD4Y7IPA7IBII7DM6TYWY23HX03XGH' where id=51; -update noar ti set v1='S8FSD4Y7IPA7IBII7DM6TYWY23HX03XGH' where id=51; -update noar tt set v2='79H4LSLH9C31HPCSNMKZGMF0L9ZPTKUXS' where id=51; -update noar ti set v2='79H4LSLH9C31HPCSNMKZGMF0L9ZPTKUXS' where id=51; -update noar tt set v3='NYF45SOB5E9NUXCN1UHR2JFSX4FH5SBX8' where id=51; -update noar ti set v3='NYF45SOB5E9NUXCN1UHR2JFSX4FH5SBX8' where id=51; -update noar tt set v0='L5AGQXZZQSVF6V997ZY71MDEKXBHV6M20' where id=52; -update noar ti set v0='L5AGQXZZQSVF6V997ZY71MDEKXBHV6M20' where id=52; -update noar tt set v1='ZX0IME7TZE8YTKDMTTW25YOH8XJ5B33RM' where id=52; -update noar ti set v1='ZX0IME7TZE8YTKDMTTW25YOH8XJ5B33RM' where id=52; -update noar tt set v2='S2U46H5RPOPPSHGFRYSLANRA32XWEX1LN' where id=52; -update noar ti set v2='S2U46H5RPOPPSHGFRYSLANRA32XWEX1LN' where id=52; -update noar tt set v3='B4R4JBRO0KJ402ALGLT7AAO35QDDVI1JI' where id=52; -update noar ti set v3='B4R4JBRO0KJ402ALGLT7AAO35QDDVI1JI' where id=52; -update noar tt set v0='FX574IZ99KXXQG64AR38DMMIC7USB05SD' where id=53; -update noar ti set v0='FX574IZ99KXXQG64AR38DMMIC7USB05SD' where id=53; -update noar tt set v1='S4JNMCD91RH8WD5XIK8QGRZELGTF08M1B' where id=53; -update noar ti set v1='S4JNMCD91RH8WD5XIK8QGRZELGTF08M1B' where id=53; -update noar tt set v2='E3ZNO9XQ2NK7C4KO8NL9LGAJJDD7X8RE5' where id=53; -update noar ti set v2='E3ZNO9XQ2NK7C4KO8NL9LGAJJDD7X8RE5' where id=53; -update noar tt set v3='RBA9KV3R1UIG6V83R6LZ00OZ16BB0LZ7O' where id=53; -update noar ti set v3='RBA9KV3R1UIG6V83R6LZ00OZ16BB0LZ7O' where id=53; -update noar tt set v0='QPO42ZYUTZMH8M9C6G7MONKLA92Q95SBF' where id=54; -update noar ti set v0='QPO42ZYUTZMH8M9C6G7MONKLA92Q95SBF' where id=54; -update noar tt set v1='2MACK1ERN0WK90FFUNTT6006ICJ7D881N' where id=54; -update noar ti set v1='2MACK1ERN0WK90FFUNTT6006ICJ7D881N' where id=54; -update noar tt set v2='LND86O8W9AP505H336MHTBONZQB1OHZZQ' where id=54; -update noar ti set v2='LND86O8W9AP505H336MHTBONZQB1OHZZQ' where id=54; -update noar tt set v3='UXBQT496TN75ZEYTB8FVRQCI6AYQLQMSN' where id=54; -update noar ti set v3='UXBQT496TN75ZEYTB8FVRQCI6AYQLQMSN' where id=54; -update noar tt set v0='PLTWOC7H04M5FOTV6UFI1SIRJ6PC4NUYR' where id=55; -update noar ti set v0='PLTWOC7H04M5FOTV6UFI1SIRJ6PC4NUYR' where id=55; -update noar tt set v1='RGL8W2DNKNHWGPW4N2M1NDBOARH91T9AR' where id=55; -update noar ti set v1='RGL8W2DNKNHWGPW4N2M1NDBOARH91T9AR' where id=55; -update noar tt set v2='HCEZBXWCLOR3QP22Y30THHNPPB58AAL7G' where id=55; -update noar ti set v2='HCEZBXWCLOR3QP22Y30THHNPPB58AAL7G' where id=55; -update noar tt set v3='JD6LJXFQ1C0BEH34RBRQ6CMO83M5PFY9C' where id=55; -update noar ti set v3='JD6LJXFQ1C0BEH34RBRQ6CMO83M5PFY9C' where id=55; -update noar tt set v0='6F0PQ6PJ956Z52O0UCAZIVQHKYMKNWP7C' where id=56; -update noar ti set v0='6F0PQ6PJ956Z52O0UCAZIVQHKYMKNWP7C' where id=56; -update noar tt set v1='0TIMH0J9RYFPH70LLB9CEFAX7RP44Y97B' where id=56; -update noar ti set v1='0TIMH0J9RYFPH70LLB9CEFAX7RP44Y97B' where id=56; -update noar tt set v2='60ZNZMTADX9WTK0AMKCKVWGUBX66FGC30' where id=56; -update noar ti set v2='60ZNZMTADX9WTK0AMKCKVWGUBX66FGC30' where id=56; -update noar tt set v3='R5DNMFQ3ZZ4CCUENGPVB3KC3UK4TKI3OH' where id=56; -update noar ti set v3='R5DNMFQ3ZZ4CCUENGPVB3KC3UK4TKI3OH' where id=56; -update noar tt set v0='39V33N09U4CF4UHTPXH6YMJ3HZJXC2HMH' where id=57; -update noar ti set v0='39V33N09U4CF4UHTPXH6YMJ3HZJXC2HMH' where id=57; -update noar tt set v1='873FWSLK5N7NLC4EZ3RFI9VL6QKLVKEMK' where id=57; -update noar ti set v1='873FWSLK5N7NLC4EZ3RFI9VL6QKLVKEMK' where id=57; -update noar tt set v2='UXW5GE2L9YHO6BRWP30BK09Q0IM590DDR' where id=57; -update noar ti set v2='UXW5GE2L9YHO6BRWP30BK09Q0IM590DDR' where id=57; -update noar tt set v3='BYDXX4IV634E48M2XP2XT5S4X5Q6I6U9Y' where id=57; -update noar ti set v3='BYDXX4IV634E48M2XP2XT5S4X5Q6I6U9Y' where id=57; -update noar tt set v0='PNBTJLSJRIOR6C3S77NLL4DU12WQ9N93L' where id=58; -update noar ti set v0='PNBTJLSJRIOR6C3S77NLL4DU12WQ9N93L' where id=58; -update noar tt set v1='XZSLGUO1A5405C6U0NG2RB08ALAWV6X5R' where id=58; -update noar ti set v1='XZSLGUO1A5405C6U0NG2RB08ALAWV6X5R' where id=58; -update noar tt set v2='SMX3RD2OPJ00HSV3LOB7SXVB4S5ZSUZ5R' where id=58; -update noar ti set v2='SMX3RD2OPJ00HSV3LOB7SXVB4S5ZSUZ5R' where id=58; -update noar tt set v3='MVTRS71Q1QOZEXR7RMZ719XGS4PF0OIYD' where id=58; -update noar ti set v3='MVTRS71Q1QOZEXR7RMZ719XGS4PF0OIYD' where id=58; -update noar tt set v0='1IQXUCLU60IVP95D8CTTJ84LJBKUP5281' where id=59; -update noar ti set v0='1IQXUCLU60IVP95D8CTTJ84LJBKUP5281' where id=59; -update noar tt set v1='EVU1YYQ5I93N40T3GSHEMAXINU1OLI6DF' where id=59; -update noar ti set v1='EVU1YYQ5I93N40T3GSHEMAXINU1OLI6DF' where id=59; -update noar tt set v2='6FXAWIA7W9YOAUFL8PQ7ACUGK2UEVY5YD' where id=59; -update noar ti set v2='6FXAWIA7W9YOAUFL8PQ7ACUGK2UEVY5YD' where id=59; -update noar tt set v3='DJI5LP9SH2QOIZXQX82OZO0VPE5B8MM63' where id=59; -update noar ti set v3='DJI5LP9SH2QOIZXQX82OZO0VPE5B8MM63' where id=59; -update noar tt set v0='ZQBAJG3TNI7PHWE3APHMSVCWYIQKIB7D5' where id=60; -update noar ti set v0='ZQBAJG3TNI7PHWE3APHMSVCWYIQKIB7D5' where id=60; -update noar tt set v1='LENGXXXH8LB0V1C11YLSNJV4P4GDRX886' where id=60; -update noar ti set v1='LENGXXXH8LB0V1C11YLSNJV4P4GDRX886' where id=60; -update noar tt set v2='AI5HP3552ZV9WOAUCYQFSCRHO2MONZDJ0' where id=60; -update noar ti set v2='AI5HP3552ZV9WOAUCYQFSCRHO2MONZDJ0' where id=60; -update noar tt set v3='XH4Y1FGRQVYJ4KUL68JXK4AQPPO8WQOVF' where id=60; -update noar ti set v3='XH4Y1FGRQVYJ4KUL68JXK4AQPPO8WQOVF' where id=60; -update noar tt set v0='6P0EDLNPK2ZUHIP4X6DOQ9ZI23RD88K7O' where id=61; -update noar ti set v0='6P0EDLNPK2ZUHIP4X6DOQ9ZI23RD88K7O' where id=61; -update noar tt set v1='4HQ62BOQT579T1CVOYP0SKA2UPLLU2QTD' where id=61; -update noar ti set v1='4HQ62BOQT579T1CVOYP0SKA2UPLLU2QTD' where id=61; -update noar tt set v2='J1U9LJA18760AZQ5SHUUJE1QNBUCM0XWL' where id=61; -update noar ti set v2='J1U9LJA18760AZQ5SHUUJE1QNBUCM0XWL' where id=61; -update noar tt set v3='IK9RSG1SF9VQTHVAGQPHJK5NHSNDEI004' where id=61; -update noar ti set v3='IK9RSG1SF9VQTHVAGQPHJK5NHSNDEI004' where id=61; -update noar tt set v0='EULSTNX20UWMKI41Y50A3IJS342IIN7AS' where id=62; -update noar ti set v0='EULSTNX20UWMKI41Y50A3IJS342IIN7AS' where id=62; -update noar tt set v1='MF5I064OXYNUBH4P6W5BQ1UJYMVGTP1GI' where id=62; -update noar ti set v1='MF5I064OXYNUBH4P6W5BQ1UJYMVGTP1GI' where id=62; -update noar tt set v2='IB28RE569YI4KX6Q2P19IY8KXTG5RLAZ3' where id=62; -update noar ti set v2='IB28RE569YI4KX6Q2P19IY8KXTG5RLAZ3' where id=62; -update noar tt set v3='31WVQ919FJA3HTPLNENVLZNDK18QFE6P6' where id=62; -update noar ti set v3='31WVQ919FJA3HTPLNENVLZNDK18QFE6P6' where id=62; -update noar tt set v0='VSAD6EYW20EBWUFG0MG5D9VFHPYU1KTBQ' where id=63; -update noar ti set v0='VSAD6EYW20EBWUFG0MG5D9VFHPYU1KTBQ' where id=63; -update noar tt set v1='KPTMK64O8P5BOGYKV703F5606HD7I4GU5' where id=63; -update noar ti set v1='KPTMK64O8P5BOGYKV703F5606HD7I4GU5' where id=63; -update noar tt set v2='ONYEURNEZT7FZ5A4NT4TLI6MC3VRXFROH' where id=63; -update noar ti set v2='ONYEURNEZT7FZ5A4NT4TLI6MC3VRXFROH' where id=63; -update noar tt set v3='U2F2GD4J0QGRMGMHNFVY7XAK3TOPY02X9' where id=63; -update noar ti set v3='U2F2GD4J0QGRMGMHNFVY7XAK3TOPY02X9' where id=63; -update noar tt set v0='0BQBY1BZ9K9L9STEGRS3S2NVCMCDFGV4K' where id=64; -update noar ti set v0='0BQBY1BZ9K9L9STEGRS3S2NVCMCDFGV4K' where id=64; -update noar tt set v1='2EO5P7GTH7YPASLBO25RG82G89XRPVJIK' where id=64; -update noar ti set v1='2EO5P7GTH7YPASLBO25RG82G89XRPVJIK' where id=64; -update noar tt set v2='94BNSO0BB09REGYUUOHIAD0FFXJY61TX4' where id=64; -update noar ti set v2='94BNSO0BB09REGYUUOHIAD0FFXJY61TX4' where id=64; -update noar tt set v3='HAHN3E7E855AYLHEVJFCSEWFW9L7KTKCH' where id=64; -update noar ti set v3='HAHN3E7E855AYLHEVJFCSEWFW9L7KTKCH' where id=64; -update noar tt set v0='EJRWHRZX9FR187T5M16SKH78LP7AAC7PD' where id=65; -update noar ti set v0='EJRWHRZX9FR187T5M16SKH78LP7AAC7PD' where id=65; -update noar tt set v1='6TT6QVN9FF5HJ1DXUXXLZ711QYC7SZCOZ' where id=65; -update noar ti set v1='6TT6QVN9FF5HJ1DXUXXLZ711QYC7SZCOZ' where id=65; -update noar tt set v2='7ZLQM70K04JXDLG7QR7H0KM47V3UN3MUX' where id=65; -update noar ti set v2='7ZLQM70K04JXDLG7QR7H0KM47V3UN3MUX' where id=65; -update noar tt set v3='2B2AM2WJ34QZJP7HWYDQO2LYPYNQVLOU9' where id=65; -update noar ti set v3='2B2AM2WJ34QZJP7HWYDQO2LYPYNQVLOU9' where id=65; -update noar tt set v0='Q154SZTETB5MW5GB6FRVBHVJ5N5V0S3AH' where id=66; -update noar ti set v0='Q154SZTETB5MW5GB6FRVBHVJ5N5V0S3AH' where id=66; -update noar tt set v1='GE2RXV6R22V95VXPJCQFSG82AYQDVZ1MF' where id=66; -update noar ti set v1='GE2RXV6R22V95VXPJCQFSG82AYQDVZ1MF' where id=66; -update noar tt set v2='PRUZSRQ16GCVEFGFQIYL6JFZ2Z2Y7CM80' where id=66; -update noar ti set v2='PRUZSRQ16GCVEFGFQIYL6JFZ2Z2Y7CM80' where id=66; -update noar tt set v3='0VXA0ZYG1MJ5PBP9ERCCRC6CFAO6RDY4T' where id=66; -update noar ti set v3='0VXA0ZYG1MJ5PBP9ERCCRC6CFAO6RDY4T' where id=66; -update noar tt set v0='YHYL5F5BYVLI3DNWAOJCPJ0P18QHIXRHA' where id=67; -update noar ti set v0='YHYL5F5BYVLI3DNWAOJCPJ0P18QHIXRHA' where id=67; -update noar tt set v1='JP7DDGYM7BK24EDL8AMRTXOQ3NKFGMY2V' where id=67; -update noar ti set v1='JP7DDGYM7BK24EDL8AMRTXOQ3NKFGMY2V' where id=67; -update noar tt set v2='37IJ7WD0KGCRYHS2KWCYRVKOYHJ9UQV6I' where id=67; -update noar ti set v2='37IJ7WD0KGCRYHS2KWCYRVKOYHJ9UQV6I' where id=67; -update noar tt set v3='3X8VDRPC97AAXOH7Q4T6KNG4NJRZ57W10' where id=67; -update noar ti set v3='3X8VDRPC97AAXOH7Q4T6KNG4NJRZ57W10' where id=67; -update noar tt set v0='509QVRTDDCUAPI4OQPPUXDSDQWLG558N2' where id=68; -update noar ti set v0='509QVRTDDCUAPI4OQPPUXDSDQWLG558N2' where id=68; -update noar tt set v1='7FZE6K86C7VC1VB31RZ31GS3XIALY4MUU' where id=68; -update noar ti set v1='7FZE6K86C7VC1VB31RZ31GS3XIALY4MUU' where id=68; -update noar tt set v2='M7WKQ44BRJTNJE1P3QG17FWVB7QY67NR0' where id=68; -update noar ti set v2='M7WKQ44BRJTNJE1P3QG17FWVB7QY67NR0' where id=68; -update noar tt set v3='UHBMO711Z9NXMP0PQT03IRGRE4H6F4Y0K' where id=68; -update noar ti set v3='UHBMO711Z9NXMP0PQT03IRGRE4H6F4Y0K' where id=68; -update noar tt set v0='YB2JABZV2A4UH2IRH4K5RAIKM669F6O4F' where id=69; -update noar ti set v0='YB2JABZV2A4UH2IRH4K5RAIKM669F6O4F' where id=69; -update noar tt set v1='ELON3CUX7WSO9AOLU0AE1LSDDQQDW5QNI' where id=69; -update noar ti set v1='ELON3CUX7WSO9AOLU0AE1LSDDQQDW5QNI' where id=69; -update noar tt set v2='GUA3PW824YE0STAYONF6YCZG7NZ6Y35RF' where id=69; -update noar ti set v2='GUA3PW824YE0STAYONF6YCZG7NZ6Y35RF' where id=69; -update noar tt set v3='R06CG6JLVBCVPTMGSCE6X3NHQEMME5RDA' where id=69; -update noar ti set v3='R06CG6JLVBCVPTMGSCE6X3NHQEMME5RDA' where id=69; -update noar tt set v0='8QFVPBOJZ82ADRDFS2QQS469ESDK74DEC' where id=70; -update noar ti set v0='8QFVPBOJZ82ADRDFS2QQS469ESDK74DEC' where id=70; -update noar tt set v1='C0FIKKI4OOACGSTF39JIVGNTD1YBXTPYB' where id=70; -update noar ti set v1='C0FIKKI4OOACGSTF39JIVGNTD1YBXTPYB' where id=70; -update noar tt set v2='MB1QU94AKC723WWK4WM1QGA8M1W2XYJF1' where id=70; -update noar ti set v2='MB1QU94AKC723WWK4WM1QGA8M1W2XYJF1' where id=70; -update noar tt set v3='DV1O1M3HI97UNCKF3C57VPMMJTUW9UTAV' where id=70; -update noar ti set v3='DV1O1M3HI97UNCKF3C57VPMMJTUW9UTAV' where id=70; -update noar tt set v0='4UO38QRD4VS15AATHXRZE89LE7KAA4K4A' where id=71; -update noar ti set v0='4UO38QRD4VS15AATHXRZE89LE7KAA4K4A' where id=71; -update noar tt set v1='H9EVDRRI7VUK6R61RWFNZKTQW485PTL3G' where id=71; -update noar ti set v1='H9EVDRRI7VUK6R61RWFNZKTQW485PTL3G' where id=71; -update noar tt set v2='A01XKRUP4G4HCIM0HMKC8YRFE0OJ2ML32' where id=71; -update noar ti set v2='A01XKRUP4G4HCIM0HMKC8YRFE0OJ2ML32' where id=71; -update noar tt set v3='4E3VF6JL4U6I2PY8A8PN0Z6LIJYFVT08P' where id=71; -update noar ti set v3='4E3VF6JL4U6I2PY8A8PN0Z6LIJYFVT08P' where id=71; -update noar tt set v0='WFIKIYMFOEQL0OSKVVMSJ5J6MVD3UT5O0' where id=72; -update noar ti set v0='WFIKIYMFOEQL0OSKVVMSJ5J6MVD3UT5O0' where id=72; -update noar tt set v1='UUYHQAOMT8LCLHU8BHXA29FJJJ0MZT8B9' where id=72; -update noar ti set v1='UUYHQAOMT8LCLHU8BHXA29FJJJ0MZT8B9' where id=72; -update noar tt set v2='E4QPJW1146OKN135FBM5XRIIKX6OW433W' where id=72; -update noar ti set v2='E4QPJW1146OKN135FBM5XRIIKX6OW433W' where id=72; -update noar tt set v3='BLDOKLY31IDY69EV5TC2JJ7GQYU5FZ26L' where id=72; -update noar ti set v3='BLDOKLY31IDY69EV5TC2JJ7GQYU5FZ26L' where id=72; -update noar tt set v0='Z5ZWQ7I5E4U4EQ21FO1C7TOGL6YXMAEZP' where id=73; -update noar ti set v0='Z5ZWQ7I5E4U4EQ21FO1C7TOGL6YXMAEZP' where id=73; -update noar tt set v1='U8RDOIQ951TXCLVWX1ERKXE5C5SJS44QI' where id=73; -update noar ti set v1='U8RDOIQ951TXCLVWX1ERKXE5C5SJS44QI' where id=73; -update noar tt set v2='325BHUSVCW6G9CDVKGIYJ6CP347LT7C2S' where id=73; -update noar ti set v2='325BHUSVCW6G9CDVKGIYJ6CP347LT7C2S' where id=73; -update noar tt set v3='3K59CJGTA9DM38KZL12IIRL645WDCUOF6' where id=73; -update noar ti set v3='3K59CJGTA9DM38KZL12IIRL645WDCUOF6' where id=73; -update noar tt set v0='U1EG1W31O5VM6XSK544KKZJRV5OZUSL1A' where id=74; -update noar ti set v0='U1EG1W31O5VM6XSK544KKZJRV5OZUSL1A' where id=74; -update noar tt set v1='NKN3WOH2HDBRKO2TDXJP5VE6MFTE6NQIK' where id=74; -update noar ti set v1='NKN3WOH2HDBRKO2TDXJP5VE6MFTE6NQIK' where id=74; -update noar tt set v2='MXC1QZSIHR6TD5YKCBTC6GCOQ2WDV4TA6' where id=74; -update noar ti set v2='MXC1QZSIHR6TD5YKCBTC6GCOQ2WDV4TA6' where id=74; -update noar tt set v3='LLGYBP5VLQSDZMXBB61RR0JQ1IANZUY9E' where id=74; -update noar ti set v3='LLGYBP5VLQSDZMXBB61RR0JQ1IANZUY9E' where id=74; -update noar tt set v0='6Z77X7P2SJNJ8A2Z4UQVDTGH2TXU2ESOD' where id=75; -update noar ti set v0='6Z77X7P2SJNJ8A2Z4UQVDTGH2TXU2ESOD' where id=75; -update noar tt set v1='0NGGSYR67BU1EHKG53KR7610C4YNA22SJ' where id=75; -update noar ti set v1='0NGGSYR67BU1EHKG53KR7610C4YNA22SJ' where id=75; -update noar tt set v2='JO40KAT463ZSC8MUTKREQORNAHIIK1HW8' where id=75; -update noar ti set v2='JO40KAT463ZSC8MUTKREQORNAHIIK1HW8' where id=75; -update noar tt set v3='LFI92CC2PSZPKMTKY3D10LTZWHJSHD4HM' where id=75; -update noar ti set v3='LFI92CC2PSZPKMTKY3D10LTZWHJSHD4HM' where id=75; -update noar tt set v0='H52H2Q8NQJO6UKXPX9TXM9EAJ12AVNEJ0' where id=76; -update noar ti set v0='H52H2Q8NQJO6UKXPX9TXM9EAJ12AVNEJ0' where id=76; -update noar tt set v1='Y1CZZVYK7MMZDDFNSDUP3OU01ZREMBD04' where id=76; -update noar ti set v1='Y1CZZVYK7MMZDDFNSDUP3OU01ZREMBD04' where id=76; -update noar tt set v2='J2LUUHTJQVC8EDGS7I3U159ZYL6LQ7SQ5' where id=76; -update noar ti set v2='J2LUUHTJQVC8EDGS7I3U159ZYL6LQ7SQ5' where id=76; -update noar tt set v3='E153B33MMB10WI8191FIYYWR1MD132US4' where id=76; -update noar ti set v3='E153B33MMB10WI8191FIYYWR1MD132US4' where id=76; -update noar tt set v0='DT2FB9CHFYUKX1WZEGJSTOA8DSRGLINXS' where id=77; -update noar ti set v0='DT2FB9CHFYUKX1WZEGJSTOA8DSRGLINXS' where id=77; -update noar tt set v1='K47ZCMG32O8TDMXIT4ZZVU3WUR5CK6281' where id=77; -update noar ti set v1='K47ZCMG32O8TDMXIT4ZZVU3WUR5CK6281' where id=77; -update noar tt set v2='E3MY4ZJDE9FRI845QX7L1JKE16RAOPB99' where id=77; -update noar ti set v2='E3MY4ZJDE9FRI845QX7L1JKE16RAOPB99' where id=77; -update noar tt set v3='8KIQVK1LIWNCEJOJFUJNRL3XAQCF6KQ5K' where id=77; -update noar ti set v3='8KIQVK1LIWNCEJOJFUJNRL3XAQCF6KQ5K' where id=77; -update noar tt set v0='GAUR2AKOVDS68JCYAUA27J3MEOLTT4NXD' where id=78; -update noar ti set v0='GAUR2AKOVDS68JCYAUA27J3MEOLTT4NXD' where id=78; -update noar tt set v1='WCU7F9Q0RH1IMVRYF9U1LCEQ0L50FE1CH' where id=78; -update noar ti set v1='WCU7F9Q0RH1IMVRYF9U1LCEQ0L50FE1CH' where id=78; -update noar tt set v2='L22IR67BLXQABI6DMMS5L1QMQDLFM05NH' where id=78; -update noar ti set v2='L22IR67BLXQABI6DMMS5L1QMQDLFM05NH' where id=78; -update noar tt set v3='OF514U1W2T1PULX5F19TST16ISLX261VM' where id=78; -update noar ti set v3='OF514U1W2T1PULX5F19TST16ISLX261VM' where id=78; -update noar tt set v0='FZU198AH61GTW7180NA2LFNSQW2SCVEA6' where id=79; -update noar ti set v0='FZU198AH61GTW7180NA2LFNSQW2SCVEA6' where id=79; -update noar tt set v1='7TUL6I09XZU7RP79CZDO2VLW5A8ETL695' where id=79; -update noar ti set v1='7TUL6I09XZU7RP79CZDO2VLW5A8ETL695' where id=79; -update noar tt set v2='L9D174CXNLVJW1FLYZER42YFERA5G33WO' where id=79; -update noar ti set v2='L9D174CXNLVJW1FLYZER42YFERA5G33WO' where id=79; -update noar tt set v3='V9D1TIRFVT56BXONELNKX0DZ476TY0BG9' where id=79; -update noar ti set v3='V9D1TIRFVT56BXONELNKX0DZ476TY0BG9' where id=79; -update noar tt set v0='76MITPR19HDDFNXEVC3R1QA6FCN50STKQ' where id=80; -update noar ti set v0='76MITPR19HDDFNXEVC3R1QA6FCN50STKQ' where id=80; -update noar tt set v1='5I24FSLVFP2WQDG3AQG1QHFWW08YPLD2U' where id=80; -update noar ti set v1='5I24FSLVFP2WQDG3AQG1QHFWW08YPLD2U' where id=80; -update noar tt set v2='0J0SKPWU530OVKZGJEZ8SCQ2I472EZ188' where id=80; -update noar ti set v2='0J0SKPWU530OVKZGJEZ8SCQ2I472EZ188' where id=80; -update noar tt set v3='0CV0ZOCN649DHA2VUVYJNBVQ43H62A1Z1' where id=80; -update noar ti set v3='0CV0ZOCN649DHA2VUVYJNBVQ43H62A1Z1' where id=80; -update noar tt set v0='8W9QWDO0V4HISTFSJ1Z3O0BEKHN5G6R1Z' where id=81; -update noar ti set v0='8W9QWDO0V4HISTFSJ1Z3O0BEKHN5G6R1Z' where id=81; -update noar tt set v1='93T7Z53MIR1EP02R7SOMTSEB12LS666NZ' where id=81; -update noar ti set v1='93T7Z53MIR1EP02R7SOMTSEB12LS666NZ' where id=81; -update noar tt set v2='E4YHBTUJAU83094D1Z0BCP2M4154EEPBF' where id=81; -update noar ti set v2='E4YHBTUJAU83094D1Z0BCP2M4154EEPBF' where id=81; -update noar tt set v3='2BGYRT4HGEADERD3AL8B4OBXKJUT31N88' where id=81; -update noar ti set v3='2BGYRT4HGEADERD3AL8B4OBXKJUT31N88' where id=81; -update noar tt set v0='VAMNISNLQ3PG37VIRL7AGZ45ADSWG20RP' where id=82; -update noar ti set v0='VAMNISNLQ3PG37VIRL7AGZ45ADSWG20RP' where id=82; -update noar tt set v1='R9KZX21ALTSPL2CQVQO1LJB9CRO88GOC1' where id=82; -update noar ti set v1='R9KZX21ALTSPL2CQVQO1LJB9CRO88GOC1' where id=82; -update noar tt set v2='GS8XUCBZ64ECI341QXC7638DQNYS9G977' where id=82; -update noar ti set v2='GS8XUCBZ64ECI341QXC7638DQNYS9G977' where id=82; -update noar tt set v3='ZDAT2P3X8IF5R1L52CEENJKWDLQA0G0AV' where id=82; -update noar ti set v3='ZDAT2P3X8IF5R1L52CEENJKWDLQA0G0AV' where id=82; -update noar tt set v0='71AX43MZ4ZAGC2HX30BITFS7SXOU7IXNT' where id=83; -update noar ti set v0='71AX43MZ4ZAGC2HX30BITFS7SXOU7IXNT' where id=83; -update noar tt set v1='0ELCJ3MSUGGZFQA4IIGWRQ3W7LTAML82G' where id=83; -update noar ti set v1='0ELCJ3MSUGGZFQA4IIGWRQ3W7LTAML82G' where id=83; -update noar tt set v2='VPMVK8QYNB300TILT3KX3UA034TDBR5S7' where id=83; -update noar ti set v2='VPMVK8QYNB300TILT3KX3UA034TDBR5S7' where id=83; -update noar tt set v3='8AG9QUIWP3348C4AX4FTSAOH2AOZ8N5GK' where id=83; -update noar ti set v3='8AG9QUIWP3348C4AX4FTSAOH2AOZ8N5GK' where id=83; -update noar tt set v0='2523J3T4J6YVYNGV9AYJ0Z9K9II0LJA8O' where id=84; -update noar ti set v0='2523J3T4J6YVYNGV9AYJ0Z9K9II0LJA8O' where id=84; -update noar tt set v1='DN3ZS6W6EDU1N8P19WCNU3SCYYOVWA7FG' where id=84; -update noar ti set v1='DN3ZS6W6EDU1N8P19WCNU3SCYYOVWA7FG' where id=84; -update noar tt set v2='2WI19INSY619HGY5A6P7NYDJ35OJKDR2D' where id=84; -update noar ti set v2='2WI19INSY619HGY5A6P7NYDJ35OJKDR2D' where id=84; -update noar tt set v3='DFBH97AVHBXZR6G7YYCE7NOJEOHY03OOR' where id=84; -update noar ti set v3='DFBH97AVHBXZR6G7YYCE7NOJEOHY03OOR' where id=84; -update noar tt set v0='HRJTQI6QM6W93IWKFXVEMHZILM7C51BVI' where id=85; -update noar ti set v0='HRJTQI6QM6W93IWKFXVEMHZILM7C51BVI' where id=85; -update noar tt set v1='9ETTI4T735T047AQLFXZ9V0QEBUM4Q3O8' where id=85; -update noar ti set v1='9ETTI4T735T047AQLFXZ9V0QEBUM4Q3O8' where id=85; -update noar tt set v2='MRN1XW2RQRDV56TB83GR6YY1G0OKPDH51' where id=85; -update noar ti set v2='MRN1XW2RQRDV56TB83GR6YY1G0OKPDH51' where id=85; -update noar tt set v3='7X1360SOJ83FW8CQJ0PX3REUANSSHEK6C' where id=85; -update noar ti set v3='7X1360SOJ83FW8CQJ0PX3REUANSSHEK6C' where id=85; -update noar tt set v0='JKCII8RC5G6ZFO5QBTZNQVYJQL9VDLWUM' where id=86; -update noar ti set v0='JKCII8RC5G6ZFO5QBTZNQVYJQL9VDLWUM' where id=86; -update noar tt set v1='LAB459CIQW4TF2NF2GROH28MIA1BSPODT' where id=86; -update noar ti set v1='LAB459CIQW4TF2NF2GROH28MIA1BSPODT' where id=86; -update noar tt set v2='L550EWTDOV3BJ0ZQGB8Z8L3WLCKGRQVZQ' where id=86; -update noar ti set v2='L550EWTDOV3BJ0ZQGB8Z8L3WLCKGRQVZQ' where id=86; -update noar tt set v3='030Y45DZ5LEQ03R1GXH6MJ4HBMTI1Q2SP' where id=86; -update noar ti set v3='030Y45DZ5LEQ03R1GXH6MJ4HBMTI1Q2SP' where id=86; -update noar tt set v0='Q8NF6I7AUI9Q686O4G15FBOOSEO8S9GKA' where id=87; -update noar ti set v0='Q8NF6I7AUI9Q686O4G15FBOOSEO8S9GKA' where id=87; -update noar tt set v1='1YGD1P5UV16JPPX3EQPEBMYCF5O2TMCKE' where id=87; -update noar ti set v1='1YGD1P5UV16JPPX3EQPEBMYCF5O2TMCKE' where id=87; -update noar tt set v2='F8OPSNADZEV43HMHGGPTP52QCS23096XX' where id=87; -update noar ti set v2='F8OPSNADZEV43HMHGGPTP52QCS23096XX' where id=87; -update noar tt set v3='CFJ4E3ILWHLEPZ26HHPKK4KY6RMMSDYUL' where id=87; -update noar ti set v3='CFJ4E3ILWHLEPZ26HHPKK4KY6RMMSDYUL' where id=87; -update noar tt set v0='4D52XWH2ZEB6Y2Z241UKZTR3YNI66PJLN' where id=88; -update noar ti set v0='4D52XWH2ZEB6Y2Z241UKZTR3YNI66PJLN' where id=88; -update noar tt set v1='THIISDQDZM5BOTL8RLTP4ZK9IYS3QS5TI' where id=88; -update noar ti set v1='THIISDQDZM5BOTL8RLTP4ZK9IYS3QS5TI' where id=88; -update noar tt set v2='820G35HO8VW0PKOGKWYKKO83HV29XIGNH' where id=88; -update noar ti set v2='820G35HO8VW0PKOGKWYKKO83HV29XIGNH' where id=88; -update noar tt set v3='L29KEVNWE4JHO8EZJXTZ79PTYE4TIZMIS' where id=88; -update noar ti set v3='L29KEVNWE4JHO8EZJXTZ79PTYE4TIZMIS' where id=88; -update noar tt set v0='1J5JXKMCH0FNWSRJ5JK575CZ0FR5HSV6M' where id=89; -update noar ti set v0='1J5JXKMCH0FNWSRJ5JK575CZ0FR5HSV6M' where id=89; -update noar tt set v1='38GYOGLUYPSTV8N4JO4D3MWJZ87BX4NDT' where id=89; -update noar ti set v1='38GYOGLUYPSTV8N4JO4D3MWJZ87BX4NDT' where id=89; -update noar tt set v2='6LYHDG61J75S96LURZ1QFPQPCG06Z2EOA' where id=89; -update noar ti set v2='6LYHDG61J75S96LURZ1QFPQPCG06Z2EOA' where id=89; -update noar tt set v3='LPW74VWXSOJH8YTSIPUMYGJA049P8P5UC' where id=89; -update noar ti set v3='LPW74VWXSOJH8YTSIPUMYGJA049P8P5UC' where id=89; -update noar tt set v0='COTJVYSUNNOU5XPFVBNHH0DMFNND8KQEY' where id=90; -update noar ti set v0='COTJVYSUNNOU5XPFVBNHH0DMFNND8KQEY' where id=90; -update noar tt set v1='RILPDL5BCFP1BH6G5O16VSO99N5ROH823' where id=90; -update noar ti set v1='RILPDL5BCFP1BH6G5O16VSO99N5ROH823' where id=90; -update noar tt set v2='FOYA2IWCZSND8J8LQKVXTJGZBKWRSNMRM' where id=90; -update noar ti set v2='FOYA2IWCZSND8J8LQKVXTJGZBKWRSNMRM' where id=90; -update noar tt set v3='9NX048130G536AR4Z5TGXLF048RL2B0BQ' where id=90; -update noar ti set v3='9NX048130G536AR4Z5TGXLF048RL2B0BQ' where id=90; -update noar tt set v0='5A0OKTUYFYY0REBNPA1DFQPD3WE066NH8' where id=91; -update noar ti set v0='5A0OKTUYFYY0REBNPA1DFQPD3WE066NH8' where id=91; -update noar tt set v1='M7YKAFBYA12WJ00L0T1KC060B263IRLU9' where id=91; -update noar ti set v1='M7YKAFBYA12WJ00L0T1KC060B263IRLU9' where id=91; -update noar tt set v2='RVNGMEKJ0GZJYR03MBOABN1KVCFHITH2S' where id=91; -update noar ti set v2='RVNGMEKJ0GZJYR03MBOABN1KVCFHITH2S' where id=91; -update noar tt set v3='7HU7DGM71M83XMAGJZD5BKOFUXW1ZLDX5' where id=91; -update noar ti set v3='7HU7DGM71M83XMAGJZD5BKOFUXW1ZLDX5' where id=91; -update noar tt set v0='62RVRTD2TILSQ1FIAK5445N095UB9R6L2' where id=92; -update noar ti set v0='62RVRTD2TILSQ1FIAK5445N095UB9R6L2' where id=92; -update noar tt set v1='3Z7YXT9ICT3PG2LVDTN5QSFYABGEETX0I' where id=92; -update noar ti set v1='3Z7YXT9ICT3PG2LVDTN5QSFYABGEETX0I' where id=92; -update noar tt set v2='967X07WO4V9J8G7YKA3KIIPNFBF784Y12' where id=92; -update noar ti set v2='967X07WO4V9J8G7YKA3KIIPNFBF784Y12' where id=92; -update noar tt set v3='0IGLNWBAVAHS4RAVIE6LJ6D2CVKY48DCZ' where id=92; -update noar ti set v3='0IGLNWBAVAHS4RAVIE6LJ6D2CVKY48DCZ' where id=92; -update noar tt set v0='C0U0C8KU3U6HCWSL8DFU4IBYQAK2QUP0J' where id=93; -update noar ti set v0='C0U0C8KU3U6HCWSL8DFU4IBYQAK2QUP0J' where id=93; -update noar tt set v1='QJ1PETVEJGCXZJ06ZGVI4TCVI64DMJXZE' where id=93; -update noar ti set v1='QJ1PETVEJGCXZJ06ZGVI4TCVI64DMJXZE' where id=93; -update noar tt set v2='7XA1KVO1SENCAM9C8H2PVFSKSLEFK3MDX' where id=93; -update noar ti set v2='7XA1KVO1SENCAM9C8H2PVFSKSLEFK3MDX' where id=93; -update noar tt set v3='LX94SJ3GZ2ROSOG87CHXE8Y4HMMJQFO5R' where id=93; -update noar ti set v3='LX94SJ3GZ2ROSOG87CHXE8Y4HMMJQFO5R' where id=93; -update noar tt set v0='CR5FS516EEC4FJW0TT2QF58HN21FZ0ASB' where id=94; -update noar ti set v0='CR5FS516EEC4FJW0TT2QF58HN21FZ0ASB' where id=94; -update noar tt set v1='NL6SYNS3B1MQI3UI81Y2V5RJOELZVXB0L' where id=94; -update noar ti set v1='NL6SYNS3B1MQI3UI81Y2V5RJOELZVXB0L' where id=94; -update noar tt set v2='ES2BMV466W9IR49HHWSD84QD9C5K1CZFA' where id=94; -update noar ti set v2='ES2BMV466W9IR49HHWSD84QD9C5K1CZFA' where id=94; -update noar tt set v3='MZAZ1049ZCXKM251UD33KATM0K24X45HV' where id=94; -update noar ti set v3='MZAZ1049ZCXKM251UD33KATM0K24X45HV' where id=94; -update noar tt set v0='FFTEM9NP7KAGILDCFDXNNJ3GNGL332G9G' where id=95; -update noar ti set v0='FFTEM9NP7KAGILDCFDXNNJ3GNGL332G9G' where id=95; -update noar tt set v1='RWWMHJ4SGI66H1TR7M2X3T2FP3X592S1B' where id=95; -update noar ti set v1='RWWMHJ4SGI66H1TR7M2X3T2FP3X592S1B' where id=95; -update noar tt set v2='N58JJI6J9OA5SGQWI7ZBWMZ83IPJH2UVT' where id=95; -update noar ti set v2='N58JJI6J9OA5SGQWI7ZBWMZ83IPJH2UVT' where id=95; -update noar tt set v3='T9PD6HENPF61KZ6DD0WJWQ2B3SHHHRFND' where id=95; -update noar ti set v3='T9PD6HENPF61KZ6DD0WJWQ2B3SHHHRFND' where id=95; -update noar tt set v0='UMCI75NEY2L860S6VKTKV0OH3TAE8PYRS' where id=96; -update noar ti set v0='UMCI75NEY2L860S6VKTKV0OH3TAE8PYRS' where id=96; -update noar tt set v1='9SUKTBTF1K8G2ATHFTRJV73RFU7POTY8D' where id=96; -update noar ti set v1='9SUKTBTF1K8G2ATHFTRJV73RFU7POTY8D' where id=96; -update noar tt set v2='WSU1EF52PZHNTILLBN5K2URGBVWYQ1C2L' where id=96; -update noar ti set v2='WSU1EF52PZHNTILLBN5K2URGBVWYQ1C2L' where id=96; -update noar tt set v3='7P8L8D7A48BHQFB2UTPK1OCHMHI052LCD' where id=96; -update noar ti set v3='7P8L8D7A48BHQFB2UTPK1OCHMHI052LCD' where id=96; -update noar tt set v0='UWKMNL0870KPSF7GCMSRY77I5QUIQQQ1P' where id=97; -update noar ti set v0='UWKMNL0870KPSF7GCMSRY77I5QUIQQQ1P' where id=97; -update noar tt set v1='E7FL9RTMIT5DYC9LNVCRYH414DRIE1D0D' where id=97; -update noar ti set v1='E7FL9RTMIT5DYC9LNVCRYH414DRIE1D0D' where id=97; -update noar tt set v2='1BAKJEWCJRKVY7PTO9DXC980MSDE2TE6H' where id=97; -update noar ti set v2='1BAKJEWCJRKVY7PTO9DXC980MSDE2TE6H' where id=97; -update noar tt set v3='TYXARM2HKG0P62LASWVW4N0EAXGAQW7GO' where id=97; -update noar ti set v3='TYXARM2HKG0P62LASWVW4N0EAXGAQW7GO' where id=97; -update noar tt set v0='4VE776DG508IW3LZUE6AUTAW2JDPCAZWL' where id=98; -update noar ti set v0='4VE776DG508IW3LZUE6AUTAW2JDPCAZWL' where id=98; -update noar tt set v1='NSJ0K2LFG0TGTLS16P6MWA0CQVA9WLQKO' where id=98; -update noar ti set v1='NSJ0K2LFG0TGTLS16P6MWA0CQVA9WLQKO' where id=98; -update noar tt set v2='E3I7L3WBNQ3BYO4JKT32M2NIR8P9B7J3A' where id=98; -update noar ti set v2='E3I7L3WBNQ3BYO4JKT32M2NIR8P9B7J3A' where id=98; -update noar tt set v3='Z4I17U2NUSBCDD8PCJBIPT4PYQWLVSABE' where id=98; -update noar ti set v3='Z4I17U2NUSBCDD8PCJBIPT4PYQWLVSABE' where id=98; -update noar tt set v0='0O0D2HFHYY99YW2J7W2XQHXKLXRGJ359S' where id=99; -update noar ti set v0='0O0D2HFHYY99YW2J7W2XQHXKLXRGJ359S' where id=99; -update noar tt set v1='DFF5OUK3F76SRB6QD81YPY6ORPRO1CNUC' where id=99; -update noar ti set v1='DFF5OUK3F76SRB6QD81YPY6ORPRO1CNUC' where id=99; -update noar tt set v2='NDUJ9GJXVB05Q13HOEV9OHP1RH9MJR99U' where id=99; -update noar ti set v2='NDUJ9GJXVB05Q13HOEV9OHP1RH9MJR99U' where id=99; -update noar tt set v3='M4U6GZOI06LY5NIHERUPWJA31CK4W066E' where id=99; -update noar ti set v3='M4U6GZOI06LY5NIHERUPWJA31CK4W066E' where id=99; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - f0 int null, - v0 varchar(256) null, - v1 varchar(256) null, - v2 varchar(256) null, - v3 varchar(256) null, - b0 text null -) engine=tokudb; -insert into tt (id) values (0); -insert into tt values (1,2,'a','b','c','d','e'); -insert into tt values (2,3,'','','','',''); -insert into tt values (3,4,'','','','',''); -insert into tt values (4,5,'','','','',''); -insert into tt values (5,6,'','','','',''); -insert into tt values (6,7,'','','','',''); -insert into tt values (7,8,'','','','',''); -insert into tt values (8,9,'','','','',''); -insert into tt values (9,10,'','','','',''); -insert into tt values (10,11,'','','','',''); -insert into tt values (11,12,'','','','',''); -insert into tt values (12,13,'','','','',''); -insert into tt values (13,14,'','','','',''); -insert into tt values (14,15,'','','','',''); -insert into tt values (15,16,'','','','',''); -insert into tt values (16,17,'','','','',''); -insert into tt values (17,18,'','','','',''); -insert into tt values (18,19,'','','','',''); -insert into tt values (19,20,'','','','',''); -insert into tt values (20,21,'','','','',''); -insert into tt values (21,22,'','','','',''); -insert into tt values (22,23,'','','','',''); -insert into tt values (23,24,'','','','',''); -insert into tt values (24,25,'','','','',''); -insert into tt values (25,26,'','','','',''); -insert into tt values (26,27,'','','','',''); -insert into tt values (27,28,'','','','',''); -insert into tt values (28,29,'','','','',''); -insert into tt values (29,30,'','','','',''); -insert into tt values (30,31,'','','','',''); -insert into tt values (31,32,'','','','',''); -insert into tt values (32,33,'','','','',''); -insert into tt values (33,34,'','','','',''); -insert into tt values (34,35,'','','','',''); -insert into tt values (35,36,'','','','',''); -insert into tt values (36,37,'','','','',''); -insert into tt values (37,38,'','','','',''); -insert into tt values (38,39,'','','','',''); -insert into tt values (39,40,'','','','',''); -insert into tt values (40,41,'','','','',''); -insert into tt values (41,42,'','','','',''); -insert into tt values (42,43,'','','','',''); -insert into tt values (43,44,'','','','',''); -insert into tt values (44,45,'','','','',''); -insert into tt values (45,46,'','','','',''); -insert into tt values (46,47,'','','','',''); -insert into tt values (47,48,'','','','',''); -insert into tt values (48,49,'','','','',''); -insert into tt values (49,50,'','','','',''); -insert into tt values (50,51,'','','','',''); -insert into tt values (51,52,'','','','',''); -insert into tt values (52,53,'','','','',''); -insert into tt values (53,54,'','','','',''); -insert into tt values (54,55,'','','','',''); -insert into tt values (55,56,'','','','',''); -insert into tt values (56,57,'','','','',''); -insert into tt values (57,58,'','','','',''); -insert into tt values (58,59,'','','','',''); -insert into tt values (59,60,'','','','',''); -insert into tt values (60,61,'','','','',''); -insert into tt values (61,62,'','','','',''); -insert into tt values (62,63,'','','','',''); -insert into tt values (63,64,'','','','',''); -insert into tt values (64,65,'','','','',''); -insert into tt values (65,66,'','','','',''); -insert into tt values (66,67,'','','','',''); -insert into tt values (67,68,'','','','',''); -insert into tt values (68,69,'','','','',''); -insert into tt values (69,70,'','','','',''); -insert into tt values (70,71,'','','','',''); -insert into tt values (71,72,'','','','',''); -insert into tt values (72,73,'','','','',''); -insert into tt values (73,74,'','','','',''); -insert into tt values (74,75,'','','','',''); -insert into tt values (75,76,'','','','',''); -insert into tt values (76,77,'','','','',''); -insert into tt values (77,78,'','','','',''); -insert into tt values (78,79,'','','','',''); -insert into tt values (79,80,'','','','',''); -insert into tt values (80,81,'','','','',''); -insert into tt values (81,82,'','','','',''); -insert into tt values (82,83,'','','','',''); -insert into tt values (83,84,'','','','',''); -insert into tt values (84,85,'','','','',''); -insert into tt values (85,86,'','','','',''); -insert into tt values (86,87,'','','','',''); -insert into tt values (87,88,'','','','',''); -insert into tt values (88,89,'','','','',''); -insert into tt values (89,90,'','','','',''); -insert into tt values (90,91,'','','','',''); -insert into tt values (91,92,'','','','',''); -insert into tt values (92,93,'','','','',''); -insert into tt values (93,94,'','','','',''); -insert into tt values (94,95,'','','','',''); -insert into tt values (95,96,'','','','',''); -insert into tt values (96,97,'','','','',''); -insert into tt values (97,98,'','','','',''); -insert into tt values (98,99,'','','','',''); -insert into tt values (99,100,'','','','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='null this 0' where id=0; -update noar ti set v0='null this 0' where id=0; -update noar tt set v1='null is 1' where id=0; -update noar ti set v1='null is 1' where id=0; -update noar tt set v2='null a 2' where id=0; -update noar ti set v2='null a 2' where id=0; -update noar tt set v3='null test 3' where id=0; -update noar ti set v3='null test 3' where id=0; -update noar tt set v0='this 0' where id=1; -update noar ti set v0='this 0' where id=1; -update noar tt set v1='is 1' where id=1; -update noar ti set v1='is 1' where id=1; -update noar tt set v2='another 2' where id=1; -update noar ti set v2='another 2' where id=1; -update noar tt set v3='test 3' where id=1; -update noar ti set v3='test 3' where id=1; -update noar tt set v0='K0W6GSMZDOZSZR4MMED85PF5WJ9IWV8785BFW1FNVMT5X8E2TOYD6ARV8FHJIBJFOJG78VMWR5OQNT8MRSJY8U1YRU759VGVPCDN1M1YF5BNR1R9P60U0VIW3UQJLWBUBEM7HC4XZ1YC4KQI3WTSCCQJ86I2AYN84ZD620ZOESK6J3L5BG7SWPBZZ1X69CVEOQW6B2IY19K39RMI96NAET67E4GCU6NDPH94HO5RX776UAINOL2SCPDTN8EPNF2DC' where id=2; -update noar ti set v0='K0W6GSMZDOZSZR4MMED85PF5WJ9IWV8785BFW1FNVMT5X8E2TOYD6ARV8FHJIBJFOJG78VMWR5OQNT8MRSJY8U1YRU759VGVPCDN1M1YF5BNR1R9P60U0VIW3UQJLWBUBEM7HC4XZ1YC4KQI3WTSCCQJ86I2AYN84ZD620ZOESK6J3L5BG7SWPBZZ1X69CVEOQW6B2IY19K39RMI96NAET67E4GCU6NDPH94HO5RX776UAINOL2SCPDTN8EPNF2DC' where id=2; -update noar tt set v1='Y1AQIBH8DKUGNVBYW8RJBE9NCSLAUNAUBC4VSEBE5M8R3Z2CQRKA7B51WO0U4BH2P7DDWL5UEZBA1Z2F32STCUOEBB5LD157F64EHDJ9E5UDTTXU7O8YRJC6E44R0R0TNFQ3XJ5AAP4TM46XQDJE9Y9PWQEXT9XOGSINUP5WYKTPRO436B5OYOKHDPELSLR2ABH9896GJ9PPZ7PIR9JB64UWPOW9KMVOJG1RWQHU2G4Q3FJLYJV2AONY6FBXJ25W0' where id=2; -update noar ti set v1='Y1AQIBH8DKUGNVBYW8RJBE9NCSLAUNAUBC4VSEBE5M8R3Z2CQRKA7B51WO0U4BH2P7DDWL5UEZBA1Z2F32STCUOEBB5LD157F64EHDJ9E5UDTTXU7O8YRJC6E44R0R0TNFQ3XJ5AAP4TM46XQDJE9Y9PWQEXT9XOGSINUP5WYKTPRO436B5OYOKHDPELSLR2ABH9896GJ9PPZ7PIR9JB64UWPOW9KMVOJG1RWQHU2G4Q3FJLYJV2AONY6FBXJ25W0' where id=2; -update noar tt set v2='09PCLQORLSJ5YF7N8MCH3BBWTHOGUI04V0AT7BUT09E35UG3RVA6EV96SK3VVS73TAG6K1ZL3MNVYU2Y7WSBR4HS7DX7RV046KUBG6GGORQ3OJIT9XMOA7GFAX0GPSV2KBVIVMU34DYNL96SBBOTL6ULYKA7HYEI10H0Q61Z338YPWTAITE8SP4V0NIT3Q01VOFNSDVWZCW4D4MJB8WWW1G6JNKFCNSAA13WZ9HEPQU1BAVKQGGYTR4OOWJZTZMQ9' where id=2; -update noar ti set v2='09PCLQORLSJ5YF7N8MCH3BBWTHOGUI04V0AT7BUT09E35UG3RVA6EV96SK3VVS73TAG6K1ZL3MNVYU2Y7WSBR4HS7DX7RV046KUBG6GGORQ3OJIT9XMOA7GFAX0GPSV2KBVIVMU34DYNL96SBBOTL6ULYKA7HYEI10H0Q61Z338YPWTAITE8SP4V0NIT3Q01VOFNSDVWZCW4D4MJB8WWW1G6JNKFCNSAA13WZ9HEPQU1BAVKQGGYTR4OOWJZTZMQ9' where id=2; -update noar tt set v3='PE352OYVX26PJUMOM1A7BHE9ZUHYT0LCL0XNICJPNIT527WN93EK1N50XY7NMHGEIKNCV5PN06LFZG5IOJLHYEHD9LAJFY5U4ZFMFPWDCNS4U3ORYAQSTU1VOW5YKYAX6TRNDC1JJCMYDMHGZ3XNYXY2LCIGDIC3FBLOONH2QDW6DM9C4Q2WYSOTI88H3E0DXEOI29WV5P63DFK20CI1I6VIVT2E29FO72U7W7BS1FD36W4XYQQ6WANI63G1TZ9Y9' where id=2; -update noar ti set v3='PE352OYVX26PJUMOM1A7BHE9ZUHYT0LCL0XNICJPNIT527WN93EK1N50XY7NMHGEIKNCV5PN06LFZG5IOJLHYEHD9LAJFY5U4ZFMFPWDCNS4U3ORYAQSTU1VOW5YKYAX6TRNDC1JJCMYDMHGZ3XNYXY2LCIGDIC3FBLOONH2QDW6DM9C4Q2WYSOTI88H3E0DXEOI29WV5P63DFK20CI1I6VIVT2E29FO72U7W7BS1FD36W4XYQQ6WANI63G1TZ9Y9' where id=2; -update noar tt set v0='75RKPVVH4RWVRNCN2V6UOWSVEBPEROBIOL9IYCMUVFYKCEC39SJHZPMNRXKZUWDHAOFAI8NGMURUPJ0RUBC6JQW2HAKWQLQB1UXAP0CPCGL4XTWU1TSDM9ES7IOIK5S6Z133NCYW0LLGNWCE5O6ZK5AWAJVIG5J2WVTRN4M5D649CYOH5E0WEF31BO5FZ5ZH3EWJ7V3SL3AF4VOYHGYWPOMQ8PS1RT4MARY3O9ZVN1SMG2878CFWU7LXWP3Q47Q82' where id=3; -update noar ti set v0='75RKPVVH4RWVRNCN2V6UOWSVEBPEROBIOL9IYCMUVFYKCEC39SJHZPMNRXKZUWDHAOFAI8NGMURUPJ0RUBC6JQW2HAKWQLQB1UXAP0CPCGL4XTWU1TSDM9ES7IOIK5S6Z133NCYW0LLGNWCE5O6ZK5AWAJVIG5J2WVTRN4M5D649CYOH5E0WEF31BO5FZ5ZH3EWJ7V3SL3AF4VOYHGYWPOMQ8PS1RT4MARY3O9ZVN1SMG2878CFWU7LXWP3Q47Q82' where id=3; -update noar tt set v1='PIGNY61M1LRE6P523M94TKDPSQUR48UYG570WYL123AC6M7TCTZVWRFNYMAQIYJ0GI8CT3FV3ATVR8UT2I10G8XKGXOKNTMJ7B6PLNNVQWRW18CP528DSQKNWB5KQKMW753VETUL55FEPJ516XF5AUCTPBDHUT1SVFG8HUFP7U54JC656F2CFLY7AL0MAX0J35E0VYLPK3378NW2G99E8MJJULBFAAZP4WZ9ALXW45R4X75ZETM1FQR7AYW1H3LSM' where id=3; -update noar ti set v1='PIGNY61M1LRE6P523M94TKDPSQUR48UYG570WYL123AC6M7TCTZVWRFNYMAQIYJ0GI8CT3FV3ATVR8UT2I10G8XKGXOKNTMJ7B6PLNNVQWRW18CP528DSQKNWB5KQKMW753VETUL55FEPJ516XF5AUCTPBDHUT1SVFG8HUFP7U54JC656F2CFLY7AL0MAX0J35E0VYLPK3378NW2G99E8MJJULBFAAZP4WZ9ALXW45R4X75ZETM1FQR7AYW1H3LSM' where id=3; -update noar tt set v2='4SW5NYQDT95S713YORAUW5AZUJACT2EAKMD4SRT8SKCHLOAMD4L1XHCGVZOFGCROW1QT0SEKR25RP1MVWPWMGUFRVBT3ZV0E2B2QMTRH8MZIOGLR25NGNSHI9CKGJA4LT1K6SJ5O6JYSRTH3BGZHP3LNLV37HVA9NZBBA72LVG0MDIRAPDZKEGZBSQLWJDA0Z9S4WEW5IM32UDVVXC1W3FKL95N5Q76A3DS4EFQ28Y1SL8BKF67VMJMPKMT95WXES' where id=3; -update noar ti set v2='4SW5NYQDT95S713YORAUW5AZUJACT2EAKMD4SRT8SKCHLOAMD4L1XHCGVZOFGCROW1QT0SEKR25RP1MVWPWMGUFRVBT3ZV0E2B2QMTRH8MZIOGLR25NGNSHI9CKGJA4LT1K6SJ5O6JYSRTH3BGZHP3LNLV37HVA9NZBBA72LVG0MDIRAPDZKEGZBSQLWJDA0Z9S4WEW5IM32UDVVXC1W3FKL95N5Q76A3DS4EFQ28Y1SL8BKF67VMJMPKMT95WXES' where id=3; -update noar tt set v3='JL9GZP7FPVMRNII2C3GB09OESYN1QNU5GFL5O57MJU9NJJWONWO4NDDL2KD4B5OJ5SEBY3KCL7629WX37UTW0B9H38QOHGE5VMJKSTDS3VSPRM3SRF4CUD780X8NBEWJAS81FF3UT01JVSLTC8SOIHA7C4J5W68Z3KC2T8DZXS9JI3BF9EYU9HY372EUOENHRBYJWTDF9ODVOXN40AT1WE4HBR6A7CXDY2U0W0BW0OAZ9QDX9EYHZZFDK4LHZ2ZYE' where id=3; -update noar ti set v3='JL9GZP7FPVMRNII2C3GB09OESYN1QNU5GFL5O57MJU9NJJWONWO4NDDL2KD4B5OJ5SEBY3KCL7629WX37UTW0B9H38QOHGE5VMJKSTDS3VSPRM3SRF4CUD780X8NBEWJAS81FF3UT01JVSLTC8SOIHA7C4J5W68Z3KC2T8DZXS9JI3BF9EYU9HY372EUOENHRBYJWTDF9ODVOXN40AT1WE4HBR6A7CXDY2U0W0BW0OAZ9QDX9EYHZZFDK4LHZ2ZYE' where id=3; -update noar tt set v0='O732IS5IKPAMYRXPBQ22C8BTJ3F6F1INXZNSF327JE6CRBUEZNTZRB7S4S6MYUGTJMMKL8QHDROGVO9UEKDF2OOCSZQVKFLT9GE55DFYRTSROPLKV7R60DZZ3OQ03XFOANYU62JDWMBPEL9KN2SK5O55A865ZLKU5GEVZ88OLAVM4JBUDPQW7U1N9AQFRKLG8Z8XJDR7LV7R9GKUVR5FM1DC2BDNNXCAI9R8UQ9C5D7CCSO9DZBGBO84812S7BDTT' where id=4; -update noar ti set v0='O732IS5IKPAMYRXPBQ22C8BTJ3F6F1INXZNSF327JE6CRBUEZNTZRB7S4S6MYUGTJMMKL8QHDROGVO9UEKDF2OOCSZQVKFLT9GE55DFYRTSROPLKV7R60DZZ3OQ03XFOANYU62JDWMBPEL9KN2SK5O55A865ZLKU5GEVZ88OLAVM4JBUDPQW7U1N9AQFRKLG8Z8XJDR7LV7R9GKUVR5FM1DC2BDNNXCAI9R8UQ9C5D7CCSO9DZBGBO84812S7BDTT' where id=4; -update noar tt set v1='R92NFJNZ1ZBJJ44PGPPJHP3QL89MA6GL8J4PVUIZ0QD59JSQMKF2T36UK1CKVMC41D92UJHZO9X8VDVJSV9IV790JVZRDOSDTRVN18VA2GHMMBRIJHVHH2TCQ2XX43YPY00RBNEF9XQFPFH0WPOKL01RRIIMTAN9CCOWFLHADU54HCKLIK3A8FB0M76NQFY85GOXWLENR7E4LEDI60II5ZUYYTND83IG4XCTJSRLJU6FGHB5EX10K67U6SB4LO5V5' where id=4; -update noar ti set v1='R92NFJNZ1ZBJJ44PGPPJHP3QL89MA6GL8J4PVUIZ0QD59JSQMKF2T36UK1CKVMC41D92UJHZO9X8VDVJSV9IV790JVZRDOSDTRVN18VA2GHMMBRIJHVHH2TCQ2XX43YPY00RBNEF9XQFPFH0WPOKL01RRIIMTAN9CCOWFLHADU54HCKLIK3A8FB0M76NQFY85GOXWLENR7E4LEDI60II5ZUYYTND83IG4XCTJSRLJU6FGHB5EX10K67U6SB4LO5V5' where id=4; -update noar tt set v2='W69H8Z6VZ8LA67X1IGDGBKWET2AUH4ZO7TG0T56TA2KX0MGY7QUJCW7VO26KYI2UPHITIR62NVN68V4W3X1CQTQB9X5EVY5B8YZWZ3GGEA0EDZ8LLIFH30GA4LQRW1AVZG17M2MP49KF7CYRSZ38K97NTJWEBMQQ3H044BPR2408RASQRDKISLCLP9HI9HF3XZV8DWWUUXYKK5UVFOBPI5Q9EXOG3PG83J8T68VSEO26VMLREELCQDKUKSAQNJ76R' where id=4; -update noar ti set v2='W69H8Z6VZ8LA67X1IGDGBKWET2AUH4ZO7TG0T56TA2KX0MGY7QUJCW7VO26KYI2UPHITIR62NVN68V4W3X1CQTQB9X5EVY5B8YZWZ3GGEA0EDZ8LLIFH30GA4LQRW1AVZG17M2MP49KF7CYRSZ38K97NTJWEBMQQ3H044BPR2408RASQRDKISLCLP9HI9HF3XZV8DWWUUXYKK5UVFOBPI5Q9EXOG3PG83J8T68VSEO26VMLREELCQDKUKSAQNJ76R' where id=4; -update noar tt set v3='Y7OHOAFHJXBXCX6E68T44HCLCR708OZTWB0KVUNVHOAJBO639Q5Z9V96RCOA170Z7HYCI1HJ8A53SPTOTPZGSGS9U4HIY9R6K5Z45UGZ4RXQ61818OUPLO6BSRA0H3JW41I95GFAH1WRGT9DS96J5X9C66V4KHNO6ZRK4HLBIYCEILURCLYNRGRBJBK7CL1YYIHN2TQ9J61XEN2MMP6HCSU8VGWFYGIV5VNSCQPDRGLAD97NI08W5C3KTEZ2R1W3A' where id=4; -update noar ti set v3='Y7OHOAFHJXBXCX6E68T44HCLCR708OZTWB0KVUNVHOAJBO639Q5Z9V96RCOA170Z7HYCI1HJ8A53SPTOTPZGSGS9U4HIY9R6K5Z45UGZ4RXQ61818OUPLO6BSRA0H3JW41I95GFAH1WRGT9DS96J5X9C66V4KHNO6ZRK4HLBIYCEILURCLYNRGRBJBK7CL1YYIHN2TQ9J61XEN2MMP6HCSU8VGWFYGIV5VNSCQPDRGLAD97NI08W5C3KTEZ2R1W3A' where id=4; -update noar tt set v0='QDFMNFO3RAM2I6KVQWF13POURUFMES6N4ES0BE84AZA52D0FL2I9QFKVSESY52EB6X5MJET7IFRCVGQ1SMZROWUJL37VM8JP384MQ18BXFTN57LGARZMLIHULU3TNYCJNJDNEEQW4EYHAXR6WO3FD3I0L7O941H54P18517FB67EB21NXPTIVLZDZPM97Q6PHJ01AWUYMY6D342YLPN73LY3Y6VW6EUZKFBULZ83VFQWTDQLKFP5HNPVBHE0ZAL65' where id=5; -update noar ti set v0='QDFMNFO3RAM2I6KVQWF13POURUFMES6N4ES0BE84AZA52D0FL2I9QFKVSESY52EB6X5MJET7IFRCVGQ1SMZROWUJL37VM8JP384MQ18BXFTN57LGARZMLIHULU3TNYCJNJDNEEQW4EYHAXR6WO3FD3I0L7O941H54P18517FB67EB21NXPTIVLZDZPM97Q6PHJ01AWUYMY6D342YLPN73LY3Y6VW6EUZKFBULZ83VFQWTDQLKFP5HNPVBHE0ZAL65' where id=5; -update noar tt set v1='LS0BRZHH02R0T1AR4Z5NDJS1B8UX1ZITUJDSJBWMD0LO8SB9VG3UDIMBVEXQNIQ6OF7RWDH52SITB3RX7JPVTH00AXP9ORGVAJQKO9XVSN6NQ5AWTE0QDSU8WZHO723LF1SZEZBKO3RO2XFWPPLWO0P6JH6NMD0EGM4YJ4AVMP9L0P48OZW90QCQHM8J4V10SAXAWSVNVBBLVKO5K3BFE49MCJOZ2QJIFN7DJRXFZ7PYV1O0X0FK46216OQVPW0B6' where id=5; -update noar ti set v1='LS0BRZHH02R0T1AR4Z5NDJS1B8UX1ZITUJDSJBWMD0LO8SB9VG3UDIMBVEXQNIQ6OF7RWDH52SITB3RX7JPVTH00AXP9ORGVAJQKO9XVSN6NQ5AWTE0QDSU8WZHO723LF1SZEZBKO3RO2XFWPPLWO0P6JH6NMD0EGM4YJ4AVMP9L0P48OZW90QCQHM8J4V10SAXAWSVNVBBLVKO5K3BFE49MCJOZ2QJIFN7DJRXFZ7PYV1O0X0FK46216OQVPW0B6' where id=5; -update noar tt set v2='A4C7QHK8HMB9NSK75LAALP92FWEIU68ZB8FBWCPUXMIJQQN52MW3BQP55B878AC95ZZYJBPKKPWP1DJMTCTAD5TU4S6U1YI46VUKHZ8FNRIHJ05U3A4B4P1Z9XV6QV1KH66ITXIDK3P9DKDQEI2MB50G580JYVQL46K467K3KLIFVE4OFM2BX8JJLPPKD66J7DBUZOCWSIP5N9CV3059KG6X4L3IV3GIDDGFFRTQDDX92IS5ZTJM0HUSI3EO3XPDS' where id=5; -update noar ti set v2='A4C7QHK8HMB9NSK75LAALP92FWEIU68ZB8FBWCPUXMIJQQN52MW3BQP55B878AC95ZZYJBPKKPWP1DJMTCTAD5TU4S6U1YI46VUKHZ8FNRIHJ05U3A4B4P1Z9XV6QV1KH66ITXIDK3P9DKDQEI2MB50G580JYVQL46K467K3KLIFVE4OFM2BX8JJLPPKD66J7DBUZOCWSIP5N9CV3059KG6X4L3IV3GIDDGFFRTQDDX92IS5ZTJM0HUSI3EO3XPDS' where id=5; -update noar tt set v3='D000YBD5B7GH5C90XTPYZSPH5GTQYSXOE96NSGCARPR0TYQIVAOA84QNZF2XKNVDC8BC2EMHH8SHH0377XVAESNBDH2B2H741Y0ZWP6VVGR91F5CWTYVD1EAK6QXEHUNUKWLRVMNCMIC8E2WAVOY59ERMKZPYUN3IEFIIPTOMT1SFYM27EZLZFESH4RXDV1W3CZTP79VQVKVSZTQRSJTE03N9WV3K8X6NF409ON9IEDNHABZDJZILRC1XKLL3CRUI' where id=5; -update noar ti set v3='D000YBD5B7GH5C90XTPYZSPH5GTQYSXOE96NSGCARPR0TYQIVAOA84QNZF2XKNVDC8BC2EMHH8SHH0377XVAESNBDH2B2H741Y0ZWP6VVGR91F5CWTYVD1EAK6QXEHUNUKWLRVMNCMIC8E2WAVOY59ERMKZPYUN3IEFIIPTOMT1SFYM27EZLZFESH4RXDV1W3CZTP79VQVKVSZTQRSJTE03N9WV3K8X6NF409ON9IEDNHABZDJZILRC1XKLL3CRUI' where id=5; -update noar tt set v0='XK4GTRA9D3OXXOTDRAOW18R4H6KFN8YQ6XI8K8B14UR3H5XOQTB3KP88NTVR33BE3EQFO4G9YXDD1BGV038EISPM8QZUU523UK2JFBU368LL68YZIAONYPTV0X6FF634FOOY9OJY5HR5PVUXUMFRGBGAJE162SF4M5275AF7AZUL57LMS3KPNBU78J13M071SQ3LJGYQ40SK8PD7WEVPCB6B07TZG1D9J7HS1VNVRZYZN2JQVLLVUV5IISHOFRI94' where id=6; -update noar ti set v0='XK4GTRA9D3OXXOTDRAOW18R4H6KFN8YQ6XI8K8B14UR3H5XOQTB3KP88NTVR33BE3EQFO4G9YXDD1BGV038EISPM8QZUU523UK2JFBU368LL68YZIAONYPTV0X6FF634FOOY9OJY5HR5PVUXUMFRGBGAJE162SF4M5275AF7AZUL57LMS3KPNBU78J13M071SQ3LJGYQ40SK8PD7WEVPCB6B07TZG1D9J7HS1VNVRZYZN2JQVLLVUV5IISHOFRI94' where id=6; -update noar tt set v1='YAY4QHWIZ1RZFFYDNRYNUGXUAT9JT3COKZLWY9PR0G6WY8RS7G1BVX9F7FRNTYQKSOZDJ7J2N58WQEOVVH9T2P4ILBSJRZ9S02DV15C1F6TLWGT9VP8CIB8S1C6GNMR2GT7WNFICIPELB53NZVU7DXDTMDFAXTQL0JC7TG9GTUW5LE49MFZA2XEVSVLPEU6WYNGQCJ6U2MG3PRYYF3MZO59P1D6GSSWAGI2IYBMU9RXPT976F7KVW7FTQ9OHWKEKU' where id=6; -update noar ti set v1='YAY4QHWIZ1RZFFYDNRYNUGXUAT9JT3COKZLWY9PR0G6WY8RS7G1BVX9F7FRNTYQKSOZDJ7J2N58WQEOVVH9T2P4ILBSJRZ9S02DV15C1F6TLWGT9VP8CIB8S1C6GNMR2GT7WNFICIPELB53NZVU7DXDTMDFAXTQL0JC7TG9GTUW5LE49MFZA2XEVSVLPEU6WYNGQCJ6U2MG3PRYYF3MZO59P1D6GSSWAGI2IYBMU9RXPT976F7KVW7FTQ9OHWKEKU' where id=6; -update noar tt set v2='47G26074KUHEAMXLO8QFGN2ZW43TX04A7DRFPG07QO76XMS10OX8WGN7V6PVYHCGZ4CKU2LTUU3HD1KG4V8GAKV3FHV086X5IUPJNODC6SA34XZJ379Z7V89WNRJ4G3IR67DFD2237S6D3DDM6RINUBRXSXAFBYMD26K3VY2C0AGEGJWUM81D5RBFFKGX32YFK3945PDSH6NQH4K7JA213HMEXLE2N696WX92L2BB4REVUW1PDI7IYJ35BQ75VX2Z' where id=6; -update noar ti set v2='47G26074KUHEAMXLO8QFGN2ZW43TX04A7DRFPG07QO76XMS10OX8WGN7V6PVYHCGZ4CKU2LTUU3HD1KG4V8GAKV3FHV086X5IUPJNODC6SA34XZJ379Z7V89WNRJ4G3IR67DFD2237S6D3DDM6RINUBRXSXAFBYMD26K3VY2C0AGEGJWUM81D5RBFFKGX32YFK3945PDSH6NQH4K7JA213HMEXLE2N696WX92L2BB4REVUW1PDI7IYJ35BQ75VX2Z' where id=6; -update noar tt set v3='2LTHQTEYOWTTQFD3WBBCKUI6BPT889OLB28X79EMH2T44T0RK6KN9MAO5THOQ5J77GB1NFTILR1PFBRXG9LQYJ79CNTOFCNQF8CR0OA9C8QGAVY318BIWXEKFWOBCZMFNBDJQX1D4LBQUIBWYWLKK3XIZR6AAS413W2WVXVEL7B1MVWOC3JJPF1PL9TLLZCPNWZQU75FB45P1G8LJB4B32DUA6R45T6TXYQS4LDC189VXEPNW836QNHFGMY3S5XVE' where id=6; -update noar ti set v3='2LTHQTEYOWTTQFD3WBBCKUI6BPT889OLB28X79EMH2T44T0RK6KN9MAO5THOQ5J77GB1NFTILR1PFBRXG9LQYJ79CNTOFCNQF8CR0OA9C8QGAVY318BIWXEKFWOBCZMFNBDJQX1D4LBQUIBWYWLKK3XIZR6AAS413W2WVXVEL7B1MVWOC3JJPF1PL9TLLZCPNWZQU75FB45P1G8LJB4B32DUA6R45T6TXYQS4LDC189VXEPNW836QNHFGMY3S5XVE' where id=6; -update noar tt set v0='TE4IFEDR8PCBJIQ4XEDO9WTM46X3HNHZ8HYTB8M8QXO4XARRPPA8HT6OZENYXX59PT0L9KFSYZ2VYWH8BA3WWTBGERGEHTHVSBKD0A9LCV6JLYKFWUIACXFV43R4NKQCJ8GIFXM1LMIKMDRV7JI7HZLBMGIEZE3JUDUF2E4HO5GHDQ8FQ9LTBL3IP34CYZNPD67LEOMSIO5277H8O5HWOZ2KKBS8FJY54XXTF7L4TM810QIV35F71UJC465PAVJOW' where id=7; -update noar ti set v0='TE4IFEDR8PCBJIQ4XEDO9WTM46X3HNHZ8HYTB8M8QXO4XARRPPA8HT6OZENYXX59PT0L9KFSYZ2VYWH8BA3WWTBGERGEHTHVSBKD0A9LCV6JLYKFWUIACXFV43R4NKQCJ8GIFXM1LMIKMDRV7JI7HZLBMGIEZE3JUDUF2E4HO5GHDQ8FQ9LTBL3IP34CYZNPD67LEOMSIO5277H8O5HWOZ2KKBS8FJY54XXTF7L4TM810QIV35F71UJC465PAVJOW' where id=7; -update noar tt set v1='9GD7WFEYYHFJ1QFQ2P0ZDBFBNJDNESVVSPBXD4825WP82FQOC7TU1296G278O80IHTPGDLVAGQ1A2SP3ES25QMXE7TH73A8645QFCNBY8UQY20UJEQVM8BOSNDFB79039YQUUCLL0HMLON0GEDS5JW3FUM7FURHXLU5SCZMRLZFAGEUVLBHKJTH2UXXZ8M9YKS5LNOW93ZO2B4NSUG8U9311G2WEZUISAFITADFZP2Z85OU1XLN96DT1JFHHZ3QBK' where id=7; -update noar ti set v1='9GD7WFEYYHFJ1QFQ2P0ZDBFBNJDNESVVSPBXD4825WP82FQOC7TU1296G278O80IHTPGDLVAGQ1A2SP3ES25QMXE7TH73A8645QFCNBY8UQY20UJEQVM8BOSNDFB79039YQUUCLL0HMLON0GEDS5JW3FUM7FURHXLU5SCZMRLZFAGEUVLBHKJTH2UXXZ8M9YKS5LNOW93ZO2B4NSUG8U9311G2WEZUISAFITADFZP2Z85OU1XLN96DT1JFHHZ3QBK' where id=7; -update noar tt set v2='FCTKB4A7L70RS7CWYUONWWH1A4HCZM2QAG5E933Z4B7NTN5PAROOMZWNONTDRHK8KGIAWLY3F75IOOW1BG0BZN0E16GBO4LBRP70V8IE3TDMXS2Q7E04DSY22CKQ68WAO2YASXJPJBT09GU9KNAGUZIDHC7O2BRE7R0R9H4DLRDMCUA40FKWFFAD1DLOJ2FVSV40FB8T589C10JDG0Y5KQYPQ0QVGXS1ND7UV1GQM215LT2EWG0IWWWZZWFKXRS9T' where id=7; -update noar ti set v2='FCTKB4A7L70RS7CWYUONWWH1A4HCZM2QAG5E933Z4B7NTN5PAROOMZWNONTDRHK8KGIAWLY3F75IOOW1BG0BZN0E16GBO4LBRP70V8IE3TDMXS2Q7E04DSY22CKQ68WAO2YASXJPJBT09GU9KNAGUZIDHC7O2BRE7R0R9H4DLRDMCUA40FKWFFAD1DLOJ2FVSV40FB8T589C10JDG0Y5KQYPQ0QVGXS1ND7UV1GQM215LT2EWG0IWWWZZWFKXRS9T' where id=7; -update noar tt set v3='6UZHIQ33GCT9GQBHN7CUP24EUR3DARFIFBTVVNYQBNSBWG7Q9EKJJIEZURTAWMNUCNFACD4GUK8XXSYGQY89BYYKW0YU2W5ITCS7Y0U5F8R5D9HIAOCO07XUNERE8QHU51H313JW16N5P2ZBN2V4HUZU3TMWN8B1GATROR80BPVDBUO7NYTUO6RROEZLANH2KOBSJ6YFXYUY9N2OJY7XV97IKWSE30R4JP1DB64N8IFBTLPMVRKL8SSP2BR76P7YI' where id=7; -update noar ti set v3='6UZHIQ33GCT9GQBHN7CUP24EUR3DARFIFBTVVNYQBNSBWG7Q9EKJJIEZURTAWMNUCNFACD4GUK8XXSYGQY89BYYKW0YU2W5ITCS7Y0U5F8R5D9HIAOCO07XUNERE8QHU51H313JW16N5P2ZBN2V4HUZU3TMWN8B1GATROR80BPVDBUO7NYTUO6RROEZLANH2KOBSJ6YFXYUY9N2OJY7XV97IKWSE30R4JP1DB64N8IFBTLPMVRKL8SSP2BR76P7YI' where id=7; -update noar tt set v0='K6LV9H9QJ71XWIHWV7RBHS9QPU8GWHE64VPDXZVDJKRM13A9J1RGVHOYQU7N5T11LLSSRLZH42I0MX5R82X84N03YZ954G5T52ALJC4DOBK6TPMCJTVGWN4AFVNUO0SJ0AIROS7AWRW8JUQZNAHXVOT11RU4KHOUI43QOUOKUD5TGMH8G0I0WG778DD4CR6P4AF334TZA2C34YFD3RUC547WIWZG97TYYKYZ8R3GTG64W09VMSUT3IPKL8E0G6H2O' where id=8; -update noar ti set v0='K6LV9H9QJ71XWIHWV7RBHS9QPU8GWHE64VPDXZVDJKRM13A9J1RGVHOYQU7N5T11LLSSRLZH42I0MX5R82X84N03YZ954G5T52ALJC4DOBK6TPMCJTVGWN4AFVNUO0SJ0AIROS7AWRW8JUQZNAHXVOT11RU4KHOUI43QOUOKUD5TGMH8G0I0WG778DD4CR6P4AF334TZA2C34YFD3RUC547WIWZG97TYYKYZ8R3GTG64W09VMSUT3IPKL8E0G6H2O' where id=8; -update noar tt set v1='64ZO05KGENRZWHG1OQO4R5MHCZNZXFW89PFLX5NK19I36I2NITA2AVQN7U9YALKZRWTHCOBMHVXX8PDRXOTNXGPY0P3OYBTJEOZ48V31R22S9J9I6TE8NBHGC24GYYEWWZZMZ6RWULP1CDVPVPECAB167CYMUEH6YJ0RMLVMZXN7ZANCMIQGVC7PWZHC6VMT4GHKGSHHMBG8EMCD35UWBV7S4KT77O6DGFOAPYPZ9YNEWZQ12C63ZK1ZTWL9ATE8U' where id=8; -update noar ti set v1='64ZO05KGENRZWHG1OQO4R5MHCZNZXFW89PFLX5NK19I36I2NITA2AVQN7U9YALKZRWTHCOBMHVXX8PDRXOTNXGPY0P3OYBTJEOZ48V31R22S9J9I6TE8NBHGC24GYYEWWZZMZ6RWULP1CDVPVPECAB167CYMUEH6YJ0RMLVMZXN7ZANCMIQGVC7PWZHC6VMT4GHKGSHHMBG8EMCD35UWBV7S4KT77O6DGFOAPYPZ9YNEWZQ12C63ZK1ZTWL9ATE8U' where id=8; -update noar tt set v2='55IVFEBV3CMCPLRBP7DGB8NT5J3CF27DHP0BCDEQHLSTGL46KM4ZP5DYIIHRFL4X70Q149GU1G4VOZWCCTC3VKP0C01QQ6VOQXT4X1LDNW2CSQRBG6PT3W9P5543AXO2LKSD1S53EEK7VI6THX8T9IGHB78ORLXHTWFOF1DTQ9D5IRIE9WSZHGQ5L8Z0BF7LT9FH4963IR3MES0GSYKUO8587G1LZEFCEAM720F1JJYGQJ5EAAMRNFAZ02MBBBRSM' where id=8; -update noar ti set v2='55IVFEBV3CMCPLRBP7DGB8NT5J3CF27DHP0BCDEQHLSTGL46KM4ZP5DYIIHRFL4X70Q149GU1G4VOZWCCTC3VKP0C01QQ6VOQXT4X1LDNW2CSQRBG6PT3W9P5543AXO2LKSD1S53EEK7VI6THX8T9IGHB78ORLXHTWFOF1DTQ9D5IRIE9WSZHGQ5L8Z0BF7LT9FH4963IR3MES0GSYKUO8587G1LZEFCEAM720F1JJYGQJ5EAAMRNFAZ02MBBBRSM' where id=8; -update noar tt set v3='5F05P8URBS9NAYRP75YYAEB2DF6O90RYGWS7XA0ZEHWIL4GD682WOVVWELDX90JSJ2YV3RK27QBGS6LJ1V1YOBROG4K8VRCMH80C54FZR9Z78KACY5W8B8Q6M3RWKWCBIVFI19SMDQM6YEYJZM1FT6VIRET5G4V9ZD0APKCWSI3JVKP3JIRKGUZXMG60TSNSZ7N4ZXIIXKBYB4AVL1QMWRTCIIMZKFJG8VOK8ITKOGP5H7IM2A31OHR60KMI26DA5' where id=8; -update noar ti set v3='5F05P8URBS9NAYRP75YYAEB2DF6O90RYGWS7XA0ZEHWIL4GD682WOVVWELDX90JSJ2YV3RK27QBGS6LJ1V1YOBROG4K8VRCMH80C54FZR9Z78KACY5W8B8Q6M3RWKWCBIVFI19SMDQM6YEYJZM1FT6VIRET5G4V9ZD0APKCWSI3JVKP3JIRKGUZXMG60TSNSZ7N4ZXIIXKBYB4AVL1QMWRTCIIMZKFJG8VOK8ITKOGP5H7IM2A31OHR60KMI26DA5' where id=8; -update noar tt set v0='8V6OS9RK6FCACS7MT1RL28SHETV1SDW2DC3SSHDZEU38FQTM0LOUX2EU1JPKIC6S7KZ3WQHR9G8REUSHRI2KY09J3JKC2SHMCZMR7FRSWDP7KZ7PNQ93VQUUX75VYFQ8NZYJOOEQ6PFCU0J7IW0BFPG777U0S0DJPD1V4X7C0M9EOLP9CCP5K4N9QNXLGVELV9LV2TGMI37JJCQC44G2CV64H7WSH6PAEQ4LIYJKL8UYLN9I3HU85JPMQH8KXDGJG' where id=9; -update noar ti set v0='8V6OS9RK6FCACS7MT1RL28SHETV1SDW2DC3SSHDZEU38FQTM0LOUX2EU1JPKIC6S7KZ3WQHR9G8REUSHRI2KY09J3JKC2SHMCZMR7FRSWDP7KZ7PNQ93VQUUX75VYFQ8NZYJOOEQ6PFCU0J7IW0BFPG777U0S0DJPD1V4X7C0M9EOLP9CCP5K4N9QNXLGVELV9LV2TGMI37JJCQC44G2CV64H7WSH6PAEQ4LIYJKL8UYLN9I3HU85JPMQH8KXDGJG' where id=9; -update noar tt set v1='KWRON81VJ4JE8B1OQZL08PJU844NBG4WJ2O1YIOOL7HTKFIG82U5GIY18HOIQXXNL6NAEUCME29M0KUT9RLXMHJDQ7J8FRPNV862J56815VRJLLP4ZG9AV3WNRDSMNVNQ4YK0VIXP76KSY43OI08U5K1T0RV2HPFGE2NXC2O3YPRBBQJR55LHU9TD34UWBMYKKYVV81ROHMHKYCZLZLMFK54B6XGZ5AYD0SC185QCCSGN9IDMJYL6KQELJBF1EY5H' where id=9; -update noar ti set v1='KWRON81VJ4JE8B1OQZL08PJU844NBG4WJ2O1YIOOL7HTKFIG82U5GIY18HOIQXXNL6NAEUCME29M0KUT9RLXMHJDQ7J8FRPNV862J56815VRJLLP4ZG9AV3WNRDSMNVNQ4YK0VIXP76KSY43OI08U5K1T0RV2HPFGE2NXC2O3YPRBBQJR55LHU9TD34UWBMYKKYVV81ROHMHKYCZLZLMFK54B6XGZ5AYD0SC185QCCSGN9IDMJYL6KQELJBF1EY5H' where id=9; -update noar tt set v2='8RUNX4TUNHBV7J7WBPXMC1CFQHZXJ9XSIG6DVRX6V2VO5UN7IGPIGTIJ8U879ZRX4ES3QT0F4272DUY8AK7HNDMJC8630X00T5JX4NJYTPVJTI43N8GJWAZSSMYZZY5DSPQX0RPA2RBA453WZ234T4RDLJRCEE0S4A2PWAW5468P56G0GQKVD7SSLAIAG8AFIO44V2IN1EADKA2Q5NX5JDTKNVUFWSZBNPM3NZKC6IMJJYJU4MFBPGFGIK58AVUPK' where id=9; -update noar ti set v2='8RUNX4TUNHBV7J7WBPXMC1CFQHZXJ9XSIG6DVRX6V2VO5UN7IGPIGTIJ8U879ZRX4ES3QT0F4272DUY8AK7HNDMJC8630X00T5JX4NJYTPVJTI43N8GJWAZSSMYZZY5DSPQX0RPA2RBA453WZ234T4RDLJRCEE0S4A2PWAW5468P56G0GQKVD7SSLAIAG8AFIO44V2IN1EADKA2Q5NX5JDTKNVUFWSZBNPM3NZKC6IMJJYJU4MFBPGFGIK58AVUPK' where id=9; -update noar tt set v3='PZC7VKRIK8R2RQD4WGYC0ZBI53AOWTM1KG0QQ1KQWH3MM046P38W2F7YKZCDJCC3JZE7LUCFMJ1ZXSYLI0KUN7V4OTHB2PWHB6S2RJHY3S7LEZ1TA4O3R93HF351OPLNKCDNX3XL7JJI341TUNOVH0YTZ7WN9Z7HUTQ9N030AMLSL081NMYD8HRMJCAQJB6XXYR7R9XBN6SJ8VC9NRRWQQ49H62E1X71QSDRO47JUT9FS7CCWB1RMUPFMW52VPAQ1' where id=9; -update noar ti set v3='PZC7VKRIK8R2RQD4WGYC0ZBI53AOWTM1KG0QQ1KQWH3MM046P38W2F7YKZCDJCC3JZE7LUCFMJ1ZXSYLI0KUN7V4OTHB2PWHB6S2RJHY3S7LEZ1TA4O3R93HF351OPLNKCDNX3XL7JJI341TUNOVH0YTZ7WN9Z7HUTQ9N030AMLSL081NMYD8HRMJCAQJB6XXYR7R9XBN6SJ8VC9NRRWQQ49H62E1X71QSDRO47JUT9FS7CCWB1RMUPFMW52VPAQ1' where id=9; -update noar tt set v0='TILB2FVJ9E89CM9EMNGMKAG05LA9B6JBOWM4CT7UAE5DY53HXMVGJFC75Z2NZFW1YZZZIB8YTTBUBY0O5JKL5XH3WN8KAB6844VRMKYA5OC1X9YD4X3UTYZ01YPK3YF5LK977KZ6X5TBF5X2QVVZPY3KDQ44DFM5POB3EJHM5B5CV42LML5S04XB6YIB3H9NQDJIXAXS58SK5NHQUZR4S8EFHOEV96D5UKII9P8PQL1JGP15KTT70XSQEDJJ4JNH6' where id=10; -update noar ti set v0='TILB2FVJ9E89CM9EMNGMKAG05LA9B6JBOWM4CT7UAE5DY53HXMVGJFC75Z2NZFW1YZZZIB8YTTBUBY0O5JKL5XH3WN8KAB6844VRMKYA5OC1X9YD4X3UTYZ01YPK3YF5LK977KZ6X5TBF5X2QVVZPY3KDQ44DFM5POB3EJHM5B5CV42LML5S04XB6YIB3H9NQDJIXAXS58SK5NHQUZR4S8EFHOEV96D5UKII9P8PQL1JGP15KTT70XSQEDJJ4JNH6' where id=10; -update noar tt set v1='H7RDRMIRV69WXYS228RT55O7FHO1JN5VRR8S58RO6IBJE7HG7JQ7I7CBLWWZD08J6BK5EEKGNZVTXIZ3U326GBL3TWGWL6PMEQLM38KDMG702CV3CBH130GH11RG7WJE7PDD0RUICAQS801CLCJWAJFFDTMFTQCP4WN56Z5ZTXBIDDGT8YW09CHMTYPR1NOXWG9BW3052F1EM3QKBZ9A92ZUB991L1LOH7FM7QSFPMW7UO6DRYJG5K5V1XTPC9T88' where id=10; -update noar ti set v1='H7RDRMIRV69WXYS228RT55O7FHO1JN5VRR8S58RO6IBJE7HG7JQ7I7CBLWWZD08J6BK5EEKGNZVTXIZ3U326GBL3TWGWL6PMEQLM38KDMG702CV3CBH130GH11RG7WJE7PDD0RUICAQS801CLCJWAJFFDTMFTQCP4WN56Z5ZTXBIDDGT8YW09CHMTYPR1NOXWG9BW3052F1EM3QKBZ9A92ZUB991L1LOH7FM7QSFPMW7UO6DRYJG5K5V1XTPC9T88' where id=10; -update noar tt set v2='VPURGZP03AYF64VCYB79C2MJGMOW3LOF4D9U645M5CFFOPF2T5BZIXNLCAHLVOAC27N60G672FR4GPH8I3GRSDXYEIYJIKA2FDVGLZ434NT7F7C91PM9RV0X8PETPF0JTWYOJHD3VO1FJFCBT8AE60CS2GNUKZ04EAH524TMI3L6IGUYKJUTFBVI8F4KDEVKJPOFP175VF1MCQRBHYK9WP17LDWO1D3GDYIOIIJZFTISH65020Q1LMHXUT6K53C9P' where id=10; -update noar ti set v2='VPURGZP03AYF64VCYB79C2MJGMOW3LOF4D9U645M5CFFOPF2T5BZIXNLCAHLVOAC27N60G672FR4GPH8I3GRSDXYEIYJIKA2FDVGLZ434NT7F7C91PM9RV0X8PETPF0JTWYOJHD3VO1FJFCBT8AE60CS2GNUKZ04EAH524TMI3L6IGUYKJUTFBVI8F4KDEVKJPOFP175VF1MCQRBHYK9WP17LDWO1D3GDYIOIIJZFTISH65020Q1LMHXUT6K53C9P' where id=10; -update noar tt set v3='ERAEHB3K6FHNAM4V65KY2TOFFLTG8T6R7A9C3QEFSO63HU8RZ14GG2VPDA37HXNNKM6SUK7A3E6N5ZV58PJCSJO5XLRXDEUSMGFAU9ZWYZHQO74M9EX7GDBVUAI455ATIVE1C2OVDOXQBUFBMAOCFZOMIF4HLJI06FADRN9ESXB8HIAL285Y3W1SLSEH9I0J53MNRHM46O2S4HV9YI0UN9T8KI2CYQLKBMFIZWDF0AQLWDCZ6BWKVN0F9N5X2T07I' where id=10; -update noar ti set v3='ERAEHB3K6FHNAM4V65KY2TOFFLTG8T6R7A9C3QEFSO63HU8RZ14GG2VPDA37HXNNKM6SUK7A3E6N5ZV58PJCSJO5XLRXDEUSMGFAU9ZWYZHQO74M9EX7GDBVUAI455ATIVE1C2OVDOXQBUFBMAOCFZOMIF4HLJI06FADRN9ESXB8HIAL285Y3W1SLSEH9I0J53MNRHM46O2S4HV9YI0UN9T8KI2CYQLKBMFIZWDF0AQLWDCZ6BWKVN0F9N5X2T07I' where id=10; -update noar tt set v0='STFEB339U1N7HFMLLPQN3OP5Z3MJE4ACO02GT0YVVIPN2GH1TZHBUPJBQHHWXZ4WCXDVGUEH8MJWTS2FKBKYHN10K2ZHBYX1MFEOXGNHNCW951QCV7RSLN2CSHQU8PVNI4R68LMRY8RS0FIAHTTGU3EDM034IM7DIS310E6C0CB64RT3E1EQRPFJBI1M5W4D3WE39RLPLESPDA4XNCRIHAYPNH9SM2PB08L1VF4QVJFFR4J1JB91KR7P4Q8RGF5JP' where id=11; -update noar ti set v0='STFEB339U1N7HFMLLPQN3OP5Z3MJE4ACO02GT0YVVIPN2GH1TZHBUPJBQHHWXZ4WCXDVGUEH8MJWTS2FKBKYHN10K2ZHBYX1MFEOXGNHNCW951QCV7RSLN2CSHQU8PVNI4R68LMRY8RS0FIAHTTGU3EDM034IM7DIS310E6C0CB64RT3E1EQRPFJBI1M5W4D3WE39RLPLESPDA4XNCRIHAYPNH9SM2PB08L1VF4QVJFFR4J1JB91KR7P4Q8RGF5JP' where id=11; -update noar tt set v1='JZU6AZDFHLO4IVEZU2VKR8SQGEKTOVBWAVCFIC6O14RAB74WD4SY503KM4GH9R035XFUHB8T6I0SS2YNPG8ZZ1H5QFWOIREHA9NCLOJCESBNIWOJ3NFVF4OGL2Y02ELEA4WNH6G01GATZLEKCJH00RJKZRAGXEIW70CC2I80L3D0RSB5EB5FJEDZD6W71P7ALCWM8S32SGAMH2UQTUJBHWS0CQXEXKW4CWJ9A1XNMN6MNUINBW5OABATA016JTWWI' where id=11; -update noar ti set v1='JZU6AZDFHLO4IVEZU2VKR8SQGEKTOVBWAVCFIC6O14RAB74WD4SY503KM4GH9R035XFUHB8T6I0SS2YNPG8ZZ1H5QFWOIREHA9NCLOJCESBNIWOJ3NFVF4OGL2Y02ELEA4WNH6G01GATZLEKCJH00RJKZRAGXEIW70CC2I80L3D0RSB5EB5FJEDZD6W71P7ALCWM8S32SGAMH2UQTUJBHWS0CQXEXKW4CWJ9A1XNMN6MNUINBW5OABATA016JTWWI' where id=11; -update noar tt set v2='UM3E5UG6NTBWZI5111D0TVLF4RPDLJQQPQFX2KOCNYIH7KDSH2ZRU3KZOWLMX8GT7795548PFBPXAL4T072X7667ZVMKRQVIXN8IPBNM749OKXL3PPTWQIN9EZ2O1NOZOPG1GC7NI57X8RP0A6RU0ZJ5PCI99E0SYA5HH3RGFRJBCVU875WQQOKLGXJ3A63QX9GVC3BOLXQFNZSRNXYNZO3W0P991R0XPUHO6FV22935OM1N1F6PBHYSDN522COV6' where id=11; -update noar ti set v2='UM3E5UG6NTBWZI5111D0TVLF4RPDLJQQPQFX2KOCNYIH7KDSH2ZRU3KZOWLMX8GT7795548PFBPXAL4T072X7667ZVMKRQVIXN8IPBNM749OKXL3PPTWQIN9EZ2O1NOZOPG1GC7NI57X8RP0A6RU0ZJ5PCI99E0SYA5HH3RGFRJBCVU875WQQOKLGXJ3A63QX9GVC3BOLXQFNZSRNXYNZO3W0P991R0XPUHO6FV22935OM1N1F6PBHYSDN522COV6' where id=11; -update noar tt set v3='RNO6912YC082O2MX8E0F1B3S6A4ZSOWV44SUWB9KR6SO5WVUK42OAAS7CFYWAJ8E5CTHXFGS8XGDBFRRQ21B8IZHJ1RQNDO7537BWAL1ZZ9J4A90UNYGZYCX8RQLHQ6OERYZ2P2AMQME2ICDZWP7OZ0SU49A0DJ39T7FS16B7H60VX5S7G54BUZY52FZM107NPTT87F4D6NRNPZHZAH14AK3EZVTKVHGBCMFZKOKB66BGMZFAQEWM433QYHRUMFSG' where id=11; -update noar ti set v3='RNO6912YC082O2MX8E0F1B3S6A4ZSOWV44SUWB9KR6SO5WVUK42OAAS7CFYWAJ8E5CTHXFGS8XGDBFRRQ21B8IZHJ1RQNDO7537BWAL1ZZ9J4A90UNYGZYCX8RQLHQ6OERYZ2P2AMQME2ICDZWP7OZ0SU49A0DJ39T7FS16B7H60VX5S7G54BUZY52FZM107NPTT87F4D6NRNPZHZAH14AK3EZVTKVHGBCMFZKOKB66BGMZFAQEWM433QYHRUMFSG' where id=11; -update noar tt set v0='ZBTYZZQ6N1D6SYSGMVI9OXXHTGB47K1AE70DXFCZ08NSOR5SQXS31Y16Q1BCHBMPUMOOCUXBPUDXRWVLLHB6X4ATXWP7HCUFF6I68KC34ZI7RIR0QRT5RJ79709QX4GGY5D8QCDJ5MSS6JDP1WO0VFP14P9WDS59ONVEBPJ58VD6A168LZCV9FES66NQ9YUDTGP9L88VHP807A15JOXY1XAG2FBEJX6QVHKCFNOK5FCV24ZWRN8TJIPU6SS5OAAHP' where id=12; -update noar ti set v0='ZBTYZZQ6N1D6SYSGMVI9OXXHTGB47K1AE70DXFCZ08NSOR5SQXS31Y16Q1BCHBMPUMOOCUXBPUDXRWVLLHB6X4ATXWP7HCUFF6I68KC34ZI7RIR0QRT5RJ79709QX4GGY5D8QCDJ5MSS6JDP1WO0VFP14P9WDS59ONVEBPJ58VD6A168LZCV9FES66NQ9YUDTGP9L88VHP807A15JOXY1XAG2FBEJX6QVHKCFNOK5FCV24ZWRN8TJIPU6SS5OAAHP' where id=12; -update noar tt set v1='P2QESD5NKTQKDUSGDDL2G74XRQW8UB1VUWTFKF3W3Z5W5U5FEZ51IHO1D39YBZK479DDSYE1E6PV9A70WDI9HHWWZ4E41Z7CY896TOSCFCW3LW3BHLY4OSBEYDCIV9XHLNQMUWKNJZHAXM3K72LPLGBTOC4IKGZSMRC8S53DH1ZHVR45QOP8OPMM3T8KXDQEPWX6VJXRMSXE81J00AQ8P31Q7BHE60MX2GRFL7F137D22IEHH5W0559W0FYKL9HHQ' where id=12; -update noar ti set v1='P2QESD5NKTQKDUSGDDL2G74XRQW8UB1VUWTFKF3W3Z5W5U5FEZ51IHO1D39YBZK479DDSYE1E6PV9A70WDI9HHWWZ4E41Z7CY896TOSCFCW3LW3BHLY4OSBEYDCIV9XHLNQMUWKNJZHAXM3K72LPLGBTOC4IKGZSMRC8S53DH1ZHVR45QOP8OPMM3T8KXDQEPWX6VJXRMSXE81J00AQ8P31Q7BHE60MX2GRFL7F137D22IEHH5W0559W0FYKL9HHQ' where id=12; -update noar tt set v2='D8ISEBZFRCZHU6FRW6QUKHYPOHL5RNMIXP4CGNSIF1LKQP03YC7EY9Y75K5OLVRTJPZXOF6WWG8A66E6JR6PSTW5K9SDA5TQH7I5A9B8EQNVWD77C1L5Y4ZL26QY6W7G31T7FKMEJCPN6ZFM2D336D6NGL7SK7ODP891GYPZGKGITMGTPT1HZN9DDX7OJEOONH6SB2R1SW01MATJ80QDHO9X7MMWI2YA3LHA29DZTOS5BZU20CHSEKRFSWBXI78OL' where id=12; -update noar ti set v2='D8ISEBZFRCZHU6FRW6QUKHYPOHL5RNMIXP4CGNSIF1LKQP03YC7EY9Y75K5OLVRTJPZXOF6WWG8A66E6JR6PSTW5K9SDA5TQH7I5A9B8EQNVWD77C1L5Y4ZL26QY6W7G31T7FKMEJCPN6ZFM2D336D6NGL7SK7ODP891GYPZGKGITMGTPT1HZN9DDX7OJEOONH6SB2R1SW01MATJ80QDHO9X7MMWI2YA3LHA29DZTOS5BZU20CHSEKRFSWBXI78OL' where id=12; -update noar tt set v3='QZZGM5VHOHC036K76P4O6CVQBE680S04LQ5M4QA1G6941S2B5IP3SQFCUJ43ZHEF6W34P0TFB9X4BMI2I5FENA6B7VZ0MKPDT62E4L35WWG0F4VO5TFGYSXBP2Y0ZCWUYR914RUAN1882LR6D2U1N2LQDPOM0UBTVV1RGBSS9AH4Z79IBYZUBTGVSUU84CISE06ANE0WP9HAAJN62GLP61H7FW17EYQP41E52PU0MTET8EPKFP6NGW26LKICF0YT3' where id=12; -update noar ti set v3='QZZGM5VHOHC036K76P4O6CVQBE680S04LQ5M4QA1G6941S2B5IP3SQFCUJ43ZHEF6W34P0TFB9X4BMI2I5FENA6B7VZ0MKPDT62E4L35WWG0F4VO5TFGYSXBP2Y0ZCWUYR914RUAN1882LR6D2U1N2LQDPOM0UBTVV1RGBSS9AH4Z79IBYZUBTGVSUU84CISE06ANE0WP9HAAJN62GLP61H7FW17EYQP41E52PU0MTET8EPKFP6NGW26LKICF0YT3' where id=12; -update noar tt set v0='CBZ1HGVRQXVSPJXLTAEIOTXNVAR709NC14JTZADASW9BUUEA3U79Z39IM2OP487JCUO5IM332BWRREU5HLK5ZSWA87GOTJUYWX6ATF50J2NKC5C16XRT4TYDHWJZPPGK9BW6EQ9OY2S7TC7UF5R1SJ56AWA60MTDY5X5L4JSC5NV5X9ZV4UJID4MNABB7UNCSRGVNUO0UACKSV4MQ4NWRZ6XB0OKM9FWFA247E1PYPDVI77OUDQVZIKOIH45IHJWQ' where id=13; -update noar ti set v0='CBZ1HGVRQXVSPJXLTAEIOTXNVAR709NC14JTZADASW9BUUEA3U79Z39IM2OP487JCUO5IM332BWRREU5HLK5ZSWA87GOTJUYWX6ATF50J2NKC5C16XRT4TYDHWJZPPGK9BW6EQ9OY2S7TC7UF5R1SJ56AWA60MTDY5X5L4JSC5NV5X9ZV4UJID4MNABB7UNCSRGVNUO0UACKSV4MQ4NWRZ6XB0OKM9FWFA247E1PYPDVI77OUDQVZIKOIH45IHJWQ' where id=13; -update noar tt set v1='610HGZ8VZ9FP7L3LMRIJOO1RZHRF0HTLRPYXWIU1C3TBCA8EWD0O80JTGXSUDLD2FNXI38W7D7VJ4NOFYJEJYLH1SZJ0NR4TXJ7RJFHKB9G9HLKN5C0GEDMYGYKLHNXI78ORWX5NI3QHCL5TIV3YRSJZVG06FQGF51VT8CENST8X4K4H2Q41I3LQ7JYKT0MKP3DY8U1289AQF6PY4XD6PJHDQEWV1DEUL0PA5BU0MKXVQVQQG8PC1MW19Z7L5388E' where id=13; -update noar ti set v1='610HGZ8VZ9FP7L3LMRIJOO1RZHRF0HTLRPYXWIU1C3TBCA8EWD0O80JTGXSUDLD2FNXI38W7D7VJ4NOFYJEJYLH1SZJ0NR4TXJ7RJFHKB9G9HLKN5C0GEDMYGYKLHNXI78ORWX5NI3QHCL5TIV3YRSJZVG06FQGF51VT8CENST8X4K4H2Q41I3LQ7JYKT0MKP3DY8U1289AQF6PY4XD6PJHDQEWV1DEUL0PA5BU0MKXVQVQQG8PC1MW19Z7L5388E' where id=13; -update noar tt set v2='BKMBYMGDF76K3BIJM0OD0QUGMIVKGDUPHXQ9YJ29Z924MAI7QFI534ZLNOFJ2RFUXM5S6YZ4FEDRH48NHSH3DTHWHX31TFDAI6UT4VT569AGI3VNXQE2J0XKZ6T2QR42TQVQ963PYD9J12D0PQ5WDODAIGDKSC1UKMHUBUA7BFK11U0MV65DQYBLPBP32VZN47WRWKZ3JKWDLB0QAZP8RNOMUP8FXS90DDCF49S154G7HMR312I2HWMY3KQDO7MZE' where id=13; -update noar ti set v2='BKMBYMGDF76K3BIJM0OD0QUGMIVKGDUPHXQ9YJ29Z924MAI7QFI534ZLNOFJ2RFUXM5S6YZ4FEDRH48NHSH3DTHWHX31TFDAI6UT4VT569AGI3VNXQE2J0XKZ6T2QR42TQVQ963PYD9J12D0PQ5WDODAIGDKSC1UKMHUBUA7BFK11U0MV65DQYBLPBP32VZN47WRWKZ3JKWDLB0QAZP8RNOMUP8FXS90DDCF49S154G7HMR312I2HWMY3KQDO7MZE' where id=13; -update noar tt set v3='EMN0BPRMR96LBBCRB2HEVSN9Q9856EJD6J6633XDMUX754HXGX4X818JUJS1MLN7XPERDZG7L7G5MG6H7VPVOY34C7JSELCYLDSWUC69LX56JADK6TPXGGVHY7RSBV7E1BFGNC4WMS0FX5PXRI8O4FSEVTONLIPL6A2ZWY3SA96PPCPP09QN8SJF42DJZQ3TRLGEI1VXCJ8GYIP8WFQRQ7KJUEOMVDKJQTM6S1LB6UC07X3K1Q46BL5FZ6ZQC8ULB' where id=13; -update noar ti set v3='EMN0BPRMR96LBBCRB2HEVSN9Q9856EJD6J6633XDMUX754HXGX4X818JUJS1MLN7XPERDZG7L7G5MG6H7VPVOY34C7JSELCYLDSWUC69LX56JADK6TPXGGVHY7RSBV7E1BFGNC4WMS0FX5PXRI8O4FSEVTONLIPL6A2ZWY3SA96PPCPP09QN8SJF42DJZQ3TRLGEI1VXCJ8GYIP8WFQRQ7KJUEOMVDKJQTM6S1LB6UC07X3K1Q46BL5FZ6ZQC8ULB' where id=13; -update noar tt set v0='2PNWKYJ0IL35C8Y0M5151XVQ63SJVXGWI2D7M2ZIICHF5P40JP9OHT4IZJSLTIFPKD8UJJEZNHATHFYOG171NHM8DEDFHPUA0XXHQM2JG1RCGWYL7IXRFNLKTGGKJDBCAJMIP6A04GU0MVOSZ9D0T34K4P11ATH0J2CHKNYFQ5ZXN4C839MYDMY98GTNI52DWA1FU4MSHKC0EL5EJBK7MEKH1FNGKRWTLDVY82BINBGNO65FH7J6Q3TJ4X5CHTW0F' where id=14; -update noar ti set v0='2PNWKYJ0IL35C8Y0M5151XVQ63SJVXGWI2D7M2ZIICHF5P40JP9OHT4IZJSLTIFPKD8UJJEZNHATHFYOG171NHM8DEDFHPUA0XXHQM2JG1RCGWYL7IXRFNLKTGGKJDBCAJMIP6A04GU0MVOSZ9D0T34K4P11ATH0J2CHKNYFQ5ZXN4C839MYDMY98GTNI52DWA1FU4MSHKC0EL5EJBK7MEKH1FNGKRWTLDVY82BINBGNO65FH7J6Q3TJ4X5CHTW0F' where id=14; -update noar tt set v1='ETS35EEO8ERWB9ATR3OL6LZ7LZKSEM4SGCFC6IQ5DRYZXLRZNHI8HYUUTC3EIO239AOS9RTBXGUJK54E6UDON5WFCYOHYX5S4263ZOAGBBGDKNAAJWWH1QWNODYBBRW232HJU5UX6442E0K9X027FUFD23U9I3GXTPBWPDF60CA23ZTQ9A1WIK5W47DHESV73DHJTUOBWPVN3JTZ5VA1X4KOET333Q5XOSPE9NZTIVXUL7HR0HBR7P6BG20G4K7NL' where id=14; -update noar ti set v1='ETS35EEO8ERWB9ATR3OL6LZ7LZKSEM4SGCFC6IQ5DRYZXLRZNHI8HYUUTC3EIO239AOS9RTBXGUJK54E6UDON5WFCYOHYX5S4263ZOAGBBGDKNAAJWWH1QWNODYBBRW232HJU5UX6442E0K9X027FUFD23U9I3GXTPBWPDF60CA23ZTQ9A1WIK5W47DHESV73DHJTUOBWPVN3JTZ5VA1X4KOET333Q5XOSPE9NZTIVXUL7HR0HBR7P6BG20G4K7NL' where id=14; -update noar tt set v2='13QZSK0KQFU1YD4VIJQJNQYS29TI6FPIP6VWPND2YN4NJ6VDTUJWAQXAI7GYM8ZWZ81976RRWXBZJH5KGA0AGGI8DRAGC7HB7Q2FVUE4TK9OWRZ2M5IWH3ZIQBVXU17PTVHWB4ORY424H104NAKYJ4XAAI93VHHF07F4SBBRIRQTYOAL0YKVOX9JUKMNG61A6CO3C66G8HJG2A83VCQ36GYUAMKFOCSGCF6PF5DCJR08PC4AFC781E0MYBKZT3PD3' where id=14; -update noar ti set v2='13QZSK0KQFU1YD4VIJQJNQYS29TI6FPIP6VWPND2YN4NJ6VDTUJWAQXAI7GYM8ZWZ81976RRWXBZJH5KGA0AGGI8DRAGC7HB7Q2FVUE4TK9OWRZ2M5IWH3ZIQBVXU17PTVHWB4ORY424H104NAKYJ4XAAI93VHHF07F4SBBRIRQTYOAL0YKVOX9JUKMNG61A6CO3C66G8HJG2A83VCQ36GYUAMKFOCSGCF6PF5DCJR08PC4AFC781E0MYBKZT3PD3' where id=14; -update noar tt set v3='INTZ7B0FKLX6FP8USN5MSOQ3DRQQGPBAYY3C3VVSW67D9X5WZPQ2H4KTQQSPWH9DJYJ1AACYL53112HJPK9KFWEVAZBCZPZU24G018YCILZOAZSBN7X9VYOXP572924AB2FGITSWCGRN5LWRZ173HVE1GSY2TKK8CANS1752PGHZLA0XQXJ4N3NE0W5W8XYARFSPI6LAPLNF143N8ZOFOLRBVKA0BQMFKEBF4AHT7AGNB1O556D5Y906Y8WA50NA3' where id=14; -update noar ti set v3='INTZ7B0FKLX6FP8USN5MSOQ3DRQQGPBAYY3C3VVSW67D9X5WZPQ2H4KTQQSPWH9DJYJ1AACYL53112HJPK9KFWEVAZBCZPZU24G018YCILZOAZSBN7X9VYOXP572924AB2FGITSWCGRN5LWRZ173HVE1GSY2TKK8CANS1752PGHZLA0XQXJ4N3NE0W5W8XYARFSPI6LAPLNF143N8ZOFOLRBVKA0BQMFKEBF4AHT7AGNB1O556D5Y906Y8WA50NA3' where id=14; -update noar tt set v0='OMUCFK4FET86VL9K4Z3D7P92NDDEMMTWUY80OHR2DU2S77LUDZ15Y0J4AUDLT0XYSJBSG4LHOSBHXCQPQLRZ0XLOUC7C3KTOC6PPDFO5RHH41TZ2BV6ZPS1FXJAEGNSDQ9E08SCM0A09QJC445OVSQDR7AM5GV7RYRWH37HL3W8V3WDJ62N4IQHKH08TXE5LQWR5Y2GFQTT5320KSEER3IBVFS4FUCD6WX3GG40T4JCCDZ659FGJA0LM7PCMP3KJV' where id=15; -update noar ti set v0='OMUCFK4FET86VL9K4Z3D7P92NDDEMMTWUY80OHR2DU2S77LUDZ15Y0J4AUDLT0XYSJBSG4LHOSBHXCQPQLRZ0XLOUC7C3KTOC6PPDFO5RHH41TZ2BV6ZPS1FXJAEGNSDQ9E08SCM0A09QJC445OVSQDR7AM5GV7RYRWH37HL3W8V3WDJ62N4IQHKH08TXE5LQWR5Y2GFQTT5320KSEER3IBVFS4FUCD6WX3GG40T4JCCDZ659FGJA0LM7PCMP3KJV' where id=15; -update noar tt set v1='YLNX5N8CQ4AY5YU90RUT1UELWH2NVKI955NUJ4PD1ZPB25NY4VB5B1BV7KE490YA5CITNJR6RIW58EEF59HVJRN2H8UEHELYTID6QUA7YYQZS0S3L5RSRDV0WIYQCKVNFMBQXXFVJB109GRIPYHRWDDJ9FJ1X8EEH7JXZXLPT0JE4PMFA5RGF9PKYR6XAP5UZ75ZKHRZZW6X1T1PLHNOSH4XISR2F2WSCJ1B1H1O373OMNNK2V8P3APCT9Q6A15LC' where id=15; -update noar ti set v1='YLNX5N8CQ4AY5YU90RUT1UELWH2NVKI955NUJ4PD1ZPB25NY4VB5B1BV7KE490YA5CITNJR6RIW58EEF59HVJRN2H8UEHELYTID6QUA7YYQZS0S3L5RSRDV0WIYQCKVNFMBQXXFVJB109GRIPYHRWDDJ9FJ1X8EEH7JXZXLPT0JE4PMFA5RGF9PKYR6XAP5UZ75ZKHRZZW6X1T1PLHNOSH4XISR2F2WSCJ1B1H1O373OMNNK2V8P3APCT9Q6A15LC' where id=15; -update noar tt set v2='UUN41LU3WL80F1PGPS1SIQ6PHIXBUCZCHAFOQVWVCOXWJVYEO1JU9LU80HQWAN8V358AJN9JL2LR0NSKKD741ANQKUYG3S82SM7POWXHHPU7BA60CK6PCPQ4C6HF44I9UTAVLWU56XZPJK05ENY9K6ICTF3YXPV1984WTPRP3AD436MPE1KXIXT9U92FVMJ6U3QMSKGNSZVXELP849ZF5SA5EVS0729282903L0APHAOSORFTR6TUW0L7DI63TTC5' where id=15; -update noar ti set v2='UUN41LU3WL80F1PGPS1SIQ6PHIXBUCZCHAFOQVWVCOXWJVYEO1JU9LU80HQWAN8V358AJN9JL2LR0NSKKD741ANQKUYG3S82SM7POWXHHPU7BA60CK6PCPQ4C6HF44I9UTAVLWU56XZPJK05ENY9K6ICTF3YXPV1984WTPRP3AD436MPE1KXIXT9U92FVMJ6U3QMSKGNSZVXELP849ZF5SA5EVS0729282903L0APHAOSORFTR6TUW0L7DI63TTC5' where id=15; -update noar tt set v3='CRJ95A8151BNBTWQPQEQ0UX3WMYZHTS5I1PMZ0RD5YQDYVXF8K0NN9YF2CEK20EE2N9DG1MZSQDVHLN9R51SHCI7DQCBXRQJ61CNXD3KYDDKOE0RSGWUHCOB4DAC0VF8OBOZXTYDCQNAWBIY4ZQXEWBJPYEUH8ZMS2J4BAES75UPGWD576U0BJZWIS6MQOFNFQATV61O9FKTJ2CRDASMPFLTJSV3YCN6KWTBW8VMRENA3CEZIQGEWQ95R2XS8BYJL' where id=15; -update noar ti set v3='CRJ95A8151BNBTWQPQEQ0UX3WMYZHTS5I1PMZ0RD5YQDYVXF8K0NN9YF2CEK20EE2N9DG1MZSQDVHLN9R51SHCI7DQCBXRQJ61CNXD3KYDDKOE0RSGWUHCOB4DAC0VF8OBOZXTYDCQNAWBIY4ZQXEWBJPYEUH8ZMS2J4BAES75UPGWD576U0BJZWIS6MQOFNFQATV61O9FKTJ2CRDASMPFLTJSV3YCN6KWTBW8VMRENA3CEZIQGEWQ95R2XS8BYJL' where id=15; -update noar tt set v0='DY5HNMY99RL9AFP3JM9WWU1VLM3K8G9L6HNAA1F61Q6ON1XEKTCS6JVLEL5LOA0C0AZFLPP1B00JHM2HVKOFF2C8KZ63CJIP8INIXF9MYNCAKHZJ4QW46MC9HCKEEP4AKX0KF98T64A4Z5H448V5RF0QHOLA85XVC2VLTEUL4W1UJGNGQ8M9KL9HJZE3C4MW9N6IOEYBQTTKUVRLWJUFSEBKYJIUHSWTUDLOG93QEHAYOJL33LTMZ6CB56BAA4KOE' where id=16; -update noar ti set v0='DY5HNMY99RL9AFP3JM9WWU1VLM3K8G9L6HNAA1F61Q6ON1XEKTCS6JVLEL5LOA0C0AZFLPP1B00JHM2HVKOFF2C8KZ63CJIP8INIXF9MYNCAKHZJ4QW46MC9HCKEEP4AKX0KF98T64A4Z5H448V5RF0QHOLA85XVC2VLTEUL4W1UJGNGQ8M9KL9HJZE3C4MW9N6IOEYBQTTKUVRLWJUFSEBKYJIUHSWTUDLOG93QEHAYOJL33LTMZ6CB56BAA4KOE' where id=16; -update noar tt set v1='YVIMS6MH43DTBXUPI2AM8DEDCP8OIPTWUU4EFKHW65ALSKSO4O7KOLLE6VIXG5CF17B7C7G2MF4ZMOFFEXTKKBEOHXJBIHZGTVBLCCL9NLDJB8R6KAVYUZ9LDV3XXBB8TTCXW0KSPYMT9JNFC9FS7RULWM03UQK55ABSOCA0D9ZOW967M3KFWNFOQUB8X8UTS0F6DFNJ2PWOX6S80JIG9RO8XFPRB20J07O6EW8UXX7L276SL5P1EB20BGTI44WHL' where id=16; -update noar ti set v1='YVIMS6MH43DTBXUPI2AM8DEDCP8OIPTWUU4EFKHW65ALSKSO4O7KOLLE6VIXG5CF17B7C7G2MF4ZMOFFEXTKKBEOHXJBIHZGTVBLCCL9NLDJB8R6KAVYUZ9LDV3XXBB8TTCXW0KSPYMT9JNFC9FS7RULWM03UQK55ABSOCA0D9ZOW967M3KFWNFOQUB8X8UTS0F6DFNJ2PWOX6S80JIG9RO8XFPRB20J07O6EW8UXX7L276SL5P1EB20BGTI44WHL' where id=16; -update noar tt set v2='4Z6W9NYSLKE1W93KP5IW301MDBX6XD5CJT8CZ9CEFKHH8A7KPWRME3KP58GGDHGJTI12FSVBS0YNQNU1PSDXWW8CVUJQIBTI8UQVDQF7BKAIU9QAD5PXY7IFUXRFVM4DFAIW6C83QFEEJRBTEZDZTHCJZ49AVPXS8UJ5S62AXAOOPW9FHYK2UNDNY06M0VUTFPIT8IG41B819E8TM9X8Z2UMRW2667OOXKEBGN9JVGL0MGENM4JTWLFG2OH1VUEBZ' where id=16; -update noar ti set v2='4Z6W9NYSLKE1W93KP5IW301MDBX6XD5CJT8CZ9CEFKHH8A7KPWRME3KP58GGDHGJTI12FSVBS0YNQNU1PSDXWW8CVUJQIBTI8UQVDQF7BKAIU9QAD5PXY7IFUXRFVM4DFAIW6C83QFEEJRBTEZDZTHCJZ49AVPXS8UJ5S62AXAOOPW9FHYK2UNDNY06M0VUTFPIT8IG41B819E8TM9X8Z2UMRW2667OOXKEBGN9JVGL0MGENM4JTWLFG2OH1VUEBZ' where id=16; -update noar tt set v3='6DCS6589XD15G2KDZKYUOECGWA9V71948FBVBSSH7CAY0VK5YW06NKXVCVET0ME4Z1MFSOD03N390VRBQK56EQ3JC7R5KHK1I69KNXLOVHEWFFQ98UK9AYCITUIU4SUHC9M4UN33JUSRL4GWHSIPP2U2A8GVBXBGPXARL9N8VE959SWWUOJKSESON2FHI0PXL0T1AZOW9GC60XS65KBRWDPHSJE13ZAQ71YWYUIDIT5AIGEYZD7EPA8MU0XCRE6VF' where id=16; -update noar ti set v3='6DCS6589XD15G2KDZKYUOECGWA9V71948FBVBSSH7CAY0VK5YW06NKXVCVET0ME4Z1MFSOD03N390VRBQK56EQ3JC7R5KHK1I69KNXLOVHEWFFQ98UK9AYCITUIU4SUHC9M4UN33JUSRL4GWHSIPP2U2A8GVBXBGPXARL9N8VE959SWWUOJKSESON2FHI0PXL0T1AZOW9GC60XS65KBRWDPHSJE13ZAQ71YWYUIDIT5AIGEYZD7EPA8MU0XCRE6VF' where id=16; -update noar tt set v0='1EX7JUJR8MQ6QW6ITYIBK4RS2BQI4I9FS6ZVBEACZQ853WXRDWWSG6GE3DWWU10YF7710U40XUVNW897MZV8G1EMQYX6XU7P0EPKF7ZTLO31A6XTQBVVPWCX8CZHWQCN0WOW3R5VIRM27D1GQGPSAKJYJ3YF6OQUIH3VFWUOBJHSAN019AL4RZWVIXIZUPFERNH9FUDJR42PLF2UE2FX4OFRF81YF3TJYM9I84J881KHMI3JBDPJDQ8TNBXHULHVF' where id=17; -update noar ti set v0='1EX7JUJR8MQ6QW6ITYIBK4RS2BQI4I9FS6ZVBEACZQ853WXRDWWSG6GE3DWWU10YF7710U40XUVNW897MZV8G1EMQYX6XU7P0EPKF7ZTLO31A6XTQBVVPWCX8CZHWQCN0WOW3R5VIRM27D1GQGPSAKJYJ3YF6OQUIH3VFWUOBJHSAN019AL4RZWVIXIZUPFERNH9FUDJR42PLF2UE2FX4OFRF81YF3TJYM9I84J881KHMI3JBDPJDQ8TNBXHULHVF' where id=17; -update noar tt set v1='M9XA630UPYUNXTSPY40QES8JDG4274PGCE7B1JN4YLL88GL6UCECK0V84OI8IU63Y2I4EZ16P44HHC0FJLNIOXVIOF1BEMH4DH81QS1966WQR8QESPC3FG0JYJBWLATLK5U20456YTI5N21TC27YBGBVH3LU8DADLPGLM07KLJ1DKSGUXOJXPZBNNG9LIS8AKK7D0JR3MOOWOKRN90EO7PTW8827W52T14RGMQ72XXJNFXPVIYHBQYOYDZUUC8WUM' where id=17; -update noar ti set v1='M9XA630UPYUNXTSPY40QES8JDG4274PGCE7B1JN4YLL88GL6UCECK0V84OI8IU63Y2I4EZ16P44HHC0FJLNIOXVIOF1BEMH4DH81QS1966WQR8QESPC3FG0JYJBWLATLK5U20456YTI5N21TC27YBGBVH3LU8DADLPGLM07KLJ1DKSGUXOJXPZBNNG9LIS8AKK7D0JR3MOOWOKRN90EO7PTW8827W52T14RGMQ72XXJNFXPVIYHBQYOYDZUUC8WUM' where id=17; -update noar tt set v2='IZULBI6J1M7JAAK559NKOU6YC45H51C6EOOWY0AQXGXZTX0007WVQL8LLY87PWSYVCUQXV0VCHHLCC82IATF9R9B9NKNDL633AQPSW075J2BXG65Q1JV7Q7P5YPQ6LCFWFEBFEZUC2OTARO4JBUUS1KKP6HWM89YIMU8AL236GU45P1JGQQCA6M7RXETNW5DHV4L82E4GZ4VCVY82E31BPPNZJAD1KJ1SOEQ8G1DJ45D04QKBQIJ80VPU82TS93BX' where id=17; -update noar ti set v2='IZULBI6J1M7JAAK559NKOU6YC45H51C6EOOWY0AQXGXZTX0007WVQL8LLY87PWSYVCUQXV0VCHHLCC82IATF9R9B9NKNDL633AQPSW075J2BXG65Q1JV7Q7P5YPQ6LCFWFEBFEZUC2OTARO4JBUUS1KKP6HWM89YIMU8AL236GU45P1JGQQCA6M7RXETNW5DHV4L82E4GZ4VCVY82E31BPPNZJAD1KJ1SOEQ8G1DJ45D04QKBQIJ80VPU82TS93BX' where id=17; -update noar tt set v3='QG5GTFR49E4F0LKAJ8WKFQUT7R8I2DIY7YCON9SPKW19YNPIHGYFGEYLQTVA8PIIRY3ZEQ80YY44ZZ1GD1CYQLJBV6SVFQBHANBPKX2RQZ8JLTK3UT6O3K527SVI036ENJ1UWFMNZW9DM6QC3MB4ZWMS8PA1K5B2Y55T30VPTWNWZAJICX9Z1TAG5400YH2TGW2Q9P1T8XON02UES0E7FEBWZ5XF5A6ME7B2SMLQWY4KO55LGEW4D25QF0RUYFUMB' where id=17; -update noar ti set v3='QG5GTFR49E4F0LKAJ8WKFQUT7R8I2DIY7YCON9SPKW19YNPIHGYFGEYLQTVA8PIIRY3ZEQ80YY44ZZ1GD1CYQLJBV6SVFQBHANBPKX2RQZ8JLTK3UT6O3K527SVI036ENJ1UWFMNZW9DM6QC3MB4ZWMS8PA1K5B2Y55T30VPTWNWZAJICX9Z1TAG5400YH2TGW2Q9P1T8XON02UES0E7FEBWZ5XF5A6ME7B2SMLQWY4KO55LGEW4D25QF0RUYFUMB' where id=17; -update noar tt set v0='8K2JZ9ZN54VC5W5YTMU4R2OL2UDKXGYAAK1X2N25MLU1G66DP4SHQQ6H6F0PBW5JTVQNQXVYTQ2OD2T6DP7MFJSJT95NC5EHRC3SVYBVTFLG3ZKAMPC3271AD3LBCUYPXGM4YPDT03QOEZ051EDD1L054XM9SOPWBZ71LFXQN7MZNU0C4Z94ZTZQ661XLDQCGJG16U8XWWXZXLS61EUOOMT2O9OZIHY5SF3GA4L8EBVVCTXCVECHANQVIYJF9TYJA' where id=18; -update noar ti set v0='8K2JZ9ZN54VC5W5YTMU4R2OL2UDKXGYAAK1X2N25MLU1G66DP4SHQQ6H6F0PBW5JTVQNQXVYTQ2OD2T6DP7MFJSJT95NC5EHRC3SVYBVTFLG3ZKAMPC3271AD3LBCUYPXGM4YPDT03QOEZ051EDD1L054XM9SOPWBZ71LFXQN7MZNU0C4Z94ZTZQ661XLDQCGJG16U8XWWXZXLS61EUOOMT2O9OZIHY5SF3GA4L8EBVVCTXCVECHANQVIYJF9TYJA' where id=18; -update noar tt set v1='P1TI3VGHO4U7XLPQU4J4BOB9061IRDSR2P8F6K7CVSK9OL3JW76HO7HA3YYS89MNTBU6YV0NTMM39Y2XQPEZX04NYJRJ3H7GAJ3VIJP28I8ZPXQ73PPQXB5T3RLBEFEJ80H89V3HS78NJ3JVNMQTQRDKVAWY32LSC7QY88EA436MWEVPJYHKSDSDAVOU9V5TH9LB0P9MDY45B8OQXHCT48GKPHKF9Y3WGRLZ3GCTL8NGANXTS2HU0466DO2E2AXNL' where id=18; -update noar ti set v1='P1TI3VGHO4U7XLPQU4J4BOB9061IRDSR2P8F6K7CVSK9OL3JW76HO7HA3YYS89MNTBU6YV0NTMM39Y2XQPEZX04NYJRJ3H7GAJ3VIJP28I8ZPXQ73PPQXB5T3RLBEFEJ80H89V3HS78NJ3JVNMQTQRDKVAWY32LSC7QY88EA436MWEVPJYHKSDSDAVOU9V5TH9LB0P9MDY45B8OQXHCT48GKPHKF9Y3WGRLZ3GCTL8NGANXTS2HU0466DO2E2AXNL' where id=18; -update noar tt set v2='0GF9EHOS7Y0HYH0RJK4TZLC4OSF5FPYO5ZGMTUGTP1J0247XMQXDCK3IIGCNJV1DLGZ9LSM3CC6H1WYWB6PET2WUZI5YWL9WTP7E2EWDXZF9IGUJTVV49736J22063ARMMO7VF0DA4HY85G2Z5CM5L536CYO9QGIF8Z2PZCAXYM6VCI7TOHLU257GLQVI04J29D6UYZ1V2TBXI4BNJZGFNW6E1258SLLOAAYMSCUKF6HC0P6B49ZBKBM8GPFEXJAN' where id=18; -update noar ti set v2='0GF9EHOS7Y0HYH0RJK4TZLC4OSF5FPYO5ZGMTUGTP1J0247XMQXDCK3IIGCNJV1DLGZ9LSM3CC6H1WYWB6PET2WUZI5YWL9WTP7E2EWDXZF9IGUJTVV49736J22063ARMMO7VF0DA4HY85G2Z5CM5L536CYO9QGIF8Z2PZCAXYM6VCI7TOHLU257GLQVI04J29D6UYZ1V2TBXI4BNJZGFNW6E1258SLLOAAYMSCUKF6HC0P6B49ZBKBM8GPFEXJAN' where id=18; -update noar tt set v3='VSJJPAWBOTXJE0RUC1FBYQZSFWY1KQ9O15HB8TABPYVIVEC591859EEHGPUMTLUBQ342QTP33RQQ793NIKBRT10LLOG0GGY4QILVRD48F1RXC10O46NYU0BDY4R7D6CVJLENGPVNUDRR6VCVJ4RGKRK5GS1Y1Q7NWCZ002AWD2A6V610FH2W2FX1X28RMH649YW6LVW1HRZ5VAYGDLYF5QM593F3891FRVN007L2TFPZCWW1WSUAOAK6U1Q69BXUS' where id=18; -update noar ti set v3='VSJJPAWBOTXJE0RUC1FBYQZSFWY1KQ9O15HB8TABPYVIVEC591859EEHGPUMTLUBQ342QTP33RQQ793NIKBRT10LLOG0GGY4QILVRD48F1RXC10O46NYU0BDY4R7D6CVJLENGPVNUDRR6VCVJ4RGKRK5GS1Y1Q7NWCZ002AWD2A6V610FH2W2FX1X28RMH649YW6LVW1HRZ5VAYGDLYF5QM593F3891FRVN007L2TFPZCWW1WSUAOAK6U1Q69BXUS' where id=18; -update noar tt set v0='J61BZEOQFZ08XSSBJ2LYGFGU741OSER0XJGABRRBAQOOC6X7VNLNANY0AEEXDSVIFZQ9N3V7KYDB1KO3S2JKKLY2PLA6C51NQ82LLG6BBTLID6EWSQP0C1U6X7L5GQ9O9CTDO0IGH66E2XMPYLL3TUZFW507CA9UYILSWZX4SLCHREKOU0JJPT0LDFG89A0TKRK9QMVG1JS1JD2BVXTNPOUHYZB3LO4MQCK3XD7S6V62QV8VLIPOTT2I5ZBUY5FIQ' where id=19; -update noar ti set v0='J61BZEOQFZ08XSSBJ2LYGFGU741OSER0XJGABRRBAQOOC6X7VNLNANY0AEEXDSVIFZQ9N3V7KYDB1KO3S2JKKLY2PLA6C51NQ82LLG6BBTLID6EWSQP0C1U6X7L5GQ9O9CTDO0IGH66E2XMPYLL3TUZFW507CA9UYILSWZX4SLCHREKOU0JJPT0LDFG89A0TKRK9QMVG1JS1JD2BVXTNPOUHYZB3LO4MQCK3XD7S6V62QV8VLIPOTT2I5ZBUY5FIQ' where id=19; -update noar tt set v1='X9SHZS550ADRHP2NFR6Z5LPL8Q3SIA03ST8FSMZ549EOVY8Q80ZVYG3BPLX4ESMJUFLGC5ILWHVFW5OM2VI8TT1GUPS3HXFDPQ7RNLNKZVJCDL96HQAG4VO26JYHV5CS836W6MUTFDH81Q6S68QLORT48SXYIKN3JJ2NK87MOJKEI9KNL5FBJEC2FTQQSYF8EWP9VTSKU3O41WN55L07H2FYVG986ERQWEUW93PTGHEL6G1PZFAOLNMDFGC37WSQN' where id=19; -update noar ti set v1='X9SHZS550ADRHP2NFR6Z5LPL8Q3SIA03ST8FSMZ549EOVY8Q80ZVYG3BPLX4ESMJUFLGC5ILWHVFW5OM2VI8TT1GUPS3HXFDPQ7RNLNKZVJCDL96HQAG4VO26JYHV5CS836W6MUTFDH81Q6S68QLORT48SXYIKN3JJ2NK87MOJKEI9KNL5FBJEC2FTQQSYF8EWP9VTSKU3O41WN55L07H2FYVG986ERQWEUW93PTGHEL6G1PZFAOLNMDFGC37WSQN' where id=19; -update noar tt set v2='MCK1ROFUKOOYQKHCHOD2VMXQZ8YHOSX2Q6XD8DPI8XV35BG1Z85DO89GVN6F7OKCTZXD87375GWB8H5QHP8TWUBKO0NVSFVBV5QWP3UB0M9O7PUTHNFRI2VL8EIWFNALBH7G8O2OSNP3X85N672891GCZD3QHU1LX740ST25UM4YJ7GTNCCM7QVLB85AKCU8QGXAQQGUJDFTPY7G6NM4ILR6NSY7E6CKU3QMZ5W3ZJ9O5Z412A464PK6LHA8DKPS4' where id=19; -update noar ti set v2='MCK1ROFUKOOYQKHCHOD2VMXQZ8YHOSX2Q6XD8DPI8XV35BG1Z85DO89GVN6F7OKCTZXD87375GWB8H5QHP8TWUBKO0NVSFVBV5QWP3UB0M9O7PUTHNFRI2VL8EIWFNALBH7G8O2OSNP3X85N672891GCZD3QHU1LX740ST25UM4YJ7GTNCCM7QVLB85AKCU8QGXAQQGUJDFTPY7G6NM4ILR6NSY7E6CKU3QMZ5W3ZJ9O5Z412A464PK6LHA8DKPS4' where id=19; -update noar tt set v3='YXT6TYZFVOPURSW0RQ3F4YJ9SFHH4E7NJOJPLDC9R48ZPUN8CDSISFKETUPGZLBB18JJ849UPAZEHMDFZ4CANRQAX2WKI740GSXOKVUOWT9KKIBP230B9ZGGSXDEW205SKNCCPCXI3181HKQCYB0TUL1JVSIH8A3A209M9VEEDGDE6B1FYFQCQO1QRJV9S57U6XBQMZ0K8BGJJQE4T7U43M058VAPXGAPKANFGQCB8P8SQ7K4DJFNUXPFKBXJTOV0' where id=19; -update noar ti set v3='YXT6TYZFVOPURSW0RQ3F4YJ9SFHH4E7NJOJPLDC9R48ZPUN8CDSISFKETUPGZLBB18JJ849UPAZEHMDFZ4CANRQAX2WKI740GSXOKVUOWT9KKIBP230B9ZGGSXDEW205SKNCCPCXI3181HKQCYB0TUL1JVSIH8A3A209M9VEEDGDE6B1FYFQCQO1QRJV9S57U6XBQMZ0K8BGJJQE4T7U43M058VAPXGAPKANFGQCB8P8SQ7K4DJFNUXPFKBXJTOV0' where id=19; -update noar tt set v0='LV01CP920RSCAZHN5VF1W9JEVFDYH596R8J8LC0MF86T3Z1UAYM45873ERUF3EEDP1GOTNSF2IGBLYIXTOI3TVFK1WI9JE0DX1R5WXCKJ9EBH115MTQM4T52S31O05GKVUZ62P9TXQ1J9QV4ZCT4VEOQN4BJKBKH4B7579YR7XP4AW9AVUVAS1P8S6K649WLYMPVMKHZOKRADCRWUARYLFIGW0IS030GMTLGQN9CKN9QR73MR15N5JTOMV9HORU1M' where id=20; -update noar ti set v0='LV01CP920RSCAZHN5VF1W9JEVFDYH596R8J8LC0MF86T3Z1UAYM45873ERUF3EEDP1GOTNSF2IGBLYIXTOI3TVFK1WI9JE0DX1R5WXCKJ9EBH115MTQM4T52S31O05GKVUZ62P9TXQ1J9QV4ZCT4VEOQN4BJKBKH4B7579YR7XP4AW9AVUVAS1P8S6K649WLYMPVMKHZOKRADCRWUARYLFIGW0IS030GMTLGQN9CKN9QR73MR15N5JTOMV9HORU1M' where id=20; -update noar tt set v1='1UFRXZG0XHBSFLK2C2P2ZO6R90R625ABCFS2N1EHDWLQC9CZ1K5CH797VU1GYB0WR220IXN50J8TOU7NFZIIA6P5BMHXBMTOJ7EHOHAU8MN09C9TV8315GV3HDKSWOLADRYLJMGVQ6EDK4G1C8UW2I59YEMMNIUW0GMIZRMX48FWGBGHZRFUK0LTQ0U12JJXNHIFNTMQ0J83A2MOJMXZMJ3VT89NPGDHZP742QU5MB8QZRJW5MNR7U5BW2FN68UHI' where id=20; -update noar ti set v1='1UFRXZG0XHBSFLK2C2P2ZO6R90R625ABCFS2N1EHDWLQC9CZ1K5CH797VU1GYB0WR220IXN50J8TOU7NFZIIA6P5BMHXBMTOJ7EHOHAU8MN09C9TV8315GV3HDKSWOLADRYLJMGVQ6EDK4G1C8UW2I59YEMMNIUW0GMIZRMX48FWGBGHZRFUK0LTQ0U12JJXNHIFNTMQ0J83A2MOJMXZMJ3VT89NPGDHZP742QU5MB8QZRJW5MNR7U5BW2FN68UHI' where id=20; -update noar tt set v2='8SK5PQ12JIT36Z8U8U2KML2USL1BVSRB3Y4OV7THU88WF1HQYP6VR9GXEU6JXXGYOPOXKGIB1UQL477WFK0Z4ROJD4X86PZC4RD5PHDRQ1LWL2TVML4KGS59CUU9Z123SWRE902TMW1988N5CI2OPZ5ENMF9SOW3T0346DL6TE0VKTFRERW0JYFGJ99OQAEUI9B5E1C1K9OFR6JRFZMFPJLSEKBUPRB1370URWGMEWD757G72OFBZR6KAUJL9CLWR' where id=20; -update noar ti set v2='8SK5PQ12JIT36Z8U8U2KML2USL1BVSRB3Y4OV7THU88WF1HQYP6VR9GXEU6JXXGYOPOXKGIB1UQL477WFK0Z4ROJD4X86PZC4RD5PHDRQ1LWL2TVML4KGS59CUU9Z123SWRE902TMW1988N5CI2OPZ5ENMF9SOW3T0346DL6TE0VKTFRERW0JYFGJ99OQAEUI9B5E1C1K9OFR6JRFZMFPJLSEKBUPRB1370URWGMEWD757G72OFBZR6KAUJL9CLWR' where id=20; -update noar tt set v3='T7ZKLIFD9NTGMHUL3XHEHR5WVSYDTDZPD43CNEAWTRAMRI63VD7X5RYPQ9PEXBG249AW68DNN7FME87SWD6IGBUQOAX54KXEOW2EGYIKRQONVFSZFJN0OO2JP9OBQ1NJ6CK8RDD4AC4QKARWMY2H0HFX156B5J43B3OTDSKUS1FIAD1H7ON77RMD5WD6IEUV37UVDTRXED5EFZV7HP9R7ZQ29D4C3V5KZADLRP1RPULWD25RSMQVXGMDG3AFT4FLB' where id=20; -update noar ti set v3='T7ZKLIFD9NTGMHUL3XHEHR5WVSYDTDZPD43CNEAWTRAMRI63VD7X5RYPQ9PEXBG249AW68DNN7FME87SWD6IGBUQOAX54KXEOW2EGYIKRQONVFSZFJN0OO2JP9OBQ1NJ6CK8RDD4AC4QKARWMY2H0HFX156B5J43B3OTDSKUS1FIAD1H7ON77RMD5WD6IEUV37UVDTRXED5EFZV7HP9R7ZQ29D4C3V5KZADLRP1RPULWD25RSMQVXGMDG3AFT4FLB' where id=20; -update noar tt set v0='W1VTJ1H2REY8435MAB757VIZ0X0Q36L8IHQB818ROI46K7QDUYYXC4YE7DIL247O2X6V0590O71IUDN3JVJP47Z24DJW0SQ0IYYWP6IOLRHF4XHEU7WK8AJ87ZPJV9E6VNY861F2PWANFB6XRXYP0CT0H3ZLDDH663Y8PWYF13MIL5QDVQF2Y2UKVMHI86SFED8HAA2XU035PSBQDSO136J2MLI8Y84GM0T08P5OGJRHJE1LVJ8HZ2UIHYFNO8OU6' where id=21; -update noar ti set v0='W1VTJ1H2REY8435MAB757VIZ0X0Q36L8IHQB818ROI46K7QDUYYXC4YE7DIL247O2X6V0590O71IUDN3JVJP47Z24DJW0SQ0IYYWP6IOLRHF4XHEU7WK8AJ87ZPJV9E6VNY861F2PWANFB6XRXYP0CT0H3ZLDDH663Y8PWYF13MIL5QDVQF2Y2UKVMHI86SFED8HAA2XU035PSBQDSO136J2MLI8Y84GM0T08P5OGJRHJE1LVJ8HZ2UIHYFNO8OU6' where id=21; -update noar tt set v1='4NS89B2R8N583FYQLH4K8JF4PA22Z2HHWCRKARP1SIKKVH4YW3QKA89V9A5KKI4GFMXREH351Z6Z8F36XV8D8YQBC76EGIV0V17Z4BZZBVVH6WJWQTM33UWSPI0VX5HLCN3YEYNUH6SZO5N7OY0CW00G3ZM3U4QXUFZEEDXI3Y1TMGKFLR1HVH17J14RYDBZ5JG78SPDTAU5GS9RI8THFAWFBJ4ON4IV3MN3G5PQPKXHFLSFWJAHK9OQLDHJL9HMZ' where id=21; -update noar ti set v1='4NS89B2R8N583FYQLH4K8JF4PA22Z2HHWCRKARP1SIKKVH4YW3QKA89V9A5KKI4GFMXREH351Z6Z8F36XV8D8YQBC76EGIV0V17Z4BZZBVVH6WJWQTM33UWSPI0VX5HLCN3YEYNUH6SZO5N7OY0CW00G3ZM3U4QXUFZEEDXI3Y1TMGKFLR1HVH17J14RYDBZ5JG78SPDTAU5GS9RI8THFAWFBJ4ON4IV3MN3G5PQPKXHFLSFWJAHK9OQLDHJL9HMZ' where id=21; -update noar tt set v2='A0LMSBWZ9N9HNOEL7F8JYWRD40FBX2BQJ5PZMJCDQFPWP9B3YFYNHXDLYLXIIRR00I163U773YB1J3HKXRT77S0FW734KHZ6M14PU8BZJGWV9U22H3O6EC1SZRNTXQXGQ584YBDN3CKTGSFH6RFO8N3M30HQN7O06M5HG62DMVF3UIHE56FM1NS2CVGVCQ86TFBI8N1K4NSIG0GG4SOHAQ3JN69EN84RKP5O7MV2LZQVORM2GQZ3U612OTF40N7EM' where id=21; -update noar ti set v2='A0LMSBWZ9N9HNOEL7F8JYWRD40FBX2BQJ5PZMJCDQFPWP9B3YFYNHXDLYLXIIRR00I163U773YB1J3HKXRT77S0FW734KHZ6M14PU8BZJGWV9U22H3O6EC1SZRNTXQXGQ584YBDN3CKTGSFH6RFO8N3M30HQN7O06M5HG62DMVF3UIHE56FM1NS2CVGVCQ86TFBI8N1K4NSIG0GG4SOHAQ3JN69EN84RKP5O7MV2LZQVORM2GQZ3U612OTF40N7EM' where id=21; -update noar tt set v3='NZS96BSKLCQF9IT0W1P1C3HB61PCORQDT0MBFBYMPHPOC07VHTEVXUIA8KDFR5TNSIJ4JTECMAZC1730AWPHMTN9RTVKKANK4Z4H4DHO3M2ZWICK84NJ4CS2QK6G8URGBVWGJ4N7HRN2UW82JF99Y9KRXM45O0W7CIPOMQ4U4VL7OAWMATGRWCHLEF5OOME1UFYHRNKMJEAABEP472J7MNTL20L94OS835OQR5F43RMT2I1CIZM4GERKNVQM90QIZ' where id=21; -update noar ti set v3='NZS96BSKLCQF9IT0W1P1C3HB61PCORQDT0MBFBYMPHPOC07VHTEVXUIA8KDFR5TNSIJ4JTECMAZC1730AWPHMTN9RTVKKANK4Z4H4DHO3M2ZWICK84NJ4CS2QK6G8URGBVWGJ4N7HRN2UW82JF99Y9KRXM45O0W7CIPOMQ4U4VL7OAWMATGRWCHLEF5OOME1UFYHRNKMJEAABEP472J7MNTL20L94OS835OQR5F43RMT2I1CIZM4GERKNVQM90QIZ' where id=21; -update noar tt set v0='UGBZLIBD8CC75F2WQUKFPQJIO0XXHNYJW03ZKO4N0PLCDYNGJNJC7EC5VZLLGBL9SXACXN0VD5RJWG2ERIYRSY0J3P5TULBECQM03BXM0RB5JCBZL6GPPQQXUQGXDDHJ9MKO14OF3DEIW308QTWQ00E0M96QB4CAQGFE79Q28F649ERLALRVGG9BJM2W2NJAW5QHOC71I709WYWQZKLYJ87MTC9IB8CJI8X50D64AEZQPY3BDY00XY61AW0IFDBIL' where id=22; -update noar ti set v0='UGBZLIBD8CC75F2WQUKFPQJIO0XXHNYJW03ZKO4N0PLCDYNGJNJC7EC5VZLLGBL9SXACXN0VD5RJWG2ERIYRSY0J3P5TULBECQM03BXM0RB5JCBZL6GPPQQXUQGXDDHJ9MKO14OF3DEIW308QTWQ00E0M96QB4CAQGFE79Q28F649ERLALRVGG9BJM2W2NJAW5QHOC71I709WYWQZKLYJ87MTC9IB8CJI8X50D64AEZQPY3BDY00XY61AW0IFDBIL' where id=22; -update noar tt set v1='U2D0N9XSKPXZXC19LLNV01AFVZWMK1T46MEWT7CN1HU839QKJQH1KV4QIQRU8KJ2BEVAV4T6AG0MQ6QKDQBUU35EKLH8EIXLMVMEPI8IEZCAS9256XIIP0B7YZT9FAB7DMXD7MUBNKFP5XQW70EQE4WS5MOKSWYQRJ4DWE0NMPU9NE8DRK9NNEDTMVP2PDW2PJXX5MIVSH9T8TD2OF9WBTK9RP357D9DGUSRXR4AT7F9AGP7ALLRP5JUHJ02F2Y7B' where id=22; -update noar ti set v1='U2D0N9XSKPXZXC19LLNV01AFVZWMK1T46MEWT7CN1HU839QKJQH1KV4QIQRU8KJ2BEVAV4T6AG0MQ6QKDQBUU35EKLH8EIXLMVMEPI8IEZCAS9256XIIP0B7YZT9FAB7DMXD7MUBNKFP5XQW70EQE4WS5MOKSWYQRJ4DWE0NMPU9NE8DRK9NNEDTMVP2PDW2PJXX5MIVSH9T8TD2OF9WBTK9RP357D9DGUSRXR4AT7F9AGP7ALLRP5JUHJ02F2Y7B' where id=22; -update noar tt set v2='WGPUFZ2V2NUJ8AKGWBFY35R817A5NUEK3RPA0K3441W4NMED0MP0777CCBCNM32CNNAQFCZ61L8HRBTQZ8P5J5RQ69E47PFBVJPKM3E9G88SD8BWSW133QGSLWQUNT7O5VDDUST1ZEEYO93JAN9F0SSJIQKTVUAR5EO0EW4NSURB021ITS4WM9AORN85A6JK29M7LTY28PT150WMHUXO28H7QH1O4EL90EF7NNLL8Z17HPLURNT3L88EDG4IAQ3GG' where id=22; -update noar ti set v2='WGPUFZ2V2NUJ8AKGWBFY35R817A5NUEK3RPA0K3441W4NMED0MP0777CCBCNM32CNNAQFCZ61L8HRBTQZ8P5J5RQ69E47PFBVJPKM3E9G88SD8BWSW133QGSLWQUNT7O5VDDUST1ZEEYO93JAN9F0SSJIQKTVUAR5EO0EW4NSURB021ITS4WM9AORN85A6JK29M7LTY28PT150WMHUXO28H7QH1O4EL90EF7NNLL8Z17HPLURNT3L88EDG4IAQ3GG' where id=22; -update noar tt set v3='PKP6NQBE0B5BDU8R7HYUAZKYU1C9AFI2OUWA3DTN0U3I6HZBF4NDE2AHLZFN355GDYTVB0ACHAUQRJ0DK3ZRJHUQU1WHQDZDV8AXUP77364HFEUT10KZ96C43IHITGB0HXMUT5G76269RH1VEQ9J29JW3GZZNOQ85TAZUKZXTPE2R4GY9RXIATB1S50EA8F4Q272CVZAQ3FP886ZHJRPZ3YSD3O9S7IRHWFUMRVGMEFB4702JZUJD874Z5EQGOJ4X' where id=22; -update noar ti set v3='PKP6NQBE0B5BDU8R7HYUAZKYU1C9AFI2OUWA3DTN0U3I6HZBF4NDE2AHLZFN355GDYTVB0ACHAUQRJ0DK3ZRJHUQU1WHQDZDV8AXUP77364HFEUT10KZ96C43IHITGB0HXMUT5G76269RH1VEQ9J29JW3GZZNOQ85TAZUKZXTPE2R4GY9RXIATB1S50EA8F4Q272CVZAQ3FP886ZHJRPZ3YSD3O9S7IRHWFUMRVGMEFB4702JZUJD874Z5EQGOJ4X' where id=22; -update noar tt set v0='8XUE96NUSYCBKQM1BRH2WAN8Z9E46UJOTOPZ9EZF1STTM8RB0T0ODHXS78LP7JL8XJTQ2KMEQ5TSQ3FJ88TA675FNPON62G07XCO9O9ODTCVN298RPMT22V96VDKGDR0FN74MVEBC9AHJ3MKS1U2Q8WO3EMCFZ10VKRGWGTH3C2FSLQPSJOOMR02OICALM8IUIY1DGPUY2SRWW3SP6W1NDRALQTEIBW3DDDTMOR2ZPHE2CKU9H6XGX0D070GNE94L' where id=23; -update noar ti set v0='8XUE96NUSYCBKQM1BRH2WAN8Z9E46UJOTOPZ9EZF1STTM8RB0T0ODHXS78LP7JL8XJTQ2KMEQ5TSQ3FJ88TA675FNPON62G07XCO9O9ODTCVN298RPMT22V96VDKGDR0FN74MVEBC9AHJ3MKS1U2Q8WO3EMCFZ10VKRGWGTH3C2FSLQPSJOOMR02OICALM8IUIY1DGPUY2SRWW3SP6W1NDRALQTEIBW3DDDTMOR2ZPHE2CKU9H6XGX0D070GNE94L' where id=23; -update noar tt set v1='HFRFDS0MIO9IXBXBAYGZ5UNFH9WDBR0IL9OXTNII28OXZN6BA8XNLTXGKNQIL7220BTDHN6UFD60MI7FYOH691T0ECE7GBJ26G03R9OFX35IVATM9HVKV5BXDO7JVOY9LDNMCUXZ9Z3F37RM0FON3PNSO98LUOZZSTUFIUK90S2ANW5EHD5THE14OPTPX9OKY233Y5NKQUKNE5PMH25E8BS9EJIZJZ9D9S4C9GNW37MUPFJORRRCFG2QMDZY2SP7G' where id=23; -update noar ti set v1='HFRFDS0MIO9IXBXBAYGZ5UNFH9WDBR0IL9OXTNII28OXZN6BA8XNLTXGKNQIL7220BTDHN6UFD60MI7FYOH691T0ECE7GBJ26G03R9OFX35IVATM9HVKV5BXDO7JVOY9LDNMCUXZ9Z3F37RM0FON3PNSO98LUOZZSTUFIUK90S2ANW5EHD5THE14OPTPX9OKY233Y5NKQUKNE5PMH25E8BS9EJIZJZ9D9S4C9GNW37MUPFJORRRCFG2QMDZY2SP7G' where id=23; -update noar tt set v2='G3PLP00WZ7GHLSPSB5JGEFIBVKUDM35OMABXTO7UJXZHWEB35N7H4E0M1TYPFNLIMXCT4REBMNCRWUN3XDVJEWLUUU0A3KA1ASNTJK0RKSW8B7LJYJOAQIT1HP1ZJ4PVDHA9FLVQAWTKZTZU66V6VW7O0F9TK9KKDC7QRADR6DA70YQM7MCQRRENIYHFSJRPJTM54JV8K9FOLZ8G4ZSQUZ9794EAEIQ3NOCC2IQ6NPX7NDYACVKZ3UYL9O4WE88Q8' where id=23; -update noar ti set v2='G3PLP00WZ7GHLSPSB5JGEFIBVKUDM35OMABXTO7UJXZHWEB35N7H4E0M1TYPFNLIMXCT4REBMNCRWUN3XDVJEWLUUU0A3KA1ASNTJK0RKSW8B7LJYJOAQIT1HP1ZJ4PVDHA9FLVQAWTKZTZU66V6VW7O0F9TK9KKDC7QRADR6DA70YQM7MCQRRENIYHFSJRPJTM54JV8K9FOLZ8G4ZSQUZ9794EAEIQ3NOCC2IQ6NPX7NDYACVKZ3UYL9O4WE88Q8' where id=23; -update noar tt set v3='42ZSXXWCVHS66K7MKGFW3YM204GW4RVV8TQBPMFFD5GIHDZ24YPLHGHXNHUJRRRMMCQCJN2C9DQACGUJIL582T0LCFU74B3312AFDAR1O2XWT3QTGHWEZD3EK3C8E7FP38ZP82UH7S1OC8LW18AZZRIR5I9UKAKWYYWAYK1JV2UE6EDZA66IJZEGOFQD5G51QVIT9A35ZKWTHE587Q894KJCKL0J07G5XVJEL71Z40MY1MBUQI0N3XL50YRNZFISZ' where id=23; -update noar ti set v3='42ZSXXWCVHS66K7MKGFW3YM204GW4RVV8TQBPMFFD5GIHDZ24YPLHGHXNHUJRRRMMCQCJN2C9DQACGUJIL582T0LCFU74B3312AFDAR1O2XWT3QTGHWEZD3EK3C8E7FP38ZP82UH7S1OC8LW18AZZRIR5I9UKAKWYYWAYK1JV2UE6EDZA66IJZEGOFQD5G51QVIT9A35ZKWTHE587Q894KJCKL0J07G5XVJEL71Z40MY1MBUQI0N3XL50YRNZFISZ' where id=23; -update noar tt set v0='7J8CHYLGKRVOP13WX9VZ5U4NTMQ0AGPA7RPFQG28LGZD6RYMNIIB99BP1A7I5M0Z3THBS99G3ITMSFAISAR9QFMDHECURHU2MMEGM0BL97UXT9F4622I7VISAYE8ERTOU5HVC1CYX7IOBQDTS9T9ADDLNOOC9NEJPBKL09TMX61SOI83M3BLMLS2SFJ9GRSLUYNCEHHK0MUU6C0XSSB8JJTHDEDQVEY54XG6VFFOZ5IT2C38KNZPOFK2UP0XEPECQ' where id=24; -update noar ti set v0='7J8CHYLGKRVOP13WX9VZ5U4NTMQ0AGPA7RPFQG28LGZD6RYMNIIB99BP1A7I5M0Z3THBS99G3ITMSFAISAR9QFMDHECURHU2MMEGM0BL97UXT9F4622I7VISAYE8ERTOU5HVC1CYX7IOBQDTS9T9ADDLNOOC9NEJPBKL09TMX61SOI83M3BLMLS2SFJ9GRSLUYNCEHHK0MUU6C0XSSB8JJTHDEDQVEY54XG6VFFOZ5IT2C38KNZPOFK2UP0XEPECQ' where id=24; -update noar tt set v1='D8PJ4MPF1UB0G1QBAKWA2XZ5DPHM7CCT4WAN0DJ0T4VGLW9S33PQA2FG59VSPUXMK0KDHK7WH42A82I6LBYPZDULQUZ1H9GCPH1I7SWMZHYPHX94FKY051OXN83ITWUID6AY3RJ0SR5I15IQR1MH2SWIADQKPYQ9IZZYI40XRLAEX31VKAZVYZJ0I2NQ2P9AL3J0E5YE4WT9FZBQ139GL3TXP476LQ60EOD75F8WVQ38N1G7H8YO5592L5QYT8I0E' where id=24; -update noar ti set v1='D8PJ4MPF1UB0G1QBAKWA2XZ5DPHM7CCT4WAN0DJ0T4VGLW9S33PQA2FG59VSPUXMK0KDHK7WH42A82I6LBYPZDULQUZ1H9GCPH1I7SWMZHYPHX94FKY051OXN83ITWUID6AY3RJ0SR5I15IQR1MH2SWIADQKPYQ9IZZYI40XRLAEX31VKAZVYZJ0I2NQ2P9AL3J0E5YE4WT9FZBQ139GL3TXP476LQ60EOD75F8WVQ38N1G7H8YO5592L5QYT8I0E' where id=24; -update noar tt set v2='4ZJVIU9H0VJZDIJB32Z1HHDB0WQVP1PIKF07DJRYW5P6GNID1DKJWNNCO32S164MREKD2DWC2KZKNDGD5SZ1G0NZTEMI87CA9MHVJJ9FVB5I9AS8A5WH8R377XHKORXNCU2NH2I3S85IOGFNHJS6SF2MXQ8IDV8X3A0RQ6V9M0T4Q44KZKB9508INMR7DMTKDC3Y0WBQUZUFYDQPB53X1X2CNIAQL5Q8MEHNIH3V0SQBDJR5B934RP236UVTJUXOM' where id=24; -update noar ti set v2='4ZJVIU9H0VJZDIJB32Z1HHDB0WQVP1PIKF07DJRYW5P6GNID1DKJWNNCO32S164MREKD2DWC2KZKNDGD5SZ1G0NZTEMI87CA9MHVJJ9FVB5I9AS8A5WH8R377XHKORXNCU2NH2I3S85IOGFNHJS6SF2MXQ8IDV8X3A0RQ6V9M0T4Q44KZKB9508INMR7DMTKDC3Y0WBQUZUFYDQPB53X1X2CNIAQL5Q8MEHNIH3V0SQBDJR5B934RP236UVTJUXOM' where id=24; -update noar tt set v3='53ESDP7LESASZGW8TQ767HZP425HAAKXUYFQILKVAALNWOXZM6HK0N4MEF4PAHZ7EYAI1S17P6MC0IRBXOBULT45WVJECYT27YLYDU53YUHR462N0DSGTK6P47S9VJD6RMWIQKKQ4UGN7NJRTWB8CXPU727HVTP0IMR69FB50Y6O6S74UO4OCOM3TOD8P6XSL1BQXH2NH4DQPFOIWWN9SXU1227LJ6UN6K7R9476MZYZTFKK4XFS1WSXHG3P14OKP' where id=24; -update noar ti set v3='53ESDP7LESASZGW8TQ767HZP425HAAKXUYFQILKVAALNWOXZM6HK0N4MEF4PAHZ7EYAI1S17P6MC0IRBXOBULT45WVJECYT27YLYDU53YUHR462N0DSGTK6P47S9VJD6RMWIQKKQ4UGN7NJRTWB8CXPU727HVTP0IMR69FB50Y6O6S74UO4OCOM3TOD8P6XSL1BQXH2NH4DQPFOIWWN9SXU1227LJ6UN6K7R9476MZYZTFKK4XFS1WSXHG3P14OKP' where id=24; -update noar tt set v0='MD7VLTYM9E79UYYML4O0W1XSTYJ7BHYDCAINIRSFNRI7WTPWGYNXGE7LIZVYO0VIAB4U408XG192QMCKZ6JV7NXPPRATQ86JZQIN2XAZSG6UB41SUTGDX7S5HRTJMEXJFTBR0A32ICY6P6PBYZAL5ZBSD0F13VG5AHWGPRKQIK5AVDFSFVZQHJXOXFV28GIMCU9W94EP6TTILLSN0TLT7QNZ2PD8TCXDFF7FVRJUXY22S9ZP93VQQHQBCLY80Y8WQ' where id=25; -update noar ti set v0='MD7VLTYM9E79UYYML4O0W1XSTYJ7BHYDCAINIRSFNRI7WTPWGYNXGE7LIZVYO0VIAB4U408XG192QMCKZ6JV7NXPPRATQ86JZQIN2XAZSG6UB41SUTGDX7S5HRTJMEXJFTBR0A32ICY6P6PBYZAL5ZBSD0F13VG5AHWGPRKQIK5AVDFSFVZQHJXOXFV28GIMCU9W94EP6TTILLSN0TLT7QNZ2PD8TCXDFF7FVRJUXY22S9ZP93VQQHQBCLY80Y8WQ' where id=25; -update noar tt set v1='527RZK4NO6ZJMXS85715TCM5ZRSCEJQKJCFICVAOL3ODY6EH1R4U2VD26V1T1KUHU01LX9X28O03I0DKYWLEPC8NLUR1Z74YY7N9XLY1R171QJPKGIPHU5QQIP8LU9M2WMVWVTNSOMHA5KS28R8HFZLDYSDYDA0DG2Y9W3AZ54IZ33CZNJ3N4FO9MA47WHF42PGTIO7NWDUK7KYGWTMM08AWP53Q6MMVDIY31P1NDAKFAW8R7QVC4A78C7ARRWLOP' where id=25; -update noar ti set v1='527RZK4NO6ZJMXS85715TCM5ZRSCEJQKJCFICVAOL3ODY6EH1R4U2VD26V1T1KUHU01LX9X28O03I0DKYWLEPC8NLUR1Z74YY7N9XLY1R171QJPKGIPHU5QQIP8LU9M2WMVWVTNSOMHA5KS28R8HFZLDYSDYDA0DG2Y9W3AZ54IZ33CZNJ3N4FO9MA47WHF42PGTIO7NWDUK7KYGWTMM08AWP53Q6MMVDIY31P1NDAKFAW8R7QVC4A78C7ARRWLOP' where id=25; -update noar tt set v2='JFG1272IZ1DYJNXK3YRXFOS9N0PUTD2Q5PU5R0XQQ34YCU1JJG9UFKUCMEL0RH59GYETR29E12ZAPJ7XO82BSXA2OLZ33Y5HP1ZSJ1D4EDFWZC9JQE3GFZ9Q3YHPY9GWRCLXTARG7EVOSPFR11M5WQPEWK7QFOSR1GRY1AQPSV3XT9JD35KIMRS72KWRMFZBGHIMD9FC4G6TI01C1IJBS1JOL2Y0RPE2Q0IPEJINOTI5KV4MB3ZUCRWO0COXOPDYP' where id=25; -update noar ti set v2='JFG1272IZ1DYJNXK3YRXFOS9N0PUTD2Q5PU5R0XQQ34YCU1JJG9UFKUCMEL0RH59GYETR29E12ZAPJ7XO82BSXA2OLZ33Y5HP1ZSJ1D4EDFWZC9JQE3GFZ9Q3YHPY9GWRCLXTARG7EVOSPFR11M5WQPEWK7QFOSR1GRY1AQPSV3XT9JD35KIMRS72KWRMFZBGHIMD9FC4G6TI01C1IJBS1JOL2Y0RPE2Q0IPEJINOTI5KV4MB3ZUCRWO0COXOPDYP' where id=25; -update noar tt set v3='AZ2G226Q2R8HNJTTSVAN59A0KJ7ZK6LE58GEJV3IANTVLBM6F8XW27URGZLC0R4SVGJC78U0UXWJANUYHC0UC6XRQA78F9F8WB0OS6U7XO33S2NGZDBW34KPAQLEDQDZP9GC0U5SJCUTT6EC2VU7F2ZRGL3SWUHCY33B34RC6MIB2K76R3S2NTUFSWF0SPU8TI244CMJM330JBZKAXALUTRAQJEIRN6WID56PX8CWXYXF6UOI9N79TDG9SR982YB0' where id=25; -update noar ti set v3='AZ2G226Q2R8HNJTTSVAN59A0KJ7ZK6LE58GEJV3IANTVLBM6F8XW27URGZLC0R4SVGJC78U0UXWJANUYHC0UC6XRQA78F9F8WB0OS6U7XO33S2NGZDBW34KPAQLEDQDZP9GC0U5SJCUTT6EC2VU7F2ZRGL3SWUHCY33B34RC6MIB2K76R3S2NTUFSWF0SPU8TI244CMJM330JBZKAXALUTRAQJEIRN6WID56PX8CWXYXF6UOI9N79TDG9SR982YB0' where id=25; -update noar tt set v0='XGWW4COVKK098H85IWP096PUZ8KR80M4WL0ZLE5PRQ7D7M8A1BWNRPVWWXFFNFQS1KL6WE0GEN29QATEKY7350QA2KOSPDV3CDGA5K2CLNQ9QK3UH6ZC31Q5KDQG06EF945V68EM6KCN7B7HQ77IW8P5F7T4XEH1IEVD212F10G8YM61YWAZBGPPQV4H98ZTLZZSQMQXEH5JGFM9ZZ19YY3MHGK8W07JW27F9NYA2J1RF9F00ZSWZWMRZZBXDXQPI' where id=26; -update noar ti set v0='XGWW4COVKK098H85IWP096PUZ8KR80M4WL0ZLE5PRQ7D7M8A1BWNRPVWWXFFNFQS1KL6WE0GEN29QATEKY7350QA2KOSPDV3CDGA5K2CLNQ9QK3UH6ZC31Q5KDQG06EF945V68EM6KCN7B7HQ77IW8P5F7T4XEH1IEVD212F10G8YM61YWAZBGPPQV4H98ZTLZZSQMQXEH5JGFM9ZZ19YY3MHGK8W07JW27F9NYA2J1RF9F00ZSWZWMRZZBXDXQPI' where id=26; -update noar tt set v1='LSNNWGAB5OQACFE1YHR2JEF13EHQYA6CMOKARHRQF6F1BGXXHPHED9L2VYYS5SOBNBC78HGVA95C7JQTL7DBARI7JJW6KN7ZY0C8S7RYVKTBHG93WPXM8SE2WG930Y3S0PS2PQR049107ZYWLGCROSZABXOQO7PDJE7JACBFQLILIVCFYIOEW9BGX5DPNIHEAC22CQWVMAQZCF3AIQYV4MIM7672BJIYN2QTQFVKA9H1QEWCSQV2HPFS6YFMSKWHF' where id=26; -update noar ti set v1='LSNNWGAB5OQACFE1YHR2JEF13EHQYA6CMOKARHRQF6F1BGXXHPHED9L2VYYS5SOBNBC78HGVA95C7JQTL7DBARI7JJW6KN7ZY0C8S7RYVKTBHG93WPXM8SE2WG930Y3S0PS2PQR049107ZYWLGCROSZABXOQO7PDJE7JACBFQLILIVCFYIOEW9BGX5DPNIHEAC22CQWVMAQZCF3AIQYV4MIM7672BJIYN2QTQFVKA9H1QEWCSQV2HPFS6YFMSKWHF' where id=26; -update noar tt set v2='GP24FL97JZGRHJZE652AXEA2HGD6G9ZTFTD3A6XCR9DB3FSTFX5TZ1J2RD8OIVLJ06UTKP5FWN1LF0N9W04N0HTYK2YFKLVHXYDVDJ82MKPIDXTDSFQVKL0UJ6FL3VAEV4IZYKTWW9Z8UKVANXSGWKDBJ2VKWUNR8EG3Z3Y3SOR2JPOD78GXBAWO6CNSU4KG038RVWA50IT8V0QRQXBQZLBCL7NSBIKX9V6O9CB0B8RV8WF1J65CT4HZPB7A37444' where id=26; -update noar ti set v2='GP24FL97JZGRHJZE652AXEA2HGD6G9ZTFTD3A6XCR9DB3FSTFX5TZ1J2RD8OIVLJ06UTKP5FWN1LF0N9W04N0HTYK2YFKLVHXYDVDJ82MKPIDXTDSFQVKL0UJ6FL3VAEV4IZYKTWW9Z8UKVANXSGWKDBJ2VKWUNR8EG3Z3Y3SOR2JPOD78GXBAWO6CNSU4KG038RVWA50IT8V0QRQXBQZLBCL7NSBIKX9V6O9CB0B8RV8WF1J65CT4HZPB7A37444' where id=26; -update noar tt set v3='IWJJ8IXOFW2KT60CO6UMA15QEWE0RJ5YKJFZ7MJ4UF62Y2LXEU3SIKUBL4GBBCSDQ88ILE7LSEEDX3JQ3IK5GC6XO07KFFHA8OM4BZ983ZVCJA9V7VFZ62Q38Z06K8CXFGPS4KMG5L6TUG6SOWBE3A4UZ6TJU9NU6XPEDFAKSR9K2KDO64K9NUCITIXK2PAHU12C62S9N6FNOG27DO5A44W89FD4RS709L1KW89ZWCC7Z2K8ZY8QI6IUZAPDVRKOD' where id=26; -update noar ti set v3='IWJJ8IXOFW2KT60CO6UMA15QEWE0RJ5YKJFZ7MJ4UF62Y2LXEU3SIKUBL4GBBCSDQ88ILE7LSEEDX3JQ3IK5GC6XO07KFFHA8OM4BZ983ZVCJA9V7VFZ62Q38Z06K8CXFGPS4KMG5L6TUG6SOWBE3A4UZ6TJU9NU6XPEDFAKSR9K2KDO64K9NUCITIXK2PAHU12C62S9N6FNOG27DO5A44W89FD4RS709L1KW89ZWCC7Z2K8ZY8QI6IUZAPDVRKOD' where id=26; -update noar tt set v0='40ET51DFIRBAZZ7PD57GHKU1UL5TXXPR6VGLXZ13VUOARD8V9TWWYOFF891WI0Z004ZSSJ6PKZ808YO4D2YF0QGIAXHDXI2WJXHCKST2V8SVTHHU1TVJ9IB8AVA6MHXWWM0418B64H7DEAMUFY7JPIBIDWVYXTHP42JHL7GIRP4HGVR4MRGQUBXUSJJGKYF5FWT2PIQA102TBFA9Y17HPGRVGZ7LMHKC9FE7DWV2C1NNTJCZLS1B9VU38QFX0WR1L' where id=27; -update noar ti set v0='40ET51DFIRBAZZ7PD57GHKU1UL5TXXPR6VGLXZ13VUOARD8V9TWWYOFF891WI0Z004ZSSJ6PKZ808YO4D2YF0QGIAXHDXI2WJXHCKST2V8SVTHHU1TVJ9IB8AVA6MHXWWM0418B64H7DEAMUFY7JPIBIDWVYXTHP42JHL7GIRP4HGVR4MRGQUBXUSJJGKYF5FWT2PIQA102TBFA9Y17HPGRVGZ7LMHKC9FE7DWV2C1NNTJCZLS1B9VU38QFX0WR1L' where id=27; -update noar tt set v1='EXXL17US3FVZAEYCR2UOO90O3YAOXXXTL2HL6981VLH19HUACVG6VH24JXJAG0V323Q05ZPM15KNNLLT0JV9B4VSFDKZYBF7D92SNGK3YS31FLWPPAWVPPDPTDK22BZKRAENP6JIPDOYF0EI4TTF9T6F5DBYVRJ2DYROT592TNMS4A9H4XHLJSKXF3IJKSFJ2UDRHBVRBF4IX2HX2ZAM8VJ00HV3JR8AYEA0ZI8QQI57CC66JUOHTRZ051HCE7CUC' where id=27; -update noar ti set v1='EXXL17US3FVZAEYCR2UOO90O3YAOXXXTL2HL6981VLH19HUACVG6VH24JXJAG0V323Q05ZPM15KNNLLT0JV9B4VSFDKZYBF7D92SNGK3YS31FLWPPAWVPPDPTDK22BZKRAENP6JIPDOYF0EI4TTF9T6F5DBYVRJ2DYROT592TNMS4A9H4XHLJSKXF3IJKSFJ2UDRHBVRBF4IX2HX2ZAM8VJ00HV3JR8AYEA0ZI8QQI57CC66JUOHTRZ051HCE7CUC' where id=27; -update noar tt set v2='I2TVEX131HUB85YRMIOQ0EZ877JJV9NN3829JZII2UUL8W6JDZ2YTTPUJEOOSZO70DEWQ219HQB4AUZQ1PK5AR7LSXZBRMJ79LT7HDO3F628313340XLC8XW9MYKLNCKHXIDLWN3719OQ6DKVD9M2ICE7H2EXGOM2QPFMXQXOP94IOJ3E7HB2CBFP5MOKNOO5VQHE6X08F59UZ987V7CIJDVS8L5FY4710XRA3ATR0R13ZS4U06TZJGFHY7A85G98' where id=27; -update noar ti set v2='I2TVEX131HUB85YRMIOQ0EZ877JJV9NN3829JZII2UUL8W6JDZ2YTTPUJEOOSZO70DEWQ219HQB4AUZQ1PK5AR7LSXZBRMJ79LT7HDO3F628313340XLC8XW9MYKLNCKHXIDLWN3719OQ6DKVD9M2ICE7H2EXGOM2QPFMXQXOP94IOJ3E7HB2CBFP5MOKNOO5VQHE6X08F59UZ987V7CIJDVS8L5FY4710XRA3ATR0R13ZS4U06TZJGFHY7A85G98' where id=27; -update noar tt set v3='BEO2IUTH4NNLYU7P4J3X59GRPRPYXRKTTY1QRD5JA7EQJC7YMOH47YSBPV0NIQVDV9PG32ZGPYYDOUX3IO7WLKL9AWBQJ40ZYIRW03G050XR8AL9UHWLCJY0R8SICLOEDOLD3T3CID0BMCGPD2NCF6FUO4LFGX3264J0VG37H86LHHAVCDYMNS1F4SA60XD15ZV72U64I8N2A6Z7V2FSZHXRTEHDDA85Q9W7PVRSZ7B3QFTP09MLZBBIN9CD6U0I8' where id=27; -update noar ti set v3='BEO2IUTH4NNLYU7P4J3X59GRPRPYXRKTTY1QRD5JA7EQJC7YMOH47YSBPV0NIQVDV9PG32ZGPYYDOUX3IO7WLKL9AWBQJ40ZYIRW03G050XR8AL9UHWLCJY0R8SICLOEDOLD3T3CID0BMCGPD2NCF6FUO4LFGX3264J0VG37H86LHHAVCDYMNS1F4SA60XD15ZV72U64I8N2A6Z7V2FSZHXRTEHDDA85Q9W7PVRSZ7B3QFTP09MLZBBIN9CD6U0I8' where id=27; -update noar tt set v0='1PDPPXTL3Q3N3ODSP63B7TX83IM7SOEG4NFY6OI1RGLVT7SISVSKZQYGJ3C6B5KCOYMQ38TO12I068XH31DJY8K6CZ361KKZSUEC548O569N46BRI2GP43LUD817L8KLLFVWMVDLBPRQN294SBPR7M2VETHS72W1IFG4BY29GZ9S5E3IB8TH63Z4O07GYHNC38YXPFUZKPPJV6CP608VJI4RPANS302SB83S5MAOJU5IW991CCWC5RPROEQ7GK1PI' where id=28; -update noar ti set v0='1PDPPXTL3Q3N3ODSP63B7TX83IM7SOEG4NFY6OI1RGLVT7SISVSKZQYGJ3C6B5KCOYMQ38TO12I068XH31DJY8K6CZ361KKZSUEC548O569N46BRI2GP43LUD817L8KLLFVWMVDLBPRQN294SBPR7M2VETHS72W1IFG4BY29GZ9S5E3IB8TH63Z4O07GYHNC38YXPFUZKPPJV6CP608VJI4RPANS302SB83S5MAOJU5IW991CCWC5RPROEQ7GK1PI' where id=28; -update noar tt set v1='1BVEFAHYLBA8SLVSSB5HIZ7BC5VCKN27FILHHNR25V9MO7XOTY1I8GEOZ8B9CB23L88542JN484MKMMZE94M9U3N8AP8HC30EYADQYQZSOH2TEAZ2DVHLEZ4V2FSYMQBTQMQ6EX1TNX638AM61D5KCC0EPJNPR7FS9VRD9O0TCR79D71YR1SDQ3BTAI1SQS62F7YABR7CEWKEAASQLYIF7F7MOBH933QPNTYDUOB9ONLF3LDLECDJGF4E1BSEWN3N' where id=28; -update noar ti set v1='1BVEFAHYLBA8SLVSSB5HIZ7BC5VCKN27FILHHNR25V9MO7XOTY1I8GEOZ8B9CB23L88542JN484MKMMZE94M9U3N8AP8HC30EYADQYQZSOH2TEAZ2DVHLEZ4V2FSYMQBTQMQ6EX1TNX638AM61D5KCC0EPJNPR7FS9VRD9O0TCR79D71YR1SDQ3BTAI1SQS62F7YABR7CEWKEAASQLYIF7F7MOBH933QPNTYDUOB9ONLF3LDLECDJGF4E1BSEWN3N' where id=28; -update noar tt set v2='L1AF2NRL0R3YVG5S7MF9YC4EYTZJ1KXX3D06XHKJSD3LF1UQ1D1B0DM1CANTSIF963KGJRXMHCCMU4G3LBQ6QOCDPRGBYM924YOGACFRXX846AW96A8W3U51XYYJM7DSW1BQO22D5S5E2SE2DPO0KLB6N7FK46WM14HUG644GEX8S9AWL50G3PRUB2S2FSQ3HMCR0ZSEPVXT90LPKZYIKJ1S8L2XBU6B4GLQ0PPI0VH49LVZR5ZKEKHYMGWHDDUZW' where id=28; -update noar ti set v2='L1AF2NRL0R3YVG5S7MF9YC4EYTZJ1KXX3D06XHKJSD3LF1UQ1D1B0DM1CANTSIF963KGJRXMHCCMU4G3LBQ6QOCDPRGBYM924YOGACFRXX846AW96A8W3U51XYYJM7DSW1BQO22D5S5E2SE2DPO0KLB6N7FK46WM14HUG644GEX8S9AWL50G3PRUB2S2FSQ3HMCR0ZSEPVXT90LPKZYIKJ1S8L2XBU6B4GLQ0PPI0VH49LVZR5ZKEKHYMGWHDDUZW' where id=28; -update noar tt set v3='CV3OK1PIW1WGJM1KQJTNXNRG9T9PYHH6DH9HPTYMTYPMLY98K8ZAM349JK4SR6B9L4U2TN0Y45H7OWHRZDQVICEZHRQ68XUKDBA1OYLL8L92XT6RFPLMYQPT3GHUIPA60B9IBXZFN80OT289ZDGXL2BHBI5JWB0KKN2BCWBTN2RTVBLMLH2LAF4NDBUJD7WGPUOX4RZG89RY18S03NZC5TR2OJJ5932O69ZG7VOK5Z11MR82PQKCGL2FFI9HWNXP1' where id=28; -update noar ti set v3='CV3OK1PIW1WGJM1KQJTNXNRG9T9PYHH6DH9HPTYMTYPMLY98K8ZAM349JK4SR6B9L4U2TN0Y45H7OWHRZDQVICEZHRQ68XUKDBA1OYLL8L92XT6RFPLMYQPT3GHUIPA60B9IBXZFN80OT289ZDGXL2BHBI5JWB0KKN2BCWBTN2RTVBLMLH2LAF4NDBUJD7WGPUOX4RZG89RY18S03NZC5TR2OJJ5932O69ZG7VOK5Z11MR82PQKCGL2FFI9HWNXP1' where id=28; -update noar tt set v0='HKVY2KBUSEEXYG7JWLSVT5HEG1NRG26L37LH2TZ8BV3CXVD17S8DXK9VVC6GOLYCBJUBU354FBTH2PPAKCK7EB2WB5Q8XEHF0YIV1CDMOWJV9ZMCNTP4CJFC9NG5Q2IOX0B9UEX9QJACR5QP9B2PBX3BA45TDKU0L9GRJV87S3LN7QRAAJM11JQJJ0VBN87YNV3UYMQ6V1846TX50EE4LVT7NFOELCWFHPX2FRUHEEWZ8URSBYOJVFI0WZJJ76Y0T' where id=29; -update noar ti set v0='HKVY2KBUSEEXYG7JWLSVT5HEG1NRG26L37LH2TZ8BV3CXVD17S8DXK9VVC6GOLYCBJUBU354FBTH2PPAKCK7EB2WB5Q8XEHF0YIV1CDMOWJV9ZMCNTP4CJFC9NG5Q2IOX0B9UEX9QJACR5QP9B2PBX3BA45TDKU0L9GRJV87S3LN7QRAAJM11JQJJ0VBN87YNV3UYMQ6V1846TX50EE4LVT7NFOELCWFHPX2FRUHEEWZ8URSBYOJVFI0WZJJ76Y0T' where id=29; -update noar tt set v1='GQXAY9FAJVF1NTFM7UT72OPOAUXIERUMW76E02IKK5MKROUTMTS9D9EQSAGGJSUJYJ037PSCV0P99CK4IERYQPR1Y6XS2DWVP9APLSG99K0SFB9CCNVO8SQ5CHV8C5WW6XB77RLITPR4RCNHFGP64CKRVAA513T2UOP3IN8UJ0C60PW42LB9NLG45CQPAZ2N20E71EN8H8ZJNWB6B7AVV2ZMZ4J3TMS655HDS7M9P5MA6F3G61I3ANWU5EB03QCR8' where id=29; -update noar ti set v1='GQXAY9FAJVF1NTFM7UT72OPOAUXIERUMW76E02IKK5MKROUTMTS9D9EQSAGGJSUJYJ037PSCV0P99CK4IERYQPR1Y6XS2DWVP9APLSG99K0SFB9CCNVO8SQ5CHV8C5WW6XB77RLITPR4RCNHFGP64CKRVAA513T2UOP3IN8UJ0C60PW42LB9NLG45CQPAZ2N20E71EN8H8ZJNWB6B7AVV2ZMZ4J3TMS655HDS7M9P5MA6F3G61I3ANWU5EB03QCR8' where id=29; -update noar tt set v2='KSTHQ3ASWTOIE2I31S7EK2GOVJ9CQAQDEENGHG8Q895WSZ6BV75VB325G98HIBCRVX0TA2H02A0DIJQH632SYSRGIR970TJHD6D3XZ6JTXIY761IWPHQXAZ2AHUCNC0O10Q9M09EYD5LMLY1EDJHZMOPQHXYORC7SC8WIYGF257AQ4KGGC1WX2FDYWP169C3VA0XBLOAW6NU0QP5NJT064P2KAQXKX5D9O1IUH6UEKIKQ2FJ538YPYMHCLT71KI1M' where id=29; -update noar ti set v2='KSTHQ3ASWTOIE2I31S7EK2GOVJ9CQAQDEENGHG8Q895WSZ6BV75VB325G98HIBCRVX0TA2H02A0DIJQH632SYSRGIR970TJHD6D3XZ6JTXIY761IWPHQXAZ2AHUCNC0O10Q9M09EYD5LMLY1EDJHZMOPQHXYORC7SC8WIYGF257AQ4KGGC1WX2FDYWP169C3VA0XBLOAW6NU0QP5NJT064P2KAQXKX5D9O1IUH6UEKIKQ2FJ538YPYMHCLT71KI1M' where id=29; -update noar tt set v3='HPKC8C0ZYFBF4AED2VI4EWCXWB98LDYW1ZUFTI8J1Z2ANUOEM79M8R9SHRX5JWK4TWEZUWWM1SECSKPIXYN0KFKXI1D9414L11TE2X5COSQAXOQK3LE7ZTVE16VYVPECLBKKZZRL593X936PHEY4O292BDY7EPMD4DITXQR8XCWIKYDZQEX06LHN3TOVQ8D8E72RL7I3GOQOV4MU143S3NSAOIGH9XU9CFPU9BOAVTO7O6MXWAEC04ULG68WD2REC' where id=29; -update noar ti set v3='HPKC8C0ZYFBF4AED2VI4EWCXWB98LDYW1ZUFTI8J1Z2ANUOEM79M8R9SHRX5JWK4TWEZUWWM1SECSKPIXYN0KFKXI1D9414L11TE2X5COSQAXOQK3LE7ZTVE16VYVPECLBKKZZRL593X936PHEY4O292BDY7EPMD4DITXQR8XCWIKYDZQEX06LHN3TOVQ8D8E72RL7I3GOQOV4MU143S3NSAOIGH9XU9CFPU9BOAVTO7O6MXWAEC04ULG68WD2REC' where id=29; -update noar tt set v0='SEB5VYG0UCCXMJBFOG9R0AYJZSYPBXHT7T3ESNEV1PK3Z9K6KW04UOOHGGFNJLK0EZYMGBNY3C5REE90DUDGQS8T26XPKH5OCJDHXTMTGHZAK8Y23TOI8TF01PMF1JZHHT1KNP4MVBNKA1MVLRINTFDNI2WIPYWXEHT2MTIX7M2H5JJ6JLBMWHTFGIPG08TUO67DI5FC50XOR7HYXH6KIAOYA9MTF37LPFRCG03QUSUVR9HEPZM7BF7W8VCUJH8BC' where id=30; -update noar ti set v0='SEB5VYG0UCCXMJBFOG9R0AYJZSYPBXHT7T3ESNEV1PK3Z9K6KW04UOOHGGFNJLK0EZYMGBNY3C5REE90DUDGQS8T26XPKH5OCJDHXTMTGHZAK8Y23TOI8TF01PMF1JZHHT1KNP4MVBNKA1MVLRINTFDNI2WIPYWXEHT2MTIX7M2H5JJ6JLBMWHTFGIPG08TUO67DI5FC50XOR7HYXH6KIAOYA9MTF37LPFRCG03QUSUVR9HEPZM7BF7W8VCUJH8BC' where id=30; -update noar tt set v1='BMPWURUEY3IZXOYMTMD7OQAHPFUE47A8T9Q8SXE95VEVVLBV6QRZEGEP9LBUFHUC17PAAS65D3Y1D9C4H3C3QTDOUAM5TW9XRYNSBQI0L67XBY1OREZ00QXQUV45FFST7JMFGWUY85649TNMF82ZOM3Y7NK68E0H08PMMTB3GGJTMUOH0TFO92HNVXA7HUENJERPX76LLIE6JHNT8HQW0T3BIMCEAX6I5B0ZBWJYRJC51O15TF1YGSH4ADZGR86M9' where id=30; -update noar ti set v1='BMPWURUEY3IZXOYMTMD7OQAHPFUE47A8T9Q8SXE95VEVVLBV6QRZEGEP9LBUFHUC17PAAS65D3Y1D9C4H3C3QTDOUAM5TW9XRYNSBQI0L67XBY1OREZ00QXQUV45FFST7JMFGWUY85649TNMF82ZOM3Y7NK68E0H08PMMTB3GGJTMUOH0TFO92HNVXA7HUENJERPX76LLIE6JHNT8HQW0T3BIMCEAX6I5B0ZBWJYRJC51O15TF1YGSH4ADZGR86M9' where id=30; -update noar tt set v2='EEM8ECWGIR59COM0OIM0NN9D6R8ZXT28QCAWLBI3WRB6W9IKHARIYLIQX645KTHOXLV8UFI65HD68U533H3XU3RVCWQPWONC377RQPEHEKJ09ME8N0A95K1BYKI9SS20AZ17ZDNFXUK93MX4SO8E2YOYSP1RVI98I0IMFWTQIICLN089NSSSDBL0W3P0KRI1AA98SDW1YJV5AE16175Z8YCR7DEKCVWRWYHQZ1HFLZJ0RZ5RB0HJLCCU89GT268UI' where id=30; -update noar ti set v2='EEM8ECWGIR59COM0OIM0NN9D6R8ZXT28QCAWLBI3WRB6W9IKHARIYLIQX645KTHOXLV8UFI65HD68U533H3XU3RVCWQPWONC377RQPEHEKJ09ME8N0A95K1BYKI9SS20AZ17ZDNFXUK93MX4SO8E2YOYSP1RVI98I0IMFWTQIICLN089NSSSDBL0W3P0KRI1AA98SDW1YJV5AE16175Z8YCR7DEKCVWRWYHQZ1HFLZJ0RZ5RB0HJLCCU89GT268UI' where id=30; -update noar tt set v3='XV4WH7M3MDSXGXB5AZY22QY4YFRU8CJ6603AF6D8ED5STNRWBG91O02FQ6ZE7URZZ2KH0XQNQLUP9ZB2S0YT8Y0SXL8342BN317FFP375MMQT9TM7LIN9I0B9IVV8QK5LFE7TS7CX2XGKD79M3AK9TZQIDK1GN8IM8HSAVY4L59VVA3X0FJTSQZ115E3Z26SQZL1QDK8YQSGEIXZO1KB8IZGP3UV3Z3XO5J4HXYEBZEONCVOPR6HCA9E7DCZ1EXT0' where id=30; -update noar ti set v3='XV4WH7M3MDSXGXB5AZY22QY4YFRU8CJ6603AF6D8ED5STNRWBG91O02FQ6ZE7URZZ2KH0XQNQLUP9ZB2S0YT8Y0SXL8342BN317FFP375MMQT9TM7LIN9I0B9IVV8QK5LFE7TS7CX2XGKD79M3AK9TZQIDK1GN8IM8HSAVY4L59VVA3X0FJTSQZ115E3Z26SQZL1QDK8YQSGEIXZO1KB8IZGP3UV3Z3XO5J4HXYEBZEONCVOPR6HCA9E7DCZ1EXT0' where id=30; -update noar tt set v0='USGQUUVN3R8AY8OU7J5CPG3D32QQ6KCVBBDJE5GKTDFUIS9ED1SWNSVIU08U6DNAKYJ1ADMODB8AYI5PFBZFI2FDQGT48134F87ET26CMB0IGTJTVYI7F7W8E18PUSM9VAHZN746YJ49ELHXHAIT30RP29VH2FD3122381W277SVWAOTQFBPJOL4ZR8164F18C522U1R3QSTDX0B5OL3RIPSIHT5HERUW4VLBE1X35KX9VOH7OFJ9WXR8YCAZNUE3' where id=31; -update noar ti set v0='USGQUUVN3R8AY8OU7J5CPG3D32QQ6KCVBBDJE5GKTDFUIS9ED1SWNSVIU08U6DNAKYJ1ADMODB8AYI5PFBZFI2FDQGT48134F87ET26CMB0IGTJTVYI7F7W8E18PUSM9VAHZN746YJ49ELHXHAIT30RP29VH2FD3122381W277SVWAOTQFBPJOL4ZR8164F18C522U1R3QSTDX0B5OL3RIPSIHT5HERUW4VLBE1X35KX9VOH7OFJ9WXR8YCAZNUE3' where id=31; -update noar tt set v1='6HG9A9NA3CXI9ZTB7UGBKZ26FFVJDDPKVAUB3RBVK5BDJ2WCCLZJ945CRC36FX0MWMEKFPPXZE0QLP37DPR3QBHHN05Q5GZPO0ULDC9PN96AGWNYJCNUKSUT1ODSPAGTTHYFOQGYHGX6GP35YU420OZV2TYOW1T58WF2CPDAXUGLV3URYGR7BM4OA6ISP2UKUAGYS43OX4S0EXH0E8DLHJ6L8H595DQHVK8KTRKMENLYKKCBWWZ30WX8HZ52W386V' where id=31; -update noar ti set v1='6HG9A9NA3CXI9ZTB7UGBKZ26FFVJDDPKVAUB3RBVK5BDJ2WCCLZJ945CRC36FX0MWMEKFPPXZE0QLP37DPR3QBHHN05Q5GZPO0ULDC9PN96AGWNYJCNUKSUT1ODSPAGTTHYFOQGYHGX6GP35YU420OZV2TYOW1T58WF2CPDAXUGLV3URYGR7BM4OA6ISP2UKUAGYS43OX4S0EXH0E8DLHJ6L8H595DQHVK8KTRKMENLYKKCBWWZ30WX8HZ52W386V' where id=31; -update noar tt set v2='506VCFQW8979C0B58OKSU2SQ3MFVVBJ4YMRG37AOSJOEP1CTE5ITTCH8ZHYW7WZK9B415H8ZYYOXEEN48JB28C5HCCJXVGM0UYCQT30CIB91J2J4HFYCG56715FSO2AWXWU0YV9P06WPA9LX6LSWWC7X08FS9Y6WJSA2PJZD2MO4PNDTL2841Z7AMU2X86C45BQ0LJM371XM91TEIVIY9H66021012660B01EXHUR72HXPHASQL536IZ9T8V82EM8' where id=31; -update noar ti set v2='506VCFQW8979C0B58OKSU2SQ3MFVVBJ4YMRG37AOSJOEP1CTE5ITTCH8ZHYW7WZK9B415H8ZYYOXEEN48JB28C5HCCJXVGM0UYCQT30CIB91J2J4HFYCG56715FSO2AWXWU0YV9P06WPA9LX6LSWWC7X08FS9Y6WJSA2PJZD2MO4PNDTL2841Z7AMU2X86C45BQ0LJM371XM91TEIVIY9H66021012660B01EXHUR72HXPHASQL536IZ9T8V82EM8' where id=31; -update noar tt set v3='HFPTZVT8CHM2WHXYE56GP3G0G2MG1C6BY6819KBWCF6IQ9ADZ8D8TNR363VG2VO23O4UO0SBD6N7DA91E5J690ITBTV6DLZ83D4EWTOHEFOLAUBX8WV2O35GP583NKRHIHN4PPOTAY07UU5QERNDJU5EH3GC7J5KF5TKDZV3IMXDNHM73IAQ0S1MEDNGLNF5VA1IO80YCFP51E9O4MUDL3D604H12DU69LHDU6BEZ72KC9TFZ1466NGIAYBS4QDF0' where id=31; -update noar ti set v3='HFPTZVT8CHM2WHXYE56GP3G0G2MG1C6BY6819KBWCF6IQ9ADZ8D8TNR363VG2VO23O4UO0SBD6N7DA91E5J690ITBTV6DLZ83D4EWTOHEFOLAUBX8WV2O35GP583NKRHIHN4PPOTAY07UU5QERNDJU5EH3GC7J5KF5TKDZV3IMXDNHM73IAQ0S1MEDNGLNF5VA1IO80YCFP51E9O4MUDL3D604H12DU69LHDU6BEZ72KC9TFZ1466NGIAYBS4QDF0' where id=31; -update noar tt set v0='7W6GSG53LDKXZSQ3MJD9MSCTTHGS75JLPS2HM3BRXDGDWGQBEAHDFNE4MZRRDT6OYZS9FLX8YTZF4YCAZAZL658BMFZ6NX58UJS0UYUUWASQDC3V4FTVG2X821RB3HB0PWJIONYGU0OZEH5OT7WPKMJMMZ05IF7CCE71ZFO18UOD16Q9B9RFW2BGO1G5TYM8X02KDBC08A4FJGU93HLTFZNPXDRZ53FTXBES98ODKJ1TWGGMYKPL1KBB4HBOAKJ9M' where id=32; -update noar ti set v0='7W6GSG53LDKXZSQ3MJD9MSCTTHGS75JLPS2HM3BRXDGDWGQBEAHDFNE4MZRRDT6OYZS9FLX8YTZF4YCAZAZL658BMFZ6NX58UJS0UYUUWASQDC3V4FTVG2X821RB3HB0PWJIONYGU0OZEH5OT7WPKMJMMZ05IF7CCE71ZFO18UOD16Q9B9RFW2BGO1G5TYM8X02KDBC08A4FJGU93HLTFZNPXDRZ53FTXBES98ODKJ1TWGGMYKPL1KBB4HBOAKJ9M' where id=32; -update noar tt set v1='GQLCDHO5FAU8T1I11V0LQ4ARS5AINR4XN75MMHND73CJ7GJ1O2GAF4DHT1IVDQVNGTPHTK67ZEBXCPQ5O6ZMURJDKGYEFV3ZIWTDITYY6R3DTJOV5BMCTW1MLQ2CB9ISMF68O2RP8YEOOHS3NHV3W7IXVOCNMCM91DZNT2HFS58JFBPB5KNW0M0EHJC9QOAY13IXH14V89MO1UQXV0TA0DKTG2JUH8ANGTBMYGKXVSXDAHQCOEUZP2LGXK2D1YRMD' where id=32; -update noar ti set v1='GQLCDHO5FAU8T1I11V0LQ4ARS5AINR4XN75MMHND73CJ7GJ1O2GAF4DHT1IVDQVNGTPHTK67ZEBXCPQ5O6ZMURJDKGYEFV3ZIWTDITYY6R3DTJOV5BMCTW1MLQ2CB9ISMF68O2RP8YEOOHS3NHV3W7IXVOCNMCM91DZNT2HFS58JFBPB5KNW0M0EHJC9QOAY13IXH14V89MO1UQXV0TA0DKTG2JUH8ANGTBMYGKXVSXDAHQCOEUZP2LGXK2D1YRMD' where id=32; -update noar tt set v2='OEK4R7RVKPVE3BM7AK1PU2QO4PF39QTXBT7G11U9GFFNSNEUE3Y01NWTJETKGAZ6O5UWAA0OD35F0YIFQ7ADCEDWCGU00RWYNW83GFF75XOMQOB8JA560HQLT2HIZSAOYD8QJRRKWJ2QHCPNKGTJGB7EIUMNRIT7Q2HPQGORLN41ADVYA6ARQ9EF2AI4FLAAO3ISEJNF2GYEYAY0NVX3JUCHRS82II58UEJGMKZS1W72WRXJ5X0EK6KIPW1JR3KFT' where id=32; -update noar ti set v2='OEK4R7RVKPVE3BM7AK1PU2QO4PF39QTXBT7G11U9GFFNSNEUE3Y01NWTJETKGAZ6O5UWAA0OD35F0YIFQ7ADCEDWCGU00RWYNW83GFF75XOMQOB8JA560HQLT2HIZSAOYD8QJRRKWJ2QHCPNKGTJGB7EIUMNRIT7Q2HPQGORLN41ADVYA6ARQ9EF2AI4FLAAO3ISEJNF2GYEYAY0NVX3JUCHRS82II58UEJGMKZS1W72WRXJ5X0EK6KIPW1JR3KFT' where id=32; -update noar tt set v3='JP3JGE7PM28QA2IX19WADVBAZYB1TL4V19TBYA79KFN8602XS04M0263X2TNW6BQGBV9J6HZ4Z1CH5TKNCH06ZS5NRIHWSZKS670BYM22RXF3UMZ6NXQO2L7HWNFMLUGQ7RDLYY7M4WFSKKBLG388WS8T5H5A7NJN7WIMJJWR8HC4QVO1T9S43286BIHLX1CFALNJ0J8NUM3QDZT2YO4R81A9H7M9WEIC0QK0VON062IG3MED6MB7F6NRMMQ7G0LW' where id=32; -update noar ti set v3='JP3JGE7PM28QA2IX19WADVBAZYB1TL4V19TBYA79KFN8602XS04M0263X2TNW6BQGBV9J6HZ4Z1CH5TKNCH06ZS5NRIHWSZKS670BYM22RXF3UMZ6NXQO2L7HWNFMLUGQ7RDLYY7M4WFSKKBLG388WS8T5H5A7NJN7WIMJJWR8HC4QVO1T9S43286BIHLX1CFALNJ0J8NUM3QDZT2YO4R81A9H7M9WEIC0QK0VON062IG3MED6MB7F6NRMMQ7G0LW' where id=32; -update noar tt set v0='XJUNKKGNZYOPYWI0YNXXTUYO0VD841OAH95L5489WKH42SBTEUYXJG4CAR6EH6R1PX4P61LYPWZJR5SSWBL4UGTDKWYSRURLEVI0O8Q8H8P1OOUFJ5OE67B7UGEH9S5VQR8WPIHT3ZVHX3I4NZA9BXF6S00FP4CNZRUB9VMZKXUGW9YDZLH6Q7B7W274I4TAXJTL65IP5GI7EPQLUYKO4C62OII3EGLV1IDI7MF4KX9Y77KOIE7ZPX0IQ8AWF0PF4' where id=33; -update noar ti set v0='XJUNKKGNZYOPYWI0YNXXTUYO0VD841OAH95L5489WKH42SBTEUYXJG4CAR6EH6R1PX4P61LYPWZJR5SSWBL4UGTDKWYSRURLEVI0O8Q8H8P1OOUFJ5OE67B7UGEH9S5VQR8WPIHT3ZVHX3I4NZA9BXF6S00FP4CNZRUB9VMZKXUGW9YDZLH6Q7B7W274I4TAXJTL65IP5GI7EPQLUYKO4C62OII3EGLV1IDI7MF4KX9Y77KOIE7ZPX0IQ8AWF0PF4' where id=33; -update noar tt set v1='2GQWU5SSRWW772TCQKN4Z75CTVI4FBNPOZ4GLCBJ53D266L1P00K4NU3QNVQOTD5S153G0JQQFB1UJUIK2GAXGBM5UONRK85R2MUU91IQL6G887Z7QXZ0B777NS6JO8CIEY5GKIUUXBP0Q0KC6QGVK9VT5RCLJ0LPJHGN02VPRE48EHNCELO5YVYQOJVXY1CZ085JG6U987ZBMSJAEA6YB5SU4KO3MH4WZ8BEGGOI7JE8C8R35T2SOAJQ0TNATC87' where id=33; -update noar ti set v1='2GQWU5SSRWW772TCQKN4Z75CTVI4FBNPOZ4GLCBJ53D266L1P00K4NU3QNVQOTD5S153G0JQQFB1UJUIK2GAXGBM5UONRK85R2MUU91IQL6G887Z7QXZ0B777NS6JO8CIEY5GKIUUXBP0Q0KC6QGVK9VT5RCLJ0LPJHGN02VPRE48EHNCELO5YVYQOJVXY1CZ085JG6U987ZBMSJAEA6YB5SU4KO3MH4WZ8BEGGOI7JE8C8R35T2SOAJQ0TNATC87' where id=33; -update noar tt set v2='8L6DFI5EFNTY2L9SFPMJFQGA2Y2BAHIZ8PXP7Q6K9WFCKGIOP3S61V74A5B3GJ8VF4FJYZEE5FEL6GWSQ6D5C1GA8P095H0ST5YD573I4INKDMON9GMN2LGW0E7ORZE72G37540A1H5K83QBUTLK24Y2NMK2R1QHW19XAXWC32RH0P0UAGRY6YS2PLBT7E2KP9A19KH5C7NZXEGP0GQPWHBP1AIQFGLMAOQZH2XFQOQ7CX6CAF6WNCC7WGXFGY2UJ' where id=33; -update noar ti set v2='8L6DFI5EFNTY2L9SFPMJFQGA2Y2BAHIZ8PXP7Q6K9WFCKGIOP3S61V74A5B3GJ8VF4FJYZEE5FEL6GWSQ6D5C1GA8P095H0ST5YD573I4INKDMON9GMN2LGW0E7ORZE72G37540A1H5K83QBUTLK24Y2NMK2R1QHW19XAXWC32RH0P0UAGRY6YS2PLBT7E2KP9A19KH5C7NZXEGP0GQPWHBP1AIQFGLMAOQZH2XFQOQ7CX6CAF6WNCC7WGXFGY2UJ' where id=33; -update noar tt set v3='9K0I0PMN2FVXAJ7ITQQK9AC1IP346NAT7RBGXBK5KQ42JA73HZIC05K9BW1L9KU2VR0RB9H50DPYN0VOQ58RC4WRSW49L0T4TOV4S96BZWWJBZUIX5Z76QFA8EQQ5PUE6RYTIEGVYSVIMQ14JY75BV44ZXVCTFI71JS4S2J6FXKRICRY3XM1PREQ4ZV6O8BHZTL5NRTLSI4INTSRBYV1QBDJ0RCU6RIQNBYLYN93BMV9KBEDVQSQXJESY52EMZ1EI' where id=33; -update noar ti set v3='9K0I0PMN2FVXAJ7ITQQK9AC1IP346NAT7RBGXBK5KQ42JA73HZIC05K9BW1L9KU2VR0RB9H50DPYN0VOQ58RC4WRSW49L0T4TOV4S96BZWWJBZUIX5Z76QFA8EQQ5PUE6RYTIEGVYSVIMQ14JY75BV44ZXVCTFI71JS4S2J6FXKRICRY3XM1PREQ4ZV6O8BHZTL5NRTLSI4INTSRBYV1QBDJ0RCU6RIQNBYLYN93BMV9KBEDVQSQXJESY52EMZ1EI' where id=33; -update noar tt set v0='SI26W3G68GS54M7AMEB9AG2I5OEK9BA89KR7TG7KLBFOUGXH1MYIFCYYYX32I96QTKRCRP5QJJDQDR5OJLGC2F4QO90F93LJZZAE6BTN98DFS92IA1XQNN3XKSHW2I9Y02FHVFQ84YOZIM7XLA10KPJ1ZEWNZ7EA99JXHIF4EX3PQRO99LEQ0YXTEWZJQ47OEJZB3DAQDQAKLX7KKZZ2PIGN5EOWANGLUXCKFDX1OOVXB4E1XHUF6O0S32A72YKPG' where id=34; -update noar ti set v0='SI26W3G68GS54M7AMEB9AG2I5OEK9BA89KR7TG7KLBFOUGXH1MYIFCYYYX32I96QTKRCRP5QJJDQDR5OJLGC2F4QO90F93LJZZAE6BTN98DFS92IA1XQNN3XKSHW2I9Y02FHVFQ84YOZIM7XLA10KPJ1ZEWNZ7EA99JXHIF4EX3PQRO99LEQ0YXTEWZJQ47OEJZB3DAQDQAKLX7KKZZ2PIGN5EOWANGLUXCKFDX1OOVXB4E1XHUF6O0S32A72YKPG' where id=34; -update noar tt set v1='PO8QZ3A2OC1BP6M07DVLPL1GP8ODXZIVUPRPZ6ZCKOIQDU3GFR8D10N2TVB9J7COE8IAEJ1RVSDW84K9T2AGCJQ3DCQKIYESQK0VZSUB5GNLOQYZ9MZ17VYU7CFTZGGHCF8R82HJB7NVCLMVQ1AJZK9P8F89W5IOQ7J59OX0QKV0L712WJX2ARNW75SQPS7FK67QSHKNRDUIEXJVR3F54FY3Z4BL0O9CCN1U2UIUHTGC1ZUZS0TFPN9AZDGHLF9H2' where id=34; -update noar ti set v1='PO8QZ3A2OC1BP6M07DVLPL1GP8ODXZIVUPRPZ6ZCKOIQDU3GFR8D10N2TVB9J7COE8IAEJ1RVSDW84K9T2AGCJQ3DCQKIYESQK0VZSUB5GNLOQYZ9MZ17VYU7CFTZGGHCF8R82HJB7NVCLMVQ1AJZK9P8F89W5IOQ7J59OX0QKV0L712WJX2ARNW75SQPS7FK67QSHKNRDUIEXJVR3F54FY3Z4BL0O9CCN1U2UIUHTGC1ZUZS0TFPN9AZDGHLF9H2' where id=34; -update noar tt set v2='5N6HRFQ4949NXIMOPNIA6IKQHEXN2B0R7G3T2WS2RCWO7LVJSURZRCQ52O45R598M3BDHGO1ZW22C0WAOOWJ3CDP3SAXKTRHC2W5N9R8MMR50977PSLKYLOTXZ6SKNER8BT4LC7SCPHIRDAFFPP9398I678Q3EV3WIOZDJGE84L3KV0FLNJU0M0OACPH7HD6ENJX4MYB2L29SR28SVCEQUIR644Y0ODRMU8JYK18VZW80UUUR6KPU1LK2JMPU0WPR' where id=34; -update noar ti set v2='5N6HRFQ4949NXIMOPNIA6IKQHEXN2B0R7G3T2WS2RCWO7LVJSURZRCQ52O45R598M3BDHGO1ZW22C0WAOOWJ3CDP3SAXKTRHC2W5N9R8MMR50977PSLKYLOTXZ6SKNER8BT4LC7SCPHIRDAFFPP9398I678Q3EV3WIOZDJGE84L3KV0FLNJU0M0OACPH7HD6ENJX4MYB2L29SR28SVCEQUIR644Y0ODRMU8JYK18VZW80UUUR6KPU1LK2JMPU0WPR' where id=34; -update noar tt set v3='II772IKVGX1MX8RKL36PYI9JO2BZXQKCQARD630DZQFWCMPYLDRL0XU563SUV37FNISKK1C06JGTMUHKPODBSQ7R8TH9FPXSJVQUBDU6V23GBDOGBQIFAZAH0TWAE6WKG3P2S4AD5EY7K6IM5MM3NJJQRCJM6REH78QG081T5NMLCNGLZCBXI71MTSZ2AMBHU159LJR9XQ59A6SJT7C3UZRRGT0FFVWKKZXDBZV1FXQJ6KM5WXQPCVNO5C22Q5UPY' where id=34; -update noar ti set v3='II772IKVGX1MX8RKL36PYI9JO2BZXQKCQARD630DZQFWCMPYLDRL0XU563SUV37FNISKK1C06JGTMUHKPODBSQ7R8TH9FPXSJVQUBDU6V23GBDOGBQIFAZAH0TWAE6WKG3P2S4AD5EY7K6IM5MM3NJJQRCJM6REH78QG081T5NMLCNGLZCBXI71MTSZ2AMBHU159LJR9XQ59A6SJT7C3UZRRGT0FFVWKKZXDBZV1FXQJ6KM5WXQPCVNO5C22Q5UPY' where id=34; -update noar tt set v0='6RRGZWPIE81BJ57BSNVWQGQXCK05KYLUFA471G7L3UUN7EX9J1C534B3X41QN8YY6WEO5RMWFSEE30MY01LQN1VEDZA0F7M0K32LZC6ED4VTDPD6IZ2K2443N9R2LO8VOCLZLRJZDBPWIUBNVNDENVFK31M7OVZV0J2JGI4Y2JJQMKJG7SAN3F21OTGURRJ67ARF3NJ80SA2956N74NMUESIWR5C8NUHBGMAP8NJBTS5EZC902Y70TRSQCJP7321P' where id=35; -update noar ti set v0='6RRGZWPIE81BJ57BSNVWQGQXCK05KYLUFA471G7L3UUN7EX9J1C534B3X41QN8YY6WEO5RMWFSEE30MY01LQN1VEDZA0F7M0K32LZC6ED4VTDPD6IZ2K2443N9R2LO8VOCLZLRJZDBPWIUBNVNDENVFK31M7OVZV0J2JGI4Y2JJQMKJG7SAN3F21OTGURRJ67ARF3NJ80SA2956N74NMUESIWR5C8NUHBGMAP8NJBTS5EZC902Y70TRSQCJP7321P' where id=35; -update noar tt set v1='V8VTPC7BEKW93PHXRRAE123CQ9JIN0L0PQJA9PCBR06O3FF1HD8CHI8OKAABN2J42PXJ2C8JDLCCMGE0MS0D1GF3POQQ5856K3KN49HYD074NAG1ACYL7VOPOVCZMEZMI2Y7KINSBM7JMJNICJ0YTIW1D97QGC9NO1HFME9Q1M9SU98JPU44IGUPFNFP26JNQ6GH9A880NB3BER6SNDPA17S8OV1WM5Z28RYDP057BYFHB041DPAEVYW5KK50YXF8' where id=35; -update noar ti set v1='V8VTPC7BEKW93PHXRRAE123CQ9JIN0L0PQJA9PCBR06O3FF1HD8CHI8OKAABN2J42PXJ2C8JDLCCMGE0MS0D1GF3POQQ5856K3KN49HYD074NAG1ACYL7VOPOVCZMEZMI2Y7KINSBM7JMJNICJ0YTIW1D97QGC9NO1HFME9Q1M9SU98JPU44IGUPFNFP26JNQ6GH9A880NB3BER6SNDPA17S8OV1WM5Z28RYDP057BYFHB041DPAEVYW5KK50YXF8' where id=35; -update noar tt set v2='M40EG1BA6XTQLKBSJN8A9739NS4QI29XDURDLEMMNIW1CXAOZVGX5J1VG9JPWJKKLNYWKTXEYSEIEUR50OIU84YUDKOBNCA4P4IVD86PMBWPJ6Q0WJU3P7KF3DLQ9H8EP2JJMSSHSR5BCEIS4TSLDTF2H47IH637X80DJNMCTJN2ENEK51ST3UCQQ78AEQ5QHM1XBNW9BR1PPFUMU63NOK8BSM4Y24RCJ9QZWLBAPI6Q13CIB3V4MYZGPFPAYM5E9' where id=35; -update noar ti set v2='M40EG1BA6XTQLKBSJN8A9739NS4QI29XDURDLEMMNIW1CXAOZVGX5J1VG9JPWJKKLNYWKTXEYSEIEUR50OIU84YUDKOBNCA4P4IVD86PMBWPJ6Q0WJU3P7KF3DLQ9H8EP2JJMSSHSR5BCEIS4TSLDTF2H47IH637X80DJNMCTJN2ENEK51ST3UCQQ78AEQ5QHM1XBNW9BR1PPFUMU63NOK8BSM4Y24RCJ9QZWLBAPI6Q13CIB3V4MYZGPFPAYM5E9' where id=35; -update noar tt set v3='ELPMQLP458OO7NAL97BIEJ1J7ZM4U1BGMDBUTPH1A4WKHDMB5QVX3TJUIELK1MQXH81F008HC2QV2ZM707GB67WFIG2YR7KH3L1HR5JH1527P6BOJG35ORSSIHD1SOFIN39STN53GG74MIARZBYGJHNG1TQGI0A6SW3VV9OVM2MDSJN6IE3E9Z45WAJ2J03HZQ4HEJF96PEGNOPP3RC47419S9HKF1HSU22T6ZT8QBIY1X0U1VTXE73UWUYCSQ4XZ' where id=35; -update noar ti set v3='ELPMQLP458OO7NAL97BIEJ1J7ZM4U1BGMDBUTPH1A4WKHDMB5QVX3TJUIELK1MQXH81F008HC2QV2ZM707GB67WFIG2YR7KH3L1HR5JH1527P6BOJG35ORSSIHD1SOFIN39STN53GG74MIARZBYGJHNG1TQGI0A6SW3VV9OVM2MDSJN6IE3E9Z45WAJ2J03HZQ4HEJF96PEGNOPP3RC47419S9HKF1HSU22T6ZT8QBIY1X0U1VTXE73UWUYCSQ4XZ' where id=35; -update noar tt set v0='P7JUPRGYYN2914ZB40YYAE78T3CZYKZ3LWMT9X3X94Q4XYS7G4LT1VF4SPHLS0LZQHLAQP1ES8BPI0XNEYGXQC662H4EILD1Z2P4E4CBRYDIJU9OG7SXUSZ6RPHCGYBVQNOFDQIIBC66FGK9V1S0C8RXMQ6R6GL77ZR35HI7HVHSQ0USEBG0J7TQC67CY8V6BD8TRQO0O8SX0HRAVULJMTJR60HAEYYNT4DE25IDPIGX7T88NQUS8ZYOQD9U5LS49' where id=36; -update noar ti set v0='P7JUPRGYYN2914ZB40YYAE78T3CZYKZ3LWMT9X3X94Q4XYS7G4LT1VF4SPHLS0LZQHLAQP1ES8BPI0XNEYGXQC662H4EILD1Z2P4E4CBRYDIJU9OG7SXUSZ6RPHCGYBVQNOFDQIIBC66FGK9V1S0C8RXMQ6R6GL77ZR35HI7HVHSQ0USEBG0J7TQC67CY8V6BD8TRQO0O8SX0HRAVULJMTJR60HAEYYNT4DE25IDPIGX7T88NQUS8ZYOQD9U5LS49' where id=36; -update noar tt set v1='2V2NF6ULETBD58Z0LEMRB25477HWMDYOYYNLWI3KR86K3CMV5ZF6QGOGFI8FEAYJZVDP9EMU3C291ZXCWL8GDSPIOHPCHL7BU4T9VIS3Y5ZRDRZY9LFR2TOG25ZDI5I8K6EL17ZNRAZ5CANMEGLAY2VHWV8CLBSY3TDEIX9WS25VRYZM76R3A1GSGCIE0JDGFOA1MUJSP14SQD757ME54GACJHG4I0WNR1QKKF7MW3ISJULIWP1MGS8NOG0KZ4YHF' where id=36; -update noar ti set v1='2V2NF6ULETBD58Z0LEMRB25477HWMDYOYYNLWI3KR86K3CMV5ZF6QGOGFI8FEAYJZVDP9EMU3C291ZXCWL8GDSPIOHPCHL7BU4T9VIS3Y5ZRDRZY9LFR2TOG25ZDI5I8K6EL17ZNRAZ5CANMEGLAY2VHWV8CLBSY3TDEIX9WS25VRYZM76R3A1GSGCIE0JDGFOA1MUJSP14SQD757ME54GACJHG4I0WNR1QKKF7MW3ISJULIWP1MGS8NOG0KZ4YHF' where id=36; -update noar tt set v2='UUVWDIMYHHRSSM4UKUZGDR4TUGPPQKT9ZKTUEY5D88C3WV8O7RWIWFCLYN76BH9PZDPDPEIQLONIWVGIJY60BRQEN6D2CNQFDJHXP6QZLSXTNPG27YJVHZMOVE3D216A4DKHJLSJGXW3VRKH0SLT5PBEHAZDFIYW93HO22I5JM60N6Q6PZXFABE07WBIILAY8LOQRD7B7F4CTETS4XVO5DDJCQGNOTDLF1WUNL2DDXSCNUONOA12G6E8O8ZC3RDPI' where id=36; -update noar ti set v2='UUVWDIMYHHRSSM4UKUZGDR4TUGPPQKT9ZKTUEY5D88C3WV8O7RWIWFCLYN76BH9PZDPDPEIQLONIWVGIJY60BRQEN6D2CNQFDJHXP6QZLSXTNPG27YJVHZMOVE3D216A4DKHJLSJGXW3VRKH0SLT5PBEHAZDFIYW93HO22I5JM60N6Q6PZXFABE07WBIILAY8LOQRD7B7F4CTETS4XVO5DDJCQGNOTDLF1WUNL2DDXSCNUONOA12G6E8O8ZC3RDPI' where id=36; -update noar tt set v3='PCJJE28CZRNLBBLYX00AVE0PSWUQVEY5AWYSAX3JI85D78HGQ9M7XW7TQT17IDY331HMCWFO4NB4BXXCQD36G5ZJAZ67E6WIOFWW1BKYMIOJYQLEQYP8LCWWSA618L4IRIL6LHJIZ4Q2IYK3QISO5XS91YR7SPPFJNMZ2QIT8FXXWH26HBIZYVXEAUSW6W6K6FMPUJ9NKSHMPG24TNU1UKVV6TEUTSO0T1RXVXWKO89LZDXS21LWUHB2X8TE1RKBS' where id=36; -update noar ti set v3='PCJJE28CZRNLBBLYX00AVE0PSWUQVEY5AWYSAX3JI85D78HGQ9M7XW7TQT17IDY331HMCWFO4NB4BXXCQD36G5ZJAZ67E6WIOFWW1BKYMIOJYQLEQYP8LCWWSA618L4IRIL6LHJIZ4Q2IYK3QISO5XS91YR7SPPFJNMZ2QIT8FXXWH26HBIZYVXEAUSW6W6K6FMPUJ9NKSHMPG24TNU1UKVV6TEUTSO0T1RXVXWKO89LZDXS21LWUHB2X8TE1RKBS' where id=36; -update noar tt set v0='VZYC2EVSQNE7K10HWF8BZ6FKZX45ANCG9V41LPF4QK5NS5OLC1XMBWMRWXP3X7APPGKBVOX8YAEORQWLKDALS2TJ5EELTSGC2IESQSU49YNB0T98ITOV2D9NPZPB7P340GD5ZGGGMCW6BJ5WUJQRTX397TIX0146ZD8BQMDH42EJ7ZAZGJ9SWGHIDIGPEE2TBR0QHGPVPH184AN5N0628DLV5PVIBPEUDFMJJMKRHU6YMZAG8BFPESJYSP10IJE9A' where id=37; -update noar ti set v0='VZYC2EVSQNE7K10HWF8BZ6FKZX45ANCG9V41LPF4QK5NS5OLC1XMBWMRWXP3X7APPGKBVOX8YAEORQWLKDALS2TJ5EELTSGC2IESQSU49YNB0T98ITOV2D9NPZPB7P340GD5ZGGGMCW6BJ5WUJQRTX397TIX0146ZD8BQMDH42EJ7ZAZGJ9SWGHIDIGPEE2TBR0QHGPVPH184AN5N0628DLV5PVIBPEUDFMJJMKRHU6YMZAG8BFPESJYSP10IJE9A' where id=37; -update noar tt set v1='QLGG0UEIAR6V8B7G6BVB9NTUOARB4FRCADPLCGJQY8DO5JA4B76917TI57RDEY6Z1IE1PLMDY7OXZOHABENG6EBQGTKEP2WEYWLA8VX4JUR7BFW189IUSX41ZCEANXXBI0B7W8GYHRFRPLRM43U4U10HZI8ZD6DQLKJY2V5G36PUBQMCYVKGTHBQ30MJFAMLWPB76ECVDG5YN8GVTXE229B8S3P1CJ7DSN0UWRN7JBZF03S9LRZXFI4Z04CY81TRT' where id=37; -update noar ti set v1='QLGG0UEIAR6V8B7G6BVB9NTUOARB4FRCADPLCGJQY8DO5JA4B76917TI57RDEY6Z1IE1PLMDY7OXZOHABENG6EBQGTKEP2WEYWLA8VX4JUR7BFW189IUSX41ZCEANXXBI0B7W8GYHRFRPLRM43U4U10HZI8ZD6DQLKJY2V5G36PUBQMCYVKGTHBQ30MJFAMLWPB76ECVDG5YN8GVTXE229B8S3P1CJ7DSN0UWRN7JBZF03S9LRZXFI4Z04CY81TRT' where id=37; -update noar tt set v2='WCFWJ2VCYRPGWTYQ5PZUJTMM9VA53T1RBSBUPLD36IXOEY13EV5TT38RARM7V82X2I7ZJ1ZLRXAF99PTYD8K1G8JIGH7N25T43E9NIRPMGR7RV2OL9WLBEJ0OT0CQNBKJIO7F2OMVUA20GKMES8BOU74NBJPNCVODQAJFRLK4SP2WDM6KUYXLOY7C2BYJASID5SQNS7ZFZKWHN5M40BGP9LZKDNK05J4N5HA4MHVJLIFHDEUGJ7XPYNGA79SZBBLT' where id=37; -update noar ti set v2='WCFWJ2VCYRPGWTYQ5PZUJTMM9VA53T1RBSBUPLD36IXOEY13EV5TT38RARM7V82X2I7ZJ1ZLRXAF99PTYD8K1G8JIGH7N25T43E9NIRPMGR7RV2OL9WLBEJ0OT0CQNBKJIO7F2OMVUA20GKMES8BOU74NBJPNCVODQAJFRLK4SP2WDM6KUYXLOY7C2BYJASID5SQNS7ZFZKWHN5M40BGP9LZKDNK05J4N5HA4MHVJLIFHDEUGJ7XPYNGA79SZBBLT' where id=37; -update noar tt set v3='MO2GY6Y24Z3PV67LWO081TA9FMHWX10JVJ8OUIWPACPFZ9PBHPDLHC0B23IQ2YP49BC6WOBVP1L25GG9T0SMQHEAVVN9T2SK6EBOHYCPMB9BIZYSWBES9E3I8AQS4F2ILSAHEKM8UD9TK8QC6CCAN25ZAWR8J0KYTCO63FYA3BJLP0UIL2RJIAST9GDWNQPL463P3B1WWOTGGPE31C9DHKDI20SHQS4Q872VL6HX3MRYM1JB45SOR8SCGWAXVXWQU' where id=37; -update noar ti set v3='MO2GY6Y24Z3PV67LWO081TA9FMHWX10JVJ8OUIWPACPFZ9PBHPDLHC0B23IQ2YP49BC6WOBVP1L25GG9T0SMQHEAVVN9T2SK6EBOHYCPMB9BIZYSWBES9E3I8AQS4F2ILSAHEKM8UD9TK8QC6CCAN25ZAWR8J0KYTCO63FYA3BJLP0UIL2RJIAST9GDWNQPL463P3B1WWOTGGPE31C9DHKDI20SHQS4Q872VL6HX3MRYM1JB45SOR8SCGWAXVXWQU' where id=37; -update noar tt set v0='BLEMK4WHMRMRC2168NSCHC0J1XDRQJAJWN898EK8XDNFPUQ8WK9G70B1E4C2J6J97KA2BH97WSPQKL7I7TWP26FVJQH15MQ7AHG0Q0B3W2ZTTBALUYM4S171OJV1YC0D1IVK6VSQMLL27OQR9Q8DPF6NAZJVU7BWCEBW79SVGCWFIBE997DUYGV24MP955I2QWGA0D8TSJLJPU2C6P8ZAX1ZZHBZ7PWBKNLFQ0UWZF3FWFY8E1O6K17P3Z6CY5CD7' where id=38; -update noar ti set v0='BLEMK4WHMRMRC2168NSCHC0J1XDRQJAJWN898EK8XDNFPUQ8WK9G70B1E4C2J6J97KA2BH97WSPQKL7I7TWP26FVJQH15MQ7AHG0Q0B3W2ZTTBALUYM4S171OJV1YC0D1IVK6VSQMLL27OQR9Q8DPF6NAZJVU7BWCEBW79SVGCWFIBE997DUYGV24MP955I2QWGA0D8TSJLJPU2C6P8ZAX1ZZHBZ7PWBKNLFQ0UWZF3FWFY8E1O6K17P3Z6CY5CD7' where id=38; -update noar tt set v1='3U1EKVNAUPBJSZOF7VTPEYGHFUIJ11JETHL8HU65OWMD8TELHE2THLI58JEBCKXCII7QQQAWUGZKA1FWS0EHZUXQFK8DQJ4OB0PWFLKSHCHZDF2HBCY6WRSI7J447TTFNSDGPH07S9J17RGIXI8ROWSPNRXWLOFLHKZBXPMWDL01JWNWFAZ8SFVMBO2V02E2IZ3AO7KUB0LGJTZBG1FAWT0C6PCP54YI5KRYB7ZJSTPUYZXNB3U5P1YFUZHCJ2U8M' where id=38; -update noar ti set v1='3U1EKVNAUPBJSZOF7VTPEYGHFUIJ11JETHL8HU65OWMD8TELHE2THLI58JEBCKXCII7QQQAWUGZKA1FWS0EHZUXQFK8DQJ4OB0PWFLKSHCHZDF2HBCY6WRSI7J447TTFNSDGPH07S9J17RGIXI8ROWSPNRXWLOFLHKZBXPMWDL01JWNWFAZ8SFVMBO2V02E2IZ3AO7KUB0LGJTZBG1FAWT0C6PCP54YI5KRYB7ZJSTPUYZXNB3U5P1YFUZHCJ2U8M' where id=38; -update noar tt set v2='XYXXOVJA3MVYICGJI92SLTQ8MA44NNQ456OMEAT8TZDDBCNWJH5ZEUVBGGWR9AXMHXKCAMZT6RQZVR6N1R5XOV257EFKV4JKIBOHRSOU0H057G5OZGGECT6YVFC04GVS3BFHXQYIB0AXOWPDAEM9B82ISPB1WWG9I1QEMGHUXRYFNWK7DWORZMFYP25BTUYYFJB7BYPZ37SCAEWMWNNRXLL8PWQYIW12K68AJ1VGLNAE7X2OY41F0FM9JPDSBUPUQ' where id=38; -update noar ti set v2='XYXXOVJA3MVYICGJI92SLTQ8MA44NNQ456OMEAT8TZDDBCNWJH5ZEUVBGGWR9AXMHXKCAMZT6RQZVR6N1R5XOV257EFKV4JKIBOHRSOU0H057G5OZGGECT6YVFC04GVS3BFHXQYIB0AXOWPDAEM9B82ISPB1WWG9I1QEMGHUXRYFNWK7DWORZMFYP25BTUYYFJB7BYPZ37SCAEWMWNNRXLL8PWQYIW12K68AJ1VGLNAE7X2OY41F0FM9JPDSBUPUQ' where id=38; -update noar tt set v3='5L73SKY8XCDCE44Z5XSXL2IK878E2ZQV6PCRB3Q1CWQ7QU6OBEAXJO7RN2HPX7IXDR17QR54S3C2YCE8FV9X4ILFP7ZZ69FWM2W50ALPA72SUMDBYWVGC9B8ICDOP9PHYZ89ESF0SD9X71M2JGGNAQYAEL6TK15KCSG7EAIUWSW6M3SOZLD4GSUWJZ971TG9UP1AWK6T00KFZJVOAD76ZV10XZ8PZER0DIKK7FBZ18TQDQ4Z0KX8WQM6LX0APV7H4' where id=38; -update noar ti set v3='5L73SKY8XCDCE44Z5XSXL2IK878E2ZQV6PCRB3Q1CWQ7QU6OBEAXJO7RN2HPX7IXDR17QR54S3C2YCE8FV9X4ILFP7ZZ69FWM2W50ALPA72SUMDBYWVGC9B8ICDOP9PHYZ89ESF0SD9X71M2JGGNAQYAEL6TK15KCSG7EAIUWSW6M3SOZLD4GSUWJZ971TG9UP1AWK6T00KFZJVOAD76ZV10XZ8PZER0DIKK7FBZ18TQDQ4Z0KX8WQM6LX0APV7H4' where id=38; -update noar tt set v0='B4IMNLSGG9KWHN21N6KI1DE8AM0SFA8P6YV5WF3PWKLW9LLO20AW2BL8MH60HAQEP15LE59KU0U9KFE1ZXW154CJXMWNXNWTV1GNR24T6ES5EAXT0Q9P5SN2FAP4BQI8PTPPE0S7FZ5W5NUAB0YG1UXR4KGWNFFZELBBJDBGR4TWIR6SZ0UWLKL398XP8B7712OUSLUBYJZD03GPBBQMWBVSPZWU1O2B4ALC0MFXF7XEINIDHMUWI64EVIB3YTFWW' where id=39; -update noar ti set v0='B4IMNLSGG9KWHN21N6KI1DE8AM0SFA8P6YV5WF3PWKLW9LLO20AW2BL8MH60HAQEP15LE59KU0U9KFE1ZXW154CJXMWNXNWTV1GNR24T6ES5EAXT0Q9P5SN2FAP4BQI8PTPPE0S7FZ5W5NUAB0YG1UXR4KGWNFFZELBBJDBGR4TWIR6SZ0UWLKL398XP8B7712OUSLUBYJZD03GPBBQMWBVSPZWU1O2B4ALC0MFXF7XEINIDHMUWI64EVIB3YTFWW' where id=39; -update noar tt set v1='WWW6M0YXSMIZJAFX1NPFPL7B9S75TM45GCU759PAHIDWACM5LB5IOY7GZSYK0QOZC9DQ2NNAI4ZW0RAXSZFV6YZ85RTW5JMJTVPYTCJAHSL2QPOZWURJTUI7U3ASW5P99X5QNXPXOCIWVWWFG86L7YLHCE83HPA1V1P3VFPZB6ASQEZIKM5ZKIMFND91UQMCNNYQKSKEMFDAJ7CE9Y134AV2HI4V2O5XA8EL0CDP3UIOBQ4K0WMIPE3I8HHDB18P3' where id=39; -update noar ti set v1='WWW6M0YXSMIZJAFX1NPFPL7B9S75TM45GCU759PAHIDWACM5LB5IOY7GZSYK0QOZC9DQ2NNAI4ZW0RAXSZFV6YZ85RTW5JMJTVPYTCJAHSL2QPOZWURJTUI7U3ASW5P99X5QNXPXOCIWVWWFG86L7YLHCE83HPA1V1P3VFPZB6ASQEZIKM5ZKIMFND91UQMCNNYQKSKEMFDAJ7CE9Y134AV2HI4V2O5XA8EL0CDP3UIOBQ4K0WMIPE3I8HHDB18P3' where id=39; -update noar tt set v2='R72ZGMWBTTUYGM2EJ0DQFE7LY1B8C6F83VRQQ1EI1TM4GYOMQORPCNZ2FKS1802XU7UGHGMJ5GLB7TVDT54HNVXK9Q6V7H8M7TOUP9L0FC06Y0X3HASMUJPBEB3VTO47OGQ345QKRUGGMMBFK16LTNBNK1QFH5NF3Y2LVD2UV2NALPUPERN0YB06DZ736UPOJS78W22XAHKQ97LU19AP5JXBSLSMKTU96IP087DB89XNP8463RHND2D81SZXX0HQ9' where id=39; -update noar ti set v2='R72ZGMWBTTUYGM2EJ0DQFE7LY1B8C6F83VRQQ1EI1TM4GYOMQORPCNZ2FKS1802XU7UGHGMJ5GLB7TVDT54HNVXK9Q6V7H8M7TOUP9L0FC06Y0X3HASMUJPBEB3VTO47OGQ345QKRUGGMMBFK16LTNBNK1QFH5NF3Y2LVD2UV2NALPUPERN0YB06DZ736UPOJS78W22XAHKQ97LU19AP5JXBSLSMKTU96IP087DB89XNP8463RHND2D81SZXX0HQ9' where id=39; -update noar tt set v3='I6RAY59JTJM0VVCWEA3KVOGUZ8LUVEWO9TC7IVR40TRTRX0EOMNNV46AHEFHCFA5MJYFLKPDGJXP97WZKG2K3HGUKG6JX81M3SOEX2WNDOFU3J0WD253TGUBE18343XG2HZLI1N0M7GLQ5K179NZ5J7C4QJKV031V3L1PMULL8EAWT1XL05SHW9ZF8TIQ3RRWIZK8T4QDDV6MHZP9B6WXWS6UPGJ448BSK59XLXHNA2ZKADCUV3DOIGZM1TDD2WVN' where id=39; -update noar ti set v3='I6RAY59JTJM0VVCWEA3KVOGUZ8LUVEWO9TC7IVR40TRTRX0EOMNNV46AHEFHCFA5MJYFLKPDGJXP97WZKG2K3HGUKG6JX81M3SOEX2WNDOFU3J0WD253TGUBE18343XG2HZLI1N0M7GLQ5K179NZ5J7C4QJKV031V3L1PMULL8EAWT1XL05SHW9ZF8TIQ3RRWIZK8T4QDDV6MHZP9B6WXWS6UPGJ448BSK59XLXHNA2ZKADCUV3DOIGZM1TDD2WVN' where id=39; -update noar tt set v0='993LPX5KQ7LIL089G7YFC4ZLW6MBK1SMIMSHVEVLVLG46WJP2H6K9KC3V7MK4UB0I0LHSQW9I1Y3S4HGC781WR9F5QIDL6TL5P3Q9MAL1IFJW5G9MAII7CI0UOJQYLAJDW837MVT7NVVBG0KN58WBZGWP4TEHE5SKSD6B63MLSWUW3HTENUPHWL81A4SV3JL4GR6FJWQOU3RCBLM3H3ZKKIHLS6UB49N3URGCBVPW8KYNSETT57EODXUSB4FFEB96' where id=40; -update noar ti set v0='993LPX5KQ7LIL089G7YFC4ZLW6MBK1SMIMSHVEVLVLG46WJP2H6K9KC3V7MK4UB0I0LHSQW9I1Y3S4HGC781WR9F5QIDL6TL5P3Q9MAL1IFJW5G9MAII7CI0UOJQYLAJDW837MVT7NVVBG0KN58WBZGWP4TEHE5SKSD6B63MLSWUW3HTENUPHWL81A4SV3JL4GR6FJWQOU3RCBLM3H3ZKKIHLS6UB49N3URGCBVPW8KYNSETT57EODXUSB4FFEB96' where id=40; -update noar tt set v1='G20KIJ273MJUZIS1CETODHSCF2R7IDEC9B911INZS4J5SIAX7O50LPT593YQS8PZFUFYLVIRHDILBW5J5YPRDG2GKX64NEWVEOPBNBNQIGJXLCXDVH9ETJXR936IM6ZX24OPOQPZ6F39GFLEV27809QH9HZQJDBTWNG62TV1686957XBNX0NLHKY2YB19RVM3D43OELFAQ8DAJR7SJ41Z1ZCJCCBGTH2RIL5L7WR8LB141MHU736KZ0B965T6HATI' where id=40; -update noar ti set v1='G20KIJ273MJUZIS1CETODHSCF2R7IDEC9B911INZS4J5SIAX7O50LPT593YQS8PZFUFYLVIRHDILBW5J5YPRDG2GKX64NEWVEOPBNBNQIGJXLCXDVH9ETJXR936IM6ZX24OPOQPZ6F39GFLEV27809QH9HZQJDBTWNG62TV1686957XBNX0NLHKY2YB19RVM3D43OELFAQ8DAJR7SJ41Z1ZCJCCBGTH2RIL5L7WR8LB141MHU736KZ0B965T6HATI' where id=40; -update noar tt set v2='KQQWXZC7RRYMYUHA95EXL4KSC2YXUNPVOTXTQGVSRTSAFC4DXMQ7C1DEIJDQ682UIUCHJ0985NI7T6OLLCJ4ZKJH1PM93QT2OJFQP576FSLCVB57GEHSFZEXMVJO0KA0FSND0P4QCIFCSETC6TS5HLOGD6CBGW3QIW241P855G4KMGJPSBDXZ4LGC87GZT6Z8101K4MB4WI680G9ZPDR5IOXM6ZO0L7VBTKY4CRQBL990JLBGAXXEWZPM92BZ7SH4' where id=40; -update noar ti set v2='KQQWXZC7RRYMYUHA95EXL4KSC2YXUNPVOTXTQGVSRTSAFC4DXMQ7C1DEIJDQ682UIUCHJ0985NI7T6OLLCJ4ZKJH1PM93QT2OJFQP576FSLCVB57GEHSFZEXMVJO0KA0FSND0P4QCIFCSETC6TS5HLOGD6CBGW3QIW241P855G4KMGJPSBDXZ4LGC87GZT6Z8101K4MB4WI680G9ZPDR5IOXM6ZO0L7VBTKY4CRQBL990JLBGAXXEWZPM92BZ7SH4' where id=40; -update noar tt set v3='R7732WUFVPUQ2FSPG2M64R2NWRSJXF65DEXK4ZLARSVJBFNRJYTW0OO5FJHWHLZDDURYFCSCF35WDLHR092CRIFC1DWSDC69XZ13ZDL30Y33IQW9ZS682HUG7JTXMKML50J9YJQQ7757LM5PVXS6YMNECT3N9D1H0MKSZCNV4R3SLEGHRCQXI1335UXBZSPP3GD9ZJ64A0KUB2QQZ4O6CDS9P5LSYWKHW8FZSS8I8HHKTFB1MIBMZZI5M7G70DMIM' where id=40; -update noar ti set v3='R7732WUFVPUQ2FSPG2M64R2NWRSJXF65DEXK4ZLARSVJBFNRJYTW0OO5FJHWHLZDDURYFCSCF35WDLHR092CRIFC1DWSDC69XZ13ZDL30Y33IQW9ZS682HUG7JTXMKML50J9YJQQ7757LM5PVXS6YMNECT3N9D1H0MKSZCNV4R3SLEGHRCQXI1335UXBZSPP3GD9ZJ64A0KUB2QQZ4O6CDS9P5LSYWKHW8FZSS8I8HHKTFB1MIBMZZI5M7G70DMIM' where id=40; -update noar tt set v0='Z3MCG8M3D3Y1FY3T9LXZGFNSPSABYWJPN1LRNSWZZDWLVUMUROCS747SFXQ16L0EFLZ8ZUTXFR0664NYK2MNRBO1CZ0VDHZN9WNIJZSTXD1101APO8RBR4P6NM4CS3KP7B3EBPEJI9VVVO8VSVLZ79B3YX559EC0TF4ANCB9V5DGR0SEX7UX78D9BUIFAZKFWP0UCBOMROPT9AEBMPC0NTM9O6ZGC540D5RF5DR3XVXDC063N6I3EV5MT2O6KYPHO' where id=41; -update noar ti set v0='Z3MCG8M3D3Y1FY3T9LXZGFNSPSABYWJPN1LRNSWZZDWLVUMUROCS747SFXQ16L0EFLZ8ZUTXFR0664NYK2MNRBO1CZ0VDHZN9WNIJZSTXD1101APO8RBR4P6NM4CS3KP7B3EBPEJI9VVVO8VSVLZ79B3YX559EC0TF4ANCB9V5DGR0SEX7UX78D9BUIFAZKFWP0UCBOMROPT9AEBMPC0NTM9O6ZGC540D5RF5DR3XVXDC063N6I3EV5MT2O6KYPHO' where id=41; -update noar tt set v1='46MKAPEF3NX2QVY44GJC9D7V2Z24DL6B32XK5XG6WI46CB59G13U8CVKBLGF2Z3JI3DTIL4ZCV1QUM8KZJ7HFINJAR69U9XAZLBQK3T0N3D07F0VUBHGXTDSLEM531CDBACDYN51GQ0C0NNALOLSUY5TVEC9YUFB7N17GIHLL1OQIT69VY2BPTP4ZL4RLGJFM6BCNIDZGM2AQ47OKRAA3HUH1H57QBQYDLX3DXXUI4GXIE05822GCIKGGLVH0I5CD' where id=41; -update noar ti set v1='46MKAPEF3NX2QVY44GJC9D7V2Z24DL6B32XK5XG6WI46CB59G13U8CVKBLGF2Z3JI3DTIL4ZCV1QUM8KZJ7HFINJAR69U9XAZLBQK3T0N3D07F0VUBHGXTDSLEM531CDBACDYN51GQ0C0NNALOLSUY5TVEC9YUFB7N17GIHLL1OQIT69VY2BPTP4ZL4RLGJFM6BCNIDZGM2AQ47OKRAA3HUH1H57QBQYDLX3DXXUI4GXIE05822GCIKGGLVH0I5CD' where id=41; -update noar tt set v2='KJQPN7FELWSAGIMTUZSS5G1Y4S6RZRDM117CQMC2VTXX7WP1WNPHRFTJORJ0ZAV0VKVKRMKXSPL60LTU9BMKXF50XELPVUYYGWHPH5KXIKTJBT1ZUQ5MK4QMKR1I22S8FJHYK29E2UQXK8J50D3JSIWFHGMBENW4KWWZH0RT8F3CGKGNL6F7NHJUV2JX2FXG8AFKRXAO0B5OK9ZEW95LGDJK52OQLW1DZIIIFXXO54JAGOFO350CLZWR9HDEIFKIH' where id=41; -update noar ti set v2='KJQPN7FELWSAGIMTUZSS5G1Y4S6RZRDM117CQMC2VTXX7WP1WNPHRFTJORJ0ZAV0VKVKRMKXSPL60LTU9BMKXF50XELPVUYYGWHPH5KXIKTJBT1ZUQ5MK4QMKR1I22S8FJHYK29E2UQXK8J50D3JSIWFHGMBENW4KWWZH0RT8F3CGKGNL6F7NHJUV2JX2FXG8AFKRXAO0B5OK9ZEW95LGDJK52OQLW1DZIIIFXXO54JAGOFO350CLZWR9HDEIFKIH' where id=41; -update noar tt set v3='YY06IPGGO2185RI97507ZEU5GJDLL1B1RRXQBPR84A9FZJAS0HIXW5UV3WSD5H274H16JYTIKDKHZ972RWEW1EL0CISWMTJBJ5O4DM649JN3GX1TJGHFOUTBKDGBR2J2RIUG2O8YEVT0Z82QSY0CPC4FRA1S4SVZKXOBS45MUV90MTHVOSU0DSW2EAI4NNFOC2CDKDBNIQGUK887SF6H19XXRV6CQCBGZ4YUWJ49W4HD4IXAHD8Q6PNU0CKO168NV' where id=41; -update noar ti set v3='YY06IPGGO2185RI97507ZEU5GJDLL1B1RRXQBPR84A9FZJAS0HIXW5UV3WSD5H274H16JYTIKDKHZ972RWEW1EL0CISWMTJBJ5O4DM649JN3GX1TJGHFOUTBKDGBR2J2RIUG2O8YEVT0Z82QSY0CPC4FRA1S4SVZKXOBS45MUV90MTHVOSU0DSW2EAI4NNFOC2CDKDBNIQGUK887SF6H19XXRV6CQCBGZ4YUWJ49W4HD4IXAHD8Q6PNU0CKO168NV' where id=41; -update noar tt set v0='OE23U00BRJNAN1Q6CLG6UX86B4B7F04DNNZ7488OALTICLR3RQL5EKLTQKRH1648N96KZ4JA5GDA19ZL7W0RHH2VN6ND6ZG9Y7OW2JFN3G03JSYEPX9F8ACQ8OPSW64X2GMXA45MXK5L5C84LJH5NGCDD0Z60GN0J48KE72U2QZ78NERFSU6E1KDRNKOFFU6ZXEO5D3708Z28A3A4S7Y6Z6OIQTQ947OZ5E9CDK7ZG73FME1IDK56HWWHE57UMH48' where id=42; -update noar ti set v0='OE23U00BRJNAN1Q6CLG6UX86B4B7F04DNNZ7488OALTICLR3RQL5EKLTQKRH1648N96KZ4JA5GDA19ZL7W0RHH2VN6ND6ZG9Y7OW2JFN3G03JSYEPX9F8ACQ8OPSW64X2GMXA45MXK5L5C84LJH5NGCDD0Z60GN0J48KE72U2QZ78NERFSU6E1KDRNKOFFU6ZXEO5D3708Z28A3A4S7Y6Z6OIQTQ947OZ5E9CDK7ZG73FME1IDK56HWWHE57UMH48' where id=42; -update noar tt set v1='3F403KPRKN4YWEWE7WSN3MMD5TIRZXP9H7T1P9ZGIYSR8O8QAS65NJKB07TMD875F3NN7RJNDX7FCWNFFEYZ1IIL7B1IAKC21SF1K4K89YMQB0OD0FWQRSPMLGZ8PNXZ0TV2FUKOWHZ48CLP17MCPLLQU1BBOWL43DOHDGXEV7PRA3MA7N80C2MRH9SXXD5YL4WW1C0VPJ6G2UI8K6U82WV1WCZFC50JENMFSXADNVENE71JFDPDIS6VPIQ361NWQ' where id=42; -update noar ti set v1='3F403KPRKN4YWEWE7WSN3MMD5TIRZXP9H7T1P9ZGIYSR8O8QAS65NJKB07TMD875F3NN7RJNDX7FCWNFFEYZ1IIL7B1IAKC21SF1K4K89YMQB0OD0FWQRSPMLGZ8PNXZ0TV2FUKOWHZ48CLP17MCPLLQU1BBOWL43DOHDGXEV7PRA3MA7N80C2MRH9SXXD5YL4WW1C0VPJ6G2UI8K6U82WV1WCZFC50JENMFSXADNVENE71JFDPDIS6VPIQ361NWQ' where id=42; -update noar tt set v2='A689HC5A2R0QKAS16GKGAHET6NM05JUJ6AXYM71HNYC3IXDW9E476XWMCHBQCQPOM4S44JQTWSZ23D65RIMQ4CZA6TJS5AUSVB3MXQNKVML5J5P4UG2TTPPS128LJACSHZX75SG3ZT8WWJ0RSCKOAL5IOB2B5EFDBAL67PM7YGCGXDHNSMS2WQDDWZTVXENSM6EFOZ0O8756JFBW03XHK5BJ721K4YIXI780QI6C9UHPQL9WKPDM0G6CCYVZE89MK' where id=42; -update noar ti set v2='A689HC5A2R0QKAS16GKGAHET6NM05JUJ6AXYM71HNYC3IXDW9E476XWMCHBQCQPOM4S44JQTWSZ23D65RIMQ4CZA6TJS5AUSVB3MXQNKVML5J5P4UG2TTPPS128LJACSHZX75SG3ZT8WWJ0RSCKOAL5IOB2B5EFDBAL67PM7YGCGXDHNSMS2WQDDWZTVXENSM6EFOZ0O8756JFBW03XHK5BJ721K4YIXI780QI6C9UHPQL9WKPDM0G6CCYVZE89MK' where id=42; -update noar tt set v3='05RIS5NFQ3ZVDKNECQPV7E7XQ13JPG3WGB40B4WOJ9QERREJ6O8KBBO9BLGZ2GLJJIJCCZOC3QSLH8S6UCU63KZGRTAVV9163IM8XJIB3W5ZNYG299G4OT3OBZOCB7IESUT9HMMLNJYKTIYKZAC106YRV8NSJKIGZ43CEA1YCGJKJ08UHL1JY0XE4CKWQ0BCBXAL2YI8D8WFFYU1IDN2KS9TTGX6CNIBXO653PPC6PXEOF7D5SHS8HTQKLZ1R1K62' where id=42; -update noar ti set v3='05RIS5NFQ3ZVDKNECQPV7E7XQ13JPG3WGB40B4WOJ9QERREJ6O8KBBO9BLGZ2GLJJIJCCZOC3QSLH8S6UCU63KZGRTAVV9163IM8XJIB3W5ZNYG299G4OT3OBZOCB7IESUT9HMMLNJYKTIYKZAC106YRV8NSJKIGZ43CEA1YCGJKJ08UHL1JY0XE4CKWQ0BCBXAL2YI8D8WFFYU1IDN2KS9TTGX6CNIBXO653PPC6PXEOF7D5SHS8HTQKLZ1R1K62' where id=42; -update noar tt set v0='D1G815F5O4FQG47FUSLT4QB2AFWFCAOF011LO7O0AQ0OF18N8Q8RK5IPTDDNJR3ALHVG1W40ZUA84QTHV71720GRBT6SZG6UAL5A80NIS3IM168Y5GEWDJZ2JZ7CZQHNRUUULBTYKZLKE5ZZRQ6GZYJX0VTM47MKHRPJXM4WZRZXMO4CRURT8BL0J7XYFO3CYN0LE61FVKPAAB8D8I9WLNFT5R0J9R3KKH8LKYWLREW59TY9GE3HPKYBOCGLQI6Q6' where id=43; -update noar ti set v0='D1G815F5O4FQG47FUSLT4QB2AFWFCAOF011LO7O0AQ0OF18N8Q8RK5IPTDDNJR3ALHVG1W40ZUA84QTHV71720GRBT6SZG6UAL5A80NIS3IM168Y5GEWDJZ2JZ7CZQHNRUUULBTYKZLKE5ZZRQ6GZYJX0VTM47MKHRPJXM4WZRZXMO4CRURT8BL0J7XYFO3CYN0LE61FVKPAAB8D8I9WLNFT5R0J9R3KKH8LKYWLREW59TY9GE3HPKYBOCGLQI6Q6' where id=43; -update noar tt set v1='45JZXZBA53MFMOXQG7UQH6X71TNWY03M2X742VSXT7TFM40B7KYBSNZMWDU6QFHJ5LUEQTOLK3M8KJYSWMIJ8CSYY2R9V1MMJK8L6C997D9PYNWIAUQ7C33BLNKY36BFZ66LC0DJLZXCLQ44N8ANZ2XPPJQUD8N782IIW94Q5U5TIA38T31Q1HUBS6D8QNT2XWQPFD1KQZH8EDSAGECSRJI9ZSCSU4M9X62OT1ECPJGXU5V03SWXH98SF8MGTPWKM' where id=43; -update noar ti set v1='45JZXZBA53MFMOXQG7UQH6X71TNWY03M2X742VSXT7TFM40B7KYBSNZMWDU6QFHJ5LUEQTOLK3M8KJYSWMIJ8CSYY2R9V1MMJK8L6C997D9PYNWIAUQ7C33BLNKY36BFZ66LC0DJLZXCLQ44N8ANZ2XPPJQUD8N782IIW94Q5U5TIA38T31Q1HUBS6D8QNT2XWQPFD1KQZH8EDSAGECSRJI9ZSCSU4M9X62OT1ECPJGXU5V03SWXH98SF8MGTPWKM' where id=43; -update noar tt set v2='3F00ROGF7G6ZJR61D63E6SSO7DK9NR44CFLCC4CAZVX13XAEUAMMSDK8L5MBJPRG2JR7HCUWT4JATW4MWVRSH0XLDQVRCWVRBDOWVT8VSVDA3BEQU1SZEZXGZW6T5J7TLCUIQ4S4J92PJRG6HV2UULVIU40XV29L1CB9TPW7G1Y8EZEFVOAWQ13TGCVWIXL8N2WBPE32KIOUV5MX7SAFBC1Q0K43US8WK1NAUABBCT41JD525UWGC6M4QQ7JHM9SB' where id=43; -update noar ti set v2='3F00ROGF7G6ZJR61D63E6SSO7DK9NR44CFLCC4CAZVX13XAEUAMMSDK8L5MBJPRG2JR7HCUWT4JATW4MWVRSH0XLDQVRCWVRBDOWVT8VSVDA3BEQU1SZEZXGZW6T5J7TLCUIQ4S4J92PJRG6HV2UULVIU40XV29L1CB9TPW7G1Y8EZEFVOAWQ13TGCVWIXL8N2WBPE32KIOUV5MX7SAFBC1Q0K43US8WK1NAUABBCT41JD525UWGC6M4QQ7JHM9SB' where id=43; -update noar tt set v3='NBXHDWG2L8H1845MJSD52ZPK7W89T2GPYHWIT2PR9X3BC69632RG0KHE3W6FHD51KNG58Q944SI99SGSZXKM3SBHPAWRI57NTWM0V5F5RMM97B6WJ07MK0D1J67O2HY1ZBWBSQ4YEUFIEPFE0YNYKHH8GRJELYW9G1WJFEX4TAIEK7NXMHJSAP2I48ND2XXZI2EO88623WFBPV87GVNCH9CFUIWCGJ1242PPSOZXGTMNOMPQVXULNKVBFPWDUC4U6' where id=43; -update noar ti set v3='NBXHDWG2L8H1845MJSD52ZPK7W89T2GPYHWIT2PR9X3BC69632RG0KHE3W6FHD51KNG58Q944SI99SGSZXKM3SBHPAWRI57NTWM0V5F5RMM97B6WJ07MK0D1J67O2HY1ZBWBSQ4YEUFIEPFE0YNYKHH8GRJELYW9G1WJFEX4TAIEK7NXMHJSAP2I48ND2XXZI2EO88623WFBPV87GVNCH9CFUIWCGJ1242PPSOZXGTMNOMPQVXULNKVBFPWDUC4U6' where id=43; -update noar tt set v0='ZASF426FE5FMJKZ7MC4WJJL0BQU9OYY1TRLJK39WCVAVY9B0Q5N4XUVO9XSEQDN9L9HIWSZU51R1WBMHPXRJXNS98660R84NC4J6PRWFBPTQSA28A35SY4A4G8S0JGSOOTBR1781MNE0VMLI1FDGY5MRTW1MFB7ECPQJ4GU36W2WCTE9EXCQDR5WUKSPZYVGCB425GK8Y66UPNNCG32F2FTNZ57OQDIUOXOR9PS8SK5AXU83SCELLRDDRHRCMHLQS' where id=44; -update noar ti set v0='ZASF426FE5FMJKZ7MC4WJJL0BQU9OYY1TRLJK39WCVAVY9B0Q5N4XUVO9XSEQDN9L9HIWSZU51R1WBMHPXRJXNS98660R84NC4J6PRWFBPTQSA28A35SY4A4G8S0JGSOOTBR1781MNE0VMLI1FDGY5MRTW1MFB7ECPQJ4GU36W2WCTE9EXCQDR5WUKSPZYVGCB425GK8Y66UPNNCG32F2FTNZ57OQDIUOXOR9PS8SK5AXU83SCELLRDDRHRCMHLQS' where id=44; -update noar tt set v1='6FQVOHCK6SESFKS10D3XLCGCMU73G2P4LALWX9FVXORPD43B67ST9AK1KD3PSHF3D9UQCROLCCDHGT0VX2T1CK3MUNI7DI0Y9K42UBKWI8OHQERT0JHFZ3BHGHL7D7OTOQDWD3WMKR26WNG4O5R7GP38LH7GDBMETCZQ9L5Q2O00UHCBL3Y9PIKXL32Y268F8K28NHCPWS189UDLZ1S58A1GNUOM5IWZTHXEQ3HK5W6S2YYUXRC9KEVQESVK4ASDL' where id=44; -update noar ti set v1='6FQVOHCK6SESFKS10D3XLCGCMU73G2P4LALWX9FVXORPD43B67ST9AK1KD3PSHF3D9UQCROLCCDHGT0VX2T1CK3MUNI7DI0Y9K42UBKWI8OHQERT0JHFZ3BHGHL7D7OTOQDWD3WMKR26WNG4O5R7GP38LH7GDBMETCZQ9L5Q2O00UHCBL3Y9PIKXL32Y268F8K28NHCPWS189UDLZ1S58A1GNUOM5IWZTHXEQ3HK5W6S2YYUXRC9KEVQESVK4ASDL' where id=44; -update noar tt set v2='7UG64XDR4FS4DZG9QTWHWURK1GD2LPCHG8E0VBWE1SWTHVRVD934Y5IKDF5USIMNYG822IT0KMAZ223823C7JURMEZPY5JJY0P5LY7QM7I3MCPWF1OLGPW2PJT1PZYXG71EEWMTM1U8G4FFQZUH8KXHHAMVGSPXR55QLFJ94WUNDGBI0IVBXZX7VODOLERLF0L9KW4RTTQGQF2MSIVUM0JT8LF57NFELCYA1PFNR3QSP471X3OKBGNZ5YH94ZGHWC' where id=44; -update noar ti set v2='7UG64XDR4FS4DZG9QTWHWURK1GD2LPCHG8E0VBWE1SWTHVRVD934Y5IKDF5USIMNYG822IT0KMAZ223823C7JURMEZPY5JJY0P5LY7QM7I3MCPWF1OLGPW2PJT1PZYXG71EEWMTM1U8G4FFQZUH8KXHHAMVGSPXR55QLFJ94WUNDGBI0IVBXZX7VODOLERLF0L9KW4RTTQGQF2MSIVUM0JT8LF57NFELCYA1PFNR3QSP471X3OKBGNZ5YH94ZGHWC' where id=44; -update noar tt set v3='AWIJB0TG8E28Q6Z994V6W4JL467CY5IMIT0RPUU2WO84S0FL7PM1BCFLAWBXGYQOS28Y6QF2Z0AX6HY4LDZG2GCRD3EBO9SZJ701UR65EBMPGOKSAU0VLRQX6FC248O7F4WVEYQBEL1V1U689SFLNA6JTV5H0KIHT65I2U1LDMPRQEL7HLED0HV68QIXFPJ1VVDOTZGG7PHGA269MMB4MEWQPQH5ERFYZQXS4RNE8PB5LJI950ODXK8S96VS3T8YS' where id=44; -update noar ti set v3='AWIJB0TG8E28Q6Z994V6W4JL467CY5IMIT0RPUU2WO84S0FL7PM1BCFLAWBXGYQOS28Y6QF2Z0AX6HY4LDZG2GCRD3EBO9SZJ701UR65EBMPGOKSAU0VLRQX6FC248O7F4WVEYQBEL1V1U689SFLNA6JTV5H0KIHT65I2U1LDMPRQEL7HLED0HV68QIXFPJ1VVDOTZGG7PHGA269MMB4MEWQPQH5ERFYZQXS4RNE8PB5LJI950ODXK8S96VS3T8YS' where id=44; -update noar tt set v0='JG9YIO87UTZM2RAH3O5SUU7VDOYWYC2O4WTN9WIEGY9OZ16ZIK3X0QKRBS0M7AFOHZUA7F3JHFKWMUDI9UM6LB8TXCROHPUYJ7Z9GC9Y27X5XA85SJOJK1MRWM15PE6WAU68XYHPRO3VD3F6LDNN20BIFC4D2XNDKA4CMS1VOZG4GQVLWG61K3E5RXPYHL2TWQ9UKX3H5DHEESURLUHOCJLC2PWVGI1UE7LVP6U2BTS0PCCPQBPV214ILUA7MLWFD' where id=45; -update noar ti set v0='JG9YIO87UTZM2RAH3O5SUU7VDOYWYC2O4WTN9WIEGY9OZ16ZIK3X0QKRBS0M7AFOHZUA7F3JHFKWMUDI9UM6LB8TXCROHPUYJ7Z9GC9Y27X5XA85SJOJK1MRWM15PE6WAU68XYHPRO3VD3F6LDNN20BIFC4D2XNDKA4CMS1VOZG4GQVLWG61K3E5RXPYHL2TWQ9UKX3H5DHEESURLUHOCJLC2PWVGI1UE7LVP6U2BTS0PCCPQBPV214ILUA7MLWFD' where id=45; -update noar tt set v1='HERPPL6A3AUITLQHMY061HWO2IK8GF3L5NORWYH2CC8PQA4C2IPLKSDGSIKY22P3FVV27VA3O2BYZYCIRX4EOM3CVV2BKZDWWOPKREEBBI12K9IC5DR7ZJADKCRG5CC7KQZPWSBZYTW9MJNLOEQ3EFX5YDRXBV5U2WQCKH2KM580HD5LX3G61DRXHTELYTD1J412BZSZZRTL8L63E0Y2AO4P9D0H7Q2X08LQFYIJ9MO5X1SKINILUD7N2TAS3Q14C' where id=45; -update noar ti set v1='HERPPL6A3AUITLQHMY061HWO2IK8GF3L5NORWYH2CC8PQA4C2IPLKSDGSIKY22P3FVV27VA3O2BYZYCIRX4EOM3CVV2BKZDWWOPKREEBBI12K9IC5DR7ZJADKCRG5CC7KQZPWSBZYTW9MJNLOEQ3EFX5YDRXBV5U2WQCKH2KM580HD5LX3G61DRXHTELYTD1J412BZSZZRTL8L63E0Y2AO4P9D0H7Q2X08LQFYIJ9MO5X1SKINILUD7N2TAS3Q14C' where id=45; -update noar tt set v2='YR5ZMT5CCHI8OIPLX8T01WGBIXXYBVJ8M92NYYQ2NNLM9GW27Z22FRN8Y3DDHE53QSSUGIH6NPSZXCAXVSLHA99VIA61Z15AEXE5CD0RJBJZ64WQE9BTZW8XIG89WYT5U7MONIE46KFH1WV8KZP4HQXYRTSOM39ZI25FMIC409J698GSHVYA22U663VZC77V4KJFB95K7GITFKF82RL5QHZNC2OO5ELLF6OUO3EZNHECA8IV3X71IZBRMUICPQWI9' where id=45; -update noar ti set v2='YR5ZMT5CCHI8OIPLX8T01WGBIXXYBVJ8M92NYYQ2NNLM9GW27Z22FRN8Y3DDHE53QSSUGIH6NPSZXCAXVSLHA99VIA61Z15AEXE5CD0RJBJZ64WQE9BTZW8XIG89WYT5U7MONIE46KFH1WV8KZP4HQXYRTSOM39ZI25FMIC409J698GSHVYA22U663VZC77V4KJFB95K7GITFKF82RL5QHZNC2OO5ELLF6OUO3EZNHECA8IV3X71IZBRMUICPQWI9' where id=45; -update noar tt set v3='3LXRDHCHL5PEQYT7TDNK1HX2OBGN4N23MQI20QQ4RDDGS4Z6QZVGKJYU7YOD1Z5A0WOMHFMTO1WI6XETQCC4BMSGAJEYNC257PWL7285KOSTX4FQWDTGP9OUI7EEFSTTC9SJAC46FUNOCG3T7QVVDXLEZYGVYPUBSVQSB26DR5TC19TM36XBZ74GVUDX65HWDKMHO1JP7EIGE1FE3TU941FKRACIG66D4BH77A4DPJN5VBEW80K5623WNVZVJD5KJ' where id=45; -update noar ti set v3='3LXRDHCHL5PEQYT7TDNK1HX2OBGN4N23MQI20QQ4RDDGS4Z6QZVGKJYU7YOD1Z5A0WOMHFMTO1WI6XETQCC4BMSGAJEYNC257PWL7285KOSTX4FQWDTGP9OUI7EEFSTTC9SJAC46FUNOCG3T7QVVDXLEZYGVYPUBSVQSB26DR5TC19TM36XBZ74GVUDX65HWDKMHO1JP7EIGE1FE3TU941FKRACIG66D4BH77A4DPJN5VBEW80K5623WNVZVJD5KJ' where id=45; -update noar tt set v0='9ENTSCYFZO62M5ULORB17RJQLU5V81JGLS82QTRPSZ7H0K1MV0LYI1W96DQ8P3CA2PAIXOVZLZWBH6GDNBOTT82UC4W5SQR0V76LN0H0H84TIRSPN49V1JESHVFCAQPVIAWN1UQ70JZJ8W645XXHF6QQA57VKOIJSVWSKJHRASHE3CIOXD8FW15SKMQ5JU925WT1ID84BTJGU0FIK46G0XFJD6YQIQFYMT5P1EWMUNY6ABY3EHLQEMUW23VB5BUHV' where id=46; -update noar ti set v0='9ENTSCYFZO62M5ULORB17RJQLU5V81JGLS82QTRPSZ7H0K1MV0LYI1W96DQ8P3CA2PAIXOVZLZWBH6GDNBOTT82UC4W5SQR0V76LN0H0H84TIRSPN49V1JESHVFCAQPVIAWN1UQ70JZJ8W645XXHF6QQA57VKOIJSVWSKJHRASHE3CIOXD8FW15SKMQ5JU925WT1ID84BTJGU0FIK46G0XFJD6YQIQFYMT5P1EWMUNY6ABY3EHLQEMUW23VB5BUHV' where id=46; -update noar tt set v1='DPPW2OFFL7947HVD0B21ZDIFTK7OMK5TJRZWAOXYLNFLT7E99Z5AEYH66MMJEEPVN71EOW7QFPRR0U8L6GQVELC80LY78EJRIL2LCHSX6JDKN3IWJXNPSV88JWBZNNAHHSK75KFL1BZ0DTO26C0IB2ME3K656QJYIBXNEUDPLFEM1N36K310CIQXEJJS15ACJCQJ7S9FR1A8U5VH5IPMUTJENU2CGXEQ7HTY1AD6VPTY4DH4UA1OM93TLZS2R5Y9R' where id=46; -update noar ti set v1='DPPW2OFFL7947HVD0B21ZDIFTK7OMK5TJRZWAOXYLNFLT7E99Z5AEYH66MMJEEPVN71EOW7QFPRR0U8L6GQVELC80LY78EJRIL2LCHSX6JDKN3IWJXNPSV88JWBZNNAHHSK75KFL1BZ0DTO26C0IB2ME3K656QJYIBXNEUDPLFEM1N36K310CIQXEJJS15ACJCQJ7S9FR1A8U5VH5IPMUTJENU2CGXEQ7HTY1AD6VPTY4DH4UA1OM93TLZS2R5Y9R' where id=46; -update noar tt set v2='UJZNBG6GAPE11AUNX0HMYZC5XYDQ2F8QIPNYUSK1K0BPMT9PT3KXJN71M588CZD6N9829W5OY6ZUBO2NNHN548NE9A99M6TUUO0B157DYAP67XK600355KKALHMKBQLZ3XI39T7YC8JW2OMMBMC3SLH49VLJGDAOOVDCBTY3KKV0OW8EUF1JK27Z19EA8P97P15TEV4KRP1J974FJD4M2QWGUTKL52UT6XX7WRAG1NNSSAFUQNP7JPVUWENDHTN57' where id=46; -update noar ti set v2='UJZNBG6GAPE11AUNX0HMYZC5XYDQ2F8QIPNYUSK1K0BPMT9PT3KXJN71M588CZD6N9829W5OY6ZUBO2NNHN548NE9A99M6TUUO0B157DYAP67XK600355KKALHMKBQLZ3XI39T7YC8JW2OMMBMC3SLH49VLJGDAOOVDCBTY3KKV0OW8EUF1JK27Z19EA8P97P15TEV4KRP1J974FJD4M2QWGUTKL52UT6XX7WRAG1NNSSAFUQNP7JPVUWENDHTN57' where id=46; -update noar tt set v3='UZQLK670RHRNSORMDVM9Y3CBR0YHPEVIZY84XL9OWXBWL2XSPWR163ICFEU0T9F56O873P2ZS8NACN28CU00T93I3F9SIAYZ66IPWIAUB0R8DG1L0PTQCMW3CZP7P7LE3VKQPWWTWETSMM3HCG21466YF76TKL8DZS5HKRXLWSNU7M8QGX2PHLXDSFY938WK8LSE141P2RAVNWIYY75VVBMIVSELXZMVO8JSVKOKO5O8TEMMS6OY4ZQ7742RXU9MG' where id=46; -update noar ti set v3='UZQLK670RHRNSORMDVM9Y3CBR0YHPEVIZY84XL9OWXBWL2XSPWR163ICFEU0T9F56O873P2ZS8NACN28CU00T93I3F9SIAYZ66IPWIAUB0R8DG1L0PTQCMW3CZP7P7LE3VKQPWWTWETSMM3HCG21466YF76TKL8DZS5HKRXLWSNU7M8QGX2PHLXDSFY938WK8LSE141P2RAVNWIYY75VVBMIVSELXZMVO8JSVKOKO5O8TEMMS6OY4ZQ7742RXU9MG' where id=46; -update noar tt set v0='QYCOIHOOB8T4ZSR7SSU8GV1M4WJPO16XHINOJ31CQJTOJFTHO3QWZZK1UXZJMECUPOJOM151CQB9EZSA054E7WT5M48EJH9LQ7CV5G6VU9ZOUHQ9Q97HOIR0WMG8CHMMQYHZY3Z3ENKB3VJPB6O54A8RYY8UHLD439HK2FFUJ11QIXXATAKLQ3VZ692PVK5BM39VTBYQ9T6WLG8VNC4WPUBCMZZ2HUWLMEABGDRO74MWM7B1IZQZUTKI2H2R3SG2V' where id=47; -update noar ti set v0='QYCOIHOOB8T4ZSR7SSU8GV1M4WJPO16XHINOJ31CQJTOJFTHO3QWZZK1UXZJMECUPOJOM151CQB9EZSA054E7WT5M48EJH9LQ7CV5G6VU9ZOUHQ9Q97HOIR0WMG8CHMMQYHZY3Z3ENKB3VJPB6O54A8RYY8UHLD439HK2FFUJ11QIXXATAKLQ3VZ692PVK5BM39VTBYQ9T6WLG8VNC4WPUBCMZZ2HUWLMEABGDRO74MWM7B1IZQZUTKI2H2R3SG2V' where id=47; -update noar tt set v1='M9Z0XNVK6R9G0N4AS7IDBVII5JFYPM48ZGBQCMB7V4T2JVZBVE67HJNI04GK9L426B0VO8DKI33DH2DV80HY7BW5RZS06JI3CNA5RRCVKFVKO85JOMQ43L3F2T3ZPC81HXWZBYNNJAZXTBKDI7U3LIKPVMR8F0DJN5XLGW0B37AU79KROR1THW1MRFIMX1Q51N6N05WJMHRYO2P5UW48511HOIKBNO1W25OT02CWYTR32T82ETHEZL2BNE8L3JISO' where id=47; -update noar ti set v1='M9Z0XNVK6R9G0N4AS7IDBVII5JFYPM48ZGBQCMB7V4T2JVZBVE67HJNI04GK9L426B0VO8DKI33DH2DV80HY7BW5RZS06JI3CNA5RRCVKFVKO85JOMQ43L3F2T3ZPC81HXWZBYNNJAZXTBKDI7U3LIKPVMR8F0DJN5XLGW0B37AU79KROR1THW1MRFIMX1Q51N6N05WJMHRYO2P5UW48511HOIKBNO1W25OT02CWYTR32T82ETHEZL2BNE8L3JISO' where id=47; -update noar tt set v2='G9EILFGX9P8FSREERZ6D61KGH4GWIZL8LNN9PTXITNY9R800SYWBJ01KZMUXRSZVJ71XNLLTP8FSK78X4VE9S7L5OM1YAQVMBNYHRLZVLF9R8OK1PV946K7E1SG6G47IZL9A3Q59DHEQFFNJ5LKLXE0Y0L4FO4CH5Y2MWPJGVMS51X6AL21S3SBMDPI9PTE4QCNY7NSKT3RJE91NULTRAED38I9J372RQ0WBN2UPCC7P0ILLBX5A33VJUS21YW8DS' where id=47; -update noar ti set v2='G9EILFGX9P8FSREERZ6D61KGH4GWIZL8LNN9PTXITNY9R800SYWBJ01KZMUXRSZVJ71XNLLTP8FSK78X4VE9S7L5OM1YAQVMBNYHRLZVLF9R8OK1PV946K7E1SG6G47IZL9A3Q59DHEQFFNJ5LKLXE0Y0L4FO4CH5Y2MWPJGVMS51X6AL21S3SBMDPI9PTE4QCNY7NSKT3RJE91NULTRAED38I9J372RQ0WBN2UPCC7P0ILLBX5A33VJUS21YW8DS' where id=47; -update noar tt set v3='9QLF7LOZG6PXILNQ8MNQJBLX1Z6KC0M7OO8QFLSWW4J7TPNKS5QPHU2S54ASGC1XOQGA8L1V9043ASI75YY4N92QG4OTG29OVOQ17T0GGT7ZE2ELR913TSC0P9B9AUE200UY979ZURXF5908BCYB9TSTEKCVNZEOHA590K6ZPRQZS7XHC2ANGHDA65NWVZ4A6EU6B2CD71EKNPLC9OL6CC4XNWUPXNNNAFRN9LDFBGK7R7Q7RQCH9RYKJPF424RDQ' where id=47; -update noar ti set v3='9QLF7LOZG6PXILNQ8MNQJBLX1Z6KC0M7OO8QFLSWW4J7TPNKS5QPHU2S54ASGC1XOQGA8L1V9043ASI75YY4N92QG4OTG29OVOQ17T0GGT7ZE2ELR913TSC0P9B9AUE200UY979ZURXF5908BCYB9TSTEKCVNZEOHA590K6ZPRQZS7XHC2ANGHDA65NWVZ4A6EU6B2CD71EKNPLC9OL6CC4XNWUPXNNNAFRN9LDFBGK7R7Q7RQCH9RYKJPF424RDQ' where id=47; -update noar tt set v0='84RTZR1O70NRAEV1G7078FW2C01W0N7M7DLJVQS2AN3IN45CBOQHXTE15LVS1O23R2HUBXAF73KW2FCQWAOJ18D33097V2VUI45FE3UM5DNKUPSGAB8X45DXZNKTL00TXM7R9IWEE5ID3DTVYTD6PX3IO7YEMUF5CKXUJS3KZ9FAH9ZPYTZV816ZTQHZKITOKK6SCWP62YOE10ZAAY78KVBE8Y9MVW0I3HU94KII7FPCBDM8K6Y1S4SASYW9SK9N0' where id=48; -update noar ti set v0='84RTZR1O70NRAEV1G7078FW2C01W0N7M7DLJVQS2AN3IN45CBOQHXTE15LVS1O23R2HUBXAF73KW2FCQWAOJ18D33097V2VUI45FE3UM5DNKUPSGAB8X45DXZNKTL00TXM7R9IWEE5ID3DTVYTD6PX3IO7YEMUF5CKXUJS3KZ9FAH9ZPYTZV816ZTQHZKITOKK6SCWP62YOE10ZAAY78KVBE8Y9MVW0I3HU94KII7FPCBDM8K6Y1S4SASYW9SK9N0' where id=48; -update noar tt set v1='93PI3V8FY5GI1RUR6FVC8LPAR3QVI2GG3QVZECL2ES7TXUVFBMV4PGJC4CX6JTZ8L4TBAW7DCNKE6UZR2JFD4KKNMIOEARK33YQ4FEFN3A21I38VEUUBLN3921NA1K0SFR9MZ7EUPFJNL3AGW4YS8LOCVNQ6ZTK2JZF2EZJLH5F2IP3HUBUT1KSI92E4AXG264F2B92HWNTXZRXOXKIFNMP8W4OL1UM90RE2NZJIHBV5FFKNPW2XTBAPLQN0WWWER' where id=48; -update noar ti set v1='93PI3V8FY5GI1RUR6FVC8LPAR3QVI2GG3QVZECL2ES7TXUVFBMV4PGJC4CX6JTZ8L4TBAW7DCNKE6UZR2JFD4KKNMIOEARK33YQ4FEFN3A21I38VEUUBLN3921NA1K0SFR9MZ7EUPFJNL3AGW4YS8LOCVNQ6ZTK2JZF2EZJLH5F2IP3HUBUT1KSI92E4AXG264F2B92HWNTXZRXOXKIFNMP8W4OL1UM90RE2NZJIHBV5FFKNPW2XTBAPLQN0WWWER' where id=48; -update noar tt set v2='5E48DYWE6BYJ26ZL0Z8MK84LKOGEY4PEM09FE5PCZ42969EO8D0HR2QP09OM23K4L1VGM8HIISRTDMALQNJDOMHYT9XN8KVVS327TSRTVS1AR708UJ7ICBWNCJURVP37SGZ0HX3WB1MDHL4EYQC8VWL53DF41LZ8XWJ0WIY8GCH12IEFAT4ZCQZPC8SSVLZXXCXDCPQAGRRSJ63PIPY6304W0EL00TXK2YQL8RE4CSP311D9D49H4HLTUUHZ1QK6J' where id=48; -update noar ti set v2='5E48DYWE6BYJ26ZL0Z8MK84LKOGEY4PEM09FE5PCZ42969EO8D0HR2QP09OM23K4L1VGM8HIISRTDMALQNJDOMHYT9XN8KVVS327TSRTVS1AR708UJ7ICBWNCJURVP37SGZ0HX3WB1MDHL4EYQC8VWL53DF41LZ8XWJ0WIY8GCH12IEFAT4ZCQZPC8SSVLZXXCXDCPQAGRRSJ63PIPY6304W0EL00TXK2YQL8RE4CSP311D9D49H4HLTUUHZ1QK6J' where id=48; -update noar tt set v3='6NVOZATTNOLBLORLPL1YGYFZLS8JGKT8A1WWGBH1GQR75ZNC3W4NPWI6QUIKAZMZCTNITRYH6WTUWCUWBENLUZSH0VXKBXTWALS2Q3YHBTZ1S339UH1C037O88RTY8KQ2F9WZG81EYVPFVWNUQO9W94N1RQ6XUATU21WDW7KGYOVRG8AFGXBPOO08VEUX0AM6SCMRJR6VQRXYV45X9WID0DH2ML48YGUQL948ZLJHTK03CKDDD6NR8UCQTTL04BYD' where id=48; -update noar ti set v3='6NVOZATTNOLBLORLPL1YGYFZLS8JGKT8A1WWGBH1GQR75ZNC3W4NPWI6QUIKAZMZCTNITRYH6WTUWCUWBENLUZSH0VXKBXTWALS2Q3YHBTZ1S339UH1C037O88RTY8KQ2F9WZG81EYVPFVWNUQO9W94N1RQ6XUATU21WDW7KGYOVRG8AFGXBPOO08VEUX0AM6SCMRJR6VQRXYV45X9WID0DH2ML48YGUQL948ZLJHTK03CKDDD6NR8UCQTTL04BYD' where id=48; -update noar tt set v0='JB20IGZK9ISIU6AY2JYJSMICCOW1IUA0AMW01YJWOV0RXURO5FUKF3C9O9TFYGBQAFUG15LS9ZZ9S505XFFJ2QTA015YJGLVSC4Q1266TD5TZGX3LE1TED8PNMT95HJ4A6R2AFBHH0Y9TG9W7H94YY10JWR2EF2H32BLQC5KO0K97HW3GUTYCK25U8G1KHYNJ74Q27GYA8YX3FCUVHYTZOPG4A2GVS9FFKPSSN59LXLV5ATS3MDORDUY8WMH9RTRX' where id=49; -update noar ti set v0='JB20IGZK9ISIU6AY2JYJSMICCOW1IUA0AMW01YJWOV0RXURO5FUKF3C9O9TFYGBQAFUG15LS9ZZ9S505XFFJ2QTA015YJGLVSC4Q1266TD5TZGX3LE1TED8PNMT95HJ4A6R2AFBHH0Y9TG9W7H94YY10JWR2EF2H32BLQC5KO0K97HW3GUTYCK25U8G1KHYNJ74Q27GYA8YX3FCUVHYTZOPG4A2GVS9FFKPSSN59LXLV5ATS3MDORDUY8WMH9RTRX' where id=49; -update noar tt set v1='0KC5CQPTHMTR70TV3473ZRLRJ7ND7LZV8CCGXTFVXLTELX6EESZ2042R8PHA3X5W38SYVU5AMCXSTKU51JO5IXHIGPBJURYM7H7VCMH6IR0HKTSR8QGHSRT3FMDEGYXJY6GEM4O8CFFA8G9879O14FJMAOKKIMUYDZQBFEVGHY42YZ06NN77QU5UVMQY3DZJ75NIFKNE7Y26KCCR3RG78DL55YE1Y25UZT7YMO167E4K163OJE8TW3APHI5USXRAO' where id=49; -update noar ti set v1='0KC5CQPTHMTR70TV3473ZRLRJ7ND7LZV8CCGXTFVXLTELX6EESZ2042R8PHA3X5W38SYVU5AMCXSTKU51JO5IXHIGPBJURYM7H7VCMH6IR0HKTSR8QGHSRT3FMDEGYXJY6GEM4O8CFFA8G9879O14FJMAOKKIMUYDZQBFEVGHY42YZ06NN77QU5UVMQY3DZJ75NIFKNE7Y26KCCR3RG78DL55YE1Y25UZT7YMO167E4K163OJE8TW3APHI5USXRAO' where id=49; -update noar tt set v2='VCXDXU3HTBDOM7OW62IXT71OP82FS4V9P51VB2OJMWBDXSWNEU1PPSJREM2L1YB8Y61E7N2QNOHZP6N5D09RC1XCFX3OBM76J9263TTF2664EYC5BXO5UTXRG4VUTE5NJOLBYSOYC0R244SOJFI6NW6ZO1VU063QZGHMGS5ZUYL83UXUSO6MVL9P5ZI9PSTIBUACWJPYI2I813A1I3XSXCN7RFN3EMM19R6JN024DTZBOQ9AHEDF1BVAR5FVF7815' where id=49; -update noar ti set v2='VCXDXU3HTBDOM7OW62IXT71OP82FS4V9P51VB2OJMWBDXSWNEU1PPSJREM2L1YB8Y61E7N2QNOHZP6N5D09RC1XCFX3OBM76J9263TTF2664EYC5BXO5UTXRG4VUTE5NJOLBYSOYC0R244SOJFI6NW6ZO1VU063QZGHMGS5ZUYL83UXUSO6MVL9P5ZI9PSTIBUACWJPYI2I813A1I3XSXCN7RFN3EMM19R6JN024DTZBOQ9AHEDF1BVAR5FVF7815' where id=49; -update noar tt set v3='QGK2AXBO1Y27KQ7QXXEHM4O15OKAD3SM6MSSSNYK6ALEBGL9ZGHNCIQIH27A9MN4ENKLUSX7B7WF1WPNB2B3XG0C79UQC6KVKX6Y3GR676NWC86RCFNKZJ3JXO8353DWEN10AGBEVPKZWHGZSL6CITM6C9QMW5J97MLM3DVCVO9YJL6Q1D4XKK5UE0TDX6AQP4MRDH1SB6A9NQH7K1TC8N2X6J8YYDS09W1HJDSAO88QF96YRXKCNVLLCIRYYDSZI' where id=49; -update noar ti set v3='QGK2AXBO1Y27KQ7QXXEHM4O15OKAD3SM6MSSSNYK6ALEBGL9ZGHNCIQIH27A9MN4ENKLUSX7B7WF1WPNB2B3XG0C79UQC6KVKX6Y3GR676NWC86RCFNKZJ3JXO8353DWEN10AGBEVPKZWHGZSL6CITM6C9QMW5J97MLM3DVCVO9YJL6Q1D4XKK5UE0TDX6AQP4MRDH1SB6A9NQH7K1TC8N2X6J8YYDS09W1HJDSAO88QF96YRXKCNVLLCIRYYDSZI' where id=49; -update noar tt set v0='JMPHE29OP53BE06JT195SZIHHQXQADDF3W06AJ9IFXLLBKPO3T61KL97WC1QOKAZE4QED165Z8BNZNBJBQ4SOEBLDKKCLTH95822CCNTZTKPRAKK980GQ1YFDQKTULQENRPCBYQXI2XODOQ355RWIISOHPQNE10R2SR48E76PWXK3MNVOMIP8H939CI2A0X5KK702YVAPU4793DN9WNQCHKY4RD0Q3P8IO6NIKNE09R3WRUU6HG6PW6YGPHGEM9UP' where id=50; -update noar ti set v0='JMPHE29OP53BE06JT195SZIHHQXQADDF3W06AJ9IFXLLBKPO3T61KL97WC1QOKAZE4QED165Z8BNZNBJBQ4SOEBLDKKCLTH95822CCNTZTKPRAKK980GQ1YFDQKTULQENRPCBYQXI2XODOQ355RWIISOHPQNE10R2SR48E76PWXK3MNVOMIP8H939CI2A0X5KK702YVAPU4793DN9WNQCHKY4RD0Q3P8IO6NIKNE09R3WRUU6HG6PW6YGPHGEM9UP' where id=50; -update noar tt set v1='HBF5RQQ74SCEF9U9LEYK1T601NEBP4BP82UJGBPU38658Z1LRC14NXQFHH6AQPMMEZFTLXFUVTXT1F661JT0PWDRFQI4NFEAV3ADYTI63HPJT0BWEAZHYF3NG82XWTC6L5YRC513BSDMQ1BFOIA098HW4S0FV19YSADBIEF6Y0U8IW9SYSRMIBVLWWH229RH58MC0SBQRNWVHC66I12O1F9Q9EX8F54AJGA6CI33WEIGHCRDTYYNQ0P3POWQG718S' where id=50; -update noar ti set v1='HBF5RQQ74SCEF9U9LEYK1T601NEBP4BP82UJGBPU38658Z1LRC14NXQFHH6AQPMMEZFTLXFUVTXT1F661JT0PWDRFQI4NFEAV3ADYTI63HPJT0BWEAZHYF3NG82XWTC6L5YRC513BSDMQ1BFOIA098HW4S0FV19YSADBIEF6Y0U8IW9SYSRMIBVLWWH229RH58MC0SBQRNWVHC66I12O1F9Q9EX8F54AJGA6CI33WEIGHCRDTYYNQ0P3POWQG718S' where id=50; -update noar tt set v2='C3XRV3VY0FFM9V8VAD0MCB68L7TBMYWLJAFNFOQLVWM6AG9FQ3551MWWARWYXTURKXDRX04YO1XO4345ZP0KMX300K4BYMO8WF4HS734SRG8P5A436C09CO4TWVE6414L9JSC463XXO2X0OY9UA2QT8P4SG1024PZAK8B2V6F23EXRVFRG4KGV091KC5P7SXRWR7BV35BXJ86KAS0JIH8GJQXDLPKEMGBJTMV6N4YOHH5X1RM36IZ1NDC2EEDEKR4' where id=50; -update noar ti set v2='C3XRV3VY0FFM9V8VAD0MCB68L7TBMYWLJAFNFOQLVWM6AG9FQ3551MWWARWYXTURKXDRX04YO1XO4345ZP0KMX300K4BYMO8WF4HS734SRG8P5A436C09CO4TWVE6414L9JSC463XXO2X0OY9UA2QT8P4SG1024PZAK8B2V6F23EXRVFRG4KGV091KC5P7SXRWR7BV35BXJ86KAS0JIH8GJQXDLPKEMGBJTMV6N4YOHH5X1RM36IZ1NDC2EEDEKR4' where id=50; -update noar tt set v3='IURGHSM1X5GYTBU0BZ3QCRC2ZADQB19O4AIR1S9RHP8QEIJQHDQ62D2SSPFOPNKAEIA8E3A35F5AFY1LODRK1XGLIHHS4SV1RZKAKIBQ7G2WWR1N7WKF8H3PMZFW20OCAE4K7UXUSAKN8W2UF3WI5PYG5X3OUH1BUB1KGLP23NMKSAVZPDH7FLW9CCLT14QMY7Y57V1NZFMUHJ60K8IVIFKXWG3HG1T54BDZ9JTX5DCULPIWCARNXPZEKD856NHQH' where id=50; -update noar ti set v3='IURGHSM1X5GYTBU0BZ3QCRC2ZADQB19O4AIR1S9RHP8QEIJQHDQ62D2SSPFOPNKAEIA8E3A35F5AFY1LODRK1XGLIHHS4SV1RZKAKIBQ7G2WWR1N7WKF8H3PMZFW20OCAE4K7UXUSAKN8W2UF3WI5PYG5X3OUH1BUB1KGLP23NMKSAVZPDH7FLW9CCLT14QMY7Y57V1NZFMUHJ60K8IVIFKXWG3HG1T54BDZ9JTX5DCULPIWCARNXPZEKD856NHQH' where id=50; -update noar tt set v0='W3ZUVR38BY1IPTB60N0OHV4ECOAK6EH4IINTE7OO93ELLLIKP4RPMFHNPPYQYQ0DEAEXV5XUCBDXER6JT6OM0CM29PYQ1X4VKRPDD7JCFEAS9YCB32FX61XRNVYX5RNRS5M0IF2U1KI7OOFU2J9IMM14X1I7N8WDXL7O9PDJTY67OKUON78GLL6K0YB1MCZ6ES73XPCNS0NV2RM9VT1KT8R9KVI0LPNM231NCFNMBV3Y8DL2Q7HNO3JTLS4HZMI2S' where id=51; -update noar ti set v0='W3ZUVR38BY1IPTB60N0OHV4ECOAK6EH4IINTE7OO93ELLLIKP4RPMFHNPPYQYQ0DEAEXV5XUCBDXER6JT6OM0CM29PYQ1X4VKRPDD7JCFEAS9YCB32FX61XRNVYX5RNRS5M0IF2U1KI7OOFU2J9IMM14X1I7N8WDXL7O9PDJTY67OKUON78GLL6K0YB1MCZ6ES73XPCNS0NV2RM9VT1KT8R9KVI0LPNM231NCFNMBV3Y8DL2Q7HNO3JTLS4HZMI2S' where id=51; -update noar tt set v1='7Y6ERWR5ADIBXXICMYSPIIKYIE8F6Z7JJX2PN3XWBIE2A8HCCOMTAD154YO9H6GITWA316OVQFJAI7G5TDY45DORVGTOBXU781HL9U0SYJRUX2CXI64P57Q3783KJLQIGXZ0I0QJ11PYNMDBBYAPDT0LJO3FL63883S5OAB2022UDQKTFCHIPRH3T6FKNUCRTU7YUZZ47CO21GIH4RV2ADW303ZN65BZQXW4KBMRAX70OZWDVP6QIFKLKGNZ4U1DV' where id=51; -update noar ti set v1='7Y6ERWR5ADIBXXICMYSPIIKYIE8F6Z7JJX2PN3XWBIE2A8HCCOMTAD154YO9H6GITWA316OVQFJAI7G5TDY45DORVGTOBXU781HL9U0SYJRUX2CXI64P57Q3783KJLQIGXZ0I0QJ11PYNMDBBYAPDT0LJO3FL63883S5OAB2022UDQKTFCHIPRH3T6FKNUCRTU7YUZZ47CO21GIH4RV2ADW303ZN65BZQXW4KBMRAX70OZWDVP6QIFKLKGNZ4U1DV' where id=51; -update noar tt set v2='GM8A7CBKD49TBH5B4YE5BLDZPGRS1XYCKHKQ6P4MGQTQBA8TI3P1O9O42C7VKFWR5LXLPRW76AYKI1JOW3T7MJKN0D8KY3MUF1F77MTALR8JO28FBXNB83LILDIBGRJ2H4BCIT1KL25SSI52YPFA89VBO3R4QX6GQVHJIHB9VO9VK213FH9WU1KI2N99E17PTHWOHZCUXJUP6B7JG1ZK2EOHN0IORWCKB0GTVQF216U7U9QOG7P3RQX31QMUT0N9A' where id=51; -update noar ti set v2='GM8A7CBKD49TBH5B4YE5BLDZPGRS1XYCKHKQ6P4MGQTQBA8TI3P1O9O42C7VKFWR5LXLPRW76AYKI1JOW3T7MJKN0D8KY3MUF1F77MTALR8JO28FBXNB83LILDIBGRJ2H4BCIT1KL25SSI52YPFA89VBO3R4QX6GQVHJIHB9VO9VK213FH9WU1KI2N99E17PTHWOHZCUXJUP6B7JG1ZK2EOHN0IORWCKB0GTVQF216U7U9QOG7P3RQX31QMUT0N9A' where id=51; -update noar tt set v3='KW6J55I7VBK4F7W9ZKGIU0N8LRC3WIKDA5IN67DV6HK1GTP015C9L1Q07IPJURB68D9WZ81O2VPXYRQPZUMI61LIQYHMHEL9XXDJ0D1K5QQTMDRUXY29AAX7W3NOR3K8J7YPXC9B25EXDAD7O0VCJOIIAIU3KL05NLJPAULZGY31LZ2DRGEC9IPRNUOE7WCNSZO3C5Z97CXLI48ZO2XZGF49TNPK9UQTRDREZVNGKS4UDWQT4FDEI9YP1Y8JRKLQS' where id=51; -update noar ti set v3='KW6J55I7VBK4F7W9ZKGIU0N8LRC3WIKDA5IN67DV6HK1GTP015C9L1Q07IPJURB68D9WZ81O2VPXYRQPZUMI61LIQYHMHEL9XXDJ0D1K5QQTMDRUXY29AAX7W3NOR3K8J7YPXC9B25EXDAD7O0VCJOIIAIU3KL05NLJPAULZGY31LZ2DRGEC9IPRNUOE7WCNSZO3C5Z97CXLI48ZO2XZGF49TNPK9UQTRDREZVNGKS4UDWQT4FDEI9YP1Y8JRKLQS' where id=51; -update noar tt set v0='23UQE0FZ6UB8TNMLSX1P0BW4SENCQSYZT2J5GDFE2W8A2U3V8WDTO9ANN2UE9TVPY2A3YGSUT7X8VQNXL1LQ22DOYVAQHVKB9PBY2HM1SDEDTBEW9DKF14J1N7XXNU5MD665S55B7CJ1YGF7IUWSZV1G35U1GHJP13PMI1LELWQAJZ2DFTWAE2AOGZVBXW9M3STNRNNA9Y8THMRZGTKMVIVNWYOCHXQG8FDKX3O09ZNBMKL298TEFJ1EFUSOTV6S3' where id=52; -update noar ti set v0='23UQE0FZ6UB8TNMLSX1P0BW4SENCQSYZT2J5GDFE2W8A2U3V8WDTO9ANN2UE9TVPY2A3YGSUT7X8VQNXL1LQ22DOYVAQHVKB9PBY2HM1SDEDTBEW9DKF14J1N7XXNU5MD665S55B7CJ1YGF7IUWSZV1G35U1GHJP13PMI1LELWQAJZ2DFTWAE2AOGZVBXW9M3STNRNNA9Y8THMRZGTKMVIVNWYOCHXQG8FDKX3O09ZNBMKL298TEFJ1EFUSOTV6S3' where id=52; -update noar tt set v1='PCVR85NU5EPCBR51AD4BE8DW007VMOXH0OISYAODXTY5IO4HD9MY3MOOYCT1F4QF4D22OJDE5V69C40Q6ZRJ029DWRXR1YCQMWG1W43S3IMO0A7L4CAJJ1QSXLRXLVGYW4OE5SDYAVJNA2MWDRQWT6JWTX9C5ELX2L6ZSZOAPZKWW8V9XM0OCZ1PAIVVGRMUR7ZM3BII98U1M426495A6TOOOHVF6VXEYCS3TLDLQVJ7MIXLEBINUFY9IJRHBTW1F' where id=52; -update noar ti set v1='PCVR85NU5EPCBR51AD4BE8DW007VMOXH0OISYAODXTY5IO4HD9MY3MOOYCT1F4QF4D22OJDE5V69C40Q6ZRJ029DWRXR1YCQMWG1W43S3IMO0A7L4CAJJ1QSXLRXLVGYW4OE5SDYAVJNA2MWDRQWT6JWTX9C5ELX2L6ZSZOAPZKWW8V9XM0OCZ1PAIVVGRMUR7ZM3BII98U1M426495A6TOOOHVF6VXEYCS3TLDLQVJ7MIXLEBINUFY9IJRHBTW1F' where id=52; -update noar tt set v2='1FNSSB0HKGY5CMGPP07EOI2D4DW6499BVKO643QW9G0UVF9QNIAFBS1PT5TI6OQO28QU58XAH8G25UH73NASVJY3ZMFT8RE0VFA3BZ8TLWG9ALCEI53UBDN5W06RZU83K2NZNFR48YMZODGQX81M2A712GP8HV4ICO2JCYF1JX231685YC1J6492KTHXGQPX3W3FEGZUQN3V4FTMZAQDT8YV0O42N82OO866PGPE0ZM7YD4BXU32XINLCMG1RO222' where id=52; -update noar ti set v2='1FNSSB0HKGY5CMGPP07EOI2D4DW6499BVKO643QW9G0UVF9QNIAFBS1PT5TI6OQO28QU58XAH8G25UH73NASVJY3ZMFT8RE0VFA3BZ8TLWG9ALCEI53UBDN5W06RZU83K2NZNFR48YMZODGQX81M2A712GP8HV4ICO2JCYF1JX231685YC1J6492KTHXGQPX3W3FEGZUQN3V4FTMZAQDT8YV0O42N82OO866PGPE0ZM7YD4BXU32XINLCMG1RO222' where id=52; -update noar tt set v3='AD7R73CGA41XVO20T5YR1FPZ26E4I6WM8Y213HVRIZDQGHUVOI71IPICR9KFLR2FNH7YDFDNRDJOKOD81P6DV6SUXQM8TVNM7HG9ZXIHXQ1Z0F5AVFF5X81AXMKKAI5MN1SCWCXI0D54SCYUKYZI27SHW17OBPAXTUUG1LF520RJKE2GZGH2172Y0B198NI5466UV7IT1EEU5RIG5EFD3DNHBIAMRHP6KZZCJU31ZRNPS1JZKPBYF1U7OOK9UFETO' where id=52; -update noar ti set v3='AD7R73CGA41XVO20T5YR1FPZ26E4I6WM8Y213HVRIZDQGHUVOI71IPICR9KFLR2FNH7YDFDNRDJOKOD81P6DV6SUXQM8TVNM7HG9ZXIHXQ1Z0F5AVFF5X81AXMKKAI5MN1SCWCXI0D54SCYUKYZI27SHW17OBPAXTUUG1LF520RJKE2GZGH2172Y0B198NI5466UV7IT1EEU5RIG5EFD3DNHBIAMRHP6KZZCJU31ZRNPS1JZKPBYF1U7OOK9UFETO' where id=52; -update noar tt set v0='ZL9FYITBAMBCN7ADBVNOU3A1VS8EUMQL6D0UGH532ALAVH5VL0NS4AG42HXGH5354VRG24TUZBYIVRYRVXNSGFFJHVCEJYJWGPETWFAKP3A8NSDHYHUP7QXPLHY09UFC4IIBU7N4I2X23LS0XEUG2YHVTG15GMIBUC4UWHZDL629FOB4FD7C7OMZIXVK7M7A3FD2ZRKL9RN8XX3F0099ERM0WYV6J306YBZTBGS2U6VRD9AY23Q30IBYJ5JFK0QOP' where id=53; -update noar ti set v0='ZL9FYITBAMBCN7ADBVNOU3A1VS8EUMQL6D0UGH532ALAVH5VL0NS4AG42HXGH5354VRG24TUZBYIVRYRVXNSGFFJHVCEJYJWGPETWFAKP3A8NSDHYHUP7QXPLHY09UFC4IIBU7N4I2X23LS0XEUG2YHVTG15GMIBUC4UWHZDL629FOB4FD7C7OMZIXVK7M7A3FD2ZRKL9RN8XX3F0099ERM0WYV6J306YBZTBGS2U6VRD9AY23Q30IBYJ5JFK0QOP' where id=53; -update noar tt set v1='PBBKGZEODIR5Q55FA40R3RMUXHYNVDFRF47L4PLQDY0X47X66YJX67RRZB99N8TCRCU6MTL4VRR102MTDXOW18XQE0J39G8QBF1TQ9IOMIIU8M7RSX2BHXMOTPX5ZO741UEXDPGTG6F821AB8ASN9QUE8VLXWT7GEYX6PBE15MP0GYD4UDA1CHAAT53DO86S3MMAUXNCO5SAQPGS33GMXULUTLQGQ1JPP7BKUXI2W0A2YGTLZUAJB86DEZX94BF1G' where id=53; -update noar ti set v1='PBBKGZEODIR5Q55FA40R3RMUXHYNVDFRF47L4PLQDY0X47X66YJX67RRZB99N8TCRCU6MTL4VRR102MTDXOW18XQE0J39G8QBF1TQ9IOMIIU8M7RSX2BHXMOTPX5ZO741UEXDPGTG6F821AB8ASN9QUE8VLXWT7GEYX6PBE15MP0GYD4UDA1CHAAT53DO86S3MMAUXNCO5SAQPGS33GMXULUTLQGQ1JPP7BKUXI2W0A2YGTLZUAJB86DEZX94BF1G' where id=53; -update noar tt set v2='KDL7HSEBTTF64BH0BKSZP4SOQW3LX1Z7RCJGBJJAP8ZN54E24REUIAIM5Q6YHLOOWFU0PLA6013JT7MG4R6IABW6MG1226AX4XBB71DVOPM3Z2WGGNHD7MAS93F724BMWK06BXGO147P1YCXZ3LZ938WOLBL6NDXM1279N9G0A4KNEGRSRZT1TXSN3UU4UD1XZMQCD3ATEFXM177A5F890IGWPWCBHJ4M9N1L77ZROCO1VSJIMO36YOMQ1F8FDZQX' where id=53; -update noar ti set v2='KDL7HSEBTTF64BH0BKSZP4SOQW3LX1Z7RCJGBJJAP8ZN54E24REUIAIM5Q6YHLOOWFU0PLA6013JT7MG4R6IABW6MG1226AX4XBB71DVOPM3Z2WGGNHD7MAS93F724BMWK06BXGO147P1YCXZ3LZ938WOLBL6NDXM1279N9G0A4KNEGRSRZT1TXSN3UU4UD1XZMQCD3ATEFXM177A5F890IGWPWCBHJ4M9N1L77ZROCO1VSJIMO36YOMQ1F8FDZQX' where id=53; -update noar tt set v3='A0FQBNDLIDKZ5HDXWBJAZEEEFL5LUZEB90BSCAE8AGYHK76ZCQ3JVA9HP2P7L2Z1GUDSEOY4GGZFAHGN7D0JW3IBRTOBDNK92OK084ANG0K1FYBXCT5HFMBYBORIX3B7FJN15W32KKGXJPWMD0IQITPY6FI3533TTWFLZCA0203QONACATIUXREJX64DU04RYCEGPUVHVXN2C0UO5XJ2F6YFUKUT1CCNPL4X2JHPCUXJBB85FGYH1BD4BJHK8GX3H' where id=53; -update noar ti set v3='A0FQBNDLIDKZ5HDXWBJAZEEEFL5LUZEB90BSCAE8AGYHK76ZCQ3JVA9HP2P7L2Z1GUDSEOY4GGZFAHGN7D0JW3IBRTOBDNK92OK084ANG0K1FYBXCT5HFMBYBORIX3B7FJN15W32KKGXJPWMD0IQITPY6FI3533TTWFLZCA0203QONACATIUXREJX64DU04RYCEGPUVHVXN2C0UO5XJ2F6YFUKUT1CCNPL4X2JHPCUXJBB85FGYH1BD4BJHK8GX3H' where id=53; -update noar tt set v0='BAPOIHD64B450YH4R56M3XJB67LQPZTN25RWC28ZKGMGA6SMUIWWLIS3Z4KW0OHM24MKQCSNYJ17RX45K0CMQLQPG62NWTJ4QQFOUJE8CDXPC0IVIHCFQMADXNSCT1JPYF6CCMYMG3PY6JYYX7WD5L5PRUADHM5UQDWW4OMSH9G904FV9TMQLBISGJZX6XD1E63FWNHGC5EVBTVRDX49OL35FBY0XFLHHYJN6RNS622UHAQ4LJCF88TZYQDG1QC7V' where id=54; -update noar ti set v0='BAPOIHD64B450YH4R56M3XJB67LQPZTN25RWC28ZKGMGA6SMUIWWLIS3Z4KW0OHM24MKQCSNYJ17RX45K0CMQLQPG62NWTJ4QQFOUJE8CDXPC0IVIHCFQMADXNSCT1JPYF6CCMYMG3PY6JYYX7WD5L5PRUADHM5UQDWW4OMSH9G904FV9TMQLBISGJZX6XD1E63FWNHGC5EVBTVRDX49OL35FBY0XFLHHYJN6RNS622UHAQ4LJCF88TZYQDG1QC7V' where id=54; -update noar tt set v1='EFY3XLE5OXTUSARCO934E13M3KLI2M1SMZCYZRFCU8LVREMDRCZNI2W619ENYOMDHXMMB3YC7VXYT4I6NGZBQBQXKZAFGRZMX3WI9VKZOWT1ROSYEI2UYJZ9IZXSPKAB90YLVLLCOL7V3DPBF4RJJWP4HR7OR9B7VSHR1OUD0RXXNEWYNIIGHKST58NMEKJP6DGJ312LQU1TLG31SEO4YXWIY2WDBP6PJZCJBKD8LAM7LBO26HFASVT1HPFHZL2BH' where id=54; -update noar ti set v1='EFY3XLE5OXTUSARCO934E13M3KLI2M1SMZCYZRFCU8LVREMDRCZNI2W619ENYOMDHXMMB3YC7VXYT4I6NGZBQBQXKZAFGRZMX3WI9VKZOWT1ROSYEI2UYJZ9IZXSPKAB90YLVLLCOL7V3DPBF4RJJWP4HR7OR9B7VSHR1OUD0RXXNEWYNIIGHKST58NMEKJP6DGJ312LQU1TLG31SEO4YXWIY2WDBP6PJZCJBKD8LAM7LBO26HFASVT1HPFHZL2BH' where id=54; -update noar tt set v2='N8U6ZPBXUVGIFQKJ5RQL3OATNJ0FTB44I3X93QT9ZDL2L1Q8OXNN2IHICRI8M3NKKGVOIJ4JKHM6YWVU4KKWAZZ55S6CKQ4CIZP5O06HRXT4Q4221BOPIRYEJURNCZF6EUHQ38469X9X46LTNI8MSI8507BXZQBGPCNG1YHBDQ38E63114I7F1VEH8L7SYVX3CA9921OUS4NPUV39VPTELCVVP15ZG2TPWWT8MXD147B0H3N80OBONH727VBFGO0S' where id=54; -update noar ti set v2='N8U6ZPBXUVGIFQKJ5RQL3OATNJ0FTB44I3X93QT9ZDL2L1Q8OXNN2IHICRI8M3NKKGVOIJ4JKHM6YWVU4KKWAZZ55S6CKQ4CIZP5O06HRXT4Q4221BOPIRYEJURNCZF6EUHQ38469X9X46LTNI8MSI8507BXZQBGPCNG1YHBDQ38E63114I7F1VEH8L7SYVX3CA9921OUS4NPUV39VPTELCVVP15ZG2TPWWT8MXD147B0H3N80OBONH727VBFGO0S' where id=54; -update noar tt set v3='D5WU8HHE9314PJKNKJY44TPZB4RKMQA50XOC3WRFN3HSE4JOL92VUCZQRW1DF6OCVY2AGZNO83O480JJIF3QGMM2LF0XDFXCOKK21EG7TLMW487YPQBA1DAJZANJPGD6JLCQPL939238LBP8GT93I7NSFZ8F3EX3DJ633SSX8MR0WQ010YWIEVHHTDKOH7F7RDGG2HPCQXKADD0NXTVG7XS1H44LRYSNA4GG0WK43LQLDQ1TETU6NCDGJVEO3T0WI' where id=54; -update noar ti set v3='D5WU8HHE9314PJKNKJY44TPZB4RKMQA50XOC3WRFN3HSE4JOL92VUCZQRW1DF6OCVY2AGZNO83O480JJIF3QGMM2LF0XDFXCOKK21EG7TLMW487YPQBA1DAJZANJPGD6JLCQPL939238LBP8GT93I7NSFZ8F3EX3DJ633SSX8MR0WQ010YWIEVHHTDKOH7F7RDGG2HPCQXKADD0NXTVG7XS1H44LRYSNA4GG0WK43LQLDQ1TETU6NCDGJVEO3T0WI' where id=54; -update noar tt set v0='5KEBZ7PEV4XE1WV6QIO28EEIDZTUSQHU3XXOOM7ADH9W09UQSN2G28IJOY0T1RI70TIER87ZJXWNZWKMONKET7BHBKMKDF9RF5LE5C4LRZBC7EXOEYPCH7W9SDKYJ1LHBEQVCIMEB0VZ50LPHTK8DUIB138KO4A8NW1J3U8AIVHIR8GQBSYZ2W0LH675HZUVT1FLBBV8ZEU2DC9K8HCJGB514HHS0S7DTFWUUQOS342X8LSPHCTHNRL2TRZEOPBIZ' where id=55; -update noar ti set v0='5KEBZ7PEV4XE1WV6QIO28EEIDZTUSQHU3XXOOM7ADH9W09UQSN2G28IJOY0T1RI70TIER87ZJXWNZWKMONKET7BHBKMKDF9RF5LE5C4LRZBC7EXOEYPCH7W9SDKYJ1LHBEQVCIMEB0VZ50LPHTK8DUIB138KO4A8NW1J3U8AIVHIR8GQBSYZ2W0LH675HZUVT1FLBBV8ZEU2DC9K8HCJGB514HHS0S7DTFWUUQOS342X8LSPHCTHNRL2TRZEOPBIZ' where id=55; -update noar tt set v1='SP782CC3A5B2UIW6REYP3SS0BIX7BER4VPD7483TAUYOMMSSVD69RW8DT18E8LANUGWZ2QFR3CT5VFH6F83H94RA5ED0L572ZDZRYUMO8MJSDXNK9OHJALDMO1UAH0N03ZY969KSOVNZOCO8YNJN37B0QVTI62DON7FGRCRM3B0QDXPOMSAFDGP5LMIEOFP1YUFFXHULAB8THDIMS9DYT0P7RLYXUFUY0785CBG9DZWDWTLOXC9SJLV0CITFX9D7N' where id=55; -update noar ti set v1='SP782CC3A5B2UIW6REYP3SS0BIX7BER4VPD7483TAUYOMMSSVD69RW8DT18E8LANUGWZ2QFR3CT5VFH6F83H94RA5ED0L572ZDZRYUMO8MJSDXNK9OHJALDMO1UAH0N03ZY969KSOVNZOCO8YNJN37B0QVTI62DON7FGRCRM3B0QDXPOMSAFDGP5LMIEOFP1YUFFXHULAB8THDIMS9DYT0P7RLYXUFUY0785CBG9DZWDWTLOXC9SJLV0CITFX9D7N' where id=55; -update noar tt set v2='UGTQD0STZNDIRFSK9L97HGSOORV00LVXD5U76QDQTZOBI2DFMJWVOF334RQD596ER9Y19LIANSR0K8YNB58V17Z2TM1FXYBP36QQKZ0TSTVRU3PNFUITJYM7BJQTESLEZIR49YX812XTC1CQCZZES1IGQV6I1ITFGJ3J3BDQB74OM6D4XTN2DEFVZZVIWDJBYTXNRUXFRHT47Z3JSHGKX8EP6031YAKQLS4ME5UVDD079BTWQCTRJMWLJ11KSN30R' where id=55; -update noar ti set v2='UGTQD0STZNDIRFSK9L97HGSOORV00LVXD5U76QDQTZOBI2DFMJWVOF334RQD596ER9Y19LIANSR0K8YNB58V17Z2TM1FXYBP36QQKZ0TSTVRU3PNFUITJYM7BJQTESLEZIR49YX812XTC1CQCZZES1IGQV6I1ITFGJ3J3BDQB74OM6D4XTN2DEFVZZVIWDJBYTXNRUXFRHT47Z3JSHGKX8EP6031YAKQLS4ME5UVDD079BTWQCTRJMWLJ11KSN30R' where id=55; -update noar tt set v3='IR0AVQZZUS3XEJ6O8RR6I238SPQAXJLXZHRZBK98CN4Z59TCVAUQS1ZVD7SB1B5SF2U3XVNUL3D0NQ7XTSEOJ3T6HOY405F2HB8T7TO91R90XJR6IL9SNC2O9T5LRSN3E1GAQT0ASDDRZ1KE7962FX774SECR81O4Z6WKQME9KMVHIN5C9N5145B49T6U71GBID5G1L2A47KPT4HPFH9ETHFY4HW1GX6TFRMF2N8KK0GH6K1ZVU9PMWAUXEZ7KNUH' where id=55; -update noar ti set v3='IR0AVQZZUS3XEJ6O8RR6I238SPQAXJLXZHRZBK98CN4Z59TCVAUQS1ZVD7SB1B5SF2U3XVNUL3D0NQ7XTSEOJ3T6HOY405F2HB8T7TO91R90XJR6IL9SNC2O9T5LRSN3E1GAQT0ASDDRZ1KE7962FX774SECR81O4Z6WKQME9KMVHIN5C9N5145B49T6U71GBID5G1L2A47KPT4HPFH9ETHFY4HW1GX6TFRMF2N8KK0GH6K1ZVU9PMWAUXEZ7KNUH' where id=55; -update noar tt set v0='2XVRXAUXBGGSHA02PHRF5WM23SVCINVTS31613SIKPF42FW01653P6QQ7AZDGLWWPP3E1V25LPLJ950BP6RH4OUZUP6U5JZ3ESP3CKX7W1CM10ZRKAUL0IHUCP1XJUC3NV33PT3BZQJJ4EWNW2YAAZ9SEFON7DS297QOJJA4WUUWSV43QOO5AJDOSX694MUC2M229TL19XZ80PS1R7BQ1G0RNH2HNK3EN4ENWOHMX8MAVX5JDPGP9IC6RU2DG1RDN' where id=56; -update noar ti set v0='2XVRXAUXBGGSHA02PHRF5WM23SVCINVTS31613SIKPF42FW01653P6QQ7AZDGLWWPP3E1V25LPLJ950BP6RH4OUZUP6U5JZ3ESP3CKX7W1CM10ZRKAUL0IHUCP1XJUC3NV33PT3BZQJJ4EWNW2YAAZ9SEFON7DS297QOJJA4WUUWSV43QOO5AJDOSX694MUC2M229TL19XZ80PS1R7BQ1G0RNH2HNK3EN4ENWOHMX8MAVX5JDPGP9IC6RU2DG1RDN' where id=56; -update noar tt set v1='WKTYSGIL5KW3XX3ODB3ZXQEIDPYVDFETW2PFC7JQMIEZCIIEKS6V1PR1LI4PLJQXCQALPGJJ7C7MFDNY9ZM3T9W2WGDC82PSSW8ITUD53UTVY426MRX5VJVP9N99HFE3YFSWJOZKRE2NJ6G5IBVG5Y0IDD6AX2Q6HQFD18CVA7S2Z8OXPDDADLFHM0C3BO0CCWHCG67C8G1UJ4UDYWGD7ESPLH3PIGJHT81N3PNI9EBRBV9WC6D7YIU4AY0VXQ8I2' where id=56; -update noar ti set v1='WKTYSGIL5KW3XX3ODB3ZXQEIDPYVDFETW2PFC7JQMIEZCIIEKS6V1PR1LI4PLJQXCQALPGJJ7C7MFDNY9ZM3T9W2WGDC82PSSW8ITUD53UTVY426MRX5VJVP9N99HFE3YFSWJOZKRE2NJ6G5IBVG5Y0IDD6AX2Q6HQFD18CVA7S2Z8OXPDDADLFHM0C3BO0CCWHCG67C8G1UJ4UDYWGD7ESPLH3PIGJHT81N3PNI9EBRBV9WC6D7YIU4AY0VXQ8I2' where id=56; -update noar tt set v2='VS47NFSA08ZZ47ZVU1HLA7Q29YEZIZ9PTL3SNLGSCLIOR8IKEURY24XRPBZ4AB8YA5S13MBDMJFA4W090FJHJ2GX8GWX0RT0CEHVP129KOL1X2048Z4U605ZIV2ZX9R6UU39GDX60TFRTDMV86USA03IJ9BPC6HPBTXG38MV3DWHWJ9AK272BUM8J7M09EALJSDI76TXU7NVFBGCXJVGGR1U0N1RHP2H2UTUJ7Y2I2INIYIZUGRKTP7Z45OM8S37U' where id=56; -update noar ti set v2='VS47NFSA08ZZ47ZVU1HLA7Q29YEZIZ9PTL3SNLGSCLIOR8IKEURY24XRPBZ4AB8YA5S13MBDMJFA4W090FJHJ2GX8GWX0RT0CEHVP129KOL1X2048Z4U605ZIV2ZX9R6UU39GDX60TFRTDMV86USA03IJ9BPC6HPBTXG38MV3DWHWJ9AK272BUM8J7M09EALJSDI76TXU7NVFBGCXJVGGR1U0N1RHP2H2UTUJ7Y2I2INIYIZUGRKTP7Z45OM8S37U' where id=56; -update noar tt set v3='TKHXH2TUVZ35KW8ECSY84F6B9G0RN8JZU8LZSGSTUOIAQY5P4KFM8XMI2T4FG2UVDGWNFJAZ9H5BB5MFW90XVGNGS528IEKC1G52UAHPGXF5VH10VO3OC4KO7BO4UKLR380OFXN5KDIUSS86R1TQD6YDDBNXKPDV3ZB059XOSGE0ISD9J0NEG5HDEOGY7MRTYV08937GY5N1THJJIK8FSJDGF0W8OFPWT3OHYM8L1GDLTJVYJ6VOJG1Y96JTTLSAV' where id=56; -update noar ti set v3='TKHXH2TUVZ35KW8ECSY84F6B9G0RN8JZU8LZSGSTUOIAQY5P4KFM8XMI2T4FG2UVDGWNFJAZ9H5BB5MFW90XVGNGS528IEKC1G52UAHPGXF5VH10VO3OC4KO7BO4UKLR380OFXN5KDIUSS86R1TQD6YDDBNXKPDV3ZB059XOSGE0ISD9J0NEG5HDEOGY7MRTYV08937GY5N1THJJIK8FSJDGF0W8OFPWT3OHYM8L1GDLTJVYJ6VOJG1Y96JTTLSAV' where id=56; -update noar tt set v0='OQRVV7TKUBTCNWOMOHXDKY34RBM65J78BH049YBAMGPN3LEI9X1H7OTDIFN706ISCIAT2B02IRTTSSXF7KVOC8VGVZPWTCVM0FO6ZVP92SXC75DP04MW6YXIJ90P32IZPF1F1SK2SDIQW2QJVZAYFW4ARYY9SU959VSF3L8ZW6Q6E70GRGK71ICY8FZ8SRLH7V1NS96V4JV3TRPBHMBM3HFKBGMY7HA9E0YWZYJ1MRVPATQ5LVOX8B6IUOHJ11LO0' where id=57; -update noar ti set v0='OQRVV7TKUBTCNWOMOHXDKY34RBM65J78BH049YBAMGPN3LEI9X1H7OTDIFN706ISCIAT2B02IRTTSSXF7KVOC8VGVZPWTCVM0FO6ZVP92SXC75DP04MW6YXIJ90P32IZPF1F1SK2SDIQW2QJVZAYFW4ARYY9SU959VSF3L8ZW6Q6E70GRGK71ICY8FZ8SRLH7V1NS96V4JV3TRPBHMBM3HFKBGMY7HA9E0YWZYJ1MRVPATQ5LVOX8B6IUOHJ11LO0' where id=57; -update noar tt set v1='4TN0SP1FBHJJXDMU0BUGSH16R3HZLP6PBP3898F2VNZXZ0B6267WIFAO0DXSNM4PKAAQQGDB0K4CXR19RPDGNJVC2JBDJJV50LIJH54V6XMHW1ILDV4OOIZ1028L3JP6IZV53F1TA01T640TBXEL2JX5PW85AB753K3NZWO4NHALZ2FWRJS71N130HDL14244HH4LNZOSS6ZUWKU85Q9VE0INU68JGDGIFOTHZJMXFSOR6NYUQD1ELA132DM53Z19' where id=57; -update noar ti set v1='4TN0SP1FBHJJXDMU0BUGSH16R3HZLP6PBP3898F2VNZXZ0B6267WIFAO0DXSNM4PKAAQQGDB0K4CXR19RPDGNJVC2JBDJJV50LIJH54V6XMHW1ILDV4OOIZ1028L3JP6IZV53F1TA01T640TBXEL2JX5PW85AB753K3NZWO4NHALZ2FWRJS71N130HDL14244HH4LNZOSS6ZUWKU85Q9VE0INU68JGDGIFOTHZJMXFSOR6NYUQD1ELA132DM53Z19' where id=57; -update noar tt set v2='ZT4VWDLJU9A6RX17I03RU04VKQ2IELHQ45XLD70YKQFMMKIOTCB9KINY3BHGVU5QYD2DTE2FIRRXWAERKR8H3VAW1TWMS5PSJHH38SK203CK5QF58CPHZP4YP57U13EVRCV0FANAAKNBU2MNF685D9QY43GOX1LAZWFKIZ961ZZ5HBWN9Q3R9W5OB5G1QTOVUYI9Y0CPMLANDW0BQ21TK3SUPPVNWX05E2XKI4SZ7FJKV4A5GNKW58CSDIBKJ7BKV' where id=57; -update noar ti set v2='ZT4VWDLJU9A6RX17I03RU04VKQ2IELHQ45XLD70YKQFMMKIOTCB9KINY3BHGVU5QYD2DTE2FIRRXWAERKR8H3VAW1TWMS5PSJHH38SK203CK5QF58CPHZP4YP57U13EVRCV0FANAAKNBU2MNF685D9QY43GOX1LAZWFKIZ961ZZ5HBWN9Q3R9W5OB5G1QTOVUYI9Y0CPMLANDW0BQ21TK3SUPPVNWX05E2XKI4SZ7FJKV4A5GNKW58CSDIBKJ7BKV' where id=57; -update noar tt set v3='1PDH4D1PM0XNQZT5SPS63J000RNAOUBW88BLZ8D1LZR4L1DKN6CMFU2UEKSFKXGA195XKAQUQW6OCXV1HCMAT9W18W6HE46HI6XRHLQH9UPI5DFC0RU5KQNVJ56YU4YPOFO0NZN21IPTQPAF6WHAWEJD6E8N67ZUJMIAET33V0ZR7YUKTDK52SOLJJ1XZ9JZHBRV8S3IEBSR6J90SIO2SCOZO5X98VPR7ZYJ5K4LC446M1BXDX312KAVN6KRPD2IS' where id=57; -update noar ti set v3='1PDH4D1PM0XNQZT5SPS63J000RNAOUBW88BLZ8D1LZR4L1DKN6CMFU2UEKSFKXGA195XKAQUQW6OCXV1HCMAT9W18W6HE46HI6XRHLQH9UPI5DFC0RU5KQNVJ56YU4YPOFO0NZN21IPTQPAF6WHAWEJD6E8N67ZUJMIAET33V0ZR7YUKTDK52SOLJJ1XZ9JZHBRV8S3IEBSR6J90SIO2SCOZO5X98VPR7ZYJ5K4LC446M1BXDX312KAVN6KRPD2IS' where id=57; -update noar tt set v0='T4IYVQX8QWH7DCJ98VJY092YGKJHA7UB8SNGPBPAHTM1E10925N9RUPCT6MJ1QRBUKRBFJVQGX4XQOJAO29F2SG0RBVOR595QULYSMW5BM5D9F08H9C0P62SCXRKDO87CP14BW15ODYHW3UW6L29P5ORG7U16NVODTM9ZZU8SCTFPWL2AUC6FHTQ8YP2NXMVOHGXJSUWD4VB1XR4IWHAN03GLA62YB66EXIHYYFP0NGYMU5JG8P2245FNTFH2ALSY' where id=58; -update noar ti set v0='T4IYVQX8QWH7DCJ98VJY092YGKJHA7UB8SNGPBPAHTM1E10925N9RUPCT6MJ1QRBUKRBFJVQGX4XQOJAO29F2SG0RBVOR595QULYSMW5BM5D9F08H9C0P62SCXRKDO87CP14BW15ODYHW3UW6L29P5ORG7U16NVODTM9ZZU8SCTFPWL2AUC6FHTQ8YP2NXMVOHGXJSUWD4VB1XR4IWHAN03GLA62YB66EXIHYYFP0NGYMU5JG8P2245FNTFH2ALSY' where id=58; -update noar tt set v1='H7WEYMXXQ08LK3FKZMLSW30KI0UANO3S634GJ1VSNC8XYR161D3XNQ7ZDAOR19MRUYA33R9NGGHXGOPE88QBB5JKRC9TX6MVSH3JIT0SXZI1OYBD58IG45A4WK9Y3VZSPIF96GDZ8G19Z5IATL4YNUES8AAQKPN0XWDMNCOFRD0JX5VUKORKEDJ8BBWKHCT0HT235HOFB60S35VOWNK0URG8OAOYJ0V5P1NOJ0AWGBX9GMPZVJCOAKXXU2WYOX5GV' where id=58; -update noar ti set v1='H7WEYMXXQ08LK3FKZMLSW30KI0UANO3S634GJ1VSNC8XYR161D3XNQ7ZDAOR19MRUYA33R9NGGHXGOPE88QBB5JKRC9TX6MVSH3JIT0SXZI1OYBD58IG45A4WK9Y3VZSPIF96GDZ8G19Z5IATL4YNUES8AAQKPN0XWDMNCOFRD0JX5VUKORKEDJ8BBWKHCT0HT235HOFB60S35VOWNK0URG8OAOYJ0V5P1NOJ0AWGBX9GMPZVJCOAKXXU2WYOX5GV' where id=58; -update noar tt set v2='1CKWL0AI2QJC9TJ7FXE8OHM5F3HOGMQBAME9JH19VKQ8OXX3Q4QGJOZ4MDLEJLMWT80RIMO8332NH74LP2FSRGBK541MEJ1IO190U7TVPLB7WQ7AEBIVTYVHQNZ5W5Z8XBMLHYW1T2PASDT8VJKYUYCJESPMGIIEDCOPW4PV3MUZW35GPLMMYPGUYBB75NOO7RERYD4ATM3XF10Y2N9V1QA0NYP6KXH4KS46VLUPV8DB19MA55BHESKJEW9O62777' where id=58; -update noar ti set v2='1CKWL0AI2QJC9TJ7FXE8OHM5F3HOGMQBAME9JH19VKQ8OXX3Q4QGJOZ4MDLEJLMWT80RIMO8332NH74LP2FSRGBK541MEJ1IO190U7TVPLB7WQ7AEBIVTYVHQNZ5W5Z8XBMLHYW1T2PASDT8VJKYUYCJESPMGIIEDCOPW4PV3MUZW35GPLMMYPGUYBB75NOO7RERYD4ATM3XF10Y2N9V1QA0NYP6KXH4KS46VLUPV8DB19MA55BHESKJEW9O62777' where id=58; -update noar tt set v3='GT2XAWQ1WX4S935LJDP4LU49YKV1PBSTOF0N0ZE8Z9A356SPP9TC92GE9UE5ZX4R14EXLTO4KNZE2MVIDUN3TBFIMXDU8IDGUMHLW79BJSFLB04I8K7RVETY8QIV24MJQHENQUTSXTTENVU6Z56N6SWZNTA0PN5C9XOUM3KRNFTWUU5BIV4JCKD73XVC166VGPV40PHZTJXSF1SXUSLDPIHZ3AQ8O7AHYHKZSGS1SD6TDY6K9AIWFPUTIUCEP4M3K' where id=58; -update noar ti set v3='GT2XAWQ1WX4S935LJDP4LU49YKV1PBSTOF0N0ZE8Z9A356SPP9TC92GE9UE5ZX4R14EXLTO4KNZE2MVIDUN3TBFIMXDU8IDGUMHLW79BJSFLB04I8K7RVETY8QIV24MJQHENQUTSXTTENVU6Z56N6SWZNTA0PN5C9XOUM3KRNFTWUU5BIV4JCKD73XVC166VGPV40PHZTJXSF1SXUSLDPIHZ3AQ8O7AHYHKZSGS1SD6TDY6K9AIWFPUTIUCEP4M3K' where id=58; -update noar tt set v0='OCJKLR5DWR3C8QSGNPUDDVM8FA7T7UWVKEF80AXPSP50JUKOZKXW9MLTRCSSGQ1WJ3UIM7CED973ORIG8G2X30YR6IABYP5FYXS3BUB8YASSJZ15VDR21UR4D1MKIKOOTBISIG9IUWHC607NUVBA3IRRJRZF13INTJ5UOSDFJEJFQC61NA9IF486JNSEMIZ4WEW0NPWV7SJ5FWHZPOYMYRKTTJI7SU73Y55R53A58S2R7B4TQVUC6WRLKA2XPT6W5' where id=59; -update noar ti set v0='OCJKLR5DWR3C8QSGNPUDDVM8FA7T7UWVKEF80AXPSP50JUKOZKXW9MLTRCSSGQ1WJ3UIM7CED973ORIG8G2X30YR6IABYP5FYXS3BUB8YASSJZ15VDR21UR4D1MKIKOOTBISIG9IUWHC607NUVBA3IRRJRZF13INTJ5UOSDFJEJFQC61NA9IF486JNSEMIZ4WEW0NPWV7SJ5FWHZPOYMYRKTTJI7SU73Y55R53A58S2R7B4TQVUC6WRLKA2XPT6W5' where id=59; -update noar tt set v1='SZX3XFTLON4AGEFQKX8O2A6BQQBMK0O1J02XXY1DFW8MPKSCVGYVLZ3YOM21V8YHDK7VJHZGI7NX5SOKXF4XVIN2OY7IPWPCSR9J22LHMIUJ1UXRMFCWTU04ZO3OHNB5873V882WYTFWOVLIHD2RQMPRMRBC3FKFUGT7E3SBGVVZ2KKWE82S35T0Y3S13YSIB68Z81FGFCQGDPLL6QWXHELNJB4IJRWH1ER7WM56ITTFHK0IJ9SPVTN7AV9XRR1D3' where id=59; -update noar ti set v1='SZX3XFTLON4AGEFQKX8O2A6BQQBMK0O1J02XXY1DFW8MPKSCVGYVLZ3YOM21V8YHDK7VJHZGI7NX5SOKXF4XVIN2OY7IPWPCSR9J22LHMIUJ1UXRMFCWTU04ZO3OHNB5873V882WYTFWOVLIHD2RQMPRMRBC3FKFUGT7E3SBGVVZ2KKWE82S35T0Y3S13YSIB68Z81FGFCQGDPLL6QWXHELNJB4IJRWH1ER7WM56ITTFHK0IJ9SPVTN7AV9XRR1D3' where id=59; -update noar tt set v2='SGKGE4Z01FT1ZLC2PAW8G5T8PGG0EUCYSAF8L5MV2C071IHPV5J8O9KA2749U7QUK0AC4A7MWW81HVM3NBRDWDKT1LTEOYH8UGT3QXDIV37U89K8VXAZ9G87BMEAMZI2MSBG5704H4W45B17JIRGJ8QI25O0MLRVN72NS7JJG4754YC8L6C6P26OTWXL6Z4H7ZGB094GML0PHEXA0ISPIS5YX52ZVLSEWPB6XNOHJ8I8TVARPJ9YEDT8VSS0349Q2' where id=59; -update noar ti set v2='SGKGE4Z01FT1ZLC2PAW8G5T8PGG0EUCYSAF8L5MV2C071IHPV5J8O9KA2749U7QUK0AC4A7MWW81HVM3NBRDWDKT1LTEOYH8UGT3QXDIV37U89K8VXAZ9G87BMEAMZI2MSBG5704H4W45B17JIRGJ8QI25O0MLRVN72NS7JJG4754YC8L6C6P26OTWXL6Z4H7ZGB094GML0PHEXA0ISPIS5YX52ZVLSEWPB6XNOHJ8I8TVARPJ9YEDT8VSS0349Q2' where id=59; -update noar tt set v3='WW7PJ5U5FIPYO51MRLEAD29VOJ4RONVS3U7BAR4Y0BA7ZKOLO3GE7FJCWMSFD58GEHH9I45SPCPMB5EGOZHFVI3ICQ045KPR3CLRI5UA7LN10X0T1I824EY3YMFM0Y4L2N6I9O905JKPA39931IAOT3LQ8ZFN1UWFNQU8HMD86068TAHR1M1XL6EL22P49AJXJMVECPWTERW3D7YV2RQFS1UO4N6KBVIQWN37ZRUUB1ITN7I4D1VD5KMZ6JH9F8G4' where id=59; -update noar ti set v3='WW7PJ5U5FIPYO51MRLEAD29VOJ4RONVS3U7BAR4Y0BA7ZKOLO3GE7FJCWMSFD58GEHH9I45SPCPMB5EGOZHFVI3ICQ045KPR3CLRI5UA7LN10X0T1I824EY3YMFM0Y4L2N6I9O905JKPA39931IAOT3LQ8ZFN1UWFNQU8HMD86068TAHR1M1XL6EL22P49AJXJMVECPWTERW3D7YV2RQFS1UO4N6KBVIQWN37ZRUUB1ITN7I4D1VD5KMZ6JH9F8G4' where id=59; -update noar tt set v0='AOZVC9T1CKT9IETJ31WKMG7KHLMD0H6H0SAMB3ITD6EUYXKT4SM2U7DNVWT7Y8X0YRPSTVWR0AP74XA9ZHWMBHQ3NC4EGX7B5T9GX9WI04M3EY8EVJDXLC17TYY0TDUPV3Y30MICMKCV0OYCS3TMAR29TL33OKG3VX7BK8WV04HMBSB9YCZOALIAM2R1XK4EIQG4V7R6L4Q0YADNGASZJY8Z3KM467RF308IDJ6SN9TXRWHS30NI42WIX2S5QXVP7' where id=60; -update noar ti set v0='AOZVC9T1CKT9IETJ31WKMG7KHLMD0H6H0SAMB3ITD6EUYXKT4SM2U7DNVWT7Y8X0YRPSTVWR0AP74XA9ZHWMBHQ3NC4EGX7B5T9GX9WI04M3EY8EVJDXLC17TYY0TDUPV3Y30MICMKCV0OYCS3TMAR29TL33OKG3VX7BK8WV04HMBSB9YCZOALIAM2R1XK4EIQG4V7R6L4Q0YADNGASZJY8Z3KM467RF308IDJ6SN9TXRWHS30NI42WIX2S5QXVP7' where id=60; -update noar tt set v1='MMLN0JIFW6NRG014UZVRAUY0GH8VJ731Z77FPBUZVVRXGVD8L5SOIWTU9CFKRFFY1JUZM74LEWBLUNZGJOZZDTPY93UHS4S27P72QXSB95MP3X8EXYDSCEOO7DMTMYX98GCQ4242HDVLPITE4DB16DJKGCL8HRD2KJXFT6EFMLFX1OWA6ME5JP3KRG0LC2R9IB35EHHQ4MKO7N4QBNEH6EZ8EJXPLWPECQN2M08JAPBP08RJX678HHPJFG46SDO2S' where id=60; -update noar ti set v1='MMLN0JIFW6NRG014UZVRAUY0GH8VJ731Z77FPBUZVVRXGVD8L5SOIWTU9CFKRFFY1JUZM74LEWBLUNZGJOZZDTPY93UHS4S27P72QXSB95MP3X8EXYDSCEOO7DMTMYX98GCQ4242HDVLPITE4DB16DJKGCL8HRD2KJXFT6EFMLFX1OWA6ME5JP3KRG0LC2R9IB35EHHQ4MKO7N4QBNEH6EZ8EJXPLWPECQN2M08JAPBP08RJX678HHPJFG46SDO2S' where id=60; -update noar tt set v2='QY5UN1Q1FY85OIARC056Q9VM5I46LPE7SY61Z6PNGZVNC31JJHRZ4V9S33CDNJPSD7MXFT8CSYWWLPOB9MQ3KK4IJ7NDE2WCSEUEZ2N1TFI7BOBUK5TG2RGHLTOPIJAMLYOOKIH9Y8BUEZYRW6HEFBS0WBZ38IXH4Y93SN18O6DYV5ISB83HNLFM3YAV03MYPJD09GI30RJZ2WVCA43RSH6ITEGQA3HX1KFRM3ECBVYWXYQDR1SMYHO0EZ9XW2PHT' where id=60; -update noar ti set v2='QY5UN1Q1FY85OIARC056Q9VM5I46LPE7SY61Z6PNGZVNC31JJHRZ4V9S33CDNJPSD7MXFT8CSYWWLPOB9MQ3KK4IJ7NDE2WCSEUEZ2N1TFI7BOBUK5TG2RGHLTOPIJAMLYOOKIH9Y8BUEZYRW6HEFBS0WBZ38IXH4Y93SN18O6DYV5ISB83HNLFM3YAV03MYPJD09GI30RJZ2WVCA43RSH6ITEGQA3HX1KFRM3ECBVYWXYQDR1SMYHO0EZ9XW2PHT' where id=60; -update noar tt set v3='6LEOVTR64VSNYLW6RIHCEY2CRAFZHKXEQNHT9V60WZNZ7HWXW1P347NY7A8GO4KT7GTFY5832650LMBPT5J2YHANYC0MMDSKC59C8Q85G30TJI9PKMKK2TH7AEDTB18RL82OMQI7IRAQNZUZWP62WDL4MI0XKUBN0VSWG38SZYHMX4D1ZA3G2XXCEFEVUIBQBZV9H5NUM78ENIEVY51PWE7OU9V82LBUXAIV3WPRXKVX9Q7WJCYTP29DG4IIAVEWA' where id=60; -update noar ti set v3='6LEOVTR64VSNYLW6RIHCEY2CRAFZHKXEQNHT9V60WZNZ7HWXW1P347NY7A8GO4KT7GTFY5832650LMBPT5J2YHANYC0MMDSKC59C8Q85G30TJI9PKMKK2TH7AEDTB18RL82OMQI7IRAQNZUZWP62WDL4MI0XKUBN0VSWG38SZYHMX4D1ZA3G2XXCEFEVUIBQBZV9H5NUM78ENIEVY51PWE7OU9V82LBUXAIV3WPRXKVX9Q7WJCYTP29DG4IIAVEWA' where id=60; -update noar tt set v0='Z06DWH9481KQY5ZFX768QBMQLADK5COYS3Y4O6H5EIUEL3V9OVPWQ1UL1WKLNSZF6A9IDS6W1Q6RZMI3ROTFLE363BVOXDK8SEYZHGE55ZK56JYUWJ6B67P5SIP6S4V0W1ZEI6MNZKXN2NHMU0HKJDU9HDIICVH2C29O8Y4GPFD9NH5L74ZYHXQZ5JC9WLP4H3LD0K5A9B6OT89ZXMAV52N18P06R1PQKXK5C3M1P6XENDYXX9E9VWORZWENUXG9M' where id=61; -update noar ti set v0='Z06DWH9481KQY5ZFX768QBMQLADK5COYS3Y4O6H5EIUEL3V9OVPWQ1UL1WKLNSZF6A9IDS6W1Q6RZMI3ROTFLE363BVOXDK8SEYZHGE55ZK56JYUWJ6B67P5SIP6S4V0W1ZEI6MNZKXN2NHMU0HKJDU9HDIICVH2C29O8Y4GPFD9NH5L74ZYHXQZ5JC9WLP4H3LD0K5A9B6OT89ZXMAV52N18P06R1PQKXK5C3M1P6XENDYXX9E9VWORZWENUXG9M' where id=61; -update noar tt set v1='FCAIZUEISH1PP8D1UJEMUG2LMIY4FFH9OOCLC9MNLWJ8ISEUK7H1NG74WOC5NGXJO88RW8708K3C1V0J22REYZBKA3P4OW4Z3NGSS8O0R8EQACR0W5T308R178MYU6DK7EYKZI8I34AS9X00NTTYOKPILSVXL1X2V650O1X7TOA23WJEGTCZWKF63GMDS099SC7U7G4FH9STT61069CVVJ3V1L7PVZRYRY9JQUS8DNRXGCL2O221OWZ3FYH18KB6R' where id=61; -update noar ti set v1='FCAIZUEISH1PP8D1UJEMUG2LMIY4FFH9OOCLC9MNLWJ8ISEUK7H1NG74WOC5NGXJO88RW8708K3C1V0J22REYZBKA3P4OW4Z3NGSS8O0R8EQACR0W5T308R178MYU6DK7EYKZI8I34AS9X00NTTYOKPILSVXL1X2V650O1X7TOA23WJEGTCZWKF63GMDS099SC7U7G4FH9STT61069CVVJ3V1L7PVZRYRY9JQUS8DNRXGCL2O221OWZ3FYH18KB6R' where id=61; -update noar tt set v2='VJSKU2WK2WHEIRX475ME9G71GYLRFCQ3PLISDP8AG0ML2YF1CZ3FZ7BUO4GO8367049CQZNP78901O3MYGCS8B8GEQT8JS6C8UZ6CTQSASARSYMW7AVUA36IQJQZZGIO3AHBCUEFT7ZJJ5JHEGI2N4ZAHBZP7LR4NFZEBKQH6A27G0RQTCI3E9R2DJNWZBH06GFMXS62333RIOVPDA7L35VFRGHJPN4D6ONHFH3PHQFSKIC2HBN1XOB387FP88I1M' where id=61; -update noar ti set v2='VJSKU2WK2WHEIRX475ME9G71GYLRFCQ3PLISDP8AG0ML2YF1CZ3FZ7BUO4GO8367049CQZNP78901O3MYGCS8B8GEQT8JS6C8UZ6CTQSASARSYMW7AVUA36IQJQZZGIO3AHBCUEFT7ZJJ5JHEGI2N4ZAHBZP7LR4NFZEBKQH6A27G0RQTCI3E9R2DJNWZBH06GFMXS62333RIOVPDA7L35VFRGHJPN4D6ONHFH3PHQFSKIC2HBN1XOB387FP88I1M' where id=61; -update noar tt set v3='I9SDEYSD90H16OQ8OJCZH3TSBAZU4CD4HZ8EPQ8AAADHM1JWLIZ6CZWX6H29IR5YJARZO32GSWODWNC3TZDSUMBNKI918PF1R9UOJHYJVK7DSPLRP78QHVQ7QH9G6QJO68X2RLOLDMH1O5GS3OONBFVWEEA8LAJSR1KX3T5ICPA46IDRHPXK6DKC0U7J7NIBDHKJXYCUDPUK6AA0E6ST3H4SH635J89OFQS5DCR0FH5CU757J65PJTMERPCLHIJ6K' where id=61; -update noar ti set v3='I9SDEYSD90H16OQ8OJCZH3TSBAZU4CD4HZ8EPQ8AAADHM1JWLIZ6CZWX6H29IR5YJARZO32GSWODWNC3TZDSUMBNKI918PF1R9UOJHYJVK7DSPLRP78QHVQ7QH9G6QJO68X2RLOLDMH1O5GS3OONBFVWEEA8LAJSR1KX3T5ICPA46IDRHPXK6DKC0U7J7NIBDHKJXYCUDPUK6AA0E6ST3H4SH635J89OFQS5DCR0FH5CU757J65PJTMERPCLHIJ6K' where id=61; -update noar tt set v0='NXEXZUGUPS1TTYH4MEMQCOTU47J1L06S1Y5GN3N77G8262UEXHEZ6LKSACZ0MGUE5IMHE5EMSKSG5KBANY09Q64HL579L4OJ7L51HQPT1QMNIEWV4XMH91BB9C0BTOLZRDA0RHL7KQY9IT2ICMYUHVANHFXOJCQO7YKCG8XNAXQ84EVD25315P096U36XTW85N6X6O8D2TMOGCQIMXVPN0SIRFA7WS8D9RSK79B42GDI6RB2E8FA5TEEBT5F4YCHR' where id=62; -update noar ti set v0='NXEXZUGUPS1TTYH4MEMQCOTU47J1L06S1Y5GN3N77G8262UEXHEZ6LKSACZ0MGUE5IMHE5EMSKSG5KBANY09Q64HL579L4OJ7L51HQPT1QMNIEWV4XMH91BB9C0BTOLZRDA0RHL7KQY9IT2ICMYUHVANHFXOJCQO7YKCG8XNAXQ84EVD25315P096U36XTW85N6X6O8D2TMOGCQIMXVPN0SIRFA7WS8D9RSK79B42GDI6RB2E8FA5TEEBT5F4YCHR' where id=62; -update noar tt set v1='5AU9RJ74MDW27W4LVAXBPYS3NI7AEPDVVY7OEFFS0RDKVYXX6TU08HU72MRJ4860MGPDRFYYKX3GAVGZ85K4NE7CC25JM4RF1LYRTIYH67JLAWN63DODIF0H627PC08LKYGB9FMMZVHGWRKOQU7LZPI5BTC895DB81RATMR7EV02SOREHELLO72EMTWWOIXX8XG8DHJK5FU7EU64XSTRZPTY9BE80M9XK5RO3I9L9ZGE4G0FW7Q4HBXPPUTBL13I8' where id=62; -update noar ti set v1='5AU9RJ74MDW27W4LVAXBPYS3NI7AEPDVVY7OEFFS0RDKVYXX6TU08HU72MRJ4860MGPDRFYYKX3GAVGZ85K4NE7CC25JM4RF1LYRTIYH67JLAWN63DODIF0H627PC08LKYGB9FMMZVHGWRKOQU7LZPI5BTC895DB81RATMR7EV02SOREHELLO72EMTWWOIXX8XG8DHJK5FU7EU64XSTRZPTY9BE80M9XK5RO3I9L9ZGE4G0FW7Q4HBXPPUTBL13I8' where id=62; -update noar tt set v2='70OX8IB5D52ZKY0YRQDR3P1NMCPNMWO1CQ8KFIVMTRNYKEEFGP1YP2ELLWBEHW24USBQRU6P3DGJ3FJH2TPQJ0Q4X436IGF8QC41XU74K4YOQ5YZNZGZIYY8QS8ZP9IVBHPIKTFYOO5FGAUYALC1XHDZCZUGFCAT8BBYYQXCWQJQ2Y7K72XGA7LUUFRALQG6P57OOYSADVUKYNZ75GX7AMJQBPWOAC5DNDK75XIPE6Q172FRAMRK3OLHDIRUSC14A' where id=62; -update noar ti set v2='70OX8IB5D52ZKY0YRQDR3P1NMCPNMWO1CQ8KFIVMTRNYKEEFGP1YP2ELLWBEHW24USBQRU6P3DGJ3FJH2TPQJ0Q4X436IGF8QC41XU74K4YOQ5YZNZGZIYY8QS8ZP9IVBHPIKTFYOO5FGAUYALC1XHDZCZUGFCAT8BBYYQXCWQJQ2Y7K72XGA7LUUFRALQG6P57OOYSADVUKYNZ75GX7AMJQBPWOAC5DNDK75XIPE6Q172FRAMRK3OLHDIRUSC14A' where id=62; -update noar tt set v3='122OFJ6KA5NDLUYVNC0PAVE1U3IF10MIATZ9IOTXG6GC8339IJRIFRQ2QHFKU44R0FNRV8HO75VCIQ3YRON1DMOP7TU53DC6SQG6OJ5ICNUZDT3JUI070RZPZ84U4YV5I8ATT1S8SZZ7YUCF5THZK446OFU7NV54KSBRF3LFQ4ZT5C09XDZRHP436GQEE0J8SWM57DT6RV5033VNPV6MN3NR3CLTAIMWNN2W2ON4S914094K295W0DA7T6ULBQ64R' where id=62; -update noar ti set v3='122OFJ6KA5NDLUYVNC0PAVE1U3IF10MIATZ9IOTXG6GC8339IJRIFRQ2QHFKU44R0FNRV8HO75VCIQ3YRON1DMOP7TU53DC6SQG6OJ5ICNUZDT3JUI070RZPZ84U4YV5I8ATT1S8SZZ7YUCF5THZK446OFU7NV54KSBRF3LFQ4ZT5C09XDZRHP436GQEE0J8SWM57DT6RV5033VNPV6MN3NR3CLTAIMWNN2W2ON4S914094K295W0DA7T6ULBQ64R' where id=62; -update noar tt set v0='7XPULF6CBZ1A8KZW7WRCIRVO2HJSTNY8FH7HFF6OV7KQ5XQL3CSTHZS26YHE84YD9WNW48KH1TNVT9KSAGV8M95NF31N4RRB31QAGLY5QDF1K9LKB369I8UQZZFU5KAN2CSU8ERAZHZOPV611U4L80Y9DGMN1E35JYCQJD2N0WN7SJFGG5STWU2P42KP66DZSFB317VZTL9ZT78LHMZ3VVL74QNZY1B5K0AZYL2LK5L2IU4BV0OC8PYY9X6IM6G2I' where id=63; -update noar ti set v0='7XPULF6CBZ1A8KZW7WRCIRVO2HJSTNY8FH7HFF6OV7KQ5XQL3CSTHZS26YHE84YD9WNW48KH1TNVT9KSAGV8M95NF31N4RRB31QAGLY5QDF1K9LKB369I8UQZZFU5KAN2CSU8ERAZHZOPV611U4L80Y9DGMN1E35JYCQJD2N0WN7SJFGG5STWU2P42KP66DZSFB317VZTL9ZT78LHMZ3VVL74QNZY1B5K0AZYL2LK5L2IU4BV0OC8PYY9X6IM6G2I' where id=63; -update noar tt set v1='425VW1UHS2MFSSZQYC4MJMDFT6VQUJNYA7D6JZR5TZQY0CU6O2NHSZBE3AY9YMX05Y0ER4LZXUPV6DAOS4ZJDENI9QWXWBQLM6N45VKI4EUQFV96QFLGAPA5WBL2RR5W9L96XZI76OA8LK1KMER86D3VZ7T6VQWZ15KH662NG1YEFPXNXPLZCPKSDVS2TKYAEFD0D5VAWFQ6HS2NB7V8B013ETWJ5XN9S6BXLT38U063CZDVQUPSYM6U9K8C1RFAL' where id=63; -update noar ti set v1='425VW1UHS2MFSSZQYC4MJMDFT6VQUJNYA7D6JZR5TZQY0CU6O2NHSZBE3AY9YMX05Y0ER4LZXUPV6DAOS4ZJDENI9QWXWBQLM6N45VKI4EUQFV96QFLGAPA5WBL2RR5W9L96XZI76OA8LK1KMER86D3VZ7T6VQWZ15KH662NG1YEFPXNXPLZCPKSDVS2TKYAEFD0D5VAWFQ6HS2NB7V8B013ETWJ5XN9S6BXLT38U063CZDVQUPSYM6U9K8C1RFAL' where id=63; -update noar tt set v2='FIGA0YYCOX1PAY3OZMU14NO5NRN6DH84XGAHB52YXWYFXSPIAUC5YLNAYKDPMRXJK9Q6QBS0E9T88K5NY5C9O08HJ8I3WVVTC9YOWRRHG547IW6UC0Z3ENMUD1LQ2KSELRN4SRQ0ADR0XHNTPJ9PL147WK2KLSQYMTY2P7LDGKE4M76OY6XPRUHWVMCTQM9BRAFWMU9H1PPA0OX2TU7FJWGEPD7ATSU0KV4524ZI0X9FEE95D6DQ5OLWF6HM29X2W' where id=63; -update noar ti set v2='FIGA0YYCOX1PAY3OZMU14NO5NRN6DH84XGAHB52YXWYFXSPIAUC5YLNAYKDPMRXJK9Q6QBS0E9T88K5NY5C9O08HJ8I3WVVTC9YOWRRHG547IW6UC0Z3ENMUD1LQ2KSELRN4SRQ0ADR0XHNTPJ9PL147WK2KLSQYMTY2P7LDGKE4M76OY6XPRUHWVMCTQM9BRAFWMU9H1PPA0OX2TU7FJWGEPD7ATSU0KV4524ZI0X9FEE95D6DQ5OLWF6HM29X2W' where id=63; -update noar tt set v3='NRMJA9ZDTW4RCGR5VG9S19ZYBAO8R1FRT7JMA26N2PRKIUAUBDQFB1PBD89HVWNT119VIPTYM3PE8JYT1NNMCVYEQWAPN67P0XI9BN4FA2A3Z5O7FYDO0P3FITXFDCDA19D7T82Y9FDCJ49QK3JL9L2MR1YVM1ZD7I792QOJJDAHO0HF10KKY6P99IGVVHBWFM6IQA6JD6KH83U95BQOEBX5BNJSC2CGZA1NFGCZDSPTZH5ZPMYIDPWM372O2HQPR' where id=63; -update noar ti set v3='NRMJA9ZDTW4RCGR5VG9S19ZYBAO8R1FRT7JMA26N2PRKIUAUBDQFB1PBD89HVWNT119VIPTYM3PE8JYT1NNMCVYEQWAPN67P0XI9BN4FA2A3Z5O7FYDO0P3FITXFDCDA19D7T82Y9FDCJ49QK3JL9L2MR1YVM1ZD7I792QOJJDAHO0HF10KKY6P99IGVVHBWFM6IQA6JD6KH83U95BQOEBX5BNJSC2CGZA1NFGCZDSPTZH5ZPMYIDPWM372O2HQPR' where id=63; -update noar tt set v0='XE7SDGQ7FNX96D0EETW8TBJHY74508G28F219SHG2ZUBHWQ3O631HZ6OD4GASNLZ8T92Z2C6CD1YIS59P7X79W4HYLHW2ZBF8DSX1GDZAA5YYL5IPVQWGSJZIPPY431RMDWRWTGW0NUFNTLELPVPF8GR3TG0SA7DP5YTLJE619C6HYU0WFV3QYZ7R0NOJGKCTDCJXQKSUHS4GWPPBD2JPUXSE0IZ952C98DHI6JVBDX57JNOKCQ2HM851Q7I74WL4' where id=64; -update noar ti set v0='XE7SDGQ7FNX96D0EETW8TBJHY74508G28F219SHG2ZUBHWQ3O631HZ6OD4GASNLZ8T92Z2C6CD1YIS59P7X79W4HYLHW2ZBF8DSX1GDZAA5YYL5IPVQWGSJZIPPY431RMDWRWTGW0NUFNTLELPVPF8GR3TG0SA7DP5YTLJE619C6HYU0WFV3QYZ7R0NOJGKCTDCJXQKSUHS4GWPPBD2JPUXSE0IZ952C98DHI6JVBDX57JNOKCQ2HM851Q7I74WL4' where id=64; -update noar tt set v1='O1ZV9GEHG7FW6S72BZZK030LZEX0Y1SSNG7ONY2OV7UGRHQAMCHSYRG4TG432DQN1MRT02DLPRM0YNGF47DNX4CIEYNTBW2CX55F1DJXODVM8GTK3QN997Y5HBWV5S42OZUEZTQ21L6OSO7LDOHQQTLN5FH9FBIE2PGV27CYVCJH8RFA1AVXECV1HW0ESNXI9KZ1F286EJ8RJDQIFCXB5BGNR5THFF563H30X5714SL9BWDKMY4864UICDMX5WGX1' where id=64; -update noar ti set v1='O1ZV9GEHG7FW6S72BZZK030LZEX0Y1SSNG7ONY2OV7UGRHQAMCHSYRG4TG432DQN1MRT02DLPRM0YNGF47DNX4CIEYNTBW2CX55F1DJXODVM8GTK3QN997Y5HBWV5S42OZUEZTQ21L6OSO7LDOHQQTLN5FH9FBIE2PGV27CYVCJH8RFA1AVXECV1HW0ESNXI9KZ1F286EJ8RJDQIFCXB5BGNR5THFF563H30X5714SL9BWDKMY4864UICDMX5WGX1' where id=64; -update noar tt set v2='GJC3EVDTJ11CHNZE8TJO66IGOBHT1I9004BQLJWAKI79CLZBAW7HZ73QR9HIVTEA9L3CWR9YGRA9W55EZMBSH6YNS40B1525KXYBOXGM9Z10BJ7FWS6M9SN4GD6H77O36NKX46R2YPUYZI6EB3JJ314KB0OPS5GHW1FB238IKCL3RFTGI1AC8DBO5FZZKNELMDB2JEVEC5AMGLDWQDLUGH480RN54G1FLUT5ZRB8QS2M3KR9EOGGWJ7DGZSVPSUAC' where id=64; -update noar ti set v2='GJC3EVDTJ11CHNZE8TJO66IGOBHT1I9004BQLJWAKI79CLZBAW7HZ73QR9HIVTEA9L3CWR9YGRA9W55EZMBSH6YNS40B1525KXYBOXGM9Z10BJ7FWS6M9SN4GD6H77O36NKX46R2YPUYZI6EB3JJ314KB0OPS5GHW1FB238IKCL3RFTGI1AC8DBO5FZZKNELMDB2JEVEC5AMGLDWQDLUGH480RN54G1FLUT5ZRB8QS2M3KR9EOGGWJ7DGZSVPSUAC' where id=64; -update noar tt set v3='7TGO8SWUNJIUOEW78RP3WVK20PKKBND71LFY12JWTK97D5NAHVE8T72HSHMCFQM3SGEDVYKVSBUAY2256GNICQHPZODV6WKMJGOB8CJXCDFYA9FPQ71CF3543W42E7W4RV3MHIC91VSFQZBTWLEKOC6CLF23OGY36VVLM5XMGF3134V466OL7DHTT7IU2ODZMYV07C7CH8RYXOG12EQBCNYK21UL3XM9LUSE7RK0CNWGHL0PJD9K8GBYBUNB7UGS8' where id=64; -update noar ti set v3='7TGO8SWUNJIUOEW78RP3WVK20PKKBND71LFY12JWTK97D5NAHVE8T72HSHMCFQM3SGEDVYKVSBUAY2256GNICQHPZODV6WKMJGOB8CJXCDFYA9FPQ71CF3543W42E7W4RV3MHIC91VSFQZBTWLEKOC6CLF23OGY36VVLM5XMGF3134V466OL7DHTT7IU2ODZMYV07C7CH8RYXOG12EQBCNYK21UL3XM9LUSE7RK0CNWGHL0PJD9K8GBYBUNB7UGS8' where id=64; -update noar tt set v0='TBZ6JJNFFUZLUACSYXRNADLKFK2SJ7A2JH884CTUMLZY59XUO5FJKLVU5CYPO327DVSCBOOHVXYQKVNCYHNLATG7SBZV5WSRYPYV0M1BKL11XZQJ3MYB7FGGR7L4REIBRV37COJDK1RP4Q7N78A1Q19JLPMVNDSGENPPSR46AUTFCJ4V0XADYI8CQHQ9SMNK4XU3U5K6LR2SVSH12C5L33Q6LV9ANS653E16GG6CM4SE0BJI6X9RCBYFOORL5T1VM' where id=65; -update noar ti set v0='TBZ6JJNFFUZLUACSYXRNADLKFK2SJ7A2JH884CTUMLZY59XUO5FJKLVU5CYPO327DVSCBOOHVXYQKVNCYHNLATG7SBZV5WSRYPYV0M1BKL11XZQJ3MYB7FGGR7L4REIBRV37COJDK1RP4Q7N78A1Q19JLPMVNDSGENPPSR46AUTFCJ4V0XADYI8CQHQ9SMNK4XU3U5K6LR2SVSH12C5L33Q6LV9ANS653E16GG6CM4SE0BJI6X9RCBYFOORL5T1VM' where id=65; -update noar tt set v1='C9HM3XVOLWVUD2PE7328DNI8QNARV4FXQ2MYGY6MB16ZIOAZCEZIKJE6NBKQ7QTZIFM0CY7Q9D4YH7Z39L85L93PF89SYI430WI6UTGYDAPT9ZZ8XCMOZUZPUR9VX7VN4BWY4X1ATJ21K62GZ8T59K0BNS0QEMV2106WIGYCIPWR4E5YDID3SBXL20RS2CGP9S2KUMCYPQM7BJCTW2LL9WQORNATOGPNGVU5ISK8CPJOMM668P3KI6KMVEN291ZDX' where id=65; -update noar ti set v1='C9HM3XVOLWVUD2PE7328DNI8QNARV4FXQ2MYGY6MB16ZIOAZCEZIKJE6NBKQ7QTZIFM0CY7Q9D4YH7Z39L85L93PF89SYI430WI6UTGYDAPT9ZZ8XCMOZUZPUR9VX7VN4BWY4X1ATJ21K62GZ8T59K0BNS0QEMV2106WIGYCIPWR4E5YDID3SBXL20RS2CGP9S2KUMCYPQM7BJCTW2LL9WQORNATOGPNGVU5ISK8CPJOMM668P3KI6KMVEN291ZDX' where id=65; -update noar tt set v2='AB9CA313QSU2P6OZCZ7JP715YRCJT1AWY2L65I5SL3OXWP3IBT39UGK7PITXVVOAEP47R24FU1WXC9DW9J89WSEDE2V9YC0G8KNSVYMALVFMNTKHNMMYNAXKANUAA3DS1SJAWMANGF6UUPD9KFHI8XVB1EFQ8FJL87OWM6TR9ERXVQ8EBT9A4XXQ8OAEPVPQ6POWXUKFTT7D3ZM9ABLQ611MMT1ABVZVXOK8L4RMOYD883OOT10IW27R37CU78BHV' where id=65; -update noar ti set v2='AB9CA313QSU2P6OZCZ7JP715YRCJT1AWY2L65I5SL3OXWP3IBT39UGK7PITXVVOAEP47R24FU1WXC9DW9J89WSEDE2V9YC0G8KNSVYMALVFMNTKHNMMYNAXKANUAA3DS1SJAWMANGF6UUPD9KFHI8XVB1EFQ8FJL87OWM6TR9ERXVQ8EBT9A4XXQ8OAEPVPQ6POWXUKFTT7D3ZM9ABLQ611MMT1ABVZVXOK8L4RMOYD883OOT10IW27R37CU78BHV' where id=65; -update noar tt set v3='16S87X1BMKC4BRHCCI130S0NGSXN9DC2ZKD86C8450J5LCWLHMTBYA55BAXLYIQKY8AE5NGNR69WAQHURP6Q8690UPTSVV7NJS8DPUYSFMIBQI4FVPOKV5I109KZ1GK90BQVBF3IRSHFC92E8IRPYMR3D9GZ6M8TR8HTLZROF8A554AQOEZQO8Z1OA6Y3YLMG8G2D1MHIRSRDOA06ZP5S8OB1YZYB3IIKXQS3T3T94NKFIWWW2TK31GZVG027PGQZ' where id=65; -update noar ti set v3='16S87X1BMKC4BRHCCI130S0NGSXN9DC2ZKD86C8450J5LCWLHMTBYA55BAXLYIQKY8AE5NGNR69WAQHURP6Q8690UPTSVV7NJS8DPUYSFMIBQI4FVPOKV5I109KZ1GK90BQVBF3IRSHFC92E8IRPYMR3D9GZ6M8TR8HTLZROF8A554AQOEZQO8Z1OA6Y3YLMG8G2D1MHIRSRDOA06ZP5S8OB1YZYB3IIKXQS3T3T94NKFIWWW2TK31GZVG027PGQZ' where id=65; -update noar tt set v0='RZHB0X0RWNC1F7JAFKJJOVMY4KIW4OB1D7X9LRP3WN400ER5MUHK6BVPIMH9ZW3K74MT8JCEXIOI3MQ59Z5DPECLTM7JENDYCLSWWH0UX2DMOBSFFET0LBQO0EFP38AQ09FJQL62ZL8NZLCQ4IYO9SRDZMN8I0ISS43J2P2T4D2TJUAETUKI16UIWJTVJ0OCTN1MNJV1SQILIY5VL4ER48GM4AUXS5SHFP9CBDE0KNWFG0LF19RY1TWX0MQLT1F99' where id=66; -update noar ti set v0='RZHB0X0RWNC1F7JAFKJJOVMY4KIW4OB1D7X9LRP3WN400ER5MUHK6BVPIMH9ZW3K74MT8JCEXIOI3MQ59Z5DPECLTM7JENDYCLSWWH0UX2DMOBSFFET0LBQO0EFP38AQ09FJQL62ZL8NZLCQ4IYO9SRDZMN8I0ISS43J2P2T4D2TJUAETUKI16UIWJTVJ0OCTN1MNJV1SQILIY5VL4ER48GM4AUXS5SHFP9CBDE0KNWFG0LF19RY1TWX0MQLT1F99' where id=66; -update noar tt set v1='Y84RXR00CGIVCN7CLVXLKAG90IE913CE53WSJDPM2NSNZ6U7I2JM3YLTZKZKHHUNG8F3PELUEBLHTGLQAYWKJ7MJO4KRE11FCL6GUMCP52JUCHR2V23N3ZI01E6T69RB92TM92TXCHVIM4L2JMH3HTULVNNXG6FZT2Z7GE97TXELGE2RFGZ251G6UKVVN6YFI3RGOTNNSWQ08V7TA9SGXE8L9FMYG28JW5T11SC5FP1VQNCA91DK0N6PHS5YCI877' where id=66; -update noar ti set v1='Y84RXR00CGIVCN7CLVXLKAG90IE913CE53WSJDPM2NSNZ6U7I2JM3YLTZKZKHHUNG8F3PELUEBLHTGLQAYWKJ7MJO4KRE11FCL6GUMCP52JUCHR2V23N3ZI01E6T69RB92TM92TXCHVIM4L2JMH3HTULVNNXG6FZT2Z7GE97TXELGE2RFGZ251G6UKVVN6YFI3RGOTNNSWQ08V7TA9SGXE8L9FMYG28JW5T11SC5FP1VQNCA91DK0N6PHS5YCI877' where id=66; -update noar tt set v2='T2DJLNUNRQ8L67PKZJAMR7OZKZBA64875NT0OL1ATZ4AJPY296XJGNMNMXQV5OKPJCJ5FZL637GVDVK06ALA12G6VOOOXGVVV9ASVN2CG4HWKWVRIV02SV89XN6QSCVTZ01HKRS89HJRBPJZLEDLBTS4JF2DE7VZF872C83ZCD9KD3K2XTE9Y4ZTGD8TB2KX9HTEI0PRS62ZO445QWHLXCI72NFPQA63K77QN9DPQ8AC4O8JXIUX9WLSC4BREEJWZ' where id=66; -update noar ti set v2='T2DJLNUNRQ8L67PKZJAMR7OZKZBA64875NT0OL1ATZ4AJPY296XJGNMNMXQV5OKPJCJ5FZL637GVDVK06ALA12G6VOOOXGVVV9ASVN2CG4HWKWVRIV02SV89XN6QSCVTZ01HKRS89HJRBPJZLEDLBTS4JF2DE7VZF872C83ZCD9KD3K2XTE9Y4ZTGD8TB2KX9HTEI0PRS62ZO445QWHLXCI72NFPQA63K77QN9DPQ8AC4O8JXIUX9WLSC4BREEJWZ' where id=66; -update noar tt set v3='OJ21PWZ1P9AFTGF3E8RCJSQ0JEZJZIO2A6O9MZ0TH3FJ2GQS5ZB5KNDWI9EEEGAQPIQTUFP8V0SMUJJ1TDOS3DCGRRE3ZHXB8D37U1BYMPGATU1FM9Y5AJTS5SHBL1BMNA1FARSF317SMVF590AF5PBL27RLPSEQF6S1BY6228EBC60VWOAE6426KC8NB0NXPCPCSN5TM6FIMTIK5YCZSQBA1V1KZURMROCGUU6KVQ8ZJFBXL5LLOSJLN0L2M7XTX' where id=66; -update noar ti set v3='OJ21PWZ1P9AFTGF3E8RCJSQ0JEZJZIO2A6O9MZ0TH3FJ2GQS5ZB5KNDWI9EEEGAQPIQTUFP8V0SMUJJ1TDOS3DCGRRE3ZHXB8D37U1BYMPGATU1FM9Y5AJTS5SHBL1BMNA1FARSF317SMVF590AF5PBL27RLPSEQF6S1BY6228EBC60VWOAE6426KC8NB0NXPCPCSN5TM6FIMTIK5YCZSQBA1V1KZURMROCGUU6KVQ8ZJFBXL5LLOSJLN0L2M7XTX' where id=66; -update noar tt set v0='NQLQUQ92HOZ7R8CA72CBMD7427M960IBKN1VK4OXT2VS1OKRBVUKQYV2SK8FFJUZNG7SNWMC47QOMZXY6KVR8TR3B4JW8XS6B7BSUODTD758N1AEKZNHYWX5TLN44DJKPP0CY8XS7OBI25P7NVOZIA1303QQEZF43ENG7STQPL5ZH26ANXKD9SQAGCSQWBGSRNQSJDY53DEF1HT6798XVW4XVLW0AYJZ0KUGXJO94YJVYY4UJKIJ4FTEVC03JM0M7' where id=67; -update noar ti set v0='NQLQUQ92HOZ7R8CA72CBMD7427M960IBKN1VK4OXT2VS1OKRBVUKQYV2SK8FFJUZNG7SNWMC47QOMZXY6KVR8TR3B4JW8XS6B7BSUODTD758N1AEKZNHYWX5TLN44DJKPP0CY8XS7OBI25P7NVOZIA1303QQEZF43ENG7STQPL5ZH26ANXKD9SQAGCSQWBGSRNQSJDY53DEF1HT6798XVW4XVLW0AYJZ0KUGXJO94YJVYY4UJKIJ4FTEVC03JM0M7' where id=67; -update noar tt set v1='L4O1ZCQD2DXXFBP1M6CDV7B29H2SNGME8BL5EMSLFCJORX63VDHZ10K8RBA80RUPS8DGOVWGP5G296HMDS8NUZC3PQ5ZA8FH0ECEXWWCQCAVVU58PG0CB7R8G2L2UN7F0GKX4KMWOJZ02G367WAIV81GM1VNO2ECP1DBIIWRSCVALOSD3E7XQL49X7HD3MJ8PPZPTP3D4SG62V63UZZP0PGTJOGWHWI84Z0Q46SVUZTSVT515GDDZ3P6BVAJBY2OA' where id=67; -update noar ti set v1='L4O1ZCQD2DXXFBP1M6CDV7B29H2SNGME8BL5EMSLFCJORX63VDHZ10K8RBA80RUPS8DGOVWGP5G296HMDS8NUZC3PQ5ZA8FH0ECEXWWCQCAVVU58PG0CB7R8G2L2UN7F0GKX4KMWOJZ02G367WAIV81GM1VNO2ECP1DBIIWRSCVALOSD3E7XQL49X7HD3MJ8PPZPTP3D4SG62V63UZZP0PGTJOGWHWI84Z0Q46SVUZTSVT515GDDZ3P6BVAJBY2OA' where id=67; -update noar tt set v2='Y3ORAVZHZ2CKBO493F9OKE64G80RCXG5KNZFEFP1O3R516BU8EH6SP8GZ4S3WPZ6WIGGHDLNJQXINF3EIZSF9VJEOYDLN7ZFHJL32W9SBTBGBECXR5QCUZBB67G7O1PIT4RSHCJJRJMD8WXLEFV827SY4KBY6JN9EFRD2HPYPGK3VJE7AUMB8Q6HZ8GOIQGTJHP0LUJW8CYIVP7NRFBQZATBALQTNRM0ISS6BPG8QGS9K88N4XEMYSDE7QK7JO4V4' where id=67; -update noar ti set v2='Y3ORAVZHZ2CKBO493F9OKE64G80RCXG5KNZFEFP1O3R516BU8EH6SP8GZ4S3WPZ6WIGGHDLNJQXINF3EIZSF9VJEOYDLN7ZFHJL32W9SBTBGBECXR5QCUZBB67G7O1PIT4RSHCJJRJMD8WXLEFV827SY4KBY6JN9EFRD2HPYPGK3VJE7AUMB8Q6HZ8GOIQGTJHP0LUJW8CYIVP7NRFBQZATBALQTNRM0ISS6BPG8QGS9K88N4XEMYSDE7QK7JO4V4' where id=67; -update noar tt set v3='UIHTUUTLYHOSI338HKYJT9SZ1QQXGDRXFK1F3LM8GLUFMLMQF0360UD8ZLAGYKHMR9XZ6T4HJV1SWJE40DYN9JEVQPPMX6816TP9LGA0QCWALOLQ6KZUVSS79B20E2CN5GGWNWF9DQCZGWTXDNLVDNDPDPEZ4SEWZ2W8IF9HHBY5NL888EB0GQFPTW5HEU4GGZDAD9TG46YYGKO6R78N9O2JRKHK31AHT73V6E988961WMGZPAQJ1N35B0IHEFMBQ' where id=67; -update noar ti set v3='UIHTUUTLYHOSI338HKYJT9SZ1QQXGDRXFK1F3LM8GLUFMLMQF0360UD8ZLAGYKHMR9XZ6T4HJV1SWJE40DYN9JEVQPPMX6816TP9LGA0QCWALOLQ6KZUVSS79B20E2CN5GGWNWF9DQCZGWTXDNLVDNDPDPEZ4SEWZ2W8IF9HHBY5NL888EB0GQFPTW5HEU4GGZDAD9TG46YYGKO6R78N9O2JRKHK31AHT73V6E988961WMGZPAQJ1N35B0IHEFMBQ' where id=67; -update noar tt set v0='O0UQFUA1A9SBEGIMESDN1MD5QAPA5ZO7S6A3SD5EFD6MNDWHDMM78TA4X0I5YMKQ6CZMZP49LCDV2XDNJD7P3OXK199JRHAT6D7134CIPMWB1N3WITKR27X6LS7CUUK8FLYOABTRAZNL75FORY735UWG6HFHTWCJ4IBHX55G0J94F3NVA0L7Z6ZNS0EFF2EK767IN7PBAE2J3G9GLB886NL70HYWIW9XO02VPS8DB0HPHAZDL0AD1SSGBC0VLB3E9' where id=68; -update noar ti set v0='O0UQFUA1A9SBEGIMESDN1MD5QAPA5ZO7S6A3SD5EFD6MNDWHDMM78TA4X0I5YMKQ6CZMZP49LCDV2XDNJD7P3OXK199JRHAT6D7134CIPMWB1N3WITKR27X6LS7CUUK8FLYOABTRAZNL75FORY735UWG6HFHTWCJ4IBHX55G0J94F3NVA0L7Z6ZNS0EFF2EK767IN7PBAE2J3G9GLB886NL70HYWIW9XO02VPS8DB0HPHAZDL0AD1SSGBC0VLB3E9' where id=68; -update noar tt set v1='5LTCSHBTNBGPUU41BXA57FDZGA5PRRI9JBPX8130GUNTPSPJ9VM7Q20AOICZ4IZXW6MRCGF47W6T0J3BKD4UI2U21BINN9E1VB3MU7GBTBAODQZTMI8EZKEYVPE5ANUMS7MAPOW7H30D2PHE4XDNSPQ6C371EV3GJ7PK13YD3N1D4LIJ4R37RQ5R5HFT1C16OCAEZIVDKYPGXZ2ME7CDLY465I1OH93LQ0VHHF2WIFBG98N2LPYSOFTVZU8GH84CV' where id=68; -update noar ti set v1='5LTCSHBTNBGPUU41BXA57FDZGA5PRRI9JBPX8130GUNTPSPJ9VM7Q20AOICZ4IZXW6MRCGF47W6T0J3BKD4UI2U21BINN9E1VB3MU7GBTBAODQZTMI8EZKEYVPE5ANUMS7MAPOW7H30D2PHE4XDNSPQ6C371EV3GJ7PK13YD3N1D4LIJ4R37RQ5R5HFT1C16OCAEZIVDKYPGXZ2ME7CDLY465I1OH93LQ0VHHF2WIFBG98N2LPYSOFTVZU8GH84CV' where id=68; -update noar tt set v2='7U7H6UOAQF6DYKDBH6VS9N2IJXDFGH3CADHBUN0C2UH1KBSSRTFAFGIA9YV81OP2D2G7BGCX2VCGV72AZL8H6VZDSOIUQHO9OR23F086DZDA32982W3Z67A8KOTRGSW8WY1ATQO9M4W6T7X7LCJ2A2QO3TW4NTE5BPOOJL2VZV02MMVCGMZR30XSNMKTLUYR9WY14CXKNCDXQ5F6JYW0OTN9DBYFC9QXL5KK8QS2V84LDFX7I0NJ0V4NPEYFSYIQR' where id=68; -update noar ti set v2='7U7H6UOAQF6DYKDBH6VS9N2IJXDFGH3CADHBUN0C2UH1KBSSRTFAFGIA9YV81OP2D2G7BGCX2VCGV72AZL8H6VZDSOIUQHO9OR23F086DZDA32982W3Z67A8KOTRGSW8WY1ATQO9M4W6T7X7LCJ2A2QO3TW4NTE5BPOOJL2VZV02MMVCGMZR30XSNMKTLUYR9WY14CXKNCDXQ5F6JYW0OTN9DBYFC9QXL5KK8QS2V84LDFX7I0NJ0V4NPEYFSYIQR' where id=68; -update noar tt set v3='JDNPQQDCJE6LWW34038G31CBSUGT4QRTN0R2AMD0SEBD5YOK3MA1YKOR2QAEGKREZVWBDTHC0CFEUQAPGJBGH7FFAT7CAO6NAL4AG4XC7UI0SVHYN5TV2WCV0XNMHVYHN8IIFKMWGE7TWDHMNK5GZ8YHF8GA45WP64FIYL1Y8VDRB7FOLZZRKNWZIEWNN4KF4O41KLATOID4WCRPDKLDR1BS5SDMXREX3EL4JMNIJW79BJKEKQNDQA1J65IOUEWW1' where id=68; -update noar ti set v3='JDNPQQDCJE6LWW34038G31CBSUGT4QRTN0R2AMD0SEBD5YOK3MA1YKOR2QAEGKREZVWBDTHC0CFEUQAPGJBGH7FFAT7CAO6NAL4AG4XC7UI0SVHYN5TV2WCV0XNMHVYHN8IIFKMWGE7TWDHMNK5GZ8YHF8GA45WP64FIYL1Y8VDRB7FOLZZRKNWZIEWNN4KF4O41KLATOID4WCRPDKLDR1BS5SDMXREX3EL4JMNIJW79BJKEKQNDQA1J65IOUEWW1' where id=68; -update noar tt set v0='CWBTRY3CREKBD0E8A6PVNRT1SJHA1EPS47GWEZ911SF6PZCP0R6D11O0VQFLXN1Z3QJ30T0L5SWLIB58DBYZ2LMI9K4PNWWL15WZ7RXMB34MCXXSBV3A9ML79QU4A5QA13MO8OX17KR39UZWXRYQPER9AQULFUDBSJF8H6AUDCSP0LKLX2IQZ13YWNWHLS47ETQHUWU6BGRQIQUQN50LDVZWLMUJRZB4VILPO5HGJKQ9R9OD7SYZ8DF2J82GN3DHX' where id=69; -update noar ti set v0='CWBTRY3CREKBD0E8A6PVNRT1SJHA1EPS47GWEZ911SF6PZCP0R6D11O0VQFLXN1Z3QJ30T0L5SWLIB58DBYZ2LMI9K4PNWWL15WZ7RXMB34MCXXSBV3A9ML79QU4A5QA13MO8OX17KR39UZWXRYQPER9AQULFUDBSJF8H6AUDCSP0LKLX2IQZ13YWNWHLS47ETQHUWU6BGRQIQUQN50LDVZWLMUJRZB4VILPO5HGJKQ9R9OD7SYZ8DF2J82GN3DHX' where id=69; -update noar tt set v1='9KPQEQ1AJ93X9M12FUDH6140V1L3TYIFT27QU4QRII81VE6TKF4LVYJV8F05G38ADH6Q42G6UL0PZXO2Y2CJM2P6N8FJ2XZBAWK0MGFXYT88466EVQ3SD7LJXC879V813NQ01HQ324TDPZABXQJH3HRW9MZE4DOIX37JCBP2Z0RHKHWTC7FGWVFSN1P1IR96W9T7OE6IKIT89JLBX4PUUUUQUR258XQMZ9ZV3JOO5IB8X9F3QPBPFGIZXZH7M1D5E' where id=69; -update noar ti set v1='9KPQEQ1AJ93X9M12FUDH6140V1L3TYIFT27QU4QRII81VE6TKF4LVYJV8F05G38ADH6Q42G6UL0PZXO2Y2CJM2P6N8FJ2XZBAWK0MGFXYT88466EVQ3SD7LJXC879V813NQ01HQ324TDPZABXQJH3HRW9MZE4DOIX37JCBP2Z0RHKHWTC7FGWVFSN1P1IR96W9T7OE6IKIT89JLBX4PUUUUQUR258XQMZ9ZV3JOO5IB8X9F3QPBPFGIZXZH7M1D5E' where id=69; -update noar tt set v2='WZ283O0C7H4BW4981I23P8ZLAMAKQ2DGGARBGV5HVC3M4SV0KZW87K8XXIJKQJN2ELB6OFF7YKG5PTB0DWWZNIE72BPQLFKZWN0Z2U0YUUPKBS2R6QRGNRUXU0H7RXHVNNSD53NJ46PJ1CZ8A8JB23R3ZOLVOU6PUVC0SNL2NSVJJ2N0EK3CKPT4FADU1PN61U2VQIFM9VTVEXX3Q7GFLINQXNHNB53VJO3LZEV8TY5LJJ1DGTDNKWHULWUE3UGBS' where id=69; -update noar ti set v2='WZ283O0C7H4BW4981I23P8ZLAMAKQ2DGGARBGV5HVC3M4SV0KZW87K8XXIJKQJN2ELB6OFF7YKG5PTB0DWWZNIE72BPQLFKZWN0Z2U0YUUPKBS2R6QRGNRUXU0H7RXHVNNSD53NJ46PJ1CZ8A8JB23R3ZOLVOU6PUVC0SNL2NSVJJ2N0EK3CKPT4FADU1PN61U2VQIFM9VTVEXX3Q7GFLINQXNHNB53VJO3LZEV8TY5LJJ1DGTDNKWHULWUE3UGBS' where id=69; -update noar tt set v3='1TTQY4D3DHY1P21FNR3CNXLQQIVOY6WUEZEJ0QIUJOU3BLMVGUNGFJJP7XIN7L1YZ4MBZAIDQHURMY4LTKG6MKS819UIZ3PJH20084A0VTQLS79V4CQXQ7UH4R9R1L56ZE38HYG5TJJ5KHTRMOJK7Q5JXSWXH44XUUASL7DHZX0QQ0MJ6E602DSGL36FLGT6WH406T4CLPMW5XM02V1K4O7YV7GCVXI5K8ZD2UECR1HLUCOC87ZKT0MC2AF6K382Z' where id=69; -update noar ti set v3='1TTQY4D3DHY1P21FNR3CNXLQQIVOY6WUEZEJ0QIUJOU3BLMVGUNGFJJP7XIN7L1YZ4MBZAIDQHURMY4LTKG6MKS819UIZ3PJH20084A0VTQLS79V4CQXQ7UH4R9R1L56ZE38HYG5TJJ5KHTRMOJK7Q5JXSWXH44XUUASL7DHZX0QQ0MJ6E602DSGL36FLGT6WH406T4CLPMW5XM02V1K4O7YV7GCVXI5K8ZD2UECR1HLUCOC87ZKT0MC2AF6K382Z' where id=69; -update noar tt set v0='L8CTJ4X3CQ3TNN312LONYIHMPRJ9QSTCAVW26HK4LWXFOH4EWPDZ1QGP2H89ESAW1W4WVH7J0KT7FGJ5X5LGZOM3A8BKAXL7H1HBZ907LNRGR2UITF15GIYN8KEFD9UW41E3WYQBZXNMMGE2NRCFLOA3KGVPZ87ERE01C268CGBPY5VOPKY6JME8ENCV8UT8PYGEM39C0RRUIVXCK1JK3AC39KXFHYRMUA420WI24D3F68U2U3IJQBEL2YHC9TN4W' where id=70; -update noar ti set v0='L8CTJ4X3CQ3TNN312LONYIHMPRJ9QSTCAVW26HK4LWXFOH4EWPDZ1QGP2H89ESAW1W4WVH7J0KT7FGJ5X5LGZOM3A8BKAXL7H1HBZ907LNRGR2UITF15GIYN8KEFD9UW41E3WYQBZXNMMGE2NRCFLOA3KGVPZ87ERE01C268CGBPY5VOPKY6JME8ENCV8UT8PYGEM39C0RRUIVXCK1JK3AC39KXFHYRMUA420WI24D3F68U2U3IJQBEL2YHC9TN4W' where id=70; -update noar tt set v1='WS6AEDXCXTALDXH2ETPHA58G21M6WVU4D47B5DRDQB98BKKMK9IX2D6CBHHMQXQZH0MDNI1GLRRJYL1IQ526MENRF3IFDIV3WVIR4ZE6KLVENRCULHPSMHD6LDSYJAELSOPWPQFLLJNI7C7DUDGD1G5YZEKSHSFT5QWN4IL8RNJLON2NXY40BKYWG40UCN6P7FS8GJJ0IR717YAOA980AGDEXFC2ANFKYSMT2S013HBE8CDTVWGXCACAHBIYJQYYA' where id=70; -update noar ti set v1='WS6AEDXCXTALDXH2ETPHA58G21M6WVU4D47B5DRDQB98BKKMK9IX2D6CBHHMQXQZH0MDNI1GLRRJYL1IQ526MENRF3IFDIV3WVIR4ZE6KLVENRCULHPSMHD6LDSYJAELSOPWPQFLLJNI7C7DUDGD1G5YZEKSHSFT5QWN4IL8RNJLON2NXY40BKYWG40UCN6P7FS8GJJ0IR717YAOA980AGDEXFC2ANFKYSMT2S013HBE8CDTVWGXCACAHBIYJQYYA' where id=70; -update noar tt set v2='Z83PMP1JR5548HLUP4A4OU6EKVP30L1Q7K26QS9J6RW7J909G2I56M3UAXPMX3UELF9OUNDM0OCPN3M2ONTBNON6UJ0OLS0LKW01XENZLR2J24Z5WG7GOFSLQ6L5T3HQKGZKKPG44TR1J5YND1EZE5KNR39PBPDG4ZY38O8NWHIE73EW67YP15C2LJJIVFXZQQ0W6DDCV5W9FKP7RZF55DER2B6X1B9QN3QZ66A1HIWSALPEF1ZYIL9H140FK0X1K' where id=70; -update noar ti set v2='Z83PMP1JR5548HLUP4A4OU6EKVP30L1Q7K26QS9J6RW7J909G2I56M3UAXPMX3UELF9OUNDM0OCPN3M2ONTBNON6UJ0OLS0LKW01XENZLR2J24Z5WG7GOFSLQ6L5T3HQKGZKKPG44TR1J5YND1EZE5KNR39PBPDG4ZY38O8NWHIE73EW67YP15C2LJJIVFXZQQ0W6DDCV5W9FKP7RZF55DER2B6X1B9QN3QZ66A1HIWSALPEF1ZYIL9H140FK0X1K' where id=70; -update noar tt set v3='3XLTDHJ440OZLMUBYG84ICLXZ9YSWHWWX8E6680O5KNU80DA9FE7WX6IKP0D7W3LTNU1Q4AWH1MXRDM54LE878NJJUWL1ZA89ZGK15Z4W7XWS5ML4CXJTMZKMAWMJ5VBUN3MI3USBHHMMMCGW5C2IX3WGAN87RRSXCK6ZI9AUGRC8A66PDL9MJ2S0UVYHQRXHJNDE1K4R2WIVMJS7YJMYUAMJDL7401QSKWVXZH2U56B2XBEM2BQ7HH95PGY4ISJP' where id=70; -update noar ti set v3='3XLTDHJ440OZLMUBYG84ICLXZ9YSWHWWX8E6680O5KNU80DA9FE7WX6IKP0D7W3LTNU1Q4AWH1MXRDM54LE878NJJUWL1ZA89ZGK15Z4W7XWS5ML4CXJTMZKMAWMJ5VBUN3MI3USBHHMMMCGW5C2IX3WGAN87RRSXCK6ZI9AUGRC8A66PDL9MJ2S0UVYHQRXHJNDE1K4R2WIVMJS7YJMYUAMJDL7401QSKWVXZH2U56B2XBEM2BQ7HH95PGY4ISJP' where id=70; -update noar tt set v0='PAQOHGNNE5EV7QDDR0EKMB9NKIEPRJFWPRBN2A4BU0WSPGZBHM4UOQNX0HB7RF3C1CNACXVEFABO1F0JJ5W8B34MV5FBTCSH7DC6FRXWIWMTS46R349YJ8TCVBMU2IM644UL0OYGPTV607GK5D3HZE8J066OJ4W0T65GZHQ58OWUAQG2JD4MP4R87O280JS1ZRXR6L6BX6HETQO63M43JWJ1MXMEDX0KXGFFQ4BQTTVVYGZ9PEW3STAXG69H3YCDE' where id=71; -update noar ti set v0='PAQOHGNNE5EV7QDDR0EKMB9NKIEPRJFWPRBN2A4BU0WSPGZBHM4UOQNX0HB7RF3C1CNACXVEFABO1F0JJ5W8B34MV5FBTCSH7DC6FRXWIWMTS46R349YJ8TCVBMU2IM644UL0OYGPTV607GK5D3HZE8J066OJ4W0T65GZHQ58OWUAQG2JD4MP4R87O280JS1ZRXR6L6BX6HETQO63M43JWJ1MXMEDX0KXGFFQ4BQTTVVYGZ9PEW3STAXG69H3YCDE' where id=71; -update noar tt set v1='O6BYLZL1SQUJLH6GC404WDYA8ULDGUMAV3UD22TEH4CRWEH31J5YUXZBNTQHEHRGF8R6LCJ6CKYBMSMTF0F6CBK5Z96WMZ6BZAF4H3SYTI2321X7QVRR0UWXPID501I9ROJ2YUGZU81PLYLXRB0FEVKCAA4QQTOXOMGUWY51WLRBR44V1R86BUYC4GEIQQVHNIDYKMUE75QWO8YEX37S7G2K3RHY35GXZHGHW602E3913SZCFDALS1597S6FIMSI5' where id=71; -update noar ti set v1='O6BYLZL1SQUJLH6GC404WDYA8ULDGUMAV3UD22TEH4CRWEH31J5YUXZBNTQHEHRGF8R6LCJ6CKYBMSMTF0F6CBK5Z96WMZ6BZAF4H3SYTI2321X7QVRR0UWXPID501I9ROJ2YUGZU81PLYLXRB0FEVKCAA4QQTOXOMGUWY51WLRBR44V1R86BUYC4GEIQQVHNIDYKMUE75QWO8YEX37S7G2K3RHY35GXZHGHW602E3913SZCFDALS1597S6FIMSI5' where id=71; -update noar tt set v2='A3GIY8NITTWHH2L3N0MSGF0KWAWHI3M03XW96F06XDL7WKMYLC13QOGXHF2JZL6GX26103D9NZ52L5MC1HE5WPW354646YLDQN4D1WRU5XGG6D5AULWK17LLQPQLDG3647HW5V7QVPXPHLJHKENXERT3U86XKZAKCG7W596369TEVOZ1NC9BL9SYAX7UZQPOLAPQ2KTDQZH21883OEK5ED7TW4AT5XEE6R1H4B3RL1CFID5F855G5MQPIG83XQOWV' where id=71; -update noar ti set v2='A3GIY8NITTWHH2L3N0MSGF0KWAWHI3M03XW96F06XDL7WKMYLC13QOGXHF2JZL6GX26103D9NZ52L5MC1HE5WPW354646YLDQN4D1WRU5XGG6D5AULWK17LLQPQLDG3647HW5V7QVPXPHLJHKENXERT3U86XKZAKCG7W596369TEVOZ1NC9BL9SYAX7UZQPOLAPQ2KTDQZH21883OEK5ED7TW4AT5XEE6R1H4B3RL1CFID5F855G5MQPIG83XQOWV' where id=71; -update noar tt set v3='PPX1NYCY4YLL1DWXKL67Y7S3AMQMWWYV5LWRZXIH5X2LYLVJP0RYSOBY2FUGB6EJ0WQDY52EHEGS5HTWS2P1EVIM4FIU227YUO1SF4NY3LYV9GMU4E74870A1HD86ZHJJN068LVVIWHZJXM1BBQEFLYTN6T7O265LDLCB846F84J1WOVGR918ZHD41QP60TTEFU9ZAYGTDNG6DD3J6P7RV2A78CWQCHX41FL5J9RZ5ZAZ55K5EYQN8CZ6DNPEUA2U' where id=71; -update noar ti set v3='PPX1NYCY4YLL1DWXKL67Y7S3AMQMWWYV5LWRZXIH5X2LYLVJP0RYSOBY2FUGB6EJ0WQDY52EHEGS5HTWS2P1EVIM4FIU227YUO1SF4NY3LYV9GMU4E74870A1HD86ZHJJN068LVVIWHZJXM1BBQEFLYTN6T7O265LDLCB846F84J1WOVGR918ZHD41QP60TTEFU9ZAYGTDNG6DD3J6P7RV2A78CWQCHX41FL5J9RZ5ZAZ55K5EYQN8CZ6DNPEUA2U' where id=71; -update noar tt set v0='ZS6ZZKQYHKIX6DIOVRMVY0VFUG3BGQQIGUMYOVTFNRZY0WN8YF7O6RUYAH5O3ZG33H2Z65FQQGZQE1RWKFQD79CH41SNVCREUSET3IZ1F958FHTPNWBCK0M8YM0309ACJXP8XLSCMDA62D98GZQQJ68COODW35A9EUESL0S8HGZ7TJX0D12SNCDNTPMVQHLLFOV404IRU8KEFCK71JWV77C8XP3RERERLV2U95N6P19Z2HZHWKZ1BWXK548HM89KS' where id=72; -update noar ti set v0='ZS6ZZKQYHKIX6DIOVRMVY0VFUG3BGQQIGUMYOVTFNRZY0WN8YF7O6RUYAH5O3ZG33H2Z65FQQGZQE1RWKFQD79CH41SNVCREUSET3IZ1F958FHTPNWBCK0M8YM0309ACJXP8XLSCMDA62D98GZQQJ68COODW35A9EUESL0S8HGZ7TJX0D12SNCDNTPMVQHLLFOV404IRU8KEFCK71JWV77C8XP3RERERLV2U95N6P19Z2HZHWKZ1BWXK548HM89KS' where id=72; -update noar tt set v1='8506R6MY8CHZK93TCT1WQHYWPSQOEF6U0KDMF34TRTE3E4LGKF1OO48PAW2WEWMIYM2PVX4PSVAL46KI0YFC85AXQL6YV6WDBU4193C83H6NY3W27KTB3E3504ZTRCGIVHOMY41X91JCCRG99PZBW6ZQ55IL2X062NZVFEGV9GWY73T790FAGXBGKX9D1F49OW2SLICLGZ2O9VNX61YONO73JQUQWGPPOY1HDFWOLVNXRGWHLWRWGQ5AAMZQIT17U' where id=72; -update noar ti set v1='8506R6MY8CHZK93TCT1WQHYWPSQOEF6U0KDMF34TRTE3E4LGKF1OO48PAW2WEWMIYM2PVX4PSVAL46KI0YFC85AXQL6YV6WDBU4193C83H6NY3W27KTB3E3504ZTRCGIVHOMY41X91JCCRG99PZBW6ZQ55IL2X062NZVFEGV9GWY73T790FAGXBGKX9D1F49OW2SLICLGZ2O9VNX61YONO73JQUQWGPPOY1HDFWOLVNXRGWHLWRWGQ5AAMZQIT17U' where id=72; -update noar tt set v2='XUNKIDUBM6FBMBL0XZCLA52WRD2IGF993WZY678TD8ROLU3T32M3B4R867IKX1DZ614N4YF92YOVPK0UPTMHJPR56HMKUOOXEGV9FGNA2SATAHQH2ME0VFZ7J92G14E9QP39VUJA755XVJJPY556N4I9595JMV8AT7ZBS4R02MWXDLZ0B9WGT25FKQH1I851FBCE5IA7OD8LCUVBR5NB58ZCUBF7BAFZ1NIKUCVYU62M08HEF2TH3DSFPD6UDYURE' where id=72; -update noar ti set v2='XUNKIDUBM6FBMBL0XZCLA52WRD2IGF993WZY678TD8ROLU3T32M3B4R867IKX1DZ614N4YF92YOVPK0UPTMHJPR56HMKUOOXEGV9FGNA2SATAHQH2ME0VFZ7J92G14E9QP39VUJA755XVJJPY556N4I9595JMV8AT7ZBS4R02MWXDLZ0B9WGT25FKQH1I851FBCE5IA7OD8LCUVBR5NB58ZCUBF7BAFZ1NIKUCVYU62M08HEF2TH3DSFPD6UDYURE' where id=72; -update noar tt set v3='P32HEL3LFISXRKR2F7E9CUB5F0F3JPLVR6XPBWMYCEXXTDJHI96037TFU1EKAWV9BRAMJUCMUG4W6PHZF8JOXZ5S3OD7R41ALZ77UB09DB1UYF4L5L4AT5O79UHJX5L0PSP651N11UREL7ZH9QFT3P4ODYBW1DL191AOIBWN42UM82BNSQ56RM73M4AM0UYYKOIACOKHXG4IO93M64CIWVZHF8AC6LKEVV4T9M4WNOMEJE5JK7WNJ0A45E5WFAY72' where id=72; -update noar ti set v3='P32HEL3LFISXRKR2F7E9CUB5F0F3JPLVR6XPBWMYCEXXTDJHI96037TFU1EKAWV9BRAMJUCMUG4W6PHZF8JOXZ5S3OD7R41ALZ77UB09DB1UYF4L5L4AT5O79UHJX5L0PSP651N11UREL7ZH9QFT3P4ODYBW1DL191AOIBWN42UM82BNSQ56RM73M4AM0UYYKOIACOKHXG4IO93M64CIWVZHF8AC6LKEVV4T9M4WNOMEJE5JK7WNJ0A45E5WFAY72' where id=72; -update noar tt set v0='G0T0FR4FO5EKFHMU4YY6VYVR58QQX0TK7885LRVIFIR8A6L2BQYBZME9DBORU1SX21VL80EWLBP3262H7YS7WQTTMH6T5DRMJTQJ591JF6375DQ6KL6ACATL954D4WQC60UIENOKDMHEVYI2LUJNMQYHGYY6L0EF1DHSP1UHAJJDUM16DB0CNMRJ5TKZJA4WDKLKHRV661S1FXW8VQZ9Z4ZLBBNRNG64EWJFTWQ8YLC2LCYPD0WLWBE9SADQGJOI3' where id=73; -update noar ti set v0='G0T0FR4FO5EKFHMU4YY6VYVR58QQX0TK7885LRVIFIR8A6L2BQYBZME9DBORU1SX21VL80EWLBP3262H7YS7WQTTMH6T5DRMJTQJ591JF6375DQ6KL6ACATL954D4WQC60UIENOKDMHEVYI2LUJNMQYHGYY6L0EF1DHSP1UHAJJDUM16DB0CNMRJ5TKZJA4WDKLKHRV661S1FXW8VQZ9Z4ZLBBNRNG64EWJFTWQ8YLC2LCYPD0WLWBE9SADQGJOI3' where id=73; -update noar tt set v1='BDL0CWN58ENUO49ARMZWBHJQTNLAYDOLDEKL2KO0M2TCMJS6A09238YQXNBW9YK4GJZ1CCXQTHBSL4RYARLBKVJDDH5YC4RANFAO7XOXQWLLVFEH6R92OXHUAJHT4Q3S3LH6K2AY4NPGBIPBVM0JIHBIWLT008GBB2Q7WFXBT8FVEXR1GT9LLUNHRGF6VOSPJVMUFJM19BFHLX1A9K5MC98Q6BD7LV7DILJOAAR3BP75HS6AEGM5UUQXPLVSKDAEZ' where id=73; -update noar ti set v1='BDL0CWN58ENUO49ARMZWBHJQTNLAYDOLDEKL2KO0M2TCMJS6A09238YQXNBW9YK4GJZ1CCXQTHBSL4RYARLBKVJDDH5YC4RANFAO7XOXQWLLVFEH6R92OXHUAJHT4Q3S3LH6K2AY4NPGBIPBVM0JIHBIWLT008GBB2Q7WFXBT8FVEXR1GT9LLUNHRGF6VOSPJVMUFJM19BFHLX1A9K5MC98Q6BD7LV7DILJOAAR3BP75HS6AEGM5UUQXPLVSKDAEZ' where id=73; -update noar tt set v2='XQOUXXHLEQQG9CHP01JN95K7MXJXE6Y4V199FVDFYXXCGQ70EZMADR6RVRG7H02OJNZXBS1JCEFA9TBH9ASUGIWQP06JN3WXPV2ZK98ZARIF8D91XBC3BWSOEFN9K12JD1GXXTJT0QHS9CUK480DSS3OAIIFS4E1XZO2FCHHKE5CC3MRF1O0UBK9BF178OMS462ZK4ZY9JEVUBY0IGSUTL9MFVCQI2DRUB9Q3JDE6VU331476SSHQ86AA0OJ0OT2M' where id=73; -update noar ti set v2='XQOUXXHLEQQG9CHP01JN95K7MXJXE6Y4V199FVDFYXXCGQ70EZMADR6RVRG7H02OJNZXBS1JCEFA9TBH9ASUGIWQP06JN3WXPV2ZK98ZARIF8D91XBC3BWSOEFN9K12JD1GXXTJT0QHS9CUK480DSS3OAIIFS4E1XZO2FCHHKE5CC3MRF1O0UBK9BF178OMS462ZK4ZY9JEVUBY0IGSUTL9MFVCQI2DRUB9Q3JDE6VU331476SSHQ86AA0OJ0OT2M' where id=73; -update noar tt set v3='N2EBMXJ8H4GS6VQS7OGOPJ6MTZO86T0DBC3R8EHMC86876QGVTI9IPBEQ4V0W713F1LL8KIDUR5T8C2CTCT9NKEK1D67WJKFCZDY6Z999S5R0OZNBADWP5FBT202C6HI3OCID9M722Z58Z7O3OBM1ERYZSP1BXXQZ3DPAOK9T5UM3E48XR0VOJQXED54K92AJBLJR93OIF25LNA2JS533X11DGRREZP0V049MOI1ICMWE6UVRI64UQ3ME1QFKRLP4' where id=73; -update noar ti set v3='N2EBMXJ8H4GS6VQS7OGOPJ6MTZO86T0DBC3R8EHMC86876QGVTI9IPBEQ4V0W713F1LL8KIDUR5T8C2CTCT9NKEK1D67WJKFCZDY6Z999S5R0OZNBADWP5FBT202C6HI3OCID9M722Z58Z7O3OBM1ERYZSP1BXXQZ3DPAOK9T5UM3E48XR0VOJQXED54K92AJBLJR93OIF25LNA2JS533X11DGRREZP0V049MOI1ICMWE6UVRI64UQ3ME1QFKRLP4' where id=73; -update noar tt set v0='UC7DCO0XQ183ARVILDD2MEGELDY305QRRDFIL606PRF5AGCTFSQRN73UI0GQ12WUBHI3QOTV6XGRULSLJD7J0TXKLWTRZFW65SWNVR8RTWMT79PM0SW50D1UNZWB5TVM97ZFRBL04RDFJG5QRQM1SCPEUMCMFW9FW3UNHVXN09QUMYSWEZZN6YX12HSCO4KH13O85ZSNKZAT76PQ4NND0R69WC20907D568ZCR7GJP9U7P9737S57VIS2Y56FH4IP' where id=74; -update noar ti set v0='UC7DCO0XQ183ARVILDD2MEGELDY305QRRDFIL606PRF5AGCTFSQRN73UI0GQ12WUBHI3QOTV6XGRULSLJD7J0TXKLWTRZFW65SWNVR8RTWMT79PM0SW50D1UNZWB5TVM97ZFRBL04RDFJG5QRQM1SCPEUMCMFW9FW3UNHVXN09QUMYSWEZZN6YX12HSCO4KH13O85ZSNKZAT76PQ4NND0R69WC20907D568ZCR7GJP9U7P9737S57VIS2Y56FH4IP' where id=74; -update noar tt set v1='MK0S7UJQBCXTFKE0P5G0PDCZGMQ4HO7270522MIH4QXLQ2BIEWJAHIT1EKQ9R51MJQKFGSU882POH2RKF09S8JXP5HVQ7W1RT0PZ27F5TFWGVCSAL3TAUGNBFSX9HZXUR7R5J9FSR1EZPY7C0MYA96AXKHQXMZLUBH6FL34C8SF1S7IOZDOQAUJ9I8BVC2W0R8YJ3QLQWW7X434KFAK4916BSJ66ALVN25E57DDYNLVQPC28V1ZE4JU5BMOEJ31TJ' where id=74; -update noar ti set v1='MK0S7UJQBCXTFKE0P5G0PDCZGMQ4HO7270522MIH4QXLQ2BIEWJAHIT1EKQ9R51MJQKFGSU882POH2RKF09S8JXP5HVQ7W1RT0PZ27F5TFWGVCSAL3TAUGNBFSX9HZXUR7R5J9FSR1EZPY7C0MYA96AXKHQXMZLUBH6FL34C8SF1S7IOZDOQAUJ9I8BVC2W0R8YJ3QLQWW7X434KFAK4916BSJ66ALVN25E57DDYNLVQPC28V1ZE4JU5BMOEJ31TJ' where id=74; -update noar tt set v2='A2HDH0KVYC2HLBA46L6X7FBGBKZ7EEY86GFPBRWQDWES4YQNU9TV4MC30CDT8JA49ONLDUYAW3N0P9ZZDOLWDFCQV6HY9VZEJ4T3A7NSF02TJA8OW03NO2VLE4K7ZE2PTVFFZK77NUZAG7LOHU5OZAT8605F75TWW6RZNYL21GIWABGEW7XRF2BUEZPDY220BFAZH83GW3DMSSNAJIMG7O84MJSECGH3AFU59OLLMS7D4KYRW2HZI62QP2AQX2RPU' where id=74; -update noar ti set v2='A2HDH0KVYC2HLBA46L6X7FBGBKZ7EEY86GFPBRWQDWES4YQNU9TV4MC30CDT8JA49ONLDUYAW3N0P9ZZDOLWDFCQV6HY9VZEJ4T3A7NSF02TJA8OW03NO2VLE4K7ZE2PTVFFZK77NUZAG7LOHU5OZAT8605F75TWW6RZNYL21GIWABGEW7XRF2BUEZPDY220BFAZH83GW3DMSSNAJIMG7O84MJSECGH3AFU59OLLMS7D4KYRW2HZI62QP2AQX2RPU' where id=74; -update noar tt set v3='ILB9EXDP5M5R2C9X1BVDO92DZO4I79RR2PJ7UYC0M1FV5W5Q84JT0BKXZGQYXQ6M37INZZVBOTW5XBRE139RKHUG35ZOT51ITZANBYZLL0FD4W5SNII32UJ1KJXMI56UFC0JWKCAHH3KS73MO2NI6EPR5ELBF6TEHJ66Y6LR72T1GHRMQE4TCEBWXVI8AXPSZ0D0Q4K3OR4ZI8QGY25H2S3YG5NXOR16SBBAG5AM8LE7XULRIBDIBRSSUO4F4JPKK' where id=74; -update noar ti set v3='ILB9EXDP5M5R2C9X1BVDO92DZO4I79RR2PJ7UYC0M1FV5W5Q84JT0BKXZGQYXQ6M37INZZVBOTW5XBRE139RKHUG35ZOT51ITZANBYZLL0FD4W5SNII32UJ1KJXMI56UFC0JWKCAHH3KS73MO2NI6EPR5ELBF6TEHJ66Y6LR72T1GHRMQE4TCEBWXVI8AXPSZ0D0Q4K3OR4ZI8QGY25H2S3YG5NXOR16SBBAG5AM8LE7XULRIBDIBRSSUO4F4JPKK' where id=74; -update noar tt set v0='AQE73HB3XBAN7KJEKJQLGMIKUMDX0M97EUOJ8LCWDJB0HWDQFU8VK2TZVSPIY5JH8OVD44V2YJSVDVS814VH19ZBPUJ46TXV4WYOGLG4B8RD490MVTDA50UO1X41ZXOH9TUOSZIXK8CEQV3G6JGKPI1BKZYKY8NNL4AT91EZE9ADUTZ8VLZHIJ618URP79GDDEMUGFR5OUAX1YOLIHX6JX0BIY2KFNU996UEQLRLGP171WL6X0EV7RUZGOGMZ5P0L' where id=75; -update noar ti set v0='AQE73HB3XBAN7KJEKJQLGMIKUMDX0M97EUOJ8LCWDJB0HWDQFU8VK2TZVSPIY5JH8OVD44V2YJSVDVS814VH19ZBPUJ46TXV4WYOGLG4B8RD490MVTDA50UO1X41ZXOH9TUOSZIXK8CEQV3G6JGKPI1BKZYKY8NNL4AT91EZE9ADUTZ8VLZHIJ618URP79GDDEMUGFR5OUAX1YOLIHX6JX0BIY2KFNU996UEQLRLGP171WL6X0EV7RUZGOGMZ5P0L' where id=75; -update noar tt set v1='TBFOD59SMZJTYZ4J4REYTWVE6V2OSBR3WZK9UU9JFMWCIJY97FFUC2KYB9GKJXYB5Z6LVNFWOQ7AJGEUUJXFJ8MXLW5G6EPNA52YU9ZUX5FWHYKFC9MJFVH63H726C6KFMBME327TY42IK09TKQID6XG2BMVMEBH0I0ESGS1IDT6HOPE8T02LUE5KDTP6QGI68YIHLW7T4K9XYHDOLS5ZDDPFDNOKRV3SQYF7YHFIK7PYY19JUSHNDJSXQ2BZJFYZ' where id=75; -update noar ti set v1='TBFOD59SMZJTYZ4J4REYTWVE6V2OSBR3WZK9UU9JFMWCIJY97FFUC2KYB9GKJXYB5Z6LVNFWOQ7AJGEUUJXFJ8MXLW5G6EPNA52YU9ZUX5FWHYKFC9MJFVH63H726C6KFMBME327TY42IK09TKQID6XG2BMVMEBH0I0ESGS1IDT6HOPE8T02LUE5KDTP6QGI68YIHLW7T4K9XYHDOLS5ZDDPFDNOKRV3SQYF7YHFIK7PYY19JUSHNDJSXQ2BZJFYZ' where id=75; -update noar tt set v2='NFQ8PR01T9ZZIXON8YYZHTTUN9VPMCIJ1DPSQHK25QKIJ94QIQWPN4A20NTZAUQTNYRKV596BNMW8DDCAT1Q512VJVIFPY0NMP298549EC31KMZ8DZ7PVNT19ZHUE30ECDJLGERS55RFMJWRI2LYKMTVFY0OOKJBCZX9C7QWJGUENL97SXO0L3R4XF4VFSUWNS2N99DM47EAAKOTTIO062VN32EK4JZG4ANQNQBTULABCRXOX0IFL8QV34J1WU73N' where id=75; -update noar ti set v2='NFQ8PR01T9ZZIXON8YYZHTTUN9VPMCIJ1DPSQHK25QKIJ94QIQWPN4A20NTZAUQTNYRKV596BNMW8DDCAT1Q512VJVIFPY0NMP298549EC31KMZ8DZ7PVNT19ZHUE30ECDJLGERS55RFMJWRI2LYKMTVFY0OOKJBCZX9C7QWJGUENL97SXO0L3R4XF4VFSUWNS2N99DM47EAAKOTTIO062VN32EK4JZG4ANQNQBTULABCRXOX0IFL8QV34J1WU73N' where id=75; -update noar tt set v3='TJIA711030MVUDPFEHPVTAA8GYZ1CRBFIB1AGX572645FUSSVZ2QJVOPLZL5QFHXYXLO3YMR7LBW8VWSR4A38U4VB0LQP795GK5VESGNPQ8KZBN1D4FL0JJNOLH7FKV648R80RLT3EIJKY668T26CE2TKCHP6HC4R3XP33L0JDD91VT47WF16YPESOJFRSSADRFO17OXTR8TOOW8SWGC7MRQHWPF6TEOJTHB4XEWPA1S6L5NO1D24W267R2BR1L6Q' where id=75; -update noar ti set v3='TJIA711030MVUDPFEHPVTAA8GYZ1CRBFIB1AGX572645FUSSVZ2QJVOPLZL5QFHXYXLO3YMR7LBW8VWSR4A38U4VB0LQP795GK5VESGNPQ8KZBN1D4FL0JJNOLH7FKV648R80RLT3EIJKY668T26CE2TKCHP6HC4R3XP33L0JDD91VT47WF16YPESOJFRSSADRFO17OXTR8TOOW8SWGC7MRQHWPF6TEOJTHB4XEWPA1S6L5NO1D24W267R2BR1L6Q' where id=75; -update noar tt set v0='5R4RDM613H9U030D8HCJK7Q0S7DYSORM6L5LGE8FPKRKP52ZUYKG22LBMRSQK4D39VSP52YO69RL8QIQOW99TQZ56ZAKI9JG6JKOZD6JLLWC83B5TQKPKBAKR8148KNQE021D0JVXU3LOOIWWY4GK51SVD7H3RMQ1SLAS68HM6ZJ5XUCCAXO093MJYWANKRJCCFOYTFZH1G3SNXATUP269LH8OG81M4WRQ04NWI4MXFSA5NBVZK2LK4HJ6SLIO18J' where id=76; -update noar ti set v0='5R4RDM613H9U030D8HCJK7Q0S7DYSORM6L5LGE8FPKRKP52ZUYKG22LBMRSQK4D39VSP52YO69RL8QIQOW99TQZ56ZAKI9JG6JKOZD6JLLWC83B5TQKPKBAKR8148KNQE021D0JVXU3LOOIWWY4GK51SVD7H3RMQ1SLAS68HM6ZJ5XUCCAXO093MJYWANKRJCCFOYTFZH1G3SNXATUP269LH8OG81M4WRQ04NWI4MXFSA5NBVZK2LK4HJ6SLIO18J' where id=76; -update noar tt set v1='GTXTSCFUCSFMY5Z1O2YK77NA41P0PCCFZVH05E40BUHGNILNPKS5C0DOOIM1GE2JJSRVOM7KYOEL5UNMOLUSCULNJS3AL6IMVPN5TI8H282GVP6EKVR3931SZV7JY2WV6074H5QSFXTL73JFZIXB0A3FNTO3HCYB7HXVIKVBPCIMFTUMOM702ICY70SCD74B65VBNQ0NT3SXHC4RAGNSPEKNOVJV89NAZOCSXYQ70OVIA4034SYGAFXZT9AYK51FZ' where id=76; -update noar ti set v1='GTXTSCFUCSFMY5Z1O2YK77NA41P0PCCFZVH05E40BUHGNILNPKS5C0DOOIM1GE2JJSRVOM7KYOEL5UNMOLUSCULNJS3AL6IMVPN5TI8H282GVP6EKVR3931SZV7JY2WV6074H5QSFXTL73JFZIXB0A3FNTO3HCYB7HXVIKVBPCIMFTUMOM702ICY70SCD74B65VBNQ0NT3SXHC4RAGNSPEKNOVJV89NAZOCSXYQ70OVIA4034SYGAFXZT9AYK51FZ' where id=76; -update noar tt set v2='BTL3FNIGEDABSP75C9ONT77ILIFWWCY5ZBSFASEQ106T1X2AFPGP88LYSTFBDNQQSP9ODPEMMOJ4SY7SCD9YFFQETVZOAMHJKKRVKEX9G2URA0TPCMKC5R26MN3OFC8SYGC27ETBYV05KQZ8RYKG1NSN3SORAOF40O8PQXX5HB6DH7VN7E832A7469TTQGB1IVA94EQPTLH00N1EO913DMAAAOMWXRCLHXW7IE8589QDROYBRM9R2JMDB5789DDWW' where id=76; -update noar ti set v2='BTL3FNIGEDABSP75C9ONT77ILIFWWCY5ZBSFASEQ106T1X2AFPGP88LYSTFBDNQQSP9ODPEMMOJ4SY7SCD9YFFQETVZOAMHJKKRVKEX9G2URA0TPCMKC5R26MN3OFC8SYGC27ETBYV05KQZ8RYKG1NSN3SORAOF40O8PQXX5HB6DH7VN7E832A7469TTQGB1IVA94EQPTLH00N1EO913DMAAAOMWXRCLHXW7IE8589QDROYBRM9R2JMDB5789DDWW' where id=76; -update noar tt set v3='OJ41K9N09N6ME08KZTK6726UX1IBMMAIMXC5ZLJ2EQ3A1IOY35RQYP6NIA6VU3SKTS4L4SYW9KL5T5WRET5B4I9BUJZQ35TO7WPIG0B5MCCZ6K3F58BNBIGWOPG9VGSO6AJNVV3ANI1OWAAKKJABAR8G2S01IEASSSVI79DF2F1PVN7PR5KL9YFR4KXLS1XMVRJ5WCXHXAOCGIN3VAY9YHB2X42EN3DIIJRZPFISCQD6U98G0CTCEGXJ6UAHHD8AU' where id=76; -update noar ti set v3='OJ41K9N09N6ME08KZTK6726UX1IBMMAIMXC5ZLJ2EQ3A1IOY35RQYP6NIA6VU3SKTS4L4SYW9KL5T5WRET5B4I9BUJZQ35TO7WPIG0B5MCCZ6K3F58BNBIGWOPG9VGSO6AJNVV3ANI1OWAAKKJABAR8G2S01IEASSSVI79DF2F1PVN7PR5KL9YFR4KXLS1XMVRJ5WCXHXAOCGIN3VAY9YHB2X42EN3DIIJRZPFISCQD6U98G0CTCEGXJ6UAHHD8AU' where id=76; -update noar tt set v0='7F8CDZI57S0KZRZX482RDMKHE1ZJH5D6VBLKWG5F995MNGU1GO6S1MAICIOFDCS9BTUYZ6VST3MLZWEWLTIJF74XKYVXOHGWNM0H1V5I2DJD2IQKR7N185KUDFRJGCST93ESUD0UPFYVOC8Z23TZVUFZOV1PQ0DS4AYDQ6Q82WWDJ1V8CVJZVG17RGVF1C4SR7ZE8TOPW8FZAMM75Q1LSQYOEZJF1SR99Z702F516EJVEHWUIFQSCSHRPXVRGAW0F' where id=77; -update noar ti set v0='7F8CDZI57S0KZRZX482RDMKHE1ZJH5D6VBLKWG5F995MNGU1GO6S1MAICIOFDCS9BTUYZ6VST3MLZWEWLTIJF74XKYVXOHGWNM0H1V5I2DJD2IQKR7N185KUDFRJGCST93ESUD0UPFYVOC8Z23TZVUFZOV1PQ0DS4AYDQ6Q82WWDJ1V8CVJZVG17RGVF1C4SR7ZE8TOPW8FZAMM75Q1LSQYOEZJF1SR99Z702F516EJVEHWUIFQSCSHRPXVRGAW0F' where id=77; -update noar tt set v1='ZLP681JM5DP3B1EURBN2LJH91HPPA9XMAO377O6BJ6HTCYDFZMI3LSARSFDJ3H11R4GMN6NNRD7KR4IKF6LZEG1KS3FN7ON4PA21VLUAAGWNCS98AWWIKPJVDL8KY4FY9WIBYBI7M4HUZBG39MK4UPJJKLGVIV196WXFYTOCVLA4A2TLWQ0HAVD7UNZE1G4BUOQSX24F9V5OSDL3QJA9V9L95HXYVOXA1KYHSMLMUGCAXHM91216FJGDHOJ9JZBS7' where id=77; -update noar ti set v1='ZLP681JM5DP3B1EURBN2LJH91HPPA9XMAO377O6BJ6HTCYDFZMI3LSARSFDJ3H11R4GMN6NNRD7KR4IKF6LZEG1KS3FN7ON4PA21VLUAAGWNCS98AWWIKPJVDL8KY4FY9WIBYBI7M4HUZBG39MK4UPJJKLGVIV196WXFYTOCVLA4A2TLWQ0HAVD7UNZE1G4BUOQSX24F9V5OSDL3QJA9V9L95HXYVOXA1KYHSMLMUGCAXHM91216FJGDHOJ9JZBS7' where id=77; -update noar tt set v2='1A6KJ812QRTHSOQCSR1J1HXEI8R5WI5IL4H3RWUSZE8CT4XJBIL8NDY52FQ04KF4YBE34W978A4UUIRN0H0BG5WTEMAX897W6RILLZQ6PIL38DUNE7W8218FOA2TD1BSB378CCHG6RDE8W7YCZ0BOADXHED8EGL2ZZ5O5ZRLBPRCRSU1BZEK9YQDU025D73W2LZRLSEU8JE05Z1JF61U804XWJNB5P0LJU2QOM0BS39S7N1CSA7VKDLDSBPH7190B' where id=77; -update noar ti set v2='1A6KJ812QRTHSOQCSR1J1HXEI8R5WI5IL4H3RWUSZE8CT4XJBIL8NDY52FQ04KF4YBE34W978A4UUIRN0H0BG5WTEMAX897W6RILLZQ6PIL38DUNE7W8218FOA2TD1BSB378CCHG6RDE8W7YCZ0BOADXHED8EGL2ZZ5O5ZRLBPRCRSU1BZEK9YQDU025D73W2LZRLSEU8JE05Z1JF61U804XWJNB5P0LJU2QOM0BS39S7N1CSA7VKDLDSBPH7190B' where id=77; -update noar tt set v3='MMXFX5PNICBUFU7X4AEC1653TJ55CZAT9BGL6FGO5ERMRZQUC98AXPTHRAX7VKY57GPHNXGARYO3GNWZZXTO3A2BI1C6M8Q27570SRKI818LMSUML75AJHSM67WMJ4KLOAU5M5R49KGFXE8H5VMM6BR0GYSE6NG9G3EK1QGOA66TMSI8PDD84R8R0EA41RKYHL0SAE80K2KEPATE1TZYORRGRNQAEO6VMGPHBVA1W4JP0F5YPLLM1PQAHFVCHNPQA' where id=77; -update noar ti set v3='MMXFX5PNICBUFU7X4AEC1653TJ55CZAT9BGL6FGO5ERMRZQUC98AXPTHRAX7VKY57GPHNXGARYO3GNWZZXTO3A2BI1C6M8Q27570SRKI818LMSUML75AJHSM67WMJ4KLOAU5M5R49KGFXE8H5VMM6BR0GYSE6NG9G3EK1QGOA66TMSI8PDD84R8R0EA41RKYHL0SAE80K2KEPATE1TZYORRGRNQAEO6VMGPHBVA1W4JP0F5YPLLM1PQAHFVCHNPQA' where id=77; -update noar tt set v0='NB38CTV7YJHX6YJOPNSA39K6SCQLOQJ3UTK3VBJ6TREVYN5RI2VKYYPFVVZ6XU3HBRCQQ4TNJRMJBXMRVYV8Z04S9ZN5F094AT7L9BOYG3WQQ3YFYW5C9UVEQNQYF4KV3TW454IYW8XBUEKWW016Y3OIFP88ACAIYB9NGAI4VNOGUTXWWO878MHQ7EKOCOU6WN1LYTPUGTXO15Q2LP9UYM9KMUF8XKDF7W85KVSC4NQIVS6518M7KZF3E6FLHAVM4' where id=78; -update noar ti set v0='NB38CTV7YJHX6YJOPNSA39K6SCQLOQJ3UTK3VBJ6TREVYN5RI2VKYYPFVVZ6XU3HBRCQQ4TNJRMJBXMRVYV8Z04S9ZN5F094AT7L9BOYG3WQQ3YFYW5C9UVEQNQYF4KV3TW454IYW8XBUEKWW016Y3OIFP88ACAIYB9NGAI4VNOGUTXWWO878MHQ7EKOCOU6WN1LYTPUGTXO15Q2LP9UYM9KMUF8XKDF7W85KVSC4NQIVS6518M7KZF3E6FLHAVM4' where id=78; -update noar tt set v1='WOVERXH3OXEMZ8ZIYXF4MJ7SOG71AYOHIRNWFSOLCDP8XVGZCFPGVRN5KRN86QES5LNJ19RA9WX8B6EPBD4FEH05IWIO9QSYKNGEY8UDMEGTSJBORH205CLME5ZUCONC32E0JMS7JQ6AUUMNG6M5CFW6GZK9YFZ8UTAM565FZJ6ZR0QQA98Z7PPPS2HGBQ6TU131XHLGEZ7AUFDGMIJTDHR33BP2DU2AZ600Q1EN1743H7BQNBS7DISP5VT42FZAT' where id=78; -update noar ti set v1='WOVERXH3OXEMZ8ZIYXF4MJ7SOG71AYOHIRNWFSOLCDP8XVGZCFPGVRN5KRN86QES5LNJ19RA9WX8B6EPBD4FEH05IWIO9QSYKNGEY8UDMEGTSJBORH205CLME5ZUCONC32E0JMS7JQ6AUUMNG6M5CFW6GZK9YFZ8UTAM565FZJ6ZR0QQA98Z7PPPS2HGBQ6TU131XHLGEZ7AUFDGMIJTDHR33BP2DU2AZ600Q1EN1743H7BQNBS7DISP5VT42FZAT' where id=78; -update noar tt set v2='302UGD121Z5ICNJKA3W0FIG5NJVSELC118P9SD0SRT21YAN0TC8TGOT5W3ZV0C5ZN009O8BGQWDB2PM9Y6V95FN7TQZUPK1GQJ6FTJ1N9Q1TQ7P1AQ1OO4MCQDN1FPQD0HFMCCAN720JSI03TVUFUTFR7K5CJXMSXLU8UGCSEDBBU0X05MOWLOY2KHKBBF5YSCVDY181JN0XLH9G9XXBGYSDWTVVVT7BQJ7U8KT6T2DUAW5QJ6WIGLCD4QXQHHHMI' where id=78; -update noar ti set v2='302UGD121Z5ICNJKA3W0FIG5NJVSELC118P9SD0SRT21YAN0TC8TGOT5W3ZV0C5ZN009O8BGQWDB2PM9Y6V95FN7TQZUPK1GQJ6FTJ1N9Q1TQ7P1AQ1OO4MCQDN1FPQD0HFMCCAN720JSI03TVUFUTFR7K5CJXMSXLU8UGCSEDBBU0X05MOWLOY2KHKBBF5YSCVDY181JN0XLH9G9XXBGYSDWTVVVT7BQJ7U8KT6T2DUAW5QJ6WIGLCD4QXQHHHMI' where id=78; -update noar tt set v3='UZA52RDZ11V1K163GOPSTN2WNMEG3P72W6Q3GORAZVR300CM55DIHXM11Z0CZK9XDK1TESWIGR5PIQDIGVJALJT730UTW4H1C9718EIWJYA673S1O6NA1XLRM8W0QP8YQSC10XT4VIG7Z8AVYL1G1VQ7UZOO4C412AS7GJUFZ4HOWR1F9I91UFXSJ2TUYA6N4L1SLASP59FRLIN5J3GRK2GNC360S586TKXJXU61I6ANNR7B8IJ42SW1W0S1LKWL5' where id=78; -update noar ti set v3='UZA52RDZ11V1K163GOPSTN2WNMEG3P72W6Q3GORAZVR300CM55DIHXM11Z0CZK9XDK1TESWIGR5PIQDIGVJALJT730UTW4H1C9718EIWJYA673S1O6NA1XLRM8W0QP8YQSC10XT4VIG7Z8AVYL1G1VQ7UZOO4C412AS7GJUFZ4HOWR1F9I91UFXSJ2TUYA6N4L1SLASP59FRLIN5J3GRK2GNC360S586TKXJXU61I6ANNR7B8IJ42SW1W0S1LKWL5' where id=78; -update noar tt set v0='KKUGYZNS00WEJ9K8ZZBC5WSO4B31UWH6UMXZBE4ZTFI8V60DC7D0BLYQXRJ7IH5NL01CVGZRIV6EHF3JUA0J8U8O8YFX912Q2U3C8LVJ3KNAFOQM7K20GD6UQD887NW7JB4ZFAHHL2RYUE3VJYLG3D801N2GWQ1Z47W396XGC35W2H6GWYSOEVSK2QD2BBQHYYOY3ESJFYZRGDM2NFIU7K3RC7JJ6MOUE7LE77R3EJ9KVVEPHDOOBWR52DA1NIT0U' where id=79; -update noar ti set v0='KKUGYZNS00WEJ9K8ZZBC5WSO4B31UWH6UMXZBE4ZTFI8V60DC7D0BLYQXRJ7IH5NL01CVGZRIV6EHF3JUA0J8U8O8YFX912Q2U3C8LVJ3KNAFOQM7K20GD6UQD887NW7JB4ZFAHHL2RYUE3VJYLG3D801N2GWQ1Z47W396XGC35W2H6GWYSOEVSK2QD2BBQHYYOY3ESJFYZRGDM2NFIU7K3RC7JJ6MOUE7LE77R3EJ9KVVEPHDOOBWR52DA1NIT0U' where id=79; -update noar tt set v1='VUHTVV9ONE2QHRWZR59FIG4RWWO5DNA8A8TBSEPSZGRDQBS4K270QIDWS0Y72S5K2CTUF9P2FDFKBJYCGEF89XVV7L5TDYMXPBD19I5O8MYF1QERNI7VSOPWQNKY5LJFNYRVACLRS0NTIIJEJ1BBGA23I2SGMC9FJIF8CPFOJ74T3MDOL01WXJ640UDZACGRZZ4JTAW0NGLH59VJ55H9OZSUEYAFRK5HCCELRY4251XEQCU2302Y663ZPGN3AELO1' where id=79; -update noar ti set v1='VUHTVV9ONE2QHRWZR59FIG4RWWO5DNA8A8TBSEPSZGRDQBS4K270QIDWS0Y72S5K2CTUF9P2FDFKBJYCGEF89XVV7L5TDYMXPBD19I5O8MYF1QERNI7VSOPWQNKY5LJFNYRVACLRS0NTIIJEJ1BBGA23I2SGMC9FJIF8CPFOJ74T3MDOL01WXJ640UDZACGRZZ4JTAW0NGLH59VJ55H9OZSUEYAFRK5HCCELRY4251XEQCU2302Y663ZPGN3AELO1' where id=79; -update noar tt set v2='G6HLQ7DEPCLYB9V0QTQJE36F6T2RCYR60SEQAW55LINY7QN83ZZRVFT1XR5C4GLM4IFX9TVLNQ1X0F19DOHHLQ6ABG2572P0BKKPEUV5LIC04VJZMA5EKTHVP1N6I3J4MMNQJHX0T3TLPC8EVLQPN5TQ5XWR0BFHNVTGN1A14JFYJKQTRRBYSOFKMUJHUCF1L1IGB8SBPZH8LMMN9RG6UFENIIFH3WZ81FSDECZOTTX2IVJETIF1NN7Z9EUG9RLK1' where id=79; -update noar ti set v2='G6HLQ7DEPCLYB9V0QTQJE36F6T2RCYR60SEQAW55LINY7QN83ZZRVFT1XR5C4GLM4IFX9TVLNQ1X0F19DOHHLQ6ABG2572P0BKKPEUV5LIC04VJZMA5EKTHVP1N6I3J4MMNQJHX0T3TLPC8EVLQPN5TQ5XWR0BFHNVTGN1A14JFYJKQTRRBYSOFKMUJHUCF1L1IGB8SBPZH8LMMN9RG6UFENIIFH3WZ81FSDECZOTTX2IVJETIF1NN7Z9EUG9RLK1' where id=79; -update noar tt set v3='UNKLHN1WMIS2Z1N427LRLA61946NXMAQW0K1OZZT2CAY6EC1WL1OACMC0RGAOVU22P681I3TEYUVNZEJ1M1O1Y184D70DY8F5R4VGDQCNM08UMSMQWJGYUJ2HEEB3AZCM4W5NYTGGFEWGH662XYEQV461T4GLJDPCDBN12AKOQ1P606GZS54RIPDDA1J9B21715MOHHKICO9108YPKCMJ54PC92HDXUMH313OLJYJBS93HDMT25N7EMOAHXZZFVT9' where id=79; -update noar ti set v3='UNKLHN1WMIS2Z1N427LRLA61946NXMAQW0K1OZZT2CAY6EC1WL1OACMC0RGAOVU22P681I3TEYUVNZEJ1M1O1Y184D70DY8F5R4VGDQCNM08UMSMQWJGYUJ2HEEB3AZCM4W5NYTGGFEWGH662XYEQV461T4GLJDPCDBN12AKOQ1P606GZS54RIPDDA1J9B21715MOHHKICO9108YPKCMJ54PC92HDXUMH313OLJYJBS93HDMT25N7EMOAHXZZFVT9' where id=79; -update noar tt set v0='317SXVKJPSEANQUEWXJ7AIFCIPJIYUQ7WBS69PZF4UFUDQ4BMFIXCZKB21L0KDA4GJT3G96T5YAEKX9T7VOQMAUOF5RSL2AE9E428SV3DMCMRRZ9I5HMER03ACIU83R26Z71A9P1YI4MA37VOOEFH8XAO0U6W6M8J7065FNCEGIT7M1UTR03QSDXJT67CV72YDLVT50MVLKQEDSFE60YD2O11XF9TU85NT709VVDRD6NTFUFKKVYBHBDSFPZESW75' where id=80; -update noar ti set v0='317SXVKJPSEANQUEWXJ7AIFCIPJIYUQ7WBS69PZF4UFUDQ4BMFIXCZKB21L0KDA4GJT3G96T5YAEKX9T7VOQMAUOF5RSL2AE9E428SV3DMCMRRZ9I5HMER03ACIU83R26Z71A9P1YI4MA37VOOEFH8XAO0U6W6M8J7065FNCEGIT7M1UTR03QSDXJT67CV72YDLVT50MVLKQEDSFE60YD2O11XF9TU85NT709VVDRD6NTFUFKKVYBHBDSFPZESW75' where id=80; -update noar tt set v1='Z0N22RXKYVB3MC41CB1V9DG3EMMILB4725CL7YZ54110CJJL235Y22UF0HTYGPLCUCBQPMHGU87MW0R0WNK1BDFA6G5DO0TCHVK5YOI0JBB3TBPF8ZUHXBUK2S01883OIGHMS7AH0WMKYQ1LNHS5E5B7RT9ZE5Z0OX7E9SN4BTSH5C1SSKMWH30C30AH9T9SCO1RURYJXKKX9HAVJOE8PJ08LJRO6BGRKOEINGVHLBNJ9KWEHE3IL4PI8TU0005ZZ' where id=80; -update noar ti set v1='Z0N22RXKYVB3MC41CB1V9DG3EMMILB4725CL7YZ54110CJJL235Y22UF0HTYGPLCUCBQPMHGU87MW0R0WNK1BDFA6G5DO0TCHVK5YOI0JBB3TBPF8ZUHXBUK2S01883OIGHMS7AH0WMKYQ1LNHS5E5B7RT9ZE5Z0OX7E9SN4BTSH5C1SSKMWH30C30AH9T9SCO1RURYJXKKX9HAVJOE8PJ08LJRO6BGRKOEINGVHLBNJ9KWEHE3IL4PI8TU0005ZZ' where id=80; -update noar tt set v2='I1SFWBGGEZ2SGQRUVRNWJXU734RSJB4JI7GF7X15JP9RA5AFR7WNWNKBX1AE8CVXNZ85DUIS83NSHM1T0JCAJ0OS20MC6VC82O3GRXA3NKXYULVY1UGGTJRH1IKI3T339WOVY3U6JPRHPKQIEQG44CVB3UK9NEAXQQAEKUWNLUJKOD0YG95Z1FT2VLQVWTXYV0WXI3T33XT90APM12AJ5SIWCZV6AKS09W2FXG42YDXR8OMGYVMKMC2RVE4AWM460' where id=80; -update noar ti set v2='I1SFWBGGEZ2SGQRUVRNWJXU734RSJB4JI7GF7X15JP9RA5AFR7WNWNKBX1AE8CVXNZ85DUIS83NSHM1T0JCAJ0OS20MC6VC82O3GRXA3NKXYULVY1UGGTJRH1IKI3T339WOVY3U6JPRHPKQIEQG44CVB3UK9NEAXQQAEKUWNLUJKOD0YG95Z1FT2VLQVWTXYV0WXI3T33XT90APM12AJ5SIWCZV6AKS09W2FXG42YDXR8OMGYVMKMC2RVE4AWM460' where id=80; -update noar tt set v3='MJ3LUUFRYS54ED2NDFCS0K7N4NCDP9IBITQEOXLU96OJO8IIMUR492N8AESGY2C2SL2U6NDNX5EFVL6PP7Y6QGIZXZ8TUDWN4P47GXVH7D3LY035UDZS5HL56NQXOJJQDO1TEEEUQRTC5E8GQHDWZLP1LU0XBM69YEZYH3M515RZ7C45QX8JI58TDF8J4O69W4TOW7NTB6D9MES4GCTC5T17WWKV3ICKAEGMIUPH3VHI5AJWZWGEQX6QYF4AQS2BT' where id=80; -update noar ti set v3='MJ3LUUFRYS54ED2NDFCS0K7N4NCDP9IBITQEOXLU96OJO8IIMUR492N8AESGY2C2SL2U6NDNX5EFVL6PP7Y6QGIZXZ8TUDWN4P47GXVH7D3LY035UDZS5HL56NQXOJJQDO1TEEEUQRTC5E8GQHDWZLP1LU0XBM69YEZYH3M515RZ7C45QX8JI58TDF8J4O69W4TOW7NTB6D9MES4GCTC5T17WWKV3ICKAEGMIUPH3VHI5AJWZWGEQX6QYF4AQS2BT' where id=80; -update noar tt set v0='2HJBNNMLY3ZDXX4URFRTXFFLNOAVFL5OJR4LE8ME0HSELHSZ2QC3RAIQYTVBFKVM2QYDC9XADLX3K2ZHSOPOCJ29ZS9T8R9HP6C8T3LK1WUP4ROD5LIR11J2HDTNCQ8MNF9QQ6V46SCOCGNHCMES6Y0JR9AUXOZ18SP67GCABRPVXOOE4RM11UED00QBC8N31HHZZY3CUDRKWGAANMVCQAYGIYAVZ44HID8RE3EY0K64E8KTE0H5OKX5J5U4YK2XC' where id=81; -update noar ti set v0='2HJBNNMLY3ZDXX4URFRTXFFLNOAVFL5OJR4LE8ME0HSELHSZ2QC3RAIQYTVBFKVM2QYDC9XADLX3K2ZHSOPOCJ29ZS9T8R9HP6C8T3LK1WUP4ROD5LIR11J2HDTNCQ8MNF9QQ6V46SCOCGNHCMES6Y0JR9AUXOZ18SP67GCABRPVXOOE4RM11UED00QBC8N31HHZZY3CUDRKWGAANMVCQAYGIYAVZ44HID8RE3EY0K64E8KTE0H5OKX5J5U4YK2XC' where id=81; -update noar tt set v1='JHZE4NE23OZ9BL1TM5GMR9VHDDU3HP8M6SS2RHDZ7BYBJQC0F35FLKAZAF1DWXRHXP0D2PUM5JUR3J4TDKWDPW8LFBPE3GZLKZS5YQ3ISM1WMMFC07DNDGZIXM13WAN754THD2SPWV8ZXAZKO2VQMYHHI9KX2ZH1FC7ZQAVTACGLZ1NL7HB16L986DBHWKYAYHP7J8BT8W1D3V3K5XEB5K18DT44J0Q22YXFMQTVLAWRIPUFG3FUWS670VLWMZUIU' where id=81; -update noar ti set v1='JHZE4NE23OZ9BL1TM5GMR9VHDDU3HP8M6SS2RHDZ7BYBJQC0F35FLKAZAF1DWXRHXP0D2PUM5JUR3J4TDKWDPW8LFBPE3GZLKZS5YQ3ISM1WMMFC07DNDGZIXM13WAN754THD2SPWV8ZXAZKO2VQMYHHI9KX2ZH1FC7ZQAVTACGLZ1NL7HB16L986DBHWKYAYHP7J8BT8W1D3V3K5XEB5K18DT44J0Q22YXFMQTVLAWRIPUFG3FUWS670VLWMZUIU' where id=81; -update noar tt set v2='KGA521JM3FBK82CK9TDSKPFEYD72VXXQRZ15QBWEDHOFZMS7YQJ35OPHZCWQ5R7MH1B3YHJN9U09OV3RLEE8F3CIZAD318EM0812RYVEATBF7KEL1BALAWHCDTXMF7PINC3P68MGISR56XBK93VJ8QDOG038EAUT5ZPGC7777Q5OFZLG5PPHX7JW7F5LS6JWC7S1O0L3VYENFDFH3W5QVQY59KHW66FRGZ7TURZ6ZNFHVNX1W936XOGE2FKT28RNY' where id=81; -update noar ti set v2='KGA521JM3FBK82CK9TDSKPFEYD72VXXQRZ15QBWEDHOFZMS7YQJ35OPHZCWQ5R7MH1B3YHJN9U09OV3RLEE8F3CIZAD318EM0812RYVEATBF7KEL1BALAWHCDTXMF7PINC3P68MGISR56XBK93VJ8QDOG038EAUT5ZPGC7777Q5OFZLG5PPHX7JW7F5LS6JWC7S1O0L3VYENFDFH3W5QVQY59KHW66FRGZ7TURZ6ZNFHVNX1W936XOGE2FKT28RNY' where id=81; -update noar tt set v3='LFR2K57WNKMK5VYQGUMTUVM2KJS0FULGUOEP7QQAYP7VI8PGZFX5UDIXK5XVX0XSHHJF44A4OHXEPPT3OOTNUP9CBATFYZO3N8ZLSMOPXQYE4UFDSPONQGTLTF820J4DQYOBP0F0BPR6ZYCKSI041MNJNHWAV3TGBGNSTOSN8JVGBW7EYEKSZJEXAFK3Q0ZZFG4U2MVG0184NMZ6HESFSXGUYM1HJSCKPJ1LYQ3LZIQQJDWYJXR5AHTYXPI1ZMIP3' where id=81; -update noar ti set v3='LFR2K57WNKMK5VYQGUMTUVM2KJS0FULGUOEP7QQAYP7VI8PGZFX5UDIXK5XVX0XSHHJF44A4OHXEPPT3OOTNUP9CBATFYZO3N8ZLSMOPXQYE4UFDSPONQGTLTF820J4DQYOBP0F0BPR6ZYCKSI041MNJNHWAV3TGBGNSTOSN8JVGBW7EYEKSZJEXAFK3Q0ZZFG4U2MVG0184NMZ6HESFSXGUYM1HJSCKPJ1LYQ3LZIQQJDWYJXR5AHTYXPI1ZMIP3' where id=81; -update noar tt set v0='UP9EJTXA2RUMNTLGWJJBIZAPE8EFB1M24RNH7VSJZEP7KVSIN57ZOCF7M1ABVE3PNH2TBKFXS692O2GHD8487B9YSDOYM7SA0E4G3ZJYMYT9WPBFTVLJSVRQ719LK1SEAVAN45LLDAYDVY7C2N5ZS6BV1BHMK6B4V2BHWLTN6L23DGWX5911NMO6QJ137UCEX07SIRV5AE4ELP3N1845AS7317A9BWRBW7Q6S62HDY0E6AQWOPGJ2THQ25TSKRZTH' where id=82; -update noar ti set v0='UP9EJTXA2RUMNTLGWJJBIZAPE8EFB1M24RNH7VSJZEP7KVSIN57ZOCF7M1ABVE3PNH2TBKFXS692O2GHD8487B9YSDOYM7SA0E4G3ZJYMYT9WPBFTVLJSVRQ719LK1SEAVAN45LLDAYDVY7C2N5ZS6BV1BHMK6B4V2BHWLTN6L23DGWX5911NMO6QJ137UCEX07SIRV5AE4ELP3N1845AS7317A9BWRBW7Q6S62HDY0E6AQWOPGJ2THQ25TSKRZTH' where id=82; -update noar tt set v1='8I1JP2U5WSOY3JKTQUNZ8KZZSFBMCLZDA04E89JQIZTERN1WC7URYB1RQXS6U6XP0T91G00MUWTUPS79T9ERCTSXBWAEF8E3NX0B00JQOX8C3VJOZRPKUP4MJZQSG5HI74BYRTVH7HDGZLA2YIVTX98BPI41RSPZJHCQT71RUCGRK0V49L0NYQ06N46LWMKED8T0VXJJE1UKTPJK2XSP6ASIQLDFZCBUTVBGC2APDFZJXA2C76WIRXLH6LZIWL04W' where id=82; -update noar ti set v1='8I1JP2U5WSOY3JKTQUNZ8KZZSFBMCLZDA04E89JQIZTERN1WC7URYB1RQXS6U6XP0T91G00MUWTUPS79T9ERCTSXBWAEF8E3NX0B00JQOX8C3VJOZRPKUP4MJZQSG5HI74BYRTVH7HDGZLA2YIVTX98BPI41RSPZJHCQT71RUCGRK0V49L0NYQ06N46LWMKED8T0VXJJE1UKTPJK2XSP6ASIQLDFZCBUTVBGC2APDFZJXA2C76WIRXLH6LZIWL04W' where id=82; -update noar tt set v2='VEG9CQ875N3X034OX28G53ALQQ77BQTPMA0E9KPD7QB7FW6AJF8PL3ER7KY3LLDKD1H9QG9ZASY5CTUKBNNRDL56HJA5M9SUJXB0492AUXQIKI3Z7R0M3TOITXCGDF88FR0IPVLD1UGQAOWLRCM7PNLFC1FG50QP0JWH0D3SW00YBJTTR9NIVH6WB1CXIL966LMNZDLNEMT8Q3USAM8DEOJ9CNYV4NS8NUTHSLRSE7F6NV5RS90IBKNUNFQ8RFWVJ' where id=82; -update noar ti set v2='VEG9CQ875N3X034OX28G53ALQQ77BQTPMA0E9KPD7QB7FW6AJF8PL3ER7KY3LLDKD1H9QG9ZASY5CTUKBNNRDL56HJA5M9SUJXB0492AUXQIKI3Z7R0M3TOITXCGDF88FR0IPVLD1UGQAOWLRCM7PNLFC1FG50QP0JWH0D3SW00YBJTTR9NIVH6WB1CXIL966LMNZDLNEMT8Q3USAM8DEOJ9CNYV4NS8NUTHSLRSE7F6NV5RS90IBKNUNFQ8RFWVJ' where id=82; -update noar tt set v3='Q6BBPII67U59R29LHW3X07M6J5Z9HEB1NE9W1CAHAVMLEAVU8F1DKKS7GDQ6RR9X9236IZDPS72ZCCUITUZG8562X9LEPSM6FAX550JOBVLW7M3U4MFDB34D17AHVCRY4WN7HUU683ENTM62KOSUQIWJ7T9UJKBRVOC00TQ30O1LWYH1J7M4VIEDOP69G39OAFWZ229ZR3GYBT71513R0KXH6SPK0LDNHPXPFXT1QH793FDL91GL7LBL2QWVPVADF' where id=82; -update noar ti set v3='Q6BBPII67U59R29LHW3X07M6J5Z9HEB1NE9W1CAHAVMLEAVU8F1DKKS7GDQ6RR9X9236IZDPS72ZCCUITUZG8562X9LEPSM6FAX550JOBVLW7M3U4MFDB34D17AHVCRY4WN7HUU683ENTM62KOSUQIWJ7T9UJKBRVOC00TQ30O1LWYH1J7M4VIEDOP69G39OAFWZ229ZR3GYBT71513R0KXH6SPK0LDNHPXPFXT1QH793FDL91GL7LBL2QWVPVADF' where id=82; -update noar tt set v0='4BF5NQRJBZRUFQGU0KQKLSB9JN7PKIJXZBKPJFQBYCTIGFFHEXPTGQOEE9ZL6ZEGXJ742W9YBJQV9ONKYTK0HSSC9KIQ97WLIEMR8FHDSCDFAVAN3WPS5JWSYWQ98LZWVTEAHDGPPVM8KKHG29IM5IVB69BFE60GEVL9X4MJ9NN95FLZPXFWS1NM9P3WI8PO6C7V0PAN5I91APZK3WD5WVWKGNILOUEDO49114CMUJUAA1MZ23AQ9HPUONB5YKJ55' where id=83; -update noar ti set v0='4BF5NQRJBZRUFQGU0KQKLSB9JN7PKIJXZBKPJFQBYCTIGFFHEXPTGQOEE9ZL6ZEGXJ742W9YBJQV9ONKYTK0HSSC9KIQ97WLIEMR8FHDSCDFAVAN3WPS5JWSYWQ98LZWVTEAHDGPPVM8KKHG29IM5IVB69BFE60GEVL9X4MJ9NN95FLZPXFWS1NM9P3WI8PO6C7V0PAN5I91APZK3WD5WVWKGNILOUEDO49114CMUJUAA1MZ23AQ9HPUONB5YKJ55' where id=83; -update noar tt set v1='THFMIDCUDV5NGX99QS0U603Q55ARNEFBSZOHS04KRWZ7TSFBN8Z8VXR3JRJE63V41JM6TTBX21UTHZ9OGOVPTWAPBS3N6T8LWV3ECEDL99WPD3JKN4TF0V7LTFWD1EI7U6EYP06WJ3RVQ9W682GE74Q8IHA0X1XWCZWL9PRYTBBW4KSII27KEYIJR8WO2XCWBNAH1CSEN4GGHVKDY1EYRX4MEXU3ZHPJV75RZ1Q3IM7GY8E2IKDDA6UXKCEKX4QYW' where id=83; -update noar ti set v1='THFMIDCUDV5NGX99QS0U603Q55ARNEFBSZOHS04KRWZ7TSFBN8Z8VXR3JRJE63V41JM6TTBX21UTHZ9OGOVPTWAPBS3N6T8LWV3ECEDL99WPD3JKN4TF0V7LTFWD1EI7U6EYP06WJ3RVQ9W682GE74Q8IHA0X1XWCZWL9PRYTBBW4KSII27KEYIJR8WO2XCWBNAH1CSEN4GGHVKDY1EYRX4MEXU3ZHPJV75RZ1Q3IM7GY8E2IKDDA6UXKCEKX4QYW' where id=83; -update noar tt set v2='3QR3DTO8RKAGDVM93NGA0VU4DOSF56HFZNU58QX9HNXV7IR8QCF450DEJ87YY90AJ9QWX90MW3TT1574VWC5I3SUW8STI5ML3U7YDM7XINLY2BA7RKOU855L8FKS9UNOP3DMK2NEW6TDHWF964KD1SDM4T3GPTMLUSQPIZ1LALA1BHHROJ54O4Z6G66HX262D7NAX557R8JJEZG4PWC7LRBJ570JHIAUWDXIJZUQXWHI9NT8YS67L0XRQ1HLWUWXQ' where id=83; -update noar ti set v2='3QR3DTO8RKAGDVM93NGA0VU4DOSF56HFZNU58QX9HNXV7IR8QCF450DEJ87YY90AJ9QWX90MW3TT1574VWC5I3SUW8STI5ML3U7YDM7XINLY2BA7RKOU855L8FKS9UNOP3DMK2NEW6TDHWF964KD1SDM4T3GPTMLUSQPIZ1LALA1BHHROJ54O4Z6G66HX262D7NAX557R8JJEZG4PWC7LRBJ570JHIAUWDXIJZUQXWHI9NT8YS67L0XRQ1HLWUWXQ' where id=83; -update noar tt set v3='KSKR8VYTUWUPYNBKQX9PGUMIHHIYVDM78LW3FVY7OU1L67RY4NX4XTFAXFSSEOD18N8UJKLQFUJOWIZBMLP6BKW5G31YXLG29XB2CCLBZM9Q8YX9608FKANW5H3O5JDBA3QRLST642CH2ET6IUKT34OHMEIOBUYNVFC5PX5GOZBE3Y132RU8DCE2J5OQDBCC0T2JKYI5GX9ULCV44W6XXBESZEL1Q6CIBGP7OSOO918F5LNI8KHB9PRIDTUY7TNFS' where id=83; -update noar ti set v3='KSKR8VYTUWUPYNBKQX9PGUMIHHIYVDM78LW3FVY7OU1L67RY4NX4XTFAXFSSEOD18N8UJKLQFUJOWIZBMLP6BKW5G31YXLG29XB2CCLBZM9Q8YX9608FKANW5H3O5JDBA3QRLST642CH2ET6IUKT34OHMEIOBUYNVFC5PX5GOZBE3Y132RU8DCE2J5OQDBCC0T2JKYI5GX9ULCV44W6XXBESZEL1Q6CIBGP7OSOO918F5LNI8KHB9PRIDTUY7TNFS' where id=83; -update noar tt set v0='WNHM4MPPUK2RXYH3ZNBO834CKO2WTCQ26NVK7C0UKM6NTIGLLTSZMC4Q3HE8HCYWZHX6413200LI0CQA7ZQHPNAICSE7ZV3Q9A9YN2HP9JWQX65JR49VONST7NRL19FET065KVE1GNCHTC05KBQVH1EC5V54XNJO4CIWEVB1GYK4AB3HDOE4ST2WTKJ2D66LTMLXD0NYKUFP2GLECZUGNP8HAE1HGQCRX5PDLM6273OV2OI23X7RGEUF2O1ELYDBB' where id=84; -update noar ti set v0='WNHM4MPPUK2RXYH3ZNBO834CKO2WTCQ26NVK7C0UKM6NTIGLLTSZMC4Q3HE8HCYWZHX6413200LI0CQA7ZQHPNAICSE7ZV3Q9A9YN2HP9JWQX65JR49VONST7NRL19FET065KVE1GNCHTC05KBQVH1EC5V54XNJO4CIWEVB1GYK4AB3HDOE4ST2WTKJ2D66LTMLXD0NYKUFP2GLECZUGNP8HAE1HGQCRX5PDLM6273OV2OI23X7RGEUF2O1ELYDBB' where id=84; -update noar tt set v1='SB6DQ3V0XT7SGQA5QHTTI4D59W2UXD9CDRE6W7658ZIBHW5FR4640L5XU7F1IG0IMF4X7FOT462GGJGKAHTHYPKA32V02585L3ATT4BC7FNV4IJERWS9LLNJKS6EEDJNMPRJNAGR6K10LRI7THSA1LAXTMN0UJ5KP1Q46HN4RU3I2W2DQC1GJK8G1HCVL1YB5BXFXP0MFFB66IR7TEMZ0WL6U2HNC6G6HNFROEHJPX86NEPZLUYD1H6DTIY8ZOCRS' where id=84; -update noar ti set v1='SB6DQ3V0XT7SGQA5QHTTI4D59W2UXD9CDRE6W7658ZIBHW5FR4640L5XU7F1IG0IMF4X7FOT462GGJGKAHTHYPKA32V02585L3ATT4BC7FNV4IJERWS9LLNJKS6EEDJNMPRJNAGR6K10LRI7THSA1LAXTMN0UJ5KP1Q46HN4RU3I2W2DQC1GJK8G1HCVL1YB5BXFXP0MFFB66IR7TEMZ0WL6U2HNC6G6HNFROEHJPX86NEPZLUYD1H6DTIY8ZOCRS' where id=84; -update noar tt set v2='0CNL8VKPUBNR52B4CXNPMCJRHBV67TMUL0VFNWB03FAX4C66AFGDX0ZV0E5KS0HEXZZ2NFJ5LRSVKSZ5VBQXRHH4GN28CPA33EM3NOWBHWC7G0QGS5YVO1N30Z73HZUY5MKTZZIHAW1QWNQ6U82CC2KMQT4VP1TUB2S1DXBJUZM9437P4RXXH7Z2IXLUOMNY1XFC8N9DNH5WL3VBEJKKU5I5RX93PQAC5UOJ2IOHGSQK135PCA0K97DSV4TP3WAD9' where id=84; -update noar ti set v2='0CNL8VKPUBNR52B4CXNPMCJRHBV67TMUL0VFNWB03FAX4C66AFGDX0ZV0E5KS0HEXZZ2NFJ5LRSVKSZ5VBQXRHH4GN28CPA33EM3NOWBHWC7G0QGS5YVO1N30Z73HZUY5MKTZZIHAW1QWNQ6U82CC2KMQT4VP1TUB2S1DXBJUZM9437P4RXXH7Z2IXLUOMNY1XFC8N9DNH5WL3VBEJKKU5I5RX93PQAC5UOJ2IOHGSQK135PCA0K97DSV4TP3WAD9' where id=84; -update noar tt set v3='LS6GP1ZTS75NT5ALHWGO0PLQZX28FEYFWXOKK6Q96NFMHQ7R5G32VOEQHK1UUMZJA8QOYQN16T01KJDN89FOCO78GFH8PTX23TJ8C2DK7LX4AQP5TKHZYDB04TGLPUHMVPY7G0F2U4B9N8PHRRRIMDDMRLQNDRDIE64J7S5GCSA0KIKLDBRVE2LFLJD0ASORZNWLBNG6FNDDWA4I7AFD26TWZ2K5E5SA8WX0RJSQXWWKSJXBC6WFUPX2TZXY5OKJU' where id=84; -update noar ti set v3='LS6GP1ZTS75NT5ALHWGO0PLQZX28FEYFWXOKK6Q96NFMHQ7R5G32VOEQHK1UUMZJA8QOYQN16T01KJDN89FOCO78GFH8PTX23TJ8C2DK7LX4AQP5TKHZYDB04TGLPUHMVPY7G0F2U4B9N8PHRRRIMDDMRLQNDRDIE64J7S5GCSA0KIKLDBRVE2LFLJD0ASORZNWLBNG6FNDDWA4I7AFD26TWZ2K5E5SA8WX0RJSQXWWKSJXBC6WFUPX2TZXY5OKJU' where id=84; -update noar tt set v0='Y3Q3BOUVLDLBVPY2DU3VL1Z1A1711HI0EX3AV1UQE54ODZS8DLPH9DSO1I4PBGO21VK6CG8CP1Y69CGMSL4P6LWFCEVWJJCHKMIH24FKO53KIQQMGKZUXN51ZLKVHS3OV8QE5468UMPOGFB1G0YLV2VVIYZP5J3TFYQV6WO198FLSBL9FR1A23LFP6DQIKN2DMCJ9DHRJ231F7K9CKKOUAVGN3EVKBHYIWPQU0RGNGLV0L63AX4Z7DEQ3NBXY4PVM' where id=85; -update noar ti set v0='Y3Q3BOUVLDLBVPY2DU3VL1Z1A1711HI0EX3AV1UQE54ODZS8DLPH9DSO1I4PBGO21VK6CG8CP1Y69CGMSL4P6LWFCEVWJJCHKMIH24FKO53KIQQMGKZUXN51ZLKVHS3OV8QE5468UMPOGFB1G0YLV2VVIYZP5J3TFYQV6WO198FLSBL9FR1A23LFP6DQIKN2DMCJ9DHRJ231F7K9CKKOUAVGN3EVKBHYIWPQU0RGNGLV0L63AX4Z7DEQ3NBXY4PVM' where id=85; -update noar tt set v1='HIBDYHGMHEOMDY98GA4K2P4GY5R9J98N9CQVLAQ0IKMZH0BCDHIO7LDVT6L2ZUSUL5MGRHD3DDQKWMNIK3WBUZSX144D557MVUM8QF0GUZ04J7O5CJQC9YSKRBEEYXI0R3WRRQRHQJEGR5HSGCGVH2FF3ASEVC5V68HE2E7K3UF4CJBG200XHJ36J00J4IW2GOQ7BUGM737NXXJWNR3PLJDAIH74DO1MDJWPA3JF30ZN6S27UJCTY178B2YN8PARM' where id=85; -update noar ti set v1='HIBDYHGMHEOMDY98GA4K2P4GY5R9J98N9CQVLAQ0IKMZH0BCDHIO7LDVT6L2ZUSUL5MGRHD3DDQKWMNIK3WBUZSX144D557MVUM8QF0GUZ04J7O5CJQC9YSKRBEEYXI0R3WRRQRHQJEGR5HSGCGVH2FF3ASEVC5V68HE2E7K3UF4CJBG200XHJ36J00J4IW2GOQ7BUGM737NXXJWNR3PLJDAIH74DO1MDJWPA3JF30ZN6S27UJCTY178B2YN8PARM' where id=85; -update noar tt set v2='HG6035JL1SVXPCC0Y5WIBIQO9Z0ZAG3O97ON5T1VS9U44CDNVPTYV5E48540C5Y55V26SNE1RT8L16QOOCSIGI32K1Z5JM6HV5N793PEMPQ9HP7XCXA140LZGV6THQ9BOIVFE351A5ZKW42R53V77WU0T2KQB80ZEH6FP5G6ZHB6269CCQSGX39TTKMANY19CBHVP3IBUIQRB5O1O1YM2W0NO18KJZRY1X8ZW98F48XLMVU1OTHLB9TY33JO2IBDS' where id=85; -update noar ti set v2='HG6035JL1SVXPCC0Y5WIBIQO9Z0ZAG3O97ON5T1VS9U44CDNVPTYV5E48540C5Y55V26SNE1RT8L16QOOCSIGI32K1Z5JM6HV5N793PEMPQ9HP7XCXA140LZGV6THQ9BOIVFE351A5ZKW42R53V77WU0T2KQB80ZEH6FP5G6ZHB6269CCQSGX39TTKMANY19CBHVP3IBUIQRB5O1O1YM2W0NO18KJZRY1X8ZW98F48XLMVU1OTHLB9TY33JO2IBDS' where id=85; -update noar tt set v3='TX7X75C978XFPVZK44W0ZE23IJQ9FHIRNA847XD1HE0NO7KS9BDUHB1ZL1LOM1ZF0ZDNV6YX4GWARKNOM34NYD1K950MXFE833UMMEQK9CH200OVCOZYNGIKWQ0S42K3VVJVM8H0OUKIJXXQXGYKYO69UFI5KXM5VP63MZR5122KKHPDAQRP72L1BIV2PBRR0G75DMH6M6NSHYA6SO4XTY8723YYH97S6D4PB4H1PKBHZCEODVZAG7KGIQASH2MCX' where id=85; -update noar ti set v3='TX7X75C978XFPVZK44W0ZE23IJQ9FHIRNA847XD1HE0NO7KS9BDUHB1ZL1LOM1ZF0ZDNV6YX4GWARKNOM34NYD1K950MXFE833UMMEQK9CH200OVCOZYNGIKWQ0S42K3VVJVM8H0OUKIJXXQXGYKYO69UFI5KXM5VP63MZR5122KKHPDAQRP72L1BIV2PBRR0G75DMH6M6NSHYA6SO4XTY8723YYH97S6D4PB4H1PKBHZCEODVZAG7KGIQASH2MCX' where id=85; -update noar tt set v0='TOI2L67GT79V7MD6EUQARQ6E6TSQLQSD2DV5VCPGKI7E51PRPR6J9EHQXWBZ6J01C6B5ITXP8UQCWMEPVW4QJ2LCZF2MQ0XHRZCQ8K24QPC8NGZKUWAW6M1KIA3NWO9BWXQYOMCAF6GSZIJ2BSKQI9GHULRM5SFP1TRIKMPRNMIZ0KKC95KI5MF33U4DNFPUX2VPK6ZO4XS711ILPRS5DBD4A81IAITZAFHXG71RAT5VQVSIT1M39OK645IUM34YN' where id=86; -update noar ti set v0='TOI2L67GT79V7MD6EUQARQ6E6TSQLQSD2DV5VCPGKI7E51PRPR6J9EHQXWBZ6J01C6B5ITXP8UQCWMEPVW4QJ2LCZF2MQ0XHRZCQ8K24QPC8NGZKUWAW6M1KIA3NWO9BWXQYOMCAF6GSZIJ2BSKQI9GHULRM5SFP1TRIKMPRNMIZ0KKC95KI5MF33U4DNFPUX2VPK6ZO4XS711ILPRS5DBD4A81IAITZAFHXG71RAT5VQVSIT1M39OK645IUM34YN' where id=86; -update noar tt set v1='V8MY7ZS5FSPCKIBBTUEYH34M801ZFUYETP6EN7AVXNMHZLFH15XJS1MMKDXQV44MKZVY5H0I968O7KXVQ8VHTFUK17L763099QTVE86QTP5OF5PZXIQJGH20DC6JPME7P2ELCLR7TO6HM5U9UMO9Z58B8FDYYAABBF1FLQOAXZ2JEAPLHN94G8WDIILHTFYKRA2OG9JFH6IOTSH82STSC3WGBZSG9RZMWSEP4XD8C7CT9PMDADVWAH2NZSOIA1KYU' where id=86; -update noar ti set v1='V8MY7ZS5FSPCKIBBTUEYH34M801ZFUYETP6EN7AVXNMHZLFH15XJS1MMKDXQV44MKZVY5H0I968O7KXVQ8VHTFUK17L763099QTVE86QTP5OF5PZXIQJGH20DC6JPME7P2ELCLR7TO6HM5U9UMO9Z58B8FDYYAABBF1FLQOAXZ2JEAPLHN94G8WDIILHTFYKRA2OG9JFH6IOTSH82STSC3WGBZSG9RZMWSEP4XD8C7CT9PMDADVWAH2NZSOIA1KYU' where id=86; -update noar tt set v2='OI6XGHID2H3682J24XGDFK6T75FV6RTXWRNED2OGGY28MFG0G7F083IQ429QFHIJKTUI83M8KCS40L60WD34BLHA47PWQ1N8OV13FS6QF46Y7SHR79WZ1X7GWY6LE1I5XN1CI5NHS9U5S2STN2XNCW77FIWYP476JCQBXA2GA24B1S6KSPXRBU7T0MDS9A0VI6T3X2NNV5F1UWHCEOLG39C2RYT2SAH22ZPYB9DWBVA9VZ9B46QHQAJM49Y9DEU5O' where id=86; -update noar ti set v2='OI6XGHID2H3682J24XGDFK6T75FV6RTXWRNED2OGGY28MFG0G7F083IQ429QFHIJKTUI83M8KCS40L60WD34BLHA47PWQ1N8OV13FS6QF46Y7SHR79WZ1X7GWY6LE1I5XN1CI5NHS9U5S2STN2XNCW77FIWYP476JCQBXA2GA24B1S6KSPXRBU7T0MDS9A0VI6T3X2NNV5F1UWHCEOLG39C2RYT2SAH22ZPYB9DWBVA9VZ9B46QHQAJM49Y9DEU5O' where id=86; -update noar tt set v3='5O3T1GMMV5WZKHLLE4D7WBIRA8IXU5G0GN59ZXVVHO1MZ1ZX0OV2WKF8T2WO0T0SLLSIICP45RWG5HQOEIYN1TPYUBDKMK27ZTCZ8RX2WSSSXVJ80DH81WDBO2561HLQFMDZVG0R8D0X9FRYMKOOP79HUWBTRNN1PIZ8JP34JLR4AHA7LD88L10I7Z4EXXQ1U809EARQMDPC5R6SGROBMETUDUROLF6D1FXL7DNS3RN3YUTRDAQ33IG4SBDSSW1BR' where id=86; -update noar ti set v3='5O3T1GMMV5WZKHLLE4D7WBIRA8IXU5G0GN59ZXVVHO1MZ1ZX0OV2WKF8T2WO0T0SLLSIICP45RWG5HQOEIYN1TPYUBDKMK27ZTCZ8RX2WSSSXVJ80DH81WDBO2561HLQFMDZVG0R8D0X9FRYMKOOP79HUWBTRNN1PIZ8JP34JLR4AHA7LD88L10I7Z4EXXQ1U809EARQMDPC5R6SGROBMETUDUROLF6D1FXL7DNS3RN3YUTRDAQ33IG4SBDSSW1BR' where id=86; -update noar tt set v0='RK9SI16NM1A7MCANVK3R9G8FYUMGM6KMXTSLPZU5B0H49HV21G3UU53B1528OL2J8HTMVUK8C9XUU0ZVGLH34KRITAN8WYR6TSHFNSK80PO23SHFIJN1MG71IIX081OWSL5K18E7V1D8MTUSWSI45AKQ5L7SWRZYAXF335JIZOD9FKRAX4CMUDDRFMLVYQYCGJ6J9AINQ3PK5BBBDBF7QH7HQ3MYDVM27K0G4MGAWSZT7E0NX9BDPHH7GJ8TISHFR' where id=87; -update noar ti set v0='RK9SI16NM1A7MCANVK3R9G8FYUMGM6KMXTSLPZU5B0H49HV21G3UU53B1528OL2J8HTMVUK8C9XUU0ZVGLH34KRITAN8WYR6TSHFNSK80PO23SHFIJN1MG71IIX081OWSL5K18E7V1D8MTUSWSI45AKQ5L7SWRZYAXF335JIZOD9FKRAX4CMUDDRFMLVYQYCGJ6J9AINQ3PK5BBBDBF7QH7HQ3MYDVM27K0G4MGAWSZT7E0NX9BDPHH7GJ8TISHFR' where id=87; -update noar tt set v1='TN96X4NAF2C5LBAMTZX2JD9FO5CP93EUH9USZH2EYSJG3A99UNMZCY3GOSDMEBYLFCGS6UIHQW71B315JRA6CY1H41ERF40Y2OEKH2WHJCUPACHYNE42KUGV00DPXD49COYTO5RN23SHAWSD1C66NCXAMIZARETT1SRRPHRRZX9KJ2EYB1AQCK11G7JGB49ENBBFL3Z0Q685MN1XWZZZRDI7WWYBU19PRNDDLECA6YTOCX3UHJW0EG58FPQ6LBVKD' where id=87; -update noar ti set v1='TN96X4NAF2C5LBAMTZX2JD9FO5CP93EUH9USZH2EYSJG3A99UNMZCY3GOSDMEBYLFCGS6UIHQW71B315JRA6CY1H41ERF40Y2OEKH2WHJCUPACHYNE42KUGV00DPXD49COYTO5RN23SHAWSD1C66NCXAMIZARETT1SRRPHRRZX9KJ2EYB1AQCK11G7JGB49ENBBFL3Z0Q685MN1XWZZZRDI7WWYBU19PRNDDLECA6YTOCX3UHJW0EG58FPQ6LBVKD' where id=87; -update noar tt set v2='T384QCH1DSJS1RRGH05VTWE6V6AL8UHQ2WNF6H9DFPM89DVGMAJKSG46W3DC27PH17YO7DXEF8D7L1AR6FS9F1EF2Y06M2BWGZS33XB5H2NG0GWGXZH2HUOEKLCTGNBG4QYKKX0OF0WDJWSIOQ5OFIGD2XWEGGNDIU056WCMUU7J5NT7TPATBZG96PG8XB39C7QE6XEDKXKMN6JGAWWDU9G96ZL5WZEX3EXJ8RCDLI9OYFCIFE2YAJB16J9HIVYIB' where id=87; -update noar ti set v2='T384QCH1DSJS1RRGH05VTWE6V6AL8UHQ2WNF6H9DFPM89DVGMAJKSG46W3DC27PH17YO7DXEF8D7L1AR6FS9F1EF2Y06M2BWGZS33XB5H2NG0GWGXZH2HUOEKLCTGNBG4QYKKX0OF0WDJWSIOQ5OFIGD2XWEGGNDIU056WCMUU7J5NT7TPATBZG96PG8XB39C7QE6XEDKXKMN6JGAWWDU9G96ZL5WZEX3EXJ8RCDLI9OYFCIFE2YAJB16J9HIVYIB' where id=87; -update noar tt set v3='34R1ZKMFJ8SX79GP3IALW65FZOXKUI1KQ2OL23AJJN0W2ND1OO55MKGL4T2FSQHI52QNX5YE79DU2F7LJX8RBS2OF6QYKG9JI59HVQOZEIDQKWMS7EVYJDWONOI7DJ20TNQK3BA1BLFUY45WHTJQ2BTIYSDZ168G0BSZJ4MFMNR5M8DQZJTW23HYCRKS76FWBRYZ0CAYQ9L8S6ZAWG1K0MYE1YHDFYF3YBCMIRCEVNMGBGZRM3ZU4G880PXYYW30V' where id=87; -update noar ti set v3='34R1ZKMFJ8SX79GP3IALW65FZOXKUI1KQ2OL23AJJN0W2ND1OO55MKGL4T2FSQHI52QNX5YE79DU2F7LJX8RBS2OF6QYKG9JI59HVQOZEIDQKWMS7EVYJDWONOI7DJ20TNQK3BA1BLFUY45WHTJQ2BTIYSDZ168G0BSZJ4MFMNR5M8DQZJTW23HYCRKS76FWBRYZ0CAYQ9L8S6ZAWG1K0MYE1YHDFYF3YBCMIRCEVNMGBGZRM3ZU4G880PXYYW30V' where id=87; -update noar tt set v0='DNVW1TBYCZQ3SL3XBDAH2PBKT2GT9HVF11P4N18WNEXIHO2OUCPQTI9D1Z2TKACRVOD8OMFK2PSIYA0D15YG29PNDPX1BJ9H7C447JQB0IYFUE9GJGGAYVUDDMTV75J5R1N3SXK69GTG07N4ESJ2YOSP5F69XKSJ3FBMF5D9NTU3HHDWIMEYIL17X0WSHYJFV3YXWOCWSF3E44MJ310M5EG4YHB86C3O92HS8LP6Z8IC9KOLSOA8QC5JPUSSGOPNH' where id=88; -update noar ti set v0='DNVW1TBYCZQ3SL3XBDAH2PBKT2GT9HVF11P4N18WNEXIHO2OUCPQTI9D1Z2TKACRVOD8OMFK2PSIYA0D15YG29PNDPX1BJ9H7C447JQB0IYFUE9GJGGAYVUDDMTV75J5R1N3SXK69GTG07N4ESJ2YOSP5F69XKSJ3FBMF5D9NTU3HHDWIMEYIL17X0WSHYJFV3YXWOCWSF3E44MJ310M5EG4YHB86C3O92HS8LP6Z8IC9KOLSOA8QC5JPUSSGOPNH' where id=88; -update noar tt set v1='GW13J18GQ36UC12VUK84ZG4YWTO84BNLSZYIODIQLK3F8JFJCPCQW5ZRZWZOA5Q1T0DBVGRZWHXSN5RZR02WGMGAVX6LCGNKMD1CKJVSKWBVVTZU1G984S44DWNN75D9EVQ5ZR3SCQK65270ZR7G83I3KOWQH0SJV18IKOA2CYDH7CTFO743W6O9W5A2H40DEUPVGB53VQ2D6YZQBS8S82P4G06VSANHDUXF0L5T9PJPB4TBM2TNJR1W6FWSSXZAT' where id=88; -update noar ti set v1='GW13J18GQ36UC12VUK84ZG4YWTO84BNLSZYIODIQLK3F8JFJCPCQW5ZRZWZOA5Q1T0DBVGRZWHXSN5RZR02WGMGAVX6LCGNKMD1CKJVSKWBVVTZU1G984S44DWNN75D9EVQ5ZR3SCQK65270ZR7G83I3KOWQH0SJV18IKOA2CYDH7CTFO743W6O9W5A2H40DEUPVGB53VQ2D6YZQBS8S82P4G06VSANHDUXF0L5T9PJPB4TBM2TNJR1W6FWSSXZAT' where id=88; -update noar tt set v2='SLLOG6Y0TRHMWJPJGW0L2FDLS2Q3G34KHNE8J449EDWWZ47C8S11YRHBX596S9ICBURRQWMRL7ATMNMYYXB0BH285X9X1668IW1O57SU4F0SH3S54SHDXWNPXEUGKQD3B77KJ0Y959U0J5R3OP0KSARQLN992RNYPEB0KFLF1ES11TO8CWB8N2GDMDYU2PXR950GFSBVDDC7JDBXEUK6E8OK18TZE45NPERBGE01LJZ9DBUF8X7DSTCF8800SJSK8' where id=88; -update noar ti set v2='SLLOG6Y0TRHMWJPJGW0L2FDLS2Q3G34KHNE8J449EDWWZ47C8S11YRHBX596S9ICBURRQWMRL7ATMNMYYXB0BH285X9X1668IW1O57SU4F0SH3S54SHDXWNPXEUGKQD3B77KJ0Y959U0J5R3OP0KSARQLN992RNYPEB0KFLF1ES11TO8CWB8N2GDMDYU2PXR950GFSBVDDC7JDBXEUK6E8OK18TZE45NPERBGE01LJZ9DBUF8X7DSTCF8800SJSK8' where id=88; -update noar tt set v3='8GBW401CC5Z6KC7IE4JOA48GDBLMJ9PY5HU3YD5DODCXQRSR2D58UQDFT7YLOS68YYPS3SCL3PORB5J194DJ9APTD8QWHU4KUOY9WRG200VZSXILE5TVKGCFOVYAOSTV7EP33L0XGR5BHMI0K80Y6UP7Q008MBWJHB7V0N10YIKAKABAO2S9O15VNOQYIZ599FUOG7EF0PCYLBMRPAZAR2CKQJXNU79QJA5XVN14KR5RP6GWN0G65BUEMR0BLKZHA' where id=88; -update noar ti set v3='8GBW401CC5Z6KC7IE4JOA48GDBLMJ9PY5HU3YD5DODCXQRSR2D58UQDFT7YLOS68YYPS3SCL3PORB5J194DJ9APTD8QWHU4KUOY9WRG200VZSXILE5TVKGCFOVYAOSTV7EP33L0XGR5BHMI0K80Y6UP7Q008MBWJHB7V0N10YIKAKABAO2S9O15VNOQYIZ599FUOG7EF0PCYLBMRPAZAR2CKQJXNU79QJA5XVN14KR5RP6GWN0G65BUEMR0BLKZHA' where id=88; -update noar tt set v0='FCRMBUNPXV0ZIOJJMOMTNE1QMTOUTP1AOPLK6LI5LU30190RB7KTZI19K51G3YRETK884VCNCO9QVLZZY5PUPE477R97K0RKIQL1QPDYIQPZCT6QRPOFGY4SQQLC1V8CQBKHVXJLMWUGGKMP8G7X92SISFO1CU8FZHFL015OV934K0KY7EZIE2NLES3JJX6CRLRAR9MGQPQLZYRZFG9H112GLGEANKI3U91MSJ2GKYSQ1NHODGODALC7E32AMKTZ1' where id=89; -update noar ti set v0='FCRMBUNPXV0ZIOJJMOMTNE1QMTOUTP1AOPLK6LI5LU30190RB7KTZI19K51G3YRETK884VCNCO9QVLZZY5PUPE477R97K0RKIQL1QPDYIQPZCT6QRPOFGY4SQQLC1V8CQBKHVXJLMWUGGKMP8G7X92SISFO1CU8FZHFL015OV934K0KY7EZIE2NLES3JJX6CRLRAR9MGQPQLZYRZFG9H112GLGEANKI3U91MSJ2GKYSQ1NHODGODALC7E32AMKTZ1' where id=89; -update noar tt set v1='6EQU2GAN65WL56K1TYSN7AFNU8K57HVH69I0Y3QT3GQH45WKSIP2BO09XH3WC5LTY1C4TAZME92F6VEM89INT48S3QGD6T2UT38XMYNPBI024UNZO36CS3ICGQY6TK9QZ285KD1908YPDDI1PIFN9OINOCU6UR021EGCXFOE0KD7FF4BWG6K9UMTRV47AL2B7SWZNQ8UYQ3NKOOEFPMDX08IFCXADPTY72O3CERKLI4KK6N9QL8VYLHUSJ6W27X0C' where id=89; -update noar ti set v1='6EQU2GAN65WL56K1TYSN7AFNU8K57HVH69I0Y3QT3GQH45WKSIP2BO09XH3WC5LTY1C4TAZME92F6VEM89INT48S3QGD6T2UT38XMYNPBI024UNZO36CS3ICGQY6TK9QZ285KD1908YPDDI1PIFN9OINOCU6UR021EGCXFOE0KD7FF4BWG6K9UMTRV47AL2B7SWZNQ8UYQ3NKOOEFPMDX08IFCXADPTY72O3CERKLI4KK6N9QL8VYLHUSJ6W27X0C' where id=89; -update noar tt set v2='8HX17TDB7IF28USMJSYVWPAA9AZPVRPKXJDV85TFUCDIEOYZJE40S4X4UMZGJEHGJEOO4A332NTFXGGCM09JD8Y32UIBGQ21O3097C2COQ3394DK9XLEY5R1RL453GFYTDSJH8BW5FKAQ8HJ3O7M6DHCK10IWF20OES5WNCTR08740BX4HQFIVYG3U6UAP6BMMTXAA7LPC6ODPJM22RZNEJ8BUX06QWISLQIXBDUEZIXNDXD3N5MLY1EYXPP3WJSO' where id=89; -update noar ti set v2='8HX17TDB7IF28USMJSYVWPAA9AZPVRPKXJDV85TFUCDIEOYZJE40S4X4UMZGJEHGJEOO4A332NTFXGGCM09JD8Y32UIBGQ21O3097C2COQ3394DK9XLEY5R1RL453GFYTDSJH8BW5FKAQ8HJ3O7M6DHCK10IWF20OES5WNCTR08740BX4HQFIVYG3U6UAP6BMMTXAA7LPC6ODPJM22RZNEJ8BUX06QWISLQIXBDUEZIXNDXD3N5MLY1EYXPP3WJSO' where id=89; -update noar tt set v3='CBRMEQSGVPKJX84L68LRNFB0JZJPHNF5LK23C8AEWQVCQZK5HZEVLRMIDN30PYWM2WACK8ACXR35ESB7CGJ5TLS6V4U237T9EYG9IAXDR457QY9NAK7MTE9ZJDCGMV4YPDSH6R76KAEV9O49FH07VW70BDYVRMQS98H7RKMXYOGK4RG3QEN4Z3JB84WEF7JQ9JZG4VAH2KQ895HHU1851NOS6B7KAAPGLWJCI6R5YG1PIHXT8AVW8RGNO9V7BVIYK' where id=89; -update noar ti set v3='CBRMEQSGVPKJX84L68LRNFB0JZJPHNF5LK23C8AEWQVCQZK5HZEVLRMIDN30PYWM2WACK8ACXR35ESB7CGJ5TLS6V4U237T9EYG9IAXDR457QY9NAK7MTE9ZJDCGMV4YPDSH6R76KAEV9O49FH07VW70BDYVRMQS98H7RKMXYOGK4RG3QEN4Z3JB84WEF7JQ9JZG4VAH2KQ895HHU1851NOS6B7KAAPGLWJCI6R5YG1PIHXT8AVW8RGNO9V7BVIYK' where id=89; -update noar tt set v0='QNA1QO5V7X15MRHFIWTPM54OOJTILBI5FY0WNWBWVOYJLUHVG8BZJZ6DBDVXEW909DLE8BGIB2VZ47M8NR5B73H6NSQQMUAAZF39SL8UXAQ3BES3JK4F9MJZ09KNF12QFTH4XJLDR1L1XJUTYLBQEMXSA11NYZB0K9BJG32NKIO8OFJQ4E5B9G8B17E25AMDTNL6ZLO0BBTL6HOBGRXFLM3UOP10QT99G5LC5NF8Y6G7CB6TFCT3YOYYANM45YAKT' where id=90; -update noar ti set v0='QNA1QO5V7X15MRHFIWTPM54OOJTILBI5FY0WNWBWVOYJLUHVG8BZJZ6DBDVXEW909DLE8BGIB2VZ47M8NR5B73H6NSQQMUAAZF39SL8UXAQ3BES3JK4F9MJZ09KNF12QFTH4XJLDR1L1XJUTYLBQEMXSA11NYZB0K9BJG32NKIO8OFJQ4E5B9G8B17E25AMDTNL6ZLO0BBTL6HOBGRXFLM3UOP10QT99G5LC5NF8Y6G7CB6TFCT3YOYYANM45YAKT' where id=90; -update noar tt set v1='1O65WKW4MGFDEV2DBWXLKK49LPHD7VOP0S8XDJYTQKBO7WM00AKDVTT8XT5631B6W1XI2KSAEFY0SX7O3DL3EN17OD574EB2RWYCERM0A9Z1AOW0WZBC2AODEXUKZG11IQHJG4IYDUP89GEFWKEDWRADKOA9XHMV37JTFS0V6461KNPFFIJOIXP8QM341KJ0QOVA80OGYFT1CEBQ08DUR2EN0BSJCGHWA3CKZ3IUGRD1E6VV17QUOMY80FPO67BZP' where id=90; -update noar ti set v1='1O65WKW4MGFDEV2DBWXLKK49LPHD7VOP0S8XDJYTQKBO7WM00AKDVTT8XT5631B6W1XI2KSAEFY0SX7O3DL3EN17OD574EB2RWYCERM0A9Z1AOW0WZBC2AODEXUKZG11IQHJG4IYDUP89GEFWKEDWRADKOA9XHMV37JTFS0V6461KNPFFIJOIXP8QM341KJ0QOVA80OGYFT1CEBQ08DUR2EN0BSJCGHWA3CKZ3IUGRD1E6VV17QUOMY80FPO67BZP' where id=90; -update noar tt set v2='65BYX268QR2EMW17UX9AHB021U6H3MPCB9QJXOSO774S92U28DTREPO0VKC6ROIFYJ10TYA6K75TPX2PMZ1YS90ZJM076CZE721GD63RZAKK3W8MKD1Q7AEEQDIEIABRDWTD1SZ7WLE4XT9C9Z93RIIZY95V3IEUB3T2R6JAC3F2D9ND4MM7NNNWK48XYOEI6PH99T3R3ZO31UA2S3A2LJ4CBA4KGB4JNANILIQIV8ID55VUVDEZ4V8YUD7XSJ2U5' where id=90; -update noar ti set v2='65BYX268QR2EMW17UX9AHB021U6H3MPCB9QJXOSO774S92U28DTREPO0VKC6ROIFYJ10TYA6K75TPX2PMZ1YS90ZJM076CZE721GD63RZAKK3W8MKD1Q7AEEQDIEIABRDWTD1SZ7WLE4XT9C9Z93RIIZY95V3IEUB3T2R6JAC3F2D9ND4MM7NNNWK48XYOEI6PH99T3R3ZO31UA2S3A2LJ4CBA4KGB4JNANILIQIV8ID55VUVDEZ4V8YUD7XSJ2U5' where id=90; -update noar tt set v3='F7WXSO2SLKFA4VR40QPR2YZ37UXZPGOMKSWGDLZCNOUIOQBOLDW5W0ZJPET3F5WLHT7LLZUJ0P4EOHESDFZ06ESFSYS0NHPO0XGS1N0LM5F9BVIKILIPGRNNWF9GFQQ0O6E7QW1CSWWYL0EKR4NI04VWUHM9OJ40YLWCU7WRW8Q35E1KWXT1MYAVCHBOHH01VZQORV1YIQ4IWMJFZC53KETY0OPLGRH3W398VMW02YLY0IQN6CDFSDASH1Q1B1ODI' where id=90; -update noar ti set v3='F7WXSO2SLKFA4VR40QPR2YZ37UXZPGOMKSWGDLZCNOUIOQBOLDW5W0ZJPET3F5WLHT7LLZUJ0P4EOHESDFZ06ESFSYS0NHPO0XGS1N0LM5F9BVIKILIPGRNNWF9GFQQ0O6E7QW1CSWWYL0EKR4NI04VWUHM9OJ40YLWCU7WRW8Q35E1KWXT1MYAVCHBOHH01VZQORV1YIQ4IWMJFZC53KETY0OPLGRH3W398VMW02YLY0IQN6CDFSDASH1Q1B1ODI' where id=90; -update noar tt set v0='BXN41P3XDML9LI2WGX6SEKTREEUJNC35ESVWNYC7KDI5VYTDS26N06JCUKZVEFEOZZMB6YHN590EZT2OUT11DU61HL2R4BGQSSE16GWP0VOBUGPGL1BEDOTUTM0IMSI40F5A0LAK5LZ7IQLLC79LG4XCRBO5G23SLT6P1KXD1KX61086ME55Z1ODH6T4VIM3IJEKXBB7JEI7UQ0FRHP9YCCBNZ40UUVW982ZVILNCFK1XBXCK5SXJDZB921KRQQMK' where id=91; -update noar ti set v0='BXN41P3XDML9LI2WGX6SEKTREEUJNC35ESVWNYC7KDI5VYTDS26N06JCUKZVEFEOZZMB6YHN590EZT2OUT11DU61HL2R4BGQSSE16GWP0VOBUGPGL1BEDOTUTM0IMSI40F5A0LAK5LZ7IQLLC79LG4XCRBO5G23SLT6P1KXD1KX61086ME55Z1ODH6T4VIM3IJEKXBB7JEI7UQ0FRHP9YCCBNZ40UUVW982ZVILNCFK1XBXCK5SXJDZB921KRQQMK' where id=91; -update noar tt set v1='0DJTGK5SQ2C28D1BRS9HVJM0M4SZ50LG6X8YOOC5GYAH2PQE6CWM74QNRVW2LBKF0C97R9WAMPNZCB9CM9MRVDOBVBZZE09OPIWOFARJ0SCX6F9EPJBJT7R8MWD17FB9LIPLBXADYPIVX7DKNJFVT4OE54BVLU3WIA35ODGXW2A9ZK6B6G83WS7LLRTCTGY0E3EYGMXL8LPKU5FPAUJO3MQ3LIPUPWPF66XZWFOF25GCRAN0DHTL2QEHG2C53UCY5' where id=91; -update noar ti set v1='0DJTGK5SQ2C28D1BRS9HVJM0M4SZ50LG6X8YOOC5GYAH2PQE6CWM74QNRVW2LBKF0C97R9WAMPNZCB9CM9MRVDOBVBZZE09OPIWOFARJ0SCX6F9EPJBJT7R8MWD17FB9LIPLBXADYPIVX7DKNJFVT4OE54BVLU3WIA35ODGXW2A9ZK6B6G83WS7LLRTCTGY0E3EYGMXL8LPKU5FPAUJO3MQ3LIPUPWPF66XZWFOF25GCRAN0DHTL2QEHG2C53UCY5' where id=91; -update noar tt set v2='F8I1Y2DS2GMRUL65S8BAZFCRBOWFU5U9X4C5NAD6TE0Z5OP536AWFCQ3HFLSXVIMGKRFWK4JYZWDMA60LP1FBHRXH1ZIW8HNY39U4XQGDNW95XXM6JL6F0TFFPEEIV0RPC8HOCSVPHCLOW5A144F48952XEEFEZ46AFAKHJGU71GVXVWLZ7KFX84HM6ANUSKF2AAQ6OK4Y8IZHFURJX5ZXC8PHOUU6XEKFHBIWDNK70X6HINH8TN4HFHIL6QN5KPI' where id=91; -update noar ti set v2='F8I1Y2DS2GMRUL65S8BAZFCRBOWFU5U9X4C5NAD6TE0Z5OP536AWFCQ3HFLSXVIMGKRFWK4JYZWDMA60LP1FBHRXH1ZIW8HNY39U4XQGDNW95XXM6JL6F0TFFPEEIV0RPC8HOCSVPHCLOW5A144F48952XEEFEZ46AFAKHJGU71GVXVWLZ7KFX84HM6ANUSKF2AAQ6OK4Y8IZHFURJX5ZXC8PHOUU6XEKFHBIWDNK70X6HINH8TN4HFHIL6QN5KPI' where id=91; -update noar tt set v3='07LV3REF60SP7BB98CU8BRJBQ25JIZLU3N8I2AZ9FFSGQ30KLL7SAKRXPAFPD8WCOWAA0TYIZZY5AW0FNIPK20O38ZT140QWG1DXMDBT34FIF6U9W0RN2OXGU9MV56PHM2PAG2X3OS5C7I2QEQBK4ORKIRWCEV40KJ14CENPXWKJ1E75LU7OYWHD584HTN537T7H0JDD83PD1Y3OYOO12LZ560PMDZ895PH1SUWELWAEZPO6QU9T6YDEGMKPHKATD' where id=91; -update noar ti set v3='07LV3REF60SP7BB98CU8BRJBQ25JIZLU3N8I2AZ9FFSGQ30KLL7SAKRXPAFPD8WCOWAA0TYIZZY5AW0FNIPK20O38ZT140QWG1DXMDBT34FIF6U9W0RN2OXGU9MV56PHM2PAG2X3OS5C7I2QEQBK4ORKIRWCEV40KJ14CENPXWKJ1E75LU7OYWHD584HTN537T7H0JDD83PD1Y3OYOO12LZ560PMDZ895PH1SUWELWAEZPO6QU9T6YDEGMKPHKATD' where id=91; -update noar tt set v0='H7VXGSD9HW21CEJZEQ0ZKAQCDS7DHN0W2G4R6SH8QCCB9S6NYXSDD5LV0G3GGT771ODS8M3A4QBBB6I2IOVIUDU66UJME4MH3YBNVXCE40ABPQLHTGYCKHGSTBCT9P48UFW9YDZYK5DBNLELLCASRUQXBQP3GWWWRNHTIHTCKVCXEDEFXNEY9KNMVEC08DH028T8HBFH1T7TF3AN21LC205WX344A9ZKPNRIUI18IG03VBWUUO2NMB2SHH99066IE' where id=92; -update noar ti set v0='H7VXGSD9HW21CEJZEQ0ZKAQCDS7DHN0W2G4R6SH8QCCB9S6NYXSDD5LV0G3GGT771ODS8M3A4QBBB6I2IOVIUDU66UJME4MH3YBNVXCE40ABPQLHTGYCKHGSTBCT9P48UFW9YDZYK5DBNLELLCASRUQXBQP3GWWWRNHTIHTCKVCXEDEFXNEY9KNMVEC08DH028T8HBFH1T7TF3AN21LC205WX344A9ZKPNRIUI18IG03VBWUUO2NMB2SHH99066IE' where id=92; -update noar tt set v1='2N6GCHM78TBIOTYBHCCFIK5XYNKK9VF149X3QNY6WNKUJR4BYLACQ3W6PRPDPXIAITO1SG245S6U0NII5UDL09PAI00QI0RS2LWLSA7BVNZW8K3OK87SCA4P41F7OJW85FBU4M1EM4JMWUXZULX2UDXKZ3TJDWE6XWAHH0V6SVYHAIA9N1NNDA8HIZ2Y6O6NEFD9CM9LGO7FYQEV12UMR1KD2XZFMLECCQHISM5ILMEGM9FIOMNPUAVD7GSOFPIDC' where id=92; -update noar ti set v1='2N6GCHM78TBIOTYBHCCFIK5XYNKK9VF149X3QNY6WNKUJR4BYLACQ3W6PRPDPXIAITO1SG245S6U0NII5UDL09PAI00QI0RS2LWLSA7BVNZW8K3OK87SCA4P41F7OJW85FBU4M1EM4JMWUXZULX2UDXKZ3TJDWE6XWAHH0V6SVYHAIA9N1NNDA8HIZ2Y6O6NEFD9CM9LGO7FYQEV12UMR1KD2XZFMLECCQHISM5ILMEGM9FIOMNPUAVD7GSOFPIDC' where id=92; -update noar tt set v2='G16HEGDGKKWUES48KP5L801HZCUEAXCXJL2BMISXVWNPEHU0JQHJEOSVACMAUBMSQ79WEU2PZ8JX92V0TU9078Y0MQTAD3J1MNOIOPR79PB08RM87H624K39SRQZWA2BITVAJ6NWOOG2RGVMJS4NHOU49YHNRCWCOYGA5YQ2ODWH3C6GJ10Y1G7Q8KDGSEEOLWMHQB3ULOBIANT2L205WTVJ3X1LCQL4DR99KTTFM4GT339FPROE2ED00B781TS3B' where id=92; -update noar ti set v2='G16HEGDGKKWUES48KP5L801HZCUEAXCXJL2BMISXVWNPEHU0JQHJEOSVACMAUBMSQ79WEU2PZ8JX92V0TU9078Y0MQTAD3J1MNOIOPR79PB08RM87H624K39SRQZWA2BITVAJ6NWOOG2RGVMJS4NHOU49YHNRCWCOYGA5YQ2ODWH3C6GJ10Y1G7Q8KDGSEEOLWMHQB3ULOBIANT2L205WTVJ3X1LCQL4DR99KTTFM4GT339FPROE2ED00B781TS3B' where id=92; -update noar tt set v3='LUISH4SMBA0GU26E7EF5Y20881057BZ283VUJWLUVQP3MCCUT3MPCUAT8A9JRYBBRG089V2NHO6QO69K4XO79JWJ72XKSXZWF79JLPEWIQ0HBJ5TEZ1YWGF8Y94Y1POPFGODNIAXHIEU46OXVBUMJDNRSRRT7BXU9NAAY3RWR904XELIR79XFF8NFTODWO3TSU4ZMS84AKULST7D9TGW6XFVA8HXM2PVAQHGWSHRLTVCS2GX8201YGG9HJJBYIVU2' where id=92; -update noar ti set v3='LUISH4SMBA0GU26E7EF5Y20881057BZ283VUJWLUVQP3MCCUT3MPCUAT8A9JRYBBRG089V2NHO6QO69K4XO79JWJ72XKSXZWF79JLPEWIQ0HBJ5TEZ1YWGF8Y94Y1POPFGODNIAXHIEU46OXVBUMJDNRSRRT7BXU9NAAY3RWR904XELIR79XFF8NFTODWO3TSU4ZMS84AKULST7D9TGW6XFVA8HXM2PVAQHGWSHRLTVCS2GX8201YGG9HJJBYIVU2' where id=92; -update noar tt set v0='6UM3F9UHKZ2ISW2FI8IPN1UCATLKVC6A1P6VJ39XLK8NZCF2RWCCOBH4VA4BTUR3LLNYTX6MJG5Z1TXIFP2KJQTPC4TJ2DPT67Q2FF6D7UVVMUUYESVEOJNA0TWCJOT8V2K0K575TXS3E1C4G199SXD0HD1MGJ253WZKPWNQLHQPCXRJDRF4AI1BW96Y9GVDKPNDNGNM2YYV8ASQPH78B8E6K5XGAXMMUDHA6CCSZUNDYMEPK8UGJXDUVG945DJUU' where id=93; -update noar ti set v0='6UM3F9UHKZ2ISW2FI8IPN1UCATLKVC6A1P6VJ39XLK8NZCF2RWCCOBH4VA4BTUR3LLNYTX6MJG5Z1TXIFP2KJQTPC4TJ2DPT67Q2FF6D7UVVMUUYESVEOJNA0TWCJOT8V2K0K575TXS3E1C4G199SXD0HD1MGJ253WZKPWNQLHQPCXRJDRF4AI1BW96Y9GVDKPNDNGNM2YYV8ASQPH78B8E6K5XGAXMMUDHA6CCSZUNDYMEPK8UGJXDUVG945DJUU' where id=93; -update noar tt set v1='YKWISDDQSSG39UNNF5QG83YL6DMBAHKQU8T0PL26YQZOXG9W88HDT3Y8KLT7DTE2L38PYB9WTVFDYTJIBPDHX6XGSXPIWJGTHE9V559KPQ3OE06IRVHHLZRFDO92THBD28WACKKVNZ3X4Y00QSPO346NFI0HOBW624AYXFLVFL884RBAEV0T59MSC0TRBB2EJQAKMDMIUNJB93UY6OXVE0TL98SKMUT7AVYSZ49ONUR9CLJ1MY05AH3QMTBTSCG0A' where id=93; -update noar ti set v1='YKWISDDQSSG39UNNF5QG83YL6DMBAHKQU8T0PL26YQZOXG9W88HDT3Y8KLT7DTE2L38PYB9WTVFDYTJIBPDHX6XGSXPIWJGTHE9V559KPQ3OE06IRVHHLZRFDO92THBD28WACKKVNZ3X4Y00QSPO346NFI0HOBW624AYXFLVFL884RBAEV0T59MSC0TRBB2EJQAKMDMIUNJB93UY6OXVE0TL98SKMUT7AVYSZ49ONUR9CLJ1MY05AH3QMTBTSCG0A' where id=93; -update noar tt set v2='N6G5M55YHRV5QNDIY7ZFPZIKZ7TFVFI6Z3XKQLIJO2HKLZHCHX9G2CIH36W914OKMBD836RBCIVUJVZWVACMQODIIIWQQ906J52X05BH83DI75YTYPST28HHEP748FPM8OATD5T9F1BR0A62MA4F1OCON588906QQD9NSJFUFUI90BYEWZLYJZ49LVUMSXKQDIGEK303GQS6L4QILZKIC46MW0GNXSH4T8ZCRKMPWUDGFK55RC49BT6UPDVJK0NM8' where id=93; -update noar ti set v2='N6G5M55YHRV5QNDIY7ZFPZIKZ7TFVFI6Z3XKQLIJO2HKLZHCHX9G2CIH36W914OKMBD836RBCIVUJVZWVACMQODIIIWQQ906J52X05BH83DI75YTYPST28HHEP748FPM8OATD5T9F1BR0A62MA4F1OCON588906QQD9NSJFUFUI90BYEWZLYJZ49LVUMSXKQDIGEK303GQS6L4QILZKIC46MW0GNXSH4T8ZCRKMPWUDGFK55RC49BT6UPDVJK0NM8' where id=93; -update noar tt set v3='J9S8RYACHQS0ADM472FULUJXP503SSWYBZXY5K5DRPUOLAY1FPK0FT04IL4TFTBTLGX4VAB1EO8ZUC9U0HUABJZOEQO85GPSQ8S4O5P7YK8Q4K7QPV3HZU0IA8J9F88CBG1Y6XXC4VQAZA3CGSFO491GH47YQ8R6Z0F67MPGUAL7Z76IF2E4YBR1E0L018VBICHAF24JQEX03C9A6UHNFW45A0XP9W6GOOTF0CEF5Z6BJBK0VSZG4FIJ2BRCAKAIQ' where id=93; -update noar ti set v3='J9S8RYACHQS0ADM472FULUJXP503SSWYBZXY5K5DRPUOLAY1FPK0FT04IL4TFTBTLGX4VAB1EO8ZUC9U0HUABJZOEQO85GPSQ8S4O5P7YK8Q4K7QPV3HZU0IA8J9F88CBG1Y6XXC4VQAZA3CGSFO491GH47YQ8R6Z0F67MPGUAL7Z76IF2E4YBR1E0L018VBICHAF24JQEX03C9A6UHNFW45A0XP9W6GOOTF0CEF5Z6BJBK0VSZG4FIJ2BRCAKAIQ' where id=93; -update noar tt set v0='EM1A2R5V41XC5VG64YL53YNWNO51KR6QDFUJ3UKIYHLJUNTBLDO4VOG57KJOTC86GLLWXWN0N72CQ4CZYYKNAYKG8CAGHPW1QIIFJ2F4IBYQO7O7C6LWEM1BJM0W89K55HPPUNB2V119E0LN0QP5ICRCF9YQ239HLOEE3XE8H6W0S63RPOQ6RBTX8H5IWPT4PWX1L9EEDPRB8819EX12GH05AQZLDUZ0Z0IRGOE4XCCRE5KM311EN5Z6W3JCGDKDQ' where id=94; -update noar ti set v0='EM1A2R5V41XC5VG64YL53YNWNO51KR6QDFUJ3UKIYHLJUNTBLDO4VOG57KJOTC86GLLWXWN0N72CQ4CZYYKNAYKG8CAGHPW1QIIFJ2F4IBYQO7O7C6LWEM1BJM0W89K55HPPUNB2V119E0LN0QP5ICRCF9YQ239HLOEE3XE8H6W0S63RPOQ6RBTX8H5IWPT4PWX1L9EEDPRB8819EX12GH05AQZLDUZ0Z0IRGOE4XCCRE5KM311EN5Z6W3JCGDKDQ' where id=94; -update noar tt set v1='L9285JDY5DEB8H70RKSOD83JCPQUWT53CZRDGNN1R9ZRC35X0TBD4891YTTT2D559HOXMMVK4A6U2NRUXS3HJMQCZLWT7WS8XB45UW60W42PWUPULIFE3G1H5B2DD3FUW9YCS56KF4OBHTXWOD9F93GTOE5185M4IVS9FNTX75UZ1WYDSRR8GE41R1VKLGTV0M8SNLCOJEEZT191YRIA71F1CG4EBDG3ZN1QCZ7O2HSQ35GEKBHTSNWW8FG0QW0MP' where id=94; -update noar ti set v1='L9285JDY5DEB8H70RKSOD83JCPQUWT53CZRDGNN1R9ZRC35X0TBD4891YTTT2D559HOXMMVK4A6U2NRUXS3HJMQCZLWT7WS8XB45UW60W42PWUPULIFE3G1H5B2DD3FUW9YCS56KF4OBHTXWOD9F93GTOE5185M4IVS9FNTX75UZ1WYDSRR8GE41R1VKLGTV0M8SNLCOJEEZT191YRIA71F1CG4EBDG3ZN1QCZ7O2HSQ35GEKBHTSNWW8FG0QW0MP' where id=94; -update noar tt set v2='F842MVCK5O8AOUPAR46T9N3CEHMQ13UQ8O0IN85DDVFPXA2I8Q5AQPANL8W707TTT43IG61TWRG691QPFNZXPYKH197MVWJYQ57RD4DZ95P6XEQB5KA1P7NON14H5D44WVRSVKYIGVRI28EXMEZKYNEBYH6LX8OIBOJ4YXLO06JZ9K65B7CKO64L7XXAGL6HLES0DOGOLXV5QKA8MUFJHM091ETPZUZ18MN0JLSQ0LFAZNM80CB5ZCBWSJVM4Q4DE' where id=94; -update noar ti set v2='F842MVCK5O8AOUPAR46T9N3CEHMQ13UQ8O0IN85DDVFPXA2I8Q5AQPANL8W707TTT43IG61TWRG691QPFNZXPYKH197MVWJYQ57RD4DZ95P6XEQB5KA1P7NON14H5D44WVRSVKYIGVRI28EXMEZKYNEBYH6LX8OIBOJ4YXLO06JZ9K65B7CKO64L7XXAGL6HLES0DOGOLXV5QKA8MUFJHM091ETPZUZ18MN0JLSQ0LFAZNM80CB5ZCBWSJVM4Q4DE' where id=94; -update noar tt set v3='QICNQOQ99XPHAVUQG48270CPQ4D75H315M4HZI66FFPUF4PL08FHH58CA6MK8H8Z74ASTHEIUXBS580BYVBEC8MFDH6WH8HOODJUMRQA1JA7GTJ61KAM2CEGHF9VNCNZ90PGJ2A3C3MPUVYDMGKMFAVJ87WXK21WU49KM7PTBMSF7EG60TBO2VRWA2KB9A7E3ZUH9Y53AW0N4JBN19ZCHUM1NRAEIPH0SZKCPO22EH56QDQ3OG1QUPZ63U1M2MJPU' where id=94; -update noar ti set v3='QICNQOQ99XPHAVUQG48270CPQ4D75H315M4HZI66FFPUF4PL08FHH58CA6MK8H8Z74ASTHEIUXBS580BYVBEC8MFDH6WH8HOODJUMRQA1JA7GTJ61KAM2CEGHF9VNCNZ90PGJ2A3C3MPUVYDMGKMFAVJ87WXK21WU49KM7PTBMSF7EG60TBO2VRWA2KB9A7E3ZUH9Y53AW0N4JBN19ZCHUM1NRAEIPH0SZKCPO22EH56QDQ3OG1QUPZ63U1M2MJPU' where id=94; -update noar tt set v0='9NBLHVQLDNQ58F9OZYQZZTUACHVCAMHNEXEAP7NOQ2T4U0HFQDPZ4BISMVIASTZZ05B23MB87WEBPHD44RKLV7RY6WGRE35U77HEM1I8FF22AE4915ACNLA27ICTZA7OI6H530Z5EU0AMFKGQJXIGYV1JA0IC7O7KINMXDTXYA7G83SPNAQPFB8WN0HN1704DRRFZ1KEW5RB68G9X100OY8SZ9CFN3B10JTCSMD2JJB27U2FO5AEB4TU9XWVK84DM' where id=95; -update noar ti set v0='9NBLHVQLDNQ58F9OZYQZZTUACHVCAMHNEXEAP7NOQ2T4U0HFQDPZ4BISMVIASTZZ05B23MB87WEBPHD44RKLV7RY6WGRE35U77HEM1I8FF22AE4915ACNLA27ICTZA7OI6H530Z5EU0AMFKGQJXIGYV1JA0IC7O7KINMXDTXYA7G83SPNAQPFB8WN0HN1704DRRFZ1KEW5RB68G9X100OY8SZ9CFN3B10JTCSMD2JJB27U2FO5AEB4TU9XWVK84DM' where id=95; -update noar tt set v1='7L00YVBJPY9IW9O7HBYHE7WBV2FO3JQDPZWU1M4V8XQIPH9DACJL3T4I9I19NSIE0RIPBVD11AH7BI366XHDF3930OHLV3ID9ST0GW1PWMR9EPF9RGCLQ6I9YLID6EGNP3ZT25FK9U4195J0F8TWZH88F3K39AKNV1BY0N6BYC2I55EUW3970MR06I0YL40KAGKZY50S3WFOGAK9ST7FC8WQDRUSO6V7DIPO7612R16NKS46Z30FBWC7G331Z6O70' where id=95; -update noar ti set v1='7L00YVBJPY9IW9O7HBYHE7WBV2FO3JQDPZWU1M4V8XQIPH9DACJL3T4I9I19NSIE0RIPBVD11AH7BI366XHDF3930OHLV3ID9ST0GW1PWMR9EPF9RGCLQ6I9YLID6EGNP3ZT25FK9U4195J0F8TWZH88F3K39AKNV1BY0N6BYC2I55EUW3970MR06I0YL40KAGKZY50S3WFOGAK9ST7FC8WQDRUSO6V7DIPO7612R16NKS46Z30FBWC7G331Z6O70' where id=95; -update noar tt set v2='OFUU24WX9EHGQZ1N5TXO5UTFNSKI6E4IMUTUVAAWTLEHBDLDRT0AUOGTYHWUD3RSS7XB960DTMJVOJ7TBOP9LMDJL4I70JF64QYLTPDBI9YSQ7V24PF5WYUOB3ZB8Z32NFNO12JHD8CT16LA09E12NMCK1YPETDW2JIHHAI5984I9YY5DX5TKGWRN67G0RZT13HPMEX910PYZ97DRX7GK7Z58Y908MCH9I6C2W7B5TGH6ZLX72K3ZIV7UTZRXRE8V' where id=95; -update noar ti set v2='OFUU24WX9EHGQZ1N5TXO5UTFNSKI6E4IMUTUVAAWTLEHBDLDRT0AUOGTYHWUD3RSS7XB960DTMJVOJ7TBOP9LMDJL4I70JF64QYLTPDBI9YSQ7V24PF5WYUOB3ZB8Z32NFNO12JHD8CT16LA09E12NMCK1YPETDW2JIHHAI5984I9YY5DX5TKGWRN67G0RZT13HPMEX910PYZ97DRX7GK7Z58Y908MCH9I6C2W7B5TGH6ZLX72K3ZIV7UTZRXRE8V' where id=95; -update noar tt set v3='K2YW1ZKUH39WHDUCHRRODIMWZ2BT8FDBKQJ5F7SJXMJX144OQTDLEWHGXDDWY3RLV5PQGV9LTDFTAKOHP8O9NGUN89HW9R1MANZJGVNX6DBAMZOP4LF66C1OLVDY9EF08Q6JO1O78P4RFM5Z4M0BUUO5EZHM8NSEXGHF76QQSO8UN2IBYFZL6EGEUTFJCR0G360YR4N94YZ5KN03XAJVK9ODQ7JD7ZCTOV9AV9S0DHLHT2O5NH49C74MS9Q7WE06G' where id=95; -update noar ti set v3='K2YW1ZKUH39WHDUCHRRODIMWZ2BT8FDBKQJ5F7SJXMJX144OQTDLEWHGXDDWY3RLV5PQGV9LTDFTAKOHP8O9NGUN89HW9R1MANZJGVNX6DBAMZOP4LF66C1OLVDY9EF08Q6JO1O78P4RFM5Z4M0BUUO5EZHM8NSEXGHF76QQSO8UN2IBYFZL6EGEUTFJCR0G360YR4N94YZ5KN03XAJVK9ODQ7JD7ZCTOV9AV9S0DHLHT2O5NH49C74MS9Q7WE06G' where id=95; -update noar tt set v0='23PRE68SZL8CB8MDQ9RCHIWLP7QLE6A89FWVUBVTNDLFM8D1IXJ3NIXPOGLH65FJERVAW9720ALGSBNYL04IB6HPBEOK7B2IAKBKYOZ9QWYM8GCJAAGGVZ9UCJQM978BTHC4LVW40LCCG4KZP6DSMCAUE8SMAGML6JO66FXAUTN5W4S4E1037W59EIL2W3VV56N3VG7DO6TYUTB9UPV4KNLCVU7FUHMMXPES69RWVD2JEJPFU8WWRT4R27PAWGD87' where id=96; -update noar ti set v0='23PRE68SZL8CB8MDQ9RCHIWLP7QLE6A89FWVUBVTNDLFM8D1IXJ3NIXPOGLH65FJERVAW9720ALGSBNYL04IB6HPBEOK7B2IAKBKYOZ9QWYM8GCJAAGGVZ9UCJQM978BTHC4LVW40LCCG4KZP6DSMCAUE8SMAGML6JO66FXAUTN5W4S4E1037W59EIL2W3VV56N3VG7DO6TYUTB9UPV4KNLCVU7FUHMMXPES69RWVD2JEJPFU8WWRT4R27PAWGD87' where id=96; -update noar tt set v1='2EGQV6UVS25FQ05O6WOOW66G9DX1WHDP90DBIY0YFHJ0M8D3RTZ628VEYMLY69XVMWZVRCJLJX0TKEV2DK20QNNHU694GCRJ7VJM4W527G1K1HYGSXXEDIYB6UA02BR77KITUXYBOEKDKS9OB9DPFEYGAO17PZZKJF2KYBCMO5I82Q8W6PWXQ7CBEKN0QTTTM9W6AF35XXZYORM1EUHQZSRG9RG1VV7YVR3JF4TI4RQL3878114JV8YJIOUF08FHO' where id=96; -update noar ti set v1='2EGQV6UVS25FQ05O6WOOW66G9DX1WHDP90DBIY0YFHJ0M8D3RTZ628VEYMLY69XVMWZVRCJLJX0TKEV2DK20QNNHU694GCRJ7VJM4W527G1K1HYGSXXEDIYB6UA02BR77KITUXYBOEKDKS9OB9DPFEYGAO17PZZKJF2KYBCMO5I82Q8W6PWXQ7CBEKN0QTTTM9W6AF35XXZYORM1EUHQZSRG9RG1VV7YVR3JF4TI4RQL3878114JV8YJIOUF08FHO' where id=96; -update noar tt set v2='8KCXVTPSXDWRKGYPOGVBWZW8XAZWQEHTAIYIBH6DBRYR61F7MCGMAM91GFM3JXUXNJZ3TA5BUCD4B6ZYYAGYEUZKA0XF8ANXZG2Z0NFDIVJSPLGDI2Z5PI5WW64DQZX0X8EG7B0LEVWVAUNZ0VRE8E5VJMTWTWNLDEA8MX13I2ZP4STC2V362YKHHUO85SSL3GUQELA4KA89FEUODU4Q5WS7GGGAM1YGKIOH0GLWOL11Q6S5Z9G3CGPEJO5Z6RSGY' where id=96; -update noar ti set v2='8KCXVTPSXDWRKGYPOGVBWZW8XAZWQEHTAIYIBH6DBRYR61F7MCGMAM91GFM3JXUXNJZ3TA5BUCD4B6ZYYAGYEUZKA0XF8ANXZG2Z0NFDIVJSPLGDI2Z5PI5WW64DQZX0X8EG7B0LEVWVAUNZ0VRE8E5VJMTWTWNLDEA8MX13I2ZP4STC2V362YKHHUO85SSL3GUQELA4KA89FEUODU4Q5WS7GGGAM1YGKIOH0GLWOL11Q6S5Z9G3CGPEJO5Z6RSGY' where id=96; -update noar tt set v3='OJ3S0HG0LPIMW4216CVP7Q33BT8Q0P88XPL1447M5YS59R64122ONV1N0EV3RPVKNIWC4NHTO1QL3O42Z6O0T86Q5HY2QG7ZKG5CFIRR289ULWVNBGUJYUZRE2YIHKQ9JPG5LTXRFQIVO3X96KOIW0K56VH3VKVO4MFQVIT5J68U58DHKKO4E6CRSIFU2EKZUQMTID93QCL26G3RYOC4SMDIWNSPV0I3FSV0NH8ZTT5HLHOV08YW63OWG29CI82GB' where id=96; -update noar ti set v3='OJ3S0HG0LPIMW4216CVP7Q33BT8Q0P88XPL1447M5YS59R64122ONV1N0EV3RPVKNIWC4NHTO1QL3O42Z6O0T86Q5HY2QG7ZKG5CFIRR289ULWVNBGUJYUZRE2YIHKQ9JPG5LTXRFQIVO3X96KOIW0K56VH3VKVO4MFQVIT5J68U58DHKKO4E6CRSIFU2EKZUQMTID93QCL26G3RYOC4SMDIWNSPV0I3FSV0NH8ZTT5HLHOV08YW63OWG29CI82GB' where id=96; -update noar tt set v0='OQ7GNF5TEE5DETEWY4YXA40M4HYDVPFH25YBKSXT21CN2CIHCP6KZU4A0TX4DPGTK6CP8ZE9JONP92LCD0IM3FVZ1HR0YG2XHRZMCBBBDSSVIP144XTQ164BCOYMPGKW4NNO4H0PH90IESD6DZMO71355J1B4E9LKO5K2TY9CMA8X8DH9YANVBZWTW0EC52SZGHN9X8O5NL85T5ITK33Y1GDBMYAZ2ZWQXB88XV0HIKR6QWB6PHAHF26ZEJF2DIXI' where id=97; -update noar ti set v0='OQ7GNF5TEE5DETEWY4YXA40M4HYDVPFH25YBKSXT21CN2CIHCP6KZU4A0TX4DPGTK6CP8ZE9JONP92LCD0IM3FVZ1HR0YG2XHRZMCBBBDSSVIP144XTQ164BCOYMPGKW4NNO4H0PH90IESD6DZMO71355J1B4E9LKO5K2TY9CMA8X8DH9YANVBZWTW0EC52SZGHN9X8O5NL85T5ITK33Y1GDBMYAZ2ZWQXB88XV0HIKR6QWB6PHAHF26ZEJF2DIXI' where id=97; -update noar tt set v1='SM1L8UU5DQY1A9M8V0Q49K7JKHILKLGOQPCNLMG221GEVGZ07TUPFDAZLZ3EUOGFDGW3RKW2X608IY9AWEGFMKMUGMN9KYW4PVHOS2I136RU53LWWISOJLABZWTAB19P66VODRM4USHX4FFBRFTXNK19SD4A9CIAIFRLTGLMJ958P14ZF1TAOFD6JFO70SB9CN8XTV2H43NW0JJ07T0AG7IGO8QX948W5AHBNNDM4HB8UQ982G9MIWNROM56CKD7F' where id=97; -update noar ti set v1='SM1L8UU5DQY1A9M8V0Q49K7JKHILKLGOQPCNLMG221GEVGZ07TUPFDAZLZ3EUOGFDGW3RKW2X608IY9AWEGFMKMUGMN9KYW4PVHOS2I136RU53LWWISOJLABZWTAB19P66VODRM4USHX4FFBRFTXNK19SD4A9CIAIFRLTGLMJ958P14ZF1TAOFD6JFO70SB9CN8XTV2H43NW0JJ07T0AG7IGO8QX948W5AHBNNDM4HB8UQ982G9MIWNROM56CKD7F' where id=97; -update noar tt set v2='7TXWVN1C04LBHE1JO7GZ2BNISUMCBQCL1CUIW5AQIIZZSLWSRNF4GZGZAGCQICI1Y9A58ZV59XGTRFEQTXSD66AWD8S0Y80ME0QV1WH4F1ZBZ3SBKKCVPW32CJCYDII3HCFVA2GDUJG670UVLT2BO9V0PD77GP5XIF28DP7NDRMJ53DY1F0ZF09CIJ2VLK71EFJHX0OWEOZ4LZJGG2KLSAD9TMCKBNT08Z4E7XBHG6784M5GF5KIBCYGC29REUUR8' where id=97; -update noar ti set v2='7TXWVN1C04LBHE1JO7GZ2BNISUMCBQCL1CUIW5AQIIZZSLWSRNF4GZGZAGCQICI1Y9A58ZV59XGTRFEQTXSD66AWD8S0Y80ME0QV1WH4F1ZBZ3SBKKCVPW32CJCYDII3HCFVA2GDUJG670UVLT2BO9V0PD77GP5XIF28DP7NDRMJ53DY1F0ZF09CIJ2VLK71EFJHX0OWEOZ4LZJGG2KLSAD9TMCKBNT08Z4E7XBHG6784M5GF5KIBCYGC29REUUR8' where id=97; -update noar tt set v3='3C5FU7HS2ALTSJ7X424SMIJQ4LMQKMHLJAU37JTMAARV587HDPTEA7J9ONL5G3MFWIC966KWYRXT53XLNKZ7CBLLKNU75VB74INOY7UNUNVWGQHVDGP72PF4ZBIDACTTB1MZX6UIFGI5DCCE6PYKYUHC3DSILGY2DWWMOOELH6JMEA9TZ8O99BXGOZ68IOM6P6TCO0YM5N9E6UWYJO8QEI467AHGHNOY7LKEO3NTLMXKK32OE6809XYLHW37END3L' where id=97; -update noar ti set v3='3C5FU7HS2ALTSJ7X424SMIJQ4LMQKMHLJAU37JTMAARV587HDPTEA7J9ONL5G3MFWIC966KWYRXT53XLNKZ7CBLLKNU75VB74INOY7UNUNVWGQHVDGP72PF4ZBIDACTTB1MZX6UIFGI5DCCE6PYKYUHC3DSILGY2DWWMOOELH6JMEA9TZ8O99BXGOZ68IOM6P6TCO0YM5N9E6UWYJO8QEI467AHGHNOY7LKEO3NTLMXKK32OE6809XYLHW37END3L' where id=97; -update noar tt set v0='O6TA79MCZWQ2NZNDDC2MSMS9G9OG8AC9WX4RL4DG9KBF0Y16571L2K0E25FA2UJHLK2F3I9TI7OB3H9UTZ4LL9A5SXA24RRUPLTBP4X9QETNJJ6BY52RZIKQHGHQC8BBCK6ZF08CKMPDBIBYND4T7MG569Y52MACO4VJJFFDZD2KE2Y8G6MJKAKMIFB9LMSGPTYAW0BDXRL50EQJUCQBT0U0TDQIONFII9BIBP4NIBPM5TAXIXJYWYQL7IB1S5FU3' where id=98; -update noar ti set v0='O6TA79MCZWQ2NZNDDC2MSMS9G9OG8AC9WX4RL4DG9KBF0Y16571L2K0E25FA2UJHLK2F3I9TI7OB3H9UTZ4LL9A5SXA24RRUPLTBP4X9QETNJJ6BY52RZIKQHGHQC8BBCK6ZF08CKMPDBIBYND4T7MG569Y52MACO4VJJFFDZD2KE2Y8G6MJKAKMIFB9LMSGPTYAW0BDXRL50EQJUCQBT0U0TDQIONFII9BIBP4NIBPM5TAXIXJYWYQL7IB1S5FU3' where id=98; -update noar tt set v1='UX8STJROHRKWVBKFCNB49AICJCPKRTRU3V29ILHOAOPVKNLFF58GJLIWQZMZH2RXZLOEUKVXFYXSIBY8KEAFNLEIL60VW9Z1ZJ78PU83OVAV8NQ2UE6GCUEGMULEW5X59DBVI1CT1TNPQLOKGY7MUQBEZ758MI54A4QPMC1QQLP7RG9D62G6PAWKJXHYQ3YJEIFLMW0P1AS25I5E9KDD7CGYCOVWNT9A6T60F9I0KOAZ91C1ZZIK5U6VZSURG2M0V' where id=98; -update noar ti set v1='UX8STJROHRKWVBKFCNB49AICJCPKRTRU3V29ILHOAOPVKNLFF58GJLIWQZMZH2RXZLOEUKVXFYXSIBY8KEAFNLEIL60VW9Z1ZJ78PU83OVAV8NQ2UE6GCUEGMULEW5X59DBVI1CT1TNPQLOKGY7MUQBEZ758MI54A4QPMC1QQLP7RG9D62G6PAWKJXHYQ3YJEIFLMW0P1AS25I5E9KDD7CGYCOVWNT9A6T60F9I0KOAZ91C1ZZIK5U6VZSURG2M0V' where id=98; -update noar tt set v2='MU30X8COOAX3ZGOKXZ4GUWJU5U23LDGFEU2DIGPQX64OADO8NB6G2S0ZA1YUZHK2KUNWZKPB7HKAA6439XWPIUU6POXET1IHSP0O5F5K59AFF00CCA8FIDYLIWFW6XNZHMPCZIHSI5NMZ9ODACTSXM8R6VLF1ZEMLVP45S3874W2IUBY6AUL2CEAEODBAB32JZUE2GZYRATN651OMUQZ8438D0AACQ7VTV3VTZYXHNKQVFDXC24XGSWRPM80HNFYC' where id=98; -update noar ti set v2='MU30X8COOAX3ZGOKXZ4GUWJU5U23LDGFEU2DIGPQX64OADO8NB6G2S0ZA1YUZHK2KUNWZKPB7HKAA6439XWPIUU6POXET1IHSP0O5F5K59AFF00CCA8FIDYLIWFW6XNZHMPCZIHSI5NMZ9ODACTSXM8R6VLF1ZEMLVP45S3874W2IUBY6AUL2CEAEODBAB32JZUE2GZYRATN651OMUQZ8438D0AACQ7VTV3VTZYXHNKQVFDXC24XGSWRPM80HNFYC' where id=98; -update noar tt set v3='4K0JDOCTLCYRE3DOBQMVV1BD2UQ5O6A9B6NSBGHN2W3B4ALQIAUFXGKHS7JLPSFQ127KQ4I8DEWVIDQTI39H8CU5LYX3S57LGAW2I95BS38MYV1WXNHZRM48SI85GLKS59P6DRFPN6MMYV497E4QPL4ORRWH9X15IUZMH3QLL7NZQERWN4FYUDKAWJ97KFB0L1PO1CA2J65Y481QZ5OWVD6D7HF8Q7DMAY2H1G858459YHUUXSOVP3A1RUOUFGRE2' where id=98; -update noar ti set v3='4K0JDOCTLCYRE3DOBQMVV1BD2UQ5O6A9B6NSBGHN2W3B4ALQIAUFXGKHS7JLPSFQ127KQ4I8DEWVIDQTI39H8CU5LYX3S57LGAW2I95BS38MYV1WXNHZRM48SI85GLKS59P6DRFPN6MMYV497E4QPL4ORRWH9X15IUZMH3QLL7NZQERWN4FYUDKAWJ97KFB0L1PO1CA2J65Y481QZ5OWVD6D7HF8Q7DMAY2H1G858459YHUUXSOVP3A1RUOUFGRE2' where id=98; -update noar tt set v0='1HD4FEZ6O89K9SIA7520LA3A2LHVNAC0013Y6QULNI84IN83Z6UTD5Z3MA9WVPRBAYOLO05B5ER1VH7B7KRHINK38SENRAZ67D4LCUVUID33WLDD5NEIISBD2ZO21IHWAVYOFAG9Q3LVCKM82NBKO9GTT4SUKPQ3QZBVVLRJRWIW8TLSCHBU8MREUH664MVIT6AFS8TQJN820UDKZYKAT8234995NJG9ZFT7TYJW8NAMP2G7JYN0A2G1ONIQQYDQD' where id=99; -update noar ti set v0='1HD4FEZ6O89K9SIA7520LA3A2LHVNAC0013Y6QULNI84IN83Z6UTD5Z3MA9WVPRBAYOLO05B5ER1VH7B7KRHINK38SENRAZ67D4LCUVUID33WLDD5NEIISBD2ZO21IHWAVYOFAG9Q3LVCKM82NBKO9GTT4SUKPQ3QZBVVLRJRWIW8TLSCHBU8MREUH664MVIT6AFS8TQJN820UDKZYKAT8234995NJG9ZFT7TYJW8NAMP2G7JYN0A2G1ONIQQYDQD' where id=99; -update noar tt set v1='GAE02TPZQYSWK1XC8AMMVY3AYJI2B40BLR9TZB1NAUBYHS2OD5ITZTRCBAS90YT6Y9H88PC3KZ0JG9RAV7HVFXMTEEQQOMARKNDPJB0GWK3ZWOY7UH2WVDJEQYU0BGLBCAYAUECYL1SUNSUECC5IRZL91O992Z5H308CMI56PTN76ZV1E99JM0M6YL5OKKZ4Q1SEXKNCAWAO5JP1CBKBU9CXMWT2HWHPHCXK3F4251JO1CSNYC3NO2N4L0G4E1JO0' where id=99; -update noar ti set v1='GAE02TPZQYSWK1XC8AMMVY3AYJI2B40BLR9TZB1NAUBYHS2OD5ITZTRCBAS90YT6Y9H88PC3KZ0JG9RAV7HVFXMTEEQQOMARKNDPJB0GWK3ZWOY7UH2WVDJEQYU0BGLBCAYAUECYL1SUNSUECC5IRZL91O992Z5H308CMI56PTN76ZV1E99JM0M6YL5OKKZ4Q1SEXKNCAWAO5JP1CBKBU9CXMWT2HWHPHCXK3F4251JO1CSNYC3NO2N4L0G4E1JO0' where id=99; -update noar tt set v2='CY0A4E4NBQ2ZS4CMBES53QSW0MQ1BWH8AZO9YV2OXIEZ5HOVMUAPMLMDRFR2CT0SKJMJ6SJN91NCFHUNGLE5MMMDMEGDJUX80PMIJH3XD5YADPPEE5QYLH9DOD2WX5KZ8344G1Q3YHNQHXJG3HRPJ0B5FAOYVVAD1FLSK7AYGJ1FYG7ZZB2OY94EKCKO916RHX4CRH52EH5YBR9V723Y8CN0K4TK7Z19SP2KHOH8YGK4SZ79CYSMRWONKS9ZQ8XD7' where id=99; -update noar ti set v2='CY0A4E4NBQ2ZS4CMBES53QSW0MQ1BWH8AZO9YV2OXIEZ5HOVMUAPMLMDRFR2CT0SKJMJ6SJN91NCFHUNGLE5MMMDMEGDJUX80PMIJH3XD5YADPPEE5QYLH9DOD2WX5KZ8344G1Q3YHNQHXJG3HRPJ0B5FAOYVVAD1FLSK7AYGJ1FYG7ZZB2OY94EKCKO916RHX4CRH52EH5YBR9V723Y8CN0K4TK7Z19SP2KHOH8YGK4SZ79CYSMRWONKS9ZQ8XD7' where id=99; -update noar tt set v3='DHMZ20B176AOGQAT1TJTAN6DSKYW7Y2C529037IC0ISEW2D6MV6JUKXSMA2IS577MR8IJ0G5ZZS7TYELKW3CFLH969W8IVFR2B9VZ3IYNSK8R4BOSJZGN2SK5MEKCYDVCQRXOTAJCYKO8TMI88VDCNJBH5EDC3AKYUMQEYM1I2YTYBCF1HO6R5JHYR4T8IM5ICZ8AN7DM19LY6F0E9I0Y9WCLJ57R216J7DY1VBNOV8S9SCRDNEGN85W7K8JMI83F' where id=99; -update noar ti set v3='DHMZ20B176AOGQAT1TJTAN6DSKYW7Y2C529037IC0ISEW2D6MV6JUKXSMA2IS577MR8IJ0G5ZZS7TYELKW3CFLH969W8IVFR2B9VZ3IYNSK8R4BOSJZGN2SK5MEKCYDVCQRXOTAJCYKO8TMI88VDCNJBH5EDC3AKYUMQEYM1I2YTYBCF1HO6R5JHYR4T8IM5ICZ8AN7DM19LY6F0E9I0Y9WCLJ57R216J7DY1VBNOV8S9SCRDNEGN85W7K8JMI83F' where id=99; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - f0 int not null, - v0 varchar(256) not null, - v1 varchar(256) not null, - v2 varchar(256) not null, - v3 varchar(256) not null, - b0 text not null -) engine=tokudb; -insert into tt values (1,2,'a','b','c','d','e'); -insert into tt values (2,3,'','','','',''); -insert into tt values (3,4,'','','','',''); -insert into tt values (4,5,'','','','',''); -insert into tt values (5,6,'','','','',''); -insert into tt values (6,7,'','','','',''); -insert into tt values (7,8,'','','','',''); -insert into tt values (8,9,'','','','',''); -insert into tt values (9,10,'','','','',''); -insert into tt values (10,11,'','','','',''); -insert into tt values (11,12,'','','','',''); -insert into tt values (12,13,'','','','',''); -insert into tt values (13,14,'','','','',''); -insert into tt values (14,15,'','','','',''); -insert into tt values (15,16,'','','','',''); -insert into tt values (16,17,'','','','',''); -insert into tt values (17,18,'','','','',''); -insert into tt values (18,19,'','','','',''); -insert into tt values (19,20,'','','','',''); -insert into tt values (20,21,'','','','',''); -insert into tt values (21,22,'','','','',''); -insert into tt values (22,23,'','','','',''); -insert into tt values (23,24,'','','','',''); -insert into tt values (24,25,'','','','',''); -insert into tt values (25,26,'','','','',''); -insert into tt values (26,27,'','','','',''); -insert into tt values (27,28,'','','','',''); -insert into tt values (28,29,'','','','',''); -insert into tt values (29,30,'','','','',''); -insert into tt values (30,31,'','','','',''); -insert into tt values (31,32,'','','','',''); -insert into tt values (32,33,'','','','',''); -insert into tt values (33,34,'','','','',''); -insert into tt values (34,35,'','','','',''); -insert into tt values (35,36,'','','','',''); -insert into tt values (36,37,'','','','',''); -insert into tt values (37,38,'','','','',''); -insert into tt values (38,39,'','','','',''); -insert into tt values (39,40,'','','','',''); -insert into tt values (40,41,'','','','',''); -insert into tt values (41,42,'','','','',''); -insert into tt values (42,43,'','','','',''); -insert into tt values (43,44,'','','','',''); -insert into tt values (44,45,'','','','',''); -insert into tt values (45,46,'','','','',''); -insert into tt values (46,47,'','','','',''); -insert into tt values (47,48,'','','','',''); -insert into tt values (48,49,'','','','',''); -insert into tt values (49,50,'','','','',''); -insert into tt values (50,51,'','','','',''); -insert into tt values (51,52,'','','','',''); -insert into tt values (52,53,'','','','',''); -insert into tt values (53,54,'','','','',''); -insert into tt values (54,55,'','','','',''); -insert into tt values (55,56,'','','','',''); -insert into tt values (56,57,'','','','',''); -insert into tt values (57,58,'','','','',''); -insert into tt values (58,59,'','','','',''); -insert into tt values (59,60,'','','','',''); -insert into tt values (60,61,'','','','',''); -insert into tt values (61,62,'','','','',''); -insert into tt values (62,63,'','','','',''); -insert into tt values (63,64,'','','','',''); -insert into tt values (64,65,'','','','',''); -insert into tt values (65,66,'','','','',''); -insert into tt values (66,67,'','','','',''); -insert into tt values (67,68,'','','','',''); -insert into tt values (68,69,'','','','',''); -insert into tt values (69,70,'','','','',''); -insert into tt values (70,71,'','','','',''); -insert into tt values (71,72,'','','','',''); -insert into tt values (72,73,'','','','',''); -insert into tt values (73,74,'','','','',''); -insert into tt values (74,75,'','','','',''); -insert into tt values (75,76,'','','','',''); -insert into tt values (76,77,'','','','',''); -insert into tt values (77,78,'','','','',''); -insert into tt values (78,79,'','','','',''); -insert into tt values (79,80,'','','','',''); -insert into tt values (80,81,'','','','',''); -insert into tt values (81,82,'','','','',''); -insert into tt values (82,83,'','','','',''); -insert into tt values (83,84,'','','','',''); -insert into tt values (84,85,'','','','',''); -insert into tt values (85,86,'','','','',''); -insert into tt values (86,87,'','','','',''); -insert into tt values (87,88,'','','','',''); -insert into tt values (88,89,'','','','',''); -insert into tt values (89,90,'','','','',''); -insert into tt values (90,91,'','','','',''); -insert into tt values (91,92,'','','','',''); -insert into tt values (92,93,'','','','',''); -insert into tt values (93,94,'','','','',''); -insert into tt values (94,95,'','','','',''); -insert into tt values (95,96,'','','','',''); -insert into tt values (96,97,'','','','',''); -insert into tt values (97,98,'','','','',''); -insert into tt values (98,99,'','','','',''); -insert into tt values (99,100,'','','','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='null this 0' where id=0; -update noar ti set v0='null this 0' where id=0; -update noar tt set v1='null is 1' where id=0; -update noar ti set v1='null is 1' where id=0; -update noar tt set v2='null a 2' where id=0; -update noar ti set v2='null a 2' where id=0; -update noar tt set v3='null test 3' where id=0; -update noar ti set v3='null test 3' where id=0; -update noar tt set v0='this 0' where id=1; -update noar ti set v0='this 0' where id=1; -update noar tt set v1='is 1' where id=1; -update noar ti set v1='is 1' where id=1; -update noar tt set v2='another 2' where id=1; -update noar ti set v2='another 2' where id=1; -update noar tt set v3='test 3' where id=1; -update noar ti set v3='test 3' where id=1; -update noar tt set v0='F1A4JJ8LKGDMODWDFFQJT0QRKHWDIGKFJ9QPFOTEY6X8EG2IXY805D96ARABV5HW92N6F2J6RXIVPV6TOFTYP9BSVQRNMPMBKAEFJT5RZDNGLZDVP0DDZ6U6SONSC27TKAQRTEN9A0TQ6RP0HEWN3NFXUKVEM37CXEEHU0H3BLJARM7CSB31RTWDE3WHYEKYR905WCQQ9AXC1ZKAR59IYGQVFX164TW10BEL3JJVJBECFZ91SJXZSRPE7H4ZAXUB7' where id=2; -update noar ti set v0='F1A4JJ8LKGDMODWDFFQJT0QRKHWDIGKFJ9QPFOTEY6X8EG2IXY805D96ARABV5HW92N6F2J6RXIVPV6TOFTYP9BSVQRNMPMBKAEFJT5RZDNGLZDVP0DDZ6U6SONSC27TKAQRTEN9A0TQ6RP0HEWN3NFXUKVEM37CXEEHU0H3BLJARM7CSB31RTWDE3WHYEKYR905WCQQ9AXC1ZKAR59IYGQVFX164TW10BEL3JJVJBECFZ91SJXZSRPE7H4ZAXUB7' where id=2; -update noar tt set v1='90OGLWTNU84GEJCCGT0MXPY6WK7YULXN59QPRN31RC0KS3PC81SGK7NPNFAW528FTJXQDIONDTWJM5RYXC125KPMLQU6FK689HD6E0UJOAF0YYNMJMKU3N6LCK4NTRSZI2QFMHXS86ZR1PIDCXTCJNKH29UW1NCAOE4Y44RQC0X37IV2ZM0XL8CCK4BNTYYXI5OGAMNI25OHMHHY4J5O6MMFDXCEUK3749JH4EY0MU0MWDEC487H6RZUPJ0SN1L7O' where id=2; -update noar ti set v1='90OGLWTNU84GEJCCGT0MXPY6WK7YULXN59QPRN31RC0KS3PC81SGK7NPNFAW528FTJXQDIONDTWJM5RYXC125KPMLQU6FK689HD6E0UJOAF0YYNMJMKU3N6LCK4NTRSZI2QFMHXS86ZR1PIDCXTCJNKH29UW1NCAOE4Y44RQC0X37IV2ZM0XL8CCK4BNTYYXI5OGAMNI25OHMHHY4J5O6MMFDXCEUK3749JH4EY0MU0MWDEC487H6RZUPJ0SN1L7O' where id=2; -update noar tt set v2='5QCB9PASK9MVP5B5UZHYJJF2CUGL803ZRY9BMKOC2Z6074AMFMFYZ758J4NBTNMS07L16M2UDJ2KUKE03I8ISC9KW2PN4EW2HH6YNEGYIZJI73BAZQNKAJ0ERLCO119WHIN8GIYMAGKSLC52DNN9WXHU4CVYCRGLITNNC1T5A4WCUMLIG49R2TRGW5L647J8SF405L3E38VLA9YRWXOKUGBKFORY75ZOESKWWFID7ULC9PG4YD3EDH5VILUW5DBY5' where id=2; -update noar ti set v2='5QCB9PASK9MVP5B5UZHYJJF2CUGL803ZRY9BMKOC2Z6074AMFMFYZ758J4NBTNMS07L16M2UDJ2KUKE03I8ISC9KW2PN4EW2HH6YNEGYIZJI73BAZQNKAJ0ERLCO119WHIN8GIYMAGKSLC52DNN9WXHU4CVYCRGLITNNC1T5A4WCUMLIG49R2TRGW5L647J8SF405L3E38VLA9YRWXOKUGBKFORY75ZOESKWWFID7ULC9PG4YD3EDH5VILUW5DBY5' where id=2; -update noar tt set v3='G69FMB3WF75OUZG57JPZY6H56YU6BBB6A0YE534H89CVJEIHJVP45LE50A08D4JFJ05ZK6XTH1BTZ5T55F1LPQC1G3B50YUYA6364QMI7PWQ61MPUW33DPAMTAWR0GUULCC14SMC5DXNGVI3PBEFUBQ3HSO5CX8X76IGWPWGZ032S5QQATI7YZ34TV1URJHLZKKT4EI45Q49KGT7DCWT75WRNO8TZRNVWQKU06A2R49IX3AGU9DBSUMXPNPMKE3NZ' where id=2; -update noar ti set v3='G69FMB3WF75OUZG57JPZY6H56YU6BBB6A0YE534H89CVJEIHJVP45LE50A08D4JFJ05ZK6XTH1BTZ5T55F1LPQC1G3B50YUYA6364QMI7PWQ61MPUW33DPAMTAWR0GUULCC14SMC5DXNGVI3PBEFUBQ3HSO5CX8X76IGWPWGZ032S5QQATI7YZ34TV1URJHLZKKT4EI45Q49KGT7DCWT75WRNO8TZRNVWQKU06A2R49IX3AGU9DBSUMXPNPMKE3NZ' where id=2; -update noar tt set v0='ALSZON21LN9TENN7FXZSZQPS5LI1YZTQYEIXWKXW77MJLIBZZ86SE51YD8JAG9OCZ9G8EH9IL73XNVNRWGCFOLAWA6C8TNIMBZWC8NXU7KXSXHGQH1LY865H4FOFCIKLSCSJK02SK4FPXEYN7UNRZWPQEEFXO2MS2IIQ7YX6KP2DU31F9YJSVKJS3MD56VVI3N4GN5Z2RKTBBMUHEKJYMVKPHW4BTWYAS1SNWYBUMGVXCZZIUYCUQ6W316H73QV4D' where id=3; -update noar ti set v0='ALSZON21LN9TENN7FXZSZQPS5LI1YZTQYEIXWKXW77MJLIBZZ86SE51YD8JAG9OCZ9G8EH9IL73XNVNRWGCFOLAWA6C8TNIMBZWC8NXU7KXSXHGQH1LY865H4FOFCIKLSCSJK02SK4FPXEYN7UNRZWPQEEFXO2MS2IIQ7YX6KP2DU31F9YJSVKJS3MD56VVI3N4GN5Z2RKTBBMUHEKJYMVKPHW4BTWYAS1SNWYBUMGVXCZZIUYCUQ6W316H73QV4D' where id=3; -update noar tt set v1='6DAK7KZC3URTIR620Z1YNDZBDKOTZICKZNAQV44QE9WXPR1Q3ZC5PRBE1KIA2HFMHPAXR0LSEMZVJRZ5YJOFCGEC9BX5NS15YDQ5GZ78VIIFLQLF00WP7H6ZV9A256FVVNFI79ZJ9ZOGP3XXFIVUTJXO7AIYH9JMTA9AFLB6PWNGPY0HD45BJCRNATAW799B48PFEC7JT4YHZ4DSBV392QMYC2YC7L5Z1LYK59G5E2IDQQIQ8L6IKNCV60P3OMNZL' where id=3; -update noar ti set v1='6DAK7KZC3URTIR620Z1YNDZBDKOTZICKZNAQV44QE9WXPR1Q3ZC5PRBE1KIA2HFMHPAXR0LSEMZVJRZ5YJOFCGEC9BX5NS15YDQ5GZ78VIIFLQLF00WP7H6ZV9A256FVVNFI79ZJ9ZOGP3XXFIVUTJXO7AIYH9JMTA9AFLB6PWNGPY0HD45BJCRNATAW799B48PFEC7JT4YHZ4DSBV392QMYC2YC7L5Z1LYK59G5E2IDQQIQ8L6IKNCV60P3OMNZL' where id=3; -update noar tt set v2='3FJ9WJEKSA70H1TUF49LYQO14FOTKJADPQD7CNQUV2HFL8MASEID8PQQTB3H8ZZQSS6ORMJ9O4H6BV161LW3DS3PYCEMWYMDEPPCLDZEJHP0SDSLZATKY3AB299AFWM6ZU8Q8Y2KVII35SGLJSA0CRY6MXMD1YWOK0WH5ZMVA7QSRCKQLJ8QE77Z7EFMI2VW1JQE5M8RD525PEQ4MXZXJNRZGUPGYV3JYC00K24RJ28Z0QL6GUYOSW55IH3MRBO9H' where id=3; -update noar ti set v2='3FJ9WJEKSA70H1TUF49LYQO14FOTKJADPQD7CNQUV2HFL8MASEID8PQQTB3H8ZZQSS6ORMJ9O4H6BV161LW3DS3PYCEMWYMDEPPCLDZEJHP0SDSLZATKY3AB299AFWM6ZU8Q8Y2KVII35SGLJSA0CRY6MXMD1YWOK0WH5ZMVA7QSRCKQLJ8QE77Z7EFMI2VW1JQE5M8RD525PEQ4MXZXJNRZGUPGYV3JYC00K24RJ28Z0QL6GUYOSW55IH3MRBO9H' where id=3; -update noar tt set v3='LMLAZ2Y3778S6GP3PKFGMJ965OE7DACKJZB8WUUXUD0KO2SX49KZOBYNRKMC3FSONUR4YDEQ44M3SHKVZV69MWL1FHCROQE8KC76XOMPMNDRKG1VEMUQLN16I7Z09GF20FVSYM1LRL235W0F7ABYPWN3HX9T8RO56JV6W5M2WY97MLTYKBNF2M3DNVQTXM0I2095CK4YYSQ3UWJZ5DWA2W7IZ5ZUVIXBC5TZF41XD3BK5EQ50KCQKVPPZWHPDWTDX' where id=3; -update noar ti set v3='LMLAZ2Y3778S6GP3PKFGMJ965OE7DACKJZB8WUUXUD0KO2SX49KZOBYNRKMC3FSONUR4YDEQ44M3SHKVZV69MWL1FHCROQE8KC76XOMPMNDRKG1VEMUQLN16I7Z09GF20FVSYM1LRL235W0F7ABYPWN3HX9T8RO56JV6W5M2WY97MLTYKBNF2M3DNVQTXM0I2095CK4YYSQ3UWJZ5DWA2W7IZ5ZUVIXBC5TZF41XD3BK5EQ50KCQKVPPZWHPDWTDX' where id=3; -update noar tt set v0='3TXRH3RKN5QX9QH6UTXAX90FO1KT5E6RQ5YQ0Z0M029DD17ED4UITV9WBSJVJARID1XOP0BGGP4N1TN8RNXX9611YP5ZO9RBEAEHLONS7G3C5XHDYBIBW5H8K0EHP8IV4HJFRE9C4IPVY76K7XTKXK80ZOUNEC58KXPCZ0F4B8FI3O9MSYFDDY2ZRSB9XUWEC3ZMJ75OW8IJLYY6KL8KAT96PE0BMAD7F1FG6PDN9QRYNVO6EAG0QXTTT6XLEE8KA' where id=4; -update noar ti set v0='3TXRH3RKN5QX9QH6UTXAX90FO1KT5E6RQ5YQ0Z0M029DD17ED4UITV9WBSJVJARID1XOP0BGGP4N1TN8RNXX9611YP5ZO9RBEAEHLONS7G3C5XHDYBIBW5H8K0EHP8IV4HJFRE9C4IPVY76K7XTKXK80ZOUNEC58KXPCZ0F4B8FI3O9MSYFDDY2ZRSB9XUWEC3ZMJ75OW8IJLYY6KL8KAT96PE0BMAD7F1FG6PDN9QRYNVO6EAG0QXTTT6XLEE8KA' where id=4; -update noar tt set v1='V5NGOE1M02EFOTRJ4TDHKEXACA9T6RCFIHMTESJ3AGB3A8OSOBBI38NIIRS1RWGB88JROKZ5AJ2DOQGRQXTW9YRHY1KMVLJVG9LAYXC5LYF8QYAM4QLX90X7EQB13MNKBF5D6GKXJQNK7QR6XO9O42EE4V5V1J4DC9Q2PFAGP64G70085257H1ZOWIKEJ5QZ7M1IK0CQOS9BLBX8ZYWWG541YM5CFTZVIIXJ6CBR89ZHHE0G98C9MGYS9O9A34NP0' where id=4; -update noar ti set v1='V5NGOE1M02EFOTRJ4TDHKEXACA9T6RCFIHMTESJ3AGB3A8OSOBBI38NIIRS1RWGB88JROKZ5AJ2DOQGRQXTW9YRHY1KMVLJVG9LAYXC5LYF8QYAM4QLX90X7EQB13MNKBF5D6GKXJQNK7QR6XO9O42EE4V5V1J4DC9Q2PFAGP64G70085257H1ZOWIKEJ5QZ7M1IK0CQOS9BLBX8ZYWWG541YM5CFTZVIIXJ6CBR89ZHHE0G98C9MGYS9O9A34NP0' where id=4; -update noar tt set v2='8D07CWZF6LFP35FZRMBY4XSCS2T8VRU35DJHOOZB623NA0BDWJH0GV5ZXBB6C5MO4WOYMYDIP7MORXEHT0RKK9FJ98TA5X47CSZ89WTS5H3SYBNKX2O18L2QXS7NPKDC4G63XL5UL13OQIB5UBC17GH8UTNFPXU9T90OE5EM9GOQTRA5Q24NKFZLYL37R5WT54BJZ0U0RBR3SPDO3JRSJRC35LPHFU7YU8K1Q7MHXE38I59EDNUCS7CA6YMR6M2EF' where id=4; -update noar ti set v2='8D07CWZF6LFP35FZRMBY4XSCS2T8VRU35DJHOOZB623NA0BDWJH0GV5ZXBB6C5MO4WOYMYDIP7MORXEHT0RKK9FJ98TA5X47CSZ89WTS5H3SYBNKX2O18L2QXS7NPKDC4G63XL5UL13OQIB5UBC17GH8UTNFPXU9T90OE5EM9GOQTRA5Q24NKFZLYL37R5WT54BJZ0U0RBR3SPDO3JRSJRC35LPHFU7YU8K1Q7MHXE38I59EDNUCS7CA6YMR6M2EF' where id=4; -update noar tt set v3='ZKGAA6FDKPFY3SJ5QD9IR1QZNQSRN6OOT0X2PT938OREUVK36H0SMWU43RA5FRPFUXFMKMJV11ZON7PMOVOL2TIIL0O6P0CANLMZMYXNVQ3WZ7GL1CJE7872AGOZR43GI46JDAT9UHTZOULOWB7QS63H3ZABOUTLI38Z1TO091DA0KY0HOT37XJIMA63S6LLQ0JSMJU7D5SW5RWRZLGWRDMIBHS5I3V8KW6MJ44AURJKHSGC5L4SUHLUZTUJ0HYRP' where id=4; -update noar ti set v3='ZKGAA6FDKPFY3SJ5QD9IR1QZNQSRN6OOT0X2PT938OREUVK36H0SMWU43RA5FRPFUXFMKMJV11ZON7PMOVOL2TIIL0O6P0CANLMZMYXNVQ3WZ7GL1CJE7872AGOZR43GI46JDAT9UHTZOULOWB7QS63H3ZABOUTLI38Z1TO091DA0KY0HOT37XJIMA63S6LLQ0JSMJU7D5SW5RWRZLGWRDMIBHS5I3V8KW6MJ44AURJKHSGC5L4SUHLUZTUJ0HYRP' where id=4; -update noar tt set v0='UZTRANH93975WQMILZ2MUN6R4MZQ73UGRQYWDHD088I2ORRH7UC6ZEIRN6G0PUASQNROBYN2WION2W9IXA25D2RY0RCK7WF9XPZ41QNN2U56T5WFSZI7NFH81QZT80JZ3HXHN16L64SPGU373IS1XTMT9O1OLWQ7KYMUO2ZRT8X8UUFS9NPEVXE7X0NDF4UZ7D5SJNI2D5VAEWMSL4S2I18GWAJQE4YJHRBQ04FWYNMR73QX74Z96BH44T4T51YEC' where id=5; -update noar ti set v0='UZTRANH93975WQMILZ2MUN6R4MZQ73UGRQYWDHD088I2ORRH7UC6ZEIRN6G0PUASQNROBYN2WION2W9IXA25D2RY0RCK7WF9XPZ41QNN2U56T5WFSZI7NFH81QZT80JZ3HXHN16L64SPGU373IS1XTMT9O1OLWQ7KYMUO2ZRT8X8UUFS9NPEVXE7X0NDF4UZ7D5SJNI2D5VAEWMSL4S2I18GWAJQE4YJHRBQ04FWYNMR73QX74Z96BH44T4T51YEC' where id=5; -update noar tt set v1='D50S6RHBKH1MMTFNNHTC77UIYI18ELNVWR795GI0NM9O8WS06XNALDTXAQFKQRYZSREW2X75N1PKMY4GYZQMQKJ83ZS7TNJ908ICBHWDRF7AN9IJWGX7F7FFSQRJJ1XIJJ861FVMLN7D9N06UBVILS4HLGVDVC5H6BZE5HM2ZAP3OUTCP89CB5TGXUK96YL7OPWDH2AP6PP2A85G7O4ZTQNLH1TI1WX7ZQXL4XBXDQOR6KY8UI49DLHM8SNHW3563' where id=5; -update noar ti set v1='D50S6RHBKH1MMTFNNHTC77UIYI18ELNVWR795GI0NM9O8WS06XNALDTXAQFKQRYZSREW2X75N1PKMY4GYZQMQKJ83ZS7TNJ908ICBHWDRF7AN9IJWGX7F7FFSQRJJ1XIJJ861FVMLN7D9N06UBVILS4HLGVDVC5H6BZE5HM2ZAP3OUTCP89CB5TGXUK96YL7OPWDH2AP6PP2A85G7O4ZTQNLH1TI1WX7ZQXL4XBXDQOR6KY8UI49DLHM8SNHW3563' where id=5; -update noar tt set v2='O3AB3AX19SHAPTYGPEP7CGJC7P22KJ4GF65U63IE9VGB41GPDQBSCH3I87KFPGEZB2OSC80WNV0186M9YU4NZVC36WUA4DDS6H4QHRNWM1IPUJTU84E4G6HMN4NQZMLJ2XVCQVN00JPAIHHAIK0OUXKT47HM62116K6MMPDBJE65LT7Z94ZHQ2A9V34G43MYWXK88O8ZTVF2M7TS69KAPBM45ELX8DWDCL5CH5NKFH2U8S8XLI5D0XPLICKODKV6D' where id=5; -update noar ti set v2='O3AB3AX19SHAPTYGPEP7CGJC7P22KJ4GF65U63IE9VGB41GPDQBSCH3I87KFPGEZB2OSC80WNV0186M9YU4NZVC36WUA4DDS6H4QHRNWM1IPUJTU84E4G6HMN4NQZMLJ2XVCQVN00JPAIHHAIK0OUXKT47HM62116K6MMPDBJE65LT7Z94ZHQ2A9V34G43MYWXK88O8ZTVF2M7TS69KAPBM45ELX8DWDCL5CH5NKFH2U8S8XLI5D0XPLICKODKV6D' where id=5; -update noar tt set v3='KCTSSV8ISNBEAFKDGD86F4QCW1MJ09VSJPS1WM10S9I5H3U0URKWJPK8GKH18EVHJ2UFL1POO6O9DAM6DAPI95A5BHU0D85EGMDKQVHPTJZ7CQ2421LM5FI0B16GTVHLM2PU004XTSTIIZ11WVXWHJYWPCXYGY0T4PQHOVICTYL9C8MDW0EYDZV3A0DFI7NNYCCEF3IFFCUV8UVVH1GQTX83GGI0AQVDKLD172GEURRJX6UFCW8J5SQHK8DTB7D0I' where id=5; -update noar ti set v3='KCTSSV8ISNBEAFKDGD86F4QCW1MJ09VSJPS1WM10S9I5H3U0URKWJPK8GKH18EVHJ2UFL1POO6O9DAM6DAPI95A5BHU0D85EGMDKQVHPTJZ7CQ2421LM5FI0B16GTVHLM2PU004XTSTIIZ11WVXWHJYWPCXYGY0T4PQHOVICTYL9C8MDW0EYDZV3A0DFI7NNYCCEF3IFFCUV8UVVH1GQTX83GGI0AQVDKLD172GEURRJX6UFCW8J5SQHK8DTB7D0I' where id=5; -update noar tt set v0='RSIY4CQGK91NEH3B7MOBI83MS13EUKLJVM1K778UZT8FOC59JE6D7EVCYO3ASNIJQVGYHV3W5IOD14NZ76CSNSX63ZHLDROE258H0IBGCYNZKLMG7SML7WTBBEEMUDVQ1JS7ZDJ7KZAFKQP6IAR2B0FSH14OFA5OD0RMYR1P2OQBK863I6ISGSY2QLLDOR9HH289JLYBXNGGIJS9E5SET8LHG28BGCI2NP0VIMGPAN5T2PTS5U629A5MN44USRSWJ' where id=6; -update noar ti set v0='RSIY4CQGK91NEH3B7MOBI83MS13EUKLJVM1K778UZT8FOC59JE6D7EVCYO3ASNIJQVGYHV3W5IOD14NZ76CSNSX63ZHLDROE258H0IBGCYNZKLMG7SML7WTBBEEMUDVQ1JS7ZDJ7KZAFKQP6IAR2B0FSH14OFA5OD0RMYR1P2OQBK863I6ISGSY2QLLDOR9HH289JLYBXNGGIJS9E5SET8LHG28BGCI2NP0VIMGPAN5T2PTS5U629A5MN44USRSWJ' where id=6; -update noar tt set v1='9KVIHILYRAKCJ38ZXUXD886V4YVFBNTBCTZG7PDBDQM1RVO578WHZ5LP1RZ9ZYCPM1SMJ6KUVS1TUCCMMBDAM1MTOG6EBSL89576EYTCOWNK0HAPENKFHQO6ONYJO6LZ0H3WYL2WJYUN0YDWI4LGXDW7G9OBWA2LGWZDRICC9135CBHV0HDH8ATGZ6Z62KMIDYZXUSG04WJ2UDY2QQZTJMYSTLCXI05KNSILHXETOZM3GDYBOLVBUWX2FT4T8W3N7' where id=6; -update noar ti set v1='9KVIHILYRAKCJ38ZXUXD886V4YVFBNTBCTZG7PDBDQM1RVO578WHZ5LP1RZ9ZYCPM1SMJ6KUVS1TUCCMMBDAM1MTOG6EBSL89576EYTCOWNK0HAPENKFHQO6ONYJO6LZ0H3WYL2WJYUN0YDWI4LGXDW7G9OBWA2LGWZDRICC9135CBHV0HDH8ATGZ6Z62KMIDYZXUSG04WJ2UDY2QQZTJMYSTLCXI05KNSILHXETOZM3GDYBOLVBUWX2FT4T8W3N7' where id=6; -update noar tt set v2='HOZ5NVZDAKYR1AUE70K5JN2N0WIF9RKLU0CIZOOQMJ0VD4UWAY3CDGEXYC3P9N5WIN6AAXZIS8OHZER2UAG24EA8X0J0HDTVI9LYG94SX3HW2V4LFLKE2XVRB9ZCZAOALVO4XHBXAALJ0R2JLSPUJ5D1WRCRJ2X82BGSEUAMQR5U9Z1WZU1L5V9HCSLGI5BDTMNJ0QLPPWRBGDUNCGLBEWQAIZC07O4S4GO1HAIXGUV0OC9YHOCNJSP0EAMBQBMYG' where id=6; -update noar ti set v2='HOZ5NVZDAKYR1AUE70K5JN2N0WIF9RKLU0CIZOOQMJ0VD4UWAY3CDGEXYC3P9N5WIN6AAXZIS8OHZER2UAG24EA8X0J0HDTVI9LYG94SX3HW2V4LFLKE2XVRB9ZCZAOALVO4XHBXAALJ0R2JLSPUJ5D1WRCRJ2X82BGSEUAMQR5U9Z1WZU1L5V9HCSLGI5BDTMNJ0QLPPWRBGDUNCGLBEWQAIZC07O4S4GO1HAIXGUV0OC9YHOCNJSP0EAMBQBMYG' where id=6; -update noar tt set v3='KHDTOKKYJDGD0O41TB01KS8GGC7EL5TCGJPSU5HK5YPYIUCTE4RU2N4ACPJCRGCM94GW29IYRFPJIOKD4AG88WXZLMW37DY3PMPE2S2SCBKQJ0ZCF0BR6VGG45XTSHXPTZX0P24FQIW3RLPPETZ7IBAXL2JQI3NAQ9TESMEEUD1N81Z7PAY8IKQSJU6GNLHNNS09D5DL6MDRGO4ZACVKBM2JV9O2W5YULQMMWQ48ZXNSLTXVR14CNHMU1RO7P10KU' where id=6; -update noar ti set v3='KHDTOKKYJDGD0O41TB01KS8GGC7EL5TCGJPSU5HK5YPYIUCTE4RU2N4ACPJCRGCM94GW29IYRFPJIOKD4AG88WXZLMW37DY3PMPE2S2SCBKQJ0ZCF0BR6VGG45XTSHXPTZX0P24FQIW3RLPPETZ7IBAXL2JQI3NAQ9TESMEEUD1N81Z7PAY8IKQSJU6GNLHNNS09D5DL6MDRGO4ZACVKBM2JV9O2W5YULQMMWQ48ZXNSLTXVR14CNHMU1RO7P10KU' where id=6; -update noar tt set v0='LHM6SC7V983AQONHQU2KCHOWL4QRC0DFXB3YA3OOOZKJJ0BRQDAUWYA4VKLIU0CVC9RADQMJVEAWWUIE87QX6AM73FLTG8CLUX7COHTK4H6L0GJ1PQE0XA9KRKLQHESS0AIFSQLYB273Z20MP6WIHVJUKZ9NAZ982WCQ7W324DQIOGNSCK92ZQP493QDK5B4FEP97OYRNV2KAVV6IOFXR3UMPYN3DNV3E9U804E2R8NBJL5F0N0W4ER37YDL826X2' where id=7; -update noar ti set v0='LHM6SC7V983AQONHQU2KCHOWL4QRC0DFXB3YA3OOOZKJJ0BRQDAUWYA4VKLIU0CVC9RADQMJVEAWWUIE87QX6AM73FLTG8CLUX7COHTK4H6L0GJ1PQE0XA9KRKLQHESS0AIFSQLYB273Z20MP6WIHVJUKZ9NAZ982WCQ7W324DQIOGNSCK92ZQP493QDK5B4FEP97OYRNV2KAVV6IOFXR3UMPYN3DNV3E9U804E2R8NBJL5F0N0W4ER37YDL826X2' where id=7; -update noar tt set v1='90XPBAT7BYYDYFB49JHZX76W9VCYKPNAZMOW39OS2EWRO9NXFKO7TPGJ5RQUP94FXZPPRLRXUHOPL7X767PKO3I3CJEL7C96GQK3RCB3XEGT5M93O5TMVIU5B78YEJSO8PLF5I3AO9HJL99Y8MW75ZXDVHAKMKAF4G6KAGIV0LGMMPIS8D5JMR6H87OZ2S6CTWZM4C1GJEB5JQD5G1EHZY99MUSNT9W6KQ3I121T0MBDH18G0SD3168H6Z9H2GA2T' where id=7; -update noar ti set v1='90XPBAT7BYYDYFB49JHZX76W9VCYKPNAZMOW39OS2EWRO9NXFKO7TPGJ5RQUP94FXZPPRLRXUHOPL7X767PKO3I3CJEL7C96GQK3RCB3XEGT5M93O5TMVIU5B78YEJSO8PLF5I3AO9HJL99Y8MW75ZXDVHAKMKAF4G6KAGIV0LGMMPIS8D5JMR6H87OZ2S6CTWZM4C1GJEB5JQD5G1EHZY99MUSNT9W6KQ3I121T0MBDH18G0SD3168H6Z9H2GA2T' where id=7; -update noar tt set v2='NP8HYW41BNEOI62AMBSV3QL86Q4TR7W8N96HDTXKCOEFFV9OCCB0WP4LME8TUGZ0CO7JNV8HVTH1IVGNJZ7SSRSP18BN8XQ391G6WVI04RTNLYMDTQ823KH72CQWG407HSOEEQ7TI0BK1RJ7OUVX5U0YLLTEMCDMF08T3O4VR9DT4CH9I8NRSCJD7DU3XR5SRKK12519USN2IHHC0F8NNZWQU6B8E4CAIO3XCDFDDJWQYL1Z82Z0DVEI4TIFB6IYQ' where id=7; -update noar ti set v2='NP8HYW41BNEOI62AMBSV3QL86Q4TR7W8N96HDTXKCOEFFV9OCCB0WP4LME8TUGZ0CO7JNV8HVTH1IVGNJZ7SSRSP18BN8XQ391G6WVI04RTNLYMDTQ823KH72CQWG407HSOEEQ7TI0BK1RJ7OUVX5U0YLLTEMCDMF08T3O4VR9DT4CH9I8NRSCJD7DU3XR5SRKK12519USN2IHHC0F8NNZWQU6B8E4CAIO3XCDFDDJWQYL1Z82Z0DVEI4TIFB6IYQ' where id=7; -update noar tt set v3='F3K57HUK7J1FV955BLWNE6MKETSNKA9NDANUF5WZI36PHXYAV72SHSLZX8CZQMLAESFV4ZWSJBKS34OM75U3LG9MT8620N0TY8AUYEDG6J9F6XVW8B25LKT2QZBEPQN7Q9XPNGPP1MJ898C5NRF1D4SJFZGTL6B1IRJKL3PUZFYF6TUZY2NQL0EBM0GJTGX6D991EPNMQM2373FQC4U1BT8R3WR7H0TJPSOAX0AQPV4T7RIUT4XE3R0FKBWUX237M' where id=7; -update noar ti set v3='F3K57HUK7J1FV955BLWNE6MKETSNKA9NDANUF5WZI36PHXYAV72SHSLZX8CZQMLAESFV4ZWSJBKS34OM75U3LG9MT8620N0TY8AUYEDG6J9F6XVW8B25LKT2QZBEPQN7Q9XPNGPP1MJ898C5NRF1D4SJFZGTL6B1IRJKL3PUZFYF6TUZY2NQL0EBM0GJTGX6D991EPNMQM2373FQC4U1BT8R3WR7H0TJPSOAX0AQPV4T7RIUT4XE3R0FKBWUX237M' where id=7; -update noar tt set v0='Y5CNULAL1PXJ7XZWI8QX6YYYY36NZKJ7KV1ER3Q6OAURAYQZYHZ38YVOF0MZYR9OK980V7EQA5ZRKE082GVABO1CLOYXFYNZA62XP2RNK21Q9UHRM6XWG2HK9EYCFVA2GLOMQ4E139Q2RC8YVAAI27UQZP8E7BAGAYQ7QJ2FNXFN32I2LULCZZDH3QPL99OU78V4K7LP20MHKR49WI3WFJQPT3IYAOG6CHXA2GHYL7U2OLQ5GW5CZ9AP1HV4O1QCN' where id=8; -update noar ti set v0='Y5CNULAL1PXJ7XZWI8QX6YYYY36NZKJ7KV1ER3Q6OAURAYQZYHZ38YVOF0MZYR9OK980V7EQA5ZRKE082GVABO1CLOYXFYNZA62XP2RNK21Q9UHRM6XWG2HK9EYCFVA2GLOMQ4E139Q2RC8YVAAI27UQZP8E7BAGAYQ7QJ2FNXFN32I2LULCZZDH3QPL99OU78V4K7LP20MHKR49WI3WFJQPT3IYAOG6CHXA2GHYL7U2OLQ5GW5CZ9AP1HV4O1QCN' where id=8; -update noar tt set v1='Z7TBDC73IVSOY74C6RF5GBRWC96W3MBUF10FISKC1Z3YMC0SGXNCUMBHMXBGQ4XCB9D07SYR8F9HNFCKSPQ8X7EQBA126AQWEIS6D6WA42UMNB18XJZI2B7ZOQUDRANBAOIMQNHUCP04NI0VSVOVYEPOCIRL6DKD21IPZFSY7X7964ZHQNU0SMM4RBB2ZIWF5S0D540KFTIRKVXZZKK2VHWDR819BBXSBVG7ZBHL9JJAWU1VSV8QGQETBC8PFUWI6' where id=8; -update noar ti set v1='Z7TBDC73IVSOY74C6RF5GBRWC96W3MBUF10FISKC1Z3YMC0SGXNCUMBHMXBGQ4XCB9D07SYR8F9HNFCKSPQ8X7EQBA126AQWEIS6D6WA42UMNB18XJZI2B7ZOQUDRANBAOIMQNHUCP04NI0VSVOVYEPOCIRL6DKD21IPZFSY7X7964ZHQNU0SMM4RBB2ZIWF5S0D540KFTIRKVXZZKK2VHWDR819BBXSBVG7ZBHL9JJAWU1VSV8QGQETBC8PFUWI6' where id=8; -update noar tt set v2='CMJH7J3P1KZVK1IEJXESCPBHBS5L6Z8WB4YT4HZ4SP0XZGKGWMR3H28PXNG8WKWE8QW5DM6UMTLFQOFF9GGU10KK73HTGNFQ9XTX7JAEIEO83NVM3JY3O22L2MDGBSKYIM4NVYDV7CRNN5XIUPJ2NHOHU13KE05AHH08MCX7LHL8Y1SSO3VLLRDA6HLP1R54A1NL7ZA2GPU0LTFP3SJDVZIGA30978AG3T33QP05BSPLAFCBOG59HL1K99SY30GGA' where id=8; -update noar ti set v2='CMJH7J3P1KZVK1IEJXESCPBHBS5L6Z8WB4YT4HZ4SP0XZGKGWMR3H28PXNG8WKWE8QW5DM6UMTLFQOFF9GGU10KK73HTGNFQ9XTX7JAEIEO83NVM3JY3O22L2MDGBSKYIM4NVYDV7CRNN5XIUPJ2NHOHU13KE05AHH08MCX7LHL8Y1SSO3VLLRDA6HLP1R54A1NL7ZA2GPU0LTFP3SJDVZIGA30978AG3T33QP05BSPLAFCBOG59HL1K99SY30GGA' where id=8; -update noar tt set v3='85QYOPQYOOBEE3G2GRIRV57YB9DERNG48SHLPPUCZSZ6C6JJSZXLJQTTLK09O6DF7ETHB1Z8BTJFBT73G72TS2S3ZMRRZ4EZ38JJRBKI9M8D8CX6ASQZHRF88HE02OZ0PG35154RJBKC74AER4YJ24YAIBCVLCZ2LD1T55BY8Q4PEUHJG3FAQ97I0POCOOTSM92KA5G9IE9IWEM501CGVFGUTJBLSGDDPJAFE63ESJ8F04PICZ2OJ8UF08DX4PIZJ' where id=8; -update noar ti set v3='85QYOPQYOOBEE3G2GRIRV57YB9DERNG48SHLPPUCZSZ6C6JJSZXLJQTTLK09O6DF7ETHB1Z8BTJFBT73G72TS2S3ZMRRZ4EZ38JJRBKI9M8D8CX6ASQZHRF88HE02OZ0PG35154RJBKC74AER4YJ24YAIBCVLCZ2LD1T55BY8Q4PEUHJG3FAQ97I0POCOOTSM92KA5G9IE9IWEM501CGVFGUTJBLSGDDPJAFE63ESJ8F04PICZ2OJ8UF08DX4PIZJ' where id=8; -update noar tt set v0='CCXWJBA0QUXCGG1T43E8CMG0FLF0568J0MNG4MR85C2AF3HOEEOJ97GD7GQL43OJGHULZK7IWH028XSP9F604UFKBVXRRT90EJJSJA4BUHDEA3REBLQPF6PM1PNH6IX2V0Z0ZNLRWJSMQ4AHI2DJAEANQXF7RNRIV0BMZKZ4LVMROHY1HBIWEDPM8YFGPHM4BTV4AWKL209AM82ACIO94B15LCVE1N9CJICTS9X2NQ8FBDZH8XYDVVVD736PKV90P' where id=9; -update noar ti set v0='CCXWJBA0QUXCGG1T43E8CMG0FLF0568J0MNG4MR85C2AF3HOEEOJ97GD7GQL43OJGHULZK7IWH028XSP9F604UFKBVXRRT90EJJSJA4BUHDEA3REBLQPF6PM1PNH6IX2V0Z0ZNLRWJSMQ4AHI2DJAEANQXF7RNRIV0BMZKZ4LVMROHY1HBIWEDPM8YFGPHM4BTV4AWKL209AM82ACIO94B15LCVE1N9CJICTS9X2NQ8FBDZH8XYDVVVD736PKV90P' where id=9; -update noar tt set v1='UROABRDCBAA8643XGHW3GJ5GSJQ1XQO6UBP2XD2EN9RCL8AN2PVQZ1TAROUZYNHPKH3VWT4VCBR08V30P1KDW93JM1REDJ58MT1QP81LPA5NM5KXBNJQPP9YGM2S3VIJVXROVHBAWRA2SLEK7YGM2L2T29A3K09NZXR7CVFOG3H8M5C6YBSWQMGAJTFYAU38AXW72NC6TGPCIV1SYL56FIN5ZUF6EQFB28GBA8SF2DV8W6W756H9XXYCGBXX9XFW3' where id=9; -update noar ti set v1='UROABRDCBAA8643XGHW3GJ5GSJQ1XQO6UBP2XD2EN9RCL8AN2PVQZ1TAROUZYNHPKH3VWT4VCBR08V30P1KDW93JM1REDJ58MT1QP81LPA5NM5KXBNJQPP9YGM2S3VIJVXROVHBAWRA2SLEK7YGM2L2T29A3K09NZXR7CVFOG3H8M5C6YBSWQMGAJTFYAU38AXW72NC6TGPCIV1SYL56FIN5ZUF6EQFB28GBA8SF2DV8W6W756H9XXYCGBXX9XFW3' where id=9; -update noar tt set v2='JHBJNIADQ2IR585CYZOXWQPY572FK0YHY50YINS4MUPZADI64WITP85B4B1ETHHH3II4QZL4GS6E249AVCR2FUGJOR0STTEXYRRG5LC8EFXXU6837XF1WWFH7N5R38KHCB0YPAVASK2V5RHQI0QQX50OT8AUW4Y2GOAL2HTCJENGRVYIEXB46W7MMHQA0J9LDEVDIUUQKUPZIY2AFY1JNF53PDS5WYFJZJXXA05ZII8O9KPDS5VRCSAMWPYGBWR5P' where id=9; -update noar ti set v2='JHBJNIADQ2IR585CYZOXWQPY572FK0YHY50YINS4MUPZADI64WITP85B4B1ETHHH3II4QZL4GS6E249AVCR2FUGJOR0STTEXYRRG5LC8EFXXU6837XF1WWFH7N5R38KHCB0YPAVASK2V5RHQI0QQX50OT8AUW4Y2GOAL2HTCJENGRVYIEXB46W7MMHQA0J9LDEVDIUUQKUPZIY2AFY1JNF53PDS5WYFJZJXXA05ZII8O9KPDS5VRCSAMWPYGBWR5P' where id=9; -update noar tt set v3='H3W8RD7J0IY3SEMOYRZLNXUWP6SZIQXQMC9DH51RU8RP3IFJR61WY2VYYH78MYYJBWZYB4T1G14Y5783N5WLMAI08OXGWX0IBW53WY2O5QVTT1F6P9P7J4E8M7WMMAVO9UUTSBNUOHKFXQR6FX0QMZ2S5SE4HF2DNJE7QXB0OOMG8K1UQY9J7JE166BDUT3YLHVPH72EXGUKBHN7CA83F5YBM6H1RVFZW25NZLE6AK1GYYLH74SMFFTG3OG5NS5OK' where id=9; -update noar ti set v3='H3W8RD7J0IY3SEMOYRZLNXUWP6SZIQXQMC9DH51RU8RP3IFJR61WY2VYYH78MYYJBWZYB4T1G14Y5783N5WLMAI08OXGWX0IBW53WY2O5QVTT1F6P9P7J4E8M7WMMAVO9UUTSBNUOHKFXQR6FX0QMZ2S5SE4HF2DNJE7QXB0OOMG8K1UQY9J7JE166BDUT3YLHVPH72EXGUKBHN7CA83F5YBM6H1RVFZW25NZLE6AK1GYYLH74SMFFTG3OG5NS5OK' where id=9; -update noar tt set v0='NPQC5K1Y8D2FH4D9F4AY0KN8YUCM2XLJVH2W9FTWKG1UO69EEGFY8CCAT12G2R4TC472BSSJUJSEFPW5NW9AWLNOUGXXHIM8QSRRUCHE188K2JCGZY09ROGW8FPHOM32A8LQ6XRP32YNAGJOLS37XBOMGWQ05V9XRZ6SA79SNFBMEPG699IFAZGAG10HXIXPHYSNGPDSAJZ81QTWEV7H9VGF6UDT5873VZQV2DLZKFDGI0S8H4QIQEYHOVM9OCW61' where id=10; -update noar ti set v0='NPQC5K1Y8D2FH4D9F4AY0KN8YUCM2XLJVH2W9FTWKG1UO69EEGFY8CCAT12G2R4TC472BSSJUJSEFPW5NW9AWLNOUGXXHIM8QSRRUCHE188K2JCGZY09ROGW8FPHOM32A8LQ6XRP32YNAGJOLS37XBOMGWQ05V9XRZ6SA79SNFBMEPG699IFAZGAG10HXIXPHYSNGPDSAJZ81QTWEV7H9VGF6UDT5873VZQV2DLZKFDGI0S8H4QIQEYHOVM9OCW61' where id=10; -update noar tt set v1='TF6IWM7FXZE2YW7LAD000UFDXT46G74JRY1SWYK10KG98KP3I1SFT56Q7T9VPOJ0TLZ77BZIHE5VX5R6U2N8H1X9ZQG9ZI3TBQBO5IEPZE7M09QE8ADKSZWC0Q2GYNDDOG0JGMIIPNSGYU2F5MM5KKQ87RSYUMKSQPU8OVUDNTZ525OXVR9DHCBA5UV45X66QLT9XF6N2LYITP4GAA4ICD9UBDCNCQFRWMTO55OTOGJV6ESD5BWJ0E4JTNCLKISTA' where id=10; -update noar ti set v1='TF6IWM7FXZE2YW7LAD000UFDXT46G74JRY1SWYK10KG98KP3I1SFT56Q7T9VPOJ0TLZ77BZIHE5VX5R6U2N8H1X9ZQG9ZI3TBQBO5IEPZE7M09QE8ADKSZWC0Q2GYNDDOG0JGMIIPNSGYU2F5MM5KKQ87RSYUMKSQPU8OVUDNTZ525OXVR9DHCBA5UV45X66QLT9XF6N2LYITP4GAA4ICD9UBDCNCQFRWMTO55OTOGJV6ESD5BWJ0E4JTNCLKISTA' where id=10; -update noar tt set v2='Y74X1E1ZSSV0V3VH1YY9304X4Y0BYGXCOYFHFVIRI0MWOMRPSEZWJLN26DSJY7SF3304QQEBOE4ICDH4S5ZL7FY08BV4HV6MOHU57Q3QKI52U2K0LKDUP3SXV9ETYTYTW688OV9TMINUA2ZNJHZC6YYHQIRM59YCL8NI61GMMC3DOX436BU1AAABHLOV29AEN30DV9L0WL96FFIZOZHXZQJ2N2ZM1NBTFCMKO5WFKF5BB9PFJAFBWZXNPI0FG1SAE' where id=10; -update noar ti set v2='Y74X1E1ZSSV0V3VH1YY9304X4Y0BYGXCOYFHFVIRI0MWOMRPSEZWJLN26DSJY7SF3304QQEBOE4ICDH4S5ZL7FY08BV4HV6MOHU57Q3QKI52U2K0LKDUP3SXV9ETYTYTW688OV9TMINUA2ZNJHZC6YYHQIRM59YCL8NI61GMMC3DOX436BU1AAABHLOV29AEN30DV9L0WL96FFIZOZHXZQJ2N2ZM1NBTFCMKO5WFKF5BB9PFJAFBWZXNPI0FG1SAE' where id=10; -update noar tt set v3='8HMT8C2LH8AKHPP7Z33NRP8NZEAAY01FZCH9VO0LT6GXSBL8J4HAE7JT3O4R3PGW40HJK3CHV6T0B560SZH6IVHE6LILO0AR4TNVGUJKC4IU6RZRR9QS1ZN4E6LW9YMKWNK5I7OME75WTDL5QHZXP16SN6ZOD9Z8U488DEFJMZZ193MP7UHJVRQFSR67MY4JN047NGK284E2Y4HP31MWKSIYEFBBHS47CLR08ZJH7I91DKY32KC771VKW3LBVXPLG' where id=10; -update noar ti set v3='8HMT8C2LH8AKHPP7Z33NRP8NZEAAY01FZCH9VO0LT6GXSBL8J4HAE7JT3O4R3PGW40HJK3CHV6T0B560SZH6IVHE6LILO0AR4TNVGUJKC4IU6RZRR9QS1ZN4E6LW9YMKWNK5I7OME75WTDL5QHZXP16SN6ZOD9Z8U488DEFJMZZ193MP7UHJVRQFSR67MY4JN047NGK284E2Y4HP31MWKSIYEFBBHS47CLR08ZJH7I91DKY32KC771VKW3LBVXPLG' where id=10; -update noar tt set v0='G1PIUPV2DK6CK4M6UDBV8S4D9CHQ934NXHNP4Y8AWZNDY4VWF3EWL9I9FVM97C1LUL2UEUAP33MS0C8UFSVSXXPH8NI03NELI9I1L7OSA53KHNGSFMX5NDGQHEF2BJOJBW069143AYA78HJ6L9C9VX2X8BC53IAUFY5F0QA76LNOKDX10RBHEDLYKJOX9AAGK2KM81GRESU9C9ZUTGP1FNSVWV97M0RY7OKXWZINGMBSG5FPBS3UKE3OMQTAMZH24' where id=11; -update noar ti set v0='G1PIUPV2DK6CK4M6UDBV8S4D9CHQ934NXHNP4Y8AWZNDY4VWF3EWL9I9FVM97C1LUL2UEUAP33MS0C8UFSVSXXPH8NI03NELI9I1L7OSA53KHNGSFMX5NDGQHEF2BJOJBW069143AYA78HJ6L9C9VX2X8BC53IAUFY5F0QA76LNOKDX10RBHEDLYKJOX9AAGK2KM81GRESU9C9ZUTGP1FNSVWV97M0RY7OKXWZINGMBSG5FPBS3UKE3OMQTAMZH24' where id=11; -update noar tt set v1='1089YGSGCQC7EBSHXDXEKTG1B40ZGVS5ZOW6IHYHGVIB9VDZUYVG1PO8QOIL6JZN5XESZ4BEQ9M122BVSGPQVDKHA0VHLE5DENL07KTDIV4BPWPF0T9YKXZQN6V99MBKF3676VLA5A5S03F4ZD9K9PYX6RGPFOYFKFF1C5RFCJRY53IXGEL4K5AKNG7IULPXATM4384AQBMLPZBTJ9ABISHTHU5G3LLMV177H48TSJYR7BRFCE2PCP4GIJF9MZOBF' where id=11; -update noar ti set v1='1089YGSGCQC7EBSHXDXEKTG1B40ZGVS5ZOW6IHYHGVIB9VDZUYVG1PO8QOIL6JZN5XESZ4BEQ9M122BVSGPQVDKHA0VHLE5DENL07KTDIV4BPWPF0T9YKXZQN6V99MBKF3676VLA5A5S03F4ZD9K9PYX6RGPFOYFKFF1C5RFCJRY53IXGEL4K5AKNG7IULPXATM4384AQBMLPZBTJ9ABISHTHU5G3LLMV177H48TSJYR7BRFCE2PCP4GIJF9MZOBF' where id=11; -update noar tt set v2='B2DZ6JQ65DH37M765HN6PE6POJURGBVL34DC1IK9AUOGBPUIBLKXQ2BR0NT38GMY1EA3CBG964RGPPUQP631Q50ABJI9GRX95RXJ5WCQA864I3XYK0N8DSN93LP5MS9IQWRWKRO4IMM2SIR4KRN879DUXY5Y8H9RX3MYLSKC2C0CR9LGJYMNXAICQYON8JR6HUY6IR9K91ZQNIMSBBSHE0FA4YLI0G9ZH7UGC55BDNNXSWFR77241PM3M78E7A31C' where id=11; -update noar ti set v2='B2DZ6JQ65DH37M765HN6PE6POJURGBVL34DC1IK9AUOGBPUIBLKXQ2BR0NT38GMY1EA3CBG964RGPPUQP631Q50ABJI9GRX95RXJ5WCQA864I3XYK0N8DSN93LP5MS9IQWRWKRO4IMM2SIR4KRN879DUXY5Y8H9RX3MYLSKC2C0CR9LGJYMNXAICQYON8JR6HUY6IR9K91ZQNIMSBBSHE0FA4YLI0G9ZH7UGC55BDNNXSWFR77241PM3M78E7A31C' where id=11; -update noar tt set v3='EOOJW86E39PL7F6YDV949XGV9PBF5DYHTVW5W1JJGE661JT74AF3LMN1CYGQPQKDHS1IRY4JSL15S8DJC579THBSJZ2X6U6GOZXUKSGUNZTV6JOZOBNWGXCQKDL439PLRVTP7DLOUKWGX97HJBCHRPQYQRZ9JSJATZ0QHR6UBHVXGLBHWX2YPZRTW3BXLBJWHNCT5GUUA744IPBOG6RQKC5QZZZRVHA7ESYRZWY3S6B8FF8PM0EEW8G7JIO7EN8GC' where id=11; -update noar ti set v3='EOOJW86E39PL7F6YDV949XGV9PBF5DYHTVW5W1JJGE661JT74AF3LMN1CYGQPQKDHS1IRY4JSL15S8DJC579THBSJZ2X6U6GOZXUKSGUNZTV6JOZOBNWGXCQKDL439PLRVTP7DLOUKWGX97HJBCHRPQYQRZ9JSJATZ0QHR6UBHVXGLBHWX2YPZRTW3BXLBJWHNCT5GUUA744IPBOG6RQKC5QZZZRVHA7ESYRZWY3S6B8FF8PM0EEW8G7JIO7EN8GC' where id=11; -update noar tt set v0='KMPR9IT6KR3MVNV37YWY5E5P88QDA3N05PVNKHGGZM59J6HWWRE8MWRWWJOG440Q69N18BVHM214OR4ONP4R3M4BAFTSWCM5V4PH1H3CJ2SVYE20LW4OI0872NVYCRHDB58BC6QLSEP0O2WXBF0EPVO235Y6BX51QSAMK9S4WY0VVO6Y4ZACT3R03KPZKZGA6UIPVMFAVSTGF6KLFNNFBCNT58BZ4JVHZT96JELZ91TS57ZGUREHU9DSXUTG5LQ6S' where id=12; -update noar ti set v0='KMPR9IT6KR3MVNV37YWY5E5P88QDA3N05PVNKHGGZM59J6HWWRE8MWRWWJOG440Q69N18BVHM214OR4ONP4R3M4BAFTSWCM5V4PH1H3CJ2SVYE20LW4OI0872NVYCRHDB58BC6QLSEP0O2WXBF0EPVO235Y6BX51QSAMK9S4WY0VVO6Y4ZACT3R03KPZKZGA6UIPVMFAVSTGF6KLFNNFBCNT58BZ4JVHZT96JELZ91TS57ZGUREHU9DSXUTG5LQ6S' where id=12; -update noar tt set v1='7EE0CQ3NMTK6R1YYWA31YHM0PQGU2FMKNR381H3O2FA7ZBW1LIYWYQ21ENPTOA1WWW4IQXF0NMZBKUHNJVGGBK49JK9FWY06299Z66JUF65YJSWOQQMQ2R2KLGON57PCYDQ4AQEKFICIS5M0X36HHZCU8U9QIVESZ3JVDDGT7G19H5OCAIRUHOW20IOA15NXE37YFJFGGSN2SHOP9S0MMAZP8CYZBNZ0Z0M4W720ZXGL4EA2LYV6V24KBN7I0A9PB' where id=12; -update noar ti set v1='7EE0CQ3NMTK6R1YYWA31YHM0PQGU2FMKNR381H3O2FA7ZBW1LIYWYQ21ENPTOA1WWW4IQXF0NMZBKUHNJVGGBK49JK9FWY06299Z66JUF65YJSWOQQMQ2R2KLGON57PCYDQ4AQEKFICIS5M0X36HHZCU8U9QIVESZ3JVDDGT7G19H5OCAIRUHOW20IOA15NXE37YFJFGGSN2SHOP9S0MMAZP8CYZBNZ0Z0M4W720ZXGL4EA2LYV6V24KBN7I0A9PB' where id=12; -update noar tt set v2='6CAF8P27N9E6X9E5JCC40GMOLY7BQVTDEGVYP11VQN5RJ16O19E88Y3GI9XV9F2U03D2LFV9VCOF1U42B3Z8FTXNKK85DX4W1NZUNYUWFO9C4NC2C5DDGZQRNSB2KKXWED65FFB9QEZHA1PYBDYDYI7DKFSTV7W67ARIXL25S1T4DQU5VADD67PKUGLFANCP4A31CTOBTQKBL3NT3USH33QAJLE7WRBC9ZZ1JL00YWHRFIFVBR0X9JIZ8EZ60LZOK' where id=12; -update noar ti set v2='6CAF8P27N9E6X9E5JCC40GMOLY7BQVTDEGVYP11VQN5RJ16O19E88Y3GI9XV9F2U03D2LFV9VCOF1U42B3Z8FTXNKK85DX4W1NZUNYUWFO9C4NC2C5DDGZQRNSB2KKXWED65FFB9QEZHA1PYBDYDYI7DKFSTV7W67ARIXL25S1T4DQU5VADD67PKUGLFANCP4A31CTOBTQKBL3NT3USH33QAJLE7WRBC9ZZ1JL00YWHRFIFVBR0X9JIZ8EZ60LZOK' where id=12; -update noar tt set v3='ZQIV6F7BZFC8C74DSG0HDTQGMMZGLLJMI9HDQSJ1MA1H61L160RIJLTCD62TN7NNAVMGRAFGC6A7JHFAQDC8CP1BLB8X8SKUUZS36MP9NIKYSXJAX0GJWNYQG4GZALKC7QK0MIOG9QAAS3LYFFF4FCBMOKZYSDIUIIMOWTRK1J98EY6XQVAIJYCTY8MW95Q44Z6EFJHZL6EF28UE5YL8RL5I94Q2KFO01P9F3MTO4E7SSOK5B3TV7ANYKP4TE3L53' where id=12; -update noar ti set v3='ZQIV6F7BZFC8C74DSG0HDTQGMMZGLLJMI9HDQSJ1MA1H61L160RIJLTCD62TN7NNAVMGRAFGC6A7JHFAQDC8CP1BLB8X8SKUUZS36MP9NIKYSXJAX0GJWNYQG4GZALKC7QK0MIOG9QAAS3LYFFF4FCBMOKZYSDIUIIMOWTRK1J98EY6XQVAIJYCTY8MW95Q44Z6EFJHZL6EF28UE5YL8RL5I94Q2KFO01P9F3MTO4E7SSOK5B3TV7ANYKP4TE3L53' where id=12; -update noar tt set v0='KKYRHYP0AL4AF6TLSKTYX679JUVVSOHME36YHBYJGDO9W6Q7R1UU6G2KMGSFI4MBS57ZOS75N805F7QPBQK38R36NNUKTINPNJ4FYQQ8UBCI8CJVJD8Y2EKHM9GSJV1HMB7BQTM5V2NB2E2ROZZCFHNAQ0UX7QIKWPWV5LD128CEHRZ4YRRT666SIXEWN93KE7A73LNS0SHREGN2HNFRYAPYU50391B3RNVVGV74XCH2I7FW9B2AGEZTRQ16VYW52' where id=13; -update noar ti set v0='KKYRHYP0AL4AF6TLSKTYX679JUVVSOHME36YHBYJGDO9W6Q7R1UU6G2KMGSFI4MBS57ZOS75N805F7QPBQK38R36NNUKTINPNJ4FYQQ8UBCI8CJVJD8Y2EKHM9GSJV1HMB7BQTM5V2NB2E2ROZZCFHNAQ0UX7QIKWPWV5LD128CEHRZ4YRRT666SIXEWN93KE7A73LNS0SHREGN2HNFRYAPYU50391B3RNVVGV74XCH2I7FW9B2AGEZTRQ16VYW52' where id=13; -update noar tt set v1='LAK6WXGZNEMT4DWCQLT8WTP5OTJXQAX09QG44BF33SI98W7CELG2ZCEGGGCD3ETGLQG0MGFYZOC153SCQE67JJK64HE44NR2YRSTVYSM2ERGWU80CXZZU3V9FJJA85J32B3FPURONU28FO9CRQVDQK3D5EDSQZG775RGYKQJ37QBZWCHQFJ24WK3T0PFKCCP1JY3QWYVO0D5IWP63QR6H69X5PNHCYNL7ST932F6WYHKWZAUH3IS747WC2CQ94WTZ' where id=13; -update noar ti set v1='LAK6WXGZNEMT4DWCQLT8WTP5OTJXQAX09QG44BF33SI98W7CELG2ZCEGGGCD3ETGLQG0MGFYZOC153SCQE67JJK64HE44NR2YRSTVYSM2ERGWU80CXZZU3V9FJJA85J32B3FPURONU28FO9CRQVDQK3D5EDSQZG775RGYKQJ37QBZWCHQFJ24WK3T0PFKCCP1JY3QWYVO0D5IWP63QR6H69X5PNHCYNL7ST932F6WYHKWZAUH3IS747WC2CQ94WTZ' where id=13; -update noar tt set v2='XR7TCJ6SWY37YMKIA30A6P0UN4VFV8LE5NP9W074DP0D0CTKAVNJ3GSITM7XH0IDN4TS1XGRX890Z1B54YHOV05L3XBWI7NLB07IM1EOGWZGK2PT8JYS0PN4NOJYPJ9NM1VARNSL2F2T9R4F7OOS2UPI62PXGO0RHSM1XLTMKX49TJSIB7NA7QH5W0O6SE7TPEDEEU59MF7WWMKGJC2T7IVUGUA6CTZ0ULQBXPUB709EONRI5REKAGOHZ5KRUPM80' where id=13; -update noar ti set v2='XR7TCJ6SWY37YMKIA30A6P0UN4VFV8LE5NP9W074DP0D0CTKAVNJ3GSITM7XH0IDN4TS1XGRX890Z1B54YHOV05L3XBWI7NLB07IM1EOGWZGK2PT8JYS0PN4NOJYPJ9NM1VARNSL2F2T9R4F7OOS2UPI62PXGO0RHSM1XLTMKX49TJSIB7NA7QH5W0O6SE7TPEDEEU59MF7WWMKGJC2T7IVUGUA6CTZ0ULQBXPUB709EONRI5REKAGOHZ5KRUPM80' where id=13; -update noar tt set v3='HSN6YMIJAXLMEEIW4TNEY99KCC3Y75PT91I2036Z0RPD9RNH1534GPRRDP475O3EPYH92QUB5031TPFKRTSRDKOCFQ4HLSOAMUP7PSFEE02SLXPZ38DR6TO97G9FAKHT9VK1RRMFI428LBRZL72YFQ0DTVSKJXWERUE1655ZH4LGAAI7ERIV8KEP7WVZN1K4DBPKD4RM7XI5MY7ZR6IPFQLXVACBVA62ITUUDYL7XYADFQXVV2NJ5ZIGWLBCMJY8A' where id=13; -update noar ti set v3='HSN6YMIJAXLMEEIW4TNEY99KCC3Y75PT91I2036Z0RPD9RNH1534GPRRDP475O3EPYH92QUB5031TPFKRTSRDKOCFQ4HLSOAMUP7PSFEE02SLXPZ38DR6TO97G9FAKHT9VK1RRMFI428LBRZL72YFQ0DTVSKJXWERUE1655ZH4LGAAI7ERIV8KEP7WVZN1K4DBPKD4RM7XI5MY7ZR6IPFQLXVACBVA62ITUUDYL7XYADFQXVV2NJ5ZIGWLBCMJY8A' where id=13; -update noar tt set v0='DPGL9XGJWM0OHS8TV1CAI4G6WJWBKQOHE9BMN4FTO918WVPAR9PG1MJMUI5Q4PJ640S1R71QLMDJLU0J070TVUVC321UNM8MXKVG622ZZWWW3LIVGAWUM81KTHNYT3H72J317ECJLQWXVQ6J3I5594LE3Z0SDA0SCPH7IHN8SV6D3TXTMLF6SWFD5P3T5V7KP5Q177662SGUX4NS1ZDH0RR3ENKUCZ4C2MYLX8NZCGZWYNGF48L1JX7GUYPMW9XXO' where id=14; -update noar ti set v0='DPGL9XGJWM0OHS8TV1CAI4G6WJWBKQOHE9BMN4FTO918WVPAR9PG1MJMUI5Q4PJ640S1R71QLMDJLU0J070TVUVC321UNM8MXKVG622ZZWWW3LIVGAWUM81KTHNYT3H72J317ECJLQWXVQ6J3I5594LE3Z0SDA0SCPH7IHN8SV6D3TXTMLF6SWFD5P3T5V7KP5Q177662SGUX4NS1ZDH0RR3ENKUCZ4C2MYLX8NZCGZWYNGF48L1JX7GUYPMW9XXO' where id=14; -update noar tt set v1='82DXNVL7DOKCTQ7FAK8SCL8BTL9J7905QF9TY3NZE08VWBT641HD7F8JWDIB93D1R8T701TNBP819NBN6HTFU88QPOWLQQ9B56YYCR3UPN5YCGEA7X7CK318OM1DIVPN9AM93OQVUGMIXGWK8569CHDAFYJTXNPWIJSHQE0Q3SERS1DB9PQ1WB399LI11YNZ9SY399TUSY4QIKHP0EUNXWKMVQDPNT7Z545T1L534HXP5NG7NES13QJZHPATNN16L' where id=14; -update noar ti set v1='82DXNVL7DOKCTQ7FAK8SCL8BTL9J7905QF9TY3NZE08VWBT641HD7F8JWDIB93D1R8T701TNBP819NBN6HTFU88QPOWLQQ9B56YYCR3UPN5YCGEA7X7CK318OM1DIVPN9AM93OQVUGMIXGWK8569CHDAFYJTXNPWIJSHQE0Q3SERS1DB9PQ1WB399LI11YNZ9SY399TUSY4QIKHP0EUNXWKMVQDPNT7Z545T1L534HXP5NG7NES13QJZHPATNN16L' where id=14; -update noar tt set v2='E6B4AB06MLZYTMXVDN3BPX4JF1IPDXANJEZ1NE8RXK0QQN6AHFFGQSDQ3YM0A7VUQ8SZTLS7ASLAABRUSBLQMMRB5E85AG1SFH2NLKXZNSC4QSYQ2KO785ZGZATCCZAQ83XSF31B27IBIIYSXTG6ZPID6R74YW6EMUPATOCUOKRN1KPMNFZ926OC6K4T0EFA3E69FM0TN2MJI8G2JPKLK4NERIRGQ9OLNCSEM15FS0M3NCZV9O86V65A028S2IL9Z' where id=14; -update noar ti set v2='E6B4AB06MLZYTMXVDN3BPX4JF1IPDXANJEZ1NE8RXK0QQN6AHFFGQSDQ3YM0A7VUQ8SZTLS7ASLAABRUSBLQMMRB5E85AG1SFH2NLKXZNSC4QSYQ2KO785ZGZATCCZAQ83XSF31B27IBIIYSXTG6ZPID6R74YW6EMUPATOCUOKRN1KPMNFZ926OC6K4T0EFA3E69FM0TN2MJI8G2JPKLK4NERIRGQ9OLNCSEM15FS0M3NCZV9O86V65A028S2IL9Z' where id=14; -update noar tt set v3='6LDFMFYW502S2CSL96GBL7QA8XCCUYLK169ZSLQX56BPN3PPTUPYMVQ6A4M87CNJ4IKOE3KRAD82AZS4EOIJLHQPDKH9PTTF3WDOVHAJON303YISYMOQMFNJ22RD1M4I08WP8II1FNG9VYE9WGKB4J7DJ3EI5512GBJDRT7SY956EDR77UN3XA0E7JPVDIJ3OQ2IIHI1O6GGQ9J5HVXVT2I4UIBWDTRBJVK1D9GRKVXWWIGOTGSBVA5C7STCV3QTT' where id=14; -update noar ti set v3='6LDFMFYW502S2CSL96GBL7QA8XCCUYLK169ZSLQX56BPN3PPTUPYMVQ6A4M87CNJ4IKOE3KRAD82AZS4EOIJLHQPDKH9PTTF3WDOVHAJON303YISYMOQMFNJ22RD1M4I08WP8II1FNG9VYE9WGKB4J7DJ3EI5512GBJDRT7SY956EDR77UN3XA0E7JPVDIJ3OQ2IIHI1O6GGQ9J5HVXVT2I4UIBWDTRBJVK1D9GRKVXWWIGOTGSBVA5C7STCV3QTT' where id=14; -update noar tt set v0='146QAZLKFPU3ZM0GRPSDLF2TK6Z58210ZYJPVT7CWQHXSVW7K5Y7PNA5YDV4MPC0S5AY4UQMEGJVLQDV4KAMP6RWHUBOZI7B8MEV1D1V3TXFG52O6YJUAVD4BZMTCC5DWNBETALYMI41TDHEXLFFRVUY1D9I3FU0528U39GYMZFO4TR43W78HJG90S19V92O84H800PP6IT7PWOM3T94F5XC01QEHT0FN5AIEGGXCQ3VXZK542W0RDHITV8KBJ4BD' where id=15; -update noar ti set v0='146QAZLKFPU3ZM0GRPSDLF2TK6Z58210ZYJPVT7CWQHXSVW7K5Y7PNA5YDV4MPC0S5AY4UQMEGJVLQDV4KAMP6RWHUBOZI7B8MEV1D1V3TXFG52O6YJUAVD4BZMTCC5DWNBETALYMI41TDHEXLFFRVUY1D9I3FU0528U39GYMZFO4TR43W78HJG90S19V92O84H800PP6IT7PWOM3T94F5XC01QEHT0FN5AIEGGXCQ3VXZK542W0RDHITV8KBJ4BD' where id=15; -update noar tt set v1='0N2RODYAYB3DCVX0VXJPRMGIN0K5VFAFK8JPOV2GX173DM8JNLS2XEABOC1CUBU80KE6PGNC8MESOV2TUQK0V71XQMHKBWVWHUNXQ8VAW4LD71B7QTV8WXBLG4LN95IJCU35O6WST1VPWIW4YD0RKYF2P2AFRB7S56U5YLJ1AP9UEGDR92XQKIHIZ1HHP58SDCIP5BG44ZRLYJ7II1664K70MFIHRJDDEP4DRUVXTOU4BMI96QA6X7FWXOJ964Z2Q' where id=15; -update noar ti set v1='0N2RODYAYB3DCVX0VXJPRMGIN0K5VFAFK8JPOV2GX173DM8JNLS2XEABOC1CUBU80KE6PGNC8MESOV2TUQK0V71XQMHKBWVWHUNXQ8VAW4LD71B7QTV8WXBLG4LN95IJCU35O6WST1VPWIW4YD0RKYF2P2AFRB7S56U5YLJ1AP9UEGDR92XQKIHIZ1HHP58SDCIP5BG44ZRLYJ7II1664K70MFIHRJDDEP4DRUVXTOU4BMI96QA6X7FWXOJ964Z2Q' where id=15; -update noar tt set v2='TIXCEEPHSANG8VF2C9PPVYNVO5EFI1HVXI1XYL6DAJSD29GV2RT0G0HAFUBK42PZ42ONOKEBGXYHXKUAFQCY8ZFJYVKVUQQ3196UD436GYD373SMSHW7UEGE4L9BRJOKNFPPBEXBG4TD1WWJVJCX42BF8PYPDAY1F375KNVWW3L31EUXL311GSKD6LEL3T0BDDS5KXGBFDHDHNJAWELYLG1Z5Q0GP2BKY0VMASFIFND7B0ZPTH8QPPZIX9DJH8WE3' where id=15; -update noar ti set v2='TIXCEEPHSANG8VF2C9PPVYNVO5EFI1HVXI1XYL6DAJSD29GV2RT0G0HAFUBK42PZ42ONOKEBGXYHXKUAFQCY8ZFJYVKVUQQ3196UD436GYD373SMSHW7UEGE4L9BRJOKNFPPBEXBG4TD1WWJVJCX42BF8PYPDAY1F375KNVWW3L31EUXL311GSKD6LEL3T0BDDS5KXGBFDHDHNJAWELYLG1Z5Q0GP2BKY0VMASFIFND7B0ZPTH8QPPZIX9DJH8WE3' where id=15; -update noar tt set v3='BU80H39TADLUV4GHJFTHN2SRHDQI318ZBYGM08761OJ3SIURCB9U1BEQGQR8TQN0IFPBHMYFNG5S4TIYX465KSSGSIYWNV578MFHH6YWL4YZ2V6FMRNANCKGWN28KM3885S8GSV6V43F9BW4NJ00RR11C01MO1Y12RNV1GC87JFCHVKWHWYKP0GXP8W0ZXKVAL7P4CS3RJQ0QJL4UI2EN3K8NJVCM5EO4CR5QJGEGNAXSJQL27AQ7WLHVH0YI7Q6P' where id=15; -update noar ti set v3='BU80H39TADLUV4GHJFTHN2SRHDQI318ZBYGM08761OJ3SIURCB9U1BEQGQR8TQN0IFPBHMYFNG5S4TIYX465KSSGSIYWNV578MFHH6YWL4YZ2V6FMRNANCKGWN28KM3885S8GSV6V43F9BW4NJ00RR11C01MO1Y12RNV1GC87JFCHVKWHWYKP0GXP8W0ZXKVAL7P4CS3RJQ0QJL4UI2EN3K8NJVCM5EO4CR5QJGEGNAXSJQL27AQ7WLHVH0YI7Q6P' where id=15; -update noar tt set v0='1MC1WBDNA6FE50LO20BN3F7JE269P183R332QGGYOL6XI4NRO05YTFGQCVCOHRG231G2CLFYFRG20T7HU7J06DJUWRIHBQ0Q8TT2TWGNDBPQPYWMOFY2UUAY06PD79DNAJMBZJ9YL4WEYVQZAM2YLXN1TKB1PQ9ZIHZ5BHWKVQ7A1WPFN60MBQS6I2D5H38X607QW0EORB2CGF0FKMM22F1OMD6UWU12XHZLKJ1IQJMOD0AE1PUI8XWXDLDM1OVV0' where id=16; -update noar ti set v0='1MC1WBDNA6FE50LO20BN3F7JE269P183R332QGGYOL6XI4NRO05YTFGQCVCOHRG231G2CLFYFRG20T7HU7J06DJUWRIHBQ0Q8TT2TWGNDBPQPYWMOFY2UUAY06PD79DNAJMBZJ9YL4WEYVQZAM2YLXN1TKB1PQ9ZIHZ5BHWKVQ7A1WPFN60MBQS6I2D5H38X607QW0EORB2CGF0FKMM22F1OMD6UWU12XHZLKJ1IQJMOD0AE1PUI8XWXDLDM1OVV0' where id=16; -update noar tt set v1='S2KUJFIG0MEZ8EVL9BA9FGB2BJNNPLSGDJ9M87YQTRLGIJJN1WUG42JLI3M0HUC436F3PPEYJ10YIDVFJ2F30F38NIKD5Y2FH5LY01VJRIVQWZQ8CKJ4LTFMHQOBY79DVT8XLQTUN8LQOP0J3PVQA0VIUZZ9HFGA69C288MSTEA073X2CL75EO6FBEJMPGP7AXUHYIOA7FY6A7EP3ZWB37RUGICAVG4OW0P5YSLXXLN50TZBDQ6XGAFTWLE6RCNB1' where id=16; -update noar ti set v1='S2KUJFIG0MEZ8EVL9BA9FGB2BJNNPLSGDJ9M87YQTRLGIJJN1WUG42JLI3M0HUC436F3PPEYJ10YIDVFJ2F30F38NIKD5Y2FH5LY01VJRIVQWZQ8CKJ4LTFMHQOBY79DVT8XLQTUN8LQOP0J3PVQA0VIUZZ9HFGA69C288MSTEA073X2CL75EO6FBEJMPGP7AXUHYIOA7FY6A7EP3ZWB37RUGICAVG4OW0P5YSLXXLN50TZBDQ6XGAFTWLE6RCNB1' where id=16; -update noar tt set v2='ECWAIFYYPPCUPR9NY17BMBFKVG4N2XYM9ZFG7I4RLCKDNS2QT4JS2VQLHOHSP8V40MBWRK89IX1L2OEXWWWSCZCC2AZS9ZBPPOGMD5TT0NLDMBDCD7E3PI6X58QQEI1297O7B3SHQ8O5BOX2871SIRG8NWE2LA0OY22HVDO3QLDVHHK13DUP214FHUNORTX5QIFV4R28KCU5T7KSNL0X4N1FKVPVAQEF14K8OBRRUZZA22QKAT239BXR66DPLQTTF' where id=16; -update noar ti set v2='ECWAIFYYPPCUPR9NY17BMBFKVG4N2XYM9ZFG7I4RLCKDNS2QT4JS2VQLHOHSP8V40MBWRK89IX1L2OEXWWWSCZCC2AZS9ZBPPOGMD5TT0NLDMBDCD7E3PI6X58QQEI1297O7B3SHQ8O5BOX2871SIRG8NWE2LA0OY22HVDO3QLDVHHK13DUP214FHUNORTX5QIFV4R28KCU5T7KSNL0X4N1FKVPVAQEF14K8OBRRUZZA22QKAT239BXR66DPLQTTF' where id=16; -update noar tt set v3='M7TE8AOGANMM3OR3PGXSTGY8E9CD4T4LBWW9JKQR1DGWM4V3C1PQRZ01FBBUEWUDNDLYIG37B6ZSJ8IVNULWMHHG3YWLTKO37V46C5CQ6TAVR9HLXM5US8VB0UJE5GIBOGEP1BRMXDYZYBRFFW9VCWC7WFFMZGOS93HKGGX7IZ3FQAZNJXU58I6HQ13H8MS3A3M1ZEGLAFCDRDLE67FDP1L41Z3WLTFJDB7FQGMRTLLLH8MY6ARTDEPPM3YS45JPD' where id=16; -update noar ti set v3='M7TE8AOGANMM3OR3PGXSTGY8E9CD4T4LBWW9JKQR1DGWM4V3C1PQRZ01FBBUEWUDNDLYIG37B6ZSJ8IVNULWMHHG3YWLTKO37V46C5CQ6TAVR9HLXM5US8VB0UJE5GIBOGEP1BRMXDYZYBRFFW9VCWC7WFFMZGOS93HKGGX7IZ3FQAZNJXU58I6HQ13H8MS3A3M1ZEGLAFCDRDLE67FDP1L41Z3WLTFJDB7FQGMRTLLLH8MY6ARTDEPPM3YS45JPD' where id=16; -update noar tt set v0='22NCVZ1Q0AFW4FMGZ1I3DXBPISMBTAXDAU945RRMACDJYF44T8AOMJP0VQ8PCPBG5RP3JNUIUCM07SPGVG8A3FL63OWQYKFAESXP2G1FXGK0IKQI94MCOETOD9JKON7A77LXCGMZ2S0Y8Y3YTOR4MUHWC4EFLL7EI99SSPYG69SI0MMESE3FZP0QJHQMF42K58UF0HIKJ6V0AY7ITFIYXNWPMGJ6QLMF9DMYCLODEXVZZM4PARFZ3M28XP9CE8HWF' where id=17; -update noar ti set v0='22NCVZ1Q0AFW4FMGZ1I3DXBPISMBTAXDAU945RRMACDJYF44T8AOMJP0VQ8PCPBG5RP3JNUIUCM07SPGVG8A3FL63OWQYKFAESXP2G1FXGK0IKQI94MCOETOD9JKON7A77LXCGMZ2S0Y8Y3YTOR4MUHWC4EFLL7EI99SSPYG69SI0MMESE3FZP0QJHQMF42K58UF0HIKJ6V0AY7ITFIYXNWPMGJ6QLMF9DMYCLODEXVZZM4PARFZ3M28XP9CE8HWF' where id=17; -update noar tt set v1='X4UN0BAM3WBARYX8IFUL9UIEE16IFFIW1J0P2PGSDW8MWXN4B700VQTYIV7RARVAV4D5DGZYVXJYE9EUZV3QGLXKQG6PGCE4LTJO7LOUJTIPP1ENDGUYSQFFWO5HEU7ZS5WZH403C5WBI3O27HVMPA22TEST6M02UC4SEBKQB5RCTKWO5Y42A5VMVJJI69VEP5NPX9QFOMHPIS94LD4HDU0GTGB0K2EZXG448PGMYKMF152ERO7AEZ0NKG6RJ0Q5F' where id=17; -update noar ti set v1='X4UN0BAM3WBARYX8IFUL9UIEE16IFFIW1J0P2PGSDW8MWXN4B700VQTYIV7RARVAV4D5DGZYVXJYE9EUZV3QGLXKQG6PGCE4LTJO7LOUJTIPP1ENDGUYSQFFWO5HEU7ZS5WZH403C5WBI3O27HVMPA22TEST6M02UC4SEBKQB5RCTKWO5Y42A5VMVJJI69VEP5NPX9QFOMHPIS94LD4HDU0GTGB0K2EZXG448PGMYKMF152ERO7AEZ0NKG6RJ0Q5F' where id=17; -update noar tt set v2='YKCOYH0X4PMF0N25DGDSMYP7B4446O9NLP99L9P9BV6C80UD5J0RFDI7KV1XEB0MYWT3JGHD25ZXJQKMSQU257V4STCBVLLCNUPGBY1KUMLS07SCFOSS5MKWZ67LMRXVB494VEGK3B102L268GGTNSPPD0JDYWVHJ9C0KZ25WDT4HM0PTOGMNH5QP6RLSYXA12QZHQE7Z8NWWNXJALMT8RXAA4PBYDVX8QQMQ3DFWX735U04MPAIYO408FGK7YCNS' where id=17; -update noar ti set v2='YKCOYH0X4PMF0N25DGDSMYP7B4446O9NLP99L9P9BV6C80UD5J0RFDI7KV1XEB0MYWT3JGHD25ZXJQKMSQU257V4STCBVLLCNUPGBY1KUMLS07SCFOSS5MKWZ67LMRXVB494VEGK3B102L268GGTNSPPD0JDYWVHJ9C0KZ25WDT4HM0PTOGMNH5QP6RLSYXA12QZHQE7Z8NWWNXJALMT8RXAA4PBYDVX8QQMQ3DFWX735U04MPAIYO408FGK7YCNS' where id=17; -update noar tt set v3='KP5DX5S0B9VS9WHXSAUMNKM63GIM0SPCC413Y4SHO4ODNKLVFFZ0AM0CD7C929UPOP2MFJGVS8Z1NKJBC5TIRRKZ58C6HZ61K2DLFN0QMS6H4XNWYNULB708SW2RTHCRLY8TJ6D3400IL3SYAIJ2GCT1I3FD95WY3IY8WB7RF1YAS2A18J5FY161W2G14B444KM2LAEJ8N6B20HMYJ6S280TQH77EMS2ZOGE0ANW1KQZIZYW64W0SZNUZ0VLNBXB0' where id=17; -update noar ti set v3='KP5DX5S0B9VS9WHXSAUMNKM63GIM0SPCC413Y4SHO4ODNKLVFFZ0AM0CD7C929UPOP2MFJGVS8Z1NKJBC5TIRRKZ58C6HZ61K2DLFN0QMS6H4XNWYNULB708SW2RTHCRLY8TJ6D3400IL3SYAIJ2GCT1I3FD95WY3IY8WB7RF1YAS2A18J5FY161W2G14B444KM2LAEJ8N6B20HMYJ6S280TQH77EMS2ZOGE0ANW1KQZIZYW64W0SZNUZ0VLNBXB0' where id=17; -update noar tt set v0='WG6VAJUZN27NNW1XPD5RV9L46GQ0L7CGMJNTASQ4VOU4I1GWFUHDTVQ6031OQ5Y3NIAK2EGTQMVKK1HB4LIVH0BQYWR0J3M3GSIKKJHE0Y0K0186HD1JC0GQR579TVQODPNQ89EEJ8Q8FDIXLJ6UWZA6R8LZRENI6OD6MXZS1YCS0C0CGBLCC48GAYGZWZ0PI3EJ22U21J21T4ZHFYBP97ZTM9I7JNMLA9IEE06X2S9EHGLDVW11BSR4EGQIXNW4W' where id=18; -update noar ti set v0='WG6VAJUZN27NNW1XPD5RV9L46GQ0L7CGMJNTASQ4VOU4I1GWFUHDTVQ6031OQ5Y3NIAK2EGTQMVKK1HB4LIVH0BQYWR0J3M3GSIKKJHE0Y0K0186HD1JC0GQR579TVQODPNQ89EEJ8Q8FDIXLJ6UWZA6R8LZRENI6OD6MXZS1YCS0C0CGBLCC48GAYGZWZ0PI3EJ22U21J21T4ZHFYBP97ZTM9I7JNMLA9IEE06X2S9EHGLDVW11BSR4EGQIXNW4W' where id=18; -update noar tt set v1='4HQWT2BPJW5BDQ0ZBVVOVNQS9RU4BA34KG25AHJVZ1XBKKKN8RBUC8UHW70N359XMPGPJE6N7Q59J83L1KB8JOO71NB0T7AYWPLZUH56EJZWBCWVHHYVMF7M5IMSISEXIFAKF65JH7LCL0YCCLLMF794G2SZQ811PMPVWF1X8QQQJFETEYTOD6NPB8BXXPRW5AYNA5I9MOAGR09QD7B9D70SUL4OBGSRZHNSW4EM5VMBSY97R84G91DGW24EB1KV4' where id=18; -update noar ti set v1='4HQWT2BPJW5BDQ0ZBVVOVNQS9RU4BA34KG25AHJVZ1XBKKKN8RBUC8UHW70N359XMPGPJE6N7Q59J83L1KB8JOO71NB0T7AYWPLZUH56EJZWBCWVHHYVMF7M5IMSISEXIFAKF65JH7LCL0YCCLLMF794G2SZQ811PMPVWF1X8QQQJFETEYTOD6NPB8BXXPRW5AYNA5I9MOAGR09QD7B9D70SUL4OBGSRZHNSW4EM5VMBSY97R84G91DGW24EB1KV4' where id=18; -update noar tt set v2='FODMS2CIVRIXOZJ4YZNX12A32R5V5PT6GL0ODOQ90N7T8YRI2KQYOHGKWIJ0XH10W7WJSA3R4U7HGYY4M2V1S2ATTTYLLYPZ3EZM2X6THUF16FQOC6CBQR2B01E4E3QVAKP2YPWKXE0QJQO8JPK2EZRE7Y8WGSFGLY3HVXUHPG8MBY6G6IQFML3KZC1ZKZUMQH9B4CSQ83N64KWY1Y043V75HV3RNW25TZ49V5V53GM6RMLP84KBAPSX0404BG928' where id=18; -update noar ti set v2='FODMS2CIVRIXOZJ4YZNX12A32R5V5PT6GL0ODOQ90N7T8YRI2KQYOHGKWIJ0XH10W7WJSA3R4U7HGYY4M2V1S2ATTTYLLYPZ3EZM2X6THUF16FQOC6CBQR2B01E4E3QVAKP2YPWKXE0QJQO8JPK2EZRE7Y8WGSFGLY3HVXUHPG8MBY6G6IQFML3KZC1ZKZUMQH9B4CSQ83N64KWY1Y043V75HV3RNW25TZ49V5V53GM6RMLP84KBAPSX0404BG928' where id=18; -update noar tt set v3='1BTDX55UWNACA9AKC3OQOKE16GD6SN1JD9DOHRBSC59XAGJLBS12CRXEZ1TI3V109IFQFP3GH9U61SW7MDVNK27V0X0Z3MN8L8LY728C4W80CI3C6N3J1PGQDKOKW0LWE2S5A2D7XQYK9PXEYXRKQBQZU4SOGXMONV7Y5WJC0DV1HUF4ET6HLR4GNTNI955LAEA5XXWNOM8C7NJ8ZXFXU8Y6YRECWIK1280SSZDZQ2YLC2GP6ID3FN18JQPB8DQ9Y' where id=18; -update noar ti set v3='1BTDX55UWNACA9AKC3OQOKE16GD6SN1JD9DOHRBSC59XAGJLBS12CRXEZ1TI3V109IFQFP3GH9U61SW7MDVNK27V0X0Z3MN8L8LY728C4W80CI3C6N3J1PGQDKOKW0LWE2S5A2D7XQYK9PXEYXRKQBQZU4SOGXMONV7Y5WJC0DV1HUF4ET6HLR4GNTNI955LAEA5XXWNOM8C7NJ8ZXFXU8Y6YRECWIK1280SSZDZQ2YLC2GP6ID3FN18JQPB8DQ9Y' where id=18; -update noar tt set v0='3S3UA4ROC3XQNGKW81PUL9LQDN01654SV1WKXSV0BY6Q0JFQN6AJI32AC18FEG18W1OVCFS7XV32ID493YWVFDRB4Z8TDDKI7LI477FFPFMGTN2G7EZFA8CL59KKOKKFMY2U57FKVUD9XJJJ5X81LP8WQ9LO3WKVLW3DFMRY9G096KJFLLI0W57FNTIZQB7OLH5I99N45FREQVT2LB0B5QGEIHLVKC1WUEVZK85MOIEIQ21N71SEDSBJP52I9PL4W' where id=19; -update noar ti set v0='3S3UA4ROC3XQNGKW81PUL9LQDN01654SV1WKXSV0BY6Q0JFQN6AJI32AC18FEG18W1OVCFS7XV32ID493YWVFDRB4Z8TDDKI7LI477FFPFMGTN2G7EZFA8CL59KKOKKFMY2U57FKVUD9XJJJ5X81LP8WQ9LO3WKVLW3DFMRY9G096KJFLLI0W57FNTIZQB7OLH5I99N45FREQVT2LB0B5QGEIHLVKC1WUEVZK85MOIEIQ21N71SEDSBJP52I9PL4W' where id=19; -update noar tt set v1='X1IR527G5348PF69D1VVJQGI14U8TRI6GO0QPOHD5F1X0IUQZ4HC0O3XO9C4R01ZLWZH9LQR5ULGU3N45XZ0NHBYEQS2FIWBX2LYNLYM4U7WVM9Y3EMP4D9JIRHKVG5QSKRUUEALNZBAE78WUQHCD39PR4JJO5N4ALHK3OHEJU5M32A6S7UWFO15P0LA48D6VVKMUM7KY8JMOVUP1I2QGP8NUJ1TAYJXNES8W24CIYJXRTVF1AVU71TIC9QA07LOF' where id=19; -update noar ti set v1='X1IR527G5348PF69D1VVJQGI14U8TRI6GO0QPOHD5F1X0IUQZ4HC0O3XO9C4R01ZLWZH9LQR5ULGU3N45XZ0NHBYEQS2FIWBX2LYNLYM4U7WVM9Y3EMP4D9JIRHKVG5QSKRUUEALNZBAE78WUQHCD39PR4JJO5N4ALHK3OHEJU5M32A6S7UWFO15P0LA48D6VVKMUM7KY8JMOVUP1I2QGP8NUJ1TAYJXNES8W24CIYJXRTVF1AVU71TIC9QA07LOF' where id=19; -update noar tt set v2='KJ7ZA27HMCST439WCTJV138RKVKCGWQ0D36I65SR0MBFA75FTG1MTL5JR4921Z3JYOSAERNSVJY0LXD29XZ7XHYA3EXIEIGF3WMZKRPMV08SLEGHQTJ88I48HP96JWJBWGB8V198HLQV8LP2IUPSLWFIJD0M35JAN4J54PB9I8N7VCV3MOCSUZOUSD43CYFCRL3CJ1GSZ4Q6E6SJ8J5UUC1ZU51QYFH2EZ1KF9ZD2416THENRTG8IE2MJFHMJX7J5' where id=19; -update noar ti set v2='KJ7ZA27HMCST439WCTJV138RKVKCGWQ0D36I65SR0MBFA75FTG1MTL5JR4921Z3JYOSAERNSVJY0LXD29XZ7XHYA3EXIEIGF3WMZKRPMV08SLEGHQTJ88I48HP96JWJBWGB8V198HLQV8LP2IUPSLWFIJD0M35JAN4J54PB9I8N7VCV3MOCSUZOUSD43CYFCRL3CJ1GSZ4Q6E6SJ8J5UUC1ZU51QYFH2EZ1KF9ZD2416THENRTG8IE2MJFHMJX7J5' where id=19; -update noar tt set v3='55UKNY3IE2N16U0HZ2O9Q0L515BSAK0J5W80LPSZ4QUN105EKN5IOU9PW6WB1AME17JZT9WV6QH1GWIC56732TMYD7E1MW4ZAMQL49O9Z1HKSIV6C0URGKBFC2MDGLE7J19TQK5RP9MD7331FPII0ZMZFWC1ZAI61GJI3ARQ1SEZVTAI7N6C4XFUAYPKNIVMYE4U343HL1F0KLGGSG7HXMG5L1F1ZW8Q9LLQCXORQPBX1MWUJBXIMD1JD4DI83HHW' where id=19; -update noar ti set v3='55UKNY3IE2N16U0HZ2O9Q0L515BSAK0J5W80LPSZ4QUN105EKN5IOU9PW6WB1AME17JZT9WV6QH1GWIC56732TMYD7E1MW4ZAMQL49O9Z1HKSIV6C0URGKBFC2MDGLE7J19TQK5RP9MD7331FPII0ZMZFWC1ZAI61GJI3ARQ1SEZVTAI7N6C4XFUAYPKNIVMYE4U343HL1F0KLGGSG7HXMG5L1F1ZW8Q9LLQCXORQPBX1MWUJBXIMD1JD4DI83HHW' where id=19; -update noar tt set v0='9A4B5GRQGF4NXLB6WTBXEO2T5G18CTDFXNN2Y0S9MJTN6V3VOWVTG8R3KG4UQDPXZV9SOZ9EHJT3CTJJKF5MRRAYTF87592OWN6QMOOGS8N37NK45Y93DA8ZVQ2NT1XPOKJFOGDOFWD2TY92XYMWGSS2L8DYCZ6TWBM4H94Y62WNHJP5T7P7EBBBG40H4TT51FMBE2Z4X0SN5FTFFB0A7IL3HEF6APLWAG9P2RKCHFA0M9YXWIGX5MFUWLBO5E3N5' where id=20; -update noar ti set v0='9A4B5GRQGF4NXLB6WTBXEO2T5G18CTDFXNN2Y0S9MJTN6V3VOWVTG8R3KG4UQDPXZV9SOZ9EHJT3CTJJKF5MRRAYTF87592OWN6QMOOGS8N37NK45Y93DA8ZVQ2NT1XPOKJFOGDOFWD2TY92XYMWGSS2L8DYCZ6TWBM4H94Y62WNHJP5T7P7EBBBG40H4TT51FMBE2Z4X0SN5FTFFB0A7IL3HEF6APLWAG9P2RKCHFA0M9YXWIGX5MFUWLBO5E3N5' where id=20; -update noar tt set v1='ZLG2AY5DRT5OVNO77Z2IU9NQMV8FPO431XBAROHR1FXIY2YVEIOXPNZ22ZMED2ECTPEOLNEWN3EDMYATY32J2QEI5XRJS242T28BXH79PCVYMHDVEV2LVINDRDCB8DYACSA8M6FJMNKGPB9G8YQX5QLXKFX1MXJWOHLW1MVXKSGR5AA0LYJPVFK0LG0UK26TIC4S85P3ZLLTS29C2D92Y6U8TY9N781QN2Z8A8KJ0S3I3L9JTQVMA2DCBEJG4WA92' where id=20; -update noar ti set v1='ZLG2AY5DRT5OVNO77Z2IU9NQMV8FPO431XBAROHR1FXIY2YVEIOXPNZ22ZMED2ECTPEOLNEWN3EDMYATY32J2QEI5XRJS242T28BXH79PCVYMHDVEV2LVINDRDCB8DYACSA8M6FJMNKGPB9G8YQX5QLXKFX1MXJWOHLW1MVXKSGR5AA0LYJPVFK0LG0UK26TIC4S85P3ZLLTS29C2D92Y6U8TY9N781QN2Z8A8KJ0S3I3L9JTQVMA2DCBEJG4WA92' where id=20; -update noar tt set v2='53T4WDL12NJU2J7V66V4AEB78XI3CSH0AHP0DGGK96ZCJQI73V3Z1PU1325GKXW558482ZP0B2JUDPSXBC9R9RCXE1SUDP41C78DQ3V624SCOYK6ZU1F03NB63N3GF1EZJE1OUSMH0I3PK3HRXXESYSAQF46BNB4DMWAA47KBTZIA7IJY1V6S57SA6DXW4ATKENCH8GEYP01IYF6LPEFXRVL912XTK5LD1H4PR1GRAN14SLG5ES63MM4S3KPZCX1Y' where id=20; -update noar ti set v2='53T4WDL12NJU2J7V66V4AEB78XI3CSH0AHP0DGGK96ZCJQI73V3Z1PU1325GKXW558482ZP0B2JUDPSXBC9R9RCXE1SUDP41C78DQ3V624SCOYK6ZU1F03NB63N3GF1EZJE1OUSMH0I3PK3HRXXESYSAQF46BNB4DMWAA47KBTZIA7IJY1V6S57SA6DXW4ATKENCH8GEYP01IYF6LPEFXRVL912XTK5LD1H4PR1GRAN14SLG5ES63MM4S3KPZCX1Y' where id=20; -update noar tt set v3='MIUQ1V9AMOCMV1NFBCN6UXKYUE89QWR09P88V5V7JNET38YL65JERW9T54FWCD8QFLDR72S0HV41OVGE54A2UQB0XU7KLMGNK80S1C49O806IIT1MEBS26QP3L0AGJOYOXECQE8EUTWC87JAWRDDD9LEFGMSZ9PBHPZ91BMOUKIJB3KJ9ONCGG7D4DT1TY37YZJBIV6FB69A886ZCY9TZD6WX0EFU46H1GL9F6VFGFGJ3AJ1EA3JUAIPY4W5T43TO' where id=20; -update noar ti set v3='MIUQ1V9AMOCMV1NFBCN6UXKYUE89QWR09P88V5V7JNET38YL65JERW9T54FWCD8QFLDR72S0HV41OVGE54A2UQB0XU7KLMGNK80S1C49O806IIT1MEBS26QP3L0AGJOYOXECQE8EUTWC87JAWRDDD9LEFGMSZ9PBHPZ91BMOUKIJB3KJ9ONCGG7D4DT1TY37YZJBIV6FB69A886ZCY9TZD6WX0EFU46H1GL9F6VFGFGJ3AJ1EA3JUAIPY4W5T43TO' where id=20; -update noar tt set v0='SVLUC9216J60KEPVL9OC5SJ1H6KQASP581PAU8Y99I28XXPGZ217JOASTSJR1C6CA6ZPWER9DYOQNQM96W8I9N9U2LCSV8C3JTERE1V5CF6YSN8X2U6NQECHMPLQNV8PNXCPLKOI4OYXC83IOMG8QA9C2VG6WIPEQUBLZDNA7C6CWAG0IFYMU1VU5UPQJ0U7XF9ND0JTEKJONI5QKBZ4T2M07FFB566N9DIHRAFJC7UR2MS4SV1SQQMKKGAQEUN6U' where id=21; -update noar ti set v0='SVLUC9216J60KEPVL9OC5SJ1H6KQASP581PAU8Y99I28XXPGZ217JOASTSJR1C6CA6ZPWER9DYOQNQM96W8I9N9U2LCSV8C3JTERE1V5CF6YSN8X2U6NQECHMPLQNV8PNXCPLKOI4OYXC83IOMG8QA9C2VG6WIPEQUBLZDNA7C6CWAG0IFYMU1VU5UPQJ0U7XF9ND0JTEKJONI5QKBZ4T2M07FFB566N9DIHRAFJC7UR2MS4SV1SQQMKKGAQEUN6U' where id=21; -update noar tt set v1='G387H4MFM9PFE6MBY8BRAHEOY6A1MS9NIAJQMWD3IYVQK36UQRUUZG6R78XDKIC2NX7RNQVLILYKE1VPQ6OD040HKUOYCB00F8OB6ZZPABNZFH2T5DDDDQE1DAU0NIVC5X7WQMIB47AA18D7EWLP1R03D7WKASR8WKGNE3DIDQR3S4UA6UCM174RV9XW8YLAMSJ7SFATJ9LYTNQQW6868SIW0ICY1JB8GXJY0Q4V9EVI0XKFJCUZ9GWFF5BYDXFXW' where id=21; -update noar ti set v1='G387H4MFM9PFE6MBY8BRAHEOY6A1MS9NIAJQMWD3IYVQK36UQRUUZG6R78XDKIC2NX7RNQVLILYKE1VPQ6OD040HKUOYCB00F8OB6ZZPABNZFH2T5DDDDQE1DAU0NIVC5X7WQMIB47AA18D7EWLP1R03D7WKASR8WKGNE3DIDQR3S4UA6UCM174RV9XW8YLAMSJ7SFATJ9LYTNQQW6868SIW0ICY1JB8GXJY0Q4V9EVI0XKFJCUZ9GWFF5BYDXFXW' where id=21; -update noar tt set v2='RTFNBX0IMOHQGV2J2BO2DCI9GNHL2LUOVXWIV6PRLNRVQTIOS6OTQWA5K66WAWYZBO3IF54ZSMFYADTRNJ8370D8XO5ENUBQ2XNLWQUGOLPMKQ8FDHIR1O3399XV1WXP9BMRKKSQ9MWC6OWUB40LJX0YJIP0DE0BELD1B7YNP7FBG92VZ8NQKS5GAI9Z4XP7VXGTT4SH0EMX44ZOOTV5VXK4ZE2V98M8FEEHW7U5QDP4SJYRI33XOLFKYHFMZX6ZB' where id=21; -update noar ti set v2='RTFNBX0IMOHQGV2J2BO2DCI9GNHL2LUOVXWIV6PRLNRVQTIOS6OTQWA5K66WAWYZBO3IF54ZSMFYADTRNJ8370D8XO5ENUBQ2XNLWQUGOLPMKQ8FDHIR1O3399XV1WXP9BMRKKSQ9MWC6OWUB40LJX0YJIP0DE0BELD1B7YNP7FBG92VZ8NQKS5GAI9Z4XP7VXGTT4SH0EMX44ZOOTV5VXK4ZE2V98M8FEEHW7U5QDP4SJYRI33XOLFKYHFMZX6ZB' where id=21; -update noar tt set v3='WXBULGD94O04KDUPE250V2XT6DDAL2NSUORYTI50TCRTMNJ8XNRV775P7QEYGS7E9IOWFBUFA2XSFXW0WISEJMYTE0BJKQIXZSQX58E9ANQUH56DBEIWBOY0PIJJNZ3ADLMM49T4RX69IX1W4M86W56DM2ATXLTOGJC0SPPYQMMMWA2MGENIUWKI022W3FWNKLSHSGV8SAEW6XTF6GPYBGLYHS6XUS454PPQE6GGK0UB4TNLDQXFS7UDUGB2CWYQO' where id=21; -update noar ti set v3='WXBULGD94O04KDUPE250V2XT6DDAL2NSUORYTI50TCRTMNJ8XNRV775P7QEYGS7E9IOWFBUFA2XSFXW0WISEJMYTE0BJKQIXZSQX58E9ANQUH56DBEIWBOY0PIJJNZ3ADLMM49T4RX69IX1W4M86W56DM2ATXLTOGJC0SPPYQMMMWA2MGENIUWKI022W3FWNKLSHSGV8SAEW6XTF6GPYBGLYHS6XUS454PPQE6GGK0UB4TNLDQXFS7UDUGB2CWYQO' where id=21; -update noar tt set v0='JEEZEZGZ7ONLNEXWNOZ6IEOLE70TS3FG9M1B48MGOMZ67QQEZ4KX7PJUIPAECUE8TRF5NOODH9C405C5DD1YESEOMTCGP54NET4WJ0XG3Q88JK6NHAF1T85KM3JDSIUDHXUDGIJA1ISS7YRUBI4NY3SCBP6NEO6YJWP605301X5SQW6GD6E1PR07YPPULZO85CR2EGGM483ZBFJWA1MMBCO8CX6885JAOM078PIA8FTQ1ERDBQRUW2Y30PCGEJ1RC' where id=22; -update noar ti set v0='JEEZEZGZ7ONLNEXWNOZ6IEOLE70TS3FG9M1B48MGOMZ67QQEZ4KX7PJUIPAECUE8TRF5NOODH9C405C5DD1YESEOMTCGP54NET4WJ0XG3Q88JK6NHAF1T85KM3JDSIUDHXUDGIJA1ISS7YRUBI4NY3SCBP6NEO6YJWP605301X5SQW6GD6E1PR07YPPULZO85CR2EGGM483ZBFJWA1MMBCO8CX6885JAOM078PIA8FTQ1ERDBQRUW2Y30PCGEJ1RC' where id=22; -update noar tt set v1='L14W6JEIRD4STH3155ALH505X12KZM78GJ20UJT7HS7OH05LT36MUTEDO64UEOQCBAQ8SZF2PFHXF7AH4OJ63EA7V4KRD5SJK7B2ZKZ8V0RQJ4WQYVKK1H9SM2WCLJU8WASNP6K5I3WGFT7O56GFX0BBMGJQ9QMPPLFCDIW9X7S1AFV2A91WT9443OQ92J086H7GOJKPC2OHXLLGVSWFG6LRQ165WQ6ZJFV9WHWMY71E6OLP4SBDKFI5XWGT29UW9' where id=22; -update noar ti set v1='L14W6JEIRD4STH3155ALH505X12KZM78GJ20UJT7HS7OH05LT36MUTEDO64UEOQCBAQ8SZF2PFHXF7AH4OJ63EA7V4KRD5SJK7B2ZKZ8V0RQJ4WQYVKK1H9SM2WCLJU8WASNP6K5I3WGFT7O56GFX0BBMGJQ9QMPPLFCDIW9X7S1AFV2A91WT9443OQ92J086H7GOJKPC2OHXLLGVSWFG6LRQ165WQ6ZJFV9WHWMY71E6OLP4SBDKFI5XWGT29UW9' where id=22; -update noar tt set v2='UO15756S4IHK8GC5580ND2Z523LKMT8J48J4GXFJTBSJ9QTCJ9T1VWDD92UQ7FI82R3BCOLJM4JV09GAW4D02QR3OFJH665RYQYVPW60DXHBFCO1VZTOR4XMOE749DWZUYUJ5L09MKCQLHVF1SKWI3SKXDOE6NNAX6FZD1KC22ILYI6CV379FCZZ525I64Z1WXGHD6O2XNJJSIRQEE5SYDKR75PKLA5B3ZM1WY7SQ0F3EGB8T85IN6NIZH9W8CQCZ' where id=22; -update noar ti set v2='UO15756S4IHK8GC5580ND2Z523LKMT8J48J4GXFJTBSJ9QTCJ9T1VWDD92UQ7FI82R3BCOLJM4JV09GAW4D02QR3OFJH665RYQYVPW60DXHBFCO1VZTOR4XMOE749DWZUYUJ5L09MKCQLHVF1SKWI3SKXDOE6NNAX6FZD1KC22ILYI6CV379FCZZ525I64Z1WXGHD6O2XNJJSIRQEE5SYDKR75PKLA5B3ZM1WY7SQ0F3EGB8T85IN6NIZH9W8CQCZ' where id=22; -update noar tt set v3='48G9L26BM5A5IL4MF2VFZ7SAC5XQEFKBNU898PMEW7TANRVXIW6Y1JEYQMTURT6HRF355ROJ1E09OR5Z5GI2H3724R86NIBCQ4G2BQFCACINEDJNKN04A46BJGV4G4PPB67ALJJEZJQ0X9EYHISYQH6TCWQ4AX7CL0ZCKNNY6CP2VHYSQ8OCI3JMRBPLJRLB9PXULNTG6IKQ6J4K66C3RM6122FLFTZYZCNKEA692YNF71QS7VU8W260EAHSGO42H' where id=22; -update noar ti set v3='48G9L26BM5A5IL4MF2VFZ7SAC5XQEFKBNU898PMEW7TANRVXIW6Y1JEYQMTURT6HRF355ROJ1E09OR5Z5GI2H3724R86NIBCQ4G2BQFCACINEDJNKN04A46BJGV4G4PPB67ALJJEZJQ0X9EYHISYQH6TCWQ4AX7CL0ZCKNNY6CP2VHYSQ8OCI3JMRBPLJRLB9PXULNTG6IKQ6J4K66C3RM6122FLFTZYZCNKEA692YNF71QS7VU8W260EAHSGO42H' where id=22; -update noar tt set v0='742W4TS0469RFUNWNWDLI1TQJF2VMR3WZWVURHMRRV7FD4LIRO8HIVBW6SMMJHINQ7IR670MKDA46P3P2IQNJ8GE9JZOC4W2UOIW2HLOTVKVA2NH52P3PSYI8O6XM8ZOESMS5VTSTSYRU29U7Q5P6AH9KNSGMIXOTV24FGT3E7SU1P05XKZVGFRU8OF4YITK37DEUAWY0C57EI95OEH07M99GCXQ68RPZF3DZ84IFGTV4Q35FR8Z01FAEC8F81ZM6' where id=23; -update noar ti set v0='742W4TS0469RFUNWNWDLI1TQJF2VMR3WZWVURHMRRV7FD4LIRO8HIVBW6SMMJHINQ7IR670MKDA46P3P2IQNJ8GE9JZOC4W2UOIW2HLOTVKVA2NH52P3PSYI8O6XM8ZOESMS5VTSTSYRU29U7Q5P6AH9KNSGMIXOTV24FGT3E7SU1P05XKZVGFRU8OF4YITK37DEUAWY0C57EI95OEH07M99GCXQ68RPZF3DZ84IFGTV4Q35FR8Z01FAEC8F81ZM6' where id=23; -update noar tt set v1='FPBNQIHCIJ810F5HG2JL6G8WW4DNU0POZ3TKRAU0RD32YGB27APJJB3GBO1826IB1C1OVJBSE6X2N0VI8RDWLHE2K36ZNTX1ILGEULWH8W0AH8N2W3B6886XENFFRUGD2C8EXKMD5FMSFWP0VJD7GS244EDSTJXGQA31ZM86EW9HCCH131RVXDVQ54DGD6X8QKRIILOI5355EKFHTKQM9HCP00IWYSNA56JMPZDO7AGJCC31PH4XOB3R23Y89S8AC' where id=23; -update noar ti set v1='FPBNQIHCIJ810F5HG2JL6G8WW4DNU0POZ3TKRAU0RD32YGB27APJJB3GBO1826IB1C1OVJBSE6X2N0VI8RDWLHE2K36ZNTX1ILGEULWH8W0AH8N2W3B6886XENFFRUGD2C8EXKMD5FMSFWP0VJD7GS244EDSTJXGQA31ZM86EW9HCCH131RVXDVQ54DGD6X8QKRIILOI5355EKFHTKQM9HCP00IWYSNA56JMPZDO7AGJCC31PH4XOB3R23Y89S8AC' where id=23; -update noar tt set v2='SSXNTOVFT1V1W09WGG0UFW0KI84DZUUVAWPH989N2H76M1ZXQLH8FBFG9JC124ESP2Q7U4LSIVFQ681AAO99NJLOHVWI83ALBHUF6QNZKZG0MPPQ4FI02TQUUWRYOUD7IBMQACR36IB7XGZ01U7DI60GCA3AOB9IFHB48KVJTTHVIWBYURC640DHSTKH2YXUSNJHIUBFNLO8BIVJ67WZ60USJ542HEB6KK1TIBDH348LBJ3DIS8V9CMR3A3OCJ6A7' where id=23; -update noar ti set v2='SSXNTOVFT1V1W09WGG0UFW0KI84DZUUVAWPH989N2H76M1ZXQLH8FBFG9JC124ESP2Q7U4LSIVFQ681AAO99NJLOHVWI83ALBHUF6QNZKZG0MPPQ4FI02TQUUWRYOUD7IBMQACR36IB7XGZ01U7DI60GCA3AOB9IFHB48KVJTTHVIWBYURC640DHSTKH2YXUSNJHIUBFNLO8BIVJ67WZ60USJ542HEB6KK1TIBDH348LBJ3DIS8V9CMR3A3OCJ6A7' where id=23; -update noar tt set v3='7OYKHHGBLUCKU96U9QEYG8RLEAQQRQZRDCTUX6C0AMSPEB867J72NBKRGSKQIBA3TB50J5HYSVPCFTUKDYW54F10W388C046KDSZWYJ8W97FR0WRN7U2T84X5VF54ICHFZF9LNNN4NXP6EUDSX0T39UEI82W5GF1VVCQ8CX7ZLVMEST9KH6267DYB1E067NW2T3IGW8ZJVS9UAWK2ALGHEVOBNAKOENJWE6IGNEND4WK1DMUVVVN0R4S4KEYXYXGY' where id=23; -update noar ti set v3='7OYKHHGBLUCKU96U9QEYG8RLEAQQRQZRDCTUX6C0AMSPEB867J72NBKRGSKQIBA3TB50J5HYSVPCFTUKDYW54F10W388C046KDSZWYJ8W97FR0WRN7U2T84X5VF54ICHFZF9LNNN4NXP6EUDSX0T39UEI82W5GF1VVCQ8CX7ZLVMEST9KH6267DYB1E067NW2T3IGW8ZJVS9UAWK2ALGHEVOBNAKOENJWE6IGNEND4WK1DMUVVVN0R4S4KEYXYXGY' where id=23; -update noar tt set v0='UKHGEYJNEHB43UYR29RVIX2E69BM38JXOIWFE0YKEGM21M2QBYN9LLTTUZFIGG1MQJL3NJJF4VT704R5L38LZ6JRAQL8XPDRQ4P7JBYKXR43AXWZEO4GF8RD90R1750ZGGFVOCMQPEH1SZLBU9GA5RH3U9XR43D02N1YLV2OK81J1JPEF3SO600S0F9EHDSRZROBYPTO964G2B1IEUT4B8LXV0JQ011KBLNKQ2HY29DY2GIBS2QP0DPYGGGL04VRX' where id=24; -update noar ti set v0='UKHGEYJNEHB43UYR29RVIX2E69BM38JXOIWFE0YKEGM21M2QBYN9LLTTUZFIGG1MQJL3NJJF4VT704R5L38LZ6JRAQL8XPDRQ4P7JBYKXR43AXWZEO4GF8RD90R1750ZGGFVOCMQPEH1SZLBU9GA5RH3U9XR43D02N1YLV2OK81J1JPEF3SO600S0F9EHDSRZROBYPTO964G2B1IEUT4B8LXV0JQ011KBLNKQ2HY29DY2GIBS2QP0DPYGGGL04VRX' where id=24; -update noar tt set v1='WR3NEMXH8RB6CVIENPJRQE5UU412PHLH1K9LSHKMKQQW1KW57G0YWOS081DB9HL7DBR2B2FW9SUZOS37YTVCHWT8CTTIB78WWTSEVFNTRH4WPZ5BRN1W3Q8Q0IE8ZHAW6VD2JRFI6O384RABB61MF09H9YWX3FLTDU75UG1CTV8NW00BEXI58PHJSWHC4OIOUOKZBN8GQBJFX0WB4HS14LWEJ7MB2KJQDAIEN5J1H78KYLZ9HTKIFQEASH188HTMD' where id=24; -update noar ti set v1='WR3NEMXH8RB6CVIENPJRQE5UU412PHLH1K9LSHKMKQQW1KW57G0YWOS081DB9HL7DBR2B2FW9SUZOS37YTVCHWT8CTTIB78WWTSEVFNTRH4WPZ5BRN1W3Q8Q0IE8ZHAW6VD2JRFI6O384RABB61MF09H9YWX3FLTDU75UG1CTV8NW00BEXI58PHJSWHC4OIOUOKZBN8GQBJFX0WB4HS14LWEJ7MB2KJQDAIEN5J1H78KYLZ9HTKIFQEASH188HTMD' where id=24; -update noar tt set v2='UCAQ0O4WP1ILS1UAVXLI6P4506AIR4L2C85SDBQGRQ8UCUCRALFACCV62U1CBAI1QNGFDXI59ISN3M48235LYA279VU96P38BFPFJPRNAQXR3H3CAUXTQSQLMJZS00HBWLW2T6ZDP0S8QGHGO84HI0MQ6DAZT4UKYQKAWRE4AIAY3PHEQWX23UN55W2YLKGTFWILEDICTITMZZ5DFIGXMQC9DERTEBU7ZCG2LEWPIR6K3GAWAA9SIK8RPWTS6S0TK' where id=24; -update noar ti set v2='UCAQ0O4WP1ILS1UAVXLI6P4506AIR4L2C85SDBQGRQ8UCUCRALFACCV62U1CBAI1QNGFDXI59ISN3M48235LYA279VU96P38BFPFJPRNAQXR3H3CAUXTQSQLMJZS00HBWLW2T6ZDP0S8QGHGO84HI0MQ6DAZT4UKYQKAWRE4AIAY3PHEQWX23UN55W2YLKGTFWILEDICTITMZZ5DFIGXMQC9DERTEBU7ZCG2LEWPIR6K3GAWAA9SIK8RPWTS6S0TK' where id=24; -update noar tt set v3='XGLATUXOQZCS5PVNTA7P4BKEHF23QYWXMO6FL334424I087RPN9095VM4SBBK7RSQNW9R1EDNMCLHEFDBWUZ8APJ26POHN3SWHL6BR3W5I3KONYG9TEHM38ELG4EP7GTZ0H3TLGUZS1WT2PF1U468M9PX57DGYTXYH1KET4P8EP24ZBK783ZTRHC60MKYM6CV53TZM5EID31GJAED5DNOG6FBJ31DPCKKB70EG6B1O5V0NUNLY28ZAZMNOTCXY2OM' where id=24; -update noar ti set v3='XGLATUXOQZCS5PVNTA7P4BKEHF23QYWXMO6FL334424I087RPN9095VM4SBBK7RSQNW9R1EDNMCLHEFDBWUZ8APJ26POHN3SWHL6BR3W5I3KONYG9TEHM38ELG4EP7GTZ0H3TLGUZS1WT2PF1U468M9PX57DGYTXYH1KET4P8EP24ZBK783ZTRHC60MKYM6CV53TZM5EID31GJAED5DNOG6FBJ31DPCKKB70EG6B1O5V0NUNLY28ZAZMNOTCXY2OM' where id=24; -update noar tt set v0='LET2ITC7OAO0EV495YIAH04HVBSXWFG4FS202U7P369X29RB8EBI86EMMKITTGOQROVSVD5ZT2IOE6FXM5SLQLN8QZD3K0MGUEE8UGPBLBAE7PLX71IJ3LLERHTFZTGYWR1E0YA4A3VPZYV9HGCG0149HK7FN36U9DCOE4AM4264LMJ1GK4QOMDKCDMV7JLD5MVUJZX8Y6N8NHHLCQ1FVT7P15LC7CJOPNIO482RXFD8BY53FY0LS895WMW5PKCA0' where id=25; -update noar ti set v0='LET2ITC7OAO0EV495YIAH04HVBSXWFG4FS202U7P369X29RB8EBI86EMMKITTGOQROVSVD5ZT2IOE6FXM5SLQLN8QZD3K0MGUEE8UGPBLBAE7PLX71IJ3LLERHTFZTGYWR1E0YA4A3VPZYV9HGCG0149HK7FN36U9DCOE4AM4264LMJ1GK4QOMDKCDMV7JLD5MVUJZX8Y6N8NHHLCQ1FVT7P15LC7CJOPNIO482RXFD8BY53FY0LS895WMW5PKCA0' where id=25; -update noar tt set v1='BLLIFZZB3919MUJNPCVE7BSOY7J1YJS7ALBBMYTZVZ3EVHMP47DKE59BUOA4A3H731EYB4AVUCY7KSOGZJDKIL51UMQIW1RI1Q6TRTC1K2430ZU08FTNWROFC250J6X24AIYPL5BG8MIYYPIE36KPG9B1CHLA568L06A22CDU9P90DEP7Z6X0OO4DCNT2ZRL54CPFM0TD71S05RJUALNU4LMCOCSFIB0WYGEDQ1W3UWWD9S2O2IUUSCSUX6E1KGP6' where id=25; -update noar ti set v1='BLLIFZZB3919MUJNPCVE7BSOY7J1YJS7ALBBMYTZVZ3EVHMP47DKE59BUOA4A3H731EYB4AVUCY7KSOGZJDKIL51UMQIW1RI1Q6TRTC1K2430ZU08FTNWROFC250J6X24AIYPL5BG8MIYYPIE36KPG9B1CHLA568L06A22CDU9P90DEP7Z6X0OO4DCNT2ZRL54CPFM0TD71S05RJUALNU4LMCOCSFIB0WYGEDQ1W3UWWD9S2O2IUUSCSUX6E1KGP6' where id=25; -update noar tt set v2='E3DEFLQW33FV7W6GXU4KUXFAMQ1T2GS0JM7YSZOI8VS8LLGVEFLWPVU19E1Z2GVP7AQ2CT0HSMFJUPALLHHNKH4L327F3FWATH3KFZ2FQL7SE7TNMB35B19KB4ZFWURWC7MENP8OX34BVXOXLHNC06H1T9CHT968UZK6QTGY4D82KMNTQ9FPWTL42B9VEBM8EGK9SMKKZ39KTMTJE1NA2OBBGGLYC4ZRDOHT173EZF1SSQEFTL83OTFFZF6JH741U' where id=25; -update noar ti set v2='E3DEFLQW33FV7W6GXU4KUXFAMQ1T2GS0JM7YSZOI8VS8LLGVEFLWPVU19E1Z2GVP7AQ2CT0HSMFJUPALLHHNKH4L327F3FWATH3KFZ2FQL7SE7TNMB35B19KB4ZFWURWC7MENP8OX34BVXOXLHNC06H1T9CHT968UZK6QTGY4D82KMNTQ9FPWTL42B9VEBM8EGK9SMKKZ39KTMTJE1NA2OBBGGLYC4ZRDOHT173EZF1SSQEFTL83OTFFZF6JH741U' where id=25; -update noar tt set v3='G7DCK92JDBMTPDWV5E3AU6N81LP41Z2LE157M222BUUC7JNBFAB1CLTM5NRN3E3OT5V0X0PND9RXZJXBCQO6XIG60ZT9UMLKY5JMFVZRFCJ1FVS4WD1RAEGBPNWYWOU857QVJ87C602NB7TDQCAURU7ZE2JCYQCV5N83XW9Z4JCVUS7MOJFLLBOCQEN1BHVCG4ZW11YFN8F8JDAH4F0W4HUZE7D7S3YZC3HEVYMJVWEBQUEI96D5UHCZ9NZ2AFAAS' where id=25; -update noar ti set v3='G7DCK92JDBMTPDWV5E3AU6N81LP41Z2LE157M222BUUC7JNBFAB1CLTM5NRN3E3OT5V0X0PND9RXZJXBCQO6XIG60ZT9UMLKY5JMFVZRFCJ1FVS4WD1RAEGBPNWYWOU857QVJ87C602NB7TDQCAURU7ZE2JCYQCV5N83XW9Z4JCVUS7MOJFLLBOCQEN1BHVCG4ZW11YFN8F8JDAH4F0W4HUZE7D7S3YZC3HEVYMJVWEBQUEI96D5UHCZ9NZ2AFAAS' where id=25; -update noar tt set v0='92KSYM6D0QCDKV6DR6LGYQAJEPP6K3JK2MTYAJNH0OXI4VQHM83F3BNE98KWRN42GS47PMIAEJ026T8JH1OT3YXNMVVN7SX0EENAWG1UO7M83KHK9WA93W3UYPTSJ1AHT9CLSXFONP9SP2RERG0VNRZQQKIUTPPXO2QE5HJJVIWW051SWF6UUR188AKPEIXZ908JSOEGFJ2QTYY1LZ7GN2AG3JMLT8KOT8VXJRKVVY8BVVI13O5GDKL748CC5T762' where id=26; -update noar ti set v0='92KSYM6D0QCDKV6DR6LGYQAJEPP6K3JK2MTYAJNH0OXI4VQHM83F3BNE98KWRN42GS47PMIAEJ026T8JH1OT3YXNMVVN7SX0EENAWG1UO7M83KHK9WA93W3UYPTSJ1AHT9CLSXFONP9SP2RERG0VNRZQQKIUTPPXO2QE5HJJVIWW051SWF6UUR188AKPEIXZ908JSOEGFJ2QTYY1LZ7GN2AG3JMLT8KOT8VXJRKVVY8BVVI13O5GDKL748CC5T762' where id=26; -update noar tt set v1='JXZVHXEQD2EXJZ31HK5GXDP0Z5LMZAT3ODLLX9RHRVO581QGVDIY982M6K8KGVDGHQDI1ZMTP3XVO1XTCSB9UUFHNAREOI92W32044SGWWXY5310TIK780YKWDNC1UQ86014PDT4KVHYWCGKYMIEGRLG989E708XTK78R41RQPM370QLS9VNWS6IGY2L6VISSPYVRFF0I4BB966ZGJX5W4K3NH1GEJT5DMN1DFQ7YIL2U9KMHRUUABJC6SEVXDHXA' where id=26; -update noar ti set v1='JXZVHXEQD2EXJZ31HK5GXDP0Z5LMZAT3ODLLX9RHRVO581QGVDIY982M6K8KGVDGHQDI1ZMTP3XVO1XTCSB9UUFHNAREOI92W32044SGWWXY5310TIK780YKWDNC1UQ86014PDT4KVHYWCGKYMIEGRLG989E708XTK78R41RQPM370QLS9VNWS6IGY2L6VISSPYVRFF0I4BB966ZGJX5W4K3NH1GEJT5DMN1DFQ7YIL2U9KMHRUUABJC6SEVXDHXA' where id=26; -update noar tt set v2='6A6VBLBJYWFNJZP5AO8GHNS5KSAXM4U48R990LAP038RA0YJX9TFPCJMN8QB4MS47U6J8IZHV7FCHE9PTD3ZCS66DTPTME52GQEFDQT33XDYMA8E0CV71SZ4H8FCJ7XXNEU98DW7CNDMOAQ94L3QVM86QJCCC0Z9IS6M1YQYMZ1CDWEQQN95Z6RUM97QMFCZ7UAEFI9D3MNUKP8S8XAA0GT2KBQZW5XXX8K537MZM8IHWQ0PPBDJ1MAA3ARIS7VUD' where id=26; -update noar ti set v2='6A6VBLBJYWFNJZP5AO8GHNS5KSAXM4U48R990LAP038RA0YJX9TFPCJMN8QB4MS47U6J8IZHV7FCHE9PTD3ZCS66DTPTME52GQEFDQT33XDYMA8E0CV71SZ4H8FCJ7XXNEU98DW7CNDMOAQ94L3QVM86QJCCC0Z9IS6M1YQYMZ1CDWEQQN95Z6RUM97QMFCZ7UAEFI9D3MNUKP8S8XAA0GT2KBQZW5XXX8K537MZM8IHWQ0PPBDJ1MAA3ARIS7VUD' where id=26; -update noar tt set v3='TYG0RN23Z6U36OA28913RTYOSX0EQ6J7Y1ME10VLMRDEBQ4HPF1VWP35TI4GVQ9G28TDTB7ZKRSKIFYFWCX9H8UUX26W0SBX9TBI0VUCPM1PZKYO3P7QQZSH88X7ZK0702KC9GAFFSMKQJA2ARWV2S4741OU4WTJAQ8ZTAM2PH25LK2ERCAX038KMWXN1K1YWV273L6STNQBJZQ7GD26GBO0VT6V9EX7RBIU1JG6UTNRAYMRCVKDVG0MRUWM0OD8O' where id=26; -update noar ti set v3='TYG0RN23Z6U36OA28913RTYOSX0EQ6J7Y1ME10VLMRDEBQ4HPF1VWP35TI4GVQ9G28TDTB7ZKRSKIFYFWCX9H8UUX26W0SBX9TBI0VUCPM1PZKYO3P7QQZSH88X7ZK0702KC9GAFFSMKQJA2ARWV2S4741OU4WTJAQ8ZTAM2PH25LK2ERCAX038KMWXN1K1YWV273L6STNQBJZQ7GD26GBO0VT6V9EX7RBIU1JG6UTNRAYMRCVKDVG0MRUWM0OD8O' where id=26; -update noar tt set v0='1QKXZMD6C0L0Z79BL758AD91MJFXVS5QMEX33FAPO1HG7L440CS7UO12FGEPW33X6RJ5W5NYORVTOHTLB6K7R3A5THQIN6AIMH05J1EKF9ZZZSL07GG0MSG4UVS1CQ6KYOSC3LR11XERDPT02YJS97HFDFWHMGIFPLHRZPALX5F8KPSQCQU0FVCCLM8NUKG4C9ZTSQHW1Y9BXP876U17NF7O9GR5VN4XG6ATQKKMO5KUVPQV8GK2KUVNR32EIN35G' where id=27; -update noar ti set v0='1QKXZMD6C0L0Z79BL758AD91MJFXVS5QMEX33FAPO1HG7L440CS7UO12FGEPW33X6RJ5W5NYORVTOHTLB6K7R3A5THQIN6AIMH05J1EKF9ZZZSL07GG0MSG4UVS1CQ6KYOSC3LR11XERDPT02YJS97HFDFWHMGIFPLHRZPALX5F8KPSQCQU0FVCCLM8NUKG4C9ZTSQHW1Y9BXP876U17NF7O9GR5VN4XG6ATQKKMO5KUVPQV8GK2KUVNR32EIN35G' where id=27; -update noar tt set v1='43D4WF8721S3JA8E40KNKVPSRQ0A6CSIGKB60E1WG7723NVXE7ZN2HDSV62XPAXBMOB0OIS42219X1SN23XUQ43LH23L3GNKTZ601EX9G23BP1GUKXXJ4HNEHDW8VVXOVAXFL3R1X0WD2J1FU0R4N8O0DM062SNGZKDZVUV77OOAO2HQ81A29DUJ1TI23VBGNB4BPZN5D9TYHIK72WENPQURVCKRAV21GHUII9Y53UO6I05KKQKZGMLG3HC6JCYR5' where id=27; -update noar ti set v1='43D4WF8721S3JA8E40KNKVPSRQ0A6CSIGKB60E1WG7723NVXE7ZN2HDSV62XPAXBMOB0OIS42219X1SN23XUQ43LH23L3GNKTZ601EX9G23BP1GUKXXJ4HNEHDW8VVXOVAXFL3R1X0WD2J1FU0R4N8O0DM062SNGZKDZVUV77OOAO2HQ81A29DUJ1TI23VBGNB4BPZN5D9TYHIK72WENPQURVCKRAV21GHUII9Y53UO6I05KKQKZGMLG3HC6JCYR5' where id=27; -update noar tt set v2='TVFMQGD8SHUMGWLDECLPQOZ3DZZJSW6SESKODE5SV4WNWHTUHBQ6KKLQYDHQ8O03HM11S5NX7P20QH30C9102LI7HF754799AIDNN3OQC18CD4OP938YDZCBGFSUW24IY0G8QJQRM7BIE6FVI2WNSV04S67M4JAY20C7LZXYPBAJU17TEJN1X2ONMHM2QTOYSTDDGBPWKQD3D8716WUK1FAG9KFPY44WZXI64BU1SLA8EIFV4C0DEQJJUYGE3HIKF' where id=27; -update noar ti set v2='TVFMQGD8SHUMGWLDECLPQOZ3DZZJSW6SESKODE5SV4WNWHTUHBQ6KKLQYDHQ8O03HM11S5NX7P20QH30C9102LI7HF754799AIDNN3OQC18CD4OP938YDZCBGFSUW24IY0G8QJQRM7BIE6FVI2WNSV04S67M4JAY20C7LZXYPBAJU17TEJN1X2ONMHM2QTOYSTDDGBPWKQD3D8716WUK1FAG9KFPY44WZXI64BU1SLA8EIFV4C0DEQJJUYGE3HIKF' where id=27; -update noar tt set v3='C0I4MZG3VJFEYG3NN1WMQ4YFNKCB9X3VLF14YMK561P02VCEJT5DY69BT3X2L8TWFY3UEGO8W7MT2AL3ZW0ML9VG7XHT47HJ2FPES3JQO36QYRINFDAO7Z6AOEYWO7N3231SKTE9Q07WB7ME4R9C4LAH2GXWWFUAP3CXERVK88ZAQC0EXYUBNJPVCKK9Y79SY0P676HRIAWYYSN2S9EC1HB264G3WV2P4U2UOZXJWS8HO41NI1JVWEHH54SZRV7F3' where id=27; -update noar ti set v3='C0I4MZG3VJFEYG3NN1WMQ4YFNKCB9X3VLF14YMK561P02VCEJT5DY69BT3X2L8TWFY3UEGO8W7MT2AL3ZW0ML9VG7XHT47HJ2FPES3JQO36QYRINFDAO7Z6AOEYWO7N3231SKTE9Q07WB7ME4R9C4LAH2GXWWFUAP3CXERVK88ZAQC0EXYUBNJPVCKK9Y79SY0P676HRIAWYYSN2S9EC1HB264G3WV2P4U2UOZXJWS8HO41NI1JVWEHH54SZRV7F3' where id=27; -update noar tt set v0='1OFQBNZLWM12SWD0XSFBDNVNLEMT30TQW6B60KHOW829W8MIO6WVQLU6BRW2SEMSGQHP5T373ZXFDOKKJKEIDNKIH5YL9H6G2RBPVLU2L4ORCRU1JHKEZXO38PIK1Q2MHI2RCEZIIICPFN6RNXUXOWXAH8YFKT06HGKVNOLXEVPZCVR31XMAIK4USJ2CVMJMPW1YBCHRVTHISWU5IDB3E13TKKVMP1SYD1MIKQDT1VOMJ9YF1ITKJRM4URONRKHQS' where id=28; -update noar ti set v0='1OFQBNZLWM12SWD0XSFBDNVNLEMT30TQW6B60KHOW829W8MIO6WVQLU6BRW2SEMSGQHP5T373ZXFDOKKJKEIDNKIH5YL9H6G2RBPVLU2L4ORCRU1JHKEZXO38PIK1Q2MHI2RCEZIIICPFN6RNXUXOWXAH8YFKT06HGKVNOLXEVPZCVR31XMAIK4USJ2CVMJMPW1YBCHRVTHISWU5IDB3E13TKKVMP1SYD1MIKQDT1VOMJ9YF1ITKJRM4URONRKHQS' where id=28; -update noar tt set v1='GAWPIKDNCSV6UCW3UN6HR4JN75W5HWJZJHBTEE1WCIHNHULR7L9GOB627DMZW895ZDY1PTCLOSN8P32QMITOMKXUIRY67DJU0QZJHQTW147DAASJHWNMQB6ODOXU8EHREC7ECNZB1G9CMJS6BM9FTBCC3UI2VN4SSUAZMF0S052COEBF7DBJHC4T7NCTENF5RH8I44WU839IV1MAFWS10M2V73E4YDCT12VVDU2CPGHMY3CO93LBH053BKUB0ZG8Y' where id=28; -update noar ti set v1='GAWPIKDNCSV6UCW3UN6HR4JN75W5HWJZJHBTEE1WCIHNHULR7L9GOB627DMZW895ZDY1PTCLOSN8P32QMITOMKXUIRY67DJU0QZJHQTW147DAASJHWNMQB6ODOXU8EHREC7ECNZB1G9CMJS6BM9FTBCC3UI2VN4SSUAZMF0S052COEBF7DBJHC4T7NCTENF5RH8I44WU839IV1MAFWS10M2V73E4YDCT12VVDU2CPGHMY3CO93LBH053BKUB0ZG8Y' where id=28; -update noar tt set v2='5HGPJMITE8NL7NQWI69Q12P9QSCHAQ3WM6Z61YF69VDWSBBG2SS7LR7E6RRTI0IRDEHKP8LWVDAYNYM3FA9OK5EQEPRK53CAFWUSFVOJEGVK28363NJTY7JQPGSKT3LZB7CKLVBNF5C1EP5PPBGLAUTNX5GW9YR27TV0RYEX1SV0HJA7Q7C4IA8QQ4AWLX5GSRABN7LEWSN4NN0XQEOBNY24NFC2UQSNVOK1DJ3CX2RMYB9L2N54IVXMKQHQPRLGV' where id=28; -update noar ti set v2='5HGPJMITE8NL7NQWI69Q12P9QSCHAQ3WM6Z61YF69VDWSBBG2SS7LR7E6RRTI0IRDEHKP8LWVDAYNYM3FA9OK5EQEPRK53CAFWUSFVOJEGVK28363NJTY7JQPGSKT3LZB7CKLVBNF5C1EP5PPBGLAUTNX5GW9YR27TV0RYEX1SV0HJA7Q7C4IA8QQ4AWLX5GSRABN7LEWSN4NN0XQEOBNY24NFC2UQSNVOK1DJ3CX2RMYB9L2N54IVXMKQHQPRLGV' where id=28; -update noar tt set v3='GXFUU3JKG2XI92GHLAU8WQY8CEIN0TY2PZ66O7NA4LZ2TVSZJC2JLBKCAI7SH2HSZP7GJQ43SQRTU18WCUZG6RA1USKCEHHKIAMAF20WPIA1YBZ979KGUIG2HD0QB4N21BWC89XN7B57ZT2HSYMWS14IOJTAM4UO9EK7GP9E6UAECZATLT30AU58XQ291KCT6GRUDXWXFZY2J2X366NGQHYOWQ8C0GOCHC252KG37IEQTUHIX6SS27CLS4GOCMX8H' where id=28; -update noar ti set v3='GXFUU3JKG2XI92GHLAU8WQY8CEIN0TY2PZ66O7NA4LZ2TVSZJC2JLBKCAI7SH2HSZP7GJQ43SQRTU18WCUZG6RA1USKCEHHKIAMAF20WPIA1YBZ979KGUIG2HD0QB4N21BWC89XN7B57ZT2HSYMWS14IOJTAM4UO9EK7GP9E6UAECZATLT30AU58XQ291KCT6GRUDXWXFZY2J2X366NGQHYOWQ8C0GOCHC252KG37IEQTUHIX6SS27CLS4GOCMX8H' where id=28; -update noar tt set v0='5K63XUEFQTPX5H2T0IKFAJMAEKAZHSSSVXKPO2KEV9HKCBUV3XKT3VJ3LX9TU6GT9Y4Q9G472AFQ5HIIPUB0VR5CZ9D1FU3673OWW114HIZDXWDTR4H29D1EFSBRG1X7XF67GDLBN4MY64R98JBZBA5K86LGWE8G0O5BYVCSSEXXLP9KYESI4YK8TAOSLP5UEXX8IIWW5J6YXIQFP2AH7G0WGGZWC181NHQK0G2D9BVNWTMBHIS8ZZNLQSIUNMCYJ' where id=29; -update noar ti set v0='5K63XUEFQTPX5H2T0IKFAJMAEKAZHSSSVXKPO2KEV9HKCBUV3XKT3VJ3LX9TU6GT9Y4Q9G472AFQ5HIIPUB0VR5CZ9D1FU3673OWW114HIZDXWDTR4H29D1EFSBRG1X7XF67GDLBN4MY64R98JBZBA5K86LGWE8G0O5BYVCSSEXXLP9KYESI4YK8TAOSLP5UEXX8IIWW5J6YXIQFP2AH7G0WGGZWC181NHQK0G2D9BVNWTMBHIS8ZZNLQSIUNMCYJ' where id=29; -update noar tt set v1='82MZVZTCME90GI3WF4SLY9V6J7KLUKCBDYSEZAXZZKL9PTT149R2WOA201L74YUTPNQTJABKNOIX17TG5L8FR0NOCQQT3R4XFTBAM4EDO8LCRRWQR7B8QY8E74PPMC7YYEJGFNUG6ADARWDMLKWKZOU8VFIK6AEN6OQQ4A01VH3S4VLEOBCEJRT5D1UTUXVFAZPVR8TD7FX05XX1VBR9NN6QAHR7XTI8R6ED1A3LOCKN5MBUW46IONAAM27Q4V5G3' where id=29; -update noar ti set v1='82MZVZTCME90GI3WF4SLY9V6J7KLUKCBDYSEZAXZZKL9PTT149R2WOA201L74YUTPNQTJABKNOIX17TG5L8FR0NOCQQT3R4XFTBAM4EDO8LCRRWQR7B8QY8E74PPMC7YYEJGFNUG6ADARWDMLKWKZOU8VFIK6AEN6OQQ4A01VH3S4VLEOBCEJRT5D1UTUXVFAZPVR8TD7FX05XX1VBR9NN6QAHR7XTI8R6ED1A3LOCKN5MBUW46IONAAM27Q4V5G3' where id=29; -update noar tt set v2='TX7ZSXD0M8HEHB1Y8HQ2SXU6AI28RXM8NDRWZ50RSUMA388ACS7VCNEBLDVPC0CYKVW5SFZ065VRQP6MN5DMOKPTCNDWDKPYFEED1OOX59A5FNUIN7WU3RF24HPB6U2P8KL7GUC9GQGFV94VETGRROIHOYI1FDZUDGFHT1FLBULOCMYQEHDHYJQ9CJNLM8IWMUGD0FGMEMT12R5MSPHZGO590ML82TUM20H08GVETBWHO0I4XR9CXPOMGZIVQN8V4' where id=29; -update noar ti set v2='TX7ZSXD0M8HEHB1Y8HQ2SXU6AI28RXM8NDRWZ50RSUMA388ACS7VCNEBLDVPC0CYKVW5SFZ065VRQP6MN5DMOKPTCNDWDKPYFEED1OOX59A5FNUIN7WU3RF24HPB6U2P8KL7GUC9GQGFV94VETGRROIHOYI1FDZUDGFHT1FLBULOCMYQEHDHYJQ9CJNLM8IWMUGD0FGMEMT12R5MSPHZGO590ML82TUM20H08GVETBWHO0I4XR9CXPOMGZIVQN8V4' where id=29; -update noar tt set v3='AFFXMSGVOOAZY8MZ9DSZUJE6OBIL0OF10EUA3P2WT4LU22BMPBGIGLQHU3D51QREHVS7R8NNAWG4IDEWM11AT17712HR95B633HKGZ7MRJ9WC3UJDETPRBA5KYSKCWSFS32PSQ8CXT9A5VYFQHS9FBZGGUYIL9SPX1ZD7QK6Y1AL3B3OL2KEIZTGT1VSQ5FZ492FL0G10GP8NT6WUKJU325I47XSCZD24WDRQOLZ8OBM1V7YSFCKN4P8ZWCHH2CLU' where id=29; -update noar ti set v3='AFFXMSGVOOAZY8MZ9DSZUJE6OBIL0OF10EUA3P2WT4LU22BMPBGIGLQHU3D51QREHVS7R8NNAWG4IDEWM11AT17712HR95B633HKGZ7MRJ9WC3UJDETPRBA5KYSKCWSFS32PSQ8CXT9A5VYFQHS9FBZGGUYIL9SPX1ZD7QK6Y1AL3B3OL2KEIZTGT1VSQ5FZ492FL0G10GP8NT6WUKJU325I47XSCZD24WDRQOLZ8OBM1V7YSFCKN4P8ZWCHH2CLU' where id=29; -update noar tt set v0='AVZOVTI3F9H67KQ1NLFI0OMIEH0R1KI9M3HHH4GRT1M4W5539BLOVTUX8NA86O2IYOF56L1JDPC6C6YPTMAXBDAMAWL4IU7CCJPYUU65CO1EJOSD9C23FB7383RPRE2XYRUUS1TXCARLGEL5PMQLHE8HQKFQYGIGU0N80AEN6X4FCI9X3QGAY256O325F5Y9OH6RBG6GY97T84LXJHRKEW0OTWJN1BH2USMV0F0YFR06GWA2AALYUHX82DEIA0CKM' where id=30; -update noar ti set v0='AVZOVTI3F9H67KQ1NLFI0OMIEH0R1KI9M3HHH4GRT1M4W5539BLOVTUX8NA86O2IYOF56L1JDPC6C6YPTMAXBDAMAWL4IU7CCJPYUU65CO1EJOSD9C23FB7383RPRE2XYRUUS1TXCARLGEL5PMQLHE8HQKFQYGIGU0N80AEN6X4FCI9X3QGAY256O325F5Y9OH6RBG6GY97T84LXJHRKEW0OTWJN1BH2USMV0F0YFR06GWA2AALYUHX82DEIA0CKM' where id=30; -update noar tt set v1='5T4TFDF7T34PGBMBAYVW42LB2Q8Y3FHKFJEVA4QFEAYDF4XH23D91S26B5B0WQLOO2P28PUFQ8PKML3SYVPLXEXNWJZ5UJUA1M6UU6AJGWSHULZKU0RR7JI1ULP8X6RTJRI5QJLASMGHTQW664QGDNQ8QGM5B0RV887QJ8GLLN5GJNQTO9H3EE4QM22ROOOXE8BAU5C1V45Q64P0OSZI4XEJPSIU3Z4INI1GK109SBWFQSY6UU1U06CP2534DJ4NN' where id=30; -update noar ti set v1='5T4TFDF7T34PGBMBAYVW42LB2Q8Y3FHKFJEVA4QFEAYDF4XH23D91S26B5B0WQLOO2P28PUFQ8PKML3SYVPLXEXNWJZ5UJUA1M6UU6AJGWSHULZKU0RR7JI1ULP8X6RTJRI5QJLASMGHTQW664QGDNQ8QGM5B0RV887QJ8GLLN5GJNQTO9H3EE4QM22ROOOXE8BAU5C1V45Q64P0OSZI4XEJPSIU3Z4INI1GK109SBWFQSY6UU1U06CP2534DJ4NN' where id=30; -update noar tt set v2='D1LGNVY0XEFYZTJPO54TLVNQWOQOOCFS6KH8L7GDNCGVOOIH9H51QAF0OM3ZS2IMNCVTZALSKRA2BZX10DHT5KOCRMF1DN9GHUWF6FUNQCLEL1YJBNNM95JXM3V80MD37FCOJDMDJYZR0685YEUT9T1I4MV2B7AKISGIF367F40LLR1ASMDX2DK46G05SC725369I2ZLJ15CDM0LISR58FUIIMSETQAGAC3NEXS4CVLWZYOQJHUHCQAQ1MCFLRQTC' where id=30; -update noar ti set v2='D1LGNVY0XEFYZTJPO54TLVNQWOQOOCFS6KH8L7GDNCGVOOIH9H51QAF0OM3ZS2IMNCVTZALSKRA2BZX10DHT5KOCRMF1DN9GHUWF6FUNQCLEL1YJBNNM95JXM3V80MD37FCOJDMDJYZR0685YEUT9T1I4MV2B7AKISGIF367F40LLR1ASMDX2DK46G05SC725369I2ZLJ15CDM0LISR58FUIIMSETQAGAC3NEXS4CVLWZYOQJHUHCQAQ1MCFLRQTC' where id=30; -update noar tt set v3='87QKFKTUOM8OEINHO3ZLKFT3TROZF7LOBGX0F40EULIUCQUUUZB307SSLF266R49M8MJ8QM5J6DLYB0RV7KNVG1CONR4OP89LZS3A12COGA2CZIE57FFPT5U12T68BQY4HEKLBCAJOPF8H0X89OFYIRCCJDM0HBWBP6ZSIEYGN4LFF9U2DICMCKYLVZJHUBNHNA4WQGSQ2C2FCP6QX0K2IC2XCCZHBUQ3ZF9RMG9JZVGVID2LDPKRAP3EO0CB69EG' where id=30; -update noar ti set v3='87QKFKTUOM8OEINHO3ZLKFT3TROZF7LOBGX0F40EULIUCQUUUZB307SSLF266R49M8MJ8QM5J6DLYB0RV7KNVG1CONR4OP89LZS3A12COGA2CZIE57FFPT5U12T68BQY4HEKLBCAJOPF8H0X89OFYIRCCJDM0HBWBP6ZSIEYGN4LFF9U2DICMCKYLVZJHUBNHNA4WQGSQ2C2FCP6QX0K2IC2XCCZHBUQ3ZF9RMG9JZVGVID2LDPKRAP3EO0CB69EG' where id=30; -update noar tt set v0='QRQ8AHXI58TE4YCNUXJP977CTS6XUNAI1HPFCVBWDU9SJX0BV5I6JGJUO07S8Q0KA0P2FAWX5SWECS1S51PCPYHPMW6VX9ERG3XVTOGYE7LIX1XFB8X8EHC8LGZS049I9HEK77NEBSC012PDBUY2X8HBCHTJ6D2NPZFZKCXOIOEZOF5307J34V2TAII5N97J394D67A2Q89ZLI1Z2QI08S7ESPU5BJPJZIPLV2I1IMQVJKWR787EAATXSTA7AEN4E' where id=31; -update noar ti set v0='QRQ8AHXI58TE4YCNUXJP977CTS6XUNAI1HPFCVBWDU9SJX0BV5I6JGJUO07S8Q0KA0P2FAWX5SWECS1S51PCPYHPMW6VX9ERG3XVTOGYE7LIX1XFB8X8EHC8LGZS049I9HEK77NEBSC012PDBUY2X8HBCHTJ6D2NPZFZKCXOIOEZOF5307J34V2TAII5N97J394D67A2Q89ZLI1Z2QI08S7ESPU5BJPJZIPLV2I1IMQVJKWR787EAATXSTA7AEN4E' where id=31; -update noar tt set v1='Z21OH7P1L8ZJDXU6YVO2124I51YBBUKUJT8Z3PQRHP03X2N2OYTS1SSNRHFFJGCNC4GIBBM2J036FIWHYYZ77ZNYFE2OND3CGX99SPNB3AT7PJHLJ9L5E6N9YXM9OMTNLMRSTYQJWFA4YVHU116UKNDH0QMBEHSZVBFNBHFI7XZEUE580LMOPTTF4BHD77IKMIUY17VCGX5WPS4SYNP1ODIZZAXYOKCRJ9IOFGN05I4NFGIO1CHD9ZYL045BRDCRC' where id=31; -update noar ti set v1='Z21OH7P1L8ZJDXU6YVO2124I51YBBUKUJT8Z3PQRHP03X2N2OYTS1SSNRHFFJGCNC4GIBBM2J036FIWHYYZ77ZNYFE2OND3CGX99SPNB3AT7PJHLJ9L5E6N9YXM9OMTNLMRSTYQJWFA4YVHU116UKNDH0QMBEHSZVBFNBHFI7XZEUE580LMOPTTF4BHD77IKMIUY17VCGX5WPS4SYNP1ODIZZAXYOKCRJ9IOFGN05I4NFGIO1CHD9ZYL045BRDCRC' where id=31; -update noar tt set v2='Y57CQVM37ND2CY1PFONY4AOFEQ0ADDUY02CR5NP90PW9YCF2JQGIEU580793NP4XNXWCBRPGYVT1IPNWC6FGWFBVM3GZKZQTPZXRJ4H0FAIK29HW72OQBR60IJGY89GM31BEBLHJ9RBJY88078BL5RCEIY92LLQ8NN2F6MV1T6AAQUHXSLOJLW7EDX6RXC18KJE960BADGP85A82PE1GCT95UREIKHU8RZG2HI725WXZKLN2BBWTF3VVHWSW9AJI5' where id=31; -update noar ti set v2='Y57CQVM37ND2CY1PFONY4AOFEQ0ADDUY02CR5NP90PW9YCF2JQGIEU580793NP4XNXWCBRPGYVT1IPNWC6FGWFBVM3GZKZQTPZXRJ4H0FAIK29HW72OQBR60IJGY89GM31BEBLHJ9RBJY88078BL5RCEIY92LLQ8NN2F6MV1T6AAQUHXSLOJLW7EDX6RXC18KJE960BADGP85A82PE1GCT95UREIKHU8RZG2HI725WXZKLN2BBWTF3VVHWSW9AJI5' where id=31; -update noar tt set v3='PIDO3T1LWRLTSCJJ6L5JFGN4LLZ5MNWES59153PNS7133YXCQCFZRAOV6XHAEFVEOXGNSIVFZEA7299SE4PQ3ZDJERC6AHLQHQK0HAUOA3E73KCLJS8HSMDRG6VO60JR1GXWOEANVGSOCF6OJS7XXQUAEZX8NEOMYKTNGOA10C45MNYKDRTFY0IAPSLDFCJNL3Y36SALB6FQJOTYQS7653RRUW2ZVCB2N8RCC6SBP7NI92TXUVNW41MY07O8VTN42' where id=31; -update noar ti set v3='PIDO3T1LWRLTSCJJ6L5JFGN4LLZ5MNWES59153PNS7133YXCQCFZRAOV6XHAEFVEOXGNSIVFZEA7299SE4PQ3ZDJERC6AHLQHQK0HAUOA3E73KCLJS8HSMDRG6VO60JR1GXWOEANVGSOCF6OJS7XXQUAEZX8NEOMYKTNGOA10C45MNYKDRTFY0IAPSLDFCJNL3Y36SALB6FQJOTYQS7653RRUW2ZVCB2N8RCC6SBP7NI92TXUVNW41MY07O8VTN42' where id=31; -update noar tt set v0='3THSCOYLJ4BYEYIMJP04PRX4X56JG055WG81CPI9RV614ANAS33XZOMSFL3ROCRO9CX7WDKNO3WSGXUEUDUA26HH0XH1F83UZFW9HGI3694MPA0QNYHQL3D804U1AV0ZS9Y6N2A6Q66ZO2QQDM2XTWN87RW2GU6U051L9UY8IYUR7ASNQZOPYNKIMXCVDD9F1DP107VOUGOLSL3Q157LOZ4CZJM1KPE1HNYDZ1YN31D35E69ZBZ0ZNU930GZ0YDYM' where id=32; -update noar ti set v0='3THSCOYLJ4BYEYIMJP04PRX4X56JG055WG81CPI9RV614ANAS33XZOMSFL3ROCRO9CX7WDKNO3WSGXUEUDUA26HH0XH1F83UZFW9HGI3694MPA0QNYHQL3D804U1AV0ZS9Y6N2A6Q66ZO2QQDM2XTWN87RW2GU6U051L9UY8IYUR7ASNQZOPYNKIMXCVDD9F1DP107VOUGOLSL3Q157LOZ4CZJM1KPE1HNYDZ1YN31D35E69ZBZ0ZNU930GZ0YDYM' where id=32; -update noar tt set v1='J184FP5EE2BUC0EKCI70N3KL2HTW25CIJ91GXH40BAHY2LHEQIWUVGWQOFX7Z8A4P7ZEP0LR5LDC62OBLSZD05OYIS2KRJ91A6Q6Q8L3PSA7W62QT6HJ18LQ8IH2AXS4NDFZCAH6YS2Q87U7XBBQISQ43DFO3WG8II9OMDWBZ7NM2F2QEZ2FZIVKS2U5CDJF4OELNO9348WRNT8BD9NH0DR7FKPNMJPWKFH1BNM0X12S54M2YHYXIOWASJ12OEGKY' where id=32; -update noar ti set v1='J184FP5EE2BUC0EKCI70N3KL2HTW25CIJ91GXH40BAHY2LHEQIWUVGWQOFX7Z8A4P7ZEP0LR5LDC62OBLSZD05OYIS2KRJ91A6Q6Q8L3PSA7W62QT6HJ18LQ8IH2AXS4NDFZCAH6YS2Q87U7XBBQISQ43DFO3WG8II9OMDWBZ7NM2F2QEZ2FZIVKS2U5CDJF4OELNO9348WRNT8BD9NH0DR7FKPNMJPWKFH1BNM0X12S54M2YHYXIOWASJ12OEGKY' where id=32; -update noar tt set v2='TFZOGN64WWC93TFQ5W7L421WBUZ99W55VRJ9AYXJEHE7SCE1EEHHAYP9GXATCMC78JMLN90PSM7NPCLTH09DWSHZ90Y6NPYDQ1NXWR7UB8DKS0VCVY4207OXI3C0HV2UB1GK5HVC61JNAWYZ3GJ59XYMR1NT3191NSGIZLKR5EZG9RRTCDIIFIR1AOX97QR7ONGRXCFAA7SO0VXAIMP3R9P9LDGT07POOSXRSUM4AH5WKTCLYEVSAT4INWIIDFLPH' where id=32; -update noar ti set v2='TFZOGN64WWC93TFQ5W7L421WBUZ99W55VRJ9AYXJEHE7SCE1EEHHAYP9GXATCMC78JMLN90PSM7NPCLTH09DWSHZ90Y6NPYDQ1NXWR7UB8DKS0VCVY4207OXI3C0HV2UB1GK5HVC61JNAWYZ3GJ59XYMR1NT3191NSGIZLKR5EZG9RRTCDIIFIR1AOX97QR7ONGRXCFAA7SO0VXAIMP3R9P9LDGT07POOSXRSUM4AH5WKTCLYEVSAT4INWIIDFLPH' where id=32; -update noar tt set v3='U3Z9HUXGOBW8B82L7952O4W0JW67ZCJVMSQ10QJZONBNI4HMMTYRBDFAFEOTBX4WAJ1AU89I3XGJ6TJNJDDEQCUZ1YCV27F1QDV78TWK00TYESKNR5CKA25XUNX02U4NDUZBQG3B6RKPTBYQ9CA73J1B5KSUHJE7HDLXHORAV589S3DMPOMNZATHWBS5QFBT1VK8P3RN1TGNQ2TSH7N1QP3F1CZOMLZZJOY61ZOD4FLXKKRRR1KZJH6YFDT0R9IMZ' where id=32; -update noar ti set v3='U3Z9HUXGOBW8B82L7952O4W0JW67ZCJVMSQ10QJZONBNI4HMMTYRBDFAFEOTBX4WAJ1AU89I3XGJ6TJNJDDEQCUZ1YCV27F1QDV78TWK00TYESKNR5CKA25XUNX02U4NDUZBQG3B6RKPTBYQ9CA73J1B5KSUHJE7HDLXHORAV589S3DMPOMNZATHWBS5QFBT1VK8P3RN1TGNQ2TSH7N1QP3F1CZOMLZZJOY61ZOD4FLXKKRRR1KZJH6YFDT0R9IMZ' where id=32; -update noar tt set v0='XSKXM40W4WOTXYCA6UR8GS2ERD5N8W7QQT6BB404HXXPBDMMTKJGSOHILWLD4D7QC7VUPLASC5NWBY3X8W36IK5DU7RJ6OHMYVYF1C2H9WVQUR1AYNM0XFZIR11167Q57RGMX2J0SPFR56QPPKI2PRJJ5ZVK3DIX5UVWVU1V9NNN20Z31GMYD0XFNUF1J4HBFISU1HC8LX27E9YQDUZFZSJLR42KTQVGI6Q7RO0EOHDZFO39F81RYODOVFQHMJ47T' where id=33; -update noar ti set v0='XSKXM40W4WOTXYCA6UR8GS2ERD5N8W7QQT6BB404HXXPBDMMTKJGSOHILWLD4D7QC7VUPLASC5NWBY3X8W36IK5DU7RJ6OHMYVYF1C2H9WVQUR1AYNM0XFZIR11167Q57RGMX2J0SPFR56QPPKI2PRJJ5ZVK3DIX5UVWVU1V9NNN20Z31GMYD0XFNUF1J4HBFISU1HC8LX27E9YQDUZFZSJLR42KTQVGI6Q7RO0EOHDZFO39F81RYODOVFQHMJ47T' where id=33; -update noar tt set v1='MVO00J3SZNMRUIL2S0LQEDY9BXD82WI8G9CECGZJTF7K9ZF2H0EMNHRYCN3BP6IY5SVAK95VD47OUPKK9KY9N86RCANP10KSAKNZ8NGE93IHO2C2KVMF3BKFSWQOYKGG5M2SFU30UYR81E0SMTV1FN1SDPPX3B0X4NAY7C2V4Y3WJ6PB74KD4Y79V6COMG5RBHU4AUHXDDESA0WBS8ZRO5YHCTW5D5T6NUFD4RXEBKAV35KNB43PWRFC3QL5DCTV6' where id=33; -update noar ti set v1='MVO00J3SZNMRUIL2S0LQEDY9BXD82WI8G9CECGZJTF7K9ZF2H0EMNHRYCN3BP6IY5SVAK95VD47OUPKK9KY9N86RCANP10KSAKNZ8NGE93IHO2C2KVMF3BKFSWQOYKGG5M2SFU30UYR81E0SMTV1FN1SDPPX3B0X4NAY7C2V4Y3WJ6PB74KD4Y79V6COMG5RBHU4AUHXDDESA0WBS8ZRO5YHCTW5D5T6NUFD4RXEBKAV35KNB43PWRFC3QL5DCTV6' where id=33; -update noar tt set v2='7TR96M5M7G1QKYIEU7VF5L9O3KQ49X5KBO6EW748DH0ISCJJQWR62CXIDFSMO4I6H1PBTXOOPUEASNZC7GF2681H1ZDWBR22KGPDSX35DIJWOWTEDN826QC98MZTNX3LZNDLU5SYLPUYUTNRJHEVFYNMDAZX1WBH0XP1TKD5VPTRGVOD9M6Y4MDB5C3NR1JYUZ625KDRLJ0AU39A562W5DLF31JXUG7GWWPVJYWDA8GI174HKWN0800YFIPQKG0WV' where id=33; -update noar ti set v2='7TR96M5M7G1QKYIEU7VF5L9O3KQ49X5KBO6EW748DH0ISCJJQWR62CXIDFSMO4I6H1PBTXOOPUEASNZC7GF2681H1ZDWBR22KGPDSX35DIJWOWTEDN826QC98MZTNX3LZNDLU5SYLPUYUTNRJHEVFYNMDAZX1WBH0XP1TKD5VPTRGVOD9M6Y4MDB5C3NR1JYUZ625KDRLJ0AU39A562W5DLF31JXUG7GWWPVJYWDA8GI174HKWN0800YFIPQKG0WV' where id=33; -update noar tt set v3='EX850XK9PKFSCD03YP9U2ZR2KEVT4GLUMP1TQSVJI5P85E2JLHYLDSRX85CJFE1K2RB9VPGVDJ4RWU7F46UIRR25BZW9LWKCQHJWCEKU0SKOUP9DH9765XPBRUF8QNORZ54YXSG8RNERD3ZUHRR1QZ0UPOIXBAUD74ILFVOJSKJA54V85OU87ZPY8ESZPET2SYAP96L2N3DI7SJQV8AZ379F3FCFF42W7ZXBLFNJKXQARXGQXUVTUA9Y26WIQG5DJ' where id=33; -update noar ti set v3='EX850XK9PKFSCD03YP9U2ZR2KEVT4GLUMP1TQSVJI5P85E2JLHYLDSRX85CJFE1K2RB9VPGVDJ4RWU7F46UIRR25BZW9LWKCQHJWCEKU0SKOUP9DH9765XPBRUF8QNORZ54YXSG8RNERD3ZUHRR1QZ0UPOIXBAUD74ILFVOJSKJA54V85OU87ZPY8ESZPET2SYAP96L2N3DI7SJQV8AZ379F3FCFF42W7ZXBLFNJKXQARXGQXUVTUA9Y26WIQG5DJ' where id=33; -update noar tt set v0='SFHI9NDE9KJTS2PR3WAOGITVL3O5XC2D6EZGGQS0GAPE879RKWEKMN5JO7GIHY6GAZE77P2HOXF7DCG39XU3HG7HYOQK4XULG9YY1EW5GVHL3IVJJ7HV5NLRJ13KE284G7C7SO69XH7V0KPE3X0S5ADF93QPRAZRQ9T75SOCM2UKTPWY5JDHBI3HJ5W8DHK9MC15VVEZTO7W1417T5JTI307B5EP80OX1LRIT5U6L0EHG35I40YSRTTDF4OIL3MW5' where id=34; -update noar ti set v0='SFHI9NDE9KJTS2PR3WAOGITVL3O5XC2D6EZGGQS0GAPE879RKWEKMN5JO7GIHY6GAZE77P2HOXF7DCG39XU3HG7HYOQK4XULG9YY1EW5GVHL3IVJJ7HV5NLRJ13KE284G7C7SO69XH7V0KPE3X0S5ADF93QPRAZRQ9T75SOCM2UKTPWY5JDHBI3HJ5W8DHK9MC15VVEZTO7W1417T5JTI307B5EP80OX1LRIT5U6L0EHG35I40YSRTTDF4OIL3MW5' where id=34; -update noar tt set v1='DEDJUM3SPXGT7PQTR99G8UAZNVI4QMJPTUS3G8IBVA91RKY0UKFHPIMBO8XJG79Z4UROWSO68S5V4AL5ZBWYIK31E1N94XC2WRFU8G6SAWF1B78A98E28VYOCC88G3S4NZ52Z3Y49L74NCHKF89KYJDKGKC6OP34IA1ZIVJJ796UMPNYZCBELIPR4XNOYXGBDS5AZYSBFB3FI9J6D3TAHZEXRN6RUNQZSUMLLJQZ3Q7ACW44GC1UB4WWMP7U2NGH8' where id=34; -update noar ti set v1='DEDJUM3SPXGT7PQTR99G8UAZNVI4QMJPTUS3G8IBVA91RKY0UKFHPIMBO8XJG79Z4UROWSO68S5V4AL5ZBWYIK31E1N94XC2WRFU8G6SAWF1B78A98E28VYOCC88G3S4NZ52Z3Y49L74NCHKF89KYJDKGKC6OP34IA1ZIVJJ796UMPNYZCBELIPR4XNOYXGBDS5AZYSBFB3FI9J6D3TAHZEXRN6RUNQZSUMLLJQZ3Q7ACW44GC1UB4WWMP7U2NGH8' where id=34; -update noar tt set v2='U91REXQP9SQ1RKRPN2RUD73T4C6V95Q9UWP7AQEE6OW44YQUBZ297B599C2TTF61SCTMEYOVWQB4FP4P9I0PDTSLKNXJ3RURNZB6LQF85ZCEP4ET6OEGSRT7QCFVPTXXL3W2XAVCBHLUTTTD6KUM9U490DB1LU9OX2CZST8PRHDSRZ6OE4INQ4DFFYYYQXQDKBTBAN5G2BK4XOXIMEX2DWYMI3JS3G55JT38AY5K5S7TTZEY2V8LA9WVJ2KJEYU84' where id=34; -update noar ti set v2='U91REXQP9SQ1RKRPN2RUD73T4C6V95Q9UWP7AQEE6OW44YQUBZ297B599C2TTF61SCTMEYOVWQB4FP4P9I0PDTSLKNXJ3RURNZB6LQF85ZCEP4ET6OEGSRT7QCFVPTXXL3W2XAVCBHLUTTTD6KUM9U490DB1LU9OX2CZST8PRHDSRZ6OE4INQ4DFFYYYQXQDKBTBAN5G2BK4XOXIMEX2DWYMI3JS3G55JT38AY5K5S7TTZEY2V8LA9WVJ2KJEYU84' where id=34; -update noar tt set v3='F7RBP3Q9ETJEVGBKI7B699NRJ08Q6X6D0V7A42NR5FD6G64GEZ3YKMQTVH5TOE46Q1HG6JIACDDDGED2WGJU18KAI4UHIOMC5WGMLLI1NJQF6IKG0CQH67A5ZC3BHAWM1ON55CDQHKCXYSD5YMTDRQP2QM46L8DRHAZGMVVM2E573OMM3Q376JY7ACLPD98DTPNEGWF5P79CKV2HBEI58LLGGC3DLO9IXK96PQ9NCU5T4TMXJ4TQBWFDXGG23Q58T' where id=34; -update noar ti set v3='F7RBP3Q9ETJEVGBKI7B699NRJ08Q6X6D0V7A42NR5FD6G64GEZ3YKMQTVH5TOE46Q1HG6JIACDDDGED2WGJU18KAI4UHIOMC5WGMLLI1NJQF6IKG0CQH67A5ZC3BHAWM1ON55CDQHKCXYSD5YMTDRQP2QM46L8DRHAZGMVVM2E573OMM3Q376JY7ACLPD98DTPNEGWF5P79CKV2HBEI58LLGGC3DLO9IXK96PQ9NCU5T4TMXJ4TQBWFDXGG23Q58T' where id=34; -update noar tt set v0='KIPBKOWZ4H7RA8175AZW3BRYL8H8HIR79KGQRTJDR4CCMDPK1LTP4I20U0KKXUGPX3S0PORGQMZCZFUP5267YFPMTWXIA5ZBL97YZH6VYLZKNMQGXBW6RLUSDHDN93TJHA9XA34PLZ5L1U204DC3S4I9ZEM3MAGWUTBG7CZAE0P2026VV6B095CCWZF1PB5EFPP0LN6VOAIPPGG807YOPALTXNT19K9M9126RMXJIVC4IB0PB5W6PNBPZ5J5B1U2X' where id=35; -update noar ti set v0='KIPBKOWZ4H7RA8175AZW3BRYL8H8HIR79KGQRTJDR4CCMDPK1LTP4I20U0KKXUGPX3S0PORGQMZCZFUP5267YFPMTWXIA5ZBL97YZH6VYLZKNMQGXBW6RLUSDHDN93TJHA9XA34PLZ5L1U204DC3S4I9ZEM3MAGWUTBG7CZAE0P2026VV6B095CCWZF1PB5EFPP0LN6VOAIPPGG807YOPALTXNT19K9M9126RMXJIVC4IB0PB5W6PNBPZ5J5B1U2X' where id=35; -update noar tt set v1='R3JNMLP698KMVOFVH938MTOIHXUF70QGJYNU8O3L7SCLT7U5DLY6ZYC02WE1N9KG95JND2YTA47EJYRX23NNKQ58WI7Y7U8XKPTRB7MDN51Q8P3Q85V853TQWW5DEO7FAY1PQI1N89CXTJK0FU6FI247BCD2TENU2HXOGY3RGK3A9L9CMYKR64UTT702123V7OEYJE1GGWVV1RM9Y5QAYWLUPXCA42R8F0SPGL9E8JH3Y8FX6GPM1LWHRE048OS5Y' where id=35; -update noar ti set v1='R3JNMLP698KMVOFVH938MTOIHXUF70QGJYNU8O3L7SCLT7U5DLY6ZYC02WE1N9KG95JND2YTA47EJYRX23NNKQ58WI7Y7U8XKPTRB7MDN51Q8P3Q85V853TQWW5DEO7FAY1PQI1N89CXTJK0FU6FI247BCD2TENU2HXOGY3RGK3A9L9CMYKR64UTT702123V7OEYJE1GGWVV1RM9Y5QAYWLUPXCA42R8F0SPGL9E8JH3Y8FX6GPM1LWHRE048OS5Y' where id=35; -update noar tt set v2='YB1OGOHUMM19PPZ0O81KO52J44MW3F74T09SDV2AGQ0G1WSH2IWTVLN9MFZ55Q0LCGYA4A73ZGLG49IB7MAGLUQ0XN591K0XHYA4ENBF7XH24GVRKC5V70URJV7VQ8AN7Y92JPF8AZHO8H2URLXTVE6T02REGMJNTNX5PM5G04R8DA33EOJV1J79F4MF8EZCN16BIJXO5WPLHI0Z4111RIU4MQI3IWSGF6L3CX0H2AKOZUA9VF5R3KSRRXGVOBZ7H' where id=35; -update noar ti set v2='YB1OGOHUMM19PPZ0O81KO52J44MW3F74T09SDV2AGQ0G1WSH2IWTVLN9MFZ55Q0LCGYA4A73ZGLG49IB7MAGLUQ0XN591K0XHYA4ENBF7XH24GVRKC5V70URJV7VQ8AN7Y92JPF8AZHO8H2URLXTVE6T02REGMJNTNX5PM5G04R8DA33EOJV1J79F4MF8EZCN16BIJXO5WPLHI0Z4111RIU4MQI3IWSGF6L3CX0H2AKOZUA9VF5R3KSRRXGVOBZ7H' where id=35; -update noar tt set v3='0O9FEN1NI7VV3MCX55WT0W4HV2MTA78ZJDSEXYZWHS4ARLW5YJYMCHBSSKD4DBTMIVGEHR1HNPBUGDSJE8QWS6I86764YV7JHK97F1K3IDG5A700IWPM720C5KSEXR2HHRHYAOA8ERV23XHAJN8M5SS9GLOWIM37TJAULKI8VPR5RFS04PFFJT9AUDCC0BW78YGISCB7LBQW0BZWJBSORJA64R4781YND58JEBKG8TN7KAZFQC3OQRNWS89QX78W5' where id=35; -update noar ti set v3='0O9FEN1NI7VV3MCX55WT0W4HV2MTA78ZJDSEXYZWHS4ARLW5YJYMCHBSSKD4DBTMIVGEHR1HNPBUGDSJE8QWS6I86764YV7JHK97F1K3IDG5A700IWPM720C5KSEXR2HHRHYAOA8ERV23XHAJN8M5SS9GLOWIM37TJAULKI8VPR5RFS04PFFJT9AUDCC0BW78YGISCB7LBQW0BZWJBSORJA64R4781YND58JEBKG8TN7KAZFQC3OQRNWS89QX78W5' where id=35; -update noar tt set v0='IM8QDXKPVPXKT89A31YI38PGPHQ35TCMVCEB0GV2VRP7T25GC6EG7K8PG9KBLYSE07SVVFHI8GS2AQOHDPRKF6IYWG4737SUQ19CPTXX5W2AHH9LQLS4R5PPODSDDXQXL5QYWKGAJS6DGQR8F5G2WLB8NUI1TESITLG1IGI4HEF013K842XL7EFCD9FS7Q4E23REDCY36OYM0W9Z7CJH3EFSWA5B99H3XULZCFPFRP0ISAW1MQJFB61VL0YHDZYQD' where id=36; -update noar ti set v0='IM8QDXKPVPXKT89A31YI38PGPHQ35TCMVCEB0GV2VRP7T25GC6EG7K8PG9KBLYSE07SVVFHI8GS2AQOHDPRKF6IYWG4737SUQ19CPTXX5W2AHH9LQLS4R5PPODSDDXQXL5QYWKGAJS6DGQR8F5G2WLB8NUI1TESITLG1IGI4HEF013K842XL7EFCD9FS7Q4E23REDCY36OYM0W9Z7CJH3EFSWA5B99H3XULZCFPFRP0ISAW1MQJFB61VL0YHDZYQD' where id=36; -update noar tt set v1='17QBE7POFBXNMYBLU63YH9QNL6KGBWYQGUNN6W9JXAVS89OBJY9EQEJ5T1CS0M45A1JH4HCBFE97F0G0L5UA29OI3EX3GHDJ8EOB2DUXRKMNIGU7SWEGTRVMYYDBMP500JMNYI8261H19D0B992K1CE1L9PKUVSYBDNJHUTX34SUJ1TJX0ZBJKB0OSYOJ79WKXVOB4YIPIXAMB1Z9TRTDTZ2FT71THDF1R4B98HBCG23P57ZW6NMQ5MOMFSLPYBGE' where id=36; -update noar ti set v1='17QBE7POFBXNMYBLU63YH9QNL6KGBWYQGUNN6W9JXAVS89OBJY9EQEJ5T1CS0M45A1JH4HCBFE97F0G0L5UA29OI3EX3GHDJ8EOB2DUXRKMNIGU7SWEGTRVMYYDBMP500JMNYI8261H19D0B992K1CE1L9PKUVSYBDNJHUTX34SUJ1TJX0ZBJKB0OSYOJ79WKXVOB4YIPIXAMB1Z9TRTDTZ2FT71THDF1R4B98HBCG23P57ZW6NMQ5MOMFSLPYBGE' where id=36; -update noar tt set v2='O1SUXGDYRNSYX9Q0A1XCKGVYGFFQD2H1VU6OE3GUUCPYEMYQPV0IOS4H9ONK3R0WC6LHXAUBWEQ43ICX4H3B15MQNO999FLJ2VMVAOPS16MJC6XBVVK7F4TK8ZSIYKC529IXQ96T8EL2QZNPW5NAY79OCXEJ2BPELUSYGO6Q3XVXFA8ZMAZD5UAGFDYH3BEHKWNJ3B3NJXSPYXFEFAGWS9TQLMZWDKA5FHBNIYQYEVV1NDAWRYMJ6X1HXB4A583MF' where id=36; -update noar ti set v2='O1SUXGDYRNSYX9Q0A1XCKGVYGFFQD2H1VU6OE3GUUCPYEMYQPV0IOS4H9ONK3R0WC6LHXAUBWEQ43ICX4H3B15MQNO999FLJ2VMVAOPS16MJC6XBVVK7F4TK8ZSIYKC529IXQ96T8EL2QZNPW5NAY79OCXEJ2BPELUSYGO6Q3XVXFA8ZMAZD5UAGFDYH3BEHKWNJ3B3NJXSPYXFEFAGWS9TQLMZWDKA5FHBNIYQYEVV1NDAWRYMJ6X1HXB4A583MF' where id=36; -update noar tt set v3='UM2YR981US8UTN79O8LQXOQJ3EKID406ASSAOT5LR7V02GO943LC06DUBK87X9VB5XP10VYTLW2V8RAYAEJ9RK5LSFZR7LFV552BKJCLN2GZ93Z8I4ENCMN4GDIFHK4LI9NQM3XEAQXH1MRIIQZDRC2D94NEANNYOXVLHFAHX6RZGRU0BKWCBIF1NVKP0920CJZ6E5KE58C9ER26M2VPC5CP941Z2QG55U06UWUSQ7VDU0ONG0LJXRYZ3WQEZ071H' where id=36; -update noar ti set v3='UM2YR981US8UTN79O8LQXOQJ3EKID406ASSAOT5LR7V02GO943LC06DUBK87X9VB5XP10VYTLW2V8RAYAEJ9RK5LSFZR7LFV552BKJCLN2GZ93Z8I4ENCMN4GDIFHK4LI9NQM3XEAQXH1MRIIQZDRC2D94NEANNYOXVLHFAHX6RZGRU0BKWCBIF1NVKP0920CJZ6E5KE58C9ER26M2VPC5CP941Z2QG55U06UWUSQ7VDU0ONG0LJXRYZ3WQEZ071H' where id=36; -update noar tt set v0='E7HM12G1PKE9Q53X2NT75Q27YTPCQ6Q5228Q1WTACZEHQA28VEWTLRB0SBBS0NX98Q1543BU53PNDDJY0KA2DU3IIV0OJFXNP93Z9GK6UTIFN1PYC9FR18GY1R09TIL7RZK3ELL4D0D3IBC23VUVYK3BHUDE7J1H62323OJUQQO68SMWS9FOAUKLQLZHOQ1H2I51IRW0NQ1H9SLTHYUH1Q30E39UGNEOV8MLM8VHVDJYQZIWO5XLD7N04TWD9T2M5' where id=37; -update noar ti set v0='E7HM12G1PKE9Q53X2NT75Q27YTPCQ6Q5228Q1WTACZEHQA28VEWTLRB0SBBS0NX98Q1543BU53PNDDJY0KA2DU3IIV0OJFXNP93Z9GK6UTIFN1PYC9FR18GY1R09TIL7RZK3ELL4D0D3IBC23VUVYK3BHUDE7J1H62323OJUQQO68SMWS9FOAUKLQLZHOQ1H2I51IRW0NQ1H9SLTHYUH1Q30E39UGNEOV8MLM8VHVDJYQZIWO5XLD7N04TWD9T2M5' where id=37; -update noar tt set v1='ABB0S6RL26NXW97E91XYZZGCDAQYTI1JY04EGVXE71QP5T12OTF5WU2332B55LDB6W3P24LO283EV2P00JZXFFFYBB6DQSY9FKS9DC8V3B0NKIRBYRCPU89F8I7CL7YS4T9PXLME4B6YXQXPQQNG90SROEX677XKNTKYXUVUQ1G02KX1067RHWMWGTMT238KLH8IAEY8W7A3ERCUL7V80IQ21ZXVKIDGZV3Y8WJ4DMLKN541Z2M1IXYUOV8KXOP23' where id=37; -update noar ti set v1='ABB0S6RL26NXW97E91XYZZGCDAQYTI1JY04EGVXE71QP5T12OTF5WU2332B55LDB6W3P24LO283EV2P00JZXFFFYBB6DQSY9FKS9DC8V3B0NKIRBYRCPU89F8I7CL7YS4T9PXLME4B6YXQXPQQNG90SROEX677XKNTKYXUVUQ1G02KX1067RHWMWGTMT238KLH8IAEY8W7A3ERCUL7V80IQ21ZXVKIDGZV3Y8WJ4DMLKN541Z2M1IXYUOV8KXOP23' where id=37; -update noar tt set v2='UVAO28FY9545RHV4QHEQF717OJZ2SVINNIC155EWFW98U1D5E9OAQP61QD8XSAXRZWDCSZIM3C6OTI1JBKPG0W7YA06VGYU3VIJQ4KH8S5RZ7L0A83796RYUI1NGAU7LH5UHP9JCQE53AGXC74416T4DCUOMMHZIZJV6A563LMX96GBMJ7EI78QLBL23781FZENZYLRO8CY89420BP39R79TASYAAVB1N842THPNMNMFRAMH99ZXLWU9GOK16XOF8' where id=37; -update noar ti set v2='UVAO28FY9545RHV4QHEQF717OJZ2SVINNIC155EWFW98U1D5E9OAQP61QD8XSAXRZWDCSZIM3C6OTI1JBKPG0W7YA06VGYU3VIJQ4KH8S5RZ7L0A83796RYUI1NGAU7LH5UHP9JCQE53AGXC74416T4DCUOMMHZIZJV6A563LMX96GBMJ7EI78QLBL23781FZENZYLRO8CY89420BP39R79TASYAAVB1N842THPNMNMFRAMH99ZXLWU9GOK16XOF8' where id=37; -update noar tt set v3='E804XUFNM5CS6KBB610LA707IS191EKFVSTDEDZEV0RNT7E83E79UVW1UX1D770S9ODRMCIPNLR68VJRRU4T96REOSZ7Y3KUR79HJF6YOJWRT3HLWC03QGCWQEFSPWRZKKFPTWEC68M70UWDP522RFHXMKT8C976F1W17E1EJGM59W8F03GA4K6GPH5UKDSWZSUCGJGQLDTBL6AOULDPLJO1B54XLAIJA6M90D1F7JUXMLB0FUBJ37JIMSYV3D85A' where id=37; -update noar ti set v3='E804XUFNM5CS6KBB610LA707IS191EKFVSTDEDZEV0RNT7E83E79UVW1UX1D770S9ODRMCIPNLR68VJRRU4T96REOSZ7Y3KUR79HJF6YOJWRT3HLWC03QGCWQEFSPWRZKKFPTWEC68M70UWDP522RFHXMKT8C976F1W17E1EJGM59W8F03GA4K6GPH5UKDSWZSUCGJGQLDTBL6AOULDPLJO1B54XLAIJA6M90D1F7JUXMLB0FUBJ37JIMSYV3D85A' where id=37; -update noar tt set v0='KSRPHW9R54VWIIQYR5AMU7I0FVD5V0FOZ2WGXNL9ZGIE4JAHNW6DRK5P6XLX143GDVI41FM97TY00GQ9U7DMUNPKUUZ8H7CLIBASN948ZELVLW3Z30YP9JCWH9IE2KW6BAT1KRNATOL95PY1SW82ERYT7PDJUT5RAEGTYREB4CFSRWH4SVA6K654LJ03FIRGMKKSGOVJEABFHTRVBK9DS2OTXZ3ZSYW1CW3YL9QXYBQ4CMJQSIDADCYMIC8A1OIQW' where id=38; -update noar ti set v0='KSRPHW9R54VWIIQYR5AMU7I0FVD5V0FOZ2WGXNL9ZGIE4JAHNW6DRK5P6XLX143GDVI41FM97TY00GQ9U7DMUNPKUUZ8H7CLIBASN948ZELVLW3Z30YP9JCWH9IE2KW6BAT1KRNATOL95PY1SW82ERYT7PDJUT5RAEGTYREB4CFSRWH4SVA6K654LJ03FIRGMKKSGOVJEABFHTRVBK9DS2OTXZ3ZSYW1CW3YL9QXYBQ4CMJQSIDADCYMIC8A1OIQW' where id=38; -update noar tt set v1='CDY0BKT8MTJ47DYFUX93PLD18YZM2OE079MSJDYS1W6CMQOOJB2OVN3N9NL316LMGT9DSN89Q2P6TS2AOYJMB0Y19JE87KOZOO1JQXI7CMI8YWC9DUY86TXL8P88UUGCPKB7TWZWF2JACM8ARX7QZAOV5WQWG0A9V35LVQK6CEHW9U78AWJONKF49JYNA7AO2ZMFM926Z8RD72YWG0Y3Y6RZH6INL42GFTOYQ0LJ1VSCBVSHSXMT9VD97OV9N66NC' where id=38; -update noar ti set v1='CDY0BKT8MTJ47DYFUX93PLD18YZM2OE079MSJDYS1W6CMQOOJB2OVN3N9NL316LMGT9DSN89Q2P6TS2AOYJMB0Y19JE87KOZOO1JQXI7CMI8YWC9DUY86TXL8P88UUGCPKB7TWZWF2JACM8ARX7QZAOV5WQWG0A9V35LVQK6CEHW9U78AWJONKF49JYNA7AO2ZMFM926Z8RD72YWG0Y3Y6RZH6INL42GFTOYQ0LJ1VSCBVSHSXMT9VD97OV9N66NC' where id=38; -update noar tt set v2='0WRUD5M74TMCCFUW6RT45T7OUB4WLC9VB4X9KCATJI0WZ5J1BXJQ2M7A7A7PBWEJKK0KYVHRFCPBYXMGHDQLOG1P4AP5WRLN54XA9UQA3I8JOF8N2T36UUHQKD35JOAMZLKQPXJ9RNH1SSA9ZRG89BAGIL3NRCLACV8592HKN40M1MQMI2VBX5LP7RK17UUMD07IESVO838N9HR16Z80LHACAR1GE0R0HVBCSSUCKM0MKL8DPV249QEK9BCKHE7LR' where id=38; -update noar ti set v2='0WRUD5M74TMCCFUW6RT45T7OUB4WLC9VB4X9KCATJI0WZ5J1BXJQ2M7A7A7PBWEJKK0KYVHRFCPBYXMGHDQLOG1P4AP5WRLN54XA9UQA3I8JOF8N2T36UUHQKD35JOAMZLKQPXJ9RNH1SSA9ZRG89BAGIL3NRCLACV8592HKN40M1MQMI2VBX5LP7RK17UUMD07IESVO838N9HR16Z80LHACAR1GE0R0HVBCSSUCKM0MKL8DPV249QEK9BCKHE7LR' where id=38; -update noar tt set v3='DTSJLM92OSKYU8SVNKCZ10CIYYCSJT2OIOYFOGWWKTSQ4QQIMGG91O0QORDGDVWWUY8GPZFOS1WNDCZ4SGNGTIAPUDYR03SET7VW5KPFG24VZIPRIHAC69U4JWVDHE925A8XTXZFFABE7RLGBYNS8JDBSEHMR23CT93LL6UG4SVRTX51AMEODIK5S0U16O5JR9OE5KTLE3NYLMMDVLO00HCJKZCP48HJZB003O1CV2DOW3YK30AB2EM56A71QZZ38' where id=38; -update noar ti set v3='DTSJLM92OSKYU8SVNKCZ10CIYYCSJT2OIOYFOGWWKTSQ4QQIMGG91O0QORDGDVWWUY8GPZFOS1WNDCZ4SGNGTIAPUDYR03SET7VW5KPFG24VZIPRIHAC69U4JWVDHE925A8XTXZFFABE7RLGBYNS8JDBSEHMR23CT93LL6UG4SVRTX51AMEODIK5S0U16O5JR9OE5KTLE3NYLMMDVLO00HCJKZCP48HJZB003O1CV2DOW3YK30AB2EM56A71QZZ38' where id=38; -update noar tt set v0='KAQ5LAOU70U5RYC8OAG4KYV1HJ23CZMSK1E2I4Z32YBQZKB5A7RECIHXFCYQS3D5HBW2V9E7BGJ2NTIPY35IJKL83TDVBLOKJYMKC1572NUKDF8D1H6544YM06XDNSGGZKKN6KKIDWIWSRGYLHU3X91HGWW14MPCO5NT5OVHVBZO305L1JW4ROE1KHZV3FHDMRC1JC05HRKRNLNRQD9MNKAIV99JE0463KSC8SPCC5USVSB8WC48ME0K9P6IV33SY' where id=39; -update noar ti set v0='KAQ5LAOU70U5RYC8OAG4KYV1HJ23CZMSK1E2I4Z32YBQZKB5A7RECIHXFCYQS3D5HBW2V9E7BGJ2NTIPY35IJKL83TDVBLOKJYMKC1572NUKDF8D1H6544YM06XDNSGGZKKN6KKIDWIWSRGYLHU3X91HGWW14MPCO5NT5OVHVBZO305L1JW4ROE1KHZV3FHDMRC1JC05HRKRNLNRQD9MNKAIV99JE0463KSC8SPCC5USVSB8WC48ME0K9P6IV33SY' where id=39; -update noar tt set v1='MPNC600OM7GT50W8ZF2VXBPNSVMU15BANJF7AAZLWH3ZNGIQ9ZFMMM7CPYPSO0VW8PD4CCQWXFSE9PSP6I47RZXGK0AWV0B8J8V4OTM23ND4TXFCJQQDA2BQA161SB7TP3054ZI9Q9UN563HLTP35IZ0UH944ST3RLTAX2YA78UTHZJATV2QPFYEELYH3E8GJ1B5BEDM8P25O4WCN0M1WDLSKLU4B5128W1HS8RJ04VMYY2K10ST2GYEOYJMHLDHQ' where id=39; -update noar ti set v1='MPNC600OM7GT50W8ZF2VXBPNSVMU15BANJF7AAZLWH3ZNGIQ9ZFMMM7CPYPSO0VW8PD4CCQWXFSE9PSP6I47RZXGK0AWV0B8J8V4OTM23ND4TXFCJQQDA2BQA161SB7TP3054ZI9Q9UN563HLTP35IZ0UH944ST3RLTAX2YA78UTHZJATV2QPFYEELYH3E8GJ1B5BEDM8P25O4WCN0M1WDLSKLU4B5128W1HS8RJ04VMYY2K10ST2GYEOYJMHLDHQ' where id=39; -update noar tt set v2='605UIPV63A8Q5KTEC1XDGUKUHZQU8YGCU33EO02NEKDDZ1YT73TGL63AA64WIK2FXKG8U9TNBGLCUZ3CLWPZHF2PRNAVRPA7XTMDI5AMB111BNWXIDZFFIRHLEWTC5YOC6DBJV5VGTD39IE9XIPYBX0ZPMUGH259YGJPHXNVVR1V3FF6AQT0IGCVPWF6ALO4HSB031JQ0W38JG4RYC5ERAV74SLIFFPXCBIMDWZ0BOSHMPQNMS3DQENXI9X6PVNG3' where id=39; -update noar ti set v2='605UIPV63A8Q5KTEC1XDGUKUHZQU8YGCU33EO02NEKDDZ1YT73TGL63AA64WIK2FXKG8U9TNBGLCUZ3CLWPZHF2PRNAVRPA7XTMDI5AMB111BNWXIDZFFIRHLEWTC5YOC6DBJV5VGTD39IE9XIPYBX0ZPMUGH259YGJPHXNVVR1V3FF6AQT0IGCVPWF6ALO4HSB031JQ0W38JG4RYC5ERAV74SLIFFPXCBIMDWZ0BOSHMPQNMS3DQENXI9X6PVNG3' where id=39; -update noar tt set v3='Y1FYBXZ6G4JFU28VOU58PG15RSOZEF1GDQTE4ONT7BUKOPCB5AN6FV360CM4PJGLNCM38JHHTZMRI5LUC0PGAVI9G4KOEN4I4D6377118MZL152AE0UJDAT1YI6Y9541024C9JRNDH7CP1HEJPUDCLM9P40W6SU8G92E3IV8PNMEMGX4I1RZAEAUA5YVY5S2VQ247J0WE4ZI3Y1PFJIDUHNMZX7W5ZXU6HKRMWXHAUKM8ASLKS4R71DZ9J19ZA361' where id=39; -update noar ti set v3='Y1FYBXZ6G4JFU28VOU58PG15RSOZEF1GDQTE4ONT7BUKOPCB5AN6FV360CM4PJGLNCM38JHHTZMRI5LUC0PGAVI9G4KOEN4I4D6377118MZL152AE0UJDAT1YI6Y9541024C9JRNDH7CP1HEJPUDCLM9P40W6SU8G92E3IV8PNMEMGX4I1RZAEAUA5YVY5S2VQ247J0WE4ZI3Y1PFJIDUHNMZX7W5ZXU6HKRMWXHAUKM8ASLKS4R71DZ9J19ZA361' where id=39; -update noar tt set v0='0VKQ5X2PQQDTJV12EFUYSXYQU3ISX60OPPIQ0XQKM4MHW2HPQB3PQAS9HSOKT9S6Z2N3DAVFMBC2LQVY5BYO8J6NWFH86FJCPT82YJV5RRU7ATWJ3WGR7WK11Q4CZ8HP7KLY5BGAADOFWMIZR8IN4DVTXGZA9QQTJEHTR0KEYNUZ0CE9RSC7HRJNCORDS1Q7NL01VZEGW6POGQD5E5SJFING7V21VNSQW8CMFLU9ARI3X3RWWMB8DUAGE6FVQWMBI' where id=40; -update noar ti set v0='0VKQ5X2PQQDTJV12EFUYSXYQU3ISX60OPPIQ0XQKM4MHW2HPQB3PQAS9HSOKT9S6Z2N3DAVFMBC2LQVY5BYO8J6NWFH86FJCPT82YJV5RRU7ATWJ3WGR7WK11Q4CZ8HP7KLY5BGAADOFWMIZR8IN4DVTXGZA9QQTJEHTR0KEYNUZ0CE9RSC7HRJNCORDS1Q7NL01VZEGW6POGQD5E5SJFING7V21VNSQW8CMFLU9ARI3X3RWWMB8DUAGE6FVQWMBI' where id=40; -update noar tt set v1='NYE9S343RDJK6E1Z6PAPI7WJLN5U4BFHJYWOBPMW89VF2OTHRYNSRVZP3OJ0DMCWMZDBOH0KJLWF7IDK6AI7SQ6M8DOT00BQQBUY7Y9E8AGKW8BTXMJEBVYYMXCAUKAIC95U0PRUUK7GG4UI1IXZ4EDO5IK6MGNSG68S30Y6I93TMTNLCX3KQYE03V5SWVXJ7K21VK3SN9FIT7VIK1IZNG1YZRF12K7RJNQXXAIPQBO4XE10VYWPYJS0ANTDEGBNJ' where id=40; -update noar ti set v1='NYE9S343RDJK6E1Z6PAPI7WJLN5U4BFHJYWOBPMW89VF2OTHRYNSRVZP3OJ0DMCWMZDBOH0KJLWF7IDK6AI7SQ6M8DOT00BQQBUY7Y9E8AGKW8BTXMJEBVYYMXCAUKAIC95U0PRUUK7GG4UI1IXZ4EDO5IK6MGNSG68S30Y6I93TMTNLCX3KQYE03V5SWVXJ7K21VK3SN9FIT7VIK1IZNG1YZRF12K7RJNQXXAIPQBO4XE10VYWPYJS0ANTDEGBNJ' where id=40; -update noar tt set v2='Z6P0FIWZ6JVONA8AW2FPUHTZQQDG3Q6I9LNNPDRKYS7RF4F4S2Z8ASYA7SR5RSWKG9XV3H4IVHJQM0HC8M8QRHU5RGKDLJW02ZPJ63B6XS886B59Y7P29II593EQNKG8OBW3OLXHTJQHV8ZPC118O5U50IAPOHYS1OHIJYNV6YXCKETNF00LCGRAVIWSEUV5RI58SFJ7HJE7U6ZOYY2XX1ST45CELQV1N4IE47JRCUI895W59L6FIY4MTX3BF9JJY' where id=40; -update noar ti set v2='Z6P0FIWZ6JVONA8AW2FPUHTZQQDG3Q6I9LNNPDRKYS7RF4F4S2Z8ASYA7SR5RSWKG9XV3H4IVHJQM0HC8M8QRHU5RGKDLJW02ZPJ63B6XS886B59Y7P29II593EQNKG8OBW3OLXHTJQHV8ZPC118O5U50IAPOHYS1OHIJYNV6YXCKETNF00LCGRAVIWSEUV5RI58SFJ7HJE7U6ZOYY2XX1ST45CELQV1N4IE47JRCUI895W59L6FIY4MTX3BF9JJY' where id=40; -update noar tt set v3='4QJFZJF1OIDGJO8L3JF1FU8KVRBVCAW0I0OXX34SSV6WKU2TDADOYNHYLKF8S1CN9FF0HSAKFMH0Q47CBSLUBEHS64XSOY0H6WU4KZCFJ130BEYBV4O1Q8KQAHCVRH634IQSXHGH50SMT3Y86819GNDYMNNL6RJFG0LYVYG8JIM22W5D5I961Y2692JKPG4DEVUKIKRHB51F8OEUWTCEH50ECVVLU2SBV6W1NHWESX47TLCHSE796YK6CLNJV765T' where id=40; -update noar ti set v3='4QJFZJF1OIDGJO8L3JF1FU8KVRBVCAW0I0OXX34SSV6WKU2TDADOYNHYLKF8S1CN9FF0HSAKFMH0Q47CBSLUBEHS64XSOY0H6WU4KZCFJ130BEYBV4O1Q8KQAHCVRH634IQSXHGH50SMT3Y86819GNDYMNNL6RJFG0LYVYG8JIM22W5D5I961Y2692JKPG4DEVUKIKRHB51F8OEUWTCEH50ECVVLU2SBV6W1NHWESX47TLCHSE796YK6CLNJV765T' where id=40; -update noar tt set v0='HWRU6D5LE6HWXEN5S6W52X2HN11LQR9FCIHJPWAF6HSJDR7EEVE288F8DA8M2UZUE7F12BVG61VIDZ7BNXXOZWI3Y2N4705AN3866NQK6YPWH4LI48ZFUCTRLWRLT7563USJJXEKLQOPN1GAUGVR00E44D5WG6T2AHNXS2CFVKMHCJSX5ES2XVOINAQCL1JW07URUIRPAAW4CT81EHCKYNYK3KDRS6ZYL11EF6EQEOE7K2C168T5Y64JVZOK5ELCQ' where id=41; -update noar ti set v0='HWRU6D5LE6HWXEN5S6W52X2HN11LQR9FCIHJPWAF6HSJDR7EEVE288F8DA8M2UZUE7F12BVG61VIDZ7BNXXOZWI3Y2N4705AN3866NQK6YPWH4LI48ZFUCTRLWRLT7563USJJXEKLQOPN1GAUGVR00E44D5WG6T2AHNXS2CFVKMHCJSX5ES2XVOINAQCL1JW07URUIRPAAW4CT81EHCKYNYK3KDRS6ZYL11EF6EQEOE7K2C168T5Y64JVZOK5ELCQ' where id=41; -update noar tt set v1='2REATM9LDEW0A5B9N2185CGR5PBLVPYDE2DKU0O7M7EJA5PI8DU5J9BGJZI9IQ8U3IRM5AV9I8EFVKZ1AYC26QQU9SNONZAMO6JBL1DRAK7PR8760EA8EYEHV0JF35CKVNB537OQ4Z074XMH2XWU33J8D3S737QHS6FXI9GIUS404ZOIJWXZGVG77S2HO0ZX6TZ7V0URU55IXKXN9JRJBFDZUEM7GO9KOR7BKJH6DEG3WLS88EPLBQ2L1E6ZVJ8A2' where id=41; -update noar ti set v1='2REATM9LDEW0A5B9N2185CGR5PBLVPYDE2DKU0O7M7EJA5PI8DU5J9BGJZI9IQ8U3IRM5AV9I8EFVKZ1AYC26QQU9SNONZAMO6JBL1DRAK7PR8760EA8EYEHV0JF35CKVNB537OQ4Z074XMH2XWU33J8D3S737QHS6FXI9GIUS404ZOIJWXZGVG77S2HO0ZX6TZ7V0URU55IXKXN9JRJBFDZUEM7GO9KOR7BKJH6DEG3WLS88EPLBQ2L1E6ZVJ8A2' where id=41; -update noar tt set v2='O4UXNKM3O0OFP9BVJB264K46BYHG08QWXJUBQ5JGX0WH9IQ77U3GUSMJZUGFM5QGSSHE0MHM51JQZ7ME2EGR7VTLUNMUEJUZ45TI0E4AN4DTPIAT7O4VRV0W7UZVCS5STJDEUHO305FEPTXLTYELHKA85A0TO2FS1U3GO3513PE7CYRLE2VTPRN6FYIZT82G91WG0K24VF9DIRRO34VSL3C3CRF6WUP4VQM8L9J9VXPIO23V8AEFRRZ4ZDYOGD4UQ' where id=41; -update noar ti set v2='O4UXNKM3O0OFP9BVJB264K46BYHG08QWXJUBQ5JGX0WH9IQ77U3GUSMJZUGFM5QGSSHE0MHM51JQZ7ME2EGR7VTLUNMUEJUZ45TI0E4AN4DTPIAT7O4VRV0W7UZVCS5STJDEUHO305FEPTXLTYELHKA85A0TO2FS1U3GO3513PE7CYRLE2VTPRN6FYIZT82G91WG0K24VF9DIRRO34VSL3C3CRF6WUP4VQM8L9J9VXPIO23V8AEFRRZ4ZDYOGD4UQ' where id=41; -update noar tt set v3='WWQI6SKZJNZ7NTWKG1DDA6SJOLR7VJHSWRXU4P8QHB1LIH45F96SR4DKB4ZC6JDHRF3LW4CK5DROMHJW2HN7NJQKBH22S9PPRNIODSWC2T2HBDCU30BN5I77HJG8FL7N23TJYHNWTOJ4113Q62315EN4ZG1I8A1YGXL64BP3QWCNWLG13MC0DOE35BFQI6QDOA0G3N8LQEY669BVO29IK2JHHNA7RK3MGX75FHOHPJL77M8L9I9RQZBYKNR8BHDHH' where id=41; -update noar ti set v3='WWQI6SKZJNZ7NTWKG1DDA6SJOLR7VJHSWRXU4P8QHB1LIH45F96SR4DKB4ZC6JDHRF3LW4CK5DROMHJW2HN7NJQKBH22S9PPRNIODSWC2T2HBDCU30BN5I77HJG8FL7N23TJYHNWTOJ4113Q62315EN4ZG1I8A1YGXL64BP3QWCNWLG13MC0DOE35BFQI6QDOA0G3N8LQEY669BVO29IK2JHHNA7RK3MGX75FHOHPJL77M8L9I9RQZBYKNR8BHDHH' where id=41; -update noar tt set v0='B26APH1QO1T9F9IKE73JKNO8R57JW39FU554JGHS8P4ATSZBNZH1KB278NBBLC4WBBJPGAPPYCX9X12OKI1GJ1MZ7WJX0SZP7SVBO0B1RKU65D3T43ZE7RQYYJYVPLYND4743157YYNRCT8OS28RIS6OE67I8UZAN9I4DLY682DH9DU59VGTXW0K0RS51MSECC5T4M383U2JEE7638HL22UX7U8ZSZUVPHFIEFUU5CUTCOTE4BGTCW4SINRGYD70I' where id=42; -update noar ti set v0='B26APH1QO1T9F9IKE73JKNO8R57JW39FU554JGHS8P4ATSZBNZH1KB278NBBLC4WBBJPGAPPYCX9X12OKI1GJ1MZ7WJX0SZP7SVBO0B1RKU65D3T43ZE7RQYYJYVPLYND4743157YYNRCT8OS28RIS6OE67I8UZAN9I4DLY682DH9DU59VGTXW0K0RS51MSECC5T4M383U2JEE7638HL22UX7U8ZSZUVPHFIEFUU5CUTCOTE4BGTCW4SINRGYD70I' where id=42; -update noar tt set v1='33Y37JH1L18FFA4NRM2LTCHOXV17IJ75CSEC5ALLORHA3XU6HQKZ40R9N9098QH6BQ1JFL13VOZTK3UB610AZ2HORH933INO6J2ELQMVZIVRU0PSUFHIFWO959KVO994OOHN7Q5JPKL48C3PUU2097M89W92POTGYJ0ZZRKTMU8AOLT0AYU2PS4JGMOOLJC2JXFH80VA8VTMRPPRKVAEB5J2D27Z6L0JZXW1O1NRBSZ1Q7I8BC2TQIDMOXSZ5FUDB' where id=42; -update noar ti set v1='33Y37JH1L18FFA4NRM2LTCHOXV17IJ75CSEC5ALLORHA3XU6HQKZ40R9N9098QH6BQ1JFL13VOZTK3UB610AZ2HORH933INO6J2ELQMVZIVRU0PSUFHIFWO959KVO994OOHN7Q5JPKL48C3PUU2097M89W92POTGYJ0ZZRKTMU8AOLT0AYU2PS4JGMOOLJC2JXFH80VA8VTMRPPRKVAEB5J2D27Z6L0JZXW1O1NRBSZ1Q7I8BC2TQIDMOXSZ5FUDB' where id=42; -update noar tt set v2='4GA1A28P4CUYP2EPQ4AQHCM823H4GYFEIPJKG98DWKAO3J1IFLEAZHGKZUR60DMBOXIYWVS1D0YSWLCZ2IH7V83X51YWYX9IDI15H8AODQO987TCPOQN5DEY3E2KWS4A50KCQPPYNSNNH80PX92O8VD9QB2FHS7W67SG6EQ0L58O2GKFBSSORERP1WR9AJJRLT70JOTT7LP5ARD8FKHDF2E769XZS9M9WGYI4S0PCJ106D3W8U045QO3WYCZN0LUJ' where id=42; -update noar ti set v2='4GA1A28P4CUYP2EPQ4AQHCM823H4GYFEIPJKG98DWKAO3J1IFLEAZHGKZUR60DMBOXIYWVS1D0YSWLCZ2IH7V83X51YWYX9IDI15H8AODQO987TCPOQN5DEY3E2KWS4A50KCQPPYNSNNH80PX92O8VD9QB2FHS7W67SG6EQ0L58O2GKFBSSORERP1WR9AJJRLT70JOTT7LP5ARD8FKHDF2E769XZS9M9WGYI4S0PCJ106D3W8U045QO3WYCZN0LUJ' where id=42; -update noar tt set v3='TS3JKU2XDJ5H5CGJAUKUC9WLAHHJJVPNHY3V7VJSP9B7Z4TK8J9HASW8A4M699TGENR50R6LMGMWLVAS421IXCMDP2Q45ZUAK7YPNENVDU1QJD4CUORRGUK2PGZ0SWJNGTC6GOW8EE47EULXXWXCFJC3MOKL5C486TUVB34O0L08CZYSILNJQOPETYEAVK88RFJOTBFRPPAF2PJPWBMOS36J12ASE46IH2W2ZP1UXSSHKXBERCZOS3K6LPF40XD2Y' where id=42; -update noar ti set v3='TS3JKU2XDJ5H5CGJAUKUC9WLAHHJJVPNHY3V7VJSP9B7Z4TK8J9HASW8A4M699TGENR50R6LMGMWLVAS421IXCMDP2Q45ZUAK7YPNENVDU1QJD4CUORRGUK2PGZ0SWJNGTC6GOW8EE47EULXXWXCFJC3MOKL5C486TUVB34O0L08CZYSILNJQOPETYEAVK88RFJOTBFRPPAF2PJPWBMOS36J12ASE46IH2W2ZP1UXSSHKXBERCZOS3K6LPF40XD2Y' where id=42; -update noar tt set v0='CL6V9SSJP77WE8K1NQ02VZYU8RB2Q38UYZCQCFPX24666ZJD3XM60XWX394V7WV2SN374XR0AHPC9CWVOC434DKI4AJIFR83GKZSIFPOTEBNBP2IA9WY4ZYYVY79Q2QNPCCP7EJQIJW4O90LR1VUCL14MZJIU8KZXYWJR1UYWK21J5QPW7H8ZVA0HGJ3A6CYLOBUCWG52ERI5D2QOJ12T655SQFR74V8OUSQC3V44RAH88VHXBOF4D2ET4BFAHFCR' where id=43; -update noar ti set v0='CL6V9SSJP77WE8K1NQ02VZYU8RB2Q38UYZCQCFPX24666ZJD3XM60XWX394V7WV2SN374XR0AHPC9CWVOC434DKI4AJIFR83GKZSIFPOTEBNBP2IA9WY4ZYYVY79Q2QNPCCP7EJQIJW4O90LR1VUCL14MZJIU8KZXYWJR1UYWK21J5QPW7H8ZVA0HGJ3A6CYLOBUCWG52ERI5D2QOJ12T655SQFR74V8OUSQC3V44RAH88VHXBOF4D2ET4BFAHFCR' where id=43; -update noar tt set v1='PAVN2IYK705NWIJVC5PRM2K05T2SH5FFN8NK7CCQ5PQF81FAA44WGVEF4L1KDMGKXIM4QNKEQ80DTU2CWVMX92KNE330JPF6RONCWGX8Z0MAIYM9LH7YHZYAFUR0KDKZG0CFHQH6KHKBFDUH0VDX6YL08OB548A6DN65SA3FHIJMBQGM49DCJXQ0BCRW0ZYGUGRZ7T0CLVVAWPDWYFM4EDZ4V97E71LQJ50VMVHOIAYOEUGTTYRB5H89SFHE2BLO8' where id=43; -update noar ti set v1='PAVN2IYK705NWIJVC5PRM2K05T2SH5FFN8NK7CCQ5PQF81FAA44WGVEF4L1KDMGKXIM4QNKEQ80DTU2CWVMX92KNE330JPF6RONCWGX8Z0MAIYM9LH7YHZYAFUR0KDKZG0CFHQH6KHKBFDUH0VDX6YL08OB548A6DN65SA3FHIJMBQGM49DCJXQ0BCRW0ZYGUGRZ7T0CLVVAWPDWYFM4EDZ4V97E71LQJ50VMVHOIAYOEUGTTYRB5H89SFHE2BLO8' where id=43; -update noar tt set v2='A0WF6AH053APLJUK87DY1YX174LILLJFKIN7SBC969KCFXV7K0BT021NYUYFR4G7Y1XFP9PNUT7P43QDZ0MUKC8DL3IEV13UBQNGYIG6SRU93YWARIJPZLC749X2Y5476MJPZL0V5FNERXRA5J1YYARVP7Q5K3PKANY9F3YNWT075UFU1QS74FZB84Q6SKB75AXCKL7CUPXDNT6GD1G2IJ6BFS8T29UJSHU0QUSC8CRQW78SG5DX44CML2LB0IVIK' where id=43; -update noar ti set v2='A0WF6AH053APLJUK87DY1YX174LILLJFKIN7SBC969KCFXV7K0BT021NYUYFR4G7Y1XFP9PNUT7P43QDZ0MUKC8DL3IEV13UBQNGYIG6SRU93YWARIJPZLC749X2Y5476MJPZL0V5FNERXRA5J1YYARVP7Q5K3PKANY9F3YNWT075UFU1QS74FZB84Q6SKB75AXCKL7CUPXDNT6GD1G2IJ6BFS8T29UJSHU0QUSC8CRQW78SG5DX44CML2LB0IVIK' where id=43; -update noar tt set v3='BFC1W0PDFLDCE05C8PTZTJ0G748NG4V5Y649F9G4YNCWI1EPWSVVNZFR4LMCN72I28U0G6UPFRXA0W5FA2GFK5NTJ45T3BWBCV98IL9AL08JXTP6HEQLQMB5STFKQPSS4CUJFOBSV95FCC0AMY0UPKR9FIXFSS7CIOEJC9TSCGUS51416EG448IO3E2YKN6ONDMMHZLSL0TIPE0U2A8VGA0D31PX2D8BYCE616RWQTN2B4H0GT67CKL63DUEPYOUR' where id=43; -update noar ti set v3='BFC1W0PDFLDCE05C8PTZTJ0G748NG4V5Y649F9G4YNCWI1EPWSVVNZFR4LMCN72I28U0G6UPFRXA0W5FA2GFK5NTJ45T3BWBCV98IL9AL08JXTP6HEQLQMB5STFKQPSS4CUJFOBSV95FCC0AMY0UPKR9FIXFSS7CIOEJC9TSCGUS51416EG448IO3E2YKN6ONDMMHZLSL0TIPE0U2A8VGA0D31PX2D8BYCE616RWQTN2B4H0GT67CKL63DUEPYOUR' where id=43; -update noar tt set v0='65HF12YYOHEB5PJYWAMTERZR841XDGENHEJJR27LNLID4VLT4H2VDWFATJG5X9SN3BATFDUG3RXE90IB23YKLDJTHGROBTN91WGE14WW4BPRFJJR9FHVWVCGFRHH7SOPSS08QR5SGIUG1C4PMKJA8X1OX87RPBBLZBP1VU8WB65CEXWSY9DWHJ7A5DK90O00CIUPRJ880DXTVQ0FCZJIV13DMMBMGLJM62O3Y1Y6QU1MSFWPFC4EUH3L0DO4HXDFF' where id=44; -update noar ti set v0='65HF12YYOHEB5PJYWAMTERZR841XDGENHEJJR27LNLID4VLT4H2VDWFATJG5X9SN3BATFDUG3RXE90IB23YKLDJTHGROBTN91WGE14WW4BPRFJJR9FHVWVCGFRHH7SOPSS08QR5SGIUG1C4PMKJA8X1OX87RPBBLZBP1VU8WB65CEXWSY9DWHJ7A5DK90O00CIUPRJ880DXTVQ0FCZJIV13DMMBMGLJM62O3Y1Y6QU1MSFWPFC4EUH3L0DO4HXDFF' where id=44; -update noar tt set v1='KIZI306Y7UFS5PORP394I02OA9WC6MINBNAR2MHMJE567NCDF3VA1804F4T61BYUFG1L3M6F3IS4H2DB7YAHINPRWM68VR4L8W56440ZR0UY04SXIIWCC8Z5AE85VLGK6ISFE0SI2D0ARP6LVPD33XVETPX7BSHAH0SDREB2YFRSZFP3GPT2JXE4Z9VHMTTL86VT69PPVKFWCVLFGZJQZ6WNWRMC601SPZ3HZZQZ14I95FFF1Z1RWLSRBS6S1MWJ0' where id=44; -update noar ti set v1='KIZI306Y7UFS5PORP394I02OA9WC6MINBNAR2MHMJE567NCDF3VA1804F4T61BYUFG1L3M6F3IS4H2DB7YAHINPRWM68VR4L8W56440ZR0UY04SXIIWCC8Z5AE85VLGK6ISFE0SI2D0ARP6LVPD33XVETPX7BSHAH0SDREB2YFRSZFP3GPT2JXE4Z9VHMTTL86VT69PPVKFWCVLFGZJQZ6WNWRMC601SPZ3HZZQZ14I95FFF1Z1RWLSRBS6S1MWJ0' where id=44; -update noar tt set v2='6MHXEL4ZSOMZGO5G4G5DIT2YDEPKK79WMFLBDP8G7BN1NOSLGQ5D7KPGPWUGUZ7MTJ9EPE0859QOIALMQ6L0KXGVVX6XRULJV8E64XXO1BZUX7WZ26VXUAVF7NF7ORIR2GHN5W8H2BFJL1XSXDPQOFVWF8VFZZC8YXZNOGF2CELXGBKFJOTRSKNRTLWECJMU3SYOE68TNTKIHGM7IK3T857NVL9LVB7CX12PDWQ2NSUGEYO8IPFHYAZGXZGI88OOR' where id=44; -update noar ti set v2='6MHXEL4ZSOMZGO5G4G5DIT2YDEPKK79WMFLBDP8G7BN1NOSLGQ5D7KPGPWUGUZ7MTJ9EPE0859QOIALMQ6L0KXGVVX6XRULJV8E64XXO1BZUX7WZ26VXUAVF7NF7ORIR2GHN5W8H2BFJL1XSXDPQOFVWF8VFZZC8YXZNOGF2CELXGBKFJOTRSKNRTLWECJMU3SYOE68TNTKIHGM7IK3T857NVL9LVB7CX12PDWQ2NSUGEYO8IPFHYAZGXZGI88OOR' where id=44; -update noar tt set v3='YSYILL831UYPXYNDIOI5WVI203WTEIC1ZIXUB4QOMLXHB31V9NKV0YP2OXI6Y1RW5BVV19ECCCNS0VFZX98IWC6RCYVYA7TYNGQQRMNFLN3F54R030AEPP2Z4ATQYYT08E8V93896YFVD0PJAXLTYURQUA49F6Y7TMS6T6N5AEINR2K3AESWSQHQ88WYTHOYYZ4WCH2Y431XK4YRDEE5KXPRA17U0NZA0C5CRADFSIXM0Y5F2K87MIFXNKUIR79W8' where id=44; -update noar ti set v3='YSYILL831UYPXYNDIOI5WVI203WTEIC1ZIXUB4QOMLXHB31V9NKV0YP2OXI6Y1RW5BVV19ECCCNS0VFZX98IWC6RCYVYA7TYNGQQRMNFLN3F54R030AEPP2Z4ATQYYT08E8V93896YFVD0PJAXLTYURQUA49F6Y7TMS6T6N5AEINR2K3AESWSQHQ88WYTHOYYZ4WCH2Y431XK4YRDEE5KXPRA17U0NZA0C5CRADFSIXM0Y5F2K87MIFXNKUIR79W8' where id=44; -update noar tt set v0='FGX6QUO3PGR5QQ0N62GC924DZY3ZAGZAIEVZFFXNC2GC3QBUNVGZK8DL2L0J22WSXO81XCP1QF1WTSU6JH27KCDHB0BZ0JVUREJV57I20SUJ9YMJGCCWP097TK8TM81AJOJLXH7CD4WVZUEOUG695D4H5XDHOSTRITIX1B2DFHN1637YH4RITSHFEUW3K6I3VJB42HV48VYB4EXOVPDK27CW48EC2R3XL0VOUIWS0SGWJUM8XG28PFMSM6XMV6E2I' where id=45; -update noar ti set v0='FGX6QUO3PGR5QQ0N62GC924DZY3ZAGZAIEVZFFXNC2GC3QBUNVGZK8DL2L0J22WSXO81XCP1QF1WTSU6JH27KCDHB0BZ0JVUREJV57I20SUJ9YMJGCCWP097TK8TM81AJOJLXH7CD4WVZUEOUG695D4H5XDHOSTRITIX1B2DFHN1637YH4RITSHFEUW3K6I3VJB42HV48VYB4EXOVPDK27CW48EC2R3XL0VOUIWS0SGWJUM8XG28PFMSM6XMV6E2I' where id=45; -update noar tt set v1='NXRMLALWVI4DK12MNKT9LW1TW5J2MSQ24ZV0MECFGTUI1HKC08KOQUQYQL3NKA0NVB2HD1SVNB1N7LVGAY8S094SUESHJPFE1Q6FTMZQX2A6FW4DP0WPGLZ3J38VN7LA94GWCMP9VTXHB6NN0J3D72A3QLA48CKQMAIMZ6G57REX7H9DKXETPPGSVIOGQMHTJ11L183Z1UK3JMFOIGOUVXNAXFQQBJF7VCCE4CNFDVLJE915Z25EE7R5CVDVZ5GYV' where id=45; -update noar ti set v1='NXRMLALWVI4DK12MNKT9LW1TW5J2MSQ24ZV0MECFGTUI1HKC08KOQUQYQL3NKA0NVB2HD1SVNB1N7LVGAY8S094SUESHJPFE1Q6FTMZQX2A6FW4DP0WPGLZ3J38VN7LA94GWCMP9VTXHB6NN0J3D72A3QLA48CKQMAIMZ6G57REX7H9DKXETPPGSVIOGQMHTJ11L183Z1UK3JMFOIGOUVXNAXFQQBJF7VCCE4CNFDVLJE915Z25EE7R5CVDVZ5GYV' where id=45; -update noar tt set v2='P1X0GTIFY7R0IME581PI006OKRAN95XD95KET7M75P192TVDOWL45J1G76T7O8P3FA826F49I6AIUSCSCT6ZGRLDZ1O13DKP2KWX3SHAET63JKGMQ71OU3SQN26C9ED6V47LPIL8WFTQA3NT3H9EF8LLLQ3M8T1BOCDZ5T8XPULJE3HGYXRVL2P4WDMADWV09YAYLCKVJHJBKOZ3R1Y38ZX3ZY3JWZBBHFMTP08WC1MTYDZVSH4A4ZHT1DM344JKU' where id=45; -update noar ti set v2='P1X0GTIFY7R0IME581PI006OKRAN95XD95KET7M75P192TVDOWL45J1G76T7O8P3FA826F49I6AIUSCSCT6ZGRLDZ1O13DKP2KWX3SHAET63JKGMQ71OU3SQN26C9ED6V47LPIL8WFTQA3NT3H9EF8LLLQ3M8T1BOCDZ5T8XPULJE3HGYXRVL2P4WDMADWV09YAYLCKVJHJBKOZ3R1Y38ZX3ZY3JWZBBHFMTP08WC1MTYDZVSH4A4ZHT1DM344JKU' where id=45; -update noar tt set v3='3OBKSF9DZ7PWMQBBJ584R9E1ULIWQU30MIXM5P2984UO7NQKQHOK2NCG7220JHCPVVK0QMY576ENSJ1043LZYACR3UYK3PNDKT37BWWHLWAKJ2SNDLOH71ZCPEOZCEECIW7ZYE7YRTJPZ1BMCQ7WY3M9872IMMK81ORRLGDHLOLLKFZ5N4GIWEYD636E67NQ20BIGC84VLM5U6QUEA6NWDJVLPWQQFKEFKJZ9MMMCMBZCZEDVWCZ3RYNB12VB2KMI' where id=45; -update noar ti set v3='3OBKSF9DZ7PWMQBBJ584R9E1ULIWQU30MIXM5P2984UO7NQKQHOK2NCG7220JHCPVVK0QMY576ENSJ1043LZYACR3UYK3PNDKT37BWWHLWAKJ2SNDLOH71ZCPEOZCEECIW7ZYE7YRTJPZ1BMCQ7WY3M9872IMMK81ORRLGDHLOLLKFZ5N4GIWEYD636E67NQ20BIGC84VLM5U6QUEA6NWDJVLPWQQFKEFKJZ9MMMCMBZCZEDVWCZ3RYNB12VB2KMI' where id=45; -update noar tt set v0='XPSVIA76FZZ110SS9WUEQTW50A8ZI4XPPRGEOPX4YBBUKMXI600N6JBVGUNOPNV2A5I0H3KTMC959KW5BOE58LPVMSRAPBEY2APC7W8F34MJL7OL2UCQ7O44WEA6OF6GSABY8V3FFGVM2QO8GOM69CY8IKL8HEQ4GNWOAVINNJ8KWJLFSYZ0940T12SKPT0943UWJB4RY9F4P59IJFW8QTIU86ZYYLRJTP7Y5BYQGAT412WTWGPM86EU4J0YI93LO' where id=46; -update noar ti set v0='XPSVIA76FZZ110SS9WUEQTW50A8ZI4XPPRGEOPX4YBBUKMXI600N6JBVGUNOPNV2A5I0H3KTMC959KW5BOE58LPVMSRAPBEY2APC7W8F34MJL7OL2UCQ7O44WEA6OF6GSABY8V3FFGVM2QO8GOM69CY8IKL8HEQ4GNWOAVINNJ8KWJLFSYZ0940T12SKPT0943UWJB4RY9F4P59IJFW8QTIU86ZYYLRJTP7Y5BYQGAT412WTWGPM86EU4J0YI93LO' where id=46; -update noar tt set v1='MG6SLBHU0405FQXXGERN6CB8NPI374KDI1NBCA7KDX3HAB4LGAED97XNEE5QXJCE32K0ZDXGQEJPGNDB47RDQAITM3LLCC7UTT5ZAJRF48V5S5XRMVCBP3ICD83TGNPFELIC53UCVAGQTSB8UEC32VAOT1H96TJ3HE3GBR4LR5NYIT97MPUD4X932CE3L358Z4HBA68RW6Z7KEJJPSE6YSO28RTKYXAGSATNMG24Z541QC71TVVKRAJI6FWRTMNEZ' where id=46; -update noar ti set v1='MG6SLBHU0405FQXXGERN6CB8NPI374KDI1NBCA7KDX3HAB4LGAED97XNEE5QXJCE32K0ZDXGQEJPGNDB47RDQAITM3LLCC7UTT5ZAJRF48V5S5XRMVCBP3ICD83TGNPFELIC53UCVAGQTSB8UEC32VAOT1H96TJ3HE3GBR4LR5NYIT97MPUD4X932CE3L358Z4HBA68RW6Z7KEJJPSE6YSO28RTKYXAGSATNMG24Z541QC71TVVKRAJI6FWRTMNEZ' where id=46; -update noar tt set v2='UZEFVHAPP0YVNF9BYAM9J4OV66NWKXTDHXGU00896DD1SUKHNDTDZVXOD2DM7F7PHFL7LD85OII9NF5N6R49ELLQHVKI4V215YXNIZ1JTM6G4R89O20E9X4SDSV6IH4DGULXSZFUSCLD8LZ6QDQMQC5MT1OKW9J2QHGTSOCJ1L10WZWB1NWPVBXTUIK9MSG97BCTV9I6K8D3XFYNBOXPPNHWXLQATV14T2OOFVWF8W2FTGKJX6UA5DAG94P93TAAO' where id=46; -update noar ti set v2='UZEFVHAPP0YVNF9BYAM9J4OV66NWKXTDHXGU00896DD1SUKHNDTDZVXOD2DM7F7PHFL7LD85OII9NF5N6R49ELLQHVKI4V215YXNIZ1JTM6G4R89O20E9X4SDSV6IH4DGULXSZFUSCLD8LZ6QDQMQC5MT1OKW9J2QHGTSOCJ1L10WZWB1NWPVBXTUIK9MSG97BCTV9I6K8D3XFYNBOXPPNHWXLQATV14T2OOFVWF8W2FTGKJX6UA5DAG94P93TAAO' where id=46; -update noar tt set v3='N0TSZY0OU3IZOBN1698J3542T295SGXMJNSLP49PUH4GDPHZWZVM0SAGOEYSVDH0XIV7HUG6DDY2327HOQ330OVQEQXO2TH19E580BNRCN79UT8BXL4GBDWXB0QA7B1128IQM9UKF8I1C4K86P4THO1F32NZXY4VPG2L2AX4HARUE3P9YVNV6CIXDV590W5B8QBRK7TYO9B872WNNP9KIY0UHKUN9SZW86FG120GBPMP2QNZQ9P6ELEH183PK1ZDI' where id=46; -update noar ti set v3='N0TSZY0OU3IZOBN1698J3542T295SGXMJNSLP49PUH4GDPHZWZVM0SAGOEYSVDH0XIV7HUG6DDY2327HOQ330OVQEQXO2TH19E580BNRCN79UT8BXL4GBDWXB0QA7B1128IQM9UKF8I1C4K86P4THO1F32NZXY4VPG2L2AX4HARUE3P9YVNV6CIXDV590W5B8QBRK7TYO9B872WNNP9KIY0UHKUN9SZW86FG120GBPMP2QNZQ9P6ELEH183PK1ZDI' where id=46; -update noar tt set v0='ENTKQFPHX7G2AJ39YUZS9VCYQSLZDAT6P7IS8QDVU8QUPJMJOBOIYIEJG5DIQW9QPR7NTFD6AFI6DI5YMN1BFF9O5OQD0DBEFPUIFSFRI6ORPPIXVYFQ20BU1TMWAJKY5ZOBIF3EC3KXRNFP0X893TVIAWT3KNS85AGW64DU8WYFQK2CK16S5G37XYQ6PY5D34IEAWOCMSBK22V3S6HLK57LV19FI3GRUDH9P7YHO3N31PS8CS2BOP6S2LN6C0O7N' where id=47; -update noar ti set v0='ENTKQFPHX7G2AJ39YUZS9VCYQSLZDAT6P7IS8QDVU8QUPJMJOBOIYIEJG5DIQW9QPR7NTFD6AFI6DI5YMN1BFF9O5OQD0DBEFPUIFSFRI6ORPPIXVYFQ20BU1TMWAJKY5ZOBIF3EC3KXRNFP0X893TVIAWT3KNS85AGW64DU8WYFQK2CK16S5G37XYQ6PY5D34IEAWOCMSBK22V3S6HLK57LV19FI3GRUDH9P7YHO3N31PS8CS2BOP6S2LN6C0O7N' where id=47; -update noar tt set v1='HY3JITCZX272T7NC3UN2TVK3D4O2795M2YZSBD6TJFJU9KAU6QG0IAKVXD4HQY47BN3O49ILMWBXROE12SVUK880T5QU2EW8NDDWO9SWYM44PLRTFX671C2R93A1VJ216C6GY68Z1W1DAU7VR3GCNSTFGARHZ0UQX2810E46WLK3QC4KV8KJ094CW6MP51N57QPN2USYT5MH2QQOICQ5ZHBGYH4AJECVGMAAJ7D1SB1UGX3DQT55WXXCXZ45SGPME' where id=47; -update noar ti set v1='HY3JITCZX272T7NC3UN2TVK3D4O2795M2YZSBD6TJFJU9KAU6QG0IAKVXD4HQY47BN3O49ILMWBXROE12SVUK880T5QU2EW8NDDWO9SWYM44PLRTFX671C2R93A1VJ216C6GY68Z1W1DAU7VR3GCNSTFGARHZ0UQX2810E46WLK3QC4KV8KJ094CW6MP51N57QPN2USYT5MH2QQOICQ5ZHBGYH4AJECVGMAAJ7D1SB1UGX3DQT55WXXCXZ45SGPME' where id=47; -update noar tt set v2='QTAVN8W7CMXL08TSM82VSOXZFA2GJGKQH589BLHQXJ2X91H7VVEDQU0CAXJQV0KZI6UCB4TJVDSMAH7KGX3I0VK9H4PCDXMSR3J2APWS08WMQCLUVE7Q9I3XDDALTATU15WRXR5UJG9K0LDJB8HTNJ31KKPFMWHBG4G1IW1DT2R8XJKSWL1YJGO36FY5YR012AR1K7YXTLMVVNMBQOWGRA9YI8T1ZZCITMXDMEO4KBKSMNA1AJ6OH964YVP87HDD3' where id=47; -update noar ti set v2='QTAVN8W7CMXL08TSM82VSOXZFA2GJGKQH589BLHQXJ2X91H7VVEDQU0CAXJQV0KZI6UCB4TJVDSMAH7KGX3I0VK9H4PCDXMSR3J2APWS08WMQCLUVE7Q9I3XDDALTATU15WRXR5UJG9K0LDJB8HTNJ31KKPFMWHBG4G1IW1DT2R8XJKSWL1YJGO36FY5YR012AR1K7YXTLMVVNMBQOWGRA9YI8T1ZZCITMXDMEO4KBKSMNA1AJ6OH964YVP87HDD3' where id=47; -update noar tt set v3='0MU0DN3CILNTH4P4VW7L346GQH0IBHB2KRHHWUK3IZFKNZP2DDAY318J0I4YTLTOTPH7A9EW3J52MU0R3GRQL6W89PVAM9M0NJPQHCKQC9X5TFR4C40GFMMOGIYFDJN3GOSSEWJ8SYZDIILOKBPKMFAKO41KES23DU1L23H127T48KP97PCW12PI3N4KVBYWWLGB5D68UANS3AFQ8ZUKOI5Z00DKMEK6QK7TGA6MLF714UKVU8XACTFM733INRCTV' where id=47; -update noar ti set v3='0MU0DN3CILNTH4P4VW7L346GQH0IBHB2KRHHWUK3IZFKNZP2DDAY318J0I4YTLTOTPH7A9EW3J52MU0R3GRQL6W89PVAM9M0NJPQHCKQC9X5TFR4C40GFMMOGIYFDJN3GOSSEWJ8SYZDIILOKBPKMFAKO41KES23DU1L23H127T48KP97PCW12PI3N4KVBYWWLGB5D68UANS3AFQ8ZUKOI5Z00DKMEK6QK7TGA6MLF714UKVU8XACTFM733INRCTV' where id=47; -update noar tt set v0='AJ0ZB1IIX2E3PRBZC7RZDRMBNDSIBNPM107SBFHTRYDGIY66OCRW9XZBQ47N5YMY9KIQ324KRDK4PCI6GR6TGBBFF7BLXO913QN2T7NV4ZX12VWBWOBDU6FQASRAKQ5E91WEA3OIDP3SM7CG1KKF4DP4MC726LCLZV3S1PXPQD8S9ZNCE1OXI2ZJPBI5POXKSRDTCQUS9X6Y66YAPP1022Q1JQKGRRLK4N5PGPVYRUORTT2V1DPD9OGBIJXEFO5RA' where id=48; -update noar ti set v0='AJ0ZB1IIX2E3PRBZC7RZDRMBNDSIBNPM107SBFHTRYDGIY66OCRW9XZBQ47N5YMY9KIQ324KRDK4PCI6GR6TGBBFF7BLXO913QN2T7NV4ZX12VWBWOBDU6FQASRAKQ5E91WEA3OIDP3SM7CG1KKF4DP4MC726LCLZV3S1PXPQD8S9ZNCE1OXI2ZJPBI5POXKSRDTCQUS9X6Y66YAPP1022Q1JQKGRRLK4N5PGPVYRUORTT2V1DPD9OGBIJXEFO5RA' where id=48; -update noar tt set v1='PK8J4UH5XIC04B8YEQUNHLV7G9XC1S6JOCZFOHENH1VOEO3XQ5FX1SW8V3K18ODKHQEK0RLMK6GN56Z7MB2DLCXT5KTIBZ395UADYZH9RMJMQGWRRYZJPIQPEH4EIOHXFBS0L0M3JBB0O81NY0GSCZSRABK90SLXEMXCJ0RWVA91FAJY82OYE9IGWCJQBEF8IB2HXFZEQL82SWB59ZXIK6P6V1XCMOKF5ETMJ6QI2N81ZPRBMSIDSYBW6IVY94PIO' where id=48; -update noar ti set v1='PK8J4UH5XIC04B8YEQUNHLV7G9XC1S6JOCZFOHENH1VOEO3XQ5FX1SW8V3K18ODKHQEK0RLMK6GN56Z7MB2DLCXT5KTIBZ395UADYZH9RMJMQGWRRYZJPIQPEH4EIOHXFBS0L0M3JBB0O81NY0GSCZSRABK90SLXEMXCJ0RWVA91FAJY82OYE9IGWCJQBEF8IB2HXFZEQL82SWB59ZXIK6P6V1XCMOKF5ETMJ6QI2N81ZPRBMSIDSYBW6IVY94PIO' where id=48; -update noar tt set v2='DJTOKHUTKMN0KYK6NM03NPXX2745NXWIV0VUMJVAY7Q723QS03WQ4Q4O0GOPIIHZAG94UYHUT8JILAU5PFSP9S084YSRW5Q7FB1FIQIKSGZXMQUL6Q34G3K2140TL3JDEQGDGL6DX61DJVI9X5GNIOVG0U60GXTX9705EV5A21KY1NM0C3AV5OCIP9YXF3OZZ65EI3NS50FY6N9K6A7ZN2VYTGG9HRFNMKJYRC6HN5WUUSPLLZXSPS0R0AJL8YI1Q' where id=48; -update noar ti set v2='DJTOKHUTKMN0KYK6NM03NPXX2745NXWIV0VUMJVAY7Q723QS03WQ4Q4O0GOPIIHZAG94UYHUT8JILAU5PFSP9S084YSRW5Q7FB1FIQIKSGZXMQUL6Q34G3K2140TL3JDEQGDGL6DX61DJVI9X5GNIOVG0U60GXTX9705EV5A21KY1NM0C3AV5OCIP9YXF3OZZ65EI3NS50FY6N9K6A7ZN2VYTGG9HRFNMKJYRC6HN5WUUSPLLZXSPS0R0AJL8YI1Q' where id=48; -update noar tt set v3='NX5FMM59DI7ZD9BB112JIN1D8M8YUUCW9A8NOC25LL3NBY3VVRMBD4PGL7U47S3BLGK6BONHZ130KZ4QFK2BA0H4NDS2UL2OIG6DO2KX3LNNNJUNX27M01HJENL4PA0NAGYNMHG0L3VER4WPVE4F4YLX03BM7MWU9452R1B6EO5KH4NA0RR533IKHWHD88FJZCG21W7QLWDV2T2MEDZXABPEJC8O8BLY5P5PU7UVJZLVJEO1J4IJWUZ828EGQ41IM' where id=48; -update noar ti set v3='NX5FMM59DI7ZD9BB112JIN1D8M8YUUCW9A8NOC25LL3NBY3VVRMBD4PGL7U47S3BLGK6BONHZ130KZ4QFK2BA0H4NDS2UL2OIG6DO2KX3LNNNJUNX27M01HJENL4PA0NAGYNMHG0L3VER4WPVE4F4YLX03BM7MWU9452R1B6EO5KH4NA0RR533IKHWHD88FJZCG21W7QLWDV2T2MEDZXABPEJC8O8BLY5P5PU7UVJZLVJEO1J4IJWUZ828EGQ41IM' where id=48; -update noar tt set v0='DP4HVYRKY1OHXM6J5NSADI8AFXEQV4O5U1O9PQH24DDOGOK65KMBF7RDHUVUZOHJQI7855L8SMD45H90F65DW2VPGNZI00PKIE6MDYM2C2N9RB4QCWUCIB902Z54ORAOI79HS3SRZN0C6PKCO265LENOYPWOCYS78Z3J16VW0TFJWDLLP01HUG2FA38SUY8NMKY5XX3ZD6ZW64KH43TAJ9PG2TXLZM27BOL702FVKKOCT01VZ1TIBNIO282U9PIDM' where id=49; -update noar ti set v0='DP4HVYRKY1OHXM6J5NSADI8AFXEQV4O5U1O9PQH24DDOGOK65KMBF7RDHUVUZOHJQI7855L8SMD45H90F65DW2VPGNZI00PKIE6MDYM2C2N9RB4QCWUCIB902Z54ORAOI79HS3SRZN0C6PKCO265LENOYPWOCYS78Z3J16VW0TFJWDLLP01HUG2FA38SUY8NMKY5XX3ZD6ZW64KH43TAJ9PG2TXLZM27BOL702FVKKOCT01VZ1TIBNIO282U9PIDM' where id=49; -update noar tt set v1='UJCVL59R2GQVTMOEZ81QMICA726D16HQK232QLEK7IER7GV4FX9M6K1DW7D4G1V33G7WY7O1C388CUE33FGRNPSWWF9QRC2UB5PJ8QZ7YOS59FC8EBOA7FLYPKGHOYC5ETHQ3LE5B6BV2V72XAT3UL6M8R9B5UOUMP2TOCRY0JXG9MUMCD3ZLJXN14HEVNNG3VBRMOR9C495LWJAB80AY8YBO0RC0WET9YZI1TDOYSX4B8GB5WFJQ96J7L83ETHGK' where id=49; -update noar ti set v1='UJCVL59R2GQVTMOEZ81QMICA726D16HQK232QLEK7IER7GV4FX9M6K1DW7D4G1V33G7WY7O1C388CUE33FGRNPSWWF9QRC2UB5PJ8QZ7YOS59FC8EBOA7FLYPKGHOYC5ETHQ3LE5B6BV2V72XAT3UL6M8R9B5UOUMP2TOCRY0JXG9MUMCD3ZLJXN14HEVNNG3VBRMOR9C495LWJAB80AY8YBO0RC0WET9YZI1TDOYSX4B8GB5WFJQ96J7L83ETHGK' where id=49; -update noar tt set v2='OWEU4TKTFUK2F8WXPU5REQBS08WCEAGGZPZMCC0RTLRT7FYWF7V5R8MDHZNXRTHL7VOT28IOYF0NFIU89YTG2OWMUV9ULZ3WLM6NVTD3TLIF7UQ4GSTGG5HKSTG4DCCDIVWV5EEKQ5IX2496UP3ADJIQE9KKEZMHSAA0S4VFM6XCQTKHGATADSJ2IJPGE7U9U6S7IXG5U2MVLYJ1ZGJ9KN4X4X1NPULZKU37D46NKGE0E3ZLYXZIT8JZZ1XQ7CTUV' where id=49; -update noar ti set v2='OWEU4TKTFUK2F8WXPU5REQBS08WCEAGGZPZMCC0RTLRT7FYWF7V5R8MDHZNXRTHL7VOT28IOYF0NFIU89YTG2OWMUV9ULZ3WLM6NVTD3TLIF7UQ4GSTGG5HKSTG4DCCDIVWV5EEKQ5IX2496UP3ADJIQE9KKEZMHSAA0S4VFM6XCQTKHGATADSJ2IJPGE7U9U6S7IXG5U2MVLYJ1ZGJ9KN4X4X1NPULZKU37D46NKGE0E3ZLYXZIT8JZZ1XQ7CTUV' where id=49; -update noar tt set v3='64HP24BJUE39C4MPRLKFIUM1GB3B7RJJ8MEQ9PSYTWLN9LRHUE0AUI2TZLIDE8YB8SVUF0ZIZ9X0G8RUIWNSYNB70NPJLHADH53X6SH278G72BCVH0KI0UCGBJIU7GO3VW5U3JXB5LHT6TFXZ7WKGX80H8JQ04TT87X8SILUKAV3EI4978Y8E12YG3W75B1AI30YIF63IRTT0QJ7Z49A04MH3IFCBSPZP4VWZ5CT76HQ390P76X8XVJFUNVVUMMY2' where id=49; -update noar ti set v3='64HP24BJUE39C4MPRLKFIUM1GB3B7RJJ8MEQ9PSYTWLN9LRHUE0AUI2TZLIDE8YB8SVUF0ZIZ9X0G8RUIWNSYNB70NPJLHADH53X6SH278G72BCVH0KI0UCGBJIU7GO3VW5U3JXB5LHT6TFXZ7WKGX80H8JQ04TT87X8SILUKAV3EI4978Y8E12YG3W75B1AI30YIF63IRTT0QJ7Z49A04MH3IFCBSPZP4VWZ5CT76HQ390P76X8XVJFUNVVUMMY2' where id=49; -update noar tt set v0='AH6RJUA0TN3FWVAF6DAJEEXIHY5OE785ML1IUGUUINA37Q1DXMUVTQ4KTJCL4N7V4F166XKCS6UPT4O1J0CXWUI18FDCUUROXJ1GZXO3A11OJKQ6CF40PYPH4Z45L8TGBPJKITHKRAG7C9QQQEAXRKXUATYYE4ETB9DFNMZ0OCLDOI4JK8Z6ONFIBU9IL6Y4FNEQF30VW1EZB1THQ76LMNIWYEE4PNA69VRWIBZ7XSCT35JFHE4ZJOA62TDR5G004' where id=50; -update noar ti set v0='AH6RJUA0TN3FWVAF6DAJEEXIHY5OE785ML1IUGUUINA37Q1DXMUVTQ4KTJCL4N7V4F166XKCS6UPT4O1J0CXWUI18FDCUUROXJ1GZXO3A11OJKQ6CF40PYPH4Z45L8TGBPJKITHKRAG7C9QQQEAXRKXUATYYE4ETB9DFNMZ0OCLDOI4JK8Z6ONFIBU9IL6Y4FNEQF30VW1EZB1THQ76LMNIWYEE4PNA69VRWIBZ7XSCT35JFHE4ZJOA62TDR5G004' where id=50; -update noar tt set v1='3WJGO08D8N6P32S6TP8LA8EPVKK6F9H51M8E47CBQE2D2UG92ILRKC6NM31CTGNWFSH3PGSHJTHDY9UZEN41YL37PK2J9BYS63D6NT6DQ0V90L13FYFZKE5N0P3K7CGE9KZ3KRYL1T7VMK49NILEDNQN5WZGGQVHQ2G6V2W6163UL5C3AULDGYUSMHMLYDAQNCU4WS1N67HHMUKSNUKFNGYKWF5Y8GXKTL0R55FSKFONJ7KIIDMKLHCALHUAM0IK7' where id=50; -update noar ti set v1='3WJGO08D8N6P32S6TP8LA8EPVKK6F9H51M8E47CBQE2D2UG92ILRKC6NM31CTGNWFSH3PGSHJTHDY9UZEN41YL37PK2J9BYS63D6NT6DQ0V90L13FYFZKE5N0P3K7CGE9KZ3KRYL1T7VMK49NILEDNQN5WZGGQVHQ2G6V2W6163UL5C3AULDGYUSMHMLYDAQNCU4WS1N67HHMUKSNUKFNGYKWF5Y8GXKTL0R55FSKFONJ7KIIDMKLHCALHUAM0IK7' where id=50; -update noar tt set v2='BCEPH1I4N56QWD8V7ZQ8J63IBTH9VCZ00152KFWIZJO0DIIM46QA9UNRE9YJKQWCLY69YDPR3KFLNI90F9HRSCN0E6RJK038PPYM4VSMR5N387E9CD6GOUY8YPZBC3E41TEOZGEJ9WJ5HWG6VO6DNWGOW0IRN4Z4KILY4VS0ON8V1A0AL60DPGOEDE05IJUTFQW4OCVQENEWD1NP47H1FGOMAWV6G4HSY7548BELL0198FWE820OKTHG6NAEED4N9' where id=50; -update noar ti set v2='BCEPH1I4N56QWD8V7ZQ8J63IBTH9VCZ00152KFWIZJO0DIIM46QA9UNRE9YJKQWCLY69YDPR3KFLNI90F9HRSCN0E6RJK038PPYM4VSMR5N387E9CD6GOUY8YPZBC3E41TEOZGEJ9WJ5HWG6VO6DNWGOW0IRN4Z4KILY4VS0ON8V1A0AL60DPGOEDE05IJUTFQW4OCVQENEWD1NP47H1FGOMAWV6G4HSY7548BELL0198FWE820OKTHG6NAEED4N9' where id=50; -update noar tt set v3='DDYKE6YKZAILO7XJB95GWV2LPE82HPT151R32YMC6FOZKMEQFW46XH5G3ZIM6N7358EM8MDIZMJSQ35O77J0L7Z8ZRQLHU74DVY4QQRI5QR483EITJ8BYOMAN6G3XJPGLUD5ZABI333KYVU0L5G31NF6WJJMAS62KABSQ0QNE9OBCPKDLM9HJ8LUZ2KV278YPZ2N4XOWQC1VUXLSEMLA0SRQVEYXVZUONGNZUSYILI9N08NYR5EGWDN648CSF598W' where id=50; -update noar ti set v3='DDYKE6YKZAILO7XJB95GWV2LPE82HPT151R32YMC6FOZKMEQFW46XH5G3ZIM6N7358EM8MDIZMJSQ35O77J0L7Z8ZRQLHU74DVY4QQRI5QR483EITJ8BYOMAN6G3XJPGLUD5ZABI333KYVU0L5G31NF6WJJMAS62KABSQ0QNE9OBCPKDLM9HJ8LUZ2KV278YPZ2N4XOWQC1VUXLSEMLA0SRQVEYXVZUONGNZUSYILI9N08NYR5EGWDN648CSF598W' where id=50; -update noar tt set v0='IX8XV44MYZO5Q4T894ICBBS97IJEUNI9ZWUK0N13R3RT8KEWPGFG1PJ5TLKV9ZD9J75Z4DFXBHL37EYDRLUOMBY8FARXL78QPM0A6MZETUCIK3IM8IWCCK3UZAU233FREHNQ5HPF4M4T9LR5NCERZQF15TOLIV8LZ4OFZ4YE0XUPXWNBCUAFGCHOYHVRL5YWVSTI2BQ3NBVVLASBZBDVK8S2BEZ3ET9RI5W542DJWQF7FTG1MI4TM7Y8AS3ISLUZT' where id=51; -update noar ti set v0='IX8XV44MYZO5Q4T894ICBBS97IJEUNI9ZWUK0N13R3RT8KEWPGFG1PJ5TLKV9ZD9J75Z4DFXBHL37EYDRLUOMBY8FARXL78QPM0A6MZETUCIK3IM8IWCCK3UZAU233FREHNQ5HPF4M4T9LR5NCERZQF15TOLIV8LZ4OFZ4YE0XUPXWNBCUAFGCHOYHVRL5YWVSTI2BQ3NBVVLASBZBDVK8S2BEZ3ET9RI5W542DJWQF7FTG1MI4TM7Y8AS3ISLUZT' where id=51; -update noar tt set v1='BP6I9HQ6YIS0LYRJOAHTMNFDJOO3FV08BESRLO73HWVLTOR4QGNICXYMNCPIRL0BTHNFUPZUH7BC53F9EHRWIXJUWOT9MP1MA21NB5AKXN3U4PQEQZ1C895XHBB2P9U8UTO5GSCHD8DZYM2J838HACQ5RM3VV28OSP79HVOJ0IX6H6AQPYM8YKPXQIHH5SUCUWUQWL12PRBIR0G1ULZ12VUC2F706VZIN1J89VMBOTD8UDVVES8PEDZAFIC11A34X' where id=51; -update noar ti set v1='BP6I9HQ6YIS0LYRJOAHTMNFDJOO3FV08BESRLO73HWVLTOR4QGNICXYMNCPIRL0BTHNFUPZUH7BC53F9EHRWIXJUWOT9MP1MA21NB5AKXN3U4PQEQZ1C895XHBB2P9U8UTO5GSCHD8DZYM2J838HACQ5RM3VV28OSP79HVOJ0IX6H6AQPYM8YKPXQIHH5SUCUWUQWL12PRBIR0G1ULZ12VUC2F706VZIN1J89VMBOTD8UDVVES8PEDZAFIC11A34X' where id=51; -update noar tt set v2='Q06RQ2UKQZ06C0GJWGIDCRRNELZJMVF9CZ3YZKBLCILE4DI8DTG73VFR0WICBLNMOUA9L0MU4QF1MGZBQXHJWXKLKEAH4DSN66JNZSX7R0SVIWPEEPUXGZ5XEMTTUQ0NXTIL683LBJG86XK37302SX50SKMXOH9PZ4F6P9SQ3QVOZP5YM5WKMIIBIJN9U44CMOQHH631W9KMPII8ASYGP1CWYTT9398ISFSAPR5NPJ5RHEGDY9VVOHMIR8NSMGEWZ' where id=51; -update noar ti set v2='Q06RQ2UKQZ06C0GJWGIDCRRNELZJMVF9CZ3YZKBLCILE4DI8DTG73VFR0WICBLNMOUA9L0MU4QF1MGZBQXHJWXKLKEAH4DSN66JNZSX7R0SVIWPEEPUXGZ5XEMTTUQ0NXTIL683LBJG86XK37302SX50SKMXOH9PZ4F6P9SQ3QVOZP5YM5WKMIIBIJN9U44CMOQHH631W9KMPII8ASYGP1CWYTT9398ISFSAPR5NPJ5RHEGDY9VVOHMIR8NSMGEWZ' where id=51; -update noar tt set v3='CK1XXTMAKVNGHF6IHHBVZZMQTEYZ7HG8Z04HFRKN5RCM8GTUIAFPEYRK4IU4IZCSOH5RVZRV97VPGH8UD10TRJ282QHJNM2J485QPA0YCOHUPUPNFZMX6IKWA8KFHJYIAUQOJDPY8I6PQ74MA750X0ETU0F6ZWF6UONZG4O9WK1SXKPONAOKDGANNEOEZ2OYLPKN6P3R6IOVCC94WYETKHU5VEJJE01YC034GYAKABPIACQY15HVMGDNQSZ17GS3U' where id=51; -update noar ti set v3='CK1XXTMAKVNGHF6IHHBVZZMQTEYZ7HG8Z04HFRKN5RCM8GTUIAFPEYRK4IU4IZCSOH5RVZRV97VPGH8UD10TRJ282QHJNM2J485QPA0YCOHUPUPNFZMX6IKWA8KFHJYIAUQOJDPY8I6PQ74MA750X0ETU0F6ZWF6UONZG4O9WK1SXKPONAOKDGANNEOEZ2OYLPKN6P3R6IOVCC94WYETKHU5VEJJE01YC034GYAKABPIACQY15HVMGDNQSZ17GS3U' where id=51; -update noar tt set v0='M09HWRSUOLJ2POTRP5JCDYVBPMRDMBI1IW0Y7Q22YZSMDS6R7NADS0846PBSZ417UIC7VCED5OKI6GW9BLY8J7AZ1Z7YY6DDMI2M0YQXQT4KLW76UOU5W52FVNAA5PEZ8JD8HYTSF2OK2HDX5K0EHSP3ZV7X75JUKWID9PD3DDJI8YV2X3YL8L183M579APW9C600H4IXB3IZE76MBKW1KFCXDOBIJDYYX2JZ9OM29APVEGNM2FPC3GSQ57EQJ4WX' where id=52; -update noar ti set v0='M09HWRSUOLJ2POTRP5JCDYVBPMRDMBI1IW0Y7Q22YZSMDS6R7NADS0846PBSZ417UIC7VCED5OKI6GW9BLY8J7AZ1Z7YY6DDMI2M0YQXQT4KLW76UOU5W52FVNAA5PEZ8JD8HYTSF2OK2HDX5K0EHSP3ZV7X75JUKWID9PD3DDJI8YV2X3YL8L183M579APW9C600H4IXB3IZE76MBKW1KFCXDOBIJDYYX2JZ9OM29APVEGNM2FPC3GSQ57EQJ4WX' where id=52; -update noar tt set v1='S7FF8MBVYWBV1EITIENPHUW2BV6N3VOH4J4A7DOK37E9CUOF0TUJHA2FPGUZ9LS56S4OKMMRQ37Y7K2LIO0RIDOHG6JCVV0XA0CZSENOM4GOQC7QYL969ASPW5Q4Y5P2HLXON3CTTHOHB97HT34ML6CU3ELHF6DX4WQHIS9Q8PL2INFMSTZA7NO00PVS6B2BEPZ481PD9VBZENA4WA10NPHEKM6A1LWTZIO0F4R06RBKJ2G6UHJUJGJGTJDNHV2PI' where id=52; -update noar ti set v1='S7FF8MBVYWBV1EITIENPHUW2BV6N3VOH4J4A7DOK37E9CUOF0TUJHA2FPGUZ9LS56S4OKMMRQ37Y7K2LIO0RIDOHG6JCVV0XA0CZSENOM4GOQC7QYL969ASPW5Q4Y5P2HLXON3CTTHOHB97HT34ML6CU3ELHF6DX4WQHIS9Q8PL2INFMSTZA7NO00PVS6B2BEPZ481PD9VBZENA4WA10NPHEKM6A1LWTZIO0F4R06RBKJ2G6UHJUJGJGTJDNHV2PI' where id=52; -update noar tt set v2='GZD4ATOSQ5JDYQXP9TEDX71YHJFWQTV6VCWJ6TA93QF6WFC1JVJC179TWMYU4OF3GN8NANQ6UW41L60ZNW6IZVU9RROJR2EX4S433ICDLBXWUSUDTL7B94O1EOMR4OXI1DCGVBGQ4MR0991HQPLBHBU91ZOOYUCOKWU0NHFPD4XX5F8S9L2UGPCX5O0Q5MZZGZ41Y05E1GUFK5BS0AMKC55CKSDOG42W3BXO6A31W4HC485MUGKUPYDRUEJC3Y0OI' where id=52; -update noar ti set v2='GZD4ATOSQ5JDYQXP9TEDX71YHJFWQTV6VCWJ6TA93QF6WFC1JVJC179TWMYU4OF3GN8NANQ6UW41L60ZNW6IZVU9RROJR2EX4S433ICDLBXWUSUDTL7B94O1EOMR4OXI1DCGVBGQ4MR0991HQPLBHBU91ZOOYUCOKWU0NHFPD4XX5F8S9L2UGPCX5O0Q5MZZGZ41Y05E1GUFK5BS0AMKC55CKSDOG42W3BXO6A31W4HC485MUGKUPYDRUEJC3Y0OI' where id=52; -update noar tt set v3='U2YUS4MO6YA2MNGY3ATCE6LZ5ZIRW4ZVBYXVOBWTP4WC8ISQWSNXTXFP47PKHZD3JCNUQRLSF9W09TMX9NLQZG7WYY1UQCGZROSTOI0C31GJ6S81RJE3LT7L5XQO6Q6Q69A0GF3426NJ243Y2CHAXQT403IZ0V9N4TJSOJTF34EJL2MO17IND1SKA61YPCUK9BYPJ503LIPYIBBUQ5LEYTUYJRLYEFHNPPX8PTL7D4KRQDNAC2AWCFH34SA9KXN5P' where id=52; -update noar ti set v3='U2YUS4MO6YA2MNGY3ATCE6LZ5ZIRW4ZVBYXVOBWTP4WC8ISQWSNXTXFP47PKHZD3JCNUQRLSF9W09TMX9NLQZG7WYY1UQCGZROSTOI0C31GJ6S81RJE3LT7L5XQO6Q6Q69A0GF3426NJ243Y2CHAXQT403IZ0V9N4TJSOJTF34EJL2MO17IND1SKA61YPCUK9BYPJ503LIPYIBBUQ5LEYTUYJRLYEFHNPPX8PTL7D4KRQDNAC2AWCFH34SA9KXN5P' where id=52; -update noar tt set v0='YZ2XJTJJVS8SCDMGKY0T4XZFHMUE76Y6TGXZ16QTSZGBDXP9P0STCB3FWYGBMWE9IH2Y2XT0JTBP5VR4126TEI5V1VA6SP1BCD1VDCSL1V8RZMMUJIJVZAJLMWQ68FE0BOTX16OOB66VA76A8NBZFW26M8M4NPBJOKF3032E5G9H0YVUWKWH9TQAAOGF9ZJ6J86PAVOJGDEJDCYIF179WJRGW665025GLDVF2WAVUPC52YUFRE3H8WY6PAH0GRCAF' where id=53; -update noar ti set v0='YZ2XJTJJVS8SCDMGKY0T4XZFHMUE76Y6TGXZ16QTSZGBDXP9P0STCB3FWYGBMWE9IH2Y2XT0JTBP5VR4126TEI5V1VA6SP1BCD1VDCSL1V8RZMMUJIJVZAJLMWQ68FE0BOTX16OOB66VA76A8NBZFW26M8M4NPBJOKF3032E5G9H0YVUWKWH9TQAAOGF9ZJ6J86PAVOJGDEJDCYIF179WJRGW665025GLDVF2WAVUPC52YUFRE3H8WY6PAH0GRCAF' where id=53; -update noar tt set v1='GUW4DMWZGEVNXA856NJ6SRQIZ3K99KBUCH1Y9J0V63I8GSNK74NCVQ0JV0MNUYFUTMGOTZXZ59N51LXRMX8GJ1WZEXC6CB2IAYWRK0VQGSXW8RH3AA4BNYXESVQ888PW5GJOCTR7UWQI86681313LATF63IGSJNIWGNLSENWXNFXN42U7WQMM06D0YJYVJT0YFQ97SRY04FZF4BDDOIC7A1LJYV4D2RPXVNO4TWQEZYJ8PVEMHJIU4JURVHTI315Y' where id=53; -update noar ti set v1='GUW4DMWZGEVNXA856NJ6SRQIZ3K99KBUCH1Y9J0V63I8GSNK74NCVQ0JV0MNUYFUTMGOTZXZ59N51LXRMX8GJ1WZEXC6CB2IAYWRK0VQGSXW8RH3AA4BNYXESVQ888PW5GJOCTR7UWQI86681313LATF63IGSJNIWGNLSENWXNFXN42U7WQMM06D0YJYVJT0YFQ97SRY04FZF4BDDOIC7A1LJYV4D2RPXVNO4TWQEZYJ8PVEMHJIU4JURVHTI315Y' where id=53; -update noar tt set v2='VBGP5D5V2KM99SXNZISEUFL8ECH8FNEIXP78VOKMQVB8NH4FPYO9EOHKHPC06H7U2IBM7A4P748CQL11RRISDNATLSMX3H7G6Z4Z4K6ZLGQCAMPQF27120IPRWTJT2M6UBX1YOSUMHRBL3EZEB282HLSZ0UTNPMQTQASWZSFWGZNP3INXYM0GJBLAM2OSCCI7ARPNCJBJ5VQ9ZNTKPU09J7I1FB2OJ97IBP9FMRKXL0R2ZRNILK3JQ53M6YAKXW9K' where id=53; -update noar ti set v2='VBGP5D5V2KM99SXNZISEUFL8ECH8FNEIXP78VOKMQVB8NH4FPYO9EOHKHPC06H7U2IBM7A4P748CQL11RRISDNATLSMX3H7G6Z4Z4K6ZLGQCAMPQF27120IPRWTJT2M6UBX1YOSUMHRBL3EZEB282HLSZ0UTNPMQTQASWZSFWGZNP3INXYM0GJBLAM2OSCCI7ARPNCJBJ5VQ9ZNTKPU09J7I1FB2OJ97IBP9FMRKXL0R2ZRNILK3JQ53M6YAKXW9K' where id=53; -update noar tt set v3='0DGY1WNH1HRC430XLVY6KCJEB8R4OBEHJ5QD9VYY28OVE9VMWZO3BAFANRYNDZH8IDJQDNUX56F694IHQDFA9ONO5I7KTZQDGHMB57E64OX129NBGCKR5DZL1XW6O0QOFZ35G975QUCZQGXSI2JB19R5LY51IH3ZEN26FTEKAA0VFDMM4L625M7VHYL17YBPAIJOXIKUW9TAZ8MVQQ6V4CBRXCSO9FXN9TRL8F4QVGY7R7TMDZQKKW64SIX9NMP4S' where id=53; -update noar ti set v3='0DGY1WNH1HRC430XLVY6KCJEB8R4OBEHJ5QD9VYY28OVE9VMWZO3BAFANRYNDZH8IDJQDNUX56F694IHQDFA9ONO5I7KTZQDGHMB57E64OX129NBGCKR5DZL1XW6O0QOFZ35G975QUCZQGXSI2JB19R5LY51IH3ZEN26FTEKAA0VFDMM4L625M7VHYL17YBPAIJOXIKUW9TAZ8MVQQ6V4CBRXCSO9FXN9TRL8F4QVGY7R7TMDZQKKW64SIX9NMP4S' where id=53; -update noar tt set v0='148KU98F1DWGNJF21QI6TYP4RVND6DX0EB0SPRIZW9CJDCGQA3P4VWTQQUCK9A9V9J0J7QCUZ0SGJ8L1OW6ZHGNZ21P6MHP1N5JI3PKQY6ZMI9E5NOQVPCFRHV06FR0YH1ZDYYVOKAZIYM7DIFZYX3QS6P9XNB3EQIU6EDTIGF6W3VL2I2ZWE0IKA7TD5OFBVAV6ACMYJPFCYABXZMPM6O56D4LC5Z8RIHWZ9TDEBGH6JE2NYJ7RI04SQN4X1A3H3' where id=54; -update noar ti set v0='148KU98F1DWGNJF21QI6TYP4RVND6DX0EB0SPRIZW9CJDCGQA3P4VWTQQUCK9A9V9J0J7QCUZ0SGJ8L1OW6ZHGNZ21P6MHP1N5JI3PKQY6ZMI9E5NOQVPCFRHV06FR0YH1ZDYYVOKAZIYM7DIFZYX3QS6P9XNB3EQIU6EDTIGF6W3VL2I2ZWE0IKA7TD5OFBVAV6ACMYJPFCYABXZMPM6O56D4LC5Z8RIHWZ9TDEBGH6JE2NYJ7RI04SQN4X1A3H3' where id=54; -update noar tt set v1='XYGVV4QM9AB348JA8DYS2NC2QZMRTU8I2T8BTZBX3CDJOXQ5NBXS041QC29M44YKT7FCPXIO9S3KTDV713VS4LDA01DD1SEDXCL2056NTPEMEOKZZD6BSJZ0FX7PMI739KFLBSTC5I78H9OU49LWI0VWW9IE4P6YXNG3DTX6J12E4GHFKG9OHTGO3WSS7J687RCQXHO1SZL7O21LYYC89FBBB1W651TF5CYWBVANH7L27I63BKJMGX7UA2OXNO49M' where id=54; -update noar ti set v1='XYGVV4QM9AB348JA8DYS2NC2QZMRTU8I2T8BTZBX3CDJOXQ5NBXS041QC29M44YKT7FCPXIO9S3KTDV713VS4LDA01DD1SEDXCL2056NTPEMEOKZZD6BSJZ0FX7PMI739KFLBSTC5I78H9OU49LWI0VWW9IE4P6YXNG3DTX6J12E4GHFKG9OHTGO3WSS7J687RCQXHO1SZL7O21LYYC89FBBB1W651TF5CYWBVANH7L27I63BKJMGX7UA2OXNO49M' where id=54; -update noar tt set v2='IS2I84XDTHEEC1OPZF2MXH3VU03HZ43FCKBSHHEKR11YXP49QILMKNQUZIA807I5XZR80CIVA17LU546XJWJ6TCHDO3OIGJ7LVWXLBNDM802AR2E7E19XSUDI4M4XRX17VF5TSUFI396CU6PH2FOPBD908RP5F9MBAQRNSAN2STK8YY7HLCJY0VQIP4JIYJ1XRMNA29JKIT9JUKFCPN33S6GA3OCHEWLSGT1AG3MQEL21G3TT7DXACC8ASMGAF4M2' where id=54; -update noar ti set v2='IS2I84XDTHEEC1OPZF2MXH3VU03HZ43FCKBSHHEKR11YXP49QILMKNQUZIA807I5XZR80CIVA17LU546XJWJ6TCHDO3OIGJ7LVWXLBNDM802AR2E7E19XSUDI4M4XRX17VF5TSUFI396CU6PH2FOPBD908RP5F9MBAQRNSAN2STK8YY7HLCJY0VQIP4JIYJ1XRMNA29JKIT9JUKFCPN33S6GA3OCHEWLSGT1AG3MQEL21G3TT7DXACC8ASMGAF4M2' where id=54; -update noar tt set v3='R9NGX3RGHDCNUMSPBGBNZ2Q0EOJVYLDJ210HAOCU81FL18LJQOTVQ46H537P7SF3CTITMO7BGVTC5MGDY8VXCXPX1514VP31BIHOWLTM7R4ALHWBTYMW4EXMF87YDU6T1Z3Z3VRNIDLH0N3ZNOT215W761ZEXZRQEWY0629YPOI7CUS9LD0I7AZ1QV41J0F0WGZ34G9CHL6W2IOTZOUK76GV4QUEI97VH6SAG8PRTLE73D8J8ISLL0DHDUQH42YSN' where id=54; -update noar ti set v3='R9NGX3RGHDCNUMSPBGBNZ2Q0EOJVYLDJ210HAOCU81FL18LJQOTVQ46H537P7SF3CTITMO7BGVTC5MGDY8VXCXPX1514VP31BIHOWLTM7R4ALHWBTYMW4EXMF87YDU6T1Z3Z3VRNIDLH0N3ZNOT215W761ZEXZRQEWY0629YPOI7CUS9LD0I7AZ1QV41J0F0WGZ34G9CHL6W2IOTZOUK76GV4QUEI97VH6SAG8PRTLE73D8J8ISLL0DHDUQH42YSN' where id=54; -update noar tt set v0='RXITDSJRNHA6P2EMDU7N0ELY7XBRKYUNBBOLGP1TJU7QPKWEOYIW33WN7F5CYBOME1GP8R5B8MQ3X54FKUJB3ISVW3KHQ0LHV3KWA0T4DXFGFEMKY13D1Y2JQMNA06XOK6DJUVPHV66J8JYKWVFI14ELD4BQSHIJ8YWCID9RJJXMKEQPK2QN6CUS75Y6JEW7ZM15DGKJ58UEC6VP0XFX76MYHL3JMSCUE74T1VCP7MH1LAOD17PE0UZ5XWQC3O9LT' where id=55; -update noar ti set v0='RXITDSJRNHA6P2EMDU7N0ELY7XBRKYUNBBOLGP1TJU7QPKWEOYIW33WN7F5CYBOME1GP8R5B8MQ3X54FKUJB3ISVW3KHQ0LHV3KWA0T4DXFGFEMKY13D1Y2JQMNA06XOK6DJUVPHV66J8JYKWVFI14ELD4BQSHIJ8YWCID9RJJXMKEQPK2QN6CUS75Y6JEW7ZM15DGKJ58UEC6VP0XFX76MYHL3JMSCUE74T1VCP7MH1LAOD17PE0UZ5XWQC3O9LT' where id=55; -update noar tt set v1='74IZ0QHEDY8EQQ2A6LQLXXZS81RQS32X36LLNHJS56QOGZAQUL1G05JU1UE41JICQCC43LC4YV9COGWQMYH9MB18MI7RYJLTJQ0BVZ3U8SHPORLQSB4DRJ2OYD9S0K0XD2O9F6K0IALIXM1PUIJC55G3JKI7FXJHVG88AL28WCXUT1COLUTSQBO4N7KVA0JFTSPGKT2MD7ETMYLVTOCOKT1M57L85OBX620OOZ8HAV60OW9SCWMGG3027NF77TX7G' where id=55; -update noar ti set v1='74IZ0QHEDY8EQQ2A6LQLXXZS81RQS32X36LLNHJS56QOGZAQUL1G05JU1UE41JICQCC43LC4YV9COGWQMYH9MB18MI7RYJLTJQ0BVZ3U8SHPORLQSB4DRJ2OYD9S0K0XD2O9F6K0IALIXM1PUIJC55G3JKI7FXJHVG88AL28WCXUT1COLUTSQBO4N7KVA0JFTSPGKT2MD7ETMYLVTOCOKT1M57L85OBX620OOZ8HAV60OW9SCWMGG3027NF77TX7G' where id=55; -update noar tt set v2='QWSM80WQLJQSVD81V9ZZ80UIDKNPZCYZGTPSNIP9P4KABUDS0P9Y2EM5RMPP8X5NNW8LQ81NE3A9B2O3KIAOYBUFTSFFCBBY8HOO3XGY57WDD5L9439BUXBZZ0EWLUU2U9B4LEF35WUA4AMIPWG8LRHQOD4S50NUSKI5CXOBFQGDH4V0W1JFHY58C5W2KO584GTDN1QENOAR59DWXB8A1DJ28MO4D4SYSOV5X2GU57NX6WO3U2SFGEY7B98FW6PVZ' where id=55; -update noar ti set v2='QWSM80WQLJQSVD81V9ZZ80UIDKNPZCYZGTPSNIP9P4KABUDS0P9Y2EM5RMPP8X5NNW8LQ81NE3A9B2O3KIAOYBUFTSFFCBBY8HOO3XGY57WDD5L9439BUXBZZ0EWLUU2U9B4LEF35WUA4AMIPWG8LRHQOD4S50NUSKI5CXOBFQGDH4V0W1JFHY58C5W2KO584GTDN1QENOAR59DWXB8A1DJ28MO4D4SYSOV5X2GU57NX6WO3U2SFGEY7B98FW6PVZ' where id=55; -update noar tt set v3='4QCW3GZV2PRFCJFL1BNHE4BIEYWLTO32S0XJ803GNHMRQSUEVSWW419I7NR8O2H0MCO0S21BUAB4P6ZQ224QSJSJ7KTP8OB00AQSDAYRDCM5BKVVQTYBJN7LC0VY65YOEWMTZJSLERWV5UIZC5MBI5B77GLDZS1OLHRY2829LV6NH4P2VD955NWLO5U15DZSZP4Z23AHUOULYIJODPR6I558JLJ1O9VHJVYDX8S2BNHKEOYZION1XQ9ZCV2IKBJ0R' where id=55; -update noar ti set v3='4QCW3GZV2PRFCJFL1BNHE4BIEYWLTO32S0XJ803GNHMRQSUEVSWW419I7NR8O2H0MCO0S21BUAB4P6ZQ224QSJSJ7KTP8OB00AQSDAYRDCM5BKVVQTYBJN7LC0VY65YOEWMTZJSLERWV5UIZC5MBI5B77GLDZS1OLHRY2829LV6NH4P2VD955NWLO5U15DZSZP4Z23AHUOULYIJODPR6I558JLJ1O9VHJVYDX8S2BNHKEOYZION1XQ9ZCV2IKBJ0R' where id=55; -update noar tt set v0='RBC709DFZFIRQVPQJUA4NC5DUQ7JLTSUL7LP4OT32OGWIVEI12O9CTVFKY0T77DACEHDNJ2IRIJ224Q6HXZ6GDT0ZBQ9FI1C82SSZ3J4YECVL17SOUBT5EMUPU4YV5EKRFY27MJ7E97DCWP5BBVPWVFLZQ2HAT1SVJKGWBD6LN1BX7XBJJBDXKKNNFG1X81EUYX5LKB62RW666325USBGASVFAYQ89QV64PBH9KXZB396MVQPFM7KL428798YLRM8' where id=56; -update noar ti set v0='RBC709DFZFIRQVPQJUA4NC5DUQ7JLTSUL7LP4OT32OGWIVEI12O9CTVFKY0T77DACEHDNJ2IRIJ224Q6HXZ6GDT0ZBQ9FI1C82SSZ3J4YECVL17SOUBT5EMUPU4YV5EKRFY27MJ7E97DCWP5BBVPWVFLZQ2HAT1SVJKGWBD6LN1BX7XBJJBDXKKNNFG1X81EUYX5LKB62RW666325USBGASVFAYQ89QV64PBH9KXZB396MVQPFM7KL428798YLRM8' where id=56; -update noar tt set v1='HO20SZKYX0NH9STYSSEAXDFIS2KLNAHQGEGW16T89UVZHCA1EF8V6G6MYFASOURYNS59PMGVETIY8P5QAQYZS3K6P7KVJP4EMOZ9Y2OGAABTZWH3GJ6HSDDAND5L74BW3BYPZ2J0QZ6B2HP3G807B8NJ95U2YUAVELZ9PDG7G6X2YMZUHFPLGYNGNM4JA9LKTZ2PTNY3W31I7ZBZBIVFDMQPYLE9BE6NEGDG3OJD1I8ORZ0UYVK6XLQLKBMKGD5ZL' where id=56; -update noar ti set v1='HO20SZKYX0NH9STYSSEAXDFIS2KLNAHQGEGW16T89UVZHCA1EF8V6G6MYFASOURYNS59PMGVETIY8P5QAQYZS3K6P7KVJP4EMOZ9Y2OGAABTZWH3GJ6HSDDAND5L74BW3BYPZ2J0QZ6B2HP3G807B8NJ95U2YUAVELZ9PDG7G6X2YMZUHFPLGYNGNM4JA9LKTZ2PTNY3W31I7ZBZBIVFDMQPYLE9BE6NEGDG3OJD1I8ORZ0UYVK6XLQLKBMKGD5ZL' where id=56; -update noar tt set v2='OKTKCF4MVKK4NY2RXL3V7W3R7IR9J9LR9W6C6UKFQL7RNGPZNCI2RCC7XR46FXPDXRYQRSHQORE96WQC369XKDWSD47TM3IJDMYEDEDZAH3T6H8VO62NV885GRCOSL9SDNLRSUQD4ZNPMOGQUGR2KWPFX947B2LETD9ARJEWDIZW4IQU730J5EQ3NFCQ1OJ621VV8O4R58WZ2UNNEUE4S32YBELKJEJQLI6E63PRIAPHFBAT6P5A4MBNMK6U3HVJ4' where id=56; -update noar ti set v2='OKTKCF4MVKK4NY2RXL3V7W3R7IR9J9LR9W6C6UKFQL7RNGPZNCI2RCC7XR46FXPDXRYQRSHQORE96WQC369XKDWSD47TM3IJDMYEDEDZAH3T6H8VO62NV885GRCOSL9SDNLRSUQD4ZNPMOGQUGR2KWPFX947B2LETD9ARJEWDIZW4IQU730J5EQ3NFCQ1OJ621VV8O4R58WZ2UNNEUE4S32YBELKJEJQLI6E63PRIAPHFBAT6P5A4MBNMK6U3HVJ4' where id=56; -update noar tt set v3='A3TR0403QJMOPNQ7N9ETM6GMAAXH0X05S3GZ7OY0K2JUHRYUFVQ4AGOIYNZGVEE7KO90CWTUBWKPHZLP6RMSGV46HCZMY5AD2B5QNP5R3K0MT5PX5ZMQZ0ONOFP00JY2E7BUY3U4J6TF4W1P7OJ46EHAN3IWQQ336RUJ7OCJWAWW1WXKYNS9QMFN0I1FSQU2LFD15S4JL2UWH7D34M2R6DJGKPOWC6T1QNKH1CP3PA43SSS5KNMECHAEQ0Y2STGRS' where id=56; -update noar ti set v3='A3TR0403QJMOPNQ7N9ETM6GMAAXH0X05S3GZ7OY0K2JUHRYUFVQ4AGOIYNZGVEE7KO90CWTUBWKPHZLP6RMSGV46HCZMY5AD2B5QNP5R3K0MT5PX5ZMQZ0ONOFP00JY2E7BUY3U4J6TF4W1P7OJ46EHAN3IWQQ336RUJ7OCJWAWW1WXKYNS9QMFN0I1FSQU2LFD15S4JL2UWH7D34M2R6DJGKPOWC6T1QNKH1CP3PA43SSS5KNMECHAEQ0Y2STGRS' where id=56; -update noar tt set v0='K15RP1F2RBWKQYVW3YPN70EJZJOQ5UJ4ETF3RUR8DWERQB9YWKZWCET3XPRCQEXB4NQ14NB8L7GPFSSZX2P6VBLMJRK0KM81ZCJXZXK51QAH930SLZ9GGMKU6JCQVFLOD9VK7YLZIDNJWY4UXXNXCU8SVWF1TTZMD2INR689AXJ71UYU5AFS07NVK4590P7CBOXMPYKJ1FQGVNTQYUTDVIX73ATXF3F0QKBGB725O4X0YGNT53F3TI2J256R3UTPS' where id=57; -update noar ti set v0='K15RP1F2RBWKQYVW3YPN70EJZJOQ5UJ4ETF3RUR8DWERQB9YWKZWCET3XPRCQEXB4NQ14NB8L7GPFSSZX2P6VBLMJRK0KM81ZCJXZXK51QAH930SLZ9GGMKU6JCQVFLOD9VK7YLZIDNJWY4UXXNXCU8SVWF1TTZMD2INR689AXJ71UYU5AFS07NVK4590P7CBOXMPYKJ1FQGVNTQYUTDVIX73ATXF3F0QKBGB725O4X0YGNT53F3TI2J256R3UTPS' where id=57; -update noar tt set v1='EB8LKTZO0149MRXMX2V2SPEC9G1N2R5LHKL1XNSEJ3W4R626KV56I4HE33S08KZQLWCF89GGW28WD3QJIIOE52D9WUKJVLQDGU8JWC9H5JVJFQLYKA5GIP11HHGF9JP5JXTIWWCWM169PIIQY89HADZG0FB4PEC86ULCD4Z8N75YCACUXQWYR8QP6QJ5T5RN7RDQIIDIH78T90H7SFJVY4C8N9FL19IJ1QYBS75QFFN58MBKSPJWNYNCYRUZXKZJT' where id=57; -update noar ti set v1='EB8LKTZO0149MRXMX2V2SPEC9G1N2R5LHKL1XNSEJ3W4R626KV56I4HE33S08KZQLWCF89GGW28WD3QJIIOE52D9WUKJVLQDGU8JWC9H5JVJFQLYKA5GIP11HHGF9JP5JXTIWWCWM169PIIQY89HADZG0FB4PEC86ULCD4Z8N75YCACUXQWYR8QP6QJ5T5RN7RDQIIDIH78T90H7SFJVY4C8N9FL19IJ1QYBS75QFFN58MBKSPJWNYNCYRUZXKZJT' where id=57; -update noar tt set v2='R88IS6E8I6IU48YQ9NV9QPD6T0CSS7WNRV6YCM5GYWCROXB5A3V9RPK4PJYR9R9K9WGG234AF7ICPVMNRBVSS1LN83JO7FQK85GBZSKYJO688XJQDDRXOVXA2YD7XUEE8TSJ6366QIA4C4YY00OB9Q13G4A5YGUBFDF286ENE4HHKWGII2AEBFPOTQHNHSKJ80UBB2PC6P2MBPGCN8D56LF4TL40D9V47BZMR06324ZRNM2NR0OLSHWV2U57YQD9G' where id=57; -update noar ti set v2='R88IS6E8I6IU48YQ9NV9QPD6T0CSS7WNRV6YCM5GYWCROXB5A3V9RPK4PJYR9R9K9WGG234AF7ICPVMNRBVSS1LN83JO7FQK85GBZSKYJO688XJQDDRXOVXA2YD7XUEE8TSJ6366QIA4C4YY00OB9Q13G4A5YGUBFDF286ENE4HHKWGII2AEBFPOTQHNHSKJ80UBB2PC6P2MBPGCN8D56LF4TL40D9V47BZMR06324ZRNM2NR0OLSHWV2U57YQD9G' where id=57; -update noar tt set v3='QF45GZSFEVMJP97CNQ88Y3QB37GBAUCY3GU5FCT0SPVXY5BRV2ZYLBEX78TU92T0UUA4W0G9RPQZU1K5BX16430S742JKFN4RSVMAZXZBZM5VN6XL4OAWFP5V8J4KEZNNU3I34C1JSS0S3B3K9YE2J44LH2WFQKFRKDARIG2BLGJCD1K5HJ2RWG4TUAFGR84EOUMKT2G6NAQCBR7ZFW3EW15TTWAEVXH9BE2PWBOTN17CKVI3LFP3VZ22V33ZXX90' where id=57; -update noar ti set v3='QF45GZSFEVMJP97CNQ88Y3QB37GBAUCY3GU5FCT0SPVXY5BRV2ZYLBEX78TU92T0UUA4W0G9RPQZU1K5BX16430S742JKFN4RSVMAZXZBZM5VN6XL4OAWFP5V8J4KEZNNU3I34C1JSS0S3B3K9YE2J44LH2WFQKFRKDARIG2BLGJCD1K5HJ2RWG4TUAFGR84EOUMKT2G6NAQCBR7ZFW3EW15TTWAEVXH9BE2PWBOTN17CKVI3LFP3VZ22V33ZXX90' where id=57; -update noar tt set v0='QZ1JZYIAK1ZMSVJ6BA4RZQBAOH4ULI4GFI8DLQLVT0HSYI823QC0AZIYW3XRB6V3MLKHKD20VQ532FZGGZNO7X3NM43NFYDF7IKHULTZFIVSIVR9XXXSNA79C8JLJN8UZAKQ4M7FGCSS3DWPJIXWJMO0BVSM4CPV18LRLEBP5W8TWWJ9JJ1TBG7V20JXE373LL3M97U25RV256RLO7CW0DQI3LYRWAHX42ZXW196N42WPLTD0DZFJJPR5E3477F6M' where id=58; -update noar ti set v0='QZ1JZYIAK1ZMSVJ6BA4RZQBAOH4ULI4GFI8DLQLVT0HSYI823QC0AZIYW3XRB6V3MLKHKD20VQ532FZGGZNO7X3NM43NFYDF7IKHULTZFIVSIVR9XXXSNA79C8JLJN8UZAKQ4M7FGCSS3DWPJIXWJMO0BVSM4CPV18LRLEBP5W8TWWJ9JJ1TBG7V20JXE373LL3M97U25RV256RLO7CW0DQI3LYRWAHX42ZXW196N42WPLTD0DZFJJPR5E3477F6M' where id=58; -update noar tt set v1='ED5VEUPZ5V07RKUURO4MU47D6S19HO4KBP6Z4E4QH1QEMQ88B43093HGPGLNRJRHPNKZTY7LH0DRQJT5Y0VTZXHERE2K4HFCPXNRBGVZ7W7HVZUJKDPBIA1T5RFIEKCDHARZB849AODU2IXNL2J8SAZKJBG48SX8RQ43RT2ZVGZJGWS5BMICTSP5YORP07PFZZX4UBLT36AJJVOP3J1DHCJ2OLZWJ24P56XSA5ZFS2QP93VUUIW9UJK5HGOPYA09C' where id=58; -update noar ti set v1='ED5VEUPZ5V07RKUURO4MU47D6S19HO4KBP6Z4E4QH1QEMQ88B43093HGPGLNRJRHPNKZTY7LH0DRQJT5Y0VTZXHERE2K4HFCPXNRBGVZ7W7HVZUJKDPBIA1T5RFIEKCDHARZB849AODU2IXNL2J8SAZKJBG48SX8RQ43RT2ZVGZJGWS5BMICTSP5YORP07PFZZX4UBLT36AJJVOP3J1DHCJ2OLZWJ24P56XSA5ZFS2QP93VUUIW9UJK5HGOPYA09C' where id=58; -update noar tt set v2='Y6A1TF3MO7TAMRXSUIAXR2SC9T088BX8RZ5OD8SC2OPX0P9ZFD1DR9WCB9R3QMI3F9OSZF7PJU8VC8D6BSAA5NX9HIIOY6ZKWGG0LLHNHYHUIUBT3FHJ4M7HO51243WZNPRRU6GSFL0EHNX2FUMXJ1KWCO22U1YA46F42PDE1Z4RU05XNF0GR2I5XN8DNWPF1L7XCUVTF1DDXON2MS16V43HFK3KDD0I1ZPD53ZXHYHLAMSWOADUX1K6RH7KNOBJ0' where id=58; -update noar ti set v2='Y6A1TF3MO7TAMRXSUIAXR2SC9T088BX8RZ5OD8SC2OPX0P9ZFD1DR9WCB9R3QMI3F9OSZF7PJU8VC8D6BSAA5NX9HIIOY6ZKWGG0LLHNHYHUIUBT3FHJ4M7HO51243WZNPRRU6GSFL0EHNX2FUMXJ1KWCO22U1YA46F42PDE1Z4RU05XNF0GR2I5XN8DNWPF1L7XCUVTF1DDXON2MS16V43HFK3KDD0I1ZPD53ZXHYHLAMSWOADUX1K6RH7KNOBJ0' where id=58; -update noar tt set v3='VBIEKOIR2GDLKHZQVYIRRO3XUTNIPEPDGKYY5P4UNRZO9LS0AF8M5O2YMIL2247EWPJ88FY4PFP572IWGCWOWI6WHFYGXNIDOH4O4N05W3889J9HAW6ZQMG6BNKCM2NJ0VVG0KCKWWNPQT6FDZF1WXTCI1WYV5MUJ8ZW661HCFG7SQCO4SKLFI9TKBUXIA8F257ISRY07B78A9A321WG63JHJCTUJH7DXAW0L8A8HFLU7AOCU1GJ38TCD7GACX7PP' where id=58; -update noar ti set v3='VBIEKOIR2GDLKHZQVYIRRO3XUTNIPEPDGKYY5P4UNRZO9LS0AF8M5O2YMIL2247EWPJ88FY4PFP572IWGCWOWI6WHFYGXNIDOH4O4N05W3889J9HAW6ZQMG6BNKCM2NJ0VVG0KCKWWNPQT6FDZF1WXTCI1WYV5MUJ8ZW661HCFG7SQCO4SKLFI9TKBUXIA8F257ISRY07B78A9A321WG63JHJCTUJH7DXAW0L8A8HFLU7AOCU1GJ38TCD7GACX7PP' where id=58; -update noar tt set v0='2BUNCDFLTKP29WTPYHUAP60FHR16VMVZYB5L02EKAE1BCO6EE4ED6NO8BCPC8CZWMH21BTV5IX774YUE4Q3BF94HOP6NPLK42UQG56HQ7GQ9HUQRK43TXIN40G8XNEPS7YMTNFISCFE0MY65HAQ2R3C6VRJ5NOF90A6OM7JMHBJZ9Y3RVMUYEM5KH1AYPW8FSAUGNMJTYAX0IISIZ4CROXG2INWTCYWIZLI2XKK3BQQPX57NS3F12NHC05STLOB6W' where id=59; -update noar ti set v0='2BUNCDFLTKP29WTPYHUAP60FHR16VMVZYB5L02EKAE1BCO6EE4ED6NO8BCPC8CZWMH21BTV5IX774YUE4Q3BF94HOP6NPLK42UQG56HQ7GQ9HUQRK43TXIN40G8XNEPS7YMTNFISCFE0MY65HAQ2R3C6VRJ5NOF90A6OM7JMHBJZ9Y3RVMUYEM5KH1AYPW8FSAUGNMJTYAX0IISIZ4CROXG2INWTCYWIZLI2XKK3BQQPX57NS3F12NHC05STLOB6W' where id=59; -update noar tt set v1='UHHMAEEGFD4SWCMUUNKK4ZQ212JPB5IAQ8V7CKUOX7S6PWS4BEWK22IO392JZ6CBDHR1CBZ8XE81W3LFJCYH8Q5GGN23F4Q7PMISWICRL7VVH7E6385G57ADOGI2I52M5AF5NKAEWM0G9GROPQOPBHHYL9VJWCY7RZIK1K16WB6BNP3J0LKJ6XCE5I4N5VOKWN68AMFEFOOPE19RIS1WSDS5LXW2JUE0C9O2KNKXI75DU95MH8YKVHAVRV2SBIT94' where id=59; -update noar ti set v1='UHHMAEEGFD4SWCMUUNKK4ZQ212JPB5IAQ8V7CKUOX7S6PWS4BEWK22IO392JZ6CBDHR1CBZ8XE81W3LFJCYH8Q5GGN23F4Q7PMISWICRL7VVH7E6385G57ADOGI2I52M5AF5NKAEWM0G9GROPQOPBHHYL9VJWCY7RZIK1K16WB6BNP3J0LKJ6XCE5I4N5VOKWN68AMFEFOOPE19RIS1WSDS5LXW2JUE0C9O2KNKXI75DU95MH8YKVHAVRV2SBIT94' where id=59; -update noar tt set v2='OKLA2E4KX2PJANI9HK5YYMORWXX4ITMQR1AGPQB85O9ODQM959YOO995WEUBUXNWSRJIV3QJLAFLWETD4B59442RDVFEEWTSALJYHXJCBMPCY6JOYAM9KMZ1SSMVIFWU7ANPEEJBL6Q9WKPGA1ZVEOWQ2VOD0HO0QXYNAUDM56Y3FUM40FEK3762DL2UD0DPW1W6J0ME4YZS9RG9YGW0QEOQY8ABHB356TRCD04E34B8Q6E3DS73M06XRES8VI8S8' where id=59; -update noar ti set v2='OKLA2E4KX2PJANI9HK5YYMORWXX4ITMQR1AGPQB85O9ODQM959YOO995WEUBUXNWSRJIV3QJLAFLWETD4B59442RDVFEEWTSALJYHXJCBMPCY6JOYAM9KMZ1SSMVIFWU7ANPEEJBL6Q9WKPGA1ZVEOWQ2VOD0HO0QXYNAUDM56Y3FUM40FEK3762DL2UD0DPW1W6J0ME4YZS9RG9YGW0QEOQY8ABHB356TRCD04E34B8Q6E3DS73M06XRES8VI8S8' where id=59; -update noar tt set v3='K7U5XC1CN76Z4GE40A2GA4099RZATO348S8FG0VRGJ6YX4B2SOR7FOUXW0ZSY0K1QZX4TGXSN9IUAU3FR4F50FXI45KZGZZKBTTZ7S25NI6XPDLUUVWK1H1BRPE3B6TIEV50VLEYDJLO8897QVZWUAGA6SBP19Y3BT7T2VJJ4SE5XAO8PS5R77723YKPM9DBV6V6CFKTBY9Z9OMZQH220TMBMK5EREEHJEGCEANVHBCETCODDICXC8OZZEEE6ZXHV' where id=59; -update noar ti set v3='K7U5XC1CN76Z4GE40A2GA4099RZATO348S8FG0VRGJ6YX4B2SOR7FOUXW0ZSY0K1QZX4TGXSN9IUAU3FR4F50FXI45KZGZZKBTTZ7S25NI6XPDLUUVWK1H1BRPE3B6TIEV50VLEYDJLO8897QVZWUAGA6SBP19Y3BT7T2VJJ4SE5XAO8PS5R77723YKPM9DBV6V6CFKTBY9Z9OMZQH220TMBMK5EREEHJEGCEANVHBCETCODDICXC8OZZEEE6ZXHV' where id=59; -update noar tt set v0='3L36VFEBBYLBP80FP3EOCYZB85DMKVDPLHD1K7IEZAEVXJNP0HFSV7FNHROIAD69TUJZTYIRLJ68XSPXOKKKL83Q92CQN6FK7KY0YWQYQNVT98XMIN41EJIN2SDB8CMOLVLAA28WM3071GNXAEGFUGG1QST3OCCPV5Y7CTTPZWD6RE49QLPH5DP68U4FINLLJBH1LYJEGLUPVI2K319CJD1AQ213BC1ZK5ESYMD32TQLDIEZOB55DJGUCCMEGQ9NR' where id=60; -update noar ti set v0='3L36VFEBBYLBP80FP3EOCYZB85DMKVDPLHD1K7IEZAEVXJNP0HFSV7FNHROIAD69TUJZTYIRLJ68XSPXOKKKL83Q92CQN6FK7KY0YWQYQNVT98XMIN41EJIN2SDB8CMOLVLAA28WM3071GNXAEGFUGG1QST3OCCPV5Y7CTTPZWD6RE49QLPH5DP68U4FINLLJBH1LYJEGLUPVI2K319CJD1AQ213BC1ZK5ESYMD32TQLDIEZOB55DJGUCCMEGQ9NR' where id=60; -update noar tt set v1='9QEMVRKCXXE0XM5OVA3MFXIMZ7XLAGAGGQ5UBZLBJG157XO7QSAUW0STGIY0VBZNGJQG9BWOWINUH9KZTR9PFZZ9M3YPK44HCMF19H2EE5P4TILECACI0VTWNXCQBUZHO9MKOUCQEK1GGX01HZB6DGBSH2JI1ZHNLYFJFE7OYDNJVSYAPCYALSDVO9FR2PQ935G1GQ0UIWJ6MZA88JM69NRR6MDJVV6Q0SJVXYSATJSR3SF449KGO6EAKAXPKM1NA' where id=60; -update noar ti set v1='9QEMVRKCXXE0XM5OVA3MFXIMZ7XLAGAGGQ5UBZLBJG157XO7QSAUW0STGIY0VBZNGJQG9BWOWINUH9KZTR9PFZZ9M3YPK44HCMF19H2EE5P4TILECACI0VTWNXCQBUZHO9MKOUCQEK1GGX01HZB6DGBSH2JI1ZHNLYFJFE7OYDNJVSYAPCYALSDVO9FR2PQ935G1GQ0UIWJ6MZA88JM69NRR6MDJVV6Q0SJVXYSATJSR3SF449KGO6EAKAXPKM1NA' where id=60; -update noar tt set v2='AQHKV58DFWVFKHOVCOLNNAVNAIF00V7BF853WFJ4LL3KLMV77H5A0PIOLCRZJ64P1KEKCI7NSEE9990XIRUU6RN700DIT2E3BB0LMWDVVW0FT7QYVY62JYOIKT8BV5O0Z785BEBNQI3GYL5JS8INF5LYI75QWAE8PL8JQN51IA6XNARG7AFEHKKBU59KT8V7WU4VFEAZ03MUIY8JBLJDZB8DD0GBBYZJ8OJSYQTUL3SDT5HECE2I3M5ZHLSP9YAQB' where id=60; -update noar ti set v2='AQHKV58DFWVFKHOVCOLNNAVNAIF00V7BF853WFJ4LL3KLMV77H5A0PIOLCRZJ64P1KEKCI7NSEE9990XIRUU6RN700DIT2E3BB0LMWDVVW0FT7QYVY62JYOIKT8BV5O0Z785BEBNQI3GYL5JS8INF5LYI75QWAE8PL8JQN51IA6XNARG7AFEHKKBU59KT8V7WU4VFEAZ03MUIY8JBLJDZB8DD0GBBYZJ8OJSYQTUL3SDT5HECE2I3M5ZHLSP9YAQB' where id=60; -update noar tt set v3='IOGT7GFDG6PXPV2BRZV3UF9HPEZEM7O0Z08PO5P6GEGGI7DAS3RL4DE4XEMLKT9LK10TBMHCENBJ1QIKH0ZR9HENZIPQHNOJKOFNL0FG1XAB96U1E9B1QVUVX0IH5XFUCT5I2VX1FBBUY70KFKTLNYCLFDOF3WQUO4C41RBME6D270F5LRFRF7UJ82NQNJXPP2QJUN6VY1TPCPW2X0G7EKPCAF0BFYCGXNLS56NSWRF8Z0VHXPQ0P2UWTZPSW6BN6' where id=60; -update noar ti set v3='IOGT7GFDG6PXPV2BRZV3UF9HPEZEM7O0Z08PO5P6GEGGI7DAS3RL4DE4XEMLKT9LK10TBMHCENBJ1QIKH0ZR9HENZIPQHNOJKOFNL0FG1XAB96U1E9B1QVUVX0IH5XFUCT5I2VX1FBBUY70KFKTLNYCLFDOF3WQUO4C41RBME6D270F5LRFRF7UJ82NQNJXPP2QJUN6VY1TPCPW2X0G7EKPCAF0BFYCGXNLS56NSWRF8Z0VHXPQ0P2UWTZPSW6BN6' where id=60; -update noar tt set v0='CUPJV9P6FPRTVUW5W7Z3PQ3H86POO3DAAFLXWT8G3OA2D9V36I2V33OG6Q4ADFO4B9FPKV1946Y5GHT947M6OB6OL7CU5EMHZW05XLCBVOLKMDGYA4DDVB83XIJB3KRBOUEVXM64FSU2WM6IZQR6LH8ZOCYHHO82GG1ZKSSF5L2VK58Y7LJR90LFBZE05TOZ712E6RNM0XTVSYAHMDELWT8E0ANMTVYVRRVU1K4QG7XT3B6CBUA37WP3SV8Y3SUSQ' where id=61; -update noar ti set v0='CUPJV9P6FPRTVUW5W7Z3PQ3H86POO3DAAFLXWT8G3OA2D9V36I2V33OG6Q4ADFO4B9FPKV1946Y5GHT947M6OB6OL7CU5EMHZW05XLCBVOLKMDGYA4DDVB83XIJB3KRBOUEVXM64FSU2WM6IZQR6LH8ZOCYHHO82GG1ZKSSF5L2VK58Y7LJR90LFBZE05TOZ712E6RNM0XTVSYAHMDELWT8E0ANMTVYVRRVU1K4QG7XT3B6CBUA37WP3SV8Y3SUSQ' where id=61; -update noar tt set v1='ML3GJJJWXM2XPVNS2URI5VF0USCVM6DGOS6Y5ALIHKZUO48WYX9DXUR2L7FFJ4BQANG87GSJ9BE9MCP7TW0CZXCDYJL7O41EIJ70XJQ7TUJ2PSV1XR7K3DQ1QWP0XZ5PH8D4966BO1OBUFHW663KC9EVPHR9UO3XOVYHL0KC0KPJKSCVXW1D3LMTHD3FSKQZJUSSRYX3X8TGH0N6A9HEBRJ0JBZHRTF23SQL3UMSUBFXJBNUDNIL3BXRSO3OUG2JF' where id=61; -update noar ti set v1='ML3GJJJWXM2XPVNS2URI5VF0USCVM6DGOS6Y5ALIHKZUO48WYX9DXUR2L7FFJ4BQANG87GSJ9BE9MCP7TW0CZXCDYJL7O41EIJ70XJQ7TUJ2PSV1XR7K3DQ1QWP0XZ5PH8D4966BO1OBUFHW663KC9EVPHR9UO3XOVYHL0KC0KPJKSCVXW1D3LMTHD3FSKQZJUSSRYX3X8TGH0N6A9HEBRJ0JBZHRTF23SQL3UMSUBFXJBNUDNIL3BXRSO3OUG2JF' where id=61; -update noar tt set v2='CTSG7S8PW8XRJM9T0F136U65K3TF84P63SOQBR5YVK4UK6HP2SC1BF2M0GWUVDHZ6XZRJI8IH6U66XIKS82S9QHB843EL8O2IY30JJX6T3PPEU1OY4V35D2TMTO3R7Z7R7J284B4FISLCN28TPCLZ2EES09859FQFHDBKIOD2MW3XX8YGVF2J2LLM2GJ3U4IWZ6XXWZ0G4CPNHGLLWJQYD2J3K88OZ2EGFZYZDLSKV146M6889Q9VID3214SLP3I2' where id=61; -update noar ti set v2='CTSG7S8PW8XRJM9T0F136U65K3TF84P63SOQBR5YVK4UK6HP2SC1BF2M0GWUVDHZ6XZRJI8IH6U66XIKS82S9QHB843EL8O2IY30JJX6T3PPEU1OY4V35D2TMTO3R7Z7R7J284B4FISLCN28TPCLZ2EES09859FQFHDBKIOD2MW3XX8YGVF2J2LLM2GJ3U4IWZ6XXWZ0G4CPNHGLLWJQYD2J3K88OZ2EGFZYZDLSKV146M6889Q9VID3214SLP3I2' where id=61; -update noar tt set v3='OTCD82Z8KQNNWAW8XFO494KN6F6Z3HGY4KGHTBHESAIM217L4C36C3WKZB16QUN2LXNK30TU1RTC63LZMO5PQZ7BFCF7ZWI0PDQKMF6NA5I60FI25WKH6PNUSB9DOZJBUCZT5RWELOR50T09S6SGTETALGAO8IJ13H4V51Z11KIXJ796S9M8BO20PO8DV2BUX0XW8UFG3GBYR84DKO6QQCLTLH7JA335NZWZ101LF681IGRDCB1QIMJPN990WBYEM' where id=61; -update noar ti set v3='OTCD82Z8KQNNWAW8XFO494KN6F6Z3HGY4KGHTBHESAIM217L4C36C3WKZB16QUN2LXNK30TU1RTC63LZMO5PQZ7BFCF7ZWI0PDQKMF6NA5I60FI25WKH6PNUSB9DOZJBUCZT5RWELOR50T09S6SGTETALGAO8IJ13H4V51Z11KIXJ796S9M8BO20PO8DV2BUX0XW8UFG3GBYR84DKO6QQCLTLH7JA335NZWZ101LF681IGRDCB1QIMJPN990WBYEM' where id=61; -update noar tt set v0='ODWRS3H6FUUFGX3LEYCXMJ1TOIM6ELTEO1Y0YLRP0VQ0A2G04J3OUBFG3OUX174CONP5LON81GQPXQ7M8BA0ZI66KJYRCRB8URD0YDT2RPDIJBEL2I54Y0DE98VCSRVQQ35KPR2S7BUSFWN64V8I0WMA8H3ZNKDTRBYBLRM6QX3DHTKDFAYAVS4N8DT40WD0V0Y88GNM1L6L89G51EIYKTYRAXBJN477YC0SD45LKU989QEQ3MP7Q5YBZ9PSHBJJ5' where id=62; -update noar ti set v0='ODWRS3H6FUUFGX3LEYCXMJ1TOIM6ELTEO1Y0YLRP0VQ0A2G04J3OUBFG3OUX174CONP5LON81GQPXQ7M8BA0ZI66KJYRCRB8URD0YDT2RPDIJBEL2I54Y0DE98VCSRVQQ35KPR2S7BUSFWN64V8I0WMA8H3ZNKDTRBYBLRM6QX3DHTKDFAYAVS4N8DT40WD0V0Y88GNM1L6L89G51EIYKTYRAXBJN477YC0SD45LKU989QEQ3MP7Q5YBZ9PSHBJJ5' where id=62; -update noar tt set v1='2DYYELS8FMNEX4DC9I8FN6EG4HC86Q1RFSTTZH3UQRJR2AHCHPSZ645MRHDR89LOJYDQKIO45J7RYV7VOLR2IX9TLMAD965LA1Y1NR8BTGD32IW4B0SOFVNXMDUNEBXACXGEAXBILIFKWTW8CWKA6XDGR3TZEJKVBXSV8P1ARHR985QDMZBEVQ3371ZTK0KUYRNKS1SD1FYVTXDHMJWBE6G2HESM2MPRD22MT1D6QMOSTQA073BRUKNY5K0HVYI22' where id=62; -update noar ti set v1='2DYYELS8FMNEX4DC9I8FN6EG4HC86Q1RFSTTZH3UQRJR2AHCHPSZ645MRHDR89LOJYDQKIO45J7RYV7VOLR2IX9TLMAD965LA1Y1NR8BTGD32IW4B0SOFVNXMDUNEBXACXGEAXBILIFKWTW8CWKA6XDGR3TZEJKVBXSV8P1ARHR985QDMZBEVQ3371ZTK0KUYRNKS1SD1FYVTXDHMJWBE6G2HESM2MPRD22MT1D6QMOSTQA073BRUKNY5K0HVYI22' where id=62; -update noar tt set v2='GLJJB52XUKLG3Y8WMVXKIXNFQ33RX1F6PVQCTZLJJMK853CRWU8NTY3HGDKH8J5ZNY99R5Y6XPL5CA4Z56H30DDVE3V5GIPXTNQ78AUKLLEUD80UTEF69GNF7QDW0SR9O8PVTXODZXTWSZ3LSMJ7ODHLQ7JFOHKOIZ5UYGAZJ6CYBEMA70JQHWOOVFLU0E053Y07X1ZP7B412G62CWO1K010G9HQVU4SYXMIQZHNHK05HNW4ONCU0WLYCJ4RJMYDD' where id=62; -update noar ti set v2='GLJJB52XUKLG3Y8WMVXKIXNFQ33RX1F6PVQCTZLJJMK853CRWU8NTY3HGDKH8J5ZNY99R5Y6XPL5CA4Z56H30DDVE3V5GIPXTNQ78AUKLLEUD80UTEF69GNF7QDW0SR9O8PVTXODZXTWSZ3LSMJ7ODHLQ7JFOHKOIZ5UYGAZJ6CYBEMA70JQHWOOVFLU0E053Y07X1ZP7B412G62CWO1K010G9HQVU4SYXMIQZHNHK05HNW4ONCU0WLYCJ4RJMYDD' where id=62; -update noar tt set v3='TC910VQJFAGVOMTWOQVY7JP4Y9TZD06CN1VK7WB1V7LMNZQB4W1FCDLX4OG0BHG8MBQZ3YTQ29SRUDAOTRTG0NX701T90O92RDV8JSRR96RFG3B9YB7PBV3XH6JAO5UF0YNJIPVL9B2NEE9VCSVO5UN2YEK2OCATQKZD1NBZOEA2JPZPX0A8PJL2IRX8CJX3TDW2H2ZH1NNJL1ZSZRP9N2XLM3PRG1ABGMNQDOJ0HXDZ5XT0H2H2BK32BH7Q4ODQ2' where id=62; -update noar ti set v3='TC910VQJFAGVOMTWOQVY7JP4Y9TZD06CN1VK7WB1V7LMNZQB4W1FCDLX4OG0BHG8MBQZ3YTQ29SRUDAOTRTG0NX701T90O92RDV8JSRR96RFG3B9YB7PBV3XH6JAO5UF0YNJIPVL9B2NEE9VCSVO5UN2YEK2OCATQKZD1NBZOEA2JPZPX0A8PJL2IRX8CJX3TDW2H2ZH1NNJL1ZSZRP9N2XLM3PRG1ABGMNQDOJ0HXDZ5XT0H2H2BK32BH7Q4ODQ2' where id=62; -update noar tt set v0='DL1FITJMPASMD3XBWNW2PACFUUUPPEA5EICC3ZEF71UJ87CQS2LSADNBBCKFBHIEL9P5AJXPKM4L5P27SH7MHBUDV8ANCNFVO95LOEOZOPWJNP54TZ2YYU7TEWTC0CNKNQAJBC9J3P8PRN2BW9Q5ETTSP5TTCJGOM021U8EFITHTUJOJSH64G870C0ZQFYBJIL45J0O8RTGO3HFUUHC6RUHOQL1DM6JX88QSLRO2M9S1SRR6I5P0QXWBMCLOY88VA' where id=63; -update noar ti set v0='DL1FITJMPASMD3XBWNW2PACFUUUPPEA5EICC3ZEF71UJ87CQS2LSADNBBCKFBHIEL9P5AJXPKM4L5P27SH7MHBUDV8ANCNFVO95LOEOZOPWJNP54TZ2YYU7TEWTC0CNKNQAJBC9J3P8PRN2BW9Q5ETTSP5TTCJGOM021U8EFITHTUJOJSH64G870C0ZQFYBJIL45J0O8RTGO3HFUUHC6RUHOQL1DM6JX88QSLRO2M9S1SRR6I5P0QXWBMCLOY88VA' where id=63; -update noar tt set v1='5NFIJNOT6J4SAL4V9QIX4NQJNMOAB4OZFRMLCQB1NQ38IZU3KUW2SQ0KIN5C2AIOTP5C1Z3CNFOESLDR56VT1I1PYETWL3O7WLG770IKWWW6DH5785H6K47HGCZRU0HQYGEDV94NHNEFNIH2G1I8R7JQLSK1XAPH8N04P2GOJM7LETLFT53WTDDP7QC0PV5MPAMZTLL7NP7J1ARKKJWS8FV5EJG9BR59ODPUX6MN2EIPXTAEU38VC5QF4KJOR6D2B' where id=63; -update noar ti set v1='5NFIJNOT6J4SAL4V9QIX4NQJNMOAB4OZFRMLCQB1NQ38IZU3KUW2SQ0KIN5C2AIOTP5C1Z3CNFOESLDR56VT1I1PYETWL3O7WLG770IKWWW6DH5785H6K47HGCZRU0HQYGEDV94NHNEFNIH2G1I8R7JQLSK1XAPH8N04P2GOJM7LETLFT53WTDDP7QC0PV5MPAMZTLL7NP7J1ARKKJWS8FV5EJG9BR59ODPUX6MN2EIPXTAEU38VC5QF4KJOR6D2B' where id=63; -update noar tt set v2='9FKCHID9HK4TT8O6V1OGJQISQAUL6B9MV2RIL83YDH6D7VYFEA3CGQX0WYN5LCNTJ8AT5PFE20NPC6LDHHOGR9O3HTMS1EKKDMANP3Z0FVX0V1HPO1QAC3P66TS26XKGE3EPUP9QIM6HLJSRJL2L64Q5BYKWLAPDTFOZCYPDOOYGPYUFRXV9RELH3LJ40HPI81VOQ1CHRT39RBRBJ0A693QVHK5JZEG9ARA9JCSJLN76Q6DNOSMZR492QUQK8IX46' where id=63; -update noar ti set v2='9FKCHID9HK4TT8O6V1OGJQISQAUL6B9MV2RIL83YDH6D7VYFEA3CGQX0WYN5LCNTJ8AT5PFE20NPC6LDHHOGR9O3HTMS1EKKDMANP3Z0FVX0V1HPO1QAC3P66TS26XKGE3EPUP9QIM6HLJSRJL2L64Q5BYKWLAPDTFOZCYPDOOYGPYUFRXV9RELH3LJ40HPI81VOQ1CHRT39RBRBJ0A693QVHK5JZEG9ARA9JCSJLN76Q6DNOSMZR492QUQK8IX46' where id=63; -update noar tt set v3='DA6781X684GEW2RB5V7XXBKI4LD4UOUKPNU42LJCU8KK0LGIL7IS65GGOBDRNT3V0W80EZH11OKWPAMT8VY4C0HPSEYQNZMM74INJ3PMGLAI1L579NXQKBZX5G902PO8XINDCDYXP9XPG3M2XFP33LAEU2B6IY26LFAU2UK8KW9MQVKK5PBS9GP673ZFE9T8JAKVDBW3FEAQC6D07ATX3KHOT7BEUTXVT0WNGBXQJU99UR7GUAX13B83ZAMJWU0LJ' where id=63; -update noar ti set v3='DA6781X684GEW2RB5V7XXBKI4LD4UOUKPNU42LJCU8KK0LGIL7IS65GGOBDRNT3V0W80EZH11OKWPAMT8VY4C0HPSEYQNZMM74INJ3PMGLAI1L579NXQKBZX5G902PO8XINDCDYXP9XPG3M2XFP33LAEU2B6IY26LFAU2UK8KW9MQVKK5PBS9GP673ZFE9T8JAKVDBW3FEAQC6D07ATX3KHOT7BEUTXVT0WNGBXQJU99UR7GUAX13B83ZAMJWU0LJ' where id=63; -update noar tt set v0='RF0MMWZG6S8ED38OM41VKK0BTO58W17VEBQ4C8LYSTH4GDMPCUBB2ECZ5QJ61O83UV9SMHSXVVMJFFH5Z9QDF0B6B6EEPVXFMMA5OJRZNQHNCGHGN9C9PEYQU113T4AAF9SO1ODLN6BC9XIO8NGPCZREZ0QLVCDZ07B14P4TMM7V71DBOJDAYOAVW0OZLADINSGNBCE4WL1AQHXBCYH9SPODME4PWMSCQ8ONS6LDXVB852AQBCIP2UT4SMABU44LG' where id=64; -update noar ti set v0='RF0MMWZG6S8ED38OM41VKK0BTO58W17VEBQ4C8LYSTH4GDMPCUBB2ECZ5QJ61O83UV9SMHSXVVMJFFH5Z9QDF0B6B6EEPVXFMMA5OJRZNQHNCGHGN9C9PEYQU113T4AAF9SO1ODLN6BC9XIO8NGPCZREZ0QLVCDZ07B14P4TMM7V71DBOJDAYOAVW0OZLADINSGNBCE4WL1AQHXBCYH9SPODME4PWMSCQ8ONS6LDXVB852AQBCIP2UT4SMABU44LG' where id=64; -update noar tt set v1='22AA821U7P1LJRR8765ODS3WVHDI4L8Y28OGKI02EU9DEVICBHWNMAGVYE5GPK7BJR0WH4Z9QMJZJOHO4N1SWGPJ6LY7SUGPJTNN03B1UA6537PNHGXMB9E9FZPDLNIHNLPA2BWHF6XM4YCTLOSAK9ZILPSI0GX5VA6V4TE6TTNF6WT0ZS5LDCHW60AJS8VXWN075EX009PUY342A3FIC2JO8SCTUQ69DZGMR2XYYGMKL5DJMM7IT77TI5SASMMP6' where id=64; -update noar ti set v1='22AA821U7P1LJRR8765ODS3WVHDI4L8Y28OGKI02EU9DEVICBHWNMAGVYE5GPK7BJR0WH4Z9QMJZJOHO4N1SWGPJ6LY7SUGPJTNN03B1UA6537PNHGXMB9E9FZPDLNIHNLPA2BWHF6XM4YCTLOSAK9ZILPSI0GX5VA6V4TE6TTNF6WT0ZS5LDCHW60AJS8VXWN075EX009PUY342A3FIC2JO8SCTUQ69DZGMR2XYYGMKL5DJMM7IT77TI5SASMMP6' where id=64; -update noar tt set v2='FDF98Q46E6QV146E2WKM0ZCD18J59ULRRMNW6G1UMILDNQUS38P43DEX8TGO3IJEOY4D919IBL0G32C966M26J7ZCXIQJEE9RYZNSY4G7QSK8WCJUL8J2UCFANG0X2QH0XB0E8DTGJM0CPZZXIX4H1A6Y90LKYCUB8YJYXZZE2BNNVHC70DUP3P2OW4JTB04OPTI19YDCUV7DF9OP9OORV1US2G8SFMB2QT90276A9U8ZA5IBA2URCLH3VCRKS7ZA' where id=64; -update noar ti set v2='FDF98Q46E6QV146E2WKM0ZCD18J59ULRRMNW6G1UMILDNQUS38P43DEX8TGO3IJEOY4D919IBL0G32C966M26J7ZCXIQJEE9RYZNSY4G7QSK8WCJUL8J2UCFANG0X2QH0XB0E8DTGJM0CPZZXIX4H1A6Y90LKYCUB8YJYXZZE2BNNVHC70DUP3P2OW4JTB04OPTI19YDCUV7DF9OP9OORV1US2G8SFMB2QT90276A9U8ZA5IBA2URCLH3VCRKS7ZA' where id=64; -update noar tt set v3='APV8Z2WH2E5QSXT5ZQUQAWW34W5SE62TF7QFH0RF8FH6FNP8DFMD4A0I0R1P22Y7WWN7A2A841PSPSY6UAD59OUASGDMXPFHTN05SJ8VWRZPD0CHE7QPDZ1X3M0AUADKX6PWQ1R8L6QPA7XXWTU8A9LUJS4WKFOX1H728ZHT1RJOVSUPKZHGCO2TO3N0I58R0PHHLVYXQZXE8CD87DJ9QBJJGUY8M8FP67QE2YAY16ZJMAODNU21SW84P81W87V6H' where id=64; -update noar ti set v3='APV8Z2WH2E5QSXT5ZQUQAWW34W5SE62TF7QFH0RF8FH6FNP8DFMD4A0I0R1P22Y7WWN7A2A841PSPSY6UAD59OUASGDMXPFHTN05SJ8VWRZPD0CHE7QPDZ1X3M0AUADKX6PWQ1R8L6QPA7XXWTU8A9LUJS4WKFOX1H728ZHT1RJOVSUPKZHGCO2TO3N0I58R0PHHLVYXQZXE8CD87DJ9QBJJGUY8M8FP67QE2YAY16ZJMAODNU21SW84P81W87V6H' where id=64; -update noar tt set v0='80YNN85SEGS9WFQS032YLM55K9KF85751ROK8YLWW24WUE3LE4RF2EZSH2BT4ZK9Q6SRDSFZGDIXBIEGLKHJVVTQMDPV7OQXQTDWSR0IT1HDY5CQ51YW3DPGX8GWWVBZ736021FFMEA88O10Y72LNLQVCAJ1ILRL6UYK5GNRFSYDHMV9HI16NPF6HEKQ7FVFI2Q2JRJTE0NERVDNS5ZVKUCRA5553LF2M0V4D4DBUHEY8OIR1QRWDK68Y5MFQAAWL' where id=65; -update noar ti set v0='80YNN85SEGS9WFQS032YLM55K9KF85751ROK8YLWW24WUE3LE4RF2EZSH2BT4ZK9Q6SRDSFZGDIXBIEGLKHJVVTQMDPV7OQXQTDWSR0IT1HDY5CQ51YW3DPGX8GWWVBZ736021FFMEA88O10Y72LNLQVCAJ1ILRL6UYK5GNRFSYDHMV9HI16NPF6HEKQ7FVFI2Q2JRJTE0NERVDNS5ZVKUCRA5553LF2M0V4D4DBUHEY8OIR1QRWDK68Y5MFQAAWL' where id=65; -update noar tt set v1='VY7LV44SPEIX0TWZJZX6PMGKEJBXR4B9ETA5XFD2R9RJ9W2MXCM92BPYG0N43BOJ76S4X1UDNAV5I7VM2IXDLBCYBV3FPCTN3FN50T2XEH25HJLCR6DSN3O0PUQIZ1C8PBIQIOW88TMLN7SDXJ5CEALJSMTA7H2XK1B01FV5MMQRQ1MNTMPUFYUER66BVNIWGPPQZ13FDL4RD8RT41O4HC2UKHHQ2LJTS1UJPU4JRQ58YZP5VAIPP9PGDT0H4Q02I' where id=65; -update noar ti set v1='VY7LV44SPEIX0TWZJZX6PMGKEJBXR4B9ETA5XFD2R9RJ9W2MXCM92BPYG0N43BOJ76S4X1UDNAV5I7VM2IXDLBCYBV3FPCTN3FN50T2XEH25HJLCR6DSN3O0PUQIZ1C8PBIQIOW88TMLN7SDXJ5CEALJSMTA7H2XK1B01FV5MMQRQ1MNTMPUFYUER66BVNIWGPPQZ13FDL4RD8RT41O4HC2UKHHQ2LJTS1UJPU4JRQ58YZP5VAIPP9PGDT0H4Q02I' where id=65; -update noar tt set v2='KRCER8L1A7MZ2Z37C210ANS832VRIX3WK75X1248CMANBEV83REC324H8JR5X5460CECVUYH4MHS8EONJEBS7BEJMBFMZWORFM744O642I9UJ4BFENBU51YF9CSKYF34ZSEO2ZISWNJSWR8PK2FGQLZX8AE1HWM8DMJCCQ6G0N95G0BNDLTDAPDVPP5OPXLXGVGPX7VTSCI5JOXNRHNAD6AVB2QR1U87B3IO2VFB4HJ5NW51GRCX9LVNRW8GW8LBG' where id=65; -update noar ti set v2='KRCER8L1A7MZ2Z37C210ANS832VRIX3WK75X1248CMANBEV83REC324H8JR5X5460CECVUYH4MHS8EONJEBS7BEJMBFMZWORFM744O642I9UJ4BFENBU51YF9CSKYF34ZSEO2ZISWNJSWR8PK2FGQLZX8AE1HWM8DMJCCQ6G0N95G0BNDLTDAPDVPP5OPXLXGVGPX7VTSCI5JOXNRHNAD6AVB2QR1U87B3IO2VFB4HJ5NW51GRCX9LVNRW8GW8LBG' where id=65; -update noar tt set v3='PVA8LPX2SVW1UL53U4QVXAY5NW2R0BARFM800D8S2JQFBZ7YIDHY0VRIIS3BYB1PJTBJKNC8X7V3Y6IY53NEXYWUYN8KWCRLKXSDM7HJQ2Z9JOA195GXYBTTRIAINHS9UEWJU0ZRJDVLYK7NM10LVL961XGB5DQY8PXLTOI9HTEQ313F19GN4BB3AGXYZ7U4PIUNPYZXUYW1LNRN6LXHIHGFQ789XBZ4IV6IB70DQ399GHJYP3NA9MDF5IZYBGUV2' where id=65; -update noar ti set v3='PVA8LPX2SVW1UL53U4QVXAY5NW2R0BARFM800D8S2JQFBZ7YIDHY0VRIIS3BYB1PJTBJKNC8X7V3Y6IY53NEXYWUYN8KWCRLKXSDM7HJQ2Z9JOA195GXYBTTRIAINHS9UEWJU0ZRJDVLYK7NM10LVL961XGB5DQY8PXLTOI9HTEQ313F19GN4BB3AGXYZ7U4PIUNPYZXUYW1LNRN6LXHIHGFQ789XBZ4IV6IB70DQ399GHJYP3NA9MDF5IZYBGUV2' where id=65; -update noar tt set v0='F7UKETBHU8Z1JZODQLFDOBXEEM9DIS7U48L7ZIXD2AWF4VSAOWIH91G36DTDCHAM7UMIHWK2UN7C4JSXJZS42Q9UJEMWHP8EWO4E8HLAQ0IVRIWRWEZYMCHNUOAV0YBTA4M2FVAC546BXR7FUF9O5WSTZ17WCPMBFK9HJOPHQC0KIUCJKDLY3V0N5PHZ77MPB3LFOONL6E5J0A2Z9D9DS9O4UZVM3PNHHLK829KG6MG93D18LUYNFOKXDLYOHYLST' where id=66; -update noar ti set v0='F7UKETBHU8Z1JZODQLFDOBXEEM9DIS7U48L7ZIXD2AWF4VSAOWIH91G36DTDCHAM7UMIHWK2UN7C4JSXJZS42Q9UJEMWHP8EWO4E8HLAQ0IVRIWRWEZYMCHNUOAV0YBTA4M2FVAC546BXR7FUF9O5WSTZ17WCPMBFK9HJOPHQC0KIUCJKDLY3V0N5PHZ77MPB3LFOONL6E5J0A2Z9D9DS9O4UZVM3PNHHLK829KG6MG93D18LUYNFOKXDLYOHYLST' where id=66; -update noar tt set v1='K2C5WM1N0CE5SMI2LJOZIR4W7U663QYO2EB4K0A8LKXI9ZHPAW2MRYJOBO6CHBL8F6TDCW9ZC7EEUURGC8FRSULM4DVNNB61M6PNK1E0RUYHK43ZGFNZW01XNPFLEO4W17GU6WI8U6Z0S6WXRRIM4R8PG9L81RG113ZGO5T6776BO82YLHT07DPLCUVWKS7ZZY4FTM8FQDK9VIG57HLQGZBOZ5OTL76NEEQZERAUZW71NC48705AIXPF4X4IV15ZE' where id=66; -update noar ti set v1='K2C5WM1N0CE5SMI2LJOZIR4W7U663QYO2EB4K0A8LKXI9ZHPAW2MRYJOBO6CHBL8F6TDCW9ZC7EEUURGC8FRSULM4DVNNB61M6PNK1E0RUYHK43ZGFNZW01XNPFLEO4W17GU6WI8U6Z0S6WXRRIM4R8PG9L81RG113ZGO5T6776BO82YLHT07DPLCUVWKS7ZZY4FTM8FQDK9VIG57HLQGZBOZ5OTL76NEEQZERAUZW71NC48705AIXPF4X4IV15ZE' where id=66; -update noar tt set v2='EBCXAT1T5QQWYXC5ARHO58VVY93ODF2RSKHQAQNNDD9GZIFC6OJ4UGKFR1GRP9AMLG382JAR97XA5HC50LFVP6M2ZZ0FXKECFGDY2ILGZXI5G1CSIUI95XGKKDC7V5Z4YOYWXEV202DFHCR9OV420RGUDY00QB93W7JGCGV1OXJI8AA9O9PPZUOIRUAH62YXF98GCUXB7IPXCYCVIPUL48RGY2286O1OS8JSP31OHJ41F98Z38YF4SIVPH4YG5VHP' where id=66; -update noar ti set v2='EBCXAT1T5QQWYXC5ARHO58VVY93ODF2RSKHQAQNNDD9GZIFC6OJ4UGKFR1GRP9AMLG382JAR97XA5HC50LFVP6M2ZZ0FXKECFGDY2ILGZXI5G1CSIUI95XGKKDC7V5Z4YOYWXEV202DFHCR9OV420RGUDY00QB93W7JGCGV1OXJI8AA9O9PPZUOIRUAH62YXF98GCUXB7IPXCYCVIPUL48RGY2286O1OS8JSP31OHJ41F98Z38YF4SIVPH4YG5VHP' where id=66; -update noar tt set v3='00DI72N244EJE6PBNYK1AM4UEO3DDR7RQFTSCZV9MBYTDF0PX9KSNPCF589GBKOK1AA1G7H0BIE2LG6B87PI2MELYEYSGGL88YOG4VFBU6A82A3QPJF12KLV2IPE15M7U3X3UDGPB7EK9B491RJN3HLV76PUFDGBNWYAT7CBFJ6DH71XA48FITTYO87VXPEHWXK15IOJSACQRIGFK93GSYVT6W64XBOQZSSZYQ7H888NVODSMO810VVG79U2EYIVR' where id=66; -update noar ti set v3='00DI72N244EJE6PBNYK1AM4UEO3DDR7RQFTSCZV9MBYTDF0PX9KSNPCF589GBKOK1AA1G7H0BIE2LG6B87PI2MELYEYSGGL88YOG4VFBU6A82A3QPJF12KLV2IPE15M7U3X3UDGPB7EK9B491RJN3HLV76PUFDGBNWYAT7CBFJ6DH71XA48FITTYO87VXPEHWXK15IOJSACQRIGFK93GSYVT6W64XBOQZSSZYQ7H888NVODSMO810VVG79U2EYIVR' where id=66; -update noar tt set v0='GF0SYU852FTRKP8KJMS6IS77BE4QQ3D15KDM7JB854UCGLE6QQXYV5K82VOWTRLVW4RPQOBM023B43X4R1IOEG0TMA1RLRO71YIWEIBFQ7124I9SDMKZEG4HUPSOH1I7ECCNQ2K5LNHMGUMNYSM7CJKA6C7MMA4K6G3F4MXFILFJ2ZQ6TV7ACGJRBRJGRHIIBJUEMT204WJD1YH309444X5AW84MQ8443JKFSDCA6SMSQE1N71IPD4GN2Q8JMZIR0' where id=67; -update noar ti set v0='GF0SYU852FTRKP8KJMS6IS77BE4QQ3D15KDM7JB854UCGLE6QQXYV5K82VOWTRLVW4RPQOBM023B43X4R1IOEG0TMA1RLRO71YIWEIBFQ7124I9SDMKZEG4HUPSOH1I7ECCNQ2K5LNHMGUMNYSM7CJKA6C7MMA4K6G3F4MXFILFJ2ZQ6TV7ACGJRBRJGRHIIBJUEMT204WJD1YH309444X5AW84MQ8443JKFSDCA6SMSQE1N71IPD4GN2Q8JMZIR0' where id=67; -update noar tt set v1='U5QBCDD5T8XDQ00XEL71GOQ8UVKT456C47ZA7NOP20OSZ0X8C172BZN1AX5H1L4D5BWG89RHT8D6765HPPE6XKBMF2Z4DDLEDYIS6BZS6POMZ6I6NCIZQ0D0PZ4HZPLDZ4DLOLZ15PFLQGONX19YKY8YD2TORBPLUFTERTGFBV5EUF4X7VITRISS1O5PRX390USXCOBB7GCUZHA1A9I1H53RA5Y2ZJ22A92CRO9HKJL9PYZFSZCZ3DA7YZNCAX4Y9' where id=67; -update noar ti set v1='U5QBCDD5T8XDQ00XEL71GOQ8UVKT456C47ZA7NOP20OSZ0X8C172BZN1AX5H1L4D5BWG89RHT8D6765HPPE6XKBMF2Z4DDLEDYIS6BZS6POMZ6I6NCIZQ0D0PZ4HZPLDZ4DLOLZ15PFLQGONX19YKY8YD2TORBPLUFTERTGFBV5EUF4X7VITRISS1O5PRX390USXCOBB7GCUZHA1A9I1H53RA5Y2ZJ22A92CRO9HKJL9PYZFSZCZ3DA7YZNCAX4Y9' where id=67; -update noar tt set v2='Y35WRROLBG1W06EWAXE1VKYBOF3UR000Y0VHAEEIC48EMBW1QV4XBIKUNZAMVC68EJM4NI4O32L3GDMWE51SOSXH1Z41086OM8254X4E2QIBSDUQROEH1X3FG0NLR7BA1IKO3J5KJ1B65UQQCWV5SR039OR4Q305Z923KQW8BY6IJQ6PQOVSYZ1ANJMRXVT42CUMHW60DDJORX9KMLHPY9F8QO51YZQG56MSIWOMJBI0MQY5ZTVZGDUXH59YN8GEC' where id=67; -update noar ti set v2='Y35WRROLBG1W06EWAXE1VKYBOF3UR000Y0VHAEEIC48EMBW1QV4XBIKUNZAMVC68EJM4NI4O32L3GDMWE51SOSXH1Z41086OM8254X4E2QIBSDUQROEH1X3FG0NLR7BA1IKO3J5KJ1B65UQQCWV5SR039OR4Q305Z923KQW8BY6IJQ6PQOVSYZ1ANJMRXVT42CUMHW60DDJORX9KMLHPY9F8QO51YZQG56MSIWOMJBI0MQY5ZTVZGDUXH59YN8GEC' where id=67; -update noar tt set v3='KA40T1PMKTH1PL0LCE4BLLHV044DENTK595KZVBCVMO0XCH3DIX9P68HZQB7H66QCZR3GNVHZ5Y26ZQ1WSA0ZAQ2XZXGI6VBHF1ME5BUTKS5LH58UT1XOD1GEXEFZUGLG05XK26YMDTKLSI3K0465SP9945KGM1YIA6ZTGT4UL9GCP8TV3Y9XZBDTV3YDKTFCL7HO1Y83SW4RHGI7SMIFHZNLUFE073JDC099SWIWSND0FQ2U4U1LXR59W4PAN3OP' where id=67; -update noar ti set v3='KA40T1PMKTH1PL0LCE4BLLHV044DENTK595KZVBCVMO0XCH3DIX9P68HZQB7H66QCZR3GNVHZ5Y26ZQ1WSA0ZAQ2XZXGI6VBHF1ME5BUTKS5LH58UT1XOD1GEXEFZUGLG05XK26YMDTKLSI3K0465SP9945KGM1YIA6ZTGT4UL9GCP8TV3Y9XZBDTV3YDKTFCL7HO1Y83SW4RHGI7SMIFHZNLUFE073JDC099SWIWSND0FQ2U4U1LXR59W4PAN3OP' where id=67; -update noar tt set v0='V1KUJBJNJTEWA5EBAFQMF1THTFJN4EDGL1VIDZZG8CZ53LS1BY1IMFTZJNY2SLEFL1ZPSGVYJ4IORF37XXNNEIKM77UQCWFM1NYMAQI7QZK4X43PQ9TQK56OBL79J1TD6WPQUKTS8VP2H06UVUSKOV3GZXRDWKG7P2TUTTGKBRQYSOI0UA1PJ56PHSIZ21BTU5LTQOFRG48R2LR6JH0AOIF46PH6HE6YMCB8Y98HIJXJH1VONIH7MAI0NDPF5CG5O' where id=68; -update noar ti set v0='V1KUJBJNJTEWA5EBAFQMF1THTFJN4EDGL1VIDZZG8CZ53LS1BY1IMFTZJNY2SLEFL1ZPSGVYJ4IORF37XXNNEIKM77UQCWFM1NYMAQI7QZK4X43PQ9TQK56OBL79J1TD6WPQUKTS8VP2H06UVUSKOV3GZXRDWKG7P2TUTTGKBRQYSOI0UA1PJ56PHSIZ21BTU5LTQOFRG48R2LR6JH0AOIF46PH6HE6YMCB8Y98HIJXJH1VONIH7MAI0NDPF5CG5O' where id=68; -update noar tt set v1='I7XKNEP29OE3L9JYAXAURUX0GXZXRRFHJA8TP8SSBIZGZMYMWBKNTK2535D6LEODZ5PJT294218XMW0SN7NHY9F78N60OM5IY0IAX91HYCNML4F15YQGKEW9SMUZOKPYBM0DQFG5QEOWZBHYEI0UTSYQH2ZAHTBU61OW34LW81U3HIBNOJ8025LXVOSWYDA6IXZL3LJF5L20VIX8LHYVX113SLJCLMF0CKCPQ5RJ91QNEVFCF5GSSBW6EG05B7WKO' where id=68; -update noar ti set v1='I7XKNEP29OE3L9JYAXAURUX0GXZXRRFHJA8TP8SSBIZGZMYMWBKNTK2535D6LEODZ5PJT294218XMW0SN7NHY9F78N60OM5IY0IAX91HYCNML4F15YQGKEW9SMUZOKPYBM0DQFG5QEOWZBHYEI0UTSYQH2ZAHTBU61OW34LW81U3HIBNOJ8025LXVOSWYDA6IXZL3LJF5L20VIX8LHYVX113SLJCLMF0CKCPQ5RJ91QNEVFCF5GSSBW6EG05B7WKO' where id=68; -update noar tt set v2='831XK31Q47RZLWGSNMH9QA2BA44GX3HO1K5MWJ7S9N7RHEUCTRHQX3IHSB0XILQXOAJ6LQK3IJP79GT73NJHQR3R4EU3BEBS6GVX2FAJ9R0N05AMS7RU3DTM4PRFHEL12X3D1S5BC1YIVJX2IU83T18Y3YORU5UYUXDU1ANLSFEE45XBDQF7J51ANR1KNCKD940B7W28NW5ZQW88S2BQLPMKENSTXBYCB2WM5812224EDUPJVERCN71A68WKLEYEX' where id=68; -update noar ti set v2='831XK31Q47RZLWGSNMH9QA2BA44GX3HO1K5MWJ7S9N7RHEUCTRHQX3IHSB0XILQXOAJ6LQK3IJP79GT73NJHQR3R4EU3BEBS6GVX2FAJ9R0N05AMS7RU3DTM4PRFHEL12X3D1S5BC1YIVJX2IU83T18Y3YORU5UYUXDU1ANLSFEE45XBDQF7J51ANR1KNCKD940B7W28NW5ZQW88S2BQLPMKENSTXBYCB2WM5812224EDUPJVERCN71A68WKLEYEX' where id=68; -update noar tt set v3='UK79ZXGNALSWOVV77EASEQ1B1R7MLSZD3CIYOL3OG5NV8FZ46DASZP1HJDXUAW0W34AEQNND6FC0168FGOVHMQZJRR5XFLT4MSLGZX91SG36Q3SULOU3BT316YYC7QCA5DEYHFKNBBOQXVUV2QTW80EYJRGDUCT0DON5XO77HOIO7WR21RTNVBSD2SOT47Z58B0ZQBXB0O0KLQX7DZ5OH0PYTP7A2VDZRWNA2TQE6UFXQU9TNAOQ2IJJZNCCPEBLY' where id=68; -update noar ti set v3='UK79ZXGNALSWOVV77EASEQ1B1R7MLSZD3CIYOL3OG5NV8FZ46DASZP1HJDXUAW0W34AEQNND6FC0168FGOVHMQZJRR5XFLT4MSLGZX91SG36Q3SULOU3BT316YYC7QCA5DEYHFKNBBOQXVUV2QTW80EYJRGDUCT0DON5XO77HOIO7WR21RTNVBSD2SOT47Z58B0ZQBXB0O0KLQX7DZ5OH0PYTP7A2VDZRWNA2TQE6UFXQU9TNAOQ2IJJZNCCPEBLY' where id=68; -update noar tt set v0='XLIRVX3XH2QRKYSKM64J3RPXL13DD0OJIOPZUFPN78PZ7MZWTLEBZGOE0P9VJ9OOCAGJ8ZEEME7ZBOVFLWY37TU9A8FESOFDTC8J15LUYWJVNMGS5NGW6TOBKB1G2QE1DJB2ZXOYVQTJATP1JLNHR22TXQ88BVPJNEPQ5P71ZC0IS9OAJUFE6BFPM2YTSPPSEOJZR8CFAR9L0TA49CXBS1PLH2COEYYJVMSSEY9EKK5DBFFK4FR8OWK8V427SEV3S' where id=69; -update noar ti set v0='XLIRVX3XH2QRKYSKM64J3RPXL13DD0OJIOPZUFPN78PZ7MZWTLEBZGOE0P9VJ9OOCAGJ8ZEEME7ZBOVFLWY37TU9A8FESOFDTC8J15LUYWJVNMGS5NGW6TOBKB1G2QE1DJB2ZXOYVQTJATP1JLNHR22TXQ88BVPJNEPQ5P71ZC0IS9OAJUFE6BFPM2YTSPPSEOJZR8CFAR9L0TA49CXBS1PLH2COEYYJVMSSEY9EKK5DBFFK4FR8OWK8V427SEV3S' where id=69; -update noar tt set v1='8JX13HPES0FE1MDLVICQ85Q7RW7HHOJMC07IA4RIQWAIMRHZ6QQWHMTZWBHTGP4YMEJD84B0SU0BI98X567CLJR2BJ9Y0YJHU4LP0EQSG2J1NBVLE6HVY6FIIMT6XMVXE6W5HK1ZZ9Y13VXNQ9T2M2LRZ2N4U87WBGLT7EFT6KIF680IJ62PNXZTPSYZHDNJKWAIN5WNDYUDO03Z5646R0YJJBQTL5MEGYPK6C15GJM69EDYOZYA6MLRUWDGYZ91U' where id=69; -update noar ti set v1='8JX13HPES0FE1MDLVICQ85Q7RW7HHOJMC07IA4RIQWAIMRHZ6QQWHMTZWBHTGP4YMEJD84B0SU0BI98X567CLJR2BJ9Y0YJHU4LP0EQSG2J1NBVLE6HVY6FIIMT6XMVXE6W5HK1ZZ9Y13VXNQ9T2M2LRZ2N4U87WBGLT7EFT6KIF680IJ62PNXZTPSYZHDNJKWAIN5WNDYUDO03Z5646R0YJJBQTL5MEGYPK6C15GJM69EDYOZYA6MLRUWDGYZ91U' where id=69; -update noar tt set v2='FX82JZPD6S5JNEVXWK49ULK559CZTM8OTOPSTTH5SKK5NV8FQ7D8PLVZC5R2UUEXTEUBI9SH7QQSH5SCG0EUZ2J6TDCZCGIE73N31FMUL95SJXTG3EHR69I0XRJ645G0OBXK7YVW19Q8R1U5BBY6847WXUNO6FZIOBCO16RKLBDMHASMS4C1XTB3M7KH5Q84AESHI2ACUDYF2VMNF3PFURUGM2NPPMMY8B8B7H03YHX3SXKRQ5MCC44Y1GEJ9SOAD' where id=69; -update noar ti set v2='FX82JZPD6S5JNEVXWK49ULK559CZTM8OTOPSTTH5SKK5NV8FQ7D8PLVZC5R2UUEXTEUBI9SH7QQSH5SCG0EUZ2J6TDCZCGIE73N31FMUL95SJXTG3EHR69I0XRJ645G0OBXK7YVW19Q8R1U5BBY6847WXUNO6FZIOBCO16RKLBDMHASMS4C1XTB3M7KH5Q84AESHI2ACUDYF2VMNF3PFURUGM2NPPMMY8B8B7H03YHX3SXKRQ5MCC44Y1GEJ9SOAD' where id=69; -update noar tt set v3='TJQWYQ4Z60T2T1ZMW0MQ49DPNBZ8MRYQAUVHEMZILKH1MATK7LEYJA1R25ETTA1EGZ9H45ZIWOHPR9IHKEYBTY1SA5NCE0NV6GMR8LFXL0ZD9U3PBZ3EN5QW1SOLHKOECKILDKWA809QJOWM2G9JO2KWFBUFA5D0DHZSZPCDBOWS6AR0JZTY24YXDY26T1RTOGQ00D8SYMIZPGP1RFSL8EHU86AWRDFL6ATX4FAA215G5QJUZLK4S5BI1ENL8PV7V' where id=69; -update noar ti set v3='TJQWYQ4Z60T2T1ZMW0MQ49DPNBZ8MRYQAUVHEMZILKH1MATK7LEYJA1R25ETTA1EGZ9H45ZIWOHPR9IHKEYBTY1SA5NCE0NV6GMR8LFXL0ZD9U3PBZ3EN5QW1SOLHKOECKILDKWA809QJOWM2G9JO2KWFBUFA5D0DHZSZPCDBOWS6AR0JZTY24YXDY26T1RTOGQ00D8SYMIZPGP1RFSL8EHU86AWRDFL6ATX4FAA215G5QJUZLK4S5BI1ENL8PV7V' where id=69; -update noar tt set v0='496U9MN0L766DHL4SZ71NPS4XF84D2BEK4S6T8S73ABHEP8MMNFU16K4PF4KX0NZ3EZ051NBH8I0QZ2OULX85NVWABENJEG2UN8AZC6Q8V2EBQ0ANBV4YUO3VN8YHN09IYHJ79YXS0RIC8PCYHCBZ8WXLGDGSMN4FBBAZXGW2TE6EM4L8SYAFD7C57RZDTFCT9O2R3712R5C2XCRQ326ML0I3OOSCB0MR3PC6P6D4BMSCYXSGAXTYZYUU4M3W0ZE4' where id=70; -update noar ti set v0='496U9MN0L766DHL4SZ71NPS4XF84D2BEK4S6T8S73ABHEP8MMNFU16K4PF4KX0NZ3EZ051NBH8I0QZ2OULX85NVWABENJEG2UN8AZC6Q8V2EBQ0ANBV4YUO3VN8YHN09IYHJ79YXS0RIC8PCYHCBZ8WXLGDGSMN4FBBAZXGW2TE6EM4L8SYAFD7C57RZDTFCT9O2R3712R5C2XCRQ326ML0I3OOSCB0MR3PC6P6D4BMSCYXSGAXTYZYUU4M3W0ZE4' where id=70; -update noar tt set v1='RLLMLTGMYGT9V8VJQA5E4DPIHLIWEE28ARTJX25B0EONDI1JD7YQ8OAPLT38WBAY31I9XEVC11U6GGNXM1F8R4B3R9HBY8B64XJQ20OQRH9FDF5OQUI23OMECWMGXGMZKLW0HSTXL7WZY4KVF6BNNLUBECLJ0ZLO5A2T8PLF3H2N5IDBUDI93Q62X934O7LE4UKCKB5WUHIYWXE0LAYIK1OMD5TJYM44CRDZBR49D2CH6G9WPH56KVHDFGQNDHB7Z' where id=70; -update noar ti set v1='RLLMLTGMYGT9V8VJQA5E4DPIHLIWEE28ARTJX25B0EONDI1JD7YQ8OAPLT38WBAY31I9XEVC11U6GGNXM1F8R4B3R9HBY8B64XJQ20OQRH9FDF5OQUI23OMECWMGXGMZKLW0HSTXL7WZY4KVF6BNNLUBECLJ0ZLO5A2T8PLF3H2N5IDBUDI93Q62X934O7LE4UKCKB5WUHIYWXE0LAYIK1OMD5TJYM44CRDZBR49D2CH6G9WPH56KVHDFGQNDHB7Z' where id=70; -update noar tt set v2='71HCX56X32H1ENTBBYO3RJLHXK9V27BSV76U8Q89ULS8NVP29QNEFT10OPZDG6CJPNF5A50J15XBBGS6G7JL1J5Z0IKO104OJ8FF3QP1Z1MPV8YQJBSEYRROA01FX4XEZGNW0SSASBRIIMJ9529SQ9O8KPKZUB2IVX30X6T59ZJN97KSZZ72VP1IB8MBQWJN1E6X5POX7DDOD29BQ3D605EBLW4A7DPPQ3R9W7NOE37B0AIAD8RW9XGEE01O5BSFF' where id=70; -update noar ti set v2='71HCX56X32H1ENTBBYO3RJLHXK9V27BSV76U8Q89ULS8NVP29QNEFT10OPZDG6CJPNF5A50J15XBBGS6G7JL1J5Z0IKO104OJ8FF3QP1Z1MPV8YQJBSEYRROA01FX4XEZGNW0SSASBRIIMJ9529SQ9O8KPKZUB2IVX30X6T59ZJN97KSZZ72VP1IB8MBQWJN1E6X5POX7DDOD29BQ3D605EBLW4A7DPPQ3R9W7NOE37B0AIAD8RW9XGEE01O5BSFF' where id=70; -update noar tt set v3='FJLY9YYJ55F8J5PY3TRDWUNXG61YX3AIX8TOYYJTEZIRC9FSU4RBNWELRFXGPJCAVMCP1Y4NRWW78IIVF9Z4VPC6ZJW0B7QTMSTH28R4M8XZ049MJE28MTTT4OLMA2P5RP2OJSQBFRTOZZ5L1N5IQM7AC1BHE3IS990MO3IYEFX27LMYWGVBT0JXZFK4JAE5DVLDA07R7SSP7KNB08KJT8EKA7W4WI24MGFEF46MX906J6JXEGO2NHR865X7NF6KX' where id=70; -update noar ti set v3='FJLY9YYJ55F8J5PY3TRDWUNXG61YX3AIX8TOYYJTEZIRC9FSU4RBNWELRFXGPJCAVMCP1Y4NRWW78IIVF9Z4VPC6ZJW0B7QTMSTH28R4M8XZ049MJE28MTTT4OLMA2P5RP2OJSQBFRTOZZ5L1N5IQM7AC1BHE3IS990MO3IYEFX27LMYWGVBT0JXZFK4JAE5DVLDA07R7SSP7KNB08KJT8EKA7W4WI24MGFEF46MX906J6JXEGO2NHR865X7NF6KX' where id=70; -update noar tt set v0='9DZYQUSF9OTXF1YUWN6YFPG2ML3927OMDJWVQ6IV9SHJ6HDPKYA7HLWCYHCFUNTEFPFVW9T90ZS9IG8SINX8A49FLY5OFYDUMZ1PK6AXJPTY7ZQ0BZLUSOTIX32AD32KJRY8G5N3YAMWKNCQQ93N7UH0GVVR3JYT4X5DX4ZSK50ZLR3CA38W4JF3GVF7N06QM5AJWWUQ9K0PVI65MUZW5LE09O55039ZSTOUFDZ71ZEOH2R8LVO4L9J7MOYM2BMK1' where id=71; -update noar ti set v0='9DZYQUSF9OTXF1YUWN6YFPG2ML3927OMDJWVQ6IV9SHJ6HDPKYA7HLWCYHCFUNTEFPFVW9T90ZS9IG8SINX8A49FLY5OFYDUMZ1PK6AXJPTY7ZQ0BZLUSOTIX32AD32KJRY8G5N3YAMWKNCQQ93N7UH0GVVR3JYT4X5DX4ZSK50ZLR3CA38W4JF3GVF7N06QM5AJWWUQ9K0PVI65MUZW5LE09O55039ZSTOUFDZ71ZEOH2R8LVO4L9J7MOYM2BMK1' where id=71; -update noar tt set v1='N240W1BCFPSUI0MJEUYL970QF0D90E18ZTX0W5OPTNSBW964IUD65418K86X0P0AYMAR0LDV8317K7EX6BWDKK0KXFJ0WRRGKXDXIYE58TMKI9BLDRMDYB2EECS6SDXL08CHAE3GB0KUN904QQ30Y908DPYMPUSDRAV87B9KGMMXLI2DFCZENNCM27GB5C165UMNFGV31K78YTW2NWC2CJ2NA3LBPI2ADM73447QTTQ1FS70V6WD510INK7C5DNLN' where id=71; -update noar ti set v1='N240W1BCFPSUI0MJEUYL970QF0D90E18ZTX0W5OPTNSBW964IUD65418K86X0P0AYMAR0LDV8317K7EX6BWDKK0KXFJ0WRRGKXDXIYE58TMKI9BLDRMDYB2EECS6SDXL08CHAE3GB0KUN904QQ30Y908DPYMPUSDRAV87B9KGMMXLI2DFCZENNCM27GB5C165UMNFGV31K78YTW2NWC2CJ2NA3LBPI2ADM73447QTTQ1FS70V6WD510INK7C5DNLN' where id=71; -update noar tt set v2='622H5KHPBYEHO700WGUETVRWFOFJT2P0BZ2F7VBK205FBIKIU326XWYTELKQOUHJM8VYF5BW5C4PT0QUZ2IONGB9WX0U0EPSP9EREKZFMCHHKX40RKU55KWU5M3IWX2MBJIUM0V409UHR59HVU1NCJ0VOT703CGY5PC97YNOA8K9MDBTDRSBYTZC5067NOC9HI1MWHEWROUTW5JO1JO3V5E8KWJGFA9ZSUJK8J5FM3KXY9O9S6PQUWSP2RH1E8QWL' where id=71; -update noar ti set v2='622H5KHPBYEHO700WGUETVRWFOFJT2P0BZ2F7VBK205FBIKIU326XWYTELKQOUHJM8VYF5BW5C4PT0QUZ2IONGB9WX0U0EPSP9EREKZFMCHHKX40RKU55KWU5M3IWX2MBJIUM0V409UHR59HVU1NCJ0VOT703CGY5PC97YNOA8K9MDBTDRSBYTZC5067NOC9HI1MWHEWROUTW5JO1JO3V5E8KWJGFA9ZSUJK8J5FM3KXY9O9S6PQUWSP2RH1E8QWL' where id=71; -update noar tt set v3='693SVWB0NU7A8QNGNZUT2YSF0WOCLP26FH657DB76LJN47KRGPPOEG1JVE3K50XIOZHSN5J417ZNQDYWK4HZ9SFN96LL96YSXB3GDLOBBH4VWXOHE21HZ3ST2QX2LAMAZTKQR7AUSKNPOHJVORIY2YG91AD7NO31B53M05B2UZPFZ6M418I04JECNJY2PM3HNCENRH565YNJFWIGN6S4QNYG0KRYFIQ60MGS4YYO77R0OQJK99XTLUNVWPVHM7IDA' where id=71; -update noar ti set v3='693SVWB0NU7A8QNGNZUT2YSF0WOCLP26FH657DB76LJN47KRGPPOEG1JVE3K50XIOZHSN5J417ZNQDYWK4HZ9SFN96LL96YSXB3GDLOBBH4VWXOHE21HZ3ST2QX2LAMAZTKQR7AUSKNPOHJVORIY2YG91AD7NO31B53M05B2UZPFZ6M418I04JECNJY2PM3HNCENRH565YNJFWIGN6S4QNYG0KRYFIQ60MGS4YYO77R0OQJK99XTLUNVWPVHM7IDA' where id=71; -update noar tt set v0='4KVBI2G1BE6ZJC0ACZ25H195H8N0EGB00HGKZXXV2802TCJYXTR8SZQTW14ROQAZ8LDS61N8AUFGQUNXJQ19R547NY6WJ9WUA47ZZ4FQDAGSHAGRNZWNJC7Y3GSPUPIBKP9FCF15EP8PIDCOV3ZTLX5VAY933EWUKSBNDQYIWN2JIWCUOK0KAY2UCTRHVWSUWJR28H8BVNLDJTDDV29FUSGC71V33YH16GDC4VI3380U0G8LUAFRD823MKEM43F1V' where id=72; -update noar ti set v0='4KVBI2G1BE6ZJC0ACZ25H195H8N0EGB00HGKZXXV2802TCJYXTR8SZQTW14ROQAZ8LDS61N8AUFGQUNXJQ19R547NY6WJ9WUA47ZZ4FQDAGSHAGRNZWNJC7Y3GSPUPIBKP9FCF15EP8PIDCOV3ZTLX5VAY933EWUKSBNDQYIWN2JIWCUOK0KAY2UCTRHVWSUWJR28H8BVNLDJTDDV29FUSGC71V33YH16GDC4VI3380U0G8LUAFRD823MKEM43F1V' where id=72; -update noar tt set v1='5C9L72EGNPN3XEIC0S8YJX2S4BNQ5FNZ1SLA2KTRF523Q8GJG7B8J4LC8G9I1H6NCI49EUHBS57PV72WWC5XIXBIU5J69QZLNGXHYSIOF4L8VDPCNMB21S9TWQAX3WIVMSVCPD7KRWPIGNDGBFJG385DOBXVF0L86D7GMP1F1NJGM5NOUQWEWIB9E0XWH94YQWYOVS8AOT3QSHTYBZOWFQ3KMF8D2SWTV5GAC0AE2SLCWNT7WUWPGFQZQA89KM7GO' where id=72; -update noar ti set v1='5C9L72EGNPN3XEIC0S8YJX2S4BNQ5FNZ1SLA2KTRF523Q8GJG7B8J4LC8G9I1H6NCI49EUHBS57PV72WWC5XIXBIU5J69QZLNGXHYSIOF4L8VDPCNMB21S9TWQAX3WIVMSVCPD7KRWPIGNDGBFJG385DOBXVF0L86D7GMP1F1NJGM5NOUQWEWIB9E0XWH94YQWYOVS8AOT3QSHTYBZOWFQ3KMF8D2SWTV5GAC0AE2SLCWNT7WUWPGFQZQA89KM7GO' where id=72; -update noar tt set v2='UZB1VBNEW0BS1PH85F5DTEWFBB0HICPLT3G8NB92FZ01EK6DR0851HNNHRW5ISJ37WMJJR23GDU3U5UAI1V27F2IBZJF0B6154EQ7MX3EP62Q4ES37CG3QZRJHERXTD9U8JLAJ6UH2XPERL0AS87WUCR9J31WWIGG8E8H5E9NT1K427AYWXBSGI0PI5L13F6UABYP5BNENNNUFEHQPLQCRBOQBUFYJ7LIXT4AUEXHCZXBKCLS6OEZJ24AADFQS4P3' where id=72; -update noar ti set v2='UZB1VBNEW0BS1PH85F5DTEWFBB0HICPLT3G8NB92FZ01EK6DR0851HNNHRW5ISJ37WMJJR23GDU3U5UAI1V27F2IBZJF0B6154EQ7MX3EP62Q4ES37CG3QZRJHERXTD9U8JLAJ6UH2XPERL0AS87WUCR9J31WWIGG8E8H5E9NT1K427AYWXBSGI0PI5L13F6UABYP5BNENNNUFEHQPLQCRBOQBUFYJ7LIXT4AUEXHCZXBKCLS6OEZJ24AADFQS4P3' where id=72; -update noar tt set v3='M9KJ479UTCMETO0MI3SMJLXD47GS0FZ4B3PCN6G50SW38DM3Y8K8KTYK2CI8Q8XC1L1G5IYOSS6ITKLI7PK4WXMNF5N9LVR7XJY51ZQHMFL3M8GZHTQO5DROTOT3SKZ9K528B8XBW9FZX97Y29I6WN5WCKSU4QSU3KAKV1L5WHNOMFNS8Y0TBEMC2EPPZKXVIASWB98TYC4RCURHHZI1KG7HYF32XU1N5OEKI61A4KK0IXRZUYUWJCF5ASV8OTM4F' where id=72; -update noar ti set v3='M9KJ479UTCMETO0MI3SMJLXD47GS0FZ4B3PCN6G50SW38DM3Y8K8KTYK2CI8Q8XC1L1G5IYOSS6ITKLI7PK4WXMNF5N9LVR7XJY51ZQHMFL3M8GZHTQO5DROTOT3SKZ9K528B8XBW9FZX97Y29I6WN5WCKSU4QSU3KAKV1L5WHNOMFNS8Y0TBEMC2EPPZKXVIASWB98TYC4RCURHHZI1KG7HYF32XU1N5OEKI61A4KK0IXRZUYUWJCF5ASV8OTM4F' where id=72; -update noar tt set v0='7NEC4XECTR7ZW4IJASRU3H7WQGZ9T48SKRZB5J96H6124LC35990VQ1TXGGA1PYMWIH0HKOBIKBACX5Q8XE8A46HZQG9U1GIZJ01E2Y0C97IIKRLJBPWALKO71DRKXP7UA6B1JQ3L5YE3Q98R1ZIHLR4VLOZB46T7YMJHN75MIQ2S31TA4A9A9WX8JN83ZZYTWITPL748FS7AF7986FX2H6UQYESKHGB6NI26PS0PSWGES36AMXHBOZ2KNW5YD3LH' where id=73; -update noar ti set v0='7NEC4XECTR7ZW4IJASRU3H7WQGZ9T48SKRZB5J96H6124LC35990VQ1TXGGA1PYMWIH0HKOBIKBACX5Q8XE8A46HZQG9U1GIZJ01E2Y0C97IIKRLJBPWALKO71DRKXP7UA6B1JQ3L5YE3Q98R1ZIHLR4VLOZB46T7YMJHN75MIQ2S31TA4A9A9WX8JN83ZZYTWITPL748FS7AF7986FX2H6UQYESKHGB6NI26PS0PSWGES36AMXHBOZ2KNW5YD3LH' where id=73; -update noar tt set v1='C812P5RL4RLS0I5886A1PMR43QI83FMX77FNE69GENXR9ZMSAKJGZQ3DBPR1C64ZP9LQTA27G7NBZPUGLDRBP7VYNXQ8ATX2RE13OVY9X0WU1KE3O436F04H69S4XZD7U2F98Q248D2QQHS53N8A6I6IDDF9UOF1O3QG41381YTTK1V18EZGNW51588P9DZJCNXE8CJU7GN3M0DSEG31OW47JY7P2WO9R6RFIG9Y0WJUICW8PHMF2R5Y0IE49UZL0' where id=73; -update noar ti set v1='C812P5RL4RLS0I5886A1PMR43QI83FMX77FNE69GENXR9ZMSAKJGZQ3DBPR1C64ZP9LQTA27G7NBZPUGLDRBP7VYNXQ8ATX2RE13OVY9X0WU1KE3O436F04H69S4XZD7U2F98Q248D2QQHS53N8A6I6IDDF9UOF1O3QG41381YTTK1V18EZGNW51588P9DZJCNXE8CJU7GN3M0DSEG31OW47JY7P2WO9R6RFIG9Y0WJUICW8PHMF2R5Y0IE49UZL0' where id=73; -update noar tt set v2='WO8RCONG3AO65JYG2X4N02QYFQGU66QPSD6XANXR578LZ4C54R6MAXMPRWV371MZXNX94XKNZKN717QJ90ZBHF24J36UFI0430JPZZZ7HRWJB8GHAP8MKQ61XICSE0OI97DACR42F69CTXNLH3E7SSGYVDD7CHEPYMV286HS5CFAMJ8Z6SCDPK9SGS4QO82VTYJBBFYSCW09GMMR8OL36DHAWQBQT2FV2NK45KGL38WAEW9U0FZ73TRETTHMBYDNJ' where id=73; -update noar ti set v2='WO8RCONG3AO65JYG2X4N02QYFQGU66QPSD6XANXR578LZ4C54R6MAXMPRWV371MZXNX94XKNZKN717QJ90ZBHF24J36UFI0430JPZZZ7HRWJB8GHAP8MKQ61XICSE0OI97DACR42F69CTXNLH3E7SSGYVDD7CHEPYMV286HS5CFAMJ8Z6SCDPK9SGS4QO82VTYJBBFYSCW09GMMR8OL36DHAWQBQT2FV2NK45KGL38WAEW9U0FZ73TRETTHMBYDNJ' where id=73; -update noar tt set v3='8FS8A49KS3S2J7ZNUKIVYD8CR1N0SUV8UK1NWBKF8R2GOE1MSDVJLZPY6QZVAHESK0LSENBZIQ5IC86GI1DM0HWYRZEEY5JD19SNNED8E861RG3WT365K0V0N36B0SCRDGS3F5J7NG3RGDIY3U8ZJJCF2RMJ3NLYHAF5CLVCEZT3FN1X2C4B0S5H7V193QB9Z03JEHDBMH3PKPWZBF2XU913FHBN52EGEY9T88KT8WJHCN98JET6RMRFRCC36GPXW' where id=73; -update noar ti set v3='8FS8A49KS3S2J7ZNUKIVYD8CR1N0SUV8UK1NWBKF8R2GOE1MSDVJLZPY6QZVAHESK0LSENBZIQ5IC86GI1DM0HWYRZEEY5JD19SNNED8E861RG3WT365K0V0N36B0SCRDGS3F5J7NG3RGDIY3U8ZJJCF2RMJ3NLYHAF5CLVCEZT3FN1X2C4B0S5H7V193QB9Z03JEHDBMH3PKPWZBF2XU913FHBN52EGEY9T88KT8WJHCN98JET6RMRFRCC36GPXW' where id=73; -update noar tt set v0='9YNN9O1R1E5LJZ5KIIMVNEVFBFSV5ZHUFOJCJS4AOO6SUX1PN3UIS1PNBTLXD3I1DPMX7JX1JTFACPGBDDZ0XA5M3DQ91WNJK41VCB8OKB1LOWH1L6IE78HHTJ67J7O1XB44432Y1JLJLUE26PRBUYMXSTMTPWWZ4XCMQTDMG1SFG2W9UH3O6OT4XJKMMPS8BMGKHGXW85PLSKRNHA63MUBR63LU11B6ZUDQ0LMGIH2V725V7BNVTYIHB7728T8FZ' where id=74; -update noar ti set v0='9YNN9O1R1E5LJZ5KIIMVNEVFBFSV5ZHUFOJCJS4AOO6SUX1PN3UIS1PNBTLXD3I1DPMX7JX1JTFACPGBDDZ0XA5M3DQ91WNJK41VCB8OKB1LOWH1L6IE78HHTJ67J7O1XB44432Y1JLJLUE26PRBUYMXSTMTPWWZ4XCMQTDMG1SFG2W9UH3O6OT4XJKMMPS8BMGKHGXW85PLSKRNHA63MUBR63LU11B6ZUDQ0LMGIH2V725V7BNVTYIHB7728T8FZ' where id=74; -update noar tt set v1='OH77FS0E3VHZUNSGAC9ZG4SULNF66MVU6JENVIOISFZ4MIO24O6R2V9QWBET1PVSBO4W2NSWBM479O3G5RB0BF62CJ6FD817P7CW7ZZY04QGCJXA88GKU4RJ1RE6QJT8NK093EKPRJWQ6Y5MQHHMKW5914BPRD65FQ5WHY8Q0GMGQD2OU6BDKOVDS6OWWLI59C7RNHV8XX6X5BUWGR5V3WPRN68LPLEFIVQ2B5BCV9FJXH4ESJPTBF4I1YIX22LXE' where id=74; -update noar ti set v1='OH77FS0E3VHZUNSGAC9ZG4SULNF66MVU6JENVIOISFZ4MIO24O6R2V9QWBET1PVSBO4W2NSWBM479O3G5RB0BF62CJ6FD817P7CW7ZZY04QGCJXA88GKU4RJ1RE6QJT8NK093EKPRJWQ6Y5MQHHMKW5914BPRD65FQ5WHY8Q0GMGQD2OU6BDKOVDS6OWWLI59C7RNHV8XX6X5BUWGR5V3WPRN68LPLEFIVQ2B5BCV9FJXH4ESJPTBF4I1YIX22LXE' where id=74; -update noar tt set v2='A7U95GIVHS3RJI0XLFMEOCUD7F4SS5BGHSY53I6RO7WBYKW2P2UFS7TT6LF8QCDKL8LRMXQX80MGJGN29T0FDOMQRHVT0PJMY4SODMCOLHPVOS4GQVEEJXN9VXJ39DOMW823K2WXFFY9CUB5XFD3VN8F414YTAECKL1OZ6F0F3BHTYATE5WL8VPUHZODGSI95FFI55OY2GWJ0F5R3QLWQTWRM9S86FJ14CWVG1GTYPU6TMV3BQXCF15GHMSGKR6G6' where id=74; -update noar ti set v2='A7U95GIVHS3RJI0XLFMEOCUD7F4SS5BGHSY53I6RO7WBYKW2P2UFS7TT6LF8QCDKL8LRMXQX80MGJGN29T0FDOMQRHVT0PJMY4SODMCOLHPVOS4GQVEEJXN9VXJ39DOMW823K2WXFFY9CUB5XFD3VN8F414YTAECKL1OZ6F0F3BHTYATE5WL8VPUHZODGSI95FFI55OY2GWJ0F5R3QLWQTWRM9S86FJ14CWVG1GTYPU6TMV3BQXCF15GHMSGKR6G6' where id=74; -update noar tt set v3='4K0AMB69AHAMZSR7S5O0PLJ76BKVAYIE2O320HMUQJFAX22TFO3S35MIQ4GIJI9KMOQOBA9RPNHMS1T6CFWH5EVI78JQQR9IDBY46WRJVCYCZ8M6YQGQBP9AVC0AD2DS2IBW2HNXD9HOXF1AT7KRHCT4YHP2Z1BPTV7DHMW2EAABY3K698S9836N2AINOUNPLCHQDITXA6U8GYC8KAJOZZJ58JEQXBIRUT3SL2XZWULU5KAS4UW2MOEUUVUSE4SA5' where id=74; -update noar ti set v3='4K0AMB69AHAMZSR7S5O0PLJ76BKVAYIE2O320HMUQJFAX22TFO3S35MIQ4GIJI9KMOQOBA9RPNHMS1T6CFWH5EVI78JQQR9IDBY46WRJVCYCZ8M6YQGQBP9AVC0AD2DS2IBW2HNXD9HOXF1AT7KRHCT4YHP2Z1BPTV7DHMW2EAABY3K698S9836N2AINOUNPLCHQDITXA6U8GYC8KAJOZZJ58JEQXBIRUT3SL2XZWULU5KAS4UW2MOEUUVUSE4SA5' where id=74; -update noar tt set v0='MAXJK8SCOJ2E8T4VMQ261YKS5WC8TEA9US5KBXUC1T6226LYKNQMSWTIN3A7HZM01SS3WHI1OCNRRJQEJDO1DB2GLHANX99YH1TNCRYWBJ4FDV795TOA1PTTY0G7QS7DGEKL7B4TY5N4V8TLAZWDFWEC52ONF1GICCQO0V8UGVSV797VUREEEFI7ZWB1OYO3IT9BQHEED4L9JWKWDBW2WIFPUWHBZH6QJBNGOQET8HM4WMIXNUSVFJNSSTPDP5THO' where id=75; -update noar ti set v0='MAXJK8SCOJ2E8T4VMQ261YKS5WC8TEA9US5KBXUC1T6226LYKNQMSWTIN3A7HZM01SS3WHI1OCNRRJQEJDO1DB2GLHANX99YH1TNCRYWBJ4FDV795TOA1PTTY0G7QS7DGEKL7B4TY5N4V8TLAZWDFWEC52ONF1GICCQO0V8UGVSV797VUREEEFI7ZWB1OYO3IT9BQHEED4L9JWKWDBW2WIFPUWHBZH6QJBNGOQET8HM4WMIXNUSVFJNSSTPDP5THO' where id=75; -update noar tt set v1='AVWI8Y3F2LZ4J0IROPDULWOK9XE9GVUIEBO3VUBMSZW1I7RAGGMKEC1A0YN7M6AQT5QEYJFMB6RT5V2SNPSFVFHENSO0X5OGAFPMG95OQZ1LE3XVDD9IJTEG9U7QV249F805C0R4KN71LEF9I2CNPUH8IGZ9IMNBXXLM5S2GL6USLIJVUKSXWJVFNYIAZAIZNT0DOH9FFBP4DK9X6LYIC6E8ZZBZP7TD1ZA0TBW8HUKO1U41JGF5JF0FIDPRKRLB4' where id=75; -update noar ti set v1='AVWI8Y3F2LZ4J0IROPDULWOK9XE9GVUIEBO3VUBMSZW1I7RAGGMKEC1A0YN7M6AQT5QEYJFMB6RT5V2SNPSFVFHENSO0X5OGAFPMG95OQZ1LE3XVDD9IJTEG9U7QV249F805C0R4KN71LEF9I2CNPUH8IGZ9IMNBXXLM5S2GL6USLIJVUKSXWJVFNYIAZAIZNT0DOH9FFBP4DK9X6LYIC6E8ZZBZP7TD1ZA0TBW8HUKO1U41JGF5JF0FIDPRKRLB4' where id=75; -update noar tt set v2='J2WRIE1SYM8DB6EARECT01QBP6L7359A2ZLH49103EOZ0723AMYCJJNTGNF7F4NZPLUK0NZTJ3X3EGNWIQ7S0P5FNSST5BJ1EZ6NL2U85HQKGM4DYQVUR8O9EASGOI7TJWUMG6RTADPYNPIN227SK3AHTZHYJ7J7U0K1PWXNZO7UL6NK13GS6S5IXM498CM1YUTC24CG5B8JT3T654I33WM7Q0QGYO62ATVEJSHK6IN5TH8SGGE0NDFF8T6C4APFJ' where id=75; -update noar ti set v2='J2WRIE1SYM8DB6EARECT01QBP6L7359A2ZLH49103EOZ0723AMYCJJNTGNF7F4NZPLUK0NZTJ3X3EGNWIQ7S0P5FNSST5BJ1EZ6NL2U85HQKGM4DYQVUR8O9EASGOI7TJWUMG6RTADPYNPIN227SK3AHTZHYJ7J7U0K1PWXNZO7UL6NK13GS6S5IXM498CM1YUTC24CG5B8JT3T654I33WM7Q0QGYO62ATVEJSHK6IN5TH8SGGE0NDFF8T6C4APFJ' where id=75; -update noar tt set v3='QCF18C0GDB9XJ99UOJ5V5NSHX52SMX4NJCX6YM31XUWCRYOY8BT7HW330ML84ZOJAORF23HL13X9H3FI780K5BML23CE5RKD8MSP5Q4U5PIC3CPVJCO81S7INPU5X1SC1WJK66PSIP3QFLYMZ60MTBDMPZR1YQ0X6BDJQGPHJYXSAV8GH7Q5SBUCT4BGXAFWEWCNTH35QN2S6BRKRI094JGRY2K5EBUMS6H1BBI1YY8T2MCVE9W33CMG2X41MBLXC' where id=75; -update noar ti set v3='QCF18C0GDB9XJ99UOJ5V5NSHX52SMX4NJCX6YM31XUWCRYOY8BT7HW330ML84ZOJAORF23HL13X9H3FI780K5BML23CE5RKD8MSP5Q4U5PIC3CPVJCO81S7INPU5X1SC1WJK66PSIP3QFLYMZ60MTBDMPZR1YQ0X6BDJQGPHJYXSAV8GH7Q5SBUCT4BGXAFWEWCNTH35QN2S6BRKRI094JGRY2K5EBUMS6H1BBI1YY8T2MCVE9W33CMG2X41MBLXC' where id=75; -update noar tt set v0='71NT19EP84082NY6CJRT4GT5F4VRZHBW4BFBCZWDGYJA5PMNIDJHVP1LHXSMZ22GPH9RWCWE809VIVSA05G6SHT3GHU9TC0V8G8KJTSRK43X5X6EN4DT02EBN3YOVMZMAQL9O9WXLZLJVIHUZS9P1O5NNGVUEOMNT1P9HTI2BNTGLZSNCU59ZQO2B2HI1CD2K330OG33KETLRHM0KZHWY6EGLN5U36F3AN4E4RASWVIF0BQML8CQIK5DFOTWSV1I0' where id=76; -update noar ti set v0='71NT19EP84082NY6CJRT4GT5F4VRZHBW4BFBCZWDGYJA5PMNIDJHVP1LHXSMZ22GPH9RWCWE809VIVSA05G6SHT3GHU9TC0V8G8KJTSRK43X5X6EN4DT02EBN3YOVMZMAQL9O9WXLZLJVIHUZS9P1O5NNGVUEOMNT1P9HTI2BNTGLZSNCU59ZQO2B2HI1CD2K330OG33KETLRHM0KZHWY6EGLN5U36F3AN4E4RASWVIF0BQML8CQIK5DFOTWSV1I0' where id=76; -update noar tt set v1='BH3KTNOGM94BEH1J2QNK4XOSZIPMXR2G3NXCTRMZFPJOHXTDJU0ZTHK26W6M7J6O1SJLBOD46LI99XVF9KUGCWK81D6AWNUF1VEG8BEL8SYYTB7MX3DISRLI1B4OEZFXZL0UGWQ0R8KBZL774R4GZPI5T2N4NE8YAT5MDCHX7DBVDLKG4YHGV07LBAM7UHOVHQ961WA3TTR0F1743P7P65VIRGN1NMPZP2K3JILT2WFKKTWEX16GZ5RQJS5N99WM0' where id=76; -update noar ti set v1='BH3KTNOGM94BEH1J2QNK4XOSZIPMXR2G3NXCTRMZFPJOHXTDJU0ZTHK26W6M7J6O1SJLBOD46LI99XVF9KUGCWK81D6AWNUF1VEG8BEL8SYYTB7MX3DISRLI1B4OEZFXZL0UGWQ0R8KBZL774R4GZPI5T2N4NE8YAT5MDCHX7DBVDLKG4YHGV07LBAM7UHOVHQ961WA3TTR0F1743P7P65VIRGN1NMPZP2K3JILT2WFKKTWEX16GZ5RQJS5N99WM0' where id=76; -update noar tt set v2='MYG9WC3PCRJPG9WTEVI0QBKKXNL6MVRDED81DBONL7F1AK717OXTOPMJ44W4441A7UGOBO1OFFEB25TH6QNBUFHVJDO2BZHQTLX4G6LVWF9KS6KQ4DKP8X9YKQQBVJ8V29QRE8N8874BQRUVWTLPW74P13S5IVTCBMLVYODQDV6502G6FUDPY569AVTP7SFWZCVF6CCJQHSFO9JHXNSOF2EA03CYOE0B2DWS7T3GYJ9Y393SR9UBMRPMDJKNQKB0C' where id=76; -update noar ti set v2='MYG9WC3PCRJPG9WTEVI0QBKKXNL6MVRDED81DBONL7F1AK717OXTOPMJ44W4441A7UGOBO1OFFEB25TH6QNBUFHVJDO2BZHQTLX4G6LVWF9KS6KQ4DKP8X9YKQQBVJ8V29QRE8N8874BQRUVWTLPW74P13S5IVTCBMLVYODQDV6502G6FUDPY569AVTP7SFWZCVF6CCJQHSFO9JHXNSOF2EA03CYOE0B2DWS7T3GYJ9Y393SR9UBMRPMDJKNQKB0C' where id=76; -update noar tt set v3='ZKJR74B19LYTUC4TO15X0I15TZYO0P75YBNV2J3J6T844G08HKUS1Z1LBTKIXWXFGZU77ZTJYVY8TQSO1RFLHZL2XYNRBDL1UCAZMKDZMCK10RM3EM2Y1MW43MGNB2YBS39CMFD6Q9WE6ZIX7CG2P57P006HRKBMUAPOY73LGKRHX09AF8YFSS8TNBWV3E0VE23BV7V3HPBV29JY0C4EUMGL9O75G3OJJOOCRS2NBBSY2LVON6R8G4XKI7VI3882A' where id=76; -update noar ti set v3='ZKJR74B19LYTUC4TO15X0I15TZYO0P75YBNV2J3J6T844G08HKUS1Z1LBTKIXWXFGZU77ZTJYVY8TQSO1RFLHZL2XYNRBDL1UCAZMKDZMCK10RM3EM2Y1MW43MGNB2YBS39CMFD6Q9WE6ZIX7CG2P57P006HRKBMUAPOY73LGKRHX09AF8YFSS8TNBWV3E0VE23BV7V3HPBV29JY0C4EUMGL9O75G3OJJOOCRS2NBBSY2LVON6R8G4XKI7VI3882A' where id=76; -update noar tt set v0='QEH9QBXR6Q0RUU6VID14PBM1C134IF7ENG6IJUG13TCEEC7P3OO36I6RJMVMBAE47I5KE4856CKGR4YCMKHE4VZWK6R51FXBANSRRSD82NG5X1UFMOIGVTICZSZ7TKYGMOK8YHRD6W5DT8MBYWT5N6Q9KOJKJFFQTGMK13TC40BLF42JR2B5NJTKX1UM0YA05GR108UFGJGN2Q1DD4UCJKC6X2LEBR2RY5FIX9KZ796RMIYFUAQSK73WDJR3K85B0' where id=77; -update noar ti set v0='QEH9QBXR6Q0RUU6VID14PBM1C134IF7ENG6IJUG13TCEEC7P3OO36I6RJMVMBAE47I5KE4856CKGR4YCMKHE4VZWK6R51FXBANSRRSD82NG5X1UFMOIGVTICZSZ7TKYGMOK8YHRD6W5DT8MBYWT5N6Q9KOJKJFFQTGMK13TC40BLF42JR2B5NJTKX1UM0YA05GR108UFGJGN2Q1DD4UCJKC6X2LEBR2RY5FIX9KZ796RMIYFUAQSK73WDJR3K85B0' where id=77; -update noar tt set v1='ZP4W6KPAR1T6WTWH2MCFRENMQRJJRB66HEG089L5LM728YT3XIF5RVQJ3HSQRRE7G698ABL2LHUEF8UL53CKSZHMSIBNAJPQZS0NJ9UY88HC9OZFIYPEC522AMQZ55A01ZOE6HW3GK3EIF9P6GKJXDQ1DAKMV7RE2B6DRGDUO0J5PINNG1AYSFCQ8QF0CCPWQ06WX3YFW66KF3Z51LNJUROM3TNTK3S22NB3RDLFKUU57OG2FGI40U2U0SKZY8A82' where id=77; -update noar ti set v1='ZP4W6KPAR1T6WTWH2MCFRENMQRJJRB66HEG089L5LM728YT3XIF5RVQJ3HSQRRE7G698ABL2LHUEF8UL53CKSZHMSIBNAJPQZS0NJ9UY88HC9OZFIYPEC522AMQZ55A01ZOE6HW3GK3EIF9P6GKJXDQ1DAKMV7RE2B6DRGDUO0J5PINNG1AYSFCQ8QF0CCPWQ06WX3YFW66KF3Z51LNJUROM3TNTK3S22NB3RDLFKUU57OG2FGI40U2U0SKZY8A82' where id=77; -update noar tt set v2='34NNL1Y93SHGO2RMH8CGKUXEPYHS4GGK7I3EH6ZPS34D2EO6G4G4AXQQHICGC37UI1XGMPH54E0QC6E6EDN4F543YZ5WPQTZWND9V72NW9BC0ZQUAOBQAR60CDGHDY97O95UZHI7HFQBQY5NVXBMGP7UTVIRAANZ9IA015ELU2G7GUB37XZ1Z8VMVK96VRB8056XIQPS2SP1Z57SZ0EZ3YM8IN9G3IDMB54HQ9OFK0QU3BQERN4T5OOR7PXPXE2QN' where id=77; -update noar ti set v2='34NNL1Y93SHGO2RMH8CGKUXEPYHS4GGK7I3EH6ZPS34D2EO6G4G4AXQQHICGC37UI1XGMPH54E0QC6E6EDN4F543YZ5WPQTZWND9V72NW9BC0ZQUAOBQAR60CDGHDY97O95UZHI7HFQBQY5NVXBMGP7UTVIRAANZ9IA015ELU2G7GUB37XZ1Z8VMVK96VRB8056XIQPS2SP1Z57SZ0EZ3YM8IN9G3IDMB54HQ9OFK0QU3BQERN4T5OOR7PXPXE2QN' where id=77; -update noar tt set v3='QQRW0CJ6DVZKHMMCDAN0UYIJVJHDIYAXQ239COEG1Q6CH3DA41E6175QW3FSVI87T9INMJ0EZ15NXPE029KLECDS02L6LW3FVFOUVNIVCOI249MS0OZRN2YNLH3OG8W56LXCOU98NOTOAQECGXVA1304KMFLTZ17MQD5CGFSBFDWCC2F5DRNBAIJHMMW4BACUOEGR8EL8T8XD8L4ETKY4RBA9898QCGI5B7JBQXJ1HV6FBATOQW5IS7N0A4LORH42' where id=77; -update noar ti set v3='QQRW0CJ6DVZKHMMCDAN0UYIJVJHDIYAXQ239COEG1Q6CH3DA41E6175QW3FSVI87T9INMJ0EZ15NXPE029KLECDS02L6LW3FVFOUVNIVCOI249MS0OZRN2YNLH3OG8W56LXCOU98NOTOAQECGXVA1304KMFLTZ17MQD5CGFSBFDWCC2F5DRNBAIJHMMW4BACUOEGR8EL8T8XD8L4ETKY4RBA9898QCGI5B7JBQXJ1HV6FBATOQW5IS7N0A4LORH42' where id=77; -update noar tt set v0='M1TGPFZ27BNJ9HWFB6BWQU9T9J8OXRDSODTL3SMEIYA9J2YG3UIBCNR7YDIH5D3QY81FHBG2WVTO8J9ZA8JGK6GPJG9QD8JXFVI00R9L5KLQQILFULHREK1IN9ABI64EDC081J730AFPLLSUPF6ULW6IVB9DJ1E0J54UMITLZ94VV2JR2CIG1KGU2MYOCT7XB0P6SA7FLBL6KGFVFLJQTITRU0J14JRIQR239Z54YEB5BRSXHVMG5L1UOJQAGOUET' where id=78; -update noar ti set v0='M1TGPFZ27BNJ9HWFB6BWQU9T9J8OXRDSODTL3SMEIYA9J2YG3UIBCNR7YDIH5D3QY81FHBG2WVTO8J9ZA8JGK6GPJG9QD8JXFVI00R9L5KLQQILFULHREK1IN9ABI64EDC081J730AFPLLSUPF6ULW6IVB9DJ1E0J54UMITLZ94VV2JR2CIG1KGU2MYOCT7XB0P6SA7FLBL6KGFVFLJQTITRU0J14JRIQR239Z54YEB5BRSXHVMG5L1UOJQAGOUET' where id=78; -update noar tt set v1='E45HRG2PE82P2VMGLRV8ITBZOIGC0ROVAD2JNN60W9OLJ1MFE083QW3CVV3TB27XNU8YTKO4KFJFHG3W1UASL4AQR1ERT3RSW2OR5U3MDL0A9RJN2SEFG8ICL9UPZSL93UNR4LCR00A6W21O7K3CFP1XL238PS7OR71JTUPSR4GM947O0IXQJB735GGA1R1UNX1PNTBPP12KP3H1LKFCQW4H9HWUSIUZBT8PQI0V36LJ18ZR9D3QYAT9LB6IW7Z61' where id=78; -update noar ti set v1='E45HRG2PE82P2VMGLRV8ITBZOIGC0ROVAD2JNN60W9OLJ1MFE083QW3CVV3TB27XNU8YTKO4KFJFHG3W1UASL4AQR1ERT3RSW2OR5U3MDL0A9RJN2SEFG8ICL9UPZSL93UNR4LCR00A6W21O7K3CFP1XL238PS7OR71JTUPSR4GM947O0IXQJB735GGA1R1UNX1PNTBPP12KP3H1LKFCQW4H9HWUSIUZBT8PQI0V36LJ18ZR9D3QYAT9LB6IW7Z61' where id=78; -update noar tt set v2='LT422FNS340WVO7BROC6N63A63S388BF4TD1NJOVN6M2ULE9USLIZS2CD5GGLO9VIM4ZV07VU6QLA5VFZ10P2AJT5CL1CGW4FK1AESTHRUFNBHFDENW8OY6IWTDG7988B9WARPGM41CGSS6VDH7X84SQ6Z1JQDRWD5Z1HI2EUM9143P7OIGQMPBIZ64QQEMQ5USVWFZ1W8RP8Y23QJMFSYXABVVTXAF56JGCCOTICUTLZ7E6H5L6LJI9CJBLLLG4R' where id=78; -update noar ti set v2='LT422FNS340WVO7BROC6N63A63S388BF4TD1NJOVN6M2ULE9USLIZS2CD5GGLO9VIM4ZV07VU6QLA5VFZ10P2AJT5CL1CGW4FK1AESTHRUFNBHFDENW8OY6IWTDG7988B9WARPGM41CGSS6VDH7X84SQ6Z1JQDRWD5Z1HI2EUM9143P7OIGQMPBIZ64QQEMQ5USVWFZ1W8RP8Y23QJMFSYXABVVTXAF56JGCCOTICUTLZ7E6H5L6LJI9CJBLLLG4R' where id=78; -update noar tt set v3='2RRQQ3G33WUF5HHKU4ZEP20VX1I8YPRAIPYL8AKIP8ZGF3MIHY0K2MA4KFOD6IEGSSWQKBWLERQNS3OQ97CF8CROIC7IJ9FBXIRL39EIB2277KCX5PI977TJX07WP7TZ4XRQTCS26VS3IZFRHE2ECUP2N1G8SGN2DRAXK5APLP39WAN5KEVTN8VBWAGSE3EED3ZLYVR6QXXMZGLDN4QVEAMR9N0IEICCSRAHJLZIH7QS1PM6YWQPBSTXIQIFO9S07' where id=78; -update noar ti set v3='2RRQQ3G33WUF5HHKU4ZEP20VX1I8YPRAIPYL8AKIP8ZGF3MIHY0K2MA4KFOD6IEGSSWQKBWLERQNS3OQ97CF8CROIC7IJ9FBXIRL39EIB2277KCX5PI977TJX07WP7TZ4XRQTCS26VS3IZFRHE2ECUP2N1G8SGN2DRAXK5APLP39WAN5KEVTN8VBWAGSE3EED3ZLYVR6QXXMZGLDN4QVEAMR9N0IEICCSRAHJLZIH7QS1PM6YWQPBSTXIQIFO9S07' where id=78; -update noar tt set v0='GEY2MGKDC0A7ZOV2SCLHGJLN0UFEP867IBZZJ0KHNUKNAGNMTKLOSDO1A3I06AVWSUE5YTNMG4MB72EHJDYZFE82PGOTOFEAMMHSTQS6JTPXHL2JV9EGXXZY79VR271YWQVHPBPG491H57QDTNXJ1NF28RG7MXKRRGIE08SMIJA7OB8HYOKR7S8KAICAAIYQH6UHVG64IKIYA906ELD7KIA0GRSCJ8F9HJ5DD2ACBXWWPGPXY3K5SS1KLRCVYHBV8' where id=79; -update noar ti set v0='GEY2MGKDC0A7ZOV2SCLHGJLN0UFEP867IBZZJ0KHNUKNAGNMTKLOSDO1A3I06AVWSUE5YTNMG4MB72EHJDYZFE82PGOTOFEAMMHSTQS6JTPXHL2JV9EGXXZY79VR271YWQVHPBPG491H57QDTNXJ1NF28RG7MXKRRGIE08SMIJA7OB8HYOKR7S8KAICAAIYQH6UHVG64IKIYA906ELD7KIA0GRSCJ8F9HJ5DD2ACBXWWPGPXY3K5SS1KLRCVYHBV8' where id=79; -update noar tt set v1='AUR8O25HT1TRD66PAM3XUVR1X2UFPNO54QXGDTP03OWAIDQLPEPOQ2Y5YX3O1X9HWFPKM76DWEXSHRDIPR791Q9J30NQA24W5MF6MFBMSVR5DQ1X5V8ZOF93X1H4GK0DLP1Z8FQFDXGGMJ2M8G0RH9838AB8T3GSTLU9Q95XY5RJSV9NQ8XMUMFOX3VNDP4CBL58A57EWDGQO2C63I6TGQULG6W5H3DJT2I7VVN90N6ZNK7CLJ5LR0UHU4MTMWUJ0' where id=79; -update noar ti set v1='AUR8O25HT1TRD66PAM3XUVR1X2UFPNO54QXGDTP03OWAIDQLPEPOQ2Y5YX3O1X9HWFPKM76DWEXSHRDIPR791Q9J30NQA24W5MF6MFBMSVR5DQ1X5V8ZOF93X1H4GK0DLP1Z8FQFDXGGMJ2M8G0RH9838AB8T3GSTLU9Q95XY5RJSV9NQ8XMUMFOX3VNDP4CBL58A57EWDGQO2C63I6TGQULG6W5H3DJT2I7VVN90N6ZNK7CLJ5LR0UHU4MTMWUJ0' where id=79; -update noar tt set v2='HBOTJ0QPHI55D8MEL74B22UE5YGMR4HXPZ85D1X0FIFEY47WAAW44JIAQIH0MHTI4TXEGRR56CZ3IH7OA6DTWFYHCIQLWHMH9THFS46AKSYSSAGKJU3YP81RLTD4LFFLQMYKBWLEXGYEB4XG8ACGU2TR0QX7HT0QYR3LVEUB1LHFS3Q1YPPIJMNTJFMXZNOOWBSOCQYMIYY5F37RHC45X600YYHBCGPM5U7BHI4FVSD16S1XXVGVBFJAPVF0DBH1L' where id=79; -update noar ti set v2='HBOTJ0QPHI55D8MEL74B22UE5YGMR4HXPZ85D1X0FIFEY47WAAW44JIAQIH0MHTI4TXEGRR56CZ3IH7OA6DTWFYHCIQLWHMH9THFS46AKSYSSAGKJU3YP81RLTD4LFFLQMYKBWLEXGYEB4XG8ACGU2TR0QX7HT0QYR3LVEUB1LHFS3Q1YPPIJMNTJFMXZNOOWBSOCQYMIYY5F37RHC45X600YYHBCGPM5U7BHI4FVSD16S1XXVGVBFJAPVF0DBH1L' where id=79; -update noar tt set v3='KLVA79QM3ENX2ZEDQJ0G0YFX7MG38YA7XVGNI74NRSIGCO2140FROZV5S5GUV62XB4X859ZXJHNZY03R02CLTSZY3A66Z9N52S2P8Z8R2PJR3AKZDRKZHLKC59WX7ZLTKOCEKN2TCL3P3ZJ1MKBWBMZE4LPWAVFLQPIUR4A3L599QK6J456QKNVGXTC8EMNBLRMEXW2OFFLHG0MPU9RDOFTZSWRPA84F602YTXRK39WHXWIM6TNWPXT4IBR0IG1BT' where id=79; -update noar ti set v3='KLVA79QM3ENX2ZEDQJ0G0YFX7MG38YA7XVGNI74NRSIGCO2140FROZV5S5GUV62XB4X859ZXJHNZY03R02CLTSZY3A66Z9N52S2P8Z8R2PJR3AKZDRKZHLKC59WX7ZLTKOCEKN2TCL3P3ZJ1MKBWBMZE4LPWAVFLQPIUR4A3L599QK6J456QKNVGXTC8EMNBLRMEXW2OFFLHG0MPU9RDOFTZSWRPA84F602YTXRK39WHXWIM6TNWPXT4IBR0IG1BT' where id=79; -update noar tt set v0='13F7SG1T7D1P1IUD396Y3NKF692WWAOKBT5I0CYSZ3CCLJ3VWAPQCJLD31CFSLN6IRV1GPWEQG0NA1XMW7NHH1CG3DF0Z1NYQJE5UUXHMR79XSRFHHXF3814FOD276ILSAZ5G2KOTKQV61PLIGW5XVFKHJV5O6DW5F4AAWRMXGKT54K1HBAUHC5K60Y60EYZDBVXPFOCRYS61XFI2QCM9ZYJJBDLG9TXL0BZ85DUGLOR3YH5SX54TK92QYPUYULQL' where id=80; -update noar ti set v0='13F7SG1T7D1P1IUD396Y3NKF692WWAOKBT5I0CYSZ3CCLJ3VWAPQCJLD31CFSLN6IRV1GPWEQG0NA1XMW7NHH1CG3DF0Z1NYQJE5UUXHMR79XSRFHHXF3814FOD276ILSAZ5G2KOTKQV61PLIGW5XVFKHJV5O6DW5F4AAWRMXGKT54K1HBAUHC5K60Y60EYZDBVXPFOCRYS61XFI2QCM9ZYJJBDLG9TXL0BZ85DUGLOR3YH5SX54TK92QYPUYULQL' where id=80; -update noar tt set v1='57LW6PGG89D3EYVEKMN3JHTTFVPGO0JJP20MY2ZNJ1OOKV2KKWP2MB7KBN86LAO3W1WAOIUNRU4ZHFBU8LSI95I0A0ZEMRO75BLQV4Z7Y6HALJAUXRFL8K4QXO2BJH1A0XLA5WTISN8FIJS5SUJXMYMFT6GPQS3W3JIO55027QC7Q9B22MCIV0BYVXIWA4RB6R9BA0Y0Q50ZSZ9LXE1RBXYHMQJLWYMZRQNQ90J06P1DK3Y5UAWC3MQ1B1MGD36BE' where id=80; -update noar ti set v1='57LW6PGG89D3EYVEKMN3JHTTFVPGO0JJP20MY2ZNJ1OOKV2KKWP2MB7KBN86LAO3W1WAOIUNRU4ZHFBU8LSI95I0A0ZEMRO75BLQV4Z7Y6HALJAUXRFL8K4QXO2BJH1A0XLA5WTISN8FIJS5SUJXMYMFT6GPQS3W3JIO55027QC7Q9B22MCIV0BYVXIWA4RB6R9BA0Y0Q50ZSZ9LXE1RBXYHMQJLWYMZRQNQ90J06P1DK3Y5UAWC3MQ1B1MGD36BE' where id=80; -update noar tt set v2='ODJUG17MEZYWLG2TVEEKZ9GD8Z35RE87C4HM07SF05KGBJUNCJR31PTR29VWETVYJSZCHPEVGP3JU2IKZRSZMA2M1LPLLTK0HDULTQIJA2UATWJG0CO03Q9AL3HUJMJNIK1VB2LTERNXOIG016LTMLA2O2ZWCR5F3EN1WG9YZQ4NUYDYAA0MUWO2N6HUO9O86M04JDSTLAJW0PNDQ6XQ7TIDJT8C4JEUTZPU6W78H7V5XM4D0W5OT9DLFIZHGJBI4' where id=80; -update noar ti set v2='ODJUG17MEZYWLG2TVEEKZ9GD8Z35RE87C4HM07SF05KGBJUNCJR31PTR29VWETVYJSZCHPEVGP3JU2IKZRSZMA2M1LPLLTK0HDULTQIJA2UATWJG0CO03Q9AL3HUJMJNIK1VB2LTERNXOIG016LTMLA2O2ZWCR5F3EN1WG9YZQ4NUYDYAA0MUWO2N6HUO9O86M04JDSTLAJW0PNDQ6XQ7TIDJT8C4JEUTZPU6W78H7V5XM4D0W5OT9DLFIZHGJBI4' where id=80; -update noar tt set v3='SXUVWLXMZXSDJP6JGBYTFAB8B39TO6H7DUQFRZTGQJBPXMWA66FOOP4HFMEWQ4T2WDP2FRRF2HUHEOYZDQ2XHFSFSSRSXAW0NRL9478791RSMAREXVNVUXCAVIR5UPTJF2V4TT05FYD4K4PBGBZWUMSL0SU21S6C54SY8AO4U74DP7L16NQL1NFNZXEB8B3YAGBN7E97R4BXDAAWIFSLFWDSK1RGI48B3I9RXBR2LQXJL469L29WZRC4XD7GYPW2B' where id=80; -update noar ti set v3='SXUVWLXMZXSDJP6JGBYTFAB8B39TO6H7DUQFRZTGQJBPXMWA66FOOP4HFMEWQ4T2WDP2FRRF2HUHEOYZDQ2XHFSFSSRSXAW0NRL9478791RSMAREXVNVUXCAVIR5UPTJF2V4TT05FYD4K4PBGBZWUMSL0SU21S6C54SY8AO4U74DP7L16NQL1NFNZXEB8B3YAGBN7E97R4BXDAAWIFSLFWDSK1RGI48B3I9RXBR2LQXJL469L29WZRC4XD7GYPW2B' where id=80; -update noar tt set v0='AMLT048K0KR7Q5L8C2BYU1BNGZ3081ZJOGPUCL9DD8XS7V3DVMJE6C47MLFE8SWHZLEEV7E2S6Z9FOP1FH61NLUU6463OUAWB0WF6JZWM3DNNSUHNQ6WNGB7RO96VRSS2GDYIH7HVKEM090TNV7VSBBQ0K7I6OHNSBDJKCV4E30NI4UUV978CCWKCXL49EL197ZZJSTFZHP05GGDPKXCMSHY91LR2VJYGPBD4K0W8U12Y1QHXAPB73UTZG662KSKO' where id=81; -update noar ti set v0='AMLT048K0KR7Q5L8C2BYU1BNGZ3081ZJOGPUCL9DD8XS7V3DVMJE6C47MLFE8SWHZLEEV7E2S6Z9FOP1FH61NLUU6463OUAWB0WF6JZWM3DNNSUHNQ6WNGB7RO96VRSS2GDYIH7HVKEM090TNV7VSBBQ0K7I6OHNSBDJKCV4E30NI4UUV978CCWKCXL49EL197ZZJSTFZHP05GGDPKXCMSHY91LR2VJYGPBD4K0W8U12Y1QHXAPB73UTZG662KSKO' where id=81; -update noar tt set v1='V6IOC4DMKHUVG4T0VWRVYAYWG7STCVEZEPZWMTE0HIFTR7YBGR8BUY4E8ZSPYVVACFN9MSZZ8LN5Q5FRG8KSNVH8Z32P9SCJSUUHKCZPYC1DPC0ERIZDXOL2NWR1VOLBY688G9I6NI71BQHEGYENHP2F3C0W3C24GUYF6UE26TF64I9KY6HQ0UYBCD9JUTV934RJ13CEEIMUANYVDKKWKO353XW8U3F6ZJCBHOCZXBMH98KNKBZC8R41FOACHC2OG' where id=81; -update noar ti set v1='V6IOC4DMKHUVG4T0VWRVYAYWG7STCVEZEPZWMTE0HIFTR7YBGR8BUY4E8ZSPYVVACFN9MSZZ8LN5Q5FRG8KSNVH8Z32P9SCJSUUHKCZPYC1DPC0ERIZDXOL2NWR1VOLBY688G9I6NI71BQHEGYENHP2F3C0W3C24GUYF6UE26TF64I9KY6HQ0UYBCD9JUTV934RJ13CEEIMUANYVDKKWKO353XW8U3F6ZJCBHOCZXBMH98KNKBZC8R41FOACHC2OG' where id=81; -update noar tt set v2='YNK9KKE2ATAVT3RSUJ5QXUGS0GEAF1SITNX07D5LO24E5O2XY3FIJ0FVHVRA9U7WLF2Z8JZ6FWRX94G8SLMD3XB87YGCD1YXBWJN8R6Y8M4HODECUZG33JHLKANPH0ZY4AZSHL8VNG7R4XDJGIX6ZECZDWJ7XB1UPLTV1NJUCIWY78SLBQLKF9TDJZVJ2KQACAGYLKN3PX0FYV8VRKBRL2SU7TXOHRAY6BDZUQ492KETRCET7VCEUM1YU5B630TLQ' where id=81; -update noar ti set v2='YNK9KKE2ATAVT3RSUJ5QXUGS0GEAF1SITNX07D5LO24E5O2XY3FIJ0FVHVRA9U7WLF2Z8JZ6FWRX94G8SLMD3XB87YGCD1YXBWJN8R6Y8M4HODECUZG33JHLKANPH0ZY4AZSHL8VNG7R4XDJGIX6ZECZDWJ7XB1UPLTV1NJUCIWY78SLBQLKF9TDJZVJ2KQACAGYLKN3PX0FYV8VRKBRL2SU7TXOHRAY6BDZUQ492KETRCET7VCEUM1YU5B630TLQ' where id=81; -update noar tt set v3='9NHLMYS4OLQ6BJF5YP5O2CANJ8NBUVY3ZA3JJ95EK08YB4DWWS0ATU7E9XWQFF6P9RL6K10ZNYYIU8UEE5ULOX7D5Y6XXYHZU6UFE5BJEZMMBTBIB7VJ8A3YRM4IE8BX7C90M4ZX5S8148M8277P68FDZKW8YLUOE9SN5AJORM655P99TYHD8E7N7VMZKNGCCNX3K6S0G7ZH1RMK2ZMY8JCDUWV5N0UGXWAHWCL1X78H9OC41LU0GT5EI4IMEUMG1' where id=81; -update noar ti set v3='9NHLMYS4OLQ6BJF5YP5O2CANJ8NBUVY3ZA3JJ95EK08YB4DWWS0ATU7E9XWQFF6P9RL6K10ZNYYIU8UEE5ULOX7D5Y6XXYHZU6UFE5BJEZMMBTBIB7VJ8A3YRM4IE8BX7C90M4ZX5S8148M8277P68FDZKW8YLUOE9SN5AJORM655P99TYHD8E7N7VMZKNGCCNX3K6S0G7ZH1RMK2ZMY8JCDUWV5N0UGXWAHWCL1X78H9OC41LU0GT5EI4IMEUMG1' where id=81; -update noar tt set v0='DOFCX4P9HYBM8C1ZX6D1AS61K97GR9JFIU2OVM8NH2LKE9ZTZ19RP8KN9I6LYBV8H6KWXETTROSGU32JY0LUC7MOF1N7FWDZF6IIUNABG33LSB8G40OMNMUI9O9QW6A957TFVICO1ZU07HKCSX1N3052GRMTDOB6KZHUVNKKTOQL4V6TC9RFK87HJP64L7SRRBMDHABRI75KAI7CC874N5X8R343ZKQURXTJ30ISRHG9GP9KEHLV7XOT1YHPSUBUP' where id=82; -update noar ti set v0='DOFCX4P9HYBM8C1ZX6D1AS61K97GR9JFIU2OVM8NH2LKE9ZTZ19RP8KN9I6LYBV8H6KWXETTROSGU32JY0LUC7MOF1N7FWDZF6IIUNABG33LSB8G40OMNMUI9O9QW6A957TFVICO1ZU07HKCSX1N3052GRMTDOB6KZHUVNKKTOQL4V6TC9RFK87HJP64L7SRRBMDHABRI75KAI7CC874N5X8R343ZKQURXTJ30ISRHG9GP9KEHLV7XOT1YHPSUBUP' where id=82; -update noar tt set v1='P951KZJ7IBMVZ5FB6QOSCN1PJO04B2515L6CHATG9DBDXL97UIY6S8K9JVAN3JFZG8FC1XNDNSR8KDGWY8XOFIY0RI5Y7MI8XVHUXWGT33I0X2PWPAFG9XXZXC1YMHMH75Y9SN8C7NOED28NDG95JGZDRUSWER42KOVCXBXMIR1586CXTRUUR5AMTB6YYXY8876VZ4TSZPILMZHKBYAMC8AJPVG12FYKTBM7VTTNLH5ITX4B5F55YQHHR3D797DU0' where id=82; -update noar ti set v1='P951KZJ7IBMVZ5FB6QOSCN1PJO04B2515L6CHATG9DBDXL97UIY6S8K9JVAN3JFZG8FC1XNDNSR8KDGWY8XOFIY0RI5Y7MI8XVHUXWGT33I0X2PWPAFG9XXZXC1YMHMH75Y9SN8C7NOED28NDG95JGZDRUSWER42KOVCXBXMIR1586CXTRUUR5AMTB6YYXY8876VZ4TSZPILMZHKBYAMC8AJPVG12FYKTBM7VTTNLH5ITX4B5F55YQHHR3D797DU0' where id=82; -update noar tt set v2='JUZG3XE2ETQ2HU2T1T20X3TB7O2H2SL4375I810IQ4DBZHNNP8AK7H5970SWXTNK2PRBZF3PRV1KT8771G7QST9F29PDK3RK6C6NGV0WKW3FBT6D9DGKNPZWJ5GCZFHJSRV0X4VOIKVS8A40D8BWZN4SPDE32VFBCJ052NJ4TZMF9SDNL0SGNX8MUPIBCLTM4UUMI7XZ2QTPYN10TLI8OJHKE0XUU3J2X6WD0ZMW5TPWJQG41OZMWNDCOFQ7EYPXG' where id=82; -update noar ti set v2='JUZG3XE2ETQ2HU2T1T20X3TB7O2H2SL4375I810IQ4DBZHNNP8AK7H5970SWXTNK2PRBZF3PRV1KT8771G7QST9F29PDK3RK6C6NGV0WKW3FBT6D9DGKNPZWJ5GCZFHJSRV0X4VOIKVS8A40D8BWZN4SPDE32VFBCJ052NJ4TZMF9SDNL0SGNX8MUPIBCLTM4UUMI7XZ2QTPYN10TLI8OJHKE0XUU3J2X6WD0ZMW5TPWJQG41OZMWNDCOFQ7EYPXG' where id=82; -update noar tt set v3='YP41PXNDKYD7BZMXXC6ATY92DIBXGKOES918KQMD2P44FFMWJVYIZAD00SWHN2SRF160YOA6HBB1HNIOC8ZD4VFRDJA4E4WQS0P49N8MGJI73BGZVR2Q8EG8SVXGVY49SCL40E9LE7BN7BT0NDIMFINT63SKSU84QAQOLX3UKZIYTLO8KC1YE1O3TO8277J92DLGVP8P7AMQ6O64PYGIIDVLW39YZX0YPIQNR88561W2FKW8PL7HRDQOLGOKUSM6S' where id=82; -update noar ti set v3='YP41PXNDKYD7BZMXXC6ATY92DIBXGKOES918KQMD2P44FFMWJVYIZAD00SWHN2SRF160YOA6HBB1HNIOC8ZD4VFRDJA4E4WQS0P49N8MGJI73BGZVR2Q8EG8SVXGVY49SCL40E9LE7BN7BT0NDIMFINT63SKSU84QAQOLX3UKZIYTLO8KC1YE1O3TO8277J92DLGVP8P7AMQ6O64PYGIIDVLW39YZX0YPIQNR88561W2FKW8PL7HRDQOLGOKUSM6S' where id=82; -update noar tt set v0='0FCLZOQDMCW8E1R4GHV75SWZRAFRXSD2RG8BDUOOLK6AXBIJP6SBYL6D9L6AK9R646ZVD6Q4NWQR2VO1L7BT6WU9WIRBYMOIJ53SN4BZV0Y3YDT7XESFLFBJQ4K262P0XMJMYBSEWQEMGJEOJS9Q0YO31STLYJGYABDGDTLP5TCO87XKHGLOVEPB1YW4CEVYC7TJ4XR23TK0ABQB3R2QXPDN9THBV1ZM2X7SG4KM5H1L1SS25KM5D8OTIL3BH0GKT' where id=83; -update noar ti set v0='0FCLZOQDMCW8E1R4GHV75SWZRAFRXSD2RG8BDUOOLK6AXBIJP6SBYL6D9L6AK9R646ZVD6Q4NWQR2VO1L7BT6WU9WIRBYMOIJ53SN4BZV0Y3YDT7XESFLFBJQ4K262P0XMJMYBSEWQEMGJEOJS9Q0YO31STLYJGYABDGDTLP5TCO87XKHGLOVEPB1YW4CEVYC7TJ4XR23TK0ABQB3R2QXPDN9THBV1ZM2X7SG4KM5H1L1SS25KM5D8OTIL3BH0GKT' where id=83; -update noar tt set v1='6IFMEMMDPF4GHEWAN2USB2WH4XHP17EXAQFQ63ETCBA7TSZZ0H1WHD4J53W7WMZXXHGGJVKCWACCLOXM380GI8IE9T60MF7T5FQVWYYU22WU9UFZOB4OBIRC74LMIOSOM8FRTKTWTOA2OKPPEV3534SGVZT58A5W1KIXVFP0SLQRGZXLB8XA8F33EXQ04R6W4ZZH14PKQ7PDEOXBGE8CIVSU1U3BZ56Q07UDF0YYKE9Z4KJHH7451XC1WYS06B82I' where id=83; -update noar ti set v1='6IFMEMMDPF4GHEWAN2USB2WH4XHP17EXAQFQ63ETCBA7TSZZ0H1WHD4J53W7WMZXXHGGJVKCWACCLOXM380GI8IE9T60MF7T5FQVWYYU22WU9UFZOB4OBIRC74LMIOSOM8FRTKTWTOA2OKPPEV3534SGVZT58A5W1KIXVFP0SLQRGZXLB8XA8F33EXQ04R6W4ZZH14PKQ7PDEOXBGE8CIVSU1U3BZ56Q07UDF0YYKE9Z4KJHH7451XC1WYS06B82I' where id=83; -update noar tt set v2='MKRVT6JAIFQOWYG4D7L4M36HDUP5438X4HPFGCRTPCIMMXIP4VMFDVWL8NV4LCMZCD2NG09RM0U63UXBSHGY73MO142C4X0O499TQ9TSXEMDYVI1UN4F9QX787NROBJIH9KR0A2IJVOODSZD5Q3137O48N4TUUFWCH5W5YUJPNSZJ282GQF094F979CSQ72TCQOJ05JED1Q6WIGFTBPOML7MEJKII9VYJLMU3NXC5C9GODU4WYNGEQ1S0JN5R0G9H' where id=83; -update noar ti set v2='MKRVT6JAIFQOWYG4D7L4M36HDUP5438X4HPFGCRTPCIMMXIP4VMFDVWL8NV4LCMZCD2NG09RM0U63UXBSHGY73MO142C4X0O499TQ9TSXEMDYVI1UN4F9QX787NROBJIH9KR0A2IJVOODSZD5Q3137O48N4TUUFWCH5W5YUJPNSZJ282GQF094F979CSQ72TCQOJ05JED1Q6WIGFTBPOML7MEJKII9VYJLMU3NXC5C9GODU4WYNGEQ1S0JN5R0G9H' where id=83; -update noar tt set v3='6M2KK5N3FS7VS20V3O2P68RZJOU1DQ3KERUSM2ZXHWAHA03JAZGND8X1ETQMVSIHPW8CVEJBXEW69NCTS74P9872EBRDBMJ2WC1EZ6N0V90XCGZU7UAEXYHRN447P03IYAOC14KLHMKLW7HHUQOWWQ3FX34DR9PWIJD0KH135CXS9ZPYDYACJHD0NHM07JDU3AOJWQ6C1S4GQEM86M6BNIAP2LJEM8OSHVDJB2PEWB7BHTSJFBEFOP3OIDG8L4J4C' where id=83; -update noar ti set v3='6M2KK5N3FS7VS20V3O2P68RZJOU1DQ3KERUSM2ZXHWAHA03JAZGND8X1ETQMVSIHPW8CVEJBXEW69NCTS74P9872EBRDBMJ2WC1EZ6N0V90XCGZU7UAEXYHRN447P03IYAOC14KLHMKLW7HHUQOWWQ3FX34DR9PWIJD0KH135CXS9ZPYDYACJHD0NHM07JDU3AOJWQ6C1S4GQEM86M6BNIAP2LJEM8OSHVDJB2PEWB7BHTSJFBEFOP3OIDG8L4J4C' where id=83; -update noar tt set v0='B25EHGXYV5JOK9HJOHC1W0N00KGR7WXAL3LOS8XP26N6GPDH0J66NF1MFIPTVXB8AMQR92NO7JCU6HM5PIQUMLEKQKOUNTIDI7ILAHUBNDZNA20JX99R5FGQNVMAOBZ7DFMD7UA8OBQ81VXZA1F49M50KURP6WZPWW6C9Q15E2SJFPSM2TSSKTNJKHJJLKI84NDGSITSR4YCKPPPPNGPLZRUPSAIBRD2USLOLGS7L8X9TS35TQP5368KVXF5T4VTL' where id=84; -update noar ti set v0='B25EHGXYV5JOK9HJOHC1W0N00KGR7WXAL3LOS8XP26N6GPDH0J66NF1MFIPTVXB8AMQR92NO7JCU6HM5PIQUMLEKQKOUNTIDI7ILAHUBNDZNA20JX99R5FGQNVMAOBZ7DFMD7UA8OBQ81VXZA1F49M50KURP6WZPWW6C9Q15E2SJFPSM2TSSKTNJKHJJLKI84NDGSITSR4YCKPPPPNGPLZRUPSAIBRD2USLOLGS7L8X9TS35TQP5368KVXF5T4VTL' where id=84; -update noar tt set v1='TWJGKDFNMYNGMY7H75PIGUTMCPGM4CZMVPTKBFYTZ3B11NUCJ3TSZ1ZONHZ4V561J4SIOWAHIQZY8HRBVIMXXYVQMMF32Q1NIPC0V7DDUJYY7JZSLQFVQLPDBSDH4VT08XOXWZE6OV55ZFK2BMP63G8N2DMHZ6OHTLETFQYVED2UNIZ6E2MP1N4NR439AP6QTWF4PFZDFBIST93JIZRXC3RYF44VPGPKPZTY3DT115M8N9NVCW1FPUJE1WI59IY4O' where id=84; -update noar ti set v1='TWJGKDFNMYNGMY7H75PIGUTMCPGM4CZMVPTKBFYTZ3B11NUCJ3TSZ1ZONHZ4V561J4SIOWAHIQZY8HRBVIMXXYVQMMF32Q1NIPC0V7DDUJYY7JZSLQFVQLPDBSDH4VT08XOXWZE6OV55ZFK2BMP63G8N2DMHZ6OHTLETFQYVED2UNIZ6E2MP1N4NR439AP6QTWF4PFZDFBIST93JIZRXC3RYF44VPGPKPZTY3DT115M8N9NVCW1FPUJE1WI59IY4O' where id=84; -update noar tt set v2='SJOWZC3K6H34AAX7NEJPNQAINLA16GL0XPUGWWXEU6W35MV4VMLG5I5XY98ZO8KORGXMSP2XAZLAY8DF12D93TZQCZROGC2FGH6CXA7KTJ69HHW4P4MT43IY8H5U73Z0JOTK612SPYERDYXZ74BDLESGGRNIY1XTE220RMIDJ6TGBTYSFC263J4BE0GFUKNTOYBE1A78NPECPFX9LYSKCO2KPJ276992T6HVM3P7UQ8VIA8A3DI10RR4NB4LOUKYJ' where id=84; -update noar ti set v2='SJOWZC3K6H34AAX7NEJPNQAINLA16GL0XPUGWWXEU6W35MV4VMLG5I5XY98ZO8KORGXMSP2XAZLAY8DF12D93TZQCZROGC2FGH6CXA7KTJ69HHW4P4MT43IY8H5U73Z0JOTK612SPYERDYXZ74BDLESGGRNIY1XTE220RMIDJ6TGBTYSFC263J4BE0GFUKNTOYBE1A78NPECPFX9LYSKCO2KPJ276992T6HVM3P7UQ8VIA8A3DI10RR4NB4LOUKYJ' where id=84; -update noar tt set v3='SOCL23PHZJK56QAB7Z6395PU6EP6M6AKKPJQUCO9LP0IV0XH6CEDV8BXLZ38FBHVYIMBDLR0WLIGSJHAH3OTYWEMHRV64X5NHAH9EZ0J5MIUVK8T1BDBYU94LX0AAF3UFBNV0IP9WIT8991OD3ZBUTBQPI27GMOFUGS1QL59N5MKI0ONF7ZEAYO5T0ILEYLVPX1U7I2GYF1JEED33HQCRQ9YPJUWHWP9NGLTBF3FFKR8RZD64DYL4R0M52GWZQOVY' where id=84; -update noar ti set v3='SOCL23PHZJK56QAB7Z6395PU6EP6M6AKKPJQUCO9LP0IV0XH6CEDV8BXLZ38FBHVYIMBDLR0WLIGSJHAH3OTYWEMHRV64X5NHAH9EZ0J5MIUVK8T1BDBYU94LX0AAF3UFBNV0IP9WIT8991OD3ZBUTBQPI27GMOFUGS1QL59N5MKI0ONF7ZEAYO5T0ILEYLVPX1U7I2GYF1JEED33HQCRQ9YPJUWHWP9NGLTBF3FFKR8RZD64DYL4R0M52GWZQOVY' where id=84; -update noar tt set v0='P28JOIN7NYDCQP380JPX31M167CFI19Y9QQNA7LEDB4OCVDS93H6QINC4MPPE6MMJ7Y4P1KV3VSYU496XDD6D6TZZM2S216R7A2VUES2QH9GM3861AN1Q2J9FBQF9LVV81GVHT7QCRC3G8FP6L0OQJQSLB6H434MHEYW56NJ6H8YRUGKIQ0D9EBHM0K29PC6RG8JMMRW3C95DYUURIXNYYM0LAARQ2GTXUWNFH3S2LNX1ST0ZUU77RR3OSMZBIPJC' where id=85; -update noar ti set v0='P28JOIN7NYDCQP380JPX31M167CFI19Y9QQNA7LEDB4OCVDS93H6QINC4MPPE6MMJ7Y4P1KV3VSYU496XDD6D6TZZM2S216R7A2VUES2QH9GM3861AN1Q2J9FBQF9LVV81GVHT7QCRC3G8FP6L0OQJQSLB6H434MHEYW56NJ6H8YRUGKIQ0D9EBHM0K29PC6RG8JMMRW3C95DYUURIXNYYM0LAARQ2GTXUWNFH3S2LNX1ST0ZUU77RR3OSMZBIPJC' where id=85; -update noar tt set v1='BOWLIV9HON29C29AWYSNPSN5YW8RZCDTV2NWTX9BQNHOL71SL6W2FI12LUYAGLIIYAIQ53UFMMB8ZL8AM88OGWHAFCWKM1CAXMB6CMJ33U3YOVKQKR45D356GN3TLOTJJQIR5T50BEQQVCEQ0WQKA18ZWCWQWW6M04MSTY85KJOO46LS891KU89TYB4SDVDNJJNR83LS7EPBYAI3WLFFBVOIXN7SUPEJMB4C96XTH9VZ20MOFE50EGPCPJTID024D' where id=85; -update noar ti set v1='BOWLIV9HON29C29AWYSNPSN5YW8RZCDTV2NWTX9BQNHOL71SL6W2FI12LUYAGLIIYAIQ53UFMMB8ZL8AM88OGWHAFCWKM1CAXMB6CMJ33U3YOVKQKR45D356GN3TLOTJJQIR5T50BEQQVCEQ0WQKA18ZWCWQWW6M04MSTY85KJOO46LS891KU89TYB4SDVDNJJNR83LS7EPBYAI3WLFFBVOIXN7SUPEJMB4C96XTH9VZ20MOFE50EGPCPJTID024D' where id=85; -update noar tt set v2='SOUR5AWU95987LA1BKJSKXN6LQCGBTRMTTDTWEFAGSE9SPIUJHTYMX83MVKE4GR61YQ2VZ9FCF7U5Q8Y4Q7363WBRAHGMSUWNVIJMXD5LGNWHKQSWUC37VK9B4FGTCDLQ000NOZLVE6D5K1OR31K271BLNDSPV2MINO0KGJUYG7X7OYJI3MCO7OPMUYUW4BQ609BTX86LNPBWWPX9L4P2PB2HINDX4EVNH4Y6DW5ADFZJ265SUNFL6LHPNS2J7852' where id=85; -update noar ti set v2='SOUR5AWU95987LA1BKJSKXN6LQCGBTRMTTDTWEFAGSE9SPIUJHTYMX83MVKE4GR61YQ2VZ9FCF7U5Q8Y4Q7363WBRAHGMSUWNVIJMXD5LGNWHKQSWUC37VK9B4FGTCDLQ000NOZLVE6D5K1OR31K271BLNDSPV2MINO0KGJUYG7X7OYJI3MCO7OPMUYUW4BQ609BTX86LNPBWWPX9L4P2PB2HINDX4EVNH4Y6DW5ADFZJ265SUNFL6LHPNS2J7852' where id=85; -update noar tt set v3='OFT95IE0A713JR984C12GPELKFJXHFK4C9FH293BU8BTCVTP2USR6Q1XIVV2U5CIBVYPK6CYMLCFZKWGSO6QTL7P6XERZK5YLHQSLERKR488COK39IF97LC5V1TAEJB30EUM2S7UIP4UNZUC0C9FT5SE6JJZ881CSB7I654KEBIVM6JDI833Z6MQ62WDQIWJU6WSG9SNSAYN0SRCPDAE4TFWBXTV1P0T1CDH94FRUUYYG6PTMSMNXP2LIQPNHI6AX' where id=85; -update noar ti set v3='OFT95IE0A713JR984C12GPELKFJXHFK4C9FH293BU8BTCVTP2USR6Q1XIVV2U5CIBVYPK6CYMLCFZKWGSO6QTL7P6XERZK5YLHQSLERKR488COK39IF97LC5V1TAEJB30EUM2S7UIP4UNZUC0C9FT5SE6JJZ881CSB7I654KEBIVM6JDI833Z6MQ62WDQIWJU6WSG9SNSAYN0SRCPDAE4TFWBXTV1P0T1CDH94FRUUYYG6PTMSMNXP2LIQPNHI6AX' where id=85; -update noar tt set v0='7UELP5C694PXYWVGALCEANW32QF7VTKTW6JVU45W8Q84U56ZDT5ZXVA0SXC451E1YDVRHZ6G1MYAX80KDFB9KM6PYEC4IZ6AH0W4HQZE9AMUP84OFRY7BISUIUJX4NUFULGOQMBRRT3M2JEK5J166BGAVF0CH9EF29QLQGO0TD1Z57JG9R4SAA9X5O5A75RQPO0TLWP3RSFP6WMWW7T0PNF5FW54N1DUFMHOPZ8C7VBA1W7XEN9SRHZX01IPO0SIY' where id=86; -update noar ti set v0='7UELP5C694PXYWVGALCEANW32QF7VTKTW6JVU45W8Q84U56ZDT5ZXVA0SXC451E1YDVRHZ6G1MYAX80KDFB9KM6PYEC4IZ6AH0W4HQZE9AMUP84OFRY7BISUIUJX4NUFULGOQMBRRT3M2JEK5J166BGAVF0CH9EF29QLQGO0TD1Z57JG9R4SAA9X5O5A75RQPO0TLWP3RSFP6WMWW7T0PNF5FW54N1DUFMHOPZ8C7VBA1W7XEN9SRHZX01IPO0SIY' where id=86; -update noar tt set v1='28TC3K6P40MD5AU2WQ6SVT0RRJB3OI687V90NGA2C24IGDWMV8FQRXFSROJT88HTX2DD4147FZMXT4UQIDLX6SNZOWGTWYEXY1X4DLI98UER1L5VYEPPPTBD5V5W31VER1G11JR2OZEKIWB9KC36ZE2HB64NF7ADH4W5FXQ0USR0N2O20P7M09V6EMQF9UTBEE30I8Y5E1DA56BZGWFI7M6B0V95K8C4KZJXAQ850B364JTUQ43ZGLYHEDWTO6D5A' where id=86; -update noar ti set v1='28TC3K6P40MD5AU2WQ6SVT0RRJB3OI687V90NGA2C24IGDWMV8FQRXFSROJT88HTX2DD4147FZMXT4UQIDLX6SNZOWGTWYEXY1X4DLI98UER1L5VYEPPPTBD5V5W31VER1G11JR2OZEKIWB9KC36ZE2HB64NF7ADH4W5FXQ0USR0N2O20P7M09V6EMQF9UTBEE30I8Y5E1DA56BZGWFI7M6B0V95K8C4KZJXAQ850B364JTUQ43ZGLYHEDWTO6D5A' where id=86; -update noar tt set v2='APW7X4NNHGR8E8JKFQEXT6MV6TFPTKBY5BQ4ZAN5TWLV5JV2Q66U00ICNQHCBQY2SQ0LMS7NV4GWKGH5QNESTH2V9JNVCM9D2Z2J5QC2O39S8ME660EJ6E1A1GX04MSTX4N3CWK5L3XXOFOW236D1MODSB9UEESLROZO2XXC1W9WEZ0DVUQW3HV8OO7EHCKPHSUY9OS61US3AXATC5K163F4WRNJ7QOI7FTGXGI8MLUH0ZHRN1KR1OTEWWBB6B43M' where id=86; -update noar ti set v2='APW7X4NNHGR8E8JKFQEXT6MV6TFPTKBY5BQ4ZAN5TWLV5JV2Q66U00ICNQHCBQY2SQ0LMS7NV4GWKGH5QNESTH2V9JNVCM9D2Z2J5QC2O39S8ME660EJ6E1A1GX04MSTX4N3CWK5L3XXOFOW236D1MODSB9UEESLROZO2XXC1W9WEZ0DVUQW3HV8OO7EHCKPHSUY9OS61US3AXATC5K163F4WRNJ7QOI7FTGXGI8MLUH0ZHRN1KR1OTEWWBB6B43M' where id=86; -update noar tt set v3='TUUK19F8KL53VN9J1OPP65CU9ISFI6910WXSOY1Q1R9TD8WKS2NYADG92QHDP3H30DMWN316A0E3YV3FVUJ7FHWGCQX5KBMFHX2M9XBF2PM68E90AXQCYJX8ISMVQIPGV1WNKJX9VQ8SD0QLUIMUQ8DKHC4W4H33FTBLCAUBHIHAJSUM4HJF31VT7KVHD46II6FE641H9IMDATO61QIZZ3193Y8NI74NBI8PU84B6WBU0M474BLVN37S3SVDXAK2K' where id=86; -update noar ti set v3='TUUK19F8KL53VN9J1OPP65CU9ISFI6910WXSOY1Q1R9TD8WKS2NYADG92QHDP3H30DMWN316A0E3YV3FVUJ7FHWGCQX5KBMFHX2M9XBF2PM68E90AXQCYJX8ISMVQIPGV1WNKJX9VQ8SD0QLUIMUQ8DKHC4W4H33FTBLCAUBHIHAJSUM4HJF31VT7KVHD46II6FE641H9IMDATO61QIZZ3193Y8NI74NBI8PU84B6WBU0M474BLVN37S3SVDXAK2K' where id=86; -update noar tt set v0='W924NAW8RD4RSFVX8J7UOLLJTBENRK0M2W3QCMSGD27WIYXHFUAR98KP309MQVTM89F5SDALA915L5QN1QPV8N18G21D64JL1A0ESHTFC2A3AY2UZ86JXTJFDRILIK55KZMZHUCFQUHUSSO8FKMKN2HBXT6YPKYNZ2Y3VBGN8ON490MHVR8PF2OPSNXWLN6MNAWDNE8TWXIY3S38FRJO53V5WESJX2APQBQS2PVYSZ1AA2RYF49TU6V3IMV7CMP7K' where id=87; -update noar ti set v0='W924NAW8RD4RSFVX8J7UOLLJTBENRK0M2W3QCMSGD27WIYXHFUAR98KP309MQVTM89F5SDALA915L5QN1QPV8N18G21D64JL1A0ESHTFC2A3AY2UZ86JXTJFDRILIK55KZMZHUCFQUHUSSO8FKMKN2HBXT6YPKYNZ2Y3VBGN8ON490MHVR8PF2OPSNXWLN6MNAWDNE8TWXIY3S38FRJO53V5WESJX2APQBQS2PVYSZ1AA2RYF49TU6V3IMV7CMP7K' where id=87; -update noar tt set v1='1WVKVB3U3UUIH5H5PQC1QY6AMRILRTZMDDH1I2DA6TTPEFLY0TRLWJ4TPO7LWIMJZPPO3NF0TV8FAK8C0EQFUYS33H9VQJ5AWOO8RQ3J9VG0ZKOTDC2Y0QBKFVB673WGK3KNLDAIJ0C3X4B39ZV6N8ZJVL4QNJ9QKPAE1DLHK51ADHMVP9Z5BV3GZ7TDBQIRJ4IXF5RAUL5G0XSMO2GNRFRH8GB9G6EBA3SJALT4H888Q271V7F80BH8TC3B8QTTU' where id=87; -update noar ti set v1='1WVKVB3U3UUIH5H5PQC1QY6AMRILRTZMDDH1I2DA6TTPEFLY0TRLWJ4TPO7LWIMJZPPO3NF0TV8FAK8C0EQFUYS33H9VQJ5AWOO8RQ3J9VG0ZKOTDC2Y0QBKFVB673WGK3KNLDAIJ0C3X4B39ZV6N8ZJVL4QNJ9QKPAE1DLHK51ADHMVP9Z5BV3GZ7TDBQIRJ4IXF5RAUL5G0XSMO2GNRFRH8GB9G6EBA3SJALT4H888Q271V7F80BH8TC3B8QTTU' where id=87; -update noar tt set v2='X8CTNJVJXUM3AEPJEPAVUIZ69FDL6YGCIUEYOY3E2L8NAWP6OOXJWHWNM5E0DVD0L8KEOS2F5FOHT4C42ZQ8JJBAC1V4C8H0GNVD81XU0A9LYBWLK948QQLVLJ89XYQ5RNLSWVHJ3460TKYUTWEHF9AA9OAZ8WTBCSYNQEX8PO1AGWXLLPKPVI4DIO2VTQNDT5DU158Q2JXM5CBEP7RGHLPA3JSU77AN5VMIJ655RZWVTQ10GWH5UDGB2FX7KCS06' where id=87; -update noar ti set v2='X8CTNJVJXUM3AEPJEPAVUIZ69FDL6YGCIUEYOY3E2L8NAWP6OOXJWHWNM5E0DVD0L8KEOS2F5FOHT4C42ZQ8JJBAC1V4C8H0GNVD81XU0A9LYBWLK948QQLVLJ89XYQ5RNLSWVHJ3460TKYUTWEHF9AA9OAZ8WTBCSYNQEX8PO1AGWXLLPKPVI4DIO2VTQNDT5DU158Q2JXM5CBEP7RGHLPA3JSU77AN5VMIJ655RZWVTQ10GWH5UDGB2FX7KCS06' where id=87; -update noar tt set v3='20WIS5WIPC05JWKY4TIGBXUBJRX6GT8HTOQSAHCKY6PHOQEF4230DZWMTJ342ACJRBXLKCHNTT0ZSXVPEGS33RB8ISHYQKZKAQ1TM4U9448OZ2VML6HH9Q105H1722V2OU80KWAUHNUYZXS5XUSJXKX4P56ALCJ35A9R58TYXFKIMNGF76MKIA5PRKRNN8PG7E3RLST2ROQWPS2KDU21CPDNC0BW4566Z5TXE26W7W2K6HHW8K8B63GZG3FCQTDT8' where id=87; -update noar ti set v3='20WIS5WIPC05JWKY4TIGBXUBJRX6GT8HTOQSAHCKY6PHOQEF4230DZWMTJ342ACJRBXLKCHNTT0ZSXVPEGS33RB8ISHYQKZKAQ1TM4U9448OZ2VML6HH9Q105H1722V2OU80KWAUHNUYZXS5XUSJXKX4P56ALCJ35A9R58TYXFKIMNGF76MKIA5PRKRNN8PG7E3RLST2ROQWPS2KDU21CPDNC0BW4566Z5TXE26W7W2K6HHW8K8B63GZG3FCQTDT8' where id=87; -update noar tt set v0='U97O0SL9JV96D6A2D39Z50YV8SYRT1B4SZB6UTU6QDH3BFUUQJJAWG30Q58GIGK7COKJEDE0K7ILLCYFI7I0T1KHNGFVDR2IXN8HGVAPZ4WGQCZZPVLFNYHSG5MRCUWTVX2M5C12ZWJ7VBDX4X0V4J7Z3M0WFKPA205P0H2VKGDZJT7ZJYH5YNUVGITKUCZFFWCTC4HNT7XWOHM40BHLJ2G35JBX53VBI39IY2G9AAR2BNGS5A1U9HPCE2ATSULB4' where id=88; -update noar ti set v0='U97O0SL9JV96D6A2D39Z50YV8SYRT1B4SZB6UTU6QDH3BFUUQJJAWG30Q58GIGK7COKJEDE0K7ILLCYFI7I0T1KHNGFVDR2IXN8HGVAPZ4WGQCZZPVLFNYHSG5MRCUWTVX2M5C12ZWJ7VBDX4X0V4J7Z3M0WFKPA205P0H2VKGDZJT7ZJYH5YNUVGITKUCZFFWCTC4HNT7XWOHM40BHLJ2G35JBX53VBI39IY2G9AAR2BNGS5A1U9HPCE2ATSULB4' where id=88; -update noar tt set v1='WTSXJQ67WTTZ1DNKE9X15IDIVFJSYIQIQ4R9BHDCBJ2XBZBSGRNY9O73WU39ATPTMWHKMDCFQXNQ63FZR2SV1J4ASWXFYTVAV12K3U7RQZ6N1UGG2XFPWJ3VSLKZLRUXS9SS2P8247CQBGZGMCIY9LZIP2RGPNP4XRNXAEH8BST21MBC1CDEZ0MMTEX4PTKUGQOZCJ7JVLI3Y2BI7YVHW4NUDZC5UMMDHJV5EIY3A6SJEBL73J2YZDZA266C2S0JV' where id=88; -update noar ti set v1='WTSXJQ67WTTZ1DNKE9X15IDIVFJSYIQIQ4R9BHDCBJ2XBZBSGRNY9O73WU39ATPTMWHKMDCFQXNQ63FZR2SV1J4ASWXFYTVAV12K3U7RQZ6N1UGG2XFPWJ3VSLKZLRUXS9SS2P8247CQBGZGMCIY9LZIP2RGPNP4XRNXAEH8BST21MBC1CDEZ0MMTEX4PTKUGQOZCJ7JVLI3Y2BI7YVHW4NUDZC5UMMDHJV5EIY3A6SJEBL73J2YZDZA266C2S0JV' where id=88; -update noar tt set v2='Z953VOAWBDWIZH408RQYSSZ28SSTHEY58I2FRVJVGMO42KTAJJSL3UDHDGN42CLN3BTJ8GV0KUJCBWZE6XIPDPT2D33C0DHO4U7K8QL4Z1A6AEKTU7P0UU18AZXD9PTLCKRHY1WRIRZUI6W0QXV5G7X6RHMQERD25LVP0ZAD39CCBQI9HNFF7FDSBAGI3IS4UO9AS252GKSQU963IQ27JSA8WNU4VH9INY9722MS4HSNBX3VWGZ99VF84RMZ8SCXJ' where id=88; -update noar ti set v2='Z953VOAWBDWIZH408RQYSSZ28SSTHEY58I2FRVJVGMO42KTAJJSL3UDHDGN42CLN3BTJ8GV0KUJCBWZE6XIPDPT2D33C0DHO4U7K8QL4Z1A6AEKTU7P0UU18AZXD9PTLCKRHY1WRIRZUI6W0QXV5G7X6RHMQERD25LVP0ZAD39CCBQI9HNFF7FDSBAGI3IS4UO9AS252GKSQU963IQ27JSA8WNU4VH9INY9722MS4HSNBX3VWGZ99VF84RMZ8SCXJ' where id=88; -update noar tt set v3='76U1FZRVSCSO9TDC3VM4WUQD2KUGL275IE8GIOX5YROJLZT4YQC5LHSIA224H41HCIG5SSSX6BWWLZIWQJEFMVUTL7K41FLDYWB5QJI3EGOWX9GK1ZI9C0NS30WVLU3EO0EFMQN6VEB8BOJ29Q67QR02V9NLQBUTK8HPA0CVCQE84QQCVTM5OEB1A6KBZLXKYM8J6RNBDAE6K54Z1I6WN0PWMIQFSFM69AF7S4RAQ7P4F8L35N43CKKON42PBA19O' where id=88; -update noar ti set v3='76U1FZRVSCSO9TDC3VM4WUQD2KUGL275IE8GIOX5YROJLZT4YQC5LHSIA224H41HCIG5SSSX6BWWLZIWQJEFMVUTL7K41FLDYWB5QJI3EGOWX9GK1ZI9C0NS30WVLU3EO0EFMQN6VEB8BOJ29Q67QR02V9NLQBUTK8HPA0CVCQE84QQCVTM5OEB1A6KBZLXKYM8J6RNBDAE6K54Z1I6WN0PWMIQFSFM69AF7S4RAQ7P4F8L35N43CKKON42PBA19O' where id=88; -update noar tt set v0='VCG4HHIMNE2CPDDYNIFZXOPGDUKXTZXRDYLKSCYKGJUGLAOXSY0E4A5IK2FFU9SGNM9LCRXFYN2E78POZVRCFZW86GPF13GTSB143PFYAC6MYSV0T5TZ17PEIJPAL4L8XDAYQSI0UL3NNDAD33ZBVNI4CQ1BIQR5YPMDV1JKBAJKMDH50A7LP74UJ04FYS6SU3G7O1VP7BANSEQPP9NUL2TI98FAE82NTKLDB1IVLKPRMSW2UKW6ZKKZFIVSJD1JB' where id=89; -update noar ti set v0='VCG4HHIMNE2CPDDYNIFZXOPGDUKXTZXRDYLKSCYKGJUGLAOXSY0E4A5IK2FFU9SGNM9LCRXFYN2E78POZVRCFZW86GPF13GTSB143PFYAC6MYSV0T5TZ17PEIJPAL4L8XDAYQSI0UL3NNDAD33ZBVNI4CQ1BIQR5YPMDV1JKBAJKMDH50A7LP74UJ04FYS6SU3G7O1VP7BANSEQPP9NUL2TI98FAE82NTKLDB1IVLKPRMSW2UKW6ZKKZFIVSJD1JB' where id=89; -update noar tt set v1='WMRA7SFBWL5UHPKDOLUZKFAJZHL4OE4B9LR2FW274ELGV4V8DNWH5HR1EYULNJ02456Z2DIN14LLJ98HKEVCI515VTUJFC5FJCY0L3REYZD4J3D65R4CIW3652M4N2CB1EDC3FKLI4P51I1D82QFGB9L69VBJSBSXQKL2ZZAKQPWHR7LL4BD2TJ9LPN931MNRAJY0ZGGVM6URDMG1DFVMWPNOKD0TXMJ78Y4KWBRNVUVRIGXA2F9ZZK9SIJMBJI6N' where id=89; -update noar ti set v1='WMRA7SFBWL5UHPKDOLUZKFAJZHL4OE4B9LR2FW274ELGV4V8DNWH5HR1EYULNJ02456Z2DIN14LLJ98HKEVCI515VTUJFC5FJCY0L3REYZD4J3D65R4CIW3652M4N2CB1EDC3FKLI4P51I1D82QFGB9L69VBJSBSXQKL2ZZAKQPWHR7LL4BD2TJ9LPN931MNRAJY0ZGGVM6URDMG1DFVMWPNOKD0TXMJ78Y4KWBRNVUVRIGXA2F9ZZK9SIJMBJI6N' where id=89; -update noar tt set v2='FM64YFV19LCIGG7TPJKDDP32S4HYDTBNLWV8D3J52GB3TGW2GS7710F35S7UC6IA601R9JSHRXEYPPE7WHARTK4KCEWN3IZX7V0ET0X32VCQWTYW1B6U55A53IAERRAMBMQ53F2DKL1615OQMJ0MZRZP32XAUBPP021F29VYPMT070DTCSAZQVK3Z3FVAWNT38MDMJ5G77YSA0XXY1UGCZW80DEPSE7FB2CQ6RXB02QCB7JXVAP4MKVJEFATT5NKE' where id=89; -update noar ti set v2='FM64YFV19LCIGG7TPJKDDP32S4HYDTBNLWV8D3J52GB3TGW2GS7710F35S7UC6IA601R9JSHRXEYPPE7WHARTK4KCEWN3IZX7V0ET0X32VCQWTYW1B6U55A53IAERRAMBMQ53F2DKL1615OQMJ0MZRZP32XAUBPP021F29VYPMT070DTCSAZQVK3Z3FVAWNT38MDMJ5G77YSA0XXY1UGCZW80DEPSE7FB2CQ6RXB02QCB7JXVAP4MKVJEFATT5NKE' where id=89; -update noar tt set v3='NR44FZDD8CTQKCLZYS3KNY37Q8M0RTL0UOCA74W4NV5ELFTNW3PM2HYCVPNGWAINKBJJ45XTEWDGHM8UJEICLM2URD76FPSPIFE854OPKQ0X2HGVF500X44ZQ09X5X6RRDQVIE0CMCPHSQ0G6E44I71EPKB86D0OXGMMMVC0DY61NKI8Y3GBXAC9OTMWP08RB1G2L00FMDVIEIZ53CW1OI6E6UPSLGIX0K00LBE0B91JPO3B73DR94NBPJQXKIUZY' where id=89; -update noar ti set v3='NR44FZDD8CTQKCLZYS3KNY37Q8M0RTL0UOCA74W4NV5ELFTNW3PM2HYCVPNGWAINKBJJ45XTEWDGHM8UJEICLM2URD76FPSPIFE854OPKQ0X2HGVF500X44ZQ09X5X6RRDQVIE0CMCPHSQ0G6E44I71EPKB86D0OXGMMMVC0DY61NKI8Y3GBXAC9OTMWP08RB1G2L00FMDVIEIZ53CW1OI6E6UPSLGIX0K00LBE0B91JPO3B73DR94NBPJQXKIUZY' where id=89; -update noar tt set v0='9RA2VTN2QX9RUZT9O8MBOB7YJB6V2EWXH9BPCH2RNVPNQB6B27NLXRMRQ0U4Q71M5EJKYDLX2WGNFLUPEMX3YT3Q5ZCJROMDXARPDALZG741Q63MYR8BBUPJYHU1B97OE93AZE3HUCB5IU8C3TFROVN3LWA20DRYIJY7WY54YNDPF45B59U0OE9O59NDD325P7LJ3WRIS3L49F7QX7JCHUXNDGZ9PACGIBEDOPE0MQ9OETUQN4DDBZRPI5WRDE2HR' where id=90; -update noar ti set v0='9RA2VTN2QX9RUZT9O8MBOB7YJB6V2EWXH9BPCH2RNVPNQB6B27NLXRMRQ0U4Q71M5EJKYDLX2WGNFLUPEMX3YT3Q5ZCJROMDXARPDALZG741Q63MYR8BBUPJYHU1B97OE93AZE3HUCB5IU8C3TFROVN3LWA20DRYIJY7WY54YNDPF45B59U0OE9O59NDD325P7LJ3WRIS3L49F7QX7JCHUXNDGZ9PACGIBEDOPE0MQ9OETUQN4DDBZRPI5WRDE2HR' where id=90; -update noar tt set v1='H7MXPHCXU68PMAWFC6SU169CQBAWUWUJ1PQOW7W1LXBRHRQGFBWIQ8VC3M7CVLWLSYCSDXTU5VJF03POHY6IT984LBXN5IY33KT1LAVKSD16GZ40AX4IIPBY29LWJSW7OLKID9M6WHWHI2LYMQ4O2DAZJ41L8TNNY9VT3NRP6PBXCOZPF07L9B2VWM8ISOLYN9BA235DWQSZCKON67VC62GM2TD9T9B8U9DCB89CSCS4SR7F0QS3C4EDZ8IRPK3IG' where id=90; -update noar ti set v1='H7MXPHCXU68PMAWFC6SU169CQBAWUWUJ1PQOW7W1LXBRHRQGFBWIQ8VC3M7CVLWLSYCSDXTU5VJF03POHY6IT984LBXN5IY33KT1LAVKSD16GZ40AX4IIPBY29LWJSW7OLKID9M6WHWHI2LYMQ4O2DAZJ41L8TNNY9VT3NRP6PBXCOZPF07L9B2VWM8ISOLYN9BA235DWQSZCKON67VC62GM2TD9T9B8U9DCB89CSCS4SR7F0QS3C4EDZ8IRPK3IG' where id=90; -update noar tt set v2='BERHOT2VM8OBVA2MPC9HOZDS3I5KAXP2CZFF4AC4N8KF0UZEEH3GE756Y7W8C58U21MXFKUMZNYYS4I88JK8UVZ1KAPR495OUUMKLTYBXTG0WPIKALS09QC2AG5GI7L2GJK1YOPJRWMAQ6I3DUJZ78XRLRL0V8M46NLPAF6Q1SHIOJSALM5WKZ6O70ON8RNTNQAC0OD1GL901U1ZMJKWE7XMETT1J0JBGF0BH9JWVMZBYYAKRWNT5GU8MTRX672OB' where id=90; -update noar ti set v2='BERHOT2VM8OBVA2MPC9HOZDS3I5KAXP2CZFF4AC4N8KF0UZEEH3GE756Y7W8C58U21MXFKUMZNYYS4I88JK8UVZ1KAPR495OUUMKLTYBXTG0WPIKALS09QC2AG5GI7L2GJK1YOPJRWMAQ6I3DUJZ78XRLRL0V8M46NLPAF6Q1SHIOJSALM5WKZ6O70ON8RNTNQAC0OD1GL901U1ZMJKWE7XMETT1J0JBGF0BH9JWVMZBYYAKRWNT5GU8MTRX672OB' where id=90; -update noar tt set v3='DG0AZ96PWXZ5SVPKJS4BPMAH2EG1HZDDWDQ1ZEDE23289HXTJC8X1ZNYL6YFA7HVULYRQAIYI83B0KJL81ABAKFT4HIJVODY5I93IRMQ4UB5OJD5IUKK3KUZ0AE0WE6DR0DLQOR658LOE4JIJV5MQSME1TN4L0LGXBQP3BIDC51O5E8QO0A7O15Q6M6CH5422SZONJZ22IZULZ1FFMUN7WOGQO5YNSG45ELUXDDPS3PSV9JSXLIKMETZ49EX0ZX0V' where id=90; -update noar ti set v3='DG0AZ96PWXZ5SVPKJS4BPMAH2EG1HZDDWDQ1ZEDE23289HXTJC8X1ZNYL6YFA7HVULYRQAIYI83B0KJL81ABAKFT4HIJVODY5I93IRMQ4UB5OJD5IUKK3KUZ0AE0WE6DR0DLQOR658LOE4JIJV5MQSME1TN4L0LGXBQP3BIDC51O5E8QO0A7O15Q6M6CH5422SZONJZ22IZULZ1FFMUN7WOGQO5YNSG45ELUXDDPS3PSV9JSXLIKMETZ49EX0ZX0V' where id=90; -update noar tt set v0='BY5VWBEC5OEZECT5LR3XEWZOF0173U98NH3B12LMVHUE46I7IJI7XCT9N19Z15BUYNXL66F9SM3N9B8FBTEBMNGVOB407ZJ4G6L4MDCV9B9MQKH8VSRQKSAZ4WCKJSYHAS4YKWQEYK34SHN50OL3RNZVP8EV597JIZSFJ2SHMJHTL65S4AU7SJGZ9T72JGHK8S2R9M29NDJIC49NIDRWHMYYXFD124QCVB8W8HV8AU2Q3XRFNJWH7XJGJA1483Z5K' where id=91; -update noar ti set v0='BY5VWBEC5OEZECT5LR3XEWZOF0173U98NH3B12LMVHUE46I7IJI7XCT9N19Z15BUYNXL66F9SM3N9B8FBTEBMNGVOB407ZJ4G6L4MDCV9B9MQKH8VSRQKSAZ4WCKJSYHAS4YKWQEYK34SHN50OL3RNZVP8EV597JIZSFJ2SHMJHTL65S4AU7SJGZ9T72JGHK8S2R9M29NDJIC49NIDRWHMYYXFD124QCVB8W8HV8AU2Q3XRFNJWH7XJGJA1483Z5K' where id=91; -update noar tt set v1='XU9BJBHS59RVNU7W4MZDQKQLKV55OE39Z6AELRZDWS9E3T5TH7S68Y2PCDV9KS9LFJHMD9N1GQ2VRJCMQ6OHEYN16S9CSBHLYMWAINSZEWGE7KFBS8V2LNKJJSFGX0AI4XB4UKVJ4K863NPGUFLAG5EYUTI70VA6XZDNFWFLJ6FU24JT5Y7IUYKDFZIF03JWAD5B6T2EG5NP1W1L5QXF8AHL1MOWLVQVFPR1TRP97E1EIQUPNH5FZRRYH6A8IRX2A' where id=91; -update noar ti set v1='XU9BJBHS59RVNU7W4MZDQKQLKV55OE39Z6AELRZDWS9E3T5TH7S68Y2PCDV9KS9LFJHMD9N1GQ2VRJCMQ6OHEYN16S9CSBHLYMWAINSZEWGE7KFBS8V2LNKJJSFGX0AI4XB4UKVJ4K863NPGUFLAG5EYUTI70VA6XZDNFWFLJ6FU24JT5Y7IUYKDFZIF03JWAD5B6T2EG5NP1W1L5QXF8AHL1MOWLVQVFPR1TRP97E1EIQUPNH5FZRRYH6A8IRX2A' where id=91; -update noar tt set v2='Y5XLFYPAC8RVPEJ1B66GRC8KRTF5B8QLD2913Z4BUEFT37B5EMZC7YEQEXD6ZS521BEOOOIDPY769L9BNV4UDAW7TNK5XT9ZNA7N1JR80MQ4IYBXT09SLZFZAAMQAX6JQEF11TIP59VP9DJWAIQ11AF7WNU2PSK2YDAPPC597D2T495U0ZKDWMUHHWKP1CHV5FP9CBKCRDYOZ0MCA8KQQRJLWDFQGOJPIGCZK69R0QBNTMZZHRUTBOGXURB18ZD6Z' where id=91; -update noar ti set v2='Y5XLFYPAC8RVPEJ1B66GRC8KRTF5B8QLD2913Z4BUEFT37B5EMZC7YEQEXD6ZS521BEOOOIDPY769L9BNV4UDAW7TNK5XT9ZNA7N1JR80MQ4IYBXT09SLZFZAAMQAX6JQEF11TIP59VP9DJWAIQ11AF7WNU2PSK2YDAPPC597D2T495U0ZKDWMUHHWKP1CHV5FP9CBKCRDYOZ0MCA8KQQRJLWDFQGOJPIGCZK69R0QBNTMZZHRUTBOGXURB18ZD6Z' where id=91; -update noar tt set v3='OOSZLCXP95N5GMEUKD01RK0TISEK6HY51S9VQFW17ZGTGSM9RKCHTRLY0GLHNUYSYPZSF43BSFUPBLBAF6P5FI714BOQVU15WPB6ELULI8Z7HOWYW2RZ5LK6XTC7RKL8VUZNC13A63C7JKLOZ009VCLQY9QFU1SKLOSMX67SI97VO8YGQ9G36JZGAOK03N0MC8Z2RIR3NV3MNXP5HCDGHY7KFQDE87A7ZSYLH6S5FZH7QEEK725FTYYKBI7JP0T2S' where id=91; -update noar ti set v3='OOSZLCXP95N5GMEUKD01RK0TISEK6HY51S9VQFW17ZGTGSM9RKCHTRLY0GLHNUYSYPZSF43BSFUPBLBAF6P5FI714BOQVU15WPB6ELULI8Z7HOWYW2RZ5LK6XTC7RKL8VUZNC13A63C7JKLOZ009VCLQY9QFU1SKLOSMX67SI97VO8YGQ9G36JZGAOK03N0MC8Z2RIR3NV3MNXP5HCDGHY7KFQDE87A7ZSYLH6S5FZH7QEEK725FTYYKBI7JP0T2S' where id=91; -update noar tt set v0='SWPRMOJ2CCDN6IZKX7XKJ4R33MA06UVL4F2OEDUUS8W3WBWGZG5PHZZZY25FIUY99CG8T7GWGMJIGN4HOIT502VIAA5JNVXAU4VU1O0IL13A5IDGMO2KRVNNU0DI37QWBXB8SP35Q4921639LJMSJGK0TGGT8GF6MCUP87GCX1ZF2ASSQ5SJVQS9Q25EODTI7N38MOION3AC3XQFNJ9KSGJAA3XGM2REU3DR6YIRXUA3UY4ELKZS115XX1PW8K27Z' where id=92; -update noar ti set v0='SWPRMOJ2CCDN6IZKX7XKJ4R33MA06UVL4F2OEDUUS8W3WBWGZG5PHZZZY25FIUY99CG8T7GWGMJIGN4HOIT502VIAA5JNVXAU4VU1O0IL13A5IDGMO2KRVNNU0DI37QWBXB8SP35Q4921639LJMSJGK0TGGT8GF6MCUP87GCX1ZF2ASSQ5SJVQS9Q25EODTI7N38MOION3AC3XQFNJ9KSGJAA3XGM2REU3DR6YIRXUA3UY4ELKZS115XX1PW8K27Z' where id=92; -update noar tt set v1='92Q1PA0BZ0WGRWYO3I24IK5J1BUI8C4B98UGK8Y18SOR56EM9FMXCQUQPM8TUHYOE0H4QHRAUR0NIB7LR3YI9ZNDLDKITD9S17T2UCC1KXAOGVLTRCQQQ09N7HZ85M5P6ORP3EAYOIFAUSHNK4DBTA0KDRR5R1Z26H0653EO5DQSKO9VSAMPBEYSY49APBMQ2DXYHOBSWPPBDZ25UF3I4EM9TJCZS0CV49P0PLZ74JR68NV1EGBEOWX5IKS2T8MR8' where id=92; -update noar ti set v1='92Q1PA0BZ0WGRWYO3I24IK5J1BUI8C4B98UGK8Y18SOR56EM9FMXCQUQPM8TUHYOE0H4QHRAUR0NIB7LR3YI9ZNDLDKITD9S17T2UCC1KXAOGVLTRCQQQ09N7HZ85M5P6ORP3EAYOIFAUSHNK4DBTA0KDRR5R1Z26H0653EO5DQSKO9VSAMPBEYSY49APBMQ2DXYHOBSWPPBDZ25UF3I4EM9TJCZS0CV49P0PLZ74JR68NV1EGBEOWX5IKS2T8MR8' where id=92; -update noar tt set v2='2PLM212TWV9VABPG4RGJEHV3KA8QGKVSN1DXBRUZ3YPH4QJD6L09SO9TCDCU5G7553JEGAA2Z34LO4PZQU522YFSSL09Y22PZG3CISOFTVDDR84Z6ISJ4L59AKNSJ356BEENN4T7RB1Q1MVWA718JV1TAJ1UX61PYL8S8S5IGIT60NR06IAJRQQYNF0IV5LZ8VWQPRMJFZMY6T680466PPFLKUQ8TAP9E0VZUE6GRC3JU2X0ILDZPTZXZ2AG3GLKN' where id=92; -update noar ti set v2='2PLM212TWV9VABPG4RGJEHV3KA8QGKVSN1DXBRUZ3YPH4QJD6L09SO9TCDCU5G7553JEGAA2Z34LO4PZQU522YFSSL09Y22PZG3CISOFTVDDR84Z6ISJ4L59AKNSJ356BEENN4T7RB1Q1MVWA718JV1TAJ1UX61PYL8S8S5IGIT60NR06IAJRQQYNF0IV5LZ8VWQPRMJFZMY6T680466PPFLKUQ8TAP9E0VZUE6GRC3JU2X0ILDZPTZXZ2AG3GLKN' where id=92; -update noar tt set v3='D79Z78HLHH6AIWWOLDW19K4L4GQ3KUA3DMBZXLZ4HQJVK6YHE0WL9MA9VR2HODFIHBPEQZO7GOWIRNC9FF0PFGUW3ZAZY3ZUHPBTT80WJ9RB31XGUYLALD1TETSPMO12TA29FAWFTW2RGHX1SSWRVA484U7MSY960UCKXQ1YNSVG7YBDU6Z7W5AJU9VIJOV111VRFU3H5MLLGQG6ATAW200IN3JFB9Z60ZNW8ED88K251MILAC5Z6K8RZL4TE99CF' where id=92; -update noar ti set v3='D79Z78HLHH6AIWWOLDW19K4L4GQ3KUA3DMBZXLZ4HQJVK6YHE0WL9MA9VR2HODFIHBPEQZO7GOWIRNC9FF0PFGUW3ZAZY3ZUHPBTT80WJ9RB31XGUYLALD1TETSPMO12TA29FAWFTW2RGHX1SSWRVA484U7MSY960UCKXQ1YNSVG7YBDU6Z7W5AJU9VIJOV111VRFU3H5MLLGQG6ATAW200IN3JFB9Z60ZNW8ED88K251MILAC5Z6K8RZL4TE99CF' where id=92; -update noar tt set v0='QDZ079CUL8UK2JIJ60XUAT9PIDM2LLGPPQ8H8SP33IZEG41F7EOIW8BE69IIGCJO4XCORFVIERXCEW5SDR16ONXMF8SMM7ES6ECJ5CN350Y4LQWI9OSN48E88RY6UN00UHJK9RYIFKGK23O24CIUXHJ3SY287YO9WDAYG8N97D3EZZ8HXPF0DH5RFY5KLOF7WW6W7GYFCDEIQN9BMBH6S2ZDSQT008GSJ3QZMWPVC0BAVB1CE2DOHA08JQ9GIZRA1' where id=93; -update noar ti set v0='QDZ079CUL8UK2JIJ60XUAT9PIDM2LLGPPQ8H8SP33IZEG41F7EOIW8BE69IIGCJO4XCORFVIERXCEW5SDR16ONXMF8SMM7ES6ECJ5CN350Y4LQWI9OSN48E88RY6UN00UHJK9RYIFKGK23O24CIUXHJ3SY287YO9WDAYG8N97D3EZZ8HXPF0DH5RFY5KLOF7WW6W7GYFCDEIQN9BMBH6S2ZDSQT008GSJ3QZMWPVC0BAVB1CE2DOHA08JQ9GIZRA1' where id=93; -update noar tt set v1='ITZRRLA40OLHBR9H34H7T0ANTBQC61L659C5AD0BIJMC19DBI7Q4PHIPEMDT6J2EOW8DYFD1SVM7KMBP9B9PQ042DMO04SQS1VLOCKMGZ21163W4DJO0V4FCS8GOYG9V0PUVGZU6E05IOHMWCZYFLVK1JZU6VE6OJOUE9ZDIQ827TZG3MDXJ7I3LGTNOADZ9YYL170WGXNQTWUQYVACWANS1YJRJI1RQ390Q2MF1UNQY6H2130S86MIWXUH3KKKDP' where id=93; -update noar ti set v1='ITZRRLA40OLHBR9H34H7T0ANTBQC61L659C5AD0BIJMC19DBI7Q4PHIPEMDT6J2EOW8DYFD1SVM7KMBP9B9PQ042DMO04SQS1VLOCKMGZ21163W4DJO0V4FCS8GOYG9V0PUVGZU6E05IOHMWCZYFLVK1JZU6VE6OJOUE9ZDIQ827TZG3MDXJ7I3LGTNOADZ9YYL170WGXNQTWUQYVACWANS1YJRJI1RQ390Q2MF1UNQY6H2130S86MIWXUH3KKKDP' where id=93; -update noar tt set v2='D1Y72DH1QHIOQX9DPN8T57KEOAZXWMNB38VWXAPNAUDTUE1HV91LDM3BFWOOHNKP2GPSVMVYSI1HMOJSH4R4SIYSETFCL69U7VDR4E5W56RDSNG1M7HE2F7P8QSEHMCANMD4Q28F8Z520QU7E6JYWYRFEV08MOFR4STUNQZYA4RDGAAU1J90BAA5LOWHDSQE25K49JGFX2V28CWTQQM9LLVEEN6QE47NNFZ6MIN8P6DVWGOOKPUY6S6NUTC2S9TIZ' where id=93; -update noar ti set v2='D1Y72DH1QHIOQX9DPN8T57KEOAZXWMNB38VWXAPNAUDTUE1HV91LDM3BFWOOHNKP2GPSVMVYSI1HMOJSH4R4SIYSETFCL69U7VDR4E5W56RDSNG1M7HE2F7P8QSEHMCANMD4Q28F8Z520QU7E6JYWYRFEV08MOFR4STUNQZYA4RDGAAU1J90BAA5LOWHDSQE25K49JGFX2V28CWTQQM9LLVEEN6QE47NNFZ6MIN8P6DVWGOOKPUY6S6NUTC2S9TIZ' where id=93; -update noar tt set v3='REYJHFU5RDQJF0DFD7KH22V3XJR77N3YJ54E0E8QL7R0OAJU5Z96OEM6JUMEQ9NR3QRF5YTIF96BHJ81M5NETO3ZNPAU98TPADGVYJTHJC2XA3HYOGBX4B14I4B51UPQXQLWII7RBECCFBHWKVI2FEOHISPVN5L04N5D1W4XPUNKC859XTRPE3X9V8Q1TAW972F4N8YZNUJ3925ODDTSA6ETVCN5XRH4XEP2TVO4B3MCQHUS0U1AP8WETSARCMP5V' where id=93; -update noar ti set v3='REYJHFU5RDQJF0DFD7KH22V3XJR77N3YJ54E0E8QL7R0OAJU5Z96OEM6JUMEQ9NR3QRF5YTIF96BHJ81M5NETO3ZNPAU98TPADGVYJTHJC2XA3HYOGBX4B14I4B51UPQXQLWII7RBECCFBHWKVI2FEOHISPVN5L04N5D1W4XPUNKC859XTRPE3X9V8Q1TAW972F4N8YZNUJ3925ODDTSA6ETVCN5XRH4XEP2TVO4B3MCQHUS0U1AP8WETSARCMP5V' where id=93; -update noar tt set v0='09CPJ9QWKQC21LU2VE0WTRVPWJAVEOBOWA4L5XIEZH89Y5M8BLNVUSTVREYST0DL3R4E1FH9UVYR0XDCZ37B7XKJ25BJO39H3BW93FXW2SV2C4M5U50JF9RVMCWSIKMYWD840CZP4USDY0UKY5DOQY5NNFJHCXI22VX6DMCZ6JFJMX3L5HLYKSEXQ2SU1L55ZSZXPUIXD4C9MPWH6NU2QZVIJZO57DACX4BHQ87EA6BHTQPDXIXBLBG4VKOI2PZCF' where id=94; -update noar ti set v0='09CPJ9QWKQC21LU2VE0WTRVPWJAVEOBOWA4L5XIEZH89Y5M8BLNVUSTVREYST0DL3R4E1FH9UVYR0XDCZ37B7XKJ25BJO39H3BW93FXW2SV2C4M5U50JF9RVMCWSIKMYWD840CZP4USDY0UKY5DOQY5NNFJHCXI22VX6DMCZ6JFJMX3L5HLYKSEXQ2SU1L55ZSZXPUIXD4C9MPWH6NU2QZVIJZO57DACX4BHQ87EA6BHTQPDXIXBLBG4VKOI2PZCF' where id=94; -update noar tt set v1='SEVAP6S9DZJOJGXB984FWD0GB3XG8O3EG8OWBF7XIYDG2VTTH6ICMZ0VAMDVW3TYLPVR89EE9MX3W33EHLUL2B2ZDZPKY63NJVW1KXUESP1KXBYW2SJ1SZH2TPDZHH31FETK9S8O4N7G7MNE4DMKLVYY5UMQE1AXZ0K8UVS8KOR2P8V7OYNSDRWSXQ48DZJ0IB4LS145TWD38QEQY4OI7HKMJY82GJNH94DEZ19GOXA4UEFXI1XXPGH7IG8WS5DPY' where id=94; -update noar ti set v1='SEVAP6S9DZJOJGXB984FWD0GB3XG8O3EG8OWBF7XIYDG2VTTH6ICMZ0VAMDVW3TYLPVR89EE9MX3W33EHLUL2B2ZDZPKY63NJVW1KXUESP1KXBYW2SJ1SZH2TPDZHH31FETK9S8O4N7G7MNE4DMKLVYY5UMQE1AXZ0K8UVS8KOR2P8V7OYNSDRWSXQ48DZJ0IB4LS145TWD38QEQY4OI7HKMJY82GJNH94DEZ19GOXA4UEFXI1XXPGH7IG8WS5DPY' where id=94; -update noar tt set v2='FR8S6ZJAFR9MDHPM2KDE5K3OXV7D9DP3VIFH7C9R4Q8C79DUPSVNHUD6I7F9PI0GOD94YT0O5X3IX5WE9VUHJ47WQIDW9BOCVF8FDZ8S9YW2UE1U5H386U8X53RVACHB64VIYUSTBZ2S5KBVTCHT4RVC2HEI5NC49FBZMP785UOVAPFC7T9WSGQO2CHB9B9ZIJABS7US0OJVSRJR6GGEPKRQNO837G0KWOMVBCH77R4E3FQUI5VP29CTGOZJTA2X9' where id=94; -update noar ti set v2='FR8S6ZJAFR9MDHPM2KDE5K3OXV7D9DP3VIFH7C9R4Q8C79DUPSVNHUD6I7F9PI0GOD94YT0O5X3IX5WE9VUHJ47WQIDW9BOCVF8FDZ8S9YW2UE1U5H386U8X53RVACHB64VIYUSTBZ2S5KBVTCHT4RVC2HEI5NC49FBZMP785UOVAPFC7T9WSGQO2CHB9B9ZIJABS7US0OJVSRJR6GGEPKRQNO837G0KWOMVBCH77R4E3FQUI5VP29CTGOZJTA2X9' where id=94; -update noar tt set v3='M0QSCW7STQCRXOO3Y9GXVK417EVJG2GDTDN4NVRSVZAWOP5PMMCJB33CJR5ITNI1NHIG7Q4TEHVWGYRA6AUERJEGB3KYB1O5PEOZQ48Q3TSJ867ZC86Y02OWOP5ZZI0F0MTREN71E3FYFXOTIY9NQLOODMGO0LMKKVRQD9T54I99IE6U343LAUXW20CFGFLU2EZ9T3YRB5CGB2KCV2RLI0X7HPU9R61FMRI2E3S8PHDITQD4KRCEU5M87NL2TKSPG' where id=94; -update noar ti set v3='M0QSCW7STQCRXOO3Y9GXVK417EVJG2GDTDN4NVRSVZAWOP5PMMCJB33CJR5ITNI1NHIG7Q4TEHVWGYRA6AUERJEGB3KYB1O5PEOZQ48Q3TSJ867ZC86Y02OWOP5ZZI0F0MTREN71E3FYFXOTIY9NQLOODMGO0LMKKVRQD9T54I99IE6U343LAUXW20CFGFLU2EZ9T3YRB5CGB2KCV2RLI0X7HPU9R61FMRI2E3S8PHDITQD4KRCEU5M87NL2TKSPG' where id=94; -update noar tt set v0='DBOKEVKO10MXVDPTMT866DJ3NY58HR28BAASPR3UIB282Y59P0SXQ0949OLF4CXZN6YSSXAJOPO1Y2757CYBDL83SVW1EEVKSG61KTHPBPJ5PI8OZZI7WOZ1QF32S6O0HUCUY9XYXYYGA2WBUGQL7TQSNJYVJA9IYNDFPJHXH6IYVLXSLTSZ30AQVF4CZ6O0YDROMEKKDQGBQZRLZ2IVUXZP0WI4MREQ12MNXK540KYB4QFZ03T0MSYHN7QO9PU2Z' where id=95; -update noar ti set v0='DBOKEVKO10MXVDPTMT866DJ3NY58HR28BAASPR3UIB282Y59P0SXQ0949OLF4CXZN6YSSXAJOPO1Y2757CYBDL83SVW1EEVKSG61KTHPBPJ5PI8OZZI7WOZ1QF32S6O0HUCUY9XYXYYGA2WBUGQL7TQSNJYVJA9IYNDFPJHXH6IYVLXSLTSZ30AQVF4CZ6O0YDROMEKKDQGBQZRLZ2IVUXZP0WI4MREQ12MNXK540KYB4QFZ03T0MSYHN7QO9PU2Z' where id=95; -update noar tt set v1='D40IC6Y9E3ZL1D344OYH1WO0231NF2KOBIEFTF4O4R5BNBFLJ6GGBULZJE3686X98JZLA70Y7ZQUUXJANKH62E0CZTKOHWQ45NGMHO8MZPGRG7IROQJFSPVMC7EZGBX8W5ZRDJKY0FCCNV2VXWTJD96LWHLGR57FWQGWQF0K0BD1VCIYIE7TDOA5COTL9RZJR7J6S36HGAYT41C7A6XITBRZYBMDPVXETQARII8O2Q7TP5D86QZAML1G2KTXDXWZS' where id=95; -update noar ti set v1='D40IC6Y9E3ZL1D344OYH1WO0231NF2KOBIEFTF4O4R5BNBFLJ6GGBULZJE3686X98JZLA70Y7ZQUUXJANKH62E0CZTKOHWQ45NGMHO8MZPGRG7IROQJFSPVMC7EZGBX8W5ZRDJKY0FCCNV2VXWTJD96LWHLGR57FWQGWQF0K0BD1VCIYIE7TDOA5COTL9RZJR7J6S36HGAYT41C7A6XITBRZYBMDPVXETQARII8O2Q7TP5D86QZAML1G2KTXDXWZS' where id=95; -update noar tt set v2='W4W77CW3APJ6Q8HC96J5SWR2GG0OQLBD9KRJ3M9VOTK8CI8MMJMPDV4MD0HZYMQBE3UN2C0IOU35GQ3U8E3KN4A7CEAG8O4AP1V5ALNFZJ8D6MA4GAZV3WQFCA5WGWOH6FL7WWIC5TQYQ7L3NEH5MY836NT7MI224JGHYVW1Z9KIUP06KCNDZ945V8BJWUDYWMYYTXHO5QGPCUB0PLVECLLZPN5JWS6CJW53BK9OYEZV9YTQ2R0C0CI67VHYOY417' where id=95; -update noar ti set v2='W4W77CW3APJ6Q8HC96J5SWR2GG0OQLBD9KRJ3M9VOTK8CI8MMJMPDV4MD0HZYMQBE3UN2C0IOU35GQ3U8E3KN4A7CEAG8O4AP1V5ALNFZJ8D6MA4GAZV3WQFCA5WGWOH6FL7WWIC5TQYQ7L3NEH5MY836NT7MI224JGHYVW1Z9KIUP06KCNDZ945V8BJWUDYWMYYTXHO5QGPCUB0PLVECLLZPN5JWS6CJW53BK9OYEZV9YTQ2R0C0CI67VHYOY417' where id=95; -update noar tt set v3='4BBO20SI6KZ43QA7ASYSWV8OA5UQ1IW3H4Y5HCJH2VIN0ZJL3I69ZU4KQC5L2N2WV3ZPCYEPPYRDR63LYBCU3GOZK36XFLRHU8Q87Y8R9YC8GWP3Y5XNMPVA7IS8XQPRP775HJ7PFADLJE485EQMVZ447ITIM2WRIRYB6X2MG8JXLX3H4KJR23VLF7BZL4O3HOSQOYRKXAJI25V939RBDIUVNR4JT0NWTIDUB0J44I15V5U3358MMTM92UWJJ7PJI' where id=95; -update noar ti set v3='4BBO20SI6KZ43QA7ASYSWV8OA5UQ1IW3H4Y5HCJH2VIN0ZJL3I69ZU4KQC5L2N2WV3ZPCYEPPYRDR63LYBCU3GOZK36XFLRHU8Q87Y8R9YC8GWP3Y5XNMPVA7IS8XQPRP775HJ7PFADLJE485EQMVZ447ITIM2WRIRYB6X2MG8JXLX3H4KJR23VLF7BZL4O3HOSQOYRKXAJI25V939RBDIUVNR4JT0NWTIDUB0J44I15V5U3358MMTM92UWJJ7PJI' where id=95; -update noar tt set v0='XD58SW0WOZPSUK8BV3KRJTMDVB6ZHCGXA1VMQ5ITCGULPKN9Y379RE0TZIMJ4PTT824INEX0RXE8MKMSWZR8E78GU52W9U2ZQ3Z3NRBONYZIFJDTW0F0UE2T56FQ9IIV36GYVJFH336TP584WO0ZB1H73OJ3Z1DRWXW4YN0PNWLIWG888TBOLPFB5QDP0I80NPZMMNIDSKUBH80S019OZ1NF7QLDDEY2H4K1QJ0XG3J3GOF5DYUYGFS1X2W23JEXJ' where id=96; -update noar ti set v0='XD58SW0WOZPSUK8BV3KRJTMDVB6ZHCGXA1VMQ5ITCGULPKN9Y379RE0TZIMJ4PTT824INEX0RXE8MKMSWZR8E78GU52W9U2ZQ3Z3NRBONYZIFJDTW0F0UE2T56FQ9IIV36GYVJFH336TP584WO0ZB1H73OJ3Z1DRWXW4YN0PNWLIWG888TBOLPFB5QDP0I80NPZMMNIDSKUBH80S019OZ1NF7QLDDEY2H4K1QJ0XG3J3GOF5DYUYGFS1X2W23JEXJ' where id=96; -update noar tt set v1='TQCRSB14K5BFO78MT2YKNQT2AAEWCVYO63YPC71A7WQPTNYL7X5SHSCDOUHM2YD78KB52ENGBAIR9WE6V25MI20K22JCRMN115LQGX5JC7NEXHPN33N1BAL9Z24XEPTD3QSEX5C4GBWIHO1AUOEMTHXA9ONZFPB7ZD7PKA1CBC7H7736XS0MQP5XL11HH0SXBVQI8GUL5JYTCEU0Z7ATQJFL3IMLF7S97IPX2H9DW1VPKAVSWD01S7E3K47ESZKYZ' where id=96; -update noar ti set v1='TQCRSB14K5BFO78MT2YKNQT2AAEWCVYO63YPC71A7WQPTNYL7X5SHSCDOUHM2YD78KB52ENGBAIR9WE6V25MI20K22JCRMN115LQGX5JC7NEXHPN33N1BAL9Z24XEPTD3QSEX5C4GBWIHO1AUOEMTHXA9ONZFPB7ZD7PKA1CBC7H7736XS0MQP5XL11HH0SXBVQI8GUL5JYTCEU0Z7ATQJFL3IMLF7S97IPX2H9DW1VPKAVSWD01S7E3K47ESZKYZ' where id=96; -update noar tt set v2='O0LMFHUWRBTJ2RY5OS6ZOMO25H095ZEW1E172HBKDOJ0DOFFH03BJKO8UPQFJB6GAS3WPJENPDZNPDXJ1E0IQYK578Q529ZB9CKOMGILZ2DF9AQSYUPUXMLMA7D4QMLHU3R6LRA79U6WKSC1PT43TMTQOV4QLFI7CIA7G0MWR35AXMBWABYW5CWK9YVXKRH8SGNZIZ47GDR1X8KIV8SZKSVFOH1HARSXZ4UEEFIHX9HNG23AL73P5XDUWCNTVB75Q' where id=96; -update noar ti set v2='O0LMFHUWRBTJ2RY5OS6ZOMO25H095ZEW1E172HBKDOJ0DOFFH03BJKO8UPQFJB6GAS3WPJENPDZNPDXJ1E0IQYK578Q529ZB9CKOMGILZ2DF9AQSYUPUXMLMA7D4QMLHU3R6LRA79U6WKSC1PT43TMTQOV4QLFI7CIA7G0MWR35AXMBWABYW5CWK9YVXKRH8SGNZIZ47GDR1X8KIV8SZKSVFOH1HARSXZ4UEEFIHX9HNG23AL73P5XDUWCNTVB75Q' where id=96; -update noar tt set v3='IU3EZINLEE3FOULALFNKVCBWO1YPK01DOBWRO37TQMQ1YEL4ZSTDZVM5TUP875Y93YP7UQF279KJFF7Z36S7QAAC55F43EPDYBXUAC905WMVOZX81ZTLWOJDGTPRGQLUHA29WSATMX1U09E0AIILEPXL3T2DDBJWXZ6EZOOENBDWCIC6MC04RT6OA7O50JJKNY15PSJ1PJZQY79BG32GFSSP22I90VCH2XSMUEVY7B1N64Z44QKUABQG3YXGTM03F' where id=96; -update noar ti set v3='IU3EZINLEE3FOULALFNKVCBWO1YPK01DOBWRO37TQMQ1YEL4ZSTDZVM5TUP875Y93YP7UQF279KJFF7Z36S7QAAC55F43EPDYBXUAC905WMVOZX81ZTLWOJDGTPRGQLUHA29WSATMX1U09E0AIILEPXL3T2DDBJWXZ6EZOOENBDWCIC6MC04RT6OA7O50JJKNY15PSJ1PJZQY79BG32GFSSP22I90VCH2XSMUEVY7B1N64Z44QKUABQG3YXGTM03F' where id=96; -update noar tt set v0='B3HNSREC0R3SW37L1P9XDJ7ZDEPF7KIYPEC1MFMRRU9LHUPNAVJ4VBVRP0FMJJPZ4KXPDYXH9KWSXDHP1YNBS3HKK1IPACF31YIBHIRVCAS59T1DIF6CVRBFF5JW5LZQIONQ0L8DLIKF4PXDAMCN0097GOXY4ABPC23N1G03SCQTX2QTNOP1PDI9M6F7ZVBUHTNV5XBOK90PI6C9R1QF2Q5EULI9SBMOPZ5OAS8698WGVE685TLQWSJGNPD0G1AKA' where id=97; -update noar ti set v0='B3HNSREC0R3SW37L1P9XDJ7ZDEPF7KIYPEC1MFMRRU9LHUPNAVJ4VBVRP0FMJJPZ4KXPDYXH9KWSXDHP1YNBS3HKK1IPACF31YIBHIRVCAS59T1DIF6CVRBFF5JW5LZQIONQ0L8DLIKF4PXDAMCN0097GOXY4ABPC23N1G03SCQTX2QTNOP1PDI9M6F7ZVBUHTNV5XBOK90PI6C9R1QF2Q5EULI9SBMOPZ5OAS8698WGVE685TLQWSJGNPD0G1AKA' where id=97; -update noar tt set v1='YSMMAZZ1OPW08S47OJPLUV72RO2T2RIUZQREAQ75VE82SYAL6TSSA1MJ3O2A83O1TOAU7VBHAJ5IG4ODR05TY8BN6RFWUEZBJXRW6QOXKJCJ0VEY11Y8YD6JWWK5MHOLAD2FIF4G005RH7GE7TTWX2GONVHAQA4VR8JLVUUPSUV6CY19U0RXWNLP02BCQAEHMJL2F93UC97B08FH2JWT1ZTGYAAV86QYL0BUZ0UCF2895XV86XTSQ7F3TUVWZQEU6' where id=97; -update noar ti set v1='YSMMAZZ1OPW08S47OJPLUV72RO2T2RIUZQREAQ75VE82SYAL6TSSA1MJ3O2A83O1TOAU7VBHAJ5IG4ODR05TY8BN6RFWUEZBJXRW6QOXKJCJ0VEY11Y8YD6JWWK5MHOLAD2FIF4G005RH7GE7TTWX2GONVHAQA4VR8JLVUUPSUV6CY19U0RXWNLP02BCQAEHMJL2F93UC97B08FH2JWT1ZTGYAAV86QYL0BUZ0UCF2895XV86XTSQ7F3TUVWZQEU6' where id=97; -update noar tt set v2='6FNIPC8ALP3KX15590AW3P68ZPUY6WARFDS5EJ8BBJFVV4RAH6YZX7SDWFMWCTUTFMS0MHL0MXM3LNGRF32CIHKFREOEUBACJV9637UWB04RBOND7KHS73TYP7TBIEANJU49YU3TI881G6V568A4RW4J4EBYYOGMLIEEZS7V5YR8Z3V8AVHP1HBLA70SFWQFVAMILB87J8RY6TSLLRBRLQL9QYJ6Z25YGXCOHN4W2XA1DIDHM6I5I2YYCLAHIKUZR' where id=97; -update noar ti set v2='6FNIPC8ALP3KX15590AW3P68ZPUY6WARFDS5EJ8BBJFVV4RAH6YZX7SDWFMWCTUTFMS0MHL0MXM3LNGRF32CIHKFREOEUBACJV9637UWB04RBOND7KHS73TYP7TBIEANJU49YU3TI881G6V568A4RW4J4EBYYOGMLIEEZS7V5YR8Z3V8AVHP1HBLA70SFWQFVAMILB87J8RY6TSLLRBRLQL9QYJ6Z25YGXCOHN4W2XA1DIDHM6I5I2YYCLAHIKUZR' where id=97; -update noar tt set v3='G7BEQIQNCPL9V3SQY1ZY26BZQGH7L3K94FMCYZGCCVD45Z8TGJAKPUX8WBH6JGNSZVPP1BCJ8OSVCTD3EE8SVYMXFSY63ECQ4J5V98DGN2E7VYOL7DVJGBAAFNIH6Z04RPD3WDZLCD2OYJ8JFQ0XQJMJYTLT6JF29JXK7FWF8AREXQ2YZPL5X517D8DMRQVIOAM3M11AQSFNSC5GQOS981WACKFS6Z0USGKCSH8R1SHM7LB819CMNEZRON3BDNLTQ' where id=97; -update noar ti set v3='G7BEQIQNCPL9V3SQY1ZY26BZQGH7L3K94FMCYZGCCVD45Z8TGJAKPUX8WBH6JGNSZVPP1BCJ8OSVCTD3EE8SVYMXFSY63ECQ4J5V98DGN2E7VYOL7DVJGBAAFNIH6Z04RPD3WDZLCD2OYJ8JFQ0XQJMJYTLT6JF29JXK7FWF8AREXQ2YZPL5X517D8DMRQVIOAM3M11AQSFNSC5GQOS981WACKFS6Z0USGKCSH8R1SHM7LB819CMNEZRON3BDNLTQ' where id=97; -update noar tt set v0='17YM75UB7JOWA4MKPQ5PJIYMIM6WVHKOKG4ZA6K4H4RM366MM19ORCT3N3P1LE10843AIPTUPN8HU3OJS3LUQLVFY4LEZ0C8UBHWI048T2GFG40AH5IMPJ4MJHTLWKURD5NIBVH27Y823RSKSJME5LYGEB85T292UGZAIBSV7QB8VPH5P85SHOSGQ6I4MX6SIR31SZOYG9DS7Z8ZEUXU46P974277X7947J7JJXEMCA9L147OBE6YK25WHM90YWMG' where id=98; -update noar ti set v0='17YM75UB7JOWA4MKPQ5PJIYMIM6WVHKOKG4ZA6K4H4RM366MM19ORCT3N3P1LE10843AIPTUPN8HU3OJS3LUQLVFY4LEZ0C8UBHWI048T2GFG40AH5IMPJ4MJHTLWKURD5NIBVH27Y823RSKSJME5LYGEB85T292UGZAIBSV7QB8VPH5P85SHOSGQ6I4MX6SIR31SZOYG9DS7Z8ZEUXU46P974277X7947J7JJXEMCA9L147OBE6YK25WHM90YWMG' where id=98; -update noar tt set v1='AW4O3Z601EYNZAGBNDECMQUMWIH1PRCKAQD78HL1169PK5KDCQS05DZJ32IH1WMU9WG57IN2VPFDEILS3PY4SO5ZIVOW4LC3IOPA28W6VMQW2EHMSIMLHV6D3THV6UDLANAXQG73WR5DMXZVLM7UXSF3SGI6J5KG1ZUUQFZZV7LGG7S45VL5I9UHI8XXK59VKSMSKKSPRALMZVLEIA8RTB23WA5MKDBN2KC8DE45FD47VCWS4OAHP7C9OWDAGV2S5' where id=98; -update noar ti set v1='AW4O3Z601EYNZAGBNDECMQUMWIH1PRCKAQD78HL1169PK5KDCQS05DZJ32IH1WMU9WG57IN2VPFDEILS3PY4SO5ZIVOW4LC3IOPA28W6VMQW2EHMSIMLHV6D3THV6UDLANAXQG73WR5DMXZVLM7UXSF3SGI6J5KG1ZUUQFZZV7LGG7S45VL5I9UHI8XXK59VKSMSKKSPRALMZVLEIA8RTB23WA5MKDBN2KC8DE45FD47VCWS4OAHP7C9OWDAGV2S5' where id=98; -update noar tt set v2='74E41LJXI9JTWOC62IRCK1KHTNQKIUW4SWSW7BQXPLHP4NEL99X1VZB21G18PQNRP4J7DWDJE5ZO8DSGIP755HJW3JLM9VLWCLRB9ZXEHDDU8MO639CKOTLLGF5RLRGQTIXG35VDR3KE7D2OMTXJW2JFKWPBVPHS7F0WKMXO9H27PJ68BA2NS0GQ7RT4II0STLSIYMY6VVIZGD4XBVLUU7F0N2NCKQUGPAFOCOB3VAQO9CIXCOXBYJAE6PH36OJB0' where id=98; -update noar ti set v2='74E41LJXI9JTWOC62IRCK1KHTNQKIUW4SWSW7BQXPLHP4NEL99X1VZB21G18PQNRP4J7DWDJE5ZO8DSGIP755HJW3JLM9VLWCLRB9ZXEHDDU8MO639CKOTLLGF5RLRGQTIXG35VDR3KE7D2OMTXJW2JFKWPBVPHS7F0WKMXO9H27PJ68BA2NS0GQ7RT4II0STLSIYMY6VVIZGD4XBVLUU7F0N2NCKQUGPAFOCOB3VAQO9CIXCOXBYJAE6PH36OJB0' where id=98; -update noar tt set v3='NKAZHADTHWD0N0VHL47U7FMUM6O3MFZN2VAF9YPU98379ZJWS9IPPGPGCWD98V2SRAGBS1Y4WG6AKKVMIWXUZV0CUTZ51CKTPQJQ9BNBSLTGNZ3HC5QP9NITMGMXW7CNTUH1YFGAMN5X7VKE3NE7CNXDZQ6UYBQY03W6MNBRBU0VIWRWL2KUHPEWOI5XHVLDCTUWD5HDU7DJYZ0DRS2J6FXVT6H8JM2OF92XLO31R7Z8CYGECE70TWE0GOP9HU8CS' where id=98; -update noar ti set v3='NKAZHADTHWD0N0VHL47U7FMUM6O3MFZN2VAF9YPU98379ZJWS9IPPGPGCWD98V2SRAGBS1Y4WG6AKKVMIWXUZV0CUTZ51CKTPQJQ9BNBSLTGNZ3HC5QP9NITMGMXW7CNTUH1YFGAMN5X7VKE3NE7CNXDZQ6UYBQY03W6MNBRBU0VIWRWL2KUHPEWOI5XHVLDCTUWD5HDU7DJYZ0DRS2J6FXVT6H8JM2OF92XLO31R7Z8CYGECE70TWE0GOP9HU8CS' where id=98; -update noar tt set v0='2NTLB3QEKWW5DCDPV43TI8YHPOB8JMD56IRAH1Z8D2H722689BKRAMW638L59NXQRDQG0BOZ3WZK78M2RJRH1ILUOLK0K00MFQ9ATC8CO78PACPD2HMRN3MCJBKKLB0DCNB4J9S6EHTA4VY64NVG9MEUJ1TKE2PGHE8BKOR564PE6K2YD436EUMCVFAEJXQMSB9HYEWNOE3PTT4DNJYAIUK7JRQ7HEGNWX44IMSEOYDSMYEWEKOJSACQV3JYCNYTH' where id=99; -update noar ti set v0='2NTLB3QEKWW5DCDPV43TI8YHPOB8JMD56IRAH1Z8D2H722689BKRAMW638L59NXQRDQG0BOZ3WZK78M2RJRH1ILUOLK0K00MFQ9ATC8CO78PACPD2HMRN3MCJBKKLB0DCNB4J9S6EHTA4VY64NVG9MEUJ1TKE2PGHE8BKOR564PE6K2YD436EUMCVFAEJXQMSB9HYEWNOE3PTT4DNJYAIUK7JRQ7HEGNWX44IMSEOYDSMYEWEKOJSACQV3JYCNYTH' where id=99; -update noar tt set v1='U1U5AR0AJETU7MHC72BV30C6OAZLXY7KA0ML6AK18UZVIZVI7LAP6N4H5O9CZHOWZEDNGMH7MY81X1IXBFSIFPC3SQAH6Q11FU3K3GHQV0XUMDCIZW3QJFBTSA8GMT25D5KYY7NUTBG9K1966DT8HGB5TR455R7C4GQK1CGQU84A4MRMIL01A6GOUXQGIGPXKVCAPAM27PH9I950DC5R37BXV19JFHMQFC5KPESX9TI9DMPNX1AJG452MVNY60EP7' where id=99; -update noar ti set v1='U1U5AR0AJETU7MHC72BV30C6OAZLXY7KA0ML6AK18UZVIZVI7LAP6N4H5O9CZHOWZEDNGMH7MY81X1IXBFSIFPC3SQAH6Q11FU3K3GHQV0XUMDCIZW3QJFBTSA8GMT25D5KYY7NUTBG9K1966DT8HGB5TR455R7C4GQK1CGQU84A4MRMIL01A6GOUXQGIGPXKVCAPAM27PH9I950DC5R37BXV19JFHMQFC5KPESX9TI9DMPNX1AJG452MVNY60EP7' where id=99; -update noar tt set v2='4UT93HR61UO15A7VUFJK22JA2T0KLN6BSI96FMSVNM7335TJ9BQV2A6ZDNXBH3LHI6MJWIAR91ALJLDZKB328K49RJIBQYJLT5KKE93X9YDVPMH83XC2AV0SNSPCHWYRPXB9LD6OVM8PWFLOG3OTSPVIDELQHX36OHS7XI4Y5EOUYKHZUCVGB6AA6CAOPT83ISQ0C1WAMFOK2UTJN4B0U8AHPLYVL2X988X4ZGG3OJIOCSMXTV5N8RGC4LDU0VNJY' where id=99; -update noar ti set v2='4UT93HR61UO15A7VUFJK22JA2T0KLN6BSI96FMSVNM7335TJ9BQV2A6ZDNXBH3LHI6MJWIAR91ALJLDZKB328K49RJIBQYJLT5KKE93X9YDVPMH83XC2AV0SNSPCHWYRPXB9LD6OVM8PWFLOG3OTSPVIDELQHX36OHS7XI4Y5EOUYKHZUCVGB6AA6CAOPT83ISQ0C1WAMFOK2UTJN4B0U8AHPLYVL2X988X4ZGG3OJIOCSMXTV5N8RGC4LDU0VNJY' where id=99; -update noar tt set v3='FH4206H0AKGZAR04LTBY5CRSFC2WL9HU3GIIH93K1B2S87WGEIWKPH9CLJS572M5JIL1OR9R97M52X7ZUL90X6ORSY9MC44H6ITNB1XL6IRKZMYV1Q3E44W33L70HP0XXLYIPPPILG17SRQ3D4J6MKO0716J4Z79WLHU2EMETVR0H81OK6I77ER7YVGV9P9XXCUXZDBKUAN9FAZFWMCW2JE906FCKMHU71P99YI83VQS7GVYQRE1AMDHDP3Y5QLHT' where id=99; -update noar ti set v3='FH4206H0AKGZAR04LTBY5CRSFC2WL9HU3GIIH93K1B2S87WGEIWKPH9CLJS572M5JIL1OR9R97M52X7ZUL90X6ORSY9MC44H6ITNB1XL6IRKZMYV1Q3E44W33L70HP0XXLYIPPPILG17SRQ3D4J6MKO0716J4Z79WLHU2EMETVR0H81OK6I77ER7YVGV9P9XXCUXZDBKUAN9FAZFWMCW2JE906FCKMHU71P99YI83VQS7GVYQRE1AMDHDP3Y5QLHT' where id=99; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - f0 int null, - v0 varbinary(32) null, - v1 varbinary(32) null, - v2 varbinary(32) null, - v3 varbinary(32) null, - b0 text null -) engine=tokudb; -insert into tt (id) values (0); -insert into tt values (1,2,'a','b','c','d','e'); -insert into tt values (2,3,'','','','',''); -insert into tt values (3,4,'','','','',''); -insert into tt values (4,5,'','','','',''); -insert into tt values (5,6,'','','','',''); -insert into tt values (6,7,'','','','',''); -insert into tt values (7,8,'','','','',''); -insert into tt values (8,9,'','','','',''); -insert into tt values (9,10,'','','','',''); -insert into tt values (10,11,'','','','',''); -insert into tt values (11,12,'','','','',''); -insert into tt values (12,13,'','','','',''); -insert into tt values (13,14,'','','','',''); -insert into tt values (14,15,'','','','',''); -insert into tt values (15,16,'','','','',''); -insert into tt values (16,17,'','','','',''); -insert into tt values (17,18,'','','','',''); -insert into tt values (18,19,'','','','',''); -insert into tt values (19,20,'','','','',''); -insert into tt values (20,21,'','','','',''); -insert into tt values (21,22,'','','','',''); -insert into tt values (22,23,'','','','',''); -insert into tt values (23,24,'','','','',''); -insert into tt values (24,25,'','','','',''); -insert into tt values (25,26,'','','','',''); -insert into tt values (26,27,'','','','',''); -insert into tt values (27,28,'','','','',''); -insert into tt values (28,29,'','','','',''); -insert into tt values (29,30,'','','','',''); -insert into tt values (30,31,'','','','',''); -insert into tt values (31,32,'','','','',''); -insert into tt values (32,33,'','','','',''); -insert into tt values (33,34,'','','','',''); -insert into tt values (34,35,'','','','',''); -insert into tt values (35,36,'','','','',''); -insert into tt values (36,37,'','','','',''); -insert into tt values (37,38,'','','','',''); -insert into tt values (38,39,'','','','',''); -insert into tt values (39,40,'','','','',''); -insert into tt values (40,41,'','','','',''); -insert into tt values (41,42,'','','','',''); -insert into tt values (42,43,'','','','',''); -insert into tt values (43,44,'','','','',''); -insert into tt values (44,45,'','','','',''); -insert into tt values (45,46,'','','','',''); -insert into tt values (46,47,'','','','',''); -insert into tt values (47,48,'','','','',''); -insert into tt values (48,49,'','','','',''); -insert into tt values (49,50,'','','','',''); -insert into tt values (50,51,'','','','',''); -insert into tt values (51,52,'','','','',''); -insert into tt values (52,53,'','','','',''); -insert into tt values (53,54,'','','','',''); -insert into tt values (54,55,'','','','',''); -insert into tt values (55,56,'','','','',''); -insert into tt values (56,57,'','','','',''); -insert into tt values (57,58,'','','','',''); -insert into tt values (58,59,'','','','',''); -insert into tt values (59,60,'','','','',''); -insert into tt values (60,61,'','','','',''); -insert into tt values (61,62,'','','','',''); -insert into tt values (62,63,'','','','',''); -insert into tt values (63,64,'','','','',''); -insert into tt values (64,65,'','','','',''); -insert into tt values (65,66,'','','','',''); -insert into tt values (66,67,'','','','',''); -insert into tt values (67,68,'','','','',''); -insert into tt values (68,69,'','','','',''); -insert into tt values (69,70,'','','','',''); -insert into tt values (70,71,'','','','',''); -insert into tt values (71,72,'','','','',''); -insert into tt values (72,73,'','','','',''); -insert into tt values (73,74,'','','','',''); -insert into tt values (74,75,'','','','',''); -insert into tt values (75,76,'','','','',''); -insert into tt values (76,77,'','','','',''); -insert into tt values (77,78,'','','','',''); -insert into tt values (78,79,'','','','',''); -insert into tt values (79,80,'','','','',''); -insert into tt values (80,81,'','','','',''); -insert into tt values (81,82,'','','','',''); -insert into tt values (82,83,'','','','',''); -insert into tt values (83,84,'','','','',''); -insert into tt values (84,85,'','','','',''); -insert into tt values (85,86,'','','','',''); -insert into tt values (86,87,'','','','',''); -insert into tt values (87,88,'','','','',''); -insert into tt values (88,89,'','','','',''); -insert into tt values (89,90,'','','','',''); -insert into tt values (90,91,'','','','',''); -insert into tt values (91,92,'','','','',''); -insert into tt values (92,93,'','','','',''); -insert into tt values (93,94,'','','','',''); -insert into tt values (94,95,'','','','',''); -insert into tt values (95,96,'','','','',''); -insert into tt values (96,97,'','','','',''); -insert into tt values (97,98,'','','','',''); -insert into tt values (98,99,'','','','',''); -insert into tt values (99,100,'','','','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='null this 0' where id=0; -update noar ti set v0='null this 0' where id=0; -update noar tt set v1='null is 1' where id=0; -update noar ti set v1='null is 1' where id=0; -update noar tt set v2='null a 2' where id=0; -update noar ti set v2='null a 2' where id=0; -update noar tt set v3='null test 3' where id=0; -update noar ti set v3='null test 3' where id=0; -update noar tt set v0='this 0' where id=1; -update noar ti set v0='this 0' where id=1; -update noar tt set v1='is 1' where id=1; -update noar ti set v1='is 1' where id=1; -update noar tt set v2='another 2' where id=1; -update noar ti set v2='another 2' where id=1; -update noar tt set v3='test 3' where id=1; -update noar ti set v3='test 3' where id=1; -update noar tt set v0='4CP5X4JI3BIPVDNO7Z7P2CTN520K4QDCN' where id=2; -update noar ti set v0='4CP5X4JI3BIPVDNO7Z7P2CTN520K4QDCN' where id=2; -update noar tt set v1='HC7PYXH7C9WR60ULA4OMWD4BMR48R8UX5' where id=2; -update noar ti set v1='HC7PYXH7C9WR60ULA4OMWD4BMR48R8UX5' where id=2; -update noar tt set v2='K5FHOKK2G9C86C3A303DU0FSQQKMFB3YB' where id=2; -update noar ti set v2='K5FHOKK2G9C86C3A303DU0FSQQKMFB3YB' where id=2; -update noar tt set v3='2CXQ1CMYFAWE2LR87ZBMZOC9CQK8OTVSL' where id=2; -update noar ti set v3='2CXQ1CMYFAWE2LR87ZBMZOC9CQK8OTVSL' where id=2; -update noar tt set v0='793DR4UA07GWZNEPR58V97HAGQ3I6D6Y2' where id=3; -update noar ti set v0='793DR4UA07GWZNEPR58V97HAGQ3I6D6Y2' where id=3; -update noar tt set v1='PFBZXCNZYYHWVK5LSXPDQ35QIWY6UBPY7' where id=3; -update noar ti set v1='PFBZXCNZYYHWVK5LSXPDQ35QIWY6UBPY7' where id=3; -update noar tt set v2='CH11HV0RFRP15DHTDY3SN1F5OG7SPPQ3F' where id=3; -update noar ti set v2='CH11HV0RFRP15DHTDY3SN1F5OG7SPPQ3F' where id=3; -update noar tt set v3='U011IYJDGLMK4GV05MS9HGF7LF9Q95H2C' where id=3; -update noar ti set v3='U011IYJDGLMK4GV05MS9HGF7LF9Q95H2C' where id=3; -update noar tt set v0='BB737V4GRTKP57V34ST6L32J3S758HZSD' where id=4; -update noar ti set v0='BB737V4GRTKP57V34ST6L32J3S758HZSD' where id=4; -update noar tt set v1='0RWSKTVOOQQSKPSFJXP8EIUQ3UU3KXYB6' where id=4; -update noar ti set v1='0RWSKTVOOQQSKPSFJXP8EIUQ3UU3KXYB6' where id=4; -update noar tt set v2='2GO899F93HU6LIEJNZUOB7J9C9GV46MMK' where id=4; -update noar ti set v2='2GO899F93HU6LIEJNZUOB7J9C9GV46MMK' where id=4; -update noar tt set v3='8V2N9BGK197IGQD41I3WDI05UYS5J3SNI' where id=4; -update noar ti set v3='8V2N9BGK197IGQD41I3WDI05UYS5J3SNI' where id=4; -update noar tt set v0='9X7RAASZNH2LCGYKFZJBPTVPZKCACM79O' where id=5; -update noar ti set v0='9X7RAASZNH2LCGYKFZJBPTVPZKCACM79O' where id=5; -update noar tt set v1='WYARYZCZR9QTCE688SBNNLZ9FDSOX14NY' where id=5; -update noar ti set v1='WYARYZCZR9QTCE688SBNNLZ9FDSOX14NY' where id=5; -update noar tt set v2='VGD9E8B19FGQYPDNYZM5QVA63HTBHTUGY' where id=5; -update noar ti set v2='VGD9E8B19FGQYPDNYZM5QVA63HTBHTUGY' where id=5; -update noar tt set v3='JDI5QW4YD7KWG94L73DTK6W3VV4XV3XUU' where id=5; -update noar ti set v3='JDI5QW4YD7KWG94L73DTK6W3VV4XV3XUU' where id=5; -update noar tt set v0='6OBVEQVQFNVF857T56VJXICJJF5KQL7GJ' where id=6; -update noar ti set v0='6OBVEQVQFNVF857T56VJXICJJF5KQL7GJ' where id=6; -update noar tt set v1='MJOESFBM818ISRN9P4H0WUPJN48SDCTAT' where id=6; -update noar ti set v1='MJOESFBM818ISRN9P4H0WUPJN48SDCTAT' where id=6; -update noar tt set v2='QH92HZ1IG9A4HWAX2OFG2CWCW9E5V9RZR' where id=6; -update noar ti set v2='QH92HZ1IG9A4HWAX2OFG2CWCW9E5V9RZR' where id=6; -update noar tt set v3='HNXV83AOO765VV601XAV74WK28MNSC8TE' where id=6; -update noar ti set v3='HNXV83AOO765VV601XAV74WK28MNSC8TE' where id=6; -update noar tt set v0='U49CZSR017AKFJ3BX6YDCY9F1OARJ4UTT' where id=7; -update noar ti set v0='U49CZSR017AKFJ3BX6YDCY9F1OARJ4UTT' where id=7; -update noar tt set v1='RZTYCA4IBDJGC7M74CT2RS899HECRQH7O' where id=7; -update noar ti set v1='RZTYCA4IBDJGC7M74CT2RS899HECRQH7O' where id=7; -update noar tt set v2='KT312E7DD2LNM91XIAMBUFOTJRHBYNZJ2' where id=7; -update noar ti set v2='KT312E7DD2LNM91XIAMBUFOTJRHBYNZJ2' where id=7; -update noar tt set v3='FDSOY3E49UUGWPW8ZRGLGMH7OGX1GPIQW' where id=7; -update noar ti set v3='FDSOY3E49UUGWPW8ZRGLGMH7OGX1GPIQW' where id=7; -update noar tt set v0='CUO9CN8O71QR50KA5ONA2UVKJR1M8UQZM' where id=8; -update noar ti set v0='CUO9CN8O71QR50KA5ONA2UVKJR1M8UQZM' where id=8; -update noar tt set v1='EDGJ0L7LI1LJD0ZQ3W3EE9KPY9B858K2P' where id=8; -update noar ti set v1='EDGJ0L7LI1LJD0ZQ3W3EE9KPY9B858K2P' where id=8; -update noar tt set v2='5M22FGC8VPGXEIPZ42ILEDWKN4QGR7XRL' where id=8; -update noar ti set v2='5M22FGC8VPGXEIPZ42ILEDWKN4QGR7XRL' where id=8; -update noar tt set v3='PQTMEVXQ1Y6MP4FFTK40UUY77OJY9VPPI' where id=8; -update noar ti set v3='PQTMEVXQ1Y6MP4FFTK40UUY77OJY9VPPI' where id=8; -update noar tt set v0='6TK6YVBHDIR47H1VUITL8CNCADHPJSA6Y' where id=9; -update noar ti set v0='6TK6YVBHDIR47H1VUITL8CNCADHPJSA6Y' where id=9; -update noar tt set v1='OAU91413DXXAK7M0T9QGRBW2B0PL97FTG' where id=9; -update noar ti set v1='OAU91413DXXAK7M0T9QGRBW2B0PL97FTG' where id=9; -update noar tt set v2='EX4Y7MO577Z0NOCSSA52PA584HZ896YOJ' where id=9; -update noar ti set v2='EX4Y7MO577Z0NOCSSA52PA584HZ896YOJ' where id=9; -update noar tt set v3='TNJVERII0US72LZJOAP87UT6ZS320JI4C' where id=9; -update noar ti set v3='TNJVERII0US72LZJOAP87UT6ZS320JI4C' where id=9; -update noar tt set v0='KX4VD5NDNQYREB9HCNE40PFWIFWJNQCM8' where id=10; -update noar ti set v0='KX4VD5NDNQYREB9HCNE40PFWIFWJNQCM8' where id=10; -update noar tt set v1='MSBBYB879R6P45IGSCA3PV7TVYU6SMDJW' where id=10; -update noar ti set v1='MSBBYB879R6P45IGSCA3PV7TVYU6SMDJW' where id=10; -update noar tt set v2='61UJL0OACRSO64FGWGFYQRC1DR8OI1W7Z' where id=10; -update noar ti set v2='61UJL0OACRSO64FGWGFYQRC1DR8OI1W7Z' where id=10; -update noar tt set v3='DJA5KVC44MAUOXVW58IXTY8KVDJ60W0RU' where id=10; -update noar ti set v3='DJA5KVC44MAUOXVW58IXTY8KVDJ60W0RU' where id=10; -update noar tt set v0='F3KKDXYITEX2ZJGGXTFX12AK18R722YKV' where id=11; -update noar ti set v0='F3KKDXYITEX2ZJGGXTFX12AK18R722YKV' where id=11; -update noar tt set v1='BO0GMVUCD7J1SOKOM69WERXWQKET0AQOQ' where id=11; -update noar ti set v1='BO0GMVUCD7J1SOKOM69WERXWQKET0AQOQ' where id=11; -update noar tt set v2='C5H8G7L00U1EF6Z6J6V6ZGGCU6G4GITBM' where id=11; -update noar ti set v2='C5H8G7L00U1EF6Z6J6V6ZGGCU6G4GITBM' where id=11; -update noar tt set v3='X0FD3CKW82J2LAPC199SJV81Y6AKH3261' where id=11; -update noar ti set v3='X0FD3CKW82J2LAPC199SJV81Y6AKH3261' where id=11; -update noar tt set v0='J9M0SX7VQAJWD5RSY6OQRH54ZWPKTTRIG' where id=12; -update noar ti set v0='J9M0SX7VQAJWD5RSY6OQRH54ZWPKTTRIG' where id=12; -update noar tt set v1='MSWTOLNBO3TVXVUTQ418BHXJWVTIYFYP3' where id=12; -update noar ti set v1='MSWTOLNBO3TVXVUTQ418BHXJWVTIYFYP3' where id=12; -update noar tt set v2='BURRPFBYSCQCQA1P1B5GDN2FDI7KKBQD2' where id=12; -update noar ti set v2='BURRPFBYSCQCQA1P1B5GDN2FDI7KKBQD2' where id=12; -update noar tt set v3='AENI8YAP7HCL1VYZS7P7IPV7M4B9P16WR' where id=12; -update noar ti set v3='AENI8YAP7HCL1VYZS7P7IPV7M4B9P16WR' where id=12; -update noar tt set v0='T33IEGIGPA4YJTIGFY01S9ROY0WN2AHPJ' where id=13; -update noar ti set v0='T33IEGIGPA4YJTIGFY01S9ROY0WN2AHPJ' where id=13; -update noar tt set v1='A0KOR8TK5S1YUCGTJ141UAGPJC0IQUHA1' where id=13; -update noar ti set v1='A0KOR8TK5S1YUCGTJ141UAGPJC0IQUHA1' where id=13; -update noar tt set v2='IBO47UGFLR5YMS3OHOES3TFR2RJTNAUI4' where id=13; -update noar ti set v2='IBO47UGFLR5YMS3OHOES3TFR2RJTNAUI4' where id=13; -update noar tt set v3='9IJN8SQ9DKBSDZMVP5RTJ1N183N22LX9W' where id=13; -update noar ti set v3='9IJN8SQ9DKBSDZMVP5RTJ1N183N22LX9W' where id=13; -update noar tt set v0='VK7YYZ4DRDRLOXHDHO2376CMZ8O61OQG4' where id=14; -update noar ti set v0='VK7YYZ4DRDRLOXHDHO2376CMZ8O61OQG4' where id=14; -update noar tt set v1='303BLIRJSIBC6RCSG6MUFJ0YDRJDA35UI' where id=14; -update noar ti set v1='303BLIRJSIBC6RCSG6MUFJ0YDRJDA35UI' where id=14; -update noar tt set v2='NTYW8UZE23Q6HGHCXWO25G1DRHS0L725A' where id=14; -update noar ti set v2='NTYW8UZE23Q6HGHCXWO25G1DRHS0L725A' where id=14; -update noar tt set v3='0DKIBFHRCR8T2T5VHOZM6V4TOC787AT4T' where id=14; -update noar ti set v3='0DKIBFHRCR8T2T5VHOZM6V4TOC787AT4T' where id=14; -update noar tt set v0='5YU92WTZXROC00E31GCF5R3WS1FRJJ1T0' where id=15; -update noar ti set v0='5YU92WTZXROC00E31GCF5R3WS1FRJJ1T0' where id=15; -update noar tt set v1='03M43BN1ND9B2JUU03B49IPTQE2LM7FA5' where id=15; -update noar ti set v1='03M43BN1ND9B2JUU03B49IPTQE2LM7FA5' where id=15; -update noar tt set v2='4XIQFZDX4MXHH6BHKVZVJN0ROTRPZFXEJ' where id=15; -update noar ti set v2='4XIQFZDX4MXHH6BHKVZVJN0ROTRPZFXEJ' where id=15; -update noar tt set v3='M2SGE4XHADZWBQ1Q5QBN5LIYP82JJDDHE' where id=15; -update noar ti set v3='M2SGE4XHADZWBQ1Q5QBN5LIYP82JJDDHE' where id=15; -update noar tt set v0='DRVDZI5ZFD3UFRDA7Y4EZSXU6KTEXM5QU' where id=16; -update noar ti set v0='DRVDZI5ZFD3UFRDA7Y4EZSXU6KTEXM5QU' where id=16; -update noar tt set v1='GH8OBG3N7IT91MR877SKTLM6DVZS9N9HL' where id=16; -update noar ti set v1='GH8OBG3N7IT91MR877SKTLM6DVZS9N9HL' where id=16; -update noar tt set v2='P6ZM3JF3NJHTYHCRRLT1BAINKHSJR42XO' where id=16; -update noar ti set v2='P6ZM3JF3NJHTYHCRRLT1BAINKHSJR42XO' where id=16; -update noar tt set v3='GC2LVNHRNJ0WY14FJLVKFHVU4WKD1P2WJ' where id=16; -update noar ti set v3='GC2LVNHRNJ0WY14FJLVKFHVU4WKD1P2WJ' where id=16; -update noar tt set v0='7DPKSYB9BNPQR6ZFXUXGAUW5AAM49F6G5' where id=17; -update noar ti set v0='7DPKSYB9BNPQR6ZFXUXGAUW5AAM49F6G5' where id=17; -update noar tt set v1='P5BHDAG1RH0P5HCM9584JBPXNM1MW4Z67' where id=17; -update noar ti set v1='P5BHDAG1RH0P5HCM9584JBPXNM1MW4Z67' where id=17; -update noar tt set v2='ZGR15VERBSHFBXOE0X3IDQ1MGOS1CILMK' where id=17; -update noar ti set v2='ZGR15VERBSHFBXOE0X3IDQ1MGOS1CILMK' where id=17; -update noar tt set v3='6SGXIXYGD6EBYVQMMNDTE5GN229LZ2XJM' where id=17; -update noar ti set v3='6SGXIXYGD6EBYVQMMNDTE5GN229LZ2XJM' where id=17; -update noar tt set v0='2WQZCHQZ6YWLS4MHVN7MAXSA3R603FGX3' where id=18; -update noar ti set v0='2WQZCHQZ6YWLS4MHVN7MAXSA3R603FGX3' where id=18; -update noar tt set v1='TNQEFHY5LKKX5JRH78N952QAUJ88ZFX3R' where id=18; -update noar ti set v1='TNQEFHY5LKKX5JRH78N952QAUJ88ZFX3R' where id=18; -update noar tt set v2='THRKPBKBBIB1IZO5CMSULQA73FOLUG540' where id=18; -update noar ti set v2='THRKPBKBBIB1IZO5CMSULQA73FOLUG540' where id=18; -update noar tt set v3='QZW6GAXQ41EIWZ841PIMWTHA7P05FFCWS' where id=18; -update noar ti set v3='QZW6GAXQ41EIWZ841PIMWTHA7P05FFCWS' where id=18; -update noar tt set v0='5EDU1258VE5LPJQRYTHZ8HIOZFQ81R2WN' where id=19; -update noar ti set v0='5EDU1258VE5LPJQRYTHZ8HIOZFQ81R2WN' where id=19; -update noar tt set v1='775SD126XX2YC689R3K1MHUWD7IDGXC8D' where id=19; -update noar ti set v1='775SD126XX2YC689R3K1MHUWD7IDGXC8D' where id=19; -update noar tt set v2='WGFIGIJ4TXCLVTDMHMMBOL9TYSJT2U5J7' where id=19; -update noar ti set v2='WGFIGIJ4TXCLVTDMHMMBOL9TYSJT2U5J7' where id=19; -update noar tt set v3='B9R4R8WVPSW8UJSLM5XFHDLR4TR2VFAOQ' where id=19; -update noar ti set v3='B9R4R8WVPSW8UJSLM5XFHDLR4TR2VFAOQ' where id=19; -update noar tt set v0='JLL0RRC526GSC0OZ81S18P5RF6Z693OAB' where id=20; -update noar ti set v0='JLL0RRC526GSC0OZ81S18P5RF6Z693OAB' where id=20; -update noar tt set v1='4CFN1V3SZHMB880GPEMN4OZVS7JUFKD7H' where id=20; -update noar ti set v1='4CFN1V3SZHMB880GPEMN4OZVS7JUFKD7H' where id=20; -update noar tt set v2='35QG2JL3N7FAXBV8VXBVNPWBYR9DFQK2J' where id=20; -update noar ti set v2='35QG2JL3N7FAXBV8VXBVNPWBYR9DFQK2J' where id=20; -update noar tt set v3='9OBSW8L1SSF2BH2HGKJVT1AJ3IUV2SV2T' where id=20; -update noar ti set v3='9OBSW8L1SSF2BH2HGKJVT1AJ3IUV2SV2T' where id=20; -update noar tt set v0='46WNV380G1UCHVV2Y088QPDKW2XH7IQ34' where id=21; -update noar ti set v0='46WNV380G1UCHVV2Y088QPDKW2XH7IQ34' where id=21; -update noar tt set v1='UT74SRDGJ162PST8KYOHLNR9NBX4FDNZB' where id=21; -update noar ti set v1='UT74SRDGJ162PST8KYOHLNR9NBX4FDNZB' where id=21; -update noar tt set v2='PFNMIR36SAP05GKA8V84QPAEXFFXTJF1L' where id=21; -update noar ti set v2='PFNMIR36SAP05GKA8V84QPAEXFFXTJF1L' where id=21; -update noar tt set v3='8JPG5Z2F7Q82TXDAKY5XV5833VAIOXGS5' where id=21; -update noar ti set v3='8JPG5Z2F7Q82TXDAKY5XV5833VAIOXGS5' where id=21; -update noar tt set v0='0UKXDDT0GGG902TJUTEXP3WZX9YGUGI2H' where id=22; -update noar ti set v0='0UKXDDT0GGG902TJUTEXP3WZX9YGUGI2H' where id=22; -update noar tt set v1='KOJB5S4VNENEDL295MJCKSG0U6EWK2PCU' where id=22; -update noar ti set v1='KOJB5S4VNENEDL295MJCKSG0U6EWK2PCU' where id=22; -update noar tt set v2='U0V3DCABX2ZDQ6RSB5PFLFNY2J01GCK6F' where id=22; -update noar ti set v2='U0V3DCABX2ZDQ6RSB5PFLFNY2J01GCK6F' where id=22; -update noar tt set v3='0Z3TPX143JBX447B6NJ3LWYMLZ00BBWKK' where id=22; -update noar ti set v3='0Z3TPX143JBX447B6NJ3LWYMLZ00BBWKK' where id=22; -update noar tt set v0='ZY8EE75LVSXW4AU3EIL3B985J4TOH5IO1' where id=23; -update noar ti set v0='ZY8EE75LVSXW4AU3EIL3B985J4TOH5IO1' where id=23; -update noar tt set v1='D5FD17Z0K5GAPV0CMS50B2IV75V4IUXZQ' where id=23; -update noar ti set v1='D5FD17Z0K5GAPV0CMS50B2IV75V4IUXZQ' where id=23; -update noar tt set v2='7MUR2EHV1TRV16HNTPJ00LOO01798AFNB' where id=23; -update noar ti set v2='7MUR2EHV1TRV16HNTPJ00LOO01798AFNB' where id=23; -update noar tt set v3='AREQ7QKLJF6ZN0Z0UK55U2MSYDAYELT23' where id=23; -update noar ti set v3='AREQ7QKLJF6ZN0Z0UK55U2MSYDAYELT23' where id=23; -update noar tt set v0='4Q504T13MWXR6ULK0YUWCRI4G3V50P6PF' where id=24; -update noar ti set v0='4Q504T13MWXR6ULK0YUWCRI4G3V50P6PF' where id=24; -update noar tt set v1='UK541KYG7R7XHGMES2U39VYTK3QMIP2I1' where id=24; -update noar ti set v1='UK541KYG7R7XHGMES2U39VYTK3QMIP2I1' where id=24; -update noar tt set v2='6BXFG7ZUBWMWKFYU4HX4XCXFBQEGU6ARA' where id=24; -update noar ti set v2='6BXFG7ZUBWMWKFYU4HX4XCXFBQEGU6ARA' where id=24; -update noar tt set v3='UXGAOQUET56F4Q22WM3HO3RR8STL3BTGX' where id=24; -update noar ti set v3='UXGAOQUET56F4Q22WM3HO3RR8STL3BTGX' where id=24; -update noar tt set v0='6MYJ4932OBD45L7YC3L5MRMS2PK3X4ODU' where id=25; -update noar ti set v0='6MYJ4932OBD45L7YC3L5MRMS2PK3X4ODU' where id=25; -update noar tt set v1='JVTGCDRKTA4GXTGEKXDFDV7PKMOGI9IG9' where id=25; -update noar ti set v1='JVTGCDRKTA4GXTGEKXDFDV7PKMOGI9IG9' where id=25; -update noar tt set v2='SRXI5GYYDI859KJSLAONF19LMWABF8WYK' where id=25; -update noar ti set v2='SRXI5GYYDI859KJSLAONF19LMWABF8WYK' where id=25; -update noar tt set v3='EFXY8QR9T5F65EG2W2R9JHT8WXCF0EK87' where id=25; -update noar ti set v3='EFXY8QR9T5F65EG2W2R9JHT8WXCF0EK87' where id=25; -update noar tt set v0='NSO4PI7CNZW5A428BJRH10CJBEH5PZ47Z' where id=26; -update noar ti set v0='NSO4PI7CNZW5A428BJRH10CJBEH5PZ47Z' where id=26; -update noar tt set v1='8KRE4HS895B1E53HZFOUC1PHZSKU1E8TD' where id=26; -update noar ti set v1='8KRE4HS895B1E53HZFOUC1PHZSKU1E8TD' where id=26; -update noar tt set v2='M2RROHXDEYBF08RUB7VVED0WMY4FPVDEA' where id=26; -update noar ti set v2='M2RROHXDEYBF08RUB7VVED0WMY4FPVDEA' where id=26; -update noar tt set v3='AMIARU95LSVVGGSA9GMRHMWR81NTHDJ2S' where id=26; -update noar ti set v3='AMIARU95LSVVGGSA9GMRHMWR81NTHDJ2S' where id=26; -update noar tt set v0='1NGJS2DZYT851F7V7Q9EN69E5OG6NI2GS' where id=27; -update noar ti set v0='1NGJS2DZYT851F7V7Q9EN69E5OG6NI2GS' where id=27; -update noar tt set v1='KDHJFRBIFTSSL50L43SRL8NIEH4AC29TV' where id=27; -update noar ti set v1='KDHJFRBIFTSSL50L43SRL8NIEH4AC29TV' where id=27; -update noar tt set v2='UWNFRLAWJFIE8HTGNVZSLJV8UWFOWYVGM' where id=27; -update noar ti set v2='UWNFRLAWJFIE8HTGNVZSLJV8UWFOWYVGM' where id=27; -update noar tt set v3='CM9KK9IA3R0JS36E4OPKN4X5P3J3QGXGW' where id=27; -update noar ti set v3='CM9KK9IA3R0JS36E4OPKN4X5P3J3QGXGW' where id=27; -update noar tt set v0='WXVL0VAU46AEAECLL4IWODIURRN1NRJ61' where id=28; -update noar ti set v0='WXVL0VAU46AEAECLL4IWODIURRN1NRJ61' where id=28; -update noar tt set v1='FLNXU7KAEBYIA1QVIPGAC0HQGA7CGYB97' where id=28; -update noar ti set v1='FLNXU7KAEBYIA1QVIPGAC0HQGA7CGYB97' where id=28; -update noar tt set v2='HZ5SSKV25ICEW6MOX1L5FTDCP5LKCTXXT' where id=28; -update noar ti set v2='HZ5SSKV25ICEW6MOX1L5FTDCP5LKCTXXT' where id=28; -update noar tt set v3='XNGMLS5BJ2IOZM3O0ZN5RQ5OU0O53KFQI' where id=28; -update noar ti set v3='XNGMLS5BJ2IOZM3O0ZN5RQ5OU0O53KFQI' where id=28; -update noar tt set v0='8X5BD0AQOLFSQRBAUMWH4ZH7KMOJMPM0X' where id=29; -update noar ti set v0='8X5BD0AQOLFSQRBAUMWH4ZH7KMOJMPM0X' where id=29; -update noar tt set v1='VY2VPMVG4EY938I04X0J8QQJVY5Z82ZCF' where id=29; -update noar ti set v1='VY2VPMVG4EY938I04X0J8QQJVY5Z82ZCF' where id=29; -update noar tt set v2='2DWL9ZHLGQKW5FX2WWLHHMXIECOP8KX5H' where id=29; -update noar ti set v2='2DWL9ZHLGQKW5FX2WWLHHMXIECOP8KX5H' where id=29; -update noar tt set v3='B8YMT03HGSMR4G1YQL64ZF89BFMOA3KVI' where id=29; -update noar ti set v3='B8YMT03HGSMR4G1YQL64ZF89BFMOA3KVI' where id=29; -update noar tt set v0='9TAHULKNSN78RRNNZCLZUVYNR15WBXPQ4' where id=30; -update noar ti set v0='9TAHULKNSN78RRNNZCLZUVYNR15WBXPQ4' where id=30; -update noar tt set v1='S90UAF4G65THLKJ32ZYHA1Q5ZMLOIK6ZL' where id=30; -update noar ti set v1='S90UAF4G65THLKJ32ZYHA1Q5ZMLOIK6ZL' where id=30; -update noar tt set v2='XQ3OENJ87EJGBGVR39SSBBPRPNDO7XOS5' where id=30; -update noar ti set v2='XQ3OENJ87EJGBGVR39SSBBPRPNDO7XOS5' where id=30; -update noar tt set v3='5M4X6EDWDA3VFBBCS5UMYGVL9BMNN0JD4' where id=30; -update noar ti set v3='5M4X6EDWDA3VFBBCS5UMYGVL9BMNN0JD4' where id=30; -update noar tt set v0='G9162K93ZFX25S2DA7WXGQPDTFWLWLUBZ' where id=31; -update noar ti set v0='G9162K93ZFX25S2DA7WXGQPDTFWLWLUBZ' where id=31; -update noar tt set v1='BPODCXXZ7O8GFZB9F6HNFU8E8JO5I825K' where id=31; -update noar ti set v1='BPODCXXZ7O8GFZB9F6HNFU8E8JO5I825K' where id=31; -update noar tt set v2='RPWSOAON5CGL6WZINYDISF7TCGITG2N4H' where id=31; -update noar ti set v2='RPWSOAON5CGL6WZINYDISF7TCGITG2N4H' where id=31; -update noar tt set v3='X9VFTE9H7U6VZ2XGY1Z190UIAQ34VWS7K' where id=31; -update noar ti set v3='X9VFTE9H7U6VZ2XGY1Z190UIAQ34VWS7K' where id=31; -update noar tt set v0='MSPBDFB032UUMC2FJLZFOUECQ6X9SY6FN' where id=32; -update noar ti set v0='MSPBDFB032UUMC2FJLZFOUECQ6X9SY6FN' where id=32; -update noar tt set v1='7E975JP7W479XYPVAAFVAM77KWJR2WDV4' where id=32; -update noar ti set v1='7E975JP7W479XYPVAAFVAM77KWJR2WDV4' where id=32; -update noar tt set v2='D0FKVNIBA7C0MRDG1YSW5LE1GRCGXIPG8' where id=32; -update noar ti set v2='D0FKVNIBA7C0MRDG1YSW5LE1GRCGXIPG8' where id=32; -update noar tt set v3='334N2FM0WB4O6SDH99VQTZNOGG21TOH9B' where id=32; -update noar ti set v3='334N2FM0WB4O6SDH99VQTZNOGG21TOH9B' where id=32; -update noar tt set v0='DCCZEXYNV3379AN2L2VM7FSRC15ZZM5D7' where id=33; -update noar ti set v0='DCCZEXYNV3379AN2L2VM7FSRC15ZZM5D7' where id=33; -update noar tt set v1='0M67C8QUZIA52ZKYHCMNP94WBU463XIIF' where id=33; -update noar ti set v1='0M67C8QUZIA52ZKYHCMNP94WBU463XIIF' where id=33; -update noar tt set v2='AIU7JVPC24UL6ZDCKG8XCQZSF66MD4CWI' where id=33; -update noar ti set v2='AIU7JVPC24UL6ZDCKG8XCQZSF66MD4CWI' where id=33; -update noar tt set v3='JI1W62A1K1IOZ9MY4PMC41RR15RW9K8SI' where id=33; -update noar ti set v3='JI1W62A1K1IOZ9MY4PMC41RR15RW9K8SI' where id=33; -update noar tt set v0='K3KOWVVOQD2SF82ZQ0FJ8M84JWR63GW7N' where id=34; -update noar ti set v0='K3KOWVVOQD2SF82ZQ0FJ8M84JWR63GW7N' where id=34; -update noar tt set v1='3RYTC4FST2JNIPZZLY3BVM6DNSV1BYGJO' where id=34; -update noar ti set v1='3RYTC4FST2JNIPZZLY3BVM6DNSV1BYGJO' where id=34; -update noar tt set v2='PGO9LB9WQQV6I18NB79CIVAOMW1UA5JG5' where id=34; -update noar ti set v2='PGO9LB9WQQV6I18NB79CIVAOMW1UA5JG5' where id=34; -update noar tt set v3='WXTST0S0NO9Q2XVKUFNLKNOHLPVR5WMW3' where id=34; -update noar ti set v3='WXTST0S0NO9Q2XVKUFNLKNOHLPVR5WMW3' where id=34; -update noar tt set v0='QCYAPRWZL02L8P0JHB9OYXZZUK7DKEMKZ' where id=35; -update noar ti set v0='QCYAPRWZL02L8P0JHB9OYXZZUK7DKEMKZ' where id=35; -update noar tt set v1='QX6HNVX1TSMS3KDCTS2UDMD01OSBHGSQA' where id=35; -update noar ti set v1='QX6HNVX1TSMS3KDCTS2UDMD01OSBHGSQA' where id=35; -update noar tt set v2='9A6BAW9ZMGUU1X16TWO30NZCKWD4C06TQ' where id=35; -update noar ti set v2='9A6BAW9ZMGUU1X16TWO30NZCKWD4C06TQ' where id=35; -update noar tt set v3='K6S6JOOP7RYSTYT4VEXL71VOGFBY4IPJD' where id=35; -update noar ti set v3='K6S6JOOP7RYSTYT4VEXL71VOGFBY4IPJD' where id=35; -update noar tt set v0='RI4ANVX8PMG3JB152YV1GBHGC4TL5E5SN' where id=36; -update noar ti set v0='RI4ANVX8PMG3JB152YV1GBHGC4TL5E5SN' where id=36; -update noar tt set v1='YHU9HEQYPBN5FGJZ74CBMBHAS24PMSCIE' where id=36; -update noar ti set v1='YHU9HEQYPBN5FGJZ74CBMBHAS24PMSCIE' where id=36; -update noar tt set v2='NWPLUBLTD2UXNG1IDR1UZAFE4VHDYDJPV' where id=36; -update noar ti set v2='NWPLUBLTD2UXNG1IDR1UZAFE4VHDYDJPV' where id=36; -update noar tt set v3='3J7QSZA1789TZYPWLD5BBHY8VPBI8DZLX' where id=36; -update noar ti set v3='3J7QSZA1789TZYPWLD5BBHY8VPBI8DZLX' where id=36; -update noar tt set v0='2T7IMNEKKTKT5UPRSSPK1868D0IAPWCVP' where id=37; -update noar ti set v0='2T7IMNEKKTKT5UPRSSPK1868D0IAPWCVP' where id=37; -update noar tt set v1='G2VKZN58QXC9K7DDT0JGXQDLWIAD0SJF1' where id=37; -update noar ti set v1='G2VKZN58QXC9K7DDT0JGXQDLWIAD0SJF1' where id=37; -update noar tt set v2='DJPEITEJ6M70B1MWMRIAXUIGQGTFOYYX7' where id=37; -update noar ti set v2='DJPEITEJ6M70B1MWMRIAXUIGQGTFOYYX7' where id=37; -update noar tt set v3='62XLPFM3EUXBUEP4FBM4X7I6I08NMWXSM' where id=37; -update noar ti set v3='62XLPFM3EUXBUEP4FBM4X7I6I08NMWXSM' where id=37; -update noar tt set v0='R912P2HF5EHVFY6OYWY328BV0MJWIYB02' where id=38; -update noar ti set v0='R912P2HF5EHVFY6OYWY328BV0MJWIYB02' where id=38; -update noar tt set v1='ITQL0YP43X806V16F60HUPA0FCKKDEC5D' where id=38; -update noar ti set v1='ITQL0YP43X806V16F60HUPA0FCKKDEC5D' where id=38; -update noar tt set v2='3MVKMCM37ET5Y3UJDMMS6885EM079QB3Z' where id=38; -update noar ti set v2='3MVKMCM37ET5Y3UJDMMS6885EM079QB3Z' where id=38; -update noar tt set v3='VMRBAP9TCGCN6X6FRBF5TM1JUMANKD9M6' where id=38; -update noar ti set v3='VMRBAP9TCGCN6X6FRBF5TM1JUMANKD9M6' where id=38; -update noar tt set v0='DT5E4D9CD7UG4RRZDU3NTGRGWLU8DREYP' where id=39; -update noar ti set v0='DT5E4D9CD7UG4RRZDU3NTGRGWLU8DREYP' where id=39; -update noar tt set v1='L9GU0DO74KS50X401JR3Q0A8WNUJ5IPEX' where id=39; -update noar ti set v1='L9GU0DO74KS50X401JR3Q0A8WNUJ5IPEX' where id=39; -update noar tt set v2='FA0WDNHT4UL3IMNHXK7OH3UKKHE1RX8N8' where id=39; -update noar ti set v2='FA0WDNHT4UL3IMNHXK7OH3UKKHE1RX8N8' where id=39; -update noar tt set v3='IFW24W1X1BB8UTD2VSQGK017K8OHXUW56' where id=39; -update noar ti set v3='IFW24W1X1BB8UTD2VSQGK017K8OHXUW56' where id=39; -update noar tt set v0='MKJKE3COIAQ3A67Y0RYOHOLFKDLL9GWAJ' where id=40; -update noar ti set v0='MKJKE3COIAQ3A67Y0RYOHOLFKDLL9GWAJ' where id=40; -update noar tt set v1='GLID9S2KYZB9ACCUWPYKMEDXWP7TG9MFE' where id=40; -update noar ti set v1='GLID9S2KYZB9ACCUWPYKMEDXWP7TG9MFE' where id=40; -update noar tt set v2='ST2VEUTOE96PSUJDSE8PEQRMH8YB35CTM' where id=40; -update noar ti set v2='ST2VEUTOE96PSUJDSE8PEQRMH8YB35CTM' where id=40; -update noar tt set v3='A3XJVUHBILK9OHEPUD57RUIRZNVYLG63S' where id=40; -update noar ti set v3='A3XJVUHBILK9OHEPUD57RUIRZNVYLG63S' where id=40; -update noar tt set v0='3UWR1YYR5HS6ZDU6MRQI7Y15UE24DK2S3' where id=41; -update noar ti set v0='3UWR1YYR5HS6ZDU6MRQI7Y15UE24DK2S3' where id=41; -update noar tt set v1='VAA4210P14672GH4DM6L0ECZYZ09OSDW8' where id=41; -update noar ti set v1='VAA4210P14672GH4DM6L0ECZYZ09OSDW8' where id=41; -update noar tt set v2='B8F0TP4VR56U0LQ03DFHHK4JUJ9UB7ENT' where id=41; -update noar ti set v2='B8F0TP4VR56U0LQ03DFHHK4JUJ9UB7ENT' where id=41; -update noar tt set v3='FFQWF8RJT1PNQIEI57WSVIXHQ2LKTXCUP' where id=41; -update noar ti set v3='FFQWF8RJT1PNQIEI57WSVIXHQ2LKTXCUP' where id=41; -update noar tt set v0='O6VWMNB08WSKPY52C23PJ0EMB12D7M9ZA' where id=42; -update noar ti set v0='O6VWMNB08WSKPY52C23PJ0EMB12D7M9ZA' where id=42; -update noar tt set v1='XBXLZOAH7VXWIKBR2LWXG1NI53CZIXKQS' where id=42; -update noar ti set v1='XBXLZOAH7VXWIKBR2LWXG1NI53CZIXKQS' where id=42; -update noar tt set v2='ABJXY62V528OILRK03WD3Q9QBLFI1B28P' where id=42; -update noar ti set v2='ABJXY62V528OILRK03WD3Q9QBLFI1B28P' where id=42; -update noar tt set v3='AOXKZHVQHCA41PBLJJNSVEO2UEEFG2JK3' where id=42; -update noar ti set v3='AOXKZHVQHCA41PBLJJNSVEO2UEEFG2JK3' where id=42; -update noar tt set v0='9LHIQC9TVMFHHFI32KY0OS04GDZ1BTH0L' where id=43; -update noar ti set v0='9LHIQC9TVMFHHFI32KY0OS04GDZ1BTH0L' where id=43; -update noar tt set v1='RTS18K1IEHJNSA5NRQOZB4HAYBRZ0KJEV' where id=43; -update noar ti set v1='RTS18K1IEHJNSA5NRQOZB4HAYBRZ0KJEV' where id=43; -update noar tt set v2='V5XQW02KVYP37BSQA5E8MOMOT9VTMJ40I' where id=43; -update noar ti set v2='V5XQW02KVYP37BSQA5E8MOMOT9VTMJ40I' where id=43; -update noar tt set v3='5Y4B39JWO22GQ2N9P4EO1TLXTWDFT0DEN' where id=43; -update noar ti set v3='5Y4B39JWO22GQ2N9P4EO1TLXTWDFT0DEN' where id=43; -update noar tt set v0='PGKK16QDOOCE96HKCVBLEMDCKVG9V1JMO' where id=44; -update noar ti set v0='PGKK16QDOOCE96HKCVBLEMDCKVG9V1JMO' where id=44; -update noar tt set v1='78LW6GXX6Q16BPOVMOYSTYJWYHZ30TR8T' where id=44; -update noar ti set v1='78LW6GXX6Q16BPOVMOYSTYJWYHZ30TR8T' where id=44; -update noar tt set v2='QEAO4FTMGX0X009R64GRNAC0NRY8T0GOO' where id=44; -update noar ti set v2='QEAO4FTMGX0X009R64GRNAC0NRY8T0GOO' where id=44; -update noar tt set v3='2X16FM6TI5P79G3II2UQSLY1OVSAT12Q1' where id=44; -update noar ti set v3='2X16FM6TI5P79G3II2UQSLY1OVSAT12Q1' where id=44; -update noar tt set v0='ESXKX6USB9XY4FYXSD88PQI718391HAGN' where id=45; -update noar ti set v0='ESXKX6USB9XY4FYXSD88PQI718391HAGN' where id=45; -update noar tt set v1='0P2YNW03FRTHLLQ9FT78C37AUZ1TBV87F' where id=45; -update noar ti set v1='0P2YNW03FRTHLLQ9FT78C37AUZ1TBV87F' where id=45; -update noar tt set v2='413UKX649L2MF40T6HAZDMA9BESDN115E' where id=45; -update noar ti set v2='413UKX649L2MF40T6HAZDMA9BESDN115E' where id=45; -update noar tt set v3='2Z7REP7QMAKJAVBAWMVGLLFVOGVC4ADUP' where id=45; -update noar ti set v3='2Z7REP7QMAKJAVBAWMVGLLFVOGVC4ADUP' where id=45; -update noar tt set v0='8KI3Q799YHUYLMA944I8S0JVXGMXLVZSS' where id=46; -update noar ti set v0='8KI3Q799YHUYLMA944I8S0JVXGMXLVZSS' where id=46; -update noar tt set v1='TVI3CYJHZUT2AZSP876R33HS83Z5TPAW5' where id=46; -update noar ti set v1='TVI3CYJHZUT2AZSP876R33HS83Z5TPAW5' where id=46; -update noar tt set v2='RUQ9TZZR1NSFJVTK4220PVZXY8HNFOHQO' where id=46; -update noar ti set v2='RUQ9TZZR1NSFJVTK4220PVZXY8HNFOHQO' where id=46; -update noar tt set v3='MFMAMIJELQQ8IC9LCYM7UQ4MFXKESN5KN' where id=46; -update noar ti set v3='MFMAMIJELQQ8IC9LCYM7UQ4MFXKESN5KN' where id=46; -update noar tt set v0='8BYHXNU3NL88TA0WKJFIR4CV28YSEQMW3' where id=47; -update noar ti set v0='8BYHXNU3NL88TA0WKJFIR4CV28YSEQMW3' where id=47; -update noar tt set v1='QM4BZK70S004B16MVPFPE4MIPYNXEFSX0' where id=47; -update noar ti set v1='QM4BZK70S004B16MVPFPE4MIPYNXEFSX0' where id=47; -update noar tt set v2='S65PJ06W6S1K6TM82Y2T9FJV161KFAGT5' where id=47; -update noar ti set v2='S65PJ06W6S1K6TM82Y2T9FJV161KFAGT5' where id=47; -update noar tt set v3='YY6S5Y9EJ9NGN33SCYG3CQOE7H21UU1F0' where id=47; -update noar ti set v3='YY6S5Y9EJ9NGN33SCYG3CQOE7H21UU1F0' where id=47; -update noar tt set v0='TUSZUPWUJULY4NXRJJ654XQZ71REPCN62' where id=48; -update noar ti set v0='TUSZUPWUJULY4NXRJJ654XQZ71REPCN62' where id=48; -update noar tt set v1='OZU1HYIF3Y0T71NCTDFSSDMLEE6LLQ5GV' where id=48; -update noar ti set v1='OZU1HYIF3Y0T71NCTDFSSDMLEE6LLQ5GV' where id=48; -update noar tt set v2='DDOI7O9NTATXXM2FOBFP7D28YQQ2FDWSN' where id=48; -update noar ti set v2='DDOI7O9NTATXXM2FOBFP7D28YQQ2FDWSN' where id=48; -update noar tt set v3='C44MUD0KVWB2QXDWPR0TFU2AV56XF67LF' where id=48; -update noar ti set v3='C44MUD0KVWB2QXDWPR0TFU2AV56XF67LF' where id=48; -update noar tt set v0='MN5ZI8YZBWJJS8M9QBX25IU9XCNJHOMKM' where id=49; -update noar ti set v0='MN5ZI8YZBWJJS8M9QBX25IU9XCNJHOMKM' where id=49; -update noar tt set v1='5V1ER3RIF1HHF1UQ6KKOSH9MK7JV1XDP6' where id=49; -update noar ti set v1='5V1ER3RIF1HHF1UQ6KKOSH9MK7JV1XDP6' where id=49; -update noar tt set v2='JPVX4KE0GDYVTMOXZ8YWXHHFTZJ5A4LQR' where id=49; -update noar ti set v2='JPVX4KE0GDYVTMOXZ8YWXHHFTZJ5A4LQR' where id=49; -update noar tt set v3='1XWYOG4TBTULZZ8FH73O0WPQEEFCJEZOV' where id=49; -update noar ti set v3='1XWYOG4TBTULZZ8FH73O0WPQEEFCJEZOV' where id=49; -update noar tt set v0='COMYTADDRCBA0W7ORYHNUS7GYSQ44CPHD' where id=50; -update noar ti set v0='COMYTADDRCBA0W7ORYHNUS7GYSQ44CPHD' where id=50; -update noar tt set v1='UQGLOZP913RT96TX8PO1T7TEY9SNZA04B' where id=50; -update noar ti set v1='UQGLOZP913RT96TX8PO1T7TEY9SNZA04B' where id=50; -update noar tt set v2='XWFLBAJN7VEEB18QCDXLLFIXBTHUHQYYU' where id=50; -update noar ti set v2='XWFLBAJN7VEEB18QCDXLLFIXBTHUHQYYU' where id=50; -update noar tt set v3='JCR68CBYY518S9CUV1H67WZNZEW4VTXIH' where id=50; -update noar ti set v3='JCR68CBYY518S9CUV1H67WZNZEW4VTXIH' where id=50; -update noar tt set v0='AHARHQO29A125TK4DYNP1XM5NOHY98FCG' where id=51; -update noar ti set v0='AHARHQO29A125TK4DYNP1XM5NOHY98FCG' where id=51; -update noar tt set v1='T7BRSPTBZS5O6B6A3CNZSV4G2AZG9V41N' where id=51; -update noar ti set v1='T7BRSPTBZS5O6B6A3CNZSV4G2AZG9V41N' where id=51; -update noar tt set v2='VFGQCLMOGIZ5UMPCNE2YE0SILQ57P06W8' where id=51; -update noar ti set v2='VFGQCLMOGIZ5UMPCNE2YE0SILQ57P06W8' where id=51; -update noar tt set v3='YCGUIHJKGKH5I0A2ORBVSR8ROU9WA5TD8' where id=51; -update noar ti set v3='YCGUIHJKGKH5I0A2ORBVSR8ROU9WA5TD8' where id=51; -update noar tt set v0='BW5Y1UJMS97MDH7AXMSMJLCMOQR873JYP' where id=52; -update noar ti set v0='BW5Y1UJMS97MDH7AXMSMJLCMOQR873JYP' where id=52; -update noar tt set v1='MSNP8YLE46R6VDXWDI6ULZ6IUSQGYCREI' where id=52; -update noar ti set v1='MSNP8YLE46R6VDXWDI6ULZ6IUSQGYCREI' where id=52; -update noar tt set v2='LY5M8T1B2DAXX75JBXSX0OMJC4R7OWRSH' where id=52; -update noar ti set v2='LY5M8T1B2DAXX75JBXSX0OMJC4R7OWRSH' where id=52; -update noar tt set v3='WROEU2PQTO9J7FL6Z05FSA0TUJK4WUYTW' where id=52; -update noar ti set v3='WROEU2PQTO9J7FL6Z05FSA0TUJK4WUYTW' where id=52; -update noar tt set v0='RVGWA2P5SZ0V3WGJA20Z2AGZ14WNNX3MF' where id=53; -update noar ti set v0='RVGWA2P5SZ0V3WGJA20Z2AGZ14WNNX3MF' where id=53; -update noar tt set v1='MTEA9XO92VAPSAQT0IEZB21MM0JCDUBLB' where id=53; -update noar ti set v1='MTEA9XO92VAPSAQT0IEZB21MM0JCDUBLB' where id=53; -update noar tt set v2='7GH7XOZXQ41PYCL1CS6JZSNZGWVI72LWC' where id=53; -update noar ti set v2='7GH7XOZXQ41PYCL1CS6JZSNZGWVI72LWC' where id=53; -update noar tt set v3='QUBRHSONW9IX0MKCQ4UZM700OLBG3830N' where id=53; -update noar ti set v3='QUBRHSONW9IX0MKCQ4UZM700OLBG3830N' where id=53; -update noar tt set v0='ZVTO6EZ70ZROU9PUPUBVCTYG2DCN3LXPS' where id=54; -update noar ti set v0='ZVTO6EZ70ZROU9PUPUBVCTYG2DCN3LXPS' where id=54; -update noar tt set v1='URWVN56QBJE74QSR8MT644SPT4GWQKB50' where id=54; -update noar ti set v1='URWVN56QBJE74QSR8MT644SPT4GWQKB50' where id=54; -update noar tt set v2='TX79HNUJLAEOW6YH681LZ3TZPVF3QVSY7' where id=54; -update noar ti set v2='TX79HNUJLAEOW6YH681LZ3TZPVF3QVSY7' where id=54; -update noar tt set v3='F32NHURS5QZ7UCMW1ZLLMEJN4L4XJNBO9' where id=54; -update noar ti set v3='F32NHURS5QZ7UCMW1ZLLMEJN4L4XJNBO9' where id=54; -update noar tt set v0='FRMSA94HIAGIMN95QNHYDUZIGCVEPDV39' where id=55; -update noar ti set v0='FRMSA94HIAGIMN95QNHYDUZIGCVEPDV39' where id=55; -update noar tt set v1='SKKXZPI5WKBJRWLZGRAI5H7GCPVS8WL2X' where id=55; -update noar ti set v1='SKKXZPI5WKBJRWLZGRAI5H7GCPVS8WL2X' where id=55; -update noar tt set v2='GYGJ40LYFGSDS3ZE9TKXDRLR4OOTXP4NE' where id=55; -update noar ti set v2='GYGJ40LYFGSDS3ZE9TKXDRLR4OOTXP4NE' where id=55; -update noar tt set v3='11RRKQMO6DX54L4V09SBSHVKNSWOUFO5Y' where id=55; -update noar ti set v3='11RRKQMO6DX54L4V09SBSHVKNSWOUFO5Y' where id=55; -update noar tt set v0='4ZV817AXJ3UNA0SO6S6P188CWN9GIW5CA' where id=56; -update noar ti set v0='4ZV817AXJ3UNA0SO6S6P188CWN9GIW5CA' where id=56; -update noar tt set v1='TNYVAYCVX998HMIA8NH2TQ47CSQK5IX5W' where id=56; -update noar ti set v1='TNYVAYCVX998HMIA8NH2TQ47CSQK5IX5W' where id=56; -update noar tt set v2='ESZDWV23P3PQ10WXB5EDPTBEHFDA1E5DX' where id=56; -update noar ti set v2='ESZDWV23P3PQ10WXB5EDPTBEHFDA1E5DX' where id=56; -update noar tt set v3='381KXP22XWMN41GJVGJNGHKZRELKOQNHZ' where id=56; -update noar ti set v3='381KXP22XWMN41GJVGJNGHKZRELKOQNHZ' where id=56; -update noar tt set v0='NPNJBVTCADPVI4M0R1VTONQS7WXS3EH81' where id=57; -update noar ti set v0='NPNJBVTCADPVI4M0R1VTONQS7WXS3EH81' where id=57; -update noar tt set v1='AQBDV4A6BD3A3YAPKSBL7CN9Z6IBNUW82' where id=57; -update noar ti set v1='AQBDV4A6BD3A3YAPKSBL7CN9Z6IBNUW82' where id=57; -update noar tt set v2='380IWX6KBPG4HLZCRGADNXBTIZG53ABFD' where id=57; -update noar ti set v2='380IWX6KBPG4HLZCRGADNXBTIZG53ABFD' where id=57; -update noar tt set v3='G18OJAL461G4Q5HSKFKPXTU09QE2RLMY3' where id=57; -update noar ti set v3='G18OJAL461G4Q5HSKFKPXTU09QE2RLMY3' where id=57; -update noar tt set v0='DDN00LUKD3OEHQV4WQJ2HWDFYSENJCD5X' where id=58; -update noar ti set v0='DDN00LUKD3OEHQV4WQJ2HWDFYSENJCD5X' where id=58; -update noar tt set v1='3SYGNRCXS4XLTKLEZ04HUN9Y5M4UVZ4HM' where id=58; -update noar ti set v1='3SYGNRCXS4XLTKLEZ04HUN9Y5M4UVZ4HM' where id=58; -update noar tt set v2='3ISJ1V03VYDPPSLUWGFO9N0FTT89EZ0PT' where id=58; -update noar ti set v2='3ISJ1V03VYDPPSLUWGFO9N0FTT89EZ0PT' where id=58; -update noar tt set v3='BJEU63TZFNMVR7RDEQ0JPLVPAUN0LJVBY' where id=58; -update noar ti set v3='BJEU63TZFNMVR7RDEQ0JPLVPAUN0LJVBY' where id=58; -update noar tt set v0='LXEOXDHBGQSWPG70WI0JZZSLV1QU4VHDW' where id=59; -update noar ti set v0='LXEOXDHBGQSWPG70WI0JZZSLV1QU4VHDW' where id=59; -update noar tt set v1='QDIHTVPP9GXKS21JSH5ZW3JJ2NWE01WO2' where id=59; -update noar ti set v1='QDIHTVPP9GXKS21JSH5ZW3JJ2NWE01WO2' where id=59; -update noar tt set v2='FN8IF6ASEXAHAGEYX4EQJ8R3S72IMXY2M' where id=59; -update noar ti set v2='FN8IF6ASEXAHAGEYX4EQJ8R3S72IMXY2M' where id=59; -update noar tt set v3='886L60NO5VI7TTR7V4WDLOOIWBJ68BR6S' where id=59; -update noar ti set v3='886L60NO5VI7TTR7V4WDLOOIWBJ68BR6S' where id=59; -update noar tt set v0='E70TRHIS59ZZ4NQ59SHATDXZLOTEWLQ3R' where id=60; -update noar ti set v0='E70TRHIS59ZZ4NQ59SHATDXZLOTEWLQ3R' where id=60; -update noar tt set v1='BTTY4QM632NISEGAC7TA99Q41SHCB1WUC' where id=60; -update noar ti set v1='BTTY4QM632NISEGAC7TA99Q41SHCB1WUC' where id=60; -update noar tt set v2='IR32QC45X79KNWGGM095VO1J65S5A0TIV' where id=60; -update noar ti set v2='IR32QC45X79KNWGGM095VO1J65S5A0TIV' where id=60; -update noar tt set v3='T9YGLSNG8J7NHECBA5ESYDLOX74UQFA1G' where id=60; -update noar ti set v3='T9YGLSNG8J7NHECBA5ESYDLOX74UQFA1G' where id=60; -update noar tt set v0='ZFS6WYHV514XOXZISNCZL1EZA1U739PL6' where id=61; -update noar ti set v0='ZFS6WYHV514XOXZISNCZL1EZA1U739PL6' where id=61; -update noar tt set v1='5OOH8FMYR0650HTE6M59IWDEBOY9URERS' where id=61; -update noar ti set v1='5OOH8FMYR0650HTE6M59IWDEBOY9URERS' where id=61; -update noar tt set v2='Q2189FFZX3MR7DGWYRFMGK577WJLXLXO2' where id=61; -update noar ti set v2='Q2189FFZX3MR7DGWYRFMGK577WJLXLXO2' where id=61; -update noar tt set v3='30MPB9H0JZ2H5FPOZKS8F4OE7FWL3HCO4' where id=61; -update noar ti set v3='30MPB9H0JZ2H5FPOZKS8F4OE7FWL3HCO4' where id=61; -update noar tt set v0='BMH1ZK3GYMCOFENW8J4BO0Q70EFTGI92F' where id=62; -update noar ti set v0='BMH1ZK3GYMCOFENW8J4BO0Q70EFTGI92F' where id=62; -update noar tt set v1='QJBBTGAPNAX4M8J4WRJ3CED3IDCJ1C7UV' where id=62; -update noar ti set v1='QJBBTGAPNAX4M8J4WRJ3CED3IDCJ1C7UV' where id=62; -update noar tt set v2='8I7NGFA0NIB64E1CH2GRBBN0SP8ZU8KBV' where id=62; -update noar ti set v2='8I7NGFA0NIB64E1CH2GRBBN0SP8ZU8KBV' where id=62; -update noar tt set v3='RV0JH7XZNJM5OGU57SOQCP6KDZU0TSWNA' where id=62; -update noar ti set v3='RV0JH7XZNJM5OGU57SOQCP6KDZU0TSWNA' where id=62; -update noar tt set v0='8Q9EP1AH3V6CIVJDAPC5RONU6A49Z4UBM' where id=63; -update noar ti set v0='8Q9EP1AH3V6CIVJDAPC5RONU6A49Z4UBM' where id=63; -update noar tt set v1='DH8XT3SKF1VEML9GBIFVN5KDP0FDYUADL' where id=63; -update noar ti set v1='DH8XT3SKF1VEML9GBIFVN5KDP0FDYUADL' where id=63; -update noar tt set v2='T2LG8QNMINA7C1JCTQ8LSBLJ42QUGJ9VD' where id=63; -update noar ti set v2='T2LG8QNMINA7C1JCTQ8LSBLJ42QUGJ9VD' where id=63; -update noar tt set v3='SWR9BMKD2EQPIMFW6PEXNZBUHURY0KTKU' where id=63; -update noar ti set v3='SWR9BMKD2EQPIMFW6PEXNZBUHURY0KTKU' where id=63; -update noar tt set v0='3HOGCDN135GHCOLTLM8D2GUPTCJSH0UUP' where id=64; -update noar ti set v0='3HOGCDN135GHCOLTLM8D2GUPTCJSH0UUP' where id=64; -update noar tt set v1='8KL96S41VAINAHN8M5JU5Q4A6XCF7M4BD' where id=64; -update noar ti set v1='8KL96S41VAINAHN8M5JU5Q4A6XCF7M4BD' where id=64; -update noar tt set v2='KSJQ1OUGKWBN4J9JVGDRAGYHI02F65VN5' where id=64; -update noar ti set v2='KSJQ1OUGKWBN4J9JVGDRAGYHI02F65VN5' where id=64; -update noar tt set v3='0FF9J862P6PKCZE6A3APEK2QU5LIXY356' where id=64; -update noar ti set v3='0FF9J862P6PKCZE6A3APEK2QU5LIXY356' where id=64; -update noar tt set v0='J7CRG2XMNEB02IKV1ARDDK70N6Y0UIJBX' where id=65; -update noar ti set v0='J7CRG2XMNEB02IKV1ARDDK70N6Y0UIJBX' where id=65; -update noar tt set v1='QKDDHXYBZI0R27QFH6CWEN4GSWZWFNGAP' where id=65; -update noar ti set v1='QKDDHXYBZI0R27QFH6CWEN4GSWZWFNGAP' where id=65; -update noar tt set v2='P4DCWQ4ETGV59I4TUCN7OJTFZ79Y2WNZF' where id=65; -update noar ti set v2='P4DCWQ4ETGV59I4TUCN7OJTFZ79Y2WNZF' where id=65; -update noar tt set v3='HHSNM8AL42VZ1QD26ITZB24JUPIK90H2H' where id=65; -update noar ti set v3='HHSNM8AL42VZ1QD26ITZB24JUPIK90H2H' where id=65; -update noar tt set v0='U7QDG74C0O9E7RJ2B0NI7ZNKSMMP319FR' where id=66; -update noar ti set v0='U7QDG74C0O9E7RJ2B0NI7ZNKSMMP319FR' where id=66; -update noar tt set v1='21LZ0O6I11PGZ5Q9PU54AEWWH2DQCB42M' where id=66; -update noar ti set v1='21LZ0O6I11PGZ5Q9PU54AEWWH2DQCB42M' where id=66; -update noar tt set v2='XWEQ9A7RK3D3U4A6OGSUYJEY9F8857ODF' where id=66; -update noar ti set v2='XWEQ9A7RK3D3U4A6OGSUYJEY9F8857ODF' where id=66; -update noar tt set v3='722HYSC3XSUVC4FCDDU62XV3NNLHWINQG' where id=66; -update noar ti set v3='722HYSC3XSUVC4FCDDU62XV3NNLHWINQG' where id=66; -update noar tt set v0='EF9KFZ0Q574GMQJ9EXK6AVFHVN71W3J84' where id=67; -update noar ti set v0='EF9KFZ0Q574GMQJ9EXK6AVFHVN71W3J84' where id=67; -update noar tt set v1='L2J0SBTJQ26RCEOBZHLXGZA821K9D5BZC' where id=67; -update noar ti set v1='L2J0SBTJQ26RCEOBZHLXGZA821K9D5BZC' where id=67; -update noar tt set v2='J2EN7X25VKFNFSP9WS4IOD16T9RTFN5SG' where id=67; -update noar ti set v2='J2EN7X25VKFNFSP9WS4IOD16T9RTFN5SG' where id=67; -update noar tt set v3='D4II7SOYIQICLXPQMOPXI6N8V3YW5T11N' where id=67; -update noar ti set v3='D4II7SOYIQICLXPQMOPXI6N8V3YW5T11N' where id=67; -update noar tt set v0='7B5Y00JPNG3CUZ0URYRKYSB2QMOO7D2RE' where id=68; -update noar ti set v0='7B5Y00JPNG3CUZ0URYRKYSB2QMOO7D2RE' where id=68; -update noar tt set v1='Y55H3LWRWQ40KCA009OLN3XIYTBK6DOYJ' where id=68; -update noar ti set v1='Y55H3LWRWQ40KCA009OLN3XIYTBK6DOYJ' where id=68; -update noar tt set v2='05IQB948N1ZWWVOE4H9S7CPVN1HIXBAJI' where id=68; -update noar ti set v2='05IQB948N1ZWWVOE4H9S7CPVN1HIXBAJI' where id=68; -update noar tt set v3='P4QTPZ52FUM1HZVEQXPXHTTPB0AE77N4O' where id=68; -update noar ti set v3='P4QTPZ52FUM1HZVEQXPXHTTPB0AE77N4O' where id=68; -update noar tt set v0='YGN8KP34GE2OJKQA313IO0VD488FD4BSW' where id=69; -update noar ti set v0='YGN8KP34GE2OJKQA313IO0VD488FD4BSW' where id=69; -update noar tt set v1='HPQR5L105B7PMCXEXXX1O7YIFFNYVU6N3' where id=69; -update noar ti set v1='HPQR5L105B7PMCXEXXX1O7YIFFNYVU6N3' where id=69; -update noar tt set v2='LPIUASBAJI6MDE193R8YEHAZ910G2JZAQ' where id=69; -update noar ti set v2='LPIUASBAJI6MDE193R8YEHAZ910G2JZAQ' where id=69; -update noar tt set v3='DMR9KFWKZYCLZT0SXIFN898SAEI4JVVZN' where id=69; -update noar ti set v3='DMR9KFWKZYCLZT0SXIFN898SAEI4JVVZN' where id=69; -update noar tt set v0='E2QKXKRXDXU5CISL7RRQKZH65H1ND5T8L' where id=70; -update noar ti set v0='E2QKXKRXDXU5CISL7RRQKZH65H1ND5T8L' where id=70; -update noar tt set v1='KY8U273TV3S175XX41MBYIYYZEZ07HRHU' where id=70; -update noar ti set v1='KY8U273TV3S175XX41MBYIYYZEZ07HRHU' where id=70; -update noar tt set v2='E1SY1I1YHONFEXH8DQPRBXYKKM5EFEPXB' where id=70; -update noar ti set v2='E1SY1I1YHONFEXH8DQPRBXYKKM5EFEPXB' where id=70; -update noar tt set v3='V9Q3MY5BGNEGZDSBOH9V1CEFP8L5UQRYC' where id=70; -update noar ti set v3='V9Q3MY5BGNEGZDSBOH9V1CEFP8L5UQRYC' where id=70; -update noar tt set v0='HD6ZDFZ1Y05NXJ8GAC5Z7X52IXCSO57CE' where id=71; -update noar ti set v0='HD6ZDFZ1Y05NXJ8GAC5Z7X52IXCSO57CE' where id=71; -update noar tt set v1='OIYYCVQ8BW32K5HNJS8O3LJPGHZIEIWIW' where id=71; -update noar ti set v1='OIYYCVQ8BW32K5HNJS8O3LJPGHZIEIWIW' where id=71; -update noar tt set v2='6AA9R8FH4HPJCAYMG5FEGGIH8SLNYONS7' where id=71; -update noar ti set v2='6AA9R8FH4HPJCAYMG5FEGGIH8SLNYONS7' where id=71; -update noar tt set v3='8F5HTANJ45EYMRR5BUVQZO6XC3UQ0LQU7' where id=71; -update noar ti set v3='8F5HTANJ45EYMRR5BUVQZO6XC3UQ0LQU7' where id=71; -update noar tt set v0='HXDP5XI1YGXXD30DTPCG8GXH8FA3146U7' where id=72; -update noar ti set v0='HXDP5XI1YGXXD30DTPCG8GXH8FA3146U7' where id=72; -update noar tt set v1='00AGJNLXQVE9BHL1KP6KVKNLLMZXVD3L2' where id=72; -update noar ti set v1='00AGJNLXQVE9BHL1KP6KVKNLLMZXVD3L2' where id=72; -update noar tt set v2='HJWX6SF2IS19Z8R0IR7LN9X0INU5WCKPM' where id=72; -update noar ti set v2='HJWX6SF2IS19Z8R0IR7LN9X0INU5WCKPM' where id=72; -update noar tt set v3='YOJKU4F0DMW3VXUSCB0FYIZL9A741MOAL' where id=72; -update noar ti set v3='YOJKU4F0DMW3VXUSCB0FYIZL9A741MOAL' where id=72; -update noar tt set v0='54YDDTUJ7F338ADD6MG99GJDG3WP1BIHM' where id=73; -update noar ti set v0='54YDDTUJ7F338ADD6MG99GJDG3WP1BIHM' where id=73; -update noar tt set v1='OOVBMH2U3H0XZIGOUOFE3TW0LM6C2024Q' where id=73; -update noar ti set v1='OOVBMH2U3H0XZIGOUOFE3TW0LM6C2024Q' where id=73; -update noar tt set v2='ZGNXVYTHYFFUTJLLVYM6QSWBWGAF0B12B' where id=73; -update noar ti set v2='ZGNXVYTHYFFUTJLLVYM6QSWBWGAF0B12B' where id=73; -update noar tt set v3='Q7RLJLCOB7R3QWNESTCWQT88TNCSLRWZ6' where id=73; -update noar ti set v3='Q7RLJLCOB7R3QWNESTCWQT88TNCSLRWZ6' where id=73; -update noar tt set v0='SMCRS1V67Y08U5BX991NO082GWT2BPK80' where id=74; -update noar ti set v0='SMCRS1V67Y08U5BX991NO082GWT2BPK80' where id=74; -update noar tt set v1='0A28CB6Z3HVUFD1K8XW8HBIOMGZUVMO6S' where id=74; -update noar ti set v1='0A28CB6Z3HVUFD1K8XW8HBIOMGZUVMO6S' where id=74; -update noar tt set v2='75V771SGC1D9GC1AHHH6X7TA43YZDTMR6' where id=74; -update noar ti set v2='75V771SGC1D9GC1AHHH6X7TA43YZDTMR6' where id=74; -update noar tt set v3='4O3YYBGFM3ZB4ULJZRC6KR5CGJX5EXJHK' where id=74; -update noar ti set v3='4O3YYBGFM3ZB4ULJZRC6KR5CGJX5EXJHK' where id=74; -update noar tt set v0='Q2S43IWT3GDUCQI81IJTK7BJJ5L3ECEPV' where id=75; -update noar ti set v0='Q2S43IWT3GDUCQI81IJTK7BJJ5L3ECEPV' where id=75; -update noar tt set v1='3ZQ9I06NEAUY4AN2AB2XWM2GJXF7VGJWK' where id=75; -update noar ti set v1='3ZQ9I06NEAUY4AN2AB2XWM2GJXF7VGJWK' where id=75; -update noar tt set v2='A22SZG7S4QCRAB8R7LXT6TRNVN616SV44' where id=75; -update noar ti set v2='A22SZG7S4QCRAB8R7LXT6TRNVN616SV44' where id=75; -update noar tt set v3='QFFJ24MRB24MSJIW28YHIFFUQD1BKKXXC' where id=75; -update noar ti set v3='QFFJ24MRB24MSJIW28YHIFFUQD1BKKXXC' where id=75; -update noar tt set v0='Q5J8N0THHXCA8V1WK7CMJI8YYO244FFRP' where id=76; -update noar ti set v0='Q5J8N0THHXCA8V1WK7CMJI8YYO244FFRP' where id=76; -update noar tt set v1='W5P11AR03PUMZIV514BF68Q14HJZP5HG5' where id=76; -update noar ti set v1='W5P11AR03PUMZIV514BF68Q14HJZP5HG5' where id=76; -update noar tt set v2='54555ZFZQ9WW3ZB5EDJXA4M4XX3UFWF08' where id=76; -update noar ti set v2='54555ZFZQ9WW3ZB5EDJXA4M4XX3UFWF08' where id=76; -update noar tt set v3='QOPJBR9SLQUJY7QE9RWTSVTN9VPZUNSNS' where id=76; -update noar ti set v3='QOPJBR9SLQUJY7QE9RWTSVTN9VPZUNSNS' where id=76; -update noar tt set v0='SW36L31FQDUDKDZCRDG8AR29X3NAHY8T8' where id=77; -update noar ti set v0='SW36L31FQDUDKDZCRDG8AR29X3NAHY8T8' where id=77; -update noar tt set v1='J97LQNGAEBRMU74F5LBU71BNE7J0QM8P9' where id=77; -update noar ti set v1='J97LQNGAEBRMU74F5LBU71BNE7J0QM8P9' where id=77; -update noar tt set v2='2GZRW07GGP1P5MZMED64YME3OZ42CUPT2' where id=77; -update noar ti set v2='2GZRW07GGP1P5MZMED64YME3OZ42CUPT2' where id=77; -update noar tt set v3='SRICPEFRGMSKHEYK6PXT8Q6FO1BU24YAV' where id=77; -update noar ti set v3='SRICPEFRGMSKHEYK6PXT8Q6FO1BU24YAV' where id=77; -update noar tt set v0='XE2PTQ1BTPRVK0RV7VHRLBGDBSL4YY56Q' where id=78; -update noar ti set v0='XE2PTQ1BTPRVK0RV7VHRLBGDBSL4YY56Q' where id=78; -update noar tt set v1='A16OWCC43LW3H253ZJBFB9YUORY0ROGTT' where id=78; -update noar ti set v1='A16OWCC43LW3H253ZJBFB9YUORY0ROGTT' where id=78; -update noar tt set v2='N9ZFY5V8WW9MENCDRRADY61NTWLZR82RP' where id=78; -update noar ti set v2='N9ZFY5V8WW9MENCDRRADY61NTWLZR82RP' where id=78; -update noar tt set v3='7FR30M3ADDZ49Q2RR13L21B62HVTK4TN5' where id=78; -update noar ti set v3='7FR30M3ADDZ49Q2RR13L21B62HVTK4TN5' where id=78; -update noar tt set v0='X9PUMY0ZG1T3DSYS9L7459C7XFDWKNBRZ' where id=79; -update noar ti set v0='X9PUMY0ZG1T3DSYS9L7459C7XFDWKNBRZ' where id=79; -update noar tt set v1='MLN6VEL96SN2143ZBF35PB0K8X6278TOD' where id=79; -update noar ti set v1='MLN6VEL96SN2143ZBF35PB0K8X6278TOD' where id=79; -update noar tt set v2='1362321A6UEZ7YSPBNKR9V08ZH7548OOZ' where id=79; -update noar ti set v2='1362321A6UEZ7YSPBNKR9V08ZH7548OOZ' where id=79; -update noar tt set v3='N2V73YL4U821VGWBKDAZUI4WHGDDQO2FH' where id=79; -update noar ti set v3='N2V73YL4U821VGWBKDAZUI4WHGDDQO2FH' where id=79; -update noar tt set v0='4B8E20FNR5OWZTNI7SYN8JYLR50FW1HB6' where id=80; -update noar ti set v0='4B8E20FNR5OWZTNI7SYN8JYLR50FW1HB6' where id=80; -update noar tt set v1='ZYAP4KHYNI332X2W9MDT8M2H3PXBEFPMS' where id=80; -update noar ti set v1='ZYAP4KHYNI332X2W9MDT8M2H3PXBEFPMS' where id=80; -update noar tt set v2='IA45OKMD5P0SUFGK7OG6RDVFNFDLTAXQ9' where id=80; -update noar ti set v2='IA45OKMD5P0SUFGK7OG6RDVFNFDLTAXQ9' where id=80; -update noar tt set v3='WGRWSFGXRU3UJYDOSNT0HH6WYC9E2UQML' where id=80; -update noar ti set v3='WGRWSFGXRU3UJYDOSNT0HH6WYC9E2UQML' where id=80; -update noar tt set v0='K1NZYP5A3TVE59JLSULT9GKGES0WJMA7E' where id=81; -update noar ti set v0='K1NZYP5A3TVE59JLSULT9GKGES0WJMA7E' where id=81; -update noar tt set v1='1OXP30CIIQJOCTK72LT1OK36ZWBIN6FJK' where id=81; -update noar ti set v1='1OXP30CIIQJOCTK72LT1OK36ZWBIN6FJK' where id=81; -update noar tt set v2='M85XNBL432NZFLISC33CO3Z0KNES5H4JM' where id=81; -update noar ti set v2='M85XNBL432NZFLISC33CO3Z0KNES5H4JM' where id=81; -update noar tt set v3='2PG2GI9JWLTP5QBXLB2ZYDYDTBHQ3IRSJ' where id=81; -update noar ti set v3='2PG2GI9JWLTP5QBXLB2ZYDYDTBHQ3IRSJ' where id=81; -update noar tt set v0='A9I2GCJPJK4CNADPUVSXS2JEVK84H67XR' where id=82; -update noar ti set v0='A9I2GCJPJK4CNADPUVSXS2JEVK84H67XR' where id=82; -update noar tt set v1='2GCE1SV1IGRN98ZASFZTNCYQJHOM1L1UG' where id=82; -update noar ti set v1='2GCE1SV1IGRN98ZASFZTNCYQJHOM1L1UG' where id=82; -update noar tt set v2='HLU4Y21UHEWD97ODU0027LRKVMCJ1GGTS' where id=82; -update noar ti set v2='HLU4Y21UHEWD97ODU0027LRKVMCJ1GGTS' where id=82; -update noar tt set v3='EJPXNIE06RG2PS7KOVY5P4NJVC3PUU3VV' where id=82; -update noar ti set v3='EJPXNIE06RG2PS7KOVY5P4NJVC3PUU3VV' where id=82; -update noar tt set v0='D9S04KER4AI4OFX5Z1456GWVFZV6UD18M' where id=83; -update noar ti set v0='D9S04KER4AI4OFX5Z1456GWVFZV6UD18M' where id=83; -update noar tt set v1='N2NJAIYIZYZD8J6TGLXP24POVW91VEP5R' where id=83; -update noar ti set v1='N2NJAIYIZYZD8J6TGLXP24POVW91VEP5R' where id=83; -update noar tt set v2='ED6H5964IFYRRP8HMQ3N7ICN4OK5CAA71' where id=83; -update noar ti set v2='ED6H5964IFYRRP8HMQ3N7ICN4OK5CAA71' where id=83; -update noar tt set v3='W5NQR98L5J8YNFQCBLT2J6JOQM3TD5L2Y' where id=83; -update noar ti set v3='W5NQR98L5J8YNFQCBLT2J6JOQM3TD5L2Y' where id=83; -update noar tt set v0='IPL7DK90RMM6EEORED5VONN866QQXDERX' where id=84; -update noar ti set v0='IPL7DK90RMM6EEORED5VONN866QQXDERX' where id=84; -update noar tt set v1='A3UV5DFCCSMF9A0EWFW4XAEJSDYGKYZ8P' where id=84; -update noar ti set v1='A3UV5DFCCSMF9A0EWFW4XAEJSDYGKYZ8P' where id=84; -update noar tt set v2='9OLYM17E56DAHL80IWA46RLBA85JHRQ3O' where id=84; -update noar ti set v2='9OLYM17E56DAHL80IWA46RLBA85JHRQ3O' where id=84; -update noar tt set v3='KBML69OJP9LX4KE0JUNKIQIS8MNZP1DVQ' where id=84; -update noar ti set v3='KBML69OJP9LX4KE0JUNKIQIS8MNZP1DVQ' where id=84; -update noar tt set v0='7VZMOCE0YEUK32LJXQW51QOU0GMMDI1O8' where id=85; -update noar ti set v0='7VZMOCE0YEUK32LJXQW51QOU0GMMDI1O8' where id=85; -update noar tt set v1='7ZXQZM41BMMMSZYYP0L41SDSTIXOWWO3L' where id=85; -update noar ti set v1='7ZXQZM41BMMMSZYYP0L41SDSTIXOWWO3L' where id=85; -update noar tt set v2='0FVQZC3OM9JH0GULU3J9FP7XJ6LSEI6OZ' where id=85; -update noar ti set v2='0FVQZC3OM9JH0GULU3J9FP7XJ6LSEI6OZ' where id=85; -update noar tt set v3='4CN8G61XMGE56S1ETXPUQG2T6SAYMFQRH' where id=85; -update noar ti set v3='4CN8G61XMGE56S1ETXPUQG2T6SAYMFQRH' where id=85; -update noar tt set v0='EQNL9BPQEZFIBPK29BZA1VZB7H26UVDNQ' where id=86; -update noar ti set v0='EQNL9BPQEZFIBPK29BZA1VZB7H26UVDNQ' where id=86; -update noar tt set v1='9N9Y2Q84X94PXY4IHNIGMNCKLHL3J7S5N' where id=86; -update noar ti set v1='9N9Y2Q84X94PXY4IHNIGMNCKLHL3J7S5N' where id=86; -update noar tt set v2='KX0OQ10I1YL4TK9ZRDO245O0VX4NEJBV6' where id=86; -update noar ti set v2='KX0OQ10I1YL4TK9ZRDO245O0VX4NEJBV6' where id=86; -update noar tt set v3='QFHV89JZU5OS22X6TVYVISCROSZMOO1RH' where id=86; -update noar ti set v3='QFHV89JZU5OS22X6TVYVISCROSZMOO1RH' where id=86; -update noar tt set v0='O39YEURV7XZ5W35SD4ZEAQQLU0GIJU985' where id=87; -update noar ti set v0='O39YEURV7XZ5W35SD4ZEAQQLU0GIJU985' where id=87; -update noar tt set v1='HKWNBZ57F0ZUX8AR8N5X1ZFB59A0VK6IN' where id=87; -update noar ti set v1='HKWNBZ57F0ZUX8AR8N5X1ZFB59A0VK6IN' where id=87; -update noar tt set v2='D0UQJJ224G2X3AMUEQA5Q720PTWGABVCH' where id=87; -update noar ti set v2='D0UQJJ224G2X3AMUEQA5Q720PTWGABVCH' where id=87; -update noar tt set v3='WZ7BHPGL52LBR8FBVG3KG3MCZRZAVY47Z' where id=87; -update noar ti set v3='WZ7BHPGL52LBR8FBVG3KG3MCZRZAVY47Z' where id=87; -update noar tt set v0='G1KJPPG2CD18V57G1E19370KMH016QTK7' where id=88; -update noar ti set v0='G1KJPPG2CD18V57G1E19370KMH016QTK7' where id=88; -update noar tt set v1='3CCZKEVD0FQP33KP4CIN7778CSJ5TIX8J' where id=88; -update noar ti set v1='3CCZKEVD0FQP33KP4CIN7778CSJ5TIX8J' where id=88; -update noar tt set v2='VMN4DAEBQHWWA68APK3MSOS0NRP7PG0RJ' where id=88; -update noar ti set v2='VMN4DAEBQHWWA68APK3MSOS0NRP7PG0RJ' where id=88; -update noar tt set v3='MMQGLE2UJ8PL2KS4RDJ2PZWNGCCIINH7K' where id=88; -update noar ti set v3='MMQGLE2UJ8PL2KS4RDJ2PZWNGCCIINH7K' where id=88; -update noar tt set v0='9BTG0XOKV8GYMMR7LOR3V88R8412JKM48' where id=89; -update noar ti set v0='9BTG0XOKV8GYMMR7LOR3V88R8412JKM48' where id=89; -update noar tt set v1='7E0XYZPQD70XZ4HFGSIWJQHSF2FJS0H7Z' where id=89; -update noar ti set v1='7E0XYZPQD70XZ4HFGSIWJQHSF2FJS0H7Z' where id=89; -update noar tt set v2='MLKPLDJW6Q859KAFRAGOHG4V85B4ONRDX' where id=89; -update noar ti set v2='MLKPLDJW6Q859KAFRAGOHG4V85B4ONRDX' where id=89; -update noar tt set v3='C9795CRAF6AR32TOYYD6G1W0WOX6WB8U2' where id=89; -update noar ti set v3='C9795CRAF6AR32TOYYD6G1W0WOX6WB8U2' where id=89; -update noar tt set v0='6QAOPPHCOSHYHKQ0I2K1S4VJHZWH3F64R' where id=90; -update noar ti set v0='6QAOPPHCOSHYHKQ0I2K1S4VJHZWH3F64R' where id=90; -update noar tt set v1='R7BOE7RFKE8C9AVQQCE2CANSSIKFB4ETY' where id=90; -update noar ti set v1='R7BOE7RFKE8C9AVQQCE2CANSSIKFB4ETY' where id=90; -update noar tt set v2='DCEQVQKPVXQZZ6GWG4O65WKPQF8R1ZFSP' where id=90; -update noar ti set v2='DCEQVQKPVXQZZ6GWG4O65WKPQF8R1ZFSP' where id=90; -update noar tt set v3='ZOA3918RTFYQ6Q5MXWG9TM7L8G5U8WGDR' where id=90; -update noar ti set v3='ZOA3918RTFYQ6Q5MXWG9TM7L8G5U8WGDR' where id=90; -update noar tt set v0='5ZLU7HZ3QYRIGHOC8ETSRLX79QWY73YBY' where id=91; -update noar ti set v0='5ZLU7HZ3QYRIGHOC8ETSRLX79QWY73YBY' where id=91; -update noar tt set v1='GDDODFCDGO9A42KCC2ZOMCL70LM8U3V3H' where id=91; -update noar ti set v1='GDDODFCDGO9A42KCC2ZOMCL70LM8U3V3H' where id=91; -update noar tt set v2='0M2CSN6Z1X2S5AL0HF06MUJU3D02BTXN6' where id=91; -update noar ti set v2='0M2CSN6Z1X2S5AL0HF06MUJU3D02BTXN6' where id=91; -update noar tt set v3='K8WOXGDLKELE9FJ34Z6PVEKG468AYA3ZY' where id=91; -update noar ti set v3='K8WOXGDLKELE9FJ34Z6PVEKG468AYA3ZY' where id=91; -update noar tt set v0='NZSNG6PV75XWF0KRZ88RWCDIP224JGEVG' where id=92; -update noar ti set v0='NZSNG6PV75XWF0KRZ88RWCDIP224JGEVG' where id=92; -update noar tt set v1='VMIQDHJL7FK8FPT37IXKK839RWDFX1F0D' where id=92; -update noar ti set v1='VMIQDHJL7FK8FPT37IXKK839RWDFX1F0D' where id=92; -update noar tt set v2='320BLQ39CLOTR58HKZ52VJK18361767YP' where id=92; -update noar ti set v2='320BLQ39CLOTR58HKZ52VJK18361767YP' where id=92; -update noar tt set v3='6ZVOR2PKPL4AZCRH08UQP2MXMNVF2HKLA' where id=92; -update noar ti set v3='6ZVOR2PKPL4AZCRH08UQP2MXMNVF2HKLA' where id=92; -update noar tt set v0='PFWINPQSV8MS3JV3MSJXX2GGEGR2QSSUA' where id=93; -update noar ti set v0='PFWINPQSV8MS3JV3MSJXX2GGEGR2QSSUA' where id=93; -update noar tt set v1='K2DOTS8WQ5XTW0V4AQ7QQY44XMQUOBUGM' where id=93; -update noar ti set v1='K2DOTS8WQ5XTW0V4AQ7QQY44XMQUOBUGM' where id=93; -update noar tt set v2='WA5N6D873UWEWYAQ06SD6CEC109CGCWDV' where id=93; -update noar ti set v2='WA5N6D873UWEWYAQ06SD6CEC109CGCWDV' where id=93; -update noar tt set v3='FWM44LF6GNVPLOK87MMPJWVBSDZ22O630' where id=93; -update noar ti set v3='FWM44LF6GNVPLOK87MMPJWVBSDZ22O630' where id=93; -update noar tt set v0='IEUK6ZHBBMHDNFGZF4601PP4JWFMABAMK' where id=94; -update noar ti set v0='IEUK6ZHBBMHDNFGZF4601PP4JWFMABAMK' where id=94; -update noar tt set v1='10GZ9NF0ATDPHJM3UQOFTZPM37UC0DG5I' where id=94; -update noar ti set v1='10GZ9NF0ATDPHJM3UQOFTZPM37UC0DG5I' where id=94; -update noar tt set v2='R3ISPSPG3WJMOEJN18GEY2494RGVHBKR9' where id=94; -update noar ti set v2='R3ISPSPG3WJMOEJN18GEY2494RGVHBKR9' where id=94; -update noar tt set v3='X76DHCA5UDZ8QDL688ZEP4RCXCPT1Q6SN' where id=94; -update noar ti set v3='X76DHCA5UDZ8QDL688ZEP4RCXCPT1Q6SN' where id=94; -update noar tt set v0='IA3P8C6LCCCP3A28GKSAEME9C9EGG38U6' where id=95; -update noar ti set v0='IA3P8C6LCCCP3A28GKSAEME9C9EGG38U6' where id=95; -update noar tt set v1='C2SJHW0O5EIEWA7Q323ARS83A9TSUDM57' where id=95; -update noar ti set v1='C2SJHW0O5EIEWA7Q323ARS83A9TSUDM57' where id=95; -update noar tt set v2='D00MQ262E7PX2Z25Y9DMB5KDQSFQGE9NJ' where id=95; -update noar ti set v2='D00MQ262E7PX2Z25Y9DMB5KDQSFQGE9NJ' where id=95; -update noar tt set v3='09X077XI0W08QLEJ5QOL7DTSJJJ6WIEUH' where id=95; -update noar ti set v3='09X077XI0W08QLEJ5QOL7DTSJJJ6WIEUH' where id=95; -update noar tt set v0='NBKOZI0RNJVA3RQHAKBTS46CDV6MBY6MV' where id=96; -update noar ti set v0='NBKOZI0RNJVA3RQHAKBTS46CDV6MBY6MV' where id=96; -update noar tt set v1='L5B45BRUJ5BA5EKJL4RHTNO97J9O5J8CL' where id=96; -update noar ti set v1='L5B45BRUJ5BA5EKJL4RHTNO97J9O5J8CL' where id=96; -update noar tt set v2='HGPWFNBW76FTY2RJXUAJUE9A1XVO9SKKH' where id=96; -update noar ti set v2='HGPWFNBW76FTY2RJXUAJUE9A1XVO9SKKH' where id=96; -update noar tt set v3='U5BFEDZFJDN118WAA0VQ45CRUDTIMUCAD' where id=96; -update noar ti set v3='U5BFEDZFJDN118WAA0VQ45CRUDTIMUCAD' where id=96; -update noar tt set v0='HNBJW9XAI6I36QJOT92JNJT8MAO11CY6O' where id=97; -update noar ti set v0='HNBJW9XAI6I36QJOT92JNJT8MAO11CY6O' where id=97; -update noar tt set v1='YN3K2VMFRV1H6TQYH1SDRN2Q7K3CPQ6U2' where id=97; -update noar ti set v1='YN3K2VMFRV1H6TQYH1SDRN2Q7K3CPQ6U2' where id=97; -update noar tt set v2='402DS8LJ1QUGA4EEBFP32NBLKCY2HKOYB' where id=97; -update noar ti set v2='402DS8LJ1QUGA4EEBFP32NBLKCY2HKOYB' where id=97; -update noar tt set v3='L6JSFBN09KQTCE0TMQ6E5TG5M9R49HG33' where id=97; -update noar ti set v3='L6JSFBN09KQTCE0TMQ6E5TG5M9R49HG33' where id=97; -update noar tt set v0='SO9KHDO5UDDAD1RJ9YYPXZ3I5ZKU9CIE1' where id=98; -update noar ti set v0='SO9KHDO5UDDAD1RJ9YYPXZ3I5ZKU9CIE1' where id=98; -update noar tt set v1='KGBR4EUI238ATEPUSJPWHF4ZW9QYBT5B1' where id=98; -update noar ti set v1='KGBR4EUI238ATEPUSJPWHF4ZW9QYBT5B1' where id=98; -update noar tt set v2='44EJGJL6ST4QELA4OTB8QV06QWJ9MKKD7' where id=98; -update noar ti set v2='44EJGJL6ST4QELA4OTB8QV06QWJ9MKKD7' where id=98; -update noar tt set v3='70U3VG9612W1R9SX50F94HM5FYA8MG8Q9' where id=98; -update noar ti set v3='70U3VG9612W1R9SX50F94HM5FYA8MG8Q9' where id=98; -update noar tt set v0='TVTYJ99VH24RJ5PH8DSMX0JNQEW7IU9L0' where id=99; -update noar ti set v0='TVTYJ99VH24RJ5PH8DSMX0JNQEW7IU9L0' where id=99; -update noar tt set v1='4EWX41LPBMP7P0LW5XW8AOXC3YC5IB4H5' where id=99; -update noar ti set v1='4EWX41LPBMP7P0LW5XW8AOXC3YC5IB4H5' where id=99; -update noar tt set v2='EFTTO0NNEDA78AJLFIZVJUKY3BAE9NNLR' where id=99; -update noar ti set v2='EFTTO0NNEDA78AJLFIZVJUKY3BAE9NNLR' where id=99; -update noar tt set v3='0FXW7H2EYTQMK68YNRS116CNUGKL2NYPW' where id=99; -update noar ti set v3='0FXW7H2EYTQMK68YNRS116CNUGKL2NYPW' where id=99; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - f0 int not null, - v0 varbinary(32) not null, - v1 varbinary(32) not null, - v2 varbinary(32) not null, - v3 varbinary(32) not null, - b0 text not null -) engine=tokudb; -insert into tt values (1,2,'a','b','c','d','e'); -insert into tt values (2,3,'','','','',''); -insert into tt values (3,4,'','','','',''); -insert into tt values (4,5,'','','','',''); -insert into tt values (5,6,'','','','',''); -insert into tt values (6,7,'','','','',''); -insert into tt values (7,8,'','','','',''); -insert into tt values (8,9,'','','','',''); -insert into tt values (9,10,'','','','',''); -insert into tt values (10,11,'','','','',''); -insert into tt values (11,12,'','','','',''); -insert into tt values (12,13,'','','','',''); -insert into tt values (13,14,'','','','',''); -insert into tt values (14,15,'','','','',''); -insert into tt values (15,16,'','','','',''); -insert into tt values (16,17,'','','','',''); -insert into tt values (17,18,'','','','',''); -insert into tt values (18,19,'','','','',''); -insert into tt values (19,20,'','','','',''); -insert into tt values (20,21,'','','','',''); -insert into tt values (21,22,'','','','',''); -insert into tt values (22,23,'','','','',''); -insert into tt values (23,24,'','','','',''); -insert into tt values (24,25,'','','','',''); -insert into tt values (25,26,'','','','',''); -insert into tt values (26,27,'','','','',''); -insert into tt values (27,28,'','','','',''); -insert into tt values (28,29,'','','','',''); -insert into tt values (29,30,'','','','',''); -insert into tt values (30,31,'','','','',''); -insert into tt values (31,32,'','','','',''); -insert into tt values (32,33,'','','','',''); -insert into tt values (33,34,'','','','',''); -insert into tt values (34,35,'','','','',''); -insert into tt values (35,36,'','','','',''); -insert into tt values (36,37,'','','','',''); -insert into tt values (37,38,'','','','',''); -insert into tt values (38,39,'','','','',''); -insert into tt values (39,40,'','','','',''); -insert into tt values (40,41,'','','','',''); -insert into tt values (41,42,'','','','',''); -insert into tt values (42,43,'','','','',''); -insert into tt values (43,44,'','','','',''); -insert into tt values (44,45,'','','','',''); -insert into tt values (45,46,'','','','',''); -insert into tt values (46,47,'','','','',''); -insert into tt values (47,48,'','','','',''); -insert into tt values (48,49,'','','','',''); -insert into tt values (49,50,'','','','',''); -insert into tt values (50,51,'','','','',''); -insert into tt values (51,52,'','','','',''); -insert into tt values (52,53,'','','','',''); -insert into tt values (53,54,'','','','',''); -insert into tt values (54,55,'','','','',''); -insert into tt values (55,56,'','','','',''); -insert into tt values (56,57,'','','','',''); -insert into tt values (57,58,'','','','',''); -insert into tt values (58,59,'','','','',''); -insert into tt values (59,60,'','','','',''); -insert into tt values (60,61,'','','','',''); -insert into tt values (61,62,'','','','',''); -insert into tt values (62,63,'','','','',''); -insert into tt values (63,64,'','','','',''); -insert into tt values (64,65,'','','','',''); -insert into tt values (65,66,'','','','',''); -insert into tt values (66,67,'','','','',''); -insert into tt values (67,68,'','','','',''); -insert into tt values (68,69,'','','','',''); -insert into tt values (69,70,'','','','',''); -insert into tt values (70,71,'','','','',''); -insert into tt values (71,72,'','','','',''); -insert into tt values (72,73,'','','','',''); -insert into tt values (73,74,'','','','',''); -insert into tt values (74,75,'','','','',''); -insert into tt values (75,76,'','','','',''); -insert into tt values (76,77,'','','','',''); -insert into tt values (77,78,'','','','',''); -insert into tt values (78,79,'','','','',''); -insert into tt values (79,80,'','','','',''); -insert into tt values (80,81,'','','','',''); -insert into tt values (81,82,'','','','',''); -insert into tt values (82,83,'','','','',''); -insert into tt values (83,84,'','','','',''); -insert into tt values (84,85,'','','','',''); -insert into tt values (85,86,'','','','',''); -insert into tt values (86,87,'','','','',''); -insert into tt values (87,88,'','','','',''); -insert into tt values (88,89,'','','','',''); -insert into tt values (89,90,'','','','',''); -insert into tt values (90,91,'','','','',''); -insert into tt values (91,92,'','','','',''); -insert into tt values (92,93,'','','','',''); -insert into tt values (93,94,'','','','',''); -insert into tt values (94,95,'','','','',''); -insert into tt values (95,96,'','','','',''); -insert into tt values (96,97,'','','','',''); -insert into tt values (97,98,'','','','',''); -insert into tt values (98,99,'','','','',''); -insert into tt values (99,100,'','','','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='null this 0' where id=0; -update noar ti set v0='null this 0' where id=0; -update noar tt set v1='null is 1' where id=0; -update noar ti set v1='null is 1' where id=0; -update noar tt set v2='null a 2' where id=0; -update noar ti set v2='null a 2' where id=0; -update noar tt set v3='null test 3' where id=0; -update noar ti set v3='null test 3' where id=0; -update noar tt set v0='this 0' where id=1; -update noar ti set v0='this 0' where id=1; -update noar tt set v1='is 1' where id=1; -update noar ti set v1='is 1' where id=1; -update noar tt set v2='another 2' where id=1; -update noar ti set v2='another 2' where id=1; -update noar tt set v3='test 3' where id=1; -update noar ti set v3='test 3' where id=1; -update noar tt set v0='O9NHDDJMDKIUNPRVJYN6VQX87KBEDQKVI' where id=2; -update noar ti set v0='O9NHDDJMDKIUNPRVJYN6VQX87KBEDQKVI' where id=2; -update noar tt set v1='Q1QBW21GRLRYIVO9LD2K65Z15SIQBN14Z' where id=2; -update noar ti set v1='Q1QBW21GRLRYIVO9LD2K65Z15SIQBN14Z' where id=2; -update noar tt set v2='R7TZZ11QHWBAVG1O70GWHZ3YKZIRYDECE' where id=2; -update noar ti set v2='R7TZZ11QHWBAVG1O70GWHZ3YKZIRYDECE' where id=2; -update noar tt set v3='JKDR781NW03TKLDOHXGXU3FYZ1O7IDT5W' where id=2; -update noar ti set v3='JKDR781NW03TKLDOHXGXU3FYZ1O7IDT5W' where id=2; -update noar tt set v0='MLKEORAFHMQL32I8PMO90AUI66RJUC9DB' where id=3; -update noar ti set v0='MLKEORAFHMQL32I8PMO90AUI66RJUC9DB' where id=3; -update noar tt set v1='8E3WWOH8Y3PTZIIRULB7NYXS4JM21CZ2P' where id=3; -update noar ti set v1='8E3WWOH8Y3PTZIIRULB7NYXS4JM21CZ2P' where id=3; -update noar tt set v2='CX82OQAA14218YUU48UM3M852HHFPTI46' where id=3; -update noar ti set v2='CX82OQAA14218YUU48UM3M852HHFPTI46' where id=3; -update noar tt set v3='RQCJ1PK1U12TPRZGJ0F4RJ2JN06WVEO2G' where id=3; -update noar ti set v3='RQCJ1PK1U12TPRZGJ0F4RJ2JN06WVEO2G' where id=3; -update noar tt set v0='5WCN7V58LEQUG4BT7OXSGEC7L9U313SOG' where id=4; -update noar ti set v0='5WCN7V58LEQUG4BT7OXSGEC7L9U313SOG' where id=4; -update noar tt set v1='NQW2XNBHBTU6PTG7TX6I5ECTUUKANN0HE' where id=4; -update noar ti set v1='NQW2XNBHBTU6PTG7TX6I5ECTUUKANN0HE' where id=4; -update noar tt set v2='N1JY8MY9LMW97QOWN1H21O2U8ND0BEDAA' where id=4; -update noar ti set v2='N1JY8MY9LMW97QOWN1H21O2U8ND0BEDAA' where id=4; -update noar tt set v3='3OLVQ8ZMX26KVFGGHW92FADNTZNTLH1XD' where id=4; -update noar ti set v3='3OLVQ8ZMX26KVFGGHW92FADNTZNTLH1XD' where id=4; -update noar tt set v0='6SV21C45VCMQIWY5ZYY1B6247NKHRZILQ' where id=5; -update noar ti set v0='6SV21C45VCMQIWY5ZYY1B6247NKHRZILQ' where id=5; -update noar tt set v1='JWJ2PXPNJFIYYG19NU97EYO0FF7WH2NTA' where id=5; -update noar ti set v1='JWJ2PXPNJFIYYG19NU97EYO0FF7WH2NTA' where id=5; -update noar tt set v2='M9FLAKPCYBDFA1Q5LUEM6YA0JCZKBRUX7' where id=5; -update noar ti set v2='M9FLAKPCYBDFA1Q5LUEM6YA0JCZKBRUX7' where id=5; -update noar tt set v3='UID3D22OU1GJ4HFTP3CVQBIS0P4I1S2B5' where id=5; -update noar ti set v3='UID3D22OU1GJ4HFTP3CVQBIS0P4I1S2B5' where id=5; -update noar tt set v0='C0DD07GZZ1HMK7T0MNKEBAQA1WRND0IAW' where id=6; -update noar ti set v0='C0DD07GZZ1HMK7T0MNKEBAQA1WRND0IAW' where id=6; -update noar tt set v1='TMZWLUOEFJHLBGVS0SKU0IPUZ73VI6UMW' where id=6; -update noar ti set v1='TMZWLUOEFJHLBGVS0SKU0IPUZ73VI6UMW' where id=6; -update noar tt set v2='7S2NEJJBHWOQFHK3RWHAR426900CF5NYN' where id=6; -update noar ti set v2='7S2NEJJBHWOQFHK3RWHAR426900CF5NYN' where id=6; -update noar tt set v3='09ZCHETG7WO0USAFFHZ5INP9U7AUIBCKZ' where id=6; -update noar ti set v3='09ZCHETG7WO0USAFFHZ5INP9U7AUIBCKZ' where id=6; -update noar tt set v0='Y8OXMWL39MMR0YEB2TQU1DDC033BZ5BW1' where id=7; -update noar ti set v0='Y8OXMWL39MMR0YEB2TQU1DDC033BZ5BW1' where id=7; -update noar tt set v1='HC86NHK9NAUV5OFBYELB1D06HAYQLX4GU' where id=7; -update noar ti set v1='HC86NHK9NAUV5OFBYELB1D06HAYQLX4GU' where id=7; -update noar tt set v2='QWL2F7Y16CLMYRDB04XUSY1GSA0ISSO76' where id=7; -update noar ti set v2='QWL2F7Y16CLMYRDB04XUSY1GSA0ISSO76' where id=7; -update noar tt set v3='P2F0GV4EEYN4VE4HDXZ0E7PDKBSQJF6GL' where id=7; -update noar ti set v3='P2F0GV4EEYN4VE4HDXZ0E7PDKBSQJF6GL' where id=7; -update noar tt set v0='OYB0CLBGINZ3YBWW9NVIHHQYJGAI0X5BT' where id=8; -update noar ti set v0='OYB0CLBGINZ3YBWW9NVIHHQYJGAI0X5BT' where id=8; -update noar tt set v1='F1QHLVE9P88J6KY7N4TKFBOOILYEOHL4A' where id=8; -update noar ti set v1='F1QHLVE9P88J6KY7N4TKFBOOILYEOHL4A' where id=8; -update noar tt set v2='QF9ZE2I0VYNZE7QGWB33ZZLD4FIBGVNLT' where id=8; -update noar ti set v2='QF9ZE2I0VYNZE7QGWB33ZZLD4FIBGVNLT' where id=8; -update noar tt set v3='HWWI750LOVQP7AS10LDFVJNNS8MF9R8GY' where id=8; -update noar ti set v3='HWWI750LOVQP7AS10LDFVJNNS8MF9R8GY' where id=8; -update noar tt set v0='3WOM3TU4HU1PL7GKZX8OCAEVHYM11GM89' where id=9; -update noar ti set v0='3WOM3TU4HU1PL7GKZX8OCAEVHYM11GM89' where id=9; -update noar tt set v1='JIHBCC09NDSWMEJTIK0QIP9KAXNBZ9H1Q' where id=9; -update noar ti set v1='JIHBCC09NDSWMEJTIK0QIP9KAXNBZ9H1Q' where id=9; -update noar tt set v2='78YO3W3NXLUTU16UTYR7555XVFV52KDQC' where id=9; -update noar ti set v2='78YO3W3NXLUTU16UTYR7555XVFV52KDQC' where id=9; -update noar tt set v3='GXR3FE0JE56D5FQF11AEU4C99T8EXF1ZJ' where id=9; -update noar ti set v3='GXR3FE0JE56D5FQF11AEU4C99T8EXF1ZJ' where id=9; -update noar tt set v0='HGMVC69FY2Z6BL87OMXLNKBOJMTLCRLFW' where id=10; -update noar ti set v0='HGMVC69FY2Z6BL87OMXLNKBOJMTLCRLFW' where id=10; -update noar tt set v1='Z3TNXODWL0PNYWPFVR4R3H58D0CWU19BD' where id=10; -update noar ti set v1='Z3TNXODWL0PNYWPFVR4R3H58D0CWU19BD' where id=10; -update noar tt set v2='0QFA5XYBCEHP0DE6U7RFVB87807HQO64H' where id=10; -update noar ti set v2='0QFA5XYBCEHP0DE6U7RFVB87807HQO64H' where id=10; -update noar tt set v3='JPYIAZFXKUO9NJPR02VIYU249KANCV92D' where id=10; -update noar ti set v3='JPYIAZFXKUO9NJPR02VIYU249KANCV92D' where id=10; -update noar tt set v0='AMEZSIYEUDNEGHOS049TJACNNDR6MIC8E' where id=11; -update noar ti set v0='AMEZSIYEUDNEGHOS049TJACNNDR6MIC8E' where id=11; -update noar tt set v1='H1SWYVWHWADQ7BTQ750J1JO58L6RPY5W7' where id=11; -update noar ti set v1='H1SWYVWHWADQ7BTQ750J1JO58L6RPY5W7' where id=11; -update noar tt set v2='PLNCWN1ROGM9T0O1MWKDO9L6ESFU0FKR6' where id=11; -update noar ti set v2='PLNCWN1ROGM9T0O1MWKDO9L6ESFU0FKR6' where id=11; -update noar tt set v3='H9P6KPN6KTCV5PLP9THH67FGM2KYMSF4J' where id=11; -update noar ti set v3='H9P6KPN6KTCV5PLP9THH67FGM2KYMSF4J' where id=11; -update noar tt set v0='PVNUO91H0R7AKWCF1W2EXEHYATPTAH1E7' where id=12; -update noar ti set v0='PVNUO91H0R7AKWCF1W2EXEHYATPTAH1E7' where id=12; -update noar tt set v1='U0FOE6HQPNDNJXEP5FBY0A1V6J8HO570E' where id=12; -update noar ti set v1='U0FOE6HQPNDNJXEP5FBY0A1V6J8HO570E' where id=12; -update noar tt set v2='8V5CG0HWS4EOG7BGBGO534MUJXCDHZVAW' where id=12; -update noar ti set v2='8V5CG0HWS4EOG7BGBGO534MUJXCDHZVAW' where id=12; -update noar tt set v3='J6TONP8M31IGAAYVBNH546V98JYANY917' where id=12; -update noar ti set v3='J6TONP8M31IGAAYVBNH546V98JYANY917' where id=12; -update noar tt set v0='9SF0ETUMBG1C2Y5ZR5MRLMYXXL55D4TFA' where id=13; -update noar ti set v0='9SF0ETUMBG1C2Y5ZR5MRLMYXXL55D4TFA' where id=13; -update noar tt set v1='S8O71MSHHSLZXI2213PHD7HFENE4Y8P6F' where id=13; -update noar ti set v1='S8O71MSHHSLZXI2213PHD7HFENE4Y8P6F' where id=13; -update noar tt set v2='P8V7H83HGN1SGHXFFUN69JT1VIOVOCTBH' where id=13; -update noar ti set v2='P8V7H83HGN1SGHXFFUN69JT1VIOVOCTBH' where id=13; -update noar tt set v3='SZQ0XEJ08LD21ZSA55OHC4XL9VVR7CUW1' where id=13; -update noar ti set v3='SZQ0XEJ08LD21ZSA55OHC4XL9VVR7CUW1' where id=13; -update noar tt set v0='B12IPIJMUDE06SR5RNR0APUJJ97I85R31' where id=14; -update noar ti set v0='B12IPIJMUDE06SR5RNR0APUJJ97I85R31' where id=14; -update noar tt set v1='SQ1IR20KOWM2DK4RQ0KFJ2UYPAHOZL55J' where id=14; -update noar ti set v1='SQ1IR20KOWM2DK4RQ0KFJ2UYPAHOZL55J' where id=14; -update noar tt set v2='6O2OW9Y7PNH03AV2P6ISEHMB99NT52RRA' where id=14; -update noar ti set v2='6O2OW9Y7PNH03AV2P6ISEHMB99NT52RRA' where id=14; -update noar tt set v3='XZNG602TFER48KS2YEW3GOZT4QLDSUSM9' where id=14; -update noar ti set v3='XZNG602TFER48KS2YEW3GOZT4QLDSUSM9' where id=14; -update noar tt set v0='8P4R9R566P05H5MN3ZQXSGPTKUTOLQ0RT' where id=15; -update noar ti set v0='8P4R9R566P05H5MN3ZQXSGPTKUTOLQ0RT' where id=15; -update noar tt set v1='BSWDQFWV114F6LNP1FZQ5D384ZLPRHXL0' where id=15; -update noar ti set v1='BSWDQFWV114F6LNP1FZQ5D384ZLPRHXL0' where id=15; -update noar tt set v2='C18UYE05QL0RYD4WG1O7Y6W74RLOP7948' where id=15; -update noar ti set v2='C18UYE05QL0RYD4WG1O7Y6W74RLOP7948' where id=15; -update noar tt set v3='SJSLH132HKQBQAOZF91XKJPWTS2NOCTLR' where id=15; -update noar ti set v3='SJSLH132HKQBQAOZF91XKJPWTS2NOCTLR' where id=15; -update noar tt set v0='UZSVSIGW2JHZGPFPUCF6EHZUQHMM8Q6G6' where id=16; -update noar ti set v0='UZSVSIGW2JHZGPFPUCF6EHZUQHMM8Q6G6' where id=16; -update noar tt set v1='MZDBG86F95PE2QSYRU855GFUMVC9JWM8Y' where id=16; -update noar ti set v1='MZDBG86F95PE2QSYRU855GFUMVC9JWM8Y' where id=16; -update noar tt set v2='NF8PIMOIPPYH3AQJR6R8FQMPX10ZBDSFQ' where id=16; -update noar ti set v2='NF8PIMOIPPYH3AQJR6R8FQMPX10ZBDSFQ' where id=16; -update noar tt set v3='SPXG4OR4XFGUVWDRV7J3G8L2V5RSJYOYM' where id=16; -update noar ti set v3='SPXG4OR4XFGUVWDRV7J3G8L2V5RSJYOYM' where id=16; -update noar tt set v0='F3A1CHQU0MEJPT62HME1VKM5EQZ57SVXR' where id=17; -update noar ti set v0='F3A1CHQU0MEJPT62HME1VKM5EQZ57SVXR' where id=17; -update noar tt set v1='TQ2XK26I1XAFIR78Z8THVBD39K4IUZFZE' where id=17; -update noar ti set v1='TQ2XK26I1XAFIR78Z8THVBD39K4IUZFZE' where id=17; -update noar tt set v2='YVO846KBJ1NV8U6SDTL51M2K3HA4C4H6B' where id=17; -update noar ti set v2='YVO846KBJ1NV8U6SDTL51M2K3HA4C4H6B' where id=17; -update noar tt set v3='LVDOI1METCQVT2VW2ME3SXROD7EA2GC6F' where id=17; -update noar ti set v3='LVDOI1METCQVT2VW2ME3SXROD7EA2GC6F' where id=17; -update noar tt set v0='MKDJ79X4CTDYB1YMWDJOCTP82EIDX6XD7' where id=18; -update noar ti set v0='MKDJ79X4CTDYB1YMWDJOCTP82EIDX6XD7' where id=18; -update noar tt set v1='DXKLQC2B8SLZ49QFJEVKB7W5MSLP10PXB' where id=18; -update noar ti set v1='DXKLQC2B8SLZ49QFJEVKB7W5MSLP10PXB' where id=18; -update noar tt set v2='OVDNU2U0VYYB4SL9ATQRX14DTPSF2EYC0' where id=18; -update noar ti set v2='OVDNU2U0VYYB4SL9ATQRX14DTPSF2EYC0' where id=18; -update noar tt set v3='GHA7T9AZU3GP1YB75FOO09LGPIC54YT29' where id=18; -update noar ti set v3='GHA7T9AZU3GP1YB75FOO09LGPIC54YT29' where id=18; -update noar tt set v0='56YU26EX616AVMGIBO9T55F77CTPBHHTY' where id=19; -update noar ti set v0='56YU26EX616AVMGIBO9T55F77CTPBHHTY' where id=19; -update noar tt set v1='6IEIJABVSHTL7B7IC8ATYUOOMNG5P4J21' where id=19; -update noar ti set v1='6IEIJABVSHTL7B7IC8ATYUOOMNG5P4J21' where id=19; -update noar tt set v2='ZQDUTBTFE4OAHNRKF4PT5O7ALF6K0B871' where id=19; -update noar ti set v2='ZQDUTBTFE4OAHNRKF4PT5O7ALF6K0B871' where id=19; -update noar tt set v3='K7GNNXZ4GV1ONF0XJ5WCOF6TBS88TM1RX' where id=19; -update noar ti set v3='K7GNNXZ4GV1ONF0XJ5WCOF6TBS88TM1RX' where id=19; -update noar tt set v0='UC8URNJBUZONLBXRPGX52ZHH4DMBJ4QES' where id=20; -update noar ti set v0='UC8URNJBUZONLBXRPGX52ZHH4DMBJ4QES' where id=20; -update noar tt set v1='QEIWBYOKP8QIBME421MTQK5XT7L5VEIE1' where id=20; -update noar ti set v1='QEIWBYOKP8QIBME421MTQK5XT7L5VEIE1' where id=20; -update noar tt set v2='LOTIEB7G2YCUSRFF8GY44EZKWPUWR9072' where id=20; -update noar ti set v2='LOTIEB7G2YCUSRFF8GY44EZKWPUWR9072' where id=20; -update noar tt set v3='98WVRWY6KRR18BR694HT4D9X9HY1UISFD' where id=20; -update noar ti set v3='98WVRWY6KRR18BR694HT4D9X9HY1UISFD' where id=20; -update noar tt set v0='WGYQ7OOYJWOO3R3593YADT3CA0X24CHGE' where id=21; -update noar ti set v0='WGYQ7OOYJWOO3R3593YADT3CA0X24CHGE' where id=21; -update noar tt set v1='HEYADKX46NP9STU5WBTMCI51NS2YJN7W0' where id=21; -update noar ti set v1='HEYADKX46NP9STU5WBTMCI51NS2YJN7W0' where id=21; -update noar tt set v2='6MRK67XGPTU37D5JLR0HMO8KO1RVTCTCK' where id=21; -update noar ti set v2='6MRK67XGPTU37D5JLR0HMO8KO1RVTCTCK' where id=21; -update noar tt set v3='VJ21I5FYUNUCI6HEVY39MHK5VJKSUWLT4' where id=21; -update noar ti set v3='VJ21I5FYUNUCI6HEVY39MHK5VJKSUWLT4' where id=21; -update noar tt set v0='RK7QU7GYTGGM50TTY4S4XKLPQ96XU89YM' where id=22; -update noar ti set v0='RK7QU7GYTGGM50TTY4S4XKLPQ96XU89YM' where id=22; -update noar tt set v1='9XYLSONJ3MWXI8I1PKO03ONPE18JPEY08' where id=22; -update noar ti set v1='9XYLSONJ3MWXI8I1PKO03ONPE18JPEY08' where id=22; -update noar tt set v2='QUPQ3LGB6745Q9DJUMXA171IQ4Y2HU6G2' where id=22; -update noar ti set v2='QUPQ3LGB6745Q9DJUMXA171IQ4Y2HU6G2' where id=22; -update noar tt set v3='PKM2DEQIRE82867HKDOEBNV7LBGF3QH43' where id=22; -update noar ti set v3='PKM2DEQIRE82867HKDOEBNV7LBGF3QH43' where id=22; -update noar tt set v0='28B1SUBXBYD7IBS0GFBPZIIFPTBWEKK41' where id=23; -update noar ti set v0='28B1SUBXBYD7IBS0GFBPZIIFPTBWEKK41' where id=23; -update noar tt set v1='VOKF6B4GX5RVKM4E1ROO7Q1N904DE93MD' where id=23; -update noar ti set v1='VOKF6B4GX5RVKM4E1ROO7Q1N904DE93MD' where id=23; -update noar tt set v2='IQQRS8LONX8URZ30TB6EIKNI7MH937U0I' where id=23; -update noar ti set v2='IQQRS8LONX8URZ30TB6EIKNI7MH937U0I' where id=23; -update noar tt set v3='0MFUCQLDYNBJZX7PH4BX2BPCT6JJU2OCY' where id=23; -update noar ti set v3='0MFUCQLDYNBJZX7PH4BX2BPCT6JJU2OCY' where id=23; -update noar tt set v0='H35VJ0JJ9M4VKRSKPZSEFOGYHQEXPWD2V' where id=24; -update noar ti set v0='H35VJ0JJ9M4VKRSKPZSEFOGYHQEXPWD2V' where id=24; -update noar tt set v1='0WVQRQNN4L9T49A8NBOY4TDVRCKZPT4LM' where id=24; -update noar ti set v1='0WVQRQNN4L9T49A8NBOY4TDVRCKZPT4LM' where id=24; -update noar tt set v2='JEFMF7ET9L805T1WJ8K4ZQ5IVRQ6ZXPJD' where id=24; -update noar ti set v2='JEFMF7ET9L805T1WJ8K4ZQ5IVRQ6ZXPJD' where id=24; -update noar tt set v3='XE099KPJIXBNUL85T6F1N7JLRW984J9TF' where id=24; -update noar ti set v3='XE099KPJIXBNUL85T6F1N7JLRW984J9TF' where id=24; -update noar tt set v0='X14F3R7GU1RJOCCW4WX7CTIGT36TE3JRG' where id=25; -update noar ti set v0='X14F3R7GU1RJOCCW4WX7CTIGT36TE3JRG' where id=25; -update noar tt set v1='U4X1TLXGG39F6MJFB4AJ5AVNVDRQBEH06' where id=25; -update noar ti set v1='U4X1TLXGG39F6MJFB4AJ5AVNVDRQBEH06' where id=25; -update noar tt set v2='6VLMEP1APE3QP9NGZHV5WAUAJJCFMUP3Y' where id=25; -update noar ti set v2='6VLMEP1APE3QP9NGZHV5WAUAJJCFMUP3Y' where id=25; -update noar tt set v3='6E0GFNFJIYRBFZ7T6D47QZXFN85X5UGLZ' where id=25; -update noar ti set v3='6E0GFNFJIYRBFZ7T6D47QZXFN85X5UGLZ' where id=25; -update noar tt set v0='J7FZVM7Z9K8JFMX7X63U5T30O10QA5OMS' where id=26; -update noar ti set v0='J7FZVM7Z9K8JFMX7X63U5T30O10QA5OMS' where id=26; -update noar tt set v1='47DZY405L0EZ5VIBA5KAAX2N2TQDXPEPN' where id=26; -update noar ti set v1='47DZY405L0EZ5VIBA5KAAX2N2TQDXPEPN' where id=26; -update noar tt set v2='CT2XH9X3W36YXMAKQPKPIXTDHSII9695N' where id=26; -update noar ti set v2='CT2XH9X3W36YXMAKQPKPIXTDHSII9695N' where id=26; -update noar tt set v3='GRJJ7OT65HHPSRIRECL3YWXZHUAV950AE' where id=26; -update noar ti set v3='GRJJ7OT65HHPSRIRECL3YWXZHUAV950AE' where id=26; -update noar tt set v0='T2PQ2G2YUHMZFOIH8KD9WOLVZACI6QXSL' where id=27; -update noar ti set v0='T2PQ2G2YUHMZFOIH8KD9WOLVZACI6QXSL' where id=27; -update noar tt set v1='WBKMMLEJIH1CELPCOJR4GFCW910192RUC' where id=27; -update noar ti set v1='WBKMMLEJIH1CELPCOJR4GFCW910192RUC' where id=27; -update noar tt set v2='GW7O784R98OO80ZQRU56JV04O5ZKVCGLM' where id=27; -update noar ti set v2='GW7O784R98OO80ZQRU56JV04O5ZKVCGLM' where id=27; -update noar tt set v3='4ASKL6U7NE4H92UNQETXZQMELKRUM9RJW' where id=27; -update noar ti set v3='4ASKL6U7NE4H92UNQETXZQMELKRUM9RJW' where id=27; -update noar tt set v0='VL5UD7E3UXP1Y30T19OUQMDNQQDCVIMF5' where id=28; -update noar ti set v0='VL5UD7E3UXP1Y30T19OUQMDNQQDCVIMF5' where id=28; -update noar tt set v1='EPLL1XI0NDVRFJTEMPY5Y6U8ERLTL8T6A' where id=28; -update noar ti set v1='EPLL1XI0NDVRFJTEMPY5Y6U8ERLTL8T6A' where id=28; -update noar tt set v2='2BTSP19L73FQ35FQ5D08MP0C0JKQNYIE9' where id=28; -update noar ti set v2='2BTSP19L73FQ35FQ5D08MP0C0JKQNYIE9' where id=28; -update noar tt set v3='BH7X40UUGJPX4S4AALT5U9IKEEBUD1OUM' where id=28; -update noar ti set v3='BH7X40UUGJPX4S4AALT5U9IKEEBUD1OUM' where id=28; -update noar tt set v0='0XYMUNMMYKYKJOFX6KU1VZUXYW2R2SGOG' where id=29; -update noar ti set v0='0XYMUNMMYKYKJOFX6KU1VZUXYW2R2SGOG' where id=29; -update noar tt set v1='2O9VFIZQU5X3N3SH7X6KBHKZE99NGKJZH' where id=29; -update noar ti set v1='2O9VFIZQU5X3N3SH7X6KBHKZE99NGKJZH' where id=29; -update noar tt set v2='NLHXCA55YM0YH9ORW54T2DYRWI7PWSMY1' where id=29; -update noar ti set v2='NLHXCA55YM0YH9ORW54T2DYRWI7PWSMY1' where id=29; -update noar tt set v3='GFEF2SYYVRSHCVM1JX5GYY51H00H87XC2' where id=29; -update noar ti set v3='GFEF2SYYVRSHCVM1JX5GYY51H00H87XC2' where id=29; -update noar tt set v0='LJMNSZA5O130HP39Q0HGEY7PW6V1TWO3A' where id=30; -update noar ti set v0='LJMNSZA5O130HP39Q0HGEY7PW6V1TWO3A' where id=30; -update noar tt set v1='J8Q5CVBM83ZF76UY4KAZ0MBCSD3ZZK59O' where id=30; -update noar ti set v1='J8Q5CVBM83ZF76UY4KAZ0MBCSD3ZZK59O' where id=30; -update noar tt set v2='410FAC6AON5D5DNNS49P87VTKZ5XHY24W' where id=30; -update noar ti set v2='410FAC6AON5D5DNNS49P87VTKZ5XHY24W' where id=30; -update noar tt set v3='6OVAG8QJYGVZ7H3QSYLOJ4KB5HM9WU201' where id=30; -update noar ti set v3='6OVAG8QJYGVZ7H3QSYLOJ4KB5HM9WU201' where id=30; -update noar tt set v0='7NHI3QNFIXZQFRN67VXYFNXODUQNYRSGF' where id=31; -update noar ti set v0='7NHI3QNFIXZQFRN67VXYFNXODUQNYRSGF' where id=31; -update noar tt set v1='2EUIFAF1PD1GQ1X00EUU4G26IUHYE00WI' where id=31; -update noar ti set v1='2EUIFAF1PD1GQ1X00EUU4G26IUHYE00WI' where id=31; -update noar tt set v2='M1H8FI0O21CY7BVEK624X5QJPHGB919UN' where id=31; -update noar ti set v2='M1H8FI0O21CY7BVEK624X5QJPHGB919UN' where id=31; -update noar tt set v3='I661L0SLV4WI6NYPB3D97AUILOV6XC0FE' where id=31; -update noar ti set v3='I661L0SLV4WI6NYPB3D97AUILOV6XC0FE' where id=31; -update noar tt set v0='OGDZHQ95S17YB4LIFHGVFLOJSY1KDSB30' where id=32; -update noar ti set v0='OGDZHQ95S17YB4LIFHGVFLOJSY1KDSB30' where id=32; -update noar tt set v1='8GQUEDNSHUCLOJNKPIH56TB6L0PBMD65U' where id=32; -update noar ti set v1='8GQUEDNSHUCLOJNKPIH56TB6L0PBMD65U' where id=32; -update noar tt set v2='HAQQ51MGMVNOXA12ALYIYXHH7A66M4NFF' where id=32; -update noar ti set v2='HAQQ51MGMVNOXA12ALYIYXHH7A66M4NFF' where id=32; -update noar tt set v3='VW5OEZ7QECGOU9VVRTM4WOX79G2RBWETN' where id=32; -update noar ti set v3='VW5OEZ7QECGOU9VVRTM4WOX79G2RBWETN' where id=32; -update noar tt set v0='1LSN1T9R98CYSP8SDL6MUHZYC7734XO2X' where id=33; -update noar ti set v0='1LSN1T9R98CYSP8SDL6MUHZYC7734XO2X' where id=33; -update noar tt set v1='6H4XU6WU6JTODYEWNZ50V0SD2BBJ2CP1M' where id=33; -update noar ti set v1='6H4XU6WU6JTODYEWNZ50V0SD2BBJ2CP1M' where id=33; -update noar tt set v2='W1HXKNQTDCNJOJQ9H5ZJ0JSG1VQ5ZJSPV' where id=33; -update noar ti set v2='W1HXKNQTDCNJOJQ9H5ZJ0JSG1VQ5ZJSPV' where id=33; -update noar tt set v3='QQFHL4QXG8NJEKQ9JK8GTRGYKTMOHWLUW' where id=33; -update noar ti set v3='QQFHL4QXG8NJEKQ9JK8GTRGYKTMOHWLUW' where id=33; -update noar tt set v0='M3WQCU84TA265RO9865JQ6XBSE7NS6Z59' where id=34; -update noar ti set v0='M3WQCU84TA265RO9865JQ6XBSE7NS6Z59' where id=34; -update noar tt set v1='Z4DNA42Z37ORF1Z9JVTTPOV58RD6VMULU' where id=34; -update noar ti set v1='Z4DNA42Z37ORF1Z9JVTTPOV58RD6VMULU' where id=34; -update noar tt set v2='ZEOSTBEIKTX7MRRBMG2UYMWLFBH7ZLZQ0' where id=34; -update noar ti set v2='ZEOSTBEIKTX7MRRBMG2UYMWLFBH7ZLZQ0' where id=34; -update noar tt set v3='S0NBDM8NNEXLKYM6QDRQXHCH56XUVPUEQ' where id=34; -update noar ti set v3='S0NBDM8NNEXLKYM6QDRQXHCH56XUVPUEQ' where id=34; -update noar tt set v0='HAK9VG8HQJRVEUSNZJMLQ5HJWQL7QZV3C' where id=35; -update noar ti set v0='HAK9VG8HQJRVEUSNZJMLQ5HJWQL7QZV3C' where id=35; -update noar tt set v1='W27V5QYK0ZTD0G8YZDFAXXUU8528NDBPJ' where id=35; -update noar ti set v1='W27V5QYK0ZTD0G8YZDFAXXUU8528NDBPJ' where id=35; -update noar tt set v2='CJ9W59MF4VSOBZFJDP40E9YKZIO1Q6KLX' where id=35; -update noar ti set v2='CJ9W59MF4VSOBZFJDP40E9YKZIO1Q6KLX' where id=35; -update noar tt set v3='TTOFMYRMF7WLKCCI1Y1QCR2D3W6CC0VXO' where id=35; -update noar ti set v3='TTOFMYRMF7WLKCCI1Y1QCR2D3W6CC0VXO' where id=35; -update noar tt set v0='MF0TRKBPLG9IBFPTG57P7F5ZX2L057ZHT' where id=36; -update noar ti set v0='MF0TRKBPLG9IBFPTG57P7F5ZX2L057ZHT' where id=36; -update noar tt set v1='TWY9GL4N6YU1MWP8XB1PI8YS3UBWDDNMB' where id=36; -update noar ti set v1='TWY9GL4N6YU1MWP8XB1PI8YS3UBWDDNMB' where id=36; -update noar tt set v2='5XD0MEQKDMR2HGXBJ6NKSF0HKA6NNS742' where id=36; -update noar ti set v2='5XD0MEQKDMR2HGXBJ6NKSF0HKA6NNS742' where id=36; -update noar tt set v3='3H0EA6B45WR6FRWTCKCHOJXTHA5BKIT2F' where id=36; -update noar ti set v3='3H0EA6B45WR6FRWTCKCHOJXTHA5BKIT2F' where id=36; -update noar tt set v0='95E6L7GSV9I7KBBHV3F9KBE23IL6WE8YL' where id=37; -update noar ti set v0='95E6L7GSV9I7KBBHV3F9KBE23IL6WE8YL' where id=37; -update noar tt set v1='9F3JB8AIRJE6QHTXIEEVZJNLQYJEGXY4H' where id=37; -update noar ti set v1='9F3JB8AIRJE6QHTXIEEVZJNLQYJEGXY4H' where id=37; -update noar tt set v2='OYH9Y7IVQRZ8G842TPF6N7QNLGLP7AM3C' where id=37; -update noar ti set v2='OYH9Y7IVQRZ8G842TPF6N7QNLGLP7AM3C' where id=37; -update noar tt set v3='3B1JQXY8WUEFUUGSHRS45CEDCQN0WRNTQ' where id=37; -update noar ti set v3='3B1JQXY8WUEFUUGSHRS45CEDCQN0WRNTQ' where id=37; -update noar tt set v0='JZQLQ9ZHXFIU7WBCDA6OTRLW3PDSJNUJ7' where id=38; -update noar ti set v0='JZQLQ9ZHXFIU7WBCDA6OTRLW3PDSJNUJ7' where id=38; -update noar tt set v1='G24SDD849GUFPH2UIUXK6TDPMVZT9KX1C' where id=38; -update noar ti set v1='G24SDD849GUFPH2UIUXK6TDPMVZT9KX1C' where id=38; -update noar tt set v2='IZD3TF8EYOVOBCBOTZS4RBRQDJEJKBEJ9' where id=38; -update noar ti set v2='IZD3TF8EYOVOBCBOTZS4RBRQDJEJKBEJ9' where id=38; -update noar tt set v3='95XWXAHWDQKCSS7P7CI97AY8ZPF8HUJDW' where id=38; -update noar ti set v3='95XWXAHWDQKCSS7P7CI97AY8ZPF8HUJDW' where id=38; -update noar tt set v0='1T3Y4KJWLSI014FJXUJVP4S23RY039MOG' where id=39; -update noar ti set v0='1T3Y4KJWLSI014FJXUJVP4S23RY039MOG' where id=39; -update noar tt set v1='8MKPK1U4WQUQF4RPY272YOL2SIXE2G6J3' where id=39; -update noar ti set v1='8MKPK1U4WQUQF4RPY272YOL2SIXE2G6J3' where id=39; -update noar tt set v2='VHDUJNM08T9L9JFP4P742MTE3H6K954ZC' where id=39; -update noar ti set v2='VHDUJNM08T9L9JFP4P742MTE3H6K954ZC' where id=39; -update noar tt set v3='51C8TP623RGCLWDMRC8XJ0349CGIUYW1S' where id=39; -update noar ti set v3='51C8TP623RGCLWDMRC8XJ0349CGIUYW1S' where id=39; -update noar tt set v0='TCBKJV7WEFI3NKLR7IV4GROF41X4YGZV8' where id=40; -update noar ti set v0='TCBKJV7WEFI3NKLR7IV4GROF41X4YGZV8' where id=40; -update noar tt set v1='2N5M3QLKEWTVH0WHD8PEHAMWMD2YKXT4W' where id=40; -update noar ti set v1='2N5M3QLKEWTVH0WHD8PEHAMWMD2YKXT4W' where id=40; -update noar tt set v2='TO6EK2U8AK5D8WRZLYIP0QU5N1SADEC8B' where id=40; -update noar ti set v2='TO6EK2U8AK5D8WRZLYIP0QU5N1SADEC8B' where id=40; -update noar tt set v3='J0HIPHB60ZPUTXBHRD2R8A584R08B7QAN' where id=40; -update noar ti set v3='J0HIPHB60ZPUTXBHRD2R8A584R08B7QAN' where id=40; -update noar tt set v0='QMOCYIW5F2KGTXJWOURV0AUPGOVU0LRD1' where id=41; -update noar ti set v0='QMOCYIW5F2KGTXJWOURV0AUPGOVU0LRD1' where id=41; -update noar tt set v1='3J81DLRM220BY3D72I3SSMHA2BQ5XR61V' where id=41; -update noar ti set v1='3J81DLRM220BY3D72I3SSMHA2BQ5XR61V' where id=41; -update noar tt set v2='OBWI4SVE17HETZB0DO93V8F3255DASLP9' where id=41; -update noar ti set v2='OBWI4SVE17HETZB0DO93V8F3255DASLP9' where id=41; -update noar tt set v3='OVXNZF1UGXBVV6RYR0SS85O7XH6XRHYVU' where id=41; -update noar ti set v3='OVXNZF1UGXBVV6RYR0SS85O7XH6XRHYVU' where id=41; -update noar tt set v0='ND5SELQZO5NMDPGID2MGDS8QWSPQWRSDC' where id=42; -update noar ti set v0='ND5SELQZO5NMDPGID2MGDS8QWSPQWRSDC' where id=42; -update noar tt set v1='APFLH78J8RIUQABJO9C0XUJ728S19FMB1' where id=42; -update noar ti set v1='APFLH78J8RIUQABJO9C0XUJ728S19FMB1' where id=42; -update noar tt set v2='97W8TYYF33GACEUL9NIZ7Y8DL3SEU6M0X' where id=42; -update noar ti set v2='97W8TYYF33GACEUL9NIZ7Y8DL3SEU6M0X' where id=42; -update noar tt set v3='T7J5UC89PA3I2J3MP6H8FY38G8KCZ8DGE' where id=42; -update noar ti set v3='T7J5UC89PA3I2J3MP6H8FY38G8KCZ8DGE' where id=42; -update noar tt set v0='L9DAO06YPFO4FNO0YML7601UL297EJLJK' where id=43; -update noar ti set v0='L9DAO06YPFO4FNO0YML7601UL297EJLJK' where id=43; -update noar tt set v1='T8LPZDBGLKVGF7J8WDPNCGC4UDT5YXT0G' where id=43; -update noar ti set v1='T8LPZDBGLKVGF7J8WDPNCGC4UDT5YXT0G' where id=43; -update noar tt set v2='F8OE6XPDSL9T5L6RWXGZ37TOR08XQNKLD' where id=43; -update noar ti set v2='F8OE6XPDSL9T5L6RWXGZ37TOR08XQNKLD' where id=43; -update noar tt set v3='JP7QNSDHCOWOHEZ19AK8WBU3P0HZZZFUC' where id=43; -update noar ti set v3='JP7QNSDHCOWOHEZ19AK8WBU3P0HZZZFUC' where id=43; -update noar tt set v0='QR5CU9J1BM54KXSALVOU2YYIIT9II5IV7' where id=44; -update noar ti set v0='QR5CU9J1BM54KXSALVOU2YYIIT9II5IV7' where id=44; -update noar tt set v1='THR2AGEW965PRL7DQ6FPFRVF555HV9BGH' where id=44; -update noar ti set v1='THR2AGEW965PRL7DQ6FPFRVF555HV9BGH' where id=44; -update noar tt set v2='GK24JP9QKQEJ41FF92VFAFG2J4H367VXY' where id=44; -update noar ti set v2='GK24JP9QKQEJ41FF92VFAFG2J4H367VXY' where id=44; -update noar tt set v3='RXQ5576BL2NWDIAAZWD6T9ARM4A0CNHPK' where id=44; -update noar ti set v3='RXQ5576BL2NWDIAAZWD6T9ARM4A0CNHPK' where id=44; -update noar tt set v0='GWR3GW8YSUEHLA2IMYNODZTMABWQL3UVN' where id=45; -update noar ti set v0='GWR3GW8YSUEHLA2IMYNODZTMABWQL3UVN' where id=45; -update noar tt set v1='BKZNASNZUDYVUMESOFLQQMW3KXZRD8TNI' where id=45; -update noar ti set v1='BKZNASNZUDYVUMESOFLQQMW3KXZRD8TNI' where id=45; -update noar tt set v2='S9SNZCF4KJ3LOD8LU51I7YIK2NHHL2S9L' where id=45; -update noar ti set v2='S9SNZCF4KJ3LOD8LU51I7YIK2NHHL2S9L' where id=45; -update noar tt set v3='ZBWLFM6A2VE95ZKNZ8HFZNQ2JVSSWH1VJ' where id=45; -update noar ti set v3='ZBWLFM6A2VE95ZKNZ8HFZNQ2JVSSWH1VJ' where id=45; -update noar tt set v0='27CIX9UJKS2U48PLDIW59ZDET9LYB9ZP8' where id=46; -update noar ti set v0='27CIX9UJKS2U48PLDIW59ZDET9LYB9ZP8' where id=46; -update noar tt set v1='1A0ELI6O5NJFOPT5NKL53RVHJE7XE39LY' where id=46; -update noar ti set v1='1A0ELI6O5NJFOPT5NKL53RVHJE7XE39LY' where id=46; -update noar tt set v2='27J8V1GVO68JHO0CK71DFDXC4HF98GDBK' where id=46; -update noar ti set v2='27J8V1GVO68JHO0CK71DFDXC4HF98GDBK' where id=46; -update noar tt set v3='AH200JYBSX88DD1XIK7GVDLMJNEYVNRD6' where id=46; -update noar ti set v3='AH200JYBSX88DD1XIK7GVDLMJNEYVNRD6' where id=46; -update noar tt set v0='H5J4WZ3QWCZA02UB84BPM78RQDK2OTIK5' where id=47; -update noar ti set v0='H5J4WZ3QWCZA02UB84BPM78RQDK2OTIK5' where id=47; -update noar tt set v1='TL89W61XVOK7G5VUFTKUDY411H6J01DIF' where id=47; -update noar ti set v1='TL89W61XVOK7G5VUFTKUDY411H6J01DIF' where id=47; -update noar tt set v2='FA4N8L56DOQSQ909DQ4IXVV6QPMB3GXY7' where id=47; -update noar ti set v2='FA4N8L56DOQSQ909DQ4IXVV6QPMB3GXY7' where id=47; -update noar tt set v3='8S6S0DCK02JY4BEU0UMJAVEK73IXPORDL' where id=47; -update noar ti set v3='8S6S0DCK02JY4BEU0UMJAVEK73IXPORDL' where id=47; -update noar tt set v0='G9VHLMZMPR34PGYRYYE7EBCVZD62OV7G7' where id=48; -update noar ti set v0='G9VHLMZMPR34PGYRYYE7EBCVZD62OV7G7' where id=48; -update noar tt set v1='PXSSL3CI37E8NIARJ97E7560CU47S7ZJH' where id=48; -update noar ti set v1='PXSSL3CI37E8NIARJ97E7560CU47S7ZJH' where id=48; -update noar tt set v2='HL0KH8QSLJTM47SZNB5XYJ334W0T7LQ17' where id=48; -update noar ti set v2='HL0KH8QSLJTM47SZNB5XYJ334W0T7LQ17' where id=48; -update noar tt set v3='SZL2PQD8RE1IKQ1O9OYB3AD6NJBLI9BWD' where id=48; -update noar ti set v3='SZL2PQD8RE1IKQ1O9OYB3AD6NJBLI9BWD' where id=48; -update noar tt set v0='Z3AFY4MML6MYH5NG9JSQ72RLK0HO0BG9V' where id=49; -update noar ti set v0='Z3AFY4MML6MYH5NG9JSQ72RLK0HO0BG9V' where id=49; -update noar tt set v1='8WMTWYRK0DI205EJFQKQBWU67OCNKL2OO' where id=49; -update noar ti set v1='8WMTWYRK0DI205EJFQKQBWU67OCNKL2OO' where id=49; -update noar tt set v2='I9UEO5RMIUO4RF9LJPZQQ9EFNQQF8Y53O' where id=49; -update noar ti set v2='I9UEO5RMIUO4RF9LJPZQQ9EFNQQF8Y53O' where id=49; -update noar tt set v3='ILHMCPLH1R46JMUI86NJ3KQXLFDR7T3PV' where id=49; -update noar ti set v3='ILHMCPLH1R46JMUI86NJ3KQXLFDR7T3PV' where id=49; -update noar tt set v0='RURSQ9L2FSKAFNVYJK1C7FLEJFZHUILXD' where id=50; -update noar ti set v0='RURSQ9L2FSKAFNVYJK1C7FLEJFZHUILXD' where id=50; -update noar tt set v1='DSL5GCW995JRY82HOPK0IV52JUI4I1RBA' where id=50; -update noar ti set v1='DSL5GCW995JRY82HOPK0IV52JUI4I1RBA' where id=50; -update noar tt set v2='TRFMGIARIBM6O4HH9YT49EI7ICZDSCCZK' where id=50; -update noar ti set v2='TRFMGIARIBM6O4HH9YT49EI7ICZDSCCZK' where id=50; -update noar tt set v3='458762STQLMQS5IK2AUZFMMDAQ8GFVW39' where id=50; -update noar ti set v3='458762STQLMQS5IK2AUZFMMDAQ8GFVW39' where id=50; -update noar tt set v0='7L6UP1XJBFY9RLRQJZMOC52GHJZUXS27J' where id=51; -update noar ti set v0='7L6UP1XJBFY9RLRQJZMOC52GHJZUXS27J' where id=51; -update noar tt set v1='YTMDICEWMQJTBWBZCB6ALJSSY2HBLGA1B' where id=51; -update noar ti set v1='YTMDICEWMQJTBWBZCB6ALJSSY2HBLGA1B' where id=51; -update noar tt set v2='L6X04J0C3HWTE8R9JN3YADC02AS5O781E' where id=51; -update noar ti set v2='L6X04J0C3HWTE8R9JN3YADC02AS5O781E' where id=51; -update noar tt set v3='AD2RYQ8TG4Q0E3T5Y7O8NJERYDHV8Q2UY' where id=51; -update noar ti set v3='AD2RYQ8TG4Q0E3T5Y7O8NJERYDHV8Q2UY' where id=51; -update noar tt set v0='KIYNLLN5RH3R6LYNPHLAPYV5GB46E2G7W' where id=52; -update noar ti set v0='KIYNLLN5RH3R6LYNPHLAPYV5GB46E2G7W' where id=52; -update noar tt set v1='MJBQA2HIXRPOH9K42ZIQ9NXLUY9QN93Z3' where id=52; -update noar ti set v1='MJBQA2HIXRPOH9K42ZIQ9NXLUY9QN93Z3' where id=52; -update noar tt set v2='FERPK7XSW9WSSHW0MMSU32PKC169QA2H6' where id=52; -update noar ti set v2='FERPK7XSW9WSSHW0MMSU32PKC169QA2H6' where id=52; -update noar tt set v3='DSH8CFWXTX2DLN9XMHLZCASZL6K5XJUUA' where id=52; -update noar ti set v3='DSH8CFWXTX2DLN9XMHLZCASZL6K5XJUUA' where id=52; -update noar tt set v0='6AN7R1VYJVONXHX17M1DO6RG5RGZZD2T7' where id=53; -update noar ti set v0='6AN7R1VYJVONXHX17M1DO6RG5RGZZD2T7' where id=53; -update noar tt set v1='JWMPLL8L4A3AJ1YQQOBV89JSSZ1OPKF0I' where id=53; -update noar ti set v1='JWMPLL8L4A3AJ1YQQOBV89JSSZ1OPKF0I' where id=53; -update noar tt set v2='0LIY2CSI9D3HPPBADYLRUYKHH6Y5J6O0I' where id=53; -update noar ti set v2='0LIY2CSI9D3HPPBADYLRUYKHH6Y5J6O0I' where id=53; -update noar tt set v3='3TPM46KEH2W2KTRAVUCLDD24ZGIIYE73G' where id=53; -update noar ti set v3='3TPM46KEH2W2KTRAVUCLDD24ZGIIYE73G' where id=53; -update noar tt set v0='9FMS4I2NTMHR3AJLL5JPKH1MS2BETT508' where id=54; -update noar ti set v0='9FMS4I2NTMHR3AJLL5JPKH1MS2BETT508' where id=54; -update noar tt set v1='SB1RJLVZA09KX532JNTE5APJUTZU94BR7' where id=54; -update noar ti set v1='SB1RJLVZA09KX532JNTE5APJUTZU94BR7' where id=54; -update noar tt set v2='SH4NIS1WYNR6W7650I4CMS4WA3EE6EJ06' where id=54; -update noar ti set v2='SH4NIS1WYNR6W7650I4CMS4WA3EE6EJ06' where id=54; -update noar tt set v3='6M8ZNTNUYGYE8K0GPZCAGMIBB9GODDJ3T' where id=54; -update noar ti set v3='6M8ZNTNUYGYE8K0GPZCAGMIBB9GODDJ3T' where id=54; -update noar tt set v0='W7DSNS4NZ9283GJVVA48PWEYB8028KQ2B' where id=55; -update noar ti set v0='W7DSNS4NZ9283GJVVA48PWEYB8028KQ2B' where id=55; -update noar tt set v1='7W0NBJABATJMK0GRD5UMY5GUBFJYKHSOS' where id=55; -update noar ti set v1='7W0NBJABATJMK0GRD5UMY5GUBFJYKHSOS' where id=55; -update noar tt set v2='57EMBWTTQSRQI2JK20H8MNHYE0KS7K5MA' where id=55; -update noar ti set v2='57EMBWTTQSRQI2JK20H8MNHYE0KS7K5MA' where id=55; -update noar tt set v3='Y9PMVRMXLN1H6H2ZSL6S8VQYO3XMXOIZC' where id=55; -update noar ti set v3='Y9PMVRMXLN1H6H2ZSL6S8VQYO3XMXOIZC' where id=55; -update noar tt set v0='QUZ7ABM7U20FX9JU87HPJ45TE9R48DMDI' where id=56; -update noar ti set v0='QUZ7ABM7U20FX9JU87HPJ45TE9R48DMDI' where id=56; -update noar tt set v1='Q53CBPGSPVA4AUL0BOF9RU6XOH3OBYBXX' where id=56; -update noar ti set v1='Q53CBPGSPVA4AUL0BOF9RU6XOH3OBYBXX' where id=56; -update noar tt set v2='XI61XGI3OR56KT9GIRRC3CM0IIMNPPTGK' where id=56; -update noar ti set v2='XI61XGI3OR56KT9GIRRC3CM0IIMNPPTGK' where id=56; -update noar tt set v3='I6YYC6B0ZE88SRV7CQ138T0YASK9VS9C9' where id=56; -update noar ti set v3='I6YYC6B0ZE88SRV7CQ138T0YASK9VS9C9' where id=56; -update noar tt set v0='7K4KWB5KJQ0FNMMDFA3PAU7XSQ8LDQA7Z' where id=57; -update noar ti set v0='7K4KWB5KJQ0FNMMDFA3PAU7XSQ8LDQA7Z' where id=57; -update noar tt set v1='T7TM731845GEWLY5D0YTCFZL8E8TY5IS0' where id=57; -update noar ti set v1='T7TM731845GEWLY5D0YTCFZL8E8TY5IS0' where id=57; -update noar tt set v2='PAD1A0MOKVUAWOVCRU12QPQZL54L58MHM' where id=57; -update noar ti set v2='PAD1A0MOKVUAWOVCRU12QPQZL54L58MHM' where id=57; -update noar tt set v3='LF7RYQN7OR38JKDHM5MHLS3AKYPO5IKTC' where id=57; -update noar ti set v3='LF7RYQN7OR38JKDHM5MHLS3AKYPO5IKTC' where id=57; -update noar tt set v0='HPR7W84PVJXJ6GQFULKCJ9CJOZEFQ0BGF' where id=58; -update noar ti set v0='HPR7W84PVJXJ6GQFULKCJ9CJOZEFQ0BGF' where id=58; -update noar tt set v1='CITNSMY4DF1631N6T90S3SNEHFNTD4R27' where id=58; -update noar ti set v1='CITNSMY4DF1631N6T90S3SNEHFNTD4R27' where id=58; -update noar tt set v2='ZHZ3JRPT1ZDOFCH6W3B5WRD0Q31KHNK9X' where id=58; -update noar ti set v2='ZHZ3JRPT1ZDOFCH6W3B5WRD0Q31KHNK9X' where id=58; -update noar tt set v3='70B5U9N677URBUQM0USYHRFBPLPD67IQX' where id=58; -update noar ti set v3='70B5U9N677URBUQM0USYHRFBPLPD67IQX' where id=58; -update noar tt set v0='LA58EWWSB68PRT1LJJB98AH1PXGNTRC06' where id=59; -update noar ti set v0='LA58EWWSB68PRT1LJJB98AH1PXGNTRC06' where id=59; -update noar tt set v1='AP637AEY7NGUISPC3KD29OZ1O0G75CR4K' where id=59; -update noar ti set v1='AP637AEY7NGUISPC3KD29OZ1O0G75CR4K' where id=59; -update noar tt set v2='3EE7QBNM4DYRH3Q74JHVYQIKTI9AWAIK4' where id=59; -update noar ti set v2='3EE7QBNM4DYRH3Q74JHVYQIKTI9AWAIK4' where id=59; -update noar tt set v3='OAZ7WEOSWUYAYE479F9LD22KB2RE9MLTR' where id=59; -update noar ti set v3='OAZ7WEOSWUYAYE479F9LD22KB2RE9MLTR' where id=59; -update noar tt set v0='1IQOOZMRYNK70DX2TP46IJ5UUGK495Y1I' where id=60; -update noar ti set v0='1IQOOZMRYNK70DX2TP46IJ5UUGK495Y1I' where id=60; -update noar tt set v1='DQUK6ERL0VW5VMRVFWS248Y276ZPBMGQE' where id=60; -update noar ti set v1='DQUK6ERL0VW5VMRVFWS248Y276ZPBMGQE' where id=60; -update noar tt set v2='4ZJBYP0QD2WUBRB4NG9C57IF9GQMCZ38A' where id=60; -update noar ti set v2='4ZJBYP0QD2WUBRB4NG9C57IF9GQMCZ38A' where id=60; -update noar tt set v3='D5IYVYR9W7A6ZE3C5JW18GTMV7CB0BEWK' where id=60; -update noar ti set v3='D5IYVYR9W7A6ZE3C5JW18GTMV7CB0BEWK' where id=60; -update noar tt set v0='R6703LWXKEUK76X1YQEZOYWMTMO8QDVI9' where id=61; -update noar ti set v0='R6703LWXKEUK76X1YQEZOYWMTMO8QDVI9' where id=61; -update noar tt set v1='BQKLJYJMXRCQZINREU6BFYUT0QNZU3Z41' where id=61; -update noar ti set v1='BQKLJYJMXRCQZINREU6BFYUT0QNZU3Z41' where id=61; -update noar tt set v2='3B4WTYG204536B6U6LSAEQWJSMTILWQGH' where id=61; -update noar ti set v2='3B4WTYG204536B6U6LSAEQWJSMTILWQGH' where id=61; -update noar tt set v3='HEE35D4CB62BMEIB7WAKFZUONQKSLDWU6' where id=61; -update noar ti set v3='HEE35D4CB62BMEIB7WAKFZUONQKSLDWU6' where id=61; -update noar tt set v0='TJGMRDOJZKJX3BQY0ROVK9MW6KKHXMAFF' where id=62; -update noar ti set v0='TJGMRDOJZKJX3BQY0ROVK9MW6KKHXMAFF' where id=62; -update noar tt set v1='T4KXHC3H3HWBCG1S8QP9ET8VT9ZHLTBKO' where id=62; -update noar ti set v1='T4KXHC3H3HWBCG1S8QP9ET8VT9ZHLTBKO' where id=62; -update noar tt set v2='WGR6RZ9YVEEFV7GCKDBK5J6I47U1E1QAE' where id=62; -update noar ti set v2='WGR6RZ9YVEEFV7GCKDBK5J6I47U1E1QAE' where id=62; -update noar tt set v3='9QFS45BXHQ5GFEIYLN0B4ZR9ZDSUQ95H8' where id=62; -update noar ti set v3='9QFS45BXHQ5GFEIYLN0B4ZR9ZDSUQ95H8' where id=62; -update noar tt set v0='C0LB0552ZAI7DB3QKO10LWBGEXEOEACAB' where id=63; -update noar ti set v0='C0LB0552ZAI7DB3QKO10LWBGEXEOEACAB' where id=63; -update noar tt set v1='VKXX45AKTKLFOCWJZT683TDRWSLH2BJRA' where id=63; -update noar ti set v1='VKXX45AKTKLFOCWJZT683TDRWSLH2BJRA' where id=63; -update noar tt set v2='9T26MXOSVWZ744I7OC2PH13TERW1GHN0K' where id=63; -update noar ti set v2='9T26MXOSVWZ744I7OC2PH13TERW1GHN0K' where id=63; -update noar tt set v3='YHWLHXQRM5CXAKOFMIO7HPT0HDUIHQQ91' where id=63; -update noar ti set v3='YHWLHXQRM5CXAKOFMIO7HPT0HDUIHQQ91' where id=63; -update noar tt set v0='L7QNRDGTFGY21MVR5N9IH1NNUS1C2T9U2' where id=64; -update noar ti set v0='L7QNRDGTFGY21MVR5N9IH1NNUS1C2T9U2' where id=64; -update noar tt set v1='6PBQ0LHXJAYIYEKFJ04WZU6RXBRD86F90' where id=64; -update noar ti set v1='6PBQ0LHXJAYIYEKFJ04WZU6RXBRD86F90' where id=64; -update noar tt set v2='EE4MO8VSMDYTXV6LW58KYTNQTRDCHM8BQ' where id=64; -update noar ti set v2='EE4MO8VSMDYTXV6LW58KYTNQTRDCHM8BQ' where id=64; -update noar tt set v3='EAFFHWK6ZSAS83ZTT5I9VWGK0S568Y5NI' where id=64; -update noar ti set v3='EAFFHWK6ZSAS83ZTT5I9VWGK0S568Y5NI' where id=64; -update noar tt set v0='FY6BMD1JXRRLTDHVD0LJ5856CYRG1U80Q' where id=65; -update noar ti set v0='FY6BMD1JXRRLTDHVD0LJ5856CYRG1U80Q' where id=65; -update noar tt set v1='2VKZFS4O1NTHB9XFQL97OLY42WXHKG2B8' where id=65; -update noar ti set v1='2VKZFS4O1NTHB9XFQL97OLY42WXHKG2B8' where id=65; -update noar tt set v2='5ZN2JQDSGF0P8K6NOD7L1CNU4FAZDIAUL' where id=65; -update noar ti set v2='5ZN2JQDSGF0P8K6NOD7L1CNU4FAZDIAUL' where id=65; -update noar tt set v3='5G0LZLLYOZ7UZ5M93TWZEYMUVQF6G1SZH' where id=65; -update noar ti set v3='5G0LZLLYOZ7UZ5M93TWZEYMUVQF6G1SZH' where id=65; -update noar tt set v0='57NOVDL3B0S7PWQMPL07DONGGI9JRW3BP' where id=66; -update noar ti set v0='57NOVDL3B0S7PWQMPL07DONGGI9JRW3BP' where id=66; -update noar tt set v1='LO6VROUBXYCVZ4ISQM3L470ZUOMLHWT14' where id=66; -update noar ti set v1='LO6VROUBXYCVZ4ISQM3L470ZUOMLHWT14' where id=66; -update noar tt set v2='YUJ6RUU9EN9LQTZFOA1WW49B4QSD4BINX' where id=66; -update noar ti set v2='YUJ6RUU9EN9LQTZFOA1WW49B4QSD4BINX' where id=66; -update noar tt set v3='CB93SCQNUAHESR1BECFL62QHUPBRV0O7S' where id=66; -update noar ti set v3='CB93SCQNUAHESR1BECFL62QHUPBRV0O7S' where id=66; -update noar tt set v0='NJ1T120GMHCEO75BWMHFRJLMM3TOU025C' where id=67; -update noar ti set v0='NJ1T120GMHCEO75BWMHFRJLMM3TOU025C' where id=67; -update noar tt set v1='6RJI6M9VCLG1AXRIRCS9YA3XLIQWQPVV1' where id=67; -update noar ti set v1='6RJI6M9VCLG1AXRIRCS9YA3XLIQWQPVV1' where id=67; -update noar tt set v2='IRDGWKGAVDAAA3YKGU6E9ET4D1GZF608S' where id=67; -update noar ti set v2='IRDGWKGAVDAAA3YKGU6E9ET4D1GZF608S' where id=67; -update noar tt set v3='MJJKZ5RBV3FH79U4AB0SRROCXUEVD0LHR' where id=67; -update noar ti set v3='MJJKZ5RBV3FH79U4AB0SRROCXUEVD0LHR' where id=67; -update noar tt set v0='2C7JFI6EB3RL5Q4TY04BH8KPWS3TMZS2Z' where id=68; -update noar ti set v0='2C7JFI6EB3RL5Q4TY04BH8KPWS3TMZS2Z' where id=68; -update noar tt set v1='0HJU1QT9FFPRZUYMKKC0RMV2GPDTTRMUQ' where id=68; -update noar ti set v1='0HJU1QT9FFPRZUYMKKC0RMV2GPDTTRMUQ' where id=68; -update noar tt set v2='E1BKSMZR2DO79KIRCFIRE716ENZRRNI13' where id=68; -update noar ti set v2='E1BKSMZR2DO79KIRCFIRE716ENZRRNI13' where id=68; -update noar tt set v3='KFNMOZNA542NFSTZKRNV7Z4HQVO7NE860' where id=68; -update noar ti set v3='KFNMOZNA542NFSTZKRNV7Z4HQVO7NE860' where id=68; -update noar tt set v0='EWBUXHHDFYK8FGJL0MDB5IZB3SMXJ3VGY' where id=69; -update noar ti set v0='EWBUXHHDFYK8FGJL0MDB5IZB3SMXJ3VGY' where id=69; -update noar tt set v1='POKHSEI10ZP9LN7L94W206670DWWZK70W' where id=69; -update noar ti set v1='POKHSEI10ZP9LN7L94W206670DWWZK70W' where id=69; -update noar tt set v2='SWLF1ZB3XVDZM7G93X1LTTDXWPS6OCLFX' where id=69; -update noar ti set v2='SWLF1ZB3XVDZM7G93X1LTTDXWPS6OCLFX' where id=69; -update noar tt set v3='I232ZNA93R4SOW2EAPO734L1QRPCAQCYI' where id=69; -update noar ti set v3='I232ZNA93R4SOW2EAPO734L1QRPCAQCYI' where id=69; -update noar tt set v0='OZ6JA65Y43HPC54YDS9E7FNJBAH8EO3AV' where id=70; -update noar ti set v0='OZ6JA65Y43HPC54YDS9E7FNJBAH8EO3AV' where id=70; -update noar tt set v1='MGGNV6P04LUF60VJX3PVO1I9JOFSMOVGH' where id=70; -update noar ti set v1='MGGNV6P04LUF60VJX3PVO1I9JOFSMOVGH' where id=70; -update noar tt set v2='JNH9IVRXE84XL76VIDWEVLRCP5427NSUT' where id=70; -update noar ti set v2='JNH9IVRXE84XL76VIDWEVLRCP5427NSUT' where id=70; -update noar tt set v3='JS565B251FRNHUJDRIEKY0Y6V74R3XMNZ' where id=70; -update noar ti set v3='JS565B251FRNHUJDRIEKY0Y6V74R3XMNZ' where id=70; -update noar tt set v0='AGRS4ON84TBQBQ252OIMBHO6GLO15CIFV' where id=71; -update noar ti set v0='AGRS4ON84TBQBQ252OIMBHO6GLO15CIFV' where id=71; -update noar tt set v1='GHY1CEEZP7X211JNGEK2D643TQM16C380' where id=71; -update noar ti set v1='GHY1CEEZP7X211JNGEK2D643TQM16C380' where id=71; -update noar tt set v2='Y16YKA3RQ37SRX6UDPTKS1WW8IQ4YYQE5' where id=71; -update noar ti set v2='Y16YKA3RQ37SRX6UDPTKS1WW8IQ4YYQE5' where id=71; -update noar tt set v3='2VELPY70X6ZXB63NDTJ2YXBZMPRWVZSQO' where id=71; -update noar ti set v3='2VELPY70X6ZXB63NDTJ2YXBZMPRWVZSQO' where id=71; -update noar tt set v0='CMXQ08AY4COWXOQ4OOW5NFI6A4Y9SPLY1' where id=72; -update noar ti set v0='CMXQ08AY4COWXOQ4OOW5NFI6A4Y9SPLY1' where id=72; -update noar tt set v1='LE98GR5C69TYWOE6VU6X2DZ93YKTTYVGB' where id=72; -update noar ti set v1='LE98GR5C69TYWOE6VU6X2DZ93YKTTYVGB' where id=72; -update noar tt set v2='QLC63V609RJQ81M2HG2EFOPBZOLNWOXEE' where id=72; -update noar ti set v2='QLC63V609RJQ81M2HG2EFOPBZOLNWOXEE' where id=72; -update noar tt set v3='UQ0RBLIPP76MIWAECE7DTOLLB9LLSZRTW' where id=72; -update noar ti set v3='UQ0RBLIPP76MIWAECE7DTOLLB9LLSZRTW' where id=72; -update noar tt set v0='X1IJ1WYMEDBI4MQMEIFF1RE3OWIMC29MQ' where id=73; -update noar ti set v0='X1IJ1WYMEDBI4MQMEIFF1RE3OWIMC29MQ' where id=73; -update noar tt set v1='Y3V894ZKYOPPIPP6S9XSE95O384NL5F81' where id=73; -update noar ti set v1='Y3V894ZKYOPPIPP6S9XSE95O384NL5F81' where id=73; -update noar tt set v2='FAHE9Z45MIV12DAZT6DGL24T6CSZJMUZH' where id=73; -update noar ti set v2='FAHE9Z45MIV12DAZT6DGL24T6CSZJMUZH' where id=73; -update noar tt set v3='99T42KM7M72CS46SDEFJ5P0GZBU6KIAZ6' where id=73; -update noar ti set v3='99T42KM7M72CS46SDEFJ5P0GZBU6KIAZ6' where id=73; -update noar tt set v0='WBOWI0CEW7B9LI5PDLJC8FIYLKJJ6SH18' where id=74; -update noar ti set v0='WBOWI0CEW7B9LI5PDLJC8FIYLKJJ6SH18' where id=74; -update noar tt set v1='LSYOJO1Q2V8GPXYCXJA77ZPUF1JL6515N' where id=74; -update noar ti set v1='LSYOJO1Q2V8GPXYCXJA77ZPUF1JL6515N' where id=74; -update noar tt set v2='O5CUZUT5IYTS1JB86QX8CRZR6ZKF8KCPO' where id=74; -update noar ti set v2='O5CUZUT5IYTS1JB86QX8CRZR6ZKF8KCPO' where id=74; -update noar tt set v3='HSBWA8KJVH7NMXG8TXWHMPTM153K1803M' where id=74; -update noar ti set v3='HSBWA8KJVH7NMXG8TXWHMPTM153K1803M' where id=74; -update noar tt set v0='P1AKA9RXMQUPJ8UH4YSF2ZZMM4KI3KLOI' where id=75; -update noar ti set v0='P1AKA9RXMQUPJ8UH4YSF2ZZMM4KI3KLOI' where id=75; -update noar tt set v1='9BLOFZIHZMD70OKANU3ZT3QUDDP2Z3HK2' where id=75; -update noar ti set v1='9BLOFZIHZMD70OKANU3ZT3QUDDP2Z3HK2' where id=75; -update noar tt set v2='YLAZUKU8YIKPQU31M87L2MF6HSBNRFGSX' where id=75; -update noar ti set v2='YLAZUKU8YIKPQU31M87L2MF6HSBNRFGSX' where id=75; -update noar tt set v3='F98NSPC5CA6PWNYZBC606V28D1GC2NLII' where id=75; -update noar ti set v3='F98NSPC5CA6PWNYZBC606V28D1GC2NLII' where id=75; -update noar tt set v0='T98JPNLVHF2P083KV6N7YKE5FCA670P1H' where id=76; -update noar ti set v0='T98JPNLVHF2P083KV6N7YKE5FCA670P1H' where id=76; -update noar tt set v1='AZ975CNB0C9FLI9A0L6R7R4H0J0A1K458' where id=76; -update noar ti set v1='AZ975CNB0C9FLI9A0L6R7R4H0J0A1K458' where id=76; -update noar tt set v2='3N2LLW7WS9ZZ6HZBOKWVHMPQWUF1CC4X0' where id=76; -update noar ti set v2='3N2LLW7WS9ZZ6HZBOKWVHMPQWUF1CC4X0' where id=76; -update noar tt set v3='73VCJOOT0IQARR6DZET8UHYMHVY2Z6JJ4' where id=76; -update noar ti set v3='73VCJOOT0IQARR6DZET8UHYMHVY2Z6JJ4' where id=76; -update noar tt set v0='XXB3IJHCAMI97ZQ2ZACHFBGFEXB0CAUSE' where id=77; -update noar ti set v0='XXB3IJHCAMI97ZQ2ZACHFBGFEXB0CAUSE' where id=77; -update noar tt set v1='21KPBI7SBPI14NKO0C7QUBBCGXK7ZKOTZ' where id=77; -update noar ti set v1='21KPBI7SBPI14NKO0C7QUBBCGXK7ZKOTZ' where id=77; -update noar tt set v2='URLPIFRVYNAMYCRX7LLKQ5MT7FJFPB7WH' where id=77; -update noar ti set v2='URLPIFRVYNAMYCRX7LLKQ5MT7FJFPB7WH' where id=77; -update noar tt set v3='YOP561AH87AQJF4L8SVF96A1B1ND7V314' where id=77; -update noar ti set v3='YOP561AH87AQJF4L8SVF96A1B1ND7V314' where id=77; -update noar tt set v0='ZBFERG4QNM083VQODBXEXH762ZJSWKL92' where id=78; -update noar ti set v0='ZBFERG4QNM083VQODBXEXH762ZJSWKL92' where id=78; -update noar tt set v1='VQR847OOUIBLXNCD0DDC6R8AUNRB76O91' where id=78; -update noar ti set v1='VQR847OOUIBLXNCD0DDC6R8AUNRB76O91' where id=78; -update noar tt set v2='ZE40D1M8DAENTUXGQ2MQDFMQZA6O1CVO2' where id=78; -update noar ti set v2='ZE40D1M8DAENTUXGQ2MQDFMQZA6O1CVO2' where id=78; -update noar tt set v3='7ZGDF7C47NSDM34BH21FVRF21KPWPLPYK' where id=78; -update noar ti set v3='7ZGDF7C47NSDM34BH21FVRF21KPWPLPYK' where id=78; -update noar tt set v0='4SGF3DQGFXV1CGDG5ANXXO47UY17Y11W8' where id=79; -update noar ti set v0='4SGF3DQGFXV1CGDG5ANXXO47UY17Y11W8' where id=79; -update noar tt set v1='K5O85JPF9UH5A8G7MHIZW96EUU9A4CFA1' where id=79; -update noar ti set v1='K5O85JPF9UH5A8G7MHIZW96EUU9A4CFA1' where id=79; -update noar tt set v2='9TBJKUOURFRTJRNJUD5V9MHDXRNUMR1LT' where id=79; -update noar ti set v2='9TBJKUOURFRTJRNJUD5V9MHDXRNUMR1LT' where id=79; -update noar tt set v3='QJWTFODVSDM8EO6UHJ5KPGLX369ODALZN' where id=79; -update noar ti set v3='QJWTFODVSDM8EO6UHJ5KPGLX369ODALZN' where id=79; -update noar tt set v0='VLAJ4S98D5U7C43CB5FUM00SD288XO8RV' where id=80; -update noar ti set v0='VLAJ4S98D5U7C43CB5FUM00SD288XO8RV' where id=80; -update noar tt set v1='13QFF0874RF6M24B64V4OETJGOLOV17E4' where id=80; -update noar ti set v1='13QFF0874RF6M24B64V4OETJGOLOV17E4' where id=80; -update noar tt set v2='X7SUAGLHK4B0KQFHL7XIR783SIXBV4QN5' where id=80; -update noar ti set v2='X7SUAGLHK4B0KQFHL7XIR783SIXBV4QN5' where id=80; -update noar tt set v3='R72XWALF9KDJO3WXK8I6WCH34N9G4ZA8O' where id=80; -update noar ti set v3='R72XWALF9KDJO3WXK8I6WCH34N9G4ZA8O' where id=80; -update noar tt set v0='KTEFFO96XY7KY2IBL894XBPXAZWXAYFL1' where id=81; -update noar ti set v0='KTEFFO96XY7KY2IBL894XBPXAZWXAYFL1' where id=81; -update noar tt set v1='IWSED1A5WIPWZ3NFHEX8410M80SS29MPC' where id=81; -update noar ti set v1='IWSED1A5WIPWZ3NFHEX8410M80SS29MPC' where id=81; -update noar tt set v2='JITMLM0KGDD1MPIOYZD4SEYYDY8O0IPZL' where id=81; -update noar ti set v2='JITMLM0KGDD1MPIOYZD4SEYYDY8O0IPZL' where id=81; -update noar tt set v3='FWGVBCKX4QOL485DJBQVL466IATPH0J0S' where id=81; -update noar ti set v3='FWGVBCKX4QOL485DJBQVL466IATPH0J0S' where id=81; -update noar tt set v0='DTNA7INNCJNI3P0AYIVAPISMBYR9RMLV5' where id=82; -update noar ti set v0='DTNA7INNCJNI3P0AYIVAPISMBYR9RMLV5' where id=82; -update noar tt set v1='NNMSJ97H4ZSXEKZKXSXAPPHD4GUNE7OG4' where id=82; -update noar ti set v1='NNMSJ97H4ZSXEKZKXSXAPPHD4GUNE7OG4' where id=82; -update noar tt set v2='XQMMZ8E3GDICMQ1E5J5RXE8SX78M1XG7L' where id=82; -update noar ti set v2='XQMMZ8E3GDICMQ1E5J5RXE8SX78M1XG7L' where id=82; -update noar tt set v3='68H0B83BFFWEMG7YZHW2EFCQERQVWGNVK' where id=82; -update noar ti set v3='68H0B83BFFWEMG7YZHW2EFCQERQVWGNVK' where id=82; -update noar tt set v0='QMO9TTFMPJ4TO73LPFBJ3AC0DEKYAB0ET' where id=83; -update noar ti set v0='QMO9TTFMPJ4TO73LPFBJ3AC0DEKYAB0ET' where id=83; -update noar tt set v1='5VQTX3YJCEFUF1FG4XWJWLJ14TFZJJXIR' where id=83; -update noar ti set v1='5VQTX3YJCEFUF1FG4XWJWLJ14TFZJJXIR' where id=83; -update noar tt set v2='RSYL7JADB2ZJCXLWISPT73N8WHTO6IW83' where id=83; -update noar ti set v2='RSYL7JADB2ZJCXLWISPT73N8WHTO6IW83' where id=83; -update noar tt set v3='ZVCSF05JJG04TIMWUVFE11IKK3L1JU7C5' where id=83; -update noar ti set v3='ZVCSF05JJG04TIMWUVFE11IKK3L1JU7C5' where id=83; -update noar tt set v0='ZW2OKFTERFEDTGDOSF7E2F92JEE0J5POQ' where id=84; -update noar ti set v0='ZW2OKFTERFEDTGDOSF7E2F92JEE0J5POQ' where id=84; -update noar tt set v1='XBDJM2ACN0I1MI2J313FEQB1424LR8EDE' where id=84; -update noar ti set v1='XBDJM2ACN0I1MI2J313FEQB1424LR8EDE' where id=84; -update noar tt set v2='2CB71ZX2DK3QV3GOQEM6Z51F9N2ZCZ8CQ' where id=84; -update noar ti set v2='2CB71ZX2DK3QV3GOQEM6Z51F9N2ZCZ8CQ' where id=84; -update noar tt set v3='H0H1PLEZZVC0O2NGJ1UKB4UX6WKG9WNO0' where id=84; -update noar ti set v3='H0H1PLEZZVC0O2NGJ1UKB4UX6WKG9WNO0' where id=84; -update noar tt set v0='CNCY1KPXQ2R9XGXW3358XVK0CPJ3KFBHZ' where id=85; -update noar ti set v0='CNCY1KPXQ2R9XGXW3358XVK0CPJ3KFBHZ' where id=85; -update noar tt set v1='P7EFQFDLO0O09Q9K4YTEUSN7UDXV9KSZJ' where id=85; -update noar ti set v1='P7EFQFDLO0O09Q9K4YTEUSN7UDXV9KSZJ' where id=85; -update noar tt set v2='5FDYDRQMZ5T60YZCE7DL8VADZ4Z5F23Z7' where id=85; -update noar ti set v2='5FDYDRQMZ5T60YZCE7DL8VADZ4Z5F23Z7' where id=85; -update noar tt set v3='45NI5UNX32OO7QWYN33WXNNQPTC14SJT3' where id=85; -update noar ti set v3='45NI5UNX32OO7QWYN33WXNNQPTC14SJT3' where id=85; -update noar tt set v0='AQEBZQBLDYRATIYRW2Q4VB9Z3QIXFHTMA' where id=86; -update noar ti set v0='AQEBZQBLDYRATIYRW2Q4VB9Z3QIXFHTMA' where id=86; -update noar tt set v1='G4DPWHM507DIR6LFHS6Z25OIL893V7RE0' where id=86; -update noar ti set v1='G4DPWHM507DIR6LFHS6Z25OIL893V7RE0' where id=86; -update noar tt set v2='BDHH5S388F9ALHJTSPK3728EY9PCYGIXL' where id=86; -update noar ti set v2='BDHH5S388F9ALHJTSPK3728EY9PCYGIXL' where id=86; -update noar tt set v3='269GE1YSO0A3ETDNC3839UHISZC5BEXUJ' where id=86; -update noar ti set v3='269GE1YSO0A3ETDNC3839UHISZC5BEXUJ' where id=86; -update noar tt set v0='9TVS7OAD7LITZBQUL99GKCYOZBCIQBPKQ' where id=87; -update noar ti set v0='9TVS7OAD7LITZBQUL99GKCYOZBCIQBPKQ' where id=87; -update noar tt set v1='7NDTE4RT66B9DUEKQE590QRVQSEEUBBLP' where id=87; -update noar ti set v1='7NDTE4RT66B9DUEKQE590QRVQSEEUBBLP' where id=87; -update noar tt set v2='75UU9H5MJ5LDBWHU5GQTJBSOGU4K0EW0I' where id=87; -update noar ti set v2='75UU9H5MJ5LDBWHU5GQTJBSOGU4K0EW0I' where id=87; -update noar tt set v3='2GTQTOQO0O7XIOV6CTGGV495DG1HZ9JRE' where id=87; -update noar ti set v3='2GTQTOQO0O7XIOV6CTGGV495DG1HZ9JRE' where id=87; -update noar tt set v0='BKBZD41ZXLAQ2Y7CJ8A9527P8I7PM4KFH' where id=88; -update noar ti set v0='BKBZD41ZXLAQ2Y7CJ8A9527P8I7PM4KFH' where id=88; -update noar tt set v1='PR6O564MYVY1V2T703CSCFPIDTT9Z7NXH' where id=88; -update noar ti set v1='PR6O564MYVY1V2T703CSCFPIDTT9Z7NXH' where id=88; -update noar tt set v2='XG59QG8DHXVGPONH4AMM85D5ZJG3MG1GT' where id=88; -update noar ti set v2='XG59QG8DHXVGPONH4AMM85D5ZJG3MG1GT' where id=88; -update noar tt set v3='E2PMCQJNBY0RIK7672MATBTLUB2CWW2FE' where id=88; -update noar ti set v3='E2PMCQJNBY0RIK7672MATBTLUB2CWW2FE' where id=88; -update noar tt set v0='ZI17RPYY2F1N7I9CH1K6VVXJJA0PQK0SF' where id=89; -update noar ti set v0='ZI17RPYY2F1N7I9CH1K6VVXJJA0PQK0SF' where id=89; -update noar tt set v1='62VI8M2LZKFMRHA2P3CNH8XMRDSUKLLPL' where id=89; -update noar ti set v1='62VI8M2LZKFMRHA2P3CNH8XMRDSUKLLPL' where id=89; -update noar tt set v2='5L98FNGZF9RSO2MY8V3AOXPTWH0W2856B' where id=89; -update noar ti set v2='5L98FNGZF9RSO2MY8V3AOXPTWH0W2856B' where id=89; -update noar tt set v3='60XB753EJQ1YGGQV083YB9K3T6RK5QDQZ' where id=89; -update noar ti set v3='60XB753EJQ1YGGQV083YB9K3T6RK5QDQZ' where id=89; -update noar tt set v0='3T7OPS6T17EEELNYMF5KQXCP6T85AAK2W' where id=90; -update noar ti set v0='3T7OPS6T17EEELNYMF5KQXCP6T85AAK2W' where id=90; -update noar tt set v1='51EGCPTYNNJ9H6H3JIJBRHA7M7Q5DLV6L' where id=90; -update noar ti set v1='51EGCPTYNNJ9H6H3JIJBRHA7M7Q5DLV6L' where id=90; -update noar tt set v2='1KO904YXC0NBCRART470WFCYNX9I8GRGG' where id=90; -update noar ti set v2='1KO904YXC0NBCRART470WFCYNX9I8GRGG' where id=90; -update noar tt set v3='HWJUBIFBUL5T8W0TXP0WGC0YSDU4F87QE' where id=90; -update noar ti set v3='HWJUBIFBUL5T8W0TXP0WGC0YSDU4F87QE' where id=90; -update noar tt set v0='MCX8VBA8SIEVZIKOSFUNEZWALPCVAHZA9' where id=91; -update noar ti set v0='MCX8VBA8SIEVZIKOSFUNEZWALPCVAHZA9' where id=91; -update noar tt set v1='HMHPSE5ZJX0EPY4AD0SONINHVO9U2KX9U' where id=91; -update noar ti set v1='HMHPSE5ZJX0EPY4AD0SONINHVO9U2KX9U' where id=91; -update noar tt set v2='U2NLR5IKGB4WV484HQX2U1274N42LR4HM' where id=91; -update noar ti set v2='U2NLR5IKGB4WV484HQX2U1274N42LR4HM' where id=91; -update noar tt set v3='E8Y7KYC1H57JSOZR5CW9V4I8M1OHTMS3Y' where id=91; -update noar ti set v3='E8Y7KYC1H57JSOZR5CW9V4I8M1OHTMS3Y' where id=91; -update noar tt set v0='MP24496CCZZZB1WF84X6UTK2ZYJ4Q4JRH' where id=92; -update noar ti set v0='MP24496CCZZZB1WF84X6UTK2ZYJ4Q4JRH' where id=92; -update noar tt set v1='632NX3QHU2LR265L3N8I0L5JRQ6ATNBDK' where id=92; -update noar ti set v1='632NX3QHU2LR265L3N8I0L5JRQ6ATNBDK' where id=92; -update noar tt set v2='ZUEOHXZ6I7PJG8CDKCYGC1P9KXOGXPAAL' where id=92; -update noar ti set v2='ZUEOHXZ6I7PJG8CDKCYGC1P9KXOGXPAAL' where id=92; -update noar tt set v3='V0CC2HHD0CKQH2LHNLT1YCD38CA3VBJON' where id=92; -update noar ti set v3='V0CC2HHD0CKQH2LHNLT1YCD38CA3VBJON' where id=92; -update noar tt set v0='CIJ08XBVT4N3QBASLZSRNMJX11L27VRTY' where id=93; -update noar ti set v0='CIJ08XBVT4N3QBASLZSRNMJX11L27VRTY' where id=93; -update noar tt set v1='ODHZY95OPJYEM1YM39CNXSO8TCJ3Q176X' where id=93; -update noar ti set v1='ODHZY95OPJYEM1YM39CNXSO8TCJ3Q176X' where id=93; -update noar tt set v2='QB6FDMHZA3DZYFFK7Y4Y536F6GMNWXCPG' where id=93; -update noar ti set v2='QB6FDMHZA3DZYFFK7Y4Y536F6GMNWXCPG' where id=93; -update noar tt set v3='IY18E8SKPI40SGJDA5O2PKMFKUH0S0250' where id=93; -update noar ti set v3='IY18E8SKPI40SGJDA5O2PKMFKUH0S0250' where id=93; -update noar tt set v0='7HRJGOIOH6M8R3MBABI3347U0NQJDTTZS' where id=94; -update noar ti set v0='7HRJGOIOH6M8R3MBABI3347U0NQJDTTZS' where id=94; -update noar tt set v1='587585VOKF9DAXK0I27DD895BDT8UJPLI' where id=94; -update noar ti set v1='587585VOKF9DAXK0I27DD895BDT8UJPLI' where id=94; -update noar tt set v2='P3NA23XVT8YE2CC1M1ANRQ66EMZUVIQBL' where id=94; -update noar ti set v2='P3NA23XVT8YE2CC1M1ANRQ66EMZUVIQBL' where id=94; -update noar tt set v3='N53W139ISAB8KUGVRX7X6Q9CI6KF637S3' where id=94; -update noar ti set v3='N53W139ISAB8KUGVRX7X6Q9CI6KF637S3' where id=94; -update noar tt set v0='72C7ANCIBV6PSIJLG1KXGGOV7AUHHK3T9' where id=95; -update noar ti set v0='72C7ANCIBV6PSIJLG1KXGGOV7AUHHK3T9' where id=95; -update noar tt set v1='LL2TPQYROSPE7WIDE1QRUL697CDK9KKKQ' where id=95; -update noar ti set v1='LL2TPQYROSPE7WIDE1QRUL697CDK9KKKQ' where id=95; -update noar tt set v2='A2HX1PJKNPXGS8Y7B1XQ2748EC70HVI5Z' where id=95; -update noar ti set v2='A2HX1PJKNPXGS8Y7B1XQ2748EC70HVI5Z' where id=95; -update noar tt set v3='20Y3TKYBJO9U3175JI59W7Y4XGGW2Z2D9' where id=95; -update noar ti set v3='20Y3TKYBJO9U3175JI59W7Y4XGGW2Z2D9' where id=95; -update noar tt set v0='154T5LUDKY2WSUB5YX5RQ6J735NDN7YP3' where id=96; -update noar ti set v0='154T5LUDKY2WSUB5YX5RQ6J735NDN7YP3' where id=96; -update noar tt set v1='ULYRIHE1QD9E4W4V1A9K0F5SE5HEX3ER5' where id=96; -update noar ti set v1='ULYRIHE1QD9E4W4V1A9K0F5SE5HEX3ER5' where id=96; -update noar tt set v2='1HKPI8WULN8PU2QBVA7IVQUIPXFXTVUCK' where id=96; -update noar ti set v2='1HKPI8WULN8PU2QBVA7IVQUIPXFXTVUCK' where id=96; -update noar tt set v3='IYGAZNVNCYEAI2OMZEJMVIODDF6FW9845' where id=96; -update noar ti set v3='IYGAZNVNCYEAI2OMZEJMVIODDF6FW9845' where id=96; -update noar tt set v0='4A38UMXJ8QCZARQMNLESLUKJ72ZU7ESQC' where id=97; -update noar ti set v0='4A38UMXJ8QCZARQMNLESLUKJ72ZU7ESQC' where id=97; -update noar tt set v1='PAR1XBCZFT852Q8NCIT9300018D1UTLFO' where id=97; -update noar ti set v1='PAR1XBCZFT852Q8NCIT9300018D1UTLFO' where id=97; -update noar tt set v2='TQWRBG455K6N8PA9KRQCAEW2D5UPF01JS' where id=97; -update noar ti set v2='TQWRBG455K6N8PA9KRQCAEW2D5UPF01JS' where id=97; -update noar tt set v3='QTKE9966ERUKBBTBFTT49UPWJJBMG9XIE' where id=97; -update noar ti set v3='QTKE9966ERUKBBTBFTT49UPWJJBMG9XIE' where id=97; -update noar tt set v0='6UUWGKGGVZFMJ2SZPZGT3M6FMCTAY0NEB' where id=98; -update noar ti set v0='6UUWGKGGVZFMJ2SZPZGT3M6FMCTAY0NEB' where id=98; -update noar tt set v1='1H449U44PIMOS2GKKWF48UJM4F5RE5QNO' where id=98; -update noar ti set v1='1H449U44PIMOS2GKKWF48UJM4F5RE5QNO' where id=98; -update noar tt set v2='1L0YUIQCJF1G7GICFNVCX5M8B6TCWRSC8' where id=98; -update noar ti set v2='1L0YUIQCJF1G7GICFNVCX5M8B6TCWRSC8' where id=98; -update noar tt set v3='5S4MH3ZHVWI7R51FW3G265C5YUOHSKRLY' where id=98; -update noar ti set v3='5S4MH3ZHVWI7R51FW3G265C5YUOHSKRLY' where id=98; -update noar tt set v0='0Z9GTT0CRTSIRMPF3FIP2GJI6LME72GCT' where id=99; -update noar ti set v0='0Z9GTT0CRTSIRMPF3FIP2GJI6LME72GCT' where id=99; -update noar tt set v1='0PVF9ONHD3QR6ROWWVIW86O4A85UX5INJ' where id=99; -update noar ti set v1='0PVF9ONHD3QR6ROWWVIW86O4A85UX5INJ' where id=99; -update noar tt set v2='O6DP7BSQ5HRF2GX4QOHHRYXMASKRRB5J3' where id=99; -update noar ti set v2='O6DP7BSQ5HRF2GX4QOHHRYXMASKRRB5J3' where id=99; -update noar tt set v3='I4NUTHC417X1WZOJT6P9NOBSQAWFOSXPK' where id=99; -update noar ti set v3='I4NUTHC417X1WZOJT6P9NOBSQAWFOSXPK' where id=99; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - f0 int null, - v0 varbinary(256) null, - v1 varbinary(256) null, - v2 varbinary(256) null, - v3 varbinary(256) null, - b0 text null -) engine=tokudb; -insert into tt (id) values (0); -insert into tt values (1,2,'a','b','c','d','e'); -insert into tt values (2,3,'','','','',''); -insert into tt values (3,4,'','','','',''); -insert into tt values (4,5,'','','','',''); -insert into tt values (5,6,'','','','',''); -insert into tt values (6,7,'','','','',''); -insert into tt values (7,8,'','','','',''); -insert into tt values (8,9,'','','','',''); -insert into tt values (9,10,'','','','',''); -insert into tt values (10,11,'','','','',''); -insert into tt values (11,12,'','','','',''); -insert into tt values (12,13,'','','','',''); -insert into tt values (13,14,'','','','',''); -insert into tt values (14,15,'','','','',''); -insert into tt values (15,16,'','','','',''); -insert into tt values (16,17,'','','','',''); -insert into tt values (17,18,'','','','',''); -insert into tt values (18,19,'','','','',''); -insert into tt values (19,20,'','','','',''); -insert into tt values (20,21,'','','','',''); -insert into tt values (21,22,'','','','',''); -insert into tt values (22,23,'','','','',''); -insert into tt values (23,24,'','','','',''); -insert into tt values (24,25,'','','','',''); -insert into tt values (25,26,'','','','',''); -insert into tt values (26,27,'','','','',''); -insert into tt values (27,28,'','','','',''); -insert into tt values (28,29,'','','','',''); -insert into tt values (29,30,'','','','',''); -insert into tt values (30,31,'','','','',''); -insert into tt values (31,32,'','','','',''); -insert into tt values (32,33,'','','','',''); -insert into tt values (33,34,'','','','',''); -insert into tt values (34,35,'','','','',''); -insert into tt values (35,36,'','','','',''); -insert into tt values (36,37,'','','','',''); -insert into tt values (37,38,'','','','',''); -insert into tt values (38,39,'','','','',''); -insert into tt values (39,40,'','','','',''); -insert into tt values (40,41,'','','','',''); -insert into tt values (41,42,'','','','',''); -insert into tt values (42,43,'','','','',''); -insert into tt values (43,44,'','','','',''); -insert into tt values (44,45,'','','','',''); -insert into tt values (45,46,'','','','',''); -insert into tt values (46,47,'','','','',''); -insert into tt values (47,48,'','','','',''); -insert into tt values (48,49,'','','','',''); -insert into tt values (49,50,'','','','',''); -insert into tt values (50,51,'','','','',''); -insert into tt values (51,52,'','','','',''); -insert into tt values (52,53,'','','','',''); -insert into tt values (53,54,'','','','',''); -insert into tt values (54,55,'','','','',''); -insert into tt values (55,56,'','','','',''); -insert into tt values (56,57,'','','','',''); -insert into tt values (57,58,'','','','',''); -insert into tt values (58,59,'','','','',''); -insert into tt values (59,60,'','','','',''); -insert into tt values (60,61,'','','','',''); -insert into tt values (61,62,'','','','',''); -insert into tt values (62,63,'','','','',''); -insert into tt values (63,64,'','','','',''); -insert into tt values (64,65,'','','','',''); -insert into tt values (65,66,'','','','',''); -insert into tt values (66,67,'','','','',''); -insert into tt values (67,68,'','','','',''); -insert into tt values (68,69,'','','','',''); -insert into tt values (69,70,'','','','',''); -insert into tt values (70,71,'','','','',''); -insert into tt values (71,72,'','','','',''); -insert into tt values (72,73,'','','','',''); -insert into tt values (73,74,'','','','',''); -insert into tt values (74,75,'','','','',''); -insert into tt values (75,76,'','','','',''); -insert into tt values (76,77,'','','','',''); -insert into tt values (77,78,'','','','',''); -insert into tt values (78,79,'','','','',''); -insert into tt values (79,80,'','','','',''); -insert into tt values (80,81,'','','','',''); -insert into tt values (81,82,'','','','',''); -insert into tt values (82,83,'','','','',''); -insert into tt values (83,84,'','','','',''); -insert into tt values (84,85,'','','','',''); -insert into tt values (85,86,'','','','',''); -insert into tt values (86,87,'','','','',''); -insert into tt values (87,88,'','','','',''); -insert into tt values (88,89,'','','','',''); -insert into tt values (89,90,'','','','',''); -insert into tt values (90,91,'','','','',''); -insert into tt values (91,92,'','','','',''); -insert into tt values (92,93,'','','','',''); -insert into tt values (93,94,'','','','',''); -insert into tt values (94,95,'','','','',''); -insert into tt values (95,96,'','','','',''); -insert into tt values (96,97,'','','','',''); -insert into tt values (97,98,'','','','',''); -insert into tt values (98,99,'','','','',''); -insert into tt values (99,100,'','','','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='null this 0' where id=0; -update noar ti set v0='null this 0' where id=0; -update noar tt set v1='null is 1' where id=0; -update noar ti set v1='null is 1' where id=0; -update noar tt set v2='null a 2' where id=0; -update noar ti set v2='null a 2' where id=0; -update noar tt set v3='null test 3' where id=0; -update noar ti set v3='null test 3' where id=0; -update noar tt set v0='this 0' where id=1; -update noar ti set v0='this 0' where id=1; -update noar tt set v1='is 1' where id=1; -update noar ti set v1='is 1' where id=1; -update noar tt set v2='another 2' where id=1; -update noar ti set v2='another 2' where id=1; -update noar tt set v3='test 3' where id=1; -update noar ti set v3='test 3' where id=1; -update noar tt set v0='N5FUIPBLY8BCDFMOM9J59U0Z6ZV7IZ4E3EAR82XWC3AG45V57OCIGRMB3RV2U64D26F8M4220UOTUVAKCFNMNCNNAHJJ1203UCDOLEG6NDI1DKTKDP7L9TMA0F858TW5NITP19TN4QSBMILPWVDQA59KKMG4TW5IDJ2YXVC0L0XOE4LJ7UT764J6Y2RLZDBLD90HWBK9M3RFICD4U9KA6GVDVGWTXMNGUF1QQWBPEMFOWK5TFPP5RV1UDMLGCC3JC' where id=2; -update noar ti set v0='N5FUIPBLY8BCDFMOM9J59U0Z6ZV7IZ4E3EAR82XWC3AG45V57OCIGRMB3RV2U64D26F8M4220UOTUVAKCFNMNCNNAHJJ1203UCDOLEG6NDI1DKTKDP7L9TMA0F858TW5NITP19TN4QSBMILPWVDQA59KKMG4TW5IDJ2YXVC0L0XOE4LJ7UT764J6Y2RLZDBLD90HWBK9M3RFICD4U9KA6GVDVGWTXMNGUF1QQWBPEMFOWK5TFPP5RV1UDMLGCC3JC' where id=2; -update noar tt set v1='901NIKL85HV562NWKBJ0R1VA63AE1V5IIYMU33TGV3E43TZ2Z3B84JBQ94H1S4IL5KCZ0VVXMHB7Z5W8QMZYSJY9QFRK4AUR8LYOTCXV7SCLKR7713BT4QY7XND05IZQR6RMIFLN0NYOH2L27LVVZXBERLGX7PMM1RYNEUZIW5NKU5P2Q7WOOTEMZ2X0DB2CX2GN49W1Q10MUM2K8Y463OUPGDUY855FXT62EHAZXBAEAFTR7391OXTAPH0V9VG7M' where id=2; -update noar ti set v1='901NIKL85HV562NWKBJ0R1VA63AE1V5IIYMU33TGV3E43TZ2Z3B84JBQ94H1S4IL5KCZ0VVXMHB7Z5W8QMZYSJY9QFRK4AUR8LYOTCXV7SCLKR7713BT4QY7XND05IZQR6RMIFLN0NYOH2L27LVVZXBERLGX7PMM1RYNEUZIW5NKU5P2Q7WOOTEMZ2X0DB2CX2GN49W1Q10MUM2K8Y463OUPGDUY855FXT62EHAZXBAEAFTR7391OXTAPH0V9VG7M' where id=2; -update noar tt set v2='DYNBQU5XXFPMUXY54REGU5GW8914R17K9IJIRJ4UP153CJJMRXRVRHLO4FW4JZFTG9XOXF14RM7A7AX09NUSRPCVYXAAG5O111GJRTY2RHZBLKLVCUYNFW6SVOL64MHREY9BX26OUTR4W5UV984Z2F07MKR7A8CSEO0Q7JQUONZE1MSD61JV890OPAUPRGER1YQEGISCX2T1G2Q7YMFXY7GPVGFOJO2TGA0QR4OEXFBSAKVVJL2A3XWW1VJKB32BZ' where id=2; -update noar ti set v2='DYNBQU5XXFPMUXY54REGU5GW8914R17K9IJIRJ4UP153CJJMRXRVRHLO4FW4JZFTG9XOXF14RM7A7AX09NUSRPCVYXAAG5O111GJRTY2RHZBLKLVCUYNFW6SVOL64MHREY9BX26OUTR4W5UV984Z2F07MKR7A8CSEO0Q7JQUONZE1MSD61JV890OPAUPRGER1YQEGISCX2T1G2Q7YMFXY7GPVGFOJO2TGA0QR4OEXFBSAKVVJL2A3XWW1VJKB32BZ' where id=2; -update noar tt set v3='8TBDTM95ASERHO1JDMRTNWWG2FTGM6T7QA5F25XH4YOCLSUK4OS28CUIIYMB49ZG0UKEACZVPVXG81UOHDCTWTGTIVSSTFN5842WSAVD9EE1VHVKJ060YULWCIVSITOJGITMNF6PH6RA2SD2ZHIK1BSX1U2N7H12K8AMO53UMZI1UKNWFMG641Y0CU0154TC1AFBCUECOMF6USXRWQOIS5SZQ8MW065D0V49AIGS7IIR7JER26DDAVOZQ2LXPVT5L' where id=2; -update noar ti set v3='8TBDTM95ASERHO1JDMRTNWWG2FTGM6T7QA5F25XH4YOCLSUK4OS28CUIIYMB49ZG0UKEACZVPVXG81UOHDCTWTGTIVSSTFN5842WSAVD9EE1VHVKJ060YULWCIVSITOJGITMNF6PH6RA2SD2ZHIK1BSX1U2N7H12K8AMO53UMZI1UKNWFMG641Y0CU0154TC1AFBCUECOMF6USXRWQOIS5SZQ8MW065D0V49AIGS7IIR7JER26DDAVOZQ2LXPVT5L' where id=2; -update noar tt set v0='8OEJETZB0O1XZV5WUHM31U4H9M88EH6295AS05MXZZ6AD6OKBLSZP0V15I5ZWS503YPMZ479IU0J9BKYVI78SU01J20M4NXG863M0ITMD3SEGE9XUECDWL08LA8BVBZMQ87ZEG8A07OT0ZNVQ2JTJSFMXXLU3BTKRT8H5I2FM6QSQTUR99VXEEOZ8ZXQKHI7KAZPW88U644RB7CW64E8CGCN6GCZUTKV6V8XFWSYAUJVX0S2HLZJL3SUHCKJ0E3F4' where id=3; -update noar ti set v0='8OEJETZB0O1XZV5WUHM31U4H9M88EH6295AS05MXZZ6AD6OKBLSZP0V15I5ZWS503YPMZ479IU0J9BKYVI78SU01J20M4NXG863M0ITMD3SEGE9XUECDWL08LA8BVBZMQ87ZEG8A07OT0ZNVQ2JTJSFMXXLU3BTKRT8H5I2FM6QSQTUR99VXEEOZ8ZXQKHI7KAZPW88U644RB7CW64E8CGCN6GCZUTKV6V8XFWSYAUJVX0S2HLZJL3SUHCKJ0E3F4' where id=3; -update noar tt set v1='WZBXEEGO5NPB68OJ5NGUZY5OS3WAO0I8IKCT96KCD47A5ZLQYMAGTOHINCTRTCMMTF5Z9O7IB2B66R39HTC5ZWIC9RL05TNQE22N91XZAA0CQVCVO8J5I8JEYI0VSOGANNTGHCTZYURX8EPYE7TDTIQNHMQ28DHOFAY81GD82BLPGWV17PH0A1736URXSUO1KUQYZ8PSK6CRGV248VL49PR6IBU3ZYV1QQCMLU5EYXV6YPYZVJLNVND895YJOVEM5' where id=3; -update noar ti set v1='WZBXEEGO5NPB68OJ5NGUZY5OS3WAO0I8IKCT96KCD47A5ZLQYMAGTOHINCTRTCMMTF5Z9O7IB2B66R39HTC5ZWIC9RL05TNQE22N91XZAA0CQVCVO8J5I8JEYI0VSOGANNTGHCTZYURX8EPYE7TDTIQNHMQ28DHOFAY81GD82BLPGWV17PH0A1736URXSUO1KUQYZ8PSK6CRGV248VL49PR6IBU3ZYV1QQCMLU5EYXV6YPYZVJLNVND895YJOVEM5' where id=3; -update noar tt set v2='Y1QARB3SQBDWJF18Y1QWIDSXUQ45Z6MF6CTM2J25D3LP8CWXK72X5KUGCTIVJD4A923UFSCJQBXM6OOACWEGB5RX03C9ZDK7ZNRVFO2I7CVSUQ1U36TZL6JLKJXCL060F4XUIE1PNVFO43TC5JBBT9PZPSVZRNNEOQ2UW3N8YFJ4VCFGU34L8SM33812TRKGOVFAOLPDZOSW25OP7X55H2WIHFRYLQU5ITCAY3R3H071E1QDY8B6JTTHVOHLI2IY5' where id=3; -update noar ti set v2='Y1QARB3SQBDWJF18Y1QWIDSXUQ45Z6MF6CTM2J25D3LP8CWXK72X5KUGCTIVJD4A923UFSCJQBXM6OOACWEGB5RX03C9ZDK7ZNRVFO2I7CVSUQ1U36TZL6JLKJXCL060F4XUIE1PNVFO43TC5JBBT9PZPSVZRNNEOQ2UW3N8YFJ4VCFGU34L8SM33812TRKGOVFAOLPDZOSW25OP7X55H2WIHFRYLQU5ITCAY3R3H071E1QDY8B6JTTHVOHLI2IY5' where id=3; -update noar tt set v3='LEERCIAX974R0MFZ27OLIYWQ1JMERYH9M8262B125Y9P2IY5WW2JU0L7Y3QIRJL1NGU7OIT8GUYAR6XFU98TSRMYPIA9JS95UC4CTZ8630DP8VG0GOJTHAUYVWXMPUZ3DOMVIWPLHVO12JCN6L9PBX3ZDKQVV589DW59GZOCKE7U30KB6VUEEP8WR2GIX1957JXN4WRMS8FZAXPBVNJIO9S540YOFNI54T02NB5SHDPDYOFZ3JHYUMEAQRR50MCOU' where id=3; -update noar ti set v3='LEERCIAX974R0MFZ27OLIYWQ1JMERYH9M8262B125Y9P2IY5WW2JU0L7Y3QIRJL1NGU7OIT8GUYAR6XFU98TSRMYPIA9JS95UC4CTZ8630DP8VG0GOJTHAUYVWXMPUZ3DOMVIWPLHVO12JCN6L9PBX3ZDKQVV589DW59GZOCKE7U30KB6VUEEP8WR2GIX1957JXN4WRMS8FZAXPBVNJIO9S540YOFNI54T02NB5SHDPDYOFZ3JHYUMEAQRR50MCOU' where id=3; -update noar tt set v0='S9VT28U398ANZH2CI6MXDBOBYVU9QSXW5QA3UQSF13GNJSTWKQXMBK56XG0779DRTVOKAFB2OQDPPQYND3BZ1YRIL5RFHD74WC0X9N16J6YEDKAECYWCAIMRS8Q8F2TLUT4NNR1A9HTN0745XVWZ9R37YBAJN3NBG1A60J13UKHI90B1TN3QUROSN6EEGPBUSG6FHNSKU5FLV2PJ767K7YSOL7N87ERAAVPM37DLWQE8I1Z0VUMXXQ2AV2KJB2262' where id=4; -update noar ti set v0='S9VT28U398ANZH2CI6MXDBOBYVU9QSXW5QA3UQSF13GNJSTWKQXMBK56XG0779DRTVOKAFB2OQDPPQYND3BZ1YRIL5RFHD74WC0X9N16J6YEDKAECYWCAIMRS8Q8F2TLUT4NNR1A9HTN0745XVWZ9R37YBAJN3NBG1A60J13UKHI90B1TN3QUROSN6EEGPBUSG6FHNSKU5FLV2PJ767K7YSOL7N87ERAAVPM37DLWQE8I1Z0VUMXXQ2AV2KJB2262' where id=4; -update noar tt set v1='C7VYDGWY3ZGGCLP58C786Z60L6LSRQ6AELPXVE4OI8PQ87SJL54KHLG6C0F25CP9B9BD8SLSBDKTILXBT4WHMW17NGKOTY2RMEIV0VMRDPUHFF912JFXEF8SIQ37B43A09M0N5YVI7LHRL3Z86ANIHKR4TNAADUAZJXMX5HMYYU43RDQ57FZP8U53UM6R37ODJ45WQD4O0PIZYIOSCT6ABOSN1J3ZOHAZ7QWD5K1PZEAV1WAX0HSGYW4Q5MVOAL51' where id=4; -update noar ti set v1='C7VYDGWY3ZGGCLP58C786Z60L6LSRQ6AELPXVE4OI8PQ87SJL54KHLG6C0F25CP9B9BD8SLSBDKTILXBT4WHMW17NGKOTY2RMEIV0VMRDPUHFF912JFXEF8SIQ37B43A09M0N5YVI7LHRL3Z86ANIHKR4TNAADUAZJXMX5HMYYU43RDQ57FZP8U53UM6R37ODJ45WQD4O0PIZYIOSCT6ABOSN1J3ZOHAZ7QWD5K1PZEAV1WAX0HSGYW4Q5MVOAL51' where id=4; -update noar tt set v2='WKSVQUTJKW2IQLDIY6WNKRHNO3UB3EVI0GFL0M1B1PCH83MDBN6K8F90NJX1YKESUPCLZM63WPCWK6KI5Y6Y2YA9B4PQ0ITG7OYG6JTQ8R4MCFFV56GNOZ2I0JJRF0VBKHK8J0AP4TN5VIKYWBRKSQ7WK9A2A9SWKIY0UH6RGU11YAE1JHXC19FLK23458VB7COHU51S5KTANQOL48VJUCC2H01CP9OVX24AR42FWFKAPT5K6RK6GJ4OHBKT1ZK5O' where id=4; -update noar ti set v2='WKSVQUTJKW2IQLDIY6WNKRHNO3UB3EVI0GFL0M1B1PCH83MDBN6K8F90NJX1YKESUPCLZM63WPCWK6KI5Y6Y2YA9B4PQ0ITG7OYG6JTQ8R4MCFFV56GNOZ2I0JJRF0VBKHK8J0AP4TN5VIKYWBRKSQ7WK9A2A9SWKIY0UH6RGU11YAE1JHXC19FLK23458VB7COHU51S5KTANQOL48VJUCC2H01CP9OVX24AR42FWFKAPT5K6RK6GJ4OHBKT1ZK5O' where id=4; -update noar tt set v3='C9TM839RNF1RPA5YGG7VXSPAKPRGTQ5HW6F7JBYD21IMVIWDT25DAK3OHLDBWYB5UKQKWHWGPXZBKCUBUR34GLL64UGL7407GBW40H2N9XCS232N8A2J86BVJ3OPOWGRKO3OVOVC78TOQA01UEGN8Q9OXTC6PWBHVWJJMS3KB11VO50GV37AP1WV61PXAQYV2VSKTCN7LZ8N9VJ581VFDZX1W2PKA7ZYPPZ85N5JEDTILKWOL8MY0KRFS2PM6JHTX' where id=4; -update noar ti set v3='C9TM839RNF1RPA5YGG7VXSPAKPRGTQ5HW6F7JBYD21IMVIWDT25DAK3OHLDBWYB5UKQKWHWGPXZBKCUBUR34GLL64UGL7407GBW40H2N9XCS232N8A2J86BVJ3OPOWGRKO3OVOVC78TOQA01UEGN8Q9OXTC6PWBHVWJJMS3KB11VO50GV37AP1WV61PXAQYV2VSKTCN7LZ8N9VJ581VFDZX1W2PKA7ZYPPZ85N5JEDTILKWOL8MY0KRFS2PM6JHTX' where id=4; -update noar tt set v0='31PUS63RQ5S5ZW9QG8THBZEAAVGZYCIAKR7VLLR380KVD83EFH93PTO2UHNSCSFPP3KW4Y9FERHM6V1AESB5571ZHFFEKYVT6UVLFLXG1XC5MOPYFBR8XO6MERKSUHIU1ISLOH6TFWJMRV4LVCA1NEVNH4TRS5PUL2UK7E8QO2ZLXYDBTYACGEWTM4OF1ZNTSJZ579D31IK6KWNVG5A772X95156KVGLH3O7UT3LLES80I94Z6XV6B7RCCPN2VRVF' where id=5; -update noar ti set v0='31PUS63RQ5S5ZW9QG8THBZEAAVGZYCIAKR7VLLR380KVD83EFH93PTO2UHNSCSFPP3KW4Y9FERHM6V1AESB5571ZHFFEKYVT6UVLFLXG1XC5MOPYFBR8XO6MERKSUHIU1ISLOH6TFWJMRV4LVCA1NEVNH4TRS5PUL2UK7E8QO2ZLXYDBTYACGEWTM4OF1ZNTSJZ579D31IK6KWNVG5A772X95156KVGLH3O7UT3LLES80I94Z6XV6B7RCCPN2VRVF' where id=5; -update noar tt set v1='VM0YC3FYONLYG5NSQ8B16T9A3ISBAV2E3JMW6YRUSJXQMRQ2RPQSSC5SZY3C41T0PNOXCJCXHT81UYH9062ICJOT6BZ01YU61E9E9A1S9Y5HDNR63WA4EN556EL7VIV72TKUXI8KWRRJFVESZ28ZJN8D07DFAENNM4BCE829X0EJZKDRWVYUWM9UHWMGWN4HT6TGOI3NADQTIVJSAFXMKQDIOZV9435J8PPMI9HT4PHL77Q3UT5JH9MP2068JG6QB' where id=5; -update noar ti set v1='VM0YC3FYONLYG5NSQ8B16T9A3ISBAV2E3JMW6YRUSJXQMRQ2RPQSSC5SZY3C41T0PNOXCJCXHT81UYH9062ICJOT6BZ01YU61E9E9A1S9Y5HDNR63WA4EN556EL7VIV72TKUXI8KWRRJFVESZ28ZJN8D07DFAENNM4BCE829X0EJZKDRWVYUWM9UHWMGWN4HT6TGOI3NADQTIVJSAFXMKQDIOZV9435J8PPMI9HT4PHL77Q3UT5JH9MP2068JG6QB' where id=5; -update noar tt set v2='I78PU8Z6D7ZW7VWZ02FYCD0QBPWX494OV8EMQYI8NCBYRV36R2XJ0INZBY9YSOB2FK4IS1JTIFB9IE4YIPK7GJYOI2E9OWL2WAF1D8LCVY8N66I4NEZMEI4IV1SCZ746XEBONETIUHRGSBQWBLP2JU346WDAQBM8XPBEOIMPG4F1Y1V70XDTYG6AYCJ0DYEW7DAVVI5WSDF3PYSIOLDWW32ASEI6W60XB4K0QNIG4EOXRU1W0POOK7HCNCX9YVX8J' where id=5; -update noar ti set v2='I78PU8Z6D7ZW7VWZ02FYCD0QBPWX494OV8EMQYI8NCBYRV36R2XJ0INZBY9YSOB2FK4IS1JTIFB9IE4YIPK7GJYOI2E9OWL2WAF1D8LCVY8N66I4NEZMEI4IV1SCZ746XEBONETIUHRGSBQWBLP2JU346WDAQBM8XPBEOIMPG4F1Y1V70XDTYG6AYCJ0DYEW7DAVVI5WSDF3PYSIOLDWW32ASEI6W60XB4K0QNIG4EOXRU1W0POOK7HCNCX9YVX8J' where id=5; -update noar tt set v3='SME5KIAA01MC7JD6W3FB8DNE0KEOQLYEX507LX97FMDWJXVQVHRXH212ZPYLGUK0Q173BXICG4SAVIHMJTC626LZ0ZDBTU67OZ07BDYQ06AQZYDTEYCPKJ5OSBYS8T24HEV588QNAHG9POS5P4YLM6TWJS5QZARX9HT0ZN1BHFHD217GNHKZAMZT1YGSPWTK2SN5H5SH4MYXB9K50MWFAVOXVEPRSN2I1DNX431E310L7HANNPUUQPZ12EB8FJQKT' where id=5; -update noar ti set v3='SME5KIAA01MC7JD6W3FB8DNE0KEOQLYEX507LX97FMDWJXVQVHRXH212ZPYLGUK0Q173BXICG4SAVIHMJTC626LZ0ZDBTU67OZ07BDYQ06AQZYDTEYCPKJ5OSBYS8T24HEV588QNAHG9POS5P4YLM6TWJS5QZARX9HT0ZN1BHFHD217GNHKZAMZT1YGSPWTK2SN5H5SH4MYXB9K50MWFAVOXVEPRSN2I1DNX431E310L7HANNPUUQPZ12EB8FJQKT' where id=5; -update noar tt set v0='IKNEE2VP508DUONR75XYV05NYCDLR6INHORDYCVT1HEMQB5CI9LYBFET2WW0WC2ZYFT8WXGTJEKAA3DG12UO1T9ODY6TSDJY776J0PDJM3D09W41TBDF2QPI2ULZBMLEDAV1D1QCI40SURTBIZLV5QNTV7YYU4B8B0BL6JC2MO43P8ZQBTPJYXITUFH31JKNK9KCP3JMVOQEBZQLG8DJP63DCC171HSW0NRDFBLUU92X43HPS3XC1HEB0KKH9ARPA' where id=6; -update noar ti set v0='IKNEE2VP508DUONR75XYV05NYCDLR6INHORDYCVT1HEMQB5CI9LYBFET2WW0WC2ZYFT8WXGTJEKAA3DG12UO1T9ODY6TSDJY776J0PDJM3D09W41TBDF2QPI2ULZBMLEDAV1D1QCI40SURTBIZLV5QNTV7YYU4B8B0BL6JC2MO43P8ZQBTPJYXITUFH31JKNK9KCP3JMVOQEBZQLG8DJP63DCC171HSW0NRDFBLUU92X43HPS3XC1HEB0KKH9ARPA' where id=6; -update noar tt set v1='R0JIE2RMDVAEH5DUX6YP6P1KAPA4YPMD5I66QWEJGTEWJSJ2TL53JGJIZMULYRMVSX3Q466GIUL66RMP1397MIM4VFEBHEPGA256N7ONQZZJRIWWPCN0RE0JCHBQ3B5TN2WVYJ19OINYFZEH8TYGLKI3SUBCU0VS2XE57AJYDVB2OXK8ABYWE5UYT6J8PXDUE66NAWNWYFAD2V57RKPMU7FFMC0KRXK60P46V563SZTOXV8YEQT2DHV426GII0976' where id=6; -update noar ti set v1='R0JIE2RMDVAEH5DUX6YP6P1KAPA4YPMD5I66QWEJGTEWJSJ2TL53JGJIZMULYRMVSX3Q466GIUL66RMP1397MIM4VFEBHEPGA256N7ONQZZJRIWWPCN0RE0JCHBQ3B5TN2WVYJ19OINYFZEH8TYGLKI3SUBCU0VS2XE57AJYDVB2OXK8ABYWE5UYT6J8PXDUE66NAWNWYFAD2V57RKPMU7FFMC0KRXK60P46V563SZTOXV8YEQT2DHV426GII0976' where id=6; -update noar tt set v2='G4QISPS494QVELSOJPRI0727J080Z3FNVUC5JOAE980O099E2XDDKBJWFF4Y6XL12TXJGVJ2YIZ8OMZN1IFDKRB2KI96GGBIGRQYI8DVLDZSAVGGT272NYCKWGHAVYU7QAM1H09Z1N5JJ0TZIQKNJ0QVTWABYMIADFLOLSE8YO5CPE1X3V01Y2MEE4COEO12NDROAY55V12YG236ZCLMWEZNIHGQ89NUZKJPPWHUR1GD6R0MDVNHMBBFMRVCQ6H3N' where id=6; -update noar ti set v2='G4QISPS494QVELSOJPRI0727J080Z3FNVUC5JOAE980O099E2XDDKBJWFF4Y6XL12TXJGVJ2YIZ8OMZN1IFDKRB2KI96GGBIGRQYI8DVLDZSAVGGT272NYCKWGHAVYU7QAM1H09Z1N5JJ0TZIQKNJ0QVTWABYMIADFLOLSE8YO5CPE1X3V01Y2MEE4COEO12NDROAY55V12YG236ZCLMWEZNIHGQ89NUZKJPPWHUR1GD6R0MDVNHMBBFMRVCQ6H3N' where id=6; -update noar tt set v3='FH4EXOLMHU0WTHT3M4SCFXRKS0QTXTQHDLYZ0Z1JGKVKXDF57XXVCZ6NXAH9XPVZS3THWTIW2EGI3TKGHKHD9J6BZGWKTEN4PZP8Q2E5LAQJNH63BOB4Q8ZS2KL2QEOACW1UMAHS48KNQ9S5DLH168HFRTSJEUBW4689HQQ6MKFI95DCKXRXW0PBOXF7KU7U004L86W57ZTS05NWPCHRBQI7887RVL1AETAMB144V7Y1VFLVBJO7UR9L2M6WT96S9' where id=6; -update noar ti set v3='FH4EXOLMHU0WTHT3M4SCFXRKS0QTXTQHDLYZ0Z1JGKVKXDF57XXVCZ6NXAH9XPVZS3THWTIW2EGI3TKGHKHD9J6BZGWKTEN4PZP8Q2E5LAQJNH63BOB4Q8ZS2KL2QEOACW1UMAHS48KNQ9S5DLH168HFRTSJEUBW4689HQQ6MKFI95DCKXRXW0PBOXF7KU7U004L86W57ZTS05NWPCHRBQI7887RVL1AETAMB144V7Y1VFLVBJO7UR9L2M6WT96S9' where id=6; -update noar tt set v0='3MER9ZTRIOQ7BORJ2Y35XK8VTXK2FD47VK63HMMPFMFXKQDGFLM5PM5WG1X7VIDM5D8AMC82BUYZ2VS8029ESTYA51US3NP80GRTRFUWKGHZVKGXRRLP2PM5YIZIWZLD3SZ9IQKLKNGMQI6V31UGFKTPSI6Q05GBNIAX2TZIZYL1JN0T4V35JMFOL3KJAIJZ6TH5UUKXQLMSST1KEVN4C78JV1FDQDMDR6PZYERTRPHIDNQXUXPNGQU12OPRZRC01' where id=7; -update noar ti set v0='3MER9ZTRIOQ7BORJ2Y35XK8VTXK2FD47VK63HMMPFMFXKQDGFLM5PM5WG1X7VIDM5D8AMC82BUYZ2VS8029ESTYA51US3NP80GRTRFUWKGHZVKGXRRLP2PM5YIZIWZLD3SZ9IQKLKNGMQI6V31UGFKTPSI6Q05GBNIAX2TZIZYL1JN0T4V35JMFOL3KJAIJZ6TH5UUKXQLMSST1KEVN4C78JV1FDQDMDR6PZYERTRPHIDNQXUXPNGQU12OPRZRC01' where id=7; -update noar tt set v1='F2A36RO6O7DOIQL6LN1V9ZRYITN5JPI9OW01UTI5C7XOGAK15RU517PW54QFPVZJX4ZF9PVJJQOR2W7DTTQWXA8CE7RGCI0MLXNE85RCZYCS1RYYW3943H5G0V0OKDZ6XG6HET5U52VWGNM5CVCKO33AVIXFUTWWJP1HXHFQ0XCKQ8P5WRRKLIXKJU0Y2M6ZWLKI3B9H5MKDB4CFJQ0L35CGVKVYKXQT2L9GC0JSXTKBYAZ7PPBXEZESSNO32JDNE' where id=7; -update noar ti set v1='F2A36RO6O7DOIQL6LN1V9ZRYITN5JPI9OW01UTI5C7XOGAK15RU517PW54QFPVZJX4ZF9PVJJQOR2W7DTTQWXA8CE7RGCI0MLXNE85RCZYCS1RYYW3943H5G0V0OKDZ6XG6HET5U52VWGNM5CVCKO33AVIXFUTWWJP1HXHFQ0XCKQ8P5WRRKLIXKJU0Y2M6ZWLKI3B9H5MKDB4CFJQ0L35CGVKVYKXQT2L9GC0JSXTKBYAZ7PPBXEZESSNO32JDNE' where id=7; -update noar tt set v2='RBD8ZJIQY0QS0U6QLM447CD80KZDJZ1OEKYFOQPLR33Z0N263PO1E149WT2S7LPUOYMQHQBVMW6WMUOOOB3HKH61NHOBU6XNWI231297A57YQN4OPU7RSUXJS2W6J4VB99LA4BOITX5157TWILQ5N3VGGNRZ5O0UL6P536V32D4ZX7OWEAJRMRKI89BJ3U08SOKOX6AKQTW373YU6OIGA7JN202S0EAIU1W14V6GJZS5VG6BG91R9YV57UCTQJQLO' where id=7; -update noar ti set v2='RBD8ZJIQY0QS0U6QLM447CD80KZDJZ1OEKYFOQPLR33Z0N263PO1E149WT2S7LPUOYMQHQBVMW6WMUOOOB3HKH61NHOBU6XNWI231297A57YQN4OPU7RSUXJS2W6J4VB99LA4BOITX5157TWILQ5N3VGGNRZ5O0UL6P536V32D4ZX7OWEAJRMRKI89BJ3U08SOKOX6AKQTW373YU6OIGA7JN202S0EAIU1W14V6GJZS5VG6BG91R9YV57UCTQJQLO' where id=7; -update noar tt set v3='CHIGYE61A8LF6EH5TN6P4AAGT764LLXNSV3DC6WCT3WNJNAW15TL9PGP9PD9F0OB34SC6FIN8FW8EQCI1M8KV534AO4K9HUUGBFHJ25W99SRKMI5SFK1KHAQU1YX99KCNL4ALKZAUSQSLBF1O0CU2XNMH6L7M5JIWIDIN9JE9WKPCM6DQXSP20J8K2OXUVJ0VELEEX0HOXU3B7854LS1JFUAOP1S8KSOALA43ETVTE3LEFQ2YKPE91JMWW8K8IE2C' where id=7; -update noar ti set v3='CHIGYE61A8LF6EH5TN6P4AAGT764LLXNSV3DC6WCT3WNJNAW15TL9PGP9PD9F0OB34SC6FIN8FW8EQCI1M8KV534AO4K9HUUGBFHJ25W99SRKMI5SFK1KHAQU1YX99KCNL4ALKZAUSQSLBF1O0CU2XNMH6L7M5JIWIDIN9JE9WKPCM6DQXSP20J8K2OXUVJ0VELEEX0HOXU3B7854LS1JFUAOP1S8KSOALA43ETVTE3LEFQ2YKPE91JMWW8K8IE2C' where id=7; -update noar tt set v0='3KOBBPEI8RL9XB02NEHMPQWOHJG9BM7U5K4F86MBHG39KWROZ0LBF28EZIU5N2NBP5Y1SD2EU9QVRIYQW8A1043OAYH3BZPV84L3CBMRGFWBY9JSDMHV6R18H1FW8HOALOIX40EV9PIZ9BM33B1YX9U4TN34MI8H027VXKKIEUL7Q0D2KBJN08P4KDY3T6N8DWQU8H6WU96L41B8DIX5NDICK5RAM45L3MKJKW7WGLRV7OJPUDH0UL9TYON85W0GV' where id=8; -update noar ti set v0='3KOBBPEI8RL9XB02NEHMPQWOHJG9BM7U5K4F86MBHG39KWROZ0LBF28EZIU5N2NBP5Y1SD2EU9QVRIYQW8A1043OAYH3BZPV84L3CBMRGFWBY9JSDMHV6R18H1FW8HOALOIX40EV9PIZ9BM33B1YX9U4TN34MI8H027VXKKIEUL7Q0D2KBJN08P4KDY3T6N8DWQU8H6WU96L41B8DIX5NDICK5RAM45L3MKJKW7WGLRV7OJPUDH0UL9TYON85W0GV' where id=8; -update noar tt set v1='ECIOEFDMYAGLBT3O1R268ZS1H57E1UAPRVW6YAXLJKG5X7JW77785D9S9CD3E4RJPEKUAWBCCKX8E9T7MD11N3F8GN0NH7BR01V0VR9KQSDM3NEIYFGJOGIHJ9TDLMTE3SQK823FW9PIX9HCVUNJ452BEYF8GM63N4FW5EXOCHO4AIYJKTK5CF3OQQLLJTU4DJZXZMFVY7VB64EV3R8A495T7ZEMXDNVJTOZVEXSY59L0RGUZXHVZRPV27S4U5XWJ' where id=8; -update noar ti set v1='ECIOEFDMYAGLBT3O1R268ZS1H57E1UAPRVW6YAXLJKG5X7JW77785D9S9CD3E4RJPEKUAWBCCKX8E9T7MD11N3F8GN0NH7BR01V0VR9KQSDM3NEIYFGJOGIHJ9TDLMTE3SQK823FW9PIX9HCVUNJ452BEYF8GM63N4FW5EXOCHO4AIYJKTK5CF3OQQLLJTU4DJZXZMFVY7VB64EV3R8A495T7ZEMXDNVJTOZVEXSY59L0RGUZXHVZRPV27S4U5XWJ' where id=8; -update noar tt set v2='3NOLAGREL8P7LKC2EU895T2IZOQDRLVNP29M79Q15MC2A53FYBZSKXT5OG5ZY2L7WRDCCC0RBUUXGOZZOFTLS3AU0UAZ3MXJ5DPLUD2PGOF7QFFWHMLHDJ28O8B2HJYL3GFN7W2J0W1OR03QEUSK1SK0NK0SS644NSS49X4HSLKM9KD39FBLUROM2LKT6PEG23QGPR8NQOWDTQHNFLE44LQ43LY9KHYL36EPABSGDXQ1BJHHH2TS7RSNI3F2FXQQV' where id=8; -update noar ti set v2='3NOLAGREL8P7LKC2EU895T2IZOQDRLVNP29M79Q15MC2A53FYBZSKXT5OG5ZY2L7WRDCCC0RBUUXGOZZOFTLS3AU0UAZ3MXJ5DPLUD2PGOF7QFFWHMLHDJ28O8B2HJYL3GFN7W2J0W1OR03QEUSK1SK0NK0SS644NSS49X4HSLKM9KD39FBLUROM2LKT6PEG23QGPR8NQOWDTQHNFLE44LQ43LY9KHYL36EPABSGDXQ1BJHHH2TS7RSNI3F2FXQQV' where id=8; -update noar tt set v3='PQIAGB35N5LJS5XUZX63D942KGK62XNX3XDX53KTN532WEQC7I1UHDLLALU3X50HXH6OHU7DLSPIAOO3TYY9P21L6D109UB75KDE9XPFLX0UOZNQPLBH5ATL1PSEW42LKTBV3K46IR2PZGHGSD4XRLX5TJOCJ6Q96W3ST83BYO3K0AM8DL2JCQH5DXWJQXM5NEDS99SAHEVOV2WOEC4DF3L5FC6SD4YZY2HU2TV2X3UO70Q1E5BWH7IPAN2XDNWKC' where id=8; -update noar ti set v3='PQIAGB35N5LJS5XUZX63D942KGK62XNX3XDX53KTN532WEQC7I1UHDLLALU3X50HXH6OHU7DLSPIAOO3TYY9P21L6D109UB75KDE9XPFLX0UOZNQPLBH5ATL1PSEW42LKTBV3K46IR2PZGHGSD4XRLX5TJOCJ6Q96W3ST83BYO3K0AM8DL2JCQH5DXWJQXM5NEDS99SAHEVOV2WOEC4DF3L5FC6SD4YZY2HU2TV2X3UO70Q1E5BWH7IPAN2XDNWKC' where id=8; -update noar tt set v0='3CJCDFHZLWKHCM17I3GQCR2KQ8ZREG02KZBI10IYZO2ACEW6H7QSN93OQJ7JQBGJJB71UF8F1SA1UEMQHTABS70R283IJ4FXR6D19TTWS0X5J1DULQ2C9YV01NA6BYKL3NGEWE0E1ZH8JLTDUUP6P6LZI6LE6268EHQIY32XC2A4N3039R0QSR9L4GOCCW7BIXC2JIBLMJ9SDV3IPC1YYA3PLPLR5COWCMKSUIBXQK4X4ETU0CUSYA6DMBUPFSELG' where id=9; -update noar ti set v0='3CJCDFHZLWKHCM17I3GQCR2KQ8ZREG02KZBI10IYZO2ACEW6H7QSN93OQJ7JQBGJJB71UF8F1SA1UEMQHTABS70R283IJ4FXR6D19TTWS0X5J1DULQ2C9YV01NA6BYKL3NGEWE0E1ZH8JLTDUUP6P6LZI6LE6268EHQIY32XC2A4N3039R0QSR9L4GOCCW7BIXC2JIBLMJ9SDV3IPC1YYA3PLPLR5COWCMKSUIBXQK4X4ETU0CUSYA6DMBUPFSELG' where id=9; -update noar tt set v1='G3GOHGWATRXVR37C1YCCRCOVTMGPWDS1NK1ZL8PALAELQHDNIXGF95CYAW10TQ3VR965CE6ARQJSLL6YJMCQCPWD00YVESE70EKHNU6YRJE3T9J66X1U6HVQIPSC845124XBMJEOPRFS3H37BS7H4F3RJDXY2LRRGQV9B5N7TA5NVNB800BQU47K2XZWM5A7JJGXKA62QB1UAB4ZEG9S81UFBNQEXY22IVZQYTQKU214KFFG9Q07ZVO7WMJ2RJGYJ' where id=9; -update noar ti set v1='G3GOHGWATRXVR37C1YCCRCOVTMGPWDS1NK1ZL8PALAELQHDNIXGF95CYAW10TQ3VR965CE6ARQJSLL6YJMCQCPWD00YVESE70EKHNU6YRJE3T9J66X1U6HVQIPSC845124XBMJEOPRFS3H37BS7H4F3RJDXY2LRRGQV9B5N7TA5NVNB800BQU47K2XZWM5A7JJGXKA62QB1UAB4ZEG9S81UFBNQEXY22IVZQYTQKU214KFFG9Q07ZVO7WMJ2RJGYJ' where id=9; -update noar tt set v2='S6JQWNHUI0YD0GDXHLMA5JAFN0L3DJIIXV6TPRG7DNI9CRLHAVI2WXD1R5O0R6OBY6A9H1K2H4YVKR5WAZ25PX3OXO814I5WYMIGMKPR73TSTFAC3LTGKR0CD8J0UYIQ7UU7NWGPLZYIZZKJJ00Y2IG4JDH1HDKFDXUPD6YJB1E4X3UG02C4PJPFOSTZ8JORAI9WVDNHYF3QAASGFY3L76FPF95V59XFS7ZLCGGZMZC1FP8WF0AIJ7KVKYBM9Y411' where id=9; -update noar ti set v2='S6JQWNHUI0YD0GDXHLMA5JAFN0L3DJIIXV6TPRG7DNI9CRLHAVI2WXD1R5O0R6OBY6A9H1K2H4YVKR5WAZ25PX3OXO814I5WYMIGMKPR73TSTFAC3LTGKR0CD8J0UYIQ7UU7NWGPLZYIZZKJJ00Y2IG4JDH1HDKFDXUPD6YJB1E4X3UG02C4PJPFOSTZ8JORAI9WVDNHYF3QAASGFY3L76FPF95V59XFS7ZLCGGZMZC1FP8WF0AIJ7KVKYBM9Y411' where id=9; -update noar tt set v3='UDYQGO0R3RSDM89EZH7GQV11RGIQ6GO9BDRSE0ORS8JRM1UJR9KEOE4KGY7FXU9UVN7OW8SWX4WP13ZH13Y7G3T7XQDXQ4FWKV8PXPG7J38CCS2D3ME5UUNQFR67DYJ02EAPS0UO9P63BXCXRDBODXUAL8BYFD2DP1NREA0DW7KXB8FOUJFPAKML0394FQZF3DTOH4ES10G5XO7RQKVIM5V7QFP5Q2OH88O54V47B6V1P8BGOF04SMCZL0P3BGPDS' where id=9; -update noar ti set v3='UDYQGO0R3RSDM89EZH7GQV11RGIQ6GO9BDRSE0ORS8JRM1UJR9KEOE4KGY7FXU9UVN7OW8SWX4WP13ZH13Y7G3T7XQDXQ4FWKV8PXPG7J38CCS2D3ME5UUNQFR67DYJ02EAPS0UO9P63BXCXRDBODXUAL8BYFD2DP1NREA0DW7KXB8FOUJFPAKML0394FQZF3DTOH4ES10G5XO7RQKVIM5V7QFP5Q2OH88O54V47B6V1P8BGOF04SMCZL0P3BGPDS' where id=9; -update noar tt set v0='VM74ZVZ91H42LB6M6HVD3C84ESPUNA69FPHP61AH97TV8ECL50O2PK25ZMM3OEP9L9Z0J7IYIY8SP7NAVLRQQQ22C4BBM0W5XIG316D6907OX4U4RR2I3G1C6MTWRQUBCE1YR26GUJ6T8X1BTI5E7UG6F5Q38ETJ8UNAWY072LLPOJDZ5B875NF1MSZE5NXMVM2IVZ6BWJKOOKNV1FVQGP4TELIAQEIB4H4BP0CXF43NMQ7M7AYGDSICVG0SNR06W' where id=10; -update noar ti set v0='VM74ZVZ91H42LB6M6HVD3C84ESPUNA69FPHP61AH97TV8ECL50O2PK25ZMM3OEP9L9Z0J7IYIY8SP7NAVLRQQQ22C4BBM0W5XIG316D6907OX4U4RR2I3G1C6MTWRQUBCE1YR26GUJ6T8X1BTI5E7UG6F5Q38ETJ8UNAWY072LLPOJDZ5B875NF1MSZE5NXMVM2IVZ6BWJKOOKNV1FVQGP4TELIAQEIB4H4BP0CXF43NMQ7M7AYGDSICVG0SNR06W' where id=10; -update noar tt set v1='I7XA6F281EWOER5VZQC7QQFEMF4BWMLDPMWK3RWBG1WMBENIKRA1YUCG5H0XNDL9NXNIO0MMKXUJGHB3AZF4ZTS2HKEWJNA4VY6T5A0GXVV6ETEHY3V66D1D6TEUOLPHFPIRVMSYEV73UHZ6K1JTJM5C27G83MNHTLOJ1KP55ATEQ4395G9Q36QQM3H47UQZ4N0VS1E4Z1UND5UCPA6YWWRY61IVHRJ884KZ0NFO9S002D2P9B2TI6PJD0Z4VLI0M' where id=10; -update noar ti set v1='I7XA6F281EWOER5VZQC7QQFEMF4BWMLDPMWK3RWBG1WMBENIKRA1YUCG5H0XNDL9NXNIO0MMKXUJGHB3AZF4ZTS2HKEWJNA4VY6T5A0GXVV6ETEHY3V66D1D6TEUOLPHFPIRVMSYEV73UHZ6K1JTJM5C27G83MNHTLOJ1KP55ATEQ4395G9Q36QQM3H47UQZ4N0VS1E4Z1UND5UCPA6YWWRY61IVHRJ884KZ0NFO9S002D2P9B2TI6PJD0Z4VLI0M' where id=10; -update noar tt set v2='O76BKZPSZK3J8AIJ0CRDMO09URPA1QNC8CNPDLI2MPZU4XCTFNXURS0LTUVJEUU9PJE4TMXXZQ7D9EY8Y9NMBMCPLUCVY1KTM9Y7CX9RH87SRBNM6ECMLQTXIN9VQOA2K8ME0S33PGVWSJIETH0ERZODNTXD7WTJY1YWYS3ABAZCF5OQS95IE7I8LT9LXP69MKARA5GFHWYMQ60EIV9HAZIUI7QZYDYHVNKBEUAGT3CWWHU7B533PV5WLECMH536I' where id=10; -update noar ti set v2='O76BKZPSZK3J8AIJ0CRDMO09URPA1QNC8CNPDLI2MPZU4XCTFNXURS0LTUVJEUU9PJE4TMXXZQ7D9EY8Y9NMBMCPLUCVY1KTM9Y7CX9RH87SRBNM6ECMLQTXIN9VQOA2K8ME0S33PGVWSJIETH0ERZODNTXD7WTJY1YWYS3ABAZCF5OQS95IE7I8LT9LXP69MKARA5GFHWYMQ60EIV9HAZIUI7QZYDYHVNKBEUAGT3CWWHU7B533PV5WLECMH536I' where id=10; -update noar tt set v3='0POM4VKQ11MTFZ1A3OCIIEXW0GP8AVRZJSWEI7H2Q3LH4LZHW45OLB05CBI50ZEX6NPS03RXH6KDZYHSZ8XVSOV4IQDUBJQE4TGPD87ZM4A37HHXFDD8C23370178WP2FY5LX2E35EOTCHU39CRE4F1TBR9VKA6V79X9ODHS409ESNQANEXGIPMHGT78H5UAGWUOCJ7BK53E3VJR1FM1AGYHBI6RYTGGPYEVYNHPNM1TC7GFEPFZLSNSI6YFT9OZI' where id=10; -update noar ti set v3='0POM4VKQ11MTFZ1A3OCIIEXW0GP8AVRZJSWEI7H2Q3LH4LZHW45OLB05CBI50ZEX6NPS03RXH6KDZYHSZ8XVSOV4IQDUBJQE4TGPD87ZM4A37HHXFDD8C23370178WP2FY5LX2E35EOTCHU39CRE4F1TBR9VKA6V79X9ODHS409ESNQANEXGIPMHGT78H5UAGWUOCJ7BK53E3VJR1FM1AGYHBI6RYTGGPYEVYNHPNM1TC7GFEPFZLSNSI6YFT9OZI' where id=10; -update noar tt set v0='5Y94ZOFI4OOC7RDNJ0BK9RY5U6G60P5U4QASMKYKGJO51FWQGRNB72KE521N6RVS6OOPV28SNKGV04HLXYGDX98OMLBPZQN6OQNP0R03V4Q0B97EOJEBGJX5MOF2O7L0ZWGSFYF5VYE1Q25ONP55CU4CG4D0YCYZVVS7COOF4I9S85VZ4JT8HYL9NNP3J8LT087GEJGC8X1HYCKDIGO9FLNE1GAP1FTTW43EXPO99Q06SVF3DNJYW2AQH66GKULXP' where id=11; -update noar ti set v0='5Y94ZOFI4OOC7RDNJ0BK9RY5U6G60P5U4QASMKYKGJO51FWQGRNB72KE521N6RVS6OOPV28SNKGV04HLXYGDX98OMLBPZQN6OQNP0R03V4Q0B97EOJEBGJX5MOF2O7L0ZWGSFYF5VYE1Q25ONP55CU4CG4D0YCYZVVS7COOF4I9S85VZ4JT8HYL9NNP3J8LT087GEJGC8X1HYCKDIGO9FLNE1GAP1FTTW43EXPO99Q06SVF3DNJYW2AQH66GKULXP' where id=11; -update noar tt set v1='1RHR83UJFV03F2GA0I3E35D76NHRAHCB4OR0V494MWSYG6V3ORE17230CQQ35LRQJ6M0VSRR1GO6OBKTFXDDU56QQC4ZGOWQR96TTF5L3CO46ZU43LEXYKJNX1IGIGGPQPQDWZYM30BJS96RJCEFBVJHYE9LDF65JORHHK5VPKSVGDZIX0SIGWKVAJB2BFV7H5BOR9DIPUEZ7Q87OQ95MW8T89EQWGTKXGBAJPUO343Y7ZRTG9XF0EA2D52K5BDY2' where id=11; -update noar ti set v1='1RHR83UJFV03F2GA0I3E35D76NHRAHCB4OR0V494MWSYG6V3ORE17230CQQ35LRQJ6M0VSRR1GO6OBKTFXDDU56QQC4ZGOWQR96TTF5L3CO46ZU43LEXYKJNX1IGIGGPQPQDWZYM30BJS96RJCEFBVJHYE9LDF65JORHHK5VPKSVGDZIX0SIGWKVAJB2BFV7H5BOR9DIPUEZ7Q87OQ95MW8T89EQWGTKXGBAJPUO343Y7ZRTG9XF0EA2D52K5BDY2' where id=11; -update noar tt set v2='THOVGUU3OM2776HJ7YMHT4LZ05MRHZRKHBDNP1IOYBG2M59GNB31DGO3LSLXBKMKXRH9Z9MLM6WVJQ8JEQCAWG3Y12ZFUO9M5S2U24PV75VEJ1IJG08V5KGFKDZOSTJA9SPUOMPJR9XT1PBB1720J28O9OPS11MFSFPA67HT43LDHF0CM1PIWP4O7DZZH94MN6ULP1HZBMZWZJYHHQ1MUNS4R4GWMMD99P2XCSTBRC13KY84XN1ZKKQKQRWT4MSZG' where id=11; -update noar ti set v2='THOVGUU3OM2776HJ7YMHT4LZ05MRHZRKHBDNP1IOYBG2M59GNB31DGO3LSLXBKMKXRH9Z9MLM6WVJQ8JEQCAWG3Y12ZFUO9M5S2U24PV75VEJ1IJG08V5KGFKDZOSTJA9SPUOMPJR9XT1PBB1720J28O9OPS11MFSFPA67HT43LDHF0CM1PIWP4O7DZZH94MN6ULP1HZBMZWZJYHHQ1MUNS4R4GWMMD99P2XCSTBRC13KY84XN1ZKKQKQRWT4MSZG' where id=11; -update noar tt set v3='KLS726XGRK14V001SB4RIWT5JL749GKGSG3BZ4Q383DZ4F6BZPL4UVIMYS5RL0BKQULG9W9T1HDUN19SBJPNEYI0COAXWVMHGEU570RM29M3MGQADC1OP97BRFCMI03IUKXOBSEW7LPNLF8S0H1SHQO1KRDP2OA852XL5BTDR50HZZ08J7307B5MIGKTTM4J6CD6Z1DHPQJQEMS6SSWNZH1N5SN2D1FAD9ZX9S2LVVOMJJG42STN3ZEN9SM17LENL' where id=11; -update noar ti set v3='KLS726XGRK14V001SB4RIWT5JL749GKGSG3BZ4Q383DZ4F6BZPL4UVIMYS5RL0BKQULG9W9T1HDUN19SBJPNEYI0COAXWVMHGEU570RM29M3MGQADC1OP97BRFCMI03IUKXOBSEW7LPNLF8S0H1SHQO1KRDP2OA852XL5BTDR50HZZ08J7307B5MIGKTTM4J6CD6Z1DHPQJQEMS6SSWNZH1N5SN2D1FAD9ZX9S2LVVOMJJG42STN3ZEN9SM17LENL' where id=11; -update noar tt set v0='EEK0C0RGF12J7GDM1O1WGBPB01W0B8KF5AN78XJSBPXJ1BZ79NNJPGB68KC8HZWFJVVV3TFX787TA6QRHCYRBACIVL8DIFGFUREDFPUQSWGIB605KUX906ZBN8HE5F6SR5OA66LS3NICCVD8L4SZRPKK9Z2EPH859I8KTE6LF2DEIHQ8OEQ2TXNLGIU1CHL77XZMZGLT8LXLODJTN760V4SB8WCFAP1CVLS5VVRKE6NKRKMEFC84K5W2CML4XLXHM' where id=12; -update noar ti set v0='EEK0C0RGF12J7GDM1O1WGBPB01W0B8KF5AN78XJSBPXJ1BZ79NNJPGB68KC8HZWFJVVV3TFX787TA6QRHCYRBACIVL8DIFGFUREDFPUQSWGIB605KUX906ZBN8HE5F6SR5OA66LS3NICCVD8L4SZRPKK9Z2EPH859I8KTE6LF2DEIHQ8OEQ2TXNLGIU1CHL77XZMZGLT8LXLODJTN760V4SB8WCFAP1CVLS5VVRKE6NKRKMEFC84K5W2CML4XLXHM' where id=12; -update noar tt set v1='69KU63BJ41MALFIGAPUW5U4YB12K0VS5C84EQ60ZLBJJHZQY9VBG7JMHFKBLUU7YZXRRXFJC4NZ4IHFRB22FQYRRDMJOAER17YOK7TZ6A27NYMDN6YL48H0WHZ3CRIOF38JKCPOW4XMEC11IGRSNYHWVWNA265KJGAWXWBRD9UPSQ9GV1ZOUN4Z8FBCKACNNARTTDOSQXJTY1PW8HR4HMN9FMIJOB9SMHCC9ZLGWN726AOQF3LE3TAP1VTB46BSNZ' where id=12; -update noar ti set v1='69KU63BJ41MALFIGAPUW5U4YB12K0VS5C84EQ60ZLBJJHZQY9VBG7JMHFKBLUU7YZXRRXFJC4NZ4IHFRB22FQYRRDMJOAER17YOK7TZ6A27NYMDN6YL48H0WHZ3CRIOF38JKCPOW4XMEC11IGRSNYHWVWNA265KJGAWXWBRD9UPSQ9GV1ZOUN4Z8FBCKACNNARTTDOSQXJTY1PW8HR4HMN9FMIJOB9SMHCC9ZLGWN726AOQF3LE3TAP1VTB46BSNZ' where id=12; -update noar tt set v2='2ZIKLL8IEE2IRP883806DHIWXKH3AJN2SZBF19I8KTZ92CC1APWDOPX9VFOQM57A7BPP1CBCRZVKMNHDMCOJGLB7XL13ICGCSZ9OL6J8XDKHMOFT2ZQBVMOI4N2INW3SNQM2MNR7Y6X5ZTCT1NJ9ONYR5JROPPOTBDJ3PCERN3WN6T8FW1MC4S713UAMEWHHKXMQWROMOZLITDSM8Q30BO39OA1I79SDMHU3NY1TDAFN41N8IR666AFSMPYWDC4TS' where id=12; -update noar ti set v2='2ZIKLL8IEE2IRP883806DHIWXKH3AJN2SZBF19I8KTZ92CC1APWDOPX9VFOQM57A7BPP1CBCRZVKMNHDMCOJGLB7XL13ICGCSZ9OL6J8XDKHMOFT2ZQBVMOI4N2INW3SNQM2MNR7Y6X5ZTCT1NJ9ONYR5JROPPOTBDJ3PCERN3WN6T8FW1MC4S713UAMEWHHKXMQWROMOZLITDSM8Q30BO39OA1I79SDMHU3NY1TDAFN41N8IR666AFSMPYWDC4TS' where id=12; -update noar tt set v3='15BSSRPGNMG2W8RQUK67UU1JLFDH21KOSU9EWHLMTIVOBIYVV0KW8O8E273PPFZ0LGGCI439J5Y1V3OKNYDO5HLTEXUMPI68KUAUL4WF2NINTUTSHLYXTI8YWS6HCNS3QT0VL7BUBGF2RB1TTBW1D16LDCFNO8VFMRMUWBA9WFGBQWY6PSJI3SLOW1TUXBLZE7N0D6GQ1PR4E45JKLZ173DEEZHUIQ7EN35DPFVMP4C3MOSE70GAS9I71F6WR4WA4' where id=12; -update noar ti set v3='15BSSRPGNMG2W8RQUK67UU1JLFDH21KOSU9EWHLMTIVOBIYVV0KW8O8E273PPFZ0LGGCI439J5Y1V3OKNYDO5HLTEXUMPI68KUAUL4WF2NINTUTSHLYXTI8YWS6HCNS3QT0VL7BUBGF2RB1TTBW1D16LDCFNO8VFMRMUWBA9WFGBQWY6PSJI3SLOW1TUXBLZE7N0D6GQ1PR4E45JKLZ173DEEZHUIQ7EN35DPFVMP4C3MOSE70GAS9I71F6WR4WA4' where id=12; -update noar tt set v0='7PK3UW845LKDAMJMQXEB4JFM4U9QZL238SNW5K2TSYBWTLHQ4GC7I1YW5Z3R0LPBD7EO7YV6NGVEEL8FXDQ79RXEGQRLMRYNTN473DT96B3S5FZAM5NXV9GX5M3VSSJAAEH81MI3J6BOFV3J4S0HNT1UTR48L0UR97M1X4ROSMIKDOPZ0D8HCM1LVKXXRMFBIRYSQ6T7ZJETLILMCXKOU8M7D0UPDRYKRG60X45N12112DVZE3SAAW375V4XRYFUB' where id=13; -update noar ti set v0='7PK3UW845LKDAMJMQXEB4JFM4U9QZL238SNW5K2TSYBWTLHQ4GC7I1YW5Z3R0LPBD7EO7YV6NGVEEL8FXDQ79RXEGQRLMRYNTN473DT96B3S5FZAM5NXV9GX5M3VSSJAAEH81MI3J6BOFV3J4S0HNT1UTR48L0UR97M1X4ROSMIKDOPZ0D8HCM1LVKXXRMFBIRYSQ6T7ZJETLILMCXKOU8M7D0UPDRYKRG60X45N12112DVZE3SAAW375V4XRYFUB' where id=13; -update noar tt set v1='RMBX39P1LGB8Q0U4NRC6XCXPXAUG8SHNBDEWO8IFPJ8X6CMA6BTDHVT9PT29FCYFIDZTK1571SIHWIFC6GKUASF49NI3MYK618T0M2275K0CLBB0SQ492NMO83LO2SWKCR3JKR6DKRQQ723G4TQGR1A6LILYADCYA4P327MU6OQ66WLIOWV0IC4EXRXINSU0QZB6VQSRQKIAV5U8C4MGBT7O0XPC23FYDGRY999KY1KO12B85SD6VR14L7K9F50FJ' where id=13; -update noar ti set v1='RMBX39P1LGB8Q0U4NRC6XCXPXAUG8SHNBDEWO8IFPJ8X6CMA6BTDHVT9PT29FCYFIDZTK1571SIHWIFC6GKUASF49NI3MYK618T0M2275K0CLBB0SQ492NMO83LO2SWKCR3JKR6DKRQQ723G4TQGR1A6LILYADCYA4P327MU6OQ66WLIOWV0IC4EXRXINSU0QZB6VQSRQKIAV5U8C4MGBT7O0XPC23FYDGRY999KY1KO12B85SD6VR14L7K9F50FJ' where id=13; -update noar tt set v2='ZU93JFAVPL8EPW0SWSBSW5LXCN0Y4LSWQEQ1ZXTLKCH7PQBUDRMA7ZGDJYNIIEEWSA0YT0DEPFMXGQIORPDCMK8KSFITR0SKXGHHEL7I0CL0B9RLOXXLE5K09JMLK85CF4JEYW429VR2UGKAUFVTB3AE65XU9X8KEICVK3Y3LRWPQLIPKAS0P1RFPGLFCD9JI3TBE6B0HX7ZZPCNRAYWX6L59Y69TGJWUWJ6Q7GEO8MLBCR1MB1BLXURTI7PD2RJZ' where id=13; -update noar ti set v2='ZU93JFAVPL8EPW0SWSBSW5LXCN0Y4LSWQEQ1ZXTLKCH7PQBUDRMA7ZGDJYNIIEEWSA0YT0DEPFMXGQIORPDCMK8KSFITR0SKXGHHEL7I0CL0B9RLOXXLE5K09JMLK85CF4JEYW429VR2UGKAUFVTB3AE65XU9X8KEICVK3Y3LRWPQLIPKAS0P1RFPGLFCD9JI3TBE6B0HX7ZZPCNRAYWX6L59Y69TGJWUWJ6Q7GEO8MLBCR1MB1BLXURTI7PD2RJZ' where id=13; -update noar tt set v3='1B5466PNOB9QEYZBBIXMI8W70Q7LPU11JDFROHV84AMT6ZT93USOMV3XJHKVNJ03XGV7ID4FXZ28BBUK5J8U94PQG4V57GXL10CQN2T8L04GKIQ1C4CV7UG0K58L5N9VCREK17S3T0KWL27JA1VSOYOW7Q7P54S0NNYX3ZUDY270O801AFX3IM594B9VUGXWIQUV238QUVRCGYWW9F1C1KZA2ILYJL1V3WZ4IUD1IXI375X7T67TAKWN06DPZBPOY' where id=13; -update noar ti set v3='1B5466PNOB9QEYZBBIXMI8W70Q7LPU11JDFROHV84AMT6ZT93USOMV3XJHKVNJ03XGV7ID4FXZ28BBUK5J8U94PQG4V57GXL10CQN2T8L04GKIQ1C4CV7UG0K58L5N9VCREK17S3T0KWL27JA1VSOYOW7Q7P54S0NNYX3ZUDY270O801AFX3IM594B9VUGXWIQUV238QUVRCGYWW9F1C1KZA2ILYJL1V3WZ4IUD1IXI375X7T67TAKWN06DPZBPOY' where id=13; -update noar tt set v0='PWXJBK9ACLJIZTGZBVMWKKEB5CU5PSBSEH5K89RNFTUDG5W91KVJHVC9S2CMPIFWKI2ZDQD7LFC17PYX8TXRYEDKR7VFVZY69AZXTVPQMUTJEUS8H2LMGM679Y8JBAUKZ1B9YAXWFBJBYAMXY8DNENU8E4MCBIVJZ8AW7S3RUJP06LBFMIRS8B3SIPOQWM1GMPZAEC5S7TIH8PL7IDVABN2P3A5MEPEPJQ2BA1S3LXF0ZWTFESB2G1P7BL08JDLZ1' where id=14; -update noar ti set v0='PWXJBK9ACLJIZTGZBVMWKKEB5CU5PSBSEH5K89RNFTUDG5W91KVJHVC9S2CMPIFWKI2ZDQD7LFC17PYX8TXRYEDKR7VFVZY69AZXTVPQMUTJEUS8H2LMGM679Y8JBAUKZ1B9YAXWFBJBYAMXY8DNENU8E4MCBIVJZ8AW7S3RUJP06LBFMIRS8B3SIPOQWM1GMPZAEC5S7TIH8PL7IDVABN2P3A5MEPEPJQ2BA1S3LXF0ZWTFESB2G1P7BL08JDLZ1' where id=14; -update noar tt set v1='CWYTYZTB4ERWMGI2W8PPOJJ85MKG4T1Y19PIY5OKOXGQPZNXY8GW7HQLP3QVSDX50LKDSXTX520TCS82W4422VORS7RT0SA4T5PL26BTM06QJYBXOA0YHJMQ3O0O2IR11WU5LTVKZO5ILAB49ORO9CA5N3EOY5KHMZ26H1F67G9G2JF4LCG4SLKQXNUY1KV64HBB6LLSX1BTMRMNX414C6A22K3HG0SQ8U5H2PNA7MMQP7NTNGGAT26WBJJ0DA89S' where id=14; -update noar ti set v1='CWYTYZTB4ERWMGI2W8PPOJJ85MKG4T1Y19PIY5OKOXGQPZNXY8GW7HQLP3QVSDX50LKDSXTX520TCS82W4422VORS7RT0SA4T5PL26BTM06QJYBXOA0YHJMQ3O0O2IR11WU5LTVKZO5ILAB49ORO9CA5N3EOY5KHMZ26H1F67G9G2JF4LCG4SLKQXNUY1KV64HBB6LLSX1BTMRMNX414C6A22K3HG0SQ8U5H2PNA7MMQP7NTNGGAT26WBJJ0DA89S' where id=14; -update noar tt set v2='KVZCNPUCEGMV04O6D41DQMSPNV5BOEMQXWNKWEJNKLGAZM2DTI1I7J7IBT8TLHCZ0WS7GCKOW62MN0E9VHOIKEC21PQV3QG2ILLIZE2XM23UJPNBWTR1QX2KGORO4JEV3IJYSDDKD9YTWUQVPJ39H75PJRCZWSE1EZD13J5CC9TA504I151ED3MQA48W8YLQOCMWZ51CS3I9T7AV0S7MUNEIJD7ZCIVAC556T33N6UAYYG0MK99C29GTADOB05LWZ' where id=14; -update noar ti set v2='KVZCNPUCEGMV04O6D41DQMSPNV5BOEMQXWNKWEJNKLGAZM2DTI1I7J7IBT8TLHCZ0WS7GCKOW62MN0E9VHOIKEC21PQV3QG2ILLIZE2XM23UJPNBWTR1QX2KGORO4JEV3IJYSDDKD9YTWUQVPJ39H75PJRCZWSE1EZD13J5CC9TA504I151ED3MQA48W8YLQOCMWZ51CS3I9T7AV0S7MUNEIJD7ZCIVAC556T33N6UAYYG0MK99C29GTADOB05LWZ' where id=14; -update noar tt set v3='OQREEWT0RSE67A239V7QW6ZSPBOBV989G5DO4TFOAB6RTFWMC6QBJ8HBVF2F4HTXOBD9E53X67YRPPSQHZFVV43AY2VLREOTKCPO0NBRU63MP0YOICW29EFAFP9Z025540J1GY2I8FOWJ1E3GMWNF6X7KGPR82M2Y5L9GO92CZLFYSG3K46WK60TVI36D5ZM6N9EA7E5A8TO2Z0RYHE3GWZ0THRG2JTHT5T79PKYC8HGFPKFXY8NXEEQ55GMVI3G0' where id=14; -update noar ti set v3='OQREEWT0RSE67A239V7QW6ZSPBOBV989G5DO4TFOAB6RTFWMC6QBJ8HBVF2F4HTXOBD9E53X67YRPPSQHZFVV43AY2VLREOTKCPO0NBRU63MP0YOICW29EFAFP9Z025540J1GY2I8FOWJ1E3GMWNF6X7KGPR82M2Y5L9GO92CZLFYSG3K46WK60TVI36D5ZM6N9EA7E5A8TO2Z0RYHE3GWZ0THRG2JTHT5T79PKYC8HGFPKFXY8NXEEQ55GMVI3G0' where id=14; -update noar tt set v0='MR83IANLYWE7Q1R6NI1JTACZCMC39P7DOX2YC8RRICPVFAFPJM1S3K05740BK65RRA0ZKCISW8T4NTNWUU8YFFF1GIZHS8GUJPVTE9IZBVVIEVF2NTVKFT4638I5140B5XT1RL0YV2CDWLQEOH719W43B5NF4FUBJ0JOUKB7RDG7AW2JFFP9UZEG1HYJHLUAOV18RHTMTAXB6WDW3014YLWAPQJLP3QCS78Q43RWY30ZUXO34RWC9MBA88GTZG38V' where id=15; -update noar ti set v0='MR83IANLYWE7Q1R6NI1JTACZCMC39P7DOX2YC8RRICPVFAFPJM1S3K05740BK65RRA0ZKCISW8T4NTNWUU8YFFF1GIZHS8GUJPVTE9IZBVVIEVF2NTVKFT4638I5140B5XT1RL0YV2CDWLQEOH719W43B5NF4FUBJ0JOUKB7RDG7AW2JFFP9UZEG1HYJHLUAOV18RHTMTAXB6WDW3014YLWAPQJLP3QCS78Q43RWY30ZUXO34RWC9MBA88GTZG38V' where id=15; -update noar tt set v1='KMP2BQ44FDUD59T37WK2CBTGDBIT1VNLG1KT7HBF2QGCR98AU8BQDM6VWST1Q25ZOB29HRYDWZ8VFTMHX5BWM583BHYSZ7FYO0FHSSVLEZHEOOL95EMOHQH289BGETIP5UPHJM9P7HBUK091KFWLHNPLKM0JKE3PCLKWZVR7M97JW8VZOWKZAWLCE52MD5IRZD30UAMXG4CVPP5QQFLKLD4AV1LJFBRJRJ54K2GQ16ZVVK7MWIS8KBU41T3AHXUPP' where id=15; -update noar ti set v1='KMP2BQ44FDUD59T37WK2CBTGDBIT1VNLG1KT7HBF2QGCR98AU8BQDM6VWST1Q25ZOB29HRYDWZ8VFTMHX5BWM583BHYSZ7FYO0FHSSVLEZHEOOL95EMOHQH289BGETIP5UPHJM9P7HBUK091KFWLHNPLKM0JKE3PCLKWZVR7M97JW8VZOWKZAWLCE52MD5IRZD30UAMXG4CVPP5QQFLKLD4AV1LJFBRJRJ54K2GQ16ZVVK7MWIS8KBU41T3AHXUPP' where id=15; -update noar tt set v2='UT9IKX7AT2RGHPUFA4WZ3ZFDM30BQZYNNMS2USY7IB1IMNNA1O3I5CJJDSR3LHQLICWNUSKNOM7UPSTJZ1JZN6OQ8288E00OQ102XJRJKBJX0KRXTFXZFUQIWSZZBBMGDFPXO153R1N1FX6ZC1A52V6ZY465FLXB2GY6HG546TZTIDY78BPH07Y4U61D1I79A96P6DS4AMOTG1HAHMI7BU4WLVSAOLT4FAZL4A41GTHQ0X222RZL6T5WPDUG1TE19' where id=15; -update noar ti set v2='UT9IKX7AT2RGHPUFA4WZ3ZFDM30BQZYNNMS2USY7IB1IMNNA1O3I5CJJDSR3LHQLICWNUSKNOM7UPSTJZ1JZN6OQ8288E00OQ102XJRJKBJX0KRXTFXZFUQIWSZZBBMGDFPXO153R1N1FX6ZC1A52V6ZY465FLXB2GY6HG546TZTIDY78BPH07Y4U61D1I79A96P6DS4AMOTG1HAHMI7BU4WLVSAOLT4FAZL4A41GTHQ0X222RZL6T5WPDUG1TE19' where id=15; -update noar tt set v3='ICKII3HFMKINOU8UMYDKCEH4P7PU5RGF02VCJ6PSWW06LP4HAMCXXSZ5FVIEHGSP1XHG95D4X542FNGZXDAIVRPC0RP54PR6ZJ4YUK4KMQ85YYMJSZAPMCGSR18RXSL40CT4CPG4A9PFT56J5WCVV6DCW4L8IA978PGRU2L3GVBRJMQB0BQE27UBVVZRVX4B359XL4S2EIPT3AU3MTU36O8BXAG2TBMT63DOJQO204P9LJWHJ64CQO567VISFJW0X' where id=15; -update noar ti set v3='ICKII3HFMKINOU8UMYDKCEH4P7PU5RGF02VCJ6PSWW06LP4HAMCXXSZ5FVIEHGSP1XHG95D4X542FNGZXDAIVRPC0RP54PR6ZJ4YUK4KMQ85YYMJSZAPMCGSR18RXSL40CT4CPG4A9PFT56J5WCVV6DCW4L8IA978PGRU2L3GVBRJMQB0BQE27UBVVZRVX4B359XL4S2EIPT3AU3MTU36O8BXAG2TBMT63DOJQO204P9LJWHJ64CQO567VISFJW0X' where id=15; -update noar tt set v0='DQGN42J0F5OE57YURUHI5VTTG69RIVFYOC3CYWOISK4UU50KBUSD3FD0BN3VLHW92CE0B3YJ35DZB7LPE9WMSPWZ98YQF6YCBK9HUBXP49D4EBLLTRN7MOJ52WVBTCEWXP714WHGH0CMKO1A8QTJQDOKISR9IISDWHZYJ2Q41L5HT4C2WNVWM3YNJO2TPKT18C11BMMCA2XFR9Z45IUF67RE2UESVJFK27V4A99TIPJVPHQM2J43SAQK0WRTBBASE' where id=16; -update noar ti set v0='DQGN42J0F5OE57YURUHI5VTTG69RIVFYOC3CYWOISK4UU50KBUSD3FD0BN3VLHW92CE0B3YJ35DZB7LPE9WMSPWZ98YQF6YCBK9HUBXP49D4EBLLTRN7MOJ52WVBTCEWXP714WHGH0CMKO1A8QTJQDOKISR9IISDWHZYJ2Q41L5HT4C2WNVWM3YNJO2TPKT18C11BMMCA2XFR9Z45IUF67RE2UESVJFK27V4A99TIPJVPHQM2J43SAQK0WRTBBASE' where id=16; -update noar tt set v1='K7HFG4ISR8HL8RQNIL6IDS9R32RBYZHNB9X13J9EIOILG0PKKW4A6X8LCMXGH7KD6T8JWBW588Y5M13PBHVV4WLRD74KZZJBTY0E9VBF5D8QAOI2T75GA4OJVJ9HUVWB91EQXF0Z1QDHJ5DEBS3EML5K8YZLCVDTWIC16N4WHX0EXNDVWJFRPSAZ1GP8Q7K481K4I1TYX2X1MB8MTOOG5RGGBSSUKFRDEW9O24W7KUJCVXK9SZTDUFHK2SAG59P2G' where id=16; -update noar ti set v1='K7HFG4ISR8HL8RQNIL6IDS9R32RBYZHNB9X13J9EIOILG0PKKW4A6X8LCMXGH7KD6T8JWBW588Y5M13PBHVV4WLRD74KZZJBTY0E9VBF5D8QAOI2T75GA4OJVJ9HUVWB91EQXF0Z1QDHJ5DEBS3EML5K8YZLCVDTWIC16N4WHX0EXNDVWJFRPSAZ1GP8Q7K481K4I1TYX2X1MB8MTOOG5RGGBSSUKFRDEW9O24W7KUJCVXK9SZTDUFHK2SAG59P2G' where id=16; -update noar tt set v2='XSZHNUE8KT052R1ZK2TBAFM66DQN9R362YLHBP4EPOMBTAKIOE87X26KJSSDVRMBI2NVJTMDQF5XVT1ELMZGFSHA0YVVH1XHKPS27WPLPLER6PNWGJ91BT5SED31S1CBSS112PSHT7REHDGZIB1FAE3S9C02UCSNG36VUCJ8WYRW1G3P1DRYSETB2195T0EBQ0YOSNWO35PUPFY0UICLEPFG03L6GN4CA87QQL2A2SDC36N9KLQSFYN1CSW9PAWB4' where id=16; -update noar ti set v2='XSZHNUE8KT052R1ZK2TBAFM66DQN9R362YLHBP4EPOMBTAKIOE87X26KJSSDVRMBI2NVJTMDQF5XVT1ELMZGFSHA0YVVH1XHKPS27WPLPLER6PNWGJ91BT5SED31S1CBSS112PSHT7REHDGZIB1FAE3S9C02UCSNG36VUCJ8WYRW1G3P1DRYSETB2195T0EBQ0YOSNWO35PUPFY0UICLEPFG03L6GN4CA87QQL2A2SDC36N9KLQSFYN1CSW9PAWB4' where id=16; -update noar tt set v3='9CFIKEF4C2YAZSK0OV65F4H4GMZZM7MUQIJ1NOPAPBQ9AB5FWTJMUCJSLUZ9H1C4N6MWYB6HNIG8FM76VKJR343KFZ8KCAZ5VUQI82ST3KGGJ8T2A04RUWG86SI799AYDL6AIE0KH9X2Q8PJIHQJ2ZHO71PBD5JEKBD4SWIZA88QFGKZHZMU5WYGHADS3GKIA3YAM17LL122MH2UFTGHFTQ20P3KQOWGCBH6LFIQ8REA1WRJEZCBWA75RKU1FU0JJ' where id=16; -update noar ti set v3='9CFIKEF4C2YAZSK0OV65F4H4GMZZM7MUQIJ1NOPAPBQ9AB5FWTJMUCJSLUZ9H1C4N6MWYB6HNIG8FM76VKJR343KFZ8KCAZ5VUQI82ST3KGGJ8T2A04RUWG86SI799AYDL6AIE0KH9X2Q8PJIHQJ2ZHO71PBD5JEKBD4SWIZA88QFGKZHZMU5WYGHADS3GKIA3YAM17LL122MH2UFTGHFTQ20P3KQOWGCBH6LFIQ8REA1WRJEZCBWA75RKU1FU0JJ' where id=16; -update noar tt set v0='TY6I6SKGL5UOL42BRO29O1UXOD2JYEMXN8AZ96O7YPAUAL088O07TGEC6DVZOM3839PPZ7KBLFDRRQDKBFYPS72ORXESNCEWKM9UDM6ZR6LAZXA2SW18O705C6AII8IW2BKJ1M0Z424V6WA2ORBSJ7OZLDLGW21S9NYIZOE9OOS2TZNU323E0DX9G4C16VSHMJUCC2IOJR2VCYARZ52M4RU83KDHVFXWX6JBY4BLGYV2ZR4X481UWTP81Y099276K' where id=17; -update noar ti set v0='TY6I6SKGL5UOL42BRO29O1UXOD2JYEMXN8AZ96O7YPAUAL088O07TGEC6DVZOM3839PPZ7KBLFDRRQDKBFYPS72ORXESNCEWKM9UDM6ZR6LAZXA2SW18O705C6AII8IW2BKJ1M0Z424V6WA2ORBSJ7OZLDLGW21S9NYIZOE9OOS2TZNU323E0DX9G4C16VSHMJUCC2IOJR2VCYARZ52M4RU83KDHVFXWX6JBY4BLGYV2ZR4X481UWTP81Y099276K' where id=17; -update noar tt set v1='S1S76G57X1KT93CONQSL9JR7PWAMNRZQHBFQCJFORM6PQUOIGG9AQRKCJSK5G062464L067LMRZV36N42KNUVNW06BRS6633A5670IY1ZRTEK1W7YVP56T77H7UKL8VHJKWI4TF7D5OOFXGTY887U7F5AAI1VF70RHUCF3OQ7XLRZ2N1S488W1OMNAJUVM03KBLH2EVFYUDHE50MID8PVLS75REXQP0B10ZP6DN5BVYR5A416GR2ZVBKAK0JNJ1RA' where id=17; -update noar ti set v1='S1S76G57X1KT93CONQSL9JR7PWAMNRZQHBFQCJFORM6PQUOIGG9AQRKCJSK5G062464L067LMRZV36N42KNUVNW06BRS6633A5670IY1ZRTEK1W7YVP56T77H7UKL8VHJKWI4TF7D5OOFXGTY887U7F5AAI1VF70RHUCF3OQ7XLRZ2N1S488W1OMNAJUVM03KBLH2EVFYUDHE50MID8PVLS75REXQP0B10ZP6DN5BVYR5A416GR2ZVBKAK0JNJ1RA' where id=17; -update noar tt set v2='84XUWTY0IAMVDO7BOCMH9N40N46KOI0YM8A6ELLHXG59GUS1KM1Z7FNUP8DQ80RH2GF18X5BTTVMJ6M5RPE4N32QDS9CT0FKRA2Z69QHGGZRHGMKMNRSIMIB7Z5UTMGUE54SPE7MTMZ4Y5Y50BUHE9YOTGZUMSAPYCNP25Y0J0QUM90RV5PGD21244TNMYW2KPGZ3WKR98W5A3720OW7X1UQ3MIEMHDJY6LNA6BIC1ILECNM2KUADB4F9RN6SSS15' where id=17; -update noar ti set v2='84XUWTY0IAMVDO7BOCMH9N40N46KOI0YM8A6ELLHXG59GUS1KM1Z7FNUP8DQ80RH2GF18X5BTTVMJ6M5RPE4N32QDS9CT0FKRA2Z69QHGGZRHGMKMNRSIMIB7Z5UTMGUE54SPE7MTMZ4Y5Y50BUHE9YOTGZUMSAPYCNP25Y0J0QUM90RV5PGD21244TNMYW2KPGZ3WKR98W5A3720OW7X1UQ3MIEMHDJY6LNA6BIC1ILECNM2KUADB4F9RN6SSS15' where id=17; -update noar tt set v3='ZOG31JVCR5RRBQWGR84B3X7767PQX2XEQZTMDZ3VEPTNHKRZLPBFXSIM38KFG6D1ZH1YYWMDZQ31URMY5C90KMK9C1EWKJH8520U0JGQXWRSDIF88RJ1A4WM1K95TU68H452VIJXJIQBBGESJ2QIB5N8XCWLQPWAS38DN5K9OVYER9ODZFKI2JC92QLBUOJGUADN8O4WDPKOOGA4VGFIBLQFY1M6ICJOK5D2S210NAI4SAVSTVIL594RWP9KGS555' where id=17; -update noar ti set v3='ZOG31JVCR5RRBQWGR84B3X7767PQX2XEQZTMDZ3VEPTNHKRZLPBFXSIM38KFG6D1ZH1YYWMDZQ31URMY5C90KMK9C1EWKJH8520U0JGQXWRSDIF88RJ1A4WM1K95TU68H452VIJXJIQBBGESJ2QIB5N8XCWLQPWAS38DN5K9OVYER9ODZFKI2JC92QLBUOJGUADN8O4WDPKOOGA4VGFIBLQFY1M6ICJOK5D2S210NAI4SAVSTVIL594RWP9KGS555' where id=17; -update noar tt set v0='4Z0LYXCKI25LHUKIURUNG6Y2S2E74BKW49A90PLP634NOBX6VN68BXDEURWIYDF8PRCDS1KBWZMU8LNVI201UTXZDPE5LMQUZ2GQ6L7GYLFIKAKY00K86GH32O150MOHX2CAYFSQNG077FF60CK67E5B1BY1HAOQK74T7645W6I3MSC3HFW002H2D9Y4OUPUKVQKN4SCY36G1PQCWCAEO3V9YSAM3PCSZU6XM7A8HZGVYFDKZ7BV68AJJ1CRUXFCA' where id=18; -update noar ti set v0='4Z0LYXCKI25LHUKIURUNG6Y2S2E74BKW49A90PLP634NOBX6VN68BXDEURWIYDF8PRCDS1KBWZMU8LNVI201UTXZDPE5LMQUZ2GQ6L7GYLFIKAKY00K86GH32O150MOHX2CAYFSQNG077FF60CK67E5B1BY1HAOQK74T7645W6I3MSC3HFW002H2D9Y4OUPUKVQKN4SCY36G1PQCWCAEO3V9YSAM3PCSZU6XM7A8HZGVYFDKZ7BV68AJJ1CRUXFCA' where id=18; -update noar tt set v1='CKOKYWHVQ4ZT3FRRUYASZLCTT3MKW08LE4Q5PWRA6O016BGQMM2SZ9FSBIXSU5VQLUF7ZOMSEMU0VBQGQ1017PIE2XXFJSTY9UC7V0IA68VSYQ5XPQ7PWYD6JQ09EHR6B5LA7XWK548SCVV9Q15PXONSX82C3VIC54OXTTKRNS6YUEHN08B14AARBOPQ4EWIAFHL3NLQJC15XNG4Y1FZEI1YRFGQYKJEVXPHYD6B5V695CN0MVUSTRULKIHZEYVKZ' where id=18; -update noar ti set v1='CKOKYWHVQ4ZT3FRRUYASZLCTT3MKW08LE4Q5PWRA6O016BGQMM2SZ9FSBIXSU5VQLUF7ZOMSEMU0VBQGQ1017PIE2XXFJSTY9UC7V0IA68VSYQ5XPQ7PWYD6JQ09EHR6B5LA7XWK548SCVV9Q15PXONSX82C3VIC54OXTTKRNS6YUEHN08B14AARBOPQ4EWIAFHL3NLQJC15XNG4Y1FZEI1YRFGQYKJEVXPHYD6B5V695CN0MVUSTRULKIHZEYVKZ' where id=18; -update noar tt set v2='SDRECPG8ZCNSLDA4JOPFL554CQ798XKGFEBC25HVR4TVZI6TZWVHQBZHG0KYW6AX80I9G11PRMN2Z1BWKWUFH33AWELPJJHLSP5UJ9K7C0PYBUUM7F8D1VQWKJK70C0XVDIZC1OS52GX1MUA930WG8LNIERCLAZMA0YQ55JHSZAIWTFAROX8HEEHTBV0IZMK98YK4PI6H2CL2AIBTBLWTQOSM54BFI71X4ASSO1QHCLI8OGNQLHC3HCJZO0T4PYGS' where id=18; -update noar ti set v2='SDRECPG8ZCNSLDA4JOPFL554CQ798XKGFEBC25HVR4TVZI6TZWVHQBZHG0KYW6AX80I9G11PRMN2Z1BWKWUFH33AWELPJJHLSP5UJ9K7C0PYBUUM7F8D1VQWKJK70C0XVDIZC1OS52GX1MUA930WG8LNIERCLAZMA0YQ55JHSZAIWTFAROX8HEEHTBV0IZMK98YK4PI6H2CL2AIBTBLWTQOSM54BFI71X4ASSO1QHCLI8OGNQLHC3HCJZO0T4PYGS' where id=18; -update noar tt set v3='HTOAW4FV211DWN7412E5AAWPCYQRG6JX4KSIT94WV7AEZSACPHY0NB1D05YIEARYWTTUNXXPY6D5O3DJBDA8BZ031HRKYGRGMN9K3O7E1N6HJF8WLR2TOPC9050RQ4P3YXJF5KLERWRC7H8SPGQ472UYLC5IVGHSRYMSJ14DZSDDTGG2PF4FH93JA0PTZPL7I9FAQIWAIPJD89G6A5T4PALJTKWMBIMEZRVYK1UKZJHA4S7IFJWYVNZK0DMKF6MLG' where id=18; -update noar ti set v3='HTOAW4FV211DWN7412E5AAWPCYQRG6JX4KSIT94WV7AEZSACPHY0NB1D05YIEARYWTTUNXXPY6D5O3DJBDA8BZ031HRKYGRGMN9K3O7E1N6HJF8WLR2TOPC9050RQ4P3YXJF5KLERWRC7H8SPGQ472UYLC5IVGHSRYMSJ14DZSDDTGG2PF4FH93JA0PTZPL7I9FAQIWAIPJD89G6A5T4PALJTKWMBIMEZRVYK1UKZJHA4S7IFJWYVNZK0DMKF6MLG' where id=18; -update noar tt set v0='J2J0ES29Y61EHWTCR8LAQ4R0HVHOW0JFH1VZP7M88CG0XUXMHXLU572Y63HYJ2GK3PNMKN7QVRX7AA216NU3OBFLM1815DHOAICONUP1HL25O8PMLWL7WZ4GSIXCC80DMHRL0KY8Z0Y0DMT7XQKJNZFC23LMCY47C6P09CV4TWOTQWA137HOM457HYDV1Z7W4L99RZKTF37A2S7FFI4KFSAHHSO8FINF3CN8ABSXID8M1BBCXKXD4RTLYWNLMMPW4' where id=19; -update noar ti set v0='J2J0ES29Y61EHWTCR8LAQ4R0HVHOW0JFH1VZP7M88CG0XUXMHXLU572Y63HYJ2GK3PNMKN7QVRX7AA216NU3OBFLM1815DHOAICONUP1HL25O8PMLWL7WZ4GSIXCC80DMHRL0KY8Z0Y0DMT7XQKJNZFC23LMCY47C6P09CV4TWOTQWA137HOM457HYDV1Z7W4L99RZKTF37A2S7FFI4KFSAHHSO8FINF3CN8ABSXID8M1BBCXKXD4RTLYWNLMMPW4' where id=19; -update noar tt set v1='J7DLWVOJB6YPXAF5LQ2G7NZG6FV7J5TFRVE1QH1QOFL7B6JQN407RLZBMJHJNLC837K3T7RY9M0TX8F7FNY8K4OVA86TAF1EZVHBZZEISI10NKWSXEY5K3JTI2JFPEOI6L150MZ9WFECR8F8FV8ATGYJ69QO5CISXETT0HU25FU19AZRQ0LKJC1LHZ28G83IVSSI440WFPYA1NRTYLDFUCVUV5M21AF6ZYHBV1K2MGNOXCBXR0NCBOWTJBD5QEZ61' where id=19; -update noar ti set v1='J7DLWVOJB6YPXAF5LQ2G7NZG6FV7J5TFRVE1QH1QOFL7B6JQN407RLZBMJHJNLC837K3T7RY9M0TX8F7FNY8K4OVA86TAF1EZVHBZZEISI10NKWSXEY5K3JTI2JFPEOI6L150MZ9WFECR8F8FV8ATGYJ69QO5CISXETT0HU25FU19AZRQ0LKJC1LHZ28G83IVSSI440WFPYA1NRTYLDFUCVUV5M21AF6ZYHBV1K2MGNOXCBXR0NCBOWTJBD5QEZ61' where id=19; -update noar tt set v2='K9MU7LPUUZVCEQLKTV10NJTSE4TM8B6BH2N7O9QFYVJZG869JH50TSVYMO25NDPW0OTFLJOTHZXE2ZD23FJ7KWPYOZJRLUBK0IWGW85F7VAR3GVT5CXH02BQKYUQR04YBLE4YZZK4YWZAH2LAM3D88F3TIGMZCWKK2R7O0YE5YRREWGAZWL7K3F3KMB0E4NUC8CJXBOBPZ5ARMML1NCPKN2LTCJASNBZ90LKGKM307S2WLTDJBKSYA7IGAC5FPJSW' where id=19; -update noar ti set v2='K9MU7LPUUZVCEQLKTV10NJTSE4TM8B6BH2N7O9QFYVJZG869JH50TSVYMO25NDPW0OTFLJOTHZXE2ZD23FJ7KWPYOZJRLUBK0IWGW85F7VAR3GVT5CXH02BQKYUQR04YBLE4YZZK4YWZAH2LAM3D88F3TIGMZCWKK2R7O0YE5YRREWGAZWL7K3F3KMB0E4NUC8CJXBOBPZ5ARMML1NCPKN2LTCJASNBZ90LKGKM307S2WLTDJBKSYA7IGAC5FPJSW' where id=19; -update noar tt set v3='FA0WI39W4FQI9MO5G7WD10WO7SPFYHFJUL75GLKYD1ZXHNTQPY72RXST1V17T1MNVYZUEV5O5D7QODU0USVRH4HFZ2NV694E8NBNWRCNUOLDS3SNT6FZ0GUHPS6R4E0VN5XEQZ0XFN84S9GP445NSGXRDWIMY89IYT9KSHGJMLEQZADEMWF1OY09FLT673R4FP6T2ILYINS0K8B1OVINP0V0LUPWGPC5E3M2LA0JLLB7S1B74NFZ4N8ZDIO6YPVMS' where id=19; -update noar ti set v3='FA0WI39W4FQI9MO5G7WD10WO7SPFYHFJUL75GLKYD1ZXHNTQPY72RXST1V17T1MNVYZUEV5O5D7QODU0USVRH4HFZ2NV694E8NBNWRCNUOLDS3SNT6FZ0GUHPS6R4E0VN5XEQZ0XFN84S9GP445NSGXRDWIMY89IYT9KSHGJMLEQZADEMWF1OY09FLT673R4FP6T2ILYINS0K8B1OVINP0V0LUPWGPC5E3M2LA0JLLB7S1B74NFZ4N8ZDIO6YPVMS' where id=19; -update noar tt set v0='UQQMWAL04Q831U5I6RHE4LKN2HBD5N2D1UIWDV0CFQ0EZFWJ5J2C4Q1CS29C6RAYERUBIIQ9PW1OVTMD24PUIE5GM14TSQKM4IQA8JPRNDJBAB4OGRXMETJRWHTYDUHVI6UTMZ8AZXUXN1UHG7JUD5IZE2WN7HDMVZCLQQK1LFQT9326FS4FAH9OUVHCVC1PGK27MH8X4ZD4NZIIDSFM9RJVNR8MKRO9AXFDKLM2BKMDSDNZ8ZRDWAO9GIBLJDO8B' where id=20; -update noar ti set v0='UQQMWAL04Q831U5I6RHE4LKN2HBD5N2D1UIWDV0CFQ0EZFWJ5J2C4Q1CS29C6RAYERUBIIQ9PW1OVTMD24PUIE5GM14TSQKM4IQA8JPRNDJBAB4OGRXMETJRWHTYDUHVI6UTMZ8AZXUXN1UHG7JUD5IZE2WN7HDMVZCLQQK1LFQT9326FS4FAH9OUVHCVC1PGK27MH8X4ZD4NZIIDSFM9RJVNR8MKRO9AXFDKLM2BKMDSDNZ8ZRDWAO9GIBLJDO8B' where id=20; -update noar tt set v1='5JGEBJ322PBJ2T1E9LY6ITWX648MUXPX4YYN6YM4QXSCTEJDDJCY7O2Y15WDYPJR0RIK06SO8KRN7B9783I7KJZ80C9QCC788NYLNS8BIJ8U1H3A7AIQP39M6TG81ESRQWTP7K3QM0BIIU9G0FWHYIT3DI7LQ5EEGWDHWISZFWR7BTP2NBMWQQYRAEY48S8JFBJY79M0ZHN1UP7QZJ2GBC5ZDBG0DLP1ORLMG1B0AOJ9E4IESDV9AFQTN33V4Y3Y6' where id=20; -update noar ti set v1='5JGEBJ322PBJ2T1E9LY6ITWX648MUXPX4YYN6YM4QXSCTEJDDJCY7O2Y15WDYPJR0RIK06SO8KRN7B9783I7KJZ80C9QCC788NYLNS8BIJ8U1H3A7AIQP39M6TG81ESRQWTP7K3QM0BIIU9G0FWHYIT3DI7LQ5EEGWDHWISZFWR7BTP2NBMWQQYRAEY48S8JFBJY79M0ZHN1UP7QZJ2GBC5ZDBG0DLP1ORLMG1B0AOJ9E4IESDV9AFQTN33V4Y3Y6' where id=20; -update noar tt set v2='OG9104ZOQ6WCGCLB8KY60WN6O3QOE6SXO8WL6NPVO9CQP941CZF8J1NJ7A7ZMP48KWWV4MRRLL38RU5R0P8HM4OSQEN6Z06S0IMBNSHD0T5AKOJG1YZWKI7X4MP4LZQDXJHG5ECD5IW04PCIP7NWDYOO0MVS5UFDGW6D6P96Y5JOBO3G00IIJBB7ZAR0ZJ3MFKWP1V1MXKBQGCO3L5KKHRAYC5ID4MW5Q4TUT0B4O12YMMZ2G1NZV3YUSYREHNWKS' where id=20; -update noar ti set v2='OG9104ZOQ6WCGCLB8KY60WN6O3QOE6SXO8WL6NPVO9CQP941CZF8J1NJ7A7ZMP48KWWV4MRRLL38RU5R0P8HM4OSQEN6Z06S0IMBNSHD0T5AKOJG1YZWKI7X4MP4LZQDXJHG5ECD5IW04PCIP7NWDYOO0MVS5UFDGW6D6P96Y5JOBO3G00IIJBB7ZAR0ZJ3MFKWP1V1MXKBQGCO3L5KKHRAYC5ID4MW5Q4TUT0B4O12YMMZ2G1NZV3YUSYREHNWKS' where id=20; -update noar tt set v3='G0CK9B5NB56WDNYQD7AH6WDHNMU4R8TOTR3TK2FKS6N9YOCZS5NKI0228Z5R7GWXLJZVKFT3IPF1PQSSJLVSPO6XQG07XL0XBCNP2YZFBQIMXJOCAUYLTX4C93CT01IC8OXLI9X7O4WGNS4ZZC1NVZSL1PEP4V2IA70BBYWB8LRNY820UGSSVPTC17RJ1O10DXRDIAH714UBMIV921JRIKRKP7FH64JCCAZSD64JTQ735T7EMAWQLLKWO92P2UCNP' where id=20; -update noar ti set v3='G0CK9B5NB56WDNYQD7AH6WDHNMU4R8TOTR3TK2FKS6N9YOCZS5NKI0228Z5R7GWXLJZVKFT3IPF1PQSSJLVSPO6XQG07XL0XBCNP2YZFBQIMXJOCAUYLTX4C93CT01IC8OXLI9X7O4WGNS4ZZC1NVZSL1PEP4V2IA70BBYWB8LRNY820UGSSVPTC17RJ1O10DXRDIAH714UBMIV921JRIKRKP7FH64JCCAZSD64JTQ735T7EMAWQLLKWO92P2UCNP' where id=20; -update noar tt set v0='XEKSFWW852KAAHSKEGJ48HGLX99SZGG8QW8PZ0CDRHL5X2W1TOMNSM4RNEZAE1IX4JWTYFDM9SZ9G9KTDOTMT1KFBEUYW0X6BZMBIBNTIRX0UFCM2F6E9FAME4YA4RBMDJSHTT6GUP0QVRPCFLK5XVD0V8M8RDJD5JWWH5YHFI2DTZWG6RRTO1WFPP0HZF15DS7HM4NO5DH96JZQOY01FN9LUWV0BK6E6LXBWBCLKG8BTZULMZFFLZIAEDKX975NG' where id=21; -update noar ti set v0='XEKSFWW852KAAHSKEGJ48HGLX99SZGG8QW8PZ0CDRHL5X2W1TOMNSM4RNEZAE1IX4JWTYFDM9SZ9G9KTDOTMT1KFBEUYW0X6BZMBIBNTIRX0UFCM2F6E9FAME4YA4RBMDJSHTT6GUP0QVRPCFLK5XVD0V8M8RDJD5JWWH5YHFI2DTZWG6RRTO1WFPP0HZF15DS7HM4NO5DH96JZQOY01FN9LUWV0BK6E6LXBWBCLKG8BTZULMZFFLZIAEDKX975NG' where id=21; -update noar tt set v1='QHR1UAQQ7ITT3HPA7BIQ7QN8PAPE3Y2QTYMJ3DGEAIC0B174127WG6U5FVIQ8YPNHFVHOCI0V70B5WLEC1QPS4NDGEO90KHRH3P617ZB439KSQ10L2TIALZCDA6QVONE27720L5W4JBZBJNCQIX5DJGRRZMSL4IS68VTDE7Y6RZ7FS2RP7F6DMZ2RSVEREI4W9XSL875K5IEOMKSHJYMXCYIRJ22N5O9DXZLEB8UZIQWOIN3O10D2J7YEBF5VWEFF' where id=21; -update noar ti set v1='QHR1UAQQ7ITT3HPA7BIQ7QN8PAPE3Y2QTYMJ3DGEAIC0B174127WG6U5FVIQ8YPNHFVHOCI0V70B5WLEC1QPS4NDGEO90KHRH3P617ZB439KSQ10L2TIALZCDA6QVONE27720L5W4JBZBJNCQIX5DJGRRZMSL4IS68VTDE7Y6RZ7FS2RP7F6DMZ2RSVEREI4W9XSL875K5IEOMKSHJYMXCYIRJ22N5O9DXZLEB8UZIQWOIN3O10D2J7YEBF5VWEFF' where id=21; -update noar tt set v2='8JJARDA8JIMXNOMZO3QJT0PV7YKFK3ZP9YX8SU3XP1CAWS8XE1AE2KXT5O7V6LJIMJZOGVW7APZG40BR5C46LO54G4KR13VCXUJ60FZEIIOU9I7WZD08QVY6KDUBKL90FHUP5H3ZC6F2OITKSHW5RLF3BGYD3F7W64KHWTCB1FBWP0U42YFTI81PRGN0WSJOL9CPF3WZ0XP0LKI8BL9DHGJD4X2HAYIVCBBEA1RCCCGPADBM0SXX7JAFJHM6VTS6X' where id=21; -update noar ti set v2='8JJARDA8JIMXNOMZO3QJT0PV7YKFK3ZP9YX8SU3XP1CAWS8XE1AE2KXT5O7V6LJIMJZOGVW7APZG40BR5C46LO54G4KR13VCXUJ60FZEIIOU9I7WZD08QVY6KDUBKL90FHUP5H3ZC6F2OITKSHW5RLF3BGYD3F7W64KHWTCB1FBWP0U42YFTI81PRGN0WSJOL9CPF3WZ0XP0LKI8BL9DHGJD4X2HAYIVCBBEA1RCCCGPADBM0SXX7JAFJHM6VTS6X' where id=21; -update noar tt set v3='EDZ4EMGEZXM3X45IY3C778BVXZJ8X8RW3QEE1WKSB1R1YC69M4B4NZPNMXHO88EQEB18GLFXJLV2VMQUUNNLOAUG3PGUQPOUMP6O3BFNU3A0G7LWSORTEZZJCGRZOL5XIKUKOR2NJMBQF9WEXOLG3WC0PMC2RRRKDLSH8GBVG09SZJIHH5B4CENXV9QQY612ME0C8F5QJ034HV7JDES0NPVH1444FWTGT98YG3TUHDZBICNRM7RNQBG3GUGBUHQ6P' where id=21; -update noar ti set v3='EDZ4EMGEZXM3X45IY3C778BVXZJ8X8RW3QEE1WKSB1R1YC69M4B4NZPNMXHO88EQEB18GLFXJLV2VMQUUNNLOAUG3PGUQPOUMP6O3BFNU3A0G7LWSORTEZZJCGRZOL5XIKUKOR2NJMBQF9WEXOLG3WC0PMC2RRRKDLSH8GBVG09SZJIHH5B4CENXV9QQY612ME0C8F5QJ034HV7JDES0NPVH1444FWTGT98YG3TUHDZBICNRM7RNQBG3GUGBUHQ6P' where id=21; -update noar tt set v0='WO3CQCJRAK0VLQSJVOHQJYAF2JO2IG6BP8GYAUKA84PENPWV2ZHN46UYD7FY6DOZ0Y7HPI4B7343QHNQ4M3POFQ2CJNCLEQQ4GSPNNEBP7S0AWPP43U3PEWLN08GGR6GPCO012YE53AX8EY5NQ5GBUFDJX01XN6C3ALHOD3I2X3SKXHW6EQP8JGDNUEEYTHRVBTZZKCXKVYA3FDKSQCVO9B7QBJZATATZMXRPK9QNG9KB1HATZZ6Z6YYEROBSBY69' where id=22; -update noar ti set v0='WO3CQCJRAK0VLQSJVOHQJYAF2JO2IG6BP8GYAUKA84PENPWV2ZHN46UYD7FY6DOZ0Y7HPI4B7343QHNQ4M3POFQ2CJNCLEQQ4GSPNNEBP7S0AWPP43U3PEWLN08GGR6GPCO012YE53AX8EY5NQ5GBUFDJX01XN6C3ALHOD3I2X3SKXHW6EQP8JGDNUEEYTHRVBTZZKCXKVYA3FDKSQCVO9B7QBJZATATZMXRPK9QNG9KB1HATZZ6Z6YYEROBSBY69' where id=22; -update noar tt set v1='BT3TZ0D8XUOV3YHHAUQ3ILBZ0049B8A8JWAQK07GTIMODJITLWBQ39OWKGTBTCOAIFN0UPV8YBJCRP6MSJG81SCDN03HBRM8HT4NUN0CFL57N6IITWA5ZYLK7F9JCKHZGL4EP1QELKLA0XUIEZ4J4L4CC2PUGG836LEKA3L482KCKCIZCZ4WWI9DYLTMRERWGRCZRJU14ECX07Z835ZOILKISVDXR57AHYPE4SN7LBRHIOED69TQ6RT0R9SSG16HB' where id=22; -update noar ti set v1='BT3TZ0D8XUOV3YHHAUQ3ILBZ0049B8A8JWAQK07GTIMODJITLWBQ39OWKGTBTCOAIFN0UPV8YBJCRP6MSJG81SCDN03HBRM8HT4NUN0CFL57N6IITWA5ZYLK7F9JCKHZGL4EP1QELKLA0XUIEZ4J4L4CC2PUGG836LEKA3L482KCKCIZCZ4WWI9DYLTMRERWGRCZRJU14ECX07Z835ZOILKISVDXR57AHYPE4SN7LBRHIOED69TQ6RT0R9SSG16HB' where id=22; -update noar tt set v2='2YPKLIR4DE1LHKJEJ3XU2WCD96A5G977FZ9Z1WB93ED2GWPT7RRPX2E6SYR0A9ZMG2PGAXYGDIQJ7I67CTVF5ZCL810X1N3HTY3CRC7N4PMKU5DQ3BVB286EK5D0FLZRFB2Z3LIOJQL4R2GU5YZH8Y9R57SRJ4KFLX97D0UVSWLRD7WI00VB2GHDDJT7FJPGIZVV0LLLI3MZRUDEI012Z696XLNSBAHEH7B0ND0LVPBD53WMUSE9V0XYZ4GCGHG7U' where id=22; -update noar ti set v2='2YPKLIR4DE1LHKJEJ3XU2WCD96A5G977FZ9Z1WB93ED2GWPT7RRPX2E6SYR0A9ZMG2PGAXYGDIQJ7I67CTVF5ZCL810X1N3HTY3CRC7N4PMKU5DQ3BVB286EK5D0FLZRFB2Z3LIOJQL4R2GU5YZH8Y9R57SRJ4KFLX97D0UVSWLRD7WI00VB2GHDDJT7FJPGIZVV0LLLI3MZRUDEI012Z696XLNSBAHEH7B0ND0LVPBD53WMUSE9V0XYZ4GCGHG7U' where id=22; -update noar tt set v3='WOOXVNLOMONDMCGL3E3K673KPZBDZ8IV2ALYTDZAS2BCZYETLJO9XSFWLA1IS12RPPAZU17PFULYIBPLA12BQPX5UA47JCRISP4BMDSHGTSB6N2D339YNZRLM6PI6EST9YBQWW8IDGX5WXCLGVPH3BGADDILS78BIN1UO63XXGTE4SAIZ2OCNKLZ7MW9MY6PG80KGHM3769U9QVP7SGCXQSQG6INEFRFL5W5G6TEHAM00KXF80C7GKC1Z85R7CKJU' where id=22; -update noar ti set v3='WOOXVNLOMONDMCGL3E3K673KPZBDZ8IV2ALYTDZAS2BCZYETLJO9XSFWLA1IS12RPPAZU17PFULYIBPLA12BQPX5UA47JCRISP4BMDSHGTSB6N2D339YNZRLM6PI6EST9YBQWW8IDGX5WXCLGVPH3BGADDILS78BIN1UO63XXGTE4SAIZ2OCNKLZ7MW9MY6PG80KGHM3769U9QVP7SGCXQSQG6INEFRFL5W5G6TEHAM00KXF80C7GKC1Z85R7CKJU' where id=22; -update noar tt set v0='P7RD9WWB4R1TALVG2A6FVUCDFGTSPD4ZEPB896GSLWSCNS9BQSLXKLPDB7I8NDWYHTLR17JF9HXDFKLU0EIVR1ZS7UWXZYIAUYGJD00WC2V6GD1PLRHLTBUMR30G9FTVJSE0C1D4ZLG0IP8ZV7QX3BH18F3DX01OR0TOKWQMEA7LKJ56Q6LS76JU8CN30T4K5JGF9OUXAOTOLLQZCBK3LHZW1X6OPY7Y003HXGEI3JK9IHXFGWDARVBHIXQG8KQAE' where id=23; -update noar ti set v0='P7RD9WWB4R1TALVG2A6FVUCDFGTSPD4ZEPB896GSLWSCNS9BQSLXKLPDB7I8NDWYHTLR17JF9HXDFKLU0EIVR1ZS7UWXZYIAUYGJD00WC2V6GD1PLRHLTBUMR30G9FTVJSE0C1D4ZLG0IP8ZV7QX3BH18F3DX01OR0TOKWQMEA7LKJ56Q6LS76JU8CN30T4K5JGF9OUXAOTOLLQZCBK3LHZW1X6OPY7Y003HXGEI3JK9IHXFGWDARVBHIXQG8KQAE' where id=23; -update noar tt set v1='B2SHAL8VGJ1IQRWMPW9IGOVRRVYG2S9O7BALTD7UW60V3FV9OMLX1DR4QC6RQURGDBQU5UVVIN1L615P7P9CBKNDOIG5Y0Q2DP1I8R92SVG5JQGFBX65UR1Y280GPXVBK5W0GI42QFO7HPV65LDOBR9GDNQA8AIXQT3F6RXFVJME435BQ8EKACD9F0H2LWPY2671W93L1R4PW6FQVMDDB2DYE554T4YL9V5GJRYLDBJ7MUF53US5AYBPKHJAYCO81' where id=23; -update noar ti set v1='B2SHAL8VGJ1IQRWMPW9IGOVRRVYG2S9O7BALTD7UW60V3FV9OMLX1DR4QC6RQURGDBQU5UVVIN1L615P7P9CBKNDOIG5Y0Q2DP1I8R92SVG5JQGFBX65UR1Y280GPXVBK5W0GI42QFO7HPV65LDOBR9GDNQA8AIXQT3F6RXFVJME435BQ8EKACD9F0H2LWPY2671W93L1R4PW6FQVMDDB2DYE554T4YL9V5GJRYLDBJ7MUF53US5AYBPKHJAYCO81' where id=23; -update noar tt set v2='8IEOLDVO1OVED1QFIOBQBVI8V4T0QATA2PXS5Y83KGI58K0D6CDV21XS3MI7YRG1PW9AUVEQ7PXN0J75HIM7QQTH15YI7CPIPYON9DL4IS8IH6CJ6ZLFA1GGT3I6VG3F7A6VPNCTOOS0QM1WKL5HFFKY3GUF4852RWJJIR4L04VKZNIBXZCTJ4VZHKXK1ZKLL149S1024S4IPIRKCCNGKOTVF5WYDQ6PXIPS0AEPGP41EDE9M0E2DTUZII0JRWLKG' where id=23; -update noar ti set v2='8IEOLDVO1OVED1QFIOBQBVI8V4T0QATA2PXS5Y83KGI58K0D6CDV21XS3MI7YRG1PW9AUVEQ7PXN0J75HIM7QQTH15YI7CPIPYON9DL4IS8IH6CJ6ZLFA1GGT3I6VG3F7A6VPNCTOOS0QM1WKL5HFFKY3GUF4852RWJJIR4L04VKZNIBXZCTJ4VZHKXK1ZKLL149S1024S4IPIRKCCNGKOTVF5WYDQ6PXIPS0AEPGP41EDE9M0E2DTUZII0JRWLKG' where id=23; -update noar tt set v3='GCNB085XUZ0GZ5G66ISVJHQBO3WG50I82MDXJGSVC3WZWL7ZICYR4I4662CWM3NPGLXQ2DWLSCVXHQZEM76LJG2EJEGMSZ8E4M9LNF1FOT9J1LXEVC0V1RD53437SU5TIRUI9ULAG6ZNY8BP9VR2T4RJCGT9VFOB2F53XAT7IA69WCNKNA4LOCCNSS9GE5C3ZL6N9SJ31Y107578R3KGWZVHUDG7C941UTEF22LKVKQEJBN9SVDS93G7UYTQC320X' where id=23; -update noar ti set v3='GCNB085XUZ0GZ5G66ISVJHQBO3WG50I82MDXJGSVC3WZWL7ZICYR4I4662CWM3NPGLXQ2DWLSCVXHQZEM76LJG2EJEGMSZ8E4M9LNF1FOT9J1LXEVC0V1RD53437SU5TIRUI9ULAG6ZNY8BP9VR2T4RJCGT9VFOB2F53XAT7IA69WCNKNA4LOCCNSS9GE5C3ZL6N9SJ31Y107578R3KGWZVHUDG7C941UTEF22LKVKQEJBN9SVDS93G7UYTQC320X' where id=23; -update noar tt set v0='E0XGOP4HRH8U2O2XGZUOTBFXIRMEJY9MSJZ0JOIVE81AIFIHJSL9YAIFYYJCS4M3L4J3L0QVPNH4WPWCECGX98QSMY90VTPFMXBL2LRZZRBNIY4WAMI17A7Z1Q5BJRIN9F0QFX7W5KX9RQB1CZ3JKY6J4ODA5PMP3CE353G50YOU3W2Z1O39Y7UDXA9OVK1CTDW53REDY0K5ZIFDF750L19I45ZDRX5B3R1UZJ8UA65NL5RL71B56GYI0B2WFYLTB' where id=24; -update noar ti set v0='E0XGOP4HRH8U2O2XGZUOTBFXIRMEJY9MSJZ0JOIVE81AIFIHJSL9YAIFYYJCS4M3L4J3L0QVPNH4WPWCECGX98QSMY90VTPFMXBL2LRZZRBNIY4WAMI17A7Z1Q5BJRIN9F0QFX7W5KX9RQB1CZ3JKY6J4ODA5PMP3CE353G50YOU3W2Z1O39Y7UDXA9OVK1CTDW53REDY0K5ZIFDF750L19I45ZDRX5B3R1UZJ8UA65NL5RL71B56GYI0B2WFYLTB' where id=24; -update noar tt set v1='GTN8H25Q84ZVX3PM23GR96V21BLZ7L3RBT28LYMX40YRD042JIROH9LFEPXH1ATZSU98G7HHVVQKS5BZ87ZRT9MOU8UBNJI80F4RCZXEN521C3MGEHLYL0DNEPORII3BWPO35U63IWB58KZLE6LDIJJE321ESWQAMGTL46H4J306GF7IEAZPXQ8HNGAM7DUO9HF6H78OMP4N4816HJY8QWVE0JEN0ULTKEOUCH5MFVIDDO3NZQKUUMKDKYIMAYAD8' where id=24; -update noar ti set v1='GTN8H25Q84ZVX3PM23GR96V21BLZ7L3RBT28LYMX40YRD042JIROH9LFEPXH1ATZSU98G7HHVVQKS5BZ87ZRT9MOU8UBNJI80F4RCZXEN521C3MGEHLYL0DNEPORII3BWPO35U63IWB58KZLE6LDIJJE321ESWQAMGTL46H4J306GF7IEAZPXQ8HNGAM7DUO9HF6H78OMP4N4816HJY8QWVE0JEN0ULTKEOUCH5MFVIDDO3NZQKUUMKDKYIMAYAD8' where id=24; -update noar tt set v2='4H0K4RFAOMPR6OUAYXUOH1WJJVP9T745TF45OM5KM8YYBDP1YM56V0C0IJWICETWUXMP6ZX1AANF2314I749MKWBC3ZJO9RJB7AZJIWERIX3BYFL76QB95H1U64IVFPWXEHZV56SPF732NN30GECWXHW8W2ZXATS1EH8N53WDKSDSFZ0AL2CGZ1S7EC81IXUUU7SQ8Q47E3CG8DVB5J6WC0IY4PDX7CB36CENMHN33X6YKR2EQ8IMR8F2AVDSQZTP' where id=24; -update noar ti set v2='4H0K4RFAOMPR6OUAYXUOH1WJJVP9T745TF45OM5KM8YYBDP1YM56V0C0IJWICETWUXMP6ZX1AANF2314I749MKWBC3ZJO9RJB7AZJIWERIX3BYFL76QB95H1U64IVFPWXEHZV56SPF732NN30GECWXHW8W2ZXATS1EH8N53WDKSDSFZ0AL2CGZ1S7EC81IXUUU7SQ8Q47E3CG8DVB5J6WC0IY4PDX7CB36CENMHN33X6YKR2EQ8IMR8F2AVDSQZTP' where id=24; -update noar tt set v3='3I2P6SMLR1LY6PGGU867WSDIUE2YB9ACVPKCDLRIHIXM6VSOPS2JMU8XZ98VUBAOSVWUJ3YW2N5KZP2JFDTAV5E51VDZIHKABJLDR717WRUVBM4WKBN7SBDR5BIZUAI3V7GKTWLZYFVDO6T93XV70RUCTQ9J629W4WAE4G6717CC0BFYAOLVI0L95MABQW6E099WB4JK8R5841QV7DEG76AMXANKB41OKL3N7CKTCUF9J8E2WK9BTCLX4JLWBMB0Z' where id=24; -update noar ti set v3='3I2P6SMLR1LY6PGGU867WSDIUE2YB9ACVPKCDLRIHIXM6VSOPS2JMU8XZ98VUBAOSVWUJ3YW2N5KZP2JFDTAV5E51VDZIHKABJLDR717WRUVBM4WKBN7SBDR5BIZUAI3V7GKTWLZYFVDO6T93XV70RUCTQ9J629W4WAE4G6717CC0BFYAOLVI0L95MABQW6E099WB4JK8R5841QV7DEG76AMXANKB41OKL3N7CKTCUF9J8E2WK9BTCLX4JLWBMB0Z' where id=24; -update noar tt set v0='39XUFD29HM0I9FUXGQ358TF81A48FX1PRDJGBG319N73OJMWFSRRMOWOUXVX0HVIUPHFFELN3NZW0QX24JU0DAGVXGOIBR5BEIJIWR5EBOEARWPTK3SLBE47GG9QQ04USTVKN290H8MSPS9P6AON0H6Q9M4K8LXFIEZB90JXZZZ8UFOA1Z5MKYG2X186VRW5454S9YOTMMAQEG3WWUK4UY0ZTWHNR4ZFIEN2QA5CNW4SK10S1TH8XGOUEBNM8I4LX' where id=25; -update noar ti set v0='39XUFD29HM0I9FUXGQ358TF81A48FX1PRDJGBG319N73OJMWFSRRMOWOUXVX0HVIUPHFFELN3NZW0QX24JU0DAGVXGOIBR5BEIJIWR5EBOEARWPTK3SLBE47GG9QQ04USTVKN290H8MSPS9P6AON0H6Q9M4K8LXFIEZB90JXZZZ8UFOA1Z5MKYG2X186VRW5454S9YOTMMAQEG3WWUK4UY0ZTWHNR4ZFIEN2QA5CNW4SK10S1TH8XGOUEBNM8I4LX' where id=25; -update noar tt set v1='MERR3SYL0LYN8XNCONSVN6JYOFC7XLA1HCITK123KOTSMJJHT8ATYENA9DH85I2ODFOCX9L891SJ8Z42D94MVGFN9BRSCNWV78A8O9MDKRP9CB0AJKSHBMA3R8K635ZXAJT0OGOG1OF8IRFIIIG4H5NVYJGG44U3UKPKAZ4EXB2ZTAAUUUUPBET76UF74R4NNDBPIWT8SM9YS37UMGWGFVG7SXMA7080Y12EEUJYYCZZZ7KBCJRS1RJ6BBX0UP05R' where id=25; -update noar ti set v1='MERR3SYL0LYN8XNCONSVN6JYOFC7XLA1HCITK123KOTSMJJHT8ATYENA9DH85I2ODFOCX9L891SJ8Z42D94MVGFN9BRSCNWV78A8O9MDKRP9CB0AJKSHBMA3R8K635ZXAJT0OGOG1OF8IRFIIIG4H5NVYJGG44U3UKPKAZ4EXB2ZTAAUUUUPBET76UF74R4NNDBPIWT8SM9YS37UMGWGFVG7SXMA7080Y12EEUJYYCZZZ7KBCJRS1RJ6BBX0UP05R' where id=25; -update noar tt set v2='2FO4NAM2C26B5U1BF8UQT1MCIDRIC2QSBTD8XF3A3OC8B1NQFJDQWKO3UMJ288N3JFJIQ5WPUOF9C059X9G1ZF7GL91L83EH2P9TI7MJTWUW0AMFU6B694ZRCBRU40HJ0EX6G06GNMCDN6WJ65BVOJHASA2KYDLE0T2JIP0R01GG03SHPK4RE2R2CS3TPUWMOO0KLG08BFG3NTSOZV5FVAB2OXZQHYSQMUJ1EKET0RE5JBTS9EQMLUIEJSMT7LUGO' where id=25; -update noar ti set v2='2FO4NAM2C26B5U1BF8UQT1MCIDRIC2QSBTD8XF3A3OC8B1NQFJDQWKO3UMJ288N3JFJIQ5WPUOF9C059X9G1ZF7GL91L83EH2P9TI7MJTWUW0AMFU6B694ZRCBRU40HJ0EX6G06GNMCDN6WJ65BVOJHASA2KYDLE0T2JIP0R01GG03SHPK4RE2R2CS3TPUWMOO0KLG08BFG3NTSOZV5FVAB2OXZQHYSQMUJ1EKET0RE5JBTS9EQMLUIEJSMT7LUGO' where id=25; -update noar tt set v3='HMMKT3RWDO07HHXH2AKK4EA8O3I5O3NS1A1TXSZ6V48T9ML8CP30OQNDXQKQBG58YLH8ASDQ8L27GZGDHEAKS2ZUGEMX6P3GADT7L0N53LZSV8SDBA67PT1HO1VQCFYKEBIX8H8E7X58QUDLV8NHLDVZDJDEVM44XI4R5NTBNPAM5J2ATBHSZBKIIM9IQONCEHXOIBGRJTWT54TDK1PKUXZ0HETMU73EJQFOQFUCFOWWDX6NH1GX5B34VWK0GICEG' where id=25; -update noar ti set v3='HMMKT3RWDO07HHXH2AKK4EA8O3I5O3NS1A1TXSZ6V48T9ML8CP30OQNDXQKQBG58YLH8ASDQ8L27GZGDHEAKS2ZUGEMX6P3GADT7L0N53LZSV8SDBA67PT1HO1VQCFYKEBIX8H8E7X58QUDLV8NHLDVZDJDEVM44XI4R5NTBNPAM5J2ATBHSZBKIIM9IQONCEHXOIBGRJTWT54TDK1PKUXZ0HETMU73EJQFOQFUCFOWWDX6NH1GX5B34VWK0GICEG' where id=25; -update noar tt set v0='C2RS2NLODKUCV4IKB38BZSIHZYYE1Q0SCKCFB49GGMP3TRRN6ZP2CX2C76IGBHQ11T6TTQ66N9QPF1V7K2CLSAJM6PKARLJWAEY646O4VFW0SCY353RXAAYYOY3JPJ1Q0B203GDOQT7FYLFIYIP6C1E0XZW3CUU3BSQNF5YDPWWACE4I2Y6D9J1C08DQAORO4IWRSGU9YC6KF1JL7HFVAFJ5IIF0IUDZ61OQRX9UMAE150YJF98U5EJOYF0GJ4DAU' where id=26; -update noar ti set v0='C2RS2NLODKUCV4IKB38BZSIHZYYE1Q0SCKCFB49GGMP3TRRN6ZP2CX2C76IGBHQ11T6TTQ66N9QPF1V7K2CLSAJM6PKARLJWAEY646O4VFW0SCY353RXAAYYOY3JPJ1Q0B203GDOQT7FYLFIYIP6C1E0XZW3CUU3BSQNF5YDPWWACE4I2Y6D9J1C08DQAORO4IWRSGU9YC6KF1JL7HFVAFJ5IIF0IUDZ61OQRX9UMAE150YJF98U5EJOYF0GJ4DAU' where id=26; -update noar tt set v1='0YJVHYUJ973HRJIABAMPAX8K6TWXBNUK4LMBY5IIHLQL70JPVCXH2F18RJ1TNUMEHAMATQ4EU2R81PULB9YSW8MW67RX7MD3K8J2YHSHNTO1BZOMRTNJ1ZXUSOHCHDV518JWPFHIZXCLALXAJ7T2TONWTVJ0RTXQJAIXFKYYPTYF3LPZTNPR8TLBYNFAI1QVRNXVRPDM0B2JDJ5ANSHKLITMTQTDOG7MPYCVMVVSKU0UV8O74F4W9XWZRH6GMCZWT' where id=26; -update noar ti set v1='0YJVHYUJ973HRJIABAMPAX8K6TWXBNUK4LMBY5IIHLQL70JPVCXH2F18RJ1TNUMEHAMATQ4EU2R81PULB9YSW8MW67RX7MD3K8J2YHSHNTO1BZOMRTNJ1ZXUSOHCHDV518JWPFHIZXCLALXAJ7T2TONWTVJ0RTXQJAIXFKYYPTYF3LPZTNPR8TLBYNFAI1QVRNXVRPDM0B2JDJ5ANSHKLITMTQTDOG7MPYCVMVVSKU0UV8O74F4W9XWZRH6GMCZWT' where id=26; -update noar tt set v2='2747KCLKVF755VLZH2CJHIYL9J2Q5SXIDLPS0I23X84FQOUDAIJVIPRN6777R6U9LPHOMSFNS3PX8F6TCXTQNUQ0DKQ2WI4ADAMBSWU7384JYJDCF781LPELGIGNG607DHZXEHDUL6WGV59SGFY9EF4F98AL15OJPGWATGR4CVQM5P8YP86XMVT5S94REEDUA60VSYCKL7DIBK6ASM3YB7O7TK15DWDYBOPB8PC2RID4D6QUTJJPPAL7X55V968UN' where id=26; -update noar ti set v2='2747KCLKVF755VLZH2CJHIYL9J2Q5SXIDLPS0I23X84FQOUDAIJVIPRN6777R6U9LPHOMSFNS3PX8F6TCXTQNUQ0DKQ2WI4ADAMBSWU7384JYJDCF781LPELGIGNG607DHZXEHDUL6WGV59SGFY9EF4F98AL15OJPGWATGR4CVQM5P8YP86XMVT5S94REEDUA60VSYCKL7DIBK6ASM3YB7O7TK15DWDYBOPB8PC2RID4D6QUTJJPPAL7X55V968UN' where id=26; -update noar tt set v3='6TERZ9M8DGQ3HYD4VLLKH9LKGNSS75S6ZFKDZBA8W1XI5XVB4VMR8UQLFNNDNYWBU71WU2ZDKCOBTEP1O9Y516421LCE8CEU7V1U71KMZQ38ASIVUV6D19YHS1DNX675BYM07C20FEI6AQAKREPQJDDRZ37AAG01C2A1K2TQJ8Z6MY2VGW51MDA765QUT6PJ1U96JVZAMZ0OGZUDNQL68105YYSKI8OGYNKRQ9LNXWRX8PY5ZC5L79KG251CKG7XP' where id=26; -update noar ti set v3='6TERZ9M8DGQ3HYD4VLLKH9LKGNSS75S6ZFKDZBA8W1XI5XVB4VMR8UQLFNNDNYWBU71WU2ZDKCOBTEP1O9Y516421LCE8CEU7V1U71KMZQ38ASIVUV6D19YHS1DNX675BYM07C20FEI6AQAKREPQJDDRZ37AAG01C2A1K2TQJ8Z6MY2VGW51MDA765QUT6PJ1U96JVZAMZ0OGZUDNQL68105YYSKI8OGYNKRQ9LNXWRX8PY5ZC5L79KG251CKG7XP' where id=26; -update noar tt set v0='QKZ3UMFFSK138ITH538YKUOI35AXGMN8XGPO964RMVJSBVQU5ESKNZPVJCI112S76BDX2HNB93FMDP2PA6KEKYM7T7CAXU284MWPC58XTUDGFO20EZDT8Q6U33W5QSQ3KGRF7XNE62N8TLMPZQJSXMRY90P5NVLG3655TGY63T7QFF09OXF4UVJB65PDMYI3429FR0V1PBWCO6R6E3DB1NGM427UPPKL6ENXKEI2AAHLVL2P1EKZHZWTTZ8JR21UF' where id=27; -update noar ti set v0='QKZ3UMFFSK138ITH538YKUOI35AXGMN8XGPO964RMVJSBVQU5ESKNZPVJCI112S76BDX2HNB93FMDP2PA6KEKYM7T7CAXU284MWPC58XTUDGFO20EZDT8Q6U33W5QSQ3KGRF7XNE62N8TLMPZQJSXMRY90P5NVLG3655TGY63T7QFF09OXF4UVJB65PDMYI3429FR0V1PBWCO6R6E3DB1NGM427UPPKL6ENXKEI2AAHLVL2P1EKZHZWTTZ8JR21UF' where id=27; -update noar tt set v1='7MN2QHZPXVOVQJT9SHV3QMOMXWMZLS3M6AX041N90X75KZYN8UNK4VBIA2EZ1FADC0E2AWPRS61FAB080IJFRQ5M6J8LEUYTITAA3QRPS5CEXEZ3BQIQMPD4JNJY8XIM46NV2GMOUO4W1NQ7OYDM2D0HI8NAMSYHJQJH0FFBC1172S5VYQ6Z1VOU0WFAM6WAGLJ25KPK1Q5YUNZJK09B8NLK6HNKY5GPCNFYAGS5GFN2WIWH8ZZ5JLXH2KSSIO9KD' where id=27; -update noar ti set v1='7MN2QHZPXVOVQJT9SHV3QMOMXWMZLS3M6AX041N90X75KZYN8UNK4VBIA2EZ1FADC0E2AWPRS61FAB080IJFRQ5M6J8LEUYTITAA3QRPS5CEXEZ3BQIQMPD4JNJY8XIM46NV2GMOUO4W1NQ7OYDM2D0HI8NAMSYHJQJH0FFBC1172S5VYQ6Z1VOU0WFAM6WAGLJ25KPK1Q5YUNZJK09B8NLK6HNKY5GPCNFYAGS5GFN2WIWH8ZZ5JLXH2KSSIO9KD' where id=27; -update noar tt set v2='SML8WRDMKMUL2UQXZWCZFKSEFR9CIZ47Q5D6X7GOPHZKFY0167QNASXF6MSXWXYFNT2FS575PNR6I6OL4YCFLN1SV5IYJMZWBBJHVEUL1V8BPWRNIKY80J0KQ9N4PAFTO8ZQJ3MFL89U6400MVCEP410A7KPQU4RTTX3OZ7XHN8WJYMTKSP9QLM5PNDVQBVXGAA8B5FMO4PXXIXXSFVNEDZDNAQB4XYTEBLJT933EWAHO4IXDM1FSWCA8DQO0O0SP' where id=27; -update noar ti set v2='SML8WRDMKMUL2UQXZWCZFKSEFR9CIZ47Q5D6X7GOPHZKFY0167QNASXF6MSXWXYFNT2FS575PNR6I6OL4YCFLN1SV5IYJMZWBBJHVEUL1V8BPWRNIKY80J0KQ9N4PAFTO8ZQJ3MFL89U6400MVCEP410A7KPQU4RTTX3OZ7XHN8WJYMTKSP9QLM5PNDVQBVXGAA8B5FMO4PXXIXXSFVNEDZDNAQB4XYTEBLJT933EWAHO4IXDM1FSWCA8DQO0O0SP' where id=27; -update noar tt set v3='IVBDS3VZRB6GHU1K43OYTRCVMV4AA2H9X0J4KIXXA332YPLWT5PKP6U00OAC806XSYP621EF787D9XX0VMN5PF5EK239JH71GNGD6OB7XV7XI0W7AKET1GHA7MLSJROJB8IDMFWBIQFGLNGKO3UULYQJHR6DJ4GGYO4EDQI086NRHRYPE4OI4LNQINA6JFT10H3BMUFWUY3W9QSC316VBF6LMUS8352Z7COHUWRZO6LX13DE1W94KUR08U1PPFFZ6' where id=27; -update noar ti set v3='IVBDS3VZRB6GHU1K43OYTRCVMV4AA2H9X0J4KIXXA332YPLWT5PKP6U00OAC806XSYP621EF787D9XX0VMN5PF5EK239JH71GNGD6OB7XV7XI0W7AKET1GHA7MLSJROJB8IDMFWBIQFGLNGKO3UULYQJHR6DJ4GGYO4EDQI086NRHRYPE4OI4LNQINA6JFT10H3BMUFWUY3W9QSC316VBF6LMUS8352Z7COHUWRZO6LX13DE1W94KUR08U1PPFFZ6' where id=27; -update noar tt set v0='ZKST3LOJ5JHA3RGIMD9WXF2V734DMMHHO34ZAQCFA5LGC8QJJTKVWIVD11ZOK51QB5ZURZ6LYEL171UBWW4MTDZZ4JN4XCU5NIHERVBUR0YFXPWKV0GW7TYX26PEI69RHUO4QU0FE06T4YKF2NJQXX3U8KZ6J19P2EYGZ8IMRN2T18EY219CN9A3R92EZ4HWVZC73GFAG9FX6EY0DD1ZBM8N0YQVJFLM4KZTH9Z39AQ1J1AD4IZOWPF00TZM32RPO' where id=28; -update noar ti set v0='ZKST3LOJ5JHA3RGIMD9WXF2V734DMMHHO34ZAQCFA5LGC8QJJTKVWIVD11ZOK51QB5ZURZ6LYEL171UBWW4MTDZZ4JN4XCU5NIHERVBUR0YFXPWKV0GW7TYX26PEI69RHUO4QU0FE06T4YKF2NJQXX3U8KZ6J19P2EYGZ8IMRN2T18EY219CN9A3R92EZ4HWVZC73GFAG9FX6EY0DD1ZBM8N0YQVJFLM4KZTH9Z39AQ1J1AD4IZOWPF00TZM32RPO' where id=28; -update noar tt set v1='8LH8BNWU4CFBN15JMKI8I0TVJN5EZ4FK9AE8PIPRJ2JOM03E81MEBBY2VG4VGGAIPFO6B1JEAVRQ96PQ8EE4NTT1YUKHXMPE0AHIE16CY0WS2Q9UFZ2ZTNW01MY34EK5QB04GHSJKW9OX5YAKM2PFUWAPEZDT7W16X5SRIOV7ZCDYUU4KGLL5L5HLCZZU60GGW68ZQRM2QBDJGWRTIEYLYHC3T8695R1HE6KAQGA2VDUJKIQTJ0RVXVI3PSDCBQ59' where id=28; -update noar ti set v1='8LH8BNWU4CFBN15JMKI8I0TVJN5EZ4FK9AE8PIPRJ2JOM03E81MEBBY2VG4VGGAIPFO6B1JEAVRQ96PQ8EE4NTT1YUKHXMPE0AHIE16CY0WS2Q9UFZ2ZTNW01MY34EK5QB04GHSJKW9OX5YAKM2PFUWAPEZDT7W16X5SRIOV7ZCDYUU4KGLL5L5HLCZZU60GGW68ZQRM2QBDJGWRTIEYLYHC3T8695R1HE6KAQGA2VDUJKIQTJ0RVXVI3PSDCBQ59' where id=28; -update noar tt set v2='20S46Y0P3AF4JSHJ4Y1J1WAFG71GHGTWUMKCKI6CQAF4V3CFR9XMTJ2YUTTB0ZTU6CLYPUVLYIVE7MRCKJN76BBB1AUK2OX6UASIQ5H47DDK4DJ36B39GQEXECHQZRUKYJUD5UTQ66IXA5STJFGOP2D3AJU8YGAJ1X5L7XGACIVVCYVW6NBFBY9P85UBC6MI9PXQ06VJ0ZS6OFCDY7M1YBURMZBIWFGPRO5J5FH0P8S7G1SD08BA0VIW9JEBRLUUZ' where id=28; -update noar ti set v2='20S46Y0P3AF4JSHJ4Y1J1WAFG71GHGTWUMKCKI6CQAF4V3CFR9XMTJ2YUTTB0ZTU6CLYPUVLYIVE7MRCKJN76BBB1AUK2OX6UASIQ5H47DDK4DJ36B39GQEXECHQZRUKYJUD5UTQ66IXA5STJFGOP2D3AJU8YGAJ1X5L7XGACIVVCYVW6NBFBY9P85UBC6MI9PXQ06VJ0ZS6OFCDY7M1YBURMZBIWFGPRO5J5FH0P8S7G1SD08BA0VIW9JEBRLUUZ' where id=28; -update noar tt set v3='3TY92XYW97URV8JEGZ7VZYTPSX5NJFVNWKO7N18H4A1PMEZ9H69HSS9OB0LPXCOK8VDSRJNTUTXTNUQ2X0OKMLROXOAQ5JN2PNEOAWO2DL3UIX6OT6D2NG29IS393C80640884KNC7MGDHUGD9NOKNMZ4GTRPGO54ZFIN7602MMR00D2ZJ5X04GB0M11GMU9WPRNGZCS8O3GZH6BIBY6CIA6MIA85I5OXLM36LQZZ6MOJ9WMEXPKOQI0BUMYFYE7K' where id=28; -update noar ti set v3='3TY92XYW97URV8JEGZ7VZYTPSX5NJFVNWKO7N18H4A1PMEZ9H69HSS9OB0LPXCOK8VDSRJNTUTXTNUQ2X0OKMLROXOAQ5JN2PNEOAWO2DL3UIX6OT6D2NG29IS393C80640884KNC7MGDHUGD9NOKNMZ4GTRPGO54ZFIN7602MMR00D2ZJ5X04GB0M11GMU9WPRNGZCS8O3GZH6BIBY6CIA6MIA85I5OXLM36LQZZ6MOJ9WMEXPKOQI0BUMYFYE7K' where id=28; -update noar tt set v0='LXV10XHNT0YJOI6VRPXD409C8Y1L7RNWT7IORA4YKF17DLF2XOHXMOHN0LTVGR9AD6ITUBD5VP2T5WQ086OXPMLM9TBAT6BCEWMA722TRLYXOIIJZ372X3MEU62RHS1XENY6IVORRVHMHO8EIHYFZRUKTYAMLRL6CBNUI9C54P1WTSD9RKRLCJZEZX0EP78Z89G5VE63CRMQL55FS2YIF7505LEE93XL7YXK0YIGUH9VK91N76FX3IPG2BO6J8AZ7' where id=29; -update noar ti set v0='LXV10XHNT0YJOI6VRPXD409C8Y1L7RNWT7IORA4YKF17DLF2XOHXMOHN0LTVGR9AD6ITUBD5VP2T5WQ086OXPMLM9TBAT6BCEWMA722TRLYXOIIJZ372X3MEU62RHS1XENY6IVORRVHMHO8EIHYFZRUKTYAMLRL6CBNUI9C54P1WTSD9RKRLCJZEZX0EP78Z89G5VE63CRMQL55FS2YIF7505LEE93XL7YXK0YIGUH9VK91N76FX3IPG2BO6J8AZ7' where id=29; -update noar tt set v1='NV943HMRK7GDPEV2TOCSQC73YEJBGP9PP4ZGFE2POARAMRHKIEGH601L4NFSN86VO4I69JXLDCW36TSPS57M3A52BYRL0ZMH6Z4DJOGKT657SMV3ETMFOYGFZ9IMDRPR06TLUSX4XNQNPH8UB498F40RHSK1U6N2OM0MXHUBC6YR3WZF8WIQXR6AGTOB2GITIQYPY3MZMSSQO854TGCCAQZUCXC5FVGW18P0ZGANH46MK8E6EU7N7K5DWIXYXJMOS' where id=29; -update noar ti set v1='NV943HMRK7GDPEV2TOCSQC73YEJBGP9PP4ZGFE2POARAMRHKIEGH601L4NFSN86VO4I69JXLDCW36TSPS57M3A52BYRL0ZMH6Z4DJOGKT657SMV3ETMFOYGFZ9IMDRPR06TLUSX4XNQNPH8UB498F40RHSK1U6N2OM0MXHUBC6YR3WZF8WIQXR6AGTOB2GITIQYPY3MZMSSQO854TGCCAQZUCXC5FVGW18P0ZGANH46MK8E6EU7N7K5DWIXYXJMOS' where id=29; -update noar tt set v2='PMHHSQ67C3G8HKF90KIFQO6CUH78Y1LLJTARWTASXPIKMKWQ4B20GXDLO7D5YS1FTY6HHAMNLMHPR9Z31HWFY0ON5OR9UBJ1KSLU8SJTE8IFJTKL9TPCLS51NFLEE9TH1OTHC0UTACRMMRIMT1MRSU6FWO2D5H0AI7A84XNEGWS9FPB59FM0AYN5DREW8ONKQRQELP9AYKR2NL560GCNN1BU5LPXKYBS05PYF0DSQ4HNRFTXN40KLQNFPZYP7DDDD' where id=29; -update noar ti set v2='PMHHSQ67C3G8HKF90KIFQO6CUH78Y1LLJTARWTASXPIKMKWQ4B20GXDLO7D5YS1FTY6HHAMNLMHPR9Z31HWFY0ON5OR9UBJ1KSLU8SJTE8IFJTKL9TPCLS51NFLEE9TH1OTHC0UTACRMMRIMT1MRSU6FWO2D5H0AI7A84XNEGWS9FPB59FM0AYN5DREW8ONKQRQELP9AYKR2NL560GCNN1BU5LPXKYBS05PYF0DSQ4HNRFTXN40KLQNFPZYP7DDDD' where id=29; -update noar tt set v3='H1PWAJRJNZU6I983OO5MBSKK5RP12E56OBNEITZY57X8J11UJBURER9ZI670C9T2N21G3IBPBA7IC1106LSEWWQ90FHS6816ENTDCWP1D3JAY9E4Q33TVE0IX681NRIHW0TA4EB8Q8BSR5QZZG96I0UON6D9QN1EM4WHSNQ0LUVXA194KPGGNKHKZOYEM0C407MNOZ65CTSEU88HUYK5PWGIKDW9XHRNW4LGY9I1TQ1DJUGNMA1DV4CI40PYYZPWS' where id=29; -update noar ti set v3='H1PWAJRJNZU6I983OO5MBSKK5RP12E56OBNEITZY57X8J11UJBURER9ZI670C9T2N21G3IBPBA7IC1106LSEWWQ90FHS6816ENTDCWP1D3JAY9E4Q33TVE0IX681NRIHW0TA4EB8Q8BSR5QZZG96I0UON6D9QN1EM4WHSNQ0LUVXA194KPGGNKHKZOYEM0C407MNOZ65CTSEU88HUYK5PWGIKDW9XHRNW4LGY9I1TQ1DJUGNMA1DV4CI40PYYZPWS' where id=29; -update noar tt set v0='AU0OXSWA6CDQ8V1RJ6ZGW8B1QNXOTKM0WRWHR5DBNO4BK9E2SISOJLVM5EPPKPPJVEQ4DJ4UATRNQ810C300GIRJ64VTJCHA08NOROZMDUKWUV38Q1ZF9KDM3YN6ZLVT7T7G07GDHS60SAWRCY2ZKE60CISNFPNF8ACT9MF648752NWBNHATVAJGF62A1CFKF6VMVYB1XSWYFFSQV8XUYYRO0LW915U8Y3R25L70Q9YGC0NE86CJAJ70NFOO7ZS80' where id=30; -update noar ti set v0='AU0OXSWA6CDQ8V1RJ6ZGW8B1QNXOTKM0WRWHR5DBNO4BK9E2SISOJLVM5EPPKPPJVEQ4DJ4UATRNQ810C300GIRJ64VTJCHA08NOROZMDUKWUV38Q1ZF9KDM3YN6ZLVT7T7G07GDHS60SAWRCY2ZKE60CISNFPNF8ACT9MF648752NWBNHATVAJGF62A1CFKF6VMVYB1XSWYFFSQV8XUYYRO0LW915U8Y3R25L70Q9YGC0NE86CJAJ70NFOO7ZS80' where id=30; -update noar tt set v1='1DAJTFC8QKQ4THZVMCOY89H4T478NBAQY4ZFQZO4FRXZXL7OHAF1SQ6CI8V6H3ORQUVV4S0KBWHTIK7YCW9OO8P78JJA9CE87AH91PGBUW28XZVPHANUW6O3ERBS7VAM1LJASWPL6C09BEKZAYPAE1I6Y8IDVQKDFCOI09K1AABG6RWCJ67JAKH9A9UN5WW2QGVWUC6TEPQJ7RM4696GUTPDY9XVCLA54LTIOYPII2H3VQOT8ACV1ZPTAKZ8KFIA0' where id=30; -update noar ti set v1='1DAJTFC8QKQ4THZVMCOY89H4T478NBAQY4ZFQZO4FRXZXL7OHAF1SQ6CI8V6H3ORQUVV4S0KBWHTIK7YCW9OO8P78JJA9CE87AH91PGBUW28XZVPHANUW6O3ERBS7VAM1LJASWPL6C09BEKZAYPAE1I6Y8IDVQKDFCOI09K1AABG6RWCJ67JAKH9A9UN5WW2QGVWUC6TEPQJ7RM4696GUTPDY9XVCLA54LTIOYPII2H3VQOT8ACV1ZPTAKZ8KFIA0' where id=30; -update noar tt set v2='8E200MO7QMM0QU7RINIKZSR8JLZRUSZ82C0H2LOSQLQZ4Z40B863GQTNVEG1KR1PV6B9RTQ9WR9A0B5A5FMXK8ZMJBHJQFHLPMH1Z99PMGXAGQXU5W1PYTMRAM9MKMPTRQTVQGN8QNI4RHT5PIHNB05G3EUZ3TNJYHP407TZIVUK818J4ILMREQV28Q2ED9ZL28BFBXG1A6C6RASFV1PZESAONRUHDFNUT2OIQQ2OAU0FI1HNKI4BR91Z5Z5S7KH3' where id=30; -update noar ti set v2='8E200MO7QMM0QU7RINIKZSR8JLZRUSZ82C0H2LOSQLQZ4Z40B863GQTNVEG1KR1PV6B9RTQ9WR9A0B5A5FMXK8ZMJBHJQFHLPMH1Z99PMGXAGQXU5W1PYTMRAM9MKMPTRQTVQGN8QNI4RHT5PIHNB05G3EUZ3TNJYHP407TZIVUK818J4ILMREQV28Q2ED9ZL28BFBXG1A6C6RASFV1PZESAONRUHDFNUT2OIQQ2OAU0FI1HNKI4BR91Z5Z5S7KH3' where id=30; -update noar tt set v3='JED4CKSYO2GZUIJUGG5XU4HDCRXP6ZA0WFHNVK7COPDDB3B80GKCFT0TNXX2W0R8EJJO9WSG6WDCV76QAQ6OELSN88SBETG3SIHK740NIOE0L1ZIGBF1C5WZXDTQSKYYI8DFT0OPTOLGQWPEFVHMLT9JS1CE4S4FSJAC6FCUB3EJ67WX5DA8RYWNOQML1EGK5BZMAR4KN0V3ENGZBMPV5LX6SKXILRR6IBRKEA5UUD661GTQD0PUL8V5SA2NEG73B' where id=30; -update noar ti set v3='JED4CKSYO2GZUIJUGG5XU4HDCRXP6ZA0WFHNVK7COPDDB3B80GKCFT0TNXX2W0R8EJJO9WSG6WDCV76QAQ6OELSN88SBETG3SIHK740NIOE0L1ZIGBF1C5WZXDTQSKYYI8DFT0OPTOLGQWPEFVHMLT9JS1CE4S4FSJAC6FCUB3EJ67WX5DA8RYWNOQML1EGK5BZMAR4KN0V3ENGZBMPV5LX6SKXILRR6IBRKEA5UUD661GTQD0PUL8V5SA2NEG73B' where id=30; -update noar tt set v0='ICP5WMQ659GOI17Y5APP1MNR6K0GWALYF598VA5YBTI8LQBVVOAI9W5EHBVXGQV3X370YHXXFMK8VKU3B9LDVV4EBDIQMMT6FB6QXAQLUM5H8XRMKW0BPDT4R2USR2QGAIF13684E0LJJ0BFCQQPG9R169MIJHOJQP7SFB1SL1PXB8X12UPPPPZQFEV64Q2WKXH7YW5ZW42SCMQUZWSHKCX4ABZXA2J1NYHL3ESAFT01TSLSH6ZO2NWFMZK10XCP9' where id=31; -update noar ti set v0='ICP5WMQ659GOI17Y5APP1MNR6K0GWALYF598VA5YBTI8LQBVVOAI9W5EHBVXGQV3X370YHXXFMK8VKU3B9LDVV4EBDIQMMT6FB6QXAQLUM5H8XRMKW0BPDT4R2USR2QGAIF13684E0LJJ0BFCQQPG9R169MIJHOJQP7SFB1SL1PXB8X12UPPPPZQFEV64Q2WKXH7YW5ZW42SCMQUZWSHKCX4ABZXA2J1NYHL3ESAFT01TSLSH6ZO2NWFMZK10XCP9' where id=31; -update noar tt set v1='KTZGNSEXC1MQTS1B164LERUQ45C9WURO7YKNZTDL58G0ENKJ1SEK4WC2JVHWTWSSCK6X35G793AB88TJLSFD27DHNXESEBMBIZNGIX7IU2SUSGHY1FT30AMQ2QFLMTHED46759UMKL7RKCLH095S0VQUIGRRV92QH09BGVRKTCXN1VLXT905ICW8R8UJIXT46FEA14VZC56BCTYRQ9CP9LQP1XR8L19ZRC38ZLM4H8DXFZ4UJYU4DZ2UE65F5IIAF' where id=31; -update noar ti set v1='KTZGNSEXC1MQTS1B164LERUQ45C9WURO7YKNZTDL58G0ENKJ1SEK4WC2JVHWTWSSCK6X35G793AB88TJLSFD27DHNXESEBMBIZNGIX7IU2SUSGHY1FT30AMQ2QFLMTHED46759UMKL7RKCLH095S0VQUIGRRV92QH09BGVRKTCXN1VLXT905ICW8R8UJIXT46FEA14VZC56BCTYRQ9CP9LQP1XR8L19ZRC38ZLM4H8DXFZ4UJYU4DZ2UE65F5IIAF' where id=31; -update noar tt set v2='F43ZYNJVWZZVA4N0WAG6L1A0X9DIWK6T76HKQR76AYWQK8Q8PCWTCW1RUGCW2AHNU4FXBS2KMUUVHH4LOUI6Y24OE1GKWE5LQI3DPODPJOJIHN2U3EUOK6YX7EZJNC9PIBU4PD4JMD22BJA8YVJ1I10BX814RH8JFXA8VMOUYO512N3UFTCZTXAB0U15E8WKEZIJ4DA7CI66H6ZMPGW6BMZA8HHQBMF20EJZ48TPECAC7TR8IJ9B4FNXYCL331BNT' where id=31; -update noar ti set v2='F43ZYNJVWZZVA4N0WAG6L1A0X9DIWK6T76HKQR76AYWQK8Q8PCWTCW1RUGCW2AHNU4FXBS2KMUUVHH4LOUI6Y24OE1GKWE5LQI3DPODPJOJIHN2U3EUOK6YX7EZJNC9PIBU4PD4JMD22BJA8YVJ1I10BX814RH8JFXA8VMOUYO512N3UFTCZTXAB0U15E8WKEZIJ4DA7CI66H6ZMPGW6BMZA8HHQBMF20EJZ48TPECAC7TR8IJ9B4FNXYCL331BNT' where id=31; -update noar tt set v3='EAJN8CNKSUEXYCFDES83SR207HQ02S41N3KQLC6WII2ZT28I2MYKKRYBM8WVKD5KXU3TADL4W6IRPJTT2SI35BDQ58GS6UO7NGMXUX4FAH80VCW55TFQ54F4WJ6RU5VSHE6ZEBNRALOEDBKTLTXGPWO03YIDA7L46K7ED41PSD0AMFSSDIKCZWKJQLNC5L7T49V4OOH7C4FN6XVH9K260YY24ZMUQSW44DM3C4R1V0J131CWB44EINNY6WKRCL5AR' where id=31; -update noar ti set v3='EAJN8CNKSUEXYCFDES83SR207HQ02S41N3KQLC6WII2ZT28I2MYKKRYBM8WVKD5KXU3TADL4W6IRPJTT2SI35BDQ58GS6UO7NGMXUX4FAH80VCW55TFQ54F4WJ6RU5VSHE6ZEBNRALOEDBKTLTXGPWO03YIDA7L46K7ED41PSD0AMFSSDIKCZWKJQLNC5L7T49V4OOH7C4FN6XVH9K260YY24ZMUQSW44DM3C4R1V0J131CWB44EINNY6WKRCL5AR' where id=31; -update noar tt set v0='WSP3ZJWDVQ5XACQ0P7XB9I46MV3A487A2E624QPDDZYAQXPILCV54NOV6YCD6T6141T1JOC8NIPP080LO2IRC9PI6UGAIEUE1LJCJP9FSJ4Z5391MSNOYIXYLCH0114JG45DAAOEVDW10GIWYITGCU4VO1PZM9ELSZJ453XRZ261CPMLZF8GB4JRD4IBL7ZY3R4PSYKQH4BUG1S7STRVO50LMNSOA5H72X9QIOWZZ1GAYWJC6MN8P4HNSXR3XAFNW' where id=32; -update noar ti set v0='WSP3ZJWDVQ5XACQ0P7XB9I46MV3A487A2E624QPDDZYAQXPILCV54NOV6YCD6T6141T1JOC8NIPP080LO2IRC9PI6UGAIEUE1LJCJP9FSJ4Z5391MSNOYIXYLCH0114JG45DAAOEVDW10GIWYITGCU4VO1PZM9ELSZJ453XRZ261CPMLZF8GB4JRD4IBL7ZY3R4PSYKQH4BUG1S7STRVO50LMNSOA5H72X9QIOWZZ1GAYWJC6MN8P4HNSXR3XAFNW' where id=32; -update noar tt set v1='OZM5W0R94MQT5WE47OFXW8G2P0UXLBMRPGZ1159FXXEMK9VKODLWTCLHLJIPBRHR1CYPLXINTEM9SWXP34BT1JWM1X1T6IGGDWF11M59S01ELAWHT31E4CXFNLTCWWKYGESFBTA7PZSUMIPTU5PNE9C7THWMC1ZSXBCEFGJKJBA73Z055M2Z79OUV2P8REMV0G40BKLSWBJ1YJLO9KJVJFSI7BORCGMQEUGFA277QXT978W8JZ3F6F73L65IA1QW5' where id=32; -update noar ti set v1='OZM5W0R94MQT5WE47OFXW8G2P0UXLBMRPGZ1159FXXEMK9VKODLWTCLHLJIPBRHR1CYPLXINTEM9SWXP34BT1JWM1X1T6IGGDWF11M59S01ELAWHT31E4CXFNLTCWWKYGESFBTA7PZSUMIPTU5PNE9C7THWMC1ZSXBCEFGJKJBA73Z055M2Z79OUV2P8REMV0G40BKLSWBJ1YJLO9KJVJFSI7BORCGMQEUGFA277QXT978W8JZ3F6F73L65IA1QW5' where id=32; -update noar tt set v2='F4FCMAVRQ64ESYF7UXYLP6TPJN8KW57KQVMR97SBV796S8501INZ8GRKRYIONAEAWO85V94I3RQ5WJHFWGY6TDPRJ31HGIGN2RIZSIMEASFT8BQCVXUROGRAVDYVGRMDI8GUM5THQ3VEAZT4OMB5VHRGLGOU70FRGJ3WOA6LOROWGQE44D2TP8F000SXT482NNMKS5N25L40EBVUO7VLX6PX92KXZXFBQMS00JGP0ZSJL9S5NAE97YAHR3IQK2B49' where id=32; -update noar ti set v2='F4FCMAVRQ64ESYF7UXYLP6TPJN8KW57KQVMR97SBV796S8501INZ8GRKRYIONAEAWO85V94I3RQ5WJHFWGY6TDPRJ31HGIGN2RIZSIMEASFT8BQCVXUROGRAVDYVGRMDI8GUM5THQ3VEAZT4OMB5VHRGLGOU70FRGJ3WOA6LOROWGQE44D2TP8F000SXT482NNMKS5N25L40EBVUO7VLX6PX92KXZXFBQMS00JGP0ZSJL9S5NAE97YAHR3IQK2B49' where id=32; -update noar tt set v3='V0BL5PB096CUSXLGO3NAH6GL79WZM9CLQX0GJRP0PSTMX6T8BSNMYCJWWGJ5IMIMR9HF75YRGC63I3ZIUQYMT44C3JH09V2A5B2RMV107F85F1GPTB8EAOL4P8WD3TDEI4LELY6FY3EN66ZJCDJVPUARGAQV4O8UCEPT9MXD8WP5XCOFA7X18E51OBKVN4RLACY4Y7RK1RCTI95L7K1GI5DL00P2R4DYNKT2QGFAUSII64FY5ZZC1T1VHMCZAQ8FW' where id=32; -update noar ti set v3='V0BL5PB096CUSXLGO3NAH6GL79WZM9CLQX0GJRP0PSTMX6T8BSNMYCJWWGJ5IMIMR9HF75YRGC63I3ZIUQYMT44C3JH09V2A5B2RMV107F85F1GPTB8EAOL4P8WD3TDEI4LELY6FY3EN66ZJCDJVPUARGAQV4O8UCEPT9MXD8WP5XCOFA7X18E51OBKVN4RLACY4Y7RK1RCTI95L7K1GI5DL00P2R4DYNKT2QGFAUSII64FY5ZZC1T1VHMCZAQ8FW' where id=32; -update noar tt set v0='SMJCJ2I7BYD5ME648PESRGRNDAYLOF0AS1KEDGEGVK53QU0H1YZEVKYOFSMDD47NW277BIEIAGU9KVMIMUPBBV6MFHQTXT39FDSY3EEN0BT1TQ5JQGGT25XOQXENATG424XQ2ADICJZVA6OGQ6UE42ZJEE7MG7T6TVNXNX4ASSER6DTN4F77703UECIGDU1U8556WDHZEOUKB8RDD1WEDMUGVDK2LO9IP8Q41S0RXLFWL9TGVEA8WV7KQFGHFJFO8' where id=33; -update noar ti set v0='SMJCJ2I7BYD5ME648PESRGRNDAYLOF0AS1KEDGEGVK53QU0H1YZEVKYOFSMDD47NW277BIEIAGU9KVMIMUPBBV6MFHQTXT39FDSY3EEN0BT1TQ5JQGGT25XOQXENATG424XQ2ADICJZVA6OGQ6UE42ZJEE7MG7T6TVNXNX4ASSER6DTN4F77703UECIGDU1U8556WDHZEOUKB8RDD1WEDMUGVDK2LO9IP8Q41S0RXLFWL9TGVEA8WV7KQFGHFJFO8' where id=33; -update noar tt set v1='Z5E0TKVJXTVWLMXLOSWPMNI2S4OEQDTYSE8KZ6KLV2HY6BAEYUQTES81KH1QWKO7NP7GE5CWDZRFIO16Z1AIXSREFCOI5BCA791J2XI6USUZRAJA7IAEYEPXV9UZ4VRRQ2IWRAHJ03S0HUGPNXWKWY5OLPQ2C1JO12VMB8B983V9BXM84IHI8P3GTZ49455TYPBCJ2RLEBEAWONG6C9OHHEU6XA0J65LFD3FWP6Y3AQ2V1BUVKQG85IH1T54KOIOL' where id=33; -update noar ti set v1='Z5E0TKVJXTVWLMXLOSWPMNI2S4OEQDTYSE8KZ6KLV2HY6BAEYUQTES81KH1QWKO7NP7GE5CWDZRFIO16Z1AIXSREFCOI5BCA791J2XI6USUZRAJA7IAEYEPXV9UZ4VRRQ2IWRAHJ03S0HUGPNXWKWY5OLPQ2C1JO12VMB8B983V9BXM84IHI8P3GTZ49455TYPBCJ2RLEBEAWONG6C9OHHEU6XA0J65LFD3FWP6Y3AQ2V1BUVKQG85IH1T54KOIOL' where id=33; -update noar tt set v2='RI82AQZSNG5COFOSA2TEAJPELHLYTP83M01TZQ0H9LXFQF8NTNFYYC5XJZG5WPRG2BZ305FSKGW1SR8GWH7QW9TXYVGGSW5APS14QQIC5BCVKDM49Y6HW32Q0P76LNONUZEU4514ZMLPUUP98LZ5UE72WC4XXOD5VXFT9ZS2TGLIZKZQTDMFMIM0DL9PA54X4VZXT3HKGB3X21JQ1AG62HH764UPXVOORA8VW7B7BMY1GGET59JCXTB3YY96ADV10' where id=33; -update noar ti set v2='RI82AQZSNG5COFOSA2TEAJPELHLYTP83M01TZQ0H9LXFQF8NTNFYYC5XJZG5WPRG2BZ305FSKGW1SR8GWH7QW9TXYVGGSW5APS14QQIC5BCVKDM49Y6HW32Q0P76LNONUZEU4514ZMLPUUP98LZ5UE72WC4XXOD5VXFT9ZS2TGLIZKZQTDMFMIM0DL9PA54X4VZXT3HKGB3X21JQ1AG62HH764UPXVOORA8VW7B7BMY1GGET59JCXTB3YY96ADV10' where id=33; -update noar tt set v3='D2TIOP7HZ8XI9MKCCUCB6I0WY905H1GUXYR3PW5OQK0JZL1Y6EPO87PWGFWITHT57W3X9KUU9IJME6BPQTWBXEPWZ9RX7OESNJKSTIS50AYGPKK3KB2YE6N5Q6MDMXNVGUNHPRDHZ3V3MWWKLZJ8V4HE42MGXD1GPS6PXLNZ6VS39L4P28SCI6840Z7C3XZ323D34ZB1FSQA2L8DXBQQE7PEK15SWAQIKKY1DYJCTCWM773JZLFWB4F99SZQW7V6X' where id=33; -update noar ti set v3='D2TIOP7HZ8XI9MKCCUCB6I0WY905H1GUXYR3PW5OQK0JZL1Y6EPO87PWGFWITHT57W3X9KUU9IJME6BPQTWBXEPWZ9RX7OESNJKSTIS50AYGPKK3KB2YE6N5Q6MDMXNVGUNHPRDHZ3V3MWWKLZJ8V4HE42MGXD1GPS6PXLNZ6VS39L4P28SCI6840Z7C3XZ323D34ZB1FSQA2L8DXBQQE7PEK15SWAQIKKY1DYJCTCWM773JZLFWB4F99SZQW7V6X' where id=33; -update noar tt set v0='CEVPGTNI2AM3CB7BQZ1E68PN3EXOD1LAJRY9PYB9K52MWDPR3O0AIFZ00K76UM0ADJOIH4GT4ONL1ES09U2JSDJMRB4K6F29I1W8G41LZ03JU86HRDYALSPBB3Q7BKFYPW0XUB9KX40QXQ2LQH5RV4D2VBZG7YNLLJRZGWAEMZOML3CC2FPKUN2K76U1TMZD0SE1N17KS78CCAKS8EVDUW0L72VYPM8VGPXNHMK9OQYP6RD22B5SXW1EFX7OKOO6W' where id=34; -update noar ti set v0='CEVPGTNI2AM3CB7BQZ1E68PN3EXOD1LAJRY9PYB9K52MWDPR3O0AIFZ00K76UM0ADJOIH4GT4ONL1ES09U2JSDJMRB4K6F29I1W8G41LZ03JU86HRDYALSPBB3Q7BKFYPW0XUB9KX40QXQ2LQH5RV4D2VBZG7YNLLJRZGWAEMZOML3CC2FPKUN2K76U1TMZD0SE1N17KS78CCAKS8EVDUW0L72VYPM8VGPXNHMK9OQYP6RD22B5SXW1EFX7OKOO6W' where id=34; -update noar tt set v1='KLY7XAXSCG1PRGYEV2F4CNS74QOZ1HOZ1RZKR5PAQCBKFOG9QGZ4K7CGEYXCDVRFLR08ISL6O0LCE1DHFR6D0RZQ33M8KIIYYAJIQBIFX0SHSXCT998FZ3Y8QBKKSERX39YNTXPL2MKYRNTILEGKJEZXITPGNNNSYGGDUKX67VQLELXMX5V9GGKC6UJPJRV6N2X1U9QHM4ZBG5WHRTDS64NOKNG0HA2B3EYDXM3LT3M0TRGUGVLR3Y8XZWSNMYD2K' where id=34; -update noar ti set v1='KLY7XAXSCG1PRGYEV2F4CNS74QOZ1HOZ1RZKR5PAQCBKFOG9QGZ4K7CGEYXCDVRFLR08ISL6O0LCE1DHFR6D0RZQ33M8KIIYYAJIQBIFX0SHSXCT998FZ3Y8QBKKSERX39YNTXPL2MKYRNTILEGKJEZXITPGNNNSYGGDUKX67VQLELXMX5V9GGKC6UJPJRV6N2X1U9QHM4ZBG5WHRTDS64NOKNG0HA2B3EYDXM3LT3M0TRGUGVLR3Y8XZWSNMYD2K' where id=34; -update noar tt set v2='TASF19WZC6DOXCQELE13CAMAHCSVM2B62WERVP3OURCLITH5HP4B4Q2XMFBTV40ZIJT2NQK6G7D8YGNI7KRAVKVUDUSWYQTZUTCLCPAGXGS9WVOBJ5ZOACE3I372LMPGQ4UJTBIVZ2A6L553NQBEYN3F2PZZYXRBA9QVQOIU30ANQTH7Y8KTNYSD3DGO61CY8E2QAZYTQ2Z8GCSSIUU4DWJ5WREQRG63UAX58M5UAYGD7D6OEYVL1NGTQ4HZAWLC1' where id=34; -update noar ti set v2='TASF19WZC6DOXCQELE13CAMAHCSVM2B62WERVP3OURCLITH5HP4B4Q2XMFBTV40ZIJT2NQK6G7D8YGNI7KRAVKVUDUSWYQTZUTCLCPAGXGS9WVOBJ5ZOACE3I372LMPGQ4UJTBIVZ2A6L553NQBEYN3F2PZZYXRBA9QVQOIU30ANQTH7Y8KTNYSD3DGO61CY8E2QAZYTQ2Z8GCSSIUU4DWJ5WREQRG63UAX58M5UAYGD7D6OEYVL1NGTQ4HZAWLC1' where id=34; -update noar tt set v3='YSLWBTDMP4WO0IA84PRKYCUHTS78YHBPADLG8VQ02INCMYTES60W2K2813RP0DZ4NZYHL9BFPGM1Q1XSAEAA1GOI1P5OV1A749XNRQV0UFXKDWJU3UCK4IKVUX15CRMJRYFMH4I38KA16MAU092L3QJQNADKF2QRTGNWZ8VDHTMCW5WWV0TXT3UK1VMH2LVI8MUFTL51U6975IBKC4FA8LELUFJUXXWTO6LH5GAONH1PBMB3475M1RK3DDQCSNKZZ' where id=34; -update noar ti set v3='YSLWBTDMP4WO0IA84PRKYCUHTS78YHBPADLG8VQ02INCMYTES60W2K2813RP0DZ4NZYHL9BFPGM1Q1XSAEAA1GOI1P5OV1A749XNRQV0UFXKDWJU3UCK4IKVUX15CRMJRYFMH4I38KA16MAU092L3QJQNADKF2QRTGNWZ8VDHTMCW5WWV0TXT3UK1VMH2LVI8MUFTL51U6975IBKC4FA8LELUFJUXXWTO6LH5GAONH1PBMB3475M1RK3DDQCSNKZZ' where id=34; -update noar tt set v0='9Z2WWYVQAO54OROWEGFS1JAQBES4KLXDLOF8LXVPZ17QZMMTUXSRNTGL8GVJO2MWPBZD9CJAY7UK9IL4U4VFGE5FMDMT2YDVA1N8MCCBJL9U0WSUABMK927LBRHTD5RKT1O08AIIL6SMN6J7A1AFW92B7AKKIHWFLVKKP4AHG8RB9S9T0LMBL99CB62L0EQ4FAPUKDCCNBSM0V46DT8YO9YMZLAXB63QAGR3FKMF45DPJRZM62YQ0EBY59RVNJOLD' where id=35; -update noar ti set v0='9Z2WWYVQAO54OROWEGFS1JAQBES4KLXDLOF8LXVPZ17QZMMTUXSRNTGL8GVJO2MWPBZD9CJAY7UK9IL4U4VFGE5FMDMT2YDVA1N8MCCBJL9U0WSUABMK927LBRHTD5RKT1O08AIIL6SMN6J7A1AFW92B7AKKIHWFLVKKP4AHG8RB9S9T0LMBL99CB62L0EQ4FAPUKDCCNBSM0V46DT8YO9YMZLAXB63QAGR3FKMF45DPJRZM62YQ0EBY59RVNJOLD' where id=35; -update noar tt set v1='04ZO67E1SQKCWA18NIMQELK7GMD212AM2KPOUWINLA66A17D66SKOFLS1EPZ2EDBPGEC3WDHRCK59L7F9OFG71736IJ4CY4JOBP3ERDXB7XZGMCT0OV70TYGTWKLPYXRFBI8YBZ5YWA7KWSHQVE2ZQCT9FFYMYN68PT8QXIEA4IW9DXA2C0AEOENEG5UZLM9H13P4H71ATAHATJ5J4JSDAFAQWRJWIEH6Q2IF1UC552NQRFDRITIIBJW1C9JSGKH8' where id=35; -update noar ti set v1='04ZO67E1SQKCWA18NIMQELK7GMD212AM2KPOUWINLA66A17D66SKOFLS1EPZ2EDBPGEC3WDHRCK59L7F9OFG71736IJ4CY4JOBP3ERDXB7XZGMCT0OV70TYGTWKLPYXRFBI8YBZ5YWA7KWSHQVE2ZQCT9FFYMYN68PT8QXIEA4IW9DXA2C0AEOENEG5UZLM9H13P4H71ATAHATJ5J4JSDAFAQWRJWIEH6Q2IF1UC552NQRFDRITIIBJW1C9JSGKH8' where id=35; -update noar tt set v2='QAJHN7HVJM4MMZQD2A8MJ9FYRAD6U2S29U5DKF1B1P8J8XJOA0KSD0VYH4EF6GBN5DDLX3WLCCVJLEE3RAFE771CDVUF8EEARH1403WADOO5Q27Y7MB0Z5O94RTVN7F4DH75WWOVZ9ZJ7ZB4QIMADYAHBHOCQO3T968ZDOZH2NW2GPRS38LMGMWO824VZV19TV1J78IH1V27AJ5S78UTE03X58K5AH9VCX2WATUESM25IU0NX9AC9S5B32GQEV4DH' where id=35; -update noar ti set v2='QAJHN7HVJM4MMZQD2A8MJ9FYRAD6U2S29U5DKF1B1P8J8XJOA0KSD0VYH4EF6GBN5DDLX3WLCCVJLEE3RAFE771CDVUF8EEARH1403WADOO5Q27Y7MB0Z5O94RTVN7F4DH75WWOVZ9ZJ7ZB4QIMADYAHBHOCQO3T968ZDOZH2NW2GPRS38LMGMWO824VZV19TV1J78IH1V27AJ5S78UTE03X58K5AH9VCX2WATUESM25IU0NX9AC9S5B32GQEV4DH' where id=35; -update noar tt set v3='7YF1UUXIU98TX1QII3SE0054PWLELT3IQDFXZZD02IVY4HY5T6JKHR2CDF372IUUYV90F0IZI6K2IDC7BBBON4XGH4GS8T44F2HJWNZBFT7U2VONSOG8A4A9C690BG8WL54F8JY4GBCJQFM8SQBNJ0IWJO8CB17391QLSY7E3HC7U2P2Y7JNW47XCJ4XNP9XUKAHE4UAEGXIP1EBPG2CA0V432KJ5JAAYGUJEFS9B3UHTT907OWDJCJBJ2STVV419' where id=35; -update noar ti set v3='7YF1UUXIU98TX1QII3SE0054PWLELT3IQDFXZZD02IVY4HY5T6JKHR2CDF372IUUYV90F0IZI6K2IDC7BBBON4XGH4GS8T44F2HJWNZBFT7U2VONSOG8A4A9C690BG8WL54F8JY4GBCJQFM8SQBNJ0IWJO8CB17391QLSY7E3HC7U2P2Y7JNW47XCJ4XNP9XUKAHE4UAEGXIP1EBPG2CA0V432KJ5JAAYGUJEFS9B3UHTT907OWDJCJBJ2STVV419' where id=35; -update noar tt set v0='ZWTE34UL3W26PGM53MOG1JMLSBSP9WALLI7NFY97O95LPDQ7FWT0T5KYL81Y9WREZD8S3SNQV53ROL3365CVCKRIHE2EUQIEU2T4JTFPBAWPUP8HHQBBYHVGN8YG7MQ0WKLSDMQOMS4S0ZNH2UHTKSDMN03N4WGYUZH85EI81W7E9N7ZHDAQA4MT3XGPGN5KQR1PDKXUXMESSNOC89GFL9TFPN263VDU7WEW1AK9VC9YZXZ61O6H1QSGGEZTYOZ3O' where id=36; -update noar ti set v0='ZWTE34UL3W26PGM53MOG1JMLSBSP9WALLI7NFY97O95LPDQ7FWT0T5KYL81Y9WREZD8S3SNQV53ROL3365CVCKRIHE2EUQIEU2T4JTFPBAWPUP8HHQBBYHVGN8YG7MQ0WKLSDMQOMS4S0ZNH2UHTKSDMN03N4WGYUZH85EI81W7E9N7ZHDAQA4MT3XGPGN5KQR1PDKXUXMESSNOC89GFL9TFPN263VDU7WEW1AK9VC9YZXZ61O6H1QSGGEZTYOZ3O' where id=36; -update noar tt set v1='DB8LWOYT1Q02Z5OY1M5WHNPB1858O29EIHLA3BBAN5AUPEPG4YJCLCY9S6O10URWRV7XQQVLWMHVZWCKDCMJOVH5AORUOP37GO9VHYPA2VI7YS72W28X9P5XGIQBZZK4L5CHF2NMCBNRZIWIHTI9FSBH96W0V37SVXBZ9FJU75OCSOFJ8FBP7PSUNK0DNOKJSEJ1U3J18A1WNP8KHVQUTBQYEREHLLJ2I5G9V0Z8AWQUYD836HCE4HGPPEJS24N67' where id=36; -update noar ti set v1='DB8LWOYT1Q02Z5OY1M5WHNPB1858O29EIHLA3BBAN5AUPEPG4YJCLCY9S6O10URWRV7XQQVLWMHVZWCKDCMJOVH5AORUOP37GO9VHYPA2VI7YS72W28X9P5XGIQBZZK4L5CHF2NMCBNRZIWIHTI9FSBH96W0V37SVXBZ9FJU75OCSOFJ8FBP7PSUNK0DNOKJSEJ1U3J18A1WNP8KHVQUTBQYEREHLLJ2I5G9V0Z8AWQUYD836HCE4HGPPEJS24N67' where id=36; -update noar tt set v2='3RN6SO2MKI9QEO7D720Y4XYG98XAV7EJ74VHK4GKGIT5BTFQXTC5FCKM9K3WSSR5LZ0PKUDNPB1H1PXLGPO7CPJNHCJZJQT4R59M3L3716DSKPTEF2F8C6B56YO1L51VKTQ3D11REDDDNJO7VAQAJ8AFTAU3ELS0J4W00D98IAKK6P72W5HES28002EDN08RWY8H2GZAK1KPAMNEKDAVPHSIB23QBHQSHRVXNHTVSGQFOEK68X9P3UCDAWW5GPD2P' where id=36; -update noar ti set v2='3RN6SO2MKI9QEO7D720Y4XYG98XAV7EJ74VHK4GKGIT5BTFQXTC5FCKM9K3WSSR5LZ0PKUDNPB1H1PXLGPO7CPJNHCJZJQT4R59M3L3716DSKPTEF2F8C6B56YO1L51VKTQ3D11REDDDNJO7VAQAJ8AFTAU3ELS0J4W00D98IAKK6P72W5HES28002EDN08RWY8H2GZAK1KPAMNEKDAVPHSIB23QBHQSHRVXNHTVSGQFOEK68X9P3UCDAWW5GPD2P' where id=36; -update noar tt set v3='Y7WMCEAE241842NRD0G9QB4G0AECXE2XJBVYQANEMUBXE4GT1THUEK6RZW0LBD3XDKQU2I3Z4DCKN8HJBT9N91YGKFQVEXW689RSFH8FS29NOGTZC8T03QN8M0R9EHESKISGYRCD6AZ0FF5FC6B1KYXN156Z4IOMY65FDSLNV0XLROTCAFP7CH8MOF0TI6JITWVR3XLWCX4LPHJGR7CTPY8NI9Q9PCE0X1P5EDHO8PJYHDYELJUCTYMNEJJP1ANDR' where id=36; -update noar ti set v3='Y7WMCEAE241842NRD0G9QB4G0AECXE2XJBVYQANEMUBXE4GT1THUEK6RZW0LBD3XDKQU2I3Z4DCKN8HJBT9N91YGKFQVEXW689RSFH8FS29NOGTZC8T03QN8M0R9EHESKISGYRCD6AZ0FF5FC6B1KYXN156Z4IOMY65FDSLNV0XLROTCAFP7CH8MOF0TI6JITWVR3XLWCX4LPHJGR7CTPY8NI9Q9PCE0X1P5EDHO8PJYHDYELJUCTYMNEJJP1ANDR' where id=36; -update noar tt set v0='5KHDP07RQZBXC8CT2MMV24HBP5XFBECJPHYEN19BRDU8TZLZE3Q1R292UYKDH0B5IEII05OV04BND8ID54UW1X1YZXG6Q0CQZ2AD04E84BEH8QL5K8UBWLNTZCHWNQ3CGBIGFTD0JLLSUA6IPF48LTBJ8OLP6L094G6UXKHHYIU7FFN40LHOUDIEUZD2WQEKH7FAIDMRVCW3LF3HNCNM4YOZCMVWEX1B3WPDXW0H0E8R936E41MU0LODUGTK9GOV2' where id=37; -update noar ti set v0='5KHDP07RQZBXC8CT2MMV24HBP5XFBECJPHYEN19BRDU8TZLZE3Q1R292UYKDH0B5IEII05OV04BND8ID54UW1X1YZXG6Q0CQZ2AD04E84BEH8QL5K8UBWLNTZCHWNQ3CGBIGFTD0JLLSUA6IPF48LTBJ8OLP6L094G6UXKHHYIU7FFN40LHOUDIEUZD2WQEKH7FAIDMRVCW3LF3HNCNM4YOZCMVWEX1B3WPDXW0H0E8R936E41MU0LODUGTK9GOV2' where id=37; -update noar tt set v1='HM9HKNLFTTDS4F275OOYYVUGOWVZBN96RQ5VW8D1R8THQCW3LOWJ51FVT8BGW0UCI4IU26Q2TYZMIEUPKFLYTOODABG2QB5HQ0GML8XLNVNA8FTIHQ9BCPRK4HORQRN495CQOFQLLF193477Y0VSTOADAFEU3LPQYLJO9ON3AGPCET3SKARETYXLSGYC609QOUFO711O4KFVZUNMAPRKJMYX44CUNJQAKFOEYX46LQH4ED5MRBK8AC99AY5O2N3DW' where id=37; -update noar ti set v1='HM9HKNLFTTDS4F275OOYYVUGOWVZBN96RQ5VW8D1R8THQCW3LOWJ51FVT8BGW0UCI4IU26Q2TYZMIEUPKFLYTOODABG2QB5HQ0GML8XLNVNA8FTIHQ9BCPRK4HORQRN495CQOFQLLF193477Y0VSTOADAFEU3LPQYLJO9ON3AGPCET3SKARETYXLSGYC609QOUFO711O4KFVZUNMAPRKJMYX44CUNJQAKFOEYX46LQH4ED5MRBK8AC99AY5O2N3DW' where id=37; -update noar tt set v2='7PIF0EM0YX7VOZJL6AOEBIRN0M97MVYZQTL94HVSUI1Y8ZKK1JNPFTX9U8B5IP2VM3S6VWS06OXELAIDKC18LPIGOR4BFFF810H7EC47Z631N5W550WANJX3LXNAKM2X107C73VOUI2IR6P43H6GT9TXQDU53LDZXI8FWT4GT3JACCKFBO4LRAMATOKC2TTH44HU2PIXHTVD930JWGXBHYHKNYR7RYID3QPYRB4DH4RQBTPYBQ9FYOM9JA41V47NW' where id=37; -update noar ti set v2='7PIF0EM0YX7VOZJL6AOEBIRN0M97MVYZQTL94HVSUI1Y8ZKK1JNPFTX9U8B5IP2VM3S6VWS06OXELAIDKC18LPIGOR4BFFF810H7EC47Z631N5W550WANJX3LXNAKM2X107C73VOUI2IR6P43H6GT9TXQDU53LDZXI8FWT4GT3JACCKFBO4LRAMATOKC2TTH44HU2PIXHTVD930JWGXBHYHKNYR7RYID3QPYRB4DH4RQBTPYBQ9FYOM9JA41V47NW' where id=37; -update noar tt set v3='BHDRUYCC8FJWDWA1KMYVOW6FBNOCJTRLMJP2V5097XFIT1441QKRNEZ75WUWEGE24M3Z7SLITDJ1JLWCOZS7TVW3ZTGSQMTOOBIE5W2PLJO9YBQ41SJMIMQ8D05I3A4D6CLF9LTITTPC3VJ05GDP0Z6BCYB3R3N9036V9U4JF8TODQOHU24XSJXSP05BTFEFI9BFQDR6LU4F6P91UVKL5TF7MMP4360WOSNJM7NXZSVVH8C9WF0G8AUMEC2079OWS' where id=37; -update noar ti set v3='BHDRUYCC8FJWDWA1KMYVOW6FBNOCJTRLMJP2V5097XFIT1441QKRNEZ75WUWEGE24M3Z7SLITDJ1JLWCOZS7TVW3ZTGSQMTOOBIE5W2PLJO9YBQ41SJMIMQ8D05I3A4D6CLF9LTITTPC3VJ05GDP0Z6BCYB3R3N9036V9U4JF8TODQOHU24XSJXSP05BTFEFI9BFQDR6LU4F6P91UVKL5TF7MMP4360WOSNJM7NXZSVVH8C9WF0G8AUMEC2079OWS' where id=37; -update noar tt set v0='99R3SGHTL5SYXUJG0XYIHP9XI3K7ZYKNK41UBIZ0Q7BTSHFJ0MZ3W9EU5J36G2ZZ7KFORM8QIYTWE0042NWY45BHI4O6B32TSGFCHDI9TMI7NNCG6RTSMVSJRNDIEZVYN6IJOE43Q3CRMPXZ5SGUEB59VOS3XMEGILMI7VYS23SBV1GKCGFZMZSNNB84604ICVATGETO7V9GV56MCXVV3507SKPC4TJCSRLDJ9L4N0YRXA40UH7LQQUWL16T3XR2D' where id=38; -update noar ti set v0='99R3SGHTL5SYXUJG0XYIHP9XI3K7ZYKNK41UBIZ0Q7BTSHFJ0MZ3W9EU5J36G2ZZ7KFORM8QIYTWE0042NWY45BHI4O6B32TSGFCHDI9TMI7NNCG6RTSMVSJRNDIEZVYN6IJOE43Q3CRMPXZ5SGUEB59VOS3XMEGILMI7VYS23SBV1GKCGFZMZSNNB84604ICVATGETO7V9GV56MCXVV3507SKPC4TJCSRLDJ9L4N0YRXA40UH7LQQUWL16T3XR2D' where id=38; -update noar tt set v1='8XJ9D3TNL6AIZRNLQN73XTV10QHYAMS6CUT1Y5XKWC8V40E2URYC6SAMW0YDWF1QTG95B03KCY1FNMDQTVWPF39E6KAZ5Q920P5WCUQ5YBBY5TK1BVSOJIKG9OC5DG3MG77HXF4JHNNVZUPVE3I0F7JO953XEKHVKDFQ0FVG5E6E1ENM6X9EGLN7K4UG0FH6W9LGOHLKVJJACK2FL0C94VCXE621CKKNH2HG9VGJ40F2JG7GSTVQW1PGX9JL0YW3V' where id=38; -update noar ti set v1='8XJ9D3TNL6AIZRNLQN73XTV10QHYAMS6CUT1Y5XKWC8V40E2URYC6SAMW0YDWF1QTG95B03KCY1FNMDQTVWPF39E6KAZ5Q920P5WCUQ5YBBY5TK1BVSOJIKG9OC5DG3MG77HXF4JHNNVZUPVE3I0F7JO953XEKHVKDFQ0FVG5E6E1ENM6X9EGLN7K4UG0FH6W9LGOHLKVJJACK2FL0C94VCXE621CKKNH2HG9VGJ40F2JG7GSTVQW1PGX9JL0YW3V' where id=38; -update noar tt set v2='7OJL1AMJOI62PX9UPNGER0DPYE0IMOH0CDBD9OU8VWZGDJ1DAOFXC6UD36Y0QCSC63C5JGSERS8XTBRGW8IUGF3WYC60WN936RZMG6KRST4KZ3YTAASJ2VP0CKGJ4HYEWIC6VPYZK2EVB4BHA57DAVL96R77W9469RVGU06ZUNWDNICDQ0177FNU6K5O3ORHW4OUWU5LSHHSK1JD4GWRRSME1ECTU8B7FFVT52QMGTBL0SME3QSH6I4C0IR4QVW6Q' where id=38; -update noar ti set v2='7OJL1AMJOI62PX9UPNGER0DPYE0IMOH0CDBD9OU8VWZGDJ1DAOFXC6UD36Y0QCSC63C5JGSERS8XTBRGW8IUGF3WYC60WN936RZMG6KRST4KZ3YTAASJ2VP0CKGJ4HYEWIC6VPYZK2EVB4BHA57DAVL96R77W9469RVGU06ZUNWDNICDQ0177FNU6K5O3ORHW4OUWU5LSHHSK1JD4GWRRSME1ECTU8B7FFVT52QMGTBL0SME3QSH6I4C0IR4QVW6Q' where id=38; -update noar tt set v3='X7I8XRJKUY0PHLB4GEB99VKZU7OT097DEJ0CD7NM7ZT5SAWMUKMTKDTMVLOTAJ0O6PJKI8306ZW9ZL4CVQKCDIRDVN58M3TX5JCODJUQETLWZ078S82LZFAPOBUR7X7MEG76O9RGEMMBGGAQECIFYHN0KRK5RV2F7SGAZ11I2962C5PACSKG11SYTC5Y3KETNOW8W2E5G534R3PJLF5O63JACZ9WJ7M5RF1TCGUHTNQ9W8BS41S9SF6QQUE9WM98N' where id=38; -update noar ti set v3='X7I8XRJKUY0PHLB4GEB99VKZU7OT097DEJ0CD7NM7ZT5SAWMUKMTKDTMVLOTAJ0O6PJKI8306ZW9ZL4CVQKCDIRDVN58M3TX5JCODJUQETLWZ078S82LZFAPOBUR7X7MEG76O9RGEMMBGGAQECIFYHN0KRK5RV2F7SGAZ11I2962C5PACSKG11SYTC5Y3KETNOW8W2E5G534R3PJLF5O63JACZ9WJ7M5RF1TCGUHTNQ9W8BS41S9SF6QQUE9WM98N' where id=38; -update noar tt set v0='WJO97EIH9Z6P7F3O5KCIM6PR8SLAWJEOFBLQL2J6LVORX5T7CCT2L116VR4RMR8HVLPUWB21G17NS6HM3IIMTLU0J7SWFT1ZQLGFH8H5N8Q72A8AMRVQFW59UBXUZ1YCXW1DVEEFKIOKA4EH57D8A3TP3M6XBPCY4FKMF8P760JEURLXSW06ZGLTQNSQS1GPUZEGW256FRUCO8VE4BD5GXCAPS4BZ898F4R9KHS0LUCFVWGNLVKXN1R7I8EWT8P2L' where id=39; -update noar ti set v0='WJO97EIH9Z6P7F3O5KCIM6PR8SLAWJEOFBLQL2J6LVORX5T7CCT2L116VR4RMR8HVLPUWB21G17NS6HM3IIMTLU0J7SWFT1ZQLGFH8H5N8Q72A8AMRVQFW59UBXUZ1YCXW1DVEEFKIOKA4EH57D8A3TP3M6XBPCY4FKMF8P760JEURLXSW06ZGLTQNSQS1GPUZEGW256FRUCO8VE4BD5GXCAPS4BZ898F4R9KHS0LUCFVWGNLVKXN1R7I8EWT8P2L' where id=39; -update noar tt set v1='AY288AM1OSME167YWT2XRZPIAHF0DM16EQW6X72JPXTX1MRYG66ZYG5YNV0PNX3WMMQXBC3QYE07WBRWKHY2WK3GFRG1ZXJQ8BW4C6FS0LKLIQI14AIK1RFGFWT15HH3PFVCPXFF4F4PJDRCGC8AD8073TJYFT2LX129I3SEO4JODIBXWF611MFJ40B9VU0T21TEEMM8E2VFF1YXM2U9TQWE7VXH2WQQYS34AGPTSTDFW34FCQPENBH9TU34OCZRD' where id=39; -update noar ti set v1='AY288AM1OSME167YWT2XRZPIAHF0DM16EQW6X72JPXTX1MRYG66ZYG5YNV0PNX3WMMQXBC3QYE07WBRWKHY2WK3GFRG1ZXJQ8BW4C6FS0LKLIQI14AIK1RFGFWT15HH3PFVCPXFF4F4PJDRCGC8AD8073TJYFT2LX129I3SEO4JODIBXWF611MFJ40B9VU0T21TEEMM8E2VFF1YXM2U9TQWE7VXH2WQQYS34AGPTSTDFW34FCQPENBH9TU34OCZRD' where id=39; -update noar tt set v2='MHOMERN1SPK3N0RLL3N86XZFYIKNCFDWI6V87WTIHS75DGJJ0YAIP69MC06KGGVBRK35KMQNN42KUR6NSA0LGABJ4DZI0DTWNWTZ317UJR8VPLROTXWT6IZR0BO3QVKVVIJL1OPCF19X8JA6SKJEMUOOGYKBQ8T7XPP67X2YCRGS9SGR03LU2IIV4FNI6O1XDFAEQIE4G3SF72UFT91JE4DX3YEWJ3NUMNK5ESVERL4N7GAT8IPE93ZPF2RS5LI7V' where id=39; -update noar ti set v2='MHOMERN1SPK3N0RLL3N86XZFYIKNCFDWI6V87WTIHS75DGJJ0YAIP69MC06KGGVBRK35KMQNN42KUR6NSA0LGABJ4DZI0DTWNWTZ317UJR8VPLROTXWT6IZR0BO3QVKVVIJL1OPCF19X8JA6SKJEMUOOGYKBQ8T7XPP67X2YCRGS9SGR03LU2IIV4FNI6O1XDFAEQIE4G3SF72UFT91JE4DX3YEWJ3NUMNK5ESVERL4N7GAT8IPE93ZPF2RS5LI7V' where id=39; -update noar tt set v3='H0ECDT4ZNAECTNQ2I2M3JH1U4MJWFEB5ULS7B5NE2BLKCI4UG01KJNKIMAZ4N4107QTZLLV500KWB22WTEGLVWT1OY4QGV04LXY6BJHD0YWLB4NOWRJ3DCMB1E34GFE8R094XIM7KWFX2QLEUQMT72JT4E4BH91Q2SIS6CY9ZSBQAQ8EV0M82P7A9T6YY55SMJYQ070H3914DDMGNIHLIPWRBN20L1HOK6J6S7UOGQFFAWLMLY4CM6F92X9P2UIAK' where id=39; -update noar ti set v3='H0ECDT4ZNAECTNQ2I2M3JH1U4MJWFEB5ULS7B5NE2BLKCI4UG01KJNKIMAZ4N4107QTZLLV500KWB22WTEGLVWT1OY4QGV04LXY6BJHD0YWLB4NOWRJ3DCMB1E34GFE8R094XIM7KWFX2QLEUQMT72JT4E4BH91Q2SIS6CY9ZSBQAQ8EV0M82P7A9T6YY55SMJYQ070H3914DDMGNIHLIPWRBN20L1HOK6J6S7UOGQFFAWLMLY4CM6F92X9P2UIAK' where id=39; -update noar tt set v0='H6TYWFB0YPE87C06HV6VB15ASSH3T7KHEXJ9BDMGRQ1HEWAYVUI0OQVNJP41SKY8CV9LU428UG3LQ5AOZNVC6XHMCP7MXWLO9UVD6H2UGJXBE1FLZSNLSTWFKBEJD00X097BOTBWVR8JINXFIW6D1T3SSWROT0OP3KY63JD1EKZJ5OBWH6YMBRRUAT9LD5ZZEJGPWCH6JIP9EQ5XSUY1MDLXGI5SW513V2TGM7QOHEWHT2FANAUS7C8VU09U8F4F0' where id=40; -update noar ti set v0='H6TYWFB0YPE87C06HV6VB15ASSH3T7KHEXJ9BDMGRQ1HEWAYVUI0OQVNJP41SKY8CV9LU428UG3LQ5AOZNVC6XHMCP7MXWLO9UVD6H2UGJXBE1FLZSNLSTWFKBEJD00X097BOTBWVR8JINXFIW6D1T3SSWROT0OP3KY63JD1EKZJ5OBWH6YMBRRUAT9LD5ZZEJGPWCH6JIP9EQ5XSUY1MDLXGI5SW513V2TGM7QOHEWHT2FANAUS7C8VU09U8F4F0' where id=40; -update noar tt set v1='9YCGDP40QAO3GOF4SL44JQ034GH47O2R9AMIT7ERL4X9YAGG8YYHJ9D5OWBRIKNQKDTWVQAH89LLRBC4E3ZAD0QDSCL2FPQ6MC61Y1F087V27N8L2DOV4AYMS4BKWYQEWJC0YT3I595K4B2DQR6FY5Q66AV3TUQ3FK4JO5Z2392QO84NCG8ZX3TFXAFEE41IHSFBY7U2VSMUV6YME8HYNPL6RIFLU1VT22P9CQ1UHGX292LRIAYT91MDD68BVC9AZ' where id=40; -update noar ti set v1='9YCGDP40QAO3GOF4SL44JQ034GH47O2R9AMIT7ERL4X9YAGG8YYHJ9D5OWBRIKNQKDTWVQAH89LLRBC4E3ZAD0QDSCL2FPQ6MC61Y1F087V27N8L2DOV4AYMS4BKWYQEWJC0YT3I595K4B2DQR6FY5Q66AV3TUQ3FK4JO5Z2392QO84NCG8ZX3TFXAFEE41IHSFBY7U2VSMUV6YME8HYNPL6RIFLU1VT22P9CQ1UHGX292LRIAYT91MDD68BVC9AZ' where id=40; -update noar tt set v2='SG5W35L51AKPAWGI1FKFBFDIWS3XSHV8HA0LC15FOWRBZHPCBORMA8SK6JMJVFUT1JKQI1YAKNR5MXF1P4EW3UWSEFJ0C0ELWDSP96KPLBXRLK40R68D9RK5GM6X032EUGE1BT9ZJZAUE8JM3T51C209NIIVRFC9KEFDYYA85NL6ISF130VS1BRYA0SVTBWTG29JZEXWPXRZXJDLZ30QN3IIDWBOY5ATLHC74LJOLTRAHG9YEXCF65P4DH4K7GQT7' where id=40; -update noar ti set v2='SG5W35L51AKPAWGI1FKFBFDIWS3XSHV8HA0LC15FOWRBZHPCBORMA8SK6JMJVFUT1JKQI1YAKNR5MXF1P4EW3UWSEFJ0C0ELWDSP96KPLBXRLK40R68D9RK5GM6X032EUGE1BT9ZJZAUE8JM3T51C209NIIVRFC9KEFDYYA85NL6ISF130VS1BRYA0SVTBWTG29JZEXWPXRZXJDLZ30QN3IIDWBOY5ATLHC74LJOLTRAHG9YEXCF65P4DH4K7GQT7' where id=40; -update noar tt set v3='O6AVJDSYRVAH02R5JHW0G6TFMTE5FKNUJ01AG7IKWLT9ZR6VFLH9GD7L10ILXIB2107GFC4CL27NY3W9NJ83LR2ZFIH5BT3771C4K93XH9VIUWKC6FOR897XWACL6R9W6DJCQZFRO4K3POJLGJFA152TLHI5JJG4K5JPH81GP8JSI9VPQXAD5XIT4GWS6PE2SHT79TLYDKT2YF32TYVMGM1PA82TVCQV7KWVPQ36SJ1A5U061MD3P6DKLNJLPJTDH' where id=40; -update noar ti set v3='O6AVJDSYRVAH02R5JHW0G6TFMTE5FKNUJ01AG7IKWLT9ZR6VFLH9GD7L10ILXIB2107GFC4CL27NY3W9NJ83LR2ZFIH5BT3771C4K93XH9VIUWKC6FOR897XWACL6R9W6DJCQZFRO4K3POJLGJFA152TLHI5JJG4K5JPH81GP8JSI9VPQXAD5XIT4GWS6PE2SHT79TLYDKT2YF32TYVMGM1PA82TVCQV7KWVPQ36SJ1A5U061MD3P6DKLNJLPJTDH' where id=40; -update noar tt set v0='7IEH6KF3NPYH3V42OTV4Y3L11T8XJXUKZQXXD3DOBVWSBLLLJBCKDFKV2W889O84NJN8P3T0NNXZRT85GA5Q05SJF4HR42D51Z52CU53UG8KNUFZDSPNTHAF52608D2U2MWO5ST6YY6VYYSJBEIPVXUJWM899LQDVZM3QTFMONQP0E8H77JU6MZRJMSUQ5EL3GAM1FFDD93E5U13Z65URPBYRZ9YUG1RUPW1AK4WBV1FJ3AFWKRQ5HUQHQ54OFE9N' where id=41; -update noar ti set v0='7IEH6KF3NPYH3V42OTV4Y3L11T8XJXUKZQXXD3DOBVWSBLLLJBCKDFKV2W889O84NJN8P3T0NNXZRT85GA5Q05SJF4HR42D51Z52CU53UG8KNUFZDSPNTHAF52608D2U2MWO5ST6YY6VYYSJBEIPVXUJWM899LQDVZM3QTFMONQP0E8H77JU6MZRJMSUQ5EL3GAM1FFDD93E5U13Z65URPBYRZ9YUG1RUPW1AK4WBV1FJ3AFWKRQ5HUQHQ54OFE9N' where id=41; -update noar tt set v1='L6C3N4J9BHWSHAC6QX19XOWSM6H755SKBGV5PJ5P8PVT8NM7QJ46EA40XZEVG3ITPC6ZOBRSDSX91SVYLZ52JCUO20EP6GDYPTSQUJNBCFMG45WXSW9O31OB7G1WDOT2XMG0C6GSZL37IJKE8957PQ838YSPIQ7R2X9MZAHYYQNYHX8JDKGZCU2D4IRHSJPNCM5YKFCE08QR0K43QM695XFPE0WI9W6AJYM77FTQ782Q64IGF9UWA22GET3D627GU' where id=41; -update noar ti set v1='L6C3N4J9BHWSHAC6QX19XOWSM6H755SKBGV5PJ5P8PVT8NM7QJ46EA40XZEVG3ITPC6ZOBRSDSX91SVYLZ52JCUO20EP6GDYPTSQUJNBCFMG45WXSW9O31OB7G1WDOT2XMG0C6GSZL37IJKE8957PQ838YSPIQ7R2X9MZAHYYQNYHX8JDKGZCU2D4IRHSJPNCM5YKFCE08QR0K43QM695XFPE0WI9W6AJYM77FTQ782Q64IGF9UWA22GET3D627GU' where id=41; -update noar tt set v2='2D1P4PF60XUIPEWXSMMUZ69ZRXPTSBQZKFR38JO1C33M0X6GUE8GKYL1TVIB0AK61S3UPB7F57RG478I2BWE9Y48ETCFEIP582TLF0BPMRIL0HT0LTVEBV8A6FO2AU34MZ1X90UKZVUZW5O7MI8JGAFW0FYC61N9E24T961KAZ3YS692Y8MY82LLAR2AOYXP3E3OH73ET4G759KSRG804HP602JD29SAZOGX3OYFAJ6P85WDF8X1H3FQZI572N8VF' where id=41; -update noar ti set v2='2D1P4PF60XUIPEWXSMMUZ69ZRXPTSBQZKFR38JO1C33M0X6GUE8GKYL1TVIB0AK61S3UPB7F57RG478I2BWE9Y48ETCFEIP582TLF0BPMRIL0HT0LTVEBV8A6FO2AU34MZ1X90UKZVUZW5O7MI8JGAFW0FYC61N9E24T961KAZ3YS692Y8MY82LLAR2AOYXP3E3OH73ET4G759KSRG804HP602JD29SAZOGX3OYFAJ6P85WDF8X1H3FQZI572N8VF' where id=41; -update noar tt set v3='UNSOGZ7KH6PFU7SB5XFJKJF6PONZI4XXZM30SG7H68YR7ASKWVO9LT7RS3RS17VB1S72XWIS7CVN7STMI5RHZFUWFEXNDOXJI7ZXU2CRLLZXT0KPCTK8OBIS2NDO94VY7QK3YNGH4BA34BF1NOKT0ZV1OCB7SVG98QLROCENCR3HSFBL63UM4Y6DE1QELWMLPEVEW4DUNQUFJQBRAHXTF9YPOP70879LJ53WHE61MK5OXPB3JDFOGKF7PESMZOGQI' where id=41; -update noar ti set v3='UNSOGZ7KH6PFU7SB5XFJKJF6PONZI4XXZM30SG7H68YR7ASKWVO9LT7RS3RS17VB1S72XWIS7CVN7STMI5RHZFUWFEXNDOXJI7ZXU2CRLLZXT0KPCTK8OBIS2NDO94VY7QK3YNGH4BA34BF1NOKT0ZV1OCB7SVG98QLROCENCR3HSFBL63UM4Y6DE1QELWMLPEVEW4DUNQUFJQBRAHXTF9YPOP70879LJ53WHE61MK5OXPB3JDFOGKF7PESMZOGQI' where id=41; -update noar tt set v0='X2VS18LMHN0RSKNKD3V779LTXWS0FD7XE8J6ZSO1WXPFKREBT088TSS26Q7JFT5HZC0WKMBSQ720KMSZR1TYX7CG7Y8RB9JVT3U2D3DZPLC1RDMIFWVJCW5QSQ2LQJW0CRA5A8646G2B0YGAFT4HUCIOC0OLNDOZMB3A2E7PNYSAZK8GYD7AN2VAZE6IYT9W4L5Q4T1F4TDKEJSDVDMHVAYZ1M8WM4P3Y27AFMEVRPEUUNY4ODRQXH7U2HPE60ZHS' where id=42; -update noar ti set v0='X2VS18LMHN0RSKNKD3V779LTXWS0FD7XE8J6ZSO1WXPFKREBT088TSS26Q7JFT5HZC0WKMBSQ720KMSZR1TYX7CG7Y8RB9JVT3U2D3DZPLC1RDMIFWVJCW5QSQ2LQJW0CRA5A8646G2B0YGAFT4HUCIOC0OLNDOZMB3A2E7PNYSAZK8GYD7AN2VAZE6IYT9W4L5Q4T1F4TDKEJSDVDMHVAYZ1M8WM4P3Y27AFMEVRPEUUNY4ODRQXH7U2HPE60ZHS' where id=42; -update noar tt set v1='QUP7XPWL1USMNE30RH322RXH398Q4JCDHH65L1D5T7D6O50036YVFWOTQCP7EP2LL7BK80HFV4U2N8MQS63EMOHZHEHI2BHQLAH6NA7KX3SU8U3JOFFEUPP4IU4ZSHTLH2OBARE9AZ6IP7ZCXZB08A8KTTKJX7UBDR3I2WK09BGT9W09CD3ZMWI2O52AQDAK1I9AP28K2Y0EH4PPA9PEKV620RDMAR2UG4WWLWJMXZ9L7OOILU2NFMUFBL9WF1FYK' where id=42; -update noar ti set v1='QUP7XPWL1USMNE30RH322RXH398Q4JCDHH65L1D5T7D6O50036YVFWOTQCP7EP2LL7BK80HFV4U2N8MQS63EMOHZHEHI2BHQLAH6NA7KX3SU8U3JOFFEUPP4IU4ZSHTLH2OBARE9AZ6IP7ZCXZB08A8KTTKJX7UBDR3I2WK09BGT9W09CD3ZMWI2O52AQDAK1I9AP28K2Y0EH4PPA9PEKV620RDMAR2UG4WWLWJMXZ9L7OOILU2NFMUFBL9WF1FYK' where id=42; -update noar tt set v2='LTIIJYKPL9I9KJ0J3GFLHS0DS4SEZRV43NX25MCYG4VWO0SF9YDIEU3XYDGVQGUIHXR3LEEPAD4YY5E0A20L0VC2ZGXXDG9QR80073A0XEEZRUMDHTEB6PJMNJOM2LW0MIUK07I6OYX0UVCEPW9FP9F80OQTQWJ591RC7O8ZY8FH0KZ65DLZQIPSJ6L5KVTWZEDIPWAGGQRFL660ZYD9WE6E4ENOJLTZQXOP6HN1Z123835E3V5Y3ELHYZ3AO08V8' where id=42; -update noar ti set v2='LTIIJYKPL9I9KJ0J3GFLHS0DS4SEZRV43NX25MCYG4VWO0SF9YDIEU3XYDGVQGUIHXR3LEEPAD4YY5E0A20L0VC2ZGXXDG9QR80073A0XEEZRUMDHTEB6PJMNJOM2LW0MIUK07I6OYX0UVCEPW9FP9F80OQTQWJ591RC7O8ZY8FH0KZ65DLZQIPSJ6L5KVTWZEDIPWAGGQRFL660ZYD9WE6E4ENOJLTZQXOP6HN1Z123835E3V5Y3ELHYZ3AO08V8' where id=42; -update noar tt set v3='JVUTYXYK9ZB5483JK5XKDB1JU0XEQUZ7XQYGNSGSFSFUMO713WKHNHD5TH9JP2292SJ7E7X13EJ486IG6DT6U32ROA9T17USRFQPZR0M9CY4IAOMGYU4D0R6CTT8ZZ6FXGRAUSZASUNTRL5MA5X6WPPAL5ZRTTYD1MULKQFDDC5798KGZ6YJY4434GDRES7E4LVPOB9MMXCWB9HMVQ6E21J7KGI3LTZFNA6PVV1RI6XK5Q7MA345SVYMY12LQGUIU' where id=42; -update noar ti set v3='JVUTYXYK9ZB5483JK5XKDB1JU0XEQUZ7XQYGNSGSFSFUMO713WKHNHD5TH9JP2292SJ7E7X13EJ486IG6DT6U32ROA9T17USRFQPZR0M9CY4IAOMGYU4D0R6CTT8ZZ6FXGRAUSZASUNTRL5MA5X6WPPAL5ZRTTYD1MULKQFDDC5798KGZ6YJY4434GDRES7E4LVPOB9MMXCWB9HMVQ6E21J7KGI3LTZFNA6PVV1RI6XK5Q7MA345SVYMY12LQGUIU' where id=42; -update noar tt set v0='7OUUNWZK5PQTN3W1OSZAXC6Y2KVIQD6VYIN0TNT9GM7RH746OQN2VZAD64TN7H6F0PUG4COJUFX3IIZAT2CB9G2IDY0IWPK9OW46LS7F1R7833E5UH47L48I6CJ8H6XJ9F04HW2Z3IPU8457PS311F89IT9979SXH19BOSR40ZEK0ULODTS6RURBZZAKR9RMDT26QADIY65046JHRE2GC2ZQ0J2R3H07V1RBOT170KC8Z5O2LANXZ1OY170GC19FN' where id=43; -update noar ti set v0='7OUUNWZK5PQTN3W1OSZAXC6Y2KVIQD6VYIN0TNT9GM7RH746OQN2VZAD64TN7H6F0PUG4COJUFX3IIZAT2CB9G2IDY0IWPK9OW46LS7F1R7833E5UH47L48I6CJ8H6XJ9F04HW2Z3IPU8457PS311F89IT9979SXH19BOSR40ZEK0ULODTS6RURBZZAKR9RMDT26QADIY65046JHRE2GC2ZQ0J2R3H07V1RBOT170KC8Z5O2LANXZ1OY170GC19FN' where id=43; -update noar tt set v1='K2JI1VC0EQLF3X5JCPHHRJ8VIW9V8C634IZY6414TM1HJK5X3DOSNHS2CBBUQDOR2ZB4JUUB84L6O0JPEQ3Q58FKJZZE1X67SNXTTHD0QXPJR13YJIWLGYJP85QFHB0K3Z5AZ7X0JEVDD70W9SA7SCRQ19TGZZLBZ7E4IK8QO2K7BMZ9U7104ZUPO3IM04ZB7V1TZO8Q76OJR6558NKLJDM4DVIRX0D6XGWOWP62WY4SA1YCIJEBNWLDZ8HCR2XGH' where id=43; -update noar ti set v1='K2JI1VC0EQLF3X5JCPHHRJ8VIW9V8C634IZY6414TM1HJK5X3DOSNHS2CBBUQDOR2ZB4JUUB84L6O0JPEQ3Q58FKJZZE1X67SNXTTHD0QXPJR13YJIWLGYJP85QFHB0K3Z5AZ7X0JEVDD70W9SA7SCRQ19TGZZLBZ7E4IK8QO2K7BMZ9U7104ZUPO3IM04ZB7V1TZO8Q76OJR6558NKLJDM4DVIRX0D6XGWOWP62WY4SA1YCIJEBNWLDZ8HCR2XGH' where id=43; -update noar tt set v2='FUYIRVAUM5HEEIOW5V4KO6ADS3X0LBLELXSFR2T9IS8KB859RQ4EMT7F20YUT4X49X3JZ9J6UWTAC7P90BHEZ6TZHJY89ILOO47GPMZW68ZVMGI6NX23IJN6NEI8ZY6O3QROKZB9W7TA7KTKUN2UDV6IMZC95H1DVB0FRON57CWDR7GZWS3X5OQD0D6QRAXINE3EK5OYMHQM70R9TK0ESKQVIR0VIPEJ2LLC69AR3AYYAYKDPZS65VGXPYPGTDFE0' where id=43; -update noar ti set v2='FUYIRVAUM5HEEIOW5V4KO6ADS3X0LBLELXSFR2T9IS8KB859RQ4EMT7F20YUT4X49X3JZ9J6UWTAC7P90BHEZ6TZHJY89ILOO47GPMZW68ZVMGI6NX23IJN6NEI8ZY6O3QROKZB9W7TA7KTKUN2UDV6IMZC95H1DVB0FRON57CWDR7GZWS3X5OQD0D6QRAXINE3EK5OYMHQM70R9TK0ESKQVIR0VIPEJ2LLC69AR3AYYAYKDPZS65VGXPYPGTDFE0' where id=43; -update noar tt set v3='VU2IGL24FS2BPJ36CLN7NJ5EU7M9AJI0T6SX4MGCCJ7FHG3QY60JU3P1DNSS13P9WG8EWJWMNTISDA9IXVZJ99HNAOFRWHVX1EX7Y8NE0RUAAF7SJSWSMPOZK674J2WWY2Q6YRVOKFSFEU80QF0G7CYRKBLCWGNAF38DXLNZTBS44348NETSYBDJKO3M6DU4UG2W098L2KLEKV9QNI2TN04HP9BL1FRCZ3RIQ4JAL1LPFGWOH5J6LN6MNA26P50WD' where id=43; -update noar ti set v3='VU2IGL24FS2BPJ36CLN7NJ5EU7M9AJI0T6SX4MGCCJ7FHG3QY60JU3P1DNSS13P9WG8EWJWMNTISDA9IXVZJ99HNAOFRWHVX1EX7Y8NE0RUAAF7SJSWSMPOZK674J2WWY2Q6YRVOKFSFEU80QF0G7CYRKBLCWGNAF38DXLNZTBS44348NETSYBDJKO3M6DU4UG2W098L2KLEKV9QNI2TN04HP9BL1FRCZ3RIQ4JAL1LPFGWOH5J6LN6MNA26P50WD' where id=43; -update noar tt set v0='AETR40DV7UPJPYICX0J1EV5HNXQ70XL58VMK1EN6IQA9QNDFPJU97V3HMUFVQQXZT4SKNWHV0QRWWZWO5GPOS6G0EAQW2UJ5PVJWQ4QTVQLPPW40FAL6HHB15KO7MEHKOKL1ZDMTIGZBLZ6RWE0CASLKQV2LB51OV3REA05QL2QZNAG74I9CLN5CE6RLT956GEGY1K2ELAUU2CXXCZNPISEC7RQFIJFJ3FIQ5ZA7WFFVMM2FBODM4AT2LQK1L8H3T' where id=44; -update noar ti set v0='AETR40DV7UPJPYICX0J1EV5HNXQ70XL58VMK1EN6IQA9QNDFPJU97V3HMUFVQQXZT4SKNWHV0QRWWZWO5GPOS6G0EAQW2UJ5PVJWQ4QTVQLPPW40FAL6HHB15KO7MEHKOKL1ZDMTIGZBLZ6RWE0CASLKQV2LB51OV3REA05QL2QZNAG74I9CLN5CE6RLT956GEGY1K2ELAUU2CXXCZNPISEC7RQFIJFJ3FIQ5ZA7WFFVMM2FBODM4AT2LQK1L8H3T' where id=44; -update noar tt set v1='N8D4IMZN0Y6JIFLUVVW846REB8YSBULSTTOHO8I094O8Q61BDO8KHMJHZA21QKY2UX5L3SMZDWF78RNBAE1LMP1C8JG6TO65D0PNLVPN6VFIE1UZLGY86SR4CAH5O0XP2W8XPGAJN5VODWNLS724A5MSGR914LT30XQC905W5DOLVK259B2Z3LH2X9QEHM5ULYGZPQ3ULXFZKT4X2FBLAOXO1F5H6IR12AQJKFL5QQAM9K532N8VLVBAHSFF5F237' where id=44; -update noar ti set v1='N8D4IMZN0Y6JIFLUVVW846REB8YSBULSTTOHO8I094O8Q61BDO8KHMJHZA21QKY2UX5L3SMZDWF78RNBAE1LMP1C8JG6TO65D0PNLVPN6VFIE1UZLGY86SR4CAH5O0XP2W8XPGAJN5VODWNLS724A5MSGR914LT30XQC905W5DOLVK259B2Z3LH2X9QEHM5ULYGZPQ3ULXFZKT4X2FBLAOXO1F5H6IR12AQJKFL5QQAM9K532N8VLVBAHSFF5F237' where id=44; -update noar tt set v2='4LRXA2QRHH975VT3K72RLLC16FQ6B9MB15G217WIWL2LWJ3SZ673CTGBX1L6N3DB434DKX2RNS4Y8WSV2M2GG8UUZJYG478ANZV6LKTOBCVYM17N7640GHKRLY1WFMPZPSLH3PO57SQQ12UHT0MQRV6SIUKCMU67SGDXCD08V7VJYHE5TFO71RR0O3JKZ7YL4CVOI87VBVPGZZ4E4B31N6C2FCPFU09RZ2DJX0HTB8G9RKGGM3GM9B8FU728AH94C' where id=44; -update noar ti set v2='4LRXA2QRHH975VT3K72RLLC16FQ6B9MB15G217WIWL2LWJ3SZ673CTGBX1L6N3DB434DKX2RNS4Y8WSV2M2GG8UUZJYG478ANZV6LKTOBCVYM17N7640GHKRLY1WFMPZPSLH3PO57SQQ12UHT0MQRV6SIUKCMU67SGDXCD08V7VJYHE5TFO71RR0O3JKZ7YL4CVOI87VBVPGZZ4E4B31N6C2FCPFU09RZ2DJX0HTB8G9RKGGM3GM9B8FU728AH94C' where id=44; -update noar tt set v3='0LGG3WR798F5PQT50QWBUFZASSTY5Y75BD2OB9B3XD88J4NGZ93OZ9OILUAE4LTHNGNS65MCD692KWCUD94VX0Q5AXLQS97EZTVJN3XEPEO0J00XYJFBA5KEN6HQNN2QFQIU9T0BD5YDQCKQQIM9PKNLL05FNF2S34FANSQ38WBMEMR22VN0V0O68B50T65601H6JOOGKU0P0XLMBRMK3P0F0ZDI7CN9JBP5C5ABGYQQ4PNP25AGS4T0S72VQSCGX' where id=44; -update noar ti set v3='0LGG3WR798F5PQT50QWBUFZASSTY5Y75BD2OB9B3XD88J4NGZ93OZ9OILUAE4LTHNGNS65MCD692KWCUD94VX0Q5AXLQS97EZTVJN3XEPEO0J00XYJFBA5KEN6HQNN2QFQIU9T0BD5YDQCKQQIM9PKNLL05FNF2S34FANSQ38WBMEMR22VN0V0O68B50T65601H6JOOGKU0P0XLMBRMK3P0F0ZDI7CN9JBP5C5ABGYQQ4PNP25AGS4T0S72VQSCGX' where id=44; -update noar tt set v0='0V4RR08IBP9NZ6CB8ZRV0XPFMSAPESY3D1WH00H8HCNSHO3DQF62KCMVV1NYT7ZDSO65G0ZLUPME1GKJCVFXGZQWEHEH2GE8IHFT2892EN4IPJUHAIC7MF7KI9FRT4THFC3FSJ1J1YTAC4IA7F0RQRNJ99BL3K90PWZ8OCS6MDWH99ZQP7SJA2XD9XND8F8ZWXG49ERU7JIM43ORTAH1R60S4U5CMIVYQAQE3QI254RB3EBGY1XFZVAGSGWUOZGC7' where id=45; -update noar ti set v0='0V4RR08IBP9NZ6CB8ZRV0XPFMSAPESY3D1WH00H8HCNSHO3DQF62KCMVV1NYT7ZDSO65G0ZLUPME1GKJCVFXGZQWEHEH2GE8IHFT2892EN4IPJUHAIC7MF7KI9FRT4THFC3FSJ1J1YTAC4IA7F0RQRNJ99BL3K90PWZ8OCS6MDWH99ZQP7SJA2XD9XND8F8ZWXG49ERU7JIM43ORTAH1R60S4U5CMIVYQAQE3QI254RB3EBGY1XFZVAGSGWUOZGC7' where id=45; -update noar tt set v1='3GH5ST5IIZ8ZEG2TW9871HZ0RXZFFDVRQQ6WDFZ50BXH2TEJDACQFXSFQ9ZGXR5OOBOATZ6K0XPULOK373JB5DABA3JSB5TOAPTDKP0FACI0LPGZKMRU1MGJQ0C7QKK2Z9OS879HUKZQD51B43CU7PFETVOJBVQ0RKHZT58FYT4UA4JRHVCIMJTWQ509NSC76A6L0ZXUR69Z756X3AC0JE69NX5M0NVY90ZPFKU6X9UHD1LKAPTHNTKD40KG932YI' where id=45; -update noar ti set v1='3GH5ST5IIZ8ZEG2TW9871HZ0RXZFFDVRQQ6WDFZ50BXH2TEJDACQFXSFQ9ZGXR5OOBOATZ6K0XPULOK373JB5DABA3JSB5TOAPTDKP0FACI0LPGZKMRU1MGJQ0C7QKK2Z9OS879HUKZQD51B43CU7PFETVOJBVQ0RKHZT58FYT4UA4JRHVCIMJTWQ509NSC76A6L0ZXUR69Z756X3AC0JE69NX5M0NVY90ZPFKU6X9UHD1LKAPTHNTKD40KG932YI' where id=45; -update noar tt set v2='ARR9XXHYF1CM0A7OFKOJOW1PHEY4N2TEOW7IJ3RP3Q88QUQWOKYPMYLD0LY458LIVUIVJD4EOBOGYL8WCJ43GVJW3FKV0B8M4MO1XH644Q6A39VL4HU5LF7W737AI5ITCE5PJN93MDAPB7NW49IXAI1Q3NK5XGWZ2S3TN5UUERX6IDUNA76U7XBJJ328YWKYL7H9ZZYWOOCSHPP505SO33Y0CLJTV0693THI53Y230FLQDKMKV6K7UA7W19FFB4KZ' where id=45; -update noar ti set v2='ARR9XXHYF1CM0A7OFKOJOW1PHEY4N2TEOW7IJ3RP3Q88QUQWOKYPMYLD0LY458LIVUIVJD4EOBOGYL8WCJ43GVJW3FKV0B8M4MO1XH644Q6A39VL4HU5LF7W737AI5ITCE5PJN93MDAPB7NW49IXAI1Q3NK5XGWZ2S3TN5UUERX6IDUNA76U7XBJJ328YWKYL7H9ZZYWOOCSHPP505SO33Y0CLJTV0693THI53Y230FLQDKMKV6K7UA7W19FFB4KZ' where id=45; -update noar tt set v3='0ACKNANERV1WDP5J4UA0PQLE7QE10ZYUUTMGVAQ3MHTDWKKTSTPNFVIJ5RT1I6FE6XMM7GHG6MDK710ZI5SA67K2TYDRW0KI1UEOY5CT7608OQP3KG8120PHH6CNVA792XOFROJ7HN5ZRLPV2TKFOELEVBOM5DYE64FWJK8JTKKGL42LMCP3HSKO9Z151OCM9OKO6FADFV6O3UEOXZB5UJ9DNYSZY3HT3R0CI2YTJEK9OIROFKYO1DD4OB9ECAN6O' where id=45; -update noar ti set v3='0ACKNANERV1WDP5J4UA0PQLE7QE10ZYUUTMGVAQ3MHTDWKKTSTPNFVIJ5RT1I6FE6XMM7GHG6MDK710ZI5SA67K2TYDRW0KI1UEOY5CT7608OQP3KG8120PHH6CNVA792XOFROJ7HN5ZRLPV2TKFOELEVBOM5DYE64FWJK8JTKKGL42LMCP3HSKO9Z151OCM9OKO6FADFV6O3UEOXZB5UJ9DNYSZY3HT3R0CI2YTJEK9OIROFKYO1DD4OB9ECAN6O' where id=45; -update noar tt set v0='V9RCSI89T4LGCAOXCVVVCV1R3Q52BQB96VS7C7CVH8VPB8HO3W4OOY6CJNG72KXBBNRCA5WIHAAAHGKAP0RP61LSKT67D9WIMNSQRKPHADKE4VHDUW43MTNO2DARWTZ7P15TJI2YLPKS9QDJ6UU8WCQVJQXS45B5T7NXY0AS56WBOSBFKBFKMPJM694ZA2HW2XGALIX9G0I0ROWYJ9UGMPZV9VNE3QYGG32EGI6LM8JFK5LYIOASKI5LA7C76IURP' where id=46; -update noar ti set v0='V9RCSI89T4LGCAOXCVVVCV1R3Q52BQB96VS7C7CVH8VPB8HO3W4OOY6CJNG72KXBBNRCA5WIHAAAHGKAP0RP61LSKT67D9WIMNSQRKPHADKE4VHDUW43MTNO2DARWTZ7P15TJI2YLPKS9QDJ6UU8WCQVJQXS45B5T7NXY0AS56WBOSBFKBFKMPJM694ZA2HW2XGALIX9G0I0ROWYJ9UGMPZV9VNE3QYGG32EGI6LM8JFK5LYIOASKI5LA7C76IURP' where id=46; -update noar tt set v1='RIRWWU6AFOYC1OP9V5SGC5XCBQ5Z96X9JXBHCBCJONKMJ4UK9Y4NJRUOE7Z0VUVAGH8YWSYBBJWEJZYW0486D93PBO2ZI52LA3KTWWXEMBKBWYLOJ6YG7YV2M10JQLLR5PLPWC65R61ZRY2FPONB2PKDQQZZNVCKICBXA6AUNIWSL27EKF09ZOBKH25M7B2J6QH3WZ2DDOF0UVT8X172E7PCOXYO7CMPOWPOKD0MJSUTGFR4O7HQR6D7TL6WF96UT' where id=46; -update noar ti set v1='RIRWWU6AFOYC1OP9V5SGC5XCBQ5Z96X9JXBHCBCJONKMJ4UK9Y4NJRUOE7Z0VUVAGH8YWSYBBJWEJZYW0486D93PBO2ZI52LA3KTWWXEMBKBWYLOJ6YG7YV2M10JQLLR5PLPWC65R61ZRY2FPONB2PKDQQZZNVCKICBXA6AUNIWSL27EKF09ZOBKH25M7B2J6QH3WZ2DDOF0UVT8X172E7PCOXYO7CMPOWPOKD0MJSUTGFR4O7HQR6D7TL6WF96UT' where id=46; -update noar tt set v2='DWWQTXUC74RHFT7HSUKCPVUF33J5R8AP1N21XTYV05C7XQRUFMYZEMBT1CDQSVGSEDHMCVC7BRUZT8VZ8PYO6MI2S9PFKV2JI6HEUBNGEABUAIZJ43PS6QHFSLNU6DC338CZLUB4CR9PO2SVHU2O9Q18UW08W2V13V6T4NPFAY1CW0N1Y09ZJHWQ35BWLTHO9IAKAVMCPOBX9V3P00U5A02RQCFB4LGNYLD757I3Y342ZW5PKHFYQNI3ZO6YN0TQP' where id=46; -update noar ti set v2='DWWQTXUC74RHFT7HSUKCPVUF33J5R8AP1N21XTYV05C7XQRUFMYZEMBT1CDQSVGSEDHMCVC7BRUZT8VZ8PYO6MI2S9PFKV2JI6HEUBNGEABUAIZJ43PS6QHFSLNU6DC338CZLUB4CR9PO2SVHU2O9Q18UW08W2V13V6T4NPFAY1CW0N1Y09ZJHWQ35BWLTHO9IAKAVMCPOBX9V3P00U5A02RQCFB4LGNYLD757I3Y342ZW5PKHFYQNI3ZO6YN0TQP' where id=46; -update noar tt set v3='HH0Z1A2QNYU5N7MB90DDF33H3OFH3E1ORUTP8L87HRU7NYHGAIONAD5K6W8X8HVYAU11MRXUHPPCJDH9N5EXG1WA1KEMU55Y9AXE895OCXY5GSM4I72JXYGNB26CNZ7VAVA8DELE5A5E63PM6DYIEL04JUFRZ22YUUZ5Y0W2ZZYI3YJ4PHRY9S59FGGRO1PKZ8C596RD0AUOG7UROW9AZLEZZ6EXBOP1Q1IQHU59I9B6IUSTXQH4U461GD5UUA245' where id=46; -update noar ti set v3='HH0Z1A2QNYU5N7MB90DDF33H3OFH3E1ORUTP8L87HRU7NYHGAIONAD5K6W8X8HVYAU11MRXUHPPCJDH9N5EXG1WA1KEMU55Y9AXE895OCXY5GSM4I72JXYGNB26CNZ7VAVA8DELE5A5E63PM6DYIEL04JUFRZ22YUUZ5Y0W2ZZYI3YJ4PHRY9S59FGGRO1PKZ8C596RD0AUOG7UROW9AZLEZZ6EXBOP1Q1IQHU59I9B6IUSTXQH4U461GD5UUA245' where id=46; -update noar tt set v0='MEWSQH4NSS9ROL1BIGRPDRTL18W6HKGDZBNEUFSWHHYE5ZTRIBQND43A7DMHSTCU24450378JK3D7GM8R0JUAKU2NX7KY1XADQKXACH3LGY8SJIEL69FBLY488BYWLGYYIXBGWYSYGD2KTDEQ86121C3GL0OL734J978NSGKQUM5KTEKE6RQTPPPUWFPMWS8IPU5QVIIRLD21XRIRA4RIECJ65PWRWP2JO7O57TQI8ZRHZGPRAMJKRTU19CB3WSVZ' where id=47; -update noar ti set v0='MEWSQH4NSS9ROL1BIGRPDRTL18W6HKGDZBNEUFSWHHYE5ZTRIBQND43A7DMHSTCU24450378JK3D7GM8R0JUAKU2NX7KY1XADQKXACH3LGY8SJIEL69FBLY488BYWLGYYIXBGWYSYGD2KTDEQ86121C3GL0OL734J978NSGKQUM5KTEKE6RQTPPPUWFPMWS8IPU5QVIIRLD21XRIRA4RIECJ65PWRWP2JO7O57TQI8ZRHZGPRAMJKRTU19CB3WSVZ' where id=47; -update noar tt set v1='07U6EXGWSBP85X4EGFAGDCFXMJ2BN7TJC6F7MTRYVAB0R7SFOGCPHBYZ81649BUJGS4LV54RAJQQVVKJ13W25Y2SXN4AEEOYPHYZ5MSJ173RDG45CMXLTNBVWTO0GSNJEB2TVYXTNCIXVAQ1N4LCZZOLN6SO7R7B5WVNUOVOS3WJOIJOGIFEXRBV77MWO9NISOG51D4OVPFTBS7WYU4BFX3SFG3VXVC5F2PMRUFLALH0QX8E0A8PPB422PKCV6JV2' where id=47; -update noar ti set v1='07U6EXGWSBP85X4EGFAGDCFXMJ2BN7TJC6F7MTRYVAB0R7SFOGCPHBYZ81649BUJGS4LV54RAJQQVVKJ13W25Y2SXN4AEEOYPHYZ5MSJ173RDG45CMXLTNBVWTO0GSNJEB2TVYXTNCIXVAQ1N4LCZZOLN6SO7R7B5WVNUOVOS3WJOIJOGIFEXRBV77MWO9NISOG51D4OVPFTBS7WYU4BFX3SFG3VXVC5F2PMRUFLALH0QX8E0A8PPB422PKCV6JV2' where id=47; -update noar tt set v2='4ZE33VS11INXIY5RQ68BSV4CU3WSJOYBL4S9219JN31YOIB9XLCCN5YI4LXWKEES3AXPM28AN5454DRD1NUVXUNEHSO06J74L5GQE15ZS72KV6R2YN5TR66NN87QZOX5RW2CD9EAJQB55JYWX7L3H50WYUONVJ50815YHJB1F6GQJ0QLBRN4VVY8IOQ0LMTT2GA1EACP6QJGJ5959ZL7DE5BH903Q1O2ZT74NWLF8AFS9UKV3416XK4TVTEA1XWVD' where id=47; -update noar ti set v2='4ZE33VS11INXIY5RQ68BSV4CU3WSJOYBL4S9219JN31YOIB9XLCCN5YI4LXWKEES3AXPM28AN5454DRD1NUVXUNEHSO06J74L5GQE15ZS72KV6R2YN5TR66NN87QZOX5RW2CD9EAJQB55JYWX7L3H50WYUONVJ50815YHJB1F6GQJ0QLBRN4VVY8IOQ0LMTT2GA1EACP6QJGJ5959ZL7DE5BH903Q1O2ZT74NWLF8AFS9UKV3416XK4TVTEA1XWVD' where id=47; -update noar tt set v3='R1SY7FBXRNS2JDRH2WEJ5JR7XTLZHZ0OZLYK3WZFHDA0RR189W6U8S7RMJFW9441IVJ7900TNEPS95KO9RNYQZH00BTYPW0PDEO4RCKF8PURHU0QQIUFRF7NIU69H5RCSLRRWGW7FJFSSNEK64J1Y5YTSO6L2P3EOG7OLRTRA8HS9QERT3448KV286YOKDSWZWIG0QAO1BYDX4FT4SAT9WAHN25CLFTCTTGDV6CCS31UC1X3EDQTEJB5C5PN0BYCD' where id=47; -update noar ti set v3='R1SY7FBXRNS2JDRH2WEJ5JR7XTLZHZ0OZLYK3WZFHDA0RR189W6U8S7RMJFW9441IVJ7900TNEPS95KO9RNYQZH00BTYPW0PDEO4RCKF8PURHU0QQIUFRF7NIU69H5RCSLRRWGW7FJFSSNEK64J1Y5YTSO6L2P3EOG7OLRTRA8HS9QERT3448KV286YOKDSWZWIG0QAO1BYDX4FT4SAT9WAHN25CLFTCTTGDV6CCS31UC1X3EDQTEJB5C5PN0BYCD' where id=47; -update noar tt set v0='Z3NNEIH7FOIR6GRI7DE1JI3CWVLNABVWMYNV80C09E7LNKU8MIOSXWZVX8XMV3B6VVA38GFNP3RPT9BLIJ4D7LEY2QCAQU8LOSDR9MAXBUGI8YQ2WC4KMLYDN4J5SD4JLFZLZ627HYD0XNB9ZLS4UT3TM1BRVC5U31Z53JY9SPU0YC3EL67C4EUOBWIB6BLA1L9BLGEHB8WH0T5F99S40DMEOMH1DYDTIIVHLS0CX427XJ0I5JAZFNBA52PRX0CDQ' where id=48; -update noar ti set v0='Z3NNEIH7FOIR6GRI7DE1JI3CWVLNABVWMYNV80C09E7LNKU8MIOSXWZVX8XMV3B6VVA38GFNP3RPT9BLIJ4D7LEY2QCAQU8LOSDR9MAXBUGI8YQ2WC4KMLYDN4J5SD4JLFZLZ627HYD0XNB9ZLS4UT3TM1BRVC5U31Z53JY9SPU0YC3EL67C4EUOBWIB6BLA1L9BLGEHB8WH0T5F99S40DMEOMH1DYDTIIVHLS0CX427XJ0I5JAZFNBA52PRX0CDQ' where id=48; -update noar tt set v1='UQETTULM3ZC910CFODB2IJHTPDKJ677QZXJ6S5QY3J6A6QSHU43P5ASNC6BVAY7QPSW0QYFMAR5N6Q5JK0ZLQQF3C4ZJG3ZYAIX8DWVE6ET8LID4MRW5SBNGHH80EH73QRI2EOZ7R9F0MQRAKCXI20VF5II3CRDN17UQ6UA503ZSY817OTDY1JYHUTHOJJR0F4F3TVVWK5VTN1DTCOB9T7AE1WUN81SNP5STVNR5Y9F8H1TQQFEYGAH1ZALDL5AFU' where id=48; -update noar ti set v1='UQETTULM3ZC910CFODB2IJHTPDKJ677QZXJ6S5QY3J6A6QSHU43P5ASNC6BVAY7QPSW0QYFMAR5N6Q5JK0ZLQQF3C4ZJG3ZYAIX8DWVE6ET8LID4MRW5SBNGHH80EH73QRI2EOZ7R9F0MQRAKCXI20VF5II3CRDN17UQ6UA503ZSY817OTDY1JYHUTHOJJR0F4F3TVVWK5VTN1DTCOB9T7AE1WUN81SNP5STVNR5Y9F8H1TQQFEYGAH1ZALDL5AFU' where id=48; -update noar tt set v2='XO6WHYZJDUY15PL8GCCSK692T3BKD94YOUTCB5FWGQG0ICUHR4ZQFQ8NB2ZCPKTSYAPBOW9RHG1WHUAVY8IFMC9SNWMN8MGTWJ4Z1O6VX4CELGFE1A5QU5KM4HIDEP3C8CUM524UM54JZ6DLFRWR6O8GOR9TU5WXYFKQWWJ6AWDHRKW1AMRDA4E0VT2R1IAZ26UNM93GY760XKUE9FIPARYRK84FOYQ5GZ6P849GGQL4EZ5ZRQQU40B7UW0CSA88T' where id=48; -update noar ti set v2='XO6WHYZJDUY15PL8GCCSK692T3BKD94YOUTCB5FWGQG0ICUHR4ZQFQ8NB2ZCPKTSYAPBOW9RHG1WHUAVY8IFMC9SNWMN8MGTWJ4Z1O6VX4CELGFE1A5QU5KM4HIDEP3C8CUM524UM54JZ6DLFRWR6O8GOR9TU5WXYFKQWWJ6AWDHRKW1AMRDA4E0VT2R1IAZ26UNM93GY760XKUE9FIPARYRK84FOYQ5GZ6P849GGQL4EZ5ZRQQU40B7UW0CSA88T' where id=48; -update noar tt set v3='KGKROJSQXWLCGA578DR5ZF7Z6XNFD5JZFIN25KZUXMXCQRY2F47KE4ME724EU1ACF0W2LW6PU07AP5VAVKHSI5WJK1PNY91EM37FWDJSV6B7605PCTG67Y1ZWV2ESISM96W94VP6SD321K6XBCVO1ZFHW5SQBYW09Q5AU7N9RMA68Q0MF5YNLHYT9QLN93SCTQ3Y34T8778C1IH27UEE39Z06E7J0LJVRIXJ8S578W1VV6HXWCFGDDREWOTDOJMYU' where id=48; -update noar ti set v3='KGKROJSQXWLCGA578DR5ZF7Z6XNFD5JZFIN25KZUXMXCQRY2F47KE4ME724EU1ACF0W2LW6PU07AP5VAVKHSI5WJK1PNY91EM37FWDJSV6B7605PCTG67Y1ZWV2ESISM96W94VP6SD321K6XBCVO1ZFHW5SQBYW09Q5AU7N9RMA68Q0MF5YNLHYT9QLN93SCTQ3Y34T8778C1IH27UEE39Z06E7J0LJVRIXJ8S578W1VV6HXWCFGDDREWOTDOJMYU' where id=48; -update noar tt set v0='2C0TDDNSU7F74W7DMOWTC5XOZQXLJ92FXHA2Z0RG6S9TLQ951G3DOXGXFYXBNZF6BS4KMKUPTEOB7OQDXJVAA3SQN4P6Z60GPUV30RM293QF5KGQC2QZG1M4CX5UVI5KTM665SIV3JCCBGO0AUC6MTKFET3NCKU5VZEZ3NQS0J55IG3PAA8HJIQNIHIS02JZW2J6RFBLBCIXORLAR8K3NGEROL7XP6SM63TV92W62X0976PZKBM6P52WYWQOTD79V' where id=49; -update noar ti set v0='2C0TDDNSU7F74W7DMOWTC5XOZQXLJ92FXHA2Z0RG6S9TLQ951G3DOXGXFYXBNZF6BS4KMKUPTEOB7OQDXJVAA3SQN4P6Z60GPUV30RM293QF5KGQC2QZG1M4CX5UVI5KTM665SIV3JCCBGO0AUC6MTKFET3NCKU5VZEZ3NQS0J55IG3PAA8HJIQNIHIS02JZW2J6RFBLBCIXORLAR8K3NGEROL7XP6SM63TV92W62X0976PZKBM6P52WYWQOTD79V' where id=49; -update noar tt set v1='HDZ5SU7YMR83FBT3WKOA5LUPSTW7V1XDWU4J6Y3RS8PJOY3V13AR9RXMPE4N507KEPWINZFRF9SMDKMZREGOL4F00LK058YWKGGCHVXN3046CBI4VD47MOD394R1A1LIDRW6G4S2X2XDEXB05IMCCQONA4KX6D0X47FV9OK9B1BSW841NF90A2ENVJ1V4AUE0SCLYGDMM1FSEW6VFAN2UE0ZFBTPBMMOAT26I027KHDFG9WSPIY004V16B1L5GZXN' where id=49; -update noar ti set v1='HDZ5SU7YMR83FBT3WKOA5LUPSTW7V1XDWU4J6Y3RS8PJOY3V13AR9RXMPE4N507KEPWINZFRF9SMDKMZREGOL4F00LK058YWKGGCHVXN3046CBI4VD47MOD394R1A1LIDRW6G4S2X2XDEXB05IMCCQONA4KX6D0X47FV9OK9B1BSW841NF90A2ENVJ1V4AUE0SCLYGDMM1FSEW6VFAN2UE0ZFBTPBMMOAT26I027KHDFG9WSPIY004V16B1L5GZXN' where id=49; -update noar tt set v2='0Y5VN6FHUGBM5YPMP7CT01J0W65C56RVJRSO43SVPIF2NVATZRMXKLS4AR56TOFK475SY5GK1Y44ABNA84UXAGS6LGEWYUTNBCHQ3J3S4S5YG84GWFJXW522BDINVHZBFPTQBLUYZKDPEQRXXTM3J83E2A2CVL056GK2GF3CHF85VTPW67VRG2A7M6ZPAKMA7WITDRU6Q4W5J6179J1ZOMT10EQHYHMHKCS8MHR70WJKFRGL8D68TYV1GXN6KPIJ1' where id=49; -update noar ti set v2='0Y5VN6FHUGBM5YPMP7CT01J0W65C56RVJRSO43SVPIF2NVATZRMXKLS4AR56TOFK475SY5GK1Y44ABNA84UXAGS6LGEWYUTNBCHQ3J3S4S5YG84GWFJXW522BDINVHZBFPTQBLUYZKDPEQRXXTM3J83E2A2CVL056GK2GF3CHF85VTPW67VRG2A7M6ZPAKMA7WITDRU6Q4W5J6179J1ZOMT10EQHYHMHKCS8MHR70WJKFRGL8D68TYV1GXN6KPIJ1' where id=49; -update noar tt set v3='JCKTSLW5IWQXWY843YYA3XVS7YAYOLUGO3TAA6TU80Z2R4X8X62IDZE8OV5UWN2X0223GQ6KJI2KVL6V7QCFHCJI2BWIA2RAPBROMVEV7DP6QHVRHVRWY40HU5KEYRDDMQNGMJTOHXS92NLRAXUEIWT5VB1PD6C2UVOMZOA6IDYP5PJE5V4HLPFGNHKSTBOQ9MA7A3FXC6TM3GEYAOO8LWDW43NXQX0FHCFTH9313Z7IXHNL5IZZVPSILVJ4FG2XI' where id=49; -update noar ti set v3='JCKTSLW5IWQXWY843YYA3XVS7YAYOLUGO3TAA6TU80Z2R4X8X62IDZE8OV5UWN2X0223GQ6KJI2KVL6V7QCFHCJI2BWIA2RAPBROMVEV7DP6QHVRHVRWY40HU5KEYRDDMQNGMJTOHXS92NLRAXUEIWT5VB1PD6C2UVOMZOA6IDYP5PJE5V4HLPFGNHKSTBOQ9MA7A3FXC6TM3GEYAOO8LWDW43NXQX0FHCFTH9313Z7IXHNL5IZZVPSILVJ4FG2XI' where id=49; -update noar tt set v0='B3HHCFWDMM36S7X9QJJKZ8NDSEGGEXOYOCOGD3BHTZY2TQE097IZUTOK1GI94G5O0C8Y7PRRYDHH0M1P8BLUVKJ6CANZ5W8MB9O8UCEYM0GHJ7E87ILTE7DJMH75O0YZ4MCL4ENVL9H50EIRLM9TRGUKDI1PJ9VP7212FE4R4HRBALY49DK80WRISGR45J3RHDP4ALOANMF1W8613CVLEHOJP17ZFNR4F3D7PZYPGHYPBTOWFGNY5F0APADJJC03U' where id=50; -update noar ti set v0='B3HHCFWDMM36S7X9QJJKZ8NDSEGGEXOYOCOGD3BHTZY2TQE097IZUTOK1GI94G5O0C8Y7PRRYDHH0M1P8BLUVKJ6CANZ5W8MB9O8UCEYM0GHJ7E87ILTE7DJMH75O0YZ4MCL4ENVL9H50EIRLM9TRGUKDI1PJ9VP7212FE4R4HRBALY49DK80WRISGR45J3RHDP4ALOANMF1W8613CVLEHOJP17ZFNR4F3D7PZYPGHYPBTOWFGNY5F0APADJJC03U' where id=50; -update noar tt set v1='ZSXVHFTF1ZYI8DN9M2RF2FLYQH0IPG3PZMXRYJCZ3P5MPT5I7SH5SJYE03PCP9U1NGYGD645O432EF8Q2K0O3U3LCRPWO7VWUMFLIQFF4Y6ZOLMZCGNZJHE0UP7G2T49ZHCADTGM726B1RS9LAQOPT2PVWMPA1Q2D8SNS2LQCAE6Q0PZ3HMKGZPTBUPH4TA5Y14W76LX2663FV8D4YN93IESPCOND3YZAD43QA1YD4TQEWXV9A3SOZE4V240AI0TE' where id=50; -update noar ti set v1='ZSXVHFTF1ZYI8DN9M2RF2FLYQH0IPG3PZMXRYJCZ3P5MPT5I7SH5SJYE03PCP9U1NGYGD645O432EF8Q2K0O3U3LCRPWO7VWUMFLIQFF4Y6ZOLMZCGNZJHE0UP7G2T49ZHCADTGM726B1RS9LAQOPT2PVWMPA1Q2D8SNS2LQCAE6Q0PZ3HMKGZPTBUPH4TA5Y14W76LX2663FV8D4YN93IESPCOND3YZAD43QA1YD4TQEWXV9A3SOZE4V240AI0TE' where id=50; -update noar tt set v2='COPC5PZKQW75H1JB2V99Q0EHRDMNABBZQJQXMV67XJAPZAAQY4UT3DDXS74SFLOOBPU88MCA3P6HEEKMZ4Y21SA37HK454OLCSWA2SSY0POBLL7CBLRP020YPTIBLZSYV8FK7G1DENNVIQ1KNIUMK7PQ5V4FPUAQMWTB5A0JQMB64K9U3ASGYQR3WXKVTF3PMCAAMDU5UBLO62YGTD3VI5CZQGCAF9W8O0RXXNEKQP30HJDYJHLE20L92L8L2Y5KQ' where id=50; -update noar ti set v2='COPC5PZKQW75H1JB2V99Q0EHRDMNABBZQJQXMV67XJAPZAAQY4UT3DDXS74SFLOOBPU88MCA3P6HEEKMZ4Y21SA37HK454OLCSWA2SSY0POBLL7CBLRP020YPTIBLZSYV8FK7G1DENNVIQ1KNIUMK7PQ5V4FPUAQMWTB5A0JQMB64K9U3ASGYQR3WXKVTF3PMCAAMDU5UBLO62YGTD3VI5CZQGCAF9W8O0RXXNEKQP30HJDYJHLE20L92L8L2Y5KQ' where id=50; -update noar tt set v3='2Y4IEE44CZIVJGG3BGLHB716UH5O4VXM68VM0FH98H3QSGAI8O2KBX0ETV3H2GGI2PD4Z07MHPCONPUBPSW3YBGJWPNGFDXB37LFR42K50JC7U77P0RAC1TE178LD01S0FRFQ5JSKW92H56CO0I90SLALKABB0ABWCK28UF4Q2N7UIFIQXUMNQ88B5CJBRC4SKWX8B394TR19HTNHRCEUWMLIJCPBMD03T18API3U3H4Y38DY4HH40EVVXDRC6AEF' where id=50; -update noar ti set v3='2Y4IEE44CZIVJGG3BGLHB716UH5O4VXM68VM0FH98H3QSGAI8O2KBX0ETV3H2GGI2PD4Z07MHPCONPUBPSW3YBGJWPNGFDXB37LFR42K50JC7U77P0RAC1TE178LD01S0FRFQ5JSKW92H56CO0I90SLALKABB0ABWCK28UF4Q2N7UIFIQXUMNQ88B5CJBRC4SKWX8B394TR19HTNHRCEUWMLIJCPBMD03T18API3U3H4Y38DY4HH40EVVXDRC6AEF' where id=50; -update noar tt set v0='9KAHWAZ10DNAUVX8VNCBF3YLYN9PX46Z5G90PYYNZLGZCPQWJIARY2NCSHOTWR3I6NLGMQHVPCOKSC3AFORY2GCJSOIAVUOP2N6RQSX42S6871K6M3O4QTKLMLQNMLJ4DOQWYRIRAI1RV021FVCT0YP79ILOEWQCIDQVBDP7MMCZIIGOFBQU87QC8YUZIZMN1STRRC8ZQULPVG3PA4M0IPCM198HH95X2UEIGL671YCYIJPUIBYFBK6LODY8RO9EE' where id=51; -update noar ti set v0='9KAHWAZ10DNAUVX8VNCBF3YLYN9PX46Z5G90PYYNZLGZCPQWJIARY2NCSHOTWR3I6NLGMQHVPCOKSC3AFORY2GCJSOIAVUOP2N6RQSX42S6871K6M3O4QTKLMLQNMLJ4DOQWYRIRAI1RV021FVCT0YP79ILOEWQCIDQVBDP7MMCZIIGOFBQU87QC8YUZIZMN1STRRC8ZQULPVG3PA4M0IPCM198HH95X2UEIGL671YCYIJPUIBYFBK6LODY8RO9EE' where id=51; -update noar tt set v1='JRRFBWT3MDK1VJR7GS0Y6EPQ755EVK4V5OOCXKKO4OKTAD2GFM0GFCYR66Z753H15CK2K4Q708CXAADGRV5QFBI5X96COO90GI0IIXKO01ADVJYJFC2AHXZSPE0IJAPYATBPL4XUBYLYTU13MACVU3XBUP6KTQ51BLU5DZJCTK9PR46AU4AU7LRNAP5AZF0YCGHV7ACK90XEO6H8KOYOFYPCNF065RUGM3JWCVC5LUDPJDSGA4I8SZ2I48IRX9NQK' where id=51; -update noar ti set v1='JRRFBWT3MDK1VJR7GS0Y6EPQ755EVK4V5OOCXKKO4OKTAD2GFM0GFCYR66Z753H15CK2K4Q708CXAADGRV5QFBI5X96COO90GI0IIXKO01ADVJYJFC2AHXZSPE0IJAPYATBPL4XUBYLYTU13MACVU3XBUP6KTQ51BLU5DZJCTK9PR46AU4AU7LRNAP5AZF0YCGHV7ACK90XEO6H8KOYOFYPCNF065RUGM3JWCVC5LUDPJDSGA4I8SZ2I48IRX9NQK' where id=51; -update noar tt set v2='DT8A7KD7QYXD1I317W44YGUSBL22DITUVKYKNT571EHPOW96XW6LTS3JRVOHW3Q0VLF8XEY6KLV05G6K2YLZEW0TMVBH5W02384Y17V1MILYCAXZMF5HGRBPUQPNE90S85AM6M0HNHLQKP9I0OJJC3CJ18S29BD1CMJXHF1SX119EN8T3RDXCI7T77EP655KYQJ5C8OA3V20FDY01UIBYB4KR7NZ2W60ZNY00AADOHIAN0CNHT8RXUI586Z65LOPZ' where id=51; -update noar ti set v2='DT8A7KD7QYXD1I317W44YGUSBL22DITUVKYKNT571EHPOW96XW6LTS3JRVOHW3Q0VLF8XEY6KLV05G6K2YLZEW0TMVBH5W02384Y17V1MILYCAXZMF5HGRBPUQPNE90S85AM6M0HNHLQKP9I0OJJC3CJ18S29BD1CMJXHF1SX119EN8T3RDXCI7T77EP655KYQJ5C8OA3V20FDY01UIBYB4KR7NZ2W60ZNY00AADOHIAN0CNHT8RXUI586Z65LOPZ' where id=51; -update noar tt set v3='SNHO586PPIZR0DG5HB9LTH3OAJDR144L4XU36B2AXRPRMT962ICONI83IM9DA09HAI00SXIN2D05X8Y3PZEDD6QWKJAT3NEYGCPYBMSW6A71BNL0VU0PP18FYPS8SDP2RYQHNO21XG79X7X8O9JO739K701LARL9GCV08H02WDC712I4I6N579H8J3BLB99N1P7WXNSGMNGYIAL5GJSY73A27CGDA7335YCZWGNV7NVF6SNTD3Q2ESRQ3Z46FQ3PY' where id=51; -update noar ti set v3='SNHO586PPIZR0DG5HB9LTH3OAJDR144L4XU36B2AXRPRMT962ICONI83IM9DA09HAI00SXIN2D05X8Y3PZEDD6QWKJAT3NEYGCPYBMSW6A71BNL0VU0PP18FYPS8SDP2RYQHNO21XG79X7X8O9JO739K701LARL9GCV08H02WDC712I4I6N579H8J3BLB99N1P7WXNSGMNGYIAL5GJSY73A27CGDA7335YCZWGNV7NVF6SNTD3Q2ESRQ3Z46FQ3PY' where id=51; -update noar tt set v0='YJVAP3M8GHRF00KTP134RRE07NBYCXP67FYM7F2RQBAUV5LZAESBVU6ANEG7XZ9OD7SGDHLR6U94TIQWHLCXPFTNERL3RSXH49L2H3RXCRBYXI4TIM98QHEFHXW1Y3HNEANNV5D9TPTTENGEBMNRO84Z4SR3K7CMJI0MKDVLP7MH9EC3YKYZDG0S1RPMCDS1Y25B5B1UN84K7RAU01X6T1S3S30KP86C3WPU1QZF7K46G1NYXOVI6RF1ZPFFVNA85' where id=52; -update noar ti set v0='YJVAP3M8GHRF00KTP134RRE07NBYCXP67FYM7F2RQBAUV5LZAESBVU6ANEG7XZ9OD7SGDHLR6U94TIQWHLCXPFTNERL3RSXH49L2H3RXCRBYXI4TIM98QHEFHXW1Y3HNEANNV5D9TPTTENGEBMNRO84Z4SR3K7CMJI0MKDVLP7MH9EC3YKYZDG0S1RPMCDS1Y25B5B1UN84K7RAU01X6T1S3S30KP86C3WPU1QZF7K46G1NYXOVI6RF1ZPFFVNA85' where id=52; -update noar tt set v1='7PWERZDMXS5W3D0RULJNJUIL3O480IR9MIYLGWXHNIYIU9HP38MUP1DA9D6NSEHZ2XL0RTIUI0EEAQV56KOHSAMJY8KYBV52CBO2HLRIQZQYHZZ4TBFHQH23RNMXEIFGXR2KVYU4QFQX5WRIOE1X40TOK58YVP8RU48HR8088RE5J27Y2GRCAKP7OE6DJFCJMHGSRNAY47LYE8FY4EWNI2UK0OEDMAV71EPOU043URXT6TLOC0G6LKMHLHZ285MLJ' where id=52; -update noar ti set v1='7PWERZDMXS5W3D0RULJNJUIL3O480IR9MIYLGWXHNIYIU9HP38MUP1DA9D6NSEHZ2XL0RTIUI0EEAQV56KOHSAMJY8KYBV52CBO2HLRIQZQYHZZ4TBFHQH23RNMXEIFGXR2KVYU4QFQX5WRIOE1X40TOK58YVP8RU48HR8088RE5J27Y2GRCAKP7OE6DJFCJMHGSRNAY47LYE8FY4EWNI2UK0OEDMAV71EPOU043URXT6TLOC0G6LKMHLHZ285MLJ' where id=52; -update noar tt set v2='ABTN68797XZX1XLT9UYN6TW14OVIYIMEUOTGE0CL2FD0D65APM7UZN4CDF6Q4JKLWGUU2DWKMKTUKZSXIH3J3XXV1YNDMC8C9HAYQ8118P9FRH30I430WD8AUQXM6MSI6SGDFT0CSAHWVPEZL1PEIE453GF38116NVPVB9YMYOOYGE3ZPUP5H4MZ9G3JZKEGPBGJ2HD26M18SPOBNJTEUSFZHRCCACIE3BD18BLOMVB4MJ2MKVSIWBO1A26T69X1P' where id=52; -update noar ti set v2='ABTN68797XZX1XLT9UYN6TW14OVIYIMEUOTGE0CL2FD0D65APM7UZN4CDF6Q4JKLWGUU2DWKMKTUKZSXIH3J3XXV1YNDMC8C9HAYQ8118P9FRH30I430WD8AUQXM6MSI6SGDFT0CSAHWVPEZL1PEIE453GF38116NVPVB9YMYOOYGE3ZPUP5H4MZ9G3JZKEGPBGJ2HD26M18SPOBNJTEUSFZHRCCACIE3BD18BLOMVB4MJ2MKVSIWBO1A26T69X1P' where id=52; -update noar tt set v3='BME8T6JHZK2ADGLZNTMFMJVCKJM18KRG5LY1VDP1AX324XAWOKZZ1L0HPYLHVEK3U6VZWPEBZRHOLBXQHKIL2275L8I65EIZDNTWFSVHXEM8AUDDFVLZGYL8D7TQ4ANRHBXYMQ02JO87CEC8R4HIXUGSPK3HLWHEM3VDGF5BBKCUJXE5MGNOCM5Z6111C8TGS937QI7FLWOE13MX0U718H2VEIAMPCYD9UIB83RPRBOQ4MSE81G88OD5PB4USJQTT' where id=52; -update noar ti set v3='BME8T6JHZK2ADGLZNTMFMJVCKJM18KRG5LY1VDP1AX324XAWOKZZ1L0HPYLHVEK3U6VZWPEBZRHOLBXQHKIL2275L8I65EIZDNTWFSVHXEM8AUDDFVLZGYL8D7TQ4ANRHBXYMQ02JO87CEC8R4HIXUGSPK3HLWHEM3VDGF5BBKCUJXE5MGNOCM5Z6111C8TGS937QI7FLWOE13MX0U718H2VEIAMPCYD9UIB83RPRBOQ4MSE81G88OD5PB4USJQTT' where id=52; -update noar tt set v0='VVDXG9N95ESO8IZRXAB7BA7WWBVNQW2ZJ65ISS288DK86W5ZL00OLY8T643JXCH9W3AL4H0RP44RH3LVLKROYRI0NYM27I0Q50IJVBNHJBDZN44DU53NZ0200DTHY481FVC4X5S1PTY6KVTJ7J222HBBNHI5MKROU0MPHVS0RBEP934UBIGS9MZVXMCKQRTDR6MI93B699XQGIHY40TIPI3L21QTI0873ZVZGWNEEY7P8T36M1F2VVPX6HS5SWM5O' where id=53; -update noar ti set v0='VVDXG9N95ESO8IZRXAB7BA7WWBVNQW2ZJ65ISS288DK86W5ZL00OLY8T643JXCH9W3AL4H0RP44RH3LVLKROYRI0NYM27I0Q50IJVBNHJBDZN44DU53NZ0200DTHY481FVC4X5S1PTY6KVTJ7J222HBBNHI5MKROU0MPHVS0RBEP934UBIGS9MZVXMCKQRTDR6MI93B699XQGIHY40TIPI3L21QTI0873ZVZGWNEEY7P8T36M1F2VVPX6HS5SWM5O' where id=53; -update noar tt set v1='QHS4I64K5EI379CFKU6BR5HOCUT4XAY72IRWTQM18YK6CPKGF3ZEUQQZ9TDB4R2BFXSG6SM8BHSQ6AKMN87UZ7L6AF8TCDG5EOWIZYHFVHYR7B4FAW9MVB4QWC354YLE1RV0YUZ6RZI5HHJW9JQXP9R0IOPD9GL9O4F7ANDCN2EHIQATI2UJ89IBNMZRJG2T56KNTL0J87BHL8OA5KXCXK9G69JDZVT8GIE2CS4LT352VKMTLKI5BR8X8C33MCHL3' where id=53; -update noar ti set v1='QHS4I64K5EI379CFKU6BR5HOCUT4XAY72IRWTQM18YK6CPKGF3ZEUQQZ9TDB4R2BFXSG6SM8BHSQ6AKMN87UZ7L6AF8TCDG5EOWIZYHFVHYR7B4FAW9MVB4QWC354YLE1RV0YUZ6RZI5HHJW9JQXP9R0IOPD9GL9O4F7ANDCN2EHIQATI2UJ89IBNMZRJG2T56KNTL0J87BHL8OA5KXCXK9G69JDZVT8GIE2CS4LT352VKMTLKI5BR8X8C33MCHL3' where id=53; -update noar tt set v2='69PMN7LPEUKCD1F98FHR3VNX0TEGV0Q1TNNR16NWKW3ODHO4OSIH7CBWO0N8N45F5SVVC3COIJ43P9W9CO67V9RK2256JGUXMGL4HHLZ9C6QLME8IJYV2OB14RHOUC3773EI87QKVK58JZNAS65GELEWQFU93EP1LCVBPXI7CQL94FCHEKQ060BD0H8CO4BRDWY3KZVIRNAB8Q28KLWDH8R34NSUPN4WCOJ46DWZBXUT93L3A58J79314YWZM9RR9' where id=53; -update noar ti set v2='69PMN7LPEUKCD1F98FHR3VNX0TEGV0Q1TNNR16NWKW3ODHO4OSIH7CBWO0N8N45F5SVVC3COIJ43P9W9CO67V9RK2256JGUXMGL4HHLZ9C6QLME8IJYV2OB14RHOUC3773EI87QKVK58JZNAS65GELEWQFU93EP1LCVBPXI7CQL94FCHEKQ060BD0H8CO4BRDWY3KZVIRNAB8Q28KLWDH8R34NSUPN4WCOJ46DWZBXUT93L3A58J79314YWZM9RR9' where id=53; -update noar tt set v3='WQXSFYOTDQVPELU3QL0ROQ6Z0ES0DL34NV77V594W4MQJYUR1HWC102D4A3UZW6HFY6JFY2TU9KZ3PUHPVO2QHM50OD4OVRHSGF323TMPPBDHQMSIFHPULH6LW99FDD7V1XEHSRKUL7YNGEH6RUPE97P3L9883Y6Z98APJ6KJPVQNLESADXC79LT5W82M3ALIMMIF3ELDIE8UNMJA6GWLXH17FIH8R26N842SD2W6CLN2LIG550Y5PMO2JFC0DF3B' where id=53; -update noar ti set v3='WQXSFYOTDQVPELU3QL0ROQ6Z0ES0DL34NV77V594W4MQJYUR1HWC102D4A3UZW6HFY6JFY2TU9KZ3PUHPVO2QHM50OD4OVRHSGF323TMPPBDHQMSIFHPULH6LW99FDD7V1XEHSRKUL7YNGEH6RUPE97P3L9883Y6Z98APJ6KJPVQNLESADXC79LT5W82M3ALIMMIF3ELDIE8UNMJA6GWLXH17FIH8R26N842SD2W6CLN2LIG550Y5PMO2JFC0DF3B' where id=53; -update noar tt set v0='K451G7CBWQ1GDYNQ2IJVP4WCF11S8GN9SWKENYCC1D7693YTX6GUAZC47G4AGAT6BFOKT478NF86E5O4O68XEB11Y43CDZPK8AKQJKDUO7CW81D3CHBI7KFLVUY3PU3RLGXUR3HIM1SEVZQEWQI2I4RNGV3CCFYSR0NT2I2WPE5Z4EHT756BNSOI1ZCHGE92XX7MURLZURPF3OAKHDVKGZTBBN0BEKHIGPATVYBX2L7DR5Z6YYOTP1640E8BWT7CK' where id=54; -update noar ti set v0='K451G7CBWQ1GDYNQ2IJVP4WCF11S8GN9SWKENYCC1D7693YTX6GUAZC47G4AGAT6BFOKT478NF86E5O4O68XEB11Y43CDZPK8AKQJKDUO7CW81D3CHBI7KFLVUY3PU3RLGXUR3HIM1SEVZQEWQI2I4RNGV3CCFYSR0NT2I2WPE5Z4EHT756BNSOI1ZCHGE92XX7MURLZURPF3OAKHDVKGZTBBN0BEKHIGPATVYBX2L7DR5Z6YYOTP1640E8BWT7CK' where id=54; -update noar tt set v1='IMPDJLFC0K0EHX90WZNJMZ1HSANIUK2M2EV1ODSS7CDICR8MXIHIP49A2TCJA95TN7YSKXZZPCS1GCG69QUU80F650W6SZ2T7L4XZ6ZZJE3MZYEENSU6B3APHR44S5XCYRV5GWOEHXH3DOHOETADYNF838LO9OHQTDP32XP3LV99STJ8V3UL3X9RXXNMYK63VKIHQRRLZB6SITJCWP95A1XYUXBQOCI1BO1JHMY38PXZOHXLPPG2CZYIBAV6NQ3ZF' where id=54; -update noar ti set v1='IMPDJLFC0K0EHX90WZNJMZ1HSANIUK2M2EV1ODSS7CDICR8MXIHIP49A2TCJA95TN7YSKXZZPCS1GCG69QUU80F650W6SZ2T7L4XZ6ZZJE3MZYEENSU6B3APHR44S5XCYRV5GWOEHXH3DOHOETADYNF838LO9OHQTDP32XP3LV99STJ8V3UL3X9RXXNMYK63VKIHQRRLZB6SITJCWP95A1XYUXBQOCI1BO1JHMY38PXZOHXLPPG2CZYIBAV6NQ3ZF' where id=54; -update noar tt set v2='70WYQKTFS682JBEWD82T2YY384U1LZIQMJFGRPYL2JEUQR28AWQ19ATEWXONOKGXEON0TMW107Z1ZXZY2OC3O4FMBPUDH3Q6ILCW3VJHEES8KDZCYP8ZJAYB28Q9189FJ6744G8IHMZPTCY9LSJPLGIP38GAHEOETBGTPSETFSMNI2YW17FZQZ299CYHXQHN70RM4A04M6CQG0E7HPU4GRHKKE0Z82PM47DNB8ZY3LUUT6242SUDD4P3FU5HXV3Y1' where id=54; -update noar ti set v2='70WYQKTFS682JBEWD82T2YY384U1LZIQMJFGRPYL2JEUQR28AWQ19ATEWXONOKGXEON0TMW107Z1ZXZY2OC3O4FMBPUDH3Q6ILCW3VJHEES8KDZCYP8ZJAYB28Q9189FJ6744G8IHMZPTCY9LSJPLGIP38GAHEOETBGTPSETFSMNI2YW17FZQZ299CYHXQHN70RM4A04M6CQG0E7HPU4GRHKKE0Z82PM47DNB8ZY3LUUT6242SUDD4P3FU5HXV3Y1' where id=54; -update noar tt set v3='B1QS7BYUJ1G9II6JLAWLFNF3ZDNLLW7Y2VPQI34R83CQZC8L4RFHFQME0VMOO4GC3VG8XBP2FULKWGW9PQOZT7059BO0MCS6M44XEIOQE2JUDG67GLIMSXNWXL7NGN90FUOOSS3T60SM3WPF7JSM2WUMUOI4VY98MLG6J98OD712VGJ1Y65GXZT0PPJQ2WJ8FGGFDDXFQ5PAZ15TPZO5OKUZFXBRU2SXKRX72THILRNIPGETT0EZXEMSGU1Y8DJXJ' where id=54; -update noar ti set v3='B1QS7BYUJ1G9II6JLAWLFNF3ZDNLLW7Y2VPQI34R83CQZC8L4RFHFQME0VMOO4GC3VG8XBP2FULKWGW9PQOZT7059BO0MCS6M44XEIOQE2JUDG67GLIMSXNWXL7NGN90FUOOSS3T60SM3WPF7JSM2WUMUOI4VY98MLG6J98OD712VGJ1Y65GXZT0PPJQ2WJ8FGGFDDXFQ5PAZ15TPZO5OKUZFXBRU2SXKRX72THILRNIPGETT0EZXEMSGU1Y8DJXJ' where id=54; -update noar tt set v0='FT2E93NV3QCL4IENSLMVPXJLRU9UZU8YDHW4VIDTKVE07PD6P7H57NHA6RLP2ZXKDVQKLX2PU79IC5889CP7L5PBKWHE233WKFD0YI5LT3N9IQVA712JAGK7SE72IW2YXON7UELGIC751UTSA7BFLEQ4OXKAWTXOR89HFWI2WPF2TSY13SZA063F9EO2W0714N1TCC23HVLF2FIZFGHI0NUEL127HE7I1YW9A254IEM4T4CEEP8T613FC5WG05CEN' where id=55; -update noar ti set v0='FT2E93NV3QCL4IENSLMVPXJLRU9UZU8YDHW4VIDTKVE07PD6P7H57NHA6RLP2ZXKDVQKLX2PU79IC5889CP7L5PBKWHE233WKFD0YI5LT3N9IQVA712JAGK7SE72IW2YXON7UELGIC751UTSA7BFLEQ4OXKAWTXOR89HFWI2WPF2TSY13SZA063F9EO2W0714N1TCC23HVLF2FIZFGHI0NUEL127HE7I1YW9A254IEM4T4CEEP8T613FC5WG05CEN' where id=55; -update noar tt set v1='UUSG8E3OZ5GU6JFEAZDZTUVPU9D77QDLVFI72LED3KD8M12EEA0MA7PTSZHWQCSFRZR7Y915OWFLXULX76VYURNKPP0CM6RYKF2Y26QBRWT4UF76EOCCYBSJYB2RB0DSRU44C2AOWT9QA29IOUVSYA2TNPVR0ZL6J3NB0I9BY6BD4G3AOYKJ0RRGOUD0Q47A0BS7TSRFCL9O5B82VDZ55AUE1RMCWF2K0X88OIWTZKWG652YYGJRCKUBF5LW5HLVK' where id=55; -update noar ti set v1='UUSG8E3OZ5GU6JFEAZDZTUVPU9D77QDLVFI72LED3KD8M12EEA0MA7PTSZHWQCSFRZR7Y915OWFLXULX76VYURNKPP0CM6RYKF2Y26QBRWT4UF76EOCCYBSJYB2RB0DSRU44C2AOWT9QA29IOUVSYA2TNPVR0ZL6J3NB0I9BY6BD4G3AOYKJ0RRGOUD0Q47A0BS7TSRFCL9O5B82VDZ55AUE1RMCWF2K0X88OIWTZKWG652YYGJRCKUBF5LW5HLVK' where id=55; -update noar tt set v2='8IHXAKH9PJDI4NBT0U1XF6XCEXWYQGM1YQZWTNIBVGLGMZFOMG90W3OP69W83KI4A660G79B19U3LNBX5TL8TN9D6LSDDAOZHD4S9H95BOS0Y46JT4ESTEIXPGZY1847UTEODJ822CO4OG2OOJZWCZR3O16GVWZ7OVDW5K8M3YISQ0WLH0VRY0PBUMK095ZK4YA2XA68NTRFM70M798Q2IM8QJD6SAXCCHNCTWBEAHNPB9AD9AUFADZF4SRA28NTZ' where id=55; -update noar ti set v2='8IHXAKH9PJDI4NBT0U1XF6XCEXWYQGM1YQZWTNIBVGLGMZFOMG90W3OP69W83KI4A660G79B19U3LNBX5TL8TN9D6LSDDAOZHD4S9H95BOS0Y46JT4ESTEIXPGZY1847UTEODJ822CO4OG2OOJZWCZR3O16GVWZ7OVDW5K8M3YISQ0WLH0VRY0PBUMK095ZK4YA2XA68NTRFM70M798Q2IM8QJD6SAXCCHNCTWBEAHNPB9AD9AUFADZF4SRA28NTZ' where id=55; -update noar tt set v3='THPPDHEFNY8IAZKHNH57S5Q5JGI612U28HGOSUYPCO2WHS77MG6Q1EWMX5FE63JQIWIT2OJS3PZYDBOD2KV3MWMYBI36LSW9WLIDFC9PP318YY7N81JEE8KBXG2JWNSXBBBKSEL7ZV7FBU8VAGNPCP8KG1PM5CKDYSVBDIDA7T2C8XH3VT30PH1BHIBS7F884Q0X22531UDULHUNV50L4CKIDJYR6QDYJOWRFW1ONDMPLKYNR1O7R3EUF3PNSEB1Z' where id=55; -update noar ti set v3='THPPDHEFNY8IAZKHNH57S5Q5JGI612U28HGOSUYPCO2WHS77MG6Q1EWMX5FE63JQIWIT2OJS3PZYDBOD2KV3MWMYBI36LSW9WLIDFC9PP318YY7N81JEE8KBXG2JWNSXBBBKSEL7ZV7FBU8VAGNPCP8KG1PM5CKDYSVBDIDA7T2C8XH3VT30PH1BHIBS7F884Q0X22531UDULHUNV50L4CKIDJYR6QDYJOWRFW1ONDMPLKYNR1O7R3EUF3PNSEB1Z' where id=55; -update noar tt set v0='DGJZ5OJ8R4AZGL4857EH3S8E0NPHE3SW4XXNWRAD7ITLBIK6YMETRJQI5QFEFA6R471R7G4360YFKJJUKFXTDFXXRTZHJ8721BMSDADG5FJE5MMWO9HCOGJVQGRLENPH3H66OHNMGT5URDWZNSOKFHJT5KE7PLKN6CLWSPL6QZLZH7703V9RPJMW5RRZ3UY9JCSJQW8M79S3KKFHPV39IY2L33XUTGZA9D6T39O35EC50EPK3HIWSTJ2ZMI4OZN7D' where id=56; -update noar ti set v0='DGJZ5OJ8R4AZGL4857EH3S8E0NPHE3SW4XXNWRAD7ITLBIK6YMETRJQI5QFEFA6R471R7G4360YFKJJUKFXTDFXXRTZHJ8721BMSDADG5FJE5MMWO9HCOGJVQGRLENPH3H66OHNMGT5URDWZNSOKFHJT5KE7PLKN6CLWSPL6QZLZH7703V9RPJMW5RRZ3UY9JCSJQW8M79S3KKFHPV39IY2L33XUTGZA9D6T39O35EC50EPK3HIWSTJ2ZMI4OZN7D' where id=56; -update noar tt set v1='YTIQEU3A4OSHIHSIGPYTDDHH92K330QTDKP77E4M7NL4SIU6KTUINUFLDMP060CIG9O7BR8JBT4EK4NZV15J9AYJK4H1WTBH93MSFMWXZ7XZEZCY0PF6TOSOIW3FTA966GCCSO45D0FCXV1S12LSYS50F5QE8QZB2UW9MNBVU567BTFXAPRKXRKN4VNFFRV7BYY2TRTON7GJW6GULABHXCQEZMD6HVD74HP9JXR3QIHHQZ6CT5F8S6A28UXWYNMCW' where id=56; -update noar ti set v1='YTIQEU3A4OSHIHSIGPYTDDHH92K330QTDKP77E4M7NL4SIU6KTUINUFLDMP060CIG9O7BR8JBT4EK4NZV15J9AYJK4H1WTBH93MSFMWXZ7XZEZCY0PF6TOSOIW3FTA966GCCSO45D0FCXV1S12LSYS50F5QE8QZB2UW9MNBVU567BTFXAPRKXRKN4VNFFRV7BYY2TRTON7GJW6GULABHXCQEZMD6HVD74HP9JXR3QIHHQZ6CT5F8S6A28UXWYNMCW' where id=56; -update noar tt set v2='M6BC8QTDAGG5OA7OJ2SYLFRKD21LTTSVT80V7U0ELLZM2K4X3ZE57LRFCQIQXWP5HIN8LYKG2665JWNHRTGLCHPW8ROL3NIR1KGQ0DUZ4EDDHRENJHIOHIS5OKWIZ2WIOAEOOB73EFVCLQBHECG7UYMIAN1MWE25AX5AI05M00YNXI6WW3Z19AO59SVIKJ6SLSARG1OXAP4HKK11JJOBI8WLZSGD9YHQN9L8LVEVI30HV9KHV1HSUUJ8VY49M3LXI' where id=56; -update noar ti set v2='M6BC8QTDAGG5OA7OJ2SYLFRKD21LTTSVT80V7U0ELLZM2K4X3ZE57LRFCQIQXWP5HIN8LYKG2665JWNHRTGLCHPW8ROL3NIR1KGQ0DUZ4EDDHRENJHIOHIS5OKWIZ2WIOAEOOB73EFVCLQBHECG7UYMIAN1MWE25AX5AI05M00YNXI6WW3Z19AO59SVIKJ6SLSARG1OXAP4HKK11JJOBI8WLZSGD9YHQN9L8LVEVI30HV9KHV1HSUUJ8VY49M3LXI' where id=56; -update noar tt set v3='6MD7CL2Y95KE3EWVVTI1LF3VUTYERI7GYMABRNVLRJ5N37SWEVTXPTLQU4A3B7MR7KXC5DRHHO1LAWQYPD7RZA04GCZ7C9YOPODJMQ029IV4QZ31QV90UADVTTNC4OCAHET05IMFZ6TH3RE7C1ZBL2O54EHFAN0LCGUZPMWWGQUU2Z4LG2A0ERHT32OIHPMJ1TR5UNSTSU7QZW9L9MERFPWHH4CHQV8K9XWPGZOH6AZ8E7JL6AVECMHLRBMEJ5LLV' where id=56; -update noar ti set v3='6MD7CL2Y95KE3EWVVTI1LF3VUTYERI7GYMABRNVLRJ5N37SWEVTXPTLQU4A3B7MR7KXC5DRHHO1LAWQYPD7RZA04GCZ7C9YOPODJMQ029IV4QZ31QV90UADVTTNC4OCAHET05IMFZ6TH3RE7C1ZBL2O54EHFAN0LCGUZPMWWGQUU2Z4LG2A0ERHT32OIHPMJ1TR5UNSTSU7QZW9L9MERFPWHH4CHQV8K9XWPGZOH6AZ8E7JL6AVECMHLRBMEJ5LLV' where id=56; -update noar tt set v0='XY71VYW9EMPQ59SQ7MKUIPNBVBKJ6EM6DQF7GRJTM4SNZHUFK6VRXP24JXYZZ9FP6PCQIAQBHYN6YGD4LQ2OLYN23BJVK8LL8FBS64S6G3YPAZYBNJ7SL495FMZMPO2YNPLY5CXT8P4ZYT9TORHU8N0UWL2LAOW938C81JQLDSZR3FC5NBIOZ5T6AYJHQU1ZEIGYNW7NB1SF245QRL5PR2F9QB9B1YR47LATACOK41JZ2YEJAYJRO3HUN0G3X6VO8' where id=57; -update noar ti set v0='XY71VYW9EMPQ59SQ7MKUIPNBVBKJ6EM6DQF7GRJTM4SNZHUFK6VRXP24JXYZZ9FP6PCQIAQBHYN6YGD4LQ2OLYN23BJVK8LL8FBS64S6G3YPAZYBNJ7SL495FMZMPO2YNPLY5CXT8P4ZYT9TORHU8N0UWL2LAOW938C81JQLDSZR3FC5NBIOZ5T6AYJHQU1ZEIGYNW7NB1SF245QRL5PR2F9QB9B1YR47LATACOK41JZ2YEJAYJRO3HUN0G3X6VO8' where id=57; -update noar tt set v1='8N0TLAXW3AMYN44ZNRZCK9RFWSBQ4BHA2KFJ9AFUCPGRVUYQ79CGJRUIFS6E94EFXN0WABPM7OUI3D2033SM299S6XTMREPQF92XYTL7THW3IT735Z52PQRT5U0MTPITBY4Q1YZM0GWRUIODEFCTKSDNA554FZJZSKY37MSGJ9AOM0YZEY5N5BYFMS2TG7XJSJZ01E5Q46BTVQSPRJRCD9FUCNXK8GRY12H98ZTSP3EZ3R8ADLL2MS7ZHTSCS99YH' where id=57; -update noar ti set v1='8N0TLAXW3AMYN44ZNRZCK9RFWSBQ4BHA2KFJ9AFUCPGRVUYQ79CGJRUIFS6E94EFXN0WABPM7OUI3D2033SM299S6XTMREPQF92XYTL7THW3IT735Z52PQRT5U0MTPITBY4Q1YZM0GWRUIODEFCTKSDNA554FZJZSKY37MSGJ9AOM0YZEY5N5BYFMS2TG7XJSJZ01E5Q46BTVQSPRJRCD9FUCNXK8GRY12H98ZTSP3EZ3R8ADLL2MS7ZHTSCS99YH' where id=57; -update noar tt set v2='181IME83VOFM1CJ5NU5YRDV993DOHGVCBFDSW9JCQ7G7ORXW58239A10UYZV2S4VUKYNFSX159SXDOYX20HRL8CYEFC0M6V0OI07S1P3HIZ6OWDI3TFL5BXGPVBWKWAQQPZRPNKNHLMKEPFEYTP9NOP0KBGT3C5R0Y8YT6JH909BSFAM5HTR0PL7XZV5WLD0O58HELPH3Q1C95ILUGXYN3C4L8GJCP74U7EAPC99K6R7GPI4B6JW5RDI1WWUUF2J2' where id=57; -update noar ti set v2='181IME83VOFM1CJ5NU5YRDV993DOHGVCBFDSW9JCQ7G7ORXW58239A10UYZV2S4VUKYNFSX159SXDOYX20HRL8CYEFC0M6V0OI07S1P3HIZ6OWDI3TFL5BXGPVBWKWAQQPZRPNKNHLMKEPFEYTP9NOP0KBGT3C5R0Y8YT6JH909BSFAM5HTR0PL7XZV5WLD0O58HELPH3Q1C95ILUGXYN3C4L8GJCP74U7EAPC99K6R7GPI4B6JW5RDI1WWUUF2J2' where id=57; -update noar tt set v3='MAKEOJBJQT3M3QEOZFP2DHZMLBCOELYQCHWNV2TIRRBXWV7JNFMXG1D18OMJVLLNVD72YWNX20OOKWO7MDR1V5ZBW94IMUHZAQCJGY1YX4J8STOMZBBNCKGHA8DBEIGEH9OLGD5QNYRGVLEKTRZEML3P2Q99OT7BURN4G8EIRH68X1WW242ETZDDDU8XDMXQU87Z1AVKZSMF97FLDGLNY8HGCHT1X8PZ1L7UUK3OJG1NH6EWCG50SILBQA3775NUK' where id=57; -update noar ti set v3='MAKEOJBJQT3M3QEOZFP2DHZMLBCOELYQCHWNV2TIRRBXWV7JNFMXG1D18OMJVLLNVD72YWNX20OOKWO7MDR1V5ZBW94IMUHZAQCJGY1YX4J8STOMZBBNCKGHA8DBEIGEH9OLGD5QNYRGVLEKTRZEML3P2Q99OT7BURN4G8EIRH68X1WW242ETZDDDU8XDMXQU87Z1AVKZSMF97FLDGLNY8HGCHT1X8PZ1L7UUK3OJG1NH6EWCG50SILBQA3775NUK' where id=57; -update noar tt set v0='XNTCK6K8AXJTL5EURR61UE5KL4QI59LWZWL8W0XHOMUS7WY9D712T5QVUN24U5YG4XSSP1M1EPD9T36SGVOJDXE2XE8AKDZE2OM8DEGVT322JE6TBXA3CXAEGTBKI8WH2T29F08IOIW9U0JXKMOZOJD4LQH2R1RBHI9GYU2D2O5JZYETRJSFZILCXY2GSOO87LSGMO4COJJDJ3IMO5HPUC4TY4DPLFU6JNI2JDL7ZMKE78U1ZRFHGZP8C05X825HG' where id=58; -update noar ti set v0='XNTCK6K8AXJTL5EURR61UE5KL4QI59LWZWL8W0XHOMUS7WY9D712T5QVUN24U5YG4XSSP1M1EPD9T36SGVOJDXE2XE8AKDZE2OM8DEGVT322JE6TBXA3CXAEGTBKI8WH2T29F08IOIW9U0JXKMOZOJD4LQH2R1RBHI9GYU2D2O5JZYETRJSFZILCXY2GSOO87LSGMO4COJJDJ3IMO5HPUC4TY4DPLFU6JNI2JDL7ZMKE78U1ZRFHGZP8C05X825HG' where id=58; -update noar tt set v1='NITS3G6YX1LZILX51R77TPV16QLNHE0JE25FU308BD37CZ1R0UAVX8JVHH2IJA60HOEI2IUE7SCDEXHRXGYWD524FAHFTT7MEESDC35AKU47Z0JP804UFHR0V36WC23TT4NAI0S66ZOT1C5JCYMEF8CV8FSFWYPFJORAHMVA9BDIQT5S5P2MHURY44OHPQTTCCPGJ0YF5V2THSMP7ULLP2LXM3HC8S26ZKHOVFYJ3I9DUPIX7NTG4Q956GL7X7JSU' where id=58; -update noar ti set v1='NITS3G6YX1LZILX51R77TPV16QLNHE0JE25FU308BD37CZ1R0UAVX8JVHH2IJA60HOEI2IUE7SCDEXHRXGYWD524FAHFTT7MEESDC35AKU47Z0JP804UFHR0V36WC23TT4NAI0S66ZOT1C5JCYMEF8CV8FSFWYPFJORAHMVA9BDIQT5S5P2MHURY44OHPQTTCCPGJ0YF5V2THSMP7ULLP2LXM3HC8S26ZKHOVFYJ3I9DUPIX7NTG4Q956GL7X7JSU' where id=58; -update noar tt set v2='S0H4JFN1MX70SMLWUO4L939QUPPY9RV1GP0A446JOFH838XGFLOXU8T5EVXZQNS6ANFGKYOAM0TWK224MIJC0IHEKMSA4JE202TJ3Q76VG9E3UPRP7ZIO2FXXH5XBUAXYOJ82Y013CBX2K7S9FEV72ZHL1TZTM55O4ZCJU6P1ZR8E1WH59ATFPWAX7TT4NNSZ5F2BDFJH8Z1R7EUBPDO1DBYBOTWE8ZXTKAXUOHPRX8U7P598JXY5A2L86AHJG24S' where id=58; -update noar ti set v2='S0H4JFN1MX70SMLWUO4L939QUPPY9RV1GP0A446JOFH838XGFLOXU8T5EVXZQNS6ANFGKYOAM0TWK224MIJC0IHEKMSA4JE202TJ3Q76VG9E3UPRP7ZIO2FXXH5XBUAXYOJ82Y013CBX2K7S9FEV72ZHL1TZTM55O4ZCJU6P1ZR8E1WH59ATFPWAX7TT4NNSZ5F2BDFJH8Z1R7EUBPDO1DBYBOTWE8ZXTKAXUOHPRX8U7P598JXY5A2L86AHJG24S' where id=58; -update noar tt set v3='8WV6OJQZC90L4VLFY10MKFJ0JLW94M2U6FB2X95XNEKDFEDOWOR3WIXJ91PBY3JMAG84X3EDN9LEGK8G3TPOO5UTWRFJFXDN84804OMBSI36OKFEXAK5TCA8IVUNAEMNGOJM84XRU6AU88VMYVLXKC91P5N4L900PX9D6BCYZ4HIJS2GSTYFQN8F9ECT1JXYTE7FDPV2Y3D876ALNON62ZI3BB0P7I4QXIYM2PV8AUVWPG558AQRN3BEW7KDGY4KA' where id=58; -update noar ti set v3='8WV6OJQZC90L4VLFY10MKFJ0JLW94M2U6FB2X95XNEKDFEDOWOR3WIXJ91PBY3JMAG84X3EDN9LEGK8G3TPOO5UTWRFJFXDN84804OMBSI36OKFEXAK5TCA8IVUNAEMNGOJM84XRU6AU88VMYVLXKC91P5N4L900PX9D6BCYZ4HIJS2GSTYFQN8F9ECT1JXYTE7FDPV2Y3D876ALNON62ZI3BB0P7I4QXIYM2PV8AUVWPG558AQRN3BEW7KDGY4KA' where id=58; -update noar tt set v0='9G6I943PKYH7YHR8TW4RND8B97HJ856LCO5NU7KNH7Z2U6U7BTHO5DPFVNXNT9YB4DJQ2T5MOEBM7KUH039MNCN9IV8KDJ8VEJGK6LGN7VPZSB8YQFM5DHD6KGH48URDT7QDRQD3UBJ5ANNBN39NWT99OO0GDMB4PRA1KA4BYIPGHLZK27OCWFSIML3E0ZAE7NV0TID45GZYFZ6X4MFAVTB8TZ9720K9FD0IFD1FTM4L98N8154LTKW9OBHFZZ9DE' where id=59; -update noar ti set v0='9G6I943PKYH7YHR8TW4RND8B97HJ856LCO5NU7KNH7Z2U6U7BTHO5DPFVNXNT9YB4DJQ2T5MOEBM7KUH039MNCN9IV8KDJ8VEJGK6LGN7VPZSB8YQFM5DHD6KGH48URDT7QDRQD3UBJ5ANNBN39NWT99OO0GDMB4PRA1KA4BYIPGHLZK27OCWFSIML3E0ZAE7NV0TID45GZYFZ6X4MFAVTB8TZ9720K9FD0IFD1FTM4L98N8154LTKW9OBHFZZ9DE' where id=59; -update noar tt set v1='JFB48J7JXQWZHD2Q6X72OUDC83KI1OT0JUKOF3S0MMZIOV8BU9YMIA22R8WVD69ENZWOB562I69B9LN23EC9RAVBU8ITOMK82XFTX29NACAIXEIH7ANJQX9169M63N6Z5LDBCSQL5Y0W70D2HFALBKGI5XGW9X67YDK5COC0SMK3CJY8YCMP45PDF0GBDV1UR05QSG10DTNTQKLWWPD60SOIUFKAC1VKEBS0ZTFJ7FUPD6Z3COZWENX7ETPYP7P2Z' where id=59; -update noar ti set v1='JFB48J7JXQWZHD2Q6X72OUDC83KI1OT0JUKOF3S0MMZIOV8BU9YMIA22R8WVD69ENZWOB562I69B9LN23EC9RAVBU8ITOMK82XFTX29NACAIXEIH7ANJQX9169M63N6Z5LDBCSQL5Y0W70D2HFALBKGI5XGW9X67YDK5COC0SMK3CJY8YCMP45PDF0GBDV1UR05QSG10DTNTQKLWWPD60SOIUFKAC1VKEBS0ZTFJ7FUPD6Z3COZWENX7ETPYP7P2Z' where id=59; -update noar tt set v2='6C6KGZNIFUVCEFDBPIPJN6RYHIOYZF79HOT2UBVP65BIQVZFDNPZTI8D8YW5BFJAWTPNFGWUY7LK7EPQHRBVGJBLWJXRK85333TDB3NT1X32IQHBIORHU3SCHXRNUKZ6Y474F7ZKD2YTJR5ZTUR5AHJ82LYEXKGV0B6P5QFD7SBNJVQFNZGL48F7UHLSY4HVQ0NTSQJDGW588624MIIDXKO485ID9ZM0JJCMPB1UZVIS2LLHZC06RHQ9ZKXEFACHZ' where id=59; -update noar ti set v2='6C6KGZNIFUVCEFDBPIPJN6RYHIOYZF79HOT2UBVP65BIQVZFDNPZTI8D8YW5BFJAWTPNFGWUY7LK7EPQHRBVGJBLWJXRK85333TDB3NT1X32IQHBIORHU3SCHXRNUKZ6Y474F7ZKD2YTJR5ZTUR5AHJ82LYEXKGV0B6P5QFD7SBNJVQFNZGL48F7UHLSY4HVQ0NTSQJDGW588624MIIDXKO485ID9ZM0JJCMPB1UZVIS2LLHZC06RHQ9ZKXEFACHZ' where id=59; -update noar tt set v3='58W1GV25XYESW7KJ89OO4NEWR5L7ZFVKR8D4GTDW3M07UOA1FO9ZQBD6EN0WBO96KR1745XDYI4YP73DOMCA00QVV085QLBAYM08XBAULF0FJRX65ZTH5VQ7USAFX28WGDSL71W57LQGFFIFSQPZ4CS4JM1A64Z87IRYCRABUKSVRE42J98EDN8QADYINB2H2ZFZ1TVPMA5716GFT4HRQMUME5YSZPDX7CU80D1ZDAWI0WHBJMCPMMJ2SR52TP9SG' where id=59; -update noar ti set v3='58W1GV25XYESW7KJ89OO4NEWR5L7ZFVKR8D4GTDW3M07UOA1FO9ZQBD6EN0WBO96KR1745XDYI4YP73DOMCA00QVV085QLBAYM08XBAULF0FJRX65ZTH5VQ7USAFX28WGDSL71W57LQGFFIFSQPZ4CS4JM1A64Z87IRYCRABUKSVRE42J98EDN8QADYINB2H2ZFZ1TVPMA5716GFT4HRQMUME5YSZPDX7CU80D1ZDAWI0WHBJMCPMMJ2SR52TP9SG' where id=59; -update noar tt set v0='I73EEGL2XCVDFM7A1MMQA51II6O4Z5CURTJLOQUT8WU5MUQIHB9S3XBE2KYV6FIZSJBAWKORN9R8C18FJNGKRUEOZP2CAK5Z7ARBHDZP32OQ1QXKO3I4CVKY0P7L806TSOAO5K8J5TKQUKXKTGXA1SXEVVKD3RIX27U5BGXKD3G8OAXIJP0MYPLZODODEZA0S9P135GCMXK1OXIEAVQY89SKZJRP7497GNUMYBLA822NZV866G5RKQ2TW22RG8B9E' where id=60; -update noar ti set v0='I73EEGL2XCVDFM7A1MMQA51II6O4Z5CURTJLOQUT8WU5MUQIHB9S3XBE2KYV6FIZSJBAWKORN9R8C18FJNGKRUEOZP2CAK5Z7ARBHDZP32OQ1QXKO3I4CVKY0P7L806TSOAO5K8J5TKQUKXKTGXA1SXEVVKD3RIX27U5BGXKD3G8OAXIJP0MYPLZODODEZA0S9P135GCMXK1OXIEAVQY89SKZJRP7497GNUMYBLA822NZV866G5RKQ2TW22RG8B9E' where id=60; -update noar tt set v1='H7DSCRP710JNTL15CAT1LXSWBOP9D09FMYNBZXIO50DPXHVO8BY7AOZV0GYLM4Y4YI0BGL2NZ9NWRIXR23PSZJ2RXTLN51F8VN26CTSVN80Y2955254SZB85WZWHFYL8AAG6OSH45J4LQZL85GX026L44EYPFCK1RM2MI3PR7BTAJHUQRRFT4CR7YVAQDZTUV6RDSN45PVK4CTHCF6EJYFTQPZ4VEOXM1ORU0LYWEUTL9N2K9EAXO6AJG81DVVYQA' where id=60; -update noar ti set v1='H7DSCRP710JNTL15CAT1LXSWBOP9D09FMYNBZXIO50DPXHVO8BY7AOZV0GYLM4Y4YI0BGL2NZ9NWRIXR23PSZJ2RXTLN51F8VN26CTSVN80Y2955254SZB85WZWHFYL8AAG6OSH45J4LQZL85GX026L44EYPFCK1RM2MI3PR7BTAJHUQRRFT4CR7YVAQDZTUV6RDSN45PVK4CTHCF6EJYFTQPZ4VEOXM1ORU0LYWEUTL9N2K9EAXO6AJG81DVVYQA' where id=60; -update noar tt set v2='N3HL95RWNSMG5ULYW73MZAM9IJWAZTBW9V2Q77KUR45USYWZCFC135QQ808B9LH4RS7CN7JTPAE7997W8B5MFLGGZA94SOOE5STFWB423VIQU2JPCGKANAY9548RLVXFK614WN1U00TQMMOO3HJWDDPU6MQZ6YF9QHSPYR1KFM6E67DY39E3FF6D4Z4J3NXTZD7P3M4YRHYVW51UXZJJ0NXKK49L7AEK8SE3R0W6KH3IHNCLRU410JFRI6Z514U56' where id=60; -update noar ti set v2='N3HL95RWNSMG5ULYW73MZAM9IJWAZTBW9V2Q77KUR45USYWZCFC135QQ808B9LH4RS7CN7JTPAE7997W8B5MFLGGZA94SOOE5STFWB423VIQU2JPCGKANAY9548RLVXFK614WN1U00TQMMOO3HJWDDPU6MQZ6YF9QHSPYR1KFM6E67DY39E3FF6D4Z4J3NXTZD7P3M4YRHYVW51UXZJJ0NXKK49L7AEK8SE3R0W6KH3IHNCLRU410JFRI6Z514U56' where id=60; -update noar tt set v3='E5K3CYRB81ZAUEHY3IKPV60QVDE8H66DXJ6X2CCFQLJWDIYJ88W3IHJ0N59OYZNLCGZBDWXWVINI5P3GNZWV9TDCRA5H6SNTNNO1FSST8XB1C3FTOXJ8DNUS8VGWZ6VIV3XG48LWP7TAFE0WNRG6GBV8Z5UNGSA0RUVG4W1YV79AT1J6SZB0UFFRECY88HJD8Z0P68GSA82BBTKXFQMFKV095A42KKBE3BTUGQBFU654Z8H4X1W328JIHYKSNJ5Z7' where id=60; -update noar ti set v3='E5K3CYRB81ZAUEHY3IKPV60QVDE8H66DXJ6X2CCFQLJWDIYJ88W3IHJ0N59OYZNLCGZBDWXWVINI5P3GNZWV9TDCRA5H6SNTNNO1FSST8XB1C3FTOXJ8DNUS8VGWZ6VIV3XG48LWP7TAFE0WNRG6GBV8Z5UNGSA0RUVG4W1YV79AT1J6SZB0UFFRECY88HJD8Z0P68GSA82BBTKXFQMFKV095A42KKBE3BTUGQBFU654Z8H4X1W328JIHYKSNJ5Z7' where id=60; -update noar tt set v0='BC23ZSPXJFKOKVCR20RS9DYV100NC2SQ5PWICSU1N9CLH1X8FGLI43SP74I97O1I7P6D8Y09PWU3FFAJ6WAWKV9DDDSIT6JUL85R7JAX44WF307AMNP0WAKCRKE5Z8XTMNFJ5PQW2OR9CWMOYLS2ZYLSO7CLMI5XZC9KCAB21PHHY2IF3QJDGDFWYXV9MHYHHIP5QJOP41AZT4L1L3JIKBOTBSPGCIWBP8651VXJPSZOJNAT1PIM8EPRXWGE6LD3Z' where id=61; -update noar ti set v0='BC23ZSPXJFKOKVCR20RS9DYV100NC2SQ5PWICSU1N9CLH1X8FGLI43SP74I97O1I7P6D8Y09PWU3FFAJ6WAWKV9DDDSIT6JUL85R7JAX44WF307AMNP0WAKCRKE5Z8XTMNFJ5PQW2OR9CWMOYLS2ZYLSO7CLMI5XZC9KCAB21PHHY2IF3QJDGDFWYXV9MHYHHIP5QJOP41AZT4L1L3JIKBOTBSPGCIWBP8651VXJPSZOJNAT1PIM8EPRXWGE6LD3Z' where id=61; -update noar tt set v1='70K25FRSSEQYO12G0KVXDEK7D1JYFVO6C4STN7GGMZTTQD1P067ZYLYZHZEZ8JTJQE2AUNIN27OVAX1S4BU7USZ21FXN2YJAQO8AL417DELPSJF48JS6MIH4WO936IWBF5AJDATB25GO7LWCMRO26TTV1VRRY5LVBVL0JUE8H07GV9KRLDZWGC1ZNJH7C65A262WZPUV6JZVEQH1G1U9W0Y164DCX9WD4UGB7DSQWARN8EBJCKMMCF7A0G1QV8ITL' where id=61; -update noar ti set v1='70K25FRSSEQYO12G0KVXDEK7D1JYFVO6C4STN7GGMZTTQD1P067ZYLYZHZEZ8JTJQE2AUNIN27OVAX1S4BU7USZ21FXN2YJAQO8AL417DELPSJF48JS6MIH4WO936IWBF5AJDATB25GO7LWCMRO26TTV1VRRY5LVBVL0JUE8H07GV9KRLDZWGC1ZNJH7C65A262WZPUV6JZVEQH1G1U9W0Y164DCX9WD4UGB7DSQWARN8EBJCKMMCF7A0G1QV8ITL' where id=61; -update noar tt set v2='7NF99XEP5HPBEHHYT23I5WZ6U3K87JOY7JNK3K5RE2J1N4RJ52WGPHELFTZ5333SY6BBODGVFH8K66CUDDJHQX25H2ZW36BUE9IF1ALPS5UY762D3KMEZVFHHG720IUOLSDT92UYXE7LUOC054GGFZ2Y7Q320DFM98WGIO162M0O1M7Y998ERE4BZ3S0IOPOG5ZKV1OCFJ3V2TJX3JNSWT54CQBKVQ3XN0OUYXU2V34OXBV2RKVYIVI3D59AR3MX2' where id=61; -update noar ti set v2='7NF99XEP5HPBEHHYT23I5WZ6U3K87JOY7JNK3K5RE2J1N4RJ52WGPHELFTZ5333SY6BBODGVFH8K66CUDDJHQX25H2ZW36BUE9IF1ALPS5UY762D3KMEZVFHHG720IUOLSDT92UYXE7LUOC054GGFZ2Y7Q320DFM98WGIO162M0O1M7Y998ERE4BZ3S0IOPOG5ZKV1OCFJ3V2TJX3JNSWT54CQBKVQ3XN0OUYXU2V34OXBV2RKVYIVI3D59AR3MX2' where id=61; -update noar tt set v3='A7T0NQ8ASJMHXYNYEY42ICFARK4Q410H42IKEI4DYXW0OQHL6BDAZM03HBYDZI40TE350CENWYK1L61OAOE9FE9IZYLB7MB5TFXODXN67HXUGJ941G4PE2J7MAL3UNGG1DSBF5UAX5WZIBIHXP7JP710PGG2VBVMVRHY28N10SKQOSUDGL9MXX5G7BNOHXJXAA4L106CRENDM3U4V97UBVBJMK3VCXG02OTA9MJ51KKB2N5RZWYO3IPBMN4MIDVF5' where id=61; -update noar ti set v3='A7T0NQ8ASJMHXYNYEY42ICFARK4Q410H42IKEI4DYXW0OQHL6BDAZM03HBYDZI40TE350CENWYK1L61OAOE9FE9IZYLB7MB5TFXODXN67HXUGJ941G4PE2J7MAL3UNGG1DSBF5UAX5WZIBIHXP7JP710PGG2VBVMVRHY28N10SKQOSUDGL9MXX5G7BNOHXJXAA4L106CRENDM3U4V97UBVBJMK3VCXG02OTA9MJ51KKB2N5RZWYO3IPBMN4MIDVF5' where id=61; -update noar tt set v0='5E4N4TIDSTDNDHHKRACEGMD6B7F64VPYY6J0Y4SJSF4BX26CWN4BLA4QAJH0ED2MMAXWOXX74E5TY7D3STMQ0A7SWZEUMPLGNTE92CZWORV3HSNYBFNBMX5B4AQMJZWAYNN4Z2X0YX36ZN1Q3S8PMMX4I63MXQNW7OQ5NVR7KKO0XIZI5N4KOATMWN8ZZFQ1XEQULEFWVP0IGROQ1UTN1PB6A2QDD3J8F3FK4NS7AP061XFSOOPH6Q69BYH28NR1C' where id=62; -update noar ti set v0='5E4N4TIDSTDNDHHKRACEGMD6B7F64VPYY6J0Y4SJSF4BX26CWN4BLA4QAJH0ED2MMAXWOXX74E5TY7D3STMQ0A7SWZEUMPLGNTE92CZWORV3HSNYBFNBMX5B4AQMJZWAYNN4Z2X0YX36ZN1Q3S8PMMX4I63MXQNW7OQ5NVR7KKO0XIZI5N4KOATMWN8ZZFQ1XEQULEFWVP0IGROQ1UTN1PB6A2QDD3J8F3FK4NS7AP061XFSOOPH6Q69BYH28NR1C' where id=62; -update noar tt set v1='LLCAJ6M5UL1JWPB3Z8QN63YSPHN25ZLAEHB7UT6V9Y49O6439JCOFK38IR99104NH4MVL3L16U7PE5X0NNRJQE334PKHCG6FC8YI29HRFCAX04YBJJPCMNKHGZJ00G4LJ6I1MRNXM2FK561GH31RKFYL88XJ3133ET839CTKPCHW5OSLZA50MZBWI8GN70F5NH27XN2Q2BU7GC05ZRZ1LSQ60OT1GTZNAJE48WP61ZBMFY1YJC5D5YGI3RE66K54F' where id=62; -update noar ti set v1='LLCAJ6M5UL1JWPB3Z8QN63YSPHN25ZLAEHB7UT6V9Y49O6439JCOFK38IR99104NH4MVL3L16U7PE5X0NNRJQE334PKHCG6FC8YI29HRFCAX04YBJJPCMNKHGZJ00G4LJ6I1MRNXM2FK561GH31RKFYL88XJ3133ET839CTKPCHW5OSLZA50MZBWI8GN70F5NH27XN2Q2BU7GC05ZRZ1LSQ60OT1GTZNAJE48WP61ZBMFY1YJC5D5YGI3RE66K54F' where id=62; -update noar tt set v2='DXZ8JCRWV7Q0DSTX0TLW5XX0CZSZN5FFY6IWU7FCDADX86Q9JFVG4LNV0FUQQ6NFJJ4WI0TT1QK3VMA5O1VMX4Y3AWK6DJJTMU841BEP79RSHJIXR3A40KO7B45OX9Z1EHD75DWB7MYTI8QYRUJWATPBVD5D37KABKFFOIZ4AA7FP7CRM4FEWVIIQOM5KFZIQ4IYMLCZ41KASQVM2N0D51AQVJC2QKHRJ1462B2WYO7X4MPIBTKMNL5E2QJ6TEXRY' where id=62; -update noar ti set v2='DXZ8JCRWV7Q0DSTX0TLW5XX0CZSZN5FFY6IWU7FCDADX86Q9JFVG4LNV0FUQQ6NFJJ4WI0TT1QK3VMA5O1VMX4Y3AWK6DJJTMU841BEP79RSHJIXR3A40KO7B45OX9Z1EHD75DWB7MYTI8QYRUJWATPBVD5D37KABKFFOIZ4AA7FP7CRM4FEWVIIQOM5KFZIQ4IYMLCZ41KASQVM2N0D51AQVJC2QKHRJ1462B2WYO7X4MPIBTKMNL5E2QJ6TEXRY' where id=62; -update noar tt set v3='EUCJBIRS74PFT45AO86R084LRGIZ89P5S8TGU79I5A2X05QP83SGBNECXOQR22UEJ0BDJ9OSO5GICJDX9GSE8C1F2AGV0J13NIPQE8R5X3BF241W1GB7YHXFADQ3F1OLOOYPHZ16BMQKRVM94YOXS4127AWB2OZKOS8V8KU40PO8VUOMJVN0KG5ITQPP7W39HE80AWW8FE8LJTCNYBEL9OW6RFL8D8XGUVMN8GS6YQPDUWWQPCOY0DH9DZZX1QALS' where id=62; -update noar ti set v3='EUCJBIRS74PFT45AO86R084LRGIZ89P5S8TGU79I5A2X05QP83SGBNECXOQR22UEJ0BDJ9OSO5GICJDX9GSE8C1F2AGV0J13NIPQE8R5X3BF241W1GB7YHXFADQ3F1OLOOYPHZ16BMQKRVM94YOXS4127AWB2OZKOS8V8KU40PO8VUOMJVN0KG5ITQPP7W39HE80AWW8FE8LJTCNYBEL9OW6RFL8D8XGUVMN8GS6YQPDUWWQPCOY0DH9DZZX1QALS' where id=62; -update noar tt set v0='39CFH1HQ8UOXCI9E2R28NE4YAHBBVFY9E36BP0LS587UL44S2XTUFIVBWFPODZ5A6PO5LWXVFF1MSPK1U5XT813NZUAZJMJLK7ZD2YL39NTPG2NXZB134HGFCMTO50BCUQXWCZK5WXH03U7SO5T9Q8O2CV5H6EK7FVNBGIKTGUOWXM0TP3F566THK22OA7IQJUD19TV5OKLVY8XUONQGAE10YIDQCNTD5GOZ9IRZ3HING2MQMYPN5R8UB1GPTA6JA' where id=63; -update noar ti set v0='39CFH1HQ8UOXCI9E2R28NE4YAHBBVFY9E36BP0LS587UL44S2XTUFIVBWFPODZ5A6PO5LWXVFF1MSPK1U5XT813NZUAZJMJLK7ZD2YL39NTPG2NXZB134HGFCMTO50BCUQXWCZK5WXH03U7SO5T9Q8O2CV5H6EK7FVNBGIKTGUOWXM0TP3F566THK22OA7IQJUD19TV5OKLVY8XUONQGAE10YIDQCNTD5GOZ9IRZ3HING2MQMYPN5R8UB1GPTA6JA' where id=63; -update noar tt set v1='RS03SWW2C7K6A80ZS1JNZKYAXCQ6IG6NDR4VX30KJ16P9COD63BHO02C4A7LONEKR7SPJRWQY8BZD4IOUBNDG8UFUI4K5B0P4OOZTO4O6U6ETGCKMZME6P1ILTQKL4LCHWJ4B8FLMIOZR42DXPST9IZKM6CI1WAWK6VW7XYVNDC61Q42YS1A5KX9K7JDEP6GADCOU8ET65KXWZI5GMX7POYJU2YG6VN8LYIMUPNH5N5LN60KO38X14RLKA8YJW5OI' where id=63; -update noar ti set v1='RS03SWW2C7K6A80ZS1JNZKYAXCQ6IG6NDR4VX30KJ16P9COD63BHO02C4A7LONEKR7SPJRWQY8BZD4IOUBNDG8UFUI4K5B0P4OOZTO4O6U6ETGCKMZME6P1ILTQKL4LCHWJ4B8FLMIOZR42DXPST9IZKM6CI1WAWK6VW7XYVNDC61Q42YS1A5KX9K7JDEP6GADCOU8ET65KXWZI5GMX7POYJU2YG6VN8LYIMUPNH5N5LN60KO38X14RLKA8YJW5OI' where id=63; -update noar tt set v2='H5RAPPDQU8A0YUH4TRLD3DUAP3N4IGFFROZAO1G9V16KWA40SO3NMMAGCQHQ75XADXZPHNJA4X80AW1KR3PD479VLNIIQ0LME3VZJXBF6835AX8TIGVMCL56UGIAKQBSQ0BIRX0NY3LMCW8S4YOIX16LBLC7G4KFPZB5XJFW4KXFT5GEPEDW5ITFRX5XIGBOW43AFKPSXABQA04ZCY8IGV3UBI268YC9O73KE932AQ7LGW9OWI1PY8P9Q6ILIDJXV' where id=63; -update noar ti set v2='H5RAPPDQU8A0YUH4TRLD3DUAP3N4IGFFROZAO1G9V16KWA40SO3NMMAGCQHQ75XADXZPHNJA4X80AW1KR3PD479VLNIIQ0LME3VZJXBF6835AX8TIGVMCL56UGIAKQBSQ0BIRX0NY3LMCW8S4YOIX16LBLC7G4KFPZB5XJFW4KXFT5GEPEDW5ITFRX5XIGBOW43AFKPSXABQA04ZCY8IGV3UBI268YC9O73KE932AQ7LGW9OWI1PY8P9Q6ILIDJXV' where id=63; -update noar tt set v3='CJH5OL21PLDDG7AISNRCFBESYECZBA533K1MYP7YUMIYVYPXB3C5RFY6WC5MLB8AFTZO1DYVZSKUZOVAULLNWGORAI52OYKGW1K1UMYPDA3245OWWS6VZTX1L90VSWVOGWQQDH0BJ4G2JMTTH646QUMYOXNWMZF3W3QPP6OFZKKHXJQELSQYATQX7M92C6X2YUEM88MMQCZT6XT3215D7ATDS101PLK9DTZ6SK7OVWL4DGD907960Q3NSDL7QB6TF' where id=63; -update noar ti set v3='CJH5OL21PLDDG7AISNRCFBESYECZBA533K1MYP7YUMIYVYPXB3C5RFY6WC5MLB8AFTZO1DYVZSKUZOVAULLNWGORAI52OYKGW1K1UMYPDA3245OWWS6VZTX1L90VSWVOGWQQDH0BJ4G2JMTTH646QUMYOXNWMZF3W3QPP6OFZKKHXJQELSQYATQX7M92C6X2YUEM88MMQCZT6XT3215D7ATDS101PLK9DTZ6SK7OVWL4DGD907960Q3NSDL7QB6TF' where id=63; -update noar tt set v0='PCN8MXZ3YHRECE96RKQVEF393NXHCW7SQU82CPCFBB87Q5G1U71SJEOXCDOSQODQY536LZGFU64G9I2EMEBBNPQL7Z28XPCKK0JMMUD7DOJYKK9HKZNX8GMHVZ9EH39DPJEQ3ORMY7886M6WS1O79K6X2YB8EJEY0DVY2JVGUBY1GQEO19OK16SM1YYF1PWE295KCHVI41FND8DJSNXNTWBIXDRLIOYJ1DUQC626T9PCI31IQJ1JUJG6VSOM27JAZ' where id=64; -update noar ti set v0='PCN8MXZ3YHRECE96RKQVEF393NXHCW7SQU82CPCFBB87Q5G1U71SJEOXCDOSQODQY536LZGFU64G9I2EMEBBNPQL7Z28XPCKK0JMMUD7DOJYKK9HKZNX8GMHVZ9EH39DPJEQ3ORMY7886M6WS1O79K6X2YB8EJEY0DVY2JVGUBY1GQEO19OK16SM1YYF1PWE295KCHVI41FND8DJSNXNTWBIXDRLIOYJ1DUQC626T9PCI31IQJ1JUJG6VSOM27JAZ' where id=64; -update noar tt set v1='YIGIF0ZX8QLO64RFT1JXET0653QPXW7GQ131Z3AU254AJU194UU2TZYU2IIMEWU1IJ7XCG3F0QQ0BALFI5YHY2WNFUOG3RFMR4JTU73N6MX7DTR84VMZ1O6Z0F0N2HCC4AXD5N5PY5VBN3VLO1QEBMG73HFSTBUE5Q9VWPWPT17ZZHM17SR9AQBMR8FS70JYTMD6YVN0HU2O8FHY6EWTKOF1C4YVYOA2VNBFNNBZ1LO3SORHIN04K5FCEO0FSOGT1' where id=64; -update noar ti set v1='YIGIF0ZX8QLO64RFT1JXET0653QPXW7GQ131Z3AU254AJU194UU2TZYU2IIMEWU1IJ7XCG3F0QQ0BALFI5YHY2WNFUOG3RFMR4JTU73N6MX7DTR84VMZ1O6Z0F0N2HCC4AXD5N5PY5VBN3VLO1QEBMG73HFSTBUE5Q9VWPWPT17ZZHM17SR9AQBMR8FS70JYTMD6YVN0HU2O8FHY6EWTKOF1C4YVYOA2VNBFNNBZ1LO3SORHIN04K5FCEO0FSOGT1' where id=64; -update noar tt set v2='C4P5I84A0U101Q924KIC2P6ZAJCXS0D6C51NQ1U4ONHHDNNRC0JU6QMET0009627MF3WRXH2HSXKK0XEQDOPKJAN1AKJ38IW3S9JXVH51SNUE8WOHO25ZRTEU6HCFOVQL630PO8IQDXLBLQOF0NFDPHUHAMTBDLMH366Z3M78EPRAQ09K2X5RKLN16B96VFL8G59ELR9G6E9WV62L7M6EKH32J8ER5BZYW5B0H8QKY4Z1DNZ3GA2FW5D2QQPDKS7M' where id=64; -update noar ti set v2='C4P5I84A0U101Q924KIC2P6ZAJCXS0D6C51NQ1U4ONHHDNNRC0JU6QMET0009627MF3WRXH2HSXKK0XEQDOPKJAN1AKJ38IW3S9JXVH51SNUE8WOHO25ZRTEU6HCFOVQL630PO8IQDXLBLQOF0NFDPHUHAMTBDLMH366Z3M78EPRAQ09K2X5RKLN16B96VFL8G59ELR9G6E9WV62L7M6EKH32J8ER5BZYW5B0H8QKY4Z1DNZ3GA2FW5D2QQPDKS7M' where id=64; -update noar tt set v3='UPQLVCOOA8X666WEWY85BHB0VIYFT074071R8J27KWVLSQUWRIBEZKOL7HYRS9VS2F3D2451NLAAK1U7YK6HRKTSUTKLLD2D7J47S4R68EFCPPVB7RNCM4VKXEA6IB3OKGUNP0IG7W77S179Z5VSHN0IBMRUY0MXUX573IGJBCPAQA09PMSXRPLED5DZADQVBZJVRKOTM2AHPJXAPT4KC85TEGWLD4HCEXBLNUEXLCY987P1UM48P5EAPGC4BZMKS' where id=64; -update noar ti set v3='UPQLVCOOA8X666WEWY85BHB0VIYFT074071R8J27KWVLSQUWRIBEZKOL7HYRS9VS2F3D2451NLAAK1U7YK6HRKTSUTKLLD2D7J47S4R68EFCPPVB7RNCM4VKXEA6IB3OKGUNP0IG7W77S179Z5VSHN0IBMRUY0MXUX573IGJBCPAQA09PMSXRPLED5DZADQVBZJVRKOTM2AHPJXAPT4KC85TEGWLD4HCEXBLNUEXLCY987P1UM48P5EAPGC4BZMKS' where id=64; -update noar tt set v0='KW6ZLQWPP4QUOJC76OCDRZ6G74BEQQUWXMA5P5F80PJ49OXZWCR2JMD81NAE9YS0GKEPDOPEMUQ9M24NLJC57MXO8K3N1K6WQS1UZ47PY1T19LRSV5C66J1AA19RLWW47KPLLJKB73V5E9I0G464LO32YJLALAMA58DTP0C9CW7KXBED84704RVC5L6Z8Y6EISXV0QU2UN8WKEG49UMTZFPU0F6N4GJ68Q1CYX8IPJ1FNTLN6FNG8X54AE0NIALVU' where id=65; -update noar ti set v0='KW6ZLQWPP4QUOJC76OCDRZ6G74BEQQUWXMA5P5F80PJ49OXZWCR2JMD81NAE9YS0GKEPDOPEMUQ9M24NLJC57MXO8K3N1K6WQS1UZ47PY1T19LRSV5C66J1AA19RLWW47KPLLJKB73V5E9I0G464LO32YJLALAMA58DTP0C9CW7KXBED84704RVC5L6Z8Y6EISXV0QU2UN8WKEG49UMTZFPU0F6N4GJ68Q1CYX8IPJ1FNTLN6FNG8X54AE0NIALVU' where id=65; -update noar tt set v1='KIFMD4EKTW5JGB9J5QV6DCWWRPBFYEPI1995IWQ4H9ZVLYTOC3AF3IG301Z4D92YK1L95JNTVZVD93COUCNJNCRG7FW6N31NKXDJQJ8KCQ09TNO66FR9S7Z1EW9DHGH1ZJVHOH0CBGZ29NHGLOSBUP47TUHSQ9N265S565GTIPO2LT00E2KVBVT1T3DA0OJ6R0MSYDXFH0Z34C8IE9RFZS3T2YTQ2KFNJ296AXLSB4T1WAAM1OQY485YHC1Y9F8GQ' where id=65; -update noar ti set v1='KIFMD4EKTW5JGB9J5QV6DCWWRPBFYEPI1995IWQ4H9ZVLYTOC3AF3IG301Z4D92YK1L95JNTVZVD93COUCNJNCRG7FW6N31NKXDJQJ8KCQ09TNO66FR9S7Z1EW9DHGH1ZJVHOH0CBGZ29NHGLOSBUP47TUHSQ9N265S565GTIPO2LT00E2KVBVT1T3DA0OJ6R0MSYDXFH0Z34C8IE9RFZS3T2YTQ2KFNJ296AXLSB4T1WAAM1OQY485YHC1Y9F8GQ' where id=65; -update noar tt set v2='LT3SB6XVJCYKWLJ5XFOG20GGTFH417GYX503T08133NNW0EGC38J832FD4TQXAB47ROFYZ1JJW8HQ3WM848CWSQ3S6FSIH0TT4NA8MS1TY20I6LHNYL79ZKUDCTNBPZD9BGKB393BATUQ5NJ6G2JUFJYP9SUJHQ8W3NT659MSCPRB0GI4M1M0BAFATEEOGRZZI31G25B0YG7DMV9AH8TJ5ONBMZFCDU9ZHNSMPK4Q371ZHNEXCFKWYUL7DT5Z8PPZ' where id=65; -update noar ti set v2='LT3SB6XVJCYKWLJ5XFOG20GGTFH417GYX503T08133NNW0EGC38J832FD4TQXAB47ROFYZ1JJW8HQ3WM848CWSQ3S6FSIH0TT4NA8MS1TY20I6LHNYL79ZKUDCTNBPZD9BGKB393BATUQ5NJ6G2JUFJYP9SUJHQ8W3NT659MSCPRB0GI4M1M0BAFATEEOGRZZI31G25B0YG7DMV9AH8TJ5ONBMZFCDU9ZHNSMPK4Q371ZHNEXCFKWYUL7DT5Z8PPZ' where id=65; -update noar tt set v3='PRRX7TRDNUSBYOUFQA3ND47X6RELCDYQMNU9LA22PV0UC4YXJUTTSY111SMWM4CO923B7CXA79M5ERRTH4GWW8XUZX2CIHYML9U8TEJC3ENOL6HMCZ8JPYNNHPVTCN6G6K21DS6IQGSVVB5BSWB3CFDPX7MKK3DOLPEHSMZQ4DGMP74HXTOR1MTDM1H3J6ZH41SC03SVWOEGPGPAQFRUP04GKMXXRJLGSWHVQ5TEIAPVRYZ7EDEXDEC9C41M4TGT8' where id=65; -update noar ti set v3='PRRX7TRDNUSBYOUFQA3ND47X6RELCDYQMNU9LA22PV0UC4YXJUTTSY111SMWM4CO923B7CXA79M5ERRTH4GWW8XUZX2CIHYML9U8TEJC3ENOL6HMCZ8JPYNNHPVTCN6G6K21DS6IQGSVVB5BSWB3CFDPX7MKK3DOLPEHSMZQ4DGMP74HXTOR1MTDM1H3J6ZH41SC03SVWOEGPGPAQFRUP04GKMXXRJLGSWHVQ5TEIAPVRYZ7EDEXDEC9C41M4TGT8' where id=65; -update noar tt set v0='SBBNU41MNITGINJGLWXUVNS93PEO7C2ZN2LK37CH327WKYRMC9ZMWA8ET2RQ6HYZFUTIWNMJQ0CQ4ZRKRXHNHIGX0T5J4B8IJ2YXZ5FH87ETK72F1WLZVR16DDXY7MG8L05RMFJVHE3XH9EROG3SSBT8UTU7THOIQF5C571UMEAIMYJ5BFRKAUQI2NGF6ITEVA806YPNYAMTW1DJGUFGF4Y1KLHFBT5HQW4AM6I4WBARCR81JREUURYUNV162OSEW' where id=66; -update noar ti set v0='SBBNU41MNITGINJGLWXUVNS93PEO7C2ZN2LK37CH327WKYRMC9ZMWA8ET2RQ6HYZFUTIWNMJQ0CQ4ZRKRXHNHIGX0T5J4B8IJ2YXZ5FH87ETK72F1WLZVR16DDXY7MG8L05RMFJVHE3XH9EROG3SSBT8UTU7THOIQF5C571UMEAIMYJ5BFRKAUQI2NGF6ITEVA806YPNYAMTW1DJGUFGF4Y1KLHFBT5HQW4AM6I4WBARCR81JREUURYUNV162OSEW' where id=66; -update noar tt set v1='2HDHQ5PJVYQR7CSPMGK5NB1LXPE382STS6110MRU7VDF1RFKQMAOGQIGTG56M5M3P0MPTY55ZACTS03P142PAH1P500CIZJSQ58MDMVCUR5AIMZC5DS8QNKA0E0QG4K2KVVC9V520O0MQ79EE3UFU9B888D0JUPQ7WEPDY85HEND130AIKGUPZGMSP8T6OYPGLY4PWT44JPSB9RXWRQ0L9TCAM126JRE7WOZ33VDP47XXWK8IHXHCNLEXOVKLWXTQ' where id=66; -update noar ti set v1='2HDHQ5PJVYQR7CSPMGK5NB1LXPE382STS6110MRU7VDF1RFKQMAOGQIGTG56M5M3P0MPTY55ZACTS03P142PAH1P500CIZJSQ58MDMVCUR5AIMZC5DS8QNKA0E0QG4K2KVVC9V520O0MQ79EE3UFU9B888D0JUPQ7WEPDY85HEND130AIKGUPZGMSP8T6OYPGLY4PWT44JPSB9RXWRQ0L9TCAM126JRE7WOZ33VDP47XXWK8IHXHCNLEXOVKLWXTQ' where id=66; -update noar tt set v2='ZLK6HOEVVS608QLNIT3W987DIV5PF15NKPGJA98DXBR17EE3E0D50WC502PLHH7O16LR8W79PXLXVEME1C1FB22LC0023EQJVY1XT7HQ0QUN056YRJZS2D5LLICO70L554V98YFUJ6XHKV3TYJBIS66Q9UNF1TK5DLN6D3AZ369U78M4UGSD52DT77TMROJUTRESOD4ZE4CPHJ5IO9DC7THQZN8SFXMFXJAJDUXF934ETT76218XZ4FHLPTCNNDJM' where id=66; -update noar ti set v2='ZLK6HOEVVS608QLNIT3W987DIV5PF15NKPGJA98DXBR17EE3E0D50WC502PLHH7O16LR8W79PXLXVEME1C1FB22LC0023EQJVY1XT7HQ0QUN056YRJZS2D5LLICO70L554V98YFUJ6XHKV3TYJBIS66Q9UNF1TK5DLN6D3AZ369U78M4UGSD52DT77TMROJUTRESOD4ZE4CPHJ5IO9DC7THQZN8SFXMFXJAJDUXF934ETT76218XZ4FHLPTCNNDJM' where id=66; -update noar tt set v3='TMWQ5VG5JM2KD4UH7XUFMO7RLZRJJL2UKH8LOFLX675RLRO0BE87574T7DGM3P0U0Z6UO8M1LWFNEW416P8BS8RSPZ7QQTXWCIU6HMM8LRESOT16KYVW0FKHUS12GYJ41X1P90Z1K43F0WS0TA57DEO10ZO5BANXG8TWDZX33DWNTOXMCVSWYFY93C04PLWIDF8W27S6540ILYE8709CWRPYZUYC15WBMZU9FOBFCAWC08UICWY1LBC7I5FJ2O25N' where id=66; -update noar ti set v3='TMWQ5VG5JM2KD4UH7XUFMO7RLZRJJL2UKH8LOFLX675RLRO0BE87574T7DGM3P0U0Z6UO8M1LWFNEW416P8BS8RSPZ7QQTXWCIU6HMM8LRESOT16KYVW0FKHUS12GYJ41X1P90Z1K43F0WS0TA57DEO10ZO5BANXG8TWDZX33DWNTOXMCVSWYFY93C04PLWIDF8W27S6540ILYE8709CWRPYZUYC15WBMZU9FOBFCAWC08UICWY1LBC7I5FJ2O25N' where id=66; -update noar tt set v0='YFNAB4FB5Z6MBFPDRFWJYVTDXQUAIANDTZ63TSX7N9VRX3ZJCPAHOJAGDXKISNGT6IEQNYFW6UCRWKI77W5K06G4O8RZ6JV9LW8RSRGH4EQ81ECVQWRJVNQIRRT0GNMED29SVHZRO3J9JBUU9Q265E2DX2J1J3P991D5PKQPYFSKFY5LTBC4JSJKPZG7QHND7IIRXF8S8O5USKFDX6PD9ETYN4E951HPWKOMJL3QO4Y3M8K3UHYAA1X1E5WYND4D4' where id=67; -update noar ti set v0='YFNAB4FB5Z6MBFPDRFWJYVTDXQUAIANDTZ63TSX7N9VRX3ZJCPAHOJAGDXKISNGT6IEQNYFW6UCRWKI77W5K06G4O8RZ6JV9LW8RSRGH4EQ81ECVQWRJVNQIRRT0GNMED29SVHZRO3J9JBUU9Q265E2DX2J1J3P991D5PKQPYFSKFY5LTBC4JSJKPZG7QHND7IIRXF8S8O5USKFDX6PD9ETYN4E951HPWKOMJL3QO4Y3M8K3UHYAA1X1E5WYND4D4' where id=67; -update noar tt set v1='Y30NOVYA0YZLK4QP13UEGQAF90M2E9MOY76OFTZA8RT67GJDS8HQZBB9G7TGFA8DNIEUW8FQSSZ8A6QFUQSWNPAZ3F1VSXGLFG30UODO64GG1917465NHSWG41EBQNMZGZB25YUOL1RPD2QHXQID4S35MRS7DG5OX2XX0JDF2U4UR37N5B3C0WKA8CC83BBSVYWGIZAV8QWIVW85Z2ZIDU5LIKVSBT4E8HMVPNTJWI289NX628ZA0A81DCMVP2E2G' where id=67; -update noar ti set v1='Y30NOVYA0YZLK4QP13UEGQAF90M2E9MOY76OFTZA8RT67GJDS8HQZBB9G7TGFA8DNIEUW8FQSSZ8A6QFUQSWNPAZ3F1VSXGLFG30UODO64GG1917465NHSWG41EBQNMZGZB25YUOL1RPD2QHXQID4S35MRS7DG5OX2XX0JDF2U4UR37N5B3C0WKA8CC83BBSVYWGIZAV8QWIVW85Z2ZIDU5LIKVSBT4E8HMVPNTJWI289NX628ZA0A81DCMVP2E2G' where id=67; -update noar tt set v2='KHR0E8RGBJ5V4ID9XJRKPZ0102V9GPECTYAK3U47W005S897NVE7MP0085WZVSE9629KMSZDGQ5KH1BUW2KYVBQFC01JRNI0I478GBLNGRZPX22BFKKZTMPHIC4B5XBTBIU1VU2ZOV1XA7YM9KHNI5QXWIE01Z2CKHK1FN2M6CVWFWA1QIDBRQSZWC7Z37J1EHBOIBC88ITHBLDR8LW0PSSMA1MXTJ6VJNKKMW85EYQ6V3H2TXMA7SS4X8JFRVMMT' where id=67; -update noar ti set v2='KHR0E8RGBJ5V4ID9XJRKPZ0102V9GPECTYAK3U47W005S897NVE7MP0085WZVSE9629KMSZDGQ5KH1BUW2KYVBQFC01JRNI0I478GBLNGRZPX22BFKKZTMPHIC4B5XBTBIU1VU2ZOV1XA7YM9KHNI5QXWIE01Z2CKHK1FN2M6CVWFWA1QIDBRQSZWC7Z37J1EHBOIBC88ITHBLDR8LW0PSSMA1MXTJ6VJNKKMW85EYQ6V3H2TXMA7SS4X8JFRVMMT' where id=67; -update noar tt set v3='UJBA2DGEZYS72P7K7LXGLNDO4MC2RJ1WY1YYM04E42GBIKKXAUEHR47DBBQ9XJFQ1D86CMDEE3UB8M7P5NJSFCN45NJBBSIVAGRS63YMKLOG60G97GCPKJ4MMEUB11B69MLW7809XE2HQPFJF9KS8B5TLLT9FTZ49MODX1NR3CQ52EDJ4F7BZK5MEOTAEFCVTN99RUGW6SAW1LTDD0Q7I8NGCRHUCO1JMS8N9ZXIH4MWH7DCVIXZ3F2QDSO4G1R00' where id=67; -update noar ti set v3='UJBA2DGEZYS72P7K7LXGLNDO4MC2RJ1WY1YYM04E42GBIKKXAUEHR47DBBQ9XJFQ1D86CMDEE3UB8M7P5NJSFCN45NJBBSIVAGRS63YMKLOG60G97GCPKJ4MMEUB11B69MLW7809XE2HQPFJF9KS8B5TLLT9FTZ49MODX1NR3CQ52EDJ4F7BZK5MEOTAEFCVTN99RUGW6SAW1LTDD0Q7I8NGCRHUCO1JMS8N9ZXIH4MWH7DCVIXZ3F2QDSO4G1R00' where id=67; -update noar tt set v0='BH3ESXIZF6HIPMSRF21LF0YTBVAMG6557ZPNSSLKQ2O4RJ7ZPHI0DGTUZ7GA07ZHHHCTF263SHOR3X6KUWI5V53E42AX67TJHUFP8E48UBRK9BIC7M7OT7WF2REYZ9NBYZG99FI5OGKE5A7FRZMTNFLBZ07RUGEJ1YECL2ZZGRB04C1GUWVH941D35433PTA6MS9MDSIVR4SIYKJGES01KZ2HKDB3KG4Q7Q3GWYV5SDG30T5M7FRK73XYTH5E64XP' where id=68; -update noar ti set v0='BH3ESXIZF6HIPMSRF21LF0YTBVAMG6557ZPNSSLKQ2O4RJ7ZPHI0DGTUZ7GA07ZHHHCTF263SHOR3X6KUWI5V53E42AX67TJHUFP8E48UBRK9BIC7M7OT7WF2REYZ9NBYZG99FI5OGKE5A7FRZMTNFLBZ07RUGEJ1YECL2ZZGRB04C1GUWVH941D35433PTA6MS9MDSIVR4SIYKJGES01KZ2HKDB3KG4Q7Q3GWYV5SDG30T5M7FRK73XYTH5E64XP' where id=68; -update noar tt set v1='02YIDV7SRYPPTC3VPUOWWGBQHHOOMCFSRHSNHDWGZJQ09ZNPJERQKMHP4XPMECFFJAPUT2UG4O0WMCA9XY2WB614X2PXBNO0YYD7URBMSQG27HJ81B9BGHU55L54H19AV0GBP3QDAF1BB8S3OFBWCKQQ8YK1HXMDNNA7SJCRL61XCHHD1H2JV3AU8FAWR26TJTFVMNRRKAAEUD9RPLCENTYEVG27QBA09HD18UHUMPB874G2OVI6JHQ4BFGMJKUXN' where id=68; -update noar ti set v1='02YIDV7SRYPPTC3VPUOWWGBQHHOOMCFSRHSNHDWGZJQ09ZNPJERQKMHP4XPMECFFJAPUT2UG4O0WMCA9XY2WB614X2PXBNO0YYD7URBMSQG27HJ81B9BGHU55L54H19AV0GBP3QDAF1BB8S3OFBWCKQQ8YK1HXMDNNA7SJCRL61XCHHD1H2JV3AU8FAWR26TJTFVMNRRKAAEUD9RPLCENTYEVG27QBA09HD18UHUMPB874G2OVI6JHQ4BFGMJKUXN' where id=68; -update noar tt set v2='THLUX81EZAMATVGEYRELNEV8JF4UXX6ATOJRQILZJ4K2FXZ7S11BDSL1HWWCJV2PQZ5OQZ7ZUXSYQVGSMQ9TXL04J2AFA9A4HRAQUXLM57BU3AJIRA7M1DSGM5YFTXLHGDPBB47SWZUYVHJ6IA7SABRRG895RL8NC4LA3ZG4OBBRPILL1XWMF9Z4TM5W46DXLUNS5T53OU256XHPRYBJDVP9DUKIWEYA8163IFO58HB3OCDTA965HFI61JYHBAXES' where id=68; -update noar ti set v2='THLUX81EZAMATVGEYRELNEV8JF4UXX6ATOJRQILZJ4K2FXZ7S11BDSL1HWWCJV2PQZ5OQZ7ZUXSYQVGSMQ9TXL04J2AFA9A4HRAQUXLM57BU3AJIRA7M1DSGM5YFTXLHGDPBB47SWZUYVHJ6IA7SABRRG895RL8NC4LA3ZG4OBBRPILL1XWMF9Z4TM5W46DXLUNS5T53OU256XHPRYBJDVP9DUKIWEYA8163IFO58HB3OCDTA965HFI61JYHBAXES' where id=68; -update noar tt set v3='P4L46NDPS13Y8GI9Q1MJLQ5Y5154K57CXJVAV3G55V4UKL5UUVMR5B5ACAD40TFSV3AVMU424SZXUAGMEIQ3N0GHSFTPZWIVECS3VZFFQBY595YNR0ALF2TRR2QCSZYCGT6SFTTAH588U3VWBFNCY61TLXUK96QPZHDF4PSTC0T4BADJI53BX34QRG08YDRBCB13VAQUAR52BB3ISMEOUCF2XN8W0TVEUG99Z52PZ2M4DBVOU3EPU025OP4IKZ05T' where id=68; -update noar ti set v3='P4L46NDPS13Y8GI9Q1MJLQ5Y5154K57CXJVAV3G55V4UKL5UUVMR5B5ACAD40TFSV3AVMU424SZXUAGMEIQ3N0GHSFTPZWIVECS3VZFFQBY595YNR0ALF2TRR2QCSZYCGT6SFTTAH588U3VWBFNCY61TLXUK96QPZHDF4PSTC0T4BADJI53BX34QRG08YDRBCB13VAQUAR52BB3ISMEOUCF2XN8W0TVEUG99Z52PZ2M4DBVOU3EPU025OP4IKZ05T' where id=68; -update noar tt set v0='4WD9AP7AJNXDWXZILNE9Q54GSUUY2XR590TSPN2ABD9LVORNQAS9LZI08P405EM4NPBBC1L7SLW5VQR6IK03PHWX0HQIV0X3GXOWW0V8DJT87R44BX2V0UTOJU6ZWHT0RCKHWK96RU0I1O4JOV7J9V1XIZ9L8N7ABQCP1R43I17QP470VU92WL88I00JD9ISWDTCXP448U9T3WJCVBH5C16GIEIPMDA7ISHZGXNA4LEUKO9QETDPCXRUF0Q698E7M' where id=69; -update noar ti set v0='4WD9AP7AJNXDWXZILNE9Q54GSUUY2XR590TSPN2ABD9LVORNQAS9LZI08P405EM4NPBBC1L7SLW5VQR6IK03PHWX0HQIV0X3GXOWW0V8DJT87R44BX2V0UTOJU6ZWHT0RCKHWK96RU0I1O4JOV7J9V1XIZ9L8N7ABQCP1R43I17QP470VU92WL88I00JD9ISWDTCXP448U9T3WJCVBH5C16GIEIPMDA7ISHZGXNA4LEUKO9QETDPCXRUF0Q698E7M' where id=69; -update noar tt set v1='VEOT7T36B1XMEAH5FXQBPRQ8D23CW0FQTZSGSGNPIJA27CQCB3OK06HT06HJ0BO3R7D4PYSZSCHMQV763BM95WAJ5CNV7N6C9SQJT9MJ45N6XIHNV66VXL7Y7W9PX51DPKVMC7HAS78S368NM1V716ISVJCRI0RMT7Y733PRUSQ1A6NC9ACWCI7QROEJ1F679JIRWRU3U7K9J388AWF90B716GE1PGGDLEEAROWY9HIPLV2QY5TRAOUNYNOM8WVLL' where id=69; -update noar ti set v1='VEOT7T36B1XMEAH5FXQBPRQ8D23CW0FQTZSGSGNPIJA27CQCB3OK06HT06HJ0BO3R7D4PYSZSCHMQV763BM95WAJ5CNV7N6C9SQJT9MJ45N6XIHNV66VXL7Y7W9PX51DPKVMC7HAS78S368NM1V716ISVJCRI0RMT7Y733PRUSQ1A6NC9ACWCI7QROEJ1F679JIRWRU3U7K9J388AWF90B716GE1PGGDLEEAROWY9HIPLV2QY5TRAOUNYNOM8WVLL' where id=69; -update noar tt set v2='UNLXFL1CIO2BZEXF0HF38R1I7R8ATZXFCAUBEPWUA6FASR8F65H54LLGHPPS0LJILYE4OBHVKTRS0CY35VS8QLZC2LBPXDTW3ZAQ4E3AOTSZ49KKSLZWGRO3RD36GG9KQYYY7FI5JEF56INDMR8WDSHEA3P886ZGWIGMT9YSM6497IFD6UGRTY2VEI8UZSAPIME3JA70QY0VKQA35IDDGMOJRC6TL28NWCLL1HIPFKD81GR44O1UA9JG2ABLQW9ST' where id=69; -update noar ti set v2='UNLXFL1CIO2BZEXF0HF38R1I7R8ATZXFCAUBEPWUA6FASR8F65H54LLGHPPS0LJILYE4OBHVKTRS0CY35VS8QLZC2LBPXDTW3ZAQ4E3AOTSZ49KKSLZWGRO3RD36GG9KQYYY7FI5JEF56INDMR8WDSHEA3P886ZGWIGMT9YSM6497IFD6UGRTY2VEI8UZSAPIME3JA70QY0VKQA35IDDGMOJRC6TL28NWCLL1HIPFKD81GR44O1UA9JG2ABLQW9ST' where id=69; -update noar tt set v3='XNK3NWH69GBPW2ZKVHD4IAKUZM55I921YDBDULTCUEGVOFJIEIX02ODA03SZRNCMA88HUF4P0HPGFTRPBVYWVX7VESP5F2NGL0JWJTLB0V0SNZMWK11A0HLFYL5P2IAA84QKWDY70HWCNOLTDJPQF439HLFD73U999II9IPF6FW976S0YTT4JSB61FEMAGGM7F9HKPFGRNYF2ZJZM9Z034BUKM0YG90UM982ZBJQL4HB0EGJKPZWOZK164BGVCHHL' where id=69; -update noar ti set v3='XNK3NWH69GBPW2ZKVHD4IAKUZM55I921YDBDULTCUEGVOFJIEIX02ODA03SZRNCMA88HUF4P0HPGFTRPBVYWVX7VESP5F2NGL0JWJTLB0V0SNZMWK11A0HLFYL5P2IAA84QKWDY70HWCNOLTDJPQF439HLFD73U999II9IPF6FW976S0YTT4JSB61FEMAGGM7F9HKPFGRNYF2ZJZM9Z034BUKM0YG90UM982ZBJQL4HB0EGJKPZWOZK164BGVCHHL' where id=69; -update noar tt set v0='JOGIVDUE1SLU7XGGAAVGY4CNL724W4RL43JJWDQTW8Z9CJBMBWZ2IZMA2XOPS9CFFWGZ4UFY40TY9UYRGGCKLQINYVAMW9CHVUQG168LE0SVUO5PAT275IH3JX6UXDQH9Y9GRVIZRF1YWJUAJ671ZA9K1KMD95S6FI4DE2QW6LOY3I885GHJXQ5Y70GKS853T481Q7T89X7JD48ZG0WKPEFJOC00IFJX45AUMOMH5J93GVZKYOYQ91NM71J4IESXB' where id=70; -update noar ti set v0='JOGIVDUE1SLU7XGGAAVGY4CNL724W4RL43JJWDQTW8Z9CJBMBWZ2IZMA2XOPS9CFFWGZ4UFY40TY9UYRGGCKLQINYVAMW9CHVUQG168LE0SVUO5PAT275IH3JX6UXDQH9Y9GRVIZRF1YWJUAJ671ZA9K1KMD95S6FI4DE2QW6LOY3I885GHJXQ5Y70GKS853T481Q7T89X7JD48ZG0WKPEFJOC00IFJX45AUMOMH5J93GVZKYOYQ91NM71J4IESXB' where id=70; -update noar tt set v1='EYOMAU4VLHUE720BDNQ2GG0ZM2ITV7NMJ02P66WE7K9OUXKSBVB18S9514K9Y86EXOZZRNUW6ZGKOL09PFQF3A32SKDDNTFAJOJT06Q6FYEY5EH0BYN638PGPXQRKULK1CSCWHV4Z1MKCPZL9F0P6D9F4YEYPA7GJSU2ST8H02O3LTUA36SF7ZKNWHTGA1AEDAZPE9N811NGDTKJ1GV1G1R9TV96TS7VTWWS18FLARXMK5LM3IZU57P2U0CHA6KU9' where id=70; -update noar ti set v1='EYOMAU4VLHUE720BDNQ2GG0ZM2ITV7NMJ02P66WE7K9OUXKSBVB18S9514K9Y86EXOZZRNUW6ZGKOL09PFQF3A32SKDDNTFAJOJT06Q6FYEY5EH0BYN638PGPXQRKULK1CSCWHV4Z1MKCPZL9F0P6D9F4YEYPA7GJSU2ST8H02O3LTUA36SF7ZKNWHTGA1AEDAZPE9N811NGDTKJ1GV1G1R9TV96TS7VTWWS18FLARXMK5LM3IZU57P2U0CHA6KU9' where id=70; -update noar tt set v2='58NRQPHAGRVFTOAOEU3BR1RNRT2TADW9ZM46SY93SKRLXBLKLIEY5I5PVHDGA43A14QOQ4IGH7DG70OV3XQP6I6MP97DHJ54MDW8SKABF2T2D9YQ2IFSY5Y87R2QC1EWORBE94EJWZN01NJ5FNW744B32O4X3QFHG96PTM7RHC0GHIKAYCV80C9VWVVMWWGDADCKIAECLMEQAZ204T8AK88ZJ6X66IQB61KAGYTIZ6RX7XONXBNOR4RN1R0VW2HCC' where id=70; -update noar ti set v2='58NRQPHAGRVFTOAOEU3BR1RNRT2TADW9ZM46SY93SKRLXBLKLIEY5I5PVHDGA43A14QOQ4IGH7DG70OV3XQP6I6MP97DHJ54MDW8SKABF2T2D9YQ2IFSY5Y87R2QC1EWORBE94EJWZN01NJ5FNW744B32O4X3QFHG96PTM7RHC0GHIKAYCV80C9VWVVMWWGDADCKIAECLMEQAZ204T8AK88ZJ6X66IQB61KAGYTIZ6RX7XONXBNOR4RN1R0VW2HCC' where id=70; -update noar tt set v3='P2JYWEB3TGVNBLWEEOS0S5VCQH508JWPYBF5K3EJ3CZ62G4PW10BWPMMGY159RHEPZKW4WKYOSSD734PVWMC8PE8BT8NAH5Z7KA3GGM4HIKZ2ZOSF9LKKJQXD1E9XJ96V58O7MODJMN6XODOX262MD2BU957WH886ZOXNM0L3ESEX51G97L2T0TWJX64ARIIE2JL7LNVLL4V5HIEEXUBQDDG3ACGMQAA3C6CESEP0BO10MUSR789S0Y7XGGIYS579' where id=70; -update noar ti set v3='P2JYWEB3TGVNBLWEEOS0S5VCQH508JWPYBF5K3EJ3CZ62G4PW10BWPMMGY159RHEPZKW4WKYOSSD734PVWMC8PE8BT8NAH5Z7KA3GGM4HIKZ2ZOSF9LKKJQXD1E9XJ96V58O7MODJMN6XODOX262MD2BU957WH886ZOXNM0L3ESEX51G97L2T0TWJX64ARIIE2JL7LNVLL4V5HIEEXUBQDDG3ACGMQAA3C6CESEP0BO10MUSR789S0Y7XGGIYS579' where id=70; -update noar tt set v0='WEZEQZ33MIVHBUAIQ9H37T8RNOF3TZ8PMT18E6KK5IP43NCMUWG185FN3ING5IR80SGBRI75WVB538IGNPSB5XHH72Y02FVWH9ROMKMWNYH1NTBBILU46QVSLUUKM9IH05IDHOYZZA6CWDONV9WKQ0H853YCCJ450EKA8D4TVC7A6KVO68T6KN5JAFLPD6RPC7IEXQ33MP087HLHCU0542F9R9SDN1IXY6NGV52FQUSILDB7ZI7MW4E1R85XF8U6J' where id=71; -update noar ti set v0='WEZEQZ33MIVHBUAIQ9H37T8RNOF3TZ8PMT18E6KK5IP43NCMUWG185FN3ING5IR80SGBRI75WVB538IGNPSB5XHH72Y02FVWH9ROMKMWNYH1NTBBILU46QVSLUUKM9IH05IDHOYZZA6CWDONV9WKQ0H853YCCJ450EKA8D4TVC7A6KVO68T6KN5JAFLPD6RPC7IEXQ33MP087HLHCU0542F9R9SDN1IXY6NGV52FQUSILDB7ZI7MW4E1R85XF8U6J' where id=71; -update noar tt set v1='CQ5RZB0WIX9NV012C70BFL41IW3KBXI35F5063R3N3RUMGNOQ8I3XC4EN3ND2IQGZHLEMN1QDF79C76GVJLP0AR8IZC6YQMJ514XGOC4BS7ZKCH4NOE16YA55JIXL66DBVC05QQEQ9ZQ3C9KUY2SAQCV2SCPCCNI0I8NYALWM8VVWH5K7PWVKA52OX0D4CG0D9TGOULGGPA0DV30I0OCV0EBKAJHOG43DHF8HDQD8Z4PDG10ZEAT5UY5V5RV9YQBR' where id=71; -update noar ti set v1='CQ5RZB0WIX9NV012C70BFL41IW3KBXI35F5063R3N3RUMGNOQ8I3XC4EN3ND2IQGZHLEMN1QDF79C76GVJLP0AR8IZC6YQMJ514XGOC4BS7ZKCH4NOE16YA55JIXL66DBVC05QQEQ9ZQ3C9KUY2SAQCV2SCPCCNI0I8NYALWM8VVWH5K7PWVKA52OX0D4CG0D9TGOULGGPA0DV30I0OCV0EBKAJHOG43DHF8HDQD8Z4PDG10ZEAT5UY5V5RV9YQBR' where id=71; -update noar tt set v2='BNRB43X5QK2RLH59TRW9GMJOY270YNIZGMLYBMNVCW3ALG6IWWCHAL2OKVV7YWF5VKTOLGBLZVTDTPUVDTI7D8T6FWR64XA4Y6VDBIOF5E8NJFMGX2R0SBK0UJC8IS4TIO4VJHTWHN90QMUZIMBW25CXGC9PBEFH0SP2ITLQ15SDLGYXHN71M1G5LY1Q99ONAEHKI5B5OVHK1RFAHC5A11T2L5427O1DBCRIKD1FUC7SDR7IM0ESH20LSBC39YUY3' where id=71; -update noar ti set v2='BNRB43X5QK2RLH59TRW9GMJOY270YNIZGMLYBMNVCW3ALG6IWWCHAL2OKVV7YWF5VKTOLGBLZVTDTPUVDTI7D8T6FWR64XA4Y6VDBIOF5E8NJFMGX2R0SBK0UJC8IS4TIO4VJHTWHN90QMUZIMBW25CXGC9PBEFH0SP2ITLQ15SDLGYXHN71M1G5LY1Q99ONAEHKI5B5OVHK1RFAHC5A11T2L5427O1DBCRIKD1FUC7SDR7IM0ESH20LSBC39YUY3' where id=71; -update noar tt set v3='6I0VFCYZZI9XTQK557TD6K7OWWWJMKYU1X002UGCEM0RGYJ9QLRVRASD9DFQO7Z9L2JU2DSJNCV299B4AH6UELTUA0ZP1L6QEA49SY1ZDQL1SHB0DHGBCXSSP1WYC57MNNT52HQY769PSULEOZZ79P0HHBCU1QCFO2IH7YWGI5R1009OYANG9ZTTLLW915GZQUZR932CW513M05UATVCXXWG43BR0DN14G17W65YJ23B4V5HJS57T78D7NQF05RGQ' where id=71; -update noar ti set v3='6I0VFCYZZI9XTQK557TD6K7OWWWJMKYU1X002UGCEM0RGYJ9QLRVRASD9DFQO7Z9L2JU2DSJNCV299B4AH6UELTUA0ZP1L6QEA49SY1ZDQL1SHB0DHGBCXSSP1WYC57MNNT52HQY769PSULEOZZ79P0HHBCU1QCFO2IH7YWGI5R1009OYANG9ZTTLLW915GZQUZR932CW513M05UATVCXXWG43BR0DN14G17W65YJ23B4V5HJS57T78D7NQF05RGQ' where id=71; -update noar tt set v0='GEA32VYUZEO4Y8E3313TLVOETJG4D885IA0H72XLIVD42QTWDJPZPGVVDMDA4QTN24N6X2OOSMCTYNEAL3JBZ9PXGK0T7HGVOCSKJX0PY2ULLD3PQ4ANTN168B86S698JNX01MTYO3Y8S9EF43JE7HEQU4ZRLR4L17NN9I7IKWMP77B02YMS668ZRI4Y29YZ4BROMNTWIYD76X13KIP2P4QIJ27LCQ46R3YE2U1EVG2TJBOKU6ATCUOC828ZHVPOK' where id=72; -update noar ti set v0='GEA32VYUZEO4Y8E3313TLVOETJG4D885IA0H72XLIVD42QTWDJPZPGVVDMDA4QTN24N6X2OOSMCTYNEAL3JBZ9PXGK0T7HGVOCSKJX0PY2ULLD3PQ4ANTN168B86S698JNX01MTYO3Y8S9EF43JE7HEQU4ZRLR4L17NN9I7IKWMP77B02YMS668ZRI4Y29YZ4BROMNTWIYD76X13KIP2P4QIJ27LCQ46R3YE2U1EVG2TJBOKU6ATCUOC828ZHVPOK' where id=72; -update noar tt set v1='KKI43JO85AAO0CU50JEGZC50F0DZ11QRKC2HA9U88YJXSHL1I9K2G9JYX25NWZNNI3UK5ZML0FAMLQ7QI75DJFAZSSP8DFP81MYA1JQDNWHKUWDJX4DGECAYNOCGS89WYYA47B7HD8IG36EBOWOP6CMH4XZOQDTGWWTONV60CYXPHMWLZX6IJYFRK0YV4D4EH205SQS2J2TO3NL9AIQ9WJV2D4QYBC9C278WS08DUQDQB2MJ1HUI1ECSGP8XN0BP6' where id=72; -update noar ti set v1='KKI43JO85AAO0CU50JEGZC50F0DZ11QRKC2HA9U88YJXSHL1I9K2G9JYX25NWZNNI3UK5ZML0FAMLQ7QI75DJFAZSSP8DFP81MYA1JQDNWHKUWDJX4DGECAYNOCGS89WYYA47B7HD8IG36EBOWOP6CMH4XZOQDTGWWTONV60CYXPHMWLZX6IJYFRK0YV4D4EH205SQS2J2TO3NL9AIQ9WJV2D4QYBC9C278WS08DUQDQB2MJ1HUI1ECSGP8XN0BP6' where id=72; -update noar tt set v2='B3AR14NAJIBFS6WXNQDU9E2GSL0LSU855ILBS36KUBLF6VK81I134H4UC7F428MV7Z1KHX67NBZM1XH84UATRZWJF0MO6V1LEE24MCLDCN52YRL4A21CF9DSAEMMNK6XGH39XWIKNHXFQIB3FAFZ9VZLVQBILS24UMYZ77LJ2YWOX7TIHGLRTGHIDQOYZ48ETFRVQFDEMJ0Z2XVINPTIZJEKZ3JRUZ77860N1O4NCIQSFMYJX4XKXM65WKK9G0Q2L' where id=72; -update noar ti set v2='B3AR14NAJIBFS6WXNQDU9E2GSL0LSU855ILBS36KUBLF6VK81I134H4UC7F428MV7Z1KHX67NBZM1XH84UATRZWJF0MO6V1LEE24MCLDCN52YRL4A21CF9DSAEMMNK6XGH39XWIKNHXFQIB3FAFZ9VZLVQBILS24UMYZ77LJ2YWOX7TIHGLRTGHIDQOYZ48ETFRVQFDEMJ0Z2XVINPTIZJEKZ3JRUZ77860N1O4NCIQSFMYJX4XKXM65WKK9G0Q2L' where id=72; -update noar tt set v3='Q3PKU8ERQ21LXTL8B4NJLT2TNH3FEO4OEXROZU4CMLO2BQPPBOP2J4Z3QUP38YPWL01ON0HPDZSLQDFCF3CSVQMBW39PVMN7JJWGHWYNCQKAT9MQX017WXG9M1LAWJMZCIDA0OQ5BQ9CZ8V2WOAQGJYBW3NOGH6RWX3F0828B5H4K0HA417NUIDQPIVF0Y1P3RO8CN0HMDSDHO8NJ0YQ4D78WVSMHHIE8MJOTVVT9ZYMFTH8L2YY9IBUAIQ59VNNL' where id=72; -update noar ti set v3='Q3PKU8ERQ21LXTL8B4NJLT2TNH3FEO4OEXROZU4CMLO2BQPPBOP2J4Z3QUP38YPWL01ON0HPDZSLQDFCF3CSVQMBW39PVMN7JJWGHWYNCQKAT9MQX017WXG9M1LAWJMZCIDA0OQ5BQ9CZ8V2WOAQGJYBW3NOGH6RWX3F0828B5H4K0HA417NUIDQPIVF0Y1P3RO8CN0HMDSDHO8NJ0YQ4D78WVSMHHIE8MJOTVVT9ZYMFTH8L2YY9IBUAIQ59VNNL' where id=72; -update noar tt set v0='OJQVYIHHZDJEMWVRUUWIYNQ2B82XL2LPN5ENX334LFZ4KYAW2SSFH9JPUB1G9DOLSC4CW6HY1FQDQG4UNGBAZUKC1JFZ6VNHCPVQX9Y6DXAHR0MXSJN19VBI5A6SNFCL6VW5X37HPM2A6BMHCAA752LLDYRH71W9QUW4QSJ2FW8VOLQV1A138BOA9QL4OB55FL3R5JPJW10TOKMMPL465PCL9KXUP3WVNH24MV1XN816GDOMEDNEVC9TS215BJOMU' where id=73; -update noar ti set v0='OJQVYIHHZDJEMWVRUUWIYNQ2B82XL2LPN5ENX334LFZ4KYAW2SSFH9JPUB1G9DOLSC4CW6HY1FQDQG4UNGBAZUKC1JFZ6VNHCPVQX9Y6DXAHR0MXSJN19VBI5A6SNFCL6VW5X37HPM2A6BMHCAA752LLDYRH71W9QUW4QSJ2FW8VOLQV1A138BOA9QL4OB55FL3R5JPJW10TOKMMPL465PCL9KXUP3WVNH24MV1XN816GDOMEDNEVC9TS215BJOMU' where id=73; -update noar tt set v1='V95LHBUBZOYB47OBCZSYW2FXOX5012KZWQBJ2IPAKWQ479Y3XHW70BZLWGYQU7ETR984Z40CJ84KIGIT1O9DAF224PE3R0QU3CSQJBVH76FROWEB2RDNDNZRTE2HBVYBX7C8K3MF4QNZ6TBQ3IS64B2VOPHFHJUJGCEDI5CTQFHRPR6KK27O21AMFLE02HCJNI6ZTD4UO89Q0C8Y07HNZLWSRCQ1KVPL9IH98HP21IURTOZBG000ULWSABDHGDU9P' where id=73; -update noar ti set v1='V95LHBUBZOYB47OBCZSYW2FXOX5012KZWQBJ2IPAKWQ479Y3XHW70BZLWGYQU7ETR984Z40CJ84KIGIT1O9DAF224PE3R0QU3CSQJBVH76FROWEB2RDNDNZRTE2HBVYBX7C8K3MF4QNZ6TBQ3IS64B2VOPHFHJUJGCEDI5CTQFHRPR6KK27O21AMFLE02HCJNI6ZTD4UO89Q0C8Y07HNZLWSRCQ1KVPL9IH98HP21IURTOZBG000ULWSABDHGDU9P' where id=73; -update noar tt set v2='19DWGL7ODH4W4JXDA7YB4NNKPYE2TRGTN2028IMCKRIP3349W4C0CPTH6E9OWKGH23NUTVO9ADTRCRMFBW4UH1GXNIO2RPW8B5CB4DTMRW8407YDJ0Q1BI5MU34J17794VLDEYFBX9RAN6MFDRM72JBPXNBJP1DLFHRO8OWF0Q3UC5H6UTI5J1P2NI3L9AGK5T1I1UHP53905MY9DQXSRWYMGS21DML4J8RU23KID9IDC5810UGRZWWAIVIM2DXSS' where id=73; -update noar ti set v2='19DWGL7ODH4W4JXDA7YB4NNKPYE2TRGTN2028IMCKRIP3349W4C0CPTH6E9OWKGH23NUTVO9ADTRCRMFBW4UH1GXNIO2RPW8B5CB4DTMRW8407YDJ0Q1BI5MU34J17794VLDEYFBX9RAN6MFDRM72JBPXNBJP1DLFHRO8OWF0Q3UC5H6UTI5J1P2NI3L9AGK5T1I1UHP53905MY9DQXSRWYMGS21DML4J8RU23KID9IDC5810UGRZWWAIVIM2DXSS' where id=73; -update noar tt set v3='TUGBWR5FO4WC1S4ZN6J2KHGAR5OLAD767GKFCA0MSEKJK9H19ZB6V07MGGFLCRNUJJS4ACVUOOCN3MEFN46W3UHVJ36U1MC8EKYR8FGWOJYDFVJDKUFURINB17N18K4Q5B3LPSBKPOGX2ZL9MVGO6RB2EWVGPSF31BG87RF4NQJFJ216SZVLQSSPGLAZQ6HBLBGSRUNHATGQ8X7ICNHP3991BA2J0H4TPQX8YZ14MH4EX6E7JON5W5W1DWU80KLWA' where id=73; -update noar ti set v3='TUGBWR5FO4WC1S4ZN6J2KHGAR5OLAD767GKFCA0MSEKJK9H19ZB6V07MGGFLCRNUJJS4ACVUOOCN3MEFN46W3UHVJ36U1MC8EKYR8FGWOJYDFVJDKUFURINB17N18K4Q5B3LPSBKPOGX2ZL9MVGO6RB2EWVGPSF31BG87RF4NQJFJ216SZVLQSSPGLAZQ6HBLBGSRUNHATGQ8X7ICNHP3991BA2J0H4TPQX8YZ14MH4EX6E7JON5W5W1DWU80KLWA' where id=73; -update noar tt set v0='IXVHN2KO2BEDPMJG7XK5DJGY7AUZRHNSNNVRWJ4WU76BXVY6ENNE08NWXX3BJAFAG6CL59U5A5DF9R25IJCVPSVB8F4PX0TL0LW6HY0F7DBNFC8D4XU3ZSSGWATI7TXO0XSSC4KIV2HGSPIBSL88AXB2A6TSUP8JFI62DEEM2U6O76V722PDKCV6KKR0ITKRF6W1TAHRRR0S75OGKIOMAA9JRUSE3J7KYW7FDSH9GFJF9Y32B0SVVDVFV3GGPSHLI' where id=74; -update noar ti set v0='IXVHN2KO2BEDPMJG7XK5DJGY7AUZRHNSNNVRWJ4WU76BXVY6ENNE08NWXX3BJAFAG6CL59U5A5DF9R25IJCVPSVB8F4PX0TL0LW6HY0F7DBNFC8D4XU3ZSSGWATI7TXO0XSSC4KIV2HGSPIBSL88AXB2A6TSUP8JFI62DEEM2U6O76V722PDKCV6KKR0ITKRF6W1TAHRRR0S75OGKIOMAA9JRUSE3J7KYW7FDSH9GFJF9Y32B0SVVDVFV3GGPSHLI' where id=74; -update noar tt set v1='BGMV0FYBUTJG0ODDE8SEXM924JMID23BCV69G4FBTWNRO93G0YOTSAX9AN35V9ZYMKQF3VW9F24I1VJ2ISKQOE3R646WKIVG29WNRFRE3K64NKSCTF76JY8DDAH5B76IN5GV8175U8P5ZU8J111R3VWH1JJGD1ENC12H0PWCWV6N30JWHU7X6RZQE53S7BP5PXJ7QW7PL2SO8WQKWRA7G574TO3VWLN16SCJWQVTQ15KCRT5XN8YHJN3NXJIA4GGY' where id=74; -update noar ti set v1='BGMV0FYBUTJG0ODDE8SEXM924JMID23BCV69G4FBTWNRO93G0YOTSAX9AN35V9ZYMKQF3VW9F24I1VJ2ISKQOE3R646WKIVG29WNRFRE3K64NKSCTF76JY8DDAH5B76IN5GV8175U8P5ZU8J111R3VWH1JJGD1ENC12H0PWCWV6N30JWHU7X6RZQE53S7BP5PXJ7QW7PL2SO8WQKWRA7G574TO3VWLN16SCJWQVTQ15KCRT5XN8YHJN3NXJIA4GGY' where id=74; -update noar tt set v2='DO40UQ8OYI08NOL5F3RJEHIBDLM0QV0ONHRE7138HFIYM3KP9KZ58SP3TOVZ8C8XJC5GYQ5EPQGWGIIUTFWIBU07PB4IRZ6039BPK9HLP8F1COIA4HE35LKN2YDNP4A0IINHL10L3UL3YBPPLT11FJJKSRUO6OPPRBLKASSTPCW2193ZC3PNNSO3LBE9CHOOOQ70BNCQ1M3E73UHM6XMKW5MNM72SNNY226662P27ZGYUOA04WP3JBNFNKS6J13TI' where id=74; -update noar ti set v2='DO40UQ8OYI08NOL5F3RJEHIBDLM0QV0ONHRE7138HFIYM3KP9KZ58SP3TOVZ8C8XJC5GYQ5EPQGWGIIUTFWIBU07PB4IRZ6039BPK9HLP8F1COIA4HE35LKN2YDNP4A0IINHL10L3UL3YBPPLT11FJJKSRUO6OPPRBLKASSTPCW2193ZC3PNNSO3LBE9CHOOOQ70BNCQ1M3E73UHM6XMKW5MNM72SNNY226662P27ZGYUOA04WP3JBNFNKS6J13TI' where id=74; -update noar tt set v3='FD3BIZ39DJ7XU0NKEWHT2Q17J19E9PDN2S4FS2TIUQN12511KJJV3ROIPF6TOD5K6PI7QWRXJOCZFZ3OPUVV3IQX061MPTMXUJDTNI6MO5N9OMDE7RKOLBFCPZSLMIW3L20UCOYIQKUQV63FCWYJKLOE6EZTQXFFNKZ9HS79W2YR76OZPM12D1AEUFSPT464980H58YBBGVVH6F7LAKWLFKDU0T36ONS3TJ3FI7Q5CUF7Q643D24L493Q9VKKIUXS' where id=74; -update noar ti set v3='FD3BIZ39DJ7XU0NKEWHT2Q17J19E9PDN2S4FS2TIUQN12511KJJV3ROIPF6TOD5K6PI7QWRXJOCZFZ3OPUVV3IQX061MPTMXUJDTNI6MO5N9OMDE7RKOLBFCPZSLMIW3L20UCOYIQKUQV63FCWYJKLOE6EZTQXFFNKZ9HS79W2YR76OZPM12D1AEUFSPT464980H58YBBGVVH6F7LAKWLFKDU0T36ONS3TJ3FI7Q5CUF7Q643D24L493Q9VKKIUXS' where id=74; -update noar tt set v0='XEDOXIB62G0GD64FA796N7DNQ5F8H33Z60NO2APOG5TIULCZ7RWX0CQOIK3JXZYARHASN19GPNTV9PQEN2GIWPMSNKDCES5XCK2T0D67DVSXR8LG3A6C938C5JRAU6EDRJASCHD6CSWAT628AU6ALAC3P6X7CBJ0P9XK475K8WEN1BH0TD0V3PQD63ZSA1S9WHX11JVU2GYLT2YLVBMUJH4CHCWB6P4WY6IBRDT21Q8TU4EL7J29GIF4KEGZ686CO' where id=75; -update noar ti set v0='XEDOXIB62G0GD64FA796N7DNQ5F8H33Z60NO2APOG5TIULCZ7RWX0CQOIK3JXZYARHASN19GPNTV9PQEN2GIWPMSNKDCES5XCK2T0D67DVSXR8LG3A6C938C5JRAU6EDRJASCHD6CSWAT628AU6ALAC3P6X7CBJ0P9XK475K8WEN1BH0TD0V3PQD63ZSA1S9WHX11JVU2GYLT2YLVBMUJH4CHCWB6P4WY6IBRDT21Q8TU4EL7J29GIF4KEGZ686CO' where id=75; -update noar tt set v1='LZJY9L28JLUGLU3UO23WH0B5CCF3UOIK7Z3N60939DY83YTZI3E2UUIC489V7427CTVL8RTN723QWFTI1FVFTFRQB0C7HSMFJDMHD1UYI5OKR9HKZWMFRUBT91STZ7BQ6AZ4WWHENZLZDS0119B9ABVYO7J7447NRF2A8AYMIRKEX13X99ZP6QANWU5WPCGV2E536EP7NP6LOCV5EPLLN7ESKUSDCUY0CCAK6LC1EMO7QZI1BZWYRO7S5U42TS832' where id=75; -update noar ti set v1='LZJY9L28JLUGLU3UO23WH0B5CCF3UOIK7Z3N60939DY83YTZI3E2UUIC489V7427CTVL8RTN723QWFTI1FVFTFRQB0C7HSMFJDMHD1UYI5OKR9HKZWMFRUBT91STZ7BQ6AZ4WWHENZLZDS0119B9ABVYO7J7447NRF2A8AYMIRKEX13X99ZP6QANWU5WPCGV2E536EP7NP6LOCV5EPLLN7ESKUSDCUY0CCAK6LC1EMO7QZI1BZWYRO7S5U42TS832' where id=75; -update noar tt set v2='JKKWF9Q2L72OVYXSFM8SDPSGU3U4XW95ZW7K2Y4TUP1GSY3OI6U03J5FICPXQBPPTGT3T0XYKZ14EAIUEA0XIPCVOAPJ5SB9K9GVEM0QRRR2R1HO9UXB4NE8VRGZ3ZFVD5BPMHFS0KVTXLS13PV03D9AK088FD11H1VZ0DVYNCSVW2C28WDIUPP0IYX6XDXUYDIW8N7GT1A3RREDHS586AU0X9OQIQGD6O5IHMH5X9EWFGPCFBXC3DDKSA2TGSXAZ' where id=75; -update noar ti set v2='JKKWF9Q2L72OVYXSFM8SDPSGU3U4XW95ZW7K2Y4TUP1GSY3OI6U03J5FICPXQBPPTGT3T0XYKZ14EAIUEA0XIPCVOAPJ5SB9K9GVEM0QRRR2R1HO9UXB4NE8VRGZ3ZFVD5BPMHFS0KVTXLS13PV03D9AK088FD11H1VZ0DVYNCSVW2C28WDIUPP0IYX6XDXUYDIW8N7GT1A3RREDHS586AU0X9OQIQGD6O5IHMH5X9EWFGPCFBXC3DDKSA2TGSXAZ' where id=75; -update noar tt set v3='Q1VU1V7TLIS46IA99L44VRGFO81TPTU3C0F3MPZC46Z7HKP28HVNSPXP7ANN8MZFX0M9BC9U66WND1KVFV397JFP0W5K6LQ03IUGKVBJPZF3D7YWXD9EGL4QT3D3WZ02HZ476I8ENDDERWBRJ417VBNOO9ZS88AC2LVC45EGXCMA0L8ANHDT9C9R02V440MU5OPNGOMS3U9KIS5EGTASTA1BPJR6U1KY30YLO341CTXDZ4DIFQAUXG6DEAV6H9N47' where id=75; -update noar ti set v3='Q1VU1V7TLIS46IA99L44VRGFO81TPTU3C0F3MPZC46Z7HKP28HVNSPXP7ANN8MZFX0M9BC9U66WND1KVFV397JFP0W5K6LQ03IUGKVBJPZF3D7YWXD9EGL4QT3D3WZ02HZ476I8ENDDERWBRJ417VBNOO9ZS88AC2LVC45EGXCMA0L8ANHDT9C9R02V440MU5OPNGOMS3U9KIS5EGTASTA1BPJR6U1KY30YLO341CTXDZ4DIFQAUXG6DEAV6H9N47' where id=75; -update noar tt set v0='DGVDRPM4M78IAZLHGB6QPIP2Q2M57EAFHZ3QBNSQK0CP5MM33YFQNWW88MJSFKCTWKXTT0VHSDNX0AUAMYLNOF74EJ8DC9RA1X4BCG3FVE0BH5ISUG6MBHEO32ZKQVOTEHOBWNL2GM73QKCRNWUO1XHB3BBP3FR03L7897EJ3HXTPH94HX85T7D2CFGIMEC34680KZH26E1KJBRG3JPCAIHAY0HBX73K0KCWZVNJOSCYWFLWKEZ7Q9CW234ZQ92Y1' where id=76; -update noar ti set v0='DGVDRPM4M78IAZLHGB6QPIP2Q2M57EAFHZ3QBNSQK0CP5MM33YFQNWW88MJSFKCTWKXTT0VHSDNX0AUAMYLNOF74EJ8DC9RA1X4BCG3FVE0BH5ISUG6MBHEO32ZKQVOTEHOBWNL2GM73QKCRNWUO1XHB3BBP3FR03L7897EJ3HXTPH94HX85T7D2CFGIMEC34680KZH26E1KJBRG3JPCAIHAY0HBX73K0KCWZVNJOSCYWFLWKEZ7Q9CW234ZQ92Y1' where id=76; -update noar tt set v1='TOR40LL50S3CB1GW901HQP3D3EFF8CWVHV8NR4LGVA8P7ESZOF1W9UMHDU716E5SPL259Z1X4F639EYYOONQ3IJG7OMPIN7QZ5V3ZWP1EY0RM7IZCJY1DRQGCRKG8OTXUBW9AHR7AZIXY13B7P7RCAPX8I0MK6HJGHJZD8YOKM7ZJ9S6XFX452KLLW7MAJV3KG2PDC8C7TYEH017ZIZGBN66U3ABY04ABNH7FH0KP443TRZ5A4N5NCVBKRQ334IVU' where id=76; -update noar ti set v1='TOR40LL50S3CB1GW901HQP3D3EFF8CWVHV8NR4LGVA8P7ESZOF1W9UMHDU716E5SPL259Z1X4F639EYYOONQ3IJG7OMPIN7QZ5V3ZWP1EY0RM7IZCJY1DRQGCRKG8OTXUBW9AHR7AZIXY13B7P7RCAPX8I0MK6HJGHJZD8YOKM7ZJ9S6XFX452KLLW7MAJV3KG2PDC8C7TYEH017ZIZGBN66U3ABY04ABNH7FH0KP443TRZ5A4N5NCVBKRQ334IVU' where id=76; -update noar tt set v2='SN1EP8Y85PRPO1RPFGLHV7AHF4Y88JVNZAJE7ZPNW8CWTURPFU8EOYMCZ66TFAO2J679FQAPE4UQ21S35V7O1MFTRGWQ6TIU7X0H25FEFR9BRFDPSVBDWL3LLR6097LYWN9L2M3WHYYVCKHOW12HW6NSMH19QXMAJY159MGW6PNHURIFKBR2P0XXCRTUZP7WDPBM7B9IRFV6J90UW8AIFQROTB34NOT7ZA1I1BEV0PQ5IE34T9VX4QB3GYMZ4P4C1' where id=76; -update noar ti set v2='SN1EP8Y85PRPO1RPFGLHV7AHF4Y88JVNZAJE7ZPNW8CWTURPFU8EOYMCZ66TFAO2J679FQAPE4UQ21S35V7O1MFTRGWQ6TIU7X0H25FEFR9BRFDPSVBDWL3LLR6097LYWN9L2M3WHYYVCKHOW12HW6NSMH19QXMAJY159MGW6PNHURIFKBR2P0XXCRTUZP7WDPBM7B9IRFV6J90UW8AIFQROTB34NOT7ZA1I1BEV0PQ5IE34T9VX4QB3GYMZ4P4C1' where id=76; -update noar tt set v3='VNPXIFNWBJL398TGBQZLUNS11WZY5H3Q50TL41DE20P2IYM3DW81GPFPE3KM0385RIMN8IJ0KBF324OHDO2H4FMNZ3TBI5MSOKQI6SPMPZ8DRUBDLATQ6JI0130UGVB9LXKO36ZUPTEJ1IOPVC5SU2P6W0WU26FBGJIIQJFMYCT6QK16OHYEQG356VUD31K58AR3Z8ZKLFWG4SXNAU5ZP5LOE59TE6LP0C89DPOUE8VNFEN7MASS2FU2TIB96FY61' where id=76; -update noar ti set v3='VNPXIFNWBJL398TGBQZLUNS11WZY5H3Q50TL41DE20P2IYM3DW81GPFPE3KM0385RIMN8IJ0KBF324OHDO2H4FMNZ3TBI5MSOKQI6SPMPZ8DRUBDLATQ6JI0130UGVB9LXKO36ZUPTEJ1IOPVC5SU2P6W0WU26FBGJIIQJFMYCT6QK16OHYEQG356VUD31K58AR3Z8ZKLFWG4SXNAU5ZP5LOE59TE6LP0C89DPOUE8VNFEN7MASS2FU2TIB96FY61' where id=76; -update noar tt set v0='4WEJ6QCF8K5CYS20J88ICFQPCX470NAKBBLA5RMYB0XCK2S8C6RNIQ5LLWZR58W8ET0R2DL5I75E0YVQRC9VSPYK842NDRQLBP4SR4XMR374CS257OVQJ8TJAVTF3RS7CNZCIVN874UHR70YQO4GGQ113QEJ47EN5D1OZQNCCQU6VBMY7CPUFMB01JGH1M3R56ONEOIDNIGCHLBKI3BM2BVJ9WBPXPC2UZSEYWB222Z4LGWYM0UOZUHNA5VJCJANP' where id=77; -update noar ti set v0='4WEJ6QCF8K5CYS20J88ICFQPCX470NAKBBLA5RMYB0XCK2S8C6RNIQ5LLWZR58W8ET0R2DL5I75E0YVQRC9VSPYK842NDRQLBP4SR4XMR374CS257OVQJ8TJAVTF3RS7CNZCIVN874UHR70YQO4GGQ113QEJ47EN5D1OZQNCCQU6VBMY7CPUFMB01JGH1M3R56ONEOIDNIGCHLBKI3BM2BVJ9WBPXPC2UZSEYWB222Z4LGWYM0UOZUHNA5VJCJANP' where id=77; -update noar tt set v1='NM8HV723TWUXSOBD7UIRKVOV7H5YJ83QYYUFI0H10XPEYE1F0D51VNWRG0YLO39ONIHJ6HBM6WIZAFYFUT8DBT5K637RW8BT05UU3XSPHLHEOG62W6GGYSWSM1VVC6O3RU08WSPCZ8Z9W56DJXQRCQX79OKWIGE0GTVJ5IFF3F5LQXWOUBVOZ55EK2J1UHZK4A22KFN656WWMBGYNVBZYFT9RSW8N8BYI5UKG9Q8IW8XVDQ9WZVDI6TVPQGHDH16T' where id=77; -update noar ti set v1='NM8HV723TWUXSOBD7UIRKVOV7H5YJ83QYYUFI0H10XPEYE1F0D51VNWRG0YLO39ONIHJ6HBM6WIZAFYFUT8DBT5K637RW8BT05UU3XSPHLHEOG62W6GGYSWSM1VVC6O3RU08WSPCZ8Z9W56DJXQRCQX79OKWIGE0GTVJ5IFF3F5LQXWOUBVOZ55EK2J1UHZK4A22KFN656WWMBGYNVBZYFT9RSW8N8BYI5UKG9Q8IW8XVDQ9WZVDI6TVPQGHDH16T' where id=77; -update noar tt set v2='T8BEEU1BI4QFYVTHCAUKHUAU4VRI86XUGCL66119CXJMXQU0Q6J3TR4SCJIHIMJMUGMJ84B22XGGSOTVOVZO1TJT8YIS3G6Y1ETTYK9061SY3N9GG6GYUXU3O4VENJ1138BU7KQAKXE457SDR9D6U1B3F8H07ZWEF7UCU0WRNIP2PD3F9D8NP7DXJR06ND3SYST5AIPKW3DS5I6CENXA6E6GJQ8XB40VGSZ9MWMIQMUVQ5P6CNUL9FMB4FEGTJCA4' where id=77; -update noar ti set v2='T8BEEU1BI4QFYVTHCAUKHUAU4VRI86XUGCL66119CXJMXQU0Q6J3TR4SCJIHIMJMUGMJ84B22XGGSOTVOVZO1TJT8YIS3G6Y1ETTYK9061SY3N9GG6GYUXU3O4VENJ1138BU7KQAKXE457SDR9D6U1B3F8H07ZWEF7UCU0WRNIP2PD3F9D8NP7DXJR06ND3SYST5AIPKW3DS5I6CENXA6E6GJQ8XB40VGSZ9MWMIQMUVQ5P6CNUL9FMB4FEGTJCA4' where id=77; -update noar tt set v3='Z2LB146QXCQ1K30327L0P5C61U2NHPVF43EUZB8LMPNM0VZULCK1L77BK760Y16RS0I6TZ8VLC7OEUAC90NMRMN6PWBUKS0R9C7K5J5CXX5XMP50Y4EPK7M7DR6SFIKGOSMEC0X5NE7D8OQ8BW2M8R2UK5G6EMSON0PDVYW9LTZQ1SRSOOGD08EPKS53RHYRLJ7G3NYIFUVGTESDQPOQG3JTGHPSLLE0CSFHWMTN5DPLIX25ZZXWPD8UU3DMIO8G3' where id=77; -update noar ti set v3='Z2LB146QXCQ1K30327L0P5C61U2NHPVF43EUZB8LMPNM0VZULCK1L77BK760Y16RS0I6TZ8VLC7OEUAC90NMRMN6PWBUKS0R9C7K5J5CXX5XMP50Y4EPK7M7DR6SFIKGOSMEC0X5NE7D8OQ8BW2M8R2UK5G6EMSON0PDVYW9LTZQ1SRSOOGD08EPKS53RHYRLJ7G3NYIFUVGTESDQPOQG3JTGHPSLLE0CSFHWMTN5DPLIX25ZZXWPD8UU3DMIO8G3' where id=77; -update noar tt set v0='29IEVV2VC30F5OO9DQXIXTA11VXKRXB158ZNV40SNKBAMVHCY48LZ7EXQ879A08N766L46AKJJCE2W32TR8OQOIHFC3RV8232SABMQK0X3D32STQZXQMD2AP7FIDNYTKLDC5V19EMSB0179BJPZ33J7206FQZXZHDT2UMBRUTHMABIFNCX4WLEUWAGN2A0TZDBULK4GHDNPJFWDJJDOQAQO0XSLBUNA61QTSK720OOV3GATYBIPXA1EBIED2DNXOE' where id=78; -update noar ti set v0='29IEVV2VC30F5OO9DQXIXTA11VXKRXB158ZNV40SNKBAMVHCY48LZ7EXQ879A08N766L46AKJJCE2W32TR8OQOIHFC3RV8232SABMQK0X3D32STQZXQMD2AP7FIDNYTKLDC5V19EMSB0179BJPZ33J7206FQZXZHDT2UMBRUTHMABIFNCX4WLEUWAGN2A0TZDBULK4GHDNPJFWDJJDOQAQO0XSLBUNA61QTSK720OOV3GATYBIPXA1EBIED2DNXOE' where id=78; -update noar tt set v1='O2CZ4IKJ3US5Q376OFNLFOC5U789CY4WYVKMZBY6G4DGZPN2REBJRVCBD1VHJNUL9PDPLFHY6Y9PND3KJZEOPUU0S1CU1JXC63CD2VA1095X311EGB306DMB20PNMQZZPWG8DDI653DLS2L4WQF8MAPC8ZHBKSN9UEA35JDE6LJ5MTGVY7FN9FVY8MRL5PB8EFURSE3N524HUD7109VQZ1BB73SKTV0XVX1512PXH7P93AGKUNNN3IG8TN4T9L0MW' where id=78; -update noar ti set v1='O2CZ4IKJ3US5Q376OFNLFOC5U789CY4WYVKMZBY6G4DGZPN2REBJRVCBD1VHJNUL9PDPLFHY6Y9PND3KJZEOPUU0S1CU1JXC63CD2VA1095X311EGB306DMB20PNMQZZPWG8DDI653DLS2L4WQF8MAPC8ZHBKSN9UEA35JDE6LJ5MTGVY7FN9FVY8MRL5PB8EFURSE3N524HUD7109VQZ1BB73SKTV0XVX1512PXH7P93AGKUNNN3IG8TN4T9L0MW' where id=78; -update noar tt set v2='7MVBE30ICEGL02SN6Z82VSS93YD88NHCIR09WMZHD5L5JA4K366JQAD1TRRED086OVNV4ZW80E8PP1ZKP1ACZ53PGJVXVSI0NNC0CN1XW6RFC0FUBMF535X9A4FWA28C1BSB9FOIJJXGAX3JE9F0AWOW0HQYTQRMYLWAUMD1MXN9324Q8QW40U4TGFD3W8J2NP29VIML4F2GNYDQWTV5M3QRCVSMEN2DZ8X0ADL0TH28LLHYQ2DVNY9G979C5NJXF' where id=78; -update noar ti set v2='7MVBE30ICEGL02SN6Z82VSS93YD88NHCIR09WMZHD5L5JA4K366JQAD1TRRED086OVNV4ZW80E8PP1ZKP1ACZ53PGJVXVSI0NNC0CN1XW6RFC0FUBMF535X9A4FWA28C1BSB9FOIJJXGAX3JE9F0AWOW0HQYTQRMYLWAUMD1MXN9324Q8QW40U4TGFD3W8J2NP29VIML4F2GNYDQWTV5M3QRCVSMEN2DZ8X0ADL0TH28LLHYQ2DVNY9G979C5NJXF' where id=78; -update noar tt set v3='NXI9Z1155C569CT5SCNSUP1A94YUH0PQ8K6BJ40PCFL3TSL37GE4F55JWK87BQUERLU9TMN8RHHAWUL6VKF7JR6U6XJLQH8E3NTL8XJJW38ZOG0U9SS8A6LUJJWWLV3RTUP8M24RJUOU16ZUP8IW0BSFBPUDA6O5GI89QHBCQ9G3IV1NXDXC7WIH0AM5R1QHC2ATKCXGRH2C1BBOFJ8IDN5V55O6ALOZ7OFVAMMBL624GHZVRBBL4FCLOX5IG7CT9' where id=78; -update noar ti set v3='NXI9Z1155C569CT5SCNSUP1A94YUH0PQ8K6BJ40PCFL3TSL37GE4F55JWK87BQUERLU9TMN8RHHAWUL6VKF7JR6U6XJLQH8E3NTL8XJJW38ZOG0U9SS8A6LUJJWWLV3RTUP8M24RJUOU16ZUP8IW0BSFBPUDA6O5GI89QHBCQ9G3IV1NXDXC7WIH0AM5R1QHC2ATKCXGRH2C1BBOFJ8IDN5V55O6ALOZ7OFVAMMBL624GHZVRBBL4FCLOX5IG7CT9' where id=78; -update noar tt set v0='Q3FFZD7DDX86QMDGSJY2BRU58T98MFBN7BSDX49FII54HWDENRUHG6GP3X2SS4TD10U9OHHIW74AA99VHLM05GQECAJCA106FQX0B9CSQ5ULJ2LHTA3JSW9DU6GYQFGDNPXCRE2TQ0F4D3T0ICXJIK4UH8CN94CKVZYWETQ6M14L4P4VLLJFT2ODOIM5OG1C37CTMI84H462WMR0U75238YRCZ32335JO2T37ATFFU2R986OFMB21LRSXU7OZ8LSB' where id=79; -update noar ti set v0='Q3FFZD7DDX86QMDGSJY2BRU58T98MFBN7BSDX49FII54HWDENRUHG6GP3X2SS4TD10U9OHHIW74AA99VHLM05GQECAJCA106FQX0B9CSQ5ULJ2LHTA3JSW9DU6GYQFGDNPXCRE2TQ0F4D3T0ICXJIK4UH8CN94CKVZYWETQ6M14L4P4VLLJFT2ODOIM5OG1C37CTMI84H462WMR0U75238YRCZ32335JO2T37ATFFU2R986OFMB21LRSXU7OZ8LSB' where id=79; -update noar tt set v1='1CHHHKNY6CMSUK3X4JJYU1ID0T2WYA4QSL7C5KSJ8L1WULYTTPSWPJLNPEV7R9D37H0F819S5PDBQ483AO8ZYT64O69U2XPV0EP9X549G4PPBKMY1P8Z1JOMAANYSO6JF19GJ1IHUBVOSZDNGROFG26KW31CF8HSSVJRTVRUXSQTDJKI1KF3J281QAL41WP4Q2CKXRNCWLQ4QUOV1C8UN4DYCSPN5PYD1KHZ5I7MIQ6ZDLR4S7R5BXVQ3CK04D63M' where id=79; -update noar ti set v1='1CHHHKNY6CMSUK3X4JJYU1ID0T2WYA4QSL7C5KSJ8L1WULYTTPSWPJLNPEV7R9D37H0F819S5PDBQ483AO8ZYT64O69U2XPV0EP9X549G4PPBKMY1P8Z1JOMAANYSO6JF19GJ1IHUBVOSZDNGROFG26KW31CF8HSSVJRTVRUXSQTDJKI1KF3J281QAL41WP4Q2CKXRNCWLQ4QUOV1C8UN4DYCSPN5PYD1KHZ5I7MIQ6ZDLR4S7R5BXVQ3CK04D63M' where id=79; -update noar tt set v2='9LW7DQ1MLCRTJ9L1BRBBYOAR4M89KDJT9U00AO2VV7C48FOJRR1YQ17G0ACP25CL88T9KN2IHKNIQNZE27W2YZTD3D6JUPME6URTAPYTY7UTE80CS1GHBBJIRLLATPIBMXO1H47ZZBN1ZW07TX1P49PX4GZXNWT837N4QMS1KZ5MHGQ86Z7A2GDPDE12BH2S41RG0A1GVD52BXKXI7YFG57KUGS1C9TKYUMTZVMAQ34A60FI43R4R4HDTMVJC2QYA' where id=79; -update noar ti set v2='9LW7DQ1MLCRTJ9L1BRBBYOAR4M89KDJT9U00AO2VV7C48FOJRR1YQ17G0ACP25CL88T9KN2IHKNIQNZE27W2YZTD3D6JUPME6URTAPYTY7UTE80CS1GHBBJIRLLATPIBMXO1H47ZZBN1ZW07TX1P49PX4GZXNWT837N4QMS1KZ5MHGQ86Z7A2GDPDE12BH2S41RG0A1GVD52BXKXI7YFG57KUGS1C9TKYUMTZVMAQ34A60FI43R4R4HDTMVJC2QYA' where id=79; -update noar tt set v3='O8LRF4704XQ0JSM6M02LTI146T773PP9T4ZYYQO36S4CCBPLR8T6CUAP02YVKZ66ZHD35OUDMHGATSR5RUB6KZEDUO4FQWH8Q9ONW70C1LFTE7D4WP3EIC3RJH7XQWS7Q8PCMX7O5MUODVB6B3H8CE6PUMNJAKND4PODW6D3DGG5C8VBV7CKIB2OKGSGDPMN6SFT8R03MV07L4EASBRM7EXIRXZ80DJ7QHKRUITBY45X7L4ASLBBTOABIHRU7VEUA' where id=79; -update noar ti set v3='O8LRF4704XQ0JSM6M02LTI146T773PP9T4ZYYQO36S4CCBPLR8T6CUAP02YVKZ66ZHD35OUDMHGATSR5RUB6KZEDUO4FQWH8Q9ONW70C1LFTE7D4WP3EIC3RJH7XQWS7Q8PCMX7O5MUODVB6B3H8CE6PUMNJAKND4PODW6D3DGG5C8VBV7CKIB2OKGSGDPMN6SFT8R03MV07L4EASBRM7EXIRXZ80DJ7QHKRUITBY45X7L4ASLBBTOABIHRU7VEUA' where id=79; -update noar tt set v0='5ERX9GS9UO6KRUFIFQ3EYM7WIWVX4BN5MQZLKH3ZK9UYY5QSHKP0G04ALNCD2TNHQ7TXURQNH07B3OR16KOEUUJPJMC12MEX88SOPSM6OR9OZA549SN9768C3KMXDTX94XPFBJDO8K0RWHU6CEMYIGYMOI39HJN6SYLB79WLIO4FWMV8CHOR23N3UHVOVCUMGQI7HF52OEFEDUFLLAKDD04JEW6F5QS7EGL8JUHPN4IX1ORREBK8P1CVGU0H90P5G' where id=80; -update noar ti set v0='5ERX9GS9UO6KRUFIFQ3EYM7WIWVX4BN5MQZLKH3ZK9UYY5QSHKP0G04ALNCD2TNHQ7TXURQNH07B3OR16KOEUUJPJMC12MEX88SOPSM6OR9OZA549SN9768C3KMXDTX94XPFBJDO8K0RWHU6CEMYIGYMOI39HJN6SYLB79WLIO4FWMV8CHOR23N3UHVOVCUMGQI7HF52OEFEDUFLLAKDD04JEW6F5QS7EGL8JUHPN4IX1ORREBK8P1CVGU0H90P5G' where id=80; -update noar tt set v1='Z760IJEEUXH9MNILGXL3X1AICMXZ8K9G66B2WA39SDVDG9CNWCKZU1XXDA5LNYV4UT5DORMX17T6PNR0V4B3TD7VTAY0F4ZWW4U34P3COLBBIXR7567URPVZKKP857QH0230GNQ629SUTBQPQ5WPH4RQHYQUWMWLF1NHCMB7JFPTXPML67FSAMXE975VL4DCK3A8Q46BLOIXG3QETW7EWDHQPXLUYSKP61B71LTM1LNF0ZTOW02A95QAEQOL02VQ4' where id=80; -update noar ti set v1='Z760IJEEUXH9MNILGXL3X1AICMXZ8K9G66B2WA39SDVDG9CNWCKZU1XXDA5LNYV4UT5DORMX17T6PNR0V4B3TD7VTAY0F4ZWW4U34P3COLBBIXR7567URPVZKKP857QH0230GNQ629SUTBQPQ5WPH4RQHYQUWMWLF1NHCMB7JFPTXPML67FSAMXE975VL4DCK3A8Q46BLOIXG3QETW7EWDHQPXLUYSKP61B71LTM1LNF0ZTOW02A95QAEQOL02VQ4' where id=80; -update noar tt set v2='L78CIOWIEKYZTNHFVWC6TW66NLQJ0GP4CASGEJ5B79LD5MLVVPIG6R8W98T1OZ16ZY7QXHZ8QIZADOFMRV2AOXPW3GRD9K087QBCGQ9TWA7LAF26KDJ51P9SM0N7L8E2K6MRYUVY04GG4TZZMNP0GLH8U8TRNB7PYO7NE96HGX26MJSXXDBZ7QRBRWSWKOUA0IVO1H95XLFACM8J37TH97K1JSG6AUFLEA7Q8X6IHM7385I7PIE5J69KGYKPLP0YL' where id=80; -update noar ti set v2='L78CIOWIEKYZTNHFVWC6TW66NLQJ0GP4CASGEJ5B79LD5MLVVPIG6R8W98T1OZ16ZY7QXHZ8QIZADOFMRV2AOXPW3GRD9K087QBCGQ9TWA7LAF26KDJ51P9SM0N7L8E2K6MRYUVY04GG4TZZMNP0GLH8U8TRNB7PYO7NE96HGX26MJSXXDBZ7QRBRWSWKOUA0IVO1H95XLFACM8J37TH97K1JSG6AUFLEA7Q8X6IHM7385I7PIE5J69KGYKPLP0YL' where id=80; -update noar tt set v3='ROHU3JWF647KJDT4HJUJ2S5WQ1HJFDCE6BMNDUETEV9AENM3MMVBDENN42MHS4093TUCWNF3UBLEN8AVQ9R8RNUQ0KODU3CJXDKU79JMOK6B17ZQX5H066299S03HG2CS7HAE0XWA31Z5O27BDTBMH00AMZGURMXAY6N3DKPHWGXJMTPV8F2K261BHUBAXB3K9QY38MC7AZJIAVHF350FFPFBVPRV9CCJVNFNXFO00VFH5BO71J2M97BHCZH5GGII' where id=80; -update noar ti set v3='ROHU3JWF647KJDT4HJUJ2S5WQ1HJFDCE6BMNDUETEV9AENM3MMVBDENN42MHS4093TUCWNF3UBLEN8AVQ9R8RNUQ0KODU3CJXDKU79JMOK6B17ZQX5H066299S03HG2CS7HAE0XWA31Z5O27BDTBMH00AMZGURMXAY6N3DKPHWGXJMTPV8F2K261BHUBAXB3K9QY38MC7AZJIAVHF350FFPFBVPRV9CCJVNFNXFO00VFH5BO71J2M97BHCZH5GGII' where id=80; -update noar tt set v0='7IAQL7HCL9MS2N4H6MQRE7R98CHC5JRXI61AJOZQBLQVQ7PKGYAML3TMKZP6TCYNYEI030V838YCWSLKHT557WWIJ0MJIQA8WMMJHWHNIG4PXPAN626XG7PQT8BWJEVZ8VMNQGHCCYAXVZA4OMKO6H9AQK719WCQUZFG3CD928C7RN270PZIAZB3SHFLZSAK20WJK8VHVFN9CQ8XFGB0Q41TGNBQH8E1N2N290PNMUUCZ7YS0MWN6S1GD6D9CDF38' where id=81; -update noar ti set v0='7IAQL7HCL9MS2N4H6MQRE7R98CHC5JRXI61AJOZQBLQVQ7PKGYAML3TMKZP6TCYNYEI030V838YCWSLKHT557WWIJ0MJIQA8WMMJHWHNIG4PXPAN626XG7PQT8BWJEVZ8VMNQGHCCYAXVZA4OMKO6H9AQK719WCQUZFG3CD928C7RN270PZIAZB3SHFLZSAK20WJK8VHVFN9CQ8XFGB0Q41TGNBQH8E1N2N290PNMUUCZ7YS0MWN6S1GD6D9CDF38' where id=81; -update noar tt set v1='WHCYLKOEHI8OEAXP0KP8WICKENH4S8LI6246ZG0NVGL8G4WZFB1CM8GEA10O4G79LO79T0YKNKNHE8Y1VMPGB1YBHRA5SR6R3F9GC0K45CG9AYWG0OZ52AKNMF50YA9Q22OKXQZ111CHQESQAXEASOTAVF0ZFJ156DXRYPTW9M7OE2QDJGBEGCY9H63YHN6MI95K2ZMJPWE02VMFGTSKHAY92X65TCRXI4LXSDPGBHDXNM84ZWDOC2WX3S51A93BM' where id=81; -update noar ti set v1='WHCYLKOEHI8OEAXP0KP8WICKENH4S8LI6246ZG0NVGL8G4WZFB1CM8GEA10O4G79LO79T0YKNKNHE8Y1VMPGB1YBHRA5SR6R3F9GC0K45CG9AYWG0OZ52AKNMF50YA9Q22OKXQZ111CHQESQAXEASOTAVF0ZFJ156DXRYPTW9M7OE2QDJGBEGCY9H63YHN6MI95K2ZMJPWE02VMFGTSKHAY92X65TCRXI4LXSDPGBHDXNM84ZWDOC2WX3S51A93BM' where id=81; -update noar tt set v2='GGVI66QTBSD6H37N1UFPW2UASZB6U08I538EFE6AYGEOSG1Y4OL50FRIUW1TYDSX5NAGMUBQTVP1EI4NK85IR7BATNDZ2GTXWOROVV0GQ1IO5W1FSANU1FD6L81X6QP8EFSJ49BZO286PLZAFYNNSA6ANW8NUB8ZDO6BXOUU2NE3IC3NCUYE27L5BB0UPNNAFMOTTOXOHG3BZTV004FS0ID6H740HMCXNNTPED13B6NAUDYMBZSXHRDK42CL6WR5E' where id=81; -update noar ti set v2='GGVI66QTBSD6H37N1UFPW2UASZB6U08I538EFE6AYGEOSG1Y4OL50FRIUW1TYDSX5NAGMUBQTVP1EI4NK85IR7BATNDZ2GTXWOROVV0GQ1IO5W1FSANU1FD6L81X6QP8EFSJ49BZO286PLZAFYNNSA6ANW8NUB8ZDO6BXOUU2NE3IC3NCUYE27L5BB0UPNNAFMOTTOXOHG3BZTV004FS0ID6H740HMCXNNTPED13B6NAUDYMBZSXHRDK42CL6WR5E' where id=81; -update noar tt set v3='0CUC6PG8338586R61KV252EUYFR6KCS93634XBUJYBEBJDT0DPE4U2HCQVHLBDMQZAISIVR7DOE0YHF200PAUKMKTC7DKMGYD66XVTPKVBAO0XQJ3PRZEWR5YFXKCL3O1OXNI52P3R2JZ7VS492LH2ROOQJS7M7D8TX8T38BTNJQ702C9Q49UFV6H2WGRE85XKBPAYW0JLECJCPK78O95YP8M0W5URK8707NUBMPHALYU67CCO8HOVH2DARLRYJ9E' where id=81; -update noar ti set v3='0CUC6PG8338586R61KV252EUYFR6KCS93634XBUJYBEBJDT0DPE4U2HCQVHLBDMQZAISIVR7DOE0YHF200PAUKMKTC7DKMGYD66XVTPKVBAO0XQJ3PRZEWR5YFXKCL3O1OXNI52P3R2JZ7VS492LH2ROOQJS7M7D8TX8T38BTNJQ702C9Q49UFV6H2WGRE85XKBPAYW0JLECJCPK78O95YP8M0W5URK8707NUBMPHALYU67CCO8HOVH2DARLRYJ9E' where id=81; -update noar tt set v0='SROIC3LDYM70OIGPPB8C8TCQFKGYIH7MO31KZM3B36A2F74R99PFX9YELIANGQZP5OY3XRBVU3264KB971HUBIBVLD2PY3NPEOOU8SJQLHCPF6BCJTMEF5YMU0UKPGSBO3I9EPN6DQCINB3PDKGPV7XCXLAPCTV5L07SYFAQ1PXW1IKXWV2V76EOAJHERBMWMNSTU9KVT9S8DEHB4MQW55HGZHSY9EZG97H4RUUT36EWBYJGXHZT1NV59EYHJRQHR' where id=82; -update noar ti set v0='SROIC3LDYM70OIGPPB8C8TCQFKGYIH7MO31KZM3B36A2F74R99PFX9YELIANGQZP5OY3XRBVU3264KB971HUBIBVLD2PY3NPEOOU8SJQLHCPF6BCJTMEF5YMU0UKPGSBO3I9EPN6DQCINB3PDKGPV7XCXLAPCTV5L07SYFAQ1PXW1IKXWV2V76EOAJHERBMWMNSTU9KVT9S8DEHB4MQW55HGZHSY9EZG97H4RUUT36EWBYJGXHZT1NV59EYHJRQHR' where id=82; -update noar tt set v1='UDYCTXDNP6G6W3I140VDNAPYR48F2ETEPFV0RKPET0388DS7793BKGHR8TWBMGZMIIL52T9Z1FQ2IVQD7K895IUE3GZO92AOGF8U1GGYGU7NMXMXVUBY6OMIQRGNZ56BMAOO9L8GYKSH5HS1YTAD8CIXE1N7W93OEBVCJGSW4ZXUKBHGFFZIPXL93BEYLK9FKY6AUYAVCZIRWPG6SVSTW79KP0FWZYO0Y85UMXBGNJJ7PZDMRNR3HA09U4O4XBR8Y' where id=82; -update noar ti set v1='UDYCTXDNP6G6W3I140VDNAPYR48F2ETEPFV0RKPET0388DS7793BKGHR8TWBMGZMIIL52T9Z1FQ2IVQD7K895IUE3GZO92AOGF8U1GGYGU7NMXMXVUBY6OMIQRGNZ56BMAOO9L8GYKSH5HS1YTAD8CIXE1N7W93OEBVCJGSW4ZXUKBHGFFZIPXL93BEYLK9FKY6AUYAVCZIRWPG6SVSTW79KP0FWZYO0Y85UMXBGNJJ7PZDMRNR3HA09U4O4XBR8Y' where id=82; -update noar tt set v2='74EERGPYEQ8TB15ROHJZUQS70ZR8XBV0ESRE60YP6NLNKAPHYVS1PN3WIN65YVPTLQOARM9PX521WLO718I3DHRGDFGMULT6I5BPGMMK8SPE87G7BMA6BRIXCLFY6DF6PVEN0G1U9F0GZXN2AARQNV0HJL9KEQP08VPUNXM2P1RJG7B79Y4O0YCIOQ2WDJQKWERATSTR6JN1BACF3QMH5T8LQRTTIVGVI27Y6YYS0TCRLH62LYRIC7CKVJYYFW9YR' where id=82; -update noar ti set v2='74EERGPYEQ8TB15ROHJZUQS70ZR8XBV0ESRE60YP6NLNKAPHYVS1PN3WIN65YVPTLQOARM9PX521WLO718I3DHRGDFGMULT6I5BPGMMK8SPE87G7BMA6BRIXCLFY6DF6PVEN0G1U9F0GZXN2AARQNV0HJL9KEQP08VPUNXM2P1RJG7B79Y4O0YCIOQ2WDJQKWERATSTR6JN1BACF3QMH5T8LQRTTIVGVI27Y6YYS0TCRLH62LYRIC7CKVJYYFW9YR' where id=82; -update noar tt set v3='5C29FPCW6KQ1CGGHRXVNX6NYT4A7R9MKEJZTXWQXV5MJ3028G00BR6438SUVYQ6G518WBVN5UQSUF2DG16H54XA42G3FJGU2J2RVC58LR7LE456XODPR0Y74J4TN66DY6RUEOEINZW4NHZVZGCFDG6S5Z1H2L0NX3KKZ4CUI4S9YMNOIBRFBTYN039WL6S0FTVFZTLU4LJSV71VSHZEEQTRH1F8OLT1NPQ0GJ8IARUHCJDOTIFHLX7CX25EPZRSFF' where id=82; -update noar ti set v3='5C29FPCW6KQ1CGGHRXVNX6NYT4A7R9MKEJZTXWQXV5MJ3028G00BR6438SUVYQ6G518WBVN5UQSUF2DG16H54XA42G3FJGU2J2RVC58LR7LE456XODPR0Y74J4TN66DY6RUEOEINZW4NHZVZGCFDG6S5Z1H2L0NX3KKZ4CUI4S9YMNOIBRFBTYN039WL6S0FTVFZTLU4LJSV71VSHZEEQTRH1F8OLT1NPQ0GJ8IARUHCJDOTIFHLX7CX25EPZRSFF' where id=82; -update noar tt set v0='A93HJINGRDUQSPDDEO9JTQ3I5LZ7G29YXND123YYRRT0A1RLN870GBD1HSEI4JGOYSPRBU6QPX2H7Z1MRZ8Z2W1MNRZHPLKR0USOSDWLJD9B982AQGAQQBFEHM96H099B7WT8OEDAJTO181FW9N9WCMUOQE3NR0FCJHOLJDGM5COIV0Q2M467D04UU7M0BDF4SY8VZQT3Y3A7RLXAXD4351YNEOSQSQDM73U4EFC4SBDYJKIFK36FKS76C93WLNC6' where id=83; -update noar ti set v0='A93HJINGRDUQSPDDEO9JTQ3I5LZ7G29YXND123YYRRT0A1RLN870GBD1HSEI4JGOYSPRBU6QPX2H7Z1MRZ8Z2W1MNRZHPLKR0USOSDWLJD9B982AQGAQQBFEHM96H099B7WT8OEDAJTO181FW9N9WCMUOQE3NR0FCJHOLJDGM5COIV0Q2M467D04UU7M0BDF4SY8VZQT3Y3A7RLXAXD4351YNEOSQSQDM73U4EFC4SBDYJKIFK36FKS76C93WLNC6' where id=83; -update noar tt set v1='ENHVA29U3RP4WUZ395S1LOVG22X26CBAI0ZE342Q8CEWNLTO0GNF2GIN54OSEXK35AJ7I3FFQQCHYQQ7G27FJCYFD24920TSIWTJ9KQE0C6POSK8CKUC8T5061ILO4OJAVGQJE2P6CDUEZU93JA2HZ50NF3IXF5P24Q8V7ZYHS801487UNF6AOD2SI3YVVEW8M39BZEJ5ZLA66SCI18YQ48V02J91FDJO9H3LF8FYTF35SKYKW7DQZOU3OYRP5RLW' where id=83; -update noar ti set v1='ENHVA29U3RP4WUZ395S1LOVG22X26CBAI0ZE342Q8CEWNLTO0GNF2GIN54OSEXK35AJ7I3FFQQCHYQQ7G27FJCYFD24920TSIWTJ9KQE0C6POSK8CKUC8T5061ILO4OJAVGQJE2P6CDUEZU93JA2HZ50NF3IXF5P24Q8V7ZYHS801487UNF6AOD2SI3YVVEW8M39BZEJ5ZLA66SCI18YQ48V02J91FDJO9H3LF8FYTF35SKYKW7DQZOU3OYRP5RLW' where id=83; -update noar tt set v2='OCC0KHJO0C6BAIRDZOVJ6XWKDNEK3PH1OQTIUOF8WQRD31UAQOA51N9NXZYRCFUOGSQRADNMUMI4KAFI8IUIGG5XBGKF35QR2VQCSQS8OFLXIBZY2HC6E3CG55L5X8KBRFX1F5M9ISWLDJQOPP8QANTN7VSUYRA8R3JDXQ2KK0WMTSTAIY3ZBQUWT7O4IHP3WHGBQRL7M2FCP1TDK51MAO180U9RUUP97IKPDZZO0GTAL7MIRKIW03DGSXTG0AJTM' where id=83; -update noar ti set v2='OCC0KHJO0C6BAIRDZOVJ6XWKDNEK3PH1OQTIUOF8WQRD31UAQOA51N9NXZYRCFUOGSQRADNMUMI4KAFI8IUIGG5XBGKF35QR2VQCSQS8OFLXIBZY2HC6E3CG55L5X8KBRFX1F5M9ISWLDJQOPP8QANTN7VSUYRA8R3JDXQ2KK0WMTSTAIY3ZBQUWT7O4IHP3WHGBQRL7M2FCP1TDK51MAO180U9RUUP97IKPDZZO0GTAL7MIRKIW03DGSXTG0AJTM' where id=83; -update noar tt set v3='AQA45B652PEG93X2GUTBCA2CL7LG6DWQ3MW7YBI4T2M8JEEULAPKKS87K84MYCYLZTTGF7O9ZIQDDAM2FDKYCFGX4NOLQO4ZHO1Q1HBD64BWHOK7EC4H40585WRSYO6B8MXCW837TP0R9OX9JMZ6S23S4LUFB9KCN75CVAS34DWOUNHR0GAVXBGTVO0MHCL639JZNDJ8QOK9ASA7TEEIJNSXXZM7MVB96ED59E3JJZ4F62X6KISZOTRQPZPHCWTDZ' where id=83; -update noar ti set v3='AQA45B652PEG93X2GUTBCA2CL7LG6DWQ3MW7YBI4T2M8JEEULAPKKS87K84MYCYLZTTGF7O9ZIQDDAM2FDKYCFGX4NOLQO4ZHO1Q1HBD64BWHOK7EC4H40585WRSYO6B8MXCW837TP0R9OX9JMZ6S23S4LUFB9KCN75CVAS34DWOUNHR0GAVXBGTVO0MHCL639JZNDJ8QOK9ASA7TEEIJNSXXZM7MVB96ED59E3JJZ4F62X6KISZOTRQPZPHCWTDZ' where id=83; -update noar tt set v0='VHPHX3FNR8BD432JAU9JYZBEGTBEM8NYUVI1S3E5MBKLKN29314QG5XJ04QTEL61TSVO9QQHM3VIH3YHLAJ6QPZEXVSM34OLT5V9S91J10NZTG40XGUNKSTTC83TQ37DQZYKRNKPQWY5L4ZGK5D1V0C8BJGM9KEK43L2LL5UMQR7HWS78Z040DARY0C8X7PLG8J805DIB16LZMPVOKPGC7KWZAKFOF0AJK1M6LWJWO6IFT9PNRL73FSE0MFLYXGAJ' where id=84; -update noar ti set v0='VHPHX3FNR8BD432JAU9JYZBEGTBEM8NYUVI1S3E5MBKLKN29314QG5XJ04QTEL61TSVO9QQHM3VIH3YHLAJ6QPZEXVSM34OLT5V9S91J10NZTG40XGUNKSTTC83TQ37DQZYKRNKPQWY5L4ZGK5D1V0C8BJGM9KEK43L2LL5UMQR7HWS78Z040DARY0C8X7PLG8J805DIB16LZMPVOKPGC7KWZAKFOF0AJK1M6LWJWO6IFT9PNRL73FSE0MFLYXGAJ' where id=84; -update noar tt set v1='DA8A6LDDZ1LVOOLD12D58LQ0L4R1C54ONGOEJH62BMVJ6S9LGCF2X3CNFP7X3N31VQSQQKZN2ZFO9EBFS84URHR01YPS2PLT7DPF5U44O06V41B6ZJUPPZTQHO9XM9Z9001RVFHJL7BETRRFDEJM7829O9VELWKVXFQBT1MPCC857DJGVPWVO5H5RPNBA10F8KKORGXJUA6UU22MOFEIHD1TAK5XGO0K1S94UWBYZYUESCBH5DA6U77WEOU4G6NNX' where id=84; -update noar ti set v1='DA8A6LDDZ1LVOOLD12D58LQ0L4R1C54ONGOEJH62BMVJ6S9LGCF2X3CNFP7X3N31VQSQQKZN2ZFO9EBFS84URHR01YPS2PLT7DPF5U44O06V41B6ZJUPPZTQHO9XM9Z9001RVFHJL7BETRRFDEJM7829O9VELWKVXFQBT1MPCC857DJGVPWVO5H5RPNBA10F8KKORGXJUA6UU22MOFEIHD1TAK5XGO0K1S94UWBYZYUESCBH5DA6U77WEOU4G6NNX' where id=84; -update noar tt set v2='PJ5LUALL2G88Y3ZL176YQU77760USNMM7DQFCAURHMULAAJYXAZ3L9FSS2U59WXBWH0U9ZHUE7NK9EJK3FPIA3FTDS3SIY4152K1GXXBRZE00OKT04Y6W5ENMX6K0XRW0X6RGECKIYI22GX1XC4R14RN4SO9N7M1MFB12LH3J3UN4FIFYK69XKRPE4BWDUWCV7X5W878NHED2ENWETP79LKP2JK75E72B236NS6CWW3N24TIBGBOH3AO3LAPEU10D' where id=84; -update noar ti set v2='PJ5LUALL2G88Y3ZL176YQU77760USNMM7DQFCAURHMULAAJYXAZ3L9FSS2U59WXBWH0U9ZHUE7NK9EJK3FPIA3FTDS3SIY4152K1GXXBRZE00OKT04Y6W5ENMX6K0XRW0X6RGECKIYI22GX1XC4R14RN4SO9N7M1MFB12LH3J3UN4FIFYK69XKRPE4BWDUWCV7X5W878NHED2ENWETP79LKP2JK75E72B236NS6CWW3N24TIBGBOH3AO3LAPEU10D' where id=84; -update noar tt set v3='0FHAHXLKZRNNHJTOKUA302UYRBXTI3UY45XHDTF7719QRQWXHN3EF360U8YRPVPZ4RZ8VLSPQIKNHGPFKFX8593TT8OMWQRQH1TGH4DSNSHARZP419E7XG7NXP4ZS4L8Q2MTWGXK4K9GCMQV8UOIKDIMZ8MWSWJXKPQ7WFH9RTAPTA5OXR4F5ACOV84T2HGJPI43W3UNMJJ847H0IB1C3LWQXI61Y0YZGAW5KB7MW68KKQIHI1MIKYRU24JH9Z4LN' where id=84; -update noar ti set v3='0FHAHXLKZRNNHJTOKUA302UYRBXTI3UY45XHDTF7719QRQWXHN3EF360U8YRPVPZ4RZ8VLSPQIKNHGPFKFX8593TT8OMWQRQH1TGH4DSNSHARZP419E7XG7NXP4ZS4L8Q2MTWGXK4K9GCMQV8UOIKDIMZ8MWSWJXKPQ7WFH9RTAPTA5OXR4F5ACOV84T2HGJPI43W3UNMJJ847H0IB1C3LWQXI61Y0YZGAW5KB7MW68KKQIHI1MIKYRU24JH9Z4LN' where id=84; -update noar tt set v0='YMN4JN4O60G3GKYKGC45LL1YUC7VEJL6GMDCZJ2B0V9C8XYRQ7MEMZCP0VYS3QG8MZQIADP8OG9O1LQJJNTWJQ7E088KCUBFK0G8AL383HER588LS9OMVRYGRQZCCJTQI9V9H8EXT8B56TFLJ1B3AOA3ZW98AYNOYGZ30TJK7QITF7VTHYMLERXYTUDO036X4QN7SWP3QJVTWZGV6KICM1RK8SBH93RGR56I0FJ3IGEEDUO9QEJIWJTMOO88JEJF7' where id=85; -update noar ti set v0='YMN4JN4O60G3GKYKGC45LL1YUC7VEJL6GMDCZJ2B0V9C8XYRQ7MEMZCP0VYS3QG8MZQIADP8OG9O1LQJJNTWJQ7E088KCUBFK0G8AL383HER588LS9OMVRYGRQZCCJTQI9V9H8EXT8B56TFLJ1B3AOA3ZW98AYNOYGZ30TJK7QITF7VTHYMLERXYTUDO036X4QN7SWP3QJVTWZGV6KICM1RK8SBH93RGR56I0FJ3IGEEDUO9QEJIWJTMOO88JEJF7' where id=85; -update noar tt set v1='93YXNF3DWKVF61JYNWHWBJ2L68D8SWGM8EX7RIC05S64NR9VRSLKEQOKOMYZARSPCG6LS7BFPLUUT7USADWFI7HW71FR4KANRS2CB6BBWHI81P4V84FTL2UKTGXZBIJI4PUL38N5ABWCYPMC49UUTE0PPACP0B4BRAUV9OLCTC0WULUU0UKDBRAZUW784BO6ESB34W7JLVCKJDBP7YE32JXZ5GXRBUQJYJM779JRRI8WXFE15OF78LCRNVWUTTEAQ' where id=85; -update noar ti set v1='93YXNF3DWKVF61JYNWHWBJ2L68D8SWGM8EX7RIC05S64NR9VRSLKEQOKOMYZARSPCG6LS7BFPLUUT7USADWFI7HW71FR4KANRS2CB6BBWHI81P4V84FTL2UKTGXZBIJI4PUL38N5ABWCYPMC49UUTE0PPACP0B4BRAUV9OLCTC0WULUU0UKDBRAZUW784BO6ESB34W7JLVCKJDBP7YE32JXZ5GXRBUQJYJM779JRRI8WXFE15OF78LCRNVWUTTEAQ' where id=85; -update noar tt set v2='3QTKKLRXFDNGY27FTGIOTM2ODR7UI88BC8E6LOUXZUFWC0BFZRHBSMB1TTFEF7UBO8X3YI7DMDXYVSVWYAUGAYHVC7CEORJP5PSN6YN3JEJHDEBECLIKLMPYC8BDU3HNYZ0S9Q2CX915E7MQXNVIT8BYL1CA8D26S0QZV4YKT02DN80EX9DUTA7WGJK04ZU23MHX8DBCVESLKXDFG63ZCF8EDD54M6CLAXZ8J3DFFYNYS2XIWLH9MLYQLSYSTUO6C' where id=85; -update noar ti set v2='3QTKKLRXFDNGY27FTGIOTM2ODR7UI88BC8E6LOUXZUFWC0BFZRHBSMB1TTFEF7UBO8X3YI7DMDXYVSVWYAUGAYHVC7CEORJP5PSN6YN3JEJHDEBECLIKLMPYC8BDU3HNYZ0S9Q2CX915E7MQXNVIT8BYL1CA8D26S0QZV4YKT02DN80EX9DUTA7WGJK04ZU23MHX8DBCVESLKXDFG63ZCF8EDD54M6CLAXZ8J3DFFYNYS2XIWLH9MLYQLSYSTUO6C' where id=85; -update noar tt set v3='B8049LHH5FY9AO6WH71L37MBXUHYT4624TX7ZUP5XNL6GF938UC6FB6BTLY8TWHRPW1ZTCIRXS58BWSDN0UO0WX2MZ3U65APTH9IGF650HNRTXHXZFOB1IPQPX239CJXIBD4ECS8MWKN62OO3LEBIE2A454W74X14XE7X7X0068E8L7Q3623NEMWZ1FZKW63M90X787THKZ4FCVVNL76HKXTNXFSDX1V5JTYF41F7XANF4QNZ4XJAFZTIAT3J34SI' where id=85; -update noar ti set v3='B8049LHH5FY9AO6WH71L37MBXUHYT4624TX7ZUP5XNL6GF938UC6FB6BTLY8TWHRPW1ZTCIRXS58BWSDN0UO0WX2MZ3U65APTH9IGF650HNRTXHXZFOB1IPQPX239CJXIBD4ECS8MWKN62OO3LEBIE2A454W74X14XE7X7X0068E8L7Q3623NEMWZ1FZKW63M90X787THKZ4FCVVNL76HKXTNXFSDX1V5JTYF41F7XANF4QNZ4XJAFZTIAT3J34SI' where id=85; -update noar tt set v0='07PA99K9Y08R1MHMN8ZPHNZYDDFYKO0PQLHFPQQH4P727IA16R5VO6CJDBQFXI0EC2VMNRITR3WV9HPGJDRIOHUJ00G4S8F5OF8WQNTGC2HPTD9EFI4CK0OVKROTPEEMYP97LEUFWW0GGX4AKXAH7S0JWHJT2N9YU7VPQ9TX7NU2I6O05V7RNS0MYXRSDC3CXXPHXKURL0P42O8GB9XKEXPWZWYEJB6SPGDQU0B9RT8X6VVAQACJYMNY2EU5KKRFH' where id=86; -update noar ti set v0='07PA99K9Y08R1MHMN8ZPHNZYDDFYKO0PQLHFPQQH4P727IA16R5VO6CJDBQFXI0EC2VMNRITR3WV9HPGJDRIOHUJ00G4S8F5OF8WQNTGC2HPTD9EFI4CK0OVKROTPEEMYP97LEUFWW0GGX4AKXAH7S0JWHJT2N9YU7VPQ9TX7NU2I6O05V7RNS0MYXRSDC3CXXPHXKURL0P42O8GB9XKEXPWZWYEJB6SPGDQU0B9RT8X6VVAQACJYMNY2EU5KKRFH' where id=86; -update noar tt set v1='MGJOO4EAVA6XK9GVC0I5FGJQ8R88FHA4PXPS0F57S06VJGWVW30VVS426Q2XSZELYBJKOT008PA4R64HJE19QQD8OQ4WHLMY9UH47WT14M10CTQWHLFWP01JXIXBHEMAKCBF1QB6I6D4OK62FMWXIP20BQWL2T13FJ8Y3Q9230T8SK2V4GO2HC9706YSRN75X3IBO6JRTSJ0YO4NBEIOFVKQZ6YD7OUOPU6OV4OK8L82JHUU4W6A8UFHJPV7GTYPV' where id=86; -update noar ti set v1='MGJOO4EAVA6XK9GVC0I5FGJQ8R88FHA4PXPS0F57S06VJGWVW30VVS426Q2XSZELYBJKOT008PA4R64HJE19QQD8OQ4WHLMY9UH47WT14M10CTQWHLFWP01JXIXBHEMAKCBF1QB6I6D4OK62FMWXIP20BQWL2T13FJ8Y3Q9230T8SK2V4GO2HC9706YSRN75X3IBO6JRTSJ0YO4NBEIOFVKQZ6YD7OUOPU6OV4OK8L82JHUU4W6A8UFHJPV7GTYPV' where id=86; -update noar tt set v2='0LZB9SU9TDHNNTS3IJ7RA3ABA91ZGHYNMC9JV8GU75YIA0TVVCK7UIQIHR738T5G0RXHYTNTK3NSJ0MW95JWY7ANVL7X16ON0FJ4RIALH7U06RSI9GHWGU2A00G5SMKL0SM0ANNB39SFN2ZPO03IALQ6MNJW6IN0VG9EGGKBLI9DCJ7F9ZC7V7ZPI5696F4T3VGI54CSDANPRB39UXCRW1GJDQIXVTK4WAI8XCBU0UJA8RFSYW6ON6SI9OJQIX4OY' where id=86; -update noar ti set v2='0LZB9SU9TDHNNTS3IJ7RA3ABA91ZGHYNMC9JV8GU75YIA0TVVCK7UIQIHR738T5G0RXHYTNTK3NSJ0MW95JWY7ANVL7X16ON0FJ4RIALH7U06RSI9GHWGU2A00G5SMKL0SM0ANNB39SFN2ZPO03IALQ6MNJW6IN0VG9EGGKBLI9DCJ7F9ZC7V7ZPI5696F4T3VGI54CSDANPRB39UXCRW1GJDQIXVTK4WAI8XCBU0UJA8RFSYW6ON6SI9OJQIX4OY' where id=86; -update noar tt set v3='PMV0PY6F1MMZVICFX1NIBKQ7TGHWN5TG7Q6084EAN1S0OPFQGINF5EOOFEJPDDXWTTCN9OZC7HSHBBOXW18GG0XAGBBIJAK7HHRAZOMTYVHX7CJYHBW0NPQZ4N0ICUD6TLAHXP8RRYCLVH5UQ0L1CSXTBWQWZNW8GCKURBA0FAN5XJIK57YCF69OALKB1BRL7N5NLPIJ7OHC0E2V65TJURH9Y8CXDRMOOGUJSGHYLS7TGZ34DEIQY0P1H4NT3MF3Y' where id=86; -update noar ti set v3='PMV0PY6F1MMZVICFX1NIBKQ7TGHWN5TG7Q6084EAN1S0OPFQGINF5EOOFEJPDDXWTTCN9OZC7HSHBBOXW18GG0XAGBBIJAK7HHRAZOMTYVHX7CJYHBW0NPQZ4N0ICUD6TLAHXP8RRYCLVH5UQ0L1CSXTBWQWZNW8GCKURBA0FAN5XJIK57YCF69OALKB1BRL7N5NLPIJ7OHC0E2V65TJURH9Y8CXDRMOOGUJSGHYLS7TGZ34DEIQY0P1H4NT3MF3Y' where id=86; -update noar tt set v0='88TCH8BT2A3WQ60BCG7RR6B923JDQ8L26NS8X7J2UPM0AQVH5A0SC1L6V5312Y3KP2RDWHXW1DOW0NSXJEOD1I7YEU8YCCJ54KWGMSMNP3DA6RM4WHGYPVK6OE9IZ3LN3K7L7KZBLSQQFQW2O4XEFL0GYWTJ1ITLTZ1HKKGRNWUNBIV5R1W2CH0B3D616L8B2CWXA49DNCEDGNS2E17PI0FGA49XVZW6JT2PR7T9J8LAMT5NQIUFCMIJ8ZYGZYGFT' where id=87; -update noar ti set v0='88TCH8BT2A3WQ60BCG7RR6B923JDQ8L26NS8X7J2UPM0AQVH5A0SC1L6V5312Y3KP2RDWHXW1DOW0NSXJEOD1I7YEU8YCCJ54KWGMSMNP3DA6RM4WHGYPVK6OE9IZ3LN3K7L7KZBLSQQFQW2O4XEFL0GYWTJ1ITLTZ1HKKGRNWUNBIV5R1W2CH0B3D616L8B2CWXA49DNCEDGNS2E17PI0FGA49XVZW6JT2PR7T9J8LAMT5NQIUFCMIJ8ZYGZYGFT' where id=87; -update noar tt set v1='8MH9FXKUB9191VRDMZ2DVPLA2LO0EB8PBRZMMAVCTQPJ4EGL1F01P66W7CNR39ZYJDP73LZTW2I76VP8JBH7VCP6NMI1QBN20JE080DTPCO7DQMZ7SPXBOKUSEU2S35GRR3FYS16U20R2UR87OKVFWSQO8DT3PL3FG49BHS56PY66TY6XXNL4EXE68XX2CB2IYKNYEP5TXCDUYGAY44OVHC288U97G0Q4WXAGMTI5H79FDLIFIMBU2K1L1PY0OR2G' where id=87; -update noar ti set v1='8MH9FXKUB9191VRDMZ2DVPLA2LO0EB8PBRZMMAVCTQPJ4EGL1F01P66W7CNR39ZYJDP73LZTW2I76VP8JBH7VCP6NMI1QBN20JE080DTPCO7DQMZ7SPXBOKUSEU2S35GRR3FYS16U20R2UR87OKVFWSQO8DT3PL3FG49BHS56PY66TY6XXNL4EXE68XX2CB2IYKNYEP5TXCDUYGAY44OVHC288U97G0Q4WXAGMTI5H79FDLIFIMBU2K1L1PY0OR2G' where id=87; -update noar tt set v2='QNNPUX98IZ1946B7Y0FSA753076LCPYH1LF69OFIAK95LHFSHPDVFV8X00WLI6G8OQQMN1BNP2GUCLL0P1EE90A73RHO1FN7X27X0Z7B64BHNIIK63BQ1EZM85QTXT9CKHW63DB8ZV093SKGMM9QE318O93H1QUYVD8NYS2CGGHXP832A5YX1IO5HY8917LF5TSC7U2WSG1UPPYHJTHQ01ZFAW1XKZBEAIEON8D8GLJSC5FWI7P93FO0BTV3F2AL0' where id=87; -update noar ti set v2='QNNPUX98IZ1946B7Y0FSA753076LCPYH1LF69OFIAK95LHFSHPDVFV8X00WLI6G8OQQMN1BNP2GUCLL0P1EE90A73RHO1FN7X27X0Z7B64BHNIIK63BQ1EZM85QTXT9CKHW63DB8ZV093SKGMM9QE318O93H1QUYVD8NYS2CGGHXP832A5YX1IO5HY8917LF5TSC7U2WSG1UPPYHJTHQ01ZFAW1XKZBEAIEON8D8GLJSC5FWI7P93FO0BTV3F2AL0' where id=87; -update noar tt set v3='K3ZM9BYF6TPV9G5OLX9MC1VE72RJH3EUK00RSCMTXRPOFPJFVAMPPL449BSYZISR9Z33PQGEZ8TOHW5BNPBKBBUWE94EHCS2DW8CBDIREK6082LJ6GZUTCQL6BEU90Q5MOXE2A044XT5IYZDM1KP9MEHPY37DRR1B769VWT5H8LXV0I3TBRYM116DQF2C6MAM15EJW14JRQT9CVAESURHIJD2X41OL70HMA37GJF34YEBMEBPP9T2RFWW4JUFVA8N' where id=87; -update noar ti set v3='K3ZM9BYF6TPV9G5OLX9MC1VE72RJH3EUK00RSCMTXRPOFPJFVAMPPL449BSYZISR9Z33PQGEZ8TOHW5BNPBKBBUWE94EHCS2DW8CBDIREK6082LJ6GZUTCQL6BEU90Q5MOXE2A044XT5IYZDM1KP9MEHPY37DRR1B769VWT5H8LXV0I3TBRYM116DQF2C6MAM15EJW14JRQT9CVAESURHIJD2X41OL70HMA37GJF34YEBMEBPP9T2RFWW4JUFVA8N' where id=87; -update noar tt set v0='131I42L7FIJGNQ7KYY88QWDKYY6SHJX405VSN6JHPM6WS96NAF806N784S476OF5GPLELZNMZ5HUK5R5NTB5ANVSSDMG2NUY98EWW6YQBZ1BMDBBXHD87MCH2UCUJLEKY2TWKIPIJRK4Z85JVWCT7CF5NG65N7O63DV1HC1H55C00F2NUTBL4BUILRAOZ20KFSTX8VUDUSXC03K6X8CMGRTWS7Y891TX7ATCIJPTN3O4YETH2M5NF0V5Q7C5VF01F' where id=88; -update noar ti set v0='131I42L7FIJGNQ7KYY88QWDKYY6SHJX405VSN6JHPM6WS96NAF806N784S476OF5GPLELZNMZ5HUK5R5NTB5ANVSSDMG2NUY98EWW6YQBZ1BMDBBXHD87MCH2UCUJLEKY2TWKIPIJRK4Z85JVWCT7CF5NG65N7O63DV1HC1H55C00F2NUTBL4BUILRAOZ20KFSTX8VUDUSXC03K6X8CMGRTWS7Y891TX7ATCIJPTN3O4YETH2M5NF0V5Q7C5VF01F' where id=88; -update noar tt set v1='EWUPKULP6UG5MF1MRX86EMIP7TGZ680BG1R9VJQZBNB94TDK02VWSIT57KVCWSM1YOQ61YEKEG4PAY3PRA9QBXPEC6GIPZ0FASZLADBU9YSKN3FUH48CH0578JQAQAA5ECX6UB0OZ91TR9WWSIKQLEGGFKNH2MFSH6MRL0QTMAZYMLIY2ZAT6LK98JZVGJSDAO90SW4Z16RLIGZI3AD5VGRNMWG7BQG1PMI8C2UNUVJC4C1L60Z2SP1NL8UW6PA94' where id=88; -update noar ti set v1='EWUPKULP6UG5MF1MRX86EMIP7TGZ680BG1R9VJQZBNB94TDK02VWSIT57KVCWSM1YOQ61YEKEG4PAY3PRA9QBXPEC6GIPZ0FASZLADBU9YSKN3FUH48CH0578JQAQAA5ECX6UB0OZ91TR9WWSIKQLEGGFKNH2MFSH6MRL0QTMAZYMLIY2ZAT6LK98JZVGJSDAO90SW4Z16RLIGZI3AD5VGRNMWG7BQG1PMI8C2UNUVJC4C1L60Z2SP1NL8UW6PA94' where id=88; -update noar tt set v2='5YH8LTLGSJ0D6LUU5JQEAOJ34R5Y3XDZOR8ZYWE1DKW0HPR6RLSVCNAV377YCHPR0BBJKVEOAG07XAORX1119SWM72S0CEPCYMV3N9TLWTPJSPOGX0BJJ3UZKQZJJUTMLL6K5N1UIKWXBZNCOWMMJUVRT4CLFWMO7253IL3MO8GCNG3PJ4XN5XSGM5QQ9VM3P3RGDW03OSBZE8NRKH7PWZX4M5PPTB29D44PL6DRO7TRHK2XZ388NUJTGW5WNF9UN' where id=88; -update noar ti set v2='5YH8LTLGSJ0D6LUU5JQEAOJ34R5Y3XDZOR8ZYWE1DKW0HPR6RLSVCNAV377YCHPR0BBJKVEOAG07XAORX1119SWM72S0CEPCYMV3N9TLWTPJSPOGX0BJJ3UZKQZJJUTMLL6K5N1UIKWXBZNCOWMMJUVRT4CLFWMO7253IL3MO8GCNG3PJ4XN5XSGM5QQ9VM3P3RGDW03OSBZE8NRKH7PWZX4M5PPTB29D44PL6DRO7TRHK2XZ388NUJTGW5WNF9UN' where id=88; -update noar tt set v3='6962IUYMMANZF4VQCQR9W0OA9PXEL6VA2ZOQULH3J8EASPTD45V45O2JPHVXTX7M3OMHR4AXPTRLU9CRZR091K7L59ZAVV4KCXAQ0I0OY7Z5Y32IABDWIZY5T034EKWQ68BHS1020CRWLW8BXBJV6JI2204IQ4KY3CIP619PUTN42QBGM9JO0ANCGBAOLH9V4DQYCQM3FY4YQ0IJM7PCZEFAJGOAR1H7P5L0YL9L12R6EYLKRN2U6M679PVVKN4J2' where id=88; -update noar ti set v3='6962IUYMMANZF4VQCQR9W0OA9PXEL6VA2ZOQULH3J8EASPTD45V45O2JPHVXTX7M3OMHR4AXPTRLU9CRZR091K7L59ZAVV4KCXAQ0I0OY7Z5Y32IABDWIZY5T034EKWQ68BHS1020CRWLW8BXBJV6JI2204IQ4KY3CIP619PUTN42QBGM9JO0ANCGBAOLH9V4DQYCQM3FY4YQ0IJM7PCZEFAJGOAR1H7P5L0YL9L12R6EYLKRN2U6M679PVVKN4J2' where id=88; -update noar tt set v0='BRYU5QKKR83PAV2SQG7T3S0D3YWEDNQMR59GTKOJH6KRFAGYYRL0C9OUR3OTXLTWM06UCWG89KIQN7G91ZKGUIQMY6HX2RLJ66U2TI4WUJG929BTQF57ZS6HSRDTPE5KGXRY937O21GI6E8DY44SFREGU9NQH514SNU8U4KV10RCYHTUKW29CZAH9V9RU6ME6QAO06Z4IQGRSFRRLOP8ZLJWK1IWUXUK72M8A71A3LGETXOGYOAYH5R4E1D1XCT39' where id=89; -update noar ti set v0='BRYU5QKKR83PAV2SQG7T3S0D3YWEDNQMR59GTKOJH6KRFAGYYRL0C9OUR3OTXLTWM06UCWG89KIQN7G91ZKGUIQMY6HX2RLJ66U2TI4WUJG929BTQF57ZS6HSRDTPE5KGXRY937O21GI6E8DY44SFREGU9NQH514SNU8U4KV10RCYHTUKW29CZAH9V9RU6ME6QAO06Z4IQGRSFRRLOP8ZLJWK1IWUXUK72M8A71A3LGETXOGYOAYH5R4E1D1XCT39' where id=89; -update noar tt set v1='SH1GPNR8TGM4YSB1DQDHLEANT329WTK199FQEXJW3TMAEM09UWKKYHME3LBDY0M8YI1ASZDK87QN7M7Z97BBBBII6BI7YX1XAMQP5G3RL311OW0C3BCK3DA28KW69EVUPD59NOPQ0SIDNJCQ0PEX523XJCG4WSYAMQFMJA1PL5DLIC3C0RNQM819C906J6593Z34XJH0AQSY0YNAV14UGD8MAEPD84HON0CUZU7M3T6CG7023Z4SUQUSARCNW095Z' where id=89; -update noar ti set v1='SH1GPNR8TGM4YSB1DQDHLEANT329WTK199FQEXJW3TMAEM09UWKKYHME3LBDY0M8YI1ASZDK87QN7M7Z97BBBBII6BI7YX1XAMQP5G3RL311OW0C3BCK3DA28KW69EVUPD59NOPQ0SIDNJCQ0PEX523XJCG4WSYAMQFMJA1PL5DLIC3C0RNQM819C906J6593Z34XJH0AQSY0YNAV14UGD8MAEPD84HON0CUZU7M3T6CG7023Z4SUQUSARCNW095Z' where id=89; -update noar tt set v2='CZPY45G01J75DBNI6SSSTQ9GJUEHR22QVYTCTRDH0ZXHWKET6I4KRVB3ND5LC9BQJONLVUYD4J6V83K3K37LVUF5Y9DALIGE5N4OM50TEZ0VQGVXN48W7BMAV089ZT1A9XPRRW6Q6J676GMDKRNX7YTM4Y1AK62SVRO534DF5EII753729NSPPLRW9RO2F1MJN7FFTFL2F8XKE42K3L0QQOFKY1JVIVCFV160ENRLUEU4XQB097S344R5XT1TOX3Z' where id=89; -update noar ti set v2='CZPY45G01J75DBNI6SSSTQ9GJUEHR22QVYTCTRDH0ZXHWKET6I4KRVB3ND5LC9BQJONLVUYD4J6V83K3K37LVUF5Y9DALIGE5N4OM50TEZ0VQGVXN48W7BMAV089ZT1A9XPRRW6Q6J676GMDKRNX7YTM4Y1AK62SVRO534DF5EII753729NSPPLRW9RO2F1MJN7FFTFL2F8XKE42K3L0QQOFKY1JVIVCFV160ENRLUEU4XQB097S344R5XT1TOX3Z' where id=89; -update noar tt set v3='Q1SCK8LHFCEOUSR3VFDPFA3NOG3OSR9NHL8QW50OMU73FD3M4YXQ3YAQQIK03M23FNFQSV3HXRDZP1N1ZHECG2D41ORP3QITSO3TKW23N0CI9I7571T66KAO5YTMK6TJW84CPB7J9R4U4QUZBEN2AZIPE7WBIQBB3FNLN1YC79OLTUZH0ZO3K84EKXR3VFBINZY8N6ICOCSSN4X10QDBNMIT8LPT6N8KEHA4FGMB47E9KSI26G4WC0K8EYLHG6R5Q' where id=89; -update noar ti set v3='Q1SCK8LHFCEOUSR3VFDPFA3NOG3OSR9NHL8QW50OMU73FD3M4YXQ3YAQQIK03M23FNFQSV3HXRDZP1N1ZHECG2D41ORP3QITSO3TKW23N0CI9I7571T66KAO5YTMK6TJW84CPB7J9R4U4QUZBEN2AZIPE7WBIQBB3FNLN1YC79OLTUZH0ZO3K84EKXR3VFBINZY8N6ICOCSSN4X10QDBNMIT8LPT6N8KEHA4FGMB47E9KSI26G4WC0K8EYLHG6R5Q' where id=89; -update noar tt set v0='1L1W7ANM6CLDIZ148DXZ5IIHL7UX92HNYZ3F5OXCI5QJ6SBPPO7GCC8PIJ9O5HPV0939V0RHWU591TET75M313Z6951U1ZI26BBEM05X66O67TTDLBXJGLEDLRO07KJRDL2445QQGFOU57ZR3JXCG6TUFW8FGVGO9X702FRLCNGCL031UJ5PV9JTKKET6FWSU7Z28ARAQD0IULOUHHPZOXCVCR2X158CGDULERO8DM8BQA1VZN9IZJXMBKUAQ3ZC7' where id=90; -update noar ti set v0='1L1W7ANM6CLDIZ148DXZ5IIHL7UX92HNYZ3F5OXCI5QJ6SBPPO7GCC8PIJ9O5HPV0939V0RHWU591TET75M313Z6951U1ZI26BBEM05X66O67TTDLBXJGLEDLRO07KJRDL2445QQGFOU57ZR3JXCG6TUFW8FGVGO9X702FRLCNGCL031UJ5PV9JTKKET6FWSU7Z28ARAQD0IULOUHHPZOXCVCR2X158CGDULERO8DM8BQA1VZN9IZJXMBKUAQ3ZC7' where id=90; -update noar tt set v1='R4GXHHW8HUA2NE93YTIBLWISI09ZXUWT4R1BQZS6LYY7TGRM13RAB2526IO5P9CUJB0PHTK6DHYPI4QA187AAQDPYJMI5XUH7ZU86S4ZYYVM8CB25YEBOJ3DEVZ2HTCD4R9LBBPX6SMXERV3EI4YTFFFD3KUVQS6G6KJNYWYNKCISSF438F9M1CF287MXYP8NIUJOU9AJ86X82GU2TSLBLBNJWJGGQKLOG3PNPC7UEQ172Z2G15I2DQJUC10BFFOR' where id=90; -update noar ti set v1='R4GXHHW8HUA2NE93YTIBLWISI09ZXUWT4R1BQZS6LYY7TGRM13RAB2526IO5P9CUJB0PHTK6DHYPI4QA187AAQDPYJMI5XUH7ZU86S4ZYYVM8CB25YEBOJ3DEVZ2HTCD4R9LBBPX6SMXERV3EI4YTFFFD3KUVQS6G6KJNYWYNKCISSF438F9M1CF287MXYP8NIUJOU9AJ86X82GU2TSLBLBNJWJGGQKLOG3PNPC7UEQ172Z2G15I2DQJUC10BFFOR' where id=90; -update noar tt set v2='63VGP2SCNVZAYTH1KDUK5LLLTE20FWEL4Z1XYJIT8QWQEDM68FPDKXF6MNDI2A5TOOE9UHPOVR9BDTWLSCQ5TTFU2KR7EFL4A22F2684BHUL5IA2RXN3PEHZUMIWJV0INMXM8UOVY1K5UNRHSWKIK7RQ61MK8891GAXMB2ISK4U2YYB46DYNQXX87QBGHX8376UTVZQZJYDBREBHE5TBLARCMYUW28N3QZXJ2PC8BWJ7VRKJS0Q2MYLTWTE9FY1ZK' where id=90; -update noar ti set v2='63VGP2SCNVZAYTH1KDUK5LLLTE20FWEL4Z1XYJIT8QWQEDM68FPDKXF6MNDI2A5TOOE9UHPOVR9BDTWLSCQ5TTFU2KR7EFL4A22F2684BHUL5IA2RXN3PEHZUMIWJV0INMXM8UOVY1K5UNRHSWKIK7RQ61MK8891GAXMB2ISK4U2YYB46DYNQXX87QBGHX8376UTVZQZJYDBREBHE5TBLARCMYUW28N3QZXJ2PC8BWJ7VRKJS0Q2MYLTWTE9FY1ZK' where id=90; -update noar tt set v3='4XXV8VTI8TV1DJALD6ZQTAXR0SE05D7N5KWRZZ8VZFL71XB33CZWVO9V0C8UFCBGCGF4I2VWPXSFNSFMM4WWS0NWWRW2HGLWJMBNWNCL47IC6YMT2074VSO1NJFW8QHZ1S7LEH1DH4CD8ROCP4K5C9PN99ID4A545NDKII8O3WZLKH3YXC6KGAGC1A4OFBPKKO1H6QANDJJEPI4HU6DED0NB4FHWB86YIOKR9QK830ZS3XTHLX9UQ6HUHIUSTSXO5' where id=90; -update noar ti set v3='4XXV8VTI8TV1DJALD6ZQTAXR0SE05D7N5KWRZZ8VZFL71XB33CZWVO9V0C8UFCBGCGF4I2VWPXSFNSFMM4WWS0NWWRW2HGLWJMBNWNCL47IC6YMT2074VSO1NJFW8QHZ1S7LEH1DH4CD8ROCP4K5C9PN99ID4A545NDKII8O3WZLKH3YXC6KGAGC1A4OFBPKKO1H6QANDJJEPI4HU6DED0NB4FHWB86YIOKR9QK830ZS3XTHLX9UQ6HUHIUSTSXO5' where id=90; -update noar tt set v0='FWVLA52VDA5RM3ASLMI5F264IB2WSYYEOUGXEZNJ1N9INIYY8ZSKHMWI7HF9CZ7O746WPOQ4KH04318VOQORYW0KLMGKQJ2A87BBT19BG9YDOB4DNV1GINKSZ5GPKDM0G3H7ON0G8HKIR71M3MCYJK8S6R5O40CM3R3FCU0QL9D34O1CQSS1HCXVCXUM9EYLN6N0RCBPF6DO5QXRY2OJRG7FXFFTNZ01UMPMSGLNRLJ9DX0ZGF8942YQNI6ZPVLRJ' where id=91; -update noar ti set v0='FWVLA52VDA5RM3ASLMI5F264IB2WSYYEOUGXEZNJ1N9INIYY8ZSKHMWI7HF9CZ7O746WPOQ4KH04318VOQORYW0KLMGKQJ2A87BBT19BG9YDOB4DNV1GINKSZ5GPKDM0G3H7ON0G8HKIR71M3MCYJK8S6R5O40CM3R3FCU0QL9D34O1CQSS1HCXVCXUM9EYLN6N0RCBPF6DO5QXRY2OJRG7FXFFTNZ01UMPMSGLNRLJ9DX0ZGF8942YQNI6ZPVLRJ' where id=91; -update noar tt set v1='8VVJ3ZIVBBM8OH9SL8O1CIC5HON4HFPLWHYM55KM1FBCVAW327EBT80RDUCJLV1615NOCA0TFBL6CYRPKHL6ZMJ1A2FIT50KV7KFN6CGUJUYLT8J2XGY7AUMHOT2QR6OXO052TEMSKQ3UU04YH20BQ37MG0CYHY9QZ77VYRTZ9N0T8RR4779PRS0OMBUNU7Y6W9CU0AS6PSJPADV1MQ0K0H9BF5DZFFHVFMTXHMEQR0WPL76UG3XUWALI3SV9L7NE' where id=91; -update noar ti set v1='8VVJ3ZIVBBM8OH9SL8O1CIC5HON4HFPLWHYM55KM1FBCVAW327EBT80RDUCJLV1615NOCA0TFBL6CYRPKHL6ZMJ1A2FIT50KV7KFN6CGUJUYLT8J2XGY7AUMHOT2QR6OXO052TEMSKQ3UU04YH20BQ37MG0CYHY9QZ77VYRTZ9N0T8RR4779PRS0OMBUNU7Y6W9CU0AS6PSJPADV1MQ0K0H9BF5DZFFHVFMTXHMEQR0WPL76UG3XUWALI3SV9L7NE' where id=91; -update noar tt set v2='C3Z1IFT3RZWXJGZA9DDKQQ881R0PLTHTEFDQ2VDY2209TOVOSCT1MA28WBYKQ37HOI9P6KD00KLNAK00G98OZ8ARF5ZM072HRU5ATNBBNRE1V5K6FRBUHGED5788H0D0KV26YKXR3CAYVRKN5W5YIOBE8V44UUC0GZDLVDRGYHXL2TUCWD3A9DIS8NPVL2V1A9063B1BZST0U736FS0BVNJSP9I8V8XFWCFS3QTM7QSNHMPUIL70BL5J2QK7ACONM' where id=91; -update noar ti set v2='C3Z1IFT3RZWXJGZA9DDKQQ881R0PLTHTEFDQ2VDY2209TOVOSCT1MA28WBYKQ37HOI9P6KD00KLNAK00G98OZ8ARF5ZM072HRU5ATNBBNRE1V5K6FRBUHGED5788H0D0KV26YKXR3CAYVRKN5W5YIOBE8V44UUC0GZDLVDRGYHXL2TUCWD3A9DIS8NPVL2V1A9063B1BZST0U736FS0BVNJSP9I8V8XFWCFS3QTM7QSNHMPUIL70BL5J2QK7ACONM' where id=91; -update noar tt set v3='GM8NUPGQZQXY8MJ4IFSCNJEDHXF3OY1HP3U7ER0J9AOVN5PFULM0440NGDOK5ZVBOFWP611KWHTC1CCLFCA76HRXUPN6ZYU0QV0EBI9XNT9NA6FW4NFIKZO6RN4GCFT4ZGFM0R2KB2S2FMUTH7JRZI30OOM682NQUAZY5BU3HXDBQOGQZ47YQWJZOHKNE09A69RNYI6FA4BL4ZIDHUQTPQ2IHBRQTZAIKAMBXYEV3KLCFXSO9N1K4VVYH6BSE26Z6' where id=91; -update noar ti set v3='GM8NUPGQZQXY8MJ4IFSCNJEDHXF3OY1HP3U7ER0J9AOVN5PFULM0440NGDOK5ZVBOFWP611KWHTC1CCLFCA76HRXUPN6ZYU0QV0EBI9XNT9NA6FW4NFIKZO6RN4GCFT4ZGFM0R2KB2S2FMUTH7JRZI30OOM682NQUAZY5BU3HXDBQOGQZ47YQWJZOHKNE09A69RNYI6FA4BL4ZIDHUQTPQ2IHBRQTZAIKAMBXYEV3KLCFXSO9N1K4VVYH6BSE26Z6' where id=91; -update noar tt set v0='RVV1H440G7IF2JHF0GI37EP291FYD9RXRP5ST5Z1GG41J1Y6R1ELJZSUHMKQ52H92MFE72OI40AJKSPHPKTGW5KKC83OSWYFU2YMY2KNNYXP2A2F5LBBB9NYVALIY3J12YLHQR9C3N8BUF7A9OMOA9SY8FAVNUVTYOYWCJGKLXCUYNUWD47WLQAILOQT6LROTT9Z6RY6FBXGYIEA6VYJD69SY7752NEBEZIAG4YB99TIIAE1ZKNBONZ134F1X39JD' where id=92; -update noar ti set v0='RVV1H440G7IF2JHF0GI37EP291FYD9RXRP5ST5Z1GG41J1Y6R1ELJZSUHMKQ52H92MFE72OI40AJKSPHPKTGW5KKC83OSWYFU2YMY2KNNYXP2A2F5LBBB9NYVALIY3J12YLHQR9C3N8BUF7A9OMOA9SY8FAVNUVTYOYWCJGKLXCUYNUWD47WLQAILOQT6LROTT9Z6RY6FBXGYIEA6VYJD69SY7752NEBEZIAG4YB99TIIAE1ZKNBONZ134F1X39JD' where id=92; -update noar tt set v1='E5PPN4GMT8RKWB2ZCX0TRLNJLJRVPKB9WKG46DYD3ITX1EI1ABX0KPQ01LWYSSCFRCNRXK3NPGHYZ47QDABF07LK1HNC2NM3OSQW13TB9JPKQVS2I9NC7VH47P3BAYMQYLKQP16LSZJSC92U098ULCRDJO2DJXTDBQ0A5YRV45L525UPZ1RAEXQE4UIS6H8W1Y3660IY5MOKBJWIFUFKU94IB4IFIDJ44FE0H99ZNXA4LD3075A4ZJYBZN5JQCT34' where id=92; -update noar ti set v1='E5PPN4GMT8RKWB2ZCX0TRLNJLJRVPKB9WKG46DYD3ITX1EI1ABX0KPQ01LWYSSCFRCNRXK3NPGHYZ47QDABF07LK1HNC2NM3OSQW13TB9JPKQVS2I9NC7VH47P3BAYMQYLKQP16LSZJSC92U098ULCRDJO2DJXTDBQ0A5YRV45L525UPZ1RAEXQE4UIS6H8W1Y3660IY5MOKBJWIFUFKU94IB4IFIDJ44FE0H99ZNXA4LD3075A4ZJYBZN5JQCT34' where id=92; -update noar tt set v2='0N9AJV21Y70A87DVQMZGAVG663IMW936TIKECOWLCE5JPVRWFNQFZS8JDXIPIY5UOQETRJNDL9EUS96IRD15P2NIHA0B91MIKZMHOTM2ZQK3XBDFLD3411U38USXOYX35YXY2LLY31170T7H5MZAOTAIV4L791D0D9B5U2684CKRFY58Q1T41SP8ZCCU35N5EZ71EPTVXTMFO194MKR1Z8MJIED2KQ373NNG4ALI028MZBAJ1J3J7N3RTECPSS8S1' where id=92; -update noar ti set v2='0N9AJV21Y70A87DVQMZGAVG663IMW936TIKECOWLCE5JPVRWFNQFZS8JDXIPIY5UOQETRJNDL9EUS96IRD15P2NIHA0B91MIKZMHOTM2ZQK3XBDFLD3411U38USXOYX35YXY2LLY31170T7H5MZAOTAIV4L791D0D9B5U2684CKRFY58Q1T41SP8ZCCU35N5EZ71EPTVXTMFO194MKR1Z8MJIED2KQ373NNG4ALI028MZBAJ1J3J7N3RTECPSS8S1' where id=92; -update noar tt set v3='5NRG9TPQJFGZPU55R7HQ7DAE2WMTN6S3HGTZAN8HBIMFKDCG3DTAP4AWGSKEBBFYJGG8RGTYXWIBBVPHW66F4HLSFZBXLINYJZ8F8DNUTF0ZERIIOGRSQFXPMD0F3D2LHRJU14JSQ4COTDYT87Y79ZX8ZV5NI2H5SP1YM9Y9C8UN0YCBNMVRKRVPQ3AYQVEW1O4QB3BHXZKGGGRLYX2ULCR2ONSGYVES6JXWO4O6KA68ACHXRT5F28FAMQNNEV5GC' where id=92; -update noar ti set v3='5NRG9TPQJFGZPU55R7HQ7DAE2WMTN6S3HGTZAN8HBIMFKDCG3DTAP4AWGSKEBBFYJGG8RGTYXWIBBVPHW66F4HLSFZBXLINYJZ8F8DNUTF0ZERIIOGRSQFXPMD0F3D2LHRJU14JSQ4COTDYT87Y79ZX8ZV5NI2H5SP1YM9Y9C8UN0YCBNMVRKRVPQ3AYQVEW1O4QB3BHXZKGGGRLYX2ULCR2ONSGYVES6JXWO4O6KA68ACHXRT5F28FAMQNNEV5GC' where id=92; -update noar tt set v0='8OGUBG5PSFM9YFCRNYE1P416D66N991D3KNN79ITKN9Q4B37N7CPZVYP1BSTV60QHPWFGIUDRZKQWEG797PZ4KVX9XM0JI1MCPADAKTQYHJXIGB81Y3DLT8T7LMBWFSJ122KF8MQ3MX2WN68WWSSELG62H40WNTXORE23MM3RDK77OKCEH9ZP64Q0UKUJAINMDW8ENN3Y16AKHHOGD1XIXG131GCC43O3BSNDOWB9DW8S5JQKOH8PU272XJWLC0X5' where id=93; -update noar ti set v0='8OGUBG5PSFM9YFCRNYE1P416D66N991D3KNN79ITKN9Q4B37N7CPZVYP1BSTV60QHPWFGIUDRZKQWEG797PZ4KVX9XM0JI1MCPADAKTQYHJXIGB81Y3DLT8T7LMBWFSJ122KF8MQ3MX2WN68WWSSELG62H40WNTXORE23MM3RDK77OKCEH9ZP64Q0UKUJAINMDW8ENN3Y16AKHHOGD1XIXG131GCC43O3BSNDOWB9DW8S5JQKOH8PU272XJWLC0X5' where id=93; -update noar tt set v1='NI8A2ZUGRMA1UG3K6IC036SQ8LCRHMQB83WKHTTELLFPES4LPHT6JLXRKN30OFSUQMM574L5UB4Q02MVD786BC3RIJ1MQVCTW0GOJSFOAZSYDJWASIHSM414RQJQ6VVVVUIRAWJSGMKPN0P848MR3BLIWVCUE1DNDO2PXUKNWQYQG2KQ0EKZCYSDYRYSS2SXYSTDO471SQF93XYOXTV453HYONU7YVFHWWC3CD2M3WD7NR0P3HQH6STCC1RFV24PX' where id=93; -update noar ti set v1='NI8A2ZUGRMA1UG3K6IC036SQ8LCRHMQB83WKHTTELLFPES4LPHT6JLXRKN30OFSUQMM574L5UB4Q02MVD786BC3RIJ1MQVCTW0GOJSFOAZSYDJWASIHSM414RQJQ6VVVVUIRAWJSGMKPN0P848MR3BLIWVCUE1DNDO2PXUKNWQYQG2KQ0EKZCYSDYRYSS2SXYSTDO471SQF93XYOXTV453HYONU7YVFHWWC3CD2M3WD7NR0P3HQH6STCC1RFV24PX' where id=93; -update noar tt set v2='DPB3F7N6LDXWNRN56ZS9VR5STMD2ZHULKMRNRWGQAW3S3AS1LZX6TUHHH54342YFUFU4IQ34O7FYFWDMF8KY5QD08XD4WO8TP5DRAVOHEXQ5I47L6CIG2W9PZNS7H2T1Y8J6IWGJQGBHVOTF6GHN3X7OWGVEXQZT74T05231P6YDNTSACUFERNGP2JCZ4TT2G0BTM7000UPIXW96B9I5ZTGQZRKHU8LPC49UWFH0GVM2I4NBHXWNFM3SIIZED8B5J' where id=93; -update noar ti set v2='DPB3F7N6LDXWNRN56ZS9VR5STMD2ZHULKMRNRWGQAW3S3AS1LZX6TUHHH54342YFUFU4IQ34O7FYFWDMF8KY5QD08XD4WO8TP5DRAVOHEXQ5I47L6CIG2W9PZNS7H2T1Y8J6IWGJQGBHVOTF6GHN3X7OWGVEXQZT74T05231P6YDNTSACUFERNGP2JCZ4TT2G0BTM7000UPIXW96B9I5ZTGQZRKHU8LPC49UWFH0GVM2I4NBHXWNFM3SIIZED8B5J' where id=93; -update noar tt set v3='MIQBKX7ELS237YC2M98LXMMLQDEVSWJR0DDHJFBQ4HFCWXBZAJSUKMLFHRH853EBQCZOVBKQT96SR5SNY94IMSRSJIGJH0IAJUHNLJ15PZILRX2PQ0HK8YKSPI32H8Q4Q0R5STBQ2NJB1OO6YXQHNZN26PMZQKIEOM38T623KNNW4S18YZ93C4YBNOOBR9VG2C2B5Z8FEUBGXCU2R9TM0TEDDH7MQ1EDFAA5KHO2KV96I8FQJZI2QC1ZH8ZG44USR' where id=93; -update noar ti set v3='MIQBKX7ELS237YC2M98LXMMLQDEVSWJR0DDHJFBQ4HFCWXBZAJSUKMLFHRH853EBQCZOVBKQT96SR5SNY94IMSRSJIGJH0IAJUHNLJ15PZILRX2PQ0HK8YKSPI32H8Q4Q0R5STBQ2NJB1OO6YXQHNZN26PMZQKIEOM38T623KNNW4S18YZ93C4YBNOOBR9VG2C2B5Z8FEUBGXCU2R9TM0TEDDH7MQ1EDFAA5KHO2KV96I8FQJZI2QC1ZH8ZG44USR' where id=93; -update noar tt set v0='BXSTQD4OXKGNOO4RO94ELJKW31RICSUJZW2AHBIYOC3NSL0LJHGYAGW358OWXVQMCMWX9Y14UGIKJL7SC42WMX9FCARJL39JG59FFUFXKMQKP4DNPSDN8Y0NPMDX93NSFGUEE99OUAJWV3NC1WL9G0TGJLD7WS3AA1APY9DT5UV0LTOC5M5TCTGORYNOM7Q0YFBVQ5BKWYC1TFQT8VN0F9QVF2EJQPS1DQW1GEVMCP7VEZ5K3AUPB0IK9GYX64ASG' where id=94; -update noar ti set v0='BXSTQD4OXKGNOO4RO94ELJKW31RICSUJZW2AHBIYOC3NSL0LJHGYAGW358OWXVQMCMWX9Y14UGIKJL7SC42WMX9FCARJL39JG59FFUFXKMQKP4DNPSDN8Y0NPMDX93NSFGUEE99OUAJWV3NC1WL9G0TGJLD7WS3AA1APY9DT5UV0LTOC5M5TCTGORYNOM7Q0YFBVQ5BKWYC1TFQT8VN0F9QVF2EJQPS1DQW1GEVMCP7VEZ5K3AUPB0IK9GYX64ASG' where id=94; -update noar tt set v1='FII52OV4TALWIPZ5GT7ONEQUI9RUXZASEPCIR5136AHM1T1GDB3L8OGDESTWRYOHJOLXLHKRTZ0MKQZ6Q90DD097161T0OGFXM2QAVS8KQG9JNDRBTW2QPV713KWRW0JFDDN2A5021O1ZUIH15WYC9X79KJD8RX5X72BNPOI8EDJUMB61IHOCIW6H1PW569F3B751YTHFM0ZITZTG079D0FALBNHRA5JNC7J1C62O3DK6PX633LM3RS4MO0PUZSRK' where id=94; -update noar ti set v1='FII52OV4TALWIPZ5GT7ONEQUI9RUXZASEPCIR5136AHM1T1GDB3L8OGDESTWRYOHJOLXLHKRTZ0MKQZ6Q90DD097161T0OGFXM2QAVS8KQG9JNDRBTW2QPV713KWRW0JFDDN2A5021O1ZUIH15WYC9X79KJD8RX5X72BNPOI8EDJUMB61IHOCIW6H1PW569F3B751YTHFM0ZITZTG079D0FALBNHRA5JNC7J1C62O3DK6PX633LM3RS4MO0PUZSRK' where id=94; -update noar tt set v2='GN624I010EQ4SAY5RJ6DFYMQ5KQ1P7G3Q7C05N4PL7WRGEKA1FEUCWWQA2TARB00S75C6UFAPGZ2H5DOHYV69UUYL0P13047M0JJ8E6TKALBWGM0USLCDK2LMLBB8OAEEV2QTBBHZHA6L4S7JV8VNMD5H7T5DTZJG5597F3TQHQEIQQC5XBEYDB3OCPJEKZFFAY6Q8UBWCUXXOR6G2WKXP7XN7KJFVY6WPG9IWUDT9PDDJB1B7KH367UT0BY8ZGP6' where id=94; -update noar ti set v2='GN624I010EQ4SAY5RJ6DFYMQ5KQ1P7G3Q7C05N4PL7WRGEKA1FEUCWWQA2TARB00S75C6UFAPGZ2H5DOHYV69UUYL0P13047M0JJ8E6TKALBWGM0USLCDK2LMLBB8OAEEV2QTBBHZHA6L4S7JV8VNMD5H7T5DTZJG5597F3TQHQEIQQC5XBEYDB3OCPJEKZFFAY6Q8UBWCUXXOR6G2WKXP7XN7KJFVY6WPG9IWUDT9PDDJB1B7KH367UT0BY8ZGP6' where id=94; -update noar tt set v3='FD4M8P78IKEG20ZDD8FOFUVUHPU9A450K8TUKKBML04GX4G2HQOMXHHJ55XAIGN3SC18JC0SG8V8GPZCPN84FRKPO4AGTWVYA8155W1EMD2IDJMRYS1UTHSJ7RVOEXHAEX8X7N7Y1PI0PC28D3F4KV8AX8AEFQT6Z2SRBRIMO3I540PYM2LTI6YWI5J9OZ02VZX6UW1MX3Z18S1RJXZMN4D1QFA2G8QIU6VRZFM7R95ZH7UPJLHYGZ157N5513OMB' where id=94; -update noar ti set v3='FD4M8P78IKEG20ZDD8FOFUVUHPU9A450K8TUKKBML04GX4G2HQOMXHHJ55XAIGN3SC18JC0SG8V8GPZCPN84FRKPO4AGTWVYA8155W1EMD2IDJMRYS1UTHSJ7RVOEXHAEX8X7N7Y1PI0PC28D3F4KV8AX8AEFQT6Z2SRBRIMO3I540PYM2LTI6YWI5J9OZ02VZX6UW1MX3Z18S1RJXZMN4D1QFA2G8QIU6VRZFM7R95ZH7UPJLHYGZ157N5513OMB' where id=94; -update noar tt set v0='0XROE5VBHWTIYZBM57KHFWK6RD4BWI5ED4GRPKD3VIR1BPYWZSSX2G6RZHI3D7664T03FT1F5TI42OSEMSD302YIX6O8S77NLYBJUB4KR1FXLDEV8I5VI9G10P7MPQ81K2ZYJG9YQ49FPU7VCEVWAKY2B96YDL50NHQCK61C98J8N9DWEVNOC34NNS2W2COINLWI03BEJHMWNL4Z839ON2MK1YMPMQKOTYC50YRCLF0G6PYTJHC90GH9P1Z3WT10T' where id=95; -update noar ti set v0='0XROE5VBHWTIYZBM57KHFWK6RD4BWI5ED4GRPKD3VIR1BPYWZSSX2G6RZHI3D7664T03FT1F5TI42OSEMSD302YIX6O8S77NLYBJUB4KR1FXLDEV8I5VI9G10P7MPQ81K2ZYJG9YQ49FPU7VCEVWAKY2B96YDL50NHQCK61C98J8N9DWEVNOC34NNS2W2COINLWI03BEJHMWNL4Z839ON2MK1YMPMQKOTYC50YRCLF0G6PYTJHC90GH9P1Z3WT10T' where id=95; -update noar tt set v1='L3RBAQC8WPF07BZ5GZRIGRQBZWOWY3PW8PDMBJKWLEEL5AVWMA4JL5X9TKM3RF0R3UFZSJD7VEJW12PXR1CNXXNYAHFIHYR4VLM0PE4CL2GC1O30IL363BYQVZMU6CW4FG38W4F6U2ZERSDD6Z8FIP4F5QWA139K4797GOY1NXKKDTYOZD0Q6CVHBUW7P13J56K69QEBQO3SP9N9AJ06IERWAH3RER9HYNAQDP8E3FLI4A6XDQ53CX3DDI9Z0Z56T' where id=95; -update noar ti set v1='L3RBAQC8WPF07BZ5GZRIGRQBZWOWY3PW8PDMBJKWLEEL5AVWMA4JL5X9TKM3RF0R3UFZSJD7VEJW12PXR1CNXXNYAHFIHYR4VLM0PE4CL2GC1O30IL363BYQVZMU6CW4FG38W4F6U2ZERSDD6Z8FIP4F5QWA139K4797GOY1NXKKDTYOZD0Q6CVHBUW7P13J56K69QEBQO3SP9N9AJ06IERWAH3RER9HYNAQDP8E3FLI4A6XDQ53CX3DDI9Z0Z56T' where id=95; -update noar tt set v2='AQ81O2S4REJQC4L0WV4D9YSN6MOZA60X0RCQGYJ6JR1KU5FSUXJYDKGVQ4H4E2MUUBPY4P5KNJSFGACEZT2ON3A4ZDHE2P687SOAAK3J3QAUZLNV6F3N3SDZXGWD93C7S9HTCWV7QZ5VR53K0SC6UVQR9R857U6XKDPZMCPNAJCCH9M6FVM4C6P73U7IJFX4P8GZQV3B64KY1GK8CUFPMS45LVMLCGOQ2BSEL2ATVXO18FKD9T3Y3ABNQ848DWAMX' where id=95; -update noar ti set v2='AQ81O2S4REJQC4L0WV4D9YSN6MOZA60X0RCQGYJ6JR1KU5FSUXJYDKGVQ4H4E2MUUBPY4P5KNJSFGACEZT2ON3A4ZDHE2P687SOAAK3J3QAUZLNV6F3N3SDZXGWD93C7S9HTCWV7QZ5VR53K0SC6UVQR9R857U6XKDPZMCPNAJCCH9M6FVM4C6P73U7IJFX4P8GZQV3B64KY1GK8CUFPMS45LVMLCGOQ2BSEL2ATVXO18FKD9T3Y3ABNQ848DWAMX' where id=95; -update noar tt set v3='QZY4PIYS1TFSH4IU2SM8CMYF7BPT2GDWF3ELD5MNBAOSAN5PBKGA4OOZRHBI7RX7ZA1BVVI1KVYW4KNH6H0M5YPIULN06UZIO3W9KY2SJOOOBJ4SO8NV9V1OLFCRBJ0OSDHRIX3T3HEN17QSWVHKSS2AQYO91BOZI8IY8R8QTSYMZDKEDYY2WGHE35GXIY3FWE67RIDCDBNGQE2HCJCPP0DF8ZK157C5TMK9C7EMFK6DW4YYYRXDA4CZNVWM8HS7R' where id=95; -update noar ti set v3='QZY4PIYS1TFSH4IU2SM8CMYF7BPT2GDWF3ELD5MNBAOSAN5PBKGA4OOZRHBI7RX7ZA1BVVI1KVYW4KNH6H0M5YPIULN06UZIO3W9KY2SJOOOBJ4SO8NV9V1OLFCRBJ0OSDHRIX3T3HEN17QSWVHKSS2AQYO91BOZI8IY8R8QTSYMZDKEDYY2WGHE35GXIY3FWE67RIDCDBNGQE2HCJCPP0DF8ZK157C5TMK9C7EMFK6DW4YYYRXDA4CZNVWM8HS7R' where id=95; -update noar tt set v0='IQNTGGRADUTD2YZMX6UO5Y5MG75AYWMJYT14V8JACENITUTWQ08P7PRZAK9HKFS9TH5MEB792FNKOGGB14URFX7PZVLOK0VIZS6KW0WT6QHNOJI7MBATHUQG7SO4LZ4FB174IP35E4UI59FTL7BZPCCBYQIGS5NJ7Y2UDD2NZ20DIW0NKFCBRH6QAPI0WHZ9B1AFV398T64CM3JJO4RBAUK2JSUVK1GUEE6BGMVWMWJF8A4DLNFRDJ2ZKO6FFAR1N' where id=96; -update noar ti set v0='IQNTGGRADUTD2YZMX6UO5Y5MG75AYWMJYT14V8JACENITUTWQ08P7PRZAK9HKFS9TH5MEB792FNKOGGB14URFX7PZVLOK0VIZS6KW0WT6QHNOJI7MBATHUQG7SO4LZ4FB174IP35E4UI59FTL7BZPCCBYQIGS5NJ7Y2UDD2NZ20DIW0NKFCBRH6QAPI0WHZ9B1AFV398T64CM3JJO4RBAUK2JSUVK1GUEE6BGMVWMWJF8A4DLNFRDJ2ZKO6FFAR1N' where id=96; -update noar tt set v1='IOVZOSB1FQBQKSP0I5CPH8KQL2Q8JFCX2BUKXJJ9ZEQQ9LWG7NFDY7USIT0RJGMQ85HJ5QA0WBZ1ESFXK83LFN8ZKZMSZXK099EILWLC83CIOEC986M1LHC00T9Q1B8SJAIZO8C96JEKUBXQA26FO5EEUIM7AEU68L0GPDXRMWDL85S1AYVY8UQTO216W1MTY95QHAVKPSSNU2YUEY9586QN8CHLJKMVHDXEQHF5IH2RGQCKXBL222SBT6GZO3XE7' where id=96; -update noar ti set v1='IOVZOSB1FQBQKSP0I5CPH8KQL2Q8JFCX2BUKXJJ9ZEQQ9LWG7NFDY7USIT0RJGMQ85HJ5QA0WBZ1ESFXK83LFN8ZKZMSZXK099EILWLC83CIOEC986M1LHC00T9Q1B8SJAIZO8C96JEKUBXQA26FO5EEUIM7AEU68L0GPDXRMWDL85S1AYVY8UQTO216W1MTY95QHAVKPSSNU2YUEY9586QN8CHLJKMVHDXEQHF5IH2RGQCKXBL222SBT6GZO3XE7' where id=96; -update noar tt set v2='WZW2UZT4T1OHXCLAPWVPOIIL6LQ9MCEFBDUD6F057EW1TTS74F4W31UV3M9GTZDHA975FPZUF4LQJVI9W1PO1VFXL4MSCD6SQH003CGN8HGTWXS4DLMIMJGNTDXLLPASKIXZN3AVN39KPF48V6PQOZOW7USRO2Z3RGBN89JQMHH7AI382XK7COKOI9ZWPEJR3DJ9W4KPSIA6DTWQYRJH991Z3FNCS5JK880IL5P8DA6IC8ULWFTZGQ7UZT3483XX0' where id=96; -update noar ti set v2='WZW2UZT4T1OHXCLAPWVPOIIL6LQ9MCEFBDUD6F057EW1TTS74F4W31UV3M9GTZDHA975FPZUF4LQJVI9W1PO1VFXL4MSCD6SQH003CGN8HGTWXS4DLMIMJGNTDXLLPASKIXZN3AVN39KPF48V6PQOZOW7USRO2Z3RGBN89JQMHH7AI382XK7COKOI9ZWPEJR3DJ9W4KPSIA6DTWQYRJH991Z3FNCS5JK880IL5P8DA6IC8ULWFTZGQ7UZT3483XX0' where id=96; -update noar tt set v3='W71DTVQ7AAPG8A48LYFDQ9CZ2F0QUQPDQHY6YCT6UZZ9KI3V72W4XRXVA6TP4TMNJUBLW8UA2BLHFOSEQ53PXHMXDOIDDO8G1ZIE5PBU61ZG3W28A9M6JETXY6PCBZ97N0UGCWKZKAIA38ZOD03CV9OL0WVQHNRE3H18M05N9S9SE53Y0T5MQIB702EVBKM4PR4VHHZ0XMEO3C68MN8EETBC33AT3NR26E332D0YVNXMUW8S6UD84RYT4TJSCIRVJ' where id=96; -update noar ti set v3='W71DTVQ7AAPG8A48LYFDQ9CZ2F0QUQPDQHY6YCT6UZZ9KI3V72W4XRXVA6TP4TMNJUBLW8UA2BLHFOSEQ53PXHMXDOIDDO8G1ZIE5PBU61ZG3W28A9M6JETXY6PCBZ97N0UGCWKZKAIA38ZOD03CV9OL0WVQHNRE3H18M05N9S9SE53Y0T5MQIB702EVBKM4PR4VHHZ0XMEO3C68MN8EETBC33AT3NR26E332D0YVNXMUW8S6UD84RYT4TJSCIRVJ' where id=96; -update noar tt set v0='EQQ7QU2WKRN0S69XW8ROIL27L0NYD1RCITRN1CU7YHRAZGJA3X6BC7VUNQN81DPK62R0R94FFWNYQS4EJQPOMSJ1Z6P7ZH1XB8N6QD8IYNEOWNA66T3DU424SEY7LK48XD9X03C8DYNCRRH9UJM5KNOA1JFDEPZVVVATYXBUQBOPDC65BTMUDMIMR4OJ64J4ERU4H4EE9RHBQG5Y4AUXRI6736QQ63DG1Q3ZKON5ISN5S94I48H48SALW5UAB3Q5J' where id=97; -update noar ti set v0='EQQ7QU2WKRN0S69XW8ROIL27L0NYD1RCITRN1CU7YHRAZGJA3X6BC7VUNQN81DPK62R0R94FFWNYQS4EJQPOMSJ1Z6P7ZH1XB8N6QD8IYNEOWNA66T3DU424SEY7LK48XD9X03C8DYNCRRH9UJM5KNOA1JFDEPZVVVATYXBUQBOPDC65BTMUDMIMR4OJ64J4ERU4H4EE9RHBQG5Y4AUXRI6736QQ63DG1Q3ZKON5ISN5S94I48H48SALW5UAB3Q5J' where id=97; -update noar tt set v1='EPINWAM58B1T15VZAOUMSX7T76A8OQJUDEVCZSRJAQQMF62RJI2ALMEY9ZT3YXLXG7MKNCDY57OX50SXN7AU3Q5C4E5CTSB3W84IRGEG3EERP7QOEM4RKYPFEAMZH1AOIMCCDRBTIX9QJ96J36OAQXE1RF6F49G70ADVWHZGGTPJWQ35UINBYWZ5PVMVPL7WGYHJP1FQ7MH4K82JWBKAAXVUAW56BH7MVWQYFXK2JTOM1X72F1X8FIVHGA84P7XFX' where id=97; -update noar ti set v1='EPINWAM58B1T15VZAOUMSX7T76A8OQJUDEVCZSRJAQQMF62RJI2ALMEY9ZT3YXLXG7MKNCDY57OX50SXN7AU3Q5C4E5CTSB3W84IRGEG3EERP7QOEM4RKYPFEAMZH1AOIMCCDRBTIX9QJ96J36OAQXE1RF6F49G70ADVWHZGGTPJWQ35UINBYWZ5PVMVPL7WGYHJP1FQ7MH4K82JWBKAAXVUAW56BH7MVWQYFXK2JTOM1X72F1X8FIVHGA84P7XFX' where id=97; -update noar tt set v2='PPBNZAYK39P1F1LVEBZARC5B4N4V75V8S38J9B32WLT1KR8NYIR80VIA15DZTH28PJ6J7MQX211112OA0PH7EL3LRQ3UOAJZOUILVLP81C0GT6XYKQAHZ00FU1LNHUXQJIY262VEDV4BBWKBOWCTGLT31AWKWO6OOVZ4FCHZIT75TIECH70D5MUWMIXJQ7BSUUI6FJN2823YEGKCZT24UEMSG458W5PR0Q47RHW9BZ2HVSQMW67B9SA8ALWOUA2RG' where id=97; -update noar ti set v2='PPBNZAYK39P1F1LVEBZARC5B4N4V75V8S38J9B32WLT1KR8NYIR80VIA15DZTH28PJ6J7MQX211112OA0PH7EL3LRQ3UOAJZOUILVLP81C0GT6XYKQAHZ00FU1LNHUXQJIY262VEDV4BBWKBOWCTGLT31AWKWO6OOVZ4FCHZIT75TIECH70D5MUWMIXJQ7BSUUI6FJN2823YEGKCZT24UEMSG458W5PR0Q47RHW9BZ2HVSQMW67B9SA8ALWOUA2RG' where id=97; -update noar tt set v3='DWYM1QY2KK4ZNVADX0CZE4CEUW13L45PV6UMAKCCD63Z19ZCNQ2ANTX33K9I8GNIMGBPZYT3HO9YWJVHZ5TOW8WRCE23HIDPNCLTKXZXQR2SHQ2SBEXVOLD5GIE97EVM4JC6KK1B01MXOFY41B947YJ3CJXDK0UWCLGYWTLHWSK9DUVTZLIXBWRTV48E5LAOSLIXCNNYB2W2XX3HPY45CXFDTBHFXUC6TGNAB4217EVPLXOM3DS2YMRVRP4HHZ498' where id=97; -update noar ti set v3='DWYM1QY2KK4ZNVADX0CZE4CEUW13L45PV6UMAKCCD63Z19ZCNQ2ANTX33K9I8GNIMGBPZYT3HO9YWJVHZ5TOW8WRCE23HIDPNCLTKXZXQR2SHQ2SBEXVOLD5GIE97EVM4JC6KK1B01MXOFY41B947YJ3CJXDK0UWCLGYWTLHWSK9DUVTZLIXBWRTV48E5LAOSLIXCNNYB2W2XX3HPY45CXFDTBHFXUC6TGNAB4217EVPLXOM3DS2YMRVRP4HHZ498' where id=97; -update noar tt set v0='6OX69SYHPIQGJ5WNI1GIH6Q6MIWQ3QL1F2XPR6KDK1TBT6RR4QAW5LEI4IUXBSZJ02PRXCS01YP0SHCYV3I9AUMZ41HE3QQ7VWBP5PLK8DOP2DSKND32VSC0YNH8PJ3DRUDO0BMUKNA22O8VPJIQTIYU03SOFEVPB3HUN7JICGNMD1F0S4M473DZIB2WZHGYGJ95AGRF82DMDOHRRCCI6R12XR19X801GXR1P49LN00LKP6YLWOVFQDV8SLLEB6WZ' where id=98; -update noar ti set v0='6OX69SYHPIQGJ5WNI1GIH6Q6MIWQ3QL1F2XPR6KDK1TBT6RR4QAW5LEI4IUXBSZJ02PRXCS01YP0SHCYV3I9AUMZ41HE3QQ7VWBP5PLK8DOP2DSKND32VSC0YNH8PJ3DRUDO0BMUKNA22O8VPJIQTIYU03SOFEVPB3HUN7JICGNMD1F0S4M473DZIB2WZHGYGJ95AGRF82DMDOHRRCCI6R12XR19X801GXR1P49LN00LKP6YLWOVFQDV8SLLEB6WZ' where id=98; -update noar tt set v1='OMETU5ZLOT7SAEVMZD3OFQC7GEJTGIMFP8BGWC8F6T4F7KNVC0DQG4UZ09PFLDX6ET0QYRWJ89R6GWA322TRMKH2LOA1IIV15NBTHYUM1QNNC11VE9ZEUGXOQYEBMKAWD5XBH18X8K3WWX73FNP7L6YE9RO0THJCHL5R1TG3O21TB3WDJQR4HWOP7QMTOTVHQYTSK97WN53REXZRQBPY7F6VMOQY31T3H34IUBCYVQN5Y8RNBRJSMAHLL5NW868MK' where id=98; -update noar ti set v1='OMETU5ZLOT7SAEVMZD3OFQC7GEJTGIMFP8BGWC8F6T4F7KNVC0DQG4UZ09PFLDX6ET0QYRWJ89R6GWA322TRMKH2LOA1IIV15NBTHYUM1QNNC11VE9ZEUGXOQYEBMKAWD5XBH18X8K3WWX73FNP7L6YE9RO0THJCHL5R1TG3O21TB3WDJQR4HWOP7QMTOTVHQYTSK97WN53REXZRQBPY7F6VMOQY31T3H34IUBCYVQN5Y8RNBRJSMAHLL5NW868MK' where id=98; -update noar tt set v2='EZ8ZDWSXIIVZ3R41UPLC80LGH6BVDI56P8276QMGKSJ6HZQ5JJXIEJHKB1K5OG5J1L7OXWCZVBTCX4RMQDTK3ZGWL6WFCMD0YX1M3GS8N53TN32126QJQJH2R5PCOITFTRVVNMDQUMZRE2T5J3X1R7AHLA47M5LHQ4PEOB9ZFJRXQVDIFZZS3FVW12EPN9U664JJJ1FKGSROJJLY1FOSJ3I7JGWFCFNDPBEVF5D9HUV11PGN8SLWPFD5KOXHHB7OW' where id=98; -update noar ti set v2='EZ8ZDWSXIIVZ3R41UPLC80LGH6BVDI56P8276QMGKSJ6HZQ5JJXIEJHKB1K5OG5J1L7OXWCZVBTCX4RMQDTK3ZGWL6WFCMD0YX1M3GS8N53TN32126QJQJH2R5PCOITFTRVVNMDQUMZRE2T5J3X1R7AHLA47M5LHQ4PEOB9ZFJRXQVDIFZZS3FVW12EPN9U664JJJ1FKGSROJJLY1FOSJ3I7JGWFCFNDPBEVF5D9HUV11PGN8SLWPFD5KOXHHB7OW' where id=98; -update noar tt set v3='Y5GGZJ2QXMB5R0NP4D7TG248GQ1YOB2R7MJ637HVV6M6QSEMG3E0S5TK2VRTYS3H8ZNU0C59IY4CALDNX57C6VW8AEPSZ33BPCRYKBMPC1PFXE0SX4NHD8E3FQVHXJJ5OCK9A4WMNCW8IBRV7VWAYEW5NH4N1XCZ47U5C85WZ6JRA9FG8KAUO3F1K5GEPLEFQWI41HZVIDQKR93QBSR2RF9HGKLS3TW7AOUUBW8QO81YBOYLE48YVEX97NOPBOIL0' where id=98; -update noar ti set v3='Y5GGZJ2QXMB5R0NP4D7TG248GQ1YOB2R7MJ637HVV6M6QSEMG3E0S5TK2VRTYS3H8ZNU0C59IY4CALDNX57C6VW8AEPSZ33BPCRYKBMPC1PFXE0SX4NHD8E3FQVHXJJ5OCK9A4WMNCW8IBRV7VWAYEW5NH4N1XCZ47U5C85WZ6JRA9FG8KAUO3F1K5GEPLEFQWI41HZVIDQKR93QBSR2RF9HGKLS3TW7AOUUBW8QO81YBOYLE48YVEX97NOPBOIL0' where id=98; -update noar tt set v0='5HY6NJLDSBZZOYZWZ8Y4KTFQ7PVXI6759G5WN3KERA17M6DJMSQISJCRRK34CIXOWIWA2622J2DDAJJHO2ZNUZDUMXVPD6XNMEEZBHVI3OUO09OZY2V3I61RSBZXGBL2YO6IMHKWHIKGD6QXOWSA6G6NAFTGR651YPX8HMQY7FIHERVNAGO9UDS3V06UIYJNY8QPZX0878TEIGJ4ASMZ1GV0MW5L0FHNXEYLWCYS3RT6X5QE2SB16TOFFRX1GEF2B' where id=99; -update noar ti set v0='5HY6NJLDSBZZOYZWZ8Y4KTFQ7PVXI6759G5WN3KERA17M6DJMSQISJCRRK34CIXOWIWA2622J2DDAJJHO2ZNUZDUMXVPD6XNMEEZBHVI3OUO09OZY2V3I61RSBZXGBL2YO6IMHKWHIKGD6QXOWSA6G6NAFTGR651YPX8HMQY7FIHERVNAGO9UDS3V06UIYJNY8QPZX0878TEIGJ4ASMZ1GV0MW5L0FHNXEYLWCYS3RT6X5QE2SB16TOFFRX1GEF2B' where id=99; -update noar tt set v1='T4HGGT928YXUXK5JFRSZVC010NU1WUSBU8BSJSP2CL9JHQK3WX03T0VH6R7V2EPPW5FY44BPELIBZHCD4O4E5TKA9NL10D8ZDNVFDQL97INZHH4LJ6A0OHQ8WXLC5VGRFJP1Z49SRAQC5G3SI5SKWQU03FL12ZAFUINI1WF4LGYW06OWSTK6Z79MNIEQSF770Z6L42OKPTKG49VTFSQADBBEPF1O2HM1SKM5NU5FGGJ8SZJ7N3ASLWX7WXWELLLTQ' where id=99; -update noar ti set v1='T4HGGT928YXUXK5JFRSZVC010NU1WUSBU8BSJSP2CL9JHQK3WX03T0VH6R7V2EPPW5FY44BPELIBZHCD4O4E5TKA9NL10D8ZDNVFDQL97INZHH4LJ6A0OHQ8WXLC5VGRFJP1Z49SRAQC5G3SI5SKWQU03FL12ZAFUINI1WF4LGYW06OWSTK6Z79MNIEQSF770Z6L42OKPTKG49VTFSQADBBEPF1O2HM1SKM5NU5FGGJ8SZJ7N3ASLWX7WXWELLLTQ' where id=99; -update noar tt set v2='AAD2T24WXCYCSUJK3U748EJFRUU6SYRJIL25YIKIFFMPK98R1KY4UZ09DI1T3I7M0HH0THN46E4RAX1CWAZJ31AAHCQAYWRYIEJ763CTWOU3PI5FC5EKIEEEK2RQNY75JVB68U46K7HAQP6QUBHP5O3A4SW8VNIF7M9UNGRRCP4D1WIAG39BY2P4OWCMDCATFCU3G976SCJXX0ZY8DTYWEWYFTQMA53XZGFO5W477IDQAMJED80RZWEG5IRBJKO07' where id=99; -update noar ti set v2='AAD2T24WXCYCSUJK3U748EJFRUU6SYRJIL25YIKIFFMPK98R1KY4UZ09DI1T3I7M0HH0THN46E4RAX1CWAZJ31AAHCQAYWRYIEJ763CTWOU3PI5FC5EKIEEEK2RQNY75JVB68U46K7HAQP6QUBHP5O3A4SW8VNIF7M9UNGRRCP4D1WIAG39BY2P4OWCMDCATFCU3G976SCJXX0ZY8DTYWEWYFTQMA53XZGFO5W477IDQAMJED80RZWEG5IRBJKO07' where id=99; -update noar tt set v3='088C17CAB877RRXLZQAN3GCERG21GT9XDZNLW18J01ARBZOL74W52UBX83O6G6G98XS03MBPQIO7S774BQMBCAW9HLP8T9X81EWDPKM6CM9N0YQLXZP0D3UTV8PCD9CBH0VLEWQWPNUHO0L9B8Y7Z4EHWOBVGLKWPO539WYWXRX3OL0W47CV40L5QYFKCWKAOU78Y274ZJ9GVUD6WDHF7R8ZC11BUS9DH21HD9TGTVDSAJW3YKVTQ7LRT8552YF7H' where id=99; -update noar ti set v3='088C17CAB877RRXLZQAN3GCERG21GT9XDZNLW18J01ARBZOL74W52UBX83O6G6G98XS03MBPQIO7S774BQMBCAW9HLP8T9X81EWDPKM6CM9N0YQLXZP0D3UTV8PCD9CBH0VLEWQWPNUHO0L9B8Y7Z4EHWOBVGLKWPO539WYWXRX3OL0W47CV40L5QYFKCWKAOU78Y274ZJ9GVUD6WDHF7R8ZC11BUS9DH21HD9TGTVDSAJW3YKVTQ7LRT8552YF7H' where id=99; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt (id bigint unsigned primary key, - f0 int not null, - v0 varbinary(256) not null, - v1 varbinary(256) not null, - v2 varbinary(256) not null, - v3 varbinary(256) not null, - b0 text not null -) engine=tokudb; -insert into tt values (1,2,'a','b','c','d','e'); -insert into tt values (2,3,'','','','',''); -insert into tt values (3,4,'','','','',''); -insert into tt values (4,5,'','','','',''); -insert into tt values (5,6,'','','','',''); -insert into tt values (6,7,'','','','',''); -insert into tt values (7,8,'','','','',''); -insert into tt values (8,9,'','','','',''); -insert into tt values (9,10,'','','','',''); -insert into tt values (10,11,'','','','',''); -insert into tt values (11,12,'','','','',''); -insert into tt values (12,13,'','','','',''); -insert into tt values (13,14,'','','','',''); -insert into tt values (14,15,'','','','',''); -insert into tt values (15,16,'','','','',''); -insert into tt values (16,17,'','','','',''); -insert into tt values (17,18,'','','','',''); -insert into tt values (18,19,'','','','',''); -insert into tt values (19,20,'','','','',''); -insert into tt values (20,21,'','','','',''); -insert into tt values (21,22,'','','','',''); -insert into tt values (22,23,'','','','',''); -insert into tt values (23,24,'','','','',''); -insert into tt values (24,25,'','','','',''); -insert into tt values (25,26,'','','','',''); -insert into tt values (26,27,'','','','',''); -insert into tt values (27,28,'','','','',''); -insert into tt values (28,29,'','','','',''); -insert into tt values (29,30,'','','','',''); -insert into tt values (30,31,'','','','',''); -insert into tt values (31,32,'','','','',''); -insert into tt values (32,33,'','','','',''); -insert into tt values (33,34,'','','','',''); -insert into tt values (34,35,'','','','',''); -insert into tt values (35,36,'','','','',''); -insert into tt values (36,37,'','','','',''); -insert into tt values (37,38,'','','','',''); -insert into tt values (38,39,'','','','',''); -insert into tt values (39,40,'','','','',''); -insert into tt values (40,41,'','','','',''); -insert into tt values (41,42,'','','','',''); -insert into tt values (42,43,'','','','',''); -insert into tt values (43,44,'','','','',''); -insert into tt values (44,45,'','','','',''); -insert into tt values (45,46,'','','','',''); -insert into tt values (46,47,'','','','',''); -insert into tt values (47,48,'','','','',''); -insert into tt values (48,49,'','','','',''); -insert into tt values (49,50,'','','','',''); -insert into tt values (50,51,'','','','',''); -insert into tt values (51,52,'','','','',''); -insert into tt values (52,53,'','','','',''); -insert into tt values (53,54,'','','','',''); -insert into tt values (54,55,'','','','',''); -insert into tt values (55,56,'','','','',''); -insert into tt values (56,57,'','','','',''); -insert into tt values (57,58,'','','','',''); -insert into tt values (58,59,'','','','',''); -insert into tt values (59,60,'','','','',''); -insert into tt values (60,61,'','','','',''); -insert into tt values (61,62,'','','','',''); -insert into tt values (62,63,'','','','',''); -insert into tt values (63,64,'','','','',''); -insert into tt values (64,65,'','','','',''); -insert into tt values (65,66,'','','','',''); -insert into tt values (66,67,'','','','',''); -insert into tt values (67,68,'','','','',''); -insert into tt values (68,69,'','','','',''); -insert into tt values (69,70,'','','','',''); -insert into tt values (70,71,'','','','',''); -insert into tt values (71,72,'','','','',''); -insert into tt values (72,73,'','','','',''); -insert into tt values (73,74,'','','','',''); -insert into tt values (74,75,'','','','',''); -insert into tt values (75,76,'','','','',''); -insert into tt values (76,77,'','','','',''); -insert into tt values (77,78,'','','','',''); -insert into tt values (78,79,'','','','',''); -insert into tt values (79,80,'','','','',''); -insert into tt values (80,81,'','','','',''); -insert into tt values (81,82,'','','','',''); -insert into tt values (82,83,'','','','',''); -insert into tt values (83,84,'','','','',''); -insert into tt values (84,85,'','','','',''); -insert into tt values (85,86,'','','','',''); -insert into tt values (86,87,'','','','',''); -insert into tt values (87,88,'','','','',''); -insert into tt values (88,89,'','','','',''); -insert into tt values (89,90,'','','','',''); -insert into tt values (90,91,'','','','',''); -insert into tt values (91,92,'','','','',''); -insert into tt values (92,93,'','','','',''); -insert into tt values (93,94,'','','','',''); -insert into tt values (94,95,'','','','',''); -insert into tt values (95,96,'','','','',''); -insert into tt values (96,97,'','','','',''); -insert into tt values (97,98,'','','','',''); -insert into tt values (98,99,'','','','',''); -insert into tt values (99,100,'','','','',''); -create table ti like tt; -alter table ti engine=innodb; -insert into ti select * from tt; -update noar tt set v0='null this 0' where id=0; -update noar ti set v0='null this 0' where id=0; -update noar tt set v1='null is 1' where id=0; -update noar ti set v1='null is 1' where id=0; -update noar tt set v2='null a 2' where id=0; -update noar ti set v2='null a 2' where id=0; -update noar tt set v3='null test 3' where id=0; -update noar ti set v3='null test 3' where id=0; -update noar tt set v0='this 0' where id=1; -update noar ti set v0='this 0' where id=1; -update noar tt set v1='is 1' where id=1; -update noar ti set v1='is 1' where id=1; -update noar tt set v2='another 2' where id=1; -update noar ti set v2='another 2' where id=1; -update noar tt set v3='test 3' where id=1; -update noar ti set v3='test 3' where id=1; -update noar tt set v0='HXQARM7X1ZS6SRO83LVDNWF5OCL7F92VRP8L9J740BWJDF3BXC6MT2X6OQQGVEQ37LEX0RNL77GO7CZ5VZNDKUAALOY03UOEXCT897YJXN8IRV264SXJK9RXT5QL3FOZMRTQ8K5BGWAHFI8YX4I8MGBASVYC7ZRPXFAV4TGKY3ZYP6NCNTM515ZSEKVU7UMW4NMK1BYERGJOD8W0ZS45NTEYG0C9E1MTQYMQHV11RI8N4PBGOBDUQHOZEKBKUTETC' where id=2; -update noar ti set v0='HXQARM7X1ZS6SRO83LVDNWF5OCL7F92VRP8L9J740BWJDF3BXC6MT2X6OQQGVEQ37LEX0RNL77GO7CZ5VZNDKUAALOY03UOEXCT897YJXN8IRV264SXJK9RXT5QL3FOZMRTQ8K5BGWAHFI8YX4I8MGBASVYC7ZRPXFAV4TGKY3ZYP6NCNTM515ZSEKVU7UMW4NMK1BYERGJOD8W0ZS45NTEYG0C9E1MTQYMQHV11RI8N4PBGOBDUQHOZEKBKUTETC' where id=2; -update noar tt set v1='CP94ISC8FR6RF5QXJOUJSFNRUSLE1X4B9IPKTO5QSB8LTILPZC4MWZ134IAYHFQSD1VQ3DO4B129LD9QIF7OQQIC2YYW5ZJTOTB4S7OX2JMUQ97RLZFO7VNFTL6PB22QBNCCHV806V6QUOQGBIA4QPVJB0EYZ60TPT2Z5GXLAUUJ5J2D51WOJN8BRE8PG8KJ992CBN3ZL32OATOHF14YRYCPMED1YTOUO3RDPSQ7KCAA21FLL64BPRCADHQ8SUBJF' where id=2; -update noar ti set v1='CP94ISC8FR6RF5QXJOUJSFNRUSLE1X4B9IPKTO5QSB8LTILPZC4MWZ134IAYHFQSD1VQ3DO4B129LD9QIF7OQQIC2YYW5ZJTOTB4S7OX2JMUQ97RLZFO7VNFTL6PB22QBNCCHV806V6QUOQGBIA4QPVJB0EYZ60TPT2Z5GXLAUUJ5J2D51WOJN8BRE8PG8KJ992CBN3ZL32OATOHF14YRYCPMED1YTOUO3RDPSQ7KCAA21FLL64BPRCADHQ8SUBJF' where id=2; -update noar tt set v2='9H141GVH408C2JXFI7SYSLBZ9JS65H12XH7A986LETBIQLOYYVE1F6HMBGS60CW0RQF6SDML1IH139NDHITI9403OLOHWTR18QFBXIGIWA5UVVLBRE0ZYQEPI0PI4MBY3S9D6CS4E804RM406ZDY66ZL7UWIE4NGBVX8ITNQ83AJ93PRF45675HO5Z5QBPD1AH02Z9KUS56DKUASNZAVG2DCRN7MBIIP0SOF4VUOG7HGTP9P1KRQ8HD5C4NGBGI6A' where id=2; -update noar ti set v2='9H141GVH408C2JXFI7SYSLBZ9JS65H12XH7A986LETBIQLOYYVE1F6HMBGS60CW0RQF6SDML1IH139NDHITI9403OLOHWTR18QFBXIGIWA5UVVLBRE0ZYQEPI0PI4MBY3S9D6CS4E804RM406ZDY66ZL7UWIE4NGBVX8ITNQ83AJ93PRF45675HO5Z5QBPD1AH02Z9KUS56DKUASNZAVG2DCRN7MBIIP0SOF4VUOG7HGTP9P1KRQ8HD5C4NGBGI6A' where id=2; -update noar tt set v3='2XH2XO870O3Z97MBUK92L2QQMPCNUAJHTYFVO2Y33A7VJUMACBMPXZ6OMHMKVGBXYAHC5B2K13EYC834FCNTR9INOV0HX3A4YO131XLADU70KVVIQQ7LJV4J82TSQ91XTJ8LDH6APZDHI813OAAUMNJLNUW8626TKFSU3ZLNLMV7PAZM6397EQG89OON7VJN4LM4ACB2C695IG1NSVBYVKOTMTSR22YB29YYHKWIHQMC7CH7F81JF9E35DF1G7KPL' where id=2; -update noar ti set v3='2XH2XO870O3Z97MBUK92L2QQMPCNUAJHTYFVO2Y33A7VJUMACBMPXZ6OMHMKVGBXYAHC5B2K13EYC834FCNTR9INOV0HX3A4YO131XLADU70KVVIQQ7LJV4J82TSQ91XTJ8LDH6APZDHI813OAAUMNJLNUW8626TKFSU3ZLNLMV7PAZM6397EQG89OON7VJN4LM4ACB2C695IG1NSVBYVKOTMTSR22YB29YYHKWIHQMC7CH7F81JF9E35DF1G7KPL' where id=2; -update noar tt set v0='440DIBISFADWRW2V3COGT5VTLA5G71PWSJMN8ZTRVA11E3WNW5JHTKIXEOH56NAWZS1ZTOQ1ZV3ONKSQ639IR92AS2U1YIRHMOW5AM6GB0BNUU5JPWX3O1X7WEY3ZWE16KH4G20JLW0L4QEYXORPKD3U6T8B4DEY1WUIKKKKFZ8XYM87WKTL63E4UVIF7123Q6IEY9ASFBISM2AHTL4KGHRLO3J2NZ3YBEJNDSKGCD6ME52JMNAKHGE2ZUVTTZMGV' where id=3; -update noar ti set v0='440DIBISFADWRW2V3COGT5VTLA5G71PWSJMN8ZTRVA11E3WNW5JHTKIXEOH56NAWZS1ZTOQ1ZV3ONKSQ639IR92AS2U1YIRHMOW5AM6GB0BNUU5JPWX3O1X7WEY3ZWE16KH4G20JLW0L4QEYXORPKD3U6T8B4DEY1WUIKKKKFZ8XYM87WKTL63E4UVIF7123Q6IEY9ASFBISM2AHTL4KGHRLO3J2NZ3YBEJNDSKGCD6ME52JMNAKHGE2ZUVTTZMGV' where id=3; -update noar tt set v1='7MUG6Q7UT4GXZZVO2WG0IJ18CJI5ZXI93V88HP70410KNM6B3AJOCAEYMSRZTIU4JZJU6HIOYO13FHDWS57BR7N88M2K1ROADIR0ZKHNHFW5473RVQ3DLLHEG0B9JOEVUB8J4G0NQKZVS5XWV5JN4LOXMMMPEKYEB3FEKKLO04CPE4CW5C2A7CBDYIMYLTCM9PF8U3RLLCNAQ8M6B265LD91XNH0BRRYVKQTUCFZ4NHJGFDHBB9034L78DZFGSCY9' where id=3; -update noar ti set v1='7MUG6Q7UT4GXZZVO2WG0IJ18CJI5ZXI93V88HP70410KNM6B3AJOCAEYMSRZTIU4JZJU6HIOYO13FHDWS57BR7N88M2K1ROADIR0ZKHNHFW5473RVQ3DLLHEG0B9JOEVUB8J4G0NQKZVS5XWV5JN4LOXMMMPEKYEB3FEKKLO04CPE4CW5C2A7CBDYIMYLTCM9PF8U3RLLCNAQ8M6B265LD91XNH0BRRYVKQTUCFZ4NHJGFDHBB9034L78DZFGSCY9' where id=3; -update noar tt set v2='6I01XADNR08W7F9B89LQWI6VQR7KNH7ZGX44Z1NF2Y5A78VFLY24VMCTYSLAC9YS7TLJ56CC3MIIS01ARE9DT8JGJKD58VREHXMNRMF9YC5JNQTOR2PIHL7WTMEYJ3VH09R9DETE1UCXSK2K3ZCCXZ8D44D9XV9VIVNOHHSW10XU8QVLVY21GUJFYHYBJBTOF7PKDGTYXR6VQ0AA18BIB4NEPBW34JHWCR3C6JE0W2G5QIV7LNBN26BDCYRD7S4T9' where id=3; -update noar ti set v2='6I01XADNR08W7F9B89LQWI6VQR7KNH7ZGX44Z1NF2Y5A78VFLY24VMCTYSLAC9YS7TLJ56CC3MIIS01ARE9DT8JGJKD58VREHXMNRMF9YC5JNQTOR2PIHL7WTMEYJ3VH09R9DETE1UCXSK2K3ZCCXZ8D44D9XV9VIVNOHHSW10XU8QVLVY21GUJFYHYBJBTOF7PKDGTYXR6VQ0AA18BIB4NEPBW34JHWCR3C6JE0W2G5QIV7LNBN26BDCYRD7S4T9' where id=3; -update noar tt set v3='BMJJUN9V7HS8SWT4F2MCPZB7FE6KDUKUU43IRNU2DOJXPX58YNNHER1B4DQ41SEET9LVD4WVX9IJNWBZBDT1VKS7049QASQ15IAZ0DXFKO93XW1XWXG1GCYN1HONDSQ4PP3LIU8WAFLA9RM8TYBB8LQ0D819R5BPX11M1Y816SGSLCVZGGXZY75Z7KKOF3KFQBNJZB06CUBM4CQ8M0X9G5YEGGS682UE5G52DWW1HM19VGVQEO9DX5APMHUPUK0OK' where id=3; -update noar ti set v3='BMJJUN9V7HS8SWT4F2MCPZB7FE6KDUKUU43IRNU2DOJXPX58YNNHER1B4DQ41SEET9LVD4WVX9IJNWBZBDT1VKS7049QASQ15IAZ0DXFKO93XW1XWXG1GCYN1HONDSQ4PP3LIU8WAFLA9RM8TYBB8LQ0D819R5BPX11M1Y816SGSLCVZGGXZY75Z7KKOF3KFQBNJZB06CUBM4CQ8M0X9G5YEGGS682UE5G52DWW1HM19VGVQEO9DX5APMHUPUK0OK' where id=3; -update noar tt set v0='ZJXWEASEZMXD3BNOHGPMVXP8EH5JMP79HUEIJWCARE5F3G8ISCRHMGZWCKA971FRH2Q5NTBML46F61J8YBBEDME6X3BY3GLL6E8BLESNS700WFO2VO7R0BK5E99DMRG4BQHD4MDD4T4Z1E69TUYOZ5QXP0JHHDTUEPDD719JWX4HBHCFUIBXAYMPXA5E91GKNH5639U1QGM7LP29L0W2WAUHVH9I7O6RUL3WGVV22OV7HZK1IQKIDBOGGM8ZI8TKV' where id=4; -update noar ti set v0='ZJXWEASEZMXD3BNOHGPMVXP8EH5JMP79HUEIJWCARE5F3G8ISCRHMGZWCKA971FRH2Q5NTBML46F61J8YBBEDME6X3BY3GLL6E8BLESNS700WFO2VO7R0BK5E99DMRG4BQHD4MDD4T4Z1E69TUYOZ5QXP0JHHDTUEPDD719JWX4HBHCFUIBXAYMPXA5E91GKNH5639U1QGM7LP29L0W2WAUHVH9I7O6RUL3WGVV22OV7HZK1IQKIDBOGGM8ZI8TKV' where id=4; -update noar tt set v1='8D3PKJ4BICVJKSPJJ1ZS3MG8F17FLFGDV8BL4TJ1ZQ8DENW8A2TOJT3AGGOM2FPMP8KWLA7R8SH35DYX7BFKLV9TL7H62FV7VA49JGT8ICPH9LAO65JCSVXRJWBE09222MJRFZDIB9934SGXXT005DW1HCKK3IGPNBF83DLK0EET77YAF7WFUK98NY0THDUQ5CDJ5WE14PKKH54FXDYOR6MXL87VD8LRRLX9AEPG5Z2E06B9E88X3SMF6WIQ4FJMK' where id=4; -update noar ti set v1='8D3PKJ4BICVJKSPJJ1ZS3MG8F17FLFGDV8BL4TJ1ZQ8DENW8A2TOJT3AGGOM2FPMP8KWLA7R8SH35DYX7BFKLV9TL7H62FV7VA49JGT8ICPH9LAO65JCSVXRJWBE09222MJRFZDIB9934SGXXT005DW1HCKK3IGPNBF83DLK0EET77YAF7WFUK98NY0THDUQ5CDJ5WE14PKKH54FXDYOR6MXL87VD8LRRLX9AEPG5Z2E06B9E88X3SMF6WIQ4FJMK' where id=4; -update noar tt set v2='GJGBSMJO675H8X1HCMZZ0P1D49AMK7PZRP4U6FAWAQ1BT0US9431CB351VUNTQEJ06ZQ375341MWEDPTQJ9M6S53ZBZEG1VZ3OO8U09FYUE4KBPW5DTN1HNX3FHEX12RPA5C6QEY83FK1ZJ9FH2YZDZF23SXI2YC4128Z4PR242IJZ9G8NJB25O1YJUCSOQ0DTUL76GSF0SUQLU6KF8YU2LJDIBNS5YO4FBPJXL7GXNNZYWGWCG4QICSB4XY1J6CN' where id=4; -update noar ti set v2='GJGBSMJO675H8X1HCMZZ0P1D49AMK7PZRP4U6FAWAQ1BT0US9431CB351VUNTQEJ06ZQ375341MWEDPTQJ9M6S53ZBZEG1VZ3OO8U09FYUE4KBPW5DTN1HNX3FHEX12RPA5C6QEY83FK1ZJ9FH2YZDZF23SXI2YC4128Z4PR242IJZ9G8NJB25O1YJUCSOQ0DTUL76GSF0SUQLU6KF8YU2LJDIBNS5YO4FBPJXL7GXNNZYWGWCG4QICSB4XY1J6CN' where id=4; -update noar tt set v3='IIWFVUF80WOR7ZIJHQFWVWKSP210DGF7P9JLEXHNPPSY7K8J6GMYJXYSFBK27207QA5RTBEWE6J0F9SL1S8A5R7VM0GW6VWIRL0JPRMG56MAM3H910Y3KAUN72F7KKRONLYH2LU7PHR41MQIVE573T1TCGKEV0NNSTY67KV63T0U3EKYTLZ0CXZCOAYTB409Y5FY632FRFDDKJFSDQHF0W8X32ESCPS9MPLV65TKYP0MCVWGCRCF9WTJY6NXUK4W6' where id=4; -update noar ti set v3='IIWFVUF80WOR7ZIJHQFWVWKSP210DGF7P9JLEXHNPPSY7K8J6GMYJXYSFBK27207QA5RTBEWE6J0F9SL1S8A5R7VM0GW6VWIRL0JPRMG56MAM3H910Y3KAUN72F7KKRONLYH2LU7PHR41MQIVE573T1TCGKEV0NNSTY67KV63T0U3EKYTLZ0CXZCOAYTB409Y5FY632FRFDDKJFSDQHF0W8X32ESCPS9MPLV65TKYP0MCVWGCRCF9WTJY6NXUK4W6' where id=4; -update noar tt set v0='T3SGM9F0HHF9TGA5VIUUNYEDLWWGZ2UJDS02T2IU4MNLP81JFV0TAQPU27LF5N9YH9UYI7ISEO4RAVTJG31RTI3UU1PQP4920TJ53U8NDXURZZU6UU6M9JGGGPEAB4NDXLBBMI9LF74E8FHYVRYAKFAYIKEOPRSLNUI06TFY46CLZPLAXLJ07OT9TV9HV5SO9F5LNK9QPA6ZAK3TNBI6OBE0VSHPP14SGUJTCBKKLQUT76MQV0U95OX0MEDJ8SIOG' where id=5; -update noar ti set v0='T3SGM9F0HHF9TGA5VIUUNYEDLWWGZ2UJDS02T2IU4MNLP81JFV0TAQPU27LF5N9YH9UYI7ISEO4RAVTJG31RTI3UU1PQP4920TJ53U8NDXURZZU6UU6M9JGGGPEAB4NDXLBBMI9LF74E8FHYVRYAKFAYIKEOPRSLNUI06TFY46CLZPLAXLJ07OT9TV9HV5SO9F5LNK9QPA6ZAK3TNBI6OBE0VSHPP14SGUJTCBKKLQUT76MQV0U95OX0MEDJ8SIOG' where id=5; -update noar tt set v1='77BFM7WKREFSTQ19XJ8RYLNTVFNAXE4DBHMNJ1W9LKXU9GYDDJOFTAXI8JBFOGCV5XIDY544C85K87Q04JR8X84J7N6NW8X4V4HA7MKDVBAGHFYPPY529I92ZLZAIRUYB7R37SUAZQSKPFZEGNWH5KCTJIY003MGLZST7FVF0O8M20YBA15AHI3VQV34KH17DI2T1ILUH41ZNUFMBTBIFAN7ZKQRBTTCW99XTLFWO8DFTVIIIDH49HTTMQ3QRX9Z1' where id=5; -update noar ti set v1='77BFM7WKREFSTQ19XJ8RYLNTVFNAXE4DBHMNJ1W9LKXU9GYDDJOFTAXI8JBFOGCV5XIDY544C85K87Q04JR8X84J7N6NW8X4V4HA7MKDVBAGHFYPPY529I92ZLZAIRUYB7R37SUAZQSKPFZEGNWH5KCTJIY003MGLZST7FVF0O8M20YBA15AHI3VQV34KH17DI2T1ILUH41ZNUFMBTBIFAN7ZKQRBTTCW99XTLFWO8DFTVIIIDH49HTTMQ3QRX9Z1' where id=5; -update noar tt set v2='9E4SU4R7VEHMPWNC6JEG4LHP4RC918X3O0IAX76AKV2RDLQ28TS71CUD2AYWUP2MGXQN44DFVDQ9DKQX87BM01LPZALOO6U3ZO5DU0L14CJO3CD5OGYUDIP2JR88VOEWDEKZ9PQYP8ADQ0KVCKT9XIO3N7O7VAXTOR9QQW5D5JTKI6P0VYIWKU8KP41ZUM7OD0JCAQSU7LIA8DPWKOYOT3VC3X90ZV1Q1Y6XQ5TDRG4DP86P1XHM5QA3R73ZRFSMU' where id=5; -update noar ti set v2='9E4SU4R7VEHMPWNC6JEG4LHP4RC918X3O0IAX76AKV2RDLQ28TS71CUD2AYWUP2MGXQN44DFVDQ9DKQX87BM01LPZALOO6U3ZO5DU0L14CJO3CD5OGYUDIP2JR88VOEWDEKZ9PQYP8ADQ0KVCKT9XIO3N7O7VAXTOR9QQW5D5JTKI6P0VYIWKU8KP41ZUM7OD0JCAQSU7LIA8DPWKOYOT3VC3X90ZV1Q1Y6XQ5TDRG4DP86P1XHM5QA3R73ZRFSMU' where id=5; -update noar tt set v3='459LKZ51NEUVZ5TRZ8KD6RG9Y9EEAXUD8ZEJWXLYZQOWYQTY6KMOGQTN9FWIRM5TE3TOD63JJLZ7KIHQHO1ECT1HEY80KJZJLBR4XGL0OPHGEBZ5FFLQZ60E7PRFEFGLKJIN9HSLFYMQPD1MWBTXU8CS9BGUWT31DUZ5X7KCFZBT9VUGAYCTK6JWNP2E0WXWCY8UTO7LB9GT4D23ZT93XPWS3W9TQ8Y4JK8AIEECC349B56EAG2N8T2KWC4FOK5GB' where id=5; -update noar ti set v3='459LKZ51NEUVZ5TRZ8KD6RG9Y9EEAXUD8ZEJWXLYZQOWYQTY6KMOGQTN9FWIRM5TE3TOD63JJLZ7KIHQHO1ECT1HEY80KJZJLBR4XGL0OPHGEBZ5FFLQZ60E7PRFEFGLKJIN9HSLFYMQPD1MWBTXU8CS9BGUWT31DUZ5X7KCFZBT9VUGAYCTK6JWNP2E0WXWCY8UTO7LB9GT4D23ZT93XPWS3W9TQ8Y4JK8AIEECC349B56EAG2N8T2KWC4FOK5GB' where id=5; -update noar tt set v0='VM9LCXGPDS2BXF0QDUEYK8BDI0WCXBNJLN8HS15SY426N1DEMFTVI69I1IH4M7432ZWFR86PPXSFJOBONWCSG203EMC2OJHVJBY3XFHDY85MOIMZR7V3TMW1ZJMTKGWZ1NSK02A8BOZ7QGMTUABV1HTLM2THK3NMWHFMQLRZ6AGBAU511E5FAO5QXU960CPV6G2N5SNS6ATFTJCH1ZWQJ7S4JBJH8L8NBI80J1EUO4GKW4SAT5D3G5B470ED63GN7' where id=6; -update noar ti set v0='VM9LCXGPDS2BXF0QDUEYK8BDI0WCXBNJLN8HS15SY426N1DEMFTVI69I1IH4M7432ZWFR86PPXSFJOBONWCSG203EMC2OJHVJBY3XFHDY85MOIMZR7V3TMW1ZJMTKGWZ1NSK02A8BOZ7QGMTUABV1HTLM2THK3NMWHFMQLRZ6AGBAU511E5FAO5QXU960CPV6G2N5SNS6ATFTJCH1ZWQJ7S4JBJH8L8NBI80J1EUO4GKW4SAT5D3G5B470ED63GN7' where id=6; -update noar tt set v1='Q9K414ODT08291LVJP5NMUHGZKLTV6DY1WV5S9G89LNR9LB773ENYADVZQNFNFDI3S0PBPLZ3LQFDVWWL3DNB1XUEAYJYKW06VAAL12XF64MCGIFUITME3JCKMY1QUQ1GYXCUCK7NLQWD94CPB74F302O1YK5YZWNUT5ROU8ON6WIEN1AW5MQNYB91BODVM1AKP1TWWV75NXDLT0QNX38HEVYBYQOJL4PYO6SRCQXTWEEMB17A2OP6NXCU36F1CX5' where id=6; -update noar ti set v1='Q9K414ODT08291LVJP5NMUHGZKLTV6DY1WV5S9G89LNR9LB773ENYADVZQNFNFDI3S0PBPLZ3LQFDVWWL3DNB1XUEAYJYKW06VAAL12XF64MCGIFUITME3JCKMY1QUQ1GYXCUCK7NLQWD94CPB74F302O1YK5YZWNUT5ROU8ON6WIEN1AW5MQNYB91BODVM1AKP1TWWV75NXDLT0QNX38HEVYBYQOJL4PYO6SRCQXTWEEMB17A2OP6NXCU36F1CX5' where id=6; -update noar tt set v2='GB9HHFJVTQO39O8O42N7OV3AHZYTV3D9PDJDYFN0EY09B2VKIH9IWIS60X6AWAXM1B4QX9XF9HJ1MA9HB50GR9LSPOAHSMQ1PZV8KHX9N89A4RVCAO0YL42RN9AR7COJ7NY6FZG1XHEMBD0R7UEGJ0O3CZBO3NUBGMB2U8OY0017U6QIJCG8VNTLWN1ZZ4YQLPLU7VRUAIU7W0K55B8JQFODM7M3IGQBE8EUS9MEG8KHY4Z5SFY4GNQO5QGAYGX19' where id=6; -update noar ti set v2='GB9HHFJVTQO39O8O42N7OV3AHZYTV3D9PDJDYFN0EY09B2VKIH9IWIS60X6AWAXM1B4QX9XF9HJ1MA9HB50GR9LSPOAHSMQ1PZV8KHX9N89A4RVCAO0YL42RN9AR7COJ7NY6FZG1XHEMBD0R7UEGJ0O3CZBO3NUBGMB2U8OY0017U6QIJCG8VNTLWN1ZZ4YQLPLU7VRUAIU7W0K55B8JQFODM7M3IGQBE8EUS9MEG8KHY4Z5SFY4GNQO5QGAYGX19' where id=6; -update noar tt set v3='517YPKKKPZGE939Z5V3BUTHZUJQ5UXWTGT1MFCL54F9IGLHJP5DHZEC1V02QCRZWAWUPDWMTTT2CLV9SD944YFJT8GRLQI7FRY9MW76YV4DRO5CBVZ3ZM9GSRJAWO7759XLO21WUHVB7O3FAJ70E713HDVA092GL09TCS40T4VISH2BXQ10UTI1YEFRZOKEYXRC23GXHMC4J9LTT5YIW5I2M5ELZIMZFHKERIUVJ2BZT821XR4MX8HQ5VULVVHFQ5' where id=6; -update noar ti set v3='517YPKKKPZGE939Z5V3BUTHZUJQ5UXWTGT1MFCL54F9IGLHJP5DHZEC1V02QCRZWAWUPDWMTTT2CLV9SD944YFJT8GRLQI7FRY9MW76YV4DRO5CBVZ3ZM9GSRJAWO7759XLO21WUHVB7O3FAJ70E713HDVA092GL09TCS40T4VISH2BXQ10UTI1YEFRZOKEYXRC23GXHMC4J9LTT5YIW5I2M5ELZIMZFHKERIUVJ2BZT821XR4MX8HQ5VULVVHFQ5' where id=6; -update noar tt set v0='RTJEPXOK0PKPC8SZN4H4LSBRITZ8M1820RZYUUJCAKFFZND9P7JWY5H7WGHB4P25IBXAB2ATQFLFOE7FJD4ZESEZ3IGWHUPZ35GQ28HEQGH7TZ2FV8FYEGG11ST45TBSTCNUNK38Q0LB5VA1KNSOG9JOURGD5GF7HMYDL0YJVU0TOXR9WLK1PFDI1NQGJY0A30IK0AQ4XL8QWPFQ0KVEQYO8IZF9XDKQVJSLV8Q834GHERRE3MPFUSQ6MBIBPEL1L' where id=7; -update noar ti set v0='RTJEPXOK0PKPC8SZN4H4LSBRITZ8M1820RZYUUJCAKFFZND9P7JWY5H7WGHB4P25IBXAB2ATQFLFOE7FJD4ZESEZ3IGWHUPZ35GQ28HEQGH7TZ2FV8FYEGG11ST45TBSTCNUNK38Q0LB5VA1KNSOG9JOURGD5GF7HMYDL0YJVU0TOXR9WLK1PFDI1NQGJY0A30IK0AQ4XL8QWPFQ0KVEQYO8IZF9XDKQVJSLV8Q834GHERRE3MPFUSQ6MBIBPEL1L' where id=7; -update noar tt set v1='BR3N3TYGCY425OB42XAIYPDWDZBOOYQ4HVOKX26OXG947F69MUTW6NXT9XRLSRDMNQQV682RZI6XR8OEO2POL1GM2K35DMR9L6K6YOX7L42AL7Z5DJMXGQ5B2XQGTZ6A7DNP06CCCSMMJ8R20QGW6JGNNI4VN1F7PQY6JR8E3BW82VZVTEN2QYJJRS73AZ9QA8Q5E7G31C3BGDU43FTBLDJ9GRXBF2LLNIYUR2JTPDBLE4R64N2HKYALOBZ1OEPCU' where id=7; -update noar ti set v1='BR3N3TYGCY425OB42XAIYPDWDZBOOYQ4HVOKX26OXG947F69MUTW6NXT9XRLSRDMNQQV682RZI6XR8OEO2POL1GM2K35DMR9L6K6YOX7L42AL7Z5DJMXGQ5B2XQGTZ6A7DNP06CCCSMMJ8R20QGW6JGNNI4VN1F7PQY6JR8E3BW82VZVTEN2QYJJRS73AZ9QA8Q5E7G31C3BGDU43FTBLDJ9GRXBF2LLNIYUR2JTPDBLE4R64N2HKYALOBZ1OEPCU' where id=7; -update noar tt set v2='SL3JXYSP33BACQD2I94HOF5DW1Y577QLKIY8X83KX09SRGFLYAY35766V1C5ZADM99XQQ5B351ZIJFZI3NVIJ1EUG4N55ZIP15RMD4NYX7L5VHDTO5Y8RMRLTXMOCYSDJJ30SRHSCPEGATIRZ4XSAU4II83MZG75025IWG77UPEAK6FTUPWBNCCXMU1U80V9XQI302IIUI7RBFC4YIQSKHQWMAM97HWV69EZJ5TS6GUC3T4A9HOYUHFNV6BBF8CGR' where id=7; -update noar ti set v2='SL3JXYSP33BACQD2I94HOF5DW1Y577QLKIY8X83KX09SRGFLYAY35766V1C5ZADM99XQQ5B351ZIJFZI3NVIJ1EUG4N55ZIP15RMD4NYX7L5VHDTO5Y8RMRLTXMOCYSDJJ30SRHSCPEGATIRZ4XSAU4II83MZG75025IWG77UPEAK6FTUPWBNCCXMU1U80V9XQI302IIUI7RBFC4YIQSKHQWMAM97HWV69EZJ5TS6GUC3T4A9HOYUHFNV6BBF8CGR' where id=7; -update noar tt set v3='SG2TTFA79JQTR676JWQ5D053X40K5MQBYAU0DODYXPA507R3WVBBVCEP9KN6HNB8VH972VICRBVVX3MA679LJT9QVB3ZBF0ZT6OFB8JCPLXX9LNOUY1A4OCNPUONMLLU5X3LVQEEWQ1VWQBKETR6J7P3C0C5QCCGUST8JADO3JBSY3ES1K4AWSCTK0GRJ28B9JQZ38WNBZ0QEOHUNPR27KN88XIJWEWVK4E3YXF0OYYC653ZWQCR6LC04868OY6XF' where id=7; -update noar ti set v3='SG2TTFA79JQTR676JWQ5D053X40K5MQBYAU0DODYXPA507R3WVBBVCEP9KN6HNB8VH972VICRBVVX3MA679LJT9QVB3ZBF0ZT6OFB8JCPLXX9LNOUY1A4OCNPUONMLLU5X3LVQEEWQ1VWQBKETR6J7P3C0C5QCCGUST8JADO3JBSY3ES1K4AWSCTK0GRJ28B9JQZ38WNBZ0QEOHUNPR27KN88XIJWEWVK4E3YXF0OYYC653ZWQCR6LC04868OY6XF' where id=7; -update noar tt set v0='6Z8109SOVJDDUWRTZ7W3TNXVNSFYZLEPYEGCRYCZPABBYGR3QAFVCXLXG9PJX9VPTFXCUHBYO0XEFYKQW07ZZMPOGLV740QAWB7Z9BURCAJVDSW6AWQBV8XL3AE1KW8YVUWY1FTOAGLIAUO7UWK41IYVTF1YP2EK9H7P19I0HNDBAA6WHXI9PB23JKKJTCJQ2FP8AO8DS427PQQ5COEIO113NQ7JQEY3GOZWG1TE2G9LDLJ3W7072PEH0ALVFPQBW' where id=8; -update noar ti set v0='6Z8109SOVJDDUWRTZ7W3TNXVNSFYZLEPYEGCRYCZPABBYGR3QAFVCXLXG9PJX9VPTFXCUHBYO0XEFYKQW07ZZMPOGLV740QAWB7Z9BURCAJVDSW6AWQBV8XL3AE1KW8YVUWY1FTOAGLIAUO7UWK41IYVTF1YP2EK9H7P19I0HNDBAA6WHXI9PB23JKKJTCJQ2FP8AO8DS427PQQ5COEIO113NQ7JQEY3GOZWG1TE2G9LDLJ3W7072PEH0ALVFPQBW' where id=8; -update noar tt set v1='3M8DXQC5UXZHYCMLFSPSUP4U1VW4DTD8MM16PZKCWQIA4MDD1DU0LS4YRXZ04BE4AOLPN6JKZF52AWFHQYG688JLYBR1XT3HFDBIS4I9XLONXAM9489FEWEIA4O23Q0UY82WVXX56AUZ9S0N3ERAF92OFH6BAM7YAOJTD348XKTBD52AIRKD56QYD8RH39JT1CNB0A1Y3CIAFLJ0HB6QLNXBZHO1GFQR98O0HOYOKGC1NY3SEHVAWGPCYN5ZZHJWL' where id=8; -update noar ti set v1='3M8DXQC5UXZHYCMLFSPSUP4U1VW4DTD8MM16PZKCWQIA4MDD1DU0LS4YRXZ04BE4AOLPN6JKZF52AWFHQYG688JLYBR1XT3HFDBIS4I9XLONXAM9489FEWEIA4O23Q0UY82WVXX56AUZ9S0N3ERAF92OFH6BAM7YAOJTD348XKTBD52AIRKD56QYD8RH39JT1CNB0A1Y3CIAFLJ0HB6QLNXBZHO1GFQR98O0HOYOKGC1NY3SEHVAWGPCYN5ZZHJWL' where id=8; -update noar tt set v2='0RC1AZUH5QVDDQWSM0RE9XJIGVJN1ZFUP1O9NTRMHRPUZDMULV3C4ZXSKBZ73TC5F7487QXZ8ZV81QDZPQ3DEZBHRII0T6YFJXG54HV6OITHFEYATG8D27CYVJY58JRHK2CM7EHF45CWAG5GL7IXQD76VSLO9YEPRJWQGFK3YUSIY1J4Z4TD8HEN1C5CFT5ETJ4MP6N8UAQ3MQGXZO71WSR0Y26W1CARA0C095OKKG0ECXK6DMFKOO8EVZPECY92E' where id=8; -update noar ti set v2='0RC1AZUH5QVDDQWSM0RE9XJIGVJN1ZFUP1O9NTRMHRPUZDMULV3C4ZXSKBZ73TC5F7487QXZ8ZV81QDZPQ3DEZBHRII0T6YFJXG54HV6OITHFEYATG8D27CYVJY58JRHK2CM7EHF45CWAG5GL7IXQD76VSLO9YEPRJWQGFK3YUSIY1J4Z4TD8HEN1C5CFT5ETJ4MP6N8UAQ3MQGXZO71WSR0Y26W1CARA0C095OKKG0ECXK6DMFKOO8EVZPECY92E' where id=8; -update noar tt set v3='8E0W95X2JLN1TQHNSVEGV7XG2N0Y4Q13JWWK83BZ7SX41O9VJQ5BFNFCGTRMB4AOQSSKA2GZQOQVNP4X6TPIC3CIGCF8X1O3RUTZ0OF8BQ64CSPT8ORMNGF2XYXCE2PODKJUB2URX76HZS2LVFGWNSBFVVCZEN2OFJ06A11UJ1BMR19FIFA6UOZ29KU3Z0GA5U2VSMPUP47KSB08908R4WH1N2Y4ZHOM04DZ106VUVXV1GQ0IZ62BFGRY29KXQ3RI' where id=8; -update noar ti set v3='8E0W95X2JLN1TQHNSVEGV7XG2N0Y4Q13JWWK83BZ7SX41O9VJQ5BFNFCGTRMB4AOQSSKA2GZQOQVNP4X6TPIC3CIGCF8X1O3RUTZ0OF8BQ64CSPT8ORMNGF2XYXCE2PODKJUB2URX76HZS2LVFGWNSBFVVCZEN2OFJ06A11UJ1BMR19FIFA6UOZ29KU3Z0GA5U2VSMPUP47KSB08908R4WH1N2Y4ZHOM04DZ106VUVXV1GQ0IZ62BFGRY29KXQ3RI' where id=8; -update noar tt set v0='LKX57SWVK5IE30N7BHD3C80L769S62BXRK1A5NAOC7TU3J1E8XDZT6T4UE4AJOGJMNMS9DNC8EAT65NZ135608MBF3ZJZZJWWQSXDFV8HKN71PHPT8U6I2YX352X40JUH5XQVRNB5AYXP9K93RKC3EM2U4HP2P11QDR1AJLNWN3KHR84ASL3QOZZQP58EGZQIUQYHAXI8S9H7BDCWGN9ACC6BS7RSQZ2CCA021GAD280WJOFL4J9VPDWM59OHK2I7' where id=9; -update noar ti set v0='LKX57SWVK5IE30N7BHD3C80L769S62BXRK1A5NAOC7TU3J1E8XDZT6T4UE4AJOGJMNMS9DNC8EAT65NZ135608MBF3ZJZZJWWQSXDFV8HKN71PHPT8U6I2YX352X40JUH5XQVRNB5AYXP9K93RKC3EM2U4HP2P11QDR1AJLNWN3KHR84ASL3QOZZQP58EGZQIUQYHAXI8S9H7BDCWGN9ACC6BS7RSQZ2CCA021GAD280WJOFL4J9VPDWM59OHK2I7' where id=9; -update noar tt set v1='LAB2DLVFDCPF3S5FTZ536C082X007E9VK0IQF2FZGKYDB8Y7UD15XNBC0XHP68GN9K8DIQ63G6RWN6YQZFXPVMAHM2J9MIGJU3N7QIR17G6IKXKU7WSMFDIF0LBUM8SH3DKSXEMZ5R7UKYF762H3JZ8STOU934Z4WLBL9XIH3W7CDQC0R6SFW7HPBBA9237BDCDTXVFPBTY4SM9EIAPXAJYIYSIJ2NC0N7JCHG5I1OC6OP7KHTE3A39SHSWYBFHCE' where id=9; -update noar ti set v1='LAB2DLVFDCPF3S5FTZ536C082X007E9VK0IQF2FZGKYDB8Y7UD15XNBC0XHP68GN9K8DIQ63G6RWN6YQZFXPVMAHM2J9MIGJU3N7QIR17G6IKXKU7WSMFDIF0LBUM8SH3DKSXEMZ5R7UKYF762H3JZ8STOU934Z4WLBL9XIH3W7CDQC0R6SFW7HPBBA9237BDCDTXVFPBTY4SM9EIAPXAJYIYSIJ2NC0N7JCHG5I1OC6OP7KHTE3A39SHSWYBFHCE' where id=9; -update noar tt set v2='UPA3863V3G3BFATC0PGP4KNKMO034WQYLSMXSCABQBJISNSBXS0GY5U97PY6EZVI0RI5RTXH4FTTPLD3M3TQJP6INVTOCIGQS9R82PY8DR7KJLZOL15DFW4WWPSV6FF53OF9J06MNQO8HJUKC9R1BTG3CDXX8MFLDIUH9J7CK8E8VA3IPAQQPJZX5IJMOUVUU2397YP0T69HHWU6FS50UCP2B7XIYP1B63VX91B3M3430WSTO2186KX8TY2VQMPUQ' where id=9; -update noar ti set v2='UPA3863V3G3BFATC0PGP4KNKMO034WQYLSMXSCABQBJISNSBXS0GY5U97PY6EZVI0RI5RTXH4FTTPLD3M3TQJP6INVTOCIGQS9R82PY8DR7KJLZOL15DFW4WWPSV6FF53OF9J06MNQO8HJUKC9R1BTG3CDXX8MFLDIUH9J7CK8E8VA3IPAQQPJZX5IJMOUVUU2397YP0T69HHWU6FS50UCP2B7XIYP1B63VX91B3M3430WSTO2186KX8TY2VQMPUQ' where id=9; -update noar tt set v3='CGWF4UHGUSJ0V0R4BM4OXCUN3WIYF1XBQV0R81BXU94JHJWAY1H9LN8YR47MI56X9UNSW6OXIAYT827OYPKMFBWAQN3DYOWEZY8WOEXRDQQD7ZV5D9LV98QXD5RW6LH0B8QAXZBPLHC3SV779Z2TCXQZNZHVQ3MVIBHJ2KWGN76SO16DPNAXIV6DMRWF167GSU3A8DCW6HGAJG4EIGE408HLFZB0Z4X9WGJC1OZDNPVC9QSY9QBF7Z2H2KGLT8DHA' where id=9; -update noar ti set v3='CGWF4UHGUSJ0V0R4BM4OXCUN3WIYF1XBQV0R81BXU94JHJWAY1H9LN8YR47MI56X9UNSW6OXIAYT827OYPKMFBWAQN3DYOWEZY8WOEXRDQQD7ZV5D9LV98QXD5RW6LH0B8QAXZBPLHC3SV779Z2TCXQZNZHVQ3MVIBHJ2KWGN76SO16DPNAXIV6DMRWF167GSU3A8DCW6HGAJG4EIGE408HLFZB0Z4X9WGJC1OZDNPVC9QSY9QBF7Z2H2KGLT8DHA' where id=9; -update noar tt set v0='5MWI8L5Q1UCHJND2A5E13OJHQAOWZRQLPKJTH9NBBF5KB5SFUST56UJ0MURFTN79NBLW2E9ESMSO9HAQAQJSQ8KJRMD4O1U9BGE3Q7WQEH3Q8V6QM5TFW6CYOLJ8F6LW9Z141PU74K2SWCBLJF9FR61BM3K7IIVAX0KAIW7HIFCV1Y2R8NJ7JTGOF4K17CCXW90RW4REW7XSOMLTI07FAR7JJVVY08GWLKYCQVETAV9CBWFTB2VQJYXPF11S6HETK' where id=10; -update noar ti set v0='5MWI8L5Q1UCHJND2A5E13OJHQAOWZRQLPKJTH9NBBF5KB5SFUST56UJ0MURFTN79NBLW2E9ESMSO9HAQAQJSQ8KJRMD4O1U9BGE3Q7WQEH3Q8V6QM5TFW6CYOLJ8F6LW9Z141PU74K2SWCBLJF9FR61BM3K7IIVAX0KAIW7HIFCV1Y2R8NJ7JTGOF4K17CCXW90RW4REW7XSOMLTI07FAR7JJVVY08GWLKYCQVETAV9CBWFTB2VQJYXPF11S6HETK' where id=10; -update noar tt set v1='C49KN2OLITD139WCYM0ECVCJ6D01Z16HETLLLJGT4AZEN97OQ3R4C65VP4WSE8FYVIUZG5DBXLG9EHTDC97Y67BTB34YORGZSSV1GK315TXREO5X9PJHV7MOEFX6LQP17A41QKZNMQ280SODLE2R2EN59F06L4D9UV3G10SB62QGUIF19UWT0XY2XPAPPMIQ66I7WCM4LWO2Z0NGZ29QPFHRPJZBCLUIYB47EBBAUPPRPBXNTFBBXFSC1FPAAXSY5' where id=10; -update noar ti set v1='C49KN2OLITD139WCYM0ECVCJ6D01Z16HETLLLJGT4AZEN97OQ3R4C65VP4WSE8FYVIUZG5DBXLG9EHTDC97Y67BTB34YORGZSSV1GK315TXREO5X9PJHV7MOEFX6LQP17A41QKZNMQ280SODLE2R2EN59F06L4D9UV3G10SB62QGUIF19UWT0XY2XPAPPMIQ66I7WCM4LWO2Z0NGZ29QPFHRPJZBCLUIYB47EBBAUPPRPBXNTFBBXFSC1FPAAXSY5' where id=10; -update noar tt set v2='H7L0LK8JRYQIVVJQA8FNK1K8LJ6BE17323OUEU5SD1RZ3JW2N7EKGJ5MNM1HA2E4PCSLX3J5KNK8056UCC5I38HIY8L57ST22BYNW53YMST40VNKOIDW4QG3A54J25FBZHS55EQTXYLA31M31TCS84SP314ZOR67NA0P5DBJ6ULTTHZP41XRYX20C78IVNLLJ1HJA2WU3YMXSL0OTZNLN6X4XDQNUW1D5JT5AW7SRLKV446RCR3YU92PXX58Y75CW' where id=10; -update noar ti set v2='H7L0LK8JRYQIVVJQA8FNK1K8LJ6BE17323OUEU5SD1RZ3JW2N7EKGJ5MNM1HA2E4PCSLX3J5KNK8056UCC5I38HIY8L57ST22BYNW53YMST40VNKOIDW4QG3A54J25FBZHS55EQTXYLA31M31TCS84SP314ZOR67NA0P5DBJ6ULTTHZP41XRYX20C78IVNLLJ1HJA2WU3YMXSL0OTZNLN6X4XDQNUW1D5JT5AW7SRLKV446RCR3YU92PXX58Y75CW' where id=10; -update noar tt set v3='R96YM73YM4R0B1UNOEJNCB8YGAITGGYL0TLWYLS31LHF19XUDQBNLVZEJM0PEHP4BEOGF0FX2AI83UDPVY59WIJGMFC9G74FFJA3HV92TBCEB00V768UMIEB4C0ZR4U7M0JONP5NTVC2VSZSBMEFF6KTNUE05RCE20AR4IQX4WY1UOREP6F6IT07PQVYHNF3W6AGUANQOZI90QNC2ZSHAIR6UHZGOML3BB9SYQ0UTNMPOJ7T0NXED620VNC0RQ3MR' where id=10; -update noar ti set v3='R96YM73YM4R0B1UNOEJNCB8YGAITGGYL0TLWYLS31LHF19XUDQBNLVZEJM0PEHP4BEOGF0FX2AI83UDPVY59WIJGMFC9G74FFJA3HV92TBCEB00V768UMIEB4C0ZR4U7M0JONP5NTVC2VSZSBMEFF6KTNUE05RCE20AR4IQX4WY1UOREP6F6IT07PQVYHNF3W6AGUANQOZI90QNC2ZSHAIR6UHZGOML3BB9SYQ0UTNMPOJ7T0NXED620VNC0RQ3MR' where id=10; -update noar tt set v0='04OSZWABN8XYY4HEHYQJRM7M2XPBD8UTK1LGYIMPLC18WQU8QR3A1HJB2L9P8RA6ZLG3U56XC5VV71CT29KDCW0FUOZC3XGA7RGJZTGPZFD8E1JFVLND694GI6NNH3D36UXLE5F296PXRCC7NH7PUJS5ZQI1ZYC3TAH71S5LGJZPJTIZPPU6OOEZSVOZ26P6F6KG380CLRWV81TYQKPQL4TE3EST8X8Q5AFNAQ6HBJJ9XFAK8642TYUZQLGEK7P0G' where id=11; -update noar ti set v0='04OSZWABN8XYY4HEHYQJRM7M2XPBD8UTK1LGYIMPLC18WQU8QR3A1HJB2L9P8RA6ZLG3U56XC5VV71CT29KDCW0FUOZC3XGA7RGJZTGPZFD8E1JFVLND694GI6NNH3D36UXLE5F296PXRCC7NH7PUJS5ZQI1ZYC3TAH71S5LGJZPJTIZPPU6OOEZSVOZ26P6F6KG380CLRWV81TYQKPQL4TE3EST8X8Q5AFNAQ6HBJJ9XFAK8642TYUZQLGEK7P0G' where id=11; -update noar tt set v1='8E2N7HIEARWE7A2FUX14OL351UO3J88GLZYU3RDC5FBBY37FRBXFPIZQ9EQHNT753I4IJ3W648RGXG3STBZPUJ7TETT8QHKC7M3Z4FTNX5PEOT8OJH41IK7YZA4IK2UOK1B34RVC21JPSFFGRA5MZZ053O2T7IXW99Z49TMGJP22C6W42CT3UWY7X1HC9CWGR3NFB6K54SIPIAA6RGBQ0NR488KL85XUW0B7E1UMT12RC4WAVDMZAAJB3HIESDVX9' where id=11; -update noar ti set v1='8E2N7HIEARWE7A2FUX14OL351UO3J88GLZYU3RDC5FBBY37FRBXFPIZQ9EQHNT753I4IJ3W648RGXG3STBZPUJ7TETT8QHKC7M3Z4FTNX5PEOT8OJH41IK7YZA4IK2UOK1B34RVC21JPSFFGRA5MZZ053O2T7IXW99Z49TMGJP22C6W42CT3UWY7X1HC9CWGR3NFB6K54SIPIAA6RGBQ0NR488KL85XUW0B7E1UMT12RC4WAVDMZAAJB3HIESDVX9' where id=11; -update noar tt set v2='ZTDXW5EMDB874E1R5QJZ1VRX7C5YV4568RUA65LQDVT8PPHOVQFI25HA2LY6TXZS84SACW20K1RYKZQ59MM05ICVXNV4TVN7LP9P6CI5O1T6G7U9F8F1VRSBU65WZFF0YOLSJ3Q3KVZ7WVMAF5SZT6BKC8WNTITLWKPJP3SJL1UBAAPZ27S8BHHEJX202E1NPYRCP8VPJEK8AE238OPHRT2P8RDH0FZLOHW17WAB2GQQVL4FR4RM33IUXVUEE3HL0' where id=11; -update noar ti set v2='ZTDXW5EMDB874E1R5QJZ1VRX7C5YV4568RUA65LQDVT8PPHOVQFI25HA2LY6TXZS84SACW20K1RYKZQ59MM05ICVXNV4TVN7LP9P6CI5O1T6G7U9F8F1VRSBU65WZFF0YOLSJ3Q3KVZ7WVMAF5SZT6BKC8WNTITLWKPJP3SJL1UBAAPZ27S8BHHEJX202E1NPYRCP8VPJEK8AE238OPHRT2P8RDH0FZLOHW17WAB2GQQVL4FR4RM33IUXVUEE3HL0' where id=11; -update noar tt set v3='AB9PDSQ9YG0LBM3R95BLRP238RC8GSOJ4KMOIUZP6JD30SVS5ZYE2G4NX2KBW3IZ3DBL6E8NHY2RSSODMLWQFUTP9AYRTKSH44MQJ1BJSJ68ROS3X95WCJHZMVQW8LLGSA76XMD44TKKYPVUL7UVNHZPFTNQ3ILPYEAX8FI8X1FMKKQTOYBYUXG4JPL0G41VYW9VHUOVSK4YQ7E7L0J6R09JRHEPQQFP114Z4BAHRCU31LTTODWKN0R6SJOJK4BCJ' where id=11; -update noar ti set v3='AB9PDSQ9YG0LBM3R95BLRP238RC8GSOJ4KMOIUZP6JD30SVS5ZYE2G4NX2KBW3IZ3DBL6E8NHY2RSSODMLWQFUTP9AYRTKSH44MQJ1BJSJ68ROS3X95WCJHZMVQW8LLGSA76XMD44TKKYPVUL7UVNHZPFTNQ3ILPYEAX8FI8X1FMKKQTOYBYUXG4JPL0G41VYW9VHUOVSK4YQ7E7L0J6R09JRHEPQQFP114Z4BAHRCU31LTTODWKN0R6SJOJK4BCJ' where id=11; -update noar tt set v0='V5LXYKY6V5LZ1ZEYN00JYGI9Z5VSX0NX2QG85LKPGTK4H8IX7WJ3616O693JUUP82F9XJAVOJ9IH3YK5YT3WFQ5X3D4RM0IAX3M30KZY3G23Q9A4XC74ZOYH5TD18293O5HY2EJH7S9XCVB1GKC1P1MD9Y11V0WSEA15LI6XXNSCC9KQFQ1RS7S0HNCMJL64OQ2T1KVEFVR3E2AQOUB5SWX023MY6TY2DDDPUL28NEA3N0G1ZEV7135NAG7D5OK5G' where id=12; -update noar ti set v0='V5LXYKY6V5LZ1ZEYN00JYGI9Z5VSX0NX2QG85LKPGTK4H8IX7WJ3616O693JUUP82F9XJAVOJ9IH3YK5YT3WFQ5X3D4RM0IAX3M30KZY3G23Q9A4XC74ZOYH5TD18293O5HY2EJH7S9XCVB1GKC1P1MD9Y11V0WSEA15LI6XXNSCC9KQFQ1RS7S0HNCMJL64OQ2T1KVEFVR3E2AQOUB5SWX023MY6TY2DDDPUL28NEA3N0G1ZEV7135NAG7D5OK5G' where id=12; -update noar tt set v1='ZFN6OAEU26G707F962O4QHOZPX6W0D0QWRPRAJOFX8XPMRN9Y0TP1G34WAZYA45M3EZ78WCA84SCYS1261QZ4ZS3ULL36AS0VXJDWNJWFX3S05B3AEMANUWFEVJNVIAGB6PE6893N55ZX6QDPWPL364CAR21DXICCEXUTTPALNVO2ZRY6TRQUH6PTRBNO72MLWJ9YCAQPQNUAVCOYNQ66YQYD0I5FK01H50G1WDN8VH2JG0FRESSN5PLOF9PQD5QR' where id=12; -update noar ti set v1='ZFN6OAEU26G707F962O4QHOZPX6W0D0QWRPRAJOFX8XPMRN9Y0TP1G34WAZYA45M3EZ78WCA84SCYS1261QZ4ZS3ULL36AS0VXJDWNJWFX3S05B3AEMANUWFEVJNVIAGB6PE6893N55ZX6QDPWPL364CAR21DXICCEXUTTPALNVO2ZRY6TRQUH6PTRBNO72MLWJ9YCAQPQNUAVCOYNQ66YQYD0I5FK01H50G1WDN8VH2JG0FRESSN5PLOF9PQD5QR' where id=12; -update noar tt set v2='VQX0Z8GIYB6PDTQQ3QWOJ3UEYKJR19SD53FCIJPVJ5PG2PZCA15JF90K3CCXX2WJ5YAH2SBJ6V7RWZMWR34NGNM57OUBQ31M9XYWD7AMVTE2YMLH45V64A7EIL22LRMFNBH23OFGMMG72U8RUZUUY7VL48MWH9KQ8XBJJCL4GLA9P7BI6Z3FD5VEYN6NLZBAD38E2UKNFYZWF0C7ZHTQYMSZZI5ZKBCU1UZCD8G0BUZCUVMVTTSSZD8APYS1S2JQS' where id=12; -update noar ti set v2='VQX0Z8GIYB6PDTQQ3QWOJ3UEYKJR19SD53FCIJPVJ5PG2PZCA15JF90K3CCXX2WJ5YAH2SBJ6V7RWZMWR34NGNM57OUBQ31M9XYWD7AMVTE2YMLH45V64A7EIL22LRMFNBH23OFGMMG72U8RUZUUY7VL48MWH9KQ8XBJJCL4GLA9P7BI6Z3FD5VEYN6NLZBAD38E2UKNFYZWF0C7ZHTQYMSZZI5ZKBCU1UZCD8G0BUZCUVMVTTSSZD8APYS1S2JQS' where id=12; -update noar tt set v3='H3M5YB8VKJX9HCV2B0ZA4NZXHC8H8YTAY9A9SXI8MS1YRBISRAH5TG2N2GQK31GP12JX5J4XRSLB9A1CY4GMKVHZFMK738PPKUNJMCCHKL8CUYCRCLSQVT56CO9J87AZ9TIQG1UCR9M49CJR0JV0N3184GMXTCDTC3QGJP78NGFBMVEF8WHD3XK4X1EU49YEVMDC4AP6MA2QISRR5VSS9TAZ1YK9CJKLG0LE1SF53XQG1PZQHQ2IAAKPMGQ2IP0KN' where id=12; -update noar ti set v3='H3M5YB8VKJX9HCV2B0ZA4NZXHC8H8YTAY9A9SXI8MS1YRBISRAH5TG2N2GQK31GP12JX5J4XRSLB9A1CY4GMKVHZFMK738PPKUNJMCCHKL8CUYCRCLSQVT56CO9J87AZ9TIQG1UCR9M49CJR0JV0N3184GMXTCDTC3QGJP78NGFBMVEF8WHD3XK4X1EU49YEVMDC4AP6MA2QISRR5VSS9TAZ1YK9CJKLG0LE1SF53XQG1PZQHQ2IAAKPMGQ2IP0KN' where id=12; -update noar tt set v0='0BQ6JUDERPBLQAZNK08MLPXJNCWNYQ1LUPIIG87140824SGIOWRJREI8HEG918VT3Y2QL272H26K80BT5L112AE0M3RDVC5IU653G5SBWITYM11G419FMLNE54HPQE05A28A0TH7U8OEE1B0TRPWT2V8D5UF1XEEEJ0KRYTPRQX8UQQLFFAQRJOSHE78KOM8BMKO8D2U05HU2XMXLZAFYHT2JJ14JAJE9Q3X76O8S3LJ2D5Q995OWH8I8VNV4S34E' where id=13; -update noar ti set v0='0BQ6JUDERPBLQAZNK08MLPXJNCWNYQ1LUPIIG87140824SGIOWRJREI8HEG918VT3Y2QL272H26K80BT5L112AE0M3RDVC5IU653G5SBWITYM11G419FMLNE54HPQE05A28A0TH7U8OEE1B0TRPWT2V8D5UF1XEEEJ0KRYTPRQX8UQQLFFAQRJOSHE78KOM8BMKO8D2U05HU2XMXLZAFYHT2JJ14JAJE9Q3X76O8S3LJ2D5Q995OWH8I8VNV4S34E' where id=13; -update noar tt set v1='9AMZKRYJEMP4690BPS403LC8UT5MODEBM22BAG4D39U0Q4TBE4EWK96ZD8NUZI5TV8R9T0N6Q2ASJV0JTZUEMKXT1MOV3Z5JET3OIFZUWHKV7GE2U1HJBLFQCKUMK8P0HTMMEFSFCIH0IAL677H2DKTRA2KTCZTFJMIUZVF4E9CAREB74X2P2ZLPQHESFSY2N1ILJHCXBHSFD8J0YHAZS5IWLRCPG241RX1AFY43N4T4RTAIQY6REPXRL1U6IEPZ7' where id=13; -update noar ti set v1='9AMZKRYJEMP4690BPS403LC8UT5MODEBM22BAG4D39U0Q4TBE4EWK96ZD8NUZI5TV8R9T0N6Q2ASJV0JTZUEMKXT1MOV3Z5JET3OIFZUWHKV7GE2U1HJBLFQCKUMK8P0HTMMEFSFCIH0IAL677H2DKTRA2KTCZTFJMIUZVF4E9CAREB74X2P2ZLPQHESFSY2N1ILJHCXBHSFD8J0YHAZS5IWLRCPG241RX1AFY43N4T4RTAIQY6REPXRL1U6IEPZ7' where id=13; -update noar tt set v2='FCCDBULZN5AC5HUZMOU1J5QRCS4S1C7Z371Y8Z7N88H67IF2M8TMELBN8W1BH9ZQVGDMFQP0VLDXKYLTZUYBPBW0UO7MBPSH4AZ60AIOTIUB9LW8P0TI2U15RF62E5YPC8S5LZ05QXMSMHDCVU0RUAJ943L2GH41VRLYRUHCKUVQDAHCH20KLMY8F76EGCO1DD7GG1IJ2BN2N0IJBAAMB54QQ2Q4Z3RZYSX9383G53983PGKFS0UXMZO7J1U4HKZU' where id=13; -update noar ti set v2='FCCDBULZN5AC5HUZMOU1J5QRCS4S1C7Z371Y8Z7N88H67IF2M8TMELBN8W1BH9ZQVGDMFQP0VLDXKYLTZUYBPBW0UO7MBPSH4AZ60AIOTIUB9LW8P0TI2U15RF62E5YPC8S5LZ05QXMSMHDCVU0RUAJ943L2GH41VRLYRUHCKUVQDAHCH20KLMY8F76EGCO1DD7GG1IJ2BN2N0IJBAAMB54QQ2Q4Z3RZYSX9383G53983PGKFS0UXMZO7J1U4HKZU' where id=13; -update noar tt set v3='SAQMCV95TG3T09WH0B904FML7IG727PSMJ9TN7102TPY13JMAFKBIZSTUJJS5DJ21KMMHYJTXEGGIU83KIGIYNPEKRW8VI1CHWHTL6N7EX8DZMEMR356G4BRL4FASSVCSN1RU0FEIWGDKCCW38AYQERJRT2UVWDH2LC7ZHFODGJ16TJKU3ARDPIBDEJ5H0CWK3JV96XWYSU6Z9HWJD5G2F78HEPQU615XWYJKG7TIQA7NJ3U2B09GASBEU2YZO59H' where id=13; -update noar ti set v3='SAQMCV95TG3T09WH0B904FML7IG727PSMJ9TN7102TPY13JMAFKBIZSTUJJS5DJ21KMMHYJTXEGGIU83KIGIYNPEKRW8VI1CHWHTL6N7EX8DZMEMR356G4BRL4FASSVCSN1RU0FEIWGDKCCW38AYQERJRT2UVWDH2LC7ZHFODGJ16TJKU3ARDPIBDEJ5H0CWK3JV96XWYSU6Z9HWJD5G2F78HEPQU615XWYJKG7TIQA7NJ3U2B09GASBEU2YZO59H' where id=13; -update noar tt set v0='8P7YV1QBXTRVC6H3J5GN8BKD2CIN7H0YNSXE7VQD94SODKPKGOO7TOAHDUORC2JTLR63I81JXNFT0Y9P9ITRAX9R93W7MAGKB6LCYFSTXF53TKUASMF0ZHND54QB1Y4BV5PL4DLQ5SVMH560FVD0CA38HCLDVY278DSWSMGYAQACJL792TZ6M6LEXTMDI90ZI2TIQBQ23KEI0T8A79SUIH2XTS5MOYE7KFE3O93ERNIXVPYNQWZBTNVAFGUSX93QK' where id=14; -update noar ti set v0='8P7YV1QBXTRVC6H3J5GN8BKD2CIN7H0YNSXE7VQD94SODKPKGOO7TOAHDUORC2JTLR63I81JXNFT0Y9P9ITRAX9R93W7MAGKB6LCYFSTXF53TKUASMF0ZHND54QB1Y4BV5PL4DLQ5SVMH560FVD0CA38HCLDVY278DSWSMGYAQACJL792TZ6M6LEXTMDI90ZI2TIQBQ23KEI0T8A79SUIH2XTS5MOYE7KFE3O93ERNIXVPYNQWZBTNVAFGUSX93QK' where id=14; -update noar tt set v1='AB353RMDDKRCC3CI27XQNS4GL6N20K2GN99IG7KEABKLL3DKHL2VXWUYP2PKZIXHMQBGCWVIQUN7N7NSOWU7X79WLT4D4DZG5KBNKH86T5JK0YPHJZGNTP9OCBMJQXOEN0SV6DQOYAYWMY0VLLNU95DQWT13Y11MP2MO8HPAGXU945VW033XZSWKR1VEZYSFY7UVMWC3WJUAB266C6CCCDIIGQ0181MWZBCQXD7ZDDGPSGVNMX33DP0F2KZK4R46O' where id=14; -update noar ti set v1='AB353RMDDKRCC3CI27XQNS4GL6N20K2GN99IG7KEABKLL3DKHL2VXWUYP2PKZIXHMQBGCWVIQUN7N7NSOWU7X79WLT4D4DZG5KBNKH86T5JK0YPHJZGNTP9OCBMJQXOEN0SV6DQOYAYWMY0VLLNU95DQWT13Y11MP2MO8HPAGXU945VW033XZSWKR1VEZYSFY7UVMWC3WJUAB266C6CCCDIIGQ0181MWZBCQXD7ZDDGPSGVNMX33DP0F2KZK4R46O' where id=14; -update noar tt set v2='8YFKAMF2GMDUTSJVHV96FLY3H175FH18XC854DX64XPJQ91WJ1OVP5D4UKIM4924J3KTRUW4BP5HI5N9PFZ7GKBYMGJLBO47ZTX0UR6J6THBB0QQNMDDUXTTMJ9V9KPIPF1W6RFMZ6YVKZGPHH33LY4TDKMMQHGGG6XTIRE1MN55LAGLO4UL4X4DDBJO7D4ZKQZYFO73JDHZIUI0SI5J7B5NMG4J84EHK9J4SCYQLRYJMS0KV5AJ9E4BF5VH11KZE' where id=14; -update noar ti set v2='8YFKAMF2GMDUTSJVHV96FLY3H175FH18XC854DX64XPJQ91WJ1OVP5D4UKIM4924J3KTRUW4BP5HI5N9PFZ7GKBYMGJLBO47ZTX0UR6J6THBB0QQNMDDUXTTMJ9V9KPIPF1W6RFMZ6YVKZGPHH33LY4TDKMMQHGGG6XTIRE1MN55LAGLO4UL4X4DDBJO7D4ZKQZYFO73JDHZIUI0SI5J7B5NMG4J84EHK9J4SCYQLRYJMS0KV5AJ9E4BF5VH11KZE' where id=14; -update noar tt set v3='BWL7S5A8NUCR0ON6T559WQF9WN3ZB726H7583ETHGB6C0G3262K4IZU89HVEK1Y6SDIEPV1X5MPXUP5022VZZLTC2XULSS3258EW1KABNPHUGYIICT20OIPX2VKACTXFP5IVFP35U2JNUN3XQGHYOLLNGHED1KHJINJ0DGP6Q2BBUJ1ILBJTM2VB3VP22H9LJ8BBW6YHKNFRSFV6ST9ZVIMS8H5IHFV2V6YGQVYEHL08FW1EXTNJ14BOJRI2QFESI' where id=14; -update noar ti set v3='BWL7S5A8NUCR0ON6T559WQF9WN3ZB726H7583ETHGB6C0G3262K4IZU89HVEK1Y6SDIEPV1X5MPXUP5022VZZLTC2XULSS3258EW1KABNPHUGYIICT20OIPX2VKACTXFP5IVFP35U2JNUN3XQGHYOLLNGHED1KHJINJ0DGP6Q2BBUJ1ILBJTM2VB3VP22H9LJ8BBW6YHKNFRSFV6ST9ZVIMS8H5IHFV2V6YGQVYEHL08FW1EXTNJ14BOJRI2QFESI' where id=14; -update noar tt set v0='NIPNXTQ3XUDFIJL0BLCV2HN2L73P7VN4FU97OYLNYXSMOLO1FY70O4XSEQYHQSSF80PE42N7G3X9WV1CNP5QY0V3F2ERA2FFN3EQ4WZTHIBYBAHTX5TG9TSV000AN6LMTKDKLAN87NCLHOVLFQEJKYF4UXPAQIO7Y1TOLI43SBA6Y6KM8HFDGQKWO79FUAG9VL58PUDM0VGK2AY2T6L49ROU3PKJAE1T497O72CX2DVR3LPG247LCDKLAT5WQVBQH' where id=15; -update noar ti set v0='NIPNXTQ3XUDFIJL0BLCV2HN2L73P7VN4FU97OYLNYXSMOLO1FY70O4XSEQYHQSSF80PE42N7G3X9WV1CNP5QY0V3F2ERA2FFN3EQ4WZTHIBYBAHTX5TG9TSV000AN6LMTKDKLAN87NCLHOVLFQEJKYF4UXPAQIO7Y1TOLI43SBA6Y6KM8HFDGQKWO79FUAG9VL58PUDM0VGK2AY2T6L49ROU3PKJAE1T497O72CX2DVR3LPG247LCDKLAT5WQVBQH' where id=15; -update noar tt set v1='76BG85Z4HU5UG4K7LZTWWSGATWCKBZYC1N7O9F5KSDCV22Y72GI9PPFMH1UD99SADG003CCVBN3WLR0KB8FW0X9TV73IHSNOUT33D6J269EGZCQVIIO9I4AW3O1ULOZRTFB687M2GTEGAJG7OMAKL526W4Y5F93QKCKBWA3EOHKPO9JBABZHFG3P7WGYC712OXJBCSYXSMQR112OWHY4VNXN581FHSNP9G3QKXL27Q4V8GL2GXO8WVZB0XI5JENE6' where id=15; -update noar ti set v1='76BG85Z4HU5UG4K7LZTWWSGATWCKBZYC1N7O9F5KSDCV22Y72GI9PPFMH1UD99SADG003CCVBN3WLR0KB8FW0X9TV73IHSNOUT33D6J269EGZCQVIIO9I4AW3O1ULOZRTFB687M2GTEGAJG7OMAKL526W4Y5F93QKCKBWA3EOHKPO9JBABZHFG3P7WGYC712OXJBCSYXSMQR112OWHY4VNXN581FHSNP9G3QKXL27Q4V8GL2GXO8WVZB0XI5JENE6' where id=15; -update noar tt set v2='ZSLQN4KDSAOJ5ZHX3C46SNFQQY1CDQ02B32NIGSA7WEE9BVHL8CLWTN5HOQO6BMNETRRQMKURCRYT8CSC7E57OL0MAKU8AUKLLRNPYHHSF4RD1VUSJL6WJ8ZM3K2DVUBZDS0FERUXDJDWK340QHX24PWHHN3K7P0YOGFMEH99ZU9N7ESCUT82QUICZQWXZTOCM3Z9LTUL4P2FZFAD5K0X13Q4LWQ66TW7FMBT0FEOF73T1T84LUM1JDZ062T017KJ' where id=15; -update noar ti set v2='ZSLQN4KDSAOJ5ZHX3C46SNFQQY1CDQ02B32NIGSA7WEE9BVHL8CLWTN5HOQO6BMNETRRQMKURCRYT8CSC7E57OL0MAKU8AUKLLRNPYHHSF4RD1VUSJL6WJ8ZM3K2DVUBZDS0FERUXDJDWK340QHX24PWHHN3K7P0YOGFMEH99ZU9N7ESCUT82QUICZQWXZTOCM3Z9LTUL4P2FZFAD5K0X13Q4LWQ66TW7FMBT0FEOF73T1T84LUM1JDZ062T017KJ' where id=15; -update noar tt set v3='9ZQF665VYVHA7BI6PSJAVBQIKURT04GKN9VYB29189TCLHPSVVIKCL4MPPDZCZQAR5GAQD0MSQSJT21G27BL4YZA68P7SXEX4VTJF3VNRTXMJ7H0N40NNLL0N569X3KRH2C1X5CGMCA765DR4JJCVZ7M5F47UYPTHUBC5LP8DUCG52WEI51JX03L8X5Z0YTOFQNRVZ5FZGO5WE05P8WEYW8BJSK5XBN287BLRYPGRS10DGTCXWAQUIA1H6V5I4HU9' where id=15; -update noar ti set v3='9ZQF665VYVHA7BI6PSJAVBQIKURT04GKN9VYB29189TCLHPSVVIKCL4MPPDZCZQAR5GAQD0MSQSJT21G27BL4YZA68P7SXEX4VTJF3VNRTXMJ7H0N40NNLL0N569X3KRH2C1X5CGMCA765DR4JJCVZ7M5F47UYPTHUBC5LP8DUCG52WEI51JX03L8X5Z0YTOFQNRVZ5FZGO5WE05P8WEYW8BJSK5XBN287BLRYPGRS10DGTCXWAQUIA1H6V5I4HU9' where id=15; -update noar tt set v0='Y3QO4M5KHDN1SV95J8DA6THASVE799AGXWIFFTBYDY8N7WQL15KRNQX9E1P9MU7GYMB2CTNQE6WJG0TEU3Y7F28JLMU713WMVUCGGTPAHT7DK7S1G4A4A7KW7QXHC7JJ4R3WVZIKWLCXY0TC2EKULSR4DVOTFLW24QNKBY111298J27EXFU2Z6P40M0OTZO5X3BSVQJDOA23XYU8N6QC20RIY6N6M4VSJN3H4NR355LZEXOT7K64BFI6PX0G0V8G5' where id=16; -update noar ti set v0='Y3QO4M5KHDN1SV95J8DA6THASVE799AGXWIFFTBYDY8N7WQL15KRNQX9E1P9MU7GYMB2CTNQE6WJG0TEU3Y7F28JLMU713WMVUCGGTPAHT7DK7S1G4A4A7KW7QXHC7JJ4R3WVZIKWLCXY0TC2EKULSR4DVOTFLW24QNKBY111298J27EXFU2Z6P40M0OTZO5X3BSVQJDOA23XYU8N6QC20RIY6N6M4VSJN3H4NR355LZEXOT7K64BFI6PX0G0V8G5' where id=16; -update noar tt set v1='BUOKN95C2YZKYIR5NHASDKBN4NACXND9CLBIHGCUB040Z7Y1USZ7ZHW82DU3J4HO921LLXINRF3ZHL3CKBPLX34TIKW6CZKS6IW3VOGBHLMKQ0D1ABF2MPIQ8CQY7X4K74BGJG7MOGXZ5RKJ03ZKPM9AYUECGJQ6H7AJNX2VAPKIFF3UCA20LPEY1D9HFLX0XDBIPKFMC1XWJGGPF0LFHBLIPNMQV90ROSWX7IVFRI6L0X6ZV922WFNGMEM0P7PZT' where id=16; -update noar ti set v1='BUOKN95C2YZKYIR5NHASDKBN4NACXND9CLBIHGCUB040Z7Y1USZ7ZHW82DU3J4HO921LLXINRF3ZHL3CKBPLX34TIKW6CZKS6IW3VOGBHLMKQ0D1ABF2MPIQ8CQY7X4K74BGJG7MOGXZ5RKJ03ZKPM9AYUECGJQ6H7AJNX2VAPKIFF3UCA20LPEY1D9HFLX0XDBIPKFMC1XWJGGPF0LFHBLIPNMQV90ROSWX7IVFRI6L0X6ZV922WFNGMEM0P7PZT' where id=16; -update noar tt set v2='A4GWW90Z56JY82G9YDXZ3QA31DDD06E0BKSADEOFWLW554Z20JSITTW0TAMMTM68ZO7H74DY6K1NMD2KRAIMA585YQBB3R6D3XFWXGR9436W5HZC5CHSWNZ370YZG7UIQIKPQRO5EXGUXTNR8HQSZNSRPS9OKSZIV5OM2M6W4CRYZCSYZRFW78L5AX4SKV0W3TE27OG1ORY7RMW1P582QPDUPYOHGE2TJOOC6A5QHIK8O9N0QLB8YG3U39QF4Q7Z8' where id=16; -update noar ti set v2='A4GWW90Z56JY82G9YDXZ3QA31DDD06E0BKSADEOFWLW554Z20JSITTW0TAMMTM68ZO7H74DY6K1NMD2KRAIMA585YQBB3R6D3XFWXGR9436W5HZC5CHSWNZ370YZG7UIQIKPQRO5EXGUXTNR8HQSZNSRPS9OKSZIV5OM2M6W4CRYZCSYZRFW78L5AX4SKV0W3TE27OG1ORY7RMW1P582QPDUPYOHGE2TJOOC6A5QHIK8O9N0QLB8YG3U39QF4Q7Z8' where id=16; -update noar tt set v3='BG9HW8OWS91PFB05GXEG0LWJ94M35PKRMO5ZLMKY9Q2BTUBKDFU7W6V1DK0J9XSII1A75Q4XBRXR5K7IBH7EEJ39JZ0SUUI91P9OUKQFNOGYUGXVZI7NDBDOW42XOFYZJ76E9M3SF2ORBA6KKVHT9B4KR580DTKH9DD2AVDXZAFQVF16CFH0MW8FPY26JBVFSEMI5WIX902EEEJY2XPFC5C9S44OT04HPXX9WWBFEJM2712WZWYFFFVJPLKS5MD3B' where id=16; -update noar ti set v3='BG9HW8OWS91PFB05GXEG0LWJ94M35PKRMO5ZLMKY9Q2BTUBKDFU7W6V1DK0J9XSII1A75Q4XBRXR5K7IBH7EEJ39JZ0SUUI91P9OUKQFNOGYUGXVZI7NDBDOW42XOFYZJ76E9M3SF2ORBA6KKVHT9B4KR580DTKH9DD2AVDXZAFQVF16CFH0MW8FPY26JBVFSEMI5WIX902EEEJY2XPFC5C9S44OT04HPXX9WWBFEJM2712WZWYFFFVJPLKS5MD3B' where id=16; -update noar tt set v0='VFQA6QPOFSNDFRN56LI3PTXZRP0CGVA1OSQWW2RJR8F3868FWND46KU8FVX5MU6UC4IEF4A8BVFCML4HNXYTXZJ2KNGZLNXFHPU6RPMKOAGMD47H8FQQLEWZMQNPPRAVMNDAMCVMFVGWB0XRJGTMCB3MKY00NPV3KQF5WFJ984LNF96I7LS3ON6O4ES9JDVZ3ZPGD7Z8HUX221Y2EEYDHXJUNT1YL6HKFR0ONSGG0ZTQ5KQ2IMW8OOTOBOC7ZZSR3' where id=17; -update noar ti set v0='VFQA6QPOFSNDFRN56LI3PTXZRP0CGVA1OSQWW2RJR8F3868FWND46KU8FVX5MU6UC4IEF4A8BVFCML4HNXYTXZJ2KNGZLNXFHPU6RPMKOAGMD47H8FQQLEWZMQNPPRAVMNDAMCVMFVGWB0XRJGTMCB3MKY00NPV3KQF5WFJ984LNF96I7LS3ON6O4ES9JDVZ3ZPGD7Z8HUX221Y2EEYDHXJUNT1YL6HKFR0ONSGG0ZTQ5KQ2IMW8OOTOBOC7ZZSR3' where id=17; -update noar tt set v1='0KSFJCJ74RB0HDOS6RC38GZ7QMQMB6U86X2H24Y6UYBKJQKJ6ZXME4IJCDJYLKQYHOMLV3N2RR7AHOEHIKXUW7SSWDF2EUD5MG8B9PCRFM5ECP0CUD71T6M18CJ1IIDAAJHAZTTH3MDDBYGSE1QXOPBBA51IYAKKWKGBSO7ZP2FHIEXZVCSK9IDC1W54UARPQISV35MHFG9WD3OMGFALDO97OXKPRP3ZXS2R1TFQ6INRHRFHP1TUFAFZT27QPZ2EE' where id=17; -update noar ti set v1='0KSFJCJ74RB0HDOS6RC38GZ7QMQMB6U86X2H24Y6UYBKJQKJ6ZXME4IJCDJYLKQYHOMLV3N2RR7AHOEHIKXUW7SSWDF2EUD5MG8B9PCRFM5ECP0CUD71T6M18CJ1IIDAAJHAZTTH3MDDBYGSE1QXOPBBA51IYAKKWKGBSO7ZP2FHIEXZVCSK9IDC1W54UARPQISV35MHFG9WD3OMGFALDO97OXKPRP3ZXS2R1TFQ6INRHRFHP1TUFAFZT27QPZ2EE' where id=17; -update noar tt set v2='UDT60KSPD9246V4VB66HWC7SODE7UKZFS4VLE775641EQ0HBNEKMWMMVU0H7NGS65RIETAR9T5TIWODQKJATR8G0G7KNYD7Y0KWEKTV9J5S7C6JHXHXI8I8IZ4Q14Z4580GEP1J7PWI8HQ34V1131HOTW5CEHDEVDXKMAYNO2HKT8P3B5RGM5P05UQQ5QQJ868THVSDCVLFKC9MMAYD8SBIYX1FLE9LFE9FKVSCAH8L29CF6BMN5IQOSJ64RMTAN2' where id=17; -update noar ti set v2='UDT60KSPD9246V4VB66HWC7SODE7UKZFS4VLE775641EQ0HBNEKMWMMVU0H7NGS65RIETAR9T5TIWODQKJATR8G0G7KNYD7Y0KWEKTV9J5S7C6JHXHXI8I8IZ4Q14Z4580GEP1J7PWI8HQ34V1131HOTW5CEHDEVDXKMAYNO2HKT8P3B5RGM5P05UQQ5QQJ868THVSDCVLFKC9MMAYD8SBIYX1FLE9LFE9FKVSCAH8L29CF6BMN5IQOSJ64RMTAN2' where id=17; -update noar tt set v3='W9P796ZQ6AZYXDJDMKFI4PO42JA995NAKF3NQZXT481A81R209I0XORUSBY2CS8E6SOKDAUAEXI4HFZX8F3J6CRF0B42BC0T4VEVXBODUIAIJD9AAHIFVK9O5OMHHUXI8F3EXX76ZF6ADK3MJY541V7PWJ03Q3JQWH15OVPGTQFRCPF887XSFE0XXW8HWIS6KFLPB3L0PEJYTGQ9OP71TGVGS8OY4DXX1M8Q56DK4NIMFQ46YAD3WLW6DACMGGNCZ' where id=17; -update noar ti set v3='W9P796ZQ6AZYXDJDMKFI4PO42JA995NAKF3NQZXT481A81R209I0XORUSBY2CS8E6SOKDAUAEXI4HFZX8F3J6CRF0B42BC0T4VEVXBODUIAIJD9AAHIFVK9O5OMHHUXI8F3EXX76ZF6ADK3MJY541V7PWJ03Q3JQWH15OVPGTQFRCPF887XSFE0XXW8HWIS6KFLPB3L0PEJYTGQ9OP71TGVGS8OY4DXX1M8Q56DK4NIMFQ46YAD3WLW6DACMGGNCZ' where id=17; -update noar tt set v0='J7NA8DDFOMJ87RW8GVVQ35RDBYYY9VT4PV3XELFE9T54QQFYL6JQ3SA4G3MH2S8F1EVX8JB3BS7BPCT3GAB24ZJ5JKSMVMVZ3OCP0KDBV1C6AQYES3JGKPOOQ5TQIIXYRY212G0L2QZL1PJQ4UTVYN6M6UNOUFIRY415ENKN7841SZBM2DWSUUU2N4LHAS3Q6FUOV1TO93U0P6N0P9X4PM1JWGX23BHKRO8DE6DF48I73F2JW9IMR05HOQCC27X3J' where id=18; -update noar ti set v0='J7NA8DDFOMJ87RW8GVVQ35RDBYYY9VT4PV3XELFE9T54QQFYL6JQ3SA4G3MH2S8F1EVX8JB3BS7BPCT3GAB24ZJ5JKSMVMVZ3OCP0KDBV1C6AQYES3JGKPOOQ5TQIIXYRY212G0L2QZL1PJQ4UTVYN6M6UNOUFIRY415ENKN7841SZBM2DWSUUU2N4LHAS3Q6FUOV1TO93U0P6N0P9X4PM1JWGX23BHKRO8DE6DF48I73F2JW9IMR05HOQCC27X3J' where id=18; -update noar tt set v1='MO3OA8KS7ED5CA3JOSSF68991H67ERM2W0GVLSRTX30ANIGYCZCRKV2HF8WNLJQ9T7JGL3NFP22LUVY0PKBKNSZM0R223E0QCREU2AS51EU5K9RB3QXY8AFQVDUJNFDNX3KKFK0HDWQC90I7M9NV41RKO9VIJ2XVYDLC9CIT5N63Y6D5JZ38VA4ADXZR4OA7LNI7O7HZ3CF4C0MQ3OTQTJIRNUWNXLQJOZ89S8JTC3O6WINFJXU41MVW0NKLF7S7L' where id=18; -update noar ti set v1='MO3OA8KS7ED5CA3JOSSF68991H67ERM2W0GVLSRTX30ANIGYCZCRKV2HF8WNLJQ9T7JGL3NFP22LUVY0PKBKNSZM0R223E0QCREU2AS51EU5K9RB3QXY8AFQVDUJNFDNX3KKFK0HDWQC90I7M9NV41RKO9VIJ2XVYDLC9CIT5N63Y6D5JZ38VA4ADXZR4OA7LNI7O7HZ3CF4C0MQ3OTQTJIRNUWNXLQJOZ89S8JTC3O6WINFJXU41MVW0NKLF7S7L' where id=18; -update noar tt set v2='KC7OAY1ZX24X7I78TFM797E9P0NGC4VUCDCRWG5ZU9DD6E0O901FB8EH2GRMUO15EZLFMDQPX6T43ODLSVNWE95TN4V5Q0DYAIRMZEUJK515F5NKAPN9WJB34BWKGUQ4QRX0U6EQMXTVK5DGFL0YGDT2JO1WIEIJZBBZQKRUBF8K1HPI2ODGQ95CLB4DNF4BLYLIBXUE9UWD6F0CDLLQ3U8CLKWO5IQPE9XBGU853LOUXPNLE57F0G84QIHGIA7RO' where id=18; -update noar ti set v2='KC7OAY1ZX24X7I78TFM797E9P0NGC4VUCDCRWG5ZU9DD6E0O901FB8EH2GRMUO15EZLFMDQPX6T43ODLSVNWE95TN4V5Q0DYAIRMZEUJK515F5NKAPN9WJB34BWKGUQ4QRX0U6EQMXTVK5DGFL0YGDT2JO1WIEIJZBBZQKRUBF8K1HPI2ODGQ95CLB4DNF4BLYLIBXUE9UWD6F0CDLLQ3U8CLKWO5IQPE9XBGU853LOUXPNLE57F0G84QIHGIA7RO' where id=18; -update noar tt set v3='EUJNGCYJ6PVHSKBAF8F990V4LS87E0USG55RIS0T3HXHAU5JVEJQ0HQ8BGJT1CT2MNW2WL96K8K26KOHOMCHAP8T9NH4MZXSHWW8ZMA7VNAJ46ZTFZ5PHUGZX1T4B7RAM66HSCHNQ1631RP2SDQC3WN72LDQYW9O7TJ4UJXDWWGEPX5XPQ5KQZP6KH7FIAL2C4WIGG16F4TND40PFX6TFK0JXPBNBQ6YY69C4PAXYMIPBZV3S7D7KYBC0047BDS4U' where id=18; -update noar ti set v3='EUJNGCYJ6PVHSKBAF8F990V4LS87E0USG55RIS0T3HXHAU5JVEJQ0HQ8BGJT1CT2MNW2WL96K8K26KOHOMCHAP8T9NH4MZXSHWW8ZMA7VNAJ46ZTFZ5PHUGZX1T4B7RAM66HSCHNQ1631RP2SDQC3WN72LDQYW9O7TJ4UJXDWWGEPX5XPQ5KQZP6KH7FIAL2C4WIGG16F4TND40PFX6TFK0JXPBNBQ6YY69C4PAXYMIPBZV3S7D7KYBC0047BDS4U' where id=18; -update noar tt set v0='P05IYRHSPYQZRFCOM1WVHVDCWFYHVN0DVJBLZ6JD3MEBA7416LIQX91OVGEG4BZK9DNE0EM3FEPQ7O3BDULAH86E2CYYAPKNP4CMZ24H0VV6QJQVHM2ED7W0CGWUCXH1R1UFN3ZZ9TAH9K5YLMNPVCU8IUPZ3E5GUWVH1XP5AFA00O4R0IW0W23AYAHTOQBLG96VGI815JWXKSICM6VYOVJZZC3HTCN5RG0XMX1YRQJR8EWIOEDK2N4W3J4G9PMJ3' where id=19; -update noar ti set v0='P05IYRHSPYQZRFCOM1WVHVDCWFYHVN0DVJBLZ6JD3MEBA7416LIQX91OVGEG4BZK9DNE0EM3FEPQ7O3BDULAH86E2CYYAPKNP4CMZ24H0VV6QJQVHM2ED7W0CGWUCXH1R1UFN3ZZ9TAH9K5YLMNPVCU8IUPZ3E5GUWVH1XP5AFA00O4R0IW0W23AYAHTOQBLG96VGI815JWXKSICM6VYOVJZZC3HTCN5RG0XMX1YRQJR8EWIOEDK2N4W3J4G9PMJ3' where id=19; -update noar tt set v1='05F4SCFZ9ROHGZRW53MRW2VH23UNYZXB4UO4O45OK9LVPWNWNFSUC9Q0L8Y7NAUJA8XN2WK5JL6DWSHP9563QB911OO190DHVGWWGI3DQZCP0E2Z1SHIE4YVYQG66D1GA74UQ579E9O3O64I6BC8G6DSNAMGBDZF0X5KS6XEK3V6M2XE3HL3D5PG9N1PRDFNKWDG7YG6EH9XEIW6OLGR6XFDDDPWFQ40Y04XQZ94P5VVECWZW99UYXM8O9C1G1WRD' where id=19; -update noar ti set v1='05F4SCFZ9ROHGZRW53MRW2VH23UNYZXB4UO4O45OK9LVPWNWNFSUC9Q0L8Y7NAUJA8XN2WK5JL6DWSHP9563QB911OO190DHVGWWGI3DQZCP0E2Z1SHIE4YVYQG66D1GA74UQ579E9O3O64I6BC8G6DSNAMGBDZF0X5KS6XEK3V6M2XE3HL3D5PG9N1PRDFNKWDG7YG6EH9XEIW6OLGR6XFDDDPWFQ40Y04XQZ94P5VVECWZW99UYXM8O9C1G1WRD' where id=19; -update noar tt set v2='6OIMVHGV4MQI6G7BFJS0WK553G7N1TU176FN6ERI6CEPNM59QAFE4XEODP1N0SS5CSQ71C97ACW3DJ0QJ9BBPETGS6K97IC0ZGQHB7G8O3EEW49NZLOB2KDYC8MU8ALC7W0E7H1WVLZDTK5M1TBFVEBRRV793921INLUP40D3GY70TFJ2FAT8NNRQZGEDJO1JE62JCBPO29P3S50SS4FHLNQMOBTF0QTTLY8D2FM2JL2AQYZSZM9UK9C8XWJLWYPL' where id=19; -update noar ti set v2='6OIMVHGV4MQI6G7BFJS0WK553G7N1TU176FN6ERI6CEPNM59QAFE4XEODP1N0SS5CSQ71C97ACW3DJ0QJ9BBPETGS6K97IC0ZGQHB7G8O3EEW49NZLOB2KDYC8MU8ALC7W0E7H1WVLZDTK5M1TBFVEBRRV793921INLUP40D3GY70TFJ2FAT8NNRQZGEDJO1JE62JCBPO29P3S50SS4FHLNQMOBTF0QTTLY8D2FM2JL2AQYZSZM9UK9C8XWJLWYPL' where id=19; -update noar tt set v3='34RDPZPFXV6K7SR2X6CIUMEJY8ZKI5RJ6AAF11FPO9KKDO2RRJGQN8SRUHA47WOS1CMP065FPKFB5A8O4N9ISAXWCZ9I2TMC641XP10SJYHMYTNMDSOUXKJOYJHHW3BR86TQ9A5BMD9ADK03EHMAXDU5FMK2XA8P5HGX7FYXMVL7NY3YDMA26HHQYHQLDH15AJHZWHNHT10Y83E763DOEVF8CVWPPTE9G9S9LZJCGU3T55M7MKI1PNULMTE1LZUSC' where id=19; -update noar ti set v3='34RDPZPFXV6K7SR2X6CIUMEJY8ZKI5RJ6AAF11FPO9KKDO2RRJGQN8SRUHA47WOS1CMP065FPKFB5A8O4N9ISAXWCZ9I2TMC641XP10SJYHMYTNMDSOUXKJOYJHHW3BR86TQ9A5BMD9ADK03EHMAXDU5FMK2XA8P5HGX7FYXMVL7NY3YDMA26HHQYHQLDH15AJHZWHNHT10Y83E763DOEVF8CVWPPTE9G9S9LZJCGU3T55M7MKI1PNULMTE1LZUSC' where id=19; -update noar tt set v0='R0JF5O8W9C6EFOULZRNJ66WBXRN7FPIS5JMPYK44SMTCOEDN18P2MNBEUSMIFOMDUR48RB5DUSODRO5U2JSWK16N8EEC96B8XGGI4I6KEAM3EQX6320BHVSQMN5EDUR1IVKEYV9Z8717H7X0HU6PE7VJ6WTK8S61VS84ZKJJVVIY2107SV84Y9KK64AVVQ0G56QZ5DEVLCBLQQCWIZD9Z59G6PH33285XCP9DLDNA5N7DR8CMQVEL7B9C8L3MFB0L' where id=20; -update noar ti set v0='R0JF5O8W9C6EFOULZRNJ66WBXRN7FPIS5JMPYK44SMTCOEDN18P2MNBEUSMIFOMDUR48RB5DUSODRO5U2JSWK16N8EEC96B8XGGI4I6KEAM3EQX6320BHVSQMN5EDUR1IVKEYV9Z8717H7X0HU6PE7VJ6WTK8S61VS84ZKJJVVIY2107SV84Y9KK64AVVQ0G56QZ5DEVLCBLQQCWIZD9Z59G6PH33285XCP9DLDNA5N7DR8CMQVEL7B9C8L3MFB0L' where id=20; -update noar tt set v1='VGMCHGSZZR6TX86S67VLOZAOANYQ6CBIISLDT2ZHYYQSHNCA14VET1TKCJC2AY71A6ZXQAM1B1Z269IWAORAOX0I0M3L9Q6RYK8M80UHY4SWQK11KBP63GIG3PP8OF9MCBQBZO6C32Z6LBTMLIIT0AUW8FTYWADEMEZDSIVTG3HWRR1X7HGYC3VVHGNKRH6YH9SJ9AZOSJB4LV59CMDN81T3R3770ONHRD5IZEY2A3PK04NJVSBMZI7NFN55C49ZJ' where id=20; -update noar ti set v1='VGMCHGSZZR6TX86S67VLOZAOANYQ6CBIISLDT2ZHYYQSHNCA14VET1TKCJC2AY71A6ZXQAM1B1Z269IWAORAOX0I0M3L9Q6RYK8M80UHY4SWQK11KBP63GIG3PP8OF9MCBQBZO6C32Z6LBTMLIIT0AUW8FTYWADEMEZDSIVTG3HWRR1X7HGYC3VVHGNKRH6YH9SJ9AZOSJB4LV59CMDN81T3R3770ONHRD5IZEY2A3PK04NJVSBMZI7NFN55C49ZJ' where id=20; -update noar tt set v2='84QXI3JETHU11TT5V9RYRZQQY74DOMWYF3HUY23HZZSHIS8AWTE82I53MR4E8K97HQXRAELLXOS2ODA1DDLP357IBFH01XX0SHZIYR6IOL2UUI39Z5FPOL8LBICXG9F8QXYLJY7QWB5YKK8PWQSNDG1ATEXYCKWP18J9R1I4CFE0R6US90USQUXI31O82SJYNAN809F8IQ6YREECUGPJG55SWVPKB4O9UW7RA2DYPJ73EKJG1D9Z7VL1ZCWN5GLYG' where id=20; -update noar ti set v2='84QXI3JETHU11TT5V9RYRZQQY74DOMWYF3HUY23HZZSHIS8AWTE82I53MR4E8K97HQXRAELLXOS2ODA1DDLP357IBFH01XX0SHZIYR6IOL2UUI39Z5FPOL8LBICXG9F8QXYLJY7QWB5YKK8PWQSNDG1ATEXYCKWP18J9R1I4CFE0R6US90USQUXI31O82SJYNAN809F8IQ6YREECUGPJG55SWVPKB4O9UW7RA2DYPJ73EKJG1D9Z7VL1ZCWN5GLYG' where id=20; -update noar tt set v3='CU9PRJ19A2XGY4PYIBILRCB8XY2WK7G5UEB2SBTS4AYUI33E6XGHSJ07HJMH77F1N30WQMXVPLV92BAWVJH12PMYXCOQCS44LBQ8EGVRO1NFRUNXILTCTEUU0WX0OMDK6LGYOASBU7OK9J99FVYFSPERHZDPB19V0NXWKZJ6XC6QBTAJP6XSXGAWJVNCGGQCL14XM4N5UICFCXITEL4GVJ8LVJ7Y9Y8ZZ4187Y3HNXGP81MAQZULP0LVKNOJR1JFF' where id=20; -update noar ti set v3='CU9PRJ19A2XGY4PYIBILRCB8XY2WK7G5UEB2SBTS4AYUI33E6XGHSJ07HJMH77F1N30WQMXVPLV92BAWVJH12PMYXCOQCS44LBQ8EGVRO1NFRUNXILTCTEUU0WX0OMDK6LGYOASBU7OK9J99FVYFSPERHZDPB19V0NXWKZJ6XC6QBTAJP6XSXGAWJVNCGGQCL14XM4N5UICFCXITEL4GVJ8LVJ7Y9Y8ZZ4187Y3HNXGP81MAQZULP0LVKNOJR1JFF' where id=20; -update noar tt set v0='8TRV4USLXJZ2Y042NRYC5M2IRQ5UUFC2YZFJBLPRDADRAFJSG0YQ1FD0ROSCMG4W79C3WUJC90MJGAI17PS6CWXO9Z433RGRYNKKH86VY47HLAWDIX8O6CNTDD4NSI8OKZJZZBNVREAR7JBNM9RP78AFKE88I2TFH7NROLSGLQA8Y0P2DH3NS1L8H4Q6FI8J8VMRGOJRUAC1ZA50CV11OZY7WFO34LN5AYTEMFOKXB2603P9KCXGMXOFU4ZBOHH83' where id=21; -update noar ti set v0='8TRV4USLXJZ2Y042NRYC5M2IRQ5UUFC2YZFJBLPRDADRAFJSG0YQ1FD0ROSCMG4W79C3WUJC90MJGAI17PS6CWXO9Z433RGRYNKKH86VY47HLAWDIX8O6CNTDD4NSI8OKZJZZBNVREAR7JBNM9RP78AFKE88I2TFH7NROLSGLQA8Y0P2DH3NS1L8H4Q6FI8J8VMRGOJRUAC1ZA50CV11OZY7WFO34LN5AYTEMFOKXB2603P9KCXGMXOFU4ZBOHH83' where id=21; -update noar tt set v1='RHGJ1VLS0T9N6BPSFGZXUQRM9RFGNFXTP8U3R3S7WCVTRWSB38MGUP09ZMNQGK8CQ2TUOM8L0ZMHB5IVRFWJZ1P7KC06LGGWUR4YE7HDUGNUNDZDG6ITPKBY171IJ0EP8AA68Y46AUOAM7CXCJA6QLJ8I7KLPCGT3QSCA2ORYPXTBHD4DJFR2AHE4DFUY6IOQE0BNR4KR6SL59CY0V64HERSJ0NFM80ZR4N1R9B6AP4XVHNMP02PQME78KP399ROC' where id=21; -update noar ti set v1='RHGJ1VLS0T9N6BPSFGZXUQRM9RFGNFXTP8U3R3S7WCVTRWSB38MGUP09ZMNQGK8CQ2TUOM8L0ZMHB5IVRFWJZ1P7KC06LGGWUR4YE7HDUGNUNDZDG6ITPKBY171IJ0EP8AA68Y46AUOAM7CXCJA6QLJ8I7KLPCGT3QSCA2ORYPXTBHD4DJFR2AHE4DFUY6IOQE0BNR4KR6SL59CY0V64HERSJ0NFM80ZR4N1R9B6AP4XVHNMP02PQME78KP399ROC' where id=21; -update noar tt set v2='BLGASJTXH1V5RT3L5OZXKPPHERZS0F36T88R8FSEUXVOMJY64LL2LWN10DBGW3C5PJ0C81EURUA3VSXLXN87PZXXC0LUME8AQUQ5E0G0T7U7LDO8X528607NSEXR85GWG32HFDB3M6UGPENTEIMNDR8TQGF9F9OKOVLLNZGCE8ITFFEYL5Q8SL74UM516P67424K4LQIL8NV9UE68DVA9WH8GBEODRN3NU9K367O6IS8EG6CE52G2J3AEID1WYK5Q' where id=21; -update noar ti set v2='BLGASJTXH1V5RT3L5OZXKPPHERZS0F36T88R8FSEUXVOMJY64LL2LWN10DBGW3C5PJ0C81EURUA3VSXLXN87PZXXC0LUME8AQUQ5E0G0T7U7LDO8X528607NSEXR85GWG32HFDB3M6UGPENTEIMNDR8TQGF9F9OKOVLLNZGCE8ITFFEYL5Q8SL74UM516P67424K4LQIL8NV9UE68DVA9WH8GBEODRN3NU9K367O6IS8EG6CE52G2J3AEID1WYK5Q' where id=21; -update noar tt set v3='LKMFI2U4UT5K195NK8VDDETYAXAAJPF2WRQTWAA4D5RSKKBW25UYC95ZDHZ5T34JHCDMS3P151G3S287F5XNL18ZH4WLZD4MCBRD2D0Q0V1M2ZYZHA7AX0PDGIS6DEO9QY7HF5UPAC3T7FULJY3YYWPMB7XUFWEU84K3599LEZKNC7USYYW5IMFJJLP39N24NQAA9ZEMTPFMYGKVU5HFM1VTMCIZ3ZOHUYVSKV1JY79DF8CDWS78NXY843NFEOJNM' where id=21; -update noar ti set v3='LKMFI2U4UT5K195NK8VDDETYAXAAJPF2WRQTWAA4D5RSKKBW25UYC95ZDHZ5T34JHCDMS3P151G3S287F5XNL18ZH4WLZD4MCBRD2D0Q0V1M2ZYZHA7AX0PDGIS6DEO9QY7HF5UPAC3T7FULJY3YYWPMB7XUFWEU84K3599LEZKNC7USYYW5IMFJJLP39N24NQAA9ZEMTPFMYGKVU5HFM1VTMCIZ3ZOHUYVSKV1JY79DF8CDWS78NXY843NFEOJNM' where id=21; -update noar tt set v0='49S6PQXZJXO1TSSOAXPB0W2Q33CXG4SC3U0F8DHD3SPOP06OKTMIAS9LM8LU8KZ69H47AAF9VHTM8G7YY1P2469WRFOXR0S56JM6W7QN41VQ5DFJDF3U3LAXIBPYG6QMO66WQ6KNS7HO9QX9QR9SMNLFP4KQHND021FT4A5DPW3EOZO8S9IPFLOP89WN0EOEFPFO9A3ZOYL4QZRUFUH5A6NUBF4KJZPE5FMGVX8WX1DREETUTZM6UEI8M0UY3BG8T' where id=22; -update noar ti set v0='49S6PQXZJXO1TSSOAXPB0W2Q33CXG4SC3U0F8DHD3SPOP06OKTMIAS9LM8LU8KZ69H47AAF9VHTM8G7YY1P2469WRFOXR0S56JM6W7QN41VQ5DFJDF3U3LAXIBPYG6QMO66WQ6KNS7HO9QX9QR9SMNLFP4KQHND021FT4A5DPW3EOZO8S9IPFLOP89WN0EOEFPFO9A3ZOYL4QZRUFUH5A6NUBF4KJZPE5FMGVX8WX1DREETUTZM6UEI8M0UY3BG8T' where id=22; -update noar tt set v1='VGGJ4R69QOCMZ2MVU1J5U19W0B4BF7KQYD3WY0GWWW1DXFB2B0NF4FOXQXPCU7G88XY8HP77X8WWINLH7TNWURMZ15YJI0KH2N47W6UYQPQX0A14NZQ2ROY44VGHQICCJ2VGVTE58UJPSMA4M3QJNH62MB02KC5C92Y3C1RQYAWQ3WSLMXB9SFU1MSX3RSDBA02ITJ86BWQZL6CB671QALA05PO7CIJFDOO1FEOSVSUW934XOT5TZYOCBK0WII9YT' where id=22; -update noar ti set v1='VGGJ4R69QOCMZ2MVU1J5U19W0B4BF7KQYD3WY0GWWW1DXFB2B0NF4FOXQXPCU7G88XY8HP77X8WWINLH7TNWURMZ15YJI0KH2N47W6UYQPQX0A14NZQ2ROY44VGHQICCJ2VGVTE58UJPSMA4M3QJNH62MB02KC5C92Y3C1RQYAWQ3WSLMXB9SFU1MSX3RSDBA02ITJ86BWQZL6CB671QALA05PO7CIJFDOO1FEOSVSUW934XOT5TZYOCBK0WII9YT' where id=22; -update noar tt set v2='AADJ962WUP6UOSLGT0E15CBFLGQSJGIYSE5OBENUKLH57P5P5VKV5KUYAHV6OH5QHDQFAP9VH47HFTH4QLBMG3D7GH550F0VQFOLDC61BS568152S1SIXZR8YFZNHROMQP76GODLNBDIS8PAW26HW0F1LVKW4T4IVG4P5N006LM8X15E02RX6KWDF3LCFTZLMTDD2V02QF44ZZ8G8EV2GDYMPYHPP56QB872RRRUQ2LHIKEBML5MTXJB070R8396Z' where id=22; -update noar ti set v2='AADJ962WUP6UOSLGT0E15CBFLGQSJGIYSE5OBENUKLH57P5P5VKV5KUYAHV6OH5QHDQFAP9VH47HFTH4QLBMG3D7GH550F0VQFOLDC61BS568152S1SIXZR8YFZNHROMQP76GODLNBDIS8PAW26HW0F1LVKW4T4IVG4P5N006LM8X15E02RX6KWDF3LCFTZLMTDD2V02QF44ZZ8G8EV2GDYMPYHPP56QB872RRRUQ2LHIKEBML5MTXJB070R8396Z' where id=22; -update noar tt set v3='17MVMQ8RCO0PFAYPKMXA1ZKCDLEW9HMR5TK0QGXCYW4C3I5U1HNUABCLUN0VSQ9FN7O5NRMEQAQW73FM46F9UO3QBX7IMWNQRWGWW5QEAB9AE07GIUE962FDO80TH571EZZBP7J81E5V8UNITPTRVFEMZRZT3G7M0918AW59N9HDQYANVI0TVX0G9YDDU4Q0FJYI3L2PXL9NJ84XH43L6NQY73WYLOXP9N0YC1Y9IVLPV9GWIR2MU0KKXDAIMEVQ5' where id=22; -update noar ti set v3='17MVMQ8RCO0PFAYPKMXA1ZKCDLEW9HMR5TK0QGXCYW4C3I5U1HNUABCLUN0VSQ9FN7O5NRMEQAQW73FM46F9UO3QBX7IMWNQRWGWW5QEAB9AE07GIUE962FDO80TH571EZZBP7J81E5V8UNITPTRVFEMZRZT3G7M0918AW59N9HDQYANVI0TVX0G9YDDU4Q0FJYI3L2PXL9NJ84XH43L6NQY73WYLOXP9N0YC1Y9IVLPV9GWIR2MU0KKXDAIMEVQ5' where id=22; -update noar tt set v0='6GYJ3TQ7GG360E76XG8CCE7M9UPY89FTLSWNJY8WDZOZ24IYJ2LUBT7BOW315Z04Y4XD04R0X5TLYWQZN246EUFXU44MVPHY3QLXFLMRCHLPUYOE3KQ3XO34X0YXP2Z2IPECO745VX710O72KES736RC8BQ91EWXEDV413H5C709WS068YEIWJTC6N15ZYLRVNJ4XB721ZBFS5AL985VYRQ6QYH0KKFIQTQQQXSH6YIWDYGIMZYMYMRWXAR5V9IZV' where id=23; -update noar ti set v0='6GYJ3TQ7GG360E76XG8CCE7M9UPY89FTLSWNJY8WDZOZ24IYJ2LUBT7BOW315Z04Y4XD04R0X5TLYWQZN246EUFXU44MVPHY3QLXFLMRCHLPUYOE3KQ3XO34X0YXP2Z2IPECO745VX710O72KES736RC8BQ91EWXEDV413H5C709WS068YEIWJTC6N15ZYLRVNJ4XB721ZBFS5AL985VYRQ6QYH0KKFIQTQQQXSH6YIWDYGIMZYMYMRWXAR5V9IZV' where id=23; -update noar tt set v1='CVJWYFWYSZL79KSZPCVR1JT9XO7WJ2HQ07Y4LMWO4UKY1IFDPY17O75AM7EZ0J2NDMU3RUY38I45EBLXCH5L7PKDJNASQC4DDVHN3RU1ZYHH7BMQAA2PH26X7EVS63K5BCQPR6JSR6MUYA2HDNNEU15FCQCE1JPHBW4596G06XRSKQR4AVANM0WYN15SYTXKNMHKO2ZSV78HBL2PYDI9GMNWZA19MNTXVX49HSA0AWXC7RL7R4GQS1V5B54255LK6' where id=23; -update noar ti set v1='CVJWYFWYSZL79KSZPCVR1JT9XO7WJ2HQ07Y4LMWO4UKY1IFDPY17O75AM7EZ0J2NDMU3RUY38I45EBLXCH5L7PKDJNASQC4DDVHN3RU1ZYHH7BMQAA2PH26X7EVS63K5BCQPR6JSR6MUYA2HDNNEU15FCQCE1JPHBW4596G06XRSKQR4AVANM0WYN15SYTXKNMHKO2ZSV78HBL2PYDI9GMNWZA19MNTXVX49HSA0AWXC7RL7R4GQS1V5B54255LK6' where id=23; -update noar tt set v2='6ZLJ1ORHQTCYPNWA5JJKNUUI1D2B1VSHAEBRA4B8ZBU4NRKJX24ZWECOHIOCIUOS9NCBQHT4BTSOEBDYSECXKLDR7THFZS35L1WQ7DQDDZZBIMB7PEZQQ27XXNDR0WYA3TT17KZV4IQ9JOIOVXHCYTQ2S6ZQ1GIWQ9JN5HQ8ULCTG9PZP490JAAVBVDSNKTDL4T1ROUSV4JIN90R1LW629Y73E60550M4P7ES2E8IU3ES058SGS34Z5AKG4MDUZ8O' where id=23; -update noar ti set v2='6ZLJ1ORHQTCYPNWA5JJKNUUI1D2B1VSHAEBRA4B8ZBU4NRKJX24ZWECOHIOCIUOS9NCBQHT4BTSOEBDYSECXKLDR7THFZS35L1WQ7DQDDZZBIMB7PEZQQ27XXNDR0WYA3TT17KZV4IQ9JOIOVXHCYTQ2S6ZQ1GIWQ9JN5HQ8ULCTG9PZP490JAAVBVDSNKTDL4T1ROUSV4JIN90R1LW629Y73E60550M4P7ES2E8IU3ES058SGS34Z5AKG4MDUZ8O' where id=23; -update noar tt set v3='POZ605KQ10GA7A7056U6F1UTKYGEEKS56VSLI9SVIAQW8AMGC7O0DNMUMTJDX3WE6B47I9EQB79XS5MGHXSZHMODMJG89XVVM210YK1WQMWNY1EYW95Z9LOV1Z1TPEF862IIYIB31KV5HF2A4BNOK02T4197ZL90DVB9XU8AYBHJCVOR7Y0HZOEZY0GUH5NSSJ7GG41PPW4M8ZMV0OKBPN51I2JBJWJK277IBCPLKVCJBN0CEHPZBQG06LOV831HJ' where id=23; -update noar ti set v3='POZ605KQ10GA7A7056U6F1UTKYGEEKS56VSLI9SVIAQW8AMGC7O0DNMUMTJDX3WE6B47I9EQB79XS5MGHXSZHMODMJG89XVVM210YK1WQMWNY1EYW95Z9LOV1Z1TPEF862IIYIB31KV5HF2A4BNOK02T4197ZL90DVB9XU8AYBHJCVOR7Y0HZOEZY0GUH5NSSJ7GG41PPW4M8ZMV0OKBPN51I2JBJWJK277IBCPLKVCJBN0CEHPZBQG06LOV831HJ' where id=23; -update noar tt set v0='3QUJA2NN8LQ8IUUQ6I94GGKVJC90EHLOFD6BADS49P1RBXIK1C4OEG86PVC82QNPIGM17GJD6TEMH57N5PMWIJTU1PZBE9PMESNRQMCG6K6TYJ0OPTQRP3Y6488GL168DMBII2FYURECXG5MQ2KM06D00JND1YMNFLG4I2QDHJKC8DFSS3WI3R01HXPK5ZA36V4T5CK3PBYPPKZPJBN8YFVQ2VWACYVKRTG1TZJV2J7006JL24LIBPEIDI0DDG3ZQ' where id=24; -update noar ti set v0='3QUJA2NN8LQ8IUUQ6I94GGKVJC90EHLOFD6BADS49P1RBXIK1C4OEG86PVC82QNPIGM17GJD6TEMH57N5PMWIJTU1PZBE9PMESNRQMCG6K6TYJ0OPTQRP3Y6488GL168DMBII2FYURECXG5MQ2KM06D00JND1YMNFLG4I2QDHJKC8DFSS3WI3R01HXPK5ZA36V4T5CK3PBYPPKZPJBN8YFVQ2VWACYVKRTG1TZJV2J7006JL24LIBPEIDI0DDG3ZQ' where id=24; -update noar tt set v1='MV6VYZX7XFAH09ONK2APDARSW4VU02XPQSZKOFK3SLQKLD7I6O32FTL8T2UC1AH059ZTDGY7SBCLMU4E88A25FH5I5UAEK62BDXLIDUW6SVFBI9RYTU330BT6YKJ4AZSKBE2AALD676ZANCQCD3628LXJUM9HDF96E9FC05WTYXGYPFTAMIJY9CZMSNPRIGI6Y1R8MTV0M6J9370U25YG3VF3LT27AVYEUPKBBCVUINFXTM9TL1YUO06KE0AG50U0' where id=24; -update noar ti set v1='MV6VYZX7XFAH09ONK2APDARSW4VU02XPQSZKOFK3SLQKLD7I6O32FTL8T2UC1AH059ZTDGY7SBCLMU4E88A25FH5I5UAEK62BDXLIDUW6SVFBI9RYTU330BT6YKJ4AZSKBE2AALD676ZANCQCD3628LXJUM9HDF96E9FC05WTYXGYPFTAMIJY9CZMSNPRIGI6Y1R8MTV0M6J9370U25YG3VF3LT27AVYEUPKBBCVUINFXTM9TL1YUO06KE0AG50U0' where id=24; -update noar tt set v2='QH1U8J2ANLNCTQYX7ZXTN2JZ2BM65HGXMXW1H5URGRSR1Y8V6ERUFKTG08HSM5GX8AW01BMJEPNO5GIJRXEGN2KY8PZVK4SF07VS0QOEA24W5RB9XUXUFBTHDGS21DU7WH70CKI8IG2MFR0VTXXVVVEX9GITV5D7U2Y99PF1ECE7RPKGFO0JMZFCTVEENFVG4UQEUYNE8BMVKPXP55U81KVGFQPN87LOJNZCA8KFWCEJ7LNP96UPE43NI3I6O5SM5' where id=24; -update noar ti set v2='QH1U8J2ANLNCTQYX7ZXTN2JZ2BM65HGXMXW1H5URGRSR1Y8V6ERUFKTG08HSM5GX8AW01BMJEPNO5GIJRXEGN2KY8PZVK4SF07VS0QOEA24W5RB9XUXUFBTHDGS21DU7WH70CKI8IG2MFR0VTXXVVVEX9GITV5D7U2Y99PF1ECE7RPKGFO0JMZFCTVEENFVG4UQEUYNE8BMVKPXP55U81KVGFQPN87LOJNZCA8KFWCEJ7LNP96UPE43NI3I6O5SM5' where id=24; -update noar tt set v3='ESWBWQFN08XQZPMYWEV4UFL0F3321YHBM3OOC1141L3RCP9O213EAY41PS2384FSLI7U0JKCJVNHXN1CCBHJXDDAACET0XILTGP2X4PF4WA5AK4P5XJH8HF74PP6N83WKCI67BO6Z08Q0VB2ZB0F3WYFJPCAMSTG9HDGYSSM0B42LDWQEY91ZMCREVLSLUKAB8PUHLCVNBN8YJFE8877XG8MNUXA7T193Q7OMYZD0OKMRT11SLTXKBRB8ML8B0Y8Z' where id=24; -update noar ti set v3='ESWBWQFN08XQZPMYWEV4UFL0F3321YHBM3OOC1141L3RCP9O213EAY41PS2384FSLI7U0JKCJVNHXN1CCBHJXDDAACET0XILTGP2X4PF4WA5AK4P5XJH8HF74PP6N83WKCI67BO6Z08Q0VB2ZB0F3WYFJPCAMSTG9HDGYSSM0B42LDWQEY91ZMCREVLSLUKAB8PUHLCVNBN8YJFE8877XG8MNUXA7T193Q7OMYZD0OKMRT11SLTXKBRB8ML8B0Y8Z' where id=24; -update noar tt set v0='81J30FMX1T09PIXYANJ2LXXOOXW8O9SP6ZZD9N18TAOMFTY0KLRVEDAHJQFKJGEMLQ1VF1UFBOKQW1PFIZ7D532UT9SQR0D8G125Z0YKVAMOBV679VPOCHA5D5MHXNZ1VKNH4Q2ERAVH4X13TVGBXAKZMU6GT50VYXBN6D649KBJ7MV11MOUWL7Y4H1N1M2KKVDQ0FFIXEWFEMSMNR0LGAVAYUSUAPRHA5VOMNX0I9JO3BT7ZTJFG0PH67S7P9QG5' where id=25; -update noar ti set v0='81J30FMX1T09PIXYANJ2LXXOOXW8O9SP6ZZD9N18TAOMFTY0KLRVEDAHJQFKJGEMLQ1VF1UFBOKQW1PFIZ7D532UT9SQR0D8G125Z0YKVAMOBV679VPOCHA5D5MHXNZ1VKNH4Q2ERAVH4X13TVGBXAKZMU6GT50VYXBN6D649KBJ7MV11MOUWL7Y4H1N1M2KKVDQ0FFIXEWFEMSMNR0LGAVAYUSUAPRHA5VOMNX0I9JO3BT7ZTJFG0PH67S7P9QG5' where id=25; -update noar tt set v1='3GT2T6AUI87IJ6XYTOPKBK5X574LWH9MQP9M6Q6IQNS5AVBH3SKEKQMD1K0KQ2B8YFVY5OH7RMN2S7XAN3QAL9SFOTSGO7B6A4SSKCLPHP96MQEQX3NKM876AJ52BO3LSUVB5VWDJ3PPPNVHRE9N7FFOSWTDNTEZQQLKQ0MH74MQTB1TBT77LBM3MAF1CDH6UC16OX4A2F891R4KYJ9CG6VADM38XHY5TGSAYW3LDGFTD9REG2J2P612U169RCE2Y' where id=25; -update noar ti set v1='3GT2T6AUI87IJ6XYTOPKBK5X574LWH9MQP9M6Q6IQNS5AVBH3SKEKQMD1K0KQ2B8YFVY5OH7RMN2S7XAN3QAL9SFOTSGO7B6A4SSKCLPHP96MQEQX3NKM876AJ52BO3LSUVB5VWDJ3PPPNVHRE9N7FFOSWTDNTEZQQLKQ0MH74MQTB1TBT77LBM3MAF1CDH6UC16OX4A2F891R4KYJ9CG6VADM38XHY5TGSAYW3LDGFTD9REG2J2P612U169RCE2Y' where id=25; -update noar tt set v2='XHJZRRUSIDVND93JGKWH3J1OS4F1N32WRKP74BTN9RZF2VWEAO2TBB4KNNE6AH3MHYMYFJO1E6Y3EUQBYL7BVYUWBQ0JZGNWMFVT4V3N1EQ8XPICM2970BMOAI0VDXODSAZOS4RLTPEEQ85GWYH7F9Y8DBOIYLPSVAMDW5QC22Q8U5TY91W2K3B8ITESTAGQ6INC6IPZ3PGYZH90LLM8RKU68EETU2Z3RFTA0YGSFFLZ8HQ5OTP5W4H2W9DTGEUN4' where id=25; -update noar ti set v2='XHJZRRUSIDVND93JGKWH3J1OS4F1N32WRKP74BTN9RZF2VWEAO2TBB4KNNE6AH3MHYMYFJO1E6Y3EUQBYL7BVYUWBQ0JZGNWMFVT4V3N1EQ8XPICM2970BMOAI0VDXODSAZOS4RLTPEEQ85GWYH7F9Y8DBOIYLPSVAMDW5QC22Q8U5TY91W2K3B8ITESTAGQ6INC6IPZ3PGYZH90LLM8RKU68EETU2Z3RFTA0YGSFFLZ8HQ5OTP5W4H2W9DTGEUN4' where id=25; -update noar tt set v3='0BBEXG0WRACW3QWPFZE5WBQE6YQZZRNKJVG8RIWSANUVX4I0ETMERYTF899OKN9CYKHTSBKPR9L6NGB57Z0VSSZGETFPULIT3C6BMZ045FYOI4TFTCF6WWSJ1LDZ2BAPR74SQSCC2PDM0ZXM4E8YVAV33H52L6ZD4JV0JY7SNAXVOC5R0BA4491SPA3H1AJREZV863VANHM2LYO0AW78SF0IG68SKW2NMFJAJXRS48PDORNSQ85N9TIAOS83NLSTQ' where id=25; -update noar ti set v3='0BBEXG0WRACW3QWPFZE5WBQE6YQZZRNKJVG8RIWSANUVX4I0ETMERYTF899OKN9CYKHTSBKPR9L6NGB57Z0VSSZGETFPULIT3C6BMZ045FYOI4TFTCF6WWSJ1LDZ2BAPR74SQSCC2PDM0ZXM4E8YVAV33H52L6ZD4JV0JY7SNAXVOC5R0BA4491SPA3H1AJREZV863VANHM2LYO0AW78SF0IG68SKW2NMFJAJXRS48PDORNSQ85N9TIAOS83NLSTQ' where id=25; -update noar tt set v0='AELV5TY2XKP26JTBTS5Z90TPMUT6233ONJXMFAPEDVEIF9RNC6TB9TRP0WLRUZJ0UZK9JU9EXML437K2WNF1P2EA8P4LD5VEG5TFF46RGTRPI5OI6V1POQF8UFEATKYL9W87IVH9YG1CCSWPG8JGIRBRQF0A04BG6RSCTNYDKRC4ZH5596V7EP8SKLC2F49JW04LVOS9J643EJ77X8NR8PWH3PMVGJ9D9JSSO5YIBFUY7C426CO0S12C04MS7LK96' where id=26; -update noar ti set v0='AELV5TY2XKP26JTBTS5Z90TPMUT6233ONJXMFAPEDVEIF9RNC6TB9TRP0WLRUZJ0UZK9JU9EXML437K2WNF1P2EA8P4LD5VEG5TFF46RGTRPI5OI6V1POQF8UFEATKYL9W87IVH9YG1CCSWPG8JGIRBRQF0A04BG6RSCTNYDKRC4ZH5596V7EP8SKLC2F49JW04LVOS9J643EJ77X8NR8PWH3PMVGJ9D9JSSO5YIBFUY7C426CO0S12C04MS7LK96' where id=26; -update noar tt set v1='52VDF6V2BHAIANC339MVMDK20XLMHFNTERDXCIZRTFGQS2TNL9F1F2MA7HN97RNKUH3EOAZ58ZUVCM1XW0TBBQO69ZEFM4T51RPYJ1F3S4QT1IZVWN4VPF0IHP7IBF0VSR6V11EBYZHDGRZQ589DJ4RMWQAO1A36PK4Q0A1W2MQ2RIAUP9H4J5T0TSPSQWTS8DOVV3EK920F8OOHUAPB9NOJVA0SF4JXJB8MX8605AAYB5E341041VMSZ9RC08YFN' where id=26; -update noar ti set v1='52VDF6V2BHAIANC339MVMDK20XLMHFNTERDXCIZRTFGQS2TNL9F1F2MA7HN97RNKUH3EOAZ58ZUVCM1XW0TBBQO69ZEFM4T51RPYJ1F3S4QT1IZVWN4VPF0IHP7IBF0VSR6V11EBYZHDGRZQ589DJ4RMWQAO1A36PK4Q0A1W2MQ2RIAUP9H4J5T0TSPSQWTS8DOVV3EK920F8OOHUAPB9NOJVA0SF4JXJB8MX8605AAYB5E341041VMSZ9RC08YFN' where id=26; -update noar tt set v2='JHKKDWD0I2ISHDQBJGISUS6ZYYVQF9HF0FWX24NSCU8E1K5VRH8WZRP5SY5XVCUZVXS9AUH8CWIIXVQ728T0W47HJ7KR3YVY69WSTHIHI9YML9NJZ88HB1J4ZE91CXNHEPMRMD9YYG69C1H6T87T3E8BCP13882XX8VEY2SSZR2C580VN4PL0F0DE726DALIC7I0G6N3520HMCSGMHUVJLAFNWQB5RP4NM593OD6GNM2C1PB1G6JMUBX3G87J19GS' where id=26; -update noar ti set v2='JHKKDWD0I2ISHDQBJGISUS6ZYYVQF9HF0FWX24NSCU8E1K5VRH8WZRP5SY5XVCUZVXS9AUH8CWIIXVQ728T0W47HJ7KR3YVY69WSTHIHI9YML9NJZ88HB1J4ZE91CXNHEPMRMD9YYG69C1H6T87T3E8BCP13882XX8VEY2SSZR2C580VN4PL0F0DE726DALIC7I0G6N3520HMCSGMHUVJLAFNWQB5RP4NM593OD6GNM2C1PB1G6JMUBX3G87J19GS' where id=26; -update noar tt set v3='R3R8U0P7ULLNNJRKJXZEB4QA5D5DGNCQSQ98JEY8PAZS15C2SPO7RWNXIPCWXG3OWFVAMJ8AXMX5HLH4DXX6M2884DSC99RCV501FC96VBYCA6JWNH9CMYQGNTI5GM3HNEU1OTT18SI03XOX6AELE98UKUFD8J0967FPN3NLIENEEKLQKH1KUXQOY20EZNXE8T2LPQ6XIYQPYRD6L29YDMRSLVWLB39WXLBT4ZV8G1IQQD4PAHYBZHIQH07C1XJ1Z' where id=26; -update noar ti set v3='R3R8U0P7ULLNNJRKJXZEB4QA5D5DGNCQSQ98JEY8PAZS15C2SPO7RWNXIPCWXG3OWFVAMJ8AXMX5HLH4DXX6M2884DSC99RCV501FC96VBYCA6JWNH9CMYQGNTI5GM3HNEU1OTT18SI03XOX6AELE98UKUFD8J0967FPN3NLIENEEKLQKH1KUXQOY20EZNXE8T2LPQ6XIYQPYRD6L29YDMRSLVWLB39WXLBT4ZV8G1IQQD4PAHYBZHIQH07C1XJ1Z' where id=26; -update noar tt set v0='14SQ6M9B8T18XUN95SQCSS0L8VTKEJD4EBEN4WXSQRMGIUHR0TTHQ9CB0DT5NVH2F1J2OJHL98DAL3UUCUSW80GYGEOB0JMO8F285KBSW4GTM6ZV45NAS4QXSQZFMGM44W964474CBUMYUXMZ4X2279XZ0VKUS6JQUHUDG2OWOLS4SE94W3ES4B180HRU7TG5FQEHEP7RYXGETB4LY37PEM7B4BPTQA9V8H1E4PPLYSROWVBTROMBFQWYKBL6LWU4' where id=27; -update noar ti set v0='14SQ6M9B8T18XUN95SQCSS0L8VTKEJD4EBEN4WXSQRMGIUHR0TTHQ9CB0DT5NVH2F1J2OJHL98DAL3UUCUSW80GYGEOB0JMO8F285KBSW4GTM6ZV45NAS4QXSQZFMGM44W964474CBUMYUXMZ4X2279XZ0VKUS6JQUHUDG2OWOLS4SE94W3ES4B180HRU7TG5FQEHEP7RYXGETB4LY37PEM7B4BPTQA9V8H1E4PPLYSROWVBTROMBFQWYKBL6LWU4' where id=27; -update noar tt set v1='LTIKKUJMOU0JBSS9UD2N9D9ZVPFQD7A4F970DAV5D6T0VODSM7KSC4NS1X0YGSC7C504M66U8K4LMI5DDMCEI13YKFF2D23CQ7HAB9SFOKX2AW365WD3OW6Y9C3N2SMXTXVCMZWONGWICWYZ3YCK53MT5WYXKIOJCQLM1OVMP9VFUM7BOUUMEV4XX00FZ5N9GKGYA0TDM9M11ELCP22NCS37JGPBPXBWCDBGJL6IWHO8OLOZZ0MKS57RGEZNHOSGH' where id=27; -update noar ti set v1='LTIKKUJMOU0JBSS9UD2N9D9ZVPFQD7A4F970DAV5D6T0VODSM7KSC4NS1X0YGSC7C504M66U8K4LMI5DDMCEI13YKFF2D23CQ7HAB9SFOKX2AW365WD3OW6Y9C3N2SMXTXVCMZWONGWICWYZ3YCK53MT5WYXKIOJCQLM1OVMP9VFUM7BOUUMEV4XX00FZ5N9GKGYA0TDM9M11ELCP22NCS37JGPBPXBWCDBGJL6IWHO8OLOZZ0MKS57RGEZNHOSGH' where id=27; -update noar tt set v2='TLTNGXA7OUAJ0SGKV9PH4XTC118MCP2KESLQX77H47ICR16D70O0O2PS2P5FUP0U8Q0MTU9NKZZ8WAJA1A1JURF3JDKJZ5GOCLAJTLJG1RHYOJ86II4NQKJCZYCWWSPOFR1NEMLHJE3D664AI6VUYQ1OVKZ2EJ3GCSEUC8DUZI5GXRJY3E3SH4278V4ME0M2R9PD6VT8J7V5R5VH003LE7H8L5WORVHSG1788B928PMOUZR6SY0UYG3S3ZVYMHG2N' where id=27; -update noar ti set v2='TLTNGXA7OUAJ0SGKV9PH4XTC118MCP2KESLQX77H47ICR16D70O0O2PS2P5FUP0U8Q0MTU9NKZZ8WAJA1A1JURF3JDKJZ5GOCLAJTLJG1RHYOJ86II4NQKJCZYCWWSPOFR1NEMLHJE3D664AI6VUYQ1OVKZ2EJ3GCSEUC8DUZI5GXRJY3E3SH4278V4ME0M2R9PD6VT8J7V5R5VH003LE7H8L5WORVHSG1788B928PMOUZR6SY0UYG3S3ZVYMHG2N' where id=27; -update noar tt set v3='QC1MK2XJPJ4H86T1OSJ9P8PEI41QXDOVW6F46W2V6QR5FMG500S4GM73J3TVOHSDCZHQ9DJLI975BX8YQAKLIQNKKSWWLXVWN54WLADWY7W7BYR2MUBGMFK3RZH68EANDBEYE7YFJ6VVUR7NBCNQNDGCGNR9MEU8467U9BRR2UAKQJK1TTVWHBDEMJSGWR7G5G2H87GWNKKZB51IFV9E5TN3QS96QY1QM0RQODGZHTEEL7SKE1APD510AUCQ85KCB' where id=27; -update noar ti set v3='QC1MK2XJPJ4H86T1OSJ9P8PEI41QXDOVW6F46W2V6QR5FMG500S4GM73J3TVOHSDCZHQ9DJLI975BX8YQAKLIQNKKSWWLXVWN54WLADWY7W7BYR2MUBGMFK3RZH68EANDBEYE7YFJ6VVUR7NBCNQNDGCGNR9MEU8467U9BRR2UAKQJK1TTVWHBDEMJSGWR7G5G2H87GWNKKZB51IFV9E5TN3QS96QY1QM0RQODGZHTEEL7SKE1APD510AUCQ85KCB' where id=27; -update noar tt set v0='BM9UY69WUYPP2FSIR7DAD8M18G0V1WCLXZQ9YF3Z4AT9G02AO4P5ZJU3LOIDZ2IJY9X6ZND8SIJK258GSTKUUCD0MP29BIR3ZH2Z15YHQDAP914MU0CHY96XM3QHA61C6AJEFJOS19BP57ZYIZZNGHZ6231N4Q30F9NZDRLWMQNNH2XQNX2EU4VMIJ70QPUB5322OMBYHYT8H11095IICUI6XD1D9GDAEZO2H15DCI8TXL7HVCITTDCTVU1UMENZX' where id=28; -update noar ti set v0='BM9UY69WUYPP2FSIR7DAD8M18G0V1WCLXZQ9YF3Z4AT9G02AO4P5ZJU3LOIDZ2IJY9X6ZND8SIJK258GSTKUUCD0MP29BIR3ZH2Z15YHQDAP914MU0CHY96XM3QHA61C6AJEFJOS19BP57ZYIZZNGHZ6231N4Q30F9NZDRLWMQNNH2XQNX2EU4VMIJ70QPUB5322OMBYHYT8H11095IICUI6XD1D9GDAEZO2H15DCI8TXL7HVCITTDCTVU1UMENZX' where id=28; -update noar tt set v1='5OKWR34LOOG9BEAJU34OQHKU0M3IDR1OUKRTJPFJHFUH5KFQZMO1SNEY2UTH8HYMYP8UCC6H9I41H267VA098KKFA24G1IFGW7QCFKL7O33L4H2FO7EXA4L9V3DU79FNMG5TZMQ19DYNBJNIZ1MEUZQG2DLITIMRFTG1PIQPOWXGRUMESUTEZRN7WTLYM7BTD8MEJ2DOJZKPAWL80GS0RPWY0CVRAQR7WLAB7D256N414WXF3RK7HT3PEBQGY3DB8' where id=28; -update noar ti set v1='5OKWR34LOOG9BEAJU34OQHKU0M3IDR1OUKRTJPFJHFUH5KFQZMO1SNEY2UTH8HYMYP8UCC6H9I41H267VA098KKFA24G1IFGW7QCFKL7O33L4H2FO7EXA4L9V3DU79FNMG5TZMQ19DYNBJNIZ1MEUZQG2DLITIMRFTG1PIQPOWXGRUMESUTEZRN7WTLYM7BTD8MEJ2DOJZKPAWL80GS0RPWY0CVRAQR7WLAB7D256N414WXF3RK7HT3PEBQGY3DB8' where id=28; -update noar tt set v2='YUN0QFB9UB4C76P409QXBBVIX77MYH425FL4S3VZNPRJREJZ8V9B3SKLAWONL84HZKF4T4S9SRJKMGYNPHHEJ27C5SXCDTJ2S23DRB7O0NNJUO5ZIRKTZZASME1KYCNGKUP4LNKKWZ2XWE3U990RCDJ91D61WCX5E9TAH6OGSMK9AYALFSE3BFSHY7LFHGYOUZQJFNNX3DGX8N7CXSLU3XC7RIZCTLVMQDDTJYJGF08RNASW1KQI1EBOENNRMPNBR' where id=28; -update noar ti set v2='YUN0QFB9UB4C76P409QXBBVIX77MYH425FL4S3VZNPRJREJZ8V9B3SKLAWONL84HZKF4T4S9SRJKMGYNPHHEJ27C5SXCDTJ2S23DRB7O0NNJUO5ZIRKTZZASME1KYCNGKUP4LNKKWZ2XWE3U990RCDJ91D61WCX5E9TAH6OGSMK9AYALFSE3BFSHY7LFHGYOUZQJFNNX3DGX8N7CXSLU3XC7RIZCTLVMQDDTJYJGF08RNASW1KQI1EBOENNRMPNBR' where id=28; -update noar tt set v3='FQGWZ0W7ZCBJO3PP2GAT5IU7TEDZ77EJVP0AAPNR3WYQNAQUCANIC4FO0ALR91KWYVQY9FFKPU4WVLRCFW6DAS4UUF49ESB3WLJ2OCFI36BMXDUPJJQ4P7XPLR6DUZ8KL95990QJHPXTQU19TYV7XAKR48GMD58995CP1G4PTNDUHSIJFG3EGO1EXC24BAYOMDYCNN9AMH7EXYTESS5DMTP3JHXMUEISK7VNDRBPKZYFN67WJ2KE3TDSKF6BA7BQU' where id=28; -update noar ti set v3='FQGWZ0W7ZCBJO3PP2GAT5IU7TEDZ77EJVP0AAPNR3WYQNAQUCANIC4FO0ALR91KWYVQY9FFKPU4WVLRCFW6DAS4UUF49ESB3WLJ2OCFI36BMXDUPJJQ4P7XPLR6DUZ8KL95990QJHPXTQU19TYV7XAKR48GMD58995CP1G4PTNDUHSIJFG3EGO1EXC24BAYOMDYCNN9AMH7EXYTESS5DMTP3JHXMUEISK7VNDRBPKZYFN67WJ2KE3TDSKF6BA7BQU' where id=28; -update noar tt set v0='PR12EJBD6QG7FV4GNQ69DLY5XJX8EP8RDOR2PU9KCOKD7KHC9ENURHO3D96GI799B5ISM093XN0ROHOAKHNDRN6CFEAYXBFP00RFYJTRT6CCT2A7D15HBKMTWLVK5WAXH3KMRN3IT6LTK0ZORN9X4B2MU2N5MAPZJL2WL7L5KAECFL8I2LHNH836P6TW119IDQINDC7W4S603TSNGNRER47ATJ5Z7REEQII7B4EWMB3KX2TQ0QY8QZV591DT447PH' where id=29; -update noar ti set v0='PR12EJBD6QG7FV4GNQ69DLY5XJX8EP8RDOR2PU9KCOKD7KHC9ENURHO3D96GI799B5ISM093XN0ROHOAKHNDRN6CFEAYXBFP00RFYJTRT6CCT2A7D15HBKMTWLVK5WAXH3KMRN3IT6LTK0ZORN9X4B2MU2N5MAPZJL2WL7L5KAECFL8I2LHNH836P6TW119IDQINDC7W4S603TSNGNRER47ATJ5Z7REEQII7B4EWMB3KX2TQ0QY8QZV591DT447PH' where id=29; -update noar tt set v1='E3Z9UQF3FBTD08OF9XZJT4U4JCY6G6U5BH9GHBXVMSZYQWBFJS20Y2VI18QTHQXQWKJN78QZ6ID6B21RO5A6EE9ZCIW3430TOHALN2MTGBJNNB6909R1UXM2CZ7VSN7P3WVSA2J78TILHTC8DFGSLJ7GNCX266C2VVDE7NSPSW335FXRO95J8P697GYK6976YKWBIEZYTH7WE8FOVCHNDDM8CN7IZ6TVTTA0B55V9B56KT3DH9FOHAYYPOZX99CCE' where id=29; -update noar ti set v1='E3Z9UQF3FBTD08OF9XZJT4U4JCY6G6U5BH9GHBXVMSZYQWBFJS20Y2VI18QTHQXQWKJN78QZ6ID6B21RO5A6EE9ZCIW3430TOHALN2MTGBJNNB6909R1UXM2CZ7VSN7P3WVSA2J78TILHTC8DFGSLJ7GNCX266C2VVDE7NSPSW335FXRO95J8P697GYK6976YKWBIEZYTH7WE8FOVCHNDDM8CN7IZ6TVTTA0B55V9B56KT3DH9FOHAYYPOZX99CCE' where id=29; -update noar tt set v2='E1IZ53SPMWVTHH356XGEFAOKNMJ6RNSLPJVEEF738LOQW3T2GJOREJPDFDM9WCZ5JM1ZD1VEU5MYDOCN09H5PXDAX140GL4C1CYM9WI51BP7PPXXTMBWSR2BWL3MKJ9GUMUEU44LECULA7AYBPOIO0F1GQQLS4CMKBXE6LI1EYRQ23357K1GV7DG2QR9UYJI44DSWDXHUS8322WO9R1OBBU4U3DF11GGGAFOE2YOLUC1SB7UZUAS8FLEXXY633DX6' where id=29; -update noar ti set v2='E1IZ53SPMWVTHH356XGEFAOKNMJ6RNSLPJVEEF738LOQW3T2GJOREJPDFDM9WCZ5JM1ZD1VEU5MYDOCN09H5PXDAX140GL4C1CYM9WI51BP7PPXXTMBWSR2BWL3MKJ9GUMUEU44LECULA7AYBPOIO0F1GQQLS4CMKBXE6LI1EYRQ23357K1GV7DG2QR9UYJI44DSWDXHUS8322WO9R1OBBU4U3DF11GGGAFOE2YOLUC1SB7UZUAS8FLEXXY633DX6' where id=29; -update noar tt set v3='EHYOUSMDAJA6HFP3RN7FWVK2JHW1J3CGDG32QD93SA6BWZ3RB8YGX825H8H7KJRG7TBI2HEZV8ZV3XO9P2YFJ6R3CG1RZPWA01U2EFERK62KM6I43GFDYVTRHD59NPC1YGP1KW5EMI0J8MRQNHHUI1FBKK15YJPJR2TO16NZZGDHCI1IYE0XXDDSM52OYV9T69XBB4W8RTRDZS7KWH3YNB2R5JSKHF17EZNTY8P5OBB96T55NYHZKEE77484IB4FS' where id=29; -update noar ti set v3='EHYOUSMDAJA6HFP3RN7FWVK2JHW1J3CGDG32QD93SA6BWZ3RB8YGX825H8H7KJRG7TBI2HEZV8ZV3XO9P2YFJ6R3CG1RZPWA01U2EFERK62KM6I43GFDYVTRHD59NPC1YGP1KW5EMI0J8MRQNHHUI1FBKK15YJPJR2TO16NZZGDHCI1IYE0XXDDSM52OYV9T69XBB4W8RTRDZS7KWH3YNB2R5JSKHF17EZNTY8P5OBB96T55NYHZKEE77484IB4FS' where id=29; -update noar tt set v0='A8SOCOKOXSANBDWQVMJ4ERXE4CSFKV8D4B0KSAER0API3SJ6G6FQ8VXGFPNVOQ4OU0K2FT1Z78WK3SBTELGT7PLCJ8JE0KAVUWFXGHNMOTQQXB5GEYT0UJLFRR201TLROF3VZPSJ63N4KXSC5UWSXLLMNRBFQ78XVIXKQKFQ9QBUQV3RNUOVR9DPETTM88OZBWWW3NDSWVATQRYTFGNMEEQOO4NS8ZQ484PMLD0YUG2ENQP6M12TX11V5O8S6BEAW' where id=30; -update noar ti set v0='A8SOCOKOXSANBDWQVMJ4ERXE4CSFKV8D4B0KSAER0API3SJ6G6FQ8VXGFPNVOQ4OU0K2FT1Z78WK3SBTELGT7PLCJ8JE0KAVUWFXGHNMOTQQXB5GEYT0UJLFRR201TLROF3VZPSJ63N4KXSC5UWSXLLMNRBFQ78XVIXKQKFQ9QBUQV3RNUOVR9DPETTM88OZBWWW3NDSWVATQRYTFGNMEEQOO4NS8ZQ484PMLD0YUG2ENQP6M12TX11V5O8S6BEAW' where id=30; -update noar tt set v1='UZCU1TSDNZB5Z6R0JR916UOWDGK9OBCPA8R5XYYGXZIYRC36JF07CBNRIWYZJ4J0P695TY731DFUAIW10AHHBIOWKVET3MA1XDQUMH2AESGI7XKSYQN0802I4A9YIL7BBBGBO0RAGC5GXVOAGATVP93AFPHHWZZGKKCD1KUJ0SI158PQGZ4YA8814TS951ONGJ1FCVM7U7UII13SNCWD3QE7FAOU6G7XDFTCHAR9E5HFZNLY2V09YSLX9Y2ZB1BNS' where id=30; -update noar ti set v1='UZCU1TSDNZB5Z6R0JR916UOWDGK9OBCPA8R5XYYGXZIYRC36JF07CBNRIWYZJ4J0P695TY731DFUAIW10AHHBIOWKVET3MA1XDQUMH2AESGI7XKSYQN0802I4A9YIL7BBBGBO0RAGC5GXVOAGATVP93AFPHHWZZGKKCD1KUJ0SI158PQGZ4YA8814TS951ONGJ1FCVM7U7UII13SNCWD3QE7FAOU6G7XDFTCHAR9E5HFZNLY2V09YSLX9Y2ZB1BNS' where id=30; -update noar tt set v2='UQO8AFUSLDZKCMQAPRTEFZ3T20WLELNA0A8ALYCM52A0KWNDOAJYGNK35C6F3ZJMBLGU4ZYT0GTUHPXWT1GPCW26DQWIX4S4DS7HXKYKCLF86EAGWQCW37D3R7LZ8CLNNHW8TUU4Y028EVN93RIQGNNW9L21XX9WAHSZEWLFAMPMZXM1VI4VR7WTB8R0XOIBLZH0GFFNYF86R8CTD2H3NUGNUMKYT7ZR9QC22ZYIY9EBU9E7XDTFQI6SM6N6AY6Q0' where id=30; -update noar ti set v2='UQO8AFUSLDZKCMQAPRTEFZ3T20WLELNA0A8ALYCM52A0KWNDOAJYGNK35C6F3ZJMBLGU4ZYT0GTUHPXWT1GPCW26DQWIX4S4DS7HXKYKCLF86EAGWQCW37D3R7LZ8CLNNHW8TUU4Y028EVN93RIQGNNW9L21XX9WAHSZEWLFAMPMZXM1VI4VR7WTB8R0XOIBLZH0GFFNYF86R8CTD2H3NUGNUMKYT7ZR9QC22ZYIY9EBU9E7XDTFQI6SM6N6AY6Q0' where id=30; -update noar tt set v3='O8VP1VV8KFCC1VDBP96SC07ONPBV43RU9A939XNP18AYPKN1O7V8088VK70P3Y4TLGKNKQERUYQE2CI0RJSSNDCPIEC08GKNDOB7VEWSK5RJHNR6YPV800DXIZV9BBY0VOCQE30AHN6ZKQVW52AORWHEOHTSSHZN3MJAZZZ7MQKROJJ7SC0GP5WEBJ4CH882EWE8XWCT4UWNUCDENGOB56QXLOX9XMNBH35INO016TNCO0V2W9K39CWDDZ860MXQ2' where id=30; -update noar ti set v3='O8VP1VV8KFCC1VDBP96SC07ONPBV43RU9A939XNP18AYPKN1O7V8088VK70P3Y4TLGKNKQERUYQE2CI0RJSSNDCPIEC08GKNDOB7VEWSK5RJHNR6YPV800DXIZV9BBY0VOCQE30AHN6ZKQVW52AORWHEOHTSSHZN3MJAZZZ7MQKROJJ7SC0GP5WEBJ4CH882EWE8XWCT4UWNUCDENGOB56QXLOX9XMNBH35INO016TNCO0V2W9K39CWDDZ860MXQ2' where id=30; -update noar tt set v0='IB0Z7TPVX8Q2TA32KC6S89FE2VEB82FGEJ8L67EI5ZRRE0G0H0G3PBYJI8E2H8NSDNCU2UNY8MRM8WOY5KOU6VTN5G5O2ZPK6Z9OSD5DZ44HWJJN2AQ0VOEA21LMJ71FMI0DQ17JSTU15MUFW5N5TY5LLI6FWX8HF4W5BNO8Z5ULNGJPO18XMCIQD7Z0ROA926YQ9BLTSCICLNGIXFA7FKSTDQIVFPEY9MGFZGRRJOG26IEFFS6SGD0P4DWV1NFY9' where id=31; -update noar ti set v0='IB0Z7TPVX8Q2TA32KC6S89FE2VEB82FGEJ8L67EI5ZRRE0G0H0G3PBYJI8E2H8NSDNCU2UNY8MRM8WOY5KOU6VTN5G5O2ZPK6Z9OSD5DZ44HWJJN2AQ0VOEA21LMJ71FMI0DQ17JSTU15MUFW5N5TY5LLI6FWX8HF4W5BNO8Z5ULNGJPO18XMCIQD7Z0ROA926YQ9BLTSCICLNGIXFA7FKSTDQIVFPEY9MGFZGRRJOG26IEFFS6SGD0P4DWV1NFY9' where id=31; -update noar tt set v1='KA5048BUOODD90DRYV4B9EY1UVLK1FLT37YGK2ZCYB2CNIAFQYWPAZZE6PDZEWZX0UXYANT38QJS04Q6JWV7YOUFZIONH9EIEWTL6KPH20LQSG466782PVVEZ4LWY7U31DDNJ6AADVF38ZHC6026WNNUAMQB6HWH7K3LW6K830J6R7ZXEWWVMQRGP09Q3QSXTA62C5CFY604U8R24F0KZKS0B27LSLF5CZPSZMIXTNZE7QLEYJJ234TA6O331CEFK' where id=31; -update noar ti set v1='KA5048BUOODD90DRYV4B9EY1UVLK1FLT37YGK2ZCYB2CNIAFQYWPAZZE6PDZEWZX0UXYANT38QJS04Q6JWV7YOUFZIONH9EIEWTL6KPH20LQSG466782PVVEZ4LWY7U31DDNJ6AADVF38ZHC6026WNNUAMQB6HWH7K3LW6K830J6R7ZXEWWVMQRGP09Q3QSXTA62C5CFY604U8R24F0KZKS0B27LSLF5CZPSZMIXTNZE7QLEYJJ234TA6O331CEFK' where id=31; -update noar tt set v2='V3IWJA42H3WKWUY7RKSP5FP8NGIZD00CIAI5ZB1RMXAHROTKZPFNYAQM8JJIDFYBD5IOJM9A9JEZPWGHYRKWKBQWBT32EVV2IBHD6MYIYDC3VN36Y2JZ819U85MQDJWQL7UUKFR3MINVQKJA1P7NNJ3MX2D0DKGAOYYM4XGIEDJQG4MB8RMDVVEJMC6R5CQCR81TTL0NJG21ZSG0AKR097J5DAJYFJG8PGM00DISDZ1PXOIL0I1C7EDEFBCRVGBFU' where id=31; -update noar ti set v2='V3IWJA42H3WKWUY7RKSP5FP8NGIZD00CIAI5ZB1RMXAHROTKZPFNYAQM8JJIDFYBD5IOJM9A9JEZPWGHYRKWKBQWBT32EVV2IBHD6MYIYDC3VN36Y2JZ819U85MQDJWQL7UUKFR3MINVQKJA1P7NNJ3MX2D0DKGAOYYM4XGIEDJQG4MB8RMDVVEJMC6R5CQCR81TTL0NJG21ZSG0AKR097J5DAJYFJG8PGM00DISDZ1PXOIL0I1C7EDEFBCRVGBFU' where id=31; -update noar tt set v3='VWJAN93Y8M3HX5N6KGMQIBWU121BYJVUTM2T1X8YUYMHVWBV4LHCVLJEVZYIH0QR9O1LFY60QXM1YE7SWXW9C2J1MB9RYLG03BCLEI3ZVMJVFJDZ3A4Q7L85D5QQPBQXYI12P8NNRVQLLK4FH40RVF7WCGBP1NXU4O4NHLAWB1XJS4KBOQJZXVRL4RV62RY8R9YOQ0798CRGT06MNA6DICQTIMJLG20S78VMRR9MS0KSEU4XF0TPMM2204I91IDDR' where id=31; -update noar ti set v3='VWJAN93Y8M3HX5N6KGMQIBWU121BYJVUTM2T1X8YUYMHVWBV4LHCVLJEVZYIH0QR9O1LFY60QXM1YE7SWXW9C2J1MB9RYLG03BCLEI3ZVMJVFJDZ3A4Q7L85D5QQPBQXYI12P8NNRVQLLK4FH40RVF7WCGBP1NXU4O4NHLAWB1XJS4KBOQJZXVRL4RV62RY8R9YOQ0798CRGT06MNA6DICQTIMJLG20S78VMRR9MS0KSEU4XF0TPMM2204I91IDDR' where id=31; -update noar tt set v0='O3E5NHT1DJTJ6B1C8DTGNZUJYFHS1BVUQAN02YCRH10H6NP9PWAYUUC43MC3KE42Y5HUS1J1HIVUR5MS439C8KE3WHD26JRRU58M0L6OBMJXJNGTRM1TYWY0K6FO7BWLUUIXZ12140NIU8Z0MEZX6G8X7VXW5NMMA9R27DN1XFMD4858KY3A48LPTTLN36ZIT25K45T7XVT2VM8YIX53OIWXQVY0069ZKRU94YDM6UR2IH99IC7EX2QJ80W1S2SHK' where id=32; -update noar ti set v0='O3E5NHT1DJTJ6B1C8DTGNZUJYFHS1BVUQAN02YCRH10H6NP9PWAYUUC43MC3KE42Y5HUS1J1HIVUR5MS439C8KE3WHD26JRRU58M0L6OBMJXJNGTRM1TYWY0K6FO7BWLUUIXZ12140NIU8Z0MEZX6G8X7VXW5NMMA9R27DN1XFMD4858KY3A48LPTTLN36ZIT25K45T7XVT2VM8YIX53OIWXQVY0069ZKRU94YDM6UR2IH99IC7EX2QJ80W1S2SHK' where id=32; -update noar tt set v1='UCY7ZLOQWXX3W9GPJCOHKDO8R5I6E33JDIFY77KXR4HCZ05FUKHMU5GZ6OQI3EB48AUHV63TSP5XL80JB4BE7W62I85T28MK866TVT1583CPMS9Y6IEM2QJW8RD2837NFO8RR35DLP8OS4S88LP5U77ZM2XREJZG4AUAW7W99ZVTMBDVSKZYLNLZYIDBM6NHQ2N1TX8IJITKI8WAMVV3CTB0YB78U3ZRN8PKWMLCHVP2Z28NUVHBXHJJYD89IWF9H' where id=32; -update noar ti set v1='UCY7ZLOQWXX3W9GPJCOHKDO8R5I6E33JDIFY77KXR4HCZ05FUKHMU5GZ6OQI3EB48AUHV63TSP5XL80JB4BE7W62I85T28MK866TVT1583CPMS9Y6IEM2QJW8RD2837NFO8RR35DLP8OS4S88LP5U77ZM2XREJZG4AUAW7W99ZVTMBDVSKZYLNLZYIDBM6NHQ2N1TX8IJITKI8WAMVV3CTB0YB78U3ZRN8PKWMLCHVP2Z28NUVHBXHJJYD89IWF9H' where id=32; -update noar tt set v2='VQL8O3HNFP7N14ISQ326AEJ9I7KJD7LW9DPRZR5VO2SLON787MPB5DT2NFAMS3QQ3YMFDPUKZQKC6TWCNCVGE5SFI52XL20B06IFPE06ZJTXODN6WESAW92QR4KS9LG0D56832YRXS8F3CR78KXX699PXNY4V07M117NBBLCNCWH0R1MUILN88QK1K57DGF8XEOFYXKJNTZOQ4P7V4YZB4C62CNF7OD162RKR4RTADBISYLT2O5LNUS3R0M8DDJKF' where id=32; -update noar ti set v2='VQL8O3HNFP7N14ISQ326AEJ9I7KJD7LW9DPRZR5VO2SLON787MPB5DT2NFAMS3QQ3YMFDPUKZQKC6TWCNCVGE5SFI52XL20B06IFPE06ZJTXODN6WESAW92QR4KS9LG0D56832YRXS8F3CR78KXX699PXNY4V07M117NBBLCNCWH0R1MUILN88QK1K57DGF8XEOFYXKJNTZOQ4P7V4YZB4C62CNF7OD162RKR4RTADBISYLT2O5LNUS3R0M8DDJKF' where id=32; -update noar tt set v3='QOTFGZC3MKU8AAFZWBN07SE9DZOSFSO42NYUZIDKHEF596JTWJAHBQY1ZF6RXF5YOAT3HJM1C1NTG91A7J6SCKWK1G5OR2XKGUSK9OYFL5UXT1EJKYZP5BH7XEFBZ6M6RFS12FAE7OAVJF3OTY567ASC8DJB0SSWH4ULATMUUOO6MVZHPQFSKS4W201QY2S68DG18GJBT6ZJAC90I7IF2EDXYPXM1E0VMMYZJK9TM14VSU3ZJAFLAI2GGJPQQQJ11' where id=32; -update noar ti set v3='QOTFGZC3MKU8AAFZWBN07SE9DZOSFSO42NYUZIDKHEF596JTWJAHBQY1ZF6RXF5YOAT3HJM1C1NTG91A7J6SCKWK1G5OR2XKGUSK9OYFL5UXT1EJKYZP5BH7XEFBZ6M6RFS12FAE7OAVJF3OTY567ASC8DJB0SSWH4ULATMUUOO6MVZHPQFSKS4W201QY2S68DG18GJBT6ZJAC90I7IF2EDXYPXM1E0VMMYZJK9TM14VSU3ZJAFLAI2GGJPQQQJ11' where id=32; -update noar tt set v0='XD6GMOBPO8POPL6K4RJOJYZR7PNROL2RRAVVUMMSMCB0H3I7VNOJWFV5TG7KDMEJT5K636GTLAGSGDHA9006Z31I63I59ZQZABVFQR4HR4L3LSXF8S3IJ2OM5ZDFOM6SMEIPIFKITY9AIWRA7NMRD6GUD3V2HLDEZGU10PLPAIUGHTTE10WP6E895L3XE3JC0FAF2R42H7CJSMGWF3T0JYLT03PAR482MMFUF0HT0M90QU4ZVNTTW3K94BLDPN4W1' where id=33; -update noar ti set v0='XD6GMOBPO8POPL6K4RJOJYZR7PNROL2RRAVVUMMSMCB0H3I7VNOJWFV5TG7KDMEJT5K636GTLAGSGDHA9006Z31I63I59ZQZABVFQR4HR4L3LSXF8S3IJ2OM5ZDFOM6SMEIPIFKITY9AIWRA7NMRD6GUD3V2HLDEZGU10PLPAIUGHTTE10WP6E895L3XE3JC0FAF2R42H7CJSMGWF3T0JYLT03PAR482MMFUF0HT0M90QU4ZVNTTW3K94BLDPN4W1' where id=33; -update noar tt set v1='UHZ23YKNC4EAKAL7U3C84W0J5FHDMIMJB9CHK6NCMJ84LYO0OW201K68BSU7VTUVUW68HQ0MKRS2RCD36WNOT5I9HE4R2VUS4XJA546EJH0T8JNQ46SWCVY1AO0SAUNVP2ZIFLCUCR4Z4R8M4C7XS44H2WHDZQI7IYKLP430PN5DZT974CB4M6EU3YYUU26IZHQ4YQ7DZBADO2ETPG8V4843UK19H2SAMXGOFIWA4YL6QQ0D0TZ353M8M8APSDLF3' where id=33; -update noar ti set v1='UHZ23YKNC4EAKAL7U3C84W0J5FHDMIMJB9CHK6NCMJ84LYO0OW201K68BSU7VTUVUW68HQ0MKRS2RCD36WNOT5I9HE4R2VUS4XJA546EJH0T8JNQ46SWCVY1AO0SAUNVP2ZIFLCUCR4Z4R8M4C7XS44H2WHDZQI7IYKLP430PN5DZT974CB4M6EU3YYUU26IZHQ4YQ7DZBADO2ETPG8V4843UK19H2SAMXGOFIWA4YL6QQ0D0TZ353M8M8APSDLF3' where id=33; -update noar tt set v2='5NBNKIO5LYRW5QECL4ZT4W0R9I6GDM2F3819LR0GTWV0GPW652R6UHFOW2FTYVO3IPH1T5OVQ6K6AYM5KEW0O1PJVCNY0YQUY9A4NTHD4SDPKLFXSRO16MWCIZZ05WQO5TEV1TE826ZAW50WI4N2OWCBAMCD4MOAE879NNVSGB6I0HEPUHHG8U6HFSDODEU5GDHX1PFCS49H9H7N0KJOIJ23C3I61X1IVE5MJY5FNE9CHG3COKZF41Z7H61WFGT6F' where id=33; -update noar ti set v2='5NBNKIO5LYRW5QECL4ZT4W0R9I6GDM2F3819LR0GTWV0GPW652R6UHFOW2FTYVO3IPH1T5OVQ6K6AYM5KEW0O1PJVCNY0YQUY9A4NTHD4SDPKLFXSRO16MWCIZZ05WQO5TEV1TE826ZAW50WI4N2OWCBAMCD4MOAE879NNVSGB6I0HEPUHHG8U6HFSDODEU5GDHX1PFCS49H9H7N0KJOIJ23C3I61X1IVE5MJY5FNE9CHG3COKZF41Z7H61WFGT6F' where id=33; -update noar tt set v3='2Z7CL7TZ3WYE0KSGC84QVQTQ9HJRYIE4AFR6ZBIWC502095GO3NRTN8UUFOQEQNVMMYUYMWOANQ9SZC3086YQJEBAGRYCNLPTX5BYW8X35FP3QAJ9KLILM856Q7AESEZ1AYBMV75CQRO5OG4BRWB6MV76BSYTXQ7U9NFTK6G8O5HI1CPTCB80O26WHQ79N0BJZFBEET4EX5ID744V7RL08AFMT0FO7U1CCLX53RLD302BZ5TNJKBLFXGC1G60QX8B' where id=33; -update noar ti set v3='2Z7CL7TZ3WYE0KSGC84QVQTQ9HJRYIE4AFR6ZBIWC502095GO3NRTN8UUFOQEQNVMMYUYMWOANQ9SZC3086YQJEBAGRYCNLPTX5BYW8X35FP3QAJ9KLILM856Q7AESEZ1AYBMV75CQRO5OG4BRWB6MV76BSYTXQ7U9NFTK6G8O5HI1CPTCB80O26WHQ79N0BJZFBEET4EX5ID744V7RL08AFMT0FO7U1CCLX53RLD302BZ5TNJKBLFXGC1G60QX8B' where id=33; -update noar tt set v0='96BHOUVW5ZGEHU12H02DMDKYX2UD5J4V4QLW3IQY7G2S7ZG8O49N6C3KI0AGUJCMNA06KOC52SZIK4Z4EGGZHMX53HB5F1WMI832BOOI6R5JU8QC3TECJVZS6XX6H3BAVEIZQ5I410GTVDEZPVIL7MNLZ9QWWVMR28WNJDZGK29R9QWZ6FRH4S5MLJL8DS6MJ4UUALBCMF24EORNATDG3QT4EEIU9A3XTGWIMACMRL5KRUB1JD4QK6030AFB06ONC' where id=34; -update noar ti set v0='96BHOUVW5ZGEHU12H02DMDKYX2UD5J4V4QLW3IQY7G2S7ZG8O49N6C3KI0AGUJCMNA06KOC52SZIK4Z4EGGZHMX53HB5F1WMI832BOOI6R5JU8QC3TECJVZS6XX6H3BAVEIZQ5I410GTVDEZPVIL7MNLZ9QWWVMR28WNJDZGK29R9QWZ6FRH4S5MLJL8DS6MJ4UUALBCMF24EORNATDG3QT4EEIU9A3XTGWIMACMRL5KRUB1JD4QK6030AFB06ONC' where id=34; -update noar tt set v1='W6LX7F2N5U0D5T4F6L750TTUKYLFCYZGZCCQ7NPV6A4BOBD7TQDP0XIQSREZ1EED9PYWSY64QH183DXTBQRRTW0ARFXZS81QSFIN6O7UGFWVY1G5C748KW9GEPOEHK3CF9IMJHBSDRXBSL0A7KVOP822UKCYTQU51ADRQEPZRCVFP2S8RSUDWQ727VJ7P6IZF0R1G3PLA5EL0WOM4RZPVQ0RQM4H1IE8HC7KPBV4KL574X8X567G5GTOE5NT4KTWE' where id=34; -update noar ti set v1='W6LX7F2N5U0D5T4F6L750TTUKYLFCYZGZCCQ7NPV6A4BOBD7TQDP0XIQSREZ1EED9PYWSY64QH183DXTBQRRTW0ARFXZS81QSFIN6O7UGFWVY1G5C748KW9GEPOEHK3CF9IMJHBSDRXBSL0A7KVOP822UKCYTQU51ADRQEPZRCVFP2S8RSUDWQ727VJ7P6IZF0R1G3PLA5EL0WOM4RZPVQ0RQM4H1IE8HC7KPBV4KL574X8X567G5GTOE5NT4KTWE' where id=34; -update noar tt set v2='V21AICMQ729RR0PNVVIH4AWH525N5TOR7GTAEBZ6W7UDQ30B5IACD91YI5Y12DM4YF01PQNIMNB42W983NVRZWSLFEYAP2ESXJELLETUNXPB33KR9R78ZPAI8S9FABROTD8QKUHQ8PVTHDGYWA4KPVRCINQS42FALYX324VHUE7UASJVK99M5XMS70FKU8683I2JSFHDGTP8178TFZCRRD6XZO364EFSMEDF96U4EXEO5CV3OKKE2OUWI6QGPKB4Q' where id=34; -update noar ti set v2='V21AICMQ729RR0PNVVIH4AWH525N5TOR7GTAEBZ6W7UDQ30B5IACD91YI5Y12DM4YF01PQNIMNB42W983NVRZWSLFEYAP2ESXJELLETUNXPB33KR9R78ZPAI8S9FABROTD8QKUHQ8PVTHDGYWA4KPVRCINQS42FALYX324VHUE7UASJVK99M5XMS70FKU8683I2JSFHDGTP8178TFZCRRD6XZO364EFSMEDF96U4EXEO5CV3OKKE2OUWI6QGPKB4Q' where id=34; -update noar tt set v3='BNJRCA1JX2QYXRADCXY75J5AGEEIY4HNKQUU2T662TRZKS59SLE6M4RFI5IQCK2KBK9SG1MMB6VB61YVK1XGWB17OFI6FSFADXGRGHQDMJ74MDGSYS8ZAMES8E3F9V29PXF0BKOA7A6QDXBXEO43KWQELU6FMWC6XIXRICV3VM734PWT7AX8O8T533H8UYQUTBD8GTQPNZV9T1CHSQKA96ZUY8TFWY5NN6KF8N5ET50ATE0XRUVY6V0ETCE31YIP4' where id=34; -update noar ti set v3='BNJRCA1JX2QYXRADCXY75J5AGEEIY4HNKQUU2T662TRZKS59SLE6M4RFI5IQCK2KBK9SG1MMB6VB61YVK1XGWB17OFI6FSFADXGRGHQDMJ74MDGSYS8ZAMES8E3F9V29PXF0BKOA7A6QDXBXEO43KWQELU6FMWC6XIXRICV3VM734PWT7AX8O8T533H8UYQUTBD8GTQPNZV9T1CHSQKA96ZUY8TFWY5NN6KF8N5ET50ATE0XRUVY6V0ETCE31YIP4' where id=34; -update noar tt set v0='8KBV6X4UKRJDPYWYI63STCRG47D369Q2YK2TNX3DJNUBLP41BZOVMKGRY0LB4PN4SNZWBZWZBB7SB61S2SWY9WAZWF1OD2W8GBUDVC1AZQPDGWH2434AQBUSXW8TZ7R3YAH1IHGKLKH9O0P60KGGHLKJIBMSP3SXKCE95UEDB8DE7N1EKCFJRBO0D6SIZ87L5JYXTB0MV43LZCFM6VI9CHHS02KH9HK0EC32VIT6J1NFV5VR7TMPM0Z6P3RAP4EJ9' where id=35; -update noar ti set v0='8KBV6X4UKRJDPYWYI63STCRG47D369Q2YK2TNX3DJNUBLP41BZOVMKGRY0LB4PN4SNZWBZWZBB7SB61S2SWY9WAZWF1OD2W8GBUDVC1AZQPDGWH2434AQBUSXW8TZ7R3YAH1IHGKLKH9O0P60KGGHLKJIBMSP3SXKCE95UEDB8DE7N1EKCFJRBO0D6SIZ87L5JYXTB0MV43LZCFM6VI9CHHS02KH9HK0EC32VIT6J1NFV5VR7TMPM0Z6P3RAP4EJ9' where id=35; -update noar tt set v1='CHV4OBDGYWDKHDDPQLBGQD5PZXNBIGZNRVBPELV3051ROSAS9H2OTAB6FFW75WZN97BDTLWP34H79GMA6C4VWC4W6CLZIG3A44O28HZCK3ZGQR9INLXXUVJ4CZ82T4FFKCHW0TZ0QHDGMDHW6E93E08IIVAAJ5NR6ZZWHFGR93TTIGCSQYWRNLODTBM9MGA8X41POBIWSN38746BFKAK294VQZBCJ1JAUPUBVX1QJ7ZSEKKM9X2TAT6BOCB19WE1B' where id=35; -update noar ti set v1='CHV4OBDGYWDKHDDPQLBGQD5PZXNBIGZNRVBPELV3051ROSAS9H2OTAB6FFW75WZN97BDTLWP34H79GMA6C4VWC4W6CLZIG3A44O28HZCK3ZGQR9INLXXUVJ4CZ82T4FFKCHW0TZ0QHDGMDHW6E93E08IIVAAJ5NR6ZZWHFGR93TTIGCSQYWRNLODTBM9MGA8X41POBIWSN38746BFKAK294VQZBCJ1JAUPUBVX1QJ7ZSEKKM9X2TAT6BOCB19WE1B' where id=35; -update noar tt set v2='01AMHL7K1YHLRCBUJWGMEZW9NJXXRAWOQTX273P4302T2HLTT5MHT6WG40ABVIP57D8VWDT1N5CXGV5T4BIA2FKXS8LQ5OA9YZO5YQSGXEIT5T7NSBQKWV9TR8QUPBAXGL72LHBJLDWWAF3DXG7GRYOYLL2CS8J27YUGJUVOCCYWXE938Z5OU2CUMP7X2I7FD6AOCN8RRQCDN2MKPB3NWL1IJ23L7MIWQV9L29RB4M9EVQPC3NVZVX3W0TPRZSEYJ' where id=35; -update noar ti set v2='01AMHL7K1YHLRCBUJWGMEZW9NJXXRAWOQTX273P4302T2HLTT5MHT6WG40ABVIP57D8VWDT1N5CXGV5T4BIA2FKXS8LQ5OA9YZO5YQSGXEIT5T7NSBQKWV9TR8QUPBAXGL72LHBJLDWWAF3DXG7GRYOYLL2CS8J27YUGJUVOCCYWXE938Z5OU2CUMP7X2I7FD6AOCN8RRQCDN2MKPB3NWL1IJ23L7MIWQV9L29RB4M9EVQPC3NVZVX3W0TPRZSEYJ' where id=35; -update noar tt set v3='9IAYO057TG9GABJS7WL1S3UVCNSVA2IVRH5UARYW5CASEXPUY8ATGUQZ5X386RJA042NW6F49DBKKAWYV0MRZU1FMHIMFQOE8XWRJ8PKLLT0RFOYG9CYUJF0DSQOUJJ1R8FYT0OFGM4M0VXGPPA0X5896WTN30RNBDZQA9KMVH5KHXOVA117YMZVBMYFS7QADGJMX3L82WC5LHOSLGO3UQPYO50IANIJXHHZP86OMRVU0KZYVRGO31IZD71L1AR0U' where id=35; -update noar ti set v3='9IAYO057TG9GABJS7WL1S3UVCNSVA2IVRH5UARYW5CASEXPUY8ATGUQZ5X386RJA042NW6F49DBKKAWYV0MRZU1FMHIMFQOE8XWRJ8PKLLT0RFOYG9CYUJF0DSQOUJJ1R8FYT0OFGM4M0VXGPPA0X5896WTN30RNBDZQA9KMVH5KHXOVA117YMZVBMYFS7QADGJMX3L82WC5LHOSLGO3UQPYO50IANIJXHHZP86OMRVU0KZYVRGO31IZD71L1AR0U' where id=35; -update noar tt set v0='M0U4EX7P7N41957A3YUCSJ1DSPR3S2KOBYKWVB0Q8OZA60ASJ9VIFS2XWTT104DISKA44DDTDJAOBNILFRWZESNJ2NZN2L4MOMXMOE1MYN3PZ7I1IXZ0TDTMP6SCIVELPF2LPE4OOB0JEQH22FLITQMS3IJ3MRFZTQWSVY9I5Y2E4X13QZW97TCQWST2YL57T4VKHWB5ACN22G0VWT2VB1MZWNLRPCB9G6RFFY9WOEMWN109V7D73WT731ANVVXCR' where id=36; -update noar ti set v0='M0U4EX7P7N41957A3YUCSJ1DSPR3S2KOBYKWVB0Q8OZA60ASJ9VIFS2XWTT104DISKA44DDTDJAOBNILFRWZESNJ2NZN2L4MOMXMOE1MYN3PZ7I1IXZ0TDTMP6SCIVELPF2LPE4OOB0JEQH22FLITQMS3IJ3MRFZTQWSVY9I5Y2E4X13QZW97TCQWST2YL57T4VKHWB5ACN22G0VWT2VB1MZWNLRPCB9G6RFFY9WOEMWN109V7D73WT731ANVVXCR' where id=36; -update noar tt set v1='T9YOL0GZXKSCXLVTGCJEO3VXAPZF0LLO8MCIT9DC9W7TPC2WH7GI4NE8HUR10X48HGDJ059HRBJ7KSDIMD1FCBBA7QCP3DLWCBBATU6Z7L3447CBLR3A3SINSAX3FDGTO1DNGWLGQCHHPVI7LOCA8N8X8ESF7OXR1W82BI75OP5TPSO3Z7UZZXTQVWIY11EFJQYW1Z01T19R748BMW0R9WHL9DE9KR16SJ2MD6X1BFVUZJLBZ2QVARSEQAS7NB03D' where id=36; -update noar ti set v1='T9YOL0GZXKSCXLVTGCJEO3VXAPZF0LLO8MCIT9DC9W7TPC2WH7GI4NE8HUR10X48HGDJ059HRBJ7KSDIMD1FCBBA7QCP3DLWCBBATU6Z7L3447CBLR3A3SINSAX3FDGTO1DNGWLGQCHHPVI7LOCA8N8X8ESF7OXR1W82BI75OP5TPSO3Z7UZZXTQVWIY11EFJQYW1Z01T19R748BMW0R9WHL9DE9KR16SJ2MD6X1BFVUZJLBZ2QVARSEQAS7NB03D' where id=36; -update noar tt set v2='B1O2TZIWYV1B9W6IB4V3YY8UDINKM3RIYCN8WINIHYCD9SQJJXJWRDRJXR93P6EVOZS4YIIGI9Y9NYZL1NHLQ2BCPI2R089P242RO04OHI2Z7UTUR95SS57S6EDWYSG1JALLNJB2Z5Q5BSUN65VBCLCD520CW6B2K9YGHXK9W6EKFFESZQUK49MYMKOMRT5IEBMMADGCLMFSEQW2947ZMMUGV75B670T55YV6N4YTBXYHQ77F6PSXOUSOLQY7HB6R' where id=36; -update noar ti set v2='B1O2TZIWYV1B9W6IB4V3YY8UDINKM3RIYCN8WINIHYCD9SQJJXJWRDRJXR93P6EVOZS4YIIGI9Y9NYZL1NHLQ2BCPI2R089P242RO04OHI2Z7UTUR95SS57S6EDWYSG1JALLNJB2Z5Q5BSUN65VBCLCD520CW6B2K9YGHXK9W6EKFFESZQUK49MYMKOMRT5IEBMMADGCLMFSEQW2947ZMMUGV75B670T55YV6N4YTBXYHQ77F6PSXOUSOLQY7HB6R' where id=36; -update noar tt set v3='VVCDXOYRKOIWZZ7SAILFI0SZ6U8T06FH16SSKJ0T0VADHJGDM5XTUJYTORV494KNEIUWNDEFRQXVDK6SRQNNCCLVMD6Z3EGJNMLG7SR9UD9NE4XKT4R1JJU9J2EBU34MCYD2JT6RDJBPTZ4BJTLZXLFF8EHEHU7JMH59NISYO4Z9399SODI04482J4J70Y5V3797OFBJQ5OOZNOT7UUE6QGEY3XD19PY62626L8R8WWZ3MG7N677S3053FSB21LR3' where id=36; -update noar ti set v3='VVCDXOYRKOIWZZ7SAILFI0SZ6U8T06FH16SSKJ0T0VADHJGDM5XTUJYTORV494KNEIUWNDEFRQXVDK6SRQNNCCLVMD6Z3EGJNMLG7SR9UD9NE4XKT4R1JJU9J2EBU34MCYD2JT6RDJBPTZ4BJTLZXLFF8EHEHU7JMH59NISYO4Z9399SODI04482J4J70Y5V3797OFBJQ5OOZNOT7UUE6QGEY3XD19PY62626L8R8WWZ3MG7N677S3053FSB21LR3' where id=36; -update noar tt set v0='ZJD2A0ARO578WAFTKJ9FTOM5ZBJGBVIQZ27SUM1YBT26R5MAL0WNS0T6HFT20TFMUN8C1YDMXVRQTERZ15E4KCD0SGL4H17L9OJY1XZFBW7U6KH2SOT95Y6DO5R148FRVB2PDOOO1PX9NOYF4MYCRF211VC4EIGYCCPQBL3D5C0BOY5SU3T5BKX5NYXFFLYB23F26YN84YVZGPL2GXMKZSLMVT0R490LBSGH9B11FDJIPRBM79B5HCHZ3O8E3CI4G' where id=37; -update noar ti set v0='ZJD2A0ARO578WAFTKJ9FTOM5ZBJGBVIQZ27SUM1YBT26R5MAL0WNS0T6HFT20TFMUN8C1YDMXVRQTERZ15E4KCD0SGL4H17L9OJY1XZFBW7U6KH2SOT95Y6DO5R148FRVB2PDOOO1PX9NOYF4MYCRF211VC4EIGYCCPQBL3D5C0BOY5SU3T5BKX5NYXFFLYB23F26YN84YVZGPL2GXMKZSLMVT0R490LBSGH9B11FDJIPRBM79B5HCHZ3O8E3CI4G' where id=37; -update noar tt set v1='7YKRX49F3N63FNVPCI8Q2FV2H10DNO30AGGZ94UD0BAMOGEWRRJUZA6HXO1ZF3YGUR5ZBNIK0B0VO799ZISVUNX3G4QVNASECBJVX1QOLCAPSER2D5YAF7WMDOVH8YKYSF107HX0VD91IXPTWSK4EDVJFX4H1RIDP7AWXPZSGVSXZARANZGUEOS8MP5YNOPEO5QS4DVKKPR3XEZAOR1R8C9F2OWAM9TDSO063OZRX4SHGIQ672CZM6X4LRGSPKGY2' where id=37; -update noar ti set v1='7YKRX49F3N63FNVPCI8Q2FV2H10DNO30AGGZ94UD0BAMOGEWRRJUZA6HXO1ZF3YGUR5ZBNIK0B0VO799ZISVUNX3G4QVNASECBJVX1QOLCAPSER2D5YAF7WMDOVH8YKYSF107HX0VD91IXPTWSK4EDVJFX4H1RIDP7AWXPZSGVSXZARANZGUEOS8MP5YNOPEO5QS4DVKKPR3XEZAOR1R8C9F2OWAM9TDSO063OZRX4SHGIQ672CZM6X4LRGSPKGY2' where id=37; -update noar tt set v2='MLIXAB8I8VUC3A0PVUZ53S26QQEUH0MDFT3JOQ9LNNEMYHNVMAK9F5VU2XC62FFLSV8DU1NWCGHLIBZY98NRSYSB6YCTYDN19EDXYWCSS6T166QF9YH5M7S5YCDC7G7IWKC8IK4NR5BOPJ15U1O6S6JMMX9L16GK8YV7V6Q3MC9HDLX0NV6OQ4J6P0IA8XVQH8YXLR1NM5YI3WBZO7EQBR07FTFP8OT2G1VBXT3AISXF19XBH1DOIIOL6C8HP5WH6' where id=37; -update noar ti set v2='MLIXAB8I8VUC3A0PVUZ53S26QQEUH0MDFT3JOQ9LNNEMYHNVMAK9F5VU2XC62FFLSV8DU1NWCGHLIBZY98NRSYSB6YCTYDN19EDXYWCSS6T166QF9YH5M7S5YCDC7G7IWKC8IK4NR5BOPJ15U1O6S6JMMX9L16GK8YV7V6Q3MC9HDLX0NV6OQ4J6P0IA8XVQH8YXLR1NM5YI3WBZO7EQBR07FTFP8OT2G1VBXT3AISXF19XBH1DOIIOL6C8HP5WH6' where id=37; -update noar tt set v3='18PSJSHLJQYHU7EMFIQNJTG3ZP4RU0NT1KA6UK1GZV2DPBXP07WYX457IKJD0Y13O4JYGY7Y8G25QV136V00EJWGZO6S5X8S41P17QREBV3UNWVHSC6AYC48KVNGS7Y9QEAMFNLOMQX6SELIR485DUSQ6KD65U0W6IJA24CZKC5CAEKUAU5O3Y8TL107L42WMRJ51M0S3PPY68AFYCQYOBLXSCLS2NSWSW1QP8M9MO7VURCTJ18Y9M5PM9V2O0L79' where id=37; -update noar ti set v3='18PSJSHLJQYHU7EMFIQNJTG3ZP4RU0NT1KA6UK1GZV2DPBXP07WYX457IKJD0Y13O4JYGY7Y8G25QV136V00EJWGZO6S5X8S41P17QREBV3UNWVHSC6AYC48KVNGS7Y9QEAMFNLOMQX6SELIR485DUSQ6KD65U0W6IJA24CZKC5CAEKUAU5O3Y8TL107L42WMRJ51M0S3PPY68AFYCQYOBLXSCLS2NSWSW1QP8M9MO7VURCTJ18Y9M5PM9V2O0L79' where id=37; -update noar tt set v0='0PPCXEXQAW6NZFYBHVFDNXZ72IOU6U0NAF6GHCC2CBWJ6FR5O60OE59X12DR94LWQH7W6RAARA3K5UA7CN7SON15SE8YYKN0BG0ME02E4X5F202TFP027IT7E7SCQYC48GVBMM4QD0V2OA4K29M96SRGRUABIKIEO8659YWZ00T2SXLB44GGIDQ4A5LL62LITG52N88ZYH2OSVYDZNUW8L6V6QZF1CG3E1H7DBRWSEZAEX122QQ87VME71Z9SMXWM' where id=38; -update noar ti set v0='0PPCXEXQAW6NZFYBHVFDNXZ72IOU6U0NAF6GHCC2CBWJ6FR5O60OE59X12DR94LWQH7W6RAARA3K5UA7CN7SON15SE8YYKN0BG0ME02E4X5F202TFP027IT7E7SCQYC48GVBMM4QD0V2OA4K29M96SRGRUABIKIEO8659YWZ00T2SXLB44GGIDQ4A5LL62LITG52N88ZYH2OSVYDZNUW8L6V6QZF1CG3E1H7DBRWSEZAEX122QQ87VME71Z9SMXWM' where id=38; -update noar tt set v1='MQ9NKR88QS3JT8D73FKF7H049V8F9FV152K381RG6MG7LXAX4LXPZIVSF7HS29RGMSTQLGAFOBB2ASWPTKZX8J9NT0A0KLR7V2SI3EUCV74HBWABGQIE7S4X3G0FXGRFISMI13X1PX87G1LSRB0WJFVV8YKR4UDFD9J2T0FI53580WEJHJGAG3IDLIJPQX2PFY3WJIJ1ZIN625KA5SAXI207M26A7J5D9Y8Q65ONKSTP41KO01K9AJPFUVEZHLYVA' where id=38; -update noar ti set v1='MQ9NKR88QS3JT8D73FKF7H049V8F9FV152K381RG6MG7LXAX4LXPZIVSF7HS29RGMSTQLGAFOBB2ASWPTKZX8J9NT0A0KLR7V2SI3EUCV74HBWABGQIE7S4X3G0FXGRFISMI13X1PX87G1LSRB0WJFVV8YKR4UDFD9J2T0FI53580WEJHJGAG3IDLIJPQX2PFY3WJIJ1ZIN625KA5SAXI207M26A7J5D9Y8Q65ONKSTP41KO01K9AJPFUVEZHLYVA' where id=38; -update noar tt set v2='J66BHK5CX59CGBKBR1II3CDGTBW1II3ND5XMK5E4J0LN4LLA3190T2V8BP1E2820PV0TUIA86JQ8P9E4NLAPJ4Y1BMFLQ1PNVDJSMO46IBOAKJ675ECHKXYE7LR892XQTDVHENA3L3SMWVY1090VFTQ658JY33ZSWSW777Y0W9II98SUM49CRD1QM4UU5BWUNCBVIUINHYHQ7RLD16NY9EK0CF9EVCCCC1XUBF23BEMVX8IOQXKHQFT0EIDSL9T6U' where id=38; -update noar ti set v2='J66BHK5CX59CGBKBR1II3CDGTBW1II3ND5XMK5E4J0LN4LLA3190T2V8BP1E2820PV0TUIA86JQ8P9E4NLAPJ4Y1BMFLQ1PNVDJSMO46IBOAKJ675ECHKXYE7LR892XQTDVHENA3L3SMWVY1090VFTQ658JY33ZSWSW777Y0W9II98SUM49CRD1QM4UU5BWUNCBVIUINHYHQ7RLD16NY9EK0CF9EVCCCC1XUBF23BEMVX8IOQXKHQFT0EIDSL9T6U' where id=38; -update noar tt set v3='6EPLPYENJL5DS3BMXF5E5TUQ1WVCZHOAXZQFK0VG212FC5SFFPLIKCSXYE2ROQT5QM32YVHY6C0JCMH4730VU6A840PMMXA2P1INN2ZT8JKY4SUC6FN2YJSGBF1B6QK7TX8GIGDH8AZEGFAJVTCCB7VN5O74HPB78W5EMBPNANJECEI00RFE76A9BSJ75M1AEMI8QA2GMZMXNOT6IPMXXYKY041XQ6WB439CPFUNB8SJ8GQBQVP286ZCFH6GU11DR' where id=38; -update noar ti set v3='6EPLPYENJL5DS3BMXF5E5TUQ1WVCZHOAXZQFK0VG212FC5SFFPLIKCSXYE2ROQT5QM32YVHY6C0JCMH4730VU6A840PMMXA2P1INN2ZT8JKY4SUC6FN2YJSGBF1B6QK7TX8GIGDH8AZEGFAJVTCCB7VN5O74HPB78W5EMBPNANJECEI00RFE76A9BSJ75M1AEMI8QA2GMZMXNOT6IPMXXYKY041XQ6WB439CPFUNB8SJ8GQBQVP286ZCFH6GU11DR' where id=38; -update noar tt set v0='MBIJLQRMHX8UN2DL59P0SL86NBBALZN4MXLLMYFCZO4P6XAWKHHFBDIPWAPAM2OLRO4KQ2GJ50J70C0HPHOTJ67U4F2DGZ4RVF6GVK5N68EPGIVQOI79L6E42MC1GPJO3GME4UZ4VHL3VQIIG90ZUJNEHX8WN3XKSJA2DRTIFB1CVXZ10VSS0ZQ7S1RMTUR21W31P245K7RZ1FSCLG265U5GHTCXR4VXNQQ29AYTPS2NZCH07CIQBPLB9ZMCRMTTA' where id=39; -update noar ti set v0='MBIJLQRMHX8UN2DL59P0SL86NBBALZN4MXLLMYFCZO4P6XAWKHHFBDIPWAPAM2OLRO4KQ2GJ50J70C0HPHOTJ67U4F2DGZ4RVF6GVK5N68EPGIVQOI79L6E42MC1GPJO3GME4UZ4VHL3VQIIG90ZUJNEHX8WN3XKSJA2DRTIFB1CVXZ10VSS0ZQ7S1RMTUR21W31P245K7RZ1FSCLG265U5GHTCXR4VXNQQ29AYTPS2NZCH07CIQBPLB9ZMCRMTTA' where id=39; -update noar tt set v1='NSFIH0HZH8POOGYFFYPK4GIE3B1UD5WRRI6SOU1B05BGPAINR7O02M1729R1VVW4UF3KHD7CJNUCKU1NRHLQGIBRO4XSAKD61Y3IZBJKXDTTEZLSFIW60A7IYH5TM96PZSCL4QMUJ5JGC8IFGURM7LBZ27AYXH9W0I476X8DFEFU8SXDTU85J0EKMSTZHGSSTFGYYAZYR8NFUAVEW9T8B9TOWPR2SXH3PBIP87ORSWT4WZG9ARQHL5GJ23A6RQOXA' where id=39; -update noar ti set v1='NSFIH0HZH8POOGYFFYPK4GIE3B1UD5WRRI6SOU1B05BGPAINR7O02M1729R1VVW4UF3KHD7CJNUCKU1NRHLQGIBRO4XSAKD61Y3IZBJKXDTTEZLSFIW60A7IYH5TM96PZSCL4QMUJ5JGC8IFGURM7LBZ27AYXH9W0I476X8DFEFU8SXDTU85J0EKMSTZHGSSTFGYYAZYR8NFUAVEW9T8B9TOWPR2SXH3PBIP87ORSWT4WZG9ARQHL5GJ23A6RQOXA' where id=39; -update noar tt set v2='KACBVXR9WWP571WUNBLZZRBI8T3ZLMNYQYCQEDHNC9SQ9AW555ZF0JFSC38Q65C9MDQPXX9VMOK3EI6N8CNCSZDMWXLH0XDJHEBYPURWHVY6BAEX5V67C08085VN31ANK5MLR9TNDYUPS2SU7R8FX0FUK2SDUXV5PYEYMT02A20LB8VI0CQAXM0GEMFBTUWW7CY5F0NMUSPCF0JEM21QLFZMMWG19U1KW3ZTV091R5QSF230Q5I58IF0USUCQ8I4Q' where id=39; -update noar ti set v2='KACBVXR9WWP571WUNBLZZRBI8T3ZLMNYQYCQEDHNC9SQ9AW555ZF0JFSC38Q65C9MDQPXX9VMOK3EI6N8CNCSZDMWXLH0XDJHEBYPURWHVY6BAEX5V67C08085VN31ANK5MLR9TNDYUPS2SU7R8FX0FUK2SDUXV5PYEYMT02A20LB8VI0CQAXM0GEMFBTUWW7CY5F0NMUSPCF0JEM21QLFZMMWG19U1KW3ZTV091R5QSF230Q5I58IF0USUCQ8I4Q' where id=39; -update noar tt set v3='IICHG9NY81SCAQMR7JPS16WZ5QN3NGGNIEAI9JVFLUAJJWD2KJUVXN54702OW7TV7JPCCCZT6U2SMNQB5GE7GAJFBRZQW8OFAC1TXMRPYBNP1NJGR4FLPR517PM8CQBBACCPCSY2AIFDCU8LSI53RQGTDCR0HLI425KEZK8P9ASGU8JI84QTLYG38A584996KCT70A7SBSLYLBQFM0FMVSGQCQPJQECHTR86XAS9W5E5SJQ8QMHEFMTKW1AZ2DQHA' where id=39; -update noar ti set v3='IICHG9NY81SCAQMR7JPS16WZ5QN3NGGNIEAI9JVFLUAJJWD2KJUVXN54702OW7TV7JPCCCZT6U2SMNQB5GE7GAJFBRZQW8OFAC1TXMRPYBNP1NJGR4FLPR517PM8CQBBACCPCSY2AIFDCU8LSI53RQGTDCR0HLI425KEZK8P9ASGU8JI84QTLYG38A584996KCT70A7SBSLYLBQFM0FMVSGQCQPJQECHTR86XAS9W5E5SJQ8QMHEFMTKW1AZ2DQHA' where id=39; -update noar tt set v0='JS2SF26JP07VS8U1UW57MYH066TW6RJ5ORZ193DCV0R67XT51BGF0VQVOMF6SMANMF66N5FHY62H0X8WHNB0FDRWIEKUHWZAZB2M6ZDNAMWPL68GL6N9X2TRPZ6VVZKYR0FLPDPZFT9J26SHUDCYDSTS3KKSPZQL40DW9U29WUKXA2GD5ZXU6UD20H1KERE7I9NC0QXUGB0T5S50MHJPW68W8E2QOLUF61PXWOAF3JVG3GZONY1EBU2DVXXMGKGHB' where id=40; -update noar ti set v0='JS2SF26JP07VS8U1UW57MYH066TW6RJ5ORZ193DCV0R67XT51BGF0VQVOMF6SMANMF66N5FHY62H0X8WHNB0FDRWIEKUHWZAZB2M6ZDNAMWPL68GL6N9X2TRPZ6VVZKYR0FLPDPZFT9J26SHUDCYDSTS3KKSPZQL40DW9U29WUKXA2GD5ZXU6UD20H1KERE7I9NC0QXUGB0T5S50MHJPW68W8E2QOLUF61PXWOAF3JVG3GZONY1EBU2DVXXMGKGHB' where id=40; -update noar tt set v1='RU9KPNR8CRROLPYW026M8NDR45WQ3CHJY1J7BYICHACR8BT2UL3XL8PVAS6T0IE915IXV5IPZP3T9N4P4J5MAH9M19AQ8S0JD9H0EPKQWQFA1HXFLWVEDDD8EF7WTH5YE7T6FGIRVM5VFHG7RDJ793SSKRAF5VSVJDMP11VT75M6OPGUPL900ZJ1842LGC0M3J3KPF60R2AVB83YG2WYE49YM2IW22YV65PNJXLVFDW20PWJR14QKOX26HU9RTQ1S' where id=40; -update noar ti set v1='RU9KPNR8CRROLPYW026M8NDR45WQ3CHJY1J7BYICHACR8BT2UL3XL8PVAS6T0IE915IXV5IPZP3T9N4P4J5MAH9M19AQ8S0JD9H0EPKQWQFA1HXFLWVEDDD8EF7WTH5YE7T6FGIRVM5VFHG7RDJ793SSKRAF5VSVJDMP11VT75M6OPGUPL900ZJ1842LGC0M3J3KPF60R2AVB83YG2WYE49YM2IW22YV65PNJXLVFDW20PWJR14QKOX26HU9RTQ1S' where id=40; -update noar tt set v2='KIQLRRPH20523ZEAX8M9299NH77Z7O6W0CLRN0R5H2QEZ8PP4YUUYP8MSZDC76UNEXPR93EGKGJ232I81G2KBYK73RCWOJKFPG58D8MDNOWPRGT7RI257Q6ZOGR1MVPX9P96OOFRC0UF1E8BC2TDK6LM54JBAGAOTKRBY6YSQ33MOE0JRP8JWHVMG2PI1JK7CR0V2SNCU32TPHXPCX00MW8O2DZTTX8LURL0OQ3DVWLSWWDKH47JOHRJ2NVBUTD5D' where id=40; -update noar ti set v2='KIQLRRPH20523ZEAX8M9299NH77Z7O6W0CLRN0R5H2QEZ8PP4YUUYP8MSZDC76UNEXPR93EGKGJ232I81G2KBYK73RCWOJKFPG58D8MDNOWPRGT7RI257Q6ZOGR1MVPX9P96OOFRC0UF1E8BC2TDK6LM54JBAGAOTKRBY6YSQ33MOE0JRP8JWHVMG2PI1JK7CR0V2SNCU32TPHXPCX00MW8O2DZTTX8LURL0OQ3DVWLSWWDKH47JOHRJ2NVBUTD5D' where id=40; -update noar tt set v3='NIY892D98R34VRPVDPXGWYEYR78HTUOWTVAIZE1YX34I7DL9SVJ8ZTKFLDAWVWNUT9H7PQVFU21RESZZIRNMXO7OSSF8DXCHMJLOA93NAWJNLUR1DI8XT9N8IEHMN68R6FONVYZVIDJYT5C5FXW4B7BD0IF2LCD1AO8U665HWH9ASVX0FM6R1Q4BXOKZO72ZGH0FI5FWL9NURKN4PLZ8TXJ57VJ30AP92FL7AKO1JU5REVJHG40PX3GJUC4AHISJH' where id=40; -update noar ti set v3='NIY892D98R34VRPVDPXGWYEYR78HTUOWTVAIZE1YX34I7DL9SVJ8ZTKFLDAWVWNUT9H7PQVFU21RESZZIRNMXO7OSSF8DXCHMJLOA93NAWJNLUR1DI8XT9N8IEHMN68R6FONVYZVIDJYT5C5FXW4B7BD0IF2LCD1AO8U665HWH9ASVX0FM6R1Q4BXOKZO72ZGH0FI5FWL9NURKN4PLZ8TXJ57VJ30AP92FL7AKO1JU5REVJHG40PX3GJUC4AHISJH' where id=40; -update noar tt set v0='C1HMR8AVREFGKVQ63C7D47U9PQZYGKQR3XII6F3990712OKXQJBSYUHWPY5GSKP3QO2D08X1SKULCWAAUKXFNFQJN65QA4O1C3X1EL3JPSIBD24GTLAOR3CXEWFF5MEUSQJKIYVJ3FZPHMAHMUNTN4GASTNMM856OO9URCX519HU7HPMB6DQMJYJVT9UXTWUS9ATL31D77AL4ZLSBSNOQ1DMYC5838E2VE5ZJLE00Y9N6EJ5AE584L449RBK3IFHE' where id=41; -update noar ti set v0='C1HMR8AVREFGKVQ63C7D47U9PQZYGKQR3XII6F3990712OKXQJBSYUHWPY5GSKP3QO2D08X1SKULCWAAUKXFNFQJN65QA4O1C3X1EL3JPSIBD24GTLAOR3CXEWFF5MEUSQJKIYVJ3FZPHMAHMUNTN4GASTNMM856OO9URCX519HU7HPMB6DQMJYJVT9UXTWUS9ATL31D77AL4ZLSBSNOQ1DMYC5838E2VE5ZJLE00Y9N6EJ5AE584L449RBK3IFHE' where id=41; -update noar tt set v1='2M27TTLJMUW78ZLY31CJ4HTV8OHD7IBLO3BLACHI5O63JUK7RL0VZZ1E4EDSTHRINUOWO64QXH9Q6ZVBRNIKPIZBDG9DJPFIU6E5X84JHXBBL51M0XYQATB7PSM8WYC6YT15PW2GRJ1OV8NCTT01HGMT5IK02SJW7Y1UB5R8NJUZC4J9885H1ZDWID4H2W6OK005S2IQ44UDGKU01EPHAOXAV05FX7TKVT19CZ9BZ12W6G5XJBC773GD2WCV0T9L7' where id=41; -update noar ti set v1='2M27TTLJMUW78ZLY31CJ4HTV8OHD7IBLO3BLACHI5O63JUK7RL0VZZ1E4EDSTHRINUOWO64QXH9Q6ZVBRNIKPIZBDG9DJPFIU6E5X84JHXBBL51M0XYQATB7PSM8WYC6YT15PW2GRJ1OV8NCTT01HGMT5IK02SJW7Y1UB5R8NJUZC4J9885H1ZDWID4H2W6OK005S2IQ44UDGKU01EPHAOXAV05FX7TKVT19CZ9BZ12W6G5XJBC773GD2WCV0T9L7' where id=41; -update noar tt set v2='P32XQK94PPU6P6XSDX80S4AWBPQVGMI87R8IYP490S1EFEHOTROI7XWZYJMA1R3SNTTBDTDN6EN5OV4C2WEGKM3F2QICKUY83ZH548QINBZR1BSYP8L2YMBM947TQ86E1TP6DCVISFVKWHH3KLJYZUOJANJEQJ6CZYDEWJTMGIAJSN4NYB409P12VKBPDU7DCY1SJ7CDN7U3S1U15MFK2MUH2ANQFNH58742X5YBDGZK8PT3VQH9D5WBLV8BCYZAZ' where id=41; -update noar ti set v2='P32XQK94PPU6P6XSDX80S4AWBPQVGMI87R8IYP490S1EFEHOTROI7XWZYJMA1R3SNTTBDTDN6EN5OV4C2WEGKM3F2QICKUY83ZH548QINBZR1BSYP8L2YMBM947TQ86E1TP6DCVISFVKWHH3KLJYZUOJANJEQJ6CZYDEWJTMGIAJSN4NYB409P12VKBPDU7DCY1SJ7CDN7U3S1U15MFK2MUH2ANQFNH58742X5YBDGZK8PT3VQH9D5WBLV8BCYZAZ' where id=41; -update noar tt set v3='K80ACSSQCTWAUUVH9B8ZXO5O1ZVDB11L5X2TBTT3QHCT6TWP46IJMP18XNMWL5ZFOMDM4F4A70BRJHQWJGA43OTVNLIZAXV6XVBPTSZTWR5BPQ1PW6Z2SHWLHINEQGW1NBODSR59LPCOQRSMIERXSOA0SX3OOK1B9IOSZELC6FZKCCB3GKFE0JNEVFFFSGFTRRYBSH563FYQU45KF3IQBTJ51E39IHGUFYGTNJT1VHBBUHT47BFAMKIK5B4H4O5DW' where id=41; -update noar ti set v3='K80ACSSQCTWAUUVH9B8ZXO5O1ZVDB11L5X2TBTT3QHCT6TWP46IJMP18XNMWL5ZFOMDM4F4A70BRJHQWJGA43OTVNLIZAXV6XVBPTSZTWR5BPQ1PW6Z2SHWLHINEQGW1NBODSR59LPCOQRSMIERXSOA0SX3OOK1B9IOSZELC6FZKCCB3GKFE0JNEVFFFSGFTRRYBSH563FYQU45KF3IQBTJ51E39IHGUFYGTNJT1VHBBUHT47BFAMKIK5B4H4O5DW' where id=41; -update noar tt set v0='AXE6E25KSO6X9FQ378OHFQJSL3Y587JHS6PS7N5TWKS0MU0PO4MU3NB64O341DQRWO0OLPL9DZ1N0CPEBKOQX8QPF0MX465BV4MML06D6GL37YX7FNVY73Z7JKD9Y6WCN5KSA1PEZ94FRMPL79ABK51SG3ETE4FMVFQF5M3YP72B2FPB1SI322X2IIL2HKECLWW9Z6IZDSDG3NPJX0B02GC39JVXUIQK4Y04A4ADW9NAVC73J8Z5WJU7U5J3OTPC9' where id=42; -update noar ti set v0='AXE6E25KSO6X9FQ378OHFQJSL3Y587JHS6PS7N5TWKS0MU0PO4MU3NB64O341DQRWO0OLPL9DZ1N0CPEBKOQX8QPF0MX465BV4MML06D6GL37YX7FNVY73Z7JKD9Y6WCN5KSA1PEZ94FRMPL79ABK51SG3ETE4FMVFQF5M3YP72B2FPB1SI322X2IIL2HKECLWW9Z6IZDSDG3NPJX0B02GC39JVXUIQK4Y04A4ADW9NAVC73J8Z5WJU7U5J3OTPC9' where id=42; -update noar tt set v1='73TOUD4EONX110H0DV7HE3HZVITV2ECQMO3QI5GL1OYXUHD4HK3422B2SIL9D0KFEODL2BD0AZJ7BFU7L7YL7YQI1A118DWTB0EU7OICZQLSF18NTGU24MUPXSXUHZY62CHOB4NNDNZ9C87FCTVVR7IT9F4853U485QQVT476K8ZE3EUIHIAXQVRMYZO6A0HNV693J2ZZK4J9AIEOR3SRP6278IAUXORSJRZ7NIOUUQXFQGON4APBRK2HDCC4ZBQJ' where id=42; -update noar ti set v1='73TOUD4EONX110H0DV7HE3HZVITV2ECQMO3QI5GL1OYXUHD4HK3422B2SIL9D0KFEODL2BD0AZJ7BFU7L7YL7YQI1A118DWTB0EU7OICZQLSF18NTGU24MUPXSXUHZY62CHOB4NNDNZ9C87FCTVVR7IT9F4853U485QQVT476K8ZE3EUIHIAXQVRMYZO6A0HNV693J2ZZK4J9AIEOR3SRP6278IAUXORSJRZ7NIOUUQXFQGON4APBRK2HDCC4ZBQJ' where id=42; -update noar tt set v2='8SNJHZKVFOKMR9JBXBSP14F7VRUPNQQ9AO779YSPCXBCVH8RNS8ZQ25KAVEUW68WXZ5CBT2S3P51CUP2HJWZSDAN28CBNBHQSB44YASD0YWTN17R8143THIBC2HCR41J8JOS5VCHUJDUEY8CGYSWGY9EWOI36X4NGTMEALRCFNKJR2W9TWCYZQFM963S6IBF1Y3MON44NL98MOCRIKZ5O97N6AM3E28JJ9WO5S7EA8WK74K0CRFLR5MBJR35PMIZN' where id=42; -update noar ti set v2='8SNJHZKVFOKMR9JBXBSP14F7VRUPNQQ9AO779YSPCXBCVH8RNS8ZQ25KAVEUW68WXZ5CBT2S3P51CUP2HJWZSDAN28CBNBHQSB44YASD0YWTN17R8143THIBC2HCR41J8JOS5VCHUJDUEY8CGYSWGY9EWOI36X4NGTMEALRCFNKJR2W9TWCYZQFM963S6IBF1Y3MON44NL98MOCRIKZ5O97N6AM3E28JJ9WO5S7EA8WK74K0CRFLR5MBJR35PMIZN' where id=42; -update noar tt set v3='26WCQVQYMI48CW3TL65ZS4F5R9MTI048B05BF60S9OHG46ZY0NEOAZFCCHH7IUNP1N93HS872SFTB2LZ3NH7RYR5WIWX2DLZCER9I1C1P1BEPOSC3S3AS66HFI15D8Y1Y31U90L207YABO9KPJEASZM4PX0V7RQCNRXTS10X2LDWC722MXTVJPWTXYV2513V3QAYAK9HMQXZXKCA668PZG1HFK6VN2WYWW8VEWRBLNV5B9CL98THF8T4PQ2MBI38P' where id=42; -update noar ti set v3='26WCQVQYMI48CW3TL65ZS4F5R9MTI048B05BF60S9OHG46ZY0NEOAZFCCHH7IUNP1N93HS872SFTB2LZ3NH7RYR5WIWX2DLZCER9I1C1P1BEPOSC3S3AS66HFI15D8Y1Y31U90L207YABO9KPJEASZM4PX0V7RQCNRXTS10X2LDWC722MXTVJPWTXYV2513V3QAYAK9HMQXZXKCA668PZG1HFK6VN2WYWW8VEWRBLNV5B9CL98THF8T4PQ2MBI38P' where id=42; -update noar tt set v0='N4QGLNWDK955DOINBQI4XMPW86UUQDBAZA1B6U6BBCDCRNXDGA7G97YJLTTM9XUPYCCVK9VKDZFMQZRC8QT83CG0Y73MPQYBN5MDSPF3H58EU9C1HGUZIVD5T0A62RKW3DBI6MLYDJPBYY33EOTBGYE2QTPO0TABRG7RPU9JHKU5WKIPZO58UGB7FV5MGHK5YQCZMT3EZF5M7KNKJ0YRH2EZAXG2TQ6G4BQQLIH92I1PI256H0ZWZLNROCLN4O0BE' where id=43; -update noar ti set v0='N4QGLNWDK955DOINBQI4XMPW86UUQDBAZA1B6U6BBCDCRNXDGA7G97YJLTTM9XUPYCCVK9VKDZFMQZRC8QT83CG0Y73MPQYBN5MDSPF3H58EU9C1HGUZIVD5T0A62RKW3DBI6MLYDJPBYY33EOTBGYE2QTPO0TABRG7RPU9JHKU5WKIPZO58UGB7FV5MGHK5YQCZMT3EZF5M7KNKJ0YRH2EZAXG2TQ6G4BQQLIH92I1PI256H0ZWZLNROCLN4O0BE' where id=43; -update noar tt set v1='C5WNK7DO09CLH11GEQ15TCEF2UW5XOLKZ6XXEMYMC1LYTAMPBY6HRGRUKURWHTS9JPNWL41BP8PM9686W2U0B8R9JSB2HQU71KM8N6Z75PFUI97S7GOMCJ9YNW43U1LFU26X8SK8RF7EIL6TMSM8FFXAT91XM96W0NPTYOLFEUEI8CYQ555FACHLW0V4R1E3QG62F3FVBBGW05MI6AZZWLAJ688GVGOIE2C8UTZUT7CJYANKIUIRT92MTH45YVG20' where id=43; -update noar ti set v1='C5WNK7DO09CLH11GEQ15TCEF2UW5XOLKZ6XXEMYMC1LYTAMPBY6HRGRUKURWHTS9JPNWL41BP8PM9686W2U0B8R9JSB2HQU71KM8N6Z75PFUI97S7GOMCJ9YNW43U1LFU26X8SK8RF7EIL6TMSM8FFXAT91XM96W0NPTYOLFEUEI8CYQ555FACHLW0V4R1E3QG62F3FVBBGW05MI6AZZWLAJ688GVGOIE2C8UTZUT7CJYANKIUIRT92MTH45YVG20' where id=43; -update noar tt set v2='KSZXG1B5O09HBMBYGDCWHIST8GRJEHY8PN4IB7TBDN01PJMOLBWY9TMLI3X5V80U2K5NNNZ2P9TTQFG1HBW1T1YY1VP3UDV1LKFNTGOWPM12XFN82W8T083GY7HR6BLYMPT0ZQHTSGMXCE7BY5L2BOB5GUWZINU36VMGLYJXX63OHXTVCHC7Q8ISLOZC3DSN2HDTM1APTXHIXKYQFZ3UCLWD09SDZ7TJ72ZYKMWNGA7QU9MGVACKXXFWYQDOS2SMC' where id=43; -update noar ti set v2='KSZXG1B5O09HBMBYGDCWHIST8GRJEHY8PN4IB7TBDN01PJMOLBWY9TMLI3X5V80U2K5NNNZ2P9TTQFG1HBW1T1YY1VP3UDV1LKFNTGOWPM12XFN82W8T083GY7HR6BLYMPT0ZQHTSGMXCE7BY5L2BOB5GUWZINU36VMGLYJXX63OHXTVCHC7Q8ISLOZC3DSN2HDTM1APTXHIXKYQFZ3UCLWD09SDZ7TJ72ZYKMWNGA7QU9MGVACKXXFWYQDOS2SMC' where id=43; -update noar tt set v3='V8LZAYWQ9VSGN0UH6ODPBSDK0N28GI0OWTC2ZNJ9S6SCJ4FJA4YGHUR8DJ84X5VXJRC71AXL92XF78L9CISJK00TVXMEMG0CC4O0S0BSOOEIPZKM5CI0A981N0CYPNGW66IPMTVPEQMWQCD8EE0JINYSQNW96RSQ5RHV1PDV47Y0VSHRESBF7T2VPO1LTTIGQSQWOVFW9I4KYVCVB8YMI5JI8X64L37GB7FIU5Z39D1VAW0WPVPI7JFQ5K59PLRNV' where id=43; -update noar ti set v3='V8LZAYWQ9VSGN0UH6ODPBSDK0N28GI0OWTC2ZNJ9S6SCJ4FJA4YGHUR8DJ84X5VXJRC71AXL92XF78L9CISJK00TVXMEMG0CC4O0S0BSOOEIPZKM5CI0A981N0CYPNGW66IPMTVPEQMWQCD8EE0JINYSQNW96RSQ5RHV1PDV47Y0VSHRESBF7T2VPO1LTTIGQSQWOVFW9I4KYVCVB8YMI5JI8X64L37GB7FIU5Z39D1VAW0WPVPI7JFQ5K59PLRNV' where id=43; -update noar tt set v0='JG70S82EH2XF6QK131GSV1AKI0CK0MH0ZSB477ZNQYRLL8DE8W9P9FV1DTUXNT3GPHRP49YZAI5I9HWRU24KQZANZWFRY1QA67KSSVQIN9ZS9PVGNLHRUPU47R0WXB6VB8NI1YBWQ4VO4EFR65XW8XLM7KG2SRNRFYVF7P54YAJS7L3QF2S68RJWHA22T73YA8N11N05E0N0C9PRDBAKKAFJ0Z0MD70XOOOPDM7K6KGQAXD78Q4CIT8PYDQ39UD3Q' where id=44; -update noar ti set v0='JG70S82EH2XF6QK131GSV1AKI0CK0MH0ZSB477ZNQYRLL8DE8W9P9FV1DTUXNT3GPHRP49YZAI5I9HWRU24KQZANZWFRY1QA67KSSVQIN9ZS9PVGNLHRUPU47R0WXB6VB8NI1YBWQ4VO4EFR65XW8XLM7KG2SRNRFYVF7P54YAJS7L3QF2S68RJWHA22T73YA8N11N05E0N0C9PRDBAKKAFJ0Z0MD70XOOOPDM7K6KGQAXD78Q4CIT8PYDQ39UD3Q' where id=44; -update noar tt set v1='07SG3BPYWQQEEPPUXICSE0JKJDFA0C3DD95G0MF2KDDBSGP636C9KSJ4JDO2W9UDT3FI465Z8WSWYULSNIH5XT7XYUTMNQRXJSGC3Q7TU8FGLFSHVX2FMKP4OU25X9NPNOQ0VUYR76DFE9MB25EMCZ8254D116AC9HUB1QSYMVQUO7IJNLZKYWSI0S973LHC0I87Y8415RJMAW8SE5EDRN5HUMGFOL2QSLCVLMB5DPZK3SHMPBQOU59PL2NDZYMAY' where id=44; -update noar ti set v1='07SG3BPYWQQEEPPUXICSE0JKJDFA0C3DD95G0MF2KDDBSGP636C9KSJ4JDO2W9UDT3FI465Z8WSWYULSNIH5XT7XYUTMNQRXJSGC3Q7TU8FGLFSHVX2FMKP4OU25X9NPNOQ0VUYR76DFE9MB25EMCZ8254D116AC9HUB1QSYMVQUO7IJNLZKYWSI0S973LHC0I87Y8415RJMAW8SE5EDRN5HUMGFOL2QSLCVLMB5DPZK3SHMPBQOU59PL2NDZYMAY' where id=44; -update noar tt set v2='1RXGUMTFHFSC2VP8HGPVKV4ZKJPBDQTQ4OK8UKMRHUKEMZGZ5CA6GKAZ5BHY5I3KM1I2Z6G28K8T9Q3QCII043K742N6KOJMWLFADKMBV59VAXE2TAC2P2K0KWLB3NX6V7TP5HPZUT60NGETTCOWFC299PQKE8VVGI6NRTKEKXMS6YXK5INJHL4W8XW2A269VR5OHMJDOE1HT1PUMYGUJA4PZCL21VN7UUJ7TF2P968OH7LRB2RR5ML6Y5XU2Y0QC' where id=44; -update noar ti set v2='1RXGUMTFHFSC2VP8HGPVKV4ZKJPBDQTQ4OK8UKMRHUKEMZGZ5CA6GKAZ5BHY5I3KM1I2Z6G28K8T9Q3QCII043K742N6KOJMWLFADKMBV59VAXE2TAC2P2K0KWLB3NX6V7TP5HPZUT60NGETTCOWFC299PQKE8VVGI6NRTKEKXMS6YXK5INJHL4W8XW2A269VR5OHMJDOE1HT1PUMYGUJA4PZCL21VN7UUJ7TF2P968OH7LRB2RR5ML6Y5XU2Y0QC' where id=44; -update noar tt set v3='NKL5I1GO2TCCE7RR4QIHHIX3QP0NX2BZXAD6DBSWXY2JJTWI63HF2C6P317LOR0CN6NIVMITIQ97NC06DJINN1UBDSAGHK1B3ZXW3N0YG8NH4OGEA9GINKXND5QQW00RE80DDCZ5658TIQQ3I0QTMZ24EIPN8GRY3L4WW2DJ44TJ2OUF2Y6YPE0469HYDISL1J3NGKMPB6GDSL01PXHSGT3E3P9O4QAT4RMR925FJRH3UJJM7LAAMAXH95TK1J0PC' where id=44; -update noar ti set v3='NKL5I1GO2TCCE7RR4QIHHIX3QP0NX2BZXAD6DBSWXY2JJTWI63HF2C6P317LOR0CN6NIVMITIQ97NC06DJINN1UBDSAGHK1B3ZXW3N0YG8NH4OGEA9GINKXND5QQW00RE80DDCZ5658TIQQ3I0QTMZ24EIPN8GRY3L4WW2DJ44TJ2OUF2Y6YPE0469HYDISL1J3NGKMPB6GDSL01PXHSGT3E3P9O4QAT4RMR925FJRH3UJJM7LAAMAXH95TK1J0PC' where id=44; -update noar tt set v0='QJLVI60CSI69F3T7M9J6LRGMMEF7QBZ140K30QJ6PCHLSWCP5PLFDNCLFY5GUVZYBJ26I3P4D8C7LF5QYD3XGY6HNMP3UKCLXV6IRN6WA50NIUDJ1K0V60YPORJCJUFURIPD5MA4SQWAQQ0B62M1GHJKEXMFMFAUE1VH2UEJ98G9075NEITENA5V94BBVPQ7DIGOTVDPEM6UN8OYY0L0LXDTYQO2BFO47XEO6U5SS0V4BMH8FTK537Z2JCZYEVFB0' where id=45; -update noar ti set v0='QJLVI60CSI69F3T7M9J6LRGMMEF7QBZ140K30QJ6PCHLSWCP5PLFDNCLFY5GUVZYBJ26I3P4D8C7LF5QYD3XGY6HNMP3UKCLXV6IRN6WA50NIUDJ1K0V60YPORJCJUFURIPD5MA4SQWAQQ0B62M1GHJKEXMFMFAUE1VH2UEJ98G9075NEITENA5V94BBVPQ7DIGOTVDPEM6UN8OYY0L0LXDTYQO2BFO47XEO6U5SS0V4BMH8FTK537Z2JCZYEVFB0' where id=45; -update noar tt set v1='0MED4MORQR2O4BOE2U9MH6LFRAIEP1HTR4MLPLYBRV3FZLH57T4O4XU8C3VWRILWECMJJZSYLVD9YAIG4OVOK06LUY002LNSLBMGVGDRHVE1R7G3I4H3J2SMWPHUV3WEMPDB0DSW72EFDQW1AEGV2GLP2KO7LZVPYDCSG0P69LZPLY7DPRPXSXOS2Z3OVXC8RX1X5EBFKRRSP9EFITVST68QO991P9GE0S19MUSDR23CLMQYP1HP47J29WVP2I1CA' where id=45; -update noar ti set v1='0MED4MORQR2O4BOE2U9MH6LFRAIEP1HTR4MLPLYBRV3FZLH57T4O4XU8C3VWRILWECMJJZSYLVD9YAIG4OVOK06LUY002LNSLBMGVGDRHVE1R7G3I4H3J2SMWPHUV3WEMPDB0DSW72EFDQW1AEGV2GLP2KO7LZVPYDCSG0P69LZPLY7DPRPXSXOS2Z3OVXC8RX1X5EBFKRRSP9EFITVST68QO991P9GE0S19MUSDR23CLMQYP1HP47J29WVP2I1CA' where id=45; -update noar tt set v2='BIG3O7ZSKC73JJW8LEXUOOEU3HZX9F3GTIXC08U7QQOGA74LOEUTY1T738SV9TAHINHU6JKK5RPW80NIXC9RHN6YHRJ1YBV8LEK4XARWJM3IMXEJP6PWB7WVB7EMDZKK42DSQ2NG7HGL6IX04EBK1HI6JJ16GW452PA6YAEU6H61HQ9T7LZPVGTBP6NMYKN7KPXOQKBOYG06LJ6WPSMN2S2NFKCDC1KDZD6ILJ83HSQSF5YCZDEWN3D5EC9AGYUW0' where id=45; -update noar ti set v2='BIG3O7ZSKC73JJW8LEXUOOEU3HZX9F3GTIXC08U7QQOGA74LOEUTY1T738SV9TAHINHU6JKK5RPW80NIXC9RHN6YHRJ1YBV8LEK4XARWJM3IMXEJP6PWB7WVB7EMDZKK42DSQ2NG7HGL6IX04EBK1HI6JJ16GW452PA6YAEU6H61HQ9T7LZPVGTBP6NMYKN7KPXOQKBOYG06LJ6WPSMN2S2NFKCDC1KDZD6ILJ83HSQSF5YCZDEWN3D5EC9AGYUW0' where id=45; -update noar tt set v3='OUYC9DKTGWZGFT4A2NRBER81EVCO2O3UA8VOUMDQJDSO52KN420UL6NE4PK94H9H62WM6THTLWK4QZXSKLVCZHRTUJ5S0FUHRKWTEFEP4FU62F1BYF23U2UQS091VV8AAACCECK0XFK85O1SHU03GZKA0TFODE1EFBOC3HTA42IIA3IS8W0YRUMPT4EQI4KI4V4I9T79ZV200J4O8IURWZHF070JWBUR702E9SEPNZ9Z95CVYHU10P1O0AMLGA9Y9' where id=45; -update noar ti set v3='OUYC9DKTGWZGFT4A2NRBER81EVCO2O3UA8VOUMDQJDSO52KN420UL6NE4PK94H9H62WM6THTLWK4QZXSKLVCZHRTUJ5S0FUHRKWTEFEP4FU62F1BYF23U2UQS091VV8AAACCECK0XFK85O1SHU03GZKA0TFODE1EFBOC3HTA42IIA3IS8W0YRUMPT4EQI4KI4V4I9T79ZV200J4O8IURWZHF070JWBUR702E9SEPNZ9Z95CVYHU10P1O0AMLGA9Y9' where id=45; -update noar tt set v0='PB6DJX0JC33IS056GK6KS818CFG0U90X8WVOUM4WYRM7RZXFZWM91LA9VF5LWY0ERXO349YZM8EUF7Y7J6DWDDZA4AANVSO5OVQL1GBQMOLL5V80V4TFLBQNN2X7YWOW5IY6FYWR4GK0XXG7NQ64P89YYADE3V27BWVJ9REG4PD33XEX4DINBT64RSDPO476HGLKW3RNH4SFCC3CL95A14DNWE17RSNBIX8U3590R7GXN2VB7LIG1A3H9T9Y58TCL' where id=46; -update noar ti set v0='PB6DJX0JC33IS056GK6KS818CFG0U90X8WVOUM4WYRM7RZXFZWM91LA9VF5LWY0ERXO349YZM8EUF7Y7J6DWDDZA4AANVSO5OVQL1GBQMOLL5V80V4TFLBQNN2X7YWOW5IY6FYWR4GK0XXG7NQ64P89YYADE3V27BWVJ9REG4PD33XEX4DINBT64RSDPO476HGLKW3RNH4SFCC3CL95A14DNWE17RSNBIX8U3590R7GXN2VB7LIG1A3H9T9Y58TCL' where id=46; -update noar tt set v1='F83WA3EXCAFGQ1J7S9CZTE399YABHZODSXR0D506Z2KEWZ7982MHMU8JTC6GCITMDVUG1ZQHEQT7MQHLVHKNE5719S6SUSLKZ9JGR224GHBZIVTD4AM09YISFRK1TLN7LMJSDIETBZRNR7U91Q13PP4V42MC6S0JSZRNAF83CN37Q2C4Y8O8TMJBICTR0ERJ4523EAJ3LKL6BFDVQVPUVWF0D5XABZXR75Z98NHSOELQ4U8XMX1727847VE2NNQQG' where id=46; -update noar ti set v1='F83WA3EXCAFGQ1J7S9CZTE399YABHZODSXR0D506Z2KEWZ7982MHMU8JTC6GCITMDVUG1ZQHEQT7MQHLVHKNE5719S6SUSLKZ9JGR224GHBZIVTD4AM09YISFRK1TLN7LMJSDIETBZRNR7U91Q13PP4V42MC6S0JSZRNAF83CN37Q2C4Y8O8TMJBICTR0ERJ4523EAJ3LKL6BFDVQVPUVWF0D5XABZXR75Z98NHSOELQ4U8XMX1727847VE2NNQQG' where id=46; -update noar tt set v2='VF2FHUXPTMJCPPC6ND5MY7L1YPUXSV4NWLQOE0COYQJ09WA940LR6V0M2FPD7LYW20UELPDE8BMUOKR1THQS1X1YBCO3KJW1C60K16ADIGLM05OEGLB5DSUZT3SDFQI2P3OQ4ONO95FI5UPLZE8ZVRRTVJQDUT6LEVFNRLMW67I2KVXCDU27L2CPS3KDEKRTFC7HIXEV6LFAYU74CCI7DAM2U76IX075N8HGAX8U8ZOWWXT10DNPI6LCY12LXO38W' where id=46; -update noar ti set v2='VF2FHUXPTMJCPPC6ND5MY7L1YPUXSV4NWLQOE0COYQJ09WA940LR6V0M2FPD7LYW20UELPDE8BMUOKR1THQS1X1YBCO3KJW1C60K16ADIGLM05OEGLB5DSUZT3SDFQI2P3OQ4ONO95FI5UPLZE8ZVRRTVJQDUT6LEVFNRLMW67I2KVXCDU27L2CPS3KDEKRTFC7HIXEV6LFAYU74CCI7DAM2U76IX075N8HGAX8U8ZOWWXT10DNPI6LCY12LXO38W' where id=46; -update noar tt set v3='1EB42JNSJZPAFH6Z91LNXM3U5AHA7KOW5QKPR1Y18HTDDJWRQIB4DE9A0BI8D77ZAS49I2Y0YV0U35XT5DRAM5DI644XMIFBLL6X7D0XE2E9IXSQUS4WI340PH3RUYCC7QPIJNH58XTKG0PFD3F2OZ43CASBUT9XDR9SA4ESDBDG6GUVZOQGV9ZF7GZ91HQV3ZPI9RCLUSKYJ4KRR1IPM3EZW9X9VD7ID06EVB9MR60WQF2K94VQS4V6FLP67EFE4' where id=46; -update noar ti set v3='1EB42JNSJZPAFH6Z91LNXM3U5AHA7KOW5QKPR1Y18HTDDJWRQIB4DE9A0BI8D77ZAS49I2Y0YV0U35XT5DRAM5DI644XMIFBLL6X7D0XE2E9IXSQUS4WI340PH3RUYCC7QPIJNH58XTKG0PFD3F2OZ43CASBUT9XDR9SA4ESDBDG6GUVZOQGV9ZF7GZ91HQV3ZPI9RCLUSKYJ4KRR1IPM3EZW9X9VD7ID06EVB9MR60WQF2K94VQS4V6FLP67EFE4' where id=46; -update noar tt set v0='AXWTUPJFKOTIA2IGWM4MX9SBKLG9Y2GM0NBE9DAISHQOS4I5ZYXRNXZ631JY9S48RY2IRQCBHF457P1G20HXOUHGYN54U06QE9KHLVDIEWR1IF34B12VVM5CUZLDYN5W6BM20EGYUJRV9S5AWO5WU7D14D5WOW7P0FPG9WXZLXPUPNTKS4VXESSISW6BM1P5UDIUGBII7370S9UJFXF4P0SA55RK9Y47P92FAE6QKG2HS528DU4VSL3H1N19MV5RB' where id=47; -update noar ti set v0='AXWTUPJFKOTIA2IGWM4MX9SBKLG9Y2GM0NBE9DAISHQOS4I5ZYXRNXZ631JY9S48RY2IRQCBHF457P1G20HXOUHGYN54U06QE9KHLVDIEWR1IF34B12VVM5CUZLDYN5W6BM20EGYUJRV9S5AWO5WU7D14D5WOW7P0FPG9WXZLXPUPNTKS4VXESSISW6BM1P5UDIUGBII7370S9UJFXF4P0SA55RK9Y47P92FAE6QKG2HS528DU4VSL3H1N19MV5RB' where id=47; -update noar tt set v1='U5HRVCAYKV0YX0Z7UFWFRFMGQZOL74CRFPA12V5RQHAOAB8WHT2GQTRWBBNMZ9ZEKM7P5CCGTNBYY5N3OHM520HNB01TRJBS9JRG6ZBGWEWNKPSNHJHB1B0Q4GWCDHLO24NMGC8KFGXKC7F8CIOA33PQODFSZCBLM55BE3P41S9COGW04H0KC767XWMUWDS879SA7MRDMXA09I0IUCXWZUWDDB5FP3Z3LXXYQ1JCDGXE9RQNO8PFGSU2GYBTPAXBU' where id=47; -update noar ti set v1='U5HRVCAYKV0YX0Z7UFWFRFMGQZOL74CRFPA12V5RQHAOAB8WHT2GQTRWBBNMZ9ZEKM7P5CCGTNBYY5N3OHM520HNB01TRJBS9JRG6ZBGWEWNKPSNHJHB1B0Q4GWCDHLO24NMGC8KFGXKC7F8CIOA33PQODFSZCBLM55BE3P41S9COGW04H0KC767XWMUWDS879SA7MRDMXA09I0IUCXWZUWDDB5FP3Z3LXXYQ1JCDGXE9RQNO8PFGSU2GYBTPAXBU' where id=47; -update noar tt set v2='SS4H5RR972GX6AC6L42C5NSQK1EPB2RZ3339ZIP8S6LBDZX9LNKF5D6DAX8EFV0HW3WCI7E4HPPYP3Q1GJRCD2F98FAR4D2526LBFVWF5F3X546B8C82D6KTC633L1BSWCKRF4MYFWOW4M9NVRAYQILXAS4XZ206T3H3K1R9V6EAH79XM6T1KJPH8N2CGY2G9JJM7ZVTKMWXXWWUMZG737VKB1441EA53REMQI9303XF96GS7JQRHAVMBCKFL15AE' where id=47; -update noar ti set v2='SS4H5RR972GX6AC6L42C5NSQK1EPB2RZ3339ZIP8S6LBDZX9LNKF5D6DAX8EFV0HW3WCI7E4HPPYP3Q1GJRCD2F98FAR4D2526LBFVWF5F3X546B8C82D6KTC633L1BSWCKRF4MYFWOW4M9NVRAYQILXAS4XZ206T3H3K1R9V6EAH79XM6T1KJPH8N2CGY2G9JJM7ZVTKMWXXWWUMZG737VKB1441EA53REMQI9303XF96GS7JQRHAVMBCKFL15AE' where id=47; -update noar tt set v3='OUX8FNHCWK1ZK9IHMWM8RMU1N006C2AFDN17KHGJJSOD8ZL3K7R6FWR8LIVSR0DLGHIFR4SO6EMXXOPZ3RZSEDQ70JJIW0COS50W4MIPUZ4PFZUHNDDBP3PFCMEQQIXUMN0E82BPR2DTMQEBLAZA7ON3QX7V612H4UO6H9ZK1Q9IQT4G95APIRXDNNLFZQTOZPWNNNJ67MHTRMN2T49PTZH9H55GXEE4PY6I551NZAVD5NRVOMXZ1MRQNWC2RY6W7' where id=47; -update noar ti set v3='OUX8FNHCWK1ZK9IHMWM8RMU1N006C2AFDN17KHGJJSOD8ZL3K7R6FWR8LIVSR0DLGHIFR4SO6EMXXOPZ3RZSEDQ70JJIW0COS50W4MIPUZ4PFZUHNDDBP3PFCMEQQIXUMN0E82BPR2DTMQEBLAZA7ON3QX7V612H4UO6H9ZK1Q9IQT4G95APIRXDNNLFZQTOZPWNNNJ67MHTRMN2T49PTZH9H55GXEE4PY6I551NZAVD5NRVOMXZ1MRQNWC2RY6W7' where id=47; -update noar tt set v0='MB5H1GDPS1VCHQ9PW1EDK84A367DLALIB92THATAP0MY21UZSLKIQMVALPITBWYZ1T6DKOMNMDJ26BP7P29QOFVY0Q1QGQ1DS4JPNKH5IJO1I1YRV3SSWBTFRF14ITYQD7FU7PV0IGUJ1A21XP8CF3ZJ9T7QB5T9OOAQPGJ0KVOM6GYJ7WA369TOV7TDRGQU1GEFYLSYRIWTTGCN6C07EQAYX9MF399JCZ3OBTDH9WDKFERXJGO95DAAIPAF0H4YK' where id=48; -update noar ti set v0='MB5H1GDPS1VCHQ9PW1EDK84A367DLALIB92THATAP0MY21UZSLKIQMVALPITBWYZ1T6DKOMNMDJ26BP7P29QOFVY0Q1QGQ1DS4JPNKH5IJO1I1YRV3SSWBTFRF14ITYQD7FU7PV0IGUJ1A21XP8CF3ZJ9T7QB5T9OOAQPGJ0KVOM6GYJ7WA369TOV7TDRGQU1GEFYLSYRIWTTGCN6C07EQAYX9MF399JCZ3OBTDH9WDKFERXJGO95DAAIPAF0H4YK' where id=48; -update noar tt set v1='WS7R7FP866JN1TTU7QFKA4URDL1IS3ENK8PL5YPOGILQ76VUFO9Y362VTAHA19J3VM4WMZON3U0KU80KCEL6G3AR9HXHFPJ98RP3YAD9IEZBTK7FU8L512R3Q3JO2EAFYLY7RONZTGZ44DF66IGNA0E2NKF8GBELZIRS55I7VOD7CTM3M60PDIACWRZAOA61NHC8BCWI8CDROUYKK0OHYGX18O71HZLHON3U3TAGPB9MJN3CCCSRW0EF0WS7H18HD' where id=48; -update noar ti set v1='WS7R7FP866JN1TTU7QFKA4URDL1IS3ENK8PL5YPOGILQ76VUFO9Y362VTAHA19J3VM4WMZON3U0KU80KCEL6G3AR9HXHFPJ98RP3YAD9IEZBTK7FU8L512R3Q3JO2EAFYLY7RONZTGZ44DF66IGNA0E2NKF8GBELZIRS55I7VOD7CTM3M60PDIACWRZAOA61NHC8BCWI8CDROUYKK0OHYGX18O71HZLHON3U3TAGPB9MJN3CCCSRW0EF0WS7H18HD' where id=48; -update noar tt set v2='OURRGQBAB4425PAAVQDZCSF3DEWUW1CVBB3C7UCCKJSWRR1D4IFS7P8UMI59MIO6YOAH3AJUAHBT05416W8WH5501TFITBJGRWQM61Q4IND4GH8L85ZBULJQOX54XT51AXUASK179GJRJWTIH8MXFORV4Z9Y9DIBBDF6VC5MWBCOVBLCQU6WX8PGP59B4G7HVT1TOA2ULTNJX5OAP6WVU92RI1M47SIHHPI6FV3F68KRO27T572PN5NIGL6TOG2BO' where id=48; -update noar ti set v2='OURRGQBAB4425PAAVQDZCSF3DEWUW1CVBB3C7UCCKJSWRR1D4IFS7P8UMI59MIO6YOAH3AJUAHBT05416W8WH5501TFITBJGRWQM61Q4IND4GH8L85ZBULJQOX54XT51AXUASK179GJRJWTIH8MXFORV4Z9Y9DIBBDF6VC5MWBCOVBLCQU6WX8PGP59B4G7HVT1TOA2ULTNJX5OAP6WVU92RI1M47SIHHPI6FV3F68KRO27T572PN5NIGL6TOG2BO' where id=48; -update noar tt set v3='M2GZYWGU6K2Z1BRUCDWQM4MX6YZ0VHVWKMVIH3YTKBQNXUYGIVEYKCIIA80205LX9OYPVGWFDOWUQBQENQQCT0CDEJ59HVFTTG7J4EG455TAXBDIHSZMZWKK9AZ6118VHSOGVEINMWWWWZUGGM79GAT5PZKI1WR8EA6J24XGGCOVKLK77UWA8LJ91GZLFEI0F0QUVBAGX4125SAJXK2HBKJMVD165V4W8DCLS3UCVWZXPPFDO6QBWHDXRKFKALR86' where id=48; -update noar ti set v3='M2GZYWGU6K2Z1BRUCDWQM4MX6YZ0VHVWKMVIH3YTKBQNXUYGIVEYKCIIA80205LX9OYPVGWFDOWUQBQENQQCT0CDEJ59HVFTTG7J4EG455TAXBDIHSZMZWKK9AZ6118VHSOGVEINMWWWWZUGGM79GAT5PZKI1WR8EA6J24XGGCOVKLK77UWA8LJ91GZLFEI0F0QUVBAGX4125SAJXK2HBKJMVD165V4W8DCLS3UCVWZXPPFDO6QBWHDXRKFKALR86' where id=48; -update noar tt set v0='AO8D9J3S7JLAIEP1567XBBM1YRUQ7R9TTBOOUCNW1WWEBVB43X0CU7VO90UC42FQUATL201RCV6QF476ELOBZEFI2J7RJZ94OR9CFTJZ1GZRJ0BO0MFLYIQD8YQ79NTMYM6P768O0GENJT4HQTMMITS5Z6TE1HY1EYTH12C0WIXI3H10BDQHOMQH9XPWN7PKBNRKVSEDQBANGB90IARLZNRP77IBID3YRG3LZUAF12DY7HJ1CCK05TR5PVGPFTZ03' where id=49; -update noar ti set v0='AO8D9J3S7JLAIEP1567XBBM1YRUQ7R9TTBOOUCNW1WWEBVB43X0CU7VO90UC42FQUATL201RCV6QF476ELOBZEFI2J7RJZ94OR9CFTJZ1GZRJ0BO0MFLYIQD8YQ79NTMYM6P768O0GENJT4HQTMMITS5Z6TE1HY1EYTH12C0WIXI3H10BDQHOMQH9XPWN7PKBNRKVSEDQBANGB90IARLZNRP77IBID3YRG3LZUAF12DY7HJ1CCK05TR5PVGPFTZ03' where id=49; -update noar tt set v1='XCKZM3OD2Z7IVD51S1UZKBLJOBHZ21CA37Z0ZLXXXU9WWPGHHKF8B7WIISUTNZ9XV48UMBS92BGSUKW1G1K0AEND4PEC7X5TUIGYOSOTUELEV5GRAO686I6SLPHO3HDM0JX9NO3BRNE44IZ9EKY0VR225LWRSLP8Z6OZTGN2O7BAD9DBRRS8VZ3O87ZDZO8X2UAS7UCFUF8T7PZ0BSAU2T4X91N9EXA8FDYQSNGKRMJOC1Y0IJA6Q6P8H1MBRQTLZ' where id=49; -update noar ti set v1='XCKZM3OD2Z7IVD51S1UZKBLJOBHZ21CA37Z0ZLXXXU9WWPGHHKF8B7WIISUTNZ9XV48UMBS92BGSUKW1G1K0AEND4PEC7X5TUIGYOSOTUELEV5GRAO686I6SLPHO3HDM0JX9NO3BRNE44IZ9EKY0VR225LWRSLP8Z6OZTGN2O7BAD9DBRRS8VZ3O87ZDZO8X2UAS7UCFUF8T7PZ0BSAU2T4X91N9EXA8FDYQSNGKRMJOC1Y0IJA6Q6P8H1MBRQTLZ' where id=49; -update noar tt set v2='HX8HWM57ZA4REZHCZ5QIFX3EHDZ5VOQALTPQ9RGTUREZD61Q2EE71ARF7Q070OECZOR74YX0VMXQ8OUOWG5U1JYJXRKLFY9OKJ1W5G19WZN3RYNTLBJTFWV66CCRGWCDS984LVZ2MX00PFU5O1PEVR6NZEDN91BYU3YNR88HI3VZ1L926IYZF7UTJOUJ7J3I6LT8KAOTF0EJXK9K2MYTAHJM430XVQ3CX1Q8D59FBWJCBBYD285SMF9MGHOZUMJX2' where id=49; -update noar ti set v2='HX8HWM57ZA4REZHCZ5QIFX3EHDZ5VOQALTPQ9RGTUREZD61Q2EE71ARF7Q070OECZOR74YX0VMXQ8OUOWG5U1JYJXRKLFY9OKJ1W5G19WZN3RYNTLBJTFWV66CCRGWCDS984LVZ2MX00PFU5O1PEVR6NZEDN91BYU3YNR88HI3VZ1L926IYZF7UTJOUJ7J3I6LT8KAOTF0EJXK9K2MYTAHJM430XVQ3CX1Q8D59FBWJCBBYD285SMF9MGHOZUMJX2' where id=49; -update noar tt set v3='GNK7N79NMO26ME4T9KR9W4L8G8252XOYJVKGG3UF8K0CXS9YKT7V75YBZHMDSL8XVGGLI50SSDKX0MPDVRR91YGM3YWKOBI9ZKDZ6YLMX6XST30TX98XKUZHOE2PIR4P3ND98UAVQ0N1TDXZ8979OCOG9CZYVQMT3AC72VQZ9SN78WW41GEKAODMR7FI1DXR91AIBOAQ0VS6QEIO5Q3EQHJKR3QD312WC3OQ5RHX45ELD10QNZFLR81V8DR8IJ8WD' where id=49; -update noar ti set v3='GNK7N79NMO26ME4T9KR9W4L8G8252XOYJVKGG3UF8K0CXS9YKT7V75YBZHMDSL8XVGGLI50SSDKX0MPDVRR91YGM3YWKOBI9ZKDZ6YLMX6XST30TX98XKUZHOE2PIR4P3ND98UAVQ0N1TDXZ8979OCOG9CZYVQMT3AC72VQZ9SN78WW41GEKAODMR7FI1DXR91AIBOAQ0VS6QEIO5Q3EQHJKR3QD312WC3OQ5RHX45ELD10QNZFLR81V8DR8IJ8WD' where id=49; -update noar tt set v0='37HT7BYR78EERPH9RVTTIOBKTLDDE9S7WVA8ZUA76MVVW2Q10E6AT0BNWCSDFB0B0HJ802F2LN6CGQJ0DU6DJ8G37WONMW0KHOFJQOVHT3YQN3FR3IFT6L90958O9AMBASZ2CEJDJT8GV0XQ67ZYC7T6PJHYS7OSITUI1126TMFUW3ADSJZBKQKJQR5B2PGVABS2V62ZKZRQDC48YAV2HV7XOGJRQQAF736COH274QB9Z0Y6M9GCQHFP9PXWRNNMH' where id=50; -update noar ti set v0='37HT7BYR78EERPH9RVTTIOBKTLDDE9S7WVA8ZUA76MVVW2Q10E6AT0BNWCSDFB0B0HJ802F2LN6CGQJ0DU6DJ8G37WONMW0KHOFJQOVHT3YQN3FR3IFT6L90958O9AMBASZ2CEJDJT8GV0XQ67ZYC7T6PJHYS7OSITUI1126TMFUW3ADSJZBKQKJQR5B2PGVABS2V62ZKZRQDC48YAV2HV7XOGJRQQAF736COH274QB9Z0Y6M9GCQHFP9PXWRNNMH' where id=50; -update noar tt set v1='M2UYZV7J77TIQRXJXXOIV7AHONHGSGR85FSDETGPJAGIN4WP7WA4INPXCC1UKW38MYWIMPZOQVM7BQJXKVBOB9LRVL2FNAKP3U6SKTVQ4VAW2PNKRNBMJ9SXLJNBWBUJEUXFPL30SXBW2PVKII5AGTPT9MGL2NXMCGX23PRU5O0769FS4Z9AYQ9CCWKZ4FB3H265QPRGL2JZ6DG4U4WJUIA5TAJB439F2APCSHVGCUV0SPVUGUADCS33MIZTBHM3J' where id=50; -update noar ti set v1='M2UYZV7J77TIQRXJXXOIV7AHONHGSGR85FSDETGPJAGIN4WP7WA4INPXCC1UKW38MYWIMPZOQVM7BQJXKVBOB9LRVL2FNAKP3U6SKTVQ4VAW2PNKRNBMJ9SXLJNBWBUJEUXFPL30SXBW2PVKII5AGTPT9MGL2NXMCGX23PRU5O0769FS4Z9AYQ9CCWKZ4FB3H265QPRGL2JZ6DG4U4WJUIA5TAJB439F2APCSHVGCUV0SPVUGUADCS33MIZTBHM3J' where id=50; -update noar tt set v2='FP83NGEV9S1FG0GW9R022EWXKFSLJ5ERTIEK2KO05FGPNPUAVYGNKNNQLVPYXS2C988FHSVGJ3UGXJXTE1MAC8DZAAQ6XM71XR2HHFSYQ4DJ3EHWKSTRU72XGAU3A1Z95J1UL4CYFM0DKZDCYCKXOZETZX37EPCZ1JOTAMLFM0BUQC4BKNGUK5K82FKVXR7Z9RN8G1UQKF2A7MHV22PZXYERT0ICT3QD9C1JFN2XMROQPEAONYCABVRR8HNF6KHEN' where id=50; -update noar ti set v2='FP83NGEV9S1FG0GW9R022EWXKFSLJ5ERTIEK2KO05FGPNPUAVYGNKNNQLVPYXS2C988FHSVGJ3UGXJXTE1MAC8DZAAQ6XM71XR2HHFSYQ4DJ3EHWKSTRU72XGAU3A1Z95J1UL4CYFM0DKZDCYCKXOZETZX37EPCZ1JOTAMLFM0BUQC4BKNGUK5K82FKVXR7Z9RN8G1UQKF2A7MHV22PZXYERT0ICT3QD9C1JFN2XMROQPEAONYCABVRR8HNF6KHEN' where id=50; -update noar tt set v3='YEV58MS7K3YGU404NGCT58AWBHF392C5LBUJGHP9PZSB9IIQAFBH8S74TQ6HSMO4NZDULW4H5PKMZ2KUTESKFC93GRP1O83QSG85ILG4WPZNW778PTQD8GHO2ILAVQX1T72GXYXE46ELH5JOQOHB1IJMIXQ7SQMB38QR58PFFTGOT626JM1C4TWN5RROFMEPDENLHTD0PONBFP6PGQQCLWUNGW3KCHM9PBWC4QYSXOVWN8HCHIYWVT4S9MQZXZXTM' where id=50; -update noar ti set v3='YEV58MS7K3YGU404NGCT58AWBHF392C5LBUJGHP9PZSB9IIQAFBH8S74TQ6HSMO4NZDULW4H5PKMZ2KUTESKFC93GRP1O83QSG85ILG4WPZNW778PTQD8GHO2ILAVQX1T72GXYXE46ELH5JOQOHB1IJMIXQ7SQMB38QR58PFFTGOT626JM1C4TWN5RROFMEPDENLHTD0PONBFP6PGQQCLWUNGW3KCHM9PBWC4QYSXOVWN8HCHIYWVT4S9MQZXZXTM' where id=50; -update noar tt set v0='L02SLSQNFP6MNF48RGP7WVWH0TWBROBHU26EP167Q5BUMEZQHDDJZ0G5TVDM0QHA9ZV4Z0OB96NBPQOGL30EBXWX2Z30AF2F9W3JPQXLR9SAPB0YIHMPK9NPB1MGL9SQU1OPKRHFJU2GNBWVQQRG2IYPX18UITGOLZKZH5SHDBH3UTRZ54INUXBL9SK7KL83VSH0D6OSX6RHAJ9JZZJW9JJ3G5HUZE4TWNJS5NNLOQ2OTSOVO3QB015LLWAHKJ8T2' where id=51; -update noar ti set v0='L02SLSQNFP6MNF48RGP7WVWH0TWBROBHU26EP167Q5BUMEZQHDDJZ0G5TVDM0QHA9ZV4Z0OB96NBPQOGL30EBXWX2Z30AF2F9W3JPQXLR9SAPB0YIHMPK9NPB1MGL9SQU1OPKRHFJU2GNBWVQQRG2IYPX18UITGOLZKZH5SHDBH3UTRZ54INUXBL9SK7KL83VSH0D6OSX6RHAJ9JZZJW9JJ3G5HUZE4TWNJS5NNLOQ2OTSOVO3QB015LLWAHKJ8T2' where id=51; -update noar tt set v1='TXPG9ZZWW0R5EWHR1AWDMBAYHOF2JEYO1Z28SQ21V1ECQFW9L20ITYB0BOPWA6T9XEY56FTQWBPCZZDQMZ3XOCRWH6H0C7Z4L879UA8B1KLQK0JOMLK0V67HO1D181Q1CAAPEXNQ0ZA9IZXX8XBASO844UN3RGXCTA1YU53AE6T37TQ383UZPWTGBAZ8GHZ5MZWJHQ4I5GR1DLPDHW8XC6OA04R6BTBIEHLSYXYZX1X7QNI1R66QAW85FZWP4SYSX' where id=51; -update noar ti set v1='TXPG9ZZWW0R5EWHR1AWDMBAYHOF2JEYO1Z28SQ21V1ECQFW9L20ITYB0BOPWA6T9XEY56FTQWBPCZZDQMZ3XOCRWH6H0C7Z4L879UA8B1KLQK0JOMLK0V67HO1D181Q1CAAPEXNQ0ZA9IZXX8XBASO844UN3RGXCTA1YU53AE6T37TQ383UZPWTGBAZ8GHZ5MZWJHQ4I5GR1DLPDHW8XC6OA04R6BTBIEHLSYXYZX1X7QNI1R66QAW85FZWP4SYSX' where id=51; -update noar tt set v2='90I06DOQD2WMCSHO3DMYUX0JX8E13HRTF4G00Z6P2J33BLLUB4105474BIDK426DO8NLVS8V17G7V9RX9AH292GF4BUZNEECW6Z496HWG5U7LXEFEW42WA3QV5CKSQNVIOFYZVZUD1MRU82J5WPNLUFIBAW4C2APG5LR3SR0WKN6RWS83YM23FXNWPBUB6OU49EKP9M5B64NI8QABYG1D8V4CROHCQRZMXF5BT23YLS5RGVWCNOHZ3Q4VNGGMKJQR' where id=51; -update noar ti set v2='90I06DOQD2WMCSHO3DMYUX0JX8E13HRTF4G00Z6P2J33BLLUB4105474BIDK426DO8NLVS8V17G7V9RX9AH292GF4BUZNEECW6Z496HWG5U7LXEFEW42WA3QV5CKSQNVIOFYZVZUD1MRU82J5WPNLUFIBAW4C2APG5LR3SR0WKN6RWS83YM23FXNWPBUB6OU49EKP9M5B64NI8QABYG1D8V4CROHCQRZMXF5BT23YLS5RGVWCNOHZ3Q4VNGGMKJQR' where id=51; -update noar tt set v3='XSVOFDOIVFWQXX8CTHTBUFDSPDAGU8OMD18HUFYEY4TFA04CSAMLQZGHSO29VDQPQTKTP1JQGGHWJJNH1K30633EZP20DDPXD7B6SLPNACGV1U6CVRZX76FA6OVWLP1ZQ0UNG34NHL7X8L8IPK03YT9TN24K0C5F5XWY9LIJPOD70G4XJBXZBZLWDCHC15BY6VG4O7H1WCH90F06YHJ1KXDQW7S52BBETH613H6RLU5MPVT2VAVJYWMRE7F9G6F3E' where id=51; -update noar ti set v3='XSVOFDOIVFWQXX8CTHTBUFDSPDAGU8OMD18HUFYEY4TFA04CSAMLQZGHSO29VDQPQTKTP1JQGGHWJJNH1K30633EZP20DDPXD7B6SLPNACGV1U6CVRZX76FA6OVWLP1ZQ0UNG34NHL7X8L8IPK03YT9TN24K0C5F5XWY9LIJPOD70G4XJBXZBZLWDCHC15BY6VG4O7H1WCH90F06YHJ1KXDQW7S52BBETH613H6RLU5MPVT2VAVJYWMRE7F9G6F3E' where id=51; -update noar tt set v0='L0ZPPT7SS7BAVC7TR9C68FWR0WAA78EN1SX4R31ZI74CRBA4L35LEZZEJVDIZ0SJZBIRDBF2RA1RE2U5A5O1UCP9L7EBL8W7A3ZQ4ES2XZ83ZQW16YQUA1UDOFB3ZUHLEJVAOR54S3QBZQANO20I9KJCXJAS5YT82MTXN1CIGWH2JVIYHOB5V0BEB5MLQ0HHG6IXEI5GONM6YZA01QHJR8MLEPRVNM8DBUYVQ473KB54GF5LO35OG0UTT4Y05DLNL' where id=52; -update noar ti set v0='L0ZPPT7SS7BAVC7TR9C68FWR0WAA78EN1SX4R31ZI74CRBA4L35LEZZEJVDIZ0SJZBIRDBF2RA1RE2U5A5O1UCP9L7EBL8W7A3ZQ4ES2XZ83ZQW16YQUA1UDOFB3ZUHLEJVAOR54S3QBZQANO20I9KJCXJAS5YT82MTXN1CIGWH2JVIYHOB5V0BEB5MLQ0HHG6IXEI5GONM6YZA01QHJR8MLEPRVNM8DBUYVQ473KB54GF5LO35OG0UTT4Y05DLNL' where id=52; -update noar tt set v1='PWI8CZ9UWFWBDES4AVY04QUTPTF2QC3KERXSNWUJS1U636EP6KEEOTXSDLW4QVF7Z662Z3V7XRTJEA4PMQ1NAH8H3OLEUVQ7IAKMJD87286B2LVQQ63TD6YVG2H1XFY5TPLEVBUJYGK7IL7JI140LJ3Z110LQ1YZPIH0NC63DM1ZIJI9FY43P9NXYF75XJHPVQMPWTD1AVRAB8O8SRZ9KICCNQ7X03LVYWOV7D4VKB1ISDAXFLOVCSR4P875AQAWJ' where id=52; -update noar ti set v1='PWI8CZ9UWFWBDES4AVY04QUTPTF2QC3KERXSNWUJS1U636EP6KEEOTXSDLW4QVF7Z662Z3V7XRTJEA4PMQ1NAH8H3OLEUVQ7IAKMJD87286B2LVQQ63TD6YVG2H1XFY5TPLEVBUJYGK7IL7JI140LJ3Z110LQ1YZPIH0NC63DM1ZIJI9FY43P9NXYF75XJHPVQMPWTD1AVRAB8O8SRZ9KICCNQ7X03LVYWOV7D4VKB1ISDAXFLOVCSR4P875AQAWJ' where id=52; -update noar tt set v2='CI0801VOLLZWCYYZVBL3M0PDXTMXOOHTRZWFNF7XSIZRL6E8U22KU09WH08Q9FBEJG9M9QY9NA89G3LBB8JAOUPO1LI1ZX49BMV6P7YQHDBL8G9ABZISV2BTA0G7HOOT6UKIM67JOFLVDQ137JM5OUPQLLSPX1Z4SWV2OD3L6LAPTWFF7QY9YTPVWRWDEBRWC2GZ5V52J3JUAWGF1DG93ODJE09FMZ8YEZ7U13HNUA60SX1BTD1SJS094E07FPX33' where id=52; -update noar ti set v2='CI0801VOLLZWCYYZVBL3M0PDXTMXOOHTRZWFNF7XSIZRL6E8U22KU09WH08Q9FBEJG9M9QY9NA89G3LBB8JAOUPO1LI1ZX49BMV6P7YQHDBL8G9ABZISV2BTA0G7HOOT6UKIM67JOFLVDQ137JM5OUPQLLSPX1Z4SWV2OD3L6LAPTWFF7QY9YTPVWRWDEBRWC2GZ5V52J3JUAWGF1DG93ODJE09FMZ8YEZ7U13HNUA60SX1BTD1SJS094E07FPX33' where id=52; -update noar tt set v3='CAS3QUFXWJLZ11XBP5SBRBWCHRB4YTFVDK8CRBS4NX9P0UHDRVR9BWF8GC0FVTZO3N4QYJE85DTSZ2Q9RTMR2Z32EFMEC9IA9CGP1LO27L110BMCPVH0I4E96Y8K7Y41A2L8XSYQVQ3CTMDS99M9WOAGIH5Q9KJOX3J2MMBQSR4MJA7V3DFZ0ZNM2QW9ACEN14MBY2KIFTQJVN1A6W0YSE6V014MDIPRRYAHTRGL5431V84L1GRCS1LIKJ4SIOGWX' where id=52; -update noar ti set v3='CAS3QUFXWJLZ11XBP5SBRBWCHRB4YTFVDK8CRBS4NX9P0UHDRVR9BWF8GC0FVTZO3N4QYJE85DTSZ2Q9RTMR2Z32EFMEC9IA9CGP1LO27L110BMCPVH0I4E96Y8K7Y41A2L8XSYQVQ3CTMDS99M9WOAGIH5Q9KJOX3J2MMBQSR4MJA7V3DFZ0ZNM2QW9ACEN14MBY2KIFTQJVN1A6W0YSE6V014MDIPRRYAHTRGL5431V84L1GRCS1LIKJ4SIOGWX' where id=52; -update noar tt set v0='F9Y7SXJEGYF82G7OCV8JBC0XC895SAD409K42N9FPADHWKIEYT7WH0IZQ1SYEXBD22XV4FTGBTUO9JTI9KCTSX5W0F0AN3Z1I89NHWIYNQTCZ9QLO6BLART4L3HLEYR7PPHX0651ABD7UZL587JFGND5AJHJZJMBR8INF5UUDR86PZIOZQCNIIELH9D59C9BYKUT1IVOWWLCRRMXA9ZKIQNDBMIQ2V7OXU8A5MMSB4NFQVP1SLEZTCWWA018RSGQX' where id=53; -update noar ti set v0='F9Y7SXJEGYF82G7OCV8JBC0XC895SAD409K42N9FPADHWKIEYT7WH0IZQ1SYEXBD22XV4FTGBTUO9JTI9KCTSX5W0F0AN3Z1I89NHWIYNQTCZ9QLO6BLART4L3HLEYR7PPHX0651ABD7UZL587JFGND5AJHJZJMBR8INF5UUDR86PZIOZQCNIIELH9D59C9BYKUT1IVOWWLCRRMXA9ZKIQNDBMIQ2V7OXU8A5MMSB4NFQVP1SLEZTCWWA018RSGQX' where id=53; -update noar tt set v1='MRBFQBTUE41O7ZNL2YQ81SOWIEF1V4Y8UNVZ3K8MWCNCRAYNTCMHFEG3KAP3I08FIN3TJPGJTW6BH8FH06Y97N9SWOQNE5BGKNLNVRRQPSW4VBPT7W1SGK5ZXXA1341JCE3QB83S8BOMCXZC5MU6V8XVXEO5NIK2CC4EU8VMPSDAHKNU22M8RXP4KU2MYXEENQWDXYBSF41EAW177715PGQ7GD0M2O2A21KXFMZ259FDPJFP0VXJOEYF79255ZCQ4' where id=53; -update noar ti set v1='MRBFQBTUE41O7ZNL2YQ81SOWIEF1V4Y8UNVZ3K8MWCNCRAYNTCMHFEG3KAP3I08FIN3TJPGJTW6BH8FH06Y97N9SWOQNE5BGKNLNVRRQPSW4VBPT7W1SGK5ZXXA1341JCE3QB83S8BOMCXZC5MU6V8XVXEO5NIK2CC4EU8VMPSDAHKNU22M8RXP4KU2MYXEENQWDXYBSF41EAW177715PGQ7GD0M2O2A21KXFMZ259FDPJFP0VXJOEYF79255ZCQ4' where id=53; -update noar tt set v2='YFRBEYDP8189782U16KDH6YKK1PFYYLSPF6ZZBJR4YZ6HY9U1NJWPBUQNKZM95U21272FISYKZW9S4NZQEBIDFKN2IO58LPMTT2M8E6TMQDEVQQQ2CY19IM8MHN1FY04947C9KTQJS6WY20O0K1WKJCLOQWPNPB64FPIACPEC00RVJSSSS7B7QFFWXE2U2NBR6O9EOBTUFG72ZJWNE9OW6C5CCJ9J1PNKBHXZ8W2GRPPML059CJ65FJTQP0TA6JXT' where id=53; -update noar ti set v2='YFRBEYDP8189782U16KDH6YKK1PFYYLSPF6ZZBJR4YZ6HY9U1NJWPBUQNKZM95U21272FISYKZW9S4NZQEBIDFKN2IO58LPMTT2M8E6TMQDEVQQQ2CY19IM8MHN1FY04947C9KTQJS6WY20O0K1WKJCLOQWPNPB64FPIACPEC00RVJSSSS7B7QFFWXE2U2NBR6O9EOBTUFG72ZJWNE9OW6C5CCJ9J1PNKBHXZ8W2GRPPML059CJ65FJTQP0TA6JXT' where id=53; -update noar tt set v3='LVM1V0I9MZ3SOPEVCLGTBIIACYI2SUING6FEEFWK5WR0T6WHQAB8RD0M2ILS5S1GYV34Z03JEK1Z4BTQUM62CYQTMHJUYU4H1YHQPEERDXYTENM3BGALT5FIFPYP7X0JL98OY9QVKF27BTAA8PWS8BW7BAL71UASZLDQMF8U01S5EBUM0DIC5NAI5F19OTDEKKI7KBHMV51317E4LMHEGGAM22X04PHJLL8NN6PX9UYHS6B8687FEVY6MIC7YBJXZ' where id=53; -update noar ti set v3='LVM1V0I9MZ3SOPEVCLGTBIIACYI2SUING6FEEFWK5WR0T6WHQAB8RD0M2ILS5S1GYV34Z03JEK1Z4BTQUM62CYQTMHJUYU4H1YHQPEERDXYTENM3BGALT5FIFPYP7X0JL98OY9QVKF27BTAA8PWS8BW7BAL71UASZLDQMF8U01S5EBUM0DIC5NAI5F19OTDEKKI7KBHMV51317E4LMHEGGAM22X04PHJLL8NN6PX9UYHS6B8687FEVY6MIC7YBJXZ' where id=53; -update noar tt set v0='ADFWI0G6MCB2ET4MQVWSOGJWVZ0RUNCG0SMSC2U35CLW3DWP8K6W3ZKM6N1TCPY4U82GOI7LZFTWTG4E087X4VPKE0L3HPNBMTGAKYMVZZ03TIB2GM07C4JFOTT05TOCV7RV25KT45TM30CEK86YW904O6J2O5DOFEYK5U3CEUB319TWTF3JJ4PPSWOQVHFOTPI0HT5BYI6AX3FUUAN4LPV8I9NJ5VLYCJZC3OH81MS98UGR5GHBHLDA8W28N97M5' where id=54; -update noar ti set v0='ADFWI0G6MCB2ET4MQVWSOGJWVZ0RUNCG0SMSC2U35CLW3DWP8K6W3ZKM6N1TCPY4U82GOI7LZFTWTG4E087X4VPKE0L3HPNBMTGAKYMVZZ03TIB2GM07C4JFOTT05TOCV7RV25KT45TM30CEK86YW904O6J2O5DOFEYK5U3CEUB319TWTF3JJ4PPSWOQVHFOTPI0HT5BYI6AX3FUUAN4LPV8I9NJ5VLYCJZC3OH81MS98UGR5GHBHLDA8W28N97M5' where id=54; -update noar tt set v1='0SVFOEMGZ3H24E1ATRK5UFXXZ7N9TVDSA59V4OCY2EWR5PL5L6QQLPMZNW5GDK3L7CEK4AJ05G4NCVBKMR4AFDAFYVOX96X6ZMFTXIDQ1M3XER1W8FHVW69A5B604KGHNBSPS03NSY4E54PAYFD8Y4284H2VN2CD7XE35MIQTOZDOK77PP8IFRT45PN8JX9OIJSNGI2XKJW5X96GN1XUUPO4B0NPQX6VT3QZC7I6A2TXJ4VMT8DW00P9EQM9BGMQM' where id=54; -update noar ti set v1='0SVFOEMGZ3H24E1ATRK5UFXXZ7N9TVDSA59V4OCY2EWR5PL5L6QQLPMZNW5GDK3L7CEK4AJ05G4NCVBKMR4AFDAFYVOX96X6ZMFTXIDQ1M3XER1W8FHVW69A5B604KGHNBSPS03NSY4E54PAYFD8Y4284H2VN2CD7XE35MIQTOZDOK77PP8IFRT45PN8JX9OIJSNGI2XKJW5X96GN1XUUPO4B0NPQX6VT3QZC7I6A2TXJ4VMT8DW00P9EQM9BGMQM' where id=54; -update noar tt set v2='KU18A9HPHCO93FHXGDH4MMSSX2U9MASPMNU6XSGK5FT2KEAIFSEM0CA4M3VO9OPIVG29S5Y4K40G53SOTEZ2R521PEWY6L185E5M1456W8EAVCIWXZU5WCPB31094WT5IVU7TNPZ8FIKNH5ALMWSE5AK0UZ5NRFF80GSRYKPYZTECQYC7NXS6PLESLBES36K2T6HT2RDUMWWPR2KQMAPNPYNIK1HFXCU3AMYKAI97D74O55E5OGHNWNLXOXGURD3B' where id=54; -update noar ti set v2='KU18A9HPHCO93FHXGDH4MMSSX2U9MASPMNU6XSGK5FT2KEAIFSEM0CA4M3VO9OPIVG29S5Y4K40G53SOTEZ2R521PEWY6L185E5M1456W8EAVCIWXZU5WCPB31094WT5IVU7TNPZ8FIKNH5ALMWSE5AK0UZ5NRFF80GSRYKPYZTECQYC7NXS6PLESLBES36K2T6HT2RDUMWWPR2KQMAPNPYNIK1HFXCU3AMYKAI97D74O55E5OGHNWNLXOXGURD3B' where id=54; -update noar tt set v3='PCQKPKVK305WUYEQ6YG3BVVQPEE58UD3ST6IV3406AS8EWQX064ZB1724J4M4EA4I9BF6L9KZB774JLF8SUPP49DQL641SNIR01T2SDT9VE84UNTJBPWDMECC4A3V0M5NLDL08ZYXLYJ0H4QVPXVUHXB5IWSVI06ZXGYM18THWEXGURXRCP5YBGJB0CFRQ43IVWT8O2NOWZ2T3XLUZEP5N5S2YOK08686MM08DQULZZCJ8DMCTQK7Z6LQA7J0ZGNS' where id=54; -update noar ti set v3='PCQKPKVK305WUYEQ6YG3BVVQPEE58UD3ST6IV3406AS8EWQX064ZB1724J4M4EA4I9BF6L9KZB774JLF8SUPP49DQL641SNIR01T2SDT9VE84UNTJBPWDMECC4A3V0M5NLDL08ZYXLYJ0H4QVPXVUHXB5IWSVI06ZXGYM18THWEXGURXRCP5YBGJB0CFRQ43IVWT8O2NOWZ2T3XLUZEP5N5S2YOK08686MM08DQULZZCJ8DMCTQK7Z6LQA7J0ZGNS' where id=54; -update noar tt set v0='196RZHXSWGM81DT1VMWLAC2Y17JN2SP7FL9RRY3RDVXAEZYR5L61IGN2I2WXLBDXC6Z8DOU2OV8USNYWUPJA7JMLSNN3AG4DUM0A7XD8X9OPRAQDFKWJ6JNRQ8X2O9ERIR6A8VPUHEMTK6Q2J03DIZ7LYQ0XBIMMJ1JI65R3DW677LWG4Y560KMTQEQFHL7ROUASJ4UQWPNF6MDJG2W26KQOOCERQHA9JMWMGDLET359PK0Y4C1EPSES4PPPZL8YO' where id=55; -update noar ti set v0='196RZHXSWGM81DT1VMWLAC2Y17JN2SP7FL9RRY3RDVXAEZYR5L61IGN2I2WXLBDXC6Z8DOU2OV8USNYWUPJA7JMLSNN3AG4DUM0A7XD8X9OPRAQDFKWJ6JNRQ8X2O9ERIR6A8VPUHEMTK6Q2J03DIZ7LYQ0XBIMMJ1JI65R3DW677LWG4Y560KMTQEQFHL7ROUASJ4UQWPNF6MDJG2W26KQOOCERQHA9JMWMGDLET359PK0Y4C1EPSES4PPPZL8YO' where id=55; -update noar tt set v1='F8GQ95HDP1DFXK5LHOAHGHVDVSBQI977RAZGXJVU6THHC0TWY7IM33BDT7M213XPCSO9D1XBBZWRX330Z2S2FOQY3XG190Q0H53ZG0XZCTIBM1L3T2NG0X8XBU018QFVL2BBSJMKIIVFJVPT5U01VN196NUZJ1OOEWC0BTK48UG4Y4J6BOG1TF4LFHFTX62ABBGSF0UP0OWTSG0GOBIUQYRSF04AJYHT9O78M11YEFZUQGJKB2SW26WSLLB8VPYS8' where id=55; -update noar ti set v1='F8GQ95HDP1DFXK5LHOAHGHVDVSBQI977RAZGXJVU6THHC0TWY7IM33BDT7M213XPCSO9D1XBBZWRX330Z2S2FOQY3XG190Q0H53ZG0XZCTIBM1L3T2NG0X8XBU018QFVL2BBSJMKIIVFJVPT5U01VN196NUZJ1OOEWC0BTK48UG4Y4J6BOG1TF4LFHFTX62ABBGSF0UP0OWTSG0GOBIUQYRSF04AJYHT9O78M11YEFZUQGJKB2SW26WSLLB8VPYS8' where id=55; -update noar tt set v2='K1I0Z2B7ZN3QBN086EHRGA27VHY9RO2YB2H681THW0HPUB497APGDOZOKMYHVDQBELBRB1JA75WE4402XI00J21TC82YF1W9KSXSYR9ESND2YSC1R1DP3ZRRNVV1RACHXA6470W0BFH65EJMWRUYK6IIKJZAZPLRH5FBYU31OBSJE9UBAU2M26IZXKVI0CKWQVUHJ3HX3C2X0DFYDQLPY9KPFRBPOO05XJYLXB7O3WWFOX7XBIPV1P2TRJC46LVVG' where id=55; -update noar ti set v2='K1I0Z2B7ZN3QBN086EHRGA27VHY9RO2YB2H681THW0HPUB497APGDOZOKMYHVDQBELBRB1JA75WE4402XI00J21TC82YF1W9KSXSYR9ESND2YSC1R1DP3ZRRNVV1RACHXA6470W0BFH65EJMWRUYK6IIKJZAZPLRH5FBYU31OBSJE9UBAU2M26IZXKVI0CKWQVUHJ3HX3C2X0DFYDQLPY9KPFRBPOO05XJYLXB7O3WWFOX7XBIPV1P2TRJC46LVVG' where id=55; -update noar tt set v3='F9TSKR4WWEF9ZUV53CTC9GHA1TGHF4885ZJYEMBDXG0NO1NBCJFLCXMFAC7QJEW0QA2V9R4QEH1SS5UD5IBU84LYZ13XL3NV6Q1V2PU6HAOTTSKYT4YHA2862JXZ5CED5SIJK8ZJ877XIR9F47BMGE2Y40J2H43N61GO0SKJ6CGO4HVYH586BR4FIAWLU6TFG2B5ZL71IMG2GIA0P45NKQ2S8KWHAWCEI5ET8UJC0AP4FB8OHGANZTDHFHY41JV22' where id=55; -update noar ti set v3='F9TSKR4WWEF9ZUV53CTC9GHA1TGHF4885ZJYEMBDXG0NO1NBCJFLCXMFAC7QJEW0QA2V9R4QEH1SS5UD5IBU84LYZ13XL3NV6Q1V2PU6HAOTTSKYT4YHA2862JXZ5CED5SIJK8ZJ877XIR9F47BMGE2Y40J2H43N61GO0SKJ6CGO4HVYH586BR4FIAWLU6TFG2B5ZL71IMG2GIA0P45NKQ2S8KWHAWCEI5ET8UJC0AP4FB8OHGANZTDHFHY41JV22' where id=55; -update noar tt set v0='8FC304K4BSVBUGNNNPNYXYDNC0EB0KSATJKOFEALXTTOB9BDWIC2D7ODG2JO8KCJXDNISTFHLHMTYB5PBMLSY7HI7EGWXBPZEWKJQH3RLB7F44P2UQKCMVA99VA1Z46DZR94Q79CY46D6WD84AYNTURPAS8KMKI8MN555QFOXKF9BLK019CL56EJ70KCIP3930YNQ0PJJDSDIANA7JA428DAHL738D5NJOBAX8T7ONZ5H6NP74LHEF9Y183PRCJLY' where id=56; -update noar ti set v0='8FC304K4BSVBUGNNNPNYXYDNC0EB0KSATJKOFEALXTTOB9BDWIC2D7ODG2JO8KCJXDNISTFHLHMTYB5PBMLSY7HI7EGWXBPZEWKJQH3RLB7F44P2UQKCMVA99VA1Z46DZR94Q79CY46D6WD84AYNTURPAS8KMKI8MN555QFOXKF9BLK019CL56EJ70KCIP3930YNQ0PJJDSDIANA7JA428DAHL738D5NJOBAX8T7ONZ5H6NP74LHEF9Y183PRCJLY' where id=56; -update noar tt set v1='D558J5CLD9TOLNJH29UJSVHLLRDNJ8M3QCW3030TPAX9UNAFGXUUJ8X63JRUOIRQNO83XOOMXC15HF02SOGV0G79V0A0408E7BD7YM2UWL8PYDQKQZQPP12YMJ85Q7N4WUO0Z7JBV402Q0VZ3RZG1EHEHSES8UOG36I0Y7NPUJC85QQEWVJ4P5ZHLFO1EGR5Y2W3V7AHEY9IJFHS2ZV4VIHRP0TAC78FYBTR79QNV0GBFTUBV3W878PMDSM7USWRS' where id=56; -update noar ti set v1='D558J5CLD9TOLNJH29UJSVHLLRDNJ8M3QCW3030TPAX9UNAFGXUUJ8X63JRUOIRQNO83XOOMXC15HF02SOGV0G79V0A0408E7BD7YM2UWL8PYDQKQZQPP12YMJ85Q7N4WUO0Z7JBV402Q0VZ3RZG1EHEHSES8UOG36I0Y7NPUJC85QQEWVJ4P5ZHLFO1EGR5Y2W3V7AHEY9IJFHS2ZV4VIHRP0TAC78FYBTR79QNV0GBFTUBV3W878PMDSM7USWRS' where id=56; -update noar tt set v2='0Z1YYXWV5WQKMUBUUZ0Q9GRJEDB4OM2MUMSA9WR2EFF6F7ZSVPREZ4MMV0GXRORDA0JAO7KGZZ9MTI4T2VFBZSGPAGLUFY7YJB6XT1P9M91Z5LL0EMFCW2KLWWZ6P65VZQ2KFOI77VQBH02GPKB1FY9RX44DPIG8F8DBIIDZM7O0NW5U1YNQBNQU3OD4XR8FHC2GNJ5WK6075COH3EKP6HE5DNUL6OTQ8LLFNTLY6X87JTQL5OWC026F98N5D3AS6' where id=56; -update noar ti set v2='0Z1YYXWV5WQKMUBUUZ0Q9GRJEDB4OM2MUMSA9WR2EFF6F7ZSVPREZ4MMV0GXRORDA0JAO7KGZZ9MTI4T2VFBZSGPAGLUFY7YJB6XT1P9M91Z5LL0EMFCW2KLWWZ6P65VZQ2KFOI77VQBH02GPKB1FY9RX44DPIG8F8DBIIDZM7O0NW5U1YNQBNQU3OD4XR8FHC2GNJ5WK6075COH3EKP6HE5DNUL6OTQ8LLFNTLY6X87JTQL5OWC026F98N5D3AS6' where id=56; -update noar tt set v3='0O9I6F4LTHAFNYSW1LVG2L95O4GM0BKQV84Q96YBQ1LSC6Q1NDDVL0VG8DRI7T28CHR6K1JBG3VDA347LOPCB6VYIAFE4A9LKOB1H5JDVG6HNFE6IFGRIFJJCIEOGNGZJYAEA5O2J3H4G0URYLCNASZ6FGCNA6KYNCKCIUOWV9P9UW2ALVKC2PF1KH4MBWFDEW0DH07A1UNLUDHEFIKCCLH9ZQ51DTXVDYFVH6ICFT2YW77FZQN1YWMNK7LRPSHA1' where id=56; -update noar ti set v3='0O9I6F4LTHAFNYSW1LVG2L95O4GM0BKQV84Q96YBQ1LSC6Q1NDDVL0VG8DRI7T28CHR6K1JBG3VDA347LOPCB6VYIAFE4A9LKOB1H5JDVG6HNFE6IFGRIFJJCIEOGNGZJYAEA5O2J3H4G0URYLCNASZ6FGCNA6KYNCKCIUOWV9P9UW2ALVKC2PF1KH4MBWFDEW0DH07A1UNLUDHEFIKCCLH9ZQ51DTXVDYFVH6ICFT2YW77FZQN1YWMNK7LRPSHA1' where id=56; -update noar tt set v0='AGYV8UPPSEGYRUQDKCAB5G55LMFLXI44EMJGQMROZP03F07M2WQK1M4ZY92BRXZEIASUT1D8ON19D6L7C48CIKAUMLL73ZB01CGIHTKXCGCGPE1DLCDUMYYU0Q2JIS5AJJKHWL2NNVQONE2P5OR28FSKYUF3DWXRSY4OSDKRAM1KDR95PETVNOPSZYN0MUC3O8IJELHASQDHQEC7GQRSC7BAXPXZMSIIMUOXKK58R6TG360XEYC3F4Z39OHMIUKJ7' where id=57; -update noar ti set v0='AGYV8UPPSEGYRUQDKCAB5G55LMFLXI44EMJGQMROZP03F07M2WQK1M4ZY92BRXZEIASUT1D8ON19D6L7C48CIKAUMLL73ZB01CGIHTKXCGCGPE1DLCDUMYYU0Q2JIS5AJJKHWL2NNVQONE2P5OR28FSKYUF3DWXRSY4OSDKRAM1KDR95PETVNOPSZYN0MUC3O8IJELHASQDHQEC7GQRSC7BAXPXZMSIIMUOXKK58R6TG360XEYC3F4Z39OHMIUKJ7' where id=57; -update noar tt set v1='KUNQBP46MWE0UJ57J9LHSMWOLWEJPXT0V9I1NZG68O7EBJYCACHSEOI0A3YNYK44AJN1LCW3L201123YJ9L36NSWFUYXV53K8136L8SUXCFYFW8A9WY7V3MG5ZEV8PR6HN426PWY3H9PO0VY368VBHRPYOE7EW7FFA6UNGZWAN9T8AD1AY2SYAWRNHZU11VLYLMPAGD6YH6BY9INGQLGLUMDUP9Q6SU6716IY8HTJXSA3BKG7OHJ7HXDNCAGULLU1' where id=57; -update noar ti set v1='KUNQBP46MWE0UJ57J9LHSMWOLWEJPXT0V9I1NZG68O7EBJYCACHSEOI0A3YNYK44AJN1LCW3L201123YJ9L36NSWFUYXV53K8136L8SUXCFYFW8A9WY7V3MG5ZEV8PR6HN426PWY3H9PO0VY368VBHRPYOE7EW7FFA6UNGZWAN9T8AD1AY2SYAWRNHZU11VLYLMPAGD6YH6BY9INGQLGLUMDUP9Q6SU6716IY8HTJXSA3BKG7OHJ7HXDNCAGULLU1' where id=57; -update noar tt set v2='CFXKAH3P31CZNHLUUQYVHJGFUW93VM345SRSZEE8HFI69G48G2CZ9SJG6SV993RZO7J9L933LS9454Z0SBBYTZSKTDQC5DELH5DGWE80TVJAW8Z5AOPM0AR9YAAPH8DDV5E87HW00NNO1QEQTEXZ22B3X2GOB9IF8K0J5VS9AAXEZ5V1O56D49PLY3XCWIPNMDIMJBZYCSE30WEX6SFB5OFNUNXV1Y5EO5Q9A71D41PC10CXF1MYNALONSCUJ233M' where id=57; -update noar ti set v2='CFXKAH3P31CZNHLUUQYVHJGFUW93VM345SRSZEE8HFI69G48G2CZ9SJG6SV993RZO7J9L933LS9454Z0SBBYTZSKTDQC5DELH5DGWE80TVJAW8Z5AOPM0AR9YAAPH8DDV5E87HW00NNO1QEQTEXZ22B3X2GOB9IF8K0J5VS9AAXEZ5V1O56D49PLY3XCWIPNMDIMJBZYCSE30WEX6SFB5OFNUNXV1Y5EO5Q9A71D41PC10CXF1MYNALONSCUJ233M' where id=57; -update noar tt set v3='CSY88EP4UG4BWCOC8BY9ILZZX9XZCSZJP7NZ77PHOMCASPTVL0UTDS525SGLO3PZW5RFTWJKGY8OWLLXI2BS6BE855X8BLZMUVMLV6FYLN9K0S8RRS6RBK42CK3JOKAIAJUYRPOYVZAB0D66ITXOV6K36UQOQ6ED8ONL6SNR1EK41426IC8D9UOWBESEHGJ83FGBRG31XEXH36UUIASEAQGXYS7SCF8PVVK7429VDGE1SYBJIGDQ8VUU7L5GY4GZ1' where id=57; -update noar ti set v3='CSY88EP4UG4BWCOC8BY9ILZZX9XZCSZJP7NZ77PHOMCASPTVL0UTDS525SGLO3PZW5RFTWJKGY8OWLLXI2BS6BE855X8BLZMUVMLV6FYLN9K0S8RRS6RBK42CK3JOKAIAJUYRPOYVZAB0D66ITXOV6K36UQOQ6ED8ONL6SNR1EK41426IC8D9UOWBESEHGJ83FGBRG31XEXH36UUIASEAQGXYS7SCF8PVVK7429VDGE1SYBJIGDQ8VUU7L5GY4GZ1' where id=57; -update noar tt set v0='AQIKFKXZ1VYWLL8ASN42UD0SHSK7CTXPR6Q7EGFVM1ARTZAN8MC5SEXSNDZ4NQL8LJUPR2CCSQBGIQTE7T7WLVEBEJAM0V6AAEWLI9GW57OF7QGSRDTT33UMV2O102JTBYNWHF4TSDWQMCS2EVR3AIBJBCBF71YB64FWWN8OR273I8PIXP2T1II2Y2SHX967RT6CP20POQQ2S44Y35AOH6BTCX1JLH86EUQ46GUZBJVCICO3PQ8UE150A5WAF7YQR' where id=58; -update noar ti set v0='AQIKFKXZ1VYWLL8ASN42UD0SHSK7CTXPR6Q7EGFVM1ARTZAN8MC5SEXSNDZ4NQL8LJUPR2CCSQBGIQTE7T7WLVEBEJAM0V6AAEWLI9GW57OF7QGSRDTT33UMV2O102JTBYNWHF4TSDWQMCS2EVR3AIBJBCBF71YB64FWWN8OR273I8PIXP2T1II2Y2SHX967RT6CP20POQQ2S44Y35AOH6BTCX1JLH86EUQ46GUZBJVCICO3PQ8UE150A5WAF7YQR' where id=58; -update noar tt set v1='3IJYIF852HE5W2MBBSH4H8APM3U2SR6J4O4HAB2DXHZSEF9E9I0SM8R1KLJYOU7HJVJN8WH090ZXQW8WRXI4JXBYRWWON0IADZ869P1CHJJI59ZL5JWCIWEUJUABKCY31IVWAL7IIB39M2E3NG63J2WQ44WSG2H26616P972UGUAV7Q84S0H5F0LG45AITQZQEHAAE4XXYADK0D3NDZQZRLXLQWAGW632LMX6V76MFPEFF4HBIQMF1A8R6P6H7D2I' where id=58; -update noar ti set v1='3IJYIF852HE5W2MBBSH4H8APM3U2SR6J4O4HAB2DXHZSEF9E9I0SM8R1KLJYOU7HJVJN8WH090ZXQW8WRXI4JXBYRWWON0IADZ869P1CHJJI59ZL5JWCIWEUJUABKCY31IVWAL7IIB39M2E3NG63J2WQ44WSG2H26616P972UGUAV7Q84S0H5F0LG45AITQZQEHAAE4XXYADK0D3NDZQZRLXLQWAGW632LMX6V76MFPEFF4HBIQMF1A8R6P6H7D2I' where id=58; -update noar tt set v2='JJIX2VVHNVNZYELVOSO886TWWQWTXYMNDBU913VNQ5338ZIPNSIGAJEKIDSACIDKZOQAUOLJRT1IZRVLKQYHGAYBZWEM8YH2T1UIBNZ4WNABYUE4DVU5XMSEQZ84P09RG6VWPHS7EJSJJ72U4ZVH236E8A0H8I6CFK9JT3ADKV7RKSDMSGE2D6PLGSB5585IM7IAHD60SXFTPK7626N5673ECXV6U7LUSGPQGRNBSQU0GPQ3YH5HFCHRW0XMUSHMQ' where id=58; -update noar ti set v2='JJIX2VVHNVNZYELVOSO886TWWQWTXYMNDBU913VNQ5338ZIPNSIGAJEKIDSACIDKZOQAUOLJRT1IZRVLKQYHGAYBZWEM8YH2T1UIBNZ4WNABYUE4DVU5XMSEQZ84P09RG6VWPHS7EJSJJ72U4ZVH236E8A0H8I6CFK9JT3ADKV7RKSDMSGE2D6PLGSB5585IM7IAHD60SXFTPK7626N5673ECXV6U7LUSGPQGRNBSQU0GPQ3YH5HFCHRW0XMUSHMQ' where id=58; -update noar tt set v3='KWR3OUUM72I0LMZK2AKTT7D814PGC0UVQEQV9V7TWYDPOX1MJNML7PBM1BRK6VOSH0WY3A5D5CFVF1JAPZT7OEANPWORJXCMS9SS5K0ZTUADNRB62TLXTZWM00FPQJG60PV7D905S22EZ48DW31Z6SF2H3LL91WOVIGOC9ARXY7E2YVWNFGQ24JMH4YNLVKIUYBHMOXMLFD00T6ALA8FTS9Z0T4PLBMQ45390X5N4PLV0M4XUU6Z4N10G92UB5OER' where id=58; -update noar ti set v3='KWR3OUUM72I0LMZK2AKTT7D814PGC0UVQEQV9V7TWYDPOX1MJNML7PBM1BRK6VOSH0WY3A5D5CFVF1JAPZT7OEANPWORJXCMS9SS5K0ZTUADNRB62TLXTZWM00FPQJG60PV7D905S22EZ48DW31Z6SF2H3LL91WOVIGOC9ARXY7E2YVWNFGQ24JMH4YNLVKIUYBHMOXMLFD00T6ALA8FTS9Z0T4PLBMQ45390X5N4PLV0M4XUU6Z4N10G92UB5OER' where id=58; -update noar tt set v0='CUVD9E35O4D9EGPG33EEQKUQIV9BCANRXED6GFNI2CQU4U2G19FOMP7W02JQ4RGM0CWWBLIDWVDG1F8EZDZYJVRR6NTNTF46DAHE5DULJQLU9QZCX6Z45SVNIUH8B6ZBY17OPC4DTNA1WDCABUDHSSTIKAXZVIIPRTC4YCNQ0FGBAL9HEYIWHKZLZHNJTJWDAWD5PGSL7S44QH2P2EK2KIV1W14SYGQYS8HKU9Y2CGA39DJRAPL5DTEO9M3LJCPKB' where id=59; -update noar ti set v0='CUVD9E35O4D9EGPG33EEQKUQIV9BCANRXED6GFNI2CQU4U2G19FOMP7W02JQ4RGM0CWWBLIDWVDG1F8EZDZYJVRR6NTNTF46DAHE5DULJQLU9QZCX6Z45SVNIUH8B6ZBY17OPC4DTNA1WDCABUDHSSTIKAXZVIIPRTC4YCNQ0FGBAL9HEYIWHKZLZHNJTJWDAWD5PGSL7S44QH2P2EK2KIV1W14SYGQYS8HKU9Y2CGA39DJRAPL5DTEO9M3LJCPKB' where id=59; -update noar tt set v1='V6TSWDUGK603NG3I4KR128P5SE1NONW8CT0DTOUB34Q24EMYUM4OK7FAJXRL5EGAT5HB2VQEMSZLFVBBUH5CUR0ACIUMAG93K9OXJ6LLC7RM3WU5TR9CJAWJSD4OOEIM1P4FYWP9NQXX7NZ76HDDYQA5XHWOKRNFUUYB4SGN69L0W88EC7PYW1ORBDDPCEV9Y7KPVQPHLBRP4TG1HONHE1ZURBU1OW7EDTMWN6PU9O226RDW9BMH0BMFZ7XYMUX87' where id=59; -update noar ti set v1='V6TSWDUGK603NG3I4KR128P5SE1NONW8CT0DTOUB34Q24EMYUM4OK7FAJXRL5EGAT5HB2VQEMSZLFVBBUH5CUR0ACIUMAG93K9OXJ6LLC7RM3WU5TR9CJAWJSD4OOEIM1P4FYWP9NQXX7NZ76HDDYQA5XHWOKRNFUUYB4SGN69L0W88EC7PYW1ORBDDPCEV9Y7KPVQPHLBRP4TG1HONHE1ZURBU1OW7EDTMWN6PU9O226RDW9BMH0BMFZ7XYMUX87' where id=59; -update noar tt set v2='4TURTU1T1JLUT90V8FUBNKKT08WILZNBYEF0GCW4VXER993RBH8MMWS5Y05M52LETQMXG0927UVJ89J4EZ6NR98XITSH2YF4T7UAUUW0I47I7I9Z8OOGZB8XADJBNHCN5MLPMHJPNU9U4ZIG8A540THY9T8UH7VL5EMX1FHDJW5FJM2TVBJG3JWLJS8QVMBTOTJHA2U85VB4U9Q992I4EUXVR3PD2RUKQ30X8QOMMSU7QS06LTR2SB4O1GZH8Q067' where id=59; -update noar ti set v2='4TURTU1T1JLUT90V8FUBNKKT08WILZNBYEF0GCW4VXER993RBH8MMWS5Y05M52LETQMXG0927UVJ89J4EZ6NR98XITSH2YF4T7UAUUW0I47I7I9Z8OOGZB8XADJBNHCN5MLPMHJPNU9U4ZIG8A540THY9T8UH7VL5EMX1FHDJW5FJM2TVBJG3JWLJS8QVMBTOTJHA2U85VB4U9Q992I4EUXVR3PD2RUKQ30X8QOMMSU7QS06LTR2SB4O1GZH8Q067' where id=59; -update noar tt set v3='QQVLJE4MR0VANDS2IV2FVVHBAQ4G6P1MD221WG1YZRTL52EDE23S9HKZ9PY3OL6V62FXYY5SUNSUTW81ZCZG05QLHB68UOTIRVT2SHNVWCZCK702PM9NVAD8F7VEQ7HBSOIHZRE2ZCR2JGLQLCTOOC3T1R14P3TPF91BQWY2QHP01YGCKVRJFD1AY0741NFDXI40VKSHXXDPQ5JNQ4045LODL91ZD9B7OY1K48OFU3I9SVY3D2T1NK8O8KLFULHME' where id=59; -update noar ti set v3='QQVLJE4MR0VANDS2IV2FVVHBAQ4G6P1MD221WG1YZRTL52EDE23S9HKZ9PY3OL6V62FXYY5SUNSUTW81ZCZG05QLHB68UOTIRVT2SHNVWCZCK702PM9NVAD8F7VEQ7HBSOIHZRE2ZCR2JGLQLCTOOC3T1R14P3TPF91BQWY2QHP01YGCKVRJFD1AY0741NFDXI40VKSHXXDPQ5JNQ4045LODL91ZD9B7OY1K48OFU3I9SVY3D2T1NK8O8KLFULHME' where id=59; -update noar tt set v0='0A941Z4EG2IV9GWFF19FW7BXF5PWXFEBS5SJHDGKMFF5O9W74903TBQA4VZ4MJ8PJNZC77R7CZO4QZ3ZL0B9UE11L3QXCK04QTOUKHK7V9TO35REW2LVZPJ06OA5Q04M0G14G81M408HPWCA6LTID12VHE5PL2F2RFWZQVYQMUSLMJXK5IID1XNV683DE6PIE5VD68W5V7OLOLU92O2GAW2UZD1BVLAI0PVUXUC8MHZJU9BDWNC5HJRI6FO4SPNM9' where id=60; -update noar ti set v0='0A941Z4EG2IV9GWFF19FW7BXF5PWXFEBS5SJHDGKMFF5O9W74903TBQA4VZ4MJ8PJNZC77R7CZO4QZ3ZL0B9UE11L3QXCK04QTOUKHK7V9TO35REW2LVZPJ06OA5Q04M0G14G81M408HPWCA6LTID12VHE5PL2F2RFWZQVYQMUSLMJXK5IID1XNV683DE6PIE5VD68W5V7OLOLU92O2GAW2UZD1BVLAI0PVUXUC8MHZJU9BDWNC5HJRI6FO4SPNM9' where id=60; -update noar tt set v1='FWIEVICR740U0VRVWLEU8QSSB3I5T1OA3KAAO5XCZ1P7CMLWVWQRXPAZCO1YK31D3RDXXLCIX4LUBJJRN5X3HHJ071S6XKMNYZ1IXZGC93KZU4TWC6EQBIPEMOZG1TNV4NEJL6KXFNWCCELJ0NJIHVHHLAN17ENNHDJIQCUILPV9ZHU9WHUK2URZ6FXC6ZPZHZ3G8W8DEN3AGKMS59GE4RSLL6EGI61C5XU18TVPD1K6N5KQWHW96TBZNFG74UNPV' where id=60; -update noar ti set v1='FWIEVICR740U0VRVWLEU8QSSB3I5T1OA3KAAO5XCZ1P7CMLWVWQRXPAZCO1YK31D3RDXXLCIX4LUBJJRN5X3HHJ071S6XKMNYZ1IXZGC93KZU4TWC6EQBIPEMOZG1TNV4NEJL6KXFNWCCELJ0NJIHVHHLAN17ENNHDJIQCUILPV9ZHU9WHUK2URZ6FXC6ZPZHZ3G8W8DEN3AGKMS59GE4RSLL6EGI61C5XU18TVPD1K6N5KQWHW96TBZNFG74UNPV' where id=60; -update noar tt set v2='RF018ZFV31DFDMEOW8L97JX8FSEDLH60GNPY79IGHH5LKSRV5SV48US3ERB2GLX3HYKORWGLCP1WPEZID1M0K06AFSP3LCHQ1P3Q7A1AUY5UYSHPB89IAKD280RYDL0VGWMN0A40O9P50ZREO7P9G0FUOU3JBHDCOZSMZO29XG1RQ126M3N393A2PIUFRNTXI59LAZQ52BM2RW4T01974SZGJNANP17DAL82QBRGHL3V4MGE3OJBRZR25QOSAHX05' where id=60; -update noar ti set v2='RF018ZFV31DFDMEOW8L97JX8FSEDLH60GNPY79IGHH5LKSRV5SV48US3ERB2GLX3HYKORWGLCP1WPEZID1M0K06AFSP3LCHQ1P3Q7A1AUY5UYSHPB89IAKD280RYDL0VGWMN0A40O9P50ZREO7P9G0FUOU3JBHDCOZSMZO29XG1RQ126M3N393A2PIUFRNTXI59LAZQ52BM2RW4T01974SZGJNANP17DAL82QBRGHL3V4MGE3OJBRZR25QOSAHX05' where id=60; -update noar tt set v3='NBQY3B9ELPVPUDV83M7M7BCGPWAKYT6XGEZ0VQXOGTAJ5S30U86DOJ0WCEE8LK3OG634DUWPE6VHW2F0PX3V2P73NROV32PTU0XTKMNE7XDIPF1DR8WEJZ1OK3F1YLCPRRMQTFRCK3WWLI2U59W27PE5D8465BK25ENG75RPDPXU2RLAH4TN09NWBQY75F51RF38T7IQCP6LFOKRI8EBC4O2I88HK7RLHUJOF7H5YVFEA2QNG25AW5BXIU62EU8MW' where id=60; -update noar ti set v3='NBQY3B9ELPVPUDV83M7M7BCGPWAKYT6XGEZ0VQXOGTAJ5S30U86DOJ0WCEE8LK3OG634DUWPE6VHW2F0PX3V2P73NROV32PTU0XTKMNE7XDIPF1DR8WEJZ1OK3F1YLCPRRMQTFRCK3WWLI2U59W27PE5D8465BK25ENG75RPDPXU2RLAH4TN09NWBQY75F51RF38T7IQCP6LFOKRI8EBC4O2I88HK7RLHUJOF7H5YVFEA2QNG25AW5BXIU62EU8MW' where id=60; -update noar tt set v0='JRK0ZCGIIRW4ZBUGCEKZ79X4TISEQDRUKABZ52FVDYN7KZ5DZ6Q2LNSAJAJXJPH1GB2QEC9874EHMGIYIEOBGI2TI0I9EG83ZR76QAHH45E3R5UQNPIQ82AYGBYGZE6K53E0P37RVV8DYUXKTQRUTNETLR322OPN6BFD9XZJ1J04WMDTYG6V1CD8WKBRPH24UPME6I6P7V4Z7I1APJRWISAIA6RZ9DAHETDZ2TBSMAVQBIWOELQDKX2LJ6GKH6TDX' where id=61; -update noar ti set v0='JRK0ZCGIIRW4ZBUGCEKZ79X4TISEQDRUKABZ52FVDYN7KZ5DZ6Q2LNSAJAJXJPH1GB2QEC9874EHMGIYIEOBGI2TI0I9EG83ZR76QAHH45E3R5UQNPIQ82AYGBYGZE6K53E0P37RVV8DYUXKTQRUTNETLR322OPN6BFD9XZJ1J04WMDTYG6V1CD8WKBRPH24UPME6I6P7V4Z7I1APJRWISAIA6RZ9DAHETDZ2TBSMAVQBIWOELQDKX2LJ6GKH6TDX' where id=61; -update noar tt set v1='4BGKVM9119Z1D0OYE9EX855MEUSPQ802FXDBDBS9UHP2PMFHOTPRSA526G1Y9HIEDWMQGSF6L9QVZ1MC482BEGM4C82XJOZR6SSQIO0XA81NF4AQAFLBZAT4L310FJN23JYT0AMNDISSJD0B7HDN8J7WTBL4PB5CU03VG3U8CAKF07PP68NB7Q4KJ9DHE7TBSINOABRTGAVDQCO2248Q3NEP5W035D0K7JGEWFPZYNITX2C5E1YHZTLO5W3248XC2' where id=61; -update noar ti set v1='4BGKVM9119Z1D0OYE9EX855MEUSPQ802FXDBDBS9UHP2PMFHOTPRSA526G1Y9HIEDWMQGSF6L9QVZ1MC482BEGM4C82XJOZR6SSQIO0XA81NF4AQAFLBZAT4L310FJN23JYT0AMNDISSJD0B7HDN8J7WTBL4PB5CU03VG3U8CAKF07PP68NB7Q4KJ9DHE7TBSINOABRTGAVDQCO2248Q3NEP5W035D0K7JGEWFPZYNITX2C5E1YHZTLO5W3248XC2' where id=61; -update noar tt set v2='Y5W2HMA232FFNHFWW8OIO6VJBVWHHKJC4KJLPD5S9D5ZNR9E82PW4VNO0M64B0W5JSPJZB7QY0HK3XTHMHJBO7LN3R34QWJ4XHK0AC26NNWWU562MU0PBICIMR5L08SKWUH3PE93M15AO2CY5YVBXIOK719BPCQRBNBAAC6UDDELK3R8XEVURBO3U8LYYBTJCM6T2ZFFQYV0328QL5L2ECPCGSNLAGKGLHMXE7IEB9PVKPSDTLC31S441X3C0M857' where id=61; -update noar ti set v2='Y5W2HMA232FFNHFWW8OIO6VJBVWHHKJC4KJLPD5S9D5ZNR9E82PW4VNO0M64B0W5JSPJZB7QY0HK3XTHMHJBO7LN3R34QWJ4XHK0AC26NNWWU562MU0PBICIMR5L08SKWUH3PE93M15AO2CY5YVBXIOK719BPCQRBNBAAC6UDDELK3R8XEVURBO3U8LYYBTJCM6T2ZFFQYV0328QL5L2ECPCGSNLAGKGLHMXE7IEB9PVKPSDTLC31S441X3C0M857' where id=61; -update noar tt set v3='IFY4880GO7ICBN1AKFJ37R410OOD8R062DQIMJKG50FF8RGU5SWS3VWJ5VVLBWXBLQG0HG9HU3X7DOHARQ36S7GGTDOM6HK9JN8GEBD0TP7GYR2GQ7KRHGL8Z4881NV8C92BU4H14LUL5OPVZT5W0C1TAL2Q5MEWDL78VENONCEPD1GSQ40S1V68IDN5IGTLG5JPO62SE13O5JCUUBDDB1S06FIU15SJHAI50ILM6MJ7XIREBW47140EPFYJDJB25' where id=61; -update noar ti set v3='IFY4880GO7ICBN1AKFJ37R410OOD8R062DQIMJKG50FF8RGU5SWS3VWJ5VVLBWXBLQG0HG9HU3X7DOHARQ36S7GGTDOM6HK9JN8GEBD0TP7GYR2GQ7KRHGL8Z4881NV8C92BU4H14LUL5OPVZT5W0C1TAL2Q5MEWDL78VENONCEPD1GSQ40S1V68IDN5IGTLG5JPO62SE13O5JCUUBDDB1S06FIU15SJHAI50ILM6MJ7XIREBW47140EPFYJDJB25' where id=61; -update noar tt set v0='EQQ6RB6C2M7FIOYXCQ0I8VVDGITDTYE16AZDLCYIJ8VVK3EU0X3QKMQ0AZRYS1CQ5XHTEVMS6TIC0IL3GJD6JEHIMOEPTDYSQZ6CHMLXLN7JCRKRH1UVEORFJMWMVODXNPG07D7S6IS6ORCKO6LZRDV19NFUUDMJTTT18GFQ03A7WLBUOUGXQLCLZBNJBGA1D75VQEU48HCEG11NGW6JIQYITGH0OF79DTAML6APHN6M3SSEO7R5FJXFFDMPJ7JN5' where id=62; -update noar ti set v0='EQQ6RB6C2M7FIOYXCQ0I8VVDGITDTYE16AZDLCYIJ8VVK3EU0X3QKMQ0AZRYS1CQ5XHTEVMS6TIC0IL3GJD6JEHIMOEPTDYSQZ6CHMLXLN7JCRKRH1UVEORFJMWMVODXNPG07D7S6IS6ORCKO6LZRDV19NFUUDMJTTT18GFQ03A7WLBUOUGXQLCLZBNJBGA1D75VQEU48HCEG11NGW6JIQYITGH0OF79DTAML6APHN6M3SSEO7R5FJXFFDMPJ7JN5' where id=62; -update noar tt set v1='V6PRL6BXT1NRCGQL5R1FFC9IWQHWMQ6PCRNEQ2HXZG34ZTYCD7E5ARETURGYMYDXRVTTZ26CARBWAPWISIS643NNJJREN2AI9Z8OZY8BW6NXKZRO55GDKIAZWXKODV7BBWIE2I5KY8EA2JPXTHKC4IR1SYN5EAS2ZYG14NVFIT48RFPJAFGRCRAFAO7GIERNPPBW9F0EKW1YBMTEFDXBYM10YUFV4RJXB1ZP26HNA8MCFWHRYWY8K1C3L5U8Q9PQ8' where id=62; -update noar ti set v1='V6PRL6BXT1NRCGQL5R1FFC9IWQHWMQ6PCRNEQ2HXZG34ZTYCD7E5ARETURGYMYDXRVTTZ26CARBWAPWISIS643NNJJREN2AI9Z8OZY8BW6NXKZRO55GDKIAZWXKODV7BBWIE2I5KY8EA2JPXTHKC4IR1SYN5EAS2ZYG14NVFIT48RFPJAFGRCRAFAO7GIERNPPBW9F0EKW1YBMTEFDXBYM10YUFV4RJXB1ZP26HNA8MCFWHRYWY8K1C3L5U8Q9PQ8' where id=62; -update noar tt set v2='9YNM51YZSRIDLE1AQKO2NGB5E5CLMG5K1B7U8G1FRZLGQUR85JUZKDNHAL2XS7NZH7362L7BUDK6O693Y1CSQ88UWEEH5AJ50ZCV258LH6WC681J41KKR053K569BPUW6CM6DVIYP4KXY0B3HJKP8QEP4DUTX6M2LQP2LMKNVVI3SFOQ41KODDQE6IDRK468ZB2NFRSALT69395B40OJMK26IAK8VIU364RF05V16TH6ZN4MZ3ETYJNCIMQ3348MF' where id=62; -update noar ti set v2='9YNM51YZSRIDLE1AQKO2NGB5E5CLMG5K1B7U8G1FRZLGQUR85JUZKDNHAL2XS7NZH7362L7BUDK6O693Y1CSQ88UWEEH5AJ50ZCV258LH6WC681J41KKR053K569BPUW6CM6DVIYP4KXY0B3HJKP8QEP4DUTX6M2LQP2LMKNVVI3SFOQ41KODDQE6IDRK468ZB2NFRSALT69395B40OJMK26IAK8VIU364RF05V16TH6ZN4MZ3ETYJNCIMQ3348MF' where id=62; -update noar tt set v3='XQRQZJFSQLKXNJUNAAMNFQ3HBTQ5KP8SOXE4IEWAVNJRRCDDV4W16VPRX1JQLZRMNIWIPMA7LT8MTTJ7SM5JP51I8CJ5W2MXKQVZIF6HEM42W5O7OGK6QEU9A8G3FJYWPUT98QPTFQ8DILIBSBR45TGULXBRMTBFNHKL640X48X2D25U55EKEZ7GZDZSBZ8CUAP2CV67IP6LVXHJ694VDYZS1P5DS7Y6N6VR52YHPKQYGLOEJQI9ZYAX1ZRYXBN3P' where id=62; -update noar ti set v3='XQRQZJFSQLKXNJUNAAMNFQ3HBTQ5KP8SOXE4IEWAVNJRRCDDV4W16VPRX1JQLZRMNIWIPMA7LT8MTTJ7SM5JP51I8CJ5W2MXKQVZIF6HEM42W5O7OGK6QEU9A8G3FJYWPUT98QPTFQ8DILIBSBR45TGULXBRMTBFNHKL640X48X2D25U55EKEZ7GZDZSBZ8CUAP2CV67IP6LVXHJ694VDYZS1P5DS7Y6N6VR52YHPKQYGLOEJQI9ZYAX1ZRYXBN3P' where id=62; -update noar tt set v0='MLK5OMNX996177NKDXK50ITSDODH5R4D9MJ9YJ6FJA5PP9Q58N680T2YISVF0RHD4YMV5MCY3YJZZZ973D1QR25HWMXE1WJE4VV7GGJ9K1HFEOJ9XQ3GPNOTG6YIXJGVNX26UKZDQNAGYQX9N7MMOF9GIU3P213BVA45DXNGHE5W6FVVPAQO3FLCVHUJ583CGAHQKBSCJRB709OK8XJA9MGGGO4IR3YU7MT32JTXTKLK5EP6WVMUAZ69D2MFB8CJW' where id=63; -update noar ti set v0='MLK5OMNX996177NKDXK50ITSDODH5R4D9MJ9YJ6FJA5PP9Q58N680T2YISVF0RHD4YMV5MCY3YJZZZ973D1QR25HWMXE1WJE4VV7GGJ9K1HFEOJ9XQ3GPNOTG6YIXJGVNX26UKZDQNAGYQX9N7MMOF9GIU3P213BVA45DXNGHE5W6FVVPAQO3FLCVHUJ583CGAHQKBSCJRB709OK8XJA9MGGGO4IR3YU7MT32JTXTKLK5EP6WVMUAZ69D2MFB8CJW' where id=63; -update noar tt set v1='9OSWRG5UVOR5SRJEYJ0YERVUXWTKNH5A4M3UMJQ6UOQRQIB59YXK4LH9XMQCR5324NTLYH0YQSHJ8MOM89BSFFN1A4COO2P14AQ402TQ5GCCK4CGL14PU6JTMV3Y3D5BFZ4CGV04N2UWA8PN0QG576PK4BBIHTMRWSCEDD8GQHUB6UBWS2UOQQE8N1865PJMTGFFINPM6HDE1ATZBUA1LLE4LJJ190DEAV3LRBLB6HP481512FRGQOLL2XV9DW8KX' where id=63; -update noar ti set v1='9OSWRG5UVOR5SRJEYJ0YERVUXWTKNH5A4M3UMJQ6UOQRQIB59YXK4LH9XMQCR5324NTLYH0YQSHJ8MOM89BSFFN1A4COO2P14AQ402TQ5GCCK4CGL14PU6JTMV3Y3D5BFZ4CGV04N2UWA8PN0QG576PK4BBIHTMRWSCEDD8GQHUB6UBWS2UOQQE8N1865PJMTGFFINPM6HDE1ATZBUA1LLE4LJJ190DEAV3LRBLB6HP481512FRGQOLL2XV9DW8KX' where id=63; -update noar tt set v2='PHIWXGZOHQKX30KUJNFVHC37XSM5COMUZ9QKVK6PAI1OVM8B4TT7N6X7RTSVQVZVVAOLDEKC1OT59K6RPYTH36O0I6BUFQ4O9MVQF73K6CD2ZPDQIDCIEONELUHNTBMDI3MF6QLLOOTED00EWK2STVNJV2ADBFZNDOMQ1EGQZ6337J8AOUISNN9CM4SB24UZ00YS3G33OLNS8C5HK0XKTCDBXB1UVN70N2JB3IDAMBNIHYDPFDQHU3CVIHQ8DT9QG' where id=63; -update noar ti set v2='PHIWXGZOHQKX30KUJNFVHC37XSM5COMUZ9QKVK6PAI1OVM8B4TT7N6X7RTSVQVZVVAOLDEKC1OT59K6RPYTH36O0I6BUFQ4O9MVQF73K6CD2ZPDQIDCIEONELUHNTBMDI3MF6QLLOOTED00EWK2STVNJV2ADBFZNDOMQ1EGQZ6337J8AOUISNN9CM4SB24UZ00YS3G33OLNS8C5HK0XKTCDBXB1UVN70N2JB3IDAMBNIHYDPFDQHU3CVIHQ8DT9QG' where id=63; -update noar tt set v3='VQML9GORFV07CPK1BYL0NSI1QUU7T8N0W6K11SPUW0OQ105AQEA7IC0XOY9F8GFBCF1EYZW7IPO4V21E01HNDFQO8HRYILOV6RRCT1UDN0YQ1Z8F9JE2PUC1HL1YDXIQ5KZTIK1NJ8Z5G3KG1KLHFE3ODHNXH555DXPN7SW8N58KDZ0AB1VYATTOH5QGLCEQF03PTODZEXN21DPTO13HO84F5W6SRQCC33RRNCRWSYWHDOAVBARZYV2ZI8NC1PEL9' where id=63; -update noar ti set v3='VQML9GORFV07CPK1BYL0NSI1QUU7T8N0W6K11SPUW0OQ105AQEA7IC0XOY9F8GFBCF1EYZW7IPO4V21E01HNDFQO8HRYILOV6RRCT1UDN0YQ1Z8F9JE2PUC1HL1YDXIQ5KZTIK1NJ8Z5G3KG1KLHFE3ODHNXH555DXPN7SW8N58KDZ0AB1VYATTOH5QGLCEQF03PTODZEXN21DPTO13HO84F5W6SRQCC33RRNCRWSYWHDOAVBARZYV2ZI8NC1PEL9' where id=63; -update noar tt set v0='A6FOTIU48JWADRZ1YRIC9JV4RLBS1KASLST56JPC9RWMY07UK1RC1A4GB0AC93MX9IK20QSK8RIC2TC8WKPXCO0XVFCJJMA3NVEGL6RL9YF3JHRD44A8QOVC2QLHLAK297ZT6OIMXNWBWRGNQF0328QU7F71GL1OWTHECVH11RKYK8VWKMD4WYOLK42U0M07OFJDXUCIBXD6LJYMFVD5EW43GRR3ZDM71R69ZPC0ZR4TLMQENPDZ0KHYVDQ7E58G0' where id=64; -update noar ti set v0='A6FOTIU48JWADRZ1YRIC9JV4RLBS1KASLST56JPC9RWMY07UK1RC1A4GB0AC93MX9IK20QSK8RIC2TC8WKPXCO0XVFCJJMA3NVEGL6RL9YF3JHRD44A8QOVC2QLHLAK297ZT6OIMXNWBWRGNQF0328QU7F71GL1OWTHECVH11RKYK8VWKMD4WYOLK42U0M07OFJDXUCIBXD6LJYMFVD5EW43GRR3ZDM71R69ZPC0ZR4TLMQENPDZ0KHYVDQ7E58G0' where id=64; -update noar tt set v1='WTY5C15ZEU2ERV7HHY1A0DOPS8MNN2LQ0YY9339UE0YTTYCPPZ2WZI0Y3CKS5RJO8QKZPNWPVXZ9DUY86MU5NJDT8I60H49T443M5VL7AWAVIPGSVDMJO4A6PSPMSBTGRTV4NM8D3P871BETF5MU4W0N1VQ4JD2Y768U7NNCJAT7NWE5V9UEWW71MZJZXB4IZPS617PRA1WMXGNOHKPMQBEPHTDY2DCZR54E12HNVEG5H60ALKFDJPGKFDVKPMECG' where id=64; -update noar ti set v1='WTY5C15ZEU2ERV7HHY1A0DOPS8MNN2LQ0YY9339UE0YTTYCPPZ2WZI0Y3CKS5RJO8QKZPNWPVXZ9DUY86MU5NJDT8I60H49T443M5VL7AWAVIPGSVDMJO4A6PSPMSBTGRTV4NM8D3P871BETF5MU4W0N1VQ4JD2Y768U7NNCJAT7NWE5V9UEWW71MZJZXB4IZPS617PRA1WMXGNOHKPMQBEPHTDY2DCZR54E12HNVEG5H60ALKFDJPGKFDVKPMECG' where id=64; -update noar tt set v2='RPTENB3ETSR98K7JT4P1F5RR2W1AMUFPEDT32FHZL13G0ENWNO95COKI6091QTXPBQIS5A5O8ELBOI46HP26HEJOBN3BXVV2XN8FYIMJAXW9V2X8158F1TAKTVF1CRYRCMXXTIHZZV8T66V0VLYG5T1U5E3WHB7RRNABCGDKBM2X5I3PL7EEJ9JM44MMFBFUWPXAILABIMSWJNEA6EQNT1P43F0MARLDXH817TS33ZP9L717N34PIAPCRRPVMGBEZ' where id=64; -update noar ti set v2='RPTENB3ETSR98K7JT4P1F5RR2W1AMUFPEDT32FHZL13G0ENWNO95COKI6091QTXPBQIS5A5O8ELBOI46HP26HEJOBN3BXVV2XN8FYIMJAXW9V2X8158F1TAKTVF1CRYRCMXXTIHZZV8T66V0VLYG5T1U5E3WHB7RRNABCGDKBM2X5I3PL7EEJ9JM44MMFBFUWPXAILABIMSWJNEA6EQNT1P43F0MARLDXH817TS33ZP9L717N34PIAPCRRPVMGBEZ' where id=64; -update noar tt set v3='3UO0GQYJYKUPJ7LR2ARKLGK6NVT945WTKI40XSBZ5YIJAX2XGR0N4ZYDUAAMCLYKFVX9VLXUIDOZGEXND1M7H8VGM511AOWQFY3IO402UTEKPJ6X5QRNCWZCYA50H4PVKUNI152UHAJTP6MRP7K1RUVX1AOL1RYUHQW7NJ0H6XL35TESBVQ1UKAB3LIUW0E5RUPLWYBZQMU3IRLWJPJN1WP3SICJTYP735JDML352Z0XZW2NJ89B9L0UQVXFQY60C' where id=64; -update noar ti set v3='3UO0GQYJYKUPJ7LR2ARKLGK6NVT945WTKI40XSBZ5YIJAX2XGR0N4ZYDUAAMCLYKFVX9VLXUIDOZGEXND1M7H8VGM511AOWQFY3IO402UTEKPJ6X5QRNCWZCYA50H4PVKUNI152UHAJTP6MRP7K1RUVX1AOL1RYUHQW7NJ0H6XL35TESBVQ1UKAB3LIUW0E5RUPLWYBZQMU3IRLWJPJN1WP3SICJTYP735JDML352Z0XZW2NJ89B9L0UQVXFQY60C' where id=64; -update noar tt set v0='IZ5G9W8JX3FFNW6K6OINC65XZECSI57UNWCS2CEDRC8F16NDEZAOAFR4WPS5TA756DQH213J5DVEPP2NLWZGK7JHIMHZ1IO23KS65Z21SX0BKUKCY5CX8NI1PH9WPG2LO9Y0LSCC9E30SHAJXBTBXVN8SCF2E5O2GLIPLKD9TRWF4ONYNBOBY7WSNJF9HLV80XJ2NEOLWK2YWRQSZXUJ20TK82PZPNGFG64XJQBEPRP4E3DU1A5VXQEJ9GVVXHFIC' where id=65; -update noar ti set v0='IZ5G9W8JX3FFNW6K6OINC65XZECSI57UNWCS2CEDRC8F16NDEZAOAFR4WPS5TA756DQH213J5DVEPP2NLWZGK7JHIMHZ1IO23KS65Z21SX0BKUKCY5CX8NI1PH9WPG2LO9Y0LSCC9E30SHAJXBTBXVN8SCF2E5O2GLIPLKD9TRWF4ONYNBOBY7WSNJF9HLV80XJ2NEOLWK2YWRQSZXUJ20TK82PZPNGFG64XJQBEPRP4E3DU1A5VXQEJ9GVVXHFIC' where id=65; -update noar tt set v1='G1JY3SIR0KJIPR3TR69AO2H2AAM1ORIPCLQ092ZEG2YUU8AQJFYL8GU12CVLA3X6XOEQLNLXJBGPL77CN1CJA4KX88U2EC7E2WMLCO1RXZU33XQ356ZUL3IWE6UOKCZY19AR5S52NMCMYM3U18MELYQFZPC6B1K0KKRFHTF39FC6YHUCG1VUEC7FP1J2EO4EABY6HQOZFM5JCOLTRTYXVIONRERSM0SYIKGFHPRJJKGO7PXPU6UQ2SLQQIN5H87I2' where id=65; -update noar ti set v1='G1JY3SIR0KJIPR3TR69AO2H2AAM1ORIPCLQ092ZEG2YUU8AQJFYL8GU12CVLA3X6XOEQLNLXJBGPL77CN1CJA4KX88U2EC7E2WMLCO1RXZU33XQ356ZUL3IWE6UOKCZY19AR5S52NMCMYM3U18MELYQFZPC6B1K0KKRFHTF39FC6YHUCG1VUEC7FP1J2EO4EABY6HQOZFM5JCOLTRTYXVIONRERSM0SYIKGFHPRJJKGO7PXPU6UQ2SLQQIN5H87I2' where id=65; -update noar tt set v2='JQB1AV58BGRQQK0ZUJCY3WH0XB67DV9MGLLR03864TD6TKEFNB4L7N2XXJLBULAZPUR2RQCP6AJDUM2IHX9FL8X81EAK39HZIMUZDU4Q2DE894N7D6GCR8IGML0YPLEGPKEDMWXQCX2LGIAR4BW5BV5HV2HZW93EQKWQAAMREEKWQLMFHGW7M1BXCYABJN8WM9AN81MOE41559XZLBWWCWLSDDCJ559SABWTUAX7MNOQ7N11ECRODOLS6M2MSL1Z1' where id=65; -update noar ti set v2='JQB1AV58BGRQQK0ZUJCY3WH0XB67DV9MGLLR03864TD6TKEFNB4L7N2XXJLBULAZPUR2RQCP6AJDUM2IHX9FL8X81EAK39HZIMUZDU4Q2DE894N7D6GCR8IGML0YPLEGPKEDMWXQCX2LGIAR4BW5BV5HV2HZW93EQKWQAAMREEKWQLMFHGW7M1BXCYABJN8WM9AN81MOE41559XZLBWWCWLSDDCJ559SABWTUAX7MNOQ7N11ECRODOLS6M2MSL1Z1' where id=65; -update noar tt set v3='BIWL5WWAB109BEHRG07GTEAO15240MWVWARPT82JRWBOTUV7OBIO4C51OIHO54JDJ2DVK4G9LEPEQGE2CQ1P92ADSAM0RVV3INHU823TX8VC889YP1YC2LOBD87GRZMKCCMU85H3B11DC9FVFDDOOUAGR8O6N7ROKPKC231HZVRCGBS84BWWSDYMSB69IPBYBIJPPWVXOJGY8XDKMBNQ0Z9D684LHNOTFATXFBXAC6ZRW491Y92WVLQ44DYPR1RCA' where id=65; -update noar ti set v3='BIWL5WWAB109BEHRG07GTEAO15240MWVWARPT82JRWBOTUV7OBIO4C51OIHO54JDJ2DVK4G9LEPEQGE2CQ1P92ADSAM0RVV3INHU823TX8VC889YP1YC2LOBD87GRZMKCCMU85H3B11DC9FVFDDOOUAGR8O6N7ROKPKC231HZVRCGBS84BWWSDYMSB69IPBYBIJPPWVXOJGY8XDKMBNQ0Z9D684LHNOTFATXFBXAC6ZRW491Y92WVLQ44DYPR1RCA' where id=65; -update noar tt set v0='698QAF0IVRQSE28DJA5L43GQKTT1JI5AQYGN85D28AM2F89AF1QEV50ZLHOR2E63NQIHQ8SG1ZHPZ1XFAPKR47MVXT570CAG5B7V9RFV86B1BIXCHL7ZW00VMQ0XZT86OCGXKTB6RY5JCGVW7DF0ORPEK42RXYKLU54N13HW7QZRCXXK7UJQDN3CC61877S7BRRK67UNJ319QK0W4CHDTAKQKNVGOH7EA4WER7RXDOR1I2MZ0BCKBR20W74IK9QW4' where id=66; -update noar ti set v0='698QAF0IVRQSE28DJA5L43GQKTT1JI5AQYGN85D28AM2F89AF1QEV50ZLHOR2E63NQIHQ8SG1ZHPZ1XFAPKR47MVXT570CAG5B7V9RFV86B1BIXCHL7ZW00VMQ0XZT86OCGXKTB6RY5JCGVW7DF0ORPEK42RXYKLU54N13HW7QZRCXXK7UJQDN3CC61877S7BRRK67UNJ319QK0W4CHDTAKQKNVGOH7EA4WER7RXDOR1I2MZ0BCKBR20W74IK9QW4' where id=66; -update noar tt set v1='BVA3SX2Z9PCS1MSM7FF4B7NOL1BSM6DFSD8DRUJ6E3B72AK2IHQNZDL9CF1ZZ64ES79VIM3UWRNY0HTNOVPQTLYYV8X4XVMDUVCIF1HO0YVDSY61FB0JE63R1QWQBIZN2VNQCFNKOPRV5OVEH9A18N07BZ3HK7F41TLOJTNE1542S4LU6UIS8YGXEKN2BR8J12JGHM6A51NFV3XHM8R00X6OUQW1CJKHCZR3096G80OJMWGGXXGTV7IAX8WO1FM8D' where id=66; -update noar ti set v1='BVA3SX2Z9PCS1MSM7FF4B7NOL1BSM6DFSD8DRUJ6E3B72AK2IHQNZDL9CF1ZZ64ES79VIM3UWRNY0HTNOVPQTLYYV8X4XVMDUVCIF1HO0YVDSY61FB0JE63R1QWQBIZN2VNQCFNKOPRV5OVEH9A18N07BZ3HK7F41TLOJTNE1542S4LU6UIS8YGXEKN2BR8J12JGHM6A51NFV3XHM8R00X6OUQW1CJKHCZR3096G80OJMWGGXXGTV7IAX8WO1FM8D' where id=66; -update noar tt set v2='0XZ0ZGTMG3V0ZFQ6JYBLXOKY11SVP6IF7SYZW7QB4DFF8MA2AF36W5NJ8T4S066TWJ55T7VLPN4BS2LJYHSK1QIVTWMLISXX1UIFXO50KO1MS11OUWYA9DSN6L04WRCE03IOQYRHKP9986KQAHCU991PYT9457LFIS74WTMSMGWO3WDY3A5S43LW9TUGK2T5K97ZTG3ROKH05DIT05SIHRDG9CR88OL2AO2S9OA5OKCMCOSS74FGZWUPW0Y3PN1Q0' where id=66; -update noar ti set v2='0XZ0ZGTMG3V0ZFQ6JYBLXOKY11SVP6IF7SYZW7QB4DFF8MA2AF36W5NJ8T4S066TWJ55T7VLPN4BS2LJYHSK1QIVTWMLISXX1UIFXO50KO1MS11OUWYA9DSN6L04WRCE03IOQYRHKP9986KQAHCU991PYT9457LFIS74WTMSMGWO3WDY3A5S43LW9TUGK2T5K97ZTG3ROKH05DIT05SIHRDG9CR88OL2AO2S9OA5OKCMCOSS74FGZWUPW0Y3PN1Q0' where id=66; -update noar tt set v3='YO0D586IHMZX1B8C2DCNV3RYQMD9KD6COQ4JABGD71L1EYF1ASLO3HLWFSJQNPWWQQ1IN9BOCPEZ4OFKLMLTBICAWMHHO3TVX10J5AVFWTZPC7YAPUO3EVFPFTHN79H82FDE98HY5ZTLOJI235EK7UQH25ESA3GO14Q5AQDWVO9PXILFJ0KH4TB56XS80QY5ED5GHD4STEL7JE87NTVHMGI8129E44RNU6GYOKKVSMC80YGX3C9LEX1MJW5HM5S9O' where id=66; -update noar ti set v3='YO0D586IHMZX1B8C2DCNV3RYQMD9KD6COQ4JABGD71L1EYF1ASLO3HLWFSJQNPWWQQ1IN9BOCPEZ4OFKLMLTBICAWMHHO3TVX10J5AVFWTZPC7YAPUO3EVFPFTHN79H82FDE98HY5ZTLOJI235EK7UQH25ESA3GO14Q5AQDWVO9PXILFJ0KH4TB56XS80QY5ED5GHD4STEL7JE87NTVHMGI8129E44RNU6GYOKKVSMC80YGX3C9LEX1MJW5HM5S9O' where id=66; -update noar tt set v0='0QHV2YSY3JS1ZXXKYXFEEXTTJD1APH1NKZ20JEPH69432V5SCACYH7RXJEZ0V866WJTDMQZASC6MUI1ARHDRSY7QZY27UXR4HCQV7IKT4WHB55D1DL9DLWV29U5S7V2BF207397J04UF8Z2LLB1GDJMWUHB3BUM1JS7G441LCLHVONHA5Q39X05IZGC4MUS46TBP79QJU6FMCWF7FJD1Y5JYGR0R7804QK4OK58AMKMR0V3PXW53ARTN4A4IY2R0F' where id=67; -update noar ti set v0='0QHV2YSY3JS1ZXXKYXFEEXTTJD1APH1NKZ20JEPH69432V5SCACYH7RXJEZ0V866WJTDMQZASC6MUI1ARHDRSY7QZY27UXR4HCQV7IKT4WHB55D1DL9DLWV29U5S7V2BF207397J04UF8Z2LLB1GDJMWUHB3BUM1JS7G441LCLHVONHA5Q39X05IZGC4MUS46TBP79QJU6FMCWF7FJD1Y5JYGR0R7804QK4OK58AMKMR0V3PXW53ARTN4A4IY2R0F' where id=67; -update noar tt set v1='HEUXEQC9LEARKUAB3CSE471DMJTC3XKE1M3SBY13Y6OBVKA0SK6OTL4LUZT0OOXL2K3GJAU8HBAOFHVINDQU6OFWT90DFAXJ97E6XFON2TKWEFMDZEK1T9REG076BXB4JBNPRN68ME3Z6T1HRYYXHI5YG3HJOGB6M540EZ4PCY0HUSSFM2I0R97SB3BMILXKYEYGEYVEBDC25614NUQWISOCT3710QEO8XAF42M5RDSG055MF2DLE5RLCJY9VOO6C' where id=67; -update noar ti set v1='HEUXEQC9LEARKUAB3CSE471DMJTC3XKE1M3SBY13Y6OBVKA0SK6OTL4LUZT0OOXL2K3GJAU8HBAOFHVINDQU6OFWT90DFAXJ97E6XFON2TKWEFMDZEK1T9REG076BXB4JBNPRN68ME3Z6T1HRYYXHI5YG3HJOGB6M540EZ4PCY0HUSSFM2I0R97SB3BMILXKYEYGEYVEBDC25614NUQWISOCT3710QEO8XAF42M5RDSG055MF2DLE5RLCJY9VOO6C' where id=67; -update noar tt set v2='HPH1C6QGUFJVG2CZKPC785GZ8OMYYQ4LWUT0J52VKMQIF4QVXW8Z4PCPAYN0OPTBJHR7SNMKOEETQ3MGBN79486K329C6MVDFX5QJG4LE76AFGFSQZ240ZNTWS3Z2ED8ALOOQO0D79S3YCYK1OKI1225EOJ01ZGUVAY9WL0WO3AHWADP956X9WU07EHB0IMKPJQ40A2CTC1DDU7AMHG18R9YY5ZPRR98XJABECZ80B5N58HK6WKIIP52U736Q38EF' where id=67; -update noar ti set v2='HPH1C6QGUFJVG2CZKPC785GZ8OMYYQ4LWUT0J52VKMQIF4QVXW8Z4PCPAYN0OPTBJHR7SNMKOEETQ3MGBN79486K329C6MVDFX5QJG4LE76AFGFSQZ240ZNTWS3Z2ED8ALOOQO0D79S3YCYK1OKI1225EOJ01ZGUVAY9WL0WO3AHWADP956X9WU07EHB0IMKPJQ40A2CTC1DDU7AMHG18R9YY5ZPRR98XJABECZ80B5N58HK6WKIIP52U736Q38EF' where id=67; -update noar tt set v3='WFURLW3O0WJEP5Z8S1J3D3KKVQ2QEU65R02H77N9Y8WWJIC3H0DNHH3PJGMHLG0CAE7L910NR1TXW9QRY3R1JBP3SPUM4PHQO9G9JQWZCKQVR0NDMPG41EYI3O5LCXV4UDAD5GOECEQNT1MLDTSQ9ZAK4ULPP3RV13K2UTMYZMX8N6PVGRZDOYWPTGKK8M0ISQBXXVMEXZDCI1EGZXB4QQ2I8Y0PJN5GOM1QD0SSKLCNR3P78IOAP0QK3VJRTYAJ8' where id=67; -update noar ti set v3='WFURLW3O0WJEP5Z8S1J3D3KKVQ2QEU65R02H77N9Y8WWJIC3H0DNHH3PJGMHLG0CAE7L910NR1TXW9QRY3R1JBP3SPUM4PHQO9G9JQWZCKQVR0NDMPG41EYI3O5LCXV4UDAD5GOECEQNT1MLDTSQ9ZAK4ULPP3RV13K2UTMYZMX8N6PVGRZDOYWPTGKK8M0ISQBXXVMEXZDCI1EGZXB4QQ2I8Y0PJN5GOM1QD0SSKLCNR3P78IOAP0QK3VJRTYAJ8' where id=67; -update noar tt set v0='SH0X13UGX8HL56FVPGWPJXRX9DA4AOCQEJEVPROCNI22GO3O7CKKUG91V32DSR2DOESVXT6VMJFM26QT2BQFNKPY2P1NFDHNHWMPLNYLJ7AI8IL9ZFD0MSDVPUFBBCMB8L7430NKAX5L21A2V9CMCZXUUH9O6T7KWY6MO4Z3713PX4BLTQOQD2BVW0JZTDTDTQWZLCXRQO8UWF96NFONL6QMF0N2RXIJKREO37EOJL8KAHIIKGR4ID33FC3JWAGIK' where id=68; -update noar ti set v0='SH0X13UGX8HL56FVPGWPJXRX9DA4AOCQEJEVPROCNI22GO3O7CKKUG91V32DSR2DOESVXT6VMJFM26QT2BQFNKPY2P1NFDHNHWMPLNYLJ7AI8IL9ZFD0MSDVPUFBBCMB8L7430NKAX5L21A2V9CMCZXUUH9O6T7KWY6MO4Z3713PX4BLTQOQD2BVW0JZTDTDTQWZLCXRQO8UWF96NFONL6QMF0N2RXIJKREO37EOJL8KAHIIKGR4ID33FC3JWAGIK' where id=68; -update noar tt set v1='XTONFIT2HEX1SIGY1QM512E302HYAGJE0WNYFPAPMTHLX8KTMZFFGAORFVGNLJXHYG09C315O2L2SCBIDFS4RGGH2WB03RXWCUJ6MUKUJ7WODHI7O8BKDIXZFRTCA8B27BS2LDZX2MHUEXY2ESRSZ05CU5LK8TXKZBXBPMKU85ZGO8Q5BNUJ7QYPMJTVF2FNG307B32WP4ZXJXSTFJ7Q95X0I5OSVFYKIY62VYJB8P1R9QL2YFZZ6OE8FGIJORCSW' where id=68; -update noar ti set v1='XTONFIT2HEX1SIGY1QM512E302HYAGJE0WNYFPAPMTHLX8KTMZFFGAORFVGNLJXHYG09C315O2L2SCBIDFS4RGGH2WB03RXWCUJ6MUKUJ7WODHI7O8BKDIXZFRTCA8B27BS2LDZX2MHUEXY2ESRSZ05CU5LK8TXKZBXBPMKU85ZGO8Q5BNUJ7QYPMJTVF2FNG307B32WP4ZXJXSTFJ7Q95X0I5OSVFYKIY62VYJB8P1R9QL2YFZZ6OE8FGIJORCSW' where id=68; -update noar tt set v2='RY89K8BQULSAX3380IKWDM4327A0KVRXR30KP7138JM19MTFBYDO7J2LJ19ELA21B8W5IAZML9HOTFLA7NPG750N6FN38INLWBAJ3TMDTFSYBII1F8YV4CNE8GOCD3OFB5SZJVJDHOEH4UQTNLDGQN2J7Y3XLRAKJMY1YGJ1WNYDHMTX4OS8KAD253DIL83HFP975HY2WECLVORROCIW0RCIE8FIT2XJE3UZAJFX6CB0WEHY7ARG344LT3RA0JDMU' where id=68; -update noar ti set v2='RY89K8BQULSAX3380IKWDM4327A0KVRXR30KP7138JM19MTFBYDO7J2LJ19ELA21B8W5IAZML9HOTFLA7NPG750N6FN38INLWBAJ3TMDTFSYBII1F8YV4CNE8GOCD3OFB5SZJVJDHOEH4UQTNLDGQN2J7Y3XLRAKJMY1YGJ1WNYDHMTX4OS8KAD253DIL83HFP975HY2WECLVORROCIW0RCIE8FIT2XJE3UZAJFX6CB0WEHY7ARG344LT3RA0JDMU' where id=68; -update noar tt set v3='K0QQA5MDSGU6MWXGWC8F7T0YS0JNAL4TQNOIP56TMPVUN1QR0Q14GHF4GKZWKRBL01BCXWVIK7LPSH8RK6XBF83GOTH1FHSOT1P670Z9M6MYB7PVDWYHPWDY3VP2CW6P4EJNOWB3MY6UN0CFQ95GHCPTJNSBJ880N6X6ZZC34QYPGIPJ62NK5BHIX8VITCS0DRF9LD9GH67NWBAL9OQB6JMKGI3968IXK81I56OTHW10WCBT1ITQDOXNTANN2BZ4Y' where id=68; -update noar ti set v3='K0QQA5MDSGU6MWXGWC8F7T0YS0JNAL4TQNOIP56TMPVUN1QR0Q14GHF4GKZWKRBL01BCXWVIK7LPSH8RK6XBF83GOTH1FHSOT1P670Z9M6MYB7PVDWYHPWDY3VP2CW6P4EJNOWB3MY6UN0CFQ95GHCPTJNSBJ880N6X6ZZC34QYPGIPJ62NK5BHIX8VITCS0DRF9LD9GH67NWBAL9OQB6JMKGI3968IXK81I56OTHW10WCBT1ITQDOXNTANN2BZ4Y' where id=68; -update noar tt set v0='F8JII6T7EL9A2FGD4HE506JAZC4P6QI58JI9RGODOBPBX0Y00UJ445PLGE5CQ4XSXAUEYUT6G6MPZDDL3EYDNOVKVEZVYWF0W2N6QBVV6X3GX6SUH0RH4P10LZ8RKS4V2K7VAKZKA2FS86B4LDKWPN0QAQQMXW3FGDW7FS0XLN2MTR03LEYDC0V0QGM2WM3JJIFFKLFJPR7JWYYIVZGLHLRPS83XU2C4PPBW445DELM7QRQR75DW3GYB3P7RSAXQJ' where id=69; -update noar ti set v0='F8JII6T7EL9A2FGD4HE506JAZC4P6QI58JI9RGODOBPBX0Y00UJ445PLGE5CQ4XSXAUEYUT6G6MPZDDL3EYDNOVKVEZVYWF0W2N6QBVV6X3GX6SUH0RH4P10LZ8RKS4V2K7VAKZKA2FS86B4LDKWPN0QAQQMXW3FGDW7FS0XLN2MTR03LEYDC0V0QGM2WM3JJIFFKLFJPR7JWYYIVZGLHLRPS83XU2C4PPBW445DELM7QRQR75DW3GYB3P7RSAXQJ' where id=69; -update noar tt set v1='UL0VE33M30IXP67YW5TUFCZLX9SKK5B3VRV18OHVV02RB1ZIQ78WDAT685TN3960YG10S2PNL4EF95AKEF0FH0MLMHW4GX85T3HCZXU5I42PNDJ373M26PQ1RWWONT9LJHU905W31PPMCW8F0LU25K17R0EL5D7HH5GCZCHFU306BUREP9I8O4HIU9C58BK9X2Y04SPFCJWFGJE0A8YAPFEIOX0DBCHXBX8P1T6UB9V6AIM2KJOXBQPWITZ7OD31B' where id=69; -update noar ti set v1='UL0VE33M30IXP67YW5TUFCZLX9SKK5B3VRV18OHVV02RB1ZIQ78WDAT685TN3960YG10S2PNL4EF95AKEF0FH0MLMHW4GX85T3HCZXU5I42PNDJ373M26PQ1RWWONT9LJHU905W31PPMCW8F0LU25K17R0EL5D7HH5GCZCHFU306BUREP9I8O4HIU9C58BK9X2Y04SPFCJWFGJE0A8YAPFEIOX0DBCHXBX8P1T6UB9V6AIM2KJOXBQPWITZ7OD31B' where id=69; -update noar tt set v2='D4UD3SBDHA9JBDOMG893SFTQRM5OYZ3J2M3Q9WNXOIKVAIDIE29YFBF6RPEB4UCO3TBKD0BLC8N0N4JELRPV86CLQHBAB00EMHL3TQ16NVWD8QSODCP4CXR32K3CRIN4PEENNT1B02AHPU31J8OX9N6VRA05OYLGJY03A0338N1K6XQJV7I8G5HZ4YPDEEO5S8QMYSQ0IMQDCDY15QVSP2P0LF127WSNMC83PNQC9E0GASDGRD6BEJ0UWN8Y1IJ94' where id=69; -update noar ti set v2='D4UD3SBDHA9JBDOMG893SFTQRM5OYZ3J2M3Q9WNXOIKVAIDIE29YFBF6RPEB4UCO3TBKD0BLC8N0N4JELRPV86CLQHBAB00EMHL3TQ16NVWD8QSODCP4CXR32K3CRIN4PEENNT1B02AHPU31J8OX9N6VRA05OYLGJY03A0338N1K6XQJV7I8G5HZ4YPDEEO5S8QMYSQ0IMQDCDY15QVSP2P0LF127WSNMC83PNQC9E0GASDGRD6BEJ0UWN8Y1IJ94' where id=69; -update noar tt set v3='KQ5EYSAZRD9DFQXP8GI1TJSR66GASD0R0QC3Q3D6XQ5C5K0R2RXID4LPOALCTZY5L6YB87HLQG68GE0N2BEPQTHDQD0ENZQAFNHM6WTXME02GPCVYXKZNSKJWNK5VWDTPR1K8E2DV6X41P6YE090437PZPHO48ERONXAQ73XYWDIFTBPXPKYIX8P9W5ONFISC45VDEWNQEWS0EXF0EMMCRIBE1ENG6QDV871LI7SGYMXD1I5CE8C9P6YCJ1K8OOXC' where id=69; -update noar ti set v3='KQ5EYSAZRD9DFQXP8GI1TJSR66GASD0R0QC3Q3D6XQ5C5K0R2RXID4LPOALCTZY5L6YB87HLQG68GE0N2BEPQTHDQD0ENZQAFNHM6WTXME02GPCVYXKZNSKJWNK5VWDTPR1K8E2DV6X41P6YE090437PZPHO48ERONXAQ73XYWDIFTBPXPKYIX8P9W5ONFISC45VDEWNQEWS0EXF0EMMCRIBE1ENG6QDV871LI7SGYMXD1I5CE8C9P6YCJ1K8OOXC' where id=69; -update noar tt set v0='XK5O7XTAISPFIB4Z0ROPEHZPDBYTMU3HE8O4SYGLGXA3MSF1CURWCJHF6R1N3IKYA4DMTP13JKTOWRGUSJ3B6FPWGR861YYB8EHM4C8C4ZU8C6LZ96TK1YV9D6TGR40WV1D1HVQK8PTSUPPVW13RY34HL6RQ8R41H1VK4RJAYO6VUZ5YI8ASG0ZA28JDVAQ4CPQW84SVDJLW0O8CMXLG3TDHLCKQA6P44I7NR3PI4D0M6Z337XTW17XJHDDEPZQWO' where id=70; -update noar ti set v0='XK5O7XTAISPFIB4Z0ROPEHZPDBYTMU3HE8O4SYGLGXA3MSF1CURWCJHF6R1N3IKYA4DMTP13JKTOWRGUSJ3B6FPWGR861YYB8EHM4C8C4ZU8C6LZ96TK1YV9D6TGR40WV1D1HVQK8PTSUPPVW13RY34HL6RQ8R41H1VK4RJAYO6VUZ5YI8ASG0ZA28JDVAQ4CPQW84SVDJLW0O8CMXLG3TDHLCKQA6P44I7NR3PI4D0M6Z337XTW17XJHDDEPZQWO' where id=70; -update noar tt set v1='E4LFFSA1J925QOFISTE14MMMS7TJDPBPFHJL1P62IBB6ZQ9LV16SBA297IWYL86064QNSAC8FODZZMTRG5RDXF9PAB5HCV6CFI56OTO2F55OT2MGDE0QHFO8BE53V5Z7SA6DJI6QGQN45WQJ1B5HOT4E5D3JVDJ1Y3R7MQYUN99O0DDLCGTSSGDMGQI4U7VAIR8P0RDGQRLWQGLBN3Z73EEZBUROI2QDIANHKZX0TA7KKBLIMISMPKIE0X2PMW8SM' where id=70; -update noar ti set v1='E4LFFSA1J925QOFISTE14MMMS7TJDPBPFHJL1P62IBB6ZQ9LV16SBA297IWYL86064QNSAC8FODZZMTRG5RDXF9PAB5HCV6CFI56OTO2F55OT2MGDE0QHFO8BE53V5Z7SA6DJI6QGQN45WQJ1B5HOT4E5D3JVDJ1Y3R7MQYUN99O0DDLCGTSSGDMGQI4U7VAIR8P0RDGQRLWQGLBN3Z73EEZBUROI2QDIANHKZX0TA7KKBLIMISMPKIE0X2PMW8SM' where id=70; -update noar tt set v2='WELHWOKHZZ3O1QOR1MUIKUDC5HW8OSXP2MW0SKCUQTLCQPUWZ1BV3CVEABS1PLQN8EU1KCDQ5ICWW0IK8T963FIDGUKH0IDGQLRP4MH22A3QC6J7AP6S8I6JWZ630SDBVRM3I5ZT7ZIJN0QLI73Z84JXQFRJLF0A9GYYOL03KCTCIOESIKUY8130AUY7VF2BGWXMFEGV2U45EDGKVUP4ILPESV4JXV9FXLMXY1OEY19Q9C5A6YZQNQTBEES9CXFH1' where id=70; -update noar ti set v2='WELHWOKHZZ3O1QOR1MUIKUDC5HW8OSXP2MW0SKCUQTLCQPUWZ1BV3CVEABS1PLQN8EU1KCDQ5ICWW0IK8T963FIDGUKH0IDGQLRP4MH22A3QC6J7AP6S8I6JWZ630SDBVRM3I5ZT7ZIJN0QLI73Z84JXQFRJLF0A9GYYOL03KCTCIOESIKUY8130AUY7VF2BGWXMFEGV2U45EDGKVUP4ILPESV4JXV9FXLMXY1OEY19Q9C5A6YZQNQTBEES9CXFH1' where id=70; -update noar tt set v3='NN98J202D6MHL1OX7XZP6CB0X67BBW02WJIVUBQB2P491X3NR1C3H5I3MQDN7Q3OXKI7MXTZ3FV4ML1D36A0R5FX849N0G6G2M1UJ6QXJ9WVSOXS2W12746BN2YY54FNQ7N64CCRQ89DPF8L0YR70NCY8OYFR71LRKCSNT3ZEOH23XMHP050HCWTJOQTTKBAMOQDUVGC0YREF4EZX35UDJ4WKM194NIE6QO8W299YKWBGRD6IQGW4F2WOA8OM1TA6' where id=70; -update noar ti set v3='NN98J202D6MHL1OX7XZP6CB0X67BBW02WJIVUBQB2P491X3NR1C3H5I3MQDN7Q3OXKI7MXTZ3FV4ML1D36A0R5FX849N0G6G2M1UJ6QXJ9WVSOXS2W12746BN2YY54FNQ7N64CCRQ89DPF8L0YR70NCY8OYFR71LRKCSNT3ZEOH23XMHP050HCWTJOQTTKBAMOQDUVGC0YREF4EZX35UDJ4WKM194NIE6QO8W299YKWBGRD6IQGW4F2WOA8OM1TA6' where id=70; -update noar tt set v0='YFRPIK542K92D9ORHSDG0MO6HRMLHASGU1I7N57A6CFWF99HWYVDJAAWC61TL0640QAGTV46V50HKTS9LN764W2M1GQYFEDLWL1FN9A95BSYS5MF2IKYROY382PGSN7VINU781K2XXYSND5VJ2LEDS0TMQHC6XG7RB2P7VZME4UZMAK8U0DNCI5YT2EYV9LIO3EYVQLMKKWBQFLL25VIXRXF0XCDB9NJBFSAWVEJL8C0FGOELC9E6FNJP1JX5JLCH' where id=71; -update noar ti set v0='YFRPIK542K92D9ORHSDG0MO6HRMLHASGU1I7N57A6CFWF99HWYVDJAAWC61TL0640QAGTV46V50HKTS9LN764W2M1GQYFEDLWL1FN9A95BSYS5MF2IKYROY382PGSN7VINU781K2XXYSND5VJ2LEDS0TMQHC6XG7RB2P7VZME4UZMAK8U0DNCI5YT2EYV9LIO3EYVQLMKKWBQFLL25VIXRXF0XCDB9NJBFSAWVEJL8C0FGOELC9E6FNJP1JX5JLCH' where id=71; -update noar tt set v1='J3XU346XQGSUTTYFKWBTN7IYUOQEXQLFIU9YA6TADH3NMINHBPD8E6ZTZVGXXVVOF1GOMO7A0BMJIYA5ARDZ3ZXVFYPI8596XQ87MLQQZVX0YOKWSJFNHFFG3SFF1OFJ0GDOPZ5UBMJ6CXHX2L26U8I711AD3LPM88H99UXMVTA7Z0ECDKLB4FJ0XIGPWA9QWTSZBJTVXG1XDL1LVN0PZTE2A7LUO9ZLXL0Q4LSQD5MT1OTQL30ZZWSSOHR18KNLV' where id=71; -update noar ti set v1='J3XU346XQGSUTTYFKWBTN7IYUOQEXQLFIU9YA6TADH3NMINHBPD8E6ZTZVGXXVVOF1GOMO7A0BMJIYA5ARDZ3ZXVFYPI8596XQ87MLQQZVX0YOKWSJFNHFFG3SFF1OFJ0GDOPZ5UBMJ6CXHX2L26U8I711AD3LPM88H99UXMVTA7Z0ECDKLB4FJ0XIGPWA9QWTSZBJTVXG1XDL1LVN0PZTE2A7LUO9ZLXL0Q4LSQD5MT1OTQL30ZZWSSOHR18KNLV' where id=71; -update noar tt set v2='V469URBLW2ZEIAF61MEEW6SQ4UZ7WSBF78RU9OHWM579KG5YAGJCOOL2SV7LBUMZUYV1WJUMHTYCDPJ764B24L0V7EQSHIBQG2KDPUGQHYVCB4QOVKXRQXAJ1X5F6M4U6TAMOIZWYD95PG51NQCC26IJP9HD0FQWEQHCP3ORX0JHMU0GYCVSC86BDTZNN1AAOUI642250ETQPT58EUJ6MDBK7RV5OICFG77ADQ0GINX6D3BNQ8OQ3Y0AWFVBJIKHF' where id=71; -update noar ti set v2='V469URBLW2ZEIAF61MEEW6SQ4UZ7WSBF78RU9OHWM579KG5YAGJCOOL2SV7LBUMZUYV1WJUMHTYCDPJ764B24L0V7EQSHIBQG2KDPUGQHYVCB4QOVKXRQXAJ1X5F6M4U6TAMOIZWYD95PG51NQCC26IJP9HD0FQWEQHCP3ORX0JHMU0GYCVSC86BDTZNN1AAOUI642250ETQPT58EUJ6MDBK7RV5OICFG77ADQ0GINX6D3BNQ8OQ3Y0AWFVBJIKHF' where id=71; -update noar tt set v3='TIJ8M4LSSCBMCRQH08HT77VAUZ8XFIQZVBXJHL3NXBGRSQE5U28PS3F48SBV2BPIPLVP4RD9YCT8ZQHAWZE3B33957HHHGBJI5909MJZPWRYVOIZ30673AZ6SX85JS8DWXUX1JS09GVMCE0NK4H29RAFDW1IRBGKLXJF9X4XUTWN91DOQJY9OBWHFL99KEU4FIZIF1K5C1EME3AXDEUDC6E4ZJ81PTJCZ4L4VHTTRUZ4EKK0NAFII3D31H4B4Z7WD' where id=71; -update noar ti set v3='TIJ8M4LSSCBMCRQH08HT77VAUZ8XFIQZVBXJHL3NXBGRSQE5U28PS3F48SBV2BPIPLVP4RD9YCT8ZQHAWZE3B33957HHHGBJI5909MJZPWRYVOIZ30673AZ6SX85JS8DWXUX1JS09GVMCE0NK4H29RAFDW1IRBGKLXJF9X4XUTWN91DOQJY9OBWHFL99KEU4FIZIF1K5C1EME3AXDEUDC6E4ZJ81PTJCZ4L4VHTTRUZ4EKK0NAFII3D31H4B4Z7WD' where id=71; -update noar tt set v0='4923FUZ9C8VB2SS9SMTKUEQSUCPJZ6BMZTZFUSOPYJTC2T2ULN27ETBZLFEFZWW7VQMA7VCSG2AUK8L6A8TDZLTJOMDK8K711AOUGXIPUHZ5K8T04HSHLNO24YR00ML2XFPKY189GFWKT5EJF8FL0TZEHJBQRSNDOI0J68GBH6XYG2U7T7MBJJRMRAAC3DDBU62M7PEOTA0HVZEUZQQ3AO5N3ED4LQJ1J7E1ELSD325MMGH4ORUU4OU454E3TFNPW' where id=72; -update noar ti set v0='4923FUZ9C8VB2SS9SMTKUEQSUCPJZ6BMZTZFUSOPYJTC2T2ULN27ETBZLFEFZWW7VQMA7VCSG2AUK8L6A8TDZLTJOMDK8K711AOUGXIPUHZ5K8T04HSHLNO24YR00ML2XFPKY189GFWKT5EJF8FL0TZEHJBQRSNDOI0J68GBH6XYG2U7T7MBJJRMRAAC3DDBU62M7PEOTA0HVZEUZQQ3AO5N3ED4LQJ1J7E1ELSD325MMGH4ORUU4OU454E3TFNPW' where id=72; -update noar tt set v1='B7VS1GQXUXDHDE6750REEMOYWEJ93J46HCF5TDBY8M18I7QXJ1Z6GIIWMG2G69DN2TS193N04XFFNLPJK04HK78MILVNVZWO2XQ8Z4V71TBKQT92T4RM00KM7F4D8L3UTH8W5PB28LCTQO9PEUBNXC779BX4ZIO2BJB6C0FMJ0WSNX18FVMQZ0Q4SYK6J6T13COUNIOXXSL3X9F41F2317W6F5EX746NSJS4YYP8K63DZFWD4B01Y3P6NGTK85VEZ' where id=72; -update noar ti set v1='B7VS1GQXUXDHDE6750REEMOYWEJ93J46HCF5TDBY8M18I7QXJ1Z6GIIWMG2G69DN2TS193N04XFFNLPJK04HK78MILVNVZWO2XQ8Z4V71TBKQT92T4RM00KM7F4D8L3UTH8W5PB28LCTQO9PEUBNXC779BX4ZIO2BJB6C0FMJ0WSNX18FVMQZ0Q4SYK6J6T13COUNIOXXSL3X9F41F2317W6F5EX746NSJS4YYP8K63DZFWD4B01Y3P6NGTK85VEZ' where id=72; -update noar tt set v2='S61LPEQUXN6S0KC9Z1W5QYATW6HZSBX9A15MTONV9MM06P4X29JVFRT9M9KI9Y6SROQC4UNWLDVRHWG4M0DIJASW8JJH3K81JVOUTP8WN2RTBI42XXSNM4LRIIOLNNGRD6GW44EJGUSYM6WGCTU6NERD42WI25YLT090KYIP4IWBLEF91Z2NQEVEOG67FUTLFII8YZ7OIO5F52R5QGHWX63SVILEPIKEZ6MOBRF692OI64Z3A8LLYXRCBG6G2R15Q' where id=72; -update noar ti set v2='S61LPEQUXN6S0KC9Z1W5QYATW6HZSBX9A15MTONV9MM06P4X29JVFRT9M9KI9Y6SROQC4UNWLDVRHWG4M0DIJASW8JJH3K81JVOUTP8WN2RTBI42XXSNM4LRIIOLNNGRD6GW44EJGUSYM6WGCTU6NERD42WI25YLT090KYIP4IWBLEF91Z2NQEVEOG67FUTLFII8YZ7OIO5F52R5QGHWX63SVILEPIKEZ6MOBRF692OI64Z3A8LLYXRCBG6G2R15Q' where id=72; -update noar tt set v3='KE8FRYTJ2OYB6WOW5AGK9JHM88CUEACNTHYQGJRJQCNYWF9FQ0GOGT9QIOGLTTYI37BBJ2VY2E1H8NII07NIN5AQZM0C18IA4ROV991DHHC0TM0NNQXF45XXSIFT1U1K3ZAQC5YRAGT7R5URPKSWDTLEMM411VW6Q8K8MFTDXJ8FYPUTCHRBMZ595EE8BL3PLGCZP06SS0RXW41XEWXQFN8QAGDJ1LJDGJ5YG8NZNPNSN8S9YP482ZLF6P926WSFU' where id=72; -update noar ti set v3='KE8FRYTJ2OYB6WOW5AGK9JHM88CUEACNTHYQGJRJQCNYWF9FQ0GOGT9QIOGLTTYI37BBJ2VY2E1H8NII07NIN5AQZM0C18IA4ROV991DHHC0TM0NNQXF45XXSIFT1U1K3ZAQC5YRAGT7R5URPKSWDTLEMM411VW6Q8K8MFTDXJ8FYPUTCHRBMZ595EE8BL3PLGCZP06SS0RXW41XEWXQFN8QAGDJ1LJDGJ5YG8NZNPNSN8S9YP482ZLF6P926WSFU' where id=72; -update noar tt set v0='9CB91B5WD7UMVUJQGVQTD49SCGF6WMV2I0CFXJR3APIWUPWNP8LSR2CY8OL84FBDSRP2MGMNBJ4P31LCXG2IC3ICVJPNM4P0HZQYYY1L5J9BDJOAL4GUS7JCFSZ4WTU53CL385XSK45G56JNU9E6MWHSODZYLZ5AJKVAKYUNUY9UGOMT4RE9K1J9CH1X8WHQQYXODL85IYJ2Z9I8ZE32C6R98O6FEHP06YB7DZBDSCOHS4OA31HEM1O12HC0DYBIC' where id=73; -update noar ti set v0='9CB91B5WD7UMVUJQGVQTD49SCGF6WMV2I0CFXJR3APIWUPWNP8LSR2CY8OL84FBDSRP2MGMNBJ4P31LCXG2IC3ICVJPNM4P0HZQYYY1L5J9BDJOAL4GUS7JCFSZ4WTU53CL385XSK45G56JNU9E6MWHSODZYLZ5AJKVAKYUNUY9UGOMT4RE9K1J9CH1X8WHQQYXODL85IYJ2Z9I8ZE32C6R98O6FEHP06YB7DZBDSCOHS4OA31HEM1O12HC0DYBIC' where id=73; -update noar tt set v1='S7CPPV8WQDPDQMB5RNVLBUJAKOVJBLST3TEX0MJWZRSDKW4SF2UVZGW9R8WB4C6CR8IOYE4C61X0QCFKGFCBYY5RGZ6XU4S9Q71ACMAUY7VKDJONUFELZY4JI56S8XXUWWNWC16FV3B4TD5TH5TBVNRFKO3Y2XM6VKRG888T2OH82TJ4N7910IPY9Y2GLZ274CV5ZGR23AXHVIBENR1PPHTSHILA9AYW2POKOK63JMQMVW2UD2GIG7452E121LVXP' where id=73; -update noar ti set v1='S7CPPV8WQDPDQMB5RNVLBUJAKOVJBLST3TEX0MJWZRSDKW4SF2UVZGW9R8WB4C6CR8IOYE4C61X0QCFKGFCBYY5RGZ6XU4S9Q71ACMAUY7VKDJONUFELZY4JI56S8XXUWWNWC16FV3B4TD5TH5TBVNRFKO3Y2XM6VKRG888T2OH82TJ4N7910IPY9Y2GLZ274CV5ZGR23AXHVIBENR1PPHTSHILA9AYW2POKOK63JMQMVW2UD2GIG7452E121LVXP' where id=73; -update noar tt set v2='3S8L7M742YLSQI65DUNEZDD5C771A435R9PDBHHR38AC1ZYMWG0OW6BOG94AIX3ATWJ055JF0X4NENH0CA4L6J0U1XGAQQN70O3LWLR57F7MMISEL41TV895SEC4CXOT4KSR5MBMHJL0FR88ASZWP2KW1RDWN4V9K5XGB0ES1PLVYCDZ45CZCOPP35UFZ3WMG614VUYG4JP7VX96DA6WRTSFQIBP3UAPHGOU05UC0SLZ7DYNPWHOMWEVI0OZI5V40' where id=73; -update noar ti set v2='3S8L7M742YLSQI65DUNEZDD5C771A435R9PDBHHR38AC1ZYMWG0OW6BOG94AIX3ATWJ055JF0X4NENH0CA4L6J0U1XGAQQN70O3LWLR57F7MMISEL41TV895SEC4CXOT4KSR5MBMHJL0FR88ASZWP2KW1RDWN4V9K5XGB0ES1PLVYCDZ45CZCOPP35UFZ3WMG614VUYG4JP7VX96DA6WRTSFQIBP3UAPHGOU05UC0SLZ7DYNPWHOMWEVI0OZI5V40' where id=73; -update noar tt set v3='4IFPJW2AGP7HSP6CEN4SLLL8XE9Y4UTBLDCOYCIBMK6ZI8WM3BGOO19ZT2LX4G79QMJH7TE7KOPYDR2PAO6APT3JIJ3OGNH85CTBAQZWOY1LXIMDPOG1OS5OZNKDU7SZTUSLETAHRE3VAZ5IAO493S5N8UOST4P2BM6XB92FDVW3C9WSZ9A4O2MOIH79TL4UPKF96HE7MVRRPC2A64ETW4GZO1MH2EPYGWHC1UTKZFJGEFHHUFM46YKA7B1AHZZD2' where id=73; -update noar ti set v3='4IFPJW2AGP7HSP6CEN4SLLL8XE9Y4UTBLDCOYCIBMK6ZI8WM3BGOO19ZT2LX4G79QMJH7TE7KOPYDR2PAO6APT3JIJ3OGNH85CTBAQZWOY1LXIMDPOG1OS5OZNKDU7SZTUSLETAHRE3VAZ5IAO493S5N8UOST4P2BM6XB92FDVW3C9WSZ9A4O2MOIH79TL4UPKF96HE7MVRRPC2A64ETW4GZO1MH2EPYGWHC1UTKZFJGEFHHUFM46YKA7B1AHZZD2' where id=73; -update noar tt set v0='4U6SRBJ8NTLWAPC4SDPZN3RYZ9YORA5VUTNZRJQ3FQKSYJAR1M1UK2FJJ8B1OMN40KVL43M24TSA7L1AR5A0XYNR6YMUDOC6THT5225G3J01YM5KYXU7BAN0K227SGQ3ZBKU3WMVIEFH9O14YCEEAGQ8WBW6IZSVIHOM0LVA8Y7QEZFWEEEFR7PFKFORQBXENJOCB433JZ3HSAIPZRC24S7W036J5ISPH9LDVP832MG1NY80OOV60URI9JMNGYID9' where id=74; -update noar ti set v0='4U6SRBJ8NTLWAPC4SDPZN3RYZ9YORA5VUTNZRJQ3FQKSYJAR1M1UK2FJJ8B1OMN40KVL43M24TSA7L1AR5A0XYNR6YMUDOC6THT5225G3J01YM5KYXU7BAN0K227SGQ3ZBKU3WMVIEFH9O14YCEEAGQ8WBW6IZSVIHOM0LVA8Y7QEZFWEEEFR7PFKFORQBXENJOCB433JZ3HSAIPZRC24S7W036J5ISPH9LDVP832MG1NY80OOV60URI9JMNGYID9' where id=74; -update noar tt set v1='SCY94S3SS1B716ZVXOMSQXIV84IAE60B4888EQGK9S6YVWIAK3ITNTA2YS14A1ZOOLSXNTO6PBVIKTWMCKEB8HS0T5GUZT07HJBEQUYT8GVSB79L70LZGRGY9VKK5Y8YQJ98W4XVTBN1B48C9C3X130LLONJA90FQION5E17K8KKEU7GJ8VXKA6GVLAB3G9XJ2NS8G5IKQKZUDTR9NX23NF738ZU6JC50B49RYZJC4JC2WT98OCAJUW46SCHCWJZX' where id=74; -update noar ti set v1='SCY94S3SS1B716ZVXOMSQXIV84IAE60B4888EQGK9S6YVWIAK3ITNTA2YS14A1ZOOLSXNTO6PBVIKTWMCKEB8HS0T5GUZT07HJBEQUYT8GVSB79L70LZGRGY9VKK5Y8YQJ98W4XVTBN1B48C9C3X130LLONJA90FQION5E17K8KKEU7GJ8VXKA6GVLAB3G9XJ2NS8G5IKQKZUDTR9NX23NF738ZU6JC50B49RYZJC4JC2WT98OCAJUW46SCHCWJZX' where id=74; -update noar tt set v2='3MOJPPCWMCY7LZX1V6N08LUS6P6IF0O2G2B0IAWFYV7VSZAAZ4L4RDOV28ENC4J6IBBS0P7WMBPLT1UNJNO2YNESJC20K1T2V039W6DB4U9AA95A3HROO8HCLVDHI1X5TDLJLWYKYFF05G5GH6JUMPNAHYR0QTCV2NK33N1TIWM2KK21ENP7NKESYWGUI66SDGIJ7R08PIKV2GFT2SXWISXE61UWPDBLO1MWKLA3DU9OUT4WDNEBDK8CX6EUPDVTH' where id=74; -update noar ti set v2='3MOJPPCWMCY7LZX1V6N08LUS6P6IF0O2G2B0IAWFYV7VSZAAZ4L4RDOV28ENC4J6IBBS0P7WMBPLT1UNJNO2YNESJC20K1T2V039W6DB4U9AA95A3HROO8HCLVDHI1X5TDLJLWYKYFF05G5GH6JUMPNAHYR0QTCV2NK33N1TIWM2KK21ENP7NKESYWGUI66SDGIJ7R08PIKV2GFT2SXWISXE61UWPDBLO1MWKLA3DU9OUT4WDNEBDK8CX6EUPDVTH' where id=74; -update noar tt set v3='2MN0GKNKCTDHL4JG1UNE5BGPMWHKFP3SFIVF787RKBYIYM4V42QL95CZK3ZMDNGL22XWELJ9BRARV4E26FA9ELLLL8FLPS2BL746WO8ZHKFPHQAFHP3N921BQY2Y7B5QH99R6SQ6KG7XD5V25CB8AVBU443FEHB4IZOUSQTODXVYZAQDILSXV440GHY7IJ09FQ1RUBULQPG56JJ7X6JXDN7S1R5ZSRUC368RB27S342XS7OQM07VWM99BRYXIKURK' where id=74; -update noar ti set v3='2MN0GKNKCTDHL4JG1UNE5BGPMWHKFP3SFIVF787RKBYIYM4V42QL95CZK3ZMDNGL22XWELJ9BRARV4E26FA9ELLLL8FLPS2BL746WO8ZHKFPHQAFHP3N921BQY2Y7B5QH99R6SQ6KG7XD5V25CB8AVBU443FEHB4IZOUSQTODXVYZAQDILSXV440GHY7IJ09FQ1RUBULQPG56JJ7X6JXDN7S1R5ZSRUC368RB27S342XS7OQM07VWM99BRYXIKURK' where id=74; -update noar tt set v0='6FCV3W9RQ4B1P1SNF745MID6YK0F7WDBWW25H2UR539DVV2PQTICFZ3C9QRFZ7ZBNTI2UVVQCCYVZK4VSX7KOULFZEAF0229LMKU9YEYGXW2ZKC0G6IBPPXBH35OATNOZKKGOFWRGJGBQKPUDUZKA83L9A9WLEIUNSVJ7DQZXUYWB4XRLAIDABG7IIXI6TMBG5IC27J3U9DL8GF8M5C8Q57JV222KGMXJVQKVHIIHMOMQA46GOG7EHHPAUINUVX8B' where id=75; -update noar ti set v0='6FCV3W9RQ4B1P1SNF745MID6YK0F7WDBWW25H2UR539DVV2PQTICFZ3C9QRFZ7ZBNTI2UVVQCCYVZK4VSX7KOULFZEAF0229LMKU9YEYGXW2ZKC0G6IBPPXBH35OATNOZKKGOFWRGJGBQKPUDUZKA83L9A9WLEIUNSVJ7DQZXUYWB4XRLAIDABG7IIXI6TMBG5IC27J3U9DL8GF8M5C8Q57JV222KGMXJVQKVHIIHMOMQA46GOG7EHHPAUINUVX8B' where id=75; -update noar tt set v1='VR4NED14HX9SFOJ6RS62SIRCHHMQO3F4DS1GHLTK1FLBVMJXSIIOD3V34SKQ2YQ8L42A9YV5B4Z1P20IFZ4S2BLLN1NOEH9OCHU5DIAKL34M997K9TU6EZKHNIMBS9OJKTRCP7LJTZZCTVA19GUNQUTJOZCAWEOM8665SC7QKLUM7T76K52DX1ITTPE90L9F00V7IZM54QP6AGZEH6K9W9QYX3MD13TIZAONM333SH8WSZ8Y1GGIHRMKJOSHQBPST' where id=75; -update noar ti set v1='VR4NED14HX9SFOJ6RS62SIRCHHMQO3F4DS1GHLTK1FLBVMJXSIIOD3V34SKQ2YQ8L42A9YV5B4Z1P20IFZ4S2BLLN1NOEH9OCHU5DIAKL34M997K9TU6EZKHNIMBS9OJKTRCP7LJTZZCTVA19GUNQUTJOZCAWEOM8665SC7QKLUM7T76K52DX1ITTPE90L9F00V7IZM54QP6AGZEH6K9W9QYX3MD13TIZAONM333SH8WSZ8Y1GGIHRMKJOSHQBPST' where id=75; -update noar tt set v2='K44JPUE83N81GY0NRA8JTL4L7RVB36Y1VSSA6FW1525WMM6UX5Z3GQF6EJCD31YVWOX3MBPJLXPE7JOZZ4S9TP2Z2Q9BJY1WJEKGEAKGE40A849FADDQOYMU8UU515ACU1KGHBF4FBBFR96T4ZFZXWGBKQHBZU6U34RWRZ5YR12UMC7LGIECJAS0UK774QOLMN97XVATXTPJGCOR0U7LUH4GUP2ZHZ37QMCH3Z7E91HPP5S8QXWF3TCD67HS7T1EZ' where id=75; -update noar ti set v2='K44JPUE83N81GY0NRA8JTL4L7RVB36Y1VSSA6FW1525WMM6UX5Z3GQF6EJCD31YVWOX3MBPJLXPE7JOZZ4S9TP2Z2Q9BJY1WJEKGEAKGE40A849FADDQOYMU8UU515ACU1KGHBF4FBBFR96T4ZFZXWGBKQHBZU6U34RWRZ5YR12UMC7LGIECJAS0UK774QOLMN97XVATXTPJGCOR0U7LUH4GUP2ZHZ37QMCH3Z7E91HPP5S8QXWF3TCD67HS7T1EZ' where id=75; -update noar tt set v3='HKHJA63CY8D34IU6BFOOG21VORX8C7M672KRPN0C1TLSDC38MGXI0X1UKV44671YDMLLN3I1A693ZWIQU1D2QFK5QG9LTW723P6OP18YO4NNBNXP66QI61PC27KKYBK83SICHFNO7K37JF1V5NTHTDCTPT7T7JND1R1NEOWUQ0U4NXLLIINLQWK284K74U34OD2R68V2M0OXV123NWAGWE5XWOYU3GU1CH3K5W13UGW2N15G0QU8L7BOPSOQ6Z7I7' where id=75; -update noar ti set v3='HKHJA63CY8D34IU6BFOOG21VORX8C7M672KRPN0C1TLSDC38MGXI0X1UKV44671YDMLLN3I1A693ZWIQU1D2QFK5QG9LTW723P6OP18YO4NNBNXP66QI61PC27KKYBK83SICHFNO7K37JF1V5NTHTDCTPT7T7JND1R1NEOWUQ0U4NXLLIINLQWK284K74U34OD2R68V2M0OXV123NWAGWE5XWOYU3GU1CH3K5W13UGW2N15G0QU8L7BOPSOQ6Z7I7' where id=75; -update noar tt set v0='1UH6NRKWMVCGYAF3R4Q65BR4JOANCQYV06XPL2FAVYRAWXKFCEBFZ3LUSDSZPHS06KDNU3Z7ZGD0QLRBVVGBVI877CJ4AI8MN9I82HBSYJ86PJV83M734KX6YGUOARKV4MLD5LRMPGFNH4V1ATJQQY5BNVOPMUNGPUVH7XK0V51QNJX390ZHX5J6NY0LJ9NTV2HH6NSD4HAEC4OAFJGRKYYJX6NXL9P1FGY25810IGH3LUVSTNSL91NBCHDG79IFF' where id=76; -update noar ti set v0='1UH6NRKWMVCGYAF3R4Q65BR4JOANCQYV06XPL2FAVYRAWXKFCEBFZ3LUSDSZPHS06KDNU3Z7ZGD0QLRBVVGBVI877CJ4AI8MN9I82HBSYJ86PJV83M734KX6YGUOARKV4MLD5LRMPGFNH4V1ATJQQY5BNVOPMUNGPUVH7XK0V51QNJX390ZHX5J6NY0LJ9NTV2HH6NSD4HAEC4OAFJGRKYYJX6NXL9P1FGY25810IGH3LUVSTNSL91NBCHDG79IFF' where id=76; -update noar tt set v1='E8R00BKNSPVOV9O06UFQKV6BRY8LLJJO7KCF9OAZQIMLM4VZ6YL8SNW7R5BY1Y737NFD52OKXEFIA1O43XJ6Q24MIHJNQGG69WIN9Z5NAYKU552T15P7D7N56NR55KLAIM1V9VKRQJLXUJLB5L55SDDGFHAQO5MGAYFKIQ26IQ0YD4QEELVWL76DUDG4PNGHT1N6TASQ0LJPFNFU56UAEDQM6DHKN6M4H8XQPTXCKN9AG0XRBMGY4FW3DZ0AUZXXH' where id=76; -update noar ti set v1='E8R00BKNSPVOV9O06UFQKV6BRY8LLJJO7KCF9OAZQIMLM4VZ6YL8SNW7R5BY1Y737NFD52OKXEFIA1O43XJ6Q24MIHJNQGG69WIN9Z5NAYKU552T15P7D7N56NR55KLAIM1V9VKRQJLXUJLB5L55SDDGFHAQO5MGAYFKIQ26IQ0YD4QEELVWL76DUDG4PNGHT1N6TASQ0LJPFNFU56UAEDQM6DHKN6M4H8XQPTXCKN9AG0XRBMGY4FW3DZ0AUZXXH' where id=76; -update noar tt set v2='K1HD98641FDCHEWHOC1Q43L1EQHYILBBTCPHK3DJYWY7LPG9BMK48RCZFZPZUSGLETR7XFNC5KKK74MZ2FBJVLDNWUD966KG7VSA46D2F0YL3O0NERYCQJF0J8CH8828ILH812JBG7IW7VNE7PREB2MQFP2SFSQRRWQ4SKWPWNWR98ODGDBD4P4SARPEH77SDOEJ0BHMX1NOZJD3KULBJ7UGXSWLQ6DHENTVXI1N7RGRR6P6NHPV58QYZDU3VLUV8' where id=76; -update noar ti set v2='K1HD98641FDCHEWHOC1Q43L1EQHYILBBTCPHK3DJYWY7LPG9BMK48RCZFZPZUSGLETR7XFNC5KKK74MZ2FBJVLDNWUD966KG7VSA46D2F0YL3O0NERYCQJF0J8CH8828ILH812JBG7IW7VNE7PREB2MQFP2SFSQRRWQ4SKWPWNWR98ODGDBD4P4SARPEH77SDOEJ0BHMX1NOZJD3KULBJ7UGXSWLQ6DHENTVXI1N7RGRR6P6NHPV58QYZDU3VLUV8' where id=76; -update noar tt set v3='7M9XV1GQQJN22D12Z4QU3NVE33X5TRK20DA7ZK6RXOAYP62JWIU0YQWZCFKZN6EJCJ875XIF7YHOE3B3S2CH4UMLAB6KPDVLPNS6T9R82L9D3LEJPBB178YCV1BFDPQGNHYMKBN7SDGYQG1EZS16P36RJ8JTRXX5KBQZH0EGK8MCXLUMLGNB4RXE4W56PPEW5H5L2LSW3KCZQ1XD1SF2EDBUH90O8CIWTFTZTMWZQIK7HZ07SQQNOQ39UMACKHZ7B' where id=76; -update noar ti set v3='7M9XV1GQQJN22D12Z4QU3NVE33X5TRK20DA7ZK6RXOAYP62JWIU0YQWZCFKZN6EJCJ875XIF7YHOE3B3S2CH4UMLAB6KPDVLPNS6T9R82L9D3LEJPBB178YCV1BFDPQGNHYMKBN7SDGYQG1EZS16P36RJ8JTRXX5KBQZH0EGK8MCXLUMLGNB4RXE4W56PPEW5H5L2LSW3KCZQ1XD1SF2EDBUH90O8CIWTFTZTMWZQIK7HZ07SQQNOQ39UMACKHZ7B' where id=76; -update noar tt set v0='Y0X21K01JOROS64RCVXJIZ5P915919548PNC48QXQV1JYSPX1NKECQ8A27ZXPHF72Y18HEFUPSQGZKY2IASHE6A2XAY32UG5Q5EP61RHRWF0255WKEYX1H8FL30NV3D6TK02L03GYK0KDZ5UFUQ795KZT6ZTB5BDLBDBPKZ45TZU26016JEYNLCT71TVXXOFH9Q5WX8B341T215D8GAQAQ6L0F86X7STD0G6G8KWZOBVI7D8U0WQHS26OVMVEAPHY' where id=77; -update noar ti set v0='Y0X21K01JOROS64RCVXJIZ5P915919548PNC48QXQV1JYSPX1NKECQ8A27ZXPHF72Y18HEFUPSQGZKY2IASHE6A2XAY32UG5Q5EP61RHRWF0255WKEYX1H8FL30NV3D6TK02L03GYK0KDZ5UFUQ795KZT6ZTB5BDLBDBPKZ45TZU26016JEYNLCT71TVXXOFH9Q5WX8B341T215D8GAQAQ6L0F86X7STD0G6G8KWZOBVI7D8U0WQHS26OVMVEAPHY' where id=77; -update noar tt set v1='3UZNHPJWOTPKIOFVBGEDE3VS34IYJTKA3W1VXYQ4F4F68VR8M7YIE0BSTNR0D3M72S6NYMZWMKK4XBOXLQJXRT4S0OHDENV40ZGIUCQM1RCJOWP11VJ9UUKT10J6PGH76JM60VCKJ0UJO81T0ZKCKAQQ6TVQMZ6AWOEFKKUFOPB0TKO8O3V47TYN6AWBGQDLK85PZ8QC8WBRBBF0504QO8ORODEYVJUEZBKUNEMEPL8I3N4P15XEZV4UUKC13SFFD' where id=77; -update noar ti set v1='3UZNHPJWOTPKIOFVBGEDE3VS34IYJTKA3W1VXYQ4F4F68VR8M7YIE0BSTNR0D3M72S6NYMZWMKK4XBOXLQJXRT4S0OHDENV40ZGIUCQM1RCJOWP11VJ9UUKT10J6PGH76JM60VCKJ0UJO81T0ZKCKAQQ6TVQMZ6AWOEFKKUFOPB0TKO8O3V47TYN6AWBGQDLK85PZ8QC8WBRBBF0504QO8ORODEYVJUEZBKUNEMEPL8I3N4P15XEZV4UUKC13SFFD' where id=77; -update noar tt set v2='BK0XLWGMSO3G9PUXI2ALOWONIRS4OYW77WJ0VQNHWUVUF2ZFABNZP3LLVA3ELIP3GOX4GL9Y5O0DN2J8SN7YQHGF9FB6ZO6U865WPARKOW01VXAHMRFDQTKH071J5WRB0HAK4SFGJWXIJNBB4G03NRVBUMPVKLZHZ4E8UKZ8AI088HCZPHWKDY6VEK27OECSEYFQMU10IK76922K6BKQISJ78COQJLDZHYHNI1VWBKEW6X4Z1Q2WRJKWYYU4FA9ZG' where id=77; -update noar ti set v2='BK0XLWGMSO3G9PUXI2ALOWONIRS4OYW77WJ0VQNHWUVUF2ZFABNZP3LLVA3ELIP3GOX4GL9Y5O0DN2J8SN7YQHGF9FB6ZO6U865WPARKOW01VXAHMRFDQTKH071J5WRB0HAK4SFGJWXIJNBB4G03NRVBUMPVKLZHZ4E8UKZ8AI088HCZPHWKDY6VEK27OECSEYFQMU10IK76922K6BKQISJ78COQJLDZHYHNI1VWBKEW6X4Z1Q2WRJKWYYU4FA9ZG' where id=77; -update noar tt set v3='PBYBVDSMU71C3KRULCTZ3MESIFK15Y1X3CYOOV9E3ZHJQRT4YPQJX3XD9F9SGI310NV7CGDL2U9U19A2WI11JORKYW5K6S3VV3TAJJ0M2KODAVRE0B5LB8UMUE17P9L1283C1SO0V1XO5ZFIFSB37YY8FEJJCCD0CO242580XG2GMB9U1C8XQ5X5TPZ18FUMO0L66KTH3WRMC5CGJ05SM3RXUA85Q528Q6YU8URQLWZ6EOXZ5E69AHT7M2OCLOP0V' where id=77; -update noar ti set v3='PBYBVDSMU71C3KRULCTZ3MESIFK15Y1X3CYOOV9E3ZHJQRT4YPQJX3XD9F9SGI310NV7CGDL2U9U19A2WI11JORKYW5K6S3VV3TAJJ0M2KODAVRE0B5LB8UMUE17P9L1283C1SO0V1XO5ZFIFSB37YY8FEJJCCD0CO242580XG2GMB9U1C8XQ5X5TPZ18FUMO0L66KTH3WRMC5CGJ05SM3RXUA85Q528Q6YU8URQLWZ6EOXZ5E69AHT7M2OCLOP0V' where id=77; -update noar tt set v0='XZZXMF5AN6Z9244CI69NPBUJ8UTW7NCHOIU3SNQYZX67PRRKV22QLOUVN3EVGVY9TDYDROIX6W2P43PP07KZU2EGS4RRIZWBRAD7JCRGG435MDI7GXC3N7UPDYBYFS0MOL15KFFRZPPGG3T9U19GSZ31DYMEXADQ18K4WFOH3DW20MXEQV59V8PRDXY4800SYJH0JB5CP7RUTMPALPIJS6ACBCRKMEQ7AY4V65JFUWYYF2DGFVJSVEA3V32NVCSI8' where id=78; -update noar ti set v0='XZZXMF5AN6Z9244CI69NPBUJ8UTW7NCHOIU3SNQYZX67PRRKV22QLOUVN3EVGVY9TDYDROIX6W2P43PP07KZU2EGS4RRIZWBRAD7JCRGG435MDI7GXC3N7UPDYBYFS0MOL15KFFRZPPGG3T9U19GSZ31DYMEXADQ18K4WFOH3DW20MXEQV59V8PRDXY4800SYJH0JB5CP7RUTMPALPIJS6ACBCRKMEQ7AY4V65JFUWYYF2DGFVJSVEA3V32NVCSI8' where id=78; -update noar tt set v1='Q50TIDU0O84HE11QSQN4L83ASFGW5XCWM1MC38WZH218A5QN4AKUP4OLHB0HV096HRPQDB7AV2JKKAKDLF46MMKGLSZGNVT79QFPQF0M0R43WXAP26OXGQCHPUM479XZIEYA1A2K2O93W3YWMRD02Z0F5R2D3CPJLWREPPIIVKAJULI9PIH53HCDLMI88YZX1US6ZB5SR4IE68DD7R6N3EGIBG7MU9NECW9HZ39WJKBM8AQF8K7DJ29GULOX99OJG' where id=78; -update noar ti set v1='Q50TIDU0O84HE11QSQN4L83ASFGW5XCWM1MC38WZH218A5QN4AKUP4OLHB0HV096HRPQDB7AV2JKKAKDLF46MMKGLSZGNVT79QFPQF0M0R43WXAP26OXGQCHPUM479XZIEYA1A2K2O93W3YWMRD02Z0F5R2D3CPJLWREPPIIVKAJULI9PIH53HCDLMI88YZX1US6ZB5SR4IE68DD7R6N3EGIBG7MU9NECW9HZ39WJKBM8AQF8K7DJ29GULOX99OJG' where id=78; -update noar tt set v2='ZX31YBDENGT4ZUZ3M15EHDQ0H4QJYFGZ28UYD1SI2OEW8WTGDXO0US62RRZWTDY9CWP1308P07KTKS6N3NH8J6M9XNPY3U85GTP8IA8BHFF6MHRKD34RJ9CNG523CXSICUHREMOBYTNDFICPLD3Q23WF0LUOCXOT0BTLZO0LHHX5MU52RALZ2B03NDDN7C1F3X0YAZMPT174IORNAW3IAQB9YG9MZOO1HTD3F1GOMO9XNKECX48885PPMF0L8Z2OQ' where id=78; -update noar ti set v2='ZX31YBDENGT4ZUZ3M15EHDQ0H4QJYFGZ28UYD1SI2OEW8WTGDXO0US62RRZWTDY9CWP1308P07KTKS6N3NH8J6M9XNPY3U85GTP8IA8BHFF6MHRKD34RJ9CNG523CXSICUHREMOBYTNDFICPLD3Q23WF0LUOCXOT0BTLZO0LHHX5MU52RALZ2B03NDDN7C1F3X0YAZMPT174IORNAW3IAQB9YG9MZOO1HTD3F1GOMO9XNKECX48885PPMF0L8Z2OQ' where id=78; -update noar tt set v3='GXYG7808ZF0F88QWX1ZBH44CCAC8GDIOWDUUVWZYSDCZSDGH5LCQZIJZEJLVISFPPJ7KPBOJQOQ6658CU89HLQC9L4ZEAW08OYTTYZFWMNWR8X1E8CFKRXRTRI4U6KTSHNRDOMQYMKD1JWNYXTX08ZO7ANY3CJLBWP6I4JIH5ZTVAGCJQIN2ZRXFJOUKTHY7PEF7QJ259G3DSIWOAMOYACR9FD9PL6OL2YYPH0W3F4A6BJLAP7FTZEDXFXPYEIQTN' where id=78; -update noar ti set v3='GXYG7808ZF0F88QWX1ZBH44CCAC8GDIOWDUUVWZYSDCZSDGH5LCQZIJZEJLVISFPPJ7KPBOJQOQ6658CU89HLQC9L4ZEAW08OYTTYZFWMNWR8X1E8CFKRXRTRI4U6KTSHNRDOMQYMKD1JWNYXTX08ZO7ANY3CJLBWP6I4JIH5ZTVAGCJQIN2ZRXFJOUKTHY7PEF7QJ259G3DSIWOAMOYACR9FD9PL6OL2YYPH0W3F4A6BJLAP7FTZEDXFXPYEIQTN' where id=78; -update noar tt set v0='PMJHK06HYCSFCNMRFGWMWU44Q1BW8YQ11GHJW88ADUGZ8JQQKFNQH5QKMC1TAVE2AI4U409H0DV2OSD051332FEMN2K3J6E6O7BVKH3R5NGN6WCR8GUXF9QNUYE9QCY1Y5QCU4R211JGD1NIP2GPQINWEV354V2GAVXC0WUPBSZ0YRLC4WW2ADIGQQMY8PK5U7WX4TJ59KXAKNWSNN1JJWVBQHM4O9SNHMN52UW0J1YDTP6KCFA6DB6QZVFAZUPVN' where id=79; -update noar ti set v0='PMJHK06HYCSFCNMRFGWMWU44Q1BW8YQ11GHJW88ADUGZ8JQQKFNQH5QKMC1TAVE2AI4U409H0DV2OSD051332FEMN2K3J6E6O7BVKH3R5NGN6WCR8GUXF9QNUYE9QCY1Y5QCU4R211JGD1NIP2GPQINWEV354V2GAVXC0WUPBSZ0YRLC4WW2ADIGQQMY8PK5U7WX4TJ59KXAKNWSNN1JJWVBQHM4O9SNHMN52UW0J1YDTP6KCFA6DB6QZVFAZUPVN' where id=79; -update noar tt set v1='ANZCL9NTECQ337BYT0I9ZQW2XLBGK1OMIU8CPE3JIIX4ITETBTBLI432NBNXQ4ZS7I92JAFUUTGULJ1I5FMSTX07IUXDMM529ZSIQYYQKXGG9K6U036KEYAD21S6P2CSLAICAAWYA8GVRMZNCWTLP1JFTSHXVM1RPOV184WA698ON67GWKE9VUB2XFE69OA0A6M0ZGIVUPT4OD7J6HLIJCKK3ED2LS2PICTBG23UO5S3NCYEKDNMWIIVP5PZRBY0K' where id=79; -update noar ti set v1='ANZCL9NTECQ337BYT0I9ZQW2XLBGK1OMIU8CPE3JIIX4ITETBTBLI432NBNXQ4ZS7I92JAFUUTGULJ1I5FMSTX07IUXDMM529ZSIQYYQKXGG9K6U036KEYAD21S6P2CSLAICAAWYA8GVRMZNCWTLP1JFTSHXVM1RPOV184WA698ON67GWKE9VUB2XFE69OA0A6M0ZGIVUPT4OD7J6HLIJCKK3ED2LS2PICTBG23UO5S3NCYEKDNMWIIVP5PZRBY0K' where id=79; -update noar tt set v2='ERC73LHB2CVEY9C5416UXYTRMK7L5STH2Q9CQHRYD7CQKKG2QQSZDRXJ16ELIR8W73VB5HO15G93XO4MFB52IUJUBT8V4LGQN9B8ABGR26RUYSRPL73OOSTV7W2HWZABQ8DEQ3B3TZULKZ2J7MOV2VMKQKUFBJEOWV9IRXXO28GRAMY1M8Q9G0CX4FZE4D5J1WXWA1W0AG4YLTOQ1JR3XAMU9MXOZ7NH295DAYUL95N4RIHVCPT3PVR2959H1W7SY' where id=79; -update noar ti set v2='ERC73LHB2CVEY9C5416UXYTRMK7L5STH2Q9CQHRYD7CQKKG2QQSZDRXJ16ELIR8W73VB5HO15G93XO4MFB52IUJUBT8V4LGQN9B8ABGR26RUYSRPL73OOSTV7W2HWZABQ8DEQ3B3TZULKZ2J7MOV2VMKQKUFBJEOWV9IRXXO28GRAMY1M8Q9G0CX4FZE4D5J1WXWA1W0AG4YLTOQ1JR3XAMU9MXOZ7NH295DAYUL95N4RIHVCPT3PVR2959H1W7SY' where id=79; -update noar tt set v3='4I4JFAAGMW4T3BM9YUVER5IZ6U9U1C9079H6S360DJ96S2ES8HY3ERN7LUB6JF737F6UWKIYRHNMFLCB8GM3X8L9PNENBEA6UGX3509HB5OYZCW4LE49JNJX0NK02TJHUH79YQSO6DVBBPXNFMRPJ0B68FF6HZIE18EC502QLPVKLM4RD18PPXCBP9ONOPFFFCX6LTKNA19T47GM7KUNFSN6PCUTT6CHINZOUJMHIHRTZW2OOVWYB5YPKJSODEERV' where id=79; -update noar ti set v3='4I4JFAAGMW4T3BM9YUVER5IZ6U9U1C9079H6S360DJ96S2ES8HY3ERN7LUB6JF737F6UWKIYRHNMFLCB8GM3X8L9PNENBEA6UGX3509HB5OYZCW4LE49JNJX0NK02TJHUH79YQSO6DVBBPXNFMRPJ0B68FF6HZIE18EC502QLPVKLM4RD18PPXCBP9ONOPFFFCX6LTKNA19T47GM7KUNFSN6PCUTT6CHINZOUJMHIHRTZW2OOVWYB5YPKJSODEERV' where id=79; -update noar tt set v0='OGE1PNX6W81XKL4S9J9EM8U3BZRE3ZJQ2V2BGONQ3I5RYG31H4DRLZ233WZ28UUH1KYOH95KUCC3EE78CX3A908SAM25AEIBWAWOY8I810IO4PGV6DAWPDFNXHJZUMXFK7GQKUAIKZK60C7C1MR295WWAQCBS8P9156WK1FA724FZ0ECYMPICO37ALT7QHAD1E27Z3WF6GJ9HD3GYZPDVMMT3TDBXH4KVCF5RY6ZQTRSFU9O3S9APGV4YZX15E9CT' where id=80; -update noar ti set v0='OGE1PNX6W81XKL4S9J9EM8U3BZRE3ZJQ2V2BGONQ3I5RYG31H4DRLZ233WZ28UUH1KYOH95KUCC3EE78CX3A908SAM25AEIBWAWOY8I810IO4PGV6DAWPDFNXHJZUMXFK7GQKUAIKZK60C7C1MR295WWAQCBS8P9156WK1FA724FZ0ECYMPICO37ALT7QHAD1E27Z3WF6GJ9HD3GYZPDVMMT3TDBXH4KVCF5RY6ZQTRSFU9O3S9APGV4YZX15E9CT' where id=80; -update noar tt set v1='XAAQGPLKVSALYLCKCRXFLKQEV8E4R671MNWV1J3TF21H7LVUCK4I94P6JW1SD9A8AETHG4DA1WC46V7WOECUUC8DTKBYJWVY3456N191V2U5PKLDN22P0TE6DFHX6JR0WKDE91JY6ZI6BLFXBJYY2H4ZZQLYMWGOPLGPZ2CLBCBVWYZF3I0WLSDX48U2LF453UYXR6LB35D2DXXDD0TBAAGJQF3XCX3C2A023DELGQQFNIG15VTW7XTDI4IAFH08H' where id=80; -update noar ti set v1='XAAQGPLKVSALYLCKCRXFLKQEV8E4R671MNWV1J3TF21H7LVUCK4I94P6JW1SD9A8AETHG4DA1WC46V7WOECUUC8DTKBYJWVY3456N191V2U5PKLDN22P0TE6DFHX6JR0WKDE91JY6ZI6BLFXBJYY2H4ZZQLYMWGOPLGPZ2CLBCBVWYZF3I0WLSDX48U2LF453UYXR6LB35D2DXXDD0TBAAGJQF3XCX3C2A023DELGQQFNIG15VTW7XTDI4IAFH08H' where id=80; -update noar tt set v2='3L080BAQAUV1E5NDE673QQ57Q2RFIMNSPGDJRJHV2U7NJ67QJ6NDBKFOIF4WEOUVBOZ5MGDAG8A7KS0SP83WWKPYEMALJ704N66IZLSWL27CUMEWG1HXOK1LYIJFH2VHD719WDTV9BXG1GCSDIUUPK0LN5T5EPXDM5K4BZJG7YH5PLTOPZCO8TKB7TIDCWBQJNBGOH7IDEJTHJTNUK0QAQ0OFTWXU41NDGDW8W2QG3KX6MY6QV63UXJTLEI0EJ6KY' where id=80; -update noar ti set v2='3L080BAQAUV1E5NDE673QQ57Q2RFIMNSPGDJRJHV2U7NJ67QJ6NDBKFOIF4WEOUVBOZ5MGDAG8A7KS0SP83WWKPYEMALJ704N66IZLSWL27CUMEWG1HXOK1LYIJFH2VHD719WDTV9BXG1GCSDIUUPK0LN5T5EPXDM5K4BZJG7YH5PLTOPZCO8TKB7TIDCWBQJNBGOH7IDEJTHJTNUK0QAQ0OFTWXU41NDGDW8W2QG3KX6MY6QV63UXJTLEI0EJ6KY' where id=80; -update noar tt set v3='XOPCY9TJ5PBMNYCRPGISOJ1E1Z5PM55QBCN2ER3MEAMP31RS2TTGFR8L7WLR6EMVQ0GY5PXFPRGZG2QWHGLJ4WV9ULB2YAYM9TK9P387LH6SMCMXB9ZVQ525GI2C13FUL58QKSHALKSRKLP47NZNT4Y3YGSYUNM5IFIFSN4ZIYLMJ060GMIW0HNOW0PVVDNQQWRI5K9CUXREFP6ENRXBQUEFLZGSBHXOX5NXES3OG4W4QN87UF8TOOWIZHUM3L4K1' where id=80; -update noar ti set v3='XOPCY9TJ5PBMNYCRPGISOJ1E1Z5PM55QBCN2ER3MEAMP31RS2TTGFR8L7WLR6EMVQ0GY5PXFPRGZG2QWHGLJ4WV9ULB2YAYM9TK9P387LH6SMCMXB9ZVQ525GI2C13FUL58QKSHALKSRKLP47NZNT4Y3YGSYUNM5IFIFSN4ZIYLMJ060GMIW0HNOW0PVVDNQQWRI5K9CUXREFP6ENRXBQUEFLZGSBHXOX5NXES3OG4W4QN87UF8TOOWIZHUM3L4K1' where id=80; -update noar tt set v0='HVKWOFNPTF1XMCLUA128Z0FL6MS60M2AUTQ3QLM4QH4VRELRLKZQTX8UW93T26WJUSAL9936LRKCUIMS8D500DEP9WFJUOJ6KFF7IH1FCT0YTIRUUEOCCJD4FYX70D89BT3HXBDV7IFHRMRHM7GQAUD1KJGKQ0SLPOFKS2Z0PCRRSZ9XYW21CZ82ZAFCCWTT5CNWA41QU31F7EVA27E2WNJM05WC96LMAU5V0KL89IFGRNE67NPVHQSOGVPCOCDS8' where id=81; -update noar ti set v0='HVKWOFNPTF1XMCLUA128Z0FL6MS60M2AUTQ3QLM4QH4VRELRLKZQTX8UW93T26WJUSAL9936LRKCUIMS8D500DEP9WFJUOJ6KFF7IH1FCT0YTIRUUEOCCJD4FYX70D89BT3HXBDV7IFHRMRHM7GQAUD1KJGKQ0SLPOFKS2Z0PCRRSZ9XYW21CZ82ZAFCCWTT5CNWA41QU31F7EVA27E2WNJM05WC96LMAU5V0KL89IFGRNE67NPVHQSOGVPCOCDS8' where id=81; -update noar tt set v1='GNOOCOB7KGE3IX7P29O9OPRXYYEWN6JEC2RZ79BY87753GSDM4NCODWAX7FQI1YQI8BGDFF93Y50USRWZGGBHCSCKHF62NUNQC48B5YDX9BDEFIODJDXRESB7H9UC54NUYEPK99B0TWI52CIY4I6N5AK10HZDD5S6HSERVS3KMVJR3MAATX05SN4WQRRBWDP9B2ZTEO957LXKKCMW6D7M09MG3GHR3L2K6XNAVRFN0AFH1W4TJ140426UVALCPDO8' where id=81; -update noar ti set v1='GNOOCOB7KGE3IX7P29O9OPRXYYEWN6JEC2RZ79BY87753GSDM4NCODWAX7FQI1YQI8BGDFF93Y50USRWZGGBHCSCKHF62NUNQC48B5YDX9BDEFIODJDXRESB7H9UC54NUYEPK99B0TWI52CIY4I6N5AK10HZDD5S6HSERVS3KMVJR3MAATX05SN4WQRRBWDP9B2ZTEO957LXKKCMW6D7M09MG3GHR3L2K6XNAVRFN0AFH1W4TJ140426UVALCPDO8' where id=81; -update noar tt set v2='WYJ9Z0PH4GMGW3Q8HA0M8LJTWEL32CELY7PRWFHUZGN22LXS4YP7OPG39Q056DWRRDTEINCDGV5DDEV7V0V37CSH3L90I5LFZ5QPCSYKHZNMSF1F3C5FYC3I2QBD5GJLRJYMWCYQRH9AADH9K3MF7PX582SQQISFU5X8OF1JLYZNABO0RWNP1TID9FOSV01ZXEL7A2EZGBL6H56RGA0BGC4I7EI504VAAWYHW7PDSMPZTRM2UXNKC765U1DAD6JQ6' where id=81; -update noar ti set v2='WYJ9Z0PH4GMGW3Q8HA0M8LJTWEL32CELY7PRWFHUZGN22LXS4YP7OPG39Q056DWRRDTEINCDGV5DDEV7V0V37CSH3L90I5LFZ5QPCSYKHZNMSF1F3C5FYC3I2QBD5GJLRJYMWCYQRH9AADH9K3MF7PX582SQQISFU5X8OF1JLYZNABO0RWNP1TID9FOSV01ZXEL7A2EZGBL6H56RGA0BGC4I7EI504VAAWYHW7PDSMPZTRM2UXNKC765U1DAD6JQ6' where id=81; -update noar tt set v3='DS8WQ78VGLXXIWT4BR4KORNH3PN74C47T4Z4H9YE8QS4W71JA5VGS1M9YBLXQYI8IH0OTPMW9UD4BTFSTAOD5W08L1Z8UF8D6EWL5V6BQ9VN81KBQC99TJNLXXBL8R5JS8DH4TZ6B11GY79HNI5VZCSXUJJZLREQP4UBNUD6LNXA5F878DZLEESJXGCHXH4GN9AWPK5C93ELSCIAJU6PMPK4898L4BGH1ZTZR9YOW06IXD1EOCERBTGLQP35OJ6T7' where id=81; -update noar ti set v3='DS8WQ78VGLXXIWT4BR4KORNH3PN74C47T4Z4H9YE8QS4W71JA5VGS1M9YBLXQYI8IH0OTPMW9UD4BTFSTAOD5W08L1Z8UF8D6EWL5V6BQ9VN81KBQC99TJNLXXBL8R5JS8DH4TZ6B11GY79HNI5VZCSXUJJZLREQP4UBNUD6LNXA5F878DZLEESJXGCHXH4GN9AWPK5C93ELSCIAJU6PMPK4898L4BGH1ZTZR9YOW06IXD1EOCERBTGLQP35OJ6T7' where id=81; -update noar tt set v0='Z1AFFAFJ8HEXQ6KWLXHTWSQME27Q0UPVYC5F0UP14OWUINMNXPLM0AIYR1VOCWF6MOQRNZ2ESBK6OD5Y3YCIZLKEHS6RX0K1U6JSGEGKODHSRHOZ9WKVKSPP11U9HHQH7W5IUXRWINAT837WDUXVOQF9R1YEHF9KYPM1NN09HMP7P0U7CCVTM3RNLBCSMCVQAJ4EA84ZTPXWEKOA8327TKU27BA8LDXZM3EUBGK7LWP8CZT8H7FZW26LR5Y6QRG6H' where id=82; -update noar ti set v0='Z1AFFAFJ8HEXQ6KWLXHTWSQME27Q0UPVYC5F0UP14OWUINMNXPLM0AIYR1VOCWF6MOQRNZ2ESBK6OD5Y3YCIZLKEHS6RX0K1U6JSGEGKODHSRHOZ9WKVKSPP11U9HHQH7W5IUXRWINAT837WDUXVOQF9R1YEHF9KYPM1NN09HMP7P0U7CCVTM3RNLBCSMCVQAJ4EA84ZTPXWEKOA8327TKU27BA8LDXZM3EUBGK7LWP8CZT8H7FZW26LR5Y6QRG6H' where id=82; -update noar tt set v1='S4NWT2J6P6SYKFPVUIJ3KYGIVY7H2354FD29C0C7GQ3FNBA998IT9GNPHK1PL7TR3T72MYLN76PQ73YUPW3VF3PD64B708NZMZ4KW85WFL3ESORTNAKGXEAOEAF5J8N0ACZMZRY3UTMI7OO3G9DMRUXCJHQ95944VX8QN4PD0L3AQFD847I425R5VSOGQ9XVKYKU7W8A7LZW2R6VY77VLVSULK0OOPZK4S0Y36MEIESDA7I4XEUT8Q3OF0CD7A9IZ' where id=82; -update noar ti set v1='S4NWT2J6P6SYKFPVUIJ3KYGIVY7H2354FD29C0C7GQ3FNBA998IT9GNPHK1PL7TR3T72MYLN76PQ73YUPW3VF3PD64B708NZMZ4KW85WFL3ESORTNAKGXEAOEAF5J8N0ACZMZRY3UTMI7OO3G9DMRUXCJHQ95944VX8QN4PD0L3AQFD847I425R5VSOGQ9XVKYKU7W8A7LZW2R6VY77VLVSULK0OOPZK4S0Y36MEIESDA7I4XEUT8Q3OF0CD7A9IZ' where id=82; -update noar tt set v2='FTICG6DF3C5TLX9AIU7AGG28LDH5JM36AY5I6CM6Q5ZPPCK0ESHK2YII7IZ4USI6KEW9YBW1FI95C367O7JVU3JSFJJX7JMT2E2TLXMP5ZOLHAOD0H5UUZQRLFPU83V6TRLZ6DSR9BG97HHK4ENQ926FJD01H7OTC4F11PBAMB40RUGJT9KQUJU5MGQY4WE21MD09KVKQWFQS3334C2QMF1C9MYT11P6TGYOT77W96F8HDS84SZJGP1W7EVCM9Y1D' where id=82; -update noar ti set v2='FTICG6DF3C5TLX9AIU7AGG28LDH5JM36AY5I6CM6Q5ZPPCK0ESHK2YII7IZ4USI6KEW9YBW1FI95C367O7JVU3JSFJJX7JMT2E2TLXMP5ZOLHAOD0H5UUZQRLFPU83V6TRLZ6DSR9BG97HHK4ENQ926FJD01H7OTC4F11PBAMB40RUGJT9KQUJU5MGQY4WE21MD09KVKQWFQS3334C2QMF1C9MYT11P6TGYOT77W96F8HDS84SZJGP1W7EVCM9Y1D' where id=82; -update noar tt set v3='Y3MGK8MKGSBMROFRXDIMDWRYAJWGPQQ8NWVAHYQX4AWKTAL1FPJKQNTQGRZCMH5WJMP9W4AB2C3270F03CDB082Z2N2X8G1CJ8Y9KA6QKG0Y3CUYSM13E88OV9CZP9LGK449XU2SIRPMLY5LD1U15H4ED6BDJNHQI1Q7SO8XFCKR07UEKFZ2VNWDPXSQ5D8EPI4LN90XDLK616GH693F5YZ20DQOJ3VN31M6ZDXH333ERFSHJ9OSMFEMHBR7TSCMP' where id=82; -update noar ti set v3='Y3MGK8MKGSBMROFRXDIMDWRYAJWGPQQ8NWVAHYQX4AWKTAL1FPJKQNTQGRZCMH5WJMP9W4AB2C3270F03CDB082Z2N2X8G1CJ8Y9KA6QKG0Y3CUYSM13E88OV9CZP9LGK449XU2SIRPMLY5LD1U15H4ED6BDJNHQI1Q7SO8XFCKR07UEKFZ2VNWDPXSQ5D8EPI4LN90XDLK616GH693F5YZ20DQOJ3VN31M6ZDXH333ERFSHJ9OSMFEMHBR7TSCMP' where id=82; -update noar tt set v0='OTMLOVFELN5DWW9P8ZQYJ3DGFDA5MQVEIC42HBGGXZ5TYKZR9RGJSJGNAK7IYPTMUIFDOLGWCSVF61H2JLO8DIRSR1MBOEUMGS7NZKKU5IK74JQATCK7KP3D7M3XH11X8TL0014PT7XER24EC3VLW8A0UF9HNSZHNO5O0JWIJI6FJSBP1ZKOIG2V6ZCLE8K2C8C5HXZN2RI69N4IH7YW09INDH16B9YA5ZJE3D4QW9OVFKX3P44V0PO7CKVTF7XOC' where id=83; -update noar ti set v0='OTMLOVFELN5DWW9P8ZQYJ3DGFDA5MQVEIC42HBGGXZ5TYKZR9RGJSJGNAK7IYPTMUIFDOLGWCSVF61H2JLO8DIRSR1MBOEUMGS7NZKKU5IK74JQATCK7KP3D7M3XH11X8TL0014PT7XER24EC3VLW8A0UF9HNSZHNO5O0JWIJI6FJSBP1ZKOIG2V6ZCLE8K2C8C5HXZN2RI69N4IH7YW09INDH16B9YA5ZJE3D4QW9OVFKX3P44V0PO7CKVTF7XOC' where id=83; -update noar tt set v1='0MP1KZYYN416GXEW0YIGMX1DK05PNGEJHH0WAK03J64VVDCKPB7675TF8AZTESKARPVLHCHT9BGVCM12QT7OZ2IWIB87G7NU0O02VIW5L3VSWFIG2MIG82O8RI7VQ696LQAWS4XI8R97EJK0ZF5I6V564A15L8YV5UDPQAEPFJKQMLZ9BBX961E3TGUUAKGDPVNU49ILB4BOTIIKYR7WXCXY3OTD92Q9F8PS3I81DKM0FQDQCKDGSHHNV94ZOFD8T' where id=83; -update noar ti set v1='0MP1KZYYN416GXEW0YIGMX1DK05PNGEJHH0WAK03J64VVDCKPB7675TF8AZTESKARPVLHCHT9BGVCM12QT7OZ2IWIB87G7NU0O02VIW5L3VSWFIG2MIG82O8RI7VQ696LQAWS4XI8R97EJK0ZF5I6V564A15L8YV5UDPQAEPFJKQMLZ9BBX961E3TGUUAKGDPVNU49ILB4BOTIIKYR7WXCXY3OTD92Q9F8PS3I81DKM0FQDQCKDGSHHNV94ZOFD8T' where id=83; -update noar tt set v2='9CRFIG074L6A6UIQRVPP5GFXXHPFN4SQI26AFPNRIYI49H5UNA63CXD39QIT8GW3U8V9DKPNGW4WJY9CMKL7K32P559F5HHC7DOD79V8FD8CQ8D2P4VZJTJCHMVAADTTO32XX7WBU9EXTI21XMU8QR4MPQN5SH29V0IOW2BUI3AHIXSYPV95RSMREPIRN29R6XVU9N3B9G7RQEX0I39LTVDYBEYGLTPE8SF7KJCJS9J9ODRJSTSKA4ULXG7ILKACZ' where id=83; -update noar ti set v2='9CRFIG074L6A6UIQRVPP5GFXXHPFN4SQI26AFPNRIYI49H5UNA63CXD39QIT8GW3U8V9DKPNGW4WJY9CMKL7K32P559F5HHC7DOD79V8FD8CQ8D2P4VZJTJCHMVAADTTO32XX7WBU9EXTI21XMU8QR4MPQN5SH29V0IOW2BUI3AHIXSYPV95RSMREPIRN29R6XVU9N3B9G7RQEX0I39LTVDYBEYGLTPE8SF7KJCJS9J9ODRJSTSKA4ULXG7ILKACZ' where id=83; -update noar tt set v3='VE01PQ912HNRHFOE9D944S39B7OISUTX4XQ0KMH24FOJIQF2EYBP4OHOQY6Q7MIEIN0ST2GVR9QQPTLIEKPZ7HHAO4UIQYATG7N2QF9RZIAQA4GCRRFXM5PE0H2AG4HPDLG4RILYMB44VVZ6J7092Q1UVBXUC090R9A6OPJWXB657XCT8CBN13MFPQ16I22D6W6X4C1RCBI73KRH2Q6LGLU611BXUWQKX4TGFK2TS76KVWHMRCOLYQ4ZVRLQLO4P9' where id=83; -update noar ti set v3='VE01PQ912HNRHFOE9D944S39B7OISUTX4XQ0KMH24FOJIQF2EYBP4OHOQY6Q7MIEIN0ST2GVR9QQPTLIEKPZ7HHAO4UIQYATG7N2QF9RZIAQA4GCRRFXM5PE0H2AG4HPDLG4RILYMB44VVZ6J7092Q1UVBXUC090R9A6OPJWXB657XCT8CBN13MFPQ16I22D6W6X4C1RCBI73KRH2Q6LGLU611BXUWQKX4TGFK2TS76KVWHMRCOLYQ4ZVRLQLO4P9' where id=83; -update noar tt set v0='ZJB6MJMV1LCAKQIJ5JYA6YCNIH1QOLIG5DDLMMXBVJ2NQHKNRIUA0PT2VBB5YBVCRF9TZ0OG7BYOTVAI6XT6GW0GAIQ8MN0RC3S1OIEYK1VBXUEB76AVATQ0HI9GB4T3DWF8AJJFCJ8HQ82ISMHHOKUJTXEO0MXDJWKPCZMR50HNX3H4VDOUBISUKARQRVK54ZNLO44KIW7S2S2YLGRM9YXD37IV33KEYIBN3XQBNMIPCXE3BIGJWS34N61B8J73V' where id=84; -update noar ti set v0='ZJB6MJMV1LCAKQIJ5JYA6YCNIH1QOLIG5DDLMMXBVJ2NQHKNRIUA0PT2VBB5YBVCRF9TZ0OG7BYOTVAI6XT6GW0GAIQ8MN0RC3S1OIEYK1VBXUEB76AVATQ0HI9GB4T3DWF8AJJFCJ8HQ82ISMHHOKUJTXEO0MXDJWKPCZMR50HNX3H4VDOUBISUKARQRVK54ZNLO44KIW7S2S2YLGRM9YXD37IV33KEYIBN3XQBNMIPCXE3BIGJWS34N61B8J73V' where id=84; -update noar tt set v1='VHFC8M5QVI85GA5BBKL57FLV4OWT1WF3AOQTVPDNS5KTSSCG1M5YR58AFFOA7XOIVMKCUOG7VAKUYH0QPPD068FTLQ03RU2FGQXM126NMTL6CQHDAXGCV7EKN7VPCPKQWCI4MRCV0WUX1NNG2ZCID4LQHRHAQA95542AV8COA35FUO0GMQ37L62HBZ3VFG369W4KTNPYR4TR8QM6JGQT6RTZW8KJRUO51S6L45OLBFWY6KF6BNDFRU2G59E0NM2GF' where id=84; -update noar ti set v1='VHFC8M5QVI85GA5BBKL57FLV4OWT1WF3AOQTVPDNS5KTSSCG1M5YR58AFFOA7XOIVMKCUOG7VAKUYH0QPPD068FTLQ03RU2FGQXM126NMTL6CQHDAXGCV7EKN7VPCPKQWCI4MRCV0WUX1NNG2ZCID4LQHRHAQA95542AV8COA35FUO0GMQ37L62HBZ3VFG369W4KTNPYR4TR8QM6JGQT6RTZW8KJRUO51S6L45OLBFWY6KF6BNDFRU2G59E0NM2GF' where id=84; -update noar tt set v2='CISL18PE36Z2RYM3TMO4S91FF0PQDRLL0CSDUYBFUDDFNJAS38MX1XZJKYHMTETY7BNV8Z9TVCS5RXI1A1FP8VYAQ8KNDSZNY7WIVDOC4WATSO5AGX7K0WZCEZM2U060TDE0TL3JJLFVT7CPLOY1JP57X12R7NHHQS4CX9DH7NUAK13LJSCBVGE9BAVFFT1I1GA1TTLXFUG0B15TACPL3FINNS48HM3UVIQ90ELSWRRZUBNTTNVKAL6KEVO87WBZS' where id=84; -update noar ti set v2='CISL18PE36Z2RYM3TMO4S91FF0PQDRLL0CSDUYBFUDDFNJAS38MX1XZJKYHMTETY7BNV8Z9TVCS5RXI1A1FP8VYAQ8KNDSZNY7WIVDOC4WATSO5AGX7K0WZCEZM2U060TDE0TL3JJLFVT7CPLOY1JP57X12R7NHHQS4CX9DH7NUAK13LJSCBVGE9BAVFFT1I1GA1TTLXFUG0B15TACPL3FINNS48HM3UVIQ90ELSWRRZUBNTTNVKAL6KEVO87WBZS' where id=84; -update noar tt set v3='ISGODRA200H08GXEPOU3MXIV4IJGMDUKIQCYL2QDVM9XJFUSNP0X5MGER3IKQ6D5J6E6DEPEZW8ICTGP6XNYSKCY52YVZ504RWKCABB94161STQWB5SDP1TJYAKRV6BGD6CUFTE9RE6CVYJUZ3PHWM503LA8HQ9OE8XGME5DP787BBIM8M3TRTBNGE1L84G7UK0SFJJY404YL5CT1WCLUHTIJ0UT5U5U5FRIRT9L45X71KL93SLK2VUNM66Y8BIMA' where id=84; -update noar ti set v3='ISGODRA200H08GXEPOU3MXIV4IJGMDUKIQCYL2QDVM9XJFUSNP0X5MGER3IKQ6D5J6E6DEPEZW8ICTGP6XNYSKCY52YVZ504RWKCABB94161STQWB5SDP1TJYAKRV6BGD6CUFTE9RE6CVYJUZ3PHWM503LA8HQ9OE8XGME5DP787BBIM8M3TRTBNGE1L84G7UK0SFJJY404YL5CT1WCLUHTIJ0UT5U5U5FRIRT9L45X71KL93SLK2VUNM66Y8BIMA' where id=84; -update noar tt set v0='49LF2XJUH54TIKVSMLM741OLVFYVO8GPNZPVR3M7U3UO5989IUIOBISZCVF9J58Q1B5EJCGU8QWWNLHA3Y80947DMV9KNLXPO0U02PF3QCZU37B2QL1UL0U5O9GXBQDRGFC5HFMA50ME7GUH4K9IIKQHYA8STE1OR2JYL0KNBNN557XPIIV5TI4C11B1Y3X7UI2XBTI9CI0VAOHJXEO2V761L215HFIW20W547OPHNOAPFGYSWNEP09JTFEPI0EIP' where id=85; -update noar ti set v0='49LF2XJUH54TIKVSMLM741OLVFYVO8GPNZPVR3M7U3UO5989IUIOBISZCVF9J58Q1B5EJCGU8QWWNLHA3Y80947DMV9KNLXPO0U02PF3QCZU37B2QL1UL0U5O9GXBQDRGFC5HFMA50ME7GUH4K9IIKQHYA8STE1OR2JYL0KNBNN557XPIIV5TI4C11B1Y3X7UI2XBTI9CI0VAOHJXEO2V761L215HFIW20W547OPHNOAPFGYSWNEP09JTFEPI0EIP' where id=85; -update noar tt set v1='8GL79SB1XRSAZHYVP7FPYSH1N1XHMWX7JYJXCOQQKK7Q09MSN6792UST3PTXCIPAEHOC5NYMLVXOII6BJU81U4RQR2TBL5XP1OGIC9LFN4388OSJJYUIUHP1PVH6M65O23X0U8ALCHD8OGA3S69QA23R6L39YWZZ62HCDDZGBFSLP9V874M01VYPWQCY2WFIH32NTWRZ4Q069EFOA6MPNTOT6YT0OPEDHBTPT435AG61V723UX8O03QBGQQL44M1Y' where id=85; -update noar ti set v1='8GL79SB1XRSAZHYVP7FPYSH1N1XHMWX7JYJXCOQQKK7Q09MSN6792UST3PTXCIPAEHOC5NYMLVXOII6BJU81U4RQR2TBL5XP1OGIC9LFN4388OSJJYUIUHP1PVH6M65O23X0U8ALCHD8OGA3S69QA23R6L39YWZZ62HCDDZGBFSLP9V874M01VYPWQCY2WFIH32NTWRZ4Q069EFOA6MPNTOT6YT0OPEDHBTPT435AG61V723UX8O03QBGQQL44M1Y' where id=85; -update noar tt set v2='80XLWF4LZ3GKQKU5M1MXKQMX8LXOKMJ5UAFGNSIKACLN05L0I1QYYKZGOWVJMLZYYM71732QLIWQMQWPUA0GBRYFDV8JPRLJS8STUIYTKRVDYHNVNX4VISJBPB0RHRJ9TVJ7GWG8LTEQEBLGYBR402XS7H007G50PZG2X4QLOUAH8YCO9TIY0F26VTZFI2B8LLMUD11EV0C87RKYK0XZ9IFG4WBXY4MS7DEZYLF1M9S7FU0YG13Y681JM51VSF47Q' where id=85; -update noar ti set v2='80XLWF4LZ3GKQKU5M1MXKQMX8LXOKMJ5UAFGNSIKACLN05L0I1QYYKZGOWVJMLZYYM71732QLIWQMQWPUA0GBRYFDV8JPRLJS8STUIYTKRVDYHNVNX4VISJBPB0RHRJ9TVJ7GWG8LTEQEBLGYBR402XS7H007G50PZG2X4QLOUAH8YCO9TIY0F26VTZFI2B8LLMUD11EV0C87RKYK0XZ9IFG4WBXY4MS7DEZYLF1M9S7FU0YG13Y681JM51VSF47Q' where id=85; -update noar tt set v3='I55NQ0DV2O5PAH8W81QUYVBS4F9BDG14MHNREC30TY30OFDGZ5A5IY43AT7A9WTXTJIIQ0IERJH22JKGE61AV1C016YWUQZSNS472WOC5QJ2Z030XSHEGBI2RSROEX0G6TH7L71FDZA0Q0HVOS4M2KBBEEM8K0WJUI1OH160ZYG2DEUXZADVI7CHLI6G904PCKH55CGBRIW8EGQNMRN1UOKR205EXFLUT17UH03MDTVPWQ02NUUBH7LS41TIHHY4W' where id=85; -update noar ti set v3='I55NQ0DV2O5PAH8W81QUYVBS4F9BDG14MHNREC30TY30OFDGZ5A5IY43AT7A9WTXTJIIQ0IERJH22JKGE61AV1C016YWUQZSNS472WOC5QJ2Z030XSHEGBI2RSROEX0G6TH7L71FDZA0Q0HVOS4M2KBBEEM8K0WJUI1OH160ZYG2DEUXZADVI7CHLI6G904PCKH55CGBRIW8EGQNMRN1UOKR205EXFLUT17UH03MDTVPWQ02NUUBH7LS41TIHHY4W' where id=85; -update noar tt set v0='KMITW1TN044QC5VOFYY0Q5EBI6ALKUUUBDMZBLP4PVG48MGZ8WD84ASK5M2BSDQVD53GTTTOZZVGU81CDBTLZFQOM0XYNLHH4EPGBSB6IV8F6QBN5MJ4G7Q57EDOTJ2NZIOO9UB0365DSCU7TQP3TD7UARAUF3M6TS008QPZIKKV24ZJ7NEQ349A8J62NM15JPL5UO3KXYEVH66SAKS96FEVNF8QH9GQ15CO4WKDS7L0B4ELYS7UMAHNBD382WPU6' where id=86; -update noar ti set v0='KMITW1TN044QC5VOFYY0Q5EBI6ALKUUUBDMZBLP4PVG48MGZ8WD84ASK5M2BSDQVD53GTTTOZZVGU81CDBTLZFQOM0XYNLHH4EPGBSB6IV8F6QBN5MJ4G7Q57EDOTJ2NZIOO9UB0365DSCU7TQP3TD7UARAUF3M6TS008QPZIKKV24ZJ7NEQ349A8J62NM15JPL5UO3KXYEVH66SAKS96FEVNF8QH9GQ15CO4WKDS7L0B4ELYS7UMAHNBD382WPU6' where id=86; -update noar tt set v1='937DKZR6XCWJDJ4ZERII10RY8G7QCJSUBMVG49BZKIXBKYNQCZSN5EZNNXCAX11WO18MSYBACNGXVE5186PW1JMH5HSTCI3D4AILVS607E88E5CIO1NZ5P4V4JDFLS5S1FJ6I5PU80B75DYXH2QI0CKAQVE0N6YJDX4ZO7CBQECRRZ80XKHASI2IHFKGQVUMHOCM2UQ5AF28YSV47K7TTQO5MTEMG6K5F0XB2DDM773ABMIUKXMSU75CNK70R5K5S' where id=86; -update noar ti set v1='937DKZR6XCWJDJ4ZERII10RY8G7QCJSUBMVG49BZKIXBKYNQCZSN5EZNNXCAX11WO18MSYBACNGXVE5186PW1JMH5HSTCI3D4AILVS607E88E5CIO1NZ5P4V4JDFLS5S1FJ6I5PU80B75DYXH2QI0CKAQVE0N6YJDX4ZO7CBQECRRZ80XKHASI2IHFKGQVUMHOCM2UQ5AF28YSV47K7TTQO5MTEMG6K5F0XB2DDM773ABMIUKXMSU75CNK70R5K5S' where id=86; -update noar tt set v2='6GW2VIOWKEJ8ESVVTRMGODL2SNCEIN8DYTZ7BN1YAJNON5CIC46FH0Z52WBYO7CYAE11MPQ9JU0J2PQVDRCIZN5X68W1M5DDD7CYNYFKFH2A466ROLZYQLFS7NLK9MAVG004PDDGSYEG3YDQHGCFCN7AYXO3MJ12I99ERIOK5HC7HTYHHNHIARE3FJHUF4KYSPEZZE6XU81GD2DN30ZIPJK5RGT3OHWYTD9YHQFYKGQUZCFRHYKF66HU6784Q3UY0' where id=86; -update noar ti set v2='6GW2VIOWKEJ8ESVVTRMGODL2SNCEIN8DYTZ7BN1YAJNON5CIC46FH0Z52WBYO7CYAE11MPQ9JU0J2PQVDRCIZN5X68W1M5DDD7CYNYFKFH2A466ROLZYQLFS7NLK9MAVG004PDDGSYEG3YDQHGCFCN7AYXO3MJ12I99ERIOK5HC7HTYHHNHIARE3FJHUF4KYSPEZZE6XU81GD2DN30ZIPJK5RGT3OHWYTD9YHQFYKGQUZCFRHYKF66HU6784Q3UY0' where id=86; -update noar tt set v3='7WVTO26UVFWPTATT9MJFCHJBKR2ZMOADMLUGV7C427LCWJ7EQ57X201KIFPPPWAXRLRNL0YJ91YB3O0B4W4YXQ3CYA7SVV71GNY6VDGKAIF2HDSLIX3PGQWMKHWQIY48EQ9FMCFC33H22W4FW4EL34SL5DE0MIOFL6RND20MAEKPO8PATTIHREMVF1W5GG3ILSH7D7IYCB73CL2L63QJ57QCYQVQY3RRVAKKE368VFFHJXO9THMLZNL3DP52YTOWX' where id=86; -update noar ti set v3='7WVTO26UVFWPTATT9MJFCHJBKR2ZMOADMLUGV7C427LCWJ7EQ57X201KIFPPPWAXRLRNL0YJ91YB3O0B4W4YXQ3CYA7SVV71GNY6VDGKAIF2HDSLIX3PGQWMKHWQIY48EQ9FMCFC33H22W4FW4EL34SL5DE0MIOFL6RND20MAEKPO8PATTIHREMVF1W5GG3ILSH7D7IYCB73CL2L63QJ57QCYQVQY3RRVAKKE368VFFHJXO9THMLZNL3DP52YTOWX' where id=86; -update noar tt set v0='TVTAELH553TRH2LW915RRLWWLUZQ7A851IW85T7PFWSISU6KBRQFNNU04MCH4FRE1IR6NW9FYOFE3Q06NNVKZJYVTA8F7GFBE4XQBR7KX3COQS64AAIY261BNYH6IRQGVYYMV4ZVH48NDBTVDBHIN9LHT0CT9RCFRSA8Q1IO8RGV683VO4Y3OFJJ22TNVHVKCBIPMNINY6PXQLG6FNEU2KULNIJK2PTPSGCMUSAYP3C7650J3CX2XYS52OKI7DK9I' where id=87; -update noar ti set v0='TVTAELH553TRH2LW915RRLWWLUZQ7A851IW85T7PFWSISU6KBRQFNNU04MCH4FRE1IR6NW9FYOFE3Q06NNVKZJYVTA8F7GFBE4XQBR7KX3COQS64AAIY261BNYH6IRQGVYYMV4ZVH48NDBTVDBHIN9LHT0CT9RCFRSA8Q1IO8RGV683VO4Y3OFJJ22TNVHVKCBIPMNINY6PXQLG6FNEU2KULNIJK2PTPSGCMUSAYP3C7650J3CX2XYS52OKI7DK9I' where id=87; -update noar tt set v1='MFOO4B51J9HDOBT48ARQ117ZJYM7ENIF4XAKA7F5ZRR0U5E8H5SSD2CO2GD9RPOPHPY7CVX56JQKNWC4L9ZVSR6NFRCSQYOFTQLQP4S9UTNG8DFGAD72EO4KJBWKEELPO59UY6Q3ERK80NQATGRKT8OUWSBC3JBJ1QPQ5C3ZEWJA3O7OI9RDRJ66YZPUVXIWMCWDJI7H2SBMBMYHMMBLFSETUWA94H7ZBRANR3AYMX06IMI4ZFGDE1EGY7QQDF9BN' where id=87; -update noar ti set v1='MFOO4B51J9HDOBT48ARQ117ZJYM7ENIF4XAKA7F5ZRR0U5E8H5SSD2CO2GD9RPOPHPY7CVX56JQKNWC4L9ZVSR6NFRCSQYOFTQLQP4S9UTNG8DFGAD72EO4KJBWKEELPO59UY6Q3ERK80NQATGRKT8OUWSBC3JBJ1QPQ5C3ZEWJA3O7OI9RDRJ66YZPUVXIWMCWDJI7H2SBMBMYHMMBLFSETUWA94H7ZBRANR3AYMX06IMI4ZFGDE1EGY7QQDF9BN' where id=87; -update noar tt set v2='E2KIABUGKRBTPRUHNUG0TP9E8AKDCBX4TDJJR87Z6ADS0BA3CZOY3F5PAQ9GNNLPEHIQYP42D3UFOC7WN55Z7A3LA02KT54RV1FG05GW9C7G98ZJED7IVU2E0DAZBR3YYT69IR4TZGN4WLW8H4CRJ4J82SVA58VOUI6ZQTMEC94NUO2G4BKZW3S1VAW1T714I4PB7DM0SCCGIHS0SVR7WR7WIDN4MAB5ZXF37WR0RM9V65PQHXJF1BGUEUS05C0EX' where id=87; -update noar ti set v2='E2KIABUGKRBTPRUHNUG0TP9E8AKDCBX4TDJJR87Z6ADS0BA3CZOY3F5PAQ9GNNLPEHIQYP42D3UFOC7WN55Z7A3LA02KT54RV1FG05GW9C7G98ZJED7IVU2E0DAZBR3YYT69IR4TZGN4WLW8H4CRJ4J82SVA58VOUI6ZQTMEC94NUO2G4BKZW3S1VAW1T714I4PB7DM0SCCGIHS0SVR7WR7WIDN4MAB5ZXF37WR0RM9V65PQHXJF1BGUEUS05C0EX' where id=87; -update noar tt set v3='CMG6KAEA2E3M3DCXKBAMGGG4TXHWTP6QHHKJ3CY1T2AKUBP2DPOF3JQXBRORE11J6X1QHY16J5M5OG74W1VE78ZVCD4UWDGWC5PVB5Y9YVWQ3ZPHFFW7WZN79S49FBDFQQGRUUTL805V8I5A1R6L3N2AJITY8NIVZQ1BFBV7X2HV01YAOBXSBXO1QMQYKL74RMFGCWYDWTIK02YM09AV4SLJPRW4IS7ITXB0P9YD7ITGBKTKY2HG5OM3Q633ZQ282' where id=87; -update noar ti set v3='CMG6KAEA2E3M3DCXKBAMGGG4TXHWTP6QHHKJ3CY1T2AKUBP2DPOF3JQXBRORE11J6X1QHY16J5M5OG74W1VE78ZVCD4UWDGWC5PVB5Y9YVWQ3ZPHFFW7WZN79S49FBDFQQGRUUTL805V8I5A1R6L3N2AJITY8NIVZQ1BFBV7X2HV01YAOBXSBXO1QMQYKL74RMFGCWYDWTIK02YM09AV4SLJPRW4IS7ITXB0P9YD7ITGBKTKY2HG5OM3Q633ZQ282' where id=87; -update noar tt set v0='JWGXVKTG89T8MXB18UHWQ24QW8TH27MIVIHCE453AXY874SOQI7ODP58C8069DDCFKJWDLWSDVR8P8KR92PG6XM2I62W6NOLBFJJE97WNCKICXCDZNCR52190LM1H28W6DKIH3MH6TPNA2L1AH1DOTDYEZDZA2NNE1ELHSLAE5QQSNMTDOV216FTHDUSXUGCBKZW5D5HJBOBZP2K5RVVCNZ6D9DX0UHDWBKLYSY233LN78HVLJC40ERONQ3QWIAG6' where id=88; -update noar ti set v0='JWGXVKTG89T8MXB18UHWQ24QW8TH27MIVIHCE453AXY874SOQI7ODP58C8069DDCFKJWDLWSDVR8P8KR92PG6XM2I62W6NOLBFJJE97WNCKICXCDZNCR52190LM1H28W6DKIH3MH6TPNA2L1AH1DOTDYEZDZA2NNE1ELHSLAE5QQSNMTDOV216FTHDUSXUGCBKZW5D5HJBOBZP2K5RVVCNZ6D9DX0UHDWBKLYSY233LN78HVLJC40ERONQ3QWIAG6' where id=88; -update noar tt set v1='TOFNGY7WGDL6P7700N7RF9776HR6ADJSOBTXTGVR4Z90WH8PMFHR91OY125A6INJDSYEW0I28TNP12B0HBHQWWUMK8JAQ3Q9EHXP6ZCOX82M6AFX493ZW2WJ5CYUVRGMEW70KRX22YWAVBWOE5LPZKX0L6MM1J9MMRYKKIAKPQJJF2XW4KYGF0NM4FW0JLXVYMV9VK060T33CMBX3X4LMX4F641BQBZWYKVIR5NGQAU8ZANPJS6HQNYRSXAFQ7YD4' where id=88; -update noar ti set v1='TOFNGY7WGDL6P7700N7RF9776HR6ADJSOBTXTGVR4Z90WH8PMFHR91OY125A6INJDSYEW0I28TNP12B0HBHQWWUMK8JAQ3Q9EHXP6ZCOX82M6AFX493ZW2WJ5CYUVRGMEW70KRX22YWAVBWOE5LPZKX0L6MM1J9MMRYKKIAKPQJJF2XW4KYGF0NM4FW0JLXVYMV9VK060T33CMBX3X4LMX4F641BQBZWYKVIR5NGQAU8ZANPJS6HQNYRSXAFQ7YD4' where id=88; -update noar tt set v2='J185Q4TTRTGJCGUZ8ELJW9E6TXO1I0ANHSAINO8BW6M3NVZIZBG2TX5FE1OSRHRDVCI4YW9RL2MAM8QKXRC7RUPFZHZA867R6572OUMYYDD7Y6KHN3E3G77H4BAR224NBMJ1RRTKRABH5KGPYKZQRMAPQE5EECIPDGQ3T1RUYUIMJHA32G3RRXVXUMBJOS6RCSH3HYMK0IUOW1YCBDRIF79Q3V7S6PZOG0M3TRZV3B2HP6P35G2D4KZKTTQ8ZR1R9' where id=88; -update noar ti set v2='J185Q4TTRTGJCGUZ8ELJW9E6TXO1I0ANHSAINO8BW6M3NVZIZBG2TX5FE1OSRHRDVCI4YW9RL2MAM8QKXRC7RUPFZHZA867R6572OUMYYDD7Y6KHN3E3G77H4BAR224NBMJ1RRTKRABH5KGPYKZQRMAPQE5EECIPDGQ3T1RUYUIMJHA32G3RRXVXUMBJOS6RCSH3HYMK0IUOW1YCBDRIF79Q3V7S6PZOG0M3TRZV3B2HP6P35G2D4KZKTTQ8ZR1R9' where id=88; -update noar tt set v3='NX9U9U7LCTO2XCGC1YP7VZ9CI4OYSZ5P0DH1PCP47GNC0P2IE9R08N1IQJOFAK3XK37YYUYBS7X5EQDUU9MXTEJ13230SP3K1QMAHPYMRYPO7TBI4NFPAJAGT54ZF47OH9Y82EAQYMZYNB3O24PVT1EKZQBK3II3SJ9Q8VPFJ2B17W32C5AG02THSREHO9P5VP9HBLZGLJCQF9Y65IRA0UPEBLERXZHIS7I2RSVC3H7J8RCI53Q35MBYDMP2UEVPV' where id=88; -update noar ti set v3='NX9U9U7LCTO2XCGC1YP7VZ9CI4OYSZ5P0DH1PCP47GNC0P2IE9R08N1IQJOFAK3XK37YYUYBS7X5EQDUU9MXTEJ13230SP3K1QMAHPYMRYPO7TBI4NFPAJAGT54ZF47OH9Y82EAQYMZYNB3O24PVT1EKZQBK3II3SJ9Q8VPFJ2B17W32C5AG02THSREHO9P5VP9HBLZGLJCQF9Y65IRA0UPEBLERXZHIS7I2RSVC3H7J8RCI53Q35MBYDMP2UEVPV' where id=88; -update noar tt set v0='XBYXZ8MFXPU5SVC7HVP9GEIU9O3S0NHTVMTMX55BQAHA1WF65U5W52WCXSIORXUIR71XQ28N0UKKY80WDIOYKO2SKY3KD2NAC3CWTF5ZDPEFWTASQ9P2RJSZ5UGOTRPKNAGMIUNKWS46WV33Q2HJ7ZH7EUBX83P87FWDRNYGFTKNLH0HYIK10HXWSZP2AXFAOKNEOQI21UFGALXA9OSZ47QNVCLRIAL9QN0VOAYBW33SJNS7B8LP27DW8IMDKNZ55' where id=89; -update noar ti set v0='XBYXZ8MFXPU5SVC7HVP9GEIU9O3S0NHTVMTMX55BQAHA1WF65U5W52WCXSIORXUIR71XQ28N0UKKY80WDIOYKO2SKY3KD2NAC3CWTF5ZDPEFWTASQ9P2RJSZ5UGOTRPKNAGMIUNKWS46WV33Q2HJ7ZH7EUBX83P87FWDRNYGFTKNLH0HYIK10HXWSZP2AXFAOKNEOQI21UFGALXA9OSZ47QNVCLRIAL9QN0VOAYBW33SJNS7B8LP27DW8IMDKNZ55' where id=89; -update noar tt set v1='XK4YWCJUAN8ZN7KLLZTFSVWRM1L99FJNSG3UGFPPB9DGX5MIQZ27LAYSEB2MCSQMKC0Q9GSDYRVVTJAA8MJTYRON3O142CV1HMDXLGNSNMZNOD4UFWT5SXXULZBG2T5X7396GZAN5CWALNBBYBTPZRZNZBYCIA2VCHI8RR8D7DP5UV1ET3CEJHH4WLS8C8S8DKMM4QXNH32JE06T7FVXWX8MZHLBZNKJ9R33IO9MO46DMB271IO9SCUON3GNRLYNM' where id=89; -update noar ti set v1='XK4YWCJUAN8ZN7KLLZTFSVWRM1L99FJNSG3UGFPPB9DGX5MIQZ27LAYSEB2MCSQMKC0Q9GSDYRVVTJAA8MJTYRON3O142CV1HMDXLGNSNMZNOD4UFWT5SXXULZBG2T5X7396GZAN5CWALNBBYBTPZRZNZBYCIA2VCHI8RR8D7DP5UV1ET3CEJHH4WLS8C8S8DKMM4QXNH32JE06T7FVXWX8MZHLBZNKJ9R33IO9MO46DMB271IO9SCUON3GNRLYNM' where id=89; -update noar tt set v2='A3QKPK822VDQ5085BZHJE918BJI27EQK2F44LGCJGKZKOYR0ZK153ZSAO0T5WD54LIDIXQ44A1XVS9BTBQC3OTNNA79PGDXAUEE9TG2Y2UYUA8QWK7DN5ZQ6L678TK32DXEOEZXW9LEAZSOO5LNMUQSALQNI8O8NNZU4NVYYWLIYRPM7WZVG6LQCLJGD33NEI2PR09TBW54OANH13UTBAGJY2MBRTJW97GVRMP76YDFZPMGH4VOKOPB9EE86215A0' where id=89; -update noar ti set v2='A3QKPK822VDQ5085BZHJE918BJI27EQK2F44LGCJGKZKOYR0ZK153ZSAO0T5WD54LIDIXQ44A1XVS9BTBQC3OTNNA79PGDXAUEE9TG2Y2UYUA8QWK7DN5ZQ6L678TK32DXEOEZXW9LEAZSOO5LNMUQSALQNI8O8NNZU4NVYYWLIYRPM7WZVG6LQCLJGD33NEI2PR09TBW54OANH13UTBAGJY2MBRTJW97GVRMP76YDFZPMGH4VOKOPB9EE86215A0' where id=89; -update noar tt set v3='AXB04X27LL84R6APRE2WD5ZQDOT5C54WDITI67PKM44FI7JL1T8JT9KCIWDDHOLRGQWUV02DPWQC0LRP6QJTQDZNAONKKZNJYKU4PHZ3WN7D835VMWXYSFXJ1LYDX4W54MVV7664V1WY5LTSDPTNUF8JSFWEOSXRPQ8G78K47FE1GJKZIBUQ3DAEARX1NM2GLB4UMA7WO0J5AW85RY2O186RVJ1P6WDEQICU0Z6D4S68GA1P0U9RN2X7YTVI3WB57' where id=89; -update noar ti set v3='AXB04X27LL84R6APRE2WD5ZQDOT5C54WDITI67PKM44FI7JL1T8JT9KCIWDDHOLRGQWUV02DPWQC0LRP6QJTQDZNAONKKZNJYKU4PHZ3WN7D835VMWXYSFXJ1LYDX4W54MVV7664V1WY5LTSDPTNUF8JSFWEOSXRPQ8G78K47FE1GJKZIBUQ3DAEARX1NM2GLB4UMA7WO0J5AW85RY2O186RVJ1P6WDEQICU0Z6D4S68GA1P0U9RN2X7YTVI3WB57' where id=89; -update noar tt set v0='24A512R1E15GG6V6BIM0F1I4KOVBRDK2KB5X5I2TR0I11DOJUYA9QPPFXE2HXUCMJYUPPXUHKV71DI246KTMUF4S69XO68YWRN9STUR8D49Y2M88K0NHPVLHTOPIA9R9J4Q2VHCKTL9WUN8BCY6RO52F6ZBGFBU4TAUH91MUF5BXFN8BMZD72HH55FUBNWT7J7PKUKYF8JRG725OU7CPKQDUBU76UM3GAJ9QZ78DKAGYZUF7P7AMFBCO3KCXP9PA1' where id=90; -update noar ti set v0='24A512R1E15GG6V6BIM0F1I4KOVBRDK2KB5X5I2TR0I11DOJUYA9QPPFXE2HXUCMJYUPPXUHKV71DI246KTMUF4S69XO68YWRN9STUR8D49Y2M88K0NHPVLHTOPIA9R9J4Q2VHCKTL9WUN8BCY6RO52F6ZBGFBU4TAUH91MUF5BXFN8BMZD72HH55FUBNWT7J7PKUKYF8JRG725OU7CPKQDUBU76UM3GAJ9QZ78DKAGYZUF7P7AMFBCO3KCXP9PA1' where id=90; -update noar tt set v1='BFBNTLUIIAIUE88NCG72GU8G6RQ166LL7GIID03YQF5D8194M6M8QOKQY0TJLSTKSTZSWJGQKLOIFH57I3FVLPCUN8SGXP2GM6R6YN4ETIV6VVZVFYXPRIF2QEPNZD6SRMH1YC17IOLM5BZSLBO91C6KYSCGATHVIHROFAAXB70Z8JO3PKN341N0UCCN6ZGKN873W5X4XTK4DQGEJ776LXEL1TAVVGXQC7WKU3WDU7NBJAJ5GQXZRU1L71BWBUTUZ' where id=90; -update noar ti set v1='BFBNTLUIIAIUE88NCG72GU8G6RQ166LL7GIID03YQF5D8194M6M8QOKQY0TJLSTKSTZSWJGQKLOIFH57I3FVLPCUN8SGXP2GM6R6YN4ETIV6VVZVFYXPRIF2QEPNZD6SRMH1YC17IOLM5BZSLBO91C6KYSCGATHVIHROFAAXB70Z8JO3PKN341N0UCCN6ZGKN873W5X4XTK4DQGEJ776LXEL1TAVVGXQC7WKU3WDU7NBJAJ5GQXZRU1L71BWBUTUZ' where id=90; -update noar tt set v2='82MJYN32AKGV01ZNZXV7ZTNR4U1B1YT403BVJV3UGYU6KG94FW69R31416L91HLNBDK0EH8LKOTVJRF13Q40D7EEXFUMX1QNSEC8LS213TCCGK6OQTPJOSF9QHDKZPZIX9LYI0F597QG796I3DQ57WU2MEBVMQGFJ3PL6ZE0WQURGMU2LFNKFRICV73UJ3T4WL9W602LPPVEENT1C1T5RUTBBGW8HTUIGNVO3PJ2GMFKXTBP4P8IAJ50S6TTLXYF6' where id=90; -update noar ti set v2='82MJYN32AKGV01ZNZXV7ZTNR4U1B1YT403BVJV3UGYU6KG94FW69R31416L91HLNBDK0EH8LKOTVJRF13Q40D7EEXFUMX1QNSEC8LS213TCCGK6OQTPJOSF9QHDKZPZIX9LYI0F597QG796I3DQ57WU2MEBVMQGFJ3PL6ZE0WQURGMU2LFNKFRICV73UJ3T4WL9W602LPPVEENT1C1T5RUTBBGW8HTUIGNVO3PJ2GMFKXTBP4P8IAJ50S6TTLXYF6' where id=90; -update noar tt set v3='4KMNFGP2LIIFBGSA0AEPA70TDRUU4T2R80BBGS0DBV5F76ET9U45GUANOHWS8ABURIIG4W2YD9WM0R3M6G9DXWIHKE5LPNUMGDO73VLJLPICQEYSXOPZ5CZXGIV8JNIF4UHUYM889Y8GZSHUFDZLUIMNU0LCWU3VF9I6UEVZGESDPKQBFYDPHVOR4SC0GOKPQFFXXT69RIYYRMIBQ9WO6K4VXBEVEX0M6WOVPA2R2N836BU35V5M6GLHL299FS5JQ' where id=90; -update noar ti set v3='4KMNFGP2LIIFBGSA0AEPA70TDRUU4T2R80BBGS0DBV5F76ET9U45GUANOHWS8ABURIIG4W2YD9WM0R3M6G9DXWIHKE5LPNUMGDO73VLJLPICQEYSXOPZ5CZXGIV8JNIF4UHUYM889Y8GZSHUFDZLUIMNU0LCWU3VF9I6UEVZGESDPKQBFYDPHVOR4SC0GOKPQFFXXT69RIYYRMIBQ9WO6K4VXBEVEX0M6WOVPA2R2N836BU35V5M6GLHL299FS5JQ' where id=90; -update noar tt set v0='H5RVFYRB8FUGWOI6VTWMAXK37BXF7W665LYAQ43K87HTDVZA1KOB6ZPA2BPM7H0QICWDRTQ34S8B2ZVU7ZZSDI9UTL9MQJ16ZNVI0EYRQCRJ0YHH1K7Z3TSLH6MAUM5DBCNRNWMSNFN6YBNDXGAXGB6JKIAC3HQ36SSLYG5BS1U0PG63L2GGPGDWIO95LGICJ59X3X9C9L2OL7P6743HB2A3OZ85G7LDZAPHGLIS9OZ17ZCZ7HZ951Q4DGQMKC5E8' where id=91; -update noar ti set v0='H5RVFYRB8FUGWOI6VTWMAXK37BXF7W665LYAQ43K87HTDVZA1KOB6ZPA2BPM7H0QICWDRTQ34S8B2ZVU7ZZSDI9UTL9MQJ16ZNVI0EYRQCRJ0YHH1K7Z3TSLH6MAUM5DBCNRNWMSNFN6YBNDXGAXGB6JKIAC3HQ36SSLYG5BS1U0PG63L2GGPGDWIO95LGICJ59X3X9C9L2OL7P6743HB2A3OZ85G7LDZAPHGLIS9OZ17ZCZ7HZ951Q4DGQMKC5E8' where id=91; -update noar tt set v1='3QTQ22O79WXROW10ZIGKFK9C0ON1CSOWUVAAC88P2LXZ6EFW22ZWYMIPPI7X13KSDBWFW8BRRUMSUYIJK5TYXSDT1QTQVSN7X2O6GTKUMS2RGW4H2P3EMF5KD1WTE8N43VZB9THRNWIZ8YLMOQYHZMLU1R5PLP9DK8AFQZDT6VV3BH93183J59E26OICO9X51TII3WXDV90CLTQKP5TK1EM3PG7NV7SXV17N7G4WIGQOFMP5RAHYLTQQHLZK2H383' where id=91; -update noar ti set v1='3QTQ22O79WXROW10ZIGKFK9C0ON1CSOWUVAAC88P2LXZ6EFW22ZWYMIPPI7X13KSDBWFW8BRRUMSUYIJK5TYXSDT1QTQVSN7X2O6GTKUMS2RGW4H2P3EMF5KD1WTE8N43VZB9THRNWIZ8YLMOQYHZMLU1R5PLP9DK8AFQZDT6VV3BH93183J59E26OICO9X51TII3WXDV90CLTQKP5TK1EM3PG7NV7SXV17N7G4WIGQOFMP5RAHYLTQQHLZK2H383' where id=91; -update noar tt set v2='5PI4Q9TEN68K5DAGII5EBTQZ0YW4CH8WRMN0SXA69CXAV55P78BD3TXIRT6TVG54E0SK12YG85HYE2EJRHK65YZT25C95Z5ZFT1M9U8RSKAJ7QA3K29L2BDL43QBKQFN1BVSMIZ5DAB4GKTMQLBQ7K98LJH70FWZWX5R5RXUZ8QSSNMNMMHC7BKWOWY3L0SM120ZGD59T2T5ONVCJN8NBD7INEROY3SWNZ45AQ8G48YKIPT5U9QNNWHLKPSWFOIUZ' where id=91; -update noar ti set v2='5PI4Q9TEN68K5DAGII5EBTQZ0YW4CH8WRMN0SXA69CXAV55P78BD3TXIRT6TVG54E0SK12YG85HYE2EJRHK65YZT25C95Z5ZFT1M9U8RSKAJ7QA3K29L2BDL43QBKQFN1BVSMIZ5DAB4GKTMQLBQ7K98LJH70FWZWX5R5RXUZ8QSSNMNMMHC7BKWOWY3L0SM120ZGD59T2T5ONVCJN8NBD7INEROY3SWNZ45AQ8G48YKIPT5U9QNNWHLKPSWFOIUZ' where id=91; -update noar tt set v3='HMCIFVLIP82EB98V66WN595HAFU5UZD2W10RR126OP0HTKEFXPQ9FCKEK094B6SNLMMKP606ULPU1S21YMFM1RDZFAM6D9N07DEPVFPSFRU8QBYUWX3H6PMELJZQ6LHP1I7Y26GOQC0NGTP7SPDDNG7A2KSBOOUHTDUXNV199ITGHOCFCE2Q1DL7T2HLTDJOMQ4HURE6PKVTOOJIYRJQGPA3WS2GJC018Q75QZ7UXL0L5A8QA9M0GSPOP8YMFOBF2' where id=91; -update noar ti set v3='HMCIFVLIP82EB98V66WN595HAFU5UZD2W10RR126OP0HTKEFXPQ9FCKEK094B6SNLMMKP606ULPU1S21YMFM1RDZFAM6D9N07DEPVFPSFRU8QBYUWX3H6PMELJZQ6LHP1I7Y26GOQC0NGTP7SPDDNG7A2KSBOOUHTDUXNV199ITGHOCFCE2Q1DL7T2HLTDJOMQ4HURE6PKVTOOJIYRJQGPA3WS2GJC018Q75QZ7UXL0L5A8QA9M0GSPOP8YMFOBF2' where id=91; -update noar tt set v0='785RE4HQE4VE16P5AWUB1V4J4DQJJBO8RP69GU94BEN98LHXML7F54A2Z1PK9XAH28J9K3MH86F6DLZ201JPNKXN38U7FLX7FJWIDYYM32JA6VC0NES00BCNAWU4QT5IV8J8A8KJ8EDAXB00OHFJ7SMDBDVXCV6ETLVL0JLKQSVPG93ZTD89061FVJ1AOW2B9EEEMM6KJKPLNGMO0NHP7US308Y90NI2YFDS1VLPX8NROVEUO9H7B9XVGWZSMKO3J' where id=92; -update noar ti set v0='785RE4HQE4VE16P5AWUB1V4J4DQJJBO8RP69GU94BEN98LHXML7F54A2Z1PK9XAH28J9K3MH86F6DLZ201JPNKXN38U7FLX7FJWIDYYM32JA6VC0NES00BCNAWU4QT5IV8J8A8KJ8EDAXB00OHFJ7SMDBDVXCV6ETLVL0JLKQSVPG93ZTD89061FVJ1AOW2B9EEEMM6KJKPLNGMO0NHP7US308Y90NI2YFDS1VLPX8NROVEUO9H7B9XVGWZSMKO3J' where id=92; -update noar tt set v1='0EAB2PKE0VSX30YVSJQA0WHFBN56CHFLCMTLDOEWUL1C3F08S1X0K2PUNJ5KYJLIDKOQW3A4N9YDFQLLVGCUERSQUUCZZ6ZXF3PEKD643XONVHBU1OIBIUSV2A2M4PU7NUZAL01LUZJGUI1EQUIWOXSML2OZNNFRJS3P98RB7AJ6MHPB3D5CH2WN7ROML9Q9P4Q3N2H6TY9ZN7BD3TKAQRBL1H1CNYM0PGKOO15MKHD7EWY10H80LGVFYNBBMBAAS' where id=92; -update noar ti set v1='0EAB2PKE0VSX30YVSJQA0WHFBN56CHFLCMTLDOEWUL1C3F08S1X0K2PUNJ5KYJLIDKOQW3A4N9YDFQLLVGCUERSQUUCZZ6ZXF3PEKD643XONVHBU1OIBIUSV2A2M4PU7NUZAL01LUZJGUI1EQUIWOXSML2OZNNFRJS3P98RB7AJ6MHPB3D5CH2WN7ROML9Q9P4Q3N2H6TY9ZN7BD3TKAQRBL1H1CNYM0PGKOO15MKHD7EWY10H80LGVFYNBBMBAAS' where id=92; -update noar tt set v2='2NJ4IUDLWPW0YBQ67EP3TRNDYMEP4LMAEDSRCVHW3VU5VUJ7U401VU5DCVO6RN4GMFU95CZCBL5BPXISWPSS9ID05H21MC5TDAQ0MNWQ85E69KFY4JRALHNEFWV1JFGLIF1AFSEN2CN5GL463TT9RPUKNJITW5ICZ5SQXD4VSKU94C7T9WU6QFW8MIDHCYYNI18GYQ23M6RCB2MRHOXIB9H78YI3191CI8BVLAT9W6GKABFKVM0MGV7V0Y7XP4352' where id=92; -update noar ti set v2='2NJ4IUDLWPW0YBQ67EP3TRNDYMEP4LMAEDSRCVHW3VU5VUJ7U401VU5DCVO6RN4GMFU95CZCBL5BPXISWPSS9ID05H21MC5TDAQ0MNWQ85E69KFY4JRALHNEFWV1JFGLIF1AFSEN2CN5GL463TT9RPUKNJITW5ICZ5SQXD4VSKU94C7T9WU6QFW8MIDHCYYNI18GYQ23M6RCB2MRHOXIB9H78YI3191CI8BVLAT9W6GKABFKVM0MGV7V0Y7XP4352' where id=92; -update noar tt set v3='JOZ0SGSDWBX0I0Z1JWZROGVYLQGHVI5RA0YVPGEG4C2MVK3F8HKWBTNZN05KV4SJJVTFML71ERZ1M3ZDOBCUIHXBE4V01B35PYOFYJJ83OWOUY93SAUSE62ZX5WJZSNUNGTJSN3R56VNP5OG0VD9YS70FQQVCTMQKL434AS124GGPRJKQ7AVSWRYO6PA8KF035TVPFCDWAENYPUPF7ZQQLJQ291VD850Q2SFGTJ22TJDNQVP40O4LQS3DXZVO2ZZA' where id=92; -update noar ti set v3='JOZ0SGSDWBX0I0Z1JWZROGVYLQGHVI5RA0YVPGEG4C2MVK3F8HKWBTNZN05KV4SJJVTFML71ERZ1M3ZDOBCUIHXBE4V01B35PYOFYJJ83OWOUY93SAUSE62ZX5WJZSNUNGTJSN3R56VNP5OG0VD9YS70FQQVCTMQKL434AS124GGPRJKQ7AVSWRYO6PA8KF035TVPFCDWAENYPUPF7ZQQLJQ291VD850Q2SFGTJ22TJDNQVP40O4LQS3DXZVO2ZZA' where id=92; -update noar tt set v0='DGCYFK8V52C5Q39UFQQI6GFV9MS2STLV1IVMQE8B3D5XVXHY0JGLH4QVNXM5X63RMO9XNQRMK1ZBW8K9B9Q2J4ANK8XIV3UF00ZQ5ZP51Z77E1UDIA0TY82H5SWNODE7SSE3LZJK4SROJ3W4LTMA3VIKBR8AROSTKU634XKY2ZQUUPD4295PMJED0ZRVDXP3SSEVM6WBTPDS37NGXA8TSYQFN59LR83GEYD24W26KAJIRQ6EGYLXFXQI56ZO1TZ47' where id=93; -update noar ti set v0='DGCYFK8V52C5Q39UFQQI6GFV9MS2STLV1IVMQE8B3D5XVXHY0JGLH4QVNXM5X63RMO9XNQRMK1ZBW8K9B9Q2J4ANK8XIV3UF00ZQ5ZP51Z77E1UDIA0TY82H5SWNODE7SSE3LZJK4SROJ3W4LTMA3VIKBR8AROSTKU634XKY2ZQUUPD4295PMJED0ZRVDXP3SSEVM6WBTPDS37NGXA8TSYQFN59LR83GEYD24W26KAJIRQ6EGYLXFXQI56ZO1TZ47' where id=93; -update noar tt set v1='X6UQMQPRLVDDO364Q5ZVKKIG7150PHH2IAK1UJ14RPMFDIC60TSCUWPFG89I85K0VU78SVGB74XE5Z8LKMH8BJL3CRLZNRROZIKFGF8SOL88ODQOM3QL6Q2TVNAO0S5QCO7VDFWVGG9Y78D29XNKLPG34YXQO9B2G43AY2CH6ICUNC8TXAHI7IFF8IE19073OZDW4UNV3ODEXOWNIHGPQS8LFEY62R7E0XZOXM14YA0MNQ9URB12029KOXJS5ADWN' where id=93; -update noar ti set v1='X6UQMQPRLVDDO364Q5ZVKKIG7150PHH2IAK1UJ14RPMFDIC60TSCUWPFG89I85K0VU78SVGB74XE5Z8LKMH8BJL3CRLZNRROZIKFGF8SOL88ODQOM3QL6Q2TVNAO0S5QCO7VDFWVGG9Y78D29XNKLPG34YXQO9B2G43AY2CH6ICUNC8TXAHI7IFF8IE19073OZDW4UNV3ODEXOWNIHGPQS8LFEY62R7E0XZOXM14YA0MNQ9URB12029KOXJS5ADWN' where id=93; -update noar tt set v2='QK5GWKB4T0VEGNP4JCJGEB2RHM5X9S1A42N33117H88ETLIJU4Z9L53SLUMZYA3VA64420NO3LFARVDSTKHUNYW4VEMP5MELEDU587HXCS9AXDPI54AOPH8EDR8AO0BPDKQOLL4NY726N1KVLA044I0MVFU63X61H7H3E8W1UT097PUOPAI1VVTMT4APDE8LAB567UZ2964ZTXSHGDLODX8Q2VX6IUBT37EE9A9VRO9X6ZXGRD1SLLZLKIRUGFDF5' where id=93; -update noar ti set v2='QK5GWKB4T0VEGNP4JCJGEB2RHM5X9S1A42N33117H88ETLIJU4Z9L53SLUMZYA3VA64420NO3LFARVDSTKHUNYW4VEMP5MELEDU587HXCS9AXDPI54AOPH8EDR8AO0BPDKQOLL4NY726N1KVLA044I0MVFU63X61H7H3E8W1UT097PUOPAI1VVTMT4APDE8LAB567UZ2964ZTXSHGDLODX8Q2VX6IUBT37EE9A9VRO9X6ZXGRD1SLLZLKIRUGFDF5' where id=93; -update noar tt set v3='MD2G12QTM7C1ADRLCAQIA3K91899IXUVBL9I2R90EOCPMKM8METIYDDJFUZA85HDLDBO2KI30IAJC5P4L195QRIHBTV18I30GB5QWBG9DPU3S4SAP4BIRNUBW871W4BJJM4B8LRW7SNT7QEFBR7L5MU52JCAZOPWNGGDN63XUKKZL929LPWUY7IRYVHIROFE9K3WMFBYCWP21VFB3KI7QICAWU6OR4LGQHLFZ92FXZABR7D4B0O75LZKUU3GO8SEK' where id=93; -update noar ti set v3='MD2G12QTM7C1ADRLCAQIA3K91899IXUVBL9I2R90EOCPMKM8METIYDDJFUZA85HDLDBO2KI30IAJC5P4L195QRIHBTV18I30GB5QWBG9DPU3S4SAP4BIRNUBW871W4BJJM4B8LRW7SNT7QEFBR7L5MU52JCAZOPWNGGDN63XUKKZL929LPWUY7IRYVHIROFE9K3WMFBYCWP21VFB3KI7QICAWU6OR4LGQHLFZ92FXZABR7D4B0O75LZKUU3GO8SEK' where id=93; -update noar tt set v0='H11BFIZVDXIQJSLBQRQ5J8F5H50NY1Q8VIN7KZM72TOK3E1XBJXV3ABNPPV9FEH3RDYXGL37XK2Z2HOQVUTS3RBKHELHI08TJD0AFBBSCXGLRWMG3OZ6Q1GH49BSOIUWWXUM84S441W33FRE3U9XIS8F69LEXY81L4V8B9CEQ5AX7J2NR43W80IIRJXWDF20283YSJKHDB9GHMXWE988IXFUG29CCBKAEMAUPVA9L475WSXQ4VYI8UOOKCOT6X5TQ' where id=94; -update noar ti set v0='H11BFIZVDXIQJSLBQRQ5J8F5H50NY1Q8VIN7KZM72TOK3E1XBJXV3ABNPPV9FEH3RDYXGL37XK2Z2HOQVUTS3RBKHELHI08TJD0AFBBSCXGLRWMG3OZ6Q1GH49BSOIUWWXUM84S441W33FRE3U9XIS8F69LEXY81L4V8B9CEQ5AX7J2NR43W80IIRJXWDF20283YSJKHDB9GHMXWE988IXFUG29CCBKAEMAUPVA9L475WSXQ4VYI8UOOKCOT6X5TQ' where id=94; -update noar tt set v1='WPC7JU4ENGC774U45EX78DMKHIZ30Y3K57FQ8P0JCHM3YI794O39DLY2D7YS9LN5XZ9DCIAU3UHY4JG6OT9OCWJLIKCNX06RVYUML9WS0OA1ZCOO4AHXOH1Y34KPHYO9MU09DH88J4IBADOPC5TCADI3OFDFJGW5IE96ZFXVXLL3ZGVANB637LHS7F6NXHDH49C6ULHU8KX8W86TZV1BEWS7HEVXDDM41IKMXB862OJCRRP86M7O10GTZF73CQIVE' where id=94; -update noar ti set v1='WPC7JU4ENGC774U45EX78DMKHIZ30Y3K57FQ8P0JCHM3YI794O39DLY2D7YS9LN5XZ9DCIAU3UHY4JG6OT9OCWJLIKCNX06RVYUML9WS0OA1ZCOO4AHXOH1Y34KPHYO9MU09DH88J4IBADOPC5TCADI3OFDFJGW5IE96ZFXVXLL3ZGVANB637LHS7F6NXHDH49C6ULHU8KX8W86TZV1BEWS7HEVXDDM41IKMXB862OJCRRP86M7O10GTZF73CQIVE' where id=94; -update noar tt set v2='TQO5EOT4LBPGC3PCJIJVZ6YMHOEZPSCI8S6HDAPJTS95E178XYUY53HFHSYXT4I9ELX7G2QDOBSD76ABGMHY2W96V0KT7FTF18035Y6RW8NDFPZBYSCJY99IM1PV0ELMI1QKN3ZAUQM8RY6VOY7MREQLGLCVYLOXQZ2L9CK4R5J3R0ZVZZBSJWZFDH25K8LNM3OPHZE57ENKK8TLLIJS6PV1Q011NCHGD61BLGZZD3KZD4X8U0XTPN57J873UHG6P' where id=94; -update noar ti set v2='TQO5EOT4LBPGC3PCJIJVZ6YMHOEZPSCI8S6HDAPJTS95E178XYUY53HFHSYXT4I9ELX7G2QDOBSD76ABGMHY2W96V0KT7FTF18035Y6RW8NDFPZBYSCJY99IM1PV0ELMI1QKN3ZAUQM8RY6VOY7MREQLGLCVYLOXQZ2L9CK4R5J3R0ZVZZBSJWZFDH25K8LNM3OPHZE57ENKK8TLLIJS6PV1Q011NCHGD61BLGZZD3KZD4X8U0XTPN57J873UHG6P' where id=94; -update noar tt set v3='W9Y750CILBYT3Z127LDRTG7RZQNCVB9OAQIHMSOSYM82F7H732IZ5WAO0NBY15SXE9N2H3PSRLAL75FT9KDW79M1SE9T89ANRHNAAA11CIE0AI2NCZVFJFT0EP3ZWYLVRY354B1AS2OXH889OCQ9CRQGZ9RRS6DNFY7Y6PL3CREQH6B3OXWMIWX3BQR8DD5AE43Z1DBC8KRZVS5GZZ2YKX3113TMGB15TE6CI97A51SJSI25JZ0L86UCUV44HERY5' where id=94; -update noar ti set v3='W9Y750CILBYT3Z127LDRTG7RZQNCVB9OAQIHMSOSYM82F7H732IZ5WAO0NBY15SXE9N2H3PSRLAL75FT9KDW79M1SE9T89ANRHNAAA11CIE0AI2NCZVFJFT0EP3ZWYLVRY354B1AS2OXH889OCQ9CRQGZ9RRS6DNFY7Y6PL3CREQH6B3OXWMIWX3BQR8DD5AE43Z1DBC8KRZVS5GZZ2YKX3113TMGB15TE6CI97A51SJSI25JZ0L86UCUV44HERY5' where id=94; -update noar tt set v0='6EH7QOIVOHN03HU0CUMJ0N2D4WM04O1P7UFKK2HJAP1A4PMOYXI4UB7SJ9NQ6K734OVFRAAB7L7IC1AZGVYECSFPS1KJX2XBJOGLFLSRADJLPSVOD56DXV0G8I7OFHH9UW9XCKR7F0547HZ1ZA6QN1PQBA25HW02EWAR909H3KZ7P8ULQXK07MRWELUUG6DR6S9WPU0OSPM73B5JMJ0R3PNTDT37JZB28VCUZQWFZYKXP25LGAMWXWZ9G6E40AF5X' where id=95; -update noar ti set v0='6EH7QOIVOHN03HU0CUMJ0N2D4WM04O1P7UFKK2HJAP1A4PMOYXI4UB7SJ9NQ6K734OVFRAAB7L7IC1AZGVYECSFPS1KJX2XBJOGLFLSRADJLPSVOD56DXV0G8I7OFHH9UW9XCKR7F0547HZ1ZA6QN1PQBA25HW02EWAR909H3KZ7P8ULQXK07MRWELUUG6DR6S9WPU0OSPM73B5JMJ0R3PNTDT37JZB28VCUZQWFZYKXP25LGAMWXWZ9G6E40AF5X' where id=95; -update noar tt set v1='5F5NA2DAJF52WVJZIPTVS277X9YJG5X0WE98SRQ5P00TF072U92VFG5BEHZXIPB9Y88137RSUR571QM9AGC0ZNDMOXTYOFW08LVJSF3EL4KQIDZN3MO28KE1WMNPPK4VM5A1AO65SDLFUSQYO0ZED3HKFG05JWNFC99GMC23K1LYC78RTJINJVZU2LI75M35MQZ3UU2ZMYDL2T0FTUDJ4RE74UE9AKYU6D4F7O9MY5SVPBBCFSVD0EAZAHBJVWK88' where id=95; -update noar ti set v1='5F5NA2DAJF52WVJZIPTVS277X9YJG5X0WE98SRQ5P00TF072U92VFG5BEHZXIPB9Y88137RSUR571QM9AGC0ZNDMOXTYOFW08LVJSF3EL4KQIDZN3MO28KE1WMNPPK4VM5A1AO65SDLFUSQYO0ZED3HKFG05JWNFC99GMC23K1LYC78RTJINJVZU2LI75M35MQZ3UU2ZMYDL2T0FTUDJ4RE74UE9AKYU6D4F7O9MY5SVPBBCFSVD0EAZAHBJVWK88' where id=95; -update noar tt set v2='Q2LDQOBULXJYLQOXWFCE3RSBY0V05RTKQCTYQETDUKUJZTLUUK01X7HGB4X0UZ67YG2CYE7O5PWYKXCOT9LNCVKWEG5Q4IGA5W4T9T1NFPA4LJ7EISBXHWA109RFB5AJMM2O7MZ57HHCD71E6AMLOFC90MSKXPUTW58D12FDRPUSZ18Z2R75D7Q0ED2BHKHAH6NT0BUDYBY6EIVCMATYKT7O6O51FDWA5LJPF3DLQF7NJVS5I7A3XG3L2B33K1O7V' where id=95; -update noar ti set v2='Q2LDQOBULXJYLQOXWFCE3RSBY0V05RTKQCTYQETDUKUJZTLUUK01X7HGB4X0UZ67YG2CYE7O5PWYKXCOT9LNCVKWEG5Q4IGA5W4T9T1NFPA4LJ7EISBXHWA109RFB5AJMM2O7MZ57HHCD71E6AMLOFC90MSKXPUTW58D12FDRPUSZ18Z2R75D7Q0ED2BHKHAH6NT0BUDYBY6EIVCMATYKT7O6O51FDWA5LJPF3DLQF7NJVS5I7A3XG3L2B33K1O7V' where id=95; -update noar tt set v3='REKOS1KNF5KJOVW58D7X5AZP883BHX8A2GOE8FJBNYXBKMERMYY2L2L0LMTNYNK538E4MJN79BEQ76KVF3Q26VNTZY7HEHZI2L1VXJK5KI1CC5SWNZF96V8H533EF2C331NZX1RTUIIXAGBX9M3UQPZDLM7R5FVO0T1BU1EGM3W9KVYOLELU65V7WWHSYNA6AQNBPEL9M4PGIOJG8XN8M9ZV1TM6XBLUEZKQGX2WDEIN9EE7QOOB7LO7HF833O9U8' where id=95; -update noar ti set v3='REKOS1KNF5KJOVW58D7X5AZP883BHX8A2GOE8FJBNYXBKMERMYY2L2L0LMTNYNK538E4MJN79BEQ76KVF3Q26VNTZY7HEHZI2L1VXJK5KI1CC5SWNZF96V8H533EF2C331NZX1RTUIIXAGBX9M3UQPZDLM7R5FVO0T1BU1EGM3W9KVYOLELU65V7WWHSYNA6AQNBPEL9M4PGIOJG8XN8M9ZV1TM6XBLUEZKQGX2WDEIN9EE7QOOB7LO7HF833O9U8' where id=95; -update noar tt set v0='FAAXUMQKWZIUTMKRYCF2CX25NLPKPG6MQ8CO4N030L52E79HDW3Q4LS2CV8F4WYKWQPP9QFJ9ES33XKMXLOMGXWVVHMGJNWUJG1X2EQA20K01CK855O3OED02VIG92SWAKHS4265HHUDIV4YZJYOXVD706BTSZV128OGQ6UKU4BHIYCCTMHA7Y92D8J9Y4X2D6BXIOYFX6D4E0OXULQUCK5JOU3P55M7QY7P6SB1GVJFZPJ887Q2LYXHQ6TZJ8UH8' where id=96; -update noar ti set v0='FAAXUMQKWZIUTMKRYCF2CX25NLPKPG6MQ8CO4N030L52E79HDW3Q4LS2CV8F4WYKWQPP9QFJ9ES33XKMXLOMGXWVVHMGJNWUJG1X2EQA20K01CK855O3OED02VIG92SWAKHS4265HHUDIV4YZJYOXVD706BTSZV128OGQ6UKU4BHIYCCTMHA7Y92D8J9Y4X2D6BXIOYFX6D4E0OXULQUCK5JOU3P55M7QY7P6SB1GVJFZPJ887Q2LYXHQ6TZJ8UH8' where id=96; -update noar tt set v1='AVB7L0JPH7EAEIWJBTF17FS34SU9LT3GWLYWJWL0X0V0YUYBT85P9Q9IX57TTDUA609O7RVDVLXX2IQJ9DBLZYUVSEXDK8Z2VC0HB9JRMM98OXK7ZUF4BQEB7EPO39U9IPFG0G0MIAMDWGNWYQC1QHAQYEOHXZ6TBV39QKF5WLF25I8OMWMRTW81SC9JEPIFVQNKTTATW720V9Y8HIS1XJT9UGXWJZFK3OJZ98Q30AR38GURYFZPVLAEXMWF1TLZ7' where id=96; -update noar ti set v1='AVB7L0JPH7EAEIWJBTF17FS34SU9LT3GWLYWJWL0X0V0YUYBT85P9Q9IX57TTDUA609O7RVDVLXX2IQJ9DBLZYUVSEXDK8Z2VC0HB9JRMM98OXK7ZUF4BQEB7EPO39U9IPFG0G0MIAMDWGNWYQC1QHAQYEOHXZ6TBV39QKF5WLF25I8OMWMRTW81SC9JEPIFVQNKTTATW720V9Y8HIS1XJT9UGXWJZFK3OJZ98Q30AR38GURYFZPVLAEXMWF1TLZ7' where id=96; -update noar tt set v2='VTGHTU2UTBEA0Q2C9VHJBGB3A2SG9YL68EH0N3HKIN8RL3ZQM9G2MYZCICJ5X9WGJ26HGLNXGBD61ZT3VPTRUT9V2NSPA2441VQYACSCM3J160CYBZ71PWWKPI1THMQWXD7RSQBBLQYJB9GYLIXSLXIHBVMFAEVGR1H4SRKMCTFX0EKVVM8UQ394F22FVZPTO8LNA3N7BCASHK7YOZM2AMW03PXHD7K4IKSHBZ524VRRER0T35PZICZNHSFO34Z4W' where id=96; -update noar ti set v2='VTGHTU2UTBEA0Q2C9VHJBGB3A2SG9YL68EH0N3HKIN8RL3ZQM9G2MYZCICJ5X9WGJ26HGLNXGBD61ZT3VPTRUT9V2NSPA2441VQYACSCM3J160CYBZ71PWWKPI1THMQWXD7RSQBBLQYJB9GYLIXSLXIHBVMFAEVGR1H4SRKMCTFX0EKVVM8UQ394F22FVZPTO8LNA3N7BCASHK7YOZM2AMW03PXHD7K4IKSHBZ524VRRER0T35PZICZNHSFO34Z4W' where id=96; -update noar tt set v3='UFJ5JLTP7WUETVGL7QAV005KL9XZ2MNNTHP7O5012TUVA6BGJ79UDMQC5OGYYCW98IZ1WOW35ZB0FSGY2BP8FGJZZ835HRNPSDJ6M2SSWLYMO2IJ6J5F0VYS84NKECE7X53K6RTBDDO0VB3ZM32Z49M8ZCVN7GT8IVEQ9O3SNQMRNY65CRVAK1VSI55E8ZUVY4IWHF6GFI7X6G6H2R75IGA1ASR0BGVBDF32IYWT4DSPJ1II3UCA9D19FLX3NC2ZX' where id=96; -update noar ti set v3='UFJ5JLTP7WUETVGL7QAV005KL9XZ2MNNTHP7O5012TUVA6BGJ79UDMQC5OGYYCW98IZ1WOW35ZB0FSGY2BP8FGJZZ835HRNPSDJ6M2SSWLYMO2IJ6J5F0VYS84NKECE7X53K6RTBDDO0VB3ZM32Z49M8ZCVN7GT8IVEQ9O3SNQMRNY65CRVAK1VSI55E8ZUVY4IWHF6GFI7X6G6H2R75IGA1ASR0BGVBDF32IYWT4DSPJ1II3UCA9D19FLX3NC2ZX' where id=96; -update noar tt set v0='2257OFXUKLFS2FB5DWHAL2W2YCLFCWSIZ1OYHQXG7DIU8MR0M5N22GZHSIK17MSZ19SGW6LWPUS6DEMLI8LNUHYOUUR6VHWJ9V1EOFVTKPH91AIG559AH6VGZHGDW5G42RCTNQ9LVVYHOQZ9P0VEW0D96WCJHSKUG07ZZFZUB6Q2J4RQ828O09OHJJOP8XF5R5WYBRYCVZL965JLKB58YMLXOMHO8MJTI8SO3XB8QX30O4Z1TY5OTCC734ISR5OR8' where id=97; -update noar ti set v0='2257OFXUKLFS2FB5DWHAL2W2YCLFCWSIZ1OYHQXG7DIU8MR0M5N22GZHSIK17MSZ19SGW6LWPUS6DEMLI8LNUHYOUUR6VHWJ9V1EOFVTKPH91AIG559AH6VGZHGDW5G42RCTNQ9LVVYHOQZ9P0VEW0D96WCJHSKUG07ZZFZUB6Q2J4RQ828O09OHJJOP8XF5R5WYBRYCVZL965JLKB58YMLXOMHO8MJTI8SO3XB8QX30O4Z1TY5OTCC734ISR5OR8' where id=97; -update noar tt set v1='PCWGA3O10XR00QS2SWXP0U7JQH8G0O5U6H3GK8TONZCESJJBF97BKWFRCNE9N58SPDMWIC3QL7U4QD3MBLMVAJO062J3JLE6HBNUOV6SJL0UEZLQKG80ZG4DS51V9NU9DQICOPGAXPNUO59V680NATGNIH0E5O0KJE30NNW4ZZ0ILP5H9QS5ZJ8RHT1MG8QABXSRVS0RS4C661EW8YNO3X6ZWMLZ133IHJVUPJNUPKTCXT027620U4IYBPPZ14E0L' where id=97; -update noar ti set v1='PCWGA3O10XR00QS2SWXP0U7JQH8G0O5U6H3GK8TONZCESJJBF97BKWFRCNE9N58SPDMWIC3QL7U4QD3MBLMVAJO062J3JLE6HBNUOV6SJL0UEZLQKG80ZG4DS51V9NU9DQICOPGAXPNUO59V680NATGNIH0E5O0KJE30NNW4ZZ0ILP5H9QS5ZJ8RHT1MG8QABXSRVS0RS4C661EW8YNO3X6ZWMLZ133IHJVUPJNUPKTCXT027620U4IYBPPZ14E0L' where id=97; -update noar tt set v2='T58S91X3BNFNRYPR3IMKC9D6UJOZA7BJ19Q9EC0TZJFHJIQAI8C4RUE71REVF85BRQ7M7UAPK6L2UUW6WVTGY9W2JAN1D1WLC5OV8DL7ZXUT6QAPLSR5VX5I7JEE0ZLBUVV0ST7LBH7444Y01YJ0TZGX3LFKAGPPWMGTQ3KJ4FV9Q9L3M6Q0BXTOYTH225XK5NG9Y3MD8WBI2CN2PIUNONJXQGXXJ8GIZMDWFWNV7L9IJXVPDJAXISI14EQD0I1LL' where id=97; -update noar ti set v2='T58S91X3BNFNRYPR3IMKC9D6UJOZA7BJ19Q9EC0TZJFHJIQAI8C4RUE71REVF85BRQ7M7UAPK6L2UUW6WVTGY9W2JAN1D1WLC5OV8DL7ZXUT6QAPLSR5VX5I7JEE0ZLBUVV0ST7LBH7444Y01YJ0TZGX3LFKAGPPWMGTQ3KJ4FV9Q9L3M6Q0BXTOYTH225XK5NG9Y3MD8WBI2CN2PIUNONJXQGXXJ8GIZMDWFWNV7L9IJXVPDJAXISI14EQD0I1LL' where id=97; -update noar tt set v3='ELR5OYU9FXZFHMBF3J2HG47AII8Y02M473OWKDEZ2AK6V3JKJWXQLM4K1Z27YA0VS6ZROJNK2RVEGWWEQBNK0AAPXZUSCJUQKD4NOGVMX3T6BNJSAGTV6NJHQHPHUZ85YJXVUD9FM1K6RK855XRKYU4MVDNB6PH9NY9OGOHR5E04LA34YRE4L8P780ERJD5OAG347T8XAMB038NGQADTYLX3PDI0MN1IXYK1A1OEZC6AIED8IPYFMQ59QQGOGLP93' where id=97; -update noar ti set v3='ELR5OYU9FXZFHMBF3J2HG47AII8Y02M473OWKDEZ2AK6V3JKJWXQLM4K1Z27YA0VS6ZROJNK2RVEGWWEQBNK0AAPXZUSCJUQKD4NOGVMX3T6BNJSAGTV6NJHQHPHUZ85YJXVUD9FM1K6RK855XRKYU4MVDNB6PH9NY9OGOHR5E04LA34YRE4L8P780ERJD5OAG347T8XAMB038NGQADTYLX3PDI0MN1IXYK1A1OEZC6AIED8IPYFMQ59QQGOGLP93' where id=97; -update noar tt set v0='PPZV0EDGI7ZL7GY81JGDYNOM2C58PD0MX2XFOC99C94BIPS89HBE0QWJM69W5TX37WICUILTDTERRFN8MNR4CK2WVKMXJI2LZAZTQTIKXDKIWXQZW34FCSP64P9QCAFNBDBJCODEGPCFVP5AZC3GYEXIMWB8IU7PVBUXK481YL49T4P99H0CI6WCMZBNEDT500DG6DE1F6QM5IQGW5I4MHQVKEHGMOYE8A66AC946MRUPJ8WMJ2CGBPTQT8VYYMUF' where id=98; -update noar ti set v0='PPZV0EDGI7ZL7GY81JGDYNOM2C58PD0MX2XFOC99C94BIPS89HBE0QWJM69W5TX37WICUILTDTERRFN8MNR4CK2WVKMXJI2LZAZTQTIKXDKIWXQZW34FCSP64P9QCAFNBDBJCODEGPCFVP5AZC3GYEXIMWB8IU7PVBUXK481YL49T4P99H0CI6WCMZBNEDT500DG6DE1F6QM5IQGW5I4MHQVKEHGMOYE8A66AC946MRUPJ8WMJ2CGBPTQT8VYYMUF' where id=98; -update noar tt set v1='MHE8ZHDRQMBO2NN7RQVMUJNFF1HZJLSBMHBYWO0YAZFO3D28C3O0GYH3IMCKBH8IOCIGWS89W56Y0J96HMUKJKCYOMWDTH02RYZ54WLQGERGQ3T92H7KUGYKS8OI06GGE04RAHEJ33BTF8KGBPCBJC62UP4K4T8X1M0MX4S8GIYGUTV0YKAAJVOPZTTMMYTK9KMCHHXTLHN36J88IFHW37N3J9FRTZDTI2EYW7XDNHYXZ6AB5XCNMQP8MMPVTO4M3' where id=98; -update noar ti set v1='MHE8ZHDRQMBO2NN7RQVMUJNFF1HZJLSBMHBYWO0YAZFO3D28C3O0GYH3IMCKBH8IOCIGWS89W56Y0J96HMUKJKCYOMWDTH02RYZ54WLQGERGQ3T92H7KUGYKS8OI06GGE04RAHEJ33BTF8KGBPCBJC62UP4K4T8X1M0MX4S8GIYGUTV0YKAAJVOPZTTMMYTK9KMCHHXTLHN36J88IFHW37N3J9FRTZDTI2EYW7XDNHYXZ6AB5XCNMQP8MMPVTO4M3' where id=98; -update noar tt set v2='SWJ9LT09OCC8EVXVTOFW27OXE71E9F49XOLWOG49Z8755GNPS5QH5X6AJ3IUPOGR0R6DQY9ABXIEZB3KQLRLMT50C7YVDJ0F4A3RRJ42N19UFEM34Y6115Y4UBLY7RA794MV1DZGDXR34T8KB6QR2ZFX3ZX8UT0965P9T2FR51JGBS3VOWPR5SD9IRGI9Y62NQ9WH569HZBM8IHAAVZ7Q9EZEE9J95ZYYC4QAOHY9GMUD2QMGEJYL5QSEC6MHXD4K' where id=98; -update noar ti set v2='SWJ9LT09OCC8EVXVTOFW27OXE71E9F49XOLWOG49Z8755GNPS5QH5X6AJ3IUPOGR0R6DQY9ABXIEZB3KQLRLMT50C7YVDJ0F4A3RRJ42N19UFEM34Y6115Y4UBLY7RA794MV1DZGDXR34T8KB6QR2ZFX3ZX8UT0965P9T2FR51JGBS3VOWPR5SD9IRGI9Y62NQ9WH569HZBM8IHAAVZ7Q9EZEE9J95ZYYC4QAOHY9GMUD2QMGEJYL5QSEC6MHXD4K' where id=98; -update noar tt set v3='JCOI29KEC0NYM1G3ZGCEYW8GGJKG8BZ5XNK0WKBWU0H0RN3XJ3GT5L2Y7LF0PHRE0KNCX9EOE6KMCPZJ5CWA88C6YAEGS4U5LNQ55CFUQCF8PIIT9VV4NHMV0MHM91D01NGTTVY3Z4B1O7QQNZGB52781EYNX0UT5OQMD19IETHNFI1FH80HS03RXPJRA49448T726CY77U5T338NONRYUF2PP40D3Z05LG8V0382Y7ULY0UR5ZVZ1BB812OQUEBT' where id=98; -update noar ti set v3='JCOI29KEC0NYM1G3ZGCEYW8GGJKG8BZ5XNK0WKBWU0H0RN3XJ3GT5L2Y7LF0PHRE0KNCX9EOE6KMCPZJ5CWA88C6YAEGS4U5LNQ55CFUQCF8PIIT9VV4NHMV0MHM91D01NGTTVY3Z4B1O7QQNZGB52781EYNX0UT5OQMD19IETHNFI1FH80HS03RXPJRA49448T726CY77U5T338NONRYUF2PP40D3Z05LG8V0382Y7ULY0UR5ZVZ1BB812OQUEBT' where id=98; -update noar tt set v0='L2I9WV9C7179KOVWGEBPR14V2R8KHW9ADCF27C1QS2LWYBOU4SIPEJK86PMMNGZQ5XDXPT4QNS3F5N8DN5L9V934ER2JYAA6PFZ61WPBVDB3WMEBAVQZ53B64V74RRA1Z6KC9EFI9ZGDJU45WJY7XIQGUUXRCI60EA6AUCYI36RON8K1E1Z4BSYK1N2GPWKPK8K25XEJWH99NK5BGSUZGMSDT15D6I2A9BNHMS4DUFFGTX9TBHKDULLZTUENPHXSB' where id=99; -update noar ti set v0='L2I9WV9C7179KOVWGEBPR14V2R8KHW9ADCF27C1QS2LWYBOU4SIPEJK86PMMNGZQ5XDXPT4QNS3F5N8DN5L9V934ER2JYAA6PFZ61WPBVDB3WMEBAVQZ53B64V74RRA1Z6KC9EFI9ZGDJU45WJY7XIQGUUXRCI60EA6AUCYI36RON8K1E1Z4BSYK1N2GPWKPK8K25XEJWH99NK5BGSUZGMSDT15D6I2A9BNHMS4DUFFGTX9TBHKDULLZTUENPHXSB' where id=99; -update noar tt set v1='3YNWGOW6CV4GMJAWES6GY0RIZLCYXJQV0GP9SB089WRV1LAIIQOEHS1NDVZTD0N5DJH6SFXIAR5B86F4F14CK9ND8RZOQ55X59PK3L7Z8E36UNTNFE5C1852AZEC1P1TY8QPINDZO5QBSBKRXOG0TWE4OAJ082PIO6KJZVMHDI5ANLKLPRP7N9O6OIFJLB5EM9M04SGFOWSRJDGPZJXGUUHUE9VRY21DM7A0RC6N3YZFNJG8Q6XQIY3J8JTQRO64V' where id=99; -update noar ti set v1='3YNWGOW6CV4GMJAWES6GY0RIZLCYXJQV0GP9SB089WRV1LAIIQOEHS1NDVZTD0N5DJH6SFXIAR5B86F4F14CK9ND8RZOQ55X59PK3L7Z8E36UNTNFE5C1852AZEC1P1TY8QPINDZO5QBSBKRXOG0TWE4OAJ082PIO6KJZVMHDI5ANLKLPRP7N9O6OIFJLB5EM9M04SGFOWSRJDGPZJXGUUHUE9VRY21DM7A0RC6N3YZFNJG8Q6XQIY3J8JTQRO64V' where id=99; -update noar tt set v2='2QS184OQUSY2T1FOAWQIE57GN9DGAXSDLAASV89Q3FBLHZXOLFJUFNBHVAHYXCG42R8PZL3BQ1RRAID83P7N4YMMGZDKG4UM7CKVVJN5M36MR574PDLC1ADMBHRFLO4CO39HP4LPUMMVY22M0QDSJILNIM4H7YUS32R8OE7MURE1N2GIRB93JQUHY5OZG743QWEY6Y98ADMP7P1YL3XDBSVZKQ2DVLN4NTC37HV3F1T0OZ5ATLLGTZPARNF4BII0A' where id=99; -update noar ti set v2='2QS184OQUSY2T1FOAWQIE57GN9DGAXSDLAASV89Q3FBLHZXOLFJUFNBHVAHYXCG42R8PZL3BQ1RRAID83P7N4YMMGZDKG4UM7CKVVJN5M36MR574PDLC1ADMBHRFLO4CO39HP4LPUMMVY22M0QDSJILNIM4H7YUS32R8OE7MURE1N2GIRB93JQUHY5OZG743QWEY6Y98ADMP7P1YL3XDBSVZKQ2DVLN4NTC37HV3F1T0OZ5ATLLGTZPARNF4BII0A' where id=99; -update noar tt set v3='GSTHW6G2VM1R3YG9RI9KQIMUAO37JPPXHVUL6AXRRA1AV2730CYIKKOQTAL1A2S4NFSV1YDKRWE854E2I7XY12GYDJ1P41WMFYOA3IW4UPAXR1JI5B5RNJI9IXZJEXOT7DWI6XUZ1GF6HDNU480SB6HNM6ZEJBROFRWEIK0T12CCTP7VOQ10H18WGEG5K9NCSGCO6B3328U663KYNC107S58LHXF02I2WI69CBGF3OE2ISAOYH2UIDN7PWFVR5XNL' where id=99; -update noar ti set v3='GSTHW6G2VM1R3YG9RI9KQIMUAO37JPPXHVUL6AXRRA1AV2730CYIKKOQTAL1A2S4NFSV1YDKRWE854E2I7XY12GYDJ1P41WMFYOA3IW4UPAXR1JI5B5RNJI9IXZJEXOT7DWI6XUZ1GF6HDNU480SB6HNM6ZEJBROFRWEIK0T12CCTP7VOQ10H18WGEG5K9NCSGCO6B3328U663KYNC107S58LHXF02I2WI69CBGF3OE2ISAOYH2UIDN7PWFVR5XNL' where id=99; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; +--source ../include/fast_update_gen_header.inc + +--let GENERATED=$MYSQL_TMP_DIR/generated_fast_update_varchar.inc + +--perl + my $nrows = 100; + open(FILE, '>', "$ENV{GENERATED}") or die; + foreach my $t ('varchar', 'varbinary') { + foreach my $l (32, 256) { + foreach my $n ('null', 'not null') { + test_varchar($t, $l, $n, $nrows) + } + } + } + close FILE; + + sub test_varchar { + my $t = shift; + my $l = shift; + my $n = shift; + my $nrows = shift; + + print FILE "create table tt (id bigint unsigned primary key,\n"; + print FILE " f0 int $n,\n"; + foreach my $i (0..3) { + print FILE " v$i $t($l) $n,\n"; + } + print FILE " b0 text $n\n"; + print FILE ") engine=tokudb;\n"; + + if ($n eq 'null') { + print FILE "insert into tt (id) values (0);\n"; + } + print FILE "insert into tt values (1, 2, 'a', 'b', 'c', 'd', 'e');\n"; + foreach my $i (2..($nrows - 1)) { + print FILE "insert into tt values ($i, ". + ($i + 1). + ", '', '', '', '', '');\n"; + } + + print FILE "create table ti like tt;\n"; + print FILE "alter table ti engine=innodb;\n"; + print FILE "insert into ti select * from tt;\n"; + + my @nulltest = ('null this', 'null is', 'null a', 'null test'); + foreach my $i (0..$#nulltest) { + print FILE "update tt set v$i = '$nulltest[$i] $i' where id = 0;\n"; + print FILE "update ti set v$i = '$nulltest[$i] $i' where id = 0;\n"; + } + + my @test = ('this' ,'is', 'another', 'test'); + foreach my $i (0..$#test) { + print FILE "update tt set v$i = '$test[$i] $i' where id = 1;\n"; + print FILE "update ti set v$i='$test[$i] $i' where id = 1;\n"; + } + + foreach my $id (2 .. ($nrows - 1)) { + foreach my $i (0 .. 3) { + my $long_str = rnd_str($l, ("A" .. "Z", 0 .. 9)); + print FILE "update tt set v$i='$long_str' where id=$id;\n"; + print FILE "update ti set v$i='$long_str' where id=$id;\n"; + } + } + + print FILE 'let $diff_tables = test.tt, test.ti;'."\n"; + print FILE "source include/diff_tables.inc;\n"; + + print FILE "drop table tt, ti;\n"; + } + + sub rnd_str { join '', @_[ map{ rand @_ } 1 .. shift ] } + +EOF + +--source ../include/fast_update_gen_footer_silent.inc diff --git a/storage/tokudb/mysql-test/tokudb/t/fast_upsert_bin_pad.test b/storage/tokudb/mysql-test/tokudb/t/fast_upsert_bin_pad.test index d1eb8500c55..5673c9d1542 100644 --- a/storage/tokudb/mysql-test/tokudb/t/fast_upsert_bin_pad.test +++ b/storage/tokudb/mysql-test/tokudb/t/fast_upsert_bin_pad.test @@ -1,21 +1,16 @@ source include/have_tokudb.inc; -set default_storage_engine='tokudb'; +set tokudb_enable_fast_upsert=1; +source ../include/setup_fast_update_upsert.inc; -disable_warnings; -drop table if exists t0, t1; -enable_warnings; - -set tokudb_disable_slow_upsert=1; - -create table t0 (id int primary key, b binary(32)); +create table t0 (id int primary key, b binary(32)) engine = tokudb; create table t1 like t0; -insert noar into t0 values (1,'hi'),(2,'there'); +insert into t0 values (1,'hi'),(2,'there'); select * from t0; -insert noar into t1 values (1,null),(2,null); -insert noar into t1 values (1,null) on duplicate key update b='hi'; -insert noar into t1 values (2,null) on duplicate key update b='there'; +insert into t1 values (1,null),(2,null); +insert into t1 values (1,null) on duplicate key update b='hi'; +insert into t1 values (2,null) on duplicate key update b='there'; select * from t1; let $diff_tables = test.t0, test.t1; diff --git a/storage/tokudb/mysql-test/tokudb/t/fast_upsert_char.test b/storage/tokudb/mysql-test/tokudb/t/fast_upsert_char.test index aa06b3202e4..afe4d3c86dc 100644 --- a/storage/tokudb/mysql-test/tokudb/t/fast_upsert_char.test +++ b/storage/tokudb/mysql-test/tokudb/t/fast_upsert_char.test @@ -1,35 +1,30 @@ source include/have_tokudb.inc; source include/have_innodb.inc; -set default_storage_engine='tokudb'; +set tokudb_enable_fast_upsert=1; +source ../include/setup_fast_update_upsert.inc; -disable_warnings; -drop table if exists tt, ti; -enable_warnings; - -set tokudb_disable_slow_upsert=1; - -create table tt (id int primary key, c char(32), b binary(32)); +create table tt (id int primary key, c char(32), b binary(32)) engine = tokudb; create table ti like tt; alter table ti engine=innodb; -insert noar into tt values (1,null,null) on duplicate key update c='hi'; -insert noar into ti values (1,null,null) on duplicate key update c='hi'; +insert into tt values (1,null,null) on duplicate key update c='hi'; +insert into ti values (1,null,null) on duplicate key update c='hi'; let $diff_tables = test.tt, test.ti; source include/diff_tables.inc; -insert noar into tt values (1,null,null) on duplicate key update c='there'; -insert noar into ti values (1,null,null) on duplicate key update c='there'; +insert into tt values (1,null,null) on duplicate key update c='there'; +insert into ti values (1,null,null) on duplicate key update c='there'; let $diff_tables = test.tt, test.ti; source include/diff_tables.inc; -insert noar into tt values (1,null,null) on duplicate key update b='you'; -insert noar into ti values (1,null,null) on duplicate key update b='you'; +insert into tt values (1,null,null) on duplicate key update b='you'; +insert into ti values (1,null,null) on duplicate key update b='you'; let $diff_tables = test.tt, test.ti; source include/diff_tables.inc; -insert noar into tt values (1,null,null) on duplicate key update b='people'; -insert noar into ti values (1,null,null) on duplicate key update b='people'; +insert into tt values (1,null,null) on duplicate key update b='people'; +insert into ti values (1,null,null) on duplicate key update b='people'; let $diff_tables = test.tt, test.ti; source include/diff_tables.inc; diff --git a/storage/tokudb/mysql-test/tokudb/t/fast_upsert_deadlock.test b/storage/tokudb/mysql-test/tokudb/t/fast_upsert_deadlock.test index 66b212f3c24..63452a4766f 100644 --- a/storage/tokudb/mysql-test/tokudb/t/fast_upsert_deadlock.test +++ b/storage/tokudb/mysql-test/tokudb/t/fast_upsert_deadlock.test @@ -1,30 +1,32 @@ source include/have_tokudb.inc; -disable_warnings; -drop table if exists t; -enable_warnings; +set tokudb_enable_fast_upsert=1; +source ../include/setup_fast_update_upsert.inc; -set default_storage_engine='tokudb'; - -create table t (id bigint primary key, b bigint not null default 0); +create table t (id bigint primary key, b bigint not null default 0) + engine = tokudb; connect (conn1,localhost,root,,); +SET SESSION sql_mode=(SELECT REPLACE(@@sql_mode,'STRICT_TRANS_TABLES','')); +SET SESSION sql_mode=(SELECT REPLACE(@@sql_mode,'STRICT_ALL_TABLES','')); + +set tokudb_enable_fast_upsert=1; connection default; begin; -insert noar into t (id) values (1) on duplicate key update b=b+1; +insert into t (id) values (1) on duplicate key update b=b+1; connection conn1; begin; -insert noar into t (id) values (2) on duplicate key update b=b-1; +insert into t (id) values (2) on duplicate key update b=b-1; connection default; -send insert noar into t (id) values (2) on duplicate key update b=b+1; +send insert into t (id) values (2) on duplicate key update b=b+1; connection conn1; sleep 1; error 1205,1213; -insert noar into t (id) values (1) on duplicate key update b=b-1; +insert into t (id) values (1) on duplicate key update b=b-1; rollback; connection default; diff --git a/storage/tokudb/mysql-test/tokudb/t/fast_upsert_int.py b/storage/tokudb/mysql-test/tokudb/t/fast_upsert_int.py deleted file mode 100644 index a19227ec20d..00000000000 --- a/storage/tokudb/mysql-test/tokudb/t/fast_upsert_int.py +++ /dev/null @@ -1,50 +0,0 @@ -#!/usr/bin/env python - -import sys - -def main(): - print "# generated by tokudb_upsert_int.py" - print "source include/have_tokudb.inc;" - print "source include/have_innodb.inc;" - print "set default_storage_engine='tokudb';" - print "disable_warnings;" - print "drop table if exists tt, ti;" - print "enable_warnings;" - - print "set tokudb_disable_slow_update=1;" - - for t in [ 'tinyint', 'smallint', 'mediumint', 'int', 'bigint' ]: - for u in [ '', 'unsigned' ]: - for n in [ 'null', 'not null' ]: - test_upsert_int(t, u, n) - return 0 - -def test_upsert_int(t, u, n): - print "create table tt (" - print " id %s %s %s primary key," % (t, u, n) - if n == 'not null': n += ' default 0' - print " x %s %s %s," % (t, u, n) - print " y %s %s %s," % (t, u, n) - print " z %s %s %s," % (t, u, n) - print " a char(32), aa varchar(32)" - print ");" - print "insert noar into tt (id) values (1),(2),(3) on duplicate key update x=0;" - print "insert noar into tt (id) values (1) on duplicate key update y=0,z=42;" - print "insert noar into tt (id) values (1) on duplicate key update y=y+1,z=z+100;" - print "insert noar into tt (id) values (1) on duplicate key update y=y-1;" - print "insert noar into tt (id) values (1) on duplicate key update z=z-100;" - - print "create table ti like tt;" - print "alter table ti engine=innodb;" - print "insert noar into ti (id) values (1),(2),(3) on duplicate key update x=0;" - print "insert noar into ti (id) values (1) on duplicate key update y=0,z=42;" - print "insert noar into ti (id) values (1) on duplicate key update y=y+1,z=z+100;" - print "insert noar into ti (id) values (1) on duplicate key update y=y-1;" - print "insert noar into ti (id) values (1) on duplicate key update z=z-100;" - - print "let $diff_tables = test.tt, test.ti;" - print "source include/diff_tables.inc;" - - print "drop table tt, ti;" - -sys.exit(main()) diff --git a/storage/tokudb/mysql-test/tokudb/t/fast_upsert_int.test b/storage/tokudb/mysql-test/tokudb/t/fast_upsert_int.test index 9f44f6b461c..7253fb5922c 100644 --- a/storage/tokudb/mysql-test/tokudb/t/fast_upsert_int.test +++ b/storage/tokudb/mysql-test/tokudb/t/fast_upsert_int.test @@ -1,448 +1,38 @@ -# generated by tokudb_upsert_int.py -source include/have_tokudb.inc; -source include/have_innodb.inc; -set default_storage_engine='tokudb'; -disable_warnings; -drop table if exists tt, ti; -enable_warnings; -set tokudb_disable_slow_update=1; -create table tt ( - id tinyint null primary key, - x tinyint null, - y tinyint null, - z tinyint null, - a char(32), aa varchar(32) -); -insert noar into tt (id) values (1),(2),(3) on duplicate key update x=0; -insert noar into tt (id) values (1) on duplicate key update y=0,z=42; -insert noar into tt (id) values (1) on duplicate key update y=y+1,z=z+100; -insert noar into tt (id) values (1) on duplicate key update y=y-1; -insert noar into tt (id) values (1) on duplicate key update z=z-100; -create table ti like tt; -alter table ti engine=innodb; -insert noar into ti (id) values (1),(2),(3) on duplicate key update x=0; -insert noar into ti (id) values (1) on duplicate key update y=0,z=42; -insert noar into ti (id) values (1) on duplicate key update y=y+1,z=z+100; -insert noar into ti (id) values (1) on duplicate key update y=y-1; -insert noar into ti (id) values (1) on duplicate key update z=z-100; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt ( - id tinyint not null primary key, - x tinyint not null default 0, - y tinyint not null default 0, - z tinyint not null default 0, - a char(32), aa varchar(32) -); -insert noar into tt (id) values (1),(2),(3) on duplicate key update x=0; -insert noar into tt (id) values (1) on duplicate key update y=0,z=42; -insert noar into tt (id) values (1) on duplicate key update y=y+1,z=z+100; -insert noar into tt (id) values (1) on duplicate key update y=y-1; -insert noar into tt (id) values (1) on duplicate key update z=z-100; -create table ti like tt; -alter table ti engine=innodb; -insert noar into ti (id) values (1),(2),(3) on duplicate key update x=0; -insert noar into ti (id) values (1) on duplicate key update y=0,z=42; -insert noar into ti (id) values (1) on duplicate key update y=y+1,z=z+100; -insert noar into ti (id) values (1) on duplicate key update y=y-1; -insert noar into ti (id) values (1) on duplicate key update z=z-100; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt ( - id tinyint unsigned null primary key, - x tinyint unsigned null, - y tinyint unsigned null, - z tinyint unsigned null, - a char(32), aa varchar(32) -); -insert noar into tt (id) values (1),(2),(3) on duplicate key update x=0; -insert noar into tt (id) values (1) on duplicate key update y=0,z=42; -insert noar into tt (id) values (1) on duplicate key update y=y+1,z=z+100; -insert noar into tt (id) values (1) on duplicate key update y=y-1; -insert noar into tt (id) values (1) on duplicate key update z=z-100; -create table ti like tt; -alter table ti engine=innodb; -insert noar into ti (id) values (1),(2),(3) on duplicate key update x=0; -insert noar into ti (id) values (1) on duplicate key update y=0,z=42; -insert noar into ti (id) values (1) on duplicate key update y=y+1,z=z+100; -insert noar into ti (id) values (1) on duplicate key update y=y-1; -insert noar into ti (id) values (1) on duplicate key update z=z-100; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt ( - id tinyint unsigned not null primary key, - x tinyint unsigned not null default 0, - y tinyint unsigned not null default 0, - z tinyint unsigned not null default 0, - a char(32), aa varchar(32) -); -insert noar into tt (id) values (1),(2),(3) on duplicate key update x=0; -insert noar into tt (id) values (1) on duplicate key update y=0,z=42; -insert noar into tt (id) values (1) on duplicate key update y=y+1,z=z+100; -insert noar into tt (id) values (1) on duplicate key update y=y-1; -insert noar into tt (id) values (1) on duplicate key update z=z-100; -create table ti like tt; -alter table ti engine=innodb; -insert noar into ti (id) values (1),(2),(3) on duplicate key update x=0; -insert noar into ti (id) values (1) on duplicate key update y=0,z=42; -insert noar into ti (id) values (1) on duplicate key update y=y+1,z=z+100; -insert noar into ti (id) values (1) on duplicate key update y=y-1; -insert noar into ti (id) values (1) on duplicate key update z=z-100; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt ( - id smallint null primary key, - x smallint null, - y smallint null, - z smallint null, - a char(32), aa varchar(32) -); -insert noar into tt (id) values (1),(2),(3) on duplicate key update x=0; -insert noar into tt (id) values (1) on duplicate key update y=0,z=42; -insert noar into tt (id) values (1) on duplicate key update y=y+1,z=z+100; -insert noar into tt (id) values (1) on duplicate key update y=y-1; -insert noar into tt (id) values (1) on duplicate key update z=z-100; -create table ti like tt; -alter table ti engine=innodb; -insert noar into ti (id) values (1),(2),(3) on duplicate key update x=0; -insert noar into ti (id) values (1) on duplicate key update y=0,z=42; -insert noar into ti (id) values (1) on duplicate key update y=y+1,z=z+100; -insert noar into ti (id) values (1) on duplicate key update y=y-1; -insert noar into ti (id) values (1) on duplicate key update z=z-100; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt ( - id smallint not null primary key, - x smallint not null default 0, - y smallint not null default 0, - z smallint not null default 0, - a char(32), aa varchar(32) -); -insert noar into tt (id) values (1),(2),(3) on duplicate key update x=0; -insert noar into tt (id) values (1) on duplicate key update y=0,z=42; -insert noar into tt (id) values (1) on duplicate key update y=y+1,z=z+100; -insert noar into tt (id) values (1) on duplicate key update y=y-1; -insert noar into tt (id) values (1) on duplicate key update z=z-100; -create table ti like tt; -alter table ti engine=innodb; -insert noar into ti (id) values (1),(2),(3) on duplicate key update x=0; -insert noar into ti (id) values (1) on duplicate key update y=0,z=42; -insert noar into ti (id) values (1) on duplicate key update y=y+1,z=z+100; -insert noar into ti (id) values (1) on duplicate key update y=y-1; -insert noar into ti (id) values (1) on duplicate key update z=z-100; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt ( - id smallint unsigned null primary key, - x smallint unsigned null, - y smallint unsigned null, - z smallint unsigned null, - a char(32), aa varchar(32) -); -insert noar into tt (id) values (1),(2),(3) on duplicate key update x=0; -insert noar into tt (id) values (1) on duplicate key update y=0,z=42; -insert noar into tt (id) values (1) on duplicate key update y=y+1,z=z+100; -insert noar into tt (id) values (1) on duplicate key update y=y-1; -insert noar into tt (id) values (1) on duplicate key update z=z-100; -create table ti like tt; -alter table ti engine=innodb; -insert noar into ti (id) values (1),(2),(3) on duplicate key update x=0; -insert noar into ti (id) values (1) on duplicate key update y=0,z=42; -insert noar into ti (id) values (1) on duplicate key update y=y+1,z=z+100; -insert noar into ti (id) values (1) on duplicate key update y=y-1; -insert noar into ti (id) values (1) on duplicate key update z=z-100; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt ( - id smallint unsigned not null primary key, - x smallint unsigned not null default 0, - y smallint unsigned not null default 0, - z smallint unsigned not null default 0, - a char(32), aa varchar(32) -); -insert noar into tt (id) values (1),(2),(3) on duplicate key update x=0; -insert noar into tt (id) values (1) on duplicate key update y=0,z=42; -insert noar into tt (id) values (1) on duplicate key update y=y+1,z=z+100; -insert noar into tt (id) values (1) on duplicate key update y=y-1; -insert noar into tt (id) values (1) on duplicate key update z=z-100; -create table ti like tt; -alter table ti engine=innodb; -insert noar into ti (id) values (1),(2),(3) on duplicate key update x=0; -insert noar into ti (id) values (1) on duplicate key update y=0,z=42; -insert noar into ti (id) values (1) on duplicate key update y=y+1,z=z+100; -insert noar into ti (id) values (1) on duplicate key update y=y-1; -insert noar into ti (id) values (1) on duplicate key update z=z-100; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt ( - id mediumint null primary key, - x mediumint null, - y mediumint null, - z mediumint null, - a char(32), aa varchar(32) -); -insert noar into tt (id) values (1),(2),(3) on duplicate key update x=0; -insert noar into tt (id) values (1) on duplicate key update y=0,z=42; -insert noar into tt (id) values (1) on duplicate key update y=y+1,z=z+100; -insert noar into tt (id) values (1) on duplicate key update y=y-1; -insert noar into tt (id) values (1) on duplicate key update z=z-100; -create table ti like tt; -alter table ti engine=innodb; -insert noar into ti (id) values (1),(2),(3) on duplicate key update x=0; -insert noar into ti (id) values (1) on duplicate key update y=0,z=42; -insert noar into ti (id) values (1) on duplicate key update y=y+1,z=z+100; -insert noar into ti (id) values (1) on duplicate key update y=y-1; -insert noar into ti (id) values (1) on duplicate key update z=z-100; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt ( - id mediumint not null primary key, - x mediumint not null default 0, - y mediumint not null default 0, - z mediumint not null default 0, - a char(32), aa varchar(32) -); -insert noar into tt (id) values (1),(2),(3) on duplicate key update x=0; -insert noar into tt (id) values (1) on duplicate key update y=0,z=42; -insert noar into tt (id) values (1) on duplicate key update y=y+1,z=z+100; -insert noar into tt (id) values (1) on duplicate key update y=y-1; -insert noar into tt (id) values (1) on duplicate key update z=z-100; -create table ti like tt; -alter table ti engine=innodb; -insert noar into ti (id) values (1),(2),(3) on duplicate key update x=0; -insert noar into ti (id) values (1) on duplicate key update y=0,z=42; -insert noar into ti (id) values (1) on duplicate key update y=y+1,z=z+100; -insert noar into ti (id) values (1) on duplicate key update y=y-1; -insert noar into ti (id) values (1) on duplicate key update z=z-100; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt ( - id mediumint unsigned null primary key, - x mediumint unsigned null, - y mediumint unsigned null, - z mediumint unsigned null, - a char(32), aa varchar(32) -); -insert noar into tt (id) values (1),(2),(3) on duplicate key update x=0; -insert noar into tt (id) values (1) on duplicate key update y=0,z=42; -insert noar into tt (id) values (1) on duplicate key update y=y+1,z=z+100; -insert noar into tt (id) values (1) on duplicate key update y=y-1; -insert noar into tt (id) values (1) on duplicate key update z=z-100; -create table ti like tt; -alter table ti engine=innodb; -insert noar into ti (id) values (1),(2),(3) on duplicate key update x=0; -insert noar into ti (id) values (1) on duplicate key update y=0,z=42; -insert noar into ti (id) values (1) on duplicate key update y=y+1,z=z+100; -insert noar into ti (id) values (1) on duplicate key update y=y-1; -insert noar into ti (id) values (1) on duplicate key update z=z-100; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt ( - id mediumint unsigned not null primary key, - x mediumint unsigned not null default 0, - y mediumint unsigned not null default 0, - z mediumint unsigned not null default 0, - a char(32), aa varchar(32) -); -insert noar into tt (id) values (1),(2),(3) on duplicate key update x=0; -insert noar into tt (id) values (1) on duplicate key update y=0,z=42; -insert noar into tt (id) values (1) on duplicate key update y=y+1,z=z+100; -insert noar into tt (id) values (1) on duplicate key update y=y-1; -insert noar into tt (id) values (1) on duplicate key update z=z-100; -create table ti like tt; -alter table ti engine=innodb; -insert noar into ti (id) values (1),(2),(3) on duplicate key update x=0; -insert noar into ti (id) values (1) on duplicate key update y=0,z=42; -insert noar into ti (id) values (1) on duplicate key update y=y+1,z=z+100; -insert noar into ti (id) values (1) on duplicate key update y=y-1; -insert noar into ti (id) values (1) on duplicate key update z=z-100; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt ( - id int null primary key, - x int null, - y int null, - z int null, - a char(32), aa varchar(32) -); -insert noar into tt (id) values (1),(2),(3) on duplicate key update x=0; -insert noar into tt (id) values (1) on duplicate key update y=0,z=42; -insert noar into tt (id) values (1) on duplicate key update y=y+1,z=z+100; -insert noar into tt (id) values (1) on duplicate key update y=y-1; -insert noar into tt (id) values (1) on duplicate key update z=z-100; -create table ti like tt; -alter table ti engine=innodb; -insert noar into ti (id) values (1),(2),(3) on duplicate key update x=0; -insert noar into ti (id) values (1) on duplicate key update y=0,z=42; -insert noar into ti (id) values (1) on duplicate key update y=y+1,z=z+100; -insert noar into ti (id) values (1) on duplicate key update y=y-1; -insert noar into ti (id) values (1) on duplicate key update z=z-100; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt ( - id int not null primary key, - x int not null default 0, - y int not null default 0, - z int not null default 0, - a char(32), aa varchar(32) -); -insert noar into tt (id) values (1),(2),(3) on duplicate key update x=0; -insert noar into tt (id) values (1) on duplicate key update y=0,z=42; -insert noar into tt (id) values (1) on duplicate key update y=y+1,z=z+100; -insert noar into tt (id) values (1) on duplicate key update y=y-1; -insert noar into tt (id) values (1) on duplicate key update z=z-100; -create table ti like tt; -alter table ti engine=innodb; -insert noar into ti (id) values (1),(2),(3) on duplicate key update x=0; -insert noar into ti (id) values (1) on duplicate key update y=0,z=42; -insert noar into ti (id) values (1) on duplicate key update y=y+1,z=z+100; -insert noar into ti (id) values (1) on duplicate key update y=y-1; -insert noar into ti (id) values (1) on duplicate key update z=z-100; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt ( - id int unsigned null primary key, - x int unsigned null, - y int unsigned null, - z int unsigned null, - a char(32), aa varchar(32) -); -insert noar into tt (id) values (1),(2),(3) on duplicate key update x=0; -insert noar into tt (id) values (1) on duplicate key update y=0,z=42; -insert noar into tt (id) values (1) on duplicate key update y=y+1,z=z+100; -insert noar into tt (id) values (1) on duplicate key update y=y-1; -insert noar into tt (id) values (1) on duplicate key update z=z-100; -create table ti like tt; -alter table ti engine=innodb; -insert noar into ti (id) values (1),(2),(3) on duplicate key update x=0; -insert noar into ti (id) values (1) on duplicate key update y=0,z=42; -insert noar into ti (id) values (1) on duplicate key update y=y+1,z=z+100; -insert noar into ti (id) values (1) on duplicate key update y=y-1; -insert noar into ti (id) values (1) on duplicate key update z=z-100; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt ( - id int unsigned not null primary key, - x int unsigned not null default 0, - y int unsigned not null default 0, - z int unsigned not null default 0, - a char(32), aa varchar(32) -); -insert noar into tt (id) values (1),(2),(3) on duplicate key update x=0; -insert noar into tt (id) values (1) on duplicate key update y=0,z=42; -insert noar into tt (id) values (1) on duplicate key update y=y+1,z=z+100; -insert noar into tt (id) values (1) on duplicate key update y=y-1; -insert noar into tt (id) values (1) on duplicate key update z=z-100; -create table ti like tt; -alter table ti engine=innodb; -insert noar into ti (id) values (1),(2),(3) on duplicate key update x=0; -insert noar into ti (id) values (1) on duplicate key update y=0,z=42; -insert noar into ti (id) values (1) on duplicate key update y=y+1,z=z+100; -insert noar into ti (id) values (1) on duplicate key update y=y-1; -insert noar into ti (id) values (1) on duplicate key update z=z-100; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt ( - id bigint null primary key, - x bigint null, - y bigint null, - z bigint null, - a char(32), aa varchar(32) -); -insert noar into tt (id) values (1),(2),(3) on duplicate key update x=0; -insert noar into tt (id) values (1) on duplicate key update y=0,z=42; -insert noar into tt (id) values (1) on duplicate key update y=y+1,z=z+100; -insert noar into tt (id) values (1) on duplicate key update y=y-1; -insert noar into tt (id) values (1) on duplicate key update z=z-100; -create table ti like tt; -alter table ti engine=innodb; -insert noar into ti (id) values (1),(2),(3) on duplicate key update x=0; -insert noar into ti (id) values (1) on duplicate key update y=0,z=42; -insert noar into ti (id) values (1) on duplicate key update y=y+1,z=z+100; -insert noar into ti (id) values (1) on duplicate key update y=y-1; -insert noar into ti (id) values (1) on duplicate key update z=z-100; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt ( - id bigint not null primary key, - x bigint not null default 0, - y bigint not null default 0, - z bigint not null default 0, - a char(32), aa varchar(32) -); -insert noar into tt (id) values (1),(2),(3) on duplicate key update x=0; -insert noar into tt (id) values (1) on duplicate key update y=0,z=42; -insert noar into tt (id) values (1) on duplicate key update y=y+1,z=z+100; -insert noar into tt (id) values (1) on duplicate key update y=y-1; -insert noar into tt (id) values (1) on duplicate key update z=z-100; -create table ti like tt; -alter table ti engine=innodb; -insert noar into ti (id) values (1),(2),(3) on duplicate key update x=0; -insert noar into ti (id) values (1) on duplicate key update y=0,z=42; -insert noar into ti (id) values (1) on duplicate key update y=y+1,z=z+100; -insert noar into ti (id) values (1) on duplicate key update y=y-1; -insert noar into ti (id) values (1) on duplicate key update z=z-100; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt ( - id bigint unsigned null primary key, - x bigint unsigned null, - y bigint unsigned null, - z bigint unsigned null, - a char(32), aa varchar(32) -); -insert noar into tt (id) values (1),(2),(3) on duplicate key update x=0; -insert noar into tt (id) values (1) on duplicate key update y=0,z=42; -insert noar into tt (id) values (1) on duplicate key update y=y+1,z=z+100; -insert noar into tt (id) values (1) on duplicate key update y=y-1; -insert noar into tt (id) values (1) on duplicate key update z=z-100; -create table ti like tt; -alter table ti engine=innodb; -insert noar into ti (id) values (1),(2),(3) on duplicate key update x=0; -insert noar into ti (id) values (1) on duplicate key update y=0,z=42; -insert noar into ti (id) values (1) on duplicate key update y=y+1,z=z+100; -insert noar into ti (id) values (1) on duplicate key update y=y-1; -insert noar into ti (id) values (1) on duplicate key update z=z-100; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; -create table tt ( - id bigint unsigned not null primary key, - x bigint unsigned not null default 0, - y bigint unsigned not null default 0, - z bigint unsigned not null default 0, - a char(32), aa varchar(32) -); -insert noar into tt (id) values (1),(2),(3) on duplicate key update x=0; -insert noar into tt (id) values (1) on duplicate key update y=0,z=42; -insert noar into tt (id) values (1) on duplicate key update y=y+1,z=z+100; -insert noar into tt (id) values (1) on duplicate key update y=y-1; -insert noar into tt (id) values (1) on duplicate key update z=z-100; -create table ti like tt; -alter table ti engine=innodb; -insert noar into ti (id) values (1),(2),(3) on duplicate key update x=0; -insert noar into ti (id) values (1) on duplicate key update y=0,z=42; -insert noar into ti (id) values (1) on duplicate key update y=y+1,z=z+100; -insert noar into ti (id) values (1) on duplicate key update y=y-1; -insert noar into ti (id) values (1) on duplicate key update z=z-100; -let $diff_tables = test.tt, test.ti; -source include/diff_tables.inc; -drop table tt, ti; +--source ../include/fast_upsert_gen_header.inc + +--let GENERATED=$MYSQL_TMP_DIR/generated_fast_upsert_int.inc + +--perl + + open(FILE, '>', "$ENV{GENERATED}") or die; + my @blob_types = (); + foreach my $t ('tinyint', 'smallint', 'mediumint', 'int', 'bigint') { + foreach my $u ('', 'unsigned') { + foreach my $n ('null', 'not null') { + test_upsert_int($t, $u, $n) + } + } + } + close FILE; + + sub test_upsert_int { + my $t = shift; + my $u = shift; + my $n = shift; + + print FILE "create table tt (\n"; + print FILE " id $t $u primary key,\n"; + $n .= ' default 0' if ($n eq 'not null'); + print FILE " x $t $u $n,\n"; + print FILE " y $t $u $n,\n"; + print FILE " z $t $u $n,\n"; + print FILE " a char(32), aa varchar(32)\n"; + print FILE ") engine = tokudb;\n"; + + print FILE "--source $ENV{MYSQL_CURRENT_TEST_DIR}/../include/". + "fast_upsert_int.inc\n\n"; + } + +EOF + +--source ../include/fast_update_gen_footer_silent.inc diff --git a/storage/tokudb/mysql-test/tokudb/t/fast_upsert_key.test b/storage/tokudb/mysql-test/tokudb/t/fast_upsert_key.test index c11f2f49176..b495f6c955b 100644 --- a/storage/tokudb/mysql-test/tokudb/t/fast_upsert_key.test +++ b/storage/tokudb/mysql-test/tokudb/t/fast_upsert_key.test @@ -1,45 +1,57 @@ source include/have_tokudb.inc; -set default_storage_engine='tokudb'; - -disable_warnings; -drop table if exists t; -enable_warnings; - -set tokudb_disable_slow_upsert=1; +set tokudb_enable_fast_upsert=1; +source ../include/setup_fast_update_upsert.inc; # must have primary key -create table t (a int, b char(32), c varchar(32), d blob); +create table t (a int, b char(32), c varchar(32), d blob) engine = tokudb; replace_regex /MariaDB/XYZ/ /MySQL/XYZ/; error ER_UNSUPPORTED_EXTENSION; -insert noar into t values (1,null,null,null) on duplicate key update a=42; +insert into t values (1,null,null,null) on duplicate key update a=42; drop table t; # must have no clustering keys -create table t (id int primary key, a int, b char(32), c varchar(32), d blob, clustering key(a)); +create table t (id int primary key, + a int, b char(32), + c varchar(32), + d blob, + clustering key(a)) engine = tokudb; replace_regex /MariaDB/XYZ/ /MySQL/XYZ/; error ER_UNSUPPORTED_EXTENSION; -insert noar into t values (1,null,null,null,null) on duplicate key update a=42; +insert into t values (1,null,null,null,null) on duplicate key update a=42; drop table t; # must have no secondary keys -create table t (id int primary key, a int, b char(32), c varchar(32), d blob, key(c)); +create table t (id int primary key, + a int, + b char(32), + c varchar(32), + d blob, + key(c)) engine = tokudb ; replace_regex /MariaDB/XYZ/ /MySQL/XYZ/; error ER_UNSUPPORTED_EXTENSION; -insert noar into t values (1,null,null,null,null) on duplicate key update a=42; +insert into t values (1,null,null,null,null) on duplicate key update a=42; drop table t; # update field must not be part of any key -create table t (id int, a int, b char(32), c varchar(32), d blob, primary key(id, a)); +create table t (id int, + a int, b char(32), + c varchar(32), + d blob, + primary key(id, a)) engine = tokudb; replace_regex /MariaDB/XYZ/ /MySQL/XYZ/; error ER_UNSUPPORTED_EXTENSION; -insert noar into t values (1,2,null,null,null) on duplicate key update a=42; +insert into t values (1,2,null,null,null) on duplicate key update a=42; drop table t; -create table t (id int, a int, b char(32), c varchar(32), d blob, primary key(a, id)); +create table t (id int, + a int, b char(32), + c varchar(32), + d blob, + primary key(a, id)) engine = tokudb; replace_regex /MariaDB/XYZ/ /MySQL/XYZ/; error ER_UNSUPPORTED_EXTENSION; -insert noar into t values (1,2,null,null,null) on duplicate key update a=42; +insert into t values (1,2,null,null,null) on duplicate key update a=42; drop table t; diff --git a/storage/tokudb/mysql-test/tokudb/t/fast_upsert_sqlmode.test b/storage/tokudb/mysql-test/tokudb/t/fast_upsert_sqlmode.test index b83918d3412..714d11890cf 100644 --- a/storage/tokudb/mysql-test/tokudb/t/fast_upsert_sqlmode.test +++ b/storage/tokudb/mysql-test/tokudb/t/fast_upsert_sqlmode.test @@ -1,36 +1,29 @@ source include/have_tokudb.inc; -set default_storage_engine='tokudb'; - -disable_warnings; -drop table if exists t; -enable_warnings; - -set tokudb_disable_slow_upsert=1; +set tokudb_enable_fast_upsert=1; +source ../include/setup_fast_update_upsert.inc; let $default_sql_mode = `select @@session.sql_mode`; -create table t (id int primary key, x int not null); -insert noar into t values (1,0); -insert noar into t values (1,0) on duplicate key update x=42; -insert noar into t values (1,0) on duplicate key update x=x+1; -insert noar into t values (1,0) on duplicate key update x=x-1; +create table t (id int primary key, x int not null) engine = tokudb; +insert into t values (1,0); +insert into t values (1,0) on duplicate key update x=42; +insert into t values (1,0) on duplicate key update x=x+1; +insert into t values (1,0) on duplicate key update x=x-1; eval set session sql_mode="$default_sql_mode,traditional"; replace_regex /MariaDB/XYZ/ /MySQL/XYZ/; error ER_UNSUPPORTED_EXTENSION; -insert noar into t values (1,0) on duplicate key update x=42; +insert into t values (1,0) on duplicate key update x=42; replace_regex /MariaDB/XYZ/ /MySQL/XYZ/; error ER_UNSUPPORTED_EXTENSION; -insert noar into t values (1,0) on duplicate key update x=x+1; +insert into t values (1,0) on duplicate key update x=x+1; replace_regex /MariaDB/XYZ/ /MySQL/XYZ/; error ER_UNSUPPORTED_EXTENSION; -insert noar into t values (1,0) on duplicate key update x=x-1; - -eval set session sql_mode="$default_sql_mode"; +insert into t values (1,0) on duplicate key update x=x-1; drop table t; diff --git a/storage/tokudb/mysql-test/tokudb/t/fast_upsert_values.test b/storage/tokudb/mysql-test/tokudb/t/fast_upsert_values.test index cd258836ffb..a0b7cf408a6 100644 --- a/storage/tokudb/mysql-test/tokudb/t/fast_upsert_values.test +++ b/storage/tokudb/mysql-test/tokudb/t/fast_upsert_values.test @@ -2,29 +2,24 @@ source include/have_tokudb.inc; -set default_storage_engine='tokudb'; +source ../include/setup_fast_update_upsert.inc; +set tokudb_enable_fast_upsert=1; -disable_warnings; -drop table if exists t; -enable_warnings; +create table t (id int primary key, x int not null) engine = tokudb; -set tokudb_disable_slow_upsert=1; - -create table t (id int primary key, x int not null); - -insert noar into t values (1,1); -insert noar into t values (1,1) on duplicate key update x=x+1; +insert into t values (1,1); +insert into t values (1,1) on duplicate key update x=x+1; select * from t; replace_regex /MariaDB/XYZ/ /MySQL/XYZ/; error ER_UNSUPPORTED_EXTENSION; -insert noar into t values (1,10) on duplicate key update x=values(x)+1; +insert into t values (1,10) on duplicate key update x=values(x)+1; select * from t; -insert noar into t values (1,10) on duplicate key update x=x+values(x); +insert into t values (1,10) on duplicate key update x=x+values(x); select * from t; -insert noar into t values (1,100) on duplicate key update x=x+values(x); +insert into t values (1,100) on duplicate key update x=x+values(x); select * from t; drop table t; diff --git a/storage/tokudb/mysql-test/tokudb/t/tokudb_mrr.test b/storage/tokudb/mysql-test/tokudb/t/tokudb_mrr.test new file mode 100644 index 00000000000..b30bc18d759 --- /dev/null +++ b/storage/tokudb/mysql-test/tokudb/t/tokudb_mrr.test @@ -0,0 +1,89 @@ +# +# MRR/Tokudb tests, taken from mysqltest/t/innodb_mrr.test +# (Turns off all other 6.0 optimizer switches than MRR) +# + +--source include/have_tokudb.inc +--source include/have_mrr.inc + +set optimizer_switch='mrr=on,mrr_cost_based=off'; + +--disable_query_log +if (`select locate('semijoin', @@optimizer_switch) > 0`) +{ + set optimizer_switch='semijoin=off'; +} +if (`select locate('materialization', @@optimizer_switch) > 0`) +{ + set optimizer_switch='materialization=off'; +} +if (`select locate('index_condition_pushdown', @@optimizer_switch) > 0`) +{ + set optimizer_switch='index_condition_pushdown=off'; +} +--enable_query_log + +set default_storage_engine=TokuDB; + +--source include/mrr_tests.inc + + +# taken from include/mrr_innodb_tests.inc + +--source include/count_sessions.inc + +# MRR tests that are special for InnoDB (and copied for TokuDB) + +--echo # +--echo # Bug#41029 "MRR: SELECT FOR UPDATE fails to lock gaps (InnoDB table)" +--echo # + +# This test verifies that a SELECT FOR UPDATE statement executed in +# REPEATABLE READ isolation will lock the entire read interval by verifying +# that a second transaction trying to update data within this interval will +# be blocked. + +connect (con1,localhost,root,,); +connect (con2,localhost,root,,); + +connection con1; + +SET AUTOCOMMIT=0; + +CREATE TABLE t1 ( + dummy INT PRIMARY KEY, + a INT UNIQUE, + b INT +) ENGINE=TokuDB; + +INSERT INTO t1 VALUES (1,1,1),(3,3,3),(5,5,5); +COMMIT; + +SET SESSION TRANSACTION ISOLATION LEVEL REPEATABLE READ; +SELECT @@tx_isolation; +START TRANSACTION; + +EXPLAIN SELECT * FROM t1 WHERE a >= 2 FOR UPDATE; + +SELECT * FROM t1 WHERE a >= 2 FOR UPDATE; + +connection con2; + +SET AUTOCOMMIT=0; +SET TOKUDB_LOCK_TIMEOUT=2; +START TRANSACTION; + +--error ER_LOCK_WAIT_TIMEOUT +INSERT INTO t1 VALUES (2,2,2); +ROLLBACK; + +connection con1; + +ROLLBACK; +DROP TABLE t1; + +connection default; +disconnect con1; +disconnect con2; + +--source include/wait_until_count_sessions.inc diff --git a/storage/tokudb/mysql-test/tokudb_bugs/r/PS-3773.result b/storage/tokudb/mysql-test/tokudb_bugs/r/PS-3773.result new file mode 100644 index 00000000000..e2e695611b5 --- /dev/null +++ b/storage/tokudb/mysql-test/tokudb_bugs/r/PS-3773.result @@ -0,0 +1,7 @@ +CREATE TABLE t1(a INT, b INT, c INT, PRIMARY KEY(a), KEY(b)) ENGINE=TokuDB; +SET tokudb_auto_analyze=0; +INSERT INTO t1 VALUES(0,0,0), (1,1,1), (2,2,2), (3,3,3), (4,4,4), (5,5,5); +SET GLOBAL debug = "+d,tokudb_fake_db_notfound_error_in_read_full_row"; +SELECT * FROM t1 WHERE b = 2; +ERROR HY000: Incorrect key file for table 't1'; try to repair it +DROP TABLE t1; diff --git a/storage/tokudb/mysql-test/tokudb_bugs/r/alter_table_comment_rebuild_data.result b/storage/tokudb/mysql-test/tokudb_bugs/r/alter_table_comment_rebuild_data.result new file mode 100644 index 00000000000..f536f5163ef --- /dev/null +++ b/storage/tokudb/mysql-test/tokudb_bugs/r/alter_table_comment_rebuild_data.result @@ -0,0 +1,186 @@ +create table t1(id int auto_increment, name varchar(30), primary key(id)) engine=TokuDB; +alter table t1 min_rows = 8; +show create table t1; +Table Create Table +t1 CREATE TABLE `t1` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `name` varchar(30) DEFAULT NULL, + PRIMARY KEY (`id`) +) ENGINE=TokuDB DEFAULT CHARSET=latin1 MIN_ROWS=8 +include/assert.inc [underlying ft file name not changed after alter min_rows] +alter table t1 max_rows = 100; +show create table t1; +Table Create Table +t1 CREATE TABLE `t1` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `name` varchar(30) DEFAULT NULL, + PRIMARY KEY (`id`) +) ENGINE=TokuDB DEFAULT CHARSET=latin1 MIN_ROWS=8 MAX_ROWS=100 +include/assert.inc [underlying ft file name not changed after alter max_rows] +alter table t1 avg_row_length = 100; +show create table t1; +Table Create Table +t1 CREATE TABLE `t1` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `name` varchar(30) DEFAULT NULL, + PRIMARY KEY (`id`) +) ENGINE=TokuDB DEFAULT CHARSET=latin1 MIN_ROWS=8 MAX_ROWS=100 AVG_ROW_LENGTH=100 +include/assert.inc [underlying ft file name not changed after alter avg_row_length] +alter table t1 pack_keys = 1; +show create table t1; +Table Create Table +t1 CREATE TABLE `t1` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `name` varchar(30) DEFAULT NULL, + PRIMARY KEY (`id`) +) ENGINE=TokuDB DEFAULT CHARSET=latin1 MIN_ROWS=8 MAX_ROWS=100 AVG_ROW_LENGTH=100 PACK_KEYS=1 +include/assert.inc [underlying ft file name not changed after alter pack_keys] +alter table t1 character set = utf8; +show create table t1; +Table Create Table +t1 CREATE TABLE `t1` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `name` varchar(30) CHARACTER SET latin1 DEFAULT NULL, + PRIMARY KEY (`id`) +) ENGINE=TokuDB DEFAULT CHARSET=utf8 MIN_ROWS=8 MAX_ROWS=100 AVG_ROW_LENGTH=100 PACK_KEYS=1 +include/assert.inc [underlying ft file name not changed after alter character set] +alter table t1 data directory = '/tmp'; +Warnings: +Warning 1618 option ignored +show create table t1; +Table Create Table +t1 CREATE TABLE `t1` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `name` varchar(30) CHARACTER SET latin1 DEFAULT NULL, + PRIMARY KEY (`id`) +) ENGINE=TokuDB DEFAULT CHARSET=utf8 MIN_ROWS=8 MAX_ROWS=100 AVG_ROW_LENGTH=100 PACK_KEYS=1 +include/assert.inc [underlying ft file name not changed after alter data directory] +alter table t1 index directory = '/tmp'; +Warnings: +Warning 1618 option ignored +show create table t1; +Table Create Table +t1 CREATE TABLE `t1` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `name` varchar(30) CHARACTER SET latin1 DEFAULT NULL, + PRIMARY KEY (`id`) +) ENGINE=TokuDB DEFAULT CHARSET=utf8 MIN_ROWS=8 MAX_ROWS=100 AVG_ROW_LENGTH=100 PACK_KEYS=1 +include/assert.inc [underlying ft file name not changed after alter index directory] +alter table t1 checksum = 1; +show create table t1; +Table Create Table +t1 CREATE TABLE `t1` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `name` varchar(30) CHARACTER SET latin1 DEFAULT NULL, + PRIMARY KEY (`id`) +) ENGINE=TokuDB DEFAULT CHARSET=utf8 MIN_ROWS=8 MAX_ROWS=100 AVG_ROW_LENGTH=100 PACK_KEYS=1 CHECKSUM=1 +include/assert.inc [underlying ft file name not changed after alter checksum] +alter table t1 delay_key_write=1; +show create table t1; +Table Create Table +t1 CREATE TABLE `t1` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `name` varchar(30) CHARACTER SET latin1 DEFAULT NULL, + PRIMARY KEY (`id`) +) ENGINE=TokuDB DEFAULT CHARSET=utf8 MIN_ROWS=8 MAX_ROWS=100 AVG_ROW_LENGTH=100 PACK_KEYS=1 CHECKSUM=1 DELAY_KEY_WRITE=1 +include/assert.inc [underlying ft file name not changed after alter delay_key_write] +alter table t1 comment = 'test table'; +show create table t1; +Table Create Table +t1 CREATE TABLE `t1` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `name` varchar(30) CHARACTER SET latin1 DEFAULT NULL, + PRIMARY KEY (`id`) +) ENGINE=TokuDB DEFAULT CHARSET=utf8 MIN_ROWS=8 MAX_ROWS=100 AVG_ROW_LENGTH=100 PACK_KEYS=1 CHECKSUM=1 DELAY_KEY_WRITE=1 COMMENT='test table' +include/assert.inc [underlying ft file name not changed after alter comment] +alter table t1 password = '123456'; +show create table t1; +Table Create Table +t1 CREATE TABLE `t1` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `name` varchar(30) CHARACTER SET latin1 DEFAULT NULL, + PRIMARY KEY (`id`) +) ENGINE=TokuDB DEFAULT CHARSET=utf8 MIN_ROWS=8 MAX_ROWS=100 AVG_ROW_LENGTH=100 PACK_KEYS=1 CHECKSUM=1 DELAY_KEY_WRITE=1 COMMENT='test table' +include/assert.inc [underlying ft file name not changed after alter password] +alter table t1 connection = '127.0.0.1:3306'; +show create table t1; +Table Create Table +t1 CREATE TABLE `t1` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `name` varchar(30) CHARACTER SET latin1 DEFAULT NULL, + PRIMARY KEY (`id`) +) ENGINE=TokuDB DEFAULT CHARSET=utf8 MIN_ROWS=8 MAX_ROWS=100 AVG_ROW_LENGTH=100 PACK_KEYS=1 CHECKSUM=1 DELAY_KEY_WRITE=1 COMMENT='test table' CONNECTION='127.0.0.1:3306' +include/assert.inc [underlying ft file name not changed after alter connection] +alter table t1 key_block_size=32; +show create table t1; +Table Create Table +t1 CREATE TABLE `t1` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `name` varchar(30) CHARACTER SET latin1 DEFAULT NULL, + PRIMARY KEY (`id`) +) ENGINE=TokuDB DEFAULT CHARSET=utf8 MIN_ROWS=8 MAX_ROWS=100 AVG_ROW_LENGTH=100 PACK_KEYS=1 CHECKSUM=1 DELAY_KEY_WRITE=1 KEY_BLOCK_SIZE=32 COMMENT='test table' CONNECTION='127.0.0.1:3306' +include/assert.inc [underlying ft file name not changed after alter key_block_size] +alter table t1 stats_persistent = 1; +show create table t1; +Table Create Table +t1 CREATE TABLE `t1` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `name` varchar(30) CHARACTER SET latin1 DEFAULT NULL, + PRIMARY KEY (`id`) +) ENGINE=TokuDB DEFAULT CHARSET=utf8 MIN_ROWS=8 MAX_ROWS=100 AVG_ROW_LENGTH=100 PACK_KEYS=1 STATS_PERSISTENT=1 CHECKSUM=1 DELAY_KEY_WRITE=1 KEY_BLOCK_SIZE=32 COMMENT='test table' CONNECTION='127.0.0.1:3306' +include/assert.inc [underlying ft file name not changed after alter stats_persistent] +alter table t1 stats_auto_recalc = 1; +show create table t1; +Table Create Table +t1 CREATE TABLE `t1` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `name` varchar(30) CHARACTER SET latin1 DEFAULT NULL, + PRIMARY KEY (`id`) +) ENGINE=TokuDB DEFAULT CHARSET=utf8 MIN_ROWS=8 MAX_ROWS=100 AVG_ROW_LENGTH=100 PACK_KEYS=1 STATS_PERSISTENT=1 STATS_AUTO_RECALC=1 CHECKSUM=1 DELAY_KEY_WRITE=1 KEY_BLOCK_SIZE=32 COMMENT='test table' CONNECTION='127.0.0.1:3306' +include/assert.inc [underlying ft file name not changed after alter stats_auto_recalc] +alter table t1 stats_sample_pages = 1; +show create table t1; +Table Create Table +t1 CREATE TABLE `t1` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `name` varchar(30) CHARACTER SET latin1 DEFAULT NULL, + PRIMARY KEY (`id`) +) ENGINE=TokuDB DEFAULT CHARSET=utf8 MIN_ROWS=8 MAX_ROWS=100 AVG_ROW_LENGTH=100 PACK_KEYS=1 STATS_PERSISTENT=1 STATS_AUTO_RECALC=1 STATS_SAMPLE_PAGES=1 CHECKSUM=1 DELAY_KEY_WRITE=1 KEY_BLOCK_SIZE=32 COMMENT='test table' CONNECTION='127.0.0.1:3306' +include/assert.inc [underlying ft file name not changed after alter stats_sample_pages] +alter table t1 auto_increment = 1000; +show create table t1; +Table Create Table +t1 CREATE TABLE `t1` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `name` varchar(30) CHARACTER SET latin1 DEFAULT NULL, + PRIMARY KEY (`id`) +) ENGINE=TokuDB AUTO_INCREMENT=1000 DEFAULT CHARSET=utf8 MIN_ROWS=8 MAX_ROWS=100 AVG_ROW_LENGTH=100 PACK_KEYS=1 STATS_PERSISTENT=1 STATS_AUTO_RECALC=1 STATS_SAMPLE_PAGES=1 CHECKSUM=1 DELAY_KEY_WRITE=1 KEY_BLOCK_SIZE=32 COMMENT='test table' CONNECTION='127.0.0.1:3306' +include/assert.inc [underlying ft file name not changed after alter auto_increment] +alter table t1 row_format=tokudb_lzma; +show create table t1; +Table Create Table +t1 CREATE TABLE `t1` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `name` varchar(30) CHARACTER SET latin1 DEFAULT NULL, + PRIMARY KEY (`id`) +) ENGINE=TokuDB AUTO_INCREMENT=1000 DEFAULT CHARSET=utf8 MIN_ROWS=8 MAX_ROWS=100 AVG_ROW_LENGTH=100 PACK_KEYS=1 STATS_PERSISTENT=1 STATS_AUTO_RECALC=1 STATS_SAMPLE_PAGES=1 CHECKSUM=1 DELAY_KEY_WRITE=1 ROW_FORMAT=TOKUDB_LZMA KEY_BLOCK_SIZE=32 COMMENT='test table' CONNECTION='127.0.0.1:3306' +include/assert.inc [underlying ft file name not changed after alter compression method] +alter table t1 engine=TokuDB; +show create table t1; +Table Create Table +t1 CREATE TABLE `t1` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `name` varchar(30) CHARACTER SET latin1 DEFAULT NULL, + PRIMARY KEY (`id`) +) ENGINE=TokuDB AUTO_INCREMENT=1000 DEFAULT CHARSET=utf8 MIN_ROWS=8 MAX_ROWS=100 AVG_ROW_LENGTH=100 PACK_KEYS=1 STATS_PERSISTENT=1 STATS_AUTO_RECALC=1 STATS_SAMPLE_PAGES=1 CHECKSUM=1 DELAY_KEY_WRITE=1 ROW_FORMAT=TOKUDB_LZMA KEY_BLOCK_SIZE=32 COMMENT='test table' CONNECTION='127.0.0.1:3306' +include/assert.inc [underlying ft file name changed after alter engine type] +alter table t1 convert to character set utf8; +show create table t1; +Table Create Table +t1 CREATE TABLE `t1` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `name` varchar(30) DEFAULT NULL, + PRIMARY KEY (`id`) +) ENGINE=TokuDB AUTO_INCREMENT=1000 DEFAULT CHARSET=utf8 MIN_ROWS=8 MAX_ROWS=100 AVG_ROW_LENGTH=100 PACK_KEYS=1 STATS_PERSISTENT=1 STATS_AUTO_RECALC=1 STATS_SAMPLE_PAGES=1 CHECKSUM=1 DELAY_KEY_WRITE=1 ROW_FORMAT=TOKUDB_LZMA KEY_BLOCK_SIZE=32 COMMENT='test table' CONNECTION='127.0.0.1:3306' +include/assert.inc [underlying ft file name changed after alter convert character] +drop table t1; diff --git a/storage/tokudb/mysql-test/tokudb_bugs/t/PS-3773.test b/storage/tokudb/mysql-test/tokudb_bugs/t/PS-3773.test new file mode 100644 index 00000000000..684f9cbf8d5 --- /dev/null +++ b/storage/tokudb/mysql-test/tokudb_bugs/t/PS-3773.test @@ -0,0 +1,26 @@ +--source include/have_tokudb.inc +--source include/have_debug.inc + +--let SEARCH_FILE=$MYSQLTEST_VARDIR/tmp/tokudb.bugs.PS-3773.log +--let $restart_parameters="restart: --log-error=$SEARCH_FILE" +--source include/restart_mysqld.inc + +CREATE TABLE t1(a INT, b INT, c INT, PRIMARY KEY(a), KEY(b)) ENGINE=TokuDB; +SET tokudb_auto_analyze=0; +INSERT INTO t1 VALUES(0,0,0), (1,1,1), (2,2,2), (3,3,3), (4,4,4), (5,5,5); + +SET GLOBAL debug = "+d,tokudb_fake_db_notfound_error_in_read_full_row"; +--error ER_NOT_KEYFILE +SELECT * FROM t1 WHERE b = 2; + +DROP TABLE t1; + +--let SEARCH_PATTERN=ha_tokudb::read_full_row on table +--source include/search_pattern_in_file.inc + +--let $restart_parameters= +--source include/restart_mysqld.inc + +--remove_file $SEARCH_FILE +--let SEARCH_PATTERN= +--let SEARCH_FILE= diff --git a/storage/tokudb/mysql-test/tokudb_bugs/t/alter_table_comment_rebuild_data.test b/storage/tokudb/mysql-test/tokudb_bugs/t/alter_table_comment_rebuild_data.test new file mode 100644 index 00000000000..fc4f3e0fd3d --- /dev/null +++ b/storage/tokudb/mysql-test/tokudb_bugs/t/alter_table_comment_rebuild_data.test @@ -0,0 +1,184 @@ +--source include/have_tokudb.inc + +# +# Create a table and get the underlying main ft file name +# +create table t1(id int auto_increment, name varchar(30), primary key(id)) engine=TokuDB; +--let $ori_file= `select internal_file_name from information_schema.tokudb_file_map where table_schema='test' and table_name='t1' and table_dictionary_name='main'` + +# +# Case 1: alter create options that are ignored by TokuDB +# + +# Alter table with min_rows +alter table t1 min_rows = 8; +show create table t1; +--let $new_file=`select internal_file_name from information_schema.tokudb_file_map where table_schema='test' and table_name='t1' and table_dictionary_name='main'` +--let $assert_text= underlying ft file name not changed after alter min_rows +--let $assert_cond= "$ori_file" = "$new_file" +--source include/assert.inc + +# Alter table with max_rows +alter table t1 max_rows = 100; +show create table t1; +--let $new_file=`select internal_file_name from information_schema.tokudb_file_map where table_schema='test' and table_name='t1' and table_dictionary_name='main'` +--let $assert_text= underlying ft file name not changed after alter max_rows +--let $assert_cond= "$ori_file" = "$new_file" +--source include/assert.inc + +# Alter table with avg_row_length +alter table t1 avg_row_length = 100; +show create table t1; +--let $new_file=`select internal_file_name from information_schema.tokudb_file_map where table_schema='test' and table_name='t1' and table_dictionary_name='main'` +--let $assert_text= underlying ft file name not changed after alter avg_row_length +--let $assert_cond= "$ori_file" = "$new_file" +--source include/assert.inc + +# Alter table with pack_keys +alter table t1 pack_keys = 1; +show create table t1; +--let $new_file=`select internal_file_name from information_schema.tokudb_file_map where table_schema='test' and table_name='t1' and table_dictionary_name='main'` +--let $assert_text= underlying ft file name not changed after alter pack_keys +--let $assert_cond= "$ori_file" = "$new_file" +--source include/assert.inc + +# Alter table with default character set +alter table t1 character set = utf8; +show create table t1; +--let $new_file=`select internal_file_name from information_schema.tokudb_file_map where table_schema='test' and table_name='t1' and table_dictionary_name='main'` +--let $assert_text= underlying ft file name not changed after alter character set +--let $assert_cond= "$ori_file" = "$new_file" +--source include/assert.inc + +# Alter table with data directory +alter table t1 data directory = '/tmp'; +show create table t1; +--let $new_file=`select internal_file_name from information_schema.tokudb_file_map where table_schema='test' and table_name='t1' and table_dictionary_name='main'` +--let $assert_text= underlying ft file name not changed after alter data directory +--let $assert_cond= "$ori_file" = "$new_file" +--source include/assert.inc + +# Alter table with index directory +alter table t1 index directory = '/tmp'; +show create table t1; +--let $new_file=`select internal_file_name from information_schema.tokudb_file_map where table_schema='test' and table_name='t1' and table_dictionary_name='main'` +--let $assert_text= underlying ft file name not changed after alter index directory +--let $assert_cond= "$ori_file" = "$new_file" +--source include/assert.inc + +# Alter table with checksum +alter table t1 checksum = 1; +show create table t1; +--let $new_file=`select internal_file_name from information_schema.tokudb_file_map where table_schema='test' and table_name='t1' and table_dictionary_name='main'` +--let $assert_text= underlying ft file name not changed after alter checksum +--let $assert_cond= "$ori_file" = "$new_file" +--source include/assert.inc + +# Alter table with delay_key_write +alter table t1 delay_key_write=1; +show create table t1; +--let $new_file=`select internal_file_name from information_schema.tokudb_file_map where table_schema='test' and table_name='t1' and table_dictionary_name='main'` +--let $assert_text= underlying ft file name not changed after alter delay_key_write +--let $assert_cond= "$ori_file" = "$new_file" +--source include/assert.inc + +# Alter table with comment +alter table t1 comment = 'test table'; +show create table t1; +--let $new_file=`select internal_file_name from information_schema.tokudb_file_map where table_schema='test' and table_name='t1' and table_dictionary_name='main'` +--let $assert_text= underlying ft file name not changed after alter comment +--let $assert_cond= "$ori_file" = "$new_file" +--source include/assert.inc + +# Alter table with password +alter table t1 password = '123456'; +show create table t1; +--let $new_file=`select internal_file_name from information_schema.tokudb_file_map where table_schema='test' and table_name='t1' and table_dictionary_name='main'` +--let $assert_text= underlying ft file name not changed after alter password +--let $assert_cond= "$ori_file" = "$new_file" +--source include/assert.inc + +# Alter table with connection +alter table t1 connection = '127.0.0.1:3306'; +show create table t1; +--let $new_file=`select internal_file_name from information_schema.tokudb_file_map where table_schema='test' and table_name='t1' and table_dictionary_name='main'` +--let $assert_text= underlying ft file name not changed after alter connection +--let $assert_cond= "$ori_file" = "$new_file" +--source include/assert.inc + +# Alter table with key_block_size +alter table t1 key_block_size=32; +show create table t1; +--let $new_file=`select internal_file_name from information_schema.tokudb_file_map where table_schema='test' and table_name='t1' and table_dictionary_name='main'` +--let $assert_text= underlying ft file name not changed after alter key_block_size +--let $assert_cond= "$ori_file" = "$new_file" +--source include/assert.inc + +# Alter table with stats_persistent +alter table t1 stats_persistent = 1; +show create table t1; +--let $new_file=`select internal_file_name from information_schema.tokudb_file_map where table_schema='test' and table_name='t1' and table_dictionary_name='main'` +--let $assert_text= underlying ft file name not changed after alter stats_persistent +--let $assert_cond= "$ori_file" = "$new_file" +--source include/assert.inc + +# Alter table with stats_auto_recalc +alter table t1 stats_auto_recalc = 1; +show create table t1; +--let $new_file=`select internal_file_name from information_schema.tokudb_file_map where table_schema='test' and table_name='t1' and table_dictionary_name='main'` +--let $assert_text= underlying ft file name not changed after alter stats_auto_recalc +--let $assert_cond= "$ori_file" = "$new_file" +--source include/assert.inc + +# Alter table with stats_sample_pages +alter table t1 stats_sample_pages = 1; +show create table t1; +--let $new_file=`select internal_file_name from information_schema.tokudb_file_map where table_schema='test' and table_name='t1' and table_dictionary_name='main'` +--let $assert_text= underlying ft file name not changed after alter stats_sample_pages +--let $assert_cond= "$ori_file" = "$new_file" +--source include/assert.inc + +# +# Case 2: alter create options that only update meta info, i.e inplace +# + +# Alter table with auto_increment +alter table t1 auto_increment = 1000; +show create table t1; +--let $new_file=`select internal_file_name from information_schema.tokudb_file_map where table_schema='test' and table_name='t1' and table_dictionary_name='main'` +--let $assert_text= underlying ft file name not changed after alter auto_increment +--let $assert_cond= "$ori_file" = "$new_file" +--source include/assert.inc + +# Alter table with compression method +alter table t1 row_format=tokudb_lzma; +show create table t1; +--let $new_file=`select internal_file_name from information_schema.tokudb_file_map where table_schema='test' and table_name='t1' and table_dictionary_name='main'` +--let $assert_text= underlying ft file name not changed after alter compression method +--let $assert_cond= "$ori_file" = "$new_file" +--source include/assert.inc + +# +# Case 3: alter create options that rebuild table using copy algorithm +# + +# Alter table with engine type +alter table t1 engine=TokuDB; +show create table t1; +--let $new_file=`select internal_file_name from information_schema.tokudb_file_map where table_schema='test' and table_name='t1' and table_dictionary_name='main'` +--let $assert_text= underlying ft file name changed after alter engine type +--let $assert_cond= "$ori_file" != "$new_file" +--source include/assert.inc + +# Alter table with convert character +alter table t1 convert to character set utf8; +show create table t1; +--let $new_file=`select internal_file_name from information_schema.tokudb_file_map where table_schema='test' and table_name='t1' and table_dictionary_name='main'` +--let $assert_text= underlying ft file name changed after alter convert character +--let $assert_cond= "$ori_file" != "$new_file" +--source include/assert.inc + +# +# clean up +# +drop table t1; diff --git a/storage/tokudb/tokudb_debug.h b/storage/tokudb/tokudb_debug.h index 46bd65c605a..6ae559af213 100644 --- a/storage/tokudb/tokudb_debug.h +++ b/storage/tokudb/tokudb_debug.h @@ -29,11 +29,6 @@ Copyright (c) 2006, 2015, Percona and/or its affiliates. All rights reserved. #include "hatoku_defines.h" -#define TOKU_INCLUDE_BACKTRACE 0 -#if TOKU_INCLUDE_BACKTRACE -static void tokudb_backtrace(void); -#endif - // tokudb debug tracing for tokudb_debug declared in tokudb_sysvars.h/.cc #define TOKUDB_DEBUG_INIT (1<<0) #define TOKUDB_DEBUG_OPEN (1<<1) diff --git a/storage/tokudb/tokudb_dir_cmd.h b/storage/tokudb/tokudb_dir_cmd.h index b39caadc7c3..2036d3f65fb 100644 --- a/storage/tokudb/tokudb_dir_cmd.h +++ b/storage/tokudb/tokudb_dir_cmd.h @@ -31,10 +31,8 @@ Copyright (c) 2006, 2015, Percona and/or its affiliates. All rights reserved. namespace tokudb { struct dir_cmd_callbacks { - void (*set_error)(THD *thd, - int error, - const char *error_fmt, - ...); + void (*set_error)(THD *thd, int error, const char *error_fmt, ...) + MY_ATTRIBUTE((format(printf, 3, 4))); }; void process_dir_cmd(THD *thd, diff --git a/storage/tokudb/tokudb_information_schema.cc b/storage/tokudb/tokudb_information_schema.cc index 6d4569c522d..4f112999a51 100644 --- a/storage/tokudb/tokudb_information_schema.cc +++ b/storage/tokudb/tokudb_information_schema.cc @@ -66,12 +66,10 @@ struct trx_extra_t { TABLE *table; }; -int trx_callback( - DB_TXN* txn, - iterate_row_locks_callback iterate_locks, - void* locks_extra, - void *extra) { - +int trx_callback(DB_TXN* txn, + TOKUDB_UNUSED(iterate_row_locks_callback iterate_locks), + TOKUDB_UNUSED(void* locks_extra), + void* extra) { uint64_t txn_id = txn->id64(txn); uint64_t client_id; txn->get_client_id(txn, &client_id, NULL); @@ -90,9 +88,9 @@ int trx_callback( } #if MYSQL_VERSION_ID >= 50600 -int trx_fill_table(THD* thd, TABLE_LIST* tables, Item* cond) { +int trx_fill_table(THD* thd, TABLE_LIST* tables, TOKUDB_UNUSED(Item* cond)) { #else -int trx_fill_table(THD* thd, TABLE_LIST* tables, COND* cond) { +int trx_fill_table(THD* thd, TABLE_LIST* tables, TOKUDB_UNUSED(COND* cond)) { #endif TOKUDB_DBUG_ENTER(""); int error; @@ -120,7 +118,7 @@ int trx_init(void* p) { return 0; } -int trx_done(void* p) { +int trx_done(TOKUDB_UNUSED(void* p)) { return 0; } @@ -188,13 +186,13 @@ int lock_waits_callback( size_t dname_length = strlen(dname); table->field[2]->store(dname, dname_length, system_charset_info); String left_str; - tokudb_pretty_left_key(db, left_key, &left_str); + tokudb_pretty_left_key(left_key, &left_str); table->field[3]->store( left_str.ptr(), left_str.length(), system_charset_info); String right_str; - tokudb_pretty_right_key(db, right_key, &right_str); + tokudb_pretty_right_key(right_key, &right_str); table->field[4]->store( right_str.ptr(), right_str.length(), @@ -225,9 +223,13 @@ int lock_waits_callback( } #if MYSQL_VERSION_ID >= 50600 -int lock_waits_fill_table(THD* thd, TABLE_LIST* tables, Item* cond) { +int lock_waits_fill_table(THD* thd, + TABLE_LIST* tables, + TOKUDB_UNUSED(Item* cond)) { #else -int lock_waits_fill_table(THD* thd, TABLE_LIST* tables, COND* cond) { +int lock_waits_fill_table(THD* thd, + TABLE_LIST* tables, + TOKUDB_UNUSED(COND* cond)) { #endif TOKUDB_DBUG_ENTER(""); int error; @@ -258,7 +260,7 @@ int lock_waits_init(void* p) { return 0; } -int lock_waits_done(void *p) { +int lock_waits_done(TOKUDB_UNUSED(void *p)) { return 0; } @@ -331,14 +333,14 @@ int locks_callback( table->field[2]->store(dname, dname_length, system_charset_info); String left_str; - tokudb_pretty_left_key(db, &left_key, &left_str); + tokudb_pretty_left_key(&left_key, &left_str); table->field[3]->store( left_str.ptr(), left_str.length(), system_charset_info); String right_str; - tokudb_pretty_right_key(db, &right_key, &right_str); + tokudb_pretty_right_key(&right_key, &right_str); table->field[4]->store( right_str.ptr(), right_str.length(), @@ -368,9 +370,9 @@ int locks_callback( } #if MYSQL_VERSION_ID >= 50600 -int locks_fill_table(THD* thd, TABLE_LIST* tables, Item* cond) { +int locks_fill_table(THD* thd, TABLE_LIST* tables, TOKUDB_UNUSED(Item* cond)) { #else -int locks_fill_table(THD* thd, TABLE_LIST* tables, COND* cond) { +int locks_fill_table(THD* thd, TABLE_LIST* tables, TOKUDB_UNUSED(COND* cond)) { #endif TOKUDB_DBUG_ENTER(""); int error; @@ -398,7 +400,7 @@ int locks_init(void* p) { return 0; } -int locks_done(void* p) { +int locks_done(TOKUDB_UNUSED(void* p)) { return 0; } @@ -511,9 +513,13 @@ cleanup: } #if MYSQL_VERSION_ID >= 50600 -int file_map_fill_table(THD* thd, TABLE_LIST* tables, Item* cond) { +int file_map_fill_table(THD* thd, + TABLE_LIST* tables, + TOKUDB_UNUSED(Item* cond)) { #else -int file_map_fill_table(THD* thd, TABLE_LIST* tables, COND* cond) { +int file_map_fill_table(THD* thd, + TABLE_LIST* tables, + TOKUDB_UNUSED(COND* cond)) { #endif TOKUDB_DBUG_ENTER(""); int error; @@ -541,7 +547,7 @@ int file_map_init(void* p) { return 0; } -int file_map_done(void* p) { +int file_map_done(TOKUDB_UNUSED(void* p)) { return 0; } @@ -716,9 +722,13 @@ cleanup: } #if MYSQL_VERSION_ID >= 50600 -int fractal_tree_info_fill_table(THD* thd, TABLE_LIST* tables, Item* cond) { +int fractal_tree_info_fill_table(THD* thd, + TABLE_LIST* tables, + TOKUDB_UNUSED(Item* cond)) { #else -int fractal_tree_info_fill_table(THD* thd, TABLE_LIST* tables, COND* cond) { +int fractal_tree_info_fill_table(THD* thd, + TABLE_LIST* tables, + TOKUDB_UNUSED(COND* cond)) { #endif TOKUDB_DBUG_ENTER(""); int error; @@ -749,7 +759,7 @@ int fractal_tree_info_init(void* p) { return 0; } -int fractal_tree_info_done(void* p) { +int fractal_tree_info_done(TOKUDB_UNUSED(void* p)) { return 0; } @@ -1010,12 +1020,12 @@ cleanup: int fractal_tree_block_map_fill_table( THD* thd, TABLE_LIST* tables, - Item* cond) { + TOKUDB_UNUSED(Item* cond)) { #else int fractal_tree_block_map_fill_table( THD* thd, TABLE_LIST* tables, - COND* cond) { + TOKUDB_UNUSED(COND* cond)) { #endif TOKUDB_DBUG_ENTER(""); int error; @@ -1046,7 +1056,7 @@ int fractal_tree_block_map_init(void* p) { return 0; } -int fractal_tree_block_map_done(void *p) { +int fractal_tree_block_map_done(TOKUDB_UNUSED(void *p)) { return 0; } @@ -1085,7 +1095,7 @@ ST_FIELD_INFO background_job_status_field_info[] = { {"scheduler", 32, MYSQL_TYPE_STRING, 0, 0, NULL, SKIP_OPEN_TABLE }, {"scheduled_time", 0, MYSQL_TYPE_DATETIME, 0, 0, NULL, SKIP_OPEN_TABLE }, {"started_time", 0, MYSQL_TYPE_DATETIME, 0, MY_I_S_MAYBE_NULL, NULL, SKIP_OPEN_TABLE }, - {"status", 1024, MYSQL_TYPE_STRING, 0, MY_I_S_MAYBE_NULL, SKIP_OPEN_TABLE }, + {"status", 1024, MYSQL_TYPE_STRING, 0, MY_I_S_MAYBE_NULL, NULL, SKIP_OPEN_TABLE }, {NULL, 0, MYSQL_TYPE_NULL, 0, 0, NULL, SKIP_OPEN_TABLE} }; @@ -1152,9 +1162,9 @@ int report_background_job_status(TABLE *table, THD *thd) { } #if MYSQL_VERSION_ID >= 50600 -int background_job_status_fill_table(THD *thd, TABLE_LIST *tables, Item *cond) { +int background_job_status_fill_table(THD *thd, TABLE_LIST *tables, TOKUDB_UNUSED(Item *cond)) { #else -int background_job_status_fill_table(THD *thd, TABLE_LIST *tables, COND *cond) { +int background_job_status_fill_table(THD *thd, TABLE_LIST *tables, TOKUDB_UNUSED(COND *cond)) { #endif TOKUDB_DBUG_ENTER(""); int error; @@ -1182,7 +1192,7 @@ int background_job_status_init(void* p) { return 0; } -int background_job_status_done(void* p) { +int background_job_status_done(TOKUDB_UNUSED(void* p)) { return 0; } diff --git a/storage/tokudb/tokudb_sysvars.cc b/storage/tokudb/tokudb_sysvars.cc index 31c44c45500..e8e9f908275 100644 --- a/storage/tokudb/tokudb_sysvars.cc +++ b/storage/tokudb/tokudb_sysvars.cc @@ -57,10 +57,10 @@ uint client_pool_threads = 0; my_bool compress_buffers_before_eviction = TRUE; char* data_dir = NULL; ulong debug = 0; -#if TOKUDB_DEBUG +#if defined(TOKUDB_DEBUG) && TOKUDB_DEBUG // used to control background job manager my_bool debug_pause_background_job_manager = FALSE; -#endif +#endif // defined(TOKUDB_DEBUG) && TOKUDB_DEBUG my_bool directio = FALSE; my_bool enable_partial_eviction = TRUE; int fs_reserve_percent = 0; @@ -75,10 +75,12 @@ my_bool dir_per_db = FALSE; char* version = (char*) TOKUDB_VERSION_STR; // file system reserve as a percentage of total disk space -#if TOKU_INCLUDE_HANDLERTON_HANDLE_FATAL_SIGNAL +#if defined(TOKU_INCLUDE_HANDLERTON_HANDLE_FATAL_SIGNAL) && \ + TOKU_INCLUDE_HANDLERTON_HANDLE_FATAL_SIGNAL char* gdb_path = NULL; my_bool gdb_on_fatal = FALSE; -#endif +#endif // defined(TOKU_INCLUDE_HANDLERTON_HANDLE_FATAL_SIGNAL) && + // TOKU_INCLUDE_HANDLERTON_HANDLE_FATAL_SIGNAL my_bool check_jemalloc = TRUE; @@ -140,11 +142,10 @@ static MYSQL_SYSVAR_UINT( 0); static void checkpointing_period_update( - THD* thd, - st_mysql_sys_var* sys_var, + TOKUDB_UNUSED(THD* thd), + TOKUDB_UNUSED(st_mysql_sys_var* sys_var), void* var, const void* save) { - uint* cp = (uint*)var; *cp = *(const uint*)save; int r = db_env->checkpointing_set_period(db_env, *cp); @@ -163,12 +164,10 @@ static MYSQL_SYSVAR_UINT( ~0U, 0); -static void cleaner_iterations_update( - THD* thd, - st_mysql_sys_var* sys_var, - void* var, - const void* save) { - +static void cleaner_iterations_update(TOKUDB_UNUSED(THD* thd), + TOKUDB_UNUSED(st_mysql_sys_var* sys_var), + void* var, + const void* save) { ulong* ci = (ulong*)var; *ci = *(const ulong*)save; int r = db_env->cleaner_set_iterations(db_env, *ci); @@ -187,12 +186,10 @@ static MYSQL_SYSVAR_ULONG( ~0UL, 0); -static void cleaner_period_update( - THD* thd, - st_mysql_sys_var* sys_var, - void* var, - const void * save) { - +static void cleaner_period_update(TOKUDB_UNUSED(THD* thd), + TOKUDB_UNUSED(st_mysql_sys_var* sys_var), + void* var, + const void* save) { ulong* cp = (ulong*)var; *cp = *(const ulong*)save; int r = db_env->cleaner_set_period(db_env, *cp); @@ -253,7 +250,7 @@ static MYSQL_SYSVAR_ULONG( ~0UL, 0); -#if TOKUDB_DEBUG +#if defined(TOKUDB_DEBUG) && TOKUDB_DEBUG static MYSQL_SYSVAR_BOOL( debug_pause_background_job_manager, debug_pause_background_job_manager, @@ -262,7 +259,7 @@ static MYSQL_SYSVAR_BOOL( NULL, NULL, FALSE); -#endif // TOKUDB_DEBUG +#endif // defined(TOKUDB_DEBUG) && TOKUDB_DEBUG static MYSQL_SYSVAR_BOOL( directio, @@ -273,11 +270,10 @@ static MYSQL_SYSVAR_BOOL( FALSE); static void enable_partial_eviction_update( - THD* thd, - st_mysql_sys_var* sys_var, + TOKUDB_UNUSED(THD* thd), + TOKUDB_UNUSED(st_mysql_sys_var* sys_var), void* var, const void* save) { - my_bool* epe = (my_bool*)var; *epe = *(const my_bool*)save; int r = db_env->evictor_set_enable_partial_eviction(db_env, *epe); @@ -305,12 +301,10 @@ static MYSQL_SYSVAR_INT( 100, 0); -static void fsync_log_period_update( - THD* thd, - st_mysql_sys_var* sys_var, - void* var, - const void* save) { - +static void fsync_log_period_update(TOKUDB_UNUSED(THD* thd), + TOKUDB_UNUSED(st_mysql_sys_var* sys_var), + void* var, + const void* save) { uint* flp = (uint*)var; *flp = *(const uint*)save; db_env->change_fsync_log_period(db_env, *flp); @@ -400,9 +394,11 @@ static MYSQL_SYSVAR_UINT( ~0U, 0); -static void tokudb_dir_per_db_update(THD* thd, - struct st_mysql_sys_var* sys_var, - void* var, const void* save) { +static void tokudb_dir_per_db_update( + TOKUDB_UNUSED(THD* thd), + TOKUDB_UNUSED(struct st_mysql_sys_var* sys_var), + void* var, + const void* save) { my_bool *value = (my_bool *) var; *value = *(const my_bool *) save; db_env->set_dir_per_db(db_env, *value); @@ -412,7 +408,8 @@ static MYSQL_SYSVAR_BOOL(dir_per_db, dir_per_db, 0, "TokuDB store ft files in db directories", NULL, tokudb_dir_per_db_update, FALSE); -#if TOKU_INCLUDE_HANDLERTON_HANDLE_FATAL_SIGNAL +#if defined(TOKU_INCLUDE_HANDLERTON_HANDLE_FATAL_SIGNAL) && \ + TOKU_INCLUDE_HANDLERTON_HANDLE_FATAL_SIGNAL static MYSQL_SYSVAR_STR( gdb_path, gdb_path, @@ -430,7 +427,8 @@ static MYSQL_SYSVAR_BOOL( NULL, NULL, true); -#endif +#endif // defined(TOKU_INCLUDE_HANDLERTON_HANDLE_FATAL_SIGNAL) && + // TOKU_INCLUDE_HANDLERTON_HANDLE_FATAL_SIGNAL static MYSQL_SYSVAR_BOOL( check_jemalloc, @@ -550,12 +548,10 @@ static MYSQL_THDVAR_BOOL( NULL, true); -static void checkpoint_lock_update( - THD* thd, - st_mysql_sys_var* var, - void* var_ptr, - const void* save) { - +static void checkpoint_lock_update(TOKUDB_UNUSED(THD* thd), + TOKUDB_UNUSED(st_mysql_sys_var* var), + void* var_ptr, + const void* save) { my_bool* val = (my_bool*)var_ptr; *val= *(my_bool*)save ? true : false; if (*val) { @@ -849,6 +845,7 @@ static MYSQL_THDVAR_ENUM( SRV_ROW_FORMAT_ZLIB, &tokudb_row_format_typelib); +#if defined(TOKU_INCLUDE_RFR) && TOKU_INCLUDE_RFR static MYSQL_THDVAR_BOOL( rpl_check_readonly, PLUGIN_VAR_THDLOCAL, @@ -894,10 +891,10 @@ static MYSQL_THDVAR_ULONGLONG( 0, ~0ULL, 1); +#endif // defined(TOKU_INCLUDE_RFR) && TOKU_INCLUDE_RFR -#if TOKU_INCLUDE_UPSERT static MYSQL_THDVAR_BOOL( - disable_slow_update, + enable_fast_update, PLUGIN_VAR_THDLOCAL, "disable slow update", NULL, @@ -905,13 +902,12 @@ static MYSQL_THDVAR_BOOL( false); static MYSQL_THDVAR_BOOL( - disable_slow_upsert, + enable_fast_upsert, PLUGIN_VAR_THDLOCAL, "disable slow upsert", NULL, NULL, false); -#endif #if TOKU_INCLUDE_XA static MYSQL_THDVAR_BOOL( @@ -941,10 +937,8 @@ static MYSQL_THDVAR_STR(dir_cmd, "name of the directory where the backup is stored", dir_cmd_check, NULL, NULL); -static void dir_cmd_set_error(THD *thd, - int error, - const char *error_fmt, - ...) { +static void MY_ATTRIBUTE((format(printf, 3, 4))) + dir_cmd_set_error(THD* thd, int error, const char* error_fmt, ...) { char buff[error_buffer_max_size]; va_list varargs; @@ -959,10 +953,19 @@ static void dir_cmd_set_error(THD *thd, THDVAR_SET(thd, dir_cmd_last_error_string, buff); } -static int dir_cmd_check(THD* thd, struct st_mysql_sys_var* var, - void* save, struct st_mysql_value* value) { +static void dir_cmd_clear_error(THD* thd) { + static constexpr int no_error = 0; + static const char* empty_error_str = ""; + THDVAR_SET(thd, dir_cmd_last_error, &no_error); + THDVAR_SET(thd, dir_cmd_last_error_string, empty_error_str); +} + +static int dir_cmd_check(THD* thd, + TOKUDB_UNUSED(struct st_mysql_sys_var* var), + void* save, + struct st_mysql_value* value) { int error = 0; - dir_cmd_set_error(thd, error, ""); + dir_cmd_clear_error(thd); if (check_global_access(thd, SUPER_ACL)) { return 1; @@ -1017,10 +1020,12 @@ st_mysql_sys_var* system_variables[] = { MYSQL_SYSVAR(version), MYSQL_SYSVAR(write_status_frequency), MYSQL_SYSVAR(dir_per_db), -#if TOKU_INCLUDE_HANDLERTON_HANDLE_FATAL_SIGNAL +#if defined(TOKU_INCLUDE_HANDLERTON_HANDLE_FATAL_SIGNAL) && \ + TOKU_INCLUDE_HANDLERTON_HANDLE_FATAL_SIGNAL MYSQL_SYSVAR(gdb_path), MYSQL_SYSVAR(gdb_on_fatal), -#endif +#endif // defined(TOKU_INCLUDE_HANDLERTON_HANDLE_FATAL_SIGNAL) && + // TOKU_INCLUDE_HANDLERTON_HANDLE_FATAL_SIGNAL MYSQL_SYSVAR(check_jemalloc), @@ -1057,24 +1062,22 @@ st_mysql_sys_var* system_variables[] = { MYSQL_SYSVAR(read_block_size), MYSQL_SYSVAR(read_buf_size), MYSQL_SYSVAR(row_format), +#if defined(TOKU_INCLUDE_RFR) && TOKU_INCLUDE_RFR MYSQL_SYSVAR(rpl_check_readonly), MYSQL_SYSVAR(rpl_lookup_rows), MYSQL_SYSVAR(rpl_lookup_rows_delay), MYSQL_SYSVAR(rpl_unique_checks), MYSQL_SYSVAR(rpl_unique_checks_delay), - -#if TOKU_INCLUDE_UPSERT - MYSQL_SYSVAR(disable_slow_update), - MYSQL_SYSVAR(disable_slow_upsert), -#endif - +#endif // defined(TOKU_INCLUDE_RFR) && TOKU_INCLUDE_RFR + MYSQL_SYSVAR(enable_fast_update), + MYSQL_SYSVAR(enable_fast_upsert), #if TOKU_INCLUDE_XA MYSQL_SYSVAR(support_xa), #endif -#if TOKUDB_DEBUG - MYSQL_SYSVAR(debug_pause_background_job_manager), -#endif // TOKUDB_DEBUG +#if defined(TOKUDB_DEBUG) && TOKUDB_DEBUG + MYSQL_SYSVAR(debug_pause_background_job_manager), +#endif // defined(TOKUDB_DEBUG) && TOKUDB_DEBUG MYSQL_SYSVAR(dir_cmd_last_error), MYSQL_SYSVAR(dir_cmd_last_error_string), MYSQL_SYSVAR(dir_cmd), @@ -1124,11 +1127,11 @@ my_bool disable_prefetching(THD* thd) { my_bool disable_slow_alter(THD* thd) { return (THDVAR(thd, disable_slow_alter) != 0); } -my_bool disable_slow_update(THD* thd) { - return (THDVAR(thd, disable_slow_update) != 0); +my_bool enable_fast_update(THD* thd) { + return (THDVAR(thd, enable_fast_update) != 0); } -my_bool disable_slow_upsert(THD* thd) { - return (THDVAR(thd, disable_slow_upsert) != 0); +my_bool enable_fast_upsert(THD* thd) { + return (THDVAR(thd, enable_fast_upsert) != 0); } empty_scan_mode_t empty_scan(THD* thd) { return (empty_scan_mode_t)THDVAR(thd, empty_scan); @@ -1187,6 +1190,7 @@ uint read_buf_size(THD* thd) { row_format_t row_format(THD *thd) { return (row_format_t) THDVAR(thd, row_format); } +#if defined(TOKU_INCLUDE_RFR) && TOKU_INCLUDE_RFR my_bool rpl_check_readonly(THD* thd) { return (THDVAR(thd, rpl_check_readonly) != 0); } @@ -1202,6 +1206,7 @@ my_bool rpl_unique_checks(THD* thd) { ulonglong rpl_unique_checks_delay(THD* thd) { return THDVAR(thd, rpl_unique_checks_delay); } +#endif // defined(TOKU_INCLUDE_RFR) && TOKU_INCLUDE_RFR my_bool support_xa(THD* thd) { return (THDVAR(thd, support_xa) != 0); } diff --git a/storage/tokudb/tokudb_sysvars.h b/storage/tokudb/tokudb_sysvars.h index c446e212570..d81d5fd7999 100644 --- a/storage/tokudb/tokudb_sysvars.h +++ b/storage/tokudb/tokudb_sysvars.h @@ -84,10 +84,12 @@ extern uint write_status_frequency; extern my_bool dir_per_db; extern char* version; -#if TOKU_INCLUDE_HANDLERTON_HANDLE_FATAL_SIGNAL +#if defined(TOKU_INCLUDE_HANDLERTON_HANDLE_FATAL_SIGNAL) && \ + TOKU_INCLUDE_HANDLERTON_HANDLE_FATAL_SIGNAL extern char* gdb_path; extern my_bool gdb_on_fatal; -#endif +#endif // defined(TOKU_INCLUDE_HANDLERTON_HANDLE_FATAL_SIGNAL) && + // TOKU_INCLUDE_HANDLERTON_HANDLE_FATAL_SIGNAL extern my_bool check_jemalloc; @@ -111,8 +113,8 @@ my_bool create_index_online(THD* thd); my_bool disable_hot_alter(THD* thd); my_bool disable_prefetching(THD* thd); my_bool disable_slow_alter(THD* thd); -my_bool disable_slow_update(THD* thd); -my_bool disable_slow_upsert(THD* thd); +my_bool enable_fast_update(THD* thd); +my_bool enable_fast_upsert(THD* thd); empty_scan_mode_t empty_scan(THD* thd); uint fanout(THD* thd); my_bool hide_default_row_format(THD* thd); @@ -132,11 +134,13 @@ my_bool prelock_empty(THD* thd); uint read_block_size(THD* thd); uint read_buf_size(THD* thd); row_format_t row_format(THD *thd); +#if defined(TOKU_INCLUDE_RFR) && TOKU_INCLUDE_RFR my_bool rpl_check_readonly(THD* thd); my_bool rpl_lookup_rows(THD* thd); ulonglong rpl_lookup_rows_delay(THD* thd); my_bool rpl_unique_checks(THD* thd); ulonglong rpl_unique_checks_delay(THD* thd); +#endif // defined(TOKU_INCLUDE_RFR) && TOKU_INCLUDE_RFR my_bool support_xa(THD* thd); extern st_mysql_sys_var* system_variables[]; diff --git a/storage/tokudb/tokudb_thread.h b/storage/tokudb/tokudb_thread.h index dec58f3fd35..d85bee14dbd 100644 --- a/storage/tokudb/tokudb_thread.h +++ b/storage/tokudb/tokudb_thread.h @@ -47,16 +47,16 @@ public: void reinit(pfs_key_t key); void lock( -#ifdef HAVE_PSI_MUTEX_INTERFACE +#if defined(SAFE_MUTEX) || defined(HAVE_PSI_MUTEX_INTERFACE) const char* src_file, uint src_line -#endif // HAVE_PSI_MUTEX_INTERFACE +#endif // SAFE_MUTEX || HAVE_PSI_MUTEX_INTERFACE ); void unlock( -#ifdef HAVE_PSI_MUTEX_INTERFACE +#if defined(SAFE_MUTEX) const char* src_file, uint src_line -#endif // HAVE_PSI_MUTEX_INTERFACE +#endif // SAFE_MUTEX ); #ifdef TOKUDB_DEBUG bool is_owned_by_me(void) const; @@ -225,18 +225,18 @@ inline void mutex_t::reinit(pfs_key_t key) { assert_debug(r == 0); } inline void mutex_t::lock( -#ifdef HAVE_PSI_MUTEX_INTERFACE +#if defined(SAFE_MUTEX) || defined(HAVE_PSI_MUTEX_INTERFACE) const char* src_file, uint src_line -#endif // HAVE_PSI_MUTEX_INTERFACE +#endif // SAFE_MUTEX || HAVE_PSI_MUTEX_INTERFACE ) { assert_debug(is_owned_by_me() == false); int r MY_ATTRIBUTE((unused)) = inline_mysql_mutex_lock(&_mutex -#ifdef HAVE_PSI_MUTEX_INTERFACE +#if defined(SAFE_MUTEX) || defined(HAVE_PSI_MUTEX_INTERFACE) , src_file, src_line -#endif // HAVE_PSI_MUTEX_INTERFACE +#endif // SAFE_MUTEX || HAVE_PSI_MUTEX_INTERFACE ); assert_debug(r == 0); #ifdef TOKUDB_DEBUG @@ -245,15 +245,11 @@ inline void mutex_t::lock( #endif } inline void mutex_t::unlock( -#ifdef HAVE_PSI_MUTEX_INTERFACE +#if defined(SAFE_MUTEX) const char* src_file, uint src_line -#endif // HAVE_PSI_MUTEX_INTERFACE - ) { -#ifndef SAFE_MUTEX - (void)(src_file); - (void)(src_line); #endif // SAFE_MUTEX + ) { #ifdef TOKUDB_DEBUG assert_debug(_owners > 0); assert_debug(is_owned_by_me()); @@ -261,7 +257,7 @@ inline void mutex_t::unlock( _owner = _null_owner; #endif int r MY_ATTRIBUTE((unused)) = inline_mysql_mutex_unlock(&_mutex -#ifdef SAFE_MUTEX +#if defined(SAFE_MUTEX) , src_file, src_line diff --git a/storage/tokudb/tokudb_update_fun.cc b/storage/tokudb/tokudb_update_fun.cc index 05149d17317..f9b8372ec34 100644 --- a/storage/tokudb/tokudb_update_fun.cc +++ b/storage/tokudb/tokudb_update_fun.cc @@ -343,14 +343,11 @@ static inline uint32_t copy_toku_blob( return (length + len_bytes); } -static int tokudb_hcad_update_fun( - DB* db, - const DBT* key, - const DBT* old_val, - const DBT* extra, - void (*set_val)(const DBT* new_val, void* set_extra), - void* set_extra) { - +static int tokudb_hcad_update_fun(const DBT* old_val, + const DBT* extra, + void (*set_val)(const DBT* new_val, + void* set_extra), + void* set_extra) { uint32_t max_num_bytes; uint32_t num_columns; DBT new_val; @@ -761,14 +758,11 @@ cleanup: // Expand the variable offset array in the old row given the update mesage // in the extra. -static int tokudb_expand_variable_offsets( - DB* db, - const DBT* key, - const DBT* old_val, - const DBT* extra, - void (*set_val)(const DBT* new_val, void* set_extra), - void* set_extra) { - +static int tokudb_expand_variable_offsets(const DBT* old_val, + const DBT* extra, + void (*set_val)(const DBT* new_val, + void* set_extra), + void* set_extra) { int error = 0; tokudb::buffer extra_val(extra->data, 0, extra->size); @@ -840,14 +834,11 @@ cleanup: } // Expand an int field in a old row given the expand message in the extra. -static int tokudb_expand_int_field( - DB* db, - const DBT* key, - const DBT* old_val, - const DBT* extra, - void (*set_val)(const DBT* new_val, void* set_extra), - void* set_extra) { - +static int tokudb_expand_int_field(const DBT* old_val, + const DBT* extra, + void (*set_val)(const DBT* new_val, + void* set_extra), + void* set_extra) { int error = 0; tokudb::buffer extra_val(extra->data, 0, extra->size); @@ -937,14 +928,11 @@ cleanup: } // Expand a char field in a old row given the expand message in the extra. -static int tokudb_expand_char_field( - DB* db, - const DBT* key, - const DBT* old_val, - const DBT* extra, - void (*set_val)(const DBT* new_val, void* set_extra), - void* set_extra) { - +static int tokudb_expand_char_field(const DBT* old_val, + const DBT* extra, + void (*set_val)(const DBT* new_val, + void* set_extra), + void* set_extra) { int error = 0; tokudb::buffer extra_val(extra->data, 0, extra->size); @@ -1497,14 +1485,11 @@ static uint8_t *consume_uint8_array(tokudb::buffer &b, uint32_t array_size) { return p; } -static int tokudb_expand_blobs( - DB* db, - const DBT* key_dbt, - const DBT* old_val_dbt, - const DBT* extra, - void (*set_val)(const DBT* new_val_dbt, void* set_extra), - void* set_extra) { - +static int tokudb_expand_blobs(const DBT* old_val_dbt, + const DBT* extra, + void (*set_val)(const DBT* new_val_dbt, + void* set_extra), + void* set_extra) { tokudb::buffer extra_val(extra->data, 0, extra->size); uint8_t operation; @@ -1549,12 +1534,9 @@ static int tokudb_expand_blobs( // Decode and apply a sequence of update operations defined in the extra to // the old value and put the result in the new value. -static void apply_1_updates( - tokudb::value_map& vd, - tokudb::buffer& new_val, - tokudb::buffer& old_val, - tokudb::buffer& extra_val) { - +static void apply_1_updates(tokudb::value_map& vd, + tokudb::buffer& old_val, + tokudb::buffer& extra_val) { uint32_t num_updates; extra_val.consume(&num_updates, sizeof num_updates); for ( ; num_updates > 0; num_updates--) { @@ -1628,14 +1610,11 @@ static void apply_1_updates( // Simple update handler. Decode the update message, apply the update operations // to the old value, and set the new value. -static int tokudb_update_1_fun( - DB* db, - const DBT* key_dbt, - const DBT* old_val_dbt, - const DBT* extra, - void (*set_val)(const DBT* new_val_dbt, void* set_extra), - void* set_extra) { - +static int tokudb_update_1_fun(const DBT* old_val_dbt, + const DBT* extra, + void (*set_val)(const DBT* new_val_dbt, + void* set_extra), + void* set_extra) { tokudb::buffer extra_val(extra->data, 0, extra->size); uint8_t operation; @@ -1669,7 +1648,7 @@ static int tokudb_update_1_fun( m_bytes_per_offset); // apply updates to new val - apply_1_updates(vd, new_val, old_val, extra_val); + apply_1_updates(vd, old_val, extra_val); // set the new val DBT new_val_dbt; memset(&new_val_dbt, 0, sizeof new_val_dbt); @@ -1685,14 +1664,11 @@ static int tokudb_update_1_fun( // then insert a new value from the extra. // Otherwise, apply the update operations to the old value, and then set the // new value. -static int tokudb_upsert_1_fun( - DB* db, - const DBT* key_dbt, - const DBT* old_val_dbt, - const DBT* extra, - void (*set_val)(const DBT* new_val_dbt, void* set_extra), - void* set_extra) { - +static int tokudb_upsert_1_fun(const DBT* old_val_dbt, + const DBT* extra, + void (*set_val)(const DBT* new_val_dbt, + void* set_extra), + void* set_extra) { tokudb::buffer extra_val(extra->data, 0, extra->size); uint8_t operation; @@ -1736,7 +1712,7 @@ static int tokudb_upsert_1_fun( m_bytes_per_offset); // apply updates to new val - apply_1_updates(vd, new_val, old_val, extra_val); + apply_1_updates(vd, old_val, extra_val); // set the new val DBT new_val_dbt; memset(&new_val_dbt, 0, sizeof new_val_dbt); @@ -1750,12 +1726,9 @@ static int tokudb_upsert_1_fun( // Decode and apply a sequence of update operations defined in the extra to the // old value and put the result in the new value. -static void apply_2_updates( - tokudb::value_map& vd, - tokudb::buffer& new_val, - tokudb::buffer& old_val, - tokudb::buffer& extra_val) { - +static void apply_2_updates(tokudb::value_map& vd, + tokudb::buffer& old_val, + tokudb::buffer& extra_val) { uint32_t num_updates = consume_uint32(extra_val); for (uint32_t i = 0; i < num_updates; i++) { uint32_t update_operation = consume_uint32(extra_val); @@ -1856,14 +1829,11 @@ static void apply_2_updates( // Simple update handler. Decode the update message, apply the update // operations to the old value, and set the new value. -static int tokudb_update_2_fun( - DB* db, - const DBT* key_dbt, - const DBT* old_val_dbt, - const DBT* extra, - void (*set_val)(const DBT* new_val_dbt, void* set_extra), - void* set_extra) { - +static int tokudb_update_2_fun(const DBT* old_val_dbt, + const DBT* extra, + void (*set_val)(const DBT* new_val_dbt, + void* set_extra), + void* set_extra) { tokudb::buffer extra_val(extra->data, 0, extra->size); uint8_t op; @@ -1883,7 +1853,7 @@ static int tokudb_update_2_fun( tokudb::value_map vd(&new_val); // apply updates to new val - apply_2_updates(vd, new_val, old_val, extra_val); + apply_2_updates(vd, old_val, extra_val); // set the new val DBT new_val_dbt; memset(&new_val_dbt, 0, sizeof new_val_dbt); @@ -1899,14 +1869,11 @@ static int tokudb_update_2_fun( // then insert a new value from the extra. // Otherwise, apply the update operations to the old value, and then set the // new value. -static int tokudb_upsert_2_fun( - DB* db, - const DBT* key_dbt, - const DBT* old_val_dbt, - const DBT* extra, - void (*set_val)(const DBT* new_val_dbt, void* set_extra), - void* set_extra) { - +static int tokudb_upsert_2_fun(const DBT* old_val_dbt, + const DBT* extra, + void (*set_val)(const DBT* new_val_dbt, + void* set_extra), + void* set_extra) { tokudb::buffer extra_val(extra->data, 0, extra->size); uint8_t op; @@ -1937,7 +1904,7 @@ static int tokudb_upsert_2_fun( tokudb::value_map vd(&new_val); // apply updates to new val - apply_2_updates(vd, new_val, old_val, extra_val); + apply_2_updates(vd, old_val, extra_val); // set the new val DBT new_val_dbt; memset(&new_val_dbt, 0, sizeof new_val_dbt); @@ -1952,101 +1919,46 @@ static int tokudb_upsert_2_fun( // This function is the update callback function that is registered with the // YDB environment. It uses the first byte in the update message to identify // the update message type and call the handler for that message. -int tokudb_update_fun( - DB* db, - const DBT* key, - const DBT* old_val, - const DBT* extra, - void (*set_val)(const DBT* new_val, void* set_extra), - void* set_extra) { - +int tokudb_update_fun(TOKUDB_UNUSED(DB* db), + TOKUDB_UNUSED(const DBT* key), + const DBT* old_val, + const DBT* extra, + void (*set_val)(const DBT* new_val, void* set_extra), + void* set_extra) { assert_always(extra->size > 0); uint8_t* extra_pos = (uchar*)extra->data; uint8_t operation = extra_pos[0]; int error; switch (operation) { case UPDATE_OP_COL_ADD_OR_DROP: - error = tokudb_hcad_update_fun( - db, - key, - old_val, - extra, - set_val, - set_extra); + error = tokudb_hcad_update_fun(old_val, extra, set_val, set_extra); break; case UPDATE_OP_EXPAND_VARIABLE_OFFSETS: - error = tokudb_expand_variable_offsets( - db, - key, - old_val, - extra, - set_val, - set_extra); + error = + tokudb_expand_variable_offsets(old_val, extra, set_val, set_extra); break; case UPDATE_OP_EXPAND_INT: case UPDATE_OP_EXPAND_UINT: - error = tokudb_expand_int_field( - db, - key, - old_val, - extra, - set_val, - set_extra); + error = tokudb_expand_int_field(old_val, extra, set_val, set_extra); break; case UPDATE_OP_EXPAND_CHAR: case UPDATE_OP_EXPAND_BINARY: - error = tokudb_expand_char_field( - db, - key, - old_val, - extra, - set_val, - set_extra); + error = tokudb_expand_char_field(old_val, extra, set_val, set_extra); break; case UPDATE_OP_EXPAND_BLOB: - error = tokudb_expand_blobs( - db, - key, - old_val, - extra, - set_val, - set_extra); + error = tokudb_expand_blobs(old_val, extra, set_val, set_extra); break; case UPDATE_OP_UPDATE_1: - error = tokudb_update_1_fun( - db, - key, - old_val, - extra, - set_val, - set_extra); + error = tokudb_update_1_fun(old_val, extra, set_val, set_extra); break; case UPDATE_OP_UPSERT_1: - error = tokudb_upsert_1_fun( - db, - key, - old_val, - extra, - set_val, - set_extra); + error = tokudb_upsert_1_fun(old_val, extra, set_val, set_extra); break; case UPDATE_OP_UPDATE_2: - error = tokudb_update_2_fun( - db, - key, - old_val, - extra, - set_val, - set_extra); + error = tokudb_update_2_fun(old_val, extra, set_val, set_extra); break; case UPDATE_OP_UPSERT_2: - error = tokudb_upsert_2_fun( - db, - key, - old_val, - extra, - set_val, - set_extra); + error = tokudb_upsert_2_fun(old_val, extra, set_val, set_extra); break; default: assert_unreachable(); From 14ddcb1ff27dbb7248c63a01756852404b6d5209 Mon Sep 17 00:00:00 2001 From: Sergei Golubchik Date: Thu, 2 Aug 2018 22:28:04 +0200 Subject: [PATCH 040/148] Bug#27407480: AUTOMATIC_SP_PRIVILEGES REQUIRES NEED THE INSERT PRIVILEGES FOR MYSQL.USER TABLE A test case and a followup fix --- mysql-test/r/sp-security.result | 21 +++++++++++++++++++++ mysql-test/t/sp-security.test | 19 ++++++++++++++++++- sql/sql_acl.cc | 2 +- 3 files changed, 40 insertions(+), 2 deletions(-) diff --git a/mysql-test/r/sp-security.result b/mysql-test/r/sp-security.result index 88908b05f46..39237b7f322 100644 --- a/mysql-test/r/sp-security.result +++ b/mysql-test/r/sp-security.result @@ -617,3 +617,24 @@ SELECT 1 latin1 latin1_swedish_ci latin1_swedish_ci # Connection default DROP USER user2@localhost; DROP DATABASE db1; +create user foo@local_ost; +create user foo@`local\_ost` identified by 'nevermore'; +create database foodb; +grant create routine on foodb.* to foo@local_ost; +select user(), current_user(); +user() current_user() +foo@localhost foo@local_ost +show grants; +Grants for foo@local_ost +GRANT USAGE ON *.* TO 'foo'@'local_ost' +GRANT CREATE ROUTINE ON `foodb`.* TO 'foo'@'local_ost' +create procedure fooproc() select 'i am fooproc'; +show grants; +Grants for foo@local_ost +GRANT USAGE ON *.* TO 'foo'@'local_ost' +GRANT CREATE ROUTINE ON `foodb`.* TO 'foo'@'local_ost' +GRANT EXECUTE, ALTER ROUTINE ON PROCEDURE `test`.`fooproc` TO 'foo'@'local_ost' +drop user foo@local_ost; +drop user foo@`local\_ost`; +drop procedure fooproc; +drop database foodb; diff --git a/mysql-test/t/sp-security.test b/mysql-test/t/sp-security.test index ca4e6b04f13..3769bb3b4bf 100644 --- a/mysql-test/t/sp-security.test +++ b/mysql-test/t/sp-security.test @@ -995,7 +995,24 @@ disconnect con2; DROP USER user2@localhost; DROP DATABASE db1; +# +# Bug#27407480: AUTOMATIC_SP_PRIVILEGES REQUIRES NEED THE INSERT PRIVILEGES FOR MYSQL.USER TABLE +# +create user foo@local_ost; +create user foo@`local\_ost` identified by 'nevermore'; +create database foodb; +grant create routine on foodb.* to foo@local_ost; +connect con1,localhost,foo; +select user(), current_user(); +show grants; +create procedure fooproc() select 'i am fooproc'; +show grants; +disconnect con1; +connection default; +drop user foo@local_ost; +drop user foo@`local\_ost`; +drop procedure fooproc; +drop database foodb; # Wait till all disconnects are completed --source include/wait_until_count_sessions.inc - diff --git a/sql/sql_acl.cc b/sql/sql_acl.cc index 24740a0695a..066e7e4c7f4 100644 --- a/sql/sql_acl.cc +++ b/sql/sql_acl.cc @@ -7190,7 +7190,7 @@ bool sp_grant_privileges(THD *thd, const char *sp_db, const char *sp_name, mysql_mutex_lock(&acl_cache->lock); if ((au= find_acl_user(combo->host.str= (char *) sctx->priv_host, - combo->user.str, FALSE))) + combo->user.str, TRUE))) goto found_acl; mysql_mutex_unlock(&acl_cache->lock); From ff34436a2ecc30a177cb304fd1dce928d8709f45 Mon Sep 17 00:00:00 2001 From: Sergei Golubchik Date: Fri, 3 Aug 2018 13:04:43 +0200 Subject: [PATCH 041/148] Bug#27230925: HANDLE_FATAL_SIGNAL (SIG=11) IN SHOW_ROUTINE_GRANTS test case --- mysql-test/r/grant.result | 21 +++++++++++++++++++++ mysql-test/t/grant.test | 21 +++++++++++++++++++++ 2 files changed, 42 insertions(+) diff --git a/mysql-test/r/grant.result b/mysql-test/r/grant.result index 85e42ea96ee..60f2eb90e2d 100644 --- a/mysql-test/r/grant.result +++ b/mysql-test/r/grant.result @@ -2581,3 +2581,24 @@ foo@localhost foo@127.0.0.1 # Clean-up DROP USER foo@'127.0.0.1'; # End of Bug#12766319 +create user foo@localhost; +create database foodb; +grant create routine on foodb.* to foo@localhost; +create procedure fooproc() select 'i am fooproc'; +show grants; +Grants for foo@localhost +GRANT USAGE ON *.* TO 'foo'@'localhost' +GRANT CREATE ROUTINE ON `foodb`.* TO 'foo'@'localhost' +GRANT EXECUTE, ALTER ROUTINE ON PROCEDURE `test`.`fooproc` TO 'foo'@'localhost' +rename table mysql.procs_priv to mysql.procs_priv1; +flush privileges; +ERROR 42S02: Table 'mysql.procs_priv' doesn't exist +show grants for foo@localhost; +Grants for foo@localhost +GRANT USAGE ON *.* TO 'foo'@'localhost' +GRANT CREATE ROUTINE ON `foodb`.* TO 'foo'@'localhost' +GRANT EXECUTE, ALTER ROUTINE ON PROCEDURE `test`.`fooproc` TO 'foo'@'localhost' +rename table mysql.procs_priv1 to mysql.procs_priv; +drop user foo@localhost; +drop procedure fooproc; +drop database foodb; diff --git a/mysql-test/t/grant.test b/mysql-test/t/grant.test index 5de3328944a..220cc0a248c 100644 --- a/mysql-test/t/grant.test +++ b/mysql-test/t/grant.test @@ -2244,5 +2244,26 @@ DROP USER foo@'127.0.0.1'; --echo # End of Bug#12766319 +# +# Bug#27230925: HANDLE_FATAL_SIGNAL (SIG=11) IN SHOW_ROUTINE_GRANTS +# +create user foo@localhost; +create database foodb; +grant create routine on foodb.* to foo@localhost; +connect con1,localhost,foo; +create procedure fooproc() select 'i am fooproc'; +show grants; +disconnect con1; +connection default; +rename table mysql.procs_priv to mysql.procs_priv1; +error ER_NO_SUCH_TABLE; +flush privileges; +show grants for foo@localhost; +rename table mysql.procs_priv1 to mysql.procs_priv; +drop user foo@localhost; +drop procedure fooproc; +drop database foodb; + + # Wait till we reached the initial number of concurrent sessions --source include/wait_until_count_sessions.inc From 22bcfa011acd81c44c2ad969a0edc2401a32a311 Mon Sep 17 00:00:00 2001 From: Sergei Golubchik Date: Tue, 17 Jul 2018 14:35:04 +0200 Subject: [PATCH 042/148] cleanup: FOREIGN_KEY_INFO instead of returning strings for CASCADE/RESTRICT from every storage engine, use enum values Backport of a3614d33e8a --- sql/sql_class.h | 2 -- sql/sql_lex.h | 4 +-- sql/sql_show.cc | 9 ++++--- sql/sql_yacc.yy | 20 +++++++------- sql/table.cc | 13 +++++++++ sql/table.h | 9 +++++-- storage/innobase/handler/ha_innodb.cc | 32 ++++++----------------- storage/innobase/handler/handler0alter.cc | 20 +++++++------- storage/mroonga/ha_mroonga.cpp | 6 ++--- storage/xtradb/handler/ha_innodb.cc | 32 ++++++----------------- storage/xtradb/handler/handler0alter.cc | 20 +++++++------- 11 files changed, 75 insertions(+), 92 deletions(-) diff --git a/sql/sql_class.h b/sql/sql_class.h index 9428f6f6ce5..3145f70df2d 100644 --- a/sql/sql_class.h +++ b/sql/sql_class.h @@ -324,8 +324,6 @@ class Foreign_key: public Key { public: enum fk_match_opt { FK_MATCH_UNDEF, FK_MATCH_FULL, FK_MATCH_PARTIAL, FK_MATCH_SIMPLE}; - enum fk_option { FK_OPTION_UNDEF, FK_OPTION_RESTRICT, FK_OPTION_CASCADE, - FK_OPTION_SET_NULL, FK_OPTION_NO_ACTION, FK_OPTION_DEFAULT}; LEX_STRING ref_db; LEX_STRING ref_table; diff --git a/sql/sql_lex.h b/sql/sql_lex.h index 3fed9808f57..d58be8b336a 100644 --- a/sql/sql_lex.h +++ b/sql/sql_lex.h @@ -2482,8 +2482,8 @@ struct LEX: public Query_tables_list uint uint_geom_type; uint grant, grant_tot_col, which_columns; enum Foreign_key::fk_match_opt fk_match_option; - enum Foreign_key::fk_option fk_update_opt; - enum Foreign_key::fk_option fk_delete_opt; + enum_fk_option fk_update_opt; + enum_fk_option fk_delete_opt; uint slave_thd_opt, start_transaction_opt; int nest_level; /* diff --git a/sql/sql_show.cc b/sql/sql_show.cc index cdcd6fe47e3..9c2cef80d61 100644 --- a/sql/sql_show.cc +++ b/sql/sql_show.cc @@ -7534,6 +7534,7 @@ get_referential_constraints_record(THD *thd, TABLE_LIST *tables, LEX_STRING *db_name, LEX_STRING *table_name) { CHARSET_INFO *cs= system_charset_info; + LEX_CSTRING *s; DBUG_ENTER("get_referential_constraints_record"); if (res) @@ -7578,10 +7579,10 @@ get_referential_constraints_record(THD *thd, TABLE_LIST *tables, else table->field[5]->set_null(); table->field[6]->store(STRING_WITH_LEN("NONE"), cs); - table->field[7]->store(f_key_info->update_method->str, - f_key_info->update_method->length, cs); - table->field[8]->store(f_key_info->delete_method->str, - f_key_info->delete_method->length, cs); + s= fk_option_name(f_key_info->update_method); + table->field[7]->store(s->str, s->length, cs); + s= fk_option_name(f_key_info->delete_method); + table->field[8]->store(s->str, s->length, cs); if (schema_table_store_record(thd, table)) DBUG_RETURN(1); } diff --git a/sql/sql_yacc.yy b/sql/sql_yacc.yy index 321e6ffc9cd..8d0a4506a0b 100644 --- a/sql/sql_yacc.yy +++ b/sql/sql_yacc.yy @@ -939,7 +939,7 @@ static bool sp_create_assignment_instr(THD *thd, bool no_lookahead) struct p_elem_val *p_elem_value; enum index_hint_type index_hint; enum enum_filetype filetype; - enum Foreign_key::fk_option m_fk_option; + enum enum_fk_option m_fk_option; enum enum_yes_no_unknown m_yes_no_unk; Diag_condition_item_name diag_condition_item_name; Diagnostics_information::Which_area diag_area; @@ -6752,19 +6752,19 @@ opt_on_update_delete: /* empty */ { LEX *lex= Lex; - lex->fk_update_opt= Foreign_key::FK_OPTION_UNDEF; - lex->fk_delete_opt= Foreign_key::FK_OPTION_UNDEF; + lex->fk_update_opt= FK_OPTION_UNDEF; + lex->fk_delete_opt= FK_OPTION_UNDEF; } | ON UPDATE_SYM delete_option { LEX *lex= Lex; lex->fk_update_opt= $3; - lex->fk_delete_opt= Foreign_key::FK_OPTION_UNDEF; + lex->fk_delete_opt= FK_OPTION_UNDEF; } | ON DELETE_SYM delete_option { LEX *lex= Lex; - lex->fk_update_opt= Foreign_key::FK_OPTION_UNDEF; + lex->fk_update_opt= FK_OPTION_UNDEF; lex->fk_delete_opt= $3; } | ON UPDATE_SYM delete_option @@ -6784,11 +6784,11 @@ opt_on_update_delete: ; delete_option: - RESTRICT { $$= Foreign_key::FK_OPTION_RESTRICT; } - | CASCADE { $$= Foreign_key::FK_OPTION_CASCADE; } - | SET NULL_SYM { $$= Foreign_key::FK_OPTION_SET_NULL; } - | NO_SYM ACTION { $$= Foreign_key::FK_OPTION_NO_ACTION; } - | SET DEFAULT { $$= Foreign_key::FK_OPTION_DEFAULT; } + RESTRICT { $$= FK_OPTION_RESTRICT; } + | CASCADE { $$= FK_OPTION_CASCADE; } + | SET NULL_SYM { $$= FK_OPTION_SET_NULL; } + | NO_SYM ACTION { $$= FK_OPTION_NO_ACTION; } + | SET DEFAULT { $$= FK_OPTION_SET_DEFAULT; } ; normal_key_type: diff --git a/sql/table.cc b/sql/table.cc index 5ea5d8cf3c5..144720986f2 100644 --- a/sql/table.cc +++ b/sql/table.cc @@ -7251,3 +7251,16 @@ double KEY::actual_rec_per_key(uint i) read_stats->get_avg_frequency(i) : (double) rec_per_key[i]); } +LEX_CSTRING *fk_option_name(enum_fk_option opt) +{ + static LEX_CSTRING names[]= + { + { STRING_WITH_LEN("???") }, + { STRING_WITH_LEN("RESTRICT") }, + { STRING_WITH_LEN("CASCADE") }, + { STRING_WITH_LEN("SET NULL") }, + { STRING_WITH_LEN("NO ACTION") }, + { STRING_WITH_LEN("SET DEFAULT") } + }; + return names + opt; +} diff --git a/sql/table.h b/sql/table.h index 05596b605a5..1b7a447eaf1 100644 --- a/sql/table.h +++ b/sql/table.h @@ -1429,6 +1429,9 @@ enum enum_schema_table_state PROCESSED_BY_JOIN_EXEC }; +enum enum_fk_option { FK_OPTION_UNDEF, FK_OPTION_RESTRICT, FK_OPTION_CASCADE, + FK_OPTION_SET_NULL, FK_OPTION_NO_ACTION, FK_OPTION_SET_DEFAULT}; + typedef struct st_foreign_key_info { LEX_STRING *foreign_id; @@ -1436,13 +1439,15 @@ typedef struct st_foreign_key_info LEX_STRING *foreign_table; LEX_STRING *referenced_db; LEX_STRING *referenced_table; - LEX_STRING *update_method; - LEX_STRING *delete_method; + enum_fk_option update_method; + enum_fk_option delete_method; LEX_STRING *referenced_key_name; List foreign_fields; List referenced_fields; } FOREIGN_KEY_INFO; +LEX_CSTRING *fk_option_name(enum_fk_option opt); + #define MY_I_S_MAYBE_NULL 1 #define MY_I_S_UNSIGNED 2 diff --git a/storage/innobase/handler/ha_innodb.cc b/storage/innobase/handler/ha_innodb.cc index 3959b49b600..35693cf4ece 100644 --- a/storage/innobase/handler/ha_innodb.cc +++ b/storage/innobase/handler/ha_innodb.cc @@ -12461,41 +12461,25 @@ get_foreign_key_info( } while (++i < foreign->n_fields); if (foreign->type & DICT_FOREIGN_ON_DELETE_CASCADE) { - len = 7; - ptr = "CASCADE"; + f_key_info.delete_method = FK_OPTION_CASCADE; } else if (foreign->type & DICT_FOREIGN_ON_DELETE_SET_NULL) { - len = 8; - ptr = "SET NULL"; + f_key_info.delete_method = FK_OPTION_SET_NULL; } else if (foreign->type & DICT_FOREIGN_ON_DELETE_NO_ACTION) { - len = 9; - ptr = "NO ACTION"; + f_key_info.delete_method = FK_OPTION_NO_ACTION; } else { - len = 8; - ptr = "RESTRICT"; + f_key_info.delete_method = FK_OPTION_RESTRICT; } - f_key_info.delete_method = thd_make_lex_string( - thd, f_key_info.delete_method, ptr, - static_cast(len), 1); - if (foreign->type & DICT_FOREIGN_ON_UPDATE_CASCADE) { - len = 7; - ptr = "CASCADE"; + f_key_info.update_method = FK_OPTION_CASCADE; } else if (foreign->type & DICT_FOREIGN_ON_UPDATE_SET_NULL) { - len = 8; - ptr = "SET NULL"; + f_key_info.update_method = FK_OPTION_SET_NULL; } else if (foreign->type & DICT_FOREIGN_ON_UPDATE_NO_ACTION) { - len = 9; - ptr = "NO ACTION"; + f_key_info.update_method = FK_OPTION_NO_ACTION; } else { - len = 8; - ptr = "RESTRICT"; + f_key_info.update_method = FK_OPTION_RESTRICT; } - f_key_info.update_method = thd_make_lex_string( - thd, f_key_info.update_method, ptr, - static_cast(len), 1); - if (foreign->referenced_index && foreign->referenced_index->name) { referenced_key_name = thd_make_lex_string(thd, f_key_info.referenced_key_name, diff --git a/storage/innobase/handler/handler0alter.cc b/storage/innobase/handler/handler0alter.cc index 6a3e9575eb1..8d5eefc4f2b 100644 --- a/storage/innobase/handler/handler0alter.cc +++ b/storage/innobase/handler/handler0alter.cc @@ -729,29 +729,29 @@ innobase_set_foreign_key_option( ut_ad(!foreign->type); switch (fk_key->delete_opt) { - case Foreign_key::FK_OPTION_NO_ACTION: - case Foreign_key::FK_OPTION_RESTRICT: - case Foreign_key::FK_OPTION_DEFAULT: + case FK_OPTION_NO_ACTION: + case FK_OPTION_RESTRICT: + case FK_OPTION_SET_DEFAULT: foreign->type = DICT_FOREIGN_ON_DELETE_NO_ACTION; break; - case Foreign_key::FK_OPTION_CASCADE: + case FK_OPTION_CASCADE: foreign->type = DICT_FOREIGN_ON_DELETE_CASCADE; break; - case Foreign_key::FK_OPTION_SET_NULL: + case FK_OPTION_SET_NULL: foreign->type = DICT_FOREIGN_ON_DELETE_SET_NULL; break; } switch (fk_key->update_opt) { - case Foreign_key::FK_OPTION_NO_ACTION: - case Foreign_key::FK_OPTION_RESTRICT: - case Foreign_key::FK_OPTION_DEFAULT: + case FK_OPTION_NO_ACTION: + case FK_OPTION_RESTRICT: + case FK_OPTION_SET_DEFAULT: foreign->type |= DICT_FOREIGN_ON_UPDATE_NO_ACTION; break; - case Foreign_key::FK_OPTION_CASCADE: + case FK_OPTION_CASCADE: foreign->type |= DICT_FOREIGN_ON_UPDATE_CASCADE; break; - case Foreign_key::FK_OPTION_SET_NULL: + case FK_OPTION_SET_NULL: foreign->type |= DICT_FOREIGN_ON_UPDATE_SET_NULL; break; } diff --git a/storage/mroonga/ha_mroonga.cpp b/storage/mroonga/ha_mroonga.cpp index 08942deed8d..e4b6698cdf6 100644 --- a/storage/mroonga/ha_mroonga.cpp +++ b/storage/mroonga/ha_mroonga.cpp @@ -15755,10 +15755,8 @@ int ha_mroonga::storage_get_foreign_key_list(THD *thd, ref_table_buff, ref_table_name_length, TRUE); - f_key_info.update_method = thd_make_lex_string(thd, NULL, "RESTRICT", - 8, TRUE); - f_key_info.delete_method = thd_make_lex_string(thd, NULL, "RESTRICT", - 8, TRUE); + f_key_info.update_method = FK_OPTION_RESTRICT; + f_key_info.delete_method = FK_OPTION_RESTRICT; f_key_info.referenced_key_name = thd_make_lex_string(thd, NULL, "PRIMARY", 7, TRUE); LEX_STRING *field_name = thd_make_lex_string(thd, NULL, column_name, diff --git a/storage/xtradb/handler/ha_innodb.cc b/storage/xtradb/handler/ha_innodb.cc index 3553674040a..82a59031453 100644 --- a/storage/xtradb/handler/ha_innodb.cc +++ b/storage/xtradb/handler/ha_innodb.cc @@ -13327,41 +13327,25 @@ get_foreign_key_info( } while (++i < foreign->n_fields); if (foreign->type & DICT_FOREIGN_ON_DELETE_CASCADE) { - len = 7; - ptr = "CASCADE"; + f_key_info.delete_method = FK_OPTION_CASCADE; } else if (foreign->type & DICT_FOREIGN_ON_DELETE_SET_NULL) { - len = 8; - ptr = "SET NULL"; + f_key_info.delete_method = FK_OPTION_SET_NULL; } else if (foreign->type & DICT_FOREIGN_ON_DELETE_NO_ACTION) { - len = 9; - ptr = "NO ACTION"; + f_key_info.delete_method = FK_OPTION_NO_ACTION; } else { - len = 8; - ptr = "RESTRICT"; + f_key_info.delete_method = FK_OPTION_RESTRICT; } - f_key_info.delete_method = thd_make_lex_string( - thd, f_key_info.delete_method, ptr, - static_cast(len), 1); - if (foreign->type & DICT_FOREIGN_ON_UPDATE_CASCADE) { - len = 7; - ptr = "CASCADE"; + f_key_info.update_method = FK_OPTION_CASCADE; } else if (foreign->type & DICT_FOREIGN_ON_UPDATE_SET_NULL) { - len = 8; - ptr = "SET NULL"; + f_key_info.update_method = FK_OPTION_SET_NULL; } else if (foreign->type & DICT_FOREIGN_ON_UPDATE_NO_ACTION) { - len = 9; - ptr = "NO ACTION"; + f_key_info.update_method = FK_OPTION_NO_ACTION; } else { - len = 8; - ptr = "RESTRICT"; + f_key_info.update_method = FK_OPTION_RESTRICT; } - f_key_info.update_method = thd_make_lex_string( - thd, f_key_info.update_method, ptr, - static_cast(len), 1); - if (foreign->referenced_index && foreign->referenced_index->name) { referenced_key_name = thd_make_lex_string(thd, f_key_info.referenced_key_name, diff --git a/storage/xtradb/handler/handler0alter.cc b/storage/xtradb/handler/handler0alter.cc index bc6a6dd68d4..8235263b305 100644 --- a/storage/xtradb/handler/handler0alter.cc +++ b/storage/xtradb/handler/handler0alter.cc @@ -730,29 +730,29 @@ innobase_set_foreign_key_option( ut_ad(!foreign->type); switch (fk_key->delete_opt) { - case Foreign_key::FK_OPTION_NO_ACTION: - case Foreign_key::FK_OPTION_RESTRICT: - case Foreign_key::FK_OPTION_DEFAULT: + case FK_OPTION_NO_ACTION: + case FK_OPTION_RESTRICT: + case FK_OPTION_SET_DEFAULT: foreign->type = DICT_FOREIGN_ON_DELETE_NO_ACTION; break; - case Foreign_key::FK_OPTION_CASCADE: + case FK_OPTION_CASCADE: foreign->type = DICT_FOREIGN_ON_DELETE_CASCADE; break; - case Foreign_key::FK_OPTION_SET_NULL: + case FK_OPTION_SET_NULL: foreign->type = DICT_FOREIGN_ON_DELETE_SET_NULL; break; } switch (fk_key->update_opt) { - case Foreign_key::FK_OPTION_NO_ACTION: - case Foreign_key::FK_OPTION_RESTRICT: - case Foreign_key::FK_OPTION_DEFAULT: + case FK_OPTION_NO_ACTION: + case FK_OPTION_RESTRICT: + case FK_OPTION_SET_DEFAULT: foreign->type |= DICT_FOREIGN_ON_UPDATE_NO_ACTION; break; - case Foreign_key::FK_OPTION_CASCADE: + case FK_OPTION_CASCADE: foreign->type |= DICT_FOREIGN_ON_UPDATE_CASCADE; break; - case Foreign_key::FK_OPTION_SET_NULL: + case FK_OPTION_SET_NULL: foreign->type |= DICT_FOREIGN_ON_UPDATE_SET_NULL; break; } From 3b365fa82917ea0a29e11f160a80707d27b9948a Mon Sep 17 00:00:00 2001 From: Sergei Golubchik Date: Thu, 10 Nov 2016 16:10:41 +0100 Subject: [PATCH 043/148] cleanup: sp_head::add_used_tables_to_table_list() Use TABLE::init_one_table(), don't duplicate it. Put additional initializations into TABLE::init_one_table_for_prelocking() Backport of f1362910980 --- sql/sp_head.cc | 33 ++++++--------------------------- sql/table.h | 22 ++++++++++++++++++++++ 2 files changed, 28 insertions(+), 27 deletions(-) diff --git a/sql/sp_head.cc b/sql/sp_head.cc index 164ceb677ee..4c88fc5809a 100644 --- a/sql/sp_head.cc +++ b/sql/sp_head.cc @@ -4219,7 +4219,7 @@ sp_head::add_used_tables_to_table_list(THD *thd, if (stab->temp) continue; - if (!(tab_buff= (char *)thd->calloc(ALIGN_SIZE(sizeof(TABLE_LIST)) * + if (!(tab_buff= (char *)thd->alloc(ALIGN_SIZE(sizeof(TABLE_LIST)) * stab->lock_count)) || !(key_buff= (char*)thd->memdup(stab->qname.str, stab->qname.length))) @@ -4228,32 +4228,11 @@ sp_head::add_used_tables_to_table_list(THD *thd, for (uint j= 0; j < stab->lock_count; j++) { table= (TABLE_LIST *)tab_buff; - - table->db= key_buff; - table->db_length= stab->db_length; - table->table_name= table->db + table->db_length + 1; - table->table_name_length= stab->table_name_length; - table->alias= table->table_name + table->table_name_length + 1; - table->lock_type= stab->lock_type; - table->cacheable_table= 1; - table->prelocking_placeholder= 1; - table->belong_to_view= belong_to_view; - table->trg_event_map= stab->trg_event_map; - /* - Since we don't allow DDL on base tables in prelocked mode it - is safe to infer the type of metadata lock from the type of - table lock. - */ - table->mdl_request.init(MDL_key::TABLE, table->db, table->table_name, - table->lock_type >= TL_WRITE_ALLOW_WRITE ? - MDL_SHARED_WRITE : MDL_SHARED_READ, - MDL_TRANSACTION); - - /* Everyting else should be zeroed */ - - **query_tables_last_ptr= table; - table->prev_global= *query_tables_last_ptr; - *query_tables_last_ptr= &table->next_global; + table->init_one_table_for_prelocking(key_buff, stab->db_length, + key_buff + stab->db_length + 1, stab->table_name_length, + key_buff + stab->db_length + stab->table_name_length + 2, + stab->lock_type, belong_to_view, stab->trg_event_map, + query_tables_last_ptr); tab_buff+= ALIGN_SIZE(sizeof(TABLE_LIST)); result= TRUE; diff --git a/sql/table.h b/sql/table.h index 1b7a447eaf1..5e99c89150b 100644 --- a/sql/table.h +++ b/sql/table.h @@ -1707,6 +1707,28 @@ struct TABLE_LIST MDL_TRANSACTION); } + inline void init_one_table_for_prelocking(const char *db_name_arg, + size_t db_length_arg, + const char *table_name_arg, + size_t table_name_length_arg, + const char *alias_arg, + enum thr_lock_type lock_type_arg, + TABLE_LIST *belong_to_view_arg, + uint8 trg_event_map_arg, + TABLE_LIST ***last_ptr) + { + init_one_table(db_name_arg, db_length_arg, table_name_arg, + table_name_length_arg, alias_arg, lock_type_arg); + cacheable_table= 1; + prelocking_placeholder= 1; + belong_to_view= belong_to_view_arg; + trg_event_map= trg_event_map_arg; + + **last_ptr= this; + prev_global= *last_ptr; + *last_ptr= &next_global; + } + /* List of tables local to a subquery (used by SQL_I_List). Considers views as leaves (unlike 'next_leaf' below). Created at parse time From 64a23c1c8a826a6f58f8a415f60a0e3cc0e0375f Mon Sep 17 00:00:00 2001 From: Sergei Golubchik Date: Tue, 17 Jul 2018 16:56:40 +0200 Subject: [PATCH 044/148] extend prelocking to FK-accessed tables Backport of f1362910980 --- mysql-test/suite/innodb/r/foreign-keys.result | 37 +++++++++++ mysql-test/suite/innodb/t/foreign-keys.test | 48 ++++++++++++++ sql/sp_head.cc | 2 +- sql/sql_base.cc | 65 +++++++++++++++++++ sql/sql_class.cc | 3 +- sql/table.h | 6 +- 6 files changed, 157 insertions(+), 4 deletions(-) diff --git a/mysql-test/suite/innodb/r/foreign-keys.result b/mysql-test/suite/innodb/r/foreign-keys.result index 53ddf618244..0cb53f52a6c 100644 --- a/mysql-test/suite/innodb/r/foreign-keys.result +++ b/mysql-test/suite/innodb/r/foreign-keys.result @@ -14,3 +14,40 @@ ALTER TABLE `title` ADD FOREIGN KEY (`title_manager_fk`) REFERENCES `people` ALTER TABLE `title` ADD FOREIGN KEY (`title_reporter_fk`) REFERENCES `people` (`people_id`); drop table title, department, people; +create table t1 (a int primary key, b int) engine=innodb; +create table t2 (c int primary key, d int, +foreign key (d) references t1 (a) on update cascade) engine=innodb; +insert t1 values (1,1),(2,2),(3,3); +insert t2 values (4,1),(5,2),(6,3); +flush table t2 with read lock; +connect con1,localhost,root; +delete from t1 where a=2; +ERROR 23000: Cannot delete or update a parent row: a foreign key constraint fails (`test`.`t2`, CONSTRAINT `t2_ibfk_1` FOREIGN KEY (`d`) REFERENCES `t1` (`a`) ON UPDATE CASCADE) +update t1 set a=10 where a=1; +connection default; +unlock tables; +connection con1; +connection default; +lock table t2 write; +connection con1; +delete from t1 where a=2; +connection default; +unlock tables; +connection con1; +ERROR 23000: Cannot delete or update a parent row: a foreign key constraint fails (`test`.`t2`, CONSTRAINT `t2_ibfk_1` FOREIGN KEY (`d`) REFERENCES `t1` (`a`) ON UPDATE CASCADE) +connection default; +unlock tables; +disconnect con1; +create user foo; +grant select,update on test.t1 to foo; +connect foo,localhost,foo; +update t1 set a=30 where a=3; +disconnect foo; +connection default; +select * from t2; +c d +5 2 +4 10 +6 30 +drop table t2, t1; +drop user foo; diff --git a/mysql-test/suite/innodb/t/foreign-keys.test b/mysql-test/suite/innodb/t/foreign-keys.test index 2d586e2d6be..44cfbc8b2ca 100644 --- a/mysql-test/suite/innodb/t/foreign-keys.test +++ b/mysql-test/suite/innodb/t/foreign-keys.test @@ -1,6 +1,8 @@ --source include/have_innodb.inc --source include/have_debug.inc +--enable_connect_log + --echo # --echo # Bug #19471516 SERVER CRASHES WHEN EXECUTING ALTER TABLE --echo # ADD FOREIGN KEY @@ -24,3 +26,49 @@ ALTER TABLE `title` ADD FOREIGN KEY (`title_reporter_fk`) REFERENCES `people` (`people_id`); drop table title, department, people; + +# +# FK and prelocking: +# child table accesses (reads and writes) wait for locks. +# +create table t1 (a int primary key, b int) engine=innodb; +create table t2 (c int primary key, d int, + foreign key (d) references t1 (a) on update cascade) engine=innodb; +insert t1 values (1,1),(2,2),(3,3); +insert t2 values (4,1),(5,2),(6,3); +flush table t2 with read lock; # this takes MDL_SHARED_NO_WRITE +connect (con1,localhost,root); +--error ER_ROW_IS_REFERENCED_2 +delete from t1 where a=2; +send update t1 set a=10 where a=1; +connection default; +let $wait_condition= select 1 from information_schema.processlist where state='Waiting for table metadata lock'; +source include/wait_condition.inc; +unlock tables; +connection con1; +reap; +connection default; +lock table t2 write; # this takes MDL_SHARED_NO_READ_WRITE +connection con1; +send delete from t1 where a=2; +connection default; +let $wait_condition= select 1 from information_schema.processlist where state='Waiting for table metadata lock'; +source include/wait_condition.inc; +unlock tables; +connection con1; +--error ER_ROW_IS_REFERENCED_2 +reap; +connection default; +unlock tables; +disconnect con1; + +# but privileges should not be checked +create user foo; +grant select,update on test.t1 to foo; +connect(foo,localhost,foo); +update t1 set a=30 where a=3; +disconnect foo; +connection default; +select * from t2; +drop table t2, t1; +drop user foo; diff --git a/sql/sp_head.cc b/sql/sp_head.cc index 4c88fc5809a..701036d10d0 100644 --- a/sql/sp_head.cc +++ b/sql/sp_head.cc @@ -4231,7 +4231,7 @@ sp_head::add_used_tables_to_table_list(THD *thd, table->init_one_table_for_prelocking(key_buff, stab->db_length, key_buff + stab->db_length + 1, stab->table_name_length, key_buff + stab->db_length + stab->table_name_length + 2, - stab->lock_type, belong_to_view, stab->trg_event_map, + stab->lock_type, true, belong_to_view, stab->trg_event_map, query_tables_last_ptr); tab_buff+= ALIGN_SIZE(sizeof(TABLE_LIST)); diff --git a/sql/sql_base.cc b/sql/sql_base.cc index 96a58b9e1b2..a1ffa239ef4 100644 --- a/sql/sql_base.cc +++ b/sql/sql_base.cc @@ -4802,6 +4802,25 @@ handle_routine(THD *thd, Query_tables_list *prelocking_ctx, } +/* + @note this can be changed to use a hash, instead of scanning the linked + list, if the performance of this function will ever become an issue +*/ +static bool table_already_fk_prelocked(TABLE_LIST *tl, LEX_STRING *db, + LEX_STRING *table, thr_lock_type lock_type) +{ + for (; tl; tl= tl->next_global ) + { + if (tl->lock_type >= lock_type && + tl->prelocking_placeholder == TABLE_LIST::FK && + strcmp(tl->db, db->str) == 0 && + strcmp(tl->table_name, table->str) == 0) + return true; + } + return false; +} + + /** Defines how prelocking algorithm for DML statements should handle table list elements: @@ -4841,6 +4860,52 @@ handle_table(THD *thd, Query_tables_list *prelocking_ctx, add_tables_and_routines_for_triggers(thd, prelocking_ctx, table_list)) return TRUE; } + + if (table_list->table->file->referenced_by_foreign_key()) + { + List fk_list; + List_iterator fk_list_it(fk_list); + FOREIGN_KEY_INFO *fk; + Query_arena *arena, backup; + + arena= thd->activate_stmt_arena_if_needed(&backup); + + table_list->table->file->get_parent_foreign_key_list(thd, &fk_list); + if (thd->is_error()) + { + if (arena) + thd->restore_active_arena(arena, &backup); + return TRUE; + } + + *need_prelocking= TRUE; + + while ((fk= fk_list_it++)) + { + // FK_OPTION_RESTRICT and FK_OPTION_NO_ACTION only need read access + static bool can_write[]= { true, false, true, true, false, true }; + uint8 op= table_list->trg_event_map; + thr_lock_type lock_type; + + if ((op & (1 << TRG_EVENT_DELETE) && can_write[fk->delete_method]) + || (op & (1 << TRG_EVENT_UPDATE) && can_write[fk->update_method])) + lock_type= TL_WRITE_ALLOW_WRITE; + else + lock_type= TL_READ; + + if (table_already_fk_prelocked(table_list, fk->foreign_db, + fk->foreign_table, lock_type)) + continue; + + TABLE_LIST *tl= (TABLE_LIST *) thd->alloc(sizeof(TABLE_LIST)); + tl->init_one_table_for_prelocking(fk->foreign_db->str, fk->foreign_db->length, + fk->foreign_table->str, fk->foreign_table->length, + NULL, lock_type, false, table_list->belong_to_view, + op, &prelocking_ctx->query_tables_last); + } + if (arena) + thd->restore_active_arena(arena, &backup); + } } return FALSE; diff --git a/sql/sql_class.cc b/sql/sql_class.cc index 3b293935048..421f19b0d48 100644 --- a/sql/sql_class.cc +++ b/sql/sql_class.cc @@ -5082,7 +5082,8 @@ has_write_table_with_auto_increment_and_select(TABLE_LIST *tables) for(TABLE_LIST *table= tables; table; table= table->next_global) { if (!table->placeholder() && - (table->lock_type <= TL_READ_NO_INSERT)) + table->lock_type <= TL_READ_NO_INSERT && + table->prelocking_placeholder != TABLE_LIST::FK) { has_select= true; break; diff --git a/sql/table.h b/sql/table.h index 5e99c89150b..9ba282b8c49 100644 --- a/sql/table.h +++ b/sql/table.h @@ -1713,6 +1713,7 @@ struct TABLE_LIST size_t table_name_length_arg, const char *alias_arg, enum thr_lock_type lock_type_arg, + bool routine, TABLE_LIST *belong_to_view_arg, uint8 trg_event_map_arg, TABLE_LIST ***last_ptr) @@ -1720,7 +1721,8 @@ struct TABLE_LIST init_one_table(db_name_arg, db_length_arg, table_name_arg, table_name_length_arg, alias_arg, lock_type_arg); cacheable_table= 1; - prelocking_placeholder= 1; + prelocking_placeholder= routine ? ROUTINE : FK; + open_type= routine ? OT_TEMPORARY_OR_BASE : OT_BASE_ONLY; belong_to_view= belong_to_view_arg; trg_event_map= trg_event_map_arg; @@ -2004,7 +2006,7 @@ struct TABLE_LIST This TABLE_LIST object is just placeholder for prelocking, it will be used for implicit LOCK TABLES only and won't be used in real statement. */ - bool prelocking_placeholder; + enum { USER, ROUTINE, FK } prelocking_placeholder; /** Indicates that if TABLE_LIST object corresponds to the table/view which requires special handling. From 64d4181f0c522a03fb818bb06f921e1e7d916363 Mon Sep 17 00:00:00 2001 From: Sergei Golubchik Date: Fri, 29 Jun 2018 14:46:41 +0200 Subject: [PATCH 045/148] Fix TokuDB's check for -Wno-address-of-packed-member (failed configure with old clang) --- storage/tokudb/PerconaFT/CMakeLists.txt | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/storage/tokudb/PerconaFT/CMakeLists.txt b/storage/tokudb/PerconaFT/CMakeLists.txt index 3b6b909f635..ddf5a12fbae 100644 --- a/storage/tokudb/PerconaFT/CMakeLists.txt +++ b/storage/tokudb/PerconaFT/CMakeLists.txt @@ -10,10 +10,7 @@ set(CMAKE_SHARED_LIBRARY_LINK_C_FLAGS "") set(CMAKE_SHARED_LIBRARY_LINK_CXX_FLAGS "") # See: https://jira.percona.com/browse/TDB-93 -IF(CMAKE_CXX_COMPILER_ID MATCHES "Clang") - SET(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -Wno-address-of-packed-member") - SET(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -Wno-address-of-packed-member") -ENDIF() +MY_CHECK_AND_SET_COMPILER_FLAG("-Wno-address-of-packed-member") # detect when we are being built as a subproject if (DEFINED MYSQL_PROJECT_NAME_DOCSTRING) From aec54fb9382f70c796da27be31f25ce3aa5aa176 Mon Sep 17 00:00:00 2001 From: Sergei Golubchik Date: Fri, 31 Aug 2018 00:56:10 +0200 Subject: [PATCH 046/148] MDEV-9627 clang builds fail on i386 don't use C11 atomics unless HAVE_GCC_C11_ATOMICS is defined --- include/my_atomic.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/my_atomic.h b/include/my_atomic.h index c75b65db38d..855b781dfe3 100644 --- a/include/my_atomic.h +++ b/include/my_atomic.h @@ -328,7 +328,7 @@ make_atomic_store(ptr) #define MY_ATOMIC_NOT_1CPU 1 extern int my_atomic_initialize(); -#ifdef __ATOMIC_SEQ_CST +#ifdef HAVE_GCC_C11_ATOMICS #define MY_MEMORY_ORDER_RELAXED __ATOMIC_RELAXED #define MY_MEMORY_ORDER_CONSUME __ATOMIC_CONSUME #define MY_MEMORY_ORDER_ACQUIRE __ATOMIC_ACQUIRE From 8bee7c16c879d254bf87e0439e5fce19c0680e8f Mon Sep 17 00:00:00 2001 From: Sergei Golubchik Date: Fri, 31 Aug 2018 01:22:51 +0200 Subject: [PATCH 047/148] compiler warnings (clang 4.0.1 on i386) extra/mariabackup/fil_cur.cc:361:42: warning: format specifies type 'unsigned long' but the argument has type 'ib_int64_t' (aka 'long long') [-Wformat] extra/mariabackup/fil_cur.cc:376:9: warning: format specifies type 'unsigned long' but the argument has type 'ib_int64_t' (aka 'long long') [-Wformat] sql/handler.cc:6196:45: warning: format specifies type 'unsigned long' but the argument has type 'wsrep_trx_id_t' (aka 'unsigned long long') [-Wformat] sql/log.cc:1681:16: warning: format specifies type 'unsigned long' but the argument has type 'size_t' (aka 'unsigned int') [-Wformat] sql/log.cc:1687:16: warning: format specifies type 'unsigned long' but the argument has type 'size_t' (aka 'unsigned int') [-Wformat] sql/wsrep_sst.cc:1388:86: warning: format specifies type 'long' but the argument has type 'wsrep_seqno_t' (aka 'long long') [-Wformat] sql/wsrep_sst.cc:232:86: warning: format specifies type 'long' but the argument has type 'wsrep_seqno_t' (aka 'long long') [-Wformat] storage/connect/filamdbf.cpp:450:47: warning: format specifies type 'short' but the argument has type 'int' [-Wformat] storage/connect/filamdbf.cpp:970:47: warning: format specifies type 'short' but the argument has type 'int' [-Wformat] storage/connect/inihandl.cpp:197:16: warning: address of array 'key->name' will always evaluate to 'true' [-Wpointer-bool-conversion] storage/innobase/btr/btr0scrub.cc:151:17: warning: format specifies type 'long' but the argument has type 'int' [-Wformat] storage/innobase/buf/buf0buf.cc:5085:8: warning: nonnull parameter 'bpage' will evaluate to 'true' on first encounter [-Wpointer-bool-conversion] storage/innobase/fil/fil0crypt.cc:2454:5: warning: format specifies type 'long' but the argument has type 'int' [-Wformat] storage/innobase/handler/ha_innodb.cc:18685:7: warning: format specifies type 'unsigned long' but the argument has type 'wsrep_trx_id_t' (aka 'unsigned long long') [-Wformat] storage/innobase/row/row0mysql.cc:3319:5: warning: format specifies type 'long' but the argument has type 'int' [-Wformat] storage/innobase/row/row0mysql.cc:3327:5: warning: format specifies type 'long' but the argument has type 'int' [-Wformat] storage/maria/ma_norec.c:35:10: warning: implicit conversion from 'int' to 'my_bool' (aka 'char') changes value from 131 to -125 [-Wconstant-conversion] storage/maria/ma_norec.c:42:10: warning: implicit conversion from 'int' to 'my_bool' (aka 'char') changes value from 131 to -125 [-Wconstant-conversion] storage/maria/ma_test2.c:1009:12: warning: format specifies type 'unsigned long' but the argument has type 'size_t' (aka 'unsigned int') [-Wformat] storage/maria/ma_test2.c:1010:12: warning: format specifies type 'unsigned long' but the argument has type 'size_t' (aka 'unsigned int') [-Wformat] storage/mroonga/ha_mroonga.cpp:9189:44: warning: use of logical '&&' with constant operand [-Wconstant-logical-operand] storage/mroonga/vendor/groonga/lib/expr.c:4987:22: warning: comparison of constant -1 with expression of type 'grn_operator' is always false [-Wtautological-constant-out-of-range-compare] storage/xtradb/btr/btr0scrub.cc:151:17: warning: format specifies type 'long' but the argument has type 'int' [-Wformat] storage/xtradb/buf/buf0buf.cc:5047:8: warning: nonnull parameter 'bpage' will evaluate to 'true' on first encounter [-Wpointer-bool-conversion] storage/xtradb/fil/fil0crypt.cc:2454:5: warning: format specifies type 'long' but the argument has type 'int' [-Wformat] storage/xtradb/row/row0mysql.cc:3324:5: warning: format specifies type 'long' but the argument has type 'int' [-Wformat] storage/xtradb/row/row0mysql.cc:3332:5: warning: format specifies type 'long' but the argument has type 'int' [-Wformat] unittest/sql/mf_iocache-t.cc:120:35: warning: format specifies type 'unsigned long' but the argument has type 'int' [-Wformat] unittest/sql/mf_iocache-t.cc:96:35: note: expanded from macro 'INFO_TAIL' --- config.h.cmake | 6 ------ extra/mariabackup/fil_cur.cc | 4 ++-- sql/handler.cc | 3 ++- sql/log.cc | 4 ++-- sql/wsrep_sst.cc | 5 +++-- storage/connect/filamdbf.cpp | 4 ++-- storage/connect/filamvct.cpp | 0 storage/connect/inihandl.cpp | 2 +- storage/connect/xindex.cpp | 0 storage/innobase/btr/btr0scrub.cc | 2 +- storage/innobase/buf/buf0buf.cc | 2 +- storage/innobase/fil/fil0crypt.cc | 2 +- storage/innobase/handler/ha_innodb.cc | 2 +- storage/innobase/include/univ.i | 3 ++- storage/innobase/row/row0mysql.cc | 4 ++-- storage/maria/ma_norec.c | 4 ++-- storage/maria/ma_test2.c | 4 ++-- storage/mroonga/ha_mroonga.cpp | 2 +- storage/mroonga/vendor/groonga/lib/expr.c | 2 +- storage/xtradb/btr/btr0scrub.cc | 2 +- storage/xtradb/buf/buf0buf.cc | 2 +- storage/xtradb/fil/fil0crypt.cc | 2 +- storage/xtradb/include/univ.i | 3 ++- storage/xtradb/row/row0mysql.cc | 4 ++-- unittest/sql/mf_iocache-t.cc | 4 ++-- 25 files changed, 35 insertions(+), 37 deletions(-) mode change 100755 => 100644 storage/connect/filamvct.cpp mode change 100755 => 100644 storage/connect/xindex.cpp diff --git a/config.h.cmake b/config.h.cmake index b1a9d813767..52d837fad2a 100644 --- a/config.h.cmake +++ b/config.h.cmake @@ -666,12 +666,6 @@ #cmakedefine WSREP_PROC_INFO 1 #endif -#ifdef _AIX -/* - AIX includes inttypes.h from sys/types.h - Explicitly request format macros before the first inclusion of inttypes.h -*/ #define __STDC_FORMAT_MACROS -#endif #endif diff --git a/extra/mariabackup/fil_cur.cc b/extra/mariabackup/fil_cur.cc index 54700ce6837..be4a625342b 100644 --- a/extra/mariabackup/fil_cur.cc +++ b/extra/mariabackup/fil_cur.cc @@ -357,7 +357,7 @@ read_retry: /* skip doublewrite buffer pages */ xb_a(cursor->page_size == UNIV_PAGE_SIZE); msg("[%02u] mariabackup: " - "Page %lu is a doublewrite buffer page, " + "Page " UINT64PF " is a doublewrite buffer page, " "skipping.\n", cursor->thread_n, page_no); } else { retry_count--; @@ -372,7 +372,7 @@ read_retry: } msg("[%02u] mariabackup: " "Database page corruption detected at page " - "%lu, retrying...\n", cursor->thread_n, + UINT64PF ", retrying...\n", cursor->thread_n, page_no); os_thread_sleep(100000); diff --git a/sql/handler.cc b/sql/handler.cc index 9c319b995da..dbe3c5a7a67 100644 --- a/sql/handler.cc +++ b/sql/handler.cc @@ -21,6 +21,7 @@ */ #include +#include #include "sql_priv.h" #include "unireg.h" #include "rpl_handler.h" @@ -6168,7 +6169,7 @@ void ha_fake_trx_id(THD *thd) if (thd->wsrep_ws_handle.trx_id != WSREP_UNDEFINED_TRX_ID) { - WSREP_DEBUG("fake trx id skipped: %lu", thd->wsrep_ws_handle.trx_id); + WSREP_DEBUG("fake trx id skipped: %" PRIu64, thd->wsrep_ws_handle.trx_id); DBUG_VOID_RETURN; } diff --git a/sql/log.cc b/sql/log.cc index a95fa0fec03..767070799a9 100644 --- a/sql/log.cc +++ b/sql/log.cc @@ -1677,13 +1677,13 @@ static int binlog_close_connection(handlerton *hton, THD *thd) uchar *buf; size_t len=0; wsrep_write_cache_buf(cache, &buf, &len); - WSREP_WARN("binlog trx cache not empty (%lu bytes) @ connection close %lu", + WSREP_WARN("binlog trx cache not empty (%zu bytes) @ connection close %lu", len, thd->thread_id); if (len > 0) wsrep_dump_rbr_buf(thd, buf, len); cache = cache_mngr->get_binlog_cache_log(false); wsrep_write_cache_buf(cache, &buf, &len); - WSREP_WARN("binlog stmt cache not empty (%lu bytes) @ connection close %lu", + WSREP_WARN("binlog stmt cache not empty (%zu bytes) @ connection close %lu", len, thd->thread_id); if (len > 0) wsrep_dump_rbr_buf(thd, buf, len); } diff --git a/sql/wsrep_sst.cc b/sql/wsrep_sst.cc index 0274a364bc5..2af2bfa1822 100644 --- a/sql/wsrep_sst.cc +++ b/sql/wsrep_sst.cc @@ -15,6 +15,7 @@ #include "wsrep_sst.h" +#include #include #include #include @@ -229,7 +230,7 @@ bool wsrep_sst_wait () if (!sst_complete) { total_wtime += difftime(end_time, start_time); - WSREP_DEBUG("Waiting for SST to complete. current seqno: %ld waited %f secs.", local_seqno, total_wtime); + WSREP_DEBUG("Waiting for SST to complete. current seqno: %" PRId64 " waited %f secs.", local_seqno, total_wtime); service_manager_extend_timeout(WSREP_EXTEND_TIMEOUT_INTERVAL, "WSREP state transfer ongoing, current seqno: %ld waited %f secs", local_seqno, total_wtime); } @@ -1385,7 +1386,7 @@ void wsrep_SE_init_wait() if (!SE_initialized) { total_wtime += difftime(end_time, start_time); - WSREP_DEBUG("Waiting for SST to complete. current seqno: %ld waited %f secs.", local_seqno, total_wtime); + WSREP_DEBUG("Waiting for SST to complete. current seqno: %" PRId64 " waited %f secs.", local_seqno, total_wtime); service_manager_extend_timeout(WSREP_EXTEND_TIMEOUT_INTERVAL, "WSREP state transfer ongoing, current seqno: %ld waited %f secs", local_seqno, total_wtime); } diff --git a/storage/connect/filamdbf.cpp b/storage/connect/filamdbf.cpp index 893e3da0d46..c8bab2b53a4 100644 --- a/storage/connect/filamdbf.cpp +++ b/storage/connect/filamdbf.cpp @@ -447,7 +447,7 @@ int DBFFAM::Cardinality(PGLOBAL g) if (rln && Lrecl != rln) { // This happens always on some Linux platforms - sprintf(g->Message, MSG(BAD_LRECL), Lrecl, rln); + sprintf(g->Message, MSG(BAD_LRECL), Lrecl, (ushort)rln); if (Accept) { Lrecl = rln; @@ -967,7 +967,7 @@ int DBMFAM::Cardinality(PGLOBAL g) if (rln && Lrecl != rln) { // This happens always on some Linux platforms - sprintf(g->Message, MSG(BAD_LRECL), Lrecl, rln); + sprintf(g->Message, MSG(BAD_LRECL), Lrecl, (ushort)rln); if (Accept) { Lrecl = rln; diff --git a/storage/connect/filamvct.cpp b/storage/connect/filamvct.cpp old mode 100755 new mode 100644 diff --git a/storage/connect/inihandl.cpp b/storage/connect/inihandl.cpp index c039a980bcb..8a911cb05c0 100644 --- a/storage/connect/inihandl.cpp +++ b/storage/connect/inihandl.cpp @@ -194,7 +194,7 @@ static void PROFILE_Save( FILE *file, PROFILESECTION *section ) } for (key = section->key; key; key = key->next) - if (key->name && key->name[0]) { + if (key->name[0]) { fprintf(file, "%s", SVP(key->name)); if (key->value) diff --git a/storage/connect/xindex.cpp b/storage/connect/xindex.cpp old mode 100755 new mode 100644 diff --git a/storage/innobase/btr/btr0scrub.cc b/storage/innobase/btr/btr0scrub.cc index 1b10b79838d..2e667e64d0b 100644 --- a/storage/innobase/btr/btr0scrub.cc +++ b/storage/innobase/btr/btr0scrub.cc @@ -145,7 +145,7 @@ btr_scrub_lock_dict_func(ulint space_id, bool lock_to_close_table, time_t now = time(0); if (now >= last + 30) { fprintf(stderr, - "WARNING: %s:%u waited %ld seconds for" + "WARNING: %s:%u waited " TIMETPF " seconds for" " dict_sys lock, space: %lu" " lock_to_close_table: %d\n", file, line, now - start, space_id, diff --git a/storage/innobase/buf/buf0buf.cc b/storage/innobase/buf/buf0buf.cc index c19f2389515..c628147fce5 100644 --- a/storage/innobase/buf/buf0buf.cc +++ b/storage/innobase/buf/buf0buf.cc @@ -5082,7 +5082,7 @@ database_corrupted: && fil_page_get_type(frame) == FIL_PAGE_INDEX && page_is_leaf(frame)) { - if (bpage && bpage->encrypted) { + if (bpage->encrypted) { ib_logf(IB_LOG_LEVEL_WARN, "Table in tablespace " ULINTPF " encrypted." "However key management plugin or used key_version %u is not found or" diff --git a/storage/innobase/fil/fil0crypt.cc b/storage/innobase/fil/fil0crypt.cc index 932d7b9e312..7859fe67d40 100644 --- a/storage/innobase/fil/fil0crypt.cc +++ b/storage/innobase/fil/fil0crypt.cc @@ -2449,7 +2449,7 @@ fil_space_crypt_close_tablespace( if (now >= last + 30) { ib_logf(IB_LOG_LEVEL_WARN, - "Waited %ld seconds to drop space: %s (" ULINTPF + "Waited " TIMETPF " seconds to drop space: %s (" ULINTPF ") active threads %u flushing=%d.", now - start, space->name, space->id, cnt, flushing); last = now; diff --git a/storage/innobase/handler/ha_innodb.cc b/storage/innobase/handler/ha_innodb.cc index d2701ecfc0b..58ffd15cd96 100644 --- a/storage/innobase/handler/ha_innodb.cc +++ b/storage/innobase/handler/ha_innodb.cc @@ -18648,7 +18648,7 @@ wsrep_innobase_kill_one_trx( thd_get_thread_id(thd), victim_trx->id); - WSREP_DEBUG("Aborting query: %s conf %d trx: %lu", + WSREP_DEBUG("Aborting query: %s conf %d trx: %" PRId64, (thd && wsrep_thd_query(thd)) ? wsrep_thd_query(thd) : "void", wsrep_thd_conflict_state(thd, FALSE), wsrep_thd_ws_handle(thd)->trx_id); diff --git a/storage/innobase/include/univ.i b/storage/innobase/include/univ.i index dc1dd9db5d1..e4503672375 100644 --- a/storage/innobase/include/univ.i +++ b/storage/innobase/include/univ.i @@ -128,7 +128,6 @@ Sun Studio */ #endif /* #if (defined(WIN32) || ... */ #ifndef __WIN__ -#define __STDC_FORMAT_MACROS /* Enable C99 printf format macros */ #include #endif /* !__WIN__ */ @@ -455,6 +454,7 @@ macro ULINTPF. */ # define INT64PF "%lld" # define UINT64PF "%llu" # define UINT64PFx "%016llx" +# define TIMETPF "%ld" typedef __int64 ib_int64_t; typedef unsigned __int64 ib_uint64_t; typedef unsigned __int32 ib_uint32_t; @@ -464,6 +464,7 @@ typedef unsigned __int32 ib_uint32_t; # define INT64PF "%" PRId64 # define UINT64PF "%" PRIu64 # define UINT64PFx "%016" PRIx64 +# define TIMETPF "%" PRIdFAST32 typedef int64_t ib_int64_t; typedef uint64_t ib_uint64_t; typedef uint32_t ib_uint32_t; diff --git a/storage/innobase/row/row0mysql.cc b/storage/innobase/row/row0mysql.cc index abee3386039..c439f550d3b 100644 --- a/storage/innobase/row/row0mysql.cc +++ b/storage/innobase/row/row0mysql.cc @@ -3314,7 +3314,7 @@ fil_wait_crypt_bg_threads( time_t now = time(0); if (now >= last + 30) { fprintf(stderr, - "WARNING: waited %ld seconds " + "WARNING: waited " TIMETPF " seconds " "for ref-count on table: %s space: %u\n", now - start, table->name, table->space); last = now; @@ -3322,7 +3322,7 @@ fil_wait_crypt_bg_threads( if (now >= start + 300) { fprintf(stderr, - "WARNING: after %ld seconds, gave up waiting " + "WARNING: after " TIMETPF " seconds, gave up waiting " "for ref-count on table: %s space: %u\n", now - start, table->name, table->space); break; diff --git a/storage/maria/ma_norec.c b/storage/maria/ma_norec.c index 8ed0ef68eb4..f490ab333a5 100644 --- a/storage/maria/ma_norec.c +++ b/storage/maria/ma_norec.c @@ -32,14 +32,14 @@ my_bool _ma_update_no_record(MARIA_HA *info __attribute__((unused)), const uchar *oldrec __attribute__((unused)), const uchar *record __attribute__((unused))) { - return HA_ERR_WRONG_COMMAND; + return 1; } my_bool _ma_delete_no_record(MARIA_HA *info __attribute__((unused)), const uchar *record __attribute__((unused))) { - return HA_ERR_WRONG_COMMAND; + return 1; } diff --git a/storage/maria/ma_test2.c b/storage/maria/ma_test2.c index 6dfa04a5217..24c48c67210 100644 --- a/storage/maria/ma_test2.c +++ b/storage/maria/ma_test2.c @@ -1006,8 +1006,8 @@ w_requests: %10lu\n\ writes: %10lu\n\ r_requests: %10lu\n\ reads: %10lu\n", - maria_pagecache->blocks_used, - maria_pagecache->global_blocks_changed, + (ulong) maria_pagecache->blocks_used, + (ulong) maria_pagecache->global_blocks_changed, (ulong) maria_pagecache->global_cache_w_requests, (ulong) maria_pagecache->global_cache_write, (ulong) maria_pagecache->global_cache_r_requests, diff --git a/storage/mroonga/ha_mroonga.cpp b/storage/mroonga/ha_mroonga.cpp index 96f506f9e36..cbf902b7c0e 100644 --- a/storage/mroonga/ha_mroonga.cpp +++ b/storage/mroonga/ha_mroonga.cpp @@ -9186,7 +9186,7 @@ void ha_mroonga::remove_related_files(const char *base_path) if (stat(entry->d_name, &file_status) != 0) { continue; } - if (!((file_status.st_mode & S_IFMT) && S_IFREG)) { + if (!((file_status.st_mode & S_IFMT) == S_IFREG)) { continue; } if (strncmp(entry->d_name, base_path, base_path_length) == 0) { diff --git a/storage/mroonga/vendor/groonga/lib/expr.c b/storage/mroonga/vendor/groonga/lib/expr.c index 515dbe068d7..5b1d01678b0 100644 --- a/storage/mroonga/vendor/groonga/lib/expr.c +++ b/storage/mroonga/vendor/groonga/lib/expr.c @@ -4984,7 +4984,7 @@ grn_scan_info_build_full(grn_ctx *ctx, grn_obj *expr, int *n, next_code_op = -1; for (i = 0, stat = SCAN_START, c = e->codes, ce = &e->codes[e->codes_curr]; c < ce; c++) { grn_operator code_op; - if (next_code_op == -1) { + if (next_code_op == (grn_operator)-1) { code_op = c->op; } else { code_op = next_code_op; diff --git a/storage/xtradb/btr/btr0scrub.cc b/storage/xtradb/btr/btr0scrub.cc index 1b10b79838d..2e667e64d0b 100644 --- a/storage/xtradb/btr/btr0scrub.cc +++ b/storage/xtradb/btr/btr0scrub.cc @@ -145,7 +145,7 @@ btr_scrub_lock_dict_func(ulint space_id, bool lock_to_close_table, time_t now = time(0); if (now >= last + 30) { fprintf(stderr, - "WARNING: %s:%u waited %ld seconds for" + "WARNING: %s:%u waited " TIMETPF " seconds for" " dict_sys lock, space: %lu" " lock_to_close_table: %d\n", file, line, now - start, space_id, diff --git a/storage/xtradb/buf/buf0buf.cc b/storage/xtradb/buf/buf0buf.cc index 8178692cd60..d4a6d669bf9 100644 --- a/storage/xtradb/buf/buf0buf.cc +++ b/storage/xtradb/buf/buf0buf.cc @@ -5044,7 +5044,7 @@ database_corrupted: && fil_page_get_type(frame) == FIL_PAGE_INDEX && page_is_leaf(frame)) { - if (bpage && bpage->encrypted) { + if (bpage->encrypted) { ib_logf(IB_LOG_LEVEL_WARN, "Table in tablespace " ULINTPF " encrypted." "However key management plugin or used " diff --git a/storage/xtradb/fil/fil0crypt.cc b/storage/xtradb/fil/fil0crypt.cc index 932d7b9e312..7859fe67d40 100644 --- a/storage/xtradb/fil/fil0crypt.cc +++ b/storage/xtradb/fil/fil0crypt.cc @@ -2449,7 +2449,7 @@ fil_space_crypt_close_tablespace( if (now >= last + 30) { ib_logf(IB_LOG_LEVEL_WARN, - "Waited %ld seconds to drop space: %s (" ULINTPF + "Waited " TIMETPF " seconds to drop space: %s (" ULINTPF ") active threads %u flushing=%d.", now - start, space->name, space->id, cnt, flushing); last = now; diff --git a/storage/xtradb/include/univ.i b/storage/xtradb/include/univ.i index 7e1a6b0eeac..9aafb88522f 100644 --- a/storage/xtradb/include/univ.i +++ b/storage/xtradb/include/univ.i @@ -140,7 +140,6 @@ Sun Studio */ #endif /* #if (defined(WIN32) || ... */ #ifndef __WIN__ -#define __STDC_FORMAT_MACROS /* Enable C99 printf format macros */ #include #endif /* !__WIN__ */ @@ -472,6 +471,7 @@ macro ULINTPF. */ # define INT64PF "%lld" # define UINT64PF "%llu" # define UINT64PFx "%016llx" +# define TIMETPF "%ld" typedef __int64 ib_int64_t; typedef unsigned __int64 ib_uint64_t; typedef unsigned __int32 ib_uint32_t; @@ -481,6 +481,7 @@ typedef unsigned __int32 ib_uint32_t; # define INT64PF "%" PRId64 # define UINT64PF "%" PRIu64 # define UINT64PFx "%016" PRIx64 +# define TIMETPF "%" PRIdFAST32 typedef int64_t ib_int64_t; typedef uint64_t ib_uint64_t; typedef uint32_t ib_uint32_t; diff --git a/storage/xtradb/row/row0mysql.cc b/storage/xtradb/row/row0mysql.cc index e4a6cd39699..804d55af965 100644 --- a/storage/xtradb/row/row0mysql.cc +++ b/storage/xtradb/row/row0mysql.cc @@ -3319,7 +3319,7 @@ fil_wait_crypt_bg_threads( time_t now = time(0); if (now >= last + 30) { fprintf(stderr, - "WARNING: waited %ld seconds " + "WARNING: waited " TIMETPF " seconds " "for ref-count on table: %s space: %u\n", now - start, table->name, table->space); last = now; @@ -3327,7 +3327,7 @@ fil_wait_crypt_bg_threads( if (now >= start + 300) { fprintf(stderr, - "WARNING: after %ld seconds, gave up waiting " + "WARNING: after " TIMETPF " seconds, gave up waiting " "for ref-count on table: %s space: %u\n", now - start, table->name, table->space); break; diff --git a/unittest/sql/mf_iocache-t.cc b/unittest/sql/mf_iocache-t.cc index 2cd5b678700..8f97745f0fc 100644 --- a/unittest/sql/mf_iocache-t.cc +++ b/unittest/sql/mf_iocache-t.cc @@ -92,8 +92,8 @@ void sql_print_error(const char *format, ...) IO_CACHE info; #define CACHE_SIZE 16384 -#define INFO_TAIL ", pos_in_file = %llu, pos_in_mem = %lu", \ - info.pos_in_file, (*info.current_pos - info.request_pos) +#define INFO_TAIL ", pos_in_file = %llu, pos_in_mem = %td", \ + info.pos_in_file, *info.current_pos - info.request_pos #define FILL 0x5A From 82bb01588d8cb3145c3f45c15c156b2c890d2c3f Mon Sep 17 00:00:00 2001 From: Sergei Golubchik Date: Fri, 31 Aug 2018 15:01:53 +0200 Subject: [PATCH 048/148] run binlog.binlog_stm_binlog test in non-debug builds --- mysql-test/extra/binlog_tests/binlog.test | 1 - 1 file changed, 1 deletion(-) diff --git a/mysql-test/extra/binlog_tests/binlog.test b/mysql-test/extra/binlog_tests/binlog.test index 831c6c886d5..369ce20d496 100644 --- a/mysql-test/extra/binlog_tests/binlog.test +++ b/mysql-test/extra/binlog_tests/binlog.test @@ -5,7 +5,6 @@ -- source include/have_log_bin.inc -- source include/not_embedded.inc -- source include/have_innodb.inc --- source include/have_debug.inc --disable_warnings drop table if exists t1, t2; From 1d98255f613af130bae428e80b95712a2048acc1 Mon Sep 17 00:00:00 2001 From: Vasil Dimov Date: Mon, 19 Mar 2018 08:41:33 +0100 Subject: [PATCH 049/148] MDEV-15792 Fix mtr to be able to wait for >1 exited mysqld If a mtr test case has started two mysqld processes (replication tests), then kills the first one and kills the second one before starting the first (so at some point there are two mysqlds down), then the ./mtr waiting process bricks and forgets to monitor the "expect" file of the first mysqld, so it never gets started again, even when its contents is changed to "restart". A victim of this deficiency is at least galera.galera_gcache_recover. The fix is to keep a list of all mysqlds we should wait to start, not just one (the last one killed). --- mysql-test/mysql-test-run.pl | 199 ++++++++++++++++++----------------- 1 file changed, 103 insertions(+), 96 deletions(-) diff --git a/mysql-test/mysql-test-run.pl b/mysql-test/mysql-test-run.pl index 9df96f636d3..4801cb77a4c 100755 --- a/mysql-test/mysql-test-run.pl +++ b/mysql-test/mysql-test-run.pl @@ -3980,14 +3980,14 @@ sub run_testcase ($$) { } my $test= $tinfo->{suite}->start_test($tinfo); - # Set only when we have to keep waiting after expectedly died server - my $keep_waiting_proc = 0; + # Set to a list of processes we have to keep waiting (expectedly died servers) + my %keep_waiting_proc = (); my $print_timeout= start_timer($print_freq * 60); while (1) { - my $proc; - if ($keep_waiting_proc) + my $proc = 0; + if (scalar(keys(%keep_waiting_proc)) > 0) { # Any other process exited? $proc = My::SafeProcess->check_any(); @@ -3997,48 +3997,34 @@ sub run_testcase ($$) { } else { - $proc = $keep_waiting_proc; # Also check if timer has expired, if so cancel waiting if ( has_expired($test_timeout) ) { - $keep_waiting_proc = 0; + %keep_waiting_proc = (); } } } - if (! $keep_waiting_proc) + if (scalar(keys(%keep_waiting_proc)) == 0 && !$proc) { - if($test_timeout > $print_timeout) + if ($test_timeout > $print_timeout) { - $proc= My::SafeProcess->wait_any_timeout($print_timeout); - if ( $proc->{timeout} ) - { - #print out that the test is still on - mtr_print("Test still running: $tinfo->{name}"); - #reset the timer - $print_timeout= start_timer($print_freq * 60); - next; - } + $proc= My::SafeProcess->wait_any_timeout($print_timeout); + if ($proc->{timeout}) + { + #print out that the test is still on + mtr_print("Test still running: $tinfo->{name}"); + #reset the timer + $print_timeout= start_timer($print_freq * 60); + next; + } } else { - $proc= My::SafeProcess->wait_any_timeout($test_timeout); + $proc= My::SafeProcess->wait_any_timeout($test_timeout); } } - # Will be restored if we need to keep waiting - $keep_waiting_proc = 0; - - unless ( defined $proc ) - { - mtr_error("wait_any failed"); - } - mtr_verbose("Got $proc"); - - mark_time_used('test'); - # ---------------------------------------------------- - # Was it the test program that exited - # ---------------------------------------------------- - if ($proc eq $test) + if ($proc eq $test) # mysqltest itself exited { my $res= $test->exit_status(); @@ -4053,12 +4039,12 @@ sub run_testcase ($$) { if ( $res == 0 ) { - my $check_res; - if ( $opt_check_testcases and - $check_res= check_testcase($tinfo, "after")) - { - if ($check_res == 1) { - # Test case had sideeffects, not fatal error, just continue + my $check_res; + if ( $opt_check_testcases and + $check_res= check_testcase($tinfo, "after")) + { + if ($check_res == 1) { + # Test case had sideeffects, not fatal error, just continue if ($opt_warnings) { # Checking error logs for warnings, so need to stop server # gracefully so that memory leaks etc. can be properly detected. @@ -4069,90 +4055,111 @@ sub run_testcase ($$) { # test. } else { # Not checking warnings, so can do a hard shutdown. - stop_all_servers($opt_shutdown_timeout); + stop_all_servers($opt_shutdown_timeout); } - mtr_report("Resuming tests...\n"); - resfile_output($tinfo->{'check'}) if $opt_resfile; - } - else { - # Test case check failed fatally, probably a server crashed - report_failure_and_restart($tinfo); - return 1; - } - } - mtr_report_test_passed($tinfo); + mtr_report("Resuming tests...\n"); + resfile_output($tinfo->{'check'}) if $opt_resfile; + } + else { + # Test case check failed fatally, probably a server crashed + report_failure_and_restart($tinfo); + return 1; + } + } + mtr_report_test_passed($tinfo); } elsif ( $res == 62 ) { - # Testcase itself tell us to skip this one - $tinfo->{skip_detected_by_test}= 1; - # Try to get reason from test log file - find_testcase_skipped_reason($tinfo); - mtr_report_test_skipped($tinfo); - # Restart if skipped due to missing perl, it may have had side effects - if ( $tinfo->{'comment'} =~ /^perl not found/ ) - { - stop_all_servers($opt_shutdown_timeout); - } + # Testcase itself tell us to skip this one + $tinfo->{skip_detected_by_test}= 1; + # Try to get reason from test log file + find_testcase_skipped_reason($tinfo); + mtr_report_test_skipped($tinfo); + # Restart if skipped due to missing perl, it may have had side effects + if ( $tinfo->{'comment'} =~ /^perl not found/ ) + { + stop_all_servers($opt_shutdown_timeout); + } } elsif ( $res == 65 ) { - # Testprogram killed by signal - $tinfo->{comment}= - "testprogram crashed(returned code $res)"; - report_failure_and_restart($tinfo); + # Testprogram killed by signal + $tinfo->{comment}= + "testprogram crashed(returned code $res)"; + report_failure_and_restart($tinfo); } elsif ( $res == 1 ) { - # Check if the test tool requests that - # an analyze script should be run - my $analyze= find_analyze_request(); - if ($analyze){ - run_on_all($tinfo, "analyze-$analyze"); - } + # Check if the test tool requests that + # an analyze script should be run + my $analyze= find_analyze_request(); + if ($analyze){ + run_on_all($tinfo, "analyze-$analyze"); + } - # Wait a bit and see if a server died, if so report that instead - mtr_milli_sleep(100); - my $srvproc= My::SafeProcess::check_any(); - if ($srvproc && grep($srvproc eq $_, started(all_servers()))) { - $proc= $srvproc; - goto SRVDIED; - } + # Wait a bit and see if a server died, if so report that instead + mtr_milli_sleep(100); + my $srvproc= My::SafeProcess::check_any(); + if ($srvproc && grep($srvproc eq $_, started(all_servers()))) { + $proc= $srvproc; + goto SRVDIED; + } - # Test case failure reported by mysqltest - report_failure_and_restart($tinfo); + # Test case failure reported by mysqltest + report_failure_and_restart($tinfo); } else { - # mysqltest failed, probably crashed - $tinfo->{comment}= - "mysqltest failed with unexpected return code $res\n"; - report_failure_and_restart($tinfo); + # mysqltest failed, probably crashed + $tinfo->{comment}= + "mysqltest failed with unexpected return code $res\n"; + report_failure_and_restart($tinfo); } # Save info from this testcase run to mysqltest.log if( -f $path_current_testlog) { - if ($opt_resfile && $res && $res != 62) { - resfile_output_file($path_current_testlog); - } - mtr_appendfile_to_file($path_current_testlog, $path_testlog); - unlink($path_current_testlog); + if ($opt_resfile && $res && $res != 62) { + resfile_output_file($path_current_testlog); + } + mtr_appendfile_to_file($path_current_testlog, $path_testlog); + unlink($path_current_testlog); } return ($res == 62) ? 0 : $res; - } - # ---------------------------------------------------- - # Check if it was an expected crash - # ---------------------------------------------------- - my $check_crash = check_expected_crash_and_restart($proc); - if ($check_crash) + if ($proc) { - # Keep waiting if it returned 2, if 1 don't wait or stop waiting. - $keep_waiting_proc = 0 if $check_crash == 1; - $keep_waiting_proc = $proc if $check_crash == 2; + # It was not mysqltest that exited, add to a wait-to-be-started-again list. + $keep_waiting_proc{$proc} = 1; + } + + mtr_verbose("Got " . join(",", keys(%keep_waiting_proc))); + + mark_time_used('test'); + my $expected_exit = 1; + foreach my $wait_for_proc (keys(%keep_waiting_proc)) { + # ---------------------------------------------------- + # Check if it was an expected crash + # ---------------------------------------------------- + my $check_crash = check_expected_crash_and_restart($wait_for_proc); + if ($check_crash == 0) # unexpected exit/crash of $wait_for_proc + { + $expected_exit = 0; + last; + } + elsif ($check_crash == 1) # $wait_for_proc was started again by check_expected_crash_and_restart() + { + delete $keep_waiting_proc{$wait_for_proc}; + } + elsif ($check_crash == 2) # we must keep waiting + { + # do nothing + } + } + + if ($expected_exit) { next; } From c27275474040ba7f91868dcb1ab79306418268d2 Mon Sep 17 00:00:00 2001 From: Sergei Golubchik Date: Fri, 31 Aug 2018 13:45:49 +0200 Subject: [PATCH 050/148] MDEV-15792 Fix mtr to be able to wait for >1 exited mysqld Post-merge fixes: minor perlification and get rid of an annoying run-time warning (undef value in string comparison) Closes #709 --- mysql-test/mysql-test-run.pl | 16 ++++++---------- 1 file changed, 6 insertions(+), 10 deletions(-) diff --git a/mysql-test/mysql-test-run.pl b/mysql-test/mysql-test-run.pl index 4801cb77a4c..0d84e5dbbbc 100755 --- a/mysql-test/mysql-test-run.pl +++ b/mysql-test/mysql-test-run.pl @@ -3986,8 +3986,8 @@ sub run_testcase ($$) { while (1) { - my $proc = 0; - if (scalar(keys(%keep_waiting_proc)) > 0) + my $proc; + if (%keep_waiting_proc) { # Any other process exited? $proc = My::SafeProcess->check_any(); @@ -4004,7 +4004,7 @@ sub run_testcase ($$) { } } } - if (scalar(keys(%keep_waiting_proc)) == 0 && !$proc) + if (!%keep_waiting_proc && !$proc) { if ($test_timeout > $print_timeout) { @@ -4024,7 +4024,7 @@ sub run_testcase ($$) { } } - if ($proc eq $test) # mysqltest itself exited + if ($proc and $proc eq $test) # mysqltest itself exited { my $res= $test->exit_status(); @@ -4138,7 +4138,6 @@ sub run_testcase ($$) { mtr_verbose("Got " . join(",", keys(%keep_waiting_proc))); mark_time_used('test'); - my $expected_exit = 1; foreach my $wait_for_proc (keys(%keep_waiting_proc)) { # ---------------------------------------------------- # Check if it was an expected crash @@ -4146,8 +4145,7 @@ sub run_testcase ($$) { my $check_crash = check_expected_crash_and_restart($wait_for_proc); if ($check_crash == 0) # unexpected exit/crash of $wait_for_proc { - $expected_exit = 0; - last; + goto SRVDIED; } elsif ($check_crash == 1) # $wait_for_proc was started again by check_expected_crash_and_restart() { @@ -4159,9 +4157,7 @@ sub run_testcase ($$) { } } - if ($expected_exit) { - next; - } + next; SRVDIED: # ---------------------------------------------------- From a6246cab1693b91a04bdb2ff66710fc62ab1b6e7 Mon Sep 17 00:00:00 2001 From: Sergei Golubchik Date: Mon, 3 Sep 2018 10:27:36 +0200 Subject: [PATCH 051/148] fix failures of innodb_plugin tests in --embedded Post-fix for 7e8ed15b95b Also, apply the same innodb fix to xtradb. --- include/mysql/service_wsrep.h | 3 +++ include/service_versions.h | 2 +- sql/sql_plugin_services.ic | 3 ++- sql/wsrep_dummy.cc | 3 +++ sql/wsrep_mysqld.h | 1 - sql/wsrep_sst.cc | 1 - storage/xtradb/handler/ha_innodb.cc | 5 +++++ 7 files changed, 14 insertions(+), 4 deletions(-) diff --git a/include/mysql/service_wsrep.h b/include/mysql/service_wsrep.h index bc5b2c67cdc..b51f154422f 100644 --- a/include/mysql/service_wsrep.h +++ b/include/mysql/service_wsrep.h @@ -110,6 +110,7 @@ extern struct wsrep_service_st { int (*wsrep_trx_is_aborting_func)(MYSQL_THD thd); int (*wsrep_trx_order_before_func)(MYSQL_THD, MYSQL_THD); void (*wsrep_unlock_rollback_func)(); + void (*wsrep_set_data_home_dir_func)(const char *data_dir); } *wsrep_service; #ifdef MYSQL_DYNAMIC_PLUGIN @@ -151,6 +152,7 @@ extern struct wsrep_service_st { #define wsrep_trx_is_aborting(T) wsrep_service->wsrep_trx_is_aborting_func(T) #define wsrep_trx_order_before(T1,T2) wsrep_service->wsrep_trx_order_before_func(T1,T2) #define wsrep_unlock_rollback() wsrep_service->wsrep_unlock_rollback_func() +#define wsrep_set_data_home_dir(A) wsrep_service->wsrep_set_data_home_dir_func(A) #define wsrep_debug get_wsrep_debug() #define wsrep_log_conflicts get_wsrep_log_conflicts() @@ -208,6 +210,7 @@ void wsrep_thd_awake(THD *thd, my_bool signal); void wsrep_thd_set_conflict_state(THD *thd, enum wsrep_conflict_state state); bool wsrep_thd_ignore_table(THD *thd); void wsrep_unlock_rollback(); +void wsrep_set_data_home_dir(const char *data_dir); #endif diff --git a/include/service_versions.h b/include/service_versions.h index da7a2101f76..3bbf2a9a625 100644 --- a/include/service_versions.h +++ b/include/service_versions.h @@ -41,4 +41,4 @@ #define VERSION_thd_specifics 0x0100 #define VERSION_thd_timezone 0x0100 #define VERSION_thd_wait 0x0100 -#define VERSION_wsrep 0x0201 +#define VERSION_wsrep 0x0202 diff --git a/sql/sql_plugin_services.ic b/sql/sql_plugin_services.ic index 572ceacbd7e..95301a5fbe8 100644 --- a/sql/sql_plugin_services.ic +++ b/sql/sql_plugin_services.ic @@ -179,7 +179,8 @@ static struct wsrep_service_st wsrep_handler = { wsrep_thd_ws_handle, wsrep_trx_is_aborting, wsrep_trx_order_before, - wsrep_unlock_rollback + wsrep_unlock_rollback, + wsrep_set_data_home_dir }; static struct thd_specifics_service_st thd_specifics_handler= diff --git a/sql/wsrep_dummy.cc b/sql/wsrep_dummy.cc index 0aa7f9b0aad..5837ab4bed5 100644 --- a/sql/wsrep_dummy.cc +++ b/sql/wsrep_dummy.cc @@ -130,3 +130,6 @@ int wsrep_trx_is_aborting(THD *) void wsrep_unlock_rollback() { } + +void wsrep_set_data_home_dir(const char *) +{ } diff --git a/sql/wsrep_mysqld.h b/sql/wsrep_mysqld.h index 9fc8aa02df4..272e4ac4984 100644 --- a/sql/wsrep_mysqld.h +++ b/sql/wsrep_mysqld.h @@ -160,7 +160,6 @@ extern "C" time_t wsrep_thd_query_start(THD *thd); extern "C" query_id_t wsrep_thd_query_id(THD *thd); extern "C" query_id_t wsrep_thd_wsrep_last_query_id(THD *thd); extern "C" void wsrep_thd_set_wsrep_last_query_id(THD *thd, query_id_t id); -extern "C" void wsrep_set_data_home_dir(const char *data_dir); extern void wsrep_close_client_connections(my_bool wait_to_end); extern int wsrep_wait_committing_connections_close(int wait_time); diff --git a/sql/wsrep_sst.cc b/sql/wsrep_sst.cc index 2af2bfa1822..281eac1ce0e 100644 --- a/sql/wsrep_sst.cc +++ b/sql/wsrep_sst.cc @@ -70,7 +70,6 @@ bool wsrep_sst_method_update (sys_var *self, THD* thd, enum_var_type type) static const char* data_home_dir = NULL; -extern "C" void wsrep_set_data_home_dir(const char *data_dir) { data_home_dir= (data_dir && *data_dir) ? data_dir : NULL; diff --git a/storage/xtradb/handler/ha_innodb.cc b/storage/xtradb/handler/ha_innodb.cc index 3cd7cb6977b..60545b3b1e4 100644 --- a/storage/xtradb/handler/ha_innodb.cc +++ b/storage/xtradb/handler/ha_innodb.cc @@ -4072,6 +4072,11 @@ innobase_init( srv_data_home = (innobase_data_home_dir ? innobase_data_home_dir : default_path); +#ifdef WITH_WSREP + /* If we use the wsrep API, then we need to tell the server + the path to the data files (for passing it to the SST scripts): */ + wsrep_set_data_home_dir(innobase_data_home_dir); +#endif /* WITH_WSREP */ /* Set default InnoDB data file size to 12 MB and let it be auto-extending. Thus users can use InnoDB in >= 4.0 without having From 710093ccb032fa9247e87e6174c91abc40bc567f Mon Sep 17 00:00:00 2001 From: Sergei Golubchik Date: Tue, 4 Sep 2018 09:49:00 +0200 Subject: [PATCH 052/148] compilation failure --- sql/lex.h | 6 +++--- sql/sql_yacc.yy | 18 +++++++++--------- 2 files changed, 12 insertions(+), 12 deletions(-) diff --git a/sql/lex.h b/sql/lex.h index 591f0def43e..868f19ed9c4 100644 --- a/sql/lex.h +++ b/sql/lex.h @@ -630,7 +630,7 @@ static SYMBOL symbols[] = { { "UPGRADE", SYM(UPGRADE_SYM)}, { "USAGE", SYM(USAGE)}, { "USE", SYM(USE_SYM)}, - { "USER", SYM(USER)}, + { "USER", SYM(USER_SYM)}, { "USER_RESOURCES", SYM(RESOURCES)}, { "USER_STATISTICS", SYM(USER_STATS_SYM)}, { "USE_FRM", SYM(USE_FRM)}, @@ -688,7 +688,7 @@ static SYMBOL sql_functions[] = { { "MIN", SYM(MIN_SYM)}, { "NOW", SYM(NOW_SYM)}, { "POSITION", SYM(POSITION_SYM)}, - { "SESSION_USER", SYM(USER)}, + { "SESSION_USER", SYM(USER_SYM)}, { "STD", SYM(STD_SYM)}, { "STDDEV", SYM(STD_SYM)}, { "STDDEV_POP", SYM(STD_SYM)}, @@ -698,7 +698,7 @@ static SYMBOL sql_functions[] = { { "SUBSTRING", SYM(SUBSTRING)}, { "SUM", SYM(SUM_SYM)}, { "SYSDATE", SYM(SYSDATE)}, - { "SYSTEM_USER", SYM(USER)}, + { "SYSTEM_USER", SYM(USER_SYM)}, { "TRIM", SYM(TRIM)}, { "VARIANCE", SYM(VARIANCE_SYM)}, { "VAR_POP", SYM(VARIANCE_SYM)}, diff --git a/sql/sql_yacc.yy b/sql/sql_yacc.yy index 8d0a4506a0b..1ae964ac7f8 100644 --- a/sql/sql_yacc.yy +++ b/sql/sql_yacc.yy @@ -1584,7 +1584,7 @@ bool my_yyoverflow(short **a, YYSTYPE **b, ulong *yystacksize); %token UPDATE_SYM /* SQL-2003-R */ %token UPGRADE_SYM %token USAGE /* SQL-2003-N */ -%token USER /* SQL-2003-R */ +%token USER_SYM /* SQL-2003-R */ %token USER_STATS_SYM %token USE_FRM %token USE_SYM @@ -2455,7 +2455,7 @@ create: MYSQL_YYABORT; } } - | CREATE USER clear_privileges grant_list + | CREATE USER_SYM clear_privileges grant_list { Lex->sql_command = SQLCOM_CREATE_USER; } @@ -2496,7 +2496,7 @@ server_options_list: ; server_option: - USER TEXT_STRING_sys + USER_SYM TEXT_STRING_sys { Lex->server_options.username= $2.str; } @@ -8151,7 +8151,7 @@ rename: } table_to_table_list {} - | RENAME USER clear_privileges rename_list + | RENAME USER_SYM clear_privileges rename_list { Lex->sql_command = SQLCOM_RENAME_USER; } @@ -9470,7 +9470,7 @@ function_call_keyword: if ($$ == NULL) MYSQL_YYABORT; } - | USER '(' ')' + | USER_SYM '(' ')' { $$= new (thd->mem_root) Item_func_user(); if ($$ == NULL) @@ -11760,7 +11760,7 @@ drop: lex->check_exists= $3; lex->spname= $4; } - | DROP USER clear_privileges user_list + | DROP USER_SYM clear_privileges user_list { Lex->sql_command = SQLCOM_DROP_USER; } @@ -13018,7 +13018,7 @@ kill_expr: { Lex->value_list.push_front($$); } - | USER user + | USER_SYM user { Lex->users_list.push_back($2); Lex->kill_type= KILL_TYPE_USER; @@ -14366,7 +14366,7 @@ keyword_sp: | UNDOFILE_SYM {} | UNKNOWN_SYM {} | UNTIL_SYM {} - | USER {} + | USER_SYM {} | USER_STATS_SYM {} | USE_FRM {} | VARIABLES {} @@ -15257,7 +15257,7 @@ object_privilege: | SHOW VIEW_SYM { Lex->grant |= SHOW_VIEW_ACL; } | CREATE ROUTINE_SYM { Lex->grant |= CREATE_PROC_ACL; } | ALTER ROUTINE_SYM { Lex->grant |= ALTER_PROC_ACL; } - | CREATE USER { Lex->grant |= CREATE_USER_ACL; } + | CREATE USER_SYM { Lex->grant |= CREATE_USER_ACL; } | EVENT_SYM { Lex->grant |= EVENT_ACL;} | TRIGGER_SYM { Lex->grant |= TRIGGER_ACL; } | CREATE TABLESPACE { Lex->grant |= CREATE_TABLESPACE_ACL; } From dd74332d2c5953e861780c1d0de61673406c9653 Mon Sep 17 00:00:00 2001 From: Sergei Golubchik Date: Wed, 18 Jul 2018 19:04:51 +0200 Subject: [PATCH 053/148] MDEV-12669 Circular foreign keys cause a loop and OOM upon LOCK TABLE table_already_fk_prelocked() was looking for a table in the wrong list (not the complete list of prelocked tables, but only in its tail, starting from the current table - which is always empty for the last added table), so for circular FKs it kept adding same tables to the list indefinitely. Backport of d6d7e169fbf --- mysql-test/suite/innodb/r/foreign_key.result | 19 +++++++++++++++ mysql-test/suite/innodb/t/foreign_key.test | 25 ++++++++++++++++++++ sql/sql_base.cc | 5 ++-- 3 files changed, 47 insertions(+), 2 deletions(-) create mode 100644 mysql-test/suite/innodb/r/foreign_key.result create mode 100644 mysql-test/suite/innodb/t/foreign_key.test diff --git a/mysql-test/suite/innodb/r/foreign_key.result b/mysql-test/suite/innodb/r/foreign_key.result new file mode 100644 index 00000000000..0d04f27f51f --- /dev/null +++ b/mysql-test/suite/innodb/r/foreign_key.result @@ -0,0 +1,19 @@ +SET FOREIGN_KEY_CHECKS=0; +CREATE TABLE staff ( +staff_id TINYINT UNSIGNED NOT NULL AUTO_INCREMENT, +store_id TINYINT UNSIGNED NOT NULL, +PRIMARY KEY (staff_id), +KEY idx_fk_store_id (store_id), +CONSTRAINT fk_staff_store FOREIGN KEY (store_id) REFERENCES store (store_id) ON DELETE RESTRICT ON UPDATE CASCADE +) ENGINE=InnoDB; +CREATE TABLE store ( +store_id TINYINT UNSIGNED NOT NULL AUTO_INCREMENT, +manager_staff_id TINYINT UNSIGNED NOT NULL, +PRIMARY KEY (store_id), +UNIQUE KEY idx_unique_manager (manager_staff_id), +CONSTRAINT fk_store_staff FOREIGN KEY (manager_staff_id) REFERENCES staff (staff_id) ON DELETE RESTRICT ON UPDATE CASCADE +) ENGINE=InnoDB; +SET FOREIGN_KEY_CHECKS=DEFAULT; +LOCK TABLE staff WRITE; +UNLOCK TABLES; +DROP TABLES staff, store; diff --git a/mysql-test/suite/innodb/t/foreign_key.test b/mysql-test/suite/innodb/t/foreign_key.test new file mode 100644 index 00000000000..223a1596883 --- /dev/null +++ b/mysql-test/suite/innodb/t/foreign_key.test @@ -0,0 +1,25 @@ +--source include/have_innodb.inc + +# +# MDEV-12669 Circular foreign keys cause a loop and OOM upon LOCK TABLE +# +SET FOREIGN_KEY_CHECKS=0; +CREATE TABLE staff ( + staff_id TINYINT UNSIGNED NOT NULL AUTO_INCREMENT, + store_id TINYINT UNSIGNED NOT NULL, + PRIMARY KEY (staff_id), + KEY idx_fk_store_id (store_id), + CONSTRAINT fk_staff_store FOREIGN KEY (store_id) REFERENCES store (store_id) ON DELETE RESTRICT ON UPDATE CASCADE +) ENGINE=InnoDB; +CREATE TABLE store ( + store_id TINYINT UNSIGNED NOT NULL AUTO_INCREMENT, + manager_staff_id TINYINT UNSIGNED NOT NULL, + PRIMARY KEY (store_id), + UNIQUE KEY idx_unique_manager (manager_staff_id), + CONSTRAINT fk_store_staff FOREIGN KEY (manager_staff_id) REFERENCES staff (staff_id) ON DELETE RESTRICT ON UPDATE CASCADE +) ENGINE=InnoDB; +SET FOREIGN_KEY_CHECKS=DEFAULT; + +LOCK TABLE staff WRITE; +UNLOCK TABLES; +DROP TABLES staff, store; diff --git a/sql/sql_base.cc b/sql/sql_base.cc index a1ffa239ef4..be87ad27d6b 100644 --- a/sql/sql_base.cc +++ b/sql/sql_base.cc @@ -4893,8 +4893,9 @@ handle_table(THD *thd, Query_tables_list *prelocking_ctx, else lock_type= TL_READ; - if (table_already_fk_prelocked(table_list, fk->foreign_db, - fk->foreign_table, lock_type)) + if (table_already_fk_prelocked(prelocking_ctx->query_tables, + fk->foreign_db, fk->foreign_table, + lock_type)) continue; TABLE_LIST *tl= (TABLE_LIST *) thd->alloc(sizeof(TABLE_LIST)); From e81f101dac5c8514c362732a3b9dbc2f896390a6 Mon Sep 17 00:00:00 2001 From: Sergei Golubchik Date: Tue, 17 Jul 2018 17:12:05 +0200 Subject: [PATCH 054/148] create a reusable function that tells what FK actions can write Backport of 794f71cbc41 --- sql/sql_base.cc | 5 ++--- sql/table.cc | 6 ++++++ sql/table.h | 1 + 3 files changed, 9 insertions(+), 3 deletions(-) diff --git a/sql/sql_base.cc b/sql/sql_base.cc index be87ad27d6b..be7d9008aa4 100644 --- a/sql/sql_base.cc +++ b/sql/sql_base.cc @@ -4883,12 +4883,11 @@ handle_table(THD *thd, Query_tables_list *prelocking_ctx, while ((fk= fk_list_it++)) { // FK_OPTION_RESTRICT and FK_OPTION_NO_ACTION only need read access - static bool can_write[]= { true, false, true, true, false, true }; uint8 op= table_list->trg_event_map; thr_lock_type lock_type; - if ((op & (1 << TRG_EVENT_DELETE) && can_write[fk->delete_method]) - || (op & (1 << TRG_EVENT_UPDATE) && can_write[fk->update_method])) + if ((op & (1 << TRG_EVENT_DELETE) && fk_modifies_child(fk->delete_method)) + || (op & (1 << TRG_EVENT_UPDATE) && fk_modifies_child(fk->update_method))) lock_type= TL_WRITE_ALLOW_WRITE; else lock_type= TL_READ; diff --git a/sql/table.cc b/sql/table.cc index 144720986f2..86eac73a416 100644 --- a/sql/table.cc +++ b/sql/table.cc @@ -7264,3 +7264,9 @@ LEX_CSTRING *fk_option_name(enum_fk_option opt) }; return names + opt; } + +bool fk_modifies_child(enum_fk_option opt) +{ + static bool can_write[]= { false, false, true, true, false, true }; + return can_write[opt]; +} diff --git a/sql/table.h b/sql/table.h index 9ba282b8c49..23f97ed18d0 100644 --- a/sql/table.h +++ b/sql/table.h @@ -1447,6 +1447,7 @@ typedef struct st_foreign_key_info } FOREIGN_KEY_INFO; LEX_CSTRING *fk_option_name(enum_fk_option opt); +bool fk_modifies_child(enum_fk_option opt); #define MY_I_S_MAYBE_NULL 1 #define MY_I_S_UNSIGNED 2 From 9180e8666b8e31239d2e2075b703fb8bc8effc13 Mon Sep 17 00:00:00 2001 From: Sergei Golubchik Date: Thu, 19 Jul 2018 01:03:14 +0200 Subject: [PATCH 055/148] MDEV-16465 Invalid (old?) table or database name or hang in ha_innobase::delete_table and log semaphore wait upon concurrent DDL with foreign keys ALTER TABLE locks the table with TL_READ_NO_INSERT, to prevent the source table modifications while it's being copied. But there's an indirect way of modifying a table, via cascade FK actions. After previous commits, an attempt to modify an FK parent table will cause FK children to be prelocked, so the table-being-altered cannot be modified by a cascade FK action, because ALTER holds a lock and prelocking will wait. But if a new FK is being added by this very ALTER, then the target table is not locked yet (it's a temporary table). So, we have to lock FK parents explicitly. --- mysql-test/suite/innodb/r/foreign-keys.result | 36 ++++++++++++++ mysql-test/suite/innodb/t/foreign-keys.test | 39 +++++++++++++++ sql/sql_base.cc | 4 +- sql/sql_base.h | 2 + sql/sql_table.cc | 47 +++++++++++++++++-- sql/table.h | 13 +++-- 6 files changed, 132 insertions(+), 9 deletions(-) diff --git a/mysql-test/suite/innodb/r/foreign-keys.result b/mysql-test/suite/innodb/r/foreign-keys.result index 0cb53f52a6c..66fc00e34d0 100644 --- a/mysql-test/suite/innodb/r/foreign-keys.result +++ b/mysql-test/suite/innodb/r/foreign-keys.result @@ -51,3 +51,39 @@ c d 6 30 drop table t2, t1; drop user foo; +create table t1 (f1 int primary key) engine=innodb; +create table t2 (f2 int primary key) engine=innodb; +create table t3 (f3 int primary key, foreign key (f3) references t2(f2)) engine=innodb; +insert into t1 values (1),(2),(3),(4),(5); +insert into t2 values (1),(2),(3),(4),(5); +insert into t3 values (1),(2),(3),(4),(5); +connect con1,localhost,root; +set debug_sync='alter_table_before_rename_result_table signal g1 wait_for g2'; +alter table t2 add constraint foreign key (f2) references t1(f1) on delete cascade on update cascade; +connection default; +set debug_sync='before_execute_sql_command wait_for g1'; +update t1 set f1 = f1 + 100000 limit 2; +connect con2,localhost,root; +kill query UPDATE; +disconnect con2; +connection default; +ERROR 70100: Query execution was interrupted +set debug_sync='now signal g2'; +connection con1; +show create table t2; +Table Create Table +t2 CREATE TABLE `t2` ( + `f2` int(11) NOT NULL, + PRIMARY KEY (`f2`), + CONSTRAINT `t2_ibfk_1` FOREIGN KEY (`f2`) REFERENCES `t1` (`f1`) ON DELETE CASCADE ON UPDATE CASCADE +) ENGINE=InnoDB DEFAULT CHARSET=latin1 +disconnect con1; +connection default; +select * from t2 where f2 not in (select f1 from t1); +f2 +select * from t3 where f3 not in (select f2 from t2); +f3 +drop table t3; +drop table t2; +drop table t1; +set debug_sync='reset'; diff --git a/mysql-test/suite/innodb/t/foreign-keys.test b/mysql-test/suite/innodb/t/foreign-keys.test index 44cfbc8b2ca..7ef440b260b 100644 --- a/mysql-test/suite/innodb/t/foreign-keys.test +++ b/mysql-test/suite/innodb/t/foreign-keys.test @@ -1,5 +1,6 @@ --source include/have_innodb.inc --source include/have_debug.inc +--source include/have_debug_sync.inc --enable_connect_log @@ -72,3 +73,41 @@ connection default; select * from t2; drop table t2, t1; drop user foo; + +# +# MDEV-16465 Invalid (old?) table or database name or hang in ha_innobase::delete_table and log semaphore wait upon concurrent DDL with foreign keys +# +create table t1 (f1 int primary key) engine=innodb; +create table t2 (f2 int primary key) engine=innodb; +create table t3 (f3 int primary key, foreign key (f3) references t2(f2)) engine=innodb; +insert into t1 values (1),(2),(3),(4),(5); +insert into t2 values (1),(2),(3),(4),(5); +insert into t3 values (1),(2),(3),(4),(5); +connect con1,localhost,root; +set debug_sync='alter_table_before_rename_result_table signal g1 wait_for g2'; +send alter table t2 add constraint foreign key (f2) references t1(f1) on delete cascade on update cascade; +connection default; +let $conn=`select connection_id()`; +set debug_sync='before_execute_sql_command wait_for g1'; +send update t1 set f1 = f1 + 100000 limit 2; +connect con2,localhost,root; +let $wait_condition= select 1 from information_schema.processlist where state='Waiting for table metadata lock' and info like 'update t1 %'; +source include/wait_condition.inc; +--replace_result $conn UPDATE +eval kill query $conn; +disconnect con2; +connection default; +error ER_QUERY_INTERRUPTED; +reap; +set debug_sync='now signal g2'; +connection con1; +reap; +show create table t2; +disconnect con1; +connection default; +select * from t2 where f2 not in (select f1 from t1); +select * from t3 where f3 not in (select f2 from t2); +drop table t3; +drop table t2; +drop table t1; +set debug_sync='reset'; diff --git a/sql/sql_base.cc b/sql/sql_base.cc index be7d9008aa4..32ce3c3a793 100644 --- a/sql/sql_base.cc +++ b/sql/sql_base.cc @@ -4806,8 +4806,8 @@ handle_routine(THD *thd, Query_tables_list *prelocking_ctx, @note this can be changed to use a hash, instead of scanning the linked list, if the performance of this function will ever become an issue */ -static bool table_already_fk_prelocked(TABLE_LIST *tl, LEX_STRING *db, - LEX_STRING *table, thr_lock_type lock_type) +bool table_already_fk_prelocked(TABLE_LIST *tl, LEX_STRING *db, + LEX_STRING *table, thr_lock_type lock_type) { for (; tl; tl= tl->next_global ) { diff --git a/sql/sql_base.h b/sql/sql_base.h index af42a15ab29..43b78833efb 100644 --- a/sql/sql_base.h +++ b/sql/sql_base.h @@ -148,6 +148,8 @@ my_bool mysql_rm_tmp_tables(void); bool rm_temporary_table(handlerton *base, const char *path); void close_tables_for_reopen(THD *thd, TABLE_LIST **tables, const MDL_savepoint &start_of_statement_svp); +bool table_already_fk_prelocked(TABLE_LIST *tl, LEX_STRING *db, + LEX_STRING *table, thr_lock_type lock_type); TABLE_LIST *find_table_in_list(TABLE_LIST *table, TABLE_LIST *TABLE_LIST::*link, const char *db_name, diff --git a/sql/sql_table.cc b/sql/sql_table.cc index f89a6d64fa6..640c6b50fbb 100644 --- a/sql/sql_table.cc +++ b/sql/sql_table.cc @@ -9057,8 +9057,10 @@ bool mysql_alter_table(THD *thd,char *new_db, char *new_name, alter_ctx.tmp_name, strlen(alter_ctx.tmp_name), alter_ctx.tmp_name, TL_READ_NO_INSERT); /* Table is in thd->temporary_tables */ - (void) open_temporary_table(thd, &tbl); + if (open_temporary_table(thd, &tbl)) + goto err_new_table_cleanup; new_table= tbl.table; + DBUG_ASSERT(new_table); } else { @@ -9067,9 +9069,48 @@ bool mysql_alter_table(THD *thd,char *new_db, char *new_name, new_table= open_table_uncached(thd, new_db_type, alter_ctx.get_tmp_path(), alter_ctx.new_db, alter_ctx.tmp_name, true, true); + if (!new_table) + goto err_new_table_cleanup; + + /* + Normally, an attempt to modify an FK parent table will cause + FK children to be prelocked, so the table-being-altered cannot + be modified by a cascade FK action, because ALTER holds a lock + and prelocking will wait. + + But if a new FK is being added by this very ALTER, then the target + table is not locked yet (it's a temporary table). So, we have to + lock FK parents explicitly. + */ + if (alter_info->flags & Alter_info::ADD_FOREIGN_KEY) + { + List fk_list; + List_iterator fk_list_it(fk_list); + FOREIGN_KEY_INFO *fk; + + /* tables_opened can be > 1 only for MERGE tables */ + DBUG_ASSERT(tables_opened == 1); + DBUG_ASSERT(&table_list->next_global == thd->lex->query_tables_last); + + new_table->file->get_foreign_key_list(thd, &fk_list); + while ((fk= fk_list_it++)) + { + if (table_already_fk_prelocked(table_list, fk->referenced_db, + fk->referenced_table, TL_READ_NO_INSERT)) + continue; + + TABLE_LIST *tl= (TABLE_LIST *) thd->alloc(sizeof(TABLE_LIST)); + tl->init_one_table_for_prelocking(fk->referenced_db->str, fk->referenced_db->length, + fk->referenced_table->str, fk->referenced_table->length, + NULL, TL_READ_NO_INSERT, false, NULL, 0, + &thd->lex->query_tables_last); + } + + if (open_tables(thd, &table_list->next_global, &tables_opened, 0, + &alter_prelocking_strategy)) + goto err_new_table_cleanup; + } } - if (!new_table) - goto err_new_table_cleanup; /* Note: In case of MERGE table, we do not attach children. We do not copy data for MERGE tables. Only the children have data. diff --git a/sql/table.h b/sql/table.h index 23f97ed18d0..4a1552f8c0d 100644 --- a/sql/table.h +++ b/sql/table.h @@ -1695,6 +1695,14 @@ struct TABLE_LIST const char *alias_arg, enum thr_lock_type lock_type_arg) { + enum enum_mdl_type mdl_type; + if (lock_type_arg >= TL_WRITE_ALLOW_WRITE) + mdl_type= MDL_SHARED_WRITE; + else if (lock_type_arg == TL_READ_NO_INSERT) + mdl_type= MDL_SHARED_NO_WRITE; + else + mdl_type= MDL_SHARED_READ; + bzero((char*) this, sizeof(*this)); db= (char*) db_name_arg; db_length= db_length_arg; @@ -1702,10 +1710,7 @@ struct TABLE_LIST table_name_length= table_name_length_arg; alias= (char*) (alias_arg ? alias_arg : table_name_arg); lock_type= lock_type_arg; - mdl_request.init(MDL_key::TABLE, db, table_name, - (lock_type >= TL_WRITE_ALLOW_WRITE) ? - MDL_SHARED_WRITE : MDL_SHARED_READ, - MDL_TRANSACTION); + mdl_request.init(MDL_key::TABLE, db, table_name, mdl_type, MDL_TRANSACTION); } inline void init_one_table_for_prelocking(const char *db_name_arg, From d831cefb43b1695e4b72735169c1ab49e7032f6f Mon Sep 17 00:00:00 2001 From: Sergei Golubchik Date: Thu, 19 Jul 2018 01:18:14 +0200 Subject: [PATCH 056/148] MDEV-16465 Invalid (old?) table or database name or hang in ha_innobase::delete_table and log semaphore wait upon concurrent DDL with foreign keys Disable "Invalid (old?) table or database name" warning when converting table names in InnoDB's get_foreign_key_info(). Because a name can be a temporary table name during the ALTER TABLE, and some other thread can do SHOW CREATE TABLE for the other table in the FK relationships _anytime_. --- storage/innobase/handler/ha_innodb.cc | 4 ++-- storage/xtradb/handler/ha_innodb.cc | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/storage/innobase/handler/ha_innodb.cc b/storage/innobase/handler/ha_innodb.cc index 35693cf4ece..58060cd2edb 100644 --- a/storage/innobase/handler/ha_innodb.cc +++ b/storage/innobase/handler/ha_innodb.cc @@ -12429,7 +12429,7 @@ get_foreign_key_info( /* Referenced (parent) table name */ ptr = dict_remove_db_name(foreign->referenced_table_name); - len = filename_to_tablename(ptr, name_buff, sizeof(name_buff)); + len = filename_to_tablename(ptr, name_buff, sizeof(name_buff), 1); f_key_info.referenced_table = thd_make_lex_string( thd, 0, name_buff, static_cast(len), 1); @@ -12445,7 +12445,7 @@ get_foreign_key_info( /* Dependent (child) table name */ ptr = dict_remove_db_name(foreign->foreign_table_name); - len = filename_to_tablename(ptr, name_buff, sizeof(name_buff)); + len = filename_to_tablename(ptr, name_buff, sizeof(name_buff), 1); f_key_info.foreign_table = thd_make_lex_string( thd, 0, name_buff, static_cast(len), 1); diff --git a/storage/xtradb/handler/ha_innodb.cc b/storage/xtradb/handler/ha_innodb.cc index 82a59031453..e32d928d45e 100644 --- a/storage/xtradb/handler/ha_innodb.cc +++ b/storage/xtradb/handler/ha_innodb.cc @@ -13295,7 +13295,7 @@ get_foreign_key_info( /* Referenced (parent) table name */ ptr = dict_remove_db_name(foreign->referenced_table_name); - len = filename_to_tablename(ptr, name_buff, sizeof(name_buff)); + len = filename_to_tablename(ptr, name_buff, sizeof(name_buff), 1); f_key_info.referenced_table = thd_make_lex_string( thd, 0, name_buff, static_cast(len), 1); @@ -13311,7 +13311,7 @@ get_foreign_key_info( /* Dependent (child) table name */ ptr = dict_remove_db_name(foreign->foreign_table_name); - len = filename_to_tablename(ptr, name_buff, sizeof(name_buff)); + len = filename_to_tablename(ptr, name_buff, sizeof(name_buff), 1); f_key_info.foreign_table = thd_make_lex_string( thd, 0, name_buff, static_cast(len), 1); From 09bc99fac900648ea36b0a0e66fbf191c296a80a Mon Sep 17 00:00:00 2001 From: Sergei Golubchik Date: Thu, 19 Jul 2018 11:10:41 +0200 Subject: [PATCH 057/148] cleanup: remove extra/rpl_tests/rpl_foreign_key.test --- .../extra/rpl_tests/rpl_foreign_key.test | 62 ------------------ .../suite/rpl/r/rpl_foreign_key_innodb.result | 5 +- .../suite/rpl/t/rpl_foreign_key_innodb.test | 63 ++++++++++++++++++- 3 files changed, 62 insertions(+), 68 deletions(-) delete mode 100644 mysql-test/extra/rpl_tests/rpl_foreign_key.test diff --git a/mysql-test/extra/rpl_tests/rpl_foreign_key.test b/mysql-test/extra/rpl_tests/rpl_foreign_key.test deleted file mode 100644 index db646a736f9..00000000000 --- a/mysql-test/extra/rpl_tests/rpl_foreign_key.test +++ /dev/null @@ -1,62 +0,0 @@ -# Check the replication of the FOREIGN_KEY_CHECKS variable. - --- source include/master-slave.inc - -eval CREATE TABLE t1 (a INT AUTO_INCREMENT KEY) ENGINE=$engine_type; -eval CREATE TABLE t2 (b INT AUTO_INCREMENT KEY, c INT, FOREIGN KEY(b) REFERENCES t1(a)) ENGINE=$engine_type; - -SET FOREIGN_KEY_CHECKS=0; -INSERT INTO t1 VALUES (10); -INSERT INTO t1 VALUES (NULL),(NULL),(NULL); -INSERT INTO t2 VALUES (5,0); -INSERT INTO t2 VALUES (NULL,LAST_INSERT_ID()); -SET FOREIGN_KEY_CHECKS=1; -SELECT * FROM t1 ORDER BY a; -SELECT * FROM t2 ORDER BY b; -sync_slave_with_master; -SELECT * FROM t1 ORDER BY a; -SELECT * FROM t2 ORDER BY b; - -connection master; -SET TIMESTAMP=1000000000; -CREATE TABLE t3 ( a INT UNIQUE ); -SET FOREIGN_KEY_CHECKS=0; -# Had to add 1022 for run with ndb as ndb uses different -# error and error code for error ER_DUP_ENTRY. Bug 16677 ---error 1022, ER_DUP_ENTRY -INSERT INTO t3 VALUES (1),(1); -sync_slave_with_master; - -connection master; -SET FOREIGN_KEY_CHECKS=0; -DROP TABLE IF EXISTS t1,t2,t3; -SET FOREIGN_KEY_CHECKS=1; -sync_slave_with_master; - -# -# Bug #32468 delete rows event on a table with foreign key constraint fails -# - -connection master; - -eval create table t1 (b int primary key) engine = $engine_type; -eval create table t2 (a int primary key, b int, foreign key (b) references t1(b)) - engine = $engine_type; - -insert into t1 set b=1; -insert into t2 set a=1, b=1; - -set foreign_key_checks=0; -delete from t1; - ---echo must sync w/o a problem (could not with the buggy code) -sync_slave_with_master; -select count(*) from t1 /* must be zero */; - - -# cleanup for bug#32468 - -connection master; -drop table t2,t1; - ---source include/rpl_end.inc diff --git a/mysql-test/suite/rpl/r/rpl_foreign_key_innodb.result b/mysql-test/suite/rpl/r/rpl_foreign_key_innodb.result index f778e76adc0..efe8155ec08 100644 --- a/mysql-test/suite/rpl/r/rpl_foreign_key_innodb.result +++ b/mysql-test/suite/rpl/r/rpl_foreign_key_innodb.result @@ -32,13 +32,12 @@ SET TIMESTAMP=1000000000; CREATE TABLE t3 ( a INT UNIQUE ); SET FOREIGN_KEY_CHECKS=0; INSERT INTO t3 VALUES (1),(1); -Got one of the listed errors +ERROR 23000: Duplicate entry '1' for key 'a' SET FOREIGN_KEY_CHECKS=0; DROP TABLE IF EXISTS t1,t2,t3; SET FOREIGN_KEY_CHECKS=1; create table t1 (b int primary key) engine = INNODB; -create table t2 (a int primary key, b int, foreign key (b) references t1(b)) -engine = INNODB; +create table t2 (a int primary key, b int, foreign key (b) references t1(b)) engine = INNODB; insert into t1 set b=1; insert into t2 set a=1, b=1; set foreign_key_checks=0; diff --git a/mysql-test/suite/rpl/t/rpl_foreign_key_innodb.test b/mysql-test/suite/rpl/t/rpl_foreign_key_innodb.test index ce28c0334ec..53db1723325 100644 --- a/mysql-test/suite/rpl/t/rpl_foreign_key_innodb.test +++ b/mysql-test/suite/rpl/t/rpl_foreign_key_innodb.test @@ -1,4 +1,61 @@ --- source include/not_ndb_default.inc -- source include/have_innodb.inc -let $engine_type=INNODB; --- source extra/rpl_tests/rpl_foreign_key.test + +# Check the replication of the FOREIGN_KEY_CHECKS variable. + +-- source include/master-slave.inc + +CREATE TABLE t1 (a INT AUTO_INCREMENT KEY) ENGINE=INNODB; +CREATE TABLE t2 (b INT AUTO_INCREMENT KEY, c INT, FOREIGN KEY(b) REFERENCES t1(a)) ENGINE=INNODB; + +SET FOREIGN_KEY_CHECKS=0; +INSERT INTO t1 VALUES (10); +INSERT INTO t1 VALUES (NULL),(NULL),(NULL); +INSERT INTO t2 VALUES (5,0); +INSERT INTO t2 VALUES (NULL,LAST_INSERT_ID()); +SET FOREIGN_KEY_CHECKS=1; +SELECT * FROM t1 ORDER BY a; +SELECT * FROM t2 ORDER BY b; +sync_slave_with_master; +SELECT * FROM t1 ORDER BY a; +SELECT * FROM t2 ORDER BY b; + +connection master; +SET TIMESTAMP=1000000000; +CREATE TABLE t3 ( a INT UNIQUE ); +SET FOREIGN_KEY_CHECKS=0; +--error ER_DUP_ENTRY +INSERT INTO t3 VALUES (1),(1); +sync_slave_with_master; + +connection master; +SET FOREIGN_KEY_CHECKS=0; +DROP TABLE IF EXISTS t1,t2,t3; +SET FOREIGN_KEY_CHECKS=1; +sync_slave_with_master; + +# +# Bug #32468 delete rows event on a table with foreign key constraint fails +# + +connection master; + +create table t1 (b int primary key) engine = INNODB; +create table t2 (a int primary key, b int, foreign key (b) references t1(b)) engine = INNODB; + +insert into t1 set b=1; +insert into t2 set a=1, b=1; + +set foreign_key_checks=0; +delete from t1; + +--echo must sync w/o a problem (could not with the buggy code) +sync_slave_with_master; +select count(*) from t1 /* must be zero */; + + +# cleanup for bug#32468 + +connection master; +drop table t2,t1; + +--source include/rpl_end.inc From 4caf3e08a853e413b4a08c1bf93cf737266a1451 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marko=20M=C3=A4kel=C3=A4?= Date: Tue, 4 Sep 2018 20:21:57 +0300 Subject: [PATCH 058/148] Add MDEV-11080, MDEV-16709 tests for the MDEV-13333 fix The regression that was introduced in commit 723f87e9d318aedad30dfb9dde104312d6612662 was fixed as part of MDEV-13333 (commit 3b37edee1a5121e9523fa8a7f483185f402905e2) without a test case, because the MDEV-13333 test case is even less deterministic than these ones. --- mysql-test/suite/innodb/r/innodb-lock.result | 29 +++++++- mysql-test/suite/innodb/t/innodb-lock.test | 74 +++++++++++++++----- 2 files changed, 86 insertions(+), 17 deletions(-) diff --git a/mysql-test/suite/innodb/r/innodb-lock.result b/mysql-test/suite/innodb/r/innodb-lock.result index 7191bcd238a..5806535d6f0 100644 --- a/mysql-test/suite/innodb/r/innodb-lock.result +++ b/mysql-test/suite/innodb/r/innodb-lock.result @@ -2,7 +2,6 @@ set global innodb_table_locks=1; select @@innodb_table_locks; @@innodb_table_locks 1 -drop table if exists t1; set @@innodb_table_locks=1; create table t1 (id integer, x integer) engine=INNODB; insert into t1 values(0, 0); @@ -110,3 +109,31 @@ a b 3 1 COMMIT; DROP TABLE t1; +# +# MDEV-11080 InnoDB: Failing assertion: +# table->n_waiting_or_granted_auto_inc_locks > 0 +# +CREATE TABLE t1 (pk INTEGER AUTO_INCREMENT PRIMARY KEY) ENGINE=InnoDB; +INSERT INTO t1 VALUES (NULL),(NULL); +CREATE TABLE t2 LIKE t1; +BEGIN; +BEGIN; +DELETE FROM t2; +LOCK TABLE t2 READ;; +SET innodb_lock_wait_timeout= 1, lock_wait_timeout= 2; +INSERT INTO t2 SELECT * FROM t1; +COMMIT; +UNLOCK TABLES; +DROP TABLE t1, t2; +# +# MDEV-16709 InnoDB: Error: trx already had an AUTO-INC lock +# +CREATE TABLE t1 (pk INT AUTO_INCREMENT PRIMARY KEY) ENGINE=InnoDB +PARTITION BY key (pk) PARTITIONS 2; +CREATE TABLE t2 (a INT) ENGINE=InnoDB; +INSERT INTO t2 VALUES (1),(2),(3),(4),(5),(6); +CREATE TABLE t3 (b INT) ENGINE=InnoDB; +INSERT INTO t3 VALUES (1),(2),(3),(4),(5),(6),(7),(8),(9); +INSERT t1 SELECT NULL FROM t2; +INSERT t1 SELECT NULL FROM t3; +DROP TABLE t1, t2, t3; diff --git a/mysql-test/suite/innodb/t/innodb-lock.test b/mysql-test/suite/innodb/t/innodb-lock.test index e3026ac505b..ecd6019ad8f 100644 --- a/mysql-test/suite/innodb/t/innodb-lock.test +++ b/mysql-test/suite/innodb/t/innodb-lock.test @@ -1,4 +1,5 @@ --source include/have_innodb.inc +--source include/have_partition.inc # # Check and select innodb lock type @@ -12,26 +13,15 @@ select @@innodb_table_locks; # Testing of explicit table locks with enforced table locks # -connect (con1,localhost,root,,); -connect (con2,localhost,root,,); - ---disable_warnings -drop table if exists t1; ---enable_warnings - -# -# Testing of explicit table locks with enforced table locks -# - set @@innodb_table_locks=1; -connection con1; +connect (con1,localhost,root,,); create table t1 (id integer, x integer) engine=INNODB; insert into t1 values(0, 0); set autocommit=0; SELECT * from t1 where id = 0 FOR UPDATE; -connection con2; +connect (con2,localhost,root,,); set autocommit=0; # The following statement should hang because con1 is locking the page @@ -157,14 +147,66 @@ let $wait_condition= where state = 'Sending data' and info = 'SELECT * FROM t1 FOR UPDATE'; --source include/wait_condition.inc +disconnect con2; connection default; COMMIT; connection con1; reap; COMMIT; -disconnect con1; -disconnect con2; - connection default; DROP TABLE t1; + +--echo # +--echo # MDEV-11080 InnoDB: Failing assertion: +--echo # table->n_waiting_or_granted_auto_inc_locks > 0 +--echo # + +CREATE TABLE t1 (pk INTEGER AUTO_INCREMENT PRIMARY KEY) ENGINE=InnoDB; +INSERT INTO t1 VALUES (NULL),(NULL); +CREATE TABLE t2 LIKE t1; + +BEGIN; + +connection con1; +BEGIN; +DELETE FROM t2; +connection default; +--send LOCK TABLE t2 READ; +connection con1; +SET innodb_lock_wait_timeout= 1, lock_wait_timeout= 2; +--error 0,ER_LOCK_WAIT_TIMEOUT +INSERT INTO t2 SELECT * FROM t1; +COMMIT; + +connection default; +reap; +UNLOCK TABLES; +DROP TABLE t1, t2; + +--echo # +--echo # MDEV-16709 InnoDB: Error: trx already had an AUTO-INC lock +--echo # + +CREATE TABLE t1 (pk INT AUTO_INCREMENT PRIMARY KEY) ENGINE=InnoDB +PARTITION BY key (pk) PARTITIONS 2; + +CREATE TABLE t2 (a INT) ENGINE=InnoDB; +INSERT INTO t2 VALUES (1),(2),(3),(4),(5),(6); + +CREATE TABLE t3 (b INT) ENGINE=InnoDB; +INSERT INTO t3 VALUES (1),(2),(3),(4),(5),(6),(7),(8),(9); + +connection con1; +send INSERT t1 SELECT NULL FROM t2; + +connection default; +--error 0,ER_DUP_ENTRY,ER_LOCK_DEADLOCK +INSERT t1 SELECT NULL FROM t3; + +connection con1; +--error 0,ER_DUP_ENTRY,ER_LOCK_DEADLOCK +reap; +disconnect con1; +connection default; +DROP TABLE t1, t2, t3; From b44b9f71bd86076746d21babb17949c1a710343c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jan=20Lindstr=C3=B6m?= Date: Tue, 26 Jun 2018 12:56:19 +0300 Subject: [PATCH 059/148] MDEV-15436: If log_bin and log_bin_index is different SST with rsync fails. Problem was that in SST log_bin_index name and directory was not handled and passed to rsync SST script. wsrep_sst_common.sh Read binlog index dirname and filename if --binlog-index parameter is provided. Read binlog filenames from that file from donor and write transfered binlog filenames to that file in joiner. mysqld.cc, mysqld.h Moved opt_binlog_index_name from static to global and added it to extern. wsrep_sst.cc generate_binlog_index_opt_val New function to generate binlog index name if opt_binlog_index_name is given on configuration. sst_prepare_other Add binlog index configuration to SST command. wsrep_sst.h Add new SST parameter --binlog-index Add test case. --- .../suite/galera/r/galera_sst_rsync2.result | 359 ++++++++++++++++++ .../suite/galera/t/galera_sst_rsync2.cnf | 15 + .../suite/galera/t/galera_sst_rsync2.test | 12 + scripts/wsrep_sst_common.sh | 6 + scripts/wsrep_sst_rsync.sh | 41 +- sql/mysqld.cc | 2 +- sql/mysqld.h | 1 + sql/wsrep_sst.cc | 33 +- sql/wsrep_sst.h | 1 + 9 files changed, 459 insertions(+), 11 deletions(-) create mode 100644 mysql-test/suite/galera/r/galera_sst_rsync2.result create mode 100644 mysql-test/suite/galera/t/galera_sst_rsync2.cnf create mode 100644 mysql-test/suite/galera/t/galera_sst_rsync2.test diff --git a/mysql-test/suite/galera/r/galera_sst_rsync2.result b/mysql-test/suite/galera/r/galera_sst_rsync2.result new file mode 100644 index 00000000000..df2d9190a4b --- /dev/null +++ b/mysql-test/suite/galera/r/galera_sst_rsync2.result @@ -0,0 +1,359 @@ +Performing State Transfer on a server that has been shut down cleanly and restarted +CREATE TABLE t1 (f1 CHAR(255)) ENGINE=InnoDB; +SET AUTOCOMMIT=OFF; +START TRANSACTION; +INSERT INTO t1 VALUES ('node1_committed_before'); +INSERT INTO t1 VALUES ('node1_committed_before'); +INSERT INTO t1 VALUES ('node1_committed_before'); +INSERT INTO t1 VALUES ('node1_committed_before'); +INSERT INTO t1 VALUES ('node1_committed_before'); +COMMIT; +SET AUTOCOMMIT=OFF; +START TRANSACTION; +INSERT INTO t1 VALUES ('node2_committed_before'); +INSERT INTO t1 VALUES ('node2_committed_before'); +INSERT INTO t1 VALUES ('node2_committed_before'); +INSERT INTO t1 VALUES ('node2_committed_before'); +INSERT INTO t1 VALUES ('node2_committed_before'); +COMMIT; +Shutting down server ... +SET AUTOCOMMIT=OFF; +START TRANSACTION; +INSERT INTO t1 VALUES ('node1_committed_during'); +INSERT INTO t1 VALUES ('node1_committed_during'); +INSERT INTO t1 VALUES ('node1_committed_during'); +INSERT INTO t1 VALUES ('node1_committed_during'); +INSERT INTO t1 VALUES ('node1_committed_during'); +COMMIT; +START TRANSACTION; +INSERT INTO t1 VALUES ('node1_to_be_committed_after'); +INSERT INTO t1 VALUES ('node1_to_be_committed_after'); +INSERT INTO t1 VALUES ('node1_to_be_committed_after'); +INSERT INTO t1 VALUES ('node1_to_be_committed_after'); +INSERT INTO t1 VALUES ('node1_to_be_committed_after'); +SET AUTOCOMMIT=OFF; +START TRANSACTION; +INSERT INTO t1 VALUES ('node1_to_be_rollbacked_after'); +INSERT INTO t1 VALUES ('node1_to_be_rollbacked_after'); +INSERT INTO t1 VALUES ('node1_to_be_rollbacked_after'); +INSERT INTO t1 VALUES ('node1_to_be_rollbacked_after'); +INSERT INTO t1 VALUES ('node1_to_be_rollbacked_after'); +Starting server ... +SET AUTOCOMMIT=OFF; +START TRANSACTION; +INSERT INTO t1 VALUES ('node2_committed_after'); +INSERT INTO t1 VALUES ('node2_committed_after'); +INSERT INTO t1 VALUES ('node2_committed_after'); +INSERT INTO t1 VALUES ('node2_committed_after'); +INSERT INTO t1 VALUES ('node2_committed_after'); +COMMIT; +INSERT INTO t1 VALUES ('node1_to_be_committed_after'); +INSERT INTO t1 VALUES ('node1_to_be_committed_after'); +INSERT INTO t1 VALUES ('node1_to_be_committed_after'); +INSERT INTO t1 VALUES ('node1_to_be_committed_after'); +INSERT INTO t1 VALUES ('node1_to_be_committed_after'); +COMMIT; +SET AUTOCOMMIT=OFF; +START TRANSACTION; +INSERT INTO t1 VALUES ('node1_committed_after'); +INSERT INTO t1 VALUES ('node1_committed_after'); +INSERT INTO t1 VALUES ('node1_committed_after'); +INSERT INTO t1 VALUES ('node1_committed_after'); +INSERT INTO t1 VALUES ('node1_committed_after'); +COMMIT; +INSERT INTO t1 VALUES ('node1_to_be_rollbacked_after'); +INSERT INTO t1 VALUES ('node1_to_be_rollbacked_after'); +INSERT INTO t1 VALUES ('node1_to_be_rollbacked_after'); +INSERT INTO t1 VALUES ('node1_to_be_rollbacked_after'); +INSERT INTO t1 VALUES ('node1_to_be_rollbacked_after'); +ROLLBACK; +SELECT COUNT(*) = 35 FROM t1; +COUNT(*) = 35 +1 +SELECT COUNT(*) = 0 FROM (SELECT COUNT(*) AS c, f1 FROM t1 GROUP BY f1 HAVING c NOT IN (5, 10)) AS a1; +COUNT(*) = 0 +1 +COMMIT; +SET AUTOCOMMIT=ON; +SELECT COUNT(*) = 35 FROM t1; +COUNT(*) = 35 +1 +SELECT COUNT(*) = 0 FROM (SELECT COUNT(*) AS c, f1 FROM t1 GROUP BY f1 HAVING c NOT IN (5, 10)) AS a1; +COUNT(*) = 0 +1 +DROP TABLE t1; +COMMIT; +SET AUTOCOMMIT=ON; +Performing State Transfer on a server that starts from a clean var directory +This is accomplished by shutting down node #2 and removing its var directory before restarting it +CREATE TABLE t1 (f1 CHAR(255)) ENGINE=InnoDB; +SET AUTOCOMMIT=OFF; +START TRANSACTION; +INSERT INTO t1 VALUES ('node1_committed_before'); +INSERT INTO t1 VALUES ('node1_committed_before'); +INSERT INTO t1 VALUES ('node1_committed_before'); +INSERT INTO t1 VALUES ('node1_committed_before'); +INSERT INTO t1 VALUES ('node1_committed_before'); +COMMIT; +SET AUTOCOMMIT=OFF; +START TRANSACTION; +INSERT INTO t1 VALUES ('node2_committed_before'); +INSERT INTO t1 VALUES ('node2_committed_before'); +INSERT INTO t1 VALUES ('node2_committed_before'); +INSERT INTO t1 VALUES ('node2_committed_before'); +INSERT INTO t1 VALUES ('node2_committed_before'); +COMMIT; +Shutting down server ... +Cleaning var directory ... +SET AUTOCOMMIT=OFF; +START TRANSACTION; +INSERT INTO t1 VALUES ('node1_committed_during'); +INSERT INTO t1 VALUES ('node1_committed_during'); +INSERT INTO t1 VALUES ('node1_committed_during'); +INSERT INTO t1 VALUES ('node1_committed_during'); +INSERT INTO t1 VALUES ('node1_committed_during'); +COMMIT; +START TRANSACTION; +INSERT INTO t1 VALUES ('node1_to_be_committed_after'); +INSERT INTO t1 VALUES ('node1_to_be_committed_after'); +INSERT INTO t1 VALUES ('node1_to_be_committed_after'); +INSERT INTO t1 VALUES ('node1_to_be_committed_after'); +INSERT INTO t1 VALUES ('node1_to_be_committed_after'); +SET AUTOCOMMIT=OFF; +START TRANSACTION; +INSERT INTO t1 VALUES ('node1_to_be_rollbacked_after'); +INSERT INTO t1 VALUES ('node1_to_be_rollbacked_after'); +INSERT INTO t1 VALUES ('node1_to_be_rollbacked_after'); +INSERT INTO t1 VALUES ('node1_to_be_rollbacked_after'); +INSERT INTO t1 VALUES ('node1_to_be_rollbacked_after'); +Starting server ... +SET AUTOCOMMIT=OFF; +START TRANSACTION; +INSERT INTO t1 VALUES ('node2_committed_after'); +INSERT INTO t1 VALUES ('node2_committed_after'); +INSERT INTO t1 VALUES ('node2_committed_after'); +INSERT INTO t1 VALUES ('node2_committed_after'); +INSERT INTO t1 VALUES ('node2_committed_after'); +COMMIT; +INSERT INTO t1 VALUES ('node1_to_be_committed_after'); +INSERT INTO t1 VALUES ('node1_to_be_committed_after'); +INSERT INTO t1 VALUES ('node1_to_be_committed_after'); +INSERT INTO t1 VALUES ('node1_to_be_committed_after'); +INSERT INTO t1 VALUES ('node1_to_be_committed_after'); +COMMIT; +SET AUTOCOMMIT=OFF; +START TRANSACTION; +INSERT INTO t1 VALUES ('node1_committed_after'); +INSERT INTO t1 VALUES ('node1_committed_after'); +INSERT INTO t1 VALUES ('node1_committed_after'); +INSERT INTO t1 VALUES ('node1_committed_after'); +INSERT INTO t1 VALUES ('node1_committed_after'); +COMMIT; +INSERT INTO t1 VALUES ('node1_to_be_rollbacked_after'); +INSERT INTO t1 VALUES ('node1_to_be_rollbacked_after'); +INSERT INTO t1 VALUES ('node1_to_be_rollbacked_after'); +INSERT INTO t1 VALUES ('node1_to_be_rollbacked_after'); +INSERT INTO t1 VALUES ('node1_to_be_rollbacked_after'); +ROLLBACK; +SELECT COUNT(*) = 35 FROM t1; +COUNT(*) = 35 +1 +SELECT COUNT(*) = 0 FROM (SELECT COUNT(*) AS c, f1 FROM t1 GROUP BY f1 HAVING c NOT IN (5, 10)) AS a1; +COUNT(*) = 0 +1 +COMMIT; +SET AUTOCOMMIT=ON; +SELECT COUNT(*) = 35 FROM t1; +COUNT(*) = 35 +1 +SELECT COUNT(*) = 0 FROM (SELECT COUNT(*) AS c, f1 FROM t1 GROUP BY f1 HAVING c NOT IN (5, 10)) AS a1; +COUNT(*) = 0 +1 +DROP TABLE t1; +COMMIT; +SET AUTOCOMMIT=ON; +Performing State Transfer on a server that has been killed and restarted +CREATE TABLE t1 (f1 CHAR(255)) ENGINE=InnoDB; +SET AUTOCOMMIT=OFF; +START TRANSACTION; +INSERT INTO t1 VALUES ('node1_committed_before'); +INSERT INTO t1 VALUES ('node1_committed_before'); +INSERT INTO t1 VALUES ('node1_committed_before'); +INSERT INTO t1 VALUES ('node1_committed_before'); +INSERT INTO t1 VALUES ('node1_committed_before'); +COMMIT; +SET AUTOCOMMIT=OFF; +START TRANSACTION; +INSERT INTO t1 VALUES ('node2_committed_before'); +INSERT INTO t1 VALUES ('node2_committed_before'); +INSERT INTO t1 VALUES ('node2_committed_before'); +INSERT INTO t1 VALUES ('node2_committed_before'); +INSERT INTO t1 VALUES ('node2_committed_before'); +COMMIT; +Killing server ... +SET AUTOCOMMIT=OFF; +START TRANSACTION; +INSERT INTO t1 VALUES ('node1_committed_during'); +INSERT INTO t1 VALUES ('node1_committed_during'); +INSERT INTO t1 VALUES ('node1_committed_during'); +INSERT INTO t1 VALUES ('node1_committed_during'); +INSERT INTO t1 VALUES ('node1_committed_during'); +COMMIT; +START TRANSACTION; +INSERT INTO t1 VALUES ('node1_to_be_committed_after'); +INSERT INTO t1 VALUES ('node1_to_be_committed_after'); +INSERT INTO t1 VALUES ('node1_to_be_committed_after'); +INSERT INTO t1 VALUES ('node1_to_be_committed_after'); +INSERT INTO t1 VALUES ('node1_to_be_committed_after'); +SET AUTOCOMMIT=OFF; +START TRANSACTION; +INSERT INTO t1 VALUES ('node1_to_be_rollbacked_after'); +INSERT INTO t1 VALUES ('node1_to_be_rollbacked_after'); +INSERT INTO t1 VALUES ('node1_to_be_rollbacked_after'); +INSERT INTO t1 VALUES ('node1_to_be_rollbacked_after'); +INSERT INTO t1 VALUES ('node1_to_be_rollbacked_after'); +Performing --wsrep-recover ... +Starting server ... +Using --wsrep-start-position when starting mysqld ... +SET AUTOCOMMIT=OFF; +START TRANSACTION; +INSERT INTO t1 VALUES ('node2_committed_after'); +INSERT INTO t1 VALUES ('node2_committed_after'); +INSERT INTO t1 VALUES ('node2_committed_after'); +INSERT INTO t1 VALUES ('node2_committed_after'); +INSERT INTO t1 VALUES ('node2_committed_after'); +COMMIT; +INSERT INTO t1 VALUES ('node1_to_be_committed_after'); +INSERT INTO t1 VALUES ('node1_to_be_committed_after'); +INSERT INTO t1 VALUES ('node1_to_be_committed_after'); +INSERT INTO t1 VALUES ('node1_to_be_committed_after'); +INSERT INTO t1 VALUES ('node1_to_be_committed_after'); +COMMIT; +SET AUTOCOMMIT=OFF; +START TRANSACTION; +INSERT INTO t1 VALUES ('node1_committed_after'); +INSERT INTO t1 VALUES ('node1_committed_after'); +INSERT INTO t1 VALUES ('node1_committed_after'); +INSERT INTO t1 VALUES ('node1_committed_after'); +INSERT INTO t1 VALUES ('node1_committed_after'); +COMMIT; +INSERT INTO t1 VALUES ('node1_to_be_rollbacked_after'); +INSERT INTO t1 VALUES ('node1_to_be_rollbacked_after'); +INSERT INTO t1 VALUES ('node1_to_be_rollbacked_after'); +INSERT INTO t1 VALUES ('node1_to_be_rollbacked_after'); +INSERT INTO t1 VALUES ('node1_to_be_rollbacked_after'); +ROLLBACK; +SELECT COUNT(*) = 35 FROM t1; +COUNT(*) = 35 +1 +SELECT COUNT(*) = 0 FROM (SELECT COUNT(*) AS c, f1 FROM t1 GROUP BY f1 HAVING c NOT IN (5, 10)) AS a1; +COUNT(*) = 0 +1 +COMMIT; +SET AUTOCOMMIT=ON; +SELECT COUNT(*) = 35 FROM t1; +COUNT(*) = 35 +1 +SELECT COUNT(*) = 0 FROM (SELECT COUNT(*) AS c, f1 FROM t1 GROUP BY f1 HAVING c NOT IN (5, 10)) AS a1; +COUNT(*) = 0 +1 +DROP TABLE t1; +COMMIT; +SET AUTOCOMMIT=ON; +Performing State Transfer on a server that has been killed and restarted +while a DDL was in progress on it +CREATE TABLE t1 (f1 CHAR(255)) ENGINE=InnoDB; +SET AUTOCOMMIT=OFF; +START TRANSACTION; +INSERT INTO t1 VALUES ('node1_committed_before'); +INSERT INTO t1 VALUES ('node1_committed_before'); +INSERT INTO t1 VALUES ('node1_committed_before'); +INSERT INTO t1 VALUES ('node1_committed_before'); +INSERT INTO t1 VALUES ('node1_committed_before'); +START TRANSACTION; +INSERT INTO t1 VALUES ('node2_committed_before'); +INSERT INTO t1 VALUES ('node2_committed_before'); +INSERT INTO t1 VALUES ('node2_committed_before'); +INSERT INTO t1 VALUES ('node2_committed_before'); +INSERT INTO t1 VALUES ('node2_committed_before'); +COMMIT; +SET GLOBAL debug_dbug = 'd,sync.alter_opened_table'; +ALTER TABLE t1 ADD COLUMN f2 INTEGER; +SET wsrep_sync_wait = 0; +Killing server ... +SET AUTOCOMMIT=OFF; +START TRANSACTION; +INSERT INTO t1 (f1) VALUES ('node1_committed_during'); +INSERT INTO t1 (f1) VALUES ('node1_committed_during'); +INSERT INTO t1 (f1) VALUES ('node1_committed_during'); +INSERT INTO t1 (f1) VALUES ('node1_committed_during'); +INSERT INTO t1 (f1) VALUES ('node1_committed_during'); +COMMIT; +START TRANSACTION; +INSERT INTO t1 (f1) VALUES ('node1_to_be_committed_after'); +INSERT INTO t1 (f1) VALUES ('node1_to_be_committed_after'); +INSERT INTO t1 (f1) VALUES ('node1_to_be_committed_after'); +INSERT INTO t1 (f1) VALUES ('node1_to_be_committed_after'); +INSERT INTO t1 (f1) VALUES ('node1_to_be_committed_after'); +SET AUTOCOMMIT=OFF; +START TRANSACTION; +INSERT INTO t1 (f1) VALUES ('node1_to_be_rollbacked_after'); +INSERT INTO t1 (f1) VALUES ('node1_to_be_rollbacked_after'); +INSERT INTO t1 (f1) VALUES ('node1_to_be_rollbacked_after'); +INSERT INTO t1 (f1) VALUES ('node1_to_be_rollbacked_after'); +INSERT INTO t1 (f1) VALUES ('node1_to_be_rollbacked_after'); +Performing --wsrep-recover ... +Starting server ... +Using --wsrep-start-position when starting mysqld ... +SET AUTOCOMMIT=OFF; +START TRANSACTION; +INSERT INTO t1 (f1) VALUES ('node2_committed_after'); +INSERT INTO t1 (f1) VALUES ('node2_committed_after'); +INSERT INTO t1 (f1) VALUES ('node2_committed_after'); +INSERT INTO t1 (f1) VALUES ('node2_committed_after'); +INSERT INTO t1 (f1) VALUES ('node2_committed_after'); +COMMIT; +INSERT INTO t1 (f1) VALUES ('node1_to_be_committed_after'); +INSERT INTO t1 (f1) VALUES ('node1_to_be_committed_after'); +INSERT INTO t1 (f1) VALUES ('node1_to_be_committed_after'); +INSERT INTO t1 (f1) VALUES ('node1_to_be_committed_after'); +INSERT INTO t1 (f1) VALUES ('node1_to_be_committed_after'); +COMMIT; +SET AUTOCOMMIT=OFF; +START TRANSACTION; +INSERT INTO t1 (f1) VALUES ('node1_committed_after'); +INSERT INTO t1 (f1) VALUES ('node1_committed_after'); +INSERT INTO t1 (f1) VALUES ('node1_committed_after'); +INSERT INTO t1 (f1) VALUES ('node1_committed_after'); +INSERT INTO t1 (f1) VALUES ('node1_committed_after'); +COMMIT; +INSERT INTO t1 (f1) VALUES ('node1_to_be_rollbacked_after'); +INSERT INTO t1 (f1) VALUES ('node1_to_be_rollbacked_after'); +INSERT INTO t1 (f1) VALUES ('node1_to_be_rollbacked_after'); +INSERT INTO t1 (f1) VALUES ('node1_to_be_rollbacked_after'); +INSERT INTO t1 (f1) VALUES ('node1_to_be_rollbacked_after'); +ROLLBACK; +SELECT COUNT(*) = 2 FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME = 't1'; +COUNT(*) = 2 +1 +SELECT COUNT(*) = 35 FROM t1; +COUNT(*) = 35 +1 +SELECT COUNT(*) = 0 FROM (SELECT COUNT(*) AS c, f1 FROM t1 GROUP BY f1 HAVING c NOT IN (5, 10)) AS a1; +COUNT(*) = 0 +1 +COMMIT; +SET AUTOCOMMIT=ON; +SELECT COUNT(*) = 2 FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME = 't1'; +COUNT(*) = 2 +1 +SELECT COUNT(*) = 35 FROM t1; +COUNT(*) = 35 +1 +SELECT COUNT(*) = 0 FROM (SELECT COUNT(*) AS c, f1 FROM t1 GROUP BY f1 HAVING c NOT IN (5, 10)) AS a1; +COUNT(*) = 0 +1 +DROP TABLE t1; +COMMIT; +SET AUTOCOMMIT=ON; +SET GLOBAL debug_dbug = $debug_orig; diff --git a/mysql-test/suite/galera/t/galera_sst_rsync2.cnf b/mysql-test/suite/galera/t/galera_sst_rsync2.cnf new file mode 100644 index 00000000000..b5bf70a0dfa --- /dev/null +++ b/mysql-test/suite/galera/t/galera_sst_rsync2.cnf @@ -0,0 +1,15 @@ +!include ../galera_2nodes.cnf + +[mysqld] +wsrep_sst_method=rsync + +[mysqld.1] +wsrep_provider_options='base_port=@mysqld.1.#galera_port;gcache.size=1;pc.ignore_sb=true' +log_bin=@ENV.MYSQL_TEST_DIR/var/server1_binlog +log_bin_index=@ENV.MYSQL_TEST_DIR/var/tmp/server1_binlog_index.index + +[mysqld.2] +wsrep_provider_options='base_port=@mysqld.2.#galera_port;gcache.size=1;pc.ignore_sb=true' +log_bin=@ENV.MYSQL_TEST_DIR/var/server2_binlog +log_bin_index=@ENV.MYSQL_TEST_DIR/var/tmp/server2_binlog_index.index + diff --git a/mysql-test/suite/galera/t/galera_sst_rsync2.test b/mysql-test/suite/galera/t/galera_sst_rsync2.test new file mode 100644 index 00000000000..f796356cac7 --- /dev/null +++ b/mysql-test/suite/galera/t/galera_sst_rsync2.test @@ -0,0 +1,12 @@ +--source include/galera_cluster.inc + +--let $node_1=node_1 +--let $node_2=node_2 +--source include/auto_increment_offset_save.inc + +--source suite/galera/include/galera_st_shutdown_slave.inc +--source suite/galera/include/galera_st_clean_slave.inc + +--source suite/galera/include/galera_st_kill_slave.inc +--source suite/galera/include/galera_st_kill_slave_ddl.inc +--source include/auto_increment_offset_restore.inc diff --git a/scripts/wsrep_sst_common.sh b/scripts/wsrep_sst_common.sh index bc26cec6d83..4ecfc245ec5 100644 --- a/scripts/wsrep_sst_common.sh +++ b/scripts/wsrep_sst_common.sh @@ -20,6 +20,7 @@ set -u WSREP_SST_OPT_BYPASS=0 WSREP_SST_OPT_BINLOG="" +WSREP_SST_OPT_BINLOG_INDEX="" WSREP_SST_OPT_DATA="" WSREP_SST_OPT_AUTH=${WSREP_SST_OPT_AUTH:-} WSREP_SST_OPT_USER=${WSREP_SST_OPT_USER:-} @@ -120,6 +121,10 @@ case "$1" in WSREP_SST_OPT_BINLOG="$2" shift ;; + '--binlog-index') + WSREP_SST_OPT_BINLOG_INDEX="$2" + shift + ;; '--gtid-domain-id') readonly WSREP_SST_OPT_GTID_DOMAIN_ID="$2" shift @@ -133,6 +138,7 @@ shift done readonly WSREP_SST_OPT_BYPASS readonly WSREP_SST_OPT_BINLOG +readonly WSREP_SST_OPT_BINLOG_INDEX if [ -n "${WSREP_SST_OPT_ADDR_PORT:-}" ]; then if [ -n "${WSREP_SST_OPT_PORT:-}" ]; then diff --git a/scripts/wsrep_sst_rsync.sh b/scripts/wsrep_sst_rsync.sh index 77a25ffc530..c01e7c1d390 100644 --- a/scripts/wsrep_sst_rsync.sh +++ b/scripts/wsrep_sst_rsync.sh @@ -105,6 +105,14 @@ if ! [ -z $WSREP_SST_OPT_BINLOG ] then BINLOG_DIRNAME=$(dirname $WSREP_SST_OPT_BINLOG) BINLOG_FILENAME=$(basename $WSREP_SST_OPT_BINLOG) + BINLOG_INDEX_DIRNAME=$(dirname $WSREP_SST_OPT_BINLOG) + BINLOG_INDEX_FILENAME=$(basename $WSREP_SST_OPT_BINLOG) +fi + +if ! [ -z $WSREP_SST_OPT_BINLOG_INDEX ] +then + BINLOG_INDEX_DIRNAME=$(dirname $WSREP_SST_OPT_BINLOG_INDEX) + BINLOG_INDEX_FILENAME=$(basename $WSREP_SST_OPT_BINLOG_INDEX) fi WSREP_LOG_DIR=${WSREP_LOG_DIR:-""} @@ -210,19 +218,29 @@ EOF if ! [ -z $WSREP_SST_OPT_BINLOG ] then # Prepare binlog files - pushd $BINLOG_DIRNAME &> /dev/null - binlog_files_full=$(tail -n $BINLOG_N_FILES ${BINLOG_FILENAME}.index) + OLD_PWD="$(pwd)" + cd $BINLOG_DIRNAME + + if ! [ -z $WSREP_SST_OPT_BINLOG_INDEX ] + binlog_files_full=$(tail -n $BINLOG_N_FILES ${BINLOG_FILENAME}.index) + then + cd $BINLOG_INDEX_DIRNAME + binlog_files_full=$(tail -n $BINLOG_N_FILES ${BINLOG_INDEX_FILENAME}.index) + fi + + cd $BINLOG_DIRNAME binlog_files="" for ii in $binlog_files_full do binlog_files="$binlog_files $(basename $ii)" done + if ! [ -z "$binlog_files" ] then wsrep_log_info "Preparing binlog files for transfer:" tar -cvf $BINLOG_TAR_FILE $binlog_files >&2 fi - popd &> /dev/null + cd "$OLD_PWD" fi # first, the normal directories, so that we can detect incompatible protocol @@ -276,7 +294,8 @@ EOF fi # then, we parallelize the transfer of database directories, use . so that pathconcatenation works - pushd "$WSREP_SST_OPT_DATA" >/dev/null + OLD_PWD="$(pwd)" + cd $WSREP_SST_OPT_DATA count=1 [ "$OS" == "Linux" ] && count=$(grep -c processor /proc/cpuinfo) @@ -290,7 +309,7 @@ EOF $WHOLE_FILE_OPT --exclude '*/ib_logfile*' "$WSREP_SST_OPT_DATA"/{}/ \ rsync://$WSREP_SST_OPT_ADDR/{} >&2 || RC=$? - popd >/dev/null + cd "$OLD_PWD" if [ $RC -ne 0 ]; then wsrep_log_error "find/rsync returned code $RC:" @@ -420,7 +439,9 @@ EOF if ! [ -z $WSREP_SST_OPT_BINLOG ] then - pushd $BINLOG_DIRNAME &> /dev/null + OLD_PWD="$(pwd)" + cd $BINLOG_DIRNAME + if [ -f $BINLOG_TAR_FILE ] then # Clean up old binlog files first @@ -429,10 +450,14 @@ EOF tar -xvf $BINLOG_TAR_FILE >&2 for ii in $(ls -1 ${BINLOG_FILENAME}.*) do - echo ${BINLOG_DIRNAME}/${ii} >> ${BINLOG_FILENAME}.index + if ! [ -z $WSREP_SST_OPT_BINLOG_INDEX ] + echo ${BINLOG_DIRNAME}/${ii} >> ${BINLOG_FILENAME}.index + then + echo ${BINLOG_DIRNAME}/${ii} >> ${BINLOG_INDEX_DIRNAME}/${BINLOG_INDEX_FILENAME}.index + fi done fi - popd &> /dev/null + cd "$OLD_PWD" fi if [ -r "$MAGIC_FILE" ] then diff --git a/sql/mysqld.cc b/sql/mysqld.cc index 34bb75cbfba..3dff49f5ccb 100644 --- a/sql/mysqld.cc +++ b/sql/mysqld.cc @@ -754,6 +754,7 @@ char *master_info_file; char *relay_log_info_file, *report_user, *report_password, *report_host; char *opt_relay_logname = 0, *opt_relaylog_index_name=0; char *opt_logname, *opt_slow_logname, *opt_bin_logname; +char *opt_binlog_index_name=0; /* Static variables */ @@ -763,7 +764,6 @@ my_bool opt_expect_abort= 0, opt_bootstrap= 0; static my_bool opt_myisam_log; static int cleanup_done; static ulong opt_specialflag; -static char *opt_binlog_index_name; char *mysql_home_ptr, *pidfile_name_ptr; /** Initial command line arguments (count), after load_defaults().*/ static int defaults_argc; diff --git a/sql/mysqld.h b/sql/mysqld.h index 0a3266abfb5..af519622d97 100644 --- a/sql/mysqld.h +++ b/sql/mysqld.h @@ -165,6 +165,7 @@ extern uint protocol_version, mysqld_port, dropping_tables; extern ulong delay_key_write_options; extern char *opt_logname, *opt_slow_logname, *opt_bin_logname, *opt_relay_logname; +extern char *opt_binlog_index_name; extern char *opt_backup_history_logname, *opt_backup_progress_logname, *opt_backup_settings_name; extern const char *log_output_str; diff --git a/sql/wsrep_sst.cc b/sql/wsrep_sst.cc index 281eac1ce0e..e2c55583594 100644 --- a/sql/wsrep_sst.cc +++ b/sql/wsrep_sst.cc @@ -408,6 +408,22 @@ static int generate_binlog_opt_val(char** ret) return 0; } +static int generate_binlog_index_opt_val(char** ret) +{ + DBUG_ASSERT(ret); + *ret= NULL; + if (opt_binlog_index_name) { + *ret= strcmp(opt_binlog_index_name, "0") ? + my_strdup(opt_binlog_index_name, MYF(0)) : my_strdup("", MYF(0)); + } + else + { + *ret= my_strdup("", MYF(0)); + } + if (!*ret) return -ENOMEM; + return 0; +} + static void* sst_joiner_thread (void* a) { sst_thread_arg* arg= (sst_thread_arg*) a; @@ -595,7 +611,9 @@ static ssize_t sst_prepare_other (const char* method, } const char* binlog_opt= ""; + const char* binlog_index_opt= ""; char* binlog_opt_val= NULL; + char* binlog_index_opt_val= NULL; int ret; if ((ret= generate_binlog_opt_val(&binlog_opt_val))) @@ -604,7 +622,15 @@ static ssize_t sst_prepare_other (const char* method, ret); return ret; } + + if ((ret= generate_binlog_index_opt_val(&binlog_index_opt_val))) + { + WSREP_ERROR("sst_prepare_other(): generate_binlog_index_opt_val() failed %d", + ret); + } + if (strlen(binlog_opt_val)) binlog_opt= WSREP_SST_OPT_BINLOG; + if (strlen(binlog_index_opt_val)) binlog_index_opt= WSREP_SST_OPT_BINLOG_INDEX; make_wsrep_defaults_file(); @@ -615,11 +641,14 @@ static ssize_t sst_prepare_other (const char* method, WSREP_SST_OPT_DATA " '%s' " " %s " WSREP_SST_OPT_PARENT " '%d'" - " %s '%s' ", + " %s '%s'" + " %s '%s'", method, addr_in, mysql_real_data_home, wsrep_defaults_file, - (int)getpid(), binlog_opt, binlog_opt_val); + (int)getpid(), binlog_opt, binlog_opt_val, + binlog_index_opt, binlog_index_opt_val); my_free(binlog_opt_val); + my_free(binlog_index_opt_val); if (ret < 0 || ret >= cmd_len) { diff --git a/sql/wsrep_sst.h b/sql/wsrep_sst.h index dcf0ff22651..a35ce46cae8 100644 --- a/sql/wsrep_sst.h +++ b/sql/wsrep_sst.h @@ -31,6 +31,7 @@ #define WSREP_SST_OPT_CONF_EXTRA "--defaults-extra-file" #define WSREP_SST_OPT_PARENT "--parent" #define WSREP_SST_OPT_BINLOG "--binlog" +#define WSREP_SST_OPT_BINLOG_INDEX "--binlog-index" // mysqldump-specific options #define WSREP_SST_OPT_USER "--user" From 6695fcead3fb081109f04897c7a865d6c1bee275 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jan=20Lindstr=C3=B6m?= Date: Tue, 4 Sep 2018 18:50:06 +0300 Subject: [PATCH 060/148] Galera test case cleanups. --- .../r/galera_ist_innodb_flush_logs.result | 96 ------------------ .../galera/r/galera_ist_mysqldump.result | 98 +------------------ .../suite/galera/r/galera_ist_rsync.result | 97 ------------------ .../galera/r/galera_ist_xtrabackup-v2.result | 96 ------------------ .../suite/galera/r/galera_sst_rsync2.result | 97 ------------------ mysql-test/suite/galera/suite.pm | 2 + .../suite/galera/t/galera_ist_mysqldump.test | 2 + .../galera/t/galera_ist_xtrabackup-v2.test | 5 + .../suite/galera/t/galera_sst_rsync2.cnf | 8 +- 9 files changed, 14 insertions(+), 487 deletions(-) diff --git a/mysql-test/suite/galera/r/galera_ist_innodb_flush_logs.result b/mysql-test/suite/galera/r/galera_ist_innodb_flush_logs.result index 5421b234ee1..e3bf407ddaa 100644 --- a/mysql-test/suite/galera/r/galera_ist_innodb_flush_logs.result +++ b/mysql-test/suite/galera/r/galera_ist_innodb_flush_logs.result @@ -86,99 +86,3 @@ COUNT(*) = 0 DROP TABLE t1; COMMIT; SET AUTOCOMMIT=ON; -Performing State Transfer on a server that has been killed and restarted -while a DDL was in progress on it -CREATE TABLE t1 (f1 CHAR(255)) ENGINE=InnoDB; -SET AUTOCOMMIT=OFF; -START TRANSACTION; -INSERT INTO t1 VALUES ('node1_committed_before'); -INSERT INTO t1 VALUES ('node1_committed_before'); -INSERT INTO t1 VALUES ('node1_committed_before'); -INSERT INTO t1 VALUES ('node1_committed_before'); -INSERT INTO t1 VALUES ('node1_committed_before'); -START TRANSACTION; -INSERT INTO t1 VALUES ('node2_committed_before'); -INSERT INTO t1 VALUES ('node2_committed_before'); -INSERT INTO t1 VALUES ('node2_committed_before'); -INSERT INTO t1 VALUES ('node2_committed_before'); -INSERT INTO t1 VALUES ('node2_committed_before'); -COMMIT; -SET GLOBAL debug = 'd,sync.alter_opened_table'; -ALTER TABLE t1 ADD COLUMN f2 INTEGER; -SET wsrep_sync_wait = 0; -Killing server ... -SET AUTOCOMMIT=OFF; -START TRANSACTION; -INSERT INTO t1 (f1) VALUES ('node1_committed_during'); -INSERT INTO t1 (f1) VALUES ('node1_committed_during'); -INSERT INTO t1 (f1) VALUES ('node1_committed_during'); -INSERT INTO t1 (f1) VALUES ('node1_committed_during'); -INSERT INTO t1 (f1) VALUES ('node1_committed_during'); -COMMIT; -START TRANSACTION; -INSERT INTO t1 (f1) VALUES ('node1_to_be_committed_after'); -INSERT INTO t1 (f1) VALUES ('node1_to_be_committed_after'); -INSERT INTO t1 (f1) VALUES ('node1_to_be_committed_after'); -INSERT INTO t1 (f1) VALUES ('node1_to_be_committed_after'); -INSERT INTO t1 (f1) VALUES ('node1_to_be_committed_after'); -SET AUTOCOMMIT=OFF; -START TRANSACTION; -INSERT INTO t1 (f1) VALUES ('node1_to_be_rollbacked_after'); -INSERT INTO t1 (f1) VALUES ('node1_to_be_rollbacked_after'); -INSERT INTO t1 (f1) VALUES ('node1_to_be_rollbacked_after'); -INSERT INTO t1 (f1) VALUES ('node1_to_be_rollbacked_after'); -INSERT INTO t1 (f1) VALUES ('node1_to_be_rollbacked_after'); -Performing --wsrep-recover ... -Starting server ... -Using --wsrep-start-position when starting mysqld ... -SET AUTOCOMMIT=OFF; -START TRANSACTION; -INSERT INTO t1 (f1) VALUES ('node2_committed_after'); -INSERT INTO t1 (f1) VALUES ('node2_committed_after'); -INSERT INTO t1 (f1) VALUES ('node2_committed_after'); -INSERT INTO t1 (f1) VALUES ('node2_committed_after'); -INSERT INTO t1 (f1) VALUES ('node2_committed_after'); -COMMIT; -INSERT INTO t1 (f1) VALUES ('node1_to_be_committed_after'); -INSERT INTO t1 (f1) VALUES ('node1_to_be_committed_after'); -INSERT INTO t1 (f1) VALUES ('node1_to_be_committed_after'); -INSERT INTO t1 (f1) VALUES ('node1_to_be_committed_after'); -INSERT INTO t1 (f1) VALUES ('node1_to_be_committed_after'); -COMMIT; -SET AUTOCOMMIT=OFF; -START TRANSACTION; -INSERT INTO t1 (f1) VALUES ('node1_committed_after'); -INSERT INTO t1 (f1) VALUES ('node1_committed_after'); -INSERT INTO t1 (f1) VALUES ('node1_committed_after'); -INSERT INTO t1 (f1) VALUES ('node1_committed_after'); -INSERT INTO t1 (f1) VALUES ('node1_committed_after'); -COMMIT; -INSERT INTO t1 (f1) VALUES ('node1_to_be_rollbacked_after'); -INSERT INTO t1 (f1) VALUES ('node1_to_be_rollbacked_after'); -INSERT INTO t1 (f1) VALUES ('node1_to_be_rollbacked_after'); -INSERT INTO t1 (f1) VALUES ('node1_to_be_rollbacked_after'); -INSERT INTO t1 (f1) VALUES ('node1_to_be_rollbacked_after'); -ROLLBACK; -SELECT COUNT(*) = 2 FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME = 't1'; -COUNT(*) = 2 -1 -SELECT COUNT(*) = 35 FROM t1; -COUNT(*) = 35 -1 -SELECT COUNT(*) = 0 FROM (SELECT COUNT(*) AS c, f1 FROM t1 GROUP BY f1 HAVING c NOT IN (5, 10)) AS a1; -COUNT(*) = 0 -1 -COMMIT; -SET AUTOCOMMIT=ON; -SELECT COUNT(*) = 2 FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME = 't1'; -COUNT(*) = 2 -1 -SELECT COUNT(*) = 35 FROM t1; -COUNT(*) = 35 -1 -SELECT COUNT(*) = 0 FROM (SELECT COUNT(*) AS c, f1 FROM t1 GROUP BY f1 HAVING c NOT IN (5, 10)) AS a1; -COUNT(*) = 0 -1 -DROP TABLE t1; -COMMIT; -SET AUTOCOMMIT=ON; diff --git a/mysql-test/suite/galera/r/galera_ist_mysqldump.result b/mysql-test/suite/galera/r/galera_ist_mysqldump.result index a7ce7c6c23e..e254a1b195b 100644 --- a/mysql-test/suite/galera/r/galera_ist_mysqldump.result +++ b/mysql-test/suite/galera/r/galera_ist_mysqldump.result @@ -5,6 +5,7 @@ CREATE USER 'sst'; GRANT ALL PRIVILEGES ON *.* TO 'sst'; SET GLOBAL wsrep_sst_auth = 'sst:'; SET GLOBAL wsrep_sst_method = 'mysqldump'; +call mtr.add_suppression("WSREP: wsrep_sst_method is set to 'mysqldump' yet mysqld bind_address is set to .*"); Performing State Transfer on a server that has been shut down cleanly and restarted CREATE TABLE t1 (f1 CHAR(255)) ENGINE=InnoDB; SET AUTOCOMMIT=OFF; @@ -179,103 +180,6 @@ COUNT(*) = 0 DROP TABLE t1; COMMIT; SET AUTOCOMMIT=ON; -Performing State Transfer on a server that has been killed and restarted -while a DDL was in progress on it -CREATE TABLE t1 (f1 CHAR(255)) ENGINE=InnoDB; -SET AUTOCOMMIT=OFF; -START TRANSACTION; -INSERT INTO t1 VALUES ('node1_committed_before'); -INSERT INTO t1 VALUES ('node1_committed_before'); -INSERT INTO t1 VALUES ('node1_committed_before'); -INSERT INTO t1 VALUES ('node1_committed_before'); -INSERT INTO t1 VALUES ('node1_committed_before'); -START TRANSACTION; -INSERT INTO t1 VALUES ('node2_committed_before'); -INSERT INTO t1 VALUES ('node2_committed_before'); -INSERT INTO t1 VALUES ('node2_committed_before'); -INSERT INTO t1 VALUES ('node2_committed_before'); -INSERT INTO t1 VALUES ('node2_committed_before'); -COMMIT; -SET GLOBAL debug_dbug = 'd,sync.alter_opened_table'; -ALTER TABLE t1 ADD COLUMN f2 INTEGER; -SET wsrep_sync_wait = 0; -Killing server ... -SET AUTOCOMMIT=OFF; -START TRANSACTION; -INSERT INTO t1 (f1) VALUES ('node1_committed_during'); -INSERT INTO t1 (f1) VALUES ('node1_committed_during'); -INSERT INTO t1 (f1) VALUES ('node1_committed_during'); -INSERT INTO t1 (f1) VALUES ('node1_committed_during'); -INSERT INTO t1 (f1) VALUES ('node1_committed_during'); -COMMIT; -START TRANSACTION; -INSERT INTO t1 (f1) VALUES ('node1_to_be_committed_after'); -INSERT INTO t1 (f1) VALUES ('node1_to_be_committed_after'); -INSERT INTO t1 (f1) VALUES ('node1_to_be_committed_after'); -INSERT INTO t1 (f1) VALUES ('node1_to_be_committed_after'); -INSERT INTO t1 (f1) VALUES ('node1_to_be_committed_after'); -SET AUTOCOMMIT=OFF; -START TRANSACTION; -INSERT INTO t1 (f1) VALUES ('node1_to_be_rollbacked_after'); -INSERT INTO t1 (f1) VALUES ('node1_to_be_rollbacked_after'); -INSERT INTO t1 (f1) VALUES ('node1_to_be_rollbacked_after'); -INSERT INTO t1 (f1) VALUES ('node1_to_be_rollbacked_after'); -INSERT INTO t1 (f1) VALUES ('node1_to_be_rollbacked_after'); -Performing --wsrep-recover ... -Starting server ... -Using --wsrep-start-position when starting mysqld ... -SET AUTOCOMMIT=OFF; -START TRANSACTION; -INSERT INTO t1 (f1) VALUES ('node2_committed_after'); -INSERT INTO t1 (f1) VALUES ('node2_committed_after'); -INSERT INTO t1 (f1) VALUES ('node2_committed_after'); -INSERT INTO t1 (f1) VALUES ('node2_committed_after'); -INSERT INTO t1 (f1) VALUES ('node2_committed_after'); -COMMIT; -INSERT INTO t1 (f1) VALUES ('node1_to_be_committed_after'); -INSERT INTO t1 (f1) VALUES ('node1_to_be_committed_after'); -INSERT INTO t1 (f1) VALUES ('node1_to_be_committed_after'); -INSERT INTO t1 (f1) VALUES ('node1_to_be_committed_after'); -INSERT INTO t1 (f1) VALUES ('node1_to_be_committed_after'); -COMMIT; -SET AUTOCOMMIT=OFF; -START TRANSACTION; -INSERT INTO t1 (f1) VALUES ('node1_committed_after'); -INSERT INTO t1 (f1) VALUES ('node1_committed_after'); -INSERT INTO t1 (f1) VALUES ('node1_committed_after'); -INSERT INTO t1 (f1) VALUES ('node1_committed_after'); -INSERT INTO t1 (f1) VALUES ('node1_committed_after'); -COMMIT; -INSERT INTO t1 (f1) VALUES ('node1_to_be_rollbacked_after'); -INSERT INTO t1 (f1) VALUES ('node1_to_be_rollbacked_after'); -INSERT INTO t1 (f1) VALUES ('node1_to_be_rollbacked_after'); -INSERT INTO t1 (f1) VALUES ('node1_to_be_rollbacked_after'); -INSERT INTO t1 (f1) VALUES ('node1_to_be_rollbacked_after'); -ROLLBACK; -SELECT COUNT(*) = 2 FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME = 't1'; -COUNT(*) = 2 -1 -SELECT COUNT(*) = 35 FROM t1; -COUNT(*) = 35 -1 -SELECT COUNT(*) = 0 FROM (SELECT COUNT(*) AS c, f1 FROM t1 GROUP BY f1 HAVING c NOT IN (5, 10)) AS a1; -COUNT(*) = 0 -1 -COMMIT; -SET AUTOCOMMIT=ON; -SELECT COUNT(*) = 2 FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME = 't1'; -COUNT(*) = 2 -1 -SELECT COUNT(*) = 35 FROM t1; -COUNT(*) = 35 -1 -SELECT COUNT(*) = 0 FROM (SELECT COUNT(*) AS c, f1 FROM t1 GROUP BY f1 HAVING c NOT IN (5, 10)) AS a1; -COUNT(*) = 0 -1 -DROP TABLE t1; -COMMIT; -SET AUTOCOMMIT=ON; -SET GLOBAL debug_dbug = $debug_orig; CALL mtr.add_suppression("Slave SQL: Error 'The MySQL server is running with the --skip-grant-tables option so it cannot execute this statement' on query"); DROP USER sst; CALL mtr.add_suppression("Slave SQL: Error 'The MySQL server is running with the --skip-grant-tables option so it cannot execute this statement' on query"); diff --git a/mysql-test/suite/galera/r/galera_ist_rsync.result b/mysql-test/suite/galera/r/galera_ist_rsync.result index 0b25a299b24..099d944d491 100644 --- a/mysql-test/suite/galera/r/galera_ist_rsync.result +++ b/mysql-test/suite/galera/r/galera_ist_rsync.result @@ -259,100 +259,3 @@ COUNT(*) = 0 DROP TABLE t1; COMMIT; SET AUTOCOMMIT=ON; -Performing State Transfer on a server that has been killed and restarted -while a DDL was in progress on it -CREATE TABLE t1 (f1 CHAR(255)) ENGINE=InnoDB; -SET AUTOCOMMIT=OFF; -START TRANSACTION; -INSERT INTO t1 VALUES ('node1_committed_before'); -INSERT INTO t1 VALUES ('node1_committed_before'); -INSERT INTO t1 VALUES ('node1_committed_before'); -INSERT INTO t1 VALUES ('node1_committed_before'); -INSERT INTO t1 VALUES ('node1_committed_before'); -START TRANSACTION; -INSERT INTO t1 VALUES ('node2_committed_before'); -INSERT INTO t1 VALUES ('node2_committed_before'); -INSERT INTO t1 VALUES ('node2_committed_before'); -INSERT INTO t1 VALUES ('node2_committed_before'); -INSERT INTO t1 VALUES ('node2_committed_before'); -COMMIT; -SET GLOBAL debug_dbug = 'd,sync.alter_opened_table'; -ALTER TABLE t1 ADD COLUMN f2 INTEGER; -SET wsrep_sync_wait = 0; -Killing server ... -SET AUTOCOMMIT=OFF; -START TRANSACTION; -INSERT INTO t1 (f1) VALUES ('node1_committed_during'); -INSERT INTO t1 (f1) VALUES ('node1_committed_during'); -INSERT INTO t1 (f1) VALUES ('node1_committed_during'); -INSERT INTO t1 (f1) VALUES ('node1_committed_during'); -INSERT INTO t1 (f1) VALUES ('node1_committed_during'); -COMMIT; -START TRANSACTION; -INSERT INTO t1 (f1) VALUES ('node1_to_be_committed_after'); -INSERT INTO t1 (f1) VALUES ('node1_to_be_committed_after'); -INSERT INTO t1 (f1) VALUES ('node1_to_be_committed_after'); -INSERT INTO t1 (f1) VALUES ('node1_to_be_committed_after'); -INSERT INTO t1 (f1) VALUES ('node1_to_be_committed_after'); -SET AUTOCOMMIT=OFF; -START TRANSACTION; -INSERT INTO t1 (f1) VALUES ('node1_to_be_rollbacked_after'); -INSERT INTO t1 (f1) VALUES ('node1_to_be_rollbacked_after'); -INSERT INTO t1 (f1) VALUES ('node1_to_be_rollbacked_after'); -INSERT INTO t1 (f1) VALUES ('node1_to_be_rollbacked_after'); -INSERT INTO t1 (f1) VALUES ('node1_to_be_rollbacked_after'); -Performing --wsrep-recover ... -Starting server ... -Using --wsrep-start-position when starting mysqld ... -SET AUTOCOMMIT=OFF; -START TRANSACTION; -INSERT INTO t1 (f1) VALUES ('node2_committed_after'); -INSERT INTO t1 (f1) VALUES ('node2_committed_after'); -INSERT INTO t1 (f1) VALUES ('node2_committed_after'); -INSERT INTO t1 (f1) VALUES ('node2_committed_after'); -INSERT INTO t1 (f1) VALUES ('node2_committed_after'); -COMMIT; -INSERT INTO t1 (f1) VALUES ('node1_to_be_committed_after'); -INSERT INTO t1 (f1) VALUES ('node1_to_be_committed_after'); -INSERT INTO t1 (f1) VALUES ('node1_to_be_committed_after'); -INSERT INTO t1 (f1) VALUES ('node1_to_be_committed_after'); -INSERT INTO t1 (f1) VALUES ('node1_to_be_committed_after'); -COMMIT; -SET AUTOCOMMIT=OFF; -START TRANSACTION; -INSERT INTO t1 (f1) VALUES ('node1_committed_after'); -INSERT INTO t1 (f1) VALUES ('node1_committed_after'); -INSERT INTO t1 (f1) VALUES ('node1_committed_after'); -INSERT INTO t1 (f1) VALUES ('node1_committed_after'); -INSERT INTO t1 (f1) VALUES ('node1_committed_after'); -COMMIT; -INSERT INTO t1 (f1) VALUES ('node1_to_be_rollbacked_after'); -INSERT INTO t1 (f1) VALUES ('node1_to_be_rollbacked_after'); -INSERT INTO t1 (f1) VALUES ('node1_to_be_rollbacked_after'); -INSERT INTO t1 (f1) VALUES ('node1_to_be_rollbacked_after'); -INSERT INTO t1 (f1) VALUES ('node1_to_be_rollbacked_after'); -ROLLBACK; -SELECT COUNT(*) = 2 FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME = 't1'; -COUNT(*) = 2 -1 -SELECT COUNT(*) = 35 FROM t1; -COUNT(*) = 35 -1 -SELECT COUNT(*) = 0 FROM (SELECT COUNT(*) AS c, f1 FROM t1 GROUP BY f1 HAVING c NOT IN (5, 10)) AS a1; -COUNT(*) = 0 -1 -COMMIT; -SET AUTOCOMMIT=ON; -SELECT COUNT(*) = 2 FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME = 't1'; -COUNT(*) = 2 -1 -SELECT COUNT(*) = 35 FROM t1; -COUNT(*) = 35 -1 -SELECT COUNT(*) = 0 FROM (SELECT COUNT(*) AS c, f1 FROM t1 GROUP BY f1 HAVING c NOT IN (5, 10)) AS a1; -COUNT(*) = 0 -1 -DROP TABLE t1; -COMMIT; -SET AUTOCOMMIT=ON; -SET GLOBAL debug_dbug = $debug_orig; diff --git a/mysql-test/suite/galera/r/galera_ist_xtrabackup-v2.result b/mysql-test/suite/galera/r/galera_ist_xtrabackup-v2.result index 175e7443a4d..099d944d491 100644 --- a/mysql-test/suite/galera/r/galera_ist_xtrabackup-v2.result +++ b/mysql-test/suite/galera/r/galera_ist_xtrabackup-v2.result @@ -259,99 +259,3 @@ COUNT(*) = 0 DROP TABLE t1; COMMIT; SET AUTOCOMMIT=ON; -Performing State Transfer on a server that has been killed and restarted -while a DDL was in progress on it -CREATE TABLE t1 (f1 CHAR(255)) ENGINE=InnoDB; -SET AUTOCOMMIT=OFF; -START TRANSACTION; -INSERT INTO t1 VALUES ('node1_committed_before'); -INSERT INTO t1 VALUES ('node1_committed_before'); -INSERT INTO t1 VALUES ('node1_committed_before'); -INSERT INTO t1 VALUES ('node1_committed_before'); -INSERT INTO t1 VALUES ('node1_committed_before'); -START TRANSACTION; -INSERT INTO t1 VALUES ('node2_committed_before'); -INSERT INTO t1 VALUES ('node2_committed_before'); -INSERT INTO t1 VALUES ('node2_committed_before'); -INSERT INTO t1 VALUES ('node2_committed_before'); -INSERT INTO t1 VALUES ('node2_committed_before'); -COMMIT; -SET GLOBAL debug = 'd,sync.alter_opened_table'; -ALTER TABLE t1 ADD COLUMN f2 INTEGER; -SET wsrep_sync_wait = 0; -Killing server ... -SET AUTOCOMMIT=OFF; -START TRANSACTION; -INSERT INTO t1 (f1) VALUES ('node1_committed_during'); -INSERT INTO t1 (f1) VALUES ('node1_committed_during'); -INSERT INTO t1 (f1) VALUES ('node1_committed_during'); -INSERT INTO t1 (f1) VALUES ('node1_committed_during'); -INSERT INTO t1 (f1) VALUES ('node1_committed_during'); -COMMIT; -START TRANSACTION; -INSERT INTO t1 (f1) VALUES ('node1_to_be_committed_after'); -INSERT INTO t1 (f1) VALUES ('node1_to_be_committed_after'); -INSERT INTO t1 (f1) VALUES ('node1_to_be_committed_after'); -INSERT INTO t1 (f1) VALUES ('node1_to_be_committed_after'); -INSERT INTO t1 (f1) VALUES ('node1_to_be_committed_after'); -SET AUTOCOMMIT=OFF; -START TRANSACTION; -INSERT INTO t1 (f1) VALUES ('node1_to_be_rollbacked_after'); -INSERT INTO t1 (f1) VALUES ('node1_to_be_rollbacked_after'); -INSERT INTO t1 (f1) VALUES ('node1_to_be_rollbacked_after'); -INSERT INTO t1 (f1) VALUES ('node1_to_be_rollbacked_after'); -INSERT INTO t1 (f1) VALUES ('node1_to_be_rollbacked_after'); -Performing --wsrep-recover ... -Starting server ... -Using --wsrep-start-position when starting mysqld ... -SET AUTOCOMMIT=OFF; -START TRANSACTION; -INSERT INTO t1 (f1) VALUES ('node2_committed_after'); -INSERT INTO t1 (f1) VALUES ('node2_committed_after'); -INSERT INTO t1 (f1) VALUES ('node2_committed_after'); -INSERT INTO t1 (f1) VALUES ('node2_committed_after'); -INSERT INTO t1 (f1) VALUES ('node2_committed_after'); -COMMIT; -INSERT INTO t1 (f1) VALUES ('node1_to_be_committed_after'); -INSERT INTO t1 (f1) VALUES ('node1_to_be_committed_after'); -INSERT INTO t1 (f1) VALUES ('node1_to_be_committed_after'); -INSERT INTO t1 (f1) VALUES ('node1_to_be_committed_after'); -INSERT INTO t1 (f1) VALUES ('node1_to_be_committed_after'); -COMMIT; -SET AUTOCOMMIT=OFF; -START TRANSACTION; -INSERT INTO t1 (f1) VALUES ('node1_committed_after'); -INSERT INTO t1 (f1) VALUES ('node1_committed_after'); -INSERT INTO t1 (f1) VALUES ('node1_committed_after'); -INSERT INTO t1 (f1) VALUES ('node1_committed_after'); -INSERT INTO t1 (f1) VALUES ('node1_committed_after'); -COMMIT; -INSERT INTO t1 (f1) VALUES ('node1_to_be_rollbacked_after'); -INSERT INTO t1 (f1) VALUES ('node1_to_be_rollbacked_after'); -INSERT INTO t1 (f1) VALUES ('node1_to_be_rollbacked_after'); -INSERT INTO t1 (f1) VALUES ('node1_to_be_rollbacked_after'); -INSERT INTO t1 (f1) VALUES ('node1_to_be_rollbacked_after'); -ROLLBACK; -SELECT COUNT(*) = 2 FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME = 't1'; -COUNT(*) = 2 -1 -SELECT COUNT(*) = 35 FROM t1; -COUNT(*) = 35 -1 -SELECT COUNT(*) = 0 FROM (SELECT COUNT(*) AS c, f1 FROM t1 GROUP BY f1 HAVING c NOT IN (5, 10)) AS a1; -COUNT(*) = 0 -1 -COMMIT; -SET AUTOCOMMIT=ON; -SELECT COUNT(*) = 2 FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME = 't1'; -COUNT(*) = 2 -1 -SELECT COUNT(*) = 35 FROM t1; -COUNT(*) = 35 -1 -SELECT COUNT(*) = 0 FROM (SELECT COUNT(*) AS c, f1 FROM t1 GROUP BY f1 HAVING c NOT IN (5, 10)) AS a1; -COUNT(*) = 0 -1 -DROP TABLE t1; -COMMIT; -SET AUTOCOMMIT=ON; diff --git a/mysql-test/suite/galera/r/galera_sst_rsync2.result b/mysql-test/suite/galera/r/galera_sst_rsync2.result index df2d9190a4b..cec0f21ee22 100644 --- a/mysql-test/suite/galera/r/galera_sst_rsync2.result +++ b/mysql-test/suite/galera/r/galera_sst_rsync2.result @@ -260,100 +260,3 @@ COUNT(*) = 0 DROP TABLE t1; COMMIT; SET AUTOCOMMIT=ON; -Performing State Transfer on a server that has been killed and restarted -while a DDL was in progress on it -CREATE TABLE t1 (f1 CHAR(255)) ENGINE=InnoDB; -SET AUTOCOMMIT=OFF; -START TRANSACTION; -INSERT INTO t1 VALUES ('node1_committed_before'); -INSERT INTO t1 VALUES ('node1_committed_before'); -INSERT INTO t1 VALUES ('node1_committed_before'); -INSERT INTO t1 VALUES ('node1_committed_before'); -INSERT INTO t1 VALUES ('node1_committed_before'); -START TRANSACTION; -INSERT INTO t1 VALUES ('node2_committed_before'); -INSERT INTO t1 VALUES ('node2_committed_before'); -INSERT INTO t1 VALUES ('node2_committed_before'); -INSERT INTO t1 VALUES ('node2_committed_before'); -INSERT INTO t1 VALUES ('node2_committed_before'); -COMMIT; -SET GLOBAL debug_dbug = 'd,sync.alter_opened_table'; -ALTER TABLE t1 ADD COLUMN f2 INTEGER; -SET wsrep_sync_wait = 0; -Killing server ... -SET AUTOCOMMIT=OFF; -START TRANSACTION; -INSERT INTO t1 (f1) VALUES ('node1_committed_during'); -INSERT INTO t1 (f1) VALUES ('node1_committed_during'); -INSERT INTO t1 (f1) VALUES ('node1_committed_during'); -INSERT INTO t1 (f1) VALUES ('node1_committed_during'); -INSERT INTO t1 (f1) VALUES ('node1_committed_during'); -COMMIT; -START TRANSACTION; -INSERT INTO t1 (f1) VALUES ('node1_to_be_committed_after'); -INSERT INTO t1 (f1) VALUES ('node1_to_be_committed_after'); -INSERT INTO t1 (f1) VALUES ('node1_to_be_committed_after'); -INSERT INTO t1 (f1) VALUES ('node1_to_be_committed_after'); -INSERT INTO t1 (f1) VALUES ('node1_to_be_committed_after'); -SET AUTOCOMMIT=OFF; -START TRANSACTION; -INSERT INTO t1 (f1) VALUES ('node1_to_be_rollbacked_after'); -INSERT INTO t1 (f1) VALUES ('node1_to_be_rollbacked_after'); -INSERT INTO t1 (f1) VALUES ('node1_to_be_rollbacked_after'); -INSERT INTO t1 (f1) VALUES ('node1_to_be_rollbacked_after'); -INSERT INTO t1 (f1) VALUES ('node1_to_be_rollbacked_after'); -Performing --wsrep-recover ... -Starting server ... -Using --wsrep-start-position when starting mysqld ... -SET AUTOCOMMIT=OFF; -START TRANSACTION; -INSERT INTO t1 (f1) VALUES ('node2_committed_after'); -INSERT INTO t1 (f1) VALUES ('node2_committed_after'); -INSERT INTO t1 (f1) VALUES ('node2_committed_after'); -INSERT INTO t1 (f1) VALUES ('node2_committed_after'); -INSERT INTO t1 (f1) VALUES ('node2_committed_after'); -COMMIT; -INSERT INTO t1 (f1) VALUES ('node1_to_be_committed_after'); -INSERT INTO t1 (f1) VALUES ('node1_to_be_committed_after'); -INSERT INTO t1 (f1) VALUES ('node1_to_be_committed_after'); -INSERT INTO t1 (f1) VALUES ('node1_to_be_committed_after'); -INSERT INTO t1 (f1) VALUES ('node1_to_be_committed_after'); -COMMIT; -SET AUTOCOMMIT=OFF; -START TRANSACTION; -INSERT INTO t1 (f1) VALUES ('node1_committed_after'); -INSERT INTO t1 (f1) VALUES ('node1_committed_after'); -INSERT INTO t1 (f1) VALUES ('node1_committed_after'); -INSERT INTO t1 (f1) VALUES ('node1_committed_after'); -INSERT INTO t1 (f1) VALUES ('node1_committed_after'); -COMMIT; -INSERT INTO t1 (f1) VALUES ('node1_to_be_rollbacked_after'); -INSERT INTO t1 (f1) VALUES ('node1_to_be_rollbacked_after'); -INSERT INTO t1 (f1) VALUES ('node1_to_be_rollbacked_after'); -INSERT INTO t1 (f1) VALUES ('node1_to_be_rollbacked_after'); -INSERT INTO t1 (f1) VALUES ('node1_to_be_rollbacked_after'); -ROLLBACK; -SELECT COUNT(*) = 2 FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME = 't1'; -COUNT(*) = 2 -1 -SELECT COUNT(*) = 35 FROM t1; -COUNT(*) = 35 -1 -SELECT COUNT(*) = 0 FROM (SELECT COUNT(*) AS c, f1 FROM t1 GROUP BY f1 HAVING c NOT IN (5, 10)) AS a1; -COUNT(*) = 0 -1 -COMMIT; -SET AUTOCOMMIT=ON; -SELECT COUNT(*) = 2 FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME = 't1'; -COUNT(*) = 2 -1 -SELECT COUNT(*) = 35 FROM t1; -COUNT(*) = 35 -1 -SELECT COUNT(*) = 0 FROM (SELECT COUNT(*) AS c, f1 FROM t1 GROUP BY f1 HAVING c NOT IN (5, 10)) AS a1; -COUNT(*) = 0 -1 -DROP TABLE t1; -COMMIT; -SET AUTOCOMMIT=ON; -SET GLOBAL debug_dbug = $debug_orig; diff --git a/mysql-test/suite/galera/suite.pm b/mysql-test/suite/galera/suite.pm index 5cdb751a434..57615e5e94a 100644 --- a/mysql-test/suite/galera/suite.pm +++ b/mysql-test/suite/galera/suite.pm @@ -79,6 +79,8 @@ push @::global_suppressions, qr|WSREP: .*core_handle_uuid_msg.*|, qr(WSREP: --wsrep-causal-reads=ON takes precedence over --wsrep-sync-wait=0. WSREP_SYNC_WAIT_BEFORE_READ is on), qr|WSREP: JOIN message from member .* in non-primary configuration. Ignored.|, + qr(WSREP: Failed to remove page file .*), + qr(WSREP: wsrep_sst_method is set to 'mysqldump' yet mysqld bind_address is set to .*), ); $ENV{PATH}="$epath:$ENV{PATH}"; diff --git a/mysql-test/suite/galera/t/galera_ist_mysqldump.test b/mysql-test/suite/galera/t/galera_ist_mysqldump.test index f60d5549eda..7bfca0334fa 100644 --- a/mysql-test/suite/galera/t/galera_ist_mysqldump.test +++ b/mysql-test/suite/galera/t/galera_ist_mysqldump.test @@ -4,6 +4,8 @@ --source suite/galera/include/galera_sst_set_mysqldump.inc +call mtr.add_suppression("WSREP: wsrep_sst_method is set to 'mysqldump' yet mysqld bind_address is set to .*"); + --let $node_1=node_1 --let $node_2=node_2 --source include/auto_increment_offset_save.inc diff --git a/mysql-test/suite/galera/t/galera_ist_xtrabackup-v2.test b/mysql-test/suite/galera/t/galera_ist_xtrabackup-v2.test index c44b0642342..34961765008 100644 --- a/mysql-test/suite/galera/t/galera_ist_xtrabackup-v2.test +++ b/mysql-test/suite/galera/t/galera_ist_xtrabackup-v2.test @@ -3,8 +3,13 @@ --source include/have_innodb.inc --source include/have_xtrabackup.inc +--let $node_1=node_1 +--let $node_2=node_2 +--source include/auto_increment_offset_save.inc + --source suite/galera/include/galera_st_disconnect_slave.inc --source suite/galera/include/galera_st_shutdown_slave.inc --source suite/galera/include/galera_st_kill_slave.inc --source suite/galera/include/galera_st_kill_slave_ddl.inc +--source include/auto_increment_offset_restore.inc diff --git a/mysql-test/suite/galera/t/galera_sst_rsync2.cnf b/mysql-test/suite/galera/t/galera_sst_rsync2.cnf index b5bf70a0dfa..34e67c66403 100644 --- a/mysql-test/suite/galera/t/galera_sst_rsync2.cnf +++ b/mysql-test/suite/galera/t/galera_sst_rsync2.cnf @@ -5,11 +5,11 @@ wsrep_sst_method=rsync [mysqld.1] wsrep_provider_options='base_port=@mysqld.1.#galera_port;gcache.size=1;pc.ignore_sb=true' -log_bin=@ENV.MYSQL_TEST_DIR/var/server1_binlog -log_bin_index=@ENV.MYSQL_TEST_DIR/var/tmp/server1_binlog_index.index +log_bin=@ENV.MYSQLTEST_VARDIR/server1_binlog +log_bin_index=@ENV.MYSQLTEST_VARDIR/tmp/server1_binlog_index.index [mysqld.2] wsrep_provider_options='base_port=@mysqld.2.#galera_port;gcache.size=1;pc.ignore_sb=true' -log_bin=@ENV.MYSQL_TEST_DIR/var/server2_binlog -log_bin_index=@ENV.MYSQL_TEST_DIR/var/tmp/server2_binlog_index.index +log_bin=@ENV.MYSQLTEST_VARDIR/server2_binlog +log_bin_index=@ENV.MYSQLTEST_VARDIR/tmp/server2_binlog_index.index From 4cf75706b3893398de515e4ab7b2a95e25cd1a9f Mon Sep 17 00:00:00 2001 From: Sergey Vojtovich Date: Wed, 5 Sep 2018 17:14:20 +0400 Subject: [PATCH 061/148] MDEV-16757 Memory leak after adding manually min/max statistical data for blob column Moved delete_stat_values_for_table_share() call to proper place. --- sql/table.cc | 1 + sql/table_cache.cc | 2 -- 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/sql/table.cc b/sql/table.cc index 86eac73a416..98bf6d8b4dd 100644 --- a/sql/table.cc +++ b/sql/table.cc @@ -410,6 +410,7 @@ void TABLE_SHARE::destroy() ha_share= NULL; // Safety } + delete_stat_values_for_table_share(this); free_root(&stats_cb.mem_root, MYF(0)); stats_cb.stats_can_be_read= FALSE; stats_cb.stats_is_read= FALSE; diff --git a/sql/table_cache.cc b/sql/table_cache.cc index a31068c9bc3..bdb7914c32b 100644 --- a/sql/table_cache.cc +++ b/sql/table_cache.cc @@ -52,7 +52,6 @@ #include "hash.h" #include "table.h" #include "sql_base.h" -#include "sql_statistics.h" /** Configuration. */ ulong tdc_size; /**< Table definition cache threshold for LRU eviction. */ @@ -870,7 +869,6 @@ void tdc_release_share(TABLE_SHARE *share) mysql_mutex_lock(&share->tdc.LOCK_table_share); if (share->tdc.flushed) { - delete_stat_values_for_table_share(share); mysql_mutex_unlock(&share->tdc.LOCK_table_share); mysql_mutex_unlock(&LOCK_unused_shares); tdc_delete_share_from_hash(share); From 0ccba62db385139caae514f70b31187bdce0de88 Mon Sep 17 00:00:00 2001 From: Sergei Golubchik Date: Wed, 5 Sep 2018 19:47:37 +0200 Subject: [PATCH 062/148] MDEV-16465 Invalid (old?) table or database name or hang in ha_innobase::delete_table and log semaphore wait upon concurrent DDL with foreign keys lowercase db and table names before prelocking. Post-fix for 9180e8666b8 This fixes failures on main.lowercase_table4 on Windows --- sql/sql_select.cc | 2 +- sql/sql_table.cc | 11 +++++++++++ 2 files changed, 12 insertions(+), 1 deletion(-) diff --git a/sql/sql_select.cc b/sql/sql_select.cc index 0461b9725c5..b49a95e61a8 100644 --- a/sql/sql_select.cc +++ b/sql/sql_select.cc @@ -24577,7 +24577,7 @@ void TABLE_LIST::print(THD *thd, table_map eliminated_tables, String *str, const char *t_alias= alias; str->append(' '); - if (lower_case_table_names== 1) + if (lower_case_table_names == 1) { if (alias && alias[0]) { diff --git a/sql/sql_table.cc b/sql/sql_table.cc index 640c6b50fbb..5d20ad3967c 100644 --- a/sql/sql_table.cc +++ b/sql/sql_table.cc @@ -9095,6 +9095,17 @@ bool mysql_alter_table(THD *thd,char *new_db, char *new_name, new_table->file->get_foreign_key_list(thd, &fk_list); while ((fk= fk_list_it++)) { + if (lower_case_table_names) + { + char buf[NAME_LEN]; + uint len; + strmake_buf(buf, fk->referenced_db->str); + len = my_casedn_str(files_charset_info, buf); + thd->make_lex_string(fk->referenced_db, buf, len); + strmake_buf(buf, fk->referenced_table->str); + len = my_casedn_str(files_charset_info, buf); + thd->make_lex_string(fk->referenced_table, buf, len); + } if (table_already_fk_prelocked(table_list, fk->referenced_db, fk->referenced_table, TL_READ_NO_INSERT)) continue; From fba683c0697af8fb1c79af4d4e2e739e01e8147d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jan=20Lindstr=C3=B6m?= Date: Mon, 27 Aug 2018 12:03:02 +0300 Subject: [PATCH 063/148] MDEV-17062: Test failure on galera.MW-336 MDEV-17058: Test failure on wsrep.variables MDEV-17060: Test failure on galera.galera_var_slave_threads Fix incorrect calculation of increased applier (slave) threads. Note that increase change takes effect "immediately" but we should use proper wait condition to wait it. Reducing the number of slave threads is not immediate as thread will only exit after a replication event. --- mysql-test/suite/galera/r/MW-336.result | 42 +++---- .../suite/galera/r/galera_defaults.result | 68 ----------- .../galera/r/galera_var_slave_threads.result | 64 ---------- mysql-test/suite/galera/t/MW-336.test | 114 +++++++++++++----- .../suite/galera/t/galera_defaults.test | 13 +- .../galera/t/galera_var_slave_threads.test | 13 ++ .../wsrep/include/check_galera_version.inc | 20 +-- mysql-test/suite/wsrep/r/variables.result | 4 + mysql-test/suite/wsrep/t/variables.test | 12 +- sql/wsrep_var.cc | 4 +- 10 files changed, 148 insertions(+), 206 deletions(-) diff --git a/mysql-test/suite/galera/r/MW-336.result b/mysql-test/suite/galera/r/MW-336.result index 34874198c6f..81e8eae0eb3 100644 --- a/mysql-test/suite/galera/r/MW-336.result +++ b/mysql-test/suite/galera/r/MW-336.result @@ -1,33 +1,31 @@ CREATE TABLE t1 (f1 INTEGER) Engine=InnoDB; +INSERT INTO t1 values(0); SET GLOBAL wsrep_slave_threads = 10; SET GLOBAL wsrep_slave_threads = 1; -INSERT INTO t1 VALUES (1); +# Wait 10 slave threads to start 1 +# Generate 12 replication events +SELECT COUNT(*) FROM t1; +COUNT(*) +13 +# Wait 9 slave threads to exit 1 SET GLOBAL wsrep_slave_threads = 10; +# Wait 10 slave threads to start 2 SET GLOBAL wsrep_slave_threads = 20; +# Wait 20 slave threads to start 3 SET GLOBAL wsrep_slave_threads = 1; -INSERT INTO t1 VALUES (1); -INSERT INTO t1 VALUES (2); -INSERT INTO t1 VALUES (3); -INSERT INTO t1 VALUES (4); -INSERT INTO t1 VALUES (5); -INSERT INTO t1 VALUES (6); -INSERT INTO t1 VALUES (7); -INSERT INTO t1 VALUES (8); -INSERT INTO t1 VALUES (9); +# Generate 40 replication events +SELECT COUNT(*) FROM t1; +COUNT(*) +53 +# Wait 10 slave threads to exit 3 SET GLOBAL wsrep_slave_threads = 10; SET GLOBAL wsrep_slave_threads = 0; Warnings: Warning 1292 Truncated incorrect wsrep_slave_threads value: '0' -INSERT INTO t1 VALUES (10); -INSERT INTO t1 VALUES (11); -INSERT INTO t1 VALUES (12); -INSERT INTO t1 VALUES (13); -INSERT INTO t1 VALUES (14); -INSERT INTO t1 VALUES (15); -INSERT INTO t1 VALUES (16); -INSERT INTO t1 VALUES (17); -INSERT INTO t1 VALUES (18); -INSERT INTO t1 VALUES (19); -INSERT INTO t1 VALUES (20); -SET GLOBAL wsrep_slave_threads = 1; +# Wait 10 slave threads to start 3 +# Generate 12 replication events +SELECT COUNT(*) FROM t1; +COUNT(*) +65 +# Wait 10 slave threads to exit 4 DROP TABLE t1; diff --git a/mysql-test/suite/galera/r/galera_defaults.result b/mysql-test/suite/galera/r/galera_defaults.result index 5c5fdabf432..8083784bb01 100644 --- a/mysql-test/suite/galera/r/galera_defaults.result +++ b/mysql-test/suite/galera/r/galera_defaults.result @@ -53,71 +53,3 @@ WSREP_SST_DONOR_REJECTS_QUERIES OFF WSREP_SST_METHOD rsync WSREP_SYNC_WAIT 15 ; ; ; cert.log_conflicts = no; debug = no; evs.auto_evict = 0; evs.causal_keepalive_period = PT1S; evs.debug_log_mask = 0x1; evs.delay_margin = PT1S; evs.delayed_keep_period = PT30S; evs.inactive_check_period = PT0.5S; evs.inactive_timeout = PT30S; evs.info_log_mask = 0; evs.install_timeout = PT15S; evs.join_retrans_period = PT1S; evs.keepalive_period = PT1S; evs.max_install_timeouts = 3; evs.send_window = 4; evs.stats_report_period = PT1M; evs.suspect_timeout = PT10S; evs.use_aggregate = true; evs.user_send_window = 2; evs.version = 0; evs.view_forget_timeout = P1D; ; gcache.keep_pages_size = 0; gcache.mem_size = 0; ; gcache.page_size = 128M; gcache.recover = no; gcache.size = 10M; gcomm.thread_prio = ; gcs.fc_debug = 0; gcs.fc_factor = 1.0; gcs.fc_limit = 16; gcs.fc_master_slave = no; gcs.max_packet_size = 64500; gcs.max_throttle = 0.25; ; gcs.recv_q_soft_limit = 0.25; gcs.sync_donor = no; ; gmcast.mcast_addr = ; gmcast.mcast_ttl = 1; gmcast.peer_timeout = PT3S; gmcast.segment = 0; gmcast.time_wait = PT5S; gmcast.version = 0; ; pc.announce_timeout = PT3S; pc.checksum = false; pc.ignore_quorum = false; pc.ignore_sb = false; pc.linger = PT20S; pc.npvo = false; pc.recovery = true; pc.version = 0; pc.wait_prim = true; pc.wait_prim_timeout = PT30S; pc.weight = 1; protonet.backend = asio; protonet.version = 0; repl.causal_read_timeout = PT90S; repl.commit_order = 3; repl.key_format = FLAT8; repl.max_ws_size = 2147483647; ;socket.checksum = 2; socket.recv_buf_size = 212992; -SELECT COUNT(*) FROM INFORMATION_SCHEMA.GLOBAL_STATUS -WHERE VARIABLE_NAME LIKE 'wsrep_%' -AND VARIABLE_NAME != 'wsrep_debug_sync_waiters'; -COUNT(*) -58 -SELECT VARIABLE_NAME FROM INFORMATION_SCHEMA.GLOBAL_STATUS -WHERE VARIABLE_NAME LIKE 'wsrep_%' -AND VARIABLE_NAME != 'wsrep_debug_sync_waiters' -ORDER BY VARIABLE_NAME; -VARIABLE_NAME -WSREP_APPLY_OOOE -WSREP_APPLY_OOOL -WSREP_APPLY_WINDOW -WSREP_CAUSAL_READS -WSREP_CERT_DEPS_DISTANCE -WSREP_CERT_INDEX_SIZE -WSREP_CERT_INTERVAL -WSREP_CLUSTER_CONF_ID -WSREP_CLUSTER_SIZE -WSREP_CLUSTER_STATE_UUID -WSREP_CLUSTER_STATUS -WSREP_COMMIT_OOOE -WSREP_COMMIT_OOOL -WSREP_COMMIT_WINDOW -WSREP_CONNECTED -WSREP_DESYNC_COUNT -WSREP_EVS_DELAYED -WSREP_EVS_EVICT_LIST -WSREP_EVS_REPL_LATENCY -WSREP_EVS_STATE -WSREP_FLOW_CONTROL_PAUSED -WSREP_FLOW_CONTROL_PAUSED_NS -WSREP_FLOW_CONTROL_RECV -WSREP_FLOW_CONTROL_SENT -WSREP_GCOMM_UUID -WSREP_INCOMING_ADDRESSES -WSREP_LAST_COMMITTED -WSREP_LOCAL_BF_ABORTS -WSREP_LOCAL_CACHED_DOWNTO -WSREP_LOCAL_CERT_FAILURES -WSREP_LOCAL_COMMITS -WSREP_LOCAL_INDEX -WSREP_LOCAL_RECV_QUEUE -WSREP_LOCAL_RECV_QUEUE_AVG -WSREP_LOCAL_RECV_QUEUE_MAX -WSREP_LOCAL_RECV_QUEUE_MIN -WSREP_LOCAL_REPLAYS -WSREP_LOCAL_SEND_QUEUE -WSREP_LOCAL_SEND_QUEUE_AVG -WSREP_LOCAL_SEND_QUEUE_MAX -WSREP_LOCAL_SEND_QUEUE_MIN -WSREP_LOCAL_STATE -WSREP_LOCAL_STATE_COMMENT -WSREP_LOCAL_STATE_UUID -WSREP_PROTOCOL_VERSION -WSREP_PROVIDER_NAME -WSREP_PROVIDER_VENDOR -WSREP_PROVIDER_VERSION -WSREP_READY -WSREP_RECEIVED -WSREP_RECEIVED_BYTES -WSREP_REPLICATED -WSREP_REPLICATED_BYTES -WSREP_REPL_DATA_BYTES -WSREP_REPL_KEYS -WSREP_REPL_KEYS_BYTES -WSREP_REPL_OTHER_BYTES -WSREP_THREAD_COUNT diff --git a/mysql-test/suite/galera/r/galera_var_slave_threads.result b/mysql-test/suite/galera/r/galera_var_slave_threads.result index 70f3b8ee257..c7c6af2098f 100644 --- a/mysql-test/suite/galera/r/galera_var_slave_threads.result +++ b/mysql-test/suite/galera/r/galera_var_slave_threads.result @@ -26,70 +26,6 @@ SELECT COUNT(*) = 1 FROM INFORMATION_SCHEMA.PROCESSLIST WHERE USER = 'system use COUNT(*) = 1 1 SET GLOBAL wsrep_slave_threads = 1; -INSERT INTO t2 VALUES (DEFAULT); -INSERT INTO t2 VALUES (DEFAULT); -INSERT INTO t2 VALUES (DEFAULT); -INSERT INTO t2 VALUES (DEFAULT); -INSERT INTO t2 VALUES (DEFAULT); -INSERT INTO t2 VALUES (DEFAULT); -INSERT INTO t2 VALUES (DEFAULT); -INSERT INTO t2 VALUES (DEFAULT); -INSERT INTO t2 VALUES (DEFAULT); -INSERT INTO t2 VALUES (DEFAULT); -INSERT INTO t2 VALUES (DEFAULT); -INSERT INTO t2 VALUES (DEFAULT); -INSERT INTO t2 VALUES (DEFAULT); -INSERT INTO t2 VALUES (DEFAULT); -INSERT INTO t2 VALUES (DEFAULT); -INSERT INTO t2 VALUES (DEFAULT); -INSERT INTO t2 VALUES (DEFAULT); -INSERT INTO t2 VALUES (DEFAULT); -INSERT INTO t2 VALUES (DEFAULT); -INSERT INTO t2 VALUES (DEFAULT); -INSERT INTO t2 VALUES (DEFAULT); -INSERT INTO t2 VALUES (DEFAULT); -INSERT INTO t2 VALUES (DEFAULT); -INSERT INTO t2 VALUES (DEFAULT); -INSERT INTO t2 VALUES (DEFAULT); -INSERT INTO t2 VALUES (DEFAULT); -INSERT INTO t2 VALUES (DEFAULT); -INSERT INTO t2 VALUES (DEFAULT); -INSERT INTO t2 VALUES (DEFAULT); -INSERT INTO t2 VALUES (DEFAULT); -INSERT INTO t2 VALUES (DEFAULT); -INSERT INTO t2 VALUES (DEFAULT); -INSERT INTO t2 VALUES (DEFAULT); -INSERT INTO t2 VALUES (DEFAULT); -INSERT INTO t2 VALUES (DEFAULT); -INSERT INTO t2 VALUES (DEFAULT); -INSERT INTO t2 VALUES (DEFAULT); -INSERT INTO t2 VALUES (DEFAULT); -INSERT INTO t2 VALUES (DEFAULT); -INSERT INTO t2 VALUES (DEFAULT); -INSERT INTO t2 VALUES (DEFAULT); -INSERT INTO t2 VALUES (DEFAULT); -INSERT INTO t2 VALUES (DEFAULT); -INSERT INTO t2 VALUES (DEFAULT); -INSERT INTO t2 VALUES (DEFAULT); -INSERT INTO t2 VALUES (DEFAULT); -INSERT INTO t2 VALUES (DEFAULT); -INSERT INTO t2 VALUES (DEFAULT); -INSERT INTO t2 VALUES (DEFAULT); -INSERT INTO t2 VALUES (DEFAULT); -INSERT INTO t2 VALUES (DEFAULT); -INSERT INTO t2 VALUES (DEFAULT); -INSERT INTO t2 VALUES (DEFAULT); -INSERT INTO t2 VALUES (DEFAULT); -INSERT INTO t2 VALUES (DEFAULT); -INSERT INTO t2 VALUES (DEFAULT); -INSERT INTO t2 VALUES (DEFAULT); -INSERT INTO t2 VALUES (DEFAULT); -INSERT INTO t2 VALUES (DEFAULT); -INSERT INTO t2 VALUES (DEFAULT); -INSERT INTO t2 VALUES (DEFAULT); -INSERT INTO t2 VALUES (DEFAULT); -INSERT INTO t2 VALUES (DEFAULT); -INSERT INTO t2 VALUES (DEFAULT); SELECT COUNT(*) = 64 FROM t2; COUNT(*) = 64 1 diff --git a/mysql-test/suite/galera/t/MW-336.test b/mysql-test/suite/galera/t/MW-336.test index 9572489ebe9..749ffe671be 100644 --- a/mysql-test/suite/galera/t/MW-336.test +++ b/mysql-test/suite/galera/t/MW-336.test @@ -6,62 +6,118 @@ --source include/have_innodb.inc CREATE TABLE t1 (f1 INTEGER) Engine=InnoDB; +INSERT INTO t1 values(0); --connection node_1 + SET GLOBAL wsrep_slave_threads = 10; SET GLOBAL wsrep_slave_threads = 1; ---let $wait_condition = SELECT COUNT(*) = 11 FROM INFORMATION_SCHEMA.PROCESSLIST WHERE USER = 'system user'; + +--echo # Wait 10 slave threads to start 1 +--let $wait_timeout=600 +--let $wait_condition = SELECT COUNT(*) = 11 FROM INFORMATION_SCHEMA.PROCESSLIST WHERE USER = 'system user' AND (STATE IS NULL OR STATE NOT LIKE 'InnoDB%'); --source include/wait_condition.inc --connection node_2 -INSERT INTO t1 VALUES (1); +# Wait until inserts are replicated +--let $wait_condition = SELECT COUNT(*) = 1 FROM t1; +--source include/wait_condition.inc +--echo # Generate 12 replication events +--disable_query_log +--disable_result_log +--let $count = 12 +while ($count) +{ + INSERT INTO t1 VALUES (1); + --dec $count +} +--enable_result_log +--enable_query_log --connection node_1 +# Wait until inserts are replicated +--let $wait_condition = SELECT COUNT(*) = 13 FROM t1; +--source include/wait_condition.inc + +SELECT COUNT(*) FROM t1; + +--echo # Wait 9 slave threads to exit 1 +# Wait until appliers exit +--let $wait_condition = SELECT COUNT(*) = 2 FROM INFORMATION_SCHEMA.PROCESSLIST WHERE USER = 'system user' AND (STATE IS NULL OR STATE NOT LIKE 'InnoDB%'); +--source include/wait_condition.inc + SET GLOBAL wsrep_slave_threads = 10; + +--echo # Wait 10 slave threads to start 2 --let $wait_condition = SELECT COUNT(*) = 11 FROM INFORMATION_SCHEMA.PROCESSLIST WHERE USER = 'system user'; --source include/wait_condition.inc SET GLOBAL wsrep_slave_threads = 20; + +--echo # Wait 20 slave threads to start 3 --let $wait_condition = SELECT COUNT(*) = 21 FROM INFORMATION_SCHEMA.PROCESSLIST WHERE USER = 'system user'; --source include/wait_condition.inc SET GLOBAL wsrep_slave_threads = 1; --connection node_2 -INSERT INTO t1 VALUES (1); -INSERT INTO t1 VALUES (2); -INSERT INTO t1 VALUES (3); -INSERT INTO t1 VALUES (4); -INSERT INTO t1 VALUES (5); -INSERT INTO t1 VALUES (6); -INSERT INTO t1 VALUES (7); -INSERT INTO t1 VALUES (8); -INSERT INTO t1 VALUES (9); - +--echo # Generate 40 replication events +--disable_query_log +--disable_result_log +--let $count = 40 +while ($count) +{ + INSERT INTO t1 VALUES (1); + --dec $count +} +--enable_query_log +--enable_result_log --connection node_1 ---let $wait_condition = SELECT COUNT(*) = 12 FROM INFORMATION_SCHEMA.PROCESSLIST WHERE USER = 'system user'; + +# Wait until inserts are replicated +--let $wait_condition = SELECT COUNT(*) = 53 FROM t1; +--source include/wait_condition.inc + +SELECT COUNT(*) FROM t1; + +--echo # Wait 10 slave threads to exit 3 +# Wait until appliers exit +--let $wait_condition = SELECT COUNT(*) = 2 FROM INFORMATION_SCHEMA.PROCESSLIST WHERE USER = 'system user' AND (STATE IS NULL OR STATE NOT LIKE 'InnoDB%'); --source include/wait_condition.inc SET GLOBAL wsrep_slave_threads = 10; SET GLOBAL wsrep_slave_threads = 0; ---connection node_2 -INSERT INTO t1 VALUES (10); -INSERT INTO t1 VALUES (11); -INSERT INTO t1 VALUES (12); -INSERT INTO t1 VALUES (13); -INSERT INTO t1 VALUES (14); -INSERT INTO t1 VALUES (15); -INSERT INTO t1 VALUES (16); -INSERT INTO t1 VALUES (17); -INSERT INTO t1 VALUES (18); -INSERT INTO t1 VALUES (19); -INSERT INTO t1 VALUES (20); - ---connection node_1 ---let $wait_condition = SELECT COUNT(*) = 2 FROM INFORMATION_SCHEMA.PROCESSLIST WHERE USER = 'system user'; +--echo # Wait 10 slave threads to start 3 +--let $wait_timeout=600 +--let $wait_condition = SELECT COUNT(*) = 11 FROM INFORMATION_SCHEMA.PROCESSLIST WHERE USER = 'system user' AND (STATE IS NULL OR STATE NOT LIKE 'InnoDB%'); --source include/wait_condition.inc -SET GLOBAL wsrep_slave_threads = 1; +--connection node_2 +--echo # Generate 12 replication events +--disable_query_log +--disable_result_log +--let $count = 12 +while ($count) +{ + INSERT INTO t1 VALUES (1); + --dec $count +} +--enable_result_log +--enable_query_log + +--connection node_1 +# Wait until inserts are replicated +--let $wait_condition = SELECT COUNT(*) = 65 FROM t1; +--source include/wait_condition.inc + +SELECT COUNT(*) FROM t1; + +--echo # Wait 10 slave threads to exit 4 +# Wait until appliers exit +--let $wait_condition = SELECT COUNT(*) = 2 FROM INFORMATION_SCHEMA.PROCESSLIST WHERE USER = 'system user' AND (STATE IS NULL OR STATE NOT LIKE 'InnoDB%'); +--source include/wait_condition.inc + +--connection node_1 DROP TABLE t1; diff --git a/mysql-test/suite/galera/t/galera_defaults.test b/mysql-test/suite/galera/t/galera_defaults.test index facc5180f2f..0ad97916302 100644 --- a/mysql-test/suite/galera/t/galera_defaults.test +++ b/mysql-test/suite/galera/t/galera_defaults.test @@ -13,7 +13,7 @@ # Make sure that the test is operating on the right version of galera library. --disable_query_log ---let $galera_version=3.20 +--let $galera_version=25.3.20 source ../wsrep/include/check_galera_version.inc; --enable_query_log @@ -59,14 +59,3 @@ ORDER BY VARIABLE_NAME; $wsrep_provider_options =~ s/repl.proto_max = .*?;\s*/;/sgio; print $wsrep_provider_options."\n"; EOF - -# Global Status - -SELECT COUNT(*) FROM INFORMATION_SCHEMA.GLOBAL_STATUS -WHERE VARIABLE_NAME LIKE 'wsrep_%' -AND VARIABLE_NAME != 'wsrep_debug_sync_waiters'; - -SELECT VARIABLE_NAME FROM INFORMATION_SCHEMA.GLOBAL_STATUS -WHERE VARIABLE_NAME LIKE 'wsrep_%' -AND VARIABLE_NAME != 'wsrep_debug_sync_waiters' -ORDER BY VARIABLE_NAME; diff --git a/mysql-test/suite/galera/t/galera_var_slave_threads.test b/mysql-test/suite/galera/t/galera_var_slave_threads.test index 0afda948ed5..1cee845b6ab 100644 --- a/mysql-test/suite/galera/t/galera_var_slave_threads.test +++ b/mysql-test/suite/galera/t/galera_var_slave_threads.test @@ -34,7 +34,12 @@ SET GLOBAL wsrep_slave_threads = 64; INSERT INTO t1 VALUES (1); --connection node_2 +--let $wait_timeout=600 +--let $wait_condition = SELECT COUNT(*) = 1 FROM t1; +--source include/wait_condition.inc + SELECT COUNT(*) = 1 FROM t1; + --let $wait_condition = SELECT COUNT(*) = @@wsrep_slave_threads + 1 FROM INFORMATION_SCHEMA.PROCESSLIST WHERE USER = 'system user'; --source include/wait_condition.inc SELECT COUNT(*) = 1 FROM INFORMATION_SCHEMA.PROCESSLIST WHERE USER = 'system user' AND STATE LIKE '%wsrep aborter%'; @@ -47,6 +52,8 @@ SET GLOBAL wsrep_slave_threads = 1; --connection node_1 +--disable_result_log +--disable_query_log # Generate 64 replication events --let $count = 64 while ($count) @@ -54,9 +61,15 @@ while ($count) INSERT INTO t2 VALUES (DEFAULT); --dec $count } +--enable_query_log +--enable_result_log --connection node_2 +--let $wait_condition = SELECT COUNT(*) = 64 FROM t2; +--source include/wait_condition.inc + SELECT COUNT(*) = 64 FROM t2; + --let $wait_condition = SELECT COUNT(*) = @@wsrep_slave_threads + 1 FROM INFORMATION_SCHEMA.PROCESSLIST WHERE USER = 'system user'; --source include/wait_condition.inc SELECT COUNT(*) = 1 FROM INFORMATION_SCHEMA.PROCESSLIST WHERE USER = 'system user' AND STATE LIKE '%wsrep aborter%'; diff --git a/mysql-test/suite/wsrep/include/check_galera_version.inc b/mysql-test/suite/wsrep/include/check_galera_version.inc index e495da8f1ee..fd691161a54 100644 --- a/mysql-test/suite/wsrep/include/check_galera_version.inc +++ b/mysql-test/suite/wsrep/include/check_galera_version.inc @@ -17,23 +17,27 @@ eval SET @GALERA_VERSION='$galera_version'; SELECT CAST(REGEXP_REPLACE(@GALERA_VERSION,'^(\\d+)\\.(\\d+).*','\\1') AS UNSIGNED) INTO @GALERA_MAJOR_VERSION; SELECT CAST(REGEXP_REPLACE(@GALERA_VERSION,'^(\\d+)\\.(\\d+).*','\\2') AS UNSIGNED) INTO @GALERA_MINOR_VERSION; +SELECT CAST(REGEXP_REPLACE(@GALERA_VERSION,'^(\\d+)\\.(\\d+)\\.(\\d+).*','\\3') AS UNSIGNED) INTO @GALERA_RELEASE_VERSION; # Actual SELECT VARIABLE_VALUE INTO @ACTUAL_GALERA_VERSION FROM INFORMATION_SCHEMA.GLOBAL_STATUS WHERE VARIABLE_NAME LIKE 'wsrep_provider_version'; - -SELECT CAST(REGEXP_REPLACE(@ACTUAL_GALERA_VERSION,'^(\\d+)\\.(\\d+).*','\\1') AS UNSIGNED) INTO @ACTUAL_GALERA_MAJOR_VERSION; -SELECT CAST(REGEXP_REPLACE(@ACTUAL_GALERA_VERSION,'^(\\d+)\\.(\\d+).*','\\2') AS UNSIGNED) INTO @ACTUAL_GALERA_MINOR_VERSION; +SELECT CAST(REGEXP_REPLACE(@ACTUAL_GALERA_VERSION,'^(\\d+)\\.(\\d+).*','\\1') AS UNSIGNED) INTO @ACTUAL_GALERA_MINOR_VERSION; +SELECT CAST(REGEXP_REPLACE(@ACTUAL_GALERA_VERSION,'^(\\d+)\\.(\\d+).*','\\2') AS UNSIGNED) INTO @ACTUAL_GALERA_RELEASE_VERSION; # For testing -#SELECT @GALERA_MAJOR_VERSION, @GALERA_MINOR_VERSION; +#SELECT @GALERA_MAJOR_VERSION; +#SELECT @GALERA_MINOR_VERSION; +#SELECT @GALERA_RELEASE_VERSION; #SELECT @ACTUAL_GALERA_VERSION; -#SELECT @ACTUAL_GALERA_MAJOR_VERSION, @ACTUAL_GALERA_MINOR_VERSION; +#SELECT @ACTUAL_GALERA_MINOR_VERSION; +#SELECT @ACTUAL_GALERA_RELEASE_VERSION; -if (!`SELECT (@ACTUAL_GALERA_MAJOR_VERSION > @GALERA_MAJOR_VERSION) OR - (@ACTUAL_GALERA_MAJOR_VERSION = @GALERA_MAJOR_VERSION AND @ACTUAL_GALERA_MINOR_VERSION >= @GALERA_MINOR_VERSION) +if (!`SELECT (@ACTUAL_GALERA_MINOR_VERSION > @GALERA_MINOR_VERSION) OR + (@ACTUAL_GALERA_MINOR_VERSION = @GALERA_MINOR_VERSION AND + @ACTUAL_GALERA_RELEASE_VERSION >= @GALERA_RELEASE_VERSION) `) { - skip Test requires Galera library version $galera_version; + skip Test requires Galera library version >= $galera_version; } --enable_query_log diff --git a/mysql-test/suite/wsrep/r/variables.result b/mysql-test/suite/wsrep/r/variables.result index 4ecc1ca3b79..2e31e761f5f 100644 --- a/mysql-test/suite/wsrep/r/variables.result +++ b/mysql-test/suite/wsrep/r/variables.result @@ -59,6 +59,8 @@ wsrep_local_send_queue_min # wsrep_local_state # wsrep_local_state_comment # wsrep_local_state_uuid # +wsrep_open_connections # +wsrep_open_transactions # wsrep_protocol_version # wsrep_provider_name # wsrep_provider_vendor # @@ -114,6 +116,8 @@ wsrep_local_send_queue_min # wsrep_local_state # wsrep_local_state_comment # wsrep_local_state_uuid # +wsrep_open_connections # +wsrep_open_transactions # wsrep_protocol_version # wsrep_provider_name # wsrep_provider_vendor # diff --git a/mysql-test/suite/wsrep/t/variables.test b/mysql-test/suite/wsrep/t/variables.test index 1315f090d5c..f3cd66e5cf9 100644 --- a/mysql-test/suite/wsrep/t/variables.test +++ b/mysql-test/suite/wsrep/t/variables.test @@ -27,10 +27,12 @@ SET GLOBAL wsrep_provider=none; CALL mtr.add_suppression("WSREP: Could not open saved state file for reading.*"); +--disable_result_log --disable_query_log eval SET GLOBAL wsrep_provider= '$WSREP_PROVIDER'; --let $galera_version=25.3.17 source include/check_galera_version.inc; +--enable_result_log --enable_query_log --replace_column 2 # @@ -101,8 +103,11 @@ SHOW STATUS LIKE 'wsrep_thread_count'; --echo # Setting wsrep_cluster_address triggers the creation of --echo # applier/rollbacker threads. SET GLOBAL wsrep_cluster_address= 'gcomm://'; + --echo # Wait for applier threads to get created. -sleep 3; +--let $wait_timeout=600 +--let $wait_condition = SELECT COUNT(*) = 2 FROM INFORMATION_SCHEMA.PROCESSLIST WHERE USER = 'system user' AND (STATE IS NULL OR STATE NOT LIKE 'InnoDB%'); +--source include/wait_condition.inc --replace_regex /.*libgalera_smm.*/libgalera_smm.so/ SELECT @@global.wsrep_provider; @@ -113,8 +118,11 @@ SHOW STATUS LIKE 'wsrep_thread_count'; SET @wsrep_slave_threads_saved= @@global.wsrep_slave_threads; SET GLOBAL wsrep_slave_threads= 10; + --echo # Wait for applier threads to get created. -sleep 3; +--let $wait_condition = SELECT COUNT(*) = 11 FROM INFORMATION_SCHEMA.PROCESSLIST WHERE USER = 'system user' AND (STATE IS NULL OR STATE NOT LIKE 'InnoDB%'); +--source include/wait_condition.inc + SHOW STATUS LIKE 'threads_connected'; SHOW STATUS LIKE 'wsrep_thread_count'; diff --git a/sql/wsrep_var.cc b/sql/wsrep_var.cc index 3826ebed14c..eea1da1d46c 100644 --- a/sql/wsrep_var.cc +++ b/sql/wsrep_var.cc @@ -564,7 +564,9 @@ void wsrep_node_address_init (const char* value) static void wsrep_slave_count_change_update () { - wsrep_slave_count_change += (wsrep_slave_threads - wsrep_prev_slave_threads); + wsrep_slave_count_change = (wsrep_slave_threads - wsrep_prev_slave_threads); + WSREP_DEBUG("Change on slave threads: New %lu old %lu difference %lu", + wsrep_slave_threads, wsrep_prev_slave_threads, wsrep_slave_count_change); wsrep_prev_slave_threads = wsrep_slave_threads; } From b0026e33af8fc3b25a42099c096a84591fd550e2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jan=20Lindstr=C3=B6m?= Date: Thu, 6 Sep 2018 18:55:57 +0300 Subject: [PATCH 064/148] Disable failing galera test for now. --- mysql-test/suite/galera/disabled.def | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/mysql-test/suite/galera/disabled.def b/mysql-test/suite/galera/disabled.def index 704cb753f0d..40b4065c3db 100644 --- a/mysql-test/suite/galera/disabled.def +++ b/mysql-test/suite/galera/disabled.def @@ -32,4 +32,5 @@ galera_wan : MDEV-13549 Galera test failures MW-388 : MDEV-13549 Galera test failures galera_sst_mysqldump_with_key : MDEV-16890 Galera test failure galera.galera_binlog_stmt_autoinc : MDEV-17106 Test failure on galera.galera_binlog_stmt_autoinc -galera.galera_kill_ddl : MDEV-17108 Test failure on galera.galera_kill_ddl \ No newline at end of file +galera.galera_kill_ddl : MDEV-17108 Test failure on galera.galera_kill_ddl +galera.galera_var_node_address : MDEV-17151 Galera test failure on galera.galera_var_node_address From 3a4242fd57b3a2235d2478ed080941b67a82ad1b Mon Sep 17 00:00:00 2001 From: Sergei Golubchik Date: Thu, 6 Sep 2018 20:41:28 +0200 Subject: [PATCH 065/148] TokuDB: Don't free P_S instrumented mutexes after exit() don't create static objects that destroy mutexes from destructors, and don't destroy mutexes from .so destructor (on-unload) function. if it happens after exit(), P_S will be long gone by that time this fixes tokudb tests crashing on quantal-amd64 --- storage/tokudb/PerconaFT/src/ydb_lib.cc | 2 +- storage/tokudb/hatoku_hton.cc | 14 +++++++++----- 2 files changed, 10 insertions(+), 6 deletions(-) diff --git a/storage/tokudb/PerconaFT/src/ydb_lib.cc b/storage/tokudb/PerconaFT/src/ydb_lib.cc index bf3cde4e927..4775f601d23 100644 --- a/storage/tokudb/PerconaFT/src/ydb_lib.cc +++ b/storage/tokudb/PerconaFT/src/ydb_lib.cc @@ -43,7 +43,7 @@ Copyright (c) 2006, 2015, Percona and/or its affiliates. All rights reserved. #include "ydb.h" #include -#if defined(__GNUC__) +#if 0 && defined(__GNUC__) static void __attribute__((constructor)) libtokuft_init(void) { int r = toku_ydb_init(); diff --git a/storage/tokudb/hatoku_hton.cc b/storage/tokudb/hatoku_hton.cc index ce5e396146b..39ffa6daa70 100644 --- a/storage/tokudb/hatoku_hton.cc +++ b/storage/tokudb/hatoku_hton.cc @@ -25,14 +25,15 @@ Copyright (c) 2006, 2015, Percona and/or its affiliates. All rights reserved. #ident "Copyright (c) 2006, 2015, Percona and/or its affiliates. All rights reserved." #include "hatoku_hton.h" +#include "PerconaFT/src/ydb.h" #define TOKU_METADB_NAME "tokudb_meta" #if defined(HAVE_PSI_MUTEX_INTERFACE) -static pfs_key_t tokudb_map_mutex_key; +//static pfs_key_t tokudb_map_mutex_key; static PSI_mutex_info all_tokudb_mutexes[] = { - {&tokudb_map_mutex_key, "tokudb_map_mutex", 0}, + //{&tokudb_map_mutex_key, "tokudb_map_mutex", 0}, {&ha_tokudb_mutex_key, "ha_tokudb_mutex", 0}, }; @@ -126,7 +127,7 @@ handlerton* tokudb_hton; const char* ha_tokudb_ext = ".tokudb"; DB_ENV* db_env; -static tokudb::thread::mutex_t tokudb_map_mutex; +//static tokudb::thread::mutex_t tokudb_map_mutex; #if defined(TOKU_THDVAR_MEMALLOC_BUG) && TOKU_THDVAR_MEMALLOC_BUG static TREE tokudb_map; struct tokudb_map_pair { @@ -280,7 +281,9 @@ static int tokudb_set_product_name(void) { static int tokudb_init_func(void *p) { TOKUDB_DBUG_ENTER("%p", p); - int r; + + int r = toku_ydb_init(); + assert(r==0); // 3938: lock the handlerton's initialized status flag for writing rwlock_t_lock_write(tokudb_hton_initialized_lock); @@ -295,7 +298,7 @@ static int tokudb_init_func(void *p) { count = array_elements(all_tokudb_rwlocks); mysql_rwlock_register("tokudb", all_tokudb_rwlocks, count); - tokudb_map_mutex.reinit(tokudb_map_mutex_key); + //tokudb_map_mutex.reinit(tokudb_map_mutex_key); #endif /* HAVE_PSI_INTERFACE */ db_env = NULL; @@ -682,6 +685,7 @@ static int tokudb_done_func(TOKUDB_UNUSED(void* p)) { toku_global_status_variables = NULL; tokudb::memory::free(toku_global_status_rows); toku_global_status_rows = NULL; + toku_ydb_destroy(); TOKUDB_DBUG_RETURN(0); } From 62dbf4f18d47a1e26f5fd7a0d6683494fb203a44 Mon Sep 17 00:00:00 2001 From: Oleksandr Byelkin Date: Thu, 6 Sep 2018 23:36:53 +0200 Subject: [PATCH 066/148] post merge --- mysql-test/r/selectivity.result | 4 +- mysql-test/r/selectivity_innodb.result | 4 +- .../galera/r/galera_sst_rsync2,debug.rdiff | 103 ++++++++++++++++++ storage/maria/ma_blockrec.c | 16 +-- .../mysql-test/tokudb/r/tokudb_mrr.result | 2 +- .../r/alter_table_comment_rebuild_data.result | 32 +++--- 6 files changed, 132 insertions(+), 29 deletions(-) create mode 100644 mysql-test/suite/galera/r/galera_sst_rsync2,debug.rdiff diff --git a/mysql-test/r/selectivity.result b/mysql-test/r/selectivity.result index 90b63a6695a..2e69f674ea3 100644 --- a/mysql-test/r/selectivity.result +++ b/mysql-test/r/selectivity.result @@ -1506,9 +1506,9 @@ col1 explain extended select * from t2 where col1 < 'b' and col1 > 'd'; id select_type table type possible_keys key key_len ref rows filtered Extra -1 SIMPLE NULL NULL NULL NULL NULL NULL NULL NULL Impossible WHERE noticed after reading const tables +1 SIMPLE t2 ALL NULL NULL NULL NULL 8 100.00 Using where Warnings: -Note 1003 select `test`.`t2`.`col1` AS `col1` from `test`.`t2` where 0 +Note 1003 select `test`.`t2`.`col1` AS `col1` from `test`.`t2` where ((`test`.`t2`.`col1` < 'b') and (`test`.`t2`.`col1` > 'd')) drop table t1,t2; set optimizer_use_condition_selectivity=@save_optimizer_use_condition_selectivity; set use_stat_tables=@save_use_stat_tables; diff --git a/mysql-test/r/selectivity_innodb.result b/mysql-test/r/selectivity_innodb.result index a6af77401c0..d3e71088f87 100644 --- a/mysql-test/r/selectivity_innodb.result +++ b/mysql-test/r/selectivity_innodb.result @@ -1516,9 +1516,9 @@ col1 explain extended select * from t2 where col1 < 'b' and col1 > 'd'; id select_type table type possible_keys key key_len ref rows filtered Extra -1 SIMPLE NULL NULL NULL NULL NULL NULL NULL NULL Impossible WHERE noticed after reading const tables +1 SIMPLE t2 ALL NULL NULL NULL NULL 8 100.00 Using where Warnings: -Note 1003 select `test`.`t2`.`col1` AS `col1` from `test`.`t2` where 0 +Note 1003 select `test`.`t2`.`col1` AS `col1` from `test`.`t2` where ((`test`.`t2`.`col1` < 'b') and (`test`.`t2`.`col1` > 'd')) drop table t1,t2; set optimizer_use_condition_selectivity=@save_optimizer_use_condition_selectivity; set use_stat_tables=@save_use_stat_tables; diff --git a/mysql-test/suite/galera/r/galera_sst_rsync2,debug.rdiff b/mysql-test/suite/galera/r/galera_sst_rsync2,debug.rdiff new file mode 100644 index 00000000000..2803211c418 --- /dev/null +++ b/mysql-test/suite/galera/r/galera_sst_rsync2,debug.rdiff @@ -0,0 +1,103 @@ +--- mysql-test/suite/galera/r/galera_sst_rsync2.result 2018-09-07 01:29:47.133578834 +0200 ++++ galera_sst_rsync2.result 2018-09-07 01:29:37.619557422 +0200 +@@ -260,3 +260,100 @@ + DROP TABLE t1; + COMMIT; + SET AUTOCOMMIT=ON; ++Performing State Transfer on a server that has been killed and restarted ++while a DDL was in progress on it ++CREATE TABLE t1 (f1 CHAR(255)) ENGINE=InnoDB; ++SET AUTOCOMMIT=OFF; ++START TRANSACTION; ++INSERT INTO t1 VALUES ('node1_committed_before'); ++INSERT INTO t1 VALUES ('node1_committed_before'); ++INSERT INTO t1 VALUES ('node1_committed_before'); ++INSERT INTO t1 VALUES ('node1_committed_before'); ++INSERT INTO t1 VALUES ('node1_committed_before'); ++START TRANSACTION; ++INSERT INTO t1 VALUES ('node2_committed_before'); ++INSERT INTO t1 VALUES ('node2_committed_before'); ++INSERT INTO t1 VALUES ('node2_committed_before'); ++INSERT INTO t1 VALUES ('node2_committed_before'); ++INSERT INTO t1 VALUES ('node2_committed_before'); ++COMMIT; ++SET GLOBAL debug_dbug = 'd,sync.alter_opened_table'; ++ALTER TABLE t1 ADD COLUMN f2 INTEGER; ++SET wsrep_sync_wait = 0; ++Killing server ... ++SET AUTOCOMMIT=OFF; ++START TRANSACTION; ++INSERT INTO t1 (f1) VALUES ('node1_committed_during'); ++INSERT INTO t1 (f1) VALUES ('node1_committed_during'); ++INSERT INTO t1 (f1) VALUES ('node1_committed_during'); ++INSERT INTO t1 (f1) VALUES ('node1_committed_during'); ++INSERT INTO t1 (f1) VALUES ('node1_committed_during'); ++COMMIT; ++START TRANSACTION; ++INSERT INTO t1 (f1) VALUES ('node1_to_be_committed_after'); ++INSERT INTO t1 (f1) VALUES ('node1_to_be_committed_after'); ++INSERT INTO t1 (f1) VALUES ('node1_to_be_committed_after'); ++INSERT INTO t1 (f1) VALUES ('node1_to_be_committed_after'); ++INSERT INTO t1 (f1) VALUES ('node1_to_be_committed_after'); ++SET AUTOCOMMIT=OFF; ++START TRANSACTION; ++INSERT INTO t1 (f1) VALUES ('node1_to_be_rollbacked_after'); ++INSERT INTO t1 (f1) VALUES ('node1_to_be_rollbacked_after'); ++INSERT INTO t1 (f1) VALUES ('node1_to_be_rollbacked_after'); ++INSERT INTO t1 (f1) VALUES ('node1_to_be_rollbacked_after'); ++INSERT INTO t1 (f1) VALUES ('node1_to_be_rollbacked_after'); ++Performing --wsrep-recover ... ++Starting server ... ++Using --wsrep-start-position when starting mysqld ... ++SET AUTOCOMMIT=OFF; ++START TRANSACTION; ++INSERT INTO t1 (f1) VALUES ('node2_committed_after'); ++INSERT INTO t1 (f1) VALUES ('node2_committed_after'); ++INSERT INTO t1 (f1) VALUES ('node2_committed_after'); ++INSERT INTO t1 (f1) VALUES ('node2_committed_after'); ++INSERT INTO t1 (f1) VALUES ('node2_committed_after'); ++COMMIT; ++INSERT INTO t1 (f1) VALUES ('node1_to_be_committed_after'); ++INSERT INTO t1 (f1) VALUES ('node1_to_be_committed_after'); ++INSERT INTO t1 (f1) VALUES ('node1_to_be_committed_after'); ++INSERT INTO t1 (f1) VALUES ('node1_to_be_committed_after'); ++INSERT INTO t1 (f1) VALUES ('node1_to_be_committed_after'); ++COMMIT; ++SET AUTOCOMMIT=OFF; ++START TRANSACTION; ++INSERT INTO t1 (f1) VALUES ('node1_committed_after'); ++INSERT INTO t1 (f1) VALUES ('node1_committed_after'); ++INSERT INTO t1 (f1) VALUES ('node1_committed_after'); ++INSERT INTO t1 (f1) VALUES ('node1_committed_after'); ++INSERT INTO t1 (f1) VALUES ('node1_committed_after'); ++COMMIT; ++INSERT INTO t1 (f1) VALUES ('node1_to_be_rollbacked_after'); ++INSERT INTO t1 (f1) VALUES ('node1_to_be_rollbacked_after'); ++INSERT INTO t1 (f1) VALUES ('node1_to_be_rollbacked_after'); ++INSERT INTO t1 (f1) VALUES ('node1_to_be_rollbacked_after'); ++INSERT INTO t1 (f1) VALUES ('node1_to_be_rollbacked_after'); ++ROLLBACK; ++SELECT COUNT(*) = 2 FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME = 't1'; ++COUNT(*) = 2 ++1 ++SELECT COUNT(*) = 35 FROM t1; ++COUNT(*) = 35 ++1 ++SELECT COUNT(*) = 0 FROM (SELECT COUNT(*) AS c, f1 FROM t1 GROUP BY f1 HAVING c NOT IN (5, 10)) AS a1; ++COUNT(*) = 0 ++1 ++COMMIT; ++SET AUTOCOMMIT=ON; ++SELECT COUNT(*) = 2 FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME = 't1'; ++COUNT(*) = 2 ++1 ++SELECT COUNT(*) = 35 FROM t1; ++COUNT(*) = 35 ++1 ++SELECT COUNT(*) = 0 FROM (SELECT COUNT(*) AS c, f1 FROM t1 GROUP BY f1 HAVING c NOT IN (5, 10)) AS a1; ++COUNT(*) = 0 ++1 ++DROP TABLE t1; ++COMMIT; ++SET AUTOCOMMIT=ON; ++SET GLOBAL debug_dbug = $debug_orig; diff --git a/storage/maria/ma_blockrec.c b/storage/maria/ma_blockrec.c index 8ef463d2918..e2f72b4005b 100644 --- a/storage/maria/ma_blockrec.c +++ b/storage/maria/ma_blockrec.c @@ -5162,15 +5162,15 @@ int _ma_read_block_record(MARIA_HA *info, uchar *record, PAGECACHE_LOCK_LEFT_UNLOCKED, 0))) DBUG_RETURN(my_errno); - /* - Unallocated page access can happen if this is an access to a page where - all rows where deleted as part of this statement. - */ - DBUG_ASSERT((buff[PAGE_TYPE_OFFSET] & PAGE_TYPE_MASK) == HEAD_PAGE || - (buff[PAGE_TYPE_OFFSET] & PAGE_TYPE_MASK) == UNALLOCATED_PAGE); + /* + Unallocated page access can happen if this is an access to a page where + all rows where deleted as part of this statement. + */ + DBUG_ASSERT((buff[PAGE_TYPE_OFFSET] & PAGE_TYPE_MASK) == HEAD_PAGE || + (buff[PAGE_TYPE_OFFSET] & PAGE_TYPE_MASK) == UNALLOCATED_PAGE); - DBUG_ASSERT((buff[PAGE_TYPE_OFFSET] & PAGE_TYPE_MASK) == HEAD_PAGE); - if (!(data= get_record_position(share, buff, offset, &end_of_data))) + if (((buff[PAGE_TYPE_OFFSET] & PAGE_TYPE_MASK) == UNALLOCATED_PAGE) || + !(data= get_record_position(share, buff, offset, &end_of_data))) { DBUG_ASSERT(!maria_assert_if_crashed_table); DBUG_PRINT("warning", ("Wrong directory entry in data block")); diff --git a/storage/tokudb/mysql-test/tokudb/r/tokudb_mrr.result b/storage/tokudb/mysql-test/tokudb/r/tokudb_mrr.result index ba469a3ac96..d79f19202a3 100644 --- a/storage/tokudb/mysql-test/tokudb/r/tokudb_mrr.result +++ b/storage/tokudb/mysql-test/tokudb/r/tokudb_mrr.result @@ -5,7 +5,7 @@ show create table t1; Table Create Table t1 CREATE TABLE `t1` ( `a` int(11) DEFAULT NULL -) ENGINE=TokuDB DEFAULT CHARSET=latin1 `compression`='tokudb_zlib' +) ENGINE=TokuDB DEFAULT CHARSET=latin1 insert into t1 values (0),(1),(2),(3),(4),(5),(6),(7),(8),(9); create table t2(a int); insert into t2 select A.a + 10*(B.a + 10*C.a) from t1 A, t1 B, t1 C; diff --git a/storage/tokudb/mysql-test/tokudb_bugs/r/alter_table_comment_rebuild_data.result b/storage/tokudb/mysql-test/tokudb_bugs/r/alter_table_comment_rebuild_data.result index 1bd5aee087a..fee3483d937 100644 --- a/storage/tokudb/mysql-test/tokudb_bugs/r/alter_table_comment_rebuild_data.result +++ b/storage/tokudb/mysql-test/tokudb_bugs/r/alter_table_comment_rebuild_data.result @@ -6,7 +6,7 @@ t1 CREATE TABLE `t1` ( `id` int(11) NOT NULL AUTO_INCREMENT, `name` varchar(30) DEFAULT NULL, PRIMARY KEY (`id`) -) ENGINE=TokuDB DEFAULT CHARSET=latin1 MIN_ROWS=8 `compression`='tokudb_zlib' +) ENGINE=TokuDB DEFAULT CHARSET=latin1 MIN_ROWS=8 include/assert.inc [underlying ft file name not changed after alter min_rows] alter table t1 max_rows = 100; show create table t1; @@ -15,7 +15,7 @@ t1 CREATE TABLE `t1` ( `id` int(11) NOT NULL AUTO_INCREMENT, `name` varchar(30) DEFAULT NULL, PRIMARY KEY (`id`) -) ENGINE=TokuDB DEFAULT CHARSET=latin1 MIN_ROWS=8 MAX_ROWS=100 `compression`='tokudb_zlib' +) ENGINE=TokuDB DEFAULT CHARSET=latin1 MIN_ROWS=8 MAX_ROWS=100 include/assert.inc [underlying ft file name not changed after alter max_rows] alter table t1 avg_row_length = 100; show create table t1; @@ -24,7 +24,7 @@ t1 CREATE TABLE `t1` ( `id` int(11) NOT NULL AUTO_INCREMENT, `name` varchar(30) DEFAULT NULL, PRIMARY KEY (`id`) -) ENGINE=TokuDB DEFAULT CHARSET=latin1 MIN_ROWS=8 MAX_ROWS=100 AVG_ROW_LENGTH=100 `compression`='tokudb_zlib' +) ENGINE=TokuDB DEFAULT CHARSET=latin1 MIN_ROWS=8 MAX_ROWS=100 AVG_ROW_LENGTH=100 include/assert.inc [underlying ft file name not changed after alter avg_row_length] alter table t1 pack_keys = 1; show create table t1; @@ -33,7 +33,7 @@ t1 CREATE TABLE `t1` ( `id` int(11) NOT NULL AUTO_INCREMENT, `name` varchar(30) DEFAULT NULL, PRIMARY KEY (`id`) -) ENGINE=TokuDB DEFAULT CHARSET=latin1 MIN_ROWS=8 MAX_ROWS=100 AVG_ROW_LENGTH=100 PACK_KEYS=1 `compression`='tokudb_zlib' +) ENGINE=TokuDB DEFAULT CHARSET=latin1 MIN_ROWS=8 MAX_ROWS=100 AVG_ROW_LENGTH=100 PACK_KEYS=1 include/assert.inc [underlying ft file name not changed after alter pack_keys] alter table t1 character set = utf8; show create table t1; @@ -42,7 +42,7 @@ t1 CREATE TABLE `t1` ( `id` int(11) NOT NULL AUTO_INCREMENT, `name` varchar(30) CHARACTER SET latin1 DEFAULT NULL, PRIMARY KEY (`id`) -) ENGINE=TokuDB DEFAULT CHARSET=utf8 MIN_ROWS=8 MAX_ROWS=100 AVG_ROW_LENGTH=100 PACK_KEYS=1 `compression`='tokudb_zlib' +) ENGINE=TokuDB DEFAULT CHARSET=utf8 MIN_ROWS=8 MAX_ROWS=100 AVG_ROW_LENGTH=100 PACK_KEYS=1 include/assert.inc [underlying ft file name not changed after alter character set] alter table t1 data directory = '/tmp'; Warnings: @@ -53,7 +53,7 @@ t1 CREATE TABLE `t1` ( `id` int(11) NOT NULL AUTO_INCREMENT, `name` varchar(30) CHARACTER SET latin1 DEFAULT NULL, PRIMARY KEY (`id`) -) ENGINE=TokuDB DEFAULT CHARSET=utf8 MIN_ROWS=8 MAX_ROWS=100 AVG_ROW_LENGTH=100 PACK_KEYS=1 `compression`='tokudb_zlib' +) ENGINE=TokuDB DEFAULT CHARSET=utf8 MIN_ROWS=8 MAX_ROWS=100 AVG_ROW_LENGTH=100 PACK_KEYS=1 include/assert.inc [underlying ft file name not changed after alter data directory] alter table t1 index directory = '/tmp'; Warnings: @@ -64,7 +64,7 @@ t1 CREATE TABLE `t1` ( `id` int(11) NOT NULL AUTO_INCREMENT, `name` varchar(30) CHARACTER SET latin1 DEFAULT NULL, PRIMARY KEY (`id`) -) ENGINE=TokuDB DEFAULT CHARSET=utf8 MIN_ROWS=8 MAX_ROWS=100 AVG_ROW_LENGTH=100 PACK_KEYS=1 `compression`='tokudb_zlib' +) ENGINE=TokuDB DEFAULT CHARSET=utf8 MIN_ROWS=8 MAX_ROWS=100 AVG_ROW_LENGTH=100 PACK_KEYS=1 include/assert.inc [underlying ft file name not changed after alter index directory] alter table t1 checksum = 1; show create table t1; @@ -73,7 +73,7 @@ t1 CREATE TABLE `t1` ( `id` int(11) NOT NULL AUTO_INCREMENT, `name` varchar(30) CHARACTER SET latin1 DEFAULT NULL, PRIMARY KEY (`id`) -) ENGINE=TokuDB DEFAULT CHARSET=utf8 MIN_ROWS=8 MAX_ROWS=100 AVG_ROW_LENGTH=100 PACK_KEYS=1 CHECKSUM=1 `compression`='tokudb_zlib' +) ENGINE=TokuDB DEFAULT CHARSET=utf8 MIN_ROWS=8 MAX_ROWS=100 AVG_ROW_LENGTH=100 PACK_KEYS=1 CHECKSUM=1 include/assert.inc [underlying ft file name not changed after alter checksum] alter table t1 delay_key_write=1; show create table t1; @@ -82,7 +82,7 @@ t1 CREATE TABLE `t1` ( `id` int(11) NOT NULL AUTO_INCREMENT, `name` varchar(30) CHARACTER SET latin1 DEFAULT NULL, PRIMARY KEY (`id`) -) ENGINE=TokuDB DEFAULT CHARSET=utf8 MIN_ROWS=8 MAX_ROWS=100 AVG_ROW_LENGTH=100 PACK_KEYS=1 CHECKSUM=1 DELAY_KEY_WRITE=1 `compression`='tokudb_zlib' +) ENGINE=TokuDB DEFAULT CHARSET=utf8 MIN_ROWS=8 MAX_ROWS=100 AVG_ROW_LENGTH=100 PACK_KEYS=1 CHECKSUM=1 DELAY_KEY_WRITE=1 include/assert.inc [underlying ft file name not changed after alter delay_key_write] alter table t1 comment = 'test table'; show create table t1; @@ -91,7 +91,7 @@ t1 CREATE TABLE `t1` ( `id` int(11) NOT NULL AUTO_INCREMENT, `name` varchar(30) CHARACTER SET latin1 DEFAULT NULL, PRIMARY KEY (`id`) -) ENGINE=TokuDB DEFAULT CHARSET=utf8 MIN_ROWS=8 MAX_ROWS=100 AVG_ROW_LENGTH=100 PACK_KEYS=1 CHECKSUM=1 DELAY_KEY_WRITE=1 COMMENT='test table' `compression`='tokudb_zlib' +) ENGINE=TokuDB DEFAULT CHARSET=utf8 MIN_ROWS=8 MAX_ROWS=100 AVG_ROW_LENGTH=100 PACK_KEYS=1 CHECKSUM=1 DELAY_KEY_WRITE=1 COMMENT='test table' include/assert.inc [underlying ft file name not changed after alter comment] alter table t1 password = '123456'; show create table t1; @@ -100,7 +100,7 @@ t1 CREATE TABLE `t1` ( `id` int(11) NOT NULL AUTO_INCREMENT, `name` varchar(30) CHARACTER SET latin1 DEFAULT NULL, PRIMARY KEY (`id`) -) ENGINE=TokuDB DEFAULT CHARSET=utf8 MIN_ROWS=8 MAX_ROWS=100 AVG_ROW_LENGTH=100 PACK_KEYS=1 CHECKSUM=1 DELAY_KEY_WRITE=1 COMMENT='test table' `compression`='tokudb_zlib' +) ENGINE=TokuDB DEFAULT CHARSET=utf8 MIN_ROWS=8 MAX_ROWS=100 AVG_ROW_LENGTH=100 PACK_KEYS=1 CHECKSUM=1 DELAY_KEY_WRITE=1 COMMENT='test table' include/assert.inc [underlying ft file name not changed after alter password] alter table t1 connection = '127.0.0.1:3306'; show create table t1; @@ -109,7 +109,7 @@ t1 CREATE TABLE `t1` ( `id` int(11) NOT NULL AUTO_INCREMENT, `name` varchar(30) CHARACTER SET latin1 DEFAULT NULL, PRIMARY KEY (`id`) -) ENGINE=TokuDB DEFAULT CHARSET=utf8 MIN_ROWS=8 MAX_ROWS=100 AVG_ROW_LENGTH=100 PACK_KEYS=1 CHECKSUM=1 DELAY_KEY_WRITE=1 COMMENT='test table' CONNECTION='127.0.0.1:3306' `compression`='tokudb_zlib' +) ENGINE=TokuDB DEFAULT CHARSET=utf8 MIN_ROWS=8 MAX_ROWS=100 AVG_ROW_LENGTH=100 PACK_KEYS=1 CHECKSUM=1 DELAY_KEY_WRITE=1 COMMENT='test table' CONNECTION='127.0.0.1:3306' include/assert.inc [underlying ft file name not changed after alter connection] alter table t1 stats_persistent = 1; show create table t1; @@ -118,7 +118,7 @@ t1 CREATE TABLE `t1` ( `id` int(11) NOT NULL AUTO_INCREMENT, `name` varchar(30) CHARACTER SET latin1 DEFAULT NULL, PRIMARY KEY (`id`) -) ENGINE=TokuDB DEFAULT CHARSET=utf8 MIN_ROWS=8 MAX_ROWS=100 AVG_ROW_LENGTH=100 PACK_KEYS=1 STATS_PERSISTENT=1 CHECKSUM=1 DELAY_KEY_WRITE=1 COMMENT='test table' CONNECTION='127.0.0.1:3306' `compression`='tokudb_zlib' +) ENGINE=TokuDB DEFAULT CHARSET=utf8 MIN_ROWS=8 MAX_ROWS=100 AVG_ROW_LENGTH=100 PACK_KEYS=1 STATS_PERSISTENT=1 CHECKSUM=1 DELAY_KEY_WRITE=1 COMMENT='test table' CONNECTION='127.0.0.1:3306' include/assert.inc [underlying ft file name not changed after alter stats_persistent] alter table t1 stats_auto_recalc = 1; show create table t1; @@ -127,7 +127,7 @@ t1 CREATE TABLE `t1` ( `id` int(11) NOT NULL AUTO_INCREMENT, `name` varchar(30) CHARACTER SET latin1 DEFAULT NULL, PRIMARY KEY (`id`) -) ENGINE=TokuDB DEFAULT CHARSET=utf8 MIN_ROWS=8 MAX_ROWS=100 AVG_ROW_LENGTH=100 PACK_KEYS=1 STATS_PERSISTENT=1 STATS_AUTO_RECALC=1 CHECKSUM=1 DELAY_KEY_WRITE=1 COMMENT='test table' CONNECTION='127.0.0.1:3306' `compression`='tokudb_zlib' +) ENGINE=TokuDB DEFAULT CHARSET=utf8 MIN_ROWS=8 MAX_ROWS=100 AVG_ROW_LENGTH=100 PACK_KEYS=1 STATS_PERSISTENT=1 STATS_AUTO_RECALC=1 CHECKSUM=1 DELAY_KEY_WRITE=1 COMMENT='test table' CONNECTION='127.0.0.1:3306' include/assert.inc [underlying ft file name not changed after alter stats_auto_recalc] alter table t1 stats_sample_pages = 1; show create table t1; @@ -136,7 +136,7 @@ t1 CREATE TABLE `t1` ( `id` int(11) NOT NULL AUTO_INCREMENT, `name` varchar(30) CHARACTER SET latin1 DEFAULT NULL, PRIMARY KEY (`id`) -) ENGINE=TokuDB DEFAULT CHARSET=utf8 MIN_ROWS=8 MAX_ROWS=100 AVG_ROW_LENGTH=100 PACK_KEYS=1 STATS_PERSISTENT=1 STATS_AUTO_RECALC=1 STATS_SAMPLE_PAGES=1 CHECKSUM=1 DELAY_KEY_WRITE=1 COMMENT='test table' CONNECTION='127.0.0.1:3306' `compression`='tokudb_zlib' +) ENGINE=TokuDB DEFAULT CHARSET=utf8 MIN_ROWS=8 MAX_ROWS=100 AVG_ROW_LENGTH=100 PACK_KEYS=1 STATS_PERSISTENT=1 STATS_AUTO_RECALC=1 STATS_SAMPLE_PAGES=1 CHECKSUM=1 DELAY_KEY_WRITE=1 COMMENT='test table' CONNECTION='127.0.0.1:3306' include/assert.inc [underlying ft file name not changed after alter stats_sample_pages] alter table t1 auto_increment = 1000; show create table t1; @@ -145,7 +145,7 @@ t1 CREATE TABLE `t1` ( `id` int(11) NOT NULL AUTO_INCREMENT, `name` varchar(30) CHARACTER SET latin1 DEFAULT NULL, PRIMARY KEY (`id`) -) ENGINE=TokuDB AUTO_INCREMENT=1000 DEFAULT CHARSET=utf8 MIN_ROWS=8 MAX_ROWS=100 AVG_ROW_LENGTH=100 PACK_KEYS=1 STATS_PERSISTENT=1 STATS_AUTO_RECALC=1 STATS_SAMPLE_PAGES=1 CHECKSUM=1 DELAY_KEY_WRITE=1 COMMENT='test table' CONNECTION='127.0.0.1:3306' `compression`='tokudb_zlib' +) ENGINE=TokuDB AUTO_INCREMENT=1000 DEFAULT CHARSET=utf8 MIN_ROWS=8 MAX_ROWS=100 AVG_ROW_LENGTH=100 PACK_KEYS=1 STATS_PERSISTENT=1 STATS_AUTO_RECALC=1 STATS_SAMPLE_PAGES=1 CHECKSUM=1 DELAY_KEY_WRITE=1 COMMENT='test table' CONNECTION='127.0.0.1:3306' include/assert.inc [underlying ft file name not changed after alter auto_increment] alter table t1 compression=tokudb_lzma; show create table t1; From 285969e1c6848f2c5f382d182bb11496de486482 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jan=20Lindstr=C3=B6m?= Date: Fri, 7 Sep 2018 11:27:15 +0300 Subject: [PATCH 067/148] Fix result file for wsrep.variables, for some reason had too new galera library used. --- mysql-test/suite/wsrep/r/variables.result | 60 +---------------------- mysql-test/suite/wsrep/t/variables.test | 6 +-- 2 files changed, 3 insertions(+), 63 deletions(-) diff --git a/mysql-test/suite/wsrep/r/variables.result b/mysql-test/suite/wsrep/r/variables.result index 2e31e761f5f..1dafa6b5ed5 100644 --- a/mysql-test/suite/wsrep/r/variables.result +++ b/mysql-test/suite/wsrep/r/variables.result @@ -19,6 +19,7 @@ SET GLOBAL wsrep_provider=none; # variables when using "_" # CALL mtr.add_suppression("WSREP: Could not open saved state file for reading.*"); +# wsrep SHOW GLOBAL STATUS LIKE 'wsrep%'; Variable_name Value wsrep_apply_oooe # @@ -59,65 +60,6 @@ wsrep_local_send_queue_min # wsrep_local_state # wsrep_local_state_comment # wsrep_local_state_uuid # -wsrep_open_connections # -wsrep_open_transactions # -wsrep_protocol_version # -wsrep_provider_name # -wsrep_provider_vendor # -wsrep_provider_version # -wsrep_ready # -wsrep_received # -wsrep_received_bytes # -wsrep_repl_data_bytes # -wsrep_repl_keys # -wsrep_repl_keys_bytes # -wsrep_repl_other_bytes # -wsrep_replicated # -wsrep_replicated_bytes # -wsrep_thread_count # - -SHOW GLOBAL STATUS LIKE 'wsrep_%'; -Variable_name Value -wsrep_apply_oooe # -wsrep_apply_oool # -wsrep_apply_window # -wsrep_causal_reads # -wsrep_cert_deps_distance # -wsrep_cert_index_size # -wsrep_cert_interval # -wsrep_cluster_conf_id # -wsrep_cluster_size # -wsrep_cluster_state_uuid # -wsrep_cluster_status # -wsrep_commit_oooe # -wsrep_commit_oool # -wsrep_commit_window # -wsrep_connected # -wsrep_flow_control_paused # -wsrep_flow_control_paused_ns # -wsrep_flow_control_recv # -wsrep_flow_control_sent # -wsrep_incoming_addresses # -wsrep_last_committed # -wsrep_local_bf_aborts # -wsrep_local_cached_downto # -wsrep_local_cert_failures # -wsrep_local_commits # -wsrep_local_index # -wsrep_local_recv_queue # -wsrep_local_recv_queue_avg # -wsrep_local_recv_queue_max # -wsrep_local_recv_queue_min # -wsrep_local_replays # -wsrep_local_send_queue # -wsrep_local_send_queue_avg # -wsrep_local_send_queue_max # -wsrep_local_send_queue_min # -wsrep_local_state # -wsrep_local_state_comment # -wsrep_local_state_uuid # -wsrep_open_connections # -wsrep_open_transactions # wsrep_protocol_version # wsrep_provider_name # wsrep_provider_vendor # diff --git a/mysql-test/suite/wsrep/t/variables.test b/mysql-test/suite/wsrep/t/variables.test index f3cd66e5cf9..15104b9b654 100644 --- a/mysql-test/suite/wsrep/t/variables.test +++ b/mysql-test/suite/wsrep/t/variables.test @@ -35,13 +35,11 @@ source include/check_galera_version.inc; --enable_result_log --enable_query_log +--echo # wsrep +--sorted_result --replace_column 2 # SHOW GLOBAL STATUS LIKE 'wsrep%'; ---echo ---replace_column 2 # -SHOW GLOBAL STATUS LIKE 'wsrep_%'; - --replace_column 2 # SHOW GLOBAL STATUS LIKE 'wsrep_local_state_comment'; From edb3a32c6cc06407efc96a30a6c7948fb9628ace Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jan=20Lindstr=C3=B6m?= Date: Thu, 6 Sep 2018 14:16:09 +0300 Subject: [PATCH 068/148] MDEV-17143: Galera test failure on galera.MW-44 Test changes only. --- mysql-test/suite/galera/r/MW-44.result | 13 +++++-------- mysql-test/suite/galera/t/MW-44.test | 13 ++++--------- 2 files changed, 9 insertions(+), 17 deletions(-) diff --git a/mysql-test/suite/galera/r/MW-44.result b/mysql-test/suite/galera/r/MW-44.result index a1e55318422..7e3d2f4b7ec 100644 --- a/mysql-test/suite/galera/r/MW-44.result +++ b/mysql-test/suite/galera/r/MW-44.result @@ -1,20 +1,17 @@ -SET GLOBAL general_log='OFF'; TRUNCATE TABLE mysql.general_log; -SET GLOBAL general_log='OFF'; TRUNCATE TABLE mysql.general_log; SET GLOBAL general_log='ON'; -SELECT argument from mysql.general_log WHERE argument NOT LIKE 'SELECT%'; -argument SET SESSION wsrep_osu_method=TOI; CREATE TABLE t1 (f1 INTEGER) ENGINE=InnoDB; SET SESSION wsrep_osu_method=RSU; ALTER TABLE t1 ADD COLUMN f2 INTEGER; SET SESSION wsrep_osu_method=TOI; -SELECT COUNT(*) = 2 FROM mysql.general_log WHERE argument LIKE 'CREATE%' OR argument LIKE 'ALTER%'; -COUNT(*) = 2 -1 +SELECT argument FROM mysql.general_log WHERE argument LIKE 'CREATE%' OR argument LIKE 'ALTER%'; +argument +CREATE TABLE t1 (f1 INTEGER) ENGINE=InnoDB +ALTER TABLE t1 ADD COLUMN f2 INTEGER SET GLOBAL general_log='ON'; SELECT COUNT(*) = 0 FROM mysql.general_log WHERE argument NOT LIKE 'SELECT%'; COUNT(*) = 0 -1 +0 DROP TABLE t1; diff --git a/mysql-test/suite/galera/t/MW-44.test b/mysql-test/suite/galera/t/MW-44.test index 6b5eb823985..6defa432879 100644 --- a/mysql-test/suite/galera/t/MW-44.test +++ b/mysql-test/suite/galera/t/MW-44.test @@ -6,28 +6,23 @@ --source include/have_innodb.inc --connection node_1 -SET GLOBAL general_log='OFF'; TRUNCATE TABLE mysql.general_log; ---let $wait_condition = SELECT COUNT(*) = 0 FROM mysql.general_log; ---source include/wait_condition.inc --connection node_2 -SET GLOBAL general_log='OFF'; TRUNCATE TABLE mysql.general_log; ---let $wait_condition = SELECT COUNT(*) = 0 FROM mysql.general_log; ---source include/wait_condition.inc --connection node_1 SET GLOBAL general_log='ON'; -SELECT argument from mysql.general_log WHERE argument NOT LIKE 'SELECT%'; - SET SESSION wsrep_osu_method=TOI; CREATE TABLE t1 (f1 INTEGER) ENGINE=InnoDB; SET SESSION wsrep_osu_method=RSU; ALTER TABLE t1 ADD COLUMN f2 INTEGER; SET SESSION wsrep_osu_method=TOI; -SELECT COUNT(*) = 2 FROM mysql.general_log WHERE argument LIKE 'CREATE%' OR argument LIKE 'ALTER%'; +--let $wait_condition = SELECT COUNT(argument) = 2 FROM mysql.general_log WHERE argument LIKE 'CREATE%' OR argument LIKE 'ALTER%'; +--source include/wait_condition.inc + +SELECT argument FROM mysql.general_log WHERE argument LIKE 'CREATE%' OR argument LIKE 'ALTER%'; --connection node_2 SET GLOBAL general_log='ON'; From b1d72f1722f6a026f8e4496822802ca3c65c76be Mon Sep 17 00:00:00 2001 From: Elena Stepanova Date: Fri, 7 Sep 2018 16:49:39 +0300 Subject: [PATCH 069/148] Updated list of unstable tests for 10.1.36 release --- mysql-test/unstable-tests | 118 ++++++++++++-------------------------- 1 file changed, 38 insertions(+), 80 deletions(-) diff --git a/mysql-test/unstable-tests b/mysql-test/unstable-tests index c59b9725754..b52f45815fa 100644 --- a/mysql-test/unstable-tests +++ b/mysql-test/unstable-tests @@ -23,20 +23,15 @@ # ############################################################################## -# Based on 10.1 701f0b8e366f957e8256e4741ca48424c84b7234 +# Based on bb-10.1-release f95d26b4d3ec0e4b039e80439f85e4f22bd79fe7 -main.alter_table : Modified in 10.1.34 main.alter_table_trans : MDEV-12084 - timeout main.analyze_stmt_slow_query_log : MDEV-12237 - Wrong result -main.assign_key_cache : Added in 10.1.34 -main.assign_key_cache_debug : Added in 10.1.34 main.auth_named_pipe : MDEV-14724 - System error 2 main.auto_increment : Modified in 10.1.35 main.bootstrap : Modified in 10.1.35 -main.connect_debug : Added in 10.0.36 main.count_distinct2 : MDEV-11768 - timeout main.create_delayed : MDEV-10605 - failed with timeout -main.create_or_replace : Modified in 10.1.34 main.ctype_binary : Modified in 10.1.35 main.ctype_eucjpms : Modified in 10.1.35 main.ctype_euckr : Modified in 10.1.35 @@ -56,65 +51,57 @@ main.events_2 : MDEV-13277 - Server crash main.events_bugs : MDEV-12892 - Crash in fill_schema_processlist main.events_slowlog : MDEV-12821 - Wrong result main.events_restart : MDEV-12236 - Server shutdown problem -main.gis : MDEV-13411 - wrong result on P8 +main.flush : Modified in 10.1.36 +main.func_isnull : Modified in 10.1.36 +main.func_time : Modified in 10.1.36 +main.gis : MDEV-13411 - wrong result on P8; modified in 10.1.36 main.grant : Modified in 10.1.35 -main.grant_not_windows : Added in 10.1.34 -main.grant2 : Modified in 10.0.36 +main.group_min_max : Modified in 10.1.36 main.having : Modified in 10.1.35 main.host_cache_size_functionality : MDEV-10606 - sporadic failure on shutdown main.index_intersect_innodb : MDEV-10643 - failed with timeout main.index_merge_innodb : MDEV-7142 - Wrong execution plan, timeout with valgrind main.innodb_mysql_lock : MDEV-7861 - sporadic lock detection failure -main.insert_select : Modified in 10.1.34 -main.join : Modified in 10.1.35 +main.join : Modified in 10.1.36 main.join_cache : Modified in 10.1.35 main.join_outer : Modified in 10.1.35 main.kill_processlist-6619 : MDEV-10793 - wrong result in processlist -main.limit : Modified in 10.1.34 main.log_tables-big : MDEV-13408 - wrong result main.max_statement_time : Modified in 10.1.35 main.mdev-504 : MDEV-10607 - sporadic "can't connect" main.mdev375 : MDEV-10607 - sporadic "can't connect" main.merge : MDEV-10607 - sporadic "can't connect" -main.myisam : Modified in 10.1.34 -main.mysql : Modified in 10.1.34 +main.mysql : Modified in 10.1.36 +main.mysql_not_windows : Modified in 10.1.36 main.mysql_client_test_nonblock : MDEV-15096 - exec failed -main.mysql_cp932 : Modified in 10.1.34 main.mysql_upgrade_noengine : MDEV-14355 - Plugin is busy -main.mysqldump : Modified in 10.1.34 main.mysqlhotcopy_myisam : MDEV-10995 - test hangs on debug build -main.mysqlslap : MDEV-11801 - timeout; modified in 10.1.34 +main.mysqlslap : MDEV-11801 - timeout main.mysqltest : MDEV-9269 - fails on Alpha -main.olap : Modified in 10.1.34 main.order_by_optimizer_innodb : MDEV-10683 - wrong execution plan main.partition_debug_sync : MDEV-15669 - Deadlock found when trying to get lock main.partition_innodb_plugin : MDEV-12901 - Valgrind warnings -main.ps : MDEV-11017 - sporadic wrong Prepared_stmt_count; modified in 10.1.34 +main.ps : MDEV-11017 - sporadic wrong Prepared_stmt_count main.query_cache : MDEV-12895 - Wrong result main.query_cache_debug : MDEV-15281 - Resize or similar command in progress main.range_vs_index_merge_innodb : MDEV-15283 - Server has gone away -main.read_only_innodb : Modified in 10.1.34 main.rename : Modified in 10.1.35 -main.selectivity : Modified in 10.1.34 +main.selectivity : Modified in 10.1.36 main.set_statement : MDEV-13183 - Wrong result main.show_explain : MDEV-10674 - sporadic failure -main.sp : Modified in 10.1.34 -main.sp-innodb : Modified in 10.0.36 +main.sp : Modified in 10.1.36 main.sp_notembedded : MDEV-10607 - internal error main.sp-security : MDEV-10607 - sporadic "can't connect" -main.stat_tables : Modified in 10.1.35 +main.stat_tables : Modified in 10.1.36 main.stat_tables_par_innodb : MDEV-14155 - wrong rounding main.statistics : Modified in 10.1.35 -main.statistics_close : Added in 10.1.34 main.status : MDEV-8510 - sporadic wrong result main.subselect : Modified in 10.1.35 +main.subselect_extra_no_semijoin : Modified in 10.1.36 main.subselect_innodb : MDEV-10614 - sporadic wrong results -main.subselect_sj : Modified in 10.0.36 main.subselect_sj_mat : Modified in 10.1.35 main.subselect_sj2_mat : Modified in 10.1.35 -main.subselect4 : Modified in 10.0.36 main.tc_heuristic_recover : MDEV-15200 - wrong error on mysqld_stub_cmd -main.trigger : Modified in 10.1.34 main.type_blob : MDEV-15195 - Wrong result main.type_datetime : MDEV-14322 - wrong result main.type_datetime_hires : MDEV-10687 - timeout @@ -134,12 +121,14 @@ archive-test_sql_discovery.discover : MDEV-16817 - Table marked as crashed binlog.binlog_commit_wait : MDEV-10150 - Error: too much time elapsed binlog.binlog_flush_binlogs_delete_domain : MDEV-14431 - Wrong error code +binlog.binlog_incident : Modified in 10.1.36 binlog.binlog_killed : MDEV-12925 - Wrong result binlog.binlog_tmp_table_row : Added in 10.1.35 binlog.binlog_xa_recover : MDEV-8517 - Extra checkpoint #---------------------------------------------------------------- +binlog_encryption.binlog_incident : Modified in 10.1.36 binlog_encryption.binlog_xa_recover : MDEV-12908 - Extra checkpoint binlog_encryption.encrypted_master : MDEV-12906 - Failed to sync binlog_encryption.rpl_parallel : MDEV-10653 - Timeout @@ -147,6 +136,7 @@ binlog_encryption.rpl_relayrotate : MDEV-15194 - Timeout binlog_encryption.rpl_semi_sync : MDEV-11220 - Wrong result, MDEV-11673 - Valgrind warning binlog_encryption.rpl_ssl : MDEV-14507 - Timeout on SLES 11.4 binlog_encryption.rpl_typeconv : MDEV-14362 - Lost connection to MySQL server during query +binlog.load_data_stm_view : MDEV-16948 - Wrong result #---------------------------------------------------------------- @@ -158,25 +148,17 @@ connect.zip : MDEV-13884 - Wrong result encryption.create_or_replace : MDEV-16115 - Trying to access tablespace encryption.debug_key_management : MDEV-13841 - Timeout on wait condition encryption.encrypt_and_grep : MDEV-13765 - Wrong result -encryption.innodb-bad-key-change : Modified in 10.1.34 -encryption.innodb-bad-key-change2 : Modified in 10.1.34 -encryption.innodb-bad-key-change4 : Modified in 10.1.34 encryption.innodb-checksum-algorithm : MDEV-16896 - Server crash -encryption.innodb-compressed-blob : MDEV-14728 - Unable to get certificate; modified in 10.1.34 -encryption.innodb-discard-import : Modified in 10.1.34 -encryption.innodb-encryption-disable : Modified in 10.1.34 +encryption.innodb-compressed-blob : MDEV-14728 - Unable to get certificate encryption.innodb_encryption_discard_import : MDEV-16116 - Wrong result encryption.innodb_encryption-page-compression : MDEV-12630 - crash or assertion failure encryption.innodb_encryption_row_compressed : MDEV-16113 - Crash encryption.innodb_first_page : MDEV-10689 - Crash encryption.innodb-first-page-read : MDEV-14356 - Timeout on wait condition -encryption.innodb-force-corrupt : Modified in 10.1.34 encryption.innodb_lotoftables : MDEV-16111 - Wrong result -encryption.innodb-missing-key : Modified in 10.1.34 encryption.innodb-page_encryption : MDEV-10641 - mutex problem encryption.innodb-read-only : MDEV-14728 - Unable to get certificate; MDEV-16563 - Crash on startup -encryption.innodb-redo-badkey : MDEV-12898 - Server hang on startup; modified in 10.1.34 -encryption.innodb-redo-nokeys : Modified in 10.1.34 +encryption.innodb-redo-badkey : MDEV-12898 - Server hang on startup encryption.innodb-remove-encryption : MDEV-16493 - Timeout in wait condition encryption.innodb_scrub : MDEV-8139 - scrubbing tests need fixing encryption.innodb_scrub_background : MDEV-8139 - scrubbing tests need fixing @@ -190,7 +172,6 @@ engines/rr_trx.* : MDEV-10998 - tests not maintained #---------------------------------------------------------------- -federated.assisted_discovery : Include file modified in 10.0.36 federated.federated_bug_35333 : MDEV-13410 - Wrong result federated.federated_bug_585688 : MDEV-12907 - Valgrind, MDEV-14805 - server crash federated.federated_innodb : MDEV-10617, MDEV-10417 - Wrong checksum, timeouts, fails on Mips @@ -200,7 +181,6 @@ federated.federatedx : MDEV-10617 - Wrong checksum, timeouts #---------------------------------------------------------------- -funcs_1.is_engines_federated : Include file modified in 10.0.36 funcs_1.memory_views : MDEV-11773 - timeout funcs_1.processlist_val_no_prot : MDEV-11223 - Wrong result funcs_1.processlist_val_ps : MDEV-12175 - Wrong plan @@ -214,68 +194,45 @@ funcs_2/charset.* : MDEV-10999 - test not maintained galera.* : The suite was enabled in 10.1.27 and is still unstable galera_3nodes.* : The suite has not been stabilized yet -galera.galera_applier_ftwrl_table_alter : MDEV-13738 - MySQL server has gone away -galera.galera_gcs_fc_limit : MDEV-13877 - Timeout -galera.galera_suspend_slave : MDEV-13873 - Wrong error code -galera.galera_toi_truncate : MDEV-13743 - query 'reap' succeeded -galera.galera_unicode_identifiers : MDEV-13871 - Unknown database -galera.galera_var_node_address : MDEV-13880 - Failed to start mysqld -galera.galera_wan : MDEV-13879 - Stray state UUID msg warnings -galera.galera_wsrep_log_conficts : MDEV-13874 - check-testcase failed -galera.partition : MDEV-13881 - Wrong result -galera.query_cache : MDEV-13883 - Wrong result -galera.MW-328A : MDEV-13876 - Wrong result - -#---------------------------------------------------------------- - -handler.ps : Added in 10.1.34 - #---------------------------------------------------------------- heap.heap_auto_increment : Modified in 10.1.35 #---------------------------------------------------------------- -innodb.alter_partitioned_xa : Added in 10.0.36 innodb.binlog_consistent : MDEV-10618 - Server fails to start innodb.doublewrite : MDEV-12905 - Lost connection to MySQL server -innodb.group_commit_crash : MDEV-11770 - checksum mismatch +innodb.foreign-keys : Modified in 10.1.36 +innodb.foreign_key : Added in 10.1.36 +innodb.group_commit_crash : MDEV-11770 - checksum mismatch innodb.group_commit_crash_no_optimize_thread : MDEV-11770 - checksum mismatch innodb.innodb-64k-crash : MDEV-13872 - Failure and crash on startup -innodb.innodb-alter : Added in 10.1.34 innodb.innodb-alter-debug : MDEV-13182 - InnoDB: adjusting FSP_SPACE_FLAGS innodb.innodb-alter-table : MDEV-10619 - Testcase timeout -innodb.innodb-blob : MDEV-12053 - Client crash; modified in 10.1.34 +innodb.innodb-blob : MDEV-12053 - Client crash innodb.innodb_bug14147491 : MDEV-11808 - wrong error codes innodb.innodb_bug30423 : MDEV-7311 - Wrong number of rows in the plan innodb.innodb_bug48024 : MDEV-14352 - Assertion failure -innodb.innodb_bug54044 : Modified in 10.1.34 -innodb.innodb_defragment_small : Modified in 10.1.34 innodb.innodb-fk : MDEV-13832 - Assertion failure on shutdown +innodb.innodb-lock : Modified in 10.1.36 innodb.innodb_max_recordsize_64k : MDEV-15203 - wrong result -innodb.innodb-mdev7046 : Modified in 10.1.34 innodb.innodb_monitor : MDEV-10939 - Testcase timeout -innodb.innodb-page_compression_default : Modified in 10.1.34 +innodb.innodb-page_compression_default : MDEV-14121 - Assertion failure innodb.innodb-page_compression_lzma : MDEV-14353 - wrong result on Fedora 25 -innodb.innodb-page_compression_snappy : Modified in 10.1.34 innodb.innodb-page_compression_zip : MDEV-10641 - mutex problem innodb.innodb_stats : MDEV-10682 - wrong result innodb.innodb_sys_semaphore_waits : MDEV-10331 - wrong result innodb.innodb-wl5522 : Modified in 10.1.35 innodb.innodb_zip_innochecksum2 : MDEV-13882 - Warning: difficult to find free blocks -innodb.lock_deleted : Added in 10.1.34 innodb.log_file_size : MDEV-15668 - Not found pattern innodb.recovery_shutdown : MDEV-15671 - Warning: database page corruption -innodb.rename_table : Added in 10.1.34 innodb.row_format_redundant : MDEV-15192 - Trying to access missing tablespace -innodb.sp_temp_table : MDEV-16647 - Could not remove temporary table innodb.table_definition_cache_debug : MDEV-14206 - Extra warning innodb.table_flags : MDEV-14363 - Operating system error number 2 innodb.xa_recovery : MDEV-15279 - mysqld got exception #---------------------------------------------------------------- -innodb_fts.basic : Added in 10.1.34 innodb_fts.fts_kill_query : Added in 10.1.35 innodb_fts.innodb-fts-fic : MDEV-14154 - Assertion failure innodb_fts.innodb_fts_misc_debug : MDEV-14156 - Unexpected warning @@ -283,15 +240,14 @@ innodb_fts.sync_ddl : Added in 10.1.35 #---------------------------------------------------------------- -maria.alter : Modified in 10.1.34 +maria.concurrent : Added in 10.1.36 +maria.create : Added in 10.1.36 maria.insert_select : MDEV-12757 - Timeout maria.insert_select-7314 : MDEV-16492 - Timeout -maria.lock : Modified in 10.1.34 -maria.maria : MDEV-14430 - Wrong result; modified in 10.1.35 +maria.maria : MDEV-14430 - Wrong result; modified in 10.1.36 #---------------------------------------------------------------- -mariabackup.backup_ssl : Added in 10.1.34 mariabackup.incremental_encrypted : MDEV-15667 - Timeout mariabackup.mdev-14447 : MDEV-15201 - Timeout mariabackup.xb_compressed_encrypted : MDEV-14812 - Segfault @@ -333,7 +289,6 @@ parts.truncate_locked : Added in 10.1.35 perfschema.func_file_io : MDEV-5708 - fails for s390x perfschema.func_mutex : MDEV-5708 - fails for s390x perfschema.hostcache_ipv6_ssl : MDEV-10696 - crash on shutdown -perfschema.partition : Added in 10.1.34 perfschema.privilege_table_io : MDEV-13184 - Extra lines perfschema.rpl_gtid_func : MDEV-16897 - Wrong result perfschema.socket_summary_by_event_name_func : MDEV-10622 - Socket summary tables do not match @@ -348,7 +303,7 @@ perfschema_stress.* : MDEV-10996 - tests not maintained plugins.feedback_plugin_send : MDEV-7932 - ssl failed for url plugins.processlist : Added in 10.1.35 -plugins.server_audit : MDEV-9562 - crashes on sol10-sparc; modified in 10.1.34 +plugins.server_audit : MDEV-9562 - crashes on sol10-sparc plugins.thread_pool_server_audit : MDEV-9562 - crashes on sol10-sparc #---------------------------------------------------------------- @@ -358,7 +313,6 @@ roles.create_and_grant_role : MDEV-11772 - wrong result #---------------------------------------------------------------- rpl.last_insert_id : MDEV-10625 - warnings in error log -rpl.rename : Added in 10.1.34 rpl.rpl_auto_increment : MDEV-10417 - Fails on Mips rpl.rpl_auto_increment_bug45679 : MDEV-10417 - Fails on Mips rpl.rpl_auto_increment_update_failure : MDEV-10625 - warnings in error log @@ -368,6 +322,7 @@ rpl.rpl_ddl : MDEV-10417 - Fails on Mips rpl.rpl_domain_id_filter_io_crash : MDEV-14357 - Wrong result rpl.rpl_domain_id_filter_restart : MDEV-10684 - Wrong result rpl.rpl_drop_db_fail : MDEV-16898 - Slave fails to start +rpl.rpl_foreign_key_innodb : Modified in 10.1.36 rpl.rpl_gtid_basic : MDEV-10681 - server startup problem rpl.rpl_gtid_crash : MDEV-9501 - Warning: failed registering on master rpl.rpl_gtid_delete_domain : MDEV-14463 - Timeout in include @@ -384,7 +339,6 @@ rpl.rpl_insert_ignore : MDEV-14365 - Lost connection to MySQL se rpl.rpl_invoked_features : MDEV-10417 - Fails on Mips rpl.rpl_mariadb_slave_capability : MDEV-11018 - sporadic wrong events in binlog rpl.rpl_mdev6020 : MDEV-10417 - Fails on Mips -rpl.rpl_mixed_implicit_commit_binlog : Modified in 10.1.34 rpl.rpl_mixed_mixing_engines : MDEV-14489 - Sync slave with master failed rpl.rpl_non_direct_mixed_mixing_engines : MDEV-14489 - Sync slave with master failed rpl.rpl_non_direct_row_mixing_engines : MDEV-16561 - Timeout in master pos wait @@ -403,9 +357,9 @@ rpl.rpl_row_drop_create_temp_table : MDEV-14487 - Wrong result rpl.rpl_row_img_blobs : MDEV-13875 - command "diff_files" failed rpl.rpl_row_img_eng_min : MDEV-13875 - command "diff_files" failed rpl.rpl_row_img_eng_noblob : MDEV-13875 - command "diff_files" failed -rpl.rpl_row_implicit_commit_binlog : Modified in 10.1.34 rpl.rpl_row_index_choice : MDEV-15196 - Slave crash rpl.rpl_row_sp001 : MDEV-9329 - Fails on Ubuntu/s390x +rpl.rpl_row_spatial : Added in 10.1.36 rpl.rpl_semi_sync : MDEV-11220 - Wrong result rpl.rpl_semi_sync_after_sync : MDEV-14366 - Wrong result rpl.rpl_semi_sync_after_sync_row : MDEV-14366 - Wrong result @@ -416,7 +370,6 @@ rpl.rpl_show_slave_hosts : MDEV-10681 - server startup problem rpl.rpl_skip_replication : MDEV-9268 - Fails with timeout in sync_slave_with_master on Alpha rpl.rpl_slave_grp_exec : MDEV-10514 - Unexpected deadlock rpl.rpl_start_stop_slave : MDEV-13567 - Replication failure -rpl.rpl_stm_implicit_commit_binlog : Modified in 10.1.34 rpl.rpl_stm_mixing_engines : MDEV-14489 - Sync slave with master failed rpl.rpl_stm_relay_ign_space : MDEV-14360 - Test assertion rpl.rpl_sync : MDEV-10633 - Database page corruption @@ -463,6 +416,8 @@ sys_vars.wait_timeout_func : MDEV-12896 - Wrong result #---------------------------------------------------------------- +tokudb.* : suite.pm and multiple modifications in 10.1.36 + tokudb.change_column_all_1000_10 : MDEV-12640 - Crash tokudb.change_column_bin : MDEV-12640 - Crash tokudb.change_column_char : MDEV-12822 - Lost connection to MySQL server @@ -484,15 +439,18 @@ tokudb.type_datetime : MDEV-15193 - Wrong result tokudb_backup.* : MDEV-11001 - tests don't work +tokudb_bugs.alter_table_comment_rebuild_data : Added in 10.1.36 tokudb_bugs.checkpoint_lock : MDEV-10637 - Wrong processlist output tokudb_bugs.checkpoint_lock_3 : MDEV-10637 - Wrong processlist output tokudb_bugs.frm_store : MDEV-12823 - Valgrind tokudb_bugs.frm_store2 : MDEV-12823 - Valgrind tokudb_bugs.frm_store3 : MDEV-12823 - Valgrind +tokudb_bugs.PS-3773 : Added in 10.1.36 tokudb_bugs.xa : MDEV-11804 - Lock wait timeout tokudb_rpl.* : MDEV-11001 - tests don't work tokudb_sys_vars.* : MDEV-11001 - tests don't work + rpl-tokudb.* : MDEV-14354 - Tests fail with tcmalloc #---------------------------------------------------------------- @@ -514,6 +472,6 @@ vcol.vcol_misc : MDEV-16651 - Wrong error message; modified in 10.1.35 wsrep.foreign_key : MDEV-14725 - WSREP has not yet prepared node wsrep.mdev_6832 : MDEV-14195 - Failure upon check-testcase wsrep.pool_of_threads : MDEV-12234 - Library problem on Power -wsrep.variables : Modified in 10.1.34 +wsrep.variables : Modified in 10.1.36 wsrep_info.plugin : MDEV-12909 - Wrong result From 0254be96f76c7be75e0650342a826c3d66fade52 Mon Sep 17 00:00:00 2001 From: Sergei Golubchik Date: Fri, 7 Sep 2018 15:43:03 +0200 Subject: [PATCH 070/148] remove doubly-installed file --- support-files/CMakeLists.txt | 5 ----- 1 file changed, 5 deletions(-) diff --git a/support-files/CMakeLists.txt b/support-files/CMakeLists.txt index 55100c072f4..4ad3810e082 100644 --- a/support-files/CMakeLists.txt +++ b/support-files/CMakeLists.txt @@ -66,11 +66,6 @@ IF(UNIX) DESTINATION ${inst_location} COMPONENT Server_Scripts) ENDFOREACH() - CONFIGURE_FILE(${CMAKE_CURRENT_SOURCE_DIR}/wsrep.cnf.sh - ${CMAKE_CURRENT_BINARY_DIR}/wsrep.cnf @ONLY) - INSTALL(FILES ${CMAKE_CURRENT_BINARY_DIR}/wsrep.cnf - DESTINATION ${inst_location} COMPONENT SupportFiles) - IF(INSTALL_SUPPORTFILESDIR) INSTALL(FILES magic DESTINATION ${inst_location} COMPONENT SupportFiles) INSTALL(DIRECTORY policy DESTINATION ${inst_location} COMPONENT SupportFiles) From 4d991abd4fc7f60e758ec46301b0dd2bee71245c Mon Sep 17 00:00:00 2001 From: Igor Babaev Date: Fri, 7 Sep 2018 20:10:04 -0700 Subject: [PATCH 071/148] MDEV-17024 Crash on large query This problem manifested itself when a join query used two or more materialized CTE such that each of them employed the same recursive CTE. The bug caused a crash. The crash happened because the cleanup() function was performed premature for recursive CTE. This clean up was induced by the cleanup of the first CTE referenced the recusrsive CTE. This cleanup destroyed the structures that would allow to read from the temporary table containing the rows of the recursive CTE and an attempt to read these rows for the second CTE referencing the recursive CTE triggered a crash. The clean up for a recursive CTE R should be performed after the cleanup of the last materialized CTE that uses R. --- mysql-test/r/cte_recursive.result | 93 +++++++++++++++++++++++++++++++ mysql-test/t/cte_recursive.test | 67 ++++++++++++++++++++++ sql/sql_base.cc | 9 +++ sql/sql_class.h | 8 ++- sql/sql_cte.h | 11 +++- sql/sql_derived.cc | 6 +- sql/sql_union.cc | 33 ++++++++++- 7 files changed, 222 insertions(+), 5 deletions(-) diff --git a/mysql-test/r/cte_recursive.result b/mysql-test/r/cte_recursive.result index c892c76b33e..55733bede38 100644 --- a/mysql-test/r/cte_recursive.result +++ b/mysql-test/r/cte_recursive.result @@ -3300,3 +3300,96 @@ SELECT func(); func() 1 DROP FUNCTION func; +# +# MDEV-17024: two materialized CTEs using the same recursive CTE +# +create table t1 (id int); +insert into t1 values (1), (2), (3); +with recursive +rcte(a) as +(select 1 union select cast(a+1 as unsigned) from rcte where a < 10), +cte1 as +(select count(*) as c1 from rcte,t1 where a between 3 and 5 and id=a-3), +cte2 as +(select count(*) as c2 from rcte,t1 where a between 7 and 8 and id=a-7) +select * from cte1, cte2; +c1 c2 +2 1 +explain extended with recursive +rcte(a) as +(select 1 union select cast(a+1 as unsigned) from rcte where a < 10), +cte1 as +(select count(*) as c1 from rcte,t1 where a between 3 and 5 and id=a-3), +cte2 as +(select count(*) as c2 from rcte,t1 where a between 7 and 8 and id=a-7) +select * from cte1, cte2; +id select_type table type possible_keys key key_len ref rows filtered Extra +1 PRIMARY ALL NULL NULL NULL NULL 6 100.00 +1 PRIMARY ALL NULL NULL NULL NULL 6 100.00 Using join buffer (flat, BNL join) +4 DERIVED ALL NULL NULL NULL NULL 2 100.00 Using where +4 DERIVED t1 ALL NULL NULL NULL NULL 3 100.00 Using where; Using join buffer (flat, BNL join) +5 DERIVED ALL NULL NULL NULL NULL 2 100.00 Using where +5 DERIVED t1 ALL NULL NULL NULL NULL 3 100.00 Using where; Using join buffer (flat, BNL join) +2 DERIVED NULL NULL NULL NULL NULL NULL NULL NULL No tables used +3 RECURSIVE UNION ALL NULL NULL NULL NULL 2 100.00 Using where +NULL UNION RESULT ALL NULL NULL NULL NULL NULL NULL +Warnings: +Note 1003 with recursive rcte as (select 1 AS `a` union select cast(`rcte`.`a` + 1 as unsigned) AS `cast(a+1 as unsigned)` from `rcte` where `rcte`.`a` < 10), cte1 as (select count(0) AS `c1` from `rcte` join `test`.`t1` where `rcte`.`a` between 3 and 5 and `test`.`t1`.`id` = `rcte`.`a` - 3), cte2 as (select count(0) AS `c2` from `rcte` join `test`.`t1` where `rcte`.`a` between 7 and 8 and `test`.`t1`.`id` = `rcte`.`a` - 7)select `cte1`.`c1` AS `c1`,`cte2`.`c2` AS `c2` from `cte1` join `cte2` +prepare stmt from "with recursive +rcte(a) as +(select 1 union select cast(a+1 as unsigned) from rcte where a < 10), +cte1 as +(select count(*) as c1 from rcte,t1 where a between 3 and 5 and id=a-3), +cte2 as +(select count(*) as c2 from rcte,t1 where a between 7 and 8 and id=a-7) +select * from cte1, cte2"; +execute stmt; +c1 c2 +2 1 +execute stmt; +c1 c2 +2 1 +create table t2 (c1 int, c2 int); +create procedure p() insert into t2 with recursive +rcte(a) as +(select 1 union select cast(a+1 as unsigned) from rcte where a < 10), +cte1 as +(select count(*) as c1 from rcte,t1 where a between 3 and 5 and id=a-3), +cte2 as +(select count(*) as c2 from rcte,t1 where a between 7 and 8 and id=a-7) +select * from cte1, cte2; +call p(); +select * from t2; +c1 c2 +2 1 +with recursive +rcte(a) as +(select 1 union select cast(a+1 as unsigned) from rcte where a < 10), +cte1 as +(select count(*) as c1 from rcte,t1 where a between 3 and 5 and id=a-3), +cte2 as +(select count(*) as c2 from rcte,t1 where a between 7 and 8 and id=a-7) +select * from cte1; +c1 +2 +with recursive +rcte(a) as +(select 1 union select cast(a+1 as unsigned) from rcte where a < 10), +cte1 as +(select count(*) as c1 from t1), +cte2 as +(select count(*) as c2 from t2) +select * from cte1,cte2; +c1 c2 +3 1 +with recursive +rcte(a) as +(select 1 union select cast(a+1 as unsigned) from rcte where a < 10), +cte1 as +(select count(*) as c1 from rcte,t1 where a between 3 and 5 and id=a-3), +cte2 as +(select count(*) as c2 from rcte,t1 where a between 7 and 8 and id=a-7) +select * from cte1, cte2 where cte1.c1 = 3; +c1 c2 +drop procedure p; +drop table t1,t2; diff --git a/mysql-test/t/cte_recursive.test b/mysql-test/t/cte_recursive.test index 4eee9ef2214..e3a93498540 100644 --- a/mysql-test/t/cte_recursive.test +++ b/mysql-test/t/cte_recursive.test @@ -2323,3 +2323,70 @@ RETURN SELECT func(); DROP FUNCTION func; + +--echo # +--echo # MDEV-17024: two materialized CTEs using the same recursive CTE +--echo # + +create table t1 (id int); +insert into t1 values (1), (2), (3); + +let $q= +with recursive +rcte(a) as +(select 1 union select cast(a+1 as unsigned) from rcte where a < 10), +cte1 as +(select count(*) as c1 from rcte,t1 where a between 3 and 5 and id=a-3), +cte2 as +(select count(*) as c2 from rcte,t1 where a between 7 and 8 and id=a-7) +select * from cte1, cte2; + +eval $q; +eval explain extended $q; +eval prepare stmt from "$q"; +execute stmt; +execute stmt; + +create table t2 (c1 int, c2 int); +eval create procedure p() insert into t2 $q; +call p(); +select * from t2; + +let $q1= +with recursive +rcte(a) as +(select 1 union select cast(a+1 as unsigned) from rcte where a < 10), +cte1 as +(select count(*) as c1 from rcte,t1 where a between 3 and 5 and id=a-3), +cte2 as +(select count(*) as c2 from rcte,t1 where a between 7 and 8 and id=a-7) +select * from cte1; + +eval $q1; + +let $q2= +with recursive +rcte(a) as +(select 1 union select cast(a+1 as unsigned) from rcte where a < 10), +cte1 as +(select count(*) as c1 from t1), +cte2 as +(select count(*) as c2 from t2) +select * from cte1,cte2; + +eval $q2; + +let $q3= +with recursive +rcte(a) as +(select 1 union select cast(a+1 as unsigned) from rcte where a < 10), +cte1 as +(select count(*) as c1 from rcte,t1 where a between 3 and 5 and id=a-3), +cte2 as +(select count(*) as c2 from rcte,t1 where a between 7 and 8 and id=a-7) +select * from cte1, cte2 where cte1.c1 = 3; + +eval $q3; + +drop procedure p; +drop table t1,t2; diff --git a/sql/sql_base.cc b/sql/sql_base.cc index 36bf39ea8f3..cae5b4a3f7d 100644 --- a/sql/sql_base.cc +++ b/sql/sql_base.cc @@ -3295,6 +3295,15 @@ open_and_process_table(THD *thd, LEX *lex, TABLE_LIST *tables, */ if (tables->with) { + if (tables->is_recursive_with_table() && + !tables->is_with_table_recursive_reference()) + { + tables->with->rec_outer_references++; + With_element *with_elem= tables->with; + while ((with_elem= with_elem->get_next_mutually_recursive()) != + tables->with) + with_elem->rec_outer_references++; + } if (tables->set_as_with_table(thd, tables->with)) DBUG_RETURN(1); else diff --git a/sql/sql_class.h b/sql/sql_class.h index 4888b38bc30..1d8730ae008 100644 --- a/sql/sql_class.h +++ b/sql/sql_class.h @@ -5095,10 +5095,16 @@ class select_union_recursive :public select_union TABLE *first_rec_table_to_update; /* The temporary tables used for recursive table references */ List rec_tables; + /* + The count of how many times cleanup() was called with cleaned==false + for the unit specifying the recursive CTE for which this object was created + or for the unit specifying a CTE that mutually recursive with this CTE. + */ + uint cleanup_count; select_union_recursive(THD *thd_arg): select_union(thd_arg), - incr_table(0), first_rec_table_to_update(0) {}; + incr_table(0), first_rec_table_to_update(0), cleanup_count(0) {}; int send_data(List &items); bool create_result_table(THD *thd, List *column_types, diff --git a/sql/sql_cte.h b/sql/sql_cte.h index 70526e862dc..6351b65a07c 100644 --- a/sql/sql_cte.h +++ b/sql/sql_cte.h @@ -98,7 +98,14 @@ public: for the definition of this element */ bool is_recursive; - + /* + For a simple recursive CTE: the number of references to the CTE from + outside of the CTE specification. + For a CTE mutually recursive with other CTEs : the total number of + references to all these CTEs outside of their specification. + Each of these mutually recursive CTEs has the same value in this field. + */ + uint rec_outer_references; /* Any non-recursive select in the specification of a recursive with element is a called anchor. In the case mutually recursive @@ -140,7 +147,7 @@ public: top_level_dep_map(0), sq_rec_ref(NULL), next_mutually_recursive(NULL), references(0), query_name(name), column_list(list), spec(unit), - is_recursive(false), with_anchor(false), + is_recursive(false), rec_outer_references(0), with_anchor(false), level(0), rec_result(NULL) { unit->with_element= this; } diff --git a/sql/sql_derived.cc b/sql/sql_derived.cc index 0147271f068..44f8d74790f 100644 --- a/sql/sql_derived.cc +++ b/sql/sql_derived.cc @@ -1083,6 +1083,7 @@ bool mysql_derived_fill(THD *thd, LEX *lex, TABLE_LIST *derived) DBUG_ASSERT(derived->table && derived->table->is_created()); select_union *derived_result= derived->derived_result; SELECT_LEX *save_current_select= lex->current_select; + bool derived_recursive_is_filled= false; if (derived_is_recursive) { @@ -1095,6 +1096,7 @@ bool mysql_derived_fill(THD *thd, LEX *lex, TABLE_LIST *derived) { /* In this case all iteration are performed */ res= derived->fill_recursive(thd); + derived_recursive_is_filled= true; } } else if (unit->is_union()) @@ -1150,7 +1152,9 @@ bool mysql_derived_fill(THD *thd, LEX *lex, TABLE_LIST *derived) } } - if (res || (!lex->describe && !derived_is_recursive)) + if (res || (!lex->describe && + (!derived_is_recursive || + derived_recursive_is_filled))) unit->cleanup(); lex->current_select= save_current_select; diff --git a/sql/sql_union.cc b/sql/sql_union.cc index b409790c044..419ccf477d0 100644 --- a/sql/sql_union.cc +++ b/sql/sql_union.cc @@ -1337,6 +1337,37 @@ bool st_select_lex_unit::cleanup() { DBUG_RETURN(FALSE); } + /* + When processing a PS/SP or an EXPLAIN command cleanup of a unit can + be performed immediately when the unit is reached in the cleanup + traversal initiated by the cleanup of the main unit. + */ + if (!thd->stmt_arena->is_stmt_prepare() && !thd->lex->describe && + with_element && with_element->is_recursive && union_result) + { + select_union_recursive *result= with_element->rec_result; + if (++result->cleanup_count == with_element->rec_outer_references) + { + /* + Perform cleanup for with_element and for all with elements + mutually recursive with it. + */ + cleaned= 1; + with_element->get_next_mutually_recursive()->spec->cleanup(); + } + else + { + /* + Just increment by 1 cleanup_count for with_element and + for all with elements mutually recursive with it. + */ + With_element *with_elem= with_element; + while ((with_elem= with_elem->get_next_mutually_recursive()) != + with_element) + with_elem->rec_result->cleanup_count++; + DBUG_RETURN(FALSE); + } + } cleaned= 1; for (SELECT_LEX *sl= first_select(); sl; sl= sl->next_select()) @@ -1367,7 +1398,7 @@ bool st_select_lex_unit::cleanup() if (with_element && with_element->is_recursive) { - if (union_result ) + if (union_result) { ((select_union_recursive *) union_result)->cleanup(); delete union_result; From f01c4a10d74397220d7b7ffb724e6f52d3ab42a5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jan=20Lindstr=C3=B6m?= Date: Sat, 8 Sep 2018 08:12:55 +0300 Subject: [PATCH 072/148] Add one more wait for truncate in MW-44. --- mysql-test/suite/galera/r/MW-44.result | 8 ++++++++ mysql-test/suite/galera/t/MW-44.test | 7 +++++++ 2 files changed, 15 insertions(+) diff --git a/mysql-test/suite/galera/r/MW-44.result b/mysql-test/suite/galera/r/MW-44.result index 7e3d2f4b7ec..e5cc05057ce 100644 --- a/mysql-test/suite/galera/r/MW-44.result +++ b/mysql-test/suite/galera/r/MW-44.result @@ -1,5 +1,13 @@ TRUNCATE TABLE mysql.general_log; TRUNCATE TABLE mysql.general_log; +SELECT Argument FROM mysql.general_log; +Argument +SELECT COUNT(*) = 0 FROM mysql.general_log WHERE argument LIKE 'TRUNCATE%' +SELECT Argument FROM mysql.general_log +SELECT Argument FROM mysql.general_log; +Argument +SELECT COUNT(*) = 0 FROM mysql.general_log WHERE argument LIKE 'TRUNCATE%' +SELECT Argument FROM mysql.general_log SET GLOBAL general_log='ON'; SET SESSION wsrep_osu_method=TOI; CREATE TABLE t1 (f1 INTEGER) ENGINE=InnoDB; diff --git a/mysql-test/suite/galera/t/MW-44.test b/mysql-test/suite/galera/t/MW-44.test index 6defa432879..5bc5fa9dab8 100644 --- a/mysql-test/suite/galera/t/MW-44.test +++ b/mysql-test/suite/galera/t/MW-44.test @@ -10,8 +10,15 @@ TRUNCATE TABLE mysql.general_log; --connection node_2 TRUNCATE TABLE mysql.general_log; +--let $wait_condition = SELECT COUNT(*) = 0 FROM mysql.general_log WHERE argument LIKE 'TRUNCATE%'; +--source include/wait_condition.inc +SELECT Argument FROM mysql.general_log; --connection node_1 +--let $wait_condition = SELECT COUNT(*) = 0 FROM mysql.general_log WHERE argument LIKE 'TRUNCATE%'; +--source include/wait_condition.inc +SELECT Argument FROM mysql.general_log; + SET GLOBAL general_log='ON'; SET SESSION wsrep_osu_method=TOI; CREATE TABLE t1 (f1 INTEGER) ENGINE=InnoDB; From f1bcfbb4373e40dda2c18c137f76fc6ff32e1a45 Mon Sep 17 00:00:00 2001 From: Daniel Bartholomew Date: Sat, 8 Sep 2018 11:34:22 -0400 Subject: [PATCH 073/148] bump the VERSION --- VERSION | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/VERSION b/VERSION index f49c0084775..15d82f0dea5 100644 --- a/VERSION +++ b/VERSION @@ -1,3 +1,3 @@ MYSQL_VERSION_MAJOR=10 MYSQL_VERSION_MINOR=1 -MYSQL_VERSION_PATCH=36 +MYSQL_VERSION_PATCH=37 From c1f308054da4b37f4f83d6bff484be0e85fbc449 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jan=20Lindstr=C3=B6m?= Date: Sat, 8 Sep 2018 16:57:31 +0300 Subject: [PATCH 074/148] MDEV-17143: Galera test failure on galera.MW-44 Start general log OFF and then truncate mysql.general_log and use proper wait timeouts to make sure it is really empty. --- mysql-test/suite/galera/r/MW-44.result | 14 ++++---------- mysql-test/suite/galera/t/MW-44-master.opt | 1 + mysql-test/suite/galera/t/MW-44.test | 14 ++++++++------ 3 files changed, 13 insertions(+), 16 deletions(-) diff --git a/mysql-test/suite/galera/r/MW-44.result b/mysql-test/suite/galera/r/MW-44.result index e5cc05057ce..a07719daca1 100644 --- a/mysql-test/suite/galera/r/MW-44.result +++ b/mysql-test/suite/galera/r/MW-44.result @@ -2,12 +2,6 @@ TRUNCATE TABLE mysql.general_log; TRUNCATE TABLE mysql.general_log; SELECT Argument FROM mysql.general_log; Argument -SELECT COUNT(*) = 0 FROM mysql.general_log WHERE argument LIKE 'TRUNCATE%' -SELECT Argument FROM mysql.general_log -SELECT Argument FROM mysql.general_log; -Argument -SELECT COUNT(*) = 0 FROM mysql.general_log WHERE argument LIKE 'TRUNCATE%' -SELECT Argument FROM mysql.general_log SET GLOBAL general_log='ON'; SET SESSION wsrep_osu_method=TOI; CREATE TABLE t1 (f1 INTEGER) ENGINE=InnoDB; @@ -18,8 +12,8 @@ SELECT argument FROM mysql.general_log WHERE argument LIKE 'CREATE%' OR argument argument CREATE TABLE t1 (f1 INTEGER) ENGINE=InnoDB ALTER TABLE t1 ADD COLUMN f2 INTEGER -SET GLOBAL general_log='ON'; -SELECT COUNT(*) = 0 FROM mysql.general_log WHERE argument NOT LIKE 'SELECT%'; -COUNT(*) = 0 -0 +SELECT Argument FROM mysql.general_log; +Argument DROP TABLE t1; +SET GLOBAL general_log='OFF'; +SET GLOBAL general_log='OFF'; diff --git a/mysql-test/suite/galera/t/MW-44-master.opt b/mysql-test/suite/galera/t/MW-44-master.opt index a15aa0a99d9..9b086195e8a 100644 --- a/mysql-test/suite/galera/t/MW-44-master.opt +++ b/mysql-test/suite/galera/t/MW-44-master.opt @@ -1 +1,2 @@ --log-output=TABLE +--general-log=OFF diff --git a/mysql-test/suite/galera/t/MW-44.test b/mysql-test/suite/galera/t/MW-44.test index 5bc5fa9dab8..0f8b1319b2c 100644 --- a/mysql-test/suite/galera/t/MW-44.test +++ b/mysql-test/suite/galera/t/MW-44.test @@ -9,13 +9,12 @@ TRUNCATE TABLE mysql.general_log; --connection node_2 -TRUNCATE TABLE mysql.general_log; ---let $wait_condition = SELECT COUNT(*) = 0 FROM mysql.general_log WHERE argument LIKE 'TRUNCATE%'; +--let $wait_condition = SELECT COUNT(*) = 0 FROM mysql.general_log; --source include/wait_condition.inc -SELECT Argument FROM mysql.general_log; +TRUNCATE TABLE mysql.general_log; --connection node_1 ---let $wait_condition = SELECT COUNT(*) = 0 FROM mysql.general_log WHERE argument LIKE 'TRUNCATE%'; +--let $wait_condition = SELECT COUNT(*) = 0 FROM mysql.general_log; --source include/wait_condition.inc SELECT Argument FROM mysql.general_log; @@ -32,7 +31,10 @@ SET SESSION wsrep_osu_method=TOI; SELECT argument FROM mysql.general_log WHERE argument LIKE 'CREATE%' OR argument LIKE 'ALTER%'; --connection node_2 -SET GLOBAL general_log='ON'; -SELECT COUNT(*) = 0 FROM mysql.general_log WHERE argument NOT LIKE 'SELECT%'; +SELECT Argument FROM mysql.general_log; DROP TABLE t1; +SET GLOBAL general_log='OFF'; + +--connection node_1 +SET GLOBAL general_log='OFF'; From bdaace9b3073ff72d1cbcc510ae5541d043a5072 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jan=20Lindstr=C3=B6m?= Date: Mon, 10 Sep 2018 13:43:37 +0300 Subject: [PATCH 075/148] MDEV-17151: Galera test failure on galera.galera_var_node_address Add wait_conditions to wait expected node contents. --- mysql-test/suite/galera/r/galera_var_node_address.result | 2 +- mysql-test/suite/galera/t/galera_var_node_address.test | 8 +++++++- 2 files changed, 8 insertions(+), 2 deletions(-) diff --git a/mysql-test/suite/galera/r/galera_var_node_address.result b/mysql-test/suite/galera/r/galera_var_node_address.result index a9c900d8bc8..aa76086359e 100644 --- a/mysql-test/suite/galera/r/galera_var_node_address.result +++ b/mysql-test/suite/galera/r/galera_var_node_address.result @@ -4,7 +4,7 @@ call mtr.add_suppression("WSREP: Sending JOIN failed: -[0-9]+ (Transport endpoi SELECT VARIABLE_VALUE = 4 FROM INFORMATION_SCHEMA.GLOBAL_STATUS WHERE VARIABLE_NAME = 'wsrep_cluster_size'; VARIABLE_VALUE = 4 1 -CREATE TABLE t1 (f1 INTEGER); +CREATE TABLE t1 (f1 INTEGER) ENGINE=INNODB; INSERT INTO t1 VALUES (1); SELECT COUNT(*) = 1 FROM t1; COUNT(*) = 1 diff --git a/mysql-test/suite/galera/t/galera_var_node_address.test b/mysql-test/suite/galera/t/galera_var_node_address.test index 22e98e3aa82..b50265be5ae 100644 --- a/mysql-test/suite/galera/t/galera_var_node_address.test +++ b/mysql-test/suite/galera/t/galera_var_node_address.test @@ -13,13 +13,19 @@ call mtr.add_suppression("WSREP: Sending JOIN failed: -[0-9]+ (Transport endpoi SELECT VARIABLE_VALUE = 4 FROM INFORMATION_SCHEMA.GLOBAL_STATUS WHERE VARIABLE_NAME = 'wsrep_cluster_size'; --connection node_1 -CREATE TABLE t1 (f1 INTEGER); +CREATE TABLE t1 (f1 INTEGER) ENGINE=INNODB; --connection node_2 +let $wait_condition= SELECT COUNT(*) = 1 FROM INFORMATION_SCHEMA.INNODB_SYS_TABLES WHERE NAME LIKE 'test/t1'; +--source include/wait_condition.inc INSERT INTO t1 VALUES (1); --connect node_3, 127.0.0.1, root, , test, $NODE_MYPORT_3 --connection node_3 +let $wait_condition= SELECT COUNT(*) = 1 FROM INFORMATION_SCHEMA.INNODB_SYS_TABLES WHERE NAME LIKE 'test/t1'; +--source include/wait_condition.inc +let $wait_condition= SELECT COUNT(*) = 1 FROM t1; +--source include/wait_condition.inc SELECT COUNT(*) = 1 FROM t1; --connection node_1 From b7944343dd3f0bfd16023604611f7be811b994b6 Mon Sep 17 00:00:00 2001 From: Ian Gilfillan Date: Mon, 10 Sep 2018 14:26:11 +0200 Subject: [PATCH 076/148] Update contributors --- CREDITS | 4 +++- mysql-test/r/contributors.result | 4 +++- sql/contributors.h | 4 +++- 3 files changed, 9 insertions(+), 3 deletions(-) diff --git a/CREDITS b/CREDITS index 1788b6304fe..9f03f7fc24e 100644 --- a/CREDITS +++ b/CREDITS @@ -10,9 +10,11 @@ Microsoft https://microsoft.com/ (2017) Tencent Cloud https://cloud.tencent.com (2017) Development Bank of Singapore https://dbs.com (2016) IBM https://www.ibm.com (2017) +Tencent Games http://game.qq.com/ (2018) Visma https://visma.com (2015) -Acronis http://acronis.com (2016) +Acronis https://acronis.com (2016) Nexedi https://www.nexedi.com (2016) +Percona https://www.percona.com (2018) Tencent Game DBA http://tencentdba.com/about (2016) Tencent TDSQL http://tdsql.org (2016) Verkkokauppa.com https://www.verkkokauppa.com (2015) diff --git a/mysql-test/r/contributors.result b/mysql-test/r/contributors.result index 36d033f4cb3..3e4bf5f0d43 100644 --- a/mysql-test/r/contributors.result +++ b/mysql-test/r/contributors.result @@ -8,12 +8,14 @@ MariaDB Corporation https://mariadb.com Founding member, Platinum Sponsor of the Visma https://visma.com Gold Sponsor of the MariaDB Foundation DBS https://dbs.com Gold Sponsor of the MariaDB Foundation IBM https://www.ibm.com Gold Sponsor of the MariaDB Foundation +Tencent Games http://game.qq.com/ Gold Sponsor of the MariaDB Foundation Nexedi https://www.nexedi.com Silver Sponsor of the MariaDB Foundation -Acronis http://www.acronis.com Silver Sponsor of the MariaDB Foundation +Acronis https://www.acronis.com Silver Sponsor of the MariaDB Foundation Verkkokauppa.com https://www.verkkokauppa.com Bronze Sponsor of the MariaDB Foundation Virtuozzo https://virtuozzo.com Bronze Sponsor of the MariaDB Foundation Tencent Game DBA http://tencentdba.com/about Bronze Sponsor of the MariaDB Foundation Tencent TDSQL http://tdsql.org Bronze Sponsor of the MariaDB Foundation +Percona https://www.percona.com/ Bronze Sponsor of the MariaDB Foundation Google USA Sponsoring encryption, parallel replication and GTID Facebook USA Sponsoring non-blocking API, LIMIT ROWS EXAMINED etc Ronald Bradford Brisbane, Australia EFF contribution for UC2006 Auction diff --git a/sql/contributors.h b/sql/contributors.h index a0d05af3fa6..69f8fa6bd4c 100644 --- a/sql/contributors.h +++ b/sql/contributors.h @@ -45,12 +45,14 @@ struct show_table_contributors_st show_table_contributors[]= { {"Visma", "https://visma.com", "Gold Sponsor of the MariaDB Foundation"}, {"DBS", "https://dbs.com", "Gold Sponsor of the MariaDB Foundation"}, {"IBM", "https://www.ibm.com", "Gold Sponsor of the MariaDB Foundation"}, + {"Tencent Games", "http://game.qq.com/", "Gold Sponsor of the MariaDB Foundation"}, {"Nexedi", "https://www.nexedi.com", "Silver Sponsor of the MariaDB Foundation"}, - {"Acronis", "http://www.acronis.com", "Silver Sponsor of the MariaDB Foundation"}, + {"Acronis", "https://www.acronis.com", "Silver Sponsor of the MariaDB Foundation"}, {"Verkkokauppa.com", "https://www.verkkokauppa.com", "Bronze Sponsor of the MariaDB Foundation"}, {"Virtuozzo", "https://virtuozzo.com", "Bronze Sponsor of the MariaDB Foundation"}, {"Tencent Game DBA", "http://tencentdba.com/about", "Bronze Sponsor of the MariaDB Foundation"}, {"Tencent TDSQL", "http://tdsql.org", "Bronze Sponsor of the MariaDB Foundation"}, + {"Percona", "https://www.percona.com/", "Bronze Sponsor of the MariaDB Foundation"}, /* Sponsors of important features */ {"Google", "USA", "Sponsoring encryption, parallel replication and GTID"}, From e76c4c06f18c0d09a296a60b6d00332620e98e53 Mon Sep 17 00:00:00 2001 From: Sergey Vojtovich Date: Wed, 5 Sep 2018 14:44:07 +0400 Subject: [PATCH 077/148] MDEV-16773 - Assertion failed in tdc_remove_table This assertion fails in thread that removes all table instances for particular table from table cache (e.g. "DROP TABLE") while another thread evicts table instance of the same table from table cache concurrently. After "MDEV-10296 - Multi-instance table cache" there is a gap in eviction code of tc_add_table() between removing table from free_tables and all_tables not protected by any mutexes. This is now valid table cache state, however assertion wasn't amended along with original patch. Moved assertion down, after waiting for such table instances to get closed. --- sql/table_cache.cc | 16 +++++++++++++--- 1 file changed, 13 insertions(+), 3 deletions(-) diff --git a/sql/table_cache.cc b/sql/table_cache.cc index 7dfd1c2ac8e..7be5f5f771b 100644 --- a/sql/table_cache.cc +++ b/sql/table_cache.cc @@ -1123,11 +1123,10 @@ bool tdc_remove_table(THD *thd, enum_tdc_remove_table_type remove_type, All_share_tables_list::Iterator it(element->all_tables); while ((table= it++)) { - my_refs++; - DBUG_ASSERT(table->in_use == thd); + if (table->in_use == thd) + my_refs++; } } - DBUG_ASSERT(element->all_tables.is_empty() || remove_type != TDC_RT_REMOVE_ALL); mysql_mutex_unlock(&element->LOCK_table_share); while ((table= purge_tables.pop_front())) @@ -1159,6 +1158,17 @@ bool tdc_remove_table(THD *thd, enum_tdc_remove_table_type remove_type, mysql_mutex_lock(&element->LOCK_table_share); while (element->ref_count > my_refs) mysql_cond_wait(&element->COND_release, &element->LOCK_table_share); + DBUG_ASSERT(element->all_tables.is_empty() || + remove_type != TDC_RT_REMOVE_ALL); +#ifndef DBUG_OFF + if (remove_type == TDC_RT_REMOVE_NOT_OWN || + remove_type == TDC_RT_REMOVE_NOT_OWN_KEEP_SHARE) + { + All_share_tables_list::Iterator it(element->all_tables); + while ((table= it++)) + DBUG_ASSERT(table->in_use == thd); + } +#endif mysql_mutex_unlock(&element->LOCK_table_share); } From e43bc02e7b2752f0deb88cd1edc24d827e01dca9 Mon Sep 17 00:00:00 2001 From: Eugene Kosov Date: Mon, 16 Jul 2018 15:35:16 +0300 Subject: [PATCH 078/148] MDEV-16741 Assertion `m_extra_cache' failed in ha_partition::late_extra_cache multi_delete sets TABLE::no_cache=1 and should set it to 0 when DELETE is done. --- mysql-test/suite/parts/r/update_and_cache.result | 7 +++++++ mysql-test/suite/parts/t/update_and_cache.test | 12 ++++++++++++ sql/sql_delete.cc | 1 + sql/sql_update.cc | 2 +- 4 files changed, 21 insertions(+), 1 deletion(-) create mode 100644 mysql-test/suite/parts/r/update_and_cache.result create mode 100644 mysql-test/suite/parts/t/update_and_cache.test diff --git a/mysql-test/suite/parts/r/update_and_cache.result b/mysql-test/suite/parts/r/update_and_cache.result new file mode 100644 index 00000000000..52f13e66702 --- /dev/null +++ b/mysql-test/suite/parts/r/update_and_cache.result @@ -0,0 +1,7 @@ +CREATE TABLE t1 (pk INT PRIMARY KEY, a INT); +INSERT INTO t1 VALUES (1,10),(2,20); +CREATE TABLE t2 (b INT) PARTITION BY KEY (b) PARTITIONS 2; +INSERT INTO t2 VALUES (1),(2); +DELETE t2 FROM t2 WHERE b BETWEEN 5 AND 9; +UPDATE t2 JOIN t1 SET b = 5; +DROP TABLE t1, t2; diff --git a/mysql-test/suite/parts/t/update_and_cache.test b/mysql-test/suite/parts/t/update_and_cache.test new file mode 100644 index 00000000000..08ade807422 --- /dev/null +++ b/mysql-test/suite/parts/t/update_and_cache.test @@ -0,0 +1,12 @@ +--source include/have_partition.inc + +CREATE TABLE t1 (pk INT PRIMARY KEY, a INT); +INSERT INTO t1 VALUES (1,10),(2,20); + +CREATE TABLE t2 (b INT) PARTITION BY KEY (b) PARTITIONS 2; +INSERT INTO t2 VALUES (1),(2); + +DELETE t2 FROM t2 WHERE b BETWEEN 5 AND 9; +UPDATE t2 JOIN t1 SET b = 5; + +DROP TABLE t1, t2; diff --git a/sql/sql_delete.cc b/sql/sql_delete.cc index 8aca415a9d0..cdd7350cb0c 100644 --- a/sql/sql_delete.cc +++ b/sql/sql_delete.cc @@ -744,6 +744,7 @@ multi_delete::~multi_delete() { TABLE *table= table_being_deleted->table; table->no_keyread=0; + table->no_cache= 0; } for (uint counter= 0; counter < num_of_tables; counter++) diff --git a/sql/sql_update.cc b/sql/sql_update.cc index e42f6a4ff76..fe007d5823d 100644 --- a/sql/sql_update.cc +++ b/sql/sql_update.cc @@ -1868,7 +1868,7 @@ multi_update::~multi_update() TABLE_LIST *table; for (table= update_tables ; table; table= table->next_local) { - table->table->no_keyread= table->table->no_cache= 0; + table->table->no_keyread= 0; if (ignore) table->table->file->extra(HA_EXTRA_NO_IGNORE_DUP_KEY); } From 21829bd743f487280dba918857259b9971a8afbf Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jan=20Lindstr=C3=B6m?= Date: Tue, 11 Sep 2018 08:19:16 +0300 Subject: [PATCH 079/148] MDEV-17106: Test failure on galera.galera_binlog_stmt_autoinc Add missing test case with proper wait conditions for expected node contents. --- mysql-test/suite/galera/disabled.def | 3 +- .../r/galera_binlog_stmt_autoinc.result | 147 +++++++++++ .../galera/t/galera_binlog_stmt_autoinc.test | 230 ++++++++++++++++++ 3 files changed, 378 insertions(+), 2 deletions(-) create mode 100644 mysql-test/suite/galera/r/galera_binlog_stmt_autoinc.result create mode 100644 mysql-test/suite/galera/t/galera_binlog_stmt_autoinc.test diff --git a/mysql-test/suite/galera/disabled.def b/mysql-test/suite/galera/disabled.def index 40b4065c3db..bd9070683d4 100644 --- a/mysql-test/suite/galera/disabled.def +++ b/mysql-test/suite/galera/disabled.def @@ -31,6 +31,5 @@ MW-416 : MDEV-13549 Galera test failures galera_wan : MDEV-13549 Galera test failures MW-388 : MDEV-13549 Galera test failures galera_sst_mysqldump_with_key : MDEV-16890 Galera test failure -galera.galera_binlog_stmt_autoinc : MDEV-17106 Test failure on galera.galera_binlog_stmt_autoinc galera.galera_kill_ddl : MDEV-17108 Test failure on galera.galera_kill_ddl -galera.galera_var_node_address : MDEV-17151 Galera test failure on galera.galera_var_node_address + diff --git a/mysql-test/suite/galera/r/galera_binlog_stmt_autoinc.result b/mysql-test/suite/galera/r/galera_binlog_stmt_autoinc.result new file mode 100644 index 00000000000..8e8b79b168f --- /dev/null +++ b/mysql-test/suite/galera/r/galera_binlog_stmt_autoinc.result @@ -0,0 +1,147 @@ +SET GLOBAL wsrep_forced_binlog_format='STATEMENT'; +SET GLOBAL wsrep_forced_binlog_format='STATEMENT'; +CREATE TABLE t1 ( +i int(11) NOT NULL AUTO_INCREMENT, +c char(32) DEFAULT 'dummy_text', +PRIMARY KEY (i) +) ENGINE=InnoDB DEFAULT CHARSET=latin1; +insert into t1(i) values(null); +select * from t1; +i c +3 dummy_text +insert into t1(i) values(null), (null), (null); +select * from t1; +i c +3 dummy_text +5 dummy_text +7 dummy_text +9 dummy_text +select * from t1; +i c +3 dummy_text +5 dummy_text +7 dummy_text +9 dummy_text +SET GLOBAL wsrep_forced_binlog_format='none'; +SET GLOBAL wsrep_forced_binlog_format='none'; +drop table t1; +SET SESSION binlog_format='STATEMENT'; +show variables like 'binlog_format'; +Variable_name Value +binlog_format STATEMENT +SET GLOBAL wsrep_auto_increment_control='OFF'; +SET SESSION auto_increment_increment = 3; +SET SESSION auto_increment_offset = 1; +CREATE TABLE t1 ( +i int(11) NOT NULL AUTO_INCREMENT, +c char(32) DEFAULT 'dummy_text', +PRIMARY KEY (i) +) ENGINE=InnoDB DEFAULT CHARSET=latin1; +insert into t1(i) values(null); +select * from t1; +i c +4 dummy_text +insert into t1(i) values(null), (null), (null); +select * from t1; +i c +4 dummy_text +7 dummy_text +10 dummy_text +13 dummy_text +select * from t1; +i c +4 dummy_text +7 dummy_text +10 dummy_text +13 dummy_text +SET GLOBAL wsrep_auto_increment_control='ON'; +SET SESSION binlog_format='ROW'; +show variables like 'binlog_format'; +Variable_name Value +binlog_format ROW +show variables like '%auto_increment%'; +Variable_name Value +auto_increment_increment 2 +auto_increment_offset 1 +wsrep_auto_increment_control ON +SET GLOBAL wsrep_auto_increment_control='OFF'; +show variables like '%auto_increment%'; +Variable_name Value +auto_increment_increment 2 +auto_increment_offset 1 +wsrep_auto_increment_control OFF +SET GLOBAL wsrep_auto_increment_control='ON'; +drop table t1; +SET GLOBAL wsrep_forced_binlog_format='ROW'; +SET GLOBAL wsrep_forced_binlog_format='ROW'; +CREATE TABLE t1 ( +i int(11) NOT NULL AUTO_INCREMENT, +c char(32) DEFAULT 'dummy_text', +PRIMARY KEY (i) +) ENGINE=InnoDB DEFAULT CHARSET=latin1; +insert into t1(i) values(null); +select * from t1; +i c +3 dummy_text +insert into t1(i) values(null), (null), (null); +select * from t1; +i c +3 dummy_text +5 dummy_text +7 dummy_text +9 dummy_text +select * from t1; +i c +3 dummy_text +5 dummy_text +7 dummy_text +9 dummy_text +SET GLOBAL wsrep_forced_binlog_format='none'; +SET GLOBAL wsrep_forced_binlog_format='none'; +drop table t1; +SET SESSION binlog_format='ROW'; +show variables like 'binlog_format'; +Variable_name Value +binlog_format ROW +SET GLOBAL wsrep_auto_increment_control='OFF'; +SET SESSION auto_increment_increment = 3; +SET SESSION auto_increment_offset = 1; +CREATE TABLE t1 ( +i int(11) NOT NULL AUTO_INCREMENT, +c char(32) DEFAULT 'dummy_text', +PRIMARY KEY (i) +) ENGINE=InnoDB DEFAULT CHARSET=latin1; +insert into t1(i) values(null); +select * from t1; +i c +4 dummy_text +insert into t1(i) values(null), (null), (null); +select * from t1; +i c +4 dummy_text +7 dummy_text +10 dummy_text +13 dummy_text +select * from t1; +i c +4 dummy_text +7 dummy_text +10 dummy_text +13 dummy_text +SET GLOBAL wsrep_auto_increment_control='ON'; +show variables like 'binlog_format'; +Variable_name Value +binlog_format ROW +show variables like '%auto_increment%'; +Variable_name Value +auto_increment_increment 2 +auto_increment_offset 1 +wsrep_auto_increment_control ON +SET GLOBAL wsrep_auto_increment_control='OFF'; +show variables like '%auto_increment%'; +Variable_name Value +auto_increment_increment 2 +auto_increment_offset 1 +wsrep_auto_increment_control OFF +SET GLOBAL wsrep_auto_increment_control='ON'; +drop table t1; diff --git a/mysql-test/suite/galera/t/galera_binlog_stmt_autoinc.test b/mysql-test/suite/galera/t/galera_binlog_stmt_autoinc.test new file mode 100644 index 00000000000..d3889a89016 --- /dev/null +++ b/mysql-test/suite/galera/t/galera_binlog_stmt_autoinc.test @@ -0,0 +1,230 @@ +## +## Tests the auto-increment with binlog in STATEMENT mode. +## + +--source include/galera_cluster.inc +--source include/have_innodb.inc + +--let $node_1=node_1 +--let $node_2=node_2 +--source include/auto_increment_offset_save.inc + +## +## Verify the correct operation of the auto-increment when the binlog +## format artificially set to the 'STATEMENT' (although this mode is +## not recommended in the current version): +## + +--connection node_2 +SET GLOBAL wsrep_forced_binlog_format='STATEMENT'; + +--connection node_1 +SET GLOBAL wsrep_forced_binlog_format='STATEMENT'; + +CREATE TABLE t1 ( + i int(11) NOT NULL AUTO_INCREMENT, + c char(32) DEFAULT 'dummy_text', + PRIMARY KEY (i) +) ENGINE=InnoDB DEFAULT CHARSET=latin1; + +insert into t1(i) values(null); + +select * from t1; + +insert into t1(i) values(null), (null), (null); + +select * from t1; + +--connection node_2 +--let $wait_condition = SELECT COUNT(*) = 4 FROM t1; +--source include/wait_condition.inc +select * from t1; + +SET GLOBAL wsrep_forced_binlog_format='none'; + +--connection node_1 + +SET GLOBAL wsrep_forced_binlog_format='none'; + +drop table t1; + +## +## Check the operation when the automatic control over the auto-increment +## settings is switched off, that is, when we use the increment step and +## the offset specified by the user. In the current session, the binlog +## format is set to 'STATEMENT'. It is important that the values of the +## auto-increment options does not changed on other node - it allows us +## to check the correct transmission of the auto-increment options to +## other nodes: +## + +--disable_warnings +SET SESSION binlog_format='STATEMENT'; +--enable_warnings + +show variables like 'binlog_format'; + +SET GLOBAL wsrep_auto_increment_control='OFF'; + +SET SESSION auto_increment_increment = 3; +SET SESSION auto_increment_offset = 1; + +CREATE TABLE t1 ( + i int(11) NOT NULL AUTO_INCREMENT, + c char(32) DEFAULT 'dummy_text', + PRIMARY KEY (i) +) ENGINE=InnoDB DEFAULT CHARSET=latin1; + +insert into t1(i) values(null); + +select * from t1; + +insert into t1(i) values(null), (null), (null); + +select * from t1; + +--connection node_2 +--let $wait_condition = SELECT COUNT(*) = 4 FROM t1; +--source include/wait_condition.inc + +select * from t1; + +--connection node_1 + +## +## Verify the return to automatic calculation of the step +## and offset of the auto-increment: +## + +SET GLOBAL wsrep_auto_increment_control='ON'; + +SET SESSION binlog_format='ROW'; + +show variables like 'binlog_format'; +show variables like '%auto_increment%'; + +## +## Verify the recovery of original user-defined values after +## stopping the automatic control over auto-increment: +## + +SET GLOBAL wsrep_auto_increment_control='OFF'; + +show variables like '%auto_increment%'; + +## +## Restore original options and drop test table: +## + +SET GLOBAL wsrep_auto_increment_control='ON'; + +drop table t1; + +## +## Verify the correct operation of the auto-increment when the binlog +## format set to the 'ROW': +## + +--connection node_2 +SET GLOBAL wsrep_forced_binlog_format='ROW'; + +--connection node_1 +SET GLOBAL wsrep_forced_binlog_format='ROW'; + +CREATE TABLE t1 ( + i int(11) NOT NULL AUTO_INCREMENT, + c char(32) DEFAULT 'dummy_text', + PRIMARY KEY (i) +) ENGINE=InnoDB DEFAULT CHARSET=latin1; + +insert into t1(i) values(null); + +select * from t1; + +insert into t1(i) values(null), (null), (null); + +select * from t1; + +--connection node_2 +--let $wait_condition = SELECT COUNT(*) = 4 FROM t1; +--source include/wait_condition.inc + +select * from t1; + +SET GLOBAL wsrep_forced_binlog_format='none'; + +--connection node_1 + +SET GLOBAL wsrep_forced_binlog_format='none'; + +drop table t1; + +## +## Check the operation when the automatic control over the auto-increment +## settings is switched off, that is, when we use the increment step and +## the offset specified by the user. In the current session, the binlog +## format is set to 'ROW'. It is important that the values of the +## auto-increment options does not changed on other node - it allows us +## to check the correct transmission of the auto-increment options to +## other nodes: +## + +SET SESSION binlog_format='ROW'; + +show variables like 'binlog_format'; + +SET GLOBAL wsrep_auto_increment_control='OFF'; + +SET SESSION auto_increment_increment = 3; +SET SESSION auto_increment_offset = 1; + +CREATE TABLE t1 ( + i int(11) NOT NULL AUTO_INCREMENT, + c char(32) DEFAULT 'dummy_text', + PRIMARY KEY (i) +) ENGINE=InnoDB DEFAULT CHARSET=latin1; + +insert into t1(i) values(null); + +select * from t1; + +insert into t1(i) values(null), (null), (null); + +select * from t1; + +--connection node_2 +--let $wait_condition = SELECT COUNT(*) = 4 FROM t1; +--source include/wait_condition.inc + +select * from t1; + +--connection node_1 + +## +## Verify the return to automatic calculation of the step +## and offset of the auto-increment: +## + +SET GLOBAL wsrep_auto_increment_control='ON'; + +show variables like 'binlog_format'; +show variables like '%auto_increment%'; + +## +## Verify the recovery of original user-defined values after +## stopping the automatic control over auto-increment: +## + +SET GLOBAL wsrep_auto_increment_control='OFF'; + +show variables like '%auto_increment%'; + +## +## Restore original options and drop test table: +## + +SET GLOBAL wsrep_auto_increment_control='ON'; + +drop table t1; + +--source include/auto_increment_offset_restore.inc From 4d9ec7cb6c83c571115bde59d72f02b494764755 Mon Sep 17 00:00:00 2001 From: mkaruza Date: Fri, 31 Aug 2018 14:15:09 +0200 Subject: [PATCH 080/148] MDEV-16052 galera mtr galera_certification_double_failure fails with deadlock There was change in error reporting from my_error to my_message so new recording is required. --- .../galera_3nodes/r/galera_certification_double_failure.result | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mysql-test/suite/galera_3nodes/r/galera_certification_double_failure.result b/mysql-test/suite/galera_3nodes/r/galera_certification_double_failure.result index c2fdfc38dd5..e1528c6f74f 100644 --- a/mysql-test/suite/galera_3nodes/r/galera_certification_double_failure.result +++ b/mysql-test/suite/galera_3nodes/r/galera_certification_double_failure.result @@ -11,6 +11,6 @@ connection node_3; INSERT INTO t2 VALUES (1); connection node_1; COMMIT; -ERROR 40001: Deadlock found when trying to get lock; try restarting transaction +ERROR 40001: Deadlock: wsrep aborted transaction DROP TABLE t1; DROP TABLE t2; From c8bb43a9385cdb7a27f0702742a8d1e08a85befd Mon Sep 17 00:00:00 2001 From: Alexey Botchkov Date: Tue, 11 Sep 2018 14:37:45 +0400 Subject: [PATCH 081/148] MDEV-17121 JSON_ARRAY_APPEND. Extra comma added to the result when an json array is empty. --- include/json_lib.h | 6 ++++++ mysql-test/r/func_json.result | 6 ++++++ mysql-test/t/func_json.test | 7 +++++++ sql/item_jsonfunc.cc | 6 ++++-- strings/json_lib.c | 25 +++++++++++++++++++++++++ 5 files changed, 48 insertions(+), 2 deletions(-) diff --git a/include/json_lib.h b/include/json_lib.h index 567b04dbdc0..e9c10906502 100644 --- a/include/json_lib.h +++ b/include/json_lib.h @@ -319,6 +319,12 @@ int json_skip_to_level(json_engine_t *j, int level); json_skip_to_level((json_engine), (json_engine)->stack_p) +/* + works as json_skip_level() but also counts items on the current + level skipped. +*/ +int json_skip_level_and_count(json_engine_t *j, int *n_items_skipped); + #define json_skip_array_item json_skip_key /* diff --git a/mysql-test/r/func_json.result b/mysql-test/r/func_json.result index e8b2fac4fb8..9c7a10625e3 100644 --- a/mysql-test/r/func_json.result +++ b/mysql-test/r/func_json.result @@ -790,3 +790,9 @@ JSON_SET('{}', '$.a', _utf8 0xC3B6, '$.b', _utf8 0xC3B6) SELECT JSON_SET('{}', '$.a', _utf8 X'C3B6', '$.x', 1, '$.b', _utf8 X'C3B6'); JSON_SET('{}', '$.a', _utf8 X'C3B6', '$.x', 1, '$.b', _utf8 X'C3B6') {"a": "ö", "x": 1, "b": "ö"} +# +# MDEV-17121 JSON_ARRAY_APPEND +# +select json_array_append('[ ]', '$', 'aue'); +json_array_append('[ ]', '$', 'aue') +["aue"] diff --git a/mysql-test/t/func_json.test b/mysql-test/t/func_json.test index fd5e3d7d7ee..e27128a3f4a 100644 --- a/mysql-test/t/func_json.test +++ b/mysql-test/t/func_json.test @@ -448,3 +448,10 @@ SELECT JSON_SET('{}', '$.a', _utf8 0xC3B6); SELECT JSON_SET('{}', '$.a', _utf8 0xC3B6, '$.b', _utf8 0xC3B6); SELECT JSON_SET('{}', '$.a', _utf8 X'C3B6', '$.x', 1, '$.b', _utf8 X'C3B6'); + +--echo # +--echo # MDEV-17121 JSON_ARRAY_APPEND +--echo # + +select json_array_append('[ ]', '$', 'aue'); + diff --git a/sql/item_jsonfunc.cc b/sql/item_jsonfunc.cc index 4a837646451..1da53935441 100644 --- a/sql/item_jsonfunc.cc +++ b/sql/item_jsonfunc.cc @@ -1621,13 +1621,15 @@ String *Item_func_json_array_append::val_str(String *str) if (je.value_type == JSON_VALUE_ARRAY) { - if (json_skip_level(&je)) + int n_items; + if (json_skip_level_and_count(&je, &n_items)) goto js_error; ar_end= je.s.c_str - je.sav_c_len; str_rest_len= js->length() - (ar_end - (const uchar *) js->ptr()); str->q_append(js->ptr(), ar_end-(const uchar *) js->ptr()); - str->append(", ", 2); + if (n_items) + str->append(", ", 2); if (append_json_value(str, args[n_arg+1], &tmp_val)) goto return_null; /* Out of memory. */ diff --git a/strings/json_lib.c b/strings/json_lib.c index f6b4f15732d..1c0ff4b5345 100644 --- a/strings/json_lib.c +++ b/strings/json_lib.c @@ -1197,6 +1197,31 @@ int json_skip_to_level(json_engine_t *j, int level) } +#define json_skip_level(json_engine) \ + json_skip_to_level((json_engine), (json_engine)->stack_p) + + +/* + works as json_skip_level() but also counts items on the current + level skipped. +*/ +int json_skip_level_and_count(json_engine_t *j, int *n_items_skipped) +{ + int level= j->stack_p; + + *n_items_skipped= 0; + while (json_scan_next(j) == 0) + { + if (j->stack_p < level) + return 0; + if (j->stack_p == level && j->state == JST_VALUE) + (*n_items_skipped)++; + } + + return 1; +} + + int json_skip_key(json_engine_t *j) { if (json_read_value(j)) From c3124174c3ec43836147003a78af5d55bd624151 Mon Sep 17 00:00:00 2001 From: Vladislav Vaintroub Date: Tue, 11 Sep 2018 15:23:58 +0100 Subject: [PATCH 082/148] MDEV-17168 mariabackup reports "failed to open bitmap directory" MariaDB does not support changed page tracking, since 10.2. Remove bitmap initialization --- extra/mariabackup/xtrabackup.cc | 13 ------------- 1 file changed, 13 deletions(-) diff --git a/extra/mariabackup/xtrabackup.cc b/extra/mariabackup/xtrabackup.cc index 4af5cc0d1d5..d506228e8c6 100644 --- a/extra/mariabackup/xtrabackup.cc +++ b/extra/mariabackup/xtrabackup.cc @@ -4257,19 +4257,6 @@ fail_before_log_copying_thread_start: } debug_sync_point("xtrabackup_suspend_at_start"); - if (xtrabackup_incremental) { - if (!xtrabackup_incremental_force_scan) { - changed_page_bitmap = xb_page_bitmap_init(); - } - if (!changed_page_bitmap) { - msg("mariabackup: using the full scan for incremental " - "backup\n"); - } else if (incremental_lsn != checkpoint_lsn_start) { - /* Do not print that bitmaps are used when dummy bitmap - is build for an empty LSN range. */ - msg("mariabackup: using the changed page bitmap\n"); - } - } ut_a(xtrabackup_parallel > 0); From e46b2a3e94ac1e3413b5a650cb4410cc02bef1cd Mon Sep 17 00:00:00 2001 From: Vladislav Vaintroub Date: Tue, 11 Sep 2018 20:59:35 +0100 Subject: [PATCH 083/148] MDEV-12956 provide default datadir for mariabackup --copy-back On Unix, it is compiled-in datadir value. On Windows, the directory is ..\data, relative to directory mariabackup.exe server uses the same logic to determine datadir. --- extra/mariabackup/xtrabackup.cc | 35 +++++++++++++++++++++++++++++++-- 1 file changed, 33 insertions(+), 2 deletions(-) diff --git a/extra/mariabackup/xtrabackup.cc b/extra/mariabackup/xtrabackup.cc index 84f57bde64f..4e5b0c8e5be 100644 --- a/extra/mariabackup/xtrabackup.cc +++ b/extra/mariabackup/xtrabackup.cc @@ -443,6 +443,38 @@ datafiles_iter_free(datafiles_iter_t *it) ut_free(it); } + +/* + Retrieve default data directory, to be used with --copy-back. + + On Windows, default datadir is ..\data, relative to the + directory where mariabackup.exe is located(usually "bin") + + Elsewhere, the compiled-in constant MYSQL_DATADIR is used. +*/ +static char *get_default_datadir() { + static char ddir[] = MYSQL_DATADIR; +#ifdef _WIN32 + static char buf[MAX_PATH]; + DWORD size = (DWORD)sizeof(buf) - 1; + if (GetModuleFileName(NULL, buf, size) <= size) + { + char *p; + if ((p = strrchr(buf, '\\'))) + { + *p = 0; + if ((p = strrchr(buf, '\\'))) + { + strncpy(p + 1, "data", buf + MAX_PATH - p); + return buf; + } + } + } +#endif + return ddir; +} + + /* ======== Date copying thread context ======== */ typedef struct { @@ -6764,8 +6796,7 @@ int main(int argc, char **argv) if (xtrabackup_copy_back || xtrabackup_move_back) { if (!check_if_param_set("datadir")) { - msg("Error: datadir must be specified.\n"); - exit(EXIT_FAILURE); + mysql_data_home = get_default_datadir(); } if (!copy_back()) exit(EXIT_FAILURE); From eb2ca3d44586ebfb887ee54ea5e5275ee4b25623 Mon Sep 17 00:00:00 2001 From: Jacob Mathew Date: Tue, 11 Sep 2018 16:29:44 -0700 Subject: [PATCH 084/148] MDEV-16912: Spider Order By column[datatime] limit 5 returns 3 rows The problem occurs in 10.2 and earlier releases of MariaDB Server because the Partition Engine was not pushing the engine conditions to the underlying storage engine of each partition. This caused Spider to return the first 5 rows in the table with the data provided by the customer. 2 of the 5 rows did not qualify the WHERE clause, so they were removed from the result set by the server. To fix the problem, I have back-ported support for engine condition pushdown in the Partition Engine from MariaDB Server 10.3. Author: Jacob Mathew. Reviewer: Kentoku Shiba. --- sql/ha_partition.cc | 50 ++++++++ sql/ha_partition.h | 8 ++ .../spider/include/init_child2_1.inc | 14 +++ .../spider/include/init_master_1.inc | 4 + .../spider/r/spider_fixes_part.result | 49 ++++++++ .../spider/t/spider_fixes_part.test | 109 ++++++++++++++++++ 6 files changed, 234 insertions(+) diff --git a/sql/ha_partition.cc b/sql/ha_partition.cc index d4ecc0d3970..43f936cf200 100644 --- a/sql/ha_partition.cc +++ b/sql/ha_partition.cc @@ -9130,6 +9130,56 @@ int ha_partition::check_for_upgrade(HA_CHECK_OPT *check_opt) } +/** + Push an engine condition to the condition stack of the storage engine + for each partition. + + @param cond Pointer to the engine condition to be pushed. + + @return NULL Underlying engine will not return rows that + do not match the passed condition. + <> NULL 'Remainder' condition that the caller must use + to filter out records. +*/ + +const COND *ha_partition::cond_push(const COND *cond) +{ + handler **file= m_file; + COND *res_cond= NULL; + DBUG_ENTER("ha_partition::cond_push"); + + do + { + if ((*file)->pushed_cond != cond) + { + if ((*file)->cond_push(cond)) + res_cond= (COND *) cond; + else + (*file)->pushed_cond= cond; + } + } while (*(++file)); + DBUG_RETURN(res_cond); +} + + +/** + Pop the top condition from the condition stack of the storage engine + for each partition. +*/ + +void ha_partition::cond_pop() +{ + handler **file= m_file; + DBUG_ENTER("ha_partition::cond_pop"); + + do + { + (*file)->cond_pop(); + } while (*(++file)); + DBUG_VOID_RETURN; +} + + struct st_mysql_storage_engine partition_storage_engine= { MYSQL_HANDLERTON_INTERFACE_VERSION }; diff --git a/sql/ha_partition.h b/sql/ha_partition.h index a301cc3871c..286c6961531 100644 --- a/sql/ha_partition.h +++ b/sql/ha_partition.h @@ -1200,6 +1200,14 @@ public: virtual bool is_crashed() const; virtual int check_for_upgrade(HA_CHECK_OPT *check_opt); + /* + ----------------------------------------------------------------------- + MODULE condition pushdown + ----------------------------------------------------------------------- + */ + virtual const COND *cond_push(const COND *cond); + virtual void cond_pop(); + private: int handle_opt_partitions(THD *thd, HA_CHECK_OPT *check_opt, uint flags); int handle_opt_part(THD *thd, HA_CHECK_OPT *check_opt, uint part_id, diff --git a/storage/spider/mysql-test/spider/include/init_child2_1.inc b/storage/spider/mysql-test/spider/include/init_child2_1.inc index 10793649f94..782f538eb43 100644 --- a/storage/spider/mysql-test/spider/include/init_child2_1.inc +++ b/storage/spider/mysql-test/spider/include/init_child2_1.inc @@ -69,6 +69,20 @@ let $CHILD2_1_CREATE_TABLES6= ) $CHILD2_1_ENGINE $CHILD2_1_CHARSET; let $CHILD2_1_SELECT_TABLES6= SELECT a, b, date_format(c, '%Y-%m-%d %H:%i:%s') FROM ta_r_3 ORDER BY a; +let $CHILD2_1_DROP_TABLES7= + DROP TABLE IF EXISTS ta_ob; +let $CHILD2_1_CREATE_TABLES7= + CREATE TABLE ta_ob ( + a VARCHAR(50) NOT NULL, + b VARCHAR(50) NULL DEFAULT NULL, + c VARCHAR(100) NULL DEFAULT NULL, + d DATETIME(0) NULL DEFAULT NULL, + e INT(11) NOT NULL, + f INT(10) NULL DEFAULT NULL, + PRIMARY KEY (a, e) + ) $CHILD2_1_ENGINE $CHILD2_1_CHARSET; +let $CHILD2_1_SELECT_TABLES7= + SELECT * FROM ta_ob WHERE c LIKE "%510411106%" AND e = 510411 AND f != 1 ORDER BY d,c LIMIT 6 OFFSET 0; let $CHILD2_1_DROP_FT_TABLES= DROP TABLE IF EXISTS ft_r; let $CHILD2_1_CREATE_FT_TABLES= diff --git a/storage/spider/mysql-test/spider/include/init_master_1.inc b/storage/spider/mysql-test/spider/include/init_master_1.inc index 93947a8d454..2c45d0bd65d 100644 --- a/storage/spider/mysql-test/spider/include/init_master_1.inc +++ b/storage/spider/mysql-test/spider/include/init_master_1.inc @@ -94,6 +94,10 @@ if (!$VERSION_COMPILE_OS_WIN) CONNECTION='host "localhost", socket "$CHILD2_1_MYSOCK", user "root", password ""'; } +let $MASTER_1_COMMENT6_P_1_1= + COMMENT='database "auto_test_remote", table "ta_ob"' + PARTITION BY LIST COLUMNS (e) PARTITIONS 1 + (PARTITION pt1 values in (510411) COMMENT = 'srv "s_2_1"'); if ($VERSION_COMPILE_OS_WIN) { let $MASTER_1_COMMENT_FT_2_1= diff --git a/storage/spider/mysql-test/spider/r/spider_fixes_part.result b/storage/spider/mysql-test/spider/r/spider_fixes_part.result index faf0b6efbea..d2367af9bbd 100644 --- a/storage/spider/mysql-test/spider/r/spider_fixes_part.result +++ b/storage/spider/mysql-test/spider/r/spider_fixes_part.result @@ -214,6 +214,55 @@ id 10000 connection master_1; +Test ORDER BY with LIMIT and OFFSET +connection master_1; +CREATE TABLE ta_ob ( +a VARCHAR(50) NOT NULL, +b VARCHAR(50) NULL DEFAULT NULL, +c VARCHAR(100) NULL DEFAULT NULL, +d DATETIME(0) NULL DEFAULT NULL, +e INT(11) NOT NULL, +f INT(10) NULL DEFAULT NULL, +PRIMARY KEY (a, e) +) ENGINE=Spider COMMENT='database "auto_test_remote", table "ta_ob"' + PARTITION BY LIST COLUMNS (e) PARTITIONS 1 +(PARTITION pt1 values in (510411) COMMENT = 'srv "s_2_1"') +INSERT INTO ta_ob VALUES ('0B95CD65DF994BC9A09A6AABE53A2733', +'6CFED89FF6A84C7AA55C3C432663D094', +'51041110620304', '2018-08-02 13:41:13', +510411, 1); +INSERT INTO ta_ob VALUES ('15E8D55EF099443BAEE639E60A4650BD', +'879DC2A0B6AC46D9A62E8EA47E2970F2', +'51041110620301', NULL, +510411, 0); +INSERT INTO ta_ob VALUES ('51ECF2C0CD3C48D99C91792E99D3C1A0', +'017B8A460DBC444682B791305EF75356', +'51041110620308', '2018-08-02 13:48:29', +510411, 0); +INSERT INTO ta_ob VALUES ('093B37A93A534DF883787AF5F6799674', +'996C7F14989D480589A553717D735E3E', +'51041110620302', '2018-08-02 13:48:30', +510411, 0); +INSERT INTO ta_ob VALUES ('53F5266FB069499AB6234755CACA2583', +'017B8A460DBC444682B791305EF75356', +'51041110620308', '2018-08-02 13:48:28', +510411, 0); +INSERT INTO ta_ob VALUES ('56E59BC4BDC143868D4A219C2D07A24B', +'821E71E6ABB4404EBAA349BB681089F8', +'51041110620310', '2018-08-02 13:48:27', +510411, 0); +INSERT INTO ta_ob VALUES ('56B68DA68D6D4A04A08B453D09AD7B70', +'821E71E6ABB4404EBAA349BB681089F8', +'51041110620310', '2018-08-02 13:48:28', +510411, 0); +SELECT * FROM ta_ob WHERE c LIKE "%510411106%" AND e = 510411 AND f != 1 ORDER BY d,c LIMIT 5 OFFSET 1; +a b c d e f +56E59BC4BDC143868D4A219C2D07A24B 821E71E6ABB4404EBAA349BB681089F8 51041110620310 2018-08-02 13:48:27 510411 0 +53F5266FB069499AB6234755CACA2583 017B8A460DBC444682B791305EF75356 51041110620308 2018-08-02 13:48:28 510411 0 +56B68DA68D6D4A04A08B453D09AD7B70 821E71E6ABB4404EBAA349BB681089F8 51041110620310 2018-08-02 13:48:28 510411 0 +51ECF2C0CD3C48D99C91792E99D3C1A0 017B8A460DBC444682B791305EF75356 51041110620308 2018-08-02 13:48:29 510411 0 +093B37A93A534DF883787AF5F6799674 996C7F14989D480589A553717D735E3E 51041110620302 2018-08-02 13:48:30 510411 0 + deinit connection master_1; DROP DATABASE IF EXISTS auto_test_local; diff --git a/storage/spider/mysql-test/spider/t/spider_fixes_part.test b/storage/spider/mysql-test/spider/t/spider_fixes_part.test index ef5a8026c02..868e684f959 100644 --- a/storage/spider/mysql-test/spider/t/spider_fixes_part.test +++ b/storage/spider/mysql-test/spider/t/spider_fixes_part.test @@ -616,6 +616,115 @@ if ($HAVE_PARTITION) } } +--echo +--echo Test ORDER BY with LIMIT and OFFSET +if ($HAVE_PARTITION) +{ + if ($USE_CHILD_GROUP2) + { + if (!$OUTPUT_CHILD_GROUP2) + { + --disable_query_log + --disable_result_log + } + --connection child2_1 + if ($OUTPUT_CHILD_GROUP2) + { + --disable_query_log + echo CHILD2_1_DROP_TABLES7; + echo CHILD2_1_CREATE_TABLES7; + } + --disable_warnings + eval $CHILD2_1_DROP_TABLES7; + --enable_warnings + eval $CHILD2_1_CREATE_TABLES7; + if ($OUTPUT_CHILD_GROUP2) + { + --enable_query_log + } + if ($USE_GENERAL_LOG) + { + TRUNCATE TABLE mysql.general_log; + } + if (!$OUTPUT_CHILD_GROUP2) + { + --enable_query_log + --enable_result_log + } + } + --connection master_1 + --disable_query_log + --disable_warnings + DROP TABLE IF EXISTS ta_ob; + --enable_warnings + echo CREATE TABLE ta_ob ( + a VARCHAR(50) NOT NULL, + b VARCHAR(50) NULL DEFAULT NULL, + c VARCHAR(100) NULL DEFAULT NULL, + d DATETIME(0) NULL DEFAULT NULL, + e INT(11) NOT NULL, + f INT(10) NULL DEFAULT NULL, + PRIMARY KEY (a, e) + ) $MASTER_1_ENGINE $MASTER_1_COMMENT6_P_1_1; + eval CREATE TABLE ta_ob ( + a VARCHAR(50) NOT NULL, + b VARCHAR(50) NULL DEFAULT NULL, + c VARCHAR(100) NULL DEFAULT NULL, + d DATETIME(0) NULL DEFAULT NULL, + e INT(11) NOT NULL, + f INT(10) NULL DEFAULT NULL, + PRIMARY KEY (a, e) + ) $MASTER_1_ENGINE $MASTER_1_COMMENT6_P_1_1; + --enable_query_log + INSERT INTO ta_ob VALUES ('0B95CD65DF994BC9A09A6AABE53A2733', + '6CFED89FF6A84C7AA55C3C432663D094', + '51041110620304', '2018-08-02 13:41:13', + 510411, 1); + INSERT INTO ta_ob VALUES ('15E8D55EF099443BAEE639E60A4650BD', + '879DC2A0B6AC46D9A62E8EA47E2970F2', + '51041110620301', NULL, + 510411, 0); + INSERT INTO ta_ob VALUES ('51ECF2C0CD3C48D99C91792E99D3C1A0', + '017B8A460DBC444682B791305EF75356', + '51041110620308', '2018-08-02 13:48:29', + 510411, 0); + INSERT INTO ta_ob VALUES ('093B37A93A534DF883787AF5F6799674', + '996C7F14989D480589A553717D735E3E', + '51041110620302', '2018-08-02 13:48:30', + 510411, 0); + INSERT INTO ta_ob VALUES ('53F5266FB069499AB6234755CACA2583', + '017B8A460DBC444682B791305EF75356', + '51041110620308', '2018-08-02 13:48:28', + 510411, 0); + INSERT INTO ta_ob VALUES ('56E59BC4BDC143868D4A219C2D07A24B', + '821E71E6ABB4404EBAA349BB681089F8', + '51041110620310', '2018-08-02 13:48:27', + 510411, 0); + INSERT INTO ta_ob VALUES ('56B68DA68D6D4A04A08B453D09AD7B70', + '821E71E6ABB4404EBAA349BB681089F8', + '51041110620310', '2018-08-02 13:48:28', + 510411, 0); + SELECT * FROM ta_ob WHERE c LIKE "%510411106%" AND e = 510411 AND f != 1 ORDER BY d,c LIMIT 5 OFFSET 1; + if ($USE_CHILD_GROUP2) + { + if (!$OUTPUT_CHILD_GROUP2) + { + --disable_query_log + --disable_result_log + } + --connection child2_1 + if ($USE_GENERAL_LOG) + { + SELECT argument FROM mysql.general_log WHERE argument LIKE '%select %'; + } + eval $CHILD2_1_SELECT_TABLES7; + if (!$OUTPUT_CHILD_GROUP2) + { + --enable_query_log + --enable_result_log + } + } +} --echo --echo deinit From 16384fae63ed37e2115cb0d694d817bf0104dd46 Mon Sep 17 00:00:00 2001 From: mkaruza Date: Wed, 29 Aug 2018 16:45:28 +0200 Subject: [PATCH 085/148] MDEV-15845 Test failure on galera.galera_concurrent_ctas While executing CTAS galera applier thread can cause CTAS to abort and rollback. Rollback can take time causing applier thread to shutdown node after serial unsuccessful retries to apply transaction. Don't set lock_wait_timeout to zero to wait for lock. --- sql/sql_base.cc | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/sql/sql_base.cc b/sql/sql_base.cc index dc1122ffad8..fecb5686541 100644 --- a/sql/sql_base.cc +++ b/sql/sql_base.cc @@ -4379,6 +4379,10 @@ lock_table_names(THD *thd, const DDL_options_st &options, mdl_requests.push_front(&global_request); if (create_table) + #ifdef WITH_WSREP + if (thd->lex->sql_command != SQLCOM_CREATE_TABLE && + thd->wsrep_exec_mode != REPL_RECV) + #endif lock_wait_timeout= 0; // Don't wait for timeout } From c76ee73dc7b498d02f5de8f40aee2078302c33c4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jan=20Lindstr=C3=B6m?= Date: Wed, 12 Sep 2018 13:32:14 +0300 Subject: [PATCH 086/148] MDEV-13743: galera_toi_truncate may fail with: query 'reap' succeeded - should have failed with errno 1213 Replace sleep with debug sync point before insert commit to make sure insert is not executed before truncate has started. --- .../suite/galera/r/galera_toi_truncate.result | 2 ++ .../suite/galera/t/galera_toi_truncate.test | 16 +++++++++++++--- 2 files changed, 15 insertions(+), 3 deletions(-) diff --git a/mysql-test/suite/galera/r/galera_toi_truncate.result b/mysql-test/suite/galera/r/galera_toi_truncate.result index f52316f3cbc..fb2ac08d494 100644 --- a/mysql-test/suite/galera/r/galera_toi_truncate.result +++ b/mysql-test/suite/galera/r/galera_toi_truncate.result @@ -2,6 +2,8 @@ CREATE TABLE ten (f1 INTEGER) ENGINE=InnoDB; INSERT INTO ten VALUES (1),(2),(3),(4),(5),(6),(7),(8),(9),(10); CREATE TABLE t1 (f1 INTEGER) ENGINE=InnoDB; SET SESSION wsrep_retry_autocommit = 0; +INSERT INTO t1(f1) SELECT 1 FROM ten as a1, ten AS a2; +set debug_sync='ha_commit_trans_after_prepare WAIT_FOR go'; INSERT INTO t1 (f1) SELECT 1 FROM ten AS a1, ten AS a2, ten AS a3, ten AS a4, ten AS a5, ten AS a6;; TRUNCATE TABLE t1;; ERROR 40001: Deadlock found when trying to get lock; try restarting transaction diff --git a/mysql-test/suite/galera/t/galera_toi_truncate.test b/mysql-test/suite/galera/t/galera_toi_truncate.test index 59ef5c2028f..0c1d0e45e41 100644 --- a/mysql-test/suite/galera/t/galera_toi_truncate.test +++ b/mysql-test/suite/galera/t/galera_toi_truncate.test @@ -5,6 +5,8 @@ --source include/galera_cluster.inc --source include/have_innodb.inc +--source include/have_debug_sync.inc +--source include/not_embedded.inc # # INSERT and TRUNCATE on different nodes @@ -16,14 +18,23 @@ INSERT INTO ten VALUES (1),(2),(3),(4),(5),(6),(7),(8),(9),(10); CREATE TABLE t1 (f1 INTEGER) ENGINE=InnoDB; -# Insert 100K rows +# Insert 1m rows --connection node_2 +--let $wait_condition = SELECT COUNT(*) = 10 FROM ten; +--source include/wait_condition.inc + # Prevent autocommit retring from masking the deadlock error we expect to get SET SESSION wsrep_retry_autocommit = 0; +INSERT INTO t1(f1) SELECT 1 FROM ten as a1, ten AS a2; + +set debug_sync='ha_commit_trans_after_prepare WAIT_FOR go'; --send INSERT INTO t1 (f1) SELECT 1 FROM ten AS a1, ten AS a2, ten AS a3, ten AS a4, ten AS a5, ten AS a6; --connection node_1 ---sleep 1 +# Wait for a above insert to start +--let $wait_condition = SELECT COUNT(*) >= 100 from t1; +--source include/wait_condition.inc + --send TRUNCATE TABLE t1; --connection node_1 @@ -38,6 +49,5 @@ SELECT COUNT(*) = 0 FROM t1; --connection node_1 SELECT COUNT(*) = 0 FROM t1; - DROP TABLE t1; DROP TABLE ten; From 794e89ed3f92ef0468a95707e89322d2172357d2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jan=20Lindstr=C3=B6m?= Date: Wed, 12 Sep 2018 14:54:59 +0300 Subject: [PATCH 087/148] MDEV-17108: Test failure on galera.galera_kill_ddl Add suppression. --- mysql-test/suite/galera/r/galera_kill_ddl.result | 1 + mysql-test/suite/galera/t/galera_kill_ddl.test | 2 ++ 2 files changed, 3 insertions(+) diff --git a/mysql-test/suite/galera/r/galera_kill_ddl.result b/mysql-test/suite/galera/r/galera_kill_ddl.result index b83226bbd42..bf192500f17 100644 --- a/mysql-test/suite/galera/r/galera_kill_ddl.result +++ b/mysql-test/suite/galera/r/galera_kill_ddl.result @@ -1,3 +1,4 @@ +call mtr.add_suppression("WSREP: Last Applied Action message in non-primary configuration from member .*"); SET GLOBAL wsrep_provider_options = 'pc.ignore_sb=true'; CREATE TABLE t1 (f1 INTEGER) ENGINE=InnoDB; Killing server ... diff --git a/mysql-test/suite/galera/t/galera_kill_ddl.test b/mysql-test/suite/galera/t/galera_kill_ddl.test index 90f3f30cc76..ca59264ced4 100644 --- a/mysql-test/suite/galera/t/galera_kill_ddl.test +++ b/mysql-test/suite/galera/t/galera_kill_ddl.test @@ -5,6 +5,8 @@ --source include/galera_cluster.inc --source include/have_innodb.inc +call mtr.add_suppression("WSREP: Last Applied Action message in non-primary configuration from member .*"); + --connection node_1 # Enable the master to continue running during the split-brain situation that From 038804d59452f1c6b1569b10278eb865d81fa184 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jan=20Lindstr=C3=B6m?= Date: Wed, 12 Sep 2018 14:56:48 +0300 Subject: [PATCH 088/148] Update disabled Galera tests. --- mysql-test/suite/galera/disabled.def | 15 +++++++++++++-- 1 file changed, 13 insertions(+), 2 deletions(-) diff --git a/mysql-test/suite/galera/disabled.def b/mysql-test/suite/galera/disabled.def index bd9070683d4..c4aa0ad2a74 100644 --- a/mysql-test/suite/galera/disabled.def +++ b/mysql-test/suite/galera/disabled.def @@ -25,11 +25,22 @@ galera_gcache_recover_full_gcache : MDEV-13549 Galera test failures galera_gcache_recover_manytrx : MDEV-13549 Galera test failures galera_ssl_upgrade : MDEV-13549 Galera test failures galera.MW-329 : wsrep_local_replays not stable -galera.MW-328A : have_deadlocks test not stable query_cache : MDEV-15805 Test failure on galera.query_cache MW-416 : MDEV-13549 Galera test failures galera_wan : MDEV-13549 Galera test failures MW-388 : MDEV-13549 Galera test failures galera_sst_mysqldump_with_key : MDEV-16890 Galera test failure -galera.galera_kill_ddl : MDEV-17108 Test failure on galera.galera_kill_ddl +galera_binlog_stmt_autoinc: MDEV-17106 Test failure on galera.galera_binlog_stmt_autoinc +galera_gc_fc_limit : MDEV-17061 Test failure on galera.galera_gc_fc_limit +galera_applier_ftwrl_table_after : MDEV-13738 galera_applier_ftwrl_table_alter may fail with '2006: MySQL server has gone away' +galra_unicode_identifiers: MDEV-13871 galera.galera_unicode_identifiers failed in buildbot with 'Unknown database' +galera_suspend_slave: MDEV-13873 galera.galera_suspend_slave failed in buildbot with wrong error code +MW-328A : MDEV-13876 galera.MW-328A failed in buildbot with wrong result or timeout +galera_wan : MDEV-13879 galera.galera_wan fails in buildbot with Stray state UUID msg or with "Transport endpoint is not connected" or with a failure to start a node +partition : MDEV-13881 galera.partition failed in buildbot with wrong result +galera_transaction_read_only : MDEV-14142 galera.galera_transaction_read_only fails in buildbot with wrong result +galera_kill_smallchanges : MDEV-14143 galera.galera_kill_smallchanges, galera.galera_kill_ddl fail in buildbot with "Last Applied Action message in non-primary configuration from member 0" +MW-328B : MDEV-14145 galera.MW-328B failed in buildbot with a timeout +MW-328C : MDEV-14149 galera.MW-328A, galera.MW-328C failed with "Found wrong usage of mutex" +galera_as_slave_replication_budle : MDEV-15785 Test case galera_as_slave_replication_bundle caused debug assertion From e63b84b9167f334605dfe1f1b46555cdd2e13a8d Mon Sep 17 00:00:00 2001 From: Sergei Petrunia Date: Sun, 9 Sep 2018 21:07:46 +0300 Subject: [PATCH 089/148] MDEV-17155: Incorrect ORDER BY optimization: full index scan is used instead of range The bug was this scenario: 1. Join optimizer picks a range plan on index IDX1 (This index doesn't match the ORDER BY clause, so sorting will be needed) 2. Index Condition Pushdown pushes a part of WHERE down. The pushed condition is removed from SQL_SELECT::cond 3. test_if_skip_sort_order() figures that it's better to use IDX2 (as it will match ORDER BY ... LIMIT and so will execute faster) 3.1 It sees that there was a possible range access on IDX2. It tries to construct it by calling SQL_SELECT::test_quick_select(), but alas, SQL_SELECT::cond doesn't have all parts of WHERE anymore. So it uses full index scan which is slow. (The execution works fine because there's code further in test_if_skip_sort_order() which "Unpushes" the index condition and restores the original WHERE clause. It was just the test_quick_select call that suffered). --- sql/sql_select.cc | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) diff --git a/sql/sql_select.cc b/sql/sql_select.cc index 0885316c5f7..fa0be81ff3d 100644 --- a/sql/sql_select.cc +++ b/sql/sql_select.cc @@ -21244,11 +21244,30 @@ test_if_skip_sort_order(JOIN_TAB *tab,ORDER *order,ha_rows select_limit, tmp_map.clear_all(); // Force the creation of quick select tmp_map.set_bit(best_key); // only best_key. select->quick= 0; + + bool cond_saved= false; + Item *saved_cond; + + /* + Index Condition Pushdown may have removed parts of the condition for + this table. Temporarily put them back because we want the whole + condition for the range analysis. + */ + if (select->pre_idx_push_select_cond) + { + saved_cond= select->cond; + select->cond= select->pre_idx_push_select_cond; + cond_saved= true; + } + select->test_quick_select(join->thd, tmp_map, 0, join->select_options & OPTION_FOUND_ROWS ? HA_POS_ERROR : join->unit->select_limit_cnt, TRUE, FALSE, FALSE); + + if (cond_saved) + select->cond= saved_cond; } order_direction= best_key_direction; /* From 6c7910ee221c7ceb3826088b3f00ea95ba3b93ba Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jan=20Lindstr=C3=B6m?= Date: Wed, 12 Sep 2018 11:25:47 +0300 Subject: [PATCH 090/148] Fix test galera#505 galera library version check. Test requires galera library version 25.3.24. --- mysql-test/suite/galera/t/galera#505.test | 24 +++++++++-------------- 1 file changed, 9 insertions(+), 15 deletions(-) diff --git a/mysql-test/suite/galera/t/galera#505.test b/mysql-test/suite/galera/t/galera#505.test index 78cdf53db74..785b1411596 100644 --- a/mysql-test/suite/galera/t/galera#505.test +++ b/mysql-test/suite/galera/t/galera#505.test @@ -2,23 +2,17 @@ --source include/galera_cluster.inc ---disable_query_log -select CAST(REGEXP_REPLACE(variable_value,'^(\\d+)\\.(\\d+)\\.(\\d+)(r\\d+)','\\3') AS UNSIGNED) FROM INFORMATION_SCHEMA.GLOBAL_STATUS WHERE VARIABLE_NAME LIKE 'wsrep_provider_version' INTO @GALERA_VERSION; - -# Make sure that the test is operating on the right version of galera library. ---let $galera_version=24 -eval SET @REQUIRED_GALERA_VERSION='$galera_version'; - -SELECT @GALERA_VERSION, @REQUIRED_GALERA_VERSION; - -if (!`SELECT (@GALERA_VERSION < @REQUIRED_GALERA_VERSION)`) -{ - skip Test requires Galera library version 25.3.$galera_version; -} ---enable_query_log - --connection node_1 +SET SESSION wsrep_sync_wait=0; +--disable_result_log +--disable_query_log +--let $galera_version=25.3.24 +source ../../wsrep/include/check_galera_version.inc; +--enable_result_log +--enable_query_log +SET SESSION wsrep_sync_wait=DEFAULT; + # Convert "... pc.weight = N; ..." to "N; ..." --let $s1 = `SELECT SUBSTR(@@wsrep_provider_options, LOCATE('pc.weight =', @@wsrep_provider_options) + LENGTH('pc.weight = '))` # Convert "N; ..." to "N" From a93363022ccdb66846f2fc87b630ebdf4184b45d Mon Sep 17 00:00:00 2001 From: Alexey Botchkov Date: Wed, 12 Sep 2018 21:57:28 +0400 Subject: [PATCH 091/148] MDEV-17018 JSON_SEARCH and User-Defined Variables. Item_func_json_search needs a member to store the path. --- mysql-test/r/func_json.result | 8 ++++++++ mysql-test/t/func_json.test | 8 ++++++++ sql/item_jsonfunc.cc | 2 +- sql/item_jsonfunc.h | 2 +- 4 files changed, 18 insertions(+), 2 deletions(-) diff --git a/mysql-test/r/func_json.result b/mysql-test/r/func_json.result index 9c7a10625e3..6ba4ed753ea 100644 --- a/mysql-test/r/func_json.result +++ b/mysql-test/r/func_json.result @@ -796,3 +796,11 @@ JSON_SET('{}', '$.a', _utf8 X'C3B6', '$.x', 1, '$.b', _utf8 X'C3B6') select json_array_append('[ ]', '$', 'aue'); json_array_append('[ ]', '$', 'aue') ["aue"] +# +# MDEV-17018 JSON_SEARCH and User-Defined Variables. +# +SET @`json` := '["A", [{"B": "1"}], {"C": "AB"}, {"D": "BC"}]', @`value` := 'AB'; +SELECT JSON_SEARCH(@`json`, 'one', @`value`); +JSON_SEARCH(@`json`, 'one', @`value`) +"$[2].C" +SET @`json` := NULL, @`value` := NULL; diff --git a/mysql-test/t/func_json.test b/mysql-test/t/func_json.test index e27128a3f4a..0790ea2ffba 100644 --- a/mysql-test/t/func_json.test +++ b/mysql-test/t/func_json.test @@ -455,3 +455,11 @@ SELECT JSON_SET('{}', '$.a', _utf8 X'C3B6', '$.x', 1, '$.b', _utf8 X'C3B6'); select json_array_append('[ ]', '$', 'aue'); +--echo # +--echo # MDEV-17018 JSON_SEARCH and User-Defined Variables. +--echo # + +SET @`json` := '["A", [{"B": "1"}], {"C": "AB"}, {"D": "BC"}]', @`value` := 'AB'; +SELECT JSON_SEARCH(@`json`, 'one', @`value`); +SET @`json` := NULL, @`value` := NULL; + diff --git a/sql/item_jsonfunc.cc b/sql/item_jsonfunc.cc index 1da53935441..4cb79749903 100644 --- a/sql/item_jsonfunc.cc +++ b/sql/item_jsonfunc.cc @@ -3056,7 +3056,7 @@ static int append_json_path(String *str, const json_path_t *p) String *Item_func_json_search::val_str(String *str) { String *js= args[0]->val_json(&tmp_js); - String *s_str= args[2]->val_str(&tmp_js); + String *s_str= args[2]->val_str(&tmp_path); json_engine_t je; json_path_t p, sav_path; uint n_arg; diff --git a/sql/item_jsonfunc.h b/sql/item_jsonfunc.h index f331ee3b582..f2358168080 100644 --- a/sql/item_jsonfunc.h +++ b/sql/item_jsonfunc.h @@ -400,7 +400,7 @@ public: class Item_func_json_search: public Item_json_str_multipath { protected: - String tmp_js, esc_value; + String tmp_js, tmp_path, esc_value; bool mode_one; bool ooa_constant, ooa_parsed; int escape; From b96d36344ef0d2ee76722299dfc30775f0d6d54a Mon Sep 17 00:00:00 2001 From: Daniel Black Date: Thu, 13 Sep 2018 09:58:50 +1000 Subject: [PATCH 092/148] MDEV-17173: correct parsing of 12.13.14.15:4444/xtrabackup_sst leaving LSN/SST_VER blank Correcting commit e78e308e818 $ . scripts/wsrep_sst_common.sh --address 12.13.14.15:4444/xtrabackup_sst ; set | grep WSREP_SST WSREP_SST_OPT_ADDR=12.13.14.15:4444/xtrabackup_sst WSREP_SST_OPT_ADDR_PORT=4444 WSREP_SST_OPT_AUTH= WSREP_SST_OPT_BINLOG= WSREP_SST_OPT_BINLOG_INDEX= WSREP_SST_OPT_BYPASS=0 WSREP_SST_OPT_CONF=' ' WSREP_SST_OPT_DATA= WSREP_SST_OPT_DEFAULT= WSREP_SST_OPT_EXTRA_DEFAULT= WSREP_SST_OPT_HOST=12.13.14.15 WSREP_SST_OPT_HOST_UNESCAPED=12.13.14.15 WSREP_SST_OPT_LSN= WSREP_SST_OPT_MODULE=xtrabackup_sst WSREP_SST_OPT_PATH=xtrabackup_sst WSREP_SST_OPT_PORT=4444 WSREP_SST_OPT_PSWD= WSREP_SST_OPT_SST_VER= WSREP_SST_OPT_SUFFIX_DEFAULT= WSREP_SST_OPT_SUFFIX_VALUE= WSREP_SST_OPT_USER= . scripts/wsrep_sst_common.sh --address 12.13.14.15:4444/xtrabackup_sst/1234/5676 ; set | grep WSREP_SST WSREP_SST_OPT_ADDR=12.13.14.15:4444/xtrabackup_sst/1234/5676 WSREP_SST_OPT_ADDR_PORT=4444 WSREP_SST_OPT_AUTH= WSREP_SST_OPT_BINLOG= WSREP_SST_OPT_BINLOG_INDEX= WSREP_SST_OPT_BYPASS=0 WSREP_SST_OPT_CONF=' ' WSREP_SST_OPT_DATA= WSREP_SST_OPT_DEFAULT= WSREP_SST_OPT_EXTRA_DEFAULT= WSREP_SST_OPT_HOST=12.13.14.15 WSREP_SST_OPT_HOST_UNESCAPED=12.13.14.15 WSREP_SST_OPT_LSN=1234 WSREP_SST_OPT_MODULE=xtrabackup_sst WSREP_SST_OPT_PATH=xtrabackup_sst/1234/5676 WSREP_SST_OPT_PORT=4444 WSREP_SST_OPT_PSWD= WSREP_SST_OPT_SST_VER=5676 WSREP_SST_OPT_SUFFIX_DEFAULT= WSREP_SST_OPT_SUFFIX_VALUE= WSREP_SST_OPT_USER= --- scripts/wsrep_sst_common.sh | 15 ++++++++++++--- 1 file changed, 12 insertions(+), 3 deletions(-) diff --git a/scripts/wsrep_sst_common.sh b/scripts/wsrep_sst_common.sh index b3969af10a2..e63ffdfa58b 100644 --- a/scripts/wsrep_sst_common.sh +++ b/scripts/wsrep_sst_common.sh @@ -57,9 +57,18 @@ case "$1" in readonly WSREP_SST_OPT_MODULE=${remain%%/*} readonly WSREP_SST_OPT_PATH=${WSREP_SST_OPT_ADDR#*/} remain=${WSREP_SST_OPT_PATH#*/} - readonly WSREP_SST_OPT_LSN=${remain%%/*} - remain=${remain#*/} - readonly WSREP_SST_OPT_SST_VER=${remain%%/*} + if [ "$remain" != "${WSREP_SST_OPT_PATH}" ]; then + readonly WSREP_SST_OPT_LSN=${remain%%/*} + remain=${remain#*/} + if [ "$remain" != "${WSREP_SST_OPT_LSN}" ]; then + readonly WSREP_SST_OPT_SST_VER=${remain%%/*} + else + readonly WSREP_SST_OPT_SST_VER="" + fi + else + readonly WSREP_SST_OPT_LSN="" + readonly WSREP_SST_OPT_SST_VER="" + fi shift ;; '--bypass') From f54485eadbab7fa1c6a388408cf908daf488284c Mon Sep 17 00:00:00 2001 From: Alexey Botchkov Date: Thu, 13 Sep 2018 13:42:09 +0400 Subject: [PATCH 093/148] MDEV-17001 JSON_MERGE returns nullwhen merging empty array. Don't add the comma if nothing appended to the array. --- mysql-test/r/func_json.result | 6 ++++++ mysql-test/t/func_json.test | 5 +++++ sql/item_jsonfunc.cc | 29 +++++++++++++---------------- strings/json_lib.c | 4 ---- 4 files changed, 24 insertions(+), 20 deletions(-) diff --git a/mysql-test/r/func_json.result b/mysql-test/r/func_json.result index 6ba4ed753ea..c828b2676b4 100644 --- a/mysql-test/r/func_json.result +++ b/mysql-test/r/func_json.result @@ -804,3 +804,9 @@ SELECT JSON_SEARCH(@`json`, 'one', @`value`); JSON_SEARCH(@`json`, 'one', @`value`) "$[2].C" SET @`json` := NULL, @`value` := NULL; +# +# MDEV-17001 JSON_MERGE returns nullwhen merging empty array. +# +SELECT JSON_MERGE('[1]', '[]'); +JSON_MERGE('[1]', '[]') +[1] diff --git a/mysql-test/t/func_json.test b/mysql-test/t/func_json.test index 0790ea2ffba..1dc16419cfd 100644 --- a/mysql-test/t/func_json.test +++ b/mysql-test/t/func_json.test @@ -463,3 +463,8 @@ SET @`json` := '["A", [{"B": "1"}], {"C": "AB"}, {"D": "BC"}]', @`value` := 'AB' SELECT JSON_SEARCH(@`json`, 'one', @`value`); SET @`json` := NULL, @`value` := NULL; +--echo # +--echo # MDEV-17001 JSON_MERGE returns nullwhen merging empty array. +--echo # + +SELECT JSON_MERGE('[1]', '[]'); diff --git a/sql/item_jsonfunc.cc b/sql/item_jsonfunc.cc index 4cb79749903..60726050aca 100644 --- a/sql/item_jsonfunc.cc +++ b/sql/item_jsonfunc.cc @@ -2020,23 +2020,14 @@ continue_j2: else { const uchar *end1, *beg1, *end2, *beg2; - int empty_array= 0; + int n_items1=1, n_items2= 1; beg1= je1->value_begin; /* Merge as a single array. */ if (je1->value_type == JSON_VALUE_ARRAY) { - int cur_level= je1->stack_p; - empty_array= 1; - while (json_scan_next(je1) == 0) - { - if (je1->stack_p < cur_level) - break; - empty_array= 0; - } - - if (je1->s.error) + if (json_skip_level_and_count(je1, &n_items1)) return 1; end1= je1->s.c_str - je1->sav_c_len; @@ -2055,8 +2046,7 @@ continue_j2: end1= je1->value_end; } - if (str->append((const char*) beg1, end1 - beg1) || - (!empty_array && str->append(", ", 2))) + if (str->append((const char*) beg1, end1 - beg1)) return 3; if (json_value_scalar(je2)) @@ -2067,15 +2057,22 @@ continue_j2: else { if (je2->value_type == JSON_VALUE_OBJECT) + { beg2= je2->value_begin; + if (json_skip_level(je2)) + return 2; + } else + { beg2= je2->s.c_str; - if (json_skip_level(je2)) - return 2; + if (json_skip_level_and_count(je2, &n_items2)) + return 2; + } end2= je2->s.c_str; } - if (str->append((const char*) beg2, end2 - beg2)) + if ((n_items1 && n_items2 && str->append(", ", 2)) || + str->append((const char*) beg2, end2 - beg2)) return 3; if (je2->value_type != JSON_VALUE_ARRAY && diff --git a/strings/json_lib.c b/strings/json_lib.c index 1c0ff4b5345..4f12cbb82b5 100644 --- a/strings/json_lib.c +++ b/strings/json_lib.c @@ -1197,10 +1197,6 @@ int json_skip_to_level(json_engine_t *j, int level) } -#define json_skip_level(json_engine) \ - json_skip_to_level((json_engine), (json_engine)->stack_p) - - /* works as json_skip_level() but also counts items on the current level skipped. From c9d6728c36831ee4e1ba0b105652922faa4a3aee Mon Sep 17 00:00:00 2001 From: Oleksandr Byelkin Date: Thu, 13 Sep 2018 11:15:22 +0200 Subject: [PATCH 094/148] try to fix version detection --- mysql-test/suite/wsrep/include/check_galera_version.inc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/mysql-test/suite/wsrep/include/check_galera_version.inc b/mysql-test/suite/wsrep/include/check_galera_version.inc index fd691161a54..32d01197f94 100644 --- a/mysql-test/suite/wsrep/include/check_galera_version.inc +++ b/mysql-test/suite/wsrep/include/check_galera_version.inc @@ -21,8 +21,8 @@ SELECT CAST(REGEXP_REPLACE(@GALERA_VERSION,'^(\\d+)\\.(\\d+)\\.(\\d+).*','\\3') # Actual SELECT VARIABLE_VALUE INTO @ACTUAL_GALERA_VERSION FROM INFORMATION_SCHEMA.GLOBAL_STATUS WHERE VARIABLE_NAME LIKE 'wsrep_provider_version'; -SELECT CAST(REGEXP_REPLACE(@ACTUAL_GALERA_VERSION,'^(\\d+)\\.(\\d+).*','\\1') AS UNSIGNED) INTO @ACTUAL_GALERA_MINOR_VERSION; -SELECT CAST(REGEXP_REPLACE(@ACTUAL_GALERA_VERSION,'^(\\d+)\\.(\\d+).*','\\2') AS UNSIGNED) INTO @ACTUAL_GALERA_RELEASE_VERSION; +SELECT CAST(REGEXP_REPLACE(@ACTUAL_GALERA_VERSION,'^[\\d\\.]*(\\d+)\\.\\d+.*','\\1') AS UNSIGNED) INTO @ACTUAL_GALERA_MINOR_VERSION; +SELECT CAST(REGEXP_REPLACE(@ACTUAL_GALERA_VERSION,'^[\\d\\.]*\\.(\\d+).*','\\1') AS UNSIGNED) INTO @ACTUAL_GALERA_RELEASE_VERSION; # For testing #SELECT @GALERA_MAJOR_VERSION; From d85a7220dc7c605d7cbdb2fa64428c9a4283467c Mon Sep 17 00:00:00 2001 From: Sergei Petrunia Date: Thu, 13 Sep 2018 14:59:12 +0300 Subject: [PATCH 095/148] MDEV-17188: rocksdb.2pc_group_commit fails intermittently in BB When counter increment is not within the expected range, print the number instead of just FAIL. This doesnt solve the bug but will help with the diagnostics. --- .../rocksdb/r/2pc_group_commit.result | 30 +++++++++---------- .../rocksdb/t/2pc_group_commit.test | 24 +++++++-------- 2 files changed, 27 insertions(+), 27 deletions(-) diff --git a/storage/rocksdb/mysql-test/rocksdb/r/2pc_group_commit.result b/storage/rocksdb/mysql-test/rocksdb/r/2pc_group_commit.result index a9e80f1562e..722edadb4da 100644 --- a/storage/rocksdb/mysql-test/rocksdb/r/2pc_group_commit.result +++ b/storage/rocksdb/mysql-test/rocksdb/r/2pc_group_commit.result @@ -14,16 +14,16 @@ SET GLOBAL rocksdb_flush_log_at_trx_commit=1; select variable_value into @b1 from information_schema.global_status where variable_name='Binlog_commits'; select variable_value into @b2 from information_schema.global_status where variable_name='Binlog_group_commits'; select variable_value into @b3 from information_schema.global_status where variable_name='Rocksdb_wal_synced'; -select IF(variable_value - @b1 = 1000, 'OK', 'FAIL') as Binlog_commits +select IF(variable_value - @b1 = 1000, 'OK', variable_value - @b1) as Binlog_commits from information_schema.global_status where variable_name='Binlog_commits'; Binlog_commits OK -select IF(variable_value - @b2 = 1000, 'OK', 'FAIL') as Binlog_group_commits +select IF(variable_value - @b2 = 1000, 'OK', variable_value - @b2) as Binlog_group_commits from information_schema.global_status where variable_name='Binlog_group_commits'; Binlog_group_commits OK # Prepare operations sync, commits don't. We expect slightly more than 1K syncs: -select IF(variable_value - @b3 between 1000 and 1500, 'OK', 'FAIL') as Rocksdb_wal_synced +select IF(variable_value - @b3 between 1000 and 1500, 'OK', variable_value - @b3) as Rocksdb_wal_synced from information_schema.global_status where variable_name='Rocksdb_wal_synced'; Rocksdb_wal_synced OK @@ -33,17 +33,17 @@ OK select variable_value into @b1 from information_schema.global_status where variable_name='Binlog_commits'; select variable_value into @b2 from information_schema.global_status where variable_name='Binlog_group_commits'; select variable_value into @b3 from information_schema.global_status where variable_name='Rocksdb_wal_synced'; -select IF(variable_value - @b1 = 10000, 'OK', 'FAIL') as Binlog_commits +select IF(variable_value - @b1 = 10000, 'OK', variable_value - @b1) as Binlog_commits from information_schema.global_status where variable_name='Binlog_commits'; Binlog_commits OK -select IF(variable_value - @b2 between 100 and 5000, 'OK', 'FAIL') as Binlog_group_commits +select IF(variable_value - @b2 between 100 and 5000, 'OK', variable_value - @b2) as Binlog_group_commits from information_schema.global_status where variable_name='Binlog_group_commits'; Binlog_group_commits OK -select IF(variable_value - @b3 between 1 and 9000, 'OK', 'FAIL') +select IF(variable_value - @b3 between 1 and 9000, 'OK', variable_value - @b3) from information_schema.global_status where variable_name='Rocksdb_wal_synced'; -IF(variable_value - @b3 between 1 and 9000, 'OK', 'FAIL') +IF(variable_value - @b3 between 1 and 9000, 'OK', variable_value - @b3) OK ## # 2PC enabled, MyRocks durability disabled, single thread @@ -53,17 +53,17 @@ SET GLOBAL rocksdb_flush_log_at_trx_commit=0; select variable_value into @b1 from information_schema.global_status where variable_name='Binlog_commits'; select variable_value into @b2 from information_schema.global_status where variable_name='Binlog_group_commits'; select variable_value into @b3 from information_schema.global_status where variable_name='Rocksdb_wal_synced'; -select IF(variable_value - @b1 = 1000, 'OK', 'FAIL') as Binlog_commits +select IF(variable_value - @b1 = 1000, 'OK', variable_value - @b1) as Binlog_commits from information_schema.global_status where variable_name='Binlog_commits'; Binlog_commits OK -select IF(variable_value - @b2 = 1000, 'OK', 'FAIL') as Binlog_group_commits +select IF(variable_value - @b2 = 1000, 'OK', variable_value - @b2) as Binlog_group_commits from information_schema.global_status where variable_name='Binlog_group_commits'; Binlog_group_commits OK -select IF(variable_value - @b3 < 10, 'OK', 'FAIL') +select IF(variable_value - @b3 < 10, 'OK', variable_value - @b3) from information_schema.global_status where variable_name='Rocksdb_wal_synced'; -IF(variable_value - @b3 < 10, 'OK', 'FAIL') +IF(variable_value - @b3 < 10, 'OK', variable_value - @b3) OK ## # 2PC enabled, MyRocks durability disabled, concurrent workload @@ -71,17 +71,17 @@ OK select variable_value into @b1 from information_schema.global_status where variable_name='Binlog_commits'; select variable_value into @b2 from information_schema.global_status where variable_name='Binlog_group_commits'; select variable_value into @b3 from information_schema.global_status where variable_name='Rocksdb_wal_synced'; -select IF(variable_value - @b1 = 10000, 'OK', 'FAIL') as Binlog_commits +select IF(variable_value - @b1 = 10000, 'OK', variable_value - @b1) as Binlog_commits from information_schema.global_status where variable_name='Binlog_commits'; Binlog_commits OK -select IF(variable_value - @b2 < 8000, 'OK', 'FAIL') as Binlog_group_commits +select IF(variable_value - @b2 < 8000, 'OK', variable_value - @b2) as Binlog_group_commits from information_schema.global_status where variable_name='Binlog_group_commits'; Binlog_group_commits OK -select IF(variable_value - @b3 < 10, 'OK', 'FAIL') +select IF(variable_value - @b3 < 10, 'OK', variable_value - @b3) from information_schema.global_status where variable_name='Rocksdb_wal_synced'; -IF(variable_value - @b3 < 10, 'OK', 'FAIL') +IF(variable_value - @b3 < 10, 'OK', variable_value - @b3) OK SET GLOBAL rocksdb_enable_2pc= @save_rocksdb_enable_2pc; SET GLOBAL rocksdb_flush_log_at_trx_commit= @save_rocksdb_flush_log_at_trx_commit; diff --git a/storage/rocksdb/mysql-test/rocksdb/t/2pc_group_commit.test b/storage/rocksdb/mysql-test/rocksdb/t/2pc_group_commit.test index 1a77424de39..af9d2667e82 100644 --- a/storage/rocksdb/mysql-test/rocksdb/t/2pc_group_commit.test +++ b/storage/rocksdb/mysql-test/rocksdb/t/2pc_group_commit.test @@ -31,12 +31,12 @@ select variable_value into @b1 from information_schema.global_status where varia select variable_value into @b2 from information_schema.global_status where variable_name='Binlog_group_commits'; select variable_value into @b3 from information_schema.global_status where variable_name='Rocksdb_wal_synced'; --exec $MYSQL_SLAP --silent --concurrency=1 --number-of-queries=1000 --query="INSERT INTO t1 (id, value) VALUES(NULL, 1)" -select IF(variable_value - @b1 = 1000, 'OK', 'FAIL') as Binlog_commits +select IF(variable_value - @b1 = 1000, 'OK', variable_value - @b1) as Binlog_commits from information_schema.global_status where variable_name='Binlog_commits'; -select IF(variable_value - @b2 = 1000, 'OK', 'FAIL') as Binlog_group_commits +select IF(variable_value - @b2 = 1000, 'OK', variable_value - @b2) as Binlog_group_commits from information_schema.global_status where variable_name='Binlog_group_commits'; --echo # Prepare operations sync, commits don't. We expect slightly more than 1K syncs: -select IF(variable_value - @b3 between 1000 and 1500, 'OK', 'FAIL') as Rocksdb_wal_synced +select IF(variable_value - @b3 between 1000 and 1500, 'OK', variable_value - @b3) as Rocksdb_wal_synced from information_schema.global_status where variable_name='Rocksdb_wal_synced'; --echo ## @@ -48,11 +48,11 @@ select variable_value into @b3 from information_schema.global_status where varia --exec $MYSQL_SLAP --silent --concurrency=50 --number-of-queries=10000 --query="INSERT INTO t1 (id, value) VALUES(NULL, 1)" -select IF(variable_value - @b1 = 10000, 'OK', 'FAIL') as Binlog_commits +select IF(variable_value - @b1 = 10000, 'OK', variable_value - @b1) as Binlog_commits from information_schema.global_status where variable_name='Binlog_commits'; -select IF(variable_value - @b2 between 100 and 5000, 'OK', 'FAIL') as Binlog_group_commits +select IF(variable_value - @b2 between 100 and 5000, 'OK', variable_value - @b2) as Binlog_group_commits from information_schema.global_status where variable_name='Binlog_group_commits'; -select IF(variable_value - @b3 between 1 and 9000, 'OK', 'FAIL') +select IF(variable_value - @b3 between 1 and 9000, 'OK', variable_value - @b3) from information_schema.global_status where variable_name='Rocksdb_wal_synced'; --echo ## @@ -66,11 +66,11 @@ select variable_value into @b2 from information_schema.global_status where varia select variable_value into @b3 from information_schema.global_status where variable_name='Rocksdb_wal_synced'; --exec $MYSQL_SLAP --silent --concurrency=1 --number-of-queries=1000 --query="INSERT INTO t1 (id, value) VALUES(NULL, 1)" -select IF(variable_value - @b1 = 1000, 'OK', 'FAIL') as Binlog_commits +select IF(variable_value - @b1 = 1000, 'OK', variable_value - @b1) as Binlog_commits from information_schema.global_status where variable_name='Binlog_commits'; -select IF(variable_value - @b2 = 1000, 'OK', 'FAIL') as Binlog_group_commits +select IF(variable_value - @b2 = 1000, 'OK', variable_value - @b2) as Binlog_group_commits from information_schema.global_status where variable_name='Binlog_group_commits'; -select IF(variable_value - @b3 < 10, 'OK', 'FAIL') +select IF(variable_value - @b3 < 10, 'OK', variable_value - @b3) from information_schema.global_status where variable_name='Rocksdb_wal_synced'; --echo ## @@ -83,11 +83,11 @@ select variable_value into @b3 from information_schema.global_status where varia --exec $MYSQL_SLAP --silent --concurrency=50 --number-of-queries=10000 --query="INSERT INTO t1 (id, value) VALUES(NULL, 1)" -select IF(variable_value - @b1 = 10000, 'OK', 'FAIL') as Binlog_commits +select IF(variable_value - @b1 = 10000, 'OK', variable_value - @b1) as Binlog_commits from information_schema.global_status where variable_name='Binlog_commits'; -select IF(variable_value - @b2 < 8000, 'OK', 'FAIL') as Binlog_group_commits +select IF(variable_value - @b2 < 8000, 'OK', variable_value - @b2) as Binlog_group_commits from information_schema.global_status where variable_name='Binlog_group_commits'; -select IF(variable_value - @b3 < 10, 'OK', 'FAIL') +select IF(variable_value - @b3 < 10, 'OK', variable_value - @b3) from information_schema.global_status where variable_name='Rocksdb_wal_synced'; ## From 8e68876477eaec7944baa0b63ef26e551693c4f8 Mon Sep 17 00:00:00 2001 From: Oleksandr Byelkin Date: Thu, 13 Sep 2018 15:06:44 +0200 Subject: [PATCH 096/148] Fix of the test which has debug version --- .../r/galera_sst_rsync_data_dir,debug.rdiff | 114 ++++++++++++++++++ .../galera/r/galera_sst_rsync_data_dir.result | 108 ----------------- 2 files changed, 114 insertions(+), 108 deletions(-) create mode 100644 mysql-test/suite/galera/r/galera_sst_rsync_data_dir,debug.rdiff diff --git a/mysql-test/suite/galera/r/galera_sst_rsync_data_dir,debug.rdiff b/mysql-test/suite/galera/r/galera_sst_rsync_data_dir,debug.rdiff new file mode 100644 index 00000000000..e307a2ff0f9 --- /dev/null +++ b/mysql-test/suite/galera/r/galera_sst_rsync_data_dir,debug.rdiff @@ -0,0 +1,114 @@ +--- suite/galera/r/galera_sst_rsync_data_dir.result 2018-09-13 14:52:50.848220719 +0200 ++++ suite/galera/r/galera_sst_rsync_data_dir.reject 2018-09-13 15:03:32.339135247 +0200 +@@ -286,3 +286,111 @@ + DROP TABLE t1; + COMMIT; + SET AUTOCOMMIT=ON; ++Performing State Transfer on a server that has been killed and restarted ++while a DDL was in progress on it ++connection node_1; ++CREATE TABLE t1 (f1 CHAR(255)) ENGINE=InnoDB; ++SET AUTOCOMMIT=OFF; ++START TRANSACTION; ++INSERT INTO t1 VALUES ('node1_committed_before'); ++INSERT INTO t1 VALUES ('node1_committed_before'); ++INSERT INTO t1 VALUES ('node1_committed_before'); ++INSERT INTO t1 VALUES ('node1_committed_before'); ++INSERT INTO t1 VALUES ('node1_committed_before'); ++connection node_2; ++START TRANSACTION; ++INSERT INTO t1 VALUES ('node2_committed_before'); ++INSERT INTO t1 VALUES ('node2_committed_before'); ++INSERT INTO t1 VALUES ('node2_committed_before'); ++INSERT INTO t1 VALUES ('node2_committed_before'); ++INSERT INTO t1 VALUES ('node2_committed_before'); ++COMMIT; ++SET GLOBAL debug_dbug = 'd,sync.alter_opened_table'; ++connection node_1; ++ALTER TABLE t1 ADD COLUMN f2 INTEGER; ++connection node_2; ++SET wsrep_sync_wait = 0; ++Killing server ... ++connection node_1; ++SET AUTOCOMMIT=OFF; ++START TRANSACTION; ++INSERT INTO t1 (f1) VALUES ('node1_committed_during'); ++INSERT INTO t1 (f1) VALUES ('node1_committed_during'); ++INSERT INTO t1 (f1) VALUES ('node1_committed_during'); ++INSERT INTO t1 (f1) VALUES ('node1_committed_during'); ++INSERT INTO t1 (f1) VALUES ('node1_committed_during'); ++COMMIT; ++START TRANSACTION; ++INSERT INTO t1 (f1) VALUES ('node1_to_be_committed_after'); ++INSERT INTO t1 (f1) VALUES ('node1_to_be_committed_after'); ++INSERT INTO t1 (f1) VALUES ('node1_to_be_committed_after'); ++INSERT INTO t1 (f1) VALUES ('node1_to_be_committed_after'); ++INSERT INTO t1 (f1) VALUES ('node1_to_be_committed_after'); ++connect node_1a_galera_st_kill_slave_ddl, 127.0.0.1, root, , test, $NODE_MYPORT_1; ++SET AUTOCOMMIT=OFF; ++START TRANSACTION; ++INSERT INTO t1 (f1) VALUES ('node1_to_be_rollbacked_after'); ++INSERT INTO t1 (f1) VALUES ('node1_to_be_rollbacked_after'); ++INSERT INTO t1 (f1) VALUES ('node1_to_be_rollbacked_after'); ++INSERT INTO t1 (f1) VALUES ('node1_to_be_rollbacked_after'); ++INSERT INTO t1 (f1) VALUES ('node1_to_be_rollbacked_after'); ++connection node_2; ++Performing --wsrep-recover ... ++connection node_2; ++Starting server ... ++Using --wsrep-start-position when starting mysqld ... ++SET AUTOCOMMIT=OFF; ++START TRANSACTION; ++INSERT INTO t1 (f1) VALUES ('node2_committed_after'); ++INSERT INTO t1 (f1) VALUES ('node2_committed_after'); ++INSERT INTO t1 (f1) VALUES ('node2_committed_after'); ++INSERT INTO t1 (f1) VALUES ('node2_committed_after'); ++INSERT INTO t1 (f1) VALUES ('node2_committed_after'); ++COMMIT; ++connection node_1; ++INSERT INTO t1 (f1) VALUES ('node1_to_be_committed_after'); ++INSERT INTO t1 (f1) VALUES ('node1_to_be_committed_after'); ++INSERT INTO t1 (f1) VALUES ('node1_to_be_committed_after'); ++INSERT INTO t1 (f1) VALUES ('node1_to_be_committed_after'); ++INSERT INTO t1 (f1) VALUES ('node1_to_be_committed_after'); ++COMMIT; ++SET AUTOCOMMIT=OFF; ++START TRANSACTION; ++INSERT INTO t1 (f1) VALUES ('node1_committed_after'); ++INSERT INTO t1 (f1) VALUES ('node1_committed_after'); ++INSERT INTO t1 (f1) VALUES ('node1_committed_after'); ++INSERT INTO t1 (f1) VALUES ('node1_committed_after'); ++INSERT INTO t1 (f1) VALUES ('node1_committed_after'); ++COMMIT; ++connection node_1a_galera_st_kill_slave_ddl; ++INSERT INTO t1 (f1) VALUES ('node1_to_be_rollbacked_after'); ++INSERT INTO t1 (f1) VALUES ('node1_to_be_rollbacked_after'); ++INSERT INTO t1 (f1) VALUES ('node1_to_be_rollbacked_after'); ++INSERT INTO t1 (f1) VALUES ('node1_to_be_rollbacked_after'); ++INSERT INTO t1 (f1) VALUES ('node1_to_be_rollbacked_after'); ++ROLLBACK; ++SELECT COUNT(*) = 2 FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME = 't1'; ++COUNT(*) = 2 ++1 ++SELECT COUNT(*) = 35 FROM t1; ++COUNT(*) = 35 ++1 ++SELECT COUNT(*) = 0 FROM (SELECT COUNT(*) AS c, f1 FROM t1 GROUP BY f1 HAVING c NOT IN (5, 10)) AS a1; ++COUNT(*) = 0 ++1 ++COMMIT; ++SET AUTOCOMMIT=ON; ++connection node_1; ++SELECT COUNT(*) = 2 FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME = 't1'; ++COUNT(*) = 2 ++1 ++SELECT COUNT(*) = 35 FROM t1; ++COUNT(*) = 35 ++1 ++SELECT COUNT(*) = 0 FROM (SELECT COUNT(*) AS c, f1 FROM t1 GROUP BY f1 HAVING c NOT IN (5, 10)) AS a1; ++COUNT(*) = 0 ++1 ++DROP TABLE t1; ++COMMIT; ++SET AUTOCOMMIT=ON; ++SET GLOBAL debug_dbug = $debug_orig; diff --git a/mysql-test/suite/galera/r/galera_sst_rsync_data_dir.result b/mysql-test/suite/galera/r/galera_sst_rsync_data_dir.result index d5c6a11f61f..ff85a7d6c0f 100644 --- a/mysql-test/suite/galera/r/galera_sst_rsync_data_dir.result +++ b/mysql-test/suite/galera/r/galera_sst_rsync_data_dir.result @@ -286,111 +286,3 @@ COUNT(*) = 0 DROP TABLE t1; COMMIT; SET AUTOCOMMIT=ON; -Performing State Transfer on a server that has been killed and restarted -while a DDL was in progress on it -connection node_1; -CREATE TABLE t1 (f1 CHAR(255)) ENGINE=InnoDB; -SET AUTOCOMMIT=OFF; -START TRANSACTION; -INSERT INTO t1 VALUES ('node1_committed_before'); -INSERT INTO t1 VALUES ('node1_committed_before'); -INSERT INTO t1 VALUES ('node1_committed_before'); -INSERT INTO t1 VALUES ('node1_committed_before'); -INSERT INTO t1 VALUES ('node1_committed_before'); -connection node_2; -START TRANSACTION; -INSERT INTO t1 VALUES ('node2_committed_before'); -INSERT INTO t1 VALUES ('node2_committed_before'); -INSERT INTO t1 VALUES ('node2_committed_before'); -INSERT INTO t1 VALUES ('node2_committed_before'); -INSERT INTO t1 VALUES ('node2_committed_before'); -COMMIT; -SET GLOBAL debug_dbug = 'd,sync.alter_opened_table'; -connection node_1; -ALTER TABLE t1 ADD COLUMN f2 INTEGER; -connection node_2; -SET wsrep_sync_wait = 0; -Killing server ... -connection node_1; -SET AUTOCOMMIT=OFF; -START TRANSACTION; -INSERT INTO t1 (f1) VALUES ('node1_committed_during'); -INSERT INTO t1 (f1) VALUES ('node1_committed_during'); -INSERT INTO t1 (f1) VALUES ('node1_committed_during'); -INSERT INTO t1 (f1) VALUES ('node1_committed_during'); -INSERT INTO t1 (f1) VALUES ('node1_committed_during'); -COMMIT; -START TRANSACTION; -INSERT INTO t1 (f1) VALUES ('node1_to_be_committed_after'); -INSERT INTO t1 (f1) VALUES ('node1_to_be_committed_after'); -INSERT INTO t1 (f1) VALUES ('node1_to_be_committed_after'); -INSERT INTO t1 (f1) VALUES ('node1_to_be_committed_after'); -INSERT INTO t1 (f1) VALUES ('node1_to_be_committed_after'); -connect node_1a_galera_st_kill_slave_ddl, 127.0.0.1, root, , test, $NODE_MYPORT_1; -SET AUTOCOMMIT=OFF; -START TRANSACTION; -INSERT INTO t1 (f1) VALUES ('node1_to_be_rollbacked_after'); -INSERT INTO t1 (f1) VALUES ('node1_to_be_rollbacked_after'); -INSERT INTO t1 (f1) VALUES ('node1_to_be_rollbacked_after'); -INSERT INTO t1 (f1) VALUES ('node1_to_be_rollbacked_after'); -INSERT INTO t1 (f1) VALUES ('node1_to_be_rollbacked_after'); -connection node_2; -Performing --wsrep-recover ... -connection node_2; -Starting server ... -Using --wsrep-start-position when starting mysqld ... -SET AUTOCOMMIT=OFF; -START TRANSACTION; -INSERT INTO t1 (f1) VALUES ('node2_committed_after'); -INSERT INTO t1 (f1) VALUES ('node2_committed_after'); -INSERT INTO t1 (f1) VALUES ('node2_committed_after'); -INSERT INTO t1 (f1) VALUES ('node2_committed_after'); -INSERT INTO t1 (f1) VALUES ('node2_committed_after'); -COMMIT; -connection node_1; -INSERT INTO t1 (f1) VALUES ('node1_to_be_committed_after'); -INSERT INTO t1 (f1) VALUES ('node1_to_be_committed_after'); -INSERT INTO t1 (f1) VALUES ('node1_to_be_committed_after'); -INSERT INTO t1 (f1) VALUES ('node1_to_be_committed_after'); -INSERT INTO t1 (f1) VALUES ('node1_to_be_committed_after'); -COMMIT; -SET AUTOCOMMIT=OFF; -START TRANSACTION; -INSERT INTO t1 (f1) VALUES ('node1_committed_after'); -INSERT INTO t1 (f1) VALUES ('node1_committed_after'); -INSERT INTO t1 (f1) VALUES ('node1_committed_after'); -INSERT INTO t1 (f1) VALUES ('node1_committed_after'); -INSERT INTO t1 (f1) VALUES ('node1_committed_after'); -COMMIT; -connection node_1a_galera_st_kill_slave_ddl; -INSERT INTO t1 (f1) VALUES ('node1_to_be_rollbacked_after'); -INSERT INTO t1 (f1) VALUES ('node1_to_be_rollbacked_after'); -INSERT INTO t1 (f1) VALUES ('node1_to_be_rollbacked_after'); -INSERT INTO t1 (f1) VALUES ('node1_to_be_rollbacked_after'); -INSERT INTO t1 (f1) VALUES ('node1_to_be_rollbacked_after'); -ROLLBACK; -SELECT COUNT(*) = 2 FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME = 't1'; -COUNT(*) = 2 -1 -SELECT COUNT(*) = 35 FROM t1; -COUNT(*) = 35 -1 -SELECT COUNT(*) = 0 FROM (SELECT COUNT(*) AS c, f1 FROM t1 GROUP BY f1 HAVING c NOT IN (5, 10)) AS a1; -COUNT(*) = 0 -1 -COMMIT; -SET AUTOCOMMIT=ON; -connection node_1; -SELECT COUNT(*) = 2 FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME = 't1'; -COUNT(*) = 2 -1 -SELECT COUNT(*) = 35 FROM t1; -COUNT(*) = 35 -1 -SELECT COUNT(*) = 0 FROM (SELECT COUNT(*) AS c, f1 FROM t1 GROUP BY f1 HAVING c NOT IN (5, 10)) AS a1; -COUNT(*) = 0 -1 -DROP TABLE t1; -COMMIT; -SET AUTOCOMMIT=ON; -SET GLOBAL debug_dbug = $debug_orig; From 6c47c1c45696affc5e4b1ecb1b8e941c70dfde8a Mon Sep 17 00:00:00 2001 From: Jacob Mathew Date: Thu, 13 Sep 2018 13:27:03 -0700 Subject: [PATCH 097/148] MDEV-16912: Spider Order By column[datatime] limit 5 returns 3 rows The problem occurs in 10.2 and earlier releases of MariaDB Server because the Partition Engine was not pushing the engine conditions to the underlying storage engine of each partition. This caused Spider to return the first 5 rows in the table with the data provided by the customer. 2 of the 5 rows did not qualify the WHERE clause, so they were removed from the result set by the server. To fix the problem, I have back-ported support for engine condition pushdown in the Partition Engine from MariaDB Server 10.3. Author: Jacob Mathew. Reviewer: Kentoku Shiba. Cherry-Picked: Commit eb2ca3d on branch bb-10.2-MDEV-16912 --- sql/ha_partition.cc | 50 ++++++++ sql/ha_partition.h | 8 ++ .../spider/include/init_child2_1.inc | 14 +++ .../spider/include/init_master_1.inc | 4 + .../spider/r/spider_fixes_part.result | 48 ++++++++ .../spider/t/spider_fixes_part.test | 109 ++++++++++++++++++ 6 files changed, 233 insertions(+) diff --git a/sql/ha_partition.cc b/sql/ha_partition.cc index 7444d61b3fc..549fbe4cdfb 100644 --- a/sql/ha_partition.cc +++ b/sql/ha_partition.cc @@ -9131,6 +9131,56 @@ int ha_partition::check_for_upgrade(HA_CHECK_OPT *check_opt) } +/** + Push an engine condition to the condition stack of the storage engine + for each partition. + + @param cond Pointer to the engine condition to be pushed. + + @return NULL Underlying engine will not return rows that + do not match the passed condition. + <> NULL 'Remainder' condition that the caller must use + to filter out records. +*/ + +const COND *ha_partition::cond_push(const COND *cond) +{ + handler **file= m_file; + COND *res_cond= NULL; + DBUG_ENTER("ha_partition::cond_push"); + + do + { + if ((*file)->pushed_cond != cond) + { + if ((*file)->cond_push(cond)) + res_cond= (COND *) cond; + else + (*file)->pushed_cond= cond; + } + } while (*(++file)); + DBUG_RETURN(res_cond); +} + + +/** + Pop the top condition from the condition stack of the storage engine + for each partition. +*/ + +void ha_partition::cond_pop() +{ + handler **file= m_file; + DBUG_ENTER("ha_partition::cond_pop"); + + do + { + (*file)->cond_pop(); + } while (*(++file)); + DBUG_VOID_RETURN; +} + + struct st_mysql_storage_engine partition_storage_engine= { MYSQL_HANDLERTON_INTERFACE_VERSION }; diff --git a/sql/ha_partition.h b/sql/ha_partition.h index 11e34e1ebb0..4770d64b815 100644 --- a/sql/ha_partition.h +++ b/sql/ha_partition.h @@ -1213,6 +1213,14 @@ public: virtual bool is_crashed() const; virtual int check_for_upgrade(HA_CHECK_OPT *check_opt); + /* + ----------------------------------------------------------------------- + MODULE condition pushdown + ----------------------------------------------------------------------- + */ + virtual const COND *cond_push(const COND *cond); + virtual void cond_pop(); + private: int handle_opt_partitions(THD *thd, HA_CHECK_OPT *check_opt, uint flags); int handle_opt_part(THD *thd, HA_CHECK_OPT *check_opt, uint part_id, diff --git a/storage/spider/mysql-test/spider/include/init_child2_1.inc b/storage/spider/mysql-test/spider/include/init_child2_1.inc index 10793649f94..782f538eb43 100644 --- a/storage/spider/mysql-test/spider/include/init_child2_1.inc +++ b/storage/spider/mysql-test/spider/include/init_child2_1.inc @@ -69,6 +69,20 @@ let $CHILD2_1_CREATE_TABLES6= ) $CHILD2_1_ENGINE $CHILD2_1_CHARSET; let $CHILD2_1_SELECT_TABLES6= SELECT a, b, date_format(c, '%Y-%m-%d %H:%i:%s') FROM ta_r_3 ORDER BY a; +let $CHILD2_1_DROP_TABLES7= + DROP TABLE IF EXISTS ta_ob; +let $CHILD2_1_CREATE_TABLES7= + CREATE TABLE ta_ob ( + a VARCHAR(50) NOT NULL, + b VARCHAR(50) NULL DEFAULT NULL, + c VARCHAR(100) NULL DEFAULT NULL, + d DATETIME(0) NULL DEFAULT NULL, + e INT(11) NOT NULL, + f INT(10) NULL DEFAULT NULL, + PRIMARY KEY (a, e) + ) $CHILD2_1_ENGINE $CHILD2_1_CHARSET; +let $CHILD2_1_SELECT_TABLES7= + SELECT * FROM ta_ob WHERE c LIKE "%510411106%" AND e = 510411 AND f != 1 ORDER BY d,c LIMIT 6 OFFSET 0; let $CHILD2_1_DROP_FT_TABLES= DROP TABLE IF EXISTS ft_r; let $CHILD2_1_CREATE_FT_TABLES= diff --git a/storage/spider/mysql-test/spider/include/init_master_1.inc b/storage/spider/mysql-test/spider/include/init_master_1.inc index 93947a8d454..2c45d0bd65d 100644 --- a/storage/spider/mysql-test/spider/include/init_master_1.inc +++ b/storage/spider/mysql-test/spider/include/init_master_1.inc @@ -94,6 +94,10 @@ if (!$VERSION_COMPILE_OS_WIN) CONNECTION='host "localhost", socket "$CHILD2_1_MYSOCK", user "root", password ""'; } +let $MASTER_1_COMMENT6_P_1_1= + COMMENT='database "auto_test_remote", table "ta_ob"' + PARTITION BY LIST COLUMNS (e) PARTITIONS 1 + (PARTITION pt1 values in (510411) COMMENT = 'srv "s_2_1"'); if ($VERSION_COMPILE_OS_WIN) { let $MASTER_1_COMMENT_FT_2_1= diff --git a/storage/spider/mysql-test/spider/r/spider_fixes_part.result b/storage/spider/mysql-test/spider/r/spider_fixes_part.result index 104ba971df9..2b313e0e9dc 100644 --- a/storage/spider/mysql-test/spider/r/spider_fixes_part.result +++ b/storage/spider/mysql-test/spider/r/spider_fixes_part.result @@ -197,6 +197,54 @@ id 6216 10000 +Test ORDER BY with LIMIT and OFFSET +CREATE TABLE ta_ob ( +a VARCHAR(50) NOT NULL, +b VARCHAR(50) NULL DEFAULT NULL, +c VARCHAR(100) NULL DEFAULT NULL, +d DATETIME(0) NULL DEFAULT NULL, +e INT(11) NOT NULL, +f INT(10) NULL DEFAULT NULL, +PRIMARY KEY (a, e) +) ENGINE=Spider COMMENT='database "auto_test_remote", table "ta_ob"' + PARTITION BY LIST COLUMNS (e) PARTITIONS 1 +(PARTITION pt1 values in (510411) COMMENT = 'srv "s_2_1"') +INSERT INTO ta_ob VALUES ('0B95CD65DF994BC9A09A6AABE53A2733', +'6CFED89FF6A84C7AA55C3C432663D094', +'51041110620304', '2018-08-02 13:41:13', +510411, 1); +INSERT INTO ta_ob VALUES ('15E8D55EF099443BAEE639E60A4650BD', +'879DC2A0B6AC46D9A62E8EA47E2970F2', +'51041110620301', NULL, +510411, 0); +INSERT INTO ta_ob VALUES ('51ECF2C0CD3C48D99C91792E99D3C1A0', +'017B8A460DBC444682B791305EF75356', +'51041110620308', '2018-08-02 13:48:29', +510411, 0); +INSERT INTO ta_ob VALUES ('093B37A93A534DF883787AF5F6799674', +'996C7F14989D480589A553717D735E3E', +'51041110620302', '2018-08-02 13:48:30', +510411, 0); +INSERT INTO ta_ob VALUES ('53F5266FB069499AB6234755CACA2583', +'017B8A460DBC444682B791305EF75356', +'51041110620308', '2018-08-02 13:48:28', +510411, 0); +INSERT INTO ta_ob VALUES ('56E59BC4BDC143868D4A219C2D07A24B', +'821E71E6ABB4404EBAA349BB681089F8', +'51041110620310', '2018-08-02 13:48:27', +510411, 0); +INSERT INTO ta_ob VALUES ('56B68DA68D6D4A04A08B453D09AD7B70', +'821E71E6ABB4404EBAA349BB681089F8', +'51041110620310', '2018-08-02 13:48:28', +510411, 0); +SELECT * FROM ta_ob WHERE c LIKE "%510411106%" AND e = 510411 AND f != 1 ORDER BY d,c LIMIT 5 OFFSET 1; +a b c d e f +56E59BC4BDC143868D4A219C2D07A24B 821E71E6ABB4404EBAA349BB681089F8 51041110620310 2018-08-02 13:48:27 510411 0 +53F5266FB069499AB6234755CACA2583 017B8A460DBC444682B791305EF75356 51041110620308 2018-08-02 13:48:28 510411 0 +56B68DA68D6D4A04A08B453D09AD7B70 821E71E6ABB4404EBAA349BB681089F8 51041110620310 2018-08-02 13:48:28 510411 0 +51ECF2C0CD3C48D99C91792E99D3C1A0 017B8A460DBC444682B791305EF75356 51041110620308 2018-08-02 13:48:29 510411 0 +093B37A93A534DF883787AF5F6799674 996C7F14989D480589A553717D735E3E 51041110620302 2018-08-02 13:48:30 510411 0 + deinit DROP DATABASE IF EXISTS auto_test_local; DROP DATABASE IF EXISTS auto_test_local; diff --git a/storage/spider/mysql-test/spider/t/spider_fixes_part.test b/storage/spider/mysql-test/spider/t/spider_fixes_part.test index ef5a8026c02..868e684f959 100644 --- a/storage/spider/mysql-test/spider/t/spider_fixes_part.test +++ b/storage/spider/mysql-test/spider/t/spider_fixes_part.test @@ -616,6 +616,115 @@ if ($HAVE_PARTITION) } } +--echo +--echo Test ORDER BY with LIMIT and OFFSET +if ($HAVE_PARTITION) +{ + if ($USE_CHILD_GROUP2) + { + if (!$OUTPUT_CHILD_GROUP2) + { + --disable_query_log + --disable_result_log + } + --connection child2_1 + if ($OUTPUT_CHILD_GROUP2) + { + --disable_query_log + echo CHILD2_1_DROP_TABLES7; + echo CHILD2_1_CREATE_TABLES7; + } + --disable_warnings + eval $CHILD2_1_DROP_TABLES7; + --enable_warnings + eval $CHILD2_1_CREATE_TABLES7; + if ($OUTPUT_CHILD_GROUP2) + { + --enable_query_log + } + if ($USE_GENERAL_LOG) + { + TRUNCATE TABLE mysql.general_log; + } + if (!$OUTPUT_CHILD_GROUP2) + { + --enable_query_log + --enable_result_log + } + } + --connection master_1 + --disable_query_log + --disable_warnings + DROP TABLE IF EXISTS ta_ob; + --enable_warnings + echo CREATE TABLE ta_ob ( + a VARCHAR(50) NOT NULL, + b VARCHAR(50) NULL DEFAULT NULL, + c VARCHAR(100) NULL DEFAULT NULL, + d DATETIME(0) NULL DEFAULT NULL, + e INT(11) NOT NULL, + f INT(10) NULL DEFAULT NULL, + PRIMARY KEY (a, e) + ) $MASTER_1_ENGINE $MASTER_1_COMMENT6_P_1_1; + eval CREATE TABLE ta_ob ( + a VARCHAR(50) NOT NULL, + b VARCHAR(50) NULL DEFAULT NULL, + c VARCHAR(100) NULL DEFAULT NULL, + d DATETIME(0) NULL DEFAULT NULL, + e INT(11) NOT NULL, + f INT(10) NULL DEFAULT NULL, + PRIMARY KEY (a, e) + ) $MASTER_1_ENGINE $MASTER_1_COMMENT6_P_1_1; + --enable_query_log + INSERT INTO ta_ob VALUES ('0B95CD65DF994BC9A09A6AABE53A2733', + '6CFED89FF6A84C7AA55C3C432663D094', + '51041110620304', '2018-08-02 13:41:13', + 510411, 1); + INSERT INTO ta_ob VALUES ('15E8D55EF099443BAEE639E60A4650BD', + '879DC2A0B6AC46D9A62E8EA47E2970F2', + '51041110620301', NULL, + 510411, 0); + INSERT INTO ta_ob VALUES ('51ECF2C0CD3C48D99C91792E99D3C1A0', + '017B8A460DBC444682B791305EF75356', + '51041110620308', '2018-08-02 13:48:29', + 510411, 0); + INSERT INTO ta_ob VALUES ('093B37A93A534DF883787AF5F6799674', + '996C7F14989D480589A553717D735E3E', + '51041110620302', '2018-08-02 13:48:30', + 510411, 0); + INSERT INTO ta_ob VALUES ('53F5266FB069499AB6234755CACA2583', + '017B8A460DBC444682B791305EF75356', + '51041110620308', '2018-08-02 13:48:28', + 510411, 0); + INSERT INTO ta_ob VALUES ('56E59BC4BDC143868D4A219C2D07A24B', + '821E71E6ABB4404EBAA349BB681089F8', + '51041110620310', '2018-08-02 13:48:27', + 510411, 0); + INSERT INTO ta_ob VALUES ('56B68DA68D6D4A04A08B453D09AD7B70', + '821E71E6ABB4404EBAA349BB681089F8', + '51041110620310', '2018-08-02 13:48:28', + 510411, 0); + SELECT * FROM ta_ob WHERE c LIKE "%510411106%" AND e = 510411 AND f != 1 ORDER BY d,c LIMIT 5 OFFSET 1; + if ($USE_CHILD_GROUP2) + { + if (!$OUTPUT_CHILD_GROUP2) + { + --disable_query_log + --disable_result_log + } + --connection child2_1 + if ($USE_GENERAL_LOG) + { + SELECT argument FROM mysql.general_log WHERE argument LIKE '%select %'; + } + eval $CHILD2_1_SELECT_TABLES7; + if (!$OUTPUT_CHILD_GROUP2) + { + --enable_query_log + --enable_result_log + } + } +} --echo --echo deinit From ed7a0e5efc52177fa23213a1e9ef685fc5cb27f8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jan=20Lindstr=C3=B6m?= Date: Fri, 14 Sep 2018 10:35:37 +0300 Subject: [PATCH 098/148] MDEV-13876: galera.MW-328A failed in buildbot with wrong result or timeout Move MW-328[A,B,C] to big tests as there seem to be big variation on their execution times and sometimes that could lead timeout. --- mysql-test/suite/galera/disabled.def | 3 --- mysql-test/suite/galera/t/MW-328A.test | 1 + mysql-test/suite/galera/t/MW-328B.test | 1 + mysql-test/suite/galera/t/MW-328C.test | 1 + 4 files changed, 3 insertions(+), 3 deletions(-) diff --git a/mysql-test/suite/galera/disabled.def b/mysql-test/suite/galera/disabled.def index c4aa0ad2a74..35e1e59a92c 100644 --- a/mysql-test/suite/galera/disabled.def +++ b/mysql-test/suite/galera/disabled.def @@ -35,12 +35,9 @@ galera_gc_fc_limit : MDEV-17061 Test failure on galera.galera_gc_fc_limit galera_applier_ftwrl_table_after : MDEV-13738 galera_applier_ftwrl_table_alter may fail with '2006: MySQL server has gone away' galra_unicode_identifiers: MDEV-13871 galera.galera_unicode_identifiers failed in buildbot with 'Unknown database' galera_suspend_slave: MDEV-13873 galera.galera_suspend_slave failed in buildbot with wrong error code -MW-328A : MDEV-13876 galera.MW-328A failed in buildbot with wrong result or timeout galera_wan : MDEV-13879 galera.galera_wan fails in buildbot with Stray state UUID msg or with "Transport endpoint is not connected" or with a failure to start a node partition : MDEV-13881 galera.partition failed in buildbot with wrong result galera_transaction_read_only : MDEV-14142 galera.galera_transaction_read_only fails in buildbot with wrong result galera_kill_smallchanges : MDEV-14143 galera.galera_kill_smallchanges, galera.galera_kill_ddl fail in buildbot with "Last Applied Action message in non-primary configuration from member 0" -MW-328B : MDEV-14145 galera.MW-328B failed in buildbot with a timeout -MW-328C : MDEV-14149 galera.MW-328A, galera.MW-328C failed with "Found wrong usage of mutex" galera_as_slave_replication_budle : MDEV-15785 Test case galera_as_slave_replication_bundle caused debug assertion diff --git a/mysql-test/suite/galera/t/MW-328A.test b/mysql-test/suite/galera/t/MW-328A.test index 4d6e1ea3625..09aad1bcf60 100644 --- a/mysql-test/suite/galera/t/MW-328A.test +++ b/mysql-test/suite/galera/t/MW-328A.test @@ -7,6 +7,7 @@ # a success was reported. # +--source include/big_test.inc --source include/galera_cluster.inc --source include/have_innodb.inc --source suite/galera/t/MW-328-header.inc diff --git a/mysql-test/suite/galera/t/MW-328B.test b/mysql-test/suite/galera/t/MW-328B.test index a7b4053ab0c..000b0d8a9ab 100644 --- a/mysql-test/suite/galera/t/MW-328B.test +++ b/mysql-test/suite/galera/t/MW-328B.test @@ -7,6 +7,7 @@ # gets the deadlock error # +--source include/big_test.inc --source include/galera_cluster.inc --source include/have_innodb.inc --source suite/galera/t/MW-328-header.inc diff --git a/mysql-test/suite/galera/t/MW-328C.test b/mysql-test/suite/galera/t/MW-328C.test index b681e743ab3..72a8480923c 100644 --- a/mysql-test/suite/galera/t/MW-328C.test +++ b/mysql-test/suite/galera/t/MW-328C.test @@ -7,6 +7,7 @@ # masks all deadlock errors # +--source include/big_test.inc --source include/galera_cluster.inc --source include/have_innodb.inc --source suite/galera/t/MW-328-header.inc From c886368a3ad89cc87eaf66344837d59afa49db7e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jan=20Lindstr=C3=B6m?= Date: Fri, 14 Sep 2018 11:16:54 +0300 Subject: [PATCH 099/148] Test galera_sst_rsync_data_dir has different result on release and debug builds. Modified version for 10.1 from following commit: commit 8e68876477eaec7944baa0b63ef26e551693c4f8 Author: Oleksandr Byelkin Date: Thu Sep 13 15:06:44 2018 +0200 Fix of the test which has debug version --- .../r/galera_sst_rsync_data_dir,debug.rdiff | 103 ++++++++++++++++++ 1 file changed, 103 insertions(+) create mode 100644 mysql-test/suite/galera/r/galera_sst_rsync_data_dir,debug.rdiff diff --git a/mysql-test/suite/galera/r/galera_sst_rsync_data_dir,debug.rdiff b/mysql-test/suite/galera/r/galera_sst_rsync_data_dir,debug.rdiff new file mode 100644 index 00000000000..5ab88117e89 --- /dev/null +++ b/mysql-test/suite/galera/r/galera_sst_rsync_data_dir,debug.rdiff @@ -0,0 +1,103 @@ +--- r/galera_sst_rsync_data_dir.result 2018-09-11 12:38:42.027479411 +0300 ++++ r/galera_sst_rsync_data_dir.reject 2018-09-14 11:11:09.592049414 +0300 +@@ -260,3 +260,100 @@ + DROP TABLE t1; + COMMIT; + SET AUTOCOMMIT=ON; ++Performing State Transfer on a server that has been killed and restarted ++while a DDL was in progress on it ++CREATE TABLE t1 (f1 CHAR(255)) ENGINE=InnoDB; ++SET AUTOCOMMIT=OFF; ++START TRANSACTION; ++INSERT INTO t1 VALUES ('node1_committed_before'); ++INSERT INTO t1 VALUES ('node1_committed_before'); ++INSERT INTO t1 VALUES ('node1_committed_before'); ++INSERT INTO t1 VALUES ('node1_committed_before'); ++INSERT INTO t1 VALUES ('node1_committed_before'); ++START TRANSACTION; ++INSERT INTO t1 VALUES ('node2_committed_before'); ++INSERT INTO t1 VALUES ('node2_committed_before'); ++INSERT INTO t1 VALUES ('node2_committed_before'); ++INSERT INTO t1 VALUES ('node2_committed_before'); ++INSERT INTO t1 VALUES ('node2_committed_before'); ++COMMIT; ++SET GLOBAL debug_dbug = 'd,sync.alter_opened_table'; ++ALTER TABLE t1 ADD COLUMN f2 INTEGER; ++SET wsrep_sync_wait = 0; ++Killing server ... ++SET AUTOCOMMIT=OFF; ++START TRANSACTION; ++INSERT INTO t1 (f1) VALUES ('node1_committed_during'); ++INSERT INTO t1 (f1) VALUES ('node1_committed_during'); ++INSERT INTO t1 (f1) VALUES ('node1_committed_during'); ++INSERT INTO t1 (f1) VALUES ('node1_committed_during'); ++INSERT INTO t1 (f1) VALUES ('node1_committed_during'); ++COMMIT; ++START TRANSACTION; ++INSERT INTO t1 (f1) VALUES ('node1_to_be_committed_after'); ++INSERT INTO t1 (f1) VALUES ('node1_to_be_committed_after'); ++INSERT INTO t1 (f1) VALUES ('node1_to_be_committed_after'); ++INSERT INTO t1 (f1) VALUES ('node1_to_be_committed_after'); ++INSERT INTO t1 (f1) VALUES ('node1_to_be_committed_after'); ++SET AUTOCOMMIT=OFF; ++START TRANSACTION; ++INSERT INTO t1 (f1) VALUES ('node1_to_be_rollbacked_after'); ++INSERT INTO t1 (f1) VALUES ('node1_to_be_rollbacked_after'); ++INSERT INTO t1 (f1) VALUES ('node1_to_be_rollbacked_after'); ++INSERT INTO t1 (f1) VALUES ('node1_to_be_rollbacked_after'); ++INSERT INTO t1 (f1) VALUES ('node1_to_be_rollbacked_after'); ++Performing --wsrep-recover ... ++Starting server ... ++Using --wsrep-start-position when starting mysqld ... ++SET AUTOCOMMIT=OFF; ++START TRANSACTION; ++INSERT INTO t1 (f1) VALUES ('node2_committed_after'); ++INSERT INTO t1 (f1) VALUES ('node2_committed_after'); ++INSERT INTO t1 (f1) VALUES ('node2_committed_after'); ++INSERT INTO t1 (f1) VALUES ('node2_committed_after'); ++INSERT INTO t1 (f1) VALUES ('node2_committed_after'); ++COMMIT; ++INSERT INTO t1 (f1) VALUES ('node1_to_be_committed_after'); ++INSERT INTO t1 (f1) VALUES ('node1_to_be_committed_after'); ++INSERT INTO t1 (f1) VALUES ('node1_to_be_committed_after'); ++INSERT INTO t1 (f1) VALUES ('node1_to_be_committed_after'); ++INSERT INTO t1 (f1) VALUES ('node1_to_be_committed_after'); ++COMMIT; ++SET AUTOCOMMIT=OFF; ++START TRANSACTION; ++INSERT INTO t1 (f1) VALUES ('node1_committed_after'); ++INSERT INTO t1 (f1) VALUES ('node1_committed_after'); ++INSERT INTO t1 (f1) VALUES ('node1_committed_after'); ++INSERT INTO t1 (f1) VALUES ('node1_committed_after'); ++INSERT INTO t1 (f1) VALUES ('node1_committed_after'); ++COMMIT; ++INSERT INTO t1 (f1) VALUES ('node1_to_be_rollbacked_after'); ++INSERT INTO t1 (f1) VALUES ('node1_to_be_rollbacked_after'); ++INSERT INTO t1 (f1) VALUES ('node1_to_be_rollbacked_after'); ++INSERT INTO t1 (f1) VALUES ('node1_to_be_rollbacked_after'); ++INSERT INTO t1 (f1) VALUES ('node1_to_be_rollbacked_after'); ++ROLLBACK; ++SELECT COUNT(*) = 2 FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME = 't1'; ++COUNT(*) = 2 ++1 ++SELECT COUNT(*) = 35 FROM t1; ++COUNT(*) = 35 ++1 ++SELECT COUNT(*) = 0 FROM (SELECT COUNT(*) AS c, f1 FROM t1 GROUP BY f1 HAVING c NOT IN (5, 10)) AS a1; ++COUNT(*) = 0 ++1 ++COMMIT; ++SET AUTOCOMMIT=ON; ++SELECT COUNT(*) = 2 FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME = 't1'; ++COUNT(*) = 2 ++1 ++SELECT COUNT(*) = 35 FROM t1; ++COUNT(*) = 35 ++1 ++SELECT COUNT(*) = 0 FROM (SELECT COUNT(*) AS c, f1 FROM t1 GROUP BY f1 HAVING c NOT IN (5, 10)) AS a1; ++COUNT(*) = 0 ++1 ++DROP TABLE t1; ++COMMIT; ++SET AUTOCOMMIT=ON; ++SET GLOBAL debug_dbug = $debug_orig; From 6b2da933592b54616467d08313fcb1d958fc67e4 Mon Sep 17 00:00:00 2001 From: Vladislav Vaintroub Date: Fri, 14 Sep 2018 09:35:18 +0100 Subject: [PATCH 100/148] MDEV-17192 Backup with -no-lock should fail, if DDL is detected at the end of backup --- extra/mariabackup/xtrabackup.cc | 70 +++++++++++++++++-- .../nolock_ddl_during_backup_end.result | 2 + .../nolock_ddl_during_backup_end.test | 14 ++++ 3 files changed, 81 insertions(+), 5 deletions(-) create mode 100644 mysql-test/suite/mariabackup/nolock_ddl_during_backup_end.result create mode 100644 mysql-test/suite/mariabackup/nolock_ddl_during_backup_end.test diff --git a/extra/mariabackup/xtrabackup.cc b/extra/mariabackup/xtrabackup.cc index d506228e8c6..9d453e5f9ad 100644 --- a/extra/mariabackup/xtrabackup.cc +++ b/extra/mariabackup/xtrabackup.cc @@ -588,7 +588,7 @@ std::string filename_to_spacename(const byte *filename, size_t len) @param[in] len length of name, in bytes @param[in] new_name new file name (NULL if not rename) @param[in] new_len length of new_name, in bytes (0 if NULL) */ -void backup_file_op(ulint space_id, const byte* flags, +static void backup_file_op(ulint space_id, const byte* flags, const byte* name, ulint len, const byte* new_name, ulint new_len) { @@ -616,19 +616,71 @@ void backup_file_op(ulint space_id, const byte* flags, } +/* + This callback is called if DDL operation is detected, + at the end of backup + + Normally, DDL operations are blocked due to FTWRL, + but in rare cases of --no-lock, they are not. + + We will abort backup in this case. +*/ +static void backup_file_op_fail(ulint space_id, const byte* flags, + const byte* name, ulint len, + const byte* new_name, ulint new_len) +{ + ut_a(opt_no_lock); + bool fail; + if (flags) { + msg("DDL tracking : create %zu \"%.*s\": %x\n", + space_id, int(len), name, mach_read_from_4(flags)); + std::string spacename = filename_to_spacename(name, len); + fail = !check_if_skip_table(spacename.c_str()); + } + else if (new_name) { + msg("DDL tracking : rename %zu \"%.*s\",\"%.*s\"\n", + space_id, int(len), name, int(new_len), new_name); + std::string spacename = filename_to_spacename(name, len); + std::string new_spacename = filename_to_spacename(new_name, new_len); + fail = !check_if_skip_table(spacename.c_str()) || !check_if_skip_table(new_spacename.c_str()); + } + else { + std::string spacename = filename_to_spacename(name, len); + fail = !check_if_skip_table(spacename.c_str()); + msg("DDL tracking : delete %zu \"%.*s\"\n", space_id, int(len), name); + } + if (fail) { + msg("ERROR : DDL operation detected in the late phase of backup." + "Backup is inconsistent. Remove --no-lock option to fix.\n"); + exit(EXIT_FAILURE); + } +} + + /** Callback whenever MLOG_INDEX_LOAD happens. @param[in] space_id space id to check */ static void backup_optimized_ddl_op(ulint space_id) { - // TODO : handle incremental - if (xtrabackup_incremental) - return; - pthread_mutex_lock(&backup_mutex); ddl_tracker.optimized_ddl.insert(space_id); pthread_mutex_unlock(&backup_mutex); } +/* + Optimized DDL callback at the end of backup that + run with --no-lock. Usually aborts the backup. +*/ +static void backup_optimized_ddl_op_fail(ulint space_id) { + ut_a(opt_no_lock); + msg("DDL tracking : optimized DDL on space %zu\n"); + if (ddl_tracker.tables_in_backup.find(space_id) != ddl_tracker.tables_in_backup.end()) { + msg("ERROR : Optimized DDL operation detected in the late phase of backup." + "Backup is inconsistent. Remove --no-lock option to fix.\n"); + exit(EXIT_FAILURE); + } +} + + /** Callback whenever MLOG_TRUNCATE happens. */ static void backup_truncate_fail() { @@ -4383,6 +4435,14 @@ void backup_fix_ddl(void) std::set dropped_tables; std::map renamed_tables; + /* Disable further DDL on backed up tables (only needed for --no-lock).*/ + pthread_mutex_lock(&backup_mutex); + log_file_op = backup_file_op_fail; + log_optimized_ddl_op = backup_optimized_ddl_op_fail; + pthread_mutex_unlock(&backup_mutex); + + DBUG_MARIABACKUP_EVENT("backup_fix_ddl",0); + for (space_id_to_name_t::iterator iter = ddl_tracker.tables_in_backup.begin(); iter != ddl_tracker.tables_in_backup.end(); iter++) { diff --git a/mysql-test/suite/mariabackup/nolock_ddl_during_backup_end.result b/mysql-test/suite/mariabackup/nolock_ddl_during_backup_end.result new file mode 100644 index 00000000000..1bd3052b708 --- /dev/null +++ b/mysql-test/suite/mariabackup/nolock_ddl_during_backup_end.result @@ -0,0 +1,2 @@ +CREATE TABLE t1(i int) ENGINE=INNODB; +# xtrabackup backup diff --git a/mysql-test/suite/mariabackup/nolock_ddl_during_backup_end.test b/mysql-test/suite/mariabackup/nolock_ddl_during_backup_end.test new file mode 100644 index 00000000000..f6bc51bd9a6 --- /dev/null +++ b/mysql-test/suite/mariabackup/nolock_ddl_during_backup_end.test @@ -0,0 +1,14 @@ +--source include/have_debug.inc +let $targetdir=$MYSQLTEST_VARDIR/tmp/backup; +mkdir $targetdir; + +CREATE TABLE t1(i int) ENGINE=INNODB; + +# this will table and populate it, after backup has list of tables to be copied +--let backup_fix_ddl=BEGIN NOT ATOMIC DROP TABLE test.t1;DO SLEEP(10000); END +echo # xtrabackup backup; +--disable_result_log +error 1; +exec $XTRABACKUP --defaults-file=$MYSQLTEST_VARDIR/my.cnf --backup --target-dir=$targetdir --no-lock --dbug=+d,mariabackup_events; +--enable_result_log +rmdir $targetdir; From d3a8b5aa9cee24a6397662e30df2e915f45460e0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jan=20Lindstr=C3=B6m?= Date: Fri, 14 Sep 2018 13:10:48 +0300 Subject: [PATCH 101/148] MDEV-14143: galera.galera_kill_smallchanges, galera.galera_kill_ddl fail in buildbot with "Last Applied Action message in non-primary configuration from member 0" Add supression. --- mysql-test/suite/galera/disabled.def | 1 - mysql-test/suite/galera/r/galera_kill_largechanges.result | 1 + mysql-test/suite/galera/r/galera_kill_smallchanges.result | 1 + mysql-test/suite/galera/t/galera_kill_largechanges.test | 2 ++ mysql-test/suite/galera/t/galera_kill_smallchanges.test | 2 ++ 5 files changed, 6 insertions(+), 1 deletion(-) diff --git a/mysql-test/suite/galera/disabled.def b/mysql-test/suite/galera/disabled.def index 35e1e59a92c..52bfbb65432 100644 --- a/mysql-test/suite/galera/disabled.def +++ b/mysql-test/suite/galera/disabled.def @@ -38,6 +38,5 @@ galera_suspend_slave: MDEV-13873 galera.galera_suspend_slave failed in buildbot galera_wan : MDEV-13879 galera.galera_wan fails in buildbot with Stray state UUID msg or with "Transport endpoint is not connected" or with a failure to start a node partition : MDEV-13881 galera.partition failed in buildbot with wrong result galera_transaction_read_only : MDEV-14142 galera.galera_transaction_read_only fails in buildbot with wrong result -galera_kill_smallchanges : MDEV-14143 galera.galera_kill_smallchanges, galera.galera_kill_ddl fail in buildbot with "Last Applied Action message in non-primary configuration from member 0" galera_as_slave_replication_budle : MDEV-15785 Test case galera_as_slave_replication_bundle caused debug assertion diff --git a/mysql-test/suite/galera/r/galera_kill_largechanges.result b/mysql-test/suite/galera/r/galera_kill_largechanges.result index a37056ad9b0..4eb5271fadf 100644 --- a/mysql-test/suite/galera/r/galera_kill_largechanges.result +++ b/mysql-test/suite/galera/r/galera_kill_largechanges.result @@ -1,3 +1,4 @@ +call mtr.add_suppression("WSREP: Last Applied Action message in non-primary configuration from member .*"); SET GLOBAL wsrep_provider_options = 'pc.ignore_sb=true'; CREATE TABLE ten (f1 INTEGER); INSERT INTO ten VALUES (1), (2), (3), (4), (5), (6), (7), (8), (9), (10); diff --git a/mysql-test/suite/galera/r/galera_kill_smallchanges.result b/mysql-test/suite/galera/r/galera_kill_smallchanges.result index 8409740a035..863b49dd51b 100644 --- a/mysql-test/suite/galera/r/galera_kill_smallchanges.result +++ b/mysql-test/suite/galera/r/galera_kill_smallchanges.result @@ -1,3 +1,4 @@ +call mtr.add_suppression("WSREP: Last Applied Action message in non-primary configuration from member .*"); SET GLOBAL wsrep_provider_options = 'pc.ignore_sb=true'; CREATE TABLE t1 (f1 INTEGER) ENGINE=InnoDB; Killing server ... diff --git a/mysql-test/suite/galera/t/galera_kill_largechanges.test b/mysql-test/suite/galera/t/galera_kill_largechanges.test index e9a32ce813b..2803a43d85a 100644 --- a/mysql-test/suite/galera/t/galera_kill_largechanges.test +++ b/mysql-test/suite/galera/t/galera_kill_largechanges.test @@ -6,6 +6,8 @@ --source include/galera_cluster.inc --source include/have_innodb.inc +call mtr.add_suppression("WSREP: Last Applied Action message in non-primary configuration from member .*"); + --connection node_1 # Enable the master to continue running during the split-brain situation that # occurs when the slave is killed diff --git a/mysql-test/suite/galera/t/galera_kill_smallchanges.test b/mysql-test/suite/galera/t/galera_kill_smallchanges.test index d998032cbc3..148c3dbc132 100644 --- a/mysql-test/suite/galera/t/galera_kill_smallchanges.test +++ b/mysql-test/suite/galera/t/galera_kill_smallchanges.test @@ -5,6 +5,8 @@ --source include/galera_cluster.inc --source include/have_innodb.inc +call mtr.add_suppression("WSREP: Last Applied Action message in non-primary configuration from member .*"); + --connection node_1 # Enable the master to continue running during the split-brain situation that From f0ee8496d2ff03a9b36739ab941eb9b06b87fea1 Mon Sep 17 00:00:00 2001 From: Vladislav Vaintroub Date: Fri, 14 Sep 2018 18:53:27 +0100 Subject: [PATCH 102/148] MDEV-15088 Lighter version of Windows Zip distributions Add new target win_package, that produces a) light ZIP (no test suite, no sql-bench, no debugsymbols) b) debug symbols ZIP --- cmake/install_macros.cmake | 23 +++++++-------------- win/packaging/CMakeLists.txt | 12 +++++++++++ win/packaging/CPackWixConfig.cmake | 2 +- win/packaging/CPackZIPConfig.cmake | 11 ++++++++++ win/packaging/CPackZIPDebugInfoConfig.cmake | 6 ++++++ 5 files changed, 37 insertions(+), 17 deletions(-) create mode 100644 win/packaging/CPackZIPConfig.cmake create mode 100644 win/packaging/CPackZIPDebugInfoConfig.cmake diff --git a/cmake/install_macros.cmake b/cmake/install_macros.cmake index d9d12371830..ece6df350db 100644 --- a/cmake/install_macros.cmake +++ b/cmake/install_macros.cmake @@ -33,26 +33,17 @@ FUNCTION (INSTALL_DEBUG_SYMBOLS) SET(targets ${ARG_UNPARSED_ARGUMENTS}) FOREACH(target ${targets}) GET_TARGET_PROPERTY(target_type ${target} TYPE) - + IF(target_type MATCHES "STATIC") + RETURN() + ENDIF() set(comp "") - - IF(target MATCHES "mysqld" OR type MATCHES "MODULE") - #MESSAGE("PDB: ${targets}") + + IF((target STREQUAL "mysqld")) SET(comp Server) ENDIF() - - IF(NOT comp MATCHES Server) - IF(ARG_COMPONENT MATCHES Development - OR ARG_COMPONENT MATCHES SharedLibraries - OR ARG_COMPONENT MATCHES Embedded) - SET(comp Debuginfo) - ENDIF() - ENDIF() - IF(NOT comp) - SET(comp Debuginfo_archive_only) # not in MSI - ENDIF() - IF(NOT target_type MATCHES "STATIC") + INSTALL(FILES $ DESTINATION symbols COMPONENT Debuginfo) + IF(comp) INSTALL(FILES $ DESTINATION ${ARG_INSTALL_LOCATION} COMPONENT ${comp}) ENDIF() ENDFOREACH() diff --git a/win/packaging/CMakeLists.txt b/win/packaging/CMakeLists.txt index d33516044f6..b3ccaaa308f 100644 --- a/win/packaging/CMakeLists.txt +++ b/win/packaging/CMakeLists.txt @@ -202,3 +202,15 @@ ADD_CUSTOM_TARGET( ) ADD_DEPENDENCIES(MSI_ESSENTIALS wixca) + +IF(CMAKE_GENERATOR MATCHES "Visual Studio") + SET(CPACK_CONFIG_PARAM -C $(Configuration)) +ENDIF() + +ADD_CUSTOM_TARGET( + win_package + COMMAND cpack ${CPACK_CONFIG_PARAM} --config ${CMAKE_CURRENT_SOURCE_DIR}/CPackZipConfig.cmake + COMMAND cpack ${CPACK_CONFIG_PARAM} --config ${CMAKE_CURRENT_SOURCE_DIR}/CPackZipDebugInfoConfig.cmake + WORKING_DIRECTORY ${CMAKE_BINARY_DIR} +) + diff --git a/win/packaging/CPackWixConfig.cmake b/win/packaging/CPackWixConfig.cmake index 581f4925d41..994b121797a 100644 --- a/win/packaging/CPackWixConfig.cmake +++ b/win/packaging/CPackWixConfig.cmake @@ -9,7 +9,7 @@ IF(ESSENTIALS) ENDIF() ELSE() SET(CPACK_COMPONENTS_USED - "Server;Client;Development;SharedLibraries;Documentation;Readme;Debuginfo;Common;VCCRT;connect-engine;ClientPlugins;gssapi-server;gssapi-client;aws-key-management;rocksdb-engine;backup") + "Server;Client;Development;SharedLibraries;Documentation;Readme;Common;VCCRT;connect-engine;ClientPlugins;gssapi-server;gssapi-client;aws-key-management;rocksdb-engine;backup") ENDIF() SET( WIX_FEATURE_MySQLServer_EXTRA_FEATURES "DBInstance;SharedClientServerComponents") diff --git a/win/packaging/CPackZIPConfig.cmake b/win/packaging/CPackZIPConfig.cmake new file mode 100644 index 00000000000..5afbffbf0fe --- /dev/null +++ b/win/packaging/CPackZIPConfig.cmake @@ -0,0 +1,11 @@ +INCLUDE(CPackConfig.cmake) +SET(CPACK_GENERATOR ZIP) +set(CPACK_ARCHIVE_COMPONENT_INSTALL ON) +set(CPACK_COMPONENTS_GROUPING ALL_COMPONENTS_IN_ONE) +SET(CPACK_COMPONENT_INCLUDE_TOPLEVEL_DIRECTORY ON) +FOREACH(it DebugBinaries Debuginfo IniFiles Junk Test SqlBench) + list(FIND CPACK_COMPONENTS_ALL "${it}" index) + IF(index GREATER 0) + LIST(REMOVE_AT CPACK_COMPONENTS_ALL ${index}) + ENDIF() +ENDFOREACH() diff --git a/win/packaging/CPackZIPDebugInfoConfig.cmake b/win/packaging/CPackZIPDebugInfoConfig.cmake new file mode 100644 index 00000000000..674c1675399 --- /dev/null +++ b/win/packaging/CPackZIPDebugInfoConfig.cmake @@ -0,0 +1,6 @@ +INCLUDE(CPackConfig.cmake) +set(CPACK_PACKAGE_FILE_NAME "${CPACK_PACKAGE_FILE_NAME}-debugsymbols") +set(CPACK_ARCHIVE_COMPONENT_INSTALL ON) +set(CPACK_COMPONENTS_GROUPING ALL_COMPONENTS_IN_ONE) +SET(CPACK_COMPONENT_INCLUDE_TOPLEVEL_DIRECTORY ON) +SET(CPACK_COMPONENTS_ALL Debuginfo) From 3473e0452ed5edb567f49b26c9f506431e175ac4 Mon Sep 17 00:00:00 2001 From: Igor Babaev Date: Thu, 13 Sep 2018 00:35:28 -0700 Subject: [PATCH 103/148] MDEV-17154 Multiple selects from parametrized CTE fails with syntax error This patch fills a serious flaw in the implementation of common table expressions. Before this patch an attempt to prepare a statement from a query with a parameter marker in a CTE that was used more than once in the query ended up with a bogus error message. Similarly if a statement in a stored procedure contained a CTE whose specification used a local variables and this CTE was referred to more than once in the statement then the server failed to execute the stored procedure returning a bogus error message on a non-existing field. The problems appeared due to incorrect handling of parameter markers / local variables in CTEs that were referred more than once. This patch fixes the problems by differentiating between the original occurrences of a parameter marker / local variable used in the specification of a CTE and the corresponding occurrences used in copies of this specification. These copies are substituted instead of non-first references to the CTE. The idea of the fix and even some code were taken from the MySQL implementation of the common table expressions. --- mysql-test/r/cte_nonrecursive.result | 129 +++++++++++++++++++++++++++ mysql-test/t/cte_nonrecursive.test | 90 +++++++++++++++++++ sql/item.cc | 53 ++++++++++- sql/item.h | 11 +++ sql/sql_cte.cc | 37 ++++++-- sql/sql_cte.h | 8 +- sql/sql_lex.cc | 1 + sql/sql_lex.h | 5 ++ sql/sql_prepare.cc | 12 +++ sql/sql_yacc.yy | 61 ++++++++++--- 10 files changed, 387 insertions(+), 20 deletions(-) diff --git a/mysql-test/r/cte_nonrecursive.result b/mysql-test/r/cte_nonrecursive.result index f6b80156ee0..2b9455d10f2 100644 --- a/mysql-test/r/cte_nonrecursive.result +++ b/mysql-test/r/cte_nonrecursive.result @@ -1512,3 +1512,132 @@ a a 1 1 drop database db_mdev_16473; use test; +# +# MDEV-17154: using parameter markers for PS within CTEs more than once +# using local variables in SP within CTEs more than once +# +prepare stmt from " +with cte(c) as (select ? ) select r.c, s.c+10 from cte as r, cte as s; +"; +set @a=2; +execute stmt using @a; +c s.c+10 +2 12 +set @a=5; +execute stmt using @a; +c s.c+10 +5 15 +deallocate prepare stmt; +prepare stmt from " +with cte(c) as (select ? ) select c from cte union select c+10 from cte; +"; +set @a=2; +execute stmt using @a; +c +2 +12 +set @a=5; +execute stmt using @a; +c +5 +15 +deallocate prepare stmt; +prepare stmt from " +with cte_e(a,b) as +( + with cte_o(c) as (select ?) + select r.c+10, s.c+20 from cte_o as r, cte_o as s +) +select * from cte_e as cte_e1 where a > 12 +union all +select * from cte_e as cte_e2; +"; +set @a=2; +execute stmt using @a; +a b +12 22 +set @a=5; +execute stmt using @a; +a b +15 25 +15 25 +deallocate prepare stmt; +create table t1 (a int, b int); +insert into t1 values +(3,33), (1,17), (7,72), (4,45), (2,27), (3,35), (4,47), (3,38), (2,22); +prepare stmt from " +with cte as (select * from t1 where a < ? and b > ?) + select r.a, r.b+10, s.a, s.b+20 from cte as r, cte as s where r.a=s.a+1; +"; +set @a=4, @b=20; +execute stmt using @a,@b; +a r.b+10 a s.b+20 +3 43 2 47 +3 45 2 47 +3 48 2 47 +3 43 2 42 +3 45 2 42 +3 48 2 42 +set @a=5, @b=20; +execute stmt using @a,@b; +a r.b+10 a s.b+20 +4 55 3 53 +4 57 3 53 +3 43 2 47 +3 45 2 47 +3 48 2 47 +4 55 3 55 +4 57 3 55 +4 55 3 58 +4 57 3 58 +3 43 2 42 +3 45 2 42 +3 48 2 42 +deallocate prepare stmt; +create procedure p1() +begin +declare i int; +set i = 0; +while i < 4 do +insert into t1 +with cte(a) as (select i) select r.a-1, s.a+1 from cte as r, cte as s; +set i = i+1; +end while; +end| +create procedure p2(in i int) +begin +insert into t1 +with cte(a) as (select i) select r.a-1, s.a+1 from cte as r, cte as s; +end| +delete from t1; +call p1(); +select * from t1; +a b +-1 1 +0 2 +1 3 +2 4 +call p1(); +select * from t1; +a b +-1 1 +0 2 +1 3 +2 4 +-1 1 +0 2 +1 3 +2 4 +delete from t1; +call p2(3); +select * from t1; +a b +2 4 +call p2(7); +select * from t1; +a b +2 4 +6 8 +drop procedure p1; +drop procedure p2; +drop table t1; diff --git a/mysql-test/t/cte_nonrecursive.test b/mysql-test/t/cte_nonrecursive.test index 11c864bcac1..648fc89975c 100644 --- a/mysql-test/t/cte_nonrecursive.test +++ b/mysql-test/t/cte_nonrecursive.test @@ -1057,3 +1057,93 @@ select * from cte, db_mdev_16473.t1 as t where cte.a=t.a; drop database db_mdev_16473; use test; + +--echo # +--echo # MDEV-17154: using parameter markers for PS within CTEs more than once +--echo # using local variables in SP within CTEs more than once +--echo # + +prepare stmt from " +with cte(c) as (select ? ) select r.c, s.c+10 from cte as r, cte as s; +"; +set @a=2; +execute stmt using @a; +set @a=5; +execute stmt using @a; +deallocate prepare stmt; + +prepare stmt from " +with cte(c) as (select ? ) select c from cte union select c+10 from cte; +"; +set @a=2; +execute stmt using @a; +set @a=5; +execute stmt using @a; +deallocate prepare stmt; + +prepare stmt from " +with cte_e(a,b) as +( + with cte_o(c) as (select ?) + select r.c+10, s.c+20 from cte_o as r, cte_o as s +) +select * from cte_e as cte_e1 where a > 12 +union all +select * from cte_e as cte_e2; +"; +set @a=2; +execute stmt using @a; +set @a=5; +execute stmt using @a; +deallocate prepare stmt; + +create table t1 (a int, b int); +insert into t1 values + (3,33), (1,17), (7,72), (4,45), (2,27), (3,35), (4,47), (3,38), (2,22); + +prepare stmt from " +with cte as (select * from t1 where a < ? and b > ?) + select r.a, r.b+10, s.a, s.b+20 from cte as r, cte as s where r.a=s.a+1; +"; +set @a=4, @b=20; +execute stmt using @a,@b; +set @a=5, @b=20; +execute stmt using @a,@b; +deallocate prepare stmt; + +delimiter |; + +create procedure p1() +begin + declare i int; + set i = 0; + while i < 4 do + insert into t1 + with cte(a) as (select i) select r.a-1, s.a+1 from cte as r, cte as s; + set i = i+1; + end while; +end| + +create procedure p2(in i int) +begin + insert into t1 + with cte(a) as (select i) select r.a-1, s.a+1 from cte as r, cte as s; +end| + +delimiter ;| + +delete from t1; +call p1(); +select * from t1; +call p1(); +select * from t1; + +delete from t1; +call p2(3); +select * from t1; +call p2(7); +select * from t1; + +drop procedure p1; +drop procedure p2; +drop table t1; diff --git a/sql/item.cc b/sql/item.cc index af8d431fbc2..45382c0a6f1 100644 --- a/sql/item.cc +++ b/sql/item.cc @@ -3423,7 +3423,8 @@ Item_param::Item_param(THD *thd, uint pos_in_query_arg): For dynamic SQL, settability depends on the type of Item passed as an actual parameter. See Item_param::set_from_item(). */ - m_is_settable_routine_parameter(true) + m_is_settable_routine_parameter(true), + m_clones(thd->mem_root) { name= (char*) "?"; /* @@ -3435,6 +3436,56 @@ Item_param::Item_param(THD *thd, uint pos_in_query_arg): } +/* Add reference to Item_param used in a copy of CTE to its master as a clone */ + +bool Item_param::add_as_clone(THD *thd) +{ + LEX *lex= thd->lex; + uint master_pos= pos_in_query + lex->clone_spec_offset; + List_iterator_fast it(lex->param_list); + Item_param *master_param; + while ((master_param = it++)) + { + if (master_pos == master_param->pos_in_query) + return master_param->register_clone(this); + } + DBUG_ASSERT(false); + return false; +} + + +/* Update all clones of Item_param to sync their values with the item's value */ + +void Item_param::sync_clones() +{ + Item_param **c_ptr= m_clones.begin(); + Item_param **end= m_clones.end(); + for ( ; c_ptr < end; c_ptr++) + { + Item_param *c= *c_ptr; + /* Scalar-type members: */ + c->maybe_null= maybe_null; + c->null_value= null_value; + c->max_length= max_length; + c->decimals= decimals; + c->state= state; + c->item_type= item_type; + c->set_param_func= set_param_func; + c->value= value; + c->unsigned_flag= unsigned_flag; + /* Class-type members: */ + c->decimal_value= decimal_value; + /* + Note that String's assignment op properly sets m_is_alloced to 'false', + which is correct here: c->str_value doesn't own anything. + */ + c->str_value= str_value; + c->str_value_ptr= str_value_ptr; + c->collation= collation; + } +} + + void Item_param::set_null() { DBUG_ENTER("Item_param::set_null"); diff --git a/sql/item.h b/sql/item.h index 8fad8dadf22..1a280e3091f 100644 --- a/sql/item.h +++ b/sql/item.h @@ -28,6 +28,7 @@ #include "field.h" /* Derivation */ #include "sql_type.h" #include "sql_time.h" +#include "mem_root_array.h" C_MODE_START #include @@ -3067,6 +3068,10 @@ public: bool check_vcol_func_processor(void *int_arg) {return FALSE;} Item *get_copy(THD *thd, MEM_ROOT *mem_root) { return 0; } + bool add_as_clone(THD *thd); + void sync_clones(); + bool register_clone(Item_param *i) { return m_clones.push_back(i); } + private: void invalid_default_param() const; @@ -3082,6 +3087,12 @@ public: private: Send_field *m_out_param_info; bool m_is_settable_routine_parameter; + /* + Array of all references of this parameter marker used in a CTE to its clones + created for copies of this marker used the CTE's copies. It's used to + synchronize the actual value of the parameter with the values of the clones. + */ + Mem_root_array m_clones; }; diff --git a/sql/sql_cte.cc b/sql/sql_cte.cc index 45f24c3a248..5a590bfea93 100644 --- a/sql/sql_cte.cc +++ b/sql/sql_cte.cc @@ -726,9 +726,10 @@ bool With_clause::prepare_unreferenced_elements(THD *thd) @brief Save the specification of the given with table as a string - @param thd The context of the statement containing this with element - @param spec_start The beginning of the specification in the input string - @param spec_end The end of the specification in the input string + @param thd The context of the statement containing this with element + @param spec_start The beginning of the specification in the input string + @param spec_end The end of the specification in the input string + @param spec_offset The offset of the specification in the input string @details The method creates for a string copy of the specification used in this @@ -740,11 +741,19 @@ bool With_clause::prepare_unreferenced_elements(THD *thd) true on failure */ -bool With_element::set_unparsed_spec(THD *thd, char *spec_start, char *spec_end) +bool With_element::set_unparsed_spec(THD *thd, char *spec_start, char *spec_end, + uint spec_offset) { + stmt_prepare_mode= thd->m_parser_state->m_lip.stmt_prepare_mode; unparsed_spec.length= spec_end - spec_start; - unparsed_spec.str= (char*) thd->memdup(spec_start, unparsed_spec.length+1); - unparsed_spec.str[unparsed_spec.length]= '\0'; + if (stmt_prepare_mode || !thd->lex->sphead) + unparsed_spec.str= spec_start; + else + { + unparsed_spec.str= (char*) thd->memdup(spec_start, unparsed_spec.length+1); + unparsed_spec.str[unparsed_spec.length]= '\0'; + } + unparsed_spec_offset= spec_offset; if (!unparsed_spec.str) { @@ -814,13 +823,28 @@ st_select_lex_unit *With_element::clone_parsed_spec(THD *thd, TABLE_LIST *spec_tables_tail; st_select_lex *with_select; + char save_end= unparsed_spec.str[unparsed_spec.length]; + unparsed_spec.str[unparsed_spec.length]= '\0'; if (parser_state.init(thd, unparsed_spec.str, unparsed_spec.length)) goto err; + parser_state.m_lip.stmt_prepare_mode= stmt_prepare_mode; + parser_state.m_lip.multi_statements= false; + parser_state.m_lip.m_digest= NULL; + lex_start(thd); + lex->clone_spec_offset= unparsed_spec_offset; + lex->param_list= old_lex->param_list; + lex->sphead= old_lex->sphead; + lex->spname= old_lex->spname; + lex->spcont= old_lex->spcont; + lex->sp_chistics= old_lex->sp_chistics; + lex->stmt_lex= old_lex; with_select= &lex->select_lex; with_select->select_number= ++thd->lex->stmt_lex->current_select_number; parse_status= parse_sql(thd, &parser_state, 0); + unparsed_spec.str[unparsed_spec.length]= save_end; + if (parse_status) goto err; @@ -865,6 +889,7 @@ st_select_lex_unit *With_element::clone_parsed_spec(THD *thd, with_select)); if (check_dependencies_in_with_clauses(lex->with_clauses_list)) res= NULL; + lex->sphead= NULL; // in order not to delete lex->sphead lex_end(lex); err: if (arena) diff --git a/sql/sql_cte.h b/sql/sql_cte.h index 6351b65a07c..58f371d936b 100644 --- a/sql/sql_cte.h +++ b/sql/sql_cte.h @@ -74,6 +74,11 @@ private: It used to build clones of the specification if they are needed. */ LEX_STRING unparsed_spec; + /* Offset of the specification in the input string */ + uint unparsed_spec_offset; + + /* True if the with element is used a prepared statement */ + bool stmt_prepare_mode; /* Return the map where 1 is set only in the position for this element */ table_map get_elem_map() { return (table_map) 1 << number; } @@ -174,7 +179,8 @@ public: TABLE_LIST *find_first_sq_rec_ref_in_select(st_select_lex *sel); - bool set_unparsed_spec(THD *thd, char *spec_start, char *spec_end); + bool set_unparsed_spec(THD *thd, char *spec_start, char *spec_end, + uint spec_offset); st_select_lex_unit *clone_parsed_spec(THD *thd, TABLE_LIST *with_table); diff --git a/sql/sql_lex.cc b/sql/sql_lex.cc index d3ddd9e208c..3624b238fbc 100644 --- a/sql/sql_lex.cc +++ b/sql/sql_lex.cc @@ -671,6 +671,7 @@ void lex_start(THD *thd) lex->curr_with_clause= 0; lex->with_clauses_list= 0; lex->with_clauses_list_last_next= &lex->with_clauses_list; + lex->clone_spec_offset= 0; lex->value_list.empty(); lex->update_list.empty(); lex->set_var_list.empty(); diff --git a/sql/sql_lex.h b/sql/sql_lex.h index a1f6b202ae6..939b48ba825 100644 --- a/sql/sql_lex.h +++ b/sql/sql_lex.h @@ -2552,6 +2552,11 @@ struct LEX: public Query_tables_list with clause in the current statement */ With_clause **with_clauses_list_last_next; + /* + When a copy of a with element is parsed this is set to the offset of + the with element in the input string, otherwise it's set to 0 + */ + uint clone_spec_offset; /* Query Plan Footprint of a currently running select */ Explain_query *explain; diff --git a/sql/sql_prepare.cc b/sql/sql_prepare.cc index 0d7b0433bdd..51e9152220b 100644 --- a/sql/sql_prepare.cc +++ b/sql/sql_prepare.cc @@ -947,6 +947,7 @@ static bool insert_params(Prepared_statement *stmt, uchar *null_array, DBUG_RETURN(1); if (param->convert_str_value(stmt->thd)) DBUG_RETURN(1); /* out of memory */ + param->sync_clones(); } DBUG_RETURN(0); } @@ -995,6 +996,7 @@ static bool insert_bulk_params(Prepared_statement *stmt, } else DBUG_RETURN(1); // long is not supported here + param->sync_clones(); } DBUG_RETURN(0); } @@ -1023,6 +1025,7 @@ static bool set_conversion_functions(Prepared_statement *stmt, read_pos+= 2; (**it).unsigned_flag= MY_TEST(typecode & signed_bit); setup_one_conversion_function(thd, *it, (uchar) (typecode & 0xff)); + (*it)->sync_clones(); } *data= read_pos; DBUG_RETURN(0); @@ -1093,6 +1096,7 @@ static bool emb_insert_params(Prepared_statement *stmt, String *expanded_query) if (param->has_no_value()) DBUG_RETURN(1); } + param->sync_clones(); } if (param->convert_str_value(thd)) DBUG_RETURN(1); /* out of memory */ @@ -1135,6 +1139,7 @@ static bool emb_insert_params_with_log(Prepared_statement *stmt, String *query) if (param->convert_str_value(thd)) DBUG_RETURN(1); /* out of memory */ + param->sync_clones(); } if (acc.finalize()) DBUG_RETURN(1); @@ -1190,7 +1195,11 @@ swap_parameter_array(Item_param **param_array_dst, Item_param **end= param_array_dst + param_count; for (; dst < end; ++src, ++dst) + { (*dst)->set_param_type_and_swap_value(*src); + (*dst)->sync_clones(); + (*src)->sync_clones(); + } } @@ -1221,6 +1230,7 @@ insert_params_from_actual_params(Prepared_statement *stmt, if (ps_param->save_in_param(stmt->thd, param) || param->convert_str_value(stmt->thd)) DBUG_RETURN(1); + param->sync_clones(); } DBUG_RETURN(0); } @@ -1269,6 +1279,8 @@ insert_params_from_actual_params_with_log(Prepared_statement *stmt, if (param->convert_str_value(thd)) DBUG_RETURN(1); + + param->sync_clones(); } if (acc.finalize()) DBUG_RETURN(1); diff --git a/sql/sql_yacc.yy b/sql/sql_yacc.yy index 47e5f2f9402..6e7128ce440 100644 --- a/sql/sql_yacc.yy +++ b/sql/sql_yacc.yy @@ -1751,7 +1751,8 @@ bool my_yyoverflow(short **a, YYSTYPE **b, ulong *yystacksize); table_ident_opt_wild create_like %type - remember_name remember_end opt_db remember_tok_start + remember_name remember_end opt_db + remember_tok_start remember_tok_end wild_and_where field_length opt_field_length opt_field_length_default_1 @@ -8750,6 +8751,12 @@ remember_tok_start: } ; +remember_tok_end: + { + $$= (char*) YYLIP->get_tok_end(); + } + ; + remember_name: { $$= (char*) YYLIP->get_cpp_tok_start(); @@ -11828,10 +11835,18 @@ limit_option: sp_pcontext *spc = lex->spcont; if (spc && (spv = spc->find_variable($1, false))) { + uint pos_in_query= 0; + uint len_in_query= 0; + if (!lex->clone_spec_offset) + { + pos_in_query= (uint)(lip->get_tok_start() - + lex->sphead->m_tmp_query); + len_in_query= (uint)(lip->get_ptr() - + lip->get_tok_start()); + } splocal= new (thd->mem_root) Item_splocal(thd, $1, spv->offset, spv->sql_type(), - (uint)(lip->get_tok_start() - lex->sphead->m_tmp_query), - (uint)(lip->get_ptr() - lip->get_tok_start())); + pos_in_query, len_in_query); if (splocal == NULL) MYSQL_YYABORT; #ifndef DBUG_OFF @@ -13842,14 +13857,23 @@ param_marker: LEX *lex= thd->lex; Lex_input_stream *lip= YYLIP; Item_param *item; + bool rc; if (! lex->parsing_options.allows_variable) my_yyabort_error((ER_VIEW_SELECT_VARIABLE, MYF(0))); - const char *query_start= lex->sphead ? lex->sphead->m_tmp_query - : thd->query(); - item= new (thd->mem_root) Item_param(thd, (uint)(lip->get_tok_start() - - query_start)); - if (!($$= item) || lex->param_list.push_back(item, thd->mem_root)) + const char *query_start= lex->sphead && !lex->clone_spec_offset ? + lex->sphead->m_tmp_query : lip->get_buf(); + item= new (thd->mem_root) Item_param(thd, + (uint)(lip->get_tok_start() - + query_start)); + if (!($$= item)) + MYSQL_YYABORT; + if (!lex->clone_spec_offset) + rc= lex->param_list.push_back(item, thd->mem_root); + else + rc= item->add_as_clone(thd); + if (rc) my_yyabort_error((ER_OUT_OF_RESOURCES, MYF(0))); + } ; @@ -14045,12 +14069,17 @@ with_list_element: MYSQL_YYABORT; Lex->with_column_list.empty(); } - AS '(' remember_name subselect remember_end ')' + AS '(' remember_tok_start subselect remember_tok_end ')' { + LEX *lex= thd->lex; + const char *query_start= lex->sphead ? lex->sphead->m_tmp_query + : thd->query(); + char *spec_start= $6 + 1; With_element *elem= new With_element($1, *$2, $7->master_unit()); if (elem == NULL || Lex->curr_with_clause->add_with_element(elem)) MYSQL_YYABORT; - if (elem->set_unparsed_spec(thd, $6+1, $8)) + if (elem->set_unparsed_spec(thd, spec_start, $8, + spec_start - query_start)) MYSQL_YYABORT; } ; @@ -14140,10 +14169,18 @@ simple_ident: my_yyabort_error((ER_VIEW_SELECT_VARIABLE, MYF(0))); Item_splocal *splocal; + uint pos_in_query= 0; + uint len_in_query= 0; + if (!lex->clone_spec_offset) + { + pos_in_query= (uint)(lip->get_tok_start_prev() - + lex->sphead->m_tmp_query); + len_in_query= (uint)(lip->get_tok_end() - + lip->get_tok_start_prev()); + } splocal= new (thd->mem_root) Item_splocal(thd, $1, spv->offset, spv->sql_type(), - (uint)(lip->get_tok_start_prev() - lex->sphead->m_tmp_query), - (uint)(lip->get_tok_end() - lip->get_tok_start_prev())); + pos_in_query, len_in_query); if (splocal == NULL) MYSQL_YYABORT; #ifndef DBUG_OFF From 7c76f8aa3ae8f8dc75ceb9d5f3d1f2c363908888 Mon Sep 17 00:00:00 2001 From: Elena Stepanova Date: Sat, 15 Sep 2018 21:54:22 +0300 Subject: [PATCH 104/148] Disable incompatible tests --- mysql-test/collections/10.0-compatible.list | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/mysql-test/collections/10.0-compatible.list b/mysql-test/collections/10.0-compatible.list index 415c74ab00c..4778bde3b78 100644 --- a/mysql-test/collections/10.0-compatible.list +++ b/mysql-test/collections/10.0-compatible.list @@ -1,3 +1,5 @@ +# All lines which have a hash sign *anywhere* will be ignored + main.1st main.adddate_454 main.almost_full @@ -500,7 +502,8 @@ main.subselect-crash_15755 main.subselect_exists2in main.subselect_exists2in_costmat main.subselect_extra -main.subselect_extra_no_semijoin +# Disabled due to connect log output +# main.subselect_extra_no_semijoin main.subselect_gis main.subselect_innodb main.subselect_mat @@ -579,7 +582,8 @@ main.win_empty_over main.win_first_last_value main.win_insert_select main.win_i_s -main.win_lead_lag +# Disabled due to unknown SQL error name +# main.win_lead_lag main.win_min_max main.win_nth_value main.win_orderby From 7419f72b7183e40a24cd53a139b78aeaf41503d2 Mon Sep 17 00:00:00 2001 From: Igor Babaev Date: Sat, 15 Sep 2018 15:43:08 -0700 Subject: [PATCH 105/148] Fixed a compiler warning. --- sql/sql_yacc.yy | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sql/sql_yacc.yy b/sql/sql_yacc.yy index 6e7128ce440..67c757893d1 100644 --- a/sql/sql_yacc.yy +++ b/sql/sql_yacc.yy @@ -14079,7 +14079,7 @@ with_list_element: if (elem == NULL || Lex->curr_with_clause->add_with_element(elem)) MYSQL_YYABORT; if (elem->set_unparsed_spec(thd, spec_start, $8, - spec_start - query_start)) + (uint) (spec_start - query_start))) MYSQL_YYABORT; } ; From e89b611dc9535183d617391c4d1229f0bca66d31 Mon Sep 17 00:00:00 2001 From: Alexey Botchkov Date: Sun, 16 Sep 2018 10:22:32 +0400 Subject: [PATCH 106/148] MDEV-16050 cte + geometry functions lead to crash. Structures based on Gcalc_dyn_list need to be treated properly when copied in Item::get_copy(). --- mysql-test/r/gis-precise.result | 3 +++ mysql-test/t/gis-precise.test | 4 ++++ sql/gcalc_slicescan.cc | 11 +++++++++++ sql/gcalc_slicescan.h | 7 +++++++ sql/gcalc_tools.cc | 11 +++++++++++ sql/gcalc_tools.h | 1 + 6 files changed, 37 insertions(+) diff --git a/mysql-test/r/gis-precise.result b/mysql-test/r/gis-precise.result index 89e5c237413..56c9472bd73 100644 --- a/mysql-test/r/gis-precise.result +++ b/mysql-test/r/gis-precise.result @@ -505,6 +505,9 @@ GEOMETRYFROMTEXT('POINT(4599 60359)'), ) as relate_res; relate_res 0 +with cte1 as( select (st_symdifference(point(1,1),point(1,1))) as a1 ), cte2 as(select 1 as a2) select 1 from cte1 where cte1.a1 < '1'; +1 +1 DROP TABLE IF EXISTS p1; CREATE PROCEDURE p1(dist DOUBLE, geom TEXT) BEGIN diff --git a/mysql-test/t/gis-precise.test b/mysql-test/t/gis-precise.test index 7391b2114f3..39a35e1c9cf 100644 --- a/mysql-test/t/gis-precise.test +++ b/mysql-test/t/gis-precise.test @@ -381,5 +381,9 @@ SELECT ST_RELATE( 'F*FFFF**F' ) as relate_res; +# MDEV- 16050 cte + geometry functions lead to crash. + +with cte1 as( select (st_symdifference(point(1,1),point(1,1))) as a1 ), cte2 as(select 1 as a2) select 1 from cte1 where cte1.a1 < '1'; + --source include/gis_debug.inc diff --git a/sql/gcalc_slicescan.cc b/sql/gcalc_slicescan.cc index ab48542add6..68764205302 100644 --- a/sql/gcalc_slicescan.cc +++ b/sql/gcalc_slicescan.cc @@ -177,6 +177,17 @@ Gcalc_dyn_list::Gcalc_dyn_list(size_t blk_size, size_t sizeof_item): {} +Gcalc_dyn_list::Gcalc_dyn_list(const Gcalc_dyn_list &dl) +{ + m_blk_size= dl.m_blk_size; + m_sizeof_item= dl.m_sizeof_item; + m_points_per_blk= dl.m_points_per_blk; + m_blk_hook= &m_first_blk; + m_free= NULL; + m_keep= NULL; +} + + void Gcalc_dyn_list::format_blk(void* block) { Item *pi_end, *cur_pi, *first_pi; diff --git a/sql/gcalc_slicescan.h b/sql/gcalc_slicescan.h index b9516fc8d8c..ebf173c1a57 100644 --- a/sql/gcalc_slicescan.h +++ b/sql/gcalc_slicescan.h @@ -63,6 +63,7 @@ public: }; Gcalc_dyn_list(size_t blk_size, size_t sizeof_item); + Gcalc_dyn_list(const Gcalc_dyn_list &dl); ~Gcalc_dyn_list(); Item *new_item() { @@ -229,6 +230,12 @@ public: Gcalc_dyn_list(blk_size, sizeof(Info)), m_hook(&m_first), m_n_points(0) {} + + Gcalc_heap(const Gcalc_heap &gh) : + Gcalc_dyn_list(gh), + m_hook(&m_first), m_n_points(0) + {} + void set_extent(double xmin, double xmax, double ymin, double ymax); Info *new_point_info(double x, double y, gcalc_shape_info shape); void free_point_info(Info *i, Gcalc_dyn_list::Item **i_hook); diff --git a/sql/gcalc_tools.cc b/sql/gcalc_tools.cc index 71118ae1c9f..b472665d0d2 100644 --- a/sql/gcalc_tools.cc +++ b/sql/gcalc_tools.cc @@ -663,6 +663,17 @@ Gcalc_operation_reducer::Gcalc_operation_reducer(size_t blk_size) : {} +Gcalc_operation_reducer::Gcalc_operation_reducer( + const Gcalc_operation_reducer &gor) : + Gcalc_dyn_list(gor), +#ifndef GCALC_DBUG_OFF + n_res_points(0), +#endif /*GCALC_DBUG_OFF*/ + m_res_hook((Gcalc_dyn_list::Item **)&m_result), + m_first_active_thread(NULL) +{} + + void Gcalc_operation_reducer::init(Gcalc_function *fn, modes mode) { m_fn= fn; diff --git a/sql/gcalc_tools.h b/sql/gcalc_tools.h index 8bda3c144a6..4d5aec0d443 100644 --- a/sql/gcalc_tools.h +++ b/sql/gcalc_tools.h @@ -224,6 +224,7 @@ public: }; Gcalc_operation_reducer(size_t blk_size=8192); + Gcalc_operation_reducer(const Gcalc_operation_reducer &gor); void init(Gcalc_function *fn, modes mode= default_mode); Gcalc_operation_reducer(Gcalc_function *fn, modes mode= default_mode, size_t blk_size=8192); From 4dc20ff687d50b2a5d889653c11674fb1d310cf8 Mon Sep 17 00:00:00 2001 From: Michael Widenius Date: Sun, 16 Sep 2018 11:20:07 +0300 Subject: [PATCH 107/148] Fixed wrong printf in mariabackup --- extra/mariabackup/xtrabackup.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/extra/mariabackup/xtrabackup.cc b/extra/mariabackup/xtrabackup.cc index 9d453e5f9ad..4baa9b293fd 100644 --- a/extra/mariabackup/xtrabackup.cc +++ b/extra/mariabackup/xtrabackup.cc @@ -672,7 +672,7 @@ static void backup_optimized_ddl_op(ulint space_id) */ static void backup_optimized_ddl_op_fail(ulint space_id) { ut_a(opt_no_lock); - msg("DDL tracking : optimized DDL on space %zu\n"); + msg("DDL tracking : optimized DDL on space %lu\n", space_id); if (ddl_tracker.tables_in_backup.find(space_id) != ddl_tracker.tables_in_backup.end()) { msg("ERROR : Optimized DDL operation detected in the late phase of backup." "Backup is inconsistent. Remove --no-lock option to fix.\n"); From bd7c31621ff8f490866a5a5dfb1d99de35d062a4 Mon Sep 17 00:00:00 2001 From: Michael Widenius Date: Sun, 16 Sep 2018 11:22:32 +0300 Subject: [PATCH 108/148] MDEV-17065 Crash on SHOW CREATE TABLE with CHECK CONSTRAINT The problem was that the original alias was replaced with a new allocated string, but constraint item's are still pointing to the original alias. Fixed by storing the original alias used when printing constraint in the tables mem_root. --- mysql-test/r/constraints.result | 37 +++++++++++++++++++++++++++++++++ mysql-test/t/constraints.test | 25 ++++++++++++++++++++++ sql/table.cc | 13 ++++++++++-- 3 files changed, 73 insertions(+), 2 deletions(-) diff --git a/mysql-test/r/constraints.result b/mysql-test/r/constraints.result index 57cfbfb3d37..3c061989fd3 100644 --- a/mysql-test/r/constraints.result +++ b/mysql-test/r/constraints.result @@ -74,3 +74,40 @@ CREATE TABLE t_illegal (col_1 INT CHECK something (whatever)); ERROR 42000: You have an error in your SQL syntax; check the manual that corresponds to your MariaDB server version for the right syntax to use near 'something (whatever))' at line 1 CREATE TABLE t_illegal (col_1 INT CHECK something); ERROR 42000: You have an error in your SQL syntax; check the manual that corresponds to your MariaDB server version for the right syntax to use near 'something)' at line 1 +CREATE TABLE long_enough_name ( +pk int(11) NOT NULL, +f1 int(11) DEFAULT NULL, +f2 int(11) NOT NULL, +f3 int(11) DEFAULT NULL, +f4 timestamp NOT NULL DEFAULT current_timestamp(), +f5 varchar(32) COLLATE utf8_bin NOT NULL DEFAULT 'foo', +f6 smallint(6) NOT NULL DEFAULT 1, +f7 int(11) DEFAULT NULL, +PRIMARY KEY (pk), +KEY idx1 (f7), +KEY idx2 (f1), +KEY idx3 (f2), +KEY idx4 (f3), +CONSTRAINT constr CHECK (f6 >= 0) +); +SELECT * FROM long_enough_name AS tbl; +pk f1 f2 f3 f4 f5 f6 f7 +SHOW CREATE TABLE long_enough_name; +Table Create Table +long_enough_name CREATE TABLE `long_enough_name` ( + `pk` int(11) NOT NULL, + `f1` int(11) DEFAULT NULL, + `f2` int(11) NOT NULL, + `f3` int(11) DEFAULT NULL, + `f4` timestamp NOT NULL DEFAULT current_timestamp(), + `f5` varchar(32) CHARACTER SET utf8 COLLATE utf8_bin NOT NULL DEFAULT 'foo', + `f6` smallint(6) NOT NULL DEFAULT 1, + `f7` int(11) DEFAULT NULL, + PRIMARY KEY (`pk`), + KEY `idx1` (`f7`), + KEY `idx2` (`f1`), + KEY `idx3` (`f2`), + KEY `idx4` (`f3`), + CONSTRAINT `constr` CHECK (`f6` >= 0) +) ENGINE=MyISAM DEFAULT CHARSET=latin1 +DROP TABLE long_enough_name; diff --git a/mysql-test/t/constraints.test b/mysql-test/t/constraints.test index 1997c23bfa9..fe51e5060dc 100644 --- a/mysql-test/t/constraints.test +++ b/mysql-test/t/constraints.test @@ -77,3 +77,28 @@ CREATE TABLE t_illegal (col_1 INT CHECK something (whatever)); --error ER_PARSE_ERROR CREATE TABLE t_illegal (col_1 INT CHECK something); +# +# MDEV-17065 Crash on SHOW CREATE TABLE with CHECK CONSTRAINT +# + +CREATE TABLE long_enough_name ( +pk int(11) NOT NULL, +f1 int(11) DEFAULT NULL, +f2 int(11) NOT NULL, +f3 int(11) DEFAULT NULL, +f4 timestamp NOT NULL DEFAULT current_timestamp(), +f5 varchar(32) COLLATE utf8_bin NOT NULL DEFAULT 'foo', +f6 smallint(6) NOT NULL DEFAULT 1, +f7 int(11) DEFAULT NULL, +PRIMARY KEY (pk), +KEY idx1 (f7), +KEY idx2 (f1), +KEY idx3 (f2), +KEY idx4 (f3), +CONSTRAINT constr CHECK (f6 >= 0) +); + +SELECT * FROM long_enough_name AS tbl; +SHOW CREATE TABLE long_enough_name; + +DROP TABLE long_enough_name; diff --git a/sql/table.cc b/sql/table.cc index 585cb13a86c..f557799e7dd 100644 --- a/sql/table.cc +++ b/sql/table.cc @@ -3007,6 +3007,8 @@ enum open_frm_error open_table_from_share(THD *thd, TABLE_SHARE *share, { enum open_frm_error error; uint records, i, bitmap_size, bitmap_count; + size_t tmp_length; + const char *tmp_alias; bool error_reported= FALSE; uchar *record, *bitmaps; Field **field_ptr; @@ -3033,8 +3035,15 @@ enum open_frm_error open_table_from_share(THD *thd, TABLE_SHARE *share, } init_sql_alloc(&outparam->mem_root, TABLE_ALLOC_BLOCK_SIZE, 0, MYF(0)); - if (outparam->alias.copy(alias, strlen(alias), table_alias_charset)) + /* + We have to store the original alias in mem_root as constraints and virtual + functions may store pointers to it + */ + tmp_length= strlen(alias); + if (!(tmp_alias= strmake_root(&outparam->mem_root, alias, tmp_length))) goto err; + + outparam->alias.set(tmp_alias, tmp_length, table_alias_charset); outparam->quick_keys.init(); outparam->covering_keys.init(); outparam->intersect_keys.init(); @@ -4487,7 +4496,7 @@ void TABLE::init(THD *thd, TABLE_LIST *tl) s->table_name.str, tl->alias); /* Fix alias if table name changes. */ - if (strcmp(alias.c_ptr(), tl->alias)) + if (!alias.alloced_length() || strcmp(alias.c_ptr(), tl->alias)) alias.copy(tl->alias, strlen(tl->alias), alias.charset()); tablenr= thd->current_tablenr++; From 6a31e86bbd81e37167c4ae346d1932a62dffd294 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jan=20Lindstr=C3=B6m?= Date: Mon, 17 Sep 2018 08:11:38 +0300 Subject: [PATCH 109/148] Adjust Galera disabled tests based on test results. --- mysql-test/suite/galera/disabled.def | 3 --- 1 file changed, 3 deletions(-) diff --git a/mysql-test/suite/galera/disabled.def b/mysql-test/suite/galera/disabled.def index 52bfbb65432..ac0f5684239 100644 --- a/mysql-test/suite/galera/disabled.def +++ b/mysql-test/suite/galera/disabled.def @@ -25,18 +25,15 @@ galera_gcache_recover_full_gcache : MDEV-13549 Galera test failures galera_gcache_recover_manytrx : MDEV-13549 Galera test failures galera_ssl_upgrade : MDEV-13549 Galera test failures galera.MW-329 : wsrep_local_replays not stable -query_cache : MDEV-15805 Test failure on galera.query_cache MW-416 : MDEV-13549 Galera test failures galera_wan : MDEV-13549 Galera test failures MW-388 : MDEV-13549 Galera test failures galera_sst_mysqldump_with_key : MDEV-16890 Galera test failure galera_binlog_stmt_autoinc: MDEV-17106 Test failure on galera.galera_binlog_stmt_autoinc galera_gc_fc_limit : MDEV-17061 Test failure on galera.galera_gc_fc_limit -galera_applier_ftwrl_table_after : MDEV-13738 galera_applier_ftwrl_table_alter may fail with '2006: MySQL server has gone away' galra_unicode_identifiers: MDEV-13871 galera.galera_unicode_identifiers failed in buildbot with 'Unknown database' galera_suspend_slave: MDEV-13873 galera.galera_suspend_slave failed in buildbot with wrong error code galera_wan : MDEV-13879 galera.galera_wan fails in buildbot with Stray state UUID msg or with "Transport endpoint is not connected" or with a failure to start a node partition : MDEV-13881 galera.partition failed in buildbot with wrong result -galera_transaction_read_only : MDEV-14142 galera.galera_transaction_read_only fails in buildbot with wrong result galera_as_slave_replication_budle : MDEV-15785 Test case galera_as_slave_replication_bundle caused debug assertion From 4fa9eaf454c41953c80747800c53b36ed6c63881 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marko=20M=C3=A4kel=C3=A4?= Date: Mon, 17 Sep 2018 08:49:02 +0300 Subject: [PATCH 110/148] Remove unused ha_innobase::lock In MySQL 5.7, a follow-up to WL#6671 removed the unused fields ha_innobase::lock and INNOBASE_SHARE::lock, but MariaDB did not remove them, even though a counterpart of WL#6671 itself was implemented as MDEV-7660 in commit d665e79c5b8582f44dc280e5e6df4a8ff4945623. INNOBASE_SHARE was removed in MDEV-16557. Thus, all that needs to be removed is the unused member ha_innobase::lock and related code. Thanks to Monty (and Valgrind) for noticing that ha_innobase::lock was uninitialized. --- storage/innobase/handler/ha_innodb.cc | 67 --------------------------- storage/innobase/handler/ha_innodb.h | 2 - 2 files changed, 69 deletions(-) diff --git a/storage/innobase/handler/ha_innodb.cc b/storage/innobase/handler/ha_innodb.cc index 4bed93b3a9e..08cbe52e155 100644 --- a/storage/innobase/handler/ha_innodb.cc +++ b/storage/innobase/handler/ha_innodb.cc @@ -16523,73 +16523,6 @@ ha_innobase::store_lock( m_prebuilt->stored_select_lock_type = LOCK_NONE; } - if (lock_type != TL_IGNORE && lock.type == TL_UNLOCK) { - - /* Starting from 5.0.7, we weaken also the table locks - set at the start of a MySQL stored procedure call, just like - we weaken the locks set at the start of an SQL statement. - MySQL does set in_lock_tables TRUE there, but in reality - we do not need table locks to make the execution of a - single transaction stored procedure call deterministic - (if it does not use a consistent read). */ - - if (lock_type == TL_READ - && sql_command == SQLCOM_LOCK_TABLES) { - /* We come here if MySQL is processing LOCK TABLES - ... READ LOCAL. MyISAM under that table lock type - reads the table as it was at the time the lock was - granted (new inserts are allowed, but not seen by the - reader). To get a similar effect on an InnoDB table, - we must use LOCK TABLES ... READ. We convert the lock - type here, so that for InnoDB, READ LOCAL is - equivalent to READ. This will change the InnoDB - behavior in mysqldump, so that dumps of InnoDB tables - are consistent with dumps of MyISAM tables. */ - - lock_type = TL_READ_NO_INSERT; - } - - /* If we are not doing a LOCK TABLE, DISCARD/IMPORT - TABLESPACE or TRUNCATE TABLE then allow multiple - writers. Note that ALTER TABLE uses a TL_WRITE_ALLOW_READ - < TL_WRITE_CONCURRENT_INSERT. - - We especially allow multiple writers if MySQL is at the - start of a stored procedure call (SQLCOM_CALL) or a - stored function call (MySQL does have in_lock_tables - TRUE there). */ - - if ((lock_type >= TL_WRITE_CONCURRENT_INSERT - && lock_type <= TL_WRITE) - && !(in_lock_tables - && sql_command == SQLCOM_LOCK_TABLES) - && !thd_tablespace_op(thd) - && sql_command != SQLCOM_TRUNCATE - && sql_command != SQLCOM_OPTIMIZE - && sql_command != SQLCOM_CREATE_TABLE) { - - lock_type = TL_WRITE_ALLOW_WRITE; - } - - /* In queries of type INSERT INTO t1 SELECT ... FROM t2 ... - MySQL would use the lock TL_READ_NO_INSERT on t2, and that - would conflict with TL_WRITE_ALLOW_WRITE, blocking all inserts - to t2. Convert the lock to a normal read lock to allow - concurrent inserts to t2. - - We especially allow concurrent inserts if MySQL is at the - start of a stored procedure call (SQLCOM_CALL) - (MySQL does have thd_in_lock_tables() TRUE there). */ - - if (lock_type == TL_READ_NO_INSERT - && sql_command != SQLCOM_LOCK_TABLES) { - - lock_type = TL_READ; - } - - lock.type = lock_type; - } - if (!trx_is_started(trx) && (m_prebuilt->select_lock_type != LOCK_NONE || m_prebuilt->stored_select_lock_type != LOCK_NONE)) { diff --git a/storage/innobase/handler/ha_innodb.h b/storage/innobase/handler/ha_innodb.h index ab1d3bbeac3..5fd700412ef 100644 --- a/storage/innobase/handler/ha_innodb.h +++ b/storage/innobase/handler/ha_innodb.h @@ -461,8 +461,6 @@ protected: this is set in external_lock function */ THD* m_user_thd; - THR_LOCK_DATA lock; - /** buffer used in updates */ uchar* m_upd_buf; From dbf4e68704eb524059c3446543f8f6cdbdd7339d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jan=20Lindstr=C3=B6m?= Date: Mon, 17 Sep 2018 09:05:52 +0300 Subject: [PATCH 111/148] MDEV-13879: galera.galera_wan fails in buildbot with Stray state UUID msg or with "Transport endpoint is not connected" or with a failure to start a node Add correct suppressions and wait conditions for expected database contents. --- mysql-test/suite/galera/disabled.def | 2 -- mysql-test/suite/galera/r/galera_wan.result | 5 +++-- mysql-test/suite/galera/t/galera_wan.test | 12 ++++++++++-- 3 files changed, 13 insertions(+), 6 deletions(-) diff --git a/mysql-test/suite/galera/disabled.def b/mysql-test/suite/galera/disabled.def index ac0f5684239..c9af7629dba 100644 --- a/mysql-test/suite/galera/disabled.def +++ b/mysql-test/suite/galera/disabled.def @@ -26,14 +26,12 @@ galera_gcache_recover_manytrx : MDEV-13549 Galera test failures galera_ssl_upgrade : MDEV-13549 Galera test failures galera.MW-329 : wsrep_local_replays not stable MW-416 : MDEV-13549 Galera test failures -galera_wan : MDEV-13549 Galera test failures MW-388 : MDEV-13549 Galera test failures galera_sst_mysqldump_with_key : MDEV-16890 Galera test failure galera_binlog_stmt_autoinc: MDEV-17106 Test failure on galera.galera_binlog_stmt_autoinc galera_gc_fc_limit : MDEV-17061 Test failure on galera.galera_gc_fc_limit galra_unicode_identifiers: MDEV-13871 galera.galera_unicode_identifiers failed in buildbot with 'Unknown database' galera_suspend_slave: MDEV-13873 galera.galera_suspend_slave failed in buildbot with wrong error code -galera_wan : MDEV-13879 galera.galera_wan fails in buildbot with Stray state UUID msg or with "Transport endpoint is not connected" or with a failure to start a node partition : MDEV-13881 galera.partition failed in buildbot with wrong result galera_as_slave_replication_budle : MDEV-15785 Test case galera_as_slave_replication_bundle caused debug assertion diff --git a/mysql-test/suite/galera/r/galera_wan.result b/mysql-test/suite/galera/r/galera_wan.result index 6be32b291e5..3330f0dd380 100644 --- a/mysql-test/suite/galera/r/galera_wan.result +++ b/mysql-test/suite/galera/r/galera_wan.result @@ -1,9 +1,11 @@ +CALL mtr.add_suppression("WSREP: Stray state UUID msg:.*"); +CALL mtr.add_suppression("WSREP: Sending JOIN failed:.*"); +CALL mtr.add_suppression("There are no nodes in the same segment that will ever be able to become donors, yet there is a suitable donor outside"); SELECT VARIABLE_VALUE = 4 FROM INFORMATION_SCHEMA.GLOBAL_STATUS WHERE VARIABLE_NAME = 'wsrep_cluster_size'; VARIABLE_VALUE = 4 1 CREATE TABLE t1 (f1 INTEGER); INSERT INTO t1 VALUES (1); -CALL mtr.add_suppression("There are no nodes in the same segment that will ever be able to become donors, yet there is a suitable donor outside"); SELECT VARIABLE_VALUE LIKE '%gmcast.segment = 3%' FROM INFORMATION_SCHEMA.GLOBAL_VARIABLES WHERE VARIABLE_NAME = 'wsrep_provider_options'; VARIABLE_VALUE LIKE '%gmcast.segment = 3%' 1 @@ -11,4 +13,3 @@ SELECT COUNT(*) = 1 FROM t1; COUNT(*) = 1 1 DROP TABLE t1; -CALL mtr.add_suppression("There are no nodes in the same segment that will ever be able to become donors, yet there is a suitable donor outside"); diff --git a/mysql-test/suite/galera/t/galera_wan.test b/mysql-test/suite/galera/t/galera_wan.test index a8fd351b168..6cd85d4d276 100644 --- a/mysql-test/suite/galera/t/galera_wan.test +++ b/mysql-test/suite/galera/t/galera_wan.test @@ -9,6 +9,10 @@ --source include/galera_cluster.inc --source include/have_innodb.inc +CALL mtr.add_suppression("WSREP: Stray state UUID msg:.*"); +CALL mtr.add_suppression("WSREP: Sending JOIN failed:.*"); +CALL mtr.add_suppression("There are no nodes in the same segment that will ever be able to become donors, yet there is a suitable donor outside"); + SELECT VARIABLE_VALUE = 4 FROM INFORMATION_SCHEMA.GLOBAL_STATUS WHERE VARIABLE_NAME = 'wsrep_cluster_size'; --connection node_1 @@ -16,15 +20,19 @@ CREATE TABLE t1 (f1 INTEGER); --connect node_3, 127.0.0.1, root, , test, $NODE_MYPORT_3 --connection node_3 +--let $wait_condition = SELECT COUNT(*) = 1 FROM INFORMATION_SCHEMA.INNODB_SYS_TABLES WHERE NAME LIKE 'test/t1'; +--source include/wait_condition.inc INSERT INTO t1 VALUES (1); -CALL mtr.add_suppression("There are no nodes in the same segment that will ever be able to become donors, yet there is a suitable donor outside"); --connect node_4, 127.0.0.1, root, , test, $NODE_MYPORT_4 --connection node_4 +--let $wait_condition = SELECT COUNT(*) = 1 FROM INFORMATION_SCHEMA.INNODB_SYS_TABLES WHERE NAME LIKE 'test/t1'; +--source include/wait_condition.inc +--let $wait_condition = SELECT COUNT(*) = 1 FROM t1; +--source include/wait_condition.inc SELECT VARIABLE_VALUE LIKE '%gmcast.segment = 3%' FROM INFORMATION_SCHEMA.GLOBAL_VARIABLES WHERE VARIABLE_NAME = 'wsrep_provider_options'; SELECT COUNT(*) = 1 FROM t1; DROP TABLE t1; -CALL mtr.add_suppression("There are no nodes in the same segment that will ever be able to become donors, yet there is a suitable donor outside"); From 145c947b88d301ff2b4261b46e79d57918790902 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jan=20Lindstr=C3=B6m?= Date: Mon, 17 Sep 2018 12:03:41 +0300 Subject: [PATCH 112/148] MDEV-17206: Test failure on galera.galera_ist_* in debug builds Failure is due missing .rdiff files for debug build as tests have @have_debug combination. --- .../galera_ist_innodb_flush_logs,debug.rdiff | 103 +++++++++++++++++ .../galera/r/galera_ist_mysqldump,debug.rdiff | 106 ++++++++++++++++++ .../galera/r/galera_ist_rsync,debug.rdiff | 103 +++++++++++++++++ .../r/galera_ist_xtrabackup-v2,debug.rdiff | 103 +++++++++++++++++ 4 files changed, 415 insertions(+) create mode 100644 mysql-test/suite/galera/r/galera_ist_innodb_flush_logs,debug.rdiff create mode 100644 mysql-test/suite/galera/r/galera_ist_mysqldump,debug.rdiff create mode 100644 mysql-test/suite/galera/r/galera_ist_rsync,debug.rdiff create mode 100644 mysql-test/suite/galera/r/galera_ist_xtrabackup-v2,debug.rdiff diff --git a/mysql-test/suite/galera/r/galera_ist_innodb_flush_logs,debug.rdiff b/mysql-test/suite/galera/r/galera_ist_innodb_flush_logs,debug.rdiff new file mode 100644 index 00000000000..fa1b67e7ef3 --- /dev/null +++ b/mysql-test/suite/galera/r/galera_ist_innodb_flush_logs,debug.rdiff @@ -0,0 +1,103 @@ +--- r/galera_ist_innodb_flush_logs.result 2018-09-05 10:34:36.192439933 +0300 ++++ r/galera_ist_innodb_flush_logs.reject 2018-09-17 10:20:06.039150838 +0300 +@@ -86,3 +86,100 @@ + DROP TABLE t1; + COMMIT; + SET AUTOCOMMIT=ON; ++Performing State Transfer on a server that has been killed and restarted ++while a DDL was in progress on it ++CREATE TABLE t1 (f1 CHAR(255)) ENGINE=InnoDB; ++SET AUTOCOMMIT=OFF; ++START TRANSACTION; ++INSERT INTO t1 VALUES ('node1_committed_before'); ++INSERT INTO t1 VALUES ('node1_committed_before'); ++INSERT INTO t1 VALUES ('node1_committed_before'); ++INSERT INTO t1 VALUES ('node1_committed_before'); ++INSERT INTO t1 VALUES ('node1_committed_before'); ++START TRANSACTION; ++INSERT INTO t1 VALUES ('node2_committed_before'); ++INSERT INTO t1 VALUES ('node2_committed_before'); ++INSERT INTO t1 VALUES ('node2_committed_before'); ++INSERT INTO t1 VALUES ('node2_committed_before'); ++INSERT INTO t1 VALUES ('node2_committed_before'); ++COMMIT; ++SET GLOBAL debug_dbug = 'd,sync.alter_opened_table'; ++ALTER TABLE t1 ADD COLUMN f2 INTEGER; ++SET wsrep_sync_wait = 0; ++Killing server ... ++SET AUTOCOMMIT=OFF; ++START TRANSACTION; ++INSERT INTO t1 (f1) VALUES ('node1_committed_during'); ++INSERT INTO t1 (f1) VALUES ('node1_committed_during'); ++INSERT INTO t1 (f1) VALUES ('node1_committed_during'); ++INSERT INTO t1 (f1) VALUES ('node1_committed_during'); ++INSERT INTO t1 (f1) VALUES ('node1_committed_during'); ++COMMIT; ++START TRANSACTION; ++INSERT INTO t1 (f1) VALUES ('node1_to_be_committed_after'); ++INSERT INTO t1 (f1) VALUES ('node1_to_be_committed_after'); ++INSERT INTO t1 (f1) VALUES ('node1_to_be_committed_after'); ++INSERT INTO t1 (f1) VALUES ('node1_to_be_committed_after'); ++INSERT INTO t1 (f1) VALUES ('node1_to_be_committed_after'); ++SET AUTOCOMMIT=OFF; ++START TRANSACTION; ++INSERT INTO t1 (f1) VALUES ('node1_to_be_rollbacked_after'); ++INSERT INTO t1 (f1) VALUES ('node1_to_be_rollbacked_after'); ++INSERT INTO t1 (f1) VALUES ('node1_to_be_rollbacked_after'); ++INSERT INTO t1 (f1) VALUES ('node1_to_be_rollbacked_after'); ++INSERT INTO t1 (f1) VALUES ('node1_to_be_rollbacked_after'); ++Performing --wsrep-recover ... ++Starting server ... ++Using --wsrep-start-position when starting mysqld ... ++SET AUTOCOMMIT=OFF; ++START TRANSACTION; ++INSERT INTO t1 (f1) VALUES ('node2_committed_after'); ++INSERT INTO t1 (f1) VALUES ('node2_committed_after'); ++INSERT INTO t1 (f1) VALUES ('node2_committed_after'); ++INSERT INTO t1 (f1) VALUES ('node2_committed_after'); ++INSERT INTO t1 (f1) VALUES ('node2_committed_after'); ++COMMIT; ++INSERT INTO t1 (f1) VALUES ('node1_to_be_committed_after'); ++INSERT INTO t1 (f1) VALUES ('node1_to_be_committed_after'); ++INSERT INTO t1 (f1) VALUES ('node1_to_be_committed_after'); ++INSERT INTO t1 (f1) VALUES ('node1_to_be_committed_after'); ++INSERT INTO t1 (f1) VALUES ('node1_to_be_committed_after'); ++COMMIT; ++SET AUTOCOMMIT=OFF; ++START TRANSACTION; ++INSERT INTO t1 (f1) VALUES ('node1_committed_after'); ++INSERT INTO t1 (f1) VALUES ('node1_committed_after'); ++INSERT INTO t1 (f1) VALUES ('node1_committed_after'); ++INSERT INTO t1 (f1) VALUES ('node1_committed_after'); ++INSERT INTO t1 (f1) VALUES ('node1_committed_after'); ++COMMIT; ++INSERT INTO t1 (f1) VALUES ('node1_to_be_rollbacked_after'); ++INSERT INTO t1 (f1) VALUES ('node1_to_be_rollbacked_after'); ++INSERT INTO t1 (f1) VALUES ('node1_to_be_rollbacked_after'); ++INSERT INTO t1 (f1) VALUES ('node1_to_be_rollbacked_after'); ++INSERT INTO t1 (f1) VALUES ('node1_to_be_rollbacked_after'); ++ROLLBACK; ++SELECT COUNT(*) = 2 FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME = 't1'; ++COUNT(*) = 2 ++1 ++SELECT COUNT(*) = 35 FROM t1; ++COUNT(*) = 35 ++1 ++SELECT COUNT(*) = 0 FROM (SELECT COUNT(*) AS c, f1 FROM t1 GROUP BY f1 HAVING c NOT IN (5, 10)) AS a1; ++COUNT(*) = 0 ++1 ++COMMIT; ++SET AUTOCOMMIT=ON; ++SELECT COUNT(*) = 2 FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME = 't1'; ++COUNT(*) = 2 ++1 ++SELECT COUNT(*) = 35 FROM t1; ++COUNT(*) = 35 ++1 ++SELECT COUNT(*) = 0 FROM (SELECT COUNT(*) AS c, f1 FROM t1 GROUP BY f1 HAVING c NOT IN (5, 10)) AS a1; ++COUNT(*) = 0 ++1 ++DROP TABLE t1; ++COMMIT; ++SET AUTOCOMMIT=ON; ++SET GLOBAL debug_dbug = $debug_orig; diff --git a/mysql-test/suite/galera/r/galera_ist_mysqldump,debug.rdiff b/mysql-test/suite/galera/r/galera_ist_mysqldump,debug.rdiff new file mode 100644 index 00000000000..74e6abd713f --- /dev/null +++ b/mysql-test/suite/galera/r/galera_ist_mysqldump,debug.rdiff @@ -0,0 +1,106 @@ +--- r/galera_ist_mysqldump.result 2018-09-11 12:38:42.027479411 +0300 ++++ r/galera_ist_mysqldump.reject 2018-09-17 10:28:44.483441364 +0300 +@@ -180,6 +180,103 @@ + DROP TABLE t1; + COMMIT; + SET AUTOCOMMIT=ON; ++Performing State Transfer on a server that has been killed and restarted ++while a DDL was in progress on it ++CREATE TABLE t1 (f1 CHAR(255)) ENGINE=InnoDB; ++SET AUTOCOMMIT=OFF; ++START TRANSACTION; ++INSERT INTO t1 VALUES ('node1_committed_before'); ++INSERT INTO t1 VALUES ('node1_committed_before'); ++INSERT INTO t1 VALUES ('node1_committed_before'); ++INSERT INTO t1 VALUES ('node1_committed_before'); ++INSERT INTO t1 VALUES ('node1_committed_before'); ++START TRANSACTION; ++INSERT INTO t1 VALUES ('node2_committed_before'); ++INSERT INTO t1 VALUES ('node2_committed_before'); ++INSERT INTO t1 VALUES ('node2_committed_before'); ++INSERT INTO t1 VALUES ('node2_committed_before'); ++INSERT INTO t1 VALUES ('node2_committed_before'); ++COMMIT; ++SET GLOBAL debug_dbug = 'd,sync.alter_opened_table'; ++ALTER TABLE t1 ADD COLUMN f2 INTEGER; ++SET wsrep_sync_wait = 0; ++Killing server ... ++SET AUTOCOMMIT=OFF; ++START TRANSACTION; ++INSERT INTO t1 (f1) VALUES ('node1_committed_during'); ++INSERT INTO t1 (f1) VALUES ('node1_committed_during'); ++INSERT INTO t1 (f1) VALUES ('node1_committed_during'); ++INSERT INTO t1 (f1) VALUES ('node1_committed_during'); ++INSERT INTO t1 (f1) VALUES ('node1_committed_during'); ++COMMIT; ++START TRANSACTION; ++INSERT INTO t1 (f1) VALUES ('node1_to_be_committed_after'); ++INSERT INTO t1 (f1) VALUES ('node1_to_be_committed_after'); ++INSERT INTO t1 (f1) VALUES ('node1_to_be_committed_after'); ++INSERT INTO t1 (f1) VALUES ('node1_to_be_committed_after'); ++INSERT INTO t1 (f1) VALUES ('node1_to_be_committed_after'); ++SET AUTOCOMMIT=OFF; ++START TRANSACTION; ++INSERT INTO t1 (f1) VALUES ('node1_to_be_rollbacked_after'); ++INSERT INTO t1 (f1) VALUES ('node1_to_be_rollbacked_after'); ++INSERT INTO t1 (f1) VALUES ('node1_to_be_rollbacked_after'); ++INSERT INTO t1 (f1) VALUES ('node1_to_be_rollbacked_after'); ++INSERT INTO t1 (f1) VALUES ('node1_to_be_rollbacked_after'); ++Performing --wsrep-recover ... ++Starting server ... ++Using --wsrep-start-position when starting mysqld ... ++SET AUTOCOMMIT=OFF; ++START TRANSACTION; ++INSERT INTO t1 (f1) VALUES ('node2_committed_after'); ++INSERT INTO t1 (f1) VALUES ('node2_committed_after'); ++INSERT INTO t1 (f1) VALUES ('node2_committed_after'); ++INSERT INTO t1 (f1) VALUES ('node2_committed_after'); ++INSERT INTO t1 (f1) VALUES ('node2_committed_after'); ++COMMIT; ++INSERT INTO t1 (f1) VALUES ('node1_to_be_committed_after'); ++INSERT INTO t1 (f1) VALUES ('node1_to_be_committed_after'); ++INSERT INTO t1 (f1) VALUES ('node1_to_be_committed_after'); ++INSERT INTO t1 (f1) VALUES ('node1_to_be_committed_after'); ++INSERT INTO t1 (f1) VALUES ('node1_to_be_committed_after'); ++COMMIT; ++SET AUTOCOMMIT=OFF; ++START TRANSACTION; ++INSERT INTO t1 (f1) VALUES ('node1_committed_after'); ++INSERT INTO t1 (f1) VALUES ('node1_committed_after'); ++INSERT INTO t1 (f1) VALUES ('node1_committed_after'); ++INSERT INTO t1 (f1) VALUES ('node1_committed_after'); ++INSERT INTO t1 (f1) VALUES ('node1_committed_after'); ++COMMIT; ++INSERT INTO t1 (f1) VALUES ('node1_to_be_rollbacked_after'); ++INSERT INTO t1 (f1) VALUES ('node1_to_be_rollbacked_after'); ++INSERT INTO t1 (f1) VALUES ('node1_to_be_rollbacked_after'); ++INSERT INTO t1 (f1) VALUES ('node1_to_be_rollbacked_after'); ++INSERT INTO t1 (f1) VALUES ('node1_to_be_rollbacked_after'); ++ROLLBACK; ++SELECT COUNT(*) = 2 FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME = 't1'; ++COUNT(*) = 2 ++1 ++SELECT COUNT(*) = 35 FROM t1; ++COUNT(*) = 35 ++1 ++SELECT COUNT(*) = 0 FROM (SELECT COUNT(*) AS c, f1 FROM t1 GROUP BY f1 HAVING c NOT IN (5, 10)) AS a1; ++COUNT(*) = 0 ++1 ++COMMIT; ++SET AUTOCOMMIT=ON; ++SELECT COUNT(*) = 2 FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME = 't1'; ++COUNT(*) = 2 ++1 ++SELECT COUNT(*) = 35 FROM t1; ++COUNT(*) = 35 ++1 ++SELECT COUNT(*) = 0 FROM (SELECT COUNT(*) AS c, f1 FROM t1 GROUP BY f1 HAVING c NOT IN (5, 10)) AS a1; ++COUNT(*) = 0 ++1 ++DROP TABLE t1; ++COMMIT; ++SET AUTOCOMMIT=ON; ++SET GLOBAL debug_dbug = $debug_orig; + CALL mtr.add_suppression("Slave SQL: Error 'The MySQL server is running with the --skip-grant-tables option so it cannot execute this statement' on query"); + DROP USER sst; + CALL mtr.add_suppression("Slave SQL: Error 'The MySQL server is running with the --skip-grant-tables option so it cannot execute this statement' on query"); diff --git a/mysql-test/suite/galera/r/galera_ist_rsync,debug.rdiff b/mysql-test/suite/galera/r/galera_ist_rsync,debug.rdiff new file mode 100644 index 00000000000..9070acc76bf --- /dev/null +++ b/mysql-test/suite/galera/r/galera_ist_rsync,debug.rdiff @@ -0,0 +1,103 @@ +--- r/galera_ist_rsync.result 2018-09-11 12:38:42.027479411 +0300 ++++ r/galera_ist_rsync.reject 2018-09-17 10:50:16.527307668 +0300 +@@ -259,3 +259,100 @@ + DROP TABLE t1; + COMMIT; + SET AUTOCOMMIT=ON; ++Performing State Transfer on a server that has been killed and restarted ++while a DDL was in progress on it ++CREATE TABLE t1 (f1 CHAR(255)) ENGINE=InnoDB; ++SET AUTOCOMMIT=OFF; ++START TRANSACTION; ++INSERT INTO t1 VALUES ('node1_committed_before'); ++INSERT INTO t1 VALUES ('node1_committed_before'); ++INSERT INTO t1 VALUES ('node1_committed_before'); ++INSERT INTO t1 VALUES ('node1_committed_before'); ++INSERT INTO t1 VALUES ('node1_committed_before'); ++START TRANSACTION; ++INSERT INTO t1 VALUES ('node2_committed_before'); ++INSERT INTO t1 VALUES ('node2_committed_before'); ++INSERT INTO t1 VALUES ('node2_committed_before'); ++INSERT INTO t1 VALUES ('node2_committed_before'); ++INSERT INTO t1 VALUES ('node2_committed_before'); ++COMMIT; ++SET GLOBAL debug_dbug = 'd,sync.alter_opened_table'; ++ALTER TABLE t1 ADD COLUMN f2 INTEGER; ++SET wsrep_sync_wait = 0; ++Killing server ... ++SET AUTOCOMMIT=OFF; ++START TRANSACTION; ++INSERT INTO t1 (f1) VALUES ('node1_committed_during'); ++INSERT INTO t1 (f1) VALUES ('node1_committed_during'); ++INSERT INTO t1 (f1) VALUES ('node1_committed_during'); ++INSERT INTO t1 (f1) VALUES ('node1_committed_during'); ++INSERT INTO t1 (f1) VALUES ('node1_committed_during'); ++COMMIT; ++START TRANSACTION; ++INSERT INTO t1 (f1) VALUES ('node1_to_be_committed_after'); ++INSERT INTO t1 (f1) VALUES ('node1_to_be_committed_after'); ++INSERT INTO t1 (f1) VALUES ('node1_to_be_committed_after'); ++INSERT INTO t1 (f1) VALUES ('node1_to_be_committed_after'); ++INSERT INTO t1 (f1) VALUES ('node1_to_be_committed_after'); ++SET AUTOCOMMIT=OFF; ++START TRANSACTION; ++INSERT INTO t1 (f1) VALUES ('node1_to_be_rollbacked_after'); ++INSERT INTO t1 (f1) VALUES ('node1_to_be_rollbacked_after'); ++INSERT INTO t1 (f1) VALUES ('node1_to_be_rollbacked_after'); ++INSERT INTO t1 (f1) VALUES ('node1_to_be_rollbacked_after'); ++INSERT INTO t1 (f1) VALUES ('node1_to_be_rollbacked_after'); ++Performing --wsrep-recover ... ++Starting server ... ++Using --wsrep-start-position when starting mysqld ... ++SET AUTOCOMMIT=OFF; ++START TRANSACTION; ++INSERT INTO t1 (f1) VALUES ('node2_committed_after'); ++INSERT INTO t1 (f1) VALUES ('node2_committed_after'); ++INSERT INTO t1 (f1) VALUES ('node2_committed_after'); ++INSERT INTO t1 (f1) VALUES ('node2_committed_after'); ++INSERT INTO t1 (f1) VALUES ('node2_committed_after'); ++COMMIT; ++INSERT INTO t1 (f1) VALUES ('node1_to_be_committed_after'); ++INSERT INTO t1 (f1) VALUES ('node1_to_be_committed_after'); ++INSERT INTO t1 (f1) VALUES ('node1_to_be_committed_after'); ++INSERT INTO t1 (f1) VALUES ('node1_to_be_committed_after'); ++INSERT INTO t1 (f1) VALUES ('node1_to_be_committed_after'); ++COMMIT; ++SET AUTOCOMMIT=OFF; ++START TRANSACTION; ++INSERT INTO t1 (f1) VALUES ('node1_committed_after'); ++INSERT INTO t1 (f1) VALUES ('node1_committed_after'); ++INSERT INTO t1 (f1) VALUES ('node1_committed_after'); ++INSERT INTO t1 (f1) VALUES ('node1_committed_after'); ++INSERT INTO t1 (f1) VALUES ('node1_committed_after'); ++COMMIT; ++INSERT INTO t1 (f1) VALUES ('node1_to_be_rollbacked_after'); ++INSERT INTO t1 (f1) VALUES ('node1_to_be_rollbacked_after'); ++INSERT INTO t1 (f1) VALUES ('node1_to_be_rollbacked_after'); ++INSERT INTO t1 (f1) VALUES ('node1_to_be_rollbacked_after'); ++INSERT INTO t1 (f1) VALUES ('node1_to_be_rollbacked_after'); ++ROLLBACK; ++SELECT COUNT(*) = 2 FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME = 't1'; ++COUNT(*) = 2 ++1 ++SELECT COUNT(*) = 35 FROM t1; ++COUNT(*) = 35 ++1 ++SELECT COUNT(*) = 0 FROM (SELECT COUNT(*) AS c, f1 FROM t1 GROUP BY f1 HAVING c NOT IN (5, 10)) AS a1; ++COUNT(*) = 0 ++1 ++COMMIT; ++SET AUTOCOMMIT=ON; ++SELECT COUNT(*) = 2 FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME = 't1'; ++COUNT(*) = 2 ++1 ++SELECT COUNT(*) = 35 FROM t1; ++COUNT(*) = 35 ++1 ++SELECT COUNT(*) = 0 FROM (SELECT COUNT(*) AS c, f1 FROM t1 GROUP BY f1 HAVING c NOT IN (5, 10)) AS a1; ++COUNT(*) = 0 ++1 ++DROP TABLE t1; ++COMMIT; ++SET AUTOCOMMIT=ON; ++SET GLOBAL debug_dbug = $debug_orig; diff --git a/mysql-test/suite/galera/r/galera_ist_xtrabackup-v2,debug.rdiff b/mysql-test/suite/galera/r/galera_ist_xtrabackup-v2,debug.rdiff new file mode 100644 index 00000000000..95310b3ffeb --- /dev/null +++ b/mysql-test/suite/galera/r/galera_ist_xtrabackup-v2,debug.rdiff @@ -0,0 +1,103 @@ +--- r/galera_ist_xtrabackup-v2.result 2018-09-05 10:34:36.192439933 +0300 ++++ r/galera_ist_xtrabackup-v2.reject 2018-09-17 11:13:33.395264800 +0300 +@@ -259,3 +259,100 @@ + DROP TABLE t1; + COMMIT; + SET AUTOCOMMIT=ON; ++Performing State Transfer on a server that has been killed and restarted ++while a DDL was in progress on it ++CREATE TABLE t1 (f1 CHAR(255)) ENGINE=InnoDB; ++SET AUTOCOMMIT=OFF; ++START TRANSACTION; ++INSERT INTO t1 VALUES ('node1_committed_before'); ++INSERT INTO t1 VALUES ('node1_committed_before'); ++INSERT INTO t1 VALUES ('node1_committed_before'); ++INSERT INTO t1 VALUES ('node1_committed_before'); ++INSERT INTO t1 VALUES ('node1_committed_before'); ++START TRANSACTION; ++INSERT INTO t1 VALUES ('node2_committed_before'); ++INSERT INTO t1 VALUES ('node2_committed_before'); ++INSERT INTO t1 VALUES ('node2_committed_before'); ++INSERT INTO t1 VALUES ('node2_committed_before'); ++INSERT INTO t1 VALUES ('node2_committed_before'); ++COMMIT; ++SET GLOBAL debug_dbug = 'd,sync.alter_opened_table'; ++ALTER TABLE t1 ADD COLUMN f2 INTEGER; ++SET wsrep_sync_wait = 0; ++Killing server ... ++SET AUTOCOMMIT=OFF; ++START TRANSACTION; ++INSERT INTO t1 (f1) VALUES ('node1_committed_during'); ++INSERT INTO t1 (f1) VALUES ('node1_committed_during'); ++INSERT INTO t1 (f1) VALUES ('node1_committed_during'); ++INSERT INTO t1 (f1) VALUES ('node1_committed_during'); ++INSERT INTO t1 (f1) VALUES ('node1_committed_during'); ++COMMIT; ++START TRANSACTION; ++INSERT INTO t1 (f1) VALUES ('node1_to_be_committed_after'); ++INSERT INTO t1 (f1) VALUES ('node1_to_be_committed_after'); ++INSERT INTO t1 (f1) VALUES ('node1_to_be_committed_after'); ++INSERT INTO t1 (f1) VALUES ('node1_to_be_committed_after'); ++INSERT INTO t1 (f1) VALUES ('node1_to_be_committed_after'); ++SET AUTOCOMMIT=OFF; ++START TRANSACTION; ++INSERT INTO t1 (f1) VALUES ('node1_to_be_rollbacked_after'); ++INSERT INTO t1 (f1) VALUES ('node1_to_be_rollbacked_after'); ++INSERT INTO t1 (f1) VALUES ('node1_to_be_rollbacked_after'); ++INSERT INTO t1 (f1) VALUES ('node1_to_be_rollbacked_after'); ++INSERT INTO t1 (f1) VALUES ('node1_to_be_rollbacked_after'); ++Performing --wsrep-recover ... ++Starting server ... ++Using --wsrep-start-position when starting mysqld ... ++SET AUTOCOMMIT=OFF; ++START TRANSACTION; ++INSERT INTO t1 (f1) VALUES ('node2_committed_after'); ++INSERT INTO t1 (f1) VALUES ('node2_committed_after'); ++INSERT INTO t1 (f1) VALUES ('node2_committed_after'); ++INSERT INTO t1 (f1) VALUES ('node2_committed_after'); ++INSERT INTO t1 (f1) VALUES ('node2_committed_after'); ++COMMIT; ++INSERT INTO t1 (f1) VALUES ('node1_to_be_committed_after'); ++INSERT INTO t1 (f1) VALUES ('node1_to_be_committed_after'); ++INSERT INTO t1 (f1) VALUES ('node1_to_be_committed_after'); ++INSERT INTO t1 (f1) VALUES ('node1_to_be_committed_after'); ++INSERT INTO t1 (f1) VALUES ('node1_to_be_committed_after'); ++COMMIT; ++SET AUTOCOMMIT=OFF; ++START TRANSACTION; ++INSERT INTO t1 (f1) VALUES ('node1_committed_after'); ++INSERT INTO t1 (f1) VALUES ('node1_committed_after'); ++INSERT INTO t1 (f1) VALUES ('node1_committed_after'); ++INSERT INTO t1 (f1) VALUES ('node1_committed_after'); ++INSERT INTO t1 (f1) VALUES ('node1_committed_after'); ++COMMIT; ++INSERT INTO t1 (f1) VALUES ('node1_to_be_rollbacked_after'); ++INSERT INTO t1 (f1) VALUES ('node1_to_be_rollbacked_after'); ++INSERT INTO t1 (f1) VALUES ('node1_to_be_rollbacked_after'); ++INSERT INTO t1 (f1) VALUES ('node1_to_be_rollbacked_after'); ++INSERT INTO t1 (f1) VALUES ('node1_to_be_rollbacked_after'); ++ROLLBACK; ++SELECT COUNT(*) = 2 FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME = 't1'; ++COUNT(*) = 2 ++1 ++SELECT COUNT(*) = 35 FROM t1; ++COUNT(*) = 35 ++1 ++SELECT COUNT(*) = 0 FROM (SELECT COUNT(*) AS c, f1 FROM t1 GROUP BY f1 HAVING c NOT IN (5, 10)) AS a1; ++COUNT(*) = 0 ++1 ++COMMIT; ++SET AUTOCOMMIT=ON; ++SELECT COUNT(*) = 2 FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME = 't1'; ++COUNT(*) = 2 ++1 ++SELECT COUNT(*) = 35 FROM t1; ++COUNT(*) = 35 ++1 ++SELECT COUNT(*) = 0 FROM (SELECT COUNT(*) AS c, f1 FROM t1 GROUP BY f1 HAVING c NOT IN (5, 10)) AS a1; ++COUNT(*) = 0 ++1 ++DROP TABLE t1; ++COMMIT; ++SET AUTOCOMMIT=ON; ++SET GLOBAL debug_dbug = $debug_orig; From cc616bea53be7740398aa8b4caf1c19d5f944635 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jan=20Lindstr=C3=B6m?= Date: Mon, 17 Sep 2018 18:18:19 +0300 Subject: [PATCH 113/148] Test galera.query_cache is still failing on bb. --- mysql-test/suite/galera/disabled.def | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mysql-test/suite/galera/disabled.def b/mysql-test/suite/galera/disabled.def index c9af7629dba..7359e1d9c05 100644 --- a/mysql-test/suite/galera/disabled.def +++ b/mysql-test/suite/galera/disabled.def @@ -34,4 +34,4 @@ galra_unicode_identifiers: MDEV-13871 galera.galera_unicode_identifiers failed i galera_suspend_slave: MDEV-13873 galera.galera_suspend_slave failed in buildbot with wrong error code partition : MDEV-13881 galera.partition failed in buildbot with wrong result galera_as_slave_replication_budle : MDEV-15785 Test case galera_as_slave_replication_bundle caused debug assertion - +query_cache : MDEV-15805 Test failure on galera.query_cache From 65474d92f59af209c0e96699f8bf55d6ca0238d6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marko=20M=C3=A4kel=C3=A4?= Date: Mon, 17 Sep 2018 09:53:49 +0300 Subject: [PATCH 114/148] Follow-up to "Fixed wrong printf in mariabackup" This amends commit 4dc20ff687d50b2a5d889653c11674fb1d310cf8. Starting with MariaDB 10.2, InnoDB defines typedef size_t ulint; The standard format for size_t uses the z modifier, for example, "%zu" as in the macro ULINTPF. "%lu" is wrong for size_t, because sizeof(unsigned long) can be something else than sizeof(size_t). On Windows, the former would always be 4 bytes, while size_t would be 4 or 8 bytes. --- extra/mariabackup/xtrabackup.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/extra/mariabackup/xtrabackup.cc b/extra/mariabackup/xtrabackup.cc index 4baa9b293fd..da8fb37ea84 100644 --- a/extra/mariabackup/xtrabackup.cc +++ b/extra/mariabackup/xtrabackup.cc @@ -672,7 +672,7 @@ static void backup_optimized_ddl_op(ulint space_id) */ static void backup_optimized_ddl_op_fail(ulint space_id) { ut_a(opt_no_lock); - msg("DDL tracking : optimized DDL on space %lu\n", space_id); + msg("DDL tracking : optimized DDL on space %zu\n", space_id); if (ddl_tracker.tables_in_backup.find(space_id) != ddl_tracker.tables_in_backup.end()) { msg("ERROR : Optimized DDL operation detected in the late phase of backup." "Backup is inconsistent. Remove --no-lock option to fix.\n"); From 6858d5346c0823019aea4b501e8e48490708745c Mon Sep 17 00:00:00 2001 From: Igor Babaev Date: Mon, 17 Sep 2018 23:15:56 -0700 Subject: [PATCH 115/148] MDEV-17201 dropped anchor rows with non-null recursion query The function st_select_lex_unit::exec_recursive() missed resetting of select_limit_cnt and offset_limit_cnt before execution of union parts. As a result recursive CTEs specified by UNIONs whose SELECTs contained LIMIT/OFFSET could return wrong sets of records. --- mysql-test/r/cte_recursive.result | 48 +++++++++++++++++++++++++++++ mysql-test/t/cte_recursive.test | 50 +++++++++++++++++++++++++++++++ sql/sql_union.cc | 1 + 3 files changed, 99 insertions(+) diff --git a/mysql-test/r/cte_recursive.result b/mysql-test/r/cte_recursive.result index 55733bede38..de23d54694e 100644 --- a/mysql-test/r/cte_recursive.result +++ b/mysql-test/r/cte_recursive.result @@ -3393,3 +3393,51 @@ select * from cte1, cte2 where cte1.c1 = 3; c1 c2 drop procedure p; drop table t1,t2; +# +# MDEV-17201: recursive part with LIMIT +# +CREATE TABLE purchases ( +id int unsigned NOT NULL AUTO_INCREMENT, +pdate date NOT NULL, +quantity int unsigned NOT NULL, +p_id int unsigned NOT NULL, +PRIMARY KEY (id) +); +INSERT INTO purchases(pdate, quantity, p_id) VALUES +('2014-11-01',5 ,1),('2014-11-03', 3 ,1), +('2014-11-01',2 ,2),('2014-11-03', 4 ,2); +CREATE TABLE expired ( +edate date NOT NULL, +quantity int unsigned NOT NULL, +p_id int unsigned NOT NULL, +PRIMARY KEY (edate,p_id) +); +INSERT INTO expired VALUES ('2014-11-12', 5 ,1),('2014-11-08', 1 ,2); +WITH RECURSIVE expired_map AS ( +SELECT edate AS expired_date, +CAST(NULL AS date) AS purchase_date, +0 AS quantity, +e.p_id, +(SELECT MAX(id)+1 FROM purchases p +WHERE pdate <= edate AND p.p_id =p_id) AS purchase_processed, +quantity AS unresolved +FROM expired e +UNION +( SELECT expired_date, +pdate, +IF(p.quantity < m.unresolved, p.quantity, m.unresolved), +p.p_id, +p.id, +IF(p.quantity < m.unresolved, m.unresolved - p.quantity, 0) +FROM purchases p JOIN expired_map m ON p.p_id = m.p_id +WHERE p.id < m.purchase_processed AND m.unresolved > 0 +ORDER BY p.id DESC +LIMIT 1 +) +) +SELECT * FROM expired_map; +expired_date purchase_date quantity p_id purchase_processed unresolved +2014-11-12 NULL 0 1 5 5 +2014-11-08 NULL 0 2 5 1 +2014-11-08 2014-11-03 1 2 4 0 +DROP TABLE purchases, expired; diff --git a/mysql-test/t/cte_recursive.test b/mysql-test/t/cte_recursive.test index e3a93498540..acaf95beda7 100644 --- a/mysql-test/t/cte_recursive.test +++ b/mysql-test/t/cte_recursive.test @@ -2390,3 +2390,53 @@ eval $q3; drop procedure p; drop table t1,t2; + +--echo # +--echo # MDEV-17201: recursive part with LIMIT +--echo # + +CREATE TABLE purchases ( + id int unsigned NOT NULL AUTO_INCREMENT, + pdate date NOT NULL, + quantity int unsigned NOT NULL, + p_id int unsigned NOT NULL, + PRIMARY KEY (id) +); +INSERT INTO purchases(pdate, quantity, p_id) VALUES + ('2014-11-01',5 ,1),('2014-11-03', 3 ,1), + ('2014-11-01',2 ,2),('2014-11-03', 4 ,2); + +CREATE TABLE expired ( + edate date NOT NULL, + quantity int unsigned NOT NULL, + p_id int unsigned NOT NULL, + PRIMARY KEY (edate,p_id) +); + +INSERT INTO expired VALUES ('2014-11-12', 5 ,1),('2014-11-08', 1 ,2); + +WITH RECURSIVE expired_map AS ( + SELECT edate AS expired_date, + CAST(NULL AS date) AS purchase_date, + 0 AS quantity, + e.p_id, + (SELECT MAX(id)+1 FROM purchases p + WHERE pdate <= edate AND p.p_id =p_id) AS purchase_processed, + quantity AS unresolved + FROM expired e + UNION + ( SELECT expired_date, + pdate, + IF(p.quantity < m.unresolved, p.quantity, m.unresolved), + p.p_id, + p.id, + IF(p.quantity < m.unresolved, m.unresolved - p.quantity, 0) + FROM purchases p JOIN expired_map m ON p.p_id = m.p_id + WHERE p.id < m.purchase_processed AND m.unresolved > 0 + ORDER BY p.id DESC + LIMIT 1 + ) +) +SELECT * FROM expired_map; + +DROP TABLE purchases, expired; diff --git a/sql/sql_union.cc b/sql/sql_union.cc index 419ccf477d0..44879f66edf 100644 --- a/sql/sql_union.cc +++ b/sql/sql_union.cc @@ -1274,6 +1274,7 @@ bool st_select_lex_unit::exec_recursive() for (st_select_lex *sl= start ; sl != end; sl= sl->next_select()) { thd->lex->current_select= sl; + set_limit(sl); sl->join->exec(); saved_error= sl->join->error; if (!saved_error) From 327b2717219aaa8f9033895a2351a6ccd4655116 Mon Sep 17 00:00:00 2001 From: Sergey Vojtovich Date: Fri, 7 Sep 2018 14:50:10 +0400 Subject: [PATCH 116/148] MDEV-14410 - Assertion `table->pos_in_locked_tables == __null || table->pos_in_locked_tables->table == table' failed in mark_used_tables_as_free_for_reuse Assertion failure can be triggered by some DDL executed under LOCK TABLES that holds lock for DDL target table multiple times (either explicitly or implcitly). When closing all table instances for given table (e.g. when preparing for table removal during CREATE OR REPLACE), only one instance was removed from m_locked_tables list. Later we attempt to re-insert one of the instances in mysql_create_table()/ add_back_last_deleted_lock(), which wasn't actually removed. This leads to m_locks_tables corruption, specifically loss of all following elements. Then UNLOCK TABLE won't reset some table instances properly (specifically pos_in_locked_tables), since they're not present in m_locked_tables. Eventually such table instance gets released to table cache and then re-used by subsequent statement, which triggers this assertion failure. --- mysql-test/r/create_or_replace.result | 15 +++++++++++++++ mysql-test/t/create_or_replace.test | 21 +++++++++++++++++++++ sql/sql_base.cc | 3 ++- sql/table_cache.cc | 1 + 4 files changed, 39 insertions(+), 1 deletion(-) diff --git a/mysql-test/r/create_or_replace.result b/mysql-test/r/create_or_replace.result index 0d171f9f87a..646183ebcb1 100644 --- a/mysql-test/r/create_or_replace.result +++ b/mysql-test/r/create_or_replace.result @@ -473,3 +473,18 @@ ERROR HY000: Table 't1' was not locked with LOCK TABLES UNLOCK TABLES; DROP FUNCTION f1; DROP TABLE t1; +# +# MDEV-14410 - Assertion `table->pos_in_locked_tables == __null || +# table->pos_in_locked_tables->table == table' failed in +# mark_used_tables_as_free_for_reuse +# +CREATE TABLE t1 (a INT); +CREATE TABLE t2 (b INT); +CREATE TABLE t3 (c INT); +CREATE TRIGGER tr1 BEFORE INSERT ON t3 FOR EACH ROW INSERT INTO t1 VALUES (); +CREATE TRIGGER tr2 BEFORE INSERT ON t2 FOR EACH ROW INSERT INTO t3 SELECT * FROM t1; +LOCK TABLE t1 WRITE, t2 WRITE; +CREATE OR REPLACE TABLE t1 (i INT); +UNLOCK TABLES; +INSERT INTO t2 VALUES (1); +DROP TABLE t1, t2, t3; diff --git a/mysql-test/t/create_or_replace.test b/mysql-test/t/create_or_replace.test index 5ebb3031be3..8c8ed1c9886 100644 --- a/mysql-test/t/create_or_replace.test +++ b/mysql-test/t/create_or_replace.test @@ -423,3 +423,24 @@ UNLOCK TABLES; DROP FUNCTION f1; DROP TABLE t1; + + +--echo # +--echo # MDEV-14410 - Assertion `table->pos_in_locked_tables == __null || +--echo # table->pos_in_locked_tables->table == table' failed in +--echo # mark_used_tables_as_free_for_reuse +--echo # +CREATE TABLE t1 (a INT); +CREATE TABLE t2 (b INT); +CREATE TABLE t3 (c INT); + +CREATE TRIGGER tr1 BEFORE INSERT ON t3 FOR EACH ROW INSERT INTO t1 VALUES (); +CREATE TRIGGER tr2 BEFORE INSERT ON t2 FOR EACH ROW INSERT INTO t3 SELECT * FROM t1; + +LOCK TABLE t1 WRITE, t2 WRITE; +CREATE OR REPLACE TABLE t1 (i INT); +UNLOCK TABLES; +INSERT INTO t2 VALUES (1); + +# Cleanup +DROP TABLE t1, t2, t3; diff --git a/sql/sql_base.cc b/sql/sql_base.cc index 32ce3c3a793..1a17c8e39d5 100644 --- a/sql/sql_base.cc +++ b/sql/sql_base.cc @@ -806,6 +806,7 @@ close_all_tables_for_name(THD *thd, TABLE_SHARE *share, uint key_length= share->table_cache_key.length; const char *db= key; const char *table_name= db + share->db.length + 1; + bool remove_from_locked_tables= extra != HA_EXTRA_NOT_USED; memcpy(key, share->table_cache_key.str, key_length); @@ -819,7 +820,7 @@ close_all_tables_for_name(THD *thd, TABLE_SHARE *share, { thd->locked_tables_list.unlink_from_list(thd, table->pos_in_locked_tables, - extra != HA_EXTRA_NOT_USED); + remove_from_locked_tables); /* Inform handler that there is a drop table or a rename going on */ if (extra != HA_EXTRA_NOT_USED && table->db_stat) { diff --git a/sql/table_cache.cc b/sql/table_cache.cc index bdb7914c32b..f13d7183a99 100644 --- a/sql/table_cache.cc +++ b/sql/table_cache.cc @@ -376,6 +376,7 @@ bool tc_release_table(TABLE *table) { DBUG_ASSERT(table->in_use); DBUG_ASSERT(table->file); + DBUG_ASSERT(!table->pos_in_locked_tables); if (table->needs_reopen() || tc_records() > tc_size) { From 4a026596f53f59619941c0e3ce5d36a056b6bd2e Mon Sep 17 00:00:00 2001 From: Vladislav Vaintroub Date: Tue, 18 Sep 2018 21:30:03 +0100 Subject: [PATCH 117/148] MDEV-15088 Lighter version of Windows Zip distributions Added forgotten code signing command. --- win/packaging/CMakeLists.txt | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/win/packaging/CMakeLists.txt b/win/packaging/CMakeLists.txt index b3ccaaa308f..4bd34c86a40 100644 --- a/win/packaging/CMakeLists.txt +++ b/win/packaging/CMakeLists.txt @@ -207,8 +207,13 @@ IF(CMAKE_GENERATOR MATCHES "Visual Studio") SET(CPACK_CONFIG_PARAM -C $(Configuration)) ENDIF() +IF(SIGNCODE) + SET(SIGN_COMMAND COMMAND ${CMAKE_COMMAND} -P ${PROJECT_BINARY_DIR}/sign.cmake) +ENDIF() + ADD_CUSTOM_TARGET( win_package + ${SIGN_COMMAND} COMMAND cpack ${CPACK_CONFIG_PARAM} --config ${CMAKE_CURRENT_SOURCE_DIR}/CPackZipConfig.cmake COMMAND cpack ${CPACK_CONFIG_PARAM} --config ${CMAKE_CURRENT_SOURCE_DIR}/CPackZipDebugInfoConfig.cmake WORKING_DIRECTORY ${CMAKE_BINARY_DIR} From cd363fecbf0fffe738c9d96cd8751687e5b44d62 Mon Sep 17 00:00:00 2001 From: Igor Babaev Date: Wed, 19 Sep 2018 01:24:46 -0700 Subject: [PATCH 118/148] Removed duplicate tests. --- mysql-test/r/stat_tables.result | 53 -------------------------- mysql-test/r/stat_tables_innodb.result | 53 -------------------------- mysql-test/t/stat_tables.test | 45 ---------------------- 3 files changed, 151 deletions(-) diff --git a/mysql-test/r/stat_tables.result b/mysql-test/r/stat_tables.result index 224c734118b..40290ca9879 100644 --- a/mysql-test/r/stat_tables.result +++ b/mysql-test/r/stat_tables.result @@ -591,59 +591,6 @@ id select_type table type possible_keys key key_len ref rows Extra set @@optimizer_use_condition_selectivity=@save_optimizer_use_condition_selectivity; set use_stat_tables=@save_use_stat_tables; # -# MDEV-16757: manual addition of min/max statistics for BLOB -# -SET use_stat_tables= PREFERABLY; -CREATE TABLE t1 (pk INT PRIMARY KEY, t TEXT); -INSERT INTO t1 VALUES (1,'foo'),(2,'bar'); -ANALYZE TABLE t1; -Table Op Msg_type Msg_text -test.t1 analyze status Engine-independent statistics collected -test.t1 analyze Warning Engine-independent statistics are not collected for column 't' -test.t1 analyze status OK -SELECT * FROM mysql.column_stats; -db_name table_name column_name min_value max_value nulls_ratio avg_length avg_frequency hist_size hist_type histogram -test t1 pk 1 2 0.0000 4.0000 1.0000 0 NULL NULL -DELETE FROM mysql.column_stats -WHERE db_name='test' AND table_name='t1' AND column_name='t'; -INSERT INTO mysql.column_stats VALUES -('test','t1','t','bar','foo', 0.0, 3.0, 1.0, 0, NULL, NULL); -SELECT * FROM mysql.column_stats; -db_name table_name column_name min_value max_value nulls_ratio avg_length avg_frequency hist_size hist_type histogram -test t1 pk 1 2 0.0000 4.0000 1.0000 0 NULL NULL -test t1 t bar foo 0.0000 3.0000 1.0000 0 NULL NULL -SELECT pk FROM t1; -pk -1 -2 -DROP TABLE t1; -set use_stat_tables=@save_use_stat_tables; -# -# MDEV-16760: CREATE OR REPLACE TABLE after ANALYZE TABLE -# -SET use_stat_tables= PREFERABLY; -CREATE TABLE t1 (pk int PRIMARY KEY, c varchar(32)); -INSERT INTO t1 VALUES (1,'foo'),(2,'bar'); -ANALYZE TABLE t1; -Table Op Msg_type Msg_text -test.t1 analyze status Engine-independent statistics collected -test.t1 analyze status OK -SELECT * FROM t1; -pk c -1 foo -2 bar -SELECT * FROM mysql.column_stats; -db_name table_name column_name min_value max_value nulls_ratio avg_length avg_frequency hist_size hist_type histogram -test t1 pk 1 2 0.0000 4.0000 1.0000 0 NULL NULL -test t1 c bar foo 0.0000 3.0000 1.0000 0 NULL NULL -CREATE OR REPLACE TABLE t1 (pk int PRIMARY KEY, a char(7)); -SELECT * FROM t1; -pk a -SELECT * FROM mysql.column_stats; -db_name table_name column_name min_value max_value nulls_ratio avg_length avg_frequency hist_size hist_type histogram -DROP TABLE t1; -set use_stat_tables=@save_use_stat_tables; -# # MDEV-16711:CREATE OR REPLACE TABLE introducing BLOB column # SET use_stat_tables= PREFERABLY; diff --git a/mysql-test/r/stat_tables_innodb.result b/mysql-test/r/stat_tables_innodb.result index ba1dee3106d..1b1cd7d9d8b 100644 --- a/mysql-test/r/stat_tables_innodb.result +++ b/mysql-test/r/stat_tables_innodb.result @@ -618,59 +618,6 @@ id select_type table type possible_keys key key_len ref rows Extra set @@optimizer_use_condition_selectivity=@save_optimizer_use_condition_selectivity; set use_stat_tables=@save_use_stat_tables; # -# MDEV-16757: manual addition of min/max statistics for BLOB -# -SET use_stat_tables= PREFERABLY; -CREATE TABLE t1 (pk INT PRIMARY KEY, t TEXT); -INSERT INTO t1 VALUES (1,'foo'),(2,'bar'); -ANALYZE TABLE t1; -Table Op Msg_type Msg_text -test.t1 analyze status Engine-independent statistics collected -test.t1 analyze Warning Engine-independent statistics are not collected for column 't' -test.t1 analyze status OK -SELECT * FROM mysql.column_stats; -db_name table_name column_name min_value max_value nulls_ratio avg_length avg_frequency hist_size hist_type histogram -test t1 pk 1 2 0.0000 4.0000 1.0000 0 NULL NULL -DELETE FROM mysql.column_stats -WHERE db_name='test' AND table_name='t1' AND column_name='t'; -INSERT INTO mysql.column_stats VALUES -('test','t1','t','bar','foo', 0.0, 3.0, 1.0, 0, NULL, NULL); -SELECT * FROM mysql.column_stats; -db_name table_name column_name min_value max_value nulls_ratio avg_length avg_frequency hist_size hist_type histogram -test t1 pk 1 2 0.0000 4.0000 1.0000 0 NULL NULL -test t1 t bar foo 0.0000 3.0000 1.0000 0 NULL NULL -SELECT pk FROM t1; -pk -1 -2 -DROP TABLE t1; -set use_stat_tables=@save_use_stat_tables; -# -# MDEV-16760: CREATE OR REPLACE TABLE after ANALYZE TABLE -# -SET use_stat_tables= PREFERABLY; -CREATE TABLE t1 (pk int PRIMARY KEY, c varchar(32)); -INSERT INTO t1 VALUES (1,'foo'),(2,'bar'); -ANALYZE TABLE t1; -Table Op Msg_type Msg_text -test.t1 analyze status Engine-independent statistics collected -test.t1 analyze status OK -SELECT * FROM t1; -pk c -1 foo -2 bar -SELECT * FROM mysql.column_stats; -db_name table_name column_name min_value max_value nulls_ratio avg_length avg_frequency hist_size hist_type histogram -test t1 pk 1 2 0.0000 4.0000 1.0000 0 NULL NULL -test t1 c bar foo 0.0000 3.0000 1.0000 0 NULL NULL -CREATE OR REPLACE TABLE t1 (pk int PRIMARY KEY, a char(7)); -SELECT * FROM t1; -pk a -SELECT * FROM mysql.column_stats; -db_name table_name column_name min_value max_value nulls_ratio avg_length avg_frequency hist_size hist_type histogram -DROP TABLE t1; -set use_stat_tables=@save_use_stat_tables; -# # MDEV-16711:CREATE OR REPLACE TABLE introducing BLOB column # SET use_stat_tables= PREFERABLY; diff --git a/mysql-test/t/stat_tables.test b/mysql-test/t/stat_tables.test index c318cc5e75f..85a10987300 100644 --- a/mysql-test/t/stat_tables.test +++ b/mysql-test/t/stat_tables.test @@ -369,51 +369,6 @@ SELECT * FROM INFORMATION_SCHEMA.PROFILING, mysql.user; set @@optimizer_use_condition_selectivity=@save_optimizer_use_condition_selectivity; set use_stat_tables=@save_use_stat_tables; ---echo # ---echo # MDEV-16757: manual addition of min/max statistics for BLOB ---echo # - -SET use_stat_tables= PREFERABLY; - -CREATE TABLE t1 (pk INT PRIMARY KEY, t TEXT); -INSERT INTO t1 VALUES (1,'foo'),(2,'bar'); -ANALYZE TABLE t1; ---sorted_result -SELECT * FROM mysql.column_stats; -DELETE FROM mysql.column_stats - WHERE db_name='test' AND table_name='t1' AND column_name='t'; -INSERT INTO mysql.column_stats VALUES - ('test','t1','t','bar','foo', 0.0, 3.0, 1.0, 0, NULL, NULL); ---sorted_result -SELECT * FROM mysql.column_stats; - -SELECT pk FROM t1; - -DROP TABLE t1; - -set use_stat_tables=@save_use_stat_tables; - ---echo # ---echo # MDEV-16760: CREATE OR REPLACE TABLE after ANALYZE TABLE ---echo # - -SET use_stat_tables= PREFERABLY; - -CREATE TABLE t1 (pk int PRIMARY KEY, c varchar(32)); -INSERT INTO t1 VALUES (1,'foo'),(2,'bar'); -ANALYZE TABLE t1; -SELECT * FROM t1; -SELECT * FROM mysql.column_stats; - -CREATE OR REPLACE TABLE t1 (pk int PRIMARY KEY, a char(7)); -SELECT * FROM t1; -SELECT * FROM mysql.column_stats; - -DROP TABLE t1; - -set use_stat_tables=@save_use_stat_tables; - - --echo # --echo # MDEV-16711:CREATE OR REPLACE TABLE introducing BLOB column --echo # From 654b587999456e08fdfb3a909bafb19b9fa49830 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jan=20Lindstr=C3=B6m?= Date: Wed, 19 Sep 2018 11:33:22 +0300 Subject: [PATCH 119/148] MDEV-17208: Test failure on galera.MW-286 Test changes only. --- mysql-test/suite/galera/r/MW-286.result | 6 ++++-- mysql-test/suite/galera/t/MW-286.test | 6 ++++-- 2 files changed, 8 insertions(+), 4 deletions(-) diff --git a/mysql-test/suite/galera/r/MW-286.result b/mysql-test/suite/galera/r/MW-286.result index adc996c1cbe..f3bef6f7516 100644 --- a/mysql-test/suite/galera/r/MW-286.result +++ b/mysql-test/suite/galera/r/MW-286.result @@ -1,13 +1,15 @@ -CREATE TABLE ten (f1 INTEGER); +connection node_1; +CREATE TABLE ten (f1 INTEGER) Engine=InnoDB; INSERT INTO ten VALUES (0),(1),(2),(3),(4),(5),(6),(7),(8),(9); CREATE TABLE t1 (f1 INTEGER) Engine=InnoDB; INSERT INTO t1 (f1) SELECT 000000 + (10000 * a1.f1) + (1000 * a2.f1) + (100 * a3.f1) + (10 * a4.f1) + a5.f1 FROM ten AS a1, ten AS a2, ten AS a3, ten AS a4, ten AS a5; INSERT INTO t1 (f1) SELECT 100000 + (10000 * a1.f1) + (1000 * a2.f1) + (100 * a3.f1) + (10 * a4.f1) + a5.f1 FROM ten AS a1, ten AS a2, ten AS a3, ten AS a4, ten AS a5;; +connection node_2; SET GLOBAL wsrep_desync = TRUE; SET wsrep_on = FALSE; ALTER TABLE t1 ADD PRIMARY KEY (f1); -ERROR 70100: Query execution was interrupted SET wsrep_on = TRUE; SET GLOBAL wsrep_desync = FALSE; +connection node_1; DROP TABLE t1; DROP TABLE ten; diff --git a/mysql-test/suite/galera/t/MW-286.test b/mysql-test/suite/galera/t/MW-286.test index 1b2e322f078..426b4493bb7 100644 --- a/mysql-test/suite/galera/t/MW-286.test +++ b/mysql-test/suite/galera/t/MW-286.test @@ -7,7 +7,7 @@ --source include/big_test.inc --connection node_1 -CREATE TABLE ten (f1 INTEGER); +CREATE TABLE ten (f1 INTEGER) Engine=InnoDB; INSERT INTO ten VALUES (0),(1),(2),(3),(4),(5),(6),(7),(8),(9); CREATE TABLE t1 (f1 INTEGER) Engine=InnoDB; @@ -22,11 +22,13 @@ INSERT INTO t1 (f1) SELECT 000000 + (10000 * a1.f1) + (1000 * a2.f1) + (100 * a3 SET GLOBAL wsrep_desync = TRUE; SET wsrep_on = FALSE; ---error ER_QUERY_INTERRUPTED +--error 0,ER_QUERY_INTERRUPTED ALTER TABLE t1 ADD PRIMARY KEY (f1); SET wsrep_on = TRUE; SET GLOBAL wsrep_desync = FALSE; +--connection node_1 +reap; DROP TABLE t1; DROP TABLE ten; From 82524239c48a2603f115a6117e061751f6427d08 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jan=20Lindstr=C3=B6m?= Date: Wed, 19 Sep 2018 11:42:43 +0300 Subject: [PATCH 120/148] MDEV-17208: Test failure on galera.MW-286 Test changes only. --- mysql-test/suite/galera/r/MW-286.result | 3 +-- mysql-test/suite/galera/t/MW-286.test | 6 ++++-- 2 files changed, 5 insertions(+), 4 deletions(-) diff --git a/mysql-test/suite/galera/r/MW-286.result b/mysql-test/suite/galera/r/MW-286.result index adc996c1cbe..e30cf89b84c 100644 --- a/mysql-test/suite/galera/r/MW-286.result +++ b/mysql-test/suite/galera/r/MW-286.result @@ -1,4 +1,4 @@ -CREATE TABLE ten (f1 INTEGER); +CREATE TABLE ten (f1 INTEGER) Engine=InnoDB; INSERT INTO ten VALUES (0),(1),(2),(3),(4),(5),(6),(7),(8),(9); CREATE TABLE t1 (f1 INTEGER) Engine=InnoDB; INSERT INTO t1 (f1) SELECT 000000 + (10000 * a1.f1) + (1000 * a2.f1) + (100 * a3.f1) + (10 * a4.f1) + a5.f1 FROM ten AS a1, ten AS a2, ten AS a3, ten AS a4, ten AS a5; @@ -6,7 +6,6 @@ INSERT INTO t1 (f1) SELECT 100000 + (10000 * a1.f1) + (1000 * a2.f1) + (100 * a3 SET GLOBAL wsrep_desync = TRUE; SET wsrep_on = FALSE; ALTER TABLE t1 ADD PRIMARY KEY (f1); -ERROR 70100: Query execution was interrupted SET wsrep_on = TRUE; SET GLOBAL wsrep_desync = FALSE; DROP TABLE t1; diff --git a/mysql-test/suite/galera/t/MW-286.test b/mysql-test/suite/galera/t/MW-286.test index 1b2e322f078..426b4493bb7 100644 --- a/mysql-test/suite/galera/t/MW-286.test +++ b/mysql-test/suite/galera/t/MW-286.test @@ -7,7 +7,7 @@ --source include/big_test.inc --connection node_1 -CREATE TABLE ten (f1 INTEGER); +CREATE TABLE ten (f1 INTEGER) Engine=InnoDB; INSERT INTO ten VALUES (0),(1),(2),(3),(4),(5),(6),(7),(8),(9); CREATE TABLE t1 (f1 INTEGER) Engine=InnoDB; @@ -22,11 +22,13 @@ INSERT INTO t1 (f1) SELECT 000000 + (10000 * a1.f1) + (1000 * a2.f1) + (100 * a3 SET GLOBAL wsrep_desync = TRUE; SET wsrep_on = FALSE; ---error ER_QUERY_INTERRUPTED +--error 0,ER_QUERY_INTERRUPTED ALTER TABLE t1 ADD PRIMARY KEY (f1); SET wsrep_on = TRUE; SET GLOBAL wsrep_desync = FALSE; +--connection node_1 +reap; DROP TABLE t1; DROP TABLE ten; From 45712a9a1f7b24fab925e85e3df0bc644c8bc0ce Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jan=20Lindstr=C3=B6m?= Date: Wed, 19 Sep 2018 12:19:30 +0300 Subject: [PATCH 121/148] MDEV-13871: galera.galera_unicode_identifiers failed in buildbot with 'Unknown database' Wait in second node until tables with databases are created. --- .../suite/galera/r/galera_unicode_identifiers.result | 6 +++--- .../suite/galera/t/galera_unicode_identifiers.test | 12 +++++++++--- 2 files changed, 12 insertions(+), 6 deletions(-) diff --git a/mysql-test/suite/galera/r/galera_unicode_identifiers.result b/mysql-test/suite/galera/r/galera_unicode_identifiers.result index 9aee4616ec5..28e5ac11086 100644 --- a/mysql-test/suite/galera/r/galera_unicode_identifiers.result +++ b/mysql-test/suite/galera/r/galera_unicode_identifiers.result @@ -6,7 +6,7 @@ CREATE TABLE `table with space` ( `column with space` INTEGER AUTO_INCREMENT PRIMARY KEY, `second column with space` INTEGER, UNIQUE `index name with space` (`second column with space`) -); +) engine=innodb; INSERT INTO `table with space` VALUES (1, 1); CREATE DATABASE `база`; USE `база`; @@ -14,7 +14,7 @@ CREATE TABLE `таблица` ( `първа_колона` INTEGER PRIMARY KEY, `втора_колона` INTEGER, UNIQUE `индекÑ` (`втора_колона`) -); +) engine=innodb; INSERT INTO `таблица` VALUES (1, 1); CREATE DATABASE `втора база`; USE `втора база`; @@ -22,7 +22,7 @@ CREATE TABLE `втора таблица` ( `първа колона` INTEGER, `втора колона` INTEGER, KEY `първи индекÑ` (`първа колона`) -); +) engine=innodb; INSERT INTO `втора таблица` VALUES (1, 1); USE `database with space`; SELECT `second column with space` FROM `table with space`; diff --git a/mysql-test/suite/galera/t/galera_unicode_identifiers.test b/mysql-test/suite/galera/t/galera_unicode_identifiers.test index f3df60a6415..c0c95768650 100644 --- a/mysql-test/suite/galera/t/galera_unicode_identifiers.test +++ b/mysql-test/suite/galera/t/galera_unicode_identifiers.test @@ -13,6 +13,8 @@ SET GLOBAL wsrep_sync_wait = 15; --connection node_1 +--let $innodb_num_tables_orig = `SELECT COUNT(*) FROM INFORMATION_SCHEMA.INNODB_SYS_TABLES` + # Spaces in identifiers CREATE DATABASE `database with space`; @@ -21,7 +23,7 @@ CREATE TABLE `table with space` ( `column with space` INTEGER AUTO_INCREMENT PRIMARY KEY, `second column with space` INTEGER, UNIQUE `index name with space` (`second column with space`) -); +) engine=innodb; INSERT INTO `table with space` VALUES (1, 1); # Unicode identifiers @@ -32,7 +34,7 @@ CREATE TABLE `таблица` ( `първа_колона` INTEGER PRIMARY KEY, `втора_колона` INTEGER, UNIQUE `индекÑ` (`втора_колона`) -); +) engine=innodb; INSERT INTO `таблица` VALUES (1, 1); @@ -44,11 +46,15 @@ CREATE TABLE `втора таблица` ( `първа колона` INTEGER, `втора колона` INTEGER, KEY `първи индекÑ` (`първа колона`) -); +) engine=innodb; INSERT INTO `втора таблица` VALUES (1, 1); --connection node_2 +# Wait until 3 above tables with databases are created also to this node +--let $wait_condition = SELECT COUNT(*) = $innodb_num_tables_orig + 3 FROM INFORMATION_SCHEMA.INNODB_SYS_TABLES; +--source include/wait_condition.inc + USE `database with space`; SELECT `second column with space` FROM `table with space`; From 3177d266273b4aa79973c49a519299f54ca097e7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jan=20Lindstr=C3=B6m?= Date: Wed, 19 Sep 2018 13:10:54 +0300 Subject: [PATCH 122/148] MDEV-13873: galera.galera_suspend_slave failed in buildbot with wrong error code Add wsrep_sync_wait as we want INSERT to fail. --- mysql-test/suite/galera/r/galera_suspend_slave.result | 2 ++ mysql-test/suite/galera/t/galera_suspend_slave.test | 3 +++ 2 files changed, 5 insertions(+) diff --git a/mysql-test/suite/galera/r/galera_suspend_slave.result b/mysql-test/suite/galera/r/galera_suspend_slave.result index ebddb4c449d..d758b7f4cb1 100644 --- a/mysql-test/suite/galera/r/galera_suspend_slave.result +++ b/mysql-test/suite/galera/r/galera_suspend_slave.result @@ -1,9 +1,11 @@ CREATE TABLE t1 (f1 INTEGER PRIMARY KEY) ENGINE=InnoDB; Suspending node_2 ... SET SESSION wsrep_sync_wait = 0; +SET SESSION wsrep_sync_wait = 15; INSERT INTO t1 VALUES (1); Got one of the listed errors Resuming node_2 ... +SET SESSION wsrep_sync_wait = 0; INSERT INTO t1 VALUES (1); SET SESSION wsrep_sync_wait = 0; SELECT COUNT(*) = 1 FROM t1; diff --git a/mysql-test/suite/galera/t/galera_suspend_slave.test b/mysql-test/suite/galera/t/galera_suspend_slave.test index 6f0f8014397..0f95bcd4531 100644 --- a/mysql-test/suite/galera/t/galera_suspend_slave.test +++ b/mysql-test/suite/galera/t/galera_suspend_slave.test @@ -34,6 +34,8 @@ SET SESSION wsrep_sync_wait = 0; --let $wait_condition = SELECT VARIABLE_VALUE = 1 FROM INFORMATION_SCHEMA.GLOBAL_STATUS WHERE VARIABLE_NAME = 'wsrep_cluster_size'; --source include/wait_condition.inc +SET SESSION wsrep_sync_wait = 15; + --error ER_UNKNOWN_COM_ERROR,ER_LOCK_WAIT_TIMEOUT,ER_LOCK_DEADLOCK,ER_ERROR_DURING_COMMIT INSERT INTO t1 VALUES (1); @@ -46,6 +48,7 @@ INSERT INTO t1 VALUES (1); exit(0); EOF +SET SESSION wsrep_sync_wait = 0; --source include/wait_until_ready.inc INSERT INTO t1 VALUES (1); From 7e4bbd3aa65e57b7cd3437e88231900f79dfe3a4 Mon Sep 17 00:00:00 2001 From: Thirunarayanan Balathandayuthapani Date: Thu, 20 Sep 2018 17:13:12 +0530 Subject: [PATCH 123/148] MDEV-17236 mariabackup incorrectly tries to open ibdata1 if custom undo tablespace is defined - In case of multiple undo tablespace, mariabackup have to open system tablespace to find the list of undo tablespace present in TRX_SYS page. For opening system tablespace, mariabackup should fetch the file name from already initialized system tablespace object. --- extra/mariabackup/xtrabackup.cc | 2 +- mysql-test/suite/mariabackup/undo_space_id.opt | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/extra/mariabackup/xtrabackup.cc b/extra/mariabackup/xtrabackup.cc index da8fb37ea84..a55a1e4fc0f 100644 --- a/extra/mariabackup/xtrabackup.cc +++ b/extra/mariabackup/xtrabackup.cc @@ -3255,7 +3255,7 @@ static dberr_t xb_assign_undo_space_start() } snprintf(name + dirnamelen, (sizeof name) - dirnamelen, - "%s", "ibdata1"); + "%s", srv_sys_space.first_datafile()->name()); file = os_file_create(0, name, OS_FILE_OPEN, OS_FILE_NORMAL, OS_DATA_FILE, true, &ret); diff --git a/mysql-test/suite/mariabackup/undo_space_id.opt b/mysql-test/suite/mariabackup/undo_space_id.opt index 01b1d91e820..2e68759e37e 100644 --- a/mysql-test/suite/mariabackup/undo_space_id.opt +++ b/mysql-test/suite/mariabackup/undo_space_id.opt @@ -1,2 +1,3 @@ --debug=d,innodb_undo_upgrade +--innodb_data_file_path=ib_mysql:10M --innodb_undo_tablespaces=2 From 0c6455aa4658790439a58956f05df200a5e380b8 Mon Sep 17 00:00:00 2001 From: Alexander Barkov Date: Thu, 20 Sep 2018 16:02:58 +0400 Subject: [PATCH 124/148] MDEV-17249 MAKETIME(-1e50,0,0) returns a wrong result --- mysql-test/r/func_time.result | 45 ++++++++++++++++++++++++++++++++++ mysql-test/r/type_float.result | 36 +++++++++++++++++++++++++++ mysql-test/t/func_time.test | 21 ++++++++++++++++ mysql-test/t/type_float.test | 29 ++++++++++++++++++++++ sql/field.cc | 3 ++- sql/item.cc | 8 ++++-- sql/item_func.cc | 5 +++- sql/item_func.h | 10 ++++++-- sql/item_sum.cc | 6 +++-- sql/item_sum.h | 19 +++++++++++--- sql/item_timefunc.cc | 22 +++++------------ sql/sql_error.h | 7 +++--- sql/sql_type_int.h | 40 ++++++++++++++++++++++++++++++ 13 files changed, 219 insertions(+), 32 deletions(-) create mode 100644 sql/sql_type_int.h diff --git a/mysql-test/r/func_time.result b/mysql-test/r/func_time.result index 3f0d99e1315..1db897d4ec0 100644 --- a/mysql-test/r/func_time.result +++ b/mysql-test/r/func_time.result @@ -2661,5 +2661,50 @@ SELECT PERIOD_DIFF(2018, AES_ENCRYPT('Rae Bareli', 'Rae Bareli')); PERIOD_DIFF(2018, AES_ENCRYPT('Rae Bareli', 'Rae Bareli')) 24257 # +# MDEV-17249 MAKETIME(-1e50,0,0) returns a wrong result +# +SELECT +MAKETIME(1e10,0,0), +MAKETIME(-1e10,0,0), +MAKETIME(1e50,0,0), +MAKETIME(-1e50,0,0), +MAKETIME(COALESCE(1e50),0,0), +MAKETIME(COALESCE(-1e50),0,0); +MAKETIME(1e10,0,0) 838:59:59 +MAKETIME(-1e10,0,0) -838:59:59 +MAKETIME(1e50,0,0) 838:59:59 +MAKETIME(-1e50,0,0) -838:59:59 +MAKETIME(COALESCE(1e50),0,0) 838:59:59 +MAKETIME(COALESCE(-1e50),0,0) -838:59:59 +Warnings: +Level Warning +Code 1292 +Message Truncated incorrect time value: '10000000000:00:00' +Level Warning +Code 1292 +Message Truncated incorrect time value: '-10000000000:00:00' +Level Warning +Code 1292 +Message Truncated incorrect time value: '9223372036854775807:00:00' +Level Warning +Code 1292 +Message Truncated incorrect time value: '-9223372036854775808:00:00' +Level Warning +Code 1292 +Message Truncated incorrect time value: '9223372036854775807:00:00' +Level Warning +Code 1292 +Message Truncated incorrect time value: '-9223372036854775808:00:00' +CREATE TABLE t1 (a FLOAT); +INSERT INTO t1 VALUES (1e30),(-1e30); +SELECT MAKETIME(a,0,0) FROM t1; +MAKETIME(a,0,0) +838:59:59 +-838:59:59 +Warnings: +Warning 1292 Truncated incorrect time value: '9223372036854775807:00:00' +Warning 1292 Truncated incorrect time value: '-9223372036854775808:00:00' +DROP TABLE t1; +# # End of 5.5 tests # diff --git a/mysql-test/r/type_float.result b/mysql-test/r/type_float.result index f41c2e7688b..f8574167de3 100644 --- a/mysql-test/r/type_float.result +++ b/mysql-test/r/type_float.result @@ -447,3 +447,39 @@ End of 5.0 tests select format(truncate('1.7976931348623157E+308',-12),1,'fr_BE') as foo; foo 0 +# +# MDEV-17249 MAKETIME(-1e50,0,0) returns a wrong result +# +SELECT LEFT('a',EXP(50)); +LEFT('a',EXP(50)) +a +SELECT LEFT('a', COALESCE(1e30)); +LEFT('a', COALESCE(1e30)) +a +CREATE TABLE t1 (a FLOAT); +INSERT INTO t1 VALUES (1e30); +SELECT LEFT('a',a), LEFT('a',1e30) FROM t1; +LEFT('a',a) LEFT('a',1e30) +a a +DROP TABLE t1; +PREPARE stmt FROM 'SELECT LEFT(111,?)'; +SET @a=1e30; +EXECUTE stmt USING @a; +LEFT(111,?) +111 +DEALLOCATE PREPARE stmt; +CREATE TABLE t1 (a INT); +INSERT INTO t1 VALUES (1),(2),(3); +SELECT LEFT('a',(SELECT 1e30 FROM t1 LIMIT 1)); +LEFT('a',(SELECT 1e30 FROM t1 LIMIT 1)) +a +DROP TABLE t1; +CREATE TABLE t1 (a DOUBLE); +INSERT INTO t1 VALUES (1e30),(0); +SELECT LEFT('a', SUM(a)) FROM t1; +LEFT('a', SUM(a)) +a +SELECT LEFT('a', AVG(a)) FROM t1; +LEFT('a', AVG(a)) +a +DROP TABLE t1; diff --git a/mysql-test/t/func_time.test b/mysql-test/t/func_time.test index 361eff170fb..10b2b2958c2 100644 --- a/mysql-test/t/func_time.test +++ b/mysql-test/t/func_time.test @@ -1634,6 +1634,27 @@ SELECT SEC_TO_TIME(MAKEDATE(0,RAND(~0))); # SELECT PERIOD_DIFF(2018, AES_ENCRYPT('Rae Bareli', 'Rae Bareli')); + +--echo # +--echo # MDEV-17249 MAKETIME(-1e50,0,0) returns a wrong result +--echo # + +--vertical_results +SELECT + MAKETIME(1e10,0,0), + MAKETIME(-1e10,0,0), + MAKETIME(1e50,0,0), + MAKETIME(-1e50,0,0), + MAKETIME(COALESCE(1e50),0,0), + MAKETIME(COALESCE(-1e50),0,0); +--horizontal_results + +CREATE TABLE t1 (a FLOAT); +INSERT INTO t1 VALUES (1e30),(-1e30); +SELECT MAKETIME(a,0,0) FROM t1; +DROP TABLE t1; + + --echo # --echo # End of 5.5 tests --echo # diff --git a/mysql-test/t/type_float.test b/mysql-test/t/type_float.test index b33c51566a0..fa45b1041d8 100644 --- a/mysql-test/t/type_float.test +++ b/mysql-test/t/type_float.test @@ -331,3 +331,32 @@ eval select concat((truncate((-1.7976931348623157E+307),(0x1e))), --echo # select format(truncate('1.7976931348623157E+308',-12),1,'fr_BE') as foo; + + +--echo # +--echo # MDEV-17249 MAKETIME(-1e50,0,0) returns a wrong result +--echo # + +SELECT LEFT('a',EXP(50)); +SELECT LEFT('a', COALESCE(1e30)); + +CREATE TABLE t1 (a FLOAT); +INSERT INTO t1 VALUES (1e30); +SELECT LEFT('a',a), LEFT('a',1e30) FROM t1; +DROP TABLE t1; + +PREPARE stmt FROM 'SELECT LEFT(111,?)'; +SET @a=1e30; +EXECUTE stmt USING @a; +DEALLOCATE PREPARE stmt; + +CREATE TABLE t1 (a INT); +INSERT INTO t1 VALUES (1),(2),(3); +SELECT LEFT('a',(SELECT 1e30 FROM t1 LIMIT 1)); +DROP TABLE t1; + +CREATE TABLE t1 (a DOUBLE); +INSERT INTO t1 VALUES (1e30),(0); +SELECT LEFT('a', SUM(a)) FROM t1; +SELECT LEFT('a', AVG(a)) FROM t1; +DROP TABLE t1; diff --git a/sql/field.cc b/sql/field.cc index 5b111ab5e03..28b3d743ed8 100644 --- a/sql/field.cc +++ b/sql/field.cc @@ -3948,7 +3948,8 @@ longlong Field_float::val_int(void) { float j; float4get(j,ptr); - return (longlong) rint(j); + bool error; + return double_to_longlong(j, false, &error); } diff --git a/sql/item.cc b/sql/item.cc index 745cbf31f0c..e1afc339cc2 100644 --- a/sql/item.cc +++ b/sql/item.cc @@ -3692,7 +3692,10 @@ longlong Item_param::val_int() { switch (state) { case REAL_VALUE: - return (longlong) rint(value.real); + { + bool error; + return double_to_longlong(value.real, unsigned_flag, &error); + } case INT_VALUE: return value.integer; case DECIMAL_VALUE: @@ -9231,7 +9234,8 @@ longlong Item_cache_real::val_int() DBUG_ASSERT(fixed == 1); if (!has_value()) return 0; - return (longlong) rint(value); + bool error; + return double_to_longlong(value, unsigned_flag, &error); } diff --git a/sql/item_func.cc b/sql/item_func.cc index 8b3c72dd328..73fc099252b 100644 --- a/sql/item_func.cc +++ b/sql/item_func.cc @@ -999,7 +999,10 @@ longlong Item_func_hybrid_result_type::val_int() case INT_RESULT: return int_op(); case REAL_RESULT: - return (longlong) rint(real_op()); + { + bool error; + return double_to_longlong(real_op(), unsigned_flag, &error); + } case STRING_RESULT: { if (is_temporal_type(field_type())) diff --git a/sql/item_func.h b/sql/item_func.h index 3a609fc0fe0..64b3b5cfb75 100644 --- a/sql/item_func.h +++ b/sql/item_func.h @@ -411,7 +411,11 @@ public: String *val_str(String*str); my_decimal *val_decimal(my_decimal *decimal_value); longlong val_int() - { DBUG_ASSERT(fixed == 1); return (longlong) rint(val_real()); } + { + DBUG_ASSERT(fixed == 1); + bool error; + return double_to_longlong(val_real(), unsigned_flag, &error); + } enum Item_result result_type () const { return REAL_RESULT; } void fix_length_and_dec() { decimals= NOT_FIXED_DEC; max_length= float_length(decimals); } @@ -1465,7 +1469,9 @@ class Item_func_udf_float :public Item_udf_func longlong val_int() { DBUG_ASSERT(fixed == 1); - return (longlong) rint(Item_func_udf_float::val_real()); + bool error; + return double_to_longlong(Item_func_udf_float::val_real(), + unsigned_flag, &error); } my_decimal *val_decimal(my_decimal *dec_buf) { diff --git a/sql/item_sum.cc b/sql/item_sum.cc index 16334cd7b30..22fbe2bacfe 100644 --- a/sql/item_sum.cc +++ b/sql/item_sum.cc @@ -1434,7 +1434,8 @@ longlong Item_sum_sum::val_int() &result); return result; } - return (longlong) rint(val_real()); + bool error; + return double_to_longlong(val_real(), unsigned_flag, &error); } @@ -2648,7 +2649,8 @@ double Item_avg_field::val_real() longlong Item_avg_field::val_int() { - return (longlong) rint(val_real()); + bool error; + return double_to_longlong(val_real(), unsigned_flag, &error); } diff --git a/sql/item_sum.h b/sql/item_sum.h index dcc3e494f82..b0bca5e7ad2 100644 --- a/sql/item_sum.h +++ b/sql/item_sum.h @@ -699,7 +699,9 @@ public: longlong val_int() { DBUG_ASSERT(fixed == 1); - return (longlong) rint(val_real()); /* Real as default */ + // Real as default + bool error; + return double_to_longlong(val_real(), unsigned_flag, &error); } String *val_str(String*str); my_decimal *val_decimal(my_decimal *); @@ -867,7 +869,11 @@ public: bool add(); double val_real(); // In SPs we might force the "wrong" type with select into a declare variable - longlong val_int() { return (longlong) rint(val_real()); } + longlong val_int() + { + bool error; + return double_to_longlong(val_real(), unsigned_flag, &error); + } my_decimal *val_decimal(my_decimal *); String *val_str(String *str); void reset_field(); @@ -904,7 +910,10 @@ public: enum Type type() const {return FIELD_VARIANCE_ITEM; } double val_real(); longlong val_int() - { /* can't be fix_fields()ed */ return (longlong) rint(val_real()); } + { /* can't be fix_fields()ed */ + bool error; + return double_to_longlong(val_real(), unsigned_flag, &error); + } String *val_str(String *str) { return val_string_from_real(str); } my_decimal *val_decimal(my_decimal *dec_buf) @@ -1215,7 +1224,9 @@ class Item_sum_udf_float :public Item_udf_sum longlong val_int() { DBUG_ASSERT(fixed == 1); - return (longlong) rint(Item_sum_udf_float::val_real()); + bool error; + return double_to_longlong(Item_sum_udf_float::val_real(), + unsigned_flag, &error); } double val_real(); String *val_str(String*str); diff --git a/sql/item_timefunc.cc b/sql/item_timefunc.cc index eeb373a75ee..cc03cc004bd 100644 --- a/sql/item_timefunc.cc +++ b/sql/item_timefunc.cc @@ -40,6 +40,7 @@ #include "set_var.h" #include "sql_locale.h" // MY_LOCALE my_locale_en_US #include "strfunc.h" // check_word +#include "sql_type_int.h" // Longlong_hybrid #include "sql_time.h" // make_truncated_value_warning, // get_date_from_daynr, // calc_weekday, calc_week, @@ -2741,8 +2742,7 @@ bool Item_func_timediff::get_date(MYSQL_TIME *ltime, ulonglong fuzzy_date) bool Item_func_maketime::get_date(MYSQL_TIME *ltime, ulonglong fuzzy_date) { DBUG_ASSERT(fixed == 1); - bool overflow= 0; - longlong hour= args[0]->val_int(); + Longlong_hybrid hour(args[0]->val_int(), args[0]->unsigned_flag); longlong minute= args[1]->val_int(); ulonglong second; ulong microsecond; @@ -2754,21 +2754,11 @@ bool Item_func_maketime::get_date(MYSQL_TIME *ltime, ulonglong fuzzy_date) bzero(ltime, sizeof(*ltime)); ltime->time_type= MYSQL_TIMESTAMP_TIME; + ltime->neg= hour.neg(); - /* Check for integer overflows */ - if (hour < 0) + if (hour.abs() <= TIME_MAX_HOUR) { - if (args[0]->unsigned_flag) - overflow= 1; - else - ltime->neg= 1; - } - if (-hour > TIME_MAX_HOUR || hour > TIME_MAX_HOUR) - overflow= 1; - - if (!overflow) - { - ltime->hour= (uint) ((hour < 0 ? -hour : hour)); + ltime->hour= (uint) hour.abs(); ltime->minute= (uint) minute; ltime->second= (uint) second; ltime->second_part= microsecond; @@ -2779,7 +2769,7 @@ bool Item_func_maketime::get_date(MYSQL_TIME *ltime, ulonglong fuzzy_date) ltime->minute= TIME_MAX_MINUTE; ltime->second= TIME_MAX_SECOND; char buf[28]; - char *ptr= longlong10_to_str(hour, buf, args[0]->unsigned_flag ? 10 : -10); + char *ptr= longlong10_to_str(hour.value(), buf, hour.is_unsigned() ? 10 : -10); int len = (int)(ptr - buf) + sprintf(ptr, ":%02u:%02u", (uint)minute, (uint)second); make_truncated_value_warning(current_thd, MYSQL_ERROR::WARN_LEVEL_WARN, buf, len, MYSQL_TIMESTAMP_TIME, diff --git a/sql/sql_error.h b/sql/sql_error.h index 5f912ad8102..903ad65521d 100644 --- a/sql/sql_error.h +++ b/sql/sql_error.h @@ -18,6 +18,7 @@ #include "sql_list.h" /* Sql_alloc, MEM_ROOT */ #include "m_string.h" /* LEX_STRING */ +#include "sql_type_int.h" // Longlong_hybrid #include "sql_string.h" /* String */ #include "mysql_com.h" /* MYSQL_ERRMSG_SIZE */ @@ -542,13 +543,11 @@ public: { return err_conv(err_buffer, sizeof(err_buffer), str, len, cs); } }; -class ErrConvInteger : public ErrConv +class ErrConvInteger : public ErrConv, public Longlong_hybrid { - longlong m_value; - bool m_unsigned; public: ErrConvInteger(longlong num_arg, bool unsigned_flag= false) : - ErrConv(), m_value(num_arg), m_unsigned(unsigned_flag) {} + ErrConv(), Longlong_hybrid(num_arg, unsigned_flag) {} const char *ptr() const { return m_unsigned ? ullstr(m_value, err_buffer) : diff --git a/sql/sql_type_int.h b/sql/sql_type_int.h new file mode 100644 index 00000000000..055790ba431 --- /dev/null +++ b/sql/sql_type_int.h @@ -0,0 +1,40 @@ +/* Copyright (c) 2006, 2010, Oracle and/or its affiliates. + Copyright (c) 2011, 2016, MariaDB + + This program is free software; you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation; version 2 of the License. + + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with this program; if not, write to the Free Software + Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA */ + +#ifndef SQL_TYPE_INT_INCLUDED +#define SQL_TYPE_INT_INCLUDED + + +// A longlong/ulonglong hybrid. Good to store results of val_int(). +class Longlong_hybrid +{ +protected: + longlong m_value; + bool m_unsigned; +public: + Longlong_hybrid(longlong nr, bool unsigned_flag) + :m_value(nr), m_unsigned(unsigned_flag) + { } + longlong value() const { return m_value; } + bool is_unsigned() const { return m_unsigned; } + bool neg() const { return m_value < 0 && !m_unsigned; } + ulonglong abs() const + { + return neg() ? (ulonglong) -m_value : (ulonglong) m_value; + } +}; + +#endif // SQL_TYPE_INT_INCLUDED From 935a163dd9242457fe56e73b2c2932230579aef5 Mon Sep 17 00:00:00 2001 From: Alexander Barkov Date: Thu, 20 Sep 2018 16:51:56 +0400 Subject: [PATCH 125/148] MDEV-17244 MAKETIME(900,0,0.111) returns a wrong result --- mysql-test/r/func_time.result | 113 ++++++++++++++++++++++++++++++++++ mysql-test/t/func_time.test | 28 +++++++++ sql/item_timefunc.cc | 7 ++- 3 files changed, 145 insertions(+), 3 deletions(-) diff --git a/mysql-test/r/func_time.result b/mysql-test/r/func_time.result index 1db897d4ec0..9d478b10d8a 100644 --- a/mysql-test/r/func_time.result +++ b/mysql-test/r/func_time.result @@ -2706,5 +2706,118 @@ Warning 1292 Truncated incorrect time value: '9223372036854775807:00:00' Warning 1292 Truncated incorrect time value: '-9223372036854775808:00:00' DROP TABLE t1; # +# MDEV-17244 MAKETIME(900,0,0.111) returns a wrong result +# +SELECT MAKETIME(900,0,0); +MAKETIME(900,0,0) +838:59:59 +Warnings: +Warning 1292 Truncated incorrect time value: '900:00:00' +SELECT MAKETIME(900,0,0.1); +MAKETIME(900,0,0.1) +838:59:59.9 +Warnings: +Warning 1292 Truncated incorrect time value: '900:00:00' +SELECT MAKETIME(900,0,0.11); +MAKETIME(900,0,0.11) +838:59:59.99 +Warnings: +Warning 1292 Truncated incorrect time value: '900:00:00' +SELECT MAKETIME(900,0,0.111); +MAKETIME(900,0,0.111) +838:59:59.999 +Warnings: +Warning 1292 Truncated incorrect time value: '900:00:00' +SELECT MAKETIME(900,0,0.1111); +MAKETIME(900,0,0.1111) +838:59:59.9999 +Warnings: +Warning 1292 Truncated incorrect time value: '900:00:00' +SELECT MAKETIME(900,0,0.11111); +MAKETIME(900,0,0.11111) +838:59:59.99999 +Warnings: +Warning 1292 Truncated incorrect time value: '900:00:00' +SELECT MAKETIME(900,0,0.111111); +MAKETIME(900,0,0.111111) +838:59:59.999999 +Warnings: +Warning 1292 Truncated incorrect time value: '900:00:00' +SELECT MAKETIME(900,0,0.1111111); +MAKETIME(900,0,0.1111111) +838:59:59.999999 +Warnings: +Warning 1292 Truncated incorrect time value: '900:00:00' +SELECT MAKETIME(900,0,0.11111111); +MAKETIME(900,0,0.11111111) +838:59:59.999999 +Warnings: +Warning 1292 Truncated incorrect time value: '900:00:00' +SELECT MAKETIME(900,0,0.111111111); +MAKETIME(900,0,0.111111111) +838:59:59.999999 +Warnings: +Warning 1292 Truncated incorrect time value: '900:00:00' +SELECT MAKETIME(900,0,EXP(1)); +MAKETIME(900,0,EXP(1)) +838:59:59.999999 +Warnings: +Warning 1292 Truncated incorrect time value: '900:00:02' +SELECT MAKETIME(-900,0,0); +MAKETIME(-900,0,0) +-838:59:59 +Warnings: +Warning 1292 Truncated incorrect time value: '-900:00:00' +SELECT MAKETIME(-900,0,0.1); +MAKETIME(-900,0,0.1) +-838:59:59.9 +Warnings: +Warning 1292 Truncated incorrect time value: '-900:00:00' +SELECT MAKETIME(-900,0,0.11); +MAKETIME(-900,0,0.11) +-838:59:59.99 +Warnings: +Warning 1292 Truncated incorrect time value: '-900:00:00' +SELECT MAKETIME(-900,0,0.111); +MAKETIME(-900,0,0.111) +-838:59:59.999 +Warnings: +Warning 1292 Truncated incorrect time value: '-900:00:00' +SELECT MAKETIME(-900,0,0.1111); +MAKETIME(-900,0,0.1111) +-838:59:59.9999 +Warnings: +Warning 1292 Truncated incorrect time value: '-900:00:00' +SELECT MAKETIME(-900,0,0.11111); +MAKETIME(-900,0,0.11111) +-838:59:59.99999 +Warnings: +Warning 1292 Truncated incorrect time value: '-900:00:00' +SELECT MAKETIME(-900,0,0.111111); +MAKETIME(-900,0,0.111111) +-838:59:59.999999 +Warnings: +Warning 1292 Truncated incorrect time value: '-900:00:00' +SELECT MAKETIME(-900,0,0.1111111); +MAKETIME(-900,0,0.1111111) +-838:59:59.999999 +Warnings: +Warning 1292 Truncated incorrect time value: '-900:00:00' +SELECT MAKETIME(-900,0,0.11111111); +MAKETIME(-900,0,0.11111111) +-838:59:59.999999 +Warnings: +Warning 1292 Truncated incorrect time value: '-900:00:00' +SELECT MAKETIME(-900,0,0.111111111); +MAKETIME(-900,0,0.111111111) +-838:59:59.999999 +Warnings: +Warning 1292 Truncated incorrect time value: '-900:00:00' +SELECT MAKETIME(-900,0,EXP(1)); +MAKETIME(-900,0,EXP(1)) +-838:59:59.999999 +Warnings: +Warning 1292 Truncated incorrect time value: '-900:00:02' +# # End of 5.5 tests # diff --git a/mysql-test/t/func_time.test b/mysql-test/t/func_time.test index 10b2b2958c2..4497a4d9668 100644 --- a/mysql-test/t/func_time.test +++ b/mysql-test/t/func_time.test @@ -1654,6 +1654,34 @@ INSERT INTO t1 VALUES (1e30),(-1e30); SELECT MAKETIME(a,0,0) FROM t1; DROP TABLE t1; +--echo # +--echo # MDEV-17244 MAKETIME(900,0,0.111) returns a wrong result +--echo # + +SELECT MAKETIME(900,0,0); +SELECT MAKETIME(900,0,0.1); +SELECT MAKETIME(900,0,0.11); +SELECT MAKETIME(900,0,0.111); +SELECT MAKETIME(900,0,0.1111); +SELECT MAKETIME(900,0,0.11111); +SELECT MAKETIME(900,0,0.111111); +SELECT MAKETIME(900,0,0.1111111); +SELECT MAKETIME(900,0,0.11111111); +SELECT MAKETIME(900,0,0.111111111); +SELECT MAKETIME(900,0,EXP(1)); + +SELECT MAKETIME(-900,0,0); +SELECT MAKETIME(-900,0,0.1); +SELECT MAKETIME(-900,0,0.11); +SELECT MAKETIME(-900,0,0.111); +SELECT MAKETIME(-900,0,0.1111); +SELECT MAKETIME(-900,0,0.11111); +SELECT MAKETIME(-900,0,0.111111); +SELECT MAKETIME(-900,0,0.1111111); +SELECT MAKETIME(-900,0,0.11111111); +SELECT MAKETIME(-900,0,0.111111111); +SELECT MAKETIME(-900,0,EXP(1)); + --echo # --echo # End of 5.5 tests diff --git a/sql/item_timefunc.cc b/sql/item_timefunc.cc index cc03cc004bd..2dc704f6873 100644 --- a/sql/item_timefunc.cc +++ b/sql/item_timefunc.cc @@ -2765,9 +2765,10 @@ bool Item_func_maketime::get_date(MYSQL_TIME *ltime, ulonglong fuzzy_date) } else { - ltime->hour= TIME_MAX_HOUR; - ltime->minute= TIME_MAX_MINUTE; - ltime->second= TIME_MAX_SECOND; + // use check_time_range() to set ltime to the max value depending on dec + int unused; + ltime->hour= TIME_MAX_HOUR + 1; + check_time_range(ltime, decimals, &unused); char buf[28]; char *ptr= longlong10_to_str(hour.value(), buf, hour.is_unsigned() ? 10 : -10); int len = (int)(ptr - buf) + sprintf(ptr, ":%02u:%02u", (uint)minute, (uint)second); From 0fa35ddf1fbdadd5f1714dd3e9f93f6984508c3b Mon Sep 17 00:00:00 2001 From: Vladislav Vaintroub Date: Thu, 20 Sep 2018 14:08:57 +0100 Subject: [PATCH 126/148] Amend fix for MDEV-17236 Simplify, and make it work with system tablespace outside of innodb data home. Also, do not reread TRX_SYS page in endless loop, if it appears to be corrupted. Use finite number of attempts. --- extra/mariabackup/xtrabackup.cc | 30 ++++++++----------- .../mariabackup/absolute_ibdata_paths.opt | 2 +- 2 files changed, 14 insertions(+), 18 deletions(-) diff --git a/extra/mariabackup/xtrabackup.cc b/extra/mariabackup/xtrabackup.cc index a55a1e4fc0f..a67b51b5db3 100644 --- a/extra/mariabackup/xtrabackup.cc +++ b/extra/mariabackup/xtrabackup.cc @@ -3233,35 +3233,24 @@ the first slot rollback segments of TRX_SYS_PAGE_NO. @retval DB_SUCCESS if srv_undo_space_id assigned successfully. */ static dberr_t xb_assign_undo_space_start() { - ulint dirnamelen; - char name[1000]; + pfs_os_file_t file; byte* buf; byte* page; bool ret; dberr_t error = DB_SUCCESS; ulint space, page_no; + int n_retries = 5; if (srv_undo_tablespaces == 0) { return error; } - os_normalize_path(srv_data_home); - dirnamelen = strlen(srv_data_home); - memcpy(name, srv_data_home, dirnamelen); - - if (dirnamelen && name[dirnamelen - 1] != OS_PATH_SEPARATOR) { - name[dirnamelen++] = OS_PATH_SEPARATOR; - } - - snprintf(name + dirnamelen, (sizeof name) - dirnamelen, - "%s", srv_sys_space.first_datafile()->name()); - - file = os_file_create(0, name, OS_FILE_OPEN, - OS_FILE_NORMAL, OS_DATA_FILE, true, &ret); + file = os_file_create(0, srv_sys_space.first_datafile()->filepath(), + OS_FILE_OPEN, OS_FILE_NORMAL, OS_DATA_FILE, true, &ret); if (!ret) { - msg("mariabackup: Error in opening %s\n", name); + msg("mariabackup: Error in opening %s\n", srv_sys_space.first_datafile()->filepath()); return DB_ERROR; } @@ -3278,7 +3267,14 @@ retry: /* TRX_SYS page can't be compressed or encrypted. */ if (buf_page_is_corrupted(false, page, univ_page_size)) { - goto retry; + if (n_retries--) { + os_thread_sleep(1000); + goto retry; + } else { + msg("mariabackup: TRX_SYS page corrupted.\n"); + error = DB_ERROR; + goto func_exit; + } } /* 0th slot always points to system tablespace. diff --git a/mysql-test/suite/mariabackup/absolute_ibdata_paths.opt b/mysql-test/suite/mariabackup/absolute_ibdata_paths.opt index 52b6b743ac8..71996e09b18 100644 --- a/mysql-test/suite/mariabackup/absolute_ibdata_paths.opt +++ b/mysql-test/suite/mariabackup/absolute_ibdata_paths.opt @@ -1 +1 @@ ---innodb --innodb-data-home-dir= --innodb-data-file-path=$MYSQLTEST_VARDIR/tmp/absolute_path_ibdata1:3M;ibdata_second:1M:autoextend \ No newline at end of file +--innodb --innodb-data-home-dir= --innodb-data-file-path=$MYSQLTEST_VARDIR/tmp/absolute_path_ibdata1:3M;ibdata_second:1M:autoextend --innodb-undo-tablespaces=2 \ No newline at end of file From e07118946a82af60c7cc3804c321d3fd9a49f128 Mon Sep 17 00:00:00 2001 From: Alexander Barkov Date: Thu, 20 Sep 2018 17:11:36 +0400 Subject: [PATCH 127/148] MDEV-17250 Remove unused Item_copy_xxx --- sql/item.cc | 175 ---------------------------------------------------- sql/item.h | 90 --------------------------- 2 files changed, 265 deletions(-) diff --git a/sql/item.cc b/sql/item.cc index e1afc339cc2..d2e3b847f5c 100644 --- a/sql/item.cc +++ b/sql/item.cc @@ -4169,31 +4169,6 @@ void Item_param::make_field(Send_field *field) field->type= m_out_param_info->type; } -/**************************************************************************** - Item_copy -****************************************************************************/ - -Item_copy *Item_copy::create (Item *item) -{ - switch (item->result_type()) - { - case STRING_RESULT: - return new Item_copy_string (item); - case REAL_RESULT: - return new Item_copy_float (item); - case INT_RESULT: - return item->unsigned_flag ? - new Item_copy_uint (item) : new Item_copy_int (item); - case DECIMAL_RESULT: - return new Item_copy_decimal (item); - case TIME_RESULT: - case ROW_RESULT: - case IMPOSSIBLE_RESULT: - DBUG_ASSERT (0); - } - /* should not happen */ - return NULL; -} /**************************************************************************** Item_copy_string @@ -4251,156 +4226,6 @@ my_decimal *Item_copy_string::val_decimal(my_decimal *decimal_value) } -/**************************************************************************** - Item_copy_int -****************************************************************************/ - -void Item_copy_int::copy() -{ - cached_value= item->val_int(); - null_value=item->null_value; -} - -static int save_int_value_in_field (Field *, longlong, bool, bool); - -int Item_copy_int::save_in_field(Field *field, bool no_conversions) -{ - return save_int_value_in_field(field, cached_value, - null_value, unsigned_flag); -} - - -String *Item_copy_int::val_str(String *str) -{ - if (null_value) - return (String *) 0; - - str->set(cached_value, &my_charset_bin); - return str; -} - - -my_decimal *Item_copy_int::val_decimal(my_decimal *decimal_value) -{ - if (null_value) - return (my_decimal *) 0; - - int2my_decimal(E_DEC_FATAL_ERROR, cached_value, unsigned_flag, decimal_value); - return decimal_value; -} - - -/**************************************************************************** - Item_copy_uint -****************************************************************************/ - -String *Item_copy_uint::val_str(String *str) -{ - if (null_value) - return (String *) 0; - - str->set((ulonglong) cached_value, &my_charset_bin); - return str; -} - - -/**************************************************************************** - Item_copy_float -****************************************************************************/ - -String *Item_copy_float::val_str(String *str) -{ - if (null_value) - return (String *) 0; - else - { - double nr= val_real(); - str->set_real(nr,decimals, &my_charset_bin); - return str; - } -} - - -my_decimal *Item_copy_float::val_decimal(my_decimal *decimal_value) -{ - if (null_value) - return (my_decimal *) 0; - else - { - double nr= val_real(); - double2my_decimal(E_DEC_FATAL_ERROR, nr, decimal_value); - return decimal_value; - } -} - - -int Item_copy_float::save_in_field(Field *field, bool no_conversions) -{ - if (null_value) - return set_field_to_null(field); - field->set_notnull(); - return field->store(cached_value); -} - - -/**************************************************************************** - Item_copy_decimal -****************************************************************************/ - -int Item_copy_decimal::save_in_field(Field *field, bool no_conversions) -{ - if (null_value) - return set_field_to_null(field); - field->set_notnull(); - return field->store_decimal(&cached_value); -} - - -String *Item_copy_decimal::val_str(String *result) -{ - if (null_value) - return (String *) 0; - result->set_charset(&my_charset_bin); - my_decimal2string(E_DEC_FATAL_ERROR, &cached_value, 0, 0, 0, result); - return result; -} - - -double Item_copy_decimal::val_real() -{ - if (null_value) - return 0.0; - else - { - double result; - my_decimal2double(E_DEC_FATAL_ERROR, &cached_value, &result); - return result; - } -} - - -longlong Item_copy_decimal::val_int() -{ - if (null_value) - return LL(0); - else - { - longlong result; - my_decimal2int(E_DEC_FATAL_ERROR, &cached_value, unsigned_flag, &result); - return result; - } -} - - -void Item_copy_decimal::copy() -{ - my_decimal *nr= item->val_decimal(&cached_value); - if (nr && nr != &cached_value) - my_decimal2decimal (nr, &cached_value); - null_value= item->null_value; -} - - /* Functions to convert item to field (for send_result_set_metadata) */ diff --git a/sql/item.h b/sql/item.h index 1bded7377ee..dbcf6bc6d08 100644 --- a/sql/item.h +++ b/sql/item.h @@ -3664,13 +3664,6 @@ protected: } public: - /** - Factory method to create the appropriate subclass dependent on the type of - the original item. - - @param item the original item. - */ - static Item_copy *create (Item *item); /** Update the cache with the value of the original item @@ -3732,89 +3725,6 @@ public: }; -class Item_copy_int : public Item_copy -{ -protected: - longlong cached_value; -public: - Item_copy_int (Item *i) : Item_copy(i) {} - int save_in_field(Field *field, bool no_conversions); - - virtual String *val_str(String*); - virtual my_decimal *val_decimal(my_decimal *); - virtual double val_real() - { - return null_value ? 0.0 : (double) cached_value; - } - virtual longlong val_int() - { - return null_value ? LL(0) : cached_value; - } - virtual void copy(); -}; - - -class Item_copy_uint : public Item_copy_int -{ -public: - Item_copy_uint (Item *item) : Item_copy_int(item) - { - unsigned_flag= 1; - } - - String *val_str(String*); - double val_real() - { - return null_value ? 0.0 : (double) (ulonglong) cached_value; - } -}; - - -class Item_copy_float : public Item_copy -{ -protected: - double cached_value; -public: - Item_copy_float (Item *i) : Item_copy(i) {} - int save_in_field(Field *field, bool no_conversions); - - String *val_str(String*); - my_decimal *val_decimal(my_decimal *); - double val_real() - { - return null_value ? 0.0 : cached_value; - } - longlong val_int() - { - return (longlong) rint(val_real()); - } - void copy() - { - cached_value= item->val_real(); - null_value= item->null_value; - } -}; - - -class Item_copy_decimal : public Item_copy -{ -protected: - my_decimal cached_value; -public: - Item_copy_decimal (Item *i) : Item_copy(i) {} - int save_in_field(Field *field, bool no_conversions); - - String *val_str(String*); - my_decimal *val_decimal(my_decimal *) - { - return null_value ? NULL: &cached_value; - } - double val_real(); - longlong val_int(); - void copy(); -}; - - /* Cached_item_XXX objects are not exactly caches. They do the following: From c139dc6d380836dc330c7b71c6b9031e7dbd021f Mon Sep 17 00:00:00 2001 From: Vladislav Vaintroub Date: Thu, 20 Sep 2018 19:27:59 +0100 Subject: [PATCH 128/148] Windows : Fix application verifier errors. Make different threads that are running data_copy_thread_func() use the same pthread_mutex for locking (not the copies of the same pthread_mutex_t). --- extra/mariabackup/backup_copy.cc | 8 ++++---- extra/mariabackup/xtrabackup.cc | 8 ++++---- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/extra/mariabackup/backup_copy.cc b/extra/mariabackup/backup_copy.cc index 3a5a5bc5a2a..6d1c4295852 100644 --- a/extra/mariabackup/backup_copy.cc +++ b/extra/mariabackup/backup_copy.cc @@ -124,7 +124,7 @@ struct datadir_thread_ctxt_t { datadir_iter_t *it; uint n_thread; uint *count; - pthread_mutex_t count_mutex; + pthread_mutex_t* count_mutex; os_thread_id_t id; bool ret; }; @@ -965,7 +965,7 @@ run_data_threads(datadir_iter_t *it, os_thread_func_t func, uint n) data_threads[i].it = it; data_threads[i].n_thread = i + 1; data_threads[i].count = &count; - data_threads[i].count_mutex = count_mutex; + data_threads[i].count_mutex = &count_mutex; os_thread_create(func, data_threads + i, &data_threads[i].id); } @@ -2042,9 +2042,9 @@ cleanup: datadir_node_free(&node); - pthread_mutex_lock(&ctxt->count_mutex); + pthread_mutex_lock(ctxt->count_mutex); --(*ctxt->count); - pthread_mutex_unlock(&ctxt->count_mutex); + pthread_mutex_unlock(ctxt->count_mutex); ctxt->ret = ret; diff --git a/extra/mariabackup/xtrabackup.cc b/extra/mariabackup/xtrabackup.cc index a67b51b5db3..a5a4553214a 100644 --- a/extra/mariabackup/xtrabackup.cc +++ b/extra/mariabackup/xtrabackup.cc @@ -696,7 +696,7 @@ typedef struct { datafiles_iter_t *it; uint num; uint *count; - pthread_mutex_t count_mutex; + pthread_mutex_t* count_mutex; os_thread_id_t id; } data_thread_ctxt_t; @@ -2874,9 +2874,9 @@ data_copy_thread_func( } - pthread_mutex_lock(&ctxt->count_mutex); + pthread_mutex_lock(ctxt->count_mutex); (*ctxt->count)--; - pthread_mutex_unlock(&ctxt->count_mutex); + pthread_mutex_unlock(ctxt->count_mutex); my_thread_end(); os_thread_exit(); @@ -4338,7 +4338,7 @@ fail_before_log_copying_thread_start: data_threads[i].it = it; data_threads[i].num = i+1; data_threads[i].count = &count; - data_threads[i].count_mutex = count_mutex; + data_threads[i].count_mutex = &count_mutex; os_thread_create(data_copy_thread_func, data_threads + i, &data_threads[i].id); } From d533f6d58b0e4e4dace14227c6eb53e3c0b3232d Mon Sep 17 00:00:00 2001 From: Alexander Barkov Date: Fri, 21 Sep 2018 09:32:17 +0400 Subject: [PATCH 129/148] After-merge cleanup: adjust the test to work in 10.0 For the original test in 10.0 it was not really important if find_user_wild() or find_user_exact() is used in sp_grant_privileges(). sp-security.test passed with either of them. Fixing the test so it reliably fails with find_user_wild() and pass with find_user_exact(). --- mysql-test/r/sp-security.result | 4 +++- mysql-test/t/sp-security.test | 11 ++++++++++- 2 files changed, 13 insertions(+), 2 deletions(-) diff --git a/mysql-test/r/sp-security.result b/mysql-test/r/sp-security.result index a4e3505cf0f..4125762e622 100644 --- a/mysql-test/r/sp-security.result +++ b/mysql-test/r/sp-security.result @@ -618,7 +618,9 @@ SELECT 1 latin1 latin1_swedish_ci latin1_swedish_ci DROP USER user2@localhost; DROP DATABASE db1; create user foo@local_ost; -create user foo@`local\_ost` identified by 'nevermore'; +create user foo@`local\_ost`; +update mysql.user set plugin='foobar' where host='local\\_ost'; +flush privileges; create database foodb; grant create routine on foodb.* to foo@local_ost; select user(), current_user(); diff --git a/mysql-test/t/sp-security.test b/mysql-test/t/sp-security.test index 0f9243f30bb..53dc4f8c7ac 100644 --- a/mysql-test/t/sp-security.test +++ b/mysql-test/t/sp-security.test @@ -999,7 +999,16 @@ DROP DATABASE db1; # Bug#27407480: AUTOMATIC_SP_PRIVILEGES REQUIRES NEED THE INSERT PRIVILEGES FOR MYSQL.USER TABLE # create user foo@local_ost; -create user foo@`local\_ost` identified by 'nevermore'; +# +# Create a user with an authentification plugin 'foobar'. +# Instead of using a normal "CREATE USER IDENTIFIED VIA " +# we do CREATE (without VIA) followed by UPDATE and FLUSH. +# This is to avoid installing a real plugin and thus avoid the test dependency. +# We won't login under this user in the below test, so this is fine. +# +create user foo@`local\_ost`; +update mysql.user set plugin='foobar' where host='local\\_ost'; +flush privileges; create database foodb; grant create routine on foodb.* to foo@local_ost; connect con1,localhost,foo; From 5b25dc6fa4bf63d783e8f8db73abc22ab111143b Mon Sep 17 00:00:00 2001 From: Eugene Kosov Date: Wed, 19 Sep 2018 22:01:00 +0300 Subject: [PATCH 130/148] MDEV-17248 Improve ASAN memory pool instrumentation alloc_root(): unpoison only requested amount of bytes instead of a possible bigger aligned-sized buffer. --- include/my_valgrind.h | 4 ++-- mysys/my_alloc.c | 3 ++- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/include/my_valgrind.h b/include/my_valgrind.h index 8dde079b976..5d08a271d4a 100644 --- a/include/my_valgrind.h +++ b/include/my_valgrind.h @@ -49,9 +49,9 @@ https://github.com/google/sanitizers/wiki/AddressSanitizerManualPoisoning */ #endif /* HAVE_VALGRIND */ #ifndef DBUG_OFF -#define TRASH_FILL(A,B,C) do { MEM_UNDEFINED(A,B); memset(A,C,B); } while(0) +#define TRASH_FILL(A,B,C) do { const size_t trash_tmp= (B); MEM_UNDEFINED(A, trash_tmp); memset(A, C, trash_tmp); } while (0) #else -#define TRASH_FILL(A,B,C) do { MEM_UNDEFINED(A,B); } while(0) +#define TRASH_FILL(A,B,C) do { const size_t trash_tmp __attribute__((unused))= (B); MEM_UNDEFINED(A,trash_tmp); } while (0) #endif #define TRASH_ALLOC(A,B) do { TRASH_FILL(A,B,0xA5); MEM_UNDEFINED(A,B); } while(0) #define TRASH_FREE(A,B) do { TRASH_FILL(A,B,0x8F); MEM_NOACCESS(A,B); } while(0) diff --git a/mysys/my_alloc.c b/mysys/my_alloc.c index 24e95d2c69c..e727f46be6d 100644 --- a/mysys/my_alloc.c +++ b/mysys/my_alloc.c @@ -184,6 +184,7 @@ void *alloc_root(MEM_ROOT *mem_root, size_t length) uchar* point; reg1 USED_MEM *next= 0; reg2 USED_MEM **prev; + size_t original_length = length; DBUG_ENTER("alloc_root"); DBUG_PRINT("enter",("root: 0x%lx", (long) mem_root)); DBUG_ASSERT(alloc_root_inited(mem_root)); @@ -241,7 +242,7 @@ void *alloc_root(MEM_ROOT *mem_root, size_t length) mem_root->used= next; mem_root->first_block_usage= 0; } - TRASH_ALLOC(point, length); + TRASH_ALLOC(point, original_length); DBUG_PRINT("exit",("ptr: 0x%lx", (ulong) point)); DBUG_RETURN((void*) point); #endif From 82675100d1ae015b21fc681c0c60461a6f3762a9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marko=20M=C3=A4kel=C3=A4?= Date: Fri, 21 Sep 2018 10:24:15 +0300 Subject: [PATCH 131/148] Remove an unused variable --- sql/wsrep_sst.cc | 2 -- 1 file changed, 2 deletions(-) diff --git a/sql/wsrep_sst.cc b/sql/wsrep_sst.cc index 3790c81d398..1f8c9765c16 100644 --- a/sql/wsrep_sst.cc +++ b/sql/wsrep_sst.cc @@ -181,8 +181,6 @@ bool wsrep_sst_donor_update (sys_var *self, THD* thd, enum_var_type type) return 0; } -static wsrep_uuid_t cluster_uuid = WSREP_UUID_UNDEFINED; - bool wsrep_before_SE() { return (wsrep_provider != NULL From 8b6b2c3ea16ab2a3ad2591e49a5e9eea9e9b2bfc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marko=20M=C3=A4kel=C3=A4?= Date: Fri, 21 Sep 2018 11:18:59 +0300 Subject: [PATCH 132/148] Fix mariabackup leaks (except my_load_defaults) --- extra/mariabackup/backup_copy.cc | 33 +++++++++++++++---------------- extra/mariabackup/backup_mysql.cc | 1 + extra/mariabackup/xtrabackup.cc | 15 +++++++++----- 3 files changed, 27 insertions(+), 22 deletions(-) diff --git a/extra/mariabackup/backup_copy.cc b/extra/mariabackup/backup_copy.cc index 6d1c4295852..f4ed8726802 100644 --- a/extra/mariabackup/backup_copy.cc +++ b/extra/mariabackup/backup_copy.cc @@ -1351,7 +1351,8 @@ backup_files(const char *from, bool prep_mode) if (rsync_tmpfile == NULL) { msg("Error: can't open file %s\n", rsync_tmpfile_name); - return(false); + ret = false; + goto out; } while (fgets(path, sizeof(path), rsync_tmpfile)) { @@ -1390,24 +1391,22 @@ out: void backup_fix_ddl(void); -#define LSN_PREFIX_IN_SHOW_STATUS "\nLog sequence number " -static lsn_t get_current_lsn(MYSQL *connection) { - MYSQL_RES *res = xb_mysql_query(connection, "SHOW ENGINE INNODB STATUS", true, false); - if (!res) - return 0; - MYSQL_ROW row = mysql_fetch_row(res); - DBUG_ASSERT(row); - if (row) { - const char *p = strstr(row[2],LSN_PREFIX_IN_SHOW_STATUS); - DBUG_ASSERT(p); - if (p) - { - p += sizeof(LSN_PREFIX_IN_SHOW_STATUS) - 1; - return (lsn_t)strtoll(p, NULL, 10); +static lsn_t get_current_lsn(MYSQL *connection) +{ + static const char lsn_prefix[] = "\nLog sequence number "; + lsn_t lsn = 0; + if (MYSQL_RES *res = xb_mysql_query(connection, + "SHOW ENGINE INNODB STATUS", + true, false)) { + if (MYSQL_ROW row = mysql_fetch_row(res)) { + if (const char *p = strstr(row[2], lsn_prefix)) { + p += sizeof lsn_prefix - 1; + lsn = lsn_t(strtoll(p, NULL, 10)); + } } + mysql_free_result(res); } - mysql_free_result(res); - return 0; + return lsn; } lsn_t server_lsn_after_lock; diff --git a/extra/mariabackup/backup_mysql.cc b/extra/mariabackup/backup_mysql.cc index efa21965965..aa9200f42fd 100644 --- a/extra/mariabackup/backup_mysql.cc +++ b/extra/mariabackup/backup_mysql.cc @@ -916,6 +916,7 @@ DECLARE_THREAD(kill_mdl_waiters_thread(void *)) exit(EXIT_FAILURE); } } + mysql_free_result(result); } mysql_close(mysql); diff --git a/extra/mariabackup/xtrabackup.cc b/extra/mariabackup/xtrabackup.cc index a5a4553214a..b046f70510b 100644 --- a/extra/mariabackup/xtrabackup.cc +++ b/extra/mariabackup/xtrabackup.cc @@ -523,7 +523,9 @@ static os_event_t dbug_start_query_thread( mysql_thread_id(par->con), wait_state); for (;;) { MYSQL_RES *result = xb_mysql_query(mysql_connection,q, true, true); - if (mysql_fetch_row(result)) { + bool exists = mysql_fetch_row(result) != NULL; + mysql_free_result(result); + if (exists) { goto end; } msg_ts("Waiting for query '%s' on connection %lu to " @@ -578,7 +580,9 @@ std::string filename_to_spacename(const byte *filename, size_t len) char *db = strrchr(f, '/'); ut_a(db); *table = '/'; - return std::string(db+1); + std::string s(db+1); + free(f); + return s; } /** Report an operation to create, delete, or rename a file during backup. @@ -4164,7 +4168,6 @@ fail: /* start back ground thread to copy newer log */ os_thread_id_t log_copying_thread_id; - datafiles_iter_t *it; /* get current checkpoint_lsn */ /* Look for the latest checkpoint from any of the log groups */ @@ -4322,7 +4325,7 @@ fail_before_log_copying_thread_start: "Waiting for table metadata lock", 1, ER_QUERY_INTERRUPTED);); } - it = datafiles_iter_new(fil_system); + datafiles_iter_t *it = datafiles_iter_new(fil_system); if (it == NULL) { msg("mariabackup: Error: datafiles_iter_new() failed.\n"); goto fail; @@ -4531,7 +4534,7 @@ void backup_fix_ddl(void) fil_space_close(n->space->name); fil_space_free(n->space->id, false); } - + datafiles_iter_free(it); for (std::set::iterator iter = new_tables.begin(); iter != new_tables.end(); iter++) { @@ -4578,6 +4581,8 @@ void backup_fix_ddl(void) #endif xtrabackup_copy_datafile(node, 0, dest_name.c_str()/*, do_full_copy ? ULONGLONG_MAX:UNIV_PAGE_SIZE */); } + + datafiles_iter_free(it); } /* ================= prepare ================= */ From 5c83305c4c395cf79f19c6fc63e8d566e3815598 Mon Sep 17 00:00:00 2001 From: Sergei Golubchik Date: Sat, 8 Sep 2018 19:45:39 +0200 Subject: [PATCH 133/148] RPM: generate per-plugin.cnf files where git will ignore them --- cmake/plugin.cmake | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmake/plugin.cmake b/cmake/plugin.cmake index 70b252c16b5..26acf442620 100644 --- a/cmake/plugin.cmake +++ b/cmake/plugin.cmake @@ -238,7 +238,7 @@ MACRO(MYSQL_ADD_PLUGIN) SET(CPACK_RPM_${ARG_COMPONENT}_USER_FILELIST ${ignored} PARENT_SCOPE) IF(NOT ARG_CLIENT AND UNIX) IF (NOT ARG_CONFIG) - SET(ARG_CONFIG "${CMAKE_CURRENT_BINARY_DIR}/${target}.cnf") + SET(ARG_CONFIG "${CMAKE_CURRENT_BINARY_DIR}/CMakeFiles/${target}.cnf") FILE(WRITE ${ARG_CONFIG} "[mariadb]\nplugin-load-add=${ARG_MODULE_OUTPUT_NAME}.so\n") ENDIF() INSTALL(FILES ${ARG_CONFIG} COMPONENT ${ARG_COMPONENT} DESTINATION ${INSTALL_SYSCONF2DIR}) From 21d157abaaffe41382ccb0524d8f255f79bec8b1 Mon Sep 17 00:00:00 2001 From: Sergei Golubchik Date: Sat, 8 Sep 2018 19:42:53 +0200 Subject: [PATCH 134/148] MDEV-14560 Extra engines enabled through additional config are not loaded on first installation RPM solution: Make all server plugins to restart the server when installed. To avoid multiple server restarts, do it only once in posttrans scriptlet. Add support for CPACK_RPM__POST_TRANS_SCRIPT_FILE --- cmake/CPackRPM.cmake | 34 ++++++++++++++++++++++++++- cmake/cpack_rpm.cmake | 2 ++ cmake/plugin.cmake | 2 ++ support-files/rpm/plugin-postin.sh | 2 ++ support-files/rpm/server-posttrans.sh | 11 +++++++++ support-files/rpm/server-postun.sh | 8 ++----- 6 files changed, 52 insertions(+), 7 deletions(-) create mode 100644 support-files/rpm/plugin-postin.sh create mode 100644 support-files/rpm/server-posttrans.sh diff --git a/cmake/CPackRPM.cmake b/cmake/CPackRPM.cmake index 3b57decc5bb..326013f06b3 100644 --- a/cmake/CPackRPM.cmake +++ b/cmake/CPackRPM.cmake @@ -2,6 +2,11 @@ # Wrapper for CPackRPM.cmake # +# +# Support for per-component LICENSE and VENDOR +# +# per component values, if present, are copied into global CPACK_RPM_PACKAGE_xxx +# macro(set_from_component WHAT) set(orig_CPACK_RPM_PACKAGE_${WHAT} ${CPACK_RPM_PACKAGE_${WHAT}}) if(CPACK_RPM_${CPACK_RPM_PACKAGE_COMPONENT}_PACKAGE_${WHAT}) @@ -15,6 +20,33 @@ endmacro() set_from_component(LICENSE) set_from_component(VENDOR) +# +# Support for the %posttrans scriptlet +# +# the scriptlet, if present, is appended (together with the %posttrans tag) +# to the pre-uninstall scriptlet +# +set(base_time "PRE") +set(base_type "UNINSTALL") +set(base_var CPACK_RPM_${CPACK_RPM_PACKAGE_COMPONENT}_${base_time}_${base_type}_SCRIPT_FILE) +set(acc) + +macro(read_one_file time_ type_ tag_) + set(var CPACK_RPM_${CPACK_RPM_PACKAGE_COMPONENT}_${time_}_${type_}_SCRIPT_FILE) + if (${var}) + file(READ ${${var}} content) + set(acc "${tag_}\n${content}\n\n${acc}") + endif() +endmacro() + +read_one_file("POST" "TRANS" "%posttrans") +if (acc) + set(orig_${base_var} ${${base_var}}) + read_one_file(${base_time} ${base_type} "") + set(${base_var} ${CPACK_TOPLEVEL_DIRECTORY}/SPECS/${CPACK_RPM_PACKAGE_COMPONENT}_${base_time}_${base_type}.scriptlet) + file(WRITE ${${base_var}} "${acc}") +endif() + # load the original CPackRPM.cmake set(orig_CMAKE_MODULE_PATH ${CMAKE_MODULE_PATH}) unset(CMAKE_MODULE_PATH) @@ -23,10 +55,10 @@ set(CMAKE_MODULE_PATH ${orig_CMAKE_MODULE_PATH}) restore(LICENSE) restore(VENDOR) +set(${base_var} ${orig_${base_var}}) # per-component cleanup foreach(_RPM_SPEC_HEADER URL REQUIRES SUGGESTS PROVIDES OBSOLETES PREFIX CONFLICTS AUTOPROV AUTOREQ AUTOREQPROV) unset(TMP_RPM_${_RPM_SPEC_HEADER}) unset(CPACK_RPM_PACKAGE_${_RPM_SPEC_HEADER}_TMP) endforeach() - diff --git a/cmake/cpack_rpm.cmake b/cmake/cpack_rpm.cmake index 5b8aa36ff0d..21eb2632a50 100644 --- a/cmake/cpack_rpm.cmake +++ b/cmake/cpack_rpm.cmake @@ -81,6 +81,7 @@ SET(CPACK_RPM_SPEC_MORE_DEFINE " %define _bindir ${INSTALL_BINDIRABS} %define _sbindir ${INSTALL_SBINDIRABS} %define _sysconfdir ${INSTALL_SYSCONFDIR} +%define restart_flag %{_localstatedir}/lib/rpm-state/mariadb-restart ") # this creative hack is described here: http://www.cmake.org/pipermail/cmake/2012-January/048416.html @@ -179,6 +180,7 @@ SET(CPACK_RPM_server_PRE_INSTALL_SCRIPT_FILE ${CMAKE_SOURCE_DIR}/support-files/r SET(CPACK_RPM_server_PRE_UNINSTALL_SCRIPT_FILE ${CMAKE_SOURCE_DIR}/support-files/rpm/server-preun.sh) SET(CPACK_RPM_server_POST_INSTALL_SCRIPT_FILE ${CMAKE_SOURCE_DIR}/support-files/rpm/server-postin.sh) SET(CPACK_RPM_server_POST_UNINSTALL_SCRIPT_FILE ${CMAKE_SOURCE_DIR}/support-files/rpm/server-postun.sh) +SET(CPACK_RPM_server_POST_TRANS_SCRIPT_FILE ${CMAKE_SOURCE_DIR}/support-files/rpm/server-posttrans.sh) SET(CPACK_RPM_shared_POST_INSTALL_SCRIPT_FILE ${CMAKE_SOURCE_DIR}/support-files/rpm/shared-post.sh) SET(CPACK_RPM_shared_POST_UNINSTALL_SCRIPT_FILE ${CMAKE_SOURCE_DIR}/support-files/rpm/shared-post.sh) SET(CPACK_RPM_compat_POST_INSTALL_SCRIPT_FILE ${CMAKE_SOURCE_DIR}/support-files/rpm/shared-post.sh) diff --git a/cmake/plugin.cmake b/cmake/plugin.cmake index 26acf442620..9b7af6065e2 100644 --- a/cmake/plugin.cmake +++ b/cmake/plugin.cmake @@ -243,6 +243,8 @@ MACRO(MYSQL_ADD_PLUGIN) ENDIF() INSTALL(FILES ${ARG_CONFIG} COMPONENT ${ARG_COMPONENT} DESTINATION ${INSTALL_SYSCONF2DIR}) SET(CPACK_RPM_${ARG_COMPONENT}_USER_FILELIST ${ignored} "%config(noreplace) ${INSTALL_SYSCONF2DIR}/*" PARENT_SCOPE) + SET(CPACK_RPM_${ARG_COMPONENT}_POST_INSTALL_SCRIPT_FILE ${CMAKE_SOURCE_DIR}/support-files/rpm/plugin-postin.sh PARENT_SCOPE) + SET(CPACK_RPM_${ARG_COMPONENT}_POST_TRANS_SCRIPT_FILE ${CMAKE_SOURCE_DIR}/support-files/rpm/server-posttrans.sh PARENT_SCOPE) ENDIF() ENDIF() ELSE() diff --git a/support-files/rpm/plugin-postin.sh b/support-files/rpm/plugin-postin.sh new file mode 100644 index 00000000000..6be31a35f8e --- /dev/null +++ b/support-files/rpm/plugin-postin.sh @@ -0,0 +1,2 @@ +# request the server restart +echo > %{restart_flag} diff --git a/support-files/rpm/server-posttrans.sh b/support-files/rpm/server-posttrans.sh new file mode 100644 index 00000000000..0d242596185 --- /dev/null +++ b/support-files/rpm/server-posttrans.sh @@ -0,0 +1,11 @@ +if [ -r %{restart_flag} ] ; then + rm %{restart_flag} + if [ -x /usr/bin/systemctl ] ; then + /usr/bin/systemctl daemon-reload > /dev/null 2>&1 + fi + + # only restart the server if it was alredy running + if %{_sysconfdir}/init.d/mysql status > /dev/null 2>&1; then + %{_sysconfdir}/init.d/mysql restart + fi +fi diff --git a/support-files/rpm/server-postun.sh b/support-files/rpm/server-postun.sh index 412c6f4c67b..b1aa0ea4393 100644 --- a/support-files/rpm/server-postun.sh +++ b/support-files/rpm/server-postun.sh @@ -1,10 +1,6 @@ if [ $1 -ge 1 ]; then - if [ -x %{_sysconfdir}/init.d/mysql ] ; then - # only restart the server if it was alredy running - if %{_sysconfdir}/init.d/mysql status > /dev/null 2>&1; then - %{_sysconfdir}/init.d/mysql restart - fi - fi + # request the server restart + echo > %{restart_flag} fi if [ $1 = 0 ] ; then From 1ebec10375bb9c386956f4b8d7c5b03d9d9d1f69 Mon Sep 17 00:00:00 2001 From: Sergei Golubchik Date: Tue, 11 Sep 2018 10:28:14 +0200 Subject: [PATCH 135/148] InnoDB: fix compilation with -DDBUG_OFF --- storage/innobase/row/row0ins.cc | 14 ++------------ 1 file changed, 2 insertions(+), 12 deletions(-) diff --git a/storage/innobase/row/row0ins.cc b/storage/innobase/row/row0ins.cc index 66948b83cda..f087de7cefd 100644 --- a/storage/innobase/row/row0ins.cc +++ b/storage/innobase/row/row0ins.cc @@ -2448,10 +2448,8 @@ row_ins_index_entry_big_rec( const big_rec_t* big_rec, ulint* offsets, mem_heap_t** heap, -#ifndef DBUG_OFF - const void* thd, -#endif /* DBUG_OFF */ - dict_index_t* index) + dict_index_t* index, + const void* thd __attribute__((unused))) { mtr_t mtr; btr_pcur_t pcur; @@ -2492,14 +2490,6 @@ row_ins_index_entry_big_rec( return(error); } -#ifdef DBUG_OFF -# define row_ins_index_entry_big_rec(e,big,ofs,heap,index,thd) \ - row_ins_index_entry_big_rec(e,big,ofs,heap,index) -#else /* DBUG_OFF */ -# define row_ins_index_entry_big_rec(e,big,ofs,heap,index,thd) \ - row_ins_index_entry_big_rec(e,big,ofs,heap,thd,index) -#endif /* DBUG_OFF */ - /***************************************************************//** Tries to insert an entry into a clustered index, ignoring foreign key constraints. If a record with the same unique key is found, the other From b514a5f9e887911d5d5b46c91f4cfbe87c346289 Mon Sep 17 00:00:00 2001 From: Alexander Barkov Date: Fri, 21 Sep 2018 18:03:23 +0400 Subject: [PATCH 136/148] A cleanup for MDEV-17249 MAKETIME(-1e50,0,0) returns a wrong result Unary minus operation for the smallest possible signed long long value (LONLONG_MIN) is undefined in C++. Because of this, func_time.test failed on ppc64 buildbot machines. Fixing the code to avod using undefined operations. This is fix is similar to "MDEV-7973 bigint fail with gcc 5.0" --- sql/sql_type_int.h | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/sql/sql_type_int.h b/sql/sql_type_int.h index 055790ba431..1eda5651df5 100644 --- a/sql/sql_type_int.h +++ b/sql/sql_type_int.h @@ -33,7 +33,11 @@ public: bool neg() const { return m_value < 0 && !m_unsigned; } ulonglong abs() const { - return neg() ? (ulonglong) -m_value : (ulonglong) m_value; + if (m_unsigned) + return (ulonglong) m_value; + if (m_value == LONGLONG_MIN) // avoid undefined behavior + return ((ulonglong) LONGLONG_MAX) + 1; + return m_value < 0 ? -m_value : m_value; } }; From fc70f21e0a874a535cd640695a60ecc76fb9aef2 Mon Sep 17 00:00:00 2001 From: Alexander Barkov Date: Fri, 21 Sep 2018 18:04:56 +0400 Subject: [PATCH 137/148] Fixing the comment not to mention the removed class Item_copy_int. --- sql/item.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sql/item.h b/sql/item.h index dbcf6bc6d08..dacac2d725e 100644 --- a/sql/item.h +++ b/sql/item.h @@ -3608,7 +3608,7 @@ public: Base class to implement typed value caching Item classes Item_copy_ classes are very similar to the corresponding Item_ - classes (e.g. Item_copy_int is similar to Item_int) but they add + classes (e.g. Item_copy_string is similar to Item_string) but they add the following additional functionality to Item_ : 1. Nullability 2. Possibility to store the value not only on instantiation time, From e4b466aa3dcb4f4c87368e61ff5a790932ff5326 Mon Sep 17 00:00:00 2001 From: Sergei Golubchik Date: Fri, 21 Sep 2018 19:56:55 +0200 Subject: [PATCH 138/148] MDEV-16792 Assertion `m_status == DA_ERROR' failed in Diagnostics_area::sql_errno or wrong result upon SHOW TABLE STATUS after adding partition under ANSI_QUOTES if opening a table fails with a syntax error, the error shouldn't be suppressed completely as if it didn't happen at all. --- mysql-test/suite/parts/r/show_create.result | 12 ++++++++++++ mysql-test/suite/parts/t/show_create.test | 10 ++++++++++ sql/sql_show.cc | 4 +--- 3 files changed, 23 insertions(+), 3 deletions(-) diff --git a/mysql-test/suite/parts/r/show_create.result b/mysql-test/suite/parts/r/show_create.result index 79ac61d180d..596233fdf8b 100644 --- a/mysql-test/suite/parts/r/show_create.result +++ b/mysql-test/suite/parts/r/show_create.result @@ -103,3 +103,15 @@ t_partition CREATE TABLE `t_partition` ( PARTITION BY HASH (`f1`) PARTITIONS 2 drop table t_partition; +create table t1 (a int) partition by range(a) (partition p0 values less than (5)); +set sql_mode='ansi_quotes'; +alter table t1 add partition (partition p1 values less than (10)); +set sql_mode= default; +show table status; +Name Engine Version Row_format Rows Avg_row_length Data_length Max_data_length Index_length Data_free Auto_increment Create_time Update_time Check_time Collation Checksum Create_options Comment +t1 NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL You have an error in your SQL syntax; check the manual that corresponds to your MariaDB server version for the right syntax to use near '"p0" VALUES LESS THAN (5) ENGINE = MyISAM, + PARTITION "p1" VALUES LESS THAN (10)' at line 2 +Warnings: +Warning 1064 You have an error in your SQL syntax; check the manual that corresponds to your MariaDB server version for the right syntax to use near '"p0" VALUES LESS THAN (5) ENGINE = MyISAM, + PARTITION "p1" VALUES LESS THAN (10)' at line 2 +drop table t1; diff --git a/mysql-test/suite/parts/t/show_create.test b/mysql-test/suite/parts/t/show_create.test index 9c43b163790..4a54b6b41b3 100644 --- a/mysql-test/suite/parts/t/show_create.test +++ b/mysql-test/suite/parts/t/show_create.test @@ -39,3 +39,13 @@ create table t_partition (f1 int) partition by hash(f1) partitions 2; select * from t_partition as tbl; show create table t_partition; drop table t_partition; + +# +# MDEV-16792 Assertion `m_status == DA_ERROR' failed in Diagnostics_area::sql_errno or wrong result upon SHOW TABLE STATUS after adding partition under ANSI_QUOTES +# +create table t1 (a int) partition by range(a) (partition p0 values less than (5)); +set sql_mode='ansi_quotes'; +alter table t1 add partition (partition p1 values less than (10)); +set sql_mode= default; +show table status; +drop table t1; diff --git a/sql/sql_show.cc b/sql/sql_show.cc index 6af64b3bb11..fe5454f1051 100644 --- a/sql/sql_show.cc +++ b/sql/sql_show.cc @@ -4795,9 +4795,7 @@ public: const char* msg, Sql_condition ** cond_hdl) { - if (sql_errno == ER_PARSE_ERROR || - sql_errno == ER_TRG_NO_DEFINER || - sql_errno == ER_TRG_NO_CREATION_CTX) + if (sql_errno == ER_TRG_NO_DEFINER || sql_errno == ER_TRG_NO_CREATION_CTX) return true; if (*level != Sql_condition::WARN_LEVEL_ERROR) From e7d152293d23e0ea1ba49ce225ef605f34c5a303 Mon Sep 17 00:00:00 2001 From: Sergei Golubchik Date: Fri, 21 Sep 2018 20:16:36 +0200 Subject: [PATCH 139/148] MDEV-13089 identifier quoting in partitioning cover ALTER TABLE --- mysql-test/suite/parts/r/show_create.result | 6 +----- mysql-test/suite/parts/t/show_create.test | 1 + sql/ha_partition.cc | 6 ++---- sql/sql_partition.cc | 12 +++++++++++ sql/sql_partition.h | 4 ++++ sql/sql_table.cc | 24 +++++++-------------- 6 files changed, 28 insertions(+), 25 deletions(-) diff --git a/mysql-test/suite/parts/r/show_create.result b/mysql-test/suite/parts/r/show_create.result index 596233fdf8b..17f89161f5e 100644 --- a/mysql-test/suite/parts/r/show_create.result +++ b/mysql-test/suite/parts/r/show_create.result @@ -109,9 +109,5 @@ alter table t1 add partition (partition p1 values less than (10)); set sql_mode= default; show table status; Name Engine Version Row_format Rows Avg_row_length Data_length Max_data_length Index_length Data_free Auto_increment Create_time Update_time Check_time Collation Checksum Create_options Comment -t1 NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL You have an error in your SQL syntax; check the manual that corresponds to your MariaDB server version for the right syntax to use near '"p0" VALUES LESS THAN (5) ENGINE = MyISAM, - PARTITION "p1" VALUES LESS THAN (10)' at line 2 -Warnings: -Warning 1064 You have an error in your SQL syntax; check the manual that corresponds to your MariaDB server version for the right syntax to use near '"p0" VALUES LESS THAN (5) ENGINE = MyISAM, - PARTITION "p1" VALUES LESS THAN (10)' at line 2 +t1 MyISAM 10 Fixed 0 0 0 0 2048 0 NULL X X NULL latin1_swedish_ci NULL partitioned drop table t1; diff --git a/mysql-test/suite/parts/t/show_create.test b/mysql-test/suite/parts/t/show_create.test index 4a54b6b41b3..3f62ee11757 100644 --- a/mysql-test/suite/parts/t/show_create.test +++ b/mysql-test/suite/parts/t/show_create.test @@ -47,5 +47,6 @@ create table t1 (a int) partition by range(a) (partition p0 values less than (5) set sql_mode='ansi_quotes'; alter table t1 add partition (partition p1 values less than (10)); set sql_mode= default; +--replace_column 12 X 13 X show table status; drop table t1; diff --git a/sql/ha_partition.cc b/sql/ha_partition.cc index 43f936cf200..c05f55e457d 100644 --- a/sql/ha_partition.cc +++ b/sql/ha_partition.cc @@ -9092,11 +9092,9 @@ int ha_partition::check_for_upgrade(HA_CHECK_OPT *check_opt) } m_part_info->key_algorithm= partition_info::KEY_ALGORITHM_51; if (skip_generation || - !(part_buf= generate_partition_syntax(thd, m_part_info, + !(part_buf= generate_partition_syntax_for_frm(thd, m_part_info, &part_buf_len, - true, - NULL, - NULL)) || + NULL, NULL)) || print_admin_msg(thd, SQL_ADMIN_MSG_TEXT_SIZE + 1, "error", table_share->db.str, table->alias, diff --git a/sql/sql_partition.cc b/sql/sql_partition.cc index f5467e85f62..153c1e0ff2e 100644 --- a/sql/sql_partition.cc +++ b/sql/sql_partition.cc @@ -2219,6 +2219,18 @@ static int add_key_with_algorithm(String *str, partition_info *part_info) return err; } +char *generate_partition_syntax_for_frm(THD *thd, partition_info *part_info, + uint *buf_length, + HA_CREATE_INFO *create_info, + Alter_info *alter_info) +{ + sql_mode_t old_mode= thd->variables.sql_mode; + thd->variables.sql_mode &= ~MODE_ANSI_QUOTES; + char *res= generate_partition_syntax(thd, part_info, buf_length, + true, create_info, alter_info); + thd->variables.sql_mode= old_mode; + return res; +} /* Generate the partition syntax from the partition data structure. diff --git a/sql/sql_partition.h b/sql/sql_partition.h index acca6f61f01..d1eb208cbd1 100644 --- a/sql/sql_partition.h +++ b/sql/sql_partition.h @@ -272,6 +272,10 @@ char *generate_partition_syntax(THD *thd, partition_info *part_info, bool show_partition_options, HA_CREATE_INFO *create_info, Alter_info *alter_info); +char *generate_partition_syntax_for_frm(THD *thd, partition_info *part_info, + uint *buf_length, + HA_CREATE_INFO *create_info, + Alter_info *alter_info); bool verify_data_with_partition(TABLE *table, TABLE *part_table, uint32 part_id); bool compare_partition_options(HA_CREATE_INFO *table_create_info, diff --git a/sql/sql_table.cc b/sql/sql_table.cc index 4aed06e3590..02780e7d1e0 100644 --- a/sql/sql_table.cc +++ b/sql/sql_table.cc @@ -30,7 +30,6 @@ #include "strfunc.h" // find_type2, find_set #include "sql_truncate.h" // regenerate_locked_table #include "sql_partition.h" // mem_alloc_error, - // generate_partition_syntax, // partition_info // NOT_A_PARTITION_ID #include "sql_db.h" // load_db_opt_by_name @@ -1820,13 +1819,10 @@ bool mysql_write_frm(ALTER_PARTITION_PARAM_TYPE *lpt, uint flags) partition_info *part_info= lpt->table->part_info; if (part_info) { - if (!(part_syntax_buf= generate_partition_syntax(lpt->thd, part_info, - &syntax_len, TRUE, - lpt->create_info, - lpt->alter_info))) - { + part_syntax_buf= generate_partition_syntax_for_frm(lpt->thd, part_info, + &syntax_len, lpt->create_info, lpt->alter_info); + if (!part_syntax_buf) DBUG_RETURN(TRUE); - } part_info->part_info_string= part_syntax_buf; part_info->part_info_len= syntax_len; } @@ -1902,10 +1898,9 @@ bool mysql_write_frm(ALTER_PARTITION_PARAM_TYPE *lpt, uint flags) { TABLE_SHARE *share= lpt->table->s; char *tmp_part_syntax_str; - if (!(part_syntax_buf= generate_partition_syntax(lpt->thd, part_info, - &syntax_len, TRUE, - lpt->create_info, - lpt->alter_info))) + part_syntax_buf= generate_partition_syntax_for_frm(lpt->thd, + part_info, &syntax_len, lpt->create_info, lpt->alter_info); + if (!part_syntax_buf) { error= 1; goto err; @@ -4564,11 +4559,8 @@ handler *mysql_create_frm_image(THD *thd, We reverse the partitioning parser and generate a standard format for syntax stored in frm file. */ - sql_mode_t old_mode= thd->variables.sql_mode; - thd->variables.sql_mode &= ~MODE_ANSI_QUOTES; - part_syntax_buf= generate_partition_syntax(thd, part_info, &syntax_len, - true, create_info, alter_info); - thd->variables.sql_mode= old_mode; + part_syntax_buf= generate_partition_syntax_for_frm(thd, part_info, + &syntax_len, create_info, alter_info); if (!part_syntax_buf) goto err; part_info->part_info_string= part_syntax_buf; From 61a6f4bd962dc9c4e36e827bf5897327a85b7f52 Mon Sep 17 00:00:00 2001 From: Sergei Golubchik Date: Fri, 21 Sep 2018 20:38:14 +0200 Subject: [PATCH 140/148] MDEV-14560 Extra engines enabled through additional config are not loaded on first installation Use RedHat-recommended /var/lib/rpm-state/mariadb/ for restart flag. This also fixes SUSE where /var/lib/rpm-state doesn't necessarily exist. --- cmake/cpack_rpm.cmake | 3 ++- support-files/rpm/plugin-postin.sh | 1 + support-files/rpm/server-postun.sh | 1 + 3 files changed, 4 insertions(+), 1 deletion(-) diff --git a/cmake/cpack_rpm.cmake b/cmake/cpack_rpm.cmake index 21eb2632a50..900e3c70e56 100644 --- a/cmake/cpack_rpm.cmake +++ b/cmake/cpack_rpm.cmake @@ -81,7 +81,8 @@ SET(CPACK_RPM_SPEC_MORE_DEFINE " %define _bindir ${INSTALL_BINDIRABS} %define _sbindir ${INSTALL_SBINDIRABS} %define _sysconfdir ${INSTALL_SYSCONFDIR} -%define restart_flag %{_localstatedir}/lib/rpm-state/mariadb-restart +%define restart_flag_dir %{_localstatedir}/lib/rpm-state/mariadb +%define restart_flag %{restart_flag_dir}/need-restart ") # this creative hack is described here: http://www.cmake.org/pipermail/cmake/2012-January/048416.html diff --git a/support-files/rpm/plugin-postin.sh b/support-files/rpm/plugin-postin.sh index 6be31a35f8e..1844de1b4f2 100644 --- a/support-files/rpm/plugin-postin.sh +++ b/support-files/rpm/plugin-postin.sh @@ -1,2 +1,3 @@ # request the server restart +mkdir -p %{restart_flag_dir} echo > %{restart_flag} diff --git a/support-files/rpm/server-postun.sh b/support-files/rpm/server-postun.sh index b1aa0ea4393..27e1125b78f 100644 --- a/support-files/rpm/server-postun.sh +++ b/support-files/rpm/server-postun.sh @@ -1,5 +1,6 @@ if [ $1 -ge 1 ]; then # request the server restart + mkdir -p %{restart_flag_dir} echo > %{restart_flag} fi From 3a9276bad31810a87133dd003bbe345602627ecc Mon Sep 17 00:00:00 2001 From: Sergei Golubchik Date: Sat, 22 Sep 2018 15:19:40 +0200 Subject: [PATCH 141/148] sanitize tokudb locking macros --- storage/tokudb/hatoku_defines.h | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/storage/tokudb/hatoku_defines.h b/storage/tokudb/hatoku_defines.h index 66a8fa5d982..2fd149d120d 100644 --- a/storage/tokudb/hatoku_defines.h +++ b/storage/tokudb/hatoku_defines.h @@ -290,23 +290,23 @@ inline uint tokudb_uint3korr(const uchar *a) { typedef unsigned int pfs_key_t; #if defined(SAFE_MUTEX) || defined(HAVE_PSI_MUTEX_INTERFACE) -#define mutex_t_lock(M) M.lock(__FILE__, __LINE__) +#define mutex_t_lock(M) (M).lock(__FILE__, __LINE__) #else // SAFE_MUTEX || HAVE_PSI_MUTEX_INTERFACE -#define mutex_t_lock(M) M.lock() +#define mutex_t_lock(M) (M).lock() #endif // SAFE_MUTEX || HAVE_PSI_MUTEX_INTERFACE #if defined(SAFE_MUTEX) -#define mutex_t_unlock(M) M.unlock(__FILE__, __LINE__) +#define mutex_t_unlock(M) (M).unlock(__FILE__, __LINE__) #else // SAFE_MUTEX -#define mutex_t_unlock(M) M.unlock() +#define mutex_t_unlock(M) (M).unlock() #endif // SAFE_MUTEX #if defined(HAVE_PSI_RWLOCK_INTERFACE) -#define rwlock_t_lock_read(M) M.lock_read(__FILE__, __LINE__) -#define rwlock_t_lock_write(M) M.lock_write(__FILE__, __LINE__) +#define rwlock_t_lock_read(M) (M).lock_read(__FILE__, __LINE__) +#define rwlock_t_lock_write(M) (M).lock_write(__FILE__, __LINE__) #else // HAVE_PSI_RWLOCK_INTERFACE -#define rwlock_t_lock_read(M) M.lock_read() -#define rwlock_t_lock_write(M) M.lock_write() +#define rwlock_t_lock_read(M) (M).lock_read() +#define rwlock_t_lock_write(M) (M).lock_write() #endif // HAVE_PSI_RWLOCK_INTERFACE #endif // _HATOKU_DEFINES_H From 1144acbcbdf9b7bdf18c31f88cbe859d99658b53 Mon Sep 17 00:00:00 2001 From: Sergei Golubchik Date: Sat, 22 Sep 2018 15:21:20 +0200 Subject: [PATCH 142/148] tokudb: create and destroy TOKUDB_SHARE::_open_tables_mutex dynamically to guarantee that it's destroyed when plugin deinit is called, not after --- storage/tokudb/ha_tokudb.cc | 12 +++++++----- storage/tokudb/ha_tokudb.h | 2 +- 2 files changed, 8 insertions(+), 6 deletions(-) diff --git a/storage/tokudb/ha_tokudb.cc b/storage/tokudb/ha_tokudb.cc index 4637ac1bf5f..34a7fefde30 100644 --- a/storage/tokudb/ha_tokudb.cc +++ b/storage/tokudb/ha_tokudb.cc @@ -48,7 +48,7 @@ static inline uint get_ext_key_parts(const KEY *key) { #endif // defined(TOKU_INCLUDE_EXTENDED_KEYS) && TOKU_INCLUDE_EXTENDED_KEYS std::unordered_map TOKUDB_SHARE::_open_tables; -tokudb::thread::mutex_t TOKUDB_SHARE::_open_tables_mutex; +tokudb::thread::mutex_t* TOKUDB_SHARE::_open_tables_mutex; static const char* ha_tokudb_exts[] = { ha_tokudb_ext, @@ -154,6 +154,7 @@ static void free_key_and_col_info (KEY_AND_COL_INFO* kc_info) { void TOKUDB_SHARE::static_init() { assert_always(_open_tables.size() == 0); + _open_tables_mutex = new tokudb::thread::mutex_t(); } void TOKUDB_SHARE::static_destroy() { for (auto it = _open_tables.cbegin(); it != _open_tables.cend(); it++) { @@ -164,6 +165,7 @@ void TOKUDB_SHARE::static_destroy() { } _open_tables.clear(); assert_always(_open_tables.size() == 0); + delete _open_tables_mutex; } const char* TOKUDB_SHARE::get_state_string(share_state_t state) { static const char* state_string[] = { @@ -218,7 +220,7 @@ TOKUDB_SHARE* TOKUDB_SHARE::get_share(const char* table_name, THR_LOCK_DATA* data, bool create_new) { std::string find_table_name(table_name); - mutex_t_lock(_open_tables_mutex); + mutex_t_lock(*_open_tables_mutex); auto it = _open_tables.find(find_table_name); TOKUDB_SHARE *share = nullptr; if (it != _open_tables.end()) { @@ -251,7 +253,7 @@ TOKUDB_SHARE* TOKUDB_SHARE::get_share(const char* table_name, thr_lock_data_init(&(share->_thr_lock), data, NULL); exit: - mutex_t_unlock(_open_tables_mutex); + mutex_t_unlock(*_open_tables_mutex); return share; } void TOKUDB_SHARE::drop_share(TOKUDB_SHARE* share) { @@ -262,12 +264,12 @@ void TOKUDB_SHARE::drop_share(TOKUDB_SHARE* share) { get_state_string(share->_state), share->_use_count); - mutex_t_lock(_open_tables_mutex); + mutex_t_lock(*_open_tables_mutex); size_t n = _open_tables.erase(std::string(share->full_table_name())); assert_always(n == 1); share->destroy(); delete share; - mutex_t_unlock(_open_tables_mutex); + mutex_t_unlock(*_open_tables_mutex); } TOKUDB_SHARE::share_state_t TOKUDB_SHARE::addref() { TOKUDB_SHARE_TRACE_FOR_FLAGS((TOKUDB_DEBUG_ENTER & TOKUDB_DEBUG_SHARE), diff --git a/storage/tokudb/ha_tokudb.h b/storage/tokudb/ha_tokudb.h index 6f592617b76..e322c3de18e 100644 --- a/storage/tokudb/ha_tokudb.h +++ b/storage/tokudb/ha_tokudb.h @@ -274,7 +274,7 @@ public: private: static std::unordered_map _open_tables; - static tokudb::thread::mutex_t _open_tables_mutex; + static tokudb::thread::mutex_t* _open_tables_mutex; //********************************* // Spans open-close-open From 428669fa83aec55b8b68cb003ff7311d282e4281 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jan=20Lindstr=C3=B6m?= Date: Thu, 20 Sep 2018 06:51:40 +0300 Subject: [PATCH 143/148] MDEV-15805: Test failure on galera.query_cache Reset query cache after every test case and add wait after load infile. --- .../galera/include/reset_query_cache.inc | 11 ++ mysql-test/suite/galera/r/query_cache.result | 33 +---- mysql-test/suite/galera/t/query_cache.test | 123 +++++++++++++++--- 3 files changed, 117 insertions(+), 50 deletions(-) create mode 100644 mysql-test/suite/galera/include/reset_query_cache.inc diff --git a/mysql-test/suite/galera/include/reset_query_cache.inc b/mysql-test/suite/galera/include/reset_query_cache.inc new file mode 100644 index 00000000000..6e33b886f08 --- /dev/null +++ b/mysql-test/suite/galera/include/reset_query_cache.inc @@ -0,0 +1,11 @@ +--disable_query_log +--disable_result_log +--connection node_1 +flush query cache; +reset query cache; + +--connection node_2 +flush query cache; +reset query cache; +--enable_result_log +--enable_query_log diff --git a/mysql-test/suite/galera/r/query_cache.result b/mysql-test/suite/galera/r/query_cache.result index 4b1b950e5c3..e9c539f31aa 100644 --- a/mysql-test/suite/galera/r/query_cache.result +++ b/mysql-test/suite/galera/r/query_cache.result @@ -402,22 +402,6 @@ Variable_name Value Qcache_queries_in_cache 1 set query_cache_type=on; # On node-1 -reset query cache; -show status like "Qcache_queries_in_cache"; -Variable_name Value -Qcache_queries_in_cache 0 -show status like "Qcache_hits"; -Variable_name Value -Qcache_hits 4 -# On node-2 -reset query cache; -show status like "Qcache_queries_in_cache"; -Variable_name Value -Qcache_queries_in_cache 0 -show status like "Qcache_hits"; -Variable_name Value -Qcache_hits 3 -# On node-1 select sql_no_cache * from t1; a 1 @@ -1247,16 +1231,13 @@ Qcache_queries_in_cache 0 show status like "Qcache_hits"; Variable_name Value Qcache_hits 12 -select count(*) from t1; -count(*) -70 # On node-2 select count(*) from t1; count(*) 70 show status like "Qcache_queries_in_cache"; Variable_name Value -Qcache_queries_in_cache 1 +Qcache_queries_in_cache 2 show status like "Qcache_hits"; Variable_name Value Qcache_hits 11 @@ -1533,9 +1514,6 @@ create table t1 (a int) engine=innodb; show status like "Qcache_queries_in_cache"; Variable_name Value Qcache_queries_in_cache 0 -show status like "Qcache_inserts"; -Variable_name Value -Qcache_inserts 46 show status like "Qcache_hits"; Variable_name Value Qcache_hits 12 @@ -1546,9 +1524,6 @@ a show status like "Qcache_queries_in_cache"; Variable_name Value Qcache_queries_in_cache 1 -show status like "Qcache_inserts"; -Variable_name Value -Qcache_inserts 47 show status like "Qcache_hits"; Variable_name Value Qcache_hits 13 @@ -1556,9 +1531,6 @@ Qcache_hits 13 show status like "Qcache_queries_in_cache"; Variable_name Value Qcache_queries_in_cache 0 -show status like "Qcache_inserts"; -Variable_name Value -Qcache_inserts 38 show status like "Qcache_hits"; Variable_name Value Qcache_hits 11 @@ -1569,9 +1541,6 @@ a show status like "Qcache_queries_in_cache"; Variable_name Value Qcache_queries_in_cache 1 -show status like "Qcache_inserts"; -Variable_name Value -Qcache_inserts 39 show status like "Qcache_hits"; Variable_name Value Qcache_hits 12 diff --git a/mysql-test/suite/galera/t/query_cache.test b/mysql-test/suite/galera/t/query_cache.test index 24ed8ecd077..9d6b654be78 100644 --- a/mysql-test/suite/galera/t/query_cache.test +++ b/mysql-test/suite/galera/t/query_cache.test @@ -113,6 +113,11 @@ show status like "Qcache_hits"; show status like "Qcache_queries_in_cache"; show status like "Qcache_hits"; +# +# RESET QUERY CACHE +# +--source include/reset_query_cache.inc + # # MERGE TABLES with INSERT/UPDATE and DELETE # @@ -180,6 +185,11 @@ show status like "Qcache_hits"; drop table t1, t2, t3; +# +# RESET QUERY CACHE +# +--source include/reset_query_cache.inc + # # SELECT SQL_CACHE ... # @@ -214,16 +224,7 @@ set query_cache_type=on; # # RESET QUERY CACHE # ---echo # On node-1 ---connection node_1 -reset query cache; -show status like "Qcache_queries_in_cache"; -show status like "Qcache_hits"; ---echo # On node-2 ---connection node_2 -reset query cache; -show status like "Qcache_queries_in_cache"; -show status like "Qcache_hits"; +--source include/reset_query_cache.inc # # SELECT SQL_NO_CACHE @@ -240,6 +241,11 @@ show status like "Qcache_queries_in_cache"; show status like "Qcache_hits"; drop table t1; +# +# RESET QUERY CACHE +# +--source include/reset_query_cache.inc + # # Check that queries that uses NOW(), LAST_INSERT_ID()... are not cached. # @@ -282,6 +288,11 @@ show status like "Qcache_queries_in_cache"; show status like "Qcache_hits"; drop table t1; +# +# RESET QUERY CACHE +# +--source include/reset_query_cache.inc + # # Non-cachable ODBC work around (and prepare cache for drop database) # @@ -316,6 +327,11 @@ show status like "Qcache_queries_in_cache"; show status like "Qcache_hits"; drop table t1; +# +# RESET QUERY CACHE +# +--source include/reset_query_cache.inc + # # Charset conversion (cp1251_koi8 always present) # Note: Queries using different default character sets are cached separately. @@ -343,6 +359,11 @@ show status like "Qcache_queries_in_cache"; show status like "Qcache_hits"; drop table t1; +# +# RESET QUERY CACHE +# +--source include/reset_query_cache.inc + # # Same tables in different dbs # @@ -376,6 +397,11 @@ show status like "Qcache_hits"; drop database mysqltest; drop table t1; +# +# RESET QUERY CACHE +# +--source include/reset_query_cache.inc + # # FOUND_ROWS() # @@ -428,6 +454,11 @@ show status like "Qcache_queries_in_cache"; drop table t1; +# +# RESET QUERY CACHE +# +--source include/reset_query_cache.inc + # # Test insert delayed (MYISAM) # @@ -526,6 +557,11 @@ drop table t2; set GLOBAL query_cache_min_res_unit=default; show global variables like "query_cache_min_res_unit"; +# +# RESET QUERY CACHE +# +--source include/reset_query_cache.inc + # # Case sensitive test # @@ -546,6 +582,11 @@ show status like "Qcache_queries_in_cache"; show status like "Qcache_hits"; drop table t1; +# +# RESET QUERY CACHE +# +--source include/reset_query_cache.inc + # # Test of query cache resizing # @@ -612,6 +653,11 @@ select * from t1; drop table t1; +# +# RESET QUERY CACHE +# +--source include/reset_query_cache.inc + # # Temporary tables (ignored by Galera) # @@ -645,6 +691,11 @@ show status like "Qcache_hits"; drop table t1, t2; +# +# RESET QUERY CACHE +# +--source include/reset_query_cache.inc + # # System databse test (no need to perform it on node_2) # Note: Queries on system tables are not cached. @@ -697,6 +748,11 @@ show status like "Qcache_queries_in_cache"; show status like "Qcache_hits"; drop table t2; +# +# RESET QUERY CACHE +# +--source include/reset_query_cache.inc + # # Load data invalidation test # @@ -710,13 +766,13 @@ show status like "Qcache_hits"; eval load data infile '$MYSQLTEST_VARDIR/std_data/words.dat' into table t1; show status like "Qcache_queries_in_cache"; show status like "Qcache_hits"; -select count(*) from t1; - -# Wait for "load data" to replicate. ---sleep 5 +--let $wait_condition = SELECT COUNT(*) = 70 FROM t1; +--source include/wait_condition.inc --echo # On node-2 --connection node_2 +--let $wait_condition = SELECT COUNT(*) = 70 FROM t1; +--source include/wait_condition.inc select count(*) from t1; show status like "Qcache_queries_in_cache"; show status like "Qcache_hits"; @@ -728,6 +784,11 @@ select count(*) from t1; drop table t1; +# +# RESET QUERY CACHE +# +--source include/reset_query_cache.inc + # # INTO OUTFILE/DUMPFILE test # @@ -748,6 +809,11 @@ let $datadir=`select @@datadir`; --remove_file $datadir/test/query_cache.dump.file --remove_file $datadir/test/query_cache.out.file +# +# RESET QUERY CACHE +# +--source include/reset_query_cache.inc + # # Test of SQL_SELECT_LIMIT # @@ -777,6 +843,11 @@ SET SQL_SELECT_LIMIT=DEFAULT; drop table t1; +# +# RESET QUERY CACHE +# +--source include/reset_query_cache.inc + # # WRITE LOCK & QC # @@ -844,6 +915,11 @@ select * from t1; drop table t1; drop table t1; +# +# RESET QUERY CACHE +# +--source include/reset_query_cache.inc + # # Test character set related variables: # character_set_result @@ -923,6 +999,11 @@ show status like "Qcache_queries_in_cache"; drop table t1; +# +# RESET QUERY CACHE +# +--source include/reset_query_cache.inc + # # Comments before command # @@ -930,27 +1011,28 @@ drop table t1; --connection node_1 create table t1 (a int) engine=innodb; show status like "Qcache_queries_in_cache"; -show status like "Qcache_inserts"; show status like "Qcache_hits"; /**/ select * from t1; /**/ select * from t1; show status like "Qcache_queries_in_cache"; -show status like "Qcache_inserts"; show status like "Qcache_hits"; --echo # On node-2 --connection node_2 show status like "Qcache_queries_in_cache"; -show status like "Qcache_inserts"; show status like "Qcache_hits"; /**/ select * from t1; /**/ select * from t1; show status like "Qcache_queries_in_cache"; -show status like "Qcache_inserts"; show status like "Qcache_hits"; drop table t1; +# +# RESET QUERY CACHE +# +--source include/reset_query_cache.inc + # # Information schema & query cache test # @@ -988,6 +1070,11 @@ show status like 'qcache_queries_in_cache'; show status like "Qcache_hits"; drop table t1; +# +# RESET QUERY CACHE +# +--source include/reset_query_cache.inc + --echo # Restore original settings. --echo # On node-1 --connection node_1 From eefaf4fdc9ea059a147c39cbc5c14b05bb8aa338 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jan=20Lindstr=C3=B6m?= Date: Thu, 20 Sep 2018 15:44:04 +0300 Subject: [PATCH 144/148] Adjust disabled Galera tests. --- mysql-test/suite/galera/disabled.def | 4 +--- mysql-test/suite/galera/r/galera_wan.result | 1 + mysql-test/suite/galera/t/galera_wan.test | 2 ++ 3 files changed, 4 insertions(+), 3 deletions(-) diff --git a/mysql-test/suite/galera/disabled.def b/mysql-test/suite/galera/disabled.def index 7359e1d9c05..94b4add1eec 100644 --- a/mysql-test/suite/galera/disabled.def +++ b/mysql-test/suite/galera/disabled.def @@ -30,8 +30,6 @@ MW-388 : MDEV-13549 Galera test failures galera_sst_mysqldump_with_key : MDEV-16890 Galera test failure galera_binlog_stmt_autoinc: MDEV-17106 Test failure on galera.galera_binlog_stmt_autoinc galera_gc_fc_limit : MDEV-17061 Test failure on galera.galera_gc_fc_limit -galra_unicode_identifiers: MDEV-13871 galera.galera_unicode_identifiers failed in buildbot with 'Unknown database' -galera_suspend_slave: MDEV-13873 galera.galera_suspend_slave failed in buildbot with wrong error code partition : MDEV-13881 galera.partition failed in buildbot with wrong result galera_as_slave_replication_budle : MDEV-15785 Test case galera_as_slave_replication_bundle caused debug assertion -query_cache : MDEV-15805 Test failure on galera.query_cache +galera_wan : MDEV-17259: Test failure on galera.galera_wan diff --git a/mysql-test/suite/galera/r/galera_wan.result b/mysql-test/suite/galera/r/galera_wan.result index 3330f0dd380..1dc4a22a5f9 100644 --- a/mysql-test/suite/galera/r/galera_wan.result +++ b/mysql-test/suite/galera/r/galera_wan.result @@ -1,6 +1,7 @@ CALL mtr.add_suppression("WSREP: Stray state UUID msg:.*"); CALL mtr.add_suppression("WSREP: Sending JOIN failed:.*"); CALL mtr.add_suppression("There are no nodes in the same segment that will ever be able to become donors, yet there is a suitable donor outside"); +call mtr.add_suppression("WSREP: Sending JOIN failed:.*"); SELECT VARIABLE_VALUE = 4 FROM INFORMATION_SCHEMA.GLOBAL_STATUS WHERE VARIABLE_NAME = 'wsrep_cluster_size'; VARIABLE_VALUE = 4 1 diff --git a/mysql-test/suite/galera/t/galera_wan.test b/mysql-test/suite/galera/t/galera_wan.test index 6cd85d4d276..ca86a3000a6 100644 --- a/mysql-test/suite/galera/t/galera_wan.test +++ b/mysql-test/suite/galera/t/galera_wan.test @@ -12,6 +12,8 @@ CALL mtr.add_suppression("WSREP: Stray state UUID msg:.*"); CALL mtr.add_suppression("WSREP: Sending JOIN failed:.*"); CALL mtr.add_suppression("There are no nodes in the same segment that will ever be able to become donors, yet there is a suitable donor outside"); +call mtr.add_suppression("WSREP: Sending JOIN failed:.*"); + SELECT VARIABLE_VALUE = 4 FROM INFORMATION_SCHEMA.GLOBAL_STATUS WHERE VARIABLE_NAME = 'wsrep_cluster_size'; From 2b45eb77f7845068e9e26b30ad63e99ac21c5aff Mon Sep 17 00:00:00 2001 From: Sergei Petrunia Date: Sun, 23 Sep 2018 13:41:08 +0300 Subject: [PATCH 145/148] MDEV-17261: sysbench oltp read only too slow for MyRocks An error in "group commit with MariaDB's binlog" code: we would flush the WAL even when the transaction did not do any writes (and so the logic in myrocks::Rdb_transaction::commit caused it to rollback). --- storage/rocksdb/ha_rocksdb.cc | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/storage/rocksdb/ha_rocksdb.cc b/storage/rocksdb/ha_rocksdb.cc index 565bbf01d8b..d05f336ee18 100644 --- a/storage/rocksdb/ha_rocksdb.cc +++ b/storage/rocksdb/ha_rocksdb.cc @@ -3753,12 +3753,13 @@ static int rocksdb_commit(handlerton* hton, THD* thd, bool commit_tx) // First, commit without syncing. This establishes the commit order tx->set_sync(false); + bool tx_had_writes = tx->get_write_count()? true : false ; if (tx->commit()) { DBUG_RETURN(HA_ERR_ROCKSDB_COMMIT_FAILED); } thd_wakeup_subsequent_commits(thd, 0); - if (rocksdb_flush_log_at_trx_commit == FLUSH_LOG_SYNC) + if (tx_had_writes && rocksdb_flush_log_at_trx_commit == FLUSH_LOG_SYNC) { rocksdb::Status s= rdb->FlushWAL(true); if (!s.ok()) From 87dc4e98dda26ff99a3b3aeae2fce9fd2f2fdf24 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jan=20Lindstr=C3=B6m?= Date: Sun, 23 Sep 2018 13:53:57 +0300 Subject: [PATCH 146/148] MDEV-17276: Adjust Galera tests after Galera library 25.3.24 --- mysql-test/suite/galera/disabled.def | 1 + mysql-test/suite/galera/r/galera#505.result | 2 ++ mysql-test/suite/wsrep/r/variables.result | 2 ++ 3 files changed, 5 insertions(+) diff --git a/mysql-test/suite/galera/disabled.def b/mysql-test/suite/galera/disabled.def index 94b4add1eec..92e45cc0f25 100644 --- a/mysql-test/suite/galera/disabled.def +++ b/mysql-test/suite/galera/disabled.def @@ -33,3 +33,4 @@ galera_gc_fc_limit : MDEV-17061 Test failure on galera.galera_gc_fc_limit partition : MDEV-13881 galera.partition failed in buildbot with wrong result galera_as_slave_replication_budle : MDEV-15785 Test case galera_as_slave_replication_bundle caused debug assertion galera_wan : MDEV-17259: Test failure on galera.galera_wan + diff --git a/mysql-test/suite/galera/r/galera#505.result b/mysql-test/suite/galera/r/galera#505.result index 9ae09cac187..3a72c843514 100644 --- a/mysql-test/suite/galera/r/galera#505.result +++ b/mysql-test/suite/galera/r/galera#505.result @@ -1,3 +1,5 @@ +SET SESSION wsrep_sync_wait=0; +SET SESSION wsrep_sync_wait=DEFAULT; SET GLOBAL wsrep_provider_options = 'pc.weight=3'; SHOW GLOBAL VARIABLES LIKE 'wsrep_provider_options'; Variable_name Value diff --git a/mysql-test/suite/wsrep/r/variables.result b/mysql-test/suite/wsrep/r/variables.result index 1dafa6b5ed5..d11cffba116 100644 --- a/mysql-test/suite/wsrep/r/variables.result +++ b/mysql-test/suite/wsrep/r/variables.result @@ -60,6 +60,8 @@ wsrep_local_send_queue_min # wsrep_local_state # wsrep_local_state_comment # wsrep_local_state_uuid # +wsrep_open_connections # +wsrep_open_transactions # wsrep_protocol_version # wsrep_provider_name # wsrep_provider_vendor # From 76098f45b8b1f2224eb25cf5d94450c6f4a1414c Mon Sep 17 00:00:00 2001 From: Sergei Golubchik Date: Sat, 22 Sep 2018 22:46:45 +0200 Subject: [PATCH 147/148] RocksDB: workaround a compiler error on ppc64le storage/rocksdb/rdb_datadic.cc: In member function 'int myrocks::Rdb_key_def::unpack_integer(myrocks::Rdb_field_packing*, Field*, uchar*, myrocks::Rdb_string_reader*, myrocks::Rdb_string_reader*) const' storage/rocksdb/rdb_datadic.cc:1781:1: internal compiler error: Segmentation fault } on ppc64le, ubuntu bionic gcc 7.3.0 and debian stretch gcc 6.3.0 The error happens with -ftree-loop-vectorize when trying to vectorize a particular loop (see Rdb_key_def::unpack_integer()) Compiler gets confused by __attribute__((optimize("O0")) that comes from ha_rocksdb_proto.h. The intention of this __attribute__ was to prevent function from being inlined (see ha_rocksdb.cc). Let's use a more specific attribute that prevents inlining but does not confuse loop vectorizer. --- storage/rocksdb/ha_rocksdb_proto.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/storage/rocksdb/ha_rocksdb_proto.h b/storage/rocksdb/ha_rocksdb_proto.h index deb65edddd3..08afd9780be 100644 --- a/storage/rocksdb/ha_rocksdb_proto.h +++ b/storage/rocksdb/ha_rocksdb_proto.h @@ -43,7 +43,7 @@ void rdb_handle_io_error(const rocksdb::Status status, #if defined(__clang__) MY_ATTRIBUTE((optnone)); #else - MY_ATTRIBUTE((optimize("O0"))); + MY_ATTRIBUTE((noinline,noclone)); #endif int rdb_normalize_tablename(const std::string &tablename, std::string *str) From dcbd51cee628d8d8fec9ff5476a6afc855b007aa Mon Sep 17 00:00:00 2001 From: Sergei Golubchik Date: Mon, 24 Sep 2018 15:34:23 +0200 Subject: [PATCH 148/148] update libmariadb --- libmariadb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libmariadb b/libmariadb index d0f201451d0..fb3bc6b171d 160000 --- a/libmariadb +++ b/libmariadb @@ -1 +1 @@ -Subproject commit d0f201451d062b83912525b4821d82304b32ecb1 +Subproject commit fb3bc6b171d0c5fb4829f50c03c3fe3f5919a35b